diff --git a/Core/src/org/sleuthkit/autopsy/textreaders/TikaTextExtractor.java b/Core/src/org/sleuthkit/autopsy/textreaders/TikaTextExtractor.java index 985f897787..5253b362d0 100644 --- a/Core/src/org/sleuthkit/autopsy/textreaders/TikaTextExtractor.java +++ b/Core/src/org/sleuthkit/autopsy/textreaders/TikaTextExtractor.java @@ -29,8 +29,8 @@ import java.io.InputStream; import java.io.PushbackReader; import java.io.Reader; import java.nio.file.Paths; +import java.util.ArrayList; import java.util.Arrays; -import java.util.HashSet; import java.util.List; import java.util.Objects; import java.util.concurrent.Callable; @@ -60,6 +60,7 @@ import org.sleuthkit.autopsy.casemodule.Case; import org.sleuthkit.autopsy.casemodule.NoCurrentCaseException; import org.sleuthkit.autopsy.coreutils.ExecUtil; import org.sleuthkit.autopsy.coreutils.ExecUtil.ProcessTerminator; +import org.sleuthkit.autopsy.coreutils.FileUtil; import org.sleuthkit.autopsy.coreutils.PlatformUtil; import org.sleuthkit.autopsy.textreaders.textreaderconfigs.ImageConfig; import org.sleuthkit.autopsy.datamodel.ContentUtils; @@ -122,8 +123,8 @@ final class TikaTextExtractor extends TextExtractor { private static final java.util.logging.Logger tikaLogger = java.util.logging.Logger.getLogger("Tika"); //NON-NLS - private final ThreadFactory tikaThreadFactory = - new ThreadFactoryBuilder().setNameFormat("tika-reader-%d").build(); + private final ThreadFactory tikaThreadFactory + = new ThreadFactoryBuilder().setNameFormat("tika-reader-%d").build(); private final ExecutorService executorService = Executors.newSingleThreadExecutor(tikaThreadFactory); private static final String SQLITE_MIMETYPE = "application/x-sqlite3"; @@ -135,8 +136,10 @@ final class TikaTextExtractor extends TextExtractor { private static final String TESSERACT_EXECUTABLE = "tesseract.exe"; //NON-NLS private static final File TESSERACT_PATH = locateTesseractExecutable(); private static final String LANGUAGE_PACKS = getLanguagePacks(); + private static final String TESSERACT_LANGUAGE_PACK_EXT = "traineddata"; //NON-NLS + private static final String TESSERACT_OUTPUT_FILE_NAME = "tess_output"; //NON-NLS + private ProcessTerminator processTerminator; - private static final String TESSERACT_OUTPUT_FILE_NAME = "output"; private static final List TIKA_SUPPORTED_TYPES = new Tika().getParser().getSupportedTypes(new ParseContext()) @@ -182,7 +185,7 @@ final class TikaTextExtractor extends TextExtractor { AbstractFile file = ((AbstractFile) content); //Run OCR on images with Tesseract directly. if (file.getMIMEType().toLowerCase().startsWith("image/")) { - stream = runOcrAndGetOutputStream(file); + stream = performOCR(file); } else { //Otherwise, go through Tika for PDFs so that it can //extract images and run Tesseract on them. @@ -201,15 +204,15 @@ final class TikaTextExtractor extends TextExtractor { String tesseractFolder = TESSERACT_PATH.getParent(); ocrConfig.setTesseractPath(tesseractFolder); /* - * Tesseract expects language data packs to be in a - * subdirectory of tesseractFolder, in a folder called - * "tessdata". If they are stored somewhere else, use - * ocrConfig.setTessdataPath(String tessdataPath) to point - * to them + * Tesseract expects language data packs to be in a subdirectory + * of tesseractFolder, in a folder called "tessdata". If they + * are stored somewhere else, use + * ocrConfig.setTessdataPath(String tessdataPath) to point to + * them */ ocrConfig.setLanguage(LANGUAGE_PACKS); parseContext.set(TesseractOCRConfig.class, ocrConfig); - + stream = new ReadContentInputStream(content); } } else { @@ -228,8 +231,7 @@ final class TikaTextExtractor extends TextExtractor { Future future = executorService.submit( new GetTikaReader(parser, stream, metadata, parseContext)); try { - final Reader tikaReader = future.get(getTimeout(content.getSize()), - TimeUnit.SECONDS); + final Reader tikaReader = future.get(getTimeout(content.getSize()), TimeUnit.SECONDS); //check if the reader is empty PushbackReader pushbackReader = new PushbackReader(tikaReader); int read = pushbackReader.read(); @@ -238,11 +240,9 @@ final class TikaTextExtractor extends TextExtractor { + "Tika returned empty reader for " + content); } pushbackReader.unread(read); - //concatenate parsed content and meta data into a single reader. CharSource metaDataCharSource = getMetaDataCharSource(metadata); - return CharSource.concat(new ReaderCharSource(pushbackReader), - metaDataCharSource).openStream(); + return CharSource.concat(new ReaderCharSource(pushbackReader), metaDataCharSource).openStream(); } catch (TimeoutException te) { final String msg = NbBundle.getMessage(this.getClass(), "AbstractFileTikaTextExtract.index.tikaParseTimeout.text", @@ -273,19 +273,19 @@ final class TikaTextExtractor extends TextExtractor { * @throws * org.sleuthkit.autopsy.textextractors.TextExtractor.ExtractionException */ - private InputStream runOcrAndGetOutputStream(AbstractFile file) throws ExtractionException { + private InputStream performOCR(AbstractFile file) throws ExtractionException { File inputFile = null; File outputFile = null; try { + String tempDirectory = Case.getCurrentCaseThrows().getTempDirectory(); + //Appending file id makes the name unique - String tempFileName = file.getId() + file.getName(); - inputFile = Paths.get(Case.getCurrentCaseThrows().getTempDirectory(), - tempFileName).toFile(); + String tempFileName = FileUtil.escapeFileName(file.getId() + file.getName()); + inputFile = Paths.get(tempDirectory, tempFileName).toFile(); ContentUtils.writeToFile(content, inputFile); - String tempOutputName = file.getId() + TESSERACT_OUTPUT_FILE_NAME; - String outputFilePath = Paths.get(Case.getCurrentCaseThrows().getTempDirectory(), - tempOutputName).toString(); + String tempOutputName = FileUtil.escapeFileName(file.getId() + TESSERACT_OUTPUT_FILE_NAME); + String outputFilePath = Paths.get(tempDirectory, tempOutputName).toString(); String executeablePath = TESSERACT_PATH.toString(); //Build tesseract commands @@ -303,7 +303,7 @@ final class TikaTextExtractor extends TextExtractor { } else { ExecUtil.execute(process); } - + outputFile = new File(outputFilePath + ".txt"); //Open a stream of the Tesseract text file and send this to Tika return new CleanUpStream(outputFile); @@ -324,6 +324,7 @@ final class TikaTextExtractor extends TextExtractor { * cancelled. */ private class GetTikaReader implements Callable { + private final AutoDetectParser parser; private final InputStream stream; private final Metadata metadata; @@ -354,9 +355,10 @@ final class TikaTextExtractor extends TextExtractor { /** * Store a reference to file on construction - * + * * @param file - * @throws FileNotFoundException + * + * @throws FileNotFoundException */ public CleanUpStream(File file) throws FileNotFoundException { super(file); @@ -365,8 +367,8 @@ final class TikaTextExtractor extends TextExtractor { /** * Delete this underlying file when close is called. - * - * @throws IOException + * + * @throws IOException */ @Override public void close() throws IOException { @@ -450,25 +452,19 @@ final class TikaTextExtractor extends TextExtractor { */ private static String getLanguagePacks() { File languagePackRootDir = new File(TESSERACT_PATH.getParent(), "tessdata"); - //Acceptable extensions for Tesseract-OCR version 3.05 language packs. - //All extensions other than traineddata are associated with cube files that - //have been made obsolete since version 4.0. - List acceptableExtensions = Arrays.asList("traineddata", "params", - "lm", "fold", "bigrams", "nn", "word-freq", "size", - "user-patterns", "user-words"); - //Pull out only unique languagePacks - HashSet languagePacks = new HashSet<>(); - if (languagePackRootDir.exists()) { - for (File languagePack : languagePackRootDir.listFiles()) { - if (languagePack.isDirectory() || !acceptableExtensions.contains( - FilenameUtils.getExtension(languagePack.getName()))) { - continue; - } - String threeLetterPackageName = languagePack.getName().substring(0, 3); - //Ignore the eng language pack if accidentally added - languagePacks.add(threeLetterPackageName); + if (!languagePackRootDir.exists()) { + return ""; + } + + List languagePacks = new ArrayList<>(); + for (File languagePack : languagePackRootDir.listFiles()) { + String fileExt = FilenameUtils.getExtension(languagePack.getName()); + if (!languagePack.isDirectory() && TESSERACT_LANGUAGE_PACK_EXT.equals(fileExt)) { + String packageName = FilenameUtils.getBaseName(languagePack.getName()); + languagePacks.add(packageName); } } + return String.join("+", languagePacks); } @@ -499,8 +495,8 @@ final class TikaTextExtractor extends TextExtractor { * Determines how the extraction process will proceed given the settings * stored in this context instance. * - * See the ImageConfig class in the extractionconfigs package - for available settings. + * See the ImageConfig class in the extractionconfigs package for available + * settings. * * @param context Instance containing config classes */ diff --git a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestModule.java b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestModule.java index c8c0d50416..9d74c66c96 100644 --- a/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestModule.java +++ b/KeywordSearch/src/org/sleuthkit/autopsy/keywordsearch/KeywordSearchIngestModule.java @@ -31,6 +31,7 @@ import org.openide.util.NbBundle.Messages; import org.openide.util.lookup.Lookups; import org.sleuthkit.autopsy.casemodule.Case; import org.sleuthkit.autopsy.casemodule.NoCurrentCaseException; +import org.sleuthkit.autopsy.coreutils.ExecUtil.ProcessTerminator; import org.sleuthkit.autopsy.coreutils.Logger; import org.sleuthkit.autopsy.coreutils.MessageNotifyUtil; import org.sleuthkit.autopsy.ingest.FileIngestModule; @@ -477,10 +478,11 @@ public final class KeywordSearchIngestModule implements FileIngestModule { private boolean extractTextAndIndex(AbstractFile aFile, String detectedFormat) throws IngesterException { ImageConfig imageConfig = new ImageConfig(); imageConfig.setOCREnabled(KeywordSearchSettings.getOcrOption()); - Lookup extractionContext = Lookups.fixed(imageConfig); + ProcessTerminator terminator = () -> context.fileIngestIsCancelled(); + Lookup extractionContext = Lookups.fixed(imageConfig, terminator); try { - Reader specializedReader = TextReaders.getReader(aFile,extractionContext); + Reader specializedReader = TextReaders.getReader(aFile, extractionContext); //divide into chunks and index return Ingester.getDefault().indexText(specializedReader,aFile.getId(),aFile.getName(), aFile, context); } catch (TextReaders.NoTextReaderFound ex) { diff --git a/thirdparty/Tesseract-OCR/ambiguous_words.exe b/thirdparty/Tesseract-OCR/ambiguous_words.exe index f96c19e29e..577ad84575 100755 Binary files a/thirdparty/Tesseract-OCR/ambiguous_words.exe and b/thirdparty/Tesseract-OCR/ambiguous_words.exe differ diff --git a/thirdparty/Tesseract-OCR/classifier_tester.exe b/thirdparty/Tesseract-OCR/classifier_tester.exe index c548498814..2a52d65a08 100755 Binary files a/thirdparty/Tesseract-OCR/classifier_tester.exe and b/thirdparty/Tesseract-OCR/classifier_tester.exe differ diff --git a/thirdparty/Tesseract-OCR/cntraining.exe b/thirdparty/Tesseract-OCR/cntraining.exe index d781c1ffbc..e54f8927a4 100755 Binary files a/thirdparty/Tesseract-OCR/cntraining.exe and b/thirdparty/Tesseract-OCR/cntraining.exe differ diff --git a/thirdparty/Tesseract-OCR/combine_tessdata.exe b/thirdparty/Tesseract-OCR/combine_tessdata.exe index 7756dc9815..4426dda4d5 100755 Binary files a/thirdparty/Tesseract-OCR/combine_tessdata.exe and b/thirdparty/Tesseract-OCR/combine_tessdata.exe differ diff --git a/thirdparty/Tesseract-OCR/dawg2wordlist.exe b/thirdparty/Tesseract-OCR/dawg2wordlist.exe index 5037cfc199..dca15eaf05 100755 Binary files a/thirdparty/Tesseract-OCR/dawg2wordlist.exe and b/thirdparty/Tesseract-OCR/dawg2wordlist.exe differ diff --git a/thirdparty/Tesseract-OCR/java/ScrollView.jar b/thirdparty/Tesseract-OCR/java/ScrollView.jar index c386404fce..75ea5c1a7c 100755 Binary files a/thirdparty/Tesseract-OCR/java/ScrollView.jar and b/thirdparty/Tesseract-OCR/java/ScrollView.jar differ diff --git a/thirdparty/Tesseract-OCR/libgcc_s_sjlj-1.dll b/thirdparty/Tesseract-OCR/libgcc_s_sjlj-1.dll index 7184764065..3326dc2757 100755 Binary files a/thirdparty/Tesseract-OCR/libgcc_s_sjlj-1.dll and b/thirdparty/Tesseract-OCR/libgcc_s_sjlj-1.dll differ diff --git a/thirdparty/Tesseract-OCR/libgomp-1.dll b/thirdparty/Tesseract-OCR/libgomp-1.dll index 6f6e719660..9f5006e83e 100755 Binary files a/thirdparty/Tesseract-OCR/libgomp-1.dll and b/thirdparty/Tesseract-OCR/libgomp-1.dll differ diff --git a/thirdparty/Tesseract-OCR/libstdc++-6.dll b/thirdparty/Tesseract-OCR/libstdc++-6.dll index 766ef43334..960516bb45 100755 Binary files a/thirdparty/Tesseract-OCR/libstdc++-6.dll and b/thirdparty/Tesseract-OCR/libstdc++-6.dll differ diff --git a/thirdparty/Tesseract-OCR/libtesseract-4.dll b/thirdparty/Tesseract-OCR/libtesseract-4.dll new file mode 100755 index 0000000000..3b1e9cacd7 Binary files /dev/null and b/thirdparty/Tesseract-OCR/libtesseract-4.dll differ diff --git a/thirdparty/Tesseract-OCR/lstmeval.exe b/thirdparty/Tesseract-OCR/lstmeval.exe new file mode 100755 index 0000000000..9a097fc375 Binary files /dev/null and b/thirdparty/Tesseract-OCR/lstmeval.exe differ diff --git a/thirdparty/Tesseract-OCR/lstmtraining.exe b/thirdparty/Tesseract-OCR/lstmtraining.exe new file mode 100755 index 0000000000..37eecaf413 Binary files /dev/null and b/thirdparty/Tesseract-OCR/lstmtraining.exe differ diff --git a/thirdparty/Tesseract-OCR/mftraining.exe b/thirdparty/Tesseract-OCR/mftraining.exe index 90f54c9b7a..6eb14c27f3 100755 Binary files a/thirdparty/Tesseract-OCR/mftraining.exe and b/thirdparty/Tesseract-OCR/mftraining.exe differ diff --git a/thirdparty/Tesseract-OCR/set_unicharset_properties.exe b/thirdparty/Tesseract-OCR/set_unicharset_properties.exe index 098363c2c7..3637db6a1a 100755 Binary files a/thirdparty/Tesseract-OCR/set_unicharset_properties.exe and b/thirdparty/Tesseract-OCR/set_unicharset_properties.exe differ diff --git a/thirdparty/Tesseract-OCR/shapeclustering.exe b/thirdparty/Tesseract-OCR/shapeclustering.exe index 84812fc2cd..eb245c2a9b 100755 Binary files a/thirdparty/Tesseract-OCR/shapeclustering.exe and b/thirdparty/Tesseract-OCR/shapeclustering.exe differ diff --git a/thirdparty/Tesseract-OCR/tessdata/configs/lstm.train b/thirdparty/Tesseract-OCR/tessdata/configs/lstm.train new file mode 100755 index 0000000000..3cb172d5e4 --- /dev/null +++ b/thirdparty/Tesseract-OCR/tessdata/configs/lstm.train @@ -0,0 +1,13 @@ +disable_character_fragments T +file_type .bl +textord_fast_pitch_test T +tessedit_single_match 0 +tessedit_zero_rejection T +tessedit_minimal_rejection F +tessedit_write_rep_codes F +il1_adaption_test 1 +edges_children_fix F +edges_childarea 0.65 +edges_boxarea 0.9 +tessedit_train_line_recognizer T +textord_no_rejects T diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.bigrams b/thirdparty/Tesseract-OCR/tessdata/eng.cube.bigrams deleted file mode 100755 index 3929380ee9..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.cube.bigrams +++ /dev/null @@ -1,9551 +0,0 @@ - 4 0002 000d - 487 0009 0024 - 453 0009 0026 - 358 0009 0028 - 1 0009 002c - 312 0009 002e - 1 0009 0030 - 361 0009 0031 - 122 0009 0032 - 95 0009 0033 - 85 0009 0034 - 111 0009 0035 - 106 0009 0036 - 121 0009 0037 - 34 0009 0038 - 32 0009 0039 - 251 0009 0041 - 230 0009 0042 - 413 0009 0043 - 128 0009 0044 - 118 0009 0045 - 107 0009 0046 - 31 0009 0047 - 81 0009 0048 - 241 0009 0049 - 36 0009 004a - 36 0009 004b - 143 0009 004c - 149 0009 004d - 68 0009 004e - 55 0009 004f - 127 0009 0050 - 4 0009 0051 - 114 0009 0052 - 231 0009 0053 - 122 0009 0054 - 109 0009 0055 - 23 0009 0056 - 76 0009 0057 - 1 0009 0058 - 84 0009 0059 - 3 0009 005a - 2050 0009 0061 - 1278 0009 0062 - 1395 0009 0063 - 973 0009 0064 - 740 0009 0065 - 1376 0009 0066 - 149 0009 0067 - 568 0009 0068 - 1417 0009 0069 - 93 0009 006a - 42 0009 006b - 587 0009 006c - 856 0009 006d - 468 0009 006e - 1954 0009 006f - 1499 0009 0070 - 6 0009 0071 - 577 0009 0072 - 922 0009 0073 - 2614 0009 0074 - 323 0009 0075 - 211 0009 0076 - 665 0009 0077 - 726 0009 0079 - 2 0009 007a - 82 0009 00a7 - 25 0009 201c - 5 000a 0014 - 159 000a 0018 - 1 000a 0021 - 45 000a 0022 - 29 000a 0023 - 569 000a 0024 - 31 000a 0025 - 3 000a 0026 - 376 000a 0027 - 793 000a 0028 - 5 000a 0029 - 66 000a 002a - 19 000a 002b - 11 000a 002c - 1004 000a 002d - 987 000a 002e - 8 000a 002f - 1312 000a 0030 - 5635 000a 0031 - 3417 000a 0032 - 2041 000a 0033 - 1392 000a 0034 - 1172 000a 0035 - 975 000a 0036 - 735 000a 0037 - 1150 000a 0038 - 557 000a 0039 - 3 000a 003a - 5 000a 003b - 17 000a 003c - 37 000a 003d - 1 000a 003e - 2 000a 003f - 3214 000a 0041 - 1401 000a 0042 - 3306 000a 0043 - 1325 000a 0044 - 1729 000a 0045 - 2596 000a 0046 - 766 000a 0047 - 1121 000a 0048 - 3430 000a 0049 - 468 000a 004a - 396 000a 004b - 826 000a 004c - 1784 000a 004d - 1069 000a 004e - 864 000a 004f - 1970 000a 0050 - 132 000a 0051 - 1606 000a 0052 - 2901 000a 0053 - 5249 000a 0054 - 864 000a 0055 - 332 000a 0056 - 1673 000a 0057 - 57 000a 0058 - 491 000a 0059 - 33 000a 005a - 82 000a 005b - 1 000a 005c - 58 000a 005d - 13 000a 005f - 1213 000a 0061 - 575 000a 0062 - 758 000a 0063 - 547 000a 0064 - 411 000a 0065 - 463 000a 0066 - 203 000a 0067 - 306 000a 0068 - 817 000a 0069 - 35 000a 006a - 66 000a 006b - 237 000a 006c - 376 000a 006d - 258 000a 006e - 587 000a 006f - 691 000a 0070 - 100 000a 0071 - 423 000a 0072 - 715 000a 0073 - 1265 000a 0074 - 140 000a 0075 - 160 000a 0076 - 1535 000a 0077 - 217 000a 0078 - 111 000a 0079 - 13 000a 007a - 6 000a 007b - 5 000a 007d - 2 000a 007e - 11 000a 00a3 - 1 000a 00a8 - 223 000a 00a9 - 1 000a 00ae - 12 000a 00af - 29 000a 00b5 - 1 000a 00b7 - 1 000a 00b9 - 1 000a 00c9 - 20 000a 00d8 - 2 000a 00e1 - 2 000a 0160 - 25 000a 0192 - 1 000a 02dd - 1 000a 0391 - 2 000a 0393 - 2 000a 0395 - 1 000a 03a0 - 9 000a 03b1 - 15 000a 03b2 - 8 000a 03b3 - 5 000a 03b4 - 1 000a 03b5 - 3 000a 03b7 - 1 000a 03b8 - 2 000a 03ba - 24 000a 03bb - 1 000a 03bd - 3 000a 03be - 3 000a 03c0 - 1 000a 03c1 - 5 000a 03c3 - 1 000a 03c4 - 3 000a 03c5 - 1 000a 03c6 - 1 000a 03c9 - 13 000a 2013 - 66 000a 2014 - 24 000a 2018 - 3 000a 2019 - 510 000a 201c - 695 000a 2022 - 13 000a 2026 - 1 000a 2126 - 3 000a 2192 - 5 000a 21d4 - 2 000a 2200 - 3 000a 2202 - 1 000a 2206 - 1 000a 2207 - 1 000a 2211 - 41 000a 2212 - 11 000a 2217 - 2 000a 221a - 189 000a 221e - 1 000a 223c - 35 000a 2283 - 602 000a 25a0 - 449 000a 25c6 - 3538 000a 25cb - 5 000a 25cf - 15 000a 2701 - 4 000a 2702 - 1 000a 2736 - 1 000a 2776 - 1 000a 2777 - 1 000a 2778 - 2 000a f8eb - 4 000a f8ee - 27 000a f8f1 - 1 000a f8f9 - 7 000a fb01 - 4 000a fb02 - 4 000a fffd - 66 000c 0018 - 3 000c 0028 - 26 000c 002a - 1 000c 002e - 37 000c 002f - 1553 000c 0031 - 966 000c 0032 - 421 000c 0033 - 261 000c 0034 - 198 000c 0035 - 219 000c 0036 - 185 000c 0037 - 232 000c 0038 - 156 000c 0039 - 522 000c 0041 - 151 000c 0042 - 1316 000c 0043 - 248 000c 0044 - 141 000c 0045 - 566 000c 0046 - 151 000c 0047 - 121 000c 0048 - 403 000c 0049 - 804 000c 004a - 120 000c 004b - 89 000c 004c - 72 000c 004d - 110 000c 004e - 49 000c 004f - 333 000c 0050 - 18 000c 0051 - 233 000c 0052 - 651 000c 0053 - 1354 000c 0054 - 64 000c 0055 - 16 000c 0056 - 235 000c 0057 - 3 000c 0058 - 50 000c 0059 - 1 000c 005a - 25 000c 0061 - 14 000c 0062 - 9 000c 0063 - 9 000c 0064 - 6 000c 0065 - 13 000c 0066 - 3 000c 0067 - 18 000c 0068 - 15 000c 0069 - 1 000c 006a - 1 000c 006b - 8 000c 006c - 28 000c 006d - 4 000c 006e - 11 000c 006f - 9 000c 0070 - 4 000c 0072 - 20 000c 0073 - 23 000c 0074 - 19 000c 0076 - 17 000c 0077 - 62 000c 0078 - 5 000c 0079 - 18 000c 007e - 2 000c 0095 - 4 000c 00a9 - 1 000c 2014 - 1 000c 2018 - 63 000c 201c - 1 000c 2022 - 1 000c 25a0 - 14 0014 000a - 16 0014 0014 - 53 0014 0020 - 373 0018 000a - 522 0018 0018 - 224 0018 0020 - 121 0018 002c - 117 0018 002e - 126 0018 002f - 74 0018 0030 - 30 0018 0031 - 50 0018 0037 - 11 0018 003a - 4 0020 0002 - 57 0020 0014 - 107 0020 0018 - 117 0020 0021 - 8037 0020 0022 - 583 0020 0023 - 5502 0020 0024 - 157 0020 0025 - 2138 0020 0026 - 2835 0020 0027 - 28928 0020 0028 - 512 0020 0029 - 1191 0020 002a - 955 0020 002b - 516 0020 002c - 10693 0020 002d - 31542 0020 002e - 1580 0020 002f - 11624 0020 0030 - 56830 0020 0031 - 31288 0020 0032 - 15699 0020 0033 - 11110 0020 0034 - 10448 0020 0035 - 7779 0020 0036 - 7352 0020 0037 - 6329 0020 0038 - 6014 0020 0039 - 406 0020 003a - 28 0020 003b - 768 0020 003c - 2685 0020 003d - 323 0020 003e - 96 0020 003f - 59 0020 0040 - 57411 0020 0041 - 31277 0020 0042 - 45309 0020 0043 - 25056 0020 0044 - 22323 0020 0045 - 27112 0020 0046 - 23044 0020 0047 - 32424 0020 0048 - 73910 0020 0049 - 17608 0020 004a - 9480 0020 004b - 19530 0020 004c - 37064 0020 004d - 19241 0020 004e - 17602 0020 004f - 32290 0020 0050 - 2481 0020 0051 - 26190 0020 0052 - 57150 0020 0053 - 66882 0020 0054 - 11811 0020 0055 - 6598 0020 0056 - 29960 0020 0057 - 766 0020 0058 - 8792 0020 0059 - 1880 0020 005a - 1653 0020 005b - 2 0020 005c - 54 0020 005d - 2 0020 005e - 651 0020 005f - 2 0020 0060 - 435513 0020 0061 - 154967 0020 0062 - 180206 0020 0063 - 118212 0020 0064 - 99298 0020 0065 - 144361 0020 0066 - 55490 0020 0067 - 161454 0020 0068 - 237912 0020 0069 - 9996 0020 006a - 19458 0020 006b - 89477 0020 006c - 136608 0020 006d - 73323 0020 006e - 266504 0020 006f - 149670 0020 0070 - 8688 0020 0071 - 98272 0020 0072 - 238493 0020 0073 - 563454 0020 0074 - 43548 0020 0075 - 25424 0020 0076 - 204451 0020 0077 - 1486 0020 0078 - 47210 0020 0079 - 710 0020 007a - 504 0020 007b - 258 0020 007c - 28 0020 007d - 23 0020 007e - 1 0020 0085 - 91 0020 0093 - 264 0020 0095 - 1465 0020 00a3 - 2 0020 00a5 - 26 0020 00a7 - 19 0020 00a8 - 694 0020 00a9 - 22 0020 00ab - 3 0020 00ac - 54 0020 00ae - 77 0020 00af - 13 0020 00b1 - 1 0020 00b4 - 150 0020 00b5 - 97 0020 00b7 - 1 0020 00b8 - 1 0020 00b9 - 23 0020 00bb - 3 0020 00bd - 4 0020 00c1 - 2 0020 00c4 - 13 0020 00c5 - 1 0020 00c8 - 31 0020 00c9 - 1 0020 00d1 - 10 0020 00d6 - 60 0020 00d7 - 39 0020 00d8 - 8 0020 00dc - 28 0020 00df - 388 0020 00e0 - 29 0020 00e1 - 2 0020 00e2 - 2 0020 00e4 - 2 0020 00e8 - 349 0020 00e9 - 42 0020 00ea - 4 0020 00ed - 4 0020 00f1 - 2 0020 00f3 - 1 0020 00f6 - 15 0020 00f7 - 16 0020 00fa - 3 0020 00fc - 18 0020 0153 - 3 0020 0192 - 1 0020 02c7 - 2 0020 02d8 - 16 0020 02d9 - 2 0020 02db - 18 0020 02dc - 1 0020 0392 - 31 0020 0393 - 1 0020 0395 - 1 0020 0396 - 1 0020 0397 - 1 0020 0398 - 1 0020 0399 - 1 0020 039a - 2 0020 039b - 1 0020 039c - 1 0020 039d - 1 0020 039e - 1 0020 039f - 15 0020 03a0 - 1 0020 03a1 - 4 0020 03a3 - 2 0020 03a4 - 1 0020 03a5 - 14 0020 03a6 - 1 0020 03a7 - 1 0020 03a8 - 186 0020 03b1 - 176 0020 03b2 - 211 0020 03b3 - 181 0020 03b4 - 26 0020 03b5 - 1 0020 03b6 - 33 0020 03b7 - 31 0020 03b8 - 2 0020 03b9 - 54 0020 03ba - 134 0020 03bb - 36 0020 03bd - 43 0020 03be - 1 0020 03bf - 103 0020 03c0 - 54 0020 03c1 - 1 0020 03c2 - 27 0020 03c3 - 39 0020 03c4 - 4 0020 03c5 - 87 0020 03c6 - 10 0020 03c7 - 5 0020 03c8 - 101 0020 03c9 - 5 0020 03d5 - 3076 0020 2013 - 807 0020 2014 - 3322 0020 2018 - 181 0020 2019 - 24580 0020 201c - 82 0020 201d - 2 0020 2020 - 5588 0020 2022 - 163 0020 2026 - 8 0020 20ac - 5 0020 211c - 11 0020 2126 - 152 0020 2192 - 3 0020 2194 - 12 0020 21d2 - 10 0020 21d4 - 46 0020 2200 - 134 0020 2202 - 4 0020 2203 - 2 0020 2205 - 55 0020 2206 - 8 0020 2207 - 116 0020 2208 - 2 0020 2209 - 3 0020 2211 - 1141 0020 2212 - 33 0020 2217 - 25 0020 221a - 3 0020 221d - 27 0020 221e - 9 0020 2227 - 1 0020 2228 - 6 0020 2229 - 17 0020 222a - 9 0020 222b - 1 0020 2235 - 27 0020 223c - 20 0020 2248 - 11 0020 2260 - 34 0020 2261 - 66 0020 2264 - 84 0020 2265 - 6 0020 2282 - 2 0020 2283 - 11 0020 2286 - 7 0020 22c5 - 1 0020 23a7 - 1 0020 23a8 - 1 0020 23a9 - 604 0020 25a0 - 161 0020 25c6 - 4775 0020 25cb - 36 0020 25cf - 1 0020 263a - 2 0020 2701 - 3 0020 2714 - 3 0020 2736 - 4 0020 2776 - 3 0020 2777 - 3 0020 2778 - 2 0020 2779 - 1 0020 27a2 - 10 0020 e00a - 1 0020 e00d - 32 0020 e01f - 1 0020 f647 - 1 0020 f64a - 5 0020 f6d9 - 1 0020 f8e6 - 2 0020 f8e7 - 1 0020 f8eb - 5 0020 f8ec - 3 0020 f8ed - 4 0020 f8ee - 10 0020 f8ef - 6 0020 f8f0 - 30 0020 f8f1 - 55 0020 f8f2 - 57 0020 f8f3 - 113 0020 f8f4 - 3 0020 f8f6 - 5 0020 f8f7 - 3 0020 f8f8 - 7 0020 f8f9 - 11 0020 f8fa - 7 0020 f8fb - 3 0020 f8fc - 2 0020 f8fd - 2 0020 f8fe - 3039 0020 fb01 - 559 0020 fb02 - 4 0020 fffd - 218 0021 000a - 3076 0021 0020 - 337 0021 0021 - 207 0021 0022 - 3 0021 0024 - 266 0021 0027 - 3 0021 0028 - 77 0021 0029 - 21 0021 002c - 21 0021 002d - 5 0021 002e - 1 0021 0030 - 11 0021 0031 - 8 0021 0032 - 2 0021 0033 - 4 0021 0034 - 1 0021 0035 - 1 0021 0036 - 2 0021 0038 - 2 0021 003d - 56 0021 003e - 6 0021 003f - 2 0021 0045 - 1 0021 0057 - 2 0021 005c - 1 0021 0068 - 2 0021 006e - 1 0021 0094 - 14 0021 2014 - 19 0021 2019 - 848 0021 201d - 2 0021 2026 - 60 0022 000a - 7 0022 000d - 7409 0022 0020 - 3 0022 0021 - 1 0022 0022 - 1 0022 0025 - 1 0022 0026 - 11 0022 0027 - 27 0022 0029 - 177 0022 002c - 31 0022 002d - 111 0022 002e - 1 0022 002f - 30 0022 0031 - 32 0022 0032 - 43 0022 0033 - 22 0022 0034 - 22 0022 0035 - 14 0022 0036 - 13 0022 0037 - 5 0022 0038 - 3 0022 0039 - 11 0022 003a - 46 0022 003b - 2 0022 003d - 8 0022 003e - 6 0022 003f - 422 0022 0041 - 238 0022 0042 - 174 0022 0043 - 250 0022 0044 - 91 0022 0045 - 94 0022 0046 - 187 0022 0047 - 365 0022 0048 - 1013 0022 0049 - 39 0022 004a - 17 0022 004b - 222 0022 004c - 217 0022 004d - 376 0022 004e - 211 0022 004f - 62 0022 0050 - 5 0022 0051 - 85 0022 0052 - 354 0022 0053 - 726 0022 0054 - 27 0022 0055 - 21 0022 0056 - 816 0022 0057 - 1 0022 0058 - 540 0022 0059 - 1 0022 005a - 2 0022 005b - 147 0022 0061 - 55 0022 0062 - 82 0022 0063 - 46 0022 0064 - 38 0022 0065 - 66 0022 0066 - 44 0022 0067 - 55 0022 0068 - 101 0022 0069 - 3 0022 006a - 7 0022 006b - 56 0022 006c - 80 0022 006d - 33 0022 006e - 54 0022 006f - 87 0022 0070 - 10 0022 0071 - 58 0022 0072 - 122 0022 0073 - 176 0022 0074 - 18 0022 0075 - 13 0022 0076 - 62 0022 0077 - 26 0022 0079 - 11 0022 2014 - 6 0022 2019 - 3 0023 000a - 165 0023 0020 - 27 0023 0023 - 4 0023 0028 - 10 0023 0029 - 26 0023 002c - 1 0023 002d - 2 0023 002e - 1 0023 0030 - 196 0023 0031 - 169 0023 0032 - 54 0023 0033 - 21 0023 0034 - 23 0023 0035 - 24 0023 0036 - 34 0023 0037 - 12 0023 0038 - 29 0023 0039 - 8 0023 003a - 1 0023 0040 - 4 0023 0043 - 3 0023 0044 - 5 0023 0046 - 1 0023 004e - 1 0023 0050 - 4 0023 0052 - 1 0023 0053 - 2 0023 0056 - 1 0023 0057 - 1 0023 005f - 1 0023 0061 - 1 0023 0062 - 2 0023 0064 - 1 0023 0066 - 1 0023 0069 - 2 0023 006c - 3 0023 006e - 2 0023 0072 - 1 0023 0073 - 1 0023 2014 - 29 0024 000a - 212 0024 0018 - 142 0024 0020 - 2 0024 0028 - 6 0024 0029 - 1 0024 002c - 29 0024 002e - 6 0024 002f - 279 0024 0030 - 2459 0024 0031 - 1355 0024 0032 - 761 0024 0033 - 560 0024 0034 - 570 0024 0035 - 314 0024 0036 - 328 0024 0037 - 200 0024 0038 - 226 0024 0039 - 15 0024 0041 - 11 0024 0042 - 27 0024 0043 - 1 0024 0044 - 1 0024 0046 - 3 0024 0047 - 2 0024 0048 - 1 0024 0049 - 1 0024 004a - 3 0024 004c - 9 0024 004d - 7 0024 004e - 9 0024 0053 - 8 0024 0054 - 3 0024 0055 - 9 0024 0056 - 1 0024 0059 - 23 0024 005b - 5 0024 005d - 32 0024 005f - 1 0024 0062 - 1 0024 0066 - 4 0024 006c - 65 0025 0009 - 259 0025 000a - 3382 0025 0020 - 1 0025 0021 - 3 0025 0027 - 259 0025 0029 - 3 0025 002a - 224 0025 002c - 4 0025 002d - 202 0025 002e - 28 0025 0032 - 1 0025 0037 - 2 0025 003a - 22 0025 003b - 3 0025 003e - 1 0025 003f - 1 0025 0042 - 1 0025 0049 - 1 0025 004a - 7 0025 0052 - 4 0025 0053 - 3 0025 0054 - 10 0025 005d - 2 0025 0061 - 1 0025 0062 - 2 0025 0064 - 1 0025 0066 - 1 0025 0069 - 1 0025 006c - 1 0025 006d - 4 0025 006f - 1 0025 0070 - 85 0025 0073 - 11 0025 0074 - 1 0025 0077 - 1 0025 0078 - 2 0025 2013 - 460 0026 0009 - 3 0026 000a - 2082 0026 0020 - 1 0026 0022 - 2 0026 0029 - 3 0026 002e - 3 0026 0031 - 42 0026 0041 - 4 0026 0042 - 3 0026 0043 - 821 0026 0044 - 21 0026 0045 - 13 0026 0046 - 5 0026 0048 - 4 0026 004c - 45 0026 004d - 1 0026 004e - 1 0026 004f - 197 0026 0050 - 2 0026 0052 - 1 0026 0053 - 84 0026 0054 - 1 0026 0057 - 5 0026 005b - 1 0026 005f - 2 0026 0061 - 2 0026 0062 - 13 0026 0063 - 2 0026 0064 - 2 0026 0068 - 1 0026 0069 - 1 0026 006c - 1 0026 006d - 2 0026 0070 - 1 0026 0073 - 1 0026 0074 - 1 0026 0076 - 13 0027 000a - 66 0027 000d - 2165 0027 0020 - 3 0027 0021 - 27 0027 0022 - 1 0027 0025 - 2 0027 0027 - 1 0027 0028 - 35 0027 0029 - 131 0027 002c - 15 0027 002d - 194 0027 002e - 8 0027 002f - 659 0027 0030 - 6 0027 0031 - 3 0027 0032 - 4 0027 0033 - 6 0027 0034 - 1 0027 0035 - 1 0027 0036 - 1 0027 0037 - 1 0027 0038 - 5 0027 003a - 32 0027 003b - 6 0027 003e - 14 0027 003f - 181 0027 0041 - 76 0027 0042 - 74 0027 0043 - 61 0027 0044 - 53 0027 0045 - 80 0027 0046 - 39 0027 0047 - 117 0027 0048 - 275 0027 0049 - 6 0027 004a - 2 0027 004b - 32 0027 004c - 69 0027 004d - 125 0027 004e - 79 0027 004f - 21 0027 0050 - 17 0027 0051 - 22 0027 0052 - 130 0027 0053 - 180 0027 0054 - 12 0027 0055 - 1 0027 0056 - 155 0027 0057 - 111 0027 0059 - 157 0027 0061 - 37 0027 0062 - 79 0027 0063 - 391 0027 0064 - 98 0027 0065 - 36 0027 0066 - 14 0027 0067 - 47 0027 0068 - 105 0027 0069 - 4 0027 006a - 5 0027 006b - 346 0027 006c - 332 0027 006d - 19 0027 006e - 78 0027 006f - 30 0027 0070 - 190 0027 0072 - 4086 0027 0073 - 2657 0027 0074 - 28 0027 0075 - 155 0027 0076 - 50 0027 0077 - 5 0027 0078 - 25 0027 0079 - 2 0027 00e2 - 24 0027 00e9 - 1 0027 00ea - 250 0028 000a - 348 0028 0020 - 5 0028 0021 - 18 0028 0022 - 54 0028 0023 - 202 0028 0024 - 117 0028 0025 - 4 0028 0026 - 23 0028 0027 - 19 0028 0028 - 51 0028 0029 - 40 0028 002a - 18 0028 002b - 2 0028 002c - 49 0028 002d - 8 0028 002e - 9 0028 002f - 235 0028 0030 - 4255 0028 0031 - 2395 0028 0032 - 579 0028 0033 - 425 0028 0034 - 294 0028 0035 - 220 0028 0036 - 221 0028 0037 - 210 0028 0038 - 135 0028 0039 - 1 0028 003a - 17 0028 003c - 3 0028 003d - 3 0028 003e - 1 0028 003f - 1 0028 0040 - 1007 0028 0041 - 628 0028 0042 - 1078 0028 0043 - 378 0028 0044 - 710 0028 0045 - 680 0028 0046 - 310 0028 0047 - 363 0028 0048 - 436 0028 0049 - 179 0028 004a - 184 0028 004b - 573 0028 004c - 629 0028 004d - 752 0028 004e - 343 0028 004f - 500 0028 0050 - 21 0028 0051 - 343 0028 0052 - 789 0028 0053 - 570 0028 0054 - 176 0028 0055 - 166 0028 0056 - 302 0028 0057 - 61 0028 0058 - 43 0028 0059 - 23 0028 005a - 5 0028 005b - 3 0028 005e - 134 0028 005f - 1513 0028 0061 - 586 0028 0062 - 608 0028 0063 - 351 0028 0064 - 936 0028 0065 - 435 0028 0066 - 81 0028 0067 - 255 0028 0068 - 1068 0028 0069 - 32 0028 006a - 113 0028 006b - 206 0028 006c - 392 0028 006d - 374 0028 006e - 736 0028 006f - 502 0028 0070 - 24 0028 0071 - 295 0028 0072 - 1605 0028 0073 - 859 0028 0074 - 213 0028 0075 - 108 0028 0076 - 604 0028 0077 - 228 0028 0078 - 80 0028 0079 - 47 0028 007a - 1 0028 007c - 2 0028 0093 - 39 0028 00a3 - 1 0028 00a9 - 1 0028 00ab - 10 0028 00ac - 1 0028 00af - 2 0028 00b0 - 12 0028 00b5 - 1 0028 00c1 - 3 0028 00c5 - 1 0028 00cc - 1 0028 00df - 1 0028 00e0 - 1 0028 00f1 - 20 0028 03b1 - 2 0028 03b2 - 21 0028 03b3 - 12 0028 03b4 - 1 0028 03b5 - 1 0028 03b8 - 10 0028 03bb - 4 0028 03bd - 2 0028 03be - 1 0028 03c0 - 2 0028 03c1 - 28 0028 03c6 - 1 0028 03c8 - 83 0028 03c9 - 33 0028 2018 - 111 0028 201c - 2 0028 2200 - 8 0028 2202 - 2 0028 2203 - 7 0028 2206 - 7 0028 2212 - 2 0028 221e - 1 0028 2227 - 1 0028 222a - 6 0028 fb01 - 3 0028 fb02 - 96 0029 0009 - 1759 0029 000a - 13 0029 000d - 15187 0029 0020 - 7 0029 0021 - 3 0029 0022 - 1 0029 0026 - 2 0029 0027 - 766 0029 0028 - 227 0029 0029 - 5 0029 002a - 5 0029 002b - 5554 0029 002c - 34 0029 002d - 8427 0029 002e - 44 0029 002f - 1 0029 0030 - 30 0029 0031 - 94 0029 0032 - 33 0029 0033 - 14 0029 0034 - 10 0029 0035 - 6 0029 0036 - 3 0029 0037 - 6 0029 0038 - 6 0029 0039 - 781 0029 003a - 796 0029 003b - 2 0029 003c - 25 0029 003d - 61 0029 003f - 3 0029 0041 - 6 0029 0043 - 1 0029 0044 - 10 0029 0046 - 1 0029 0047 - 1 0029 0048 - 2 0029 004c - 3 0029 004e - 1 0029 004f - 2 0029 0050 - 3 0029 0051 - 1 0029 0052 - 2 0029 0053 - 3 0029 0054 - 1 0029 0056 - 1 0029 005b - 47 0029 005d - 4 0029 005f - 3 0029 0061 - 2 0029 0062 - 3 0029 0063 - 3 0029 0064 - 8 0029 0065 - 7 0029 0066 - 1 0029 0067 - 2 0029 0068 - 1 0029 0069 - 2 0029 006b - 2 0029 006c - 20 0029 006d - 34 0029 006e - 4 0029 006f - 7 0029 0070 - 2 0029 0072 - 4 0029 0073 - 2 0029 0075 - 4 0029 0076 - 1 0029 0077 - 4 0029 0078 - 4 0029 0079 - 1 0029 007a - 2 0029 007b - 2 0029 007c - 38 0029 007d - 1 0029 0097 - 1 0029 02dc - 5 0029 0393 - 2 0029 03b4 - 3 0029 03c1 - 2 0029 03c6 - 5 0029 03d5 - 11 0029 2013 - 45 0029 2014 - 5 0029 2019 - 19 0029 201d - 1 0029 2022 - 1 0029 2026 - 1 0029 2122 - 1 0029 2192 - 4 0029 2206 - 6 0029 2212 - 2 0029 2217 - 1 0029 f8fb - 71 002a 000a - 1163 002a 0020 - 1 002a 0024 - 45 002a 0029 - 221 002a 002a - 6 002a 002c - 17 002a 002d - 4 002a 002e - 222 002a 002f - 7 002a 0031 - 1 002a 0032 - 1 002a 0039 - 2 002a 003b - 3 002a 003e - 10 002a 0041 - 3 002a 0042 - 5 002a 0043 - 6 002a 0044 - 1 002a 0046 - 1 002a 0047 - 38 002a 0048 - 3 002a 0049 - 1 002a 004c - 1 002a 004e - 4 002a 004f - 7 002a 0050 - 4 002a 0052 - 9 002a 0054 - 40 002a 0057 - 8 002a 0059 - 1 002a 0063 - 2 002a 0067 - 1 002a 0068 - 4 002a 0069 - 4 002a 006a - 2 002a 006d - 3 002a 006e - 1 002a 006f - 1 002a 0072 - 12 002a 0078 - 4 002a 0079 - 105 002b 000a - 912 002b 0020 - 4 002b 0029 - 6 002b 002b - 2 002b 002c - 11 002b 002d - 3 002b 002e - 4 002b 002f - 8 002b 0030 - 40 002b 0031 - 25 002b 0032 - 33 002b 0033 - 40 002b 0034 - 3 002b 0035 - 24 002b 0036 - 1 002b 0038 - 2 002b 0039 - 1 002b 003b - 4 002b 0041 - 17 002b 0042 - 29 002b 0043 - 3 002b 0044 - 14 002b 0045 - 7 002b 0046 - 1 002b 0048 - 2 002b 0049 - 2 002b 004b - 4 002b 004d - 1 002b 0050 - 1 002b 0052 - 4 002b 0053 - 9 002b 0054 - 13 002b 0056 - 2 002b 0058 - 1 002b 0059 - 3 002b 005a - 4 002b 0060 - 1 002b 0061 - 4 002b 0062 - 1 002b 0068 - 1 002b 0069 - 2 002b 006b - 4 002b 006d - 1 002b 006e - 1 002b 0073 - 20 002b 0078 - 7 002b 0079 - 1 002b 007a - 3 002b 03b7 - 3 002b 2013 - 2 002b 2019 - 1 002b 201d - 2 002b 2207 - 1 002b 221e - 1 002b f8f0 - 2415 002c 0009 - 435 002c 000a - 178 002c 000d - 164 002c 0018 - 296485 002c 0020 - 1127 002c 0022 - 7 002c 0024 - 5 002c 0026 - 444 002c 0027 - 50 002c 0028 - 6 002c 0029 - 2 002c 002a - 11 002c 002c - 125 002c 002d - 23 002c 002e - 3810 002c 0030 - 451 002c 0031 - 573 002c 0032 - 319 002c 0033 - 363 002c 0034 - 619 002c 0035 - 268 002c 0036 - 345 002c 0037 - 266 002c 0038 - 219 002c 0039 - 1 002c 003c - 19 002c 0041 - 30 002c 0042 - 39 002c 0043 - 4 002c 0044 - 4 002c 0046 - 16 002c 0047 - 1 002c 0048 - 8 002c 0049 - 19 002c 004c - 9 002c 004d - 22 002c 004e - 2 002c 004f - 4 002c 0050 - 4 002c 0051 - 6 002c 0052 - 51 002c 0053 - 44 002c 0054 - 4 002c 0056 - 8 002c 0057 - 16 002c 0059 - 34 002c 005d - 14 002c 0061 - 16 002c 0062 - 8 002c 0063 - 1 002c 0065 - 3 002c 0066 - 2 002c 0067 - 2 002c 0068 - 7 002c 0069 - 1 002c 006a - 51 002c 006d - 19 002c 006e - 3 002c 0070 - 2 002c 0072 - 78 002c 0074 - 1 002c 0076 - 3 002c 0077 - 2 002c 0078 - 18 002c 0079 - 11 002c 0094 - 1 002c 00b5 - 4 002c 03b4 - 1 002c 03c3 - 1 002c 2018 - 414 002c 2019 - 11 002c 201c - 4705 002c 201d - 1 002c 2020 - 7 002c 2026 - 2 002c 2217 - 565 002d 000a - 13 002d 000d - 2350 002d 0020 - 1 002d 0021 - 7 002d 0022 - 15 002d 0023 - 800 002d 0024 - 2 002d 0026 - 30 002d 0027 - 15 002d 0028 - 5 002d 0029 - 17 002d 002a - 28 002d 002c - 2288 002d 002d - 138 002d 002e - 4 002d 002f - 4572 002d 0030 - 4575 002d 0031 - 2560 002d 0032 - 1379 002d 0033 - 855 002d 0034 - 795 002d 0035 - 743 002d 0036 - 397 002d 0037 - 413 002d 0038 - 674 002d 0039 - 3 002d 003e - 1 002d 003f - 313 002d 0041 - 237 002d 0042 - 567 002d 0043 - 233 002d 0044 - 139 002d 0045 - 182 002d 0046 - 130 002d 0047 - 199 002d 0048 - 158 002d 0049 - 97 002d 004a - 52 002d 004b - 142 002d 004c - 301 002d 004d - 63 002d 004e - 100 002d 004f - 512 002d 0050 - 18 002d 0051 - 312 002d 0052 - 490 002d 0053 - 241 002d 0054 - 92 002d 0055 - 70 002d 0056 - 114 002d 0057 - 20 002d 0058 - 73 002d 0059 - 36 002d 005a - 5 002d 005b - 1378 002d 0061 - 1703 002d 0062 - 2159 002d 0063 - 1276 002d 0064 - 1147 002d 0065 - 1546 002d 0066 - 496 002d 0067 - 795 002d 0068 - 1172 002d 0069 - 70 002d 006a - 230 002d 006b - 1184 002d 006c - 1965 002d 006d - 491 002d 006e - 1768 002d 006f - 1351 002d 0070 - 159 002d 0071 - 1145 002d 0072 - 2415 002d 0073 - 2553 002d 0074 - 604 002d 0075 - 223 002d 0076 - 764 002d 0077 - 39 002d 0078 - 554 002d 0079 - 9 002d 007a - 5 002d 00b5 - 1 002d 00dc - 24 002d 00e0 - 16 002d 00ea - 16 002d 03b1 - 1 002d 03b7 - 2 002d 2013 - 1 002d 2018 - 2 002d 201c - 11 002d 201d - 264 002d 2666 - 61 002d fb01 - 4 002d fb02 - 1126 002e 0009 - 12533 002e 000a - 1263 002e 000d - 2 002e 0018 - 258073 002e 0020 - 5 002e 0021 - 3444 002e 0022 - 5 002e 0023 - 4 002e 0024 - 124 002e 0025 - 14 002e 0026 - 512 002e 0027 - 24 002e 0028 - 1288 002e 0029 - 9 002e 002a - 6770 002e 002c - 155 002e 002d - 96046 002e 002e - 55 002e 002f - 4765 002e 0030 - 6039 002e 0031 - 6486 002e 0032 - 4813 002e 0033 - 4075 002e 0034 - 4021 002e 0035 - 3099 002e 0036 - 3020 002e 0037 - 3052 002e 0038 - 2533 002e 0039 - 294 002e 003a - 150 002e 003b - 4 002e 003c - 5 002e 003e - 45 002e 003f - 1 002e 0040 - 867 002e 0041 - 136 002e 0042 - 900 002e 0043 - 260 002e 0044 - 343 002e 0045 - 116 002e 0046 - 73 002e 0047 - 163 002e 0048 - 96 002e 0049 - 160 002e 004a - 78 002e 004b - 79 002e 004c - 176 002e 004d - 62 002e 004e - 170 002e 004f - 473 002e 0050 - 13 002e 0051 - 664 002e 0052 - 1527 002e 0053 - 1040 002e 0054 - 68 002e 0055 - 102 002e 0056 - 121 002e 0057 - 5 002e 0058 - 168 002e 0059 - 2 002e 005a - 5 002e 005b - 278 002e 005d - 2 002e 005f - 530 002e 0061 - 118 002e 0062 - 1850 002e 0063 - 149 002e 0064 - 1032 002e 0065 - 123 002e 0066 - 809 002e 0067 - 804 002e 0068 - 121 002e 0069 - 65 002e 006a - 23 002e 006b - 57 002e 006c - 148 002e 006d - 488 002e 006e - 570 002e 006f - 578 002e 0070 - 4 002e 0071 - 47 002e 0072 - 1027 002e 0073 - 137 002e 0074 - 214 002e 0075 - 37 002e 0076 - 102 002e 0077 - 78 002e 0078 - 39 002e 0079 - 18 002e 007a - 185 002e 007d - 24 002e 0094 - 4 002e 00a0 - 1 002e 00b9 - 2 002e 2013 - 10 002e 2014 - 2 002e 2018 - 781 002e 2019 - 6 002e 201c - 9727 002e 201d - 42 002e 2026 - 1 002e fb01 - 1 002e fffd - 76 002f 000a - 2 002f 000d - 219 002f 0018 - 1889 002f 0020 - 1 002f 0021 - 3 002f 0024 - 1 002f 0025 - 25 002f 0028 - 14 002f 0029 - 223 002f 002a - 7 002f 002c - 4 002f 002d - 39 002f 002e - 1056 002f 002f - 756 002f 0030 - 1764 002f 0031 - 1333 002f 0032 - 542 002f 0033 - 299 002f 0034 - 304 002f 0035 - 340 002f 0036 - 181 002f 0037 - 142 002f 0038 - 155 002f 0039 - 1 002f 003a - 9 002f 003c - 13 002f 003e - 203 002f 0041 - 80 002f 0042 - 131 002f 0043 - 70 002f 0044 - 138 002f 0045 - 147 002f 0046 - 58 002f 0047 - 45 002f 0048 - 82 002f 0049 - 23 002f 004a - 13 002f 004b - 108 002f 004c - 113 002f 004d - 149 002f 004e - 181 002f 004f - 124 002f 0050 - 9 002f 0051 - 71 002f 0052 - 261 002f 0053 - 94 002f 0054 - 52 002f 0055 - 19 002f 0056 - 101 002f 0057 - 7 002f 0058 - 9 002f 0059 - 8 002f 005a - 6 002f 005b - 308 002f 0061 - 221 002f 0062 - 336 002f 0063 - 224 002f 0064 - 162 002f 0065 - 217 002f 0066 - 105 002f 0067 - 224 002f 0068 - 213 002f 0069 - 46 002f 006a - 63 002f 006b - 157 002f 006c - 277 002f 006d - 151 002f 006e - 385 002f 006f - 318 002f 0070 - 4 002f 0071 - 179 002f 0072 - 478 002f 0073 - 229 002f 0074 - 52 002f 0075 - 38 002f 0076 - 985 002f 0077 - 7 002f 0078 - 15 002f 0079 - 2 002f 007b - 32 002f 007e - 1 002f 00a3 - 1 002f 00e9 - 1 002f 03b3 - 2 002f 03b4 - 3 002f 03bd - 2 002f 03be - 1 002f 03c1 - 1 002f 03c4 - 2 002f 03c6 - 1 002f 03c9 - 1 002f 2019 - 1 002f 201d - 17 002f 2202 - 3 002f 2206 - 3 002f fb01 - 428 0030 0009 - 3562 0030 000a - 191 0030 000d - 14 0030 0018 - 24430 0030 0020 - 6 0030 0021 - 7 0030 0022 - 1 0030 0024 - 1538 0030 0025 - 2 0030 0026 - 25 0030 0027 - 243 0030 0028 - 1895 0030 0029 - 9 0030 002a - 47 0030 002b - 4639 0030 002c - 904 0030 002d - 14984 0030 002e - 792 0030 002f - 25678 0030 0030 - 3395 0030 0031 - 2880 0030 0032 - 2861 0030 0033 - 3665 0030 0034 - 3362 0030 0035 - 1811 0030 0036 - 1022 0030 0037 - 1218 0030 0038 - 1059 0030 0039 - 231 0030 003a - 384 0030 003b - 6 0030 003c - 8 0030 003d - 7 0030 003e - 27 0030 003f - 11 0030 0041 - 8 0030 0042 - 13 0030 0043 - 2 0030 0044 - 19 0030 0045 - 3 0030 0046 - 3 0030 0047 - 8 0030 0048 - 3 0030 004a - 20 0030 004b - 3 0030 004c - 10 0030 004d - 1 0030 004f - 8 0030 0050 - 1 0030 0051 - 6 0030 0053 - 1 0030 0054 - 5 0030 0056 - 4 0030 0057 - 3 0030 0058 - 4 0030 0059 - 72 0030 005d - 15 0030 005f - 32 0030 0061 - 39 0030 0062 - 18 0030 0063 - 5 0030 0064 - 18 0030 0066 - 3 0030 0067 - 8 0030 0068 - 24 0030 0069 - 2 0030 006a - 6 0030 006b - 2 0030 006c - 18 0030 006d - 66 0030 006e - 2 0030 006f - 16 0030 0070 - 1 0030 0072 - 1261 0030 0073 - 250 0030 0074 - 1 0030 0077 - 18 0030 0078 - 6 0030 0079 - 5 0030 007d - 2 0030 0096 - 1 0030 00a2 - 4 0030 00ae - 36 0030 00b0 - 5 0030 00ba - 1 0030 00c5 - 2 0030 00d7 - 1 0030 00f7 - 9 0030 02da - 1 0030 02dc - 1213 0030 2013 - 14 0030 2014 - 130 0030 2019 - 15 0030 201d - 16 0030 2212 - 34 0030 2217 - 165 0031 0009 - 2697 0031 000a - 200 0031 000d - 173 0031 0018 - 13926 0031 0020 - 10 0031 0022 - 1 0031 0023 - 221 0031 0025 - 4 0031 0026 - 6 0031 0027 - 237 0031 0028 - 2060 0031 0029 - 3 0031 002a - 9 0031 002b - 4247 0031 002c - 881 0031 002d - 9916 0031 002e - 935 0031 002f - 10386 0031 0030 - 7322 0031 0031 - 7378 0031 0032 - 6283 0031 0033 - 5396 0031 0034 - 6319 0031 0035 - 5458 0031 0036 - 4703 0031 0037 - 5530 0031 0038 - 19419 0031 0039 - 1102 0031 003a - 237 0031 003b - 4 0031 003c - 3 0031 003d - 18 0031 003e - 12 0031 003f - 2 0031 0040 - 29 0031 0041 - 152 0031 0042 - 20 0031 0043 - 12 0031 0044 - 20 0031 0045 - 4 0031 0046 - 6 0031 0047 - 2 0031 0048 - 13 0031 004a - 3 0031 004b - 2 0031 004c - 20 0031 004d - 4 0031 004e - 7 0031 004f - 5 0031 0050 - 2 0031 0051 - 1 0031 0052 - 7 0031 0053 - 1 0031 0054 - 1 0031 0056 - 1 0031 0057 - 1 0031 0058 - 14 0031 005b - 1 0031 005c - 134 0031 005d - 1 0031 005e - 5 0031 005f - 71 0031 0061 - 50 0031 0062 - 13 0031 0063 - 3 0031 0064 - 3 0031 0065 - 17 0031 0066 - 5 0031 0067 - 2 0031 0068 - 5 0031 0069 - 1 0031 006a - 7 0031 006b - 2 0031 006c - 8 0031 006d - 75 0031 006e - 12 0031 0070 - 519 0031 0073 - 15 0031 0074 - 1 0031 0076 - 6 0031 0078 - 4 0031 0079 - 17 0031 007d - 4 0031 0096 - 3 0031 00a2 - 4 0031 00b0 - 1 0031 00bd - 3 0031 00c5 - 2 0031 00e8 - 1 0031 02db - 1 0031 03a0 - 2 0031 03b2 - 1000 0031 2013 - 6 0031 2014 - 4 0031 2019 - 17 0031 201d - 1 0031 2190 - 1 0031 2202 - 27 0031 2212 - 22 0031 2217 - 2 0031 2264 - 1 0031 f8f0 - 65 0032 0009 - 2711 0032 000a - 198 0032 000d - 14941 0032 0020 - 1 0032 0021 - 3 0032 0022 - 324 0032 0025 - 3 0032 0026 - 9 0032 0027 - 242 0032 0028 - 1850 0032 0029 - 3 0032 002a - 3 0032 002b - 3783 0032 002c - 1272 0032 002d - 6011 0032 002e - 487 0032 002f - 16001 0032 0030 - 3865 0032 0031 - 4091 0032 0032 - 3581 0032 0033 - 3529 0032 0034 - 4376 0032 0035 - 3244 0032 0036 - 3467 0032 0037 - 3156 0032 0038 - 2965 0032 0039 - 623 0032 003a - 226 0032 003b - 3 0032 003d - 19 0032 003e - 5 0032 003f - 1 0032 0040 - 21 0032 0041 - 151 0032 0042 - 46 0032 0043 - 24 0032 0044 - 19 0032 0045 - 9 0032 0046 - 4 0032 0047 - 76 0032 0048 - 6 0032 0049 - 14 0032 004b - 6 0032 004c - 8 0032 004d - 9 0032 004e - 63 0032 004f - 16 0032 0050 - 31 0032 0052 - 21 0032 0053 - 16 0032 0054 - 1 0032 0057 - 1 0032 0058 - 2 0032 0059 - 2 0032 005a - 14 0032 005b - 2 0032 005c - 71 0032 005d - 1 0032 005e - 8 0032 005f - 71 0032 0061 - 86 0032 0062 - 23 0032 0063 - 26 0032 0064 - 11 0032 0065 - 19 0032 0066 - 2 0032 0067 - 20 0032 0068 - 4 0032 006a - 13 0032 006b - 5 0032 006c - 29 0032 006d - 189 0032 006e - 1 0032 006f - 6 0032 0070 - 12 0032 0072 - 10 0032 0073 - 15 0032 0074 - 5 0032 0077 - 24 0032 0078 - 24 0032 0079 - 3 0032 007b - 4 0032 007d - 3 0032 0096 - 4 0032 00a2 - 10 0032 00b0 - 1 0032 00b7 - 4 0032 00ba - 2 0032 00bd - 1 0032 00c5 - 1 0032 00d7 - 1 0032 00e8 - 1 0032 02d9 - 3 0032 02db - 1 0032 03b1 - 1 0032 03b2 - 13 0032 03b3 - 12 0032 03ba - 1 0032 03bb - 2 0032 03bd - 46 0032 03c0 - 2 0032 03c3 - 833 0032 2013 - 9 0032 2014 - 5 0032 2019 - 13 0032 201d - 3 0032 2026 - 3 0032 2032 - 3 0032 2208 - 5 0032 2212 - 17 0032 2217 - 1 0032 f8f4 - 1 0032 f8fe - 104 0033 0009 - 2456 0033 000a - 205 0033 000d - 12336 0033 0020 - 5 0033 0022 - 206 0033 0025 - 2 0033 0027 - 166 0033 0028 - 1741 0033 0029 - 3 0033 002a - 7 0033 002b - 3334 0033 002c - 799 0033 002d - 4762 0033 002e - 650 0033 002f - 4821 0033 0030 - 3178 0033 0031 - 2682 0033 0032 - 2620 0033 0033 - 2125 0033 0034 - 2310 0033 0035 - 1975 0033 0036 - 1827 0033 0037 - 1824 0033 0038 - 1802 0033 0039 - 367 0033 003a - 178 0033 003b - 1 0033 003d - 1 0033 003e - 9 0033 003f - 2 0033 0040 - 6 0033 0041 - 146 0033 0042 - 40 0033 0043 - 24 0033 0044 - 3 0033 0045 - 8 0033 0046 - 5 0033 0047 - 17 0033 0048 - 435 0033 0049 - 1 0033 004a - 1 0033 004b - 1 0033 004c - 11 0033 004d - 9 0033 004e - 33 0033 004f - 8 0033 0050 - 1 0033 0052 - 17 0033 0053 - 1 0033 0054 - 6 0033 0056 - 1 0033 0057 - 10 0033 0058 - 1 0033 0059 - 3 0033 005b - 35 0033 005d - 1 0033 005e - 9 0033 005f - 67 0033 0061 - 43 0033 0062 - 36 0033 0063 - 32 0033 0064 - 4 0033 0065 - 9 0033 0066 - 7 0033 0067 - 6 0033 0068 - 2 0033 0069 - 1 0033 006a - 6 0033 006b - 1 0033 006c - 2 0033 006d - 63 0033 006e - 20 0033 0070 - 1 0033 0071 - 50 0033 0072 - 14 0033 0073 - 11 0033 0074 - 26 0033 0078 - 7 0033 0079 - 3 0033 007d - 3 0033 0096 - 3 0033 00a2 - 2 0033 00b0 - 1 0033 00bd - 964 0033 2013 - 25 0033 2014 - 6 0033 2019 - 8 0033 201d - 1 0033 2026 - 30 0033 2217 - 47 0034 0009 - 2464 0034 000a - 177 0034 000d - 12083 0034 0020 - 11 0034 0022 - 249 0034 0025 - 11 0034 0027 - 159 0034 0028 - 1510 0034 0029 - 12 0034 002b - 3253 0034 002c - 920 0034 002d - 4314 0034 002e - 520 0034 002f - 3278 0034 0030 - 1830 0034 0031 - 1875 0034 0032 - 1710 0034 0033 - 1713 0034 0034 - 1977 0034 0035 - 1477 0034 0036 - 1532 0034 0037 - 1561 0034 0038 - 1462 0034 0039 - 346 0034 003a - 210 0034 003b - 17 0034 003f - 18 0034 0041 - 19 0034 0042 - 14 0034 0043 - 10 0034 0044 - 7 0034 0045 - 5 0034 0046 - 6 0034 0047 - 12 0034 0048 - 5 0034 004b - 2 0034 004c - 1 0034 004d - 8 0034 004e - 4 0034 004f - 6 0034 0050 - 1 0034 0052 - 3 0034 0053 - 1 0034 0054 - 1 0034 0055 - 2 0034 0056 - 35 0034 005d - 2 0034 005f - 95 0034 0061 - 43 0034 0062 - 14 0034 0063 - 14 0034 0064 - 3 0034 0065 - 20 0034 0066 - 4 0034 0068 - 3 0034 006b - 1 0034 006c - 5 0034 006d - 60 0034 006e - 1 0034 0070 - 3 0034 0072 - 7 0034 0073 - 87 0034 0074 - 3 0034 0075 - 14 0034 0077 - 21 0034 0078 - 5 0034 0079 - 5 0034 007d - 5 0034 0096 - 2 0034 00a2 - 3 0034 00b0 - 1 0034 00b7 - 1 0034 00c5 - 1 0034 00d7 - 2 0034 00e8 - 1 0034 02da - 3 0034 03b3 - 9 0034 03c0 - 797 0034 2013 - 9 0034 2014 - 3 0034 2019 - 7 0034 201d - 1 0034 2022 - 5 0034 2032 - 22 0034 2217 - 2 0034 f8e6 - 76 0035 0009 - 3018 0035 000a - 206 0035 000d - 13228 0035 0020 - 1 0035 0021 - 1 0035 0022 - 832 0035 0025 - 24 0035 0027 - 136 0035 0028 - 1036 0035 0029 - 21 0035 002b - 3725 0035 002c - 666 0035 002d - 3423 0035 002e - 688 0035 002f - 4770 0035 0030 - 1671 0035 0031 - 1556 0035 0032 - 1514 0035 0033 - 1606 0035 0034 - 1972 0035 0035 - 1601 0035 0036 - 1583 0035 0037 - 1468 0035 0038 - 1502 0035 0039 - 375 0035 003a - 228 0035 003b - 3 0035 003e - 13 0035 003f - 50 0035 0041 - 9 0035 0042 - 62 0035 0043 - 2 0035 0044 - 2 0035 0045 - 14 0035 0046 - 5 0035 0048 - 4 0035 004a - 4 0035 004b - 4 0035 004d - 3 0035 004f - 7 0035 0050 - 2 0035 0052 - 2 0035 0053 - 3 0035 0054 - 1 0035 0055 - 1 0035 0058 - 51 0035 005d - 1 0035 005e - 41 0035 0061 - 22 0035 0062 - 29 0035 0063 - 1 0035 0064 - 1 0035 0065 - 7 0035 0066 - 5 0035 0067 - 1 0035 0068 - 3 0035 006b - 3 0035 006c - 9 0035 006d - 57 0035 006e - 1 0035 006f - 7 0035 0070 - 3 0035 0072 - 13 0035 0073 - 155 0035 0074 - 1 0035 0077 - 98 0035 0078 - 20 0035 0079 - 2 0035 007d - 3 0035 0096 - 6 0035 00a2 - 16 0035 00b0 - 12 0035 00ba - 2 0035 00c5 - 3 0035 00d7 - 4 0035 02da - 978 0035 2013 - 8 0035 2014 - 10 0035 2019 - 13 0035 201d - 1 0035 2022 - 1 0035 2032 - 23 0035 2217 - 53 0036 0009 - 2000 0036 000a - 195 0036 000d - 10055 0036 0020 - 2 0036 0022 - 166 0036 0025 - 2 0036 0026 - 17 0036 0027 - 136 0036 0028 - 1019 0036 0029 - 5 0036 002a - 3 0036 002b - 3004 0036 002c - 543 0036 002d - 2628 0036 002e - 225 0036 002f - 2782 0036 0030 - 1548 0036 0031 - 1612 0036 0032 - 1583 0036 0033 - 1728 0036 0034 - 1852 0036 0035 - 1499 0036 0036 - 1654 0036 0037 - 1446 0036 0038 - 1248 0036 0039 - 314 0036 003a - 235 0036 003b - 1 0036 003e - 4 0036 003f - 11 0036 0041 - 6 0036 0042 - 9 0036 0043 - 3 0036 0045 - 8 0036 0046 - 27 0036 0048 - 3 0036 0049 - 2 0036 004b - 3 0036 004d - 4 0036 004e - 4 0036 004f - 2 0036 0050 - 1 0036 0051 - 3 0036 0053 - 2 0036 0054 - 2 0036 0057 - 25 0036 005d - 2 0036 005e - 5 0036 005f - 19 0036 0061 - 7 0036 0062 - 2 0036 0063 - 3 0036 0064 - 3 0036 0065 - 12 0036 0066 - 1 0036 0068 - 4 0036 006b - 8 0036 006d - 69 0036 006e - 1 0036 0070 - 10 0036 0072 - 1 0036 0073 - 154 0036 0074 - 8 0036 0077 - 13 0036 0078 - 9 0036 0079 - 1 0036 0096 - 4 0036 00b0 - 1 0036 00b7 - 2 0036 00ba - 2 0036 00d7 - 1 0036 02da - 790 0036 2013 - 7 0036 2014 - 5 0036 2019 - 5 0036 201d - 24 0036 2217 - 102 0037 0009 - 2250 0037 000a - 194 0037 000d - 10 0037 0018 - 9731 0037 0020 - 3 0037 0021 - 3 0037 0022 - 153 0037 0025 - 1 0037 0026 - 4 0037 0027 - 44 0037 0028 - 1021 0037 0029 - 2 0037 002b - 2702 0037 002c - 371 0037 002d - 2503 0037 002e - 125 0037 002f - 2072 0037 0030 - 1317 0037 0031 - 1664 0037 0032 - 1252 0037 0033 - 1304 0037 0034 - 1983 0037 0035 - 1395 0037 0036 - 1412 0037 0037 - 1423 0037 0038 - 1393 0037 0039 - 198 0037 003a - 225 0037 003b - 2 0037 003f - 3 0037 0040 - 7 0037 0041 - 14 0037 0042 - 4 0037 0043 - 5 0037 0044 - 7 0037 0045 - 2 0037 0046 - 2 0037 0047 - 2 0037 0048 - 1 0037 0049 - 8 0037 004b - 2 0037 004d - 1 0037 004e - 1 0037 004f - 1 0037 0050 - 1 0037 0052 - 30 0037 005d - 1 0037 005e - 1 0037 005f - 47 0037 0061 - 59 0037 0062 - 9 0037 0065 - 12 0037 0066 - 2 0037 006b - 4 0037 006d - 58 0037 006e - 2 0037 006f - 1 0037 0070 - 2 0037 0072 - 4 0037 0073 - 52 0037 0074 - 5 0037 0077 - 8 0037 0078 - 1 0037 007d - 1 0037 00a2 - 1 0037 00d7 - 1 0037 02db - 838 0037 2013 - 3 0037 2014 - 1 0037 2019 - 3 0037 201d - 1 0037 2044 - 25 0037 2217 - 37 0038 0009 - 1886 0038 000a - 190 0038 000d - 9638 0038 0020 - 5 0038 0022 - 225 0038 0025 - 2 0038 0026 - 7 0038 0027 - 98 0038 0028 - 1010 0038 0029 - 1 0038 002a - 3 0038 002b - 2473 0038 002c - 507 0038 002d - 2282 0038 002e - 667 0038 002f - 2726 0038 0030 - 1452 0038 0031 - 1314 0038 0032 - 1394 0038 0033 - 1533 0038 0034 - 1675 0038 0035 - 1473 0038 0036 - 1617 0038 0037 - 1542 0038 0038 - 1553 0038 0039 - 166 0038 003a - 208 0038 003b - 1 0038 003c - 1 0038 003e - 2 0038 003f - 2 0038 0040 - 19 0038 0041 - 14 0038 0042 - 7 0038 0043 - 6 0038 0044 - 3 0038 0045 - 6 0038 0046 - 6 0038 0048 - 6 0038 004a - 1 0038 004c - 10 0038 004d - 1 0038 004e - 2 0038 004f - 3 0038 0052 - 1 0038 0053 - 3 0038 0054 - 7 0038 0059 - 3 0038 005b - 22 0038 005d - 1 0038 005e - 2 0038 005f - 21 0038 0061 - 12 0038 0062 - 6 0038 0063 - 4 0038 0064 - 2 0038 0065 - 11 0038 0066 - 4 0038 0067 - 2 0038 0068 - 2 0038 006b - 1 0038 006c - 64 0038 006e - 10 0038 0072 - 2 0038 0073 - 55 0038 0074 - 2 0038 0077 - 3 0038 0078 - 1 0038 007d - 3 0038 0096 - 2 0038 00a2 - 1 0038 00af - 37 0038 00b0 - 1 0038 00d7 - 746 0038 2013 - 7 0038 2014 - 1 0038 2019 - 5 0038 201d - 19 0038 2217 - 28 0039 0009 - 2376 0039 000a - 197 0039 000d - 8402 0039 0020 - 2 0039 0021 - 2 0039 0022 - 198 0039 0025 - 4 0039 0027 - 47 0039 0028 - 1077 0039 0029 - 2 0039 002a - 5 0039 002b - 2450 0039 002c - 429 0039 002d - 2172 0039 002e - 466 0039 002f - 2656 0039 0030 - 1600 0039 0031 - 2015 0039 0032 - 1896 0039 0033 - 2074 0039 0034 - 2947 0039 0035 - 3377 0039 0036 - 3374 0039 0037 - 4729 0039 0038 - 9195 0039 0039 - 171 0039 003a - 208 0039 003b - 9 0039 003f - 10 0039 0041 - 11 0039 0042 - 4 0039 0043 - 6 0039 0044 - 1 0039 0045 - 2 0039 0046 - 4 0039 0048 - 1 0039 0049 - 2 0039 004a - 1 0039 004b - 1 0039 004d - 1 0039 004e - 1 0039 0053 - 6 0039 0057 - 2 0039 005c - 21 0039 005d - 4 0039 005f - 18 0039 0061 - 6 0039 0062 - 1 0039 0063 - 1 0039 0064 - 1 0039 0065 - 11 0039 0066 - 5 0039 006b - 7 0039 006d - 44 0039 006e - 5 0039 0073 - 67 0039 0074 - 14 0039 0078 - 4 0039 0096 - 1 0039 00a2 - 1 0039 00b0 - 854 0039 2013 - 2 0039 2014 - 6 0039 2019 - 5 0039 201d - 1 0039 2022 - 27 0039 2217 - 35 003a 0009 - 1536 003a 000a - 8 003a 000d - 27469 003a 0020 - 9 003a 0022 - 8 003a 0024 - 2 003a 0028 - 6 003a 0029 - 1 003a 002c - 6 003a 002d - 2 003a 002e - 1139 003a 002f - 396 003a 0030 - 554 003a 0031 - 393 003a 0032 - 322 003a 0033 - 280 003a 0034 - 107 003a 0035 - 55 003a 0036 - 31 003a 0037 - 30 003a 0038 - 37 003a 0039 - 1 003a 003d - 1 003a 003f - 19 003a 0041 - 19 003a 0042 - 12 003a 0043 - 10 003a 0044 - 6 003a 0045 - 2 003a 0046 - 2 003a 0047 - 2 003a 0048 - 2 003a 0049 - 2 003a 004a - 5 003a 004c - 11 003a 004d - 14 003a 004e - 2 003a 004f - 1 003a 0050 - 1 003a 0051 - 2 003a 0052 - 21 003a 0054 - 5 003a 0055 - 1 003a 0056 - 6 003a 0057 - 1 003a 005a - 89 003a 005c - 7 003a 005f - 9 003a 0061 - 2 003a 0062 - 1 003a 0063 - 3 003a 0064 - 25 003a 0067 - 3 003a 0068 - 2 003a 006c - 2 003a 006d - 2 003a 0073 - 3 003a 0077 - 1 003a 0078 - 1 003a 007a - 2 003a 007b - 8 003a 00b7 - 12 003a 201d - 495 003b 0009 - 270 003b 000a - 2 003b 000d - 11621 003b 0020 - 5 003b 0022 - 6 003b 0027 - 3 003b 0029 - 4 003b 002c - 6 003b 002d - 3 003b 0031 - 6 003b 0032 - 2 003b 0033 - 3 003b 0034 - 3 003b 0035 - 1 003b 0036 - 3 003b 0037 - 2 003b 0038 - 8 003b 003b - 1 003b 0054 - 1 003b 0063 - 1 003b 0069 - 1 003b 006f - 1 003b 0071 - 1 003b 2019 - 4 003b 201d - 75 003c 0020 - 1 003c 0024 - 3 003c 002c - 1 003c 002d - 53 003c 002f - 3 003c 0030 - 9 003c 0031 - 26 003c 0032 - 2 003c 0033 - 1 003c 0034 - 11 003c 0035 - 9 003c 0036 - 1 003c 0037 - 5 003c 003c - 8 003c 003d - 6 003c 003e - 3 003c 003f - 10 003c 0041 - 13 003c 0042 - 14 003c 0043 - 1 003c 0044 - 6 003c 0045 - 23 003c 0046 - 13 003c 0047 - 4 003c 0048 - 4 003c 0049 - 6 003c 004a - 1 003c 004b - 1 003c 004c - 10 003c 004d - 1 003c 004e - 15 003c 004f - 7 003c 0050 - 2 003c 0052 - 19 003c 0053 - 8 003c 0054 - 12 003c 0055 - 7 003c 0057 - 1 003c 0059 - 55 003c 0061 - 18 003c 0062 - 52 003c 0063 - 28 003c 0064 - 9 003c 0065 - 46 003c 0066 - 15 003c 0067 - 17 003c 0068 - 15 003c 0069 - 3 003c 006a - 5 003c 006b - 11 003c 006c - 10 003c 006d - 14 003c 006e - 21 003c 006f - 29 003c 0070 - 2 003c 0071 - 8 003c 0072 - 53 003c 0073 - 59 003c 0074 - 1 003c 0076 - 14 003c 0077 - 1 003c 0079 - 1 003c 00a3 - 1 003c 03b1 - 4 003c 201d - 4 003c fb01 - 60 003d 000a - 2630 003d 0020 - 17 003d 0022 - 7 003d 0024 - 8 003d 0025 - 28 003d 0027 - 71 003d 0028 - 4 003d 0029 - 5 003d 002c - 11 003d 002e - 1 003d 002f - 27 003d 0030 - 78 003d 0031 - 23 003d 0032 - 14 003d 0033 - 5 003d 0034 - 2 003d 0035 - 7 003d 0036 - 3 003d 0037 - 5 003d 0038 - 6 003d 0039 - 1 003d 003a - 8 003d 003b - 11 003d 003c - 166 003d 003d - 13 003d 0041 - 18 003d 0042 - 10 003d 0043 - 9 003d 0044 - 8 003d 0045 - 21 003d 0046 - 1 003d 0047 - 1 003d 0048 - 30 003d 0049 - 1 003d 004a - 6 003d 004c - 12 003d 004d - 19 003d 004e - 3 003d 004f - 15 003d 0050 - 13 003d 0052 - 6 003d 0053 - 10 003d 0054 - 9 003d 0055 - 8 003d 0056 - 2 003d 0057 - 17 003d 0059 - 1 003d 0061 - 2 003d 0062 - 20 003d 0063 - 5 003d 0065 - 3 003d 0066 - 1 003d 0067 - 1 003d 0068 - 84 003d 0069 - 1 003d 006b - 4 003d 006c - 5 003d 006d - 20 003d 006e - 19 003d 0070 - 1 003d 0072 - 40 003d 0073 - 14 003d 0074 - 7 003d 0075 - 2 003d 0076 - 1 003d 0077 - 2 003d 0078 - 91 003d 0079 - 2 003d 007a - 3 003d 007b - 1 003d 00a3 - 2 003d 03a3 - 4 003d 03b1 - 1 003d 03b5 - 1 003d 03c1 - 3 003d 2019 - 51 003d 201c - 1 003d 201d - 13 003d 2212 - 1 003d f8ef - 2 003d f8f2 - 32 003e 000a - 793 003e 0020 - 23 003e 0029 - 25 003e 002c - 32 003e 002e - 7 003e 002f - 3 003e 0030 - 22 003e 0031 - 35 003e 0032 - 1 003e 0033 - 17 003e 0034 - 12 003e 0035 - 24 003e 0036 - 1 003e 0037 - 1 003e 0038 - 1 003e 003a - 14 003e 003b - 11 003e 003d - 28 003e 003e - 1 003e 0049 - 1 003e 004e - 1 003e 0050 - 12 003e 005c - 5 003e 005d - 2 003e 0061 - 1 003e 0063 - 1 003e 0064 - 1 003e 0065 - 1 003e 0066 - 1 003e 0067 - 1 003e 006c - 1 003e 0070 - 3 003e 0073 - 1 003e 0077 - 2 003e 2014 - 33 003e 2022 - 1 003e 2026 - 9 003f 0009 - 1169 003f 000a - 1 003f 000d - 9603 003f 0020 - 32 003f 0021 - 1684 003f 0022 - 317 003f 0027 - 62 003f 0029 - 33 003f 002c - 6 003f 002d - 30 003f 002e - 7 003f 0031 - 3 003f 0032 - 2 003f 0033 - 1 003f 0034 - 2 003f 0035 - 1 003f 0036 - 1 003f 0037 - 11 003f 003a - 1 003f 003d - 6 003f 003e - 53 003f 003f - 1 003f 0048 - 3 003f 0049 - 2 003f 0050 - 1 003f 005c - 2 003f 005f - 1 003f 0061 - 2 003f 0062 - 1 003f 0063 - 1 003f 0065 - 2 003f 0066 - 14 003f 0069 - 1 003f 006c - 3 003f 006d - 1 003f 006e - 1 003f 006f - 5 003f 0070 - 4 003f 0071 - 9 003f 0073 - 3 003f 0074 - 3 003f 0078 - 4 003f 007d - 28 003f 2014 - 56 003f 2019 - 3976 003f 201d - 1 003f 2026 - 1 0040 000a - 48 0040 0020 - 1 0040 0029 - 1 0040 002e - 1 0040 0030 - 8 0040 0031 - 1 0040 0033 - 1 0040 0041 - 1 0040 0042 - 8 0040 0043 - 1 0040 0048 - 1 0040 004d - 2 0040 0054 - 2 0040 0057 - 27 0040 0061 - 9 0040 0062 - 36 0040 0063 - 1 0040 0064 - 13 0040 0065 - 10 0040 0066 - 5 0040 0067 - 11 0040 0068 - 11 0040 0069 - 1 0040 006a - 3 0040 006b - 1 0040 006c - 6 0040 006d - 4 0040 006e - 3 0040 006f - 9 0040 0070 - 2 0040 0072 - 15 0040 0073 - 8 0040 0074 - 1 0040 0075 - 1 0040 0076 - 15 0040 0077 - 3 0040 0079 - 1 0040 007e - 3 0040 201d - 31 0041 0009 - 354 0041 000a - 8 0041 000d - 11107 0041 0020 - 19 0041 0021 - 9 0041 0024 - 5 0041 0026 - 29 0041 0027 - 157 0041 0028 - 539 0041 0029 - 1 0041 002a - 4 0041 002b - 458 0041 002c - 155 0041 002d - 2611 0041 002e - 169 0041 002f - 11 0041 0030 - 188 0041 0031 - 178 0041 0032 - 109 0041 0033 - 64 0041 0034 - 14 0041 0035 - 11 0041 0036 - 12 0041 0037 - 8 0041 0038 - 14 0041 0039 - 251 0041 003a - 64 0041 003b - 5 0041 003d - 10 0041 003f - 316 0041 0041 - 730 0041 0042 - 2409 0041 0043 - 722 0041 0044 - 361 0041 0045 - 765 0041 0046 - 432 0041 0047 - 149 0041 0048 - 1464 0041 0049 - 12 0041 004a - 148 0041 004b - 2732 0041 004c - 1074 0041 004d - 5644 0041 004e - 188 0041 004f - 2058 0041 0050 - 135 0041 0051 - 2950 0041 0052 - 3431 0041 0053 - 4913 0041 0054 - 216 0041 0055 - 814 0041 0056 - 319 0041 0057 - 641 0041 0058 - 439 0041 0059 - 30 0041 005a - 6 0041 005d - 7 0041 005f - 72 0041 0061 - 1190 0041 0062 - 2389 0041 0063 - 1777 0041 0064 - 83 0041 0065 - 2824 0041 0066 - 2287 0041 0067 - 263 0041 0068 - 781 0041 0069 - 14 0041 006a - 45 0041 006b - 5729 0041 006c - 4026 0041 006d - 8973 0041 006e - 2 0041 006f - 2128 0041 0070 - 53 0041 0071 - 3508 0041 0072 - 5227 0041 0073 - 2128 0041 0074 - 1871 0041 0075 - 613 0041 0076 - 328 0041 0077 - 28 0041 0078 - 228 0041 0079 - 142 0041 007a - 1 0041 007d - 38 0041 0096 - 2 0041 03b1 - 6 0041 03b3 - 21 0041 2013 - 12 0041 2014 - 63 0041 2019 - 23 0041 201d - 1 0041 2229 - 1 0041 222a - 14 0042 0009 - 106 0042 000a - 2 0042 000d - 2209 0042 0020 - 2 0042 0021 - 6 0042 0024 - 1 0042 0026 - 2 0042 0027 - 34 0042 0028 - 203 0042 0029 - 13 0042 002b - 215 0042 002c - 314 0042 002d - 1580 0042 002e - 59 0042 002f - 3 0042 0030 - 82 0042 0031 - 114 0042 0032 - 33 0042 0033 - 60 0042 0034 - 33 0042 0035 - 30 0042 0036 - 22 0042 0037 - 11 0042 0038 - 16 0042 0039 - 53 0042 003a - 5 0042 003b - 6 0042 003d - 6 0042 003f - 1547 0042 0041 - 74 0042 0042 - 173 0042 0043 - 42 0042 0044 - 841 0042 0045 - 42 0042 0046 - 31 0042 0047 - 10 0042 0048 - 688 0042 0049 - 81 0042 004a - 6 0042 004b - 376 0042 004c - 166 0042 004d - 439 0042 004e - 567 0042 004f - 457 0042 0050 - 1 0042 0051 - 226 0042 0052 - 184 0042 0053 - 40 0042 0054 - 330 0042 0055 - 8 0042 0056 - 6 0042 0057 - 14 0042 0058 - 335 0042 0059 - 3 0042 005a - 5 0042 005d - 1 0042 005f - 4810 0042 0061 - 5958 0042 0065 - 93 0042 0068 - 2420 0042 0069 - 9 0042 006a - 2 0042 006b - 1251 0042 006c - 15 0042 006d - 2 0042 006e - 3479 0042 006f - 196 0042 0070 - 3796 0042 0072 - 11 0042 0073 - 1 0042 0074 - 6246 0042 0075 - 1085 0042 0079 - 4 0042 007c - 1 0042 0092 - 7 0042 00e4 - 2 0042 00e9 - 3 0042 00f6 - 9 0042 2013 - 6 0042 2014 - 11 0042 2019 - 3 0042 201d - 13 0043 0009 - 185 0043 000a - 9 0043 000d - 2427 0043 0020 - 1 0043 0021 - 2 0043 0022 - 1 0043 0023 - 1 0043 0024 - 4 0043 0025 - 34 0043 0026 - 10 0043 0027 - 18 0043 0028 - 247 0043 0029 - 2 0043 002b - 228 0043 002c - 193 0043 002d - 2180 0043 002e - 152 0043 002f - 8 0043 0030 - 115 0043 0031 - 140 0043 0032 - 33 0043 0033 - 70 0043 0034 - 19 0043 0035 - 109 0043 0036 - 14 0043 0037 - 25 0043 0038 - 31 0043 0039 - 223 0043 003a - 13 0043 003b - 3 0043 003d - 4 0043 003f - 2156 0043 0041 - 161 0043 0042 - 502 0043 0043 - 1234 0043 0044 - 2973 0043 0045 - 620 0043 0046 - 264 0043 0047 - 2335 0043 0048 - 693 0043 0049 - 2 0043 004a - 728 0043 004b - 462 0043 004c - 174 0043 004d - 142 0043 004e - 2531 0043 004f - 372 0043 0050 - 23 0043 0051 - 680 0043 0052 - 261 0043 0053 - 1815 0043 0054 - 178 0043 0055 - 27 0043 0056 - 10 0043 0057 - 1 0043 0058 - 767 0043 0059 - 2 0043 005d - 55 0043 005f - 7422 0043 0061 - 1 0043 0063 - 83 0043 0064 - 1409 0043 0065 - 46 0043 0066 - 11592 0043 0068 - 963 0043 0069 - 1 0043 006a - 2403 0043 006c - 46 0043 006d - 7 0043 006e - 15530 0043 006f - 2406 0043 0072 - 159 0043 0073 - 79 0043 0074 - 1734 0043 0075 - 3 0043 0076 - 166 0043 0079 - 26 0043 007a - 2 0043 00ae - 32 0043 00b0 - 1 0043 00c1 - 1 0043 00e0 - 16 0043 00e1 - 2 0043 00e9 - 1 0043 00ea - 2 0043 00f3 - 1 0043 03b1 - 32 0043 2013 - 8 0043 2014 - 31 0043 2019 - 12 0043 201d - 5 0043 221e - 4 0043 2261 - 4 0043 f6da - 9 0044 0009 - 355 0044 000a - 3 0044 000d - 6300 0044 0020 - 19 0044 0021 - 2 0044 0022 - 1 0044 0026 - 15 0044 0027 - 31 0044 0028 - 147 0044 0029 - 1 0044 002a - 4 0044 002b - 539 0044 002c - 149 0044 002d - 1543 0044 002e - 90 0044 002f - 1 0044 0030 - 31 0044 0031 - 49 0044 0032 - 5 0044 0033 - 16 0044 0034 - 15 0044 0035 - 9 0044 0036 - 3 0044 0037 - 1 0044 0038 - 2 0044 0039 - 64 0044 003a - 8 0044 003b - 11 0044 003d - 6 0044 003e - 18 0044 003f - 1382 0044 0041 - 135 0044 0042 - 345 0044 0043 - 147 0044 0044 - 2750 0044 0045 - 113 0044 0046 - 134 0044 0047 - 47 0044 0048 - 1157 0044 0049 - 19 0044 004a - 31 0044 004b - 117 0044 004c - 123 0044 004d - 158 0044 004e - 726 0044 004f - 262 0044 0050 - 1 0044 0051 - 240 0044 0052 - 374 0044 0053 - 101 0044 0054 - 557 0044 0055 - 134 0044 0056 - 13 0044 0057 - 373 0044 0058 - 112 0044 0059 - 4 0044 005d - 32 0044 005f - 5302 0044 0061 - 1 0044 0062 - 7294 0044 0065 - 1 0044 0066 - 23 0044 0068 - 3902 0044 0069 - 2 0044 006a - 2 0044 006c - 10 0044 006d - 5 0044 006e - 5464 0044 006f - 1043 0044 0072 - 130 0044 0073 - 19 0044 0074 - 1699 0044 0075 - 1 0044 0076 - 23 0044 0077 - 2 0044 0078 - 179 0044 0079 - 3 0044 007d - 40 0044 0096 - 1 0044 0097 - 9 0044 00e9 - 3 0044 00ed - 1 0044 03b1 - 4 0044 03c6 - 1 0044 2013 - 13 0044 2014 - 118 0044 2019 - 12 0044 201d - 2 0044 2207 - 6 0044 2212 - 9 0045 0009 - 920 0045 000a - 8800 0045 0020 - 32 0045 0021 - 2 0045 0022 - 2 0045 0023 - 2 0045 0026 - 12 0045 0027 - 37 0045 0028 - 220 0045 0029 - 514 0045 002c - 337 0045 002d - 1575 0045 002e - 36 0045 002f - 7 0045 0030 - 93 0045 0031 - 69 0045 0032 - 15 0045 0033 - 11 0045 0034 - 35 0045 0035 - 9 0045 0036 - 13 0045 0037 - 9 0045 0038 - 7 0045 0039 - 1076 0045 003a - 10 0045 003b - 34 0045 003d - 13 0045 003e - 59 0045 003f - 1140 0045 0041 - 119 0045 0042 - 1726 0045 0043 - 1836 0045 0044 - 794 0045 0045 - 420 0045 0046 - 264 0045 0047 - 39 0045 0048 - 3456 0045 0049 - 12 0045 004a - 34 0045 004b - 1558 0045 004c - 568 0045 004d - 2944 0045 004e - 175 0045 004f - 473 0045 0050 - 373 0045 0051 - 5727 0045 0052 - 3454 0045 0053 - 1416 0045 0054 - 230 0045 0055 - 497 0045 0056 - 404 0045 0057 - 838 0045 0058 - 364 0045 0059 - 25 0045 005a - 14 0045 005b - 3 0045 005c - 4 0045 005d - 70 0045 005f - 1460 0045 0061 - 25 0045 0062 - 1393 0045 0063 - 1682 0045 0064 - 34 0045 0065 - 249 0045 0066 - 450 0045 0067 - 26 0045 0068 - 639 0045 0069 - 18 0045 006a - 21 0045 006b - 1258 0045 006c - 1164 0045 006d - 2864 0045 006e - 6 0045 006f - 117 0045 0070 - 474 0045 0071 - 601 0045 0072 - 916 0045 0073 - 373 0045 0074 - 1125 0045 0075 - 2307 0045 0076 - 17 0045 0077 - 3833 0045 0078 - 106 0045 0079 - 9 0045 007a - 2 0045 00ae - 1 0045 00ca - 2 0045 03b4 - 2 0045 2013 - 157 0045 2014 - 56 0045 2019 - 14 0045 201d - 2 0045 2212 - 2 0045 fb00 - 175 0046 000a - 8 0046 000d - 2365 0046 0020 - 9 0046 0021 - 1 0046 0025 - 4 0046 0026 - 11 0046 0027 - 14 0046 0028 - 129 0046 0029 - 18 0046 002a - 129 0046 002c - 316 0046 002d - 833 0046 002e - 22 0046 002f - 7 0046 0030 - 44 0046 0031 - 44 0046 0032 - 454 0046 0033 - 23 0046 0034 - 9 0046 0035 - 16 0046 0036 - 10 0046 0037 - 10 0046 0038 - 14 0046 0039 - 19 0046 003a - 3 0046 003b - 8 0046 003c - 12 0046 003d - 9 0046 003e - 68 0046 003f - 4 0046 0040 - 731 0046 0041 - 60 0046 0042 - 809 0046 0043 - 139 0046 0044 - 597 0046 0045 - 794 0046 0046 - 85 0046 0047 - 17 0046 0048 - 1163 0046 0049 - 10 0046 004a - 30 0046 004b - 139 0046 004c - 123 0046 004d - 51 0046 004e - 2266 0046 004f - 287 0046 0050 - 19 0046 0051 - 515 0046 0052 - 419 0046 0053 - 244 0046 0054 - 433 0046 0055 - 20 0046 0056 - 12 0046 0057 - 26 0046 0058 - 188 0046 0059 - 1 0046 005c - 5 0046 005d - 35 0046 005f - 2652 0046 0061 - 2074 0046 0065 - 1 0046 0066 - 1 0046 0068 - 6504 0046 0069 - 1 0046 006a - 1 0046 006b - 1431 0046 006c - 7 0046 006e - 6909 0046 006f - 4082 0046 0072 - 117 0046 0073 - 44 0046 0074 - 2349 0046 0075 - 6 0046 0077 - 1 0046 0078 - 5 0046 0079 - 1 0046 007c - 3 0046 00e9 - 1 0046 00ed - 2 0046 00f6 - 2 0046 03b1 - 1 0046 03b2 - 3 0046 2013 - 4 0046 2014 - 7 0046 2019 - 2 0046 201d - 1 0046 2212 - 1 0046 f8fd - 1 0047 0009 - 357 0047 000a - 1725 0047 0020 - 13 0047 0021 - 1 0047 0025 - 2 0047 0026 - 1 0047 0027 - 91 0047 0028 - 38 0047 0029 - 1 0047 002a - 69 0047 002c - 32 0047 002d - 906 0047 002e - 34 0047 002f - 25 0047 0030 - 10 0047 0031 - 8 0047 0032 - 2 0047 0033 - 8 0047 0034 - 4 0047 0035 - 1 0047 0036 - 13 0047 0037 - 4 0047 0039 - 22 0047 003a - 2 0047 003b - 2 0047 003d - 3 0047 003e - 17 0047 003f - 286 0047 0041 - 56 0047 0042 - 4 0047 0043 - 395 0047 0044 - 1043 0047 0045 - 47 0047 0046 - 19 0047 0047 - 263 0047 0048 - 429 0047 0049 - 7 0047 004a - 16 0047 004b - 193 0047 004c - 58 0047 004d - 105 0047 004e - 893 0047 004f - 239 0047 0050 - 2 0047 0051 - 352 0047 0052 - 252 0047 0053 - 136 0047 0054 - 444 0047 0055 - 3 0047 0056 - 15 0047 0057 - 1 0047 0058 - 209 0047 0059 - 5 0047 005a - 1 0047 005d - 1916 0047 0061 - 1 0047 0062 - 2 0047 0064 - 3093 0047 0065 - 4 0047 0066 - 221 0047 0068 - 895 0047 0069 - 2 0047 006a - 1 0047 006b - 2027 0047 006c - 20 0047 006d - 43 0047 006e - 5507 0047 006f - 1 0047 0070 - 5799 0047 0072 - 8 0047 0073 - 1860 0047 0075 - 15 0047 0077 - 31 0047 0079 - 2 0047 007a - 1 0047 00c9 - 16 0047 00e9 - 3 0047 00f3 - 6 0047 00f6 - 2 0047 00fc - 2 0047 03b1 - 6 0047 2014 - 38 0047 2019 - 1 0047 201d - 1 0047 2217 - 1 0048 0009 - 572 0048 000a - 1744 0048 0020 - 13 0048 0021 - 2 0048 0026 - 29 0048 0028 - 57 0048 0029 - 4 0048 002b - 325 0048 002c - 202 0048 002d - 1041 0048 002e - 7 0048 002f - 3 0048 0030 - 12 0048 0031 - 153 0048 0032 - 134 0048 0033 - 77 0048 0034 - 13 0048 0035 - 28 0048 0036 - 2 0048 0037 - 3 0048 0038 - 3 0048 0039 - 18 0048 003a - 2 0048 003b - 7 0048 003d - 4 0048 003e - 8 0048 003f - 1820 0048 0041 - 47 0048 0042 - 100 0048 0043 - 38 0048 0044 - 4044 0048 0045 - 258 0048 0046 - 11 0048 0047 - 31 0048 0048 - 1291 0048 0049 - 10 0048 004a - 16 0048 004b - 59 0048 004c - 80 0048 004d - 84 0048 004e - 969 0048 004f - 46 0048 0050 - 12 0048 0051 - 1008 0048 0052 - 95 0048 0053 - 225 0048 0054 - 181 0048 0055 - 1 0048 0056 - 8 0048 0057 - 3 0048 0058 - 101 0048 0059 - 1 0048 005d - 16 0048 005f - 5056 0048 0061 - 1 0048 0062 - 1 0048 0063 - 12823 0048 0065 - 28 0048 0067 - 1 0048 0068 - 3788 0048 0069 - 1 0048 006a - 21 0048 006d - 7244 0048 006f - 1 0048 0070 - 8 0048 0072 - 97 0048 0073 - 2 0048 0074 - 1684 0048 0075 - 5 0048 0077 - 186 0048 0079 - 21 0048 007a - 34 0048 00c8 - 1 0048 00c9 - 4 0048 00e9 - 2 0048 00f6 - 2 0048 00fc - 7 0048 03b1 - 4 0048 03b4 - 2 0048 2013 - 9 0048 2014 - 18 0048 2019 - 5 0048 201d - 1 0048 2026 - 4 0049 0009 - 532 0049 000a - 4 0049 000d - 31637 0049 0020 - 3 0049 0021 - 4 0049 0022 - 1 0049 0024 - 3 0049 0026 - 632 0049 0027 - 1 0049 0028 - 224 0049 0029 - 2 0049 002b - 366 0049 002c - 57 0049 002d - 1130 0049 002e - 134 0049 002f - 5 0049 0031 - 6 0049 0032 - 2 0049 0035 - 2 0049 0037 - 2 0049 0038 - 115 0049 003a - 16 0049 003b - 1 0049 003d - 1 0049 003e - 57 0049 003f - 645 0049 0041 - 735 0049 0042 - 2532 0049 0043 - 1030 0049 0044 - 1223 0049 0045 - 1015 0049 0046 - 379 0049 0047 - 26 0049 0048 - 1159 0049 0049 - 14 0049 004a - 66 0049 004b - 1484 0049 004c - 959 0049 004d - 7201 0049 004e - 2267 0049 004f - 1037 0049 0050 - 153 0049 0051 - 1211 0049 0052 - 2386 0049 0053 - 4799 0049 0054 - 32 0049 0055 - 682 0049 0056 - 4 0049 0057 - 187 0049 0058 - 6 0049 0059 - 146 0049 005a - 2 0049 005c - 6 0049 005d - 1 0049 005f - 161 0049 0061 - 430 0049 0062 - 81 0049 0063 - 1022 0049 0064 - 2 0049 0065 - 4085 0049 0066 - 77 0049 0067 - 5 0049 0068 - 5 0049 0069 - 1 0049 006a - 13 0049 006b - 375 0049 006c - 988 0049 006d - 20930 0049 006e - 249 0049 006f - 207 0049 0070 - 4 0049 0071 - 1750 0049 0072 - 2600 0049 0073 - 7557 0049 0074 - 2 0049 0075 - 98 0049 0076 - 7 0049 0077 - 73 0049 0078 - 7 0049 0079 - 16 0049 007a - 3 0049 007d - 3 0049 0092 - 27 0049 0096 - 35 0049 00c8 - 1 0049 00f1 - 12 0049 03b1 - 1 0049 03d5 - 9 0049 2013 - 21 0049 2014 - 4 0049 2018 - 2791 0049 2019 - 6 0049 201d - 10 0049 2026 - 1 0049 2282 - 14 004a 000a - 342 004a 0020 - 1 004a 0021 - 54 004a 0023 - 1 004a 0024 - 1 004a 0027 - 4 004a 0029 - 1 004a 002b - 32 004a 002c - 6 004a 002d - 2206 004a 002e - 15 004a 002f - 7 004a 0031 - 17 004a 0032 - 1 004a 0033 - 1 004a 0034 - 1 004a 0036 - 1 004a 0038 - 55 004a 003a - 2 004a 003d - 7 004a 003f - 938 004a 0041 - 20 004a 0042 - 102 004a 0043 - 38 004a 0044 - 129 004a 0045 - 24 004a 0046 - 20 004a 0048 - 28 004a 0049 - 56 004a 004a - 12 004a 004d - 5 004a 004e - 298 004a 004f - 33 004a 0050 - 49 004a 0052 - 135 004a 0053 - 12 004a 0054 - 140 004a 0055 - 32 004a 0056 - 3 004a 0057 - 4065 004a 0061 - 2668 004a 0065 - 6 004a 0068 - 347 004a 0069 - 1 004a 006c - 12 004a 006e - 5643 004a 006f - 130 004a 0072 - 2 004a 0073 - 2585 004a 0075 - 1 004a 0079 - 2 004a 00c4 - 1 004a 00d6 - 8 004a 00e4 - 1 004a 00e9 - 1 004a 00f6 - 1 004a 00fa - 2 004a 2013 - 2 004a 2014 - 1 004a 2019 - 212 004b 000a - 2361 004b 0020 - 8 004b 0021 - 8 004b 0027 - 58 004b 0029 - 165 004b 002c - 26 004b 002d - 849 004b 002e - 32 004b 002f - 1 004b 0030 - 1 004b 0031 - 7 004b 0032 - 6 004b 0033 - 1 004b 0034 - 2 004b 0036 - 1 004b 0037 - 41 004b 003a - 14 004b 003b - 4 004b 003d - 6 004b 003e - 18 004b 003f - 59 004b 0041 - 72 004b 0042 - 57 004b 0043 - 2 004b 0044 - 453 004b 0045 - 14 004b 0046 - 21 004b 0047 - 72 004b 0048 - 582 004b 0049 - 17 004b 004a - 18 004b 004b - 14 004b 004c - 24 004b 004d - 112 004b 004e - 24 004b 004f - 12 004b 0050 - 33 004b 0052 - 111 004b 0053 - 5 004b 0054 - 43 004b 0055 - 4 004b 0056 - 19 004b 0057 - 36 004b 0059 - 1803 004b 0061 - 6 004b 0062 - 1787 004b 0065 - 236 004b 0068 - 1977 004b 0069 - 4 004b 006a - 1 004b 006b - 175 004b 006c - 1 004b 006d - 627 004b 006e - 708 004b 006f - 172 004b 0070 - 337 004b 0072 - 21 004b 0073 - 542 004b 0075 - 39 004b 0077 - 1 004b 0078 - 34 004b 0079 - 1 004b 007a - 5 004b 00f6 - 8 004b 03b1 - 1 004b 2013 - 6 004b 2014 - 31 004b 2019 - 8 004b 201d - 12 004c 0009 - 423 004c 000a - 1 004c 000d - 3462 004c 0020 - 5 004c 0021 - 47 004c 0023 - 2 004c 0024 - 1 004c 0026 - 49 004c 0027 - 3 004c 0028 - 102 004c 0029 - 1 004c 002b - 182 004c 002c - 38 004c 002d - 1020 004c 002e - 57 004c 002f - 4 004c 0030 - 48 004c 0031 - 68 004c 0032 - 8 004c 0033 - 22 004c 0034 - 11 004c 0035 - 2 004c 0036 - 1 004c 0037 - 1 004c 0038 - 3 004c 0039 - 104 004c 003a - 4 004c 003b - 20 004c 003d - 3 004c 003e - 7 004c 003f - 1385 004c 0041 - 69 004c 0042 - 432 004c 0043 - 438 004c 0044 - 2511 004c 0045 - 89 004c 0046 - 19 004c 0047 - 8 004c 0048 - 2328 004c 0049 - 5 004c 004a - 23 004c 004b - 1717 004c 004c - 61 004c 004d - 62 004c 004e - 1286 004c 004f - 171 004c 0050 - 2 004c 0051 - 16 004c 0052 - 427 004c 0053 - 580 004c 0054 - 230 004c 0055 - 125 004c 0056 - 23 004c 0057 - 8 004c 0058 - 244 004c 0059 - 1 004c 005a - 1 004c 005c - 8 004c 005d - 53 004c 005f - 3653 004c 0061 - 3 004c 0063 - 5150 004c 0065 - 20 004c 0066 - 7 004c 0068 - 4143 004c 0069 - 4 004c 006a - 1 004c 006b - 43 004c 006c - 5 004c 006d - 11 004c 006e - 4531 004c 006f - 3 004c 0070 - 26 004c 0073 - 368 004c 0074 - 962 004c 0075 - 2 004c 0076 - 9 004c 0077 - 278 004c 0079 - 3 004c 007d - 4 004c 00ae - 2 004c 00c9 - 1 004c 00e0 - 2 004c 00e4 - 1 004c 00e9 - 7 004c 00f3 - 1 004c 03c4 - 1 004c 2013 - 23 004c 2014 - 87 004c 2019 - 10 004c 201d - 1 004c 2026 - 1 004c 2194 - 2 004c 2212 - 4 004c f6da - 668 004d 000a - 1784 004d 0020 - 10 004d 0021 - 1 004d 0022 - 8 004d 0026 - 6 004d 0027 - 18 004d 0028 - 219 004d 0029 - 1 004d 002b - 153 004d 002c - 27 004d 002d - 1564 004d 002e - 11 004d 002f - 17 004d 0031 - 26 004d 0032 - 20 004d 0033 - 3 004d 0034 - 3 004d 0035 - 3 004d 0036 - 1 004d 0037 - 1 004d 0038 - 1 004d 0039 - 18 004d 003a - 4 004d 003b - 11 004d 003d - 1 004d 003e - 3 004d 003f - 6 004d 0040 - 2194 004d 0041 - 434 004d 0042 - 178 004d 0043 - 94 004d 0044 - 1192 004d 0045 - 68 004d 0046 - 72 004d 0047 - 39 004d 0048 - 1060 004d 0049 - 4 004d 004a - 3 004d 004b - 236 004d 004c - 199 004d 004d - 52 004d 004e - 661 004d 004f - 1443 004d 0050 - 86 004d 0052 - 607 004d 0053 - 79 004d 0054 - 150 004d 0055 - 15 004d 0056 - 10 004d 0057 - 2 004d 0058 - 169 004d 0059 - 2 004d 005a - 4 004d 005d - 14 004d 005f - 15410 004d 0061 - 13 004d 0062 - 769 004d 0063 - 3 004d 0064 - 3848 004d 0065 - 3 004d 0066 - 227 004d 0067 - 2 004d 0068 - 6030 004d 0069 - 1 004d 006a - 27 004d 006b - 17 004d 006d - 26 004d 006e - 5771 004d 006f - 1407 004d 0072 - 129 004d 0073 - 20 004d 0074 - 1930 004d 0075 - 1 004d 0076 - 24 004d 0077 - 4 004d 0078 - 1299 004d 0079 - 38 004d 0096 - 4 004d 00c9 - 10 004d 00e1 - 4 004d 00e4 - 2 004d 00e8 - 22 004d 00e9 - 5 004d 00ea - 1 004d 00f4 - 7 004d 00f6 - 1 004d 00fc - 4 004d 2013 - 11 004d 2014 - 16 004d 2019 - 11 004d 201d - 1 004d 2026 - 2 004d 2212 - 6 004e 0009 - 709 004e 000a - 6796 004e 0020 - 13 004e 0021 - 2 004e 0024 - 1 004e 0025 - 22 004e 0027 - 40 004e 0028 - 63 004e 0029 - 1 004e 002a - 2 004e 002b - 182 004e 002c - 93 004e 002d - 607 004e 002e - 27 004e 002f - 23 004e 0031 - 57 004e 0032 - 5 004e 0033 - 2 004e 0034 - 4 004e 0035 - 2 004e 0036 - 11 004e 0039 - 151 004e 003a - 6 004e 003b - 6 004e 003d - 12 004e 003f - 1187 004e 0041 - 35 004e 0042 - 1625 004e 0043 - 3655 004e 0044 - 1452 004e 0045 - 391 004e 0046 - 2266 004e 0047 - 53 004e 0048 - 789 004e 0049 - 90 004e 004a - 219 004e 004b - 268 004e 004c - 81 004e 004d - 919 004e 004e - 1823 004e 004f - 66 004e 0050 - 7 004e 0051 - 80 004e 0052 - 1490 004e 0053 - 3953 004e 0054 - 386 004e 0055 - 270 004e 0056 - 36 004e 0057 - 20 004e 0058 - 301 004e 0059 - 10 004e 005a - 1 004e 005d - 23 004e 005f - 3055 004e 0061 - 80 004e 0062 - 4 004e 0064 - 5677 004e 0065 - 4 004e 0067 - 3 004e 0068 - 1034 004e 0069 - 4 004e 006a - 275 004e 006b - 13 004e 006e - 7180 004e 006f - 16 004e 0073 - 542 004e 0075 - 2 004e 0076 - 13 004e 0079 - 1 004e 007c - 3 004e 007d - 1 004e 00a0 - 1 004e 00e5 - 3 004e 00e9 - 1 004e 03b4 - 5 004e 2013 - 25 004e 2014 - 42 004e 2019 - 13 004e 201d - 1 004e 2026 - 2 004e 2032 - 1 004e 2192 - 4 004f 0009 - 228 004f 000a - 4 004f 000d - 3068 004f 0020 - 16 004f 0021 - 1 004f 0025 - 61 004f 0027 - 8 004f 0028 - 141 004f 0029 - 187 004f 002c - 14 004f 002d - 395 004f 002e - 11 004f 002f - 1 004f 0031 - 185 004f 0032 - 34 004f 0033 - 32 004f 0034 - 1 004f 0035 - 1 004f 0037 - 2 004f 0039 - 62 004f 003a - 4 004f 003d - 3 004f 003f - 678 004f 0041 - 176 004f 0042 - 560 004f 0043 - 1282 004f 0044 - 1043 004f 0045 - 1793 004f 0046 - 296 004f 0047 - 192 004f 0048 - 398 004f 0049 - 8 004f 004a - 458 004f 004b - 1583 004f 004c - 1664 004f 004d - 4318 004f 004e - 654 004f 004f - 685 004f 0050 - 7 004f 0051 - 3075 004f 0052 - 871 004f 0053 - 1057 004f 0054 - 2132 004f 0055 - 994 004f 0056 - 879 004f 0057 - 81 004f 0058 - 62 004f 0059 - 5 004f 005a - 3 004f 005d - 2 004f 005f - 96 004f 0061 - 438 004f 0062 - 578 004f 0063 - 127 004f 0064 - 22 004f 0065 - 1249 004f 0066 - 18 004f 0067 - 585 004f 0068 - 37 004f 0069 - 2 004f 006a - 239 004f 006b - 404 004f 006c - 79 004f 006d - 4326 004f 006e - 23 004f 006f - 882 004f 0070 - 3 004f 0071 - 1765 004f 0072 - 1659 004f 0073 - 831 004f 0074 - 868 004f 0075 - 537 004f 0076 - 157 004f 0077 - 340 004f 0078 - 19 004f 0079 - 41 004f 007a - 1 004f 00f9 - 4 004f 03b4 - 12 004f 2013 - 13 004f 2014 - 707 004f 2019 - 5 004f 201d - 7 0050 0009 - 130 0050 000a - 2900 0050 0020 - 27 0050 0021 - 10 0050 0022 - 5 0050 0026 - 2 0050 0027 - 33 0050 0028 - 180 0050 0029 - 154 0050 002c - 509 0050 002d - 1059 0050 002e - 144 0050 002f - 1 0050 0030 - 63 0050 0031 - 26 0050 0032 - 13 0050 0033 - 4 0050 0034 - 7 0050 0035 - 7 0050 0036 - 1 0050 0037 - 1 0050 0038 - 6 0050 0039 - 17 0050 003a - 1 0050 003b - 3 0050 003d - 16 0050 003e - 4 0050 003f - 1399 0050 0041 - 118 0050 0042 - 388 0050 0043 - 186 0050 0044 - 1525 0050 0045 - 19 0050 0046 - 81 0050 0047 - 233 0050 0048 - 694 0050 0049 - 1 0050 004a - 75 0050 004b - 1430 0050 004c - 587 0050 004d - 21 0050 004e - 1265 0050 004f - 808 0050 0050 - 13 0050 0051 - 2148 0050 0052 - 688 0050 0053 - 1140 0050 0054 - 209 0050 0055 - 36 0050 0056 - 8 0050 0057 - 14 0050 0058 - 58 0050 0059 - 1 0050 005a - 3 0050 005c - 6 0050 005d - 8 0050 005f - 6655 0050 0061 - 73 0050 0062 - 29 0050 0063 - 53 0050 0064 - 3790 0050 0065 - 17 0050 0066 - 15 0050 0067 - 1710 0050 0068 - 1530 0050 0069 - 3 0050 006a - 7 0050 006b - 1802 0050 006c - 1 0050 006d - 19 0050 006e - 3109 0050 006f - 162 0050 0070 - 8638 0050 0072 - 450 0050 0073 - 432 0050 0074 - 1512 0050 0075 - 6 0050 0076 - 64 0050 0079 - 3 0050 00ae - 2 0050 00c9 - 1 0050 00e1 - 2 0050 00e4 - 1 0050 00e8 - 5 0050 00e9 - 3 0050 00ed - 2 0050 00fa - 3 0050 03b1 - 2 0050 2013 - 35 0050 2014 - 15 0050 2019 - 3 0050 201d - 1 0050 2212 - 4 0050 f6da - 2 0050 fb02 - 2 0051 0009 - 140 0051 000a - 270 0051 0020 - 1 0051 0021 - 39 0051 0028 - 16 0051 0029 - 6 0051 002b - 28 0051 002c - 69 0051 002d - 46 0051 002e - 5 0051 002f - 1 0051 0030 - 44 0051 0031 - 45 0051 0032 - 34 0051 0033 - 36 0051 0034 - 6 0051 0035 - 5 0051 0036 - 5 0051 0037 - 4 0051 0038 - 3 0051 0039 - 4 0051 003a - 3 0051 003d - 1 0051 003f - 11 0051 0041 - 2 0051 0042 - 5 0051 0044 - 2 0051 0049 - 587 0051 004c - 4 0051 004d - 161 0051 004e - 2 0051 004f - 5 0051 0050 - 1 0051 0051 - 40 0051 0052 - 9 0051 0053 - 1 0051 0054 - 625 0051 0055 - 1 0051 0057 - 1 0051 0059 - 3 0051 005b - 295 0051 0061 - 6 0051 0062 - 6 0051 0063 - 39 0051 0068 - 14 0051 0069 - 44 0051 006d - 38 0051 006f - 2 0051 0072 - 2 0051 0073 - 1496 0051 0075 - 1 0051 0077 - 2 0051 007d - 5 0051 03b1 - 1 0051 2013 - 1 0051 2014 - 5 0051 2019 - 1 0051 2200 - 1 0051 2203 - 1 0051 2212 - 4 0051 2217 - 13 0052 0009 - 899 0052 000a - 1 0052 000d - 4753 0052 0020 - 6 0052 0021 - 1 0052 0022 - 1 0052 0023 - 820 0052 0026 - 7 0052 0027 - 32 0052 0028 - 187 0052 0029 - 1 0052 002a - 297 0052 002c - 191 0052 002d - 2227 0052 002e - 31 0052 002f - 6 0052 0030 - 41 0052 0031 - 175 0052 0032 - 79 0052 0033 - 7 0052 0034 - 2 0052 0035 - 3 0052 0036 - 1 0052 0037 - 3 0052 0038 - 10 0052 0039 - 35 0052 003a - 12 0052 003b - 18 0052 003d - 3 0052 003e - 10 0052 003f - 2758 0052 0041 - 675 0052 0042 - 872 0052 0043 - 545 0052 0044 - 5826 0052 0045 - 536 0052 0046 - 259 0052 0047 - 24 0052 0048 - 1629 0052 0049 - 216 0052 004b - 540 0052 004c - 816 0052 004d - 404 0052 004e - 3395 0052 004f - 554 0052 0050 - 13 0052 0051 - 260 0052 0052 - 1165 0052 0053 - 1210 0052 0054 - 507 0052 0055 - 105 0052 0056 - 66 0052 0057 - 11 0052 0058 - 759 0052 0059 - 1 0052 005a - 4 0052 005d - 56 0052 005f - 2436 0052 0061 - 1 0052 0062 - 9 0052 0064 - 9336 0052 0065 - 9 0052 0066 - 127 0052 0068 - 1662 0052 0069 - 4 0052 006a - 187 0052 006b - 15 0052 006d - 4890 0052 006f - 394 0052 0070 - 1 0052 0072 - 127 0052 0073 - 18 0052 0074 - 1763 0052 0075 - 1 0052 0076 - 2 0052 0077 - 1 0052 0078 - 118 0052 0079 - 1 0052 0094 - 8 0052 00c9 - 1 0052 00d3 - 1 0052 00e4 - 11 0052 00e9 - 2 0052 00ea - 3 0052 00ed - 9 0052 00f3 - 2 0052 00f6 - 1 0052 00fa - 7 0052 00fc - 11 0052 03b1 - 2 0052 2013 - 23 0052 2014 - 37 0052 2019 - 8 0052 201d - 1 0052 2026 - 20 0053 0009 - 1445 0053 000a - 7 0053 000d - 8416 0053 0020 - 27 0053 0021 - 2 0053 0022 - 1 0053 0023 - 3 0053 0024 - 251 0053 0026 - 3 0053 0027 - 30 0053 0028 - 215 0053 0029 - 444 0053 002c - 851 0053 002d - 2735 0053 002e - 67 0053 002f - 3 0053 0030 - 28 0053 0031 - 41 0053 0032 - 18 0053 0033 - 11 0053 0034 - 9 0053 0036 - 3 0053 0037 - 1 0053 0038 - 545 0053 003a - 21 0053 003b - 7 0053 003d - 15 0053 003e - 40 0053 003f - 3591 0053 0041 - 1228 0053 0042 - 564 0053 0043 - 223 0053 0044 - 2116 0053 0045 - 32 0053 0046 - 63 0053 0047 - 795 0053 0048 - 1218 0053 0049 - 133 0053 004b - 179 0053 004c - 620 0053 004d - 155 0053 004e - 1333 0053 004f - 878 0053 0050 - 614 0053 0051 - 683 0053 0052 - 1803 0053 0053 - 3711 0053 0054 - 538 0053 0055 - 330 0053 0056 - 140 0053 0057 - 2 0053 0058 - 171 0053 0059 - 2 0053 005a - 8 0053 005d - 36 0053 005f - 4223 0053 0061 - 13 0053 0062 - 3309 0053 0063 - 3 0053 0064 - 6956 0053 0065 - 5 0053 0067 - 7556 0053 0068 - 3419 0053 0069 - 6 0053 006a - 258 0053 006b - 290 0053 006c - 1282 0053 006d - 440 0053 006e - 7330 0053 006f - 2570 0053 0070 - 80 0053 0071 - 50 0053 0072 - 15 0053 0073 - 8349 0053 0074 - 3947 0053 0075 - 17 0053 0076 - 1180 0053 0077 - 1049 0053 0079 - 7 0053 007a - 2 0053 007c - 39 0053 0096 - 23 0053 00ae - 18 0053 00e1 - 8 0053 00e9 - 1 0053 00ed - 1 0053 00f4 - 16 0053 00f6 - 2 0053 03bb - 7 0053 2013 - 27 0053 2014 - 14 0053 2019 - 5 0053 201d - 3 0053 2212 - 1 0053 2217 - 6 0054 0009 - 345 0054 000a - 5 0054 000d - 7211 0054 0020 - 15 0054 0021 - 4 0054 0022 - 42 0054 0026 - 8 0054 0027 - 32 0054 0028 - 157 0054 0029 - 16 0054 002a - 379 0054 002c - 175 0054 002d - 911 0054 002e - 42 0054 002f - 9 0054 0030 - 62 0054 0031 - 58 0054 0032 - 46 0054 0033 - 13 0054 0034 - 6 0054 0035 - 2 0054 0036 - 1 0054 0037 - 5 0054 0039 - 53 0054 003a - 15 0054 003b - 14 0054 003d - 57 0054 003f - 2991 0054 0041 - 93 0054 0042 - 658 0054 0043 - 56 0054 0044 - 3339 0054 0045 - 211 0054 0046 - 7 0054 0047 - 3965 0054 0048 - 3814 0054 0049 - 1 0054 004a - 3 0054 004b - 172 0054 004c - 305 0054 004d - 68 0054 004e - 1483 0054 004f - 108 0054 0050 - 5 0054 0051 - 1895 0054 0052 - 1726 0054 0053 - 387 0054 0054 - 851 0054 0055 - 310 0054 0056 - 153 0054 0057 - 26 0054 0058 - 577 0054 0059 - 70 0054 005a - 1 0054 005b - 38 0054 005d - 335 0054 005f - 3094 0054 0061 - 3 0054 0062 - 21 0054 0063 - 5 0054 0064 - 4359 0054 0065 - 1 0054 0067 - 51380 0054 0068 - 1576 0054 0069 - 1 0054 006a - 1 0054 006b - 7 0054 006c - 12 0054 006d - 17 0054 006e - 5085 0054 006f - 4 0054 0070 - 3701 0054 0072 - 1307 0054 0073 - 618 0054 0075 - 5 0054 0076 - 677 0054 0077 - 719 0054 0079 - 5 0054 007a - 1 0054 007c - 1 0054 0092 - 2 0054 00c4 - 17 0054 00e9 - 3 0054 00f6 - 1 0054 03d5 - 1 0054 2013 - 31 0054 2014 - 222 0054 2019 - 10 0054 201d - 1 0054 2206 - 2 0055 0009 - 141 0055 000a - 2 0055 000d - 859 0055 0020 - 12 0055 0021 - 3 0055 0024 - 2 0055 0027 - 1 0055 0028 - 31 0055 0029 - 47 0055 002c - 31 0055 002d - 1579 0055 002e - 6 0055 002f - 66 0055 0031 - 26 0055 0032 - 1 0055 0033 - 14 0055 0034 - 6 0055 0035 - 1 0055 0036 - 1 0055 0037 - 2 0055 0038 - 11 0055 003a - 3 0055 003d - 186 0055 003f - 304 0055 0041 - 110 0055 0042 - 408 0055 0043 - 645 0055 0044 - 651 0055 0045 - 152 0055 0046 - 85 0055 0047 - 10 0055 0048 - 515 0055 0049 - 5 0055 004a - 1114 0055 004b - 345 0055 004c - 417 0055 004d - 1325 0055 004e - 4 0055 004f - 613 0055 0050 - 1664 0055 0052 - 1846 0055 0053 - 472 0055 0054 - 23 0055 0055 - 53 0055 0056 - 7 0055 0057 - 35 0055 0058 - 13 0055 0059 - 180 0055 005a - 1 0055 005d - 2 0055 0061 - 10 0055 0062 - 9 0055 0063 - 5 0055 0064 - 4 0055 0065 - 2 0055 0066 - 73 0055 0067 - 23 0055 0068 - 2 0055 0069 - 2 0055 006a - 12 0055 006b - 145 0055 006c - 41 0055 006d - 5245 0055 006e - 1 0055 006f - 434 0055 0070 - 595 0055 0072 - 1487 0055 0073 - 98 0055 0074 - 1 0055 0075 - 2 0055 0076 - 1 0055 0077 - 1 0055 0078 - 1 0055 0079 - 7 0055 007a - 3 0055 00c9 - 1 0055 00d1 - 8 0055 2014 - 13 0055 2019 - 1 0055 201d - 1 0056 0009 - 46 0056 000a - 1027 0056 0020 - 98 0056 0029 - 199 0056 002c - 36 0056 002d - 640 0056 002e - 13 0056 002f - 14 0056 0031 - 11 0056 0032 - 11 0056 0034 - 1 0056 0035 - 5 0056 0036 - 1 0056 0037 - 3 0056 0038 - 25 0056 0039 - 20 0056 003a - 3 0056 003b - 9 0056 003d - 2 0056 003f - 1346 0056 0041 - 10 0056 0042 - 79 0056 0043 - 50 0056 0044 - 1723 0056 0045 - 10 0056 0046 - 22 0056 0047 - 25 0056 0048 - 632 0056 0049 - 1 0056 004b - 28 0056 004c - 20 0056 004d - 61 0056 004e - 240 0056 004f - 40 0056 0050 - 1 0056 0051 - 28 0056 0052 - 66 0056 0053 - 21 0056 0054 - 4 0056 0055 - 3 0056 0056 - 10 0056 0057 - 33 0056 0059 - 1 0056 005a - 1 0056 005d - 1699 0056 0061 - 1 0056 0062 - 10 0056 0063 - 836 0056 0065 - 2070 0056 0069 - 41 0056 006c - 1 0056 006e - 631 0056 006f - 154 0056 0070 - 35 0056 0072 - 28 0056 0073 - 21 0056 0075 - 1 0056 0078 - 6 0056 0079 - 1 0056 00ae - 1 0056 00c9 - 11 0056 00e9 - 2 0056 2013 - 4 0056 2014 - 6 0056 2019 - 3 0056 201d - 1 0056 2212 - 2 0057 0009 - 175 0057 000a - 1 0057 000d - 1088 0057 0020 - 8 0057 0021 - 10 0057 0027 - 10 0057 0028 - 22 0057 0029 - 37 0057 002c - 26 0057 002d - 1183 0057 002e - 9 0057 002f - 1 0057 0030 - 14 0057 0031 - 7 0057 0032 - 5 0057 0033 - 5 0057 0034 - 9 0057 0036 - 3 0057 003a - 1 0057 003b - 1 0057 003e - 4 0057 003f - 478 0057 0041 - 65 0057 0042 - 15 0057 0043 - 152 0057 0044 - 414 0057 0045 - 23 0057 0046 - 4 0057 0047 - 1129 0057 0048 - 716 0057 0049 - 5 0057 004a - 60 0057 004b - 45 0057 004c - 13 0057 004d - 291 0057 004e - 443 0057 004f - 26 0057 0050 - 8 0057 0051 - 67 0057 0052 - 71 0057 0053 - 56 0057 0054 - 12 0057 0055 - 2 0057 0056 - 65 0057 0057 - 13 0057 0058 - 10 0057 0059 - 9 0057 005a - 3 0057 005d - 3624 0057 0061 - 7246 0057 0065 - 1 0057 0067 - 11336 0057 0068 - 4828 0057 0069 - 1 0057 006b - 10 0057 006c - 8 0057 006d - 4 0057 006e - 3439 0057 006f - 154 0057 0070 - 626 0057 0072 - 9 0057 0073 - 93 0057 0075 - 82 0057 0079 - 1 0057 0092 - 1 0057 00f6 - 3 0057 00fc - 7 0057 2014 - 4 0057 2019 - 4 0058 0009 - 247 0058 000a - 870 0058 0020 - 1 0058 0021 - 2 0058 0022 - 4 0058 0027 - 6 0058 0028 - 75 0058 0029 - 2 0058 002a - 2 0058 002b - 90 0058 002c - 71 0058 002d - 141 0058 002e - 9 0058 002f - 8 0058 0031 - 14 0058 0032 - 2 0058 0033 - 1 0058 0035 - 19 0058 003a - 1 0058 003b - 22 0058 003d - 1 0058 003f - 447 0058 0041 - 3 0058 0042 - 5 0058 0043 - 5 0058 0044 - 28 0058 0045 - 2 0058 0046 - 5 0058 0048 - 109 0058 0049 - 380 0058 004c - 54 0058 004d - 38 0058 004e - 6 0058 004f - 196 0058 0050 - 11 0058 0052 - 3 0058 0053 - 109 0058 0054 - 2 0058 0055 - 41 0058 0056 - 50 0058 0057 - 78 0058 0058 - 62 0058 0059 - 1 0058 005a - 13 0058 005d - 7 0058 005f - 17 0058 0061 - 1 0058 0062 - 3 0058 0063 - 18 0058 0065 - 2 0058 0066 - 53 0058 0069 - 5 0058 006a - 6 0058 006d - 1 0058 006e - 2 0058 0073 - 3 0058 0074 - 24 0058 0075 - 11 0058 007d - 1 0058 00b0 - 1 0058 00b4 - 2 0058 2014 - 4 0058 2019 - 9 0058 201d - 3 0058 222b - 1 0058 2261 - 10 0059 0009 - 437 0059 000a - 2953 0059 0020 - 13 0059 0021 - 1 0059 0022 - 6 0059 0027 - 1 0059 0028 - 27 0059 0029 - 210 0059 002c - 51 0059 002d - 325 0059 002e - 22 0059 002f - 3 0059 0031 - 8 0059 0032 - 5 0059 0033 - 5 0059 0034 - 1 0059 0037 - 2 0059 0038 - 3 0059 0039 - 254 0059 003a - 2 0059 003b - 14 0059 003d - 2 0059 003e - 25 0059 003f - 162 0059 0041 - 37 0059 0042 - 76 0059 0043 - 8 0059 0044 - 368 0059 0045 - 7 0059 0046 - 4 0059 0047 - 1 0059 0048 - 29 0059 0049 - 3 0059 004b - 44 0059 004c - 83 0059 004d - 102 0059 004e - 779 0059 004f - 116 0059 0050 - 64 0059 0052 - 138 0059 0053 - 49 0059 0054 - 12 0059 0055 - 1 0059 0056 - 6 0059 0057 - 2 0059 0058 - 7 0059 0059 - 62 0059 005a - 9 0059 005b - 10 0059 005d - 195 0059 005f - 449 0059 0061 - 1 0059 0062 - 1890 0059 0065 - 58 0059 0069 - 1 0059 006b - 1 0059 006c - 7395 0059 006f - 2 0059 0070 - 348 0059 0072 - 1 0059 0074 - 157 0059 0075 - 13 0059 0076 - 1 0059 00fc - 25 0059 2014 - 13 0059 2019 - 3 0059 201d - 69 005a 000a - 127 005a 0020 - 2 005a 0021 - 4 005a 0027 - 1 005a 0028 - 4 005a 0029 - 16 005a 002c - 3 005a 002d - 130 005a 002e - 1 005a 0031 - 1 005a 0032 - 2 005a 0033 - 1 005a 0035 - 2 005a 003a - 65 005a 0041 - 2 005a 0042 - 1 005a 0043 - 1 005a 0044 - 89 005a 0045 - 7 005a 0048 - 39 005a 0049 - 2 005a 004c - 1 005a 004d - 18 005a 004f - 2 005a 0055 - 3 005a 0056 - 5 005a 0058 - 182 005a 0059 - 183 005a 005a - 928 005a 0061 - 1 005a 0062 - 4 005a 0064 - 288 005a 0065 - 145 005a 0068 - 113 005a 0069 - 2 005a 006c - 45 005a 006e - 206 005a 006f - 2 005a 0072 - 1 005a 0073 - 70 005a 0075 - 13 005a 0076 - 12 005a 0077 - 9 005a 0079 - 1 005a 007a - 1 005a 221e - 1 005a f8e6 - 9 005b 000a - 16 005b 0020 - 3 005b 0023 - 5 005b 0024 - 34 005b 0028 - 8 005b 002c - 2 005b 002d - 92 005b 002e - 135 005b 0030 - 114 005b 0031 - 61 005b 0032 - 17 005b 0033 - 11 005b 0034 - 15 005b 0035 - 10 005b 0036 - 7 005b 0037 - 7 005b 0038 - 11 005b 0039 - 2 005b 003d - 44 005b 0041 - 21 005b 0042 - 24 005b 0043 - 12 005b 0044 - 109 005b 0045 - 10 005b 0046 - 13 005b 0047 - 25 005b 0048 - 14 005b 0049 - 36 005b 004a - 10 005b 004b - 12 005b 004c - 21 005b 004d - 31 005b 004e - 22 005b 004f - 16 005b 0050 - 3 005b 0051 - 27 005b 0052 - 39 005b 0053 - 53 005b 0054 - 1 005b 0056 - 15 005b 0057 - 12 005b 0058 - 10 005b 0059 - 22 005b 005b - 2 005b 005d - 95 005b 0061 - 16 005b 0062 - 29 005b 0063 - 28 005b 0064 - 10 005b 0065 - 18 005b 0066 - 8 005b 0067 - 26 005b 0068 - 32 005b 0069 - 1 005b 006a - 5 005b 006b - 15 005b 006c - 41 005b 006d - 19 005b 006e - 34 005b 006f - 30 005b 0070 - 3 005b 0071 - 15 005b 0072 - 70 005b 0073 - 147 005b 0074 - 4 005b 0075 - 7 005b 0076 - 19 005b 0077 - 13 005b 0078 - 5 005b 0079 - 1 005b 0093 - 5 005b 00a3 - 1 005b 00b5 - 1 005b 0393 - 43 005b 03b1 - 3 005b 03b2 - 8 005b 03b3 - 1 005b 03b4 - 3 005b 03bb - 5 005b 03c1 - 2 005b 03c3 - 14 005b 03c6 - 2 005b 2026 - 3 005c 000a - 7 005c 0020 - 1 005c 0029 - 4 005c 002e - 12 005c 003c - 3 005c 003e - 7 005c 0041 - 2 005c 0042 - 1 005c 0043 - 40 005c 0044 - 1 005c 0048 - 4 005c 0049 - 3 005c 004c - 10 005c 004d - 2 005c 004f - 12 005c 0050 - 8 005c 0053 - 19 005c 0054 - 3 005c 0055 - 2 005c 0057 - 2 005c 0059 - 7 005c 0061 - 5 005c 0062 - 8 005c 0064 - 3 005c 0067 - 1 005c 0069 - 1 005c 006a - 4 005c 006c - 1 005c 006d - 15 005c 0070 - 10 005c 0073 - 14 005c 0074 - 4 005c 0075 - 14 005c 0077 - 2 005c 0079 - 1 005c 007b - 1 005c 201d - 151 005d 000a - 1095 005d 0020 - 3 005d 0021 - 3 005d 0022 - 1 005d 0025 - 3 005d 0028 - 52 005d 0029 - 1 005d 002b - 262 005d 002c - 6 005d 002d - 234 005d 002e - 23 005d 002f - 2 005d 0031 - 10 005d 0032 - 33 005d 003a - 11 005d 003b - 1 005d 003c - 11 005d 003f - 3 005d 004c - 1 005d 004e - 1 005d 0051 - 1 005d 005b - 1 005d 005c - 5 005d 005d - 5 005d 0061 - 1 005d 0062 - 1 005d 0064 - 9 005d 0065 - 2 005d 0066 - 1 005d 0067 - 7 005d 0068 - 5 005d 0069 - 1 005d 006c - 1 005d 006d - 6 005d 006e - 5 005d 006f - 2 005d 0072 - 10 005d 0074 - 1 005d 0075 - 1 005d 0076 - 1 005d 0078 - 8 005d 007d - 1 005d 2014 - 6 005d 201d - 1 005d 2026 - 1 005d 2212 - 1 005d 2217 - 2 005d 2227 - 2 005e 0028 - 3 005e 0029 - 7 005e 0032 - 1 005e 0033 - 1 005e 003d - 1 005e 003e - 1 005e 006e - 63 005f 000a - 548 005f 0020 - 3 005f 0025 - 1 005f 0026 - 41 005f 0029 - 16 005f 002c - 37 005f 002e - 172 005f 0030 - 83 005f 0031 - 135 005f 0032 - 14 005f 0033 - 6 005f 0034 - 4 005f 0035 - 3 005f 0036 - 5 005f 0037 - 10 005f 0038 - 1 005f 003b - 25 005f 003d - 2 005f 003f - 46 005f 0041 - 17 005f 0042 - 85 005f 0043 - 240 005f 0044 - 30 005f 0045 - 203 005f 0046 - 11 005f 0047 - 18 005f 0048 - 107 005f 0049 - 37 005f 004c - 317 005f 004d - 62 005f 004e - 28 005f 004f - 56 005f 0050 - 38 005f 0051 - 4 005f 0052 - 89 005f 0053 - 270 005f 0054 - 13 005f 0055 - 6 005f 0057 - 12 005f 0058 - 3 005f 0059 - 18288 005f 005f - 68 005f 0061 - 7 005f 0062 - 33 005f 0063 - 82 005f 0064 - 61 005f 0065 - 22 005f 0066 - 2 005f 0067 - 17 005f 0068 - 68 005f 0069 - 1 005f 006a - 2 005f 006b - 26 005f 006c - 15 005f 006d - 17 005f 006e - 23 005f 006f - 48 005f 0070 - 20 005f 0071 - 25 005f 0072 - 142 005f 0073 - 24 005f 0074 - 2 005f 0075 - 10 005f 0076 - 4 005f 0077 - 16 005f 0078 - 11 005f 0079 - 1 005f 007a - 2 005f 201d - 2 0060 0020 - 1 0060 0029 - 1 0060 002c - 2 0060 0041 - 3 0060 0061 - 5 0060 0069 - 415 0061 0009 - 617 0061 000a - 141 0061 000d - 109656 0061 0020 - 88 0061 0021 - 19 0061 0022 - 2 0061 0025 - 155 0061 0027 - 18 0061 0028 - 977 0061 0029 - 3 0061 002a - 10 0061 002b - 7694 0061 002c - 613 0061 002d - 4177 0061 002e - 98 0061 002f - 6 0061 0030 - 24 0061 0031 - 50 0061 0032 - 7 0061 0033 - 3 0061 0034 - 1 0061 0035 - 1 0061 0036 - 7 0061 0037 - 2 0061 0038 - 3 0061 0039 - 331 0061 003a - 367 0061 003b - 1 0061 003c - 59 0061 003d - 7 0061 003e - 192 0061 003f - 11 0061 0040 - 6 0061 0041 - 15 0061 0042 - 15 0061 0043 - 2 0061 0045 - 2 0061 0046 - 2 0061 0049 - 1 0061 004b - 6 0061 004c - 8 0061 004d - 21 0061 004e - 2 0061 004f - 5 0061 0050 - 20 0061 0052 - 12 0061 0053 - 2 0061 0054 - 35 0061 0056 - 2 0061 0059 - 2 0061 005a - 9 0061 005c - 26 0061 005d - 11 0061 005f - 3 0061 0060 - 528 0061 0061 - 39641 0061 0062 - 72798 0061 0063 - 58733 0061 0064 - 1888 0061 0065 - 9376 0061 0066 - 36822 0061 0067 - 4314 0061 0068 - 50095 0061 0069 - 3122 0061 006a - 19604 0061 006b - 175698 0061 006c - 44852 0061 006d - 324946 0061 006e - 1241 0061 006f - 33404 0061 0070 - 1148 0061 0071 - 173689 0061 0072 - 134871 0061 0073 - 239563 0061 0074 - 17346 0061 0075 - 34308 0061 0076 - 10466 0061 0077 - 5703 0061 0078 - 40508 0061 0079 - 2091 0061 007a - 5 0061 007d - 2 0061 0092 - 1 0061 0094 - 1 0061 0097 - 1 0061 00ae - 7 0061 00e2 - 18 0061 00e7 - 10 0061 00e9 - 1 0061 00eb - 36 0061 00ed - 36 0061 00ee - 18 0061 00ef - 106 0061 00f1 - 1 0061 00f3 - 18 0061 00fa - 2 0061 03bb - 1 0061 03c6 - 21 0061 2013 - 77 0061 2014 - 770 0061 2019 - 1 0061 201c - 119 0061 201d - 4 0061 2026 - 2 0061 2212 - 1 0061 2217 - 2 0061 fb00 - 11 0061 fb01 - 1 0061 fb02 - 11 0062 0009 - 45 0062 000a - 2 0062 000d - 3806 0062 0020 - 11 0062 0021 - 3 0062 0022 - 1 0062 0025 - 18 0062 0027 - 28 0062 0028 - 482 0062 0029 - 1 0062 002a - 1 0062 002b - 560 0062 002c - 255 0062 002d - 961 0062 002e - 63 0062 002f - 5 0062 0030 - 27 0062 0031 - 52 0062 0032 - 10 0062 0033 - 4 0062 0034 - 2 0062 0035 - 2 0062 0036 - 4 0062 0037 - 7 0062 0038 - 3 0062 0039 - 48 0062 003a - 63 0062 003b - 11 0062 003d - 47 0062 003f - 1 0062 0040 - 1 0062 0041 - 1 0062 0042 - 51 0062 0043 - 2 0062 0047 - 2 0062 0048 - 1 0062 004c - 1 0062 004d - 1 0062 0050 - 16 0062 0053 - 1 0062 005b - 5 0062 005d - 1 0062 005e - 5 0062 005f - 26950 0062 0061 - 2286 0062 0062 - 465 0062 0063 - 338 0062 0064 - 86010 0062 0065 - 25 0062 0066 - 45 0062 0067 - 106 0062 0068 - 17289 0062 0069 - 2138 0062 006a - 31 0062 006b - 36783 0062 006c - 268 0062 006d - 174 0062 006e - 30519 0062 006f - 97 0062 0070 - 37 0062 0071 - 13263 0062 0072 - 6743 0062 0073 - 3743 0062 0074 - 28491 0062 0075 - 629 0062 0076 - 62 0062 0077 - 45 0062 0078 - 20335 0062 0079 - 1 0062 007a - 1 0062 00af - 13 0062 00e1 - 1 0062 00e4 - 28 0062 00e9 - 10 0062 00ed - 23 0062 00f3 - 2 0062 00fa - 1 0062 00fc - 3 0062 03b1 - 2 0062 03c6 - 14 0062 2013 - 11 0062 2014 - 73 0062 2019 - 11 0062 201d - 1 0062 221a - 1 0062 fb01 - 122 0063 0009 - 101 0063 000a - 40 0063 000d - 17664 0063 0020 - 11 0063 0021 - 9 0063 0022 - 1 0063 0025 - 23 0063 0027 - 93 0063 0028 - 269 0063 0029 - 1126 0063 002c - 226 0063 002d - 2565 0063 002e - 122 0063 002f - 37 0063 0030 - 16 0063 0031 - 35 0063 0032 - 10 0063 0033 - 2 0063 0034 - 2 0063 0035 - 2 0063 0036 - 1 0063 0037 - 4 0063 0038 - 1 0063 0039 - 77 0063 003a - 30 0063 003b - 4 0063 003c - 1 0063 003d - 4 0063 003e - 49 0063 003f - 4 0063 0040 - 29 0063 0041 - 7 0063 0042 - 283 0063 0043 - 378 0063 0044 - 16 0063 0045 - 10 0063 0046 - 94 0063 0047 - 2 0063 0048 - 9 0063 0049 - 2 0063 004a - 61 0063 004b - 125 0063 004c - 45 0063 004d - 37 0063 004e - 8 0063 004f - 20 0063 0050 - 7 0063 0051 - 2 0063 0052 - 9 0063 0053 - 1 0063 0054 - 4 0063 0056 - 11 0063 005d - 59 0063 005f - 86042 0063 0061 - 6 0063 0062 - 12027 0063 0063 - 78 0063 0064 - 100498 0063 0065 - 109 0063 0066 - 24 0063 0067 - 85456 0063 0068 - 45347 0063 0069 - 1 0063 006a - 25758 0063 006b - 23529 0063 006c - 305 0063 006d - 84 0063 006e - 117717 0063 006f - 155 0063 0070 - 862 0063 0071 - 24902 0063 0072 - 4167 0063 0073 - 68539 0063 0074 - 24468 0063 0075 - 4 0063 0076 - 10 0063 0077 - 7810 0063 0079 - 68 0063 007a - 1 0063 007d - 7 0063 0094 - 1 0063 00b7 - 101 0063 00e1 - 15 0063 00e8 - 103 0063 00e9 - 47 0063 00ed - 10 0063 00f3 - 1 0063 00f4 - 4 0063 00fa - 11 0063 03b1 - 2 0063 03b2 - 1 0063 03b4 - 1 0063 03c1 - 3 0063 03c3 - 10 0063 2013 - 31 0063 2014 - 74 0063 2019 - 51 0063 201d - 1 0063 2026 - 1 0063 2208 - 1990 0064 0009 - 1001 0064 000a - 508 0064 000d - 364651 0064 0020 - 339 0064 0021 - 84 0064 0022 - 2 0064 0025 - 1 0064 0026 - 406 0064 0027 - 27 0064 0028 - 879 0064 0029 - 1 0064 002b - 20869 0064 002c - 1938 0064 002d - 20503 0064 002e - 456 0064 002f - 3 0064 0030 - 27 0064 0031 - 21 0064 0032 - 21 0064 0033 - 9 0064 0034 - 6 0064 0035 - 2 0064 0036 - 1 0064 0037 - 1 0064 0039 - 1672 0064 003a - 801 0064 003b - 32 0064 003d - 23 0064 003e - 1142 0064 003f - 1 0064 0040 - 6 0064 0041 - 11 0064 0043 - 5 0064 0044 - 17 0064 0045 - 2 0064 0046 - 1 0064 0047 - 5 0064 0048 - 1 0064 0049 - 1 0064 004a - 8 0064 004b - 2 0064 004c - 2 0064 004d - 3 0064 004e - 1 0064 004f - 10 0064 0050 - 7 0064 0051 - 5 0064 0052 - 76 0064 0053 - 13 0064 0054 - 2 0064 0055 - 8 0064 0056 - 6 0064 0057 - 7 0064 005c - 32 0064 005d - 258 0064 005f - 26728 0064 0061 - 991 0064 0062 - 434 0064 0063 - 8519 0064 0064 - 120855 0064 0065 - 473 0064 0066 - 6682 0064 0067 - 777 0064 0068 - 73429 0064 0069 - 615 0064 006a - 89 0064 006b - 5275 0064 006c - 1847 0064 006d - 3987 0064 006e - 36364 0064 006f - 179 0064 0070 - 89 0064 0071 - 12962 0064 0072 - 22827 0064 0073 - 443 0064 0074 - 23567 0064 0075 - 2913 0064 0076 - 1139 0064 0077 - 178 0064 0078 - 8139 0064 0079 - 12 0064 007a - 18 0064 007d - 7 0064 0092 - 6 0064 0094 - 3 0064 0097 - 1 0064 00ae - 2 0064 00b4 - 23 0064 00e1 - 16 0064 00e8 - 316 0064 00e9 - 36 0064 00ed - 16 0064 00f3 - 1 0064 00f4 - 1 0064 00fb - 1 0064 03b8 - 3 0064 03c1 - 29 0064 03c9 - 38 0064 2013 - 416 0064 2014 - 2019 0064 2019 - 423 0064 201d - 42 0064 2026 - 1 0064 2208 - 1 0064 2212 - 1 0064 221a - 3 0064 fb01 - 4066 0065 0009 - 3268 0065 000a - 992 0065 000d - 746110 0065 0020 - 754 0065 0021 - 203 0065 0022 - 1 0065 0023 - 4 0065 0025 - 5 0065 0026 - 966 0065 0027 - 64 0065 0028 - 1686 0065 0029 - 4 0065 002a - 2 0065 002b - 39014 0065 002c - 5291 0065 002d - 35121 0065 002e - 568 0065 002f - 6 0065 0030 - 88 0065 0031 - 39 0065 0032 - 33 0065 0033 - 8 0065 0034 - 9 0065 0035 - 7 0065 0036 - 11 0065 0037 - 5 0065 0038 - 2 0065 0039 - 4006 0065 003a - 1379 0065 003b - 2 0065 003c - 122 0065 003d - 107 0065 003e - 2900 0065 003f - 8 0065 0040 - 7 0065 0041 - 27 0065 0042 - 34 0065 0043 - 14 0065 0044 - 5 0065 0045 - 14 0065 0046 - 13 0065 0047 - 8 0065 0048 - 7 0065 0049 - 12 0065 004a - 5 0065 004b - 14 0065 004c - 13 0065 004d - 4 0065 004e - 9 0065 004f - 21 0065 0050 - 1 0065 0051 - 16 0065 0052 - 233 0065 0053 - 12 0065 0054 - 2 0065 0055 - 51 0065 0056 - 15 0065 0057 - 5 0065 0058 - 1 0065 0059 - 2 0065 005b - 1 0065 005c - 99 0065 005d - 120 0065 005f - 114293 0065 0061 - 6957 0065 0062 - 78329 0065 0063 - 187583 0065 0064 - 65576 0065 0065 - 24913 0065 0066 - 17653 0065 0067 - 4889 0065 0068 - 26228 0065 0069 - 539 0065 006a - 3391 0065 006b - 89392 0065 006c - 58432 0065 006d - 226393 0065 006e - 13253 0065 006f - 26443 0065 0070 - 7968 0065 0071 - 334520 0065 0072 - 226617 0065 0073 - 79013 0065 0074 - 3882 0065 0075 - 43229 0065 0076 - 20867 0065 0077 - 36941 0065 0078 - 27762 0065 0079 - 1244 0065 007a - 1 0065 007b - 1 0065 007c - 28 0065 007d - 10 0065 0092 - 5 0065 0094 - 3 0065 0097 - 1 0065 00af - 1 0065 00b5 - 2 0065 00b7 - 4 0065 00e1 - 1 0065 00e7 - 3 0065 00e9 - 10 0065 00ed - 3 0065 00ef - 178 0065 00f1 - 20 0065 00f3 - 2 0065 00fa - 12 0065 00fc - 1 0065 03b2 - 155 0065 2013 - 869 0065 2014 - 5127 0065 2019 - 916 0065 201d - 1 0065 2022 - 53 0065 2026 - 1 0065 2122 - 44 0065 2212 - 23 0065 fb00 - 268 0065 fb01 - 83 0065 fb02 - 8 0065 fb03 - 990 0066 0009 - 221 0066 000a - 243 0066 000d - 150682 0066 0020 - 52 0066 0021 - 13 0066 0022 - 1 0066 0025 - 2 0066 0026 - 27 0066 0027 - 17 0066 0028 - 113 0066 0029 - 1 0066 002a - 2 0066 002b - 1812 0066 002c - 1547 0066 002d - 1701 0066 002e - 67 0066 002f - 1 0066 0030 - 8 0066 0031 - 5 0066 0032 - 1 0066 0033 - 1 0066 0034 - 1 0066 0036 - 166 0066 003a - 66 0066 003b - 2 0066 003d - 5 0066 003e - 100 0066 003f - 2 0066 0040 - 1 0066 0041 - 2 0066 0042 - 3 0066 0045 - 1 0066 0046 - 8 0066 0048 - 1 0066 004e - 1 0066 004f - 3 0066 0050 - 1 0066 0052 - 3 0066 0053 - 1 0066 0054 - 2 0066 005b - 8 0066 005d - 26 0066 005f - 21502 0066 0061 - 8 0066 0062 - 73 0066 0063 - 36 0066 0064 - 35248 0066 0065 - 21701 0066 0066 - 264 0066 0067 - 16 0066 0068 - 40904 0066 0069 - 5 0066 006a - 16 0066 006b - 7499 0066 006c - 73 0066 006d - 45 0066 006e - 77939 0066 006f - 35 0066 0070 - 4 0066 0071 - 27373 0066 0072 - 980 0066 0073 - 13812 0066 0074 - 17980 0066 0075 - 75 0066 0077 - 1 0066 0078 - 1771 0066 0079 - 2 0066 007c - 1 0066 00e1 - 4 0066 00e8 - 78 0066 00e9 - 22 0066 00ed - 1 0066 00f3 - 1 0066 00f4 - 4 0066 00f6 - 11 0066 00fc - 2 0066 03b1 - 6 0066 03b2 - 2 0066 2013 - 42 0066 2014 - 41 0066 2019 - 29 0066 201d - 7 0066 2026 - 662 0066 fb01 - 36 0066 fb02 - 611 0067 0009 - 948 0067 000a - 96 0067 000d - 123355 0067 0020 - 190 0067 0021 - 42 0067 0022 - 147 0067 0027 - 88 0067 0028 - 342 0067 0029 - 2 0067 002a - 1 0067 002b - 7672 0067 002c - 1007 0067 002d - 7411 0067 002e - 619 0067 002f - 9 0067 0030 - 14 0067 0031 - 37 0067 0032 - 17 0067 0033 - 14 0067 0034 - 2 0067 0035 - 1 0067 0037 - 2 0067 0038 - 1 0067 0039 - 842 0067 003a - 234 0067 003b - 4 0067 003d - 20 0067 003e - 652 0067 003f - 2 0067 0040 - 2 0067 0042 - 17 0067 0043 - 4 0067 0044 - 1 0067 0045 - 2 0067 0046 - 1 0067 0047 - 3 0067 0048 - 2 0067 0049 - 1 0067 004b - 7 0067 004d - 7 0067 004e - 62 0067 004f - 10 0067 0050 - 2 0067 0053 - 4 0067 0054 - 16 0067 0056 - 1 0067 0057 - 13 0067 0058 - 1 0067 005b - 36 0067 005d - 12 0067 005f - 25142 0067 0061 - 77 0067 0062 - 23 0067 0063 - 886 0067 0064 - 65946 0067 0065 - 150 0067 0066 - 4496 0067 0067 - 38690 0067 0068 - 24988 0067 0069 - 2 0067 006a - 13 0067 006b - 7939 0067 006c - 1016 0067 006d - 8381 0067 006e - 20929 0067 006f - 17 0067 0070 - 1 0067 0071 - 27473 0067 0072 - 8704 0067 0073 - 1918 0067 0074 - 13105 0067 0075 - 7 0067 0076 - 83 0067 0077 - 10 0067 0078 - 5836 0067 0079 - 16 0067 007a - 2 0067 007b - 4 0067 007d - 1 0067 0094 - 3 0067 0097 - 1 0067 00ae - 1 0067 00b7 - 38 0067 00e1 - 12 0067 00e8 - 90 0067 00e9 - 26 0067 00ed - 9 0067 00f3 - 1 0067 00fa - 20 0067 00fc - 2 0067 03b1 - 79 0067 2013 - 156 0067 2014 - 319 0067 2019 - 212 0067 201d - 12 0067 2026 - 5 0067 2217 - 1 0067 221a - 1 0067 fb01 - 474 0068 0009 - 495 0068 000a - 164 0068 000d - 1 0068 0014 - 93354 0068 0020 - 168 0068 0021 - 39 0068 0022 - 2 0068 0025 - 107 0068 0027 - 11 0068 0028 - 271 0068 0029 - 6013 0068 002c - 1112 0068 002d - 4618 0068 002e - 186 0068 002f - 14 0068 0030 - 8 0068 0031 - 5 0068 0032 - 9 0068 0033 - 1 0068 0034 - 1 0068 0035 - 1 0068 0036 - 1 0068 0037 - 472 0068 003a - 137 0068 003b - 2 0068 003d - 10 0068 003e - 404 0068 003f - 2 0068 0040 - 44 0068 0041 - 3 0068 0042 - 27 0068 0043 - 79 0068 0044 - 1 0068 0045 - 1 0068 0047 - 3 0068 0048 - 1 0068 004c - 5 0068 004d - 1 0068 0050 - 1 0068 0052 - 3 0068 0053 - 1 0068 0054 - 3 0068 0055 - 6 0068 0057 - 1 0068 005b - 18 0068 005d - 499 0068 005f - 156226 0068 0061 - 718 0068 0062 - 239 0068 0063 - 383 0068 0064 - 452488 0068 0065 - 282 0068 0066 - 24 0068 0067 - 228 0068 0068 - 110967 0068 0069 - 7 0068 006a - 53 0068 006b - 2471 0068 006c - 1670 0068 006d - 7096 0068 006e - 71357 0068 006f - 130 0068 0070 - 29 0068 0071 - 13589 0068 0072 - 2435 0068 0073 - 23024 0068 0074 - 10233 0068 0075 - 48 0068 0076 - 443 0068 0077 - 1 0068 0078 - 8035 0068 0079 - 10 0068 007a - 3 0068 007d - 3 0068 0092 - 2 0068 0094 - 10 0068 00e1 - 1 0068 00e2 - 1 0068 00e3 - 11 0068 00e4 - 10 0068 00e8 - 114 0068 00e9 - 11 0068 00ed - 7 0068 00f3 - 4 0068 00f6 - 5 0068 00fa - 3 0068 03b1 - 3 0068 03bd - 6 0068 2013 - 126 0068 2014 - 439 0068 2019 - 152 0068 201d - 7 0068 2026 - 10 0068 fb01 - 9 0069 0009 - 447 0069 000a - 8 0069 000d - 6071 0069 0020 - 14 0069 0021 - 4 0069 0022 - 66 0069 0027 - 23 0069 0028 - 312 0069 0029 - 2 0069 002b - 2100 0069 002c - 739 0069 002d - 1473 0069 002e - 33 0069 002f - 2 0069 0030 - 9 0069 0031 - 24 0069 0032 - 9 0069 0033 - 5 0069 0034 - 3 0069 0035 - 1 0069 0037 - 3 0069 0038 - 1 0069 0039 - 48 0069 003a - 110 0069 003b - 8 0069 003d - 1 0069 003e - 31 0069 003f - 1 0069 0040 - 5 0069 0041 - 2 0069 0042 - 19 0069 0043 - 3 0069 0044 - 2 0069 0046 - 6 0069 0047 - 4 0069 0048 - 2 0069 0049 - 3 0069 004b - 1 0069 004c - 4 0069 004d - 7 0069 004e - 48 0069 004f - 17 0069 0050 - 67 0069 0052 - 22 0069 0053 - 4 0069 0054 - 3 0069 0055 - 4 0069 0056 - 29 0069 005d - 5 0069 005f - 5 0069 0060 - 42161 0069 0061 - 15950 0069 0062 - 104577 0069 0063 - 49896 0069 0064 - 67136 0069 0065 - 32943 0069 0066 - 42000 0069 0067 - 786 0069 0068 - 1117 0069 0069 - 657 0069 006a - 10160 0069 006b - 73311 0069 006c - 51477 0069 006d - 391867 0069 006e - 124392 0069 006f - 16020 0069 0070 - 2520 0069 0071 - 47998 0069 0072 - 166944 0069 0073 - 167070 0069 0074 - 2461 0069 0075 - 46721 0069 0076 - 264 0069 0077 - 2879 0069 0078 - 271 0069 0079 - 14254 0069 007a - 2 0069 007c - 1 0069 007d - 1 0069 00d8 - 1 0069 00df - 24 0069 00e1 - 104 0069 00e8 - 94 0069 00e9 - 45 0069 00f1 - 696 0069 00f3 - 1 0069 00f6 - 2 0069 03b3 - 30 0069 03c9 - 2 0069 03d5 - 40 0069 2013 - 18 0069 2014 - 7 0069 2018 - 510 0069 2019 - 15 0069 201d - 1 0069 2192 - 2 0069 2208 - 2 0069 2212 - 70 0069 fb00 - 768 0069 fb01 - 14 0069 fb02 - 1 0069 fb03 - 18 006a 000a - 407 006a 0020 - 3 006a 0028 - 22 006a 0029 - 55 006a 002c - 1 006a 002d - 65 006a 002e - 2 006a 002f - 4 006a 0032 - 6 006a 003a - 3 006a 003d - 1 006a 003f - 2 006a 0040 - 3 006a 0041 - 1 006a 0042 - 1 006a 0052 - 6 006a 005d - 1942 006a 0061 - 4 006a 0062 - 12 006a 0063 - 5 006a 0064 - 5164 006a 0065 - 1 006a 0066 - 1 006a 0067 - 4 006a 0068 - 990 006a 0069 - 17 006a 006a - 15 006a 006b - 4 006a 006c - 10 006a 006d - 21 006a 006e - 5561 006a 006f - 17 006a 0070 - 6 006a 0072 - 234 006a 0073 - 4 006a 0074 - 6994 006a 0075 - 2 006a 0077 - 1 006a 0079 - 1 006a 007a - 8 006a 00e0 - 13 006a 00e1 - 5 006a 00e9 - 12 006a 00ed - 1 006a 00f1 - 10 006a 00f3 - 15 006a 00f6 - 15 006a 2019 - 2 006a 2208 - 1 006a 2260 - 119 006b 0009 - 870 006b 000a - 10 006b 000d - 33649 006b 0020 - 105 006b 0021 - 14 006b 0022 - 1 006b 0025 - 102 006b 0027 - 7 006b 0028 - 236 006b 0029 - 3 006b 002b - 3998 006b 002c - 443 006b 002d - 3865 006b 002e - 116 006b 002f - 2 006b 0030 - 11 006b 0031 - 8 006b 0032 - 2 006b 0033 - 3 006b 0034 - 1 006b 0035 - 3 006b 0038 - 1 006b 0039 - 1021 006b 003a - 132 006b 003b - 3 006b 003d - 2 006b 003e - 317 006b 003f - 10 006b 0040 - 19 006b 0042 - 1 006b 0046 - 1 006b 0048 - 1 006b 0049 - 15 006b 004a - 8 006b 004c - 5 006b 004d - 7 006b 0050 - 280 006b 0052 - 15 006b 0053 - 53 006b 0054 - 2 006b 0056 - 1 006b 005b - 3 006b 005d - 4 006b 005f - 2377 006b 0061 - 374 006b 0062 - 72 006b 0063 - 153 006b 0064 - 43905 006b 0065 - 341 006b 0066 - 412 006b 0067 - 491 006b 0068 - 19835 006b 0069 - 20 006b 006a - 141 006b 006b - 2100 006b 006c - 267 006b 006d - 10869 006b 006e - 1127 006b 006f - 130 006b 0070 - 3 006b 0071 - 2138 006b 0072 - 9521 006b 0073 - 718 006b 0074 - 661 006b 0075 - 17 006b 0076 - 510 006b 0077 - 1 006b 0078 - 1180 006b 0079 - 3 006b 007a - 2 006b 007d - 1 006b 0094 - 2 006b 00b7 - 1 006b 00e9 - 2 006b 00f6 - 32 006b 2013 - 111 006b 2014 - 303 006b 2019 - 113 006b 201d - 8 006b 2026 - 7 006b 2212 - 2 006b 2264 - 5 006b fb01 - 1 006b fb02 - 1187 006c 0009 - 596 006c 000a - 221 006c 000d - 124464 006c 0020 - 152 006c 0021 - 59 006c 0022 - 10 006c 0023 - 7 006c 0025 - 304 006c 0027 - 3 006c 0028 - 432 006c 0029 - 2 006c 002a - 72 006c 002b - 8837 006c 002c - 1703 006c 002d - 7671 006c 002e - 250 006c 002f - 2 006c 0030 - 17 006c 0031 - 32 006c 0032 - 16 006c 0033 - 38 006c 0034 - 6 006c 0035 - 12 006c 0036 - 6 006c 0037 - 3 006c 0038 - 3 006c 0039 - 804 006c 003a - 323 006c 003b - 1 006c 003c - 11 006c 003d - 32 006c 003e - 436 006c 003f - 3 006c 0040 - 4 006c 0041 - 2 006c 0042 - 9 006c 0043 - 8 006c 0046 - 2 006c 0047 - 1 006c 0048 - 1 006c 0049 - 80 006c 004b - 3 006c 004c - 6 006c 004d - 3 006c 004e - 4 006c 004f - 6 006c 0050 - 2 006c 0051 - 11 006c 0053 - 3 006c 0054 - 7 006c 0056 - 8 006c 0058 - 5 006c 005b - 5 006c 005c - 27 006c 005d - 44 006c 005f - 76412 006c 0061 - 1047 006c 0062 - 2099 006c 0063 - 44686 006c 0064 - 140925 006c 0065 - 8255 006c 0066 - 673 006c 0067 - 216 006c 0068 - 104040 006c 0069 - 20 006c 006a - 4333 006c 006b - 102325 006c 006c - 4205 006c 006d - 948 006c 006e - 67280 006c 006f - 4044 006c 0070 - 20 006c 0071 - 1412 006c 0072 - 21651 006c 0073 - 20989 006c 0074 - 22715 006c 0075 - 5215 006c 0076 - 2312 006c 0077 - 3 006c 0078 - 67480 006c 0079 - 92 006c 007a - 6 006c 007d - 1 006c 0092 - 2 006c 0094 - 2 006c 0097 - 1 006c 00b7 - 2 006c 00c9 - 4 006c 00e0 - 39 006c 00e1 - 1 006c 00e2 - 4 006c 00e4 - 30 006c 00e8 - 113 006c 00e9 - 40 006c 00ed - 31 006c 00f3 - 2 006c 00f4 - 4 006c 00fa - 4 006c 00fc - 117 006c 2013 - 187 006c 2014 - 1249 006c 2019 - 265 006c 201d - 11 006c 2026 - 1 006c 2122 - 1 006c 2212 - 22 006c fb01 - 371 006d 0009 - 1064 006d 000a - 44 006d 000d - 54655 006d 0020 - 106 006d 0021 - 25 006d 0022 - 9 006d 0023 - 72 006d 0027 - 16 006d 0028 - 454 006d 0029 - 1 006d 002b - 5551 006d 002c - 443 006d 002d - 7532 006d 002e - 450 006d 002f - 5 006d 0030 - 28 006d 0031 - 43 006d 0032 - 10 006d 0033 - 4 006d 0034 - 3 006d 0035 - 2 006d 0036 - 1 006d 0037 - 1 006d 0038 - 361 006d 003a - 242 006d 003b - 1 006d 003c - 8 006d 003d - 14 006d 003e - 516 006d 003f - 1 006d 0040 - 1 006d 0041 - 2 006d 0042 - 8 006d 0043 - 5 006d 0044 - 1 006d 0045 - 3 006d 0046 - 18 006d 0048 - 1 006d 0049 - 1 006d 004b - 14 006d 004c - 2 006d 004d - 21 006d 004e - 2 006d 004f - 8 006d 0050 - 5 006d 0052 - 7 006d 0053 - 4 006d 0054 - 1 006d 0056 - 6 006d 0057 - 1 006d 0058 - 3 006d 005b - 6 006d 005c - 28 006d 005d - 1 006d 005e - 16 006d 005f - 84663 006d 0061 - 14739 006d 0062 - 160 006d 0063 - 102 006d 0064 - 130181 006d 0065 - 590 006d 0066 - 87 006d 0067 - 50 006d 0068 - 47203 006d 0069 - 37 006d 006b - 863 006d 006c - 14109 006d 006d - 1570 006d 006e - 48552 006d 006f - 42329 006d 0070 - 11 006d 0071 - 92 006d 0072 - 14739 006d 0073 - 116 006d 0074 - 16755 006d 0075 - 18 006d 0076 - 59 006d 0077 - 15 006d 0078 - 12499 006d 0079 - 10 006d 007a - 13 006d 007d - 1 006d 0092 - 1 006d 00a8 - 72 006d 00e1 - 1 006d 00e4 - 8 006d 00e8 - 107 006d 00e9 - 38 006d 00ea - 16 006d 00ed - 8 006d 00f3 - 16 006d 00fa - 22 006d 03b1 - 12 006d 03b2 - 1 006d 03b3 - 1 006d 03ba - 8 006d 03c9 - 34 006d 2013 - 189 006d 2014 - 388 006d 2019 - 114 006d 201d - 14 006d 2026 - 1 006d e01f - 1 006d fb01 - 1633 006e 0009 - 2193 006e 000a - 425 006e 000d - 318642 006e 0020 - 482 006e 0021 - 114 006e 0022 - 4 006e 0025 - 1 006e 0026 - 3221 006e 0027 - 115 006e 0028 - 912 006e 0029 - 8 006e 002b - 24259 006e 002c - 2868 006e 002d - 17889 006e 002e - 421 006e 002f - 5 006e 0030 - 166 006e 0031 - 117 006e 0032 - 58 006e 0033 - 9 006e 0034 - 14 006e 0035 - 24 006e 0036 - 20 006e 0037 - 11 006e 0038 - 11 006e 0039 - 2412 006e 003a - 754 006e 003b - 39 006e 003d - 50 006e 003e - 1303 006e 003f - 15 006e 0040 - 8 006e 0041 - 4 006e 0042 - 11 006e 0043 - 3 006e 0044 - 11 006e 0045 - 1 006e 0046 - 1 006e 0047 - 3 006e 0048 - 1 006e 0049 - 1 006e 004a - 6 006e 004b - 3 006e 004c - 11 006e 004d - 7 006e 004e - 29 006e 004f - 30 006e 0050 - 4 006e 0051 - 17 006e 0052 - 52 006e 0053 - 15 006e 0054 - 1 006e 0055 - 3 006e 0056 - 1 006e 0057 - 3 006e 0058 - 7 006e 005a - 7 006e 005b - 7 006e 005c - 93 006e 005d - 1 006e 005e - 233 006e 005f - 58296 006e 0061 - 786 006e 0062 - 66691 006e 0063 - 216814 006e 0064 - 112327 006e 0065 - 10797 006e 0066 - 172011 006e 0067 - 1545 006e 0068 - 56525 006e 0069 - 1323 006e 006a - 13115 006e 006b - 10608 006e 006c - 5394 006e 006d - 18186 006e 006e - 69231 006e 006f - 941 006e 0070 - 584 006e 0071 - 1394 006e 0072 - 81088 006e 0073 - 169322 006e 0074 - 12660 006e 0075 - 10560 006e 0076 - 796 006e 0077 - 144 006e 0078 - 18064 006e 0079 - 598 006e 007a - 18 006e 007b - 42 006e 007d - 31 006e 0092 - 7 006e 0094 - 5 006e 0097 - 1 006e 00a0 - 1 006e 00ae - 1 006e 00af - 37 006e 00b0 - 1 006e 00b5 - 1 006e 00d7 - 27 006e 00e1 - 3 006e 00e4 - 46 006e 00e7 - 4 006e 00e8 - 223 006e 00e9 - 1 006e 00ea - 16 006e 00ed - 10 006e 00f3 - 15 006e 00fa - 31 006e 03bb - 167 006e 2013 - 461 006e 2014 - 10528 006e 2019 - 470 006e 201d - 1 006e 2020 - 1 006e 2022 - 28 006e 2026 - 2 006e 2192 - 5 006e 2206 - 1 006e 2208 - 6 006e 2212 - 1 006e 223c - 1 006e 2248 - 238 006e fb01 - 193 006e fb02 - 1288 006f 0009 - 430 006f 000a - 315 006f 000d - 170741 006f 0020 - 129 006f 0021 - 15 006f 0022 - 115 006f 0027 - 7 006f 0028 - 148 006f 0029 - 8539 006f 002c - 2044 006f 002d - 4479 006f 002e - 113 006f 002f - 3 006f 0030 - 8 006f 0031 - 8 006f 0032 - 3 006f 0033 - 2 006f 0036 - 1 006f 0037 - 4 006f 0038 - 306 006f 003a - 210 006f 003b - 4 006f 003d - 2 006f 003e - 418 006f 003f - 18 006f 0040 - 15 006f 0041 - 4 006f 0042 - 24 006f 0043 - 11 006f 0044 - 3 006f 0045 - 72 006f 0046 - 4 006f 0047 - 9 006f 0048 - 8 006f 0049 - 20 006f 004c - 28 006f 004d - 131 006f 004e - 11 006f 004f - 34 006f 0050 - 424 006f 0052 - 56 006f 0053 - 1 006f 0054 - 222 006f 0055 - 15 006f 0057 - 1 006f 0058 - 1 006f 005c - 8 006f 005d - 6 006f 005f - 9069 006f 0061 - 15867 006f 0062 - 28529 006f 0063 - 34038 006f 0064 - 5599 006f 0065 - 146437 006f 0066 - 17483 006f 0067 - 4227 006f 0068 - 14095 006f 0069 - 2019 006f 006a - 14464 006f 006b - 58705 006f 006c - 96635 006f 006d - 273371 006f 006e - 41713 006f 006f - 42743 006f 0070 - 147 006f 0071 - 216482 006f 0072 - 46673 006f 0073 - 65766 006f 0074 - 163501 006f 0075 - 31539 006f 0076 - 63690 006f 0077 - 3156 006f 0078 - 7047 006f 0079 - 609 006f 007a - 1 006f 007d - 1 006f 00e3 - 7 006f 00e9 - 3 006f 00eb - 22 006f 00ed - 6 006f 00ee - 13 006f 00f1 - 3 006f 00f6 - 16 006f 00f9 - 8 006f 00fb - 7 006f 2013 - 92 006f 2014 - 429 006f 2019 - 84 006f 201d - 13 006f 2026 - 5 006f fb00 - 144 006f fb01 - 125 0070 0009 - 204 0070 000a - 14 0070 000d - 24079 0070 0020 - 73 0070 0021 - 13 0070 0022 - 1 0070 0023 - 2 0070 0026 - 35 0070 0027 - 82 0070 0028 - 129 0070 0029 - 1969 0070 002c - 445 0070 002d - 4307 0070 002e - 68 0070 002f - 3 0070 0030 - 104 0070 0031 - 41 0070 0032 - 21 0070 0033 - 24 0070 0034 - 10 0070 0035 - 203 0070 0036 - 10 0070 0037 - 9 0070 0038 - 11 0070 0039 - 1303 0070 003a - 87 0070 003b - 12 0070 003d - 7 0070 003e - 193 0070 003f - 5 0070 0040 - 1 0070 0041 - 2 0070 0043 - 1 0070 0044 - 2 0070 0045 - 29 0070 0048 - 1 0070 004e - 2 0070 0053 - 1 0070 0055 - 1 0070 005b - 10 0070 005c - 4 0070 005d - 13 0070 005f - 47214 0070 0061 - 235 0070 0062 - 133 0070 0063 - 603 0070 0064 - 77970 0070 0065 - 302 0070 0066 - 112 0070 0067 - 10983 0070 0068 - 19689 0070 0069 - 4 0070 006a - 157 0070 006b - 45756 0070 006c - 3289 0070 006d - 81 0070 006e - 50273 0070 006f - 23095 0070 0070 - 67600 0070 0072 - 8302 0070 0073 - 21451 0070 0074 - 15800 0070 0075 - 3 0070 0076 - 185 0070 0077 - 32 0070 0078 - 3483 0070 0079 - 7 0070 007a - 5 0070 007b - 1 0070 007c - 1 0070 007d - 13 0070 00e1 - 1 0070 00e5 - 3 0070 00e8 - 115 0070 00e9 - 3 0070 00ea - 27 0070 00ed - 24 0070 00f3 - 7 0070 00f4 - 6 0070 00fa - 1 0070 03bb - 4 0070 2013 - 38 0070 2014 - 100 0070 2019 - 87 0070 201d - 8 0070 2026 - 2 0070 2212 - 1 0070 f647 - 2 0070 fb01 - 97 0071 000a - 358 0071 0020 - 1 0071 0021 - 1 0071 0026 - 1 0071 0027 - 32 0071 0029 - 1 0071 002b - 121 0071 002c - 1 0071 002d - 155 0071 002e - 4 0071 002f - 2 0071 0033 - 8 0071 003a - 5 0071 003b - 2 0071 003d - 2 0071 003f - 1 0071 0040 - 2 0071 0041 - 5 0071 004d - 3 0071 005d - 3 0071 005f - 796 0071 0061 - 6 0071 0063 - 70 0071 0064 - 11 0071 0065 - 59 0071 0068 - 321 0071 0069 - 31 0071 006c - 61 0071 006e - 55 0071 006f - 1 0071 0070 - 1 0071 0071 - 5 0071 0072 - 13 0071 0073 - 45 0071 0074 - 22787 0071 0075 - 9 0071 0076 - 3 0071 0079 - 1 0071 007d - 17 0071 03b1 - 4 0071 03b2 - 4 0071 2014 - 34 0071 2019 - 3 0071 201d - 1 0071 2212 - 2580 0072 0009 - 1080 0072 000a - 271 0072 000d - 222500 0072 0020 - 207 0072 0021 - 63 0072 0022 - 2 0072 0023 - 414 0072 0027 - 35 0072 0028 - 598 0072 0029 - 1 0072 002a - 3 0072 002b - 19653 0072 002c - 1939 0072 002d - 14394 0072 002e - 234 0072 002f - 29 0072 0030 - 26 0072 0031 - 39 0072 0032 - 12 0072 0033 - 11 0072 0034 - 3 0072 0035 - 7 0072 0036 - 2 0072 0037 - 2 0072 0038 - 2 0072 0039 - 1223 0072 003a - 437 0072 003b - 4 0072 003c - 26 0072 003d - 40 0072 003e - 984 0072 003f - 27 0072 0040 - 7 0072 0041 - 6 0072 0042 - 27 0072 0043 - 4 0072 0044 - 7 0072 0045 - 5 0072 0046 - 2 0072 0047 - 2 0072 0048 - 4 0072 0049 - 1 0072 004a - 4 0072 004d - 12 0072 004e - 9 0072 004f - 18 0072 0050 - 3 0072 0052 - 1 0072 0053 - 16 0072 0054 - 2 0072 0056 - 3 0072 0057 - 1 0072 0059 - 1 0072 005b - 2 0072 005c - 52 0072 005d - 102 0072 005f - 103104 0072 0061 - 4271 0072 0062 - 21296 0072 0063 - 29600 0072 0064 - 289366 0072 0065 - 4732 0072 0066 - 19174 0072 0067 - 1887 0072 0068 - 112823 0072 0069 - 92 0072 006a - 19690 0072 006b - 14505 0072 006c - 28914 0072 006d - 27079 0072 006e - 122342 0072 006f - 6938 0072 0070 - 810 0072 0071 - 20079 0072 0072 - 69045 0072 0073 - 56082 0072 0074 - 20524 0072 0075 - 11674 0072 0076 - 1925 0072 0077 - 91 0072 0078 - 38065 0072 0079 - 102 0072 007a - 17 0072 007d - 5 0072 0092 - 2 0072 0094 - 3 0072 0097 - 4 0072 00a3 - 3 0072 00a8 - 3 0072 00ae - 129 0072 00e1 - 2 0072 00e2 - 3 0072 00e4 - 4 0072 00e7 - 70 0072 00e8 - 508 0072 00e9 - 16 0072 00ea - 141 0072 00ed - 80 0072 00f3 - 24 0072 00f4 - 6 0072 00f6 - 27 0072 00fa - 1 0072 03bb - 1 0072 03c4 - 73 0072 2013 - 299 0072 2014 - 2 0072 2018 - 2160 0072 2019 - 322 0072 201d - 16 0072 2026 - 1 0072 2192 - 2 0072 2217 - 21 0072 fb01 - 13 0072 fb02 - 2993 0073 0009 - 5859 0073 000a - 483 0073 000d - 454151 0073 0020 - 539 0073 0021 - 213 0073 0022 - 6 0073 0025 - 1 0073 0026 - 429 0073 0027 - 48 0073 0028 - 2883 0073 0029 - 31 0073 002a - 52792 0073 002c - 1216 0073 002d - 46067 0073 002e - 906 0073 002f - 8 0073 0030 - 37 0073 0031 - 33 0073 0032 - 14 0073 0033 - 6 0073 0034 - 4 0073 0035 - 14 0073 0036 - 31 0073 0037 - 3 0073 0038 - 4 0073 0039 - 4787 0073 003a - 1765 0073 003b - 19 0073 003d - 86 0073 003e - 2097 0073 003f - 33 0073 0040 - 22 0073 0041 - 12 0073 0042 - 3 0073 0043 - 3 0073 0044 - 1 0073 0045 - 1 0073 0046 - 3 0073 0047 - 4 0073 0048 - 2 0073 0049 - 4 0073 004c - 3 0073 004d - 3 0073 004e - 8 0073 004f - 1 0073 0050 - 2 0073 0051 - 3 0073 0052 - 3 0073 0053 - 10 0073 0054 - 2 0073 0055 - 4 0073 0057 - 1 0073 005a - 3 0073 005b - 57 0073 005c - 169 0073 005d - 69 0073 005f - 33446 0073 0061 - 1180 0073 0062 - 21740 0073 0063 - 598 0073 0064 - 144282 0073 0065 - 2539 0073 0066 - 348 0073 0067 - 50260 0073 0068 - 83790 0073 0069 - 78 0073 006a - 9626 0073 006b - 8764 0073 006c - 8834 0073 006d - 3249 0073 006e - 57667 0073 006f - 28582 0073 0070 - 1030 0073 0071 - 840 0073 0072 - 65075 0073 0073 - 168631 0073 0074 - 41763 0073 0075 - 68 0073 0076 - 5361 0073 0077 - 5 0073 0078 - 9508 0073 0079 - 63 0073 007a - 36 0073 007d - 6 0073 0092 - 14 0073 0094 - 20 0073 0097 - 2 0073 00ae - 1 0073 00e0 - 15 0073 00e1 - 10 0073 00e4 - 6 0073 00e8 - 128 0073 00e9 - 32 0073 00ed - 19 0073 00f3 - 5 0073 00fa - 1 0073 02dc - 95 0073 2013 - 1379 0073 2014 - 1 0073 2018 - 2336 0073 2019 - 977 0073 201d - 58 0073 2026 - 8 0073 2192 - 1 0073 2217 - 1 0073 221a - 18 0073 fb01 - 2248 0074 0009 - 1771 0074 000a - 406 0074 000d - 338646 0074 0020 - 476 0074 0021 - 108 0074 0022 - 3 0074 0025 - 3 0074 0026 - 1034 0074 0027 - 60 0074 0028 - 902 0074 0029 - 2 0074 002a - 17 0074 002b - 20036 0074 002c - 2671 0074 002d - 20002 0074 002e - 493 0074 002f - 13 0074 0030 - 48 0074 0031 - 50 0074 0032 - 20 0074 0033 - 6 0074 0034 - 2 0074 0035 - 2 0074 0036 - 1 0074 0037 - 4 0074 0038 - 2 0074 0039 - 1866 0074 003a - 783 0074 003b - 50 0074 003d - 64 0074 003e - 2041 0074 003f - 6 0074 0040 - 3 0074 0041 - 2 0074 0042 - 15 0074 0043 - 8 0074 0044 - 1 0074 0045 - 5 0074 0046 - 2 0074 0047 - 3 0074 0048 - 3 0074 0049 - 4 0074 004d - 4 0074 004e - 1 0074 004f - 3 0074 0050 - 3 0074 0052 - 8 0074 0053 - 13 0074 0054 - 14 0074 0056 - 6 0074 0057 - 2 0074 0058 - 3 0074 005b - 7 0074 005c - 44 0074 005d - 106 0074 005f - 92266 0074 0061 - 517 0074 0062 - 8103 0074 0063 - 551 0074 0064 - 196119 0074 0065 - 1172 0074 0066 - 384 0074 0067 - 468579 0074 0068 - 212820 0074 0069 - 15 0074 006a - 78 0074 006b - 14020 0074 006c - 5283 0074 006d - 1988 0074 006e - 173551 0074 006f - 1730 0074 0070 - 10 0074 0071 - 66548 0074 0072 - 52086 0074 0073 - 27715 0074 0074 - 40512 0074 0075 - 94 0074 0076 - 12451 0074 0077 - 13 0074 0078 - 37056 0074 0079 - 699 0074 007a - 3 0074 007c - 16 0074 007d - 1 0074 007e - 3 0074 0092 - 6 0074 0094 - 4 0074 0097 - 1 0074 00ae - 4 0074 00c7 - 7 0074 00e0 - 66 0074 00e1 - 5 0074 00e2 - 26 0074 00e4 - 1 0074 00e5 - 70 0074 00e8 - 537 0074 00e9 - 13 0074 00ea - 1 0074 00eb - 50 0074 00ed - 25 0074 00f3 - 6 0074 00f4 - 1 0074 00f8 - 70 0074 00fa - 1 0074 00fc - 53 0074 2013 - 534 0074 2014 - 4122 0074 2019 - 481 0074 201d - 27 0074 2026 - 6 0074 2192 - 28 0074 2212 - 4 0074 f6da - 4 0074 fb01 - 1 0074 fb02 - 473 0075 0009 - 89 0075 000a - 28876 0075 0020 - 61 0075 0021 - 6 0075 0022 - 301 0075 0027 - 31 0075 0028 - 80 0075 0029 - 1798 0075 002c - 127 0075 002d - 1548 0075 002e - 166 0075 002f - 10 0075 0030 - 8 0075 0031 - 7 0075 0032 - 5 0075 0033 - 2 0075 0034 - 7 0075 0035 - 7 0075 0036 - 4 0075 0037 - 3 0075 0038 - 1 0075 0039 - 69 0075 003a - 60 0075 003b - 5 0075 003d - 1 0075 003e - 439 0075 003f - 1 0075 0040 - 1 0075 0041 - 11 0075 0042 - 17 0075 0043 - 1 0075 0047 - 4 0075 0049 - 6 0075 004d - 1 0075 004e - 5 0075 004f - 4 0075 0050 - 3 0075 0052 - 2 0075 0053 - 1 0075 0054 - 1 0075 0055 - 15 0075 005d - 22014 0075 0061 - 12923 0075 0062 - 29209 0075 0063 - 15904 0075 0064 - 26723 0075 0065 - 2334 0075 0066 - 20787 0075 0067 - 270 0075 0068 - 17421 0075 0069 - 437 0075 006a - 846 0075 006b - 53674 0075 006c - 20937 0075 006d - 60298 0075 006e - 1269 0075 006f - 24226 0075 0070 - 96 0075 0071 - 91097 0075 0072 - 76486 0075 0073 - 68120 0075 0074 - 120 0075 0075 - 920 0075 0076 - 135 0075 0077 - 1755 0075 0078 - 1749 0075 0079 - 2910 0075 007a - 1 0075 007b - 1 0075 0092 - 5 0075 00e1 - 23 0075 00e8 - 68 0075 00e9 - 7 0075 00ea - 44 0075 00ed - 42 0075 00f1 - 4 0075 03b2 - 17 0075 2013 - 43 0075 2014 - 1795 0075 2019 - 23 0075 201d - 10 0075 2026 - 2 0075 2208 - 2 0075 2212 - 2 0075 fb00 - 1 0075 fb02 - 8 0075 fb03 - 66 0076 000a - 454 0076 0020 - 9 0076 0021 - 24 0076 0027 - 12 0076 0028 - 35 0076 0029 - 1 0076 002b - 479 0076 002c - 19 0076 002d - 317 0076 002e - 99 0076 002f - 6 0076 0030 - 4 0076 0031 - 5 0076 0032 - 2 0076 0033 - 2 0076 0034 - 3 0076 0036 - 1 0076 0039 - 2 0076 003a - 4 0076 003b - 5 0076 003f - 1 0076 0040 - 1 0076 0041 - 2 0076 0043 - 1 0076 0044 - 1 0076 0045 - 7 0076 0046 - 2 0076 0047 - 1 0076 005b - 2 0076 005d - 2 0076 005f - 24624 0076 0061 - 8 0076 0063 - 16 0076 0064 - 139173 0076 0065 - 13 0076 0067 - 1 0076 0068 - 43925 0076 0069 - 14 0076 006b - 26 0076 006c - 7 0076 006d - 23 0076 006e - 8685 0076 006f - 2 0076 0070 - 162 0076 0072 - 232 0076 0073 - 9 0076 0074 - 325 0076 0075 - 22 0076 0076 - 566 0076 0079 - 2 0076 007d - 15 0076 00e1 - 1 0076 00e4 - 5 0076 00e8 - 76 0076 00e9 - 4 0076 00ea - 37 0076 00ed - 6 0076 00f3 - 3 0076 03b2 - 12 0076 2013 - 1 0076 2014 - 45 0076 2019 - 1 0076 201d - 1 0076 2202 - 1 0076 f64b - 243 0077 0009 - 225 0077 000a - 38 0077 000d - 35326 0077 0020 - 119 0077 0021 - 17 0077 0022 - 36 0077 0027 - 3 0077 0028 - 213 0077 0029 - 2796 0077 002c - 645 0077 002d - 4498 0077 002e - 76 0077 002f - 3 0077 0030 - 5 0077 0031 - 18 0077 0032 - 4 0077 0033 - 2 0077 0034 - 222 0077 003a - 61 0077 003b - 2 0077 003d - 2 0077 003e - 302 0077 003f - 2 0077 0040 - 1 0077 0042 - 3 0077 0045 - 1 0077 0047 - 2 0077 0048 - 2 0077 0053 - 2 0077 0054 - 6 0077 005d - 11 0077 005f - 65316 0077 0061 - 292 0077 0062 - 80 0077 0063 - 575 0077 0064 - 51034 0077 0065 - 156 0077 0066 - 24 0077 0067 - 46850 0077 0068 - 58023 0077 0069 - 7 0077 006a - 354 0077 006b - 3460 0077 006c - 120 0077 006d - 13648 0077 006e - 35909 0077 006f - 144 0077 0070 - 14 0077 0071 - 4816 0077 0072 - 6107 0077 0073 - 1800 0077 0074 - 78 0077 0075 - 4472 0077 0077 - 370 0077 0079 - 8 0077 007a - 1 0077 007c - 4 0077 007d - 2 0077 0092 - 5 0077 2013 - 48 0077 2014 - 165 0077 2019 - 59 0077 201d - 4 0077 2026 - 1 0077 f645 - 1 0077 fb01 - 2 0077 fb02 - 63 0078 0009 - 304 0078 000a - 3 0078 000d - 10077 0078 0020 - 8 0078 0021 - 7 0078 0022 - 1 0078 0023 - 13 0078 0027 - 57 0078 0028 - 359 0078 0029 - 5 0078 002b - 945 0078 002c - 352 0078 002d - 1014 0078 002e - 14 0078 002f - 5 0078 0030 - 47 0078 0031 - 45 0078 0032 - 12 0078 0034 - 60 0078 0035 - 2 0078 0036 - 2 0078 0038 - 260 0078 003a - 106 0078 003b - 1 0078 003c - 107 0078 003d - 1 0078 003e - 51 0078 003f - 5 0078 0040 - 37 0078 0041 - 4 0078 0042 - 8 0078 0043 - 1 0078 0044 - 127 0078 0045 - 1 0078 0047 - 1 0078 0048 - 12 0078 0049 - 7 0078 004b - 1 0078 004d - 8 0078 004e - 10 0078 004f - 4 0078 0050 - 4 0078 0052 - 3 0078 0053 - 24 0078 0054 - 2 0078 0057 - 1 0078 005b - 33 0078 005d - 47 0078 005f - 6025 0078 0061 - 2 0078 0062 - 4169 0078 0063 - 2 0078 0064 - 5709 0078 0065 - 319 0078 0066 - 1 0078 0067 - 471 0078 0068 - 5739 0078 0069 - 1 0078 006a - 328 0078 006c - 39 0078 006d - 29 0078 006e - 339 0078 006f - 11298 0078 0070 - 24 0078 0071 - 10 0078 0072 - 28 0078 0073 - 7700 0078 0074 - 376 0078 0075 - 183 0078 0076 - 74 0078 0077 - 130 0078 0078 - 435 0078 0079 - 2 0078 007a - 11 0078 007b - 8 0078 007c - 4 0078 007d - 1 0078 0097 - 1 0078 00a8 - 2 0078 00e1 - 23 0078 00e9 - 4 0078 00ed - 6 0078 2013 - 8 0078 2014 - 170 0078 2019 - 28 0078 201d - 15 0078 2208 - 1 0078 2212 - 2113 0079 0009 - 1592 0079 000a - 326 0079 000d - 210289 0079 0020 - 312 0079 0021 - 123 0079 0022 - 2 0079 0025 - 428 0079 0027 - 15 0079 0028 - 752 0079 0029 - 1 0079 002a - 90 0079 002b - 21199 0079 002c - 1990 0079 002d - 15935 0079 002e - 346 0079 002f - 22 0079 0030 - 32 0079 0031 - 26 0079 0032 - 10 0079 0033 - 10 0079 0034 - 5 0079 0035 - 2 0079 0036 - 2 0079 0037 - 1 0079 0038 - 3 0079 0039 - 1620 0079 003a - 553 0079 003b - 75 0079 003d - 26 0079 003e - 1385 0079 003f - 27 0079 0040 - 1 0079 0041 - 3 0079 0042 - 4 0079 0043 - 2 0079 0044 - 113 0079 0045 - 4 0079 0046 - 2 0079 0047 - 1 0079 0048 - 1 0079 0049 - 1 0079 004a - 4 0079 004c - 3 0079 004d - 2 0079 004e - 11 0079 004f - 2 0079 0052 - 7 0079 0053 - 2 0079 0054 - 1 0079 0056 - 1 0079 0057 - 1 0079 0059 - 1 0079 005c - 59 0079 005d - 106 0079 005f - 3269 0079 0061 - 1551 0079 0062 - 2026 0079 0063 - 959 0079 0064 - 16491 0079 0065 - 210 0079 0066 - 414 0079 0067 - 54 0079 0068 - 6315 0079 0069 - 4 0079 006a - 100 0079 006b - 2852 0079 006c - 3474 0079 006d - 3784 0079 006e - 42275 0079 006f - 4806 0079 0070 - 12 0079 0071 - 1826 0079 0072 - 17868 0079 0073 - 3130 0079 0074 - 222 0079 0075 - 31 0079 0076 - 871 0079 0077 - 13 0079 0078 - 112 0079 0079 - 453 0079 007a - 2 0079 007c - 18 0079 007d - 3 0079 0092 - 5 0079 0094 - 1 0079 0097 - 2 0079 00c9 - 2 0079 00e1 - 11 0079 00e9 - 4 0079 00f3 - 2 0079 00f6 - 2 0079 00fa - 27 0079 2013 - 402 0079 2014 - 2149 0079 2019 - 458 0079 201d - 14 0079 2026 - 1 0079 2192 - 1 0079 fb01 - 35 007a 000a - 1 007a 000d - 750 007a 0020 - 1 007a 0021 - 1 007a 0022 - 3 007a 0027 - 5 007a 0028 - 28 007a 0029 - 419 007a 002c - 45 007a 002d - 116 007a 002e - 27 007a 002f - 7 007a 0031 - 7 007a 0032 - 1 007a 0039 - 6 007a 003a - 1 007a 003b - 5 007a 003f - 1 007a 0046 - 2 007a 0049 - 1 007a 004e - 1 007a 0056 - 1 007a 0057 - 1 007a 005f - 6802 007a 0061 - 106 007a 0062 - 110 007a 0063 - 25 007a 0064 - 8710 007a 0065 - 1 007a 0066 - 25 007a 0067 - 97 007a 0068 - 2199 007a 0069 - 2 007a 006a - 48 007a 006b - 241 007a 006c - 108 007a 006d - 23 007a 006e - 1204 007a 006f - 19 007a 0070 - 15 007a 0071 - 8 007a 0072 - 20 007a 0073 - 11 007a 0074 - 182 007a 0075 - 21 007a 0076 - 9 007a 0077 - 2847 007a 0079 - 3086 007a 007a - 18 007a 00e1 - 1 007a 00e4 - 1 007a 00e9 - 15 007a 00f3 - 1 007a 00f4 - 2 007a 03b1 - 1 007a 03b2 - 4 007a 2014 - 16 007a 2019 - 2 007a 201d - 2 007a 2208 - 1 007b 000a - 8 007b 0020 - 1 007b 0024 - 8 007b 0028 - 17 007b 0030 - 37 007b 0031 - 4 007b 0032 - 2 007b 0033 - 1 007b 0035 - 1 007b 0036 - 1 007b 003f - 41 007b 0041 - 9 007b 0042 - 15 007b 0043 - 7 007b 0044 - 6 007b 0045 - 18 007b 0046 - 1 007b 0047 - 12 007b 0048 - 12 007b 0049 - 1 007b 004a - 3 007b 004b - 25 007b 004c - 11 007b 004d - 21 007b 004e - 31 007b 004f - 11 007b 0050 - 1 007b 0051 - 22 007b 0052 - 29 007b 0053 - 22 007b 0054 - 7 007b 0055 - 1 007b 0056 - 9 007b 0057 - 1 007b 0058 - 3 007b 0059 - 4 007b 005b - 14 007b 0061 - 3 007b 0062 - 8 007b 0063 - 7 007b 0064 - 7 007b 0065 - 6 007b 0066 - 1 007b 0067 - 10 007b 0068 - 3 007b 0069 - 6 007b 006b - 7 007b 006d - 9 007b 006e - 4 007b 006f - 14 007b 0070 - 1 007b 0071 - 4 007b 0072 - 6 007b 0073 - 13 007b 0074 - 6 007b 0075 - 3 007b 0077 - 4 007b 0078 - 1 007b 0079 - 1 007b 007b - 1 007b 007c - 1 007b 007d - 2 007b 00af - 11 007b 00b5 - 3 007b 03b1 - 3 007b 03b2 - 1 007b 03b8 - 2 007b 201c - 245 007c 0020 - 1 007c 0029 - 1 007c 002c - 1 007c 002e - 2 007c 002f - 6 007c 0032 - 1 007c 0045 - 4 007c 004d - 1 007c 004e - 6 007c 0053 - 2 007c 0054 - 1 007c 006c - 1 007c 0070 - 3 007c 0074 - 9 007c 0078 - 5 007c 007c - 1 007c 007d - 2 007c 00c7 - 2 007c 00e0 - 2 007c 00e1 - 1 007c 03b2 - 1 007c 2019 - 3 007c 2207 - 2 007c 2212 - 52 007d 000a - 406 007d 0020 - 4 007d 0029 - 32 007d 002c - 56 007d 002e - 2 007d 002f - 2 007d 0032 - 1 007d 0035 - 1 007d 003a - 3 007d 003b - 2 007d 003d - 6 007d 0046 - 1 007d 005c - 1 007d 005d - 3 007d 007d - 2 007d 201d - 20 007e 000a - 21 007e 0020 - 1 007e 0026 - 2 007e 0031 - 1 007e 0033 - 3 007e 0061 - 3 007e 0062 - 1 007e 0065 - 5 007e 0067 - 1 007e 0068 - 3 007e 0069 - 2 007e 006b - 5 007e 006c - 1 007e 006d - 6 007e 0070 - 1 007e 0072 - 1 007e 0073 - 1 007e 0077 - 1 007e 007a - 1 0085 0020 - 5 0092 0020 - 1 0092 0044 - 1 0092 0053 - 1 0092 0061 - 1 0092 0064 - 1 0092 006c - 4 0092 006d - 45 0092 0073 - 22 0092 0074 - 4 0093 0041 - 6 0093 0043 - 1 0093 0045 - 3 0093 0046 - 6 0093 0047 - 1 0093 0049 - 1 0093 004b - 1 0093 004c - 5 0093 004d - 1 0093 004e - 1 0093 004f - 2 0093 0050 - 4 0093 0053 - 5 0093 0054 - 2 0093 0057 - 4 0093 0061 - 1 0093 0062 - 1 0093 0063 - 3 0093 0064 - 2 0093 0065 - 4 0093 0066 - 1 0093 0067 - 3 0093 0068 - 1 0093 0069 - 1 0093 006a - 1 0093 006b - 3 0093 006d - 2 0093 006e - 2 0093 006f - 1 0093 0070 - 4 0093 0072 - 4 0093 0073 - 11 0093 0074 - 1 0093 0075 - 2 0093 0077 - 3 0094 000a - 89 0094 0020 - 3 0094 0029 - 1 0094 0097 - 213 0095 0020 - 53 0095 00a0 - 13 0096 0031 - 4 0096 0032 - 2 0096 0033 - 2 0096 0035 - 4 0096 0036 - 3 0096 0039 - 38 0096 0043 - 40 0096 0048 - 27 0096 004c - 38 0096 0052 - 39 0096 005a - 1 0097 0020 - 1 0097 0032 - 1 0097 0041 - 1 0097 0043 - 1 0097 0044 - 1 0097 0050 - 3 0097 0061 - 4 0097 0062 - 3 0097 0065 - 2 0097 0066 - 1 0097 0067 - 1 0097 0068 - 5 0097 0069 - 2 0097 006d - 1 0097 006e - 2 0097 006f - 1 0097 0070 - 1 0097 0072 - 1 0097 0073 - 4 0097 0074 - 1 0097 0075 - 8 0097 0077 - 2 0097 0079 - 1 0097 0093 - 1 00a0 0020 - 4 00a0 002e - 1 00a0 0031 - 4 00a0 0041 - 2 00a0 0042 - 6 00a0 0043 - 3 00a0 0044 - 1 00a0 0045 - 1 00a0 0047 - 2 00a0 0049 - 5 00a0 004a - 1 00a0 004c - 7 00a0 004d - 1 00a0 004e - 11 00a0 0050 - 3 00a0 0053 - 5 00a0 0054 - 1 00a0 0056 - 13 00a2 0020 - 1 00a2 0029 - 4 00a2 002c - 4 00a2 002e - 1 00a2 0033 - 45 00a3 0020 - 410 00a3 0031 - 291 00a3 0032 - 248 00a3 0033 - 108 00a3 0034 - 150 00a3 0035 - 90 00a3 0036 - 77 00a3 0037 - 60 00a3 0038 - 47 00a3 0039 - 1 00a3 006e - 2 00a5 0020 - 104 00a7 0009 - 4 00a7 0020 - 22 00a7 00a7 - 23 00a8 0020 - 3 00a8 0064 - 669 00a9 0020 - 1 00a9 0029 - 1 00a9 0031 - 2 00a9 0032 - 2 00a9 0048 - 237 00a9 004f - 11 00a9 006e - 23 00ab 0020 - 1 00ac 0020 - 10 00ac 0041 - 1 00ac 0052 - 2 00ac 0391 - 8 00ae 000a - 79 00ae 0020 - 1 00ae 0029 - 10 00ae 002c - 2 00ae 002e - 4 00ae 003a - 7 00af 000a - 87 00af 0020 - 1 00af 0031 - 1 00af 0032 - 14 00b0 000a - 98 00b0 0020 - 13 00b0 0029 - 4 00b0 002c - 2 00b0 002e - 1 00b0 0031 - 1 00b0 0033 - 1 00b0 0034 - 17 00b0 0043 - 34 00b0 0046 - 13 00b1 0020 - 3 00b4 0041 - 1 00b4 0059 - 1 00b5 000a - 26 00b5 0020 - 1 00b5 0029 - 1 00b5 002e - 4 00b5 002f - 1 00b5 0031 - 4 00b5 0032 - 2 00b5 0034 - 2 00b5 003d - 61 00b5 0041 - 7 00b5 0042 - 4 00b5 0045 - 2 00b5 0046 - 1 00b5 004e - 4 00b5 0050 - 8 00b5 0052 - 24 00b5 0053 - 1 00b5 0058 - 5 00b5 0061 - 2 00b5 0062 - 2 00b5 0064 - 2 00b5 0067 - 7 00b5 0069 - 6 00b5 006a - 26 00b5 006d - 1 00b5 006e - 1 00b5 006f - 1 00b5 0073 - 3 00b5 0078 - 1 00b5 0079 - 1 00b5 00ac - 11 00b5 03b5 - 7 00b7 000a - 103 00b7 0020 - 1 00b7 0032 - 1 00b7 0033 - 1 00b7 0036 - 1 00b7 005d - 2 00b7 006a - 2 00b7 0078 - 2 00b7 00b7 - 1 00b8 0020 - 2 00b9 0020 - 1 00b9 2044 - 1 00ba 0020 - 1 00ba 002e - 1 00ba 002f - 16 00ba 0043 - 4 00ba 0046 - 16 00bb 0020 - 1 00bb 0029 - 4 00bb 002c - 2 00bb 002e - 1 00bd 000a - 3 00bd 0020 - 2 00bd 0029 - 1 00bd 002d - 1 00c1 004e - 1 00c1 0066 - 1 00c1 006b - 3 00c1 006c - 2 00c4 0047 - 2 00c4 0054 - 2 00c4 0073 - 1 00c5 000a - 6 00c5 0020 - 6 00c5 0029 - 8 00c5 002c - 1 00c5 002e - 1 00c5 002f - 1 00c5 0068 - 2 00c7 007a - 2 00c7 007e - 2 00c7 00e0 - 34 00c8 0052 - 35 00c8 0053 - 1 00c8 0064 - 8 00c9 0020 - 2 00c9 002c - 1 00c9 0044 - 3 00c9 004c - 1 00c9 004e - 1 00c9 004f - 4 00c9 0052 - 2 00c9 0056 - 2 00c9 0064 - 19 00c9 0067 - 1 00c9 006c - 12 00c9 0074 - 2 00c9 0076 - 2 00c9 00dc - 4 00c9 00e2 - 1 00ca 0022 - 1 00cc 0029 - 1 00d1 0045 - 1 00d1 0061 - 1 00d3 004d - 1 00d6 0047 - 1 00d6 004c - 9 00d6 0073 - 1 00d7 000a - 67 00d7 0020 - 1 00d7 002c - 1 00d7 0031 - 1 00d7 006e - 1 00d7 03c9 - 22 00d8 000a - 38 00d8 0020 - 4 00dc 0020 - 9 00dc 0062 - 2 00dc 0074 - 18 00df 0020 - 1 00df 0028 - 1 00df 0029 - 3 00df 0031 - 1 00df 0032 - 2 00df 006a - 3 00df 006d - 1 00df 0074 - 2 00e0 000a - 414 00e0 0020 - 1 00e0 0021 - 3 00e0 002c - 25 00e0 002d - 1 00e0 0034 - 3 00e0 0074 - 2 00e0 007c - 1 00e1 000a - 14 00e1 0020 - 6 00e1 002c - 14 00e1 002e - 1 00e1 0041 - 8 00e1 0062 - 5 00e1 0063 - 4 00e1 0065 - 12 00e1 0066 - 15 00e1 0067 - 300 00e1 0069 - 2 00e1 006a - 21 00e1 006c - 25 00e1 006d - 124 00e1 006e - 12 00e1 0070 - 2 00e1 0071 - 10 00e1 0072 - 95 00e1 0073 - 14 00e1 0074 - 5 00e1 0075 - 6 00e1 0076 - 7 00e1 0078 - 2 00e1 007c - 2 00e1 00e0 - 1 00e1 2208 - 2 00e1 fb01 - 2 00e2 0020 - 5 00e2 0063 - 1 00e2 0067 - 3 00e2 006d - 9 00e2 0074 - 4 00e2 00dc - 1 00e3 0065 - 2 00e3 006f - 1 00e4 002d - 1 00e4 0061 - 15 00e4 0063 - 13 00e4 0064 - 8 00e4 0067 - 7 00e4 0068 - 1 00e4 0069 - 1 00e4 006c - 2 00e4 006d - 10 00e4 006e - 3 00e4 0072 - 3 00e4 0073 - 12 00e4 0074 - 10 00e4 0075 - 1 00e5 0020 - 1 00e5 006e - 1 00e5 0073 - 40 00e7 0061 - 24 00e7 006f - 4 00e7 0075 - 1 00e7 00e3 - 1 00e8 002c - 1 00e8 0062 - 5 00e8 0063 - 29 00e8 0064 - 14 00e8 0067 - 12 00e8 006c - 78 00e8 006d - 14 00e8 006e - 2 00e8 0071 - 140 00e8 0072 - 75 00e8 0073 - 13 00e8 0074 - 6 00e8 0076 - 1 00e9 000a - 425 00e9 0020 - 1 00e9 0021 - 4 00e9 0022 - 3 00e9 0027 - 2 00e9 0029 - 77 00e9 002c - 3 00e9 002d - 36 00e9 002e - 1 00e9 0031 - 4 00e9 003a - 2 00e9 003b - 2 00e9 003f - 3 00e9 0044 - 80 00e9 0061 - 25 00e9 0062 - 263 00e9 0063 - 92 00e9 0064 - 322 00e9 0065 - 67 00e9 0066 - 129 00e9 0067 - 1 00e9 0068 - 70 00e9 0069 - 9 00e9 006a - 182 00e9 006c - 60 00e9 006d - 139 00e9 006e - 37 00e9 006f - 91 00e9 0070 - 32 00e9 0071 - 279 00e9 0072 - 489 00e9 0073 - 241 00e9 0074 - 7 00e9 0075 - 146 00e9 0076 - 3 00e9 0078 - 1 00e9 007a - 11 00e9 00e9 - 3 00e9 2014 - 4 00e9 2019 - 1 00e9 201a - 1 00e9 201d - 1 00e9 fb01 - 1 00ea 0020 - 1 00ea 0022 - 1 00ea 002c - 3 00ea 0063 - 2 00ea 0069 - 2 00ea 006b - 44 00ea 006d - 2 00ea 006e - 103 00ea 0074 - 1 00ea 0076 - 2 00eb 0020 - 2 00eb 006c - 1 00eb 006e - 20 00ed 0020 - 12 00ed 002c - 3 00ed 002e - 231 00ed 0061 - 2 00ed 0062 - 26 00ed 0063 - 40 00ed 0064 - 22 00ed 0065 - 10 00ed 0066 - 27 00ed 0067 - 2 00ed 006c - 8 00ed 006d - 49 00ed 006e - 54 00ed 006f - 1 00ed 0071 - 23 00ed 0072 - 97 00ed 0073 - 15 00ed 0074 - 9 00ed 0076 - 5 00ed 007a - 17 00ee 006e - 25 00ee 0074 - 3 00ef 0065 - 18 00ef 0076 - 1 00f1 0020 - 159 00f1 0061 - 44 00f1 0065 - 14 00f1 0069 - 168 00f1 006f - 2 00f1 00e1 - 2 00f1 00ed - 1 00f1 00f3 - 13 00f3 0020 - 20 00f3 002c - 12 00f3 002e - 1 00f3 003b - 8 00f3 0063 - 5 00f3 0064 - 16 00f3 0067 - 17 00f3 006c - 24 00f3 006d - 882 00f3 006e - 3 00f3 0070 - 10 00f3 0072 - 14 00f3 0073 - 3 00f3 0074 - 4 00f3 0076 - 6 00f3 0078 - 1 00f3 007a - 23 00f4 006c - 4 00f4 006d - 4 00f4 006e - 13 00f4 0074 - 1 00f4 0075 - 1 00f6 0020 - 2 00f6 002c - 1 00f6 0062 - 2 00f6 0063 - 13 00f6 0064 - 2 00f6 0068 - 1 00f6 006b - 23 00f6 006c - 5 00f6 006d - 4 00f6 006e - 3 00f6 0070 - 21 00f6 0072 - 3 00f6 0073 - 5 00f6 0074 - 15 00f7 0020 - 1 00f7 0033 - 1 00f8 006a - 16 00f9 0020 - 1 00f9 002c - 20 00fa 0020 - 34 00fa 002c - 32 00fa 002e - 4 00fa 003a - 8 00fa 0061 - 7 00fa 0062 - 6 00fa 0063 - 2 00fa 0065 - 2 00fa 0067 - 1 00fa 006a - 11 00fa 006c - 12 00fa 006d - 32 00fa 006e - 1 00fa 006f - 3 00fa 0070 - 18 00fa 0073 - 3 00fa 0074 - 1 00fa 201d - 1 00fb 0020 - 8 00fb 0074 - 1 00fc 0020 - 15 00fc 0062 - 3 00fc 0063 - 19 00fc 0065 - 4 00fc 0068 - 9 00fc 006c - 3 00fc 006e - 14 00fc 0072 - 21 0153 0075 - 2 0160 0020 - 16 0192 000a - 12 0192 0020 - 1490 0192 0192 - 1 02c7 0020 - 2 02d8 0020 - 3 02d9 000a - 11 02d9 0020 - 1 02d9 0032 - 1 02d9 0078 - 1 02d9 00a8 - 3 02da 000a - 12 02da 0020 - 5 02db 0020 - 2 02db 0029 - 1 02dc 000a - 19 02dc 0020 - 1 02dc 0028 - 1 02dd 0020 - 1 0391 0020 - 1 0391 0028 - 1 0391 002c - 1 0392 0020 - 1 0393 0020 - 17 0393 0028 - 8 0393 0031 - 13 0393 0032 - 2 0395 000a - 1 0395 0020 - 1 0396 0020 - 1 0397 0020 - 1 0398 0020 - 1 0399 0020 - 1 039a 0020 - 1 039b 0020 - 1 039b 03bf - 1 039c 0020 - 1 039d 0020 - 1 039e 0020 - 1 039f 0020 - 9 03a0 0020 - 7 03a0 0028 - 1 03a0 0075 - 1 03a1 0020 - 3 03a3 0020 - 2 03a3 0067 - 1 03a3 0075 - 1 03a4 0020 - 1 03a4 0068 - 1 03a5 0020 - 7 03a6 0020 - 2 03a6 0028 - 1 03a6 0031 - 1 03a6 0032 - 2 03a6 003d - 1 03a6 f8e6 - 1 03a7 0020 - 1 03a8 0020 - 24 03b1 000a - 1 03b1 0014 - 306 03b1 0020 - 1 03b1 0029 - 4 03b1 002a - 4 03b1 002b - 36 03b1 002c - 20 03b1 002d - 2 03b1 002e - 4 03b1 0031 - 1 03b1 0032 - 8 03b1 003a - 1 03b1 003c - 2 03b1 0041 - 7 03b1 0042 - 2 03b1 0050 - 1 03b1 0065 - 11 03b1 0069 - 1 03b1 006b - 4 03b1 006e - 6 03b1 03b1 - 16 03b1 03b2 - 1 03b1 03bd - 1 03b1 03c0 - 4 03b1 03c3 - 1 03b1 03c5 - 2 03b1 2212 - 27 03b2 000a - 1 03b2 0014 - 153 03b2 0020 - 3 03b2 0028 - 3 03b2 0029 - 4 03b2 002a - 4 03b2 002b - 34 03b2 002c - 7 03b2 002d - 2 03b2 002e - 11 03b2 003d - 9 03b2 0041 - 7 03b2 0042 - 6 03b2 0045 - 11 03b2 0048 - 3 03b2 004e - 4 03b2 0050 - 1 03b2 005b - 4 03b2 0069 - 1 03b2 006b - 3 03b2 006e - 2 03b2 0070 - 1 03b2 03b1 - 2 03b2 03c3 - 6 03b2 2206 - 5 03b3 000a - 1 03b3 0014 - 146 03b3 0020 - 2 03b3 0028 - 7 03b3 0029 - 4 03b3 002a - 4 03b3 002b - 34 03b3 002c - 4 03b3 002d - 4 03b3 002e - 12 03b3 0031 - 5 03b3 0032 - 1 03b3 003a - 2 03b3 003d - 1 03b3 0041 - 5 03b3 0042 - 1 03b3 004b - 5 03b3 004e - 3 03b3 005d - 1 03b3 0069 - 1 03b3 006b - 17 03b3 006d - 1 03b3 0074 - 1 03b3 0075 - 4 03b3 0076 - 6 03b3 03b1 - 1 03b3 03b5 - 1 03b3 03bf - 1 03b3 2192 - 3 03b4 000a - 1 03b4 0014 - 89 03b4 0020 - 21 03b4 0028 - 2 03b4 0029 - 4 03b4 002a - 8 03b4 002b - 2 03b4 002c - 2 03b4 002d - 5 03b4 002e - 1 03b4 002f - 3 03b4 0031 - 3 03b4 0032 - 1 03b4 0033 - 1 03b4 003a - 3 03b4 0041 - 7 03b4 0042 - 6 03b4 0044 - 5 03b4 0045 - 4 03b4 0047 - 16 03b4 005d - 10 03b4 006d - 5 03b4 006e - 3 03b4 0073 - 3 03b4 03b1 - 1 03b4 03b9 - 3 03b4 03bd - 4 03b4 03c6 - 5 03b4 2212 - 1 03b5 000a - 23 03b5 0020 - 1 03b5 0028 - 1 03b5 002c - 1 03b5 002d - 4 03b5 0032 - 1 03b5 0052 - 6 03b5 0069 - 3 03b5 006b - 1 03b5 03b3 - 1 03b5 03bd - 3 03b5 2207 - 1 03b6 0020 - 14 03b7 0020 - 22 03b7 0028 - 3 03b7 002c - 1 03b7 002e - 1 03b7 03c2 - 2 03b7 03c3 - 1 03b8 000a - 3 03b8 0020 - 1 03b8 002c - 10 03b8 0030 - 8 03b8 0031 - 6 03b8 0032 - 6 03b8 006a - 2 03b8 006b - 2 03b9 0020 - 1 03b9 03bd - 5 03ba 0020 - 1 03ba 0029 - 1 03ba 002c - 6 03ba 0030 - 12 03ba 0031 - 12 03ba 0032 - 1 03ba 0033 - 1 03ba 003d - 3 03ba 004b - 11 03ba 004e - 3 03ba 0054 - 1 03ba 005d - 2 03ba 0062 - 17 03ba 03b1 - 5 03ba 03b2 - 20 03bb 000a - 101 03bb 0020 - 2 03bb 0028 - 7 03bb 0029 - 4 03bb 002c - 3 03bb 002e - 1 03bb 002f - 1 03bb 0031 - 7 03bb 0032 - 8 03bb 0033 - 2 03bb 003d - 3 03bb 0044 - 1 03bb 004e - 1 03bb 0051 - 18 03bb 006d - 1 03bb 0070 - 2 03bb 0075 - 9 03bb 03b1 - 1 03bb 03b2 - 2 03bb 03bd - 1 03bb 03c1 - 14 03bb 2019 - 37 03bd 0020 - 1 03bd 0029 - 5 03bd 002c - 1 03bd 0031 - 2 03bd 003d - 1 03bd 0070 - 9 03bd 03b1 - 1 03bd 03b7 - 1 03bd 03ba - 1 03bd 03bf - 1 03bd 03c4 - 1 03be 000a - 42 03be 0020 - 4 03be 002c - 1 03be 002e - 1 03be 003d - 1 03be 2261 - 1 03bf 0020 - 1 03bf 03b3 - 1 03bf 03c2 - 1 03bf 03c3 - 1 03bf 03c5 - 1 03bf 03c6 - 1 03bf 201d - 15 03c0 000a - 30 03c0 0020 - 1 03c0 0028 - 1 03c0 0029 - 3 03c0 002a - 27 03c0 002d - 1 03c0 002e - 26 03c0 0041 - 4 03c0 0044 - 1 03c0 004d - 2 03c0 0062 - 9 03c0 0063 - 3 03c0 0064 - 2 03c0 006b - 2 03c0 006d - 2 03c0 006e - 5 03c0 0070 - 26 03c0 0072 - 1 03c0 0074 - 1 03c0 03b1 - 1 03c0 03b4 - 1 03c0 03c1 - 1 03c1 000a - 24 03c1 0020 - 6 03c1 0028 - 2 03c1 0029 - 2 03c1 002c - 2 03c1 002e - 6 03c1 0031 - 2 03c1 0032 - 2 03c1 0053 - 5 03c1 005d - 3 03c1 0064 - 3 03c1 0065 - 4 03c1 0069 - 1 03c1 006a - 4 03c1 006b - 1 03c1 0073 - 2 03c1 0075 - 4 03c1 03ba - 1 03c1 03bf - 1 03c1 2217 - 2 03c2 0020 - 1 03c2 002c - 9 03c3 000a - 5 03c3 0020 - 2 03c3 002c - 7 03c3 002d - 1 03c3 002f - 2 03c3 0030 - 2 03c3 0031 - 3 03c3 0032 - 2 03c3 0042 - 6 03c3 0050 - 1 03c3 005d - 2 03c3 0067 - 2 03c3 0069 - 1 03c3 006a - 1 03c3 0075 - 2 03c3 0078 - 1 03c3 03c5 - 1 03c4 000a - 30 03c4 0020 - 1 03c4 0029 - 2 03c4 002e - 4 03c4 0030 - 1 03c4 003b - 1 03c4 003d - 4 03c4 0071 - 2 03c4 03b1 - 2 03c4 03bf - 2 03c5 0020 - 6 03c5 0069 - 1 03c5 03bd - 1 03c5 03c4 - 3 03c6 000a - 38 03c6 0020 - 18 03c6 0028 - 25 03c6 0029 - 4 03c6 002c - 3 03c6 002e - 3 03c6 0030 - 7 03c6 0031 - 11 03c6 0032 - 3 03c6 0034 - 1 03c6 004f - 14 03c6 005d - 2 03c6 0065 - 16 03c6 006d - 1 03c6 007c - 1 03c6 03b4 - 1 03c6 03c1 - 1 03c6 2207 - 8 03c7 0020 - 2 03c7 0029 - 4 03c8 0020 - 2 03c8 0029 - 7 03c9 000a - 98 03c9 0020 - 7 03c9 0028 - 57 03c9 0029 - 1 03c9 002b - 1 03c9 002c - 1 03c9 002d - 9 03c9 0030 - 19 03c9 0031 - 2 03c9 0032 - 10 03c9 004e - 1 03c9 0051 - 2 03c9 0065 - 13 03c9 0074 - 1 03c9 0075 - 1 03c9 007a - 14 03c9 03b1 - 8 03c9 03b2 - 7 03c9 03ba - 6 03c9 03c9 - 5 03d5 0020 - 1 03d5 0028 - 1 03d5 002c - 2 03d5 0041 - 3 03d5 0042 - 2 03d5 03b1 - 125 2013 000a - 2907 2013 0020 - 2 2013 0022 - 17 2013 0024 - 5 2013 0028 - 1 2013 002c - 41 2013 0030 - 2560 2013 0031 - 1804 2013 0032 - 1129 2013 0033 - 739 2013 0034 - 628 2013 0035 - 564 2013 0036 - 493 2013 0037 - 558 2013 0038 - 529 2013 0039 - 46 2013 0041 - 17 2013 0042 - 87 2013 0043 - 14 2013 0044 - 6 2013 0045 - 31 2013 0046 - 2 2013 0047 - 30 2013 0048 - 5 2013 0049 - 7 2013 004a - 3 2013 004b - 10 2013 004c - 36 2013 004d - 25 2013 004e - 6 2013 004f - 45 2013 0050 - 11 2013 0052 - 25 2013 0053 - 45 2013 0054 - 8 2013 0055 - 14 2013 0056 - 11 2013 0057 - 10 2013 0058 - 5 2013 0059 - 2 2013 005a - 31 2013 0061 - 15 2013 0062 - 52 2013 0063 - 31 2013 0064 - 32 2013 0065 - 5 2013 0066 - 10 2013 0067 - 25 2013 0068 - 29 2013 0069 - 1 2013 006a - 2 2013 006b - 67 2013 006c - 34 2013 006d - 5 2013 006e - 37 2013 006f - 32 2013 0070 - 3 2013 0071 - 20 2013 0072 - 85 2013 0073 - 37 2013 0074 - 7 2013 0075 - 42 2013 0076 - 16 2013 0077 - 31 2013 0078 - 3 2013 0079 - 2 2013 2013 - 1 2013 2019 - 20 2014 000a - 1028 2014 0020 - 1 2014 0021 - 190 2014 0022 - 6 2014 0024 - 2 2014 0028 - 1 2014 002a - 47 2014 002c - 21 2014 002d - 104 2014 002e - 2 2014 0030 - 10 2014 0031 - 11 2014 0032 - 1 2014 0034 - 4 2014 0035 - 3 2014 0036 - 3 2014 0037 - 1 2014 0038 - 2 2014 0039 - 9 2014 003c - 14 2014 003f - 101 2014 0041 - 43 2014 0042 - 114 2014 0043 - 57 2014 0044 - 26 2014 0045 - 77 2014 0046 - 38 2014 0047 - 60 2014 0048 - 68 2014 0049 - 68 2014 004a - 5 2014 004b - 29 2014 004c - 103 2014 004d - 38 2014 004e - 21 2014 004f - 65 2014 0050 - 3 2014 0051 - 40 2014 0052 - 61 2014 0053 - 65 2014 0054 - 28 2014 0055 - 14 2014 0056 - 56 2014 0057 - 12 2014 0059 - 1 2014 005a - 866 2014 0061 - 276 2014 0062 - 94 2014 0063 - 96 2014 0064 - 141 2014 0065 - 159 2014 0066 - 45 2014 0067 - 192 2014 0068 - 308 2014 0069 - 34 2014 006a - 8 2014 006b - 75 2014 006c - 127 2014 006d - 130 2014 006e - 224 2014 006f - 115 2014 0070 - 5 2014 0071 - 53 2014 0072 - 312 2014 0073 - 682 2014 0074 - 53 2014 0075 - 11 2014 0076 - 358 2014 0077 - 1 2014 0078 - 71 2014 0079 - 1 2014 007a - 300 2014 2014 - 1 2014 2018 - 3 2014 2019 - 50 2014 201c - 48 2014 201d - 3 2014 fb01 - 1 2014 fb02 - 5 2018 0020 - 1 2018 002d - 1 2018 002e - 4 2018 0030 - 2 2018 0032 - 5 2018 0035 - 2 2018 0036 - 5 2018 0037 - 1 2018 0038 - 1 2018 0039 - 87 2018 0041 - 57 2018 0042 - 79 2018 0043 - 48 2018 0044 - 47 2018 0045 - 22 2018 0046 - 37 2018 0047 - 40 2018 0048 - 116 2018 0049 - 20 2018 004a - 10 2018 004b - 38 2018 004c - 53 2018 004d - 34 2018 004e - 28 2018 004f - 53 2018 0050 - 30 2018 0052 - 92 2018 0053 - 227 2018 0054 - 39 2018 0055 - 10 2018 0056 - 62 2018 0057 - 16 2018 0059 - 3 2018 005b - 126 2018 0061 - 123 2018 0062 - 154 2018 0063 - 80 2018 0064 - 116 2018 0065 - 74 2018 0066 - 68 2018 0067 - 72 2018 0068 - 116 2018 0069 - 13 2018 006a - 27 2018 006b - 80 2018 006c - 107 2018 006d - 89 2018 006e - 72 2018 006f - 149 2018 0070 - 6 2018 0071 - 87 2018 0072 - 241 2018 0073 - 189 2018 0074 - 36 2018 0075 - 30 2018 0076 - 93 2018 0077 - 6 2018 0079 - 2 2018 201c - 5 2018 2026 - 1 2018 fb02 - 164 2019 0009 - 35 2019 000a - 3906 2019 0020 - 3 2019 0021 - 1 2019 0022 - 2 2019 0028 - 70 2019 0029 - 224 2019 002c - 3 2019 002d - 310 2019 002e - 16 2019 0030 - 90 2019 0031 - 43 2019 0032 - 35 2019 0033 - 28 2019 0034 - 28 2019 0035 - 34 2019 0036 - 34 2019 0037 - 28 2019 0038 - 60 2019 0039 - 24 2019 003a - 28 2019 003b - 47 2019 003f - 37 2019 0041 - 8 2019 0042 - 13 2019 0043 - 599 2019 0044 - 12 2019 0045 - 3 2019 0046 - 7 2019 0048 - 44 2019 0049 - 4 2019 004c - 10 2019 004d - 40 2019 004e - 26 2019 004f - 6 2019 0050 - 19 2019 0052 - 176 2019 0053 - 33 2019 0054 - 9 2019 0055 - 1 2019 0056 - 1 2019 0059 - 1 2019 005d - 563 2019 0061 - 5 2019 0062 - 78 2019 0063 - 1756 2019 0064 - 282 2019 0065 - 5 2019 0066 - 15 2019 0068 - 617 2019 0069 - 4 2019 006b - 1612 2019 006c - 1227 2019 006d - 34 2019 006e - 67 2019 006f - 3 2019 0070 - 1371 2019 0072 - 18202 2019 0073 - 8010 2019 0074 - 177 2019 0075 - 901 2019 0076 - 4 2019 0078 - 18 2019 0079 - 1 2019 007a - 6 2019 00c9 - 10 2019 00e0 - 91 2019 00e9 - 11 2019 00ea - 3 2019 0153 - 1 2019 2013 - 6 2019 2014 - 10 2019 2019 - 69 2019 201d - 1 2019 2026 - 1 201a 0020 - 47 201c 0020 - 1 201c 0022 - 1 201c 0023 - 3 201c 0024 - 1 201c 0028 - 2 201c 002a - 2 201c 002b - 2 201c 002c - 14 201c 002e - 5 201c 0030 - 26 201c 0031 - 10 201c 0032 - 7 201c 0033 - 8 201c 0034 - 5 201c 0035 - 3 201c 0036 - 3 201c 0037 - 1 201c 0038 - 1 201c 0039 - 3 201c 003a - 5 201c 0040 - 1057 201c 0041 - 627 201c 0042 - 552 201c 0043 - 850 201c 0044 - 318 201c 0045 - 376 201c 0046 - 448 201c 0047 - 997 201c 0048 - 2903 201c 0049 - 329 201c 004a - 104 201c 004b - 503 201c 004c - 965 201c 004d - 779 201c 004e - 753 201c 004f - 444 201c 0050 - 46 201c 0051 - 373 201c 0052 - 1125 201c 0053 - 2011 201c 0054 - 127 201c 0055 - 66 201c 0056 - 2149 201c 0057 - 8 201c 0058 - 1424 201c 0059 - 21 201c 005a - 28 201c 005b - 8 201c 005f - 474 201c 0061 - 340 201c 0062 - 499 201c 0063 - 231 201c 0064 - 191 201c 0065 - 266 201c 0066 - 187 201c 0067 - 204 201c 0068 - 231 201c 0069 - 36 201c 006a - 40 201c 006b - 165 201c 006c - 255 201c 006d - 214 201c 006e - 181 201c 006f - 338 201c 0070 - 12 201c 0071 - 264 201c 0072 - 534 201c 0073 - 684 201c 0074 - 92 201c 0075 - 61 201c 0076 - 235 201c 0077 - 2 201c 0078 - 61 201c 0079 - 6 201c 007a - 1 201c 03c0 - 1 201c 2014 - 38 201c 2018 - 7 201c 2019 - 3 201c 201d - 13 201c 2026 - 7 201c fb01 - 3 201c fb02 - 19 201d 0009 - 717 201d 000a - 23336 201d 0020 - 2 201d 0021 - 3 201d 0028 - 189 201d 0029 - 185 201d 002c - 12 201d 002d - 214 201d 002e - 13 201d 002f - 89 201d 0031 - 51 201d 0032 - 43 201d 0033 - 28 201d 0034 - 16 201d 0035 - 16 201d 0036 - 15 201d 0037 - 11 201d 0038 - 8 201d 0039 - 59 201d 003a - 38 201d 003b - 1 201d 003c - 19 201d 003e - 46 201d 003f - 1 201d 0041 - 2 201d 0043 - 1 201d 0044 - 1 201d 0045 - 1 201d 0048 - 1 201d 004a - 1 201d 004c - 2 201d 004d - 1 201d 004e - 1 201d 004f - 2 201d 0050 - 3 201d 0052 - 1 201d 0053 - 11 201d 0054 - 1 201d 0059 - 1 201d 005d - 1 201d 0068 - 2 201d 0069 - 1 201d 006d - 3 201d 006f - 1 201d 0070 - 1 201d 0073 - 1 201d 0075 - 1 201d 0077 - 1 201d 007b - 12 201d 007d - 105 201d 2014 - 13 201d 2019 - 3 201d 201c - 1 201d 2122 - 1 2020 000a - 3 2020 0020 - 92 2022 0009 - 469 2022 000a - 5682 2022 0020 - 1 2022 002c - 2 2022 0031 - 3 2022 0032 - 10 2022 0033 - 9 2022 0034 - 27 2022 003e - 8 2022 0041 - 1 2022 0043 - 1 2022 0046 - 1 2022 0049 - 2 2022 004c - 1 2022 004d - 1 2022 004e - 1 2022 004f - 8 2022 0050 - 1 2022 0053 - 2 2022 0054 - 1 2022 0057 - 1 2022 0067 - 125 2022 2022 - 10 2026 000a - 252 2026 0020 - 2 2026 0029 - 71 2026 002c - 69 2026 002e - 5 2026 0031 - 3 2026 0032 - 3 2026 0033 - 1 2026 0038 - 1 2026 0039 - 7 2026 003f - 2 2026 0041 - 2 2026 0042 - 4 2026 0048 - 9 2026 0049 - 1 2026 004c - 2 2026 004d - 4 2026 004f - 1 2026 0050 - 2 2026 0054 - 2 2026 005d - 7 2026 0061 - 1 2026 0062 - 1 2026 0063 - 3 2026 0064 - 2 2026 0065 - 1 2026 0066 - 2 2026 0069 - 1 2026 006b - 3 2026 006d - 2 2026 006e - 4 2026 006f - 1 2026 0070 - 1 2026 0072 - 4 2026 0073 - 6 2026 0074 - 2 2026 0076 - 7 2026 0077 - 1 2026 0079 - 1 2026 007d - 105 2026 201d - 488 2026 2026 - 1 2032 002c - 8 2032 002d - 1 2032 002e - 1 2032 0032 - 1 2044 0020 - 1 2044 0031 - 3 20ac 0031 - 1 20ac 0032 - 2 20ac 0034 - 2 20ac 0035 - 1 211c 0020 - 1 211c 002c - 1 211c 002e - 1 211c 0032 - 1 211c 007d - 1 2122 0020 - 2 2122 002c - 1 2122 201d - 2 2126 000a - 3 2126 0020 - 4 2126 0028 - 1 2126 002c - 1 2126 002f - 1 2126 007b - 1 2190 0033 - 8 2192 000a - 170 2192 0020 - 4 2192 0030 - 1 2192 004d - 1 2192 0061 - 1 2192 0062 - 1 2192 006e - 1 2192 006f - 4 2192 221e - 1 2194 0020 - 2 2194 0028 - 1 2194 0048 - 12 21d2 0020 - 2 21d4 000a - 13 21d4 0020 - 43 2200 0020 - 3 2200 0029 - 1 2200 0069 - 1 2200 0074 - 3 2200 0078 - 20 2202 0020 - 1 2202 0028 - 1 2202 0031 - 4 2202 0032 - 12 2202 0041 - 20 2202 0045 - 5 2202 0047 - 2 2202 0048 - 5 2202 004e - 12 2202 0050 - 9 2202 0053 - 8 2202 0054 - 6 2202 0055 - 12 2202 0056 - 1 2202 0057 - 3 2202 0061 - 4 2202 006e - 4 2202 0074 - 10 2202 0076 - 6 2202 007a - 12 2202 00b5 - 5 2202 03b2 - 3 2202 03c6 - 1 2202 2202 - 4 2203 0020 - 2 2203 0029 - 1 2203 0078 - 2 2205 002e - 3 2206 000a - 26 2206 0020 - 4 2206 0029 - 1 2206 002c - 4 2206 002e - 2 2206 002f - 1 2206 003a - 1 2206 003d - 13 2206 0045 - 10 2206 0047 - 2 2206 0048 - 2 2206 0052 - 2 2206 0053 - 2 2206 0056 - 1 2206 0066 - 2 2206 0072 - 2 2206 03b8 - 1 2206 03bd - 3 2206 03c4 - 2 2206 03c9 - 5 2207 0020 - 1 2207 002e - 10 2207 0032 - 1 2207 003a - 1 2207 006e - 2 2207 00b7 - 3 2207 03c6 - 120 2208 0020 - 2 2208 0044 - 1 2208 0049 - 2 2208 004a - 1 2208 0055 - 15 2208 0058 - 2 2208 005a - 2 2208 005b - 1 2208 007b - 2 2209 0020 - 3 2211 0020 - 1 2211 03b1 - 9 2212 000a - 398 2212 0020 - 1 2212 0024 - 7 2212 0028 - 1 2212 0029 - 387 2212 0030 - 168 2212 0031 - 55 2212 0032 - 42 2212 0033 - 31 2212 0034 - 30 2212 0035 - 16 2212 0036 - 17 2212 0037 - 12 2212 0038 - 9 2212 0039 - 1 2212 0043 - 7 2212 0044 - 3 2212 0045 - 3 2212 0046 - 1 2212 0048 - 2 2212 004e - 2 2212 0052 - 7 2212 0053 - 3 2212 0054 - 2 2212 0061 - 4 2212 0062 - 8 2212 0063 - 24 2212 0069 - 9 2212 006b - 2 2212 006d - 1 2212 006e - 2 2212 0072 - 3 2212 0073 - 6 2212 0074 - 1 2212 0076 - 1 2212 0078 - 1 2212 0079 - 2 2212 007c - 1 2212 03b1 - 37 2212 03b2 - 4 2212 03b3 - 5 2212 03b5 - 2 2212 03b7 - 1 2212 03bd - 2 2212 03c1 - 3 2212 03c9 - 1 2212 2022 - 13 2212 2192 - 1 2212 2202 - 2 2212 2206 - 3 2212 2207 - 29 2212 221e - 10 2217 000a - 298 2217 0020 - 166 2217 2217 - 30 221a 0020 - 1 221a 0031 - 3 221d 0020 - 191 221e 000a - 47 221e 0020 - 5 221e 0029 - 10 221e 002c - 3 221e 002e - 3 221e 005d - 316 221e 221e - 9 2227 0020 - 1 2227 0029 - 1 2227 0069 - 1 2227 006a - 1 2228 0020 - 6 2229 0020 - 1 2229 0042 - 17 222a 0020 - 1 222a 0029 - 1 222a 0042 - 7 222b 0020 - 3 222b 0046 - 1 222b 0055 - 1 222b 0078 - 1 2235 0020 - 3 223c 000a - 26 223c 0020 - 1 2248 000a - 18 2248 0020 - 1 2248 0032 - 1 2248 006e - 12 2260 0020 - 4 2261 000a - 31 2261 0020 - 4 2261 004f - 1 2261 221e - 65 2264 0020 - 1 2264 0032 - 2 2264 006b - 2 2264 006e - 82 2265 0020 - 1 2265 0031 - 1 2265 0032 - 6 2282 0020 - 1 2282 007b - 35 2283 000a - 2 2283 0020 - 4 2283 2283 - 11 2286 0020 - 7 22c5 0020 - 1 23a7 0020 - 1 23a8 0020 - 1 23a9 0061 - 601 25a0 000a - 606 25a0 0020 - 224 25c6 000a - 372 25c6 0020 - 14 25c6 0041 - 3538 25cb 000a - 4775 25cb 0020 - 3 25cf 000a - 38 25cf 0020 - 1 263a 0020 - 177 2666 002d - 1 2666 0031 - 1 2666 0032 - 1 2666 0035 - 5 2666 0041 - 2 2666 0042 - 2 2666 0043 - 1 2666 0045 - 17 2666 0049 - 2 2666 004b - 4 2666 004c - 9 2666 004d - 2 2666 004f - 5 2666 0053 - 25 2666 0054 - 6 2666 0057 - 4 2666 0059 - 15 2701 000a - 2 2701 0020 - 4 2702 000a - 3 2714 0020 - 1 2736 000a - 3 2736 0020 - 1 2776 000a - 4 2776 0020 - 4 2777 0020 - 4 2778 0020 - 1 2779 000a - 1 2779 0020 - 1 27a2 0020 - 1 e00a 0045 - 1 e00a 0061 - 3 e00a 0063 - 1 e00a 0065 - 1 e00a 0068 - 1 e00a 006e - 2 e00a 0070 - 1 e00d 0057 - 1 e01f 0037 - 1 e01f 0045 - 1 e01f 0046 - 1 e01f 0053 - 2 e01f 0061 - 1 e01f 0062 - 5 e01f 0064 - 3 e01f 0065 - 1 e01f 0066 - 1 e01f 0068 - 1 e01f 006e - 3 e01f 006f - 3 e01f 0070 - 3 e01f 0072 - 3 e01f 0073 - 3 e01f 0074 - 1 f645 0020 - 1 f647 0020 - 1 f647 0070 - 1 f64a 0072 - 1 f64b 0074 - 5 f6d9 0032 - 9 f6da 0020 - 1 f6da 0029 - 6 f6da 002c - 1 f8e6 0020 - 1 f8e6 002d - 1 f8e6 0035 - 2 f8e6 0041 - 1 f8e7 0020 - 1 f8e7 2192 - 1 f8e7 f8e7 - 3 f8eb 0020 - 3 f8ec 0020 - 2 f8ec 0031 - 1 f8ed 000a - 2 f8ed 0020 - 3 f8ee 000a - 5 f8ee 0020 - 11 f8ef 0020 - 2 f8f0 000a - 4 f8f0 0020 - 2 f8f0 0058 - 12 f8f1 0020 - 9 f8f1 0030 - 18 f8f1 0031 - 1 f8f1 0032 - 1 f8f1 0046 - 1 f8f1 0048 - 1 f8f1 004e - 4 f8f1 0055 - 4 f8f1 0061 - 2 f8f1 0063 - 1 f8f1 006d - 1 f8f1 0070 - 1 f8f1 0072 - 1 f8f1 0073 - 53 f8f2 0020 - 1 f8f2 0030 - 1 f8f2 004e - 1 f8f2 0054 - 1 f8f2 0055 - 19 f8f3 000a - 15 f8f3 0020 - 8 f8f3 0030 - 3 f8f3 0031 - 2 f8f3 0042 - 9 f8f3 0061 - 1 f8f3 006d - 62 f8f4 0020 - 4 f8f4 0028 - 16 f8f4 0030 - 9 f8f4 0031 - 1 f8f4 0032 - 2 f8f4 0041 - 1 f8f4 0043 - 1 f8f4 0044 - 1 f8f4 0046 - 1 f8f4 0049 - 1 f8f4 004c - 4 f8f4 004e - 1 f8f4 0054 - 1 f8f4 0055 - 1 f8f4 0061 - 2 f8f4 0062 - 4 f8f4 0068 - 1 f8f4 0073 - 1 f8f4 0078 - 3 f8f6 0020 - 4 f8f7 0020 - 1 f8f7 002c - 1 f8f8 000a - 2 f8f8 0020 - 1 f8f9 000a - 7 f8f9 0020 - 11 f8fa 0020 - 3 f8fb 000a - 3 f8fb 0020 - 2 f8fb 0078 - 3 f8fc 0020 - 1 f8fd 000a - 2 f8fd 0020 - 1 f8fe 000a - 2 f8fe 0020 - 3 fb00 0020 - 1 fb00 002c - 2 fb00 002e - 77 fb00 0065 - 2 fb00 006e - 1 fb00 006f - 2 fb00 0072 - 16 fb00 0075 - 2 fb01 0020 - 1 fb01 002c - 18 fb01 0061 - 4 fb01 0062 - 1211 fb01 0063 - 63 fb01 0064 - 342 fb01 0065 - 48 fb01 0066 - 242 fb01 0067 - 1217 fb01 006c - 1066 fb01 006e - 1 fb01 006f - 709 fb01 0072 - 35 fb01 0073 - 206 fb01 0074 - 87 fb01 0076 - 63 fb01 0078 - 1 fb02 002e - 157 fb02 0061 - 130 fb02 0065 - 200 fb02 0069 - 163 fb02 006f - 195 fb02 0075 - 76 fb02 0079 - 17 fb03 0063 - 1 feff 00a9 - 8 fffd 0020 - 1 fffd 0053 diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.fold b/thirdparty/Tesseract-OCR/tessdata/eng.cube.fold deleted file mode 100755 index ac96315ce0..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.cube.fold +++ /dev/null @@ -1,12 +0,0 @@ -0oO -lI1 -cC -kK -pP -sS -uU -vV -wW -xX -yY -zZ diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.lm b/thirdparty/Tesseract-OCR/tessdata/eng.cube.lm deleted file mode 100755 index de0c085c00..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.cube.lm +++ /dev/null @@ -1,7 +0,0 @@ -LeadPunc="({[`' -TrailPunc=}:;-]!?`,.)"' -NumLeadPunc=#({[@$ -NumTrailPunc=}):;].,% -Operators=*+-/.:,()[] -Digits=0123456789 -Alphas=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.nn b/thirdparty/Tesseract-OCR/tessdata/eng.cube.nn deleted file mode 100755 index c7e3a14be2..0000000000 Binary files a/thirdparty/Tesseract-OCR/tessdata/eng.cube.nn and /dev/null differ diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.params b/thirdparty/Tesseract-OCR/tessdata/eng.cube.params deleted file mode 100755 index ce9e2c7204..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.cube.params +++ /dev/null @@ -1,14 +0,0 @@ -RecoWgt=1.0 -SizeWgt=0.2435 -OODWgt=0.0214 -NumWgt=0.036 -CharBigramsWgt=0.1567 -MaxSegPerChar=8 -BeamWidth=10 -ConvGridSize=48 -WordUnigramsWgt=0.01 -MaxWordAspectRatio=20.0000 -MinSpaceHeightRatio=0.5000 -MaxSpaceHeightRatio=0.6000 -HistWindWid=2 -MinConCompSize=0 diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.size b/thirdparty/Tesseract-OCR/tessdata/eng.cube.size deleted file mode 100755 index 5f840a893e..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.cube.size +++ /dev/null @@ -1,194633 +0,0 @@ -Andale_Mono.ttf 1 t 22.6445 38.7569 1 t -0.0123 22.6445 38.7569 -Andale_Mono.ttf 1 t 22.6445 38.7569 2 h -2.1462 23.0431 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 3 a 7.7536 24.2529 30.8333 -Andale_Mono.ttf 1 t 22.6445 38.7569 4 n 8.1911 23.0431 30.6264 -Andale_Mono.ttf 1 t 22.6445 38.7569 5 P -2.2159 22.8055 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 6 o 7.8698 26.7880 30.8333 -Andale_Mono.ttf 1 t 22.6445 38.7569 7 e 7.9218 25.2250 30.8333 -Andale_Mono.ttf 1 t 22.6445 38.7569 8 : 8.1576 7.2279 30.8333 -Andale_Mono.ttf 1 t 22.6445 38.7569 9 r 7.8891 20.4043 30.6264 -Andale_Mono.ttf 1 t 22.6445 38.7569 10 l -2.0440 20.4167 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 11 i -2.2402 13.3043 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 12 1 -2.4452 21.0793 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 13 | -2.0772 4.1457 51.1917 -Andale_Mono.ttf 1 t 22.6445 38.7569 14 N -2.1626 24.3684 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 15 f -1.9654 22.7449 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 16 g 7.9373 26.2862 42.2069 -Andale_Mono.ttf 1 t 22.6445 38.7569 17 d -1.8997 24.9156 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 18 W -2.0445 32.6598 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 19 s 7.9181 22.4960 30.8333 -Andale_Mono.ttf 1 t 22.6445 38.7569 20 c 7.9584 24.2529 30.8333 -Andale_Mono.ttf 1 t 22.6445 38.7569 21 u 8.2916 23.0431 30.6264 -Andale_Mono.ttf 1 t 22.6445 38.7569 22 3 -2.3351 22.4376 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 23 ~ 19.1310 31.2431 8.4376 -Andale_Mono.ttf 1 t 22.6445 38.7569 24 # -1.9931 29.7261 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 25 O -2.1946 27.4069 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 26 ` -3.4349 12.2739 8.6445 -Andale_Mono.ttf 1 t 22.6445 38.7569 27 @ -2.2184 29.8848 45.6293 -Andale_Mono.ttf 1 t 22.6445 38.7569 28 F -2.2983 21.8334 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 29 S -2.3160 22.6445 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 30 p 7.8838 24.9156 42.2069 -Andale_Mono.ttf 1 t 22.6445 38.7569 31 “ -2.3732 17.6989 13.2460 -Andale_Mono.ttf 1 t 22.6445 38.7569 32 % -2.2791 32.6598 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 33 £ -2.1895 26.7902 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 34 . 31.4999 7.2279 7.2279 -Andale_Mono.ttf 1 t 22.6445 38.7569 35 2 -2.3933 21.9695 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 36 5 -2.0128 22.1304 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 37 m 8.3923 27.6138 30.6264 -Andale_Mono.ttf 1 t 22.6445 38.7569 38 V -2.0780 32.2460 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 39 6 -2.2630 25.4319 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 40 w 8.4199 29.5170 30.4195 -Andale_Mono.ttf 1 t 22.6445 38.7569 41 T -2.2256 29.4710 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 42 M -1.9851 25.2250 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 43 G -2.5109 26.5833 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 44 b -2.3090 24.9156 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 45 9 -2.3424 25.2250 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 46 ; 7.8448 7.2279 36.8514 -Andale_Mono.ttf 1 t 22.6445 38.7569 47 D -2.3119 25.2250 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 48 L -1.9215 21.8334 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 49 y 8.1639 26.6417 42.0000 -Andale_Mono.ttf 1 t 22.6445 38.7569 50 ‘ -2.1548 7.2279 13.2460 -Andale_Mono.ttf 1 t 22.6445 38.7569 51 \ -2.3722 24.4014 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 52 R -2.1054 27.3351 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 53 < 3.4612 21.2279 29.2098 -Andale_Mono.ttf 1 t 22.6445 38.7569 54 4 -1.9874 27.4836 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 55 8 -2.1439 25.7598 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 56 0 -2.0420 26.7880 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 57 A -2.0799 32.2460 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 58 E -1.9140 21.0793 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 59 B -2.1487 25.0765 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 60 v 8.1203 26.4348 30.4195 -Andale_Mono.ttf 1 t 22.6445 38.7569 61 k -2.0846 26.1253 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 62 J -2.0338 19.6627 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 63 U -2.0558 23.0431 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 64 j -2.1369 15.7239 52.3707 -Andale_Mono.ttf 1 t 22.6445 38.7569 65 ( -2.3092 15.2098 49.6141 -Andale_Mono.ttf 1 t 22.6445 38.7569 66 7 -2.0377 23.7080 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 67 § -2.5338 23.8543 52.5776 -Andale_Mono.ttf 1 t 22.6445 38.7569 68 $ -5.0116 22.6445 47.0152 -Andale_Mono.ttf 1 t 22.6445 38.7569 69 € -2.2238 30.5474 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 70 / -2.2285 24.4014 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 71 C -1.9766 26.7112 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 72 * -2.0762 20.1184 22.4376 -Andale_Mono.ttf 1 t 22.6445 38.7569 73 ” -2.1082 17.6989 13.2460 -Andale_Mono.ttf 1 t 22.6445 38.7569 74 ? -2.5395 20.5652 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 75 { -1.5827 15.8848 50.4376 -Andale_Mono.ttf 1 t 22.6445 38.7569 76 } -1.7541 15.8848 50.4376 -Andale_Mono.ttf 1 t 22.6445 38.7569 77 , 31.3414 7.2279 13.2460 -Andale_Mono.ttf 1 t 22.6445 38.7569 78 I -2.2271 17.9971 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 79 ° -2.2090 15.7261 15.7261 -Andale_Mono.ttf 1 t 22.6445 38.7569 80 K -2.0705 28.2377 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 81 H -1.8575 23.0431 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 82 q 7.8287 24.9156 42.2069 -Andale_Mono.ttf 1 t 22.6445 38.7569 83 & -2.3544 32.6598 40.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 84 ’ -2.1310 7.2279 13.2460 -Andale_Mono.ttf 1 t 22.6445 38.7569 85 [ -2.1667 11.2250 47.8696 -Andale_Mono.ttf 1 t 22.6445 38.7569 86 - 20.3823 16.9359 4.1457 -Andale_Mono.ttf 1 t 22.6445 38.7569 87 Y -2.2960 29.8264 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 88 Q -2.1119 28.6167 47.7692 -Andale_Mono.ttf 1 t 22.6445 38.7569 89 " -2.0351 14.9239 15.2098 -Andale_Mono.ttf 1 t 22.6445 38.7569 90 ! -2.2368 7.2279 40.7902 -Andale_Mono.ttf 1 t 22.6445 38.7569 91 x 8.1653 26.2739 30.4195 -Andale_Mono.ttf 1 t 22.6445 38.7569 92 ) -1.8801 15.2098 49.6141 -Andale_Mono.ttf 1 t 22.6445 38.7569 93 = 10.9067 27.1098 15.2098 -Andale_Mono.ttf 1 t 22.6445 38.7569 94 + 4.2583 26.9971 26.9971 -Andale_Mono.ttf 1 t 22.6445 38.7569 95 X -1.7811 31.0946 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 96 » 7.9787 25.2250 29.2098 -Andale_Mono.ttf 1 t 22.6445 38.7569 97 ' -2.2983 4.4529 15.2098 -Andale_Mono.ttf 1 t 22.6445 38.7569 98 ¢ 2.9712 23.6474 41.2224 -Andale_Mono.ttf 1 t 22.6445 38.7569 99 Z -1.8564 24.3684 40.5833 -Andale_Mono.ttf 1 t 22.6445 38.7569 100 > 3.6151 21.2279 29.2098 -Andale_Mono.ttf 1 t 22.6445 38.7569 101 ® -2.2841 35.0793 34.5652 -Andale_Mono.ttf 1 t 22.6445 38.7569 102 © -2.4849 35.0793 34.5652 -Andale_Mono.ttf 1 t 22.6445 38.7569 103 ] -1.9368 11.2250 47.8696 -Andale_Mono.ttf 1 t 22.6445 38.7569 104 é -3.0703 25.2250 42.0460 -Andale_Mono.ttf 1 t 22.6445 38.7569 105 z 8.0866 23.1917 30.4195 -Andale_Mono.ttf 1 t 22.6445 38.7569 106 _ 47.5910 35.0793 3.8362 -Andale_Mono.ttf 1 t 22.6445 38.7569 107 ¥ -2.0496 29.8264 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 1 t 1.9479 22.6445 38.7569 -Andale_Mono.ttf 2 h 23.0431 40.5833 2 h 0.0869 23.0431 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 3 a 9.6651 24.2529 30.8333 -Andale_Mono.ttf 2 h 23.0431 40.5833 4 n 9.6262 23.0431 30.6264 -Andale_Mono.ttf 2 h 23.0431 40.5833 5 P -0.1060 22.8055 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 6 o 9.5584 26.7880 30.8333 -Andale_Mono.ttf 2 h 23.0431 40.5833 7 e 10.0956 25.2250 30.8333 -Andale_Mono.ttf 2 h 23.0431 40.5833 8 : 10.0677 7.2279 30.8333 -Andale_Mono.ttf 2 h 23.0431 40.5833 9 r 10.0419 20.4043 30.6264 -Andale_Mono.ttf 2 h 23.0431 40.5833 10 l -0.1205 20.4167 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 11 i -0.2069 13.3043 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 12 1 -0.3769 21.0793 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 13 | -0.2452 4.1457 51.1917 -Andale_Mono.ttf 2 h 23.0431 40.5833 14 N -0.0101 24.3684 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 15 f -0.1052 22.7449 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 16 g 9.8652 26.2862 42.2069 -Andale_Mono.ttf 2 h 23.0431 40.5833 17 d 0.1060 24.9156 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 18 W 0.1337 32.6598 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 19 s 9.7586 22.4960 30.8333 -Andale_Mono.ttf 2 h 23.0431 40.5833 20 c 9.8778 24.2529 30.8333 -Andale_Mono.ttf 2 h 23.0431 40.5833 21 u 10.2756 23.0431 30.6264 -Andale_Mono.ttf 2 h 23.0431 40.5833 22 3 -0.2979 22.4376 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 23 ~ 21.1893 31.2431 8.4376 -Andale_Mono.ttf 2 h 23.0431 40.5833 24 # 0.0006 29.7261 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 25 O -0.2141 27.4069 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 26 ` -0.9583 12.2739 8.6445 -Andale_Mono.ttf 2 h 23.0431 40.5833 27 @ -0.0274 29.8848 45.6293 -Andale_Mono.ttf 2 h 23.0431 40.5833 28 F 0.4620 21.8334 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 29 S -0.2273 22.6445 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 30 p 10.0259 24.9156 42.2069 -Andale_Mono.ttf 2 h 23.0431 40.5833 31 “ -0.4075 17.6989 13.2460 -Andale_Mono.ttf 2 h 23.0431 40.5833 32 % 0.0793 32.6598 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 33 £ -0.3644 26.7902 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 34 . 33.5863 7.2279 7.2279 -Andale_Mono.ttf 2 h 23.0431 40.5833 35 2 -0.1907 21.9695 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 36 5 -0.0810 22.1304 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 37 m 10.0052 27.6138 30.6264 -Andale_Mono.ttf 2 h 23.0431 40.5833 38 V -0.0121 32.2460 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 39 6 -0.2069 25.4319 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 40 w 10.0734 29.5170 30.4195 -Andale_Mono.ttf 2 h 23.0431 40.5833 41 T 0.1058 29.4710 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 42 M 0.0954 25.2250 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 43 G -0.1604 26.5833 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 44 b 0.0376 24.9156 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 45 9 -0.0320 25.2250 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 46 ; 9.8887 7.2279 36.8514 -Andale_Mono.ttf 2 h 23.0431 40.5833 47 D -0.0979 25.2250 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 48 L -0.0044 21.8334 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 49 y 10.1044 26.6417 42.0000 -Andale_Mono.ttf 2 h 23.0431 40.5833 50 ‘ -0.1855 7.2279 13.2460 -Andale_Mono.ttf 2 h 23.0431 40.5833 51 \ 0.0092 24.4014 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 52 R 0.0573 27.3351 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 53 < 5.1557 21.2279 29.2098 -Andale_Mono.ttf 2 h 23.0431 40.5833 54 4 -0.3163 27.4836 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 55 8 -0.1397 25.7598 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 56 0 -0.3971 26.7880 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 57 A 0.0021 32.2460 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 58 E 0.2924 21.0793 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 59 B 0.0444 25.0765 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 60 v 10.2617 26.4348 30.4195 -Andale_Mono.ttf 2 h 23.0431 40.5833 61 k 0.0179 26.1253 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 62 J 0.0771 19.6627 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 63 U 0.0573 23.0431 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 64 j -0.3849 15.7239 52.3707 -Andale_Mono.ttf 2 h 23.0431 40.5833 65 ( -0.1511 15.2098 49.6141 -Andale_Mono.ttf 2 h 23.0431 40.5833 66 7 0.1060 23.7080 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 67 § -0.0879 23.8543 52.5776 -Andale_Mono.ttf 2 h 23.0431 40.5833 68 $ -2.6637 22.6445 47.0152 -Andale_Mono.ttf 2 h 23.0431 40.5833 69 € -0.5440 30.5474 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 70 / -0.3712 24.4014 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 71 C -0.4534 26.7112 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 72 * 0.1594 20.1184 22.4376 -Andale_Mono.ttf 2 h 23.0431 40.5833 73 ” -0.0946 17.6989 13.2460 -Andale_Mono.ttf 2 h 23.0431 40.5833 74 ? -0.4153 20.5652 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 75 { -0.0030 15.8848 50.4376 -Andale_Mono.ttf 2 h 23.0431 40.5833 76 } -0.1833 15.8848 50.4376 -Andale_Mono.ttf 2 h 23.0431 40.5833 77 , 33.5989 7.2279 13.2460 -Andale_Mono.ttf 2 h 23.0431 40.5833 78 I -0.0973 17.9971 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 79 ° -0.1751 15.7261 15.7261 -Andale_Mono.ttf 2 h 23.0431 40.5833 80 K -0.0492 28.2377 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 81 H -0.0063 23.0431 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 82 q 9.8226 24.9156 42.2069 -Andale_Mono.ttf 2 h 23.0431 40.5833 83 & -0.2069 32.6598 40.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 84 ’ -0.1680 7.2279 13.2460 -Andale_Mono.ttf 2 h 23.0431 40.5833 85 [ 0.1355 11.2250 47.8696 -Andale_Mono.ttf 2 h 23.0431 40.5833 86 - 22.2162 16.9359 4.1457 -Andale_Mono.ttf 2 h 23.0431 40.5833 87 Y -0.0508 29.8264 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 88 Q -0.1948 28.6167 47.7692 -Andale_Mono.ttf 2 h 23.0431 40.5833 89 " 0.2617 14.9239 15.2098 -Andale_Mono.ttf 2 h 23.0431 40.5833 90 ! -0.1902 7.2279 40.7902 -Andale_Mono.ttf 2 h 23.0431 40.5833 91 x 10.0807 26.2739 30.4195 -Andale_Mono.ttf 2 h 23.0431 40.5833 92 ) -0.1379 15.2098 49.6141 -Andale_Mono.ttf 2 h 23.0431 40.5833 93 = 12.8155 27.1098 15.2098 -Andale_Mono.ttf 2 h 23.0431 40.5833 94 + 6.2754 26.9971 26.9971 -Andale_Mono.ttf 2 h 23.0431 40.5833 95 X -0.0260 31.0946 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 96 » 9.9820 25.2250 29.2098 -Andale_Mono.ttf 2 h 23.0431 40.5833 97 ' -0.1839 4.4529 15.2098 -Andale_Mono.ttf 2 h 23.0431 40.5833 98 ¢ 4.8288 23.6474 41.2224 -Andale_Mono.ttf 2 h 23.0431 40.5833 99 Z -0.1705 24.3684 40.5833 -Andale_Mono.ttf 2 h 23.0431 40.5833 100 > 5.6402 21.2279 29.2098 -Andale_Mono.ttf 2 h 23.0431 40.5833 101 ® -0.2488 35.0793 34.5652 -Andale_Mono.ttf 2 h 23.0431 40.5833 102 © -0.1115 35.0793 34.5652 -Andale_Mono.ttf 2 h 23.0431 40.5833 103 ] -0.0747 11.2250 47.8696 -Andale_Mono.ttf 2 h 23.0431 40.5833 104 é -1.2950 25.2250 42.0460 -Andale_Mono.ttf 2 h 23.0431 40.5833 105 z 10.1437 23.1917 30.4195 -Andale_Mono.ttf 2 h 23.0431 40.5833 106 _ 49.1973 35.0793 3.8362 -Andale_Mono.ttf 2 h 23.0431 40.5833 107 ¥ -0.1569 29.8264 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 1 t -8.0421 22.6445 38.7569 -Andale_Mono.ttf 3 a 24.2529 30.8333 2 h -10.1163 23.0431 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 3 a -0.1199 24.2529 30.8333 -Andale_Mono.ttf 3 a 24.2529 30.8333 4 n -0.3178 23.0431 30.6264 -Andale_Mono.ttf 3 a 24.2529 30.8333 5 P -9.9498 22.8055 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 6 o -0.2516 26.7880 30.8333 -Andale_Mono.ttf 3 a 24.2529 30.8333 7 e 0.3534 25.2250 30.8333 -Andale_Mono.ttf 3 a 24.2529 30.8333 8 : -0.1249 7.2279 30.8333 -Andale_Mono.ttf 3 a 24.2529 30.8333 9 r 0.0115 20.4043 30.6264 -Andale_Mono.ttf 3 a 24.2529 30.8333 10 l -9.7680 20.4167 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 11 i -10.2626 13.3043 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 12 1 -10.3971 21.0793 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 13 | -9.9935 4.1457 51.1917 -Andale_Mono.ttf 3 a 24.2529 30.8333 14 N -9.6749 24.3684 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 15 f -10.2960 22.7449 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 16 g 0.1669 26.2862 42.2069 -Andale_Mono.ttf 3 a 24.2529 30.8333 17 d -9.8377 24.9156 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 18 W -9.9224 32.6598 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 19 s -0.2496 22.4960 30.8333 -Andale_Mono.ttf 3 a 24.2529 30.8333 20 c 0.2703 24.2529 30.8333 -Andale_Mono.ttf 3 a 24.2529 30.8333 21 u 0.6355 23.0431 30.6264 -Andale_Mono.ttf 3 a 24.2529 30.8333 22 3 -10.1964 22.4376 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 23 ~ 11.2213 31.2431 8.4376 -Andale_Mono.ttf 3 a 24.2529 30.8333 24 # -9.9860 29.7261 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 25 O -10.2238 27.4069 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 26 ` -11.1987 12.2739 8.6445 -Andale_Mono.ttf 3 a 24.2529 30.8333 27 @ -10.0942 29.8848 45.6293 -Andale_Mono.ttf 3 a 24.2529 30.8333 28 F -10.3710 21.8334 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 29 S -10.1350 22.6445 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 30 p 0.0851 24.9156 42.2069 -Andale_Mono.ttf 3 a 24.2529 30.8333 31 “ -10.1655 17.6989 13.2460 -Andale_Mono.ttf 3 a 24.2529 30.8333 32 % -10.0039 32.6598 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 33 £ -10.1105 26.7902 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 34 . 24.0730 7.2279 7.2279 -Andale_Mono.ttf 3 a 24.2529 30.8333 35 2 -10.5511 21.9695 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 36 5 -9.9171 22.1304 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 37 m -0.1293 27.6138 30.6264 -Andale_Mono.ttf 3 a 24.2529 30.8333 38 V -10.2404 32.2460 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 39 6 -9.9862 25.4319 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 40 w 0.1103 29.5170 30.4195 -Andale_Mono.ttf 3 a 24.2529 30.8333 41 T -9.9467 29.4710 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 42 M -9.8458 25.2250 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 43 G -10.0828 26.5833 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 44 b -9.7846 24.9156 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 45 9 -9.9323 25.2250 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 46 ; 0.0814 7.2279 36.8514 -Andale_Mono.ttf 3 a 24.2529 30.8333 47 D -9.7713 25.2250 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 48 L -9.9569 21.8334 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 49 y 0.1385 26.6417 42.0000 -Andale_Mono.ttf 3 a 24.2529 30.8333 50 ‘ -10.1979 7.2279 13.2460 -Andale_Mono.ttf 3 a 24.2529 30.8333 51 \ -10.0712 24.4014 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 52 R -9.7597 27.3351 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 53 < -4.5383 21.2279 29.2098 -Andale_Mono.ttf 3 a 24.2529 30.8333 54 4 -10.1822 27.4836 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 55 8 -10.0715 25.7598 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 56 0 -10.2237 26.7880 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 57 A -9.6777 32.2460 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 58 E -10.3150 21.0793 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 59 B -10.0471 25.0765 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 60 v 0.3733 26.4348 30.4195 -Andale_Mono.ttf 3 a 24.2529 30.8333 61 k -10.0396 26.1253 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 62 J -10.0724 19.6627 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 63 U -10.0289 23.0431 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 64 j -10.1983 15.7239 52.3707 -Andale_Mono.ttf 3 a 24.2529 30.8333 65 ( -10.0277 15.2098 49.6141 -Andale_Mono.ttf 3 a 24.2529 30.8333 66 7 -10.2965 23.7080 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 67 § -10.3065 23.8543 52.5776 -Andale_Mono.ttf 3 a 24.2529 30.8333 68 $ -12.8179 22.6445 47.0152 -Andale_Mono.ttf 3 a 24.2529 30.8333 69 € -10.2411 30.5474 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 70 / -10.2115 24.4014 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 71 C -9.8569 26.7112 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 72 * -9.9663 20.1184 22.4376 -Andale_Mono.ttf 3 a 24.2529 30.8333 73 ” -10.6000 17.6989 13.2460 -Andale_Mono.ttf 3 a 24.2529 30.8333 74 ? -10.4036 20.5652 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 75 { -10.1274 15.8848 50.4376 -Andale_Mono.ttf 3 a 24.2529 30.8333 76 } -9.8333 15.8848 50.4376 -Andale_Mono.ttf 3 a 24.2529 30.8333 77 , 23.8608 7.2279 13.2460 -Andale_Mono.ttf 3 a 24.2529 30.8333 78 I -9.9755 17.9971 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 79 ° -10.1664 15.7261 15.7261 -Andale_Mono.ttf 3 a 24.2529 30.8333 80 K -10.3994 28.2377 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 81 H -9.9707 23.0431 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 82 q -0.2094 24.9156 42.2069 -Andale_Mono.ttf 3 a 24.2529 30.8333 83 & -10.2150 32.6598 40.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 84 ’ -9.9130 7.2279 13.2460 -Andale_Mono.ttf 3 a 24.2529 30.8333 85 [ -10.2958 11.2250 47.8696 -Andale_Mono.ttf 3 a 24.2529 30.8333 86 - 12.3126 16.9359 4.1457 -Andale_Mono.ttf 3 a 24.2529 30.8333 87 Y -10.1322 29.8264 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 88 Q -10.3651 28.6167 47.7692 -Andale_Mono.ttf 3 a 24.2529 30.8333 89 " -9.9457 14.9239 15.2098 -Andale_Mono.ttf 3 a 24.2529 30.8333 90 ! -9.9241 7.2279 40.7902 -Andale_Mono.ttf 3 a 24.2529 30.8333 91 x 0.1103 26.2739 30.4195 -Andale_Mono.ttf 3 a 24.2529 30.8333 92 ) -10.6220 15.2098 49.6141 -Andale_Mono.ttf 3 a 24.2529 30.8333 93 = 2.5353 27.1098 15.2098 -Andale_Mono.ttf 3 a 24.2529 30.8333 94 + -3.3711 26.9971 26.9971 -Andale_Mono.ttf 3 a 24.2529 30.8333 95 X -10.0042 31.0946 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 96 » 0.0420 25.2250 29.2098 -Andale_Mono.ttf 3 a 24.2529 30.8333 97 ' -10.2680 4.4529 15.2098 -Andale_Mono.ttf 3 a 24.2529 30.8333 98 ¢ -4.9386 23.6474 41.2224 -Andale_Mono.ttf 3 a 24.2529 30.8333 99 Z -9.8858 24.3684 40.5833 -Andale_Mono.ttf 3 a 24.2529 30.8333 100 > -4.5554 21.2279 29.2098 -Andale_Mono.ttf 3 a 24.2529 30.8333 101 ® -10.4199 35.0793 34.5652 -Andale_Mono.ttf 3 a 24.2529 30.8333 102 © -10.2465 35.0793 34.5652 -Andale_Mono.ttf 3 a 24.2529 30.8333 103 ] -9.7534 11.2250 47.8696 -Andale_Mono.ttf 3 a 24.2529 30.8333 104 é -11.0126 25.2250 42.0460 -Andale_Mono.ttf 3 a 24.2529 30.8333 105 z 0.0029 23.1917 30.4195 -Andale_Mono.ttf 3 a 24.2529 30.8333 106 _ 39.6578 35.0793 3.8362 -Andale_Mono.ttf 3 a 24.2529 30.8333 107 ¥ -9.7037 29.8264 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 1 t -7.7075 22.6445 38.7569 -Andale_Mono.ttf 4 n 23.0431 30.6264 2 h -10.1306 23.0431 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 3 a 0.2559 24.2529 30.8333 -Andale_Mono.ttf 4 n 23.0431 30.6264 4 n -0.0584 23.0431 30.6264 -Andale_Mono.ttf 4 n 23.0431 30.6264 5 P -9.8017 22.8055 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 6 o -0.1310 26.7880 30.8333 -Andale_Mono.ttf 4 n 23.0431 30.6264 7 e 0.3073 25.2250 30.8333 -Andale_Mono.ttf 4 n 23.0431 30.6264 8 : -0.1848 7.2279 30.8333 -Andale_Mono.ttf 4 n 23.0431 30.6264 9 r -0.0922 20.4043 30.6264 -Andale_Mono.ttf 4 n 23.0431 30.6264 10 l -9.7016 20.4167 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 11 i -10.1946 13.3043 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 12 1 -10.4574 21.0793 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 13 | -10.0737 4.1457 51.1917 -Andale_Mono.ttf 4 n 23.0431 30.6264 14 N -9.7645 24.3684 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 15 f -10.0646 22.7449 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 16 g -0.1611 26.2862 42.2069 -Andale_Mono.ttf 4 n 23.0431 30.6264 17 d -9.9525 24.9156 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 18 W -10.2611 32.6598 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 19 s 0.3798 22.4960 30.8333 -Andale_Mono.ttf 4 n 23.0431 30.6264 20 c -0.0939 24.2529 30.8333 -Andale_Mono.ttf 4 n 23.0431 30.6264 21 u 0.1894 23.0431 30.6264 -Andale_Mono.ttf 4 n 23.0431 30.6264 22 3 -10.0716 22.4376 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 23 ~ 10.9471 31.2431 8.4376 -Andale_Mono.ttf 4 n 23.0431 30.6264 24 # -10.1228 29.7261 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 25 O -10.2559 27.4069 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 26 ` -11.2592 12.2739 8.6445 -Andale_Mono.ttf 4 n 23.0431 30.6264 27 @ -10.1192 29.8848 45.6293 -Andale_Mono.ttf 4 n 23.0431 30.6264 28 F -10.0715 21.8334 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 29 S -10.2191 22.6445 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 30 p 0.1822 24.9156 42.2069 -Andale_Mono.ttf 4 n 23.0431 30.6264 31 “ -10.2274 17.6989 13.2460 -Andale_Mono.ttf 4 n 23.0431 30.6264 32 % -9.9540 32.6598 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 33 £ -10.2715 26.7902 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 34 . 23.2833 7.2279 7.2279 -Andale_Mono.ttf 4 n 23.0431 30.6264 35 2 -10.0402 21.9695 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 36 5 -9.6768 22.1304 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 37 m 0.3450 27.6138 30.6264 -Andale_Mono.ttf 4 n 23.0431 30.6264 38 V -10.1647 32.2460 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 39 6 -10.3333 25.4319 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 40 w 0.3014 29.5170 30.4195 -Andale_Mono.ttf 4 n 23.0431 30.6264 41 T -9.8615 29.4710 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 42 M -10.0236 25.2250 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 43 G -10.3608 26.5833 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 44 b -9.7630 24.9156 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 45 9 -10.2115 25.2250 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 46 ; -0.0985 7.2279 36.8514 -Andale_Mono.ttf 4 n 23.0431 30.6264 47 D -9.7764 25.2250 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 48 L -9.7111 21.8334 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 49 y 0.2508 26.6417 42.0000 -Andale_Mono.ttf 4 n 23.0431 30.6264 50 ‘ -10.2868 7.2279 13.2460 -Andale_Mono.ttf 4 n 23.0431 30.6264 51 \ -10.0849 24.4014 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 52 R -9.8379 27.3351 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 53 < -4.6718 21.2279 29.2098 -Andale_Mono.ttf 4 n 23.0431 30.6264 54 4 -10.0862 27.4836 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 55 8 -9.8437 25.7598 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 56 0 -10.0546 26.7880 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 57 A -9.6571 32.2460 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 58 E -9.8751 21.0793 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 59 B -9.9224 25.0765 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 60 v 0.5308 26.4348 30.4195 -Andale_Mono.ttf 4 n 23.0431 30.6264 61 k -10.0284 26.1253 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 62 J -9.8759 19.6627 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 63 U -9.7900 23.0431 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 64 j -10.6176 15.7239 52.3707 -Andale_Mono.ttf 4 n 23.0431 30.6264 65 ( -10.0885 15.2098 49.6141 -Andale_Mono.ttf 4 n 23.0431 30.6264 66 7 -9.9515 23.7080 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 67 § -10.2722 23.8543 52.5776 -Andale_Mono.ttf 4 n 23.0431 30.6264 68 $ -12.9250 22.6445 47.0152 -Andale_Mono.ttf 4 n 23.0431 30.6264 69 € -10.0201 30.5474 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 70 / -10.4764 24.4014 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 71 C -10.3508 26.7112 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 72 * -9.8656 20.1184 22.4376 -Andale_Mono.ttf 4 n 23.0431 30.6264 73 ” -10.1464 17.6989 13.2460 -Andale_Mono.ttf 4 n 23.0431 30.6264 74 ? -10.0228 20.5652 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 75 { -10.2255 15.8848 50.4376 -Andale_Mono.ttf 4 n 23.0431 30.6264 76 } -9.7295 15.8848 50.4376 -Andale_Mono.ttf 4 n 23.0431 30.6264 77 , 23.6256 7.2279 13.2460 -Andale_Mono.ttf 4 n 23.0431 30.6264 78 I -9.8101 17.9971 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 79 ° -10.1525 15.7261 15.7261 -Andale_Mono.ttf 4 n 23.0431 30.6264 80 K -9.8741 28.2377 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 81 H -9.7207 23.0431 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 82 q -0.0609 24.9156 42.2069 -Andale_Mono.ttf 4 n 23.0431 30.6264 83 & -10.2295 32.6598 40.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 84 ’ -10.2762 7.2279 13.2460 -Andale_Mono.ttf 4 n 23.0431 30.6264 85 [ -9.6898 11.2250 47.8696 -Andale_Mono.ttf 4 n 23.0431 30.6264 86 - 12.4526 16.9359 4.1457 -Andale_Mono.ttf 4 n 23.0431 30.6264 87 Y -10.0379 29.8264 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 88 Q -10.2465 28.6167 47.7692 -Andale_Mono.ttf 4 n 23.0431 30.6264 89 " -9.9224 14.9239 15.2098 -Andale_Mono.ttf 4 n 23.0431 30.6264 90 ! -9.8521 7.2279 40.7902 -Andale_Mono.ttf 4 n 23.0431 30.6264 91 x 0.3057 26.2739 30.4195 -Andale_Mono.ttf 4 n 23.0431 30.6264 92 ) -10.1633 15.2098 49.6141 -Andale_Mono.ttf 4 n 23.0431 30.6264 93 = 2.4713 27.1098 15.2098 -Andale_Mono.ttf 4 n 23.0431 30.6264 94 + -3.4674 26.9971 26.9971 -Andale_Mono.ttf 4 n 23.0431 30.6264 95 X -9.7931 31.0946 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 96 » 0.0690 25.2250 29.2098 -Andale_Mono.ttf 4 n 23.0431 30.6264 97 ' -10.2705 4.4529 15.2098 -Andale_Mono.ttf 4 n 23.0431 30.6264 98 ¢ -5.1601 23.6474 41.2224 -Andale_Mono.ttf 4 n 23.0431 30.6264 99 Z -9.8785 24.3684 40.5833 -Andale_Mono.ttf 4 n 23.0431 30.6264 100 > -4.5201 21.2279 29.2098 -Andale_Mono.ttf 4 n 23.0431 30.6264 101 ® -10.1894 35.0793 34.5652 -Andale_Mono.ttf 4 n 23.0431 30.6264 102 © -9.9929 35.0793 34.5652 -Andale_Mono.ttf 4 n 23.0431 30.6264 103 ] -9.8243 11.2250 47.8696 -Andale_Mono.ttf 4 n 23.0431 30.6264 104 é -11.2672 25.2250 42.0460 -Andale_Mono.ttf 4 n 23.0431 30.6264 105 z 0.4060 23.1917 30.4195 -Andale_Mono.ttf 4 n 23.0431 30.6264 106 _ 39.5090 35.0793 3.8362 -Andale_Mono.ttf 4 n 23.0431 30.6264 107 ¥ -9.9624 29.8264 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 1 t 1.7667 22.6445 38.7569 -Andale_Mono.ttf 5 P 22.8055 40.5833 2 h -0.0164 23.0431 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 3 a 9.6701 24.2529 30.8333 -Andale_Mono.ttf 5 P 22.8055 40.5833 4 n 10.1126 23.0431 30.6264 -Andale_Mono.ttf 5 P 22.8055 40.5833 5 P -0.3149 22.8055 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 6 o 9.6955 26.7880 30.8333 -Andale_Mono.ttf 5 P 22.8055 40.5833 7 e 9.7820 25.2250 30.8333 -Andale_Mono.ttf 5 P 22.8055 40.5833 8 : 9.9661 7.2279 30.8333 -Andale_Mono.ttf 5 P 22.8055 40.5833 9 r 9.9225 20.4043 30.6264 -Andale_Mono.ttf 5 P 22.8055 40.5833 10 l 0.1431 20.4167 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 11 i -0.5332 13.3043 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 12 1 -0.3013 21.0793 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 13 | 0.1789 4.1457 51.1917 -Andale_Mono.ttf 5 P 22.8055 40.5833 14 N -0.1839 24.3684 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 15 f 0.1655 22.7449 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 16 g 9.8950 26.2862 42.2069 -Andale_Mono.ttf 5 P 22.8055 40.5833 17 d 0.0475 24.9156 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 18 W -0.1334 32.6598 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 19 s 9.9940 22.4960 30.8333 -Andale_Mono.ttf 5 P 22.8055 40.5833 20 c 10.1434 24.2529 30.8333 -Andale_Mono.ttf 5 P 22.8055 40.5833 21 u 10.3942 23.0431 30.6264 -Andale_Mono.ttf 5 P 22.8055 40.5833 22 3 -0.0820 22.4376 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 23 ~ 21.1249 31.2431 8.4376 -Andale_Mono.ttf 5 P 22.8055 40.5833 24 # 0.3364 29.7261 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 25 O -0.1768 27.4069 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 26 ` -1.1741 12.2739 8.6445 -Andale_Mono.ttf 5 P 22.8055 40.5833 27 @ 0.1738 29.8848 45.6293 -Andale_Mono.ttf 5 P 22.8055 40.5833 28 F -0.0129 21.8334 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 29 S -0.2333 22.6445 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 30 p 9.8768 24.9156 42.2069 -Andale_Mono.ttf 5 P 22.8055 40.5833 31 “ -0.3338 17.6989 13.2460 -Andale_Mono.ttf 5 P 22.8055 40.5833 32 % -0.1724 32.6598 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 33 £ -0.1747 26.7902 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 34 . 33.6844 7.2279 7.2279 -Andale_Mono.ttf 5 P 22.8055 40.5833 35 2 -0.1304 21.9695 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 36 5 -0.1154 22.1304 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 37 m 9.9456 27.6138 30.6264 -Andale_Mono.ttf 5 P 22.8055 40.5833 38 V 0.1012 32.2460 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 39 6 -0.3218 25.4319 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 40 w 10.4291 29.5170 30.4195 -Andale_Mono.ttf 5 P 22.8055 40.5833 41 T 0.2326 29.4710 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 42 M 0.0483 25.2250 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 43 G -0.1975 26.5833 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 44 b -0.1513 24.9156 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 45 9 -0.0839 25.2250 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 46 ; 9.9105 7.2279 36.8514 -Andale_Mono.ttf 5 P 22.8055 40.5833 47 D -0.0764 25.2250 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 48 L 0.2913 21.8334 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 49 y 10.3879 26.6417 42.0000 -Andale_Mono.ttf 5 P 22.8055 40.5833 50 ‘ -0.3345 7.2279 13.2460 -Andale_Mono.ttf 5 P 22.8055 40.5833 51 \ -0.1724 24.4014 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 52 R -0.2845 27.3351 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 53 < 5.3420 21.2279 29.2098 -Andale_Mono.ttf 5 P 22.8055 40.5833 54 4 0.0308 27.4836 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 55 8 -0.2090 25.7598 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 56 0 0.0446 26.7880 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 57 A -0.0571 32.2460 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 58 E 0.1341 21.0793 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 59 B 0.2165 25.0765 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 60 v 10.2559 26.4348 30.4195 -Andale_Mono.ttf 5 P 22.8055 40.5833 61 k 0.2429 26.1253 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 62 J -0.0966 19.6627 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 63 U 0.0885 23.0431 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 64 j -0.1590 15.7239 52.3707 -Andale_Mono.ttf 5 P 22.8055 40.5833 65 ( -0.0659 15.2098 49.6141 -Andale_Mono.ttf 5 P 22.8055 40.5833 66 7 -0.0500 23.7080 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 67 § -0.4611 23.8543 52.5776 -Andale_Mono.ttf 5 P 22.8055 40.5833 68 $ -2.8395 22.6445 47.0152 -Andale_Mono.ttf 5 P 22.8055 40.5833 69 € -0.4883 30.5474 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 70 / -0.1312 24.4014 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 71 C -0.4350 26.7112 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 72 * 0.0509 20.1184 22.4376 -Andale_Mono.ttf 5 P 22.8055 40.5833 73 ” -0.1259 17.6989 13.2460 -Andale_Mono.ttf 5 P 22.8055 40.5833 74 ? -0.0408 20.5652 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 75 { 0.1048 15.8848 50.4376 -Andale_Mono.ttf 5 P 22.8055 40.5833 76 } 0.1536 15.8848 50.4376 -Andale_Mono.ttf 5 P 22.8055 40.5833 77 , 33.3378 7.2279 13.2460 -Andale_Mono.ttf 5 P 22.8055 40.5833 78 I -0.1887 17.9971 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 79 ° -0.3473 15.7261 15.7261 -Andale_Mono.ttf 5 P 22.8055 40.5833 80 K -0.1123 28.2377 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 81 H 0.0483 23.0431 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 82 q 9.8603 24.9156 42.2069 -Andale_Mono.ttf 5 P 22.8055 40.5833 83 & -0.1268 32.6598 40.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 84 ’ -0.4131 7.2279 13.2460 -Andale_Mono.ttf 5 P 22.8055 40.5833 85 [ -0.0979 11.2250 47.8696 -Andale_Mono.ttf 5 P 22.8055 40.5833 86 - 22.2829 16.9359 4.1457 -Andale_Mono.ttf 5 P 22.8055 40.5833 87 Y 0.0348 29.8264 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 88 Q -0.1491 28.6167 47.7692 -Andale_Mono.ttf 5 P 22.8055 40.5833 89 " -0.4356 14.9239 15.2098 -Andale_Mono.ttf 5 P 22.8055 40.5833 90 ! 0.0018 7.2279 40.7902 -Andale_Mono.ttf 5 P 22.8055 40.5833 91 x 10.1682 26.2739 30.4195 -Andale_Mono.ttf 5 P 22.8055 40.5833 92 ) 0.0046 15.2098 49.6141 -Andale_Mono.ttf 5 P 22.8055 40.5833 93 = 12.7046 27.1098 15.2098 -Andale_Mono.ttf 5 P 22.8055 40.5833 94 + 6.5183 26.9971 26.9971 -Andale_Mono.ttf 5 P 22.8055 40.5833 95 X -0.0068 31.0946 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 96 » 9.7103 25.2250 29.2098 -Andale_Mono.ttf 5 P 22.8055 40.5833 97 ' -0.0527 4.4529 15.2098 -Andale_Mono.ttf 5 P 22.8055 40.5833 98 ¢ 4.7624 23.6474 41.2224 -Andale_Mono.ttf 5 P 22.8055 40.5833 99 Z -0.2264 24.3684 40.5833 -Andale_Mono.ttf 5 P 22.8055 40.5833 100 > 5.1764 21.2279 29.2098 -Andale_Mono.ttf 5 P 22.8055 40.5833 101 ® -0.2233 35.0793 34.5652 -Andale_Mono.ttf 5 P 22.8055 40.5833 102 © -0.0498 35.0793 34.5652 -Andale_Mono.ttf 5 P 22.8055 40.5833 103 ] -0.0264 11.2250 47.8696 -Andale_Mono.ttf 5 P 22.8055 40.5833 104 é -1.0923 25.2250 42.0460 -Andale_Mono.ttf 5 P 22.8055 40.5833 105 z 10.0910 23.1917 30.4195 -Andale_Mono.ttf 5 P 22.8055 40.5833 106 _ 49.9163 35.0793 3.8362 -Andale_Mono.ttf 5 P 22.8055 40.5833 107 ¥ 0.0073 29.8264 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 1 t -7.9674 22.6445 38.7569 -Andale_Mono.ttf 6 o 26.7880 30.8333 2 h -10.0871 23.0431 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 3 a 0.0111 24.2529 30.8333 -Andale_Mono.ttf 6 o 26.7880 30.8333 4 n 0.0618 23.0431 30.6264 -Andale_Mono.ttf 6 o 26.7880 30.8333 5 P -10.0633 22.8055 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 6 o -0.0350 26.7880 30.8333 -Andale_Mono.ttf 6 o 26.7880 30.8333 7 e 0.0327 25.2250 30.8333 -Andale_Mono.ttf 6 o 26.7880 30.8333 8 : 0.3557 7.2279 30.8333 -Andale_Mono.ttf 6 o 26.7880 30.8333 9 r -0.2728 20.4043 30.6264 -Andale_Mono.ttf 6 o 26.7880 30.8333 10 l -9.8406 20.4167 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 11 i -9.9914 13.3043 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 12 1 -10.1526 21.0793 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 13 | -10.1529 4.1457 51.1917 -Andale_Mono.ttf 6 o 26.7880 30.8333 14 N -9.9080 24.3684 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 15 f -9.8632 22.7449 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 16 g -0.2975 26.2862 42.2069 -Andale_Mono.ttf 6 o 26.7880 30.8333 17 d -9.7812 24.9156 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 18 W -9.9378 32.6598 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 19 s -0.2077 22.4960 30.8333 -Andale_Mono.ttf 6 o 26.7880 30.8333 20 c -0.0483 24.2529 30.8333 -Andale_Mono.ttf 6 o 26.7880 30.8333 21 u 0.3457 23.0431 30.6264 -Andale_Mono.ttf 6 o 26.7880 30.8333 22 3 -9.8851 22.4376 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 23 ~ 10.9534 31.2431 8.4376 -Andale_Mono.ttf 6 o 26.7880 30.8333 24 # -9.9019 29.7261 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 25 O -10.0513 27.4069 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 26 ` -11.2709 12.2739 8.6445 -Andale_Mono.ttf 6 o 26.7880 30.8333 27 @ -10.1584 29.8848 45.6293 -Andale_Mono.ttf 6 o 26.7880 30.8333 28 F -9.8738 21.8334 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 29 S -10.4630 22.6445 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 30 p 0.2661 24.9156 42.2069 -Andale_Mono.ttf 6 o 26.7880 30.8333 31 “ -10.4054 17.6989 13.2460 -Andale_Mono.ttf 6 o 26.7880 30.8333 32 % -10.0260 32.6598 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 33 £ -10.2460 26.7902 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 34 . 23.7840 7.2279 7.2279 -Andale_Mono.ttf 6 o 26.7880 30.8333 35 2 -10.0301 21.9695 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 36 5 -9.7925 22.1304 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 37 m -0.1669 27.6138 30.6264 -Andale_Mono.ttf 6 o 26.7880 30.8333 38 V -10.2048 32.2460 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 39 6 -10.2379 25.4319 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 40 w 0.1996 29.5170 30.4195 -Andale_Mono.ttf 6 o 26.7880 30.8333 41 T -9.9626 29.4710 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 42 M -9.8202 25.2250 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 43 G -10.1257 26.5833 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 44 b -9.9256 24.9156 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 45 9 -10.2417 25.2250 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 46 ; 0.0040 7.2279 36.8514 -Andale_Mono.ttf 6 o 26.7880 30.8333 47 D -9.8722 25.2250 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 48 L -10.0370 21.8334 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 49 y 0.1021 26.6417 42.0000 -Andale_Mono.ttf 6 o 26.7880 30.8333 50 ‘ -10.1427 7.2279 13.2460 -Andale_Mono.ttf 6 o 26.7880 30.8333 51 \ -10.3056 24.4014 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 52 R -9.8597 27.3351 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 53 < -4.1500 21.2279 29.2098 -Andale_Mono.ttf 6 o 26.7880 30.8333 54 4 -10.2349 27.4836 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 55 8 -9.9253 25.7598 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 56 0 -10.0421 26.7880 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 57 A -9.9738 32.2460 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 58 E -9.9990 21.0793 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 59 B -9.5186 25.0765 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 60 v -0.1524 26.4348 30.4195 -Andale_Mono.ttf 6 o 26.7880 30.8333 61 k -9.5940 26.1253 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 62 J -9.8991 19.6627 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 63 U -10.0115 23.0431 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 64 j -10.2883 15.7239 52.3707 -Andale_Mono.ttf 6 o 26.7880 30.8333 65 ( -9.8782 15.2098 49.6141 -Andale_Mono.ttf 6 o 26.7880 30.8333 66 7 -10.1858 23.7080 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 67 § -10.4144 23.8543 52.5776 -Andale_Mono.ttf 6 o 26.7880 30.8333 68 $ -12.9585 22.6445 47.0152 -Andale_Mono.ttf 6 o 26.7880 30.8333 69 € -10.1902 30.5474 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 70 / -10.0699 24.4014 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 71 C -10.2381 26.7112 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 72 * -9.8496 20.1184 22.4376 -Andale_Mono.ttf 6 o 26.7880 30.8333 73 ” -9.9693 17.6989 13.2460 -Andale_Mono.ttf 6 o 26.7880 30.8333 74 ? -10.0716 20.5652 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 75 { -9.7913 15.8848 50.4376 -Andale_Mono.ttf 6 o 26.7880 30.8333 76 } -9.9639 15.8848 50.4376 -Andale_Mono.ttf 6 o 26.7880 30.8333 77 , 23.5834 7.2279 13.2460 -Andale_Mono.ttf 6 o 26.7880 30.8333 78 I -9.8778 17.9971 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 79 ° -10.2399 15.7261 15.7261 -Andale_Mono.ttf 6 o 26.7880 30.8333 80 K -9.8653 28.2377 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 81 H -9.7730 23.0431 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 82 q -0.0387 24.9156 42.2069 -Andale_Mono.ttf 6 o 26.7880 30.8333 83 & -10.1577 32.6598 40.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 84 ’ -10.0444 7.2279 13.2460 -Andale_Mono.ttf 6 o 26.7880 30.8333 85 [ -10.1439 11.2250 47.8696 -Andale_Mono.ttf 6 o 26.7880 30.8333 86 - 12.5688 16.9359 4.1457 -Andale_Mono.ttf 6 o 26.7880 30.8333 87 Y -9.5577 29.8264 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 88 Q -10.3070 28.6167 47.7692 -Andale_Mono.ttf 6 o 26.7880 30.8333 89 " -10.1402 14.9239 15.2098 -Andale_Mono.ttf 6 o 26.7880 30.8333 90 ! -9.8220 7.2279 40.7902 -Andale_Mono.ttf 6 o 26.7880 30.8333 91 x 0.1264 26.2739 30.4195 -Andale_Mono.ttf 6 o 26.7880 30.8333 92 ) -10.3948 15.2098 49.6141 -Andale_Mono.ttf 6 o 26.7880 30.8333 93 = 3.1102 27.1098 15.2098 -Andale_Mono.ttf 6 o 26.7880 30.8333 94 + -3.7354 26.9971 26.9971 -Andale_Mono.ttf 6 o 26.7880 30.8333 95 X -9.8521 31.0946 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 96 » 0.0167 25.2250 29.2098 -Andale_Mono.ttf 6 o 26.7880 30.8333 97 ' -9.9908 4.4529 15.2098 -Andale_Mono.ttf 6 o 26.7880 30.8333 98 ¢ -5.1675 23.6474 41.2224 -Andale_Mono.ttf 6 o 26.7880 30.8333 99 Z -10.0812 24.3684 40.5833 -Andale_Mono.ttf 6 o 26.7880 30.8333 100 > -4.4041 21.2279 29.2098 -Andale_Mono.ttf 6 o 26.7880 30.8333 101 ® -10.3709 35.0793 34.5652 -Andale_Mono.ttf 6 o 26.7880 30.8333 102 © -10.2630 35.0793 34.5652 -Andale_Mono.ttf 6 o 26.7880 30.8333 103 ] -9.9199 11.2250 47.8696 -Andale_Mono.ttf 6 o 26.7880 30.8333 104 é -11.3325 25.2250 42.0460 -Andale_Mono.ttf 6 o 26.7880 30.8333 105 z 0.0463 23.1917 30.4195 -Andale_Mono.ttf 6 o 26.7880 30.8333 106 _ 39.3770 35.0793 3.8362 -Andale_Mono.ttf 6 o 26.7880 30.8333 107 ¥ -9.7583 29.8264 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 1 t -8.0434 22.6445 38.7569 -Andale_Mono.ttf 7 e 25.2250 30.8333 2 h -9.7477 23.0431 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 3 a 0.2394 24.2529 30.8333 -Andale_Mono.ttf 7 e 25.2250 30.8333 4 n 0.0894 23.0431 30.6264 -Andale_Mono.ttf 7 e 25.2250 30.8333 5 P -10.0002 22.8055 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 6 o 0.0728 26.7880 30.8333 -Andale_Mono.ttf 7 e 25.2250 30.8333 7 e -0.0728 25.2250 30.8333 -Andale_Mono.ttf 7 e 25.2250 30.8333 8 : -0.4573 7.2279 30.8333 -Andale_Mono.ttf 7 e 25.2250 30.8333 9 r -0.2603 20.4043 30.6264 -Andale_Mono.ttf 7 e 25.2250 30.8333 10 l -9.9475 20.4167 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 11 i -10.0197 13.3043 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 12 1 -10.1023 21.0793 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 13 | -9.8302 4.1457 51.1917 -Andale_Mono.ttf 7 e 25.2250 30.8333 14 N -10.0765 24.3684 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 15 f -10.0668 22.7449 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 16 g 0.0048 26.2862 42.2069 -Andale_Mono.ttf 7 e 25.2250 30.8333 17 d -10.2234 24.9156 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 18 W -9.9079 32.6598 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 19 s -0.0891 22.4960 30.8333 -Andale_Mono.ttf 7 e 25.2250 30.8333 20 c -0.0371 24.2529 30.8333 -Andale_Mono.ttf 7 e 25.2250 30.8333 21 u 0.4585 23.0431 30.6264 -Andale_Mono.ttf 7 e 25.2250 30.8333 22 3 -9.6680 22.4376 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 23 ~ 11.1618 31.2431 8.4376 -Andale_Mono.ttf 7 e 25.2250 30.8333 24 # -10.0025 29.7261 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 25 O -10.3061 27.4069 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 26 ` -11.1768 12.2739 8.6445 -Andale_Mono.ttf 7 e 25.2250 30.8333 27 @ -10.0331 29.8848 45.6293 -Andale_Mono.ttf 7 e 25.2250 30.8333 28 F -9.9542 21.8334 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 29 S -10.3195 22.6445 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 30 p 0.1000 24.9156 42.2069 -Andale_Mono.ttf 7 e 25.2250 30.8333 31 “ -10.0182 17.6989 13.2460 -Andale_Mono.ttf 7 e 25.2250 30.8333 32 % -10.1812 32.6598 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 33 £ -9.8165 26.7902 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 34 . 23.4282 7.2279 7.2279 -Andale_Mono.ttf 7 e 25.2250 30.8333 35 2 -10.1664 21.9695 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 36 5 -9.9542 22.1304 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 37 m 0.0301 27.6138 30.6264 -Andale_Mono.ttf 7 e 25.2250 30.8333 38 V -9.8164 32.2460 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 39 6 -10.3885 25.4319 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 40 w 0.0136 29.5170 30.4195 -Andale_Mono.ttf 7 e 25.2250 30.8333 41 T -10.1076 29.4710 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 42 M -9.8236 25.2250 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 43 G -10.4833 26.5833 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 44 b -10.0835 24.9156 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 45 9 -10.2542 25.2250 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 46 ; 0.1815 7.2279 36.8514 -Andale_Mono.ttf 7 e 25.2250 30.8333 47 D -10.2201 25.2250 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 48 L -9.7906 21.8334 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 49 y 0.1761 26.6417 42.0000 -Andale_Mono.ttf 7 e 25.2250 30.8333 50 ‘ -10.2617 7.2279 13.2460 -Andale_Mono.ttf 7 e 25.2250 30.8333 51 \ -10.1983 24.4014 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 52 R -10.0856 27.3351 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 53 < -4.4529 21.2279 29.2098 -Andale_Mono.ttf 7 e 25.2250 30.8333 54 4 -9.9595 27.4836 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 55 8 -10.0215 25.7598 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 56 0 -10.2398 26.7880 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 57 A -10.1703 32.2460 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 58 E -10.0423 21.0793 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 59 B -9.9452 25.0765 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 60 v 0.2759 26.4348 30.4195 -Andale_Mono.ttf 7 e 25.2250 30.8333 61 k -9.9268 26.1253 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 62 J -10.0289 19.6627 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 63 U -10.0925 23.0431 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 64 j -9.9699 15.7239 52.3707 -Andale_Mono.ttf 7 e 25.2250 30.8333 65 ( -10.3208 15.2098 49.6141 -Andale_Mono.ttf 7 e 25.2250 30.8333 66 7 -10.0289 23.7080 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 67 § -10.0147 23.8543 52.5776 -Andale_Mono.ttf 7 e 25.2250 30.8333 68 $ -12.7836 22.6445 47.0152 -Andale_Mono.ttf 7 e 25.2250 30.8333 69 € -10.1912 30.5474 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 70 / -10.2311 24.4014 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 71 C -10.2925 26.7112 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 72 * -9.7583 20.1184 22.4376 -Andale_Mono.ttf 7 e 25.2250 30.8333 73 ” -9.6948 17.6989 13.2460 -Andale_Mono.ttf 7 e 25.2250 30.8333 74 ? -10.2164 20.5652 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 75 { -9.8624 15.8848 50.4376 -Andale_Mono.ttf 7 e 25.2250 30.8333 76 } -9.9431 15.8848 50.4376 -Andale_Mono.ttf 7 e 25.2250 30.8333 77 , 23.6539 7.2279 13.2460 -Andale_Mono.ttf 7 e 25.2250 30.8333 78 I -10.0078 17.9971 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 79 ° -9.9159 15.7261 15.7261 -Andale_Mono.ttf 7 e 25.2250 30.8333 80 K -9.9241 28.2377 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 81 H -9.8080 23.0431 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 82 q 0.2441 24.9156 42.2069 -Andale_Mono.ttf 7 e 25.2250 30.8333 83 & -10.4592 32.6598 40.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 84 ’ -10.1550 7.2279 13.2460 -Andale_Mono.ttf 7 e 25.2250 30.8333 85 [ -10.1060 11.2250 47.8696 -Andale_Mono.ttf 7 e 25.2250 30.8333 86 - 12.3501 16.9359 4.1457 -Andale_Mono.ttf 7 e 25.2250 30.8333 87 Y -9.8552 29.8264 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 88 Q -10.2230 28.6167 47.7692 -Andale_Mono.ttf 7 e 25.2250 30.8333 89 " -10.0396 14.9239 15.2098 -Andale_Mono.ttf 7 e 25.2250 30.8333 90 ! -9.8916 7.2279 40.7902 -Andale_Mono.ttf 7 e 25.2250 30.8333 91 x 0.3045 26.2739 30.4195 -Andale_Mono.ttf 7 e 25.2250 30.8333 92 ) -10.0613 15.2098 49.6141 -Andale_Mono.ttf 7 e 25.2250 30.8333 93 = 2.5035 27.1098 15.2098 -Andale_Mono.ttf 7 e 25.2250 30.8333 94 + -3.5220 26.9971 26.9971 -Andale_Mono.ttf 7 e 25.2250 30.8333 95 X -9.8897 31.0946 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 96 » -0.1167 25.2250 29.2098 -Andale_Mono.ttf 7 e 25.2250 30.8333 97 ' -9.9578 4.4529 15.2098 -Andale_Mono.ttf 7 e 25.2250 30.8333 98 ¢ -5.1904 23.6474 41.2224 -Andale_Mono.ttf 7 e 25.2250 30.8333 99 Z -9.9301 24.3684 40.5833 -Andale_Mono.ttf 7 e 25.2250 30.8333 100 > -4.6626 21.2279 29.2098 -Andale_Mono.ttf 7 e 25.2250 30.8333 101 ® -10.0784 35.0793 34.5652 -Andale_Mono.ttf 7 e 25.2250 30.8333 102 © -10.1192 35.0793 34.5652 -Andale_Mono.ttf 7 e 25.2250 30.8333 103 ] -10.2222 11.2250 47.8696 -Andale_Mono.ttf 7 e 25.2250 30.8333 104 é -11.1023 25.2250 42.0460 -Andale_Mono.ttf 7 e 25.2250 30.8333 105 z -0.0856 23.1917 30.4195 -Andale_Mono.ttf 7 e 25.2250 30.8333 106 _ 39.8166 35.0793 3.8362 -Andale_Mono.ttf 7 e 25.2250 30.8333 107 ¥ -10.1069 29.8264 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 1 t -7.9638 22.6445 38.7569 -Andale_Mono.ttf 8 : 7.2279 30.8333 2 h -9.7243 23.0431 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 3 a -0.0301 24.2529 30.8333 -Andale_Mono.ttf 8 : 7.2279 30.8333 4 n -0.2264 23.0431 30.6264 -Andale_Mono.ttf 8 : 7.2279 30.8333 5 P -9.8749 22.8055 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 6 o -0.0636 26.7880 30.8333 -Andale_Mono.ttf 8 : 7.2279 30.8333 7 e -0.0017 25.2250 30.8333 -Andale_Mono.ttf 8 : 7.2279 30.8333 8 : 0.0801 7.2279 30.8333 -Andale_Mono.ttf 8 : 7.2279 30.8333 9 r 0.0416 20.4043 30.6264 -Andale_Mono.ttf 8 : 7.2279 30.8333 10 l -9.9337 20.4167 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 11 i -10.1682 13.3043 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 12 1 -9.9715 21.0793 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 13 | -9.9448 4.1457 51.1917 -Andale_Mono.ttf 8 : 7.2279 30.8333 14 N -9.6898 24.3684 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 15 f -9.9881 22.7449 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 16 g -0.0341 26.2862 42.2069 -Andale_Mono.ttf 8 : 7.2279 30.8333 17 d -10.0441 24.9156 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 18 W -10.0205 32.6598 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 19 s -0.2506 22.4960 30.8333 -Andale_Mono.ttf 8 : 7.2279 30.8333 20 c -0.1293 24.2529 30.8333 -Andale_Mono.ttf 8 : 7.2279 30.8333 21 u 0.3119 23.0431 30.6264 -Andale_Mono.ttf 8 : 7.2279 30.8333 22 3 -9.9460 22.4376 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 23 ~ 11.2289 31.2431 8.4376 -Andale_Mono.ttf 8 : 7.2279 30.8333 24 # -10.0843 29.7261 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 25 O -10.2411 27.4069 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 26 ` -11.4372 12.2739 8.6445 -Andale_Mono.ttf 8 : 7.2279 30.8333 27 @ -10.0107 29.8848 45.6293 -Andale_Mono.ttf 8 : 7.2279 30.8333 28 F -10.1255 21.8334 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 29 S -10.2559 22.6445 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 30 p -0.0741 24.9156 42.2069 -Andale_Mono.ttf 8 : 7.2279 30.8333 31 “ -10.1909 17.6989 13.2460 -Andale_Mono.ttf 8 : 7.2279 30.8333 32 % -10.3307 32.6598 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 33 £ -10.4827 26.7902 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 34 . 23.5961 7.2279 7.2279 -Andale_Mono.ttf 8 : 7.2279 30.8333 35 2 -10.0388 21.9695 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 36 5 -9.9649 22.1304 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 37 m -0.0201 27.6138 30.6264 -Andale_Mono.ttf 8 : 7.2279 30.8333 38 V -9.6262 32.2460 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 39 6 -10.1199 25.4319 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 40 w 0.3014 29.5170 30.4195 -Andale_Mono.ttf 8 : 7.2279 30.8333 41 T -9.8933 29.4710 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 42 M -9.8979 25.2250 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 43 G -9.9862 26.5833 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 44 b -9.7467 24.9156 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 45 9 -10.0350 25.2250 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 46 ; 0.2129 7.2279 36.8514 -Andale_Mono.ttf 8 : 7.2279 30.8333 47 D -9.8785 25.2250 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 48 L -10.0349 21.8334 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 49 y 0.3904 26.6417 42.0000 -Andale_Mono.ttf 8 : 7.2279 30.8333 50 ‘ -10.0559 7.2279 13.2460 -Andale_Mono.ttf 8 : 7.2279 30.8333 51 \ -10.2712 24.4014 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 52 R -10.1628 27.3351 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 53 < -4.4194 21.2279 29.2098 -Andale_Mono.ttf 8 : 7.2279 30.8333 54 4 -9.8318 27.4836 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 55 8 -10.3886 25.7598 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 56 0 -10.0144 26.7880 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 57 A -10.0115 32.2460 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 58 E -9.8630 21.0793 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 59 B -9.8907 25.0765 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 60 v -0.0475 26.4348 30.4195 -Andale_Mono.ttf 8 : 7.2279 30.8333 61 k -10.2061 26.1253 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 62 J -9.8276 19.6627 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 63 U -9.8492 23.0431 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 64 j -10.2623 15.7239 52.3707 -Andale_Mono.ttf 8 : 7.2279 30.8333 65 ( -10.1432 15.2098 49.6141 -Andale_Mono.ttf 8 : 7.2279 30.8333 66 7 -9.9060 23.7080 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 67 § -10.0659 23.8543 52.5776 -Andale_Mono.ttf 8 : 7.2279 30.8333 68 $ -12.7732 22.6445 47.0152 -Andale_Mono.ttf 8 : 7.2279 30.8333 69 € -10.3032 30.5474 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 70 / -10.0640 24.4014 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 71 C -9.9523 26.7112 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 72 * -9.7485 20.1184 22.4376 -Andale_Mono.ttf 8 : 7.2279 30.8333 73 ” -10.4316 17.6989 13.2460 -Andale_Mono.ttf 8 : 7.2279 30.8333 74 ? -10.3308 20.5652 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 75 { -9.9994 15.8848 50.4376 -Andale_Mono.ttf 8 : 7.2279 30.8333 76 } -9.8454 15.8848 50.4376 -Andale_Mono.ttf 8 : 7.2279 30.8333 77 , 23.6453 7.2279 13.2460 -Andale_Mono.ttf 8 : 7.2279 30.8333 78 I -9.9734 17.9971 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 79 ° -10.1628 15.7261 15.7261 -Andale_Mono.ttf 8 : 7.2279 30.8333 80 K -10.0316 28.2377 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 81 H -9.9914 23.0431 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 82 q 0.1736 24.9156 42.2069 -Andale_Mono.ttf 8 : 7.2279 30.8333 83 & -10.1172 32.6598 40.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 84 ’ -10.0345 7.2279 13.2460 -Andale_Mono.ttf 8 : 7.2279 30.8333 85 [ -9.9506 11.2250 47.8696 -Andale_Mono.ttf 8 : 7.2279 30.8333 86 - 12.3917 16.9359 4.1457 -Andale_Mono.ttf 8 : 7.2279 30.8333 87 Y -10.0316 29.8264 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 88 Q -10.1732 28.6167 47.7692 -Andale_Mono.ttf 8 : 7.2279 30.8333 89 " -9.9073 14.9239 15.2098 -Andale_Mono.ttf 8 : 7.2279 30.8333 90 ! -9.7982 7.2279 40.7902 -Andale_Mono.ttf 8 : 7.2279 30.8333 91 x 0.2180 26.2739 30.4195 -Andale_Mono.ttf 8 : 7.2279 30.8333 92 ) -10.3659 15.2098 49.6141 -Andale_Mono.ttf 8 : 7.2279 30.8333 93 = 2.4268 27.1098 15.2098 -Andale_Mono.ttf 8 : 7.2279 30.8333 94 + -3.4028 26.9971 26.9971 -Andale_Mono.ttf 8 : 7.2279 30.8333 95 X -9.9422 31.0946 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 96 » 0.0068 25.2250 29.2098 -Andale_Mono.ttf 8 : 7.2279 30.8333 97 ' -10.1180 4.4529 15.2098 -Andale_Mono.ttf 8 : 7.2279 30.8333 98 ¢ -5.2428 23.6474 41.2224 -Andale_Mono.ttf 8 : 7.2279 30.8333 99 Z -9.9086 24.3684 40.5833 -Andale_Mono.ttf 8 : 7.2279 30.8333 100 > -4.5853 21.2279 29.2098 -Andale_Mono.ttf 8 : 7.2279 30.8333 101 ® -10.1136 35.0793 34.5652 -Andale_Mono.ttf 8 : 7.2279 30.8333 102 © -10.2842 35.0793 34.5652 -Andale_Mono.ttf 8 : 7.2279 30.8333 103 ] -9.9287 11.2250 47.8696 -Andale_Mono.ttf 8 : 7.2279 30.8333 104 é -11.2009 25.2250 42.0460 -Andale_Mono.ttf 8 : 7.2279 30.8333 105 z 0.1259 23.1917 30.4195 -Andale_Mono.ttf 8 : 7.2279 30.8333 106 _ 39.7442 35.0793 3.8362 -Andale_Mono.ttf 8 : 7.2279 30.8333 107 ¥ -10.0460 29.8264 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 1 t -8.2033 22.6445 38.7569 -Andale_Mono.ttf 9 r 20.4043 30.6264 2 h -9.8883 23.0431 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 3 a 0.0222 24.2529 30.8333 -Andale_Mono.ttf 9 r 20.4043 30.6264 4 n 0.2653 23.0431 30.6264 -Andale_Mono.ttf 9 r 20.4043 30.6264 5 P -9.9399 22.8055 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 6 o 0.4233 26.7880 30.8333 -Andale_Mono.ttf 9 r 20.4043 30.6264 7 e 0.0782 25.2250 30.8333 -Andale_Mono.ttf 9 r 20.4043 30.6264 8 : -0.0138 7.2279 30.8333 -Andale_Mono.ttf 9 r 20.4043 30.6264 9 r -0.0793 20.4043 30.6264 -Andale_Mono.ttf 9 r 20.4043 30.6264 10 l -9.9134 20.4167 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 11 i -10.3758 13.3043 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 12 1 -10.1755 21.0793 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 13 | -10.1026 4.1457 51.1917 -Andale_Mono.ttf 9 r 20.4043 30.6264 14 N -9.8195 24.3684 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 15 f -9.7107 22.7449 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 16 g 0.1356 26.2862 42.2069 -Andale_Mono.ttf 9 r 20.4043 30.6264 17 d -9.8822 24.9156 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 18 W -9.9394 32.6598 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 19 s -0.0483 22.4960 30.8333 -Andale_Mono.ttf 9 r 20.4043 30.6264 20 c 0.2188 24.2529 30.8333 -Andale_Mono.ttf 9 r 20.4043 30.6264 21 u 0.2333 23.0431 30.6264 -Andale_Mono.ttf 9 r 20.4043 30.6264 22 3 -10.2931 22.4376 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 23 ~ 11.0557 31.2431 8.4376 -Andale_Mono.ttf 9 r 20.4043 30.6264 24 # -9.9722 29.7261 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 25 O -10.3685 27.4069 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 26 ` -11.5854 12.2739 8.6445 -Andale_Mono.ttf 9 r 20.4043 30.6264 27 @ -10.1255 29.8848 45.6293 -Andale_Mono.ttf 9 r 20.4043 30.6264 28 F -9.9224 21.8334 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 29 S -9.7745 22.6445 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 30 p -0.2098 24.9156 42.2069 -Andale_Mono.ttf 9 r 20.4043 30.6264 31 “ -9.7484 17.6989 13.2460 -Andale_Mono.ttf 9 r 20.4043 30.6264 32 % -10.4040 32.6598 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 33 £ -10.2442 26.7902 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 34 . 23.4541 7.2279 7.2279 -Andale_Mono.ttf 9 r 20.4043 30.6264 35 2 -10.2730 21.9695 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 36 5 -9.9981 22.1304 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 37 m -0.0784 27.6138 30.6264 -Andale_Mono.ttf 9 r 20.4043 30.6264 38 V -10.0115 32.2460 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 39 6 -10.2462 25.4319 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 40 w -0.0163 29.5170 30.4195 -Andale_Mono.ttf 9 r 20.4043 30.6264 41 T -10.1546 29.4710 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 42 M -9.9130 25.2250 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 43 G -9.9303 26.5833 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 44 b -10.1699 24.9156 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 45 9 -10.1946 25.2250 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 46 ; -0.0761 7.2279 36.8514 -Andale_Mono.ttf 9 r 20.4043 30.6264 47 D -9.7168 25.2250 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 48 L -10.1710 21.8334 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 49 y 0.1211 26.6417 42.0000 -Andale_Mono.ttf 9 r 20.4043 30.6264 50 ‘ -9.9671 7.2279 13.2460 -Andale_Mono.ttf 9 r 20.4043 30.6264 51 \ -10.2868 24.4014 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 52 R -9.8109 27.3351 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 53 < -4.6108 21.2279 29.2098 -Andale_Mono.ttf 9 r 20.4043 30.6264 54 4 -10.1082 27.4836 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 55 8 -10.2238 25.7598 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 56 0 -10.1820 26.7880 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 57 A -10.2272 32.2460 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 58 E -9.8440 21.0793 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 59 B -9.9964 25.0765 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 60 v 0.0861 26.4348 30.4195 -Andale_Mono.ttf 9 r 20.4043 30.6264 61 k -9.9193 26.1253 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 62 J -9.8810 19.6627 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 63 U -9.9801 23.0431 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 64 j -10.1638 15.7239 52.3707 -Andale_Mono.ttf 9 r 20.4043 30.6264 65 ( -10.1276 15.2098 49.6141 -Andale_Mono.ttf 9 r 20.4043 30.6264 66 7 -9.7354 23.7080 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 67 § -9.7559 23.8543 52.5776 -Andale_Mono.ttf 9 r 20.4043 30.6264 68 $ -12.9710 22.6445 47.0152 -Andale_Mono.ttf 9 r 20.4043 30.6264 69 € -10.1812 30.5474 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 70 / -9.9722 24.4014 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 71 C -10.4422 26.7112 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 72 * -10.1720 20.1184 22.4376 -Andale_Mono.ttf 9 r 20.4043 30.6264 73 ” -10.0224 17.6989 13.2460 -Andale_Mono.ttf 9 r 20.4043 30.6264 74 ? -10.2278 20.5652 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 75 { -9.5891 15.8848 50.4376 -Andale_Mono.ttf 9 r 20.4043 30.6264 76 } -9.9914 15.8848 50.4376 -Andale_Mono.ttf 9 r 20.4043 30.6264 77 , 23.6183 7.2279 13.2460 -Andale_Mono.ttf 9 r 20.4043 30.6264 78 I -9.7718 17.9971 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 79 ° -10.2013 15.7261 15.7261 -Andale_Mono.ttf 9 r 20.4043 30.6264 80 K -9.8053 28.2377 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 81 H -9.8276 23.0431 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 82 q 0.1172 24.9156 42.2069 -Andale_Mono.ttf 9 r 20.4043 30.6264 83 & -10.0716 32.6598 40.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 84 ’ -10.2448 7.2279 13.2460 -Andale_Mono.ttf 9 r 20.4043 30.6264 85 [ -10.0878 11.2250 47.8696 -Andale_Mono.ttf 9 r 20.4043 30.6264 86 - 12.3773 16.9359 4.1457 -Andale_Mono.ttf 9 r 20.4043 30.6264 87 Y -9.8841 29.8264 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 88 Q -10.1575 28.6167 47.7692 -Andale_Mono.ttf 9 r 20.4043 30.6264 89 " -10.1132 14.9239 15.2098 -Andale_Mono.ttf 9 r 20.4043 30.6264 90 ! -10.3534 7.2279 40.7902 -Andale_Mono.ttf 9 r 20.4043 30.6264 91 x 0.1215 26.2739 30.4195 -Andale_Mono.ttf 9 r 20.4043 30.6264 92 ) -9.7822 15.2098 49.6141 -Andale_Mono.ttf 9 r 20.4043 30.6264 93 = 2.2523 27.1098 15.2098 -Andale_Mono.ttf 9 r 20.4043 30.6264 94 + -3.3639 26.9971 26.9971 -Andale_Mono.ttf 9 r 20.4043 30.6264 95 X -10.1228 31.0946 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 96 » 0.4689 25.2250 29.2098 -Andale_Mono.ttf 9 r 20.4043 30.6264 97 ' -9.8875 4.4529 15.2098 -Andale_Mono.ttf 9 r 20.4043 30.6264 98 ¢ -5.1945 23.6474 41.2224 -Andale_Mono.ttf 9 r 20.4043 30.6264 99 Z -10.1525 24.3684 40.5833 -Andale_Mono.ttf 9 r 20.4043 30.6264 100 > -4.5387 21.2279 29.2098 -Andale_Mono.ttf 9 r 20.4043 30.6264 101 ® -9.9316 35.0793 34.5652 -Andale_Mono.ttf 9 r 20.4043 30.6264 102 © -10.0760 35.0793 34.5652 -Andale_Mono.ttf 9 r 20.4043 30.6264 103 ] -9.7698 11.2250 47.8696 -Andale_Mono.ttf 9 r 20.4043 30.6264 104 é -10.9540 25.2250 42.0460 -Andale_Mono.ttf 9 r 20.4043 30.6264 105 z 0.1598 23.1917 30.4195 -Andale_Mono.ttf 9 r 20.4043 30.6264 106 _ 39.4305 35.0793 3.8362 -Andale_Mono.ttf 9 r 20.4043 30.6264 107 ¥ -9.7900 29.8264 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 1 t 1.9412 22.6445 38.7569 -Andale_Mono.ttf 10 l 20.4167 40.5833 2 h 0.0595 23.0431 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 3 a 9.9130 24.2529 30.8333 -Andale_Mono.ttf 10 l 20.4167 40.5833 4 n 9.9200 23.0431 30.6264 -Andale_Mono.ttf 10 l 20.4167 40.5833 5 P -0.0301 22.8055 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 6 o 9.9218 26.7880 30.8333 -Andale_Mono.ttf 10 l 20.4167 40.5833 7 e 9.9039 25.2250 30.8333 -Andale_Mono.ttf 10 l 20.4167 40.5833 8 : 9.7015 7.2279 30.8333 -Andale_Mono.ttf 10 l 20.4167 40.5833 9 r 9.8011 20.4043 30.6264 -Andale_Mono.ttf 10 l 20.4167 40.5833 10 l 0.1284 20.4167 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 11 i -0.1343 13.3043 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 12 1 -0.4812 21.0793 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 13 | -0.2756 4.1457 51.1917 -Andale_Mono.ttf 10 l 20.4167 40.5833 14 N -0.0111 24.3684 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 15 f 0.0397 22.7449 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 16 g 10.1515 26.2862 42.2069 -Andale_Mono.ttf 10 l 20.4167 40.5833 17 d -0.1611 24.9156 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 18 W -0.0864 32.6598 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 19 s 10.1238 22.4960 30.8333 -Andale_Mono.ttf 10 l 20.4167 40.5833 20 c 10.0210 24.2529 30.8333 -Andale_Mono.ttf 10 l 20.4167 40.5833 21 u 10.2577 23.0431 30.6264 -Andale_Mono.ttf 10 l 20.4167 40.5833 22 3 -0.1384 22.4376 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 23 ~ 21.0377 31.2431 8.4376 -Andale_Mono.ttf 10 l 20.4167 40.5833 24 # 0.0017 29.7261 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 25 O -0.4707 27.4069 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 26 ` -1.4772 12.2739 8.6445 -Andale_Mono.ttf 10 l 20.4167 40.5833 27 @ -0.2856 29.8848 45.6293 -Andale_Mono.ttf 10 l 20.4167 40.5833 28 F 0.2780 21.8334 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 29 S -0.6052 22.6445 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 30 p 9.9716 24.9156 42.2069 -Andale_Mono.ttf 10 l 20.4167 40.5833 31 “ -0.0999 17.6989 13.2460 -Andale_Mono.ttf 10 l 20.4167 40.5833 32 % -0.2464 32.6598 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 33 £ 0.0335 26.7902 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 34 . 33.5235 7.2279 7.2279 -Andale_Mono.ttf 10 l 20.4167 40.5833 35 2 0.2444 21.9695 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 36 5 0.0301 22.1304 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 37 m 9.8759 27.6138 30.6264 -Andale_Mono.ttf 10 l 20.4167 40.5833 38 V -0.1083 32.2460 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 39 6 -0.3644 25.4319 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 40 w 9.9422 29.5170 30.4195 -Andale_Mono.ttf 10 l 20.4167 40.5833 41 T 0.1950 29.4710 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 42 M -0.1029 25.2250 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 43 G -0.2897 26.5833 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 44 b 0.2215 24.9156 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 45 9 -0.3998 25.2250 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 46 ; 9.8822 7.2279 36.8514 -Andale_Mono.ttf 10 l 20.4167 40.5833 47 D 0.1155 25.2250 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 48 L 0.2241 21.8334 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 49 y 10.0277 26.6417 42.0000 -Andale_Mono.ttf 10 l 20.4167 40.5833 50 ‘ -0.0228 7.2279 13.2460 -Andale_Mono.ttf 10 l 20.4167 40.5833 51 \ -0.2450 24.4014 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 52 R -0.1402 27.3351 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 53 < 5.6333 21.2279 29.2098 -Andale_Mono.ttf 10 l 20.4167 40.5833 54 4 0.0270 27.4836 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 55 8 -0.0343 25.7598 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 56 0 -0.5609 26.7880 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 57 A 0.0259 32.2460 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 58 E -0.2054 21.0793 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 59 B -0.0747 25.0765 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 60 v 10.2975 26.4348 30.4195 -Andale_Mono.ttf 10 l 20.4167 40.5833 61 k 0.1732 26.1253 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 62 J -0.1048 19.6627 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 63 U -0.0933 23.0431 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 64 j -0.3845 15.7239 52.3707 -Andale_Mono.ttf 10 l 20.4167 40.5833 65 ( -0.5071 15.2098 49.6141 -Andale_Mono.ttf 10 l 20.4167 40.5833 66 7 -0.1552 23.7080 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 67 § -0.4200 23.8543 52.5776 -Andale_Mono.ttf 10 l 20.4167 40.5833 68 $ -3.0150 22.6445 47.0152 -Andale_Mono.ttf 10 l 20.4167 40.5833 69 € -0.2874 30.5474 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 70 / -0.2069 24.4014 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 71 C -0.1657 26.7112 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 72 * 0.2510 20.1184 22.4376 -Andale_Mono.ttf 10 l 20.4167 40.5833 73 ” -0.3349 17.6989 13.2460 -Andale_Mono.ttf 10 l 20.4167 40.5833 74 ? -0.2337 20.5652 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 75 { -0.3512 15.8848 50.4376 -Andale_Mono.ttf 10 l 20.4167 40.5833 76 } 0.1745 15.8848 50.4376 -Andale_Mono.ttf 10 l 20.4167 40.5833 77 , 33.5302 7.2279 13.2460 -Andale_Mono.ttf 10 l 20.4167 40.5833 78 I -0.3794 17.9971 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 79 ° -0.1784 15.7261 15.7261 -Andale_Mono.ttf 10 l 20.4167 40.5833 80 K -0.0032 28.2377 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 81 H 0.0381 23.0431 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 82 q 9.9931 24.9156 42.2069 -Andale_Mono.ttf 10 l 20.4167 40.5833 83 & 0.0220 32.6598 40.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 84 ’ -0.1893 7.2279 13.2460 -Andale_Mono.ttf 10 l 20.4167 40.5833 85 [ 0.1965 11.2250 47.8696 -Andale_Mono.ttf 10 l 20.4167 40.5833 86 - 22.5129 16.9359 4.1457 -Andale_Mono.ttf 10 l 20.4167 40.5833 87 Y -0.0027 29.8264 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 88 Q -0.3429 28.6167 47.7692 -Andale_Mono.ttf 10 l 20.4167 40.5833 89 " -0.0854 14.9239 15.2098 -Andale_Mono.ttf 10 l 20.4167 40.5833 90 ! -0.1807 7.2279 40.7902 -Andale_Mono.ttf 10 l 20.4167 40.5833 91 x 10.3132 26.2739 30.4195 -Andale_Mono.ttf 10 l 20.4167 40.5833 92 ) 0.2531 15.2098 49.6141 -Andale_Mono.ttf 10 l 20.4167 40.5833 93 = 12.8393 27.1098 15.2098 -Andale_Mono.ttf 10 l 20.4167 40.5833 94 + 6.4338 26.9971 26.9971 -Andale_Mono.ttf 10 l 20.4167 40.5833 95 X -0.1993 31.0946 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 96 » 9.9680 25.2250 29.2098 -Andale_Mono.ttf 10 l 20.4167 40.5833 97 ' 0.1356 4.4529 15.2098 -Andale_Mono.ttf 10 l 20.4167 40.5833 98 ¢ 4.6562 23.6474 41.2224 -Andale_Mono.ttf 10 l 20.4167 40.5833 99 Z 0.0138 24.3684 40.5833 -Andale_Mono.ttf 10 l 20.4167 40.5833 100 > 5.3747 21.2279 29.2098 -Andale_Mono.ttf 10 l 20.4167 40.5833 101 ® 0.1377 35.0793 34.5652 -Andale_Mono.ttf 10 l 20.4167 40.5833 102 © -0.2301 35.0793 34.5652 -Andale_Mono.ttf 10 l 20.4167 40.5833 103 ] -0.2559 11.2250 47.8696 -Andale_Mono.ttf 10 l 20.4167 40.5833 104 é -1.2996 25.2250 42.0460 -Andale_Mono.ttf 10 l 20.4167 40.5833 105 z 10.0689 23.1917 30.4195 -Andale_Mono.ttf 10 l 20.4167 40.5833 106 _ 49.4985 35.0793 3.8362 -Andale_Mono.ttf 10 l 20.4167 40.5833 107 ¥ -0.1950 29.8264 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 1 t 2.1404 22.6445 38.7569 -Andale_Mono.ttf 11 i 13.3043 40.7902 2 h 0.1241 23.0431 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 3 a 10.1849 24.2529 30.8333 -Andale_Mono.ttf 11 i 13.3043 40.7902 4 n 10.3655 23.0431 30.6264 -Andale_Mono.ttf 11 i 13.3043 40.7902 5 P 0.0816 22.8055 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 6 o 10.2388 26.7880 30.8333 -Andale_Mono.ttf 11 i 13.3043 40.7902 7 e 10.1638 25.2250 30.8333 -Andale_Mono.ttf 11 i 13.3043 40.7902 8 : 9.9920 7.2279 30.8333 -Andale_Mono.ttf 11 i 13.3043 40.7902 9 r 10.2448 20.4043 30.6264 -Andale_Mono.ttf 11 i 13.3043 40.7902 10 l 0.2427 20.4167 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 11 i -0.1098 13.3043 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 12 1 -0.0308 21.0793 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 13 | 0.2784 4.1457 51.1917 -Andale_Mono.ttf 11 i 13.3043 40.7902 14 N 0.1471 24.3684 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 15 f 0.2860 22.7449 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 16 g 10.1118 26.2862 42.2069 -Andale_Mono.ttf 11 i 13.3043 40.7902 17 d 0.2412 24.9156 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 18 W 0.2180 32.6598 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 19 s 10.0582 22.4960 30.8333 -Andale_Mono.ttf 11 i 13.3043 40.7902 20 c 10.0037 24.2529 30.8333 -Andale_Mono.ttf 11 i 13.3043 40.7902 21 u 10.4126 23.0431 30.6264 -Andale_Mono.ttf 11 i 13.3043 40.7902 22 3 0.0966 22.4376 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 23 ~ 20.9716 31.2431 8.4376 -Andale_Mono.ttf 11 i 13.3043 40.7902 24 # 0.2907 29.7261 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 25 O 0.0327 27.4069 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 26 ` -0.9379 12.2739 8.6445 -Andale_Mono.ttf 11 i 13.3043 40.7902 27 @ 0.0157 29.8848 45.6293 -Andale_Mono.ttf 11 i 13.3043 40.7902 28 F 0.2615 21.8334 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 29 S -0.2649 22.6445 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 30 p 9.9736 24.9156 42.2069 -Andale_Mono.ttf 11 i 13.3043 40.7902 31 “ -0.3352 17.6989 13.2460 -Andale_Mono.ttf 11 i 13.3043 40.7902 32 % 0.0922 32.6598 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 33 £ 0.1870 26.7902 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 34 . 33.6159 7.2279 7.2279 -Andale_Mono.ttf 11 i 13.3043 40.7902 35 2 -0.2592 21.9695 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 36 5 -0.1017 22.1304 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 37 m 10.4689 27.6138 30.6264 -Andale_Mono.ttf 11 i 13.3043 40.7902 38 V 0.5345 32.2460 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 39 6 -0.1837 25.4319 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 40 w 10.4327 29.5170 30.4195 -Andale_Mono.ttf 11 i 13.3043 40.7902 41 T 0.2678 29.4710 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 42 M 0.3738 25.2250 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 43 G 0.0364 26.5833 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 44 b 0.2467 24.9156 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 45 9 0.1457 25.2250 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 46 ; 10.1182 7.2279 36.8514 -Andale_Mono.ttf 11 i 13.3043 40.7902 47 D 0.4508 25.2250 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 48 L 0.2799 21.8334 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 49 y 10.1259 26.6417 42.0000 -Andale_Mono.ttf 11 i 13.3043 40.7902 50 ‘ -0.0238 7.2279 13.2460 -Andale_Mono.ttf 11 i 13.3043 40.7902 51 \ 0.0721 24.4014 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 52 R 0.2833 27.3351 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 53 < 5.5695 21.2279 29.2098 -Andale_Mono.ttf 11 i 13.3043 40.7902 54 4 0.2069 27.4836 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 55 8 0.0371 25.7598 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 56 0 0.1485 26.7880 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 57 A 0.4740 32.2460 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 58 E 0.1747 21.0793 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 59 B 0.1398 25.0765 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 60 v 10.1466 26.4348 30.4195 -Andale_Mono.ttf 11 i 13.3043 40.7902 61 k 0.0293 26.1253 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 62 J 0.3187 19.6627 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 63 U 0.1121 23.0431 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 64 j 0.3714 15.7239 52.3707 -Andale_Mono.ttf 11 i 13.3043 40.7902 65 ( -0.1793 15.2098 49.6141 -Andale_Mono.ttf 11 i 13.3043 40.7902 66 7 -0.0979 23.7080 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 67 § 0.0465 23.8543 52.5776 -Andale_Mono.ttf 11 i 13.3043 40.7902 68 $ -2.9569 22.6445 47.0152 -Andale_Mono.ttf 11 i 13.3043 40.7902 69 € 0.0228 30.5474 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 70 / -0.0233 24.4014 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 71 C -0.1441 26.7112 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 72 * -0.2091 20.1184 22.4376 -Andale_Mono.ttf 11 i 13.3043 40.7902 73 ” 0.0810 17.6989 13.2460 -Andale_Mono.ttf 11 i 13.3043 40.7902 74 ? -0.0322 20.5652 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 75 { 0.4209 15.8848 50.4376 -Andale_Mono.ttf 11 i 13.3043 40.7902 76 } 0.3983 15.8848 50.4376 -Andale_Mono.ttf 11 i 13.3043 40.7902 77 , 33.6440 7.2279 13.2460 -Andale_Mono.ttf 11 i 13.3043 40.7902 78 I -0.0539 17.9971 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 79 ° -0.0439 15.7261 15.7261 -Andale_Mono.ttf 11 i 13.3043 40.7902 80 K -0.0718 28.2377 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 81 H 0.1975 23.0431 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 82 q 10.0017 24.9156 42.2069 -Andale_Mono.ttf 11 i 13.3043 40.7902 83 & 0.1266 32.6598 40.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 84 ’ -0.2341 7.2279 13.2460 -Andale_Mono.ttf 11 i 13.3043 40.7902 85 [ 0.1672 11.2250 47.8696 -Andale_Mono.ttf 11 i 13.3043 40.7902 86 - 22.7300 16.9359 4.1457 -Andale_Mono.ttf 11 i 13.3043 40.7902 87 Y 0.4900 29.8264 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 88 Q -0.0371 28.6167 47.7692 -Andale_Mono.ttf 11 i 13.3043 40.7902 89 " 0.1259 14.9239 15.2098 -Andale_Mono.ttf 11 i 13.3043 40.7902 90 ! 0.0293 7.2279 40.7902 -Andale_Mono.ttf 11 i 13.3043 40.7902 91 x 10.0665 26.2739 30.4195 -Andale_Mono.ttf 11 i 13.3043 40.7902 92 ) 0.0045 15.2098 49.6141 -Andale_Mono.ttf 11 i 13.3043 40.7902 93 = 12.4214 27.1098 15.2098 -Andale_Mono.ttf 11 i 13.3043 40.7902 94 + 6.8049 26.9971 26.9971 -Andale_Mono.ttf 11 i 13.3043 40.7902 95 X 0.3368 31.0946 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 96 » 10.4600 25.2250 29.2098 -Andale_Mono.ttf 11 i 13.3043 40.7902 97 ' 0.4435 4.4529 15.2098 -Andale_Mono.ttf 11 i 13.3043 40.7902 98 ¢ 5.0478 23.6474 41.2224 -Andale_Mono.ttf 11 i 13.3043 40.7902 99 Z 0.2069 24.3684 40.5833 -Andale_Mono.ttf 11 i 13.3043 40.7902 100 > 5.4912 21.2279 29.2098 -Andale_Mono.ttf 11 i 13.3043 40.7902 101 ® -0.2648 35.0793 34.5652 -Andale_Mono.ttf 11 i 13.3043 40.7902 102 © -0.1279 35.0793 34.5652 -Andale_Mono.ttf 11 i 13.3043 40.7902 103 ] 0.4494 11.2250 47.8696 -Andale_Mono.ttf 11 i 13.3043 40.7902 104 é -0.9303 25.2250 42.0460 -Andale_Mono.ttf 11 i 13.3043 40.7902 105 z 10.6159 23.1917 30.4195 -Andale_Mono.ttf 11 i 13.3043 40.7902 106 _ 49.8180 35.0793 3.8362 -Andale_Mono.ttf 11 i 13.3043 40.7902 107 ¥ 0.1347 29.8264 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 1 t 2.6804 22.6445 38.7569 -Andale_Mono.ttf 12 1 21.0793 40.7902 2 h -0.0893 23.0431 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 3 a 10.2448 24.2529 30.8333 -Andale_Mono.ttf 12 1 21.0793 40.7902 4 n 10.3042 23.0431 30.6264 -Andale_Mono.ttf 12 1 21.0793 40.7902 5 P 0.0086 22.8055 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 6 o 10.1870 26.7880 30.8333 -Andale_Mono.ttf 12 1 21.0793 40.7902 7 e 9.9535 25.2250 30.8333 -Andale_Mono.ttf 12 1 21.0793 40.7902 8 : 10.0818 7.2279 30.8333 -Andale_Mono.ttf 12 1 21.0793 40.7902 9 r 10.2972 20.4043 30.6264 -Andale_Mono.ttf 12 1 21.0793 40.7902 10 l -0.0073 20.4167 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 11 i -0.1517 13.3043 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 12 1 0.0599 21.0793 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 13 | 0.4965 4.1457 51.1917 -Andale_Mono.ttf 12 1 21.0793 40.7902 14 N 0.0157 24.3684 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 15 f -0.0755 22.7449 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 16 g 10.0631 26.2862 42.2069 -Andale_Mono.ttf 12 1 21.0793 40.7902 17 d 0.3728 24.9156 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 18 W 0.2502 32.6598 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 19 s 10.1544 22.4960 30.8333 -Andale_Mono.ttf 12 1 21.0793 40.7902 20 c 10.2377 24.2529 30.8333 -Andale_Mono.ttf 12 1 21.0793 40.7902 21 u 9.8634 23.0431 30.6264 -Andale_Mono.ttf 12 1 21.0793 40.7902 22 3 0.0922 22.4376 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 23 ~ 21.5678 31.2431 8.4376 -Andale_Mono.ttf 12 1 21.0793 40.7902 24 # 0.1259 29.7261 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 25 O 0.0860 27.4069 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 26 ` -1.0113 12.2739 8.6445 -Andale_Mono.ttf 12 1 21.0793 40.7902 27 @ -0.0791 29.8848 45.6293 -Andale_Mono.ttf 12 1 21.0793 40.7902 28 F 0.1799 21.8334 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 29 S -0.1479 22.6445 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 30 p 10.0969 24.9156 42.2069 -Andale_Mono.ttf 12 1 21.0793 40.7902 31 “ 0.2014 17.6989 13.2460 -Andale_Mono.ttf 12 1 21.0793 40.7902 32 % 0.1557 32.6598 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 33 £ -0.3059 26.7902 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 34 . 33.9468 7.2279 7.2279 -Andale_Mono.ttf 12 1 21.0793 40.7902 35 2 0.0420 21.9695 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 36 5 0.2672 22.1304 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 37 m 10.1088 27.6138 30.6264 -Andale_Mono.ttf 12 1 21.0793 40.7902 38 V 0.1046 32.2460 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 39 6 0.0063 25.4319 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 40 w 10.1147 29.5170 30.4195 -Andale_Mono.ttf 12 1 21.0793 40.7902 41 T 0.2757 29.4710 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 42 M 0.5910 25.2250 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 43 G -0.1695 26.5833 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 44 b 0.2860 24.9156 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 45 9 0.2113 25.2250 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 46 ; 10.5812 7.2279 36.8514 -Andale_Mono.ttf 12 1 21.0793 40.7902 47 D 0.1222 25.2250 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 48 L 0.1741 21.8334 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 49 y 10.3492 26.6417 42.0000 -Andale_Mono.ttf 12 1 21.0793 40.7902 50 ‘ -0.0533 7.2279 13.2460 -Andale_Mono.ttf 12 1 21.0793 40.7902 51 \ 0.2021 24.4014 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 52 R 0.1698 27.3351 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 53 < 5.8611 21.2279 29.2098 -Andale_Mono.ttf 12 1 21.0793 40.7902 54 4 0.2991 27.4836 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 55 8 -0.0854 25.7598 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 56 0 -0.1284 26.7880 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 57 A 0.4274 32.2460 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 58 E 0.0193 21.0793 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 59 B 0.2879 25.0765 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 60 v 10.0571 26.4348 30.4195 -Andale_Mono.ttf 12 1 21.0793 40.7902 61 k 0.2437 26.1253 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 62 J -0.0400 19.6627 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 63 U 0.5295 23.0431 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 64 j -0.0318 15.7239 52.3707 -Andale_Mono.ttf 12 1 21.0793 40.7902 65 ( -0.2339 15.2098 49.6141 -Andale_Mono.ttf 12 1 21.0793 40.7902 66 7 0.3824 23.7080 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 67 § -0.2868 23.8543 52.5776 -Andale_Mono.ttf 12 1 21.0793 40.7902 68 $ -2.6896 22.6445 47.0152 -Andale_Mono.ttf 12 1 21.0793 40.7902 69 € 0.0784 30.5474 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 70 / 0.0828 24.4014 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 71 C 0.1287 26.7112 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 72 * 0.1259 20.1184 22.4376 -Andale_Mono.ttf 12 1 21.0793 40.7902 73 ” -0.1990 17.6989 13.2460 -Andale_Mono.ttf 12 1 21.0793 40.7902 74 ? -0.1276 20.5652 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 75 { 0.1215 15.8848 50.4376 -Andale_Mono.ttf 12 1 21.0793 40.7902 76 } 0.1527 15.8848 50.4376 -Andale_Mono.ttf 12 1 21.0793 40.7902 77 , 33.6262 7.2279 13.2460 -Andale_Mono.ttf 12 1 21.0793 40.7902 78 I 0.0427 17.9971 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 79 ° -0.0636 15.7261 15.7261 -Andale_Mono.ttf 12 1 21.0793 40.7902 80 K 0.0400 28.2377 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 81 H 0.3004 23.0431 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 82 q 10.1342 24.9156 42.2069 -Andale_Mono.ttf 12 1 21.0793 40.7902 83 & 0.2628 32.6598 40.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 84 ’ 0.0475 7.2279 13.2460 -Andale_Mono.ttf 12 1 21.0793 40.7902 85 [ 0.1147 11.2250 47.8696 -Andale_Mono.ttf 12 1 21.0793 40.7902 86 - 22.6162 16.9359 4.1457 -Andale_Mono.ttf 12 1 21.0793 40.7902 87 Y 0.3156 29.8264 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 88 Q -0.0747 28.6167 47.7692 -Andale_Mono.ttf 12 1 21.0793 40.7902 89 " 0.2323 14.9239 15.2098 -Andale_Mono.ttf 12 1 21.0793 40.7902 90 ! 0.1403 7.2279 40.7902 -Andale_Mono.ttf 12 1 21.0793 40.7902 91 x 10.5822 26.2739 30.4195 -Andale_Mono.ttf 12 1 21.0793 40.7902 92 ) 0.0376 15.2098 49.6141 -Andale_Mono.ttf 12 1 21.0793 40.7902 93 = 12.5984 27.1098 15.2098 -Andale_Mono.ttf 12 1 21.0793 40.7902 94 + 7.1028 26.9971 26.9971 -Andale_Mono.ttf 12 1 21.0793 40.7902 95 X 0.2276 31.0946 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 96 » 10.1983 25.2250 29.2098 -Andale_Mono.ttf 12 1 21.0793 40.7902 97 ' 0.2592 4.4529 15.2098 -Andale_Mono.ttf 12 1 21.0793 40.7902 98 ¢ 5.1236 23.6474 41.2224 -Andale_Mono.ttf 12 1 21.0793 40.7902 99 Z -0.0115 24.3684 40.5833 -Andale_Mono.ttf 12 1 21.0793 40.7902 100 > 5.8515 21.2279 29.2098 -Andale_Mono.ttf 12 1 21.0793 40.7902 101 ® 0.2429 35.0793 34.5652 -Andale_Mono.ttf 12 1 21.0793 40.7902 102 © -0.2806 35.0793 34.5652 -Andale_Mono.ttf 12 1 21.0793 40.7902 103 ] 0.5059 11.2250 47.8696 -Andale_Mono.ttf 12 1 21.0793 40.7902 104 é -0.9504 25.2250 42.0460 -Andale_Mono.ttf 12 1 21.0793 40.7902 105 z 10.4284 23.1917 30.4195 -Andale_Mono.ttf 12 1 21.0793 40.7902 106 _ 49.6659 35.0793 3.8362 -Andale_Mono.ttf 12 1 21.0793 40.7902 107 ¥ 0.4933 29.8264 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 1 t 2.2624 22.6445 38.7569 -Andale_Mono.ttf 13 | 4.1457 51.1917 2 h 0.1575 23.0431 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 3 a 9.8705 24.2529 30.8333 -Andale_Mono.ttf 13 | 4.1457 51.1917 4 n 9.8450 23.0431 30.6264 -Andale_Mono.ttf 13 | 4.1457 51.1917 5 P -0.0308 22.8055 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 6 o 9.7032 26.7880 30.8333 -Andale_Mono.ttf 13 | 4.1457 51.1917 7 e 9.8118 25.2250 30.8333 -Andale_Mono.ttf 13 | 4.1457 51.1917 8 : 10.2849 7.2279 30.8333 -Andale_Mono.ttf 13 | 4.1457 51.1917 9 r 9.8613 20.4043 30.6264 -Andale_Mono.ttf 13 | 4.1457 51.1917 10 l 0.3113 20.4167 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 11 i 0.0410 13.3043 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 12 1 -0.0502 21.0793 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 13 | -0.2071 4.1457 51.1917 -Andale_Mono.ttf 13 | 4.1457 51.1917 14 N -0.1404 24.3684 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 15 f -0.0860 22.7449 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 16 g 9.8159 26.2862 42.2069 -Andale_Mono.ttf 13 | 4.1457 51.1917 17 d 0.0220 24.9156 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 18 W -0.1485 32.6598 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 19 s 10.0717 22.4960 30.8333 -Andale_Mono.ttf 13 | 4.1457 51.1917 20 c 10.2722 24.2529 30.8333 -Andale_Mono.ttf 13 | 4.1457 51.1917 21 u 10.1705 23.0431 30.6264 -Andale_Mono.ttf 13 | 4.1457 51.1917 22 3 -0.1555 22.4376 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 23 ~ 20.7716 31.2431 8.4376 -Andale_Mono.ttf 13 | 4.1457 51.1917 24 # -0.1347 29.7261 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 25 O 0.0485 27.4069 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 26 ` -1.5017 12.2739 8.6445 -Andale_Mono.ttf 13 | 4.1457 51.1917 27 @ -0.3500 29.8848 45.6293 -Andale_Mono.ttf 13 | 4.1457 51.1917 28 F -0.0027 21.8334 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 29 S -0.5052 22.6445 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 30 p 10.0427 24.9156 42.2069 -Andale_Mono.ttf 13 | 4.1457 51.1917 31 “ -0.1768 17.6989 13.2460 -Andale_Mono.ttf 13 | 4.1457 51.1917 32 % -0.3050 32.6598 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 33 £ -0.5470 26.7902 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 34 . 33.5942 7.2279 7.2279 -Andale_Mono.ttf 13 | 4.1457 51.1917 35 2 -0.1322 21.9695 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 36 5 0.1230 22.1304 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 37 m 10.2155 27.6138 30.6264 -Andale_Mono.ttf 13 | 4.1457 51.1917 38 V -0.1718 32.2460 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 39 6 -0.3228 25.4319 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 40 w 10.5373 29.5170 30.4195 -Andale_Mono.ttf 13 | 4.1457 51.1917 41 T -0.1437 29.4710 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 42 M 0.2479 25.2250 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 43 G -0.2498 26.5833 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 44 b 0.1575 24.9156 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 45 9 -0.3483 25.2250 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 46 ; 10.0956 7.2279 36.8514 -Andale_Mono.ttf 13 | 4.1457 51.1917 47 D -0.0085 25.2250 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 48 L -0.1615 21.8334 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 49 y 10.2873 26.6417 42.0000 -Andale_Mono.ttf 13 | 4.1457 51.1917 50 ‘ -0.3424 7.2279 13.2460 -Andale_Mono.ttf 13 | 4.1457 51.1917 51 \ -0.2345 24.4014 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 52 R -0.1248 27.3351 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 53 < 5.5485 21.2279 29.2098 -Andale_Mono.ttf 13 | 4.1457 51.1917 54 4 -0.0488 27.4836 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 55 8 -0.1515 25.7598 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 56 0 -0.2696 26.7880 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 57 A -0.2284 32.2460 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 58 E 0.0465 21.0793 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 59 B 0.0050 25.0765 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 60 v 10.0810 26.4348 30.4195 -Andale_Mono.ttf 13 | 4.1457 51.1917 61 k 0.2634 26.1253 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 62 J -0.1293 19.6627 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 63 U 0.3518 23.0431 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 64 j -0.4667 15.7239 52.3707 -Andale_Mono.ttf 13 | 4.1457 51.1917 65 ( 0.0490 15.2098 49.6141 -Andale_Mono.ttf 13 | 4.1457 51.1917 66 7 -0.2944 23.7080 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 67 § -0.3733 23.8543 52.5776 -Andale_Mono.ttf 13 | 4.1457 51.1917 68 $ -2.7859 22.6445 47.0152 -Andale_Mono.ttf 13 | 4.1457 51.1917 69 € -0.0665 30.5474 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 70 / -0.1178 24.4014 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 71 C -0.2259 26.7112 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 72 * 0.0197 20.1184 22.4376 -Andale_Mono.ttf 13 | 4.1457 51.1917 73 ” -0.1952 17.6989 13.2460 -Andale_Mono.ttf 13 | 4.1457 51.1917 74 ? -0.1890 20.5652 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 75 { 0.2014 15.8848 50.4376 -Andale_Mono.ttf 13 | 4.1457 51.1917 76 } -0.1033 15.8848 50.4376 -Andale_Mono.ttf 13 | 4.1457 51.1917 77 , 33.3516 7.2279 13.2460 -Andale_Mono.ttf 13 | 4.1457 51.1917 78 I -0.2080 17.9971 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 79 ° -0.1000 15.7261 15.7261 -Andale_Mono.ttf 13 | 4.1457 51.1917 80 K 0.0063 28.2377 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 81 H 0.1575 23.0431 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 82 q 9.7711 24.9156 42.2069 -Andale_Mono.ttf 13 | 4.1457 51.1917 83 & 0.1998 32.6598 40.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 84 ’ -0.1805 7.2279 13.2460 -Andale_Mono.ttf 13 | 4.1457 51.1917 85 [ 0.1498 11.2250 47.8696 -Andale_Mono.ttf 13 | 4.1457 51.1917 86 - 22.3302 16.9359 4.1457 -Andale_Mono.ttf 13 | 4.1457 51.1917 87 Y -0.0111 29.8264 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 88 Q -0.0714 28.6167 47.7692 -Andale_Mono.ttf 13 | 4.1457 51.1917 89 " -0.0603 14.9239 15.2098 -Andale_Mono.ttf 13 | 4.1457 51.1917 90 ! -0.1385 7.2279 40.7902 -Andale_Mono.ttf 13 | 4.1457 51.1917 91 x 10.4739 26.2739 30.4195 -Andale_Mono.ttf 13 | 4.1457 51.1917 92 ) -0.5640 15.2098 49.6141 -Andale_Mono.ttf 13 | 4.1457 51.1917 93 = 12.4317 27.1098 15.2098 -Andale_Mono.ttf 13 | 4.1457 51.1917 94 + 6.3290 26.9971 26.9971 -Andale_Mono.ttf 13 | 4.1457 51.1917 95 X 0.1293 31.0946 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 96 » 10.1126 25.2250 29.2098 -Andale_Mono.ttf 13 | 4.1457 51.1917 97 ' -0.0098 4.4529 15.2098 -Andale_Mono.ttf 13 | 4.1457 51.1917 98 ¢ 4.6939 23.6474 41.2224 -Andale_Mono.ttf 13 | 4.1457 51.1917 99 Z -0.0810 24.3684 40.5833 -Andale_Mono.ttf 13 | 4.1457 51.1917 100 > 5.4448 21.2279 29.2098 -Andale_Mono.ttf 13 | 4.1457 51.1917 101 ® -0.0144 35.0793 34.5652 -Andale_Mono.ttf 13 | 4.1457 51.1917 102 © -0.3299 35.0793 34.5652 -Andale_Mono.ttf 13 | 4.1457 51.1917 103 ] 0.3002 11.2250 47.8696 -Andale_Mono.ttf 13 | 4.1457 51.1917 104 é -1.2176 25.2250 42.0460 -Andale_Mono.ttf 13 | 4.1457 51.1917 105 z 10.2448 23.1917 30.4195 -Andale_Mono.ttf 13 | 4.1457 51.1917 106 _ 49.5266 35.0793 3.8362 -Andale_Mono.ttf 13 | 4.1457 51.1917 107 ¥ 0.0711 29.8264 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 1 t 1.8029 22.6445 38.7569 -Andale_Mono.ttf 14 N 24.3684 40.5833 2 h -0.2103 23.0431 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 3 a 9.8785 24.2529 30.8333 -Andale_Mono.ttf 14 N 24.3684 40.5833 4 n 9.9224 23.0431 30.6264 -Andale_Mono.ttf 14 N 24.3684 40.5833 5 P 0.2837 22.8055 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 6 o 10.0750 26.7880 30.8333 -Andale_Mono.ttf 14 N 24.3684 40.5833 7 e 9.9748 25.2250 30.8333 -Andale_Mono.ttf 14 N 24.3684 40.5833 8 : 10.1452 7.2279 30.8333 -Andale_Mono.ttf 14 N 24.3684 40.5833 9 r 10.3157 20.4043 30.6264 -Andale_Mono.ttf 14 N 24.3684 40.5833 10 l 0.0873 20.4167 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 11 i -0.4008 13.3043 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 12 1 -0.1277 21.0793 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 13 | -0.0971 4.1457 51.1917 -Andale_Mono.ttf 14 N 24.3684 40.5833 14 N -0.2465 24.3684 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 15 f 0.0728 22.7449 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 16 g 10.1895 26.2862 42.2069 -Andale_Mono.ttf 14 N 24.3684 40.5833 17 d 0.0402 24.9156 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 18 W -0.0891 32.6598 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 19 s 9.6670 22.4960 30.8333 -Andale_Mono.ttf 14 N 24.3684 40.5833 20 c 9.7837 24.2529 30.8333 -Andale_Mono.ttf 14 N 24.3684 40.5833 21 u 10.0944 23.0431 30.6264 -Andale_Mono.ttf 14 N 24.3684 40.5833 22 3 0.0387 22.4376 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 23 ~ 20.7437 31.2431 8.4376 -Andale_Mono.ttf 14 N 24.3684 40.5833 24 # 0.0006 29.7261 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 25 O 0.1345 27.4069 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 26 ` -1.2652 12.2739 8.6445 -Andale_Mono.ttf 14 N 24.3684 40.5833 27 @ 0.0893 29.8848 45.6293 -Andale_Mono.ttf 14 N 24.3684 40.5833 28 F 0.1199 21.8334 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 29 S -0.3751 22.6445 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 30 p 9.9586 24.9156 42.2069 -Andale_Mono.ttf 14 N 24.3684 40.5833 31 “ -0.3663 17.6989 13.2460 -Andale_Mono.ttf 14 N 24.3684 40.5833 32 % -0.4077 32.6598 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 33 £ -0.1492 26.7902 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 34 . 33.5618 7.2279 7.2279 -Andale_Mono.ttf 14 N 24.3684 40.5833 35 2 0.0835 21.9695 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 36 5 0.1341 22.1304 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 37 m 9.8333 27.6138 30.6264 -Andale_Mono.ttf 14 N 24.3684 40.5833 38 V -0.0917 32.2460 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 39 6 -0.3251 25.4319 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 40 w 10.3758 29.5170 30.4195 -Andale_Mono.ttf 14 N 24.3684 40.5833 41 T -0.1377 29.4710 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 42 M -0.1223 25.2250 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 43 G -0.4490 26.5833 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 44 b 0.0916 24.9156 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 45 9 -0.0011 25.2250 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 46 ; 10.0743 7.2279 36.8514 -Andale_Mono.ttf 14 N 24.3684 40.5833 47 D 0.0188 25.2250 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 48 L -0.0255 21.8334 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 49 y 10.2904 26.6417 42.0000 -Andale_Mono.ttf 14 N 24.3684 40.5833 50 ‘ -0.1983 7.2279 13.2460 -Andale_Mono.ttf 14 N 24.3684 40.5833 51 \ -0.3498 24.4014 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 52 R 0.0213 27.3351 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 53 < 5.4714 21.2279 29.2098 -Andale_Mono.ttf 14 N 24.3684 40.5833 54 4 0.0991 27.4836 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 55 8 -0.2190 25.7598 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 56 0 -0.1613 26.7880 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 57 A -0.1249 32.2460 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 58 E 0.1172 21.0793 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 59 B -0.1770 25.0765 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 60 v 10.1272 26.4348 30.4195 -Andale_Mono.ttf 14 N 24.3684 40.5833 61 k 0.1213 26.1253 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 62 J -0.3226 19.6627 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 63 U -0.3628 23.0431 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 64 j -0.3027 15.7239 52.3707 -Andale_Mono.ttf 14 N 24.3684 40.5833 65 ( 0.0257 15.2098 49.6141 -Andale_Mono.ttf 14 N 24.3684 40.5833 66 7 0.1002 23.7080 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 67 § -0.0320 23.8543 52.5776 -Andale_Mono.ttf 14 N 24.3684 40.5833 68 $ -3.2305 22.6445 47.0152 -Andale_Mono.ttf 14 N 24.3684 40.5833 69 € 0.2230 30.5474 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 70 / 0.0562 24.4014 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 71 C -0.1989 26.7112 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 72 * -0.0238 20.1184 22.4376 -Andale_Mono.ttf 14 N 24.3684 40.5833 73 ” -0.1724 17.6989 13.2460 -Andale_Mono.ttf 14 N 24.3684 40.5833 74 ? -0.2933 20.5652 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 75 { 0.2019 15.8848 50.4376 -Andale_Mono.ttf 14 N 24.3684 40.5833 76 } -0.1404 15.8848 50.4376 -Andale_Mono.ttf 14 N 24.3684 40.5833 77 , 33.5363 7.2279 13.2460 -Andale_Mono.ttf 14 N 24.3684 40.5833 78 I 0.0550 17.9971 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 79 ° -0.0690 15.7261 15.7261 -Andale_Mono.ttf 14 N 24.3684 40.5833 80 K 0.2881 28.2377 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 81 H -0.1531 23.0431 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 82 q 10.0835 24.9156 42.2069 -Andale_Mono.ttf 14 N 24.3684 40.5833 83 & -0.1057 32.6598 40.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 84 ’ -0.1347 7.2279 13.2460 -Andale_Mono.ttf 14 N 24.3684 40.5833 85 [ 0.1226 11.2250 47.8696 -Andale_Mono.ttf 14 N 24.3684 40.5833 86 - 22.4903 16.9359 4.1457 -Andale_Mono.ttf 14 N 24.3684 40.5833 87 Y -0.1347 29.8264 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 88 Q -0.1121 28.6167 47.7692 -Andale_Mono.ttf 14 N 24.3684 40.5833 89 " -0.2348 14.9239 15.2098 -Andale_Mono.ttf 14 N 24.3684 40.5833 90 ! 0.1680 7.2279 40.7902 -Andale_Mono.ttf 14 N 24.3684 40.5833 91 x 9.9914 26.2739 30.4195 -Andale_Mono.ttf 14 N 24.3684 40.5833 92 ) -0.1952 15.2098 49.6141 -Andale_Mono.ttf 14 N 24.3684 40.5833 93 = 12.5241 27.1098 15.2098 -Andale_Mono.ttf 14 N 24.3684 40.5833 94 + 6.1993 26.9971 26.9971 -Andale_Mono.ttf 14 N 24.3684 40.5833 95 X 0.1529 31.0946 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 96 » 10.0785 25.2250 29.2098 -Andale_Mono.ttf 14 N 24.3684 40.5833 97 ' 0.1723 4.4529 15.2098 -Andale_Mono.ttf 14 N 24.3684 40.5833 98 ¢ 4.7983 23.6474 41.2224 -Andale_Mono.ttf 14 N 24.3684 40.5833 99 Z -0.1182 24.3684 40.5833 -Andale_Mono.ttf 14 N 24.3684 40.5833 100 > 5.6306 21.2279 29.2098 -Andale_Mono.ttf 14 N 24.3684 40.5833 101 ® -0.1009 35.0793 34.5652 -Andale_Mono.ttf 14 N 24.3684 40.5833 102 © -0.0665 35.0793 34.5652 -Andale_Mono.ttf 14 N 24.3684 40.5833 103 ] -0.0452 11.2250 47.8696 -Andale_Mono.ttf 14 N 24.3684 40.5833 104 é -1.5537 25.2250 42.0460 -Andale_Mono.ttf 14 N 24.3684 40.5833 105 z 10.4587 23.1917 30.4195 -Andale_Mono.ttf 14 N 24.3684 40.5833 106 _ 49.5431 35.0793 3.8362 -Andale_Mono.ttf 14 N 24.3684 40.5833 107 ¥ -0.2385 29.8264 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 1 t 2.1124 22.6445 38.7569 -Andale_Mono.ttf 15 f 22.7449 40.5833 2 h 0.2215 23.0431 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 3 a 9.8991 24.2529 30.8333 -Andale_Mono.ttf 15 f 22.7449 40.5833 4 n 9.9977 23.0431 30.6264 -Andale_Mono.ttf 15 f 22.7449 40.5833 5 P 0.0747 22.8055 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 6 o 10.2737 26.7880 30.8333 -Andale_Mono.ttf 15 f 22.7449 40.5833 7 e 10.3569 25.2250 30.8333 -Andale_Mono.ttf 15 f 22.7449 40.5833 8 : 9.8800 7.2279 30.8333 -Andale_Mono.ttf 15 f 22.7449 40.5833 9 r 9.9873 20.4043 30.6264 -Andale_Mono.ttf 15 f 22.7449 40.5833 10 l 0.1722 20.4167 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 11 i 0.0431 13.3043 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 12 1 -0.0247 21.0793 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 13 | -0.1270 4.1457 51.1917 -Andale_Mono.ttf 15 f 22.7449 40.5833 14 N -0.1638 24.3684 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 15 f 0.1108 22.7449 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 16 g 10.0052 26.2862 42.2069 -Andale_Mono.ttf 15 f 22.7449 40.5833 17 d -0.0947 24.9156 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 18 W -0.0757 32.6598 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 19 s 10.1157 22.4960 30.8333 -Andale_Mono.ttf 15 f 22.7449 40.5833 20 c 10.1126 24.2529 30.8333 -Andale_Mono.ttf 15 f 22.7449 40.5833 21 u 10.2448 23.0431 30.6264 -Andale_Mono.ttf 15 f 22.7449 40.5833 22 3 -0.0444 22.4376 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 23 ~ 21.1832 31.2431 8.4376 -Andale_Mono.ttf 15 f 22.7449 40.5833 24 # -0.0492 29.7261 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 25 O -0.0293 27.4069 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 26 ` -1.4230 12.2739 8.6445 -Andale_Mono.ttf 15 f 22.7449 40.5833 27 @ -0.1262 29.8848 45.6293 -Andale_Mono.ttf 15 f 22.7449 40.5833 28 F 0.1456 21.8334 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 29 S -0.7379 22.6445 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 30 p 10.0379 24.9156 42.2069 -Andale_Mono.ttf 15 f 22.7449 40.5833 31 “ -0.1674 17.6989 13.2460 -Andale_Mono.ttf 15 f 22.7449 40.5833 32 % -0.1624 32.6598 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 33 £ -0.4310 26.7902 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 34 . 33.6522 7.2279 7.2279 -Andale_Mono.ttf 15 f 22.7449 40.5833 35 2 -0.2879 21.9695 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 36 5 -0.1162 22.1304 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 37 m 10.0956 27.6138 30.6264 -Andale_Mono.ttf 15 f 22.7449 40.5833 38 V 0.0308 32.2460 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 39 6 0.0672 25.4319 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 40 w 10.1728 29.5170 30.4195 -Andale_Mono.ttf 15 f 22.7449 40.5833 41 T 0.1199 29.4710 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 42 M -0.0724 25.2250 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 43 G -0.3345 26.5833 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 44 b -0.0322 24.9156 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 45 9 -0.4280 25.2250 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 46 ; 10.1431 7.2279 36.8514 -Andale_Mono.ttf 15 f 22.7449 40.5833 47 D 0.0086 25.2250 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 48 L -0.2068 21.8334 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 49 y 10.4456 26.6417 42.0000 -Andale_Mono.ttf 15 f 22.7449 40.5833 50 ‘ -0.5422 7.2279 13.2460 -Andale_Mono.ttf 15 f 22.7449 40.5833 51 \ -0.3567 24.4014 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 52 R -0.2935 27.3351 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 53 < 5.5546 21.2279 29.2098 -Andale_Mono.ttf 15 f 22.7449 40.5833 54 4 0.1361 27.4836 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 55 8 -0.1792 25.7598 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 56 0 -0.3527 26.7880 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 57 A 0.1678 32.2460 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 58 E 0.2456 21.0793 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 59 B 0.0646 25.0765 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 60 v 10.1664 26.4348 30.4195 -Andale_Mono.ttf 15 f 22.7449 40.5833 61 k -0.2115 26.1253 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 62 J 0.2448 19.6627 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 63 U -0.0509 23.0431 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 64 j 0.0454 15.7239 52.3707 -Andale_Mono.ttf 15 f 22.7449 40.5833 65 ( -0.2960 15.2098 49.6141 -Andale_Mono.ttf 15 f 22.7449 40.5833 66 7 0.0820 23.7080 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 67 § -0.2870 23.8543 52.5776 -Andale_Mono.ttf 15 f 22.7449 40.5833 68 $ -2.8292 22.6445 47.0152 -Andale_Mono.ttf 15 f 22.7449 40.5833 69 € -0.2884 30.5474 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 70 / -0.0400 24.4014 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 71 C -0.1406 26.7112 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 72 * -0.1785 20.1184 22.4376 -Andale_Mono.ttf 15 f 22.7449 40.5833 73 ” -0.0994 17.6989 13.2460 -Andale_Mono.ttf 15 f 22.7449 40.5833 74 ? -0.0437 20.5652 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 75 { -0.2766 15.8848 50.4376 -Andale_Mono.ttf 15 f 22.7449 40.5833 76 } -0.1011 15.8848 50.4376 -Andale_Mono.ttf 15 f 22.7449 40.5833 77 , 33.7413 7.2279 13.2460 -Andale_Mono.ttf 15 f 22.7449 40.5833 78 I 0.0226 17.9971 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 79 ° -0.3403 15.7261 15.7261 -Andale_Mono.ttf 15 f 22.7449 40.5833 80 K 0.2100 28.2377 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 81 H 0.1553 23.0431 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 82 q 9.7932 24.9156 42.2069 -Andale_Mono.ttf 15 f 22.7449 40.5833 83 & -0.3241 32.6598 40.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 84 ’ 0.0059 7.2279 13.2460 -Andale_Mono.ttf 15 f 22.7449 40.5833 85 [ -0.0322 11.2250 47.8696 -Andale_Mono.ttf 15 f 22.7449 40.5833 86 - 22.5562 16.9359 4.1457 -Andale_Mono.ttf 15 f 22.7449 40.5833 87 Y -0.1118 29.8264 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 88 Q -0.5412 28.6167 47.7692 -Andale_Mono.ttf 15 f 22.7449 40.5833 89 " 0.0698 14.9239 15.2098 -Andale_Mono.ttf 15 f 22.7449 40.5833 90 ! -0.0412 7.2279 40.7902 -Andale_Mono.ttf 15 f 22.7449 40.5833 91 x 10.0151 26.2739 30.4195 -Andale_Mono.ttf 15 f 22.7449 40.5833 92 ) -0.1586 15.2098 49.6141 -Andale_Mono.ttf 15 f 22.7449 40.5833 93 = 12.6680 27.1098 15.2098 -Andale_Mono.ttf 15 f 22.7449 40.5833 94 + 6.7302 26.9971 26.9971 -Andale_Mono.ttf 15 f 22.7449 40.5833 95 X -0.4138 31.0946 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 96 » 9.8759 25.2250 29.2098 -Andale_Mono.ttf 15 f 22.7449 40.5833 97 ' 0.4046 4.4529 15.2098 -Andale_Mono.ttf 15 f 22.7449 40.5833 98 ¢ 4.8761 23.6474 41.2224 -Andale_Mono.ttf 15 f 22.7449 40.5833 99 Z 0.0738 24.3684 40.5833 -Andale_Mono.ttf 15 f 22.7449 40.5833 100 > 5.4764 21.2279 29.2098 -Andale_Mono.ttf 15 f 22.7449 40.5833 101 ® -0.0428 35.0793 34.5652 -Andale_Mono.ttf 15 f 22.7449 40.5833 102 © -0.2730 35.0793 34.5652 -Andale_Mono.ttf 15 f 22.7449 40.5833 103 ] 0.1127 11.2250 47.8696 -Andale_Mono.ttf 15 f 22.7449 40.5833 104 é -1.4067 25.2250 42.0460 -Andale_Mono.ttf 15 f 22.7449 40.5833 105 z 10.5213 23.1917 30.4195 -Andale_Mono.ttf 15 f 22.7449 40.5833 106 _ 49.3515 35.0793 3.8362 -Andale_Mono.ttf 15 f 22.7449 40.5833 107 ¥ 0.3192 29.8264 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 1 t -8.0381 22.6445 38.7569 -Andale_Mono.ttf 16 g 26.2862 42.2069 2 h -10.4469 23.0431 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 3 a 0.0086 24.2529 30.8333 -Andale_Mono.ttf 16 g 26.2862 42.2069 4 n -0.0312 23.0431 30.6264 -Andale_Mono.ttf 16 g 26.2862 42.2069 5 P -10.0200 22.8055 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 6 o 0.0483 26.7880 30.8333 -Andale_Mono.ttf 16 g 26.2862 42.2069 7 e 0.0519 25.2250 30.8333 -Andale_Mono.ttf 16 g 26.2862 42.2069 8 : -0.0193 7.2279 30.8333 -Andale_Mono.ttf 16 g 26.2862 42.2069 9 r -0.1970 20.4043 30.6264 -Andale_Mono.ttf 16 g 26.2862 42.2069 10 l -9.8983 20.4167 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 11 i -10.3620 13.3043 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 12 1 -10.3847 21.0793 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 13 | -9.8147 4.1457 51.1917 -Andale_Mono.ttf 16 g 26.2862 42.2069 14 N -9.8684 24.3684 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 15 f -9.6845 22.7449 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 16 g 0.1786 26.2862 42.2069 -Andale_Mono.ttf 16 g 26.2862 42.2069 17 d -10.1402 24.9156 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 18 W -10.0316 32.6598 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 19 s 0.3142 22.4960 30.8333 -Andale_Mono.ttf 16 g 26.2862 42.2069 20 c -0.0943 24.2529 30.8333 -Andale_Mono.ttf 16 g 26.2862 42.2069 21 u 0.5345 23.0431 30.6264 -Andale_Mono.ttf 16 g 26.2862 42.2069 22 3 -10.3741 22.4376 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 23 ~ 10.8862 31.2431 8.4376 -Andale_Mono.ttf 16 g 26.2862 42.2069 24 # -10.2207 29.7261 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 25 O -10.2712 27.4069 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 26 ` -11.2934 12.2739 8.6445 -Andale_Mono.ttf 16 g 26.2862 42.2069 27 @ -10.2197 29.8848 45.6293 -Andale_Mono.ttf 16 g 26.2862 42.2069 28 F -10.0393 21.8334 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 29 S -10.1427 22.6445 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 30 p 0.0006 24.9156 42.2069 -Andale_Mono.ttf 16 g 26.2862 42.2069 31 “ -9.8724 17.6989 13.2460 -Andale_Mono.ttf 16 g 26.2862 42.2069 32 % -10.2465 32.6598 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 33 £ -10.1638 26.7902 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 34 . 23.5290 7.2279 7.2279 -Andale_Mono.ttf 16 g 26.2862 42.2069 35 2 -10.1363 21.9695 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 36 5 -10.1153 22.1304 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 37 m 0.0836 27.6138 30.6264 -Andale_Mono.ttf 16 g 26.2862 42.2069 38 V -9.9910 32.2460 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 39 6 -10.2009 25.4319 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 40 w 0.3473 29.5170 30.4195 -Andale_Mono.ttf 16 g 26.2862 42.2069 41 T -9.7762 29.4710 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 42 M -10.1534 25.2250 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 43 G -10.2448 26.5833 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 44 b -10.0241 24.9156 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 45 9 -10.0355 25.2250 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 46 ; 0.3353 7.2279 36.8514 -Andale_Mono.ttf 16 g 26.2862 42.2069 47 D -10.2643 25.2250 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 48 L -9.7922 21.8334 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 49 y 0.3355 26.6417 42.0000 -Andale_Mono.ttf 16 g 26.2862 42.2069 50 ‘ -9.9841 7.2279 13.2460 -Andale_Mono.ttf 16 g 26.2862 42.2069 51 \ -10.0484 24.4014 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 52 R -9.6701 27.3351 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 53 < -4.4408 21.2279 29.2098 -Andale_Mono.ttf 16 g 26.2862 42.2069 54 4 -9.9448 27.4836 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 55 8 -10.4868 25.7598 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 56 0 -10.0285 26.7880 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 57 A -10.2939 32.2460 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 58 E -9.7586 21.0793 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 59 B -10.1695 25.0765 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 60 v 0.1653 26.4348 30.4195 -Andale_Mono.ttf 16 g 26.2862 42.2069 61 k -9.9187 26.1253 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 62 J -9.8876 19.6627 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 63 U -10.0102 23.0431 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 64 j -10.3245 15.7239 52.3707 -Andale_Mono.ttf 16 g 26.2862 42.2069 65 ( -10.2032 15.2098 49.6141 -Andale_Mono.ttf 16 g 26.2862 42.2069 66 7 -9.8295 23.7080 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 67 § -9.9209 23.8543 52.5776 -Andale_Mono.ttf 16 g 26.2862 42.2069 68 $ -13.0506 22.6445 47.0152 -Andale_Mono.ttf 16 g 26.2862 42.2069 69 € -10.2389 30.5474 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 70 / -9.8224 24.4014 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 71 C -10.1293 26.7112 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 72 * -9.7473 20.1184 22.4376 -Andale_Mono.ttf 16 g 26.2862 42.2069 73 ” -10.3726 17.6989 13.2460 -Andale_Mono.ttf 16 g 26.2862 42.2069 74 ? -10.3245 20.5652 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 75 { -9.6956 15.8848 50.4376 -Andale_Mono.ttf 16 g 26.2862 42.2069 76 } -9.9442 15.8848 50.4376 -Andale_Mono.ttf 16 g 26.2862 42.2069 77 , 24.1692 7.2279 13.2460 -Andale_Mono.ttf 16 g 26.2862 42.2069 78 I -9.8413 17.9971 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 79 ° -10.4202 15.7261 15.7261 -Andale_Mono.ttf 16 g 26.2862 42.2069 80 K -10.0643 28.2377 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 81 H -10.2531 23.0431 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 82 q -0.4702 24.9156 42.2069 -Andale_Mono.ttf 16 g 26.2862 42.2069 83 & -10.4049 32.6598 40.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 84 ’ -10.1169 7.2279 13.2460 -Andale_Mono.ttf 16 g 26.2862 42.2069 85 [ -9.8998 11.2250 47.8696 -Andale_Mono.ttf 16 g 26.2862 42.2069 86 - 12.4549 16.9359 4.1457 -Andale_Mono.ttf 16 g 26.2862 42.2069 87 Y -9.8955 29.8264 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 88 Q -10.4272 28.6167 47.7692 -Andale_Mono.ttf 16 g 26.2862 42.2069 89 " -9.8086 14.9239 15.2098 -Andale_Mono.ttf 16 g 26.2862 42.2069 90 ! -10.0065 7.2279 40.7902 -Andale_Mono.ttf 16 g 26.2862 42.2069 91 x 0.1778 26.2739 30.4195 -Andale_Mono.ttf 16 g 26.2862 42.2069 92 ) -9.9138 15.2098 49.6141 -Andale_Mono.ttf 16 g 26.2862 42.2069 93 = 2.5393 27.1098 15.2098 -Andale_Mono.ttf 16 g 26.2862 42.2069 94 + -3.3175 26.9971 26.9971 -Andale_Mono.ttf 16 g 26.2862 42.2069 95 X -9.9525 31.0946 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 96 » -0.1017 25.2250 29.2098 -Andale_Mono.ttf 16 g 26.2862 42.2069 97 ' -9.8681 4.4529 15.2098 -Andale_Mono.ttf 16 g 26.2862 42.2069 98 ¢ -5.0817 23.6474 41.2224 -Andale_Mono.ttf 16 g 26.2862 42.2069 99 Z -9.9475 24.3684 40.5833 -Andale_Mono.ttf 16 g 26.2862 42.2069 100 > -4.5012 21.2279 29.2098 -Andale_Mono.ttf 16 g 26.2862 42.2069 101 ® -10.1749 35.0793 34.5652 -Andale_Mono.ttf 16 g 26.2862 42.2069 102 © -10.2207 35.0793 34.5652 -Andale_Mono.ttf 16 g 26.2862 42.2069 103 ] -10.0554 11.2250 47.8696 -Andale_Mono.ttf 16 g 26.2862 42.2069 104 é -11.0833 25.2250 42.0460 -Andale_Mono.ttf 16 g 26.2862 42.2069 105 z 0.1406 23.1917 30.4195 -Andale_Mono.ttf 16 g 26.2862 42.2069 106 _ 39.6287 35.0793 3.8362 -Andale_Mono.ttf 16 g 26.2862 42.2069 107 ¥ -9.9187 29.8264 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 1 t 1.9542 22.6445 38.7569 -Andale_Mono.ttf 17 d 24.9156 40.7902 2 h -0.2975 23.0431 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 3 a 10.2521 24.2529 30.8333 -Andale_Mono.ttf 17 d 24.9156 40.7902 4 n 10.2686 23.0431 30.6264 -Andale_Mono.ttf 17 d 24.9156 40.7902 5 P 0.1320 22.8055 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 6 o 9.9732 26.7880 30.8333 -Andale_Mono.ttf 17 d 24.9156 40.7902 7 e 10.2594 25.2250 30.8333 -Andale_Mono.ttf 17 d 24.9156 40.7902 8 : 10.2372 7.2279 30.8333 -Andale_Mono.ttf 17 d 24.9156 40.7902 9 r 10.2402 20.4043 30.6264 -Andale_Mono.ttf 17 d 24.9156 40.7902 10 l -0.0439 20.4167 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 11 i -0.2785 13.3043 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 12 1 -0.3208 21.0793 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 13 | -0.1121 4.1457 51.1917 -Andale_Mono.ttf 17 d 24.9156 40.7902 14 N -0.2006 24.3684 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 15 f -0.1990 22.7449 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 16 g 9.8017 26.2862 42.2069 -Andale_Mono.ttf 17 d 24.9156 40.7902 17 d -0.1983 24.9156 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 18 W 0.1011 32.6598 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 19 s 10.2196 22.4960 30.8333 -Andale_Mono.ttf 17 d 24.9156 40.7902 20 c 9.8728 24.2529 30.8333 -Andale_Mono.ttf 17 d 24.9156 40.7902 21 u 10.0940 23.0431 30.6264 -Andale_Mono.ttf 17 d 24.9156 40.7902 22 3 -0.1813 22.4376 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 23 ~ 21.4498 31.2431 8.4376 -Andale_Mono.ttf 17 d 24.9156 40.7902 24 # 0.0395 29.7261 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 25 O -0.3733 27.4069 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 26 ` -1.4401 12.2739 8.6445 -Andale_Mono.ttf 17 d 24.9156 40.7902 27 @ -0.0820 29.8848 45.6293 -Andale_Mono.ttf 17 d 24.9156 40.7902 28 F -0.0439 21.8334 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 29 S -0.5939 22.6445 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 30 p 10.1733 24.9156 42.2069 -Andale_Mono.ttf 17 d 24.9156 40.7902 31 “ -0.3918 17.6989 13.2460 -Andale_Mono.ttf 17 d 24.9156 40.7902 32 % -0.1918 32.6598 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 33 £ -0.1943 26.7902 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 34 . 33.8204 7.2279 7.2279 -Andale_Mono.ttf 17 d 24.9156 40.7902 35 2 -0.5098 21.9695 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 36 5 0.1149 22.1304 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 37 m 9.9977 27.6138 30.6264 -Andale_Mono.ttf 17 d 24.9156 40.7902 38 V 0.0138 32.2460 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 39 6 -0.3456 25.4319 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 40 w 10.1388 29.5170 30.4195 -Andale_Mono.ttf 17 d 24.9156 40.7902 41 T -0.1557 29.4710 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 42 M 0.2559 25.2250 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 43 G -0.0866 26.5833 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 44 b 0.0784 24.9156 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 45 9 -0.1586 25.2250 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 46 ; 9.8621 7.2279 36.8514 -Andale_Mono.ttf 17 d 24.9156 40.7902 47 D -0.1293 25.2250 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 48 L -0.0922 21.8334 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 49 y 10.1691 26.6417 42.0000 -Andale_Mono.ttf 17 d 24.9156 40.7902 50 ‘ -0.5228 7.2279 13.2460 -Andale_Mono.ttf 17 d 24.9156 40.7902 51 \ -0.3689 24.4014 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 52 R -0.0060 27.3351 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 53 < 5.3868 21.2279 29.2098 -Andale_Mono.ttf 17 d 24.9156 40.7902 54 4 0.1230 27.4836 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 55 8 -0.2628 25.7598 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 56 0 -0.3644 26.7880 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 57 A 0.0747 32.2460 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 58 E -0.2115 21.0793 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 59 B 0.1209 25.0765 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 60 v 10.1764 26.4348 30.4195 -Andale_Mono.ttf 17 d 24.9156 40.7902 61 k -0.0730 26.1253 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 62 J 0.0557 19.6627 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 63 U -0.0412 23.0431 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 64 j -0.3971 15.7239 52.3707 -Andale_Mono.ttf 17 d 24.9156 40.7902 65 ( -0.1734 15.2098 49.6141 -Andale_Mono.ttf 17 d 24.9156 40.7902 66 7 -0.0891 23.7080 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 67 § -0.2333 23.8543 52.5776 -Andale_Mono.ttf 17 d 24.9156 40.7902 68 $ -2.6911 22.6445 47.0152 -Andale_Mono.ttf 17 d 24.9156 40.7902 69 € -0.2132 30.5474 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 70 / 0.2236 24.4014 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 71 C -0.3348 26.7112 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 72 * -0.1124 20.1184 22.4376 -Andale_Mono.ttf 17 d 24.9156 40.7902 73 ” -0.3029 17.6989 13.2460 -Andale_Mono.ttf 17 d 24.9156 40.7902 74 ? -0.2360 20.5652 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 75 { -0.3086 15.8848 50.4376 -Andale_Mono.ttf 17 d 24.9156 40.7902 76 } -0.2818 15.8848 50.4376 -Andale_Mono.ttf 17 d 24.9156 40.7902 77 , 33.5227 7.2279 13.2460 -Andale_Mono.ttf 17 d 24.9156 40.7902 78 I -0.2078 17.9971 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 79 ° -0.1837 15.7261 15.7261 -Andale_Mono.ttf 17 d 24.9156 40.7902 80 K -0.2452 28.2377 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 81 H -0.1245 23.0431 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 82 q 9.8701 24.9156 42.2069 -Andale_Mono.ttf 17 d 24.9156 40.7902 83 & -0.0897 32.6598 40.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 84 ’ -0.0261 7.2279 13.2460 -Andale_Mono.ttf 17 d 24.9156 40.7902 85 [ 0.1404 11.2250 47.8696 -Andale_Mono.ttf 17 d 24.9156 40.7902 86 - 22.4376 16.9359 4.1457 -Andale_Mono.ttf 17 d 24.9156 40.7902 87 Y -0.1387 29.8264 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 88 Q 0.1283 28.6167 47.7692 -Andale_Mono.ttf 17 d 24.9156 40.7902 89 " -0.0627 14.9239 15.2098 -Andale_Mono.ttf 17 d 24.9156 40.7902 90 ! 0.2259 7.2279 40.7902 -Andale_Mono.ttf 17 d 24.9156 40.7902 91 x 10.2506 26.2739 30.4195 -Andale_Mono.ttf 17 d 24.9156 40.7902 92 ) -0.3877 15.2098 49.6141 -Andale_Mono.ttf 17 d 24.9156 40.7902 93 = 12.5256 27.1098 15.2098 -Andale_Mono.ttf 17 d 24.9156 40.7902 94 + 6.6181 26.9971 26.9971 -Andale_Mono.ttf 17 d 24.9156 40.7902 95 X 0.0350 31.0946 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 96 » 9.9883 25.2250 29.2098 -Andale_Mono.ttf 17 d 24.9156 40.7902 97 ' -0.0759 4.4529 15.2098 -Andale_Mono.ttf 17 d 24.9156 40.7902 98 ¢ 4.6765 23.6474 41.2224 -Andale_Mono.ttf 17 d 24.9156 40.7902 99 Z -0.0483 24.3684 40.5833 -Andale_Mono.ttf 17 d 24.9156 40.7902 100 > 5.3272 21.2279 29.2098 -Andale_Mono.ttf 17 d 24.9156 40.7902 101 ® -0.3764 35.0793 34.5652 -Andale_Mono.ttf 17 d 24.9156 40.7902 102 © -0.1268 35.0793 34.5652 -Andale_Mono.ttf 17 d 24.9156 40.7902 103 ] 0.0218 11.2250 47.8696 -Andale_Mono.ttf 17 d 24.9156 40.7902 104 é -1.4178 25.2250 42.0460 -Andale_Mono.ttf 17 d 24.9156 40.7902 105 z 10.1447 23.1917 30.4195 -Andale_Mono.ttf 17 d 24.9156 40.7902 106 _ 49.5299 35.0793 3.8362 -Andale_Mono.ttf 17 d 24.9156 40.7902 107 ¥ 0.0073 29.8264 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 1 t 2.3927 22.6445 38.7569 -Andale_Mono.ttf 18 W 32.6598 40.5833 2 h -0.1330 23.0431 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 3 a 10.1941 24.2529 30.8333 -Andale_Mono.ttf 18 W 32.6598 40.5833 4 n 10.3707 23.0431 30.6264 -Andale_Mono.ttf 18 W 32.6598 40.5833 5 P -0.0261 22.8055 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 6 o 9.7534 26.7880 30.8333 -Andale_Mono.ttf 18 W 32.6598 40.5833 7 e 9.8646 25.2250 30.8333 -Andale_Mono.ttf 18 W 32.6598 40.5833 8 : 9.9569 7.2279 30.8333 -Andale_Mono.ttf 18 W 32.6598 40.5833 9 r 9.7475 20.4043 30.6264 -Andale_Mono.ttf 18 W 32.6598 40.5833 10 l -0.0652 20.4167 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 11 i -0.0458 13.3043 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 12 1 -0.1366 21.0793 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 13 | 0.1364 4.1457 51.1917 -Andale_Mono.ttf 18 W 32.6598 40.5833 14 N -0.0180 24.3684 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 15 f 0.0741 22.7449 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 16 g 9.7761 26.2862 42.2069 -Andale_Mono.ttf 18 W 32.6598 40.5833 17 d 0.0725 24.9156 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 18 W 0.1732 32.6598 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 19 s 9.5059 22.4960 30.8333 -Andale_Mono.ttf 18 W 32.6598 40.5833 20 c 9.7284 24.2529 30.8333 -Andale_Mono.ttf 18 W 32.6598 40.5833 21 u 9.9078 23.0431 30.6264 -Andale_Mono.ttf 18 W 32.6598 40.5833 22 3 -0.0629 22.4376 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 23 ~ 21.1295 31.2431 8.4376 -Andale_Mono.ttf 18 W 32.6598 40.5833 24 # -0.1603 29.7261 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 25 O -0.3732 27.4069 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 26 ` -1.2933 12.2739 8.6445 -Andale_Mono.ttf 18 W 32.6598 40.5833 27 @ -0.3353 29.8848 45.6293 -Andale_Mono.ttf 18 W 32.6598 40.5833 28 F 0.1024 21.8334 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 29 S -0.2607 22.6445 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 30 p 9.9734 24.9156 42.2069 -Andale_Mono.ttf 18 W 32.6598 40.5833 31 “ -0.0256 17.6989 13.2460 -Andale_Mono.ttf 18 W 32.6598 40.5833 32 % -0.1406 32.6598 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 33 £ -0.4987 26.7902 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 34 . 33.3794 7.2279 7.2279 -Andale_Mono.ttf 18 W 32.6598 40.5833 35 2 -0.1954 21.9695 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 36 5 -0.0615 22.1304 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 37 m 9.9807 27.6138 30.6264 -Andale_Mono.ttf 18 W 32.6598 40.5833 38 V -0.1794 32.2460 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 39 6 -0.3054 25.4319 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 40 w 9.9906 29.5170 30.4195 -Andale_Mono.ttf 18 W 32.6598 40.5833 41 T 0.2134 29.4710 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 42 M -0.0111 25.2250 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 43 G -0.1201 26.5833 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 44 b -0.2623 24.9156 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 45 9 0.0463 25.2250 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 46 ; 9.8682 7.2279 36.8514 -Andale_Mono.ttf 18 W 32.6598 40.5833 47 D 0.0131 25.2250 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 48 L -0.1893 21.8334 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 49 y 10.0854 26.6417 42.0000 -Andale_Mono.ttf 18 W 32.6598 40.5833 50 ‘ 0.1050 7.2279 13.2460 -Andale_Mono.ttf 18 W 32.6598 40.5833 51 \ -0.0521 24.4014 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 52 R 0.0707 27.3351 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 53 < 5.6745 21.2279 29.2098 -Andale_Mono.ttf 18 W 32.6598 40.5833 54 4 0.2310 27.4836 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 55 8 -0.2126 25.7598 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 56 0 -0.3616 26.7880 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 57 A 0.0840 32.2460 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 58 E -0.1324 21.0793 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 59 B -0.0027 25.0765 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 60 v 10.1385 26.4348 30.4195 -Andale_Mono.ttf 18 W 32.6598 40.5833 61 k -0.2759 26.1253 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 62 J -0.1345 19.6627 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 63 U -0.1889 23.0431 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 64 j 0.0893 15.7239 52.3707 -Andale_Mono.ttf 18 W 32.6598 40.5833 65 ( -0.0006 15.2098 49.6141 -Andale_Mono.ttf 18 W 32.6598 40.5833 66 7 -0.1362 23.7080 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 67 § -0.3309 23.8543 52.5776 -Andale_Mono.ttf 18 W 32.6598 40.5833 68 $ -2.9832 22.6445 47.0152 -Andale_Mono.ttf 18 W 32.6598 40.5833 69 € -0.0458 30.5474 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 70 / -0.0927 24.4014 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 71 C -0.0676 26.7112 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 72 * 0.0985 20.1184 22.4376 -Andale_Mono.ttf 18 W 32.6598 40.5833 73 ” -0.2471 17.6989 13.2460 -Andale_Mono.ttf 18 W 32.6598 40.5833 74 ? -0.2106 20.5652 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 75 { -0.3508 15.8848 50.4376 -Andale_Mono.ttf 18 W 32.6598 40.5833 76 } -0.0625 15.8848 50.4376 -Andale_Mono.ttf 18 W 32.6598 40.5833 77 , 33.4175 7.2279 13.2460 -Andale_Mono.ttf 18 W 32.6598 40.5833 78 I 0.1017 17.9971 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 79 ° -0.2042 15.7261 15.7261 -Andale_Mono.ttf 18 W 32.6598 40.5833 80 K -0.1203 28.2377 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 81 H -0.3317 23.0431 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 82 q 9.9218 24.9156 42.2069 -Andale_Mono.ttf 18 W 32.6598 40.5833 83 & -0.1107 32.6598 40.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 84 ’ -0.7339 7.2279 13.2460 -Andale_Mono.ttf 18 W 32.6598 40.5833 85 [ -0.0042 11.2250 47.8696 -Andale_Mono.ttf 18 W 32.6598 40.5833 86 - 22.8466 16.9359 4.1457 -Andale_Mono.ttf 18 W 32.6598 40.5833 87 Y 0.5326 29.8264 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 88 Q -0.0449 28.6167 47.7692 -Andale_Mono.ttf 18 W 32.6598 40.5833 89 " 0.0955 14.9239 15.2098 -Andale_Mono.ttf 18 W 32.6598 40.5833 90 ! -0.0591 7.2279 40.7902 -Andale_Mono.ttf 18 W 32.6598 40.5833 91 x 10.2122 26.2739 30.4195 -Andale_Mono.ttf 18 W 32.6598 40.5833 92 ) -0.2847 15.2098 49.6141 -Andale_Mono.ttf 18 W 32.6598 40.5833 93 = 12.2550 27.1098 15.2098 -Andale_Mono.ttf 18 W 32.6598 40.5833 94 + 6.2150 26.9971 26.9971 -Andale_Mono.ttf 18 W 32.6598 40.5833 95 X -0.3688 31.0946 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 96 » 9.8164 25.2250 29.2098 -Andale_Mono.ttf 18 W 32.6598 40.5833 97 ' 0.0578 4.4529 15.2098 -Andale_Mono.ttf 18 W 32.6598 40.5833 98 ¢ 4.5928 23.6474 41.2224 -Andale_Mono.ttf 18 W 32.6598 40.5833 99 Z 0.0636 24.3684 40.5833 -Andale_Mono.ttf 18 W 32.6598 40.5833 100 > 5.3232 21.2279 29.2098 -Andale_Mono.ttf 18 W 32.6598 40.5833 101 ® -0.2069 35.0793 34.5652 -Andale_Mono.ttf 18 W 32.6598 40.5833 102 © -0.3563 35.0793 34.5652 -Andale_Mono.ttf 18 W 32.6598 40.5833 103 ] 0.0111 11.2250 47.8696 -Andale_Mono.ttf 18 W 32.6598 40.5833 104 é -1.2558 25.2250 42.0460 -Andale_Mono.ttf 18 W 32.6598 40.5833 105 z 10.0837 23.1917 30.4195 -Andale_Mono.ttf 18 W 32.6598 40.5833 106 _ 49.7342 35.0793 3.8362 -Andale_Mono.ttf 18 W 32.6598 40.5833 107 ¥ -0.2315 29.8264 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 1 t -7.9029 22.6445 38.7569 -Andale_Mono.ttf 19 s 22.4960 30.8333 2 h -10.0141 23.0431 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 3 a 0.0287 24.2529 30.8333 -Andale_Mono.ttf 19 s 22.4960 30.8333 4 n -0.1042 23.0431 30.6264 -Andale_Mono.ttf 19 s 22.4960 30.8333 5 P -10.0655 22.8055 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 6 o -0.1136 26.7880 30.8333 -Andale_Mono.ttf 19 s 22.4960 30.8333 7 e -0.1078 25.2250 30.8333 -Andale_Mono.ttf 19 s 22.4960 30.8333 8 : -0.1766 7.2279 30.8333 -Andale_Mono.ttf 19 s 22.4960 30.8333 9 r -0.0851 20.4043 30.6264 -Andale_Mono.ttf 19 s 22.4960 30.8333 10 l -9.9001 20.4167 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 11 i -10.3084 13.3043 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 12 1 -10.6408 21.0793 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 13 | -10.0441 4.1457 51.1917 -Andale_Mono.ttf 19 s 22.4960 30.8333 14 N -10.0490 24.3684 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 15 f -9.9628 22.7449 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 16 g 0.0810 26.2862 42.2069 -Andale_Mono.ttf 19 s 22.4960 30.8333 17 d -10.1063 24.9156 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 18 W -9.5505 32.6598 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 19 s 0.1085 22.4960 30.8333 -Andale_Mono.ttf 19 s 22.4960 30.8333 20 c 0.0747 24.2529 30.8333 -Andale_Mono.ttf 19 s 22.4960 30.8333 21 u -0.0077 23.0431 30.6264 -Andale_Mono.ttf 19 s 22.4960 30.8333 22 3 -10.3370 22.4376 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 23 ~ 11.1241 31.2431 8.4376 -Andale_Mono.ttf 19 s 22.4960 30.8333 24 # -9.8745 29.7261 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 25 O -9.7941 27.4069 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 26 ` -11.2358 12.2739 8.6445 -Andale_Mono.ttf 19 s 22.4960 30.8333 27 @ -10.0201 29.8848 45.6293 -Andale_Mono.ttf 19 s 22.4960 30.8333 28 F -10.0517 21.8334 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 29 S -9.8516 22.6445 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 30 p 0.0800 24.9156 42.2069 -Andale_Mono.ttf 19 s 22.4960 30.8333 31 “ -10.1124 17.6989 13.2460 -Andale_Mono.ttf 19 s 22.4960 30.8333 32 % -10.1523 32.6598 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 33 £ -10.2492 26.7902 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 34 . 23.6518 7.2279 7.2279 -Andale_Mono.ttf 19 s 22.4960 30.8333 35 2 -10.3035 21.9695 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 36 5 -10.1689 22.1304 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 37 m -0.3963 27.6138 30.6264 -Andale_Mono.ttf 19 s 22.4960 30.8333 38 V -10.0353 32.2460 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 39 6 -10.0249 25.4319 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 40 w 0.1254 29.5170 30.4195 -Andale_Mono.ttf 19 s 22.4960 30.8333 41 T -9.8952 29.4710 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 42 M -9.8168 25.2250 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 43 G -10.1965 26.5833 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 44 b -9.9212 24.9156 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 45 9 -9.9932 25.2250 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 46 ; -0.0200 7.2279 36.8514 -Andale_Mono.ttf 19 s 22.4960 30.8333 47 D -9.6111 25.2250 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 48 L -9.9224 21.8334 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 49 y 0.4265 26.6417 42.0000 -Andale_Mono.ttf 19 s 22.4960 30.8333 50 ‘ -9.8998 7.2279 13.2460 -Andale_Mono.ttf 19 s 22.4960 30.8333 51 \ -10.3263 24.4014 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 52 R -10.0008 27.3351 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 53 < -4.4180 21.2279 29.2098 -Andale_Mono.ttf 19 s 22.4960 30.8333 54 4 -10.1015 27.4836 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 55 8 -10.1638 25.7598 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 56 0 -10.2881 26.7880 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 57 A -9.9569 32.2460 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 58 E -9.8508 21.0793 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 59 B -9.8329 25.0765 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 60 v 0.0696 26.4348 30.4195 -Andale_Mono.ttf 19 s 22.4960 30.8333 61 k -10.1111 26.1253 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 62 J -10.0542 19.6627 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 63 U -9.8419 23.0431 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 64 j -10.0828 15.7239 52.3707 -Andale_Mono.ttf 19 s 22.4960 30.8333 65 ( -10.4663 15.2098 49.6141 -Andale_Mono.ttf 19 s 22.4960 30.8333 66 7 -10.1582 23.7080 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 67 § -10.3280 23.8543 52.5776 -Andale_Mono.ttf 19 s 22.4960 30.8333 68 $ -12.9614 22.6445 47.0152 -Andale_Mono.ttf 19 s 22.4960 30.8333 69 € -10.1284 30.5474 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 70 / -10.4506 24.4014 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 71 C -9.9088 26.7112 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 72 * -10.3213 20.1184 22.4376 -Andale_Mono.ttf 19 s 22.4960 30.8333 73 ” -10.2492 17.6989 13.2460 -Andale_Mono.ttf 19 s 22.4960 30.8333 74 ? -10.2908 20.5652 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 75 { -9.8452 15.8848 50.4376 -Andale_Mono.ttf 19 s 22.4960 30.8333 76 } -10.1015 15.8848 50.4376 -Andale_Mono.ttf 19 s 22.4960 30.8333 77 , 23.5764 7.2279 13.2460 -Andale_Mono.ttf 19 s 22.4960 30.8333 78 I -10.2758 17.9971 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 79 ° -10.2824 15.7261 15.7261 -Andale_Mono.ttf 19 s 22.4960 30.8333 80 K -9.6675 28.2377 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 81 H -10.0661 23.0431 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 82 q 0.1129 24.9156 42.2069 -Andale_Mono.ttf 19 s 22.4960 30.8333 83 & -10.3364 32.6598 40.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 84 ’ -10.2891 7.2279 13.2460 -Andale_Mono.ttf 19 s 22.4960 30.8333 85 [ -10.0880 11.2250 47.8696 -Andale_Mono.ttf 19 s 22.4960 30.8333 86 - 12.3170 16.9359 4.1457 -Andale_Mono.ttf 19 s 22.4960 30.8333 87 Y -9.7599 29.8264 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 88 Q -10.2676 28.6167 47.7692 -Andale_Mono.ttf 19 s 22.4960 30.8333 89 " -10.0870 14.9239 15.2098 -Andale_Mono.ttf 19 s 22.4960 30.8333 90 ! -10.2084 7.2279 40.7902 -Andale_Mono.ttf 19 s 22.4960 30.8333 91 x 0.2642 26.2739 30.4195 -Andale_Mono.ttf 19 s 22.4960 30.8333 92 ) -10.1565 15.2098 49.6141 -Andale_Mono.ttf 19 s 22.4960 30.8333 93 = 2.4452 27.1098 15.2098 -Andale_Mono.ttf 19 s 22.4960 30.8333 94 + -3.5926 26.9971 26.9971 -Andale_Mono.ttf 19 s 22.4960 30.8333 95 X -9.9156 31.0946 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 96 » 0.0948 25.2250 29.2098 -Andale_Mono.ttf 19 s 22.4960 30.8333 97 ' -9.5954 4.4529 15.2098 -Andale_Mono.ttf 19 s 22.4960 30.8333 98 ¢ -5.1114 23.6474 41.2224 -Andale_Mono.ttf 19 s 22.4960 30.8333 99 Z -9.8391 24.3684 40.5833 -Andale_Mono.ttf 19 s 22.4960 30.8333 100 > -4.4382 21.2279 29.2098 -Andale_Mono.ttf 19 s 22.4960 30.8333 101 ® -10.1753 35.0793 34.5652 -Andale_Mono.ttf 19 s 22.4960 30.8333 102 © -10.0327 35.0793 34.5652 -Andale_Mono.ttf 19 s 22.4960 30.8333 103 ] -10.1283 11.2250 47.8696 -Andale_Mono.ttf 19 s 22.4960 30.8333 104 é -11.3674 25.2250 42.0460 -Andale_Mono.ttf 19 s 22.4960 30.8333 105 z 0.1927 23.1917 30.4195 -Andale_Mono.ttf 19 s 22.4960 30.8333 106 _ 39.7858 35.0793 3.8362 -Andale_Mono.ttf 19 s 22.4960 30.8333 107 ¥ -9.8627 29.8264 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 1 t -7.7942 22.6445 38.7569 -Andale_Mono.ttf 20 c 24.2529 30.8333 2 h -9.9870 23.0431 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 3 a 0.2057 24.2529 30.8333 -Andale_Mono.ttf 20 c 24.2529 30.8333 4 n 0.0868 23.0431 30.6264 -Andale_Mono.ttf 20 c 24.2529 30.8333 5 P -9.8458 22.8055 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 6 o -0.1830 26.7880 30.8333 -Andale_Mono.ttf 20 c 24.2529 30.8333 7 e 0.1736 25.2250 30.8333 -Andale_Mono.ttf 20 c 24.2529 30.8333 8 : 0.0640 7.2279 30.8333 -Andale_Mono.ttf 20 c 24.2529 30.8333 9 r 0.1266 20.4043 30.6264 -Andale_Mono.ttf 20 c 24.2529 30.8333 10 l -9.9766 20.4167 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 11 i -9.9190 13.3043 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 12 1 -10.3785 21.0793 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 13 | -10.0302 4.1457 51.1917 -Andale_Mono.ttf 20 c 24.2529 30.8333 14 N -9.8843 24.3684 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 15 f -9.4667 22.7449 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 16 g 0.0488 26.2862 42.2069 -Andale_Mono.ttf 20 c 24.2529 30.8333 17 d -9.8276 24.9156 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 18 W -9.8349 32.6598 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 19 s 0.1293 22.4960 30.8333 -Andale_Mono.ttf 20 c 24.2529 30.8333 20 c -0.0013 24.2529 30.8333 -Andale_Mono.ttf 20 c 24.2529 30.8333 21 u 0.1560 23.0431 30.6264 -Andale_Mono.ttf 20 c 24.2529 30.8333 22 3 -10.2073 22.4376 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 23 ~ 11.3122 31.2431 8.4376 -Andale_Mono.ttf 20 c 24.2529 30.8333 24 # -9.9224 29.7261 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 25 O -10.3992 27.4069 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 26 ` -11.3161 12.2739 8.6445 -Andale_Mono.ttf 20 c 24.2529 30.8333 27 @ -10.0389 29.8848 45.6293 -Andale_Mono.ttf 20 c 24.2529 30.8333 28 F -9.8180 21.8334 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 29 S -10.1111 22.6445 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 30 p 0.0747 24.9156 42.2069 -Andale_Mono.ttf 20 c 24.2529 30.8333 31 “ -9.9705 17.6989 13.2460 -Andale_Mono.ttf 20 c 24.2529 30.8333 32 % -10.0376 32.6598 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 33 £ -10.1908 26.7902 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 34 . 23.6420 7.2279 7.2279 -Andale_Mono.ttf 20 c 24.2529 30.8333 35 2 -9.8787 21.9695 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 36 5 -9.7505 22.1304 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 37 m -0.0757 27.6138 30.6264 -Andale_Mono.ttf 20 c 24.2529 30.8333 38 V -9.8228 32.2460 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 39 6 -10.1330 25.4319 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 40 w 0.3335 29.5170 30.4195 -Andale_Mono.ttf 20 c 24.2529 30.8333 41 T -10.1184 29.4710 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 42 M -9.9309 25.2250 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 43 G -10.1236 26.5833 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 44 b -9.8276 24.9156 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 45 9 -9.9567 25.2250 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 46 ; -0.0744 7.2279 36.8514 -Andale_Mono.ttf 20 c 24.2529 30.8333 47 D -10.3147 25.2250 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 48 L -9.9324 21.8334 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 49 y 0.4327 26.6417 42.0000 -Andale_Mono.ttf 20 c 24.2529 30.8333 50 ‘ -10.0659 7.2279 13.2460 -Andale_Mono.ttf 20 c 24.2529 30.8333 51 \ -9.9078 24.4014 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 52 R -9.9214 27.3351 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 53 < -4.5201 21.2279 29.2098 -Andale_Mono.ttf 20 c 24.2529 30.8333 54 4 -9.7264 27.4836 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 55 8 -10.3123 25.7598 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 56 0 -10.2697 26.7880 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 57 A -9.7713 32.2460 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 58 E -9.9069 21.0793 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 59 B -9.7253 25.0765 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 60 v 0.5565 26.4348 30.4195 -Andale_Mono.ttf 20 c 24.2529 30.8333 61 k -10.1075 26.1253 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 62 J -10.0289 19.6627 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 63 U -9.7851 23.0431 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 64 j -10.4000 15.7239 52.3707 -Andale_Mono.ttf 20 c 24.2529 30.8333 65 ( -10.0308 15.2098 49.6141 -Andale_Mono.ttf 20 c 24.2529 30.8333 66 7 -9.9667 23.7080 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 67 § -10.2810 23.8543 52.5776 -Andale_Mono.ttf 20 c 24.2529 30.8333 68 $ -13.1704 22.6445 47.0152 -Andale_Mono.ttf 20 c 24.2529 30.8333 69 € -10.0540 30.5474 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 70 / -10.5571 24.4014 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 71 C -10.1149 26.7112 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 72 * -9.9551 20.1184 22.4376 -Andale_Mono.ttf 20 c 24.2529 30.8333 73 ” -10.2063 17.6989 13.2460 -Andale_Mono.ttf 20 c 24.2529 30.8333 74 ? -10.0851 20.5652 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 75 { -10.2487 15.8848 50.4376 -Andale_Mono.ttf 20 c 24.2529 30.8333 76 } -9.9050 15.8848 50.4376 -Andale_Mono.ttf 20 c 24.2529 30.8333 77 , 23.4400 7.2279 13.2460 -Andale_Mono.ttf 20 c 24.2529 30.8333 78 I -10.2743 17.9971 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 79 ° -10.3291 15.7261 15.7261 -Andale_Mono.ttf 20 c 24.2529 30.8333 80 K -10.0630 28.2377 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 81 H -9.7430 23.0431 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 82 q 0.1118 24.9156 42.2069 -Andale_Mono.ttf 20 c 24.2529 30.8333 83 & -10.1205 32.6598 40.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 84 ’ -9.9561 7.2279 13.2460 -Andale_Mono.ttf 20 c 24.2529 30.8333 85 [ -9.7671 11.2250 47.8696 -Andale_Mono.ttf 20 c 24.2529 30.8333 86 - 12.5035 16.9359 4.1457 -Andale_Mono.ttf 20 c 24.2529 30.8333 87 Y -9.8822 29.8264 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 88 Q -10.5245 28.6167 47.7692 -Andale_Mono.ttf 20 c 24.2529 30.8333 89 " -10.3216 14.9239 15.2098 -Andale_Mono.ttf 20 c 24.2529 30.8333 90 ! -10.3145 7.2279 40.7902 -Andale_Mono.ttf 20 c 24.2529 30.8333 91 x 0.3124 26.2739 30.4195 -Andale_Mono.ttf 20 c 24.2529 30.8333 92 ) -10.2777 15.2098 49.6141 -Andale_Mono.ttf 20 c 24.2529 30.8333 93 = 2.6922 27.1098 15.2098 -Andale_Mono.ttf 20 c 24.2529 30.8333 94 + -3.3925 26.9971 26.9971 -Andale_Mono.ttf 20 c 24.2529 30.8333 95 X -9.8853 31.0946 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 96 » 0.1299 25.2250 29.2098 -Andale_Mono.ttf 20 c 24.2529 30.8333 97 ' -10.1101 4.4529 15.2098 -Andale_Mono.ttf 20 c 24.2529 30.8333 98 ¢ -5.3158 23.6474 41.2224 -Andale_Mono.ttf 20 c 24.2529 30.8333 99 Z -9.9914 24.3684 40.5833 -Andale_Mono.ttf 20 c 24.2529 30.8333 100 > -4.4272 21.2279 29.2098 -Andale_Mono.ttf 20 c 24.2529 30.8333 101 ® -10.2188 35.0793 34.5652 -Andale_Mono.ttf 20 c 24.2529 30.8333 102 © -10.4412 35.0793 34.5652 -Andale_Mono.ttf 20 c 24.2529 30.8333 103 ] -9.6554 11.2250 47.8696 -Andale_Mono.ttf 20 c 24.2529 30.8333 104 é -11.2927 25.2250 42.0460 -Andale_Mono.ttf 20 c 24.2529 30.8333 105 z 0.3884 23.1917 30.4195 -Andale_Mono.ttf 20 c 24.2529 30.8333 106 _ 39.3634 35.0793 3.8362 -Andale_Mono.ttf 20 c 24.2529 30.8333 107 ¥ -10.1350 29.8264 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 1 t -8.0960 22.6445 38.7569 -Andale_Mono.ttf 21 u 23.0431 30.6264 2 h -10.2385 23.0431 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 3 a -0.3245 24.2529 30.8333 -Andale_Mono.ttf 21 u 23.0431 30.6264 4 n -0.3529 23.0431 30.6264 -Andale_Mono.ttf 21 u 23.0431 30.6264 5 P -10.0801 22.8055 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 6 o 0.0962 26.7880 30.8333 -Andale_Mono.ttf 21 u 23.0431 30.6264 7 e -0.3208 25.2250 30.8333 -Andale_Mono.ttf 21 u 23.0431 30.6264 8 : -0.1693 7.2279 30.8333 -Andale_Mono.ttf 21 u 23.0431 30.6264 9 r -0.1703 20.4043 30.6264 -Andale_Mono.ttf 21 u 23.0431 30.6264 10 l -10.1929 20.4167 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 11 i -10.5782 13.3043 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 12 1 -10.4628 21.0793 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 13 | -10.1744 4.1457 51.1917 -Andale_Mono.ttf 21 u 23.0431 30.6264 14 N -10.3284 24.3684 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 15 f -10.1902 22.7449 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 16 g -0.2910 26.2862 42.2069 -Andale_Mono.ttf 21 u 23.0431 30.6264 17 d -9.8533 24.9156 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 18 W -10.0966 32.6598 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 19 s -0.0708 22.4960 30.8333 -Andale_Mono.ttf 21 u 23.0431 30.6264 20 c -0.1103 24.2529 30.8333 -Andale_Mono.ttf 21 u 23.0431 30.6264 21 u 0.4033 23.0431 30.6264 -Andale_Mono.ttf 21 u 23.0431 30.6264 22 3 -10.3876 22.4376 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 23 ~ 11.1510 31.2431 8.4376 -Andale_Mono.ttf 21 u 23.0431 30.6264 24 # -10.1959 29.7261 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 25 O -10.2929 27.4069 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 26 ` -11.2082 12.2739 8.6445 -Andale_Mono.ttf 21 u 23.0431 30.6264 27 @ -10.4013 29.8848 45.6293 -Andale_Mono.ttf 21 u 23.0431 30.6264 28 F -10.2569 21.8334 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 29 S -10.3728 22.6445 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 30 p -0.4651 24.9156 42.2069 -Andale_Mono.ttf 21 u 23.0431 30.6264 31 “ -10.1761 17.6989 13.2460 -Andale_Mono.ttf 21 u 23.0431 30.6264 32 % -10.3113 32.6598 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 33 £ -10.4100 26.7902 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 34 . 23.4796 7.2279 7.2279 -Andale_Mono.ttf 21 u 23.0431 30.6264 35 2 -10.3054 21.9695 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 36 5 -10.1504 22.1304 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 37 m -0.0055 27.6138 30.6264 -Andale_Mono.ttf 21 u 23.0431 30.6264 38 V -10.0006 32.2460 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 39 6 -10.2314 25.4319 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 40 w 0.0885 29.5170 30.4195 -Andale_Mono.ttf 21 u 23.0431 30.6264 41 T -10.2170 29.4710 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 42 M -10.0689 25.2250 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 43 G -10.5701 26.5833 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 44 b -9.9988 24.9156 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 45 9 -10.5456 25.2250 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 46 ; -0.4261 7.2279 36.8514 -Andale_Mono.ttf 21 u 23.0431 30.6264 47 D -10.3628 25.2250 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 48 L -10.1526 21.8334 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 49 y -0.0425 26.6417 42.0000 -Andale_Mono.ttf 21 u 23.0431 30.6264 50 ‘ -10.5804 7.2279 13.2460 -Andale_Mono.ttf 21 u 23.0431 30.6264 51 \ -9.8900 24.4014 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 52 R -10.1172 27.3351 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 53 < -4.6745 21.2279 29.2098 -Andale_Mono.ttf 21 u 23.0431 30.6264 54 4 -10.0276 27.4836 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 55 8 -10.4893 25.7598 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 56 0 -10.2302 26.7880 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 57 A -10.3175 32.2460 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 58 E -10.4590 21.0793 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 59 B -9.7955 25.0765 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 60 v -0.0636 26.4348 30.4195 -Andale_Mono.ttf 21 u 23.0431 30.6264 61 k -10.0716 26.1253 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 62 J -9.9699 19.6627 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 63 U -10.1639 23.0431 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 64 j -10.4381 15.7239 52.3707 -Andale_Mono.ttf 21 u 23.0431 30.6264 65 ( -10.5449 15.2098 49.6141 -Andale_Mono.ttf 21 u 23.0431 30.6264 66 7 -10.2215 23.7080 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 67 § -10.0182 23.8543 52.5776 -Andale_Mono.ttf 21 u 23.0431 30.6264 68 $ -13.0438 22.6445 47.0152 -Andale_Mono.ttf 21 u 23.0431 30.6264 69 € -10.5325 30.5474 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 70 / -10.3523 24.4014 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 71 C -10.4670 26.7112 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 72 * -9.6180 20.1184 22.4376 -Andale_Mono.ttf 21 u 23.0431 30.6264 73 ” -10.7247 17.6989 13.2460 -Andale_Mono.ttf 21 u 23.0431 30.6264 74 ? -10.3486 20.5652 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 75 { -10.2295 15.8848 50.4376 -Andale_Mono.ttf 21 u 23.0431 30.6264 76 } -10.1902 15.8848 50.4376 -Andale_Mono.ttf 21 u 23.0431 30.6264 77 , 23.1238 7.2279 13.2460 -Andale_Mono.ttf 21 u 23.0431 30.6264 78 I -10.2121 17.9971 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 79 ° -10.0869 15.7261 15.7261 -Andale_Mono.ttf 21 u 23.0431 30.6264 80 K -10.2587 28.2377 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 81 H -10.1419 23.0431 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 82 q -0.5376 24.9156 42.2069 -Andale_Mono.ttf 21 u 23.0431 30.6264 83 & -10.2889 32.6598 40.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 84 ’ -10.1768 7.2279 13.2460 -Andale_Mono.ttf 21 u 23.0431 30.6264 85 [ -10.1425 11.2250 47.8696 -Andale_Mono.ttf 21 u 23.0431 30.6264 86 - 12.1543 16.9359 4.1457 -Andale_Mono.ttf 21 u 23.0431 30.6264 87 Y -10.4265 29.8264 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 88 Q -10.3262 28.6167 47.7692 -Andale_Mono.ttf 21 u 23.0431 30.6264 89 " -9.8529 14.9239 15.2098 -Andale_Mono.ttf 21 u 23.0431 30.6264 90 ! -10.1172 7.2279 40.7902 -Andale_Mono.ttf 21 u 23.0431 30.6264 91 x 0.0184 26.2739 30.4195 -Andale_Mono.ttf 21 u 23.0431 30.6264 92 ) -10.3285 15.2098 49.6141 -Andale_Mono.ttf 21 u 23.0431 30.6264 93 = 2.5945 27.1098 15.2098 -Andale_Mono.ttf 21 u 23.0431 30.6264 94 + -3.5175 26.9971 26.9971 -Andale_Mono.ttf 21 u 23.0431 30.6264 95 X -10.2093 31.0946 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 96 » -0.3908 25.2250 29.2098 -Andale_Mono.ttf 21 u 23.0431 30.6264 97 ' -10.1893 4.4529 15.2098 -Andale_Mono.ttf 21 u 23.0431 30.6264 98 ¢ -5.4560 23.6474 41.2224 -Andale_Mono.ttf 21 u 23.0431 30.6264 99 Z -10.2492 24.3684 40.5833 -Andale_Mono.ttf 21 u 23.0431 30.6264 100 > -4.6603 21.2279 29.2098 -Andale_Mono.ttf 21 u 23.0431 30.6264 101 ® -10.5531 35.0793 34.5652 -Andale_Mono.ttf 21 u 23.0431 30.6264 102 © -10.6619 35.0793 34.5652 -Andale_Mono.ttf 21 u 23.0431 30.6264 103 ] -9.7768 11.2250 47.8696 -Andale_Mono.ttf 21 u 23.0431 30.6264 104 é -11.5425 25.2250 42.0460 -Andale_Mono.ttf 21 u 23.0431 30.6264 105 z -0.2885 23.1917 30.4195 -Andale_Mono.ttf 21 u 23.0431 30.6264 106 _ 39.5293 35.0793 3.8362 -Andale_Mono.ttf 21 u 23.0431 30.6264 107 ¥ -10.5009 29.8264 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 1 t 2.1274 22.6445 38.7569 -Andale_Mono.ttf 22 3 22.4376 40.9971 2 h 0.1670 23.0431 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 3 a 10.2523 24.2529 30.8333 -Andale_Mono.ttf 22 3 22.4376 40.9971 4 n 10.0902 23.0431 30.6264 -Andale_Mono.ttf 22 3 22.4376 40.9971 5 P 0.0566 22.8055 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 6 o 10.2894 26.7880 30.8333 -Andale_Mono.ttf 22 3 22.4376 40.9971 7 e 10.2126 25.2250 30.8333 -Andale_Mono.ttf 22 3 22.4376 40.9971 8 : 10.1965 7.2279 30.8333 -Andale_Mono.ttf 22 3 22.4376 40.9971 9 r 10.4519 20.4043 30.6264 -Andale_Mono.ttf 22 3 22.4376 40.9971 10 l 0.5044 20.4167 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 11 i 0.0981 13.3043 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 12 1 -0.1575 21.0793 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 13 | 0.4373 4.1457 51.1917 -Andale_Mono.ttf 22 3 22.4376 40.9971 14 N 0.4883 24.3684 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 15 f 0.4507 22.7449 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 16 g 10.1709 26.2862 42.2069 -Andale_Mono.ttf 22 3 22.4376 40.9971 17 d 0.3335 24.9156 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 18 W 0.1573 32.6598 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 19 s 10.3350 22.4960 30.8333 -Andale_Mono.ttf 22 3 22.4376 40.9971 20 c 10.0948 24.2529 30.8333 -Andale_Mono.ttf 22 3 22.4376 40.9971 21 u 10.1421 23.0431 30.6264 -Andale_Mono.ttf 22 3 22.4376 40.9971 22 3 -0.0647 22.4376 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 23 ~ 21.2308 31.2431 8.4376 -Andale_Mono.ttf 22 3 22.4376 40.9971 24 # 0.2830 29.7261 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 25 O 0.0594 27.4069 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 26 ` -1.1606 12.2739 8.6445 -Andale_Mono.ttf 22 3 22.4376 40.9971 27 @ 0.1243 29.8848 45.6293 -Andale_Mono.ttf 22 3 22.4376 40.9971 28 F 0.0561 21.8334 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 29 S -0.0523 22.6445 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 30 p 9.9673 24.9156 42.2069 -Andale_Mono.ttf 22 3 22.4376 40.9971 31 “ -0.0724 17.6989 13.2460 -Andale_Mono.ttf 22 3 22.4376 40.9971 32 % 0.0582 32.6598 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 33 £ -0.0743 26.7902 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 34 . 33.6628 7.2279 7.2279 -Andale_Mono.ttf 22 3 22.4376 40.9971 35 2 0.1463 21.9695 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 36 5 0.4856 22.1304 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 37 m 10.2448 27.6138 30.6264 -Andale_Mono.ttf 22 3 22.4376 40.9971 38 V 0.3017 32.2460 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 39 6 -0.1739 25.4319 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 40 w 10.1645 29.5170 30.4195 -Andale_Mono.ttf 22 3 22.4376 40.9971 41 T 0.3281 29.4710 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 42 M 0.3187 25.2250 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 43 G -0.2777 26.5833 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 44 b 0.1778 24.9156 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 45 9 0.0152 25.2250 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 46 ; 9.9115 7.2279 36.8514 -Andale_Mono.ttf 22 3 22.4376 40.9971 47 D 0.1795 25.2250 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 48 L 0.3907 21.8334 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 49 y 10.6969 26.6417 42.0000 -Andale_Mono.ttf 22 3 22.4376 40.9971 50 ‘ 0.1956 7.2279 13.2460 -Andale_Mono.ttf 22 3 22.4376 40.9971 51 \ -0.0044 24.4014 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 52 R 0.2136 27.3351 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 53 < 5.6187 21.2279 29.2098 -Andale_Mono.ttf 22 3 22.4376 40.9971 54 4 0.1673 27.4836 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 55 8 0.2425 25.7598 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 56 0 0.0084 26.7880 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 57 A 0.2816 32.2460 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 58 E 0.2007 21.0793 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 59 B 0.2874 25.0765 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 60 v 10.4950 26.4348 30.4195 -Andale_Mono.ttf 22 3 22.4376 40.9971 61 k 0.2669 26.1253 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 62 J 0.1604 19.6627 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 63 U 0.0458 23.0431 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 64 j 0.3782 15.7239 52.3707 -Andale_Mono.ttf 22 3 22.4376 40.9971 65 ( -0.1453 15.2098 49.6141 -Andale_Mono.ttf 22 3 22.4376 40.9971 66 7 0.2069 23.7080 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 67 § 0.0985 23.8543 52.5776 -Andale_Mono.ttf 22 3 22.4376 40.9971 68 $ -2.8715 22.6445 47.0152 -Andale_Mono.ttf 22 3 22.4376 40.9971 69 € 0.1912 30.5474 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 70 / -0.1230 24.4014 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 71 C -0.3592 26.7112 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 72 * -0.0335 20.1184 22.4376 -Andale_Mono.ttf 22 3 22.4376 40.9971 73 ” -0.0828 17.6989 13.2460 -Andale_Mono.ttf 22 3 22.4376 40.9971 74 ? -0.1557 20.5652 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 75 { -0.0464 15.8848 50.4376 -Andale_Mono.ttf 22 3 22.4376 40.9971 76 } -0.0914 15.8848 50.4376 -Andale_Mono.ttf 22 3 22.4376 40.9971 77 , 33.4516 7.2279 13.2460 -Andale_Mono.ttf 22 3 22.4376 40.9971 78 I 0.3034 17.9971 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 79 ° 0.0149 15.7261 15.7261 -Andale_Mono.ttf 22 3 22.4376 40.9971 80 K 0.1348 28.2377 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 81 H 0.1332 23.0431 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 82 q 10.1178 24.9156 42.2069 -Andale_Mono.ttf 22 3 22.4376 40.9971 83 & 0.1297 32.6598 40.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 84 ’ -0.0301 7.2279 13.2460 -Andale_Mono.ttf 22 3 22.4376 40.9971 85 [ 0.1215 11.2250 47.8696 -Andale_Mono.ttf 22 3 22.4376 40.9971 86 - 22.6710 16.9359 4.1457 -Andale_Mono.ttf 22 3 22.4376 40.9971 87 Y 0.4353 29.8264 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 88 Q -0.1531 28.6167 47.7692 -Andale_Mono.ttf 22 3 22.4376 40.9971 89 " 0.1839 14.9239 15.2098 -Andale_Mono.ttf 22 3 22.4376 40.9971 90 ! 0.0157 7.2279 40.7902 -Andale_Mono.ttf 22 3 22.4376 40.9971 91 x 10.3515 26.2739 30.4195 -Andale_Mono.ttf 22 3 22.4376 40.9971 92 ) -0.2803 15.2098 49.6141 -Andale_Mono.ttf 22 3 22.4376 40.9971 93 = 12.8234 27.1098 15.2098 -Andale_Mono.ttf 22 3 22.4376 40.9971 94 + 6.7376 26.9971 26.9971 -Andale_Mono.ttf 22 3 22.4376 40.9971 95 X 0.3908 31.0946 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 96 » 10.3540 25.2250 29.2098 -Andale_Mono.ttf 22 3 22.4376 40.9971 97 ' 0.1530 4.4529 15.2098 -Andale_Mono.ttf 22 3 22.4376 40.9971 98 ¢ 4.9692 23.6474 41.2224 -Andale_Mono.ttf 22 3 22.4376 40.9971 99 Z 0.1466 24.3684 40.5833 -Andale_Mono.ttf 22 3 22.4376 40.9971 100 > 6.1194 21.2279 29.2098 -Andale_Mono.ttf 22 3 22.4376 40.9971 101 ® -0.1615 35.0793 34.5652 -Andale_Mono.ttf 22 3 22.4376 40.9971 102 © -0.0878 35.0793 34.5652 -Andale_Mono.ttf 22 3 22.4376 40.9971 103 ] 0.2572 11.2250 47.8696 -Andale_Mono.ttf 22 3 22.4376 40.9971 104 é -0.8168 25.2250 42.0460 -Andale_Mono.ttf 22 3 22.4376 40.9971 105 z 10.3679 23.1917 30.4195 -Andale_Mono.ttf 22 3 22.4376 40.9971 106 _ 49.8850 35.0793 3.8362 -Andale_Mono.ttf 22 3 22.4376 40.9971 107 ¥ 0.1856 29.8264 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 1 t -19.2295 22.6445 38.7569 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 2 h -20.9768 23.0431 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 3 a -10.9430 24.2529 30.8333 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 4 n -11.0065 23.0431 30.6264 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 5 P -20.9781 22.8055 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 6 o -11.0055 26.7880 30.8333 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 7 e -11.1994 25.2250 30.8333 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 8 : -11.5163 7.2279 30.8333 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 9 r -11.2850 20.4043 30.6264 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 10 l -20.9973 20.4167 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 11 i -21.3247 13.3043 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 12 1 -21.1040 21.0793 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 13 | -21.2793 4.1457 51.1917 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 14 N -21.1737 24.3684 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 15 f -21.2092 22.7449 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 16 g -11.3036 26.2862 42.2069 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 17 d -21.2046 24.9156 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 18 W -21.1600 32.6598 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 19 s -10.7989 22.4960 30.8333 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 20 c -10.8576 24.2529 30.8333 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 21 u -10.8006 23.0431 30.6264 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 22 3 -21.2468 22.4376 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 23 ~ -0.0577 31.2431 8.4376 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 24 # -21.0662 29.7261 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 25 O -21.2791 27.4069 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 26 ` -22.5637 12.2739 8.6445 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 27 @ -21.2557 29.8848 45.6293 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 28 F -21.0400 21.8334 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 29 S -21.4548 22.6445 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 30 p -10.9780 24.9156 42.2069 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 31 “ -21.5261 17.6989 13.2460 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 32 % -21.3067 32.6598 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 33 £ -21.7891 26.7902 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 34 . 12.3181 7.2279 7.2279 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 35 2 -21.2952 21.9695 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 36 5 -21.2157 22.1304 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 37 m -11.1310 27.6138 30.6264 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 38 V -21.0223 32.2460 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 39 6 -21.4110 25.4319 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 40 w -11.1868 29.5170 30.4195 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 41 T -21.3809 29.4710 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 42 M -21.0122 25.2250 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 43 G -21.1843 26.5833 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 44 b -20.9241 24.9156 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 45 9 -21.2101 25.2250 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 46 ; -11.1454 7.2279 36.8514 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 47 D -21.3044 25.2250 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 48 L -21.2812 21.8334 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 49 y -11.0144 26.6417 42.0000 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 50 ‘ -21.5856 7.2279 13.2460 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 51 \ -21.1932 24.4014 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 52 R -21.1923 27.3351 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 53 < -16.0343 21.2279 29.2098 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 54 4 -21.1990 27.4836 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 55 8 -21.1973 25.7598 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 56 0 -21.3356 26.7880 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 57 A -21.0342 32.2460 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 58 E -20.9821 21.0793 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 59 B -21.3392 25.0765 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 60 v -10.8535 26.4348 30.4195 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 61 k -21.1117 26.1253 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 62 J -21.0718 19.6627 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 63 U -20.9514 23.0431 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 64 j -21.2747 15.7239 52.3707 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 65 ( -21.0017 15.2098 49.6141 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 66 7 -21.0593 23.7080 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 67 § -21.6017 23.8543 52.5776 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 68 $ -24.5901 22.6445 47.0152 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 69 € -21.1126 30.5474 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 70 / -21.4540 24.4014 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 71 C -21.1646 26.7112 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 72 * -21.1064 20.1184 22.4376 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 73 ” -21.2634 17.6989 13.2460 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 74 ? -21.2124 20.5652 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 75 { -21.5322 15.8848 50.4376 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 76 } -21.2573 15.8848 50.4376 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 77 , 12.0463 7.2279 13.2460 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 78 I -20.8864 17.9971 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 79 ° -21.0353 15.7261 15.7261 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 80 K -21.0536 28.2377 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 81 H -21.1701 23.0431 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 82 q -11.0764 24.9156 42.2069 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 83 & -21.1937 32.6598 40.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 84 ’ -21.3099 7.2279 13.2460 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 85 [ -20.8839 11.2250 47.8696 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 86 - 1.3101 16.9359 4.1457 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 87 Y -21.0689 29.8264 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 88 Q -21.1109 28.6167 47.7692 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 89 " -21.0528 14.9239 15.2098 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 90 ! -20.8996 7.2279 40.7902 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 91 x -10.6910 26.2739 30.4195 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 92 ) -21.3517 15.2098 49.6141 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 93 = -8.4284 27.1098 15.2098 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 94 + -14.4801 26.9971 26.9971 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 95 X -21.1008 31.0946 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 96 » -11.2048 25.2250 29.2098 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 97 ' -20.8182 4.4529 15.2098 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 98 ¢ -15.8101 23.6474 41.2224 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 99 Z -21.1870 24.3684 40.5833 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 100 > -15.6130 21.2279 29.2098 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 101 ® -21.2201 35.0793 34.5652 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 102 © -21.4359 35.0793 34.5652 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 103 ] -20.7376 11.2250 47.8696 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 104 é -22.4647 25.2250 42.0460 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 105 z -10.8664 23.1917 30.4195 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 106 _ 28.4230 35.0793 3.8362 -Andale_Mono.ttf 23 ~ 31.2431 8.4376 107 ¥ -21.3778 29.8264 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 1 t 2.1671 22.6445 38.7569 -Andale_Mono.ttf 24 # 29.7261 40.5833 2 h -0.0352 23.0431 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 3 a 10.1283 24.2529 30.8333 -Andale_Mono.ttf 24 # 29.7261 40.5833 4 n 10.2360 23.0431 30.6264 -Andale_Mono.ttf 24 # 29.7261 40.5833 5 P -0.1182 22.8055 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 6 o 9.9350 26.7880 30.8333 -Andale_Mono.ttf 24 # 29.7261 40.5833 7 e 9.7883 25.2250 30.8333 -Andale_Mono.ttf 24 # 29.7261 40.5833 8 : 9.8285 7.2279 30.8333 -Andale_Mono.ttf 24 # 29.7261 40.5833 9 r 10.3019 20.4043 30.6264 -Andale_Mono.ttf 24 # 29.7261 40.5833 10 l 0.0094 20.4167 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 11 i -0.4351 13.3043 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 12 1 -0.1981 21.0793 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 13 | -0.2304 4.1457 51.1917 -Andale_Mono.ttf 24 # 29.7261 40.5833 14 N -0.1249 24.3684 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 15 f -0.1713 22.7449 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 16 g 9.9837 26.2862 42.2069 -Andale_Mono.ttf 24 # 29.7261 40.5833 17 d -0.0030 24.9156 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 18 W -0.0648 32.6598 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 19 s 10.0879 22.4960 30.8333 -Andale_Mono.ttf 24 # 29.7261 40.5833 20 c 10.1630 24.2529 30.8333 -Andale_Mono.ttf 24 # 29.7261 40.5833 21 u 9.8908 23.0431 30.6264 -Andale_Mono.ttf 24 # 29.7261 40.5833 22 3 -0.0548 22.4376 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 23 ~ 21.0239 31.2431 8.4376 -Andale_Mono.ttf 24 # 29.7261 40.5833 24 # 0.0456 29.7261 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 25 O -0.0506 27.4069 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 26 ` -1.2644 12.2739 8.6445 -Andale_Mono.ttf 24 # 29.7261 40.5833 27 @ -0.1517 29.8848 45.6293 -Andale_Mono.ttf 24 # 29.7261 40.5833 28 F 0.1063 21.8334 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 29 S -0.1877 22.6445 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 30 p 10.1243 24.9156 42.2069 -Andale_Mono.ttf 24 # 29.7261 40.5833 31 “ 0.2551 17.6989 13.2460 -Andale_Mono.ttf 24 # 29.7261 40.5833 32 % -0.4366 32.6598 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 33 £ -0.2948 26.7902 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 34 . 33.4606 7.2279 7.2279 -Andale_Mono.ttf 24 # 29.7261 40.5833 35 2 -0.3303 21.9695 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 36 5 0.1638 22.1304 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 37 m 9.9203 27.6138 30.6264 -Andale_Mono.ttf 24 # 29.7261 40.5833 38 V 0.0546 32.2460 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 39 6 -0.3473 25.4319 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 40 w 10.2322 29.5170 30.4195 -Andale_Mono.ttf 24 # 29.7261 40.5833 41 T -0.0797 29.4710 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 42 M -0.1162 25.2250 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 43 G -0.4797 26.5833 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 44 b -0.1705 24.9156 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 45 9 -0.2759 25.2250 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 46 ; 9.7640 7.2279 36.8514 -Andale_Mono.ttf 24 # 29.7261 40.5833 47 D 0.1404 25.2250 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 48 L -0.1437 21.8334 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 49 y 10.3293 26.6417 42.0000 -Andale_Mono.ttf 24 # 29.7261 40.5833 50 ‘ -0.3292 7.2279 13.2460 -Andale_Mono.ttf 24 # 29.7261 40.5833 51 \ -0.5215 24.4014 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 52 R -0.2331 27.3351 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 53 < 5.5770 21.2279 29.2098 -Andale_Mono.ttf 24 # 29.7261 40.5833 54 4 -0.2366 27.4836 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 55 8 -0.2042 25.7598 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 56 0 -0.0803 26.7880 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 57 A 0.1738 32.2460 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 58 E -0.1754 21.0793 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 59 B -0.3364 25.0765 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 60 v 10.1293 26.4348 30.4195 -Andale_Mono.ttf 24 # 29.7261 40.5833 61 k -0.3280 26.1253 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 62 J 0.2756 19.6627 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 63 U 0.1567 23.0431 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 64 j -0.2217 15.7239 52.3707 -Andale_Mono.ttf 24 # 29.7261 40.5833 65 ( -0.6399 15.2098 49.6141 -Andale_Mono.ttf 24 # 29.7261 40.5833 66 7 0.0389 23.7080 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 67 § -0.2190 23.8543 52.5776 -Andale_Mono.ttf 24 # 29.7261 40.5833 68 $ -2.8357 22.6445 47.0152 -Andale_Mono.ttf 24 # 29.7261 40.5833 69 € -0.1647 30.5474 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 70 / -0.1416 24.4014 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 71 C -0.3318 26.7112 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 72 * 0.2379 20.1184 22.4376 -Andale_Mono.ttf 24 # 29.7261 40.5833 73 ” -0.2700 17.6989 13.2460 -Andale_Mono.ttf 24 # 29.7261 40.5833 74 ? -0.1157 20.5652 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 75 { -0.2492 15.8848 50.4376 -Andale_Mono.ttf 24 # 29.7261 40.5833 76 } 0.1657 15.8848 50.4376 -Andale_Mono.ttf 24 # 29.7261 40.5833 77 , 33.7449 7.2279 13.2460 -Andale_Mono.ttf 24 # 29.7261 40.5833 78 I -0.1404 17.9971 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 79 ° -0.2630 15.7261 15.7261 -Andale_Mono.ttf 24 # 29.7261 40.5833 80 K -0.2248 28.2377 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 81 H 0.1343 23.0431 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 82 q 9.8208 24.9156 42.2069 -Andale_Mono.ttf 24 # 29.7261 40.5833 83 & -0.1600 32.6598 40.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 84 ’ -0.4653 7.2279 13.2460 -Andale_Mono.ttf 24 # 29.7261 40.5833 85 [ 0.0318 11.2250 47.8696 -Andale_Mono.ttf 24 # 29.7261 40.5833 86 - 22.4366 16.9359 4.1457 -Andale_Mono.ttf 24 # 29.7261 40.5833 87 Y -0.2092 29.8264 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 88 Q -0.1197 28.6167 47.7692 -Andale_Mono.ttf 24 # 29.7261 40.5833 89 " -0.3358 14.9239 15.2098 -Andale_Mono.ttf 24 # 29.7261 40.5833 90 ! 0.0837 7.2279 40.7902 -Andale_Mono.ttf 24 # 29.7261 40.5833 91 x 10.2623 26.2739 30.4195 -Andale_Mono.ttf 24 # 29.7261 40.5833 92 ) -0.4489 15.2098 49.6141 -Andale_Mono.ttf 24 # 29.7261 40.5833 93 = 12.5107 27.1098 15.2098 -Andale_Mono.ttf 24 # 29.7261 40.5833 94 + 6.4027 26.9971 26.9971 -Andale_Mono.ttf 24 # 29.7261 40.5833 95 X 0.0487 31.0946 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 96 » 9.9743 25.2250 29.2098 -Andale_Mono.ttf 24 # 29.7261 40.5833 97 ' -0.2112 4.4529 15.2098 -Andale_Mono.ttf 24 # 29.7261 40.5833 98 ¢ 4.8799 23.6474 41.2224 -Andale_Mono.ttf 24 # 29.7261 40.5833 99 Z 0.1334 24.3684 40.5833 -Andale_Mono.ttf 24 # 29.7261 40.5833 100 > 5.5572 21.2279 29.2098 -Andale_Mono.ttf 24 # 29.7261 40.5833 101 ® -0.2539 35.0793 34.5652 -Andale_Mono.ttf 24 # 29.7261 40.5833 102 © -0.1491 35.0793 34.5652 -Andale_Mono.ttf 24 # 29.7261 40.5833 103 ] 0.0335 11.2250 47.8696 -Andale_Mono.ttf 24 # 29.7261 40.5833 104 é -1.3517 25.2250 42.0460 -Andale_Mono.ttf 24 # 29.7261 40.5833 105 z 10.1965 23.1917 30.4195 -Andale_Mono.ttf 24 # 29.7261 40.5833 106 _ 49.7896 35.0793 3.8362 -Andale_Mono.ttf 24 # 29.7261 40.5833 107 ¥ -0.1374 29.8264 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 1 t 2.3137 22.6445 38.7569 -Andale_Mono.ttf 25 O 27.4069 40.9971 2 h 0.2642 23.0431 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 3 a 9.9768 24.2529 30.8333 -Andale_Mono.ttf 25 O 27.4069 40.9971 4 n 10.1325 23.0431 30.6264 -Andale_Mono.ttf 25 O 27.4069 40.9971 5 P 0.2391 22.8055 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 6 o 10.0923 26.7880 30.8333 -Andale_Mono.ttf 25 O 27.4069 40.9971 7 e 10.3003 25.2250 30.8333 -Andale_Mono.ttf 25 O 27.4069 40.9971 8 : 10.2314 7.2279 30.8333 -Andale_Mono.ttf 25 O 27.4069 40.9971 9 r 9.9297 20.4043 30.6264 -Andale_Mono.ttf 25 O 27.4069 40.9971 10 l -0.0373 20.4167 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 11 i 0.0070 13.3043 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 12 1 -0.2523 21.0793 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 13 | 0.4373 4.1457 51.1917 -Andale_Mono.ttf 25 O 27.4069 40.9971 14 N 0.2757 24.3684 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 15 f 0.1653 22.7449 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 16 g 10.0828 26.2862 42.2069 -Andale_Mono.ttf 25 O 27.4069 40.9971 17 d 0.3197 24.9156 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 18 W -0.2504 32.6598 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 19 s 9.9634 22.4960 30.8333 -Andale_Mono.ttf 25 O 27.4069 40.9971 20 c 10.1044 24.2529 30.8333 -Andale_Mono.ttf 25 O 27.4069 40.9971 21 u 10.4052 23.0431 30.6264 -Andale_Mono.ttf 25 O 27.4069 40.9971 22 3 0.1855 22.4376 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 23 ~ 21.1406 31.2431 8.4376 -Andale_Mono.ttf 25 O 27.4069 40.9971 24 # 0.2343 29.7261 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 25 O 0.0717 27.4069 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 26 ` -0.9644 12.2739 8.6445 -Andale_Mono.ttf 25 O 27.4069 40.9971 27 @ -0.3232 29.8848 45.6293 -Andale_Mono.ttf 25 O 27.4069 40.9971 28 F 0.2139 21.8334 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 29 S 0.1361 22.6445 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 30 p 10.2931 24.9156 42.2069 -Andale_Mono.ttf 25 O 27.4069 40.9971 31 “ -0.0019 17.6989 13.2460 -Andale_Mono.ttf 25 O 27.4069 40.9971 32 % -0.0622 32.6598 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 33 £ -0.1091 26.7902 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 34 . 33.8637 7.2279 7.2279 -Andale_Mono.ttf 25 O 27.4069 40.9971 35 2 0.1795 21.9695 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 36 5 0.1609 22.1304 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 37 m 9.9216 27.6138 30.6264 -Andale_Mono.ttf 25 O 27.4069 40.9971 38 V -0.0450 32.2460 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 39 6 0.2416 25.4319 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 40 w 10.4461 29.5170 30.4195 -Andale_Mono.ttf 25 O 27.4069 40.9971 41 T 0.0967 29.4710 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 42 M 0.2682 25.2250 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 43 G 0.0672 26.5833 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 44 b 0.1433 24.9156 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 45 9 0.4567 25.2250 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 46 ; 10.2551 7.2279 36.8514 -Andale_Mono.ttf 25 O 27.4069 40.9971 47 D 0.4253 25.2250 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 48 L 0.0500 21.8334 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 49 y 10.2731 26.6417 42.0000 -Andale_Mono.ttf 25 O 27.4069 40.9971 50 ‘ -0.0164 7.2279 13.2460 -Andale_Mono.ttf 25 O 27.4069 40.9971 51 \ -0.2152 24.4014 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 52 R 0.0956 27.3351 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 53 < 5.7427 21.2279 29.2098 -Andale_Mono.ttf 25 O 27.4069 40.9971 54 4 0.2180 27.4836 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 55 8 -0.2241 25.7598 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 56 0 -0.1432 26.7880 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 57 A 0.0820 32.2460 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 58 E 0.2458 21.0793 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 59 B 0.2351 25.0765 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 60 v 10.3017 26.4348 30.4195 -Andale_Mono.ttf 25 O 27.4069 40.9971 61 k 0.2996 26.1253 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 62 J -0.1325 19.6627 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 63 U 0.1586 23.0431 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 64 j -0.0486 15.7239 52.3707 -Andale_Mono.ttf 25 O 27.4069 40.9971 65 ( 0.1965 15.2098 49.6141 -Andale_Mono.ttf 25 O 27.4069 40.9971 66 7 0.1697 23.7080 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 67 § 0.0922 23.8543 52.5776 -Andale_Mono.ttf 25 O 27.4069 40.9971 68 $ -3.0403 22.6445 47.0152 -Andale_Mono.ttf 25 O 27.4069 40.9971 69 € 0.1139 30.5474 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 70 / 0.3180 24.4014 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 71 C -0.4667 26.7112 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 72 * 0.2494 20.1184 22.4376 -Andale_Mono.ttf 25 O 27.4069 40.9971 73 ” 0.1176 17.6989 13.2460 -Andale_Mono.ttf 25 O 27.4069 40.9971 74 ? -0.1213 20.5652 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 75 { 0.2445 15.8848 50.4376 -Andale_Mono.ttf 25 O 27.4069 40.9971 76 } 0.3864 15.8848 50.4376 -Andale_Mono.ttf 25 O 27.4069 40.9971 77 , 33.4797 7.2279 13.2460 -Andale_Mono.ttf 25 O 27.4069 40.9971 78 I 0.3096 17.9971 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 79 ° -0.0052 15.7261 15.7261 -Andale_Mono.ttf 25 O 27.4069 40.9971 80 K 0.2565 28.2377 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 81 H 0.3751 23.0431 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 82 q 10.4462 24.9156 42.2069 -Andale_Mono.ttf 25 O 27.4069 40.9971 83 & -0.0170 32.6598 40.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 84 ’ -0.0402 7.2279 13.2460 -Andale_Mono.ttf 25 O 27.4069 40.9971 85 [ 0.0280 11.2250 47.8696 -Andale_Mono.ttf 25 O 27.4069 40.9971 86 - 22.5957 16.9359 4.1457 -Andale_Mono.ttf 25 O 27.4069 40.9971 87 Y 0.2396 29.8264 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 88 Q 0.2184 28.6167 47.7692 -Andale_Mono.ttf 25 O 27.4069 40.9971 89 " 0.6722 14.9239 15.2098 -Andale_Mono.ttf 25 O 27.4069 40.9971 90 ! 0.0383 7.2279 40.7902 -Andale_Mono.ttf 25 O 27.4069 40.9971 91 x 10.6714 26.2739 30.4195 -Andale_Mono.ttf 25 O 27.4069 40.9971 92 ) 0.0854 15.2098 49.6141 -Andale_Mono.ttf 25 O 27.4069 40.9971 93 = 12.9195 27.1098 15.2098 -Andale_Mono.ttf 25 O 27.4069 40.9971 94 + 6.9927 26.9971 26.9971 -Andale_Mono.ttf 25 O 27.4069 40.9971 95 X 0.2966 31.0946 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 96 » 10.3414 25.2250 29.2098 -Andale_Mono.ttf 25 O 27.4069 40.9971 97 ' -0.0383 4.4529 15.2098 -Andale_Mono.ttf 25 O 27.4069 40.9971 98 ¢ 5.0222 23.6474 41.2224 -Andale_Mono.ttf 25 O 27.4069 40.9971 99 Z 0.3335 24.3684 40.5833 -Andale_Mono.ttf 25 O 27.4069 40.9971 100 > 5.3557 21.2279 29.2098 -Andale_Mono.ttf 25 O 27.4069 40.9971 101 ® 0.0889 35.0793 34.5652 -Andale_Mono.ttf 25 O 27.4069 40.9971 102 © -0.0831 35.0793 34.5652 -Andale_Mono.ttf 25 O 27.4069 40.9971 103 ] 0.2123 11.2250 47.8696 -Andale_Mono.ttf 25 O 27.4069 40.9971 104 é -0.9950 25.2250 42.0460 -Andale_Mono.ttf 25 O 27.4069 40.9971 105 z 10.3479 23.1917 30.4195 -Andale_Mono.ttf 25 O 27.4069 40.9971 106 _ 50.0161 35.0793 3.8362 -Andale_Mono.ttf 25 O 27.4069 40.9971 107 ¥ 0.4802 29.8264 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 1 t 3.2647 22.6445 38.7569 -Andale_Mono.ttf 26 ` 12.2739 8.6445 2 h 1.4169 23.0431 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 3 a 11.1358 24.2529 30.8333 -Andale_Mono.ttf 26 ` 12.2739 8.6445 4 n 11.0300 23.0431 30.6264 -Andale_Mono.ttf 26 ` 12.2739 8.6445 5 P 0.9081 22.8055 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 6 o 11.1660 26.7880 30.8333 -Andale_Mono.ttf 26 ` 12.2739 8.6445 7 e 10.8851 25.2250 30.8333 -Andale_Mono.ttf 26 ` 12.2739 8.6445 8 : 11.0383 7.2279 30.8333 -Andale_Mono.ttf 26 ` 12.2739 8.6445 9 r 10.9358 20.4043 30.6264 -Andale_Mono.ttf 26 ` 12.2739 8.6445 10 l 1.2192 20.4167 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 11 i 0.8739 13.3043 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 12 1 0.9705 21.0793 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 13 | 1.1276 4.1457 51.1917 -Andale_Mono.ttf 26 ` 12.2739 8.6445 14 N 1.2120 24.3684 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 15 f 1.0219 22.7449 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 16 g 11.0851 26.2862 42.2069 -Andale_Mono.ttf 26 ` 12.2739 8.6445 17 d 1.3965 24.9156 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 18 W 0.8638 32.6598 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 19 s 11.2435 22.4960 30.8333 -Andale_Mono.ttf 26 ` 12.2739 8.6445 20 c 11.1988 24.2529 30.8333 -Andale_Mono.ttf 26 ` 12.2739 8.6445 21 u 11.5143 23.0431 30.6264 -Andale_Mono.ttf 26 ` 12.2739 8.6445 22 3 1.2175 22.4376 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 23 ~ 22.1879 31.2431 8.4376 -Andale_Mono.ttf 26 ` 12.2739 8.6445 24 # 1.0591 29.7261 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 25 O 1.1272 27.4069 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 26 ` 0.0175 12.2739 8.6445 -Andale_Mono.ttf 26 ` 12.2739 8.6445 27 @ 1.0971 29.8848 45.6293 -Andale_Mono.ttf 26 ` 12.2739 8.6445 28 F 1.0826 21.8334 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 29 S 1.2592 22.6445 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 30 p 11.1272 24.9156 42.2069 -Andale_Mono.ttf 26 ` 12.2739 8.6445 31 “ 0.9590 17.6989 13.2460 -Andale_Mono.ttf 26 ` 12.2739 8.6445 32 % 1.4623 32.6598 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 33 £ 0.8757 26.7902 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 34 . 34.6432 7.2279 7.2279 -Andale_Mono.ttf 26 ` 12.2739 8.6445 35 2 0.8560 21.9695 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 36 5 1.0452 22.1304 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 37 m 11.2609 27.6138 30.6264 -Andale_Mono.ttf 26 ` 12.2739 8.6445 38 V 1.4523 32.2460 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 39 6 1.0237 25.4319 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 40 w 11.5686 29.5170 30.4195 -Andale_Mono.ttf 26 ` 12.2739 8.6445 41 T 1.4460 29.4710 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 42 M 1.3284 25.2250 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 43 G 1.2694 26.5833 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 44 b 1.1483 24.9156 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 45 9 0.8877 25.2250 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 46 ; 11.2521 7.2279 36.8514 -Andale_Mono.ttf 26 ` 12.2739 8.6445 47 D 1.1367 25.2250 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 48 L 1.2602 21.8334 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 49 y 11.4048 26.6417 42.0000 -Andale_Mono.ttf 26 ` 12.2739 8.6445 50 ‘ 0.9772 7.2279 13.2460 -Andale_Mono.ttf 26 ` 12.2739 8.6445 51 \ 1.3876 24.4014 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 52 R 1.5148 27.3351 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 53 < 6.6538 21.2279 29.2098 -Andale_Mono.ttf 26 ` 12.2739 8.6445 54 4 1.1402 27.4836 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 55 8 1.1988 25.7598 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 56 0 1.1034 26.7880 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 57 A 1.0343 32.2460 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 58 E 1.2960 21.0793 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 59 B 1.1730 25.0765 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 60 v 11.2483 26.4348 30.4195 -Andale_Mono.ttf 26 ` 12.2739 8.6445 61 k 1.3040 26.1253 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 62 J 1.1278 19.6627 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 63 U 1.4163 23.0431 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 64 j 1.2523 15.7239 52.3707 -Andale_Mono.ttf 26 ` 12.2739 8.6445 65 ( 0.8347 15.2098 49.6141 -Andale_Mono.ttf 26 ` 12.2739 8.6445 66 7 1.2885 23.7080 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 67 § 0.9916 23.8543 52.5776 -Andale_Mono.ttf 26 ` 12.2739 8.6445 68 $ -1.6447 22.6445 47.0152 -Andale_Mono.ttf 26 ` 12.2739 8.6445 69 € 1.2274 30.5474 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 70 / 0.9825 24.4014 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 71 C 1.2843 26.7112 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 72 * 1.4996 20.1184 22.4376 -Andale_Mono.ttf 26 ` 12.2739 8.6445 73 ” 0.8820 17.6989 13.2460 -Andale_Mono.ttf 26 ` 12.2739 8.6445 74 ? 0.9128 20.5652 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 75 { 1.2991 15.8848 50.4376 -Andale_Mono.ttf 26 ` 12.2739 8.6445 76 } 1.3260 15.8848 50.4376 -Andale_Mono.ttf 26 ` 12.2739 8.6445 77 , 34.6047 7.2279 13.2460 -Andale_Mono.ttf 26 ` 12.2739 8.6445 78 I 1.3777 17.9971 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 79 ° 0.9389 15.7261 15.7261 -Andale_Mono.ttf 26 ` 12.2739 8.6445 80 K 1.4280 28.2377 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 81 H 1.2588 23.0431 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 82 q 10.9567 24.9156 42.2069 -Andale_Mono.ttf 26 ` 12.2739 8.6445 83 & 0.9674 32.6598 40.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 84 ’ 1.0802 7.2279 13.2460 -Andale_Mono.ttf 26 ` 12.2739 8.6445 85 [ 1.0920 11.2250 47.8696 -Andale_Mono.ttf 26 ` 12.2739 8.6445 86 - 23.7327 16.9359 4.1457 -Andale_Mono.ttf 26 ` 12.2739 8.6445 87 Y 1.3157 29.8264 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 88 Q 1.0532 28.6167 47.7692 -Andale_Mono.ttf 26 ` 12.2739 8.6445 89 " 1.2473 14.9239 15.2098 -Andale_Mono.ttf 26 ` 12.2739 8.6445 90 ! 1.2111 7.2279 40.7902 -Andale_Mono.ttf 26 ` 12.2739 8.6445 91 x 11.4159 26.2739 30.4195 -Andale_Mono.ttf 26 ` 12.2739 8.6445 92 ) 1.0950 15.2098 49.6141 -Andale_Mono.ttf 26 ` 12.2739 8.6445 93 = 13.8435 27.1098 15.2098 -Andale_Mono.ttf 26 ` 12.2739 8.6445 94 + 8.1330 26.9971 26.9971 -Andale_Mono.ttf 26 ` 12.2739 8.6445 95 X 1.1885 31.0946 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 96 » 10.9800 25.2250 29.2098 -Andale_Mono.ttf 26 ` 12.2739 8.6445 97 ' 1.0975 4.4529 15.2098 -Andale_Mono.ttf 26 ` 12.2739 8.6445 98 ¢ 6.0070 23.6474 41.2224 -Andale_Mono.ttf 26 ` 12.2739 8.6445 99 Z 1.4460 24.3684 40.5833 -Andale_Mono.ttf 26 ` 12.2739 8.6445 100 > 6.6027 21.2279 29.2098 -Andale_Mono.ttf 26 ` 12.2739 8.6445 101 ® 0.7809 35.0793 34.5652 -Andale_Mono.ttf 26 ` 12.2739 8.6445 102 © 0.8607 35.0793 34.5652 -Andale_Mono.ttf 26 ` 12.2739 8.6445 103 ] 1.2946 11.2250 47.8696 -Andale_Mono.ttf 26 ` 12.2739 8.6445 104 é 0.0546 25.2250 42.0460 -Andale_Mono.ttf 26 ` 12.2739 8.6445 105 z 11.4151 23.1917 30.4195 -Andale_Mono.ttf 26 ` 12.2739 8.6445 106 _ 50.5050 35.0793 3.8362 -Andale_Mono.ttf 26 ` 12.2739 8.6445 107 ¥ 1.3795 29.8264 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 1 t 2.1333 22.6445 38.7569 -Andale_Mono.ttf 27 @ 29.8848 45.6293 2 h 0.4358 23.0431 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 3 a 10.2730 24.2529 30.8333 -Andale_Mono.ttf 27 @ 29.8848 45.6293 4 n 10.2322 23.0431 30.6264 -Andale_Mono.ttf 27 @ 29.8848 45.6293 5 P -0.0123 22.8055 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 6 o 10.3408 26.7880 30.8333 -Andale_Mono.ttf 27 @ 29.8848 45.6293 7 e 10.0360 25.2250 30.8333 -Andale_Mono.ttf 27 @ 29.8848 45.6293 8 : 10.2883 7.2279 30.8333 -Andale_Mono.ttf 27 @ 29.8848 45.6293 9 r 10.2162 20.4043 30.6264 -Andale_Mono.ttf 27 @ 29.8848 45.6293 10 l 0.4824 20.4167 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 11 i -0.1490 13.3043 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 12 1 -0.0345 21.0793 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 13 | 0.2259 4.1457 51.1917 -Andale_Mono.ttf 27 @ 29.8848 45.6293 14 N 0.2879 24.3684 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 15 f 0.1126 22.7449 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 16 g 10.0555 26.2862 42.2069 -Andale_Mono.ttf 27 @ 29.8848 45.6293 17 d 0.4646 24.9156 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 18 W -0.1032 32.6598 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 19 s 10.1580 22.4960 30.8333 -Andale_Mono.ttf 27 @ 29.8848 45.6293 20 c 10.0878 24.2529 30.8333 -Andale_Mono.ttf 27 @ 29.8848 45.6293 21 u 10.3157 23.0431 30.6264 -Andale_Mono.ttf 27 @ 29.8848 45.6293 22 3 -0.0809 22.4376 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 23 ~ 21.6260 31.2431 8.4376 -Andale_Mono.ttf 27 @ 29.8848 45.6293 24 # 0.2669 29.7261 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 25 O 0.0747 27.4069 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 26 ` -1.4010 12.2739 8.6445 -Andale_Mono.ttf 27 @ 29.8848 45.6293 27 @ 0.1625 29.8848 45.6293 -Andale_Mono.ttf 27 @ 29.8848 45.6293 28 F 0.2326 21.8334 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 29 S 0.0111 22.6445 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 30 p 10.1620 24.9156 42.2069 -Andale_Mono.ttf 27 @ 29.8848 45.6293 31 “ -0.1154 17.6989 13.2460 -Andale_Mono.ttf 27 @ 29.8848 45.6293 32 % 0.0483 32.6598 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 33 £ 0.0550 26.7902 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 34 . 33.9213 7.2279 7.2279 -Andale_Mono.ttf 27 @ 29.8848 45.6293 35 2 -0.2247 21.9695 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 36 5 0.3832 22.1304 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 37 m 9.8908 27.6138 30.6264 -Andale_Mono.ttf 27 @ 29.8848 45.6293 38 V 0.1389 32.2460 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 39 6 -0.2040 25.4319 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 40 w 10.3469 29.5170 30.4195 -Andale_Mono.ttf 27 @ 29.8848 45.6293 41 T -0.0815 29.4710 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 42 M 0.2615 25.2250 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 43 G 0.0954 26.5833 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 44 b 0.1905 24.9156 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 45 9 -0.0761 25.2250 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 46 ; 10.1523 7.2279 36.8514 -Andale_Mono.ttf 27 @ 29.8848 45.6293 47 D 0.2437 25.2250 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 48 L 0.1077 21.8334 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 49 y 10.3565 26.6417 42.0000 -Andale_Mono.ttf 27 @ 29.8848 45.6293 50 ‘ -0.1102 7.2279 13.2460 -Andale_Mono.ttf 27 @ 29.8848 45.6293 51 \ 0.1350 24.4014 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 52 R 0.0659 27.3351 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 53 < 5.4819 21.2279 29.2098 -Andale_Mono.ttf 27 @ 29.8848 45.6293 54 4 0.1322 27.4836 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 55 8 0.0922 25.7598 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 56 0 -0.2266 26.7880 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 57 A 0.3738 32.2460 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 58 E 0.3889 21.0793 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 59 B 0.3590 25.0765 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 60 v 10.2128 26.4348 30.4195 -Andale_Mono.ttf 27 @ 29.8848 45.6293 61 k 0.4638 26.1253 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 62 J 0.2207 19.6627 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 63 U 0.3745 23.0431 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 64 j 0.1732 15.7239 52.3707 -Andale_Mono.ttf 27 @ 29.8848 45.6293 65 ( -0.0311 15.2098 49.6141 -Andale_Mono.ttf 27 @ 29.8848 45.6293 66 7 0.2665 23.7080 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 67 § 0.0623 23.8543 52.5776 -Andale_Mono.ttf 27 @ 29.8848 45.6293 68 $ -2.6236 22.6445 47.0152 -Andale_Mono.ttf 27 @ 29.8848 45.6293 69 € 0.0048 30.5474 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 70 / 0.1256 24.4014 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 71 C -0.1638 26.7112 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 72 * 0.3019 20.1184 22.4376 -Andale_Mono.ttf 27 @ 29.8848 45.6293 73 ” 0.1463 17.6989 13.2460 -Andale_Mono.ttf 27 @ 29.8848 45.6293 74 ? 0.1967 20.5652 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 75 { -0.0531 15.8848 50.4376 -Andale_Mono.ttf 27 @ 29.8848 45.6293 76 } 0.1623 15.8848 50.4376 -Andale_Mono.ttf 27 @ 29.8848 45.6293 77 , 33.7102 7.2279 13.2460 -Andale_Mono.ttf 27 @ 29.8848 45.6293 78 I 0.1671 17.9971 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 79 ° 0.2634 15.7261 15.7261 -Andale_Mono.ttf 27 @ 29.8848 45.6293 80 K 0.0538 28.2377 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 81 H 0.0104 23.0431 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 82 q 9.8856 24.9156 42.2069 -Andale_Mono.ttf 27 @ 29.8848 45.6293 83 & 0.1109 32.6598 40.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 84 ’ 0.1110 7.2279 13.2460 -Andale_Mono.ttf 27 @ 29.8848 45.6293 85 [ -0.0655 11.2250 47.8696 -Andale_Mono.ttf 27 @ 29.8848 45.6293 86 - 22.8357 16.9359 4.1457 -Andale_Mono.ttf 27 @ 29.8848 45.6293 87 Y 0.0512 29.8264 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 88 Q -0.1773 28.6167 47.7692 -Andale_Mono.ttf 27 @ 29.8848 45.6293 89 " 0.5630 14.9239 15.2098 -Andale_Mono.ttf 27 @ 29.8848 45.6293 90 ! 0.2081 7.2279 40.7902 -Andale_Mono.ttf 27 @ 29.8848 45.6293 91 x 10.2494 26.2739 30.4195 -Andale_Mono.ttf 27 @ 29.8848 45.6293 92 ) -0.0017 15.2098 49.6141 -Andale_Mono.ttf 27 @ 29.8848 45.6293 93 = 12.8378 27.1098 15.2098 -Andale_Mono.ttf 27 @ 29.8848 45.6293 94 + 6.6568 26.9971 26.9971 -Andale_Mono.ttf 27 @ 29.8848 45.6293 95 X 0.2100 31.0946 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 96 » 9.8666 25.2250 29.2098 -Andale_Mono.ttf 27 @ 29.8848 45.6293 97 ' 0.0274 4.4529 15.2098 -Andale_Mono.ttf 27 @ 29.8848 45.6293 98 ¢ 4.6811 23.6474 41.2224 -Andale_Mono.ttf 27 @ 29.8848 45.6293 99 Z 0.1534 24.3684 40.5833 -Andale_Mono.ttf 27 @ 29.8848 45.6293 100 > 5.8710 21.2279 29.2098 -Andale_Mono.ttf 27 @ 29.8848 45.6293 101 ® 0.1347 35.0793 34.5652 -Andale_Mono.ttf 27 @ 29.8848 45.6293 102 © 0.3030 35.0793 34.5652 -Andale_Mono.ttf 27 @ 29.8848 45.6293 103 ] 0.0726 11.2250 47.8696 -Andale_Mono.ttf 27 @ 29.8848 45.6293 104 é -1.1168 25.2250 42.0460 -Andale_Mono.ttf 27 @ 29.8848 45.6293 105 z 10.2785 23.1917 30.4195 -Andale_Mono.ttf 27 @ 29.8848 45.6293 106 _ 50.0569 35.0793 3.8362 -Andale_Mono.ttf 27 @ 29.8848 45.6293 107 ¥ 0.2069 29.8264 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 1 t 2.1644 22.6445 38.7569 -Andale_Mono.ttf 28 F 21.8334 40.5833 2 h -0.0371 23.0431 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 3 a 9.9224 24.2529 30.8333 -Andale_Mono.ttf 28 F 21.8334 40.5833 4 n 10.0184 23.0431 30.6264 -Andale_Mono.ttf 28 F 21.8334 40.5833 5 P -0.0756 22.8055 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 6 o 10.0406 26.7880 30.8333 -Andale_Mono.ttf 28 F 21.8334 40.5833 7 e 9.7337 25.2250 30.8333 -Andale_Mono.ttf 28 F 21.8334 40.5833 8 : 9.8228 7.2279 30.8333 -Andale_Mono.ttf 28 F 21.8334 40.5833 9 r 10.3452 20.4043 30.6264 -Andale_Mono.ttf 28 F 21.8334 40.5833 10 l -0.2108 20.4167 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 11 i -0.1862 13.3043 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 12 1 -0.2853 21.0793 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 13 | -0.0094 4.1457 51.1917 -Andale_Mono.ttf 28 F 21.8334 40.5833 14 N 0.1906 24.3684 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 15 f 0.0565 22.7449 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 16 g 10.1439 26.2862 42.2069 -Andale_Mono.ttf 28 F 21.8334 40.5833 17 d 0.1705 24.9156 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 18 W -0.0875 32.6598 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 19 s 9.9270 22.4960 30.8333 -Andale_Mono.ttf 28 F 21.8334 40.5833 20 c 9.8415 24.2529 30.8333 -Andale_Mono.ttf 28 F 21.8334 40.5833 21 u 10.4479 23.0431 30.6264 -Andale_Mono.ttf 28 F 21.8334 40.5833 22 3 -0.3000 22.4376 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 23 ~ 20.7992 31.2431 8.4376 -Andale_Mono.ttf 28 F 21.8334 40.5833 24 # -0.0297 29.7261 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 25 O -0.0738 27.4069 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 26 ` -1.4789 12.2739 8.6445 -Andale_Mono.ttf 28 F 21.8334 40.5833 27 @ -0.3294 29.8848 45.6293 -Andale_Mono.ttf 28 F 21.8334 40.5833 28 F -0.0810 21.8334 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 29 S -0.2534 22.6445 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 30 p 10.1180 24.9156 42.2069 -Andale_Mono.ttf 28 F 21.8334 40.5833 31 “ -0.1551 17.6989 13.2460 -Andale_Mono.ttf 28 F 21.8334 40.5833 32 % -0.1138 32.6598 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 33 £ -0.2052 26.7902 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 34 . 33.6711 7.2279 7.2279 -Andale_Mono.ttf 28 F 21.8334 40.5833 35 2 -0.2778 21.9695 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 36 5 -0.0000 22.1304 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 37 m 10.1381 27.6138 30.6264 -Andale_Mono.ttf 28 F 21.8334 40.5833 38 V -0.0904 32.2460 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 39 6 -0.2923 25.4319 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 40 w 10.4753 29.5170 30.4195 -Andale_Mono.ttf 28 F 21.8334 40.5833 41 T 0.0698 29.4710 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 42 M 0.0450 25.2250 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 43 G -0.3532 26.5833 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 44 b 0.2559 24.9156 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 45 9 -0.1684 25.2250 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 46 ; 9.6161 7.2279 36.8514 -Andale_Mono.ttf 28 F 21.8334 40.5833 47 D 0.0207 25.2250 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 48 L -0.2666 21.8334 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 49 y 10.2649 26.6417 42.0000 -Andale_Mono.ttf 28 F 21.8334 40.5833 50 ‘ -0.2661 7.2279 13.2460 -Andale_Mono.ttf 28 F 21.8334 40.5833 51 \ -0.3136 24.4014 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 52 R 0.3046 27.3351 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 53 < 5.3446 21.2279 29.2098 -Andale_Mono.ttf 28 F 21.8334 40.5833 54 4 0.0425 27.4836 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 55 8 -0.0025 25.7598 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 56 0 -0.4565 26.7880 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 57 A 0.1193 32.2460 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 58 E 0.0148 21.0793 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 59 B -0.0943 25.0765 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 60 v 10.0514 26.4348 30.4195 -Andale_Mono.ttf 28 F 21.8334 40.5833 61 k -0.0080 26.1253 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 62 J 0.0968 19.6627 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 63 U -0.0627 23.0431 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 64 j -0.2458 15.7239 52.3707 -Andale_Mono.ttf 28 F 21.8334 40.5833 65 ( -0.1565 15.2098 49.6141 -Andale_Mono.ttf 28 F 21.8334 40.5833 66 7 -0.0389 23.7080 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 67 § -0.0127 23.8543 52.5776 -Andale_Mono.ttf 28 F 21.8334 40.5833 68 $ -3.3604 22.6445 47.0152 -Andale_Mono.ttf 28 F 21.8334 40.5833 69 € -0.2276 30.5474 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 70 / -0.3684 24.4014 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 71 C -0.1053 26.7112 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 72 * -0.1531 20.1184 22.4376 -Andale_Mono.ttf 28 F 21.8334 40.5833 73 ” -0.5661 17.6989 13.2460 -Andale_Mono.ttf 28 F 21.8334 40.5833 74 ? -0.1429 20.5652 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 75 { 0.1500 15.8848 50.4376 -Andale_Mono.ttf 28 F 21.8334 40.5833 76 } 0.1088 15.8848 50.4376 -Andale_Mono.ttf 28 F 21.8334 40.5833 77 , 33.2254 7.2279 13.2460 -Andale_Mono.ttf 28 F 21.8334 40.5833 78 I -0.2164 17.9971 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 79 ° -0.5075 15.7261 15.7261 -Andale_Mono.ttf 28 F 21.8334 40.5833 80 K 0.0527 28.2377 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 81 H 0.2626 23.0431 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 82 q 10.0052 24.9156 42.2069 -Andale_Mono.ttf 28 F 21.8334 40.5833 83 & -0.1785 32.6598 40.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 84 ’ -0.1291 7.2279 13.2460 -Andale_Mono.ttf 28 F 21.8334 40.5833 85 [ -0.1033 11.2250 47.8696 -Andale_Mono.ttf 28 F 21.8334 40.5833 86 - 22.6158 16.9359 4.1457 -Andale_Mono.ttf 28 F 21.8334 40.5833 87 Y -0.1437 29.8264 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 88 Q -0.3187 28.6167 47.7692 -Andale_Mono.ttf 28 F 21.8334 40.5833 89 " -0.1908 14.9239 15.2098 -Andale_Mono.ttf 28 F 21.8334 40.5833 90 ! -0.1293 7.2279 40.7902 -Andale_Mono.ttf 28 F 21.8334 40.5833 91 x 10.1013 26.2739 30.4195 -Andale_Mono.ttf 28 F 21.8334 40.5833 92 ) -0.2163 15.2098 49.6141 -Andale_Mono.ttf 28 F 21.8334 40.5833 93 = 12.3575 27.1098 15.2098 -Andale_Mono.ttf 28 F 21.8334 40.5833 94 + 6.5651 26.9971 26.9971 -Andale_Mono.ttf 28 F 21.8334 40.5833 95 X 0.0630 31.0946 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 96 » 9.9994 25.2250 29.2098 -Andale_Mono.ttf 28 F 21.8334 40.5833 97 ' -0.0572 4.4529 15.2098 -Andale_Mono.ttf 28 F 21.8334 40.5833 98 ¢ 4.6488 23.6474 41.2224 -Andale_Mono.ttf 28 F 21.8334 40.5833 99 Z 0.1625 24.3684 40.5833 -Andale_Mono.ttf 28 F 21.8334 40.5833 100 > 5.7900 21.2279 29.2098 -Andale_Mono.ttf 28 F 21.8334 40.5833 101 ® 0.0293 35.0793 34.5652 -Andale_Mono.ttf 28 F 21.8334 40.5833 102 © -0.0588 35.0793 34.5652 -Andale_Mono.ttf 28 F 21.8334 40.5833 103 ] 0.1226 11.2250 47.8696 -Andale_Mono.ttf 28 F 21.8334 40.5833 104 é -1.2155 25.2250 42.0460 -Andale_Mono.ttf 28 F 21.8334 40.5833 105 z 10.2565 23.1917 30.4195 -Andale_Mono.ttf 28 F 21.8334 40.5833 106 _ 49.5893 35.0793 3.8362 -Andale_Mono.ttf 28 F 21.8334 40.5833 107 ¥ 0.0805 29.8264 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 1 t 2.1118 22.6445 38.7569 -Andale_Mono.ttf 29 S 22.6445 40.9971 2 h 0.2833 23.0431 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 3 a 10.0506 24.2529 30.8333 -Andale_Mono.ttf 29 S 22.6445 40.9971 4 n 9.8663 23.0431 30.6264 -Andale_Mono.ttf 29 S 22.6445 40.9971 5 P 0.4008 22.8055 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 6 o 10.0117 26.7880 30.8333 -Andale_Mono.ttf 29 S 22.6445 40.9971 7 e 10.1521 25.2250 30.8333 -Andale_Mono.ttf 29 S 22.6445 40.9971 8 : 10.2439 7.2279 30.8333 -Andale_Mono.ttf 29 S 22.6445 40.9971 9 r 9.8538 20.4043 30.6264 -Andale_Mono.ttf 29 S 22.6445 40.9971 10 l 0.3733 20.4167 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 11 i -0.1444 13.3043 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 12 1 0.2017 21.0793 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 13 | 0.5546 4.1457 51.1917 -Andale_Mono.ttf 29 S 22.6445 40.9971 14 N 0.2531 24.3684 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 15 f 0.4310 22.7449 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 16 g 10.0621 26.2862 42.2069 -Andale_Mono.ttf 29 S 22.6445 40.9971 17 d 0.2437 24.9156 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 18 W 0.1690 32.6598 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 19 s 10.3213 22.4960 30.8333 -Andale_Mono.ttf 29 S 22.6445 40.9971 20 c 10.1638 24.2529 30.8333 -Andale_Mono.ttf 29 S 22.6445 40.9971 21 u 10.5111 23.0431 30.6264 -Andale_Mono.ttf 29 S 22.6445 40.9971 22 3 0.2829 22.4376 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 23 ~ 21.3927 31.2431 8.4376 -Andale_Mono.ttf 29 S 22.6445 40.9971 24 # 0.3187 29.7261 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 25 O 0.0753 27.4069 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 26 ` -1.2479 12.2739 8.6445 -Andale_Mono.ttf 29 S 22.6445 40.9971 27 @ 0.0075 29.8848 45.6293 -Andale_Mono.ttf 29 S 22.6445 40.9971 28 F 0.1981 21.8334 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 29 S -0.0188 22.6445 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 30 p 10.1239 24.9156 42.2069 -Andale_Mono.ttf 29 S 22.6445 40.9971 31 “ -0.1843 17.6989 13.2460 -Andale_Mono.ttf 29 S 22.6445 40.9971 32 % -0.0027 32.6598 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 33 £ 0.0068 26.7902 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 34 . 33.8212 7.2279 7.2279 -Andale_Mono.ttf 29 S 22.6445 40.9971 35 2 0.2465 21.9695 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 36 5 -0.1666 22.1304 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 37 m 10.0534 27.6138 30.6264 -Andale_Mono.ttf 29 S 22.6445 40.9971 38 V 0.2186 32.2460 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 39 6 -0.1856 25.4319 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 40 w 9.9690 29.5170 30.4195 -Andale_Mono.ttf 29 S 22.6445 40.9971 41 T 0.2454 29.4710 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 42 M 0.1103 25.2250 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 43 G 0.0922 26.5833 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 44 b 0.0109 24.9156 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 45 9 0.0364 25.2250 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 46 ; 10.3471 7.2279 36.8514 -Andale_Mono.ttf 29 S 22.6445 40.9971 47 D -0.0342 25.2250 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 48 L 0.1778 21.8334 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 49 y 10.1912 26.6417 42.0000 -Andale_Mono.ttf 29 S 22.6445 40.9971 50 ‘ -0.0521 7.2279 13.2460 -Andale_Mono.ttf 29 S 22.6445 40.9971 51 \ 0.0138 24.4014 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 52 R 0.1322 27.3351 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 53 < 5.6615 21.2279 29.2098 -Andale_Mono.ttf 29 S 22.6445 40.9971 54 4 0.5878 27.4836 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 55 8 0.1193 25.7598 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 56 0 0.1249 26.7880 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 57 A 0.1147 32.2460 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 58 E 0.2991 21.0793 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 59 B 0.5385 25.0765 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 60 v 10.4628 26.4348 30.4195 -Andale_Mono.ttf 29 S 22.6445 40.9971 61 k 0.2991 26.1253 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 62 J 0.1009 19.6627 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 63 U 0.2075 23.0431 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 64 j -0.1648 15.7239 52.3707 -Andale_Mono.ttf 29 S 22.6445 40.9971 65 ( 0.1988 15.2098 49.6141 -Andale_Mono.ttf 29 S 22.6445 40.9971 66 7 -0.0190 23.7080 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 67 § -0.2144 23.8543 52.5776 -Andale_Mono.ttf 29 S 22.6445 40.9971 68 $ -2.5227 22.6445 47.0152 -Andale_Mono.ttf 29 S 22.6445 40.9971 69 € 0.1164 30.5474 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 70 / -0.3636 24.4014 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 71 C -0.2147 26.7112 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 72 * -0.0199 20.1184 22.4376 -Andale_Mono.ttf 29 S 22.6445 40.9971 73 ” -0.0617 17.6989 13.2460 -Andale_Mono.ttf 29 S 22.6445 40.9971 74 ? 0.0751 20.5652 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 75 { 0.0013 15.8848 50.4376 -Andale_Mono.ttf 29 S 22.6445 40.9971 76 } 0.3927 15.8848 50.4376 -Andale_Mono.ttf 29 S 22.6445 40.9971 77 , 33.8144 7.2279 13.2460 -Andale_Mono.ttf 29 S 22.6445 40.9971 78 I 0.2942 17.9971 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 79 ° -0.1548 15.7261 15.7261 -Andale_Mono.ttf 29 S 22.6445 40.9971 80 K 0.1975 28.2377 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 81 H 0.1675 23.0431 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 82 q 10.2511 24.9156 42.2069 -Andale_Mono.ttf 29 S 22.6445 40.9971 83 & -0.3063 32.6598 40.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 84 ’ 0.0371 7.2279 13.2460 -Andale_Mono.ttf 29 S 22.6445 40.9971 85 [ 0.1241 11.2250 47.8696 -Andale_Mono.ttf 29 S 22.6445 40.9971 86 - 22.7606 16.9359 4.1457 -Andale_Mono.ttf 29 S 22.6445 40.9971 87 Y 0.2301 29.8264 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 88 Q 0.0052 28.6167 47.7692 -Andale_Mono.ttf 29 S 22.6445 40.9971 89 " 0.0776 14.9239 15.2098 -Andale_Mono.ttf 29 S 22.6445 40.9971 90 ! -0.0924 7.2279 40.7902 -Andale_Mono.ttf 29 S 22.6445 40.9971 91 x 10.3017 26.2739 30.4195 -Andale_Mono.ttf 29 S 22.6445 40.9971 92 ) -0.2627 15.2098 49.6141 -Andale_Mono.ttf 29 S 22.6445 40.9971 93 = 12.8322 27.1098 15.2098 -Andale_Mono.ttf 29 S 22.6445 40.9971 94 + 6.4653 26.9971 26.9971 -Andale_Mono.ttf 29 S 22.6445 40.9971 95 X 0.1963 31.0946 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 96 » 9.9153 25.2250 29.2098 -Andale_Mono.ttf 29 S 22.6445 40.9971 97 ' 0.1341 4.4529 15.2098 -Andale_Mono.ttf 29 S 22.6445 40.9971 98 ¢ 4.9219 23.6474 41.2224 -Andale_Mono.ttf 29 S 22.6445 40.9971 99 Z 0.0525 24.3684 40.5833 -Andale_Mono.ttf 29 S 22.6445 40.9971 100 > 5.7586 21.2279 29.2098 -Andale_Mono.ttf 29 S 22.6445 40.9971 101 ® 0.0672 35.0793 34.5652 -Andale_Mono.ttf 29 S 22.6445 40.9971 102 © 0.2458 35.0793 34.5652 -Andale_Mono.ttf 29 S 22.6445 40.9971 103 ] 0.3017 11.2250 47.8696 -Andale_Mono.ttf 29 S 22.6445 40.9971 104 é -1.0355 25.2250 42.0460 -Andale_Mono.ttf 29 S 22.6445 40.9971 105 z 10.5182 23.1917 30.4195 -Andale_Mono.ttf 29 S 22.6445 40.9971 106 _ 49.6960 35.0793 3.8362 -Andale_Mono.ttf 29 S 22.6445 40.9971 107 ¥ -0.0447 29.8264 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 1 t -8.1123 22.6445 38.7569 -Andale_Mono.ttf 30 p 24.9156 42.2069 2 h -9.8308 23.0431 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 3 a 0.2429 24.2529 30.8333 -Andale_Mono.ttf 30 p 24.9156 42.2069 4 n 0.0000 23.0431 30.6264 -Andale_Mono.ttf 30 p 24.9156 42.2069 5 P -9.6983 22.8055 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 6 o 0.1155 26.7880 30.8333 -Andale_Mono.ttf 30 p 24.9156 42.2069 7 e -0.1387 25.2250 30.8333 -Andale_Mono.ttf 30 p 24.9156 42.2069 8 : 0.0810 7.2279 30.8333 -Andale_Mono.ttf 30 p 24.9156 42.2069 9 r 0.0182 20.4043 30.6264 -Andale_Mono.ttf 30 p 24.9156 42.2069 10 l -9.8255 20.4167 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 11 i -10.2818 13.3043 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 12 1 -10.4291 21.0793 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 13 | -9.7703 4.1457 51.1917 -Andale_Mono.ttf 30 p 24.9156 42.2069 14 N -10.0161 24.3684 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 15 f -10.0391 22.7449 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 16 g 0.1960 26.2862 42.2069 -Andale_Mono.ttf 30 p 24.9156 42.2069 17 d -10.2447 24.9156 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 18 W -9.9414 32.6598 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 19 s -0.1293 22.4960 30.8333 -Andale_Mono.ttf 30 p 24.9156 42.2069 20 c -0.0715 24.2529 30.8333 -Andale_Mono.ttf 30 p 24.9156 42.2069 21 u 0.1818 23.0431 30.6264 -Andale_Mono.ttf 30 p 24.9156 42.2069 22 3 -10.0730 22.4376 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 23 ~ 11.0351 31.2431 8.4376 -Andale_Mono.ttf 30 p 24.9156 42.2069 24 # -9.9716 29.7261 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 25 O -10.0816 27.4069 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 26 ` -11.1718 12.2739 8.6445 -Andale_Mono.ttf 30 p 24.9156 42.2069 27 @ -10.1199 29.8848 45.6293 -Andale_Mono.ttf 30 p 24.9156 42.2069 28 F -10.1666 21.8334 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 29 S -10.3544 22.6445 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 30 p -0.1419 24.9156 42.2069 -Andale_Mono.ttf 30 p 24.9156 42.2069 31 “ -10.3481 17.6989 13.2460 -Andale_Mono.ttf 30 p 24.9156 42.2069 32 % -9.8529 32.6598 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 33 £ -9.9793 26.7902 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 34 . 23.6204 7.2279 7.2279 -Andale_Mono.ttf 30 p 24.9156 42.2069 35 2 -10.5329 21.9695 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 36 5 -9.9224 22.1304 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 37 m 0.3391 27.6138 30.6264 -Andale_Mono.ttf 30 p 24.9156 42.2069 38 V -10.0174 32.2460 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 39 6 -9.7805 25.4319 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 40 w 0.0866 29.5170 30.4195 -Andale_Mono.ttf 30 p 24.9156 42.2069 41 T -9.8458 29.4710 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 42 M -10.0322 25.2250 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 43 G -10.3387 26.5833 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 44 b -9.8830 24.9156 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 45 9 -10.2121 25.2250 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 46 ; -0.4005 7.2279 36.8514 -Andale_Mono.ttf 30 p 24.9156 42.2069 47 D -10.2284 25.2250 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 48 L -10.1801 21.8334 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 49 y 0.3976 26.6417 42.0000 -Andale_Mono.ttf 30 p 24.9156 42.2069 50 ‘ -10.5153 7.2279 13.2460 -Andale_Mono.ttf 30 p 24.9156 42.2069 51 \ -10.2130 24.4014 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 52 R -9.9730 27.3351 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 53 < -4.8169 21.2279 29.2098 -Andale_Mono.ttf 30 p 24.9156 42.2069 54 4 -10.1322 27.4836 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 55 8 -10.3307 25.7598 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 56 0 -9.9795 26.7880 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 57 A -10.0762 32.2460 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 58 E -10.2950 21.0793 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 59 B -10.1686 25.0765 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 60 v -0.0544 26.4348 30.4195 -Andale_Mono.ttf 30 p 24.9156 42.2069 61 k -9.9488 26.1253 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 62 J -10.1515 19.6627 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 63 U -9.8720 23.0431 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 64 j -10.2279 15.7239 52.3707 -Andale_Mono.ttf 30 p 24.9156 42.2069 65 ( -10.3155 15.2098 49.6141 -Andale_Mono.ttf 30 p 24.9156 42.2069 66 7 -9.8427 23.7080 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 67 § -10.1473 23.8543 52.5776 -Andale_Mono.ttf 30 p 24.9156 42.2069 68 $ -12.9809 22.6445 47.0152 -Andale_Mono.ttf 30 p 24.9156 42.2069 69 € -10.3508 30.5474 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 70 / -9.8492 24.4014 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 71 C -10.0895 26.7112 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 72 * -9.7726 20.1184 22.4376 -Andale_Mono.ttf 30 p 24.9156 42.2069 73 ” -10.3414 17.6989 13.2460 -Andale_Mono.ttf 30 p 24.9156 42.2069 74 ? -9.9948 20.5652 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 75 { -9.6862 15.8848 50.4376 -Andale_Mono.ttf 30 p 24.9156 42.2069 76 } -10.2110 15.8848 50.4376 -Andale_Mono.ttf 30 p 24.9156 42.2069 77 , 23.4534 7.2279 13.2460 -Andale_Mono.ttf 30 p 24.9156 42.2069 78 I -10.0310 17.9971 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 79 ° -10.1479 15.7261 15.7261 -Andale_Mono.ttf 30 p 24.9156 42.2069 80 K -9.9381 28.2377 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 81 H -10.1257 23.0431 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 82 q -0.0274 24.9156 42.2069 -Andale_Mono.ttf 30 p 24.9156 42.2069 83 & -10.1990 32.6598 40.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 84 ’ -10.1443 7.2279 13.2460 -Andale_Mono.ttf 30 p 24.9156 42.2069 85 [ -9.9496 11.2250 47.8696 -Andale_Mono.ttf 30 p 24.9156 42.2069 86 - 12.2844 16.9359 4.1457 -Andale_Mono.ttf 30 p 24.9156 42.2069 87 Y -10.0373 29.8264 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 88 Q -10.1293 28.6167 47.7692 -Andale_Mono.ttf 30 p 24.9156 42.2069 89 " -9.9167 14.9239 15.2098 -Andale_Mono.ttf 30 p 24.9156 42.2069 90 ! -9.9793 7.2279 40.7902 -Andale_Mono.ttf 30 p 24.9156 42.2069 91 x 0.1540 26.2739 30.4195 -Andale_Mono.ttf 30 p 24.9156 42.2069 92 ) -10.3051 15.2098 49.6141 -Andale_Mono.ttf 30 p 24.9156 42.2069 93 = 2.7316 27.1098 15.2098 -Andale_Mono.ttf 30 p 24.9156 42.2069 94 + -3.2999 26.9971 26.9971 -Andale_Mono.ttf 30 p 24.9156 42.2069 95 X -9.8537 31.0946 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 96 » 0.2542 25.2250 29.2098 -Andale_Mono.ttf 30 p 24.9156 42.2069 97 ' -9.8362 4.4529 15.2098 -Andale_Mono.ttf 30 p 24.9156 42.2069 98 ¢ -5.0388 23.6474 41.2224 -Andale_Mono.ttf 30 p 24.9156 42.2069 99 Z -9.8094 24.3684 40.5833 -Andale_Mono.ttf 30 p 24.9156 42.2069 100 > -4.5090 21.2279 29.2098 -Andale_Mono.ttf 30 p 24.9156 42.2069 101 ® -10.2161 35.0793 34.5652 -Andale_Mono.ttf 30 p 24.9156 42.2069 102 © -10.3597 35.0793 34.5652 -Andale_Mono.ttf 30 p 24.9156 42.2069 103 ] -9.9073 11.2250 47.8696 -Andale_Mono.ttf 30 p 24.9156 42.2069 104 é -10.9188 25.2250 42.0460 -Andale_Mono.ttf 30 p 24.9156 42.2069 105 z 0.3017 23.1917 30.4195 -Andale_Mono.ttf 30 p 24.9156 42.2069 106 _ 39.4168 35.0793 3.8362 -Andale_Mono.ttf 30 p 24.9156 42.2069 107 ¥ -9.7337 29.8264 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 1 t 2.2335 22.6445 38.7569 -Andale_Mono.ttf 31 “ 17.6989 13.2460 2 h 0.1630 23.0431 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 3 a 10.1383 24.2529 30.8333 -Andale_Mono.ttf 31 “ 17.6989 13.2460 4 n 10.3057 23.0431 30.6264 -Andale_Mono.ttf 31 “ 17.6989 13.2460 5 P 0.4136 22.8055 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 6 o 10.3763 26.7880 30.8333 -Andale_Mono.ttf 31 “ 17.6989 13.2460 7 e 10.2019 25.2250 30.8333 -Andale_Mono.ttf 31 “ 17.6989 13.2460 8 : 10.2259 7.2279 30.8333 -Andale_Mono.ttf 31 “ 17.6989 13.2460 9 r 10.2582 20.4043 30.6264 -Andale_Mono.ttf 31 “ 17.6989 13.2460 10 l 0.2075 20.4167 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 11 i -0.1965 13.3043 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 12 1 -0.2444 21.0793 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 13 | -0.1169 4.1457 51.1917 -Andale_Mono.ttf 31 “ 17.6989 13.2460 14 N 0.3144 24.3684 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 15 f 0.0852 22.7449 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 16 g 10.1657 26.2862 42.2069 -Andale_Mono.ttf 31 “ 17.6989 13.2460 17 d -0.0062 24.9156 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 18 W 0.3707 32.6598 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 19 s 10.1870 22.4960 30.8333 -Andale_Mono.ttf 31 “ 17.6989 13.2460 20 c 10.2019 24.2529 30.8333 -Andale_Mono.ttf 31 “ 17.6989 13.2460 21 u 10.2100 23.0431 30.6264 -Andale_Mono.ttf 31 “ 17.6989 13.2460 22 3 -0.2050 22.4376 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 23 ~ 21.3144 31.2431 8.4376 -Andale_Mono.ttf 31 “ 17.6989 13.2460 24 # 0.2991 29.7261 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 25 O -0.1149 27.4069 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 26 ` -0.8778 12.2739 8.6445 -Andale_Mono.ttf 31 “ 17.6989 13.2460 27 @ 0.0018 29.8848 45.6293 -Andale_Mono.ttf 31 “ 17.6989 13.2460 28 F 0.1845 21.8334 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 29 S 0.1092 22.6445 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 30 p 10.1544 24.9156 42.2069 -Andale_Mono.ttf 31 “ 17.6989 13.2460 31 “ -0.0610 17.6989 13.2460 -Andale_Mono.ttf 31 “ 17.6989 13.2460 32 % -0.2014 32.6598 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 33 £ 0.2348 26.7902 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 34 . 33.7098 7.2279 7.2279 -Andale_Mono.ttf 31 “ 17.6989 13.2460 35 2 0.0152 21.9695 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 36 5 0.4628 22.1304 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 37 m 10.4944 27.6138 30.6264 -Andale_Mono.ttf 31 “ 17.6989 13.2460 38 V -0.0289 32.2460 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 39 6 0.1565 25.4319 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 40 w 10.4146 29.5170 30.4195 -Andale_Mono.ttf 31 “ 17.6989 13.2460 41 T 0.4284 29.4710 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 42 M 0.0165 25.2250 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 43 G 0.0274 26.5833 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 44 b -0.1170 24.9156 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 45 9 -0.1960 25.2250 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 46 ; 10.1208 7.2279 36.8514 -Andale_Mono.ttf 31 “ 17.6989 13.2460 47 D 0.2069 25.2250 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 48 L 0.3887 21.8334 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 49 y 10.3165 26.6417 42.0000 -Andale_Mono.ttf 31 “ 17.6989 13.2460 50 ‘ 0.2855 7.2279 13.2460 -Andale_Mono.ttf 31 “ 17.6989 13.2460 51 \ -0.0885 24.4014 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 52 R 0.4083 27.3351 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 53 < 5.5565 21.2279 29.2098 -Andale_Mono.ttf 31 “ 17.6989 13.2460 54 4 0.1492 27.4836 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 55 8 -0.1355 25.7598 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 56 0 0.0764 26.7880 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 57 A 0.3680 32.2460 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 58 E 0.4893 21.0793 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 59 B 0.3117 25.0765 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 60 v 10.3971 26.4348 30.4195 -Andale_Mono.ttf 31 “ 17.6989 13.2460 61 k 0.2207 26.1253 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 62 J 0.4055 19.6627 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 63 U 0.0931 23.0431 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 64 j -0.0484 15.7239 52.3707 -Andale_Mono.ttf 31 “ 17.6989 13.2460 65 ( 0.3619 15.2098 49.6141 -Andale_Mono.ttf 31 “ 17.6989 13.2460 66 7 0.1178 23.7080 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 67 § 0.1324 23.8543 52.5776 -Andale_Mono.ttf 31 “ 17.6989 13.2460 68 $ -2.7618 22.6445 47.0152 -Andale_Mono.ttf 31 “ 17.6989 13.2460 69 € -0.2653 30.5474 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 70 / 0.1473 24.4014 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 71 C 0.0213 26.7112 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 72 * 0.3546 20.1184 22.4376 -Andale_Mono.ttf 31 “ 17.6989 13.2460 73 ” 0.0609 17.6989 13.2460 -Andale_Mono.ttf 31 “ 17.6989 13.2460 74 ? 0.1246 20.5652 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 75 { 0.2147 15.8848 50.4376 -Andale_Mono.ttf 31 “ 17.6989 13.2460 76 } 0.4109 15.8848 50.4376 -Andale_Mono.ttf 31 “ 17.6989 13.2460 77 , 33.8731 7.2279 13.2460 -Andale_Mono.ttf 31 “ 17.6989 13.2460 78 I 0.1379 17.9971 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 79 ° -0.2439 15.7261 15.7261 -Andale_Mono.ttf 31 “ 17.6989 13.2460 80 K 0.3208 28.2377 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 81 H -0.1228 23.0431 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 82 q 10.3646 24.9156 42.2069 -Andale_Mono.ttf 31 “ 17.6989 13.2460 83 & -0.2084 32.6598 40.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 84 ’ -0.0116 7.2279 13.2460 -Andale_Mono.ttf 31 “ 17.6989 13.2460 85 [ 0.3546 11.2250 47.8696 -Andale_Mono.ttf 31 “ 17.6989 13.2460 86 - 22.4847 16.9359 4.1457 -Andale_Mono.ttf 31 “ 17.6989 13.2460 87 Y 0.1197 29.8264 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 88 Q 0.1552 28.6167 47.7692 -Andale_Mono.ttf 31 “ 17.6989 13.2460 89 " -0.1248 14.9239 15.2098 -Andale_Mono.ttf 31 “ 17.6989 13.2460 90 ! 0.1008 7.2279 40.7902 -Andale_Mono.ttf 31 “ 17.6989 13.2460 91 x 10.5689 26.2739 30.4195 -Andale_Mono.ttf 31 “ 17.6989 13.2460 92 ) -0.2962 15.2098 49.6141 -Andale_Mono.ttf 31 “ 17.6989 13.2460 93 = 12.8667 27.1098 15.2098 -Andale_Mono.ttf 31 “ 17.6989 13.2460 94 + 6.9980 26.9971 26.9971 -Andale_Mono.ttf 31 “ 17.6989 13.2460 95 X 0.1837 31.0946 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 96 » 10.2438 25.2250 29.2098 -Andale_Mono.ttf 31 “ 17.6989 13.2460 97 ' 0.1125 4.4529 15.2098 -Andale_Mono.ttf 31 “ 17.6989 13.2460 98 ¢ 5.1478 23.6474 41.2224 -Andale_Mono.ttf 31 “ 17.6989 13.2460 99 Z 0.3945 24.3684 40.5833 -Andale_Mono.ttf 31 “ 17.6989 13.2460 100 > 5.6442 21.2279 29.2098 -Andale_Mono.ttf 31 “ 17.6989 13.2460 101 ® -0.0264 35.0793 34.5652 -Andale_Mono.ttf 31 “ 17.6989 13.2460 102 © -0.0979 35.0793 34.5652 -Andale_Mono.ttf 31 “ 17.6989 13.2460 103 ] 0.0940 11.2250 47.8696 -Andale_Mono.ttf 31 “ 17.6989 13.2460 104 é -1.0471 25.2250 42.0460 -Andale_Mono.ttf 31 “ 17.6989 13.2460 105 z 9.9658 23.1917 30.4195 -Andale_Mono.ttf 31 “ 17.6989 13.2460 106 _ 49.5942 35.0793 3.8362 -Andale_Mono.ttf 31 “ 17.6989 13.2460 107 ¥ 0.2466 29.8264 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 1 t 2.3140 22.6445 38.7569 -Andale_Mono.ttf 32 % 32.6598 40.9971 2 h 0.2449 23.0431 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 3 a 10.2810 24.2529 30.8333 -Andale_Mono.ttf 32 % 32.6598 40.9971 4 n 10.1700 23.0431 30.6264 -Andale_Mono.ttf 32 % 32.6598 40.9971 5 P 0.2803 22.8055 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 6 o 9.8305 26.7880 30.8333 -Andale_Mono.ttf 32 % 32.6598 40.9971 7 e 9.9339 25.2250 30.8333 -Andale_Mono.ttf 32 % 32.6598 40.9971 8 : 10.4228 7.2279 30.8333 -Andale_Mono.ttf 32 % 32.6598 40.9971 9 r 9.9279 20.4043 30.6264 -Andale_Mono.ttf 32 % 32.6598 40.9971 10 l 0.5720 20.4167 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 11 i -0.0180 13.3043 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 12 1 -0.0996 21.0793 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 13 | -0.0320 4.1457 51.1917 -Andale_Mono.ttf 32 % 32.6598 40.9971 14 N -0.1232 24.3684 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 15 f 0.2584 22.7449 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 16 g 10.2432 26.2862 42.2069 -Andale_Mono.ttf 32 % 32.6598 40.9971 17 d 0.3921 24.9156 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 18 W 0.3224 32.6598 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 19 s 10.4108 22.4960 30.8333 -Andale_Mono.ttf 32 % 32.6598 40.9971 20 c 10.1404 24.2529 30.8333 -Andale_Mono.ttf 32 % 32.6598 40.9971 21 u 10.5872 23.0431 30.6264 -Andale_Mono.ttf 32 % 32.6598 40.9971 22 3 -0.0529 22.4376 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 23 ~ 21.0553 31.2431 8.4376 -Andale_Mono.ttf 32 % 32.6598 40.9971 24 # 0.3224 29.7261 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 25 O 0.0747 27.4069 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 26 ` -1.0234 12.2739 8.6445 -Andale_Mono.ttf 32 % 32.6598 40.9971 27 @ -0.0966 29.8848 45.6293 -Andale_Mono.ttf 32 % 32.6598 40.9971 28 F 0.0776 21.8334 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 29 S -0.1355 22.6445 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 30 p 10.1727 24.9156 42.2069 -Andale_Mono.ttf 32 % 32.6598 40.9971 31 “ -0.0402 17.6989 13.2460 -Andale_Mono.ttf 32 % 32.6598 40.9971 32 % 0.1674 32.6598 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 33 £ -0.1659 26.7902 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 34 . 33.9456 7.2279 7.2279 -Andale_Mono.ttf 32 % 32.6598 40.9971 35 2 0.0362 21.9695 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 36 5 0.3762 22.1304 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 37 m 10.3964 27.6138 30.6264 -Andale_Mono.ttf 32 % 32.6598 40.9971 38 V 0.2136 32.2460 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 39 6 -0.1494 25.4319 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 40 w 10.3161 29.5170 30.4195 -Andale_Mono.ttf 32 % 32.6598 40.9971 41 T 0.1402 29.4710 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 42 M 0.1008 25.2250 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 43 G -0.2603 26.5833 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 44 b 0.2032 24.9156 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 45 9 0.0483 25.2250 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 46 ; 10.0456 7.2279 36.8514 -Andale_Mono.ttf 32 % 32.6598 40.9971 47 D 0.1147 25.2250 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 48 L 0.2019 21.8334 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 49 y 10.7224 26.6417 42.0000 -Andale_Mono.ttf 32 % 32.6598 40.9971 50 ‘ 0.1256 7.2279 13.2460 -Andale_Mono.ttf 32 % 32.6598 40.9971 51 \ -0.3263 24.4014 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 52 R 0.3086 27.3351 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 53 < 5.6184 21.2279 29.2098 -Andale_Mono.ttf 32 % 32.6598 40.9971 54 4 0.4862 27.4836 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 55 8 0.2080 25.7598 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 56 0 0.2285 26.7880 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 57 A 0.1816 32.2460 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 58 E 0.1571 21.0793 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 59 B 0.0879 25.0765 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 60 v 10.7473 26.4348 30.4195 -Andale_Mono.ttf 32 % 32.6598 40.9971 61 k 0.4452 26.1253 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 62 J 0.0866 19.6627 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 63 U 0.1441 23.0431 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 64 j -0.0210 15.7239 52.3707 -Andale_Mono.ttf 32 % 32.6598 40.9971 65 ( 0.2391 15.2098 49.6141 -Andale_Mono.ttf 32 % 32.6598 40.9971 66 7 0.5465 23.7080 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 67 § -0.1400 23.8543 52.5776 -Andale_Mono.ttf 32 % 32.6598 40.9971 68 $ -2.4267 22.6445 47.0152 -Andale_Mono.ttf 32 % 32.6598 40.9971 69 € 0.0456 30.5474 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 70 / -0.0377 24.4014 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 71 C 0.3364 26.7112 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 72 * 0.4422 20.1184 22.4376 -Andale_Mono.ttf 32 % 32.6598 40.9971 73 ” 0.0797 17.6989 13.2460 -Andale_Mono.ttf 32 % 32.6598 40.9971 74 ? 0.1544 20.5652 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 75 { 0.1592 15.8848 50.4376 -Andale_Mono.ttf 32 % 32.6598 40.9971 76 } -0.1069 15.8848 50.4376 -Andale_Mono.ttf 32 % 32.6598 40.9971 77 , 33.8610 7.2279 13.2460 -Andale_Mono.ttf 32 % 32.6598 40.9971 78 I 0.0473 17.9971 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 79 ° 0.1632 15.7261 15.7261 -Andale_Mono.ttf 32 % 32.6598 40.9971 80 K -0.0692 28.2377 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 81 H 0.1147 23.0431 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 82 q 10.1934 24.9156 42.2069 -Andale_Mono.ttf 32 % 32.6598 40.9971 83 & -0.0666 32.6598 40.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 84 ’ 0.0801 7.2279 13.2460 -Andale_Mono.ttf 32 % 32.6598 40.9971 85 [ 0.0167 11.2250 47.8696 -Andale_Mono.ttf 32 % 32.6598 40.9971 86 - 22.4373 16.9359 4.1457 -Andale_Mono.ttf 32 % 32.6598 40.9971 87 Y 0.1447 29.8264 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 88 Q -0.1943 28.6167 47.7692 -Andale_Mono.ttf 32 % 32.6598 40.9971 89 " 0.2383 14.9239 15.2098 -Andale_Mono.ttf 32 % 32.6598 40.9971 90 ! -0.0391 7.2279 40.7902 -Andale_Mono.ttf 32 % 32.6598 40.9971 91 x 10.6019 26.2739 30.4195 -Andale_Mono.ttf 32 % 32.6598 40.9971 92 ) 0.1320 15.2098 49.6141 -Andale_Mono.ttf 32 % 32.6598 40.9971 93 = 12.6264 27.1098 15.2098 -Andale_Mono.ttf 32 % 32.6598 40.9971 94 + 6.7614 26.9971 26.9971 -Andale_Mono.ttf 32 % 32.6598 40.9971 95 X 0.3106 31.0946 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 96 » 10.5565 25.2250 29.2098 -Andale_Mono.ttf 32 % 32.6598 40.9971 97 ' 0.0841 4.4529 15.2098 -Andale_Mono.ttf 32 % 32.6598 40.9971 98 ¢ 4.9017 23.6474 41.2224 -Andale_Mono.ttf 32 % 32.6598 40.9971 99 Z 0.1529 24.3684 40.5833 -Andale_Mono.ttf 32 % 32.6598 40.9971 100 > 5.7623 21.2279 29.2098 -Andale_Mono.ttf 32 % 32.6598 40.9971 101 ® -0.1594 35.0793 34.5652 -Andale_Mono.ttf 32 % 32.6598 40.9971 102 © -0.0126 35.0793 34.5652 -Andale_Mono.ttf 32 % 32.6598 40.9971 103 ] 0.2986 11.2250 47.8696 -Andale_Mono.ttf 32 % 32.6598 40.9971 104 é -1.1563 25.2250 42.0460 -Andale_Mono.ttf 32 % 32.6598 40.9971 105 z 10.4266 23.1917 30.4195 -Andale_Mono.ttf 32 % 32.6598 40.9971 106 _ 49.9587 35.0793 3.8362 -Andale_Mono.ttf 32 % 32.6598 40.9971 107 ¥ 0.0001 29.8264 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 1 t 2.1958 22.6445 38.7569 -Andale_Mono.ttf 33 £ 26.7902 40.9971 2 h 0.4464 23.0431 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 3 a 9.9540 24.2529 30.8333 -Andale_Mono.ttf 33 £ 26.7902 40.9971 4 n 10.1441 23.0431 30.6264 -Andale_Mono.ttf 33 £ 26.7902 40.9971 5 P 0.2552 22.8055 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 6 o 9.8577 26.7880 30.8333 -Andale_Mono.ttf 33 £ 26.7902 40.9971 7 e 10.1638 25.2250 30.8333 -Andale_Mono.ttf 33 £ 26.7902 40.9971 8 : 10.0341 7.2279 30.8333 -Andale_Mono.ttf 33 £ 26.7902 40.9971 9 r 10.2559 20.4043 30.6264 -Andale_Mono.ttf 33 £ 26.7902 40.9971 10 l 0.1563 20.4167 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 11 i -0.1400 13.3043 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 12 1 0.1682 21.0793 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 13 | 0.2450 4.1457 51.1917 -Andale_Mono.ttf 33 £ 26.7902 40.9971 14 N 0.2270 24.3684 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 15 f 0.3415 22.7449 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 16 g 10.3034 26.2862 42.2069 -Andale_Mono.ttf 33 £ 26.7902 40.9971 17 d 0.0321 24.9156 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 18 W 0.2992 32.6598 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 19 s 10.2582 22.4960 30.8333 -Andale_Mono.ttf 33 £ 26.7902 40.9971 20 c 10.2327 24.2529 30.8333 -Andale_Mono.ttf 33 £ 26.7902 40.9971 21 u 10.2843 23.0431 30.6264 -Andale_Mono.ttf 33 £ 26.7902 40.9971 22 3 0.0899 22.4376 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 23 ~ 21.3400 31.2431 8.4376 -Andale_Mono.ttf 33 £ 26.7902 40.9971 24 # 0.0935 29.7261 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 25 O 0.0446 27.4069 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 26 ` -1.0837 12.2739 8.6445 -Andale_Mono.ttf 33 £ 26.7902 40.9971 27 @ -0.1216 29.8848 45.6293 -Andale_Mono.ttf 33 £ 26.7902 40.9971 28 F 0.2780 21.8334 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 29 S 0.3006 22.6445 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 30 p 9.8793 24.9156 42.2069 -Andale_Mono.ttf 33 £ 26.7902 40.9971 31 “ -0.0514 17.6989 13.2460 -Andale_Mono.ttf 33 £ 26.7902 40.9971 32 % 0.1017 32.6598 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 33 £ 0.2539 26.7902 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 34 . 33.4152 7.2279 7.2279 -Andale_Mono.ttf 33 £ 26.7902 40.9971 35 2 0.0195 21.9695 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 36 5 0.2927 22.1304 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 37 m 9.8703 27.6138 30.6264 -Andale_Mono.ttf 33 £ 26.7902 40.9971 38 V -0.1318 32.2460 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 39 6 -0.0276 25.4319 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 40 w 10.4095 29.5170 30.4195 -Andale_Mono.ttf 33 £ 26.7902 40.9971 41 T 0.2755 29.4710 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 42 M 0.0500 25.2250 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 43 G -0.0747 26.5833 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 44 b 0.1747 24.9156 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 45 9 -0.0006 25.2250 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 46 ; 10.0896 7.2279 36.8514 -Andale_Mono.ttf 33 £ 26.7902 40.9971 47 D 0.3063 25.2250 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 48 L 0.4284 21.8334 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 49 y 10.4190 26.6417 42.0000 -Andale_Mono.ttf 33 £ 26.7902 40.9971 50 ‘ -0.0094 7.2279 13.2460 -Andale_Mono.ttf 33 £ 26.7902 40.9971 51 \ -0.0411 24.4014 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 52 R 0.5053 27.3351 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 53 < 5.7279 21.2279 29.2098 -Andale_Mono.ttf 33 £ 26.7902 40.9971 54 4 0.1550 27.4836 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 55 8 0.0302 25.7598 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 56 0 -0.0801 26.7880 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 57 A 0.3383 32.2460 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 58 E 0.5000 21.0793 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 59 B -0.0629 25.0765 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 60 v 10.2711 26.4348 30.4195 -Andale_Mono.ttf 33 £ 26.7902 40.9971 61 k 0.0665 26.1253 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 62 J -0.0642 19.6627 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 63 U 0.3086 23.0431 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 64 j -0.1617 15.7239 52.3707 -Andale_Mono.ttf 33 £ 26.7902 40.9971 65 ( 0.0101 15.2098 49.6141 -Andale_Mono.ttf 33 £ 26.7902 40.9971 66 7 -0.0791 23.7080 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 67 § -0.0621 23.8543 52.5776 -Andale_Mono.ttf 33 £ 26.7902 40.9971 68 $ -2.7813 22.6445 47.0152 -Andale_Mono.ttf 33 £ 26.7902 40.9971 69 € 0.0524 30.5474 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 70 / 0.0164 24.4014 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 71 C -0.0833 26.7112 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 72 * 0.2190 20.1184 22.4376 -Andale_Mono.ttf 33 £ 26.7902 40.9971 73 ” -0.2172 17.6989 13.2460 -Andale_Mono.ttf 33 £ 26.7902 40.9971 74 ? -0.0017 20.5652 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 75 { 0.1395 15.8848 50.4376 -Andale_Mono.ttf 33 £ 26.7902 40.9971 76 } 0.1941 15.8848 50.4376 -Andale_Mono.ttf 33 £ 26.7902 40.9971 77 , 33.8878 7.2279 13.2460 -Andale_Mono.ttf 33 £ 26.7902 40.9971 78 I 0.2674 17.9971 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 79 ° 0.2165 15.7261 15.7261 -Andale_Mono.ttf 33 £ 26.7902 40.9971 80 K 0.3536 28.2377 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 81 H 0.3255 23.0431 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 82 q 10.2559 24.9156 42.2069 -Andale_Mono.ttf 33 £ 26.7902 40.9971 83 & 0.0711 32.6598 40.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 84 ’ 0.1488 7.2279 13.2460 -Andale_Mono.ttf 33 £ 26.7902 40.9971 85 [ 0.2284 11.2250 47.8696 -Andale_Mono.ttf 33 £ 26.7902 40.9971 86 - 22.8195 16.9359 4.1457 -Andale_Mono.ttf 33 £ 26.7902 40.9971 87 Y 0.3500 29.8264 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 88 Q -0.0220 28.6167 47.7692 -Andale_Mono.ttf 33 £ 26.7902 40.9971 89 " 0.4126 14.9239 15.2098 -Andale_Mono.ttf 33 £ 26.7902 40.9971 90 ! 0.0111 7.2279 40.7902 -Andale_Mono.ttf 33 £ 26.7902 40.9971 91 x 10.4534 26.2739 30.4195 -Andale_Mono.ttf 33 £ 26.7902 40.9971 92 ) -0.0542 15.2098 49.6141 -Andale_Mono.ttf 33 £ 26.7902 40.9971 93 = 12.7352 27.1098 15.2098 -Andale_Mono.ttf 33 £ 26.7902 40.9971 94 + 6.5326 26.9971 26.9971 -Andale_Mono.ttf 33 £ 26.7902 40.9971 95 X 0.4140 31.0946 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 96 » 9.9624 25.2250 29.2098 -Andale_Mono.ttf 33 £ 26.7902 40.9971 97 ' 0.2621 4.4529 15.2098 -Andale_Mono.ttf 33 £ 26.7902 40.9971 98 ¢ 5.0658 23.6474 41.2224 -Andale_Mono.ttf 33 £ 26.7902 40.9971 99 Z 0.2897 24.3684 40.5833 -Andale_Mono.ttf 33 £ 26.7902 40.9971 100 > 5.8841 21.2279 29.2098 -Andale_Mono.ttf 33 £ 26.7902 40.9971 101 ® -0.2215 35.0793 34.5652 -Andale_Mono.ttf 33 £ 26.7902 40.9971 102 © -0.0619 35.0793 34.5652 -Andale_Mono.ttf 33 £ 26.7902 40.9971 103 ] 0.4602 11.2250 47.8696 -Andale_Mono.ttf 33 £ 26.7902 40.9971 104 é -0.9333 25.2250 42.0460 -Andale_Mono.ttf 33 £ 26.7902 40.9971 105 z 10.2902 23.1917 30.4195 -Andale_Mono.ttf 33 £ 26.7902 40.9971 106 _ 49.3119 35.0793 3.8362 -Andale_Mono.ttf 33 £ 26.7902 40.9971 107 ¥ 0.2722 29.8264 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 1 t -31.5612 22.6445 38.7569 -Andale_Mono.ttf 34 . 7.2279 7.2279 2 h -33.6589 23.0431 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 3 a -23.6976 24.2529 30.8333 -Andale_Mono.ttf 34 . 7.2279 7.2279 4 n -23.5271 23.0431 30.6264 -Andale_Mono.ttf 34 . 7.2279 7.2279 5 P -33.4965 22.8055 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 6 o -23.3139 26.7880 30.8333 -Andale_Mono.ttf 34 . 7.2279 7.2279 7 e -23.7348 25.2250 30.8333 -Andale_Mono.ttf 34 . 7.2279 7.2279 8 : -23.6738 7.2279 30.8333 -Andale_Mono.ttf 34 . 7.2279 7.2279 9 r -23.5589 20.4043 30.6264 -Andale_Mono.ttf 34 . 7.2279 7.2279 10 l -33.5868 20.4167 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 11 i -33.8051 13.3043 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 12 1 -33.9182 21.0793 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 13 | -33.6652 4.1457 51.1917 -Andale_Mono.ttf 34 . 7.2279 7.2279 14 N -33.6200 24.3684 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 15 f -33.4743 22.7449 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 16 g -23.3951 26.2862 42.2069 -Andale_Mono.ttf 34 . 7.2279 7.2279 17 d -33.7697 24.9156 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 18 W -33.4357 32.6598 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 19 s -23.6218 22.4960 30.8333 -Andale_Mono.ttf 34 . 7.2279 7.2279 20 c -23.6859 24.2529 30.8333 -Andale_Mono.ttf 34 . 7.2279 7.2279 21 u -23.3465 23.0431 30.6264 -Andale_Mono.ttf 34 . 7.2279 7.2279 22 3 -33.7692 22.4376 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 23 ~ -12.4808 31.2431 8.4376 -Andale_Mono.ttf 34 . 7.2279 7.2279 24 # -33.3509 29.7261 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 25 O -33.7254 27.4069 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 26 ` -35.0145 12.2739 8.6445 -Andale_Mono.ttf 34 . 7.2279 7.2279 27 @ -33.6552 29.8848 45.6293 -Andale_Mono.ttf 34 . 7.2279 7.2279 28 F -33.4743 21.8334 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 29 S -33.5061 22.6445 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 30 p -23.6537 24.9156 42.2069 -Andale_Mono.ttf 34 . 7.2279 7.2279 31 “ -33.8269 17.6989 13.2460 -Andale_Mono.ttf 34 . 7.2279 7.2279 32 % -33.8591 32.6598 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 33 £ -33.4856 26.7902 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 34 . -0.0830 7.2279 7.2279 -Andale_Mono.ttf 34 . 7.2279 7.2279 35 2 -33.7797 21.9695 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 36 5 -33.7112 22.1304 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 37 m -23.5783 27.6138 30.6264 -Andale_Mono.ttf 34 . 7.2279 7.2279 38 V -33.6434 32.2460 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 39 6 -33.9070 25.4319 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 40 w -23.4145 29.5170 30.4195 -Andale_Mono.ttf 34 . 7.2279 7.2279 41 T -33.5298 29.4710 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 42 M -33.6975 25.2250 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 43 G -33.7692 26.5833 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 44 b -33.5279 24.9156 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 45 9 -33.8365 25.2250 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 46 ; -23.9776 7.2279 36.8514 -Andale_Mono.ttf 34 . 7.2279 7.2279 47 D -33.4035 25.2250 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 48 L -33.4030 21.8334 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 49 y -23.2003 26.6417 42.0000 -Andale_Mono.ttf 34 . 7.2279 7.2279 50 ‘ -33.9313 7.2279 13.2460 -Andale_Mono.ttf 34 . 7.2279 7.2279 51 \ -33.7692 24.4014 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 52 R -33.5259 27.3351 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 53 < -28.0446 21.2279 29.2098 -Andale_Mono.ttf 34 . 7.2279 7.2279 54 4 -33.3047 27.4836 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 55 8 -33.3549 25.7598 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 56 0 -33.7057 26.7880 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 57 A -33.6182 32.2460 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 58 E -33.4380 21.0793 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 59 B -33.5730 25.0765 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 60 v -23.3038 26.4348 30.4195 -Andale_Mono.ttf 34 . 7.2279 7.2279 61 k -33.6810 26.1253 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 62 J -33.4129 19.6627 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 63 U -33.4012 23.0431 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 64 j -34.1036 15.7239 52.3707 -Andale_Mono.ttf 34 . 7.2279 7.2279 65 ( -33.8407 15.2098 49.6141 -Andale_Mono.ttf 34 . 7.2279 7.2279 66 7 -33.4658 23.7080 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 67 § -33.6116 23.8543 52.5776 -Andale_Mono.ttf 34 . 7.2279 7.2279 68 $ -36.5486 22.6445 47.0152 -Andale_Mono.ttf 34 . 7.2279 7.2279 69 € -33.7110 30.5474 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 70 / -33.8445 24.4014 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 71 C -33.8547 26.7112 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 72 * -33.5466 20.1184 22.4376 -Andale_Mono.ttf 34 . 7.2279 7.2279 73 ” -33.7612 17.6989 13.2460 -Andale_Mono.ttf 34 . 7.2279 7.2279 74 ? -33.9759 20.5652 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 75 { -33.6384 15.8848 50.4376 -Andale_Mono.ttf 34 . 7.2279 7.2279 76 } -33.6871 15.8848 50.4376 -Andale_Mono.ttf 34 . 7.2279 7.2279 77 , 0.2164 7.2279 13.2460 -Andale_Mono.ttf 34 . 7.2279 7.2279 78 I -33.8710 17.9971 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 79 ° -33.7545 15.7261 15.7261 -Andale_Mono.ttf 34 . 7.2279 7.2279 80 K -33.3219 28.2377 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 81 H -33.6407 23.0431 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 82 q -23.5177 24.9156 42.2069 -Andale_Mono.ttf 34 . 7.2279 7.2279 83 & -33.8976 32.6598 40.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 84 ’ -33.8614 7.2279 13.2460 -Andale_Mono.ttf 34 . 7.2279 7.2279 85 [ -33.5660 11.2250 47.8696 -Andale_Mono.ttf 34 . 7.2279 7.2279 86 - -11.0230 16.9359 4.1457 -Andale_Mono.ttf 34 . 7.2279 7.2279 87 Y -33.5730 29.8264 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 88 Q -33.8940 28.6167 47.7692 -Andale_Mono.ttf 34 . 7.2279 7.2279 89 " -33.5624 14.9239 15.2098 -Andale_Mono.ttf 34 . 7.2279 7.2279 90 ! -33.4381 7.2279 40.7902 -Andale_Mono.ttf 34 . 7.2279 7.2279 91 x -23.1149 26.2739 30.4195 -Andale_Mono.ttf 34 . 7.2279 7.2279 92 ) -33.8741 15.2098 49.6141 -Andale_Mono.ttf 34 . 7.2279 7.2279 93 = -20.7254 27.1098 15.2098 -Andale_Mono.ttf 34 . 7.2279 7.2279 94 + -26.9914 26.9971 26.9971 -Andale_Mono.ttf 34 . 7.2279 7.2279 95 X -33.4445 31.0946 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 96 » -23.5133 25.2250 29.2098 -Andale_Mono.ttf 34 . 7.2279 7.2279 97 ' -33.4319 4.4529 15.2098 -Andale_Mono.ttf 34 . 7.2279 7.2279 98 ¢ -28.6488 23.6474 41.2224 -Andale_Mono.ttf 34 . 7.2279 7.2279 99 Z -33.5108 24.3684 40.5833 -Andale_Mono.ttf 34 . 7.2279 7.2279 100 > -28.3507 21.2279 29.2098 -Andale_Mono.ttf 34 . 7.2279 7.2279 101 ® -33.7675 35.0793 34.5652 -Andale_Mono.ttf 34 . 7.2279 7.2279 102 © -33.8175 35.0793 34.5652 -Andale_Mono.ttf 34 . 7.2279 7.2279 103 ] -33.5443 11.2250 47.8696 -Andale_Mono.ttf 34 . 7.2279 7.2279 104 é -34.7032 25.2250 42.0460 -Andale_Mono.ttf 34 . 7.2279 7.2279 105 z -23.2116 23.1917 30.4195 -Andale_Mono.ttf 34 . 7.2279 7.2279 106 _ 16.1445 35.0793 3.8362 -Andale_Mono.ttf 34 . 7.2279 7.2279 107 ¥ -33.4970 29.8264 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 1 t 2.0891 22.6445 38.7569 -Andale_Mono.ttf 35 2 21.9695 40.7902 2 h 0.3839 23.0431 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 3 a 10.2116 24.2529 30.8333 -Andale_Mono.ttf 35 2 21.9695 40.7902 4 n 10.5165 23.0431 30.6264 -Andale_Mono.ttf 35 2 21.9695 40.7902 5 P -0.0994 22.8055 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 6 o 9.8720 26.7880 30.8333 -Andale_Mono.ttf 35 2 21.9695 40.7902 7 e 9.8425 25.2250 30.8333 -Andale_Mono.ttf 35 2 21.9695 40.7902 8 : 10.2291 7.2279 30.8333 -Andale_Mono.ttf 35 2 21.9695 40.7902 9 r 10.0467 20.4043 30.6264 -Andale_Mono.ttf 35 2 21.9695 40.7902 10 l 0.0387 20.4167 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 11 i -0.1821 13.3043 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 12 1 -0.3276 21.0793 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 13 | 0.0889 4.1457 51.1917 -Andale_Mono.ttf 35 2 21.9695 40.7902 14 N -0.0034 24.3684 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 15 f 0.2768 22.7449 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 16 g 10.1705 26.2862 42.2069 -Andale_Mono.ttf 35 2 21.9695 40.7902 17 d 0.0525 24.9156 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 18 W 0.5115 32.6598 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 19 s 9.9906 22.4960 30.8333 -Andale_Mono.ttf 35 2 21.9695 40.7902 20 c 10.0201 24.2529 30.8333 -Andale_Mono.ttf 35 2 21.9695 40.7902 21 u 10.2149 23.0431 30.6264 -Andale_Mono.ttf 35 2 21.9695 40.7902 22 3 0.0392 22.4376 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 23 ~ 20.9484 31.2431 8.4376 -Andale_Mono.ttf 35 2 21.9695 40.7902 24 # 0.0078 29.7261 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 25 O -0.0878 27.4069 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 26 ` -1.1660 12.2739 8.6445 -Andale_Mono.ttf 35 2 21.9695 40.7902 27 @ -0.0345 29.8848 45.6293 -Andale_Mono.ttf 35 2 21.9695 40.7902 28 F 0.4687 21.8334 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 29 S -0.0894 22.6445 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 30 p 10.0271 24.9156 42.2069 -Andale_Mono.ttf 35 2 21.9695 40.7902 31 “ -0.0636 17.6989 13.2460 -Andale_Mono.ttf 35 2 21.9695 40.7902 32 % 0.0439 32.6598 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 33 £ 0.1324 26.7902 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 34 . 33.7973 7.2279 7.2279 -Andale_Mono.ttf 35 2 21.9695 40.7902 35 2 0.0864 21.9695 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 36 5 0.0431 22.1304 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 37 m 10.0194 27.6138 30.6264 -Andale_Mono.ttf 35 2 21.9695 40.7902 38 V 0.2170 32.2460 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 39 6 0.0998 25.4319 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 40 w 10.6248 29.5170 30.4195 -Andale_Mono.ttf 35 2 21.9695 40.7902 41 T 0.2207 29.4710 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 42 M 0.4301 25.2250 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 43 G -0.2469 26.5833 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 44 b 0.0428 24.9156 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 45 9 0.0603 25.2250 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 46 ; 10.0117 7.2279 36.8514 -Andale_Mono.ttf 35 2 21.9695 40.7902 47 D 0.0944 25.2250 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 48 L 0.4172 21.8334 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 49 y 10.3098 26.6417 42.0000 -Andale_Mono.ttf 35 2 21.9695 40.7902 50 ‘ 0.1536 7.2279 13.2460 -Andale_Mono.ttf 35 2 21.9695 40.7902 51 \ 0.2904 24.4014 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 52 R 0.4826 27.3351 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 53 < 5.8031 21.2279 29.2098 -Andale_Mono.ttf 35 2 21.9695 40.7902 54 4 0.1519 27.4836 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 55 8 -0.0536 25.7598 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 56 0 -0.1427 26.7880 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 57 A 0.4592 32.2460 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 58 E 0.0516 21.0793 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 59 B 0.1889 25.0765 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 60 v 10.1887 26.4348 30.4195 -Andale_Mono.ttf 35 2 21.9695 40.7902 61 k 0.1649 26.1253 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 62 J 0.2113 19.6627 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 63 U 0.3517 23.0431 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 64 j 0.1713 15.7239 52.3707 -Andale_Mono.ttf 35 2 21.9695 40.7902 65 ( -0.1526 15.2098 49.6141 -Andale_Mono.ttf 35 2 21.9695 40.7902 66 7 0.3896 23.7080 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 67 § 0.0690 23.8543 52.5776 -Andale_Mono.ttf 35 2 21.9695 40.7902 68 $ -2.8767 22.6445 47.0152 -Andale_Mono.ttf 35 2 21.9695 40.7902 69 € -0.0695 30.5474 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 70 / 0.0764 24.4014 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 71 C -0.0927 26.7112 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 72 * -0.0236 20.1184 22.4376 -Andale_Mono.ttf 35 2 21.9695 40.7902 73 ” -0.0371 17.6989 13.2460 -Andale_Mono.ttf 35 2 21.9695 40.7902 74 ? 0.2164 20.5652 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 75 { 0.2313 15.8848 50.4376 -Andale_Mono.ttf 35 2 21.9695 40.7902 76 } 0.3483 15.8848 50.4376 -Andale_Mono.ttf 35 2 21.9695 40.7902 77 , 33.5790 7.2279 13.2460 -Andale_Mono.ttf 35 2 21.9695 40.7902 78 I 0.0140 17.9971 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 79 ° 0.2080 15.7261 15.7261 -Andale_Mono.ttf 35 2 21.9695 40.7902 80 K 0.2569 28.2377 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 81 H 0.2490 23.0431 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 82 q 10.2502 24.9156 42.2069 -Andale_Mono.ttf 35 2 21.9695 40.7902 83 & -0.1414 32.6598 40.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 84 ’ 0.0735 7.2279 13.2460 -Andale_Mono.ttf 35 2 21.9695 40.7902 85 [ 0.1698 11.2250 47.8696 -Andale_Mono.ttf 35 2 21.9695 40.7902 86 - 22.8989 16.9359 4.1457 -Andale_Mono.ttf 35 2 21.9695 40.7902 87 Y 0.3144 29.8264 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 88 Q 0.0063 28.6167 47.7692 -Andale_Mono.ttf 35 2 21.9695 40.7902 89 " 0.1550 14.9239 15.2098 -Andale_Mono.ttf 35 2 21.9695 40.7902 90 ! 0.0421 7.2279 40.7902 -Andale_Mono.ttf 35 2 21.9695 40.7902 91 x 10.2874 26.2739 30.4195 -Andale_Mono.ttf 35 2 21.9695 40.7902 92 ) -0.1350 15.2098 49.6141 -Andale_Mono.ttf 35 2 21.9695 40.7902 93 = 12.7414 27.1098 15.2098 -Andale_Mono.ttf 35 2 21.9695 40.7902 94 + 6.9045 26.9971 26.9971 -Andale_Mono.ttf 35 2 21.9695 40.7902 95 X 0.1698 31.0946 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 96 » 10.1092 25.2250 29.2098 -Andale_Mono.ttf 35 2 21.9695 40.7902 97 ' 0.0553 4.4529 15.2098 -Andale_Mono.ttf 35 2 21.9695 40.7902 98 ¢ 5.1652 23.6474 41.2224 -Andale_Mono.ttf 35 2 21.9695 40.7902 99 Z 0.0065 24.3684 40.5833 -Andale_Mono.ttf 35 2 21.9695 40.7902 100 > 5.8672 21.2279 29.2098 -Andale_Mono.ttf 35 2 21.9695 40.7902 101 ® -0.0465 35.0793 34.5652 -Andale_Mono.ttf 35 2 21.9695 40.7902 102 © -0.1525 35.0793 34.5652 -Andale_Mono.ttf 35 2 21.9695 40.7902 103 ] 0.2900 11.2250 47.8696 -Andale_Mono.ttf 35 2 21.9695 40.7902 104 é -1.0138 25.2250 42.0460 -Andale_Mono.ttf 35 2 21.9695 40.7902 105 z 10.0708 23.1917 30.4195 -Andale_Mono.ttf 35 2 21.9695 40.7902 106 _ 49.5392 35.0793 3.8362 -Andale_Mono.ttf 35 2 21.9695 40.7902 107 ¥ -0.2447 29.8264 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 1 t 2.1083 22.6445 38.7569 -Andale_Mono.ttf 36 5 22.1304 40.7902 2 h 0.1046 23.0431 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 3 a 9.9813 24.2529 30.8333 -Andale_Mono.ttf 36 5 22.1304 40.7902 4 n 9.7435 23.0431 30.6264 -Andale_Mono.ttf 36 5 22.1304 40.7902 5 P 0.1075 22.8055 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 6 o 9.7241 26.7880 30.8333 -Andale_Mono.ttf 36 5 22.1304 40.7902 7 e 9.8025 25.2250 30.8333 -Andale_Mono.ttf 36 5 22.1304 40.7902 8 : 9.7381 7.2279 30.8333 -Andale_Mono.ttf 36 5 22.1304 40.7902 9 r 10.0173 20.4043 30.6264 -Andale_Mono.ttf 36 5 22.1304 40.7902 10 l 0.2479 20.4167 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 11 i -0.1931 13.3043 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 12 1 -0.1730 21.0793 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 13 | -0.1740 4.1457 51.1917 -Andale_Mono.ttf 36 5 22.1304 40.7902 14 N 0.0402 24.3684 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 15 f 0.0838 22.7449 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 16 g 9.9855 26.2862 42.2069 -Andale_Mono.ttf 36 5 22.1304 40.7902 17 d -0.2019 24.9156 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 18 W -0.0371 32.6598 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 19 s 9.7843 22.4960 30.8333 -Andale_Mono.ttf 36 5 22.1304 40.7902 20 c 9.8853 24.2529 30.8333 -Andale_Mono.ttf 36 5 22.1304 40.7902 21 u 10.0185 23.0431 30.6264 -Andale_Mono.ttf 36 5 22.1304 40.7902 22 3 -0.1563 22.4376 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 23 ~ 21.1237 31.2431 8.4376 -Andale_Mono.ttf 36 5 22.1304 40.7902 24 # 0.0929 29.7261 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 25 O -0.1027 27.4069 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 26 ` -1.1791 12.2739 8.6445 -Andale_Mono.ttf 36 5 22.1304 40.7902 27 @ -0.0400 29.8848 45.6293 -Andale_Mono.ttf 36 5 22.1304 40.7902 28 F 0.1536 21.8334 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 29 S -0.4136 22.6445 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 30 p 10.1592 24.9156 42.2069 -Andale_Mono.ttf 36 5 22.1304 40.7902 31 “ -0.1778 17.6989 13.2460 -Andale_Mono.ttf 36 5 22.1304 40.7902 32 % -0.4910 32.6598 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 33 £ -0.2992 26.7902 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 34 . 33.6782 7.2279 7.2279 -Andale_Mono.ttf 36 5 22.1304 40.7902 35 2 0.0052 21.9695 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 36 5 0.1617 22.1304 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 37 m 10.0423 27.6138 30.6264 -Andale_Mono.ttf 36 5 22.1304 40.7902 38 V 0.1172 32.2460 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 39 6 -0.2879 25.4319 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 40 w 10.1080 29.5170 30.4195 -Andale_Mono.ttf 36 5 22.1304 40.7902 41 T -0.1500 29.4710 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 42 M 0.3513 25.2250 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 43 G -0.1862 26.5833 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 44 b -0.0927 24.9156 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 45 9 -0.1385 25.2250 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 46 ; 10.0052 7.2279 36.8514 -Andale_Mono.ttf 36 5 22.1304 40.7902 47 D -0.0764 25.2250 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 48 L 0.0019 21.8334 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 49 y 10.1378 26.6417 42.0000 -Andale_Mono.ttf 36 5 22.1304 40.7902 50 ‘ 0.1814 7.2279 13.2460 -Andale_Mono.ttf 36 5 22.1304 40.7902 51 \ -0.2006 24.4014 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 52 R -0.1324 27.3351 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 53 < 5.6726 21.2279 29.2098 -Andale_Mono.ttf 36 5 22.1304 40.7902 54 4 -0.0734 27.4836 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 55 8 -0.0356 25.7598 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 56 0 -0.1830 26.7880 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 57 A -0.0371 32.2460 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 58 E -0.0881 21.0793 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 59 B 0.2592 25.0765 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 60 v 10.3427 26.4348 30.4195 -Andale_Mono.ttf 36 5 22.1304 40.7902 61 k -0.2316 26.1253 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 62 J 0.2904 19.6627 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 63 U 0.1224 23.0431 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 64 j -0.2276 15.7239 52.3707 -Andale_Mono.ttf 36 5 22.1304 40.7902 65 ( -0.2163 15.2098 49.6141 -Andale_Mono.ttf 36 5 22.1304 40.7902 66 7 0.0483 23.7080 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 67 § -0.2879 23.8543 52.5776 -Andale_Mono.ttf 36 5 22.1304 40.7902 68 $ -2.7345 22.6445 47.0152 -Andale_Mono.ttf 36 5 22.1304 40.7902 69 € -0.3313 30.5474 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 70 / -0.3366 24.4014 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 71 C -0.3071 26.7112 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 72 * -0.1124 20.1184 22.4376 -Andale_Mono.ttf 36 5 22.1304 40.7902 73 ” -0.1232 17.6989 13.2460 -Andale_Mono.ttf 36 5 22.1304 40.7902 74 ? -0.2159 20.5652 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 75 { -0.0327 15.8848 50.4376 -Andale_Mono.ttf 36 5 22.1304 40.7902 76 } 0.2326 15.8848 50.4376 -Andale_Mono.ttf 36 5 22.1304 40.7902 77 , 33.5220 7.2279 13.2460 -Andale_Mono.ttf 36 5 22.1304 40.7902 78 I 0.3047 17.9971 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 79 ° -0.0440 15.7261 15.7261 -Andale_Mono.ttf 36 5 22.1304 40.7902 80 K -0.3722 28.2377 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 81 H 0.1893 23.0431 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 82 q 9.9285 24.9156 42.2069 -Andale_Mono.ttf 36 5 22.1304 40.7902 83 & -0.1318 32.6598 40.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 84 ’ -0.3895 7.2279 13.2460 -Andale_Mono.ttf 36 5 22.1304 40.7902 85 [ -0.0201 11.2250 47.8696 -Andale_Mono.ttf 36 5 22.1304 40.7902 86 - 22.5430 16.9359 4.1457 -Andale_Mono.ttf 36 5 22.1304 40.7902 87 Y -0.0094 29.8264 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 88 Q -0.2065 28.6167 47.7692 -Andale_Mono.ttf 36 5 22.1304 40.7902 89 " -0.0381 14.9239 15.2098 -Andale_Mono.ttf 36 5 22.1304 40.7902 90 ! -0.1023 7.2279 40.7902 -Andale_Mono.ttf 36 5 22.1304 40.7902 91 x 9.8891 26.2739 30.4195 -Andale_Mono.ttf 36 5 22.1304 40.7902 92 ) -0.1604 15.2098 49.6141 -Andale_Mono.ttf 36 5 22.1304 40.7902 93 = 12.8245 27.1098 15.2098 -Andale_Mono.ttf 36 5 22.1304 40.7902 94 + 6.6989 26.9971 26.9971 -Andale_Mono.ttf 36 5 22.1304 40.7902 95 X -0.1022 31.0946 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 96 » 9.7224 25.2250 29.2098 -Andale_Mono.ttf 36 5 22.1304 40.7902 97 ' -0.1330 4.4529 15.2098 -Andale_Mono.ttf 36 5 22.1304 40.7902 98 ¢ 4.9319 23.6474 41.2224 -Andale_Mono.ttf 36 5 22.1304 40.7902 99 Z -0.0169 24.3684 40.5833 -Andale_Mono.ttf 36 5 22.1304 40.7902 100 > 5.5387 21.2279 29.2098 -Andale_Mono.ttf 36 5 22.1304 40.7902 101 ® -0.2042 35.0793 34.5652 -Andale_Mono.ttf 36 5 22.1304 40.7902 102 © -0.1375 35.0793 34.5652 -Andale_Mono.ttf 36 5 22.1304 40.7902 103 ] -0.0868 11.2250 47.8696 -Andale_Mono.ttf 36 5 22.1304 40.7902 104 é -1.0682 25.2250 42.0460 -Andale_Mono.ttf 36 5 22.1304 40.7902 105 z 9.8425 23.1917 30.4195 -Andale_Mono.ttf 36 5 22.1304 40.7902 106 _ 49.4255 35.0793 3.8362 -Andale_Mono.ttf 36 5 22.1304 40.7902 107 ¥ -0.0863 29.8264 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 1 t -7.8287 22.6445 38.7569 -Andale_Mono.ttf 37 m 27.6138 30.6264 2 h -10.0718 23.0431 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 3 a -0.1557 24.2529 30.8333 -Andale_Mono.ttf 37 m 27.6138 30.6264 4 n 0.0356 23.0431 30.6264 -Andale_Mono.ttf 37 m 27.6138 30.6264 5 P -9.8161 22.8055 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 6 o 0.0080 26.7880 30.8333 -Andale_Mono.ttf 37 m 27.6138 30.6264 7 e 0.0836 25.2250 30.8333 -Andale_Mono.ttf 37 m 27.6138 30.6264 8 : 0.1182 7.2279 30.8333 -Andale_Mono.ttf 37 m 27.6138 30.6264 9 r -0.3778 20.4043 30.6264 -Andale_Mono.ttf 37 m 27.6138 30.6264 10 l -9.9885 20.4167 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 11 i -10.4627 13.3043 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 12 1 -10.4755 21.0793 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 13 | -9.7714 4.1457 51.1917 -Andale_Mono.ttf 37 m 27.6138 30.6264 14 N -10.2362 24.3684 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 15 f -10.0480 22.7449 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 16 g -0.2358 26.2862 42.2069 -Andale_Mono.ttf 37 m 27.6138 30.6264 17 d -10.1945 24.9156 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 18 W -10.0422 32.6598 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 19 s 0.3094 22.4960 30.8333 -Andale_Mono.ttf 37 m 27.6138 30.6264 20 c -0.1441 24.2529 30.8333 -Andale_Mono.ttf 37 m 27.6138 30.6264 21 u 0.2569 23.0431 30.6264 -Andale_Mono.ttf 37 m 27.6138 30.6264 22 3 -10.3037 22.4376 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 23 ~ 11.4814 31.2431 8.4376 -Andale_Mono.ttf 37 m 27.6138 30.6264 24 # -9.6935 29.7261 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 25 O -9.9736 27.4069 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 26 ` -11.1906 12.2739 8.6445 -Andale_Mono.ttf 37 m 27.6138 30.6264 27 @ -10.3602 29.8848 45.6293 -Andale_Mono.ttf 37 m 27.6138 30.6264 28 F -10.0825 21.8334 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 29 S -9.9002 22.6445 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 30 p -0.2881 24.9156 42.2069 -Andale_Mono.ttf 37 m 27.6138 30.6264 31 “ -10.2528 17.6989 13.2460 -Andale_Mono.ttf 37 m 27.6138 30.6264 32 % -10.0636 32.6598 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 33 £ -10.2601 26.7902 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 34 . 23.3898 7.2279 7.2279 -Andale_Mono.ttf 37 m 27.6138 30.6264 35 2 -10.2805 21.9695 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 36 5 -9.9113 22.1304 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 37 m 0.0878 27.6138 30.6264 -Andale_Mono.ttf 37 m 27.6138 30.6264 38 V -10.1274 32.2460 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 39 6 -10.2868 25.4319 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 40 w 0.2947 29.5170 30.4195 -Andale_Mono.ttf 37 m 27.6138 30.6264 41 T -9.8320 29.4710 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 42 M -9.8477 25.2250 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 43 G -9.9535 26.5833 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 44 b -9.7046 24.9156 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 45 9 -10.2310 25.2250 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 46 ; 0.0985 7.2279 36.8514 -Andale_Mono.ttf 37 m 27.6138 30.6264 47 D -9.6876 25.2250 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 48 L -9.9569 21.8334 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 49 y 0.0807 26.6417 42.0000 -Andale_Mono.ttf 37 m 27.6138 30.6264 50 ‘ -10.4010 7.2279 13.2460 -Andale_Mono.ttf 37 m 27.6138 30.6264 51 \ -10.0506 24.4014 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 52 R -10.5517 27.3351 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 53 < -4.5563 21.2279 29.2098 -Andale_Mono.ttf 37 m 27.6138 30.6264 54 4 -9.8182 27.4836 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 55 8 -10.5812 25.7598 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 56 0 -10.3620 26.7880 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 57 A -9.6619 32.2460 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 58 E -9.9379 21.0793 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 59 B -9.9628 25.0765 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 60 v 0.1262 26.4348 30.4195 -Andale_Mono.ttf 37 m 27.6138 30.6264 61 k -10.2033 26.1253 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 62 J -9.8172 19.6627 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 63 U -9.8025 23.0431 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 64 j -10.1732 15.7239 52.3707 -Andale_Mono.ttf 37 m 27.6138 30.6264 65 ( -10.1266 15.2098 49.6141 -Andale_Mono.ttf 37 m 27.6138 30.6264 66 7 -9.6107 23.7080 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 67 § -10.3745 23.8543 52.5776 -Andale_Mono.ttf 37 m 27.6138 30.6264 68 $ -13.1355 22.6445 47.0152 -Andale_Mono.ttf 37 m 27.6138 30.6264 69 € -9.9647 30.5474 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 70 / -10.0552 24.4014 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 71 C -10.1446 26.7112 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 72 * -9.8956 20.1184 22.4376 -Andale_Mono.ttf 37 m 27.6138 30.6264 73 ” -10.0371 17.6989 13.2460 -Andale_Mono.ttf 37 m 27.6138 30.6264 74 ? -10.3138 20.5652 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 75 { -10.0791 15.8848 50.4376 -Andale_Mono.ttf 37 m 27.6138 30.6264 76 } -9.7465 15.8848 50.4376 -Andale_Mono.ttf 37 m 27.6138 30.6264 77 , 23.6338 7.2279 13.2460 -Andale_Mono.ttf 37 m 27.6138 30.6264 78 I -10.1998 17.9971 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 79 ° -10.1438 15.7261 15.7261 -Andale_Mono.ttf 37 m 27.6138 30.6264 80 K -10.2017 28.2377 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 81 H -9.9805 23.0431 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 82 q 0.2115 24.9156 42.2069 -Andale_Mono.ttf 37 m 27.6138 30.6264 83 & -10.1441 32.6598 40.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 84 ’ -10.4193 7.2279 13.2460 -Andale_Mono.ttf 37 m 27.6138 30.6264 85 [ -9.9278 11.2250 47.8696 -Andale_Mono.ttf 37 m 27.6138 30.6264 86 - 12.3471 16.9359 4.1457 -Andale_Mono.ttf 37 m 27.6138 30.6264 87 Y -10.1565 29.8264 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 88 Q -10.0854 28.6167 47.7692 -Andale_Mono.ttf 37 m 27.6138 30.6264 89 " -10.4111 14.9239 15.2098 -Andale_Mono.ttf 37 m 27.6138 30.6264 90 ! -9.6777 7.2279 40.7902 -Andale_Mono.ttf 37 m 27.6138 30.6264 91 x 0.2678 26.2739 30.4195 -Andale_Mono.ttf 37 m 27.6138 30.6264 92 ) -10.3138 15.2098 49.6141 -Andale_Mono.ttf 37 m 27.6138 30.6264 93 = 2.5236 27.1098 15.2098 -Andale_Mono.ttf 37 m 27.6138 30.6264 94 + -3.4325 26.9971 26.9971 -Andale_Mono.ttf 37 m 27.6138 30.6264 95 X -9.9971 31.0946 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 96 » 0.2671 25.2250 29.2098 -Andale_Mono.ttf 37 m 27.6138 30.6264 97 ' -10.0141 4.4529 15.2098 -Andale_Mono.ttf 37 m 27.6138 30.6264 98 ¢ -5.2654 23.6474 41.2224 -Andale_Mono.ttf 37 m 27.6138 30.6264 99 Z -10.0799 24.3684 40.5833 -Andale_Mono.ttf 37 m 27.6138 30.6264 100 > -4.5948 21.2279 29.2098 -Andale_Mono.ttf 37 m 27.6138 30.6264 101 ® -10.1907 35.0793 34.5652 -Andale_Mono.ttf 37 m 27.6138 30.6264 102 © -10.3789 35.0793 34.5652 -Andale_Mono.ttf 37 m 27.6138 30.6264 103 ] -9.7295 11.2250 47.8696 -Andale_Mono.ttf 37 m 27.6138 30.6264 104 é -11.2937 25.2250 42.0460 -Andale_Mono.ttf 37 m 27.6138 30.6264 105 z 0.0820 23.1917 30.4195 -Andale_Mono.ttf 37 m 27.6138 30.6264 106 _ 39.2586 35.0793 3.8362 -Andale_Mono.ttf 37 m 27.6138 30.6264 107 ¥ -10.0246 29.8264 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 1 t 1.8594 22.6445 38.7569 -Andale_Mono.ttf 38 V 32.2460 40.5833 2 h 0.0979 23.0431 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 3 a 9.9896 24.2529 30.8333 -Andale_Mono.ttf 38 V 32.2460 40.5833 4 n 10.0322 23.0431 30.6264 -Andale_Mono.ttf 38 V 32.2460 40.5833 5 P -0.2891 22.8055 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 6 o 9.9601 26.7880 30.8333 -Andale_Mono.ttf 38 V 32.2460 40.5833 7 e 10.0232 25.2250 30.8333 -Andale_Mono.ttf 38 V 32.2460 40.5833 8 : 10.2356 7.2279 30.8333 -Andale_Mono.ttf 38 V 32.2460 40.5833 9 r 9.9835 20.4043 30.6264 -Andale_Mono.ttf 38 V 32.2460 40.5833 10 l 0.2597 20.4167 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 11 i -0.3456 13.3043 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 12 1 -0.1454 21.0793 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 13 | -0.1485 4.1457 51.1917 -Andale_Mono.ttf 38 V 32.2460 40.5833 14 N 0.4341 24.3684 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 15 f 0.1106 22.7449 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 16 g 10.0427 26.2862 42.2069 -Andale_Mono.ttf 38 V 32.2460 40.5833 17 d 0.1256 24.9156 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 18 W 0.1118 32.6598 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 19 s 10.1345 22.4960 30.8333 -Andale_Mono.ttf 38 V 32.2460 40.5833 20 c 9.7408 24.2529 30.8333 -Andale_Mono.ttf 38 V 32.2460 40.5833 21 u 10.1786 23.0431 30.6264 -Andale_Mono.ttf 38 V 32.2460 40.5833 22 3 -0.3801 22.4376 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 23 ~ 20.6762 31.2431 8.4376 -Andale_Mono.ttf 38 V 32.2460 40.5833 24 # 0.0038 29.7261 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 25 O -0.1040 27.4069 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 26 ` -1.1416 12.2739 8.6445 -Andale_Mono.ttf 38 V 32.2460 40.5833 27 @ -0.4750 29.8848 45.6293 -Andale_Mono.ttf 38 V 32.2460 40.5833 28 F 0.0323 21.8334 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 29 S -0.4592 22.6445 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 30 p 9.9789 24.9156 42.2069 -Andale_Mono.ttf 38 V 32.2460 40.5833 31 “ -0.0762 17.6989 13.2460 -Andale_Mono.ttf 38 V 32.2460 40.5833 32 % -0.0909 32.6598 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 33 £ -0.2843 26.7902 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 34 . 33.5064 7.2279 7.2279 -Andale_Mono.ttf 38 V 32.2460 40.5833 35 2 0.0190 21.9695 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 36 5 -0.2598 22.1304 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 37 m 9.8691 27.6138 30.6264 -Andale_Mono.ttf 38 V 32.2460 40.5833 38 V 0.0505 32.2460 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 39 6 -0.2610 25.4319 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 40 w 10.1887 29.5170 30.4195 -Andale_Mono.ttf 38 V 32.2460 40.5833 41 T -0.0506 29.4710 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 42 M -0.1732 25.2250 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 43 G -0.0977 26.5833 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 44 b 0.0104 24.9156 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 45 9 -0.0198 25.2250 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 46 ; 9.9775 7.2279 36.8514 -Andale_Mono.ttf 38 V 32.2460 40.5833 47 D 0.1525 25.2250 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 48 L -0.0828 21.8334 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 49 y 10.3222 26.6417 42.0000 -Andale_Mono.ttf 38 V 32.2460 40.5833 50 ‘ -0.3017 7.2279 13.2460 -Andale_Mono.ttf 38 V 32.2460 40.5833 51 \ -0.2086 24.4014 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 52 R -0.2278 27.3351 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 53 < 5.4293 21.2279 29.2098 -Andale_Mono.ttf 38 V 32.2460 40.5833 54 4 0.0563 27.4836 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 55 8 -0.2095 25.7598 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 56 0 -0.2435 26.7880 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 57 A -0.1337 32.2460 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 58 E 0.0301 21.0793 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 59 B -0.0800 25.0765 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 60 v 10.1754 26.4348 30.4195 -Andale_Mono.ttf 38 V 32.2460 40.5833 61 k 0.3214 26.1253 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 62 J -0.1664 19.6627 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 63 U -0.0509 23.0431 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 64 j -0.3446 15.7239 52.3707 -Andale_Mono.ttf 38 V 32.2460 40.5833 65 ( -0.3511 15.2098 49.6141 -Andale_Mono.ttf 38 V 32.2460 40.5833 66 7 -0.0098 23.7080 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 67 § 0.1179 23.8543 52.5776 -Andale_Mono.ttf 38 V 32.2460 40.5833 68 $ -2.9103 22.6445 47.0152 -Andale_Mono.ttf 38 V 32.2460 40.5833 69 € -0.2149 30.5474 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 70 / -0.1828 24.4014 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 71 C -0.1502 26.7112 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 72 * -0.3391 20.1184 22.4376 -Andale_Mono.ttf 38 V 32.2460 40.5833 73 ” -0.2396 17.6989 13.2460 -Andale_Mono.ttf 38 V 32.2460 40.5833 74 ? -0.0527 20.5652 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 75 { 0.1324 15.8848 50.4376 -Andale_Mono.ttf 38 V 32.2460 40.5833 76 } -0.1078 15.8848 50.4376 -Andale_Mono.ttf 38 V 32.2460 40.5833 77 , 33.6480 7.2279 13.2460 -Andale_Mono.ttf 38 V 32.2460 40.5833 78 I 0.1017 17.9971 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 79 ° -0.0301 15.7261 15.7261 -Andale_Mono.ttf 38 V 32.2460 40.5833 80 K -0.1017 28.2377 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 81 H 0.1293 23.0431 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 82 q 10.1306 24.9156 42.2069 -Andale_Mono.ttf 38 V 32.2460 40.5833 83 & -0.2323 32.6598 40.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 84 ’ -0.1862 7.2279 13.2460 -Andale_Mono.ttf 38 V 32.2460 40.5833 85 [ -0.2077 11.2250 47.8696 -Andale_Mono.ttf 38 V 32.2460 40.5833 86 - 22.1858 16.9359 4.1457 -Andale_Mono.ttf 38 V 32.2460 40.5833 87 Y -0.0327 29.8264 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 88 Q -0.1098 28.6167 47.7692 -Andale_Mono.ttf 38 V 32.2460 40.5833 89 " 0.1223 14.9239 15.2098 -Andale_Mono.ttf 38 V 32.2460 40.5833 90 ! 0.2215 7.2279 40.7902 -Andale_Mono.ttf 38 V 32.2460 40.5833 91 x 10.2370 26.2739 30.4195 -Andale_Mono.ttf 38 V 32.2460 40.5833 92 ) -0.3710 15.2098 49.6141 -Andale_Mono.ttf 38 V 32.2460 40.5833 93 = 12.9203 27.1098 15.2098 -Andale_Mono.ttf 38 V 32.2460 40.5833 94 + 6.7432 26.9971 26.9971 -Andale_Mono.ttf 38 V 32.2460 40.5833 95 X 0.1039 31.0946 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 96 » 10.1358 25.2250 29.2098 -Andale_Mono.ttf 38 V 32.2460 40.5833 97 ' -0.3380 4.4529 15.2098 -Andale_Mono.ttf 38 V 32.2460 40.5833 98 ¢ 4.5336 23.6474 41.2224 -Andale_Mono.ttf 38 V 32.2460 40.5833 99 Z -0.0125 24.3684 40.5833 -Andale_Mono.ttf 38 V 32.2460 40.5833 100 > 5.3900 21.2279 29.2098 -Andale_Mono.ttf 38 V 32.2460 40.5833 101 ® -0.1088 35.0793 34.5652 -Andale_Mono.ttf 38 V 32.2460 40.5833 102 © -0.0940 35.0793 34.5652 -Andale_Mono.ttf 38 V 32.2460 40.5833 103 ] 0.0175 11.2250 47.8696 -Andale_Mono.ttf 38 V 32.2460 40.5833 104 é -1.3914 25.2250 42.0460 -Andale_Mono.ttf 38 V 32.2460 40.5833 105 z 9.9029 23.1917 30.4195 -Andale_Mono.ttf 38 V 32.2460 40.5833 106 _ 49.7607 35.0793 3.8362 -Andale_Mono.ttf 38 V 32.2460 40.5833 107 ¥ 0.0460 29.8264 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 1 t 2.3176 22.6445 38.7569 -Andale_Mono.ttf 39 6 25.4319 40.9971 2 h 0.0876 23.0431 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 3 a 10.1070 24.2529 30.8333 -Andale_Mono.ttf 39 6 25.4319 40.9971 4 n 10.0948 23.0431 30.6264 -Andale_Mono.ttf 39 6 25.4319 40.9971 5 P 0.0431 22.8055 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 6 o 9.8632 26.7880 30.8333 -Andale_Mono.ttf 39 6 25.4319 40.9971 7 e 10.1293 25.2250 30.8333 -Andale_Mono.ttf 39 6 25.4319 40.9971 8 : 10.2715 7.2279 30.8333 -Andale_Mono.ttf 39 6 25.4319 40.9971 9 r 10.2577 20.4043 30.6264 -Andale_Mono.ttf 39 6 25.4319 40.9971 10 l 0.4109 20.4167 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 11 i -0.2527 13.3043 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 12 1 0.1975 21.0793 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 13 | 0.0807 4.1457 51.1917 -Andale_Mono.ttf 39 6 25.4319 40.9971 14 N 0.3339 24.3684 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 15 f 0.5339 22.7449 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 16 g 9.9959 26.2862 42.2069 -Andale_Mono.ttf 39 6 25.4319 40.9971 17 d 0.2429 24.9156 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 18 W 0.0226 32.6598 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 19 s 10.1155 22.4960 30.8333 -Andale_Mono.ttf 39 6 25.4319 40.9971 20 c 10.1682 24.2529 30.8333 -Andale_Mono.ttf 39 6 25.4319 40.9971 21 u 10.1741 23.0431 30.6264 -Andale_Mono.ttf 39 6 25.4319 40.9971 22 3 -0.0784 22.4376 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 23 ~ 21.2795 31.2431 8.4376 -Andale_Mono.ttf 39 6 25.4319 40.9971 24 # 0.0347 29.7261 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 25 O 0.0500 27.4069 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 26 ` -0.8389 12.2739 8.6445 -Andale_Mono.ttf 39 6 25.4319 40.9971 27 @ -0.0985 29.8848 45.6293 -Andale_Mono.ttf 39 6 25.4319 40.9971 28 F 0.3613 21.8334 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 29 S -0.0943 22.6445 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 30 p 9.9185 24.9156 42.2069 -Andale_Mono.ttf 39 6 25.4319 40.9971 31 “ 0.0282 17.6989 13.2460 -Andale_Mono.ttf 39 6 25.4319 40.9971 32 % -0.0828 32.6598 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 33 £ -0.1213 26.7902 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 34 . 33.7807 7.2279 7.2279 -Andale_Mono.ttf 39 6 25.4319 40.9971 35 2 -0.0371 21.9695 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 36 5 0.5578 22.1304 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 37 m 10.0515 27.6138 30.6264 -Andale_Mono.ttf 39 6 25.4319 40.9971 38 V 0.4544 32.2460 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 39 6 -0.0628 25.4319 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 40 w 10.6544 29.5170 30.4195 -Andale_Mono.ttf 39 6 25.4319 40.9971 41 T 0.0299 29.4710 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 42 M 0.2588 25.2250 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 43 G 0.2411 26.5833 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 44 b 0.2914 24.9156 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 45 9 -0.1337 25.2250 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 46 ; 10.0641 7.2279 36.8514 -Andale_Mono.ttf 39 6 25.4319 40.9971 47 D 0.2584 25.2250 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 48 L 0.2132 21.8334 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 49 y 10.3525 26.6417 42.0000 -Andale_Mono.ttf 39 6 25.4319 40.9971 50 ‘ 0.2023 7.2279 13.2460 -Andale_Mono.ttf 39 6 25.4319 40.9971 51 \ -0.2873 24.4014 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 52 R 0.3732 27.3351 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 53 < 5.8101 21.2279 29.2098 -Andale_Mono.ttf 39 6 25.4319 40.9971 54 4 0.5295 27.4836 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 55 8 0.0437 25.7598 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 56 0 -0.0318 26.7880 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 57 A 0.2257 32.2460 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 58 E -0.0572 21.0793 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 59 B 0.2409 25.0765 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 60 v 10.3379 26.4348 30.4195 -Andale_Mono.ttf 39 6 25.4319 40.9971 61 k 0.1948 26.1253 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 62 J 0.2153 19.6627 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 63 U -0.1274 23.0431 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 64 j -0.1060 15.7239 52.3707 -Andale_Mono.ttf 39 6 25.4319 40.9971 65 ( 0.1403 15.2098 49.6141 -Andale_Mono.ttf 39 6 25.4319 40.9971 66 7 0.0129 23.7080 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 67 § -0.1498 23.8543 52.5776 -Andale_Mono.ttf 39 6 25.4319 40.9971 68 $ -2.6587 22.6445 47.0152 -Andale_Mono.ttf 39 6 25.4319 40.9971 69 € -0.0636 30.5474 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 70 / -0.0780 24.4014 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 71 C 0.2486 26.7112 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 72 * 0.0708 20.1184 22.4376 -Andale_Mono.ttf 39 6 25.4319 40.9971 73 ” -0.1065 17.6989 13.2460 -Andale_Mono.ttf 39 6 25.4319 40.9971 74 ? 0.1682 20.5652 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 75 { 0.4195 15.8848 50.4376 -Andale_Mono.ttf 39 6 25.4319 40.9971 76 } 0.1259 15.8848 50.4376 -Andale_Mono.ttf 39 6 25.4319 40.9971 77 , 33.7787 7.2279 13.2460 -Andale_Mono.ttf 39 6 25.4319 40.9971 78 I 0.3475 17.9971 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 79 ° -0.3470 15.7261 15.7261 -Andale_Mono.ttf 39 6 25.4319 40.9971 80 K 0.3246 28.2377 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 81 H 0.3281 23.0431 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 82 q 10.1580 24.9156 42.2069 -Andale_Mono.ttf 39 6 25.4319 40.9971 83 & 0.0155 32.6598 40.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 84 ’ -0.0784 7.2279 13.2460 -Andale_Mono.ttf 39 6 25.4319 40.9971 85 [ 0.2569 11.2250 47.8696 -Andale_Mono.ttf 39 6 25.4319 40.9971 86 - 22.5545 16.9359 4.1457 -Andale_Mono.ttf 39 6 25.4319 40.9971 87 Y 0.3897 29.8264 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 88 Q -0.0634 28.6167 47.7692 -Andale_Mono.ttf 39 6 25.4319 40.9971 89 " 0.3818 14.9239 15.2098 -Andale_Mono.ttf 39 6 25.4319 40.9971 90 ! 0.4749 7.2279 40.7902 -Andale_Mono.ttf 39 6 25.4319 40.9971 91 x 10.3446 26.2739 30.4195 -Andale_Mono.ttf 39 6 25.4319 40.9971 92 ) -0.0021 15.2098 49.6141 -Andale_Mono.ttf 39 6 25.4319 40.9971 93 = 12.5594 27.1098 15.2098 -Andale_Mono.ttf 39 6 25.4319 40.9971 94 + 6.9037 26.9971 26.9971 -Andale_Mono.ttf 39 6 25.4319 40.9971 95 X 0.3251 31.0946 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 96 » 10.2250 25.2250 29.2098 -Andale_Mono.ttf 39 6 25.4319 40.9971 97 ' -0.1004 4.4529 15.2098 -Andale_Mono.ttf 39 6 25.4319 40.9971 98 ¢ 4.8210 23.6474 41.2224 -Andale_Mono.ttf 39 6 25.4319 40.9971 99 Z 0.2552 24.3684 40.5833 -Andale_Mono.ttf 39 6 25.4319 40.9971 100 > 5.5598 21.2279 29.2098 -Andale_Mono.ttf 39 6 25.4319 40.9971 101 ® 0.0621 35.0793 34.5652 -Andale_Mono.ttf 39 6 25.4319 40.9971 102 © -0.0249 35.0793 34.5652 -Andale_Mono.ttf 39 6 25.4319 40.9971 103 ] 0.3069 11.2250 47.8696 -Andale_Mono.ttf 39 6 25.4319 40.9971 104 é -0.9312 25.2250 42.0460 -Andale_Mono.ttf 39 6 25.4319 40.9971 105 z 10.5165 23.1917 30.4195 -Andale_Mono.ttf 39 6 25.4319 40.9971 106 _ 49.3816 35.0793 3.8362 -Andale_Mono.ttf 39 6 25.4319 40.9971 107 ¥ 0.5121 29.8264 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 1 t -8.1724 22.6445 38.7569 -Andale_Mono.ttf 40 w 29.5170 30.4195 2 h -9.5941 23.0431 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 3 a -0.3241 24.2529 30.8333 -Andale_Mono.ttf 40 w 29.5170 30.4195 4 n -0.1698 23.0431 30.6264 -Andale_Mono.ttf 40 w 29.5170 30.4195 5 P -10.1456 22.8055 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 6 o -0.1931 26.7880 30.8333 -Andale_Mono.ttf 40 w 29.5170 30.4195 7 e -0.3818 25.2250 30.8333 -Andale_Mono.ttf 40 w 29.5170 30.4195 8 : -0.3308 7.2279 30.8333 -Andale_Mono.ttf 40 w 29.5170 30.4195 9 r -0.2587 20.4043 30.6264 -Andale_Mono.ttf 40 w 29.5170 30.4195 10 l -10.3035 20.4167 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 11 i -10.5088 13.3043 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 12 1 -10.4018 21.0793 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 13 | -10.2805 4.1457 51.1917 -Andale_Mono.ttf 40 w 29.5170 30.4195 14 N -10.2121 24.3684 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 15 f -9.9809 22.7449 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 16 g -0.3251 26.2862 42.2069 -Andale_Mono.ttf 40 w 29.5170 30.4195 17 d -10.2592 24.9156 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 18 W -10.2726 32.6598 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 19 s -0.1224 22.4960 30.8333 -Andale_Mono.ttf 40 w 29.5170 30.4195 20 c -0.0399 24.2529 30.8333 -Andale_Mono.ttf 40 w 29.5170 30.4195 21 u -0.4327 23.0431 30.6264 -Andale_Mono.ttf 40 w 29.5170 30.4195 22 3 -10.1153 22.4376 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 23 ~ 10.7885 31.2431 8.4376 -Andale_Mono.ttf 40 w 29.5170 30.4195 24 # -10.1310 29.7261 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 25 O -10.2812 27.4069 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 26 ` -11.2902 12.2739 8.6445 -Andale_Mono.ttf 40 w 29.5170 30.4195 27 @ -10.4467 29.8848 45.6293 -Andale_Mono.ttf 40 w 29.5170 30.4195 28 F -9.9298 21.8334 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 29 S -10.1200 22.6445 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 30 p -0.0172 24.9156 42.2069 -Andale_Mono.ttf 40 w 29.5170 30.4195 31 “ -10.0122 17.6989 13.2460 -Andale_Mono.ttf 40 w 29.5170 30.4195 32 % -10.4169 32.6598 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 33 £ -10.6012 26.7902 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 34 . 23.2712 7.2279 7.2279 -Andale_Mono.ttf 40 w 29.5170 30.4195 35 2 -10.8029 21.9695 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 36 5 -10.2666 22.1304 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 37 m -0.1268 27.6138 30.6264 -Andale_Mono.ttf 40 w 29.5170 30.4195 38 V -10.3213 32.2460 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 39 6 -10.3940 25.4319 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 40 w -0.1138 29.5170 30.4195 -Andale_Mono.ttf 40 w 29.5170 30.4195 41 T -10.1969 29.4710 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 42 M -10.3801 25.2250 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 43 G -10.2525 26.5833 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 44 b -10.3111 24.9156 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 45 9 -10.5281 25.2250 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 46 ; -0.2427 7.2279 36.8514 -Andale_Mono.ttf 40 w 29.5170 30.4195 47 D -10.4653 25.2250 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 48 L -10.4063 21.8334 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 49 y 0.3073 26.6417 42.0000 -Andale_Mono.ttf 40 w 29.5170 30.4195 50 ‘ -10.2270 7.2279 13.2460 -Andale_Mono.ttf 40 w 29.5170 30.4195 51 \ -10.4866 24.4014 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 52 R -10.2577 27.3351 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 53 < -4.6880 21.2279 29.2098 -Andale_Mono.ttf 40 w 29.5170 30.4195 54 4 -10.0514 27.4836 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 55 8 -10.4755 25.7598 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 56 0 -10.2960 26.7880 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 57 A -10.2077 32.2460 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 58 E -10.3324 21.0793 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 59 B -10.0931 25.0765 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 60 v -0.1669 26.4348 30.4195 -Andale_Mono.ttf 40 w 29.5170 30.4195 61 k -10.1749 26.1253 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 62 J -10.4657 19.6627 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 63 U -10.2353 23.0431 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 64 j -10.1761 15.7239 52.3707 -Andale_Mono.ttf 40 w 29.5170 30.4195 65 ( -10.4379 15.2098 49.6141 -Andale_Mono.ttf 40 w 29.5170 30.4195 66 7 -10.3406 23.7080 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 67 § -10.6011 23.8543 52.5776 -Andale_Mono.ttf 40 w 29.5170 30.4195 68 $ -13.0443 22.6445 47.0152 -Andale_Mono.ttf 40 w 29.5170 30.4195 69 € -10.1975 30.5474 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 70 / -10.2634 24.4014 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 71 C -10.3353 26.7112 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 72 * -10.0710 20.1184 22.4376 -Andale_Mono.ttf 40 w 29.5170 30.4195 73 ” -10.4364 17.6989 13.2460 -Andale_Mono.ttf 40 w 29.5170 30.4195 74 ? -10.3862 20.5652 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 75 { -10.1017 15.8848 50.4376 -Andale_Mono.ttf 40 w 29.5170 30.4195 76 } -10.2623 15.8848 50.4376 -Andale_Mono.ttf 40 w 29.5170 30.4195 77 , 23.4640 7.2279 13.2460 -Andale_Mono.ttf 40 w 29.5170 30.4195 78 I -9.8469 17.9971 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 79 ° -10.4651 15.7261 15.7261 -Andale_Mono.ttf 40 w 29.5170 30.4195 80 K -10.5503 28.2377 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 81 H -10.5172 23.0431 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 82 q -0.3034 24.9156 42.2069 -Andale_Mono.ttf 40 w 29.5170 30.4195 83 & -10.5559 32.6598 40.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 84 ’ -10.4906 7.2279 13.2460 -Andale_Mono.ttf 40 w 29.5170 30.4195 85 [ -10.0805 11.2250 47.8696 -Andale_Mono.ttf 40 w 29.5170 30.4195 86 - 12.4063 16.9359 4.1457 -Andale_Mono.ttf 40 w 29.5170 30.4195 87 Y -9.8274 29.8264 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 88 Q -10.5144 28.6167 47.7692 -Andale_Mono.ttf 40 w 29.5170 30.4195 89 " -9.9185 14.9239 15.2098 -Andale_Mono.ttf 40 w 29.5170 30.4195 90 ! -9.8622 7.2279 40.7902 -Andale_Mono.ttf 40 w 29.5170 30.4195 91 x -0.0925 26.2739 30.4195 -Andale_Mono.ttf 40 w 29.5170 30.4195 92 ) -10.4231 15.2098 49.6141 -Andale_Mono.ttf 40 w 29.5170 30.4195 93 = 2.3218 27.1098 15.2098 -Andale_Mono.ttf 40 w 29.5170 30.4195 94 + -3.5068 26.9971 26.9971 -Andale_Mono.ttf 40 w 29.5170 30.4195 95 X -9.7856 31.0946 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 96 » -0.1412 25.2250 29.2098 -Andale_Mono.ttf 40 w 29.5170 30.4195 97 ' -10.2887 4.4529 15.2098 -Andale_Mono.ttf 40 w 29.5170 30.4195 98 ¢ -5.3114 23.6474 41.2224 -Andale_Mono.ttf 40 w 29.5170 30.4195 99 Z -10.0277 24.3684 40.5833 -Andale_Mono.ttf 40 w 29.5170 30.4195 100 > -4.6040 21.2279 29.2098 -Andale_Mono.ttf 40 w 29.5170 30.4195 101 ® -10.3031 35.0793 34.5652 -Andale_Mono.ttf 40 w 29.5170 30.4195 102 © -10.7483 35.0793 34.5652 -Andale_Mono.ttf 40 w 29.5170 30.4195 103 ] -10.2017 11.2250 47.8696 -Andale_Mono.ttf 40 w 29.5170 30.4195 104 é -11.2831 25.2250 42.0460 -Andale_Mono.ttf 40 w 29.5170 30.4195 105 z -0.1055 23.1917 30.4195 -Andale_Mono.ttf 40 w 29.5170 30.4195 106 _ 39.2952 35.0793 3.8362 -Andale_Mono.ttf 40 w 29.5170 30.4195 107 ¥ -9.9557 29.8264 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 1 t 1.9398 22.6445 38.7569 -Andale_Mono.ttf 41 T 29.4710 40.5833 2 h 0.3117 23.0431 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 3 a 9.9501 24.2529 30.8333 -Andale_Mono.ttf 41 T 29.4710 40.5833 4 n 10.1456 23.0431 30.6264 -Andale_Mono.ttf 41 T 29.4710 40.5833 5 P 0.1318 22.8055 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 6 o 9.7950 26.7880 30.8333 -Andale_Mono.ttf 41 T 29.4710 40.5833 7 e 9.9473 25.2250 30.8333 -Andale_Mono.ttf 41 T 29.4710 40.5833 8 : 9.8621 7.2279 30.8333 -Andale_Mono.ttf 41 T 29.4710 40.5833 9 r 10.0379 20.4043 30.6264 -Andale_Mono.ttf 41 T 29.4710 40.5833 10 l 0.1650 20.4167 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 11 i -0.0958 13.3043 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 12 1 0.2174 21.0793 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 13 | -0.3485 4.1457 51.1917 -Andale_Mono.ttf 41 T 29.4710 40.5833 14 N -0.1230 24.3684 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 15 f 0.0540 22.7449 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 16 g 9.7337 26.2862 42.2069 -Andale_Mono.ttf 41 T 29.4710 40.5833 17 d 0.1776 24.9156 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 18 W -0.1383 32.6598 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 19 s 10.2482 22.4960 30.8333 -Andale_Mono.ttf 41 T 29.4710 40.5833 20 c 9.9569 24.2529 30.8333 -Andale_Mono.ttf 41 T 29.4710 40.5833 21 u 10.0937 23.0431 30.6264 -Andale_Mono.ttf 41 T 29.4710 40.5833 22 3 -0.2884 22.4376 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 23 ~ 21.1714 31.2431 8.4376 -Andale_Mono.ttf 41 T 29.4710 40.5833 24 # -0.0264 29.7261 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 25 O -0.2467 27.4069 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 26 ` -0.8850 12.2739 8.6445 -Andale_Mono.ttf 41 T 29.4710 40.5833 27 @ -0.1052 29.8848 45.6293 -Andale_Mono.ttf 41 T 29.4710 40.5833 28 F -0.2439 21.8334 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 29 S -0.0364 22.6445 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 30 p 9.8656 24.9156 42.2069 -Andale_Mono.ttf 41 T 29.4710 40.5833 31 “ -0.0337 17.6989 13.2460 -Andale_Mono.ttf 41 T 29.4710 40.5833 32 % 0.1528 32.6598 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 33 £ 0.0539 26.7902 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 34 . 33.8008 7.2279 7.2279 -Andale_Mono.ttf 41 T 29.4710 40.5833 35 2 -0.3335 21.9695 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 36 5 -0.1732 22.1304 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 37 m 9.9368 27.6138 30.6264 -Andale_Mono.ttf 41 T 29.4710 40.5833 38 V 0.0088 32.2460 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 39 6 -0.1854 25.4319 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 40 w 9.9450 29.5170 30.4195 -Andale_Mono.ttf 41 T 29.4710 40.5833 41 T -0.0916 29.4710 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 42 M 0.2741 25.2250 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 43 G -0.0682 26.5833 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 44 b -0.0017 24.9156 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 45 9 0.0142 25.2250 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 46 ; 9.9935 7.2279 36.8514 -Andale_Mono.ttf 41 T 29.4710 40.5833 47 D -0.0207 25.2250 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 48 L 0.0573 21.8334 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 49 y 10.0163 26.6417 42.0000 -Andale_Mono.ttf 41 T 29.4710 40.5833 50 ‘ -0.1474 7.2279 13.2460 -Andale_Mono.ttf 41 T 29.4710 40.5833 51 \ -0.0055 24.4014 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 52 R -0.1330 27.3351 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 53 < 5.4901 21.2279 29.2098 -Andale_Mono.ttf 41 T 29.4710 40.5833 54 4 0.0998 27.4836 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 55 8 -0.3167 25.7598 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 56 0 -0.4216 26.7880 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 57 A 0.1180 32.2460 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 58 E 0.0062 21.0793 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 59 B 0.0312 25.0765 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 60 v 10.1182 26.4348 30.4195 -Andale_Mono.ttf 41 T 29.4710 40.5833 61 k -0.0084 26.1253 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 62 J -0.0073 19.6627 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 63 U -0.1709 23.0431 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 64 j -0.2816 15.7239 52.3707 -Andale_Mono.ttf 41 T 29.4710 40.5833 65 ( -0.5329 15.2098 49.6141 -Andale_Mono.ttf 41 T 29.4710 40.5833 66 7 0.0828 23.7080 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 67 § -0.2615 23.8543 52.5776 -Andale_Mono.ttf 41 T 29.4710 40.5833 68 $ -2.8091 22.6445 47.0152 -Andale_Mono.ttf 41 T 29.4710 40.5833 69 € -0.4636 30.5474 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 70 / -0.2444 24.4014 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 71 C -0.2324 26.7112 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 72 * 0.0182 20.1184 22.4376 -Andale_Mono.ttf 41 T 29.4710 40.5833 73 ” -0.2709 17.6989 13.2460 -Andale_Mono.ttf 41 T 29.4710 40.5833 74 ? -0.2117 20.5652 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 75 { 0.0801 15.8848 50.4376 -Andale_Mono.ttf 41 T 29.4710 40.5833 76 } 0.0971 15.8848 50.4376 -Andale_Mono.ttf 41 T 29.4710 40.5833 77 , 33.2361 7.2279 13.2460 -Andale_Mono.ttf 41 T 29.4710 40.5833 78 I 0.2854 17.9971 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 79 ° -0.3039 15.7261 15.7261 -Andale_Mono.ttf 41 T 29.4710 40.5833 80 K 0.2734 28.2377 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 81 H -0.1444 23.0431 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 82 q 10.0862 24.9156 42.2069 -Andale_Mono.ttf 41 T 29.4710 40.5833 83 & 0.0383 32.6598 40.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 84 ’ -0.2663 7.2279 13.2460 -Andale_Mono.ttf 41 T 29.4710 40.5833 85 [ -0.1519 11.2250 47.8696 -Andale_Mono.ttf 41 T 29.4710 40.5833 86 - 22.5011 16.9359 4.1457 -Andale_Mono.ttf 41 T 29.4710 40.5833 87 Y -0.0908 29.8264 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 88 Q -0.2529 28.6167 47.7692 -Andale_Mono.ttf 41 T 29.4710 40.5833 89 " -0.3042 14.9239 15.2098 -Andale_Mono.ttf 41 T 29.4710 40.5833 90 ! -0.3772 7.2279 40.7902 -Andale_Mono.ttf 41 T 29.4710 40.5833 91 x 10.1262 26.2739 30.4195 -Andale_Mono.ttf 41 T 29.4710 40.5833 92 ) -0.4102 15.2098 49.6141 -Andale_Mono.ttf 41 T 29.4710 40.5833 93 = 12.8746 27.1098 15.2098 -Andale_Mono.ttf 41 T 29.4710 40.5833 94 + 6.5961 26.9971 26.9971 -Andale_Mono.ttf 41 T 29.4710 40.5833 95 X -0.1138 31.0946 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 96 » 9.8266 25.2250 29.2098 -Andale_Mono.ttf 41 T 29.4710 40.5833 97 ' -0.2085 4.4529 15.2098 -Andale_Mono.ttf 41 T 29.4710 40.5833 98 ¢ 4.9811 23.6474 41.2224 -Andale_Mono.ttf 41 T 29.4710 40.5833 99 Z 0.4309 24.3684 40.5833 -Andale_Mono.ttf 41 T 29.4710 40.5833 100 > 5.5332 21.2279 29.2098 -Andale_Mono.ttf 41 T 29.4710 40.5833 101 ® -0.3393 35.0793 34.5652 -Andale_Mono.ttf 41 T 29.4710 40.5833 102 © -0.3670 35.0793 34.5652 -Andale_Mono.ttf 41 T 29.4710 40.5833 103 ] -0.4079 11.2250 47.8696 -Andale_Mono.ttf 41 T 29.4710 40.5833 104 é -1.4289 25.2250 42.0460 -Andale_Mono.ttf 41 T 29.4710 40.5833 105 z 10.0681 23.1917 30.4195 -Andale_Mono.ttf 41 T 29.4710 40.5833 106 _ 49.6804 35.0793 3.8362 -Andale_Mono.ttf 41 T 29.4710 40.5833 107 ¥ -0.1164 29.8264 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 1 t 1.7144 22.6445 38.7569 -Andale_Mono.ttf 42 M 25.2250 40.5833 2 h -0.1525 23.0431 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 3 a 9.9176 24.2529 30.8333 -Andale_Mono.ttf 42 M 25.2250 40.5833 4 n 9.6724 23.0431 30.6264 -Andale_Mono.ttf 42 M 25.2250 40.5833 5 P -0.0107 22.8055 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 6 o 9.6374 26.7880 30.8333 -Andale_Mono.ttf 42 M 25.2250 40.5833 7 e 9.8388 25.2250 30.8333 -Andale_Mono.ttf 42 M 25.2250 40.5833 8 : 9.8621 7.2279 30.8333 -Andale_Mono.ttf 42 M 25.2250 40.5833 9 r 9.7799 20.4043 30.6264 -Andale_Mono.ttf 42 M 25.2250 40.5833 10 l -0.1851 20.4167 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 11 i -0.4186 13.3043 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 12 1 -0.5609 21.0793 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 13 | -0.3571 4.1457 51.1917 -Andale_Mono.ttf 42 M 25.2250 40.5833 14 N 0.0496 24.3684 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 15 f 0.1363 22.7449 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 16 g 9.7963 26.2862 42.2069 -Andale_Mono.ttf 42 M 25.2250 40.5833 17 d 0.0402 24.9156 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 18 W 0.3169 32.6598 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 19 s 10.1533 22.4960 30.8333 -Andale_Mono.ttf 42 M 25.2250 40.5833 20 c 9.8908 24.2529 30.8333 -Andale_Mono.ttf 42 M 25.2250 40.5833 21 u 10.1000 23.0431 30.6264 -Andale_Mono.ttf 42 M 25.2250 40.5833 22 3 -0.2621 22.4376 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 23 ~ 21.3074 31.2431 8.4376 -Andale_Mono.ttf 42 M 25.2250 40.5833 24 # -0.0553 29.7261 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 25 O -0.2247 27.4069 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 26 ` -1.0517 12.2739 8.6445 -Andale_Mono.ttf 42 M 25.2250 40.5833 27 @ 0.1650 29.8848 45.6293 -Andale_Mono.ttf 42 M 25.2250 40.5833 28 F 0.3195 21.8334 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 29 S -0.1614 22.6445 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 30 p 9.9427 24.9156 42.2069 -Andale_Mono.ttf 42 M 25.2250 40.5833 31 “ -0.0648 17.6989 13.2460 -Andale_Mono.ttf 42 M 25.2250 40.5833 32 % -0.1683 32.6598 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 33 £ -0.5423 26.7902 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 34 . 33.7386 7.2279 7.2279 -Andale_Mono.ttf 42 M 25.2250 40.5833 35 2 -0.2314 21.9695 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 36 5 0.2103 22.1304 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 37 m 9.8808 27.6138 30.6264 -Andale_Mono.ttf 42 M 25.2250 40.5833 38 V -0.0703 32.2460 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 39 6 -0.1001 25.4319 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 40 w 10.2899 29.5170 30.4195 -Andale_Mono.ttf 42 M 25.2250 40.5833 41 T -0.0148 29.4710 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 42 M -0.2147 25.2250 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 43 G -0.2270 26.5833 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 44 b 0.0764 24.9156 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 45 9 -0.1737 25.2250 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 46 ; 10.2771 7.2279 36.8514 -Andale_Mono.ttf 42 M 25.2250 40.5833 47 D -0.1705 25.2250 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 48 L -0.0690 21.8334 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 49 y 10.0663 26.6417 42.0000 -Andale_Mono.ttf 42 M 25.2250 40.5833 50 ‘ -0.1560 7.2279 13.2460 -Andale_Mono.ttf 42 M 25.2250 40.5833 51 \ -0.3335 24.4014 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 52 R -0.1136 27.3351 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 53 < 5.5247 21.2279 29.2098 -Andale_Mono.ttf 42 M 25.2250 40.5833 54 4 -0.0111 27.4836 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 55 8 -0.1241 25.7598 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 56 0 -0.6692 26.7880 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 57 A -0.0044 32.2460 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 58 E 0.1024 21.0793 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 59 B -0.1619 25.0765 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 60 v 10.1825 26.4348 30.4195 -Andale_Mono.ttf 42 M 25.2250 40.5833 61 k 0.0007 26.1253 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 62 J 0.0747 19.6627 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 63 U -0.2077 23.0431 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 64 j -0.3578 15.7239 52.3707 -Andale_Mono.ttf 42 M 25.2250 40.5833 65 ( -0.2069 15.2098 49.6141 -Andale_Mono.ttf 42 M 25.2250 40.5833 66 7 -0.1236 23.7080 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 67 § -0.2414 23.8543 52.5776 -Andale_Mono.ttf 42 M 25.2250 40.5833 68 $ -2.9327 22.6445 47.0152 -Andale_Mono.ttf 42 M 25.2250 40.5833 69 € -0.2149 30.5474 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 70 / -0.2879 24.4014 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 71 C -0.2632 26.7112 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 72 * -0.2331 20.1184 22.4376 -Andale_Mono.ttf 42 M 25.2250 40.5833 73 ” -0.1677 17.6989 13.2460 -Andale_Mono.ttf 42 M 25.2250 40.5833 74 ? -0.0056 20.5652 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 75 { 0.1661 15.8848 50.4376 -Andale_Mono.ttf 42 M 25.2250 40.5833 76 } -0.2662 15.8848 50.4376 -Andale_Mono.ttf 42 M 25.2250 40.5833 77 , 33.5836 7.2279 13.2460 -Andale_Mono.ttf 42 M 25.2250 40.5833 78 I 0.0709 17.9971 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 79 ° -0.1395 15.7261 15.7261 -Andale_Mono.ttf 42 M 25.2250 40.5833 80 K -0.0163 28.2377 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 81 H -0.3247 23.0431 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 82 q 10.1318 24.9156 42.2069 -Andale_Mono.ttf 42 M 25.2250 40.5833 83 & -0.1576 32.6598 40.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 84 ’ -0.4427 7.2279 13.2460 -Andale_Mono.ttf 42 M 25.2250 40.5833 85 [ 0.0111 11.2250 47.8696 -Andale_Mono.ttf 42 M 25.2250 40.5833 86 - 22.4774 16.9359 4.1457 -Andale_Mono.ttf 42 M 25.2250 40.5833 87 Y -0.1893 29.8264 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 88 Q -0.3473 28.6167 47.7692 -Andale_Mono.ttf 42 M 25.2250 40.5833 89 " -0.0175 14.9239 15.2098 -Andale_Mono.ttf 42 M 25.2250 40.5833 90 ! 0.3620 7.2279 40.7902 -Andale_Mono.ttf 42 M 25.2250 40.5833 91 x 10.2697 26.2739 30.4195 -Andale_Mono.ttf 42 M 25.2250 40.5833 92 ) -0.2458 15.2098 49.6141 -Andale_Mono.ttf 42 M 25.2250 40.5833 93 = 12.5776 27.1098 15.2098 -Andale_Mono.ttf 42 M 25.2250 40.5833 94 + 6.6753 26.9971 26.9971 -Andale_Mono.ttf 42 M 25.2250 40.5833 95 X -0.1048 31.0946 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 96 » 10.1086 25.2250 29.2098 -Andale_Mono.ttf 42 M 25.2250 40.5833 97 ' 0.1625 4.4529 15.2098 -Andale_Mono.ttf 42 M 25.2250 40.5833 98 ¢ 4.6066 23.6474 41.2224 -Andale_Mono.ttf 42 M 25.2250 40.5833 99 Z 0.3037 24.3684 40.5833 -Andale_Mono.ttf 42 M 25.2250 40.5833 100 > 5.4557 21.2279 29.2098 -Andale_Mono.ttf 42 M 25.2250 40.5833 101 ® -0.1747 35.0793 34.5652 -Andale_Mono.ttf 42 M 25.2250 40.5833 102 © -0.2661 35.0793 34.5652 -Andale_Mono.ttf 42 M 25.2250 40.5833 103 ] -0.0580 11.2250 47.8696 -Andale_Mono.ttf 42 M 25.2250 40.5833 104 é -1.3547 25.2250 42.0460 -Andale_Mono.ttf 42 M 25.2250 40.5833 105 z 10.0716 23.1917 30.4195 -Andale_Mono.ttf 42 M 25.2250 40.5833 106 _ 49.7123 35.0793 3.8362 -Andale_Mono.ttf 42 M 25.2250 40.5833 107 ¥ -0.2724 29.8264 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 1 t 2.3580 22.6445 38.7569 -Andale_Mono.ttf 43 G 26.5833 40.9971 2 h -0.0118 23.0431 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 3 a 10.2310 24.2529 30.8333 -Andale_Mono.ttf 43 G 26.5833 40.9971 4 n 10.1485 23.0431 30.6264 -Andale_Mono.ttf 43 G 26.5833 40.9971 5 P 0.0615 22.8055 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 6 o 10.5098 26.7880 30.8333 -Andale_Mono.ttf 43 G 26.5833 40.9971 7 e 9.9007 25.2250 30.8333 -Andale_Mono.ttf 43 G 26.5833 40.9971 8 : 10.1060 7.2279 30.8333 -Andale_Mono.ttf 43 G 26.5833 40.9971 9 r 9.7431 20.4043 30.6264 -Andale_Mono.ttf 43 G 26.5833 40.9971 10 l 0.2163 20.4167 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 11 i -0.1297 13.3043 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 12 1 -0.3697 21.0793 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 13 | 0.1592 4.1457 51.1917 -Andale_Mono.ttf 43 G 26.5833 40.9971 14 N 0.2947 24.3684 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 15 f 0.1975 22.7449 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 16 g 9.8824 26.2862 42.2069 -Andale_Mono.ttf 43 G 26.5833 40.9971 17 d 0.1550 24.9156 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 18 W 0.3058 32.6598 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 19 s 10.2887 22.4960 30.8333 -Andale_Mono.ttf 43 G 26.5833 40.9971 20 c 10.1643 24.2529 30.8333 -Andale_Mono.ttf 43 G 26.5833 40.9971 21 u 10.4692 23.0431 30.6264 -Andale_Mono.ttf 43 G 26.5833 40.9971 22 3 -0.1737 22.4376 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 23 ~ 21.1597 31.2431 8.4376 -Andale_Mono.ttf 43 G 26.5833 40.9971 24 # -0.1782 29.7261 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 25 O -0.0187 27.4069 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 26 ` -1.1192 12.2739 8.6445 -Andale_Mono.ttf 43 G 26.5833 40.9971 27 @ 0.2103 29.8848 45.6293 -Andale_Mono.ttf 43 G 26.5833 40.9971 28 F 0.2489 21.8334 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 29 S -0.0747 22.6445 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 30 p 10.5283 24.9156 42.2069 -Andale_Mono.ttf 43 G 26.5833 40.9971 31 “ 0.0948 17.6989 13.2460 -Andale_Mono.ttf 43 G 26.5833 40.9971 32 % -0.0385 32.6598 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 33 £ 0.0088 26.7902 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 34 . 33.7893 7.2279 7.2279 -Andale_Mono.ttf 43 G 26.5833 40.9971 35 2 -0.0819 21.9695 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 36 5 0.4649 22.1304 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 37 m 10.5293 27.6138 30.6264 -Andale_Mono.ttf 43 G 26.5833 40.9971 38 V 0.0866 32.2460 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 39 6 0.0157 25.4319 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 40 w 10.2964 29.5170 30.4195 -Andale_Mono.ttf 43 G 26.5833 40.9971 41 T 0.1846 29.4710 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 42 M 0.0950 25.2250 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 43 G 0.4010 26.5833 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 44 b 0.2198 24.9156 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 45 9 -0.1713 25.2250 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 46 ; 9.9722 7.2279 36.8514 -Andale_Mono.ttf 43 G 26.5833 40.9971 47 D 0.2069 25.2250 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 48 L 0.2025 21.8334 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 49 y 10.2627 26.6417 42.0000 -Andale_Mono.ttf 43 G 26.5833 40.9971 50 ‘ 0.0412 7.2279 13.2460 -Andale_Mono.ttf 43 G 26.5833 40.9971 51 \ 0.2241 24.4014 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 52 R -0.0326 27.3351 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 53 < 5.6967 21.2279 29.2098 -Andale_Mono.ttf 43 G 26.5833 40.9971 54 4 -0.0651 27.4836 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 55 8 0.0837 25.7598 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 56 0 -0.0603 26.7880 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 57 A 0.0776 32.2460 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 58 E 0.0114 21.0793 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 59 B 0.4025 25.0765 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 60 v 10.4499 26.4348 30.4195 -Andale_Mono.ttf 43 G 26.5833 40.9971 61 k 0.0055 26.1253 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 62 J 0.1783 19.6627 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 63 U 0.2596 23.0431 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 64 j 0.4535 15.7239 52.3707 -Andale_Mono.ttf 43 G 26.5833 40.9971 65 ( -0.1230 15.2098 49.6141 -Andale_Mono.ttf 43 G 26.5833 40.9971 66 7 0.2017 23.7080 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 67 § 0.0922 23.8543 52.5776 -Andale_Mono.ttf 43 G 26.5833 40.9971 68 $ -2.3807 22.6445 47.0152 -Andale_Mono.ttf 43 G 26.5833 40.9971 69 € -0.0000 30.5474 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 70 / -0.2596 24.4014 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 71 C 0.0820 26.7112 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 72 * 0.2261 20.1184 22.4376 -Andale_Mono.ttf 43 G 26.5833 40.9971 73 ” -0.0465 17.6989 13.2460 -Andale_Mono.ttf 43 G 26.5833 40.9971 74 ? 0.2081 20.5652 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 75 { 0.4379 15.8848 50.4376 -Andale_Mono.ttf 43 G 26.5833 40.9971 76 } 0.1958 15.8848 50.4376 -Andale_Mono.ttf 43 G 26.5833 40.9971 77 , 33.7582 7.2279 13.2460 -Andale_Mono.ttf 43 G 26.5833 40.9971 78 I 0.2059 17.9971 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 79 ° -0.1437 15.7261 15.7261 -Andale_Mono.ttf 43 G 26.5833 40.9971 80 K 0.3207 28.2377 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 81 H 0.2333 23.0431 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 82 q 9.8866 24.9156 42.2069 -Andale_Mono.ttf 43 G 26.5833 40.9971 83 & -0.0519 32.6598 40.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 84 ’ -0.1203 7.2279 13.2460 -Andale_Mono.ttf 43 G 26.5833 40.9971 85 [ 0.0380 11.2250 47.8696 -Andale_Mono.ttf 43 G 26.5833 40.9971 86 - 22.9060 16.9359 4.1457 -Andale_Mono.ttf 43 G 26.5833 40.9971 87 Y 0.1818 29.8264 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 88 Q -0.0287 28.6167 47.7692 -Andale_Mono.ttf 43 G 26.5833 40.9971 89 " 0.1276 14.9239 15.2098 -Andale_Mono.ttf 43 G 26.5833 40.9971 90 ! -0.1287 7.2279 40.7902 -Andale_Mono.ttf 43 G 26.5833 40.9971 91 x 9.8711 26.2739 30.4195 -Andale_Mono.ttf 43 G 26.5833 40.9971 92 ) -0.1638 15.2098 49.6141 -Andale_Mono.ttf 43 G 26.5833 40.9971 93 = 12.6481 27.1098 15.2098 -Andale_Mono.ttf 43 G 26.5833 40.9971 94 + 6.7032 26.9971 26.9971 -Andale_Mono.ttf 43 G 26.5833 40.9971 95 X 0.0594 31.0946 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 96 » 10.0389 25.2250 29.2098 -Andale_Mono.ttf 43 G 26.5833 40.9971 97 ' -0.0427 4.4529 15.2098 -Andale_Mono.ttf 43 G 26.5833 40.9971 98 ¢ 5.2064 23.6474 41.2224 -Andale_Mono.ttf 43 G 26.5833 40.9971 99 Z 0.6073 24.3684 40.5833 -Andale_Mono.ttf 43 G 26.5833 40.9971 100 > 5.4695 21.2279 29.2098 -Andale_Mono.ttf 43 G 26.5833 40.9971 101 ® 0.1159 35.0793 34.5652 -Andale_Mono.ttf 43 G 26.5833 40.9971 102 © -0.0751 35.0793 34.5652 -Andale_Mono.ttf 43 G 26.5833 40.9971 103 ] 0.2518 11.2250 47.8696 -Andale_Mono.ttf 43 G 26.5833 40.9971 104 é -1.0732 25.2250 42.0460 -Andale_Mono.ttf 43 G 26.5833 40.9971 105 z 10.4490 23.1917 30.4195 -Andale_Mono.ttf 43 G 26.5833 40.9971 106 _ 49.5358 35.0793 3.8362 -Andale_Mono.ttf 43 G 26.5833 40.9971 107 ¥ 0.4102 29.8264 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 1 t 2.0489 22.6445 38.7569 -Andale_Mono.ttf 44 b 24.9156 40.7902 2 h -0.0080 23.0431 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 3 a 9.8726 24.2529 30.8333 -Andale_Mono.ttf 44 b 24.9156 40.7902 4 n 10.0427 23.0431 30.6264 -Andale_Mono.ttf 44 b 24.9156 40.7902 5 P -0.1956 22.8055 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 6 o 10.0426 26.7880 30.8333 -Andale_Mono.ttf 44 b 24.9156 40.7902 7 e 9.9011 25.2250 30.8333 -Andale_Mono.ttf 44 b 24.9156 40.7902 8 : 10.1720 7.2279 30.8333 -Andale_Mono.ttf 44 b 24.9156 40.7902 9 r 10.0785 20.4043 30.6264 -Andale_Mono.ttf 44 b 24.9156 40.7902 10 l 0.0086 20.4167 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 11 i -0.3621 13.3043 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 12 1 -0.1698 21.0793 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 13 | 0.0233 4.1457 51.1917 -Andale_Mono.ttf 44 b 24.9156 40.7902 14 N -0.1293 24.3684 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 15 f -0.0277 22.7449 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 16 g 9.7805 26.2862 42.2069 -Andale_Mono.ttf 44 b 24.9156 40.7902 17 d 0.0716 24.9156 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 18 W -0.1061 32.6598 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 19 s 9.7167 22.4960 30.8333 -Andale_Mono.ttf 44 b 24.9156 40.7902 20 c 10.1297 24.2529 30.8333 -Andale_Mono.ttf 44 b 24.9156 40.7902 21 u 10.1159 23.0431 30.6264 -Andale_Mono.ttf 44 b 24.9156 40.7902 22 3 0.0809 22.4376 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 23 ~ 21.3201 31.2431 8.4376 -Andale_Mono.ttf 44 b 24.9156 40.7902 24 # -0.2178 29.7261 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 25 O -0.2508 27.4069 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 26 ` -1.0523 12.2739 8.6445 -Andale_Mono.ttf 44 b 24.9156 40.7902 27 @ -0.1088 29.8848 45.6293 -Andale_Mono.ttf 44 b 24.9156 40.7902 28 F 0.2068 21.8334 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 29 S -0.2408 22.6445 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 30 p 10.2569 24.9156 42.2069 -Andale_Mono.ttf 44 b 24.9156 40.7902 31 “ -0.0243 17.6989 13.2460 -Andale_Mono.ttf 44 b 24.9156 40.7902 32 % -0.3868 32.6598 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 33 £ -0.2879 26.7902 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 34 . 33.3027 7.2279 7.2279 -Andale_Mono.ttf 44 b 24.9156 40.7902 35 2 -0.2025 21.9695 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 36 5 0.0277 22.1304 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 37 m 9.7090 27.6138 30.6264 -Andale_Mono.ttf 44 b 24.9156 40.7902 38 V 0.1203 32.2460 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 39 6 -0.0333 25.4319 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 40 w 10.0111 29.5170 30.4195 -Andale_Mono.ttf 44 b 24.9156 40.7902 41 T 0.0709 29.4710 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 42 M -0.0842 25.2250 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 43 G -0.1975 26.5833 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 44 b -0.3420 24.9156 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 45 9 -0.0449 25.2250 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 46 ; 9.9830 7.2279 36.8514 -Andale_Mono.ttf 44 b 24.9156 40.7902 47 D 0.0810 25.2250 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 48 L 0.2653 21.8334 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 49 y 10.3714 26.6417 42.0000 -Andale_Mono.ttf 44 b 24.9156 40.7902 50 ‘ -0.1147 7.2279 13.2460 -Andale_Mono.ttf 44 b 24.9156 40.7902 51 \ -0.4140 24.4014 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 52 R 0.2134 27.3351 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 53 < 5.5203 21.2279 29.2098 -Andale_Mono.ttf 44 b 24.9156 40.7902 54 4 0.0233 27.4836 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 55 8 -0.1885 25.7598 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 56 0 -0.3751 26.7880 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 57 A -0.0784 32.2460 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 58 E -0.2778 21.0793 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 59 B -0.1531 25.0765 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 60 v 10.1136 26.4348 30.4195 -Andale_Mono.ttf 44 b 24.9156 40.7902 61 k -0.2908 26.1253 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 62 J 0.0386 19.6627 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 63 U -0.2559 23.0431 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 64 j -0.1429 15.7239 52.3707 -Andale_Mono.ttf 44 b 24.9156 40.7902 65 ( -0.4937 15.2098 49.6141 -Andale_Mono.ttf 44 b 24.9156 40.7902 66 7 -0.2259 23.7080 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 67 § -0.3707 23.8543 52.5776 -Andale_Mono.ttf 44 b 24.9156 40.7902 68 $ -2.9511 22.6445 47.0152 -Andale_Mono.ttf 44 b 24.9156 40.7902 69 € -0.1538 30.5474 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 70 / -0.2682 24.4014 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 71 C -0.2674 26.7112 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 72 * -0.2404 20.1184 22.4376 -Andale_Mono.ttf 44 b 24.9156 40.7902 73 ” -0.3271 17.6989 13.2460 -Andale_Mono.ttf 44 b 24.9156 40.7902 74 ? -0.2011 20.5652 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 75 { -0.0389 15.8848 50.4376 -Andale_Mono.ttf 44 b 24.9156 40.7902 76 } 0.1361 15.8848 50.4376 -Andale_Mono.ttf 44 b 24.9156 40.7902 77 , 33.8465 7.2279 13.2460 -Andale_Mono.ttf 44 b 24.9156 40.7902 78 I -0.0922 17.9971 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 79 ° -0.0914 15.7261 15.7261 -Andale_Mono.ttf 44 b 24.9156 40.7902 80 K 0.0217 28.2377 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 81 H 0.0690 23.0431 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 82 q 9.8276 24.9156 42.2069 -Andale_Mono.ttf 44 b 24.9156 40.7902 83 & -0.2515 32.6598 40.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 84 ’ -0.4638 7.2279 13.2460 -Andale_Mono.ttf 44 b 24.9156 40.7902 85 [ 0.2653 11.2250 47.8696 -Andale_Mono.ttf 44 b 24.9156 40.7902 86 - 22.5356 16.9359 4.1457 -Andale_Mono.ttf 44 b 24.9156 40.7902 87 Y 0.0939 29.8264 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 88 Q -0.0963 28.6167 47.7692 -Andale_Mono.ttf 44 b 24.9156 40.7902 89 " 0.0833 14.9239 15.2098 -Andale_Mono.ttf 44 b 24.9156 40.7902 90 ! 0.0703 7.2279 40.7902 -Andale_Mono.ttf 44 b 24.9156 40.7902 91 x 10.1915 26.2739 30.4195 -Andale_Mono.ttf 44 b 24.9156 40.7902 92 ) -0.0954 15.2098 49.6141 -Andale_Mono.ttf 44 b 24.9156 40.7902 93 = 12.5270 27.1098 15.2098 -Andale_Mono.ttf 44 b 24.9156 40.7902 94 + 6.5101 26.9971 26.9971 -Andale_Mono.ttf 44 b 24.9156 40.7902 95 X -0.1784 31.0946 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 96 » 10.0490 25.2250 29.2098 -Andale_Mono.ttf 44 b 24.9156 40.7902 97 ' 0.1370 4.4529 15.2098 -Andale_Mono.ttf 44 b 24.9156 40.7902 98 ¢ 4.8434 23.6474 41.2224 -Andale_Mono.ttf 44 b 24.9156 40.7902 99 Z -0.0429 24.3684 40.5833 -Andale_Mono.ttf 44 b 24.9156 40.7902 100 > 5.6816 21.2279 29.2098 -Andale_Mono.ttf 44 b 24.9156 40.7902 101 ® -0.0904 35.0793 34.5652 -Andale_Mono.ttf 44 b 24.9156 40.7902 102 © -0.4941 35.0793 34.5652 -Andale_Mono.ttf 44 b 24.9156 40.7902 103 ] -0.4138 11.2250 47.8696 -Andale_Mono.ttf 44 b 24.9156 40.7902 104 é -1.3591 25.2250 42.0460 -Andale_Mono.ttf 44 b 24.9156 40.7902 105 z 10.2190 23.1917 30.4195 -Andale_Mono.ttf 44 b 24.9156 40.7902 106 _ 49.4049 35.0793 3.8362 -Andale_Mono.ttf 44 b 24.9156 40.7902 107 ¥ 0.0161 29.8264 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 1 t 2.3092 22.6445 38.7569 -Andale_Mono.ttf 45 9 25.2250 40.9971 2 h 0.2621 23.0431 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 3 a 10.3672 24.2529 30.8333 -Andale_Mono.ttf 45 9 25.2250 40.9971 4 n 10.4366 23.0431 30.6264 -Andale_Mono.ttf 45 9 25.2250 40.9971 5 P 0.0261 22.8055 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 6 o 10.3320 26.7880 30.8333 -Andale_Mono.ttf 45 9 25.2250 40.9971 7 e 10.1638 25.2250 30.8333 -Andale_Mono.ttf 45 9 25.2250 40.9971 8 : 10.4293 7.2279 30.8333 -Andale_Mono.ttf 45 9 25.2250 40.9971 9 r 10.1776 20.4043 30.6264 -Andale_Mono.ttf 45 9 25.2250 40.9971 10 l 0.0940 20.4167 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 11 i -0.0224 13.3043 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 12 1 -0.0320 21.0793 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 13 | 0.2001 4.1457 51.1917 -Andale_Mono.ttf 45 9 25.2250 40.9971 14 N 0.1259 24.3684 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 15 f 0.3379 22.7449 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 16 g 10.3192 26.2862 42.2069 -Andale_Mono.ttf 45 9 25.2250 40.9971 17 d 0.5898 24.9156 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 18 W 0.2646 32.6598 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 19 s 10.1952 22.4960 30.8333 -Andale_Mono.ttf 45 9 25.2250 40.9971 20 c 10.3258 24.2529 30.8333 -Andale_Mono.ttf 45 9 25.2250 40.9971 21 u 10.4252 23.0431 30.6264 -Andale_Mono.ttf 45 9 25.2250 40.9971 22 3 -0.0837 22.4376 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 23 ~ 21.4416 31.2431 8.4376 -Andale_Mono.ttf 45 9 25.2250 40.9971 24 # 0.3488 29.7261 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 25 O -0.0868 27.4069 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 26 ` -1.1093 12.2739 8.6445 -Andale_Mono.ttf 45 9 25.2250 40.9971 27 @ -0.1230 29.8848 45.6293 -Andale_Mono.ttf 45 9 25.2250 40.9971 28 F 0.4950 21.8334 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 29 S -0.0902 22.6445 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 30 p 10.3582 24.9156 42.2069 -Andale_Mono.ttf 45 9 25.2250 40.9971 31 “ -0.3042 17.6989 13.2460 -Andale_Mono.ttf 45 9 25.2250 40.9971 32 % -0.2975 32.6598 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 33 £ 0.0996 26.7902 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 34 . 33.7417 7.2279 7.2279 -Andale_Mono.ttf 45 9 25.2250 40.9971 35 2 0.2422 21.9695 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 36 5 0.1586 22.1304 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 37 m 10.0716 27.6138 30.6264 -Andale_Mono.ttf 45 9 25.2250 40.9971 38 V 0.3514 32.2460 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 39 6 0.0307 25.4319 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 40 w 10.7188 29.5170 30.4195 -Andale_Mono.ttf 45 9 25.2250 40.9971 41 T 0.4100 29.4710 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 42 M 0.2358 25.2250 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 43 G -0.3994 26.5833 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 44 b 0.2331 24.9156 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 45 9 0.1119 25.2250 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 46 ; 10.2050 7.2279 36.8514 -Andale_Mono.ttf 45 9 25.2250 40.9971 47 D 0.2230 25.2250 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 48 L -0.1000 21.8334 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 49 y 10.5251 26.6417 42.0000 -Andale_Mono.ttf 45 9 25.2250 40.9971 50 ‘ 0.0339 7.2279 13.2460 -Andale_Mono.ttf 45 9 25.2250 40.9971 51 \ 0.2348 24.4014 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 52 R -0.0353 27.3351 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 53 < 5.3114 21.2279 29.2098 -Andale_Mono.ttf 45 9 25.2250 40.9971 54 4 0.4132 27.4836 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 55 8 0.0577 25.7598 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 56 0 0.1364 26.7880 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 57 A 0.1720 32.2460 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 58 E 0.2923 21.0793 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 59 B 0.3251 25.0765 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 60 v 10.3130 26.4348 30.4195 -Andale_Mono.ttf 45 9 25.2250 40.9971 61 k 0.0953 26.1253 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 62 J 0.1222 19.6627 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 63 U 0.3018 23.0431 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 64 j 0.3941 15.7239 52.3707 -Andale_Mono.ttf 45 9 25.2250 40.9971 65 ( 0.4864 15.2098 49.6141 -Andale_Mono.ttf 45 9 25.2250 40.9971 66 7 0.2768 23.7080 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 67 § -0.0958 23.8543 52.5776 -Andale_Mono.ttf 45 9 25.2250 40.9971 68 $ -2.6197 22.6445 47.0152 -Andale_Mono.ttf 45 9 25.2250 40.9971 69 € -0.1312 30.5474 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 70 / -0.1305 24.4014 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 71 C -0.0895 26.7112 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 72 * 0.5527 20.1184 22.4376 -Andale_Mono.ttf 45 9 25.2250 40.9971 73 ” -0.4536 17.6989 13.2460 -Andale_Mono.ttf 45 9 25.2250 40.9971 74 ? 0.1713 20.5652 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 75 { 0.1843 15.8848 50.4376 -Andale_Mono.ttf 45 9 25.2250 40.9971 76 } 0.3536 15.8848 50.4376 -Andale_Mono.ttf 45 9 25.2250 40.9971 77 , 33.6855 7.2279 13.2460 -Andale_Mono.ttf 45 9 25.2250 40.9971 78 I -0.0602 17.9971 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 79 ° -0.0364 15.7261 15.7261 -Andale_Mono.ttf 45 9 25.2250 40.9971 80 K 0.1962 28.2377 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 81 H 0.2423 23.0431 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 82 q 10.2378 24.9156 42.2069 -Andale_Mono.ttf 45 9 25.2250 40.9971 83 & -0.1109 32.6598 40.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 84 ’ -0.0791 7.2279 13.2460 -Andale_Mono.ttf 45 9 25.2250 40.9971 85 [ 0.2511 11.2250 47.8696 -Andale_Mono.ttf 45 9 25.2250 40.9971 86 - 22.9630 16.9359 4.1457 -Andale_Mono.ttf 45 9 25.2250 40.9971 87 Y 0.2583 29.8264 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 88 Q 0.0715 28.6167 47.7692 -Andale_Mono.ttf 45 9 25.2250 40.9971 89 " 0.4636 14.9239 15.2098 -Andale_Mono.ttf 45 9 25.2250 40.9971 90 ! 0.4454 7.2279 40.7902 -Andale_Mono.ttf 45 9 25.2250 40.9971 91 x 10.5550 26.2739 30.4195 -Andale_Mono.ttf 45 9 25.2250 40.9971 92 ) -0.1561 15.2098 49.6141 -Andale_Mono.ttf 45 9 25.2250 40.9971 93 = 12.5751 27.1098 15.2098 -Andale_Mono.ttf 45 9 25.2250 40.9971 94 + 6.7986 26.9971 26.9971 -Andale_Mono.ttf 45 9 25.2250 40.9971 95 X 0.0665 31.0946 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 96 » 10.1128 25.2250 29.2098 -Andale_Mono.ttf 45 9 25.2250 40.9971 97 ' 0.3318 4.4529 15.2098 -Andale_Mono.ttf 45 9 25.2250 40.9971 98 ¢ 5.1700 23.6474 41.2224 -Andale_Mono.ttf 45 9 25.2250 40.9971 99 Z 0.4347 24.3684 40.5833 -Andale_Mono.ttf 45 9 25.2250 40.9971 100 > 5.9209 21.2279 29.2098 -Andale_Mono.ttf 45 9 25.2250 40.9971 101 ® -0.0739 35.0793 34.5652 -Andale_Mono.ttf 45 9 25.2250 40.9971 102 © 0.1732 35.0793 34.5652 -Andale_Mono.ttf 45 9 25.2250 40.9971 103 ] 0.2226 11.2250 47.8696 -Andale_Mono.ttf 45 9 25.2250 40.9971 104 é -0.9408 25.2250 42.0460 -Andale_Mono.ttf 45 9 25.2250 40.9971 105 z 10.3080 23.1917 30.4195 -Andale_Mono.ttf 45 9 25.2250 40.9971 106 _ 49.6929 35.0793 3.8362 -Andale_Mono.ttf 45 9 25.2250 40.9971 107 ¥ 0.3034 29.8264 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 1 t -7.7858 22.6445 38.7569 -Andale_Mono.ttf 46 ; 7.2279 36.8514 2 h -9.7818 23.0431 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 3 a 0.0885 24.2529 30.8333 -Andale_Mono.ttf 46 ; 7.2279 36.8514 4 n 0.1526 23.0431 30.6264 -Andale_Mono.ttf 46 ; 7.2279 36.8514 5 P -9.7726 22.8055 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 6 o -0.3481 26.7880 30.8333 -Andale_Mono.ttf 46 ; 7.2279 36.8514 7 e 0.0175 25.2250 30.8333 -Andale_Mono.ttf 46 ; 7.2279 36.8514 8 : 0.0398 7.2279 30.8333 -Andale_Mono.ttf 46 ; 7.2279 36.8514 9 r 0.0760 20.4043 30.6264 -Andale_Mono.ttf 46 ; 7.2279 36.8514 10 l -9.7080 20.4167 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 11 i -10.3735 13.3043 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 12 1 -9.8724 21.0793 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 13 | -10.1126 4.1457 51.1917 -Andale_Mono.ttf 46 ; 7.2279 36.8514 14 N -9.7914 24.3684 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 15 f -10.0335 22.7449 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 16 g -0.0444 26.2862 42.2069 -Andale_Mono.ttf 46 ; 7.2279 36.8514 17 d -10.1678 24.9156 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 18 W -10.1042 32.6598 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 19 s 0.0851 22.4960 30.8333 -Andale_Mono.ttf 46 ; 7.2279 36.8514 20 c 0.0366 24.2529 30.8333 -Andale_Mono.ttf 46 ; 7.2279 36.8514 21 u 0.4190 23.0431 30.6264 -Andale_Mono.ttf 46 ; 7.2279 36.8514 22 3 -10.3929 22.4376 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 23 ~ 11.1297 31.2431 8.4376 -Andale_Mono.ttf 46 ; 7.2279 36.8514 24 # -9.9958 29.7261 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 25 O -10.0408 27.4069 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 26 ` -11.3286 12.2739 8.6445 -Andale_Mono.ttf 46 ; 7.2279 36.8514 27 @ -10.1203 29.8848 45.6293 -Andale_Mono.ttf 46 ; 7.2279 36.8514 28 F -9.9224 21.8334 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 29 S -10.0327 22.6445 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 30 p -0.1776 24.9156 42.2069 -Andale_Mono.ttf 46 ; 7.2279 36.8514 31 “ -10.1118 17.6989 13.2460 -Andale_Mono.ttf 46 ; 7.2279 36.8514 32 % -10.1952 32.6598 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 33 £ -9.9852 26.7902 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 34 . 23.5924 7.2279 7.2279 -Andale_Mono.ttf 46 ; 7.2279 36.8514 35 2 -10.4806 21.9695 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 36 5 -10.0881 22.1304 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 37 m -0.0859 27.6138 30.6264 -Andale_Mono.ttf 46 ; 7.2279 36.8514 38 V -10.0078 32.2460 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 39 6 -10.2385 25.4319 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 40 w 0.1989 29.5170 30.4195 -Andale_Mono.ttf 46 ; 7.2279 36.8514 41 T -9.5103 29.4710 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 42 M -9.9626 25.2250 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 43 G -10.4859 26.5833 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 44 b -10.1118 24.9156 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 45 9 -10.4273 25.2250 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 46 ; -0.3475 7.2279 36.8514 -Andale_Mono.ttf 46 ; 7.2279 36.8514 47 D -9.9268 25.2250 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 48 L -10.0454 21.8334 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 49 y 0.1741 26.6417 42.0000 -Andale_Mono.ttf 46 ; 7.2279 36.8514 50 ‘ -10.0069 7.2279 13.2460 -Andale_Mono.ttf 46 ; 7.2279 36.8514 51 \ -10.1316 24.4014 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 52 R -9.9350 27.3351 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 53 < -4.2977 21.2279 29.2098 -Andale_Mono.ttf 46 ; 7.2279 36.8514 54 4 -10.2017 27.4836 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 55 8 -9.9289 25.7598 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 56 0 -10.0636 26.7880 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 57 A -10.0353 32.2460 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 58 E -9.9457 21.0793 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 59 B -9.7492 25.0765 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 60 v -0.0772 26.4348 30.4195 -Andale_Mono.ttf 46 ; 7.2279 36.8514 61 k -9.9588 26.1253 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 62 J -9.8759 19.6627 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 63 U -9.8320 23.0431 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 64 j -10.3572 15.7239 52.3707 -Andale_Mono.ttf 46 ; 7.2279 36.8514 65 ( -10.3956 15.2098 49.6141 -Andale_Mono.ttf 46 ; 7.2279 36.8514 66 7 -9.8175 23.7080 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 67 § -9.8927 23.8543 52.5776 -Andale_Mono.ttf 46 ; 7.2279 36.8514 68 $ -13.0198 22.6445 47.0152 -Andale_Mono.ttf 46 ; 7.2279 36.8514 69 € -10.3159 30.5474 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 70 / -10.0753 24.4014 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 71 C -10.1302 26.7112 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 72 * -9.9506 20.1184 22.4376 -Andale_Mono.ttf 46 ; 7.2279 36.8514 73 ” -10.1243 17.6989 13.2460 -Andale_Mono.ttf 46 ; 7.2279 36.8514 74 ? -10.2559 20.5652 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 75 { -10.2611 15.8848 50.4376 -Andale_Mono.ttf 46 ; 7.2279 36.8514 76 } -9.8670 15.8848 50.4376 -Andale_Mono.ttf 46 ; 7.2279 36.8514 77 , 23.6650 7.2279 13.2460 -Andale_Mono.ttf 46 ; 7.2279 36.8514 78 I -9.8759 17.9971 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 79 ° -10.1596 15.7261 15.7261 -Andale_Mono.ttf 46 ; 7.2279 36.8514 80 K -10.2266 28.2377 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 81 H -10.1916 23.0431 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 82 q -0.0908 24.9156 42.2069 -Andale_Mono.ttf 46 ; 7.2279 36.8514 83 & -10.2215 32.6598 40.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 84 ’ -10.3176 7.2279 13.2460 -Andale_Mono.ttf 46 ; 7.2279 36.8514 85 [ -10.0423 11.2250 47.8696 -Andale_Mono.ttf 46 ; 7.2279 36.8514 86 - 12.6038 16.9359 4.1457 -Andale_Mono.ttf 46 ; 7.2279 36.8514 87 Y -10.0205 29.8264 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 88 Q -9.9906 28.6167 47.7692 -Andale_Mono.ttf 46 ; 7.2279 36.8514 89 " -9.8095 14.9239 15.2098 -Andale_Mono.ttf 46 ; 7.2279 36.8514 90 ! -9.8195 7.2279 40.7902 -Andale_Mono.ttf 46 ; 7.2279 36.8514 91 x 0.2565 26.2739 30.4195 -Andale_Mono.ttf 46 ; 7.2279 36.8514 92 ) -10.0758 15.2098 49.6141 -Andale_Mono.ttf 46 ; 7.2279 36.8514 93 = 2.3948 27.1098 15.2098 -Andale_Mono.ttf 46 ; 7.2279 36.8514 94 + -3.3974 26.9971 26.9971 -Andale_Mono.ttf 46 ; 7.2279 36.8514 95 X -10.0749 31.0946 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 96 » 0.2528 25.2250 29.2098 -Andale_Mono.ttf 46 ; 7.2279 36.8514 97 ' -9.8050 4.4529 15.2098 -Andale_Mono.ttf 46 ; 7.2279 36.8514 98 ¢ -5.1357 23.6474 41.2224 -Andale_Mono.ttf 46 ; 7.2279 36.8514 99 Z -10.1669 24.3684 40.5833 -Andale_Mono.ttf 46 ; 7.2279 36.8514 100 > -4.5657 21.2279 29.2098 -Andale_Mono.ttf 46 ; 7.2279 36.8514 101 ® -10.2810 35.0793 34.5652 -Andale_Mono.ttf 46 ; 7.2279 36.8514 102 © -10.3942 35.0793 34.5652 -Andale_Mono.ttf 46 ; 7.2279 36.8514 103 ] -10.2236 11.2250 47.8696 -Andale_Mono.ttf 46 ; 7.2279 36.8514 104 é -11.4314 25.2250 42.0460 -Andale_Mono.ttf 46 ; 7.2279 36.8514 105 z 0.2069 23.1917 30.4195 -Andale_Mono.ttf 46 ; 7.2279 36.8514 106 _ 39.5115 35.0793 3.8362 -Andale_Mono.ttf 46 ; 7.2279 36.8514 107 ¥ -9.9925 29.8264 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 1 t 1.7680 22.6445 38.7569 -Andale_Mono.ttf 47 D 25.2250 40.5833 2 h -0.1388 23.0431 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 3 a 9.7264 24.2529 30.8333 -Andale_Mono.ttf 47 D 25.2250 40.5833 4 n 9.8190 23.0431 30.6264 -Andale_Mono.ttf 47 D 25.2250 40.5833 5 P -0.2023 22.8055 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 6 o 9.8559 26.7880 30.8333 -Andale_Mono.ttf 47 D 25.2250 40.5833 7 e 9.5833 25.2250 30.8333 -Andale_Mono.ttf 47 D 25.2250 40.5833 8 : 9.9944 7.2279 30.8333 -Andale_Mono.ttf 47 D 25.2250 40.5833 9 r 9.8966 20.4043 30.6264 -Andale_Mono.ttf 47 D 25.2250 40.5833 10 l -0.0859 20.4167 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 11 i -0.3412 13.3043 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 12 1 0.0998 21.0793 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 13 | 0.0233 4.1457 51.1917 -Andale_Mono.ttf 47 D 25.2250 40.5833 14 N 0.0699 24.3684 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 15 f 0.2059 22.7449 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 16 g 10.1904 26.2862 42.2069 -Andale_Mono.ttf 47 D 25.2250 40.5833 17 d 0.3101 24.9156 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 18 W -0.3491 32.6598 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 19 s 10.0132 22.4960 30.8333 -Andale_Mono.ttf 47 D 25.2250 40.5833 20 c 9.7385 24.2529 30.8333 -Andale_Mono.ttf 47 D 25.2250 40.5833 21 u 10.2835 23.0431 30.6264 -Andale_Mono.ttf 47 D 25.2250 40.5833 22 3 0.0132 22.4376 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 23 ~ 21.0002 31.2431 8.4376 -Andale_Mono.ttf 47 D 25.2250 40.5833 24 # 0.0743 29.7261 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 25 O -0.2552 27.4069 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 26 ` -1.2883 12.2739 8.6445 -Andale_Mono.ttf 47 D 25.2250 40.5833 27 @ -0.3795 29.8848 45.6293 -Andale_Mono.ttf 47 D 25.2250 40.5833 28 F 0.1392 21.8334 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 29 S -0.3828 22.6445 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 30 p 10.0124 24.9156 42.2069 -Andale_Mono.ttf 47 D 25.2250 40.5833 31 “ -0.3080 17.6989 13.2460 -Andale_Mono.ttf 47 D 25.2250 40.5833 32 % -0.2592 32.6598 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 33 £ -0.3970 26.7902 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 34 . 33.2137 7.2279 7.2279 -Andale_Mono.ttf 47 D 25.2250 40.5833 35 2 -0.3318 21.9695 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 36 5 -0.1334 22.1304 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 37 m 10.1138 27.6138 30.6264 -Andale_Mono.ttf 47 D 25.2250 40.5833 38 V 0.4556 32.2460 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 39 6 -0.6118 25.4319 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 40 w 10.1986 29.5170 30.4195 -Andale_Mono.ttf 47 D 25.2250 40.5833 41 T 0.0992 29.4710 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 42 M 0.0596 25.2250 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 43 G -0.1205 26.5833 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 44 b 0.0153 24.9156 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 45 9 -0.0029 25.2250 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 46 ; 9.9109 7.2279 36.8514 -Andale_Mono.ttf 47 D 25.2250 40.5833 47 D -0.1293 25.2250 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 48 L 0.1664 21.8334 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 49 y 10.4255 26.6417 42.0000 -Andale_Mono.ttf 47 D 25.2250 40.5833 50 ‘ -0.4279 7.2279 13.2460 -Andale_Mono.ttf 47 D 25.2250 40.5833 51 \ -0.0374 24.4014 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 52 R 0.0663 27.3351 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 53 < 5.6699 21.2279 29.2098 -Andale_Mono.ttf 47 D 25.2250 40.5833 54 4 0.0483 27.4836 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 55 8 -0.1931 25.7598 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 56 0 -0.1889 26.7880 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 57 A 0.2845 32.2460 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 58 E 0.1061 21.0793 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 59 B 0.1406 25.0765 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 60 v 10.0037 26.4348 30.4195 -Andale_Mono.ttf 47 D 25.2250 40.5833 61 k 0.0847 26.1253 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 62 J 0.0859 19.6627 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 63 U -0.1542 23.0431 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 64 j -0.1308 15.7239 52.3707 -Andale_Mono.ttf 47 D 25.2250 40.5833 65 ( -0.3386 15.2098 49.6141 -Andale_Mono.ttf 47 D 25.2250 40.5833 66 7 0.1500 23.7080 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 67 § -0.3787 23.8543 52.5776 -Andale_Mono.ttf 47 D 25.2250 40.5833 68 $ -3.1424 22.6445 47.0152 -Andale_Mono.ttf 47 D 25.2250 40.5833 69 € -0.2287 30.5474 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 70 / -0.5295 24.4014 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 71 C -0.0320 26.7112 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 72 * -0.0047 20.1184 22.4376 -Andale_Mono.ttf 47 D 25.2250 40.5833 73 ” 0.0335 17.6989 13.2460 -Andale_Mono.ttf 47 D 25.2250 40.5833 74 ? -0.4069 20.5652 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 75 { -0.0111 15.8848 50.4376 -Andale_Mono.ttf 47 D 25.2250 40.5833 76 } -0.0847 15.8848 50.4376 -Andale_Mono.ttf 47 D 25.2250 40.5833 77 , 33.4884 7.2279 13.2460 -Andale_Mono.ttf 47 D 25.2250 40.5833 78 I -0.2134 17.9971 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 79 ° -0.3281 15.7261 15.7261 -Andale_Mono.ttf 47 D 25.2250 40.5833 80 K -0.4679 28.2377 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 81 H -0.1249 23.0431 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 82 q 10.2557 24.9156 42.2069 -Andale_Mono.ttf 47 D 25.2250 40.5833 83 & -0.1001 32.6598 40.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 84 ’ -0.2213 7.2279 13.2460 -Andale_Mono.ttf 47 D 25.2250 40.5833 85 [ -0.1106 11.2250 47.8696 -Andale_Mono.ttf 47 D 25.2250 40.5833 86 - 22.3418 16.9359 4.1457 -Andale_Mono.ttf 47 D 25.2250 40.5833 87 Y 0.2761 29.8264 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 88 Q -0.3086 28.6167 47.7692 -Andale_Mono.ttf 47 D 25.2250 40.5833 89 " -0.0975 14.9239 15.2098 -Andale_Mono.ttf 47 D 25.2250 40.5833 90 ! 0.0314 7.2279 40.7902 -Andale_Mono.ttf 47 D 25.2250 40.5833 91 x 10.4274 26.2739 30.4195 -Andale_Mono.ttf 47 D 25.2250 40.5833 92 ) -0.3703 15.2098 49.6141 -Andale_Mono.ttf 47 D 25.2250 40.5833 93 = 12.5255 27.1098 15.2098 -Andale_Mono.ttf 47 D 25.2250 40.5833 94 + 6.6144 26.9971 26.9971 -Andale_Mono.ttf 47 D 25.2250 40.5833 95 X 0.0898 31.0946 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 96 » 9.9586 25.2250 29.2098 -Andale_Mono.ttf 47 D 25.2250 40.5833 97 ' 0.1261 4.4529 15.2098 -Andale_Mono.ttf 47 D 25.2250 40.5833 98 ¢ 4.9235 23.6474 41.2224 -Andale_Mono.ttf 47 D 25.2250 40.5833 99 Z 0.0550 24.3684 40.5833 -Andale_Mono.ttf 47 D 25.2250 40.5833 100 > 5.2927 21.2279 29.2098 -Andale_Mono.ttf 47 D 25.2250 40.5833 101 ® -0.0381 35.0793 34.5652 -Andale_Mono.ttf 47 D 25.2250 40.5833 102 © -0.4100 35.0793 34.5652 -Andale_Mono.ttf 47 D 25.2250 40.5833 103 ] -0.0439 11.2250 47.8696 -Andale_Mono.ttf 47 D 25.2250 40.5833 104 é -1.0517 25.2250 42.0460 -Andale_Mono.ttf 47 D 25.2250 40.5833 105 z 9.8630 23.1917 30.4195 -Andale_Mono.ttf 47 D 25.2250 40.5833 106 _ 49.6429 35.0793 3.8362 -Andale_Mono.ttf 47 D 25.2250 40.5833 107 ¥ 0.1759 29.8264 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 1 t 1.8408 22.6445 38.7569 -Andale_Mono.ttf 48 L 21.8334 40.5833 2 h -0.1719 23.0431 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 3 a 9.7096 24.2529 30.8333 -Andale_Mono.ttf 48 L 21.8334 40.5833 4 n 9.8136 23.0431 30.6264 -Andale_Mono.ttf 48 L 21.8334 40.5833 5 P -0.0810 22.8055 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 6 o 9.8132 26.7880 30.8333 -Andale_Mono.ttf 48 L 21.8334 40.5833 7 e 9.9268 25.2250 30.8333 -Andale_Mono.ttf 48 L 21.8334 40.5833 8 : 10.0174 7.2279 30.8333 -Andale_Mono.ttf 48 L 21.8334 40.5833 9 r 10.1931 20.4043 30.6264 -Andale_Mono.ttf 48 L 21.8334 40.5833 10 l 0.0027 20.4167 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 11 i -0.4126 13.3043 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 12 1 -0.3463 21.0793 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 13 | 0.1172 4.1457 51.1917 -Andale_Mono.ttf 48 L 21.8334 40.5833 14 N 0.1162 24.3684 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 15 f 0.1419 22.7449 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 16 g 9.9525 26.2862 42.2069 -Andale_Mono.ttf 48 L 21.8334 40.5833 17 d 0.0716 24.9156 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 18 W 0.0046 32.6598 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 19 s 10.0617 22.4960 30.8333 -Andale_Mono.ttf 48 L 21.8334 40.5833 20 c 9.5736 24.2529 30.8333 -Andale_Mono.ttf 48 L 21.8334 40.5833 21 u 10.1739 23.0431 30.6264 -Andale_Mono.ttf 48 L 21.8334 40.5833 22 3 -0.0475 22.4376 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 23 ~ 21.0170 31.2431 8.4376 -Andale_Mono.ttf 48 L 21.8334 40.5833 24 # 0.0871 29.7261 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 25 O 0.0713 27.4069 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 26 ` -1.2848 12.2739 8.6445 -Andale_Mono.ttf 48 L 21.8334 40.5833 27 @ -0.0776 29.8848 45.6293 -Andale_Mono.ttf 48 L 21.8334 40.5833 28 F 0.0859 21.8334 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 29 S -0.1475 22.6445 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 30 p 10.3075 24.9156 42.2069 -Andale_Mono.ttf 48 L 21.8334 40.5833 31 “ -0.3479 17.6989 13.2460 -Andale_Mono.ttf 48 L 21.8334 40.5833 32 % -0.1447 32.6598 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 33 £ 0.0140 26.7902 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 34 . 33.5248 7.2279 7.2279 -Andale_Mono.ttf 48 L 21.8334 40.5833 35 2 -0.3491 21.9695 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 36 5 -0.0376 22.1304 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 37 m 9.9251 27.6138 30.6264 -Andale_Mono.ttf 48 L 21.8334 40.5833 38 V 0.2841 32.2460 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 39 6 -0.1262 25.4319 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 40 w 10.0646 29.5170 30.4195 -Andale_Mono.ttf 48 L 21.8334 40.5833 41 T -0.2084 29.4710 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 42 M -0.0179 25.2250 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 43 G -0.0154 26.5833 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 44 b -0.0940 24.9156 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 45 9 -0.1322 25.2250 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 46 ; 9.8548 7.2279 36.8514 -Andale_Mono.ttf 48 L 21.8334 40.5833 47 D -0.0805 25.2250 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 48 L -0.0891 21.8334 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 49 y 10.4042 26.6417 42.0000 -Andale_Mono.ttf 48 L 21.8334 40.5833 50 ‘ 0.0893 7.2279 13.2460 -Andale_Mono.ttf 48 L 21.8334 40.5833 51 \ 0.0494 24.4014 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 52 R -0.1669 27.3351 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 53 < 5.5040 21.2279 29.2098 -Andale_Mono.ttf 48 L 21.8334 40.5833 54 4 -0.0232 27.4836 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 55 8 -0.0452 25.7598 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 56 0 -0.1138 26.7880 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 57 A -0.2182 32.2460 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 58 E -0.0308 21.0793 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 59 B 0.2671 25.0765 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 60 v 10.0511 26.4348 30.4195 -Andale_Mono.ttf 48 L 21.8334 40.5833 61 k 0.1287 26.1253 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 62 J 0.1500 19.6627 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 63 U -0.0245 23.0431 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 64 j -0.2914 15.7239 52.3707 -Andale_Mono.ttf 48 L 21.8334 40.5833 65 ( -0.3685 15.2098 49.6141 -Andale_Mono.ttf 48 L 21.8334 40.5833 66 7 0.0004 23.7080 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 67 § -0.0287 23.8543 52.5776 -Andale_Mono.ttf 48 L 21.8334 40.5833 68 $ -2.7445 22.6445 47.0152 -Andale_Mono.ttf 48 L 21.8334 40.5833 69 € 0.0403 30.5474 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 70 / -0.2874 24.4014 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 71 C -0.2233 26.7112 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 72 * -0.2019 20.1184 22.4376 -Andale_Mono.ttf 48 L 21.8334 40.5833 73 ” -0.2135 17.6989 13.2460 -Andale_Mono.ttf 48 L 21.8334 40.5833 74 ? -0.3845 20.5652 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 75 { -0.5610 15.8848 50.4376 -Andale_Mono.ttf 48 L 21.8334 40.5833 76 } -0.0444 15.8848 50.4376 -Andale_Mono.ttf 48 L 21.8334 40.5833 77 , 33.3476 7.2279 13.2460 -Andale_Mono.ttf 48 L 21.8334 40.5833 78 I 0.4120 17.9971 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 79 ° -0.3595 15.7261 15.7261 -Andale_Mono.ttf 48 L 21.8334 40.5833 80 K 0.2111 28.2377 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 81 H 0.1307 23.0431 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 82 q 9.7457 24.9156 42.2069 -Andale_Mono.ttf 48 L 21.8334 40.5833 83 & -0.2408 32.6598 40.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 84 ’ -0.2318 7.2279 13.2460 -Andale_Mono.ttf 48 L 21.8334 40.5833 85 [ -0.1218 11.2250 47.8696 -Andale_Mono.ttf 48 L 21.8334 40.5833 86 - 22.3620 16.9359 4.1457 -Andale_Mono.ttf 48 L 21.8334 40.5833 87 Y -0.0483 29.8264 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 88 Q -0.1703 28.6167 47.7692 -Andale_Mono.ttf 48 L 21.8334 40.5833 89 " -0.4542 14.9239 15.2098 -Andale_Mono.ttf 48 L 21.8334 40.5833 90 ! -0.0782 7.2279 40.7902 -Andale_Mono.ttf 48 L 21.8334 40.5833 91 x 10.2021 26.2739 30.4195 -Andale_Mono.ttf 48 L 21.8334 40.5833 92 ) -0.3636 15.2098 49.6141 -Andale_Mono.ttf 48 L 21.8334 40.5833 93 = 12.5394 27.1098 15.2098 -Andale_Mono.ttf 48 L 21.8334 40.5833 94 + 6.7013 26.9971 26.9971 -Andale_Mono.ttf 48 L 21.8334 40.5833 95 X 0.0948 31.0946 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 96 » 9.6839 25.2250 29.2098 -Andale_Mono.ttf 48 L 21.8334 40.5833 97 ' 0.0801 4.4529 15.2098 -Andale_Mono.ttf 48 L 21.8334 40.5833 98 ¢ 4.5449 23.6474 41.2224 -Andale_Mono.ttf 48 L 21.8334 40.5833 99 Z -0.1218 24.3684 40.5833 -Andale_Mono.ttf 48 L 21.8334 40.5833 100 > 5.3169 21.2279 29.2098 -Andale_Mono.ttf 48 L 21.8334 40.5833 101 ® -0.2663 35.0793 34.5652 -Andale_Mono.ttf 48 L 21.8334 40.5833 102 © 0.1470 35.0793 34.5652 -Andale_Mono.ttf 48 L 21.8334 40.5833 103 ] -0.1324 11.2250 47.8696 -Andale_Mono.ttf 48 L 21.8334 40.5833 104 é -1.1862 25.2250 42.0460 -Andale_Mono.ttf 48 L 21.8334 40.5833 105 z 10.1310 23.1917 30.4195 -Andale_Mono.ttf 48 L 21.8334 40.5833 106 _ 49.5708 35.0793 3.8362 -Andale_Mono.ttf 48 L 21.8334 40.5833 107 ¥ -0.0156 29.8264 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 1 t -8.4092 22.6445 38.7569 -Andale_Mono.ttf 49 y 26.6417 42.0000 2 h -10.1791 23.0431 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 3 a 0.2159 24.2529 30.8333 -Andale_Mono.ttf 49 y 26.6417 42.0000 4 n -0.0140 23.0431 30.6264 -Andale_Mono.ttf 49 y 26.6417 42.0000 5 P -10.0320 22.8055 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 6 o -0.2593 26.7880 30.8333 -Andale_Mono.ttf 49 y 26.6417 42.0000 7 e -0.0119 25.2250 30.8333 -Andale_Mono.ttf 49 y 26.6417 42.0000 8 : -0.2312 7.2279 30.8333 -Andale_Mono.ttf 49 y 26.6417 42.0000 9 r -0.0931 20.4043 30.6264 -Andale_Mono.ttf 49 y 26.6417 42.0000 10 l -9.9190 20.4167 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 11 i -10.3362 13.3043 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 12 1 -10.3362 21.0793 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 13 | -10.2354 4.1457 51.1917 -Andale_Mono.ttf 49 y 26.6417 42.0000 14 N -9.9441 24.3684 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 15 f -10.2741 22.7449 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 16 g -0.1698 26.2862 42.2069 -Andale_Mono.ttf 49 y 26.6417 42.0000 17 d -10.1310 24.9156 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 18 W -10.2121 32.6598 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 19 s -0.5106 22.4960 30.8333 -Andale_Mono.ttf 49 y 26.6417 42.0000 20 c -0.5031 24.2529 30.8333 -Andale_Mono.ttf 49 y 26.6417 42.0000 21 u 0.2422 23.0431 30.6264 -Andale_Mono.ttf 49 y 26.6417 42.0000 22 3 -10.4389 22.4376 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 23 ~ 10.9598 31.2431 8.4376 -Andale_Mono.ttf 49 y 26.6417 42.0000 24 # -10.0190 29.7261 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 25 O -10.2871 27.4069 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 26 ` -11.3810 12.2739 8.6445 -Andale_Mono.ttf 49 y 26.6417 42.0000 27 @ -10.5783 29.8848 45.6293 -Andale_Mono.ttf 49 y 26.6417 42.0000 28 F -10.2333 21.8334 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 29 S -10.6096 22.6445 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 30 p -0.1322 24.9156 42.2069 -Andale_Mono.ttf 49 y 26.6417 42.0000 31 “ -10.6890 17.6989 13.2460 -Andale_Mono.ttf 49 y 26.6417 42.0000 32 % -10.3693 32.6598 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 33 £ -10.6699 26.7902 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 34 . 23.4361 7.2279 7.2279 -Andale_Mono.ttf 49 y 26.6417 42.0000 35 2 -10.3689 21.9695 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 36 5 -10.2108 22.1304 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 37 m -0.3297 27.6138 30.6264 -Andale_Mono.ttf 49 y 26.6417 42.0000 38 V -10.1465 32.2460 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 39 6 -10.3572 25.4319 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 40 w -0.2627 29.5170 30.4195 -Andale_Mono.ttf 49 y 26.6417 42.0000 41 T -10.1732 29.4710 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 42 M -9.7674 25.2250 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 43 G -10.4778 26.5833 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 44 b -10.4082 24.9156 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 45 9 -10.6488 25.2250 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 46 ; -0.2243 7.2279 36.8514 -Andale_Mono.ttf 49 y 26.6417 42.0000 47 D -10.1067 25.2250 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 48 L -9.8761 21.8334 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 49 y 0.0000 26.6417 42.0000 -Andale_Mono.ttf 49 y 26.6417 42.0000 50 ‘ -10.4503 7.2279 13.2460 -Andale_Mono.ttf 49 y 26.6417 42.0000 51 \ -10.2715 24.4014 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 52 R -9.8452 27.3351 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 53 < -4.7958 21.2279 29.2098 -Andale_Mono.ttf 49 y 26.6417 42.0000 54 4 -9.9544 27.4836 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 55 8 -10.2200 25.7598 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 56 0 -10.7825 26.7880 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 57 A -10.1692 32.2460 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 58 E -10.3757 21.0793 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 59 B -10.1061 25.0765 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 60 v -0.4638 26.4348 30.4195 -Andale_Mono.ttf 49 y 26.6417 42.0000 61 k -10.2766 26.1253 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 62 J -9.9973 19.6627 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 63 U -10.3817 23.0431 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 64 j -10.2690 15.7239 52.3707 -Andale_Mono.ttf 49 y 26.6417 42.0000 65 ( -10.6397 15.2098 49.6141 -Andale_Mono.ttf 49 y 26.6417 42.0000 66 7 -10.1213 23.7080 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 67 § -10.3645 23.8543 52.5776 -Andale_Mono.ttf 49 y 26.6417 42.0000 68 $ -12.9814 22.6445 47.0152 -Andale_Mono.ttf 49 y 26.6417 42.0000 69 € -10.4195 30.5474 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 70 / -10.3180 24.4014 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 71 C -10.4019 26.7112 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 72 * -10.1044 20.1184 22.4376 -Andale_Mono.ttf 49 y 26.6417 42.0000 73 ” -10.5636 17.6989 13.2460 -Andale_Mono.ttf 49 y 26.6417 42.0000 74 ? -10.4906 20.5652 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 75 { -10.2847 15.8848 50.4376 -Andale_Mono.ttf 49 y 26.6417 42.0000 76 } -10.0492 15.8848 50.4376 -Andale_Mono.ttf 49 y 26.6417 42.0000 77 , 23.5491 7.2279 13.2460 -Andale_Mono.ttf 49 y 26.6417 42.0000 78 I -10.0094 17.9971 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 79 ° -10.3538 15.7261 15.7261 -Andale_Mono.ttf 49 y 26.6417 42.0000 80 K -10.1218 28.2377 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 81 H -10.0271 23.0431 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 82 q -0.2615 24.9156 42.2069 -Andale_Mono.ttf 49 y 26.6417 42.0000 83 & -10.4874 32.6598 40.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 84 ’ -10.2369 7.2279 13.2460 -Andale_Mono.ttf 49 y 26.6417 42.0000 85 [ -10.2077 11.2250 47.8696 -Andale_Mono.ttf 49 y 26.6417 42.0000 86 - 12.3888 16.9359 4.1457 -Andale_Mono.ttf 49 y 26.6417 42.0000 87 Y -9.8582 29.8264 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 88 Q -10.3644 28.6167 47.7692 -Andale_Mono.ttf 49 y 26.6417 42.0000 89 " -9.8845 14.9239 15.2098 -Andale_Mono.ttf 49 y 26.6417 42.0000 90 ! -10.3496 7.2279 40.7902 -Andale_Mono.ttf 49 y 26.6417 42.0000 91 x -0.2389 26.2739 30.4195 -Andale_Mono.ttf 49 y 26.6417 42.0000 92 ) -10.6034 15.2098 49.6141 -Andale_Mono.ttf 49 y 26.6417 42.0000 93 = 2.2245 27.1098 15.2098 -Andale_Mono.ttf 49 y 26.6417 42.0000 94 + -3.9320 26.9971 26.9971 -Andale_Mono.ttf 49 y 26.6417 42.0000 95 X -10.1216 31.0946 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 96 » -0.4574 25.2250 29.2098 -Andale_Mono.ttf 49 y 26.6417 42.0000 97 ' -10.0831 4.4529 15.2098 -Andale_Mono.ttf 49 y 26.6417 42.0000 98 ¢ -5.4704 23.6474 41.2224 -Andale_Mono.ttf 49 y 26.6417 42.0000 99 Z -10.1585 24.3684 40.5833 -Andale_Mono.ttf 49 y 26.6417 42.0000 100 > -4.5331 21.2279 29.2098 -Andale_Mono.ttf 49 y 26.6417 42.0000 101 ® -10.2092 35.0793 34.5652 -Andale_Mono.ttf 49 y 26.6417 42.0000 102 © -10.4467 35.0793 34.5652 -Andale_Mono.ttf 49 y 26.6417 42.0000 103 ] -9.6986 11.2250 47.8696 -Andale_Mono.ttf 49 y 26.6417 42.0000 104 é -11.1643 25.2250 42.0460 -Andale_Mono.ttf 49 y 26.6417 42.0000 105 z 0.0594 23.1917 30.4195 -Andale_Mono.ttf 49 y 26.6417 42.0000 106 _ 39.3678 35.0793 3.8362 -Andale_Mono.ttf 49 y 26.6417 42.0000 107 ¥ -9.8255 29.8264 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 1 t 2.3287 22.6445 38.7569 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 2 h 0.1730 23.0431 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 3 a 10.1409 24.2529 30.8333 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 4 n 10.3937 23.0431 30.6264 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 5 P -0.3166 22.8055 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 6 o 10.1776 26.7880 30.8333 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 7 e 10.3737 25.2250 30.8333 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 8 : 10.2057 7.2279 30.8333 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 9 r 9.8278 20.4043 30.6264 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 10 l -0.0670 20.4167 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 11 i 0.3307 13.3043 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 12 1 -0.1794 21.0793 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 13 | 0.2377 4.1457 51.1917 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 14 N 0.3356 24.3684 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 15 f 0.1479 22.7449 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 16 g 10.2935 26.2862 42.2069 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 17 d 0.1165 24.9156 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 18 W 0.2822 32.6598 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 19 s 10.1791 22.4960 30.8333 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 20 c 10.2492 24.2529 30.8333 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 21 u 10.5264 23.0431 30.6264 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 22 3 0.1776 22.4376 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 23 ~ 21.1735 31.2431 8.4376 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 24 # 0.1523 29.7261 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 25 O 0.0854 27.4069 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 26 ` -0.8726 12.2739 8.6445 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 27 @ 0.3307 29.8848 45.6293 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 28 F 0.1469 21.8334 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 29 S 0.0439 22.6445 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 30 p 10.1701 24.9156 42.2069 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 31 “ -0.0483 17.6989 13.2460 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 32 % -0.2812 32.6598 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 33 £ 0.0784 26.7902 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 34 . 33.8158 7.2279 7.2279 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 35 2 0.1078 21.9695 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 36 5 0.1917 22.1304 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 37 m 10.3720 27.6138 30.6264 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 38 V -0.1502 32.2460 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 39 6 0.1044 25.4319 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 40 w 10.4140 29.5170 30.4195 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 41 T 0.1745 29.4710 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 42 M 0.3335 25.2250 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 43 G 0.0291 26.5833 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 44 b 0.3501 24.9156 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 45 9 0.2776 25.2250 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 46 ; 10.2894 7.2279 36.8514 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 47 D -0.0205 25.2250 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 48 L 0.1604 21.8334 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 49 y 10.1975 26.6417 42.0000 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 50 ‘ 0.1611 7.2279 13.2460 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 51 \ 0.3991 24.4014 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 52 R 0.0825 27.3351 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 53 < 5.7047 21.2279 29.2098 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 54 4 0.2933 27.4836 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 55 8 0.1034 25.7598 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 56 0 0.2215 26.7880 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 57 A 0.3500 32.2460 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 58 E 0.2456 21.0793 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 59 B 0.3362 25.0765 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 60 v 10.3845 26.4348 30.4195 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 61 k 0.1768 26.1253 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 62 J 0.2897 19.6627 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 63 U 0.2502 23.0431 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 64 j 0.3772 15.7239 52.3707 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 65 ( 0.0954 15.2098 49.6141 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 66 7 0.3613 23.7080 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 67 § -0.0810 23.8543 52.5776 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 68 $ -2.8529 22.6445 47.0152 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 69 € -0.2674 30.5474 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 70 / -0.1692 24.4014 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 71 C 0.0768 26.7112 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 72 * 0.0364 20.1184 22.4376 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 73 ” -0.1419 17.6989 13.2460 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 74 ? -0.0744 20.5652 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 75 { 0.0199 15.8848 50.4376 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 76 } 0.2027 15.8848 50.4376 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 77 , 33.7890 7.2279 13.2460 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 78 I -0.2118 17.9971 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 79 ° 0.2040 15.7261 15.7261 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 80 K -0.1343 28.2377 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 81 H 0.1201 23.0431 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 82 q 10.0844 24.9156 42.2069 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 83 & 0.0644 32.6598 40.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 84 ’ -0.5391 7.2279 13.2460 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 85 [ -0.1157 11.2250 47.8696 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 86 - 22.4411 16.9359 4.1457 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 87 Y -0.0320 29.8264 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 88 Q -0.0774 28.6167 47.7692 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 89 " 0.3577 14.9239 15.2098 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 90 ! 0.2069 7.2279 40.7902 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 91 x 10.2075 26.2739 30.4195 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 92 ) 0.2422 15.2098 49.6141 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 93 = 12.7664 27.1098 15.2098 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 94 + 6.7376 26.9971 26.9971 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 95 X -0.0008 31.0946 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 96 » 10.3232 25.2250 29.2098 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 97 ' 0.3795 4.4529 15.2098 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 98 ¢ 5.1351 23.6474 41.2224 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 99 Z 0.2207 24.3684 40.5833 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 100 > 5.5159 21.2279 29.2098 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 101 ® -0.0922 35.0793 34.5652 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 102 © -0.2304 35.0793 34.5652 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 103 ] 0.3764 11.2250 47.8696 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 104 é -1.1925 25.2250 42.0460 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 105 z 10.3492 23.1917 30.4195 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 106 _ 49.7486 35.0793 3.8362 -Andale_Mono.ttf 50 ‘ 7.2279 13.2460 107 ¥ 0.1285 29.8264 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 1 t 2.3267 22.6445 38.7569 -Andale_Mono.ttf 51 \ 24.4014 40.7902 2 h 0.4649 23.0431 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 3 a 9.9647 24.2529 30.8333 -Andale_Mono.ttf 51 \ 24.4014 40.7902 4 n 10.1356 23.0431 30.6264 -Andale_Mono.ttf 51 \ 24.4014 40.7902 5 P 0.4119 22.8055 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 6 o 10.0040 26.7880 30.8333 -Andale_Mono.ttf 51 \ 24.4014 40.7902 7 e 10.1983 25.2250 30.8333 -Andale_Mono.ttf 51 \ 24.4014 40.7902 8 : 10.1155 7.2279 30.8333 -Andale_Mono.ttf 51 \ 24.4014 40.7902 9 r 9.9343 20.4043 30.6264 -Andale_Mono.ttf 51 \ 24.4014 40.7902 10 l 0.5046 20.4167 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 11 i 0.1986 13.3043 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 12 1 -0.1230 21.0793 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 13 | 0.3211 4.1457 51.1917 -Andale_Mono.ttf 51 \ 24.4014 40.7902 14 N 0.4325 24.3684 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 15 f 0.3776 22.7449 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 16 g 10.1096 26.2862 42.2069 -Andale_Mono.ttf 51 \ 24.4014 40.7902 17 d 0.1931 24.9156 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 18 W -0.1676 32.6598 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 19 s 10.2427 22.4960 30.8333 -Andale_Mono.ttf 51 \ 24.4014 40.7902 20 c 9.9132 24.2529 30.8333 -Andale_Mono.ttf 51 \ 24.4014 40.7902 21 u 10.5057 23.0431 30.6264 -Andale_Mono.ttf 51 \ 24.4014 40.7902 22 3 0.0157 22.4376 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 23 ~ 21.5059 31.2431 8.4376 -Andale_Mono.ttf 51 \ 24.4014 40.7902 24 # 0.3647 29.7261 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 25 O 0.1525 27.4069 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 26 ` -1.1325 12.2739 8.6445 -Andale_Mono.ttf 51 \ 24.4014 40.7902 27 @ -0.1330 29.8848 45.6293 -Andale_Mono.ttf 51 \ 24.4014 40.7902 28 F 0.3711 21.8334 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 29 S 0.0465 22.6445 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 30 p 10.2190 24.9156 42.2069 -Andale_Mono.ttf 51 \ 24.4014 40.7902 31 “ -0.0389 17.6989 13.2460 -Andale_Mono.ttf 51 \ 24.4014 40.7902 32 % -0.0741 32.6598 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 33 £ -0.2586 26.7902 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 34 . 33.5459 7.2279 7.2279 -Andale_Mono.ttf 51 \ 24.4014 40.7902 35 2 -0.0939 21.9695 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 36 5 -0.0844 22.1304 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 37 m 10.2717 27.6138 30.6264 -Andale_Mono.ttf 51 \ 24.4014 40.7902 38 V 0.3309 32.2460 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 39 6 0.1004 25.4319 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 40 w 10.1492 29.5170 30.4195 -Andale_Mono.ttf 51 \ 24.4014 40.7902 41 T 0.1084 29.4710 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 42 M 0.4919 25.2250 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 43 G -0.1526 26.5833 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 44 b 0.3733 24.9156 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 45 9 -0.2141 25.2250 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 46 ; 10.2653 7.2279 36.8514 -Andale_Mono.ttf 51 \ 24.4014 40.7902 47 D 0.2768 25.2250 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 48 L 0.2596 21.8334 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 49 y 10.4034 26.6417 42.0000 -Andale_Mono.ttf 51 \ 24.4014 40.7902 50 ‘ -0.0465 7.2279 13.2460 -Andale_Mono.ttf 51 \ 24.4014 40.7902 51 \ -0.0753 24.4014 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 52 R -0.0914 27.3351 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 53 < 5.8836 21.2279 29.2098 -Andale_Mono.ttf 51 \ 24.4014 40.7902 54 4 0.2249 27.4836 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 55 8 -0.0506 25.7598 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 56 0 -0.4805 26.7880 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 57 A 0.0475 32.2460 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 58 E -0.0356 21.0793 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 59 B -0.0410 25.0765 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 60 v 10.3092 26.4348 30.4195 -Andale_Mono.ttf 51 \ 24.4014 40.7902 61 k 0.2565 26.1253 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 62 J 0.1555 19.6627 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 63 U 0.4079 23.0431 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 64 j -0.2027 15.7239 52.3707 -Andale_Mono.ttf 51 \ 24.4014 40.7902 65 ( -0.1432 15.2098 49.6141 -Andale_Mono.ttf 51 \ 24.4014 40.7902 66 7 0.5809 23.7080 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 67 § 0.2814 23.8543 52.5776 -Andale_Mono.ttf 51 \ 24.4014 40.7902 68 $ -3.0537 22.6445 47.0152 -Andale_Mono.ttf 51 \ 24.4014 40.7902 69 € -0.1010 30.5474 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 70 / 0.2850 24.4014 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 71 C 0.3307 26.7112 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 72 * 0.3255 20.1184 22.4376 -Andale_Mono.ttf 51 \ 24.4014 40.7902 73 ” 0.1236 17.6989 13.2460 -Andale_Mono.ttf 51 \ 24.4014 40.7902 74 ? -0.0461 20.5652 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 75 { 0.6082 15.8848 50.4376 -Andale_Mono.ttf 51 \ 24.4014 40.7902 76 } 0.2525 15.8848 50.4376 -Andale_Mono.ttf 51 \ 24.4014 40.7902 77 , 34.0060 7.2279 13.2460 -Andale_Mono.ttf 51 \ 24.4014 40.7902 78 I 0.3764 17.9971 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 79 ° -0.0693 15.7261 15.7261 -Andale_Mono.ttf 51 \ 24.4014 40.7902 80 K 0.2971 28.2377 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 81 H 0.4284 23.0431 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 82 q 9.8962 24.9156 42.2069 -Andale_Mono.ttf 51 \ 24.4014 40.7902 83 & 0.0271 32.6598 40.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 84 ’ 0.0532 7.2279 13.2460 -Andale_Mono.ttf 51 \ 24.4014 40.7902 85 [ 0.4174 11.2250 47.8696 -Andale_Mono.ttf 51 \ 24.4014 40.7902 86 - 22.8221 16.9359 4.1457 -Andale_Mono.ttf 51 \ 24.4014 40.7902 87 Y 0.2991 29.8264 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 88 Q -0.1230 28.6167 47.7692 -Andale_Mono.ttf 51 \ 24.4014 40.7902 89 " 0.0984 14.9239 15.2098 -Andale_Mono.ttf 51 \ 24.4014 40.7902 90 ! 0.2871 7.2279 40.7902 -Andale_Mono.ttf 51 \ 24.4014 40.7902 91 x 10.3639 26.2739 30.4195 -Andale_Mono.ttf 51 \ 24.4014 40.7902 92 ) 0.1366 15.2098 49.6141 -Andale_Mono.ttf 51 \ 24.4014 40.7902 93 = 12.9297 27.1098 15.2098 -Andale_Mono.ttf 51 \ 24.4014 40.7902 94 + 7.0143 26.9971 26.9971 -Andale_Mono.ttf 51 \ 24.4014 40.7902 95 X 0.3738 31.0946 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 96 » 10.4147 25.2250 29.2098 -Andale_Mono.ttf 51 \ 24.4014 40.7902 97 ' 0.4015 4.4529 15.2098 -Andale_Mono.ttf 51 \ 24.4014 40.7902 98 ¢ 5.1424 23.6474 41.2224 -Andale_Mono.ttf 51 \ 24.4014 40.7902 99 Z 0.2207 24.3684 40.5833 -Andale_Mono.ttf 51 \ 24.4014 40.7902 100 > 5.7109 21.2279 29.2098 -Andale_Mono.ttf 51 \ 24.4014 40.7902 101 ® -0.0979 35.0793 34.5652 -Andale_Mono.ttf 51 \ 24.4014 40.7902 102 © -0.1531 35.0793 34.5652 -Andale_Mono.ttf 51 \ 24.4014 40.7902 103 ] 0.1925 11.2250 47.8696 -Andale_Mono.ttf 51 \ 24.4014 40.7902 104 é -1.3308 25.2250 42.0460 -Andale_Mono.ttf 51 \ 24.4014 40.7902 105 z 10.5161 23.1917 30.4195 -Andale_Mono.ttf 51 \ 24.4014 40.7902 106 _ 49.7983 35.0793 3.8362 -Andale_Mono.ttf 51 \ 24.4014 40.7902 107 ¥ 0.0078 29.8264 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 1 t 1.9606 22.6445 38.7569 -Andale_Mono.ttf 52 R 27.3351 40.5833 2 h 0.1335 23.0431 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 3 a 9.7975 24.2529 30.8333 -Andale_Mono.ttf 52 R 27.3351 40.5833 4 n 10.0065 23.0431 30.6264 -Andale_Mono.ttf 52 R 27.3351 40.5833 5 P -0.4590 22.8055 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 6 o 9.6808 26.7880 30.8333 -Andale_Mono.ttf 52 R 27.3351 40.5833 7 e 10.0106 25.2250 30.8333 -Andale_Mono.ttf 52 R 27.3351 40.5833 8 : 9.9595 7.2279 30.8333 -Andale_Mono.ttf 52 R 27.3351 40.5833 9 r 9.9550 20.4043 30.6264 -Andale_Mono.ttf 52 R 27.3351 40.5833 10 l 0.1479 20.4167 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 11 i -0.2391 13.3043 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 12 1 -0.2404 21.0793 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 13 | 0.1536 4.1457 51.1917 -Andale_Mono.ttf 52 R 27.3351 40.5833 14 N 0.2705 24.3684 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 15 f -0.2040 22.7449 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 16 g 9.9256 26.2862 42.2069 -Andale_Mono.ttf 52 R 27.3351 40.5833 17 d 0.1965 24.9156 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 18 W -0.1557 32.6598 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 19 s 9.7073 22.4960 30.8333 -Andale_Mono.ttf 52 R 27.3351 40.5833 20 c 9.6245 24.2529 30.8333 -Andale_Mono.ttf 52 R 27.3351 40.5833 21 u 10.1871 23.0431 30.6264 -Andale_Mono.ttf 52 R 27.3351 40.5833 22 3 -0.3898 22.4376 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 23 ~ 21.3187 31.2431 8.4376 -Andale_Mono.ttf 52 R 27.3351 40.5833 24 # 0.1347 29.7261 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 25 O -0.2619 27.4069 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 26 ` -1.2558 12.2739 8.6445 -Andale_Mono.ttf 52 R 27.3351 40.5833 27 @ -0.6475 29.8848 45.6293 -Andale_Mono.ttf 52 R 27.3351 40.5833 28 F 0.1525 21.8334 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 29 S -0.6185 22.6445 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 30 p 9.9019 24.9156 42.2069 -Andale_Mono.ttf 52 R 27.3351 40.5833 31 “ -0.5098 17.6989 13.2460 -Andale_Mono.ttf 52 R 27.3351 40.5833 32 % -0.2933 32.6598 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 33 £ 0.0379 26.7902 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 34 . 33.6441 7.2279 7.2279 -Andale_Mono.ttf 52 R 27.3351 40.5833 35 2 -0.0753 21.9695 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 36 5 0.2684 22.1304 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 37 m 9.9626 27.6138 30.6264 -Andale_Mono.ttf 52 R 27.3351 40.5833 38 V -0.0376 32.2460 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 39 6 -0.1475 25.4319 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 40 w 10.0353 29.5170 30.4195 -Andale_Mono.ttf 52 R 27.3351 40.5833 41 T 0.1293 29.4710 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 42 M -0.2542 25.2250 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 43 G -0.1989 26.5833 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 44 b -0.1299 24.9156 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 45 9 -0.2315 25.2250 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 46 ; 9.9766 7.2279 36.8514 -Andale_Mono.ttf 52 R 27.3351 40.5833 47 D -0.2931 25.2250 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 48 L 0.0385 21.8334 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 49 y 9.8295 26.6417 42.0000 -Andale_Mono.ttf 52 R 27.3351 40.5833 50 ‘ -0.1314 7.2279 13.2460 -Andale_Mono.ttf 52 R 27.3351 40.5833 51 \ -0.2816 24.4014 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 52 R -0.0948 27.3351 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 53 < 5.4569 21.2279 29.2098 -Andale_Mono.ttf 52 R 27.3351 40.5833 54 4 -0.2040 27.4836 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 55 8 -0.2314 25.7598 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 56 0 0.0370 26.7880 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 57 A 0.1146 32.2460 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 58 E 0.2569 21.0793 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 59 B 0.0044 25.0765 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 60 v 10.2094 26.4348 30.4195 -Andale_Mono.ttf 52 R 27.3351 40.5833 61 k -0.0057 26.1253 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 62 J 0.1705 19.6627 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 63 U 0.0854 23.0431 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 64 j -0.0010 15.7239 52.3707 -Andale_Mono.ttf 52 R 27.3351 40.5833 65 ( -0.3864 15.2098 49.6141 -Andale_Mono.ttf 52 R 27.3351 40.5833 66 7 0.1071 23.7080 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 67 § -0.3513 23.8543 52.5776 -Andale_Mono.ttf 52 R 27.3351 40.5833 68 $ -2.9349 22.6445 47.0152 -Andale_Mono.ttf 52 R 27.3351 40.5833 69 € -0.0320 30.5474 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 70 / -0.2329 24.4014 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 71 C -0.3902 26.7112 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 72 * 0.0828 20.1184 22.4376 -Andale_Mono.ttf 52 R 27.3351 40.5833 73 ” -0.2525 17.6989 13.2460 -Andale_Mono.ttf 52 R 27.3351 40.5833 74 ? -0.1999 20.5652 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 75 { -0.0831 15.8848 50.4376 -Andale_Mono.ttf 52 R 27.3351 40.5833 76 } 0.1240 15.8848 50.4376 -Andale_Mono.ttf 52 R 27.3351 40.5833 77 , 33.5624 7.2279 13.2460 -Andale_Mono.ttf 52 R 27.3351 40.5833 78 I 0.0766 17.9971 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 79 ° -0.1800 15.7261 15.7261 -Andale_Mono.ttf 52 R 27.3351 40.5833 80 K 0.0824 28.2377 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 81 H 0.2046 23.0431 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 82 q 9.7291 24.9156 42.2069 -Andale_Mono.ttf 52 R 27.3351 40.5833 83 & -0.1201 32.6598 40.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 84 ’ 0.2040 7.2279 13.2460 -Andale_Mono.ttf 52 R 27.3351 40.5833 85 [ -0.0050 11.2250 47.8696 -Andale_Mono.ttf 52 R 27.3351 40.5833 86 - 22.1796 16.9359 4.1457 -Andale_Mono.ttf 52 R 27.3351 40.5833 87 Y -0.1920 29.8264 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 88 Q -0.1322 28.6167 47.7692 -Andale_Mono.ttf 52 R 27.3351 40.5833 89 " -0.1983 14.9239 15.2098 -Andale_Mono.ttf 52 R 27.3351 40.5833 90 ! 0.0353 7.2279 40.7902 -Andale_Mono.ttf 52 R 27.3351 40.5833 91 x 10.1011 26.2739 30.4195 -Andale_Mono.ttf 52 R 27.3351 40.5833 92 ) -0.1836 15.2098 49.6141 -Andale_Mono.ttf 52 R 27.3351 40.5833 93 = 12.5351 27.1098 15.2098 -Andale_Mono.ttf 52 R 27.3351 40.5833 94 + 6.5683 26.9971 26.9971 -Andale_Mono.ttf 52 R 27.3351 40.5833 95 X -0.0596 31.0946 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 96 » 10.0335 25.2250 29.2098 -Andale_Mono.ttf 52 R 27.3351 40.5833 97 ' 0.0532 4.4529 15.2098 -Andale_Mono.ttf 52 R 27.3351 40.5833 98 ¢ 4.6750 23.6474 41.2224 -Andale_Mono.ttf 52 R 27.3351 40.5833 99 Z 0.1039 24.3684 40.5833 -Andale_Mono.ttf 52 R 27.3351 40.5833 100 > 5.4110 21.2279 29.2098 -Andale_Mono.ttf 52 R 27.3351 40.5833 101 ® -0.3638 35.0793 34.5652 -Andale_Mono.ttf 52 R 27.3351 40.5833 102 © -0.3388 35.0793 34.5652 -Andale_Mono.ttf 52 R 27.3351 40.5833 103 ] 0.0465 11.2250 47.8696 -Andale_Mono.ttf 52 R 27.3351 40.5833 104 é -1.2313 25.2250 42.0460 -Andale_Mono.ttf 52 R 27.3351 40.5833 105 z 9.9959 23.1917 30.4195 -Andale_Mono.ttf 52 R 27.3351 40.5833 106 _ 49.7607 35.0793 3.8362 -Andale_Mono.ttf 52 R 27.3351 40.5833 107 ¥ -0.3249 29.8264 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 1 t -3.4447 22.6445 38.7569 -Andale_Mono.ttf 53 < 21.2279 29.2098 2 h -5.7613 23.0431 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 3 a 4.6784 24.2529 30.8333 -Andale_Mono.ttf 53 < 21.2279 29.2098 4 n 4.5451 23.0431 30.6264 -Andale_Mono.ttf 53 < 21.2279 29.2098 5 P -5.3144 22.8055 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 6 o 4.0836 26.7880 30.8333 -Andale_Mono.ttf 53 < 21.2279 29.2098 7 e 4.5933 25.2250 30.8333 -Andale_Mono.ttf 53 < 21.2279 29.2098 8 : 4.7792 7.2279 30.8333 -Andale_Mono.ttf 53 < 21.2279 29.2098 9 r 4.8615 20.4043 30.6264 -Andale_Mono.ttf 53 < 21.2279 29.2098 10 l -5.5026 20.4167 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 11 i -5.5561 13.3043 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 12 1 -5.9798 21.0793 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 13 | -5.7117 4.1457 51.1917 -Andale_Mono.ttf 53 < 21.2279 29.2098 14 N -5.6067 24.3684 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 15 f -5.2454 22.7449 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 16 g 4.3280 26.2862 42.2069 -Andale_Mono.ttf 53 < 21.2279 29.2098 17 d -5.3490 24.9156 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 18 W -5.4843 32.6598 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 19 s 4.6011 22.4960 30.8333 -Andale_Mono.ttf 53 < 21.2279 29.2098 20 c 4.3236 24.2529 30.8333 -Andale_Mono.ttf 53 < 21.2279 29.2098 21 u 4.5803 23.0431 30.6264 -Andale_Mono.ttf 53 < 21.2279 29.2098 22 3 -5.7036 22.4376 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 23 ~ 15.1791 31.2431 8.4376 -Andale_Mono.ttf 53 < 21.2279 29.2098 24 # -5.4011 29.7261 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 25 O -5.8126 27.4069 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 26 ` -6.4906 12.2739 8.6445 -Andale_Mono.ttf 53 < 21.2279 29.2098 27 @ -5.5038 29.8848 45.6293 -Andale_Mono.ttf 53 < 21.2279 29.2098 28 F -5.3228 21.8334 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 29 S -5.7400 22.6445 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 30 p 4.3339 24.9156 42.2069 -Andale_Mono.ttf 53 < 21.2279 29.2098 31 “ -5.6221 17.6989 13.2460 -Andale_Mono.ttf 53 < 21.2279 29.2098 32 % -5.7256 32.6598 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 33 £ -5.7561 26.7902 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 34 . 28.1070 7.2279 7.2279 -Andale_Mono.ttf 53 < 21.2279 29.2098 35 2 -5.6835 21.9695 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 36 5 -5.3948 22.1304 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 37 m 4.3836 27.6138 30.6264 -Andale_Mono.ttf 53 < 21.2279 29.2098 38 V -5.6275 32.2460 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 39 6 -5.7485 25.4319 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 40 w 4.8792 29.5170 30.4195 -Andale_Mono.ttf 53 < 21.2279 29.2098 41 T -5.6120 29.4710 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 42 M -5.4310 25.2250 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 43 G -5.7867 26.5833 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 44 b -5.5505 24.9156 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 45 9 -5.3820 25.2250 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 46 ; 4.6801 7.2279 36.8514 -Andale_Mono.ttf 53 < 21.2279 29.2098 47 D -5.5724 25.2250 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 48 L -5.5659 21.8334 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 49 y 4.8793 26.6417 42.0000 -Andale_Mono.ttf 53 < 21.2279 29.2098 50 ‘ -5.8536 7.2279 13.2460 -Andale_Mono.ttf 53 < 21.2279 29.2098 51 \ -5.8178 24.4014 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 52 R -5.4230 27.3351 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 53 < -0.1776 21.2279 29.2098 -Andale_Mono.ttf 53 < 21.2279 29.2098 54 4 -5.4235 27.4836 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 55 8 -6.1814 25.7598 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 56 0 -5.5266 26.7880 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 57 A -5.2900 32.2460 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 58 E -5.7352 21.0793 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 59 B -5.1814 25.0765 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 60 v 4.6290 26.4348 30.4195 -Andale_Mono.ttf 53 < 21.2279 29.2098 61 k -5.4270 26.1253 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 62 J -5.6704 19.6627 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 63 U -5.7457 23.0431 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 64 j -5.5560 15.7239 52.3707 -Andale_Mono.ttf 53 < 21.2279 29.2098 65 ( -5.7115 15.2098 49.6141 -Andale_Mono.ttf 53 < 21.2279 29.2098 66 7 -5.5988 23.7080 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 67 § -5.7189 23.8543 52.5776 -Andale_Mono.ttf 53 < 21.2279 29.2098 68 $ -8.2439 22.6445 47.0152 -Andale_Mono.ttf 53 < 21.2279 29.2098 69 € -5.7092 30.5474 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 70 / -5.5699 24.4014 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 71 C -5.8000 26.7112 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 72 * -5.4862 20.1184 22.4376 -Andale_Mono.ttf 53 < 21.2279 29.2098 73 ” -5.6130 17.6989 13.2460 -Andale_Mono.ttf 53 < 21.2279 29.2098 74 ? -5.7024 20.5652 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 75 { -5.2230 15.8848 50.4376 -Andale_Mono.ttf 53 < 21.2279 29.2098 76 } -5.5425 15.8848 50.4376 -Andale_Mono.ttf 53 < 21.2279 29.2098 77 , 28.1978 7.2279 13.2460 -Andale_Mono.ttf 53 < 21.2279 29.2098 78 I -5.4557 17.9971 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 79 ° -5.6281 15.7261 15.7261 -Andale_Mono.ttf 53 < 21.2279 29.2098 80 K -5.7097 28.2377 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 81 H -5.5338 23.0431 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 82 q 4.6453 24.9156 42.2069 -Andale_Mono.ttf 53 < 21.2279 29.2098 83 & -5.9902 32.6598 40.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 84 ’ -5.6563 7.2279 13.2460 -Andale_Mono.ttf 53 < 21.2279 29.2098 85 [ -5.5756 11.2250 47.8696 -Andale_Mono.ttf 53 < 21.2279 29.2098 86 - 16.9847 16.9359 4.1457 -Andale_Mono.ttf 53 < 21.2279 29.2098 87 Y -5.4468 29.8264 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 88 Q -6.0864 28.6167 47.7692 -Andale_Mono.ttf 53 < 21.2279 29.2098 89 " -5.1801 14.9239 15.2098 -Andale_Mono.ttf 53 < 21.2279 29.2098 90 ! -5.6726 7.2279 40.7902 -Andale_Mono.ttf 53 < 21.2279 29.2098 91 x 4.8655 26.2739 30.4195 -Andale_Mono.ttf 53 < 21.2279 29.2098 92 ) -5.6745 15.2098 49.6141 -Andale_Mono.ttf 53 < 21.2279 29.2098 93 = 7.0680 27.1098 15.2098 -Andale_Mono.ttf 53 < 21.2279 29.2098 94 + 1.2156 26.9971 26.9971 -Andale_Mono.ttf 53 < 21.2279 29.2098 95 X -5.4601 31.0946 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 96 » 4.4201 25.2250 29.2098 -Andale_Mono.ttf 53 < 21.2279 29.2098 97 ' -5.4749 4.4529 15.2098 -Andale_Mono.ttf 53 < 21.2279 29.2098 98 ¢ -0.8714 23.6474 41.2224 -Andale_Mono.ttf 53 < 21.2279 29.2098 99 Z -5.3753 24.3684 40.5833 -Andale_Mono.ttf 53 < 21.2279 29.2098 100 > -0.2516 21.2279 29.2098 -Andale_Mono.ttf 53 < 21.2279 29.2098 101 ® -5.4925 35.0793 34.5652 -Andale_Mono.ttf 53 < 21.2279 29.2098 102 © -6.0057 35.0793 34.5652 -Andale_Mono.ttf 53 < 21.2279 29.2098 103 ] -5.5036 11.2250 47.8696 -Andale_Mono.ttf 53 < 21.2279 29.2098 104 é -6.6725 25.2250 42.0460 -Andale_Mono.ttf 53 < 21.2279 29.2098 105 z 4.7033 23.1917 30.4195 -Andale_Mono.ttf 53 < 21.2279 29.2098 106 _ 44.1129 35.0793 3.8362 -Andale_Mono.ttf 53 < 21.2279 29.2098 107 ¥ -5.4722 29.8264 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 1 t 1.8230 22.6445 38.7569 -Andale_Mono.ttf 54 4 27.4836 40.5833 2 h 0.0422 23.0431 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 3 a 10.1322 24.2529 30.8333 -Andale_Mono.ttf 54 4 27.4836 40.5833 4 n 10.1296 23.0431 30.6264 -Andale_Mono.ttf 54 4 27.4836 40.5833 5 P -0.0000 22.8055 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 6 o 9.8132 26.7880 30.8333 -Andale_Mono.ttf 54 4 27.4836 40.5833 7 e 9.9569 25.2250 30.8333 -Andale_Mono.ttf 54 4 27.4836 40.5833 8 : 10.2337 7.2279 30.8333 -Andale_Mono.ttf 54 4 27.4836 40.5833 9 r 10.1073 20.4043 30.6264 -Andale_Mono.ttf 54 4 27.4836 40.5833 10 l -0.0415 20.4167 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 11 i -0.3159 13.3043 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 12 1 -0.2083 21.0793 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 13 | 0.0784 4.1457 51.1917 -Andale_Mono.ttf 54 4 27.4836 40.5833 14 N -0.0358 24.3684 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 15 f -0.3110 22.7449 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 16 g 9.7134 26.2862 42.2069 -Andale_Mono.ttf 54 4 27.4836 40.5833 17 d 0.0730 24.9156 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 18 W 0.1601 32.6598 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 19 s 10.3199 22.4960 30.8333 -Andale_Mono.ttf 54 4 27.4836 40.5833 20 c 9.9013 24.2529 30.8333 -Andale_Mono.ttf 54 4 27.4836 40.5833 21 u 10.2190 23.0431 30.6264 -Andale_Mono.ttf 54 4 27.4836 40.5833 22 3 -0.3952 22.4376 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 23 ~ 21.0722 31.2431 8.4376 -Andale_Mono.ttf 54 4 27.4836 40.5833 24 # 0.2994 29.7261 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 25 O -0.1879 27.4069 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 26 ` -1.3067 12.2739 8.6445 -Andale_Mono.ttf 54 4 27.4836 40.5833 27 @ -0.4835 29.8848 45.6293 -Andale_Mono.ttf 54 4 27.4836 40.5833 28 F -0.1924 21.8334 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 29 S -0.2858 22.6445 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 30 p 10.0423 24.9156 42.2069 -Andale_Mono.ttf 54 4 27.4836 40.5833 31 “ -0.1034 17.6989 13.2460 -Andale_Mono.ttf 54 4 27.4836 40.5833 32 % -0.3207 32.6598 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 33 £ -0.2305 26.7902 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 34 . 33.3686 7.2279 7.2279 -Andale_Mono.ttf 54 4 27.4836 40.5833 35 2 -0.3218 21.9695 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 36 5 -0.2622 22.1304 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 37 m 9.9086 27.6138 30.6264 -Andale_Mono.ttf 54 4 27.4836 40.5833 38 V -0.0854 32.2460 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 39 6 -0.1715 25.4319 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 40 w 10.0408 29.5170 30.4195 -Andale_Mono.ttf 54 4 27.4836 40.5833 41 T -0.0142 29.4710 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 42 M 0.2772 25.2250 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 43 G -0.1247 26.5833 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 44 b 0.0539 24.9156 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 45 9 -0.2207 25.2250 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 46 ; 9.6269 7.2279 36.8514 -Andale_Mono.ttf 54 4 27.4836 40.5833 47 D -0.0571 25.2250 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 48 L 0.2140 21.8334 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 49 y 10.1784 26.6417 42.0000 -Andale_Mono.ttf 54 4 27.4836 40.5833 50 ‘ -0.0660 7.2279 13.2460 -Andale_Mono.ttf 54 4 27.4836 40.5833 51 \ -0.3890 24.4014 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 52 R -0.2967 27.3351 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 53 < 5.1787 21.2279 29.2098 -Andale_Mono.ttf 54 4 27.4836 40.5833 54 4 0.0500 27.4836 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 55 8 -0.3567 25.7598 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 56 0 -0.2975 26.7880 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 57 A 0.0536 32.2460 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 58 E 0.0822 21.0793 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 59 B 0.0584 25.0765 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 60 v 10.0164 26.4348 30.4195 -Andale_Mono.ttf 54 4 27.4836 40.5833 61 k 0.0000 26.1253 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 62 J -0.1846 19.6627 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 63 U -0.3952 23.0431 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 64 j 0.0914 15.7239 52.3707 -Andale_Mono.ttf 54 4 27.4836 40.5833 65 ( 0.1550 15.2098 49.6141 -Andale_Mono.ttf 54 4 27.4836 40.5833 66 7 -0.0706 23.7080 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 67 § 0.1094 23.8543 52.5776 -Andale_Mono.ttf 54 4 27.4836 40.5833 68 $ -2.7819 22.6445 47.0152 -Andale_Mono.ttf 54 4 27.4836 40.5833 69 € -0.0167 30.5474 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 70 / -0.0673 24.4014 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 71 C -0.1510 26.7112 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 72 * 0.0175 20.1184 22.4376 -Andale_Mono.ttf 54 4 27.4836 40.5833 73 ” -0.5389 17.6989 13.2460 -Andale_Mono.ttf 54 4 27.4836 40.5833 74 ? -0.1373 20.5652 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 75 { 0.0910 15.8848 50.4376 -Andale_Mono.ttf 54 4 27.4836 40.5833 76 } -0.0577 15.8848 50.4376 -Andale_Mono.ttf 54 4 27.4836 40.5833 77 , 33.5369 7.2279 13.2460 -Andale_Mono.ttf 54 4 27.4836 40.5833 78 I -0.0577 17.9971 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 79 ° 0.0422 15.7261 15.7261 -Andale_Mono.ttf 54 4 27.4836 40.5833 80 K -0.2824 28.2377 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 81 H -0.1945 23.0431 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 82 q 10.3444 24.9156 42.2069 -Andale_Mono.ttf 54 4 27.4836 40.5833 83 & -0.3774 32.6598 40.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 84 ’ -0.3801 7.2279 13.2460 -Andale_Mono.ttf 54 4 27.4836 40.5833 85 [ -0.0779 11.2250 47.8696 -Andale_Mono.ttf 54 4 27.4836 40.5833 86 - 22.4309 16.9359 4.1457 -Andale_Mono.ttf 54 4 27.4836 40.5833 87 Y -0.1055 29.8264 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 88 Q 0.0266 28.6167 47.7692 -Andale_Mono.ttf 54 4 27.4836 40.5833 89 " 0.2406 14.9239 15.2098 -Andale_Mono.ttf 54 4 27.4836 40.5833 90 ! -0.0711 7.2279 40.7902 -Andale_Mono.ttf 54 4 27.4836 40.5833 91 x 10.1182 26.2739 30.4195 -Andale_Mono.ttf 54 4 27.4836 40.5833 92 ) 0.0950 15.2098 49.6141 -Andale_Mono.ttf 54 4 27.4836 40.5833 93 = 12.3824 27.1098 15.2098 -Andale_Mono.ttf 54 4 27.4836 40.5833 94 + 6.4925 26.9971 26.9971 -Andale_Mono.ttf 54 4 27.4836 40.5833 95 X 0.1418 31.0946 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 96 » 10.2776 25.2250 29.2098 -Andale_Mono.ttf 54 4 27.4836 40.5833 97 ' -0.1516 4.4529 15.2098 -Andale_Mono.ttf 54 4 27.4836 40.5833 98 ¢ 4.8269 23.6474 41.2224 -Andale_Mono.ttf 54 4 27.4836 40.5833 99 Z -0.3257 24.3684 40.5833 -Andale_Mono.ttf 54 4 27.4836 40.5833 100 > 5.7438 21.2279 29.2098 -Andale_Mono.ttf 54 4 27.4836 40.5833 101 ® -0.2207 35.0793 34.5652 -Andale_Mono.ttf 54 4 27.4836 40.5833 102 © -0.4310 35.0793 34.5652 -Andale_Mono.ttf 54 4 27.4836 40.5833 103 ] -0.2193 11.2250 47.8696 -Andale_Mono.ttf 54 4 27.4836 40.5833 104 é -1.2531 25.2250 42.0460 -Andale_Mono.ttf 54 4 27.4836 40.5833 105 z 9.9338 23.1917 30.4195 -Andale_Mono.ttf 54 4 27.4836 40.5833 106 _ 49.2586 35.0793 3.8362 -Andale_Mono.ttf 54 4 27.4836 40.5833 107 ¥ -0.0559 29.8264 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 1 t 1.9548 22.6445 38.7569 -Andale_Mono.ttf 55 8 25.7598 40.9971 2 h 0.3733 23.0431 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 3 a 9.9709 24.2529 30.8333 -Andale_Mono.ttf 55 8 25.7598 40.9971 4 n 9.8739 23.0431 30.6264 -Andale_Mono.ttf 55 8 25.7598 40.9971 5 P -0.0083 22.8055 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 6 o 9.9230 26.7880 30.8333 -Andale_Mono.ttf 55 8 25.7598 40.9971 7 e 10.2155 25.2250 30.8333 -Andale_Mono.ttf 55 8 25.7598 40.9971 8 : 9.9283 7.2279 30.8333 -Andale_Mono.ttf 55 8 25.7598 40.9971 9 r 10.0991 20.4043 30.6264 -Andale_Mono.ttf 55 8 25.7598 40.9971 10 l 0.1184 20.4167 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 11 i -0.1535 13.3043 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 12 1 -0.1557 21.0793 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 13 | -0.0597 4.1457 51.1917 -Andale_Mono.ttf 55 8 25.7598 40.9971 14 N 0.3040 24.3684 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 15 f 0.1194 22.7449 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 16 g 10.2385 26.2862 42.2069 -Andale_Mono.ttf 55 8 25.7598 40.9971 17 d 0.4103 24.9156 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 18 W 0.2874 32.6598 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 19 s 10.0945 22.4960 30.8333 -Andale_Mono.ttf 55 8 25.7598 40.9971 20 c 10.0239 24.2529 30.8333 -Andale_Mono.ttf 55 8 25.7598 40.9971 21 u 10.4994 23.0431 30.6264 -Andale_Mono.ttf 55 8 25.7598 40.9971 22 3 0.0077 22.4376 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 23 ~ 21.0268 31.2431 8.4376 -Andale_Mono.ttf 55 8 25.7598 40.9971 24 # 0.2239 29.7261 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 25 O -0.2129 27.4069 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 26 ` -0.8412 12.2739 8.6445 -Andale_Mono.ttf 55 8 25.7598 40.9971 27 @ 0.1710 29.8848 45.6293 -Andale_Mono.ttf 55 8 25.7598 40.9971 28 F 0.2126 21.8334 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 29 S -0.1534 22.6445 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 30 p 10.2922 24.9156 42.2069 -Andale_Mono.ttf 55 8 25.7598 40.9971 31 “ -0.0879 17.6989 13.2460 -Andale_Mono.ttf 55 8 25.7598 40.9971 32 % -0.2734 32.6598 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 33 £ 0.0408 26.7902 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 34 . 33.7649 7.2279 7.2279 -Andale_Mono.ttf 55 8 25.7598 40.9971 35 2 0.0209 21.9695 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 36 5 -0.0454 22.1304 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 37 m 10.1178 27.6138 30.6264 -Andale_Mono.ttf 55 8 25.7598 40.9971 38 V 0.1322 32.2460 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 39 6 -0.1193 25.4319 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 40 w 10.2207 29.5170 30.4195 -Andale_Mono.ttf 55 8 25.7598 40.9971 41 T 0.3406 29.4710 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 42 M 0.5358 25.2250 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 43 G -0.0504 26.5833 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 44 b 0.0820 24.9156 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 45 9 -0.2335 25.2250 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 46 ; 9.7598 7.2279 36.8514 -Andale_Mono.ttf 55 8 25.7598 40.9971 47 D 0.3531 25.2250 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 48 L 0.2109 21.8334 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 49 y 10.4686 26.6417 42.0000 -Andale_Mono.ttf 55 8 25.7598 40.9971 50 ‘ -0.2138 7.2279 13.2460 -Andale_Mono.ttf 55 8 25.7598 40.9971 51 \ -0.1149 24.4014 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 52 R -0.0172 27.3351 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 53 < 5.9382 21.2279 29.2098 -Andale_Mono.ttf 55 8 25.7598 40.9971 54 4 0.3044 27.4836 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 55 8 0.1266 25.7598 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 56 0 -0.0443 26.7880 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 57 A 0.0981 32.2460 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 58 E 0.2055 21.0793 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 59 B 0.2973 25.0765 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 60 v 10.2897 26.4348 30.4195 -Andale_Mono.ttf 55 8 25.7598 40.9971 61 k 0.0897 26.1253 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 62 J 0.3684 19.6627 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 63 U 0.3506 23.0431 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 64 j 0.2293 15.7239 52.3707 -Andale_Mono.ttf 55 8 25.7598 40.9971 65 ( 0.0207 15.2098 49.6141 -Andale_Mono.ttf 55 8 25.7598 40.9971 66 7 0.1322 23.7080 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 67 § -0.1032 23.8543 52.5776 -Andale_Mono.ttf 55 8 25.7598 40.9971 68 $ -2.7267 22.6445 47.0152 -Andale_Mono.ttf 55 8 25.7598 40.9971 69 € -0.3289 30.5474 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 70 / -0.0636 24.4014 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 71 C -0.0335 26.7112 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 72 * 0.1698 20.1184 22.4376 -Andale_Mono.ttf 55 8 25.7598 40.9971 73 ” -0.0164 17.6989 13.2460 -Andale_Mono.ttf 55 8 25.7598 40.9971 74 ? 0.1011 20.5652 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 75 { 0.1898 15.8848 50.4376 -Andale_Mono.ttf 55 8 25.7598 40.9971 76 } 0.5872 15.8848 50.4376 -Andale_Mono.ttf 55 8 25.7598 40.9971 77 , 33.8570 7.2279 13.2460 -Andale_Mono.ttf 55 8 25.7598 40.9971 78 I 0.1260 17.9971 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 79 ° -0.0672 15.7261 15.7261 -Andale_Mono.ttf 55 8 25.7598 40.9971 80 K 0.3376 28.2377 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 81 H 0.1406 23.0431 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 82 q 10.1230 24.9156 42.2069 -Andale_Mono.ttf 55 8 25.7598 40.9971 83 & -0.0537 32.6598 40.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 84 ’ -0.0546 7.2279 13.2460 -Andale_Mono.ttf 55 8 25.7598 40.9971 85 [ 0.0650 11.2250 47.8696 -Andale_Mono.ttf 55 8 25.7598 40.9971 86 - 22.7049 16.9359 4.1457 -Andale_Mono.ttf 55 8 25.7598 40.9971 87 Y 0.1586 29.8264 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 88 Q 0.0494 28.6167 47.7692 -Andale_Mono.ttf 55 8 25.7598 40.9971 89 " 0.1097 14.9239 15.2098 -Andale_Mono.ttf 55 8 25.7598 40.9971 90 ! 0.2820 7.2279 40.7902 -Andale_Mono.ttf 55 8 25.7598 40.9971 91 x 10.0914 26.2739 30.4195 -Andale_Mono.ttf 55 8 25.7598 40.9971 92 ) -0.0816 15.2098 49.6141 -Andale_Mono.ttf 55 8 25.7598 40.9971 93 = 12.8417 27.1098 15.2098 -Andale_Mono.ttf 55 8 25.7598 40.9971 94 + 6.8248 26.9971 26.9971 -Andale_Mono.ttf 55 8 25.7598 40.9971 95 X 0.1264 31.0946 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 96 » 10.1042 25.2250 29.2098 -Andale_Mono.ttf 55 8 25.7598 40.9971 97 ' 0.1203 4.4529 15.2098 -Andale_Mono.ttf 55 8 25.7598 40.9971 98 ¢ 5.1558 23.6474 41.2224 -Andale_Mono.ttf 55 8 25.7598 40.9971 99 Z -0.0186 24.3684 40.5833 -Andale_Mono.ttf 55 8 25.7598 40.9971 100 > 5.5222 21.2279 29.2098 -Andale_Mono.ttf 55 8 25.7598 40.9971 101 ® -0.1217 35.0793 34.5652 -Andale_Mono.ttf 55 8 25.7598 40.9971 102 © -0.0644 35.0793 34.5652 -Andale_Mono.ttf 55 8 25.7598 40.9971 103 ] 0.1925 11.2250 47.8696 -Andale_Mono.ttf 55 8 25.7598 40.9971 104 é -1.1607 25.2250 42.0460 -Andale_Mono.ttf 55 8 25.7598 40.9971 105 z 10.2312 23.1917 30.4195 -Andale_Mono.ttf 55 8 25.7598 40.9971 106 _ 49.8699 35.0793 3.8362 -Andale_Mono.ttf 55 8 25.7598 40.9971 107 ¥ 0.0877 29.8264 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 1 t 2.3110 22.6445 38.7569 -Andale_Mono.ttf 56 0 26.7880 40.9971 2 h 0.2069 23.0431 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 3 a 10.0596 24.2529 30.8333 -Andale_Mono.ttf 56 0 26.7880 40.9971 4 n 10.3789 23.0431 30.6264 -Andale_Mono.ttf 56 0 26.7880 40.9971 5 P 0.2337 22.8055 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 6 o 10.3381 26.7880 30.8333 -Andale_Mono.ttf 56 0 26.7880 40.9971 7 e 10.2598 25.2250 30.8333 -Andale_Mono.ttf 56 0 26.7880 40.9971 8 : 10.0716 7.2279 30.8333 -Andale_Mono.ttf 56 0 26.7880 40.9971 9 r 10.0810 20.4043 30.6264 -Andale_Mono.ttf 56 0 26.7880 40.9971 10 l 0.4511 20.4167 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 11 i 0.0793 13.3043 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 12 1 -0.1603 21.0793 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 13 | -0.0856 4.1457 51.1917 -Andale_Mono.ttf 56 0 26.7880 40.9971 14 N 0.3836 24.3684 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 15 f 0.3563 22.7449 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 16 g 10.1463 26.2862 42.2069 -Andale_Mono.ttf 56 0 26.7880 40.9971 17 d 0.1215 24.9156 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 18 W 0.3008 32.6598 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 19 s 10.1936 22.4960 30.8333 -Andale_Mono.ttf 56 0 26.7880 40.9971 20 c 10.3785 24.2529 30.8333 -Andale_Mono.ttf 56 0 26.7880 40.9971 21 u 10.3804 23.0431 30.6264 -Andale_Mono.ttf 56 0 26.7880 40.9971 22 3 -0.1879 22.4376 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 23 ~ 21.0988 31.2431 8.4376 -Andale_Mono.ttf 56 0 26.7880 40.9971 24 # 0.0481 29.7261 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 25 O -0.1713 27.4069 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 26 ` -1.0559 12.2739 8.6445 -Andale_Mono.ttf 56 0 26.7880 40.9971 27 @ 0.1996 29.8848 45.6293 -Andale_Mono.ttf 56 0 26.7880 40.9971 28 F 0.3207 21.8334 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 29 S -0.0381 22.6445 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 30 p 10.3709 24.9156 42.2069 -Andale_Mono.ttf 56 0 26.7880 40.9971 31 “ 0.3772 17.6989 13.2460 -Andale_Mono.ttf 56 0 26.7880 40.9971 32 % 0.0139 32.6598 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 33 £ -0.0228 26.7902 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 34 . 33.9407 7.2279 7.2279 -Andale_Mono.ttf 56 0 26.7880 40.9971 35 2 -0.2697 21.9695 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 36 5 0.4623 22.1304 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 37 m 10.0341 27.6138 30.6264 -Andale_Mono.ttf 56 0 26.7880 40.9971 38 V -0.0326 32.2460 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 39 6 -0.1887 25.4319 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 40 w 10.7358 29.5170 30.4195 -Andale_Mono.ttf 56 0 26.7880 40.9971 41 T 0.2812 29.4710 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 42 M 0.1948 25.2250 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 43 G 0.1611 26.5833 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 44 b 0.1630 24.9156 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 45 9 -0.0563 25.2250 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 46 ; 10.0716 7.2279 36.8514 -Andale_Mono.ttf 56 0 26.7880 40.9971 47 D 0.3008 25.2250 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 48 L 0.2508 21.8334 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 49 y 10.3168 26.6417 42.0000 -Andale_Mono.ttf 56 0 26.7880 40.9971 50 ‘ -0.1669 7.2279 13.2460 -Andale_Mono.ttf 56 0 26.7880 40.9971 51 \ 0.0927 24.4014 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 52 R 0.2596 27.3351 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 53 < 6.0335 21.2279 29.2098 -Andale_Mono.ttf 56 0 26.7880 40.9971 54 4 -0.0316 27.4836 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 55 8 -0.0345 25.7598 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 56 0 -0.0944 26.7880 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 57 A 0.2035 32.2460 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 58 E 0.1986 21.0793 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 59 B 0.1015 25.0765 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 60 v 10.4327 26.4348 30.4195 -Andale_Mono.ttf 56 0 26.7880 40.9971 61 k 0.0967 26.1253 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 62 J 0.1241 19.6627 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 63 U 0.4542 23.0431 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 64 j -0.0939 15.7239 52.3707 -Andale_Mono.ttf 56 0 26.7880 40.9971 65 ( 0.1590 15.2098 49.6141 -Andale_Mono.ttf 56 0 26.7880 40.9971 66 7 0.0431 23.7080 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 67 § -0.0182 23.8543 52.5776 -Andale_Mono.ttf 56 0 26.7880 40.9971 68 $ -2.7919 22.6445 47.0152 -Andale_Mono.ttf 56 0 26.7880 40.9971 69 € 0.1695 30.5474 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 70 / 0.2496 24.4014 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 71 C -0.0220 26.7112 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 72 * 0.0405 20.1184 22.4376 -Andale_Mono.ttf 56 0 26.7880 40.9971 73 ” -0.0699 17.6989 13.2460 -Andale_Mono.ttf 56 0 26.7880 40.9971 74 ? 0.1939 20.5652 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 75 { 0.0512 15.8848 50.4376 -Andale_Mono.ttf 56 0 26.7880 40.9971 76 } -0.0326 15.8848 50.4376 -Andale_Mono.ttf 56 0 26.7880 40.9971 77 , 33.6172 7.2279 13.2460 -Andale_Mono.ttf 56 0 26.7880 40.9971 78 I 0.0870 17.9971 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 79 ° 0.0305 15.7261 15.7261 -Andale_Mono.ttf 56 0 26.7880 40.9971 80 K 0.1264 28.2377 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 81 H 0.2052 23.0431 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 82 q 10.1414 24.9156 42.2069 -Andale_Mono.ttf 56 0 26.7880 40.9971 83 & 0.1388 32.6598 40.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 84 ’ -0.0065 7.2279 13.2460 -Andale_Mono.ttf 56 0 26.7880 40.9971 85 [ 0.4672 11.2250 47.8696 -Andale_Mono.ttf 56 0 26.7880 40.9971 86 - 22.3691 16.9359 4.1457 -Andale_Mono.ttf 56 0 26.7880 40.9971 87 Y 0.2333 29.8264 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 88 Q 0.1503 28.6167 47.7692 -Andale_Mono.ttf 56 0 26.7880 40.9971 89 " 0.2261 14.9239 15.2098 -Andale_Mono.ttf 56 0 26.7880 40.9971 90 ! 0.2556 7.2279 40.7902 -Andale_Mono.ttf 56 0 26.7880 40.9971 91 x 10.3935 26.2739 30.4195 -Andale_Mono.ttf 56 0 26.7880 40.9971 92 ) 0.2931 15.2098 49.6141 -Andale_Mono.ttf 56 0 26.7880 40.9971 93 = 12.8009 27.1098 15.2098 -Andale_Mono.ttf 56 0 26.7880 40.9971 94 + 7.0508 26.9971 26.9971 -Andale_Mono.ttf 56 0 26.7880 40.9971 95 X 0.0356 31.0946 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 96 » 10.2385 25.2250 29.2098 -Andale_Mono.ttf 56 0 26.7880 40.9971 97 ' 0.0086 4.4529 15.2098 -Andale_Mono.ttf 56 0 26.7880 40.9971 98 ¢ 4.9239 23.6474 41.2224 -Andale_Mono.ttf 56 0 26.7880 40.9971 99 Z 0.1805 24.3684 40.5833 -Andale_Mono.ttf 56 0 26.7880 40.9971 100 > 5.5256 21.2279 29.2098 -Andale_Mono.ttf 56 0 26.7880 40.9971 101 ® 0.0000 35.0793 34.5652 -Andale_Mono.ttf 56 0 26.7880 40.9971 102 © 0.0024 35.0793 34.5652 -Andale_Mono.ttf 56 0 26.7880 40.9971 103 ] 0.2647 11.2250 47.8696 -Andale_Mono.ttf 56 0 26.7880 40.9971 104 é -1.3048 25.2250 42.0460 -Andale_Mono.ttf 56 0 26.7880 40.9971 105 z 10.2889 23.1917 30.4195 -Andale_Mono.ttf 56 0 26.7880 40.9971 106 _ 49.6108 35.0793 3.8362 -Andale_Mono.ttf 56 0 26.7880 40.9971 107 ¥ 0.0735 29.8264 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 1 t 1.8701 22.6445 38.7569 -Andale_Mono.ttf 57 A 32.2460 40.5833 2 h 0.1422 23.0431 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 3 a 10.0527 24.2529 30.8333 -Andale_Mono.ttf 57 A 32.2460 40.5833 4 n 9.7586 23.0431 30.6264 -Andale_Mono.ttf 57 A 32.2460 40.5833 5 P 0.1473 22.8055 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 6 o 9.9207 26.7880 30.8333 -Andale_Mono.ttf 57 A 32.2460 40.5833 7 e 9.7853 25.2250 30.8333 -Andale_Mono.ttf 57 A 32.2460 40.5833 8 : 9.8339 7.2279 30.8333 -Andale_Mono.ttf 57 A 32.2460 40.5833 9 r 9.9151 20.4043 30.6264 -Andale_Mono.ttf 57 A 32.2460 40.5833 10 l 0.0425 20.4167 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 11 i -0.0856 13.3043 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 12 1 -0.2726 21.0793 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 13 | -0.0023 4.1457 51.1917 -Andale_Mono.ttf 57 A 32.2460 40.5833 14 N -0.0004 24.3684 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 15 f -0.2439 22.7449 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 16 g 9.5341 26.2862 42.2069 -Andale_Mono.ttf 57 A 32.2460 40.5833 17 d 0.0929 24.9156 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 18 W -0.0462 32.6598 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 19 s 10.1069 22.4960 30.8333 -Andale_Mono.ttf 57 A 32.2460 40.5833 20 c 9.4366 24.2529 30.8333 -Andale_Mono.ttf 57 A 32.2460 40.5833 21 u 10.1865 23.0431 30.6264 -Andale_Mono.ttf 57 A 32.2460 40.5833 22 3 -0.3255 22.4376 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 23 ~ 21.0678 31.2431 8.4376 -Andale_Mono.ttf 57 A 32.2460 40.5833 24 # 0.1749 29.7261 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 25 O -0.3280 27.4069 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 26 ` -1.3632 12.2739 8.6445 -Andale_Mono.ttf 57 A 32.2460 40.5833 27 @ 0.0083 29.8848 45.6293 -Andale_Mono.ttf 57 A 32.2460 40.5833 28 F 0.0527 21.8334 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 29 S -0.0521 22.6445 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 30 p 10.0454 24.9156 42.2069 -Andale_Mono.ttf 57 A 32.2460 40.5833 31 “ -0.1708 17.6989 13.2460 -Andale_Mono.ttf 57 A 32.2460 40.5833 32 % -0.2440 32.6598 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 33 £ -0.1950 26.7902 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 34 . 33.4373 7.2279 7.2279 -Andale_Mono.ttf 57 A 32.2460 40.5833 35 2 -0.3663 21.9695 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 36 5 -0.2653 22.1304 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 37 m 10.0750 27.6138 30.6264 -Andale_Mono.ttf 57 A 32.2460 40.5833 38 V -0.1458 32.2460 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 39 6 0.1734 25.4319 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 40 w 10.2358 29.5170 30.4195 -Andale_Mono.ttf 57 A 32.2460 40.5833 41 T -0.0452 29.4710 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 42 M 0.1664 25.2250 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 43 G -0.0950 26.5833 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 44 b 0.1350 24.9156 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 45 9 -0.4776 25.2250 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 46 ; 9.9161 7.2279 36.8514 -Andale_Mono.ttf 57 A 32.2460 40.5833 47 D 0.1552 25.2250 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 48 L 0.4224 21.8334 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 49 y 10.7374 26.6417 42.0000 -Andale_Mono.ttf 57 A 32.2460 40.5833 50 ‘ -0.0621 7.2279 13.2460 -Andale_Mono.ttf 57 A 32.2460 40.5833 51 \ -0.0156 24.4014 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 52 R -0.0100 27.3351 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 53 < 5.4588 21.2279 29.2098 -Andale_Mono.ttf 57 A 32.2460 40.5833 54 4 -0.2747 27.4836 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 55 8 -0.1506 25.7598 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 56 0 0.0601 26.7880 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 57 A -0.0243 32.2460 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 58 E -0.1123 21.0793 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 59 B 0.0670 25.0765 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 60 v 9.9983 26.4348 30.4195 -Andale_Mono.ttf 57 A 32.2460 40.5833 61 k 0.1387 26.1253 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 62 J 0.3597 19.6627 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 63 U -0.0912 23.0431 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 64 j 0.1274 15.7239 52.3707 -Andale_Mono.ttf 57 A 32.2460 40.5833 65 ( -0.3044 15.2098 49.6141 -Andale_Mono.ttf 57 A 32.2460 40.5833 66 7 0.0895 23.7080 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 67 § -0.2149 23.8543 52.5776 -Andale_Mono.ttf 57 A 32.2460 40.5833 68 $ -2.7917 22.6445 47.0152 -Andale_Mono.ttf 57 A 32.2460 40.5833 69 € -0.2106 30.5474 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 70 / -0.2186 24.4014 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 71 C -0.3513 26.7112 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 72 * -0.0433 20.1184 22.4376 -Andale_Mono.ttf 57 A 32.2460 40.5833 73 ” -0.3651 17.6989 13.2460 -Andale_Mono.ttf 57 A 32.2460 40.5833 74 ? 0.0370 20.5652 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 75 { 0.3588 15.8848 50.4376 -Andale_Mono.ttf 57 A 32.2460 40.5833 76 } 0.2422 15.8848 50.4376 -Andale_Mono.ttf 57 A 32.2460 40.5833 77 , 33.4458 7.2279 13.2460 -Andale_Mono.ttf 57 A 32.2460 40.5833 78 I 0.3075 17.9971 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 79 ° -0.1040 15.7261 15.7261 -Andale_Mono.ttf 57 A 32.2460 40.5833 80 K 0.2603 28.2377 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 81 H -0.0828 23.0431 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 82 q 10.0047 24.9156 42.2069 -Andale_Mono.ttf 57 A 32.2460 40.5833 83 & -0.0660 32.6598 40.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 84 ’ -0.5180 7.2279 13.2460 -Andale_Mono.ttf 57 A 32.2460 40.5833 85 [ -0.0249 11.2250 47.8696 -Andale_Mono.ttf 57 A 32.2460 40.5833 86 - 22.5501 16.9359 4.1457 -Andale_Mono.ttf 57 A 32.2460 40.5833 87 Y 0.0774 29.8264 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 88 Q -0.2186 28.6167 47.7692 -Andale_Mono.ttf 57 A 32.2460 40.5833 89 " -0.1113 14.9239 15.2098 -Andale_Mono.ttf 57 A 32.2460 40.5833 90 ! 0.1484 7.2279 40.7902 -Andale_Mono.ttf 57 A 32.2460 40.5833 91 x 10.1138 26.2739 30.4195 -Andale_Mono.ttf 57 A 32.2460 40.5833 92 ) -0.0170 15.2098 49.6141 -Andale_Mono.ttf 57 A 32.2460 40.5833 93 = 12.8218 27.1098 15.2098 -Andale_Mono.ttf 57 A 32.2460 40.5833 94 + 6.4248 26.9971 26.9971 -Andale_Mono.ttf 57 A 32.2460 40.5833 95 X 0.0734 31.0946 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 96 » 9.7680 25.2250 29.2098 -Andale_Mono.ttf 57 A 32.2460 40.5833 97 ' -0.0626 4.4529 15.2098 -Andale_Mono.ttf 57 A 32.2460 40.5833 98 ¢ 4.9472 23.6474 41.2224 -Andale_Mono.ttf 57 A 32.2460 40.5833 99 Z 0.1956 24.3684 40.5833 -Andale_Mono.ttf 57 A 32.2460 40.5833 100 > 5.3184 21.2279 29.2098 -Andale_Mono.ttf 57 A 32.2460 40.5833 101 ® -0.1220 35.0793 34.5652 -Andale_Mono.ttf 57 A 32.2460 40.5833 102 © -0.4534 35.0793 34.5652 -Andale_Mono.ttf 57 A 32.2460 40.5833 103 ] -0.1813 11.2250 47.8696 -Andale_Mono.ttf 57 A 32.2460 40.5833 104 é -1.5797 25.2250 42.0460 -Andale_Mono.ttf 57 A 32.2460 40.5833 105 z 10.3302 23.1917 30.4195 -Andale_Mono.ttf 57 A 32.2460 40.5833 106 _ 49.2368 35.0793 3.8362 -Andale_Mono.ttf 57 A 32.2460 40.5833 107 ¥ 0.0968 29.8264 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 1 t 2.0471 22.6445 38.7569 -Andale_Mono.ttf 58 E 21.0793 40.5833 2 h 0.0446 23.0431 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 3 a 10.0460 24.2529 30.8333 -Andale_Mono.ttf 58 E 21.0793 40.5833 4 n 10.0454 23.0431 30.6264 -Andale_Mono.ttf 58 E 21.0793 40.5833 5 P -0.2326 22.8055 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 6 o 10.1669 26.7880 30.8333 -Andale_Mono.ttf 58 E 21.0793 40.5833 7 e 9.7990 25.2250 30.8333 -Andale_Mono.ttf 58 E 21.0793 40.5833 8 : 10.2437 7.2279 30.8333 -Andale_Mono.ttf 58 E 21.0793 40.5833 9 r 10.1032 20.4043 30.6264 -Andale_Mono.ttf 58 E 21.0793 40.5833 10 l -0.0115 20.4167 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 11 i -0.2816 13.3043 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 12 1 -0.1259 21.0793 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 13 | 0.0545 4.1457 51.1917 -Andale_Mono.ttf 58 E 21.0793 40.5833 14 N 0.0672 24.3684 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 15 f 0.0264 22.7449 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 16 g 9.7824 26.2862 42.2069 -Andale_Mono.ttf 58 E 21.0793 40.5833 17 d 0.3090 24.9156 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 18 W -0.0111 32.6598 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 19 s 9.8885 22.4960 30.8333 -Andale_Mono.ttf 58 E 21.0793 40.5833 20 c 10.0170 24.2529 30.8333 -Andale_Mono.ttf 58 E 21.0793 40.5833 21 u 10.2121 23.0431 30.6264 -Andale_Mono.ttf 58 E 21.0793 40.5833 22 3 -0.4427 22.4376 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 23 ~ 21.1293 31.2431 8.4376 -Andale_Mono.ttf 58 E 21.0793 40.5833 24 # 0.1870 29.7261 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 25 O -0.3764 27.4069 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 26 ` -1.1599 12.2739 8.6445 -Andale_Mono.ttf 58 E 21.0793 40.5833 27 @ 0.0297 29.8848 45.6293 -Andale_Mono.ttf 58 E 21.0793 40.5833 28 F 0.0040 21.8334 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 29 S -0.0741 22.6445 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 30 p 9.9626 24.9156 42.2069 -Andale_Mono.ttf 58 E 21.0793 40.5833 31 “ 0.1872 17.6989 13.2460 -Andale_Mono.ttf 58 E 21.0793 40.5833 32 % 0.0370 32.6598 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 33 £ -0.2816 26.7902 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 34 . 33.4970 7.2279 7.2279 -Andale_Mono.ttf 58 E 21.0793 40.5833 35 2 -0.3055 21.9695 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 36 5 -0.0021 22.1304 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 37 m 10.1243 27.6138 30.6264 -Andale_Mono.ttf 58 E 21.0793 40.5833 38 V -0.0460 32.2460 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 39 6 -0.3563 25.4319 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 40 w 10.3481 29.5170 30.4195 -Andale_Mono.ttf 58 E 21.0793 40.5833 41 T -0.0616 29.4710 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 42 M 0.0014 25.2250 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 43 G -0.0586 26.5833 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 44 b -0.0722 24.9156 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 45 9 -0.3241 25.2250 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 46 ; 9.8853 7.2279 36.8514 -Andale_Mono.ttf 58 E 21.0793 40.5833 47 D -0.1973 25.2250 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 48 L 0.2348 21.8334 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 49 y 10.4712 26.6417 42.0000 -Andale_Mono.ttf 58 E 21.0793 40.5833 50 ‘ -0.2696 7.2279 13.2460 -Andale_Mono.ttf 58 E 21.0793 40.5833 51 \ -0.2829 24.4014 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 52 R -0.2506 27.3351 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 53 < 5.2720 21.2279 29.2098 -Andale_Mono.ttf 58 E 21.0793 40.5833 54 4 0.0361 27.4836 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 55 8 -0.0405 25.7598 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 56 0 -0.0958 26.7880 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 57 A 0.0912 32.2460 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 58 E -0.0414 21.0793 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 59 B 0.1732 25.0765 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 60 v 10.2009 26.4348 30.4195 -Andale_Mono.ttf 58 E 21.0793 40.5833 61 k -0.4147 26.1253 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 62 J -0.1446 19.6627 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 63 U -0.0985 23.0431 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 64 j -0.1586 15.7239 52.3707 -Andale_Mono.ttf 58 E 21.0793 40.5833 65 ( -0.3281 15.2098 49.6141 -Andale_Mono.ttf 58 E 21.0793 40.5833 66 7 0.1467 23.7080 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 67 § 0.0379 23.8543 52.5776 -Andale_Mono.ttf 58 E 21.0793 40.5833 68 $ -3.0629 22.6445 47.0152 -Andale_Mono.ttf 58 E 21.0793 40.5833 69 € -0.3299 30.5474 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 70 / -0.3776 24.4014 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 71 C -0.6136 26.7112 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 72 * -0.0877 20.1184 22.4376 -Andale_Mono.ttf 58 E 21.0793 40.5833 73 ” -0.4039 17.6989 13.2460 -Andale_Mono.ttf 58 E 21.0793 40.5833 74 ? -0.3406 20.5652 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 75 { 0.1033 15.8848 50.4376 -Andale_Mono.ttf 58 E 21.0793 40.5833 76 } -0.0922 15.8848 50.4376 -Andale_Mono.ttf 58 E 21.0793 40.5833 77 , 33.4066 7.2279 13.2460 -Andale_Mono.ttf 58 E 21.0793 40.5833 78 I -0.0111 17.9971 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 79 ° -0.2333 15.7261 15.7261 -Andale_Mono.ttf 58 E 21.0793 40.5833 80 K 0.0223 28.2377 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 81 H 0.1044 23.0431 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 82 q 9.6897 24.9156 42.2069 -Andale_Mono.ttf 58 E 21.0793 40.5833 83 & 0.0077 32.6598 40.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 84 ’ 0.1751 7.2279 13.2460 -Andale_Mono.ttf 58 E 21.0793 40.5833 85 [ -0.0121 11.2250 47.8696 -Andale_Mono.ttf 58 E 21.0793 40.5833 86 - 22.6175 16.9359 4.1457 -Andale_Mono.ttf 58 E 21.0793 40.5833 87 Y 0.2395 29.8264 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 88 Q -0.3460 28.6167 47.7692 -Andale_Mono.ttf 58 E 21.0793 40.5833 89 " -0.1293 14.9239 15.2098 -Andale_Mono.ttf 58 E 21.0793 40.5833 90 ! -0.0848 7.2279 40.7902 -Andale_Mono.ttf 58 E 21.0793 40.5833 91 x 10.1082 26.2739 30.4195 -Andale_Mono.ttf 58 E 21.0793 40.5833 92 ) -0.0887 15.2098 49.6141 -Andale_Mono.ttf 58 E 21.0793 40.5833 93 = 12.6262 27.1098 15.2098 -Andale_Mono.ttf 58 E 21.0793 40.5833 94 + 5.9223 26.9971 26.9971 -Andale_Mono.ttf 58 E 21.0793 40.5833 95 X -0.2998 31.0946 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 96 » 9.9998 25.2250 29.2098 -Andale_Mono.ttf 58 E 21.0793 40.5833 97 ' -0.0094 4.4529 15.2098 -Andale_Mono.ttf 58 E 21.0793 40.5833 98 ¢ 4.7628 23.6474 41.2224 -Andale_Mono.ttf 58 E 21.0793 40.5833 99 Z 0.0433 24.3684 40.5833 -Andale_Mono.ttf 58 E 21.0793 40.5833 100 > 5.4446 21.2279 29.2098 -Andale_Mono.ttf 58 E 21.0793 40.5833 101 ® -0.3197 35.0793 34.5652 -Andale_Mono.ttf 58 E 21.0793 40.5833 102 © -0.2874 35.0793 34.5652 -Andale_Mono.ttf 58 E 21.0793 40.5833 103 ] 0.1718 11.2250 47.8696 -Andale_Mono.ttf 58 E 21.0793 40.5833 104 é -1.3557 25.2250 42.0460 -Andale_Mono.ttf 58 E 21.0793 40.5833 105 z 10.0891 23.1917 30.4195 -Andale_Mono.ttf 58 E 21.0793 40.5833 106 _ 49.4498 35.0793 3.8362 -Andale_Mono.ttf 58 E 21.0793 40.5833 107 ¥ 0.0128 29.8264 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 1 t 2.1726 22.6445 38.7569 -Andale_Mono.ttf 59 B 25.0765 40.5833 2 h -0.0080 23.0431 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 3 a 10.0060 24.2529 30.8333 -Andale_Mono.ttf 59 B 25.0765 40.5833 4 n 9.7322 23.0431 30.6264 -Andale_Mono.ttf 59 B 25.0765 40.5833 5 P -0.0057 22.8055 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 6 o 10.1339 26.7880 30.8333 -Andale_Mono.ttf 59 B 25.0765 40.5833 7 e 10.3735 25.2250 30.8333 -Andale_Mono.ttf 59 B 25.0765 40.5833 8 : 9.8433 7.2279 30.8333 -Andale_Mono.ttf 59 B 25.0765 40.5833 9 r 10.0272 20.4043 30.6264 -Andale_Mono.ttf 59 B 25.0765 40.5833 10 l -0.0331 20.4167 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 11 i -0.3054 13.3043 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 12 1 0.1345 21.0793 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 13 | -0.0483 4.1457 51.1917 -Andale_Mono.ttf 59 B 25.0765 40.5833 14 N 0.1786 24.3684 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 15 f 0.3129 22.7449 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 16 g 9.8141 26.2862 42.2069 -Andale_Mono.ttf 59 B 25.0765 40.5833 17 d -0.1525 24.9156 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 18 W 0.0218 32.6598 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 19 s 9.9394 22.4960 30.8333 -Andale_Mono.ttf 59 B 25.0765 40.5833 20 c 9.9590 24.2529 30.8333 -Andale_Mono.ttf 59 B 25.0765 40.5833 21 u 10.3364 23.0431 30.6264 -Andale_Mono.ttf 59 B 25.0765 40.5833 22 3 -0.3399 22.4376 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 23 ~ 21.0879 31.2431 8.4376 -Andale_Mono.ttf 59 B 25.0765 40.5833 24 # 0.1905 29.7261 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 25 O -0.1330 27.4069 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 26 ` -1.3738 12.2739 8.6445 -Andale_Mono.ttf 59 B 25.0765 40.5833 27 @ -0.3169 29.8848 45.6293 -Andale_Mono.ttf 59 B 25.0765 40.5833 28 F 0.2063 21.8334 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 29 S -0.4498 22.6445 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 30 p 9.7009 24.9156 42.2069 -Andale_Mono.ttf 59 B 25.0765 40.5833 31 “ -0.2146 17.6989 13.2460 -Andale_Mono.ttf 59 B 25.0765 40.5833 32 % -0.4422 32.6598 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 33 £ -0.0732 26.7902 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 34 . 33.1852 7.2279 7.2279 -Andale_Mono.ttf 59 B 25.0765 40.5833 35 2 -0.0923 21.9695 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 36 5 0.0381 22.1304 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 37 m 9.7147 27.6138 30.6264 -Andale_Mono.ttf 59 B 25.0765 40.5833 38 V -0.0075 32.2460 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 39 6 0.2113 25.4319 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 40 w 10.1337 29.5170 30.4195 -Andale_Mono.ttf 59 B 25.0765 40.5833 41 T 0.0948 29.4710 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 42 M 0.1208 25.2250 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 43 G -0.2822 26.5833 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 44 b -0.0216 24.9156 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 45 9 -0.1197 25.2250 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 46 ; 10.0944 7.2279 36.8514 -Andale_Mono.ttf 59 B 25.0765 40.5833 47 D -0.1503 25.2250 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 48 L -0.1713 21.8334 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 49 y 10.0345 26.6417 42.0000 -Andale_Mono.ttf 59 B 25.0765 40.5833 50 ‘ -0.2548 7.2279 13.2460 -Andale_Mono.ttf 59 B 25.0765 40.5833 51 \ -0.1287 24.4014 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 52 R 0.0439 27.3351 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 53 < 5.6327 21.2279 29.2098 -Andale_Mono.ttf 59 B 25.0765 40.5833 54 4 0.0803 27.4836 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 55 8 0.0015 25.7598 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 56 0 -0.3011 26.7880 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 57 A -0.4015 32.2460 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 58 E 0.0276 21.0793 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 59 B -0.0277 25.0765 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 60 v 10.1383 26.4348 30.4195 -Andale_Mono.ttf 59 B 25.0765 40.5833 61 k 0.2850 26.1253 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 62 J -0.2331 19.6627 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 63 U -0.1782 23.0431 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 64 j -0.1782 15.7239 52.3707 -Andale_Mono.ttf 59 B 25.0765 40.5833 65 ( -0.0361 15.2098 49.6141 -Andale_Mono.ttf 59 B 25.0765 40.5833 66 7 -0.0519 23.7080 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 67 § -0.0883 23.8543 52.5776 -Andale_Mono.ttf 59 B 25.0765 40.5833 68 $ -3.1932 22.6445 47.0152 -Andale_Mono.ttf 59 B 25.0765 40.5833 69 € -0.3086 30.5474 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 70 / -0.0458 24.4014 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 71 C -0.0741 26.7112 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 72 * 0.2383 20.1184 22.4376 -Andale_Mono.ttf 59 B 25.0765 40.5833 73 ” -0.1789 17.6989 13.2460 -Andale_Mono.ttf 59 B 25.0765 40.5833 74 ? -0.2927 20.5652 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 75 { -0.0787 15.8848 50.4376 -Andale_Mono.ttf 59 B 25.0765 40.5833 76 } 0.0533 15.8848 50.4376 -Andale_Mono.ttf 59 B 25.0765 40.5833 77 , 33.7443 7.2279 13.2460 -Andale_Mono.ttf 59 B 25.0765 40.5833 78 I -0.0638 17.9971 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 79 ° -0.3335 15.7261 15.7261 -Andale_Mono.ttf 59 B 25.0765 40.5833 80 K -0.0125 28.2377 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 81 H 0.0841 23.0431 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 82 q 10.1730 24.9156 42.2069 -Andale_Mono.ttf 59 B 25.0765 40.5833 83 & -0.0958 32.6598 40.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 84 ’ -0.3346 7.2279 13.2460 -Andale_Mono.ttf 59 B 25.0765 40.5833 85 [ -0.1404 11.2250 47.8696 -Andale_Mono.ttf 59 B 25.0765 40.5833 86 - 22.5481 16.9359 4.1457 -Andale_Mono.ttf 59 B 25.0765 40.5833 87 Y -0.2103 29.8264 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 88 Q -0.0682 28.6167 47.7692 -Andale_Mono.ttf 59 B 25.0765 40.5833 89 " 0.1118 14.9239 15.2098 -Andale_Mono.ttf 59 B 25.0765 40.5833 90 ! 0.1149 7.2279 40.7902 -Andale_Mono.ttf 59 B 25.0765 40.5833 91 x 10.1208 26.2739 30.4195 -Andale_Mono.ttf 59 B 25.0765 40.5833 92 ) -0.5688 15.2098 49.6141 -Andale_Mono.ttf 59 B 25.0765 40.5833 93 = 12.4478 27.1098 15.2098 -Andale_Mono.ttf 59 B 25.0765 40.5833 94 + 6.5281 26.9971 26.9971 -Andale_Mono.ttf 59 B 25.0765 40.5833 95 X 0.1418 31.0946 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 96 » 10.1762 25.2250 29.2098 -Andale_Mono.ttf 59 B 25.0765 40.5833 97 ' -0.1103 4.4529 15.2098 -Andale_Mono.ttf 59 B 25.0765 40.5833 98 ¢ 4.6658 23.6474 41.2224 -Andale_Mono.ttf 59 B 25.0765 40.5833 99 Z -0.1092 24.3684 40.5833 -Andale_Mono.ttf 59 B 25.0765 40.5833 100 > 5.3402 21.2279 29.2098 -Andale_Mono.ttf 59 B 25.0765 40.5833 101 ® -0.3707 35.0793 34.5652 -Andale_Mono.ttf 59 B 25.0765 40.5833 102 © -0.2159 35.0793 34.5652 -Andale_Mono.ttf 59 B 25.0765 40.5833 103 ] -0.0000 11.2250 47.8696 -Andale_Mono.ttf 59 B 25.0765 40.5833 104 é -1.0400 25.2250 42.0460 -Andale_Mono.ttf 59 B 25.0765 40.5833 105 z 10.0844 23.1917 30.4195 -Andale_Mono.ttf 59 B 25.0765 40.5833 106 _ 49.4473 35.0793 3.8362 -Andale_Mono.ttf 59 B 25.0765 40.5833 107 ¥ -0.0157 29.8264 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 1 t -8.1680 22.6445 38.7569 -Andale_Mono.ttf 60 v 26.4348 30.4195 2 h -10.0080 23.0431 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 3 a 0.0263 24.2529 30.8333 -Andale_Mono.ttf 60 v 26.4348 30.4195 4 n -0.2063 23.0431 30.6264 -Andale_Mono.ttf 60 v 26.4348 30.4195 5 P -10.7059 22.8055 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 6 o 0.0029 26.7880 30.8333 -Andale_Mono.ttf 60 v 26.4348 30.4195 7 e -0.1510 25.2250 30.8333 -Andale_Mono.ttf 60 v 26.4348 30.4195 8 : -0.0186 7.2279 30.8333 -Andale_Mono.ttf 60 v 26.4348 30.4195 9 r -0.4548 20.4043 30.6264 -Andale_Mono.ttf 60 v 26.4348 30.4195 10 l -10.0868 20.4167 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 11 i -10.3148 13.3043 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 12 1 -10.6557 21.0793 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 13 | -10.2099 4.1457 51.1917 -Andale_Mono.ttf 60 v 26.4348 30.4195 14 N -10.3150 24.3684 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 15 f -10.2077 22.7449 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 16 g -0.0942 26.2862 42.2069 -Andale_Mono.ttf 60 v 26.4348 30.4195 17 d -10.0460 24.9156 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 18 W -9.9614 32.6598 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 19 s -0.3548 22.4960 30.8333 -Andale_Mono.ttf 60 v 26.4348 30.4195 20 c -0.2884 24.2529 30.8333 -Andale_Mono.ttf 60 v 26.4348 30.4195 21 u -0.0100 23.0431 30.6264 -Andale_Mono.ttf 60 v 26.4348 30.4195 22 3 -10.5322 22.4376 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 23 ~ 10.6747 31.2431 8.4376 -Andale_Mono.ttf 60 v 26.4348 30.4195 24 # -10.1415 29.7261 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 25 O -10.3473 27.4069 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 26 ` -11.2785 12.2739 8.6445 -Andale_Mono.ttf 60 v 26.4348 30.4195 27 @ -10.3845 29.8848 45.6293 -Andale_Mono.ttf 60 v 26.4348 30.4195 28 F -9.8996 21.8334 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 29 S -10.5810 22.6445 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 30 p -0.3680 24.9156 42.2069 -Andale_Mono.ttf 60 v 26.4348 30.4195 31 “ -10.2722 17.6989 13.2460 -Andale_Mono.ttf 60 v 26.4348 30.4195 32 % -10.6950 32.6598 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 33 £ -10.1578 26.7902 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 34 . 23.3534 7.2279 7.2279 -Andale_Mono.ttf 60 v 26.4348 30.4195 35 2 -10.2055 21.9695 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 36 5 -10.2434 22.1304 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 37 m -0.0475 27.6138 30.6264 -Andale_Mono.ttf 60 v 26.4348 30.4195 38 V -10.0475 32.2460 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 39 6 -10.4923 25.4319 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 40 w -0.1293 29.5170 30.4195 -Andale_Mono.ttf 60 v 26.4348 30.4195 41 T -10.3195 29.4710 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 42 M -10.0111 25.2250 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 43 G -10.6902 26.5833 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 44 b -10.1620 24.9156 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 45 9 -10.2149 25.2250 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 46 ; -0.2853 7.2279 36.8514 -Andale_Mono.ttf 60 v 26.4348 30.4195 47 D -9.9865 25.2250 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 48 L -10.2040 21.8334 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 49 y -0.1571 26.6417 42.0000 -Andale_Mono.ttf 60 v 26.4348 30.4195 50 ‘ -10.4730 7.2279 13.2460 -Andale_Mono.ttf 60 v 26.4348 30.4195 51 \ -10.6870 24.4014 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 52 R -10.3025 27.3351 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 53 < -4.3174 21.2279 29.2098 -Andale_Mono.ttf 60 v 26.4348 30.4195 54 4 -10.0027 27.4836 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 55 8 -10.3632 25.7598 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 56 0 -10.2440 26.7880 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 57 A -10.1791 32.2460 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 58 E -10.3455 21.0793 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 59 B -10.2948 25.0765 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 60 v 0.0327 26.4348 30.4195 -Andale_Mono.ttf 60 v 26.4348 30.4195 61 k -10.2859 26.1253 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 62 J -10.0672 19.6627 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 63 U -10.1467 23.0431 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 64 j -10.2207 15.7239 52.3707 -Andale_Mono.ttf 60 v 26.4348 30.4195 65 ( -10.3574 15.2098 49.6141 -Andale_Mono.ttf 60 v 26.4348 30.4195 66 7 -10.0770 23.7080 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 67 § -10.4368 23.8543 52.5776 -Andale_Mono.ttf 60 v 26.4348 30.4195 68 $ -13.1350 22.6445 47.0152 -Andale_Mono.ttf 60 v 26.4348 30.4195 69 € -10.4019 30.5474 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 70 / -10.5238 24.4014 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 71 C -10.7561 26.7112 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 72 * -10.1832 20.1184 22.4376 -Andale_Mono.ttf 60 v 26.4348 30.4195 73 ” -10.3192 17.6989 13.2460 -Andale_Mono.ttf 60 v 26.4348 30.4195 74 ? -10.4655 20.5652 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 75 { -10.0103 15.8848 50.4376 -Andale_Mono.ttf 60 v 26.4348 30.4195 76 } -10.3982 15.8848 50.4376 -Andale_Mono.ttf 60 v 26.4348 30.4195 77 , 23.4942 7.2279 13.2460 -Andale_Mono.ttf 60 v 26.4348 30.4195 78 I -10.0590 17.9971 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 79 ° -10.4190 15.7261 15.7261 -Andale_Mono.ttf 60 v 26.4348 30.4195 80 K -10.2006 28.2377 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 81 H -10.1799 23.0431 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 82 q -0.4521 24.9156 42.2069 -Andale_Mono.ttf 60 v 26.4348 30.4195 83 & -9.9467 32.6598 40.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 84 ’ -10.4888 7.2279 13.2460 -Andale_Mono.ttf 60 v 26.4348 30.4195 85 [ -10.2819 11.2250 47.8696 -Andale_Mono.ttf 60 v 26.4348 30.4195 86 - 12.1334 16.9359 4.1457 -Andale_Mono.ttf 60 v 26.4348 30.4195 87 Y -10.4492 29.8264 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 88 Q -10.6625 28.6167 47.7692 -Andale_Mono.ttf 60 v 26.4348 30.4195 89 " -10.0670 14.9239 15.2098 -Andale_Mono.ttf 60 v 26.4348 30.4195 90 ! -10.2757 7.2279 40.7902 -Andale_Mono.ttf 60 v 26.4348 30.4195 91 x 0.0519 26.2739 30.4195 -Andale_Mono.ttf 60 v 26.4348 30.4195 92 ) -10.4201 15.2098 49.6141 -Andale_Mono.ttf 60 v 26.4348 30.4195 93 = 2.8786 27.1098 15.2098 -Andale_Mono.ttf 60 v 26.4348 30.4195 94 + -3.5313 26.9971 26.9971 -Andale_Mono.ttf 60 v 26.4348 30.4195 95 X -10.3946 31.0946 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 96 » 0.0052 25.2250 29.2098 -Andale_Mono.ttf 60 v 26.4348 30.4195 97 ' -9.9396 4.4529 15.2098 -Andale_Mono.ttf 60 v 26.4348 30.4195 98 ¢ -5.3706 23.6474 41.2224 -Andale_Mono.ttf 60 v 26.4348 30.4195 99 Z -10.0857 24.3684 40.5833 -Andale_Mono.ttf 60 v 26.4348 30.4195 100 > -4.6943 21.2279 29.2098 -Andale_Mono.ttf 60 v 26.4348 30.4195 101 ® -10.2726 35.0793 34.5652 -Andale_Mono.ttf 60 v 26.4348 30.4195 102 © -10.3595 35.0793 34.5652 -Andale_Mono.ttf 60 v 26.4348 30.4195 103 ] -10.4139 11.2250 47.8696 -Andale_Mono.ttf 60 v 26.4348 30.4195 104 é -11.2839 25.2250 42.0460 -Andale_Mono.ttf 60 v 26.4348 30.4195 105 z 0.1638 23.1917 30.4195 -Andale_Mono.ttf 60 v 26.4348 30.4195 106 _ 39.5324 35.0793 3.8362 -Andale_Mono.ttf 60 v 26.4348 30.4195 107 ¥ -10.1808 29.8264 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 1 t 1.9399 22.6445 38.7569 -Andale_Mono.ttf 61 k 26.1253 40.5833 2 h -0.2379 23.0431 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 3 a 10.1041 24.2529 30.8333 -Andale_Mono.ttf 61 k 26.1253 40.5833 4 n 9.6217 23.0431 30.6264 -Andale_Mono.ttf 61 k 26.1253 40.5833 5 P 0.0519 22.8055 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 6 o 10.2657 26.7880 30.8333 -Andale_Mono.ttf 61 k 26.1253 40.5833 7 e 9.7989 25.2250 30.8333 -Andale_Mono.ttf 61 k 26.1253 40.5833 8 : 10.1309 7.2279 30.8333 -Andale_Mono.ttf 61 k 26.1253 40.5833 9 r 10.0811 20.4043 30.6264 -Andale_Mono.ttf 61 k 26.1253 40.5833 10 l 0.0721 20.4167 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 11 i -0.3136 13.3043 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 12 1 -0.2968 21.0793 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 13 | 0.0385 4.1457 51.1917 -Andale_Mono.ttf 61 k 26.1253 40.5833 14 N -0.1500 24.3684 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 15 f 0.0429 22.7449 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 16 g 10.1612 26.2862 42.2069 -Andale_Mono.ttf 61 k 26.1253 40.5833 17 d 0.0690 24.9156 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 18 W 0.1337 32.6598 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 19 s 9.7900 22.4960 30.8333 -Andale_Mono.ttf 61 k 26.1253 40.5833 20 c 9.7646 24.2529 30.8333 -Andale_Mono.ttf 61 k 26.1253 40.5833 21 u 10.0895 23.0431 30.6264 -Andale_Mono.ttf 61 k 26.1253 40.5833 22 3 0.1671 22.4376 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 23 ~ 21.2766 31.2431 8.4376 -Andale_Mono.ttf 61 k 26.1253 40.5833 24 # 0.0688 29.7261 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 25 O -0.1488 27.4069 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 26 ` -1.2946 12.2739 8.6445 -Andale_Mono.ttf 61 k 26.1253 40.5833 27 @ -0.4015 29.8848 45.6293 -Andale_Mono.ttf 61 k 26.1253 40.5833 28 F -0.1266 21.8334 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 29 S -0.1171 22.6445 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 30 p 9.9086 24.9156 42.2069 -Andale_Mono.ttf 61 k 26.1253 40.5833 31 “ -0.2342 17.6989 13.2460 -Andale_Mono.ttf 61 k 26.1253 40.5833 32 % -0.0468 32.6598 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 33 £ -0.3192 26.7902 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 34 . 33.8286 7.2279 7.2279 -Andale_Mono.ttf 61 k 26.1253 40.5833 35 2 -0.2440 21.9695 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 36 5 -0.1129 22.1304 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 37 m 9.9833 27.6138 30.6264 -Andale_Mono.ttf 61 k 26.1253 40.5833 38 V -0.1755 32.2460 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 39 6 -0.1268 25.4319 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 40 w 10.3457 29.5170 30.4195 -Andale_Mono.ttf 61 k 26.1253 40.5833 41 T -0.0461 29.4710 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 42 M -0.0690 25.2250 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 43 G -0.0437 26.5833 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 44 b 0.2931 24.9156 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 45 9 -0.0977 25.2250 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 46 ; 10.3140 7.2279 36.8514 -Andale_Mono.ttf 61 k 26.1253 40.5833 47 D -0.2737 25.2250 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 48 L -0.3647 21.8334 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 49 y 10.1674 26.6417 42.0000 -Andale_Mono.ttf 61 k 26.1253 40.5833 50 ‘ -0.5541 7.2279 13.2460 -Andale_Mono.ttf 61 k 26.1253 40.5833 51 \ -0.3877 24.4014 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 52 R 0.2098 27.3351 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 53 < 5.3886 21.2279 29.2098 -Andale_Mono.ttf 61 k 26.1253 40.5833 54 4 0.3169 27.4836 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 55 8 -0.2312 25.7598 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 56 0 -0.3725 26.7880 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 57 A 0.1146 32.2460 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 58 E 0.1487 21.0793 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 59 B -0.0057 25.0765 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 60 v 10.2904 26.4348 30.4195 -Andale_Mono.ttf 61 k 26.1253 40.5833 61 k 0.2353 26.1253 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 62 J 0.1638 19.6627 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 63 U -0.1594 23.0431 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 64 j -0.0820 15.7239 52.3707 -Andale_Mono.ttf 61 k 26.1253 40.5833 65 ( -0.2025 15.2098 49.6141 -Andale_Mono.ttf 61 k 26.1253 40.5833 66 7 -0.0230 23.7080 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 67 § -0.0665 23.8543 52.5776 -Andale_Mono.ttf 61 k 26.1253 40.5833 68 $ -2.9855 22.6445 47.0152 -Andale_Mono.ttf 61 k 26.1253 40.5833 69 € -0.2414 30.5474 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 70 / 0.1977 24.4014 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 71 C -0.3877 26.7112 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 72 * -0.0778 20.1184 22.4376 -Andale_Mono.ttf 61 k 26.1253 40.5833 73 ” 0.0347 17.6989 13.2460 -Andale_Mono.ttf 61 k 26.1253 40.5833 74 ? -0.3989 20.5652 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 75 { -0.0789 15.8848 50.4376 -Andale_Mono.ttf 61 k 26.1253 40.5833 76 } 0.1726 15.8848 50.4376 -Andale_Mono.ttf 61 k 26.1253 40.5833 77 , 33.6394 7.2279 13.2460 -Andale_Mono.ttf 61 k 26.1253 40.5833 78 I 0.2164 17.9971 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 79 ° -0.3175 15.7261 15.7261 -Andale_Mono.ttf 61 k 26.1253 40.5833 80 K -0.0794 28.2377 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 81 H -0.1484 23.0431 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 82 q 9.6289 24.9156 42.2069 -Andale_Mono.ttf 61 k 26.1253 40.5833 83 & -0.2937 32.6598 40.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 84 ’ -0.1075 7.2279 13.2460 -Andale_Mono.ttf 61 k 26.1253 40.5833 85 [ -0.1682 11.2250 47.8696 -Andale_Mono.ttf 61 k 26.1253 40.5833 86 - 22.4765 16.9359 4.1457 -Andale_Mono.ttf 61 k 26.1253 40.5833 87 Y -0.0966 29.8264 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 88 Q -0.3299 28.6167 47.7692 -Andale_Mono.ttf 61 k 26.1253 40.5833 89 " -0.2019 14.9239 15.2098 -Andale_Mono.ttf 61 k 26.1253 40.5833 90 ! -0.1287 7.2279 40.7902 -Andale_Mono.ttf 61 k 26.1253 40.5833 91 x 10.2702 26.2739 30.4195 -Andale_Mono.ttf 61 k 26.1253 40.5833 92 ) -0.2364 15.2098 49.6141 -Andale_Mono.ttf 61 k 26.1253 40.5833 93 = 12.5266 27.1098 15.2098 -Andale_Mono.ttf 61 k 26.1253 40.5833 94 + 6.5595 26.9971 26.9971 -Andale_Mono.ttf 61 k 26.1253 40.5833 95 X -0.3068 31.0946 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 96 » 9.8333 25.2250 29.2098 -Andale_Mono.ttf 61 k 26.1253 40.5833 97 ' -0.3914 4.4529 15.2098 -Andale_Mono.ttf 61 k 26.1253 40.5833 98 ¢ 4.7866 23.6474 41.2224 -Andale_Mono.ttf 61 k 26.1253 40.5833 99 Z 0.0948 24.3684 40.5833 -Andale_Mono.ttf 61 k 26.1253 40.5833 100 > 5.3442 21.2279 29.2098 -Andale_Mono.ttf 61 k 26.1253 40.5833 101 ® -0.3325 35.0793 34.5652 -Andale_Mono.ttf 61 k 26.1253 40.5833 102 © -0.2060 35.0793 34.5652 -Andale_Mono.ttf 61 k 26.1253 40.5833 103 ] 0.0945 11.2250 47.8696 -Andale_Mono.ttf 61 k 26.1253 40.5833 104 é -1.0002 25.2250 42.0460 -Andale_Mono.ttf 61 k 26.1253 40.5833 105 z 10.3858 23.1917 30.4195 -Andale_Mono.ttf 61 k 26.1253 40.5833 106 _ 49.7772 35.0793 3.8362 -Andale_Mono.ttf 61 k 26.1253 40.5833 107 ¥ -0.2222 29.8264 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 1 t 1.8366 22.6445 38.7569 -Andale_Mono.ttf 62 J 19.6627 40.7902 2 h -0.1172 23.0431 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 3 a 9.9193 24.2529 30.8333 -Andale_Mono.ttf 62 J 19.6627 40.7902 4 n 9.8791 23.0431 30.6264 -Andale_Mono.ttf 62 J 19.6627 40.7902 5 P -0.2121 22.8055 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 6 o 10.0442 26.7880 30.8333 -Andale_Mono.ttf 62 J 19.6627 40.7902 7 e 10.3301 25.2250 30.8333 -Andale_Mono.ttf 62 J 19.6627 40.7902 8 : 10.0008 7.2279 30.8333 -Andale_Mono.ttf 62 J 19.6627 40.7902 9 r 9.9434 20.4043 30.6264 -Andale_Mono.ttf 62 J 19.6627 40.7902 10 l -0.0810 20.4167 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 11 i -0.4348 13.3043 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 12 1 -0.2149 21.0793 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 13 | 0.1968 4.1457 51.1917 -Andale_Mono.ttf 62 J 19.6627 40.7902 14 N -0.0688 24.3684 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 15 f -0.2517 22.7449 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 16 g 9.7864 26.2862 42.2069 -Andale_Mono.ttf 62 J 19.6627 40.7902 17 d 0.0345 24.9156 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 18 W -0.2640 32.6598 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 19 s 9.8898 22.4960 30.8333 -Andale_Mono.ttf 62 J 19.6627 40.7902 20 c 9.8571 24.2529 30.8333 -Andale_Mono.ttf 62 J 19.6627 40.7902 21 u 10.1490 23.0431 30.6264 -Andale_Mono.ttf 62 J 19.6627 40.7902 22 3 -0.2674 22.4376 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 23 ~ 21.1898 31.2431 8.4376 -Andale_Mono.ttf 62 J 19.6627 40.7902 24 # -0.1347 29.7261 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 25 O -0.4686 27.4069 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 26 ` -1.4069 12.2739 8.6445 -Andale_Mono.ttf 62 J 19.6627 40.7902 27 @ -0.1147 29.8848 45.6293 -Andale_Mono.ttf 62 J 19.6627 40.7902 28 F 0.2234 21.8334 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 29 S -0.0565 22.6445 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 30 p 10.2011 24.9156 42.2069 -Andale_Mono.ttf 62 J 19.6627 40.7902 31 “ -0.0728 17.6989 13.2460 -Andale_Mono.ttf 62 J 19.6627 40.7902 32 % -0.0236 32.6598 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 33 £ -0.1555 26.7902 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 34 . 33.2832 7.2279 7.2279 -Andale_Mono.ttf 62 J 19.6627 40.7902 35 2 -0.0320 21.9695 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 36 5 0.3991 22.1304 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 37 m 9.9663 27.6138 30.6264 -Andale_Mono.ttf 62 J 19.6627 40.7902 38 V 0.0871 32.2460 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 39 6 -0.2203 25.4319 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 40 w 9.9843 29.5170 30.4195 -Andale_Mono.ttf 62 J 19.6627 40.7902 41 T 0.2452 29.4710 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 42 M 0.1230 25.2250 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 43 G -0.1264 26.5833 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 44 b -0.4582 24.9156 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 45 9 -0.1529 25.2250 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 46 ; 10.0588 7.2279 36.8514 -Andale_Mono.ttf 62 J 19.6627 40.7902 47 D 0.0415 25.2250 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 48 L -0.0000 21.8334 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 49 y 10.1373 26.6417 42.0000 -Andale_Mono.ttf 62 J 19.6627 40.7902 50 ‘ 0.1774 7.2279 13.2460 -Andale_Mono.ttf 62 J 19.6627 40.7902 51 \ -0.1021 24.4014 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 52 R -0.1682 27.3351 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 53 < 5.4686 21.2279 29.2098 -Andale_Mono.ttf 62 J 19.6627 40.7902 54 4 0.1749 27.4836 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 55 8 -0.2540 25.7598 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 56 0 -0.3795 26.7880 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 57 A 0.0662 32.2460 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 58 E -0.1594 21.0793 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 59 B -0.1902 25.0765 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 60 v 10.3126 26.4348 30.4195 -Andale_Mono.ttf 62 J 19.6627 40.7902 61 k 0.0630 26.1253 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 62 J -0.1186 19.6627 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 63 U 0.1117 23.0431 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 64 j -0.3067 15.7239 52.3707 -Andale_Mono.ttf 62 J 19.6627 40.7902 65 ( -0.2404 15.2098 49.6141 -Andale_Mono.ttf 62 J 19.6627 40.7902 66 7 -0.1330 23.7080 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 67 § -0.0494 23.8543 52.5776 -Andale_Mono.ttf 62 J 19.6627 40.7902 68 $ -2.9242 22.6445 47.0152 -Andale_Mono.ttf 62 J 19.6627 40.7902 69 € 0.1444 30.5474 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 70 / -0.2900 24.4014 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 71 C -0.4039 26.7112 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 72 * 0.0318 20.1184 22.4376 -Andale_Mono.ttf 62 J 19.6627 40.7902 73 ” -0.0293 17.6989 13.2460 -Andale_Mono.ttf 62 J 19.6627 40.7902 74 ? -0.1581 20.5652 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 75 { 0.3414 15.8848 50.4376 -Andale_Mono.ttf 62 J 19.6627 40.7902 76 } 0.0462 15.8848 50.4376 -Andale_Mono.ttf 62 J 19.6627 40.7902 77 , 33.5857 7.2279 13.2460 -Andale_Mono.ttf 62 J 19.6627 40.7902 78 I 0.1284 17.9971 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 79 ° -0.3017 15.7261 15.7261 -Andale_Mono.ttf 62 J 19.6627 40.7902 80 K -0.0175 28.2377 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 81 H -0.1977 23.0431 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 82 q 9.8696 24.9156 42.2069 -Andale_Mono.ttf 62 J 19.6627 40.7902 83 & -0.1715 32.6598 40.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 84 ’ -0.4370 7.2279 13.2460 -Andale_Mono.ttf 62 J 19.6627 40.7902 85 [ 0.0640 11.2250 47.8696 -Andale_Mono.ttf 62 J 19.6627 40.7902 86 - 22.5934 16.9359 4.1457 -Andale_Mono.ttf 62 J 19.6627 40.7902 87 Y -0.0608 29.8264 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 88 Q -0.2345 28.6167 47.7692 -Andale_Mono.ttf 62 J 19.6627 40.7902 89 " 0.0594 14.9239 15.2098 -Andale_Mono.ttf 62 J 19.6627 40.7902 90 ! -0.4027 7.2279 40.7902 -Andale_Mono.ttf 62 J 19.6627 40.7902 91 x 10.0546 26.2739 30.4195 -Andale_Mono.ttf 62 J 19.6627 40.7902 92 ) -0.4822 15.2098 49.6141 -Andale_Mono.ttf 62 J 19.6627 40.7902 93 = 12.6098 27.1098 15.2098 -Andale_Mono.ttf 62 J 19.6627 40.7902 94 + 6.6551 26.9971 26.9971 -Andale_Mono.ttf 62 J 19.6627 40.7902 95 X -0.0483 31.0946 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 96 » 9.8975 25.2250 29.2098 -Andale_Mono.ttf 62 J 19.6627 40.7902 97 ' -0.3034 4.4529 15.2098 -Andale_Mono.ttf 62 J 19.6627 40.7902 98 ¢ 4.8649 23.6474 41.2224 -Andale_Mono.ttf 62 J 19.6627 40.7902 99 Z -0.0195 24.3684 40.5833 -Andale_Mono.ttf 62 J 19.6627 40.7902 100 > 5.6906 21.2279 29.2098 -Andale_Mono.ttf 62 J 19.6627 40.7902 101 ® -0.6117 35.0793 34.5652 -Andale_Mono.ttf 62 J 19.6627 40.7902 102 © -0.2207 35.0793 34.5652 -Andale_Mono.ttf 62 J 19.6627 40.7902 103 ] -0.1669 11.2250 47.8696 -Andale_Mono.ttf 62 J 19.6627 40.7902 104 é -1.1031 25.2250 42.0460 -Andale_Mono.ttf 62 J 19.6627 40.7902 105 z 10.0175 23.1917 30.4195 -Andale_Mono.ttf 62 J 19.6627 40.7902 106 _ 49.1986 35.0793 3.8362 -Andale_Mono.ttf 62 J 19.6627 40.7902 107 ¥ 0.1000 29.8264 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 1 t 2.0822 22.6445 38.7569 -Andale_Mono.ttf 63 U 23.0431 40.7902 2 h -0.0998 23.0431 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 3 a 9.8948 24.2529 30.8333 -Andale_Mono.ttf 63 U 23.0431 40.7902 4 n 10.0570 23.0431 30.6264 -Andale_Mono.ttf 63 U 23.0431 40.7902 5 P -0.1571 22.8055 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 6 o 10.1852 26.7880 30.8333 -Andale_Mono.ttf 63 U 23.0431 40.7902 7 e 9.7752 25.2250 30.8333 -Andale_Mono.ttf 63 U 23.0431 40.7902 8 : 9.8989 7.2279 30.8333 -Andale_Mono.ttf 63 U 23.0431 40.7902 9 r 9.8559 20.4043 30.6264 -Andale_Mono.ttf 63 U 23.0431 40.7902 10 l -0.3190 20.4167 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 11 i -0.3563 13.3043 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 12 1 -0.6215 21.0793 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 13 | 0.0138 4.1457 51.1917 -Andale_Mono.ttf 63 U 23.0431 40.7902 14 N 0.0927 24.3684 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 15 f -0.1468 22.7449 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 16 g 9.9431 26.2862 42.2069 -Andale_Mono.ttf 63 U 23.0431 40.7902 17 d 0.0308 24.9156 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 18 W 0.0442 32.6598 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 19 s 10.0718 22.4960 30.8333 -Andale_Mono.ttf 63 U 23.0431 40.7902 20 c 10.0154 24.2529 30.8333 -Andale_Mono.ttf 63 U 23.0431 40.7902 21 u 10.3249 23.0431 30.6264 -Andale_Mono.ttf 63 U 23.0431 40.7902 22 3 -0.4546 22.4376 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 23 ~ 21.0587 31.2431 8.4376 -Andale_Mono.ttf 63 U 23.0431 40.7902 24 # -0.1638 29.7261 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 25 O -0.2106 27.4069 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 26 ` -1.3792 12.2739 8.6445 -Andale_Mono.ttf 63 U 23.0431 40.7902 27 @ -0.0544 29.8848 45.6293 -Andale_Mono.ttf 63 U 23.0431 40.7902 28 F 0.0598 21.8334 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 29 S -0.1009 22.6445 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 30 p 9.8630 24.9156 42.2069 -Andale_Mono.ttf 63 U 23.0431 40.7902 31 “ 0.0322 17.6989 13.2460 -Andale_Mono.ttf 63 U 23.0431 40.7902 32 % -0.0538 32.6598 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 33 £ -0.2337 26.7902 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 34 . 33.6890 7.2279 7.2279 -Andale_Mono.ttf 63 U 23.0431 40.7902 35 2 -0.1077 21.9695 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 36 5 0.0376 22.1304 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 37 m 10.2457 27.6138 30.6264 -Andale_Mono.ttf 63 U 23.0431 40.7902 38 V 0.0697 32.2460 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 39 6 -0.0588 25.4319 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 40 w 10.1591 29.5170 30.4195 -Andale_Mono.ttf 63 U 23.0431 40.7902 41 T -0.0425 29.4710 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 42 M -0.0820 25.2250 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 43 G -0.1475 26.5833 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 44 b 0.4408 24.9156 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 45 9 -0.2517 25.2250 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 46 ; 10.0490 7.2279 36.8514 -Andale_Mono.ttf 63 U 23.0431 40.7902 47 D 0.0134 25.2250 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 48 L -0.0075 21.8334 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 49 y 10.4404 26.6417 42.0000 -Andale_Mono.ttf 63 U 23.0431 40.7902 50 ‘ -0.3571 7.2279 13.2460 -Andale_Mono.ttf 63 U 23.0431 40.7902 51 \ -0.1937 24.4014 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 52 R -0.1404 27.3351 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 53 < 5.7519 21.2279 29.2098 -Andale_Mono.ttf 63 U 23.0431 40.7902 54 4 0.0948 27.4836 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 55 8 -0.2118 25.7598 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 56 0 -0.2749 26.7880 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 57 A -0.3263 32.2460 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 58 E -0.1500 21.0793 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 59 B -0.0362 25.0765 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 60 v 10.4143 26.4348 30.4195 -Andale_Mono.ttf 63 U 23.0431 40.7902 61 k -0.1579 26.1253 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 62 J -0.0828 19.6627 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 63 U 0.1155 23.0431 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 64 j -0.0776 15.7239 52.3707 -Andale_Mono.ttf 63 U 23.0431 40.7902 65 ( 0.0707 15.2098 49.6141 -Andale_Mono.ttf 63 U 23.0431 40.7902 66 7 0.0445 23.7080 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 67 § -0.2647 23.8543 52.5776 -Andale_Mono.ttf 63 U 23.0431 40.7902 68 $ -2.9845 22.6445 47.0152 -Andale_Mono.ttf 63 U 23.0431 40.7902 69 € -0.5483 30.5474 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 70 / 0.0723 24.4014 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 71 C -0.1040 26.7112 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 72 * -0.1975 20.1184 22.4376 -Andale_Mono.ttf 63 U 23.0431 40.7902 73 ” -0.3529 17.6989 13.2460 -Andale_Mono.ttf 63 U 23.0431 40.7902 74 ? -0.0422 20.5652 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 75 { -0.2166 15.8848 50.4376 -Andale_Mono.ttf 63 U 23.0431 40.7902 76 } -0.0107 15.8848 50.4376 -Andale_Mono.ttf 63 U 23.0431 40.7902 77 , 33.5744 7.2279 13.2460 -Andale_Mono.ttf 63 U 23.0431 40.7902 78 I -0.1175 17.9971 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 79 ° 0.2042 15.7261 15.7261 -Andale_Mono.ttf 63 U 23.0431 40.7902 80 K -0.0690 28.2377 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 81 H 0.1611 23.0431 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 82 q 9.6915 24.9156 42.2069 -Andale_Mono.ttf 63 U 23.0431 40.7902 83 & -0.3224 32.6598 40.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 84 ’ -0.1962 7.2279 13.2460 -Andale_Mono.ttf 63 U 23.0431 40.7902 85 [ 0.0027 11.2250 47.8696 -Andale_Mono.ttf 63 U 23.0431 40.7902 86 - 22.4595 16.9359 4.1457 -Andale_Mono.ttf 63 U 23.0431 40.7902 87 Y -0.1341 29.8264 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 88 Q -0.3542 28.6167 47.7692 -Andale_Mono.ttf 63 U 23.0431 40.7902 89 " -0.1816 14.9239 15.2098 -Andale_Mono.ttf 63 U 23.0431 40.7902 90 ! -0.0361 7.2279 40.7902 -Andale_Mono.ttf 63 U 23.0431 40.7902 91 x 10.1113 26.2739 30.4195 -Andale_Mono.ttf 63 U 23.0431 40.7902 92 ) -0.2019 15.2098 49.6141 -Andale_Mono.ttf 63 U 23.0431 40.7902 93 = 12.1877 27.1098 15.2098 -Andale_Mono.ttf 63 U 23.0431 40.7902 94 + 6.5445 26.9971 26.9971 -Andale_Mono.ttf 63 U 23.0431 40.7902 95 X -0.0527 31.0946 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 96 » 10.0214 25.2250 29.2098 -Andale_Mono.ttf 63 U 23.0431 40.7902 97 ' 0.0106 4.4529 15.2098 -Andale_Mono.ttf 63 U 23.0431 40.7902 98 ¢ 4.4185 23.6474 41.2224 -Andale_Mono.ttf 63 U 23.0431 40.7902 99 Z 0.0148 24.3684 40.5833 -Andale_Mono.ttf 63 U 23.0431 40.7902 100 > 5.5479 21.2279 29.2098 -Andale_Mono.ttf 63 U 23.0431 40.7902 101 ® -0.2484 35.0793 34.5652 -Andale_Mono.ttf 63 U 23.0431 40.7902 102 © -0.4628 35.0793 34.5652 -Andale_Mono.ttf 63 U 23.0431 40.7902 103 ] -0.2379 11.2250 47.8696 -Andale_Mono.ttf 63 U 23.0431 40.7902 104 é -1.1458 25.2250 42.0460 -Andale_Mono.ttf 63 U 23.0431 40.7902 105 z 10.2519 23.1917 30.4195 -Andale_Mono.ttf 63 U 23.0431 40.7902 106 _ 49.6511 35.0793 3.8362 -Andale_Mono.ttf 63 U 23.0431 40.7902 107 ¥ 0.0389 29.8264 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 1 t 2.2930 22.6445 38.7569 -Andale_Mono.ttf 64 j 15.7239 52.3707 2 h 0.3473 23.0431 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 3 a 10.2703 24.2529 30.8333 -Andale_Mono.ttf 64 j 15.7239 52.3707 4 n 10.4130 23.0431 30.6264 -Andale_Mono.ttf 64 j 15.7239 52.3707 5 P -0.0441 22.8055 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 6 o 10.0277 26.7880 30.8333 -Andale_Mono.ttf 64 j 15.7239 52.3707 7 e 9.8318 25.2250 30.8333 -Andale_Mono.ttf 64 j 15.7239 52.3707 8 : 9.9222 7.2279 30.8333 -Andale_Mono.ttf 64 j 15.7239 52.3707 9 r 10.2247 20.4043 30.6264 -Andale_Mono.ttf 64 j 15.7239 52.3707 10 l -0.0990 20.4167 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 11 i -0.1906 13.3043 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 12 1 0.2054 21.0793 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 13 | 0.1116 4.1457 51.1917 -Andale_Mono.ttf 64 j 15.7239 52.3707 14 N 0.0782 24.3684 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 15 f 0.3299 22.7449 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 16 g 9.8946 26.2862 42.2069 -Andale_Mono.ttf 64 j 15.7239 52.3707 17 d 0.2973 24.9156 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 18 W 0.2803 32.6598 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 19 s 10.1549 22.4960 30.8333 -Andale_Mono.ttf 64 j 15.7239 52.3707 20 c 10.4764 24.2529 30.8333 -Andale_Mono.ttf 64 j 15.7239 52.3707 21 u 10.3488 23.0431 30.6264 -Andale_Mono.ttf 64 j 15.7239 52.3707 22 3 0.0210 22.4376 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 23 ~ 21.4272 31.2431 8.4376 -Andale_Mono.ttf 64 j 15.7239 52.3707 24 # 0.0199 29.7261 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 25 O -0.1534 27.4069 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 26 ` -0.8041 12.2739 8.6445 -Andale_Mono.ttf 64 j 15.7239 52.3707 27 @ -0.0483 29.8848 45.6293 -Andale_Mono.ttf 64 j 15.7239 52.3707 28 F 0.3080 21.8334 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 29 S 0.1343 22.6445 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 30 p 10.2295 24.9156 42.2069 -Andale_Mono.ttf 64 j 15.7239 52.3707 31 “ 0.1776 17.6989 13.2460 -Andale_Mono.ttf 64 j 15.7239 52.3707 32 % -0.0483 32.6598 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 33 £ -0.0649 26.7902 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 34 . 33.8590 7.2279 7.2279 -Andale_Mono.ttf 64 j 15.7239 52.3707 35 2 -0.3534 21.9695 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 36 5 0.4177 22.1304 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 37 m 10.2518 27.6138 30.6264 -Andale_Mono.ttf 64 j 15.7239 52.3707 38 V 0.5597 32.2460 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 39 6 0.0636 25.4319 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 40 w 10.5201 29.5170 30.4195 -Andale_Mono.ttf 64 j 15.7239 52.3707 41 T 0.2078 29.4710 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 42 M 0.2320 25.2250 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 43 G 0.2479 26.5833 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 44 b 0.2910 24.9156 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 45 9 -0.0715 25.2250 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 46 ; 10.1218 7.2279 36.8514 -Andale_Mono.ttf 64 j 15.7239 52.3707 47 D -0.0557 25.2250 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 48 L 0.3778 21.8334 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 49 y 10.4513 26.6417 42.0000 -Andale_Mono.ttf 64 j 15.7239 52.3707 50 ‘ -0.1601 7.2279 13.2460 -Andale_Mono.ttf 64 j 15.7239 52.3707 51 \ 0.2009 24.4014 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 52 R 0.3410 27.3351 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 53 < 5.7900 21.2279 29.2098 -Andale_Mono.ttf 64 j 15.7239 52.3707 54 4 0.1103 27.4836 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 55 8 -0.0280 25.7598 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 56 0 -0.0532 26.7880 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 57 A 0.0400 32.2460 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 58 E 0.3569 21.0793 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 59 B -0.0199 25.0765 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 60 v 10.4146 26.4348 30.4195 -Andale_Mono.ttf 64 j 15.7239 52.3707 61 k 0.2927 26.1253 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 62 J 0.2157 19.6627 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 63 U 0.4165 23.0431 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 64 j -0.1632 15.7239 52.3707 -Andale_Mono.ttf 64 j 15.7239 52.3707 65 ( -0.0573 15.2098 49.6141 -Andale_Mono.ttf 64 j 15.7239 52.3707 66 7 0.2991 23.7080 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 67 § 0.2516 23.8543 52.5776 -Andale_Mono.ttf 64 j 15.7239 52.3707 68 $ -2.8936 22.6445 47.0152 -Andale_Mono.ttf 64 j 15.7239 52.3707 69 € -0.1123 30.5474 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 70 / 0.1195 24.4014 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 71 C -0.5652 26.7112 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 72 * 0.3801 20.1184 22.4376 -Andale_Mono.ttf 64 j 15.7239 52.3707 73 ” -0.0873 17.6989 13.2460 -Andale_Mono.ttf 64 j 15.7239 52.3707 74 ? -0.2411 20.5652 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 75 { 0.1469 15.8848 50.4376 -Andale_Mono.ttf 64 j 15.7239 52.3707 76 } 0.1460 15.8848 50.4376 -Andale_Mono.ttf 64 j 15.7239 52.3707 77 , 33.7495 7.2279 13.2460 -Andale_Mono.ttf 64 j 15.7239 52.3707 78 I 0.0513 17.9971 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 79 ° 0.0652 15.7261 15.7261 -Andale_Mono.ttf 64 j 15.7239 52.3707 80 K 0.2917 28.2377 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 81 H 0.3657 23.0431 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 82 q 10.0810 24.9156 42.2069 -Andale_Mono.ttf 64 j 15.7239 52.3707 83 & 0.0605 32.6598 40.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 84 ’ 0.0044 7.2279 13.2460 -Andale_Mono.ttf 64 j 15.7239 52.3707 85 [ -0.2615 11.2250 47.8696 -Andale_Mono.ttf 64 j 15.7239 52.3707 86 - 22.8151 16.9359 4.1457 -Andale_Mono.ttf 64 j 15.7239 52.3707 87 Y 0.2519 29.8264 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 88 Q 0.2761 28.6167 47.7692 -Andale_Mono.ttf 64 j 15.7239 52.3707 89 " 0.0046 14.9239 15.2098 -Andale_Mono.ttf 64 j 15.7239 52.3707 90 ! 0.0723 7.2279 40.7902 -Andale_Mono.ttf 64 j 15.7239 52.3707 91 x 10.4910 26.2739 30.4195 -Andale_Mono.ttf 64 j 15.7239 52.3707 92 ) 0.0113 15.2098 49.6141 -Andale_Mono.ttf 64 j 15.7239 52.3707 93 = 12.8203 27.1098 15.2098 -Andale_Mono.ttf 64 j 15.7239 52.3707 94 + 6.8014 26.9971 26.9971 -Andale_Mono.ttf 64 j 15.7239 52.3707 95 X 0.3632 31.0946 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 96 » 10.3025 25.2250 29.2098 -Andale_Mono.ttf 64 j 15.7239 52.3707 97 ' 0.2276 4.4529 15.2098 -Andale_Mono.ttf 64 j 15.7239 52.3707 98 ¢ 4.9152 23.6474 41.2224 -Andale_Mono.ttf 64 j 15.7239 52.3707 99 Z 0.2667 24.3684 40.5833 -Andale_Mono.ttf 64 j 15.7239 52.3707 100 > 5.4523 21.2279 29.2098 -Andale_Mono.ttf 64 j 15.7239 52.3707 101 ® -0.1713 35.0793 34.5652 -Andale_Mono.ttf 64 j 15.7239 52.3707 102 © -0.0627 35.0793 34.5652 -Andale_Mono.ttf 64 j 15.7239 52.3707 103 ] 0.2276 11.2250 47.8696 -Andale_Mono.ttf 64 j 15.7239 52.3707 104 é -1.1880 25.2250 42.0460 -Andale_Mono.ttf 64 j 15.7239 52.3707 105 z 10.5261 23.1917 30.4195 -Andale_Mono.ttf 64 j 15.7239 52.3707 106 _ 49.5923 35.0793 3.8362 -Andale_Mono.ttf 64 j 15.7239 52.3707 107 ¥ -0.1220 29.8264 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 1 t 2.3462 22.6445 38.7569 -Andale_Mono.ttf 65 ( 15.2098 49.6141 2 h 0.2095 23.0431 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 3 a 10.0421 24.2529 30.8333 -Andale_Mono.ttf 65 ( 15.2098 49.6141 4 n 10.2408 23.0431 30.6264 -Andale_Mono.ttf 65 ( 15.2098 49.6141 5 P 0.2132 22.8055 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 6 o 10.2071 26.7880 30.8333 -Andale_Mono.ttf 65 ( 15.2098 49.6141 7 e 10.1531 25.2250 30.8333 -Andale_Mono.ttf 65 ( 15.2098 49.6141 8 : 10.5410 7.2279 30.8333 -Andale_Mono.ttf 65 ( 15.2098 49.6141 9 r 9.9222 20.4043 30.6264 -Andale_Mono.ttf 65 ( 15.2098 49.6141 10 l 0.0199 20.4167 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 11 i -0.0446 13.3043 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 12 1 0.0332 21.0793 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 13 | 0.7107 4.1457 51.1917 -Andale_Mono.ttf 65 ( 15.2098 49.6141 14 N 0.1210 24.3684 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 15 f 0.2940 22.7449 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 16 g 10.0833 26.2862 42.2069 -Andale_Mono.ttf 65 ( 15.2098 49.6141 17 d 0.2552 24.9156 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 18 W 0.2557 32.6598 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 19 s 9.9561 22.4960 30.8333 -Andale_Mono.ttf 65 ( 15.2098 49.6141 20 c 10.1526 24.2529 30.8333 -Andale_Mono.ttf 65 ( 15.2098 49.6141 21 u 10.6574 23.0431 30.6264 -Andale_Mono.ttf 65 ( 15.2098 49.6141 22 3 0.0068 22.4376 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 23 ~ 21.2423 31.2431 8.4376 -Andale_Mono.ttf 65 ( 15.2098 49.6141 24 # 0.1341 29.7261 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 25 O -0.0943 27.4069 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 26 ` -1.0748 12.2739 8.6445 -Andale_Mono.ttf 65 ( 15.2098 49.6141 27 @ 0.0245 29.8848 45.6293 -Andale_Mono.ttf 65 ( 15.2098 49.6141 28 F 0.2389 21.8334 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 29 S -0.2178 22.6445 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 30 p 10.0587 24.9156 42.2069 -Andale_Mono.ttf 65 ( 15.2098 49.6141 31 “ 0.2246 17.6989 13.2460 -Andale_Mono.ttf 65 ( 15.2098 49.6141 32 % 0.0111 32.6598 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 33 £ -0.1172 26.7902 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 34 . 33.9626 7.2279 7.2279 -Andale_Mono.ttf 65 ( 15.2098 49.6141 35 2 -0.1620 21.9695 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 36 5 0.1147 22.1304 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 37 m 10.2121 27.6138 30.6264 -Andale_Mono.ttf 65 ( 15.2098 49.6141 38 V 0.0055 32.2460 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 39 6 0.0371 25.4319 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 40 w 10.2920 29.5170 30.4195 -Andale_Mono.ttf 65 ( 15.2098 49.6141 41 T 0.1370 29.4710 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 42 M 0.3164 25.2250 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 43 G -0.0901 26.5833 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 44 b 0.1900 24.9156 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 45 9 0.1364 25.2250 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 46 ; 9.8565 7.2279 36.8514 -Andale_Mono.ttf 65 ( 15.2098 49.6141 47 D 0.2095 25.2250 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 48 L 0.3102 21.8334 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 49 y 10.6414 26.6417 42.0000 -Andale_Mono.ttf 65 ( 15.2098 49.6141 50 ‘ -0.2416 7.2279 13.2460 -Andale_Mono.ttf 65 ( 15.2098 49.6141 51 \ -0.2071 24.4014 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 52 R 0.4565 27.3351 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 53 < 5.5552 21.2279 29.2098 -Andale_Mono.ttf 65 ( 15.2098 49.6141 54 4 0.1241 27.4836 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 55 8 -0.0362 25.7598 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 56 0 -0.2640 26.7880 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 57 A 0.2790 32.2460 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 58 E 0.0337 21.0793 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 59 B -0.0316 25.0765 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 60 v 10.8519 26.4348 30.4195 -Andale_Mono.ttf 65 ( 15.2098 49.6141 61 k 0.2180 26.1253 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 62 J 0.3536 19.6627 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 63 U 0.2032 23.0431 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 64 j -0.1732 15.7239 52.3707 -Andale_Mono.ttf 65 ( 15.2098 49.6141 65 ( 0.6381 15.2098 49.6141 -Andale_Mono.ttf 65 ( 15.2098 49.6141 66 7 0.3912 23.7080 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 67 § 0.1695 23.8543 52.5776 -Andale_Mono.ttf 65 ( 15.2098 49.6141 68 $ -2.8483 22.6445 47.0152 -Andale_Mono.ttf 65 ( 15.2098 49.6141 69 € -0.0810 30.5474 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 70 / -0.1182 24.4014 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 71 C 0.0483 26.7112 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 72 * 0.2333 20.1184 22.4376 -Andale_Mono.ttf 65 ( 15.2098 49.6141 73 ” 0.0894 17.6989 13.2460 -Andale_Mono.ttf 65 ( 15.2098 49.6141 74 ? 0.0753 20.5652 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 75 { -0.0669 15.8848 50.4376 -Andale_Mono.ttf 65 ( 15.2098 49.6141 76 } 0.3192 15.8848 50.4376 -Andale_Mono.ttf 65 ( 15.2098 49.6141 77 , 33.5478 7.2279 13.2460 -Andale_Mono.ttf 65 ( 15.2098 49.6141 78 I 0.3908 17.9971 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 79 ° 0.0000 15.7261 15.7261 -Andale_Mono.ttf 65 ( 15.2098 49.6141 80 K 0.2605 28.2377 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 81 H 0.2946 23.0431 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 82 q 10.0014 24.9156 42.2069 -Andale_Mono.ttf 65 ( 15.2098 49.6141 83 & 0.0672 32.6598 40.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 84 ’ -0.0828 7.2279 13.2460 -Andale_Mono.ttf 65 ( 15.2098 49.6141 85 [ -0.0692 11.2250 47.8696 -Andale_Mono.ttf 65 ( 15.2098 49.6141 86 - 22.5520 16.9359 4.1457 -Andale_Mono.ttf 65 ( 15.2098 49.6141 87 Y 0.1008 29.8264 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 88 Q 0.1575 28.6167 47.7692 -Andale_Mono.ttf 65 ( 15.2098 49.6141 89 " 0.2476 14.9239 15.2098 -Andale_Mono.ttf 65 ( 15.2098 49.6141 90 ! 0.0638 7.2279 40.7902 -Andale_Mono.ttf 65 ( 15.2098 49.6141 91 x 10.1864 26.2739 30.4195 -Andale_Mono.ttf 65 ( 15.2098 49.6141 92 ) 0.2315 15.2098 49.6141 -Andale_Mono.ttf 65 ( 15.2098 49.6141 93 = 12.5737 27.1098 15.2098 -Andale_Mono.ttf 65 ( 15.2098 49.6141 94 + 6.7078 26.9971 26.9971 -Andale_Mono.ttf 65 ( 15.2098 49.6141 95 X 0.2529 31.0946 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 96 » 10.5411 25.2250 29.2098 -Andale_Mono.ttf 65 ( 15.2098 49.6141 97 ' -0.0379 4.4529 15.2098 -Andale_Mono.ttf 65 ( 15.2098 49.6141 98 ¢ 4.9389 23.6474 41.2224 -Andale_Mono.ttf 65 ( 15.2098 49.6141 99 Z 0.4310 24.3684 40.5833 -Andale_Mono.ttf 65 ( 15.2098 49.6141 100 > 5.7092 21.2279 29.2098 -Andale_Mono.ttf 65 ( 15.2098 49.6141 101 ® -0.1544 35.0793 34.5652 -Andale_Mono.ttf 65 ( 15.2098 49.6141 102 © 0.0032 35.0793 34.5652 -Andale_Mono.ttf 65 ( 15.2098 49.6141 103 ] 0.5720 11.2250 47.8696 -Andale_Mono.ttf 65 ( 15.2098 49.6141 104 é -0.9634 25.2250 42.0460 -Andale_Mono.ttf 65 ( 15.2098 49.6141 105 z 10.4342 23.1917 30.4195 -Andale_Mono.ttf 65 ( 15.2098 49.6141 106 _ 49.8534 35.0793 3.8362 -Andale_Mono.ttf 65 ( 15.2098 49.6141 107 ¥ 0.3795 29.8264 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 1 t 1.7577 22.6445 38.7569 -Andale_Mono.ttf 66 7 23.7080 40.5833 2 h -0.1462 23.0431 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 3 a 9.8759 24.2529 30.8333 -Andale_Mono.ttf 66 7 23.7080 40.5833 4 n 9.9241 23.0431 30.6264 -Andale_Mono.ttf 66 7 23.7080 40.5833 5 P -0.1002 22.8055 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 6 o 10.0423 26.7880 30.8333 -Andale_Mono.ttf 66 7 23.7080 40.5833 7 e 9.5881 25.2250 30.8333 -Andale_Mono.ttf 66 7 23.7080 40.5833 8 : 9.8034 7.2279 30.8333 -Andale_Mono.ttf 66 7 23.7080 40.5833 9 r 9.7015 20.4043 30.6264 -Andale_Mono.ttf 66 7 23.7080 40.5833 10 l -0.0031 20.4167 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 11 i -0.1598 13.3043 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 12 1 -0.3569 21.0793 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 13 | -0.1177 4.1457 51.1917 -Andale_Mono.ttf 66 7 23.7080 40.5833 14 N -0.1454 24.3684 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 15 f -0.0358 22.7449 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 16 g 9.9086 26.2862 42.2069 -Andale_Mono.ttf 66 7 23.7080 40.5833 17 d -0.1923 24.9156 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 18 W 0.0322 32.6598 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 19 s 10.0511 22.4960 30.8333 -Andale_Mono.ttf 66 7 23.7080 40.5833 20 c 9.8961 24.2529 30.8333 -Andale_Mono.ttf 66 7 23.7080 40.5833 21 u 10.1178 23.0431 30.6264 -Andale_Mono.ttf 66 7 23.7080 40.5833 22 3 -0.0184 22.4376 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 23 ~ 21.1852 31.2431 8.4376 -Andale_Mono.ttf 66 7 23.7080 40.5833 24 # -0.0362 29.7261 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 25 O -0.0270 27.4069 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 26 ` -1.0686 12.2739 8.6445 -Andale_Mono.ttf 66 7 23.7080 40.5833 27 @ -0.2569 29.8848 45.6293 -Andale_Mono.ttf 66 7 23.7080 40.5833 28 F 0.0379 21.8334 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 29 S -0.2923 22.6445 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 30 p 9.9987 24.9156 42.2069 -Andale_Mono.ttf 66 7 23.7080 40.5833 31 “ -0.4015 17.6989 13.2460 -Andale_Mono.ttf 66 7 23.7080 40.5833 32 % -0.2126 32.6598 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 33 £ -0.2095 26.7902 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 34 . 33.4880 7.2279 7.2279 -Andale_Mono.ttf 66 7 23.7080 40.5833 35 2 -0.0036 21.9695 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 36 5 -0.1330 22.1304 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 37 m 10.1498 27.6138 30.6264 -Andale_Mono.ttf 66 7 23.7080 40.5833 38 V -0.0402 32.2460 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 39 6 -0.1746 25.4319 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 40 w 10.0684 29.5170 30.4195 -Andale_Mono.ttf 66 7 23.7080 40.5833 41 T 0.3213 29.4710 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 42 M 0.1129 25.2250 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 43 G 0.0172 26.5833 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 44 b 0.0422 24.9156 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 45 9 -0.2077 25.2250 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 46 ; 10.2518 7.2279 36.8514 -Andale_Mono.ttf 66 7 23.7080 40.5833 47 D 0.1592 25.2250 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 48 L 0.1017 21.8334 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 49 y 10.1787 26.6417 42.0000 -Andale_Mono.ttf 66 7 23.7080 40.5833 50 ‘ -0.2830 7.2279 13.2460 -Andale_Mono.ttf 66 7 23.7080 40.5833 51 \ -0.2052 24.4014 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 52 R -0.1118 27.3351 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 53 < 5.5034 21.2279 29.2098 -Andale_Mono.ttf 66 7 23.7080 40.5833 54 4 -0.2967 27.4836 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 55 8 -0.1090 25.7598 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 56 0 -0.4467 26.7880 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 57 A -0.0559 32.2460 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 58 E 0.2977 21.0793 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 59 B -0.0442 25.0765 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 60 v 10.2077 26.4348 30.4195 -Andale_Mono.ttf 66 7 23.7080 40.5833 61 k 0.2542 26.1253 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 62 J 0.0828 19.6627 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 63 U 0.0676 23.0431 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 64 j -0.2216 15.7239 52.3707 -Andale_Mono.ttf 66 7 23.7080 40.5833 65 ( -0.4123 15.2098 49.6141 -Andale_Mono.ttf 66 7 23.7080 40.5833 66 7 0.0412 23.7080 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 67 § -0.1353 23.8543 52.5776 -Andale_Mono.ttf 66 7 23.7080 40.5833 68 $ -2.7846 22.6445 47.0152 -Andale_Mono.ttf 66 7 23.7080 40.5833 69 € -0.3299 30.5474 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 70 / -0.6015 24.4014 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 71 C -0.2025 26.7112 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 72 * 0.1456 20.1184 22.4376 -Andale_Mono.ttf 66 7 23.7080 40.5833 73 ” -0.2785 17.6989 13.2460 -Andale_Mono.ttf 66 7 23.7080 40.5833 74 ? -0.0405 20.5652 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 75 { 0.2422 15.8848 50.4376 -Andale_Mono.ttf 66 7 23.7080 40.5833 76 } -0.0776 15.8848 50.4376 -Andale_Mono.ttf 66 7 23.7080 40.5833 77 , 33.4173 7.2279 13.2460 -Andale_Mono.ttf 66 7 23.7080 40.5833 78 I -0.1075 17.9971 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 79 ° -0.0862 15.7261 15.7261 -Andale_Mono.ttf 66 7 23.7080 40.5833 80 K -0.1042 28.2377 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 81 H -0.2152 23.0431 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 82 q 9.6226 24.9156 42.2069 -Andale_Mono.ttf 66 7 23.7080 40.5833 83 & -0.0839 32.6598 40.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 84 ’ -0.2599 7.2279 13.2460 -Andale_Mono.ttf 66 7 23.7080 40.5833 85 [ -0.2111 11.2250 47.8696 -Andale_Mono.ttf 66 7 23.7080 40.5833 86 - 22.4272 16.9359 4.1457 -Andale_Mono.ttf 66 7 23.7080 40.5833 87 Y 0.1378 29.8264 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 88 Q -0.4174 28.6167 47.7692 -Andale_Mono.ttf 66 7 23.7080 40.5833 89 " 0.0875 14.9239 15.2098 -Andale_Mono.ttf 66 7 23.7080 40.5833 90 ! 0.1240 7.2279 40.7902 -Andale_Mono.ttf 66 7 23.7080 40.5833 91 x 10.1457 26.2739 30.4195 -Andale_Mono.ttf 66 7 23.7080 40.5833 92 ) -0.4136 15.2098 49.6141 -Andale_Mono.ttf 66 7 23.7080 40.5833 93 = 12.3395 27.1098 15.2098 -Andale_Mono.ttf 66 7 23.7080 40.5833 94 + 6.5723 26.9971 26.9971 -Andale_Mono.ttf 66 7 23.7080 40.5833 95 X -0.0190 31.0946 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 96 » 10.2187 25.2250 29.2098 -Andale_Mono.ttf 66 7 23.7080 40.5833 97 ' -0.0389 4.4529 15.2098 -Andale_Mono.ttf 66 7 23.7080 40.5833 98 ¢ 4.7591 23.6474 41.2224 -Andale_Mono.ttf 66 7 23.7080 40.5833 99 Z 0.0847 24.3684 40.5833 -Andale_Mono.ttf 66 7 23.7080 40.5833 100 > 5.4199 21.2279 29.2098 -Andale_Mono.ttf 66 7 23.7080 40.5833 101 ® -0.5665 35.0793 34.5652 -Andale_Mono.ttf 66 7 23.7080 40.5833 102 © 0.0029 35.0793 34.5652 -Andale_Mono.ttf 66 7 23.7080 40.5833 103 ] -0.2008 11.2250 47.8696 -Andale_Mono.ttf 66 7 23.7080 40.5833 104 é -1.3495 25.2250 42.0460 -Andale_Mono.ttf 66 7 23.7080 40.5833 105 z 10.1615 23.1917 30.4195 -Andale_Mono.ttf 66 7 23.7080 40.5833 106 _ 49.3069 35.0793 3.8362 -Andale_Mono.ttf 66 7 23.7080 40.5833 107 ¥ -0.0784 29.8264 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 1 t 2.0935 22.6445 38.7569 -Andale_Mono.ttf 67 § 23.8543 52.5776 2 h 0.3440 23.0431 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 3 a 9.9571 24.2529 30.8333 -Andale_Mono.ttf 67 § 23.8543 52.5776 4 n 10.2385 23.0431 30.6264 -Andale_Mono.ttf 67 § 23.8543 52.5776 5 P 0.0973 22.8055 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 6 o 10.3370 26.7880 30.8333 -Andale_Mono.ttf 67 § 23.8543 52.5776 7 e 10.1946 25.2250 30.8333 -Andale_Mono.ttf 67 § 23.8543 52.5776 8 : 9.8787 7.2279 30.8333 -Andale_Mono.ttf 67 § 23.8543 52.5776 9 r 10.4039 20.4043 30.6264 -Andale_Mono.ttf 67 § 23.8543 52.5776 10 l 0.2435 20.4167 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 11 i -0.0609 13.3043 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 12 1 -0.1017 21.0793 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 13 | 0.6103 4.1457 51.1917 -Andale_Mono.ttf 67 § 23.8543 52.5776 14 N -0.1101 24.3684 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 15 f 0.2025 22.7449 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 16 g 10.1929 26.2862 42.2069 -Andale_Mono.ttf 67 § 23.8543 52.5776 17 d 0.0638 24.9156 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 18 W 0.1653 32.6598 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 19 s 10.0439 22.4960 30.8333 -Andale_Mono.ttf 67 § 23.8543 52.5776 20 c 10.2036 24.2529 30.8333 -Andale_Mono.ttf 67 § 23.8543 52.5776 21 u 10.1498 23.0431 30.6264 -Andale_Mono.ttf 67 § 23.8543 52.5776 22 3 0.1557 22.4376 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 23 ~ 21.4027 31.2431 8.4376 -Andale_Mono.ttf 67 § 23.8543 52.5776 24 # 0.2118 29.7261 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 25 O 0.3088 27.4069 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 26 ` -0.6949 12.2739 8.6445 -Andale_Mono.ttf 67 § 23.8543 52.5776 27 @ 0.2586 29.8848 45.6293 -Andale_Mono.ttf 67 § 23.8543 52.5776 28 F 0.2920 21.8334 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 29 S 0.0132 22.6445 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 30 p 9.9567 24.9156 42.2069 -Andale_Mono.ttf 67 § 23.8543 52.5776 31 “ -0.2613 17.6989 13.2460 -Andale_Mono.ttf 67 § 23.8543 52.5776 32 % 0.0324 32.6598 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 33 £ -0.0854 26.7902 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 34 . 33.5277 7.2279 7.2279 -Andale_Mono.ttf 67 § 23.8543 52.5776 35 2 0.1410 21.9695 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 36 5 0.3529 22.1304 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 37 m 10.5257 27.6138 30.6264 -Andale_Mono.ttf 67 § 23.8543 52.5776 38 V 0.1475 32.2460 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 39 6 0.1129 25.4319 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 40 w 10.1683 29.5170 30.4195 -Andale_Mono.ttf 67 § 23.8543 52.5776 41 T 0.3316 29.4710 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 42 M 0.2207 25.2250 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 43 G 0.2416 26.5833 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 44 b 0.4132 24.9156 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 45 9 0.1594 25.2250 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 46 ; 10.3699 7.2279 36.8514 -Andale_Mono.ttf 67 § 23.8543 52.5776 47 D -0.0818 25.2250 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 48 L 0.1078 21.8334 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 49 y 10.3550 26.6417 42.0000 -Andale_Mono.ttf 67 § 23.8543 52.5776 50 ‘ -0.0228 7.2279 13.2460 -Andale_Mono.ttf 67 § 23.8543 52.5776 51 \ -0.1406 24.4014 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 52 R 0.1170 27.3351 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 53 < 5.4841 21.2279 29.2098 -Andale_Mono.ttf 67 § 23.8543 52.5776 54 4 0.4396 27.4836 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 55 8 0.1531 25.7598 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 56 0 0.1284 26.7880 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 57 A 0.4454 32.2460 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 58 E -0.0396 21.0793 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 59 B 0.3738 25.0765 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 60 v 10.1215 26.4348 30.4195 -Andale_Mono.ttf 67 § 23.8543 52.5776 61 k 0.1678 26.1253 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 62 J 0.2727 19.6627 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 63 U 0.3385 23.0431 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 64 j 0.1262 15.7239 52.3707 -Andale_Mono.ttf 67 § 23.8543 52.5776 65 ( 0.0730 15.2098 49.6141 -Andale_Mono.ttf 67 § 23.8543 52.5776 66 7 0.0092 23.7080 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 67 § -0.2326 23.8543 52.5776 -Andale_Mono.ttf 67 § 23.8543 52.5776 68 $ -2.7531 22.6445 47.0152 -Andale_Mono.ttf 67 § 23.8543 52.5776 69 € 0.0175 30.5474 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 70 / 0.0985 24.4014 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 71 C -0.3016 26.7112 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 72 * 0.2069 20.1184 22.4376 -Andale_Mono.ttf 67 § 23.8543 52.5776 73 ” -0.1619 17.6989 13.2460 -Andale_Mono.ttf 67 § 23.8543 52.5776 74 ? -0.1494 20.5652 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 75 { 0.3019 15.8848 50.4376 -Andale_Mono.ttf 67 § 23.8543 52.5776 76 } 0.3832 15.8848 50.4376 -Andale_Mono.ttf 67 § 23.8543 52.5776 77 , 33.7076 7.2279 13.2460 -Andale_Mono.ttf 67 § 23.8543 52.5776 78 I -0.1368 17.9971 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 79 ° 0.1784 15.7261 15.7261 -Andale_Mono.ttf 67 § 23.8543 52.5776 80 K 0.0870 28.2377 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 81 H 0.0719 23.0431 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 82 q 9.9906 24.9156 42.2069 -Andale_Mono.ttf 67 § 23.8543 52.5776 83 & 0.0764 32.6598 40.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 84 ’ -0.1843 7.2279 13.2460 -Andale_Mono.ttf 67 § 23.8543 52.5776 85 [ 0.2828 11.2250 47.8696 -Andale_Mono.ttf 67 § 23.8543 52.5776 86 - 22.6351 16.9359 4.1457 -Andale_Mono.ttf 67 § 23.8543 52.5776 87 Y 0.3680 29.8264 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 88 Q 0.1521 28.6167 47.7692 -Andale_Mono.ttf 67 § 23.8543 52.5776 89 " 0.1454 14.9239 15.2098 -Andale_Mono.ttf 67 § 23.8543 52.5776 90 ! 0.3939 7.2279 40.7902 -Andale_Mono.ttf 67 § 23.8543 52.5776 91 x 10.1536 26.2739 30.4195 -Andale_Mono.ttf 67 § 23.8543 52.5776 92 ) -0.1133 15.2098 49.6141 -Andale_Mono.ttf 67 § 23.8543 52.5776 93 = 12.6653 27.1098 15.2098 -Andale_Mono.ttf 67 § 23.8543 52.5776 94 + 6.8482 26.9971 26.9971 -Andale_Mono.ttf 67 § 23.8543 52.5776 95 X 0.1662 31.0946 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 96 » 10.1977 25.2250 29.2098 -Andale_Mono.ttf 67 § 23.8543 52.5776 97 ' 0.2163 4.4529 15.2098 -Andale_Mono.ttf 67 § 23.8543 52.5776 98 ¢ 4.8788 23.6474 41.2224 -Andale_Mono.ttf 67 § 23.8543 52.5776 99 Z 0.1516 24.3684 40.5833 -Andale_Mono.ttf 67 § 23.8543 52.5776 100 > 5.7132 21.2279 29.2098 -Andale_Mono.ttf 67 § 23.8543 52.5776 101 ® 0.0630 35.0793 34.5652 -Andale_Mono.ttf 67 § 23.8543 52.5776 102 © -0.1770 35.0793 34.5652 -Andale_Mono.ttf 67 § 23.8543 52.5776 103 ] 0.2704 11.2250 47.8696 -Andale_Mono.ttf 67 § 23.8543 52.5776 104 é -0.7558 25.2250 42.0460 -Andale_Mono.ttf 67 § 23.8543 52.5776 105 z 10.3654 23.1917 30.4195 -Andale_Mono.ttf 67 § 23.8543 52.5776 106 _ 49.7623 35.0793 3.8362 -Andale_Mono.ttf 67 § 23.8543 52.5776 107 ¥ 0.3479 29.8264 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 1 t 5.0161 22.6445 38.7569 -Andale_Mono.ttf 68 $ 22.6445 47.0152 2 h 3.1350 23.0431 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 3 a 13.1683 24.2529 30.8333 -Andale_Mono.ttf 68 $ 22.6445 47.0152 4 n 12.9813 23.0431 30.6264 -Andale_Mono.ttf 68 $ 22.6445 47.0152 5 P 2.8552 22.8055 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 6 o 12.7942 26.7880 30.8333 -Andale_Mono.ttf 68 $ 22.6445 47.0152 7 e 13.0658 25.2250 30.8333 -Andale_Mono.ttf 68 $ 22.6445 47.0152 8 : 12.8637 7.2279 30.8333 -Andale_Mono.ttf 68 $ 22.6445 47.0152 9 r 13.0524 20.4043 30.6264 -Andale_Mono.ttf 68 $ 22.6445 47.0152 10 l 2.8110 20.4167 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 11 i 3.0188 13.3043 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 12 1 2.7154 21.0793 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 13 | 2.9936 4.1457 51.1917 -Andale_Mono.ttf 68 $ 22.6445 47.0152 14 N 3.1299 24.3684 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 15 f 3.1815 22.7449 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 16 g 12.9361 26.2862 42.2069 -Andale_Mono.ttf 68 $ 22.6445 47.0152 17 d 2.8897 24.9156 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 18 W 3.0603 32.6598 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 19 s 12.8378 22.4960 30.8333 -Andale_Mono.ttf 68 $ 22.6445 47.0152 20 c 12.9432 24.2529 30.8333 -Andale_Mono.ttf 68 $ 22.6445 47.0152 21 u 12.8978 23.0431 30.6264 -Andale_Mono.ttf 68 $ 22.6445 47.0152 22 3 2.7612 22.4376 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 23 ~ 24.0827 31.2431 8.4376 -Andale_Mono.ttf 68 $ 22.6445 47.0152 24 # 2.8965 29.7261 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 25 O 2.8192 27.4069 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 26 ` 1.6806 12.2739 8.6445 -Andale_Mono.ttf 68 $ 22.6445 47.0152 27 @ 2.8761 29.8848 45.6293 -Andale_Mono.ttf 68 $ 22.6445 47.0152 28 F 3.0296 21.8334 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 29 S 2.7338 22.6445 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 30 p 12.9156 24.9156 42.2069 -Andale_Mono.ttf 68 $ 22.6445 47.0152 31 “ 2.6836 17.6989 13.2460 -Andale_Mono.ttf 68 $ 22.6445 47.0152 32 % 2.8939 32.6598 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 33 £ 2.6631 26.7902 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 34 . 36.6021 7.2279 7.2279 -Andale_Mono.ttf 68 $ 22.6445 47.0152 35 2 2.6922 21.9695 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 36 5 2.8234 22.1304 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 37 m 13.0309 27.6138 30.6264 -Andale_Mono.ttf 68 $ 22.6445 47.0152 38 V 3.1313 32.2460 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 39 6 2.7499 25.4319 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 40 w 13.4414 29.5170 30.4195 -Andale_Mono.ttf 68 $ 22.6445 47.0152 41 T 2.5027 29.4710 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 42 M 3.1899 25.2250 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 43 G 2.7405 26.5833 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 44 b 3.0535 24.9156 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 45 9 2.6101 25.2250 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 46 ; 12.9776 7.2279 36.8514 -Andale_Mono.ttf 68 $ 22.6445 47.0152 47 D 2.9532 25.2250 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 48 L 3.1242 21.8334 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 49 y 12.9444 26.6417 42.0000 -Andale_Mono.ttf 68 $ 22.6445 47.0152 50 ‘ 2.8560 7.2279 13.2460 -Andale_Mono.ttf 68 $ 22.6445 47.0152 51 \ 2.7359 24.4014 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 52 R 2.8218 27.3351 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 53 < 8.5400 21.2279 29.2098 -Andale_Mono.ttf 68 $ 22.6445 47.0152 54 4 2.8560 27.4836 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 55 8 2.8344 25.7598 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 56 0 2.9388 26.7880 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 57 A 2.9336 32.2460 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 58 E 3.1595 21.0793 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 59 B 3.2781 25.0765 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 60 v 13.4016 26.4348 30.4195 -Andale_Mono.ttf 68 $ 22.6445 47.0152 61 k 3.0666 26.1253 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 62 J 2.7598 19.6627 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 63 U 2.9380 23.0431 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 64 j 2.8283 15.7239 52.3707 -Andale_Mono.ttf 68 $ 22.6445 47.0152 65 ( 2.9526 15.2098 49.6141 -Andale_Mono.ttf 68 $ 22.6445 47.0152 66 7 2.9495 23.7080 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 67 § 2.6704 23.8543 52.5776 -Andale_Mono.ttf 68 $ 22.6445 47.0152 68 $ -0.0986 22.6445 47.0152 -Andale_Mono.ttf 68 $ 22.6445 47.0152 69 € 3.0824 30.5474 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 70 / 2.8283 24.4014 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 71 C 2.8501 26.7112 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 72 * 3.0258 20.1184 22.4376 -Andale_Mono.ttf 68 $ 22.6445 47.0152 73 ” 2.3706 17.6989 13.2460 -Andale_Mono.ttf 68 $ 22.6445 47.0152 74 ? 2.9482 20.5652 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 75 { 3.0030 15.8848 50.4376 -Andale_Mono.ttf 68 $ 22.6445 47.0152 76 } 3.0947 15.8848 50.4376 -Andale_Mono.ttf 68 $ 22.6445 47.0152 77 , 36.2837 7.2279 13.2460 -Andale_Mono.ttf 68 $ 22.6445 47.0152 78 I 3.1451 17.9971 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 79 ° 2.7079 15.7261 15.7261 -Andale_Mono.ttf 68 $ 22.6445 47.0152 80 K 2.8458 28.2377 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 81 H 2.9562 23.0431 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 82 q 12.7661 24.9156 42.2069 -Andale_Mono.ttf 68 $ 22.6445 47.0152 83 & 2.8095 32.6598 40.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 84 ’ 2.7801 7.2279 13.2460 -Andale_Mono.ttf 68 $ 22.6445 47.0152 85 [ 2.6779 11.2250 47.8696 -Andale_Mono.ttf 68 $ 22.6445 47.0152 86 - 25.5678 16.9359 4.1457 -Andale_Mono.ttf 68 $ 22.6445 47.0152 87 Y 2.9342 29.8264 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 88 Q 2.7446 28.6167 47.7692 -Andale_Mono.ttf 68 $ 22.6445 47.0152 89 " 3.0208 14.9239 15.2098 -Andale_Mono.ttf 68 $ 22.6445 47.0152 90 ! 2.9525 7.2279 40.7902 -Andale_Mono.ttf 68 $ 22.6445 47.0152 91 x 13.2420 26.2739 30.4195 -Andale_Mono.ttf 68 $ 22.6445 47.0152 92 ) 2.8995 15.2098 49.6141 -Andale_Mono.ttf 68 $ 22.6445 47.0152 93 = 15.8552 27.1098 15.2098 -Andale_Mono.ttf 68 $ 22.6445 47.0152 94 + 9.4379 26.9971 26.9971 -Andale_Mono.ttf 68 $ 22.6445 47.0152 95 X 3.0258 31.0946 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 96 » 12.3464 25.2250 29.2098 -Andale_Mono.ttf 68 $ 22.6445 47.0152 97 ' 2.8978 4.4529 15.2098 -Andale_Mono.ttf 68 $ 22.6445 47.0152 98 ¢ 7.3399 23.6474 41.2224 -Andale_Mono.ttf 68 $ 22.6445 47.0152 99 Z 2.9447 24.3684 40.5833 -Andale_Mono.ttf 68 $ 22.6445 47.0152 100 > 8.4376 21.2279 29.2098 -Andale_Mono.ttf 68 $ 22.6445 47.0152 101 ® 2.8225 35.0793 34.5652 -Andale_Mono.ttf 68 $ 22.6445 47.0152 102 © 2.8014 35.0793 34.5652 -Andale_Mono.ttf 68 $ 22.6445 47.0152 103 ] 2.8246 11.2250 47.8696 -Andale_Mono.ttf 68 $ 22.6445 47.0152 104 é 1.7539 25.2250 42.0460 -Andale_Mono.ttf 68 $ 22.6445 47.0152 105 z 13.1821 23.1917 30.4195 -Andale_Mono.ttf 68 $ 22.6445 47.0152 106 _ 52.5823 35.0793 3.8362 -Andale_Mono.ttf 68 $ 22.6445 47.0152 107 ¥ 3.2007 29.8264 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 1 t 2.0676 22.6445 38.7569 -Andale_Mono.ttf 69 € 30.5474 40.9971 2 h 0.1778 23.0431 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 3 a 9.8800 24.2529 30.8333 -Andale_Mono.ttf 69 € 30.5474 40.9971 4 n 10.5008 23.0431 30.6264 -Andale_Mono.ttf 69 € 30.5474 40.9971 5 P 0.0489 22.8055 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 6 o 10.1422 26.7880 30.8333 -Andale_Mono.ttf 69 € 30.5474 40.9971 7 e 10.2274 25.2250 30.8333 -Andale_Mono.ttf 69 € 30.5474 40.9971 8 : 10.3450 7.2279 30.8333 -Andale_Mono.ttf 69 € 30.5474 40.9971 9 r 10.3343 20.4043 30.6264 -Andale_Mono.ttf 69 € 30.5474 40.9971 10 l 0.1977 20.4167 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 11 i 0.1757 13.3043 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 12 1 0.1532 21.0793 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 13 | 0.2665 4.1457 51.1917 -Andale_Mono.ttf 69 € 30.5474 40.9971 14 N 0.1639 24.3684 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 15 f 0.0109 22.7449 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 16 g 10.4291 26.2862 42.2069 -Andale_Mono.ttf 69 € 30.5474 40.9971 17 d 0.2445 24.9156 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 18 W -0.1551 32.6598 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 19 s 10.0747 22.4960 30.8333 -Andale_Mono.ttf 69 € 30.5474 40.9971 20 c 10.1832 24.2529 30.8333 -Andale_Mono.ttf 69 € 30.5474 40.9971 21 u 10.4534 23.0431 30.6264 -Andale_Mono.ttf 69 € 30.5474 40.9971 22 3 -0.0671 22.4376 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 23 ~ 21.2850 31.2431 8.4376 -Andale_Mono.ttf 69 € 30.5474 40.9971 24 # 0.3085 29.7261 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 25 O 0.3462 27.4069 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 26 ` -1.0123 12.2739 8.6445 -Andale_Mono.ttf 69 € 30.5474 40.9971 27 @ 0.2094 29.8848 45.6293 -Andale_Mono.ttf 69 € 30.5474 40.9971 28 F 0.1981 21.8334 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 29 S 0.0465 22.6445 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 30 p 9.9747 24.9156 42.2069 -Andale_Mono.ttf 69 € 30.5474 40.9971 31 “ -0.1914 17.6989 13.2460 -Andale_Mono.ttf 69 € 30.5474 40.9971 32 % 0.0828 32.6598 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 33 £ 0.1929 26.7902 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 34 . 33.6695 7.2279 7.2279 -Andale_Mono.ttf 69 € 30.5474 40.9971 35 2 -0.1864 21.9695 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 36 5 0.0603 22.1304 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 37 m 10.3075 27.6138 30.6264 -Andale_Mono.ttf 69 € 30.5474 40.9971 38 V 0.5638 32.2460 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 39 6 -0.1839 25.4319 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 40 w 10.3948 29.5170 30.4195 -Andale_Mono.ttf 69 € 30.5474 40.9971 41 T 0.3314 29.4710 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 42 M 0.1558 25.2250 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 43 G 0.0264 26.5833 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 44 b 0.0414 24.9156 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 45 9 0.1950 25.2250 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 46 ; 10.1337 7.2279 36.8514 -Andale_Mono.ttf 69 € 30.5474 40.9971 47 D 0.2006 25.2250 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 48 L 0.0288 21.8334 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 49 y 10.7151 26.6417 42.0000 -Andale_Mono.ttf 69 € 30.5474 40.9971 50 ‘ 0.1111 7.2279 13.2460 -Andale_Mono.ttf 69 € 30.5474 40.9971 51 \ 0.0415 24.4014 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 52 R 0.3385 27.3351 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 53 < 5.5354 21.2279 29.2098 -Andale_Mono.ttf 69 € 30.5474 40.9971 54 4 0.4977 27.4836 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 55 8 0.1303 25.7598 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 56 0 0.2548 26.7880 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 57 A 0.5094 32.2460 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 58 E 0.0799 21.0793 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 59 B 0.2879 25.0765 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 60 v 10.2429 26.4348 30.4195 -Andale_Mono.ttf 69 € 30.5474 40.9971 61 k 0.2768 26.1253 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 62 J 0.2879 19.6627 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 63 U 0.0431 23.0431 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 64 j -0.3665 15.7239 52.3707 -Andale_Mono.ttf 69 € 30.5474 40.9971 65 ( -0.1655 15.2098 49.6141 -Andale_Mono.ttf 69 € 30.5474 40.9971 66 7 0.3663 23.7080 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 67 § -0.0784 23.8543 52.5776 -Andale_Mono.ttf 69 € 30.5474 40.9971 68 $ -2.8497 22.6445 47.0152 -Andale_Mono.ttf 69 € 30.5474 40.9971 69 € -0.2845 30.5474 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 70 / 0.2465 24.4014 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 71 C 0.1701 26.7112 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 72 * 0.3034 20.1184 22.4376 -Andale_Mono.ttf 69 € 30.5474 40.9971 73 ” -0.0070 17.6989 13.2460 -Andale_Mono.ttf 69 € 30.5474 40.9971 74 ? 0.0345 20.5652 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 75 { 0.1009 15.8848 50.4376 -Andale_Mono.ttf 69 € 30.5474 40.9971 76 } 0.3010 15.8848 50.4376 -Andale_Mono.ttf 69 € 30.5474 40.9971 77 , 33.7104 7.2279 13.2460 -Andale_Mono.ttf 69 € 30.5474 40.9971 78 I 0.2550 17.9971 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 79 ° 0.1459 15.7261 15.7261 -Andale_Mono.ttf 69 € 30.5474 40.9971 80 K 0.4498 28.2377 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 81 H 0.2874 23.0431 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 82 q 10.3128 24.9156 42.2069 -Andale_Mono.ttf 69 € 30.5474 40.9971 83 & 0.2265 32.6598 40.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 84 ’ -0.0057 7.2279 13.2460 -Andale_Mono.ttf 69 € 30.5474 40.9971 85 [ 0.3179 11.2250 47.8696 -Andale_Mono.ttf 69 € 30.5474 40.9971 86 - 22.5636 16.9359 4.1457 -Andale_Mono.ttf 69 € 30.5474 40.9971 87 Y 0.1090 29.8264 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 88 Q -0.1330 28.6167 47.7692 -Andale_Mono.ttf 69 € 30.5474 40.9971 89 " 0.0614 14.9239 15.2098 -Andale_Mono.ttf 69 € 30.5474 40.9971 90 ! 0.4220 7.2279 40.7902 -Andale_Mono.ttf 69 € 30.5474 40.9971 91 x 10.3017 26.2739 30.4195 -Andale_Mono.ttf 69 € 30.5474 40.9971 92 ) 0.2325 15.2098 49.6141 -Andale_Mono.ttf 69 € 30.5474 40.9971 93 = 12.5751 27.1098 15.2098 -Andale_Mono.ttf 69 € 30.5474 40.9971 94 + 6.9813 26.9971 26.9971 -Andale_Mono.ttf 69 € 30.5474 40.9971 95 X 0.2837 31.0946 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 96 » 9.7724 25.2250 29.2098 -Andale_Mono.ttf 69 € 30.5474 40.9971 97 ' 0.1385 4.4529 15.2098 -Andale_Mono.ttf 69 € 30.5474 40.9971 98 ¢ 4.7548 23.6474 41.2224 -Andale_Mono.ttf 69 € 30.5474 40.9971 99 Z 0.2869 24.3684 40.5833 -Andale_Mono.ttf 69 € 30.5474 40.9971 100 > 5.7519 21.2279 29.2098 -Andale_Mono.ttf 69 € 30.5474 40.9971 101 ® -0.0017 35.0793 34.5652 -Andale_Mono.ttf 69 € 30.5474 40.9971 102 © -0.1726 35.0793 34.5652 -Andale_Mono.ttf 69 € 30.5474 40.9971 103 ] 0.1962 11.2250 47.8696 -Andale_Mono.ttf 69 € 30.5474 40.9971 104 é -1.2333 25.2250 42.0460 -Andale_Mono.ttf 69 € 30.5474 40.9971 105 z 10.5753 23.1917 30.4195 -Andale_Mono.ttf 69 € 30.5474 40.9971 106 _ 49.9939 35.0793 3.8362 -Andale_Mono.ttf 69 € 30.5474 40.9971 107 ¥ 0.0379 29.8264 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 1 t 2.1596 22.6445 38.7569 -Andale_Mono.ttf 70 / 24.4014 40.9971 2 h -0.0151 23.0431 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 3 a 10.0901 24.2529 30.8333 -Andale_Mono.ttf 70 / 24.4014 40.9971 4 n 10.1350 23.0431 30.6264 -Andale_Mono.ttf 70 / 24.4014 40.9971 5 P 0.1054 22.8055 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 6 o 10.1797 26.7880 30.8333 -Andale_Mono.ttf 70 / 24.4014 40.9971 7 e 9.8305 25.2250 30.8333 -Andale_Mono.ttf 70 / 24.4014 40.9971 8 : 10.0940 7.2279 30.8333 -Andale_Mono.ttf 70 / 24.4014 40.9971 9 r 10.1531 20.4043 30.6264 -Andale_Mono.ttf 70 / 24.4014 40.9971 10 l 0.3897 20.4167 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 11 i 0.2027 13.3043 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 12 1 0.2046 21.0793 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 13 | 0.1138 4.1457 51.1917 -Andale_Mono.ttf 70 / 24.4014 40.9971 14 N 0.0732 24.3684 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 15 f 0.4159 22.7449 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 16 g 10.0080 26.2862 42.2069 -Andale_Mono.ttf 70 / 24.4014 40.9971 17 d 0.0092 24.9156 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 18 W 0.1668 32.6598 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 19 s 9.8952 22.4960 30.8333 -Andale_Mono.ttf 70 / 24.4014 40.9971 20 c 10.2910 24.2529 30.8333 -Andale_Mono.ttf 70 / 24.4014 40.9971 21 u 10.0915 23.0431 30.6264 -Andale_Mono.ttf 70 / 24.4014 40.9971 22 3 0.3154 22.4376 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 23 ~ 21.2804 31.2431 8.4376 -Andale_Mono.ttf 70 / 24.4014 40.9971 24 # -0.0055 29.7261 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 25 O -0.0600 27.4069 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 26 ` -1.3715 12.2739 8.6445 -Andale_Mono.ttf 70 / 24.4014 40.9971 27 @ 0.1843 29.8848 45.6293 -Andale_Mono.ttf 70 / 24.4014 40.9971 28 F 0.0883 21.8334 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 29 S -0.1425 22.6445 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 30 p 10.2448 24.9156 42.2069 -Andale_Mono.ttf 70 / 24.4014 40.9971 31 “ -0.3320 17.6989 13.2460 -Andale_Mono.ttf 70 / 24.4014 40.9971 32 % -0.1991 32.6598 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 33 £ -0.2992 26.7902 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 34 . 33.5415 7.2279 7.2279 -Andale_Mono.ttf 70 / 24.4014 40.9971 35 2 -0.0017 21.9695 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 36 5 0.0381 22.1304 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 37 m 10.1611 27.6138 30.6264 -Andale_Mono.ttf 70 / 24.4014 40.9971 38 V -0.0008 32.2460 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 39 6 -0.0716 25.4319 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 40 w 10.2879 29.5170 30.4195 -Andale_Mono.ttf 70 / 24.4014 40.9971 41 T 0.1456 29.4710 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 42 M 0.2287 25.2250 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 43 G -0.2152 26.5833 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 44 b 0.1716 24.9156 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 45 9 0.0236 25.2250 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 46 ; 10.1475 7.2279 36.8514 -Andale_Mono.ttf 70 / 24.4014 40.9971 47 D 0.5307 25.2250 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 48 L 0.0527 21.8334 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 49 y 10.4979 26.6417 42.0000 -Andale_Mono.ttf 70 / 24.4014 40.9971 50 ‘ -0.0948 7.2279 13.2460 -Andale_Mono.ttf 70 / 24.4014 40.9971 51 \ -0.0460 24.4014 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 52 R 0.1147 27.3351 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 53 < 5.7028 21.2279 29.2098 -Andale_Mono.ttf 70 / 24.4014 40.9971 54 4 0.3356 27.4836 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 55 8 -0.1341 25.7598 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 56 0 0.0713 26.7880 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 57 A 0.1989 32.2460 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 58 E 0.1259 21.0793 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 59 B 0.1215 25.0765 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 60 v 10.4478 26.4348 30.4195 -Andale_Mono.ttf 70 / 24.4014 40.9971 61 k 0.0136 26.1253 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 62 J 0.0655 19.6627 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 63 U 0.4315 23.0431 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 64 j -0.2291 15.7239 52.3707 -Andale_Mono.ttf 70 / 24.4014 40.9971 65 ( -0.0559 15.2098 49.6141 -Andale_Mono.ttf 70 / 24.4014 40.9971 66 7 0.2614 23.7080 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 67 § -0.1362 23.8543 52.5776 -Andale_Mono.ttf 70 / 24.4014 40.9971 68 $ -2.8689 22.6445 47.0152 -Andale_Mono.ttf 70 / 24.4014 40.9971 69 € -0.0000 30.5474 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 70 / -0.1048 24.4014 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 71 C -0.0004 26.7112 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 72 * 0.2879 20.1184 22.4376 -Andale_Mono.ttf 70 / 24.4014 40.9971 73 ” -0.5033 17.6989 13.2460 -Andale_Mono.ttf 70 / 24.4014 40.9971 74 ? 0.1258 20.5652 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 75 { 0.0785 15.8848 50.4376 -Andale_Mono.ttf 70 / 24.4014 40.9971 76 } 0.1617 15.8848 50.4376 -Andale_Mono.ttf 70 / 24.4014 40.9971 77 , 33.6922 7.2279 13.2460 -Andale_Mono.ttf 70 / 24.4014 40.9971 78 I 0.1068 17.9971 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 79 ° -0.0690 15.7261 15.7261 -Andale_Mono.ttf 70 / 24.4014 40.9971 80 K 0.2477 28.2377 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 81 H 0.0117 23.0431 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 82 q 9.9651 24.9156 42.2069 -Andale_Mono.ttf 70 / 24.4014 40.9971 83 & -0.0607 32.6598 40.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 84 ’ 0.1498 7.2279 13.2460 -Andale_Mono.ttf 70 / 24.4014 40.9971 85 [ 0.2767 11.2250 47.8696 -Andale_Mono.ttf 70 / 24.4014 40.9971 86 - 22.5773 16.9359 4.1457 -Andale_Mono.ttf 70 / 24.4014 40.9971 87 Y 0.0458 29.8264 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 88 Q 0.2272 28.6167 47.7692 -Andale_Mono.ttf 70 / 24.4014 40.9971 89 " -0.0596 14.9239 15.2098 -Andale_Mono.ttf 70 / 24.4014 40.9971 90 ! 0.0468 7.2279 40.7902 -Andale_Mono.ttf 70 / 24.4014 40.9971 91 x 9.9361 26.2739 30.4195 -Andale_Mono.ttf 70 / 24.4014 40.9971 92 ) 0.1575 15.2098 49.6141 -Andale_Mono.ttf 70 / 24.4014 40.9971 93 = 13.0032 27.1098 15.2098 -Andale_Mono.ttf 70 / 24.4014 40.9971 94 + 6.6441 26.9971 26.9971 -Andale_Mono.ttf 70 / 24.4014 40.9971 95 X 0.4257 31.0946 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 96 » 9.8460 25.2250 29.2098 -Andale_Mono.ttf 70 / 24.4014 40.9971 97 ' 0.0512 4.4529 15.2098 -Andale_Mono.ttf 70 / 24.4014 40.9971 98 ¢ 4.7287 23.6474 41.2224 -Andale_Mono.ttf 70 / 24.4014 40.9971 99 Z 0.3914 24.3684 40.5833 -Andale_Mono.ttf 70 / 24.4014 40.9971 100 > 5.7554 21.2279 29.2098 -Andale_Mono.ttf 70 / 24.4014 40.9971 101 ® -0.2094 35.0793 34.5652 -Andale_Mono.ttf 70 / 24.4014 40.9971 102 © -0.0663 35.0793 34.5652 -Andale_Mono.ttf 70 / 24.4014 40.9971 103 ] 0.2767 11.2250 47.8696 -Andale_Mono.ttf 70 / 24.4014 40.9971 104 é -1.2151 25.2250 42.0460 -Andale_Mono.ttf 70 / 24.4014 40.9971 105 z 10.2207 23.1917 30.4195 -Andale_Mono.ttf 70 / 24.4014 40.9971 106 _ 49.6170 35.0793 3.8362 -Andale_Mono.ttf 70 / 24.4014 40.9971 107 ¥ 0.1379 29.8264 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 1 t 2.1936 22.6445 38.7569 -Andale_Mono.ttf 71 C 26.7112 40.9971 2 h 0.1835 23.0431 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 3 a 10.2518 24.2529 30.8333 -Andale_Mono.ttf 71 C 26.7112 40.9971 4 n 9.9213 23.0431 30.6264 -Andale_Mono.ttf 71 C 26.7112 40.9971 5 P -0.0666 22.8055 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 6 o 10.1526 26.7880 30.8333 -Andale_Mono.ttf 71 C 26.7112 40.9971 7 e 10.1199 25.2250 30.8333 -Andale_Mono.ttf 71 C 26.7112 40.9971 8 : 10.1441 7.2279 30.8333 -Andale_Mono.ttf 71 C 26.7112 40.9971 9 r 10.2465 20.4043 30.6264 -Andale_Mono.ttf 71 C 26.7112 40.9971 10 l 0.3330 20.4167 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 11 i -0.0718 13.3043 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 12 1 0.1284 21.0793 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 13 | 0.2511 4.1457 51.1917 -Andale_Mono.ttf 71 C 26.7112 40.9971 14 N 0.2479 24.3684 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 15 f 0.4427 22.7449 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 16 g 10.2564 26.2862 42.2069 -Andale_Mono.ttf 71 C 26.7112 40.9971 17 d 0.1439 24.9156 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 18 W 0.1376 32.6598 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 19 s 10.3343 22.4960 30.8333 -Andale_Mono.ttf 71 C 26.7112 40.9971 20 c 9.8720 24.2529 30.8333 -Andale_Mono.ttf 71 C 26.7112 40.9971 21 u 10.3708 23.0431 30.6264 -Andale_Mono.ttf 71 C 26.7112 40.9971 22 3 -0.0603 22.4376 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 23 ~ 21.0017 31.2431 8.4376 -Andale_Mono.ttf 71 C 26.7112 40.9971 24 # 0.2467 29.7261 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 25 O -0.1248 27.4069 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 26 ` -1.2197 12.2739 8.6445 -Andale_Mono.ttf 71 C 26.7112 40.9971 27 @ 0.0398 29.8848 45.6293 -Andale_Mono.ttf 71 C 26.7112 40.9971 28 F 0.0632 21.8334 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 29 S -0.0345 22.6445 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 30 p 9.9450 24.9156 42.2069 -Andale_Mono.ttf 71 C 26.7112 40.9971 31 “ 0.1106 17.6989 13.2460 -Andale_Mono.ttf 71 C 26.7112 40.9971 32 % 0.0000 32.6598 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 33 £ -0.1340 26.7902 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 34 . 33.7057 7.2279 7.2279 -Andale_Mono.ttf 71 C 26.7112 40.9971 35 2 -0.2036 21.9695 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 36 5 -0.2906 22.1304 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 37 m 10.1983 27.6138 30.6264 -Andale_Mono.ttf 71 C 26.7112 40.9971 38 V -0.0406 32.2460 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 39 6 -0.1075 25.4319 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 40 w 10.4628 29.5170 30.4195 -Andale_Mono.ttf 71 C 26.7112 40.9971 41 T 0.5626 29.4710 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 42 M 0.3998 25.2250 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 43 G 0.1467 26.5833 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 44 b 0.2037 24.9156 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 45 9 0.0594 25.2250 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 46 ; 10.2419 7.2279 36.8514 -Andale_Mono.ttf 71 C 26.7112 40.9971 47 D 0.3000 25.2250 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 48 L 0.2927 21.8334 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 49 y 10.1147 26.6417 42.0000 -Andale_Mono.ttf 71 C 26.7112 40.9971 50 ‘ 0.2030 7.2279 13.2460 -Andale_Mono.ttf 71 C 26.7112 40.9971 51 \ -0.3891 24.4014 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 52 R 0.0437 27.3351 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 53 < 5.6278 21.2279 29.2098 -Andale_Mono.ttf 71 C 26.7112 40.9971 54 4 -0.0315 27.4836 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 55 8 0.2151 25.7598 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 56 0 0.4770 26.7880 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 57 A 0.4272 32.2460 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 58 E 0.3281 21.0793 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 59 B 0.0825 25.0765 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 60 v 10.4500 26.4348 30.4195 -Andale_Mono.ttf 71 C 26.7112 40.9971 61 k 0.1630 26.1253 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 62 J 0.0184 19.6627 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 63 U 0.1094 23.0431 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 64 j -0.1190 15.7239 52.3707 -Andale_Mono.ttf 71 C 26.7112 40.9971 65 ( -0.1435 15.2098 49.6141 -Andale_Mono.ttf 71 C 26.7112 40.9971 66 7 0.3617 23.7080 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 67 § -0.2256 23.8543 52.5776 -Andale_Mono.ttf 71 C 26.7112 40.9971 68 $ -2.7252 22.6445 47.0152 -Andale_Mono.ttf 71 C 26.7112 40.9971 69 € -0.1199 30.5474 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 70 / -0.1132 24.4014 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 71 C 0.2304 26.7112 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 72 * 0.3046 20.1184 22.4376 -Andale_Mono.ttf 71 C 26.7112 40.9971 73 ” -0.0488 17.6989 13.2460 -Andale_Mono.ttf 71 C 26.7112 40.9971 74 ? 0.2184 20.5652 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 75 { 0.4345 15.8848 50.4376 -Andale_Mono.ttf 71 C 26.7112 40.9971 76 } 0.0991 15.8848 50.4376 -Andale_Mono.ttf 71 C 26.7112 40.9971 77 , 33.5367 7.2279 13.2460 -Andale_Mono.ttf 71 C 26.7112 40.9971 78 I 0.2696 17.9971 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 79 ° 0.0175 15.7261 15.7261 -Andale_Mono.ttf 71 C 26.7112 40.9971 80 K 0.6217 28.2377 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 81 H 0.0909 23.0431 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 82 q 10.1369 24.9156 42.2069 -Andale_Mono.ttf 71 C 26.7112 40.9971 83 & -0.2792 32.6598 40.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 84 ’ 0.1845 7.2279 13.2460 -Andale_Mono.ttf 71 C 26.7112 40.9971 85 [ 0.1576 11.2250 47.8696 -Andale_Mono.ttf 71 C 26.7112 40.9971 86 - 22.5683 16.9359 4.1457 -Andale_Mono.ttf 71 C 26.7112 40.9971 87 Y -0.0383 29.8264 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 88 Q 0.0793 28.6167 47.7692 -Andale_Mono.ttf 71 C 26.7112 40.9971 89 " 0.0462 14.9239 15.2098 -Andale_Mono.ttf 71 C 26.7112 40.9971 90 ! 0.1433 7.2279 40.7902 -Andale_Mono.ttf 71 C 26.7112 40.9971 91 x 10.4740 26.2739 30.4195 -Andale_Mono.ttf 71 C 26.7112 40.9971 92 ) 0.0415 15.2098 49.6141 -Andale_Mono.ttf 71 C 26.7112 40.9971 93 = 12.6377 27.1098 15.2098 -Andale_Mono.ttf 71 C 26.7112 40.9971 94 + 6.7463 26.9971 26.9971 -Andale_Mono.ttf 71 C 26.7112 40.9971 95 X 0.3956 31.0946 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 96 » 10.3030 25.2250 29.2098 -Andale_Mono.ttf 71 C 26.7112 40.9971 97 ' -0.0600 4.4529 15.2098 -Andale_Mono.ttf 71 C 26.7112 40.9971 98 ¢ 4.9106 23.6474 41.2224 -Andale_Mono.ttf 71 C 26.7112 40.9971 99 Z 0.0797 24.3684 40.5833 -Andale_Mono.ttf 71 C 26.7112 40.9971 100 > 5.8609 21.2279 29.2098 -Andale_Mono.ttf 71 C 26.7112 40.9971 101 ® 0.0739 35.0793 34.5652 -Andale_Mono.ttf 71 C 26.7112 40.9971 102 © -0.1071 35.0793 34.5652 -Andale_Mono.ttf 71 C 26.7112 40.9971 103 ] 0.3414 11.2250 47.8696 -Andale_Mono.ttf 71 C 26.7112 40.9971 104 é -1.0864 25.2250 42.0460 -Andale_Mono.ttf 71 C 26.7112 40.9971 105 z 10.3085 23.1917 30.4195 -Andale_Mono.ttf 71 C 26.7112 40.9971 106 _ 49.8787 35.0793 3.8362 -Andale_Mono.ttf 71 C 26.7112 40.9971 107 ¥ 0.3238 29.8264 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 1 t 2.1255 22.6445 38.7569 -Andale_Mono.ttf 72 * 20.1184 22.4376 2 h -0.1734 23.0431 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 3 a 9.8615 24.2529 30.8333 -Andale_Mono.ttf 72 * 20.1184 22.4376 4 n 9.9086 23.0431 30.6264 -Andale_Mono.ttf 72 * 20.1184 22.4376 5 P -0.1256 22.8055 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 6 o 10.0353 26.7880 30.8333 -Andale_Mono.ttf 72 * 20.1184 22.4376 7 e 10.0571 25.2250 30.8333 -Andale_Mono.ttf 72 * 20.1184 22.4376 8 : 9.8225 7.2279 30.8333 -Andale_Mono.ttf 72 * 20.1184 22.4376 9 r 10.0373 20.4043 30.6264 -Andale_Mono.ttf 72 * 20.1184 22.4376 10 l -0.1011 20.4167 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 11 i -0.2565 13.3043 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 12 1 -0.4396 21.0793 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 13 | -0.1983 4.1457 51.1917 -Andale_Mono.ttf 72 * 20.1184 22.4376 14 N -0.0439 24.3684 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 15 f 0.2278 22.7449 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 16 g 9.6688 26.2862 42.2069 -Andale_Mono.ttf 72 * 20.1184 22.4376 17 d 0.1310 24.9156 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 18 W 0.0121 32.6598 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 19 s 10.0095 22.4960 30.8333 -Andale_Mono.ttf 72 * 20.1184 22.4376 20 c 10.0607 24.2529 30.8333 -Andale_Mono.ttf 72 * 20.1184 22.4376 21 u 10.0622 23.0431 30.6264 -Andale_Mono.ttf 72 * 20.1184 22.4376 22 3 0.0146 22.4376 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 23 ~ 21.1791 31.2431 8.4376 -Andale_Mono.ttf 72 * 20.1184 22.4376 24 # -0.1006 29.7261 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 25 O -0.1956 27.4069 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 26 ` -1.1331 12.2739 8.6445 -Andale_Mono.ttf 72 * 20.1184 22.4376 27 @ 0.0414 29.8848 45.6293 -Andale_Mono.ttf 72 * 20.1184 22.4376 28 F 0.0483 21.8334 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 29 S -0.1927 22.6445 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 30 p 10.0373 24.9156 42.2069 -Andale_Mono.ttf 72 * 20.1184 22.4376 31 “ -0.0136 17.6989 13.2460 -Andale_Mono.ttf 72 * 20.1184 22.4376 32 % -0.3335 32.6598 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 33 £ -0.2776 26.7902 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 34 . 33.2273 7.2279 7.2279 -Andale_Mono.ttf 72 * 20.1184 22.4376 35 2 -0.5594 21.9695 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 36 5 0.1106 22.1304 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 37 m 9.7705 27.6138 30.6264 -Andale_Mono.ttf 72 * 20.1184 22.4376 38 V -0.2460 32.2460 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 39 6 -0.3985 25.4319 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 40 w 10.2422 29.5170 30.4195 -Andale_Mono.ttf 72 * 20.1184 22.4376 41 T -0.2819 29.4710 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 42 M -0.1230 25.2250 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 43 G -0.2149 26.5833 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 44 b -0.1611 24.9156 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 45 9 -0.0927 25.2250 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 46 ; 9.6835 7.2279 36.8514 -Andale_Mono.ttf 72 * 20.1184 22.4376 47 D -0.1632 25.2250 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 48 L -0.0730 21.8334 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 49 y 10.1664 26.6417 42.0000 -Andale_Mono.ttf 72 * 20.1184 22.4376 50 ‘ 0.0153 7.2279 13.2460 -Andale_Mono.ttf 72 * 20.1184 22.4376 51 \ -0.2440 24.4014 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 52 R -0.0922 27.3351 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 53 < 5.3233 21.2279 29.2098 -Andale_Mono.ttf 72 * 20.1184 22.4376 54 4 -0.2801 27.4836 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 55 8 -0.1761 25.7598 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 56 0 -0.4190 26.7880 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 57 A 0.1983 32.2460 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 58 E 0.0640 21.0793 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 59 B -0.0349 25.0765 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 60 v 9.9782 26.4348 30.4195 -Andale_Mono.ttf 72 * 20.1184 22.4376 61 k -0.1664 26.1253 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 62 J -0.0332 19.6627 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 63 U -0.1024 23.0431 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 64 j -0.1153 15.7239 52.3707 -Andale_Mono.ttf 72 * 20.1184 22.4376 65 ( 0.0303 15.2098 49.6141 -Andale_Mono.ttf 72 * 20.1184 22.4376 66 7 0.1665 23.7080 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 67 § -0.2879 23.8543 52.5776 -Andale_Mono.ttf 72 * 20.1184 22.4376 68 $ -2.7721 22.6445 47.0152 -Andale_Mono.ttf 72 * 20.1184 22.4376 69 € -0.3689 30.5474 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 70 / -0.4154 24.4014 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 71 C -0.0374 26.7112 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 72 * -0.0144 20.1184 22.4376 -Andale_Mono.ttf 72 * 20.1184 22.4376 73 ” -0.3935 17.6989 13.2460 -Andale_Mono.ttf 72 * 20.1184 22.4376 74 ? -0.1241 20.5652 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 75 { -0.0195 15.8848 50.4376 -Andale_Mono.ttf 72 * 20.1184 22.4376 76 } 0.1378 15.8848 50.4376 -Andale_Mono.ttf 72 * 20.1184 22.4376 77 , 33.6202 7.2279 13.2460 -Andale_Mono.ttf 72 * 20.1184 22.4376 78 I 0.1320 17.9971 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 79 ° -0.0226 15.7261 15.7261 -Andale_Mono.ttf 72 * 20.1184 22.4376 80 K -0.0802 28.2377 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 81 H -0.0590 23.0431 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 82 q 9.8966 24.9156 42.2069 -Andale_Mono.ttf 72 * 20.1184 22.4376 83 & -0.3111 32.6598 40.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 84 ’ -0.2048 7.2279 13.2460 -Andale_Mono.ttf 72 * 20.1184 22.4376 85 [ -0.1343 11.2250 47.8696 -Andale_Mono.ttf 72 * 20.1184 22.4376 86 - 22.2262 16.9359 4.1457 -Andale_Mono.ttf 72 * 20.1184 22.4376 87 Y -0.0299 29.8264 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 88 Q -0.2588 28.6167 47.7692 -Andale_Mono.ttf 72 * 20.1184 22.4376 89 " -0.4394 14.9239 15.2098 -Andale_Mono.ttf 72 * 20.1184 22.4376 90 ! -0.1159 7.2279 40.7902 -Andale_Mono.ttf 72 * 20.1184 22.4376 91 x 10.4225 26.2739 30.4195 -Andale_Mono.ttf 72 * 20.1184 22.4376 92 ) -0.3582 15.2098 49.6141 -Andale_Mono.ttf 72 * 20.1184 22.4376 93 = 12.5192 27.1098 15.2098 -Andale_Mono.ttf 72 * 20.1184 22.4376 94 + 6.7166 26.9971 26.9971 -Andale_Mono.ttf 72 * 20.1184 22.4376 95 X 0.0922 31.0946 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 96 » 9.9931 25.2250 29.2098 -Andale_Mono.ttf 72 * 20.1184 22.4376 97 ' 0.2765 4.4529 15.2098 -Andale_Mono.ttf 72 * 20.1184 22.4376 98 ¢ 4.7097 23.6474 41.2224 -Andale_Mono.ttf 72 * 20.1184 22.4376 99 Z -0.0652 24.3684 40.5833 -Andale_Mono.ttf 72 * 20.1184 22.4376 100 > 5.1748 21.2279 29.2098 -Andale_Mono.ttf 72 * 20.1184 22.4376 101 ® -0.2302 35.0793 34.5652 -Andale_Mono.ttf 72 * 20.1184 22.4376 102 © -0.0675 35.0793 34.5652 -Andale_Mono.ttf 72 * 20.1184 22.4376 103 ] 0.0188 11.2250 47.8696 -Andale_Mono.ttf 72 * 20.1184 22.4376 104 é -1.1609 25.2250 42.0460 -Andale_Mono.ttf 72 * 20.1184 22.4376 105 z 10.2385 23.1917 30.4195 -Andale_Mono.ttf 72 * 20.1184 22.4376 106 _ 49.5319 35.0793 3.8362 -Andale_Mono.ttf 72 * 20.1184 22.4376 107 ¥ -0.0657 29.8264 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 1 t 2.0263 22.6445 38.7569 -Andale_Mono.ttf 73 ” 17.6989 13.2460 2 h 0.1443 23.0431 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 3 a 10.4551 24.2529 30.8333 -Andale_Mono.ttf 73 ” 17.6989 13.2460 4 n 10.3745 23.0431 30.6264 -Andale_Mono.ttf 73 ” 17.6989 13.2460 5 P 0.3818 22.8055 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 6 o 10.0559 26.7880 30.8333 -Andale_Mono.ttf 73 ” 17.6989 13.2460 7 e 10.1580 25.2250 30.8333 -Andale_Mono.ttf 73 ” 17.6989 13.2460 8 : 9.9241 7.2279 30.8333 -Andale_Mono.ttf 73 ” 17.6989 13.2460 9 r 9.8713 20.4043 30.6264 -Andale_Mono.ttf 73 ” 17.6989 13.2460 10 l 0.1151 20.4167 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 11 i -0.0804 13.3043 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 12 1 0.4663 21.0793 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 13 | 0.1141 4.1457 51.1917 -Andale_Mono.ttf 73 ” 17.6989 13.2460 14 N -0.0701 24.3684 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 15 f -0.0021 22.7449 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 16 g 10.0935 26.2862 42.2069 -Andale_Mono.ttf 73 ” 17.6989 13.2460 17 d 0.4140 24.9156 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 18 W 0.0958 32.6598 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 19 s 10.1927 22.4960 30.8333 -Andale_Mono.ttf 73 ” 17.6989 13.2460 20 c 10.3019 24.2529 30.8333 -Andale_Mono.ttf 73 ” 17.6989 13.2460 21 u 10.1858 23.0431 30.6264 -Andale_Mono.ttf 73 ” 17.6989 13.2460 22 3 0.0711 22.4376 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 23 ~ 21.4178 31.2431 8.4376 -Andale_Mono.ttf 73 ” 17.6989 13.2460 24 # 0.2347 29.7261 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 25 O 0.0578 27.4069 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 26 ` -1.2210 12.2739 8.6445 -Andale_Mono.ttf 73 ” 17.6989 13.2460 27 @ -0.1266 29.8848 45.6293 -Andale_Mono.ttf 73 ” 17.6989 13.2460 28 F 0.3258 21.8334 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 29 S -0.0900 22.6445 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 30 p 10.3097 24.9156 42.2069 -Andale_Mono.ttf 73 ” 17.6989 13.2460 31 “ -0.0148 17.6989 13.2460 -Andale_Mono.ttf 73 ” 17.6989 13.2460 32 % -0.0207 32.6598 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 33 £ 0.0810 26.7902 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 34 . 33.7674 7.2279 7.2279 -Andale_Mono.ttf 73 ” 17.6989 13.2460 35 2 0.1619 21.9695 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 36 5 0.4368 22.1304 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 37 m 10.2931 27.6138 30.6264 -Andale_Mono.ttf 73 ” 17.6989 13.2460 38 V 0.2190 32.2460 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 39 6 0.3036 25.4319 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 40 w 10.5004 29.5170 30.4195 -Andale_Mono.ttf 73 ” 17.6989 13.2460 41 T 0.3473 29.4710 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 42 M -0.0289 25.2250 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 43 G 0.2014 26.5833 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 44 b 0.0029 24.9156 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 45 9 0.4278 25.2250 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 46 ; 10.1141 7.2279 36.8514 -Andale_Mono.ttf 73 ” 17.6989 13.2460 47 D -0.1720 25.2250 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 48 L 0.1496 21.8334 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 49 y 10.5895 26.6417 42.0000 -Andale_Mono.ttf 73 ” 17.6989 13.2460 50 ‘ -0.1424 7.2279 13.2460 -Andale_Mono.ttf 73 ” 17.6989 13.2460 51 \ -0.0301 24.4014 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 52 R 0.1739 27.3351 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 53 < 5.6908 21.2279 29.2098 -Andale_Mono.ttf 73 ” 17.6989 13.2460 54 4 0.2069 27.4836 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 55 8 0.0000 25.7598 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 56 0 0.0376 26.7880 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 57 A 0.2879 32.2460 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 58 E 0.2069 21.0793 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 59 B 0.1547 25.0765 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 60 v 10.2749 26.4348 30.4195 -Andale_Mono.ttf 73 ” 17.6989 13.2460 61 k -0.1069 26.1253 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 62 J 0.1438 19.6627 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 63 U 0.2601 23.0431 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 64 j 0.1452 15.7239 52.3707 -Andale_Mono.ttf 73 ” 17.6989 13.2460 65 ( 0.1623 15.2098 49.6141 -Andale_Mono.ttf 73 ” 17.6989 13.2460 66 7 0.1969 23.7080 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 67 § -0.0201 23.8543 52.5776 -Andale_Mono.ttf 73 ” 17.6989 13.2460 68 $ -2.7446 22.6445 47.0152 -Andale_Mono.ttf 73 ” 17.6989 13.2460 69 € -0.1879 30.5474 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 70 / 0.2881 24.4014 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 71 C 0.0877 26.7112 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 72 * 0.1244 20.1184 22.4376 -Andale_Mono.ttf 73 ” 17.6989 13.2460 73 ” -0.0264 17.6989 13.2460 -Andale_Mono.ttf 73 ” 17.6989 13.2460 74 ? -0.1297 20.5652 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 75 { 0.3051 15.8848 50.4376 -Andale_Mono.ttf 73 ” 17.6989 13.2460 76 } 0.4874 15.8848 50.4376 -Andale_Mono.ttf 73 ” 17.6989 13.2460 77 , 33.9644 7.2279 13.2460 -Andale_Mono.ttf 73 ” 17.6989 13.2460 78 I 0.2816 17.9971 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 79 ° 0.0519 15.7261 15.7261 -Andale_Mono.ttf 73 ” 17.6989 13.2460 80 K 0.1661 28.2377 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 81 H 0.1157 23.0431 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 82 q 10.2819 24.9156 42.2069 -Andale_Mono.ttf 73 ” 17.6989 13.2460 83 & 0.1029 32.6598 40.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 84 ’ -0.3688 7.2279 13.2460 -Andale_Mono.ttf 73 ” 17.6989 13.2460 85 [ 0.2046 11.2250 47.8696 -Andale_Mono.ttf 73 ” 17.6989 13.2460 86 - 22.7482 16.9359 4.1457 -Andale_Mono.ttf 73 ” 17.6989 13.2460 87 Y -0.0073 29.8264 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 88 Q 0.0201 28.6167 47.7692 -Andale_Mono.ttf 73 ” 17.6989 13.2460 89 " 0.0172 14.9239 15.2098 -Andale_Mono.ttf 73 ” 17.6989 13.2460 90 ! 0.2282 7.2279 40.7902 -Andale_Mono.ttf 73 ” 17.6989 13.2460 91 x 10.4439 26.2739 30.4195 -Andale_Mono.ttf 73 ” 17.6989 13.2460 92 ) 0.0939 15.2098 49.6141 -Andale_Mono.ttf 73 ” 17.6989 13.2460 93 = 12.4971 27.1098 15.2098 -Andale_Mono.ttf 73 ” 17.6989 13.2460 94 + 6.6556 26.9971 26.9971 -Andale_Mono.ttf 73 ” 17.6989 13.2460 95 X 0.2489 31.0946 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 96 » 10.3647 25.2250 29.2098 -Andale_Mono.ttf 73 ” 17.6989 13.2460 97 ' 0.4069 4.4529 15.2098 -Andale_Mono.ttf 73 ” 17.6989 13.2460 98 ¢ 5.0860 23.6474 41.2224 -Andale_Mono.ttf 73 ” 17.6989 13.2460 99 Z 0.1733 24.3684 40.5833 -Andale_Mono.ttf 73 ” 17.6989 13.2460 100 > 5.8603 21.2279 29.2098 -Andale_Mono.ttf 73 ” 17.6989 13.2460 101 ® -0.1387 35.0793 34.5652 -Andale_Mono.ttf 73 ” 17.6989 13.2460 102 © -0.1575 35.0793 34.5652 -Andale_Mono.ttf 73 ” 17.6989 13.2460 103 ] 0.2145 11.2250 47.8696 -Andale_Mono.ttf 73 ” 17.6989 13.2460 104 é -1.0100 25.2250 42.0460 -Andale_Mono.ttf 73 ” 17.6989 13.2460 105 z 10.3845 23.1917 30.4195 -Andale_Mono.ttf 73 ” 17.6989 13.2460 106 _ 49.8735 35.0793 3.8362 -Andale_Mono.ttf 73 ” 17.6989 13.2460 107 ¥ 0.2414 29.8264 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 1 t 2.3205 22.6445 38.7569 -Andale_Mono.ttf 74 ? 20.5652 40.9971 2 h 0.1448 23.0431 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 3 a 10.1912 24.2529 30.8333 -Andale_Mono.ttf 74 ? 20.5652 40.9971 4 n 10.1732 23.0431 30.6264 -Andale_Mono.ttf 74 ? 20.5652 40.9971 5 P -0.1131 22.8055 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 6 o 10.0107 26.7880 30.8333 -Andale_Mono.ttf 74 ? 20.5652 40.9971 7 e 10.0546 25.2250 30.8333 -Andale_Mono.ttf 74 ? 20.5652 40.9971 8 : 10.2844 7.2279 30.8333 -Andale_Mono.ttf 74 ? 20.5652 40.9971 9 r 9.9678 20.4043 30.6264 -Andale_Mono.ttf 74 ? 20.5652 40.9971 10 l 0.0776 20.4167 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 11 i 0.1531 13.3043 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 12 1 0.0017 21.0793 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 13 | 0.3388 4.1457 51.1917 -Andale_Mono.ttf 74 ? 20.5652 40.9971 14 N -0.0567 24.3684 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 15 f 0.1996 22.7449 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 16 g 10.1331 26.2862 42.2069 -Andale_Mono.ttf 74 ? 20.5652 40.9971 17 d 0.2678 24.9156 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 18 W 0.0065 32.6598 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 19 s 10.2864 22.4960 30.8333 -Andale_Mono.ttf 74 ? 20.5652 40.9971 20 c 10.2442 24.2529 30.8333 -Andale_Mono.ttf 74 ? 20.5652 40.9971 21 u 10.3299 23.0431 30.6264 -Andale_Mono.ttf 74 ? 20.5652 40.9971 22 3 -0.0546 22.4376 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 23 ~ 21.1427 31.2431 8.4376 -Andale_Mono.ttf 74 ? 20.5652 40.9971 24 # 0.3553 29.7261 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 25 O -0.1300 27.4069 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 26 ` -0.9968 12.2739 8.6445 -Andale_Mono.ttf 74 ? 20.5652 40.9971 27 @ 0.0228 29.8848 45.6293 -Andale_Mono.ttf 74 ? 20.5652 40.9971 28 F 0.4887 21.8334 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 29 S 0.1632 22.6445 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 30 p 10.1902 24.9156 42.2069 -Andale_Mono.ttf 74 ? 20.5652 40.9971 31 “ -0.0245 17.6989 13.2460 -Andale_Mono.ttf 74 ? 20.5652 40.9971 32 % -0.1365 32.6598 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 33 £ -0.1065 26.7902 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 34 . 33.8985 7.2279 7.2279 -Andale_Mono.ttf 74 ? 20.5652 40.9971 35 2 -0.0111 21.9695 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 36 5 0.3090 22.1304 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 37 m 10.0572 27.6138 30.6264 -Andale_Mono.ttf 74 ? 20.5652 40.9971 38 V 0.0696 32.2460 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 39 6 -0.0778 25.4319 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 40 w 10.4866 29.5170 30.4195 -Andale_Mono.ttf 74 ? 20.5652 40.9971 41 T 0.2552 29.4710 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 42 M 0.0753 25.2250 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 43 G -0.0677 26.5833 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 44 b 0.0369 24.9156 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 45 9 0.0680 25.2250 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 46 ; 10.0157 7.2279 36.8514 -Andale_Mono.ttf 74 ? 20.5652 40.9971 47 D 0.2991 25.2250 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 48 L 0.2816 21.8334 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 49 y 10.1894 26.6417 42.0000 -Andale_Mono.ttf 74 ? 20.5652 40.9971 50 ‘ 0.0027 7.2279 13.2460 -Andale_Mono.ttf 74 ? 20.5652 40.9971 51 \ 0.1042 24.4014 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 52 R 0.1121 27.3351 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 53 < 5.7835 21.2279 29.2098 -Andale_Mono.ttf 74 ? 20.5652 40.9971 54 4 0.1877 27.4836 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 55 8 -0.0558 25.7598 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 56 0 0.1031 26.7880 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 57 A -0.0369 32.2460 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 58 E 0.0909 21.0793 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 59 B 0.1322 25.0765 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 60 v 9.8668 26.4348 30.4195 -Andale_Mono.ttf 74 ? 20.5652 40.9971 61 k 0.3362 26.1253 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 62 J 0.3130 19.6627 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 63 U 0.2768 23.0431 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 64 j 0.0672 15.7239 52.3707 -Andale_Mono.ttf 74 ? 20.5652 40.9971 65 ( 0.1939 15.2098 49.6141 -Andale_Mono.ttf 74 ? 20.5652 40.9971 66 7 0.3423 23.7080 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 67 § 0.1266 23.8543 52.5776 -Andale_Mono.ttf 74 ? 20.5652 40.9971 68 $ -2.7304 22.6445 47.0152 -Andale_Mono.ttf 74 ? 20.5652 40.9971 69 € 0.0515 30.5474 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 70 / -0.0475 24.4014 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 71 C -0.2163 26.7112 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 72 * 0.1236 20.1184 22.4376 -Andale_Mono.ttf 74 ? 20.5652 40.9971 73 ” -0.0040 17.6989 13.2460 -Andale_Mono.ttf 74 ? 20.5652 40.9971 74 ? 0.1404 20.5652 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 75 { 0.1100 15.8848 50.4376 -Andale_Mono.ttf 74 ? 20.5652 40.9971 76 } 0.5025 15.8848 50.4376 -Andale_Mono.ttf 74 ? 20.5652 40.9971 77 , 33.6547 7.2279 13.2460 -Andale_Mono.ttf 74 ? 20.5652 40.9971 78 I 0.2578 17.9971 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 79 ° -0.0233 15.7261 15.7261 -Andale_Mono.ttf 74 ? 20.5652 40.9971 80 K 0.1837 28.2377 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 81 H 0.0042 23.0431 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 82 q 9.8475 24.9156 42.2069 -Andale_Mono.ttf 74 ? 20.5652 40.9971 83 & 0.0537 32.6598 40.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 84 ’ -0.3243 7.2279 13.2460 -Andale_Mono.ttf 74 ? 20.5652 40.9971 85 [ 0.6255 11.2250 47.8696 -Andale_Mono.ttf 74 ? 20.5652 40.9971 86 - 22.6495 16.9359 4.1457 -Andale_Mono.ttf 74 ? 20.5652 40.9971 87 Y 0.4356 29.8264 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 88 Q 0.1490 28.6167 47.7692 -Andale_Mono.ttf 74 ? 20.5652 40.9971 89 " 0.1799 14.9239 15.2098 -Andale_Mono.ttf 74 ? 20.5652 40.9971 90 ! 0.5205 7.2279 40.7902 -Andale_Mono.ttf 74 ? 20.5652 40.9971 91 x 10.3940 26.2739 30.4195 -Andale_Mono.ttf 74 ? 20.5652 40.9971 92 ) 0.0912 15.2098 49.6141 -Andale_Mono.ttf 74 ? 20.5652 40.9971 93 = 12.6094 27.1098 15.2098 -Andale_Mono.ttf 74 ? 20.5652 40.9971 94 + 7.0608 26.9971 26.9971 -Andale_Mono.ttf 74 ? 20.5652 40.9971 95 X -0.0008 31.0946 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 96 » 10.0766 25.2250 29.2098 -Andale_Mono.ttf 74 ? 20.5652 40.9971 97 ' 0.0293 4.4529 15.2098 -Andale_Mono.ttf 74 ? 20.5652 40.9971 98 ¢ 5.2292 23.6474 41.2224 -Andale_Mono.ttf 74 ? 20.5652 40.9971 99 Z 0.1000 24.3684 40.5833 -Andale_Mono.ttf 74 ? 20.5652 40.9971 100 > 5.6808 21.2279 29.2098 -Andale_Mono.ttf 74 ? 20.5652 40.9971 101 ® 0.0475 35.0793 34.5652 -Andale_Mono.ttf 74 ? 20.5652 40.9971 102 © 0.0452 35.0793 34.5652 -Andale_Mono.ttf 74 ? 20.5652 40.9971 103 ] 0.4395 11.2250 47.8696 -Andale_Mono.ttf 74 ? 20.5652 40.9971 104 é -0.8851 25.2250 42.0460 -Andale_Mono.ttf 74 ? 20.5652 40.9971 105 z 10.4555 23.1917 30.4195 -Andale_Mono.ttf 74 ? 20.5652 40.9971 106 _ 49.7128 35.0793 3.8362 -Andale_Mono.ttf 74 ? 20.5652 40.9971 107 ¥ 0.0776 29.8264 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 1 t 2.0479 22.6445 38.7569 -Andale_Mono.ttf 75 { 15.8848 50.4376 2 h -0.2756 23.0431 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 3 a 9.7950 24.2529 30.8333 -Andale_Mono.ttf 75 { 15.8848 50.4376 4 n 9.9569 23.0431 30.6264 -Andale_Mono.ttf 75 { 15.8848 50.4376 5 P 0.1361 22.8055 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 6 o 9.9404 26.7880 30.8333 -Andale_Mono.ttf 75 { 15.8848 50.4376 7 e 9.8849 25.2250 30.8333 -Andale_Mono.ttf 75 { 15.8848 50.4376 8 : 9.9287 7.2279 30.8333 -Andale_Mono.ttf 75 { 15.8848 50.4376 9 r 9.7667 20.4043 30.6264 -Andale_Mono.ttf 75 { 15.8848 50.4376 10 l -0.2806 20.4167 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 11 i -0.2816 13.3043 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 12 1 -0.1429 21.0793 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 13 | -0.0371 4.1457 51.1917 -Andale_Mono.ttf 75 { 15.8848 50.4376 14 N 0.0859 24.3684 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 15 f 0.0527 22.7449 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 16 g 9.8661 26.2862 42.2069 -Andale_Mono.ttf 75 { 15.8848 50.4376 17 d 0.0716 24.9156 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 18 W -0.1540 32.6598 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 19 s 9.8710 22.4960 30.8333 -Andale_Mono.ttf 75 { 15.8848 50.4376 20 c 9.9896 24.2529 30.8333 -Andale_Mono.ttf 75 { 15.8848 50.4376 21 u 10.1262 23.0431 30.6264 -Andale_Mono.ttf 75 { 15.8848 50.4376 22 3 -0.2131 22.4376 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 23 ~ 21.3402 31.2431 8.4376 -Andale_Mono.ttf 75 { 15.8848 50.4376 24 # -0.0264 29.7261 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 25 O -0.3098 27.4069 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 26 ` -1.4035 12.2739 8.6445 -Andale_Mono.ttf 75 { 15.8848 50.4376 27 @ -0.2389 29.8848 45.6293 -Andale_Mono.ttf 75 { 15.8848 50.4376 28 F -0.0975 21.8334 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 29 S -0.2170 22.6445 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 30 p 9.8249 24.9156 42.2069 -Andale_Mono.ttf 75 { 15.8848 50.4376 31 “ -0.3322 17.6989 13.2460 -Andale_Mono.ttf 75 { 15.8848 50.4376 32 % 0.1559 32.6598 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 33 £ -0.1264 26.7902 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 34 . 33.2980 7.2279 7.2279 -Andale_Mono.ttf 75 { 15.8848 50.4376 35 2 -0.4712 21.9695 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 36 5 0.0146 22.1304 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 37 m 10.2659 27.6138 30.6264 -Andale_Mono.ttf 75 { 15.8848 50.4376 38 V 0.2653 32.2460 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 39 6 -0.1908 25.4319 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 40 w 10.2596 29.5170 30.4195 -Andale_Mono.ttf 75 { 15.8848 50.4376 41 T 0.0504 29.4710 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 42 M 0.1513 25.2250 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 43 G -0.3268 26.5833 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 44 b 0.0483 24.9156 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 45 9 -0.5443 25.2250 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 46 ; 9.9793 7.2279 36.8514 -Andale_Mono.ttf 75 { 15.8848 50.4376 47 D -0.1262 25.2250 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 48 L 0.2215 21.8334 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 49 y 10.3258 26.6417 42.0000 -Andale_Mono.ttf 75 { 15.8848 50.4376 50 ‘ -0.1711 7.2279 13.2460 -Andale_Mono.ttf 75 { 15.8848 50.4376 51 \ -0.1157 24.4014 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 52 R -0.2533 27.3351 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 53 < 5.0723 21.2279 29.2098 -Andale_Mono.ttf 75 { 15.8848 50.4376 54 4 0.0901 27.4836 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 55 8 -0.0500 25.7598 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 56 0 -0.2584 26.7880 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 57 A 0.1862 32.2460 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 58 E -0.0312 21.0793 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 59 B 0.3270 25.0765 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 60 v 9.9517 26.4348 30.4195 -Andale_Mono.ttf 75 { 15.8848 50.4376 61 k 0.4473 26.1253 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 62 J 0.0841 19.6627 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 63 U -0.1203 23.0431 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 64 j -0.2297 15.7239 52.3707 -Andale_Mono.ttf 75 { 15.8848 50.4376 65 ( -0.0207 15.2098 49.6141 -Andale_Mono.ttf 75 { 15.8848 50.4376 66 7 0.1226 23.7080 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 67 § -0.1586 23.8543 52.5776 -Andale_Mono.ttf 75 { 15.8848 50.4376 68 $ -3.1542 22.6445 47.0152 -Andale_Mono.ttf 75 { 15.8848 50.4376 69 € -0.2396 30.5474 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 70 / -0.4052 24.4014 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 71 C -0.1962 26.7112 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 72 * -0.0044 20.1184 22.4376 -Andale_Mono.ttf 75 { 15.8848 50.4376 73 ” -0.2816 17.6989 13.2460 -Andale_Mono.ttf 75 { 15.8848 50.4376 74 ? -0.1805 20.5652 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 75 { 0.0465 15.8848 50.4376 -Andale_Mono.ttf 75 { 15.8848 50.4376 76 } -0.0509 15.8848 50.4376 -Andale_Mono.ttf 75 { 15.8848 50.4376 77 , 33.4258 7.2279 13.2460 -Andale_Mono.ttf 75 { 15.8848 50.4376 78 I 0.0232 17.9971 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 79 ° -0.1197 15.7261 15.7261 -Andale_Mono.ttf 75 { 15.8848 50.4376 80 K 0.0609 28.2377 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 81 H 0.1412 23.0431 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 82 q 9.9743 24.9156 42.2069 -Andale_Mono.ttf 75 { 15.8848 50.4376 83 & -0.2960 32.6598 40.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 84 ’ -0.2180 7.2279 13.2460 -Andale_Mono.ttf 75 { 15.8848 50.4376 85 [ -0.1999 11.2250 47.8696 -Andale_Mono.ttf 75 { 15.8848 50.4376 86 - 22.5302 16.9359 4.1457 -Andale_Mono.ttf 75 { 15.8848 50.4376 87 Y -0.1293 29.8264 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 88 Q -0.2642 28.6167 47.7692 -Andale_Mono.ttf 75 { 15.8848 50.4376 89 " -0.0138 14.9239 15.2098 -Andale_Mono.ttf 75 { 15.8848 50.4376 90 ! 0.1870 7.2279 40.7902 -Andale_Mono.ttf 75 { 15.8848 50.4376 91 x 9.8051 26.2739 30.4195 -Andale_Mono.ttf 75 { 15.8848 50.4376 92 ) -0.4083 15.2098 49.6141 -Andale_Mono.ttf 75 { 15.8848 50.4376 93 = 12.4799 27.1098 15.2098 -Andale_Mono.ttf 75 { 15.8848 50.4376 94 + 6.5796 26.9971 26.9971 -Andale_Mono.ttf 75 { 15.8848 50.4376 95 X -0.4287 31.0946 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 96 » 10.1180 25.2250 29.2098 -Andale_Mono.ttf 75 { 15.8848 50.4376 97 ' -0.0141 4.4529 15.2098 -Andale_Mono.ttf 75 { 15.8848 50.4376 98 ¢ 4.7888 23.6474 41.2224 -Andale_Mono.ttf 75 { 15.8848 50.4376 99 Z -0.2372 24.3684 40.5833 -Andale_Mono.ttf 75 { 15.8848 50.4376 100 > 5.9282 21.2279 29.2098 -Andale_Mono.ttf 75 { 15.8848 50.4376 101 ® -0.2584 35.0793 34.5652 -Andale_Mono.ttf 75 { 15.8848 50.4376 102 © -0.0846 35.0793 34.5652 -Andale_Mono.ttf 75 { 15.8848 50.4376 103 ] 0.0299 11.2250 47.8696 -Andale_Mono.ttf 75 { 15.8848 50.4376 104 é -1.1989 25.2250 42.0460 -Andale_Mono.ttf 75 { 15.8848 50.4376 105 z 10.4870 23.1917 30.4195 -Andale_Mono.ttf 75 { 15.8848 50.4376 106 _ 49.6120 35.0793 3.8362 -Andale_Mono.ttf 75 { 15.8848 50.4376 107 ¥ 0.1113 29.8264 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 1 t 1.8946 22.6445 38.7569 -Andale_Mono.ttf 76 } 15.8848 50.4376 2 h 0.3885 23.0431 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 3 a 10.0555 24.2529 30.8333 -Andale_Mono.ttf 76 } 15.8848 50.4376 4 n 10.0893 23.0431 30.6264 -Andale_Mono.ttf 76 } 15.8848 50.4376 5 P -0.0094 22.8055 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 6 o 9.5854 26.7880 30.8333 -Andale_Mono.ttf 76 } 15.8848 50.4376 7 e 10.2517 25.2250 30.8333 -Andale_Mono.ttf 76 } 15.8848 50.4376 8 : 10.2681 7.2279 30.8333 -Andale_Mono.ttf 76 } 15.8848 50.4376 9 r 9.8312 20.4043 30.6264 -Andale_Mono.ttf 76 } 15.8848 50.4376 10 l 0.0810 20.4167 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 11 i -0.3129 13.3043 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 12 1 -0.0759 21.0793 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 13 | 0.0117 4.1457 51.1917 -Andale_Mono.ttf 76 } 15.8848 50.4376 14 N -0.1611 24.3684 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 15 f 0.0009 22.7449 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 16 g 9.6268 26.2862 42.2069 -Andale_Mono.ttf 76 } 15.8848 50.4376 17 d -0.1102 24.9156 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 18 W 0.0366 32.6598 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 19 s 10.0406 22.4960 30.8333 -Andale_Mono.ttf 76 } 15.8848 50.4376 20 c 10.1559 24.2529 30.8333 -Andale_Mono.ttf 76 } 15.8848 50.4376 21 u 10.1594 23.0431 30.6264 -Andale_Mono.ttf 76 } 15.8848 50.4376 22 3 -0.4263 22.4376 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 23 ~ 21.0609 31.2431 8.4376 -Andale_Mono.ttf 76 } 15.8848 50.4376 24 # -0.0282 29.7261 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 25 O -0.2642 27.4069 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 26 ` -1.3103 12.2739 8.6445 -Andale_Mono.ttf 76 } 15.8848 50.4376 27 @ -0.2113 29.8848 45.6293 -Andale_Mono.ttf 76 } 15.8848 50.4376 28 F -0.0215 21.8334 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 29 S -0.2011 22.6445 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 30 p 9.8184 24.9156 42.2069 -Andale_Mono.ttf 76 } 15.8848 50.4376 31 “ -0.5111 17.6989 13.2460 -Andale_Mono.ttf 76 } 15.8848 50.4376 32 % -0.3067 32.6598 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 33 £ -0.3701 26.7902 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 34 . 33.3784 7.2279 7.2279 -Andale_Mono.ttf 76 } 15.8848 50.4376 35 2 -0.1734 21.9695 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 36 5 0.0483 22.1304 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 37 m 10.2588 27.6138 30.6264 -Andale_Mono.ttf 76 } 15.8848 50.4376 38 V 0.1172 32.2460 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 39 6 -0.6059 25.4319 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 40 w 10.2184 29.5170 30.4195 -Andale_Mono.ttf 76 } 15.8848 50.4376 41 T -0.0810 29.4710 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 42 M 0.1983 25.2250 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 43 G -0.0123 26.5833 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 44 b 0.0389 24.9156 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 45 9 -0.1954 25.2250 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 46 ; 9.9891 7.2279 36.8514 -Andale_Mono.ttf 76 } 15.8848 50.4376 47 D -0.0164 25.2250 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 48 L -0.1149 21.8334 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 49 y 10.2448 26.6417 42.0000 -Andale_Mono.ttf 76 } 15.8848 50.4376 50 ‘ -0.2793 7.2279 13.2460 -Andale_Mono.ttf 76 } 15.8848 50.4376 51 \ -0.2853 24.4014 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 52 R -0.5893 27.3351 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 53 < 5.1676 21.2279 29.2098 -Andale_Mono.ttf 76 } 15.8848 50.4376 54 4 0.1249 27.4836 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 55 8 0.0266 25.7598 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 56 0 -0.2592 26.7880 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 57 A 0.1620 32.2460 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 58 E -0.0716 21.0793 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 59 B 0.0801 25.0765 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 60 v 10.1383 26.4348 30.4195 -Andale_Mono.ttf 76 } 15.8848 50.4376 61 k 0.0000 26.1253 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 62 J -0.4282 19.6627 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 63 U 0.0854 23.0431 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 64 j -0.4065 15.7239 52.3707 -Andale_Mono.ttf 76 } 15.8848 50.4376 65 ( -0.2853 15.2098 49.6141 -Andale_Mono.ttf 76 } 15.8848 50.4376 66 7 -0.0345 23.7080 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 67 § -0.1583 23.8543 52.5776 -Andale_Mono.ttf 76 } 15.8848 50.4376 68 $ -3.1595 22.6445 47.0152 -Andale_Mono.ttf 76 } 15.8848 50.4376 69 € -0.2829 30.5474 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 70 / -0.1259 24.4014 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 71 C 0.0431 26.7112 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 72 * -0.2510 20.1184 22.4376 -Andale_Mono.ttf 76 } 15.8848 50.4376 73 ” -0.2870 17.6989 13.2460 -Andale_Mono.ttf 76 } 15.8848 50.4376 74 ? -0.0468 20.5652 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 75 { 0.0465 15.8848 50.4376 -Andale_Mono.ttf 76 } 15.8848 50.4376 76 } -0.0184 15.8848 50.4376 -Andale_Mono.ttf 76 } 15.8848 50.4376 77 , 33.5918 7.2279 13.2460 -Andale_Mono.ttf 76 } 15.8848 50.4376 78 I 0.1002 17.9971 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 79 ° 0.0209 15.7261 15.7261 -Andale_Mono.ttf 76 } 15.8848 50.4376 80 K 0.0500 28.2377 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 81 H 0.1230 23.0431 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 82 q 9.9851 24.9156 42.2069 -Andale_Mono.ttf 76 } 15.8848 50.4376 83 & -0.2916 32.6598 40.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 84 ’ -0.1215 7.2279 13.2460 -Andale_Mono.ttf 76 } 15.8848 50.4376 85 [ 0.1279 11.2250 47.8696 -Andale_Mono.ttf 76 } 15.8848 50.4376 86 - 22.3777 16.9359 4.1457 -Andale_Mono.ttf 76 } 15.8848 50.4376 87 Y 0.1354 29.8264 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 88 Q -0.4050 28.6167 47.7692 -Andale_Mono.ttf 76 } 15.8848 50.4376 89 " -0.0813 14.9239 15.2098 -Andale_Mono.ttf 76 } 15.8848 50.4376 90 ! 0.1585 7.2279 40.7902 -Andale_Mono.ttf 76 } 15.8848 50.4376 91 x 10.0891 26.2739 30.4195 -Andale_Mono.ttf 76 } 15.8848 50.4376 92 ) -0.2255 15.2098 49.6141 -Andale_Mono.ttf 76 } 15.8848 50.4376 93 = 12.8621 27.1098 15.2098 -Andale_Mono.ttf 76 } 15.8848 50.4376 94 + 6.4078 26.9971 26.9971 -Andale_Mono.ttf 76 } 15.8848 50.4376 95 X 0.0621 31.0946 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 96 » 9.9369 25.2250 29.2098 -Andale_Mono.ttf 76 } 15.8848 50.4376 97 ' -0.1960 4.4529 15.2098 -Andale_Mono.ttf 76 } 15.8848 50.4376 98 ¢ 4.8890 23.6474 41.2224 -Andale_Mono.ttf 76 } 15.8848 50.4376 99 Z 0.3192 24.3684 40.5833 -Andale_Mono.ttf 76 } 15.8848 50.4376 100 > 5.6051 21.2279 29.2098 -Andale_Mono.ttf 76 } 15.8848 50.4376 101 ® -0.0958 35.0793 34.5652 -Andale_Mono.ttf 76 } 15.8848 50.4376 102 © -0.2126 35.0793 34.5652 -Andale_Mono.ttf 76 } 15.8848 50.4376 103 ] -0.0818 11.2250 47.8696 -Andale_Mono.ttf 76 } 15.8848 50.4376 104 é -1.2663 25.2250 42.0460 -Andale_Mono.ttf 76 } 15.8848 50.4376 105 z 10.0492 23.1917 30.4195 -Andale_Mono.ttf 76 } 15.8848 50.4376 106 _ 49.4563 35.0793 3.8362 -Andale_Mono.ttf 76 } 15.8848 50.4376 107 ¥ -0.0966 29.8264 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 1 t -31.3997 22.6445 38.7569 -Andale_Mono.ttf 77 , 7.2279 13.2460 2 h -33.5821 23.0431 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 3 a -23.5572 24.2529 30.8333 -Andale_Mono.ttf 77 , 7.2279 13.2460 4 n -23.6959 23.0431 30.6264 -Andale_Mono.ttf 77 , 7.2279 13.2460 5 P -33.8307 22.8055 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 6 o -23.1679 26.7880 30.8333 -Andale_Mono.ttf 77 , 7.2279 13.2460 7 e -23.8520 25.2250 30.8333 -Andale_Mono.ttf 77 , 7.2279 13.2460 8 : -23.4612 7.2279 30.8333 -Andale_Mono.ttf 77 , 7.2279 13.2460 9 r -23.8184 20.4043 30.6264 -Andale_Mono.ttf 77 , 7.2279 13.2460 10 l -33.6218 20.4167 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 11 i -33.7108 13.3043 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 12 1 -34.1316 21.0793 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 13 | -33.5587 4.1457 51.1917 -Andale_Mono.ttf 77 , 7.2279 13.2460 14 N -33.5549 24.3684 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 15 f -33.5673 22.7449 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 16 g -23.1911 26.2862 42.2069 -Andale_Mono.ttf 77 , 7.2279 13.2460 17 d -33.6911 24.9156 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 18 W -33.7611 32.6598 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 19 s -23.4785 22.4960 30.8333 -Andale_Mono.ttf 77 , 7.2279 13.2460 20 c -23.3951 24.2529 30.8333 -Andale_Mono.ttf 77 , 7.2279 13.2460 21 u -23.4338 23.0431 30.6264 -Andale_Mono.ttf 77 , 7.2279 13.2460 22 3 -33.6806 22.4376 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 23 ~ -12.5241 31.2431 8.4376 -Andale_Mono.ttf 77 , 7.2279 13.2460 24 # -33.6036 29.7261 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 25 O -33.8520 27.4069 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 26 ` -34.6329 12.2739 8.6445 -Andale_Mono.ttf 77 , 7.2279 13.2460 27 @ -33.6945 29.8848 45.6293 -Andale_Mono.ttf 77 , 7.2279 13.2460 28 F -33.3736 21.8334 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 29 S -33.6744 22.6445 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 30 p -23.7817 24.9156 42.2069 -Andale_Mono.ttf 77 , 7.2279 13.2460 31 “ -33.7210 17.6989 13.2460 -Andale_Mono.ttf 77 , 7.2279 13.2460 32 % -33.8152 32.6598 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 33 £ -33.7685 26.7902 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 34 . -0.0488 7.2279 7.2279 -Andale_Mono.ttf 77 , 7.2279 13.2460 35 2 -33.6055 21.9695 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 36 5 -33.5735 22.1304 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 37 m -23.5616 27.6138 30.6264 -Andale_Mono.ttf 77 , 7.2279 13.2460 38 V -33.3733 32.2460 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 39 6 -33.5213 25.4319 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 40 w -23.1946 29.5170 30.4195 -Andale_Mono.ttf 77 , 7.2279 13.2460 41 T -33.4702 29.4710 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 42 M -33.7965 25.2250 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 43 G -33.6081 26.5833 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 44 b -33.4898 24.9156 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 45 9 -33.9317 25.2250 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 46 ; -23.6156 7.2279 36.8514 -Andale_Mono.ttf 77 , 7.2279 13.2460 47 D -33.4532 25.2250 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 48 L -33.6445 21.8334 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 49 y -23.5127 26.6417 42.0000 -Andale_Mono.ttf 77 , 7.2279 13.2460 50 ‘ -33.9003 7.2279 13.2460 -Andale_Mono.ttf 77 , 7.2279 13.2460 51 \ -33.6624 24.4014 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 52 R -33.8599 27.3351 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 53 < -27.9928 21.2279 29.2098 -Andale_Mono.ttf 77 , 7.2279 13.2460 54 4 -33.4881 27.4836 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 55 8 -33.7965 25.7598 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 56 0 -33.9652 26.7880 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 57 A -33.7838 32.2460 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 58 E -33.6779 21.0793 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 59 B -33.4934 25.0765 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 60 v -23.1543 26.4348 30.4195 -Andale_Mono.ttf 77 , 7.2279 13.2460 61 k -33.5618 26.1253 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 62 J -33.5543 19.6627 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 63 U -33.6012 23.0431 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 64 j -33.6938 15.7239 52.3707 -Andale_Mono.ttf 77 , 7.2279 13.2460 65 ( -33.9143 15.2098 49.6141 -Andale_Mono.ttf 77 , 7.2279 13.2460 66 7 -33.4840 23.7080 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 67 § -33.6888 23.8543 52.5776 -Andale_Mono.ttf 77 , 7.2279 13.2460 68 $ -36.4770 22.6445 47.0152 -Andale_Mono.ttf 77 , 7.2279 13.2460 69 € -33.5934 30.5474 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 70 / -33.5982 24.4014 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 71 C -33.5679 26.7112 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 72 * -33.2641 20.1184 22.4376 -Andale_Mono.ttf 77 , 7.2279 13.2460 73 ” -33.8804 17.6989 13.2460 -Andale_Mono.ttf 77 , 7.2279 13.2460 74 ? -34.1773 20.5652 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 75 { -33.6281 15.8848 50.4376 -Andale_Mono.ttf 77 , 7.2279 13.2460 76 } -33.5141 15.8848 50.4376 -Andale_Mono.ttf 77 , 7.2279 13.2460 77 , 0.2205 7.2279 13.2460 -Andale_Mono.ttf 77 , 7.2279 13.2460 78 I -33.7193 17.9971 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 79 ° -33.8122 15.7261 15.7261 -Andale_Mono.ttf 77 , 7.2279 13.2460 80 K -33.5589 28.2377 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 81 H -33.6789 23.0431 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 82 q -23.5227 24.9156 42.2069 -Andale_Mono.ttf 77 , 7.2279 13.2460 83 & -33.9271 32.6598 40.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 84 ’ -33.4957 7.2279 13.2460 -Andale_Mono.ttf 77 , 7.2279 13.2460 85 [ -33.8840 11.2250 47.8696 -Andale_Mono.ttf 77 , 7.2279 13.2460 86 - -11.0665 16.9359 4.1457 -Andale_Mono.ttf 77 , 7.2279 13.2460 87 Y -33.4871 29.8264 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 88 Q -33.4806 28.6167 47.7692 -Andale_Mono.ttf 77 , 7.2279 13.2460 89 " -33.5798 14.9239 15.2098 -Andale_Mono.ttf 77 , 7.2279 13.2460 90 ! -33.5874 7.2279 40.7902 -Andale_Mono.ttf 77 , 7.2279 13.2460 91 x -23.5660 26.2739 30.4195 -Andale_Mono.ttf 77 , 7.2279 13.2460 92 ) -33.5201 15.2098 49.6141 -Andale_Mono.ttf 77 , 7.2279 13.2460 93 = -20.9539 27.1098 15.2098 -Andale_Mono.ttf 77 , 7.2279 13.2460 94 + -26.9971 26.9971 26.9971 -Andale_Mono.ttf 77 , 7.2279 13.2460 95 X -33.5924 31.0946 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 96 » -23.5392 25.2250 29.2098 -Andale_Mono.ttf 77 , 7.2279 13.2460 97 ' -33.7783 4.4529 15.2098 -Andale_Mono.ttf 77 , 7.2279 13.2460 98 ¢ -28.9739 23.6474 41.2224 -Andale_Mono.ttf 77 , 7.2279 13.2460 99 Z -33.7275 24.3684 40.5833 -Andale_Mono.ttf 77 , 7.2279 13.2460 100 > -28.1733 21.2279 29.2098 -Andale_Mono.ttf 77 , 7.2279 13.2460 101 ® -33.8378 35.0793 34.5652 -Andale_Mono.ttf 77 , 7.2279 13.2460 102 © -33.7756 35.0793 34.5652 -Andale_Mono.ttf 77 , 7.2279 13.2460 103 ] -33.6863 11.2250 47.8696 -Andale_Mono.ttf 77 , 7.2279 13.2460 104 é -34.7043 25.2250 42.0460 -Andale_Mono.ttf 77 , 7.2279 13.2460 105 z -23.7727 23.1917 30.4195 -Andale_Mono.ttf 77 , 7.2279 13.2460 106 _ 15.8378 35.0793 3.8362 -Andale_Mono.ttf 77 , 7.2279 13.2460 107 ¥ -33.4882 29.8264 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 1 t 1.7058 22.6445 38.7569 -Andale_Mono.ttf 78 I 17.9971 40.5833 2 h -0.3180 23.0431 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 3 a 10.0295 24.2529 30.8333 -Andale_Mono.ttf 78 I 17.9971 40.5833 4 n 9.6320 23.0431 30.6264 -Andale_Mono.ttf 78 I 17.9971 40.5833 5 P -0.3239 22.8055 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 6 o 10.0335 26.7880 30.8333 -Andale_Mono.ttf 78 I 17.9971 40.5833 7 e 10.0025 25.2250 30.8333 -Andale_Mono.ttf 78 I 17.9971 40.5833 8 : 9.7837 7.2279 30.8333 -Andale_Mono.ttf 78 I 17.9971 40.5833 9 r 9.9758 20.4043 30.6264 -Andale_Mono.ttf 78 I 17.9971 40.5833 10 l -0.1021 20.4167 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 11 i -0.3292 13.3043 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 12 1 -0.2853 21.0793 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 13 | 0.1718 4.1457 51.1917 -Andale_Mono.ttf 78 I 17.9971 40.5833 14 N -0.3432 24.3684 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 15 f 0.0583 22.7449 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 16 g 9.8255 26.2862 42.2069 -Andale_Mono.ttf 78 I 17.9971 40.5833 17 d 0.1199 24.9156 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 18 W 0.0057 32.6598 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 19 s 9.6719 22.4960 30.8333 -Andale_Mono.ttf 78 I 17.9971 40.5833 20 c 10.1985 24.2529 30.8333 -Andale_Mono.ttf 78 I 17.9971 40.5833 21 u 10.1498 23.0431 30.6264 -Andale_Mono.ttf 78 I 17.9971 40.5833 22 3 -0.2414 22.4376 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 23 ~ 21.1187 31.2431 8.4376 -Andale_Mono.ttf 78 I 17.9971 40.5833 24 # -0.3539 29.7261 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 25 O -0.0172 27.4069 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 26 ` -1.2611 12.2739 8.6445 -Andale_Mono.ttf 78 I 17.9971 40.5833 27 @ -0.2578 29.8848 45.6293 -Andale_Mono.ttf 78 I 17.9971 40.5833 28 F -0.0600 21.8334 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 29 S -0.0829 22.6445 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 30 p 10.0480 24.9156 42.2069 -Andale_Mono.ttf 78 I 17.9971 40.5833 31 “ 0.2324 17.6989 13.2460 -Andale_Mono.ttf 78 I 17.9971 40.5833 32 % -0.1862 32.6598 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 33 £ 0.1111 26.7902 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 34 . 33.6927 7.2279 7.2279 -Andale_Mono.ttf 78 I 17.9971 40.5833 35 2 -0.3292 21.9695 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 36 5 -0.1537 22.1304 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 37 m 10.1806 27.6138 30.6264 -Andale_Mono.ttf 78 I 17.9971 40.5833 38 V 0.3190 32.2460 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 39 6 -0.0364 25.4319 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 40 w 9.9862 29.5170 30.4195 -Andale_Mono.ttf 78 I 17.9971 40.5833 41 T 0.2215 29.4710 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 42 M -0.0810 25.2250 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 43 G -0.2182 26.5833 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 44 b -0.1069 24.9156 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 45 9 -0.1517 25.2250 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 46 ; 9.7599 7.2279 36.8514 -Andale_Mono.ttf 78 I 17.9971 40.5833 47 D 0.0188 25.2250 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 48 L 0.1516 21.8334 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 49 y 10.0345 26.6417 42.0000 -Andale_Mono.ttf 78 I 17.9971 40.5833 50 ‘ -0.2665 7.2279 13.2460 -Andale_Mono.ttf 78 I 17.9971 40.5833 51 \ -0.1975 24.4014 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 52 R -0.2935 27.3351 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 53 < 5.2105 21.2279 29.2098 -Andale_Mono.ttf 78 I 17.9971 40.5833 54 4 -0.2264 27.4836 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 55 8 -0.2346 25.7598 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 56 0 -0.1688 26.7880 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 57 A 0.1632 32.2460 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 58 E 0.0795 21.0793 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 59 B 0.2479 25.0765 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 60 v 9.8086 26.4348 30.4195 -Andale_Mono.ttf 78 I 17.9971 40.5833 61 k 0.1920 26.1253 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 62 J -0.0117 19.6627 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 63 U -0.0276 23.0431 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 64 j -0.4592 15.7239 52.3707 -Andale_Mono.ttf 78 I 17.9971 40.5833 65 ( -0.3172 15.2098 49.6141 -Andale_Mono.ttf 78 I 17.9971 40.5833 66 7 0.1732 23.7080 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 67 § -0.3429 23.8543 52.5776 -Andale_Mono.ttf 78 I 17.9971 40.5833 68 $ -2.6915 22.6445 47.0152 -Andale_Mono.ttf 78 I 17.9971 40.5833 69 € -0.1516 30.5474 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 70 / -0.6086 24.4014 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 71 C -0.0730 26.7112 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 72 * -0.2796 20.1184 22.4376 -Andale_Mono.ttf 78 I 17.9971 40.5833 73 ” 0.0628 17.6989 13.2460 -Andale_Mono.ttf 78 I 17.9971 40.5833 74 ? -0.1188 20.5652 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 75 { -0.2251 15.8848 50.4376 -Andale_Mono.ttf 78 I 17.9971 40.5833 76 } 0.0726 15.8848 50.4376 -Andale_Mono.ttf 78 I 17.9971 40.5833 77 , 33.6313 7.2279 13.2460 -Andale_Mono.ttf 78 I 17.9971 40.5833 78 I 0.1075 17.9971 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 79 ° -0.1153 15.7261 15.7261 -Andale_Mono.ttf 78 I 17.9971 40.5833 80 K -0.0371 28.2377 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 81 H 0.0207 23.0431 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 82 q 10.1433 24.9156 42.2069 -Andale_Mono.ttf 78 I 17.9971 40.5833 83 & 0.1125 32.6598 40.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 84 ’ -0.2650 7.2279 13.2460 -Andale_Mono.ttf 78 I 17.9971 40.5833 85 [ 0.0943 11.2250 47.8696 -Andale_Mono.ttf 78 I 17.9971 40.5833 86 - 22.4695 16.9359 4.1457 -Andale_Mono.ttf 78 I 17.9971 40.5833 87 Y -0.1266 29.8264 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 88 Q -0.2243 28.6167 47.7692 -Andale_Mono.ttf 78 I 17.9971 40.5833 89 " -0.0810 14.9239 15.2098 -Andale_Mono.ttf 78 I 17.9971 40.5833 90 ! -0.0577 7.2279 40.7902 -Andale_Mono.ttf 78 I 17.9971 40.5833 91 x 10.2301 26.2739 30.4195 -Andale_Mono.ttf 78 I 17.9971 40.5833 92 ) -0.2588 15.2098 49.6141 -Andale_Mono.ttf 78 I 17.9971 40.5833 93 = 12.5414 27.1098 15.2098 -Andale_Mono.ttf 78 I 17.9971 40.5833 94 + 6.5997 26.9971 26.9971 -Andale_Mono.ttf 78 I 17.9971 40.5833 95 X 0.1657 31.0946 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 96 » 10.0151 25.2250 29.2098 -Andale_Mono.ttf 78 I 17.9971 40.5833 97 ' -0.0505 4.4529 15.2098 -Andale_Mono.ttf 78 I 17.9971 40.5833 98 ¢ 4.5547 23.6474 41.2224 -Andale_Mono.ttf 78 I 17.9971 40.5833 99 Z 0.1713 24.3684 40.5833 -Andale_Mono.ttf 78 I 17.9971 40.5833 100 > 5.4400 21.2279 29.2098 -Andale_Mono.ttf 78 I 17.9971 40.5833 101 ® -0.0538 35.0793 34.5652 -Andale_Mono.ttf 78 I 17.9971 40.5833 102 © -0.2816 35.0793 34.5652 -Andale_Mono.ttf 78 I 17.9971 40.5833 103 ] 0.2147 11.2250 47.8696 -Andale_Mono.ttf 78 I 17.9971 40.5833 104 é -1.0517 25.2250 42.0460 -Andale_Mono.ttf 78 I 17.9971 40.5833 105 z 9.8812 23.1917 30.4195 -Andale_Mono.ttf 78 I 17.9971 40.5833 106 _ 49.6686 35.0793 3.8362 -Andale_Mono.ttf 78 I 17.9971 40.5833 107 ¥ -0.3169 29.8264 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 1 t 2.1274 22.6445 38.7569 -Andale_Mono.ttf 79 ° 15.7261 15.7261 2 h 0.3626 23.0431 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 3 a 10.1758 24.2529 30.8333 -Andale_Mono.ttf 79 ° 15.7261 15.7261 4 n 10.0245 23.0431 30.6264 -Andale_Mono.ttf 79 ° 15.7261 15.7261 5 P 0.4542 22.8055 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 6 o 10.0653 26.7880 30.8333 -Andale_Mono.ttf 79 ° 15.7261 15.7261 7 e 9.8680 25.2250 30.8333 -Andale_Mono.ttf 79 ° 15.7261 15.7261 8 : 10.2994 7.2279 30.8333 -Andale_Mono.ttf 79 ° 15.7261 15.7261 9 r 10.1620 20.4043 30.6264 -Andale_Mono.ttf 79 ° 15.7261 15.7261 10 l 0.2086 20.4167 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 11 i -0.0439 13.3043 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 12 1 -0.0050 21.0793 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 13 | 0.5734 4.1457 51.1917 -Andale_Mono.ttf 79 ° 15.7261 15.7261 14 N 0.2119 24.3684 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 15 f 0.2667 22.7449 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 16 g 10.1628 26.2862 42.2069 -Andale_Mono.ttf 79 ° 15.7261 15.7261 17 d -0.0333 24.9156 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 18 W 0.0055 32.6598 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 19 s 9.6609 22.4960 30.8333 -Andale_Mono.ttf 79 ° 15.7261 15.7261 20 c 10.1193 24.2529 30.8333 -Andale_Mono.ttf 79 ° 15.7261 15.7261 21 u 10.2129 23.0431 30.6264 -Andale_Mono.ttf 79 ° 15.7261 15.7261 22 3 0.0659 22.4376 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 23 ~ 21.5646 31.2431 8.4376 -Andale_Mono.ttf 79 ° 15.7261 15.7261 24 # 0.2699 29.7261 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 25 O 0.0801 27.4069 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 26 ` -0.9700 12.2739 8.6445 -Andale_Mono.ttf 79 ° 15.7261 15.7261 27 @ -0.0144 29.8848 45.6293 -Andale_Mono.ttf 79 ° 15.7261 15.7261 28 F 0.2069 21.8334 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 29 S 0.1726 22.6445 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 30 p 10.1760 24.9156 42.2069 -Andale_Mono.ttf 79 ° 15.7261 15.7261 31 “ 0.0797 17.6989 13.2460 -Andale_Mono.ttf 79 ° 15.7261 15.7261 32 % -0.1664 32.6598 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 33 £ 0.1807 26.7902 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 34 . 34.2051 7.2279 7.2279 -Andale_Mono.ttf 79 ° 15.7261 15.7261 35 2 0.1243 21.9695 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 36 5 0.0173 22.1304 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 37 m 10.2215 27.6138 30.6264 -Andale_Mono.ttf 79 ° 15.7261 15.7261 38 V 0.2364 32.2460 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 39 6 0.3726 25.4319 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 40 w 10.2414 29.5170 30.4195 -Andale_Mono.ttf 79 ° 15.7261 15.7261 41 T 0.1335 29.4710 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 42 M 0.3886 25.2250 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 43 G 0.1790 26.5833 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 44 b 0.2584 24.9156 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 45 9 0.0100 25.2250 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 46 ; 10.2456 7.2279 36.8514 -Andale_Mono.ttf 79 ° 15.7261 15.7261 47 D -0.0414 25.2250 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 48 L 0.3069 21.8334 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 49 y 10.5009 26.6417 42.0000 -Andale_Mono.ttf 79 ° 15.7261 15.7261 50 ‘ 0.0474 7.2279 13.2460 -Andale_Mono.ttf 79 ° 15.7261 15.7261 51 \ -0.0159 24.4014 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 52 R 0.3795 27.3351 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 53 < 5.7749 21.2279 29.2098 -Andale_Mono.ttf 79 ° 15.7261 15.7261 54 4 0.4224 27.4836 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 55 8 -0.3211 25.7598 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 56 0 -0.2021 26.7880 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 57 A 0.1259 32.2460 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 58 E 0.0063 21.0793 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 59 B 0.0739 25.0765 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 60 v 10.3814 26.4348 30.4195 -Andale_Mono.ttf 79 ° 15.7261 15.7261 61 k 0.3090 26.1253 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 62 J 0.1394 19.6627 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 63 U 0.3634 23.0431 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 64 j 0.1176 15.7239 52.3707 -Andale_Mono.ttf 79 ° 15.7261 15.7261 65 ( 0.1223 15.2098 49.6141 -Andale_Mono.ttf 79 ° 15.7261 15.7261 66 7 0.0548 23.7080 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 67 § -0.3558 23.8543 52.5776 -Andale_Mono.ttf 79 ° 15.7261 15.7261 68 $ -2.6313 22.6445 47.0152 -Andale_Mono.ttf 79 ° 15.7261 15.7261 69 € -0.1431 30.5474 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 70 / 0.0184 24.4014 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 71 C -0.0207 26.7112 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 72 * 0.0950 20.1184 22.4376 -Andale_Mono.ttf 79 ° 15.7261 15.7261 73 ” -0.2040 17.6989 13.2460 -Andale_Mono.ttf 79 ° 15.7261 15.7261 74 ? 0.1359 20.5652 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 75 { 0.3450 15.8848 50.4376 -Andale_Mono.ttf 79 ° 15.7261 15.7261 76 } 0.2625 15.8848 50.4376 -Andale_Mono.ttf 79 ° 15.7261 15.7261 77 , 33.6566 7.2279 13.2460 -Andale_Mono.ttf 79 ° 15.7261 15.7261 78 I 0.1147 17.9971 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 79 ° 0.3031 15.7261 15.7261 -Andale_Mono.ttf 79 ° 15.7261 15.7261 80 K 0.1379 28.2377 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 81 H 0.0109 23.0431 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 82 q 10.1065 24.9156 42.2069 -Andale_Mono.ttf 79 ° 15.7261 15.7261 83 & -0.1310 32.6598 40.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 84 ’ 0.1536 7.2279 13.2460 -Andale_Mono.ttf 79 ° 15.7261 15.7261 85 [ 0.2879 11.2250 47.8696 -Andale_Mono.ttf 79 ° 15.7261 15.7261 86 - 22.2938 16.9359 4.1457 -Andale_Mono.ttf 79 ° 15.7261 15.7261 87 Y 0.3411 29.8264 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 88 Q 0.1500 28.6167 47.7692 -Andale_Mono.ttf 79 ° 15.7261 15.7261 89 " 0.3653 14.9239 15.2098 -Andale_Mono.ttf 79 ° 15.7261 15.7261 90 ! 0.1553 7.2279 40.7902 -Andale_Mono.ttf 79 ° 15.7261 15.7261 91 x 10.3442 26.2739 30.4195 -Andale_Mono.ttf 79 ° 15.7261 15.7261 92 ) 0.0864 15.2098 49.6141 -Andale_Mono.ttf 79 ° 15.7261 15.7261 93 = 12.8354 27.1098 15.2098 -Andale_Mono.ttf 79 ° 15.7261 15.7261 94 + 6.8049 26.9971 26.9971 -Andale_Mono.ttf 79 ° 15.7261 15.7261 95 X 0.3366 31.0946 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 96 » 9.9057 25.2250 29.2098 -Andale_Mono.ttf 79 ° 15.7261 15.7261 97 ' 0.3098 4.4529 15.2098 -Andale_Mono.ttf 79 ° 15.7261 15.7261 98 ¢ 5.3334 23.6474 41.2224 -Andale_Mono.ttf 79 ° 15.7261 15.7261 99 Z -0.0065 24.3684 40.5833 -Andale_Mono.ttf 79 ° 15.7261 15.7261 100 > 5.6210 21.2279 29.2098 -Andale_Mono.ttf 79 ° 15.7261 15.7261 101 ® -0.1361 35.0793 34.5652 -Andale_Mono.ttf 79 ° 15.7261 15.7261 102 © 0.0483 35.0793 34.5652 -Andale_Mono.ttf 79 ° 15.7261 15.7261 103 ] 0.4569 11.2250 47.8696 -Andale_Mono.ttf 79 ° 15.7261 15.7261 104 é -0.8793 25.2250 42.0460 -Andale_Mono.ttf 79 ° 15.7261 15.7261 105 z 10.6055 23.1917 30.4195 -Andale_Mono.ttf 79 ° 15.7261 15.7261 106 _ 49.4808 35.0793 3.8362 -Andale_Mono.ttf 79 ° 15.7261 15.7261 107 ¥ 0.3169 29.8264 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 1 t 1.9412 22.6445 38.7569 -Andale_Mono.ttf 80 K 28.2377 40.5833 2 h 0.1690 23.0431 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 3 a 10.1041 24.2529 30.8333 -Andale_Mono.ttf 80 K 28.2377 40.5833 4 n 9.6839 23.0431 30.6264 -Andale_Mono.ttf 80 K 28.2377 40.5833 5 P 0.1266 22.8055 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 6 o 10.2293 26.7880 30.8333 -Andale_Mono.ttf 80 K 28.2377 40.5833 7 e 9.9949 25.2250 30.8333 -Andale_Mono.ttf 80 K 28.2377 40.5833 8 : 9.7253 7.2279 30.8333 -Andale_Mono.ttf 80 K 28.2377 40.5833 9 r 10.3050 20.4043 30.6264 -Andale_Mono.ttf 80 K 28.2377 40.5833 10 l -0.1597 20.4167 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 11 i -0.2396 13.3043 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 12 1 0.0309 21.0793 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 13 | -0.0262 4.1457 51.1917 -Andale_Mono.ttf 80 K 28.2377 40.5833 14 N 0.0996 24.3684 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 15 f 0.0107 22.7449 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 16 g 10.2696 26.2862 42.2069 -Andale_Mono.ttf 80 K 28.2377 40.5833 17 d 0.1705 24.9156 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 18 W -0.0636 32.6598 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 19 s 9.3619 22.4960 30.8333 -Andale_Mono.ttf 80 K 28.2377 40.5833 20 c 9.7981 24.2529 30.8333 -Andale_Mono.ttf 80 K 28.2377 40.5833 21 u 10.0917 23.0431 30.6264 -Andale_Mono.ttf 80 K 28.2377 40.5833 22 3 -0.2302 22.4376 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 23 ~ 21.0789 31.2431 8.4376 -Andale_Mono.ttf 80 K 28.2377 40.5833 24 # 0.1105 29.7261 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 25 O -0.3473 27.4069 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 26 ` -1.3234 12.2739 8.6445 -Andale_Mono.ttf 80 K 28.2377 40.5833 27 @ -0.4284 29.8848 45.6293 -Andale_Mono.ttf 80 K 28.2377 40.5833 28 F 0.4456 21.8334 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 29 S -0.1115 22.6445 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 30 p 9.8955 24.9156 42.2069 -Andale_Mono.ttf 80 K 28.2377 40.5833 31 “ -0.1617 17.6989 13.2460 -Andale_Mono.ttf 80 K 28.2377 40.5833 32 % -0.0405 32.6598 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 33 £ -0.4011 26.7902 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 34 . 33.6505 7.2279 7.2279 -Andale_Mono.ttf 80 K 28.2377 40.5833 35 2 -0.4445 21.9695 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 36 5 0.0327 22.1304 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 37 m 9.9457 27.6138 30.6264 -Andale_Mono.ttf 80 K 28.2377 40.5833 38 V -0.2272 32.2460 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 39 6 -0.1456 25.4319 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 40 w 10.1718 29.5170 30.4195 -Andale_Mono.ttf 80 K 28.2377 40.5833 41 T -0.0420 29.4710 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 42 M -0.1473 25.2250 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 43 G 0.0348 26.5833 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 44 b 0.0471 24.9156 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 45 9 -0.2996 25.2250 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 46 ; 9.8164 7.2279 36.8514 -Andale_Mono.ttf 80 K 28.2377 40.5833 47 D -0.0985 25.2250 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 48 L 0.0402 21.8334 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 49 y 10.0469 26.6417 42.0000 -Andale_Mono.ttf 80 K 28.2377 40.5833 50 ‘ -0.4045 7.2279 13.2460 -Andale_Mono.ttf 80 K 28.2377 40.5833 51 \ -0.4284 24.4014 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 52 R 0.1402 27.3351 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 53 < 5.4946 21.2279 29.2098 -Andale_Mono.ttf 80 K 28.2377 40.5833 54 4 -0.2441 27.4836 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 55 8 -0.2876 25.7598 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 56 0 0.0222 26.7880 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 57 A -0.2608 32.2460 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 58 E 0.1223 21.0793 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 59 B -0.0010 25.0765 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 60 v 10.0002 26.4348 30.4195 -Andale_Mono.ttf 80 K 28.2377 40.5833 61 k 0.0873 26.1253 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 62 J -0.1297 19.6627 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 63 U 0.0415 23.0431 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 64 j -0.0274 15.7239 52.3707 -Andale_Mono.ttf 80 K 28.2377 40.5833 65 ( -0.2970 15.2098 49.6141 -Andale_Mono.ttf 80 K 28.2377 40.5833 66 7 -0.0232 23.7080 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 67 § -0.1207 23.8543 52.5776 -Andale_Mono.ttf 80 K 28.2377 40.5833 68 $ -2.9269 22.6445 47.0152 -Andale_Mono.ttf 80 K 28.2377 40.5833 69 € -0.3547 30.5474 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 70 / -0.0383 24.4014 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 71 C -0.2327 26.7112 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 72 * 0.1713 20.1184 22.4376 -Andale_Mono.ttf 80 K 28.2377 40.5833 73 ” -0.3304 17.6989 13.2460 -Andale_Mono.ttf 80 K 28.2377 40.5833 74 ? -0.0739 20.5652 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 75 { -0.0264 15.8848 50.4376 -Andale_Mono.ttf 80 K 28.2377 40.5833 76 } -0.0992 15.8848 50.4376 -Andale_Mono.ttf 80 K 28.2377 40.5833 77 , 33.6541 7.2279 13.2460 -Andale_Mono.ttf 80 K 28.2377 40.5833 78 I 0.1758 17.9971 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 79 ° -0.4981 15.7261 15.7261 -Andale_Mono.ttf 80 K 28.2377 40.5833 80 K 0.1705 28.2377 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 81 H 0.0435 23.0431 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 82 q 9.9167 24.9156 42.2069 -Andale_Mono.ttf 80 K 28.2377 40.5833 83 & -0.2487 32.6598 40.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 84 ’ -0.3733 7.2279 13.2460 -Andale_Mono.ttf 80 K 28.2377 40.5833 85 [ -0.2247 11.2250 47.8696 -Andale_Mono.ttf 80 K 28.2377 40.5833 86 - 22.4239 16.9359 4.1457 -Andale_Mono.ttf 80 K 28.2377 40.5833 87 Y -0.0009 29.8264 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 88 Q -0.5100 28.6167 47.7692 -Andale_Mono.ttf 80 K 28.2377 40.5833 89 " 0.0439 14.9239 15.2098 -Andale_Mono.ttf 80 K 28.2377 40.5833 90 ! -0.1355 7.2279 40.7902 -Andale_Mono.ttf 80 K 28.2377 40.5833 91 x 10.0345 26.2739 30.4195 -Andale_Mono.ttf 80 K 28.2377 40.5833 92 ) -0.1931 15.2098 49.6141 -Andale_Mono.ttf 80 K 28.2377 40.5833 93 = 12.6366 27.1098 15.2098 -Andale_Mono.ttf 80 K 28.2377 40.5833 94 + 6.7375 26.9971 26.9971 -Andale_Mono.ttf 80 K 28.2377 40.5833 95 X -0.0636 31.0946 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 96 » 9.9210 25.2250 29.2098 -Andale_Mono.ttf 80 K 28.2377 40.5833 97 ' 0.1293 4.4529 15.2098 -Andale_Mono.ttf 80 K 28.2377 40.5833 98 ¢ 4.9355 23.6474 41.2224 -Andale_Mono.ttf 80 K 28.2377 40.5833 99 Z -0.3050 24.3684 40.5833 -Andale_Mono.ttf 80 K 28.2377 40.5833 100 > 5.2875 21.2279 29.2098 -Andale_Mono.ttf 80 K 28.2377 40.5833 101 ® -0.4153 35.0793 34.5652 -Andale_Mono.ttf 80 K 28.2377 40.5833 102 © -0.5205 35.0793 34.5652 -Andale_Mono.ttf 80 K 28.2377 40.5833 103 ] 0.2093 11.2250 47.8696 -Andale_Mono.ttf 80 K 28.2377 40.5833 104 é -1.5238 25.2250 42.0460 -Andale_Mono.ttf 80 K 28.2377 40.5833 105 z 9.7352 23.1917 30.4195 -Andale_Mono.ttf 80 K 28.2377 40.5833 106 _ 49.3954 35.0793 3.8362 -Andale_Mono.ttf 80 K 28.2377 40.5833 107 ¥ 0.0218 29.8264 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 1 t 2.2315 22.6445 38.7569 -Andale_Mono.ttf 81 H 23.0431 40.5833 2 h -0.3052 23.0431 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 3 a 9.6966 24.2529 30.8333 -Andale_Mono.ttf 81 H 23.0431 40.5833 4 n 9.9833 23.0431 30.6264 -Andale_Mono.ttf 81 H 23.0431 40.5833 5 P -0.0784 22.8055 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 6 o 10.0611 26.7880 30.8333 -Andale_Mono.ttf 81 H 23.0431 40.5833 7 e 10.0923 25.2250 30.8333 -Andale_Mono.ttf 81 H 23.0431 40.5833 8 : 10.1126 7.2279 30.8333 -Andale_Mono.ttf 81 H 23.0431 40.5833 9 r 9.9083 20.4043 30.6264 -Andale_Mono.ttf 81 H 23.0431 40.5833 10 l 0.1209 20.4167 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 11 i -0.1671 13.3043 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 12 1 -0.1868 21.0793 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 13 | 0.1424 4.1457 51.1917 -Andale_Mono.ttf 81 H 23.0431 40.5833 14 N -0.1692 24.3684 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 15 f 0.0805 22.7449 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 16 g 9.8276 26.2862 42.2069 -Andale_Mono.ttf 81 H 23.0431 40.5833 17 d 0.0841 24.9156 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 18 W -0.0327 32.6598 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 19 s 10.1551 22.4960 30.8333 -Andale_Mono.ttf 81 H 23.0431 40.5833 20 c 10.1833 24.2529 30.8333 -Andale_Mono.ttf 81 H 23.0431 40.5833 21 u 10.2448 23.0431 30.6264 -Andale_Mono.ttf 81 H 23.0431 40.5833 22 3 -0.2333 22.4376 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 23 ~ 21.0816 31.2431 8.4376 -Andale_Mono.ttf 81 H 23.0431 40.5833 24 # -0.0175 29.7261 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 25 O -0.3613 27.4069 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 26 ` -1.2463 12.2739 8.6445 -Andale_Mono.ttf 81 H 23.0431 40.5833 27 @ -0.1241 29.8848 45.6293 -Andale_Mono.ttf 81 H 23.0431 40.5833 28 F -0.1199 21.8334 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 29 S -0.1881 22.6445 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 30 p 9.7207 24.9156 42.2069 -Andale_Mono.ttf 81 H 23.0431 40.5833 31 “ -0.4730 17.6989 13.2460 -Andale_Mono.ttf 81 H 23.0431 40.5833 32 % -0.0393 32.6598 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 33 £ -0.0597 26.7902 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 34 . 33.6763 7.2279 7.2279 -Andale_Mono.ttf 81 H 23.0431 40.5833 35 2 -0.2282 21.9695 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 36 5 -0.1732 22.1304 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 37 m 9.7967 27.6138 30.6264 -Andale_Mono.ttf 81 H 23.0431 40.5833 38 V 0.0496 32.2460 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 39 6 -0.5111 25.4319 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 40 w 9.9815 29.5170 30.4195 -Andale_Mono.ttf 81 H 23.0431 40.5833 41 T 0.1342 29.4710 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 42 M -0.2261 25.2250 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 43 G -0.1975 26.5833 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 44 b -0.0061 24.9156 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 45 9 -0.4310 25.2250 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 46 ; 9.7417 7.2279 36.8514 -Andale_Mono.ttf 81 H 23.0431 40.5833 47 D 0.3613 25.2250 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 48 L -0.0922 21.8334 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 49 y 10.0354 26.6417 42.0000 -Andale_Mono.ttf 81 H 23.0431 40.5833 50 ‘ -0.1761 7.2279 13.2460 -Andale_Mono.ttf 81 H 23.0431 40.5833 51 \ -0.0707 24.4014 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 52 R -0.1042 27.3351 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 53 < 5.4262 21.2279 29.2098 -Andale_Mono.ttf 81 H 23.0431 40.5833 54 4 0.0805 27.4836 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 55 8 0.0002 25.7598 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 56 0 -0.2440 26.7880 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 57 A -0.0828 32.2460 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 58 E -0.0506 21.0793 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 59 B -0.3883 25.0765 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 60 v 10.1629 26.4348 30.4195 -Andale_Mono.ttf 81 H 23.0431 40.5833 61 k 0.0050 26.1253 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 62 J -0.2111 19.6627 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 63 U -0.0377 23.0431 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 64 j -0.1501 15.7239 52.3707 -Andale_Mono.ttf 81 H 23.0431 40.5833 65 ( -0.1197 15.2098 49.6141 -Andale_Mono.ttf 81 H 23.0431 40.5833 66 7 -0.1619 23.7080 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 67 § -0.1125 23.8543 52.5776 -Andale_Mono.ttf 81 H 23.0431 40.5833 68 $ -3.1546 22.6445 47.0152 -Andale_Mono.ttf 81 H 23.0431 40.5833 69 € -0.4084 30.5474 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 70 / -0.2328 24.4014 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 71 C -0.2062 26.7112 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 72 * 0.0768 20.1184 22.4376 -Andale_Mono.ttf 81 H 23.0431 40.5833 73 ” -0.1196 17.6989 13.2460 -Andale_Mono.ttf 81 H 23.0431 40.5833 74 ? -0.4002 20.5652 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 75 { 0.1651 15.8848 50.4376 -Andale_Mono.ttf 81 H 23.0431 40.5833 76 } -0.4711 15.8848 50.4376 -Andale_Mono.ttf 81 H 23.0431 40.5833 77 , 33.5135 7.2279 13.2460 -Andale_Mono.ttf 81 H 23.0431 40.5833 78 I -0.2289 17.9971 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 79 ° -0.3429 15.7261 15.7261 -Andale_Mono.ttf 81 H 23.0431 40.5833 80 K 0.0314 28.2377 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 81 H 0.0922 23.0431 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 82 q 9.9287 24.9156 42.2069 -Andale_Mono.ttf 81 H 23.0431 40.5833 83 & -0.0569 32.6598 40.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 84 ’ -0.2755 7.2279 13.2460 -Andale_Mono.ttf 81 H 23.0431 40.5833 85 [ 0.0201 11.2250 47.8696 -Andale_Mono.ttf 81 H 23.0431 40.5833 86 - 22.5183 16.9359 4.1457 -Andale_Mono.ttf 81 H 23.0431 40.5833 87 Y 0.0694 29.8264 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 88 Q -0.0337 28.6167 47.7692 -Andale_Mono.ttf 81 H 23.0431 40.5833 89 " -0.0237 14.9239 15.2098 -Andale_Mono.ttf 81 H 23.0431 40.5833 90 ! -0.0274 7.2279 40.7902 -Andale_Mono.ttf 81 H 23.0431 40.5833 91 x 10.1281 26.2739 30.4195 -Andale_Mono.ttf 81 H 23.0431 40.5833 92 ) -0.2213 15.2098 49.6141 -Andale_Mono.ttf 81 H 23.0431 40.5833 93 = 12.6644 27.1098 15.2098 -Andale_Mono.ttf 81 H 23.0431 40.5833 94 + 6.5559 26.9971 26.9971 -Andale_Mono.ttf 81 H 23.0431 40.5833 95 X 0.1638 31.0946 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 96 » 9.6782 25.2250 29.2098 -Andale_Mono.ttf 81 H 23.0431 40.5833 97 ' 0.0953 4.4529 15.2098 -Andale_Mono.ttf 81 H 23.0431 40.5833 98 ¢ 4.6877 23.6474 41.2224 -Andale_Mono.ttf 81 H 23.0431 40.5833 99 Z 0.1531 24.3684 40.5833 -Andale_Mono.ttf 81 H 23.0431 40.5833 100 > 5.7416 21.2279 29.2098 -Andale_Mono.ttf 81 H 23.0431 40.5833 101 ® -0.0820 35.0793 34.5652 -Andale_Mono.ttf 81 H 23.0431 40.5833 102 © 0.0400 35.0793 34.5652 -Andale_Mono.ttf 81 H 23.0431 40.5833 103 ] -0.1190 11.2250 47.8696 -Andale_Mono.ttf 81 H 23.0431 40.5833 104 é -1.3138 25.2250 42.0460 -Andale_Mono.ttf 81 H 23.0431 40.5833 105 z 9.6869 23.1917 30.4195 -Andale_Mono.ttf 81 H 23.0431 40.5833 106 _ 49.6421 35.0793 3.8362 -Andale_Mono.ttf 81 H 23.0431 40.5833 107 ¥ 0.1378 29.8264 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 1 t -7.9862 22.6445 38.7569 -Andale_Mono.ttf 82 q 24.9156 42.2069 2 h -9.9801 23.0431 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 3 a 0.1276 24.2529 30.8333 -Andale_Mono.ttf 82 q 24.9156 42.2069 4 n -0.3370 23.0431 30.6264 -Andale_Mono.ttf 82 q 24.9156 42.2069 5 P -9.9919 22.8055 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 6 o 0.3330 26.7880 30.8333 -Andale_Mono.ttf 82 q 24.9156 42.2069 7 e 0.2483 25.2250 30.8333 -Andale_Mono.ttf 82 q 24.9156 42.2069 8 : -0.0327 7.2279 30.8333 -Andale_Mono.ttf 82 q 24.9156 42.2069 9 r 0.2993 20.4043 30.6264 -Andale_Mono.ttf 82 q 24.9156 42.2069 10 l -10.1117 20.4167 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 11 i -10.0854 13.3043 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 12 1 -10.0810 21.0793 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 13 | -10.1488 4.1457 51.1917 -Andale_Mono.ttf 82 q 24.9156 42.2069 14 N -10.3703 24.3684 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 15 f -9.4611 22.7449 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 16 g 0.1159 26.2862 42.2069 -Andale_Mono.ttf 82 q 24.9156 42.2069 17 d -10.0329 24.9156 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 18 W -10.1189 32.6598 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 19 s -0.2724 22.4960 30.8333 -Andale_Mono.ttf 82 q 24.9156 42.2069 20 c -0.0805 24.2529 30.8333 -Andale_Mono.ttf 82 q 24.9156 42.2069 21 u 0.1805 23.0431 30.6264 -Andale_Mono.ttf 82 q 24.9156 42.2069 22 3 -10.1297 22.4376 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 23 ~ 11.1793 31.2431 8.4376 -Andale_Mono.ttf 82 q 24.9156 42.2069 24 # -9.8509 29.7261 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 25 O -10.2131 27.4069 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 26 ` -11.3607 12.2739 8.6445 -Andale_Mono.ttf 82 q 24.9156 42.2069 27 @ -10.4027 29.8848 45.6293 -Andale_Mono.ttf 82 q 24.9156 42.2069 28 F -9.7471 21.8334 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 29 S -10.1422 22.6445 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 30 p -0.0895 24.9156 42.2069 -Andale_Mono.ttf 82 q 24.9156 42.2069 31 “ -10.0176 17.6989 13.2460 -Andale_Mono.ttf 82 q 24.9156 42.2069 32 % -10.0707 32.6598 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 33 £ -10.1303 26.7902 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 34 . 23.6399 7.2279 7.2279 -Andale_Mono.ttf 82 q 24.9156 42.2069 35 2 -10.0859 21.9695 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 36 5 -9.9689 22.1304 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 37 m 0.1991 27.6138 30.6264 -Andale_Mono.ttf 82 q 24.9156 42.2069 38 V -10.0052 32.2460 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 39 6 -10.1387 25.4319 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 40 w 0.0337 29.5170 30.4195 -Andale_Mono.ttf 82 q 24.9156 42.2069 41 T -9.8600 29.4710 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 42 M -10.1632 25.2250 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 43 G -10.3921 26.5833 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 44 b -9.9335 24.9156 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 45 9 -10.1983 25.2250 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 46 ; 0.1083 7.2279 36.8514 -Andale_Mono.ttf 82 q 24.9156 42.2069 47 D -9.9509 25.2250 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 48 L -10.1156 21.8334 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 49 y -0.1586 26.6417 42.0000 -Andale_Mono.ttf 82 q 24.9156 42.2069 50 ‘ -10.0429 7.2279 13.2460 -Andale_Mono.ttf 82 q 24.9156 42.2069 51 \ -10.1388 24.4014 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 52 R -9.9362 27.3351 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 53 < -4.4843 21.2279 29.2098 -Andale_Mono.ttf 82 q 24.9156 42.2069 54 4 -9.9029 27.4836 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 55 8 -10.1494 25.7598 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 56 0 -10.2417 26.7880 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 57 A -9.8718 32.2460 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 58 E -9.9730 21.0793 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 59 B -9.9256 25.0765 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 60 v 0.4498 26.4348 30.4195 -Andale_Mono.ttf 82 q 24.9156 42.2069 61 k -9.6912 26.1253 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 62 J -9.7381 19.6627 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 63 U -9.8187 23.0431 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 64 j -10.3923 15.7239 52.3707 -Andale_Mono.ttf 82 q 24.9156 42.2069 65 ( -10.0519 15.2098 49.6141 -Andale_Mono.ttf 82 q 24.9156 42.2069 66 7 -10.1396 23.7080 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 67 § -9.7747 23.8543 52.5776 -Andale_Mono.ttf 82 q 24.9156 42.2069 68 $ -12.6330 22.6445 47.0152 -Andale_Mono.ttf 82 q 24.9156 42.2069 69 € -10.1758 30.5474 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 70 / -10.0318 24.4014 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 71 C -10.3699 26.7112 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 72 * -9.8006 20.1184 22.4376 -Andale_Mono.ttf 82 q 24.9156 42.2069 73 ” -9.9793 17.6989 13.2460 -Andale_Mono.ttf 82 q 24.9156 42.2069 74 ? -10.2502 20.5652 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 75 { -9.9238 15.8848 50.4376 -Andale_Mono.ttf 82 q 24.9156 42.2069 76 } -9.9339 15.8848 50.4376 -Andale_Mono.ttf 82 q 24.9156 42.2069 77 , 23.4936 7.2279 13.2460 -Andale_Mono.ttf 82 q 24.9156 42.2069 78 I -9.9431 17.9971 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 79 ° -10.1284 15.7261 15.7261 -Andale_Mono.ttf 82 q 24.9156 42.2069 80 K -9.9680 28.2377 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 81 H -10.0808 23.0431 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 82 q 0.0259 24.9156 42.2069 -Andale_Mono.ttf 82 q 24.9156 42.2069 83 & -9.8851 32.6598 40.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 84 ’ -9.9297 7.2279 13.2460 -Andale_Mono.ttf 82 q 24.9156 42.2069 85 [ -9.9513 11.2250 47.8696 -Andale_Mono.ttf 82 q 24.9156 42.2069 86 - 12.7196 16.9359 4.1457 -Andale_Mono.ttf 82 q 24.9156 42.2069 87 Y -9.8822 29.8264 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 88 Q -10.4228 28.6167 47.7692 -Andale_Mono.ttf 82 q 24.9156 42.2069 89 " -10.1927 14.9239 15.2098 -Andale_Mono.ttf 82 q 24.9156 42.2069 90 ! -9.8577 7.2279 40.7902 -Andale_Mono.ttf 82 q 24.9156 42.2069 91 x 0.2194 26.2739 30.4195 -Andale_Mono.ttf 82 q 24.9156 42.2069 92 ) -9.8318 15.2098 49.6141 -Andale_Mono.ttf 82 q 24.9156 42.2069 93 = 2.4502 27.1098 15.2098 -Andale_Mono.ttf 82 q 24.9156 42.2069 94 + -3.3685 26.9971 26.9971 -Andale_Mono.ttf 82 q 24.9156 42.2069 95 X -9.6983 31.0946 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 96 » 0.1092 25.2250 29.2098 -Andale_Mono.ttf 82 q 24.9156 42.2069 97 ' -9.8925 4.4529 15.2098 -Andale_Mono.ttf 82 q 24.9156 42.2069 98 ¢ -5.1211 23.6474 41.2224 -Andale_Mono.ttf 82 q 24.9156 42.2069 99 Z -9.9791 24.3684 40.5833 -Andale_Mono.ttf 82 q 24.9156 42.2069 100 > -4.4649 21.2279 29.2098 -Andale_Mono.ttf 82 q 24.9156 42.2069 101 ® -10.0784 35.0793 34.5652 -Andale_Mono.ttf 82 q 24.9156 42.2069 102 © -10.0214 35.0793 34.5652 -Andale_Mono.ttf 82 q 24.9156 42.2069 103 ] -10.1528 11.2250 47.8696 -Andale_Mono.ttf 82 q 24.9156 42.2069 104 é -11.3356 25.2250 42.0460 -Andale_Mono.ttf 82 q 24.9156 42.2069 105 z 0.3335 23.1917 30.4195 -Andale_Mono.ttf 82 q 24.9156 42.2069 106 _ 39.6864 35.0793 3.8362 -Andale_Mono.ttf 82 q 24.9156 42.2069 107 ¥ -9.9851 29.8264 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 1 t 2.2609 22.6445 38.7569 -Andale_Mono.ttf 83 & 32.6598 40.9971 2 h 0.3948 23.0431 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 3 a 10.1749 24.2529 30.8333 -Andale_Mono.ttf 83 & 32.6598 40.9971 4 n 10.4215 23.0431 30.6264 -Andale_Mono.ttf 83 & 32.6598 40.9971 5 P 0.2843 22.8055 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 6 o 10.0542 26.7880 30.8333 -Andale_Mono.ttf 83 & 32.6598 40.9971 7 e 10.0107 25.2250 30.8333 -Andale_Mono.ttf 83 & 32.6598 40.9971 8 : 10.1781 7.2279 30.8333 -Andale_Mono.ttf 83 & 32.6598 40.9971 9 r 10.3471 20.4043 30.6264 -Andale_Mono.ttf 83 & 32.6598 40.9971 10 l -0.0034 20.4167 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 11 i 0.1557 13.3043 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 12 1 -0.0148 21.0793 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 13 | -0.0272 4.1457 51.1917 -Andale_Mono.ttf 83 & 32.6598 40.9971 14 N 0.2552 24.3684 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 15 f 0.2437 22.7449 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 16 g 10.5925 26.2862 42.2069 -Andale_Mono.ttf 83 & 32.6598 40.9971 17 d 0.2529 24.9156 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 18 W 0.1894 32.6598 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 19 s 10.2824 22.4960 30.8333 -Andale_Mono.ttf 83 & 32.6598 40.9971 20 c 10.1536 24.2529 30.8333 -Andale_Mono.ttf 83 & 32.6598 40.9971 21 u 10.2902 23.0431 30.6264 -Andale_Mono.ttf 83 & 32.6598 40.9971 22 3 0.0623 22.4376 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 23 ~ 21.1730 31.2431 8.4376 -Andale_Mono.ttf 83 & 32.6598 40.9971 24 # 0.2861 29.7261 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 25 O -0.1272 27.4069 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 26 ` -0.8926 12.2739 8.6445 -Andale_Mono.ttf 83 & 32.6598 40.9971 27 @ 0.0233 29.8848 45.6293 -Andale_Mono.ttf 83 & 32.6598 40.9971 28 F 0.3218 21.8334 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 29 S 0.4085 22.6445 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 30 p 10.1960 24.9156 42.2069 -Andale_Mono.ttf 83 & 32.6598 40.9971 31 “ -0.3830 17.6989 13.2460 -Andale_Mono.ttf 83 & 32.6598 40.9971 32 % 0.1952 32.6598 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 33 £ 0.0345 26.7902 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 34 . 34.0958 7.2279 7.2279 -Andale_Mono.ttf 83 & 32.6598 40.9971 35 2 -0.2429 21.9695 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 36 5 0.2609 22.1304 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 37 m 10.0897 27.6138 30.6264 -Andale_Mono.ttf 83 & 32.6598 40.9971 38 V 0.3148 32.2460 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 39 6 -0.2708 25.4319 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 40 w 10.1630 29.5170 30.4195 -Andale_Mono.ttf 83 & 32.6598 40.9971 41 T 0.1326 29.4710 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 42 M 0.2355 25.2250 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 43 G -0.1557 26.5833 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 44 b 0.1724 24.9156 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 45 9 0.0036 25.2250 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 46 ; 9.9601 7.2279 36.8514 -Andale_Mono.ttf 83 & 32.6598 40.9971 47 D 0.1354 25.2250 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 48 L 0.2888 21.8334 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 49 y 10.2320 26.6417 42.0000 -Andale_Mono.ttf 83 & 32.6598 40.9971 50 ‘ 0.1686 7.2279 13.2460 -Andale_Mono.ttf 83 & 32.6598 40.9971 51 \ -0.0218 24.4014 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 52 R -0.0052 27.3351 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 53 < 5.7048 21.2279 29.2098 -Andale_Mono.ttf 83 & 32.6598 40.9971 54 4 0.4517 27.4836 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 55 8 0.1491 25.7598 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 56 0 -0.2115 26.7880 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 57 A 0.0940 32.2460 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 58 E 0.1246 21.0793 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 59 B 0.3967 25.0765 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 60 v 10.6950 26.4348 30.4195 -Andale_Mono.ttf 83 & 32.6598 40.9971 61 k 0.2960 26.1253 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 62 J -0.0638 19.6627 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 63 U 0.0822 23.0431 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 64 j -0.0088 15.7239 52.3707 -Andale_Mono.ttf 83 & 32.6598 40.9971 65 ( -0.0175 15.2098 49.6141 -Andale_Mono.ttf 83 & 32.6598 40.9971 66 7 0.1554 23.7080 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 67 § 0.0611 23.8543 52.5776 -Andale_Mono.ttf 83 & 32.6598 40.9971 68 $ -2.4932 22.6445 47.0152 -Andale_Mono.ttf 83 & 32.6598 40.9971 69 € -0.0251 30.5474 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 70 / -0.1127 24.4014 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 71 C 0.0163 26.7112 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 72 * 0.1402 20.1184 22.4376 -Andale_Mono.ttf 83 & 32.6598 40.9971 73 ” 0.1887 17.6989 13.2460 -Andale_Mono.ttf 83 & 32.6598 40.9971 74 ? -0.1421 20.5652 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 75 { 0.3269 15.8848 50.4376 -Andale_Mono.ttf 83 & 32.6598 40.9971 76 } 0.0582 15.8848 50.4376 -Andale_Mono.ttf 83 & 32.6598 40.9971 77 , 33.7512 7.2279 13.2460 -Andale_Mono.ttf 83 & 32.6598 40.9971 78 I 0.3180 17.9971 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 79 ° -0.3026 15.7261 15.7261 -Andale_Mono.ttf 83 & 32.6598 40.9971 80 K 0.2489 28.2377 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 81 H 0.2182 23.0431 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 82 q 10.1182 24.9156 42.2069 -Andale_Mono.ttf 83 & 32.6598 40.9971 83 & -0.0860 32.6598 40.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 84 ’ -0.3941 7.2279 13.2460 -Andale_Mono.ttf 83 & 32.6598 40.9971 85 [ 0.1805 11.2250 47.8696 -Andale_Mono.ttf 83 & 32.6598 40.9971 86 - 22.4961 16.9359 4.1457 -Andale_Mono.ttf 83 & 32.6598 40.9971 87 Y -0.0033 29.8264 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 88 Q 0.0622 28.6167 47.7692 -Andale_Mono.ttf 83 & 32.6598 40.9971 89 " 0.1372 14.9239 15.2098 -Andale_Mono.ttf 83 & 32.6598 40.9971 90 ! 0.3187 7.2279 40.7902 -Andale_Mono.ttf 83 & 32.6598 40.9971 91 x 10.3019 26.2739 30.4195 -Andale_Mono.ttf 83 & 32.6598 40.9971 92 ) 0.5448 15.2098 49.6141 -Andale_Mono.ttf 83 & 32.6598 40.9971 93 = 12.8850 27.1098 15.2098 -Andale_Mono.ttf 83 & 32.6598 40.9971 94 + 7.1447 26.9971 26.9971 -Andale_Mono.ttf 83 & 32.6598 40.9971 95 X 0.1103 31.0946 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 96 » 10.2864 25.2250 29.2098 -Andale_Mono.ttf 83 & 32.6598 40.9971 97 ' 0.2562 4.4529 15.2098 -Andale_Mono.ttf 83 & 32.6598 40.9971 98 ¢ 4.9947 23.6474 41.2224 -Andale_Mono.ttf 83 & 32.6598 40.9971 99 Z -0.0612 24.3684 40.5833 -Andale_Mono.ttf 83 & 32.6598 40.9971 100 > 5.6419 21.2279 29.2098 -Andale_Mono.ttf 83 & 32.6598 40.9971 101 ® -0.0138 35.0793 34.5652 -Andale_Mono.ttf 83 & 32.6598 40.9971 102 © 0.2766 35.0793 34.5652 -Andale_Mono.ttf 83 & 32.6598 40.9971 103 ] -0.0680 11.2250 47.8696 -Andale_Mono.ttf 83 & 32.6598 40.9971 104 é -0.9370 25.2250 42.0460 -Andale_Mono.ttf 83 & 32.6598 40.9971 105 z 10.2715 23.1917 30.4195 -Andale_Mono.ttf 83 & 32.6598 40.9971 106 _ 49.5505 35.0793 3.8362 -Andale_Mono.ttf 83 & 32.6598 40.9971 107 ¥ 0.5657 29.8264 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 1 t 2.4251 22.6445 38.7569 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 2 h 0.0099 23.0431 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 3 a 10.0666 24.2529 30.8333 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 4 n 10.3758 23.0431 30.6264 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 5 P 0.1768 22.8055 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 6 o 10.1786 26.7880 30.8333 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 7 e 10.1088 25.2250 30.8333 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 8 : 9.9862 7.2279 30.8333 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 9 r 10.0446 20.4043 30.6264 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 10 l 0.0745 20.4167 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 11 i 0.1669 13.3043 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 12 1 -0.1763 21.0793 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 13 | 0.2715 4.1457 51.1917 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 14 N 0.2525 24.3684 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 15 f 0.1510 22.7449 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 16 g 10.0134 26.2862 42.2069 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 17 d 0.2889 24.9156 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 18 W -0.0339 32.6598 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 19 s 10.1898 22.4960 30.8333 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 20 c 10.0023 24.2529 30.8333 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 21 u 10.2310 23.0431 30.6264 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 22 3 -0.0230 22.4376 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 23 ~ 21.4574 31.2431 8.4376 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 24 # 0.1989 29.7261 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 25 O 0.0000 27.4069 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 26 ` -1.1450 12.2739 8.6445 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 27 @ -0.1098 29.8848 45.6293 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 28 F 0.2927 21.8334 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 29 S 0.1337 22.6445 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 30 p 10.0532 24.9156 42.2069 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 31 “ -0.0996 17.6989 13.2460 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 32 % 0.1597 32.6598 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 33 £ -0.0415 26.7902 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 34 . 33.7598 7.2279 7.2279 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 35 2 0.0327 21.9695 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 36 5 0.2190 22.1304 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 37 m 10.0462 27.6138 30.6264 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 38 V 0.2276 32.2460 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 39 6 0.0985 25.4319 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 40 w 10.3285 29.5170 30.4195 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 41 T 0.4233 29.4710 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 42 M 0.6136 25.2250 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 43 G -0.1103 26.5833 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 44 b 0.2011 24.9156 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 45 9 -0.2765 25.2250 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 46 ; 10.1246 7.2279 36.8514 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 47 D 0.1475 25.2250 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 48 L 0.2387 21.8334 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 49 y 10.3814 26.6417 42.0000 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 50 ‘ -0.0772 7.2279 13.2460 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 51 \ 0.0044 24.4014 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 52 R 0.1859 27.3351 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 53 < 6.0067 21.2279 29.2098 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 54 4 0.3613 27.4836 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 55 8 0.0843 25.7598 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 56 0 0.1597 26.7880 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 57 A -0.0146 32.2460 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 58 E 0.2816 21.0793 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 59 B 0.0665 25.0765 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 60 v 10.0933 26.4348 30.4195 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 61 k 0.0400 26.1253 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 62 J 0.1887 19.6627 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 63 U 0.3429 23.0431 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 64 j -0.0318 15.7239 52.3707 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 65 ( 0.0094 15.2098 49.6141 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 66 7 0.3475 23.7080 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 67 § -0.0810 23.8543 52.5776 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 68 $ -2.6187 22.6445 47.0152 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 69 € -0.0885 30.5474 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 70 / 0.2389 24.4014 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 71 C 0.0878 26.7112 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 72 * 0.1285 20.1184 22.4376 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 73 ” 0.0805 17.6989 13.2460 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 74 ? -0.3515 20.5652 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 75 { -0.1829 15.8848 50.4376 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 76 } 0.3818 15.8848 50.4376 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 77 , 33.9871 7.2279 13.2460 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 78 I 0.1985 17.9971 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 79 ° 0.2559 15.7261 15.7261 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 80 K -0.1707 28.2377 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 81 H 0.2887 23.0431 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 82 q 10.4653 24.9156 42.2069 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 83 & 0.0188 32.6598 40.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 84 ’ 0.0720 7.2279 13.2460 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 85 [ 0.1905 11.2250 47.8696 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 86 - 22.6620 16.9359 4.1457 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 87 Y 0.2069 29.8264 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 88 Q -0.0415 28.6167 47.7692 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 89 " -0.2146 14.9239 15.2098 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 90 ! 0.3675 7.2279 40.7902 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 91 x 10.4544 26.2739 30.4195 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 92 ) 0.0983 15.2098 49.6141 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 93 = 12.7871 27.1098 15.2098 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 94 + 6.8589 26.9971 26.9971 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 95 X -0.0293 31.0946 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 96 » 10.2408 25.2250 29.2098 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 97 ' 0.2445 4.4529 15.2098 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 98 ¢ 4.8909 23.6474 41.2224 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 99 Z -0.1508 24.3684 40.5833 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 100 > 5.5980 21.2279 29.2098 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 101 ® -0.1611 35.0793 34.5652 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 102 © -0.0690 35.0793 34.5652 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 103 ] 0.4350 11.2250 47.8696 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 104 é -1.6366 25.2250 42.0460 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 105 z 10.1353 23.1917 30.4195 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 106 _ 49.6176 35.0793 3.8362 -Andale_Mono.ttf 84 ’ 7.2279 13.2460 107 ¥ 0.0029 29.8264 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 1 t 2.2427 22.6445 38.7569 -Andale_Mono.ttf 85 [ 11.2250 47.8696 2 h -0.0636 23.0431 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 3 a 10.1672 24.2529 30.8333 -Andale_Mono.ttf 85 [ 11.2250 47.8696 4 n 9.7122 23.0431 30.6264 -Andale_Mono.ttf 85 [ 11.2250 47.8696 5 P 0.0828 22.8055 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 6 o 9.9113 26.7880 30.8333 -Andale_Mono.ttf 85 [ 11.2250 47.8696 7 e 10.0349 25.2250 30.8333 -Andale_Mono.ttf 85 [ 11.2250 47.8696 8 : 9.8572 7.2279 30.8333 -Andale_Mono.ttf 85 [ 11.2250 47.8696 9 r 9.7958 20.4043 30.6264 -Andale_Mono.ttf 85 [ 11.2250 47.8696 10 l 0.1965 20.4167 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 11 i -0.2958 13.3043 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 12 1 -0.0475 21.0793 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 13 | -0.0036 4.1457 51.1917 -Andale_Mono.ttf 85 [ 11.2250 47.8696 14 N 0.0895 24.3684 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 15 f -0.1669 22.7449 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 16 g 10.0665 26.2862 42.2069 -Andale_Mono.ttf 85 [ 11.2250 47.8696 17 d -0.0483 24.9156 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 18 W -0.2517 32.6598 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 19 s 9.9779 22.4960 30.8333 -Andale_Mono.ttf 85 [ 11.2250 47.8696 20 c 9.7680 24.2529 30.8333 -Andale_Mono.ttf 85 [ 11.2250 47.8696 21 u 10.2194 23.0431 30.6264 -Andale_Mono.ttf 85 [ 11.2250 47.8696 22 3 -0.2054 22.4376 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 23 ~ 21.1435 31.2431 8.4376 -Andale_Mono.ttf 85 [ 11.2250 47.8696 24 # -0.0684 29.7261 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 25 O -0.2923 27.4069 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 26 ` -1.3004 12.2739 8.6445 -Andale_Mono.ttf 85 [ 11.2250 47.8696 27 @ -0.2222 29.8848 45.6293 -Andale_Mono.ttf 85 [ 11.2250 47.8696 28 F -0.0871 21.8334 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 29 S -0.1724 22.6445 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 30 p 10.1868 24.9156 42.2069 -Andale_Mono.ttf 85 [ 11.2250 47.8696 31 “ -0.1647 17.6989 13.2460 -Andale_Mono.ttf 85 [ 11.2250 47.8696 32 % -0.4240 32.6598 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 33 £ -0.1698 26.7902 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 34 . 33.6340 7.2279 7.2279 -Andale_Mono.ttf 85 [ 11.2250 47.8696 35 2 -0.2611 21.9695 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 36 5 0.0784 22.1304 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 37 m 9.8429 27.6138 30.6264 -Andale_Mono.ttf 85 [ 11.2250 47.8696 38 V -0.1812 32.2460 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 39 6 -0.3478 25.4319 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 40 w 10.1638 29.5170 30.4195 -Andale_Mono.ttf 85 [ 11.2250 47.8696 41 T -0.0076 29.4710 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 42 M -0.0810 25.2250 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 43 G 0.0389 26.5833 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 44 b 0.0550 24.9156 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 45 9 -0.3067 25.2250 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 46 ; 10.0146 7.2279 36.8514 -Andale_Mono.ttf 85 [ 11.2250 47.8696 47 D -0.1017 25.2250 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 48 L 0.2098 21.8334 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 49 y 10.2561 26.6417 42.0000 -Andale_Mono.ttf 85 [ 11.2250 47.8696 50 ‘ -0.3818 7.2279 13.2460 -Andale_Mono.ttf 85 [ 11.2250 47.8696 51 \ -0.3299 24.4014 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 52 R -0.2510 27.3351 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 53 < 5.5101 21.2279 29.2098 -Andale_Mono.ttf 85 [ 11.2250 47.8696 54 4 -0.1092 27.4836 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 55 8 -0.2494 25.7598 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 56 0 -0.2079 26.7880 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 57 A -0.0784 32.2460 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 58 E -0.1525 21.0793 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 59 B -0.0707 25.0765 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 60 v 10.4680 26.4348 30.4195 -Andale_Mono.ttf 85 [ 11.2250 47.8696 61 k -0.1199 26.1253 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 62 J -0.1033 19.6627 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 63 U 0.0339 23.0431 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 64 j -0.0776 15.7239 52.3707 -Andale_Mono.ttf 85 [ 11.2250 47.8696 65 ( -0.3086 15.2098 49.6141 -Andale_Mono.ttf 85 [ 11.2250 47.8696 66 7 -0.0233 23.7080 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 67 § -0.1052 23.8543 52.5776 -Andale_Mono.ttf 85 [ 11.2250 47.8696 68 $ -3.2405 22.6445 47.0152 -Andale_Mono.ttf 85 [ 11.2250 47.8696 69 € -0.1285 30.5474 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 70 / -0.3747 24.4014 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 71 C -0.0364 26.7112 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 72 * 0.2341 20.1184 22.4376 -Andale_Mono.ttf 85 [ 11.2250 47.8696 73 ” -0.2466 17.6989 13.2460 -Andale_Mono.ttf 85 [ 11.2250 47.8696 74 ? -0.5544 20.5652 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 75 { 0.2433 15.8848 50.4376 -Andale_Mono.ttf 85 [ 11.2250 47.8696 76 } -0.2734 15.8848 50.4376 -Andale_Mono.ttf 85 [ 11.2250 47.8696 77 , 33.6259 7.2279 13.2460 -Andale_Mono.ttf 85 [ 11.2250 47.8696 78 I 0.0653 17.9971 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 79 ° -0.2642 15.7261 15.7261 -Andale_Mono.ttf 85 [ 11.2250 47.8696 80 K 0.0546 28.2377 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 81 H -0.0701 23.0431 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 82 q 9.7914 24.9156 42.2069 -Andale_Mono.ttf 85 [ 11.2250 47.8696 83 & -0.2276 32.6598 40.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 84 ’ -0.1153 7.2279 13.2460 -Andale_Mono.ttf 85 [ 11.2250 47.8696 85 [ 0.0653 11.2250 47.8696 -Andale_Mono.ttf 85 [ 11.2250 47.8696 86 - 22.6364 16.9359 4.1457 -Andale_Mono.ttf 85 [ 11.2250 47.8696 87 Y 0.1615 29.8264 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 88 Q -0.1989 28.6167 47.7692 -Andale_Mono.ttf 85 [ 11.2250 47.8696 89 " -0.2353 14.9239 15.2098 -Andale_Mono.ttf 85 [ 11.2250 47.8696 90 ! 0.0828 7.2279 40.7902 -Andale_Mono.ttf 85 [ 11.2250 47.8696 91 x 10.1870 26.2739 30.4195 -Andale_Mono.ttf 85 [ 11.2250 47.8696 92 ) -0.1698 15.2098 49.6141 -Andale_Mono.ttf 85 [ 11.2250 47.8696 93 = 12.6249 27.1098 15.2098 -Andale_Mono.ttf 85 [ 11.2250 47.8696 94 + 6.8539 26.9971 26.9971 -Andale_Mono.ttf 85 [ 11.2250 47.8696 95 X 0.0297 31.0946 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 96 » 9.8797 25.2250 29.2098 -Andale_Mono.ttf 85 [ 11.2250 47.8696 97 ' -0.4440 4.4529 15.2098 -Andale_Mono.ttf 85 [ 11.2250 47.8696 98 ¢ 4.7342 23.6474 41.2224 -Andale_Mono.ttf 85 [ 11.2250 47.8696 99 Z -0.1240 24.3684 40.5833 -Andale_Mono.ttf 85 [ 11.2250 47.8696 100 > 5.3238 21.2279 29.2098 -Andale_Mono.ttf 85 [ 11.2250 47.8696 101 ® -0.4073 35.0793 34.5652 -Andale_Mono.ttf 85 [ 11.2250 47.8696 102 © -0.0897 35.0793 34.5652 -Andale_Mono.ttf 85 [ 11.2250 47.8696 103 ] -0.0715 11.2250 47.8696 -Andale_Mono.ttf 85 [ 11.2250 47.8696 104 é -1.4307 25.2250 42.0460 -Andale_Mono.ttf 85 [ 11.2250 47.8696 105 z 10.0764 23.1917 30.4195 -Andale_Mono.ttf 85 [ 11.2250 47.8696 106 _ 49.6511 35.0793 3.8362 -Andale_Mono.ttf 85 [ 11.2250 47.8696 107 ¥ 0.0027 29.8264 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 1 t -20.3833 22.6445 38.7569 -Andale_Mono.ttf 86 - 16.9359 4.1457 2 h -22.7257 23.0431 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 3 a -12.3954 24.2529 30.8333 -Andale_Mono.ttf 86 - 16.9359 4.1457 4 n -12.3472 23.0431 30.6264 -Andale_Mono.ttf 86 - 16.9359 4.1457 5 P -22.5930 22.8055 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 6 o -12.7595 26.7880 30.8333 -Andale_Mono.ttf 86 - 16.9359 4.1457 7 e -12.5206 25.2250 30.8333 -Andale_Mono.ttf 86 - 16.9359 4.1457 8 : -12.5417 7.2279 30.8333 -Andale_Mono.ttf 86 - 16.9359 4.1457 9 r -12.3546 20.4043 30.6264 -Andale_Mono.ttf 86 - 16.9359 4.1457 10 l -22.7164 20.4167 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 11 i -22.6451 13.3043 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 12 1 -22.5591 21.0793 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 13 | -22.4744 4.1457 51.1917 -Andale_Mono.ttf 86 - 16.9359 4.1457 14 N -22.4534 24.3684 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 15 f -22.6349 22.7449 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 16 g -12.5662 26.2862 42.2069 -Andale_Mono.ttf 86 - 16.9359 4.1457 17 d -22.3754 24.9156 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 18 W -22.3455 32.6598 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 19 s -12.5210 22.4960 30.8333 -Andale_Mono.ttf 86 - 16.9359 4.1457 20 c -12.5842 24.2529 30.8333 -Andale_Mono.ttf 86 - 16.9359 4.1457 21 u -12.2681 23.0431 30.6264 -Andale_Mono.ttf 86 - 16.9359 4.1457 22 3 -22.6494 22.4376 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 23 ~ -1.3534 31.2431 8.4376 -Andale_Mono.ttf 86 - 16.9359 4.1457 24 # -22.6386 29.7261 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 25 O -22.7313 27.4069 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 26 ` -23.4746 12.2739 8.6445 -Andale_Mono.ttf 86 - 16.9359 4.1457 27 @ -22.6911 29.8848 45.6293 -Andale_Mono.ttf 86 - 16.9359 4.1457 28 F -22.3603 21.8334 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 29 S -22.4206 22.6445 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 30 p -12.4103 24.9156 42.2069 -Andale_Mono.ttf 86 - 16.9359 4.1457 31 “ -22.7292 17.6989 13.2460 -Andale_Mono.ttf 86 - 16.9359 4.1457 32 % -22.4432 32.6598 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 33 £ -22.7733 26.7902 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 34 . 11.0419 7.2279 7.2279 -Andale_Mono.ttf 86 - 16.9359 4.1457 35 2 -22.5009 21.9695 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 36 5 -22.7074 22.1304 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 37 m -12.4341 27.6138 30.6264 -Andale_Mono.ttf 86 - 16.9359 4.1457 38 V -22.4846 32.2460 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 39 6 -22.5390 25.4319 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 40 w -12.4599 29.5170 30.4195 -Andale_Mono.ttf 86 - 16.9359 4.1457 41 T -22.5934 29.4710 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 42 M -22.3438 25.2250 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 43 G -22.8710 26.5833 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 44 b -22.1214 24.9156 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 45 9 -22.7651 25.2250 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 46 ; -12.3679 7.2279 36.8514 -Andale_Mono.ttf 86 - 16.9359 4.1457 47 D -22.3781 25.2250 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 48 L -22.4219 21.8334 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 49 y -12.1954 26.6417 42.0000 -Andale_Mono.ttf 86 - 16.9359 4.1457 50 ‘ -22.7681 7.2279 13.2460 -Andale_Mono.ttf 86 - 16.9359 4.1457 51 \ -22.6710 24.4014 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 52 R -22.4018 27.3351 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 53 < -17.1842 21.2279 29.2098 -Andale_Mono.ttf 86 - 16.9359 4.1457 54 4 -22.1786 27.4836 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 55 8 -22.7668 25.7598 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 56 0 -22.6656 26.7880 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 57 A -22.5066 32.2460 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 58 E -21.9190 21.0793 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 59 B -22.5438 25.0765 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 60 v -11.9936 26.4348 30.4195 -Andale_Mono.ttf 86 - 16.9359 4.1457 61 k -22.4376 26.1253 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 62 J -22.5857 19.6627 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 63 U -22.3857 23.0431 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 64 j -22.7273 15.7239 52.3707 -Andale_Mono.ttf 86 - 16.9359 4.1457 65 ( -22.9848 15.2098 49.6141 -Andale_Mono.ttf 86 - 16.9359 4.1457 66 7 -22.4721 23.7080 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 67 § -22.7350 23.8543 52.5776 -Andale_Mono.ttf 86 - 16.9359 4.1457 68 $ -25.5994 22.6445 47.0152 -Andale_Mono.ttf 86 - 16.9359 4.1457 69 € -22.4798 30.5474 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 70 / -22.8122 24.4014 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 71 C -22.9953 26.7112 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 72 * -22.2015 20.1184 22.4376 -Andale_Mono.ttf 86 - 16.9359 4.1457 73 ” -22.6928 17.6989 13.2460 -Andale_Mono.ttf 86 - 16.9359 4.1457 74 ? -22.6654 20.5652 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 75 { -22.4126 15.8848 50.4376 -Andale_Mono.ttf 86 - 16.9359 4.1457 76 } -22.2185 15.8848 50.4376 -Andale_Mono.ttf 86 - 16.9359 4.1457 77 , 11.1153 7.2279 13.2460 -Andale_Mono.ttf 86 - 16.9359 4.1457 78 I -22.4654 17.9971 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 79 ° -23.0074 15.7261 15.7261 -Andale_Mono.ttf 86 - 16.9359 4.1457 80 K -22.6013 28.2377 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 81 H -22.1513 23.0431 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 82 q -12.5179 24.9156 42.2069 -Andale_Mono.ttf 86 - 16.9359 4.1457 83 & -22.6681 32.6598 40.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 84 ’ -22.5239 7.2279 13.2460 -Andale_Mono.ttf 86 - 16.9359 4.1457 85 [ -22.5151 11.2250 47.8696 -Andale_Mono.ttf 86 - 16.9359 4.1457 86 - -0.0164 16.9359 4.1457 -Andale_Mono.ttf 86 - 16.9359 4.1457 87 Y -22.4963 29.8264 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 88 Q -22.7175 28.6167 47.7692 -Andale_Mono.ttf 86 - 16.9359 4.1457 89 " -22.4007 14.9239 15.2098 -Andale_Mono.ttf 86 - 16.9359 4.1457 90 ! -22.2927 7.2279 40.7902 -Andale_Mono.ttf 86 - 16.9359 4.1457 91 x -12.2072 26.2739 30.4195 -Andale_Mono.ttf 86 - 16.9359 4.1457 92 ) -22.6817 15.2098 49.6141 -Andale_Mono.ttf 86 - 16.9359 4.1457 93 = -9.4069 27.1098 15.2098 -Andale_Mono.ttf 86 - 16.9359 4.1457 94 + -15.8751 26.9971 26.9971 -Andale_Mono.ttf 86 - 16.9359 4.1457 95 X -22.5231 31.0946 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 96 » -12.3689 25.2250 29.2098 -Andale_Mono.ttf 86 - 16.9359 4.1457 97 ' -22.4934 4.4529 15.2098 -Andale_Mono.ttf 86 - 16.9359 4.1457 98 ¢ -17.7161 23.6474 41.2224 -Andale_Mono.ttf 86 - 16.9359 4.1457 99 Z -22.4244 24.3684 40.5833 -Andale_Mono.ttf 86 - 16.9359 4.1457 100 > -16.9363 21.2279 29.2098 -Andale_Mono.ttf 86 - 16.9359 4.1457 101 ® -22.8486 35.0793 34.5652 -Andale_Mono.ttf 86 - 16.9359 4.1457 102 © -22.9838 35.0793 34.5652 -Andale_Mono.ttf 86 - 16.9359 4.1457 103 ] -22.5241 11.2250 47.8696 -Andale_Mono.ttf 86 - 16.9359 4.1457 104 é -23.7995 25.2250 42.0460 -Andale_Mono.ttf 86 - 16.9359 4.1457 105 z -12.1522 23.1917 30.4195 -Andale_Mono.ttf 86 - 16.9359 4.1457 106 _ 27.0853 35.0793 3.8362 -Andale_Mono.ttf 86 - 16.9359 4.1457 107 ¥ -22.3719 29.8264 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 1 t 2.1760 22.6445 38.7569 -Andale_Mono.ttf 87 Y 29.8264 40.5833 2 h 0.1223 23.0431 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 3 a 9.8245 24.2529 30.8333 -Andale_Mono.ttf 87 Y 29.8264 40.5833 4 n 9.9335 23.0431 30.6264 -Andale_Mono.ttf 87 Y 29.8264 40.5833 5 P 0.0828 22.8055 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 6 o 10.0441 26.7880 30.8333 -Andale_Mono.ttf 87 Y 29.8264 40.5833 7 e 10.1508 25.2250 30.8333 -Andale_Mono.ttf 87 Y 29.8264 40.5833 8 : 9.9542 7.2279 30.8333 -Andale_Mono.ttf 87 Y 29.8264 40.5833 9 r 10.1959 20.4043 30.6264 -Andale_Mono.ttf 87 Y 29.8264 40.5833 10 l -0.0224 20.4167 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 11 i 0.0011 13.3043 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 12 1 -0.2445 21.0793 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 13 | -0.2408 4.1457 51.1917 -Andale_Mono.ttf 87 Y 29.8264 40.5833 14 N -0.0595 24.3684 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 15 f 0.4067 22.7449 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 16 g 10.1153 26.2862 42.2069 -Andale_Mono.ttf 87 Y 29.8264 40.5833 17 d -0.0546 24.9156 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 18 W 0.0594 32.6598 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 19 s 10.2079 22.4960 30.8333 -Andale_Mono.ttf 87 Y 29.8264 40.5833 20 c 10.2387 24.2529 30.8333 -Andale_Mono.ttf 87 Y 29.8264 40.5833 21 u 10.0291 23.0431 30.6264 -Andale_Mono.ttf 87 Y 29.8264 40.5833 22 3 0.0899 22.4376 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 23 ~ 21.0969 31.2431 8.4376 -Andale_Mono.ttf 87 Y 29.8264 40.5833 24 # 0.1749 29.7261 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 25 O -0.2546 27.4069 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 26 ` -1.1810 12.2739 8.6445 -Andale_Mono.ttf 87 Y 29.8264 40.5833 27 @ -0.3639 29.8848 45.6293 -Andale_Mono.ttf 87 Y 29.8264 40.5833 28 F -0.0475 21.8334 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 29 S -0.3801 22.6445 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 30 p 9.7981 24.9156 42.2069 -Andale_Mono.ttf 87 Y 29.8264 40.5833 31 “ -0.5157 17.6989 13.2460 -Andale_Mono.ttf 87 Y 29.8264 40.5833 32 % -0.2816 32.6598 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 33 £ -0.3770 26.7902 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 34 . 33.7097 7.2279 7.2279 -Andale_Mono.ttf 87 Y 29.8264 40.5833 35 2 -0.2583 21.9695 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 36 5 -0.1983 22.1304 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 37 m 9.5968 27.6138 30.6264 -Andale_Mono.ttf 87 Y 29.8264 40.5833 38 V 0.1261 32.2460 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 39 6 -0.3144 25.4319 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 40 w 9.9243 29.5170 30.4195 -Andale_Mono.ttf 87 Y 29.8264 40.5833 41 T 0.2040 29.4710 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 42 M 0.0117 25.2250 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 43 G -0.1178 26.5833 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 44 b 0.1664 24.9156 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 45 9 -0.1115 25.2250 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 46 ; 10.1804 7.2279 36.8514 -Andale_Mono.ttf 87 Y 29.8264 40.5833 47 D -0.0117 25.2250 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 48 L 0.0636 21.8334 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 49 y 10.2201 26.6417 42.0000 -Andale_Mono.ttf 87 Y 29.8264 40.5833 50 ‘ 0.0333 7.2279 13.2460 -Andale_Mono.ttf 87 Y 29.8264 40.5833 51 \ -0.1993 24.4014 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 52 R -0.0000 27.3351 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 53 < 5.5134 21.2279 29.2098 -Andale_Mono.ttf 87 Y 29.8264 40.5833 54 4 0.1659 27.4836 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 55 8 -0.0571 25.7598 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 56 0 -0.3190 26.7880 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 57 A -0.0889 32.2460 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 58 E -0.1695 21.0793 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 59 B -0.1293 25.0765 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 60 v 10.1404 26.4348 30.4195 -Andale_Mono.ttf 87 Y 29.8264 40.5833 61 k -0.0954 26.1253 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 62 J 0.1118 19.6627 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 63 U 0.0138 23.0431 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 64 j -0.2981 15.7239 52.3707 -Andale_Mono.ttf 87 Y 29.8264 40.5833 65 ( -0.3197 15.2098 49.6141 -Andale_Mono.ttf 87 Y 29.8264 40.5833 66 7 -0.0063 23.7080 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 67 § -0.3600 23.8543 52.5776 -Andale_Mono.ttf 87 Y 29.8264 40.5833 68 $ -3.0275 22.6445 47.0152 -Andale_Mono.ttf 87 Y 29.8264 40.5833 69 € -0.2065 30.5474 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 70 / -0.2833 24.4014 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 71 C -0.0785 26.7112 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 72 * -0.1663 20.1184 22.4376 -Andale_Mono.ttf 87 Y 29.8264 40.5833 73 ” -0.3241 17.6989 13.2460 -Andale_Mono.ttf 87 Y 29.8264 40.5833 74 ? 0.0835 20.5652 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 75 { -0.1393 15.8848 50.4376 -Andale_Mono.ttf 87 Y 29.8264 40.5833 76 } -0.0243 15.8848 50.4376 -Andale_Mono.ttf 87 Y 29.8264 40.5833 77 , 33.6384 7.2279 13.2460 -Andale_Mono.ttf 87 Y 29.8264 40.5833 78 I 0.1502 17.9971 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 79 ° -0.3996 15.7261 15.7261 -Andale_Mono.ttf 87 Y 29.8264 40.5833 80 K 0.0270 28.2377 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 81 H -0.1347 23.0431 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 82 q 9.8107 24.9156 42.2069 -Andale_Mono.ttf 87 Y 29.8264 40.5833 83 & -0.1420 32.6598 40.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 84 ’ -0.1535 7.2279 13.2460 -Andale_Mono.ttf 87 Y 29.8264 40.5833 85 [ -0.3086 11.2250 47.8696 -Andale_Mono.ttf 87 Y 29.8264 40.5833 86 - 22.3321 16.9359 4.1457 -Andale_Mono.ttf 87 Y 29.8264 40.5833 87 Y -0.0281 29.8264 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 88 Q -0.5703 28.6167 47.7692 -Andale_Mono.ttf 87 Y 29.8264 40.5833 89 " -0.3810 14.9239 15.2098 -Andale_Mono.ttf 87 Y 29.8264 40.5833 90 ! -0.0806 7.2279 40.7902 -Andale_Mono.ttf 87 Y 29.8264 40.5833 91 x 10.3812 26.2739 30.4195 -Andale_Mono.ttf 87 Y 29.8264 40.5833 92 ) -0.3711 15.2098 49.6141 -Andale_Mono.ttf 87 Y 29.8264 40.5833 93 = 12.5521 27.1098 15.2098 -Andale_Mono.ttf 87 Y 29.8264 40.5833 94 + 6.6919 26.9971 26.9971 -Andale_Mono.ttf 87 Y 29.8264 40.5833 95 X -0.0885 31.0946 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 96 » 9.8530 25.2250 29.2098 -Andale_Mono.ttf 87 Y 29.8264 40.5833 97 ' 0.1990 4.4529 15.2098 -Andale_Mono.ttf 87 Y 29.8264 40.5833 98 ¢ 4.8528 23.6474 41.2224 -Andale_Mono.ttf 87 Y 29.8264 40.5833 99 Z 0.2636 24.3684 40.5833 -Andale_Mono.ttf 87 Y 29.8264 40.5833 100 > 5.2853 21.2279 29.2098 -Andale_Mono.ttf 87 Y 29.8264 40.5833 101 ® -0.3098 35.0793 34.5652 -Andale_Mono.ttf 87 Y 29.8264 40.5833 102 © -0.1592 35.0793 34.5652 -Andale_Mono.ttf 87 Y 29.8264 40.5833 103 ] -0.2510 11.2250 47.8696 -Andale_Mono.ttf 87 Y 29.8264 40.5833 104 é -0.9897 25.2250 42.0460 -Andale_Mono.ttf 87 Y 29.8264 40.5833 105 z 10.1921 23.1917 30.4195 -Andale_Mono.ttf 87 Y 29.8264 40.5833 106 _ 49.6282 35.0793 3.8362 -Andale_Mono.ttf 87 Y 29.8264 40.5833 107 ¥ -0.1672 29.8264 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 1 t 2.2134 22.6445 38.7569 -Andale_Mono.ttf 88 Q 28.6167 47.7692 2 h 0.1747 23.0431 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 3 a 10.2528 24.2529 30.8333 -Andale_Mono.ttf 88 Q 28.6167 47.7692 4 n 10.4205 23.0431 30.6264 -Andale_Mono.ttf 88 Q 28.6167 47.7692 5 P -0.0740 22.8055 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 6 o 10.1600 26.7880 30.8333 -Andale_Mono.ttf 88 Q 28.6167 47.7692 7 e 10.1776 25.2250 30.8333 -Andale_Mono.ttf 88 Q 28.6167 47.7692 8 : 10.3425 7.2279 30.8333 -Andale_Mono.ttf 88 Q 28.6167 47.7692 9 r 10.2077 20.4043 30.6264 -Andale_Mono.ttf 88 Q 28.6167 47.7692 10 l 0.0149 20.4167 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 11 i -0.3238 13.3043 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 12 1 0.0366 21.0793 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 13 | 0.2123 4.1457 51.1917 -Andale_Mono.ttf 88 Q 28.6167 47.7692 14 N -0.0929 24.3684 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 15 f 0.1040 22.7449 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 16 g 10.0488 26.2862 42.2069 -Andale_Mono.ttf 88 Q 28.6167 47.7692 17 d -0.0467 24.9156 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 18 W 0.1312 32.6598 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 19 s 10.2442 22.4960 30.8333 -Andale_Mono.ttf 88 Q 28.6167 47.7692 20 c 10.0027 24.2529 30.8333 -Andale_Mono.ttf 88 Q 28.6167 47.7692 21 u 10.1167 23.0431 30.6264 -Andale_Mono.ttf 88 Q 28.6167 47.7692 22 3 0.0764 22.4376 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 23 ~ 21.3297 31.2431 8.4376 -Andale_Mono.ttf 88 Q 28.6167 47.7692 24 # 0.2076 29.7261 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 25 O -0.1710 27.4069 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 26 ` -1.2046 12.2739 8.6445 -Andale_Mono.ttf 88 Q 28.6167 47.7692 27 @ 0.1203 29.8848 45.6293 -Andale_Mono.ttf 88 Q 28.6167 47.7692 28 F -0.0052 21.8334 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 29 S -0.1047 22.6445 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 30 p 10.2998 24.9156 42.2069 -Andale_Mono.ttf 88 Q 28.6167 47.7692 31 “ 0.1994 17.6989 13.2460 -Andale_Mono.ttf 88 Q 28.6167 47.7692 32 % -0.1942 32.6598 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 33 £ 0.2014 26.7902 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 34 . 33.5773 7.2279 7.2279 -Andale_Mono.ttf 88 Q 28.6167 47.7692 35 2 -0.1546 21.9695 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 36 5 0.2032 22.1304 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 37 m 10.1124 27.6138 30.6264 -Andale_Mono.ttf 88 Q 28.6167 47.7692 38 V -0.0106 32.2460 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 39 6 -0.2649 25.4319 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 40 w 10.2986 29.5170 30.4195 -Andale_Mono.ttf 88 Q 28.6167 47.7692 41 T 0.1045 29.4710 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 42 M 0.1523 25.2250 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 43 G 0.0724 26.5833 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 44 b 0.1074 24.9156 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 45 9 -0.0808 25.2250 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 46 ; 10.3037 7.2279 36.8514 -Andale_Mono.ttf 88 Q 28.6167 47.7692 47 D 0.2169 25.2250 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 48 L 0.1731 21.8334 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 49 y 10.1868 26.6417 42.0000 -Andale_Mono.ttf 88 Q 28.6167 47.7692 50 ‘ 0.0115 7.2279 13.2460 -Andale_Mono.ttf 88 Q 28.6167 47.7692 51 \ -0.0300 24.4014 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 52 R 0.2866 27.3351 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 53 < 5.8562 21.2279 29.2098 -Andale_Mono.ttf 88 Q 28.6167 47.7692 54 4 0.2061 27.4836 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 55 8 0.4603 25.7598 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 56 0 -0.0249 26.7880 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 57 A 0.0607 32.2460 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 58 E 0.3277 21.0793 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 59 B 0.1730 25.0765 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 60 v 10.3488 26.4348 30.4195 -Andale_Mono.ttf 88 Q 28.6167 47.7692 61 k -0.0759 26.1253 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 62 J 0.1931 19.6627 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 63 U 0.3548 23.0431 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 64 j 0.0068 15.7239 52.3707 -Andale_Mono.ttf 88 Q 28.6167 47.7692 65 ( -0.2685 15.2098 49.6141 -Andale_Mono.ttf 88 Q 28.6167 47.7692 66 7 0.1381 23.7080 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 67 § -0.2485 23.8543 52.5776 -Andale_Mono.ttf 88 Q 28.6167 47.7692 68 $ -2.7241 22.6445 47.0152 -Andale_Mono.ttf 88 Q 28.6167 47.7692 69 € 0.0571 30.5474 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 70 / 0.0086 24.4014 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 71 C 0.0483 26.7112 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 72 * 0.2641 20.1184 22.4376 -Andale_Mono.ttf 88 Q 28.6167 47.7692 73 ” 0.2385 17.6989 13.2460 -Andale_Mono.ttf 88 Q 28.6167 47.7692 74 ? -0.0420 20.5652 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 75 { 0.1630 15.8848 50.4376 -Andale_Mono.ttf 88 Q 28.6167 47.7692 76 } 0.2657 15.8848 50.4376 -Andale_Mono.ttf 88 Q 28.6167 47.7692 77 , 33.9509 7.2279 13.2460 -Andale_Mono.ttf 88 Q 28.6167 47.7692 78 I 0.2226 17.9971 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 79 ° 0.1632 15.7261 15.7261 -Andale_Mono.ttf 88 Q 28.6167 47.7692 80 K -0.1878 28.2377 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 81 H -0.0607 23.0431 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 82 q 10.0763 24.9156 42.2069 -Andale_Mono.ttf 88 Q 28.6167 47.7692 83 & -0.2862 32.6598 40.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 84 ’ -0.0360 7.2279 13.2460 -Andale_Mono.ttf 88 Q 28.6167 47.7692 85 [ 0.2207 11.2250 47.8696 -Andale_Mono.ttf 88 Q 28.6167 47.7692 86 - 22.6817 16.9359 4.1457 -Andale_Mono.ttf 88 Q 28.6167 47.7692 87 Y 0.1594 29.8264 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 88 Q 0.2559 28.6167 47.7692 -Andale_Mono.ttf 88 Q 28.6167 47.7692 89 " 0.1197 14.9239 15.2098 -Andale_Mono.ttf 88 Q 28.6167 47.7692 90 ! 0.1379 7.2279 40.7902 -Andale_Mono.ttf 88 Q 28.6167 47.7692 91 x 10.2301 26.2739 30.4195 -Andale_Mono.ttf 88 Q 28.6167 47.7692 92 ) 0.0439 15.2098 49.6141 -Andale_Mono.ttf 88 Q 28.6167 47.7692 93 = 12.7187 27.1098 15.2098 -Andale_Mono.ttf 88 Q 28.6167 47.7692 94 + 6.8845 26.9971 26.9971 -Andale_Mono.ttf 88 Q 28.6167 47.7692 95 X 0.3262 31.0946 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 96 » 10.2187 25.2250 29.2098 -Andale_Mono.ttf 88 Q 28.6167 47.7692 97 ' 0.3845 4.4529 15.2098 -Andale_Mono.ttf 88 Q 28.6167 47.7692 98 ¢ 5.4599 23.6474 41.2224 -Andale_Mono.ttf 88 Q 28.6167 47.7692 99 Z 0.2830 24.3684 40.5833 -Andale_Mono.ttf 88 Q 28.6167 47.7692 100 > 5.7687 21.2279 29.2098 -Andale_Mono.ttf 88 Q 28.6167 47.7692 101 ® -0.3338 35.0793 34.5652 -Andale_Mono.ttf 88 Q 28.6167 47.7692 102 © 0.2577 35.0793 34.5652 -Andale_Mono.ttf 88 Q 28.6167 47.7692 103 ] 0.1138 11.2250 47.8696 -Andale_Mono.ttf 88 Q 28.6167 47.7692 104 é -0.9397 25.2250 42.0460 -Andale_Mono.ttf 88 Q 28.6167 47.7692 105 z 10.4222 23.1917 30.4195 -Andale_Mono.ttf 88 Q 28.6167 47.7692 106 _ 50.0900 35.0793 3.8362 -Andale_Mono.ttf 88 Q 28.6167 47.7692 107 ¥ 0.1630 29.8264 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 1 t 2.2310 22.6445 38.7569 -Andale_Mono.ttf 89 " 14.9239 15.2098 2 h -0.1638 23.0431 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 3 a 10.2121 24.2529 30.8333 -Andale_Mono.ttf 89 " 14.9239 15.2098 4 n 9.7954 23.0431 30.6264 -Andale_Mono.ttf 89 " 14.9239 15.2098 5 P -0.0389 22.8055 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 6 o 9.9595 26.7880 30.8333 -Andale_Mono.ttf 89 " 14.9239 15.2098 7 e 9.8308 25.2250 30.8333 -Andale_Mono.ttf 89 " 14.9239 15.2098 8 : 9.8427 7.2279 30.8333 -Andale_Mono.ttf 89 " 14.9239 15.2098 9 r 10.1069 20.4043 30.6264 -Andale_Mono.ttf 89 " 14.9239 15.2098 10 l 0.1500 20.4167 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 11 i -0.1887 13.3043 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 12 1 -0.1899 21.0793 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 13 | 0.0408 4.1457 51.1917 -Andale_Mono.ttf 89 " 14.9239 15.2098 14 N -0.0000 24.3684 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 15 f 0.2320 22.7449 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 16 g 9.8387 26.2862 42.2069 -Andale_Mono.ttf 89 " 14.9239 15.2098 17 d -0.1820 24.9156 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 18 W 0.0381 32.6598 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 19 s 9.7278 22.4960 30.8333 -Andale_Mono.ttf 89 " 14.9239 15.2098 20 c 9.7121 24.2529 30.8333 -Andale_Mono.ttf 89 " 14.9239 15.2098 21 u 10.2492 23.0431 30.6264 -Andale_Mono.ttf 89 " 14.9239 15.2098 22 3 -0.3569 22.4376 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 23 ~ 21.1043 31.2431 8.4376 -Andale_Mono.ttf 89 " 14.9239 15.2098 24 # -0.0287 29.7261 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 25 O -0.3044 27.4069 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 26 ` -1.2784 12.2739 8.6445 -Andale_Mono.ttf 89 " 14.9239 15.2098 27 @ -0.1370 29.8848 45.6293 -Andale_Mono.ttf 89 " 14.9239 15.2098 28 F 0.1543 21.8334 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 29 S 0.2016 22.6445 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 30 p 10.3661 24.9156 42.2069 -Andale_Mono.ttf 89 " 14.9239 15.2098 31 “ -0.0994 17.6989 13.2460 -Andale_Mono.ttf 89 " 14.9239 15.2098 32 % -0.2728 32.6598 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 33 £ -0.4417 26.7902 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 34 . 33.3842 7.2279 7.2279 -Andale_Mono.ttf 89 " 14.9239 15.2098 35 2 -0.2069 21.9695 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 36 5 -0.1785 22.1304 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 37 m 9.8822 27.6138 30.6264 -Andale_Mono.ttf 89 " 14.9239 15.2098 38 V -0.0063 32.2460 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 39 6 -0.5285 25.4319 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 40 w 10.2379 29.5170 30.4195 -Andale_Mono.ttf 89 " 14.9239 15.2098 41 T 0.0766 29.4710 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 42 M 0.0107 25.2250 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 43 G -0.6956 26.5833 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 44 b -0.0506 24.9156 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 45 9 -0.3922 25.2250 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 46 ; 9.9511 7.2279 36.8514 -Andale_Mono.ttf 89 " 14.9239 15.2098 47 D 0.2094 25.2250 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 48 L -0.1118 21.8334 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 49 y 10.0381 26.6417 42.0000 -Andale_Mono.ttf 89 " 14.9239 15.2098 50 ‘ -0.0940 7.2279 13.2460 -Andale_Mono.ttf 89 " 14.9239 15.2098 51 \ -0.2879 24.4014 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 52 R 0.2108 27.3351 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 53 < 5.4337 21.2279 29.2098 -Andale_Mono.ttf 89 " 14.9239 15.2098 54 4 0.1155 27.4836 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 55 8 0.1312 25.7598 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 56 0 -0.5594 26.7880 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 57 A -0.2542 32.2460 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 58 E 0.0879 21.0793 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 59 B 0.0922 25.0765 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 60 v 10.2931 26.4348 30.4195 -Andale_Mono.ttf 89 " 14.9239 15.2098 61 k -0.3226 26.1253 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 62 J 0.0126 19.6627 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 63 U 0.0111 23.0431 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 64 j -0.1985 15.7239 52.3707 -Andale_Mono.ttf 89 " 14.9239 15.2098 65 ( -0.3108 15.2098 49.6141 -Andale_Mono.ttf 89 " 14.9239 15.2098 66 7 -0.1845 23.7080 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 67 § -0.4521 23.8543 52.5776 -Andale_Mono.ttf 89 " 14.9239 15.2098 68 $ -3.3257 22.6445 47.0152 -Andale_Mono.ttf 89 " 14.9239 15.2098 69 € -0.3067 30.5474 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 70 / -0.0400 24.4014 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 71 C -0.2584 26.7112 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 72 * -0.0138 20.1184 22.4376 -Andale_Mono.ttf 89 " 14.9239 15.2098 73 ” -0.1533 17.6989 13.2460 -Andale_Mono.ttf 89 " 14.9239 15.2098 74 ? -0.2816 20.5652 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 75 { -0.1193 15.8848 50.4376 -Andale_Mono.ttf 89 " 14.9239 15.2098 76 } 0.1011 15.8848 50.4376 -Andale_Mono.ttf 89 " 14.9239 15.2098 77 , 33.5283 7.2279 13.2460 -Andale_Mono.ttf 89 " 14.9239 15.2098 78 I 0.0781 17.9971 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 79 ° -0.3989 15.7261 15.7261 -Andale_Mono.ttf 89 " 14.9239 15.2098 80 K 0.0929 28.2377 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 81 H -0.3101 23.0431 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 82 q 9.8339 24.9156 42.2069 -Andale_Mono.ttf 89 " 14.9239 15.2098 83 & -0.0776 32.6598 40.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 84 ’ -0.2553 7.2279 13.2460 -Andale_Mono.ttf 89 " 14.9239 15.2098 85 [ -0.0017 11.2250 47.8696 -Andale_Mono.ttf 89 " 14.9239 15.2098 86 - 22.4206 16.9359 4.1457 -Andale_Mono.ttf 89 " 14.9239 15.2098 87 Y -0.0935 29.8264 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 88 Q -0.0172 28.6167 47.7692 -Andale_Mono.ttf 89 " 14.9239 15.2098 89 " 0.2613 14.9239 15.2098 -Andale_Mono.ttf 89 " 14.9239 15.2098 90 ! 0.1463 7.2279 40.7902 -Andale_Mono.ttf 89 " 14.9239 15.2098 91 x 9.8713 26.2739 30.4195 -Andale_Mono.ttf 89 " 14.9239 15.2098 92 ) -0.5797 15.2098 49.6141 -Andale_Mono.ttf 89 " 14.9239 15.2098 93 = 12.5628 27.1098 15.2098 -Andale_Mono.ttf 89 " 14.9239 15.2098 94 + 6.5886 26.9971 26.9971 -Andale_Mono.ttf 89 " 14.9239 15.2098 95 X 0.0864 31.0946 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 96 » 10.1281 25.2250 29.2098 -Andale_Mono.ttf 89 " 14.9239 15.2098 97 ' 0.0371 4.4529 15.2098 -Andale_Mono.ttf 89 " 14.9239 15.2098 98 ¢ 4.7336 23.6474 41.2224 -Andale_Mono.ttf 89 " 14.9239 15.2098 99 Z -0.0550 24.3684 40.5833 -Andale_Mono.ttf 89 " 14.9239 15.2098 100 > 5.3148 21.2279 29.2098 -Andale_Mono.ttf 89 " 14.9239 15.2098 101 ® -0.1327 35.0793 34.5652 -Andale_Mono.ttf 89 " 14.9239 15.2098 102 © -0.4440 35.0793 34.5652 -Andale_Mono.ttf 89 " 14.9239 15.2098 103 ] -0.3663 11.2250 47.8696 -Andale_Mono.ttf 89 " 14.9239 15.2098 104 é -1.5444 25.2250 42.0460 -Andale_Mono.ttf 89 " 14.9239 15.2098 105 z 9.9306 23.1917 30.4195 -Andale_Mono.ttf 89 " 14.9239 15.2098 106 _ 49.3866 35.0793 3.8362 -Andale_Mono.ttf 89 " 14.9239 15.2098 107 ¥ 0.2188 29.8264 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 1 t 2.1877 22.6445 38.7569 -Andale_Mono.ttf 90 ! 7.2279 40.7902 2 h -0.0044 23.0431 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 3 a 10.0103 24.2529 30.8333 -Andale_Mono.ttf 90 ! 7.2279 40.7902 4 n 10.0534 23.0431 30.6264 -Andale_Mono.ttf 90 ! 7.2279 40.7902 5 P -0.0992 22.8055 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 6 o 10.1214 26.7880 30.8333 -Andale_Mono.ttf 90 ! 7.2279 40.7902 7 e 9.9613 25.2250 30.8333 -Andale_Mono.ttf 90 ! 7.2279 40.7902 8 : 9.8414 7.2279 30.8333 -Andale_Mono.ttf 90 ! 7.2279 40.7902 9 r 9.9050 20.4043 30.6264 -Andale_Mono.ttf 90 ! 7.2279 40.7902 10 l -0.2492 20.4167 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 11 i -0.3663 13.3043 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 12 1 0.0163 21.0793 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 13 | 0.0277 4.1457 51.1917 -Andale_Mono.ttf 90 ! 7.2279 40.7902 14 N -0.0859 24.3684 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 15 f -0.1714 22.7449 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 16 g 9.7747 26.2862 42.2069 -Andale_Mono.ttf 90 ! 7.2279 40.7902 17 d -0.0603 24.9156 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 18 W 0.0439 32.6598 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 19 s 9.9542 22.4960 30.8333 -Andale_Mono.ttf 90 ! 7.2279 40.7902 20 c 9.8971 24.2529 30.8333 -Andale_Mono.ttf 90 ! 7.2279 40.7902 21 u 10.2989 23.0431 30.6264 -Andale_Mono.ttf 90 ! 7.2279 40.7902 22 3 -0.4126 22.4376 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 23 ~ 21.1161 31.2431 8.4376 -Andale_Mono.ttf 90 ! 7.2279 40.7902 24 # -0.0322 29.7261 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 25 O -0.1985 27.4069 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 26 ` -1.0977 12.2739 8.6445 -Andale_Mono.ttf 90 ! 7.2279 40.7902 27 @ -0.4153 29.8848 45.6293 -Andale_Mono.ttf 90 ! 7.2279 40.7902 28 F 0.1404 21.8334 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 29 S -0.5519 22.6445 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 30 p 9.9569 24.9156 42.2069 -Andale_Mono.ttf 90 ! 7.2279 40.7902 31 “ 0.0347 17.6989 13.2460 -Andale_Mono.ttf 90 ! 7.2279 40.7902 32 % -0.2419 32.6598 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 33 £ -0.1877 26.7902 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 34 . 33.6146 7.2279 7.2279 -Andale_Mono.ttf 90 ! 7.2279 40.7902 35 2 -0.2132 21.9695 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 36 5 0.2404 22.1304 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 37 m 9.7179 27.6138 30.6264 -Andale_Mono.ttf 90 ! 7.2279 40.7902 38 V -0.2452 32.2460 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 39 6 -0.1707 25.4319 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 40 w 10.0720 29.5170 30.4195 -Andale_Mono.ttf 90 ! 7.2279 40.7902 41 T -0.0922 29.4710 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 42 M -0.1240 25.2250 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 43 G -0.4508 26.5833 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 44 b -0.2697 24.9156 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 45 9 0.1238 25.2250 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 46 ; 9.9187 7.2279 36.8514 -Andale_Mono.ttf 90 ! 7.2279 40.7902 47 D 0.0616 25.2250 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 48 L -0.0175 21.8334 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 49 y 10.0873 26.6417 42.0000 -Andale_Mono.ttf 90 ! 7.2279 40.7902 50 ‘ 0.0910 7.2279 13.2460 -Andale_Mono.ttf 90 ! 7.2279 40.7902 51 \ -0.2052 24.4014 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 52 R -0.3542 27.3351 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 53 < 5.4230 21.2279 29.2098 -Andale_Mono.ttf 90 ! 7.2279 40.7902 54 4 -0.2711 27.4836 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 55 8 -0.2498 25.7598 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 56 0 -0.2762 26.7880 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 57 A -0.0264 32.2460 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 58 E 0.0322 21.0793 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 59 B -0.0207 25.0765 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 60 v 10.3253 26.4348 30.4195 -Andale_Mono.ttf 90 ! 7.2279 40.7902 61 k -0.1427 26.1253 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 62 J 0.0324 19.6627 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 63 U 0.0648 23.0431 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 64 j -0.3494 15.7239 52.3707 -Andale_Mono.ttf 90 ! 7.2279 40.7902 65 ( -0.3255 15.2098 49.6141 -Andale_Mono.ttf 90 ! 7.2279 40.7902 66 7 -0.1223 23.7080 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 67 § -0.2270 23.8543 52.5776 -Andale_Mono.ttf 90 ! 7.2279 40.7902 68 $ -2.9819 22.6445 47.0152 -Andale_Mono.ttf 90 ! 7.2279 40.7902 69 € -0.3318 30.5474 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 70 / -0.2243 24.4014 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 71 C -0.0253 26.7112 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 72 * 0.1732 20.1184 22.4376 -Andale_Mono.ttf 90 ! 7.2279 40.7902 73 ” -0.3218 17.6989 13.2460 -Andale_Mono.ttf 90 ! 7.2279 40.7902 74 ? -0.0981 20.5652 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 75 { 0.1069 15.8848 50.4376 -Andale_Mono.ttf 90 ! 7.2279 40.7902 76 } -0.1544 15.8848 50.4376 -Andale_Mono.ttf 90 ! 7.2279 40.7902 77 , 33.5708 7.2279 13.2460 -Andale_Mono.ttf 90 ! 7.2279 40.7902 78 I 0.1594 17.9971 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 79 ° -0.1881 15.7261 15.7261 -Andale_Mono.ttf 90 ! 7.2279 40.7902 80 K -0.1249 28.2377 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 81 H -0.4143 23.0431 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 82 q 9.8017 24.9156 42.2069 -Andale_Mono.ttf 90 ! 7.2279 40.7902 83 & -0.0113 32.6598 40.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 84 ’ -0.4786 7.2279 13.2460 -Andale_Mono.ttf 90 ! 7.2279 40.7902 85 [ -0.1216 11.2250 47.8696 -Andale_Mono.ttf 90 ! 7.2279 40.7902 86 - 22.4978 16.9359 4.1457 -Andale_Mono.ttf 90 ! 7.2279 40.7902 87 Y 0.0000 29.8264 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 88 Q -0.1921 28.6167 47.7692 -Andale_Mono.ttf 90 ! 7.2279 40.7902 89 " -0.1276 14.9239 15.2098 -Andale_Mono.ttf 90 ! 7.2279 40.7902 90 ! 0.1213 7.2279 40.7902 -Andale_Mono.ttf 90 ! 7.2279 40.7902 91 x 10.3620 26.2739 30.4195 -Andale_Mono.ttf 90 ! 7.2279 40.7902 92 ) 0.1245 15.2098 49.6141 -Andale_Mono.ttf 90 ! 7.2279 40.7902 93 = 12.6391 27.1098 15.2098 -Andale_Mono.ttf 90 ! 7.2279 40.7902 94 + 6.7499 26.9971 26.9971 -Andale_Mono.ttf 90 ! 7.2279 40.7902 95 X 0.1002 31.0946 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 96 » 10.0069 25.2250 29.2098 -Andale_Mono.ttf 90 ! 7.2279 40.7902 97 ' 0.0483 4.4529 15.2098 -Andale_Mono.ttf 90 ! 7.2279 40.7902 98 ¢ 4.7060 23.6474 41.2224 -Andale_Mono.ttf 90 ! 7.2279 40.7902 99 Z -0.0179 24.3684 40.5833 -Andale_Mono.ttf 90 ! 7.2279 40.7902 100 > 5.1761 21.2279 29.2098 -Andale_Mono.ttf 90 ! 7.2279 40.7902 101 ® -0.1456 35.0793 34.5652 -Andale_Mono.ttf 90 ! 7.2279 40.7902 102 © -0.0708 35.0793 34.5652 -Andale_Mono.ttf 90 ! 7.2279 40.7902 103 ] -0.3263 11.2250 47.8696 -Andale_Mono.ttf 90 ! 7.2279 40.7902 104 é -1.1305 25.2250 42.0460 -Andale_Mono.ttf 90 ! 7.2279 40.7902 105 z 10.3007 23.1917 30.4195 -Andale_Mono.ttf 90 ! 7.2279 40.7902 106 _ 49.4858 35.0793 3.8362 -Andale_Mono.ttf 90 ! 7.2279 40.7902 107 ¥ -0.0862 29.8264 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 1 t -7.8879 22.6445 38.7569 -Andale_Mono.ttf 91 x 26.2739 30.4195 2 h -10.0730 23.0431 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 3 a -0.3452 24.2529 30.8333 -Andale_Mono.ttf 91 x 26.2739 30.4195 4 n -0.2235 23.0431 30.6264 -Andale_Mono.ttf 91 x 26.2739 30.4195 5 P -10.3795 22.8055 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 6 o -0.5412 26.7880 30.8333 -Andale_Mono.ttf 91 x 26.2739 30.4195 7 e -0.2937 25.2250 30.8333 -Andale_Mono.ttf 91 x 26.2739 30.4195 8 : -0.2056 7.2279 30.8333 -Andale_Mono.ttf 91 x 26.2739 30.4195 9 r -0.5155 20.4043 30.6264 -Andale_Mono.ttf 91 x 26.2739 30.4195 10 l -10.3577 20.4167 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 11 i -10.4799 13.3043 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 12 1 -10.5783 21.0793 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 13 | -10.2663 4.1457 51.1917 -Andale_Mono.ttf 91 x 26.2739 30.4195 14 N -10.1400 24.3684 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 15 f -10.1526 22.7449 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 16 g -0.1121 26.2862 42.2069 -Andale_Mono.ttf 91 x 26.2739 30.4195 17 d -10.1226 24.9156 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 18 W -10.1586 32.6598 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 19 s -0.1761 22.4960 30.8333 -Andale_Mono.ttf 91 x 26.2739 30.4195 20 c -0.0994 24.2529 30.8333 -Andale_Mono.ttf 91 x 26.2739 30.4195 21 u 0.2486 23.0431 30.6264 -Andale_Mono.ttf 91 x 26.2739 30.4195 22 3 -10.3103 22.4376 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 23 ~ 11.1246 31.2431 8.4376 -Andale_Mono.ttf 91 x 26.2739 30.4195 24 # -10.5787 29.7261 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 25 O -10.4585 27.4069 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 26 ` -11.2387 12.2739 8.6445 -Andale_Mono.ttf 91 x 26.2739 30.4195 27 @ -10.4692 29.8848 45.6293 -Andale_Mono.ttf 91 x 26.2739 30.4195 28 F -10.4657 21.8334 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 29 S -10.3707 22.6445 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 30 p -0.0512 24.9156 42.2069 -Andale_Mono.ttf 91 x 26.2739 30.4195 31 “ -10.1751 17.6989 13.2460 -Andale_Mono.ttf 91 x 26.2739 30.4195 32 % -10.3770 32.6598 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 33 £ -10.1243 26.7902 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 34 . 23.4220 7.2279 7.2279 -Andale_Mono.ttf 91 x 26.2739 30.4195 35 2 -10.3745 21.9695 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 36 5 -10.0113 22.1304 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 37 m -0.2463 27.6138 30.6264 -Andale_Mono.ttf 91 x 26.2739 30.4195 38 V -10.0107 32.2460 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 39 6 -10.1885 25.4319 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 40 w 0.1785 29.5170 30.4195 -Andale_Mono.ttf 91 x 26.2739 30.4195 41 T -10.1373 29.4710 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 42 M -10.0061 25.2250 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 43 G -10.3294 26.5833 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 44 b -10.1373 24.9156 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 45 9 -10.5142 25.2250 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 46 ; -0.4511 7.2279 36.8514 -Andale_Mono.ttf 91 x 26.2739 30.4195 47 D -10.0434 25.2250 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 48 L -10.1517 21.8334 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 49 y 0.1167 26.6417 42.0000 -Andale_Mono.ttf 91 x 26.2739 30.4195 50 ‘ -10.4559 7.2279 13.2460 -Andale_Mono.ttf 91 x 26.2739 30.4195 51 \ -10.2596 24.4014 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 52 R -10.2904 27.3351 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 53 < -4.3793 21.2279 29.2098 -Andale_Mono.ttf 91 x 26.2739 30.4195 54 4 -10.1835 27.4836 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 55 8 -10.3688 25.7598 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 56 0 -10.5322 26.7880 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 57 A -10.1414 32.2460 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 58 E -10.2121 21.0793 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 59 B -9.9185 25.0765 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 60 v 0.2071 26.4348 30.4195 -Andale_Mono.ttf 91 x 26.2739 30.4195 61 k -10.1391 26.1253 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 62 J -10.0737 19.6627 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 63 U -10.2565 23.0431 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 64 j -10.3098 15.7239 52.3707 -Andale_Mono.ttf 91 x 26.2739 30.4195 65 ( -10.6073 15.2098 49.6141 -Andale_Mono.ttf 91 x 26.2739 30.4195 66 7 -10.0371 23.7080 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 67 § -10.4146 23.8543 52.5776 -Andale_Mono.ttf 91 x 26.2739 30.4195 68 $ -13.2177 22.6445 47.0152 -Andale_Mono.ttf 91 x 26.2739 30.4195 69 € -10.3251 30.5474 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 70 / -10.2113 24.4014 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 71 C -10.3245 26.7112 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 72 * -10.5125 20.1184 22.4376 -Andale_Mono.ttf 91 x 26.2739 30.4195 73 ” -10.3864 17.6989 13.2460 -Andale_Mono.ttf 91 x 26.2739 30.4195 74 ? -10.3605 20.5652 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 75 { -10.3276 15.8848 50.4376 -Andale_Mono.ttf 91 x 26.2739 30.4195 76 } -10.2291 15.8848 50.4376 -Andale_Mono.ttf 91 x 26.2739 30.4195 77 , 23.4890 7.2279 13.2460 -Andale_Mono.ttf 91 x 26.2739 30.4195 78 I -10.3955 17.9971 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 79 ° -10.2603 15.7261 15.7261 -Andale_Mono.ttf 91 x 26.2739 30.4195 80 K -10.1500 28.2377 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 81 H -9.9869 23.0431 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 82 q -0.0675 24.9156 42.2069 -Andale_Mono.ttf 91 x 26.2739 30.4195 83 & -10.1308 32.6598 40.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 84 ’ -10.4830 7.2279 13.2460 -Andale_Mono.ttf 91 x 26.2739 30.4195 85 [ -10.0117 11.2250 47.8696 -Andale_Mono.ttf 91 x 26.2739 30.4195 86 - 12.2532 16.9359 4.1457 -Andale_Mono.ttf 91 x 26.2739 30.4195 87 Y -10.1887 29.8264 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 88 Q -10.3004 28.6167 47.7692 -Andale_Mono.ttf 91 x 26.2739 30.4195 89 " -10.4023 14.9239 15.2098 -Andale_Mono.ttf 91 x 26.2739 30.4195 90 ! -9.9798 7.2279 40.7902 -Andale_Mono.ttf 91 x 26.2739 30.4195 91 x -0.0458 26.2739 30.4195 -Andale_Mono.ttf 91 x 26.2739 30.4195 92 ) -10.3801 15.2098 49.6141 -Andale_Mono.ttf 91 x 26.2739 30.4195 93 = 2.5802 27.1098 15.2098 -Andale_Mono.ttf 91 x 26.2739 30.4195 94 + -3.6200 26.9971 26.9971 -Andale_Mono.ttf 91 x 26.2739 30.4195 95 X -10.0107 31.0946 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 96 » -0.4933 25.2250 29.2098 -Andale_Mono.ttf 91 x 26.2739 30.4195 97 ' -10.1404 4.4529 15.2098 -Andale_Mono.ttf 91 x 26.2739 30.4195 98 ¢ -5.5668 23.6474 41.2224 -Andale_Mono.ttf 91 x 26.2739 30.4195 99 Z -10.1103 24.3684 40.5833 -Andale_Mono.ttf 91 x 26.2739 30.4195 100 > -4.8241 21.2279 29.2098 -Andale_Mono.ttf 91 x 26.2739 30.4195 101 ® -10.5760 35.0793 34.5652 -Andale_Mono.ttf 91 x 26.2739 30.4195 102 © -10.5345 35.0793 34.5652 -Andale_Mono.ttf 91 x 26.2739 30.4195 103 ] -10.1178 11.2250 47.8696 -Andale_Mono.ttf 91 x 26.2739 30.4195 104 é -11.1749 25.2250 42.0460 -Andale_Mono.ttf 91 x 26.2739 30.4195 105 z 0.0828 23.1917 30.4195 -Andale_Mono.ttf 91 x 26.2739 30.4195 106 _ 39.6171 35.0793 3.8362 -Andale_Mono.ttf 91 x 26.2739 30.4195 107 ¥ -9.9169 29.8264 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 1 t 2.1699 22.6445 38.7569 -Andale_Mono.ttf 92 ) 15.2098 49.6141 2 h 0.1446 23.0431 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 3 a 10.0000 24.2529 30.8333 -Andale_Mono.ttf 92 ) 15.2098 49.6141 4 n 10.2998 23.0431 30.6264 -Andale_Mono.ttf 92 ) 15.2098 49.6141 5 P 0.1994 22.8055 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 6 o 10.1034 26.7880 30.8333 -Andale_Mono.ttf 92 ) 15.2098 49.6141 7 e 9.9642 25.2250 30.8333 -Andale_Mono.ttf 92 ) 15.2098 49.6141 8 : 10.1452 7.2279 30.8333 -Andale_Mono.ttf 92 ) 15.2098 49.6141 9 r 10.0690 20.4043 30.6264 -Andale_Mono.ttf 92 ) 15.2098 49.6141 10 l 0.2810 20.4167 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 11 i -0.2510 13.3043 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 12 1 0.0000 21.0793 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 13 | 0.3180 4.1457 51.1917 -Andale_Mono.ttf 92 ) 15.2098 49.6141 14 N 0.4364 24.3684 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 15 f 0.0795 22.7449 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 16 g 10.2885 26.2862 42.2069 -Andale_Mono.ttf 92 ) 15.2098 49.6141 17 d 0.4039 24.9156 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 18 W 0.4672 32.6598 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 19 s 10.3896 22.4960 30.8333 -Andale_Mono.ttf 92 ) 15.2098 49.6141 20 c 10.1011 24.2529 30.8333 -Andale_Mono.ttf 92 ) 15.2098 49.6141 21 u 10.2966 23.0431 30.6264 -Andale_Mono.ttf 92 ) 15.2098 49.6141 22 3 -0.0828 22.4376 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 23 ~ 21.3419 31.2431 8.4376 -Andale_Mono.ttf 92 ) 15.2098 49.6141 24 # 0.0019 29.7261 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 25 O -0.1494 27.4069 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 26 ` -1.0816 12.2739 8.6445 -Andale_Mono.ttf 92 ) 15.2098 49.6141 27 @ -0.1123 29.8848 45.6293 -Andale_Mono.ttf 92 ) 15.2098 49.6141 28 F -0.0200 21.8334 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 29 S -0.3182 22.6445 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 30 p 10.0201 24.9156 42.2069 -Andale_Mono.ttf 92 ) 15.2098 49.6141 31 “ -0.1039 17.6989 13.2460 -Andale_Mono.ttf 92 ) 15.2098 49.6141 32 % -0.0121 32.6598 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 33 £ 0.1946 26.7902 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 34 . 33.6252 7.2279 7.2279 -Andale_Mono.ttf 92 ) 15.2098 49.6141 35 2 -0.1177 21.9695 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 36 5 0.1719 22.1304 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 37 m 10.3195 27.6138 30.6264 -Andale_Mono.ttf 92 ) 15.2098 49.6141 38 V 0.3621 32.2460 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 39 6 0.0456 25.4319 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 40 w 10.2477 29.5170 30.4195 -Andale_Mono.ttf 92 ) 15.2098 49.6141 41 T -0.1318 29.4710 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 42 M 0.1958 25.2250 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 43 G 0.2761 26.5833 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 44 b -0.0454 24.9156 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 45 9 -0.3418 25.2250 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 46 ; 9.9960 7.2279 36.8514 -Andale_Mono.ttf 92 ) 15.2098 49.6141 47 D 0.2759 25.2250 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 48 L 0.0814 21.8334 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 49 y 10.1864 26.6417 42.0000 -Andale_Mono.ttf 92 ) 15.2098 49.6141 50 ‘ -0.0623 7.2279 13.2460 -Andale_Mono.ttf 92 ) 15.2098 49.6141 51 \ -0.0371 24.4014 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 52 R 0.3416 27.3351 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 53 < 5.6460 21.2279 29.2098 -Andale_Mono.ttf 92 ) 15.2098 49.6141 54 4 0.2203 27.4836 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 55 8 0.0000 25.7598 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 56 0 0.0695 26.7880 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 57 A 0.2534 32.2460 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 58 E 0.1940 21.0793 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 59 B 0.0956 25.0765 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 60 v 10.2571 26.4348 30.4195 -Andale_Mono.ttf 92 ) 15.2098 49.6141 61 k 0.3680 26.1253 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 62 J 0.2691 19.6627 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 63 U 0.2672 23.0431 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 64 j -0.0594 15.7239 52.3707 -Andale_Mono.ttf 92 ) 15.2098 49.6141 65 ( -0.0695 15.2098 49.6141 -Andale_Mono.ttf 92 ) 15.2098 49.6141 66 7 0.4264 23.7080 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 67 § -0.0931 23.8543 52.5776 -Andale_Mono.ttf 92 ) 15.2098 49.6141 68 $ -2.5769 22.6445 47.0152 -Andale_Mono.ttf 92 ) 15.2098 49.6141 69 € -0.2191 30.5474 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 70 / 0.0017 24.4014 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 71 C -0.3347 26.7112 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 72 * 0.0708 20.1184 22.4376 -Andale_Mono.ttf 92 ) 15.2098 49.6141 73 ” -0.0308 17.6989 13.2460 -Andale_Mono.ttf 92 ) 15.2098 49.6141 74 ? 0.0600 20.5652 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 75 { 0.0676 15.8848 50.4376 -Andale_Mono.ttf 92 ) 15.2098 49.6141 76 } 0.2011 15.8848 50.4376 -Andale_Mono.ttf 92 ) 15.2098 49.6141 77 , 33.7764 7.2279 13.2460 -Andale_Mono.ttf 92 ) 15.2098 49.6141 78 I 0.2849 17.9971 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 79 ° 0.1728 15.7261 15.7261 -Andale_Mono.ttf 92 ) 15.2098 49.6141 80 K 0.3707 28.2377 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 81 H 0.2069 23.0431 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 82 q 10.1713 24.9156 42.2069 -Andale_Mono.ttf 92 ) 15.2098 49.6141 83 & -0.1387 32.6598 40.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 84 ’ -0.0848 7.2279 13.2460 -Andale_Mono.ttf 92 ) 15.2098 49.6141 85 [ 0.1036 11.2250 47.8696 -Andale_Mono.ttf 92 ) 15.2098 49.6141 86 - 22.7876 16.9359 4.1457 -Andale_Mono.ttf 92 ) 15.2098 49.6141 87 Y 0.2360 29.8264 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 88 Q 0.1404 28.6167 47.7692 -Andale_Mono.ttf 92 ) 15.2098 49.6141 89 " 0.1891 14.9239 15.2098 -Andale_Mono.ttf 92 ) 15.2098 49.6141 90 ! 0.1285 7.2279 40.7902 -Andale_Mono.ttf 92 ) 15.2098 49.6141 91 x 10.0538 26.2739 30.4195 -Andale_Mono.ttf 92 ) 15.2098 49.6141 92 ) 0.3454 15.2098 49.6141 -Andale_Mono.ttf 92 ) 15.2098 49.6141 93 = 12.8914 27.1098 15.2098 -Andale_Mono.ttf 92 ) 15.2098 49.6141 94 + 6.7081 26.9971 26.9971 -Andale_Mono.ttf 92 ) 15.2098 49.6141 95 X 0.3818 31.0946 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 96 » 10.1992 25.2250 29.2098 -Andale_Mono.ttf 92 ) 15.2098 49.6141 97 ' 0.1571 4.4529 15.2098 -Andale_Mono.ttf 92 ) 15.2098 49.6141 98 ¢ 5.0752 23.6474 41.2224 -Andale_Mono.ttf 92 ) 15.2098 49.6141 99 Z 0.2696 24.3684 40.5833 -Andale_Mono.ttf 92 ) 15.2098 49.6141 100 > 5.8693 21.2279 29.2098 -Andale_Mono.ttf 92 ) 15.2098 49.6141 101 ® -0.0985 35.0793 34.5652 -Andale_Mono.ttf 92 ) 15.2098 49.6141 102 © -0.0144 35.0793 34.5652 -Andale_Mono.ttf 92 ) 15.2098 49.6141 103 ] -0.0310 11.2250 47.8696 -Andale_Mono.ttf 92 ) 15.2098 49.6141 104 é -1.0954 25.2250 42.0460 -Andale_Mono.ttf 92 ) 15.2098 49.6141 105 z 10.2897 23.1917 30.4195 -Andale_Mono.ttf 92 ) 15.2098 49.6141 106 _ 49.9858 35.0793 3.8362 -Andale_Mono.ttf 92 ) 15.2098 49.6141 107 ¥ 0.0458 29.8264 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 1 t -10.6611 22.6445 38.7569 -Andale_Mono.ttf 93 = 27.1098 15.2098 2 h -12.0661 23.0431 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 3 a -2.4936 24.2529 30.8333 -Andale_Mono.ttf 93 = 27.1098 15.2098 4 n -2.3960 23.0431 30.6264 -Andale_Mono.ttf 93 = 27.1098 15.2098 5 P -12.4759 22.8055 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 6 o -2.4489 26.7880 30.8333 -Andale_Mono.ttf 93 = 27.1098 15.2098 7 e -2.7015 25.2250 30.8333 -Andale_Mono.ttf 93 = 27.1098 15.2098 8 : -2.7107 7.2279 30.8333 -Andale_Mono.ttf 93 = 27.1098 15.2098 9 r -2.7514 20.4043 30.6264 -Andale_Mono.ttf 93 = 27.1098 15.2098 10 l -12.4912 20.4167 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 11 i -12.8203 13.3043 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 12 1 -12.8465 21.0793 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 13 | -12.4557 4.1457 51.1917 -Andale_Mono.ttf 93 = 27.1098 15.2098 14 N -12.6152 24.3684 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 15 f -12.2107 22.7449 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 16 g -2.4167 26.2862 42.2069 -Andale_Mono.ttf 93 = 27.1098 15.2098 17 d -12.6192 24.9156 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 18 W -12.5901 32.6598 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 19 s -2.6027 22.4960 30.8333 -Andale_Mono.ttf 93 = 27.1098 15.2098 20 c -2.7420 24.2529 30.8333 -Andale_Mono.ttf 93 = 27.1098 15.2098 21 u -2.8052 23.0431 30.6264 -Andale_Mono.ttf 93 = 27.1098 15.2098 22 3 -12.7795 22.4376 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 23 ~ 8.6509 31.2431 8.4376 -Andale_Mono.ttf 93 = 27.1098 15.2098 24 # -12.6412 29.7261 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 25 O -12.5991 27.4069 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 26 ` -13.9047 12.2739 8.6445 -Andale_Mono.ttf 93 = 27.1098 15.2098 27 @ -12.6617 29.8848 45.6293 -Andale_Mono.ttf 93 = 27.1098 15.2098 28 F -12.3983 21.8334 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 29 S -12.9038 22.6445 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 30 p -2.4372 24.9156 42.2069 -Andale_Mono.ttf 93 = 27.1098 15.2098 31 “ -12.8523 17.6989 13.2460 -Andale_Mono.ttf 93 = 27.1098 15.2098 32 % -12.7150 32.6598 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 33 £ -12.8262 26.7902 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 34 . 20.5118 7.2279 7.2279 -Andale_Mono.ttf 93 = 27.1098 15.2098 35 2 -12.8933 21.9695 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 36 5 -12.0671 22.1304 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 37 m -2.5843 27.6138 30.6264 -Andale_Mono.ttf 93 = 27.1098 15.2098 38 V -12.4904 32.2460 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 39 6 -12.9312 25.4319 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 40 w -2.7730 29.5170 30.4195 -Andale_Mono.ttf 93 = 27.1098 15.2098 41 T -12.7626 29.4710 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 42 M -12.7886 25.2250 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 43 G -12.6143 26.5833 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 44 b -12.4290 24.9156 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 45 9 -12.9343 25.2250 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 46 ; -2.6174 7.2279 36.8514 -Andale_Mono.ttf 93 = 27.1098 15.2098 47 D -12.3958 25.2250 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 48 L -12.4696 21.8334 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 49 y -2.4740 26.6417 42.0000 -Andale_Mono.ttf 93 = 27.1098 15.2098 50 ‘ -12.7320 7.2279 13.2460 -Andale_Mono.ttf 93 = 27.1098 15.2098 51 \ -12.6927 24.4014 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 52 R -12.7595 27.3351 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 53 < -7.2405 21.2279 29.2098 -Andale_Mono.ttf 93 = 27.1098 15.2098 54 4 -12.4348 27.4836 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 55 8 -12.8274 25.7598 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 56 0 -13.2829 26.7880 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 57 A -12.6968 32.2460 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 58 E -12.4381 21.0793 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 59 B -12.5697 25.0765 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 60 v -2.5841 26.4348 30.4195 -Andale_Mono.ttf 93 = 27.1098 15.2098 61 k -12.3569 26.1253 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 62 J -12.5962 19.6627 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 63 U -12.7668 23.0431 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 64 j -12.8046 15.7239 52.3707 -Andale_Mono.ttf 93 = 27.1098 15.2098 65 ( -12.9993 15.2098 49.6141 -Andale_Mono.ttf 93 = 27.1098 15.2098 66 7 -12.4730 23.7080 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 67 § -12.9960 23.8543 52.5776 -Andale_Mono.ttf 93 = 27.1098 15.2098 68 $ -15.5664 22.6445 47.0152 -Andale_Mono.ttf 93 = 27.1098 15.2098 69 € -12.8341 30.5474 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 70 / -12.5253 24.4014 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 71 C -12.4983 26.7112 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 72 * -12.5456 20.1184 22.4376 -Andale_Mono.ttf 93 = 27.1098 15.2098 73 ” -13.0264 17.6989 13.2460 -Andale_Mono.ttf 93 = 27.1098 15.2098 74 ? -12.6228 20.5652 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 75 { -12.8048 15.8848 50.4376 -Andale_Mono.ttf 93 = 27.1098 15.2098 76 } -12.5383 15.8848 50.4376 -Andale_Mono.ttf 93 = 27.1098 15.2098 77 , 20.8842 7.2279 13.2460 -Andale_Mono.ttf 93 = 27.1098 15.2098 78 I -12.5341 17.9971 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 79 ° -12.9025 15.7261 15.7261 -Andale_Mono.ttf 93 = 27.1098 15.2098 80 K -12.8071 28.2377 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 81 H -12.4806 23.0431 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 82 q -2.6446 24.9156 42.2069 -Andale_Mono.ttf 93 = 27.1098 15.2098 83 & -12.8063 32.6598 40.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 84 ’ -12.7908 7.2279 13.2460 -Andale_Mono.ttf 93 = 27.1098 15.2098 85 [ -12.5006 11.2250 47.8696 -Andale_Mono.ttf 93 = 27.1098 15.2098 86 - 10.0080 16.9359 4.1457 -Andale_Mono.ttf 93 = 27.1098 15.2098 87 Y -12.5595 29.8264 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 88 Q -12.7763 28.6167 47.7692 -Andale_Mono.ttf 93 = 27.1098 15.2098 89 " -12.5488 14.9239 15.2098 -Andale_Mono.ttf 93 = 27.1098 15.2098 90 ! -12.7799 7.2279 40.7902 -Andale_Mono.ttf 93 = 27.1098 15.2098 91 x -2.4557 26.2739 30.4195 -Andale_Mono.ttf 93 = 27.1098 15.2098 92 ) -13.0297 15.2098 49.6141 -Andale_Mono.ttf 93 = 27.1098 15.2098 93 = 0.0939 27.1098 15.2098 -Andale_Mono.ttf 93 = 27.1098 15.2098 94 + -6.1748 26.9971 26.9971 -Andale_Mono.ttf 93 = 27.1098 15.2098 95 X -12.5431 31.0946 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 96 » -2.7515 25.2250 29.2098 -Andale_Mono.ttf 93 = 27.1098 15.2098 97 ' -12.4297 4.4529 15.2098 -Andale_Mono.ttf 93 = 27.1098 15.2098 98 ¢ -8.1315 23.6474 41.2224 -Andale_Mono.ttf 93 = 27.1098 15.2098 99 Z -12.5719 24.3684 40.5833 -Andale_Mono.ttf 93 = 27.1098 15.2098 100 > -7.0558 21.2279 29.2098 -Andale_Mono.ttf 93 = 27.1098 15.2098 101 ® -12.9862 35.0793 34.5652 -Andale_Mono.ttf 93 = 27.1098 15.2098 102 © -12.9517 35.0793 34.5652 -Andale_Mono.ttf 93 = 27.1098 15.2098 103 ] -12.5508 11.2250 47.8696 -Andale_Mono.ttf 93 = 27.1098 15.2098 104 é -13.7362 25.2250 42.0460 -Andale_Mono.ttf 93 = 27.1098 15.2098 105 z -2.7793 23.1917 30.4195 -Andale_Mono.ttf 93 = 27.1098 15.2098 106 _ 36.6435 35.0793 3.8362 -Andale_Mono.ttf 93 = 27.1098 15.2098 107 ¥ -12.6812 29.8264 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 1 t -4.4984 22.6445 38.7569 -Andale_Mono.ttf 94 + 26.9971 26.9971 2 h -6.3750 23.0431 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 3 a 3.3363 24.2529 30.8333 -Andale_Mono.ttf 94 + 26.9971 26.9971 4 n 3.6566 23.0431 30.6264 -Andale_Mono.ttf 94 + 26.9971 26.9971 5 P -6.8302 22.8055 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 6 o 3.2260 26.7880 30.8333 -Andale_Mono.ttf 94 + 26.9971 26.9971 7 e 3.3154 25.2250 30.8333 -Andale_Mono.ttf 94 + 26.9971 26.9971 8 : 3.1739 7.2279 30.8333 -Andale_Mono.ttf 94 + 26.9971 26.9971 9 r 3.6972 20.4043 30.6264 -Andale_Mono.ttf 94 + 26.9971 26.9971 10 l -6.3307 20.4167 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 11 i -6.4664 13.3043 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 12 1 -6.8405 21.0793 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 13 | -6.4914 4.1457 51.1917 -Andale_Mono.ttf 94 + 26.9971 26.9971 14 N -6.5764 24.3684 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 15 f -6.4031 22.7449 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 16 g 3.3921 26.2862 42.2069 -Andale_Mono.ttf 94 + 26.9971 26.9971 17 d -6.5193 24.9156 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 18 W -6.4896 32.6598 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 19 s 3.5072 22.4960 30.8333 -Andale_Mono.ttf 94 + 26.9971 26.9971 20 c 3.5028 24.2529 30.8333 -Andale_Mono.ttf 94 + 26.9971 26.9971 21 u 3.1064 23.0431 30.6264 -Andale_Mono.ttf 94 + 26.9971 26.9971 22 3 -6.7168 22.4376 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 23 ~ 14.4792 31.2431 8.4376 -Andale_Mono.ttf 94 + 26.9971 26.9971 24 # -6.7246 29.7261 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 25 O -6.9040 27.4069 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 26 ` -7.8568 12.2739 8.6445 -Andale_Mono.ttf 94 + 26.9971 26.9971 27 @ -6.8342 29.8848 45.6293 -Andale_Mono.ttf 94 + 26.9971 26.9971 28 F -6.9148 21.8334 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 29 S -6.8166 22.6445 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 30 p 3.1374 24.9156 42.2069 -Andale_Mono.ttf 94 + 26.9971 26.9971 31 “ -6.8809 17.6989 13.2460 -Andale_Mono.ttf 94 + 26.9971 26.9971 32 % -6.6782 32.6598 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 33 £ -6.4367 26.7902 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 34 . 27.1163 7.2279 7.2279 -Andale_Mono.ttf 94 + 26.9971 26.9971 35 2 -6.6813 21.9695 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 36 5 -6.6065 22.1304 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 37 m 3.3813 27.6138 30.6264 -Andale_Mono.ttf 94 + 26.9971 26.9971 38 V -6.1775 32.2460 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 39 6 -6.9855 25.4319 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 40 w 3.5317 29.5170 30.4195 -Andale_Mono.ttf 94 + 26.9971 26.9971 41 T -6.6135 29.4710 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 42 M -6.7353 25.2250 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 43 G -6.8626 26.5833 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 44 b -6.5836 24.9156 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 45 9 -6.4921 25.2250 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 46 ; 3.4489 7.2279 36.8514 -Andale_Mono.ttf 94 + 26.9971 26.9971 47 D -6.6205 25.2250 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 48 L -6.7649 21.8334 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 49 y 3.6536 26.6417 42.0000 -Andale_Mono.ttf 94 + 26.9971 26.9971 50 ‘ -6.4183 7.2279 13.2460 -Andale_Mono.ttf 94 + 26.9971 26.9971 51 \ -6.7304 24.4014 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 52 R -6.8459 27.3351 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 53 < -0.9753 21.2279 29.2098 -Andale_Mono.ttf 94 + 26.9971 26.9971 54 4 -6.4647 27.4836 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 55 8 -6.8894 25.7598 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 56 0 -6.7011 26.7880 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 57 A -6.9623 32.2460 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 58 E -6.2779 21.0793 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 59 B -6.5752 25.0765 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 60 v 3.4756 26.4348 30.4195 -Andale_Mono.ttf 94 + 26.9971 26.9971 61 k -6.4372 26.1253 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 62 J -6.5723 19.6627 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 63 U -6.5093 23.0431 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 64 j -6.8461 15.7239 52.3707 -Andale_Mono.ttf 94 + 26.9971 26.9971 65 ( -6.9162 15.2098 49.6141 -Andale_Mono.ttf 94 + 26.9971 26.9971 66 7 -5.9961 23.7080 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 67 § -6.7923 23.8543 52.5776 -Andale_Mono.ttf 94 + 26.9971 26.9971 68 $ -9.5351 22.6445 47.0152 -Andale_Mono.ttf 94 + 26.9971 26.9971 69 € -6.6894 30.5474 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 70 / -6.9327 24.4014 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 71 C -6.6712 26.7112 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 72 * -6.5202 20.1184 22.4376 -Andale_Mono.ttf 94 + 26.9971 26.9971 73 ” -6.7552 17.6989 13.2460 -Andale_Mono.ttf 94 + 26.9971 26.9971 74 ? -6.6357 20.5652 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 75 { -6.7755 15.8848 50.4376 -Andale_Mono.ttf 94 + 26.9971 26.9971 76 } -6.9047 15.8848 50.4376 -Andale_Mono.ttf 94 + 26.9971 26.9971 77 , 26.6086 7.2279 13.2460 -Andale_Mono.ttf 94 + 26.9971 26.9971 78 I -6.5849 17.9971 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 79 ° -6.9058 15.7261 15.7261 -Andale_Mono.ttf 94 + 26.9971 26.9971 80 K -6.7321 28.2377 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 81 H -6.6828 23.0431 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 82 q 3.3156 24.9156 42.2069 -Andale_Mono.ttf 94 + 26.9971 26.9971 83 & -6.6741 32.6598 40.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 84 ’ -6.4478 7.2279 13.2460 -Andale_Mono.ttf 94 + 26.9971 26.9971 85 [ -6.7820 11.2250 47.8696 -Andale_Mono.ttf 94 + 26.9971 26.9971 86 - 16.2278 16.9359 4.1457 -Andale_Mono.ttf 94 + 26.9971 26.9971 87 Y -6.5488 29.8264 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 88 Q -6.7345 28.6167 47.7692 -Andale_Mono.ttf 94 + 26.9971 26.9971 89 " -6.6093 14.9239 15.2098 -Andale_Mono.ttf 94 + 26.9971 26.9971 90 ! -6.3764 7.2279 40.7902 -Andale_Mono.ttf 94 + 26.9971 26.9971 91 x 3.8327 26.2739 30.4195 -Andale_Mono.ttf 94 + 26.9971 26.9971 92 ) -6.8447 15.2098 49.6141 -Andale_Mono.ttf 94 + 26.9971 26.9971 93 = 6.0583 27.1098 15.2098 -Andale_Mono.ttf 94 + 26.9971 26.9971 94 + 0.0327 26.9971 26.9971 -Andale_Mono.ttf 94 + 26.9971 26.9971 95 X -6.7295 31.0946 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 96 » 3.3133 25.2250 29.2098 -Andale_Mono.ttf 94 + 26.9971 26.9971 97 ' -6.8256 4.4529 15.2098 -Andale_Mono.ttf 94 + 26.9971 26.9971 98 ¢ -1.7175 23.6474 41.2224 -Andale_Mono.ttf 94 + 26.9971 26.9971 99 Z -6.6490 24.3684 40.5833 -Andale_Mono.ttf 94 + 26.9971 26.9971 100 > -1.2112 21.2279 29.2098 -Andale_Mono.ttf 94 + 26.9971 26.9971 101 ® -6.6576 35.0793 34.5652 -Andale_Mono.ttf 94 + 26.9971 26.9971 102 © -6.8424 35.0793 34.5652 -Andale_Mono.ttf 94 + 26.9971 26.9971 103 ] -6.5972 11.2250 47.8696 -Andale_Mono.ttf 94 + 26.9971 26.9971 104 é -7.9520 25.2250 42.0460 -Andale_Mono.ttf 94 + 26.9971 26.9971 105 z 3.6097 23.1917 30.4195 -Andale_Mono.ttf 94 + 26.9971 26.9971 106 _ 43.1822 35.0793 3.8362 -Andale_Mono.ttf 94 + 26.9971 26.9971 107 ¥ -6.5106 29.8264 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 1 t 2.0387 22.6445 38.7569 -Andale_Mono.ttf 95 X 31.0946 40.5833 2 h 0.0864 23.0431 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 3 a 9.9193 24.2529 30.8333 -Andale_Mono.ttf 95 X 31.0946 40.5833 4 n 9.9658 23.0431 30.6264 -Andale_Mono.ttf 95 X 31.0946 40.5833 5 P -0.0418 22.8055 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 6 o 10.2048 26.7880 30.8333 -Andale_Mono.ttf 95 X 31.0946 40.5833 7 e 10.2753 25.2250 30.8333 -Andale_Mono.ttf 95 X 31.0946 40.5833 8 : 9.9532 7.2279 30.8333 -Andale_Mono.ttf 95 X 31.0946 40.5833 9 r 10.0119 20.4043 30.6264 -Andale_Mono.ttf 95 X 31.0946 40.5833 10 l 0.0963 20.4167 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 11 i -0.2897 13.3043 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 12 1 -0.1952 21.0793 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 13 | 0.3753 4.1457 51.1917 -Andale_Mono.ttf 95 X 31.0946 40.5833 14 N -0.1048 24.3684 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 15 f 0.5115 22.7449 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 16 g 10.1533 26.2862 42.2069 -Andale_Mono.ttf 95 X 31.0946 40.5833 17 d 0.1249 24.9156 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 18 W 0.0107 32.6598 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 19 s 9.7435 22.4960 30.8333 -Andale_Mono.ttf 95 X 31.0946 40.5833 20 c 9.9914 24.2529 30.8333 -Andale_Mono.ttf 95 X 31.0946 40.5833 21 u 10.0013 23.0431 30.6264 -Andale_Mono.ttf 95 X 31.0946 40.5833 22 3 -0.3804 22.4376 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 23 ~ 21.2480 31.2431 8.4376 -Andale_Mono.ttf 95 X 31.0946 40.5833 24 # 0.4102 29.7261 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 25 O -0.3743 27.4069 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 26 ` -1.6326 12.2739 8.6445 -Andale_Mono.ttf 95 X 31.0946 40.5833 27 @ -0.1652 29.8848 45.6293 -Andale_Mono.ttf 95 X 31.0946 40.5833 28 F -0.1878 21.8334 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 29 S 0.0353 22.6445 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 30 p 10.0691 24.9156 42.2069 -Andale_Mono.ttf 95 X 31.0946 40.5833 31 “ -0.4172 17.6989 13.2460 -Andale_Mono.ttf 95 X 31.0946 40.5833 32 % -0.3086 32.6598 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 33 £ -0.1322 26.7902 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 34 . 33.6470 7.2279 7.2279 -Andale_Mono.ttf 95 X 31.0946 40.5833 35 2 -0.0502 21.9695 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 36 5 -0.0720 22.1304 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 37 m 9.9214 27.6138 30.6264 -Andale_Mono.ttf 95 X 31.0946 40.5833 38 V 0.1270 32.2460 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 39 6 -0.3205 25.4319 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 40 w 9.8575 29.5170 30.4195 -Andale_Mono.ttf 95 X 31.0946 40.5833 41 T -0.1197 29.4710 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 42 M -0.4366 25.2250 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 43 G -0.1667 26.5833 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 44 b 0.2609 24.9156 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 45 9 -0.1201 25.2250 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 46 ; 10.2042 7.2279 36.8514 -Andale_Mono.ttf 95 X 31.0946 40.5833 47 D -0.1253 25.2250 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 48 L 0.1663 21.8334 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 49 y 10.3475 26.6417 42.0000 -Andale_Mono.ttf 95 X 31.0946 40.5833 50 ‘ 0.1855 7.2279 13.2460 -Andale_Mono.ttf 95 X 31.0946 40.5833 51 \ -0.3406 24.4014 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 52 R 0.0098 27.3351 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 53 < 5.6042 21.2279 29.2098 -Andale_Mono.ttf 95 X 31.0946 40.5833 54 4 0.0916 27.4836 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 55 8 -0.3107 25.7598 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 56 0 -0.1471 26.7880 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 57 A -0.4027 32.2460 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 58 E 0.1893 21.0793 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 59 B -0.0720 25.0765 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 60 v 10.2467 26.4348 30.4195 -Andale_Mono.ttf 95 X 31.0946 40.5833 61 k 0.1636 26.1253 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 62 J -0.0111 19.6627 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 63 U 0.0264 23.0431 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 64 j -0.0660 15.7239 52.3707 -Andale_Mono.ttf 95 X 31.0946 40.5833 65 ( 0.1904 15.2098 49.6141 -Andale_Mono.ttf 95 X 31.0946 40.5833 66 7 -0.0180 23.7080 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 67 § 0.0950 23.8543 52.5776 -Andale_Mono.ttf 95 X 31.0946 40.5833 68 $ -2.8414 22.6445 47.0152 -Andale_Mono.ttf 95 X 31.0946 40.5833 69 € 0.3542 30.5474 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 70 / -0.1178 24.4014 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 71 C -0.3065 26.7112 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 72 * 0.0716 20.1184 22.4376 -Andale_Mono.ttf 95 X 31.0946 40.5833 73 ” -0.3577 17.6989 13.2460 -Andale_Mono.ttf 95 X 31.0946 40.5833 74 ? -0.1433 20.5652 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 75 { 0.0054 15.8848 50.4376 -Andale_Mono.ttf 95 X 31.0946 40.5833 76 } 0.0017 15.8848 50.4376 -Andale_Mono.ttf 95 X 31.0946 40.5833 77 , 33.4587 7.2279 13.2460 -Andale_Mono.ttf 95 X 31.0946 40.5833 78 I 0.0301 17.9971 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 79 ° -0.2525 15.7261 15.7261 -Andale_Mono.ttf 95 X 31.0946 40.5833 80 K -0.1086 28.2377 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 81 H -0.0730 23.0431 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 82 q 9.6427 24.9156 42.2069 -Andale_Mono.ttf 95 X 31.0946 40.5833 83 & -0.1337 32.6598 40.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 84 ’ -0.0540 7.2279 13.2460 -Andale_Mono.ttf 95 X 31.0946 40.5833 85 [ 0.1475 11.2250 47.8696 -Andale_Mono.ttf 95 X 31.0946 40.5833 86 - 22.3332 16.9359 4.1457 -Andale_Mono.ttf 95 X 31.0946 40.5833 87 Y 0.0017 29.8264 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 88 Q -0.1004 28.6167 47.7692 -Andale_Mono.ttf 95 X 31.0946 40.5833 89 " 0.2128 14.9239 15.2098 -Andale_Mono.ttf 95 X 31.0946 40.5833 90 ! -0.0353 7.2279 40.7902 -Andale_Mono.ttf 95 X 31.0946 40.5833 91 x 10.1155 26.2739 30.4195 -Andale_Mono.ttf 95 X 31.0946 40.5833 92 ) -0.2843 15.2098 49.6141 -Andale_Mono.ttf 95 X 31.0946 40.5833 93 = 12.6894 27.1098 15.2098 -Andale_Mono.ttf 95 X 31.0946 40.5833 94 + 6.3619 26.9971 26.9971 -Andale_Mono.ttf 95 X 31.0946 40.5833 95 X 0.4237 31.0946 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 96 » 10.1126 25.2250 29.2098 -Andale_Mono.ttf 95 X 31.0946 40.5833 97 ' 0.0298 4.4529 15.2098 -Andale_Mono.ttf 95 X 31.0946 40.5833 98 ¢ 5.0512 23.6474 41.2224 -Andale_Mono.ttf 95 X 31.0946 40.5833 99 Z 0.1073 24.3684 40.5833 -Andale_Mono.ttf 95 X 31.0946 40.5833 100 > 5.5304 21.2279 29.2098 -Andale_Mono.ttf 95 X 31.0946 40.5833 101 ® -0.3876 35.0793 34.5652 -Andale_Mono.ttf 95 X 31.0946 40.5833 102 © -0.1632 35.0793 34.5652 -Andale_Mono.ttf 95 X 31.0946 40.5833 103 ] -0.1701 11.2250 47.8696 -Andale_Mono.ttf 95 X 31.0946 40.5833 104 é -1.2946 25.2250 42.0460 -Andale_Mono.ttf 95 X 31.0946 40.5833 105 z 9.9131 23.1917 30.4195 -Andale_Mono.ttf 95 X 31.0946 40.5833 106 _ 49.5770 35.0793 3.8362 -Andale_Mono.ttf 95 X 31.0946 40.5833 107 ¥ -0.1575 29.8264 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 1 t -7.6107 22.6445 38.7569 -Andale_Mono.ttf 96 » 25.2250 29.2098 2 h -10.1233 23.0431 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 3 a -0.0207 24.2529 30.8333 -Andale_Mono.ttf 96 » 25.2250 29.2098 4 n -0.1638 23.0431 30.6264 -Andale_Mono.ttf 96 » 25.2250 29.2098 5 P -9.9887 22.8055 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 6 o -0.0989 26.7880 30.8333 -Andale_Mono.ttf 96 » 25.2250 29.2098 7 e -0.1594 25.2250 30.8333 -Andale_Mono.ttf 96 » 25.2250 29.2098 8 : -0.0659 7.2279 30.8333 -Andale_Mono.ttf 96 » 25.2250 29.2098 9 r -0.0327 20.4043 30.6264 -Andale_Mono.ttf 96 » 25.2250 29.2098 10 l -9.8521 20.4167 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 11 i -10.0891 13.3043 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 12 1 -10.1501 21.0793 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 13 | -9.9325 4.1457 51.1917 -Andale_Mono.ttf 96 » 25.2250 29.2098 14 N -10.1327 24.3684 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 15 f -9.9123 22.7449 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 16 g -0.3625 26.2862 42.2069 -Andale_Mono.ttf 96 » 25.2250 29.2098 17 d -9.9820 24.9156 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 18 W -9.5923 32.6598 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 19 s -0.1364 22.4960 30.8333 -Andale_Mono.ttf 96 » 25.2250 29.2098 20 c 0.2108 24.2529 30.8333 -Andale_Mono.ttf 96 » 25.2250 29.2098 21 u 0.2969 23.0431 30.6264 -Andale_Mono.ttf 96 » 25.2250 29.2098 22 3 -10.0478 22.4376 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 23 ~ 11.0500 31.2431 8.4376 -Andale_Mono.ttf 96 » 25.2250 29.2098 24 # -10.1073 29.7261 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 25 O -10.3569 27.4069 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 26 ` -10.7935 12.2739 8.6445 -Andale_Mono.ttf 96 » 25.2250 29.2098 27 @ -9.7565 29.8848 45.6293 -Andale_Mono.ttf 96 » 25.2250 29.2098 28 F -9.9977 21.8334 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 29 S -10.3557 22.6445 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 30 p -0.2868 24.9156 42.2069 -Andale_Mono.ttf 96 » 25.2250 29.2098 31 “ -9.8469 17.6989 13.2460 -Andale_Mono.ttf 96 » 25.2250 29.2098 32 % -10.0478 32.6598 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 33 £ -10.0461 26.7902 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 34 . 23.6332 7.2279 7.2279 -Andale_Mono.ttf 96 » 25.2250 29.2098 35 2 -10.1883 21.9695 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 36 5 -10.1139 22.1304 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 37 m -0.0636 27.6138 30.6264 -Andale_Mono.ttf 96 » 25.2250 29.2098 38 V -9.8656 32.2460 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 39 6 -10.1195 25.4319 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 40 w 0.2031 29.5170 30.4195 -Andale_Mono.ttf 96 » 25.2250 29.2098 41 T -10.0322 29.4710 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 42 M -9.6866 25.2250 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 43 G -10.1017 26.5833 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 44 b -10.0379 24.9156 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 45 9 -10.2315 25.2250 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 46 ; 0.1732 7.2279 36.8514 -Andale_Mono.ttf 96 » 25.2250 29.2098 47 D -10.0264 25.2250 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 48 L -10.0052 21.8334 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 49 y 0.0665 26.6417 42.0000 -Andale_Mono.ttf 96 » 25.2250 29.2098 50 ‘ -10.3261 7.2279 13.2460 -Andale_Mono.ttf 96 » 25.2250 29.2098 51 \ -10.2617 24.4014 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 52 R -10.0418 27.3351 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 53 < -4.5313 21.2279 29.2098 -Andale_Mono.ttf 96 » 25.2250 29.2098 54 4 -9.9810 27.4836 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 55 8 -10.2831 25.7598 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 56 0 -10.1450 26.7880 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 57 A -10.0853 32.2460 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 58 E -9.6676 21.0793 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 59 B -10.0228 25.0765 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 60 v 0.0665 26.4348 30.4195 -Andale_Mono.ttf 96 » 25.2250 29.2098 61 k -10.1425 26.1253 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 62 J -9.9187 19.6627 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 63 U -9.5715 23.0431 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 64 j -10.0657 15.7239 52.3707 -Andale_Mono.ttf 96 » 25.2250 29.2098 65 ( -10.1415 15.2098 49.6141 -Andale_Mono.ttf 96 » 25.2250 29.2098 66 7 -10.0638 23.7080 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 67 § -10.1526 23.8543 52.5776 -Andale_Mono.ttf 96 » 25.2250 29.2098 68 $ -12.7633 22.6445 47.0152 -Andale_Mono.ttf 96 » 25.2250 29.2098 69 € -10.4165 30.5474 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 70 / -10.1684 24.4014 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 71 C -10.1216 26.7112 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 72 * -9.9019 20.1184 22.4376 -Andale_Mono.ttf 96 » 25.2250 29.2098 73 ” -10.3651 17.6989 13.2460 -Andale_Mono.ttf 96 » 25.2250 29.2098 74 ? -10.0287 20.5652 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 75 { -9.8626 15.8848 50.4376 -Andale_Mono.ttf 96 » 25.2250 29.2098 76 } -9.7027 15.8848 50.4376 -Andale_Mono.ttf 96 » 25.2250 29.2098 77 , 23.6082 7.2279 13.2460 -Andale_Mono.ttf 96 » 25.2250 29.2098 78 I -9.7969 17.9971 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 79 ° -10.3048 15.7261 15.7261 -Andale_Mono.ttf 96 » 25.2250 29.2098 80 K -10.0787 28.2377 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 81 H -9.8621 23.0431 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 82 q 0.0423 24.9156 42.2069 -Andale_Mono.ttf 96 » 25.2250 29.2098 83 & -10.2191 32.6598 40.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 84 ’ -10.3213 7.2279 13.2460 -Andale_Mono.ttf 96 » 25.2250 29.2098 85 [ -10.0633 11.2250 47.8696 -Andale_Mono.ttf 96 » 25.2250 29.2098 86 - 12.5729 16.9359 4.1457 -Andale_Mono.ttf 96 » 25.2250 29.2098 87 Y -10.2235 29.8264 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 88 Q -9.8427 28.6167 47.7692 -Andale_Mono.ttf 96 » 25.2250 29.2098 89 " -10.0576 14.9239 15.2098 -Andale_Mono.ttf 96 » 25.2250 29.2098 90 ! -9.8715 7.2279 40.7902 -Andale_Mono.ttf 96 » 25.2250 29.2098 91 x 0.1862 26.2739 30.4195 -Andale_Mono.ttf 96 » 25.2250 29.2098 92 ) -10.1218 15.2098 49.6141 -Andale_Mono.ttf 96 » 25.2250 29.2098 93 = 2.3351 27.1098 15.2098 -Andale_Mono.ttf 96 » 25.2250 29.2098 94 + -3.1759 26.9971 26.9971 -Andale_Mono.ttf 96 » 25.2250 29.2098 95 X -10.0147 31.0946 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 96 » 0.1607 25.2250 29.2098 -Andale_Mono.ttf 96 » 25.2250 29.2098 97 ' -9.9843 4.4529 15.2098 -Andale_Mono.ttf 96 » 25.2250 29.2098 98 ¢ -5.3307 23.6474 41.2224 -Andale_Mono.ttf 96 » 25.2250 29.2098 99 Z -9.9774 24.3684 40.5833 -Andale_Mono.ttf 96 » 25.2250 29.2098 100 > -4.4646 21.2279 29.2098 -Andale_Mono.ttf 96 » 25.2250 29.2098 101 ® -10.4431 35.0793 34.5652 -Andale_Mono.ttf 96 » 25.2250 29.2098 102 © -10.3339 35.0793 34.5652 -Andale_Mono.ttf 96 » 25.2250 29.2098 103 ] -10.0746 11.2250 47.8696 -Andale_Mono.ttf 96 » 25.2250 29.2098 104 é -11.2994 25.2250 42.0460 -Andale_Mono.ttf 96 » 25.2250 29.2098 105 z -0.2218 23.1917 30.4195 -Andale_Mono.ttf 96 » 25.2250 29.2098 106 _ 39.6462 35.0793 3.8362 -Andale_Mono.ttf 96 » 25.2250 29.2098 107 ¥ -9.9288 29.8264 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 1 t 2.1488 22.6445 38.7569 -Andale_Mono.ttf 97 ' 4.4529 15.2098 2 h -0.0125 23.0431 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 3 a 9.9580 24.2529 30.8333 -Andale_Mono.ttf 97 ' 4.4529 15.2098 4 n 9.5521 23.0431 30.6264 -Andale_Mono.ttf 97 ' 4.4529 15.2098 5 P -0.0793 22.8055 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 6 o 10.0665 26.7880 30.8333 -Andale_Mono.ttf 97 ' 4.4529 15.2098 7 e 9.7144 25.2250 30.8333 -Andale_Mono.ttf 97 ' 4.4529 15.2098 8 : 10.0494 7.2279 30.8333 -Andale_Mono.ttf 97 ' 4.4529 15.2098 9 r 9.9086 20.4043 30.6264 -Andale_Mono.ttf 97 ' 4.4529 15.2098 10 l -0.1615 20.4167 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 11 i -0.6128 13.3043 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 12 1 -0.1201 21.0793 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 13 | -0.0446 4.1457 51.1917 -Andale_Mono.ttf 97 ' 4.4529 15.2098 14 N -0.1320 24.3684 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 15 f 0.0630 22.7449 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 16 g 10.0065 26.2862 42.2069 -Andale_Mono.ttf 97 ' 4.4529 15.2098 17 d 0.0609 24.9156 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 18 W -0.1692 32.6598 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 19 s 9.8741 22.4960 30.8333 -Andale_Mono.ttf 97 ' 4.4529 15.2098 20 c 9.9299 24.2529 30.8333 -Andale_Mono.ttf 97 ' 4.4529 15.2098 21 u 10.1247 23.0431 30.6264 -Andale_Mono.ttf 97 ' 4.4529 15.2098 22 3 0.0284 22.4376 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 23 ~ 20.9988 31.2431 8.4376 -Andale_Mono.ttf 97 ' 4.4529 15.2098 24 # 0.2040 29.7261 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 25 O -0.0556 27.4069 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 26 ` -1.5286 12.2739 8.6445 -Andale_Mono.ttf 97 ' 4.4529 15.2098 27 @ -0.2642 29.8848 45.6293 -Andale_Mono.ttf 97 ' 4.4529 15.2098 28 F 0.3414 21.8334 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 29 S -0.1339 22.6445 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 30 p 9.5542 24.9156 42.2069 -Andale_Mono.ttf 97 ' 4.4529 15.2098 31 “ -0.2396 17.6989 13.2460 -Andale_Mono.ttf 97 ' 4.4529 15.2098 32 % -0.2329 32.6598 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 33 £ -0.2220 26.7902 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 34 . 33.4738 7.2279 7.2279 -Andale_Mono.ttf 97 ' 4.4529 15.2098 35 2 -0.2239 21.9695 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 36 5 -0.2121 22.1304 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 37 m 10.2088 27.6138 30.6264 -Andale_Mono.ttf 97 ' 4.4529 15.2098 38 V 0.0615 32.2460 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 39 6 -0.0274 25.4319 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 40 w 10.1638 29.5170 30.4195 -Andale_Mono.ttf 97 ' 4.4529 15.2098 41 T 0.3270 29.4710 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 42 M -0.1732 25.2250 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 43 G -0.2075 26.5833 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 44 b 0.1393 24.9156 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 45 9 -0.0665 25.2250 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 46 ; 9.7937 7.2279 36.8514 -Andale_Mono.ttf 97 ' 4.4529 15.2098 47 D 0.0590 25.2250 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 48 L -0.0500 21.8334 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 49 y 10.3186 26.6417 42.0000 -Andale_Mono.ttf 97 ' 4.4529 15.2098 50 ‘ -0.4401 7.2279 13.2460 -Andale_Mono.ttf 97 ' 4.4529 15.2098 51 \ -0.2019 24.4014 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 52 R -0.2009 27.3351 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 53 < 5.5787 21.2279 29.2098 -Andale_Mono.ttf 97 ' 4.4529 15.2098 54 4 0.1494 27.4836 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 55 8 -0.0940 25.7598 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 56 0 -0.2163 26.7880 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 57 A -0.0155 32.2460 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 58 E -0.1055 21.0793 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 59 B -0.0747 25.0765 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 60 v 9.8791 26.4348 30.4195 -Andale_Mono.ttf 97 ' 4.4529 15.2098 61 k -0.1749 26.1253 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 62 J 0.0345 19.6627 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 63 U 0.0111 23.0431 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 64 j -0.3515 15.7239 52.3707 -Andale_Mono.ttf 97 ' 4.4529 15.2098 65 ( -0.4531 15.2098 49.6141 -Andale_Mono.ttf 97 ' 4.4529 15.2098 66 7 -0.1293 23.7080 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 67 § -0.1322 23.8543 52.5776 -Andale_Mono.ttf 97 ' 4.4529 15.2098 68 $ -2.9465 22.6445 47.0152 -Andale_Mono.ttf 97 ' 4.4529 15.2098 69 € -0.0055 30.5474 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 70 / -0.0217 24.4014 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 71 C -0.4585 26.7112 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 72 * -0.2586 20.1184 22.4376 -Andale_Mono.ttf 97 ' 4.4529 15.2098 73 ” -0.3261 17.6989 13.2460 -Andale_Mono.ttf 97 ' 4.4529 15.2098 74 ? -0.3841 20.5652 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 75 { -0.2131 15.8848 50.4376 -Andale_Mono.ttf 97 ' 4.4529 15.2098 76 } 0.0439 15.8848 50.4376 -Andale_Mono.ttf 97 ' 4.4529 15.2098 77 , 33.7194 7.2279 13.2460 -Andale_Mono.ttf 97 ' 4.4529 15.2098 78 I -0.2824 17.9971 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 79 ° -0.1862 15.7261 15.7261 -Andale_Mono.ttf 97 ' 4.4529 15.2098 80 K 0.0260 28.2377 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 81 H 0.0192 23.0431 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 82 q 10.0862 24.9156 42.2069 -Andale_Mono.ttf 97 ' 4.4529 15.2098 83 & -0.3569 32.6598 40.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 84 ’ -0.1094 7.2279 13.2460 -Andale_Mono.ttf 97 ' 4.4529 15.2098 85 [ -0.0147 11.2250 47.8696 -Andale_Mono.ttf 97 ' 4.4529 15.2098 86 - 22.3089 16.9359 4.1457 -Andale_Mono.ttf 97 ' 4.4529 15.2098 87 Y 0.0483 29.8264 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 88 Q -0.1627 28.6167 47.7692 -Andale_Mono.ttf 97 ' 4.4529 15.2098 89 " 0.0211 14.9239 15.2098 -Andale_Mono.ttf 97 ' 4.4529 15.2098 90 ! -0.1827 7.2279 40.7902 -Andale_Mono.ttf 97 ' 4.4529 15.2098 91 x 10.4981 26.2739 30.4195 -Andale_Mono.ttf 97 ' 4.4529 15.2098 92 ) -0.0400 15.2098 49.6141 -Andale_Mono.ttf 97 ' 4.4529 15.2098 93 = 12.4948 27.1098 15.2098 -Andale_Mono.ttf 97 ' 4.4529 15.2098 94 + 6.5468 26.9971 26.9971 -Andale_Mono.ttf 97 ' 4.4529 15.2098 95 X -0.2268 31.0946 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 96 » 9.9310 25.2250 29.2098 -Andale_Mono.ttf 97 ' 4.4529 15.2098 97 ' -0.0870 4.4529 15.2098 -Andale_Mono.ttf 97 ' 4.4529 15.2098 98 ¢ 4.5516 23.6474 41.2224 -Andale_Mono.ttf 97 ' 4.4529 15.2098 99 Z 0.2586 24.3684 40.5833 -Andale_Mono.ttf 97 ' 4.4529 15.2098 100 > 5.6660 21.2279 29.2098 -Andale_Mono.ttf 97 ' 4.4529 15.2098 101 ® -0.2132 35.0793 34.5652 -Andale_Mono.ttf 97 ' 4.4529 15.2098 102 © -0.2816 35.0793 34.5652 -Andale_Mono.ttf 97 ' 4.4529 15.2098 103 ] -0.0376 11.2250 47.8696 -Andale_Mono.ttf 97 ' 4.4529 15.2098 104 é -1.2069 25.2250 42.0460 -Andale_Mono.ttf 97 ' 4.4529 15.2098 105 z 10.2833 23.1917 30.4195 -Andale_Mono.ttf 97 ' 4.4529 15.2098 106 _ 49.6174 35.0793 3.8362 -Andale_Mono.ttf 97 ' 4.4529 15.2098 107 ¥ -0.0609 29.8264 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 1 t -2.6348 22.6445 38.7569 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 2 h -4.8974 23.0431 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 3 a 5.0590 24.2529 30.8333 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 4 n 5.4271 23.0431 30.6264 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 5 P -4.7672 22.8055 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 6 o 5.4133 26.7880 30.8333 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 7 e 5.0281 25.2250 30.8333 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 8 : 5.0759 7.2279 30.8333 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 9 r 5.0748 20.4043 30.6264 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 10 l -4.9050 20.4167 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 11 i -5.0628 13.3043 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 12 1 -4.9567 21.0793 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 13 | -5.3405 4.1457 51.1917 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 14 N -4.8504 24.3684 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 15 f -4.7198 22.7449 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 16 g 5.0934 26.2862 42.2069 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 17 d -4.8501 24.9156 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 18 W -4.7296 32.6598 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 19 s 5.2304 22.4960 30.8333 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 20 c 5.2850 24.2529 30.8333 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 21 u 5.5128 23.0431 30.6264 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 22 3 -5.1361 22.4376 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 23 ~ 16.5733 31.2431 8.4376 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 24 # -4.9011 29.7261 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 25 O -5.1031 27.4069 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 26 ` -5.8034 12.2739 8.6445 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 27 @ -5.2691 29.8848 45.6293 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 28 F -4.7549 21.8334 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 29 S -5.0790 22.6445 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 30 p 5.0277 24.9156 42.2069 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 31 “ -4.7165 17.6989 13.2460 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 32 % -4.8078 32.6598 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 33 £ -5.0608 26.7902 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 34 . 28.4699 7.2279 7.2279 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 35 2 -5.0154 21.9695 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 36 5 -4.8139 22.1304 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 37 m 5.3121 27.6138 30.6264 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 38 V -4.5636 32.2460 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 39 6 -4.8776 25.4319 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 40 w 5.3903 29.5170 30.4195 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 41 T -4.6587 29.4710 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 42 M -4.7047 25.2250 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 43 G -4.9882 26.5833 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 44 b -4.8026 24.9156 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 45 9 -5.0578 25.2250 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 46 ; 5.3189 7.2279 36.8514 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 47 D -4.9859 25.2250 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 48 L -4.8794 21.8334 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 49 y 5.6261 26.6417 42.0000 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 50 ‘ -5.2945 7.2279 13.2460 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 51 \ -4.9863 24.4014 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 52 R -4.9028 27.3351 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 53 < 0.7268 21.2279 29.2098 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 54 4 -4.7730 27.4836 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 55 8 -4.9267 25.7598 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 56 0 -4.8520 26.7880 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 57 A -4.8867 32.2460 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 58 E -4.8890 21.0793 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 59 B -4.7986 25.0765 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 60 v 5.5392 26.4348 30.4195 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 61 k -4.6336 26.1253 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 62 J -4.7968 19.6627 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 63 U -4.9945 23.0431 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 64 j -5.0382 15.7239 52.3707 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 65 ( -4.7621 15.2098 49.6141 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 66 7 -4.9054 23.7080 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 67 § -4.7639 23.8543 52.5776 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 68 $ -7.8758 22.6445 47.0152 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 69 € -4.9137 30.5474 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 70 / -5.1710 24.4014 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 71 C -4.8727 26.7112 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 72 * -4.7496 20.1184 22.4376 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 73 ” -4.8855 17.6989 13.2460 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 74 ? -5.0727 20.5652 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 75 { -5.0183 15.8848 50.4376 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 76 } -4.4644 15.8848 50.4376 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 77 , 29.0121 7.2279 13.2460 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 78 I -4.7434 17.9971 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 79 ° -4.9317 15.7261 15.7261 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 80 K -4.8903 28.2377 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 81 H -4.8174 23.0431 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 82 q 5.1945 24.9156 42.2069 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 83 & -5.0735 32.6598 40.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 84 ’ -5.1782 7.2279 13.2460 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 85 [ -4.8067 11.2250 47.8696 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 86 - 17.7114 16.9359 4.1457 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 87 Y -4.6023 29.8264 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 88 Q -5.0717 28.6167 47.7692 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 89 " -5.0961 14.9239 15.2098 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 90 ! -4.7667 7.2279 40.7902 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 91 x 5.1530 26.2739 30.4195 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 92 ) -4.6392 15.2098 49.6141 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 93 = 7.7432 27.1098 15.2098 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 94 + 1.8950 26.9971 26.9971 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 95 X -4.6495 31.0946 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 96 » 5.0679 25.2250 29.2098 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 97 ' -4.6217 4.4529 15.2098 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 98 ¢ 0.1297 23.6474 41.2224 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 99 Z -4.7641 24.3684 40.5833 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 100 > 0.5748 21.2279 29.2098 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 101 ® -5.1900 35.0793 34.5652 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 102 © -5.0440 35.0793 34.5652 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 103 ] -5.0685 11.2250 47.8696 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 104 é -5.9196 25.2250 42.0460 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 105 z 5.6733 23.1917 30.4195 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 106 _ 44.7442 35.0793 3.8362 -Andale_Mono.ttf 98 ¢ 23.6474 41.2224 107 ¥ -4.6832 29.8264 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 1 t 2.2270 22.6445 38.7569 -Andale_Mono.ttf 99 Z 24.3684 40.5833 2 h -0.0122 23.0431 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 3 a 9.8256 24.2529 30.8333 -Andale_Mono.ttf 99 Z 24.3684 40.5833 4 n 9.8759 23.0431 30.6264 -Andale_Mono.ttf 99 Z 24.3684 40.5833 5 P 0.0828 22.8055 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 6 o 9.6468 26.7880 30.8333 -Andale_Mono.ttf 99 Z 24.3684 40.5833 7 e 10.0447 25.2250 30.8333 -Andale_Mono.ttf 99 Z 24.3684 40.5833 8 : 9.7517 7.2279 30.8333 -Andale_Mono.ttf 99 Z 24.3684 40.5833 9 r 9.5536 20.4043 30.6264 -Andale_Mono.ttf 99 Z 24.3684 40.5833 10 l -0.0703 20.4167 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 11 i -0.0578 13.3043 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 12 1 -0.4609 21.0793 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 13 | -0.1749 4.1457 51.1917 -Andale_Mono.ttf 99 Z 24.3684 40.5833 14 N -0.0941 24.3684 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 15 f 0.0115 22.7449 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 16 g 9.9416 26.2862 42.2069 -Andale_Mono.ttf 99 Z 24.3684 40.5833 17 d -0.0728 24.9156 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 18 W 0.2144 32.6598 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 19 s 9.9582 22.4960 30.8333 -Andale_Mono.ttf 99 Z 24.3684 40.5833 20 c 9.9060 24.2529 30.8333 -Andale_Mono.ttf 99 Z 24.3684 40.5833 21 u 10.0784 23.0431 30.6264 -Andale_Mono.ttf 99 Z 24.3684 40.5833 22 3 -0.2458 22.4376 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 23 ~ 21.2065 31.2431 8.4376 -Andale_Mono.ttf 99 Z 24.3684 40.5833 24 # -0.0460 29.7261 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 25 O -0.1600 27.4069 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 26 ` -1.2902 12.2739 8.6445 -Andale_Mono.ttf 99 Z 24.3684 40.5833 27 @ -0.3501 29.8848 45.6293 -Andale_Mono.ttf 99 Z 24.3684 40.5833 28 F 0.0063 21.8334 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 29 S -0.0311 22.6445 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 30 p 9.8320 24.9156 42.2069 -Andale_Mono.ttf 99 Z 24.3684 40.5833 31 “ -0.3636 17.6989 13.2460 -Andale_Mono.ttf 99 Z 24.3684 40.5833 32 % -0.1680 32.6598 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 33 £ -0.3983 26.7902 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 34 . 33.3658 7.2279 7.2279 -Andale_Mono.ttf 99 Z 24.3684 40.5833 35 2 -0.3368 21.9695 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 36 5 0.2353 22.1304 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 37 m 9.9197 27.6138 30.6264 -Andale_Mono.ttf 99 Z 24.3684 40.5833 38 V 0.0854 32.2460 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 39 6 0.0083 25.4319 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 40 w 10.1356 29.5170 30.4195 -Andale_Mono.ttf 99 Z 24.3684 40.5833 41 T 0.0859 29.4710 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 42 M -0.0484 25.2250 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 43 G -0.3410 26.5833 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 44 b 0.1086 24.9156 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 45 9 -0.4941 25.2250 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 46 ; 9.8875 7.2279 36.8514 -Andale_Mono.ttf 99 Z 24.3684 40.5833 47 D -0.2517 25.2250 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 48 L 0.0310 21.8334 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 49 y 10.3983 26.6417 42.0000 -Andale_Mono.ttf 99 Z 24.3684 40.5833 50 ‘ -0.2768 7.2279 13.2460 -Andale_Mono.ttf 99 Z 24.3684 40.5833 51 \ -0.2144 24.4014 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 52 R -0.2335 27.3351 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 53 < 5.6754 21.2279 29.2098 -Andale_Mono.ttf 99 Z 24.3684 40.5833 54 4 -0.0509 27.4836 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 55 8 -0.2364 25.7598 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 56 0 0.1023 26.7880 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 57 A -0.2492 32.2460 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 58 E -0.0954 21.0793 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 59 B -0.0415 25.0765 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 60 v 9.9634 26.4348 30.4195 -Andale_Mono.ttf 99 Z 24.3684 40.5833 61 k -0.3414 26.1253 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 62 J 0.1159 19.6627 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 63 U 0.1038 23.0431 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 64 j -0.4087 15.7239 52.3707 -Andale_Mono.ttf 99 Z 24.3684 40.5833 65 ( -0.4602 15.2098 49.6141 -Andale_Mono.ttf 99 Z 24.3684 40.5833 66 7 -0.3249 23.7080 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 67 § -0.2646 23.8543 52.5776 -Andale_Mono.ttf 99 Z 24.3684 40.5833 68 $ -3.1649 22.6445 47.0152 -Andale_Mono.ttf 99 Z 24.3684 40.5833 69 € -0.4103 30.5474 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 70 / -0.1567 24.4014 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 71 C -0.1052 26.7112 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 72 * -0.1646 20.1184 22.4376 -Andale_Mono.ttf 99 Z 24.3684 40.5833 73 ” -0.2006 17.6989 13.2460 -Andale_Mono.ttf 99 Z 24.3684 40.5833 74 ? -0.4567 20.5652 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 75 { -0.0851 15.8848 50.4376 -Andale_Mono.ttf 99 Z 24.3684 40.5833 76 } 0.0806 15.8848 50.4376 -Andale_Mono.ttf 99 Z 24.3684 40.5833 77 , 33.7102 7.2279 13.2460 -Andale_Mono.ttf 99 Z 24.3684 40.5833 78 I 0.0668 17.9971 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 79 ° -0.1102 15.7261 15.7261 -Andale_Mono.ttf 99 Z 24.3684 40.5833 80 K -0.0628 28.2377 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 81 H -0.1270 23.0431 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 82 q 9.9994 24.9156 42.2069 -Andale_Mono.ttf 99 Z 24.3684 40.5833 83 & -0.2525 32.6598 40.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 84 ’ -0.3345 7.2279 13.2460 -Andale_Mono.ttf 99 Z 24.3684 40.5833 85 [ 0.0866 11.2250 47.8696 -Andale_Mono.ttf 99 Z 24.3684 40.5833 86 - 22.1587 16.9359 4.1457 -Andale_Mono.ttf 99 Z 24.3684 40.5833 87 Y -0.2326 29.8264 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 88 Q -0.4994 28.6167 47.7692 -Andale_Mono.ttf 99 Z 24.3684 40.5833 89 " -0.1347 14.9239 15.2098 -Andale_Mono.ttf 99 Z 24.3684 40.5833 90 ! 0.0707 7.2279 40.7902 -Andale_Mono.ttf 99 Z 24.3684 40.5833 91 x 9.9387 26.2739 30.4195 -Andale_Mono.ttf 99 Z 24.3684 40.5833 92 ) -0.4128 15.2098 49.6141 -Andale_Mono.ttf 99 Z 24.3684 40.5833 93 = 12.6925 27.1098 15.2098 -Andale_Mono.ttf 99 Z 24.3684 40.5833 94 + 6.7565 26.9971 26.9971 -Andale_Mono.ttf 99 Z 24.3684 40.5833 95 X 0.2422 31.0946 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 96 » 9.9103 25.2250 29.2098 -Andale_Mono.ttf 99 Z 24.3684 40.5833 97 ' 0.2792 4.4529 15.2098 -Andale_Mono.ttf 99 Z 24.3684 40.5833 98 ¢ 4.7279 23.6474 41.2224 -Andale_Mono.ttf 99 Z 24.3684 40.5833 99 Z 0.1477 24.3684 40.5833 -Andale_Mono.ttf 99 Z 24.3684 40.5833 100 > 5.5206 21.2279 29.2098 -Andale_Mono.ttf 99 Z 24.3684 40.5833 101 ® -0.2180 35.0793 34.5652 -Andale_Mono.ttf 99 Z 24.3684 40.5833 102 © -0.4737 35.0793 34.5652 -Andale_Mono.ttf 99 Z 24.3684 40.5833 103 ] 0.0810 11.2250 47.8696 -Andale_Mono.ttf 99 Z 24.3684 40.5833 104 é -1.4843 25.2250 42.0460 -Andale_Mono.ttf 99 Z 24.3684 40.5833 105 z 10.4282 23.1917 30.4195 -Andale_Mono.ttf 99 Z 24.3684 40.5833 106 _ 49.3705 35.0793 3.8362 -Andale_Mono.ttf 99 Z 24.3684 40.5833 107 ¥ -0.1139 29.8264 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 1 t -3.7017 22.6445 38.7569 -Andale_Mono.ttf 100 > 21.2279 29.2098 2 h -5.6132 23.0431 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 3 a 4.7665 24.2529 30.8333 -Andale_Mono.ttf 100 > 21.2279 29.2098 4 n 4.4952 23.0431 30.6264 -Andale_Mono.ttf 100 > 21.2279 29.2098 5 P -5.6356 22.8055 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 6 o 4.2308 26.7880 30.8333 -Andale_Mono.ttf 100 > 21.2279 29.2098 7 e 4.5102 25.2250 30.8333 -Andale_Mono.ttf 100 > 21.2279 29.2098 8 : 4.7523 7.2279 30.8333 -Andale_Mono.ttf 100 > 21.2279 29.2098 9 r 4.5147 20.4043 30.6264 -Andale_Mono.ttf 100 > 21.2279 29.2098 10 l -5.4552 20.4167 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 11 i -5.7745 13.3043 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 12 1 -5.7166 21.0793 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 13 | -5.7457 4.1457 51.1917 -Andale_Mono.ttf 100 > 21.2279 29.2098 14 N -5.5845 24.3684 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 15 f -5.3893 22.7449 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 16 g 4.2870 26.2862 42.2069 -Andale_Mono.ttf 100 > 21.2279 29.2098 17 d -5.5542 24.9156 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 18 W -5.6199 32.6598 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 19 s 4.1448 22.4960 30.8333 -Andale_Mono.ttf 100 > 21.2279 29.2098 20 c 4.0636 24.2529 30.8333 -Andale_Mono.ttf 100 > 21.2279 29.2098 21 u 4.7211 23.0431 30.6264 -Andale_Mono.ttf 100 > 21.2279 29.2098 22 3 -5.7960 22.4376 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 23 ~ 15.4663 31.2431 8.4376 -Andale_Mono.ttf 100 > 21.2279 29.2098 24 # -5.3865 29.7261 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 25 O -5.8800 27.4069 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 26 ` -6.6908 12.2739 8.6445 -Andale_Mono.ttf 100 > 21.2279 29.2098 27 @ -5.7039 29.8848 45.6293 -Andale_Mono.ttf 100 > 21.2279 29.2098 28 F -5.6625 21.8334 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 29 S -5.6898 22.6445 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 30 p 4.3374 24.9156 42.2069 -Andale_Mono.ttf 100 > 21.2279 29.2098 31 “ -5.6412 17.6989 13.2460 -Andale_Mono.ttf 100 > 21.2279 29.2098 32 % -5.7830 32.6598 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 33 £ -5.4153 26.7902 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 34 . 28.0149 7.2279 7.2279 -Andale_Mono.ttf 100 > 21.2279 29.2098 35 2 -5.8835 21.9695 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 36 5 -5.3908 22.1304 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 37 m 4.4006 27.6138 30.6264 -Andale_Mono.ttf 100 > 21.2279 29.2098 38 V -5.6324 32.2460 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 39 6 -5.7109 25.4319 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 40 w 4.8098 29.5170 30.4195 -Andale_Mono.ttf 100 > 21.2279 29.2098 41 T -5.4982 29.4710 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 42 M -5.7174 25.2250 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 43 G -5.7856 26.5833 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 44 b -5.4802 24.9156 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 45 9 -5.6183 25.2250 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 46 ; 4.6081 7.2279 36.8514 -Andale_Mono.ttf 100 > 21.2279 29.2098 47 D -5.5097 25.2250 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 48 L -5.4404 21.8334 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 49 y 4.3314 26.6417 42.0000 -Andale_Mono.ttf 100 > 21.2279 29.2098 50 ‘ -5.8598 7.2279 13.2460 -Andale_Mono.ttf 100 > 21.2279 29.2098 51 \ -5.8396 24.4014 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 52 R -5.4274 27.3351 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 53 < 0.1695 21.2279 29.2098 -Andale_Mono.ttf 100 > 21.2279 29.2098 54 4 -5.3546 27.4836 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 55 8 -5.5753 25.7598 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 56 0 -5.8697 26.7880 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 57 A -5.6634 32.2460 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 58 E -5.6883 21.0793 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 59 B -5.4477 25.0765 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 60 v 4.8960 26.4348 30.4195 -Andale_Mono.ttf 100 > 21.2279 29.2098 61 k -5.4929 26.1253 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 62 J -5.7937 19.6627 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 63 U -5.5084 23.0431 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 64 j -5.8031 15.7239 52.3707 -Andale_Mono.ttf 100 > 21.2279 29.2098 65 ( -5.6697 15.2098 49.6141 -Andale_Mono.ttf 100 > 21.2279 29.2098 66 7 -5.4582 23.7080 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 67 § -5.6613 23.8543 52.5776 -Andale_Mono.ttf 100 > 21.2279 29.2098 68 $ -8.9761 22.6445 47.0152 -Andale_Mono.ttf 100 > 21.2279 29.2098 69 € -5.8088 30.5474 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 70 / -5.7569 24.4014 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 71 C -5.6317 26.7112 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 72 * -5.6088 20.1184 22.4376 -Andale_Mono.ttf 100 > 21.2279 29.2098 73 ” -5.5916 17.6989 13.2460 -Andale_Mono.ttf 100 > 21.2279 29.2098 74 ? -6.0112 20.5652 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 75 { -5.4651 15.8848 50.4376 -Andale_Mono.ttf 100 > 21.2279 29.2098 76 } -5.3753 15.8848 50.4376 -Andale_Mono.ttf 100 > 21.2279 29.2098 77 , 28.0852 7.2279 13.2460 -Andale_Mono.ttf 100 > 21.2279 29.2098 78 I -5.5962 17.9971 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 79 ° -5.9017 15.7261 15.7261 -Andale_Mono.ttf 100 > 21.2279 29.2098 80 K -5.0203 28.2377 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 81 H -5.3833 23.0431 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 82 q 4.3008 24.9156 42.2069 -Andale_Mono.ttf 100 > 21.2279 29.2098 83 & -5.7963 32.6598 40.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 84 ’ -6.0473 7.2279 13.2460 -Andale_Mono.ttf 100 > 21.2279 29.2098 85 [ -5.3833 11.2250 47.8696 -Andale_Mono.ttf 100 > 21.2279 29.2098 86 - 17.1663 16.9359 4.1457 -Andale_Mono.ttf 100 > 21.2279 29.2098 87 Y -5.8270 29.8264 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 88 Q -5.8036 28.6167 47.7692 -Andale_Mono.ttf 100 > 21.2279 29.2098 89 " -5.7318 14.9239 15.2098 -Andale_Mono.ttf 100 > 21.2279 29.2098 90 ! -5.3860 7.2279 40.7902 -Andale_Mono.ttf 100 > 21.2279 29.2098 91 x 4.6227 26.2739 30.4195 -Andale_Mono.ttf 100 > 21.2279 29.2098 92 ) -5.8107 15.2098 49.6141 -Andale_Mono.ttf 100 > 21.2279 29.2098 93 = 7.1577 27.1098 15.2098 -Andale_Mono.ttf 100 > 21.2279 29.2098 94 + 1.0130 26.9971 26.9971 -Andale_Mono.ttf 100 > 21.2279 29.2098 95 X -5.3302 31.0946 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 96 » 4.3329 25.2250 29.2098 -Andale_Mono.ttf 100 > 21.2279 29.2098 97 ' -5.7869 4.4529 15.2098 -Andale_Mono.ttf 100 > 21.2279 29.2098 98 ¢ -0.8459 23.6474 41.2224 -Andale_Mono.ttf 100 > 21.2279 29.2098 99 Z -5.4199 24.3684 40.5833 -Andale_Mono.ttf 100 > 21.2279 29.2098 100 > -0.1213 21.2279 29.2098 -Andale_Mono.ttf 100 > 21.2279 29.2098 101 ® -5.7153 35.0793 34.5652 -Andale_Mono.ttf 100 > 21.2279 29.2098 102 © -6.1042 35.0793 34.5652 -Andale_Mono.ttf 100 > 21.2279 29.2098 103 ] -5.5559 11.2250 47.8696 -Andale_Mono.ttf 100 > 21.2279 29.2098 104 é -6.8646 25.2250 42.0460 -Andale_Mono.ttf 100 > 21.2279 29.2098 105 z 4.7515 23.1917 30.4195 -Andale_Mono.ttf 100 > 21.2279 29.2098 106 _ 44.3191 35.0793 3.8362 -Andale_Mono.ttf 100 > 21.2279 29.2098 107 ¥ -5.5040 29.8264 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 1 t 2.3163 22.6445 38.7569 -Andale_Mono.ttf 101 ® 35.0793 34.5652 2 h 0.2597 23.0431 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 3 a 10.2712 24.2529 30.8333 -Andale_Mono.ttf 101 ® 35.0793 34.5652 4 n 10.1820 23.0431 30.6264 -Andale_Mono.ttf 101 ® 35.0793 34.5652 5 P -0.2075 22.8055 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 6 o 10.1061 26.7880 30.8333 -Andale_Mono.ttf 101 ® 35.0793 34.5652 7 e 9.8154 25.2250 30.8333 -Andale_Mono.ttf 101 ® 35.0793 34.5652 8 : 10.3159 7.2279 30.8333 -Andale_Mono.ttf 101 ® 35.0793 34.5652 9 r 10.6954 20.4043 30.6264 -Andale_Mono.ttf 101 ® 35.0793 34.5652 10 l 0.3447 20.4167 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 11 i 0.0939 13.3043 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 12 1 0.0185 21.0793 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 13 | 0.3580 4.1457 51.1917 -Andale_Mono.ttf 101 ® 35.0793 34.5652 14 N 0.4294 24.3684 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 15 f 0.1517 22.7449 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 16 g 9.9312 26.2862 42.2069 -Andale_Mono.ttf 101 ® 35.0793 34.5652 17 d 0.4167 24.9156 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 18 W 0.2508 32.6598 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 19 s 10.1274 22.4960 30.8333 -Andale_Mono.ttf 101 ® 35.0793 34.5652 20 c 10.0848 24.2529 30.8333 -Andale_Mono.ttf 101 ® 35.0793 34.5652 21 u 10.0751 23.0431 30.6264 -Andale_Mono.ttf 101 ® 35.0793 34.5652 22 3 -0.1293 22.4376 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 23 ~ 21.2276 31.2431 8.4376 -Andale_Mono.ttf 101 ® 35.0793 34.5652 24 # 0.1894 29.7261 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 25 O 0.0622 27.4069 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 26 ` -1.1584 12.2739 8.6445 -Andale_Mono.ttf 101 ® 35.0793 34.5652 27 @ -0.0398 29.8848 45.6293 -Andale_Mono.ttf 101 ® 35.0793 34.5652 28 F 0.1836 21.8334 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 29 S 0.1833 22.6445 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 30 p 10.0966 24.9156 42.2069 -Andale_Mono.ttf 101 ® 35.0793 34.5652 31 “ -0.0282 17.6989 13.2460 -Andale_Mono.ttf 101 ® 35.0793 34.5652 32 % 0.2441 32.6598 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 33 £ -0.0291 26.7902 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 34 . 34.2212 7.2279 7.2279 -Andale_Mono.ttf 101 ® 35.0793 34.5652 35 2 -0.0932 21.9695 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 36 5 0.3896 22.1304 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 37 m 10.3051 27.6138 30.6264 -Andale_Mono.ttf 101 ® 35.0793 34.5652 38 V 0.4490 32.2460 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 39 6 0.0416 25.4319 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 40 w 10.5609 29.5170 30.4195 -Andale_Mono.ttf 101 ® 35.0793 34.5652 41 T 0.2606 29.4710 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 42 M 0.2977 25.2250 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 43 G 0.1755 26.5833 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 44 b 0.1962 24.9156 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 45 9 0.3069 25.2250 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 46 ; 10.1209 7.2279 36.8514 -Andale_Mono.ttf 101 ® 35.0793 34.5652 47 D 0.0764 25.2250 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 48 L -0.0353 21.8334 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 49 y 10.3613 26.6417 42.0000 -Andale_Mono.ttf 101 ® 35.0793 34.5652 50 ‘ -0.3350 7.2279 13.2460 -Andale_Mono.ttf 101 ® 35.0793 34.5652 51 \ 0.1223 24.4014 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 52 R 0.0113 27.3351 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 53 < 5.7565 21.2279 29.2098 -Andale_Mono.ttf 101 ® 35.0793 34.5652 54 4 0.3272 27.4836 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 55 8 0.1198 25.7598 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 56 0 -0.0371 26.7880 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 57 A 0.1670 32.2460 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 58 E 0.1778 21.0793 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 59 B 0.4005 25.0765 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 60 v 10.2075 26.4348 30.4195 -Andale_Mono.ttf 101 ® 35.0793 34.5652 61 k 0.0909 26.1253 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 62 J 0.4529 19.6627 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 63 U -0.0285 23.0431 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 64 j 0.1441 15.7239 52.3707 -Andale_Mono.ttf 101 ® 35.0793 34.5652 65 ( -0.2556 15.2098 49.6141 -Andale_Mono.ttf 101 ® 35.0793 34.5652 66 7 0.5276 23.7080 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 67 § -0.1686 23.8543 52.5776 -Andale_Mono.ttf 101 ® 35.0793 34.5652 68 $ -2.8760 22.6445 47.0152 -Andale_Mono.ttf 101 ® 35.0793 34.5652 69 € 0.1065 30.5474 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 70 / 0.1609 24.4014 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 71 C 0.0618 26.7112 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 72 * 0.1607 20.1184 22.4376 -Andale_Mono.ttf 101 ® 35.0793 34.5652 73 ” 0.2465 17.6989 13.2460 -Andale_Mono.ttf 101 ® 35.0793 34.5652 74 ? -0.0721 20.5652 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 75 { 0.2449 15.8848 50.4376 -Andale_Mono.ttf 101 ® 35.0793 34.5652 76 } 0.2503 15.8848 50.4376 -Andale_Mono.ttf 101 ® 35.0793 34.5652 77 , 33.9035 7.2279 13.2460 -Andale_Mono.ttf 101 ® 35.0793 34.5652 78 I 0.2182 17.9971 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 79 ° -0.1363 15.7261 15.7261 -Andale_Mono.ttf 101 ® 35.0793 34.5652 80 K 0.2874 28.2377 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 81 H 0.3506 23.0431 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 82 q 10.1075 24.9156 42.2069 -Andale_Mono.ttf 101 ® 35.0793 34.5652 83 & -0.1092 32.6598 40.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 84 ’ 0.1488 7.2279 13.2460 -Andale_Mono.ttf 101 ® 35.0793 34.5652 85 [ 0.3500 11.2250 47.8696 -Andale_Mono.ttf 101 ® 35.0793 34.5652 86 - 22.9228 16.9359 4.1457 -Andale_Mono.ttf 101 ® 35.0793 34.5652 87 Y 0.0123 29.8264 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 88 Q -0.0488 28.6167 47.7692 -Andale_Mono.ttf 101 ® 35.0793 34.5652 89 " 0.2001 14.9239 15.2098 -Andale_Mono.ttf 101 ® 35.0793 34.5652 90 ! 0.6034 7.2279 40.7902 -Andale_Mono.ttf 101 ® 35.0793 34.5652 91 x 10.2510 26.2739 30.4195 -Andale_Mono.ttf 101 ® 35.0793 34.5652 92 ) 0.0236 15.2098 49.6141 -Andale_Mono.ttf 101 ® 35.0793 34.5652 93 = 12.6842 27.1098 15.2098 -Andale_Mono.ttf 101 ® 35.0793 34.5652 94 + 6.7037 26.9971 26.9971 -Andale_Mono.ttf 101 ® 35.0793 34.5652 95 X 0.1009 31.0946 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 96 » 10.2655 25.2250 29.2098 -Andale_Mono.ttf 101 ® 35.0793 34.5652 97 ' 0.0004 4.4529 15.2098 -Andale_Mono.ttf 101 ® 35.0793 34.5652 98 ¢ 4.7514 23.6474 41.2224 -Andale_Mono.ttf 101 ® 35.0793 34.5652 99 Z 0.1703 24.3684 40.5833 -Andale_Mono.ttf 101 ® 35.0793 34.5652 100 > 5.4963 21.2279 29.2098 -Andale_Mono.ttf 101 ® 35.0793 34.5652 101 ® 0.0828 35.0793 34.5652 -Andale_Mono.ttf 101 ® 35.0793 34.5652 102 © -0.2201 35.0793 34.5652 -Andale_Mono.ttf 101 ® 35.0793 34.5652 103 ] 0.5939 11.2250 47.8696 -Andale_Mono.ttf 101 ® 35.0793 34.5652 104 é -1.1143 25.2250 42.0460 -Andale_Mono.ttf 101 ® 35.0793 34.5652 105 z 10.2736 23.1917 30.4195 -Andale_Mono.ttf 101 ® 35.0793 34.5652 106 _ 49.6770 35.0793 3.8362 -Andale_Mono.ttf 101 ® 35.0793 34.5652 107 ¥ 0.0803 29.8264 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 1 t 2.0183 22.6445 38.7569 -Andale_Mono.ttf 102 © 35.0793 34.5652 2 h -0.1493 23.0431 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 3 a 9.9561 24.2529 30.8333 -Andale_Mono.ttf 102 © 35.0793 34.5652 4 n 9.8940 23.0431 30.6264 -Andale_Mono.ttf 102 © 35.0793 34.5652 5 P 0.2565 22.8055 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 6 o 10.0898 26.7880 30.8333 -Andale_Mono.ttf 102 © 35.0793 34.5652 7 e 9.9105 25.2250 30.8333 -Andale_Mono.ttf 102 © 35.0793 34.5652 8 : 10.1103 7.2279 30.8333 -Andale_Mono.ttf 102 © 35.0793 34.5652 9 r 10.1920 20.4043 30.6264 -Andale_Mono.ttf 102 © 35.0793 34.5652 10 l 0.1912 20.4167 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 11 i 0.0218 13.3043 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 12 1 0.1002 21.0793 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 13 | 0.0868 4.1457 51.1917 -Andale_Mono.ttf 102 © 35.0793 34.5652 14 N 0.1438 24.3684 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 15 f 0.2200 22.7449 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 16 g 9.8703 26.2862 42.2069 -Andale_Mono.ttf 102 © 35.0793 34.5652 17 d 0.1400 24.9156 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 18 W 0.1207 32.6598 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 19 s 10.1218 22.4960 30.8333 -Andale_Mono.ttf 102 © 35.0793 34.5652 20 c 9.9540 24.2529 30.8333 -Andale_Mono.ttf 102 © 35.0793 34.5652 21 u 10.5055 23.0431 30.6264 -Andale_Mono.ttf 102 © 35.0793 34.5652 22 3 -0.0496 22.4376 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 23 ~ 21.4097 31.2431 8.4376 -Andale_Mono.ttf 102 © 35.0793 34.5652 24 # 0.0405 29.7261 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 25 O 0.3169 27.4069 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 26 ` -0.6935 12.2739 8.6445 -Andale_Mono.ttf 102 © 35.0793 34.5652 27 @ 0.0031 29.8848 45.6293 -Andale_Mono.ttf 102 © 35.0793 34.5652 28 F 0.1567 21.8334 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 29 S 0.2077 22.6445 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 30 p 10.3571 24.9156 42.2069 -Andale_Mono.ttf 102 © 35.0793 34.5652 31 “ 0.0431 17.6989 13.2460 -Andale_Mono.ttf 102 © 35.0793 34.5652 32 % 0.0703 32.6598 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 33 £ 0.1034 26.7902 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 34 . 33.9988 7.2279 7.2279 -Andale_Mono.ttf 102 © 35.0793 34.5652 35 2 -0.0663 21.9695 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 36 5 0.4370 22.1304 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 37 m 10.3782 27.6138 30.6264 -Andale_Mono.ttf 102 © 35.0793 34.5652 38 V 0.3876 32.2460 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 39 6 0.0741 25.4319 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 40 w 10.4812 29.5170 30.4195 -Andale_Mono.ttf 102 © 35.0793 34.5652 41 T 0.3550 29.4710 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 42 M 0.2525 25.2250 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 43 G 0.2391 26.5833 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 44 b -0.0809 24.9156 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 45 9 -0.0259 25.2250 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 46 ; 10.4156 7.2279 36.8514 -Andale_Mono.ttf 102 © 35.0793 34.5652 47 D 0.1580 25.2250 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 48 L 0.2498 21.8334 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 49 y 9.9308 26.6417 42.0000 -Andale_Mono.ttf 102 © 35.0793 34.5652 50 ‘ -0.1101 7.2279 13.2460 -Andale_Mono.ttf 102 © 35.0793 34.5652 51 \ 0.2188 24.4014 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 52 R 0.3268 27.3351 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 53 < 5.5534 21.2279 29.2098 -Andale_Mono.ttf 102 © 35.0793 34.5652 54 4 0.0032 27.4836 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 55 8 -0.2994 25.7598 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 56 0 0.1590 26.7880 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 57 A 0.3703 32.2460 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 58 E 0.1475 21.0793 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 59 B 0.5067 25.0765 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 60 v 10.2923 26.4348 30.4195 -Andale_Mono.ttf 102 © 35.0793 34.5652 61 k 0.0075 26.1253 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 62 J 0.3406 19.6627 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 63 U -0.0274 23.0431 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 64 j -0.1149 15.7239 52.3707 -Andale_Mono.ttf 102 © 35.0793 34.5652 65 ( -0.1038 15.2098 49.6141 -Andale_Mono.ttf 102 © 35.0793 34.5652 66 7 0.2991 23.7080 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 67 § -0.1575 23.8543 52.5776 -Andale_Mono.ttf 102 © 35.0793 34.5652 68 $ -2.9516 22.6445 47.0152 -Andale_Mono.ttf 102 © 35.0793 34.5652 69 € 0.1180 30.5474 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 70 / 0.0895 24.4014 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 71 C -0.1347 26.7112 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 72 * 0.1950 20.1184 22.4376 -Andale_Mono.ttf 102 © 35.0793 34.5652 73 ” -0.2182 17.6989 13.2460 -Andale_Mono.ttf 102 © 35.0793 34.5652 74 ? 0.0386 20.5652 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 75 { 0.0400 15.8848 50.4376 -Andale_Mono.ttf 102 © 35.0793 34.5652 76 } 0.5540 15.8848 50.4376 -Andale_Mono.ttf 102 © 35.0793 34.5652 77 , 34.0172 7.2279 13.2460 -Andale_Mono.ttf 102 © 35.0793 34.5652 78 I -0.0184 17.9971 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 79 ° -0.0524 15.7261 15.7261 -Andale_Mono.ttf 102 © 35.0793 34.5652 80 K 0.2060 28.2377 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 81 H 0.1249 23.0431 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 82 q 9.8663 24.9156 42.2069 -Andale_Mono.ttf 102 © 35.0793 34.5652 83 & 0.0371 32.6598 40.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 84 ’ 0.2193 7.2279 13.2460 -Andale_Mono.ttf 102 © 35.0793 34.5652 85 [ 0.2853 11.2250 47.8696 -Andale_Mono.ttf 102 © 35.0793 34.5652 86 - 22.7681 16.9359 4.1457 -Andale_Mono.ttf 102 © 35.0793 34.5652 87 Y 0.2193 29.8264 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 88 Q 0.1155 28.6167 47.7692 -Andale_Mono.ttf 102 © 35.0793 34.5652 89 " 0.1921 14.9239 15.2098 -Andale_Mono.ttf 102 © 35.0793 34.5652 90 ! 0.2167 7.2279 40.7902 -Andale_Mono.ttf 102 © 35.0793 34.5652 91 x 10.6209 26.2739 30.4195 -Andale_Mono.ttf 102 © 35.0793 34.5652 92 ) 0.2806 15.2098 49.6141 -Andale_Mono.ttf 102 © 35.0793 34.5652 93 = 12.9268 27.1098 15.2098 -Andale_Mono.ttf 102 © 35.0793 34.5652 94 + 6.6899 26.9971 26.9971 -Andale_Mono.ttf 102 © 35.0793 34.5652 95 X 0.4552 31.0946 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 96 » 9.9937 25.2250 29.2098 -Andale_Mono.ttf 102 © 35.0793 34.5652 97 ' 0.6424 4.4529 15.2098 -Andale_Mono.ttf 102 © 35.0793 34.5652 98 ¢ 5.1388 23.6474 41.2224 -Andale_Mono.ttf 102 © 35.0793 34.5652 99 Z 0.0869 24.3684 40.5833 -Andale_Mono.ttf 102 © 35.0793 34.5652 100 > 5.4272 21.2279 29.2098 -Andale_Mono.ttf 102 © 35.0793 34.5652 101 ® 0.2460 35.0793 34.5652 -Andale_Mono.ttf 102 © 35.0793 34.5652 102 © 0.2918 35.0793 34.5652 -Andale_Mono.ttf 102 © 35.0793 34.5652 103 ] 0.5269 11.2250 47.8696 -Andale_Mono.ttf 102 © 35.0793 34.5652 104 é -0.9594 25.2250 42.0460 -Andale_Mono.ttf 102 © 35.0793 34.5652 105 z 10.1667 23.1917 30.4195 -Andale_Mono.ttf 102 © 35.0793 34.5652 106 _ 49.7538 35.0793 3.8362 -Andale_Mono.ttf 102 © 35.0793 34.5652 107 ¥ 0.1264 29.8264 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 1 t 1.8948 22.6445 38.7569 -Andale_Mono.ttf 103 ] 11.2250 47.8696 2 h 0.0609 23.0431 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 3 a 10.1085 24.2529 30.8333 -Andale_Mono.ttf 103 ] 11.2250 47.8696 4 n 10.2699 23.0431 30.6264 -Andale_Mono.ttf 103 ] 11.2250 47.8696 5 P -0.0245 22.8055 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 6 o 9.8465 26.7880 30.8333 -Andale_Mono.ttf 103 ] 11.2250 47.8696 7 e 9.9148 25.2250 30.8333 -Andale_Mono.ttf 103 ] 11.2250 47.8696 8 : 9.9940 7.2279 30.8333 -Andale_Mono.ttf 103 ] 11.2250 47.8696 9 r 10.0687 20.4043 30.6264 -Andale_Mono.ttf 103 ] 11.2250 47.8696 10 l -0.3222 20.4167 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 11 i -0.4431 13.3043 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 12 1 -0.5506 21.0793 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 13 | 0.0434 4.1457 51.1917 -Andale_Mono.ttf 103 ] 11.2250 47.8696 14 N -0.1002 24.3684 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 15 f -0.0086 22.7449 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 16 g 9.8011 26.2862 42.2069 -Andale_Mono.ttf 103 ] 11.2250 47.8696 17 d 0.2431 24.9156 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 18 W 0.0922 32.6598 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 19 s 9.8483 22.4960 30.8333 -Andale_Mono.ttf 103 ] 11.2250 47.8696 20 c 10.0906 24.2529 30.8333 -Andale_Mono.ttf 103 ] 11.2250 47.8696 21 u 10.5410 23.0431 30.6264 -Andale_Mono.ttf 103 ] 11.2250 47.8696 22 3 -0.4102 22.4376 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 23 ~ 20.7919 31.2431 8.4376 -Andale_Mono.ttf 103 ] 11.2250 47.8696 24 # -0.1620 29.7261 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 25 O -0.2897 27.4069 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 26 ` -1.2575 12.2739 8.6445 -Andale_Mono.ttf 103 ] 11.2250 47.8696 27 @ -0.1630 29.8848 45.6293 -Andale_Mono.ttf 103 ] 11.2250 47.8696 28 F 0.3249 21.8334 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 29 S -0.1416 22.6445 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 30 p 10.1707 24.9156 42.2069 -Andale_Mono.ttf 103 ] 11.2250 47.8696 31 “ -0.0722 17.6989 13.2460 -Andale_Mono.ttf 103 ] 11.2250 47.8696 32 % 0.0289 32.6598 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 33 £ -0.3801 26.7902 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 34 . 33.6428 7.2279 7.2279 -Andale_Mono.ttf 103 ] 11.2250 47.8696 35 2 -0.2025 21.9695 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 36 5 -0.1437 22.1304 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 37 m 10.1248 27.6138 30.6264 -Andale_Mono.ttf 103 ] 11.2250 47.8696 38 V -0.0534 32.2460 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 39 6 -0.2075 25.4319 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 40 w 10.2191 29.5170 30.4195 -Andale_Mono.ttf 103 ] 11.2250 47.8696 41 T -0.1690 29.4710 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 42 M -0.0327 25.2250 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 43 G -0.2484 26.5833 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 44 b -0.1266 24.9156 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 45 9 -0.3500 25.2250 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 46 ; 9.7243 7.2279 36.8514 -Andale_Mono.ttf 103 ] 11.2250 47.8696 47 D -0.0789 25.2250 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 48 L 0.1866 21.8334 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 49 y 9.8749 26.6417 42.0000 -Andale_Mono.ttf 103 ] 11.2250 47.8696 50 ‘ 0.0460 7.2279 13.2460 -Andale_Mono.ttf 103 ] 11.2250 47.8696 51 \ -0.0069 24.4014 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 52 R 0.0044 27.3351 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 53 < 5.5918 21.2279 29.2098 -Andale_Mono.ttf 103 ] 11.2250 47.8696 54 4 0.0000 27.4836 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 55 8 -0.3738 25.7598 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 56 0 -0.2207 26.7880 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 57 A 0.2703 32.2460 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 58 E 0.1585 21.0793 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 59 B 0.1324 25.0765 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 60 v 10.2593 26.4348 30.4195 -Andale_Mono.ttf 103 ] 11.2250 47.8696 61 k -0.0247 26.1253 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 62 J 0.1611 19.6627 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 63 U 0.1404 23.0431 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 64 j 0.0058 15.7239 52.3707 -Andale_Mono.ttf 103 ] 11.2250 47.8696 65 ( -0.0337 15.2098 49.6141 -Andale_Mono.ttf 103 ] 11.2250 47.8696 66 7 -0.0166 23.7080 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 67 § -0.2427 23.8543 52.5776 -Andale_Mono.ttf 103 ] 11.2250 47.8696 68 $ -2.9868 22.6445 47.0152 -Andale_Mono.ttf 103 ] 11.2250 47.8696 69 € -0.4008 30.5474 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 70 / -0.5801 24.4014 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 71 C -0.0606 26.7112 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 72 * 0.0021 20.1184 22.4376 -Andale_Mono.ttf 103 ] 11.2250 47.8696 73 ” -0.1644 17.6989 13.2460 -Andale_Mono.ttf 103 ] 11.2250 47.8696 74 ? -0.1810 20.5652 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 75 { 0.0439 15.8848 50.4376 -Andale_Mono.ttf 103 ] 11.2250 47.8696 76 } 0.0054 15.8848 50.4376 -Andale_Mono.ttf 103 ] 11.2250 47.8696 77 , 33.6455 7.2279 13.2460 -Andale_Mono.ttf 103 ] 11.2250 47.8696 78 I -0.1701 17.9971 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 79 ° -0.1083 15.7261 15.7261 -Andale_Mono.ttf 103 ] 11.2250 47.8696 80 K 0.2121 28.2377 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 81 H 0.0632 23.0431 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 82 q 9.7994 24.9156 42.2069 -Andale_Mono.ttf 103 ] 11.2250 47.8696 83 & -0.1586 32.6598 40.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 84 ’ -0.0431 7.2279 13.2460 -Andale_Mono.ttf 103 ] 11.2250 47.8696 85 [ -0.1967 11.2250 47.8696 -Andale_Mono.ttf 103 ] 11.2250 47.8696 86 - 22.5442 16.9359 4.1457 -Andale_Mono.ttf 103 ] 11.2250 47.8696 87 Y 0.2057 29.8264 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 88 Q -0.2542 28.6167 47.7692 -Andale_Mono.ttf 103 ] 11.2250 47.8696 89 " 0.0647 14.9239 15.2098 -Andale_Mono.ttf 103 ] 11.2250 47.8696 90 ! 0.0144 7.2279 40.7902 -Andale_Mono.ttf 103 ] 11.2250 47.8696 91 x 10.0828 26.2739 30.4195 -Andale_Mono.ttf 103 ] 11.2250 47.8696 92 ) -0.0940 15.2098 49.6141 -Andale_Mono.ttf 103 ] 11.2250 47.8696 93 = 12.6755 27.1098 15.2098 -Andale_Mono.ttf 103 ] 11.2250 47.8696 94 + 6.8127 26.9971 26.9971 -Andale_Mono.ttf 103 ] 11.2250 47.8696 95 X 0.1638 31.0946 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 96 » 10.1194 25.2250 29.2098 -Andale_Mono.ttf 103 ] 11.2250 47.8696 97 ' 0.0695 4.4529 15.2098 -Andale_Mono.ttf 103 ] 11.2250 47.8696 98 ¢ 4.8568 23.6474 41.2224 -Andale_Mono.ttf 103 ] 11.2250 47.8696 99 Z 0.0869 24.3684 40.5833 -Andale_Mono.ttf 103 ] 11.2250 47.8696 100 > 5.3860 21.2279 29.2098 -Andale_Mono.ttf 103 ] 11.2250 47.8696 101 ® -0.2825 35.0793 34.5652 -Andale_Mono.ttf 103 ] 11.2250 47.8696 102 © -0.4052 35.0793 34.5652 -Andale_Mono.ttf 103 ] 11.2250 47.8696 103 ] 0.0408 11.2250 47.8696 -Andale_Mono.ttf 103 ] 11.2250 47.8696 104 é -1.3850 25.2250 42.0460 -Andale_Mono.ttf 103 ] 11.2250 47.8696 105 z 9.9969 23.1917 30.4195 -Andale_Mono.ttf 103 ] 11.2250 47.8696 106 _ 49.5731 35.0793 3.8362 -Andale_Mono.ttf 103 ] 11.2250 47.8696 107 ¥ -0.2054 29.8264 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 1 t 3.4887 22.6445 38.7569 -Andale_Mono.ttf 104 é 25.2250 42.0460 2 h 1.1552 23.0431 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 3 a 11.1057 24.2529 30.8333 -Andale_Mono.ttf 104 é 25.2250 42.0460 4 n 11.3090 23.0431 30.6264 -Andale_Mono.ttf 104 é 25.2250 42.0460 5 P 1.2213 22.8055 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 6 o 11.0548 26.7880 30.8333 -Andale_Mono.ttf 104 é 25.2250 42.0460 7 e 11.2069 25.2250 30.8333 -Andale_Mono.ttf 104 é 25.2250 42.0460 8 : 11.3329 7.2279 30.8333 -Andale_Mono.ttf 104 é 25.2250 42.0460 9 r 10.6922 20.4043 30.6264 -Andale_Mono.ttf 104 é 25.2250 42.0460 10 l 1.1408 20.4167 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 11 i 1.1289 13.3043 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 12 1 0.8504 21.0793 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 13 | 1.5051 4.1457 51.1917 -Andale_Mono.ttf 104 é 25.2250 42.0460 14 N 1.3649 24.3684 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 15 f 1.4508 22.7449 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 16 g 11.3732 26.2862 42.2069 -Andale_Mono.ttf 104 é 25.2250 42.0460 17 d 0.9590 24.9156 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 18 W 1.2638 32.6598 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 19 s 11.0590 22.4960 30.8333 -Andale_Mono.ttf 104 é 25.2250 42.0460 20 c 11.1008 24.2529 30.8333 -Andale_Mono.ttf 104 é 25.2250 42.0460 21 u 11.6378 23.0431 30.6264 -Andale_Mono.ttf 104 é 25.2250 42.0460 22 3 1.0391 22.4376 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 23 ~ 22.4620 31.2431 8.4376 -Andale_Mono.ttf 104 é 25.2250 42.0460 24 # 1.3230 29.7261 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 25 O 1.3513 27.4069 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 26 ` 0.1794 12.2739 8.6445 -Andale_Mono.ttf 104 é 25.2250 42.0460 27 @ 1.1299 29.8848 45.6293 -Andale_Mono.ttf 104 é 25.2250 42.0460 28 F 1.3713 21.8334 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 29 S 0.5266 22.6445 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 30 p 11.4317 24.9156 42.2069 -Andale_Mono.ttf 104 é 25.2250 42.0460 31 “ 1.2811 17.6989 13.2460 -Andale_Mono.ttf 104 é 25.2250 42.0460 32 % 1.0546 32.6598 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 33 £ 1.1440 26.7902 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 34 . 34.9503 7.2279 7.2279 -Andale_Mono.ttf 104 é 25.2250 42.0460 35 2 0.8555 21.9695 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 36 5 1.1175 22.1304 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 37 m 11.1738 27.6138 30.6264 -Andale_Mono.ttf 104 é 25.2250 42.0460 38 V 0.9600 32.2460 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 39 6 1.0374 25.4319 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 40 w 11.5238 29.5170 30.4195 -Andale_Mono.ttf 104 é 25.2250 42.0460 41 T 1.5272 29.4710 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 42 M 1.1430 25.2250 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 43 G 0.7961 26.5833 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 44 b 1.1708 24.9156 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 45 9 1.0170 25.2250 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 46 ; 11.0069 7.2279 36.8514 -Andale_Mono.ttf 104 é 25.2250 42.0460 47 D 1.4101 25.2250 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 48 L 1.0701 21.8334 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 49 y 11.5364 26.6417 42.0000 -Andale_Mono.ttf 104 é 25.2250 42.0460 50 ‘ 0.6412 7.2279 13.2460 -Andale_Mono.ttf 104 é 25.2250 42.0460 51 \ 0.6918 24.4014 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 52 R 1.0893 27.3351 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 53 < 6.5038 21.2279 29.2098 -Andale_Mono.ttf 104 é 25.2250 42.0460 54 4 1.2558 27.4836 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 55 8 1.2381 25.7598 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 56 0 0.8095 26.7880 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 57 A 1.1937 32.2460 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 58 E 1.3119 21.0793 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 59 B 1.1747 25.0765 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 60 v 11.5080 26.4348 30.4195 -Andale_Mono.ttf 104 é 25.2250 42.0460 61 k 1.1805 26.1253 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 62 J 1.1117 19.6627 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 63 U 1.2463 23.0431 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 64 j 0.7299 15.7239 52.3707 -Andale_Mono.ttf 104 é 25.2250 42.0460 65 ( 1.0532 15.2098 49.6141 -Andale_Mono.ttf 104 é 25.2250 42.0460 66 7 0.9613 23.7080 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 67 § 1.1569 23.8543 52.5776 -Andale_Mono.ttf 104 é 25.2250 42.0460 68 $ -1.5842 22.6445 47.0152 -Andale_Mono.ttf 104 é 25.2250 42.0460 69 € 1.1504 30.5474 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 70 / 1.1303 24.4014 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 71 C 1.1454 26.7112 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 72 * 1.2906 20.1184 22.4376 -Andale_Mono.ttf 104 é 25.2250 42.0460 73 ” 0.8937 17.6989 13.2460 -Andale_Mono.ttf 104 é 25.2250 42.0460 74 ? 1.1290 20.5652 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 75 { 1.4445 15.8848 50.4376 -Andale_Mono.ttf 104 é 25.2250 42.0460 76 } 1.0831 15.8848 50.4376 -Andale_Mono.ttf 104 é 25.2250 42.0460 77 , 34.7986 7.2279 13.2460 -Andale_Mono.ttf 104 é 25.2250 42.0460 78 I 1.1429 17.9971 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 79 ° 1.3377 15.7261 15.7261 -Andale_Mono.ttf 104 é 25.2250 42.0460 80 K 1.0682 28.2377 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 81 H 1.3073 23.0431 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 82 q 11.1825 24.9156 42.2069 -Andale_Mono.ttf 104 é 25.2250 42.0460 83 & 1.1149 32.6598 40.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 84 ’ 1.2914 7.2279 13.2460 -Andale_Mono.ttf 104 é 25.2250 42.0460 85 [ 1.2716 11.2250 47.8696 -Andale_Mono.ttf 104 é 25.2250 42.0460 86 - 23.6290 16.9359 4.1457 -Andale_Mono.ttf 104 é 25.2250 42.0460 87 Y 1.3193 29.8264 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 88 Q 0.8757 28.6167 47.7692 -Andale_Mono.ttf 104 é 25.2250 42.0460 89 " 1.0845 14.9239 15.2098 -Andale_Mono.ttf 104 é 25.2250 42.0460 90 ! 1.4674 7.2279 40.7902 -Andale_Mono.ttf 104 é 25.2250 42.0460 91 x 11.4329 26.2739 30.4195 -Andale_Mono.ttf 104 é 25.2250 42.0460 92 ) 0.9471 15.2098 49.6141 -Andale_Mono.ttf 104 é 25.2250 42.0460 93 = 13.9801 27.1098 15.2098 -Andale_Mono.ttf 104 é 25.2250 42.0460 94 + 7.7001 26.9971 26.9971 -Andale_Mono.ttf 104 é 25.2250 42.0460 95 X 1.2688 31.0946 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 96 » 10.9044 25.2250 29.2098 -Andale_Mono.ttf 104 é 25.2250 42.0460 97 ' 1.1117 4.4529 15.2098 -Andale_Mono.ttf 104 é 25.2250 42.0460 98 ¢ 5.9949 23.6474 41.2224 -Andale_Mono.ttf 104 é 25.2250 42.0460 99 Z 1.3285 24.3684 40.5833 -Andale_Mono.ttf 104 é 25.2250 42.0460 100 > 6.7852 21.2279 29.2098 -Andale_Mono.ttf 104 é 25.2250 42.0460 101 ® 0.8517 35.0793 34.5652 -Andale_Mono.ttf 104 é 25.2250 42.0460 102 © 0.9272 35.0793 34.5652 -Andale_Mono.ttf 104 é 25.2250 42.0460 103 ] 1.4402 11.2250 47.8696 -Andale_Mono.ttf 104 é 25.2250 42.0460 104 é -0.0259 25.2250 42.0460 -Andale_Mono.ttf 104 é 25.2250 42.0460 105 z 11.6513 23.1917 30.4195 -Andale_Mono.ttf 104 é 25.2250 42.0460 106 _ 50.5833 35.0793 3.8362 -Andale_Mono.ttf 104 é 25.2250 42.0460 107 ¥ 1.2169 29.8264 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 1 t -8.2656 22.6445 38.7569 -Andale_Mono.ttf 105 z 23.1917 30.4195 2 h -10.0779 23.0431 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 3 a -0.1264 24.2529 30.8333 -Andale_Mono.ttf 105 z 23.1917 30.4195 4 n -0.0382 23.0431 30.6264 -Andale_Mono.ttf 105 z 23.1917 30.4195 5 P -10.3472 22.8055 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 6 o -0.3801 26.7880 30.8333 -Andale_Mono.ttf 105 z 23.1917 30.4195 7 e -0.4364 25.2250 30.8333 -Andale_Mono.ttf 105 z 23.1917 30.4195 8 : -0.3293 7.2279 30.8333 -Andale_Mono.ttf 105 z 23.1917 30.4195 9 r -0.0816 20.4043 30.6264 -Andale_Mono.ttf 105 z 23.1917 30.4195 10 l -9.9831 20.4167 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 11 i -10.6249 13.3043 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 12 1 -10.7134 21.0793 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 13 | -10.4758 4.1457 51.1917 -Andale_Mono.ttf 105 z 23.1917 30.4195 14 N -10.1749 24.3684 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 15 f -10.2967 22.7449 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 16 g 0.0805 26.2862 42.2069 -Andale_Mono.ttf 105 z 23.1917 30.4195 17 d -10.2766 24.9156 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 18 W -9.8791 32.6598 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 19 s -0.2596 22.4960 30.8333 -Andale_Mono.ttf 105 z 23.1917 30.4195 20 c -0.3314 24.2529 30.8333 -Andale_Mono.ttf 105 z 23.1917 30.4195 21 u 0.0456 23.0431 30.6264 -Andale_Mono.ttf 105 z 23.1917 30.4195 22 3 -10.2602 22.4376 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 23 ~ 11.1161 31.2431 8.4376 -Andale_Mono.ttf 105 z 23.1917 30.4195 24 # -10.0961 29.7261 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 25 O -10.3019 27.4069 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 26 ` -11.4333 12.2739 8.6445 -Andale_Mono.ttf 105 z 23.1917 30.4195 27 @ -10.1837 29.8848 45.6293 -Andale_Mono.ttf 105 z 23.1917 30.4195 28 F -10.1456 21.8334 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 29 S -10.3626 22.6445 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 30 p -0.0278 24.9156 42.2069 -Andale_Mono.ttf 105 z 23.1917 30.4195 31 “ -10.4638 17.6989 13.2460 -Andale_Mono.ttf 105 z 23.1917 30.4195 32 % -10.5684 32.6598 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 33 £ -10.5111 26.7902 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 34 . 23.3407 7.2279 7.2279 -Andale_Mono.ttf 105 z 23.1917 30.4195 35 2 -10.1375 21.9695 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 36 5 -10.2248 22.1304 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 37 m -0.2853 27.6138 30.6264 -Andale_Mono.ttf 105 z 23.1917 30.4195 38 V -10.1118 32.2460 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 39 6 -10.2584 25.4319 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 40 w -0.2265 29.5170 30.4195 -Andale_Mono.ttf 105 z 23.1917 30.4195 41 T -9.9668 29.4710 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 42 M -10.3594 25.2250 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 43 G -10.7577 26.5833 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 44 b -9.8909 24.9156 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 45 9 -10.4360 25.2250 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 46 ; -0.2816 7.2279 36.8514 -Andale_Mono.ttf 105 z 23.1917 30.4195 47 D -10.1129 25.2250 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 48 L -10.5295 21.8334 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 49 y 0.1123 26.6417 42.0000 -Andale_Mono.ttf 105 z 23.1917 30.4195 50 ‘ -10.3475 7.2279 13.2460 -Andale_Mono.ttf 105 z 23.1917 30.4195 51 \ -10.3312 24.4014 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 52 R -10.2259 27.3351 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 53 < -4.6803 21.2279 29.2098 -Andale_Mono.ttf 105 z 23.1917 30.4195 54 4 -10.1118 27.4836 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 55 8 -10.6186 25.7598 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 56 0 -10.3674 26.7880 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 57 A -10.1402 32.2460 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 58 E -10.3726 21.0793 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 59 B -10.0000 25.0765 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 60 v 0.1105 26.4348 30.4195 -Andale_Mono.ttf 105 z 23.1917 30.4195 61 k -10.2077 26.1253 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 62 J -10.2378 19.6627 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 63 U -10.2448 23.0431 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 64 j -10.3827 15.7239 52.3707 -Andale_Mono.ttf 105 z 23.1917 30.4195 65 ( -10.2616 15.2098 49.6141 -Andale_Mono.ttf 105 z 23.1917 30.4195 66 7 -10.2147 23.7080 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 67 § -10.1599 23.8543 52.5776 -Andale_Mono.ttf 105 z 23.1917 30.4195 68 $ -13.0351 22.6445 47.0152 -Andale_Mono.ttf 105 z 23.1917 30.4195 69 € -10.1724 30.5474 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 70 / -10.2870 24.4014 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 71 C -10.2946 26.7112 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 72 * -10.2031 20.1184 22.4376 -Andale_Mono.ttf 105 z 23.1917 30.4195 73 ” -10.2396 17.6989 13.2460 -Andale_Mono.ttf 105 z 23.1917 30.4195 74 ? -10.1716 20.5652 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 75 { -10.0505 15.8848 50.4376 -Andale_Mono.ttf 105 z 23.1917 30.4195 76 } -10.2994 15.8848 50.4376 -Andale_Mono.ttf 105 z 23.1917 30.4195 77 , 23.5529 7.2279 13.2460 -Andale_Mono.ttf 105 z 23.1917 30.4195 78 I -10.4404 17.9971 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 79 ° -10.6472 15.7261 15.7261 -Andale_Mono.ttf 105 z 23.1917 30.4195 80 K -10.0301 28.2377 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 81 H -10.0201 23.0431 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 82 q -0.2233 24.9156 42.2069 -Andale_Mono.ttf 105 z 23.1917 30.4195 83 & -10.2569 32.6598 40.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 84 ’ -10.0597 7.2279 13.2460 -Andale_Mono.ttf 105 z 23.1917 30.4195 85 [ -10.1726 11.2250 47.8696 -Andale_Mono.ttf 105 z 23.1917 30.4195 86 - 12.3116 16.9359 4.1457 -Andale_Mono.ttf 105 z 23.1917 30.4195 87 Y -10.3620 29.8264 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 88 Q -10.1269 28.6167 47.7692 -Andale_Mono.ttf 105 z 23.1917 30.4195 89 " -10.4492 14.9239 15.2098 -Andale_Mono.ttf 105 z 23.1917 30.4195 90 ! -10.3037 7.2279 40.7902 -Andale_Mono.ttf 105 z 23.1917 30.4195 91 x 0.0943 26.2739 30.4195 -Andale_Mono.ttf 105 z 23.1917 30.4195 92 ) -10.6118 15.2098 49.6141 -Andale_Mono.ttf 105 z 23.1917 30.4195 93 = 2.6293 27.1098 15.2098 -Andale_Mono.ttf 105 z 23.1917 30.4195 94 + -3.4558 26.9971 26.9971 -Andale_Mono.ttf 105 z 23.1917 30.4195 95 X -10.0882 31.0946 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 96 » -0.1889 25.2250 29.2098 -Andale_Mono.ttf 105 z 23.1917 30.4195 97 ' -10.0063 4.4529 15.2098 -Andale_Mono.ttf 105 z 23.1917 30.4195 98 ¢ -5.2403 23.6474 41.2224 -Andale_Mono.ttf 105 z 23.1917 30.4195 99 Z -10.0340 24.3684 40.5833 -Andale_Mono.ttf 105 z 23.1917 30.4195 100 > -4.5517 21.2279 29.2098 -Andale_Mono.ttf 105 z 23.1917 30.4195 101 ® -10.6297 35.0793 34.5652 -Andale_Mono.ttf 105 z 23.1917 30.4195 102 © -10.3207 35.0793 34.5652 -Andale_Mono.ttf 105 z 23.1917 30.4195 103 ] -9.8368 11.2250 47.8696 -Andale_Mono.ttf 105 z 23.1917 30.4195 104 é -11.4201 25.2250 42.0460 -Andale_Mono.ttf 105 z 23.1917 30.4195 105 z -0.2962 23.1917 30.4195 -Andale_Mono.ttf 105 z 23.1917 30.4195 106 _ 39.0323 35.0793 3.8362 -Andale_Mono.ttf 105 z 23.1917 30.4195 107 ¥ -10.3364 29.8264 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 1 t -47.2222 22.6445 38.7569 -Andale_Mono.ttf 106 _ 35.0793 3.8362 2 h -49.4271 23.0431 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 3 a -39.3850 24.2529 30.8333 -Andale_Mono.ttf 106 _ 35.0793 3.8362 4 n -39.5128 23.0431 30.6264 -Andale_Mono.ttf 106 _ 35.0793 3.8362 5 P -49.2617 22.8055 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 6 o -39.5922 26.7880 30.8333 -Andale_Mono.ttf 106 _ 35.0793 3.8362 7 e -39.5810 25.2250 30.8333 -Andale_Mono.ttf 106 _ 35.0793 3.8362 8 : -39.5169 7.2279 30.8333 -Andale_Mono.ttf 106 _ 35.0793 3.8362 9 r -40.0083 20.4043 30.6264 -Andale_Mono.ttf 106 _ 35.0793 3.8362 10 l -49.3705 20.4167 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 11 i -49.5132 13.3043 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 12 1 -49.7189 21.0793 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 13 | -49.7798 4.1457 51.1917 -Andale_Mono.ttf 106 _ 35.0793 3.8362 14 N -49.3445 24.3684 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 15 f -49.5883 22.7449 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 16 g -39.4105 26.2862 42.2069 -Andale_Mono.ttf 106 _ 35.0793 3.8362 17 d -49.7274 24.9156 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 18 W -49.7011 32.6598 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 19 s -39.6975 22.4960 30.8333 -Andale_Mono.ttf 106 _ 35.0793 3.8362 20 c -39.4805 24.2529 30.8333 -Andale_Mono.ttf 106 _ 35.0793 3.8362 21 u -39.3897 23.0431 30.6264 -Andale_Mono.ttf 106 _ 35.0793 3.8362 22 3 -49.6406 22.4376 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 23 ~ -28.3800 31.2431 8.4376 -Andale_Mono.ttf 106 _ 35.0793 3.8362 24 # -49.7471 29.7261 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 25 O -49.5519 27.4069 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 26 ` -50.8061 12.2739 8.6445 -Andale_Mono.ttf 106 _ 35.0793 3.8362 27 @ -49.6540 29.8848 45.6293 -Andale_Mono.ttf 106 _ 35.0793 3.8362 28 F -49.4998 21.8334 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 29 S -49.3369 22.6445 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 30 p -39.4065 24.9156 42.2069 -Andale_Mono.ttf 106 _ 35.0793 3.8362 31 “ -49.6666 17.6989 13.2460 -Andale_Mono.ttf 106 _ 35.0793 3.8362 32 % -49.5971 32.6598 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 33 £ -49.7814 26.7902 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 34 . -15.9075 7.2279 7.2279 -Andale_Mono.ttf 106 _ 35.0793 3.8362 35 2 -49.4824 21.9695 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 36 5 -49.6622 22.1304 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 37 m -39.7161 27.6138 30.6264 -Andale_Mono.ttf 106 _ 35.0793 3.8362 38 V -49.4006 32.2460 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 39 6 -49.7969 25.4319 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 40 w -39.0025 29.5170 30.4195 -Andale_Mono.ttf 106 _ 35.0793 3.8362 41 T -49.5955 29.4710 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 42 M -49.5447 25.2250 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 43 G -49.5305 26.5833 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 44 b -49.4452 24.9156 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 45 9 -49.6626 25.2250 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 46 ; -39.7479 7.2279 36.8514 -Andale_Mono.ttf 106 _ 35.0793 3.8362 47 D -49.5207 25.2250 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 48 L -49.3477 21.8334 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 49 y -39.5243 26.6417 42.0000 -Andale_Mono.ttf 106 _ 35.0793 3.8362 50 ‘ -49.7193 7.2279 13.2460 -Andale_Mono.ttf 106 _ 35.0793 3.8362 51 \ -49.7718 24.4014 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 52 R -49.5981 27.3351 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 53 < -44.1175 21.2279 29.2098 -Andale_Mono.ttf 106 _ 35.0793 3.8362 54 4 -49.5693 27.4836 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 55 8 -49.8410 25.7598 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 56 0 -49.5760 26.7880 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 57 A -49.6174 32.2460 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 58 E -49.6483 21.0793 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 59 B -49.2210 25.0765 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 60 v -39.6995 26.4348 30.4195 -Andale_Mono.ttf 106 _ 35.0793 3.8362 61 k -49.3925 26.1253 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 62 J -49.5866 19.6627 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 63 U -49.4425 23.0431 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 64 j -49.7303 15.7239 52.3707 -Andale_Mono.ttf 106 _ 35.0793 3.8362 65 ( -49.6569 15.2098 49.6141 -Andale_Mono.ttf 106 _ 35.0793 3.8362 66 7 -49.5762 23.7080 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 67 § -49.7684 23.8543 52.5776 -Andale_Mono.ttf 106 _ 35.0793 3.8362 68 $ -52.6704 22.6445 47.0152 -Andale_Mono.ttf 106 _ 35.0793 3.8362 69 € -49.4374 30.5474 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 70 / -49.4676 24.4014 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 71 C -49.9240 26.7112 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 72 * -49.5708 20.1184 22.4376 -Andale_Mono.ttf 106 _ 35.0793 3.8362 73 ” -49.8199 17.6989 13.2460 -Andale_Mono.ttf 106 _ 35.0793 3.8362 74 ? -49.4538 20.5652 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 75 { -49.8931 15.8848 50.4376 -Andale_Mono.ttf 106 _ 35.0793 3.8362 76 } -49.5643 15.8848 50.4376 -Andale_Mono.ttf 106 _ 35.0793 3.8362 77 , -16.4148 7.2279 13.2460 -Andale_Mono.ttf 106 _ 35.0793 3.8362 78 I -49.4393 17.9971 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 79 ° -49.5317 15.7261 15.7261 -Andale_Mono.ttf 106 _ 35.0793 3.8362 80 K -49.8178 28.2377 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 81 H -49.6627 23.0431 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 82 q -39.4833 24.9156 42.2069 -Andale_Mono.ttf 106 _ 35.0793 3.8362 83 & -49.8036 32.6598 40.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 84 ’ -49.8940 7.2279 13.2460 -Andale_Mono.ttf 106 _ 35.0793 3.8362 85 [ -49.6072 11.2250 47.8696 -Andale_Mono.ttf 106 _ 35.0793 3.8362 86 - -27.0684 16.9359 4.1457 -Andale_Mono.ttf 106 _ 35.0793 3.8362 87 Y -49.0260 29.8264 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 88 Q -50.0280 28.6167 47.7692 -Andale_Mono.ttf 106 _ 35.0793 3.8362 89 " -49.5391 14.9239 15.2098 -Andale_Mono.ttf 106 _ 35.0793 3.8362 90 ! -49.6086 7.2279 40.7902 -Andale_Mono.ttf 106 _ 35.0793 3.8362 91 x -39.5373 26.2739 30.4195 -Andale_Mono.ttf 106 _ 35.0793 3.8362 92 ) -49.6235 15.2098 49.6141 -Andale_Mono.ttf 106 _ 35.0793 3.8362 93 = -36.8274 27.1098 15.2098 -Andale_Mono.ttf 106 _ 35.0793 3.8362 94 + -43.1189 26.9971 26.9971 -Andale_Mono.ttf 106 _ 35.0793 3.8362 95 X -49.5812 31.0946 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 96 » -39.6324 25.2250 29.2098 -Andale_Mono.ttf 106 _ 35.0793 3.8362 97 ' -49.4360 4.4529 15.2098 -Andale_Mono.ttf 106 _ 35.0793 3.8362 98 ¢ -44.8162 23.6474 41.2224 -Andale_Mono.ttf 106 _ 35.0793 3.8362 99 Z -49.4107 24.3684 40.5833 -Andale_Mono.ttf 106 _ 35.0793 3.8362 100 > -43.9767 21.2279 29.2098 -Andale_Mono.ttf 106 _ 35.0793 3.8362 101 ® -49.3833 35.0793 34.5652 -Andale_Mono.ttf 106 _ 35.0793 3.8362 102 © -49.8006 35.0793 34.5652 -Andale_Mono.ttf 106 _ 35.0793 3.8362 103 ] -49.5245 11.2250 47.8696 -Andale_Mono.ttf 106 _ 35.0793 3.8362 104 é -50.6563 25.2250 42.0460 -Andale_Mono.ttf 106 _ 35.0793 3.8362 105 z -39.4182 23.1917 30.4195 -Andale_Mono.ttf 106 _ 35.0793 3.8362 106 _ 0.0161 35.0793 3.8362 -Andale_Mono.ttf 106 _ 35.0793 3.8362 107 ¥ -49.5422 29.8264 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 1 t 2.1175 22.6445 38.7569 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 2 h 0.0828 23.0431 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 3 a 9.8245 24.2529 30.8333 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 4 n 10.0912 23.0431 30.6264 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 5 P -0.2218 22.8055 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 6 o 9.9130 26.7880 30.8333 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 7 e 10.0360 25.2250 30.8333 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 8 : 9.8239 7.2279 30.8333 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 9 r 10.1595 20.4043 30.6264 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 10 l 0.0854 20.4167 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 11 i -0.3818 13.3043 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 12 1 -0.3102 21.0793 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 13 | 0.1077 4.1457 51.1917 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 14 N 0.2395 24.3684 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 15 f -0.4465 22.7449 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 16 g 9.9287 26.2862 42.2069 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 17 d -0.1338 24.9156 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 18 W 0.3465 32.6598 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 19 s 9.7945 22.4960 30.8333 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 20 c 10.1646 24.2529 30.8333 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 21 u 10.0559 23.0431 30.6264 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 22 3 -0.4152 22.4376 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 23 ~ 21.0686 31.2431 8.4376 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 24 # -0.0264 29.7261 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 25 O -0.1741 27.4069 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 26 ` -1.5324 12.2739 8.6445 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 27 @ -0.2420 29.8848 45.6293 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 28 F -0.1857 21.8334 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 29 S -0.2032 22.6445 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 30 p 10.1759 24.9156 42.2069 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 31 “ -0.0952 17.6989 13.2460 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 32 % -0.3711 32.6598 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 33 £ -0.2230 26.7902 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 34 . 33.4914 7.2279 7.2279 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 35 2 -0.3998 21.9695 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 36 5 -0.1893 22.1304 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 37 m 10.2222 27.6138 30.6264 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 38 V 0.0010 32.2460 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 39 6 -0.1747 25.4319 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 40 w 10.2121 29.5170 30.4195 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 41 T -0.0100 29.4710 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 42 M 0.0333 25.2250 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 43 G -0.2333 26.5833 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 44 b 0.2810 24.9156 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 45 9 -0.1245 25.2250 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 46 ; 9.8406 7.2279 36.8514 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 47 D 0.0249 25.2250 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 48 L -0.1557 21.8334 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 49 y 9.9450 26.6417 42.0000 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 50 ‘ -0.2157 7.2279 13.2460 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 51 \ -0.2653 24.4014 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 52 R -0.0085 27.3351 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 53 < 5.5283 21.2279 29.2098 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 54 4 0.0580 27.4836 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 55 8 -0.1352 25.7598 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 56 0 -0.1596 26.7880 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 57 A -0.0743 32.2460 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 58 E -0.0032 21.0793 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 59 B -0.0627 25.0765 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 60 v 10.1476 26.4348 30.4195 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 61 k 0.0094 26.1253 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 62 J -0.1669 19.6627 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 63 U 0.1973 23.0431 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 64 j -0.0776 15.7239 52.3707 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 65 ( -0.2893 15.2098 49.6141 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 66 7 -0.0891 23.7080 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 67 § -0.6217 23.8543 52.5776 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 68 $ -2.6534 22.6445 47.0152 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 69 € -0.1372 30.5474 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 70 / -0.4327 24.4014 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 71 C -0.3743 26.7112 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 72 * 0.1431 20.1184 22.4376 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 73 ” -0.2762 17.6989 13.2460 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 74 ? -0.3289 20.5652 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 75 { 0.0140 15.8848 50.4376 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 76 } 0.0348 15.8848 50.4376 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 77 , 33.3378 7.2279 13.2460 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 78 I -0.0764 17.9971 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 79 ° 0.0755 15.7261 15.7261 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 80 K 0.0088 28.2377 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 81 H -0.1463 23.0431 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 82 q 9.9161 24.9156 42.2069 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 83 & -0.0237 32.6598 40.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 84 ’ -0.2117 7.2279 13.2460 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 85 [ -0.2325 11.2250 47.8696 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 86 - 22.5258 16.9359 4.1457 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 87 Y -0.1452 29.8264 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 88 Q -0.1024 28.6167 47.7692 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 89 " 0.4115 14.9239 15.2098 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 90 ! -0.2873 7.2279 40.7902 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 91 x 10.1293 26.2739 30.4195 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 92 ) -0.3017 15.2098 49.6141 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 93 = 12.4956 27.1098 15.2098 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 94 + 6.7518 26.9971 26.9971 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 95 X -0.4054 31.0946 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 96 » 9.8826 25.2250 29.2098 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 97 ' 0.0726 4.4529 15.2098 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 98 ¢ 4.5928 23.6474 41.2224 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 99 Z 0.2371 24.3684 40.5833 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 100 > 5.6804 21.2279 29.2098 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 101 ® -0.1836 35.0793 34.5652 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 102 © -0.2964 35.0793 34.5652 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 103 ] -0.0193 11.2250 47.8696 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 104 é -1.4634 25.2250 42.0460 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 105 z 9.9239 23.1917 30.4195 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 106 _ 49.5141 35.0793 3.8362 -Andale_Mono.ttf 107 ¥ 29.8264 40.5833 107 ¥ -0.0732 29.8264 40.5833 -Arial.ttf 1 t 15.0709 42.3103 1 t -0.2358 15.0709 42.3103 -Arial.ttf 1 t 15.0709 42.3103 2 h 0.1256 24.2793 42.0000 -Arial.ttf 1 t 15.0709 42.3103 3 a 9.6353 27.4690 32.3813 -Arial.ttf 1 t 15.0709 42.3103 4 n 9.9856 24.2793 32.0709 -Arial.ttf 1 t 15.0709 42.3103 5 P -0.1351 31.4542 42.0000 -Arial.ttf 1 t 15.0709 42.3103 6 o 10.0256 27.4690 32.3813 -Arial.ttf 1 t 15.0709 42.3103 7 e 9.8990 27.4690 32.3813 -Arial.ttf 1 t 15.0709 42.3103 8 : 11.1770 5.2626 30.8793 -Arial.ttf 1 t 15.0709 42.3103 9 r 9.8548 16.5689 32.0709 -Arial.ttf 1 t 15.0709 42.3103 10 l 0.2053 5.2626 42.0000 -Arial.ttf 1 t 15.0709 42.3103 11 i 0.0000 5.2626 42.0000 -Arial.ttf 1 t 15.0709 42.3103 12 1 0.0675 15.2355 41.6897 -Arial.ttf 1 t 15.0709 42.3103 13 | 0.0774 4.1916 54.4980 -Arial.ttf 1 t 15.0709 42.3103 14 N 0.0486 32.9083 42.0000 -Arial.ttf 1 t 15.0709 42.3103 15 f -0.2912 18.0709 42.0000 -Arial.ttf 1 t 15.0709 42.3103 16 g 10.0766 26.3123 43.6877 -Arial.ttf 1 t 15.0709 42.3103 17 d -0.1406 26.3123 42.3103 -Arial.ttf 1 t 15.0709 42.3103 18 W -0.1284 57.1916 42.0000 -Arial.ttf 1 t 15.0709 42.3103 19 s 10.0075 24.9561 32.3813 -Arial.ttf 1 t 15.0709 42.3103 20 c 9.6825 26.8084 32.3813 -Arial.ttf 1 t 15.0709 42.3103 21 u 11.0491 24.2793 31.1896 -Arial.ttf 1 t 15.0709 42.3103 22 3 0.5034 26.8483 41.6897 -Arial.ttf 1 t 15.0709 42.3103 23 ~ 17.0240 29.9083 10.9561 -Arial.ttf 1 t 15.0709 42.3103 24 # 0.1697 31.2646 42.0000 -Arial.ttf 1 t 15.0709 42.3103 25 O -0.5545 39.5749 43.3212 -Arial.ttf 1 t 15.0709 42.3103 26 ` -0.0355 10.9561 8.0769 -Arial.ttf 1 t 15.0709 42.3103 27 @ -0.1007 54.1478 54.3123 -Arial.ttf 1 t 15.0709 42.3103 28 F -0.0069 28.2207 42.0000 -Arial.ttf 1 t 15.0709 42.3103 29 S -0.5913 33.0001 43.3212 -Arial.ttf 1 t 15.0709 42.3103 30 p 9.8946 26.3123 43.6877 -Arial.ttf 1 t 15.0709 42.3103 31 “ -0.0621 13.5690 14.0000 -Arial.ttf 1 t 15.0709 42.3103 32 % -0.0455 44.8793 42.3103 -Arial.ttf 1 t 15.0709 42.3103 33 £ 0.1889 29.8522 42.3103 -Arial.ttf 1 t 15.0709 42.3103 34 . 36.6118 5.2626 5.2626 -Arial.ttf 1 t 15.0709 42.3103 35 2 0.4191 28.6956 41.6897 -Arial.ttf 1 t 15.0709 42.3103 36 5 0.2303 26.8483 41.6897 -Arial.ttf 1 t 15.0709 42.3103 37 m 9.8670 41.4044 32.0709 -Arial.ttf 1 t 15.0709 42.3103 38 V -0.0938 40.5788 42.0000 -Arial.ttf 1 t 15.0709 42.3103 39 6 0.3825 27.8542 41.6897 -Arial.ttf 1 t 15.0709 42.3103 40 w 11.0146 43.4212 30.8793 -Arial.ttf 1 t 15.0709 42.3103 41 T -0.0547 33.6936 42.0000 -Arial.ttf 1 t 15.0709 42.3103 42 M -0.0540 40.5788 42.0000 -Arial.ttf 1 t 15.0709 42.3103 43 G -0.4798 38.6897 43.3212 -Arial.ttf 1 t 15.0709 42.3103 44 b 0.0429 26.3123 42.3103 -Arial.ttf 1 t 15.0709 42.3103 45 9 0.1899 26.8483 41.6897 -Arial.ttf 1 t 15.0709 42.3103 46 ; 11.1781 5.2626 39.6167 -Arial.ttf 1 t 15.0709 42.3103 47 D 0.0882 34.4542 42.0000 -Arial.ttf 1 t 15.0709 42.3103 48 L 0.2674 25.8813 42.0000 -Arial.ttf 1 t 15.0709 42.3103 49 y 10.8991 28.0000 42.4960 -Arial.ttf 1 t 15.0709 42.3103 50 ‘ -0.1601 5.9231 14.0000 -Arial.ttf 1 t 15.0709 42.3103 51 \ -0.0027 17.5749 42.0000 -Arial.ttf 1 t 15.0709 42.3103 52 R -0.1060 36.7497 42.0000 -Arial.ttf 1 t 15.0709 42.3103 53 < 7.3056 27.8354 27.8704 -Arial.ttf 1 t 15.0709 42.3103 54 4 0.7032 28.3503 41.6897 -Arial.ttf 1 t 15.0709 42.3103 55 8 0.3375 26.6626 41.6897 -Arial.ttf 1 t 15.0709 42.3103 56 0 0.3851 26.8483 41.6897 -Arial.ttf 1 t 15.0709 42.3103 57 A 0.2111 40.5788 42.0000 -Arial.ttf 1 t 15.0709 42.3103 58 E 0.1108 31.4542 42.0000 -Arial.ttf 1 t 15.0709 42.3103 59 B 0.0000 31.4542 42.0000 -Arial.ttf 1 t 15.0709 42.3103 60 v 11.0089 27.8704 30.8793 -Arial.ttf 1 t 15.0709 42.3103 61 k -0.0057 25.1207 42.0000 -Arial.ttf 1 t 15.0709 42.3103 62 J -0.2879 24.0291 42.6606 -Arial.ttf 1 t 15.0709 42.3103 63 U 0.1145 32.9083 42.6606 -Arial.ttf 1 t 15.0709 42.3103 64 j 0.0966 12.3773 53.6167 -Arial.ttf 1 t 15.0709 42.3103 65 ( 0.0080 14.4103 53.6167 -Arial.ttf 1 t 15.0709 42.3103 66 7 0.1793 26.8523 41.6897 -Arial.ttf 1 t 15.0709 42.3103 67 § 0.2191 26.9729 53.9271 -Arial.ttf 1 t 15.0709 42.3103 68 $ -1.9391 27.6897 49.3355 -Arial.ttf 1 t 15.0709 42.3103 69 € -0.7724 33.0769 43.3212 -Arial.ttf 1 t 15.0709 42.3103 70 / -0.0080 17.5749 42.0000 -Arial.ttf 1 t 15.0709 42.3103 71 C -0.7677 36.0000 43.3212 -Arial.ttf 1 t 15.0709 42.3103 72 * -0.1739 20.3453 17.8852 -Arial.ttf 1 t 15.0709 42.3103 73 ” 0.0371 14.2296 14.0000 -Arial.ttf 1 t 15.0709 42.3103 74 ? 0.0333 26.8483 42.0000 -Arial.ttf 1 t 15.0709 42.3103 75 { -0.1720 16.7375 53.6167 -Arial.ttf 1 t 15.0709 42.3103 76 } 0.0885 16.7375 53.6167 -Arial.ttf 1 t 15.0709 42.3103 77 , 36.6298 5.2626 14.0000 -Arial.ttf 1 t 15.0709 42.3103 78 I -0.0567 5.6936 42.0000 -Arial.ttf 1 t 15.0709 42.3103 79 ° -0.0010 15.8083 15.8083 -Arial.ttf 1 t 15.0709 42.3103 80 K -0.2854 34.5749 42.0000 -Arial.ttf 1 t 15.0709 42.3103 81 H -0.0371 32.9083 42.0000 -Arial.ttf 1 t 15.0709 42.3103 82 q 9.9233 26.3123 43.6877 -Arial.ttf 1 t 15.0709 42.3103 83 & 0.3266 35.1148 42.3103 -Arial.ttf 1 t 15.0709 42.3103 84 ’ 0.0828 5.9231 14.0000 -Arial.ttf 1 t 15.0709 42.3103 85 [ -0.1793 11.0000 53.6167 -Arial.ttf 1 t 15.0709 42.3103 86 - 24.3168 15.4980 5.2626 -Arial.ttf 1 t 15.0709 42.3103 87 Y -0.0053 38.4601 42.0000 -Arial.ttf 1 t 15.0709 42.3103 88 Q -0.7309 39.5749 46.3212 -Arial.ttf 1 t 15.0709 42.3103 89 " 0.1601 15.8083 15.1916 -Arial.ttf 1 t 15.0709 42.3103 90 ! -0.1033 5.2626 42.0000 -Arial.ttf 1 t 15.0709 42.3103 91 x 10.9775 29.1060 30.8793 -Arial.ttf 1 t 15.0709 42.3103 92 ) -0.1266 14.4103 53.6167 -Arial.ttf 1 t 15.0709 42.3103 93 = 12.1520 27.8793 17.8852 -Arial.ttf 1 t 15.0709 42.3103 94 + 7.6397 27.8753 27.8753 -Arial.ttf 1 t 15.0709 42.3103 95 X -0.3337 37.6626 42.0000 -Arial.ttf 1 t 15.0709 42.3103 96 » 13.7768 25.0439 26.1917 -Arial.ttf 1 t 15.0709 42.3103 97 ' 0.1189 5.2626 15.1916 -Arial.ttf 1 t 15.0709 42.3103 98 ¢ 0.0366 25.7813 54.2685 -Arial.ttf 1 t 15.0709 42.3103 99 Z 0.1500 33.0729 42.0000 -Arial.ttf 1 t 15.0709 42.3103 100 > 7.3416 27.8354 27.8704 -Arial.ttf 1 t 15.0709 42.3103 101 ® -0.7720 43.1916 42.9709 -Arial.ttf 1 t 15.0709 42.3103 102 © -0.5571 43.1916 42.9709 -Arial.ttf 1 t 15.0709 42.3103 103 ] 0.0828 11.0000 53.6167 -Arial.ttf 1 t 15.0709 42.3103 104 é -0.9615 27.4690 43.5020 -Arial.ttf 1 t 15.0709 42.3103 105 z 11.2613 26.3123 30.8793 -Arial.ttf 1 t 15.0709 42.3103 106 _ 48.4601 33.3832 5.2626 -Arial.ttf 1 t 15.0709 42.3103 107 ¥ -0.0264 32.0291 42.0000 -Arial.ttf 2 h 24.2793 42.0000 1 t -0.0101 15.0709 42.3103 -Arial.ttf 2 h 24.2793 42.0000 2 h 0.0239 24.2793 42.0000 -Arial.ttf 2 h 24.2793 42.0000 3 a 9.9026 27.4690 32.3813 -Arial.ttf 2 h 24.2793 42.0000 4 n 9.7132 24.2793 32.0709 -Arial.ttf 2 h 24.2793 42.0000 5 P 0.0524 31.4542 42.0000 -Arial.ttf 2 h 24.2793 42.0000 6 o 9.9179 27.4690 32.3813 -Arial.ttf 2 h 24.2793 42.0000 7 e 9.9429 27.4690 32.3813 -Arial.ttf 2 h 24.2793 42.0000 8 : 11.1716 5.2626 30.8793 -Arial.ttf 2 h 24.2793 42.0000 9 r 9.8606 16.5689 32.0709 -Arial.ttf 2 h 24.2793 42.0000 10 l -0.0948 5.2626 42.0000 -Arial.ttf 2 h 24.2793 42.0000 11 i -0.0545 5.2626 42.0000 -Arial.ttf 2 h 24.2793 42.0000 12 1 0.3724 15.2355 41.6897 -Arial.ttf 2 h 24.2793 42.0000 13 | -0.3023 4.1916 54.4980 -Arial.ttf 2 h 24.2793 42.0000 14 N 0.2031 32.9083 42.0000 -Arial.ttf 2 h 24.2793 42.0000 15 f 0.0084 18.0709 42.0000 -Arial.ttf 2 h 24.2793 42.0000 16 g 10.1348 26.3123 43.6877 -Arial.ttf 2 h 24.2793 42.0000 17 d 0.1749 26.3123 42.3103 -Arial.ttf 2 h 24.2793 42.0000 18 W 0.0456 57.1916 42.0000 -Arial.ttf 2 h 24.2793 42.0000 19 s 9.8049 24.9561 32.3813 -Arial.ttf 2 h 24.2793 42.0000 20 c 9.7429 26.8084 32.3813 -Arial.ttf 2 h 24.2793 42.0000 21 u 11.3096 24.2793 31.1896 -Arial.ttf 2 h 24.2793 42.0000 22 3 0.6326 26.8483 41.6897 -Arial.ttf 2 h 24.2793 42.0000 23 ~ 17.0612 29.9083 10.9561 -Arial.ttf 2 h 24.2793 42.0000 24 # 0.1659 31.2646 42.0000 -Arial.ttf 2 h 24.2793 42.0000 25 O -0.9490 39.5749 43.3212 -Arial.ttf 2 h 24.2793 42.0000 26 ` -0.1866 10.9561 8.0769 -Arial.ttf 2 h 24.2793 42.0000 27 @ -0.0027 54.1478 54.3123 -Arial.ttf 2 h 24.2793 42.0000 28 F -0.2388 28.2207 42.0000 -Arial.ttf 2 h 24.2793 42.0000 29 S -0.8110 33.0001 43.3212 -Arial.ttf 2 h 24.2793 42.0000 30 p 9.9509 26.3123 43.6877 -Arial.ttf 2 h 24.2793 42.0000 31 “ -0.1475 13.5690 14.0000 -Arial.ttf 2 h 24.2793 42.0000 32 % 0.0540 44.8793 42.3103 -Arial.ttf 2 h 24.2793 42.0000 33 £ -0.1633 29.8522 42.3103 -Arial.ttf 2 h 24.2793 42.0000 34 . 36.5428 5.2626 5.2626 -Arial.ttf 2 h 24.2793 42.0000 35 2 0.5515 28.6956 41.6897 -Arial.ttf 2 h 24.2793 42.0000 36 5 -0.0467 26.8483 41.6897 -Arial.ttf 2 h 24.2793 42.0000 37 m 9.9929 41.4044 32.0709 -Arial.ttf 2 h 24.2793 42.0000 38 V 0.0345 40.5788 42.0000 -Arial.ttf 2 h 24.2793 42.0000 39 6 0.3820 27.8542 41.6897 -Arial.ttf 2 h 24.2793 42.0000 40 w 11.4173 43.4212 30.8793 -Arial.ttf 2 h 24.2793 42.0000 41 T -0.2527 33.6936 42.0000 -Arial.ttf 2 h 24.2793 42.0000 42 M 0.0593 40.5788 42.0000 -Arial.ttf 2 h 24.2793 42.0000 43 G -0.9767 38.6897 43.3212 -Arial.ttf 2 h 24.2793 42.0000 44 b -0.0885 26.3123 42.3103 -Arial.ttf 2 h 24.2793 42.0000 45 9 0.5644 26.8483 41.6897 -Arial.ttf 2 h 24.2793 42.0000 46 ; 11.2505 5.2626 39.6167 -Arial.ttf 2 h 24.2793 42.0000 47 D -0.2858 34.4542 42.0000 -Arial.ttf 2 h 24.2793 42.0000 48 L -0.1692 25.8813 42.0000 -Arial.ttf 2 h 24.2793 42.0000 49 y 11.1389 28.0000 42.4960 -Arial.ttf 2 h 24.2793 42.0000 50 ‘ -0.0446 5.9231 14.0000 -Arial.ttf 2 h 24.2793 42.0000 51 \ -0.0815 17.5749 42.0000 -Arial.ttf 2 h 24.2793 42.0000 52 R -0.2564 36.7497 42.0000 -Arial.ttf 2 h 24.2793 42.0000 53 < 7.4366 27.8354 27.8704 -Arial.ttf 2 h 24.2793 42.0000 54 4 0.4954 28.3503 41.6897 -Arial.ttf 2 h 24.2793 42.0000 55 8 0.2037 26.6626 41.6897 -Arial.ttf 2 h 24.2793 42.0000 56 0 0.3904 26.8483 41.6897 -Arial.ttf 2 h 24.2793 42.0000 57 A -0.0371 40.5788 42.0000 -Arial.ttf 2 h 24.2793 42.0000 58 E 0.1644 31.4542 42.0000 -Arial.ttf 2 h 24.2793 42.0000 59 B -0.0290 31.4542 42.0000 -Arial.ttf 2 h 24.2793 42.0000 60 v 11.1303 27.8704 30.8793 -Arial.ttf 2 h 24.2793 42.0000 61 k -0.1595 25.1207 42.0000 -Arial.ttf 2 h 24.2793 42.0000 62 J 0.0178 24.0291 42.6606 -Arial.ttf 2 h 24.2793 42.0000 63 U 0.0345 32.9083 42.6606 -Arial.ttf 2 h 24.2793 42.0000 64 j 0.0885 12.3773 53.6167 -Arial.ttf 2 h 24.2793 42.0000 65 ( 0.0828 14.4103 53.6167 -Arial.ttf 2 h 24.2793 42.0000 66 7 0.2663 26.8523 41.6897 -Arial.ttf 2 h 24.2793 42.0000 67 § 0.0207 26.9729 53.9271 -Arial.ttf 2 h 24.2793 42.0000 68 $ -2.0358 27.6897 49.3355 -Arial.ttf 2 h 24.2793 42.0000 69 € -0.5133 33.0769 43.3212 -Arial.ttf 2 h 24.2793 42.0000 70 / 0.1554 17.5749 42.0000 -Arial.ttf 2 h 24.2793 42.0000 71 C -0.7663 36.0000 43.3212 -Arial.ttf 2 h 24.2793 42.0000 72 * -0.0784 20.3453 17.8852 -Arial.ttf 2 h 24.2793 42.0000 73 ” 0.0489 14.2296 14.0000 -Arial.ttf 2 h 24.2793 42.0000 74 ? -0.0652 26.8483 42.0000 -Arial.ttf 2 h 24.2793 42.0000 75 { -0.4093 16.7375 53.6167 -Arial.ttf 2 h 24.2793 42.0000 76 } -0.0307 16.7375 53.6167 -Arial.ttf 2 h 24.2793 42.0000 77 , 36.7194 5.2626 14.0000 -Arial.ttf 2 h 24.2793 42.0000 78 I 0.1985 5.6936 42.0000 -Arial.ttf 2 h 24.2793 42.0000 79 ° -0.0371 15.8083 15.8083 -Arial.ttf 2 h 24.2793 42.0000 80 K -0.0322 34.5749 42.0000 -Arial.ttf 2 h 24.2793 42.0000 81 H -0.0429 32.9083 42.0000 -Arial.ttf 2 h 24.2793 42.0000 82 q 9.4454 26.3123 43.6877 -Arial.ttf 2 h 24.2793 42.0000 83 & -0.0493 35.1148 42.3103 -Arial.ttf 2 h 24.2793 42.0000 84 ’ -0.0716 5.9231 14.0000 -Arial.ttf 2 h 24.2793 42.0000 85 [ 0.1978 11.0000 53.6167 -Arial.ttf 2 h 24.2793 42.0000 86 - 24.2708 15.4980 5.2626 -Arial.ttf 2 h 24.2793 42.0000 87 Y 0.3570 38.4601 42.0000 -Arial.ttf 2 h 24.2793 42.0000 88 Q -0.7582 39.5749 46.3212 -Arial.ttf 2 h 24.2793 42.0000 89 " 0.2343 15.8083 15.1916 -Arial.ttf 2 h 24.2793 42.0000 90 ! 0.1401 5.2626 42.0000 -Arial.ttf 2 h 24.2793 42.0000 91 x 11.1500 29.1060 30.8793 -Arial.ttf 2 h 24.2793 42.0000 92 ) 0.0027 14.4103 53.6167 -Arial.ttf 2 h 24.2793 42.0000 93 = 12.3459 27.8793 17.8852 -Arial.ttf 2 h 24.2793 42.0000 94 + 7.8312 27.8753 27.8753 -Arial.ttf 2 h 24.2793 42.0000 95 X 0.0621 37.6626 42.0000 -Arial.ttf 2 h 24.2793 42.0000 96 » 14.0860 25.0439 26.1917 -Arial.ttf 2 h 24.2793 42.0000 97 ' -0.1708 5.2626 15.1916 -Arial.ttf 2 h 24.2793 42.0000 98 ¢ -0.1425 25.7813 54.2685 -Arial.ttf 2 h 24.2793 42.0000 99 Z 0.1575 33.0729 42.0000 -Arial.ttf 2 h 24.2793 42.0000 100 > 7.2738 27.8354 27.8704 -Arial.ttf 2 h 24.2793 42.0000 101 ® -0.9581 43.1916 42.9709 -Arial.ttf 2 h 24.2793 42.0000 102 © -0.7889 43.1916 42.9709 -Arial.ttf 2 h 24.2793 42.0000 103 ] -0.0333 11.0000 53.6167 -Arial.ttf 2 h 24.2793 42.0000 104 é -1.3278 27.4690 43.5020 -Arial.ttf 2 h 24.2793 42.0000 105 z 11.0242 26.3123 30.8793 -Arial.ttf 2 h 24.2793 42.0000 106 _ 48.4120 33.3832 5.2626 -Arial.ttf 2 h 24.2793 42.0000 107 ¥ 0.1708 32.0291 42.0000 -Arial.ttf 3 a 27.4690 32.3813 1 t -9.8441 15.0709 42.3103 -Arial.ttf 3 a 27.4690 32.3813 2 h -10.0849 24.2793 42.0000 -Arial.ttf 3 a 27.4690 32.3813 3 a 0.1713 27.4690 32.3813 -Arial.ttf 3 a 27.4690 32.3813 4 n 0.4084 24.2793 32.0709 -Arial.ttf 3 a 27.4690 32.3813 5 P -9.9525 31.4542 42.0000 -Arial.ttf 3 a 27.4690 32.3813 6 o -0.1098 27.4690 32.3813 -Arial.ttf 3 a 27.4690 32.3813 7 e 0.1601 27.4690 32.3813 -Arial.ttf 3 a 27.4690 32.3813 8 : 1.0839 5.2626 30.8793 -Arial.ttf 3 a 27.4690 32.3813 9 r 0.1548 16.5689 32.0709 -Arial.ttf 3 a 27.4690 32.3813 10 l -10.0898 5.2626 42.0000 -Arial.ttf 3 a 27.4690 32.3813 11 i -9.9456 5.2626 42.0000 -Arial.ttf 3 a 27.4690 32.3813 12 1 -9.8563 15.2355 41.6897 -Arial.ttf 3 a 27.4690 32.3813 13 | -9.5955 4.1916 54.4980 -Arial.ttf 3 a 27.4690 32.3813 14 N -9.9317 32.9083 42.0000 -Arial.ttf 3 a 27.4690 32.3813 15 f -10.0350 18.0709 42.0000 -Arial.ttf 3 a 27.4690 32.3813 16 g 0.0138 26.3123 43.6877 -Arial.ttf 3 a 27.4690 32.3813 17 d -9.7170 26.3123 42.3103 -Arial.ttf 3 a 27.4690 32.3813 18 W -9.9777 57.1916 42.0000 -Arial.ttf 3 a 27.4690 32.3813 19 s -0.0690 24.9561 32.3813 -Arial.ttf 3 a 27.4690 32.3813 20 c 0.2509 26.8084 32.3813 -Arial.ttf 3 a 27.4690 32.3813 21 u 0.9434 24.2793 31.1896 -Arial.ttf 3 a 27.4690 32.3813 22 3 -9.7846 26.8483 41.6897 -Arial.ttf 3 a 27.4690 32.3813 23 ~ 6.8855 29.9083 10.9561 -Arial.ttf 3 a 27.4690 32.3813 24 # -10.1995 31.2646 42.0000 -Arial.ttf 3 a 27.4690 32.3813 25 O -10.6958 39.5749 43.3212 -Arial.ttf 3 a 27.4690 32.3813 26 ` -10.0202 10.9561 8.0769 -Arial.ttf 3 a 27.4690 32.3813 27 @ -9.8199 54.1478 54.3123 -Arial.ttf 3 a 27.4690 32.3813 28 F -10.0946 28.2207 42.0000 -Arial.ttf 3 a 27.4690 32.3813 29 S -10.7206 33.0001 43.3212 -Arial.ttf 3 a 27.4690 32.3813 30 p -0.2115 26.3123 43.6877 -Arial.ttf 3 a 27.4690 32.3813 31 “ -9.7737 13.5690 14.0000 -Arial.ttf 3 a 27.4690 32.3813 32 % -10.1109 44.8793 42.3103 -Arial.ttf 3 a 27.4690 32.3813 33 £ -9.6522 29.8522 42.3103 -Arial.ttf 3 a 27.4690 32.3813 34 . 27.0681 5.2626 5.2626 -Arial.ttf 3 a 27.4690 32.3813 35 2 -9.6628 28.6956 41.6897 -Arial.ttf 3 a 27.4690 32.3813 36 5 -9.6617 26.8483 41.6897 -Arial.ttf 3 a 27.4690 32.3813 37 m -0.1475 41.4044 32.0709 -Arial.ttf 3 a 27.4690 32.3813 38 V -9.8947 40.5788 42.0000 -Arial.ttf 3 a 27.4690 32.3813 39 6 -9.7789 27.8542 41.6897 -Arial.ttf 3 a 27.4690 32.3813 40 w 1.5475 43.4212 30.8793 -Arial.ttf 3 a 27.4690 32.3813 41 T -9.8783 33.6936 42.0000 -Arial.ttf 3 a 27.4690 32.3813 42 M -9.7998 40.5788 42.0000 -Arial.ttf 3 a 27.4690 32.3813 43 G -10.6242 38.6897 43.3212 -Arial.ttf 3 a 27.4690 32.3813 44 b -9.9095 26.3123 42.3103 -Arial.ttf 3 a 27.4690 32.3813 45 9 -9.5843 26.8483 41.6897 -Arial.ttf 3 a 27.4690 32.3813 46 ; 1.0883 5.2626 39.6167 -Arial.ttf 3 a 27.4690 32.3813 47 D -9.7521 34.4542 42.0000 -Arial.ttf 3 a 27.4690 32.3813 48 L -9.9291 25.8813 42.0000 -Arial.ttf 3 a 27.4690 32.3813 49 y 1.3098 28.0000 42.4960 -Arial.ttf 3 a 27.4690 32.3813 50 ‘ -9.6034 5.9231 14.0000 -Arial.ttf 3 a 27.4690 32.3813 51 \ -9.7393 17.5749 42.0000 -Arial.ttf 3 a 27.4690 32.3813 52 R -9.8544 36.7497 42.0000 -Arial.ttf 3 a 27.4690 32.3813 53 < -2.3488 27.8354 27.8704 -Arial.ttf 3 a 27.4690 32.3813 54 4 -9.7166 28.3503 41.6897 -Arial.ttf 3 a 27.4690 32.3813 55 8 -9.4529 26.6626 41.6897 -Arial.ttf 3 a 27.4690 32.3813 56 0 -9.4670 26.8483 41.6897 -Arial.ttf 3 a 27.4690 32.3813 57 A -9.8409 40.5788 42.0000 -Arial.ttf 3 a 27.4690 32.3813 58 E -10.0452 31.4542 42.0000 -Arial.ttf 3 a 27.4690 32.3813 59 B -9.7224 31.4542 42.0000 -Arial.ttf 3 a 27.4690 32.3813 60 v 1.1765 27.8704 30.8793 -Arial.ttf 3 a 27.4690 32.3813 61 k -9.9913 25.1207 42.0000 -Arial.ttf 3 a 27.4690 32.3813 62 J -10.4313 24.0291 42.6606 -Arial.ttf 3 a 27.4690 32.3813 63 U -10.1766 32.9083 42.6606 -Arial.ttf 3 a 27.4690 32.3813 64 j -9.8835 12.3773 53.6167 -Arial.ttf 3 a 27.4690 32.3813 65 ( -9.9233 14.4103 53.6167 -Arial.ttf 3 a 27.4690 32.3813 66 7 -9.5445 26.8523 41.6897 -Arial.ttf 3 a 27.4690 32.3813 67 § -10.0648 26.9729 53.9271 -Arial.ttf 3 a 27.4690 32.3813 68 $ -11.9718 27.6897 49.3355 -Arial.ttf 3 a 27.4690 32.3813 69 € -10.7897 33.0769 43.3212 -Arial.ttf 3 a 27.4690 32.3813 70 / -10.0962 17.5749 42.0000 -Arial.ttf 3 a 27.4690 32.3813 71 C -10.7423 36.0000 43.3212 -Arial.ttf 3 a 27.4690 32.3813 72 * -9.9486 20.3453 17.8852 -Arial.ttf 3 a 27.4690 32.3813 73 ” -9.6205 14.2296 14.0000 -Arial.ttf 3 a 27.4690 32.3813 74 ? -10.2064 26.8483 42.0000 -Arial.ttf 3 a 27.4690 32.3813 75 { -9.9382 16.7375 53.6167 -Arial.ttf 3 a 27.4690 32.3813 76 } -9.9021 16.7375 53.6167 -Arial.ttf 3 a 27.4690 32.3813 77 , 26.9021 5.2626 14.0000 -Arial.ttf 3 a 27.4690 32.3813 78 I -9.8808 5.6936 42.0000 -Arial.ttf 3 a 27.4690 32.3813 79 ° -9.6352 15.8083 15.8083 -Arial.ttf 3 a 27.4690 32.3813 80 K -9.9000 34.5749 42.0000 -Arial.ttf 3 a 27.4690 32.3813 81 H -9.9195 32.9083 42.0000 -Arial.ttf 3 a 27.4690 32.3813 82 q 0.1151 26.3123 43.6877 -Arial.ttf 3 a 27.4690 32.3813 83 & -10.0505 35.1148 42.3103 -Arial.ttf 3 a 27.4690 32.3813 84 ’ -9.7143 5.9231 14.0000 -Arial.ttf 3 a 27.4690 32.3813 85 [ -9.8595 11.0000 53.6167 -Arial.ttf 3 a 27.4690 32.3813 86 - 14.4580 15.4980 5.2626 -Arial.ttf 3 a 27.4690 32.3813 87 Y -9.9561 38.4601 42.0000 -Arial.ttf 3 a 27.4690 32.3813 88 Q -10.6384 39.5749 46.3212 -Arial.ttf 3 a 27.4690 32.3813 89 " -9.8598 15.8083 15.1916 -Arial.ttf 3 a 27.4690 32.3813 90 ! -9.8852 5.2626 42.0000 -Arial.ttf 3 a 27.4690 32.3813 91 x 1.0984 29.1060 30.8793 -Arial.ttf 3 a 27.4690 32.3813 92 ) -9.9100 14.4103 53.6167 -Arial.ttf 3 a 27.4690 32.3813 93 = 1.8916 27.8793 17.8852 -Arial.ttf 3 a 27.4690 32.3813 94 + -2.3802 27.8753 27.8753 -Arial.ttf 3 a 27.4690 32.3813 95 X -9.7843 37.6626 42.0000 -Arial.ttf 3 a 27.4690 32.3813 96 » 3.9301 25.0439 26.1917 -Arial.ttf 3 a 27.4690 32.3813 97 ' -10.0850 5.2626 15.1916 -Arial.ttf 3 a 27.4690 32.3813 98 ¢ -10.0690 25.7813 54.2685 -Arial.ttf 3 a 27.4690 32.3813 99 Z -10.1327 33.0729 42.0000 -Arial.ttf 3 a 27.4690 32.3813 100 > -2.4437 27.8354 27.8704 -Arial.ttf 3 a 27.4690 32.3813 101 ® -10.7594 43.1916 42.9709 -Arial.ttf 3 a 27.4690 32.3813 102 © -10.5498 43.1916 42.9709 -Arial.ttf 3 a 27.4690 32.3813 103 ] -9.8456 11.0000 53.6167 -Arial.ttf 3 a 27.4690 32.3813 104 é -11.0656 27.4690 43.5020 -Arial.ttf 3 a 27.4690 32.3813 105 z 1.2839 26.3123 30.8793 -Arial.ttf 3 a 27.4690 32.3813 106 _ 38.5507 33.3832 5.2626 -Arial.ttf 3 a 27.4690 32.3813 107 ¥ -9.9609 32.0291 42.0000 -Arial.ttf 4 n 24.2793 32.0709 1 t -9.8234 15.0709 42.3103 -Arial.ttf 4 n 24.2793 32.0709 2 h -9.5759 24.2793 42.0000 -Arial.ttf 4 n 24.2793 32.0709 3 a -0.0550 27.4690 32.3813 -Arial.ttf 4 n 24.2793 32.0709 4 n -0.1526 24.2793 32.0709 -Arial.ttf 4 n 24.2793 32.0709 5 P -9.9784 31.4542 42.0000 -Arial.ttf 4 n 24.2793 32.0709 6 o 0.1203 27.4690 32.3813 -Arial.ttf 4 n 24.2793 32.0709 7 e -0.1266 27.4690 32.3813 -Arial.ttf 4 n 24.2793 32.0709 8 : 0.9128 5.2626 30.8793 -Arial.ttf 4 n 24.2793 32.0709 9 r 0.0567 16.5689 32.0709 -Arial.ttf 4 n 24.2793 32.0709 10 l -9.9800 5.2626 42.0000 -Arial.ttf 4 n 24.2793 32.0709 11 i -9.6241 5.2626 42.0000 -Arial.ttf 4 n 24.2793 32.0709 12 1 -9.6792 15.2355 41.6897 -Arial.ttf 4 n 24.2793 32.0709 13 | -9.9578 4.1916 54.4980 -Arial.ttf 4 n 24.2793 32.0709 14 N -9.7923 32.9083 42.0000 -Arial.ttf 4 n 24.2793 32.0709 15 f -9.9375 18.0709 42.0000 -Arial.ttf 4 n 24.2793 32.0709 16 g 0.0540 26.3123 43.6877 -Arial.ttf 4 n 24.2793 32.0709 17 d -9.6974 26.3123 42.3103 -Arial.ttf 4 n 24.2793 32.0709 18 W -10.2064 57.1916 42.0000 -Arial.ttf 4 n 24.2793 32.0709 19 s -0.1709 24.9561 32.3813 -Arial.ttf 4 n 24.2793 32.0709 20 c 0.1310 26.8084 32.3813 -Arial.ttf 4 n 24.2793 32.0709 21 u 0.8856 24.2793 31.1896 -Arial.ttf 4 n 24.2793 32.0709 22 3 -9.6092 26.8483 41.6897 -Arial.ttf 4 n 24.2793 32.0709 23 ~ 6.8623 29.9083 10.9561 -Arial.ttf 4 n 24.2793 32.0709 24 # -10.0808 31.2646 42.0000 -Arial.ttf 4 n 24.2793 32.0709 25 O -10.4227 39.5749 43.3212 -Arial.ttf 4 n 24.2793 32.0709 26 ` -9.8230 10.9561 8.0769 -Arial.ttf 4 n 24.2793 32.0709 27 @ -9.6035 54.1478 54.3123 -Arial.ttf 4 n 24.2793 32.0709 28 F -10.0463 28.2207 42.0000 -Arial.ttf 4 n 24.2793 32.0709 29 S -10.6161 33.0001 43.3212 -Arial.ttf 4 n 24.2793 32.0709 30 p -0.0483 26.3123 43.6877 -Arial.ttf 4 n 24.2793 32.0709 31 “ -10.0034 13.5690 14.0000 -Arial.ttf 4 n 24.2793 32.0709 32 % -10.0229 44.8793 42.3103 -Arial.ttf 4 n 24.2793 32.0709 33 £ -9.8616 29.8522 42.3103 -Arial.ttf 4 n 24.2793 32.0709 34 . 26.8289 5.2626 5.2626 -Arial.ttf 4 n 24.2793 32.0709 35 2 -9.7667 28.6956 41.6897 -Arial.ttf 4 n 24.2793 32.0709 36 5 -9.7019 26.8483 41.6897 -Arial.ttf 4 n 24.2793 32.0709 37 m -0.0361 41.4044 32.0709 -Arial.ttf 4 n 24.2793 32.0709 38 V -9.8517 40.5788 42.0000 -Arial.ttf 4 n 24.2793 32.0709 39 6 -9.5484 27.8542 41.6897 -Arial.ttf 4 n 24.2793 32.0709 40 w 1.2674 43.4212 30.8793 -Arial.ttf 4 n 24.2793 32.0709 41 T -10.1026 33.6936 42.0000 -Arial.ttf 4 n 24.2793 32.0709 42 M -10.1693 40.5788 42.0000 -Arial.ttf 4 n 24.2793 32.0709 43 G -10.5784 38.6897 43.3212 -Arial.ttf 4 n 24.2793 32.0709 44 b -10.0314 26.3123 42.3103 -Arial.ttf 4 n 24.2793 32.0709 45 9 -9.5900 26.8483 41.6897 -Arial.ttf 4 n 24.2793 32.0709 46 ; 1.2123 5.2626 39.6167 -Arial.ttf 4 n 24.2793 32.0709 47 D -9.8585 34.4542 42.0000 -Arial.ttf 4 n 24.2793 32.0709 48 L -10.3731 25.8813 42.0000 -Arial.ttf 4 n 24.2793 32.0709 49 y 1.3974 28.0000 42.4960 -Arial.ttf 4 n 24.2793 32.0709 50 ‘ -9.8946 5.9231 14.0000 -Arial.ttf 4 n 24.2793 32.0709 51 \ -9.7826 17.5749 42.0000 -Arial.ttf 4 n 24.2793 32.0709 52 R -10.0808 36.7497 42.0000 -Arial.ttf 4 n 24.2793 32.0709 53 < -2.5514 27.8354 27.8704 -Arial.ttf 4 n 24.2793 32.0709 54 4 -9.7883 28.3503 41.6897 -Arial.ttf 4 n 24.2793 32.0709 55 8 -9.7361 26.6626 41.6897 -Arial.ttf 4 n 24.2793 32.0709 56 0 -9.6241 26.8483 41.6897 -Arial.ttf 4 n 24.2793 32.0709 57 A -9.9138 40.5788 42.0000 -Arial.ttf 4 n 24.2793 32.0709 58 E -9.8256 31.4542 42.0000 -Arial.ttf 4 n 24.2793 32.0709 59 B -9.9179 31.4542 42.0000 -Arial.ttf 4 n 24.2793 32.0709 60 v 1.1836 27.8704 30.8793 -Arial.ttf 4 n 24.2793 32.0709 61 k -10.1068 25.1207 42.0000 -Arial.ttf 4 n 24.2793 32.0709 62 J -9.9567 24.0291 42.6606 -Arial.ttf 4 n 24.2793 32.0709 63 U -9.8621 32.9083 42.6606 -Arial.ttf 4 n 24.2793 32.0709 64 j -9.5843 12.3773 53.6167 -Arial.ttf 4 n 24.2793 32.0709 65 ( -9.9540 14.4103 53.6167 -Arial.ttf 4 n 24.2793 32.0709 66 7 -9.3967 26.8523 41.6897 -Arial.ttf 4 n 24.2793 32.0709 67 § -9.9376 26.9729 53.9271 -Arial.ttf 4 n 24.2793 32.0709 68 $ -11.9493 27.6897 49.3355 -Arial.ttf 4 n 24.2793 32.0709 69 € -10.7605 33.0769 43.3212 -Arial.ttf 4 n 24.2793 32.0709 70 / -9.9179 17.5749 42.0000 -Arial.ttf 4 n 24.2793 32.0709 71 C -10.4640 36.0000 43.3212 -Arial.ttf 4 n 24.2793 32.0709 72 * -10.0186 20.3453 17.8852 -Arial.ttf 4 n 24.2793 32.0709 73 ” -10.0881 14.2296 14.0000 -Arial.ttf 4 n 24.2793 32.0709 74 ? -9.9099 26.8483 42.0000 -Arial.ttf 4 n 24.2793 32.0709 75 { -10.1125 16.7375 53.6167 -Arial.ttf 4 n 24.2793 32.0709 76 } -10.2455 16.7375 53.6167 -Arial.ttf 4 n 24.2793 32.0709 77 , 26.5834 5.2626 14.0000 -Arial.ttf 4 n 24.2793 32.0709 78 I -10.0109 5.6936 42.0000 -Arial.ttf 4 n 24.2793 32.0709 79 ° -10.1456 15.8083 15.8083 -Arial.ttf 4 n 24.2793 32.0709 80 K -10.2314 34.5749 42.0000 -Arial.ttf 4 n 24.2793 32.0709 81 H -9.7754 32.9083 42.0000 -Arial.ttf 4 n 24.2793 32.0709 82 q 0.0455 26.3123 43.6877 -Arial.ttf 4 n 24.2793 32.0709 83 & -9.6538 35.1148 42.3103 -Arial.ttf 4 n 24.2793 32.0709 84 ’ -10.0026 5.9231 14.0000 -Arial.ttf 4 n 24.2793 32.0709 85 [ -10.1237 11.0000 53.6167 -Arial.ttf 4 n 24.2793 32.0709 86 - 14.3046 15.4980 5.2626 -Arial.ttf 4 n 24.2793 32.0709 87 Y -9.9927 38.4601 42.0000 -Arial.ttf 4 n 24.2793 32.0709 88 Q -10.7122 39.5749 46.3212 -Arial.ttf 4 n 24.2793 32.0709 89 " -10.1858 15.8083 15.1916 -Arial.ttf 4 n 24.2793 32.0709 90 ! -10.1152 5.2626 42.0000 -Arial.ttf 4 n 24.2793 32.0709 91 x 1.1916 29.1060 30.8793 -Arial.ttf 4 n 24.2793 32.0709 92 ) -9.9942 14.4103 53.6167 -Arial.ttf 4 n 24.2793 32.0709 93 = 1.9261 27.8793 17.8852 -Arial.ttf 4 n 24.2793 32.0709 94 + -2.3360 27.8753 27.8753 -Arial.ttf 4 n 24.2793 32.0709 95 X -10.0007 37.6626 42.0000 -Arial.ttf 4 n 24.2793 32.0709 96 » 3.9757 25.0439 26.1917 -Arial.ttf 4 n 24.2793 32.0709 97 ' -10.1466 5.2626 15.1916 -Arial.ttf 4 n 24.2793 32.0709 98 ¢ -10.1038 25.7813 54.2685 -Arial.ttf 4 n 24.2793 32.0709 99 Z -10.1777 33.0729 42.0000 -Arial.ttf 4 n 24.2793 32.0709 100 > -2.2836 27.8354 27.8704 -Arial.ttf 4 n 24.2793 32.0709 101 ® -10.4805 43.1916 42.9709 -Arial.ttf 4 n 24.2793 32.0709 102 © -10.7900 43.1916 42.9709 -Arial.ttf 4 n 24.2793 32.0709 103 ] -9.9099 11.0000 53.6167 -Arial.ttf 4 n 24.2793 32.0709 104 é -10.9650 27.4690 43.5020 -Arial.ttf 4 n 24.2793 32.0709 105 z 1.1407 26.3123 30.8793 -Arial.ttf 4 n 24.2793 32.0709 106 _ 38.5286 33.3832 5.2626 -Arial.ttf 4 n 24.2793 32.0709 107 ¥ -9.8889 32.0291 42.0000 -Arial.ttf 5 P 31.4542 42.0000 1 t -0.0663 15.0709 42.3103 -Arial.ttf 5 P 31.4542 42.0000 2 h -0.0345 24.2793 42.0000 -Arial.ttf 5 P 31.4542 42.0000 3 a 9.8282 27.4690 32.3813 -Arial.ttf 5 P 31.4542 42.0000 4 n 10.1952 24.2793 32.0709 -Arial.ttf 5 P 31.4542 42.0000 5 P -0.1861 31.4542 42.0000 -Arial.ttf 5 P 31.4542 42.0000 6 o 9.9216 27.4690 32.3813 -Arial.ttf 5 P 31.4542 42.0000 7 e 10.0728 27.4690 32.3813 -Arial.ttf 5 P 31.4542 42.0000 8 : 11.1525 5.2626 30.8793 -Arial.ttf 5 P 31.4542 42.0000 9 r 9.9031 16.5689 32.0709 -Arial.ttf 5 P 31.4542 42.0000 10 l -0.0456 5.2626 42.0000 -Arial.ttf 5 P 31.4542 42.0000 11 i 0.0943 5.2626 42.0000 -Arial.ttf 5 P 31.4542 42.0000 12 1 0.5377 15.2355 41.6897 -Arial.ttf 5 P 31.4542 42.0000 13 | 0.2004 4.1916 54.4980 -Arial.ttf 5 P 31.4542 42.0000 14 N -0.1958 32.9083 42.0000 -Arial.ttf 5 P 31.4542 42.0000 15 f -0.1368 18.0709 42.0000 -Arial.ttf 5 P 31.4542 42.0000 16 g 9.7052 26.3123 43.6877 -Arial.ttf 5 P 31.4542 42.0000 17 d 0.1448 26.3123 42.3103 -Arial.ttf 5 P 31.4542 42.0000 18 W -0.1669 57.1916 42.0000 -Arial.ttf 5 P 31.4542 42.0000 19 s 10.1175 24.9561 32.3813 -Arial.ttf 5 P 31.4542 42.0000 20 c 10.1800 26.8084 32.3813 -Arial.ttf 5 P 31.4542 42.0000 21 u 11.0761 24.2793 31.1896 -Arial.ttf 5 P 31.4542 42.0000 22 3 0.5406 26.8483 41.6897 -Arial.ttf 5 P 31.4542 42.0000 23 ~ 17.1402 29.9083 10.9561 -Arial.ttf 5 P 31.4542 42.0000 24 # -0.0065 31.2646 42.0000 -Arial.ttf 5 P 31.4542 42.0000 25 O -1.0150 39.5749 43.3212 -Arial.ttf 5 P 31.4542 42.0000 26 ` -0.1613 10.9561 8.0769 -Arial.ttf 5 P 31.4542 42.0000 27 @ -0.1973 54.1478 54.3123 -Arial.ttf 5 P 31.4542 42.0000 28 F 0.0264 28.2207 42.0000 -Arial.ttf 5 P 31.4542 42.0000 29 S -0.5737 33.0001 43.3212 -Arial.ttf 5 P 31.4542 42.0000 30 p 9.9774 26.3123 43.6877 -Arial.ttf 5 P 31.4542 42.0000 31 “ -0.1810 13.5690 14.0000 -Arial.ttf 5 P 31.4542 42.0000 32 % 0.0648 44.8793 42.3103 -Arial.ttf 5 P 31.4542 42.0000 33 £ -0.4057 29.8522 42.3103 -Arial.ttf 5 P 31.4542 42.0000 34 . 36.7061 5.2626 5.2626 -Arial.ttf 5 P 31.4542 42.0000 35 2 0.3322 28.6956 41.6897 -Arial.ttf 5 P 31.4542 42.0000 36 5 0.2424 26.8483 41.6897 -Arial.ttf 5 P 31.4542 42.0000 37 m 9.9693 41.4044 32.0709 -Arial.ttf 5 P 31.4542 42.0000 38 V 0.0995 40.5788 42.0000 -Arial.ttf 5 P 31.4542 42.0000 39 6 0.2908 27.8542 41.6897 -Arial.ttf 5 P 31.4542 42.0000 40 w 11.0342 43.4212 30.8793 -Arial.ttf 5 P 31.4542 42.0000 41 T -0.1597 33.6936 42.0000 -Arial.ttf 5 P 31.4542 42.0000 42 M 0.2540 40.5788 42.0000 -Arial.ttf 5 P 31.4542 42.0000 43 G -0.6575 38.6897 43.3212 -Arial.ttf 5 P 31.4542 42.0000 44 b 0.2990 26.3123 42.3103 -Arial.ttf 5 P 31.4542 42.0000 45 9 0.4498 26.8483 41.6897 -Arial.ttf 5 P 31.4542 42.0000 46 ; 10.9097 5.2626 39.6167 -Arial.ttf 5 P 31.4542 42.0000 47 D -0.0281 34.4542 42.0000 -Arial.ttf 5 P 31.4542 42.0000 48 L 0.1506 25.8813 42.0000 -Arial.ttf 5 P 31.4542 42.0000 49 y 10.8449 28.0000 42.4960 -Arial.ttf 5 P 31.4542 42.0000 50 ‘ 0.1570 5.9231 14.0000 -Arial.ttf 5 P 31.4542 42.0000 51 \ 0.0322 17.5749 42.0000 -Arial.ttf 5 P 31.4542 42.0000 52 R -0.3586 36.7497 42.0000 -Arial.ttf 5 P 31.4542 42.0000 53 < 7.3924 27.8354 27.8704 -Arial.ttf 5 P 31.4542 42.0000 54 4 0.3050 28.3503 41.6897 -Arial.ttf 5 P 31.4542 42.0000 55 8 0.5103 26.6626 41.6897 -Arial.ttf 5 P 31.4542 42.0000 56 0 -0.0760 26.8483 41.6897 -Arial.ttf 5 P 31.4542 42.0000 57 A 0.2000 40.5788 42.0000 -Arial.ttf 5 P 31.4542 42.0000 58 E 0.0307 31.4542 42.0000 -Arial.ttf 5 P 31.4542 42.0000 59 B 0.3293 31.4542 42.0000 -Arial.ttf 5 P 31.4542 42.0000 60 v 11.0273 27.8704 30.8793 -Arial.ttf 5 P 31.4542 42.0000 61 k 0.0553 25.1207 42.0000 -Arial.ttf 5 P 31.4542 42.0000 62 J 0.1644 24.0291 42.6606 -Arial.ttf 5 P 31.4542 42.0000 63 U 0.0191 32.9083 42.6606 -Arial.ttf 5 P 31.4542 42.0000 64 j 0.1739 12.3773 53.6167 -Arial.ttf 5 P 31.4542 42.0000 65 ( 0.5260 14.4103 53.6167 -Arial.ttf 5 P 31.4542 42.0000 66 7 0.1004 26.8523 41.6897 -Arial.ttf 5 P 31.4542 42.0000 67 § 0.3267 26.9729 53.9271 -Arial.ttf 5 P 31.4542 42.0000 68 $ -2.2246 27.6897 49.3355 -Arial.ttf 5 P 31.4542 42.0000 69 € -0.4208 33.0769 43.3212 -Arial.ttf 5 P 31.4542 42.0000 70 / -0.1071 17.5749 42.0000 -Arial.ttf 5 P 31.4542 42.0000 71 C -0.6292 36.0000 43.3212 -Arial.ttf 5 P 31.4542 42.0000 72 * 0.1494 20.3453 17.8852 -Arial.ttf 5 P 31.4542 42.0000 73 ” 0.4289 14.2296 14.0000 -Arial.ttf 5 P 31.4542 42.0000 74 ? -0.0854 26.8483 42.0000 -Arial.ttf 5 P 31.4542 42.0000 75 { -0.0356 16.7375 53.6167 -Arial.ttf 5 P 31.4542 42.0000 76 } 0.0348 16.7375 53.6167 -Arial.ttf 5 P 31.4542 42.0000 77 , 36.4946 5.2626 14.0000 -Arial.ttf 5 P 31.4542 42.0000 78 I -0.2276 5.6936 42.0000 -Arial.ttf 5 P 31.4542 42.0000 79 ° -0.3708 15.8083 15.8083 -Arial.ttf 5 P 31.4542 42.0000 80 K -0.1241 34.5749 42.0000 -Arial.ttf 5 P 31.4542 42.0000 81 H -0.0027 32.9083 42.0000 -Arial.ttf 5 P 31.4542 42.0000 82 q 9.9524 26.3123 43.6877 -Arial.ttf 5 P 31.4542 42.0000 83 & -0.1815 35.1148 42.3103 -Arial.ttf 5 P 31.4542 42.0000 84 ’ 0.0010 5.9231 14.0000 -Arial.ttf 5 P 31.4542 42.0000 85 [ -0.0787 11.0000 53.6167 -Arial.ttf 5 P 31.4542 42.0000 86 - 24.3555 15.4980 5.2626 -Arial.ttf 5 P 31.4542 42.0000 87 Y -0.1804 38.4601 42.0000 -Arial.ttf 5 P 31.4542 42.0000 88 Q -0.4563 39.5749 46.3212 -Arial.ttf 5 P 31.4542 42.0000 89 " 0.2347 15.8083 15.1916 -Arial.ttf 5 P 31.4542 42.0000 90 ! 0.1739 5.2626 42.0000 -Arial.ttf 5 P 31.4542 42.0000 91 x 11.2873 29.1060 30.8793 -Arial.ttf 5 P 31.4542 42.0000 92 ) -0.0483 14.4103 53.6167 -Arial.ttf 5 P 31.4542 42.0000 93 = 11.7739 27.8793 17.8852 -Arial.ttf 5 P 31.4542 42.0000 94 + 7.5282 27.8753 27.8753 -Arial.ttf 5 P 31.4542 42.0000 95 X -0.0477 37.6626 42.0000 -Arial.ttf 5 P 31.4542 42.0000 96 » 14.2250 25.0439 26.1917 -Arial.ttf 5 P 31.4542 42.0000 97 ' -0.1685 5.2626 15.1916 -Arial.ttf 5 P 31.4542 42.0000 98 ¢ 0.1026 25.7813 54.2685 -Arial.ttf 5 P 31.4542 42.0000 99 Z 0.2195 33.0729 42.0000 -Arial.ttf 5 P 31.4542 42.0000 100 > 7.3581 27.8354 27.8704 -Arial.ttf 5 P 31.4542 42.0000 101 ® -0.5381 43.1916 42.9709 -Arial.ttf 5 P 31.4542 42.0000 102 © -0.7296 43.1916 42.9709 -Arial.ttf 5 P 31.4542 42.0000 103 ] 0.0555 11.0000 53.6167 -Arial.ttf 5 P 31.4542 42.0000 104 é -1.1545 27.4690 43.5020 -Arial.ttf 5 P 31.4542 42.0000 105 z 11.1043 26.3123 30.8793 -Arial.ttf 5 P 31.4542 42.0000 106 _ 48.5059 33.3832 5.2626 -Arial.ttf 5 P 31.4542 42.0000 107 ¥ -0.0553 32.0291 42.0000 -Arial.ttf 6 o 27.4690 32.3813 1 t -10.0274 15.0709 42.3103 -Arial.ttf 6 o 27.4690 32.3813 2 h -10.0268 24.2793 42.0000 -Arial.ttf 6 o 27.4690 32.3813 3 a -0.1506 27.4690 32.3813 -Arial.ttf 6 o 27.4690 32.3813 4 n -0.0922 24.2793 32.0709 -Arial.ttf 6 o 27.4690 32.3813 5 P -9.7261 31.4542 42.0000 -Arial.ttf 6 o 27.4690 32.3813 6 o -0.2276 27.4690 32.3813 -Arial.ttf 6 o 27.4690 32.3813 7 e -0.0665 27.4690 32.3813 -Arial.ttf 6 o 27.4690 32.3813 8 : 1.1642 5.2626 30.8793 -Arial.ttf 6 o 27.4690 32.3813 9 r 0.0223 16.5689 32.0709 -Arial.ttf 6 o 27.4690 32.3813 10 l -9.9831 5.2626 42.0000 -Arial.ttf 6 o 27.4690 32.3813 11 i -9.6778 5.2626 42.0000 -Arial.ttf 6 o 27.4690 32.3813 12 1 -9.6133 15.2355 41.6897 -Arial.ttf 6 o 27.4690 32.3813 13 | -10.1166 4.1916 54.4980 -Arial.ttf 6 o 27.4690 32.3813 14 N -9.9030 32.9083 42.0000 -Arial.ttf 6 o 27.4690 32.3813 15 f -9.7730 18.0709 42.0000 -Arial.ttf 6 o 27.4690 32.3813 16 g 0.2922 26.3123 43.6877 -Arial.ttf 6 o 27.4690 32.3813 17 d -9.5870 26.3123 42.3103 -Arial.ttf 6 o 27.4690 32.3813 18 W -10.2064 57.1916 42.0000 -Arial.ttf 6 o 27.4690 32.3813 19 s 0.0689 24.9561 32.3813 -Arial.ttf 6 o 27.4690 32.3813 20 c 0.1724 26.8084 32.3813 -Arial.ttf 6 o 27.4690 32.3813 21 u 1.3629 24.2793 31.1896 -Arial.ttf 6 o 27.4690 32.3813 22 3 -9.7306 26.8483 41.6897 -Arial.ttf 6 o 27.4690 32.3813 23 ~ 7.0207 29.9083 10.9561 -Arial.ttf 6 o 27.4690 32.3813 24 # -10.1099 31.2646 42.0000 -Arial.ttf 6 o 27.4690 32.3813 25 O -10.4064 39.5749 43.3212 -Arial.ttf 6 o 27.4690 32.3813 26 ` -9.8163 10.9561 8.0769 -Arial.ttf 6 o 27.4690 32.3813 27 @ -9.8187 54.1478 54.3123 -Arial.ttf 6 o 27.4690 32.3813 28 F -9.9784 28.2207 42.0000 -Arial.ttf 6 o 27.4690 32.3813 29 S -10.7991 33.0001 43.3212 -Arial.ttf 6 o 27.4690 32.3813 30 p -0.2348 26.3123 43.6877 -Arial.ttf 6 o 27.4690 32.3813 31 “ -10.0531 13.5690 14.0000 -Arial.ttf 6 o 27.4690 32.3813 32 % -9.8559 44.8793 42.3103 -Arial.ttf 6 o 27.4690 32.3813 33 £ -9.7832 29.8522 42.3103 -Arial.ttf 6 o 27.4690 32.3813 34 . 26.8440 5.2626 5.2626 -Arial.ttf 6 o 27.4690 32.3813 35 2 -9.6697 28.6956 41.6897 -Arial.ttf 6 o 27.4690 32.3813 36 5 -9.4793 26.8483 41.6897 -Arial.ttf 6 o 27.4690 32.3813 37 m -0.2229 41.4044 32.0709 -Arial.ttf 6 o 27.4690 32.3813 38 V -9.8601 40.5788 42.0000 -Arial.ttf 6 o 27.4690 32.3813 39 6 -9.4067 27.8542 41.6897 -Arial.ttf 6 o 27.4690 32.3813 40 w 1.0924 43.4212 30.8793 -Arial.ttf 6 o 27.4690 32.3813 41 T -9.7869 33.6936 42.0000 -Arial.ttf 6 o 27.4690 32.3813 42 M -9.9912 40.5788 42.0000 -Arial.ttf 6 o 27.4690 32.3813 43 G -10.1543 38.6897 43.3212 -Arial.ttf 6 o 27.4690 32.3813 44 b -9.9429 26.3123 42.3103 -Arial.ttf 6 o 27.4690 32.3813 45 9 -9.6465 26.8483 41.6897 -Arial.ttf 6 o 27.4690 32.3813 46 ; 1.1614 5.2626 39.6167 -Arial.ttf 6 o 27.4690 32.3813 47 D -10.0007 34.4542 42.0000 -Arial.ttf 6 o 27.4690 32.3813 48 L -9.5832 25.8813 42.0000 -Arial.ttf 6 o 27.4690 32.3813 49 y 1.3334 28.0000 42.4960 -Arial.ttf 6 o 27.4690 32.3813 50 ‘ -9.9733 5.9231 14.0000 -Arial.ttf 6 o 27.4690 32.3813 51 \ -10.1329 17.5749 42.0000 -Arial.ttf 6 o 27.4690 32.3813 52 R -9.9099 36.7497 42.0000 -Arial.ttf 6 o 27.4690 32.3813 53 < -2.5201 27.8354 27.8704 -Arial.ttf 6 o 27.4690 32.3813 54 4 -9.7455 28.3503 41.6897 -Arial.ttf 6 o 27.4690 32.3813 55 8 -9.5191 26.6626 41.6897 -Arial.ttf 6 o 27.4690 32.3813 56 0 -9.4529 26.8483 41.6897 -Arial.ttf 6 o 27.4690 32.3813 57 A -10.3057 40.5788 42.0000 -Arial.ttf 6 o 27.4690 32.3813 58 E -10.0064 31.4542 42.0000 -Arial.ttf 6 o 27.4690 32.3813 59 B -10.1689 31.4542 42.0000 -Arial.ttf 6 o 27.4690 32.3813 60 v 1.3350 27.8704 30.8793 -Arial.ttf 6 o 27.4690 32.3813 61 k -9.8061 25.1207 42.0000 -Arial.ttf 6 o 27.4690 32.3813 62 J -10.0186 24.0291 42.6606 -Arial.ttf 6 o 27.4690 32.3813 63 U -9.9514 32.9083 42.6606 -Arial.ttf 6 o 27.4690 32.3813 64 j -10.3429 12.3773 53.6167 -Arial.ttf 6 o 27.4690 32.3813 65 ( -10.0220 14.4103 53.6167 -Arial.ttf 6 o 27.4690 32.3813 66 7 -10.0036 26.8523 41.6897 -Arial.ttf 6 o 27.4690 32.3813 67 § -10.0008 26.9729 53.9271 -Arial.ttf 6 o 27.4690 32.3813 68 $ -12.3133 27.6897 49.3355 -Arial.ttf 6 o 27.4690 32.3813 69 € -10.7112 33.0769 43.3212 -Arial.ttf 6 o 27.4690 32.3813 70 / -9.9233 17.5749 42.0000 -Arial.ttf 6 o 27.4690 32.3813 71 C -10.3675 36.0000 43.3212 -Arial.ttf 6 o 27.4690 32.3813 72 * -9.8230 20.3453 17.8852 -Arial.ttf 6 o 27.4690 32.3813 73 ” -9.9084 14.2296 14.0000 -Arial.ttf 6 o 27.4690 32.3813 74 ? -9.8310 26.8483 42.0000 -Arial.ttf 6 o 27.4690 32.3813 75 { -9.8077 16.7375 53.6167 -Arial.ttf 6 o 27.4690 32.3813 76 } -10.2641 16.7375 53.6167 -Arial.ttf 6 o 27.4690 32.3813 77 , 26.8459 5.2626 14.0000 -Arial.ttf 6 o 27.4690 32.3813 78 I -10.0232 5.6936 42.0000 -Arial.ttf 6 o 27.4690 32.3813 79 ° -9.9592 15.8083 15.8083 -Arial.ttf 6 o 27.4690 32.3813 80 K -10.0840 34.5749 42.0000 -Arial.ttf 6 o 27.4690 32.3813 81 H -9.9980 32.9083 42.0000 -Arial.ttf 6 o 27.4690 32.3813 82 q 0.1199 26.3123 43.6877 -Arial.ttf 6 o 27.4690 32.3813 83 & -10.2034 35.1148 42.3103 -Arial.ttf 6 o 27.4690 32.3813 84 ’ -10.0446 5.9231 14.0000 -Arial.ttf 6 o 27.4690 32.3813 85 [ -10.2122 11.0000 53.6167 -Arial.ttf 6 o 27.4690 32.3813 86 - 14.3506 15.4980 5.2626 -Arial.ttf 6 o 27.4690 32.3813 87 Y -10.0419 38.4601 42.0000 -Arial.ttf 6 o 27.4690 32.3813 88 Q -10.6104 39.5749 46.3212 -Arial.ttf 6 o 27.4690 32.3813 89 " -9.9196 15.8083 15.1916 -Arial.ttf 6 o 27.4690 32.3813 90 ! -9.9669 5.2626 42.0000 -Arial.ttf 6 o 27.4690 32.3813 91 x 1.0977 29.1060 30.8793 -Arial.ttf 6 o 27.4690 32.3813 92 ) -9.7487 14.4103 53.6167 -Arial.ttf 6 o 27.4690 32.3813 93 = 2.2007 27.8793 17.8852 -Arial.ttf 6 o 27.4690 32.3813 94 + -2.4728 27.8753 27.8753 -Arial.ttf 6 o 27.4690 32.3813 95 X -9.8585 37.6626 42.0000 -Arial.ttf 6 o 27.4690 32.3813 96 » 4.1178 25.0439 26.1917 -Arial.ttf 6 o 27.4690 32.3813 97 ' -9.8172 5.2626 15.1916 -Arial.ttf 6 o 27.4690 32.3813 98 ¢ -9.7708 25.7813 54.2685 -Arial.ttf 6 o 27.4690 32.3813 99 Z -10.0107 33.0729 42.0000 -Arial.ttf 6 o 27.4690 32.3813 100 > -2.3476 27.8354 27.8704 -Arial.ttf 6 o 27.4690 32.3813 101 ® -10.7181 43.1916 42.9709 -Arial.ttf 6 o 27.4690 32.3813 102 © -10.4491 43.1916 42.9709 -Arial.ttf 6 o 27.4690 32.3813 103 ] -9.7721 11.0000 53.6167 -Arial.ttf 6 o 27.4690 32.3813 104 é -10.7745 27.4690 43.5020 -Arial.ttf 6 o 27.4690 32.3813 105 z 1.3051 26.3123 30.8793 -Arial.ttf 6 o 27.4690 32.3813 106 _ 38.6082 33.3832 5.2626 -Arial.ttf 6 o 27.4690 32.3813 107 ¥ -10.0347 32.0291 42.0000 -Arial.ttf 7 e 27.4690 32.3813 1 t -9.6963 15.0709 42.3103 -Arial.ttf 7 e 27.4690 32.3813 2 h -9.5578 24.2793 42.0000 -Arial.ttf 7 e 27.4690 32.3813 3 a -0.0456 27.4690 32.3813 -Arial.ttf 7 e 27.4690 32.3813 4 n 0.2979 24.2793 32.0709 -Arial.ttf 7 e 27.4690 32.3813 5 P -9.7960 31.4542 42.0000 -Arial.ttf 7 e 27.4690 32.3813 6 o 0.0251 27.4690 32.3813 -Arial.ttf 7 e 27.4690 32.3813 7 e 0.1103 27.4690 32.3813 -Arial.ttf 7 e 27.4690 32.3813 8 : 1.0650 5.2626 30.8793 -Arial.ttf 7 e 27.4690 32.3813 9 r -0.1297 16.5689 32.0709 -Arial.ttf 7 e 27.4690 32.3813 10 l -10.0171 5.2626 42.0000 -Arial.ttf 7 e 27.4690 32.3813 11 i -10.1030 5.2626 42.0000 -Arial.ttf 7 e 27.4690 32.3813 12 1 -9.7869 15.2355 41.6897 -Arial.ttf 7 e 27.4690 32.3813 13 | -9.9360 4.1916 54.4980 -Arial.ttf 7 e 27.4690 32.3813 14 N -10.0172 32.9083 42.0000 -Arial.ttf 7 e 27.4690 32.3813 15 f -9.9910 18.0709 42.0000 -Arial.ttf 7 e 27.4690 32.3813 16 g 0.1114 26.3123 43.6877 -Arial.ttf 7 e 27.4690 32.3813 17 d -9.8961 26.3123 42.3103 -Arial.ttf 7 e 27.4690 32.3813 18 W -9.7261 57.1916 42.0000 -Arial.ttf 7 e 27.4690 32.3813 19 s -0.2414 24.9561 32.3813 -Arial.ttf 7 e 27.4690 32.3813 20 c -0.1931 26.8084 32.3813 -Arial.ttf 7 e 27.4690 32.3813 21 u 1.2977 24.2793 31.1896 -Arial.ttf 7 e 27.4690 32.3813 22 3 -9.4147 26.8483 41.6897 -Arial.ttf 7 e 27.4690 32.3813 23 ~ 7.0223 29.9083 10.9561 -Arial.ttf 7 e 27.4690 32.3813 24 # -10.0973 31.2646 42.0000 -Arial.ttf 7 e 27.4690 32.3813 25 O -10.6518 39.5749 43.3212 -Arial.ttf 7 e 27.4690 32.3813 26 ` -9.8629 10.9561 8.0769 -Arial.ttf 7 e 27.4690 32.3813 27 @ -9.8877 54.1478 54.3123 -Arial.ttf 7 e 27.4690 32.3813 28 F -10.0233 28.2207 42.0000 -Arial.ttf 7 e 27.4690 32.3813 29 S -10.6613 33.0001 43.3212 -Arial.ttf 7 e 27.4690 32.3813 30 p -0.1762 26.3123 43.6877 -Arial.ttf 7 e 27.4690 32.3813 31 “ -10.0641 13.5690 14.0000 -Arial.ttf 7 e 27.4690 32.3813 32 % -10.0415 44.8793 42.3103 -Arial.ttf 7 e 27.4690 32.3813 33 £ -10.1557 29.8522 42.3103 -Arial.ttf 7 e 27.4690 32.3813 34 . 26.7378 5.2626 5.2626 -Arial.ttf 7 e 27.4690 32.3813 35 2 -9.5948 28.6956 41.6897 -Arial.ttf 7 e 27.4690 32.3813 36 5 -9.5179 26.8483 41.6897 -Arial.ttf 7 e 27.4690 32.3813 37 m -0.0584 41.4044 32.0709 -Arial.ttf 7 e 27.4690 32.3813 38 V -10.1222 40.5788 42.0000 -Arial.ttf 7 e 27.4690 32.3813 39 6 -9.8267 27.8542 41.6897 -Arial.ttf 7 e 27.4690 32.3813 40 w 1.1365 43.4212 30.8793 -Arial.ttf 7 e 27.4690 32.3813 41 T -9.6995 33.6936 42.0000 -Arial.ttf 7 e 27.4690 32.3813 42 M -9.9774 40.5788 42.0000 -Arial.ttf 7 e 27.4690 32.3813 43 G -10.6008 38.6897 43.3212 -Arial.ttf 7 e 27.4690 32.3813 44 b -10.1591 26.3123 42.3103 -Arial.ttf 7 e 27.4690 32.3813 45 9 -9.6252 26.8483 41.6897 -Arial.ttf 7 e 27.4690 32.3813 46 ; 0.8755 5.2626 39.6167 -Arial.ttf 7 e 27.4690 32.3813 47 D -10.0287 34.4542 42.0000 -Arial.ttf 7 e 27.4690 32.3813 48 L -10.0494 25.8813 42.0000 -Arial.ttf 7 e 27.4690 32.3813 49 y 1.4304 28.0000 42.4960 -Arial.ttf 7 e 27.4690 32.3813 50 ‘ -10.0557 5.9231 14.0000 -Arial.ttf 7 e 27.4690 32.3813 51 \ -9.9069 17.5749 42.0000 -Arial.ttf 7 e 27.4690 32.3813 52 R -9.9662 36.7497 42.0000 -Arial.ttf 7 e 27.4690 32.3813 53 < -2.2782 27.8354 27.8704 -Arial.ttf 7 e 27.4690 32.3813 54 4 -9.5042 28.3503 41.6897 -Arial.ttf 7 e 27.4690 32.3813 55 8 -9.7727 26.6626 41.6897 -Arial.ttf 7 e 27.4690 32.3813 56 0 -9.6751 26.8483 41.6897 -Arial.ttf 7 e 27.4690 32.3813 57 A -9.9769 40.5788 42.0000 -Arial.ttf 7 e 27.4690 32.3813 58 E -9.7896 31.4542 42.0000 -Arial.ttf 7 e 27.4690 32.3813 59 B -10.1480 31.4542 42.0000 -Arial.ttf 7 e 27.4690 32.3813 60 v 1.0082 27.8704 30.8793 -Arial.ttf 7 e 27.4690 32.3813 61 k -9.9621 25.1207 42.0000 -Arial.ttf 7 e 27.4690 32.3813 62 J -9.9555 24.0291 42.6606 -Arial.ttf 7 e 27.4690 32.3813 63 U -9.8590 32.9083 42.6606 -Arial.ttf 7 e 27.4690 32.3813 64 j -10.0044 12.3773 53.6167 -Arial.ttf 7 e 27.4690 32.3813 65 ( -9.9467 14.4103 53.6167 -Arial.ttf 7 e 27.4690 32.3813 66 7 -9.5816 26.8523 41.6897 -Arial.ttf 7 e 27.4690 32.3813 67 § -9.9317 26.9729 53.9271 -Arial.ttf 7 e 27.4690 32.3813 68 $ -11.7156 27.6897 49.3355 -Arial.ttf 7 e 27.4690 32.3813 69 € -10.6380 33.0769 43.3212 -Arial.ttf 7 e 27.4690 32.3813 70 / -10.1523 17.5749 42.0000 -Arial.ttf 7 e 27.4690 32.3813 71 C -10.6931 36.0000 43.3212 -Arial.ttf 7 e 27.4690 32.3813 72 * -9.7830 20.3453 17.8852 -Arial.ttf 7 e 27.4690 32.3813 73 ” -9.6410 14.2296 14.0000 -Arial.ttf 7 e 27.4690 32.3813 74 ? -9.8151 26.8483 42.0000 -Arial.ttf 7 e 27.4690 32.3813 75 { -9.9693 16.7375 53.6167 -Arial.ttf 7 e 27.4690 32.3813 76 } -10.0812 16.7375 53.6167 -Arial.ttf 7 e 27.4690 32.3813 77 , 26.7632 5.2626 14.0000 -Arial.ttf 7 e 27.4690 32.3813 78 I -9.9980 5.6936 42.0000 -Arial.ttf 7 e 27.4690 32.3813 79 ° -10.0049 15.8083 15.8083 -Arial.ttf 7 e 27.4690 32.3813 80 K -9.9003 34.5749 42.0000 -Arial.ttf 7 e 27.4690 32.3813 81 H -9.7886 32.9083 42.0000 -Arial.ttf 7 e 27.4690 32.3813 82 q 0.0289 26.3123 43.6877 -Arial.ttf 7 e 27.4690 32.3813 83 & -9.8835 35.1148 42.3103 -Arial.ttf 7 e 27.4690 32.3813 84 ’ -10.0839 5.9231 14.0000 -Arial.ttf 7 e 27.4690 32.3813 85 [ -10.2385 11.0000 53.6167 -Arial.ttf 7 e 27.4690 32.3813 86 - 14.3019 15.4980 5.2626 -Arial.ttf 7 e 27.4690 32.3813 87 Y -10.1348 38.4601 42.0000 -Arial.ttf 7 e 27.4690 32.3813 88 Q -10.6544 39.5749 46.3212 -Arial.ttf 7 e 27.4690 32.3813 89 " -9.9709 15.8083 15.1916 -Arial.ttf 7 e 27.4690 32.3813 90 ! -10.0978 5.2626 42.0000 -Arial.ttf 7 e 27.4690 32.3813 91 x 1.0977 29.1060 30.8793 -Arial.ttf 7 e 27.4690 32.3813 92 ) -10.0118 14.4103 53.6167 -Arial.ttf 7 e 27.4690 32.3813 93 = 2.1207 27.8793 17.8852 -Arial.ttf 7 e 27.4690 32.3813 94 + -2.4660 27.8753 27.8753 -Arial.ttf 7 e 27.4690 32.3813 95 X -9.8241 37.6626 42.0000 -Arial.ttf 7 e 27.4690 32.3813 96 » 3.6325 25.0439 26.1917 -Arial.ttf 7 e 27.4690 32.3813 97 ' -9.8352 5.2626 15.1916 -Arial.ttf 7 e 27.4690 32.3813 98 ¢ -10.0082 25.7813 54.2685 -Arial.ttf 7 e 27.4690 32.3813 99 Z -9.9360 33.0729 42.0000 -Arial.ttf 7 e 27.4690 32.3813 100 > -2.5524 27.8354 27.8704 -Arial.ttf 7 e 27.4690 32.3813 101 ® -10.7441 43.1916 42.9709 -Arial.ttf 7 e 27.4690 32.3813 102 © -10.5012 43.1916 42.9709 -Arial.ttf 7 e 27.4690 32.3813 103 ] -9.5764 11.0000 53.6167 -Arial.ttf 7 e 27.4690 32.3813 104 é -11.3662 27.4690 43.5020 -Arial.ttf 7 e 27.4690 32.3813 105 z 0.7778 26.3123 30.8793 -Arial.ttf 7 e 27.4690 32.3813 106 _ 38.4484 33.3832 5.2626 -Arial.ttf 7 e 27.4690 32.3813 107 ¥ -10.0723 32.0291 42.0000 -Arial.ttf 8 : 5.2626 30.8793 1 t -10.8667 15.0709 42.3103 -Arial.ttf 8 : 5.2626 30.8793 2 h -11.1690 24.2793 42.0000 -Arial.ttf 8 : 5.2626 30.8793 3 a -1.3173 27.4690 32.3813 -Arial.ttf 8 : 5.2626 30.8793 4 n -1.1916 24.2793 32.0709 -Arial.ttf 8 : 5.2626 30.8793 5 P -10.8614 31.4542 42.0000 -Arial.ttf 8 : 5.2626 30.8793 6 o -1.1031 27.4690 32.3813 -Arial.ttf 8 : 5.2626 30.8793 7 e -1.3322 27.4690 32.3813 -Arial.ttf 8 : 5.2626 30.8793 8 : 0.0063 5.2626 30.8793 -Arial.ttf 8 : 5.2626 30.8793 9 r -1.0263 16.5689 32.0709 -Arial.ttf 8 : 5.2626 30.8793 10 l -11.0487 5.2626 42.0000 -Arial.ttf 8 : 5.2626 30.8793 11 i -10.9151 5.2626 42.0000 -Arial.ttf 8 : 5.2626 30.8793 12 1 -10.8985 15.2355 41.6897 -Arial.ttf 8 : 5.2626 30.8793 13 | -11.1112 4.1916 54.4980 -Arial.ttf 8 : 5.2626 30.8793 14 N -11.1292 32.9083 42.0000 -Arial.ttf 8 : 5.2626 30.8793 15 f -10.9977 18.0709 42.0000 -Arial.ttf 8 : 5.2626 30.8793 16 g -1.1555 26.3123 43.6877 -Arial.ttf 8 : 5.2626 30.8793 17 d -11.1207 26.3123 42.3103 -Arial.ttf 8 : 5.2626 30.8793 18 W -10.9414 57.1916 42.0000 -Arial.ttf 8 : 5.2626 30.8793 19 s -1.1694 24.9561 32.3813 -Arial.ttf 8 : 5.2626 30.8793 20 c -1.2744 26.8084 32.3813 -Arial.ttf 8 : 5.2626 30.8793 21 u 0.0000 24.2793 31.1896 -Arial.ttf 8 : 5.2626 30.8793 22 3 -10.6878 26.8483 41.6897 -Arial.ttf 8 : 5.2626 30.8793 23 ~ 5.9474 29.9083 10.9561 -Arial.ttf 8 : 5.2626 30.8793 24 # -11.1054 31.2646 42.0000 -Arial.ttf 8 : 5.2626 30.8793 25 O -11.7271 39.5749 43.3212 -Arial.ttf 8 : 5.2626 30.8793 26 ` -11.1127 10.9561 8.0769 -Arial.ttf 8 : 5.2626 30.8793 27 @ -11.2956 54.1478 54.3123 -Arial.ttf 8 : 5.2626 30.8793 28 F -11.0507 28.2207 42.0000 -Arial.ttf 8 : 5.2626 30.8793 29 S -11.6128 33.0001 43.3212 -Arial.ttf 8 : 5.2626 30.8793 30 p -1.0204 26.3123 43.6877 -Arial.ttf 8 : 5.2626 30.8793 31 “ -11.1127 13.5690 14.0000 -Arial.ttf 8 : 5.2626 30.8793 32 % -11.1069 44.8793 42.3103 -Arial.ttf 8 : 5.2626 30.8793 33 £ -11.1609 29.8522 42.3103 -Arial.ttf 8 : 5.2626 30.8793 34 . 25.5020 5.2626 5.2626 -Arial.ttf 8 : 5.2626 30.8793 35 2 -10.8862 28.6956 41.6897 -Arial.ttf 8 : 5.2626 30.8793 36 5 -10.8354 26.8483 41.6897 -Arial.ttf 8 : 5.2626 30.8793 37 m -1.0411 41.4044 32.0709 -Arial.ttf 8 : 5.2626 30.8793 38 V -11.1578 40.5788 42.0000 -Arial.ttf 8 : 5.2626 30.8793 39 6 -10.6762 27.8542 41.6897 -Arial.ttf 8 : 5.2626 30.8793 40 w 0.2291 43.4212 30.8793 -Arial.ttf 8 : 5.2626 30.8793 41 T -11.1345 33.6936 42.0000 -Arial.ttf 8 : 5.2626 30.8793 42 M -11.1552 40.5788 42.0000 -Arial.ttf 8 : 5.2626 30.8793 43 G -11.6642 38.6897 43.3212 -Arial.ttf 8 : 5.2626 30.8793 44 b -11.3632 26.3123 42.3103 -Arial.ttf 8 : 5.2626 30.8793 45 9 -10.8215 26.8483 41.6897 -Arial.ttf 8 : 5.2626 30.8793 46 ; 0.0057 5.2626 39.6167 -Arial.ttf 8 : 5.2626 30.8793 47 D -11.0751 34.4542 42.0000 -Arial.ttf 8 : 5.2626 30.8793 48 L -11.3413 25.8813 42.0000 -Arial.ttf 8 : 5.2626 30.8793 49 y -0.1118 28.0000 42.4960 -Arial.ttf 8 : 5.2626 30.8793 50 ‘ -11.0143 5.9231 14.0000 -Arial.ttf 8 : 5.2626 30.8793 51 \ -11.1981 17.5749 42.0000 -Arial.ttf 8 : 5.2626 30.8793 52 R -11.2889 36.7497 42.0000 -Arial.ttf 8 : 5.2626 30.8793 53 < -3.5749 27.8354 27.8704 -Arial.ttf 8 : 5.2626 30.8793 54 4 -10.8023 28.3503 41.6897 -Arial.ttf 8 : 5.2626 30.8793 55 8 -10.8846 26.6626 41.6897 -Arial.ttf 8 : 5.2626 30.8793 56 0 -10.7303 26.8483 41.6897 -Arial.ttf 8 : 5.2626 30.8793 57 A -10.9499 40.5788 42.0000 -Arial.ttf 8 : 5.2626 30.8793 58 E -11.1096 31.4542 42.0000 -Arial.ttf 8 : 5.2626 30.8793 59 B -11.0698 31.4542 42.0000 -Arial.ttf 8 : 5.2626 30.8793 60 v -0.0044 27.8704 30.8793 -Arial.ttf 8 : 5.2626 30.8793 61 k -11.2544 25.1207 42.0000 -Arial.ttf 8 : 5.2626 30.8793 62 J -11.1207 24.0291 42.6606 -Arial.ttf 8 : 5.2626 30.8793 63 U -11.1674 32.9083 42.6606 -Arial.ttf 8 : 5.2626 30.8793 64 j -11.2173 12.3773 53.6167 -Arial.ttf 8 : 5.2626 30.8793 65 ( -11.2437 14.4103 53.6167 -Arial.ttf 8 : 5.2626 30.8793 66 7 -10.8449 26.8523 41.6897 -Arial.ttf 8 : 5.2626 30.8793 67 § -11.0724 26.9729 53.9271 -Arial.ttf 8 : 5.2626 30.8793 68 $ -13.1109 27.6897 49.3355 -Arial.ttf 8 : 5.2626 30.8793 69 € -11.8184 33.0769 43.3212 -Arial.ttf 8 : 5.2626 30.8793 70 / -11.1096 17.5749 42.0000 -Arial.ttf 8 : 5.2626 30.8793 71 C -11.7499 36.0000 43.3212 -Arial.ttf 8 : 5.2626 30.8793 72 * -11.1923 20.3453 17.8852 -Arial.ttf 8 : 5.2626 30.8793 73 ” -11.0713 14.2296 14.0000 -Arial.ttf 8 : 5.2626 30.8793 74 ? -11.1923 26.8483 42.0000 -Arial.ttf 8 : 5.2626 30.8793 75 { -11.1345 16.7375 53.6167 -Arial.ttf 8 : 5.2626 30.8793 76 } -10.9113 16.7375 53.6167 -Arial.ttf 8 : 5.2626 30.8793 77 , 25.5573 5.2626 14.0000 -Arial.ttf 8 : 5.2626 30.8793 78 I -11.5287 5.6936 42.0000 -Arial.ttf 8 : 5.2626 30.8793 79 ° -11.0423 15.8083 15.8083 -Arial.ttf 8 : 5.2626 30.8793 80 K -10.9224 34.5749 42.0000 -Arial.ttf 8 : 5.2626 30.8793 81 H -11.3498 32.9083 42.0000 -Arial.ttf 8 : 5.2626 30.8793 82 q -1.1916 26.3123 43.6877 -Arial.ttf 8 : 5.2626 30.8793 83 & -11.1923 35.1148 42.3103 -Arial.ttf 8 : 5.2626 30.8793 84 ’ -11.2448 5.9231 14.0000 -Arial.ttf 8 : 5.2626 30.8793 85 [ -11.0571 11.0000 53.6167 -Arial.ttf 8 : 5.2626 30.8793 86 - 13.1612 15.4980 5.2626 -Arial.ttf 8 : 5.2626 30.8793 87 Y -11.0601 38.4601 42.0000 -Arial.ttf 8 : 5.2626 30.8793 88 Q -11.6848 39.5749 46.3212 -Arial.ttf 8 : 5.2626 30.8793 89 " -11.1981 15.8083 15.1916 -Arial.ttf 8 : 5.2626 30.8793 90 ! -11.0947 5.2626 42.0000 -Arial.ttf 8 : 5.2626 30.8793 91 x 0.1601 29.1060 30.8793 -Arial.ttf 8 : 5.2626 30.8793 92 ) -11.0601 14.4103 53.6167 -Arial.ttf 8 : 5.2626 30.8793 93 = 0.9895 27.8793 17.8852 -Arial.ttf 8 : 5.2626 30.8793 94 + -3.5414 27.8753 27.8753 -Arial.ttf 8 : 5.2626 30.8793 95 X -10.9786 37.6626 42.0000 -Arial.ttf 8 : 5.2626 30.8793 96 » 2.7500 25.0439 26.1917 -Arial.ttf 8 : 5.2626 30.8793 97 ' -10.9414 5.2626 15.1916 -Arial.ttf 8 : 5.2626 30.8793 98 ¢ -11.0861 25.7813 54.2685 -Arial.ttf 8 : 5.2626 30.8793 99 Z -11.1578 33.0729 42.0000 -Arial.ttf 8 : 5.2626 30.8793 100 > -3.5197 27.8354 27.8704 -Arial.ttf 8 : 5.2626 30.8793 101 ® -11.8202 43.1916 42.9709 -Arial.ttf 8 : 5.2626 30.8793 102 © -11.7894 43.1916 42.9709 -Arial.ttf 8 : 5.2626 30.8793 103 ] -11.1176 11.0000 53.6167 -Arial.ttf 8 : 5.2626 30.8793 104 é -12.2340 27.4690 43.5020 -Arial.ttf 8 : 5.2626 30.8793 105 z 0.0509 26.3123 30.8793 -Arial.ttf 8 : 5.2626 30.8793 106 _ 37.2419 33.3832 5.2626 -Arial.ttf 8 : 5.2626 30.8793 107 ¥ -11.0336 32.0291 42.0000 -Arial.ttf 9 r 16.5689 32.0709 1 t -9.8713 15.0709 42.3103 -Arial.ttf 9 r 16.5689 32.0709 2 h -10.1179 24.2793 42.0000 -Arial.ttf 9 r 16.5689 32.0709 3 a -0.0054 27.4690 32.3813 -Arial.ttf 9 r 16.5689 32.0709 4 n -0.0080 24.2793 32.0709 -Arial.ttf 9 r 16.5689 32.0709 5 P -9.6437 31.4542 42.0000 -Arial.ttf 9 r 16.5689 32.0709 6 o -0.1659 27.4690 32.3813 -Arial.ttf 9 r 16.5689 32.0709 7 e 0.1007 27.4690 32.3813 -Arial.ttf 9 r 16.5689 32.0709 8 : 1.3709 5.2626 30.8793 -Arial.ttf 9 r 16.5689 32.0709 9 r 0.0950 16.5689 32.0709 -Arial.ttf 9 r 16.5689 32.0709 10 l -10.0287 5.2626 42.0000 -Arial.ttf 9 r 16.5689 32.0709 11 i -10.0176 5.2626 42.0000 -Arial.ttf 9 r 16.5689 32.0709 12 1 -9.8434 15.2355 41.6897 -Arial.ttf 9 r 16.5689 32.0709 13 | -9.8003 4.1916 54.4980 -Arial.ttf 9 r 16.5689 32.0709 14 N -10.2118 32.9083 42.0000 -Arial.ttf 9 r 16.5689 32.0709 15 f -9.9912 18.0709 42.0000 -Arial.ttf 9 r 16.5689 32.0709 16 g 0.2317 26.3123 43.6877 -Arial.ttf 9 r 16.5689 32.0709 17 d -9.9980 26.3123 42.3103 -Arial.ttf 9 r 16.5689 32.0709 18 W -9.8647 57.1916 42.0000 -Arial.ttf 9 r 16.5689 32.0709 19 s 0.0480 24.9561 32.3813 -Arial.ttf 9 r 16.5689 32.0709 20 c 0.3509 26.8084 32.3813 -Arial.ttf 9 r 16.5689 32.0709 21 u 1.0650 24.2793 31.1896 -Arial.ttf 9 r 16.5689 32.0709 22 3 -9.6463 26.8483 41.6897 -Arial.ttf 9 r 16.5689 32.0709 23 ~ 7.0674 29.9083 10.9561 -Arial.ttf 9 r 16.5689 32.0709 24 # -10.0007 31.2646 42.0000 -Arial.ttf 9 r 16.5689 32.0709 25 O -10.6617 39.5749 43.3212 -Arial.ttf 9 r 16.5689 32.0709 26 ` -9.8902 10.9561 8.0769 -Arial.ttf 9 r 16.5689 32.0709 27 @ -9.9540 54.1478 54.3123 -Arial.ttf 9 r 16.5689 32.0709 28 F -9.9872 28.2207 42.0000 -Arial.ttf 9 r 16.5689 32.0709 29 S -10.7741 33.0001 43.3212 -Arial.ttf 9 r 16.5689 32.0709 30 p -0.1415 26.3123 43.6877 -Arial.ttf 9 r 16.5689 32.0709 31 “ -9.8670 13.5690 14.0000 -Arial.ttf 9 r 16.5689 32.0709 32 % -9.9291 44.8793 42.3103 -Arial.ttf 9 r 16.5689 32.0709 33 £ -9.9031 29.8522 42.3103 -Arial.ttf 9 r 16.5689 32.0709 34 . 26.7739 5.2626 5.2626 -Arial.ttf 9 r 16.5689 32.0709 35 2 -9.4363 28.6956 41.6897 -Arial.ttf 9 r 16.5689 32.0709 36 5 -9.7264 26.8483 41.6897 -Arial.ttf 9 r 16.5689 32.0709 37 m 0.0646 41.4044 32.0709 -Arial.ttf 9 r 16.5689 32.0709 38 V -10.0739 40.5788 42.0000 -Arial.ttf 9 r 16.5689 32.0709 39 6 -9.6612 27.8542 41.6897 -Arial.ttf 9 r 16.5689 32.0709 40 w 1.0320 43.4212 30.8793 -Arial.ttf 9 r 16.5689 32.0709 41 T -10.0383 33.6936 42.0000 -Arial.ttf 9 r 16.5689 32.0709 42 M -9.9611 40.5788 42.0000 -Arial.ttf 9 r 16.5689 32.0709 43 G -10.4889 38.6897 43.3212 -Arial.ttf 9 r 16.5689 32.0709 44 b -9.9153 26.3123 42.3103 -Arial.ttf 9 r 16.5689 32.0709 45 9 -9.6792 26.8483 41.6897 -Arial.ttf 9 r 16.5689 32.0709 46 ; 1.3268 5.2626 39.6167 -Arial.ttf 9 r 16.5689 32.0709 47 D -9.9041 34.4542 42.0000 -Arial.ttf 9 r 16.5689 32.0709 48 L -9.7950 25.8813 42.0000 -Arial.ttf 9 r 16.5689 32.0709 49 y 0.9434 28.0000 42.4960 -Arial.ttf 9 r 16.5689 32.0709 50 ‘ -9.8463 5.9231 14.0000 -Arial.ttf 9 r 16.5689 32.0709 51 \ -9.8782 17.5749 42.0000 -Arial.ttf 9 r 16.5689 32.0709 52 R -10.0007 36.7497 42.0000 -Arial.ttf 9 r 16.5689 32.0709 53 < -2.3281 27.8354 27.8704 -Arial.ttf 9 r 16.5689 32.0709 54 4 -9.8024 28.3503 41.6897 -Arial.ttf 9 r 16.5689 32.0709 55 8 -9.4825 26.6626 41.6897 -Arial.ttf 9 r 16.5689 32.0709 56 0 -9.5153 26.8483 41.6897 -Arial.ttf 9 r 16.5689 32.0709 57 A -10.0547 40.5788 42.0000 -Arial.ttf 9 r 16.5689 32.0709 58 E -10.0156 31.4542 42.0000 -Arial.ttf 9 r 16.5689 32.0709 59 B -10.0578 31.4542 42.0000 -Arial.ttf 9 r 16.5689 32.0709 60 v 1.2332 27.8704 30.8793 -Arial.ttf 9 r 16.5689 32.0709 61 k -10.0064 25.1207 42.0000 -Arial.ttf 9 r 16.5689 32.0709 62 J -9.8629 24.0291 42.6606 -Arial.ttf 9 r 16.5689 32.0709 63 U -9.9885 32.9083 42.6606 -Arial.ttf 9 r 16.5689 32.0709 64 j -9.7317 12.3773 53.6167 -Arial.ttf 9 r 16.5689 32.0709 65 ( -9.8670 14.4103 53.6167 -Arial.ttf 9 r 16.5689 32.0709 66 7 -9.4532 26.8523 41.6897 -Arial.ttf 9 r 16.5689 32.0709 67 § -9.9109 26.9729 53.9271 -Arial.ttf 9 r 16.5689 32.0709 68 $ -12.1486 27.6897 49.3355 -Arial.ttf 9 r 16.5689 32.0709 69 € -10.4795 33.0769 43.3212 -Arial.ttf 9 r 16.5689 32.0709 70 / -9.7774 17.5749 42.0000 -Arial.ttf 9 r 16.5689 32.0709 71 C -10.8214 36.0000 43.3212 -Arial.ttf 9 r 16.5689 32.0709 72 * -9.8271 20.3453 17.8852 -Arial.ttf 9 r 16.5689 32.0709 73 ” -9.9291 14.2296 14.0000 -Arial.ttf 9 r 16.5689 32.0709 74 ? -10.0007 26.8483 42.0000 -Arial.ttf 9 r 16.5689 32.0709 75 { -9.9460 16.7375 53.6167 -Arial.ttf 9 r 16.5689 32.0709 76 } -9.7632 16.7375 53.6167 -Arial.ttf 9 r 16.5689 32.0709 77 , 26.8703 5.2626 14.0000 -Arial.ttf 9 r 16.5689 32.0709 78 I -10.1263 5.6936 42.0000 -Arial.ttf 9 r 16.5689 32.0709 79 ° -9.8203 15.8083 15.8083 -Arial.ttf 9 r 16.5689 32.0709 80 K -9.9984 34.5749 42.0000 -Arial.ttf 9 r 16.5689 32.0709 81 H -9.7234 32.9083 42.0000 -Arial.ttf 9 r 16.5689 32.0709 82 q 0.0524 26.3123 43.6877 -Arial.ttf 9 r 16.5689 32.0709 83 & -10.1273 35.1148 42.3103 -Arial.ttf 9 r 16.5689 32.0709 84 ’ -9.8957 5.9231 14.0000 -Arial.ttf 9 r 16.5689 32.0709 85 [ -9.9440 11.0000 53.6167 -Arial.ttf 9 r 16.5689 32.0709 86 - 14.2361 15.4980 5.2626 -Arial.ttf 9 r 16.5689 32.0709 87 Y -10.0065 38.4601 42.0000 -Arial.ttf 9 r 16.5689 32.0709 88 Q -10.4472 39.5749 46.3212 -Arial.ttf 9 r 16.5689 32.0709 89 " -9.7498 15.8083 15.1916 -Arial.ttf 9 r 16.5689 32.0709 90 ! -9.9838 5.2626 42.0000 -Arial.ttf 9 r 16.5689 32.0709 91 x 1.2068 29.1060 30.8793 -Arial.ttf 9 r 16.5689 32.0709 92 ) -9.8751 14.4103 53.6167 -Arial.ttf 9 r 16.5689 32.0709 93 = 2.0703 27.8793 17.8852 -Arial.ttf 9 r 16.5689 32.0709 94 + -2.1959 27.8753 27.8753 -Arial.ttf 9 r 16.5689 32.0709 95 X -9.9141 37.6626 42.0000 -Arial.ttf 9 r 16.5689 32.0709 96 » 4.0253 25.0439 26.1917 -Arial.ttf 9 r 16.5689 32.0709 97 ' -9.8230 5.2626 15.1916 -Arial.ttf 9 r 16.5689 32.0709 98 ¢ -9.9245 25.7813 54.2685 -Arial.ttf 9 r 16.5689 32.0709 99 Z -9.9358 33.0729 42.0000 -Arial.ttf 9 r 16.5689 32.0709 100 > -2.2963 27.8354 27.8704 -Arial.ttf 9 r 16.5689 32.0709 101 ® -10.4410 43.1916 42.9709 -Arial.ttf 9 r 16.5689 32.0709 102 © -10.5414 43.1916 42.9709 -Arial.ttf 9 r 16.5689 32.0709 103 ] -9.9085 11.0000 53.6167 -Arial.ttf 9 r 16.5689 32.0709 104 é -10.9828 27.4690 43.5020 -Arial.ttf 9 r 16.5689 32.0709 105 z 1.2659 26.3123 30.8793 -Arial.ttf 9 r 16.5689 32.0709 106 _ 38.2980 33.3832 5.2626 -Arial.ttf 9 r 16.5689 32.0709 107 ¥ -10.0108 32.0291 42.0000 -Arial.ttf 10 l 5.2626 42.0000 1 t 0.2561 15.0709 42.3103 -Arial.ttf 10 l 5.2626 42.0000 2 h 0.0027 24.2793 42.0000 -Arial.ttf 10 l 5.2626 42.0000 3 a 9.8686 27.4690 32.3813 -Arial.ttf 10 l 5.2626 42.0000 4 n 9.9662 24.2793 32.0709 -Arial.ttf 10 l 5.2626 42.0000 5 P -0.2772 31.4542 42.0000 -Arial.ttf 10 l 5.2626 42.0000 6 o 9.7180 27.4690 32.3813 -Arial.ttf 10 l 5.2626 42.0000 7 e 9.9636 27.4690 32.3813 -Arial.ttf 10 l 5.2626 42.0000 8 : 11.0967 5.2626 30.8793 -Arial.ttf 10 l 5.2626 42.0000 9 r 9.9636 16.5689 32.0709 -Arial.ttf 10 l 5.2626 42.0000 10 l -0.0605 5.2626 42.0000 -Arial.ttf 10 l 5.2626 42.0000 11 i -0.1770 5.2626 42.0000 -Arial.ttf 10 l 5.2626 42.0000 12 1 0.3337 15.2355 41.6897 -Arial.ttf 10 l 5.2626 42.0000 13 | 0.2027 4.1916 54.4980 -Arial.ttf 10 l 5.2626 42.0000 14 N -0.2084 32.9083 42.0000 -Arial.ttf 10 l 5.2626 42.0000 15 f 0.0000 18.0709 42.0000 -Arial.ttf 10 l 5.2626 42.0000 16 g 9.9291 26.3123 43.6877 -Arial.ttf 10 l 5.2626 42.0000 17 d -0.1601 26.3123 42.3103 -Arial.ttf 10 l 5.2626 42.0000 18 W 0.0966 57.1916 42.0000 -Arial.ttf 10 l 5.2626 42.0000 19 s 9.8764 24.9561 32.3813 -Arial.ttf 10 l 5.2626 42.0000 20 c 9.8697 26.8084 32.3813 -Arial.ttf 10 l 5.2626 42.0000 21 u 11.1207 24.2793 31.1896 -Arial.ttf 10 l 5.2626 42.0000 22 3 0.5156 26.8483 41.6897 -Arial.ttf 10 l 5.2626 42.0000 23 ~ 16.8793 29.9083 10.9561 -Arial.ttf 10 l 5.2626 42.0000 24 # 0.1575 31.2646 42.0000 -Arial.ttf 10 l 5.2626 42.0000 25 O -0.5943 39.5749 43.3212 -Arial.ttf 10 l 5.2626 42.0000 26 ` 0.1310 10.9561 8.0769 -Arial.ttf 10 l 5.2626 42.0000 27 @ 0.1432 54.1478 54.3123 -Arial.ttf 10 l 5.2626 42.0000 28 F 0.0774 28.2207 42.0000 -Arial.ttf 10 l 5.2626 42.0000 29 S -0.5863 33.0001 43.3212 -Arial.ttf 10 l 5.2626 42.0000 30 p 10.0256 26.3123 43.6877 -Arial.ttf 10 l 5.2626 42.0000 31 “ 0.0743 13.5690 14.0000 -Arial.ttf 10 l 5.2626 42.0000 32 % 0.1145 44.8793 42.3103 -Arial.ttf 10 l 5.2626 42.0000 33 £ 0.0966 29.8522 42.3103 -Arial.ttf 10 l 5.2626 42.0000 34 . 36.5317 5.2626 5.2626 -Arial.ttf 10 l 5.2626 42.0000 35 2 0.4191 28.6956 41.6897 -Arial.ttf 10 l 5.2626 42.0000 36 5 0.3046 26.8483 41.6897 -Arial.ttf 10 l 5.2626 42.0000 37 m 9.8728 41.4044 32.0709 -Arial.ttf 10 l 5.2626 42.0000 38 V -0.0966 40.5788 42.0000 -Arial.ttf 10 l 5.2626 42.0000 39 6 0.1448 27.8542 41.6897 -Arial.ttf 10 l 5.2626 42.0000 40 w 11.1207 43.4212 30.8793 -Arial.ttf 10 l 5.2626 42.0000 41 T 0.0142 33.6936 42.0000 -Arial.ttf 10 l 5.2626 42.0000 42 M 0.1406 40.5788 42.0000 -Arial.ttf 10 l 5.2626 42.0000 43 G -0.5916 38.6897 43.3212 -Arial.ttf 10 l 5.2626 42.0000 44 b -0.0031 26.3123 42.3103 -Arial.ttf 10 l 5.2626 42.0000 45 9 0.3310 26.8483 41.6897 -Arial.ttf 10 l 5.2626 42.0000 46 ; 11.3636 5.2626 39.6167 -Arial.ttf 10 l 5.2626 42.0000 47 D -0.2333 34.4542 42.0000 -Arial.ttf 10 l 5.2626 42.0000 48 L 0.0345 25.8813 42.0000 -Arial.ttf 10 l 5.2626 42.0000 49 y 11.1923 28.0000 42.4960 -Arial.ttf 10 l 5.2626 42.0000 50 ‘ 0.0000 5.9231 14.0000 -Arial.ttf 10 l 5.2626 42.0000 51 \ 0.1257 17.5749 42.0000 -Arial.ttf 10 l 5.2626 42.0000 52 R -0.1034 36.7497 42.0000 -Arial.ttf 10 l 5.2626 42.0000 53 < 7.5458 27.8354 27.8704 -Arial.ttf 10 l 5.2626 42.0000 54 4 0.3161 28.3503 41.6897 -Arial.ttf 10 l 5.2626 42.0000 55 8 0.3820 26.6626 41.6897 -Arial.ttf 10 l 5.2626 42.0000 56 0 0.3077 26.8483 41.6897 -Arial.ttf 10 l 5.2626 42.0000 57 A 0.0955 40.5788 42.0000 -Arial.ttf 10 l 5.2626 42.0000 58 E -0.1061 31.4542 42.0000 -Arial.ttf 10 l 5.2626 42.0000 59 B 0.0743 31.4542 42.0000 -Arial.ttf 10 l 5.2626 42.0000 60 v 11.0862 27.8704 30.8793 -Arial.ttf 10 l 5.2626 42.0000 61 k -0.1851 25.1207 42.0000 -Arial.ttf 10 l 5.2626 42.0000 62 J 0.0000 24.0291 42.6606 -Arial.ttf 10 l 5.2626 42.0000 63 U 0.2179 32.9083 42.6606 -Arial.ttf 10 l 5.2626 42.0000 64 j 0.0000 12.3773 53.6167 -Arial.ttf 10 l 5.2626 42.0000 65 ( 0.0000 14.4103 53.6167 -Arial.ttf 10 l 5.2626 42.0000 66 7 0.3448 26.8523 41.6897 -Arial.ttf 10 l 5.2626 42.0000 67 § 0.0966 26.9729 53.9271 -Arial.ttf 10 l 5.2626 42.0000 68 $ -2.2729 27.6897 49.3355 -Arial.ttf 10 l 5.2626 42.0000 69 € -0.6606 33.0769 43.3212 -Arial.ttf 10 l 5.2626 42.0000 70 / -0.0402 17.5749 42.0000 -Arial.ttf 10 l 5.2626 42.0000 71 C -0.7916 36.0000 43.3212 -Arial.ttf 10 l 5.2626 42.0000 72 * 0.0345 20.3453 17.8852 -Arial.ttf 10 l 5.2626 42.0000 73 ” -0.0307 14.2296 14.0000 -Arial.ttf 10 l 5.2626 42.0000 74 ? 0.1337 26.8483 42.0000 -Arial.ttf 10 l 5.2626 42.0000 75 { -0.0716 16.7375 53.6167 -Arial.ttf 10 l 5.2626 42.0000 76 } -0.0249 16.7375 53.6167 -Arial.ttf 10 l 5.2626 42.0000 77 , 36.5926 5.2626 14.0000 -Arial.ttf 10 l 5.2626 42.0000 78 I 0.1628 5.6936 42.0000 -Arial.ttf 10 l 5.2626 42.0000 79 ° 0.0345 15.8083 15.8083 -Arial.ttf 10 l 5.2626 42.0000 80 K -0.0716 34.5749 42.0000 -Arial.ttf 10 l 5.2626 42.0000 81 H 0.0509 32.9083 42.0000 -Arial.ttf 10 l 5.2626 42.0000 82 q 9.7828 26.3123 43.6877 -Arial.ttf 10 l 5.2626 42.0000 83 & 0.1034 35.1148 42.3103 -Arial.ttf 10 l 5.2626 42.0000 84 ’ 0.0885 5.9231 14.0000 -Arial.ttf 10 l 5.2626 42.0000 85 [ -0.1103 11.0000 53.6167 -Arial.ttf 10 l 5.2626 42.0000 86 - 24.1988 15.4980 5.2626 -Arial.ttf 10 l 5.2626 42.0000 87 Y -0.0345 38.4601 42.0000 -Arial.ttf 10 l 5.2626 42.0000 88 Q -0.7322 39.5749 46.3212 -Arial.ttf 10 l 5.2626 42.0000 89 " -0.0828 15.8083 15.1916 -Arial.ttf 10 l 5.2626 42.0000 90 ! -0.1699 5.2626 42.0000 -Arial.ttf 10 l 5.2626 42.0000 91 x 11.0862 29.1060 30.8793 -Arial.ttf 10 l 5.2626 42.0000 92 ) -0.0084 14.4103 53.6167 -Arial.ttf 10 l 5.2626 42.0000 93 = 11.9151 27.8793 17.8852 -Arial.ttf 10 l 5.2626 42.0000 94 + 7.6519 27.8753 27.8753 -Arial.ttf 10 l 5.2626 42.0000 95 X -0.0784 37.6626 42.0000 -Arial.ttf 10 l 5.2626 42.0000 96 » 13.9104 25.0439 26.1917 -Arial.ttf 10 l 5.2626 42.0000 97 ' -0.3007 5.2626 15.1916 -Arial.ttf 10 l 5.2626 42.0000 98 ¢ -0.1525 25.7813 54.2685 -Arial.ttf 10 l 5.2626 42.0000 99 Z 0.0966 33.0729 42.0000 -Arial.ttf 10 l 5.2626 42.0000 100 > 7.4631 27.8354 27.8704 -Arial.ttf 10 l 5.2626 42.0000 101 ® -0.6606 43.1916 42.9709 -Arial.ttf 10 l 5.2626 42.0000 102 © -0.5721 43.1916 42.9709 -Arial.ttf 10 l 5.2626 42.0000 103 ] 0.0371 11.0000 53.6167 -Arial.ttf 10 l 5.2626 42.0000 104 é -1.0320 27.4690 43.5020 -Arial.ttf 10 l 5.2626 42.0000 105 z 11.3237 26.3123 30.8793 -Arial.ttf 10 l 5.2626 42.0000 106 _ 48.2768 33.3832 5.2626 -Arial.ttf 10 l 5.2626 42.0000 107 ¥ 0.0233 32.0291 42.0000 -Arial.ttf 11 i 5.2626 42.0000 1 t -0.0149 15.0709 42.3103 -Arial.ttf 11 i 5.2626 42.0000 2 h -0.2057 24.2793 42.0000 -Arial.ttf 11 i 5.2626 42.0000 3 a 10.0808 27.4690 32.3813 -Arial.ttf 11 i 5.2626 42.0000 4 n 9.9953 24.2793 32.0709 -Arial.ttf 11 i 5.2626 42.0000 5 P -0.2636 31.4542 42.0000 -Arial.ttf 11 i 5.2626 42.0000 6 o 10.0230 27.4690 32.3813 -Arial.ttf 11 i 5.2626 42.0000 7 e 9.8588 27.4690 32.3813 -Arial.ttf 11 i 5.2626 42.0000 8 : 11.2129 5.2626 30.8793 -Arial.ttf 11 i 5.2626 42.0000 9 r 10.0399 16.5689 32.0709 -Arial.ttf 11 i 5.2626 42.0000 10 l -0.0317 5.2626 42.0000 -Arial.ttf 11 i 5.2626 42.0000 11 i 0.1766 5.2626 42.0000 -Arial.ttf 11 i 5.2626 42.0000 12 1 0.2966 15.2355 41.6897 -Arial.ttf 11 i 5.2626 42.0000 13 | -0.0885 4.1916 54.4980 -Arial.ttf 11 i 5.2626 42.0000 14 N 0.1061 32.9083 42.0000 -Arial.ttf 11 i 5.2626 42.0000 15 f 0.1088 18.0709 42.0000 -Arial.ttf 11 i 5.2626 42.0000 16 g 10.0145 26.3123 43.6877 -Arial.ttf 11 i 5.2626 42.0000 17 d 0.0743 26.3123 42.3103 -Arial.ttf 11 i 5.2626 42.0000 18 W 0.0743 57.1916 42.0000 -Arial.ttf 11 i 5.2626 42.0000 19 s 9.9291 24.9561 32.3813 -Arial.ttf 11 i 5.2626 42.0000 20 c 9.9291 26.8084 32.3813 -Arial.ttf 11 i 5.2626 42.0000 21 u 11.1552 24.2793 31.1896 -Arial.ttf 11 i 5.2626 42.0000 22 3 0.2675 26.8483 41.6897 -Arial.ttf 11 i 5.2626 42.0000 23 ~ 16.8969 29.9083 10.9561 -Arial.ttf 11 i 5.2626 42.0000 24 # -0.0345 31.2646 42.0000 -Arial.ttf 11 i 5.2626 42.0000 25 O -0.7296 39.5749 43.3212 -Arial.ttf 11 i 5.2626 42.0000 26 ` -0.0280 10.9561 8.0769 -Arial.ttf 11 i 5.2626 42.0000 27 @ -0.0828 54.1478 54.3123 -Arial.ttf 11 i 5.2626 42.0000 28 F -0.1102 28.2207 42.0000 -Arial.ttf 11 i 5.2626 42.0000 29 S -0.7491 33.0001 43.3212 -Arial.ttf 11 i 5.2626 42.0000 30 p 10.2499 26.3123 43.6877 -Arial.ttf 11 i 5.2626 42.0000 31 “ -0.0521 13.5690 14.0000 -Arial.ttf 11 i 5.2626 42.0000 32 % 0.0027 44.8793 42.3103 -Arial.ttf 11 i 5.2626 42.0000 33 £ 0.1659 29.8522 42.3103 -Arial.ttf 11 i 5.2626 42.0000 34 . 36.5524 5.2626 5.2626 -Arial.ttf 11 i 5.2626 42.0000 35 2 0.1698 28.6956 41.6897 -Arial.ttf 11 i 5.2626 42.0000 36 5 0.3532 26.8483 41.6897 -Arial.ttf 11 i 5.2626 42.0000 37 m 10.0697 41.4044 32.0709 -Arial.ttf 11 i 5.2626 42.0000 38 V 0.0966 40.5788 42.0000 -Arial.ttf 11 i 5.2626 42.0000 39 6 0.4276 27.8542 41.6897 -Arial.ttf 11 i 5.2626 42.0000 40 w 11.1552 43.4212 30.8793 -Arial.ttf 11 i 5.2626 42.0000 41 T 0.0402 33.6936 42.0000 -Arial.ttf 11 i 5.2626 42.0000 42 M -0.0769 40.5788 42.0000 -Arial.ttf 11 i 5.2626 42.0000 43 G -0.6606 38.6897 43.3212 -Arial.ttf 11 i 5.2626 42.0000 44 b 0.1172 26.3123 42.3103 -Arial.ttf 11 i 5.2626 42.0000 45 9 0.1215 26.8483 41.6897 -Arial.ttf 11 i 5.2626 42.0000 46 ; 11.1770 5.2626 39.6167 -Arial.ttf 11 i 5.2626 42.0000 47 D -0.0429 34.4542 42.0000 -Arial.ttf 11 i 5.2626 42.0000 48 L 0.1071 25.8813 42.0000 -Arial.ttf 11 i 5.2626 42.0000 49 y 11.0984 28.0000 42.4960 -Arial.ttf 11 i 5.2626 42.0000 50 ‘ 0.0000 5.9231 14.0000 -Arial.ttf 11 i 5.2626 42.0000 51 \ -0.4067 17.5749 42.0000 -Arial.ttf 11 i 5.2626 42.0000 52 R 0.0000 36.7497 42.0000 -Arial.ttf 11 i 5.2626 42.0000 53 < 7.4631 27.8354 27.8704 -Arial.ttf 11 i 5.2626 42.0000 54 4 0.3103 28.3503 41.6897 -Arial.ttf 11 i 5.2626 42.0000 55 8 0.1476 26.6626 41.6897 -Arial.ttf 11 i 5.2626 42.0000 56 0 0.2647 26.8483 41.6897 -Arial.ttf 11 i 5.2626 42.0000 57 A 0.0412 40.5788 42.0000 -Arial.ttf 11 i 5.2626 42.0000 58 E -0.1115 31.4542 42.0000 -Arial.ttf 11 i 5.2626 42.0000 59 B -0.0716 31.4542 42.0000 -Arial.ttf 11 i 5.2626 42.0000 60 v 10.9552 27.8704 30.8793 -Arial.ttf 11 i 5.2626 42.0000 61 k -0.2465 25.1207 42.0000 -Arial.ttf 11 i 5.2626 42.0000 62 J 0.0000 24.0291 42.6606 -Arial.ttf 11 i 5.2626 42.0000 63 U 0.0801 32.9083 42.6606 -Arial.ttf 11 i 5.2626 42.0000 64 j 0.0000 12.3773 53.6167 -Arial.ttf 11 i 5.2626 42.0000 65 ( 0.1818 14.4103 53.6167 -Arial.ttf 11 i 5.2626 42.0000 66 7 0.4785 26.8523 41.6897 -Arial.ttf 11 i 5.2626 42.0000 67 § -0.2207 26.9729 53.9271 -Arial.ttf 11 i 5.2626 42.0000 68 $ -2.2162 27.6897 49.3355 -Arial.ttf 11 i 5.2626 42.0000 69 € -0.8123 33.0769 43.3212 -Arial.ttf 11 i 5.2626 42.0000 70 / 0.0195 17.5749 42.0000 -Arial.ttf 11 i 5.2626 42.0000 71 C -0.5614 36.0000 43.3212 -Arial.ttf 11 i 5.2626 42.0000 72 * -0.0446 20.3453 17.8852 -Arial.ttf 11 i 5.2626 42.0000 73 ” -0.0345 14.2296 14.0000 -Arial.ttf 11 i 5.2626 42.0000 74 ? 0.0000 26.8483 42.0000 -Arial.ttf 11 i 5.2626 42.0000 75 { -0.0828 16.7375 53.6167 -Arial.ttf 11 i 5.2626 42.0000 76 } -0.2249 16.7375 53.6167 -Arial.ttf 11 i 5.2626 42.0000 77 , 36.7953 5.2626 14.0000 -Arial.ttf 11 i 5.2626 42.0000 78 I -0.0716 5.6936 42.0000 -Arial.ttf 11 i 5.2626 42.0000 79 ° -0.0111 15.8083 15.8083 -Arial.ttf 11 i 5.2626 42.0000 80 K -0.2747 34.5749 42.0000 -Arial.ttf 11 i 5.2626 42.0000 81 H -0.0885 32.9083 42.0000 -Arial.ttf 11 i 5.2626 42.0000 82 q 9.8919 26.3123 43.6877 -Arial.ttf 11 i 5.2626 42.0000 83 & 0.1256 35.1148 42.3103 -Arial.ttf 11 i 5.2626 42.0000 84 ’ -0.2690 5.9231 14.0000 -Arial.ttf 11 i 5.2626 42.0000 85 [ -0.0433 11.0000 53.6167 -Arial.ttf 11 i 5.2626 42.0000 86 - 24.1429 15.4980 5.2626 -Arial.ttf 11 i 5.2626 42.0000 87 Y -0.0966 38.4601 42.0000 -Arial.ttf 11 i 5.2626 42.0000 88 Q -0.6633 39.5749 46.3212 -Arial.ttf 11 i 5.2626 42.0000 89 " -0.0000 15.8083 15.1916 -Arial.ttf 11 i 5.2626 42.0000 90 ! -0.0058 5.2626 42.0000 -Arial.ttf 11 i 5.2626 42.0000 91 x 11.1207 29.1060 30.8793 -Arial.ttf 11 i 5.2626 42.0000 92 ) 0.1061 14.4103 53.6167 -Arial.ttf 11 i 5.2626 42.0000 93 = 11.9670 27.8793 17.8852 -Arial.ttf 11 i 5.2626 42.0000 94 + 7.5627 27.8753 27.8753 -Arial.ttf 11 i 5.2626 42.0000 95 X -0.2000 37.6626 42.0000 -Arial.ttf 11 i 5.2626 42.0000 96 » 13.9561 25.0439 26.1917 -Arial.ttf 11 i 5.2626 42.0000 97 ' 0.0690 5.2626 15.1916 -Arial.ttf 11 i 5.2626 42.0000 98 ¢ -0.1483 25.7813 54.2685 -Arial.ttf 11 i 5.2626 42.0000 99 Z -0.0345 33.0729 42.0000 -Arial.ttf 11 i 5.2626 42.0000 100 > 7.5485 27.8354 27.8704 -Arial.ttf 11 i 5.2626 42.0000 101 ® -0.5721 43.1916 42.9709 -Arial.ttf 11 i 5.2626 42.0000 102 © -0.6977 43.1916 42.9709 -Arial.ttf 11 i 5.2626 42.0000 103 ] 0.0966 11.0000 53.6167 -Arial.ttf 11 i 5.2626 42.0000 104 é -1.1916 27.4690 43.5020 -Arial.ttf 11 i 5.2626 42.0000 105 z 10.9596 26.3123 30.8793 -Arial.ttf 11 i 5.2626 42.0000 106 _ 48.4258 33.3832 5.2626 -Arial.ttf 11 i 5.2626 42.0000 107 ¥ 0.0784 32.0291 42.0000 -Arial.ttf 12 1 15.2355 41.6897 1 t -0.4086 15.0709 42.3103 -Arial.ttf 12 1 15.2355 41.6897 2 h -0.3830 24.2793 42.0000 -Arial.ttf 12 1 15.2355 41.6897 3 a 9.7772 27.4690 32.3813 -Arial.ttf 12 1 15.2355 41.6897 4 n 9.7858 24.2793 32.0709 -Arial.ttf 12 1 15.2355 41.6897 5 P -0.2107 31.4542 42.0000 -Arial.ttf 12 1 15.2355 41.6897 6 o 9.8888 27.4690 32.3813 -Arial.ttf 12 1 15.2355 41.6897 7 e 9.6862 27.4690 32.3813 -Arial.ttf 12 1 15.2355 41.6897 8 : 10.9238 5.2626 30.8793 -Arial.ttf 12 1 15.2355 41.6897 9 r 9.6214 16.5689 32.0709 -Arial.ttf 12 1 15.2355 41.6897 10 l -0.2621 5.2626 42.0000 -Arial.ttf 12 1 15.2355 41.6897 11 i -0.4772 5.2626 42.0000 -Arial.ttf 12 1 15.2355 41.6897 12 1 -0.1490 15.2355 41.6897 -Arial.ttf 12 1 15.2355 41.6897 13 | -0.2340 4.1916 54.4980 -Arial.ttf 12 1 15.2355 41.6897 14 N -0.5299 32.9083 42.0000 -Arial.ttf 12 1 15.2355 41.6897 15 f -0.2264 18.0709 42.0000 -Arial.ttf 12 1 15.2355 41.6897 16 g 9.5488 26.3123 43.6877 -Arial.ttf 12 1 15.2355 41.6897 17 d -0.2823 26.3123 42.3103 -Arial.ttf 12 1 15.2355 41.6897 18 W -0.5061 57.1916 42.0000 -Arial.ttf 12 1 15.2355 41.6897 19 s 9.8356 24.9561 32.3813 -Arial.ttf 12 1 15.2355 41.6897 20 c 9.4295 26.8084 32.3813 -Arial.ttf 12 1 15.2355 41.6897 21 u 10.5261 24.2793 31.1896 -Arial.ttf 12 1 15.2355 41.6897 22 3 -0.0402 26.8483 41.6897 -Arial.ttf 12 1 15.2355 41.6897 23 ~ 16.4270 29.9083 10.9561 -Arial.ttf 12 1 15.2355 41.6897 24 # -0.3918 31.2646 42.0000 -Arial.ttf 12 1 15.2355 41.6897 25 O -0.9683 39.5749 43.3212 -Arial.ttf 12 1 15.2355 41.6897 26 ` -0.0378 10.9561 8.0769 -Arial.ttf 12 1 15.2355 41.6897 27 @ -0.2732 54.1478 54.3123 -Arial.ttf 12 1 15.2355 41.6897 28 F -0.5600 28.2207 42.0000 -Arial.ttf 12 1 15.2355 41.6897 29 S -0.9375 33.0001 43.3212 -Arial.ttf 12 1 15.2355 41.6897 30 p 9.7789 26.3123 43.6877 -Arial.ttf 12 1 15.2355 41.6897 31 “ -0.1529 13.5690 14.0000 -Arial.ttf 12 1 15.2355 41.6897 32 % -0.3830 44.8793 42.3103 -Arial.ttf 12 1 15.2355 41.6897 33 £ -0.4923 29.8522 42.3103 -Arial.ttf 12 1 15.2355 41.6897 34 . 36.4723 5.2626 5.2626 -Arial.ttf 12 1 15.2355 41.6897 35 2 0.0680 28.6956 41.6897 -Arial.ttf 12 1 15.2355 41.6897 36 5 -0.0336 26.8483 41.6897 -Arial.ttf 12 1 15.2355 41.6897 37 m 9.7231 41.4044 32.0709 -Arial.ttf 12 1 15.2355 41.6897 38 V -0.2218 40.5788 42.0000 -Arial.ttf 12 1 15.2355 41.6897 39 6 0.1575 27.8542 41.6897 -Arial.ttf 12 1 15.2355 41.6897 40 w 11.0193 43.4212 30.8793 -Arial.ttf 12 1 15.2355 41.6897 41 T -0.4460 33.6936 42.0000 -Arial.ttf 12 1 15.2355 41.6897 42 M -0.2383 40.5788 42.0000 -Arial.ttf 12 1 15.2355 41.6897 43 G -0.7906 38.6897 43.3212 -Arial.ttf 12 1 15.2355 41.6897 44 b 0.0334 26.3123 42.3103 -Arial.ttf 12 1 15.2355 41.6897 45 9 -0.1544 26.8483 41.6897 -Arial.ttf 12 1 15.2355 41.6897 46 ; 10.8418 5.2626 39.6167 -Arial.ttf 12 1 15.2355 41.6897 47 D -0.2784 34.4542 42.0000 -Arial.ttf 12 1 15.2355 41.6897 48 L -0.1115 25.8813 42.0000 -Arial.ttf 12 1 15.2355 41.6897 49 y 10.9100 28.0000 42.4960 -Arial.ttf 12 1 15.2355 41.6897 50 ‘ -0.0966 5.9231 14.0000 -Arial.ttf 12 1 15.2355 41.6897 51 \ -0.3448 17.5749 42.0000 -Arial.ttf 12 1 15.2355 41.6897 52 R -0.3297 36.7497 42.0000 -Arial.ttf 12 1 15.2355 41.6897 53 < 7.1655 27.8354 27.8704 -Arial.ttf 12 1 15.2355 41.6897 54 4 0.0594 28.3503 41.6897 -Arial.ttf 12 1 15.2355 41.6897 55 8 -0.2621 26.6626 41.6897 -Arial.ttf 12 1 15.2355 41.6897 56 0 0.1040 26.8483 41.6897 -Arial.ttf 12 1 15.2355 41.6897 57 A -0.3404 40.5788 42.0000 -Arial.ttf 12 1 15.2355 41.6897 58 E -0.2870 31.4542 42.0000 -Arial.ttf 12 1 15.2355 41.6897 59 B -0.3332 31.4542 42.0000 -Arial.ttf 12 1 15.2355 41.6897 60 v 10.8104 27.8704 30.8793 -Arial.ttf 12 1 15.2355 41.6897 61 k -0.1567 25.1207 42.0000 -Arial.ttf 12 1 15.2355 41.6897 62 J -0.1333 24.0291 42.6606 -Arial.ttf 12 1 15.2355 41.6897 63 U -0.5904 32.9083 42.6606 -Arial.ttf 12 1 15.2355 41.6897 64 j 0.0345 12.3773 53.6167 -Arial.ttf 12 1 15.2355 41.6897 65 ( -0.4891 14.4103 53.6167 -Arial.ttf 12 1 15.2355 41.6897 66 7 -0.4868 26.8523 41.6897 -Arial.ttf 12 1 15.2355 41.6897 67 § -0.6178 26.9729 53.9271 -Arial.ttf 12 1 15.2355 41.6897 68 $ -2.4177 27.6897 49.3355 -Arial.ttf 12 1 15.2355 41.6897 69 € -1.0000 33.0769 43.3212 -Arial.ttf 12 1 15.2355 41.6897 70 / -0.5182 17.5749 42.0000 -Arial.ttf 12 1 15.2355 41.6897 71 C -0.7683 36.0000 43.3212 -Arial.ttf 12 1 15.2355 41.6897 72 * -0.1476 20.3453 17.8852 -Arial.ttf 12 1 15.2355 41.6897 73 ” -0.6153 14.2296 14.0000 -Arial.ttf 12 1 15.2355 41.6897 74 ? -0.3793 26.8483 42.0000 -Arial.ttf 12 1 15.2355 41.6897 75 { -0.7352 16.7375 53.6167 -Arial.ttf 12 1 15.2355 41.6897 76 } -0.4302 16.7375 53.6167 -Arial.ttf 12 1 15.2355 41.6897 77 , 36.5152 5.2626 14.0000 -Arial.ttf 12 1 15.2355 41.6897 78 I -0.2468 5.6936 42.0000 -Arial.ttf 12 1 15.2355 41.6897 79 ° -0.5819 15.8083 15.8083 -Arial.ttf 12 1 15.2355 41.6897 80 K -0.2902 34.5749 42.0000 -Arial.ttf 12 1 15.2355 41.6897 81 H -0.2499 32.9083 42.0000 -Arial.ttf 12 1 15.2355 41.6897 82 q 9.8075 26.3123 43.6877 -Arial.ttf 12 1 15.2355 41.6897 83 & -0.1266 35.1148 42.3103 -Arial.ttf 12 1 15.2355 41.6897 84 ’ -0.2107 5.9231 14.0000 -Arial.ttf 12 1 15.2355 41.6897 85 [ -0.2536 11.0000 53.6167 -Arial.ttf 12 1 15.2355 41.6897 86 - 23.8007 15.4980 5.2626 -Arial.ttf 12 1 15.2355 41.6897 87 Y -0.3236 38.4601 42.0000 -Arial.ttf 12 1 15.2355 41.6897 88 Q -1.1183 39.5749 46.3212 -Arial.ttf 12 1 15.2355 41.6897 89 " 0.0301 15.8083 15.1916 -Arial.ttf 12 1 15.2355 41.6897 90 ! 0.0358 5.2626 42.0000 -Arial.ttf 12 1 15.2355 41.6897 91 x 10.8601 29.1060 30.8793 -Arial.ttf 12 1 15.2355 41.6897 92 ) -0.2042 14.4103 53.6167 -Arial.ttf 12 1 15.2355 41.6897 93 = 11.5266 27.8793 17.8852 -Arial.ttf 12 1 15.2355 41.6897 94 + 7.3341 27.8753 27.8753 -Arial.ttf 12 1 15.2355 41.6897 95 X -0.3867 37.6626 42.0000 -Arial.ttf 12 1 15.2355 41.6897 96 » 13.6734 25.0439 26.1917 -Arial.ttf 12 1 15.2355 41.6897 97 ' -0.1221 5.2626 15.1916 -Arial.ttf 12 1 15.2355 41.6897 98 ¢ -0.5409 25.7813 54.2685 -Arial.ttf 12 1 15.2355 41.6897 99 Z -0.3161 33.0729 42.0000 -Arial.ttf 12 1 15.2355 41.6897 100 > 7.3784 27.8354 27.8704 -Arial.ttf 12 1 15.2355 41.6897 101 ® -1.1300 43.1916 42.9709 -Arial.ttf 12 1 15.2355 41.6897 102 © -0.7821 43.1916 42.9709 -Arial.ttf 12 1 15.2355 41.6897 103 ] -0.3452 11.0000 53.6167 -Arial.ttf 12 1 15.2355 41.6897 104 é -1.7087 27.4690 43.5020 -Arial.ttf 12 1 15.2355 41.6897 105 z 10.7219 26.3123 30.8793 -Arial.ttf 12 1 15.2355 41.6897 106 _ 47.8811 33.3832 5.2626 -Arial.ttf 12 1 15.2355 41.6897 107 ¥ -0.8429 32.0291 42.0000 -Arial.ttf 13 | 4.1916 54.4980 1 t -0.0371 15.0709 42.3103 -Arial.ttf 13 | 4.1916 54.4980 2 h -0.0514 24.2793 42.0000 -Arial.ttf 13 | 4.1916 54.4980 3 a 10.0061 27.4690 32.3813 -Arial.ttf 13 | 4.1916 54.4980 4 n 9.9291 24.2793 32.0709 -Arial.ttf 13 | 4.1916 54.4980 5 P 0.1659 31.4542 42.0000 -Arial.ttf 13 | 4.1916 54.4980 6 o 10.0490 27.4690 32.3813 -Arial.ttf 13 | 4.1916 54.4980 7 e 9.9322 27.4690 32.3813 -Arial.ttf 13 | 4.1916 54.4980 8 : 11.2126 5.2626 30.8793 -Arial.ttf 13 | 4.1916 54.4980 9 r 9.7609 16.5689 32.0709 -Arial.ttf 13 | 4.1916 54.4980 10 l 0.0192 5.2626 42.0000 -Arial.ttf 13 | 4.1916 54.4980 11 i 0.0716 5.2626 42.0000 -Arial.ttf 13 | 4.1916 54.4980 12 1 0.5241 15.2355 41.6897 -Arial.ttf 13 | 4.1916 54.4980 13 | 0.0854 4.1916 54.4980 -Arial.ttf 13 | 4.1916 54.4980 14 N -0.2152 32.9083 42.0000 -Arial.ttf 13 | 4.1916 54.4980 15 f 0.0027 18.0709 42.0000 -Arial.ttf 13 | 4.1916 54.4980 16 g 9.8808 26.3123 43.6877 -Arial.ttf 13 | 4.1916 54.4980 17 d -0.0371 26.3123 42.3103 -Arial.ttf 13 | 4.1916 54.4980 18 W 0.0371 57.1916 42.0000 -Arial.ttf 13 | 4.1916 54.4980 19 s 9.9429 24.9561 32.3813 -Arial.ttf 13 | 4.1916 54.4980 20 c 9.8670 26.8084 32.3813 -Arial.ttf 13 | 4.1916 54.4980 21 u 11.1376 24.2793 31.1896 -Arial.ttf 13 | 4.1916 54.4980 22 3 0.2276 26.8483 41.6897 -Arial.ttf 13 | 4.1916 54.4980 23 ~ 16.7223 29.9083 10.9561 -Arial.ttf 13 | 4.1916 54.4980 24 # -0.0027 31.2646 42.0000 -Arial.ttf 13 | 4.1916 54.4980 25 O -0.7296 39.5749 43.3212 -Arial.ttf 13 | 4.1916 54.4980 26 ` 0.0828 10.9561 8.0769 -Arial.ttf 13 | 4.1916 54.4980 27 @ 0.0000 54.1478 54.3123 -Arial.ttf 13 | 4.1916 54.4980 28 F 0.0345 28.2207 42.0000 -Arial.ttf 13 | 4.1916 54.4980 29 S -0.6235 33.0001 43.3212 -Arial.ttf 13 | 4.1916 54.4980 30 p 10.0075 26.3123 43.6877 -Arial.ttf 13 | 4.1916 54.4980 31 “ 0.1061 13.5690 14.0000 -Arial.ttf 13 | 4.1916 54.4980 32 % -0.1793 44.8793 42.3103 -Arial.ttf 13 | 4.1916 54.4980 33 £ 0.0621 29.8522 42.3103 -Arial.ttf 13 | 4.1916 54.4980 34 . 36.4781 5.2626 5.2626 -Arial.ttf 13 | 4.1916 54.4980 35 2 0.2414 28.6956 41.6897 -Arial.ttf 13 | 4.1916 54.4980 36 5 0.3019 26.8483 41.6897 -Arial.ttf 13 | 4.1916 54.4980 37 m 9.9725 41.4044 32.0709 -Arial.ttf 13 | 4.1916 54.4980 38 V -0.1942 40.5788 42.0000 -Arial.ttf 13 | 4.1916 54.4980 39 6 0.2414 27.8542 41.6897 -Arial.ttf 13 | 4.1916 54.4980 40 w 11.1207 43.4212 30.8793 -Arial.ttf 13 | 4.1916 54.4980 41 T -0.0345 33.6936 42.0000 -Arial.ttf 13 | 4.1916 54.4980 42 M 0.2080 40.5788 42.0000 -Arial.ttf 13 | 4.1916 54.4980 43 G -0.5916 38.6897 43.3212 -Arial.ttf 13 | 4.1916 54.4980 44 b 0.0345 26.3123 42.3103 -Arial.ttf 13 | 4.1916 54.4980 45 9 0.4022 26.8483 41.6897 -Arial.ttf 13 | 4.1916 54.4980 46 ; 10.7870 5.2626 39.6167 -Arial.ttf 13 | 4.1916 54.4980 47 D -0.2178 34.4542 42.0000 -Arial.ttf 13 | 4.1916 54.4980 48 L 0.1034 25.8813 42.0000 -Arial.ttf 13 | 4.1916 54.4980 49 y 11.3260 28.0000 42.4960 -Arial.ttf 13 | 4.1916 54.4980 50 ‘ -0.0828 5.9231 14.0000 -Arial.ttf 13 | 4.1916 54.4980 51 \ 0.1516 17.5749 42.0000 -Arial.ttf 13 | 4.1916 54.4980 52 R 0.1155 36.7497 42.0000 -Arial.ttf 13 | 4.1916 54.4980 53 < 7.2711 27.8354 27.8704 -Arial.ttf 13 | 4.1916 54.4980 54 4 0.3241 28.3503 41.6897 -Arial.ttf 13 | 4.1916 54.4980 55 8 0.2138 26.6626 41.6897 -Arial.ttf 13 | 4.1916 54.4980 56 0 0.5172 26.8483 41.6897 -Arial.ttf 13 | 4.1916 54.4980 57 A 0.0000 40.5788 42.0000 -Arial.ttf 13 | 4.1916 54.4980 58 E 0.0828 31.4542 42.0000 -Arial.ttf 13 | 4.1916 54.4980 59 B -0.1337 31.4542 42.0000 -Arial.ttf 13 | 4.1916 54.4980 60 v 11.1511 27.8704 30.8793 -Arial.ttf 13 | 4.1916 54.4980 61 k -0.1172 25.1207 42.0000 -Arial.ttf 13 | 4.1916 54.4980 62 J 0.0743 24.0291 42.6606 -Arial.ttf 13 | 4.1916 54.4980 63 U -0.1034 32.9083 42.6606 -Arial.ttf 13 | 4.1916 54.4980 64 j -0.0345 12.3773 53.6167 -Arial.ttf 13 | 4.1916 54.4980 65 ( 0.2249 14.4103 53.6167 -Arial.ttf 13 | 4.1916 54.4980 66 7 0.5532 26.8523 41.6897 -Arial.ttf 13 | 4.1916 54.4980 67 § 0.0483 26.9729 53.9271 -Arial.ttf 13 | 4.1916 54.4980 68 $ -2.0040 27.6897 49.3355 -Arial.ttf 13 | 4.1916 54.4980 69 € -0.6288 33.0769 43.3212 -Arial.ttf 13 | 4.1916 54.4980 70 / -0.0885 17.5749 42.0000 -Arial.ttf 13 | 4.1916 54.4980 71 C -0.4536 36.0000 43.3212 -Arial.ttf 13 | 4.1916 54.4980 72 * 0.1114 20.3453 17.8852 -Arial.ttf 13 | 4.1916 54.4980 73 ” 0.0784 14.2296 14.0000 -Arial.ttf 13 | 4.1916 54.4980 74 ? 0.0456 26.8483 42.0000 -Arial.ttf 13 | 4.1916 54.4980 75 { 0.0605 16.7375 53.6167 -Arial.ttf 13 | 4.1916 54.4980 76 } -0.0345 16.7375 53.6167 -Arial.ttf 13 | 4.1916 54.4980 77 , 36.5706 5.2626 14.0000 -Arial.ttf 13 | 4.1916 54.4980 78 I -0.0412 5.6936 42.0000 -Arial.ttf 13 | 4.1916 54.4980 79 ° -0.1337 15.8083 15.8083 -Arial.ttf 13 | 4.1916 54.4980 80 K -0.1061 34.5749 42.0000 -Arial.ttf 13 | 4.1916 54.4980 81 H -0.0784 32.9083 42.0000 -Arial.ttf 13 | 4.1916 54.4980 82 q 9.9237 26.3123 43.6877 -Arial.ttf 13 | 4.1916 54.4980 83 & 0.0000 35.1148 42.3103 -Arial.ttf 13 | 4.1916 54.4980 84 ’ 0.0524 5.9231 14.0000 -Arial.ttf 13 | 4.1916 54.4980 85 [ 0.0000 11.0000 53.6167 -Arial.ttf 13 | 4.1916 54.4980 86 - 24.2590 15.4980 5.2626 -Arial.ttf 13 | 4.1916 54.4980 87 Y -0.0345 38.4601 42.0000 -Arial.ttf 13 | 4.1916 54.4980 88 Q -0.5916 39.5749 46.3212 -Arial.ttf 13 | 4.1916 54.4980 89 " -0.1145 15.8083 15.1916 -Arial.ttf 13 | 4.1916 54.4980 90 ! -0.2232 5.2626 42.0000 -Arial.ttf 13 | 4.1916 54.4980 91 x 11.1663 29.1060 30.8793 -Arial.ttf 13 | 4.1916 54.4980 92 ) 0.1199 14.4103 53.6167 -Arial.ttf 13 | 4.1916 54.4980 93 = 12.0895 27.8793 17.8852 -Arial.ttf 13 | 4.1916 54.4980 94 + 7.3789 27.8753 27.8753 -Arial.ttf 13 | 4.1916 54.4980 95 X 0.0966 37.6626 42.0000 -Arial.ttf 13 | 4.1916 54.4980 96 » 13.9561 25.0439 26.1917 -Arial.ttf 13 | 4.1916 54.4980 97 ' 0.1793 5.2626 15.1916 -Arial.ttf 13 | 4.1916 54.4980 98 ¢ -0.1578 25.7813 54.2685 -Arial.ttf 13 | 4.1916 54.4980 99 Z 0.0000 33.0729 42.0000 -Arial.ttf 13 | 4.1916 54.4980 100 > 7.6286 27.8354 27.8704 -Arial.ttf 13 | 4.1916 54.4980 101 ® -0.5640 43.1916 42.9709 -Arial.ttf 13 | 4.1916 54.4980 102 © -0.6123 43.1916 42.9709 -Arial.ttf 13 | 4.1916 54.4980 103 ] 0.0317 11.0000 53.6167 -Arial.ttf 13 | 4.1916 54.4980 104 é -1.1200 27.4690 43.5020 -Arial.ttf 13 | 4.1916 54.4980 105 z 11.1690 26.3123 30.8793 -Arial.ttf 13 | 4.1916 54.4980 106 _ 48.2343 33.3832 5.2626 -Arial.ttf 13 | 4.1916 54.4980 107 ¥ -0.2932 32.0291 42.0000 -Arial.ttf 14 N 32.9083 42.0000 1 t -0.2429 15.0709 42.3103 -Arial.ttf 14 N 32.9083 42.0000 2 h 0.1425 24.2793 42.0000 -Arial.ttf 14 N 32.9083 42.0000 3 a 9.9912 27.4690 32.3813 -Arial.ttf 14 N 32.9083 42.0000 4 n 9.8771 24.2793 32.0709 -Arial.ttf 14 N 32.9083 42.0000 5 P 0.2865 31.4542 42.0000 -Arial.ttf 14 N 32.9083 42.0000 6 o 9.8915 27.4690 32.3813 -Arial.ttf 14 N 32.9083 42.0000 7 e 9.6481 27.4690 32.3813 -Arial.ttf 14 N 32.9083 42.0000 8 : 11.0364 5.2626 30.8793 -Arial.ttf 14 N 32.9083 42.0000 9 r 9.7690 16.5689 32.0709 -Arial.ttf 14 N 32.9083 42.0000 10 l -0.0111 5.2626 42.0000 -Arial.ttf 14 N 32.9083 42.0000 11 i -0.0568 5.2626 42.0000 -Arial.ttf 14 N 32.9083 42.0000 12 1 0.4069 15.2355 41.6897 -Arial.ttf 14 N 32.9083 42.0000 13 | 0.2978 4.1916 54.4980 -Arial.ttf 14 N 32.9083 42.0000 14 N -0.1172 32.9083 42.0000 -Arial.ttf 14 N 32.9083 42.0000 15 f -0.2593 18.0709 42.0000 -Arial.ttf 14 N 32.9083 42.0000 16 g 9.9153 26.3123 43.6877 -Arial.ttf 14 N 32.9083 42.0000 17 d 0.1559 26.3123 42.3103 -Arial.ttf 14 N 32.9083 42.0000 18 W -0.0785 57.1916 42.0000 -Arial.ttf 14 N 32.9083 42.0000 19 s 10.0118 24.9561 32.3813 -Arial.ttf 14 N 32.9083 42.0000 20 c 10.2095 26.8084 32.3813 -Arial.ttf 14 N 32.9083 42.0000 21 u 11.0308 24.2793 31.1896 -Arial.ttf 14 N 32.9083 42.0000 22 3 0.5356 26.8483 41.6897 -Arial.ttf 14 N 32.9083 42.0000 23 ~ 16.8809 29.9083 10.9561 -Arial.ttf 14 N 32.9083 42.0000 24 # 0.0805 31.2646 42.0000 -Arial.ttf 14 N 32.9083 42.0000 25 O -0.9724 39.5749 43.3212 -Arial.ttf 14 N 32.9083 42.0000 26 ` 0.2180 10.9561 8.0769 -Arial.ttf 14 N 32.9083 42.0000 27 @ -0.0249 54.1478 54.3123 -Arial.ttf 14 N 32.9083 42.0000 28 F -0.0843 28.2207 42.0000 -Arial.ttf 14 N 32.9083 42.0000 29 S -0.6357 33.0001 43.3212 -Arial.ttf 14 N 32.9083 42.0000 30 p 10.1281 26.3123 43.6877 -Arial.ttf 14 N 32.9083 42.0000 31 “ 0.0483 13.5690 14.0000 -Arial.ttf 14 N 32.9083 42.0000 32 % 0.0759 44.8793 42.3103 -Arial.ttf 14 N 32.9083 42.0000 33 £ -0.1533 29.8522 42.3103 -Arial.ttf 14 N 32.9083 42.0000 34 . 36.9209 5.2626 5.2626 -Arial.ttf 14 N 32.9083 42.0000 35 2 0.2287 28.6956 41.6897 -Arial.ttf 14 N 32.9083 42.0000 36 5 0.2567 26.8483 41.6897 -Arial.ttf 14 N 32.9083 42.0000 37 m 10.1246 41.4044 32.0709 -Arial.ttf 14 N 32.9083 42.0000 38 V 0.1762 40.5788 42.0000 -Arial.ttf 14 N 32.9083 42.0000 39 6 0.3739 27.8542 41.6897 -Arial.ttf 14 N 32.9083 42.0000 40 w 11.1288 43.4212 30.8793 -Arial.ttf 14 N 32.9083 42.0000 41 T 0.0301 33.6936 42.0000 -Arial.ttf 14 N 32.9083 42.0000 42 M -0.0222 40.5788 42.0000 -Arial.ttf 14 N 32.9083 42.0000 43 G -0.4468 38.6897 43.3212 -Arial.ttf 14 N 32.9083 42.0000 44 b 0.2753 26.3123 42.3103 -Arial.ttf 14 N 32.9083 42.0000 45 9 0.4429 26.8483 41.6897 -Arial.ttf 14 N 32.9083 42.0000 46 ; 11.2390 5.2626 39.6167 -Arial.ttf 14 N 32.9083 42.0000 47 D 0.0433 34.4542 42.0000 -Arial.ttf 14 N 32.9083 42.0000 48 L 0.1156 25.8813 42.0000 -Arial.ttf 14 N 32.9083 42.0000 49 y 11.0994 28.0000 42.4960 -Arial.ttf 14 N 32.9083 42.0000 50 ‘ -0.1358 5.9231 14.0000 -Arial.ttf 14 N 32.9083 42.0000 51 \ -0.0108 17.5749 42.0000 -Arial.ttf 14 N 32.9083 42.0000 52 R -0.1324 36.7497 42.0000 -Arial.ttf 14 N 32.9083 42.0000 53 < 7.3851 27.8354 27.8704 -Arial.ttf 14 N 32.9083 42.0000 54 4 0.2192 28.3503 41.6897 -Arial.ttf 14 N 32.9083 42.0000 55 8 0.0487 26.6626 41.6897 -Arial.ttf 14 N 32.9083 42.0000 56 0 0.1900 26.8483 41.6897 -Arial.ttf 14 N 32.9083 42.0000 57 A -0.3654 40.5788 42.0000 -Arial.ttf 14 N 32.9083 42.0000 58 E 0.1460 31.4542 42.0000 -Arial.ttf 14 N 32.9083 42.0000 59 B 0.0979 31.4542 42.0000 -Arial.ttf 14 N 32.9083 42.0000 60 v 11.0104 27.8704 30.8793 -Arial.ttf 14 N 32.9083 42.0000 61 k 0.1437 25.1207 42.0000 -Arial.ttf 14 N 32.9083 42.0000 62 J 0.2440 24.0291 42.6606 -Arial.ttf 14 N 32.9083 42.0000 63 U 0.0261 32.9083 42.6606 -Arial.ttf 14 N 32.9083 42.0000 64 j -0.1739 12.3773 53.6167 -Arial.ttf 14 N 32.9083 42.0000 65 ( -0.0551 14.4103 53.6167 -Arial.ttf 14 N 32.9083 42.0000 66 7 0.1629 26.8523 41.6897 -Arial.ttf 14 N 32.9083 42.0000 67 § -0.0207 26.9729 53.9271 -Arial.ttf 14 N 32.9083 42.0000 68 $ -2.2012 27.6897 49.3355 -Arial.ttf 14 N 32.9083 42.0000 69 € -1.0328 33.0769 43.3212 -Arial.ttf 14 N 32.9083 42.0000 70 / -0.0912 17.5749 42.0000 -Arial.ttf 14 N 32.9083 42.0000 71 C -0.6161 36.0000 43.3212 -Arial.ttf 14 N 32.9083 42.0000 72 * 0.0068 20.3453 17.8852 -Arial.ttf 14 N 32.9083 42.0000 73 ” 0.1218 14.2296 14.0000 -Arial.ttf 14 N 32.9083 42.0000 74 ? 0.3039 26.8483 42.0000 -Arial.ttf 14 N 32.9083 42.0000 75 { 0.2345 16.7375 53.6167 -Arial.ttf 14 N 32.9083 42.0000 76 } 0.0233 16.7375 53.6167 -Arial.ttf 14 N 32.9083 42.0000 77 , 36.8955 5.2626 14.0000 -Arial.ttf 14 N 32.9083 42.0000 78 I -0.1624 5.6936 42.0000 -Arial.ttf 14 N 32.9083 42.0000 79 ° 0.1253 15.8083 15.8083 -Arial.ttf 14 N 32.9083 42.0000 80 K 0.0233 34.5749 42.0000 -Arial.ttf 14 N 32.9083 42.0000 81 H 0.1557 32.9083 42.0000 -Arial.ttf 14 N 32.9083 42.0000 82 q 10.1193 26.3123 43.6877 -Arial.ttf 14 N 32.9083 42.0000 83 & -0.3973 35.1148 42.3103 -Arial.ttf 14 N 32.9083 42.0000 84 ’ 0.2624 5.9231 14.0000 -Arial.ttf 14 N 32.9083 42.0000 85 [ -0.1108 11.0000 53.6167 -Arial.ttf 14 N 32.9083 42.0000 86 - 24.1938 15.4980 5.2626 -Arial.ttf 14 N 32.9083 42.0000 87 Y -0.0483 38.4601 42.0000 -Arial.ttf 14 N 32.9083 42.0000 88 Q -0.5832 39.5749 46.3212 -Arial.ttf 14 N 32.9083 42.0000 89 " 0.3999 15.8083 15.1916 -Arial.ttf 14 N 32.9083 42.0000 90 ! 0.0371 5.2626 42.0000 -Arial.ttf 14 N 32.9083 42.0000 91 x 11.4199 29.1060 30.8793 -Arial.ttf 14 N 32.9083 42.0000 92 ) -0.0202 14.4103 53.6167 -Arial.ttf 14 N 32.9083 42.0000 93 = 11.7908 27.8793 17.8852 -Arial.ttf 14 N 32.9083 42.0000 94 + 7.7880 27.8753 27.8753 -Arial.ttf 14 N 32.9083 42.0000 95 X -0.2943 37.6626 42.0000 -Arial.ttf 14 N 32.9083 42.0000 96 » 13.7407 25.0439 26.1917 -Arial.ttf 14 N 32.9083 42.0000 97 ' -0.0084 5.2626 15.1916 -Arial.ttf 14 N 32.9083 42.0000 98 ¢ -0.4459 25.7813 54.2685 -Arial.ttf 14 N 32.9083 42.0000 99 Z -0.0318 33.0729 42.0000 -Arial.ttf 14 N 32.9083 42.0000 100 > 7.5140 27.8354 27.8704 -Arial.ttf 14 N 32.9083 42.0000 101 ® -0.5437 43.1916 42.9709 -Arial.ttf 14 N 32.9083 42.0000 102 © -0.7296 43.1916 42.9709 -Arial.ttf 14 N 32.9083 42.0000 103 ] 0.1284 11.0000 53.6167 -Arial.ttf 14 N 32.9083 42.0000 104 é -1.2028 27.4690 43.5020 -Arial.ttf 14 N 32.9083 42.0000 105 z 10.9235 26.3123 30.8793 -Arial.ttf 14 N 32.9083 42.0000 106 _ 48.2615 33.3832 5.2626 -Arial.ttf 14 N 32.9083 42.0000 107 ¥ -0.1257 32.0291 42.0000 -Arial.ttf 15 f 18.0709 42.0000 1 t -0.0578 15.0709 42.3103 -Arial.ttf 15 f 18.0709 42.0000 2 h 0.1209 24.2793 42.0000 -Arial.ttf 15 f 18.0709 42.0000 3 a 10.0075 27.4690 32.3813 -Arial.ttf 15 f 18.0709 42.0000 4 n 10.0697 24.2793 32.0709 -Arial.ttf 15 f 18.0709 42.0000 5 P 0.1962 31.4542 42.0000 -Arial.ttf 15 f 18.0709 42.0000 6 o 9.9210 27.4690 32.3813 -Arial.ttf 15 f 18.0709 42.0000 7 e 9.7800 27.4690 32.3813 -Arial.ttf 15 f 18.0709 42.0000 8 : 10.9414 5.2626 30.8793 -Arial.ttf 15 f 18.0709 42.0000 9 r 9.7662 16.5689 32.0709 -Arial.ttf 15 f 18.0709 42.0000 10 l -0.0527 5.2626 42.0000 -Arial.ttf 15 f 18.0709 42.0000 11 i -0.0260 5.2626 42.0000 -Arial.ttf 15 f 18.0709 42.0000 12 1 0.2901 15.2355 41.6897 -Arial.ttf 15 f 18.0709 42.0000 13 | 0.0550 4.1916 54.4980 -Arial.ttf 15 f 18.0709 42.0000 14 N -0.0220 32.9083 42.0000 -Arial.ttf 15 f 18.0709 42.0000 15 f 0.0902 18.0709 42.0000 -Arial.ttf 15 f 18.0709 42.0000 16 g 9.9308 26.3123 43.6877 -Arial.ttf 15 f 18.0709 42.0000 17 d 0.2690 26.3123 42.3103 -Arial.ttf 15 f 18.0709 42.0000 18 W 0.1114 57.1916 42.0000 -Arial.ttf 15 f 18.0709 42.0000 19 s 9.8437 24.9561 32.3813 -Arial.ttf 15 f 18.0709 42.0000 20 c 9.9916 26.8084 32.3813 -Arial.ttf 15 f 18.0709 42.0000 21 u 10.9092 24.2793 31.1896 -Arial.ttf 15 f 18.0709 42.0000 22 3 0.2665 26.8483 41.6897 -Arial.ttf 15 f 18.0709 42.0000 23 ~ 16.9330 29.9083 10.9561 -Arial.ttf 15 f 18.0709 42.0000 24 # 0.2777 31.2646 42.0000 -Arial.ttf 15 f 18.0709 42.0000 25 O -0.7200 39.5749 43.3212 -Arial.ttf 15 f 18.0709 42.0000 26 ` -0.0743 10.9561 8.0769 -Arial.ttf 15 f 18.0709 42.0000 27 @ 0.1325 54.1478 54.3123 -Arial.ttf 15 f 18.0709 42.0000 28 F -0.1739 28.2207 42.0000 -Arial.ttf 15 f 18.0709 42.0000 29 S -0.5928 33.0001 43.3212 -Arial.ttf 15 f 18.0709 42.0000 30 p 10.0659 26.3123 43.6877 -Arial.ttf 15 f 18.0709 42.0000 31 “ -0.3088 13.5690 14.0000 -Arial.ttf 15 f 18.0709 42.0000 32 % 0.2496 44.8793 42.3103 -Arial.ttf 15 f 18.0709 42.0000 33 £ 0.0841 29.8522 42.3103 -Arial.ttf 15 f 18.0709 42.0000 34 . 36.6796 5.2626 5.2626 -Arial.ttf 15 f 18.0709 42.0000 35 2 0.1969 28.6956 41.6897 -Arial.ttf 15 f 18.0709 42.0000 36 5 0.3586 26.8483 41.6897 -Arial.ttf 15 f 18.0709 42.0000 37 m 9.9774 41.4044 32.0709 -Arial.ttf 15 f 18.0709 42.0000 38 V 0.0774 40.5788 42.0000 -Arial.ttf 15 f 18.0709 42.0000 39 6 0.3103 27.8542 41.6897 -Arial.ttf 15 f 18.0709 42.0000 40 w 11.0711 43.4212 30.8793 -Arial.ttf 15 f 18.0709 42.0000 41 T 0.0238 33.6936 42.0000 -Arial.ttf 15 f 18.0709 42.0000 42 M 0.0774 40.5788 42.0000 -Arial.ttf 15 f 18.0709 42.0000 43 G -0.8686 38.6897 43.3212 -Arial.ttf 15 f 18.0709 42.0000 44 b 0.0729 26.3123 42.3103 -Arial.ttf 15 f 18.0709 42.0000 45 9 0.1793 26.8483 41.6897 -Arial.ttf 15 f 18.0709 42.0000 46 ; 11.1069 5.2626 39.6167 -Arial.ttf 15 f 18.0709 42.0000 47 D -0.0551 34.4542 42.0000 -Arial.ttf 15 f 18.0709 42.0000 48 L -0.1598 25.8813 42.0000 -Arial.ttf 15 f 18.0709 42.0000 49 y 11.2119 28.0000 42.4960 -Arial.ttf 15 f 18.0709 42.0000 50 ‘ -0.0770 5.9231 14.0000 -Arial.ttf 15 f 18.0709 42.0000 51 \ -0.0594 17.5749 42.0000 -Arial.ttf 15 f 18.0709 42.0000 52 R -0.1130 36.7497 42.0000 -Arial.ttf 15 f 18.0709 42.0000 53 < 7.4259 27.8354 27.8704 -Arial.ttf 15 f 18.0709 42.0000 54 4 0.2440 28.3503 41.6897 -Arial.ttf 15 f 18.0709 42.0000 55 8 0.2452 26.6626 41.6897 -Arial.ttf 15 f 18.0709 42.0000 56 0 0.2828 26.8483 41.6897 -Arial.ttf 15 f 18.0709 42.0000 57 A -0.0116 40.5788 42.0000 -Arial.ttf 15 f 18.0709 42.0000 58 E -0.0042 31.4542 42.0000 -Arial.ttf 15 f 18.0709 42.0000 59 B -0.3421 31.4542 42.0000 -Arial.ttf 15 f 18.0709 42.0000 60 v 11.1525 27.8704 30.8793 -Arial.ttf 15 f 18.0709 42.0000 61 k 0.1060 25.1207 42.0000 -Arial.ttf 15 f 18.0709 42.0000 62 J -0.3283 24.0291 42.6606 -Arial.ttf 15 f 18.0709 42.0000 63 U 0.1183 32.9083 42.6606 -Arial.ttf 15 f 18.0709 42.0000 64 j 0.0854 12.3773 53.6167 -Arial.ttf 15 f 18.0709 42.0000 65 ( 0.1134 14.4103 53.6167 -Arial.ttf 15 f 18.0709 42.0000 66 7 0.2016 26.8523 41.6897 -Arial.ttf 15 f 18.0709 42.0000 67 § 0.2000 26.9729 53.9271 -Arial.ttf 15 f 18.0709 42.0000 68 $ -2.0480 27.6897 49.3355 -Arial.ttf 15 f 18.0709 42.0000 69 € -0.6663 33.0769 43.3212 -Arial.ttf 15 f 18.0709 42.0000 70 / -0.0138 17.5749 42.0000 -Arial.ttf 15 f 18.0709 42.0000 71 C -0.5583 36.0000 43.3212 -Arial.ttf 15 f 18.0709 42.0000 72 * 0.3368 20.3453 17.8852 -Arial.ttf 15 f 18.0709 42.0000 73 ” 0.1172 14.2296 14.0000 -Arial.ttf 15 f 18.0709 42.0000 74 ? 0.0615 26.8483 42.0000 -Arial.ttf 15 f 18.0709 42.0000 75 { -0.0753 16.7375 53.6167 -Arial.ttf 15 f 18.0709 42.0000 76 } -0.3230 16.7375 53.6167 -Arial.ttf 15 f 18.0709 42.0000 77 , 36.7030 5.2626 14.0000 -Arial.ttf 15 f 18.0709 42.0000 78 I -0.1739 5.6936 42.0000 -Arial.ttf 15 f 18.0709 42.0000 79 ° -0.0057 15.8083 15.8083 -Arial.ttf 15 f 18.0709 42.0000 80 K 0.0625 34.5749 42.0000 -Arial.ttf 15 f 18.0709 42.0000 81 H 0.0743 32.9083 42.0000 -Arial.ttf 15 f 18.0709 42.0000 82 q 10.0901 26.3123 43.6877 -Arial.ttf 15 f 18.0709 42.0000 83 & 0.1889 35.1148 42.3103 -Arial.ttf 15 f 18.0709 42.0000 84 ’ 0.1601 5.9231 14.0000 -Arial.ttf 15 f 18.0709 42.0000 85 [ 0.0101 11.0000 53.6167 -Arial.ttf 15 f 18.0709 42.0000 86 - 24.2475 15.4980 5.2626 -Arial.ttf 15 f 18.0709 42.0000 87 Y -0.1368 38.4601 42.0000 -Arial.ttf 15 f 18.0709 42.0000 88 Q -0.7474 39.5749 46.3212 -Arial.ttf 15 f 18.0709 42.0000 89 " -0.1655 15.8083 15.1916 -Arial.ttf 15 f 18.0709 42.0000 90 ! -0.1820 5.2626 42.0000 -Arial.ttf 15 f 18.0709 42.0000 91 x 11.1207 29.1060 30.8793 -Arial.ttf 15 f 18.0709 42.0000 92 ) 0.0557 14.4103 53.6167 -Arial.ttf 15 f 18.0709 42.0000 93 = 12.0072 27.8793 17.8852 -Arial.ttf 15 f 18.0709 42.0000 94 + 7.4117 27.8753 27.8753 -Arial.ttf 15 f 18.0709 42.0000 95 X -0.1479 37.6626 42.0000 -Arial.ttf 15 f 18.0709 42.0000 96 » 13.9244 25.0439 26.1917 -Arial.ttf 15 f 18.0709 42.0000 97 ' -0.1337 5.2626 15.1916 -Arial.ttf 15 f 18.0709 42.0000 98 ¢ -0.1260 25.7813 54.2685 -Arial.ttf 15 f 18.0709 42.0000 99 Z 0.0000 33.0729 42.0000 -Arial.ttf 15 f 18.0709 42.0000 100 > 7.7944 27.8354 27.8704 -Arial.ttf 15 f 18.0709 42.0000 101 ® -0.5518 43.1916 42.9709 -Arial.ttf 15 f 18.0709 42.0000 102 © -0.7767 43.1916 42.9709 -Arial.ttf 15 f 18.0709 42.0000 103 ] 0.0785 11.0000 53.6167 -Arial.ttf 15 f 18.0709 42.0000 104 é -1.2526 27.4690 43.5020 -Arial.ttf 15 f 18.0709 42.0000 105 z 11.2916 26.3123 30.8793 -Arial.ttf 15 f 18.0709 42.0000 106 _ 48.4025 33.3832 5.2626 -Arial.ttf 15 f 18.0709 42.0000 107 ¥ -0.0690 32.0291 42.0000 -Arial.ttf 16 g 26.3123 43.6877 1 t -9.9169 15.0709 42.3103 -Arial.ttf 16 g 26.3123 43.6877 2 h -9.9444 24.2793 42.0000 -Arial.ttf 16 g 26.3123 43.6877 3 a -0.0881 27.4690 32.3813 -Arial.ttf 16 g 26.3123 43.6877 4 n -0.0138 24.2793 32.0709 -Arial.ttf 16 g 26.3123 43.6877 5 P -9.9153 31.4542 42.0000 -Arial.ttf 16 g 26.3123 43.6877 6 o 0.1187 27.4690 32.3813 -Arial.ttf 16 g 26.3123 43.6877 7 e -0.0815 27.4690 32.3813 -Arial.ttf 16 g 26.3123 43.6877 8 : 1.3625 5.2626 30.8793 -Arial.ttf 16 g 26.3123 43.6877 9 r 0.0653 16.5689 32.0709 -Arial.ttf 16 g 26.3123 43.6877 10 l -9.9291 5.2626 42.0000 -Arial.ttf 16 g 26.3123 43.6877 11 i -9.9031 5.2626 42.0000 -Arial.ttf 16 g 26.3123 43.6877 12 1 -9.2908 15.2355 41.6897 -Arial.ttf 16 g 26.3123 43.6877 13 | -10.0227 4.1916 54.4980 -Arial.ttf 16 g 26.3123 43.6877 14 N -9.9747 32.9083 42.0000 -Arial.ttf 16 g 26.3123 43.6877 15 f -9.8808 18.0709 42.0000 -Arial.ttf 16 g 26.3123 43.6877 16 g -0.1996 26.3123 43.6877 -Arial.ttf 16 g 26.3123 43.6877 17 d -9.8149 26.3123 42.3103 -Arial.ttf 16 g 26.3123 43.6877 18 W -9.9163 57.1916 42.0000 -Arial.ttf 16 g 26.3123 43.6877 19 s 0.1448 24.9561 32.3813 -Arial.ttf 16 g 26.3123 43.6877 20 c 0.1654 26.8084 32.3813 -Arial.ttf 16 g 26.3123 43.6877 21 u 1.3554 24.2793 31.1896 -Arial.ttf 16 g 26.3123 43.6877 22 3 -9.4810 26.8483 41.6897 -Arial.ttf 16 g 26.3123 43.6877 23 ~ 6.8537 29.9083 10.9561 -Arial.ttf 16 g 26.3123 43.6877 24 # -9.8149 31.2646 42.0000 -Arial.ttf 16 g 26.3123 43.6877 25 O -10.7901 39.5749 43.3212 -Arial.ttf 16 g 26.3123 43.6877 26 ` -9.8271 10.9561 8.0769 -Arial.ttf 16 g 26.3123 43.6877 27 @ -9.8866 54.1478 54.3123 -Arial.ttf 16 g 26.3123 43.6877 28 F -9.9980 28.2207 42.0000 -Arial.ttf 16 g 26.3123 43.6877 29 S -10.4667 33.0001 43.3212 -Arial.ttf 16 g 26.3123 43.6877 30 p -0.0966 26.3123 43.6877 -Arial.ttf 16 g 26.3123 43.6877 31 “ -10.0795 13.5690 14.0000 -Arial.ttf 16 g 26.3123 43.6877 32 % -10.0866 44.8793 42.3103 -Arial.ttf 16 g 26.3123 43.6877 33 £ -9.9014 29.8522 42.3103 -Arial.ttf 16 g 26.3123 43.6877 34 . 26.6965 5.2626 5.2626 -Arial.ttf 16 g 26.3123 43.6877 35 2 -9.6616 28.6956 41.6897 -Arial.ttf 16 g 26.3123 43.6877 36 5 -9.3579 26.8483 41.6897 -Arial.ttf 16 g 26.3123 43.6877 37 m 0.0218 41.4044 32.0709 -Arial.ttf 16 g 26.3123 43.6877 38 V -9.7287 40.5788 42.0000 -Arial.ttf 16 g 26.3123 43.6877 39 6 -9.7475 27.8542 41.6897 -Arial.ttf 16 g 26.3123 43.6877 40 w 1.2235 43.4212 30.8793 -Arial.ttf 16 g 26.3123 43.6877 41 T -9.8008 33.6936 42.0000 -Arial.ttf 16 g 26.3123 43.6877 42 M -9.9636 40.5788 42.0000 -Arial.ttf 16 g 26.3123 43.6877 43 G -10.6130 38.6897 43.3212 -Arial.ttf 16 g 26.3123 43.6877 44 b -9.6501 26.3123 42.3103 -Arial.ttf 16 g 26.3123 43.6877 45 9 -9.6528 26.8483 41.6897 -Arial.ttf 16 g 26.3123 43.6877 46 ; 1.1227 5.2626 39.6167 -Arial.ttf 16 g 26.3123 43.6877 47 D -9.5728 34.4542 42.0000 -Arial.ttf 16 g 26.3123 43.6877 48 L -9.7839 25.8813 42.0000 -Arial.ttf 16 g 26.3123 43.6877 49 y 1.1227 28.0000 42.4960 -Arial.ttf 16 g 26.3123 43.6877 50 ‘ -9.8341 5.9231 14.0000 -Arial.ttf 16 g 26.3123 43.6877 51 \ -9.8261 17.5749 42.0000 -Arial.ttf 16 g 26.3123 43.6877 52 R -9.7980 36.7497 42.0000 -Arial.ttf 16 g 26.3123 43.6877 53 < -2.3430 27.8354 27.8704 -Arial.ttf 16 g 26.3123 43.6877 54 4 -9.4833 28.3503 41.6897 -Arial.ttf 16 g 26.3123 43.6877 55 8 -9.4532 26.6626 41.6897 -Arial.ttf 16 g 26.3123 43.6877 56 0 -9.7620 26.8483 41.6897 -Arial.ttf 16 g 26.3123 43.6877 57 A -9.7998 40.5788 42.0000 -Arial.ttf 16 g 26.3123 43.6877 58 E -10.0537 31.4542 42.0000 -Arial.ttf 16 g 26.3123 43.6877 59 B -10.0919 31.4542 42.0000 -Arial.ttf 16 g 26.3123 43.6877 60 v 1.3051 27.8704 30.8793 -Arial.ttf 16 g 26.3123 43.6877 61 k -10.3333 25.1207 42.0000 -Arial.ttf 16 g 26.3123 43.6877 62 J -10.4170 24.0291 42.6606 -Arial.ttf 16 g 26.3123 43.6877 63 U -9.8915 32.9083 42.6606 -Arial.ttf 16 g 26.3123 43.6877 64 j -9.9483 12.3773 53.6167 -Arial.ttf 16 g 26.3123 43.6877 65 ( -9.8701 14.4103 53.6167 -Arial.ttf 16 g 26.3123 43.6877 66 7 -9.7702 26.8523 41.6897 -Arial.ttf 16 g 26.3123 43.6877 67 § -9.6517 26.9729 53.9271 -Arial.ttf 16 g 26.3123 43.6877 68 $ -11.7555 27.6897 49.3355 -Arial.ttf 16 g 26.3123 43.6877 69 € -10.5494 33.0769 43.3212 -Arial.ttf 16 g 26.3123 43.6877 70 / -10.0229 17.5749 42.0000 -Arial.ttf 16 g 26.3123 43.6877 71 C -10.7052 36.0000 43.3212 -Arial.ttf 16 g 26.3123 43.6877 72 * -9.9282 20.3453 17.8852 -Arial.ttf 16 g 26.3123 43.6877 73 ” -9.8981 14.2296 14.0000 -Arial.ttf 16 g 26.3123 43.6877 74 ? -9.7605 26.8483 42.0000 -Arial.ttf 16 g 26.3123 43.6877 75 { -9.8118 16.7375 53.6167 -Arial.ttf 16 g 26.3123 43.6877 76 } -9.6545 16.7375 53.6167 -Arial.ttf 16 g 26.3123 43.6877 77 , 26.6773 5.2626 14.0000 -Arial.ttf 16 g 26.3123 43.6877 78 I -9.8230 5.6936 42.0000 -Arial.ttf 16 g 26.3123 43.6877 79 ° -9.7661 15.8083 15.8083 -Arial.ttf 16 g 26.3123 43.6877 80 K -10.1278 34.5749 42.0000 -Arial.ttf 16 g 26.3123 43.6877 81 H -9.8162 32.9083 42.0000 -Arial.ttf 16 g 26.3123 43.6877 82 q 0.0287 26.3123 43.6877 -Arial.ttf 16 g 26.3123 43.6877 83 & -10.0270 35.1148 42.3103 -Arial.ttf 16 g 26.3123 43.6877 84 ’ -10.2240 5.9231 14.0000 -Arial.ttf 16 g 26.3123 43.6877 85 [ -9.9110 11.0000 53.6167 -Arial.ttf 16 g 26.3123 43.6877 86 - 14.4621 15.4980 5.2626 -Arial.ttf 16 g 26.3123 43.6877 87 Y -10.1400 38.4601 42.0000 -Arial.ttf 16 g 26.3123 43.6877 88 Q -10.6818 39.5749 46.3212 -Arial.ttf 16 g 26.3123 43.6877 89 " -9.9248 15.8083 15.1916 -Arial.ttf 16 g 26.3123 43.6877 90 ! -9.8463 5.2626 42.0000 -Arial.ttf 16 g 26.3123 43.6877 91 x 1.1227 29.1060 30.8793 -Arial.ttf 16 g 26.3123 43.6877 92 ) -9.7609 14.4103 53.6167 -Arial.ttf 16 g 26.3123 43.6877 93 = 1.8728 27.8793 17.8852 -Arial.ttf 16 g 26.3123 43.6877 94 + -2.1218 27.8753 27.8753 -Arial.ttf 16 g 26.3123 43.6877 95 X -10.1317 37.6626 42.0000 -Arial.ttf 16 g 26.3123 43.6877 96 » 4.3234 25.0439 26.1917 -Arial.ttf 16 g 26.3123 43.6877 97 ' -9.9433 5.2626 15.1916 -Arial.ttf 16 g 26.3123 43.6877 98 ¢ -9.9468 25.7813 54.2685 -Arial.ttf 16 g 26.3123 43.6877 99 Z -9.8162 33.0729 42.0000 -Arial.ttf 16 g 26.3123 43.6877 100 > -2.1496 27.8354 27.8704 -Arial.ttf 16 g 26.3123 43.6877 101 ® -10.5140 43.1916 42.9709 -Arial.ttf 16 g 26.3123 43.6877 102 © -10.5566 43.1916 42.9709 -Arial.ttf 16 g 26.3123 43.6877 103 ] -10.0655 11.0000 53.6167 -Arial.ttf 16 g 26.3123 43.6877 104 é -11.2724 27.4690 43.5020 -Arial.ttf 16 g 26.3123 43.6877 105 z 0.9499 26.3123 30.8793 -Arial.ttf 16 g 26.3123 43.6877 106 _ 38.3196 33.3832 5.2626 -Arial.ttf 16 g 26.3123 43.6877 107 ¥ -9.9618 32.0291 42.0000 -Arial.ttf 17 d 26.3123 42.3103 1 t -0.2894 15.0709 42.3103 -Arial.ttf 17 d 26.3123 42.3103 2 h 0.2678 24.2793 42.0000 -Arial.ttf 17 d 26.3123 42.3103 3 a 9.7774 27.4690 32.3813 -Arial.ttf 17 d 26.3123 42.3103 4 n 9.7578 24.2793 32.0709 -Arial.ttf 17 d 26.3123 42.3103 5 P -0.0057 31.4542 42.0000 -Arial.ttf 17 d 26.3123 42.3103 6 o 9.9026 27.4690 32.3813 -Arial.ttf 17 d 26.3123 42.3103 7 e 10.2712 27.4690 32.3813 -Arial.ttf 17 d 26.3123 42.3103 8 : 11.1703 5.2626 30.8793 -Arial.ttf 17 d 26.3123 42.3103 9 r 9.7717 16.5689 32.0709 -Arial.ttf 17 d 26.3123 42.3103 10 l -0.1708 5.2626 42.0000 -Arial.ttf 17 d 26.3123 42.3103 11 i 0.0013 5.2626 42.0000 -Arial.ttf 17 d 26.3123 42.3103 12 1 0.4447 15.2355 41.6897 -Arial.ttf 17 d 26.3123 42.3103 13 | 0.3230 4.1916 54.4980 -Arial.ttf 17 d 26.3123 42.3103 14 N -0.1050 32.9083 42.0000 -Arial.ttf 17 d 26.3123 42.3103 15 f 0.1406 18.0709 42.0000 -Arial.ttf 17 d 26.3123 42.3103 16 g 9.8102 26.3123 43.6877 -Arial.ttf 17 d 26.3123 42.3103 17 d 0.1063 26.3123 42.3103 -Arial.ttf 17 d 26.3123 42.3103 18 W -0.2084 57.1916 42.0000 -Arial.ttf 17 d 26.3123 42.3103 19 s 10.0850 24.9561 32.3813 -Arial.ttf 17 d 26.3123 42.3103 20 c 10.1635 26.8084 32.3813 -Arial.ttf 17 d 26.3123 42.3103 21 u 11.4749 24.2793 31.1896 -Arial.ttf 17 d 26.3123 42.3103 22 3 0.2483 26.8483 41.6897 -Arial.ttf 17 d 26.3123 42.3103 23 ~ 17.0293 29.9083 10.9561 -Arial.ttf 17 d 26.3123 42.3103 24 # 0.0402 31.2646 42.0000 -Arial.ttf 17 d 26.3123 42.3103 25 O -0.5801 39.5749 43.3212 -Arial.ttf 17 d 26.3123 42.3103 26 ` 0.0816 10.9561 8.0769 -Arial.ttf 17 d 26.3123 42.3103 27 @ -0.0450 54.1478 54.3123 -Arial.ttf 17 d 26.3123 42.3103 28 F 0.1226 28.2207 42.0000 -Arial.ttf 17 d 26.3123 42.3103 29 S -0.8343 33.0001 43.3212 -Arial.ttf 17 d 26.3123 42.3103 30 p 9.9455 26.3123 43.6877 -Arial.ttf 17 d 26.3123 42.3103 31 “ -0.0743 13.5690 14.0000 -Arial.ttf 17 d 26.3123 42.3103 32 % 0.0039 44.8793 42.3103 -Arial.ttf 17 d 26.3123 42.3103 33 £ -0.2264 29.8522 42.3103 -Arial.ttf 17 d 26.3123 42.3103 34 . 36.9168 5.2626 5.2626 -Arial.ttf 17 d 26.3123 42.3103 35 2 0.4667 28.6956 41.6897 -Arial.ttf 17 d 26.3123 42.3103 36 5 0.2594 26.8483 41.6897 -Arial.ttf 17 d 26.3123 42.3103 37 m 9.7622 41.4044 32.0709 -Arial.ttf 17 d 26.3123 42.3103 38 V 0.0897 40.5788 42.0000 -Arial.ttf 17 d 26.3123 42.3103 39 6 0.1721 27.8542 41.6897 -Arial.ttf 17 d 26.3123 42.3103 40 w 11.3774 43.4212 30.8793 -Arial.ttf 17 d 26.3123 42.3103 41 T -0.0701 33.6936 42.0000 -Arial.ttf 17 d 26.3123 42.3103 42 M 0.1735 40.5788 42.0000 -Arial.ttf 17 d 26.3123 42.3103 43 G -0.6399 38.6897 43.3212 -Arial.ttf 17 d 26.3123 42.3103 44 b 0.0640 26.3123 42.3103 -Arial.ttf 17 d 26.3123 42.3103 45 9 0.4408 26.8483 41.6897 -Arial.ttf 17 d 26.3123 42.3103 46 ; 11.2273 5.2626 39.6167 -Arial.ttf 17 d 26.3123 42.3103 47 D -0.4741 34.4542 42.0000 -Arial.ttf 17 d 26.3123 42.3103 48 L 0.1686 25.8813 42.0000 -Arial.ttf 17 d 26.3123 42.3103 49 y 11.3566 28.0000 42.4960 -Arial.ttf 17 d 26.3123 42.3103 50 ‘ 0.0621 5.9231 14.0000 -Arial.ttf 17 d 26.3123 42.3103 51 \ -0.1444 17.5749 42.0000 -Arial.ttf 17 d 26.3123 42.3103 52 R -0.0690 36.7497 42.0000 -Arial.ttf 17 d 26.3123 42.3103 53 < 7.8545 27.8354 27.8704 -Arial.ttf 17 d 26.3123 42.3103 54 4 0.2981 28.3503 41.6897 -Arial.ttf 17 d 26.3123 42.3103 55 8 0.3900 26.6626 41.6897 -Arial.ttf 17 d 26.3123 42.3103 56 0 0.2992 26.8483 41.6897 -Arial.ttf 17 d 26.3123 42.3103 57 A 0.0000 40.5788 42.0000 -Arial.ttf 17 d 26.3123 42.3103 58 E -0.1225 31.4542 42.0000 -Arial.ttf 17 d 26.3123 42.3103 59 B -0.0440 31.4542 42.0000 -Arial.ttf 17 d 26.3123 42.3103 60 v 10.8366 27.8704 30.8793 -Arial.ttf 17 d 26.3123 42.3103 61 k -0.0541 25.1207 42.0000 -Arial.ttf 17 d 26.3123 42.3103 62 J 0.0000 24.0291 42.6606 -Arial.ttf 17 d 26.3123 42.3103 63 U 0.1855 32.9083 42.6606 -Arial.ttf 17 d 26.3123 42.3103 64 j -0.3006 12.3773 53.6167 -Arial.ttf 17 d 26.3123 42.3103 65 ( 0.0107 14.4103 53.6167 -Arial.ttf 17 d 26.3123 42.3103 66 7 0.1073 26.8523 41.6897 -Arial.ttf 17 d 26.3123 42.3103 67 § 0.2348 26.9729 53.9271 -Arial.ttf 17 d 26.3123 42.3103 68 $ -2.1392 27.6897 49.3355 -Arial.ttf 17 d 26.3123 42.3103 69 € -0.6552 33.0769 43.3212 -Arial.ttf 17 d 26.3123 42.3103 70 / -0.2481 17.5749 42.0000 -Arial.ttf 17 d 26.3123 42.3103 71 C -0.3986 36.0000 43.3212 -Arial.ttf 17 d 26.3123 42.3103 72 * -0.1502 20.3453 17.8852 -Arial.ttf 17 d 26.3123 42.3103 73 ” 0.4831 14.2296 14.0000 -Arial.ttf 17 d 26.3123 42.3103 74 ? -0.1931 26.8483 42.0000 -Arial.ttf 17 d 26.3123 42.3103 75 { -0.0598 16.7375 53.6167 -Arial.ttf 17 d 26.3123 42.3103 76 } 0.0053 16.7375 53.6167 -Arial.ttf 17 d 26.3123 42.3103 77 , 36.8716 5.2626 14.0000 -Arial.ttf 17 d 26.3123 42.3103 78 I -0.0744 5.6936 42.0000 -Arial.ttf 17 d 26.3123 42.3103 79 ° 0.1013 15.8083 15.8083 -Arial.ttf 17 d 26.3123 42.3103 80 K 0.3340 34.5749 42.0000 -Arial.ttf 17 d 26.3123 42.3103 81 H -0.1184 32.9083 42.0000 -Arial.ttf 17 d 26.3123 42.3103 82 q 9.6379 26.3123 43.6877 -Arial.ttf 17 d 26.3123 42.3103 83 & -0.1862 35.1148 42.3103 -Arial.ttf 17 d 26.3123 42.3103 84 ’ 0.1601 5.9231 14.0000 -Arial.ttf 17 d 26.3123 42.3103 85 [ 0.0939 11.0000 53.6167 -Arial.ttf 17 d 26.3123 42.3103 86 - 23.9760 15.4980 5.2626 -Arial.ttf 17 d 26.3123 42.3103 87 Y 0.1046 38.4601 42.0000 -Arial.ttf 17 d 26.3123 42.3103 88 Q -0.5828 39.5749 46.3212 -Arial.ttf 17 d 26.3123 42.3103 89 " -0.0053 15.8083 15.1916 -Arial.ttf 17 d 26.3123 42.3103 90 ! -0.3007 5.2626 42.0000 -Arial.ttf 17 d 26.3123 42.3103 91 x 11.1636 29.1060 30.8793 -Arial.ttf 17 d 26.3123 42.3103 92 ) -0.1266 14.4103 53.6167 -Arial.ttf 17 d 26.3123 42.3103 93 = 12.0471 27.8793 17.8852 -Arial.ttf 17 d 26.3123 42.3103 94 + 7.6286 27.8753 27.8753 -Arial.ttf 17 d 26.3123 42.3103 95 X -0.1004 37.6626 42.0000 -Arial.ttf 17 d 26.3123 42.3103 96 » 13.9448 25.0439 26.1917 -Arial.ttf 17 d 26.3123 42.3103 97 ' -0.2333 5.2626 15.1916 -Arial.ttf 17 d 26.3123 42.3103 98 ¢ -0.1940 25.7813 54.2685 -Arial.ttf 17 d 26.3123 42.3103 99 Z -0.2037 33.0729 42.0000 -Arial.ttf 17 d 26.3123 42.3103 100 > 7.6644 27.8354 27.8704 -Arial.ttf 17 d 26.3123 42.3103 101 ® -0.9173 43.1916 42.9709 -Arial.ttf 17 d 26.3123 42.3103 102 © -0.7265 43.1916 42.9709 -Arial.ttf 17 d 26.3123 42.3103 103 ] 0.4059 11.0000 53.6167 -Arial.ttf 17 d 26.3123 42.3103 104 é -1.1724 27.4690 43.5020 -Arial.ttf 17 d 26.3123 42.3103 105 z 11.5220 26.3123 30.8793 -Arial.ttf 17 d 26.3123 42.3103 106 _ 48.4328 33.3832 5.2626 -Arial.ttf 17 d 26.3123 42.3103 107 ¥ -0.1670 32.0291 42.0000 -Arial.ttf 18 W 57.1916 42.0000 1 t 0.2153 15.0709 42.3103 -Arial.ttf 18 W 57.1916 42.0000 2 h -0.3846 24.2793 42.0000 -Arial.ttf 18 W 57.1916 42.0000 3 a 9.9440 27.4690 32.3813 -Arial.ttf 18 W 57.1916 42.0000 4 n 9.9535 24.2793 32.0709 -Arial.ttf 18 W 57.1916 42.0000 5 P -0.1530 31.4542 42.0000 -Arial.ttf 18 W 57.1916 42.0000 6 o 9.9186 27.4690 32.3813 -Arial.ttf 18 W 57.1916 42.0000 7 e 9.7361 27.4690 32.3813 -Arial.ttf 18 W 57.1916 42.0000 8 : 10.9826 5.2626 30.8793 -Arial.ttf 18 W 57.1916 42.0000 9 r 10.0341 16.5689 32.0709 -Arial.ttf 18 W 57.1916 42.0000 10 l -0.1169 5.2626 42.0000 -Arial.ttf 18 W 57.1916 42.0000 11 i -0.0523 5.2626 42.0000 -Arial.ttf 18 W 57.1916 42.0000 12 1 0.5860 15.2355 41.6897 -Arial.ttf 18 W 57.1916 42.0000 13 | -0.3693 4.1916 54.4980 -Arial.ttf 18 W 57.1916 42.0000 14 N 0.1082 32.9083 42.0000 -Arial.ttf 18 W 57.1916 42.0000 15 f 0.3996 18.0709 42.0000 -Arial.ttf 18 W 57.1916 42.0000 16 g 10.0025 26.3123 43.6877 -Arial.ttf 18 W 57.1916 42.0000 17 d 0.1682 26.3123 42.3103 -Arial.ttf 18 W 57.1916 42.0000 18 W 0.1118 57.1916 42.0000 -Arial.ttf 18 W 57.1916 42.0000 19 s 9.8974 24.9561 32.3813 -Arial.ttf 18 W 57.1916 42.0000 20 c 9.9339 26.8084 32.3813 -Arial.ttf 18 W 57.1916 42.0000 21 u 10.9869 24.2793 31.1896 -Arial.ttf 18 W 57.1916 42.0000 22 3 0.0841 26.8483 41.6897 -Arial.ttf 18 W 57.1916 42.0000 23 ~ 16.6559 29.9083 10.9561 -Arial.ttf 18 W 57.1916 42.0000 24 # 0.1118 31.2646 42.0000 -Arial.ttf 18 W 57.1916 42.0000 25 O -0.7062 39.5749 43.3212 -Arial.ttf 18 W 57.1916 42.0000 26 ` -0.4291 10.9561 8.0769 -Arial.ttf 18 W 57.1916 42.0000 27 @ -0.2992 54.1478 54.3123 -Arial.ttf 18 W 57.1916 42.0000 28 F 0.2549 28.2207 42.0000 -Arial.ttf 18 W 57.1916 42.0000 29 S -0.3350 33.0001 43.3212 -Arial.ttf 18 W 57.1916 42.0000 30 p 9.7197 26.3123 43.6877 -Arial.ttf 18 W 57.1916 42.0000 31 “ -0.3080 13.5690 14.0000 -Arial.ttf 18 W 57.1916 42.0000 32 % -0.0468 44.8793 42.3103 -Arial.ttf 18 W 57.1916 42.0000 33 £ 0.4224 29.8522 42.3103 -Arial.ttf 18 W 57.1916 42.0000 34 . 36.9070 5.2626 5.2626 -Arial.ttf 18 W 57.1916 42.0000 35 2 0.2530 28.6956 41.6897 -Arial.ttf 18 W 57.1916 42.0000 36 5 0.7298 26.8483 41.6897 -Arial.ttf 18 W 57.1916 42.0000 37 m 9.6765 41.4044 32.0709 -Arial.ttf 18 W 57.1916 42.0000 38 V -0.2778 40.5788 42.0000 -Arial.ttf 18 W 57.1916 42.0000 39 6 0.8346 27.8542 41.6897 -Arial.ttf 18 W 57.1916 42.0000 40 w 11.0607 43.4212 30.8793 -Arial.ttf 18 W 57.1916 42.0000 41 T -0.1553 33.6936 42.0000 -Arial.ttf 18 W 57.1916 42.0000 42 M -0.1215 40.5788 42.0000 -Arial.ttf 18 W 57.1916 42.0000 43 G -0.4898 38.6897 43.3212 -Arial.ttf 18 W 57.1916 42.0000 44 b -0.2127 26.3123 42.3103 -Arial.ttf 18 W 57.1916 42.0000 45 9 0.3654 26.8483 41.6897 -Arial.ttf 18 W 57.1916 42.0000 46 ; 11.0897 5.2626 39.6167 -Arial.ttf 18 W 57.1916 42.0000 47 D 0.3768 34.4542 42.0000 -Arial.ttf 18 W 57.1916 42.0000 48 L 0.2550 25.8813 42.0000 -Arial.ttf 18 W 57.1916 42.0000 49 y 11.2749 28.0000 42.4960 -Arial.ttf 18 W 57.1916 42.0000 50 ‘ 0.0593 5.9231 14.0000 -Arial.ttf 18 W 57.1916 42.0000 51 \ -0.3050 17.5749 42.0000 -Arial.ttf 18 W 57.1916 42.0000 52 R 0.0452 36.7497 42.0000 -Arial.ttf 18 W 57.1916 42.0000 53 < 7.4270 27.8354 27.8704 -Arial.ttf 18 W 57.1916 42.0000 54 4 0.1284 28.3503 41.6897 -Arial.ttf 18 W 57.1916 42.0000 55 8 0.6688 26.6626 41.6897 -Arial.ttf 18 W 57.1916 42.0000 56 0 0.4505 26.8483 41.6897 -Arial.ttf 18 W 57.1916 42.0000 57 A 0.4179 40.5788 42.0000 -Arial.ttf 18 W 57.1916 42.0000 58 E -0.0286 31.4542 42.0000 -Arial.ttf 18 W 57.1916 42.0000 59 B 0.3214 31.4542 42.0000 -Arial.ttf 18 W 57.1916 42.0000 60 v 11.0765 27.8704 30.8793 -Arial.ttf 18 W 57.1916 42.0000 61 k -0.3309 25.1207 42.0000 -Arial.ttf 18 W 57.1916 42.0000 62 J 0.0707 24.0291 42.6606 -Arial.ttf 18 W 57.1916 42.0000 63 U -0.1583 32.9083 42.6606 -Arial.ttf 18 W 57.1916 42.0000 64 j 0.2921 12.3773 53.6167 -Arial.ttf 18 W 57.1916 42.0000 65 ( -0.1034 14.4103 53.6167 -Arial.ttf 18 W 57.1916 42.0000 66 7 0.4809 26.8523 41.6897 -Arial.ttf 18 W 57.1916 42.0000 67 § 0.2274 26.9729 53.9271 -Arial.ttf 18 W 57.1916 42.0000 68 $ -1.9279 27.6897 49.3355 -Arial.ttf 18 W 57.1916 42.0000 69 € -0.8191 33.0769 43.3212 -Arial.ttf 18 W 57.1916 42.0000 70 / -0.0196 17.5749 42.0000 -Arial.ttf 18 W 57.1916 42.0000 71 C -0.6849 36.0000 43.3212 -Arial.ttf 18 W 57.1916 42.0000 72 * 0.0540 20.3453 17.8852 -Arial.ttf 18 W 57.1916 42.0000 73 ” -0.1118 14.2296 14.0000 -Arial.ttf 18 W 57.1916 42.0000 74 ? -0.0224 26.8483 42.0000 -Arial.ttf 18 W 57.1916 42.0000 75 { 0.1007 16.7375 53.6167 -Arial.ttf 18 W 57.1916 42.0000 76 } -0.1221 16.7375 53.6167 -Arial.ttf 18 W 57.1916 42.0000 77 , 36.2189 5.2626 14.0000 -Arial.ttf 18 W 57.1916 42.0000 78 I -0.0633 5.6936 42.0000 -Arial.ttf 18 W 57.1916 42.0000 79 ° -0.0248 15.8083 15.8083 -Arial.ttf 18 W 57.1916 42.0000 80 K -0.0252 34.5749 42.0000 -Arial.ttf 18 W 57.1916 42.0000 81 H -0.2038 32.9083 42.0000 -Arial.ttf 18 W 57.1916 42.0000 82 q 9.9534 26.3123 43.6877 -Arial.ttf 18 W 57.1916 42.0000 83 & -0.0732 35.1148 42.3103 -Arial.ttf 18 W 57.1916 42.0000 84 ’ -0.3462 5.9231 14.0000 -Arial.ttf 18 W 57.1916 42.0000 85 [ 0.0948 11.0000 53.6167 -Arial.ttf 18 W 57.1916 42.0000 86 - 24.5194 15.4980 5.2626 -Arial.ttf 18 W 57.1916 42.0000 87 Y -0.2703 38.4601 42.0000 -Arial.ttf 18 W 57.1916 42.0000 88 Q -0.4924 39.5749 46.3212 -Arial.ttf 18 W 57.1916 42.0000 89 " -0.1179 15.8083 15.1916 -Arial.ttf 18 W 57.1916 42.0000 90 ! -0.4856 5.2626 42.0000 -Arial.ttf 18 W 57.1916 42.0000 91 x 11.3637 29.1060 30.8793 -Arial.ttf 18 W 57.1916 42.0000 92 ) -0.3844 14.4103 53.6167 -Arial.ttf 18 W 57.1916 42.0000 93 = 12.0354 27.8793 17.8852 -Arial.ttf 18 W 57.1916 42.0000 94 + 7.9766 27.8753 27.8753 -Arial.ttf 18 W 57.1916 42.0000 95 X -0.2455 37.6626 42.0000 -Arial.ttf 18 W 57.1916 42.0000 96 » 13.6713 25.0439 26.1917 -Arial.ttf 18 W 57.1916 42.0000 97 ' -0.0070 5.2626 15.1916 -Arial.ttf 18 W 57.1916 42.0000 98 ¢ -0.1596 25.7813 54.2685 -Arial.ttf 18 W 57.1916 42.0000 99 Z -0.4554 33.0729 42.0000 -Arial.ttf 18 W 57.1916 42.0000 100 > 7.5006 27.8354 27.8704 -Arial.ttf 18 W 57.1916 42.0000 101 ® -0.8545 43.1916 42.9709 -Arial.ttf 18 W 57.1916 42.0000 102 © -0.6121 43.1916 42.9709 -Arial.ttf 18 W 57.1916 42.0000 103 ] 0.0065 11.0000 53.6167 -Arial.ttf 18 W 57.1916 42.0000 104 é -0.9216 27.4690 43.5020 -Arial.ttf 18 W 57.1916 42.0000 105 z 11.1142 26.3123 30.8793 -Arial.ttf 18 W 57.1916 42.0000 106 _ 48.2761 33.3832 5.2626 -Arial.ttf 18 W 57.1916 42.0000 107 ¥ -0.3229 32.0291 42.0000 -Arial.ttf 19 s 24.9561 32.3813 1 t -9.8701 15.0709 42.3103 -Arial.ttf 19 s 24.9561 32.3813 2 h -10.1226 24.2793 42.0000 -Arial.ttf 19 s 24.9561 32.3813 3 a 0.0207 27.4690 32.3813 -Arial.ttf 19 s 24.9561 32.3813 4 n -0.2844 24.2793 32.0709 -Arial.ttf 19 s 24.9561 32.3813 5 P -9.9243 31.4542 42.0000 -Arial.ttf 19 s 24.9561 32.3813 6 o -0.0085 27.4690 32.3813 -Arial.ttf 19 s 24.9561 32.3813 7 e -0.0493 27.4690 32.3813 -Arial.ttf 19 s 24.9561 32.3813 8 : 1.2913 5.2626 30.8793 -Arial.ttf 19 s 24.9561 32.3813 9 r 0.0358 16.5689 32.0709 -Arial.ttf 19 s 24.9561 32.3813 10 l -10.0186 5.2626 42.0000 -Arial.ttf 19 s 24.9561 32.3813 11 i -10.1503 5.2626 42.0000 -Arial.ttf 19 s 24.9561 32.3813 12 1 -9.3387 15.2355 41.6897 -Arial.ttf 19 s 24.9561 32.3813 13 | -9.5594 4.1916 54.4980 -Arial.ttf 19 s 24.9561 32.3813 14 N -9.7622 32.9083 42.0000 -Arial.ttf 19 s 24.9561 32.3813 15 f -9.7540 18.0709 42.0000 -Arial.ttf 19 s 24.9561 32.3813 16 g 0.1130 26.3123 43.6877 -Arial.ttf 19 s 24.9561 32.3813 17 d -9.7498 26.3123 42.3103 -Arial.ttf 19 s 24.9561 32.3813 18 W -9.7413 57.1916 42.0000 -Arial.ttf 19 s 24.9561 32.3813 19 s -0.3075 24.9561 32.3813 -Arial.ttf 19 s 24.9561 32.3813 20 c 0.0594 26.8084 32.3813 -Arial.ttf 19 s 24.9561 32.3813 21 u 1.2877 24.2793 31.1896 -Arial.ttf 19 s 24.9561 32.3813 22 3 -9.6018 26.8483 41.6897 -Arial.ttf 19 s 24.9561 32.3813 23 ~ 6.8303 29.9083 10.9561 -Arial.ttf 19 s 24.9561 32.3813 24 # -10.0710 31.2646 42.0000 -Arial.ttf 19 s 24.9561 32.3813 25 O -10.7632 39.5749 43.3212 -Arial.ttf 19 s 24.9561 32.3813 26 ` -9.9069 10.9561 8.0769 -Arial.ttf 19 s 24.9561 32.3813 27 @ -9.8241 54.1478 54.3123 -Arial.ttf 19 s 24.9561 32.3813 28 F -9.8919 28.2207 42.0000 -Arial.ttf 19 s 24.9561 32.3813 29 S -10.4258 33.0001 43.3212 -Arial.ttf 19 s 24.9561 32.3813 30 p 0.1601 26.3123 43.6877 -Arial.ttf 19 s 24.9561 32.3813 31 “ -9.8481 13.5690 14.0000 -Arial.ttf 19 s 24.9561 32.3813 32 % -9.8517 44.8793 42.3103 -Arial.ttf 19 s 24.9561 32.3813 33 £ -9.6613 29.8522 42.3103 -Arial.ttf 19 s 24.9561 32.3813 34 . 26.9949 5.2626 5.2626 -Arial.ttf 19 s 24.9561 32.3813 35 2 -10.0807 28.6956 41.6897 -Arial.ttf 19 s 24.9561 32.3813 36 5 -9.7800 26.8483 41.6897 -Arial.ttf 19 s 24.9561 32.3813 37 m 0.0460 41.4044 32.0709 -Arial.ttf 19 s 24.9561 32.3813 38 V -10.1222 40.5788 42.0000 -Arial.ttf 19 s 24.9561 32.3813 39 6 -9.6971 27.8542 41.6897 -Arial.ttf 19 s 24.9561 32.3813 40 w 1.2469 43.4212 30.8793 -Arial.ttf 19 s 24.9561 32.3813 41 T -9.7386 33.6936 42.0000 -Arial.ttf 19 s 24.9561 32.3813 42 M -9.7785 40.5788 42.0000 -Arial.ttf 19 s 24.9561 32.3813 43 G -10.2583 38.6897 43.3212 -Arial.ttf 19 s 24.9561 32.3813 44 b -9.9003 26.3123 42.3103 -Arial.ttf 19 s 24.9561 32.3813 45 9 -9.6299 26.8483 41.6897 -Arial.ttf 19 s 24.9561 32.3813 46 ; 0.7854 5.2626 39.6167 -Arial.ttf 19 s 24.9561 32.3813 47 D -9.5980 34.4542 42.0000 -Arial.ttf 19 s 24.9561 32.3813 48 L -9.8653 25.8813 42.0000 -Arial.ttf 19 s 24.9561 32.3813 49 y 0.8677 28.0000 42.4960 -Arial.ttf 19 s 24.9561 32.3813 50 ‘ -9.9759 5.9231 14.0000 -Arial.ttf 19 s 24.9561 32.3813 51 \ -10.0162 17.5749 42.0000 -Arial.ttf 19 s 24.9561 32.3813 52 R -10.0628 36.7497 42.0000 -Arial.ttf 19 s 24.9561 32.3813 53 < -2.5956 27.8354 27.8704 -Arial.ttf 19 s 24.9561 32.3813 54 4 -9.4962 28.3503 41.6897 -Arial.ttf 19 s 24.9561 32.3813 55 8 -9.7758 26.6626 41.6897 -Arial.ttf 19 s 24.9561 32.3813 56 0 -9.6367 26.8483 41.6897 -Arial.ttf 19 s 24.9561 32.3813 57 A -10.1024 40.5788 42.0000 -Arial.ttf 19 s 24.9561 32.3813 58 E -9.7425 31.4542 42.0000 -Arial.ttf 19 s 24.9561 32.3813 59 B -10.4158 31.4542 42.0000 -Arial.ttf 19 s 24.9561 32.3813 60 v 1.1200 27.8704 30.8793 -Arial.ttf 19 s 24.9561 32.3813 61 k -9.8479 25.1207 42.0000 -Arial.ttf 19 s 24.9561 32.3813 62 J -10.0739 24.0291 42.6606 -Arial.ttf 19 s 24.9561 32.3813 63 U -9.9094 32.9083 42.6606 -Arial.ttf 19 s 24.9561 32.3813 64 j -10.0294 12.3773 53.6167 -Arial.ttf 19 s 24.9561 32.3813 65 ( -10.1549 14.4103 53.6167 -Arial.ttf 19 s 24.9561 32.3813 66 7 -9.7193 26.8523 41.6897 -Arial.ttf 19 s 24.9561 32.3813 67 § -10.4160 26.9729 53.9271 -Arial.ttf 19 s 24.9561 32.3813 68 $ -12.1357 27.6897 49.3355 -Arial.ttf 19 s 24.9561 32.3813 69 € -10.5123 33.0769 43.3212 -Arial.ttf 19 s 24.9561 32.3813 70 / -9.8697 17.5749 42.0000 -Arial.ttf 19 s 24.9561 32.3813 71 C -10.5272 36.0000 43.3212 -Arial.ttf 19 s 24.9561 32.3813 72 * -10.1482 20.3453 17.8852 -Arial.ttf 19 s 24.9561 32.3813 73 ” -9.9291 14.2296 14.0000 -Arial.ttf 19 s 24.9561 32.3813 74 ? -9.5690 26.8483 42.0000 -Arial.ttf 19 s 24.9561 32.3813 75 { -10.1168 16.7375 53.6167 -Arial.ttf 19 s 24.9561 32.3813 76 } -10.0950 16.7375 53.6167 -Arial.ttf 19 s 24.9561 32.3813 77 , 26.8562 5.2626 14.0000 -Arial.ttf 19 s 24.9561 32.3813 78 I -9.6295 5.6936 42.0000 -Arial.ttf 19 s 24.9561 32.3813 79 ° -10.0176 15.8083 15.8083 -Arial.ttf 19 s 24.9561 32.3813 80 K -9.8143 34.5749 42.0000 -Arial.ttf 19 s 24.9561 32.3813 81 H -9.6935 32.9083 42.0000 -Arial.ttf 19 s 24.9561 32.3813 82 q 0.0389 26.3123 43.6877 -Arial.ttf 19 s 24.9561 32.3813 83 & -9.8988 35.1148 42.3103 -Arial.ttf 19 s 24.9561 32.3813 84 ’ -9.6659 5.9231 14.0000 -Arial.ttf 19 s 24.9561 32.3813 85 [ -9.8118 11.0000 53.6167 -Arial.ttf 19 s 24.9561 32.3813 86 - 14.3325 15.4980 5.2626 -Arial.ttf 19 s 24.9561 32.3813 87 Y -9.9168 38.4601 42.0000 -Arial.ttf 19 s 24.9561 32.3813 88 Q -10.8326 39.5749 46.3212 -Arial.ttf 19 s 24.9561 32.3813 89 " -9.7207 15.8083 15.1916 -Arial.ttf 19 s 24.9561 32.3813 90 ! -9.8805 5.2626 42.0000 -Arial.ttf 19 s 24.9561 32.3813 91 x 1.1363 29.1060 30.8793 -Arial.ttf 19 s 24.9561 32.3813 92 ) -9.9605 14.4103 53.6167 -Arial.ttf 19 s 24.9561 32.3813 93 = 2.1080 27.8793 17.8852 -Arial.ttf 19 s 24.9561 32.3813 94 + -2.4502 27.8753 27.8753 -Arial.ttf 19 s 24.9561 32.3813 95 X -9.6463 37.6626 42.0000 -Arial.ttf 19 s 24.9561 32.3813 96 » 3.8754 25.0439 26.1917 -Arial.ttf 19 s 24.9561 32.3813 97 ' -10.0011 5.2626 15.1916 -Arial.ttf 19 s 24.9561 32.3813 98 ¢ -10.3410 25.7813 54.2685 -Arial.ttf 19 s 24.9561 32.3813 99 Z -10.1509 33.0729 42.0000 -Arial.ttf 19 s 24.9561 32.3813 100 > -2.3572 27.8354 27.8704 -Arial.ttf 19 s 24.9561 32.3813 101 ® -10.6862 43.1916 42.9709 -Arial.ttf 19 s 24.9561 32.3813 102 © -10.6157 43.1916 42.9709 -Arial.ttf 19 s 24.9561 32.3813 103 ] -9.7747 11.0000 53.6167 -Arial.ttf 19 s 24.9561 32.3813 104 é -11.1261 27.4690 43.5020 -Arial.ttf 19 s 24.9561 32.3813 105 z 1.2051 26.3123 30.8793 -Arial.ttf 19 s 24.9561 32.3813 106 _ 38.5406 33.3832 5.2626 -Arial.ttf 19 s 24.9561 32.3813 107 ¥ -9.6950 32.0291 42.0000 -Arial.ttf 20 c 26.8084 32.3813 1 t -9.8946 15.0709 42.3103 -Arial.ttf 20 c 26.8084 32.3813 2 h -9.7458 24.2793 42.0000 -Arial.ttf 20 c 26.8084 32.3813 3 a 0.1655 27.4690 32.3813 -Arial.ttf 20 c 26.8084 32.3813 4 n -0.0057 24.2793 32.0709 -Arial.ttf 20 c 26.8084 32.3813 5 P -9.9609 31.4542 42.0000 -Arial.ttf 20 c 26.8084 32.3813 6 o 0.0611 27.4690 32.3813 -Arial.ttf 20 c 26.8084 32.3813 7 e -0.0565 27.4690 32.3813 -Arial.ttf 20 c 26.8084 32.3813 8 : 1.3655 5.2626 30.8793 -Arial.ttf 20 c 26.8084 32.3813 9 r 0.0797 16.5689 32.0709 -Arial.ttf 20 c 26.8084 32.3813 10 l -10.2590 5.2626 42.0000 -Arial.ttf 20 c 26.8084 32.3813 11 i -9.8423 5.2626 42.0000 -Arial.ttf 20 c 26.8084 32.3813 12 1 -9.7184 15.2355 41.6897 -Arial.ttf 20 c 26.8084 32.3813 13 | -9.7965 4.1916 54.4980 -Arial.ttf 20 c 26.8084 32.3813 14 N -9.8601 32.9083 42.0000 -Arial.ttf 20 c 26.8084 32.3813 15 f -9.9291 18.0709 42.0000 -Arial.ttf 20 c 26.8084 32.3813 16 g 0.0685 26.3123 43.6877 -Arial.ttf 20 c 26.8084 32.3813 17 d -9.9141 26.3123 42.3103 -Arial.ttf 20 c 26.8084 32.3813 18 W -10.3030 57.1916 42.0000 -Arial.ttf 20 c 26.8084 32.3813 19 s -0.2245 24.9561 32.3813 -Arial.ttf 20 c 26.8084 32.3813 20 c -0.0176 26.8084 32.3813 -Arial.ttf 20 c 26.8084 32.3813 21 u 1.1969 24.2793 31.1896 -Arial.ttf 20 c 26.8084 32.3813 22 3 -9.6559 26.8483 41.6897 -Arial.ttf 20 c 26.8084 32.3813 23 ~ 6.8012 29.9083 10.9561 -Arial.ttf 20 c 26.8084 32.3813 24 # -9.7785 31.2646 42.0000 -Arial.ttf 20 c 26.8084 32.3813 25 O -10.5028 39.5749 43.3212 -Arial.ttf 20 c 26.8084 32.3813 26 ` -10.1772 10.9561 8.0769 -Arial.ttf 20 c 26.8084 32.3813 27 @ -10.0233 54.1478 54.3123 -Arial.ttf 20 c 26.8084 32.3813 28 F -10.1110 28.2207 42.0000 -Arial.ttf 20 c 26.8084 32.3813 29 S -10.2880 33.0001 43.3212 -Arial.ttf 20 c 26.8084 32.3813 30 p -0.0478 26.3123 43.6877 -Arial.ttf 20 c 26.8084 32.3813 31 “ -10.0161 13.5690 14.0000 -Arial.ttf 20 c 26.8084 32.3813 32 % -10.3083 44.8793 42.3103 -Arial.ttf 20 c 26.8084 32.3813 33 £ -10.1980 29.8522 42.3103 -Arial.ttf 20 c 26.8084 32.3813 34 . 26.4812 5.2626 5.2626 -Arial.ttf 20 c 26.8084 32.3813 35 2 -9.2740 28.6956 41.6897 -Arial.ttf 20 c 26.8084 32.3813 36 5 -9.3511 26.8483 41.6897 -Arial.ttf 20 c 26.8084 32.3813 37 m -0.1061 41.4044 32.0709 -Arial.ttf 20 c 26.8084 32.3813 38 V -9.8230 40.5788 42.0000 -Arial.ttf 20 c 26.8084 32.3813 39 6 -9.6228 27.8542 41.6897 -Arial.ttf 20 c 26.8084 32.3813 40 w 1.1342 43.4212 30.8793 -Arial.ttf 20 c 26.8084 32.3813 41 T -10.0780 33.6936 42.0000 -Arial.ttf 20 c 26.8084 32.3813 42 M -9.7854 40.5788 42.0000 -Arial.ttf 20 c 26.8084 32.3813 43 G -10.4629 38.6897 43.3212 -Arial.ttf 20 c 26.8084 32.3813 44 b -9.9382 26.3123 42.3103 -Arial.ttf 20 c 26.8084 32.3813 45 9 -9.5404 26.8483 41.6897 -Arial.ttf 20 c 26.8084 32.3813 46 ; 1.2939 5.2626 39.6167 -Arial.ttf 20 c 26.8084 32.3813 47 D -9.8670 34.4542 42.0000 -Arial.ttf 20 c 26.8084 32.3813 48 L -9.8852 25.8813 42.0000 -Arial.ttf 20 c 26.8084 32.3813 49 y 1.2548 28.0000 42.4960 -Arial.ttf 20 c 26.8084 32.3813 50 ‘ -9.8463 5.9231 14.0000 -Arial.ttf 20 c 26.8084 32.3813 51 \ -9.9960 17.5749 42.0000 -Arial.ttf 20 c 26.8084 32.3813 52 R -10.0367 36.7497 42.0000 -Arial.ttf 20 c 26.8084 32.3813 53 < -2.2369 27.8354 27.8704 -Arial.ttf 20 c 26.8084 32.3813 54 4 -9.6516 28.3503 41.6897 -Arial.ttf 20 c 26.8084 32.3813 55 8 -9.7980 26.6626 41.6897 -Arial.ttf 20 c 26.8084 32.3813 56 0 -9.6892 26.8483 41.6897 -Arial.ttf 20 c 26.8084 32.3813 57 A -9.8670 40.5788 42.0000 -Arial.ttf 20 c 26.8084 32.3813 58 E -9.7774 31.4542 42.0000 -Arial.ttf 20 c 26.8084 32.3813 59 B -10.0904 31.4542 42.0000 -Arial.ttf 20 c 26.8084 32.3813 60 v 1.3294 27.8704 30.8793 -Arial.ttf 20 c 26.8084 32.3813 61 k -9.8713 25.1207 42.0000 -Arial.ttf 20 c 26.8084 32.3813 62 J -9.7855 24.0291 42.6606 -Arial.ttf 20 c 26.8084 32.3813 63 U -10.0744 32.9083 42.6606 -Arial.ttf 20 c 26.8084 32.3813 64 j -9.9179 12.3773 53.6167 -Arial.ttf 20 c 26.8084 32.3813 65 ( -10.0628 14.4103 53.6167 -Arial.ttf 20 c 26.8084 32.3813 66 7 -9.5759 26.8523 41.6897 -Arial.ttf 20 c 26.8084 32.3813 67 § -9.8839 26.9729 53.9271 -Arial.ttf 20 c 26.8084 32.3813 68 $ -11.8693 27.6897 49.3355 -Arial.ttf 20 c 26.8084 32.3813 69 € -10.6556 33.0769 43.3212 -Arial.ttf 20 c 26.8084 32.3813 70 / -9.8639 17.5749 42.0000 -Arial.ttf 20 c 26.8084 32.3813 71 C -10.6357 36.0000 43.3212 -Arial.ttf 20 c 26.8084 32.3813 72 * -9.3981 20.3453 17.8852 -Arial.ttf 20 c 26.8084 32.3813 73 ” -10.0300 14.2296 14.0000 -Arial.ttf 20 c 26.8084 32.3813 74 ? -10.1385 26.8483 42.0000 -Arial.ttf 20 c 26.8084 32.3813 75 { -10.0659 16.7375 53.6167 -Arial.ttf 20 c 26.8084 32.3813 76 } -9.9854 16.7375 53.6167 -Arial.ttf 20 c 26.8084 32.3813 77 , 26.8857 5.2626 14.0000 -Arial.ttf 20 c 26.8084 32.3813 78 I -9.8766 5.6936 42.0000 -Arial.ttf 20 c 26.8084 32.3813 79 ° -9.7157 15.8083 15.8083 -Arial.ttf 20 c 26.8084 32.3813 80 K -9.7552 34.5749 42.0000 -Arial.ttf 20 c 26.8084 32.3813 81 H -9.8145 32.9083 42.0000 -Arial.ttf 20 c 26.8084 32.3813 82 q 0.0621 26.3123 43.6877 -Arial.ttf 20 c 26.8084 32.3813 83 & -9.7025 35.1148 42.3103 -Arial.ttf 20 c 26.8084 32.3813 84 ’ -10.2695 5.9231 14.0000 -Arial.ttf 20 c 26.8084 32.3813 85 [ -9.9693 11.0000 53.6167 -Arial.ttf 20 c 26.8084 32.3813 86 - 14.6731 15.4980 5.2626 -Arial.ttf 20 c 26.8084 32.3813 87 Y -10.1622 38.4601 42.0000 -Arial.ttf 20 c 26.8084 32.3813 88 Q -10.4130 39.5749 46.3212 -Arial.ttf 20 c 26.8084 32.3813 89 " -9.9238 15.8083 15.1916 -Arial.ttf 20 c 26.8084 32.3813 90 ! -9.9593 5.2626 42.0000 -Arial.ttf 20 c 26.8084 32.3813 91 x 1.2606 29.1060 30.8793 -Arial.ttf 20 c 26.8084 32.3813 92 ) -10.1507 14.4103 53.6167 -Arial.ttf 20 c 26.8084 32.3813 93 = 2.2639 27.8793 17.8852 -Arial.ttf 20 c 26.8084 32.3813 94 + -2.3583 27.8753 27.8753 -Arial.ttf 20 c 26.8084 32.3813 95 X -9.7496 37.6626 42.0000 -Arial.ttf 20 c 26.8084 32.3813 96 » 3.8633 25.0439 26.1917 -Arial.ttf 20 c 26.8084 32.3813 97 ' -9.9232 5.2626 15.1916 -Arial.ttf 20 c 26.8084 32.3813 98 ¢ -10.0706 25.7813 54.2685 -Arial.ttf 20 c 26.8084 32.3813 99 Z -10.0060 33.0729 42.0000 -Arial.ttf 20 c 26.8084 32.3813 100 > -2.3461 27.8354 27.8704 -Arial.ttf 20 c 26.8084 32.3813 101 ® -10.4184 43.1916 42.9709 -Arial.ttf 20 c 26.8084 32.3813 102 © -10.5510 43.1916 42.9709 -Arial.ttf 20 c 26.8084 32.3813 103 ] -10.0823 11.0000 53.6167 -Arial.ttf 20 c 26.8084 32.3813 104 é -10.9982 27.4690 43.5020 -Arial.ttf 20 c 26.8084 32.3813 105 z 1.2169 26.3123 30.8793 -Arial.ttf 20 c 26.8084 32.3813 106 _ 38.2333 33.3832 5.2626 -Arial.ttf 20 c 26.8084 32.3813 107 ¥ -10.0726 32.0291 42.0000 -Arial.ttf 21 u 24.2793 31.1896 1 t -11.2724 15.0709 42.3103 -Arial.ttf 21 u 24.2793 31.1896 2 h -11.1096 24.2793 42.0000 -Arial.ttf 21 u 24.2793 31.1896 3 a -1.4551 27.4690 32.3813 -Arial.ttf 21 u 24.2793 31.1896 4 n -1.2495 24.2793 32.0709 -Arial.ttf 21 u 24.2793 31.1896 5 P -11.1593 31.4542 42.0000 -Arial.ttf 21 u 24.2793 31.1896 6 o -1.5020 27.4690 32.3813 -Arial.ttf 21 u 24.2793 31.1896 7 e -1.0549 27.4690 32.3813 -Arial.ttf 21 u 24.2793 31.1896 8 : -0.1088 5.2626 30.8793 -Arial.ttf 21 u 24.2793 31.1896 9 r -1.1503 16.5689 32.0709 -Arial.ttf 21 u 24.2793 31.1896 10 l -11.0322 5.2626 42.0000 -Arial.ttf 21 u 24.2793 31.1896 11 i -11.1220 5.2626 42.0000 -Arial.ttf 21 u 24.2793 31.1896 12 1 -10.6974 15.2355 41.6897 -Arial.ttf 21 u 24.2793 31.1896 13 | -11.1441 4.1916 54.4980 -Arial.ttf 21 u 24.2793 31.1896 14 N -11.4315 32.9083 42.0000 -Arial.ttf 21 u 24.2793 31.1896 15 f -11.2505 18.0709 42.0000 -Arial.ttf 21 u 24.2793 31.1896 16 g -1.0495 26.3123 43.6877 -Arial.ttf 21 u 24.2793 31.1896 17 d -11.1291 26.3123 42.3103 -Arial.ttf 21 u 24.2793 31.1896 18 W -11.0671 57.1916 42.0000 -Arial.ttf 21 u 24.2793 31.1896 19 s -1.6303 24.9561 32.3813 -Arial.ttf 21 u 24.2793 31.1896 20 c -1.1656 26.8084 32.3813 -Arial.ttf 21 u 24.2793 31.1896 21 u -0.1749 24.2793 31.1896 -Arial.ttf 21 u 24.2793 31.1896 22 3 -10.7929 26.8483 41.6897 -Arial.ttf 21 u 24.2793 31.1896 23 ~ 5.9612 29.9083 10.9561 -Arial.ttf 21 u 24.2793 31.1896 24 # -10.9835 31.2646 42.0000 -Arial.ttf 21 u 24.2793 31.1896 25 O -11.8465 39.5749 43.3212 -Arial.ttf 21 u 24.2793 31.1896 26 ` -10.9396 10.9561 8.0769 -Arial.ttf 21 u 24.2793 31.1896 27 @ -10.9951 54.1478 54.3123 -Arial.ttf 21 u 24.2793 31.1896 28 F -11.1839 28.2207 42.0000 -Arial.ttf 21 u 24.2793 31.1896 29 S -11.8039 33.0001 43.3212 -Arial.ttf 21 u 24.2793 31.1896 30 p -1.2898 26.3123 43.6877 -Arial.ttf 21 u 24.2793 31.1896 31 “ -11.3356 13.5690 14.0000 -Arial.ttf 21 u 24.2793 31.1896 32 % -11.0997 44.8793 42.3103 -Arial.ttf 21 u 24.2793 31.1896 33 £ -11.1439 29.8522 42.3103 -Arial.ttf 21 u 24.2793 31.1896 34 . 25.8539 5.2626 5.2626 -Arial.ttf 21 u 24.2793 31.1896 35 2 -10.9472 28.6956 41.6897 -Arial.ttf 21 u 24.2793 31.1896 36 5 -10.5578 26.8483 41.6897 -Arial.ttf 21 u 24.2793 31.1896 37 m -1.1959 41.4044 32.0709 -Arial.ttf 21 u 24.2793 31.1896 38 V -11.1265 40.5788 42.0000 -Arial.ttf 21 u 24.2793 31.1896 39 6 -10.7853 27.8542 41.6897 -Arial.ttf 21 u 24.2793 31.1896 40 w -0.2138 43.4212 30.8793 -Arial.ttf 21 u 24.2793 31.1896 41 T -11.3866 33.6936 42.0000 -Arial.ttf 21 u 24.2793 31.1896 42 M -10.9628 40.5788 42.0000 -Arial.ttf 21 u 24.2793 31.1896 43 G -11.8310 38.6897 43.3212 -Arial.ttf 21 u 24.2793 31.1896 44 b -11.1807 26.3123 42.3103 -Arial.ttf 21 u 24.2793 31.1896 45 9 -10.6683 26.8483 41.6897 -Arial.ttf 21 u 24.2793 31.1896 46 ; 0.0514 5.2626 39.6167 -Arial.ttf 21 u 24.2793 31.1896 47 D -11.0767 34.4542 42.0000 -Arial.ttf 21 u 24.2793 31.1896 48 L -11.0561 25.8813 42.0000 -Arial.ttf 21 u 24.2793 31.1896 49 y -0.0195 28.0000 42.4960 -Arial.ttf 21 u 24.2793 31.1896 50 ‘ -11.1716 5.9231 14.0000 -Arial.ttf 21 u 24.2793 31.1896 51 \ -11.0450 17.5749 42.0000 -Arial.ttf 21 u 24.2793 31.1896 52 R -10.9552 36.7497 42.0000 -Arial.ttf 21 u 24.2793 31.1896 53 < -3.3378 27.8354 27.8704 -Arial.ttf 21 u 24.2793 31.1896 54 4 -10.6564 28.3503 41.6897 -Arial.ttf 21 u 24.2793 31.1896 55 8 -10.7418 26.6626 41.6897 -Arial.ttf 21 u 24.2793 31.1896 56 0 -10.8958 26.8483 41.6897 -Arial.ttf 21 u 24.2793 31.1896 57 A -11.0767 40.5788 42.0000 -Arial.ttf 21 u 24.2793 31.1896 58 E -11.0615 31.4542 42.0000 -Arial.ttf 21 u 24.2793 31.1896 59 B -11.3690 31.4542 42.0000 -Arial.ttf 21 u 24.2793 31.1896 60 v 0.0519 27.8704 30.8793 -Arial.ttf 21 u 24.2793 31.1896 61 k -11.1137 25.1207 42.0000 -Arial.ttf 21 u 24.2793 31.1896 62 J -11.0035 24.0291 42.6606 -Arial.ttf 21 u 24.2793 31.1896 63 U -11.1923 32.9083 42.6606 -Arial.ttf 21 u 24.2793 31.1896 64 j -11.0602 12.3773 53.6167 -Arial.ttf 21 u 24.2793 31.1896 65 ( -11.2380 14.4103 53.6167 -Arial.ttf 21 u 24.2793 31.1896 66 7 -10.4311 26.8523 41.6897 -Arial.ttf 21 u 24.2793 31.1896 67 § -11.3069 26.9729 53.9271 -Arial.ttf 21 u 24.2793 31.1896 68 $ -13.1109 27.6897 49.3355 -Arial.ttf 21 u 24.2793 31.1896 69 € -11.8259 33.0769 43.3212 -Arial.ttf 21 u 24.2793 31.1896 70 / -10.8944 17.5749 42.0000 -Arial.ttf 21 u 24.2793 31.1896 71 C -11.2923 36.0000 43.3212 -Arial.ttf 21 u 24.2793 31.1896 72 * -10.9197 20.3453 17.8852 -Arial.ttf 21 u 24.2793 31.1896 73 ” -11.3487 14.2296 14.0000 -Arial.ttf 21 u 24.2793 31.1896 74 ? -11.0711 26.8483 42.0000 -Arial.ttf 21 u 24.2793 31.1896 75 { -11.4782 16.7375 53.6167 -Arial.ttf 21 u 24.2793 31.1896 76 } -11.0778 16.7375 53.6167 -Arial.ttf 21 u 24.2793 31.1896 77 , 25.7397 5.2626 14.0000 -Arial.ttf 21 u 24.2793 31.1896 78 I -11.1775 5.6936 42.0000 -Arial.ttf 21 u 24.2793 31.1896 79 ° -11.1069 15.8083 15.8083 -Arial.ttf 21 u 24.2793 31.1896 80 K -11.3301 34.5749 42.0000 -Arial.ttf 21 u 24.2793 31.1896 81 H -11.5194 32.9083 42.0000 -Arial.ttf 21 u 24.2793 31.1896 82 q -1.2951 26.3123 43.6877 -Arial.ttf 21 u 24.2793 31.1896 83 & -11.0258 35.1148 42.3103 -Arial.ttf 21 u 24.2793 31.1896 84 ’ -11.1688 5.9231 14.0000 -Arial.ttf 21 u 24.2793 31.1896 85 [ -10.8380 11.0000 53.6167 -Arial.ttf 21 u 24.2793 31.1896 86 - 12.8955 15.4980 5.2626 -Arial.ttf 21 u 24.2793 31.1896 87 Y -11.1169 38.4601 42.0000 -Arial.ttf 21 u 24.2793 31.1896 88 Q -11.9521 39.5749 46.3212 -Arial.ttf 21 u 24.2793 31.1896 89 " -11.0602 15.8083 15.1916 -Arial.ttf 21 u 24.2793 31.1896 90 ! -11.0349 5.2626 42.0000 -Arial.ttf 21 u 24.2793 31.1896 91 x 0.1749 29.1060 30.8793 -Arial.ttf 21 u 24.2793 31.1896 92 ) -11.1127 14.4103 53.6167 -Arial.ttf 21 u 24.2793 31.1896 93 = 0.7800 27.8793 17.8852 -Arial.ttf 21 u 24.2793 31.1896 94 + -3.7418 27.8753 27.8753 -Arial.ttf 21 u 24.2793 31.1896 95 X -11.1539 37.6626 42.0000 -Arial.ttf 21 u 24.2793 31.1896 96 » 2.7330 25.0439 26.1917 -Arial.ttf 21 u 24.2793 31.1896 97 ' -11.2586 5.2626 15.1916 -Arial.ttf 21 u 24.2793 31.1896 98 ¢ -11.2069 25.7813 54.2685 -Arial.ttf 21 u 24.2793 31.1896 99 Z -11.1166 33.0729 42.0000 -Arial.ttf 21 u 24.2793 31.1896 100 > -3.7488 27.8354 27.8704 -Arial.ttf 21 u 24.2793 31.1896 101 ® -11.8996 43.1916 42.9709 -Arial.ttf 21 u 24.2793 31.1896 102 © -11.5411 43.1916 42.9709 -Arial.ttf 21 u 24.2793 31.1896 103 ] -11.2331 11.0000 53.6167 -Arial.ttf 21 u 24.2793 31.1896 104 é -12.3512 27.4690 43.5020 -Arial.ttf 21 u 24.2793 31.1896 105 z -0.0455 26.3123 30.8793 -Arial.ttf 21 u 24.2793 31.1896 106 _ 37.1481 33.3832 5.2626 -Arial.ttf 21 u 24.2793 31.1896 107 ¥ -11.2380 32.0291 42.0000 -Arial.ttf 22 3 26.8483 41.6897 1 t -0.4218 15.0709 42.3103 -Arial.ttf 22 3 26.8483 41.6897 2 h -0.4205 24.2793 42.0000 -Arial.ttf 22 3 26.8483 41.6897 3 a 9.4438 27.4690 32.3813 -Arial.ttf 22 3 26.8483 41.6897 4 n 9.6603 24.2793 32.0709 -Arial.ttf 22 3 26.8483 41.6897 5 P 0.0179 31.4542 42.0000 -Arial.ttf 22 3 26.8483 41.6897 6 o 9.5289 27.4690 32.3813 -Arial.ttf 22 3 26.8483 41.6897 7 e 9.3292 27.4690 32.3813 -Arial.ttf 22 3 26.8483 41.6897 8 : 10.6422 5.2626 30.8793 -Arial.ttf 22 3 26.8483 41.6897 9 r 9.4909 16.5689 32.0709 -Arial.ttf 22 3 26.8483 41.6897 10 l -0.0469 5.2626 42.0000 -Arial.ttf 22 3 26.8483 41.6897 11 i -0.2312 5.2626 42.0000 -Arial.ttf 22 3 26.8483 41.6897 12 1 0.1115 15.2355 41.6897 -Arial.ttf 22 3 26.8483 41.6897 13 | 0.0002 4.1916 54.4980 -Arial.ttf 22 3 26.8483 41.6897 14 N -0.1310 32.9083 42.0000 -Arial.ttf 22 3 26.8483 41.6897 15 f -0.2537 18.0709 42.0000 -Arial.ttf 22 3 26.8483 41.6897 16 g 9.5800 26.3123 43.6877 -Arial.ttf 22 3 26.8483 41.6897 17 d -0.2892 26.3123 42.3103 -Arial.ttf 22 3 26.8483 41.6897 18 W -0.3682 57.1916 42.0000 -Arial.ttf 22 3 26.8483 41.6897 19 s 9.7837 24.9561 32.3813 -Arial.ttf 22 3 26.8483 41.6897 20 c 9.7302 26.8084 32.3813 -Arial.ttf 22 3 26.8483 41.6897 21 u 10.8851 24.2793 31.1896 -Arial.ttf 22 3 26.8483 41.6897 22 3 0.0234 26.8483 41.6897 -Arial.ttf 22 3 26.8483 41.6897 23 ~ 16.5850 29.9083 10.9561 -Arial.ttf 22 3 26.8483 41.6897 24 # -0.4429 31.2646 42.0000 -Arial.ttf 22 3 26.8483 41.6897 25 O -0.9518 39.5749 43.3212 -Arial.ttf 22 3 26.8483 41.6897 26 ` -0.3877 10.9561 8.0769 -Arial.ttf 22 3 26.8483 41.6897 27 @ -0.3019 54.1478 54.3123 -Arial.ttf 22 3 26.8483 41.6897 28 F -0.2383 28.2207 42.0000 -Arial.ttf 22 3 26.8483 41.6897 29 S -0.9816 33.0001 43.3212 -Arial.ttf 22 3 26.8483 41.6897 30 p 9.7714 26.3123 43.6877 -Arial.ttf 22 3 26.8483 41.6897 31 “ -0.0398 13.5690 14.0000 -Arial.ttf 22 3 26.8483 41.6897 32 % -0.5055 44.8793 42.3103 -Arial.ttf 22 3 26.8483 41.6897 33 £ -0.4743 29.8522 42.3103 -Arial.ttf 22 3 26.8483 41.6897 34 . 36.4700 5.2626 5.2626 -Arial.ttf 22 3 26.8483 41.6897 35 2 0.2456 28.6956 41.6897 -Arial.ttf 22 3 26.8483 41.6897 36 5 0.2000 26.8483 41.6897 -Arial.ttf 22 3 26.8483 41.6897 37 m 9.7233 41.4044 32.0709 -Arial.ttf 22 3 26.8483 41.6897 38 V -0.3765 40.5788 42.0000 -Arial.ttf 22 3 26.8483 41.6897 39 6 0.1257 27.8542 41.6897 -Arial.ttf 22 3 26.8483 41.6897 40 w 11.0188 43.4212 30.8793 -Arial.ttf 22 3 26.8483 41.6897 41 T -0.3793 33.6936 42.0000 -Arial.ttf 22 3 26.8483 41.6897 42 M -0.5728 40.5788 42.0000 -Arial.ttf 22 3 26.8483 41.6897 43 G -1.0358 38.6897 43.3212 -Arial.ttf 22 3 26.8483 41.6897 44 b -0.4228 26.3123 42.3103 -Arial.ttf 22 3 26.8483 41.6897 45 9 -0.0132 26.8483 41.6897 -Arial.ttf 22 3 26.8483 41.6897 46 ; 10.7590 5.2626 39.6167 -Arial.ttf 22 3 26.8483 41.6897 47 D -0.4705 34.4542 42.0000 -Arial.ttf 22 3 26.8483 41.6897 48 L -0.3438 25.8813 42.0000 -Arial.ttf 22 3 26.8483 41.6897 49 y 10.9472 28.0000 42.4960 -Arial.ttf 22 3 26.8483 41.6897 50 ‘ -0.2759 5.9231 14.0000 -Arial.ttf 22 3 26.8483 41.6897 51 \ -0.3046 17.5749 42.0000 -Arial.ttf 22 3 26.8483 41.6897 52 R -0.0634 36.7497 42.0000 -Arial.ttf 22 3 26.8483 41.6897 53 < 7.3585 27.8354 27.8704 -Arial.ttf 22 3 26.8483 41.6897 54 4 -0.1034 28.3503 41.6897 -Arial.ttf 22 3 26.8483 41.6897 55 8 -0.1517 26.6626 41.6897 -Arial.ttf 22 3 26.8483 41.6897 56 0 0.1394 26.8483 41.6897 -Arial.ttf 22 3 26.8483 41.6897 57 A -0.1900 40.5788 42.0000 -Arial.ttf 22 3 26.8483 41.6897 58 E -0.4160 31.4542 42.0000 -Arial.ttf 22 3 26.8483 41.6897 59 B -0.3735 31.4542 42.0000 -Arial.ttf 22 3 26.8483 41.6897 60 v 10.9583 27.8704 30.8793 -Arial.ttf 22 3 26.8483 41.6897 61 k -0.6650 25.1207 42.0000 -Arial.ttf 22 3 26.8483 41.6897 62 J -0.3241 24.0291 42.6606 -Arial.ttf 22 3 26.8483 41.6897 63 U -0.4100 32.9083 42.6606 -Arial.ttf 22 3 26.8483 41.6897 64 j -0.2817 12.3773 53.6167 -Arial.ttf 22 3 26.8483 41.6897 65 ( -0.2080 14.4103 53.6167 -Arial.ttf 22 3 26.8483 41.6897 66 7 -0.0344 26.8523 41.6897 -Arial.ttf 22 3 26.8483 41.6897 67 § -0.6740 26.9729 53.9271 -Arial.ttf 22 3 26.8483 41.6897 68 $ -2.4411 27.6897 49.3355 -Arial.ttf 22 3 26.8483 41.6897 69 € -1.1444 33.0769 43.3212 -Arial.ttf 22 3 26.8483 41.6897 70 / -0.1645 17.5749 42.0000 -Arial.ttf 22 3 26.8483 41.6897 71 C -1.1093 36.0000 43.3212 -Arial.ttf 22 3 26.8483 41.6897 72 * -0.0759 20.3453 17.8852 -Arial.ttf 22 3 26.8483 41.6897 73 ” -0.1723 14.2296 14.0000 -Arial.ttf 22 3 26.8483 41.6897 74 ? -0.2399 26.8483 42.0000 -Arial.ttf 22 3 26.8483 41.6897 75 { -0.3569 16.7375 53.6167 -Arial.ttf 22 3 26.8483 41.6897 76 } -0.3433 16.7375 53.6167 -Arial.ttf 22 3 26.8483 41.6897 77 , 36.1170 5.2626 14.0000 -Arial.ttf 22 3 26.8483 41.6897 78 I -0.4218 5.6936 42.0000 -Arial.ttf 22 3 26.8483 41.6897 79 ° -0.2220 15.8083 15.8083 -Arial.ttf 22 3 26.8483 41.6897 80 K -0.4364 34.5749 42.0000 -Arial.ttf 22 3 26.8483 41.6897 81 H -0.4095 32.9083 42.0000 -Arial.ttf 22 3 26.8483 41.6897 82 q 9.7454 26.3123 43.6877 -Arial.ttf 22 3 26.8483 41.6897 83 & -0.1645 35.1148 42.3103 -Arial.ttf 22 3 26.8483 41.6897 84 ’ -0.1284 5.9231 14.0000 -Arial.ttf 22 3 26.8483 41.6897 85 [ -0.2940 11.0000 53.6167 -Arial.ttf 22 3 26.8483 41.6897 86 - 23.6437 15.4980 5.2626 -Arial.ttf 22 3 26.8483 41.6897 87 Y -0.1379 38.4601 42.0000 -Arial.ttf 22 3 26.8483 41.6897 88 Q -1.2665 39.5749 46.3212 -Arial.ttf 22 3 26.8483 41.6897 89 " -0.2924 15.8083 15.1916 -Arial.ttf 22 3 26.8483 41.6897 90 ! -0.4701 5.2626 42.0000 -Arial.ttf 22 3 26.8483 41.6897 91 x 10.9334 29.1060 30.8793 -Arial.ttf 22 3 26.8483 41.6897 92 ) -0.1586 14.4103 53.6167 -Arial.ttf 22 3 26.8483 41.6897 93 = 11.3574 27.8793 17.8852 -Arial.ttf 22 3 26.8483 41.6897 94 + 7.3044 27.8753 27.8753 -Arial.ttf 22 3 26.8483 41.6897 95 X -0.4069 37.6626 42.0000 -Arial.ttf 22 3 26.8483 41.6897 96 » 13.6028 25.0439 26.1917 -Arial.ttf 22 3 26.8483 41.6897 97 ' -0.3492 5.2626 15.1916 -Arial.ttf 22 3 26.8483 41.6897 98 ¢ -0.5493 25.7813 54.2685 -Arial.ttf 22 3 26.8483 41.6897 99 Z -0.3917 33.0729 42.0000 -Arial.ttf 22 3 26.8483 41.6897 100 > 7.4010 27.8354 27.8704 -Arial.ttf 22 3 26.8483 41.6897 101 ® -1.0706 43.1916 42.9709 -Arial.ttf 22 3 26.8483 41.6897 102 © -0.9625 43.1916 42.9709 -Arial.ttf 22 3 26.8483 41.6897 103 ] -0.2425 11.0000 53.6167 -Arial.ttf 22 3 26.8483 41.6897 104 é -1.4247 27.4690 43.5020 -Arial.ttf 22 3 26.8483 41.6897 105 z 10.8887 26.3123 30.8793 -Arial.ttf 22 3 26.8483 41.6897 106 _ 47.8318 33.3832 5.2626 -Arial.ttf 22 3 26.8483 41.6897 107 ¥ -0.3724 32.0291 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 1 t -16.9266 15.0709 42.3103 -Arial.ttf 23 ~ 29.9083 10.9561 2 h -17.0569 24.2793 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 3 a -6.9422 27.4690 32.3813 -Arial.ttf 23 ~ 29.9083 10.9561 4 n -6.7311 24.2793 32.0709 -Arial.ttf 23 ~ 29.9083 10.9561 5 P -16.9205 31.4542 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 6 o -7.0218 27.4690 32.3813 -Arial.ttf 23 ~ 29.9083 10.9561 7 e -6.7226 27.4690 32.3813 -Arial.ttf 23 ~ 29.9083 10.9561 8 : -5.6319 5.2626 30.8793 -Arial.ttf 23 ~ 29.9083 10.9561 9 r -7.1724 16.5689 32.0709 -Arial.ttf 23 ~ 29.9083 10.9561 10 l -16.9977 5.2626 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 11 i -16.8337 5.2626 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 12 1 -16.5985 15.2355 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 13 | -16.8887 4.1916 54.4980 -Arial.ttf 23 ~ 29.9083 10.9561 14 N -16.7223 32.9083 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 15 f -16.8271 18.0709 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 16 g -7.0812 26.3123 43.6877 -Arial.ttf 23 ~ 29.9083 10.9561 17 d -17.1812 26.3123 42.3103 -Arial.ttf 23 ~ 29.9083 10.9561 18 W -16.9761 57.1916 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 19 s -6.9624 24.9561 32.3813 -Arial.ttf 23 ~ 29.9083 10.9561 20 c -7.1803 26.8084 32.3813 -Arial.ttf 23 ~ 29.9083 10.9561 21 u -5.8854 24.2793 31.1896 -Arial.ttf 23 ~ 29.9083 10.9561 22 3 -16.6406 26.8483 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 23 ~ 0.2016 29.9083 10.9561 -Arial.ttf 23 ~ 29.9083 10.9561 24 # -16.8699 31.2646 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 25 O -17.5485 39.5749 43.3212 -Arial.ttf 23 ~ 29.9083 10.9561 26 ` -16.8169 10.9561 8.0769 -Arial.ttf 23 ~ 29.9083 10.9561 27 @ -16.7138 54.1478 54.3123 -Arial.ttf 23 ~ 29.9083 10.9561 28 F -16.7345 28.2207 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 29 S -17.7111 33.0001 43.3212 -Arial.ttf 23 ~ 29.9083 10.9561 30 p -7.0397 26.3123 43.6877 -Arial.ttf 23 ~ 29.9083 10.9561 31 “ -16.9742 13.5690 14.0000 -Arial.ttf 23 ~ 29.9083 10.9561 32 % -16.9333 44.8793 42.3103 -Arial.ttf 23 ~ 29.9083 10.9561 33 £ -16.7898 29.8522 42.3103 -Arial.ttf 23 ~ 29.9083 10.9561 34 . 19.7474 5.2626 5.2626 -Arial.ttf 23 ~ 29.9083 10.9561 35 2 -16.5440 28.6956 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 36 5 -16.5383 26.8483 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 37 m -6.5419 41.4044 32.0709 -Arial.ttf 23 ~ 29.9083 10.9561 38 V -16.7293 40.5788 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 39 6 -16.2656 27.8542 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 40 w -5.5396 43.4212 30.8793 -Arial.ttf 23 ~ 29.9083 10.9561 41 T -16.6257 33.6936 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 42 M -16.8253 40.5788 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 43 G -17.5081 38.6897 43.3212 -Arial.ttf 23 ~ 29.9083 10.9561 44 b -16.9837 26.3123 42.3103 -Arial.ttf 23 ~ 29.9083 10.9561 45 9 -16.7412 26.8483 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 46 ; -5.5751 5.2626 39.6167 -Arial.ttf 23 ~ 29.9083 10.9561 47 D -16.5532 34.4542 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 48 L -16.6285 25.8813 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 49 y -5.8720 28.0000 42.4960 -Arial.ttf 23 ~ 29.9083 10.9561 50 ‘ -17.1173 5.9231 14.0000 -Arial.ttf 23 ~ 29.9083 10.9561 51 \ -16.8735 17.5749 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 52 R -16.9580 36.7497 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 53 < -8.9903 27.8354 27.8704 -Arial.ttf 23 ~ 29.9083 10.9561 54 4 -16.6048 28.3503 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 55 8 -16.7291 26.6626 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 56 0 -16.2904 26.8483 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 57 A -16.8320 40.5788 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 58 E -17.0099 31.4542 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 59 B -17.0114 31.4542 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 60 v -5.6908 27.8704 30.8793 -Arial.ttf 23 ~ 29.9083 10.9561 61 k -17.1202 25.1207 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 62 J -16.9327 24.0291 42.6606 -Arial.ttf 23 ~ 29.9083 10.9561 63 U -16.8241 32.9083 42.6606 -Arial.ttf 23 ~ 29.9083 10.9561 64 j -16.8597 12.3773 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 65 ( -16.6297 14.4103 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 66 7 -16.6490 26.8523 41.6897 -Arial.ttf 23 ~ 29.9083 10.9561 67 § -16.8850 26.9729 53.9271 -Arial.ttf 23 ~ 29.9083 10.9561 68 $ -18.9782 27.6897 49.3355 -Arial.ttf 23 ~ 29.9083 10.9561 69 € -17.9425 33.0769 43.3212 -Arial.ttf 23 ~ 29.9083 10.9561 70 / -17.0368 17.5749 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 71 C -17.7138 36.0000 43.3212 -Arial.ttf 23 ~ 29.9083 10.9561 72 * -16.7965 20.3453 17.8852 -Arial.ttf 23 ~ 29.9083 10.9561 73 ” -16.8878 14.2296 14.0000 -Arial.ttf 23 ~ 29.9083 10.9561 74 ? -16.8712 26.8483 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 75 { -16.8820 16.7375 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 76 } -16.9054 16.7375 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 77 , 20.1763 5.2626 14.0000 -Arial.ttf 23 ~ 29.9083 10.9561 78 I -16.9154 5.6936 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 79 ° -16.9610 15.8083 15.8083 -Arial.ttf 23 ~ 29.9083 10.9561 80 K -16.4540 34.5749 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 81 H -16.4912 32.9083 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 82 q -6.9407 26.3123 43.6877 -Arial.ttf 23 ~ 29.9083 10.9561 83 & -16.8969 35.1148 42.3103 -Arial.ttf 23 ~ 29.9083 10.9561 84 ’ -16.8431 5.9231 14.0000 -Arial.ttf 23 ~ 29.9083 10.9561 85 [ -16.9536 11.0000 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 86 - 7.3575 15.4980 5.2626 -Arial.ttf 23 ~ 29.9083 10.9561 87 Y -16.8969 38.4601 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 88 Q -17.5770 39.5749 46.3212 -Arial.ttf 23 ~ 29.9083 10.9561 89 " -16.8272 15.8083 15.1916 -Arial.ttf 23 ~ 29.9083 10.9561 90 ! -16.8847 5.2626 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 91 x -5.8870 29.1060 30.8793 -Arial.ttf 23 ~ 29.9083 10.9561 92 ) -16.5840 14.4103 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 93 = -5.0433 27.8793 17.8852 -Arial.ttf 23 ~ 29.9083 10.9561 94 + -9.3203 27.8753 27.8753 -Arial.ttf 23 ~ 29.9083 10.9561 95 X -16.8614 37.6626 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 96 » -2.8753 25.0439 26.1917 -Arial.ttf 23 ~ 29.9083 10.9561 97 ' -16.9827 5.2626 15.1916 -Arial.ttf 23 ~ 29.9083 10.9561 98 ¢ -17.1378 25.7813 54.2685 -Arial.ttf 23 ~ 29.9083 10.9561 99 Z -16.9208 33.0729 42.0000 -Arial.ttf 23 ~ 29.9083 10.9561 100 > -9.3599 27.8354 27.8704 -Arial.ttf 23 ~ 29.9083 10.9561 101 ® -17.6736 43.1916 42.9709 -Arial.ttf 23 ~ 29.9083 10.9561 102 © -17.5849 43.1916 42.9709 -Arial.ttf 23 ~ 29.9083 10.9561 103 ] -16.7536 11.0000 53.6167 -Arial.ttf 23 ~ 29.9083 10.9561 104 é -17.6917 27.4690 43.5020 -Arial.ttf 23 ~ 29.9083 10.9561 105 z -5.5650 26.3123 30.8793 -Arial.ttf 23 ~ 29.9083 10.9561 106 _ 31.3575 33.3832 5.2626 -Arial.ttf 23 ~ 29.9083 10.9561 107 ¥ -16.9646 32.0291 42.0000 -Arial.ttf 24 # 31.2646 42.0000 1 t 0.0483 15.0709 42.3103 -Arial.ttf 24 # 31.2646 42.0000 2 h -0.0526 24.2793 42.0000 -Arial.ttf 24 # 31.2646 42.0000 3 a 9.9301 27.4690 32.3813 -Arial.ttf 24 # 31.2646 42.0000 4 n 9.8299 24.2793 32.0709 -Arial.ttf 24 # 31.2646 42.0000 5 P 0.0923 31.4542 42.0000 -Arial.ttf 24 # 31.2646 42.0000 6 o 9.8406 27.4690 32.3813 -Arial.ttf 24 # 31.2646 42.0000 7 e 9.4535 27.4690 32.3813 -Arial.ttf 24 # 31.2646 42.0000 8 : 10.8999 5.2626 30.8793 -Arial.ttf 24 # 31.2646 42.0000 9 r 10.2394 16.5689 32.0709 -Arial.ttf 24 # 31.2646 42.0000 10 l -0.0318 5.2626 42.0000 -Arial.ttf 24 # 31.2646 42.0000 11 i -0.0178 5.2626 42.0000 -Arial.ttf 24 # 31.2646 42.0000 12 1 0.4069 15.2355 41.6897 -Arial.ttf 24 # 31.2646 42.0000 13 | 0.0182 4.1916 54.4980 -Arial.ttf 24 # 31.2646 42.0000 14 N 0.0184 32.9083 42.0000 -Arial.ttf 24 # 31.2646 42.0000 15 f 0.1808 18.0709 42.0000 -Arial.ttf 24 # 31.2646 42.0000 16 g 9.9398 26.3123 43.6877 -Arial.ttf 24 # 31.2646 42.0000 17 d 0.2678 26.3123 42.3103 -Arial.ttf 24 # 31.2646 42.0000 18 W 0.0854 57.1916 42.0000 -Arial.ttf 24 # 31.2646 42.0000 19 s 9.8754 24.9561 32.3813 -Arial.ttf 24 # 31.2646 42.0000 20 c 10.0176 26.8084 32.3813 -Arial.ttf 24 # 31.2646 42.0000 21 u 11.2936 24.2793 31.1896 -Arial.ttf 24 # 31.2646 42.0000 22 3 0.5586 26.8483 41.6897 -Arial.ttf 24 # 31.2646 42.0000 23 ~ 17.3757 29.9083 10.9561 -Arial.ttf 24 # 31.2646 42.0000 24 # -0.0345 31.2646 42.0000 -Arial.ttf 24 # 31.2646 42.0000 25 O -0.9518 39.5749 43.3212 -Arial.ttf 24 # 31.2646 42.0000 26 ` -0.2760 10.9561 8.0769 -Arial.ttf 24 # 31.2646 42.0000 27 @ 0.2411 54.1478 54.3123 -Arial.ttf 24 # 31.2646 42.0000 28 F 0.2869 28.2207 42.0000 -Arial.ttf 24 # 31.2646 42.0000 29 S -1.0841 33.0001 43.3212 -Arial.ttf 24 # 31.2646 42.0000 30 p 9.7980 26.3123 43.6877 -Arial.ttf 24 # 31.2646 42.0000 31 “ -0.1046 13.5690 14.0000 -Arial.ttf 24 # 31.2646 42.0000 32 % 0.1920 44.8793 42.3103 -Arial.ttf 24 # 31.2646 42.0000 33 £ -0.2715 29.8522 42.3103 -Arial.ttf 24 # 31.2646 42.0000 34 . 36.6685 5.2626 5.2626 -Arial.ttf 24 # 31.2646 42.0000 35 2 0.3215 28.6956 41.6897 -Arial.ttf 24 # 31.2646 42.0000 36 5 0.4058 26.8483 41.6897 -Arial.ttf 24 # 31.2646 42.0000 37 m 9.9223 41.4044 32.0709 -Arial.ttf 24 # 31.2646 42.0000 38 V 0.0398 40.5788 42.0000 -Arial.ttf 24 # 31.2646 42.0000 39 6 0.3298 27.8542 41.6897 -Arial.ttf 24 # 31.2646 42.0000 40 w 11.2227 43.4212 30.8793 -Arial.ttf 24 # 31.2646 42.0000 41 T -0.3036 33.6936 42.0000 -Arial.ttf 24 # 31.2646 42.0000 42 M 0.0000 40.5788 42.0000 -Arial.ttf 24 # 31.2646 42.0000 43 G -0.9930 38.6897 43.3212 -Arial.ttf 24 # 31.2646 42.0000 44 b 0.0411 26.3123 42.3103 -Arial.ttf 24 # 31.2646 42.0000 45 9 0.1805 26.8483 41.6897 -Arial.ttf 24 # 31.2646 42.0000 46 ; 10.8765 5.2626 39.6167 -Arial.ttf 24 # 31.2646 42.0000 47 D 0.0568 34.4542 42.0000 -Arial.ttf 24 # 31.2646 42.0000 48 L 0.1251 25.8813 42.0000 -Arial.ttf 24 # 31.2646 42.0000 49 y 11.2031 28.0000 42.4960 -Arial.ttf 24 # 31.2646 42.0000 50 ‘ 0.1544 5.9231 14.0000 -Arial.ttf 24 # 31.2646 42.0000 51 \ 0.0852 17.5749 42.0000 -Arial.ttf 24 # 31.2646 42.0000 52 R -0.1019 36.7497 42.0000 -Arial.ttf 24 # 31.2646 42.0000 53 < 7.5778 27.8354 27.8704 -Arial.ttf 24 # 31.2646 42.0000 54 4 0.6583 28.3503 41.6897 -Arial.ttf 24 # 31.2646 42.0000 55 8 0.5268 26.6626 41.6897 -Arial.ttf 24 # 31.2646 42.0000 56 0 0.4621 26.8483 41.6897 -Arial.ttf 24 # 31.2646 42.0000 57 A 0.0330 40.5788 42.0000 -Arial.ttf 24 # 31.2646 42.0000 58 E 0.1773 31.4542 42.0000 -Arial.ttf 24 # 31.2646 42.0000 59 B -0.0095 31.4542 42.0000 -Arial.ttf 24 # 31.2646 42.0000 60 v 11.0782 27.8704 30.8793 -Arial.ttf 24 # 31.2646 42.0000 61 k 0.0881 25.1207 42.0000 -Arial.ttf 24 # 31.2646 42.0000 62 J 0.0170 24.0291 42.6606 -Arial.ttf 24 # 31.2646 42.0000 63 U -0.0744 32.9083 42.6606 -Arial.ttf 24 # 31.2646 42.0000 64 j -0.1284 12.3773 53.6167 -Arial.ttf 24 # 31.2646 42.0000 65 ( 0.0206 14.4103 53.6167 -Arial.ttf 24 # 31.2646 42.0000 66 7 0.3533 26.8523 41.6897 -Arial.ttf 24 # 31.2646 42.0000 67 § 0.0875 26.9729 53.9271 -Arial.ttf 24 # 31.2646 42.0000 68 $ -2.0358 27.6897 49.3355 -Arial.ttf 24 # 31.2646 42.0000 69 € -0.9173 33.0769 43.3212 -Arial.ttf 24 # 31.2646 42.0000 70 / -0.1889 17.5749 42.0000 -Arial.ttf 24 # 31.2646 42.0000 71 C -0.6644 36.0000 43.3212 -Arial.ttf 24 # 31.2646 42.0000 72 * -0.2169 20.3453 17.8852 -Arial.ttf 24 # 31.2646 42.0000 73 ” -0.0452 14.2296 14.0000 -Arial.ttf 24 # 31.2646 42.0000 74 ? 0.2554 26.8483 42.0000 -Arial.ttf 24 # 31.2646 42.0000 75 { -0.0879 16.7375 53.6167 -Arial.ttf 24 # 31.2646 42.0000 76 } 0.1654 16.7375 53.6167 -Arial.ttf 24 # 31.2646 42.0000 77 , 36.5784 5.2626 14.0000 -Arial.ttf 24 # 31.2646 42.0000 78 I 0.1057 5.6936 42.0000 -Arial.ttf 24 # 31.2646 42.0000 79 ° 0.2730 15.8083 15.8083 -Arial.ttf 24 # 31.2646 42.0000 80 K -0.2746 34.5749 42.0000 -Arial.ttf 24 # 31.2646 42.0000 81 H 0.0044 32.9083 42.0000 -Arial.ttf 24 # 31.2646 42.0000 82 q 9.8601 26.3123 43.6877 -Arial.ttf 24 # 31.2646 42.0000 83 & 0.1655 35.1148 42.3103 -Arial.ttf 24 # 31.2646 42.0000 84 ’ 0.1818 5.9231 14.0000 -Arial.ttf 24 # 31.2646 42.0000 85 [ -0.1931 11.0000 53.6167 -Arial.ttf 24 # 31.2646 42.0000 86 - 23.9812 15.4980 5.2626 -Arial.ttf 24 # 31.2646 42.0000 87 Y 0.1267 38.4601 42.0000 -Arial.ttf 24 # 31.2646 42.0000 88 Q -0.6866 39.5749 46.3212 -Arial.ttf 24 # 31.2646 42.0000 89 " 0.0608 15.8083 15.1916 -Arial.ttf 24 # 31.2646 42.0000 90 ! 0.1284 5.2626 42.0000 -Arial.ttf 24 # 31.2646 42.0000 91 x 10.9992 29.1060 30.8793 -Arial.ttf 24 # 31.2646 42.0000 92 ) -0.1682 14.4103 53.6167 -Arial.ttf 24 # 31.2646 42.0000 93 = 11.8954 27.8793 17.8852 -Arial.ttf 24 # 31.2646 42.0000 94 + 7.2905 27.8753 27.8753 -Arial.ttf 24 # 31.2646 42.0000 95 X 0.1024 37.6626 42.0000 -Arial.ttf 24 # 31.2646 42.0000 96 » 14.0593 25.0439 26.1917 -Arial.ttf 24 # 31.2646 42.0000 97 ' 0.0540 5.2626 15.1916 -Arial.ttf 24 # 31.2646 42.0000 98 ¢ -0.2849 25.7813 54.2685 -Arial.ttf 24 # 31.2646 42.0000 99 Z 0.0418 33.0729 42.0000 -Arial.ttf 24 # 31.2646 42.0000 100 > 7.6147 27.8354 27.8704 -Arial.ttf 24 # 31.2646 42.0000 101 ® -0.5778 43.1916 42.9709 -Arial.ttf 24 # 31.2646 42.0000 102 © -0.8870 43.1916 42.9709 -Arial.ttf 24 # 31.2646 42.0000 103 ] -0.0361 11.0000 53.6167 -Arial.ttf 24 # 31.2646 42.0000 104 é -0.9614 27.4690 43.5020 -Arial.ttf 24 # 31.2646 42.0000 105 z 11.4474 26.3123 30.8793 -Arial.ttf 24 # 31.2646 42.0000 106 _ 48.3887 33.3832 5.2626 -Arial.ttf 24 # 31.2646 42.0000 107 ¥ 0.0513 32.0291 42.0000 -Arial.ttf 25 O 39.5749 43.3212 1 t 0.4431 15.0709 42.3103 -Arial.ttf 25 O 39.5749 43.3212 2 h 0.7067 24.2793 42.0000 -Arial.ttf 25 O 39.5749 43.3212 3 a 10.7397 27.4690 32.3813 -Arial.ttf 25 O 39.5749 43.3212 4 n 10.4751 24.2793 32.0709 -Arial.ttf 25 O 39.5749 43.3212 5 P 0.9337 31.4542 42.0000 -Arial.ttf 25 O 39.5749 43.3212 6 o 10.6311 27.4690 32.3813 -Arial.ttf 25 O 39.5749 43.3212 7 e 10.1606 27.4690 32.3813 -Arial.ttf 25 O 39.5749 43.3212 8 : 11.8572 5.2626 30.8793 -Arial.ttf 25 O 39.5749 43.3212 9 r 10.7052 16.5689 32.0709 -Arial.ttf 25 O 39.5749 43.3212 10 l 0.4476 5.2626 42.0000 -Arial.ttf 25 O 39.5749 43.3212 11 i 0.7061 5.2626 42.0000 -Arial.ttf 25 O 39.5749 43.3212 12 1 1.0974 15.2355 41.6897 -Arial.ttf 25 O 39.5749 43.3212 13 | 0.8843 4.1916 54.4980 -Arial.ttf 25 O 39.5749 43.3212 14 N 0.6814 32.9083 42.0000 -Arial.ttf 25 O 39.5749 43.3212 15 f 0.5821 18.0709 42.0000 -Arial.ttf 25 O 39.5749 43.3212 16 g 10.4160 26.3123 43.6877 -Arial.ttf 25 O 39.5749 43.3212 17 d 0.6236 26.3123 42.3103 -Arial.ttf 25 O 39.5749 43.3212 18 W 0.7559 57.1916 42.0000 -Arial.ttf 25 O 39.5749 43.3212 19 s 10.2721 24.9561 32.3813 -Arial.ttf 25 O 39.5749 43.3212 20 c 10.7941 26.8084 32.3813 -Arial.ttf 25 O 39.5749 43.3212 21 u 11.7618 24.2793 31.1896 -Arial.ttf 25 O 39.5749 43.3212 22 3 0.9042 26.8483 41.6897 -Arial.ttf 25 O 39.5749 43.3212 23 ~ 17.6005 29.9083 10.9561 -Arial.ttf 25 O 39.5749 43.3212 24 # 0.5515 31.2646 42.0000 -Arial.ttf 25 O 39.5749 43.3212 25 O 0.3431 39.5749 43.3212 -Arial.ttf 25 O 39.5749 43.3212 26 ` 0.8399 10.9561 8.0769 -Arial.ttf 25 O 39.5749 43.3212 27 @ 0.5434 54.1478 54.3123 -Arial.ttf 25 O 39.5749 43.3212 28 F 0.7024 28.2207 42.0000 -Arial.ttf 25 O 39.5749 43.3212 29 S -0.0631 33.0001 43.3212 -Arial.ttf 25 O 39.5749 43.3212 30 p 10.6010 26.3123 43.6877 -Arial.ttf 25 O 39.5749 43.3212 31 “ 0.7076 13.5690 14.0000 -Arial.ttf 25 O 39.5749 43.3212 32 % 0.4512 44.8793 42.3103 -Arial.ttf 25 O 39.5749 43.3212 33 £ 0.7761 29.8522 42.3103 -Arial.ttf 25 O 39.5749 43.3212 34 . 37.2754 5.2626 5.2626 -Arial.ttf 25 O 39.5749 43.3212 35 2 0.9222 28.6956 41.6897 -Arial.ttf 25 O 39.5749 43.3212 36 5 0.8564 26.8483 41.6897 -Arial.ttf 25 O 39.5749 43.3212 37 m 10.6576 41.4044 32.0709 -Arial.ttf 25 O 39.5749 43.3212 38 V 0.6801 40.5788 42.0000 -Arial.ttf 25 O 39.5749 43.3212 39 6 0.8731 27.8542 41.6897 -Arial.ttf 25 O 39.5749 43.3212 40 w 12.0487 43.4212 30.8793 -Arial.ttf 25 O 39.5749 43.3212 41 T 0.6153 33.6936 42.0000 -Arial.ttf 25 O 39.5749 43.3212 42 M 1.1351 40.5788 42.0000 -Arial.ttf 25 O 39.5749 43.3212 43 G -0.1851 38.6897 43.3212 -Arial.ttf 25 O 39.5749 43.3212 44 b 0.7137 26.3123 42.3103 -Arial.ttf 25 O 39.5749 43.3212 45 9 0.9652 26.8483 41.6897 -Arial.ttf 25 O 39.5749 43.3212 46 ; 11.6932 5.2626 39.6167 -Arial.ttf 25 O 39.5749 43.3212 47 D 0.7200 34.4542 42.0000 -Arial.ttf 25 O 39.5749 43.3212 48 L 0.2327 25.8813 42.0000 -Arial.ttf 25 O 39.5749 43.3212 49 y 11.6790 28.0000 42.4960 -Arial.ttf 25 O 39.5749 43.3212 50 ‘ 0.7115 5.9231 14.0000 -Arial.ttf 25 O 39.5749 43.3212 51 \ 0.6864 17.5749 42.0000 -Arial.ttf 25 O 39.5749 43.3212 52 R 0.8276 36.7497 42.0000 -Arial.ttf 25 O 39.5749 43.3212 53 < 8.0647 27.8354 27.8704 -Arial.ttf 25 O 39.5749 43.3212 54 4 1.3019 28.3503 41.6897 -Arial.ttf 25 O 39.5749 43.3212 55 8 0.9629 26.6626 41.6897 -Arial.ttf 25 O 39.5749 43.3212 56 0 0.7488 26.8483 41.6897 -Arial.ttf 25 O 39.5749 43.3212 57 A 0.8266 40.5788 42.0000 -Arial.ttf 25 O 39.5749 43.3212 58 E 0.7112 31.4542 42.0000 -Arial.ttf 25 O 39.5749 43.3212 59 B 0.8341 31.4542 42.0000 -Arial.ttf 25 O 39.5749 43.3212 60 v 11.5242 27.8704 30.8793 -Arial.ttf 25 O 39.5749 43.3212 61 k 0.6194 25.1207 42.0000 -Arial.ttf 25 O 39.5749 43.3212 62 J 0.8298 24.0291 42.6606 -Arial.ttf 25 O 39.5749 43.3212 63 U 0.7477 32.9083 42.6606 -Arial.ttf 25 O 39.5749 43.3212 64 j 0.7035 12.3773 53.6167 -Arial.ttf 25 O 39.5749 43.3212 65 ( 0.4819 14.4103 53.6167 -Arial.ttf 25 O 39.5749 43.3212 66 7 1.0112 26.8523 41.6897 -Arial.ttf 25 O 39.5749 43.3212 67 § 0.5090 26.9729 53.9271 -Arial.ttf 25 O 39.5749 43.3212 68 $ -1.1132 27.6897 49.3355 -Arial.ttf 25 O 39.5749 43.3212 69 € -0.1040 33.0769 43.3212 -Arial.ttf 25 O 39.5749 43.3212 70 / 0.9709 17.5749 42.0000 -Arial.ttf 25 O 39.5749 43.3212 71 C 0.0052 36.0000 43.3212 -Arial.ttf 25 O 39.5749 43.3212 72 * 0.7945 20.3453 17.8852 -Arial.ttf 25 O 39.5749 43.3212 73 ” 0.8552 14.2296 14.0000 -Arial.ttf 25 O 39.5749 43.3212 74 ? 0.8327 26.8483 42.0000 -Arial.ttf 25 O 39.5749 43.3212 75 { 0.8646 16.7375 53.6167 -Arial.ttf 25 O 39.5749 43.3212 76 } 0.7831 16.7375 53.6167 -Arial.ttf 25 O 39.5749 43.3212 77 , 37.6240 5.2626 14.0000 -Arial.ttf 25 O 39.5749 43.3212 78 I 0.8604 5.6936 42.0000 -Arial.ttf 25 O 39.5749 43.3212 79 ° 0.5545 15.8083 15.8083 -Arial.ttf 25 O 39.5749 43.3212 80 K 0.6653 34.5749 42.0000 -Arial.ttf 25 O 39.5749 43.3212 81 H 0.6855 32.9083 42.0000 -Arial.ttf 25 O 39.5749 43.3212 82 q 10.7521 26.3123 43.6877 -Arial.ttf 25 O 39.5749 43.3212 83 & 0.9086 35.1148 42.3103 -Arial.ttf 25 O 39.5749 43.3212 84 ’ 0.6298 5.9231 14.0000 -Arial.ttf 25 O 39.5749 43.3212 85 [ 0.4120 11.0000 53.6167 -Arial.ttf 25 O 39.5749 43.3212 86 - 24.8395 15.4980 5.2626 -Arial.ttf 25 O 39.5749 43.3212 87 Y 0.5189 38.4601 42.0000 -Arial.ttf 25 O 39.5749 43.3212 88 Q -0.1830 39.5749 46.3212 -Arial.ttf 25 O 39.5749 43.3212 89 " 0.6675 15.8083 15.1916 -Arial.ttf 25 O 39.5749 43.3212 90 ! 0.6765 5.2626 42.0000 -Arial.ttf 25 O 39.5749 43.3212 91 x 11.5810 29.1060 30.8793 -Arial.ttf 25 O 39.5749 43.3212 92 ) 0.5625 14.4103 53.6167 -Arial.ttf 25 O 39.5749 43.3212 93 = 12.6529 27.8793 17.8852 -Arial.ttf 25 O 39.5749 43.3212 94 + 8.3916 27.8753 27.8753 -Arial.ttf 25 O 39.5749 43.3212 95 X 0.8092 37.6626 42.0000 -Arial.ttf 25 O 39.5749 43.3212 96 » 14.6842 25.0439 26.1917 -Arial.ttf 25 O 39.5749 43.3212 97 ' 0.7518 5.2626 15.1916 -Arial.ttf 25 O 39.5749 43.3212 98 ¢ 0.3221 25.7813 54.2685 -Arial.ttf 25 O 39.5749 43.3212 99 Z 0.8514 33.0729 42.0000 -Arial.ttf 25 O 39.5749 43.3212 100 > 8.0652 27.8354 27.8704 -Arial.ttf 25 O 39.5749 43.3212 101 ® -0.1836 43.1916 42.9709 -Arial.ttf 25 O 39.5749 43.3212 102 © 0.1429 43.1916 42.9709 -Arial.ttf 25 O 39.5749 43.3212 103 ] 0.7040 11.0000 53.6167 -Arial.ttf 25 O 39.5749 43.3212 104 é -0.7532 27.4690 43.5020 -Arial.ttf 25 O 39.5749 43.3212 105 z 11.8391 26.3123 30.8793 -Arial.ttf 25 O 39.5749 43.3212 106 _ 49.5679 33.3832 5.2626 -Arial.ttf 25 O 39.5749 43.3212 107 ¥ 0.4054 32.0291 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 1 t 0.2371 15.0709 42.3103 -Arial.ttf 26 ` 10.9561 8.0769 2 h -0.0068 24.2793 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 3 a 9.9429 27.4690 32.3813 -Arial.ttf 26 ` 10.9561 8.0769 4 n 9.8808 24.2793 32.0709 -Arial.ttf 26 ` 10.9561 8.0769 5 P 0.1406 31.4542 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 6 o 9.6919 27.4690 32.3813 -Arial.ttf 26 ` 10.9561 8.0769 7 e 9.9667 27.4690 32.3813 -Arial.ttf 26 ` 10.9561 8.0769 8 : 11.1150 5.2626 30.8793 -Arial.ttf 26 ` 10.9561 8.0769 9 r 10.0409 16.5689 32.0709 -Arial.ttf 26 ` 10.9561 8.0769 10 l -0.0138 5.2626 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 11 i 0.1372 5.2626 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 12 1 0.2320 15.2355 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 13 | -0.1030 4.1916 54.4980 -Arial.ttf 26 ` 10.9561 8.0769 14 N 0.1754 32.9083 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 15 f 0.2651 18.0709 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 16 g 9.7487 26.3123 43.6877 -Arial.ttf 26 ` 10.9561 8.0769 17 d -0.0176 26.3123 42.3103 -Arial.ttf 26 ` 10.9561 8.0769 18 W -0.1586 57.1916 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 19 s 10.1533 24.9561 32.3813 -Arial.ttf 26 ` 10.9561 8.0769 20 c 9.9939 26.8084 32.3813 -Arial.ttf 26 ` 10.9561 8.0769 21 u 10.9619 24.2793 31.1896 -Arial.ttf 26 ` 10.9561 8.0769 22 3 0.1639 26.8483 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 23 ~ 16.8655 29.9083 10.9561 -Arial.ttf 26 ` 10.9561 8.0769 24 # -0.0098 31.2646 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 25 O -0.5545 39.5749 43.3212 -Arial.ttf 26 ` 10.9561 8.0769 26 ` 0.1793 10.9561 8.0769 -Arial.ttf 26 ` 10.9561 8.0769 27 @ -0.0195 54.1478 54.3123 -Arial.ttf 26 ` 10.9561 8.0769 28 F 0.1902 28.2207 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 29 S -0.7629 33.0001 43.3212 -Arial.ttf 26 ` 10.9561 8.0769 30 p 10.0521 26.3123 43.6877 -Arial.ttf 26 ` 10.9561 8.0769 31 “ 0.0101 13.5690 14.0000 -Arial.ttf 26 ` 10.9561 8.0769 32 % 0.0898 44.8793 42.3103 -Arial.ttf 26 ` 10.9561 8.0769 33 £ 0.0000 29.8522 42.3103 -Arial.ttf 26 ` 10.9561 8.0769 34 . 36.5179 5.2626 5.2626 -Arial.ttf 26 ` 10.9561 8.0769 35 2 0.4232 28.6956 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 36 5 0.3877 26.8483 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 37 m 9.8463 41.4044 32.0709 -Arial.ttf 26 ` 10.9561 8.0769 38 V 0.0703 40.5788 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 39 6 0.3989 27.8542 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 40 w 10.9897 43.4212 30.8793 -Arial.ttf 26 ` 10.9561 8.0769 41 T 0.0784 33.6936 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 42 M 0.5356 40.5788 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 43 G -1.0382 38.6897 43.3212 -Arial.ttf 26 ` 10.9561 8.0769 44 b -0.1199 26.3123 42.3103 -Arial.ttf 26 ` 10.9561 8.0769 45 9 0.3189 26.8483 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 46 ; 10.9901 5.2626 39.6167 -Arial.ttf 26 ` 10.9561 8.0769 47 D -0.2540 34.4542 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 48 L 0.0249 25.8813 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 49 y 10.7828 28.0000 42.4960 -Arial.ttf 26 ` 10.9561 8.0769 50 ‘ 0.1007 5.9231 14.0000 -Arial.ttf 26 ` 10.9561 8.0769 51 \ 0.1225 17.5749 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 52 R -0.1088 36.7497 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 53 < 7.6249 27.8354 27.8704 -Arial.ttf 26 ` 10.9561 8.0769 54 4 0.2817 28.3503 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 55 8 0.3698 26.6626 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 56 0 0.3836 26.8483 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 57 A -0.0536 40.5788 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 58 E 0.0140 31.4542 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 59 B 0.0552 31.4542 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 60 v 11.1207 27.8704 30.8793 -Arial.ttf 26 ` 10.9561 8.0769 61 k -0.1459 25.1207 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 62 J -0.1739 24.0291 42.6606 -Arial.ttf 26 ` 10.9561 8.0769 63 U -0.4508 32.9083 42.6606 -Arial.ttf 26 ` 10.9561 8.0769 64 j -0.0037 12.3773 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 65 ( 0.0138 14.4103 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 66 7 0.3931 26.8523 41.6897 -Arial.ttf 26 ` 10.9561 8.0769 67 § 0.0471 26.9729 53.9271 -Arial.ttf 26 ` 10.9561 8.0769 68 $ -2.0384 27.6897 49.3355 -Arial.ttf 26 ` 10.9561 8.0769 69 € -0.6457 33.0769 43.3212 -Arial.ttf 26 ` 10.9561 8.0769 70 / -0.2756 17.5749 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 71 C -0.3420 36.0000 43.3212 -Arial.ttf 26 ` 10.9561 8.0769 72 * 0.1847 20.3453 17.8852 -Arial.ttf 26 ` 10.9561 8.0769 73 ” 0.0207 14.2296 14.0000 -Arial.ttf 26 ` 10.9561 8.0769 74 ? -0.0000 26.8483 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 75 { 0.0057 16.7375 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 76 } -0.0398 16.7375 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 77 , 36.5593 5.2626 14.0000 -Arial.ttf 26 ` 10.9561 8.0769 78 I -0.2678 5.6936 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 79 ° -0.1256 15.8083 15.8083 -Arial.ttf 26 ` 10.9561 8.0769 80 K -0.1009 34.5749 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 81 H -0.0685 32.9083 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 82 q 9.9498 26.3123 43.6877 -Arial.ttf 26 ` 10.9561 8.0769 83 & -0.2577 35.1148 42.3103 -Arial.ttf 26 ` 10.9561 8.0769 84 ’ -0.1659 5.9231 14.0000 -Arial.ttf 26 ` 10.9561 8.0769 85 [ 0.2693 11.0000 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 86 - 24.2124 15.4980 5.2626 -Arial.ttf 26 ` 10.9561 8.0769 87 Y 0.0966 38.4601 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 88 Q -0.7004 39.5749 46.3212 -Arial.ttf 26 ` 10.9561 8.0769 89 " -0.1006 15.8083 15.1916 -Arial.ttf 26 ` 10.9561 8.0769 90 ! -0.1677 5.2626 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 91 x 11.0332 29.1060 30.8793 -Arial.ttf 26 ` 10.9561 8.0769 92 ) 0.2164 14.4103 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 93 = 12.1434 27.8793 17.8852 -Arial.ttf 26 ` 10.9561 8.0769 94 + 7.4519 27.8753 27.8753 -Arial.ttf 26 ` 10.9561 8.0769 95 X 0.1378 37.6626 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 96 » 13.7605 25.0439 26.1917 -Arial.ttf 26 ` 10.9561 8.0769 97 ' -0.0689 5.2626 15.1916 -Arial.ttf 26 ` 10.9561 8.0769 98 ¢ -0.0645 25.7813 54.2685 -Arial.ttf 26 ` 10.9561 8.0769 99 Z 0.0085 33.0729 42.0000 -Arial.ttf 26 ` 10.9561 8.0769 100 > 7.6286 27.8354 27.8704 -Arial.ttf 26 ` 10.9561 8.0769 101 ® -0.4744 43.1916 42.9709 -Arial.ttf 26 ` 10.9561 8.0769 102 © -0.6606 43.1916 42.9709 -Arial.ttf 26 ` 10.9561 8.0769 103 ] 0.0320 11.0000 53.6167 -Arial.ttf 26 ` 10.9561 8.0769 104 é -1.2951 27.4690 43.5020 -Arial.ttf 26 ` 10.9561 8.0769 105 z 11.1207 26.3123 30.8793 -Arial.ttf 26 ` 10.9561 8.0769 106 _ 48.3940 33.3832 5.2626 -Arial.ttf 26 ` 10.9561 8.0769 107 ¥ 0.3161 32.0291 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 1 t -0.1974 15.0709 42.3103 -Arial.ttf 27 @ 54.1478 54.3123 2 h 0.0289 24.2793 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 3 a 9.7997 27.4690 32.3813 -Arial.ttf 27 @ 54.1478 54.3123 4 n 10.2328 24.2793 32.0709 -Arial.ttf 27 @ 54.1478 54.3123 5 P -0.2218 31.4542 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 6 o 10.0853 27.4690 32.3813 -Arial.ttf 27 @ 54.1478 54.3123 7 e 9.8480 27.4690 32.3813 -Arial.ttf 27 @ 54.1478 54.3123 8 : 11.1432 5.2626 30.8793 -Arial.ttf 27 @ 54.1478 54.3123 9 r 10.4928 16.5689 32.0709 -Arial.ttf 27 @ 54.1478 54.3123 10 l -0.0053 5.2626 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 11 i -0.0938 5.2626 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 12 1 0.5606 15.2355 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 13 | -0.0670 4.1916 54.4980 -Arial.ttf 27 @ 54.1478 54.3123 14 N -0.1595 32.9083 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 15 f 0.1714 18.0709 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 16 g 9.8146 26.3123 43.6877 -Arial.ttf 27 @ 54.1478 54.3123 17 d 0.1073 26.3123 42.3103 -Arial.ttf 27 @ 54.1478 54.3123 18 W -0.3038 57.1916 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 19 s 10.2530 24.9561 32.3813 -Arial.ttf 27 @ 54.1478 54.3123 20 c 10.0617 26.8084 32.3813 -Arial.ttf 27 @ 54.1478 54.3123 21 u 10.8953 24.2793 31.1896 -Arial.ttf 27 @ 54.1478 54.3123 22 3 0.0596 26.8483 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 23 ~ 16.7550 29.9083 10.9561 -Arial.ttf 27 @ 54.1478 54.3123 24 # 0.0138 31.2646 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 25 O -0.7752 39.5749 43.3212 -Arial.ttf 27 @ 54.1478 54.3123 26 ` -0.2872 10.9561 8.0769 -Arial.ttf 27 @ 54.1478 54.3123 27 @ 0.0857 54.1478 54.3123 -Arial.ttf 27 @ 54.1478 54.3123 28 F -0.0081 28.2207 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 29 S -0.4893 33.0001 43.3212 -Arial.ttf 27 @ 54.1478 54.3123 30 p 10.1830 26.3123 43.6877 -Arial.ttf 27 @ 54.1478 54.3123 31 “ -0.0992 13.5690 14.0000 -Arial.ttf 27 @ 54.1478 54.3123 32 % 0.0333 44.8793 42.3103 -Arial.ttf 27 @ 54.1478 54.3123 33 £ -0.0559 29.8522 42.3103 -Arial.ttf 27 @ 54.1478 54.3123 34 . 36.7772 5.2626 5.2626 -Arial.ttf 27 @ 54.1478 54.3123 35 2 0.2457 28.6956 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 36 5 0.1953 26.8483 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 37 m 9.8138 41.4044 32.0709 -Arial.ttf 27 @ 54.1478 54.3123 38 V 0.3876 40.5788 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 39 6 0.1131 27.8542 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 40 w 11.3146 43.4212 30.8793 -Arial.ttf 27 @ 54.1478 54.3123 41 T 0.4147 33.6936 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 42 M -0.2752 40.5788 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 43 G -0.2978 38.6897 43.3212 -Arial.ttf 27 @ 54.1478 54.3123 44 b 0.2517 26.3123 42.3103 -Arial.ttf 27 @ 54.1478 54.3123 45 9 0.5547 26.8483 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 46 ; 10.9623 5.2626 39.6167 -Arial.ttf 27 @ 54.1478 54.3123 47 D -0.0919 34.4542 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 48 L -0.2716 25.8813 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 49 y 10.9796 28.0000 42.4960 -Arial.ttf 27 @ 54.1478 54.3123 50 ‘ -0.4232 5.9231 14.0000 -Arial.ttf 27 @ 54.1478 54.3123 51 \ 0.1129 17.5749 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 52 R 0.0583 36.7497 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 53 < 7.6629 27.8354 27.8704 -Arial.ttf 27 @ 54.1478 54.3123 54 4 0.0522 28.3503 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 55 8 0.0114 26.6626 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 56 0 0.4161 26.8483 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 57 A 0.0584 40.5788 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 58 E 0.0163 31.4542 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 59 B -0.0159 31.4542 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 60 v 10.8693 27.8704 30.8793 -Arial.ttf 27 @ 54.1478 54.3123 61 k 0.1092 25.1207 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 62 J 0.1108 24.0291 42.6606 -Arial.ttf 27 @ 54.1478 54.3123 63 U 0.4317 32.9083 42.6606 -Arial.ttf 27 @ 54.1478 54.3123 64 j -0.2598 12.3773 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 65 ( 0.1746 14.4103 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 66 7 0.1103 26.8523 41.6897 -Arial.ttf 27 @ 54.1478 54.3123 67 § -0.2605 26.9729 53.9271 -Arial.ttf 27 @ 54.1478 54.3123 68 $ -2.1060 27.6897 49.3355 -Arial.ttf 27 @ 54.1478 54.3123 69 € -0.7560 33.0769 43.3212 -Arial.ttf 27 @ 54.1478 54.3123 70 / 0.1490 17.5749 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 71 C -0.7747 36.0000 43.3212 -Arial.ttf 27 @ 54.1478 54.3123 72 * 0.1212 20.3453 17.8852 -Arial.ttf 27 @ 54.1478 54.3123 73 ” 0.0179 14.2296 14.0000 -Arial.ttf 27 @ 54.1478 54.3123 74 ? -0.1996 26.8483 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 75 { 0.0467 16.7375 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 76 } -0.3798 16.7375 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 77 , 36.6446 5.2626 14.0000 -Arial.ttf 27 @ 54.1478 54.3123 78 I 0.0393 5.6936 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 79 ° 0.0418 15.8083 15.8083 -Arial.ttf 27 @ 54.1478 54.3123 80 K -0.2908 34.5749 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 81 H -0.2539 32.9083 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 82 q 9.6746 26.3123 43.6877 -Arial.ttf 27 @ 54.1478 54.3123 83 & -0.1925 35.1148 42.3103 -Arial.ttf 27 @ 54.1478 54.3123 84 ’ -0.0511 5.9231 14.0000 -Arial.ttf 27 @ 54.1478 54.3123 85 [ 0.2193 11.0000 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 86 - 24.0624 15.4980 5.2626 -Arial.ttf 27 @ 54.1478 54.3123 87 Y 0.0882 38.4601 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 88 Q -0.5600 39.5749 46.3212 -Arial.ttf 27 @ 54.1478 54.3123 89 " 0.0248 15.8083 15.1916 -Arial.ttf 27 @ 54.1478 54.3123 90 ! 0.0785 5.2626 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 91 x 11.0501 29.1060 30.8793 -Arial.ttf 27 @ 54.1478 54.3123 92 ) -0.2164 14.4103 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 93 = 11.9065 27.8793 17.8852 -Arial.ttf 27 @ 54.1478 54.3123 94 + 7.7147 27.8753 27.8753 -Arial.ttf 27 @ 54.1478 54.3123 95 X 0.2223 37.6626 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 96 » 14.1169 25.0439 26.1917 -Arial.ttf 27 @ 54.1478 54.3123 97 ' 0.0640 5.2626 15.1916 -Arial.ttf 27 @ 54.1478 54.3123 98 ¢ -0.1402 25.7813 54.2685 -Arial.ttf 27 @ 54.1478 54.3123 99 Z -0.2486 33.0729 42.0000 -Arial.ttf 27 @ 54.1478 54.3123 100 > 7.6486 27.8354 27.8704 -Arial.ttf 27 @ 54.1478 54.3123 101 ® -0.5296 43.1916 42.9709 -Arial.ttf 27 @ 54.1478 54.3123 102 © -0.4443 43.1916 42.9709 -Arial.ttf 27 @ 54.1478 54.3123 103 ] -0.2552 11.0000 53.6167 -Arial.ttf 27 @ 54.1478 54.3123 104 é -1.2498 27.4690 43.5020 -Arial.ttf 27 @ 54.1478 54.3123 105 z 11.1885 26.3123 30.8793 -Arial.ttf 27 @ 54.1478 54.3123 106 _ 48.5775 33.3832 5.2626 -Arial.ttf 27 @ 54.1478 54.3123 107 ¥ 0.0179 32.0291 42.0000 -Arial.ttf 28 F 28.2207 42.0000 1 t 0.0621 15.0709 42.3103 -Arial.ttf 28 F 28.2207 42.0000 2 h -0.1437 24.2793 42.0000 -Arial.ttf 28 F 28.2207 42.0000 3 a 10.0957 27.4690 32.3813 -Arial.ttf 28 F 28.2207 42.0000 4 n 9.7373 24.2793 32.0709 -Arial.ttf 28 F 28.2207 42.0000 5 P -0.0578 31.4542 42.0000 -Arial.ttf 28 F 28.2207 42.0000 6 o 10.0215 27.4690 32.3813 -Arial.ttf 28 F 28.2207 42.0000 7 e 9.7233 27.4690 32.3813 -Arial.ttf 28 F 28.2207 42.0000 8 : 11.0434 5.2626 30.8793 -Arial.ttf 28 F 28.2207 42.0000 9 r 9.7653 16.5689 32.0709 -Arial.ttf 28 F 28.2207 42.0000 10 l 0.0264 5.2626 42.0000 -Arial.ttf 28 F 28.2207 42.0000 11 i -0.2247 5.2626 42.0000 -Arial.ttf 28 F 28.2207 42.0000 12 1 0.4000 15.2355 41.6897 -Arial.ttf 28 F 28.2207 42.0000 13 | 0.1243 4.1916 54.4980 -Arial.ttf 28 F 28.2207 42.0000 14 N -0.0587 32.9083 42.0000 -Arial.ttf 28 F 28.2207 42.0000 15 f -0.2263 18.0709 42.0000 -Arial.ttf 28 F 28.2207 42.0000 16 g 9.9899 26.3123 43.6877 -Arial.ttf 28 F 28.2207 42.0000 17 d -0.1434 26.3123 42.3103 -Arial.ttf 28 F 28.2207 42.0000 18 W 0.0220 57.1916 42.0000 -Arial.ttf 28 F 28.2207 42.0000 19 s 9.7153 24.9561 32.3813 -Arial.ttf 28 F 28.2207 42.0000 20 c 9.9179 26.8084 32.3813 -Arial.ttf 28 F 28.2207 42.0000 21 u 11.4145 24.2793 31.1896 -Arial.ttf 28 F 28.2207 42.0000 22 3 0.0962 26.8483 41.6897 -Arial.ttf 28 F 28.2207 42.0000 23 ~ 16.9938 29.9083 10.9561 -Arial.ttf 28 F 28.2207 42.0000 24 # 0.2969 31.2646 42.0000 -Arial.ttf 28 F 28.2207 42.0000 25 O -0.5985 39.5749 43.3212 -Arial.ttf 28 F 28.2207 42.0000 26 ` 0.0838 10.9561 8.0769 -Arial.ttf 28 F 28.2207 42.0000 27 @ 0.1161 54.1478 54.3123 -Arial.ttf 28 F 28.2207 42.0000 28 F 0.2577 28.2207 42.0000 -Arial.ttf 28 F 28.2207 42.0000 29 S -0.4824 33.0001 43.3212 -Arial.ttf 28 F 28.2207 42.0000 30 p 10.2340 26.3123 43.6877 -Arial.ttf 28 F 28.2207 42.0000 31 “ 0.0430 13.5690 14.0000 -Arial.ttf 28 F 28.2207 42.0000 32 % -0.2594 44.8793 42.3103 -Arial.ttf 28 F 28.2207 42.0000 33 £ 0.1378 29.8522 42.3103 -Arial.ttf 28 F 28.2207 42.0000 34 . 36.9897 5.2626 5.2626 -Arial.ttf 28 F 28.2207 42.0000 35 2 0.1986 28.6956 41.6897 -Arial.ttf 28 F 28.2207 42.0000 36 5 0.4063 26.8483 41.6897 -Arial.ttf 28 F 28.2207 42.0000 37 m 9.9948 41.4044 32.0709 -Arial.ttf 28 F 28.2207 42.0000 38 V 0.2592 40.5788 42.0000 -Arial.ttf 28 F 28.2207 42.0000 39 6 0.1699 27.8542 41.6897 -Arial.ttf 28 F 28.2207 42.0000 40 w 11.1399 43.4212 30.8793 -Arial.ttf 28 F 28.2207 42.0000 41 T -0.1333 33.6936 42.0000 -Arial.ttf 28 F 28.2207 42.0000 42 M -0.0509 40.5788 42.0000 -Arial.ttf 28 F 28.2207 42.0000 43 G -0.6826 38.6897 43.3212 -Arial.ttf 28 F 28.2207 42.0000 44 b 0.1348 26.3123 42.3103 -Arial.ttf 28 F 28.2207 42.0000 45 9 0.2111 26.8483 41.6897 -Arial.ttf 28 F 28.2207 42.0000 46 ; 10.7851 5.2626 39.6167 -Arial.ttf 28 F 28.2207 42.0000 47 D 0.0031 34.4542 42.0000 -Arial.ttf 28 F 28.2207 42.0000 48 L 0.1172 25.8813 42.0000 -Arial.ttf 28 F 28.2207 42.0000 49 y 11.1747 28.0000 42.4960 -Arial.ttf 28 F 28.2207 42.0000 50 ‘ -0.1905 5.9231 14.0000 -Arial.ttf 28 F 28.2207 42.0000 51 \ 0.0716 17.5749 42.0000 -Arial.ttf 28 F 28.2207 42.0000 52 R -0.2036 36.7497 42.0000 -Arial.ttf 28 F 28.2207 42.0000 53 < 7.6409 27.8354 27.8704 -Arial.ttf 28 F 28.2207 42.0000 54 4 0.4270 28.3503 41.6897 -Arial.ttf 28 F 28.2207 42.0000 55 8 0.7118 26.6626 41.6897 -Arial.ttf 28 F 28.2207 42.0000 56 0 0.3046 26.8483 41.6897 -Arial.ttf 28 F 28.2207 42.0000 57 A -0.3172 40.5788 42.0000 -Arial.ttf 28 F 28.2207 42.0000 58 E -0.0286 31.4542 42.0000 -Arial.ttf 28 F 28.2207 42.0000 59 B 0.1087 31.4542 42.0000 -Arial.ttf 28 F 28.2207 42.0000 60 v 11.1357 27.8704 30.8793 -Arial.ttf 28 F 28.2207 42.0000 61 k 0.1023 25.1207 42.0000 -Arial.ttf 28 F 28.2207 42.0000 62 J 0.2746 24.0291 42.6606 -Arial.ttf 28 F 28.2207 42.0000 63 U 0.0966 32.9083 42.6606 -Arial.ttf 28 F 28.2207 42.0000 64 j 0.0452 12.3773 53.6167 -Arial.ttf 28 F 28.2207 42.0000 65 ( 0.2408 14.4103 53.6167 -Arial.ttf 28 F 28.2207 42.0000 66 7 0.3394 26.8523 41.6897 -Arial.ttf 28 F 28.2207 42.0000 67 § -0.0912 26.9729 53.9271 -Arial.ttf 28 F 28.2207 42.0000 68 $ -1.8785 27.6897 49.3355 -Arial.ttf 28 F 28.2207 42.0000 69 € -0.7296 33.0769 43.3212 -Arial.ttf 28 F 28.2207 42.0000 70 / -0.0121 17.5749 42.0000 -Arial.ttf 28 F 28.2207 42.0000 71 C -0.6141 36.0000 43.3212 -Arial.ttf 28 F 28.2207 42.0000 72 * -0.0960 20.3453 17.8852 -Arial.ttf 28 F 28.2207 42.0000 73 ” -0.0439 14.2296 14.0000 -Arial.ttf 28 F 28.2207 42.0000 74 ? 0.1351 26.8483 42.0000 -Arial.ttf 28 F 28.2207 42.0000 75 { -0.2674 16.7375 53.6167 -Arial.ttf 28 F 28.2207 42.0000 76 } -0.0371 16.7375 53.6167 -Arial.ttf 28 F 28.2207 42.0000 77 , 36.3788 5.2626 14.0000 -Arial.ttf 28 F 28.2207 42.0000 78 I -0.1867 5.6936 42.0000 -Arial.ttf 28 F 28.2207 42.0000 79 ° -0.0402 15.8083 15.8083 -Arial.ttf 28 F 28.2207 42.0000 80 K 0.0619 34.5749 42.0000 -Arial.ttf 28 F 28.2207 42.0000 81 H -0.2021 32.9083 42.0000 -Arial.ttf 28 F 28.2207 42.0000 82 q 9.7997 26.3123 43.6877 -Arial.ttf 28 F 28.2207 42.0000 83 & -0.4225 35.1148 42.3103 -Arial.ttf 28 F 28.2207 42.0000 84 ’ 0.2662 5.9231 14.0000 -Arial.ttf 28 F 28.2207 42.0000 85 [ -0.0644 11.0000 53.6167 -Arial.ttf 28 F 28.2207 42.0000 86 - 23.9965 15.4980 5.2626 -Arial.ttf 28 F 28.2207 42.0000 87 Y 0.0601 38.4601 42.0000 -Arial.ttf 28 F 28.2207 42.0000 88 Q -0.9915 39.5749 46.3212 -Arial.ttf 28 F 28.2207 42.0000 89 " -0.1256 15.8083 15.1916 -Arial.ttf 28 F 28.2207 42.0000 90 ! -0.1034 5.2626 42.0000 -Arial.ttf 28 F 28.2207 42.0000 91 x 11.0215 29.1060 30.8793 -Arial.ttf 28 F 28.2207 42.0000 92 ) -0.0303 14.4103 53.6167 -Arial.ttf 28 F 28.2207 42.0000 93 = 12.2188 27.8793 17.8852 -Arial.ttf 28 F 28.2207 42.0000 94 + 7.8672 27.8753 27.8753 -Arial.ttf 28 F 28.2207 42.0000 95 X -0.0260 37.6626 42.0000 -Arial.ttf 28 F 28.2207 42.0000 96 » 13.7217 25.0439 26.1917 -Arial.ttf 28 F 28.2207 42.0000 97 ' -0.2345 5.2626 15.1916 -Arial.ttf 28 F 28.2207 42.0000 98 ¢ 0.2019 25.7813 54.2685 -Arial.ttf 28 F 28.2207 42.0000 99 Z 0.1409 33.0729 42.0000 -Arial.ttf 28 F 28.2207 42.0000 100 > 7.8079 27.8354 27.8704 -Arial.ttf 28 F 28.2207 42.0000 101 ® -0.4920 43.1916 42.9709 -Arial.ttf 28 F 28.2207 42.0000 102 © -0.6526 43.1916 42.9709 -Arial.ttf 28 F 28.2207 42.0000 103 ] 0.0885 11.0000 53.6167 -Arial.ttf 28 F 28.2207 42.0000 104 é -1.2510 27.4690 43.5020 -Arial.ttf 28 F 28.2207 42.0000 105 z 11.1693 26.3123 30.8793 -Arial.ttf 28 F 28.2207 42.0000 106 _ 48.3806 33.3832 5.2626 -Arial.ttf 28 F 28.2207 42.0000 107 ¥ -0.0191 32.0291 42.0000 -Arial.ttf 29 S 33.0001 43.3212 1 t 0.5238 15.0709 42.3103 -Arial.ttf 29 S 33.0001 43.3212 2 h 0.9585 24.2793 42.0000 -Arial.ttf 29 S 33.0001 43.3212 3 a 10.5388 27.4690 32.3813 -Arial.ttf 29 S 33.0001 43.3212 4 n 10.3220 24.2793 32.0709 -Arial.ttf 29 S 33.0001 43.3212 5 P 0.7120 31.4542 42.0000 -Arial.ttf 29 S 33.0001 43.3212 6 o 10.9072 27.4690 32.3813 -Arial.ttf 29 S 33.0001 43.3212 7 e 10.4745 27.4690 32.3813 -Arial.ttf 29 S 33.0001 43.3212 8 : 11.6848 5.2626 30.8793 -Arial.ttf 29 S 33.0001 43.3212 9 r 10.6090 16.5689 32.0709 -Arial.ttf 29 S 33.0001 43.3212 10 l 0.8964 5.2626 42.0000 -Arial.ttf 29 S 33.0001 43.3212 11 i 0.6962 5.2626 42.0000 -Arial.ttf 29 S 33.0001 43.3212 12 1 1.3365 15.2355 41.6897 -Arial.ttf 29 S 33.0001 43.3212 13 | 0.4754 4.1916 54.4980 -Arial.ttf 29 S 33.0001 43.3212 14 N 0.9347 32.9083 42.0000 -Arial.ttf 29 S 33.0001 43.3212 15 f 0.7683 18.0709 42.0000 -Arial.ttf 29 S 33.0001 43.3212 16 g 10.3330 26.3123 43.6877 -Arial.ttf 29 S 33.0001 43.3212 17 d 0.3769 26.3123 42.3103 -Arial.ttf 29 S 33.0001 43.3212 18 W 0.8361 57.1916 42.0000 -Arial.ttf 29 S 33.0001 43.3212 19 s 10.6904 24.9561 32.3813 -Arial.ttf 29 S 33.0001 43.3212 20 c 10.5372 26.8084 32.3813 -Arial.ttf 29 S 33.0001 43.3212 21 u 11.8183 24.2793 31.1896 -Arial.ttf 29 S 33.0001 43.3212 22 3 1.1168 26.8483 41.6897 -Arial.ttf 29 S 33.0001 43.3212 23 ~ 17.5771 29.9083 10.9561 -Arial.ttf 29 S 33.0001 43.3212 24 # 0.4177 31.2646 42.0000 -Arial.ttf 29 S 33.0001 43.3212 25 O 0.1393 39.5749 43.3212 -Arial.ttf 29 S 33.0001 43.3212 26 ` 0.5529 10.9561 8.0769 -Arial.ttf 29 S 33.0001 43.3212 27 @ 0.5584 54.1478 54.3123 -Arial.ttf 29 S 33.0001 43.3212 28 F 0.6484 28.2207 42.0000 -Arial.ttf 29 S 33.0001 43.3212 29 S -0.0730 33.0001 43.3212 -Arial.ttf 29 S 33.0001 43.3212 30 p 10.6449 26.3123 43.6877 -Arial.ttf 29 S 33.0001 43.3212 31 “ 0.8260 13.5690 14.0000 -Arial.ttf 29 S 33.0001 43.3212 32 % 0.7173 44.8793 42.3103 -Arial.ttf 29 S 33.0001 43.3212 33 £ 0.6170 29.8522 42.3103 -Arial.ttf 29 S 33.0001 43.3212 34 . 37.6365 5.2626 5.2626 -Arial.ttf 29 S 33.0001 43.3212 35 2 1.1226 28.6956 41.6897 -Arial.ttf 29 S 33.0001 43.3212 36 5 1.2010 26.8483 41.6897 -Arial.ttf 29 S 33.0001 43.3212 37 m 10.5410 41.4044 32.0709 -Arial.ttf 29 S 33.0001 43.3212 38 V 0.6303 40.5788 42.0000 -Arial.ttf 29 S 33.0001 43.3212 39 6 0.9740 27.8542 41.6897 -Arial.ttf 29 S 33.0001 43.3212 40 w 11.8172 43.4212 30.8793 -Arial.ttf 29 S 33.0001 43.3212 41 T 0.8244 33.6936 42.0000 -Arial.ttf 29 S 33.0001 43.3212 42 M 0.7694 40.5788 42.0000 -Arial.ttf 29 S 33.0001 43.3212 43 G 0.1490 38.6897 43.3212 -Arial.ttf 29 S 33.0001 43.3212 44 b 0.9707 26.3123 42.3103 -Arial.ttf 29 S 33.0001 43.3212 45 9 0.9740 26.8483 41.6897 -Arial.ttf 29 S 33.0001 43.3212 46 ; 11.9105 5.2626 39.6167 -Arial.ttf 29 S 33.0001 43.3212 47 D 1.0044 34.4542 42.0000 -Arial.ttf 29 S 33.0001 43.3212 48 L 0.6691 25.8813 42.0000 -Arial.ttf 29 S 33.0001 43.3212 49 y 11.8339 28.0000 42.4960 -Arial.ttf 29 S 33.0001 43.3212 50 ‘ 0.8137 5.9231 14.0000 -Arial.ttf 29 S 33.0001 43.3212 51 \ 0.8054 17.5749 42.0000 -Arial.ttf 29 S 33.0001 43.3212 52 R 0.6616 36.7497 42.0000 -Arial.ttf 29 S 33.0001 43.3212 53 < 8.1980 27.8354 27.8704 -Arial.ttf 29 S 33.0001 43.3212 54 4 0.8936 28.3503 41.6897 -Arial.ttf 29 S 33.0001 43.3212 55 8 1.1888 26.6626 41.6897 -Arial.ttf 29 S 33.0001 43.3212 56 0 1.1949 26.8483 41.6897 -Arial.ttf 29 S 33.0001 43.3212 57 A 0.8207 40.5788 42.0000 -Arial.ttf 29 S 33.0001 43.3212 58 E 0.4384 31.4542 42.0000 -Arial.ttf 29 S 33.0001 43.3212 59 B 0.8508 31.4542 42.0000 -Arial.ttf 29 S 33.0001 43.3212 60 v 11.5666 27.8704 30.8793 -Arial.ttf 29 S 33.0001 43.3212 61 k 0.5487 25.1207 42.0000 -Arial.ttf 29 S 33.0001 43.3212 62 J 0.8770 24.0291 42.6606 -Arial.ttf 29 S 33.0001 43.3212 63 U 0.4771 32.9083 42.6606 -Arial.ttf 29 S 33.0001 43.3212 64 j 1.0262 12.3773 53.6167 -Arial.ttf 29 S 33.0001 43.3212 65 ( 0.5721 14.4103 53.6167 -Arial.ttf 29 S 33.0001 43.3212 66 7 1.1391 26.8523 41.6897 -Arial.ttf 29 S 33.0001 43.3212 67 § 0.7694 26.9729 53.9271 -Arial.ttf 29 S 33.0001 43.3212 68 $ -1.5432 27.6897 49.3355 -Arial.ttf 29 S 33.0001 43.3212 69 € -0.0649 33.0769 43.3212 -Arial.ttf 29 S 33.0001 43.3212 70 / 0.4261 17.5749 42.0000 -Arial.ttf 29 S 33.0001 43.3212 71 C -0.1213 36.0000 43.3212 -Arial.ttf 29 S 33.0001 43.3212 72 * 0.7778 20.3453 17.8852 -Arial.ttf 29 S 33.0001 43.3212 73 ” 0.6039 14.2296 14.0000 -Arial.ttf 29 S 33.0001 43.3212 74 ? 0.6335 26.8483 42.0000 -Arial.ttf 29 S 33.0001 43.3212 75 { 0.6495 16.7375 53.6167 -Arial.ttf 29 S 33.0001 43.3212 76 } 0.3796 16.7375 53.6167 -Arial.ttf 29 S 33.0001 43.3212 77 , 37.5178 5.2626 14.0000 -Arial.ttf 29 S 33.0001 43.3212 78 I 0.6093 5.6936 42.0000 -Arial.ttf 29 S 33.0001 43.3212 79 ° 0.4924 15.8083 15.8083 -Arial.ttf 29 S 33.0001 43.3212 80 K 0.5465 34.5749 42.0000 -Arial.ttf 29 S 33.0001 43.3212 81 H 0.6951 32.9083 42.0000 -Arial.ttf 29 S 33.0001 43.3212 82 q 10.6953 26.3123 43.6877 -Arial.ttf 29 S 33.0001 43.3212 83 & 0.4721 35.1148 42.3103 -Arial.ttf 29 S 33.0001 43.3212 84 ’ 0.6951 5.9231 14.0000 -Arial.ttf 29 S 33.0001 43.3212 85 [ 0.7403 11.0000 53.6167 -Arial.ttf 29 S 33.0001 43.3212 86 - 25.1209 15.4980 5.2626 -Arial.ttf 29 S 33.0001 43.3212 87 Y 0.6824 38.4601 42.0000 -Arial.ttf 29 S 33.0001 43.3212 88 Q 0.1253 39.5749 46.3212 -Arial.ttf 29 S 33.0001 43.3212 89 " 0.8176 15.8083 15.1916 -Arial.ttf 29 S 33.0001 43.3212 90 ! 0.4882 5.2626 42.0000 -Arial.ttf 29 S 33.0001 43.3212 91 x 11.8129 29.1060 30.8793 -Arial.ttf 29 S 33.0001 43.3212 92 ) 0.8755 14.4103 53.6167 -Arial.ttf 29 S 33.0001 43.3212 93 = 12.6115 27.8793 17.8852 -Arial.ttf 29 S 33.0001 43.3212 94 + 7.9900 27.8753 27.8753 -Arial.ttf 29 S 33.0001 43.3212 95 X 0.6445 37.6626 42.0000 -Arial.ttf 29 S 33.0001 43.3212 96 » 14.7579 25.0439 26.1917 -Arial.ttf 29 S 33.0001 43.3212 97 ' 0.7597 5.2626 15.1916 -Arial.ttf 29 S 33.0001 43.3212 98 ¢ 0.5617 25.7813 54.2685 -Arial.ttf 29 S 33.0001 43.3212 99 Z 0.6782 33.0729 42.0000 -Arial.ttf 29 S 33.0001 43.3212 100 > 8.2082 27.8354 27.8704 -Arial.ttf 29 S 33.0001 43.3212 101 ® -0.1061 43.1916 42.9709 -Arial.ttf 29 S 33.0001 43.3212 102 © -0.0991 43.1916 42.9709 -Arial.ttf 29 S 33.0001 43.3212 103 ] 0.4861 11.0000 53.6167 -Arial.ttf 29 S 33.0001 43.3212 104 é -0.7888 27.4690 43.5020 -Arial.ttf 29 S 33.0001 43.3212 105 z 12.1376 26.3123 30.8793 -Arial.ttf 29 S 33.0001 43.3212 106 _ 48.7709 33.3832 5.2626 -Arial.ttf 29 S 33.0001 43.3212 107 ¥ 0.5724 32.0291 42.0000 -Arial.ttf 30 p 26.3123 43.6877 1 t -10.1031 15.0709 42.3103 -Arial.ttf 30 p 26.3123 43.6877 2 h -10.1233 24.2793 42.0000 -Arial.ttf 30 p 26.3123 43.6877 3 a 0.0966 27.4690 32.3813 -Arial.ttf 30 p 26.3123 43.6877 4 n 0.0054 24.2793 32.0709 -Arial.ttf 30 p 26.3123 43.6877 5 P -9.8172 31.4542 42.0000 -Arial.ttf 30 p 26.3123 43.6877 6 o -0.2536 27.4690 32.3813 -Arial.ttf 30 p 26.3123 43.6877 7 e -0.0027 27.4690 32.3813 -Arial.ttf 30 p 26.3123 43.6877 8 : 1.0029 5.2626 30.8793 -Arial.ttf 30 p 26.3123 43.6877 9 r -0.0456 16.5689 32.0709 -Arial.ttf 30 p 26.3123 43.6877 10 l -9.9737 5.2626 42.0000 -Arial.ttf 30 p 26.3123 43.6877 11 i -9.8999 5.2626 42.0000 -Arial.ttf 30 p 26.3123 43.6877 12 1 -9.6049 15.2355 41.6897 -Arial.ttf 30 p 26.3123 43.6877 13 | -9.8463 4.1916 54.4980 -Arial.ttf 30 p 26.3123 43.6877 14 N -10.1087 32.9083 42.0000 -Arial.ttf 30 p 26.3123 43.6877 15 f -10.0919 18.0709 42.0000 -Arial.ttf 30 p 26.3123 43.6877 16 g 0.1448 26.3123 43.6877 -Arial.ttf 30 p 26.3123 43.6877 17 d -10.1582 26.3123 42.3103 -Arial.ttf 30 p 26.3123 43.6877 18 W -10.1363 57.1916 42.0000 -Arial.ttf 30 p 26.3123 43.6877 19 s -0.3145 24.9561 32.3813 -Arial.ttf 30 p 26.3123 43.6877 20 c 0.0621 26.8084 32.3813 -Arial.ttf 30 p 26.3123 43.6877 21 u 1.2204 24.2793 31.1896 -Arial.ttf 30 p 26.3123 43.6877 22 3 -9.4337 26.8483 41.6897 -Arial.ttf 30 p 26.3123 43.6877 23 ~ 7.2743 29.9083 10.9561 -Arial.ttf 30 p 26.3123 43.6877 24 # -9.8146 31.2646 42.0000 -Arial.ttf 30 p 26.3123 43.6877 25 O -10.2847 39.5749 43.3212 -Arial.ttf 30 p 26.3123 43.6877 26 ` -9.7287 10.9561 8.0769 -Arial.ttf 30 p 26.3123 43.6877 27 @ -10.1455 54.1478 54.3123 -Arial.ttf 30 p 26.3123 43.6877 28 F -10.1953 28.2207 42.0000 -Arial.ttf 30 p 26.3123 43.6877 29 S -10.7467 33.0001 43.3212 -Arial.ttf 30 p 26.3123 43.6877 30 p 0.0297 26.3123 43.6877 -Arial.ttf 30 p 26.3123 43.6877 31 “ -9.9126 13.5690 14.0000 -Arial.ttf 30 p 26.3123 43.6877 32 % -10.0256 44.8793 42.3103 -Arial.ttf 30 p 26.3123 43.6877 33 £ -10.0766 29.8522 42.3103 -Arial.ttf 30 p 26.3123 43.6877 34 . 26.4716 5.2626 5.2626 -Arial.ttf 30 p 26.3123 43.6877 35 2 -9.6022 28.6956 41.6897 -Arial.ttf 30 p 26.3123 43.6877 36 5 -9.3732 26.8483 41.6897 -Arial.ttf 30 p 26.3123 43.6877 37 m 0.0716 41.4044 32.0709 -Arial.ttf 30 p 26.3123 43.6877 38 V -9.8973 40.5788 42.0000 -Arial.ttf 30 p 26.3123 43.6877 39 6 -9.5812 27.8542 41.6897 -Arial.ttf 30 p 26.3123 43.6877 40 w 1.3533 43.4212 30.8793 -Arial.ttf 30 p 26.3123 43.6877 41 T -9.7759 33.6936 42.0000 -Arial.ttf 30 p 26.3123 43.6877 42 M -9.9963 40.5788 42.0000 -Arial.ttf 30 p 26.3123 43.6877 43 G -10.9015 38.6897 43.3212 -Arial.ttf 30 p 26.3123 43.6877 44 b -9.7122 26.3123 42.3103 -Arial.ttf 30 p 26.3123 43.6877 45 9 -9.6212 26.8483 41.6897 -Arial.ttf 30 p 26.3123 43.6877 46 ; 1.0274 5.2626 39.6167 -Arial.ttf 30 p 26.3123 43.6877 47 D -9.7922 34.4542 42.0000 -Arial.ttf 30 p 26.3123 43.6877 48 L -9.8889 25.8813 42.0000 -Arial.ttf 30 p 26.3123 43.6877 49 y 1.1625 28.0000 42.4960 -Arial.ttf 30 p 26.3123 43.6877 50 ‘ -10.1683 5.9231 14.0000 -Arial.ttf 30 p 26.3123 43.6877 51 \ -9.7705 17.5749 42.0000 -Arial.ttf 30 p 26.3123 43.6877 52 R -9.9313 36.7497 42.0000 -Arial.ttf 30 p 26.3123 43.6877 53 < -2.2904 27.8354 27.8704 -Arial.ttf 30 p 26.3123 43.6877 54 4 -9.7498 28.3503 41.6897 -Arial.ttf 30 p 26.3123 43.6877 55 8 -9.9957 26.6626 41.6897 -Arial.ttf 30 p 26.3123 43.6877 56 0 -9.7746 26.8483 41.6897 -Arial.ttf 30 p 26.3123 43.6877 57 A -9.8835 40.5788 42.0000 -Arial.ttf 30 p 26.3123 43.6877 58 E -10.0908 31.4542 42.0000 -Arial.ttf 30 p 26.3123 43.6877 59 B -9.8645 31.4542 42.0000 -Arial.ttf 30 p 26.3123 43.6877 60 v 1.2426 27.8704 30.8793 -Arial.ttf 30 p 26.3123 43.6877 61 k -9.8660 25.1207 42.0000 -Arial.ttf 30 p 26.3123 43.6877 62 J -9.9088 24.0291 42.6606 -Arial.ttf 30 p 26.3123 43.6877 63 U -9.9128 32.9083 42.6606 -Arial.ttf 30 p 26.3123 43.6877 64 j -9.8601 12.3773 53.6167 -Arial.ttf 30 p 26.3123 43.6877 65 ( -9.7345 14.4103 53.6167 -Arial.ttf 30 p 26.3123 43.6877 66 7 -9.6588 26.8523 41.6897 -Arial.ttf 30 p 26.3123 43.6877 67 § -10.2408 26.9729 53.9271 -Arial.ttf 30 p 26.3123 43.6877 68 $ -11.7399 27.6897 49.3355 -Arial.ttf 30 p 26.3123 43.6877 69 € -10.6410 33.0769 43.3212 -Arial.ttf 30 p 26.3123 43.6877 70 / -9.9169 17.5749 42.0000 -Arial.ttf 30 p 26.3123 43.6877 71 C -10.6369 36.0000 43.3212 -Arial.ttf 30 p 26.3123 43.6877 72 * -9.8808 20.3453 17.8852 -Arial.ttf 30 p 26.3123 43.6877 73 ” -9.6237 14.2296 14.0000 -Arial.ttf 30 p 26.3123 43.6877 74 ? -10.0315 26.8483 42.0000 -Arial.ttf 30 p 26.3123 43.6877 75 { -9.9980 16.7375 53.6167 -Arial.ttf 30 p 26.3123 43.6877 76 } -10.0118 16.7375 53.6167 -Arial.ttf 30 p 26.3123 43.6877 77 , 26.8539 5.2626 14.0000 -Arial.ttf 30 p 26.3123 43.6877 78 I -9.9578 5.6936 42.0000 -Arial.ttf 30 p 26.3123 43.6877 79 ° -9.8724 15.8083 15.8083 -Arial.ttf 30 p 26.3123 43.6877 80 K -10.1317 34.5749 42.0000 -Arial.ttf 30 p 26.3123 43.6877 81 H -9.9514 32.9083 42.0000 -Arial.ttf 30 p 26.3123 43.6877 82 q -0.1810 26.3123 43.6877 -Arial.ttf 30 p 26.3123 43.6877 83 & -9.9774 35.1148 42.3103 -Arial.ttf 30 p 26.3123 43.6877 84 ’ -10.0669 5.9231 14.0000 -Arial.ttf 30 p 26.3123 43.6877 85 [ -9.8325 11.0000 53.6167 -Arial.ttf 30 p 26.3123 43.6877 86 - 14.5927 15.4980 5.2626 -Arial.ttf 30 p 26.3123 43.6877 87 Y -10.0861 38.4601 42.0000 -Arial.ttf 30 p 26.3123 43.6877 88 Q -10.5484 39.5749 46.3212 -Arial.ttf 30 p 26.3123 43.6877 89 " -9.8656 15.8083 15.1916 -Arial.ttf 30 p 26.3123 43.6877 90 ! -10.0321 5.2626 42.0000 -Arial.ttf 30 p 26.3123 43.6877 91 x 1.1916 29.1060 30.8793 -Arial.ttf 30 p 26.3123 43.6877 92 ) -9.8649 14.4103 53.6167 -Arial.ttf 30 p 26.3123 43.6877 93 = 2.1261 27.8793 17.8852 -Arial.ttf 30 p 26.3123 43.6877 94 + -2.4330 27.8753 27.8753 -Arial.ttf 30 p 26.3123 43.6877 95 X -9.7307 37.6626 42.0000 -Arial.ttf 30 p 26.3123 43.6877 96 » 4.0504 25.0439 26.1917 -Arial.ttf 30 p 26.3123 43.6877 97 ' -9.7606 5.2626 15.1916 -Arial.ttf 30 p 26.3123 43.6877 98 ¢ -9.9984 25.7813 54.2685 -Arial.ttf 30 p 26.3123 43.6877 99 Z -9.7473 33.0729 42.0000 -Arial.ttf 30 p 26.3123 43.6877 100 > -2.5350 27.8354 27.8704 -Arial.ttf 30 p 26.3123 43.6877 101 ® -10.5803 43.1916 42.9709 -Arial.ttf 30 p 26.3123 43.6877 102 © -10.6903 43.1916 42.9709 -Arial.ttf 30 p 26.3123 43.6877 103 ] -10.0176 11.0000 53.6167 -Arial.ttf 30 p 26.3123 43.6877 104 é -11.1897 27.4690 43.5020 -Arial.ttf 30 p 26.3123 43.6877 105 z 1.3174 26.3123 30.8793 -Arial.ttf 30 p 26.3123 43.6877 106 _ 38.4542 33.3832 5.2626 -Arial.ttf 30 p 26.3123 43.6877 107 ¥ -9.7678 32.0291 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 1 t 0.4141 15.0709 42.3103 -Arial.ttf 31 “ 13.5690 14.0000 2 h 0.0047 24.2793 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 3 a 9.7430 27.4690 32.3813 -Arial.ttf 31 “ 13.5690 14.0000 4 n 9.9248 24.2793 32.0709 -Arial.ttf 31 “ 13.5690 14.0000 5 P -0.0192 31.4542 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 6 o 10.0118 27.4690 32.3813 -Arial.ttf 31 “ 13.5690 14.0000 7 e 9.9197 27.4690 32.3813 -Arial.ttf 31 “ 13.5690 14.0000 8 : 11.3000 5.2626 30.8793 -Arial.ttf 31 “ 13.5690 14.0000 9 r 9.5774 16.5689 32.0709 -Arial.ttf 31 “ 13.5690 14.0000 10 l -0.0304 5.2626 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 11 i -0.0345 5.2626 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 12 1 0.1962 15.2355 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 13 | 0.1463 4.1916 54.4980 -Arial.ttf 31 “ 13.5690 14.0000 14 N 0.0249 32.9083 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 15 f -0.0192 18.0709 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 16 g 10.0007 26.3123 43.6877 -Arial.ttf 31 “ 13.5690 14.0000 17 d -0.0616 26.3123 42.3103 -Arial.ttf 31 “ 13.5690 14.0000 18 W -0.1337 57.1916 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 19 s 9.9291 24.9561 32.3813 -Arial.ttf 31 “ 13.5690 14.0000 20 c 9.8256 26.8084 32.3813 -Arial.ttf 31 “ 13.5690 14.0000 21 u 11.1265 24.2793 31.1896 -Arial.ttf 31 “ 13.5690 14.0000 22 3 0.3793 26.8483 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 23 ~ 16.8506 29.9083 10.9561 -Arial.ttf 31 “ 13.5690 14.0000 24 # -0.0345 31.2646 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 25 O -0.3691 39.5749 43.3212 -Arial.ttf 31 “ 13.5690 14.0000 26 ` 0.0069 10.9561 8.0769 -Arial.ttf 31 “ 13.5690 14.0000 27 @ -0.0747 54.1478 54.3123 -Arial.ttf 31 “ 13.5690 14.0000 28 F 0.0138 28.2207 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 29 S -0.6798 33.0001 43.3212 -Arial.ttf 31 “ 13.5690 14.0000 30 p 9.9784 26.3123 43.6877 -Arial.ttf 31 “ 13.5690 14.0000 31 “ 0.0345 13.5690 14.0000 -Arial.ttf 31 “ 13.5690 14.0000 32 % 0.2301 44.8793 42.3103 -Arial.ttf 31 “ 13.5690 14.0000 33 £ -0.0238 29.8522 42.3103 -Arial.ttf 31 “ 13.5690 14.0000 34 . 36.8340 5.2626 5.2626 -Arial.ttf 31 “ 13.5690 14.0000 35 2 0.0648 28.6956 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 36 5 0.4096 26.8483 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 37 m 9.8034 41.4044 32.0709 -Arial.ttf 31 “ 13.5690 14.0000 38 V -0.1082 40.5788 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 39 6 0.2276 27.8542 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 40 w 10.8630 43.4212 30.8793 -Arial.ttf 31 “ 13.5690 14.0000 41 T -0.1517 33.6936 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 42 M 0.0652 40.5788 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 43 G -0.6442 38.6897 43.3212 -Arial.ttf 31 “ 13.5690 14.0000 44 b -0.1554 26.3123 42.3103 -Arial.ttf 31 “ 13.5690 14.0000 45 9 0.2192 26.8483 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 46 ; 11.3109 5.2626 39.6167 -Arial.ttf 31 “ 13.5690 14.0000 47 D 0.1550 34.4542 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 48 L -0.0483 25.8813 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 49 y 11.0809 28.0000 42.4960 -Arial.ttf 31 “ 13.5690 14.0000 50 ‘ -0.1145 5.9231 14.0000 -Arial.ttf 31 “ 13.5690 14.0000 51 \ 0.0069 17.5749 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 52 R 0.0138 36.7497 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 53 < 7.6795 27.8354 27.8704 -Arial.ttf 31 “ 13.5690 14.0000 54 4 0.3241 28.3503 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 55 8 0.3279 26.6626 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 56 0 0.2950 26.8483 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 57 A 0.0276 40.5788 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 58 E -0.0774 31.4542 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 59 B 0.0163 31.4542 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 60 v 11.2984 27.8704 30.8793 -Arial.ttf 31 “ 13.5690 14.0000 61 k -0.1851 25.1207 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 62 J -0.1682 24.0291 42.6606 -Arial.ttf 31 “ 13.5690 14.0000 63 U 0.0292 32.9083 42.6606 -Arial.ttf 31 “ 13.5690 14.0000 64 j 0.0000 12.3773 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 65 ( 0.0690 14.4103 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 66 7 0.1100 26.8523 41.6897 -Arial.ttf 31 “ 13.5690 14.0000 67 § 0.1624 26.9729 53.9271 -Arial.ttf 31 “ 13.5690 14.0000 68 $ -2.1419 27.6897 49.3355 -Arial.ttf 31 “ 13.5690 14.0000 69 € -0.7862 33.0769 43.3212 -Arial.ttf 31 “ 13.5690 14.0000 70 / -0.1146 17.5749 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 71 C -0.6977 36.0000 43.3212 -Arial.ttf 31 “ 13.5690 14.0000 72 * 0.2762 20.3453 17.8852 -Arial.ttf 31 “ 13.5690 14.0000 73 ” 0.1772 14.2296 14.0000 -Arial.ttf 31 “ 13.5690 14.0000 74 ? -0.0094 26.8483 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 75 { 0.4469 16.7375 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 76 } 0.0509 16.7375 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 77 , 36.8111 5.2626 14.0000 -Arial.ttf 31 “ 13.5690 14.0000 78 I 0.2815 5.6936 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 79 ° -0.0961 15.8083 15.8083 -Arial.ttf 31 “ 13.5690 14.0000 80 K -0.0345 34.5749 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 81 H -0.0509 32.9083 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 82 q 9.8391 26.3123 43.6877 -Arial.ttf 31 “ 13.5690 14.0000 83 & 0.0314 35.1148 42.3103 -Arial.ttf 31 “ 13.5690 14.0000 84 ’ 0.1272 5.9231 14.0000 -Arial.ttf 31 “ 13.5690 14.0000 85 [ 0.0609 11.0000 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 86 - 24.1329 15.4980 5.2626 -Arial.ttf 31 “ 13.5690 14.0000 87 Y 0.1172 38.4601 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 88 Q -0.6633 39.5749 46.3212 -Arial.ttf 31 “ 13.5690 14.0000 89 " -0.1828 15.8083 15.1916 -Arial.ttf 31 “ 13.5690 14.0000 90 ! -0.2179 5.2626 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 91 x 11.0491 29.1060 30.8793 -Arial.ttf 31 “ 13.5690 14.0000 92 ) 0.2247 14.4103 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 93 = 11.7369 27.8793 17.8852 -Arial.ttf 31 “ 13.5690 14.0000 94 + 7.6891 27.8753 27.8753 -Arial.ttf 31 “ 13.5690 14.0000 95 X 0.0192 37.6626 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 96 » 13.9752 25.0439 26.1917 -Arial.ttf 31 “ 13.5690 14.0000 97 ' -0.0685 5.2626 15.1916 -Arial.ttf 31 “ 13.5690 14.0000 98 ¢ -0.0241 25.7813 54.2685 -Arial.ttf 31 “ 13.5690 14.0000 99 Z 0.1324 33.0729 42.0000 -Arial.ttf 31 “ 13.5690 14.0000 100 > 7.5596 27.8354 27.8704 -Arial.ttf 31 “ 13.5690 14.0000 101 ® -0.6606 43.1916 42.9709 -Arial.ttf 31 “ 13.5690 14.0000 102 © -0.8636 43.1916 42.9709 -Arial.ttf 31 “ 13.5690 14.0000 103 ] 0.0966 11.0000 53.6167 -Arial.ttf 31 “ 13.5690 14.0000 104 é -1.3725 27.4690 43.5020 -Arial.ttf 31 “ 13.5690 14.0000 105 z 11.2433 26.3123 30.8793 -Arial.ttf 31 “ 13.5690 14.0000 106 _ 48.1255 33.3832 5.2626 -Arial.ttf 31 “ 13.5690 14.0000 107 ¥ 0.0276 32.0291 42.0000 -Arial.ttf 32 % 44.8793 42.3103 1 t 0.1915 15.0709 42.3103 -Arial.ttf 32 % 44.8793 42.3103 2 h 0.0563 24.2793 42.0000 -Arial.ttf 32 % 44.8793 42.3103 3 a 10.1064 27.4690 32.3813 -Arial.ttf 32 % 44.8793 42.3103 4 n 10.0648 24.2793 32.0709 -Arial.ttf 32 % 44.8793 42.3103 5 P -0.1119 31.4542 42.0000 -Arial.ttf 32 % 44.8793 42.3103 6 o 10.1746 27.4690 32.3813 -Arial.ttf 32 % 44.8793 42.3103 7 e 9.8632 27.4690 32.3813 -Arial.ttf 32 % 44.8793 42.3103 8 : 10.9632 5.2626 30.8793 -Arial.ttf 32 % 44.8793 42.3103 9 r 9.7916 16.5689 32.0709 -Arial.ttf 32 % 44.8793 42.3103 10 l -0.3168 5.2626 42.0000 -Arial.ttf 32 % 44.8793 42.3103 11 i -0.0705 5.2626 42.0000 -Arial.ttf 32 % 44.8793 42.3103 12 1 0.4502 15.2355 41.6897 -Arial.ttf 32 % 44.8793 42.3103 13 | 0.2690 4.1916 54.4980 -Arial.ttf 32 % 44.8793 42.3103 14 N 0.0577 32.9083 42.0000 -Arial.ttf 32 % 44.8793 42.3103 15 f 0.1197 18.0709 42.0000 -Arial.ttf 32 % 44.8793 42.3103 16 g 10.1105 26.3123 43.6877 -Arial.ttf 32 % 44.8793 42.3103 17 d -0.3394 26.3123 42.3103 -Arial.ttf 32 % 44.8793 42.3103 18 W -0.0598 57.1916 42.0000 -Arial.ttf 32 % 44.8793 42.3103 19 s 9.7870 24.9561 32.3813 -Arial.ttf 32 % 44.8793 42.3103 20 c 10.1498 26.8084 32.3813 -Arial.ttf 32 % 44.8793 42.3103 21 u 10.9537 24.2793 31.1896 -Arial.ttf 32 % 44.8793 42.3103 22 3 0.2392 26.8483 41.6897 -Arial.ttf 32 % 44.8793 42.3103 23 ~ 16.6623 29.9083 10.9561 -Arial.ttf 32 % 44.8793 42.3103 24 # 0.3240 31.2646 42.0000 -Arial.ttf 32 % 44.8793 42.3103 25 O -0.6032 39.5749 43.3212 -Arial.ttf 32 % 44.8793 42.3103 26 ` 0.0556 10.9561 8.0769 -Arial.ttf 32 % 44.8793 42.3103 27 @ -0.1114 54.1478 54.3123 -Arial.ttf 32 % 44.8793 42.3103 28 F 0.2577 28.2207 42.0000 -Arial.ttf 32 % 44.8793 42.3103 29 S -0.4842 33.0001 43.3212 -Arial.ttf 32 % 44.8793 42.3103 30 p 9.9223 26.3123 43.6877 -Arial.ttf 32 % 44.8793 42.3103 31 “ -0.0531 13.5690 14.0000 -Arial.ttf 32 % 44.8793 42.3103 32 % 0.1571 44.8793 42.3103 -Arial.ttf 32 % 44.8793 42.3103 33 £ -0.0908 29.8522 42.3103 -Arial.ttf 32 % 44.8793 42.3103 34 . 36.7999 5.2626 5.2626 -Arial.ttf 32 % 44.8793 42.3103 35 2 0.3501 28.6956 41.6897 -Arial.ttf 32 % 44.8793 42.3103 36 5 0.0553 26.8483 41.6897 -Arial.ttf 32 % 44.8793 42.3103 37 m 9.9216 41.4044 32.0709 -Arial.ttf 32 % 44.8793 42.3103 38 V -0.2291 40.5788 42.0000 -Arial.ttf 32 % 44.8793 42.3103 39 6 0.3457 27.8542 41.6897 -Arial.ttf 32 % 44.8793 42.3103 40 w 10.9584 43.4212 30.8793 -Arial.ttf 32 % 44.8793 42.3103 41 T 0.0409 33.6936 42.0000 -Arial.ttf 32 % 44.8793 42.3103 42 M -0.3145 40.5788 42.0000 -Arial.ttf 32 % 44.8793 42.3103 43 G -0.8862 38.6897 43.3212 -Arial.ttf 32 % 44.8793 42.3103 44 b 0.0701 26.3123 42.3103 -Arial.ttf 32 % 44.8793 42.3103 45 9 0.2598 26.8483 41.6897 -Arial.ttf 32 % 44.8793 42.3103 46 ; 11.0403 5.2626 39.6167 -Arial.ttf 32 % 44.8793 42.3103 47 D 0.0292 34.4542 42.0000 -Arial.ttf 32 % 44.8793 42.3103 48 L -0.1401 25.8813 42.0000 -Arial.ttf 32 % 44.8793 42.3103 49 y 11.0761 28.0000 42.4960 -Arial.ttf 32 % 44.8793 42.3103 50 ‘ -0.0370 5.9231 14.0000 -Arial.ttf 32 % 44.8793 42.3103 51 \ 0.1506 17.5749 42.0000 -Arial.ttf 32 % 44.8793 42.3103 52 R -0.0176 36.7497 42.0000 -Arial.ttf 32 % 44.8793 42.3103 53 < 7.5720 27.8354 27.8704 -Arial.ttf 32 % 44.8793 42.3103 54 4 0.1985 28.3503 41.6897 -Arial.ttf 32 % 44.8793 42.3103 55 8 0.1598 26.6626 41.6897 -Arial.ttf 32 % 44.8793 42.3103 56 0 0.4126 26.8483 41.6897 -Arial.ttf 32 % 44.8793 42.3103 57 A -0.1409 40.5788 42.0000 -Arial.ttf 32 % 44.8793 42.3103 58 E 0.3792 31.4542 42.0000 -Arial.ttf 32 % 44.8793 42.3103 59 B -0.1571 31.4542 42.0000 -Arial.ttf 32 % 44.8793 42.3103 60 v 10.9282 27.8704 30.8793 -Arial.ttf 32 % 44.8793 42.3103 61 k 0.0686 25.1207 42.0000 -Arial.ttf 32 % 44.8793 42.3103 62 J -0.0881 24.0291 42.6606 -Arial.ttf 32 % 44.8793 42.3103 63 U 0.0376 32.9083 42.6606 -Arial.ttf 32 % 44.8793 42.3103 64 j 0.1851 12.3773 53.6167 -Arial.ttf 32 % 44.8793 42.3103 65 ( 0.2854 14.4103 53.6167 -Arial.ttf 32 % 44.8793 42.3103 66 7 0.5515 26.8523 41.6897 -Arial.ttf 32 % 44.8793 42.3103 67 § -0.1686 26.9729 53.9271 -Arial.ttf 32 % 44.8793 42.3103 68 $ -2.1490 27.6897 49.3355 -Arial.ttf 32 % 44.8793 42.3103 69 € -0.8235 33.0769 43.3212 -Arial.ttf 32 % 44.8793 42.3103 70 / 0.3003 17.5749 42.0000 -Arial.ttf 32 % 44.8793 42.3103 71 C -0.8113 36.0000 43.3212 -Arial.ttf 32 % 44.8793 42.3103 72 * 0.4084 20.3453 17.8852 -Arial.ttf 32 % 44.8793 42.3103 73 ” 0.1586 14.2296 14.0000 -Arial.ttf 32 % 44.8793 42.3103 74 ? -0.2009 26.8483 42.0000 -Arial.ttf 32 % 44.8793 42.3103 75 { -0.0025 16.7375 53.6167 -Arial.ttf 32 % 44.8793 42.3103 76 } -0.3946 16.7375 53.6167 -Arial.ttf 32 % 44.8793 42.3103 77 , 37.0945 5.2626 14.0000 -Arial.ttf 32 % 44.8793 42.3103 78 I -0.1225 5.6936 42.0000 -Arial.ttf 32 % 44.8793 42.3103 79 ° 0.1131 15.8083 15.8083 -Arial.ttf 32 % 44.8793 42.3103 80 K -0.1425 34.5749 42.0000 -Arial.ttf 32 % 44.8793 42.3103 81 H 0.1914 32.9083 42.0000 -Arial.ttf 32 % 44.8793 42.3103 82 q 9.9195 26.3123 43.6877 -Arial.ttf 32 % 44.8793 42.3103 83 & -0.0113 35.1148 42.3103 -Arial.ttf 32 % 44.8793 42.3103 84 ’ -0.0223 5.9231 14.0000 -Arial.ttf 32 % 44.8793 42.3103 85 [ 0.3527 11.0000 53.6167 -Arial.ttf 32 % 44.8793 42.3103 86 - 24.3429 15.4980 5.2626 -Arial.ttf 32 % 44.8793 42.3103 87 Y -0.3065 38.4601 42.0000 -Arial.ttf 32 % 44.8793 42.3103 88 Q -0.2264 39.5749 46.3212 -Arial.ttf 32 % 44.8793 42.3103 89 " -0.1946 15.8083 15.1916 -Arial.ttf 32 % 44.8793 42.3103 90 ! -0.1072 5.2626 42.0000 -Arial.ttf 32 % 44.8793 42.3103 91 x 11.0682 29.1060 30.8793 -Arial.ttf 32 % 44.8793 42.3103 92 ) 0.0642 14.4103 53.6167 -Arial.ttf 32 % 44.8793 42.3103 93 = 11.8632 27.8793 17.8852 -Arial.ttf 32 % 44.8793 42.3103 94 + 7.7610 27.8753 27.8753 -Arial.ttf 32 % 44.8793 42.3103 95 X -0.2333 37.6626 42.0000 -Arial.ttf 32 % 44.8793 42.3103 96 » 13.6347 25.0439 26.1917 -Arial.ttf 32 % 44.8793 42.3103 97 ' 0.3114 5.2626 15.1916 -Arial.ttf 32 % 44.8793 42.3103 98 ¢ -0.1062 25.7813 54.2685 -Arial.ttf 32 % 44.8793 42.3103 99 Z 0.1952 33.0729 42.0000 -Arial.ttf 32 % 44.8793 42.3103 100 > 7.6784 27.8354 27.8704 -Arial.ttf 32 % 44.8793 42.3103 101 ® -0.7905 43.1916 42.9709 -Arial.ttf 32 % 44.8793 42.3103 102 © -0.7416 43.1916 42.9709 -Arial.ttf 32 % 44.8793 42.3103 103 ] 0.0218 11.0000 53.6167 -Arial.ttf 32 % 44.8793 42.3103 104 é -1.0958 27.4690 43.5020 -Arial.ttf 32 % 44.8793 42.3103 105 z 11.2163 26.3123 30.8793 -Arial.ttf 32 % 44.8793 42.3103 106 _ 48.5627 33.3832 5.2626 -Arial.ttf 32 % 44.8793 42.3103 107 ¥ 0.5550 32.0291 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 1 t -0.2699 15.0709 42.3103 -Arial.ttf 33 £ 29.8522 42.3103 2 h -0.2232 24.2793 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 3 a 9.6231 27.4690 32.3813 -Arial.ttf 33 £ 29.8522 42.3103 4 n 9.6035 24.2793 32.0709 -Arial.ttf 33 £ 29.8522 42.3103 5 P -0.2222 31.4542 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 6 o 9.7366 27.4690 32.3813 -Arial.ttf 33 £ 29.8522 42.3103 7 e 9.8697 27.4690 32.3813 -Arial.ttf 33 £ 29.8522 42.3103 8 : 11.2224 5.2626 30.8793 -Arial.ttf 33 £ 29.8522 42.3103 9 r 9.9778 16.5689 32.0709 -Arial.ttf 33 £ 29.8522 42.3103 10 l 0.0169 5.2626 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 11 i -0.1686 5.2626 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 12 1 0.1077 15.2355 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 13 | 0.1442 4.1916 54.4980 -Arial.ttf 33 £ 29.8522 42.3103 14 N -0.1991 32.9083 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 15 f -0.0233 18.0709 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 16 g 10.0118 26.3123 43.6877 -Arial.ttf 33 £ 29.8522 42.3103 17 d 0.0054 26.3123 42.3103 -Arial.ttf 33 £ 29.8522 42.3103 18 W 0.1935 57.1916 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 19 s 9.9858 24.9561 32.3813 -Arial.ttf 33 £ 29.8522 42.3103 20 c 9.8039 26.8084 32.3813 -Arial.ttf 33 £ 29.8522 42.3103 21 u 11.2086 24.2793 31.1896 -Arial.ttf 33 £ 29.8522 42.3103 22 3 0.1540 26.8483 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 23 ~ 16.8279 29.9083 10.9561 -Arial.ttf 33 £ 29.8522 42.3103 24 # 0.2110 31.2646 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 25 O -0.9809 39.5749 43.3212 -Arial.ttf 33 £ 29.8522 42.3103 26 ` 0.0387 10.9561 8.0769 -Arial.ttf 33 £ 29.8522 42.3103 27 @ 0.1962 54.1478 54.3123 -Arial.ttf 33 £ 29.8522 42.3103 28 F 0.0302 28.2207 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 29 S -0.9655 33.0001 43.3212 -Arial.ttf 33 £ 29.8522 42.3103 30 p 9.9828 26.3123 43.6877 -Arial.ttf 33 £ 29.8522 42.3103 31 “ -0.0345 13.5690 14.0000 -Arial.ttf 33 £ 29.8522 42.3103 32 % 0.3804 44.8793 42.3103 -Arial.ttf 33 £ 29.8522 42.3103 33 £ -0.0766 29.8522 42.3103 -Arial.ttf 33 £ 29.8522 42.3103 34 . 36.4834 5.2626 5.2626 -Arial.ttf 33 £ 29.8522 42.3103 35 2 0.4427 28.6956 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 36 5 0.2813 26.8483 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 37 m 10.3375 41.4044 32.0709 -Arial.ttf 33 £ 29.8522 42.3103 38 V 0.1168 40.5788 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 39 6 0.1746 27.8542 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 40 w 11.0755 43.4212 30.8793 -Arial.ttf 33 £ 29.8522 42.3103 41 T 0.1017 33.6936 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 42 M -0.0398 40.5788 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 43 G -0.5381 38.6897 43.3212 -Arial.ttf 33 £ 29.8522 42.3103 44 b -0.1172 26.3123 42.3103 -Arial.ttf 33 £ 29.8522 42.3103 45 9 0.2678 26.8483 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 46 ; 11.2050 5.2626 39.6167 -Arial.ttf 33 £ 29.8522 42.3103 47 D 0.0605 34.4542 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 48 L 0.2894 25.8813 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 49 y 10.8724 28.0000 42.4960 -Arial.ttf 33 £ 29.8522 42.3103 50 ‘ 0.2036 5.9231 14.0000 -Arial.ttf 33 £ 29.8522 42.3103 51 \ -0.1396 17.5749 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 52 R -0.0376 36.7497 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 53 < 7.7630 27.8354 27.8704 -Arial.ttf 33 £ 29.8522 42.3103 54 4 0.2966 28.3503 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 55 8 0.1884 26.6626 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 56 0 0.5875 26.8483 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 57 A -0.0866 40.5788 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 58 E -0.3034 31.4542 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 59 B -0.0218 31.4542 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 60 v 11.1342 27.8704 30.8793 -Arial.ttf 33 £ 29.8522 42.3103 61 k -0.0818 25.1207 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 62 J 0.1379 24.0291 42.6606 -Arial.ttf 33 £ 29.8522 42.3103 63 U -0.3229 32.9083 42.6606 -Arial.ttf 33 £ 29.8522 42.3103 64 j 0.1793 12.3773 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 65 ( 0.1734 14.4103 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 66 7 0.1677 26.8523 41.6897 -Arial.ttf 33 £ 29.8522 42.3103 67 § -0.3695 26.9729 53.9271 -Arial.ttf 33 £ 29.8522 42.3103 68 $ -1.9037 27.6897 49.3355 -Arial.ttf 33 £ 29.8522 42.3103 69 € -0.5683 33.0769 43.3212 -Arial.ttf 33 £ 29.8522 42.3103 70 / 0.3506 17.5749 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 71 C -0.8828 36.0000 43.3212 -Arial.ttf 33 £ 29.8522 42.3103 72 * 0.1915 20.3453 17.8852 -Arial.ttf 33 £ 29.8522 42.3103 73 ” -0.1973 14.2296 14.0000 -Arial.ttf 33 £ 29.8522 42.3103 74 ? 0.1644 26.8483 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 75 { 0.0743 16.7375 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 76 } -0.1391 16.7375 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 77 , 37.0311 5.2626 14.0000 -Arial.ttf 33 £ 29.8522 42.3103 78 I 0.0605 5.6936 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 79 ° -0.0842 15.8083 15.8083 -Arial.ttf 33 £ 29.8522 42.3103 80 K -0.0609 34.5749 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 81 H 0.0207 32.9083 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 82 q 9.9206 26.3123 43.6877 -Arial.ttf 33 £ 29.8522 42.3103 83 & -0.0638 35.1148 42.3103 -Arial.ttf 33 £ 29.8522 42.3103 84 ’ -0.0399 5.9231 14.0000 -Arial.ttf 33 £ 29.8522 42.3103 85 [ 0.0976 11.0000 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 86 - 24.1667 15.4980 5.2626 -Arial.ttf 33 £ 29.8522 42.3103 87 Y 0.0912 38.4601 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 88 Q -0.6920 39.5749 46.3212 -Arial.ttf 33 £ 29.8522 42.3103 89 " 0.0734 15.8083 15.1916 -Arial.ttf 33 £ 29.8522 42.3103 90 ! -0.0414 5.2626 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 91 x 10.9954 29.1060 30.8793 -Arial.ttf 33 £ 29.8522 42.3103 92 ) 0.1820 14.4103 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 93 = 11.7971 27.8793 17.8852 -Arial.ttf 33 £ 29.8522 42.3103 94 + 7.5248 27.8753 27.8753 -Arial.ttf 33 £ 29.8522 42.3103 95 X 0.0068 37.6626 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 96 » 14.1879 25.0439 26.1917 -Arial.ttf 33 £ 29.8522 42.3103 97 ' -0.0234 5.2626 15.1916 -Arial.ttf 33 £ 29.8522 42.3103 98 ¢ 0.1205 25.7813 54.2685 -Arial.ttf 33 £ 29.8522 42.3103 99 Z -0.0415 33.0729 42.0000 -Arial.ttf 33 £ 29.8522 42.3103 100 > 7.4817 27.8354 27.8704 -Arial.ttf 33 £ 29.8522 42.3103 101 ® -0.6717 43.1916 42.9709 -Arial.ttf 33 £ 29.8522 42.3103 102 © -0.8043 43.1916 42.9709 -Arial.ttf 33 £ 29.8522 42.3103 103 ] -0.0080 11.0000 53.6167 -Arial.ttf 33 £ 29.8522 42.3103 104 é -1.0660 27.4690 43.5020 -Arial.ttf 33 £ 29.8522 42.3103 105 z 11.4659 26.3123 30.8793 -Arial.ttf 33 £ 29.8522 42.3103 106 _ 48.4703 33.3832 5.2626 -Arial.ttf 33 £ 29.8522 42.3103 107 ¥ 0.1113 32.0291 42.0000 -Arial.ttf 34 . 5.2626 5.2626 1 t -36.5459 15.0709 42.3103 -Arial.ttf 34 . 5.2626 5.2626 2 h -36.6409 24.2793 42.0000 -Arial.ttf 34 . 5.2626 5.2626 3 a -27.0991 27.4690 32.3813 -Arial.ttf 34 . 5.2626 5.2626 4 n -26.7915 24.2793 32.0709 -Arial.ttf 34 . 5.2626 5.2626 5 P -36.7871 31.4542 42.0000 -Arial.ttf 34 . 5.2626 5.2626 6 o -26.7877 27.4690 32.3813 -Arial.ttf 34 . 5.2626 5.2626 7 e -26.7256 27.4690 32.3813 -Arial.ttf 34 . 5.2626 5.2626 8 : -25.5728 5.2626 30.8793 -Arial.ttf 34 . 5.2626 5.2626 9 r -26.6885 16.5689 32.0709 -Arial.ttf 34 . 5.2626 5.2626 10 l -36.7539 5.2626 42.0000 -Arial.ttf 34 . 5.2626 5.2626 11 i -36.7634 5.2626 42.0000 -Arial.ttf 34 . 5.2626 5.2626 12 1 -36.2839 15.2355 41.6897 -Arial.ttf 34 . 5.2626 5.2626 13 | -36.7219 4.1916 54.4980 -Arial.ttf 34 . 5.2626 5.2626 14 N -36.7719 32.9083 42.0000 -Arial.ttf 34 . 5.2626 5.2626 15 f -36.7374 18.0709 42.0000 -Arial.ttf 34 . 5.2626 5.2626 16 g -26.7712 26.3123 43.6877 -Arial.ttf 34 . 5.2626 5.2626 17 d -36.7719 26.3123 42.3103 -Arial.ttf 34 . 5.2626 5.2626 18 W -36.5158 57.1916 42.0000 -Arial.ttf 34 . 5.2626 5.2626 19 s -26.7681 24.9561 32.3813 -Arial.ttf 34 . 5.2626 5.2626 20 c -26.9877 26.8084 32.3813 -Arial.ttf 34 . 5.2626 5.2626 21 u -25.6261 24.2793 31.1896 -Arial.ttf 34 . 5.2626 5.2626 22 3 -36.5099 26.8483 41.6897 -Arial.ttf 34 . 5.2626 5.2626 23 ~ -19.8030 29.9083 10.9561 -Arial.ttf 34 . 5.2626 5.2626 24 # -36.6340 31.2646 42.0000 -Arial.ttf 34 . 5.2626 5.2626 25 O -37.5095 39.5749 43.3212 -Arial.ttf 34 . 5.2626 5.2626 26 ` -36.6923 10.9561 8.0769 -Arial.ttf 34 . 5.2626 5.2626 27 @ -36.7772 54.1478 54.3123 -Arial.ttf 34 . 5.2626 5.2626 28 F -36.5625 28.2207 42.0000 -Arial.ttf 34 . 5.2626 5.2626 29 S -37.2654 33.0001 43.3212 -Arial.ttf 34 . 5.2626 5.2626 30 p -26.8402 26.3123 43.6877 -Arial.ttf 34 . 5.2626 5.2626 31 “ -36.9087 13.5690 14.0000 -Arial.ttf 34 . 5.2626 5.2626 32 % -36.7374 44.8793 42.3103 -Arial.ttf 34 . 5.2626 5.2626 33 £ -36.5662 29.8522 42.3103 -Arial.ttf 34 . 5.2626 5.2626 34 . 0.0195 5.2626 5.2626 -Arial.ttf 34 . 5.2626 5.2626 35 2 -36.5501 28.6956 41.6897 -Arial.ttf 34 . 5.2626 5.2626 36 5 -36.5953 26.8483 41.6897 -Arial.ttf 34 . 5.2626 5.2626 37 m -26.7038 41.4044 32.0709 -Arial.ttf 34 . 5.2626 5.2626 38 V -36.7374 40.5788 42.0000 -Arial.ttf 34 . 5.2626 5.2626 39 6 -36.5014 27.8542 41.6897 -Arial.ttf 34 . 5.2626 5.2626 40 w -25.5573 43.4212 30.8793 -Arial.ttf 34 . 5.2626 5.2626 41 T -36.7294 33.6936 42.0000 -Arial.ttf 34 . 5.2626 5.2626 42 M -36.5953 40.5788 42.0000 -Arial.ttf 34 . 5.2626 5.2626 43 G -37.4478 38.6897 43.3212 -Arial.ttf 34 . 5.2626 5.2626 44 b -36.7374 26.3123 42.3103 -Arial.ttf 34 . 5.2626 5.2626 45 9 -36.3015 26.8483 41.6897 -Arial.ttf 34 . 5.2626 5.2626 46 ; -25.6221 5.2626 39.6167 -Arial.ttf 34 . 5.2626 5.2626 47 D -37.1277 34.4542 42.0000 -Arial.ttf 34 . 5.2626 5.2626 48 L -36.7675 25.8813 42.0000 -Arial.ttf 34 . 5.2626 5.2626 49 y -25.6721 28.0000 42.4960 -Arial.ttf 34 . 5.2626 5.2626 50 ‘ -36.6972 5.9231 14.0000 -Arial.ttf 34 . 5.2626 5.2626 51 \ -36.7374 17.5749 42.0000 -Arial.ttf 34 . 5.2626 5.2626 52 R -36.7750 36.7497 42.0000 -Arial.ttf 34 . 5.2626 5.2626 53 < -29.0606 27.8354 27.8704 -Arial.ttf 34 . 5.2626 5.2626 54 4 -36.3900 28.3503 41.6897 -Arial.ttf 34 . 5.2626 5.2626 55 8 -36.4271 26.6626 41.6897 -Arial.ttf 34 . 5.2626 5.2626 56 0 -36.1015 26.8483 41.6897 -Arial.ttf 34 . 5.2626 5.2626 57 A -36.7719 40.5788 42.0000 -Arial.ttf 34 . 5.2626 5.2626 58 E -36.5729 31.4542 42.0000 -Arial.ttf 34 . 5.2626 5.2626 59 B -36.6397 31.4542 42.0000 -Arial.ttf 34 . 5.2626 5.2626 60 v -25.6746 27.8704 30.8793 -Arial.ttf 34 . 5.2626 5.2626 61 k -36.9624 25.1207 42.0000 -Arial.ttf 34 . 5.2626 5.2626 62 J -36.6356 24.0291 42.6606 -Arial.ttf 34 . 5.2626 5.2626 63 U -36.7746 32.9083 42.6606 -Arial.ttf 34 . 5.2626 5.2626 64 j -36.8976 12.3773 53.6167 -Arial.ttf 34 . 5.2626 5.2626 65 ( -36.6892 14.4103 53.6167 -Arial.ttf 34 . 5.2626 5.2626 66 7 -36.3143 26.8523 41.6897 -Arial.ttf 34 . 5.2626 5.2626 67 § -36.7374 26.9729 53.9271 -Arial.ttf 34 . 5.2626 5.2626 68 $ -38.9360 27.6897 49.3355 -Arial.ttf 34 . 5.2626 5.2626 69 € -37.3980 33.0769 43.3212 -Arial.ttf 34 . 5.2626 5.2626 70 / -36.7746 17.5749 42.0000 -Arial.ttf 34 . 5.2626 5.2626 71 C -37.3693 36.0000 43.3212 -Arial.ttf 34 . 5.2626 5.2626 72 * -36.6673 20.3453 17.8852 -Arial.ttf 34 . 5.2626 5.2626 73 ” -36.7374 14.2296 14.0000 -Arial.ttf 34 . 5.2626 5.2626 74 ? -36.7290 26.8483 42.0000 -Arial.ttf 34 . 5.2626 5.2626 75 { -36.5800 16.7375 53.6167 -Arial.ttf 34 . 5.2626 5.2626 76 } -36.5439 16.7375 53.6167 -Arial.ttf 34 . 5.2626 5.2626 77 , -0.0514 5.2626 14.0000 -Arial.ttf 34 . 5.2626 5.2626 78 I -36.6743 5.6936 42.0000 -Arial.ttf 34 . 5.2626 5.2626 79 ° -36.6135 15.8083 15.8083 -Arial.ttf 34 . 5.2626 5.2626 80 K -36.7857 34.5749 42.0000 -Arial.ttf 34 . 5.2626 5.2626 81 H -36.7334 32.9083 42.0000 -Arial.ttf 34 . 5.2626 5.2626 82 q -26.7934 26.3123 43.6877 -Arial.ttf 34 . 5.2626 5.2626 83 & -36.6808 35.1148 42.3103 -Arial.ttf 34 . 5.2626 5.2626 84 ’ -36.8351 5.9231 14.0000 -Arial.ttf 34 . 5.2626 5.2626 85 [ -36.8865 11.0000 53.6167 -Arial.ttf 34 . 5.2626 5.2626 86 - -12.5049 15.4980 5.2626 -Arial.ttf 34 . 5.2626 5.2626 87 Y -36.8742 38.4601 42.0000 -Arial.ttf 34 . 5.2626 5.2626 88 Q -37.3524 39.5749 46.3212 -Arial.ttf 34 . 5.2626 5.2626 89 " -36.8340 15.8083 15.1916 -Arial.ttf 34 . 5.2626 5.2626 90 ! -36.8742 5.2626 42.0000 -Arial.ttf 34 . 5.2626 5.2626 91 x -25.4942 29.1060 30.8793 -Arial.ttf 34 . 5.2626 5.2626 92 ) -36.6936 14.4103 53.6167 -Arial.ttf 34 . 5.2626 5.2626 93 = -24.8007 27.8793 17.8852 -Arial.ttf 34 . 5.2626 5.2626 94 + -29.2098 27.8753 27.8753 -Arial.ttf 34 . 5.2626 5.2626 95 X -36.6892 37.6626 42.0000 -Arial.ttf 34 . 5.2626 5.2626 96 » -22.7712 25.0439 26.1917 -Arial.ttf 34 . 5.2626 5.2626 97 ' -36.6516 5.2626 15.1916 -Arial.ttf 34 . 5.2626 5.2626 98 ¢ -36.9260 25.7813 54.2685 -Arial.ttf 34 . 5.2626 5.2626 99 Z -36.7348 33.0729 42.0000 -Arial.ttf 34 . 5.2626 5.2626 100 > -29.3375 27.8354 27.8704 -Arial.ttf 34 . 5.2626 5.2626 101 ® -37.3900 43.1916 42.9709 -Arial.ttf 34 . 5.2626 5.2626 102 © -37.3785 43.1916 42.9709 -Arial.ttf 34 . 5.2626 5.2626 103 ] -36.6007 11.0000 53.6167 -Arial.ttf 34 . 5.2626 5.2626 104 é -37.9197 27.4690 43.5020 -Arial.ttf 34 . 5.2626 5.2626 105 z -25.6995 26.3123 30.8793 -Arial.ttf 34 . 5.2626 5.2626 106 _ 11.5340 33.3832 5.2626 -Arial.ttf 34 . 5.2626 5.2626 107 ¥ -36.5625 32.0291 42.0000 -Arial.ttf 35 2 28.6956 41.6897 1 t -0.1073 15.0709 42.3103 -Arial.ttf 35 2 28.6956 41.6897 2 h -0.0679 24.2793 42.0000 -Arial.ttf 35 2 28.6956 41.6897 3 a 9.3550 27.4690 32.3813 -Arial.ttf 35 2 28.6956 41.6897 4 n 9.2978 24.2793 32.0709 -Arial.ttf 35 2 28.6956 41.6897 5 P -0.5537 31.4542 42.0000 -Arial.ttf 35 2 28.6956 41.6897 6 o 9.6289 27.4690 32.3813 -Arial.ttf 35 2 28.6956 41.6897 7 e 9.6462 27.4690 32.3813 -Arial.ttf 35 2 28.6956 41.6897 8 : 11.1799 5.2626 30.8793 -Arial.ttf 35 2 28.6956 41.6897 9 r 9.7417 16.5689 32.0709 -Arial.ttf 35 2 28.6956 41.6897 10 l -0.5299 5.2626 42.0000 -Arial.ttf 35 2 28.6956 41.6897 11 i -0.1877 5.2626 42.0000 -Arial.ttf 35 2 28.6956 41.6897 12 1 0.1177 15.2355 41.6897 -Arial.ttf 35 2 28.6956 41.6897 13 | -0.2399 4.1916 54.4980 -Arial.ttf 35 2 28.6956 41.6897 14 N -0.5985 32.9083 42.0000 -Arial.ttf 35 2 28.6956 41.6897 15 f -0.2094 18.0709 42.0000 -Arial.ttf 35 2 28.6956 41.6897 16 g 9.4877 26.3123 43.6877 -Arial.ttf 35 2 28.6956 41.6897 17 d 0.0014 26.3123 42.3103 -Arial.ttf 35 2 28.6956 41.6897 18 W -0.4650 57.1916 42.0000 -Arial.ttf 35 2 28.6956 41.6897 19 s 9.8643 24.9561 32.3813 -Arial.ttf 35 2 28.6956 41.6897 20 c 9.6723 26.8084 32.3813 -Arial.ttf 35 2 28.6956 41.6897 21 u 10.9657 24.2793 31.1896 -Arial.ttf 35 2 28.6956 41.6897 22 3 0.1404 26.8483 41.6897 -Arial.ttf 35 2 28.6956 41.6897 23 ~ 16.5425 29.9083 10.9561 -Arial.ttf 35 2 28.6956 41.6897 24 # -0.4302 31.2646 42.0000 -Arial.ttf 35 2 28.6956 41.6897 25 O -0.9131 39.5749 43.3212 -Arial.ttf 35 2 28.6956 41.6897 26 ` -0.1448 10.9561 8.0769 -Arial.ttf 35 2 28.6956 41.6897 27 @ -0.3330 54.1478 54.3123 -Arial.ttf 35 2 28.6956 41.6897 28 F -0.2027 28.2207 42.0000 -Arial.ttf 35 2 28.6956 41.6897 29 S -1.1005 33.0001 43.3212 -Arial.ttf 35 2 28.6956 41.6897 30 p 9.7251 26.3123 43.6877 -Arial.ttf 35 2 28.6956 41.6897 31 “ -0.5526 13.5690 14.0000 -Arial.ttf 35 2 28.6956 41.6897 32 % -0.2747 44.8793 42.3103 -Arial.ttf 35 2 28.6956 41.6897 33 £ -0.0759 29.8522 42.3103 -Arial.ttf 35 2 28.6956 41.6897 34 . 36.5608 5.2626 5.2626 -Arial.ttf 35 2 28.6956 41.6897 35 2 0.1077 28.6956 41.6897 -Arial.ttf 35 2 28.6956 41.6897 36 5 -0.0345 26.8483 41.6897 -Arial.ttf 35 2 28.6956 41.6897 37 m 9.7984 41.4044 32.0709 -Arial.ttf 35 2 28.6956 41.6897 38 V -0.3874 40.5788 42.0000 -Arial.ttf 35 2 28.6956 41.6897 39 6 -0.1667 27.8542 41.6897 -Arial.ttf 35 2 28.6956 41.6897 40 w 10.9148 43.4212 30.8793 -Arial.ttf 35 2 28.6956 41.6897 41 T -0.7172 33.6936 42.0000 -Arial.ttf 35 2 28.6956 41.6897 42 M -0.1036 40.5788 42.0000 -Arial.ttf 35 2 28.6956 41.6897 43 G -1.1173 38.6897 43.3212 -Arial.ttf 35 2 28.6956 41.6897 44 b -0.0180 26.3123 42.3103 -Arial.ttf 35 2 28.6956 41.6897 45 9 0.0436 26.8483 41.6897 -Arial.ttf 35 2 28.6956 41.6897 46 ; 10.9222 5.2626 39.6167 -Arial.ttf 35 2 28.6956 41.6897 47 D -0.3529 34.4542 42.0000 -Arial.ttf 35 2 28.6956 41.6897 48 L -0.2701 25.8813 42.0000 -Arial.ttf 35 2 28.6956 41.6897 49 y 10.6023 28.0000 42.4960 -Arial.ttf 35 2 28.6956 41.6897 50 ‘ -0.5819 5.9231 14.0000 -Arial.ttf 35 2 28.6956 41.6897 51 \ -0.3542 17.5749 42.0000 -Arial.ttf 35 2 28.6956 41.6897 52 R -0.4920 36.7497 42.0000 -Arial.ttf 35 2 28.6956 41.6897 53 < 7.1612 27.8354 27.8704 -Arial.ttf 35 2 28.6956 41.6897 54 4 0.0376 28.3503 41.6897 -Arial.ttf 35 2 28.6956 41.6897 55 8 0.2152 26.6626 41.6897 -Arial.ttf 35 2 28.6956 41.6897 56 0 -0.0690 26.8483 41.6897 -Arial.ttf 35 2 28.6956 41.6897 57 A -0.3736 40.5788 42.0000 -Arial.ttf 35 2 28.6956 41.6897 58 E -0.1989 31.4542 42.0000 -Arial.ttf 35 2 28.6956 41.6897 59 B -0.3900 31.4542 42.0000 -Arial.ttf 35 2 28.6956 41.6897 60 v 10.9520 27.8704 30.8793 -Arial.ttf 35 2 28.6956 41.6897 61 k -0.2754 25.1207 42.0000 -Arial.ttf 35 2 28.6956 41.6897 62 J -0.0621 24.0291 42.6606 -Arial.ttf 35 2 28.6956 41.6897 63 U -0.4694 32.9083 42.6606 -Arial.ttf 35 2 28.6956 41.6897 64 j -0.2797 12.3773 53.6167 -Arial.ttf 35 2 28.6956 41.6897 65 ( -0.4498 14.4103 53.6167 -Arial.ttf 35 2 28.6956 41.6897 66 7 -0.0791 26.8523 41.6897 -Arial.ttf 35 2 28.6956 41.6897 67 § -0.4923 26.9729 53.9271 -Arial.ttf 35 2 28.6956 41.6897 68 $ -2.5570 27.6897 49.3355 -Arial.ttf 35 2 28.6956 41.6897 69 € -1.0701 33.0769 43.3212 -Arial.ttf 35 2 28.6956 41.6897 70 / -0.1558 17.5749 42.0000 -Arial.ttf 35 2 28.6956 41.6897 71 C -0.9878 36.0000 43.3212 -Arial.ttf 35 2 28.6956 41.6897 72 * -0.3692 20.3453 17.8852 -Arial.ttf 35 2 28.6956 41.6897 73 ” -0.2439 14.2296 14.0000 -Arial.ttf 35 2 28.6956 41.6897 74 ? -0.4785 26.8483 42.0000 -Arial.ttf 35 2 28.6956 41.6897 75 { -0.2330 16.7375 53.6167 -Arial.ttf 35 2 28.6956 41.6897 76 } -0.4320 16.7375 53.6167 -Arial.ttf 35 2 28.6956 41.6897 77 , 36.4425 5.2626 14.0000 -Arial.ttf 35 2 28.6956 41.6897 78 I -0.5394 5.6936 42.0000 -Arial.ttf 35 2 28.6956 41.6897 79 ° -0.2440 15.8083 15.8083 -Arial.ttf 35 2 28.6956 41.6897 80 K -0.1516 34.5749 42.0000 -Arial.ttf 35 2 28.6956 41.6897 81 H -0.2674 32.9083 42.0000 -Arial.ttf 35 2 28.6956 41.6897 82 q 9.4644 26.3123 43.6877 -Arial.ttf 35 2 28.6956 41.6897 83 & -0.4524 35.1148 42.3103 -Arial.ttf 35 2 28.6956 41.6897 84 ’ -0.3751 5.9231 14.0000 -Arial.ttf 35 2 28.6956 41.6897 85 [ -0.3337 11.0000 53.6167 -Arial.ttf 35 2 28.6956 41.6897 86 - 23.9084 15.4980 5.2626 -Arial.ttf 35 2 28.6956 41.6897 87 Y -0.4110 38.4601 42.0000 -Arial.ttf 35 2 28.6956 41.6897 88 Q -0.9605 39.5749 46.3212 -Arial.ttf 35 2 28.6956 41.6897 89 " -0.4567 15.8083 15.1916 -Arial.ttf 35 2 28.6956 41.6897 90 ! -0.1582 5.2626 42.0000 -Arial.ttf 35 2 28.6956 41.6897 91 x 10.9997 29.1060 30.8793 -Arial.ttf 35 2 28.6956 41.6897 92 ) -0.1422 14.4103 53.6167 -Arial.ttf 35 2 28.6956 41.6897 93 = 11.5645 27.8793 17.8852 -Arial.ttf 35 2 28.6956 41.6897 94 + 6.9952 27.8753 27.8753 -Arial.ttf 35 2 28.6956 41.6897 95 X -0.3999 37.6626 42.0000 -Arial.ttf 35 2 28.6956 41.6897 96 » 13.8913 25.0439 26.1917 -Arial.ttf 35 2 28.6956 41.6897 97 ' -0.3498 5.2626 15.1916 -Arial.ttf 35 2 28.6956 41.6897 98 ¢ -0.3398 25.7813 54.2685 -Arial.ttf 35 2 28.6956 41.6897 99 Z -0.2594 33.0729 42.0000 -Arial.ttf 35 2 28.6956 41.6897 100 > 7.4381 27.8354 27.8704 -Arial.ttf 35 2 28.6956 41.6897 101 ® -0.7998 43.1916 42.9709 -Arial.ttf 35 2 28.6956 41.6897 102 © -1.0860 43.1916 42.9709 -Arial.ttf 35 2 28.6956 41.6897 103 ] -0.1301 11.0000 53.6167 -Arial.ttf 35 2 28.6956 41.6897 104 é -1.8800 27.4690 43.5020 -Arial.ttf 35 2 28.6956 41.6897 105 z 11.0422 26.3123 30.8793 -Arial.ttf 35 2 28.6956 41.6897 106 _ 48.2051 33.3832 5.2626 -Arial.ttf 35 2 28.6956 41.6897 107 ¥ -0.6025 32.0291 42.0000 -Arial.ttf 36 5 26.8483 41.6897 1 t -0.2621 15.0709 42.3103 -Arial.ttf 36 5 26.8483 41.6897 2 h -0.4207 24.2793 42.0000 -Arial.ttf 36 5 26.8483 41.6897 3 a 9.4134 27.4690 32.3813 -Arial.ttf 36 5 26.8483 41.6897 4 n 9.6240 24.2793 32.0709 -Arial.ttf 36 5 26.8483 41.6897 5 P -0.2907 31.4542 42.0000 -Arial.ttf 36 5 26.8483 41.6897 6 o 9.4709 27.4690 32.3813 -Arial.ttf 36 5 26.8483 41.6897 7 e 9.8324 27.4690 32.3813 -Arial.ttf 36 5 26.8483 41.6897 8 : 10.7016 5.2626 30.8793 -Arial.ttf 36 5 26.8483 41.6897 9 r 9.5806 16.5689 32.0709 -Arial.ttf 36 5 26.8483 41.6897 10 l -0.2816 5.2626 42.0000 -Arial.ttf 36 5 26.8483 41.6897 11 i -0.2688 5.2626 42.0000 -Arial.ttf 36 5 26.8483 41.6897 12 1 -0.0324 15.2355 41.6897 -Arial.ttf 36 5 26.8483 41.6897 13 | -0.2307 4.1916 54.4980 -Arial.ttf 36 5 26.8483 41.6897 14 N -0.5363 32.9083 42.0000 -Arial.ttf 36 5 26.8483 41.6897 15 f -0.1931 18.0709 42.0000 -Arial.ttf 36 5 26.8483 41.6897 16 g 9.4822 26.3123 43.6877 -Arial.ttf 36 5 26.8483 41.6897 17 d -0.4259 26.3123 42.3103 -Arial.ttf 36 5 26.8483 41.6897 18 W -0.5283 57.1916 42.0000 -Arial.ttf 36 5 26.8483 41.6897 19 s 9.6698 24.9561 32.3813 -Arial.ttf 36 5 26.8483 41.6897 20 c 9.4241 26.8084 32.3813 -Arial.ttf 36 5 26.8483 41.6897 21 u 10.7981 24.2793 31.1896 -Arial.ttf 36 5 26.8483 41.6897 22 3 -0.0787 26.8483 41.6897 -Arial.ttf 36 5 26.8483 41.6897 23 ~ 16.7000 29.9083 10.9561 -Arial.ttf 36 5 26.8483 41.6897 24 # -0.5322 31.2646 42.0000 -Arial.ttf 36 5 26.8483 41.6897 25 O -0.8926 39.5749 43.3212 -Arial.ttf 36 5 26.8483 41.6897 26 ` -0.2701 10.9561 8.0769 -Arial.ttf 36 5 26.8483 41.6897 27 @ -0.4579 54.1478 54.3123 -Arial.ttf 36 5 26.8483 41.6897 28 F 0.0304 28.2207 42.0000 -Arial.ttf 36 5 26.8483 41.6897 29 S -0.9361 33.0001 43.3212 -Arial.ttf 36 5 26.8483 41.6897 30 p 9.6486 26.3123 43.6877 -Arial.ttf 36 5 26.8483 41.6897 31 “ -0.3745 13.5690 14.0000 -Arial.ttf 36 5 26.8483 41.6897 32 % -0.3272 44.8793 42.3103 -Arial.ttf 36 5 26.8483 41.6897 33 £ -0.5501 29.8522 42.3103 -Arial.ttf 36 5 26.8483 41.6897 34 . 36.3191 5.2626 5.2626 -Arial.ttf 36 5 26.8483 41.6897 35 2 0.0831 28.6956 41.6897 -Arial.ttf 36 5 26.8483 41.6897 36 5 -0.2454 26.8483 41.6897 -Arial.ttf 36 5 26.8483 41.6897 37 m 9.4946 41.4044 32.0709 -Arial.ttf 36 5 26.8483 41.6897 38 V -0.6304 40.5788 42.0000 -Arial.ttf 36 5 26.8483 41.6897 39 6 0.0004 27.8542 41.6897 -Arial.ttf 36 5 26.8483 41.6897 40 w 10.5923 43.4212 30.8793 -Arial.ttf 36 5 26.8483 41.6897 41 T 0.0247 33.6936 42.0000 -Arial.ttf 36 5 26.8483 41.6897 42 M -0.3241 40.5788 42.0000 -Arial.ttf 36 5 26.8483 41.6897 43 G -1.1862 38.6897 43.3212 -Arial.ttf 36 5 26.8483 41.6897 44 b -0.3359 26.3123 42.3103 -Arial.ttf 36 5 26.8483 41.6897 45 9 0.2850 26.8483 41.6897 -Arial.ttf 36 5 26.8483 41.6897 46 ; 10.8793 5.2626 39.6167 -Arial.ttf 36 5 26.8483 41.6897 47 D -0.4580 34.4542 42.0000 -Arial.ttf 36 5 26.8483 41.6897 48 L -0.3501 25.8813 42.0000 -Arial.ttf 36 5 26.8483 41.6897 49 y 11.0050 28.0000 42.4960 -Arial.ttf 36 5 26.8483 41.6897 50 ‘ -0.3793 5.9231 14.0000 -Arial.ttf 36 5 26.8483 41.6897 51 \ -0.3077 17.5749 42.0000 -Arial.ttf 36 5 26.8483 41.6897 52 R -0.4313 36.7497 42.0000 -Arial.ttf 36 5 26.8483 41.6897 53 < 7.1102 27.8354 27.8704 -Arial.ttf 36 5 26.8483 41.6897 54 4 -0.0784 28.3503 41.6897 -Arial.ttf 36 5 26.8483 41.6897 55 8 -0.1019 26.6626 41.6897 -Arial.ttf 36 5 26.8483 41.6897 56 0 0.0106 26.8483 41.6897 -Arial.ttf 36 5 26.8483 41.6897 57 A -0.2080 40.5788 42.0000 -Arial.ttf 36 5 26.8483 41.6897 58 E -0.1847 31.4542 42.0000 -Arial.ttf 36 5 26.8483 41.6897 59 B -0.5733 31.4542 42.0000 -Arial.ttf 36 5 26.8483 41.6897 60 v 10.6777 27.8704 30.8793 -Arial.ttf 36 5 26.8483 41.6897 61 k -0.4820 25.1207 42.0000 -Arial.ttf 36 5 26.8483 41.6897 62 J -0.1507 24.0291 42.6606 -Arial.ttf 36 5 26.8483 41.6897 63 U -0.5066 32.9083 42.6606 -Arial.ttf 36 5 26.8483 41.6897 64 j -0.3253 12.3773 53.6167 -Arial.ttf 36 5 26.8483 41.6897 65 ( -0.3185 14.4103 53.6167 -Arial.ttf 36 5 26.8483 41.6897 66 7 -0.2803 26.8523 41.6897 -Arial.ttf 36 5 26.8483 41.6897 67 § -0.3326 26.9729 53.9271 -Arial.ttf 36 5 26.8483 41.6897 68 $ -2.3917 27.6897 49.3355 -Arial.ttf 36 5 26.8483 41.6897 69 € -0.9196 33.0769 43.3212 -Arial.ttf 36 5 26.8483 41.6897 70 / -0.5130 17.5749 42.0000 -Arial.ttf 36 5 26.8483 41.6897 71 C -0.9010 36.0000 43.3212 -Arial.ttf 36 5 26.8483 41.6897 72 * -0.4138 20.3453 17.8852 -Arial.ttf 36 5 26.8483 41.6897 73 ” -0.4907 14.2296 14.0000 -Arial.ttf 36 5 26.8483 41.6897 74 ? -0.2801 26.8483 42.0000 -Arial.ttf 36 5 26.8483 41.6897 75 { 0.0475 16.7375 53.6167 -Arial.ttf 36 5 26.8483 41.6897 76 } -0.1862 16.7375 53.6167 -Arial.ttf 36 5 26.8483 41.6897 77 , 36.6504 5.2626 14.0000 -Arial.ttf 36 5 26.8483 41.6897 78 I -0.2537 5.6936 42.0000 -Arial.ttf 36 5 26.8483 41.6897 79 ° -0.5172 15.8083 15.8083 -Arial.ttf 36 5 26.8483 41.6897 80 K -0.0962 34.5749 42.0000 -Arial.ttf 36 5 26.8483 41.6897 81 H -0.2638 32.9083 42.0000 -Arial.ttf 36 5 26.8483 41.6897 82 q 9.5501 26.3123 43.6877 -Arial.ttf 36 5 26.8483 41.6897 83 & -0.4348 35.1148 42.3103 -Arial.ttf 36 5 26.8483 41.6897 84 ’ -0.1326 5.9231 14.0000 -Arial.ttf 36 5 26.8483 41.6897 85 [ -0.5183 11.0000 53.6167 -Arial.ttf 36 5 26.8483 41.6897 86 - 23.9611 15.4980 5.2626 -Arial.ttf 36 5 26.8483 41.6897 87 Y -0.3448 38.4601 42.0000 -Arial.ttf 36 5 26.8483 41.6897 88 Q -0.8260 39.5749 46.3212 -Arial.ttf 36 5 26.8483 41.6897 89 " 0.0910 15.8083 15.1916 -Arial.ttf 36 5 26.8483 41.6897 90 ! -0.2799 5.2626 42.0000 -Arial.ttf 36 5 26.8483 41.6897 91 x 11.0045 29.1060 30.8793 -Arial.ttf 36 5 26.8483 41.6897 92 ) -0.4910 14.4103 53.6167 -Arial.ttf 36 5 26.8483 41.6897 93 = 11.8650 27.8793 17.8852 -Arial.ttf 36 5 26.8483 41.6897 94 + 7.1926 27.8753 27.8753 -Arial.ttf 36 5 26.8483 41.6897 95 X -0.3532 37.6626 42.0000 -Arial.ttf 36 5 26.8483 41.6897 96 » 13.4367 25.0439 26.1917 -Arial.ttf 36 5 26.8483 41.6897 97 ' -0.5266 5.2626 15.1916 -Arial.ttf 36 5 26.8483 41.6897 98 ¢ -0.2391 25.7813 54.2685 -Arial.ttf 36 5 26.8483 41.6897 99 Z -0.5076 33.0729 42.0000 -Arial.ttf 36 5 26.8483 41.6897 100 > 7.2684 27.8354 27.8704 -Arial.ttf 36 5 26.8483 41.6897 101 ® -0.7865 43.1916 42.9709 -Arial.ttf 36 5 26.8483 41.6897 102 © -0.9990 43.1916 42.9709 -Arial.ttf 36 5 26.8483 41.6897 103 ] -0.3046 11.0000 53.6167 -Arial.ttf 36 5 26.8483 41.6897 104 é -1.4161 27.4690 43.5020 -Arial.ttf 36 5 26.8483 41.6897 105 z 10.7568 26.3123 30.8793 -Arial.ttf 36 5 26.8483 41.6897 106 _ 48.0851 33.3832 5.2626 -Arial.ttf 36 5 26.8483 41.6897 107 ¥ -0.1640 32.0291 42.0000 -Arial.ttf 37 m 41.4044 32.0709 1 t -10.2352 15.0709 42.3103 -Arial.ttf 37 m 41.4044 32.0709 2 h -9.7609 24.2793 42.0000 -Arial.ttf 37 m 41.4044 32.0709 3 a -0.0126 27.4690 32.3813 -Arial.ttf 37 m 41.4044 32.0709 4 n -0.1246 24.2793 32.0709 -Arial.ttf 37 m 41.4044 32.0709 5 P -9.9852 31.4542 42.0000 -Arial.ttf 37 m 41.4044 32.0709 6 o -0.0532 27.4690 32.3813 -Arial.ttf 37 m 41.4044 32.0709 7 e -0.0855 27.4690 32.3813 -Arial.ttf 37 m 41.4044 32.0709 8 : 1.0929 5.2626 30.8793 -Arial.ttf 37 m 41.4044 32.0709 9 r 0.2858 16.5689 32.0709 -Arial.ttf 37 m 41.4044 32.0709 10 l -9.9720 5.2626 42.0000 -Arial.ttf 37 m 41.4044 32.0709 11 i -10.0889 5.2626 42.0000 -Arial.ttf 37 m 41.4044 32.0709 12 1 -9.3042 15.2355 41.6897 -Arial.ttf 37 m 41.4044 32.0709 13 | -9.9100 4.1916 54.4980 -Arial.ttf 37 m 41.4044 32.0709 14 N -10.3707 32.9083 42.0000 -Arial.ttf 37 m 41.4044 32.0709 15 f -9.7678 18.0709 42.0000 -Arial.ttf 37 m 41.4044 32.0709 16 g 0.1741 26.3123 43.6877 -Arial.ttf 37 m 41.4044 32.0709 17 d -9.7938 26.3123 42.3103 -Arial.ttf 37 m 41.4044 32.0709 18 W -9.9552 57.1916 42.0000 -Arial.ttf 37 m 41.4044 32.0709 19 s -0.1356 24.9561 32.3813 -Arial.ttf 37 m 41.4044 32.0709 20 c 0.2179 26.8084 32.3813 -Arial.ttf 37 m 41.4044 32.0709 21 u 1.1008 24.2793 31.1896 -Arial.ttf 37 m 41.4044 32.0709 22 3 -9.8399 26.8483 41.6897 -Arial.ttf 37 m 41.4044 32.0709 23 ~ 6.6674 29.9083 10.9561 -Arial.ttf 37 m 41.4044 32.0709 24 # -10.3618 31.2646 42.0000 -Arial.ttf 37 m 41.4044 32.0709 25 O -10.7968 39.5749 43.3212 -Arial.ttf 37 m 41.4044 32.0709 26 ` -9.8057 10.9561 8.0769 -Arial.ttf 37 m 41.4044 32.0709 27 @ -9.9965 54.1478 54.3123 -Arial.ttf 37 m 41.4044 32.0709 28 F -9.8973 28.2207 42.0000 -Arial.ttf 37 m 41.4044 32.0709 29 S -10.7221 33.0001 43.3212 -Arial.ttf 37 m 41.4044 32.0709 30 p -0.1113 26.3123 43.6877 -Arial.ttf 37 m 41.4044 32.0709 31 “ -10.3041 13.5690 14.0000 -Arial.ttf 37 m 41.4044 32.0709 32 % -10.0353 44.8793 42.3103 -Arial.ttf 37 m 41.4044 32.0709 33 £ -9.9536 29.8522 42.3103 -Arial.ttf 37 m 41.4044 32.0709 34 . 26.8131 5.2626 5.2626 -Arial.ttf 37 m 41.4044 32.0709 35 2 -9.8145 28.6956 41.6897 -Arial.ttf 37 m 41.4044 32.0709 36 5 -9.5502 26.8483 41.6897 -Arial.ttf 37 m 41.4044 32.0709 37 m 0.1134 41.4044 32.0709 -Arial.ttf 37 m 41.4044 32.0709 38 V -10.0356 40.5788 42.0000 -Arial.ttf 37 m 41.4044 32.0709 39 6 -9.6812 27.8542 41.6897 -Arial.ttf 37 m 41.4044 32.0709 40 w 1.2039 43.4212 30.8793 -Arial.ttf 37 m 41.4044 32.0709 41 T -9.7427 33.6936 42.0000 -Arial.ttf 37 m 41.4044 32.0709 42 M -9.9571 40.5788 42.0000 -Arial.ttf 37 m 41.4044 32.0709 43 G -10.5303 38.6897 43.3212 -Arial.ttf 37 m 41.4044 32.0709 44 b -10.1582 26.3123 42.3103 -Arial.ttf 37 m 41.4044 32.0709 45 9 -9.3924 26.8483 41.6897 -Arial.ttf 37 m 41.4044 32.0709 46 ; 1.1416 5.2626 39.6167 -Arial.ttf 37 m 41.4044 32.0709 47 D -9.9317 34.4542 42.0000 -Arial.ttf 37 m 41.4044 32.0709 48 L -10.0394 25.8813 42.0000 -Arial.ttf 37 m 41.4044 32.0709 49 y 1.1768 28.0000 42.4960 -Arial.ttf 37 m 41.4044 32.0709 50 ‘ -9.9923 5.9231 14.0000 -Arial.ttf 37 m 41.4044 32.0709 51 \ -9.8794 17.5749 42.0000 -Arial.ttf 37 m 41.4044 32.0709 52 R -10.1758 36.7497 42.0000 -Arial.ttf 37 m 41.4044 32.0709 53 < -2.3350 27.8354 27.8704 -Arial.ttf 37 m 41.4044 32.0709 54 4 -9.3965 28.3503 41.6897 -Arial.ttf 37 m 41.4044 32.0709 55 8 -9.9183 26.6626 41.6897 -Arial.ttf 37 m 41.4044 32.0709 56 0 -9.5365 26.8483 41.6897 -Arial.ttf 37 m 41.4044 32.0709 57 A -9.6481 40.5788 42.0000 -Arial.ttf 37 m 41.4044 32.0709 58 E -10.0605 31.4542 42.0000 -Arial.ttf 37 m 41.4044 32.0709 59 B -9.8666 31.4542 42.0000 -Arial.ttf 37 m 41.4044 32.0709 60 v 0.9005 27.8704 30.8793 -Arial.ttf 37 m 41.4044 32.0709 61 k -9.9026 25.1207 42.0000 -Arial.ttf 37 m 41.4044 32.0709 62 J -9.6821 24.0291 42.6606 -Arial.ttf 37 m 41.4044 32.0709 63 U -9.9909 32.9083 42.6606 -Arial.ttf 37 m 41.4044 32.0709 64 j -10.3723 12.3773 53.6167 -Arial.ttf 37 m 41.4044 32.0709 65 ( -9.6034 14.4103 53.6167 -Arial.ttf 37 m 41.4044 32.0709 66 7 -9.7414 26.8523 41.6897 -Arial.ttf 37 m 41.4044 32.0709 67 § -9.8782 26.9729 53.9271 -Arial.ttf 37 m 41.4044 32.0709 68 $ -12.0254 27.6897 49.3355 -Arial.ttf 37 m 41.4044 32.0709 69 € -10.5113 33.0769 43.3212 -Arial.ttf 37 m 41.4044 32.0709 70 / -9.8548 17.5749 42.0000 -Arial.ttf 37 m 41.4044 32.0709 71 C -10.5341 36.0000 43.3212 -Arial.ttf 37 m 41.4044 32.0709 72 * -9.8410 20.3453 17.8852 -Arial.ttf 37 m 41.4044 32.0709 73 ” -9.5828 14.2296 14.0000 -Arial.ttf 37 m 41.4044 32.0709 74 ? -9.8067 26.8483 42.0000 -Arial.ttf 37 m 41.4044 32.0709 75 { -10.0032 16.7375 53.6167 -Arial.ttf 37 m 41.4044 32.0709 76 } -9.8146 16.7375 53.6167 -Arial.ttf 37 m 41.4044 32.0709 77 , 26.5646 5.2626 14.0000 -Arial.ttf 37 m 41.4044 32.0709 78 I -10.1204 5.6936 42.0000 -Arial.ttf 37 m 41.4044 32.0709 79 ° -10.2187 15.8083 15.8083 -Arial.ttf 37 m 41.4044 32.0709 80 K -10.0310 34.5749 42.0000 -Arial.ttf 37 m 41.4044 32.0709 81 H -10.0835 32.9083 42.0000 -Arial.ttf 37 m 41.4044 32.0709 82 q 0.1172 26.3123 43.6877 -Arial.ttf 37 m 41.4044 32.0709 83 & -10.0462 35.1148 42.3103 -Arial.ttf 37 m 41.4044 32.0709 84 ’ -9.8132 5.9231 14.0000 -Arial.ttf 37 m 41.4044 32.0709 85 [ -9.9623 11.0000 53.6167 -Arial.ttf 37 m 41.4044 32.0709 86 - 14.2471 15.4980 5.2626 -Arial.ttf 37 m 41.4044 32.0709 87 Y -10.2155 38.4601 42.0000 -Arial.ttf 37 m 41.4044 32.0709 88 Q -10.4583 39.5749 46.3212 -Arial.ttf 37 m 41.4044 32.0709 89 " -10.0309 15.8083 15.1916 -Arial.ttf 37 m 41.4044 32.0709 90 ! -10.1003 5.2626 42.0000 -Arial.ttf 37 m 41.4044 32.0709 91 x 1.5675 29.1060 30.8793 -Arial.ttf 37 m 41.4044 32.0709 92 ) -10.3262 14.4103 53.6167 -Arial.ttf 37 m 41.4044 32.0709 93 = 1.8228 27.8793 17.8852 -Arial.ttf 37 m 41.4044 32.0709 94 + -2.3238 27.8753 27.8753 -Arial.ttf 37 m 41.4044 32.0709 95 X -9.7174 37.6626 42.0000 -Arial.ttf 37 m 41.4044 32.0709 96 » 3.7579 25.0439 26.1917 -Arial.ttf 37 m 41.4044 32.0709 97 ' -10.0488 5.2626 15.1916 -Arial.ttf 37 m 41.4044 32.0709 98 ¢ -10.0896 25.7813 54.2685 -Arial.ttf 37 m 41.4044 32.0709 99 Z -9.7529 33.0729 42.0000 -Arial.ttf 37 m 41.4044 32.0709 100 > -2.1249 27.8354 27.8704 -Arial.ttf 37 m 41.4044 32.0709 101 ® -10.4793 43.1916 42.9709 -Arial.ttf 37 m 41.4044 32.0709 102 © -10.5637 43.1916 42.9709 -Arial.ttf 37 m 41.4044 32.0709 103 ] -9.9004 11.0000 53.6167 -Arial.ttf 37 m 41.4044 32.0709 104 é -11.4115 27.4690 43.5020 -Arial.ttf 37 m 41.4044 32.0709 105 z 0.8896 26.3123 30.8793 -Arial.ttf 37 m 41.4044 32.0709 106 _ 38.4041 33.3832 5.2626 -Arial.ttf 37 m 41.4044 32.0709 107 ¥ -9.6221 32.0291 42.0000 -Arial.ttf 38 V 40.5788 42.0000 1 t -0.0856 15.0709 42.3103 -Arial.ttf 38 V 40.5788 42.0000 2 h -0.1516 24.2793 42.0000 -Arial.ttf 38 V 40.5788 42.0000 3 a 9.9286 27.4690 32.3813 -Arial.ttf 38 V 40.5788 42.0000 4 n 9.9317 24.2793 32.0709 -Arial.ttf 38 V 40.5788 42.0000 5 P -0.1767 31.4542 42.0000 -Arial.ttf 38 V 40.5788 42.0000 6 o 10.0475 27.4690 32.3813 -Arial.ttf 38 V 40.5788 42.0000 7 e 9.9881 27.4690 32.3813 -Arial.ttf 38 V 40.5788 42.0000 8 : 10.9929 5.2626 30.8793 -Arial.ttf 38 V 40.5788 42.0000 9 r 9.7224 16.5689 32.0709 -Arial.ttf 38 V 40.5788 42.0000 10 l 0.0859 5.2626 42.0000 -Arial.ttf 38 V 40.5788 42.0000 11 i 0.1368 5.2626 42.0000 -Arial.ttf 38 V 40.5788 42.0000 12 1 0.2827 15.2355 41.6897 -Arial.ttf 38 V 40.5788 42.0000 13 | 0.1077 4.1916 54.4980 -Arial.ttf 38 V 40.5788 42.0000 14 N 0.1823 32.9083 42.0000 -Arial.ttf 38 V 40.5788 42.0000 15 f -0.3118 18.0709 42.0000 -Arial.ttf 38 V 40.5788 42.0000 16 g 10.1348 26.3123 43.6877 -Arial.ttf 38 V 40.5788 42.0000 17 d 0.0054 26.3123 42.3103 -Arial.ttf 38 V 40.5788 42.0000 18 W 0.1639 57.1916 42.0000 -Arial.ttf 38 V 40.5788 42.0000 19 s 10.0808 24.9561 32.3813 -Arial.ttf 38 V 40.5788 42.0000 20 c 9.4848 26.8084 32.3813 -Arial.ttf 38 V 40.5788 42.0000 21 u 11.0954 24.2793 31.1896 -Arial.ttf 38 V 40.5788 42.0000 22 3 0.1630 26.8483 41.6897 -Arial.ttf 38 V 40.5788 42.0000 23 ~ 16.8246 29.9083 10.9561 -Arial.ttf 38 V 40.5788 42.0000 24 # -0.0109 31.2646 42.0000 -Arial.ttf 38 V 40.5788 42.0000 25 O -0.6510 39.5749 43.3212 -Arial.ttf 38 V 40.5788 42.0000 26 ` -0.0803 10.9561 8.0769 -Arial.ttf 38 V 40.5788 42.0000 27 @ -0.1186 54.1478 54.3123 -Arial.ttf 38 V 40.5788 42.0000 28 F -0.0923 28.2207 42.0000 -Arial.ttf 38 V 40.5788 42.0000 29 S -0.6488 33.0001 43.3212 -Arial.ttf 38 V 40.5788 42.0000 30 p 9.7785 26.3123 43.6877 -Arial.ttf 38 V 40.5788 42.0000 31 “ 0.0511 13.5690 14.0000 -Arial.ttf 38 V 40.5788 42.0000 32 % -0.0839 44.8793 42.3103 -Arial.ttf 38 V 40.5788 42.0000 33 £ 0.2498 29.8522 42.3103 -Arial.ttf 38 V 40.5788 42.0000 34 . 37.0110 5.2626 5.2626 -Arial.ttf 38 V 40.5788 42.0000 35 2 0.5282 28.6956 41.6897 -Arial.ttf 38 V 40.5788 42.0000 36 5 0.3299 26.8483 41.6897 -Arial.ttf 38 V 40.5788 42.0000 37 m 9.9582 41.4044 32.0709 -Arial.ttf 38 V 40.5788 42.0000 38 V 0.1807 40.5788 42.0000 -Arial.ttf 38 V 40.5788 42.0000 39 6 0.1894 27.8542 41.6897 -Arial.ttf 38 V 40.5788 42.0000 40 w 11.1521 43.4212 30.8793 -Arial.ttf 38 V 40.5788 42.0000 41 T -0.1690 33.6936 42.0000 -Arial.ttf 38 V 40.5788 42.0000 42 M -0.3600 40.5788 42.0000 -Arial.ttf 38 V 40.5788 42.0000 43 G -0.6760 38.6897 43.3212 -Arial.ttf 38 V 40.5788 42.0000 44 b -0.1172 26.3123 42.3103 -Arial.ttf 38 V 40.5788 42.0000 45 9 0.3337 26.8483 41.6897 -Arial.ttf 38 V 40.5788 42.0000 46 ; 11.2459 5.2626 39.6167 -Arial.ttf 38 V 40.5788 42.0000 47 D -0.1378 34.4542 42.0000 -Arial.ttf 38 V 40.5788 42.0000 48 L 0.1406 25.8813 42.0000 -Arial.ttf 38 V 40.5788 42.0000 49 y 11.1203 28.0000 42.4960 -Arial.ttf 38 V 40.5788 42.0000 50 ‘ -0.2233 5.9231 14.0000 -Arial.ttf 38 V 40.5788 42.0000 51 \ -0.0939 17.5749 42.0000 -Arial.ttf 38 V 40.5788 42.0000 52 R -0.0638 36.7497 42.0000 -Arial.ttf 38 V 40.5788 42.0000 53 < 7.7569 27.8354 27.8704 -Arial.ttf 38 V 40.5788 42.0000 54 4 0.2508 28.3503 41.6897 -Arial.ttf 38 V 40.5788 42.0000 55 8 0.3561 26.6626 41.6897 -Arial.ttf 38 V 40.5788 42.0000 56 0 -0.0009 26.8483 41.6897 -Arial.ttf 38 V 40.5788 42.0000 57 A 0.2884 40.5788 42.0000 -Arial.ttf 38 V 40.5788 42.0000 58 E -0.0291 31.4542 42.0000 -Arial.ttf 38 V 40.5788 42.0000 59 B 0.1616 31.4542 42.0000 -Arial.ttf 38 V 40.5788 42.0000 60 v 11.0700 27.8704 30.8793 -Arial.ttf 38 V 40.5788 42.0000 61 k 0.1034 25.1207 42.0000 -Arial.ttf 38 V 40.5788 42.0000 62 J -0.2483 24.0291 42.6606 -Arial.ttf 38 V 40.5788 42.0000 63 U 0.0287 32.9083 42.6606 -Arial.ttf 38 V 40.5788 42.0000 64 j -0.1337 12.3773 53.6167 -Arial.ttf 38 V 40.5788 42.0000 65 ( 0.0065 14.4103 53.6167 -Arial.ttf 38 V 40.5788 42.0000 66 7 0.2195 26.8523 41.6897 -Arial.ttf 38 V 40.5788 42.0000 67 § 0.1061 26.9729 53.9271 -Arial.ttf 38 V 40.5788 42.0000 68 $ -2.1896 27.6897 49.3355 -Arial.ttf 38 V 40.5788 42.0000 69 € -0.5418 33.0769 43.3212 -Arial.ttf 38 V 40.5788 42.0000 70 / 0.3654 17.5749 42.0000 -Arial.ttf 38 V 40.5788 42.0000 71 C -0.7599 36.0000 43.3212 -Arial.ttf 38 V 40.5788 42.0000 72 * -0.4529 20.3453 17.8852 -Arial.ttf 38 V 40.5788 42.0000 73 ” -0.3251 14.2296 14.0000 -Arial.ttf 38 V 40.5788 42.0000 74 ? 0.1146 26.8483 42.0000 -Arial.ttf 38 V 40.5788 42.0000 75 { 0.1051 16.7375 53.6167 -Arial.ttf 38 V 40.5788 42.0000 76 } 0.0885 16.7375 53.6167 -Arial.ttf 38 V 40.5788 42.0000 77 , 36.7885 5.2626 14.0000 -Arial.ttf 38 V 40.5788 42.0000 78 I -0.2445 5.6936 42.0000 -Arial.ttf 38 V 40.5788 42.0000 79 ° -0.0238 15.8083 15.8083 -Arial.ttf 38 V 40.5788 42.0000 80 K -0.4496 34.5749 42.0000 -Arial.ttf 38 V 40.5788 42.0000 81 H 0.0659 32.9083 42.0000 -Arial.ttf 38 V 40.5788 42.0000 82 q 9.7568 26.3123 43.6877 -Arial.ttf 38 V 40.5788 42.0000 83 & 0.2402 35.1148 42.3103 -Arial.ttf 38 V 40.5788 42.0000 84 ’ -0.2567 5.9231 14.0000 -Arial.ttf 38 V 40.5788 42.0000 85 [ 0.1550 11.0000 53.6167 -Arial.ttf 38 V 40.5788 42.0000 86 - 24.2434 15.4980 5.2626 -Arial.ttf 38 V 40.5788 42.0000 87 Y 0.1793 38.4601 42.0000 -Arial.ttf 38 V 40.5788 42.0000 88 Q -0.5322 39.5749 46.3212 -Arial.ttf 38 V 40.5788 42.0000 89 " 0.2036 15.8083 15.1916 -Arial.ttf 38 V 40.5788 42.0000 90 ! -0.1080 5.2626 42.0000 -Arial.ttf 38 V 40.5788 42.0000 91 x 11.2102 29.1060 30.8793 -Arial.ttf 38 V 40.5788 42.0000 92 ) -0.1475 14.4103 53.6167 -Arial.ttf 38 V 40.5788 42.0000 93 = 12.1601 27.8793 17.8852 -Arial.ttf 38 V 40.5788 42.0000 94 + 7.6174 27.8753 27.8753 -Arial.ttf 38 V 40.5788 42.0000 95 X 0.0389 37.6626 42.0000 -Arial.ttf 38 V 40.5788 42.0000 96 » 13.9159 25.0439 26.1917 -Arial.ttf 38 V 40.5788 42.0000 97 ' 0.0456 5.2626 15.1916 -Arial.ttf 38 V 40.5788 42.0000 98 ¢ -0.3202 25.7813 54.2685 -Arial.ttf 38 V 40.5788 42.0000 99 Z 0.0473 33.0729 42.0000 -Arial.ttf 38 V 40.5788 42.0000 100 > 7.7677 27.8354 27.8704 -Arial.ttf 38 V 40.5788 42.0000 101 ® -0.6150 43.1916 42.9709 -Arial.ttf 38 V 40.5788 42.0000 102 © -0.4023 43.1916 42.9709 -Arial.ttf 38 V 40.5788 42.0000 103 ] -0.0446 11.0000 53.6167 -Arial.ttf 38 V 40.5788 42.0000 104 é -1.0205 27.4690 43.5020 -Arial.ttf 38 V 40.5788 42.0000 105 z 10.9828 26.3123 30.8793 -Arial.ttf 38 V 40.5788 42.0000 106 _ 48.2989 33.3832 5.2626 -Arial.ttf 38 V 40.5788 42.0000 107 ¥ -0.2969 32.0291 42.0000 -Arial.ttf 39 6 27.8542 41.6897 1 t -0.3724 15.0709 42.3103 -Arial.ttf 39 6 27.8542 41.6897 2 h -0.2768 24.2793 42.0000 -Arial.ttf 39 6 27.8542 41.6897 3 a 9.4077 27.4690 32.3813 -Arial.ttf 39 6 27.8542 41.6897 4 n 9.7900 24.2793 32.0709 -Arial.ttf 39 6 27.8542 41.6897 5 P -0.1989 31.4542 42.0000 -Arial.ttf 39 6 27.8542 41.6897 6 o 9.5291 27.4690 32.3813 -Arial.ttf 39 6 27.8542 41.6897 7 e 9.5126 27.4690 32.3813 -Arial.ttf 39 6 27.8542 41.6897 8 : 10.8310 5.2626 30.8793 -Arial.ttf 39 6 27.8542 41.6897 9 r 9.4199 16.5689 32.0709 -Arial.ttf 39 6 27.8542 41.6897 10 l -0.3147 5.2626 42.0000 -Arial.ttf 39 6 27.8542 41.6897 11 i -0.5061 5.2626 42.0000 -Arial.ttf 39 6 27.8542 41.6897 12 1 -0.1324 15.2355 41.6897 -Arial.ttf 39 6 27.8542 41.6897 13 | -0.2688 4.1916 54.4980 -Arial.ttf 39 6 27.8542 41.6897 14 N -0.5240 32.9083 42.0000 -Arial.ttf 39 6 27.8542 41.6897 15 f 0.0000 18.0709 42.0000 -Arial.ttf 39 6 27.8542 41.6897 16 g 9.4089 26.3123 43.6877 -Arial.ttf 39 6 27.8542 41.6897 17 d -0.3448 26.3123 42.3103 -Arial.ttf 39 6 27.8542 41.6897 18 W -0.1809 57.1916 42.0000 -Arial.ttf 39 6 27.8542 41.6897 19 s 9.4988 24.9561 32.3813 -Arial.ttf 39 6 27.8542 41.6897 20 c 9.6509 26.8084 32.3813 -Arial.ttf 39 6 27.8542 41.6897 21 u 10.7939 24.2793 31.1896 -Arial.ttf 39 6 27.8542 41.6897 22 3 0.0828 26.8483 41.6897 -Arial.ttf 39 6 27.8542 41.6897 23 ~ 16.4353 29.9083 10.9561 -Arial.ttf 39 6 27.8542 41.6897 24 # -0.3528 31.2646 42.0000 -Arial.ttf 39 6 27.8542 41.6897 25 O -1.1851 39.5749 43.3212 -Arial.ttf 39 6 27.8542 41.6897 26 ` -0.1416 10.9561 8.0769 -Arial.ttf 39 6 27.8542 41.6897 27 @ -0.1500 54.1478 54.3123 -Arial.ttf 39 6 27.8542 41.6897 28 F -0.3799 28.2207 42.0000 -Arial.ttf 39 6 27.8542 41.6897 29 S -1.2152 33.0001 43.3212 -Arial.ttf 39 6 27.8542 41.6897 30 p 9.8589 26.3123 43.6877 -Arial.ttf 39 6 27.8542 41.6897 31 “ -0.3724 13.5690 14.0000 -Arial.ttf 39 6 27.8542 41.6897 32 % -0.3195 44.8793 42.3103 -Arial.ttf 39 6 27.8542 41.6897 33 £ -0.2775 29.8522 42.3103 -Arial.ttf 39 6 27.8542 41.6897 34 . 36.3693 5.2626 5.2626 -Arial.ttf 39 6 27.8542 41.6897 35 2 0.0797 28.6956 41.6897 -Arial.ttf 39 6 27.8542 41.6897 36 5 -0.0430 26.8483 41.6897 -Arial.ttf 39 6 27.8542 41.6897 37 m 9.1458 41.4044 32.0709 -Arial.ttf 39 6 27.8542 41.6897 38 V -0.4127 40.5788 42.0000 -Arial.ttf 39 6 27.8542 41.6897 39 6 0.0598 27.8542 41.6897 -Arial.ttf 39 6 27.8542 41.6897 40 w 10.6230 43.4212 30.8793 -Arial.ttf 39 6 27.8542 41.6897 41 T -0.1448 33.6936 42.0000 -Arial.ttf 39 6 27.8542 41.6897 42 M -0.1564 40.5788 42.0000 -Arial.ttf 39 6 27.8542 41.6897 43 G -0.9156 38.6897 43.3212 -Arial.ttf 39 6 27.8542 41.6897 44 b -0.3086 26.3123 42.3103 -Arial.ttf 39 6 27.8542 41.6897 45 9 0.0540 26.8483 41.6897 -Arial.ttf 39 6 27.8542 41.6897 46 ; 10.7138 5.2626 39.6167 -Arial.ttf 39 6 27.8542 41.6897 47 D -0.5272 34.4542 42.0000 -Arial.ttf 39 6 27.8542 41.6897 48 L -0.4195 25.8813 42.0000 -Arial.ttf 39 6 27.8542 41.6897 49 y 10.6877 28.0000 42.4960 -Arial.ttf 39 6 27.8542 41.6897 50 ‘ -0.1699 5.9231 14.0000 -Arial.ttf 39 6 27.8542 41.6897 51 \ -0.5750 17.5749 42.0000 -Arial.ttf 39 6 27.8542 41.6897 52 R -0.2499 36.7497 42.0000 -Arial.ttf 39 6 27.8542 41.6897 53 < 7.3804 27.8354 27.8704 -Arial.ttf 39 6 27.8542 41.6897 54 4 -0.0376 28.3503 41.6897 -Arial.ttf 39 6 27.8542 41.6897 55 8 0.2125 26.6626 41.6897 -Arial.ttf 39 6 27.8542 41.6897 56 0 0.0094 26.8483 41.6897 -Arial.ttf 39 6 27.8542 41.6897 57 A -0.5008 40.5788 42.0000 -Arial.ttf 39 6 27.8542 41.6897 58 E -0.2011 31.4542 42.0000 -Arial.ttf 39 6 27.8542 41.6897 59 B -0.2039 31.4542 42.0000 -Arial.ttf 39 6 27.8542 41.6897 60 v 10.7631 27.8704 30.8793 -Arial.ttf 39 6 27.8542 41.6897 61 k -0.2472 25.1207 42.0000 -Arial.ttf 39 6 27.8542 41.6897 62 J -0.3448 24.0291 42.6606 -Arial.ttf 39 6 27.8542 41.6897 63 U -0.3353 32.9083 42.6606 -Arial.ttf 39 6 27.8542 41.6897 64 j -0.0612 12.3773 53.6167 -Arial.ttf 39 6 27.8542 41.6897 65 ( -0.4069 14.4103 53.6167 -Arial.ttf 39 6 27.8542 41.6897 66 7 -0.3134 26.8523 41.6897 -Arial.ttf 39 6 27.8542 41.6897 67 § -0.5475 26.9729 53.9271 -Arial.ttf 39 6 27.8542 41.6897 68 $ -2.5196 27.6897 49.3355 -Arial.ttf 39 6 27.8542 41.6897 69 € -0.6248 33.0769 43.3212 -Arial.ttf 39 6 27.8542 41.6897 70 / -0.1019 17.5749 42.0000 -Arial.ttf 39 6 27.8542 41.6897 71 C -0.7598 36.0000 43.3212 -Arial.ttf 39 6 27.8542 41.6897 72 * -0.4042 20.3453 17.8852 -Arial.ttf 39 6 27.8542 41.6897 73 ” -0.2992 14.2296 14.0000 -Arial.ttf 39 6 27.8542 41.6897 74 ? -0.2912 26.8483 42.0000 -Arial.ttf 39 6 27.8542 41.6897 75 { -0.2037 16.7375 53.6167 -Arial.ttf 39 6 27.8542 41.6897 76 } -0.4774 16.7375 53.6167 -Arial.ttf 39 6 27.8542 41.6897 77 , 36.4849 5.2626 14.0000 -Arial.ttf 39 6 27.8542 41.6897 78 I -0.6427 5.6936 42.0000 -Arial.ttf 39 6 27.8542 41.6897 79 ° -0.5214 15.8083 15.8083 -Arial.ttf 39 6 27.8542 41.6897 80 K -0.2908 34.5749 42.0000 -Arial.ttf 39 6 27.8542 41.6897 81 H -0.2519 32.9083 42.0000 -Arial.ttf 39 6 27.8542 41.6897 82 q 9.4485 26.3123 43.6877 -Arial.ttf 39 6 27.8542 41.6897 83 & -0.3309 35.1148 42.3103 -Arial.ttf 39 6 27.8542 41.6897 84 ’ -0.1272 5.9231 14.0000 -Arial.ttf 39 6 27.8542 41.6897 85 [ -0.5431 11.0000 53.6167 -Arial.ttf 39 6 27.8542 41.6897 86 - 24.1814 15.4980 5.2626 -Arial.ttf 39 6 27.8542 41.6897 87 Y -0.0456 38.4601 42.0000 -Arial.ttf 39 6 27.8542 41.6897 88 Q -1.0341 39.5749 46.3212 -Arial.ttf 39 6 27.8542 41.6897 89 " -0.4222 15.8083 15.1916 -Arial.ttf 39 6 27.8542 41.6897 90 ! -0.2532 5.2626 42.0000 -Arial.ttf 39 6 27.8542 41.6897 91 x 10.7525 29.1060 30.8793 -Arial.ttf 39 6 27.8542 41.6897 92 ) -0.3475 14.4103 53.6167 -Arial.ttf 39 6 27.8542 41.6897 93 = 11.6668 27.8793 17.8852 -Arial.ttf 39 6 27.8542 41.6897 94 + 7.1952 27.8753 27.8753 -Arial.ttf 39 6 27.8542 41.6897 95 X -0.5145 37.6626 42.0000 -Arial.ttf 39 6 27.8542 41.6897 96 » 13.8208 25.0439 26.1917 -Arial.ttf 39 6 27.8542 41.6897 97 ' -0.4515 5.2626 15.1916 -Arial.ttf 39 6 27.8542 41.6897 98 ¢ -0.3648 25.7813 54.2685 -Arial.ttf 39 6 27.8542 41.6897 99 Z -0.2923 33.0729 42.0000 -Arial.ttf 39 6 27.8542 41.6897 100 > 6.9358 27.8354 27.8704 -Arial.ttf 39 6 27.8542 41.6897 101 ® -0.6798 43.1916 42.9709 -Arial.ttf 39 6 27.8542 41.6897 102 © -0.7169 43.1916 42.9709 -Arial.ttf 39 6 27.8542 41.6897 103 ] -0.4542 11.0000 53.6167 -Arial.ttf 39 6 27.8542 41.6897 104 é -1.6885 27.4690 43.5020 -Arial.ttf 39 6 27.8542 41.6897 105 z 10.5251 26.3123 30.8793 -Arial.ttf 39 6 27.8542 41.6897 106 _ 47.8922 33.3832 5.2626 -Arial.ttf 39 6 27.8542 41.6897 107 ¥ -0.3299 32.0291 42.0000 -Arial.ttf 40 w 43.4212 30.8793 1 t -11.2876 15.0709 42.3103 -Arial.ttf 40 w 43.4212 30.8793 2 h -10.9982 24.2793 42.0000 -Arial.ttf 40 w 43.4212 30.8793 3 a -1.2219 27.4690 32.3813 -Arial.ttf 40 w 43.4212 30.8793 4 n -1.2744 24.2793 32.0709 -Arial.ttf 40 w 43.4212 30.8793 5 P -11.1143 31.4542 42.0000 -Arial.ttf 40 w 43.4212 30.8793 6 o -1.1842 27.4690 32.3813 -Arial.ttf 40 w 43.4212 30.8793 7 e -1.4320 27.4690 32.3813 -Arial.ttf 40 w 43.4212 30.8793 8 : 0.0155 5.2626 30.8793 -Arial.ttf 40 w 43.4212 30.8793 9 r -1.2568 16.5689 32.0709 -Arial.ttf 40 w 43.4212 30.8793 10 l -11.3970 5.2626 42.0000 -Arial.ttf 40 w 43.4212 30.8793 11 i -11.0889 5.2626 42.0000 -Arial.ttf 40 w 43.4212 30.8793 12 1 -10.7415 15.2355 41.6897 -Arial.ttf 40 w 43.4212 30.8793 13 | -11.3403 4.1916 54.4980 -Arial.ttf 40 w 43.4212 30.8793 14 N -11.3124 32.9083 42.0000 -Arial.ttf 40 w 43.4212 30.8793 15 f -10.9605 18.0709 42.0000 -Arial.ttf 40 w 43.4212 30.8793 16 g -1.1252 26.3123 43.6877 -Arial.ttf 40 w 43.4212 30.8793 17 d -10.9924 26.3123 42.3103 -Arial.ttf 40 w 43.4212 30.8793 18 W -10.9191 57.1916 42.0000 -Arial.ttf 40 w 43.4212 30.8793 19 s -1.1365 24.9561 32.3813 -Arial.ttf 40 w 43.4212 30.8793 20 c -0.9492 26.8084 32.3813 -Arial.ttf 40 w 43.4212 30.8793 21 u 0.1284 24.2793 31.1896 -Arial.ttf 40 w 43.4212 30.8793 22 3 -10.7303 26.8483 41.6897 -Arial.ttf 40 w 43.4212 30.8793 23 ~ 6.0201 29.9083 10.9561 -Arial.ttf 40 w 43.4212 30.8793 24 # -11.2191 31.2646 42.0000 -Arial.ttf 40 w 43.4212 30.8793 25 O -11.7532 39.5749 43.3212 -Arial.ttf 40 w 43.4212 30.8793 26 ` -11.2654 10.9561 8.0769 -Arial.ttf 40 w 43.4212 30.8793 27 @ -11.1933 54.1478 54.3123 -Arial.ttf 40 w 43.4212 30.8793 28 F -10.7430 28.2207 42.0000 -Arial.ttf 40 w 43.4212 30.8793 29 S -11.6199 33.0001 43.3212 -Arial.ttf 40 w 43.4212 30.8793 30 p -1.2267 26.3123 43.6877 -Arial.ttf 40 w 43.4212 30.8793 31 “ -11.1951 13.5690 14.0000 -Arial.ttf 40 w 43.4212 30.8793 32 % -11.0130 44.8793 42.3103 -Arial.ttf 40 w 43.4212 30.8793 33 £ -11.2609 29.8522 42.3103 -Arial.ttf 40 w 43.4212 30.8793 34 . 25.8798 5.2626 5.2626 -Arial.ttf 40 w 43.4212 30.8793 35 2 -11.1344 28.6956 41.6897 -Arial.ttf 40 w 43.4212 30.8793 36 5 -10.8270 26.8483 41.6897 -Arial.ttf 40 w 43.4212 30.8793 37 m -1.4181 41.4044 32.0709 -Arial.ttf 40 w 43.4212 30.8793 38 V -10.8959 40.5788 42.0000 -Arial.ttf 40 w 43.4212 30.8793 39 6 -11.1276 27.8542 41.6897 -Arial.ttf 40 w 43.4212 30.8793 40 w -0.0908 43.4212 30.8793 -Arial.ttf 40 w 43.4212 30.8793 41 T -10.8086 33.6936 42.0000 -Arial.ttf 40 w 43.4212 30.8793 42 M -10.9802 40.5788 42.0000 -Arial.ttf 40 w 43.4212 30.8793 43 G -11.7565 38.6897 43.3212 -Arial.ttf 40 w 43.4212 30.8793 44 b -11.3542 26.3123 42.3103 -Arial.ttf 40 w 43.4212 30.8793 45 9 -10.9330 26.8483 41.6897 -Arial.ttf 40 w 43.4212 30.8793 46 ; -0.3807 5.2626 39.6167 -Arial.ttf 40 w 43.4212 30.8793 47 D -11.2226 34.4542 42.0000 -Arial.ttf 40 w 43.4212 30.8793 48 L -10.5539 25.8813 42.0000 -Arial.ttf 40 w 43.4212 30.8793 49 y 0.0025 28.0000 42.4960 -Arial.ttf 40 w 43.4212 30.8793 50 ‘ -11.0174 5.9231 14.0000 -Arial.ttf 40 w 43.4212 30.8793 51 \ -10.9156 17.5749 42.0000 -Arial.ttf 40 w 43.4212 30.8793 52 R -10.9876 36.7497 42.0000 -Arial.ttf 40 w 43.4212 30.8793 53 < -3.2958 27.8354 27.8704 -Arial.ttf 40 w 43.4212 30.8793 54 4 -10.7100 28.3503 41.6897 -Arial.ttf 40 w 43.4212 30.8793 55 8 -10.4243 26.6626 41.6897 -Arial.ttf 40 w 43.4212 30.8793 56 0 -10.7483 26.8483 41.6897 -Arial.ttf 40 w 43.4212 30.8793 57 A -11.5052 40.5788 42.0000 -Arial.ttf 40 w 43.4212 30.8793 58 E -11.2835 31.4542 42.0000 -Arial.ttf 40 w 43.4212 30.8793 59 B -11.0561 31.4542 42.0000 -Arial.ttf 40 w 43.4212 30.8793 60 v 0.2000 27.8704 30.8793 -Arial.ttf 40 w 43.4212 30.8793 61 k -11.3685 25.1207 42.0000 -Arial.ttf 40 w 43.4212 30.8793 62 J -11.1361 24.0291 42.6606 -Arial.ttf 40 w 43.4212 30.8793 63 U -11.1830 32.9083 42.6606 -Arial.ttf 40 w 43.4212 30.8793 64 j -11.0974 12.3773 53.6167 -Arial.ttf 40 w 43.4212 30.8793 65 ( -11.2704 14.4103 53.6167 -Arial.ttf 40 w 43.4212 30.8793 66 7 -10.5510 26.8523 41.6897 -Arial.ttf 40 w 43.4212 30.8793 67 § -11.5730 26.9729 53.9271 -Arial.ttf 40 w 43.4212 30.8793 68 $ -13.0255 27.6897 49.3355 -Arial.ttf 40 w 43.4212 30.8793 69 € -11.9133 33.0769 43.3212 -Arial.ttf 40 w 43.4212 30.8793 70 / -11.2244 17.5749 42.0000 -Arial.ttf 40 w 43.4212 30.8793 71 C -12.0281 36.0000 43.3212 -Arial.ttf 40 w 43.4212 30.8793 72 * -11.1428 20.3453 17.8852 -Arial.ttf 40 w 43.4212 30.8793 73 ” -11.4521 14.2296 14.0000 -Arial.ttf 40 w 43.4212 30.8793 74 ? -10.9043 26.8483 42.0000 -Arial.ttf 40 w 43.4212 30.8793 75 { -11.1123 16.7375 53.6167 -Arial.ttf 40 w 43.4212 30.8793 76 } -10.9982 16.7375 53.6167 -Arial.ttf 40 w 43.4212 30.8793 77 , 25.5243 5.2626 14.0000 -Arial.ttf 40 w 43.4212 30.8793 78 I -11.3635 5.6936 42.0000 -Arial.ttf 40 w 43.4212 30.8793 79 ° -11.1594 15.8083 15.8083 -Arial.ttf 40 w 43.4212 30.8793 80 K -11.2494 34.5749 42.0000 -Arial.ttf 40 w 43.4212 30.8793 81 H -11.0770 32.9083 42.0000 -Arial.ttf 40 w 43.4212 30.8793 82 q -0.8454 26.3123 43.6877 -Arial.ttf 40 w 43.4212 30.8793 83 & -11.3014 35.1148 42.3103 -Arial.ttf 40 w 43.4212 30.8793 84 ’ -11.2318 5.9231 14.0000 -Arial.ttf 40 w 43.4212 30.8793 85 [ -11.1477 11.0000 53.6167 -Arial.ttf 40 w 43.4212 30.8793 86 - 13.3490 15.4980 5.2626 -Arial.ttf 40 w 43.4212 30.8793 87 Y -11.2778 38.4601 42.0000 -Arial.ttf 40 w 43.4212 30.8793 88 Q -11.7992 39.5749 46.3212 -Arial.ttf 40 w 43.4212 30.8793 89 " -11.2292 15.8083 15.1916 -Arial.ttf 40 w 43.4212 30.8793 90 ! -11.0194 5.2626 42.0000 -Arial.ttf 40 w 43.4212 30.8793 91 x 0.0318 29.1060 30.8793 -Arial.ttf 40 w 43.4212 30.8793 92 ) -11.1234 14.4103 53.6167 -Arial.ttf 40 w 43.4212 30.8793 93 = 0.9358 27.8793 17.8852 -Arial.ttf 40 w 43.4212 30.8793 94 + -3.2771 27.8753 27.8753 -Arial.ttf 40 w 43.4212 30.8793 95 X -11.2655 37.6626 42.0000 -Arial.ttf 40 w 43.4212 30.8793 96 » 2.8561 25.0439 26.1917 -Arial.ttf 40 w 43.4212 30.8793 97 ' -11.1967 5.2626 15.1916 -Arial.ttf 40 w 43.4212 30.8793 98 ¢ -11.2853 25.7813 54.2685 -Arial.ttf 40 w 43.4212 30.8793 99 Z -11.1078 33.0729 42.0000 -Arial.ttf 40 w 43.4212 30.8793 100 > -3.6327 27.8354 27.8704 -Arial.ttf 40 w 43.4212 30.8793 101 ® -11.8051 43.1916 42.9709 -Arial.ttf 40 w 43.4212 30.8793 102 © -11.9049 43.1916 42.9709 -Arial.ttf 40 w 43.4212 30.8793 103 ] -11.0517 11.0000 53.6167 -Arial.ttf 40 w 43.4212 30.8793 104 é -12.3299 27.4690 43.5020 -Arial.ttf 40 w 43.4212 30.8793 105 z 0.0592 26.3123 30.8793 -Arial.ttf 40 w 43.4212 30.8793 106 _ 37.0861 33.3832 5.2626 -Arial.ttf 40 w 43.4212 30.8793 107 ¥ -11.0215 32.0291 42.0000 -Arial.ttf 41 T 33.6936 42.0000 1 t 0.3131 15.0709 42.3103 -Arial.ttf 41 T 33.6936 42.0000 2 h 0.0951 24.2793 42.0000 -Arial.ttf 41 T 33.6936 42.0000 3 a 9.6682 27.4690 32.3813 -Arial.ttf 41 T 33.6936 42.0000 4 n 9.8965 24.2793 32.0709 -Arial.ttf 41 T 33.6936 42.0000 5 P -0.0317 31.4542 42.0000 -Arial.ttf 41 T 33.6936 42.0000 6 o 9.8722 27.4690 32.3813 -Arial.ttf 41 T 33.6936 42.0000 7 e 10.0685 27.4690 32.3813 -Arial.ttf 41 T 33.6936 42.0000 8 : 11.2336 5.2626 30.8793 -Arial.ttf 41 T 33.6936 42.0000 9 r 10.0463 16.5689 32.0709 -Arial.ttf 41 T 33.6936 42.0000 10 l 0.0469 5.2626 42.0000 -Arial.ttf 41 T 33.6936 42.0000 11 i 0.2620 5.2626 42.0000 -Arial.ttf 41 T 33.6936 42.0000 12 1 0.3475 15.2355 41.6897 -Arial.ttf 41 T 33.6936 42.0000 13 | -0.0499 4.1916 54.4980 -Arial.ttf 41 T 33.6936 42.0000 14 N -0.1061 32.9083 42.0000 -Arial.ttf 41 T 33.6936 42.0000 15 f 0.0095 18.0709 42.0000 -Arial.ttf 41 T 33.6936 42.0000 16 g 10.0363 26.3123 43.6877 -Arial.ttf 41 T 33.6936 42.0000 17 d -0.0176 26.3123 42.3103 -Arial.ttf 41 T 33.6936 42.0000 18 W -0.2291 57.1916 42.0000 -Arial.ttf 41 T 33.6936 42.0000 19 s 9.8782 24.9561 32.3813 -Arial.ttf 41 T 33.6936 42.0000 20 c 9.9199 26.8084 32.3813 -Arial.ttf 41 T 33.6936 42.0000 21 u 11.1508 24.2793 31.1896 -Arial.ttf 41 T 33.6936 42.0000 22 3 0.1836 26.8483 41.6897 -Arial.ttf 41 T 33.6936 42.0000 23 ~ 17.0705 29.9083 10.9561 -Arial.ttf 41 T 33.6936 42.0000 24 # 0.0923 31.2646 42.0000 -Arial.ttf 41 T 33.6936 42.0000 25 O -0.8541 39.5749 43.3212 -Arial.ttf 41 T 33.6936 42.0000 26 ` 0.1103 10.9561 8.0769 -Arial.ttf 41 T 33.6936 42.0000 27 @ 0.0812 54.1478 54.3123 -Arial.ttf 41 T 33.6936 42.0000 28 F 0.3542 28.2207 42.0000 -Arial.ttf 41 T 33.6936 42.0000 29 S -0.8038 33.0001 43.3212 -Arial.ttf 41 T 33.6936 42.0000 30 p 9.9982 26.3123 43.6877 -Arial.ttf 41 T 33.6936 42.0000 31 “ 0.1134 13.5690 14.0000 -Arial.ttf 41 T 33.6936 42.0000 32 % 0.0598 44.8793 42.3103 -Arial.ttf 41 T 33.6936 42.0000 33 £ 0.0571 29.8522 42.3103 -Arial.ttf 41 T 33.6936 42.0000 34 . 36.7056 5.2626 5.2626 -Arial.ttf 41 T 33.6936 42.0000 35 2 0.4069 28.6956 41.6897 -Arial.ttf 41 T 33.6936 42.0000 36 5 0.1241 26.8483 41.6897 -Arial.ttf 41 T 33.6936 42.0000 37 m 10.0718 41.4044 32.0709 -Arial.ttf 41 T 33.6936 42.0000 38 V -0.0769 40.5788 42.0000 -Arial.ttf 41 T 33.6936 42.0000 39 6 0.2859 27.8542 41.6897 -Arial.ttf 41 T 33.6936 42.0000 40 w 11.0265 43.4212 30.8793 -Arial.ttf 41 T 33.6936 42.0000 41 T -0.0386 33.6936 42.0000 -Arial.ttf 41 T 33.6936 42.0000 42 M -0.1034 40.5788 42.0000 -Arial.ttf 41 T 33.6936 42.0000 43 G -0.6066 38.6897 43.3212 -Arial.ttf 41 T 33.6936 42.0000 44 b 0.3551 26.3123 42.3103 -Arial.ttf 41 T 33.6936 42.0000 45 9 0.2414 26.8483 41.6897 -Arial.ttf 41 T 33.6936 42.0000 46 ; 11.2224 5.2626 39.6167 -Arial.ttf 41 T 33.6936 42.0000 47 D 0.1893 34.4542 42.0000 -Arial.ttf 41 T 33.6936 42.0000 48 L 0.1575 25.8813 42.0000 -Arial.ttf 41 T 33.6936 42.0000 49 y 11.1169 28.0000 42.4960 -Arial.ttf 41 T 33.6936 42.0000 50 ‘ -0.1172 5.9231 14.0000 -Arial.ttf 41 T 33.6936 42.0000 51 \ -0.1570 17.5749 42.0000 -Arial.ttf 41 T 33.6936 42.0000 52 R -0.0536 36.7497 42.0000 -Arial.ttf 41 T 33.6936 42.0000 53 < 7.6769 27.8354 27.8704 -Arial.ttf 41 T 33.6936 42.0000 54 4 0.5187 28.3503 41.6897 -Arial.ttf 41 T 33.6936 42.0000 55 8 0.2387 26.6626 41.6897 -Arial.ttf 41 T 33.6936 42.0000 56 0 0.1200 26.8483 41.6897 -Arial.ttf 41 T 33.6936 42.0000 57 A 0.2037 40.5788 42.0000 -Arial.ttf 41 T 33.6936 42.0000 58 E 0.2577 31.4542 42.0000 -Arial.ttf 41 T 33.6936 42.0000 59 B 0.0881 31.4542 42.0000 -Arial.ttf 41 T 33.6936 42.0000 60 v 10.9886 27.8704 30.8793 -Arial.ttf 41 T 33.6936 42.0000 61 k -0.1155 25.1207 42.0000 -Arial.ttf 41 T 33.6936 42.0000 62 J 0.0763 24.0291 42.6606 -Arial.ttf 41 T 33.6936 42.0000 63 U 0.0716 32.9083 42.6606 -Arial.ttf 41 T 33.6936 42.0000 64 j 0.0593 12.3773 53.6167 -Arial.ttf 41 T 33.6936 42.0000 65 ( -0.2646 14.4103 53.6167 -Arial.ttf 41 T 33.6936 42.0000 66 7 0.1241 26.8523 41.6897 -Arial.ttf 41 T 33.6936 42.0000 67 § -0.0080 26.9729 53.9271 -Arial.ttf 41 T 33.6936 42.0000 68 $ -2.2468 27.6897 49.3355 -Arial.ttf 41 T 33.6936 42.0000 69 € -0.6748 33.0769 43.3212 -Arial.ttf 41 T 33.6936 42.0000 70 / 0.0291 17.5749 42.0000 -Arial.ttf 41 T 33.6936 42.0000 71 C -0.7230 36.0000 43.3212 -Arial.ttf 41 T 33.6936 42.0000 72 * 0.2943 20.3453 17.8852 -Arial.ttf 41 T 33.6936 42.0000 73 ” -0.0000 14.2296 14.0000 -Arial.ttf 41 T 33.6936 42.0000 74 ? 0.2027 26.8483 42.0000 -Arial.ttf 41 T 33.6936 42.0000 75 { -0.1655 16.7375 53.6167 -Arial.ttf 41 T 33.6936 42.0000 76 } -0.0016 16.7375 53.6167 -Arial.ttf 41 T 33.6936 42.0000 77 , 36.7979 5.2626 14.0000 -Arial.ttf 41 T 33.6936 42.0000 78 I 0.0563 5.6936 42.0000 -Arial.ttf 41 T 33.6936 42.0000 79 ° -0.1129 15.8083 15.8083 -Arial.ttf 41 T 33.6936 42.0000 80 K 0.0233 34.5749 42.0000 -Arial.ttf 41 T 33.6936 42.0000 81 H 0.0730 32.9083 42.0000 -Arial.ttf 41 T 33.6936 42.0000 82 q 9.7976 26.3123 43.6877 -Arial.ttf 41 T 33.6936 42.0000 83 & 0.0399 35.1148 42.3103 -Arial.ttf 41 T 33.6936 42.0000 84 ’ 0.2080 5.9231 14.0000 -Arial.ttf 41 T 33.6936 42.0000 85 [ -0.0031 11.0000 53.6167 -Arial.ttf 41 T 33.6936 42.0000 86 - 24.2424 15.4980 5.2626 -Arial.ttf 41 T 33.6936 42.0000 87 Y 0.1404 38.4601 42.0000 -Arial.ttf 41 T 33.6936 42.0000 88 Q -0.7545 39.5749 46.3212 -Arial.ttf 41 T 33.6936 42.0000 89 " 0.1088 15.8083 15.1916 -Arial.ttf 41 T 33.6936 42.0000 90 ! -0.0818 5.2626 42.0000 -Arial.ttf 41 T 33.6936 42.0000 91 x 10.7717 29.1060 30.8793 -Arial.ttf 41 T 33.6936 42.0000 92 ) -0.1375 14.4103 53.6167 -Arial.ttf 41 T 33.6936 42.0000 93 = 12.2140 27.8793 17.8852 -Arial.ttf 41 T 33.6936 42.0000 94 + 7.5276 27.8753 27.8753 -Arial.ttf 41 T 33.6936 42.0000 95 X 0.2879 37.6626 42.0000 -Arial.ttf 41 T 33.6936 42.0000 96 » 13.6211 25.0439 26.1917 -Arial.ttf 41 T 33.6936 42.0000 97 ' -0.0540 5.2626 15.1916 -Arial.ttf 41 T 33.6936 42.0000 98 ¢ -0.4664 25.7813 54.2685 -Arial.ttf 41 T 33.6936 42.0000 99 Z 0.2636 33.0729 42.0000 -Arial.ttf 41 T 33.6936 42.0000 100 > 7.5204 27.8354 27.8704 -Arial.ttf 41 T 33.6936 42.0000 101 ® -0.4329 43.1916 42.9709 -Arial.ttf 41 T 33.6936 42.0000 102 © -0.7434 43.1916 42.9709 -Arial.ttf 41 T 33.6936 42.0000 103 ] 0.1205 11.0000 53.6167 -Arial.ttf 41 T 33.6936 42.0000 104 é -1.4327 27.4690 43.5020 -Arial.ttf 41 T 33.6936 42.0000 105 z 10.8653 26.3123 30.8793 -Arial.ttf 41 T 33.6936 42.0000 106 _ 48.2581 33.3832 5.2626 -Arial.ttf 41 T 33.6936 42.0000 107 ¥ 0.1146 32.0291 42.0000 -Arial.ttf 42 M 40.5788 42.0000 1 t -0.0813 15.0709 42.3103 -Arial.ttf 42 M 40.5788 42.0000 2 h -0.0939 24.2793 42.0000 -Arial.ttf 42 M 40.5788 42.0000 3 a 10.0366 27.4690 32.3813 -Arial.ttf 42 M 40.5788 42.0000 4 n 9.8893 24.2793 32.0709 -Arial.ttf 42 M 40.5788 42.0000 5 P -0.0594 31.4542 42.0000 -Arial.ttf 42 M 40.5788 42.0000 6 o 9.6146 27.4690 32.3813 -Arial.ttf 42 M 40.5788 42.0000 7 e 9.9345 27.4690 32.3813 -Arial.ttf 42 M 40.5788 42.0000 8 : 11.0799 5.2626 30.8793 -Arial.ttf 42 M 40.5788 42.0000 9 r 9.9858 16.5689 32.0709 -Arial.ttf 42 M 40.5788 42.0000 10 l 0.0542 5.2626 42.0000 -Arial.ttf 42 M 40.5788 42.0000 11 i -0.2455 5.2626 42.0000 -Arial.ttf 42 M 40.5788 42.0000 12 1 0.4870 15.2355 41.6897 -Arial.ttf 42 M 40.5788 42.0000 13 | 0.0376 4.1916 54.4980 -Arial.ttf 42 M 40.5788 42.0000 14 N -0.0521 32.9083 42.0000 -Arial.ttf 42 M 40.5788 42.0000 15 f 0.0161 18.0709 42.0000 -Arial.ttf 42 M 40.5788 42.0000 16 g 10.0739 26.3123 43.6877 -Arial.ttf 42 M 40.5788 42.0000 17 d -0.1256 26.3123 42.3103 -Arial.ttf 42 M 40.5788 42.0000 18 W -0.2624 57.1916 42.0000 -Arial.ttf 42 M 40.5788 42.0000 19 s 9.9110 24.9561 32.3813 -Arial.ttf 42 M 40.5788 42.0000 20 c 9.9540 26.8084 32.3813 -Arial.ttf 42 M 40.5788 42.0000 21 u 11.0601 24.2793 31.1896 -Arial.ttf 42 M 40.5788 42.0000 22 3 0.3935 26.8483 41.6897 -Arial.ttf 42 M 40.5788 42.0000 23 ~ 16.9302 29.9083 10.9561 -Arial.ttf 42 M 40.5788 42.0000 24 # -0.2912 31.2646 42.0000 -Arial.ttf 42 M 40.5788 42.0000 25 O -0.7045 39.5749 43.3212 -Arial.ttf 42 M 40.5788 42.0000 26 ` -0.0756 10.9561 8.0769 -Arial.ttf 42 M 40.5788 42.0000 27 @ 0.0360 54.1478 54.3123 -Arial.ttf 42 M 40.5788 42.0000 28 F -0.0205 28.2207 42.0000 -Arial.ttf 42 M 40.5788 42.0000 29 S -0.7185 33.0001 43.3212 -Arial.ttf 42 M 40.5788 42.0000 30 p 9.9593 26.3123 43.6877 -Arial.ttf 42 M 40.5788 42.0000 31 “ -0.3270 13.5690 14.0000 -Arial.ttf 42 M 40.5788 42.0000 32 % 0.1076 44.8793 42.3103 -Arial.ttf 42 M 40.5788 42.0000 33 £ 0.2871 29.8522 42.3103 -Arial.ttf 42 M 40.5788 42.0000 34 . 36.7718 5.2626 5.2626 -Arial.ttf 42 M 40.5788 42.0000 35 2 0.2146 28.6956 41.6897 -Arial.ttf 42 M 40.5788 42.0000 36 5 0.3932 26.8483 41.6897 -Arial.ttf 42 M 40.5788 42.0000 37 m 9.7592 41.4044 32.0709 -Arial.ttf 42 M 40.5788 42.0000 38 V -0.1807 40.5788 42.0000 -Arial.ttf 42 M 40.5788 42.0000 39 6 0.2785 27.8542 41.6897 -Arial.ttf 42 M 40.5788 42.0000 40 w 11.2257 43.4212 30.8793 -Arial.ttf 42 M 40.5788 42.0000 41 T -0.0271 33.6936 42.0000 -Arial.ttf 42 M 40.5788 42.0000 42 M -0.0027 40.5788 42.0000 -Arial.ttf 42 M 40.5788 42.0000 43 G -0.6430 38.6897 43.3212 -Arial.ttf 42 M 40.5788 42.0000 44 b -0.1353 26.3123 42.3103 -Arial.ttf 42 M 40.5788 42.0000 45 9 0.0415 26.8483 41.6897 -Arial.ttf 42 M 40.5788 42.0000 46 ; 11.3028 5.2626 39.6167 -Arial.ttf 42 M 40.5788 42.0000 47 D 0.1226 34.4542 42.0000 -Arial.ttf 42 M 40.5788 42.0000 48 L -0.2375 25.8813 42.0000 -Arial.ttf 42 M 40.5788 42.0000 49 y 10.7003 28.0000 42.4960 -Arial.ttf 42 M 40.5788 42.0000 50 ‘ -0.1888 5.9231 14.0000 -Arial.ttf 42 M 40.5788 42.0000 51 \ 0.3553 17.5749 42.0000 -Arial.ttf 42 M 40.5788 42.0000 52 R -0.1588 36.7497 42.0000 -Arial.ttf 42 M 40.5788 42.0000 53 < 7.2537 27.8354 27.8704 -Arial.ttf 42 M 40.5788 42.0000 54 4 0.2217 28.3503 41.6897 -Arial.ttf 42 M 40.5788 42.0000 55 8 0.5789 26.6626 41.6897 -Arial.ttf 42 M 40.5788 42.0000 56 0 0.3268 26.8483 41.6897 -Arial.ttf 42 M 40.5788 42.0000 57 A 0.0031 40.5788 42.0000 -Arial.ttf 42 M 40.5788 42.0000 58 E -0.0345 31.4542 42.0000 -Arial.ttf 42 M 40.5788 42.0000 59 B 0.3930 31.4542 42.0000 -Arial.ttf 42 M 40.5788 42.0000 60 v 11.2642 27.8704 30.8793 -Arial.ttf 42 M 40.5788 42.0000 61 k -0.2772 25.1207 42.0000 -Arial.ttf 42 M 40.5788 42.0000 62 J -0.2205 24.0291 42.6606 -Arial.ttf 42 M 40.5788 42.0000 63 U -0.0477 32.9083 42.6606 -Arial.ttf 42 M 40.5788 42.0000 64 j 0.1601 12.3773 53.6167 -Arial.ttf 42 M 40.5788 42.0000 65 ( 0.2678 14.4103 53.6167 -Arial.ttf 42 M 40.5788 42.0000 66 7 0.4480 26.8523 41.6897 -Arial.ttf 42 M 40.5788 42.0000 67 § -0.1945 26.9729 53.9271 -Arial.ttf 42 M 40.5788 42.0000 68 $ -1.9504 27.6897 49.3355 -Arial.ttf 42 M 40.5788 42.0000 69 € -0.5009 33.0769 43.3212 -Arial.ttf 42 M 40.5788 42.0000 70 / 0.2996 17.5749 42.0000 -Arial.ttf 42 M 40.5788 42.0000 71 C -0.6373 36.0000 43.3212 -Arial.ttf 42 M 40.5788 42.0000 72 * -0.0446 20.3453 17.8852 -Arial.ttf 42 M 40.5788 42.0000 73 ” -0.3435 14.2296 14.0000 -Arial.ttf 42 M 40.5788 42.0000 74 ? -0.0333 26.8483 42.0000 -Arial.ttf 42 M 40.5788 42.0000 75 { -0.3986 16.7375 53.6167 -Arial.ttf 42 M 40.5788 42.0000 76 } -0.0110 16.7375 53.6167 -Arial.ttf 42 M 40.5788 42.0000 77 , 36.8723 5.2626 14.0000 -Arial.ttf 42 M 40.5788 42.0000 78 I -0.0851 5.6936 42.0000 -Arial.ttf 42 M 40.5788 42.0000 79 ° 0.2749 15.8083 15.8083 -Arial.ttf 42 M 40.5788 42.0000 80 K -0.0233 34.5749 42.0000 -Arial.ttf 42 M 40.5788 42.0000 81 H 0.0248 32.9083 42.0000 -Arial.ttf 42 M 40.5788 42.0000 82 q 9.7954 26.3123 43.6877 -Arial.ttf 42 M 40.5788 42.0000 83 & -0.1878 35.1148 42.3103 -Arial.ttf 42 M 40.5788 42.0000 84 ’ 0.1989 5.9231 14.0000 -Arial.ttf 42 M 40.5788 42.0000 85 [ 0.2577 11.0000 53.6167 -Arial.ttf 42 M 40.5788 42.0000 86 - 24.2484 15.4980 5.2626 -Arial.ttf 42 M 40.5788 42.0000 87 Y 0.0631 38.4601 42.0000 -Arial.ttf 42 M 40.5788 42.0000 88 Q -0.3913 39.5749 46.3212 -Arial.ttf 42 M 40.5788 42.0000 89 " -0.3320 15.8083 15.1916 -Arial.ttf 42 M 40.5788 42.0000 90 ! -0.0123 5.2626 42.0000 -Arial.ttf 42 M 40.5788 42.0000 91 x 11.3345 29.1060 30.8793 -Arial.ttf 42 M 40.5788 42.0000 92 ) -0.1914 14.4103 53.6167 -Arial.ttf 42 M 40.5788 42.0000 93 = 11.9572 27.8793 17.8852 -Arial.ttf 42 M 40.5788 42.0000 94 + 7.1905 27.8753 27.8753 -Arial.ttf 42 M 40.5788 42.0000 95 X 0.0617 37.6626 42.0000 -Arial.ttf 42 M 40.5788 42.0000 96 » 13.9636 25.0439 26.1917 -Arial.ttf 42 M 40.5788 42.0000 97 ' 0.1943 5.2626 15.1916 -Arial.ttf 42 M 40.5788 42.0000 98 ¢ -0.4436 25.7813 54.2685 -Arial.ttf 42 M 40.5788 42.0000 99 Z 0.2015 33.0729 42.0000 -Arial.ttf 42 M 40.5788 42.0000 100 > 7.3969 27.8354 27.8704 -Arial.ttf 42 M 40.5788 42.0000 101 ® -0.6637 43.1916 42.9709 -Arial.ttf 42 M 40.5788 42.0000 102 © -0.7056 43.1916 42.9709 -Arial.ttf 42 M 40.5788 42.0000 103 ] -0.3945 11.0000 53.6167 -Arial.ttf 42 M 40.5788 42.0000 104 é -1.2113 27.4690 43.5020 -Arial.ttf 42 M 40.5788 42.0000 105 z 11.2325 26.3123 30.8793 -Arial.ttf 42 M 40.5788 42.0000 106 _ 48.5667 33.3832 5.2626 -Arial.ttf 42 M 40.5788 42.0000 107 ¥ 0.0176 32.0291 42.0000 -Arial.ttf 43 G 38.6897 43.3212 1 t 0.7805 15.0709 42.3103 -Arial.ttf 43 G 38.6897 43.3212 2 h 0.4713 24.2793 42.0000 -Arial.ttf 43 G 38.6897 43.3212 3 a 10.6465 27.4690 32.3813 -Arial.ttf 43 G 38.6897 43.3212 4 n 10.4820 24.2793 32.0709 -Arial.ttf 43 G 38.6897 43.3212 5 P 0.6977 31.4542 42.0000 -Arial.ttf 43 G 38.6897 43.3212 6 o 10.4985 27.4690 32.3813 -Arial.ttf 43 G 38.6897 43.3212 7 e 10.6560 27.4690 32.3813 -Arial.ttf 43 G 38.6897 43.3212 8 : 11.8024 5.2626 30.8793 -Arial.ttf 43 G 38.6897 43.3212 9 r 11.1137 16.5689 32.0709 -Arial.ttf 43 G 38.6897 43.3212 10 l 0.7212 5.2626 42.0000 -Arial.ttf 43 G 38.6897 43.3212 11 i 0.6320 5.2626 42.0000 -Arial.ttf 43 G 38.6897 43.3212 12 1 0.8662 15.2355 41.6897 -Arial.ttf 43 G 38.6897 43.3212 13 | 0.3929 4.1916 54.4980 -Arial.ttf 43 G 38.6897 43.3212 14 N 1.0784 32.9083 42.0000 -Arial.ttf 43 G 38.6897 43.3212 15 f 0.5127 18.0709 42.0000 -Arial.ttf 43 G 38.6897 43.3212 16 g 10.5643 26.3123 43.6877 -Arial.ttf 43 G 38.6897 43.3212 17 d 0.4223 26.3123 42.3103 -Arial.ttf 43 G 38.6897 43.3212 18 W 0.4671 57.1916 42.0000 -Arial.ttf 43 G 38.6897 43.3212 19 s 10.5304 24.9561 32.3813 -Arial.ttf 43 G 38.6897 43.3212 20 c 10.3453 26.8084 32.3813 -Arial.ttf 43 G 38.6897 43.3212 21 u 11.6667 24.2793 31.1896 -Arial.ttf 43 G 38.6897 43.3212 22 3 1.0081 26.8483 41.6897 -Arial.ttf 43 G 38.6897 43.3212 23 ~ 17.8459 29.9083 10.9561 -Arial.ttf 43 G 38.6897 43.3212 24 # 0.5396 31.2646 42.0000 -Arial.ttf 43 G 38.6897 43.3212 25 O 0.3007 39.5749 43.3212 -Arial.ttf 43 G 38.6897 43.3212 26 ` 0.7253 10.9561 8.0769 -Arial.ttf 43 G 38.6897 43.3212 27 @ 0.9956 54.1478 54.3123 -Arial.ttf 43 G 38.6897 43.3212 28 F 0.7571 28.2207 42.0000 -Arial.ttf 43 G 38.6897 43.3212 29 S 0.0122 33.0001 43.3212 -Arial.ttf 43 G 38.6897 43.3212 30 p 10.4391 26.3123 43.6877 -Arial.ttf 43 G 38.6897 43.3212 31 “ 0.9518 13.5690 14.0000 -Arial.ttf 43 G 38.6897 43.3212 32 % 0.7296 44.8793 42.3103 -Arial.ttf 43 G 38.6897 43.3212 33 £ 0.5309 29.8522 42.3103 -Arial.ttf 43 G 38.6897 43.3212 34 . 37.4034 5.2626 5.2626 -Arial.ttf 43 G 38.6897 43.3212 35 2 0.6579 28.6956 41.6897 -Arial.ttf 43 G 38.6897 43.3212 36 5 1.2992 26.8483 41.6897 -Arial.ttf 43 G 38.6897 43.3212 37 m 10.4791 41.4044 32.0709 -Arial.ttf 43 G 38.6897 43.3212 38 V 0.6885 40.5788 42.0000 -Arial.ttf 43 G 38.6897 43.3212 39 6 1.0665 27.8542 41.6897 -Arial.ttf 43 G 38.6897 43.3212 40 w 12.0437 43.4212 30.8793 -Arial.ttf 43 G 38.6897 43.3212 41 T 0.5281 33.6936 42.0000 -Arial.ttf 43 G 38.6897 43.3212 42 M 0.5419 40.5788 42.0000 -Arial.ttf 43 G 38.6897 43.3212 43 G 0.1473 38.6897 43.3212 -Arial.ttf 43 G 38.6897 43.3212 44 b 0.6676 26.3123 42.3103 -Arial.ttf 43 G 38.6897 43.3212 45 9 0.7992 26.8483 41.6897 -Arial.ttf 43 G 38.6897 43.3212 46 ; 12.0543 5.2626 39.6167 -Arial.ttf 43 G 38.6897 43.3212 47 D 0.4724 34.4542 42.0000 -Arial.ttf 43 G 38.6897 43.3212 48 L 0.7576 25.8813 42.0000 -Arial.ttf 43 G 38.6897 43.3212 49 y 11.5665 28.0000 42.4960 -Arial.ttf 43 G 38.6897 43.3212 50 ‘ 0.5748 5.9231 14.0000 -Arial.ttf 43 G 38.6897 43.3212 51 \ 0.6113 17.5749 42.0000 -Arial.ttf 43 G 38.6897 43.3212 52 R 0.8180 36.7497 42.0000 -Arial.ttf 43 G 38.6897 43.3212 53 < 7.7871 27.8354 27.8704 -Arial.ttf 43 G 38.6897 43.3212 54 4 1.0594 28.3503 41.6897 -Arial.ttf 43 G 38.6897 43.3212 55 8 0.9805 26.6626 41.6897 -Arial.ttf 43 G 38.6897 43.3212 56 0 1.0659 26.8483 41.6897 -Arial.ttf 43 G 38.6897 43.3212 57 A 0.7824 40.5788 42.0000 -Arial.ttf 43 G 38.6897 43.3212 58 E 0.5472 31.4542 42.0000 -Arial.ttf 43 G 38.6897 43.3212 59 B 0.3145 31.4542 42.0000 -Arial.ttf 43 G 38.6897 43.3212 60 v 11.7066 27.8704 30.8793 -Arial.ttf 43 G 38.6897 43.3212 61 k 0.6401 25.1207 42.0000 -Arial.ttf 43 G 38.6897 43.3212 62 J 0.7171 24.0291 42.6606 -Arial.ttf 43 G 38.6897 43.3212 63 U 0.3669 32.9083 42.6606 -Arial.ttf 43 G 38.6897 43.3212 64 j 0.4266 12.3773 53.6167 -Arial.ttf 43 G 38.6897 43.3212 65 ( 0.7212 14.4103 53.6167 -Arial.ttf 43 G 38.6897 43.3212 66 7 0.9396 26.8523 41.6897 -Arial.ttf 43 G 38.6897 43.3212 67 § 0.6606 26.9729 53.9271 -Arial.ttf 43 G 38.6897 43.3212 68 $ -1.0809 27.6897 49.3355 -Arial.ttf 43 G 38.6897 43.3212 69 € 0.2320 33.0769 43.3212 -Arial.ttf 43 G 38.6897 43.3212 70 / 0.4883 17.5749 42.0000 -Arial.ttf 43 G 38.6897 43.3212 71 C -0.0425 36.0000 43.3212 -Arial.ttf 43 G 38.6897 43.3212 72 * 0.4014 20.3453 17.8852 -Arial.ttf 43 G 38.6897 43.3212 73 ” 0.7491 14.2296 14.0000 -Arial.ttf 43 G 38.6897 43.3212 74 ? 0.7969 26.8483 42.0000 -Arial.ttf 43 G 38.6897 43.3212 75 { 0.7177 16.7375 53.6167 -Arial.ttf 43 G 38.6897 43.3212 76 } 0.5587 16.7375 53.6167 -Arial.ttf 43 G 38.6897 43.3212 77 , 37.4312 5.2626 14.0000 -Arial.ttf 43 G 38.6897 43.3212 78 I 0.7585 5.6936 42.0000 -Arial.ttf 43 G 38.6897 43.3212 79 ° 0.9666 15.8083 15.8083 -Arial.ttf 43 G 38.6897 43.3212 80 K 0.7958 34.5749 42.0000 -Arial.ttf 43 G 38.6897 43.3212 81 H 0.8137 32.9083 42.0000 -Arial.ttf 43 G 38.6897 43.3212 82 q 10.5897 26.3123 43.6877 -Arial.ttf 43 G 38.6897 43.3212 83 & 0.8686 35.1148 42.3103 -Arial.ttf 43 G 38.6897 43.3212 84 ’ 0.5754 5.9231 14.0000 -Arial.ttf 43 G 38.6897 43.3212 85 [ 0.7878 11.0000 53.6167 -Arial.ttf 43 G 38.6897 43.3212 86 - 24.8173 15.4980 5.2626 -Arial.ttf 43 G 38.6897 43.3212 87 Y 0.8357 38.4601 42.0000 -Arial.ttf 43 G 38.6897 43.3212 88 Q 0.1134 39.5749 46.3212 -Arial.ttf 43 G 38.6897 43.3212 89 " 0.5584 15.8083 15.1916 -Arial.ttf 43 G 38.6897 43.3212 90 ! 0.6360 5.2626 42.0000 -Arial.ttf 43 G 38.6897 43.3212 91 x 12.1485 29.1060 30.8793 -Arial.ttf 43 G 38.6897 43.3212 92 ) 0.7136 14.4103 53.6167 -Arial.ttf 43 G 38.6897 43.3212 93 = 12.4966 27.8793 17.8852 -Arial.ttf 43 G 38.6897 43.3212 94 + 8.0795 27.8753 27.8753 -Arial.ttf 43 G 38.6897 43.3212 95 X 0.4616 37.6626 42.0000 -Arial.ttf 43 G 38.6897 43.3212 96 » 14.4914 25.0439 26.1917 -Arial.ttf 43 G 38.6897 43.3212 97 ' 0.7969 5.2626 15.1916 -Arial.ttf 43 G 38.6897 43.3212 98 ¢ 0.5287 25.7813 54.2685 -Arial.ttf 43 G 38.6897 43.3212 99 Z 0.5491 33.0729 42.0000 -Arial.ttf 43 G 38.6897 43.3212 100 > 8.2399 27.8354 27.8704 -Arial.ttf 43 G 38.6897 43.3212 101 ® -0.3091 43.1916 42.9709 -Arial.ttf 43 G 38.6897 43.3212 102 © 0.1534 43.1916 42.9709 -Arial.ttf 43 G 38.6897 43.3212 103 ] 0.6297 11.0000 53.6167 -Arial.ttf 43 G 38.6897 43.3212 104 é -0.1538 27.4690 43.5020 -Arial.ttf 43 G 38.6897 43.3212 105 z 11.6455 26.3123 30.8793 -Arial.ttf 43 G 38.6897 43.3212 106 _ 49.0509 33.3832 5.2626 -Arial.ttf 43 G 38.6897 43.3212 107 ¥ 0.3995 32.0291 42.0000 -Arial.ttf 44 b 26.3123 42.3103 1 t -0.0689 15.0709 42.3103 -Arial.ttf 44 b 26.3123 42.3103 2 h 0.0801 24.2793 42.0000 -Arial.ttf 44 b 26.3123 42.3103 3 a 9.8118 27.4690 32.3813 -Arial.ttf 44 b 26.3123 42.3103 4 n 10.0118 24.2793 32.0709 -Arial.ttf 44 b 26.3123 42.3103 5 P -0.4126 31.4542 42.0000 -Arial.ttf 44 b 26.3123 42.3103 6 o 10.1703 27.4690 32.3813 -Arial.ttf 44 b 26.3123 42.3103 7 e 9.7764 27.4690 32.3813 -Arial.ttf 44 b 26.3123 42.3103 8 : 11.2946 5.2626 30.8793 -Arial.ttf 44 b 26.3123 42.3103 9 r 10.1237 16.5689 32.0709 -Arial.ttf 44 b 26.3123 42.3103 10 l -0.0264 5.2626 42.0000 -Arial.ttf 44 b 26.3123 42.3103 11 i 0.2279 5.2626 42.0000 -Arial.ttf 44 b 26.3123 42.3103 12 1 0.4197 15.2355 41.6897 -Arial.ttf 44 b 26.3123 42.3103 13 | 0.1473 4.1916 54.4980 -Arial.ttf 44 b 26.3123 42.3103 14 N 0.1378 32.9083 42.0000 -Arial.ttf 44 b 26.3123 42.3103 15 f -0.1544 18.0709 42.0000 -Arial.ttf 44 b 26.3123 42.3103 16 g 10.1406 26.3123 43.6877 -Arial.ttf 44 b 26.3123 42.3103 17 d 0.3060 26.3123 42.3103 -Arial.ttf 44 b 26.3123 42.3103 18 W 0.1027 57.1916 42.0000 -Arial.ttf 44 b 26.3123 42.3103 19 s 9.8544 24.9561 32.3813 -Arial.ttf 44 b 26.3123 42.3103 20 c 10.2202 26.8084 32.3813 -Arial.ttf 44 b 26.3123 42.3103 21 u 11.3800 24.2793 31.1896 -Arial.ttf 44 b 26.3123 42.3103 22 3 0.3036 26.8483 41.6897 -Arial.ttf 44 b 26.3123 42.3103 23 ~ 16.6816 29.9083 10.9561 -Arial.ttf 44 b 26.3123 42.3103 24 # -0.2961 31.2646 42.0000 -Arial.ttf 44 b 26.3123 42.3103 25 O -0.4860 39.5749 43.3212 -Arial.ttf 44 b 26.3123 42.3103 26 ` -0.0851 10.9561 8.0769 -Arial.ttf 44 b 26.3123 42.3103 27 @ -0.1092 54.1478 54.3123 -Arial.ttf 44 b 26.3123 42.3103 28 F -0.1782 28.2207 42.0000 -Arial.ttf 44 b 26.3123 42.3103 29 S -0.8054 33.0001 43.3212 -Arial.ttf 44 b 26.3123 42.3103 30 p 10.1678 26.3123 43.6877 -Arial.ttf 44 b 26.3123 42.3103 31 “ -0.0550 13.5690 14.0000 -Arial.ttf 44 b 26.3123 42.3103 32 % -0.1203 44.8793 42.3103 -Arial.ttf 44 b 26.3123 42.3103 33 £ 0.0286 29.8522 42.3103 -Arial.ttf 44 b 26.3123 42.3103 34 . 36.6551 5.2626 5.2626 -Arial.ttf 44 b 26.3123 42.3103 35 2 0.4471 28.6956 41.6897 -Arial.ttf 44 b 26.3123 42.3103 36 5 0.4084 26.8483 41.6897 -Arial.ttf 44 b 26.3123 42.3103 37 m 10.0835 41.4044 32.0709 -Arial.ttf 44 b 26.3123 42.3103 38 V 0.1256 40.5788 42.0000 -Arial.ttf 44 b 26.3123 42.3103 39 6 0.3157 27.8542 41.6897 -Arial.ttf 44 b 26.3123 42.3103 40 w 11.3306 43.4212 30.8793 -Arial.ttf 44 b 26.3123 42.3103 41 T 0.1560 33.6936 42.0000 -Arial.ttf 44 b 26.3123 42.3103 42 M -0.0547 40.5788 42.0000 -Arial.ttf 44 b 26.3123 42.3103 43 G -0.7031 38.6897 43.3212 -Arial.ttf 44 b 26.3123 42.3103 44 b -0.0810 26.3123 42.3103 -Arial.ttf 44 b 26.3123 42.3103 45 9 0.0892 26.8483 41.6897 -Arial.ttf 44 b 26.3123 42.3103 46 ; 11.1843 5.2626 39.6167 -Arial.ttf 44 b 26.3123 42.3103 47 D -0.1746 34.4542 42.0000 -Arial.ttf 44 b 26.3123 42.3103 48 L -0.1046 25.8813 42.0000 -Arial.ttf 44 b 26.3123 42.3103 49 y 11.3122 28.0000 42.4960 -Arial.ttf 44 b 26.3123 42.3103 50 ‘ 0.1629 5.9231 14.0000 -Arial.ttf 44 b 26.3123 42.3103 51 \ -0.1984 17.5749 42.0000 -Arial.ttf 44 b 26.3123 42.3103 52 R -0.0638 36.7497 42.0000 -Arial.ttf 44 b 26.3123 42.3103 53 < 7.5268 27.8354 27.8704 -Arial.ttf 44 b 26.3123 42.3103 54 4 0.3931 28.3503 41.6897 -Arial.ttf 44 b 26.3123 42.3103 55 8 0.3103 26.6626 41.6897 -Arial.ttf 44 b 26.3123 42.3103 56 0 -0.0429 26.8483 41.6897 -Arial.ttf 44 b 26.3123 42.3103 57 A -0.0621 40.5788 42.0000 -Arial.ttf 44 b 26.3123 42.3103 58 E 0.2122 31.4542 42.0000 -Arial.ttf 44 b 26.3123 42.3103 59 B 0.0895 31.4542 42.0000 -Arial.ttf 44 b 26.3123 42.3103 60 v 11.3143 27.8704 30.8793 -Arial.ttf 44 b 26.3123 42.3103 61 k 0.1404 25.1207 42.0000 -Arial.ttf 44 b 26.3123 42.3103 62 J -0.0689 24.0291 42.6606 -Arial.ttf 44 b 26.3123 42.3103 63 U -0.2953 32.9083 42.6606 -Arial.ttf 44 b 26.3123 42.3103 64 j 0.0345 12.3773 53.6167 -Arial.ttf 44 b 26.3123 42.3103 65 ( -0.0138 14.4103 53.6167 -Arial.ttf 44 b 26.3123 42.3103 66 7 0.2755 26.8523 41.6897 -Arial.ttf 44 b 26.3123 42.3103 67 § 0.2552 26.9729 53.9271 -Arial.ttf 44 b 26.3123 42.3103 68 $ -2.0099 27.6897 49.3355 -Arial.ttf 44 b 26.3123 42.3103 69 € -0.6123 33.0769 43.3212 -Arial.ttf 44 b 26.3123 42.3103 70 / 0.1608 17.5749 42.0000 -Arial.ttf 44 b 26.3123 42.3103 71 C -0.7089 36.0000 43.3212 -Arial.ttf 44 b 26.3123 42.3103 72 * -0.2885 20.3453 17.8852 -Arial.ttf 44 b 26.3123 42.3103 73 ” -0.2233 14.2296 14.0000 -Arial.ttf 44 b 26.3123 42.3103 74 ? 0.0315 26.8483 42.0000 -Arial.ttf 44 b 26.3123 42.3103 75 { -0.0100 16.7375 53.6167 -Arial.ttf 44 b 26.3123 42.3103 76 } 0.3134 16.7375 53.6167 -Arial.ttf 44 b 26.3123 42.3103 77 , 36.5179 5.2626 14.0000 -Arial.ttf 44 b 26.3123 42.3103 78 I -0.1462 5.6936 42.0000 -Arial.ttf 44 b 26.3123 42.3103 79 ° -0.0192 15.8083 15.8083 -Arial.ttf 44 b 26.3123 42.3103 80 K -0.4607 34.5749 42.0000 -Arial.ttf 44 b 26.3123 42.3103 81 H 0.0232 32.9083 42.0000 -Arial.ttf 44 b 26.3123 42.3103 82 q 9.8506 26.3123 43.6877 -Arial.ttf 44 b 26.3123 42.3103 83 & -0.2071 35.1148 42.3103 -Arial.ttf 44 b 26.3123 42.3103 84 ’ -0.0939 5.9231 14.0000 -Arial.ttf 44 b 26.3123 42.3103 85 [ -0.0863 11.0000 53.6167 -Arial.ttf 44 b 26.3123 42.3103 86 - 24.1346 15.4980 5.2626 -Arial.ttf 44 b 26.3123 42.3103 87 Y 0.0414 38.4601 42.0000 -Arial.ttf 44 b 26.3123 42.3103 88 Q -0.7390 39.5749 46.3212 -Arial.ttf 44 b 26.3123 42.3103 89 " -0.3490 15.8083 15.1916 -Arial.ttf 44 b 26.3123 42.3103 90 ! 0.0106 5.2626 42.0000 -Arial.ttf 44 b 26.3123 42.3103 91 x 11.3387 29.1060 30.8793 -Arial.ttf 44 b 26.3123 42.3103 92 ) -0.0276 14.4103 53.6167 -Arial.ttf 44 b 26.3123 42.3103 93 = 11.9670 27.8793 17.8852 -Arial.ttf 44 b 26.3123 42.3103 94 + 7.4361 27.8753 27.8753 -Arial.ttf 44 b 26.3123 42.3103 95 X 0.0536 37.6626 42.0000 -Arial.ttf 44 b 26.3123 42.3103 96 » 13.9673 25.0439 26.1917 -Arial.ttf 44 b 26.3123 42.3103 97 ' 0.0550 5.2626 15.1916 -Arial.ttf 44 b 26.3123 42.3103 98 ¢ 0.0501 25.7813 54.2685 -Arial.ttf 44 b 26.3123 42.3103 99 Z -0.1050 33.0729 42.0000 -Arial.ttf 44 b 26.3123 42.3103 100 > 7.6661 27.8354 27.8704 -Arial.ttf 44 b 26.3123 42.3103 101 ® -0.6968 43.1916 42.9709 -Arial.ttf 44 b 26.3123 42.3103 102 © -0.6467 43.1916 42.9709 -Arial.ttf 44 b 26.3123 42.3103 103 ] 0.2376 11.0000 53.6167 -Arial.ttf 44 b 26.3123 42.3103 104 é -1.1778 27.4690 43.5020 -Arial.ttf 44 b 26.3123 42.3103 105 z 11.0231 26.3123 30.8793 -Arial.ttf 44 b 26.3123 42.3103 106 _ 48.3086 33.3832 5.2626 -Arial.ttf 44 b 26.3123 42.3103 107 ¥ -0.1009 32.0291 42.0000 -Arial.ttf 45 9 26.8483 41.6897 1 t -0.4897 15.0709 42.3103 -Arial.ttf 45 9 26.8483 41.6897 2 h -0.2155 24.2793 42.0000 -Arial.ttf 45 9 26.8483 41.6897 3 a 9.2315 27.4690 32.3813 -Arial.ttf 45 9 26.8483 41.6897 4 n 9.6548 24.2793 32.0709 -Arial.ttf 45 9 26.8483 41.6897 5 P -0.3543 31.4542 42.0000 -Arial.ttf 45 9 26.8483 41.6897 6 o 9.5110 27.4690 32.3813 -Arial.ttf 45 9 26.8483 41.6897 7 e 9.5042 27.4690 32.3813 -Arial.ttf 45 9 26.8483 41.6897 8 : 10.9695 5.2626 30.8793 -Arial.ttf 45 9 26.8483 41.6897 9 r 9.6161 16.5689 32.0709 -Arial.ttf 45 9 26.8483 41.6897 10 l -0.1586 5.2626 42.0000 -Arial.ttf 45 9 26.8483 41.6897 11 i -0.4121 5.2626 42.0000 -Arial.ttf 45 9 26.8483 41.6897 12 1 0.0594 15.2355 41.6897 -Arial.ttf 45 9 26.8483 41.6897 13 | -0.2471 4.1916 54.4980 -Arial.ttf 45 9 26.8483 41.6897 14 N -0.1132 32.9083 42.0000 -Arial.ttf 45 9 26.8483 41.6897 15 f -0.5039 18.0709 42.0000 -Arial.ttf 45 9 26.8483 41.6897 16 g 9.7549 26.3123 43.6877 -Arial.ttf 45 9 26.8483 41.6897 17 d -0.4536 26.3123 42.3103 -Arial.ttf 45 9 26.8483 41.6897 18 W -0.5527 57.1916 42.0000 -Arial.ttf 45 9 26.8483 41.6897 19 s 9.2810 24.9561 32.3813 -Arial.ttf 45 9 26.8483 41.6897 20 c 9.6225 26.8084 32.3813 -Arial.ttf 45 9 26.8483 41.6897 21 u 10.7828 24.2793 31.1896 -Arial.ttf 45 9 26.8483 41.6897 22 3 -0.0939 26.8483 41.6897 -Arial.ttf 45 9 26.8483 41.6897 23 ~ 16.8203 29.9083 10.9561 -Arial.ttf 45 9 26.8483 41.6897 24 # -0.3220 31.2646 42.0000 -Arial.ttf 45 9 26.8483 41.6897 25 O -1.0443 39.5749 43.3212 -Arial.ttf 45 9 26.8483 41.6897 26 ` -0.2897 10.9561 8.0769 -Arial.ttf 45 9 26.8483 41.6897 27 @ -0.2971 54.1478 54.3123 -Arial.ttf 45 9 26.8483 41.6897 28 F -0.0303 28.2207 42.0000 -Arial.ttf 45 9 26.8483 41.6897 29 S -1.0935 33.0001 43.3212 -Arial.ttf 45 9 26.8483 41.6897 30 p 9.6325 26.3123 43.6877 -Arial.ttf 45 9 26.8483 41.6897 31 “ -0.0828 13.5690 14.0000 -Arial.ttf 45 9 26.8483 41.6897 32 % -0.4346 44.8793 42.3103 -Arial.ttf 45 9 26.8483 41.6897 33 £ -0.3862 29.8522 42.3103 -Arial.ttf 45 9 26.8483 41.6897 34 . 36.4039 5.2626 5.2626 -Arial.ttf 45 9 26.8483 41.6897 35 2 0.0345 28.6956 41.6897 -Arial.ttf 45 9 26.8483 41.6897 36 5 -0.2195 26.8483 41.6897 -Arial.ttf 45 9 26.8483 41.6897 37 m 9.5802 41.4044 32.0709 -Arial.ttf 45 9 26.8483 41.6897 38 V -0.3873 40.5788 42.0000 -Arial.ttf 45 9 26.8483 41.6897 39 6 -0.1601 27.8542 41.6897 -Arial.ttf 45 9 26.8483 41.6897 40 w 10.6601 43.4212 30.8793 -Arial.ttf 45 9 26.8483 41.6897 41 T -0.0759 33.6936 42.0000 -Arial.ttf 45 9 26.8483 41.6897 42 M -0.3320 40.5788 42.0000 -Arial.ttf 45 9 26.8483 41.6897 43 G -0.8744 38.6897 43.3212 -Arial.ttf 45 9 26.8483 41.6897 44 b -0.1794 26.3123 42.3103 -Arial.ttf 45 9 26.8483 41.6897 45 9 0.2594 26.8483 41.6897 -Arial.ttf 45 9 26.8483 41.6897 46 ; 10.6877 5.2626 39.6167 -Arial.ttf 45 9 26.8483 41.6897 47 D -0.0318 34.4542 42.0000 -Arial.ttf 45 9 26.8483 41.6897 48 L -0.3370 25.8813 42.0000 -Arial.ttf 45 9 26.8483 41.6897 49 y 10.6630 28.0000 42.4960 -Arial.ttf 45 9 26.8483 41.6897 50 ‘ -0.1677 5.9231 14.0000 -Arial.ttf 45 9 26.8483 41.6897 51 \ -0.3999 17.5749 42.0000 -Arial.ttf 45 9 26.8483 41.6897 52 R -0.3651 36.7497 42.0000 -Arial.ttf 45 9 26.8483 41.6897 53 < 7.4354 27.8354 27.8704 -Arial.ttf 45 9 26.8483 41.6897 54 4 -0.0955 28.3503 41.6897 -Arial.ttf 45 9 26.8483 41.6897 55 8 0.0057 26.6626 41.6897 -Arial.ttf 45 9 26.8483 41.6897 56 0 -0.1680 26.8483 41.6897 -Arial.ttf 45 9 26.8483 41.6897 57 A -0.7007 40.5788 42.0000 -Arial.ttf 45 9 26.8483 41.6897 58 E -0.3019 31.4542 42.0000 -Arial.ttf 45 9 26.8483 41.6897 59 B -0.1529 31.4542 42.0000 -Arial.ttf 45 9 26.8483 41.6897 60 v 10.5494 27.8704 30.8793 -Arial.ttf 45 9 26.8483 41.6897 61 k -0.3090 25.1207 42.0000 -Arial.ttf 45 9 26.8483 41.6897 62 J -0.5076 24.0291 42.6606 -Arial.ttf 45 9 26.8483 41.6897 63 U -0.5521 32.9083 42.6606 -Arial.ttf 45 9 26.8483 41.6897 64 j -0.3598 12.3773 53.6167 -Arial.ttf 45 9 26.8483 41.6897 65 ( -0.1793 14.4103 53.6167 -Arial.ttf 45 9 26.8483 41.6897 66 7 0.1384 26.8523 41.6897 -Arial.ttf 45 9 26.8483 41.6897 67 § -0.0612 26.9729 53.9271 -Arial.ttf 45 9 26.8483 41.6897 68 $ -2.5710 27.6897 49.3355 -Arial.ttf 45 9 26.8483 41.6897 69 € -0.9678 33.0769 43.3212 -Arial.ttf 45 9 26.8483 41.6897 70 / -0.4690 17.5749 42.0000 -Arial.ttf 45 9 26.8483 41.6897 71 C -0.9175 36.0000 43.3212 -Arial.ttf 45 9 26.8483 41.6897 72 * -0.2493 20.3453 17.8852 -Arial.ttf 45 9 26.8483 41.6897 73 ” -0.3947 14.2296 14.0000 -Arial.ttf 45 9 26.8483 41.6897 74 ? -0.0554 26.8483 42.0000 -Arial.ttf 45 9 26.8483 41.6897 75 { -0.6056 16.7375 53.6167 -Arial.ttf 45 9 26.8483 41.6897 76 } -0.4869 16.7375 53.6167 -Arial.ttf 45 9 26.8483 41.6897 77 , 36.5072 5.2626 14.0000 -Arial.ttf 45 9 26.8483 41.6897 78 I -0.4333 5.6936 42.0000 -Arial.ttf 45 9 26.8483 41.6897 79 ° -0.1215 15.8083 15.8083 -Arial.ttf 45 9 26.8483 41.6897 80 K -0.1762 34.5749 42.0000 -Arial.ttf 45 9 26.8483 41.6897 81 H -0.4333 32.9083 42.0000 -Arial.ttf 45 9 26.8483 41.6897 82 q 9.7812 26.3123 43.6877 -Arial.ttf 45 9 26.8483 41.6897 83 & -0.2841 35.1148 42.3103 -Arial.ttf 45 9 26.8483 41.6897 84 ’ -0.5877 5.9231 14.0000 -Arial.ttf 45 9 26.8483 41.6897 85 [ -0.2922 11.0000 53.6167 -Arial.ttf 45 9 26.8483 41.6897 86 - 24.0479 15.4980 5.2626 -Arial.ttf 45 9 26.8483 41.6897 87 Y -0.4954 38.4601 42.0000 -Arial.ttf 45 9 26.8483 41.6897 88 Q -0.9106 39.5749 46.3212 -Arial.ttf 45 9 26.8483 41.6897 89 " -0.2208 15.8083 15.1916 -Arial.ttf 45 9 26.8483 41.6897 90 ! -0.3586 5.2626 42.0000 -Arial.ttf 45 9 26.8483 41.6897 91 x 10.8560 29.1060 30.8793 -Arial.ttf 45 9 26.8483 41.6897 92 ) -0.1736 14.4103 53.6167 -Arial.ttf 45 9 26.8483 41.6897 93 = 11.9742 27.8793 17.8852 -Arial.ttf 45 9 26.8483 41.6897 94 + 7.3167 27.8753 27.8753 -Arial.ttf 45 9 26.8483 41.6897 95 X -0.2111 37.6626 42.0000 -Arial.ttf 45 9 26.8483 41.6897 96 » 13.6718 25.0439 26.1917 -Arial.ttf 45 9 26.8483 41.6897 97 ' 0.0508 5.2626 15.1916 -Arial.ttf 45 9 26.8483 41.6897 98 ¢ -0.4213 25.7813 54.2685 -Arial.ttf 45 9 26.8483 41.6897 99 Z -0.3611 33.0729 42.0000 -Arial.ttf 45 9 26.8483 41.6897 100 > 7.4215 27.8354 27.8704 -Arial.ttf 45 9 26.8483 41.6897 101 ® -0.6396 43.1916 42.9709 -Arial.ttf 45 9 26.8483 41.6897 102 © -0.8739 43.1916 42.9709 -Arial.ttf 45 9 26.8483 41.6897 103 ] -0.4499 11.0000 53.6167 -Arial.ttf 45 9 26.8483 41.6897 104 é -1.5429 27.4690 43.5020 -Arial.ttf 45 9 26.8483 41.6897 105 z 10.6280 26.3123 30.8793 -Arial.ttf 45 9 26.8483 41.6897 106 _ 47.9388 33.3832 5.2626 -Arial.ttf 45 9 26.8483 41.6897 107 ¥ -0.1461 32.0291 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 1 t -11.1950 15.0709 42.3103 -Arial.ttf 46 ; 5.2626 39.6167 2 h -10.9732 24.2793 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 3 a -1.0829 27.4690 32.3813 -Arial.ttf 46 ; 5.2626 39.6167 4 n -1.2079 24.2793 32.0709 -Arial.ttf 46 ; 5.2626 39.6167 5 P -11.1345 31.4542 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 6 o -1.2744 27.4690 32.3813 -Arial.ttf 46 ; 5.2626 39.6167 7 e -1.3805 27.4690 32.3813 -Arial.ttf 46 ; 5.2626 39.6167 8 : 0.0828 5.2626 30.8793 -Arial.ttf 46 ; 5.2626 39.6167 9 r -1.1916 16.5689 32.0709 -Arial.ttf 46 ; 5.2626 39.6167 10 l -11.3578 5.2626 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 11 i -11.1812 5.2626 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 12 1 -10.8104 15.2355 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 13 | -11.0556 4.1916 54.4980 -Arial.ttf 46 ; 5.2626 39.6167 14 N -11.2336 32.9083 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 15 f -11.1207 18.0709 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 16 g -1.2616 26.3123 43.6877 -Arial.ttf 46 ; 5.2626 39.6167 17 d -11.1207 26.3123 42.3103 -Arial.ttf 46 ; 5.2626 39.6167 18 W -11.0598 57.1916 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 19 s -1.2098 24.9561 32.3813 -Arial.ttf 46 ; 5.2626 39.6167 20 c -1.4192 26.8084 32.3813 -Arial.ttf 46 ; 5.2626 39.6167 21 u 0.0180 24.2793 31.1896 -Arial.ttf 46 ; 5.2626 39.6167 22 3 -10.9715 26.8483 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 23 ~ 5.7946 29.9083 10.9561 -Arial.ttf 46 ; 5.2626 39.6167 24 # -11.0352 31.2646 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 25 O -11.5882 39.5749 43.3212 -Arial.ttf 46 ; 5.2626 39.6167 26 ` -11.1265 10.9561 8.0769 -Arial.ttf 46 ; 5.2626 39.6167 27 @ -11.0667 54.1478 54.3123 -Arial.ttf 46 ; 5.2626 39.6167 28 F -11.1510 28.2207 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 29 S -11.8337 33.0001 43.3212 -Arial.ttf 46 ; 5.2626 39.6167 30 p -1.0177 26.3123 43.6877 -Arial.ttf 46 ; 5.2626 39.6167 31 “ -11.2751 13.5690 14.0000 -Arial.ttf 46 ; 5.2626 39.6167 32 % -11.0782 44.8793 42.3103 -Arial.ttf 46 ; 5.2626 39.6167 33 £ -10.9870 29.8522 42.3103 -Arial.ttf 46 ; 5.2626 39.6167 34 . 25.7451 5.2626 5.2626 -Arial.ttf 46 ; 5.2626 39.6167 35 2 -10.8104 28.6956 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 36 5 -10.6476 26.8483 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 37 m -1.2373 41.4044 32.0709 -Arial.ttf 46 ; 5.2626 39.6167 38 V -11.1981 40.5788 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 39 6 -10.7138 27.8542 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 40 w -0.2027 43.4212 30.8793 -Arial.ttf 46 ; 5.2626 39.6167 41 T -11.1483 33.6936 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 42 M -10.8640 40.5788 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 43 G -11.6959 38.6897 43.3212 -Arial.ttf 46 ; 5.2626 39.6167 44 b -11.1689 26.3123 42.3103 -Arial.ttf 46 ; 5.2626 39.6167 45 9 -10.7732 26.8483 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 46 ; -0.1655 5.2626 39.6167 -Arial.ttf 46 ; 5.2626 39.6167 47 D -11.2458 34.4542 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 48 L -11.0460 25.8813 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 49 y -0.1946 28.0000 42.4960 -Arial.ttf 46 ; 5.2626 39.6167 50 ‘ -11.2038 5.9231 14.0000 -Arial.ttf 46 ; 5.2626 39.6167 51 \ -11.2173 17.5749 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 52 R -11.0322 36.7497 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 53 < -3.4895 27.8354 27.8704 -Arial.ttf 46 ; 5.2626 39.6167 54 4 -10.7320 28.3503 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 55 8 -10.7935 26.6626 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 56 0 -10.8104 26.8483 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 57 A -11.3054 40.5788 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 58 E -11.2380 31.4542 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 59 B -10.9458 31.4542 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 60 v 0.1023 27.8704 30.8793 -Arial.ttf 46 ; 5.2626 39.6167 61 k -11.1319 25.1207 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 62 J -11.1923 24.0291 42.6606 -Arial.ttf 46 ; 5.2626 39.6167 63 U -10.9924 32.9083 42.6606 -Arial.ttf 46 ; 5.2626 39.6167 64 j -11.2044 12.3773 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 65 ( -11.1578 14.4103 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 66 7 -10.6837 26.8523 41.6897 -Arial.ttf 46 ; 5.2626 39.6167 67 § -11.0586 26.9729 53.9271 -Arial.ttf 46 ; 5.2626 39.6167 68 $ -13.0913 27.6897 49.3355 -Arial.ttf 46 ; 5.2626 39.6167 69 € -11.8184 33.0769 43.3212 -Arial.ttf 46 ; 5.2626 39.6167 70 / -11.0517 17.5749 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 71 C -11.5522 36.0000 43.3212 -Arial.ttf 46 ; 5.2626 39.6167 72 * -10.9303 20.3453 17.8852 -Arial.ttf 46 ; 5.2626 39.6167 73 ” -11.1663 14.2296 14.0000 -Arial.ttf 46 ; 5.2626 39.6167 74 ? -10.9977 26.8483 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 75 { -11.1897 16.7375 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 76 } -11.2724 16.7375 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 77 , 25.7880 5.2626 14.0000 -Arial.ttf 46 ; 5.2626 39.6167 78 I -11.2035 5.6936 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 79 ° -11.3096 15.8083 15.8083 -Arial.ttf 46 ; 5.2626 39.6167 80 K -11.2876 34.5749 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 81 H -10.9748 32.9083 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 82 q -1.1244 26.3123 43.6877 -Arial.ttf 46 ; 5.2626 39.6167 83 & -11.0380 35.1148 42.3103 -Arial.ttf 46 ; 5.2626 39.6167 84 ’ -11.2915 5.9231 14.0000 -Arial.ttf 46 ; 5.2626 39.6167 85 [ -11.1154 11.0000 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 86 - 13.3808 15.4980 5.2626 -Arial.ttf 46 ; 5.2626 39.6167 87 Y -11.4393 38.4601 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 88 Q -11.7468 39.5749 46.3212 -Arial.ttf 46 ; 5.2626 39.6167 89 " -11.1690 15.8083 15.1916 -Arial.ttf 46 ; 5.2626 39.6167 90 ! -11.2267 5.2626 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 91 x -0.0195 29.1060 30.8793 -Arial.ttf 46 ; 5.2626 39.6167 92 ) -11.0295 14.4103 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 93 = 0.7884 27.8793 17.8852 -Arial.ttf 46 ; 5.2626 39.6167 94 + -3.7181 27.8753 27.8753 -Arial.ttf 46 ; 5.2626 39.6167 95 X -11.2130 37.6626 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 96 » 2.7469 25.0439 26.1917 -Arial.ttf 46 ; 5.2626 39.6167 97 ' -11.0491 5.2626 15.1916 -Arial.ttf 46 ; 5.2626 39.6167 98 ¢ -11.1560 25.7813 54.2685 -Arial.ttf 46 ; 5.2626 39.6167 99 Z -11.0973 33.0729 42.0000 -Arial.ttf 46 ; 5.2626 39.6167 100 > -3.5033 27.8354 27.8704 -Arial.ttf 46 ; 5.2626 39.6167 101 ® -11.6986 43.1916 42.9709 -Arial.ttf 46 ; 5.2626 39.6167 102 © -11.8242 43.1916 42.9709 -Arial.ttf 46 ; 5.2626 39.6167 103 ] -11.0862 11.0000 53.6167 -Arial.ttf 46 ; 5.2626 39.6167 104 é -12.3606 27.4690 43.5020 -Arial.ttf 46 ; 5.2626 39.6167 105 z 0.0774 26.3123 30.8793 -Arial.ttf 46 ; 5.2626 39.6167 106 _ 37.2665 33.3832 5.2626 -Arial.ttf 46 ; 5.2626 39.6167 107 ¥ -11.1950 32.0291 42.0000 -Arial.ttf 47 D 34.4542 42.0000 1 t -0.0057 15.0709 42.3103 -Arial.ttf 47 D 34.4542 42.0000 2 h 0.5373 24.2793 42.0000 -Arial.ttf 47 D 34.4542 42.0000 3 a 9.8309 27.4690 32.3813 -Arial.ttf 47 D 34.4542 42.0000 4 n 9.6906 24.2793 32.0709 -Arial.ttf 47 D 34.4542 42.0000 5 P 0.0912 31.4542 42.0000 -Arial.ttf 47 D 34.4542 42.0000 6 o 9.6312 27.4690 32.3813 -Arial.ttf 47 D 34.4542 42.0000 7 e 10.0340 27.4690 32.3813 -Arial.ttf 47 D 34.4542 42.0000 8 : 11.2987 5.2626 30.8793 -Arial.ttf 47 D 34.4542 42.0000 9 r 9.9715 16.5689 32.0709 -Arial.ttf 47 D 34.4542 42.0000 10 l -0.0085 5.2626 42.0000 -Arial.ttf 47 D 34.4542 42.0000 11 i -0.1261 5.2626 42.0000 -Arial.ttf 47 D 34.4542 42.0000 12 1 0.2371 15.2355 41.6897 -Arial.ttf 47 D 34.4542 42.0000 13 | -0.0540 4.1916 54.4980 -Arial.ttf 47 D 34.4542 42.0000 14 N -0.1648 32.9083 42.0000 -Arial.ttf 47 D 34.4542 42.0000 15 f 0.4053 18.0709 42.0000 -Arial.ttf 47 D 34.4542 42.0000 16 g 9.7387 26.3123 43.6877 -Arial.ttf 47 D 34.4542 42.0000 17 d -0.0552 26.3123 42.3103 -Arial.ttf 47 D 34.4542 42.0000 18 W -0.0334 57.1916 42.0000 -Arial.ttf 47 D 34.4542 42.0000 19 s 9.7817 24.9561 32.3813 -Arial.ttf 47 D 34.4542 42.0000 20 c 10.0007 26.8084 32.3813 -Arial.ttf 47 D 34.4542 42.0000 21 u 11.1207 24.2793 31.1896 -Arial.ttf 47 D 34.4542 42.0000 22 3 0.3809 26.8483 41.6897 -Arial.ttf 47 D 34.4542 42.0000 23 ~ 17.1153 29.9083 10.9561 -Arial.ttf 47 D 34.4542 42.0000 24 # 0.0976 31.2646 42.0000 -Arial.ttf 47 D 34.4542 42.0000 25 O -0.3919 39.5749 43.3212 -Arial.ttf 47 D 34.4542 42.0000 26 ` 0.1802 10.9561 8.0769 -Arial.ttf 47 D 34.4542 42.0000 27 @ -0.1406 54.1478 54.3123 -Arial.ttf 47 D 34.4542 42.0000 28 F -0.0553 28.2207 42.0000 -Arial.ttf 47 D 34.4542 42.0000 29 S -0.5238 33.0001 43.3212 -Arial.ttf 47 D 34.4542 42.0000 30 p 9.7514 26.3123 43.6877 -Arial.ttf 47 D 34.4542 42.0000 31 “ -0.4205 13.5690 14.0000 -Arial.ttf 47 D 34.4542 42.0000 32 % -0.0552 44.8793 42.3103 -Arial.ttf 47 D 34.4542 42.0000 33 £ -0.1943 29.8522 42.3103 -Arial.ttf 47 D 34.4542 42.0000 34 . 36.6180 5.2626 5.2626 -Arial.ttf 47 D 34.4542 42.0000 35 2 0.0980 28.6956 41.6897 -Arial.ttf 47 D 34.4542 42.0000 36 5 0.3736 26.8483 41.6897 -Arial.ttf 47 D 34.4542 42.0000 37 m 10.2281 41.4044 32.0709 -Arial.ttf 47 D 34.4542 42.0000 38 V 0.0647 40.5788 42.0000 -Arial.ttf 47 D 34.4542 42.0000 39 6 0.2813 27.8542 41.6897 -Arial.ttf 47 D 34.4542 42.0000 40 w 10.9281 43.4212 30.8793 -Arial.ttf 47 D 34.4542 42.0000 41 T 0.3898 33.6936 42.0000 -Arial.ttf 47 D 34.4542 42.0000 42 M -0.0688 40.5788 42.0000 -Arial.ttf 47 D 34.4542 42.0000 43 G -0.4920 38.6897 43.3212 -Arial.ttf 47 D 34.4542 42.0000 44 b -0.0402 26.3123 42.3103 -Arial.ttf 47 D 34.4542 42.0000 45 9 0.6178 26.8483 41.6897 -Arial.ttf 47 D 34.4542 42.0000 46 ; 10.9499 5.2626 39.6167 -Arial.ttf 47 D 34.4542 42.0000 47 D -0.1762 34.4542 42.0000 -Arial.ttf 47 D 34.4542 42.0000 48 L 0.3080 25.8813 42.0000 -Arial.ttf 47 D 34.4542 42.0000 49 y 10.7839 28.0000 42.4960 -Arial.ttf 47 D 34.4542 42.0000 50 ‘ 0.1653 5.9231 14.0000 -Arial.ttf 47 D 34.4542 42.0000 51 \ 0.0912 17.5749 42.0000 -Arial.ttf 47 D 34.4542 42.0000 52 R 0.0859 36.7497 42.0000 -Arial.ttf 47 D 34.4542 42.0000 53 < 7.3650 27.8354 27.8704 -Arial.ttf 47 D 34.4542 42.0000 54 4 0.3586 28.3503 41.6897 -Arial.ttf 47 D 34.4542 42.0000 55 8 0.3453 26.6626 41.6897 -Arial.ttf 47 D 34.4542 42.0000 56 0 0.4996 26.8483 41.6897 -Arial.ttf 47 D 34.4542 42.0000 57 A -0.2178 40.5788 42.0000 -Arial.ttf 47 D 34.4542 42.0000 58 E -0.0009 31.4542 42.0000 -Arial.ttf 47 D 34.4542 42.0000 59 B 0.3419 31.4542 42.0000 -Arial.ttf 47 D 34.4542 42.0000 60 v 10.9681 27.8704 30.8793 -Arial.ttf 47 D 34.4542 42.0000 61 k 0.2038 25.1207 42.0000 -Arial.ttf 47 D 34.4542 42.0000 62 J -0.5294 24.0291 42.6606 -Arial.ttf 47 D 34.4542 42.0000 63 U -0.1722 32.9083 42.6606 -Arial.ttf 47 D 34.4542 42.0000 64 j 0.1040 12.3773 53.6167 -Arial.ttf 47 D 34.4542 42.0000 65 ( -0.2302 14.4103 53.6167 -Arial.ttf 47 D 34.4542 42.0000 66 7 0.6147 26.8523 41.6897 -Arial.ttf 47 D 34.4542 42.0000 67 § -0.1399 26.9729 53.9271 -Arial.ttf 47 D 34.4542 42.0000 68 $ -2.1407 27.6897 49.3355 -Arial.ttf 47 D 34.4542 42.0000 69 € -0.7011 33.0769 43.3212 -Arial.ttf 47 D 34.4542 42.0000 70 / 0.0774 17.5749 42.0000 -Arial.ttf 47 D 34.4542 42.0000 71 C -0.8717 36.0000 43.3212 -Arial.ttf 47 D 34.4542 42.0000 72 * 0.0111 20.3453 17.8852 -Arial.ttf 47 D 34.4542 42.0000 73 ” 0.0797 14.2296 14.0000 -Arial.ttf 47 D 34.4542 42.0000 74 ? -0.2853 26.8483 42.0000 -Arial.ttf 47 D 34.4542 42.0000 75 { 0.2327 16.7375 53.6167 -Arial.ttf 47 D 34.4542 42.0000 76 } -0.0154 16.7375 53.6167 -Arial.ttf 47 D 34.4542 42.0000 77 , 36.8331 5.2626 14.0000 -Arial.ttf 47 D 34.4542 42.0000 78 I 0.1861 5.6936 42.0000 -Arial.ttf 47 D 34.4542 42.0000 79 ° -0.1121 15.8083 15.8083 -Arial.ttf 47 D 34.4542 42.0000 80 K -0.0937 34.5749 42.0000 -Arial.ttf 47 D 34.4542 42.0000 81 H 0.0922 32.9083 42.0000 -Arial.ttf 47 D 34.4542 42.0000 82 q 10.0578 26.3123 43.6877 -Arial.ttf 47 D 34.4542 42.0000 83 & -0.0563 35.1148 42.3103 -Arial.ttf 47 D 34.4542 42.0000 84 ’ -0.1315 5.9231 14.0000 -Arial.ttf 47 D 34.4542 42.0000 85 [ -0.2762 11.0000 53.6167 -Arial.ttf 47 D 34.4542 42.0000 86 - 24.1567 15.4980 5.2626 -Arial.ttf 47 D 34.4542 42.0000 87 Y -0.0080 38.4601 42.0000 -Arial.ttf 47 D 34.4542 42.0000 88 Q -0.6319 39.5749 46.3212 -Arial.ttf 47 D 34.4542 42.0000 89 " -0.2137 15.8083 15.1916 -Arial.ttf 47 D 34.4542 42.0000 90 ! 0.0381 5.2626 42.0000 -Arial.ttf 47 D 34.4542 42.0000 91 x 11.3000 29.1060 30.8793 -Arial.ttf 47 D 34.4542 42.0000 92 ) -0.2465 14.4103 53.6167 -Arial.ttf 47 D 34.4542 42.0000 93 = 11.9906 27.8793 17.8852 -Arial.ttf 47 D 34.4542 42.0000 94 + 7.6133 27.8753 27.8753 -Arial.ttf 47 D 34.4542 42.0000 95 X 0.0332 37.6626 42.0000 -Arial.ttf 47 D 34.4542 42.0000 96 » 14.1024 25.0439 26.1917 -Arial.ttf 47 D 34.4542 42.0000 97 ' -0.4756 5.2626 15.1916 -Arial.ttf 47 D 34.4542 42.0000 98 ¢ -0.3000 25.7813 54.2685 -Arial.ttf 47 D 34.4542 42.0000 99 Z -0.1513 33.0729 42.0000 -Arial.ttf 47 D 34.4542 42.0000 100 > 7.7611 27.8354 27.8704 -Arial.ttf 47 D 34.4542 42.0000 101 ® -0.7031 43.1916 42.9709 -Arial.ttf 47 D 34.4542 42.0000 102 © -0.1515 43.1916 42.9709 -Arial.ttf 47 D 34.4542 42.0000 103 ] -0.2069 11.0000 53.6167 -Arial.ttf 47 D 34.4542 42.0000 104 é -1.1858 27.4690 43.5020 -Arial.ttf 47 D 34.4542 42.0000 105 z 11.1127 26.3123 30.8793 -Arial.ttf 47 D 34.4542 42.0000 106 _ 48.1697 33.3832 5.2626 -Arial.ttf 47 D 34.4542 42.0000 107 ¥ 0.0828 32.0291 42.0000 -Arial.ttf 48 L 25.8813 42.0000 1 t 0.2774 15.0709 42.3103 -Arial.ttf 48 L 25.8813 42.0000 2 h -0.2631 24.2793 42.0000 -Arial.ttf 48 L 25.8813 42.0000 3 a 10.0318 27.4690 32.3813 -Arial.ttf 48 L 25.8813 42.0000 4 n 10.2329 24.2793 32.0709 -Arial.ttf 48 L 25.8813 42.0000 5 P -0.0239 31.4542 42.0000 -Arial.ttf 48 L 25.8813 42.0000 6 o 10.1570 27.4690 32.3813 -Arial.ttf 48 L 25.8813 42.0000 7 e 10.0256 27.4690 32.3813 -Arial.ttf 48 L 25.8813 42.0000 8 : 11.0202 5.2626 30.8793 -Arial.ttf 48 L 25.8813 42.0000 9 r 10.0723 16.5689 32.0709 -Arial.ttf 48 L 25.8813 42.0000 10 l 0.0080 5.2626 42.0000 -Arial.ttf 48 L 25.8813 42.0000 11 i -0.0027 5.2626 42.0000 -Arial.ttf 48 L 25.8813 42.0000 12 1 0.4042 15.2355 41.6897 -Arial.ttf 48 L 25.8813 42.0000 13 | -0.0205 4.1916 54.4980 -Arial.ttf 48 L 25.8813 42.0000 14 N 0.0659 32.9083 42.0000 -Arial.ttf 48 L 25.8813 42.0000 15 f 0.1369 18.0709 42.0000 -Arial.ttf 48 L 25.8813 42.0000 16 g 9.6379 26.3123 43.6877 -Arial.ttf 48 L 25.8813 42.0000 17 d -0.2259 26.3123 42.3103 -Arial.ttf 48 L 25.8813 42.0000 18 W -0.0318 57.1916 42.0000 -Arial.ttf 48 L 25.8813 42.0000 19 s 9.9291 24.9561 32.3813 -Arial.ttf 48 L 25.8813 42.0000 20 c 9.7690 26.8084 32.3813 -Arial.ttf 48 L 25.8813 42.0000 21 u 11.1828 24.2793 31.1896 -Arial.ttf 48 L 25.8813 42.0000 22 3 0.3368 26.8483 41.6897 -Arial.ttf 48 L 25.8813 42.0000 23 ~ 16.9402 29.9083 10.9561 -Arial.ttf 48 L 25.8813 42.0000 24 # 0.0425 31.2646 42.0000 -Arial.ttf 48 L 25.8813 42.0000 25 O -0.8041 39.5749 43.3212 -Arial.ttf 48 L 25.8813 42.0000 26 ` 0.0605 10.9561 8.0769 -Arial.ttf 48 L 25.8813 42.0000 27 @ 0.1422 54.1478 54.3123 -Arial.ttf 48 L 25.8813 42.0000 28 F -0.2567 28.2207 42.0000 -Arial.ttf 48 L 25.8813 42.0000 29 S -0.8207 33.0001 43.3212 -Arial.ttf 48 L 25.8813 42.0000 30 p 9.7345 26.3123 43.6877 -Arial.ttf 48 L 25.8813 42.0000 31 “ 0.0175 13.5690 14.0000 -Arial.ttf 48 L 25.8813 42.0000 32 % 0.2371 44.8793 42.3103 -Arial.ttf 48 L 25.8813 42.0000 33 £ -0.1575 29.8522 42.3103 -Arial.ttf 48 L 25.8813 42.0000 34 . 36.8535 5.2626 5.2626 -Arial.ttf 48 L 25.8813 42.0000 35 2 0.3766 28.6956 41.6897 -Arial.ttf 48 L 25.8813 42.0000 36 5 0.2774 26.8483 41.6897 -Arial.ttf 48 L 25.8813 42.0000 37 m 10.2270 41.4044 32.0709 -Arial.ttf 48 L 25.8813 42.0000 38 V 0.0132 40.5788 42.0000 -Arial.ttf 48 L 25.8813 42.0000 39 6 0.0479 27.8542 41.6897 -Arial.ttf 48 L 25.8813 42.0000 40 w 11.2738 43.4212 30.8793 -Arial.ttf 48 L 25.8813 42.0000 41 T -0.0647 33.6936 42.0000 -Arial.ttf 48 L 25.8813 42.0000 42 M -0.2345 40.5788 42.0000 -Arial.ttf 48 L 25.8813 42.0000 43 G -0.5147 38.6897 43.3212 -Arial.ttf 48 L 25.8813 42.0000 44 b -0.1475 26.3123 42.3103 -Arial.ttf 48 L 25.8813 42.0000 45 9 0.3724 26.8483 41.6897 -Arial.ttf 48 L 25.8813 42.0000 46 ; 11.1498 5.2626 39.6167 -Arial.ttf 48 L 25.8813 42.0000 47 D -0.0895 34.4542 42.0000 -Arial.ttf 48 L 25.8813 42.0000 48 L 0.0195 25.8813 42.0000 -Arial.ttf 48 L 25.8813 42.0000 49 y 11.0089 28.0000 42.4960 -Arial.ttf 48 L 25.8813 42.0000 50 ‘ -0.0361 5.9231 14.0000 -Arial.ttf 48 L 25.8813 42.0000 51 \ -0.1432 17.5749 42.0000 -Arial.ttf 48 L 25.8813 42.0000 52 R 0.1560 36.7497 42.0000 -Arial.ttf 48 L 25.8813 42.0000 53 < 7.6795 27.8354 27.8704 -Arial.ttf 48 L 25.8813 42.0000 54 4 0.2228 28.3503 41.6897 -Arial.ttf 48 L 25.8813 42.0000 55 8 0.5931 26.6626 41.6897 -Arial.ttf 48 L 25.8813 42.0000 56 0 0.4828 26.8483 41.6897 -Arial.ttf 48 L 25.8813 42.0000 57 A 0.0195 40.5788 42.0000 -Arial.ttf 48 L 25.8813 42.0000 58 E -0.0540 31.4542 42.0000 -Arial.ttf 48 L 25.8813 42.0000 59 B 0.0609 31.4542 42.0000 -Arial.ttf 48 L 25.8813 42.0000 60 v 11.2639 27.8704 30.8793 -Arial.ttf 48 L 25.8813 42.0000 61 k -0.1401 25.1207 42.0000 -Arial.ttf 48 L 25.8813 42.0000 62 J 0.0000 24.0291 42.6606 -Arial.ttf 48 L 25.8813 42.0000 63 U 0.0440 32.9083 42.6606 -Arial.ttf 48 L 25.8813 42.0000 64 j -0.0693 12.3773 53.6167 -Arial.ttf 48 L 25.8813 42.0000 65 ( 0.2004 14.4103 53.6167 -Arial.ttf 48 L 25.8813 42.0000 66 7 -0.1378 26.8523 41.6897 -Arial.ttf 48 L 25.8813 42.0000 67 § 0.1203 26.9729 53.9271 -Arial.ttf 48 L 25.8813 42.0000 68 $ -2.6139 27.6897 49.3355 -Arial.ttf 48 L 25.8813 42.0000 69 € -0.7862 33.0769 43.3212 -Arial.ttf 48 L 25.8813 42.0000 70 / -0.1146 17.5749 42.0000 -Arial.ttf 48 L 25.8813 42.0000 71 C -0.4288 36.0000 43.3212 -Arial.ttf 48 L 25.8813 42.0000 72 * -0.1114 20.3453 17.8852 -Arial.ttf 48 L 25.8813 42.0000 73 ” 0.1088 14.2296 14.0000 -Arial.ttf 48 L 25.8813 42.0000 74 ? 0.0324 26.8483 42.0000 -Arial.ttf 48 L 25.8813 42.0000 75 { 0.0892 16.7375 53.6167 -Arial.ttf 48 L 25.8813 42.0000 76 } 0.1506 16.7375 53.6167 -Arial.ttf 48 L 25.8813 42.0000 77 , 36.7800 5.2626 14.0000 -Arial.ttf 48 L 25.8813 42.0000 78 I 0.0068 5.6936 42.0000 -Arial.ttf 48 L 25.8813 42.0000 79 ° -0.1490 15.8083 15.8083 -Arial.ttf 48 L 25.8813 42.0000 80 K 0.0552 34.5749 42.0000 -Arial.ttf 48 L 25.8813 42.0000 81 H -0.0095 32.9083 42.0000 -Arial.ttf 48 L 25.8813 42.0000 82 q 9.8034 26.3123 43.6877 -Arial.ttf 48 L 25.8813 42.0000 83 & 0.0138 35.1148 42.3103 -Arial.ttf 48 L 25.8813 42.0000 84 ’ 0.0716 5.9231 14.0000 -Arial.ttf 48 L 25.8813 42.0000 85 [ 0.1141 11.0000 53.6167 -Arial.ttf 48 L 25.8813 42.0000 86 - 23.9415 15.4980 5.2626 -Arial.ttf 48 L 25.8813 42.0000 87 Y 0.1395 38.4601 42.0000 -Arial.ttf 48 L 25.8813 42.0000 88 Q -0.7322 39.5749 46.3212 -Arial.ttf 48 L 25.8813 42.0000 89 " 0.2111 15.8083 15.1916 -Arial.ttf 48 L 25.8813 42.0000 90 ! 0.0218 5.2626 42.0000 -Arial.ttf 48 L 25.8813 42.0000 91 x 11.1417 29.1060 30.8793 -Arial.ttf 48 L 25.8813 42.0000 92 ) -0.1793 14.4103 53.6167 -Arial.ttf 48 L 25.8813 42.0000 93 = 11.9712 27.8793 17.8852 -Arial.ttf 48 L 25.8813 42.0000 94 + 7.8370 27.8753 27.8753 -Arial.ttf 48 L 25.8813 42.0000 95 X -0.0207 37.6626 42.0000 -Arial.ttf 48 L 25.8813 42.0000 96 » 13.7201 25.0439 26.1917 -Arial.ttf 48 L 25.8813 42.0000 97 ' 0.1172 5.2626 15.1916 -Arial.ttf 48 L 25.8813 42.0000 98 ¢ -0.1741 25.7813 54.2685 -Arial.ttf 48 L 25.8813 42.0000 99 Z -0.0662 33.0729 42.0000 -Arial.ttf 48 L 25.8813 42.0000 100 > 7.5056 27.8354 27.8704 -Arial.ttf 48 L 25.8813 42.0000 101 ® -0.7359 43.1916 42.9709 -Arial.ttf 48 L 25.8813 42.0000 102 © -0.7719 43.1916 42.9709 -Arial.ttf 48 L 25.8813 42.0000 103 ] -0.0182 11.0000 53.6167 -Arial.ttf 48 L 25.8813 42.0000 104 é -1.1630 27.4690 43.5020 -Arial.ttf 48 L 25.8813 42.0000 105 z 11.0613 26.3123 30.8793 -Arial.ttf 48 L 25.8813 42.0000 106 _ 48.2724 33.3832 5.2626 -Arial.ttf 48 L 25.8813 42.0000 107 ¥ -0.1767 32.0291 42.0000 -Arial.ttf 49 y 28.0000 42.4960 1 t -11.1234 15.0709 42.3103 -Arial.ttf 49 y 28.0000 42.4960 2 h -10.8921 24.2793 42.0000 -Arial.ttf 49 y 28.0000 42.4960 3 a -1.1460 27.4690 32.3813 -Arial.ttf 49 y 28.0000 42.4960 4 n -1.1227 24.2793 32.0709 -Arial.ttf 49 y 28.0000 42.4960 5 P -11.4101 31.4542 42.0000 -Arial.ttf 49 y 28.0000 42.4960 6 o -1.4495 27.4690 32.3813 -Arial.ttf 49 y 28.0000 42.4960 7 e -1.0256 27.4690 32.3813 -Arial.ttf 49 y 28.0000 42.4960 8 : 0.1172 5.2626 30.8793 -Arial.ttf 49 y 28.0000 42.4960 9 r -0.9863 16.5689 32.0709 -Arial.ttf 49 y 28.0000 42.4960 10 l -11.0673 5.2626 42.0000 -Arial.ttf 49 y 28.0000 42.4960 11 i -11.0875 5.2626 42.0000 -Arial.ttf 49 y 28.0000 42.4960 12 1 -10.6657 15.2355 41.6897 -Arial.ttf 49 y 28.0000 42.4960 13 | -10.9844 4.1916 54.4980 -Arial.ttf 49 y 28.0000 42.4960 14 N -11.1813 32.9083 42.0000 -Arial.ttf 49 y 28.0000 42.4960 15 f -10.9734 18.0709 42.0000 -Arial.ttf 49 y 28.0000 42.4960 16 g -0.9503 26.3123 43.6877 -Arial.ttf 49 y 28.0000 42.4960 17 d -11.2034 26.3123 42.3103 -Arial.ttf 49 y 28.0000 42.4960 18 W -11.2956 57.1916 42.0000 -Arial.ttf 49 y 28.0000 42.4960 19 s -1.2902 24.9561 32.3813 -Arial.ttf 49 y 28.0000 42.4960 20 c -0.8911 26.8084 32.3813 -Arial.ttf 49 y 28.0000 42.4960 21 u -0.1624 24.2793 31.1896 -Arial.ttf 49 y 28.0000 42.4960 22 3 -10.6640 26.8483 41.6897 -Arial.ttf 49 y 28.0000 42.4960 23 ~ 5.6112 29.9083 10.9561 -Arial.ttf 49 y 28.0000 42.4960 24 # -11.0019 31.2646 42.0000 -Arial.ttf 49 y 28.0000 42.4960 25 O -11.6726 39.5749 43.3212 -Arial.ttf 49 y 28.0000 42.4960 26 ` -11.1674 10.9561 8.0769 -Arial.ttf 49 y 28.0000 42.4960 27 @ -10.8987 54.1478 54.3123 -Arial.ttf 49 y 28.0000 42.4960 28 F -11.0095 28.2207 42.0000 -Arial.ttf 49 y 28.0000 42.4960 29 S -11.7235 33.0001 43.3212 -Arial.ttf 49 y 28.0000 42.4960 30 p -1.2744 26.3123 43.6877 -Arial.ttf 49 y 28.0000 42.4960 31 “ -11.2515 13.5690 14.0000 -Arial.ttf 49 y 28.0000 42.4960 32 % -11.0734 44.8793 42.3103 -Arial.ttf 49 y 28.0000 42.4960 33 £ -11.3774 29.8522 42.3103 -Arial.ttf 49 y 28.0000 42.4960 34 . 25.8077 5.2626 5.2626 -Arial.ttf 49 y 28.0000 42.4960 35 2 -10.5506 28.6956 41.6897 -Arial.ttf 49 y 28.0000 42.4960 36 5 -11.0820 26.8483 41.6897 -Arial.ttf 49 y 28.0000 42.4960 37 m -0.9438 41.4044 32.0709 -Arial.ttf 49 y 28.0000 42.4960 38 V -11.1430 40.5788 42.0000 -Arial.ttf 49 y 28.0000 42.4960 39 6 -10.8010 27.8542 41.6897 -Arial.ttf 49 y 28.0000 42.4960 40 w 0.0743 43.4212 30.8793 -Arial.ttf 49 y 28.0000 42.4960 41 T -11.0548 33.6936 42.0000 -Arial.ttf 49 y 28.0000 42.4960 42 M -11.2380 40.5788 42.0000 -Arial.ttf 49 y 28.0000 42.4960 43 G -11.7070 38.6897 43.3212 -Arial.ttf 49 y 28.0000 42.4960 44 b -11.1578 26.3123 42.3103 -Arial.ttf 49 y 28.0000 42.4960 45 9 -11.0279 26.8483 41.6897 -Arial.ttf 49 y 28.0000 42.4960 46 ; 0.1792 5.2626 39.6167 -Arial.ttf 49 y 28.0000 42.4960 47 D -11.0946 34.4542 42.0000 -Arial.ttf 49 y 28.0000 42.4960 48 L -11.2741 25.8813 42.0000 -Arial.ttf 49 y 28.0000 42.4960 49 y -0.0111 28.0000 42.4960 -Arial.ttf 49 y 28.0000 42.4960 50 ‘ -10.8964 5.9231 14.0000 -Arial.ttf 49 y 28.0000 42.4960 51 \ -11.2575 17.5749 42.0000 -Arial.ttf 49 y 28.0000 42.4960 52 R -11.2848 36.7497 42.0000 -Arial.ttf 49 y 28.0000 42.4960 53 < -3.7611 27.8354 27.8704 -Arial.ttf 49 y 28.0000 42.4960 54 4 -10.8215 28.3503 41.6897 -Arial.ttf 49 y 28.0000 42.4960 55 8 -10.8161 26.6626 41.6897 -Arial.ttf 49 y 28.0000 42.4960 56 0 -11.0644 26.8483 41.6897 -Arial.ttf 49 y 28.0000 42.4960 57 A -11.1376 40.5788 42.0000 -Arial.ttf 49 y 28.0000 42.4960 58 E -10.8680 31.4542 42.0000 -Arial.ttf 49 y 28.0000 42.4960 59 B -11.0713 31.4542 42.0000 -Arial.ttf 49 y 28.0000 42.4960 60 v 0.0017 27.8704 30.8793 -Arial.ttf 49 y 28.0000 42.4960 61 k -11.2183 25.1207 42.0000 -Arial.ttf 49 y 28.0000 42.4960 62 J -11.3150 24.0291 42.6606 -Arial.ttf 49 y 28.0000 42.4960 63 U -11.1494 32.9083 42.6606 -Arial.ttf 49 y 28.0000 42.4960 64 j -11.3525 12.3773 53.6167 -Arial.ttf 49 y 28.0000 42.4960 65 ( -11.0268 14.4103 53.6167 -Arial.ttf 49 y 28.0000 42.4960 66 7 -10.8220 26.8523 41.6897 -Arial.ttf 49 y 28.0000 42.4960 67 § -11.2893 26.9729 53.9271 -Arial.ttf 49 y 28.0000 42.4960 68 $ -13.0309 27.6897 49.3355 -Arial.ttf 49 y 28.0000 42.4960 69 € -12.0545 33.0769 43.3212 -Arial.ttf 49 y 28.0000 42.4960 70 / -11.0369 17.5749 42.0000 -Arial.ttf 49 y 28.0000 42.4960 71 C -11.8868 36.0000 43.3212 -Arial.ttf 49 y 28.0000 42.4960 72 * -11.0916 20.3453 17.8852 -Arial.ttf 49 y 28.0000 42.4960 73 ” -11.2089 14.2296 14.0000 -Arial.ttf 49 y 28.0000 42.4960 74 ? -11.1096 26.8483 42.0000 -Arial.ttf 49 y 28.0000 42.4960 75 { -11.1383 16.7375 53.6167 -Arial.ttf 49 y 28.0000 42.4960 76 } -11.3094 16.7375 53.6167 -Arial.ttf 49 y 28.0000 42.4960 77 , 25.7297 5.2626 14.0000 -Arial.ttf 49 y 28.0000 42.4960 78 I -10.9437 5.6936 42.0000 -Arial.ttf 49 y 28.0000 42.4960 79 ° -11.1041 15.8083 15.8083 -Arial.ttf 49 y 28.0000 42.4960 80 K -11.2797 34.5749 42.0000 -Arial.ttf 49 y 28.0000 42.4960 81 H -11.3291 32.9083 42.0000 -Arial.ttf 49 y 28.0000 42.4960 82 q -1.4054 26.3123 43.6877 -Arial.ttf 49 y 28.0000 42.4960 83 & -11.1699 35.1148 42.3103 -Arial.ttf 49 y 28.0000 42.4960 84 ’ -11.1731 5.9231 14.0000 -Arial.ttf 49 y 28.0000 42.4960 85 [ -10.8545 11.0000 53.6167 -Arial.ttf 49 y 28.0000 42.4960 86 - 13.1520 15.4980 5.2626 -Arial.ttf 49 y 28.0000 42.4960 87 Y -11.2484 38.4601 42.0000 -Arial.ttf 49 y 28.0000 42.4960 88 Q -12.0211 39.5749 46.3212 -Arial.ttf 49 y 28.0000 42.4960 89 " -11.0273 15.8083 15.1916 -Arial.ttf 49 y 28.0000 42.4960 90 ! -11.2862 5.2626 42.0000 -Arial.ttf 49 y 28.0000 42.4960 91 x 0.0939 29.1060 30.8793 -Arial.ttf 49 y 28.0000 42.4960 92 ) -10.9707 14.4103 53.6167 -Arial.ttf 49 y 28.0000 42.4960 93 = 0.6007 27.8793 17.8852 -Arial.ttf 49 y 28.0000 42.4960 94 + -3.3807 27.8753 27.8753 -Arial.ttf 49 y 28.0000 42.4960 95 X -11.1690 37.6626 42.0000 -Arial.ttf 49 y 28.0000 42.4960 96 » 2.8021 25.0439 26.1917 -Arial.ttf 49 y 28.0000 42.4960 97 ' -11.2639 5.2626 15.1916 -Arial.ttf 49 y 28.0000 42.4960 98 ¢ -11.2025 25.7813 54.2685 -Arial.ttf 49 y 28.0000 42.4960 99 Z -11.2099 33.0729 42.0000 -Arial.ttf 49 y 28.0000 42.4960 100 > -3.7377 27.8354 27.8704 -Arial.ttf 49 y 28.0000 42.4960 101 ® -11.7702 43.1916 42.9709 -Arial.ttf 49 y 28.0000 42.4960 102 © -11.9388 43.1916 42.9709 -Arial.ttf 49 y 28.0000 42.4960 103 ] -10.9706 11.0000 53.6167 -Arial.ttf 49 y 28.0000 42.4960 104 é -12.6478 27.4690 43.5020 -Arial.ttf 49 y 28.0000 42.4960 105 z 0.0552 26.3123 30.8793 -Arial.ttf 49 y 28.0000 42.4960 106 _ 37.0596 33.3832 5.2626 -Arial.ttf 49 y 28.0000 42.4960 107 ¥ -11.3797 32.0291 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 1 t 0.0010 15.0709 42.3103 -Arial.ttf 50 ‘ 5.9231 14.0000 2 h 0.1526 24.2793 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 3 a 9.9291 27.4690 32.3813 -Arial.ttf 50 ‘ 5.9231 14.0000 4 n 9.8325 24.2793 32.0709 -Arial.ttf 50 ‘ 5.9231 14.0000 5 P 0.0301 31.4542 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 6 o 9.8946 27.4690 32.3813 -Arial.ttf 50 ‘ 5.9231 14.0000 7 e 10.0118 27.4690 32.3813 -Arial.ttf 50 ‘ 5.9231 14.0000 8 : 11.1578 5.2626 30.8793 -Arial.ttf 50 ‘ 5.9231 14.0000 9 r 9.8804 16.5689 32.0709 -Arial.ttf 50 ‘ 5.9231 14.0000 10 l 0.0291 5.2626 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 11 i 0.0828 5.2626 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 12 1 0.3751 15.2355 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 13 | -0.0345 4.1916 54.4980 -Arial.ttf 50 ‘ 5.9231 14.0000 14 N 0.0690 32.9083 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 15 f 0.0690 18.0709 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 16 g 9.7923 26.3123 43.6877 -Arial.ttf 50 ‘ 5.9231 14.0000 17 d -0.0371 26.3123 42.3103 -Arial.ttf 50 ‘ 5.9231 14.0000 18 W -0.1557 57.1916 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 19 s 10.1040 24.9561 32.3813 -Arial.ttf 50 ‘ 5.9231 14.0000 20 c 10.0517 26.8084 32.3813 -Arial.ttf 50 ‘ 5.9231 14.0000 21 u 11.0173 24.2793 31.1896 -Arial.ttf 50 ‘ 5.9231 14.0000 22 3 0.4468 26.8483 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 23 ~ 16.8762 29.9083 10.9561 -Arial.ttf 50 ‘ 5.9231 14.0000 24 # 0.0716 31.2646 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 25 O -0.6951 39.5749 43.3212 -Arial.ttf 50 ‘ 5.9231 14.0000 26 ` 0.1999 10.9561 8.0769 -Arial.ttf 50 ‘ 5.9231 14.0000 27 @ -0.1310 54.1478 54.3123 -Arial.ttf 50 ‘ 5.9231 14.0000 28 F 0.0770 28.2207 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 29 S -0.5492 33.0001 43.3212 -Arial.ttf 50 ‘ 5.9231 14.0000 30 p 9.7885 26.3123 43.6877 -Arial.ttf 50 ‘ 5.9231 14.0000 31 “ -0.1230 13.5690 14.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 32 % -0.0690 44.8793 42.3103 -Arial.ttf 50 ‘ 5.9231 14.0000 33 £ 0.0195 29.8522 42.3103 -Arial.ttf 50 ‘ 5.9231 14.0000 34 . 36.8976 5.2626 5.2626 -Arial.ttf 50 ‘ 5.9231 14.0000 35 2 0.1529 28.6956 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 36 5 0.3368 26.8483 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 37 m 9.8078 41.4044 32.0709 -Arial.ttf 50 ‘ 5.9231 14.0000 38 V -0.0345 40.5788 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 39 6 0.3103 27.8542 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 40 w 11.0920 43.4212 30.8793 -Arial.ttf 50 ‘ 5.9231 14.0000 41 T 0.1081 33.6936 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 42 M 0.0743 40.5788 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 43 G -0.7667 38.6897 43.3212 -Arial.ttf 50 ‘ 5.9231 14.0000 44 b -0.0101 26.3123 42.3103 -Arial.ttf 50 ‘ 5.9231 14.0000 45 9 0.3019 26.8483 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 46 ; 11.1663 5.2626 39.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 47 D 0.0859 34.4542 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 48 L -0.0487 25.8813 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 49 y 11.1593 28.0000 42.4960 -Arial.ttf 50 ‘ 5.9231 14.0000 50 ‘ 0.1379 5.9231 14.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 51 \ 0.0345 17.5749 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 52 R 0.2831 36.7497 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 53 < 7.3761 27.8354 27.8704 -Arial.ttf 50 ‘ 5.9231 14.0000 54 4 0.1767 28.3503 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 55 8 0.2387 26.6626 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 56 0 0.4276 26.8483 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 57 A 0.0000 40.5788 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 58 E 0.0705 31.4542 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 59 B -0.1793 31.4542 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 60 v 11.3372 27.8704 30.8793 -Arial.ttf 50 ‘ 5.9231 14.0000 61 k 0.0371 25.1207 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 62 J 0.0966 24.0291 42.6606 -Arial.ttf 50 ‘ 5.9231 14.0000 63 U -0.0690 32.9083 42.6606 -Arial.ttf 50 ‘ 5.9231 14.0000 64 j -0.0716 12.3773 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 65 ( -0.2163 14.4103 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 66 7 0.2414 26.8523 41.6897 -Arial.ttf 50 ‘ 5.9231 14.0000 67 § -0.0345 26.9729 53.9271 -Arial.ttf 50 ‘ 5.9231 14.0000 68 $ -2.1695 27.6897 49.3355 -Arial.ttf 50 ‘ 5.9231 14.0000 69 € -0.7045 33.0769 43.3212 -Arial.ttf 50 ‘ 5.9231 14.0000 70 / -0.0690 17.5749 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 71 C -0.5778 36.0000 43.3212 -Arial.ttf 50 ‘ 5.9231 14.0000 72 * 0.0784 20.3453 17.8852 -Arial.ttf 50 ‘ 5.9231 14.0000 73 ” 0.1061 14.2296 14.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 74 ? -0.2509 26.8483 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 75 { -0.0345 16.7375 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 76 } 0.0233 16.7375 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 77 , 36.7704 5.2626 14.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 78 I 0.0912 5.6936 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 79 ° -0.0057 15.8083 15.8083 -Arial.ttf 50 ‘ 5.9231 14.0000 80 K -0.0057 34.5749 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 81 H 0.2340 32.9083 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 82 q 9.8889 26.3123 43.6877 -Arial.ttf 50 ‘ 5.9231 14.0000 83 & -0.0233 35.1148 42.3103 -Arial.ttf 50 ‘ 5.9231 14.0000 84 ’ 0.0439 5.9231 14.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 85 [ 0.0854 11.0000 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 86 - 24.2394 15.4980 5.2626 -Arial.ttf 50 ‘ 5.9231 14.0000 87 Y 0.2152 38.4601 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 88 Q -0.6043 39.5749 46.3212 -Arial.ttf 50 ‘ 5.9231 14.0000 89 " 0.1145 15.8083 15.1916 -Arial.ttf 50 ‘ 5.9231 14.0000 90 ! 0.0381 5.2626 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 91 x 10.9367 29.1060 30.8793 -Arial.ttf 50 ‘ 5.9231 14.0000 92 ) -0.0716 14.4103 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 93 = 11.9356 27.8793 17.8852 -Arial.ttf 50 ‘ 5.9231 14.0000 94 + 7.5489 27.8753 27.8753 -Arial.ttf 50 ‘ 5.9231 14.0000 95 X 0.0402 37.6626 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 96 » 13.8447 25.0439 26.1917 -Arial.ttf 50 ‘ 5.9231 14.0000 97 ' -0.0716 5.2626 15.1916 -Arial.ttf 50 ‘ 5.9231 14.0000 98 ¢ -0.0379 25.7813 54.2685 -Arial.ttf 50 ‘ 5.9231 14.0000 99 Z 0.1793 33.0729 42.0000 -Arial.ttf 50 ‘ 5.9231 14.0000 100 > 7.6232 27.8354 27.8704 -Arial.ttf 50 ‘ 5.9231 14.0000 101 ® -0.6606 43.1916 42.9709 -Arial.ttf 50 ‘ 5.9231 14.0000 102 © -0.8399 43.1916 42.9709 -Arial.ttf 50 ‘ 5.9231 14.0000 103 ] -0.1793 11.0000 53.6167 -Arial.ttf 50 ‘ 5.9231 14.0000 104 é -1.2882 27.4690 43.5020 -Arial.ttf 50 ‘ 5.9231 14.0000 105 z 11.1207 26.3123 30.8793 -Arial.ttf 50 ‘ 5.9231 14.0000 106 _ 48.3542 33.3832 5.2626 -Arial.ttf 50 ‘ 5.9231 14.0000 107 ¥ 0.0345 32.0291 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 1 t 0.2837 15.0709 42.3103 -Arial.ttf 51 \ 17.5749 42.0000 2 h -0.1861 24.2793 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 3 a 10.0490 27.4690 32.3813 -Arial.ttf 51 \ 17.5749 42.0000 4 n 9.8463 24.2793 32.0709 -Arial.ttf 51 \ 17.5749 42.0000 5 P 0.1871 31.4542 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 6 o 9.7138 27.4690 32.3813 -Arial.ttf 51 \ 17.5749 42.0000 7 e 9.9281 27.4690 32.3813 -Arial.ttf 51 \ 17.5749 42.0000 8 : 11.1154 5.2626 30.8793 -Arial.ttf 51 \ 17.5749 42.0000 9 r 9.9164 16.5689 32.0709 -Arial.ttf 51 \ 17.5749 42.0000 10 l 0.0000 5.2626 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 11 i 0.0976 5.2626 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 12 1 0.3161 15.2355 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 13 | 0.1363 4.1916 54.4980 -Arial.ttf 51 \ 17.5749 42.0000 14 N -0.2030 32.9083 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 15 f 0.2439 18.0709 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 16 g 9.8162 26.3123 43.6877 -Arial.ttf 51 \ 17.5749 42.0000 17 d -0.1618 26.3123 42.3103 -Arial.ttf 51 \ 17.5749 42.0000 18 W 0.1601 57.1916 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 19 s 9.8092 24.9561 32.3813 -Arial.ttf 51 \ 17.5749 42.0000 20 c 9.9473 26.8084 32.3813 -Arial.ttf 51 \ 17.5749 42.0000 21 u 11.0433 24.2793 31.1896 -Arial.ttf 51 \ 17.5749 42.0000 22 3 0.3644 26.8483 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 23 ~ 16.9567 29.9083 10.9561 -Arial.ttf 51 \ 17.5749 42.0000 24 # 0.1199 31.2646 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 25 O -0.7836 39.5749 43.3212 -Arial.ttf 51 \ 17.5749 42.0000 26 ` 0.2138 10.9561 8.0769 -Arial.ttf 51 \ 17.5749 42.0000 27 @ -0.1708 54.1478 54.3123 -Arial.ttf 51 \ 17.5749 42.0000 28 F 0.1448 28.2207 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 29 S -0.7629 33.0001 43.3212 -Arial.ttf 51 \ 17.5749 42.0000 30 p 9.8287 26.3123 43.6877 -Arial.ttf 51 \ 17.5749 42.0000 31 “ 0.0672 13.5690 14.0000 -Arial.ttf 51 \ 17.5749 42.0000 32 % 0.2371 44.8793 42.3103 -Arial.ttf 51 \ 17.5749 42.0000 33 £ -0.1268 29.8522 42.3103 -Arial.ttf 51 \ 17.5749 42.0000 34 . 36.6388 5.2626 5.2626 -Arial.ttf 51 \ 17.5749 42.0000 35 2 0.3172 28.6956 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 36 5 0.3989 26.8483 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 37 m 9.8629 41.4044 32.0709 -Arial.ttf 51 \ 17.5749 42.0000 38 V 0.0192 40.5788 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 39 6 0.3644 27.8542 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 40 w 10.8721 43.4212 30.8793 -Arial.ttf 51 \ 17.5749 42.0000 41 T -0.2207 33.6936 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 42 M -0.0976 40.5788 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 43 G -0.7041 38.6897 43.3212 -Arial.ttf 51 \ 17.5749 42.0000 44 b 0.3252 26.3123 42.3103 -Arial.ttf 51 \ 17.5749 42.0000 45 9 0.3103 26.8483 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 46 ; 11.1345 5.2626 39.6167 -Arial.ttf 51 \ 17.5749 42.0000 47 D -0.4011 34.4542 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 48 L -0.3616 25.8813 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 49 y 11.1099 28.0000 42.4960 -Arial.ttf 51 \ 17.5749 42.0000 50 ‘ 0.3114 5.9231 14.0000 -Arial.ttf 51 \ 17.5749 42.0000 51 \ 0.1061 17.5749 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 52 R -0.0483 36.7497 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 53 < 7.5914 27.8354 27.8704 -Arial.ttf 51 \ 17.5749 42.0000 54 4 0.3076 28.3503 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 55 8 0.1931 26.6626 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 56 0 0.3046 26.8483 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 57 A -0.1199 40.5788 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 58 E -0.1067 31.4542 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 59 B 0.0690 31.4542 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 60 v 11.2808 27.8704 30.8793 -Arial.ttf 51 \ 17.5749 42.0000 61 k 0.2486 25.1207 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 62 J -0.0933 24.0291 42.6606 -Arial.ttf 51 \ 17.5749 42.0000 63 U 0.0138 32.9083 42.6606 -Arial.ttf 51 \ 17.5749 42.0000 64 j 0.1406 12.3773 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 65 ( 0.1500 14.4103 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 66 7 0.4414 26.8523 41.6897 -Arial.ttf 51 \ 17.5749 42.0000 67 § -0.0138 26.9729 53.9271 -Arial.ttf 51 \ 17.5749 42.0000 68 $ -2.1243 27.6897 49.3355 -Arial.ttf 51 \ 17.5749 42.0000 69 € -0.5991 33.0769 43.3212 -Arial.ttf 51 \ 17.5749 42.0000 70 / 0.0854 17.5749 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 71 C -0.7889 36.0000 43.3212 -Arial.ttf 51 \ 17.5749 42.0000 72 * -0.1999 20.3453 17.8852 -Arial.ttf 51 \ 17.5749 42.0000 73 ” 0.1783 14.2296 14.0000 -Arial.ttf 51 \ 17.5749 42.0000 74 ? 0.1422 26.8483 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 75 { -0.1713 16.7375 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 76 } -0.2715 16.7375 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 77 , 36.8171 5.2626 14.0000 -Arial.ttf 51 \ 17.5749 42.0000 78 I -0.1379 5.6936 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 79 ° -0.1368 15.8083 15.8083 -Arial.ttf 51 \ 17.5749 42.0000 80 K -0.0371 34.5749 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 81 H -0.1930 32.9083 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 82 q 9.9153 26.3123 43.6877 -Arial.ttf 51 \ 17.5749 42.0000 83 & -0.0048 35.1148 42.3103 -Arial.ttf 51 \ 17.5749 42.0000 84 ’ 0.0744 5.9231 14.0000 -Arial.ttf 51 \ 17.5749 42.0000 85 [ -0.0442 11.0000 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 86 - 24.3651 15.4980 5.2626 -Arial.ttf 51 \ 17.5749 42.0000 87 Y -0.0828 38.4601 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 88 Q -0.7099 39.5749 46.3212 -Arial.ttf 51 \ 17.5749 42.0000 89 " -0.0398 15.8083 15.1916 -Arial.ttf 51 \ 17.5749 42.0000 90 ! -0.1019 5.2626 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 91 x 11.3276 29.1060 30.8793 -Arial.ttf 51 \ 17.5749 42.0000 92 ) 0.1033 14.4103 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 93 = 12.0964 27.8793 17.8852 -Arial.ttf 51 \ 17.5749 42.0000 94 + 7.4520 27.8753 27.8753 -Arial.ttf 51 \ 17.5749 42.0000 95 X 0.0169 37.6626 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 96 » 13.9561 25.0439 26.1917 -Arial.ttf 51 \ 17.5749 42.0000 97 ' -0.1393 5.2626 15.1916 -Arial.ttf 51 \ 17.5749 42.0000 98 ¢ -0.0353 25.7813 54.2685 -Arial.ttf 51 \ 17.5749 42.0000 99 Z 0.1199 33.0729 42.0000 -Arial.ttf 51 \ 17.5749 42.0000 100 > 7.1926 27.8354 27.8704 -Arial.ttf 51 \ 17.5749 42.0000 101 ® -0.6910 43.1916 42.9709 -Arial.ttf 51 \ 17.5749 42.0000 102 © -0.5477 43.1916 42.9709 -Arial.ttf 51 \ 17.5749 42.0000 103 ] -0.0264 11.0000 53.6167 -Arial.ttf 51 \ 17.5749 42.0000 104 é -1.1943 27.4690 43.5020 -Arial.ttf 51 \ 17.5749 42.0000 105 z 11.2268 26.3123 30.8793 -Arial.ttf 51 \ 17.5749 42.0000 106 _ 48.0344 33.3832 5.2626 -Arial.ttf 51 \ 17.5749 42.0000 107 ¥ 0.1425 32.0291 42.0000 -Arial.ttf 52 R 36.7497 42.0000 1 t 0.0021 15.0709 42.3103 -Arial.ttf 52 R 36.7497 42.0000 2 h 0.2216 24.2793 42.0000 -Arial.ttf 52 R 36.7497 42.0000 3 a 10.2521 27.4690 32.3813 -Arial.ttf 52 R 36.7497 42.0000 4 n 9.6942 24.2793 32.0709 -Arial.ttf 52 R 36.7497 42.0000 5 P 0.0568 31.4542 42.0000 -Arial.ttf 52 R 36.7497 42.0000 6 o 10.0707 27.4690 32.3813 -Arial.ttf 52 R 36.7497 42.0000 7 e 10.1067 27.4690 32.3813 -Arial.ttf 52 R 36.7497 42.0000 8 : 11.2533 5.2626 30.8793 -Arial.ttf 52 R 36.7497 42.0000 9 r 9.8610 16.5689 32.0709 -Arial.ttf 52 R 36.7497 42.0000 10 l -0.2333 5.2626 42.0000 -Arial.ttf 52 R 36.7497 42.0000 11 i 0.0885 5.2626 42.0000 -Arial.ttf 52 R 36.7497 42.0000 12 1 0.3989 15.2355 41.6897 -Arial.ttf 52 R 36.7497 42.0000 13 | 0.0345 4.1916 54.4980 -Arial.ttf 52 R 36.7497 42.0000 14 N 0.0358 32.9083 42.0000 -Arial.ttf 52 R 36.7497 42.0000 15 f 0.1425 18.0709 42.0000 -Arial.ttf 52 R 36.7497 42.0000 16 g 10.3030 26.3123 43.6877 -Arial.ttf 52 R 36.7497 42.0000 17 d -0.1871 26.3123 42.3103 -Arial.ttf 52 R 36.7497 42.0000 18 W -0.0790 57.1916 42.0000 -Arial.ttf 52 R 36.7497 42.0000 19 s 9.8973 24.9561 32.3813 -Arial.ttf 52 R 36.7497 42.0000 20 c 10.1041 26.8084 32.3813 -Arial.ttf 52 R 36.7497 42.0000 21 u 11.1839 24.2793 31.1896 -Arial.ttf 52 R 36.7497 42.0000 22 3 0.2387 26.8483 41.6897 -Arial.ttf 52 R 36.7497 42.0000 23 ~ 16.8364 29.9083 10.9561 -Arial.ttf 52 R 36.7497 42.0000 24 # -0.0116 31.2646 42.0000 -Arial.ttf 52 R 36.7497 42.0000 25 O -0.7173 39.5749 43.3212 -Arial.ttf 52 R 36.7497 42.0000 26 ` -0.0329 10.9561 8.0769 -Arial.ttf 52 R 36.7497 42.0000 27 @ 0.1739 54.1478 54.3123 -Arial.ttf 52 R 36.7497 42.0000 28 F -0.1458 28.2207 42.0000 -Arial.ttf 52 R 36.7497 42.0000 29 S -0.7200 33.0001 43.3212 -Arial.ttf 52 R 36.7497 42.0000 30 p 9.9153 26.3123 43.6877 -Arial.ttf 52 R 36.7497 42.0000 31 “ -0.3134 13.5690 14.0000 -Arial.ttf 52 R 36.7497 42.0000 32 % -0.1908 44.8793 42.3103 -Arial.ttf 52 R 36.7497 42.0000 33 £ 0.1061 29.8522 42.3103 -Arial.ttf 52 R 36.7497 42.0000 34 . 36.4808 5.2626 5.2626 -Arial.ttf 52 R 36.7497 42.0000 35 2 0.1979 28.6956 41.6897 -Arial.ttf 52 R 36.7497 42.0000 36 5 0.3528 26.8483 41.6897 -Arial.ttf 52 R 36.7497 42.0000 37 m 9.9073 41.4044 32.0709 -Arial.ttf 52 R 36.7497 42.0000 38 V 0.0648 40.5788 42.0000 -Arial.ttf 52 R 36.7497 42.0000 39 6 0.6921 27.8542 41.6897 -Arial.ttf 52 R 36.7497 42.0000 40 w 11.2433 43.4212 30.8793 -Arial.ttf 52 R 36.7497 42.0000 41 T -0.1462 33.6936 42.0000 -Arial.ttf 52 R 36.7497 42.0000 42 M -0.3103 40.5788 42.0000 -Arial.ttf 52 R 36.7497 42.0000 43 G -0.8261 38.6897 43.3212 -Arial.ttf 52 R 36.7497 42.0000 44 b 0.1404 26.3123 42.3103 -Arial.ttf 52 R 36.7497 42.0000 45 9 0.3860 26.8483 41.6897 -Arial.ttf 52 R 36.7497 42.0000 46 ; 11.4160 5.2626 39.6167 -Arial.ttf 52 R 36.7497 42.0000 47 D 0.1929 34.4542 42.0000 -Arial.ttf 52 R 36.7497 42.0000 48 L -0.0520 25.8813 42.0000 -Arial.ttf 52 R 36.7497 42.0000 49 y 11.3099 28.0000 42.4960 -Arial.ttf 52 R 36.7497 42.0000 50 ‘ 0.1203 5.9231 14.0000 -Arial.ttf 52 R 36.7497 42.0000 51 \ 0.0908 17.5749 42.0000 -Arial.ttf 52 R 36.7497 42.0000 52 R -0.2264 36.7497 42.0000 -Arial.ttf 52 R 36.7497 42.0000 53 < 7.5856 27.8354 27.8704 -Arial.ttf 52 R 36.7497 42.0000 54 4 0.0568 28.3503 41.6897 -Arial.ttf 52 R 36.7497 42.0000 55 8 0.2892 26.6626 41.6897 -Arial.ttf 52 R 36.7497 42.0000 56 0 0.6137 26.8483 41.6897 -Arial.ttf 52 R 36.7497 42.0000 57 A -0.0747 40.5788 42.0000 -Arial.ttf 52 R 36.7497 42.0000 58 E -0.2148 31.4542 42.0000 -Arial.ttf 52 R 36.7497 42.0000 59 B 0.3230 31.4542 42.0000 -Arial.ttf 52 R 36.7497 42.0000 60 v 11.0777 27.8704 30.8793 -Arial.ttf 52 R 36.7497 42.0000 61 k 0.1061 25.1207 42.0000 -Arial.ttf 52 R 36.7497 42.0000 62 J 0.1061 24.0291 42.6606 -Arial.ttf 52 R 36.7497 42.0000 63 U -0.1851 32.9083 42.6606 -Arial.ttf 52 R 36.7497 42.0000 64 j -0.3044 12.3773 53.6167 -Arial.ttf 52 R 36.7497 42.0000 65 ( -0.0095 14.4103 53.6167 -Arial.ttf 52 R 36.7497 42.0000 66 7 0.1539 26.8523 41.6897 -Arial.ttf 52 R 36.7497 42.0000 67 § -0.2290 26.9729 53.9271 -Arial.ttf 52 R 36.7497 42.0000 68 $ -2.4193 27.6897 49.3355 -Arial.ttf 52 R 36.7497 42.0000 69 € -0.4570 33.0769 43.3212 -Arial.ttf 52 R 36.7497 42.0000 70 / 0.0111 17.5749 42.0000 -Arial.ttf 52 R 36.7497 42.0000 71 C -0.5711 36.0000 43.3212 -Arial.ttf 52 R 36.7497 42.0000 72 * 0.1019 20.3453 17.8852 -Arial.ttf 52 R 36.7497 42.0000 73 ” 0.2301 14.2296 14.0000 -Arial.ttf 52 R 36.7497 42.0000 74 ? 0.1131 26.8483 42.0000 -Arial.ttf 52 R 36.7497 42.0000 75 { 0.1203 16.7375 53.6167 -Arial.ttf 52 R 36.7497 42.0000 76 } 0.2821 16.7375 53.6167 -Arial.ttf 52 R 36.7497 42.0000 77 , 36.6504 5.2626 14.0000 -Arial.ttf 52 R 36.7497 42.0000 78 I 0.2247 5.6936 42.0000 -Arial.ttf 52 R 36.7497 42.0000 79 ° -0.0992 15.8083 15.8083 -Arial.ttf 52 R 36.7497 42.0000 80 K -0.0675 34.5749 42.0000 -Arial.ttf 52 R 36.7497 42.0000 81 H 0.3899 32.9083 42.0000 -Arial.ttf 52 R 36.7497 42.0000 82 q 9.8092 26.3123 43.6877 -Arial.ttf 52 R 36.7497 42.0000 83 & -0.0527 35.1148 42.3103 -Arial.ttf 52 R 36.7497 42.0000 84 ’ -0.1230 5.9231 14.0000 -Arial.ttf 52 R 36.7497 42.0000 85 [ 0.1221 11.0000 53.6167 -Arial.ttf 52 R 36.7497 42.0000 86 - 24.6944 15.4980 5.2626 -Arial.ttf 52 R 36.7497 42.0000 87 Y -0.2088 38.4601 42.0000 -Arial.ttf 52 R 36.7497 42.0000 88 Q -0.4526 39.5749 46.3212 -Arial.ttf 52 R 36.7497 42.0000 89 " 0.0194 15.8083 15.1916 -Arial.ttf 52 R 36.7497 42.0000 90 ! -0.1186 5.2626 42.0000 -Arial.ttf 52 R 36.7497 42.0000 91 x 11.2708 29.1060 30.8793 -Arial.ttf 52 R 36.7497 42.0000 92 ) 0.0747 14.4103 53.6167 -Arial.ttf 52 R 36.7497 42.0000 93 = 11.4536 27.8793 17.8852 -Arial.ttf 52 R 36.7497 42.0000 94 + 7.4311 27.8753 27.8753 -Arial.ttf 52 R 36.7497 42.0000 95 X 0.0784 37.6626 42.0000 -Arial.ttf 52 R 36.7497 42.0000 96 » 14.1615 25.0439 26.1917 -Arial.ttf 52 R 36.7497 42.0000 97 ' -0.0669 5.2626 15.1916 -Arial.ttf 52 R 36.7497 42.0000 98 ¢ 0.0103 25.7813 54.2685 -Arial.ttf 52 R 36.7497 42.0000 99 Z 0.0419 33.0729 42.0000 -Arial.ttf 52 R 36.7497 42.0000 100 > 7.6228 27.8354 27.8704 -Arial.ttf 52 R 36.7497 42.0000 101 ® -0.7376 43.1916 42.9709 -Arial.ttf 52 R 36.7497 42.0000 102 © -0.6235 43.1916 42.9709 -Arial.ttf 52 R 36.7497 42.0000 103 ] -0.0508 11.0000 53.6167 -Arial.ttf 52 R 36.7497 42.0000 104 é -1.3730 27.4690 43.5020 -Arial.ttf 52 R 36.7497 42.0000 105 z 10.9991 26.3123 30.8793 -Arial.ttf 52 R 36.7497 42.0000 106 _ 48.5435 33.3832 5.2626 -Arial.ttf 52 R 36.7497 42.0000 107 ¥ 0.0621 32.0291 42.0000 -Arial.ttf 53 < 27.8354 27.8704 1 t -7.8008 15.0709 42.3103 -Arial.ttf 53 < 27.8354 27.8704 2 h -7.4711 24.2793 42.0000 -Arial.ttf 53 < 27.8354 27.8704 3 a 2.4521 27.4690 32.3813 -Arial.ttf 53 < 27.8354 27.8704 4 n 2.2235 24.2793 32.0709 -Arial.ttf 53 < 27.8354 27.8704 5 P -7.7419 31.4542 42.0000 -Arial.ttf 53 < 27.8354 27.8704 6 o 2.2867 27.4690 32.3813 -Arial.ttf 53 < 27.8354 27.8704 7 e 2.3652 27.4690 32.3813 -Arial.ttf 53 < 27.8354 27.8704 8 : 3.7378 5.2626 30.8793 -Arial.ttf 53 < 27.8354 27.8704 9 r 2.3312 16.5689 32.0709 -Arial.ttf 53 < 27.8354 27.8704 10 l -7.4601 5.2626 42.0000 -Arial.ttf 53 < 27.8354 27.8704 11 i -7.6164 5.2626 42.0000 -Arial.ttf 53 < 27.8354 27.8704 12 1 -7.3151 15.2355 41.6897 -Arial.ttf 53 < 27.8354 27.8704 13 | -7.9418 4.1916 54.4980 -Arial.ttf 53 < 27.8354 27.8704 14 N -7.2896 32.9083 42.0000 -Arial.ttf 53 < 27.8354 27.8704 15 f -7.4276 18.0709 42.0000 -Arial.ttf 53 < 27.8354 27.8704 16 g 2.5379 26.3123 43.6877 -Arial.ttf 53 < 27.8354 27.8704 17 d -7.4174 26.3123 42.3103 -Arial.ttf 53 < 27.8354 27.8704 18 W -7.5715 57.1916 42.0000 -Arial.ttf 53 < 27.8354 27.8704 19 s 2.3009 24.9561 32.3813 -Arial.ttf 53 < 27.8354 27.8704 20 c 2.4553 26.8084 32.3813 -Arial.ttf 53 < 27.8354 27.8704 21 u 3.8066 24.2793 31.1896 -Arial.ttf 53 < 27.8354 27.8704 22 3 -7.0795 26.8483 41.6897 -Arial.ttf 53 < 27.8354 27.8704 23 ~ 9.2815 29.9083 10.9561 -Arial.ttf 53 < 27.8354 27.8704 24 # -7.5087 31.2646 42.0000 -Arial.ttf 53 < 27.8354 27.8704 25 O -8.3915 39.5749 43.3212 -Arial.ttf 53 < 27.8354 27.8704 26 ` -7.3454 10.9561 8.0769 -Arial.ttf 53 < 27.8354 27.8704 27 @ -7.6419 54.1478 54.3123 -Arial.ttf 53 < 27.8354 27.8704 28 F -7.7032 28.2207 42.0000 -Arial.ttf 53 < 27.8354 27.8704 29 S -8.0462 33.0001 43.3212 -Arial.ttf 53 < 27.8354 27.8704 30 p 2.5890 26.3123 43.6877 -Arial.ttf 53 < 27.8354 27.8704 31 “ -7.7458 13.5690 14.0000 -Arial.ttf 53 < 27.8354 27.8704 32 % -7.3056 44.8793 42.3103 -Arial.ttf 53 < 27.8354 27.8704 33 £ -7.5118 29.8522 42.3103 -Arial.ttf 53 < 27.8354 27.8704 34 . 29.0235 5.2626 5.2626 -Arial.ttf 53 < 27.8354 27.8704 35 2 -7.0186 28.6956 41.6897 -Arial.ttf 53 < 27.8354 27.8704 36 5 -7.1182 26.8483 41.6897 -Arial.ttf 53 < 27.8354 27.8704 37 m 2.4741 41.4044 32.0709 -Arial.ttf 53 < 27.8354 27.8704 38 V -7.8285 40.5788 42.0000 -Arial.ttf 53 < 27.8354 27.8704 39 6 -7.2562 27.8542 41.6897 -Arial.ttf 53 < 27.8354 27.8704 40 w 3.4772 43.4212 30.8793 -Arial.ttf 53 < 27.8354 27.8704 41 T -7.4519 33.6936 42.0000 -Arial.ttf 53 < 27.8354 27.8704 42 M -7.6063 40.5788 42.0000 -Arial.ttf 53 < 27.8354 27.8704 43 G -8.1799 38.6897 43.3212 -Arial.ttf 53 < 27.8354 27.8704 44 b -7.3300 26.3123 42.3103 -Arial.ttf 53 < 27.8354 27.8704 45 9 -7.4895 26.8483 41.6897 -Arial.ttf 53 < 27.8354 27.8704 46 ; 3.5885 5.2626 39.6167 -Arial.ttf 53 < 27.8354 27.8704 47 D -7.2186 34.4542 42.0000 -Arial.ttf 53 < 27.8354 27.8704 48 L -7.5608 25.8813 42.0000 -Arial.ttf 53 < 27.8354 27.8704 49 y 3.2245 28.0000 42.4960 -Arial.ttf 53 < 27.8354 27.8704 50 ‘ -7.3401 5.9231 14.0000 -Arial.ttf 53 < 27.8354 27.8704 51 \ -7.6434 17.5749 42.0000 -Arial.ttf 53 < 27.8354 27.8704 52 R -7.6820 36.7497 42.0000 -Arial.ttf 53 < 27.8354 27.8704 53 < -0.2259 27.8354 27.8704 -Arial.ttf 53 < 27.8354 27.8704 54 4 -7.3219 28.3503 41.6897 -Arial.ttf 53 < 27.8354 27.8704 55 8 -7.4050 26.6626 41.6897 -Arial.ttf 53 < 27.8354 27.8704 56 0 -7.4317 26.8483 41.6897 -Arial.ttf 53 < 27.8354 27.8704 57 A -7.5378 40.5788 42.0000 -Arial.ttf 53 < 27.8354 27.8704 58 E -7.5640 31.4542 42.0000 -Arial.ttf 53 < 27.8354 27.8704 59 B -7.8826 31.4542 42.0000 -Arial.ttf 53 < 27.8354 27.8704 60 v 3.6094 27.8704 30.8793 -Arial.ttf 53 < 27.8354 27.8704 61 k -7.9516 25.1207 42.0000 -Arial.ttf 53 < 27.8354 27.8704 62 J -7.5043 24.0291 42.6606 -Arial.ttf 53 < 27.8354 27.8704 63 U -7.7569 32.9083 42.6606 -Arial.ttf 53 < 27.8354 27.8704 64 j -7.7309 12.3773 53.6167 -Arial.ttf 53 < 27.8354 27.8704 65 ( -7.5639 14.4103 53.6167 -Arial.ttf 53 < 27.8354 27.8704 66 7 -7.1129 26.8523 41.6897 -Arial.ttf 53 < 27.8354 27.8704 67 § -7.5586 26.9729 53.9271 -Arial.ttf 53 < 27.8354 27.8704 68 $ -9.6670 27.6897 49.3355 -Arial.ttf 53 < 27.8354 27.8704 69 € -8.2716 33.0769 43.3212 -Arial.ttf 53 < 27.8354 27.8704 70 / -7.8132 17.5749 42.0000 -Arial.ttf 53 < 27.8354 27.8704 71 C -8.2631 36.0000 43.3212 -Arial.ttf 53 < 27.8354 27.8704 72 * -7.6297 20.3453 17.8852 -Arial.ttf 53 < 27.8354 27.8704 73 ” -7.7171 14.2296 14.0000 -Arial.ttf 53 < 27.8354 27.8704 74 ? -7.6356 26.8483 42.0000 -Arial.ttf 53 < 27.8354 27.8704 75 { -7.4880 16.7375 53.6167 -Arial.ttf 53 < 27.8354 27.8704 76 } -7.4742 16.7375 53.6167 -Arial.ttf 53 < 27.8354 27.8704 77 , 29.1447 5.2626 14.0000 -Arial.ttf 53 < 27.8354 27.8704 78 I -7.1830 5.6936 42.0000 -Arial.ttf 53 < 27.8354 27.8704 79 ° -7.6143 15.8083 15.8083 -Arial.ttf 53 < 27.8354 27.8704 80 K -7.2648 34.5749 42.0000 -Arial.ttf 53 < 27.8354 27.8704 81 H -7.3995 32.9083 42.0000 -Arial.ttf 53 < 27.8354 27.8704 82 q 2.5058 26.3123 43.6877 -Arial.ttf 53 < 27.8354 27.8704 83 & -7.5401 35.1148 42.3103 -Arial.ttf 53 < 27.8354 27.8704 84 ’ -7.3750 5.9231 14.0000 -Arial.ttf 53 < 27.8354 27.8704 85 [ -7.5458 11.0000 53.6167 -Arial.ttf 53 < 27.8354 27.8704 86 - 16.7572 15.4980 5.2626 -Arial.ttf 53 < 27.8354 27.8704 87 Y -7.5181 38.4601 42.0000 -Arial.ttf 53 < 27.8354 27.8704 88 Q -7.8670 39.5749 46.3212 -Arial.ttf 53 < 27.8354 27.8704 89 " -7.4620 15.8083 15.1916 -Arial.ttf 53 < 27.8354 27.8704 90 ! -7.5526 5.2626 42.0000 -Arial.ttf 53 < 27.8354 27.8704 91 x 3.4508 29.1060 30.8793 -Arial.ttf 53 < 27.8354 27.8704 92 ) -7.6725 14.4103 53.6167 -Arial.ttf 53 < 27.8354 27.8704 93 = 4.3083 27.8793 17.8852 -Arial.ttf 53 < 27.8354 27.8704 94 + 0.1256 27.8753 27.8753 -Arial.ttf 53 < 27.8354 27.8704 95 X -7.3803 37.6626 42.0000 -Arial.ttf 53 < 27.8354 27.8704 96 » 6.4639 25.0439 26.1917 -Arial.ttf 53 < 27.8354 27.8704 97 ' -7.4769 5.2626 15.1916 -Arial.ttf 53 < 27.8354 27.8704 98 ¢ -7.8520 25.7813 54.2685 -Arial.ttf 53 < 27.8354 27.8704 99 Z -7.3692 33.0729 42.0000 -Arial.ttf 53 < 27.8354 27.8704 100 > -0.0253 27.8354 27.8704 -Arial.ttf 53 < 27.8354 27.8704 101 ® -8.3267 43.1916 42.9709 -Arial.ttf 53 < 27.8354 27.8704 102 © -8.3715 43.1916 42.9709 -Arial.ttf 53 < 27.8354 27.8704 103 ] -7.6079 11.0000 53.6167 -Arial.ttf 53 < 27.8354 27.8704 104 é -8.5041 27.4690 43.5020 -Arial.ttf 53 < 27.8354 27.8704 105 z 3.7572 26.3123 30.8793 -Arial.ttf 53 < 27.8354 27.8704 106 _ 40.9585 33.3832 5.2626 -Arial.ttf 53 < 27.8354 27.8704 107 ¥ -7.4202 32.0291 42.0000 -Arial.ttf 54 4 28.3503 41.6897 1 t -0.2302 15.0709 42.3103 -Arial.ttf 54 4 28.3503 41.6897 2 h -0.3671 24.2793 42.0000 -Arial.ttf 54 4 28.3503 41.6897 3 a 9.7869 27.4690 32.3813 -Arial.ttf 54 4 28.3503 41.6897 4 n 9.8271 24.2793 32.0709 -Arial.ttf 54 4 28.3503 41.6897 5 P -0.4302 31.4542 42.0000 -Arial.ttf 54 4 28.3503 41.6897 6 o 9.7018 27.4690 32.3813 -Arial.ttf 54 4 28.3503 41.6897 7 e 9.4212 27.4690 32.3813 -Arial.ttf 54 4 28.3503 41.6897 8 : 11.1335 5.2626 30.8793 -Arial.ttf 54 4 28.3503 41.6897 9 r 9.7651 16.5689 32.0709 -Arial.ttf 54 4 28.3503 41.6897 10 l -0.2907 5.2626 42.0000 -Arial.ttf 54 4 28.3503 41.6897 11 i -0.3931 5.2626 42.0000 -Arial.ttf 54 4 28.3503 41.6897 12 1 0.1033 15.2355 41.6897 -Arial.ttf 54 4 28.3503 41.6897 13 | -0.5147 4.1916 54.4980 -Arial.ttf 54 4 28.3503 41.6897 14 N -0.1853 32.9083 42.0000 -Arial.ttf 54 4 28.3503 41.6897 15 f -0.5820 18.0709 42.0000 -Arial.ttf 54 4 28.3503 41.6897 16 g 9.3556 26.3123 43.6877 -Arial.ttf 54 4 28.3503 41.6897 17 d -0.3651 26.3123 42.3103 -Arial.ttf 54 4 28.3503 41.6897 18 W -0.3073 57.1916 42.0000 -Arial.ttf 54 4 28.3503 41.6897 19 s 9.7275 24.9561 32.3813 -Arial.ttf 54 4 28.3503 41.6897 20 c 9.6999 26.8084 32.3813 -Arial.ttf 54 4 28.3503 41.6897 21 u 10.9812 24.2793 31.1896 -Arial.ttf 54 4 28.3503 41.6897 22 3 -0.2121 26.8483 41.6897 -Arial.ttf 54 4 28.3503 41.6897 23 ~ 16.4506 29.9083 10.9561 -Arial.ttf 54 4 28.3503 41.6897 24 # -0.2381 31.2646 42.0000 -Arial.ttf 54 4 28.3503 41.6897 25 O -1.0196 39.5749 43.3212 -Arial.ttf 54 4 28.3503 41.6897 26 ` -0.3872 10.9561 8.0769 -Arial.ttf 54 4 28.3503 41.6897 27 @ -0.2577 54.1478 54.3123 -Arial.ttf 54 4 28.3503 41.6897 28 F -0.3448 28.2207 42.0000 -Arial.ttf 54 4 28.3503 41.6897 29 S -0.9625 33.0001 43.3212 -Arial.ttf 54 4 28.3503 41.6897 30 p 9.6892 26.3123 43.6877 -Arial.ttf 54 4 28.3503 41.6897 31 “ -0.2044 13.5690 14.0000 -Arial.ttf 54 4 28.3503 41.6897 32 % -0.3560 44.8793 42.3103 -Arial.ttf 54 4 28.3503 41.6897 33 £ -0.1927 29.8522 42.3103 -Arial.ttf 54 4 28.3503 41.6897 34 . 36.4670 5.2626 5.2626 -Arial.ttf 54 4 28.3503 41.6897 35 2 0.0381 28.6956 41.6897 -Arial.ttf 54 4 28.3503 41.6897 36 5 0.2364 26.8483 41.6897 -Arial.ttf 54 4 28.3503 41.6897 37 m 9.4920 41.4044 32.0709 -Arial.ttf 54 4 28.3503 41.6897 38 V -0.3279 40.5788 42.0000 -Arial.ttf 54 4 28.3503 41.6897 39 6 -0.0251 27.8542 41.6897 -Arial.ttf 54 4 28.3503 41.6897 40 w 10.8173 43.4212 30.8793 -Arial.ttf 54 4 28.3503 41.6897 41 T -0.3448 33.6936 42.0000 -Arial.ttf 54 4 28.3503 41.6897 42 M -0.1561 40.5788 42.0000 -Arial.ttf 54 4 28.3503 41.6897 43 G -0.8729 38.6897 43.3212 -Arial.ttf 54 4 28.3503 41.6897 44 b -0.2675 26.3123 42.3103 -Arial.ttf 54 4 28.3503 41.6897 45 9 -0.1512 26.8483 41.6897 -Arial.ttf 54 4 28.3503 41.6897 46 ; 10.9069 5.2626 39.6167 -Arial.ttf 54 4 28.3503 41.6897 47 D -0.4746 34.4542 42.0000 -Arial.ttf 54 4 28.3503 41.6897 48 L -0.2222 25.8813 42.0000 -Arial.ttf 54 4 28.3503 41.6897 49 y 11.2225 28.0000 42.4960 -Arial.ttf 54 4 28.3503 41.6897 50 ‘ -0.3394 5.9231 14.0000 -Arial.ttf 54 4 28.3503 41.6897 51 \ -0.2123 17.5749 42.0000 -Arial.ttf 54 4 28.3503 41.6897 52 R -0.3448 36.7497 42.0000 -Arial.ttf 54 4 28.3503 41.6897 53 < 7.3856 27.8354 27.8704 -Arial.ttf 54 4 28.3503 41.6897 54 4 0.1155 28.3503 41.6897 -Arial.ttf 54 4 28.3503 41.6897 55 8 0.0000 26.6626 41.6897 -Arial.ttf 54 4 28.3503 41.6897 56 0 -0.1607 26.8483 41.6897 -Arial.ttf 54 4 28.3503 41.6897 57 A -0.2054 40.5788 42.0000 -Arial.ttf 54 4 28.3503 41.6897 58 E -0.0399 31.4542 42.0000 -Arial.ttf 54 4 28.3503 41.6897 59 B -0.6147 31.4542 42.0000 -Arial.ttf 54 4 28.3503 41.6897 60 v 10.8492 27.8704 30.8793 -Arial.ttf 54 4 28.3503 41.6897 61 k -0.4042 25.1207 42.0000 -Arial.ttf 54 4 28.3503 41.6897 62 J -0.1445 24.0291 42.6606 -Arial.ttf 54 4 28.3503 41.6897 63 U -0.3174 32.9083 42.6606 -Arial.ttf 54 4 28.3503 41.6897 64 j -0.0594 12.3773 53.6167 -Arial.ttf 54 4 28.3503 41.6897 65 ( -0.3101 14.4103 53.6167 -Arial.ttf 54 4 28.3503 41.6897 66 7 0.1560 26.8523 41.6897 -Arial.ttf 54 4 28.3503 41.6897 67 § -0.1905 26.9729 53.9271 -Arial.ttf 54 4 28.3503 41.6897 68 $ -2.1734 27.6897 49.3355 -Arial.ttf 54 4 28.3503 41.6897 69 € -1.1439 33.0769 43.3212 -Arial.ttf 54 4 28.3503 41.6897 70 / -0.1780 17.5749 42.0000 -Arial.ttf 54 4 28.3503 41.6897 71 C -1.0564 36.0000 43.3212 -Arial.ttf 54 4 28.3503 41.6897 72 * -0.3825 20.3453 17.8852 -Arial.ttf 54 4 28.3503 41.6897 73 ” -0.2854 14.2296 14.0000 -Arial.ttf 54 4 28.3503 41.6897 74 ? -0.3103 26.8483 42.0000 -Arial.ttf 54 4 28.3503 41.6897 75 { -0.4468 16.7375 53.6167 -Arial.ttf 54 4 28.3503 41.6897 76 } -0.4627 16.7375 53.6167 -Arial.ttf 54 4 28.3503 41.6897 77 , 36.2410 5.2626 14.0000 -Arial.ttf 54 4 28.3503 41.6897 78 I -0.5039 5.6936 42.0000 -Arial.ttf 54 4 28.3503 41.6897 79 ° -0.3755 15.8083 15.8083 -Arial.ttf 54 4 28.3503 41.6897 80 K -0.2912 34.5749 42.0000 -Arial.ttf 54 4 28.3503 41.6897 81 H -0.0744 32.9083 42.0000 -Arial.ttf 54 4 28.3503 41.6897 82 q 9.7306 26.3123 43.6877 -Arial.ttf 54 4 28.3503 41.6897 83 & -0.2170 35.1148 42.3103 -Arial.ttf 54 4 28.3503 41.6897 84 ’ -0.1050 5.9231 14.0000 -Arial.ttf 54 4 28.3503 41.6897 85 [ -0.1948 11.0000 53.6167 -Arial.ttf 54 4 28.3503 41.6897 86 - 23.9571 15.4980 5.2626 -Arial.ttf 54 4 28.3503 41.6897 87 Y -0.1323 38.4601 42.0000 -Arial.ttf 54 4 28.3503 41.6897 88 Q -1.1671 39.5749 46.3212 -Arial.ttf 54 4 28.3503 41.6897 89 " -0.0772 15.8083 15.1916 -Arial.ttf 54 4 28.3503 41.6897 90 ! -0.2445 5.2626 42.0000 -Arial.ttf 54 4 28.3503 41.6897 91 x 10.5426 29.1060 30.8793 -Arial.ttf 54 4 28.3503 41.6897 92 ) -0.1989 14.4103 53.6167 -Arial.ttf 54 4 28.3503 41.6897 93 = 11.7278 27.8793 17.8852 -Arial.ttf 54 4 28.3503 41.6897 94 + 7.0159 27.8753 27.8753 -Arial.ttf 54 4 28.3503 41.6897 95 X -0.2100 37.6626 42.0000 -Arial.ttf 54 4 28.3503 41.6897 96 » 13.3878 25.0439 26.1917 -Arial.ttf 54 4 28.3503 41.6897 97 ' -0.3214 5.2626 15.1916 -Arial.ttf 54 4 28.3503 41.6897 98 ¢ -0.6419 25.7813 54.2685 -Arial.ttf 54 4 28.3503 41.6897 99 Z -0.4705 33.0729 42.0000 -Arial.ttf 54 4 28.3503 41.6897 100 > 7.1723 27.8354 27.8704 -Arial.ttf 54 4 28.3503 41.6897 101 ® -0.9230 43.1916 42.9709 -Arial.ttf 54 4 28.3503 41.6897 102 © -0.9682 43.1916 42.9709 -Arial.ttf 54 4 28.3503 41.6897 103 ] -0.2138 11.0000 53.6167 -Arial.ttf 54 4 28.3503 41.6897 104 é -1.5694 27.4690 43.5020 -Arial.ttf 54 4 28.3503 41.6897 105 z 10.7898 26.3123 30.8793 -Arial.ttf 54 4 28.3503 41.6897 106 _ 48.1785 33.3832 5.2626 -Arial.ttf 54 4 28.3503 41.6897 107 ¥ -0.2154 32.0291 42.0000 -Arial.ttf 55 8 26.6626 41.6897 1 t -0.2387 15.0709 42.3103 -Arial.ttf 55 8 26.6626 41.6897 2 h -0.0967 24.2793 42.0000 -Arial.ttf 55 8 26.6626 41.6897 3 a 9.8478 27.4690 32.3813 -Arial.ttf 55 8 26.6626 41.6897 4 n 9.7105 24.2793 32.0709 -Arial.ttf 55 8 26.6626 41.6897 5 P -0.0844 31.4542 42.0000 -Arial.ttf 55 8 26.6626 41.6897 6 o 9.6521 27.4690 32.3813 -Arial.ttf 55 8 26.6626 41.6897 7 e 9.5471 27.4690 32.3813 -Arial.ttf 55 8 26.6626 41.6897 8 : 10.9055 5.2626 30.8793 -Arial.ttf 55 8 26.6626 41.6897 9 r 9.2889 16.5689 32.0709 -Arial.ttf 55 8 26.6626 41.6897 10 l -0.6677 5.2626 42.0000 -Arial.ttf 55 8 26.6626 41.6897 11 i -0.6952 5.2626 42.0000 -Arial.ttf 55 8 26.6626 41.6897 12 1 -0.0938 15.2355 41.6897 -Arial.ttf 55 8 26.6626 41.6897 13 | -0.1682 4.1916 54.4980 -Arial.ttf 55 8 26.6626 41.6897 14 N -0.6952 32.9083 42.0000 -Arial.ttf 55 8 26.6626 41.6897 15 f -0.3268 18.0709 42.0000 -Arial.ttf 55 8 26.6626 41.6897 16 g 9.8032 26.3123 43.6877 -Arial.ttf 55 8 26.6626 41.6897 17 d -0.3532 26.3123 42.3103 -Arial.ttf 55 8 26.6626 41.6897 18 W 0.1176 57.1916 42.0000 -Arial.ttf 55 8 26.6626 41.6897 19 s 9.6289 24.9561 32.3813 -Arial.ttf 55 8 26.6626 41.6897 20 c 9.2793 26.8084 32.3813 -Arial.ttf 55 8 26.6626 41.6897 21 u 11.1635 24.2793 31.1896 -Arial.ttf 55 8 26.6626 41.6897 22 3 0.1638 26.8483 41.6897 -Arial.ttf 55 8 26.6626 41.6897 23 ~ 16.3358 29.9083 10.9561 -Arial.ttf 55 8 26.6626 41.6897 24 # -0.5099 31.2646 42.0000 -Arial.ttf 55 8 26.6626 41.6897 25 O -0.9285 39.5749 43.3212 -Arial.ttf 55 8 26.6626 41.6897 26 ` -0.2966 10.9561 8.0769 -Arial.ttf 55 8 26.6626 41.6897 27 @ -0.6053 54.1478 54.3123 -Arial.ttf 55 8 26.6626 41.6897 28 F 0.1243 28.2207 42.0000 -Arial.ttf 55 8 26.6626 41.6897 29 S -1.1168 33.0001 43.3212 -Arial.ttf 55 8 26.6626 41.6897 30 p 9.4103 26.3123 43.6877 -Arial.ttf 55 8 26.6626 41.6897 31 “ -0.1985 13.5690 14.0000 -Arial.ttf 55 8 26.6626 41.6897 32 % -0.2675 44.8793 42.3103 -Arial.ttf 55 8 26.6626 41.6897 33 £ -0.5210 29.8522 42.3103 -Arial.ttf 55 8 26.6626 41.6897 34 . 36.0018 5.2626 5.2626 -Arial.ttf 55 8 26.6626 41.6897 35 2 -0.0568 28.6956 41.6897 -Arial.ttf 55 8 26.6626 41.6897 36 5 0.0270 26.8483 41.6897 -Arial.ttf 55 8 26.6626 41.6897 37 m 9.6749 41.4044 32.0709 -Arial.ttf 55 8 26.6626 41.6897 38 V -0.2829 40.5788 42.0000 -Arial.ttf 55 8 26.6626 41.6897 39 6 -0.0774 27.8542 41.6897 -Arial.ttf 55 8 26.6626 41.6897 40 w 10.6793 43.4212 30.8793 -Arial.ttf 55 8 26.6626 41.6897 41 T -0.4636 33.6936 42.0000 -Arial.ttf 55 8 26.6626 41.6897 42 M -0.2977 40.5788 42.0000 -Arial.ttf 55 8 26.6626 41.6897 43 G -0.8909 38.6897 43.3212 -Arial.ttf 55 8 26.6626 41.6897 44 b -0.2814 26.3123 42.3103 -Arial.ttf 55 8 26.6626 41.6897 45 9 -0.1479 26.8483 41.6897 -Arial.ttf 55 8 26.6626 41.6897 46 ; 10.8104 5.2626 39.6167 -Arial.ttf 55 8 26.6626 41.6897 47 D -0.3976 34.4542 42.0000 -Arial.ttf 55 8 26.6626 41.6897 48 L -0.0361 25.8813 42.0000 -Arial.ttf 55 8 26.6626 41.6897 49 y 10.8697 28.0000 42.4960 -Arial.ttf 55 8 26.6626 41.6897 50 ‘ -0.3767 5.9231 14.0000 -Arial.ttf 55 8 26.6626 41.6897 51 \ -0.4634 17.5749 42.0000 -Arial.ttf 55 8 26.6626 41.6897 52 R -0.2691 36.7497 42.0000 -Arial.ttf 55 8 26.6626 41.6897 53 < 7.0657 27.8354 27.8704 -Arial.ttf 55 8 26.6626 41.6897 54 4 -0.1782 28.3503 41.6897 -Arial.ttf 55 8 26.6626 41.6897 55 8 -0.1713 26.6626 41.6897 -Arial.ttf 55 8 26.6626 41.6897 56 0 -0.0916 26.8483 41.6897 -Arial.ttf 55 8 26.6626 41.6897 57 A -0.3404 40.5788 42.0000 -Arial.ttf 55 8 26.6626 41.6897 58 E -0.5394 31.4542 42.0000 -Arial.ttf 55 8 26.6626 41.6897 59 B -0.1029 31.4542 42.0000 -Arial.ttf 55 8 26.6626 41.6897 60 v 11.1149 27.8704 30.8793 -Arial.ttf 55 8 26.6626 41.6897 61 k -0.3755 25.1207 42.0000 -Arial.ttf 55 8 26.6626 41.6897 62 J -0.3529 24.0291 42.6606 -Arial.ttf 55 8 26.6626 41.6897 63 U -0.2057 32.9083 42.6606 -Arial.ttf 55 8 26.6626 41.6897 64 j -0.1655 12.3773 53.6167 -Arial.ttf 55 8 26.6626 41.6897 65 ( -0.3847 14.4103 53.6167 -Arial.ttf 55 8 26.6626 41.6897 66 7 0.0217 26.8523 41.6897 -Arial.ttf 55 8 26.6626 41.6897 67 § -0.1216 26.9729 53.9271 -Arial.ttf 55 8 26.6626 41.6897 68 $ -2.3806 27.6897 49.3355 -Arial.ttf 55 8 26.6626 41.6897 69 € -1.0426 33.0769 43.3212 -Arial.ttf 55 8 26.6626 41.6897 70 / -0.2706 17.5749 42.0000 -Arial.ttf 55 8 26.6626 41.6897 71 C -1.1199 36.0000 43.3212 -Arial.ttf 55 8 26.6626 41.6897 72 * -0.2647 20.3453 17.8852 -Arial.ttf 55 8 26.6626 41.6897 73 ” -0.0527 14.2296 14.0000 -Arial.ttf 55 8 26.6626 41.6897 74 ? -0.5751 26.8483 42.0000 -Arial.ttf 55 8 26.6626 41.6897 75 { -0.0604 16.7375 53.6167 -Arial.ttf 55 8 26.6626 41.6897 76 } -0.5680 16.7375 53.6167 -Arial.ttf 55 8 26.6626 41.6897 77 , 36.3954 5.2626 14.0000 -Arial.ttf 55 8 26.6626 41.6897 78 I -0.2759 5.6936 42.0000 -Arial.ttf 55 8 26.6626 41.6897 79 ° -0.1172 15.8083 15.8083 -Arial.ttf 55 8 26.6626 41.6897 80 K -0.4736 34.5749 42.0000 -Arial.ttf 55 8 26.6626 41.6897 81 H -0.1019 32.9083 42.0000 -Arial.ttf 55 8 26.6626 41.6897 82 q 9.6603 26.3123 43.6877 -Arial.ttf 55 8 26.6626 41.6897 83 & -0.2647 35.1148 42.3103 -Arial.ttf 55 8 26.6626 41.6897 84 ’ -0.4912 5.9231 14.0000 -Arial.ttf 55 8 26.6626 41.6897 85 [ -0.4519 11.0000 53.6167 -Arial.ttf 55 8 26.6626 41.6897 86 - 24.1544 15.4980 5.2626 -Arial.ttf 55 8 26.6626 41.6897 87 Y -0.3205 38.4601 42.0000 -Arial.ttf 55 8 26.6626 41.6897 88 Q -0.7753 39.5749 46.3212 -Arial.ttf 55 8 26.6626 41.6897 89 " -0.0844 15.8083 15.1916 -Arial.ttf 55 8 26.6626 41.6897 90 ! -0.7123 5.2626 42.0000 -Arial.ttf 55 8 26.6626 41.6897 91 x 10.8062 29.1060 30.8793 -Arial.ttf 55 8 26.6626 41.6897 92 ) -0.4343 14.4103 53.6167 -Arial.ttf 55 8 26.6626 41.6897 93 = 11.8375 27.8793 17.8852 -Arial.ttf 55 8 26.6626 41.6897 94 + 7.3473 27.8753 27.8753 -Arial.ttf 55 8 26.6626 41.6897 95 X -0.2922 37.6626 42.0000 -Arial.ttf 55 8 26.6626 41.6897 96 » 13.6377 25.0439 26.1917 -Arial.ttf 55 8 26.6626 41.6897 97 ' -0.2123 5.2626 15.1916 -Arial.ttf 55 8 26.6626 41.6897 98 ¢ -0.3770 25.7813 54.2685 -Arial.ttf 55 8 26.6626 41.6897 99 Z 0.0011 33.0729 42.0000 -Arial.ttf 55 8 26.6626 41.6897 100 > 7.1112 27.8354 27.8704 -Arial.ttf 55 8 26.6626 41.6897 101 ® -0.8594 43.1916 42.9709 -Arial.ttf 55 8 26.6626 41.6897 102 © -0.9365 43.1916 42.9709 -Arial.ttf 55 8 26.6626 41.6897 103 ] -0.4015 11.0000 53.6167 -Arial.ttf 55 8 26.6626 41.6897 104 é -1.5588 27.4690 43.5020 -Arial.ttf 55 8 26.6626 41.6897 105 z 10.7701 26.3123 30.8793 -Arial.ttf 55 8 26.6626 41.6897 106 _ 48.1743 33.3832 5.2626 -Arial.ttf 55 8 26.6626 41.6897 107 ¥ -0.4170 32.0291 42.0000 -Arial.ttf 56 0 26.8483 41.6897 1 t -0.6291 15.0709 42.3103 -Arial.ttf 56 0 26.8483 41.6897 2 h -0.3241 24.2793 42.0000 -Arial.ttf 56 0 26.8483 41.6897 3 a 9.6099 27.4690 32.3813 -Arial.ttf 56 0 26.8483 41.6897 4 n 9.5448 24.2793 32.0709 -Arial.ttf 56 0 26.8483 41.6897 5 P -0.3915 31.4542 42.0000 -Arial.ttf 56 0 26.8483 41.6897 6 o 9.4492 27.4690 32.3813 -Arial.ttf 56 0 26.8483 41.6897 7 e 9.5092 27.4690 32.3813 -Arial.ttf 56 0 26.8483 41.6897 8 : 10.7866 5.2626 30.8793 -Arial.ttf 56 0 26.8483 41.6897 9 r 9.6209 16.5689 32.0709 -Arial.ttf 56 0 26.8483 41.6897 10 l -0.7946 5.2626 42.0000 -Arial.ttf 56 0 26.8483 41.6897 11 i -0.3103 5.2626 42.0000 -Arial.ttf 56 0 26.8483 41.6897 12 1 -0.0207 15.2355 41.6897 -Arial.ttf 56 0 26.8483 41.6897 13 | -0.2854 4.1916 54.4980 -Arial.ttf 56 0 26.8483 41.6897 14 N -0.4896 32.9083 42.0000 -Arial.ttf 56 0 26.8483 41.6897 15 f -0.1471 18.0709 42.0000 -Arial.ttf 56 0 26.8483 41.6897 16 g 9.7475 26.3123 43.6877 -Arial.ttf 56 0 26.8483 41.6897 17 d 0.0004 26.3123 42.3103 -Arial.ttf 56 0 26.8483 41.6897 18 W -0.0394 57.1916 42.0000 -Arial.ttf 56 0 26.8483 41.6897 19 s 9.5693 24.9561 32.3813 -Arial.ttf 56 0 26.8483 41.6897 20 c 9.6866 26.8084 32.3813 -Arial.ttf 56 0 26.8483 41.6897 21 u 10.3028 24.2793 31.1896 -Arial.ttf 56 0 26.8483 41.6897 22 3 0.1406 26.8483 41.6897 -Arial.ttf 56 0 26.8483 41.6897 23 ~ 16.5287 29.9083 10.9561 -Arial.ttf 56 0 26.8483 41.6897 24 # -0.1301 31.2646 42.0000 -Arial.ttf 56 0 26.8483 41.6897 25 O -1.0648 39.5749 43.3212 -Arial.ttf 56 0 26.8483 41.6897 26 ` -0.3989 10.9561 8.0769 -Arial.ttf 56 0 26.8483 41.6897 27 @ -0.1821 54.1478 54.3123 -Arial.ttf 56 0 26.8483 41.6897 28 F -0.1740 28.2207 42.0000 -Arial.ttf 56 0 26.8483 41.6897 29 S -0.9419 33.0001 43.3212 -Arial.ttf 56 0 26.8483 41.6897 30 p 9.4793 26.3123 43.6877 -Arial.ttf 56 0 26.8483 41.6897 31 “ -0.2138 13.5690 14.0000 -Arial.ttf 56 0 26.8483 41.6897 32 % 0.0244 44.8793 42.3103 -Arial.ttf 56 0 26.8483 41.6897 33 £ -0.2732 29.8522 42.3103 -Arial.ttf 56 0 26.8483 41.6897 34 . 36.4987 5.2626 5.2626 -Arial.ttf 56 0 26.8483 41.6897 35 2 -0.1475 28.6956 41.6897 -Arial.ttf 56 0 26.8483 41.6897 36 5 -0.0095 26.8483 41.6897 -Arial.ttf 56 0 26.8483 41.6897 37 m 9.9352 41.4044 32.0709 -Arial.ttf 56 0 26.8483 41.6897 38 V -0.6498 40.5788 42.0000 -Arial.ttf 56 0 26.8483 41.6897 39 6 0.0797 27.8542 41.6897 -Arial.ttf 56 0 26.8483 41.6897 40 w 10.8051 43.4212 30.8793 -Arial.ttf 56 0 26.8483 41.6897 41 T -0.1560 33.6936 42.0000 -Arial.ttf 56 0 26.8483 41.6897 42 M -0.5350 40.5788 42.0000 -Arial.ttf 56 0 26.8483 41.6897 43 G -1.0452 38.6897 43.3212 -Arial.ttf 56 0 26.8483 41.6897 44 b -0.3564 26.3123 42.3103 -Arial.ttf 56 0 26.8483 41.6897 45 9 -0.0859 26.8483 41.6897 -Arial.ttf 56 0 26.8483 41.6897 46 ; 10.8199 5.2626 39.6167 -Arial.ttf 56 0 26.8483 41.6897 47 D 0.0539 34.4542 42.0000 -Arial.ttf 56 0 26.8483 41.6897 48 L -0.4640 25.8813 42.0000 -Arial.ttf 56 0 26.8483 41.6897 49 y 10.8931 28.0000 42.4960 -Arial.ttf 56 0 26.8483 41.6897 50 ‘ -0.4095 5.9231 14.0000 -Arial.ttf 56 0 26.8483 41.6897 51 \ -0.5187 17.5749 42.0000 -Arial.ttf 56 0 26.8483 41.6897 52 R -0.0662 36.7497 42.0000 -Arial.ttf 56 0 26.8483 41.6897 53 < 7.4629 27.8354 27.8704 -Arial.ttf 56 0 26.8483 41.6897 54 4 -0.1145 28.3503 41.6897 -Arial.ttf 56 0 26.8483 41.6897 55 8 0.2302 26.6626 41.6897 -Arial.ttf 56 0 26.8483 41.6897 56 0 -0.1108 26.8483 41.6897 -Arial.ttf 56 0 26.8483 41.6897 57 A -0.4897 40.5788 42.0000 -Arial.ttf 56 0 26.8483 41.6897 58 E -0.3103 31.4542 42.0000 -Arial.ttf 56 0 26.8483 41.6897 59 B -0.4069 31.4542 42.0000 -Arial.ttf 56 0 26.8483 41.6897 60 v 10.7320 27.8704 30.8793 -Arial.ttf 56 0 26.8483 41.6897 61 k -0.3143 25.1207 42.0000 -Arial.ttf 56 0 26.8483 41.6897 62 J -0.1423 24.0291 42.6606 -Arial.ttf 56 0 26.8483 41.6897 63 U -0.5279 32.9083 42.6606 -Arial.ttf 56 0 26.8483 41.6897 64 j -0.3161 12.3773 53.6167 -Arial.ttf 56 0 26.8483 41.6897 65 ( -0.3677 14.4103 53.6167 -Arial.ttf 56 0 26.8483 41.6897 66 7 0.1507 26.8523 41.6897 -Arial.ttf 56 0 26.8483 41.6897 67 § -0.0912 26.9729 53.9271 -Arial.ttf 56 0 26.8483 41.6897 68 $ -2.1984 27.6897 49.3355 -Arial.ttf 56 0 26.8483 41.6897 69 € -1.1020 33.0769 43.3212 -Arial.ttf 56 0 26.8483 41.6897 70 / -0.2164 17.5749 42.0000 -Arial.ttf 56 0 26.8483 41.6897 71 C -1.1100 36.0000 43.3212 -Arial.ttf 56 0 26.8483 41.6897 72 * -0.3671 20.3453 17.8852 -Arial.ttf 56 0 26.8483 41.6897 73 ” -0.5766 14.2296 14.0000 -Arial.ttf 56 0 26.8483 41.6897 74 ? -0.0813 26.8483 42.0000 -Arial.ttf 56 0 26.8483 41.6897 75 { -0.1394 16.7375 53.6167 -Arial.ttf 56 0 26.8483 41.6897 76 } -0.4110 16.7375 53.6167 -Arial.ttf 56 0 26.8483 41.6897 77 , 36.2272 5.2626 14.0000 -Arial.ttf 56 0 26.8483 41.6897 78 I -0.4552 5.6936 42.0000 -Arial.ttf 56 0 26.8483 41.6897 79 ° -0.1300 15.8083 15.8083 -Arial.ttf 56 0 26.8483 41.6897 80 K -0.4429 34.5749 42.0000 -Arial.ttf 56 0 26.8483 41.6897 81 H -0.1225 32.9083 42.0000 -Arial.ttf 56 0 26.8483 41.6897 82 q 9.6205 26.3123 43.6877 -Arial.ttf 56 0 26.8483 41.6897 83 & -0.2232 35.1148 42.3103 -Arial.ttf 56 0 26.8483 41.6897 84 ’ -0.3555 5.9231 14.0000 -Arial.ttf 56 0 26.8483 41.6897 85 [ -0.2292 11.0000 53.6167 -Arial.ttf 56 0 26.8483 41.6897 86 - 24.0007 15.4980 5.2626 -Arial.ttf 56 0 26.8483 41.6897 87 Y -0.3422 38.4601 42.0000 -Arial.ttf 56 0 26.8483 41.6897 88 Q -1.0512 39.5749 46.3212 -Arial.ttf 56 0 26.8483 41.6897 89 " -0.3833 15.8083 15.1916 -Arial.ttf 56 0 26.8483 41.6897 90 ! -0.6743 5.2626 42.0000 -Arial.ttf 56 0 26.8483 41.6897 91 x 11.0395 29.1060 30.8793 -Arial.ttf 56 0 26.8483 41.6897 92 ) -0.4308 14.4103 53.6167 -Arial.ttf 56 0 26.8483 41.6897 93 = 11.8163 27.8793 17.8852 -Arial.ttf 56 0 26.8483 41.6897 94 + 7.2446 27.8753 27.8753 -Arial.ttf 56 0 26.8483 41.6897 95 X -0.2000 37.6626 42.0000 -Arial.ttf 56 0 26.8483 41.6897 96 » 13.4454 25.0439 26.1917 -Arial.ttf 56 0 26.8483 41.6897 97 ' -0.0240 5.2626 15.1916 -Arial.ttf 56 0 26.8483 41.6897 98 ¢ -0.6861 25.7813 54.2685 -Arial.ttf 56 0 26.8483 41.6897 99 Z -0.4386 33.0729 42.0000 -Arial.ttf 56 0 26.8483 41.6897 100 > 6.9858 27.8354 27.8704 -Arial.ttf 56 0 26.8483 41.6897 101 ® -1.1215 43.1916 42.9709 -Arial.ttf 56 0 26.8483 41.6897 102 © -0.9947 43.1916 42.9709 -Arial.ttf 56 0 26.8483 41.6897 103 ] -0.4525 11.0000 53.6167 -Arial.ttf 56 0 26.8483 41.6897 104 é -1.4363 27.4690 43.5020 -Arial.ttf 56 0 26.8483 41.6897 105 z 10.7484 26.3123 30.8793 -Arial.ttf 56 0 26.8483 41.6897 106 _ 48.1643 33.3832 5.2626 -Arial.ttf 56 0 26.8483 41.6897 107 ¥ -0.1683 32.0291 42.0000 -Arial.ttf 57 A 40.5788 42.0000 1 t -0.2200 15.0709 42.3103 -Arial.ttf 57 A 40.5788 42.0000 2 h -0.0039 24.2793 42.0000 -Arial.ttf 57 A 40.5788 42.0000 3 a 10.0220 27.4690 32.3813 -Arial.ttf 57 A 40.5788 42.0000 4 n 9.8092 24.2793 32.0709 -Arial.ttf 57 A 40.5788 42.0000 5 P 0.0996 31.4542 42.0000 -Arial.ttf 57 A 40.5788 42.0000 6 o 9.7636 27.4690 32.3813 -Arial.ttf 57 A 40.5788 42.0000 7 e 10.2473 27.4690 32.3813 -Arial.ttf 57 A 40.5788 42.0000 8 : 11.1028 5.2626 30.8793 -Arial.ttf 57 A 40.5788 42.0000 9 r 10.2561 16.5689 32.0709 -Arial.ttf 57 A 40.5788 42.0000 10 l -0.0854 5.2626 42.0000 -Arial.ttf 57 A 40.5788 42.0000 11 i -0.0866 5.2626 42.0000 -Arial.ttf 57 A 40.5788 42.0000 12 1 0.1927 15.2355 41.6897 -Arial.ttf 57 A 40.5788 42.0000 13 | -0.0631 4.1916 54.4980 -Arial.ttf 57 A 40.5788 42.0000 14 N 0.0398 32.9083 42.0000 -Arial.ttf 57 A 40.5788 42.0000 15 f -0.1479 18.0709 42.0000 -Arial.ttf 57 A 40.5788 42.0000 16 g 9.9348 26.3123 43.6877 -Arial.ttf 57 A 40.5788 42.0000 17 d -0.0222 26.3123 42.3103 -Arial.ttf 57 A 40.5788 42.0000 18 W 0.2659 57.1916 42.0000 -Arial.ttf 57 A 40.5788 42.0000 19 s 9.9322 24.9561 32.3813 -Arial.ttf 57 A 40.5788 42.0000 20 c 9.9317 26.8084 32.3813 -Arial.ttf 57 A 40.5788 42.0000 21 u 11.1976 24.2793 31.1896 -Arial.ttf 57 A 40.5788 42.0000 22 3 -0.1599 26.8483 41.6897 -Arial.ttf 57 A 40.5788 42.0000 23 ~ 16.9026 29.9083 10.9561 -Arial.ttf 57 A 40.5788 42.0000 24 # 0.3092 31.2646 42.0000 -Arial.ttf 57 A 40.5788 42.0000 25 O -0.6498 39.5749 43.3212 -Arial.ttf 57 A 40.5788 42.0000 26 ` 0.0206 10.9561 8.0769 -Arial.ttf 57 A 40.5788 42.0000 27 @ -0.0176 54.1478 54.3123 -Arial.ttf 57 A 40.5788 42.0000 28 F 0.0775 28.2207 42.0000 -Arial.ttf 57 A 40.5788 42.0000 29 S -0.6204 33.0001 43.3212 -Arial.ttf 57 A 40.5788 42.0000 30 p 9.7264 26.3123 43.6877 -Arial.ttf 57 A 40.5788 42.0000 31 “ 0.0138 13.5690 14.0000 -Arial.ttf 57 A 40.5788 42.0000 32 % -0.0616 44.8793 42.3103 -Arial.ttf 57 A 40.5788 42.0000 33 £ -0.1226 29.8522 42.3103 -Arial.ttf 57 A 40.5788 42.0000 34 . 36.6505 5.2626 5.2626 -Arial.ttf 57 A 40.5788 42.0000 35 2 0.0246 28.6956 41.6897 -Arial.ttf 57 A 40.5788 42.0000 36 5 0.1322 26.8483 41.6897 -Arial.ttf 57 A 40.5788 42.0000 37 m 9.8739 41.4044 32.0709 -Arial.ttf 57 A 40.5788 42.0000 38 V -0.0764 40.5788 42.0000 -Arial.ttf 57 A 40.5788 42.0000 39 6 0.1105 27.8542 41.6897 -Arial.ttf 57 A 40.5788 42.0000 40 w 11.2017 43.4212 30.8793 -Arial.ttf 57 A 40.5788 42.0000 41 T -0.3114 33.6936 42.0000 -Arial.ttf 57 A 40.5788 42.0000 42 M 0.2222 40.5788 42.0000 -Arial.ttf 57 A 40.5788 42.0000 43 G -0.5066 38.6897 43.3212 -Arial.ttf 57 A 40.5788 42.0000 44 b 0.1883 26.3123 42.3103 -Arial.ttf 57 A 40.5788 42.0000 45 9 0.4323 26.8483 41.6897 -Arial.ttf 57 A 40.5788 42.0000 46 ; 10.9054 5.2626 39.6167 -Arial.ttf 57 A 40.5788 42.0000 47 D -0.1882 34.4542 42.0000 -Arial.ttf 57 A 40.5788 42.0000 48 L -0.0774 25.8813 42.0000 -Arial.ttf 57 A 40.5788 42.0000 49 y 11.2764 28.0000 42.4960 -Arial.ttf 57 A 40.5788 42.0000 50 ‘ -0.1810 5.9231 14.0000 -Arial.ttf 57 A 40.5788 42.0000 51 \ 0.0333 17.5749 42.0000 -Arial.ttf 57 A 40.5788 42.0000 52 R -0.3172 36.7497 42.0000 -Arial.ttf 57 A 40.5788 42.0000 53 < 7.4688 27.8354 27.8704 -Arial.ttf 57 A 40.5788 42.0000 54 4 0.6290 28.3503 41.6897 -Arial.ttf 57 A 40.5788 42.0000 55 8 0.2101 26.6626 41.6897 -Arial.ttf 57 A 40.5788 42.0000 56 0 0.0621 26.8483 41.6897 -Arial.ttf 57 A 40.5788 42.0000 57 A 0.2057 40.5788 42.0000 -Arial.ttf 57 A 40.5788 42.0000 58 E 0.0675 31.4542 42.0000 -Arial.ttf 57 A 40.5788 42.0000 59 B 0.1655 31.4542 42.0000 -Arial.ttf 57 A 40.5788 42.0000 60 v 10.9012 27.8704 30.8793 -Arial.ttf 57 A 40.5788 42.0000 61 k -0.2540 25.1207 42.0000 -Arial.ttf 57 A 40.5788 42.0000 62 J -0.1283 24.0291 42.6606 -Arial.ttf 57 A 40.5788 42.0000 63 U -0.1231 32.9083 42.6606 -Arial.ttf 57 A 40.5788 42.0000 64 j -0.1039 12.3773 53.6167 -Arial.ttf 57 A 40.5788 42.0000 65 ( 0.4979 14.4103 53.6167 -Arial.ttf 57 A 40.5788 42.0000 66 7 0.6275 26.8523 41.6897 -Arial.ttf 57 A 40.5788 42.0000 67 § 0.0622 26.9729 53.9271 -Arial.ttf 57 A 40.5788 42.0000 68 $ -2.2539 27.6897 49.3355 -Arial.ttf 57 A 40.5788 42.0000 69 € -0.6766 33.0769 43.3212 -Arial.ttf 57 A 40.5788 42.0000 70 / 0.0818 17.5749 42.0000 -Arial.ttf 57 A 40.5788 42.0000 71 C -0.6395 36.0000 43.3212 -Arial.ttf 57 A 40.5788 42.0000 72 * 0.0046 20.3453 17.8852 -Arial.ttf 57 A 40.5788 42.0000 73 ” -0.3547 14.2296 14.0000 -Arial.ttf 57 A 40.5788 42.0000 74 ? -0.0523 26.8483 42.0000 -Arial.ttf 57 A 40.5788 42.0000 75 { 0.2180 16.7375 53.6167 -Arial.ttf 57 A 40.5788 42.0000 76 } 0.0176 16.7375 53.6167 -Arial.ttf 57 A 40.5788 42.0000 77 , 36.7338 5.2626 14.0000 -Arial.ttf 57 A 40.5788 42.0000 78 I 0.0598 5.6936 42.0000 -Arial.ttf 57 A 40.5788 42.0000 79 ° -0.0129 15.8083 15.8083 -Arial.ttf 57 A 40.5788 42.0000 80 K -0.1348 34.5749 42.0000 -Arial.ttf 57 A 40.5788 42.0000 81 H 0.0287 32.9083 42.0000 -Arial.ttf 57 A 40.5788 42.0000 82 q 10.1557 26.3123 43.6877 -Arial.ttf 57 A 40.5788 42.0000 83 & -0.1092 35.1148 42.3103 -Arial.ttf 57 A 40.5788 42.0000 84 ’ 0.3266 5.9231 14.0000 -Arial.ttf 57 A 40.5788 42.0000 85 [ 0.1946 11.0000 53.6167 -Arial.ttf 57 A 40.5788 42.0000 86 - 24.4195 15.4980 5.2626 -Arial.ttf 57 A 40.5788 42.0000 87 Y -0.0031 38.4601 42.0000 -Arial.ttf 57 A 40.5788 42.0000 88 Q -1.1142 39.5749 46.3212 -Arial.ttf 57 A 40.5788 42.0000 89 " -0.2539 15.8083 15.1916 -Arial.ttf 57 A 40.5788 42.0000 90 ! -0.2279 5.2626 42.0000 -Arial.ttf 57 A 40.5788 42.0000 91 x 11.4393 29.1060 30.8793 -Arial.ttf 57 A 40.5788 42.0000 92 ) -0.5198 14.4103 53.6167 -Arial.ttf 57 A 40.5788 42.0000 93 = 11.6191 27.8793 17.8852 -Arial.ttf 57 A 40.5788 42.0000 94 + 7.7542 27.8753 27.8753 -Arial.ttf 57 A 40.5788 42.0000 95 X 0.1751 37.6626 42.0000 -Arial.ttf 57 A 40.5788 42.0000 96 » 13.9061 25.0439 26.1917 -Arial.ttf 57 A 40.5788 42.0000 97 ' 0.0319 5.2626 15.1916 -Arial.ttf 57 A 40.5788 42.0000 98 ¢ -0.3388 25.7813 54.2685 -Arial.ttf 57 A 40.5788 42.0000 99 Z 0.0229 33.0729 42.0000 -Arial.ttf 57 A 40.5788 42.0000 100 > 7.5655 27.8354 27.8704 -Arial.ttf 57 A 40.5788 42.0000 101 ® -0.8400 43.1916 42.9709 -Arial.ttf 57 A 40.5788 42.0000 102 © -0.8962 43.1916 42.9709 -Arial.ttf 57 A 40.5788 42.0000 103 ] 0.1102 11.0000 53.6167 -Arial.ttf 57 A 40.5788 42.0000 104 é -1.3730 27.4690 43.5020 -Arial.ttf 57 A 40.5788 42.0000 105 z 11.0517 26.3123 30.8793 -Arial.ttf 57 A 40.5788 42.0000 106 _ 48.5944 33.3832 5.2626 -Arial.ttf 57 A 40.5788 42.0000 107 ¥ 0.1887 32.0291 42.0000 -Arial.ttf 58 E 31.4542 42.0000 1 t -0.1061 15.0709 42.3103 -Arial.ttf 58 E 31.4542 42.0000 2 h -0.0029 24.2793 42.0000 -Arial.ttf 58 E 31.4542 42.0000 3 a 9.7026 27.4690 32.3813 -Arial.ttf 58 E 31.4542 42.0000 4 n 9.7373 24.2793 32.0709 -Arial.ttf 58 E 31.4542 42.0000 5 P -0.3559 31.4542 42.0000 -Arial.ttf 58 E 31.4542 42.0000 6 o 10.2309 27.4690 32.3813 -Arial.ttf 58 E 31.4542 42.0000 7 e 9.6501 27.4690 32.3813 -Arial.ttf 58 E 31.4542 42.0000 8 : 11.1140 5.2626 30.8793 -Arial.ttf 58 E 31.4542 42.0000 9 r 9.8440 16.5689 32.0709 -Arial.ttf 58 E 31.4542 42.0000 10 l 0.2027 5.2626 42.0000 -Arial.ttf 58 E 31.4542 42.0000 11 i 0.2473 5.2626 42.0000 -Arial.ttf 58 E 31.4542 42.0000 12 1 0.3815 15.2355 41.6897 -Arial.ttf 58 E 31.4542 42.0000 13 | -0.1695 4.1916 54.4980 -Arial.ttf 58 E 31.4542 42.0000 14 N -0.2348 32.9083 42.0000 -Arial.ttf 58 E 31.4542 42.0000 15 f 0.0487 18.0709 42.0000 -Arial.ttf 58 E 31.4542 42.0000 16 g 9.8818 26.3123 43.6877 -Arial.ttf 58 E 31.4542 42.0000 17 d 0.0827 26.3123 42.3103 -Arial.ttf 58 E 31.4542 42.0000 18 W -0.2571 57.1916 42.0000 -Arial.ttf 58 E 31.4542 42.0000 19 s 10.0473 24.9561 32.3813 -Arial.ttf 58 E 31.4542 42.0000 20 c 10.0045 26.8084 32.3813 -Arial.ttf 58 E 31.4542 42.0000 21 u 10.8827 24.2793 31.1896 -Arial.ttf 58 E 31.4542 42.0000 22 3 0.1920 26.8483 41.6897 -Arial.ttf 58 E 31.4542 42.0000 23 ~ 16.7689 29.9083 10.9561 -Arial.ttf 58 E 31.4542 42.0000 24 # -0.0260 31.2646 42.0000 -Arial.ttf 58 E 31.4542 42.0000 25 O -0.6663 39.5749 43.3212 -Arial.ttf 58 E 31.4542 42.0000 26 ` -0.0164 10.9561 8.0769 -Arial.ttf 58 E 31.4542 42.0000 27 @ 0.0126 54.1478 54.3123 -Arial.ttf 58 E 31.4542 42.0000 28 F 0.4805 28.2207 42.0000 -Arial.ttf 58 E 31.4542 42.0000 29 S -0.6845 33.0001 43.3212 -Arial.ttf 58 E 31.4542 42.0000 30 p 10.0616 26.3123 43.6877 -Arial.ttf 58 E 31.4542 42.0000 31 “ 0.4746 13.5690 14.0000 -Arial.ttf 58 E 31.4542 42.0000 32 % -0.0185 44.8793 42.3103 -Arial.ttf 58 E 31.4542 42.0000 33 £ -0.1830 29.8522 42.3103 -Arial.ttf 58 E 31.4542 42.0000 34 . 36.8716 5.2626 5.2626 -Arial.ttf 58 E 31.4542 42.0000 35 2 0.1645 28.6956 41.6897 -Arial.ttf 58 E 31.4542 42.0000 36 5 0.4540 26.8483 41.6897 -Arial.ttf 58 E 31.4542 42.0000 37 m 9.8831 41.4044 32.0709 -Arial.ttf 58 E 31.4542 42.0000 38 V -0.0207 40.5788 42.0000 -Arial.ttf 58 E 31.4542 42.0000 39 6 0.7034 27.8542 41.6897 -Arial.ttf 58 E 31.4542 42.0000 40 w 11.1866 43.4212 30.8793 -Arial.ttf 58 E 31.4542 42.0000 41 T -0.3190 33.6936 42.0000 -Arial.ttf 58 E 31.4542 42.0000 42 M -0.0578 40.5788 42.0000 -Arial.ttf 58 E 31.4542 42.0000 43 G -0.6181 38.6897 43.3212 -Arial.ttf 58 E 31.4542 42.0000 44 b 0.2624 26.3123 42.3103 -Arial.ttf 58 E 31.4542 42.0000 45 9 0.3659 26.8483 41.6897 -Arial.ttf 58 E 31.4542 42.0000 46 ; 11.3143 5.2626 39.6167 -Arial.ttf 58 E 31.4542 42.0000 47 D 0.1611 34.4542 42.0000 -Arial.ttf 58 E 31.4542 42.0000 48 L -0.3573 25.8813 42.0000 -Arial.ttf 58 E 31.4542 42.0000 49 y 11.0733 28.0000 42.4960 -Arial.ttf 58 E 31.4542 42.0000 50 ‘ 0.2578 5.9231 14.0000 -Arial.ttf 58 E 31.4542 42.0000 51 \ -0.0182 17.5749 42.0000 -Arial.ttf 58 E 31.4542 42.0000 52 R 0.0745 36.7497 42.0000 -Arial.ttf 58 E 31.4542 42.0000 53 < 7.6975 27.8354 27.8704 -Arial.ttf 58 E 31.4542 42.0000 54 4 0.1793 28.3503 41.6897 -Arial.ttf 58 E 31.4542 42.0000 55 8 0.4100 26.6626 41.6897 -Arial.ttf 58 E 31.4542 42.0000 56 0 0.1492 26.8483 41.6897 -Arial.ttf 58 E 31.4542 42.0000 57 A 0.1466 40.5788 42.0000 -Arial.ttf 58 E 31.4542 42.0000 58 E -0.2687 31.4542 42.0000 -Arial.ttf 58 E 31.4542 42.0000 59 B 0.0455 31.4542 42.0000 -Arial.ttf 58 E 31.4542 42.0000 60 v 11.2199 27.8704 30.8793 -Arial.ttf 58 E 31.4542 42.0000 61 k 0.1528 25.1207 42.0000 -Arial.ttf 58 E 31.4542 42.0000 62 J 0.0272 24.0291 42.6606 -Arial.ttf 58 E 31.4542 42.0000 63 U 0.1945 32.9083 42.6606 -Arial.ttf 58 E 31.4542 42.0000 64 j 0.0000 12.3773 53.6167 -Arial.ttf 58 E 31.4542 42.0000 65 ( 0.1218 14.4103 53.6167 -Arial.ttf 58 E 31.4542 42.0000 66 7 0.3205 26.8523 41.6897 -Arial.ttf 58 E 31.4542 42.0000 67 § -0.0550 26.9729 53.9271 -Arial.ttf 58 E 31.4542 42.0000 68 $ -1.8411 27.6897 49.3355 -Arial.ttf 58 E 31.4542 42.0000 69 € -0.8552 33.0769 43.3212 -Arial.ttf 58 E 31.4542 42.0000 70 / 0.1368 17.5749 42.0000 -Arial.ttf 58 E 31.4542 42.0000 71 C -0.7558 36.0000 43.3212 -Arial.ttf 58 E 31.4542 42.0000 72 * 0.1352 20.3453 17.8852 -Arial.ttf 58 E 31.4542 42.0000 73 ” 0.1353 14.2296 14.0000 -Arial.ttf 58 E 31.4542 42.0000 74 ? -0.1310 26.8483 42.0000 -Arial.ttf 58 E 31.4542 42.0000 75 { -0.0400 16.7375 53.6167 -Arial.ttf 58 E 31.4542 42.0000 76 } -0.3623 16.7375 53.6167 -Arial.ttf 58 E 31.4542 42.0000 77 , 36.7401 5.2626 14.0000 -Arial.ttf 58 E 31.4542 42.0000 78 I 0.0662 5.6936 42.0000 -Arial.ttf 58 E 31.4542 42.0000 79 ° -0.0044 15.8083 15.8083 -Arial.ttf 58 E 31.4542 42.0000 80 K 0.0308 34.5749 42.0000 -Arial.ttf 58 E 31.4542 42.0000 81 H 0.3294 32.9083 42.0000 -Arial.ttf 58 E 31.4542 42.0000 82 q 10.1567 26.3123 43.6877 -Arial.ttf 58 E 31.4542 42.0000 83 & 0.2217 35.1148 42.3103 -Arial.ttf 58 E 31.4542 42.0000 84 ’ -0.1310 5.9231 14.0000 -Arial.ttf 58 E 31.4542 42.0000 85 [ 0.0328 11.0000 53.6167 -Arial.ttf 58 E 31.4542 42.0000 86 - 23.9319 15.4980 5.2626 -Arial.ttf 58 E 31.4542 42.0000 87 Y -0.1141 38.4601 42.0000 -Arial.ttf 58 E 31.4542 42.0000 88 Q -0.3583 39.5749 46.3212 -Arial.ttf 58 E 31.4542 42.0000 89 " 0.0164 15.8083 15.1916 -Arial.ttf 58 E 31.4542 42.0000 90 ! 0.0291 5.2626 42.0000 -Arial.ttf 58 E 31.4542 42.0000 91 x 10.8921 29.1060 30.8793 -Arial.ttf 58 E 31.4542 42.0000 92 ) -0.0069 14.4103 53.6167 -Arial.ttf 58 E 31.4542 42.0000 93 = 12.1131 27.8793 17.8852 -Arial.ttf 58 E 31.4542 42.0000 94 + 7.6917 27.8753 27.8753 -Arial.ttf 58 E 31.4542 42.0000 95 X -0.2263 37.6626 42.0000 -Arial.ttf 58 E 31.4542 42.0000 96 » 13.9769 25.0439 26.1917 -Arial.ttf 58 E 31.4542 42.0000 97 ' -0.5049 5.2626 15.1916 -Arial.ttf 58 E 31.4542 42.0000 98 ¢ -0.3260 25.7813 54.2685 -Arial.ttf 58 E 31.4542 42.0000 99 Z -0.1808 33.0729 42.0000 -Arial.ttf 58 E 31.4542 42.0000 100 > 7.2797 27.8354 27.8704 -Arial.ttf 58 E 31.4542 42.0000 101 ® -0.2098 43.1916 42.9709 -Arial.ttf 58 E 31.4542 42.0000 102 © -0.4908 43.1916 42.9709 -Arial.ttf 58 E 31.4542 42.0000 103 ] 0.0689 11.0000 53.6167 -Arial.ttf 58 E 31.4542 42.0000 104 é -1.1768 27.4690 43.5020 -Arial.ttf 58 E 31.4542 42.0000 105 z 11.3606 26.3123 30.8793 -Arial.ttf 58 E 31.4542 42.0000 106 _ 48.2780 33.3832 5.2626 -Arial.ttf 58 E 31.4542 42.0000 107 ¥ 0.1611 32.0291 42.0000 -Arial.ttf 59 B 31.4542 42.0000 1 t -0.2483 15.0709 42.3103 -Arial.ttf 59 B 31.4542 42.0000 2 h -0.1733 24.2793 42.0000 -Arial.ttf 59 B 31.4542 42.0000 3 a 9.9327 27.4690 32.3813 -Arial.ttf 59 B 31.4542 42.0000 4 n 9.7896 24.2793 32.0709 -Arial.ttf 59 B 31.4542 42.0000 5 P 0.2251 31.4542 42.0000 -Arial.ttf 59 B 31.4542 42.0000 6 o 9.9210 27.4690 32.3813 -Arial.ttf 59 B 31.4542 42.0000 7 e 10.2436 27.4690 32.3813 -Arial.ttf 59 B 31.4542 42.0000 8 : 11.1932 5.2626 30.8793 -Arial.ttf 59 B 31.4542 42.0000 9 r 9.7153 16.5689 32.0709 -Arial.ttf 59 B 31.4542 42.0000 10 l -0.3810 5.2626 42.0000 -Arial.ttf 59 B 31.4542 42.0000 11 i 0.0210 5.2626 42.0000 -Arial.ttf 59 B 31.4542 42.0000 12 1 0.2249 15.2355 41.6897 -Arial.ttf 59 B 31.4542 42.0000 13 | -0.3563 4.1916 54.4980 -Arial.ttf 59 B 31.4542 42.0000 14 N 0.0753 32.9083 42.0000 -Arial.ttf 59 B 31.4542 42.0000 15 f -0.3767 18.0709 42.0000 -Arial.ttf 59 B 31.4542 42.0000 16 g 10.1401 26.3123 43.6877 -Arial.ttf 59 B 31.4542 42.0000 17 d -0.1751 26.3123 42.3103 -Arial.ttf 59 B 31.4542 42.0000 18 W 0.2489 57.1916 42.0000 -Arial.ttf 59 B 31.4542 42.0000 19 s 9.9605 24.9561 32.3813 -Arial.ttf 59 B 31.4542 42.0000 20 c 10.0176 26.8084 32.3813 -Arial.ttf 59 B 31.4542 42.0000 21 u 11.1552 24.2793 31.1896 -Arial.ttf 59 B 31.4542 42.0000 22 3 0.2675 26.8483 41.6897 -Arial.ttf 59 B 31.4542 42.0000 23 ~ 16.7090 29.9083 10.9561 -Arial.ttf 59 B 31.4542 42.0000 24 # -0.1199 31.2646 42.0000 -Arial.ttf 59 B 31.4542 42.0000 25 O -0.4634 39.5749 43.3212 -Arial.ttf 59 B 31.4542 42.0000 26 ` 0.1968 10.9561 8.0769 -Arial.ttf 59 B 31.4542 42.0000 27 @ 0.1915 54.1478 54.3123 -Arial.ttf 59 B 31.4542 42.0000 28 F -0.0736 28.2207 42.0000 -Arial.ttf 59 B 31.4542 42.0000 29 S -0.4842 33.0001 43.3212 -Arial.ttf 59 B 31.4542 42.0000 30 p 9.9831 26.3123 43.6877 -Arial.ttf 59 B 31.4542 42.0000 31 “ -0.0743 13.5690 14.0000 -Arial.ttf 59 B 31.4542 42.0000 32 % 0.4538 44.8793 42.3103 -Arial.ttf 59 B 31.4542 42.0000 33 £ -0.1591 29.8522 42.3103 -Arial.ttf 59 B 31.4542 42.0000 34 . 36.6051 5.2626 5.2626 -Arial.ttf 59 B 31.4542 42.0000 35 2 0.2249 28.6956 41.6897 -Arial.ttf 59 B 31.4542 42.0000 36 5 0.3708 26.8483 41.6897 -Arial.ttf 59 B 31.4542 42.0000 37 m 9.5935 41.4044 32.0709 -Arial.ttf 59 B 31.4542 42.0000 38 V 0.0760 40.5788 42.0000 -Arial.ttf 59 B 31.4542 42.0000 39 6 0.2701 27.8542 41.6897 -Arial.ttf 59 B 31.4542 42.0000 40 w 10.7706 43.4212 30.8793 -Arial.ttf 59 B 31.4542 42.0000 41 T 0.0169 33.6936 42.0000 -Arial.ttf 59 B 31.4542 42.0000 42 M -0.0226 40.5788 42.0000 -Arial.ttf 59 B 31.4542 42.0000 43 G -0.8358 38.6897 43.3212 -Arial.ttf 59 B 31.4542 42.0000 44 b -0.1178 26.3123 42.3103 -Arial.ttf 59 B 31.4542 42.0000 45 9 0.2648 26.8483 41.6897 -Arial.ttf 59 B 31.4542 42.0000 46 ; 11.2088 5.2626 39.6167 -Arial.ttf 59 B 31.4542 42.0000 47 D 0.1172 34.4542 42.0000 -Arial.ttf 59 B 31.4542 42.0000 48 L -0.0456 25.8813 42.0000 -Arial.ttf 59 B 31.4542 42.0000 49 y 11.0449 28.0000 42.4960 -Arial.ttf 59 B 31.4542 42.0000 50 ‘ 0.0218 5.9231 14.0000 -Arial.ttf 59 B 31.4542 42.0000 51 \ -0.1838 17.5749 42.0000 -Arial.ttf 59 B 31.4542 42.0000 52 R 0.0590 36.7497 42.0000 -Arial.ttf 59 B 31.4542 42.0000 53 < 7.1958 27.8354 27.8704 -Arial.ttf 59 B 31.4542 42.0000 54 4 -0.0042 28.3503 41.6897 -Arial.ttf 59 B 31.4542 42.0000 55 8 0.5368 26.6626 41.6897 -Arial.ttf 59 B 31.4542 42.0000 56 0 0.2377 26.8483 41.6897 -Arial.ttf 59 B 31.4542 42.0000 57 A -0.2136 40.5788 42.0000 -Arial.ttf 59 B 31.4542 42.0000 58 E 0.1851 31.4542 42.0000 -Arial.ttf 59 B 31.4542 42.0000 59 B 0.0371 31.4542 42.0000 -Arial.ttf 59 B 31.4542 42.0000 60 v 10.9123 27.8704 30.8793 -Arial.ttf 59 B 31.4542 42.0000 61 k -0.0223 25.1207 42.0000 -Arial.ttf 59 B 31.4542 42.0000 62 J 0.3098 24.0291 42.6606 -Arial.ttf 59 B 31.4542 42.0000 63 U -0.1973 32.9083 42.6606 -Arial.ttf 59 B 31.4542 42.0000 64 j -0.1575 12.3773 53.6167 -Arial.ttf 59 B 31.4542 42.0000 65 ( 0.0195 14.4103 53.6167 -Arial.ttf 59 B 31.4542 42.0000 66 7 0.3930 26.8523 41.6897 -Arial.ttf 59 B 31.4542 42.0000 67 § -0.0912 26.9729 53.9271 -Arial.ttf 59 B 31.4542 42.0000 68 $ -2.0565 27.6897 49.3355 -Arial.ttf 59 B 31.4542 42.0000 69 € -0.6533 33.0769 43.3212 -Arial.ttf 59 B 31.4542 42.0000 70 / 0.1973 17.5749 42.0000 -Arial.ttf 59 B 31.4542 42.0000 71 C -0.7916 36.0000 43.3212 -Arial.ttf 59 B 31.4542 42.0000 72 * 0.3574 20.3453 17.8852 -Arial.ttf 59 B 31.4542 42.0000 73 ” -0.0387 14.2296 14.0000 -Arial.ttf 59 B 31.4542 42.0000 74 ? -0.0578 26.8483 42.0000 -Arial.ttf 59 B 31.4542 42.0000 75 { 0.2774 16.7375 53.6167 -Arial.ttf 59 B 31.4542 42.0000 76 } -0.0812 16.7375 53.6167 -Arial.ttf 59 B 31.4542 42.0000 77 , 36.7294 5.2626 14.0000 -Arial.ttf 59 B 31.4542 42.0000 78 I 0.0116 5.6936 42.0000 -Arial.ttf 59 B 31.4542 42.0000 79 ° -0.2307 15.8083 15.8083 -Arial.ttf 59 B 31.4542 42.0000 80 K -0.2689 34.5749 42.0000 -Arial.ttf 59 B 31.4542 42.0000 81 H -0.0743 32.9083 42.0000 -Arial.ttf 59 B 31.4542 42.0000 82 q 9.8362 26.3123 43.6877 -Arial.ttf 59 B 31.4542 42.0000 83 & -0.3557 35.1148 42.3103 -Arial.ttf 59 B 31.4542 42.0000 84 ’ -0.2053 5.9231 14.0000 -Arial.ttf 59 B 31.4542 42.0000 85 [ -0.0801 11.0000 53.6167 -Arial.ttf 59 B 31.4542 42.0000 86 - 24.4785 15.4980 5.2626 -Arial.ttf 59 B 31.4542 42.0000 87 Y 0.0096 38.4601 42.0000 -Arial.ttf 59 B 31.4542 42.0000 88 Q -0.8079 39.5749 46.3212 -Arial.ttf 59 B 31.4542 42.0000 89 " -0.1213 15.8083 15.1916 -Arial.ttf 59 B 31.4542 42.0000 90 ! -0.2138 5.2626 42.0000 -Arial.ttf 59 B 31.4542 42.0000 91 x 11.3122 29.1060 30.8793 -Arial.ttf 59 B 31.4542 42.0000 92 ) -0.0594 14.4103 53.6167 -Arial.ttf 59 B 31.4542 42.0000 93 = 11.6511 27.8793 17.8852 -Arial.ttf 59 B 31.4542 42.0000 94 + 7.5956 27.8753 27.8753 -Arial.ttf 59 B 31.4542 42.0000 95 X -0.1820 37.6626 42.0000 -Arial.ttf 59 B 31.4542 42.0000 96 » 14.1698 25.0439 26.1917 -Arial.ttf 59 B 31.4542 42.0000 97 ' 0.1321 5.2626 15.1916 -Arial.ttf 59 B 31.4542 42.0000 98 ¢ -0.0947 25.7813 54.2685 -Arial.ttf 59 B 31.4542 42.0000 99 Z -0.1294 33.0729 42.0000 -Arial.ttf 59 B 31.4542 42.0000 100 > 7.6036 27.8354 27.8704 -Arial.ttf 59 B 31.4542 42.0000 101 ® -0.8908 43.1916 42.9709 -Arial.ttf 59 B 31.4542 42.0000 102 © -0.7269 43.1916 42.9709 -Arial.ttf 59 B 31.4542 42.0000 103 ] 0.0738 11.0000 53.6167 -Arial.ttf 59 B 31.4542 42.0000 104 é -1.2347 27.4690 43.5020 -Arial.ttf 59 B 31.4542 42.0000 105 z 11.1977 26.3123 30.8793 -Arial.ttf 59 B 31.4542 42.0000 106 _ 48.3558 33.3832 5.2626 -Arial.ttf 59 B 31.4542 42.0000 107 ¥ -0.0609 32.0291 42.0000 -Arial.ttf 60 v 27.8704 30.8793 1 t -11.4624 15.0709 42.3103 -Arial.ttf 60 v 27.8704 30.8793 2 h -10.9568 24.2793 42.0000 -Arial.ttf 60 v 27.8704 30.8793 3 a -1.3079 27.4690 32.3813 -Arial.ttf 60 v 27.8704 30.8793 4 n -1.1361 24.2793 32.0709 -Arial.ttf 60 v 27.8704 30.8793 5 P -11.4517 31.4542 42.0000 -Arial.ttf 60 v 27.8704 30.8793 6 o -1.4054 27.4690 32.3813 -Arial.ttf 60 v 27.8704 30.8793 7 e -1.1189 27.4690 32.3813 -Arial.ttf 60 v 27.8704 30.8793 8 : 0.1023 5.2626 30.8793 -Arial.ttf 60 v 27.8704 30.8793 9 r -1.1024 16.5689 32.0709 -Arial.ttf 60 v 27.8704 30.8793 10 l -11.2437 5.2626 42.0000 -Arial.ttf 60 v 27.8704 30.8793 11 i -11.0958 5.2626 42.0000 -Arial.ttf 60 v 27.8704 30.8793 12 1 -11.0021 15.2355 41.6897 -Arial.ttf 60 v 27.8704 30.8793 13 | -11.1897 4.1916 54.4980 -Arial.ttf 60 v 27.8704 30.8793 14 N -11.0008 32.9083 42.0000 -Arial.ttf 60 v 27.8704 30.8793 15 f -11.0353 18.0709 42.0000 -Arial.ttf 60 v 27.8704 30.8793 16 g -1.3194 26.3123 43.6877 -Arial.ttf 60 v 27.8704 30.8793 17 d -11.2559 26.3123 42.3103 -Arial.ttf 60 v 27.8704 30.8793 18 W -10.9123 57.1916 42.0000 -Arial.ttf 60 v 27.8704 30.8793 19 s -1.0579 24.9561 32.3813 -Arial.ttf 60 v 27.8704 30.8793 20 c -1.6789 26.8084 32.3813 -Arial.ttf 60 v 27.8704 30.8793 21 u 0.0361 24.2793 31.1896 -Arial.ttf 60 v 27.8704 30.8793 22 3 -10.9184 26.8483 41.6897 -Arial.ttf 60 v 27.8704 30.8793 23 ~ 5.6928 29.9083 10.9561 -Arial.ttf 60 v 27.8704 30.8793 24 # -11.0035 31.2646 42.0000 -Arial.ttf 60 v 27.8704 30.8793 25 O -11.8296 39.5749 43.3212 -Arial.ttf 60 v 27.8704 30.8793 26 ` -11.1758 10.9561 8.0769 -Arial.ttf 60 v 27.8704 30.8793 27 @ -11.3359 54.1478 54.3123 -Arial.ttf 60 v 27.8704 30.8793 28 F -11.1082 28.2207 42.0000 -Arial.ttf 60 v 27.8704 30.8793 29 S -11.8901 33.0001 43.3212 -Arial.ttf 60 v 27.8704 30.8793 30 p -0.8761 26.3123 43.6877 -Arial.ttf 60 v 27.8704 30.8793 31 “ -11.1291 13.5690 14.0000 -Arial.ttf 60 v 27.8704 30.8793 32 % -11.1721 44.8793 42.3103 -Arial.ttf 60 v 27.8704 30.8793 33 £ -11.2714 29.8522 42.3103 -Arial.ttf 60 v 27.8704 30.8793 34 . 25.7296 5.2626 5.2626 -Arial.ttf 60 v 27.8704 30.8793 35 2 -10.7033 28.6956 41.6897 -Arial.ttf 60 v 27.8704 30.8793 36 5 -10.7112 26.8483 41.6897 -Arial.ttf 60 v 27.8704 30.8793 37 m -1.1143 41.4044 32.0709 -Arial.ttf 60 v 27.8704 30.8793 38 V -11.3403 40.5788 42.0000 -Arial.ttf 60 v 27.8704 30.8793 39 6 -10.8215 27.8542 41.6897 -Arial.ttf 60 v 27.8704 30.8793 40 w 0.0961 43.4212 30.8793 -Arial.ttf 60 v 27.8704 30.8793 41 T -10.9853 33.6936 42.0000 -Arial.ttf 60 v 27.8704 30.8793 42 M -10.7717 40.5788 42.0000 -Arial.ttf 60 v 27.8704 30.8793 43 G -11.9468 38.6897 43.3212 -Arial.ttf 60 v 27.8704 30.8793 44 b -11.0512 26.3123 42.3103 -Arial.ttf 60 v 27.8704 30.8793 45 9 -10.7594 26.8483 41.6897 -Arial.ttf 60 v 27.8704 30.8793 46 ; -0.0138 5.2626 39.6167 -Arial.ttf 60 v 27.8704 30.8793 47 D -11.0380 34.4542 42.0000 -Arial.ttf 60 v 27.8704 30.8793 48 L -11.2565 25.8813 42.0000 -Arial.ttf 60 v 27.8704 30.8793 49 y 0.1448 28.0000 42.4960 -Arial.ttf 60 v 27.8704 30.8793 50 ‘ -11.2680 5.9231 14.0000 -Arial.ttf 60 v 27.8704 30.8793 51 \ -11.5260 17.5749 42.0000 -Arial.ttf 60 v 27.8704 30.8793 52 R -11.2157 36.7497 42.0000 -Arial.ttf 60 v 27.8704 30.8793 53 < -3.5610 27.8354 27.8704 -Arial.ttf 60 v 27.8704 30.8793 54 4 -10.5679 28.3503 41.6897 -Arial.ttf 60 v 27.8704 30.8793 55 8 -10.6408 26.6626 41.6897 -Arial.ttf 60 v 27.8704 30.8793 56 0 -11.0173 26.8483 41.6897 -Arial.ttf 60 v 27.8704 30.8793 57 A -10.8822 40.5788 42.0000 -Arial.ttf 60 v 27.8704 30.8793 58 E -10.9940 31.4542 42.0000 -Arial.ttf 60 v 27.8704 30.8793 59 B -11.0485 31.4542 42.0000 -Arial.ttf 60 v 27.8704 30.8793 60 v 0.2015 27.8704 30.8793 -Arial.ttf 60 v 27.8704 30.8793 61 k -11.1552 25.1207 42.0000 -Arial.ttf 60 v 27.8704 30.8793 62 J -11.0533 24.0291 42.6606 -Arial.ttf 60 v 27.8704 30.8793 63 U -10.8714 32.9083 42.6606 -Arial.ttf 60 v 27.8704 30.8793 64 j -11.3525 12.3773 53.6167 -Arial.ttf 60 v 27.8704 30.8793 65 ( -11.0502 14.4103 53.6167 -Arial.ttf 60 v 27.8704 30.8793 66 7 -10.9574 26.8523 41.6897 -Arial.ttf 60 v 27.8704 30.8793 67 § -11.2311 26.9729 53.9271 -Arial.ttf 60 v 27.8704 30.8793 68 $ -13.4974 27.6897 49.3355 -Arial.ttf 60 v 27.8704 30.8793 69 € -11.6462 33.0769 43.3212 -Arial.ttf 60 v 27.8704 30.8793 70 / -11.0558 17.5749 42.0000 -Arial.ttf 60 v 27.8704 30.8793 71 C -11.9552 36.0000 43.3212 -Arial.ttf 60 v 27.8704 30.8793 72 * -11.0549 20.3453 17.8852 -Arial.ttf 60 v 27.8704 30.8793 73 ” -11.1087 14.2296 14.0000 -Arial.ttf 60 v 27.8704 30.8793 74 ? -11.1866 26.8483 42.0000 -Arial.ttf 60 v 27.8704 30.8793 75 { -11.3030 16.7375 53.6167 -Arial.ttf 60 v 27.8704 30.8793 76 } -10.9578 16.7375 53.6167 -Arial.ttf 60 v 27.8704 30.8793 77 , 25.7673 5.2626 14.0000 -Arial.ttf 60 v 27.8704 30.8793 78 I -11.1261 5.6936 42.0000 -Arial.ttf 60 v 27.8704 30.8793 79 ° -11.2416 15.8083 15.8083 -Arial.ttf 60 v 27.8704 30.8793 80 K -11.0654 34.5749 42.0000 -Arial.ttf 60 v 27.8704 30.8793 81 H -10.9066 32.9083 42.0000 -Arial.ttf 60 v 27.8704 30.8793 82 q -1.2250 26.3123 43.6877 -Arial.ttf 60 v 27.8704 30.8793 83 & -11.2092 35.1148 42.3103 -Arial.ttf 60 v 27.8704 30.8793 84 ’ -11.2230 5.9231 14.0000 -Arial.ttf 60 v 27.8704 30.8793 85 [ -11.1204 11.0000 53.6167 -Arial.ttf 60 v 27.8704 30.8793 86 - 13.0497 15.4980 5.2626 -Arial.ttf 60 v 27.8704 30.8793 87 Y -10.9541 38.4601 42.0000 -Arial.ttf 60 v 27.8704 30.8793 88 Q -11.8360 39.5749 46.3212 -Arial.ttf 60 v 27.8704 30.8793 89 " -11.2380 15.8083 15.1916 -Arial.ttf 60 v 27.8704 30.8793 90 ! -11.2839 5.2626 42.0000 -Arial.ttf 60 v 27.8704 30.8793 91 x -0.1804 29.1060 30.8793 -Arial.ttf 60 v 27.8704 30.8793 92 ) -11.0916 14.4103 53.6167 -Arial.ttf 60 v 27.8704 30.8793 93 = 0.9546 27.8793 17.8852 -Arial.ttf 60 v 27.8704 30.8793 94 + -3.8194 27.8753 27.8753 -Arial.ttf 60 v 27.8704 30.8793 95 X -10.9074 37.6626 42.0000 -Arial.ttf 60 v 27.8704 30.8793 96 » 2.8922 25.0439 26.1917 -Arial.ttf 60 v 27.8704 30.8793 97 ' -11.2004 5.2626 15.1916 -Arial.ttf 60 v 27.8704 30.8793 98 ¢ -11.5038 25.7813 54.2685 -Arial.ttf 60 v 27.8704 30.8793 99 Z -11.1976 33.0729 42.0000 -Arial.ttf 60 v 27.8704 30.8793 100 > -3.4577 27.8354 27.8704 -Arial.ttf 60 v 27.8704 30.8793 101 ® -11.5856 43.1916 42.9709 -Arial.ttf 60 v 27.8704 30.8793 102 © -11.6817 43.1916 42.9709 -Arial.ttf 60 v 27.8704 30.8793 103 ] -11.4213 11.0000 53.6167 -Arial.ttf 60 v 27.8704 30.8793 104 é -12.1729 27.4690 43.5020 -Arial.ttf 60 v 27.8704 30.8793 105 z 0.0429 26.3123 30.8793 -Arial.ttf 60 v 27.8704 30.8793 106 _ 37.1629 33.3832 5.2626 -Arial.ttf 60 v 27.8704 30.8793 107 ¥ -10.9743 32.0291 42.0000 -Arial.ttf 61 k 25.1207 42.0000 1 t -0.0854 15.0709 42.3103 -Arial.ttf 61 k 25.1207 42.0000 2 h -0.0477 24.2793 42.0000 -Arial.ttf 61 k 25.1207 42.0000 3 a 9.9216 27.4690 32.3813 -Arial.ttf 61 k 25.1207 42.0000 4 n 9.8565 24.2793 32.0709 -Arial.ttf 61 k 25.1207 42.0000 5 P 0.0867 31.4542 42.0000 -Arial.ttf 61 k 25.1207 42.0000 6 o 10.1030 27.4690 32.3813 -Arial.ttf 61 k 25.1207 42.0000 7 e 9.8136 27.4690 32.3813 -Arial.ttf 61 k 25.1207 42.0000 8 : 10.8891 5.2626 30.8793 -Arial.ttf 61 k 25.1207 42.0000 9 r 10.2283 16.5689 32.0709 -Arial.ttf 61 k 25.1207 42.0000 10 l 0.0402 5.2626 42.0000 -Arial.ttf 61 k 25.1207 42.0000 11 i 0.0327 5.2626 42.0000 -Arial.ttf 61 k 25.1207 42.0000 12 1 0.6302 15.2355 41.6897 -Arial.ttf 61 k 25.1207 42.0000 13 | 0.2868 4.1916 54.4980 -Arial.ttf 61 k 25.1207 42.0000 14 N 0.0001 32.9083 42.0000 -Arial.ttf 61 k 25.1207 42.0000 15 f 0.2703 18.0709 42.0000 -Arial.ttf 61 k 25.1207 42.0000 16 g 9.9499 26.3123 43.6877 -Arial.ttf 61 k 25.1207 42.0000 17 d 0.0333 26.3123 42.3103 -Arial.ttf 61 k 25.1207 42.0000 18 W -0.1172 57.1916 42.0000 -Arial.ttf 61 k 25.1207 42.0000 19 s 9.9593 24.9561 32.3813 -Arial.ttf 61 k 25.1207 42.0000 20 c 10.0340 26.8084 32.3813 -Arial.ttf 61 k 25.1207 42.0000 21 u 11.2257 24.2793 31.1896 -Arial.ttf 61 k 25.1207 42.0000 22 3 0.4715 26.8483 41.6897 -Arial.ttf 61 k 25.1207 42.0000 23 ~ 16.6841 29.9083 10.9561 -Arial.ttf 61 k 25.1207 42.0000 24 # -0.0301 31.2646 42.0000 -Arial.ttf 61 k 25.1207 42.0000 25 O -0.6315 39.5749 43.3212 -Arial.ttf 61 k 25.1207 42.0000 26 ` -0.0605 10.9561 8.0769 -Arial.ttf 61 k 25.1207 42.0000 27 @ -0.0330 54.1478 54.3123 -Arial.ttf 61 k 25.1207 42.0000 28 F -0.3266 28.2207 42.0000 -Arial.ttf 61 k 25.1207 42.0000 29 S -0.6346 33.0001 43.3212 -Arial.ttf 61 k 25.1207 42.0000 30 p 9.7153 26.3123 43.6877 -Arial.ttf 61 k 25.1207 42.0000 31 “ -0.0632 13.5690 14.0000 -Arial.ttf 61 k 25.1207 42.0000 32 % -0.2647 44.8793 42.3103 -Arial.ttf 61 k 25.1207 42.0000 33 £ 0.3447 29.8522 42.3103 -Arial.ttf 61 k 25.1207 42.0000 34 . 36.7872 5.2626 5.2626 -Arial.ttf 61 k 25.1207 42.0000 35 2 0.3695 28.6956 41.6897 -Arial.ttf 61 k 25.1207 42.0000 36 5 0.4759 26.8483 41.6897 -Arial.ttf 61 k 25.1207 42.0000 37 m 9.9720 41.4044 32.0709 -Arial.ttf 61 k 25.1207 42.0000 38 V -0.1931 40.5788 42.0000 -Arial.ttf 61 k 25.1207 42.0000 39 6 0.2400 27.8542 41.6897 -Arial.ttf 61 k 25.1207 42.0000 40 w 11.2092 43.4212 30.8793 -Arial.ttf 61 k 25.1207 42.0000 41 T -0.3766 33.6936 42.0000 -Arial.ttf 61 k 25.1207 42.0000 42 M 0.3891 40.5788 42.0000 -Arial.ttf 61 k 25.1207 42.0000 43 G -0.7061 38.6897 43.3212 -Arial.ttf 61 k 25.1207 42.0000 44 b 0.0317 26.3123 42.3103 -Arial.ttf 61 k 25.1207 42.0000 45 9 0.1036 26.8483 41.6897 -Arial.ttf 61 k 25.1207 42.0000 46 ; 11.0961 5.2626 39.6167 -Arial.ttf 61 k 25.1207 42.0000 47 D -0.1243 34.4542 42.0000 -Arial.ttf 61 k 25.1207 42.0000 48 L -0.2291 25.8813 42.0000 -Arial.ttf 61 k 25.1207 42.0000 49 y 11.0491 28.0000 42.4960 -Arial.ttf 61 k 25.1207 42.0000 50 ‘ 0.0142 5.9231 14.0000 -Arial.ttf 61 k 25.1207 42.0000 51 \ -0.1783 17.5749 42.0000 -Arial.ttf 61 k 25.1207 42.0000 52 R -0.1999 36.7497 42.0000 -Arial.ttf 61 k 25.1207 42.0000 53 < 7.4932 27.8354 27.8704 -Arial.ttf 61 k 25.1207 42.0000 54 4 0.5241 28.3503 41.6897 -Arial.ttf 61 k 25.1207 42.0000 55 8 0.3113 26.6626 41.6897 -Arial.ttf 61 k 25.1207 42.0000 56 0 0.3586 26.8483 41.6897 -Arial.ttf 61 k 25.1207 42.0000 57 A -0.0733 40.5788 42.0000 -Arial.ttf 61 k 25.1207 42.0000 58 E -0.0233 31.4542 42.0000 -Arial.ttf 61 k 25.1207 42.0000 59 B 0.1488 31.4542 42.0000 -Arial.ttf 61 k 25.1207 42.0000 60 v 10.9817 27.8704 30.8793 -Arial.ttf 61 k 25.1207 42.0000 61 k -0.2690 25.1207 42.0000 -Arial.ttf 61 k 25.1207 42.0000 62 J -0.0505 24.0291 42.6606 -Arial.ttf 61 k 25.1207 42.0000 63 U -0.1256 32.9083 42.6606 -Arial.ttf 61 k 25.1207 42.0000 64 j -0.1601 12.3773 53.6167 -Arial.ttf 61 k 25.1207 42.0000 65 ( 0.1601 14.4103 53.6167 -Arial.ttf 61 k 25.1207 42.0000 66 7 0.0723 26.8523 41.6897 -Arial.ttf 61 k 25.1207 42.0000 67 § 0.0291 26.9729 53.9271 -Arial.ttf 61 k 25.1207 42.0000 68 $ -2.2340 27.6897 49.3355 -Arial.ttf 61 k 25.1207 42.0000 69 € -0.7035 33.0769 43.3212 -Arial.ttf 61 k 25.1207 42.0000 70 / -0.0287 17.5749 42.0000 -Arial.ttf 61 k 25.1207 42.0000 71 C -0.5847 36.0000 43.3212 -Arial.ttf 61 k 25.1207 42.0000 72 * 0.2260 20.3453 17.8852 -Arial.ttf 61 k 25.1207 42.0000 73 ” -0.0552 14.2296 14.0000 -Arial.ttf 61 k 25.1207 42.0000 74 ? 0.2233 26.8483 42.0000 -Arial.ttf 61 k 25.1207 42.0000 75 { -0.1601 16.7375 53.6167 -Arial.ttf 61 k 25.1207 42.0000 76 } -0.0563 16.7375 53.6167 -Arial.ttf 61 k 25.1207 42.0000 77 , 36.6202 5.2626 14.0000 -Arial.ttf 61 k 25.1207 42.0000 78 I -0.4698 5.6936 42.0000 -Arial.ttf 61 k 25.1207 42.0000 79 ° 0.0716 15.8083 15.8083 -Arial.ttf 61 k 25.1207 42.0000 80 K 0.2969 34.5749 42.0000 -Arial.ttf 61 k 25.1207 42.0000 81 H -0.0358 32.9083 42.0000 -Arial.ttf 61 k 25.1207 42.0000 82 q 10.0881 26.3123 43.6877 -Arial.ttf 61 k 25.1207 42.0000 83 & -0.0601 35.1148 42.3103 -Arial.ttf 61 k 25.1207 42.0000 84 ’ 0.1517 5.9231 14.0000 -Arial.ttf 61 k 25.1207 42.0000 85 [ -0.1199 11.0000 53.6167 -Arial.ttf 61 k 25.1207 42.0000 86 - 24.1614 15.4980 5.2626 -Arial.ttf 61 k 25.1207 42.0000 87 Y -0.0813 38.4601 42.0000 -Arial.ttf 61 k 25.1207 42.0000 88 Q -0.7158 39.5749 46.3212 -Arial.ttf 61 k 25.1207 42.0000 89 " -0.1061 15.8083 15.1916 -Arial.ttf 61 k 25.1207 42.0000 90 ! 0.0291 5.2626 42.0000 -Arial.ttf 61 k 25.1207 42.0000 91 x 11.0406 29.1060 30.8793 -Arial.ttf 61 k 25.1207 42.0000 92 ) -0.0057 14.4103 53.6167 -Arial.ttf 61 k 25.1207 42.0000 93 = 11.8907 27.8793 17.8852 -Arial.ttf 61 k 25.1207 42.0000 94 + 7.4689 27.8753 27.8753 -Arial.ttf 61 k 25.1207 42.0000 95 X 0.0179 37.6626 42.0000 -Arial.ttf 61 k 25.1207 42.0000 96 » 14.0371 25.0439 26.1917 -Arial.ttf 61 k 25.1207 42.0000 97 ' 0.0208 5.2626 15.1916 -Arial.ttf 61 k 25.1207 42.0000 98 ¢ -0.0379 25.7813 54.2685 -Arial.ttf 61 k 25.1207 42.0000 99 Z -0.2939 33.0729 42.0000 -Arial.ttf 61 k 25.1207 42.0000 100 > 7.3919 27.8354 27.8704 -Arial.ttf 61 k 25.1207 42.0000 101 ® -0.6839 43.1916 42.9709 -Arial.ttf 61 k 25.1207 42.0000 102 © -0.4813 43.1916 42.9709 -Arial.ttf 61 k 25.1207 42.0000 103 ] 0.1571 11.0000 53.6167 -Arial.ttf 61 k 25.1207 42.0000 104 é -1.3396 27.4690 43.5020 -Arial.ttf 61 k 25.1207 42.0000 105 z 11.0035 26.3123 30.8793 -Arial.ttf 61 k 25.1207 42.0000 106 _ 48.3197 33.3832 5.2626 -Arial.ttf 61 k 25.1207 42.0000 107 ¥ -0.2605 32.0291 42.0000 -Arial.ttf 62 J 24.0291 42.6606 1 t 0.0456 15.0709 42.3103 -Arial.ttf 62 J 24.0291 42.6606 2 h -0.1494 24.2793 42.0000 -Arial.ttf 62 J 24.0291 42.6606 3 a 9.9577 27.4690 32.3813 -Arial.ttf 62 J 24.0291 42.6606 4 n 9.7879 24.2793 32.0709 -Arial.ttf 62 J 24.0291 42.6606 5 P 0.1050 31.4542 42.0000 -Arial.ttf 62 J 24.0291 42.6606 6 o 10.0034 27.4690 32.3813 -Arial.ttf 62 J 24.0291 42.6606 7 e 9.7408 27.4690 32.3813 -Arial.ttf 62 J 24.0291 42.6606 8 : 11.1359 5.2626 30.8793 -Arial.ttf 62 J 24.0291 42.6606 9 r 9.9967 16.5689 32.0709 -Arial.ttf 62 J 24.0291 42.6606 10 l 0.1203 5.2626 42.0000 -Arial.ttf 62 J 24.0291 42.6606 11 i -0.1889 5.2626 42.0000 -Arial.ttf 62 J 24.0291 42.6606 12 1 0.6493 15.2355 41.6897 -Arial.ttf 62 J 24.0291 42.6606 13 | -0.0206 4.1916 54.4980 -Arial.ttf 62 J 24.0291 42.6606 14 N -0.1963 32.9083 42.0000 -Arial.ttf 62 J 24.0291 42.6606 15 f 0.1448 18.0709 42.0000 -Arial.ttf 62 J 24.0291 42.6606 16 g 9.8080 26.3123 43.6877 -Arial.ttf 62 J 24.0291 42.6606 17 d 0.1061 26.3123 42.3103 -Arial.ttf 62 J 24.0291 42.6606 18 W -0.0111 57.1916 42.0000 -Arial.ttf 62 J 24.0291 42.6606 19 s 9.9774 24.9561 32.3813 -Arial.ttf 62 J 24.0291 42.6606 20 c 9.3647 26.8084 32.3813 -Arial.ttf 62 J 24.0291 42.6606 21 u 11.4001 24.2793 31.1896 -Arial.ttf 62 J 24.0291 42.6606 22 3 0.2552 26.8483 41.6897 -Arial.ttf 62 J 24.0291 42.6606 23 ~ 17.0140 29.9083 10.9561 -Arial.ttf 62 J 24.0291 42.6606 24 # -0.1686 31.2646 42.0000 -Arial.ttf 62 J 24.0291 42.6606 25 O -0.5131 39.5749 43.3212 -Arial.ttf 62 J 24.0291 42.6606 26 ` 0.1463 10.9561 8.0769 -Arial.ttf 62 J 24.0291 42.6606 27 @ -0.1491 54.1478 54.3123 -Arial.ttf 62 J 24.0291 42.6606 28 F -0.3155 28.2207 42.0000 -Arial.ttf 62 J 24.0291 42.6606 29 S -0.5667 33.0001 43.3212 -Arial.ttf 62 J 24.0291 42.6606 30 p 9.7318 26.3123 43.6877 -Arial.ttf 62 J 24.0291 42.6606 31 “ 0.1707 13.5690 14.0000 -Arial.ttf 62 J 24.0291 42.6606 32 % -0.0685 44.8793 42.3103 -Arial.ttf 62 J 24.0291 42.6606 33 £ -0.1736 29.8522 42.3103 -Arial.ttf 62 J 24.0291 42.6606 34 . 36.5057 5.2626 5.2626 -Arial.ttf 62 J 24.0291 42.6606 35 2 0.2581 28.6956 41.6897 -Arial.ttf 62 J 24.0291 42.6606 36 5 -0.0605 26.8483 41.6897 -Arial.ttf 62 J 24.0291 42.6606 37 m 10.0325 41.4044 32.0709 -Arial.ttf 62 J 24.0291 42.6606 38 V 0.1039 40.5788 42.0000 -Arial.ttf 62 J 24.0291 42.6606 39 6 0.4042 27.8542 41.6897 -Arial.ttf 62 J 24.0291 42.6606 40 w 11.1234 43.4212 30.8793 -Arial.ttf 62 J 24.0291 42.6606 41 T 0.0871 33.6936 42.0000 -Arial.ttf 62 J 24.0291 42.6606 42 M -0.0950 40.5788 42.0000 -Arial.ttf 62 J 24.0291 42.6606 43 G -0.5684 38.6897 43.3212 -Arial.ttf 62 J 24.0291 42.6606 44 b -0.1545 26.3123 42.3103 -Arial.ttf 62 J 24.0291 42.6606 45 9 0.2138 26.8483 41.6897 -Arial.ttf 62 J 24.0291 42.6606 46 ; 11.3869 5.2626 39.6167 -Arial.ttf 62 J 24.0291 42.6606 47 D -0.3797 34.4542 42.0000 -Arial.ttf 62 J 24.0291 42.6606 48 L -0.0233 25.8813 42.0000 -Arial.ttf 62 J 24.0291 42.6606 49 y 11.0960 28.0000 42.4960 -Arial.ttf 62 J 24.0291 42.6606 50 ‘ -0.0885 5.9231 14.0000 -Arial.ttf 62 J 24.0291 42.6606 51 \ 0.1199 17.5749 42.0000 -Arial.ttf 62 J 24.0291 42.6606 52 R 0.3532 36.7497 42.0000 -Arial.ttf 62 J 24.0291 42.6606 53 < 7.5605 27.8354 27.8704 -Arial.ttf 62 J 24.0291 42.6606 54 4 0.2138 28.3503 41.6897 -Arial.ttf 62 J 24.0291 42.6606 55 8 0.2954 26.6626 41.6897 -Arial.ttf 62 J 24.0291 42.6606 56 0 0.2245 26.8483 41.6897 -Arial.ttf 62 J 24.0291 42.6606 57 A -0.0466 40.5788 42.0000 -Arial.ttf 62 J 24.0291 42.6606 58 E -0.0540 31.4542 42.0000 -Arial.ttf 62 J 24.0291 42.6606 59 B -0.1793 31.4542 42.0000 -Arial.ttf 62 J 24.0291 42.6606 60 v 11.0877 27.8704 30.8793 -Arial.ttf 62 J 24.0291 42.6606 61 k 0.0622 25.1207 42.0000 -Arial.ttf 62 J 24.0291 42.6606 62 J -0.0080 24.0291 42.6606 -Arial.ttf 62 J 24.0291 42.6606 63 U 0.2263 32.9083 42.6606 -Arial.ttf 62 J 24.0291 42.6606 64 j -0.0455 12.3773 53.6167 -Arial.ttf 62 J 24.0291 42.6606 65 ( -0.0057 14.4103 53.6167 -Arial.ttf 62 J 24.0291 42.6606 66 7 0.1121 26.8523 41.6897 -Arial.ttf 62 J 24.0291 42.6606 67 § 0.2558 26.9729 53.9271 -Arial.ttf 62 J 24.0291 42.6606 68 $ -1.9583 27.6897 49.3355 -Arial.ttf 62 J 24.0291 42.6606 69 € -0.7132 33.0769 43.3212 -Arial.ttf 62 J 24.0291 42.6606 70 / 0.0287 17.5749 42.0000 -Arial.ttf 62 J 24.0291 42.6606 71 C -0.7667 36.0000 43.3212 -Arial.ttf 62 J 24.0291 42.6606 72 * 0.2324 20.3453 17.8852 -Arial.ttf 62 J 24.0291 42.6606 73 ” -0.1787 14.2296 14.0000 -Arial.ttf 62 J 24.0291 42.6606 74 ? 0.0983 26.8483 42.0000 -Arial.ttf 62 J 24.0291 42.6606 75 { -0.0787 16.7375 53.6167 -Arial.ttf 62 J 24.0291 42.6606 76 } -0.1628 16.7375 53.6167 -Arial.ttf 62 J 24.0291 42.6606 77 , 36.6808 5.2626 14.0000 -Arial.ttf 62 J 24.0291 42.6606 78 I -0.0828 5.6936 42.0000 -Arial.ttf 62 J 24.0291 42.6606 79 ° -0.0823 15.8083 15.8083 -Arial.ttf 62 J 24.0291 42.6606 80 K -0.0615 34.5749 42.0000 -Arial.ttf 62 J 24.0291 42.6606 81 H 0.1307 32.9083 42.0000 -Arial.ttf 62 J 24.0291 42.6606 82 q 9.8921 26.3123 43.6877 -Arial.ttf 62 J 24.0291 42.6606 83 & 0.0966 35.1148 42.3103 -Arial.ttf 62 J 24.0291 42.6606 84 ’ -0.2186 5.9231 14.0000 -Arial.ttf 62 J 24.0291 42.6606 85 [ -0.1432 11.0000 53.6167 -Arial.ttf 62 J 24.0291 42.6606 86 - 24.3858 15.4980 5.2626 -Arial.ttf 62 J 24.0291 42.6606 87 Y -0.1421 38.4601 42.0000 -Arial.ttf 62 J 24.0291 42.6606 88 Q -0.8271 39.5749 46.3212 -Arial.ttf 62 J 24.0291 42.6606 89 " -0.0000 15.8083 15.1916 -Arial.ttf 62 J 24.0291 42.6606 90 ! -0.1146 5.2626 42.0000 -Arial.ttf 62 J 24.0291 42.6606 91 x 11.2380 29.1060 30.8793 -Arial.ttf 62 J 24.0291 42.6606 92 ) 0.1686 14.4103 53.6167 -Arial.ttf 62 J 24.0291 42.6606 93 = 11.9930 27.8793 17.8852 -Arial.ttf 62 J 24.0291 42.6606 94 + 7.4075 27.8753 27.8753 -Arial.ttf 62 J 24.0291 42.6606 95 X 0.1368 37.6626 42.0000 -Arial.ttf 62 J 24.0291 42.6606 96 » 13.8088 25.0439 26.1917 -Arial.ttf 62 J 24.0291 42.6606 97 ' -0.2000 5.2626 15.1916 -Arial.ttf 62 J 24.0291 42.6606 98 ¢ 0.2279 25.7813 54.2685 -Arial.ttf 62 J 24.0291 42.6606 99 Z 0.1531 33.0729 42.0000 -Arial.ttf 62 J 24.0291 42.6606 100 > 7.5458 27.8354 27.8704 -Arial.ttf 62 J 24.0291 42.6606 101 ® -0.5778 43.1916 42.9709 -Arial.ttf 62 J 24.0291 42.6606 102 © -0.6096 43.1916 42.9709 -Arial.ttf 62 J 24.0291 42.6606 103 ] 0.0080 11.0000 53.6167 -Arial.ttf 62 J 24.0291 42.6606 104 é -1.2140 27.4690 43.5020 -Arial.ttf 62 J 24.0291 42.6606 105 z 11.0255 26.3123 30.8793 -Arial.ttf 62 J 24.0291 42.6606 106 _ 48.4552 33.3832 5.2626 -Arial.ttf 62 J 24.0291 42.6606 107 ¥ -0.0690 32.0291 42.0000 -Arial.ttf 63 U 32.9083 42.6606 1 t 0.0908 15.0709 42.3103 -Arial.ttf 63 U 32.9083 42.6606 2 h -0.0814 24.2793 42.0000 -Arial.ttf 63 U 32.9083 42.6606 3 a 9.6299 27.4690 32.3813 -Arial.ttf 63 U 32.9083 42.6606 4 n 10.0394 24.2793 32.0709 -Arial.ttf 63 U 32.9083 42.6606 5 P -0.1024 31.4542 42.0000 -Arial.ttf 63 U 32.9083 42.6606 6 o 9.6023 27.4690 32.3813 -Arial.ttf 63 U 32.9083 42.6606 7 e 9.9350 27.4690 32.3813 -Arial.ttf 63 U 32.9083 42.6606 8 : 11.0640 5.2626 30.8793 -Arial.ttf 63 U 32.9083 42.6606 9 r 10.0087 16.5689 32.0709 -Arial.ttf 63 U 32.9083 42.6606 10 l -0.3945 5.2626 42.0000 -Arial.ttf 63 U 32.9083 42.6606 11 i 0.3569 5.2626 42.0000 -Arial.ttf 63 U 32.9083 42.6606 12 1 0.3051 15.2355 41.6897 -Arial.ttf 63 U 32.9083 42.6606 13 | 0.0583 4.1916 54.4980 -Arial.ttf 63 U 32.9083 42.6606 14 N -0.6715 32.9083 42.0000 -Arial.ttf 63 U 32.9083 42.6606 15 f 0.0149 18.0709 42.0000 -Arial.ttf 63 U 32.9083 42.6606 16 g 9.9429 26.3123 43.6877 -Arial.ttf 63 U 32.9083 42.6606 17 d 0.0097 26.3123 42.3103 -Arial.ttf 63 U 32.9083 42.6606 18 W 0.0854 57.1916 42.0000 -Arial.ttf 63 U 32.9083 42.6606 19 s 9.8463 24.9561 32.3813 -Arial.ttf 63 U 32.9083 42.6606 20 c 9.9938 26.8084 32.3813 -Arial.ttf 63 U 32.9083 42.6606 21 u 11.1403 24.2793 31.1896 -Arial.ttf 63 U 32.9083 42.6606 22 3 0.1614 26.8483 41.6897 -Arial.ttf 63 U 32.9083 42.6606 23 ~ 16.6973 29.9083 10.9561 -Arial.ttf 63 U 32.9083 42.6606 24 # -0.1858 31.2646 42.0000 -Arial.ttf 63 U 32.9083 42.6606 25 O -0.4602 39.5749 43.3212 -Arial.ttf 63 U 32.9083 42.6606 26 ` -0.1570 10.9561 8.0769 -Arial.ttf 63 U 32.9083 42.6606 27 @ -0.1866 54.1478 54.3123 -Arial.ttf 63 U 32.9083 42.6606 28 F -0.0584 28.2207 42.0000 -Arial.ttf 63 U 32.9083 42.6606 29 S -0.4154 33.0001 43.3212 -Arial.ttf 63 U 32.9083 42.6606 30 p 10.1003 26.3123 43.6877 -Arial.ttf 63 U 32.9083 42.6606 31 “ -0.0902 13.5690 14.0000 -Arial.ttf 63 U 32.9083 42.6606 32 % -0.0547 44.8793 42.3103 -Arial.ttf 63 U 32.9083 42.6606 33 £ -0.1463 29.8522 42.3103 -Arial.ttf 63 U 32.9083 42.6606 34 . 36.8562 5.2626 5.2626 -Arial.ttf 63 U 32.9083 42.6606 35 2 0.0732 28.6956 41.6897 -Arial.ttf 63 U 32.9083 42.6606 36 5 0.3378 26.8483 41.6897 -Arial.ttf 63 U 32.9083 42.6606 37 m 9.7332 41.4044 32.0709 -Arial.ttf 63 U 32.9083 42.6606 38 V 0.1090 40.5788 42.0000 -Arial.ttf 63 U 32.9083 42.6606 39 6 0.1086 27.8542 41.6897 -Arial.ttf 63 U 32.9083 42.6606 40 w 11.1399 43.4212 30.8793 -Arial.ttf 63 U 32.9083 42.6606 41 T -0.2000 33.6936 42.0000 -Arial.ttf 63 U 32.9083 42.6606 42 M 0.1367 40.5788 42.0000 -Arial.ttf 63 U 32.9083 42.6606 43 G -0.8907 38.6897 43.3212 -Arial.ttf 63 U 32.9083 42.6606 44 b -0.0690 26.3123 42.3103 -Arial.ttf 63 U 32.9083 42.6606 45 9 0.1586 26.8483 41.6897 -Arial.ttf 63 U 32.9083 42.6606 46 ; 11.1552 5.2626 39.6167 -Arial.ttf 63 U 32.9083 42.6606 47 D 0.1724 34.4542 42.0000 -Arial.ttf 63 U 32.9083 42.6606 48 L -0.0340 25.8813 42.0000 -Arial.ttf 63 U 32.9083 42.6606 49 y 11.1356 28.0000 42.4960 -Arial.ttf 63 U 32.9083 42.6606 50 ‘ 0.0111 5.9231 14.0000 -Arial.ttf 63 U 32.9083 42.6606 51 \ -0.1118 17.5749 42.0000 -Arial.ttf 63 U 32.9083 42.6606 52 R -0.1459 36.7497 42.0000 -Arial.ttf 63 U 32.9083 42.6606 53 < 7.5512 27.8354 27.8704 -Arial.ttf 63 U 32.9083 42.6606 54 4 0.4722 28.3503 41.6897 -Arial.ttf 63 U 32.9083 42.6606 55 8 0.1384 26.6626 41.6897 -Arial.ttf 63 U 32.9083 42.6606 56 0 0.5655 26.8483 41.6897 -Arial.ttf 63 U 32.9083 42.6606 57 A -0.0690 40.5788 42.0000 -Arial.ttf 63 U 32.9083 42.6606 58 E 0.4700 31.4542 42.0000 -Arial.ttf 63 U 32.9083 42.6606 59 B -0.1889 31.4542 42.0000 -Arial.ttf 63 U 32.9083 42.6606 60 v 11.2315 27.8704 30.8793 -Arial.ttf 63 U 32.9083 42.6606 61 k 0.0856 25.1207 42.0000 -Arial.ttf 63 U 32.9083 42.6606 62 J 0.0784 24.0291 42.6606 -Arial.ttf 63 U 32.9083 42.6606 63 U -0.2191 32.9083 42.6606 -Arial.ttf 63 U 32.9083 42.6606 64 j -0.2247 12.3773 53.6167 -Arial.ttf 63 U 32.9083 42.6606 65 ( 0.0348 14.4103 53.6167 -Arial.ttf 63 U 32.9083 42.6606 66 7 -0.1595 26.8523 41.6897 -Arial.ttf 63 U 32.9083 42.6606 67 § 0.3516 26.9729 53.9271 -Arial.ttf 63 U 32.9083 42.6606 68 $ -2.0151 27.6897 49.3355 -Arial.ttf 63 U 32.9083 42.6606 69 € -0.6796 33.0769 43.3212 -Arial.ttf 63 U 32.9083 42.6606 70 / 0.1598 17.5749 42.0000 -Arial.ttf 63 U 32.9083 42.6606 71 C -0.5384 36.0000 43.3212 -Arial.ttf 63 U 32.9083 42.6606 72 * -0.2276 20.3453 17.8852 -Arial.ttf 63 U 32.9083 42.6606 73 ” -0.0563 14.2296 14.0000 -Arial.ttf 63 U 32.9083 42.6606 74 ? 0.1973 26.8483 42.0000 -Arial.ttf 63 U 32.9083 42.6606 75 { 0.0938 16.7375 53.6167 -Arial.ttf 63 U 32.9083 42.6606 76 } 0.0169 16.7375 53.6167 -Arial.ttf 63 U 32.9083 42.6606 77 , 36.6474 5.2626 14.0000 -Arial.ttf 63 U 32.9083 42.6606 78 I 0.3001 5.6936 42.0000 -Arial.ttf 63 U 32.9083 42.6606 79 ° -0.3145 15.8083 15.8083 -Arial.ttf 63 U 32.9083 42.6606 80 K 0.0970 34.5749 42.0000 -Arial.ttf 63 U 32.9083 42.6606 81 H 0.1203 32.9083 42.0000 -Arial.ttf 63 U 32.9083 42.6606 82 q 9.8378 26.3123 43.6877 -Arial.ttf 63 U 32.9083 42.6606 83 & -0.0054 35.1148 42.3103 -Arial.ttf 63 U 32.9083 42.6606 84 ’ 0.2969 5.9231 14.0000 -Arial.ttf 63 U 32.9083 42.6606 85 [ -0.1692 11.0000 53.6167 -Arial.ttf 63 U 32.9083 42.6606 86 - 24.4214 15.4980 5.2626 -Arial.ttf 63 U 32.9083 42.6606 87 Y -0.0524 38.4601 42.0000 -Arial.ttf 63 U 32.9083 42.6606 88 Q -0.5801 39.5749 46.3212 -Arial.ttf 63 U 32.9083 42.6606 89 " 0.3607 15.8083 15.1916 -Arial.ttf 63 U 32.9083 42.6606 90 ! -0.1557 5.2626 42.0000 -Arial.ttf 63 U 32.9083 42.6606 91 x 11.0114 29.1060 30.8793 -Arial.ttf 63 U 32.9083 42.6606 92 ) 0.0205 14.4103 53.6167 -Arial.ttf 63 U 32.9083 42.6606 93 = 11.8930 27.8793 17.8852 -Arial.ttf 63 U 32.9083 42.6606 94 + 7.6449 27.8753 27.8753 -Arial.ttf 63 U 32.9083 42.6606 95 X -0.2979 37.6626 42.0000 -Arial.ttf 63 U 32.9083 42.6606 96 » 14.1121 25.0439 26.1917 -Arial.ttf 63 U 32.9083 42.6606 97 ' 0.0970 5.2626 15.1916 -Arial.ttf 63 U 32.9083 42.6606 98 ¢ -0.1233 25.7813 54.2685 -Arial.ttf 63 U 32.9083 42.6606 99 Z -0.0784 33.0729 42.0000 -Arial.ttf 63 U 32.9083 42.6606 100 > 7.3983 27.8354 27.8704 -Arial.ttf 63 U 32.9083 42.6606 101 ® -0.8637 43.1916 42.9709 -Arial.ttf 63 U 32.9083 42.6606 102 © -0.6165 43.1916 42.9709 -Arial.ttf 63 U 32.9083 42.6606 103 ] 0.0230 11.0000 53.6167 -Arial.ttf 63 U 32.9083 42.6606 104 é -0.9006 27.4690 43.5020 -Arial.ttf 63 U 32.9083 42.6606 105 z 11.5385 26.3123 30.8793 -Arial.ttf 63 U 32.9083 42.6606 106 _ 48.4326 33.3832 5.2626 -Arial.ttf 63 U 32.9083 42.6606 107 ¥ -0.0190 32.0291 42.0000 -Arial.ttf 64 j 12.3773 53.6167 1 t -0.1516 15.0709 42.3103 -Arial.ttf 64 j 12.3773 53.6167 2 h -0.1548 24.2793 42.0000 -Arial.ttf 64 j 12.3773 53.6167 3 a 9.8555 27.4690 32.3813 -Arial.ttf 64 j 12.3773 53.6167 4 n 9.7980 24.2793 32.0709 -Arial.ttf 64 j 12.3773 53.6167 5 P 0.4205 31.4542 42.0000 -Arial.ttf 64 j 12.3773 53.6167 6 o 9.9054 27.4690 32.3813 -Arial.ttf 64 j 12.3773 53.6167 7 e 10.0118 27.4690 32.3813 -Arial.ttf 64 j 12.3773 53.6167 8 : 11.0920 5.2626 30.8793 -Arial.ttf 64 j 12.3773 53.6167 9 r 9.7733 16.5689 32.0709 -Arial.ttf 64 j 12.3773 53.6167 10 l 0.1406 5.2626 42.0000 -Arial.ttf 64 j 12.3773 53.6167 11 i -0.1506 5.2626 42.0000 -Arial.ttf 64 j 12.3773 53.6167 12 1 0.1451 15.2355 41.6897 -Arial.ttf 64 j 12.3773 53.6167 13 | -0.3155 4.1916 54.4980 -Arial.ttf 64 j 12.3773 53.6167 14 N 0.0402 32.9083 42.0000 -Arial.ttf 64 j 12.3773 53.6167 15 f 0.2598 18.0709 42.0000 -Arial.ttf 64 j 12.3773 53.6167 16 g 9.7498 26.3123 43.6877 -Arial.ttf 64 j 12.3773 53.6167 17 d -0.0085 26.3123 42.3103 -Arial.ttf 64 j 12.3773 53.6167 18 W -0.0615 57.1916 42.0000 -Arial.ttf 64 j 12.3773 53.6167 19 s 9.8606 24.9561 32.3813 -Arial.ttf 64 j 12.3773 53.6167 20 c 9.9153 26.8084 32.3813 -Arial.ttf 64 j 12.3773 53.6167 21 u 11.0284 24.2793 31.1896 -Arial.ttf 64 j 12.3773 53.6167 22 3 0.4540 26.8483 41.6897 -Arial.ttf 64 j 12.3773 53.6167 23 ~ 16.9192 29.9083 10.9561 -Arial.ttf 64 j 12.3773 53.6167 24 # 0.0260 31.2646 42.0000 -Arial.ttf 64 j 12.3773 53.6167 25 O -0.3518 39.5749 43.3212 -Arial.ttf 64 j 12.3773 53.6167 26 ` 0.4195 10.9561 8.0769 -Arial.ttf 64 j 12.3773 53.6167 27 @ -0.0233 54.1478 54.3123 -Arial.ttf 64 j 12.3773 53.6167 28 F -0.0659 28.2207 42.0000 -Arial.ttf 64 j 12.3773 53.6167 29 S -0.8747 33.0001 43.3212 -Arial.ttf 64 j 12.3773 53.6167 30 p 10.1774 26.3123 43.6877 -Arial.ttf 64 j 12.3773 53.6167 31 “ -0.2922 13.5690 14.0000 -Arial.ttf 64 j 12.3773 53.6167 32 % 0.1368 44.8793 42.3103 -Arial.ttf 64 j 12.3773 53.6167 33 £ 0.1256 29.8522 42.3103 -Arial.ttf 64 j 12.3773 53.6167 34 . 36.4639 5.2626 5.2626 -Arial.ttf 64 j 12.3773 53.6167 35 2 0.2218 28.6956 41.6897 -Arial.ttf 64 j 12.3773 53.6167 36 5 0.2647 26.8483 41.6897 -Arial.ttf 64 j 12.3773 53.6167 37 m 10.1141 41.4044 32.0709 -Arial.ttf 64 j 12.3773 53.6167 38 V 0.1575 40.5788 42.0000 -Arial.ttf 64 j 12.3773 53.6167 39 6 0.2455 27.8542 41.6897 -Arial.ttf 64 j 12.3773 53.6167 40 w 11.1981 43.4212 30.8793 -Arial.ttf 64 j 12.3773 53.6167 41 T -0.2164 33.6936 42.0000 -Arial.ttf 64 j 12.3773 53.6167 42 M 0.0567 40.5788 42.0000 -Arial.ttf 64 j 12.3773 53.6167 43 G -0.3741 38.6897 43.3212 -Arial.ttf 64 j 12.3773 53.6167 44 b 0.1476 26.3123 42.3103 -Arial.ttf 64 j 12.3773 53.6167 45 9 0.2678 26.8483 41.6897 -Arial.ttf 64 j 12.3773 53.6167 46 ; 11.2697 5.2626 39.6167 -Arial.ttf 64 j 12.3773 53.6167 47 D 0.1626 34.4542 42.0000 -Arial.ttf 64 j 12.3773 53.6167 48 L -0.2552 25.8813 42.0000 -Arial.ttf 64 j 12.3773 53.6167 49 y 10.9552 28.0000 42.4960 -Arial.ttf 64 j 12.3773 53.6167 50 ‘ -0.1448 5.9231 14.0000 -Arial.ttf 64 j 12.3773 53.6167 51 \ -0.0885 17.5749 42.0000 -Arial.ttf 64 j 12.3773 53.6167 52 R -0.0632 36.7497 42.0000 -Arial.ttf 64 j 12.3773 53.6167 53 < 7.3719 27.8354 27.8704 -Arial.ttf 64 j 12.3773 53.6167 54 4 0.3115 28.3503 41.6897 -Arial.ttf 64 j 12.3773 53.6167 55 8 0.3711 26.6626 41.6897 -Arial.ttf 64 j 12.3773 53.6167 56 0 0.4042 26.8483 41.6897 -Arial.ttf 64 j 12.3773 53.6167 57 A -0.1199 40.5788 42.0000 -Arial.ttf 64 j 12.3773 53.6167 58 E -0.0195 31.4542 42.0000 -Arial.ttf 64 j 12.3773 53.6167 59 B -0.2037 31.4542 42.0000 -Arial.ttf 64 j 12.3773 53.6167 60 v 11.3163 27.8704 30.8793 -Arial.ttf 64 j 12.3773 53.6167 61 k 0.0207 25.1207 42.0000 -Arial.ttf 64 j 12.3773 53.6167 62 J 0.0000 24.0291 42.6606 -Arial.ttf 64 j 12.3773 53.6167 63 U 0.2195 32.9083 42.6606 -Arial.ttf 64 j 12.3773 53.6167 64 j -0.1983 12.3773 53.6167 -Arial.ttf 64 j 12.3773 53.6167 65 ( -0.1061 14.4103 53.6167 -Arial.ttf 64 j 12.3773 53.6167 66 7 0.4191 26.8523 41.6897 -Arial.ttf 64 j 12.3773 53.6167 67 § 0.0286 26.9729 53.9271 -Arial.ttf 64 j 12.3773 53.6167 68 $ -2.1763 27.6897 49.3355 -Arial.ttf 64 j 12.3773 53.6167 69 € -0.6484 33.0769 43.3212 -Arial.ttf 64 j 12.3773 53.6167 70 / -0.0138 17.5749 42.0000 -Arial.ttf 64 j 12.3773 53.6167 71 C -0.6553 36.0000 43.3212 -Arial.ttf 64 j 12.3773 53.6167 72 * 0.1077 20.3453 17.8852 -Arial.ttf 64 j 12.3773 53.6167 73 ” -0.1713 14.2296 14.0000 -Arial.ttf 64 j 12.3773 53.6167 74 ? -0.0690 26.8483 42.0000 -Arial.ttf 64 j 12.3773 53.6167 75 { 0.1033 16.7375 53.6167 -Arial.ttf 64 j 12.3773 53.6167 76 } 0.1453 16.7375 53.6167 -Arial.ttf 64 j 12.3773 53.6167 77 , 36.6632 5.2626 14.0000 -Arial.ttf 64 j 12.3773 53.6167 78 I -0.1921 5.6936 42.0000 -Arial.ttf 64 j 12.3773 53.6167 79 ° -0.2178 15.8083 15.8083 -Arial.ttf 64 j 12.3773 53.6167 80 K 0.0509 34.5749 42.0000 -Arial.ttf 64 j 12.3773 53.6167 81 H 0.1335 32.9083 42.0000 -Arial.ttf 64 j 12.3773 53.6167 82 q 9.7967 26.3123 43.6877 -Arial.ttf 64 j 12.3773 53.6167 83 & -0.3506 35.1148 42.3103 -Arial.ttf 64 j 12.3773 53.6167 84 ’ 0.1088 5.9231 14.0000 -Arial.ttf 64 j 12.3773 53.6167 85 [ 0.0000 11.0000 53.6167 -Arial.ttf 64 j 12.3773 53.6167 86 - 24.4000 15.4980 5.2626 -Arial.ttf 64 j 12.3773 53.6167 87 Y 0.0992 38.4601 42.0000 -Arial.ttf 64 j 12.3773 53.6167 88 Q -0.7200 39.5749 46.3212 -Arial.ttf 64 j 12.3773 53.6167 89 " 0.1542 15.8083 15.1916 -Arial.ttf 64 j 12.3773 53.6167 90 ! 0.0000 5.2626 42.0000 -Arial.ttf 64 j 12.3773 53.6167 91 x 11.1265 29.1060 30.8793 -Arial.ttf 64 j 12.3773 53.6167 92 ) 0.1161 14.4103 53.6167 -Arial.ttf 64 j 12.3773 53.6167 93 = 11.9308 27.8793 17.8852 -Arial.ttf 64 j 12.3773 53.6167 94 + 7.6014 27.8753 27.8753 -Arial.ttf 64 j 12.3773 53.6167 95 X -0.1448 37.6626 42.0000 -Arial.ttf 64 j 12.3773 53.6167 96 » 13.7217 25.0439 26.1917 -Arial.ttf 64 j 12.3773 53.6167 97 ' -0.0690 5.2626 15.1916 -Arial.ttf 64 j 12.3773 53.6167 98 ¢ 0.0103 25.7813 54.2685 -Arial.ttf 64 j 12.3773 53.6167 99 Z 0.3820 33.0729 42.0000 -Arial.ttf 64 j 12.3773 53.6167 100 > 7.7002 27.8354 27.8704 -Arial.ttf 64 j 12.3773 53.6167 101 ® -0.7997 43.1916 42.9709 -Arial.ttf 64 j 12.3773 53.6167 102 © -0.9654 43.1916 42.9709 -Arial.ttf 64 j 12.3773 53.6167 103 ] -0.0249 11.0000 53.6167 -Arial.ttf 64 j 12.3773 53.6167 104 é -1.1106 27.4690 43.5020 -Arial.ttf 64 j 12.3773 53.6167 105 z 11.2459 26.3123 30.8793 -Arial.ttf 64 j 12.3773 53.6167 106 _ 48.3197 33.3832 5.2626 -Arial.ttf 64 j 12.3773 53.6167 107 ¥ 0.0496 32.0291 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 1 t 0.0743 15.0709 42.3103 -Arial.ttf 65 ( 14.4103 53.6167 2 h 0.3739 24.2793 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 3 a 9.9291 27.4690 32.3813 -Arial.ttf 65 ( 14.4103 53.6167 4 n 9.8808 24.2793 32.0709 -Arial.ttf 65 ( 14.4103 53.6167 5 P 0.0885 31.4542 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 6 o 9.7716 27.4690 32.3813 -Arial.ttf 65 ( 14.4103 53.6167 7 e 9.7954 27.4690 32.3813 -Arial.ttf 65 ( 14.4103 53.6167 8 : 10.9484 5.2626 30.8793 -Arial.ttf 65 ( 14.4103 53.6167 9 r 9.8586 16.5689 32.0709 -Arial.ttf 65 ( 14.4103 53.6167 10 l 0.0223 5.2626 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 11 i -0.1050 5.2626 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 12 1 0.2691 15.2355 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 13 | -0.0801 4.1916 54.4980 -Arial.ttf 65 ( 14.4103 53.6167 14 N -0.1310 32.9083 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 15 f -0.0854 18.0709 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 16 g 10.1082 26.3123 43.6877 -Arial.ttf 65 ( 14.4103 53.6167 17 d 0.0716 26.3123 42.3103 -Arial.ttf 65 ( 14.4103 53.6167 18 W 0.1851 57.1916 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 19 s 10.0462 24.9561 32.3813 -Arial.ttf 65 ( 14.4103 53.6167 20 c 9.9952 26.8084 32.3813 -Arial.ttf 65 ( 14.4103 53.6167 21 u 11.1609 24.2793 31.1896 -Arial.ttf 65 ( 14.4103 53.6167 22 3 0.2786 26.8483 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 23 ~ 16.8417 29.9083 10.9561 -Arial.ttf 65 ( 14.4103 53.6167 24 # 0.2222 31.2646 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 25 O -0.7008 39.5749 43.3212 -Arial.ttf 65 ( 14.4103 53.6167 26 ` -0.0649 10.9561 8.0769 -Arial.ttf 65 ( 14.4103 53.6167 27 @ 0.0000 54.1478 54.3123 -Arial.ttf 65 ( 14.4103 53.6167 28 F 0.0690 28.2207 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 29 S -0.5788 33.0001 43.3212 -Arial.ttf 65 ( 14.4103 53.6167 30 p 10.1084 26.3123 43.6877 -Arial.ttf 65 ( 14.4103 53.6167 31 “ 0.2996 13.5690 14.0000 -Arial.ttf 65 ( 14.4103 53.6167 32 % 0.0128 44.8793 42.3103 -Arial.ttf 65 ( 14.4103 53.6167 33 £ -0.2402 29.8522 42.3103 -Arial.ttf 65 ( 14.4103 53.6167 34 . 36.9237 5.2626 5.2626 -Arial.ttf 65 ( 14.4103 53.6167 35 2 0.2981 28.6956 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 36 5 0.0770 26.8483 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 37 m 9.8421 41.4044 32.0709 -Arial.ttf 65 ( 14.4103 53.6167 38 V -0.1517 40.5788 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 39 6 0.1671 27.8542 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 40 w 11.3508 43.4212 30.8793 -Arial.ttf 65 ( 14.4103 53.6167 41 T -0.0716 33.6936 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 42 M 0.0506 40.5788 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 43 G -0.7133 38.6897 43.3212 -Arial.ttf 65 ( 14.4103 53.6167 44 b -0.0111 26.3123 42.3103 -Arial.ttf 65 ( 14.4103 53.6167 45 9 0.6471 26.8483 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 46 ; 11.1422 5.2626 39.6167 -Arial.ttf 65 ( 14.4103 53.6167 47 D -0.0545 34.4542 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 48 L 0.0115 25.8813 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 49 y 10.9575 28.0000 42.4960 -Arial.ttf 65 ( 14.4103 53.6167 50 ‘ 0.0443 5.9231 14.0000 -Arial.ttf 65 ( 14.4103 53.6167 51 \ 0.0966 17.5749 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 52 R -0.0801 36.7497 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 53 < 7.8519 27.8354 27.8704 -Arial.ttf 65 ( 14.4103 53.6167 54 4 0.2441 28.3503 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 55 8 0.4084 26.6626 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 56 0 0.3103 26.8483 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 57 A 0.0774 40.5788 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 58 E 0.1739 31.4542 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 59 B 0.0371 31.4542 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 60 v 11.1038 27.8704 30.8793 -Arial.ttf 65 ( 14.4103 53.6167 61 k -0.1009 25.1207 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 62 J 0.1500 24.0291 42.6606 -Arial.ttf 65 ( 14.4103 53.6167 63 U 0.1739 32.9083 42.6606 -Arial.ttf 65 ( 14.4103 53.6167 64 j 0.1203 12.3773 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 65 ( 0.1557 14.4103 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 66 7 0.2000 26.8523 41.6897 -Arial.ttf 65 ( 14.4103 53.6167 67 § -0.0010 26.9729 53.9271 -Arial.ttf 65 ( 14.4103 53.6167 68 $ -2.2242 27.6897 49.3355 -Arial.ttf 65 ( 14.4103 53.6167 69 € -0.7491 33.0769 43.3212 -Arial.ttf 65 ( 14.4103 53.6167 70 / -0.0456 17.5749 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 71 C -0.1512 36.0000 43.3212 -Arial.ttf 65 ( 14.4103 53.6167 72 * -0.0969 20.3453 17.8852 -Arial.ttf 65 ( 14.4103 53.6167 73 ” 0.0991 14.2296 14.0000 -Arial.ttf 65 ( 14.4103 53.6167 74 ? 0.1858 26.8483 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 75 { 0.1172 16.7375 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 76 } -0.1202 16.7375 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 77 , 36.5003 5.2626 14.0000 -Arial.ttf 65 ( 14.4103 53.6167 78 I -0.0912 5.6936 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 79 ° -0.2333 15.8083 15.8083 -Arial.ttf 65 ( 14.4103 53.6167 80 K -0.1975 34.5749 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 81 H 0.0594 32.9083 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 82 q 10.1317 26.3123 43.6877 -Arial.ttf 65 ( 14.4103 53.6167 83 & 0.0976 35.1148 42.3103 -Arial.ttf 65 ( 14.4103 53.6167 84 ’ -0.2897 5.9231 14.0000 -Arial.ttf 65 ( 14.4103 53.6167 85 [ 0.1900 11.0000 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 86 - 24.3662 15.4980 5.2626 -Arial.ttf 65 ( 14.4103 53.6167 87 Y -0.1473 38.4601 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 88 Q -0.3765 39.5749 46.3212 -Arial.ttf 65 ( 14.4103 53.6167 89 " -0.0142 15.8083 15.1916 -Arial.ttf 65 ( 14.4103 53.6167 90 ! -0.1453 5.2626 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 91 x 11.4383 29.1060 30.8793 -Arial.ttf 65 ( 14.4103 53.6167 92 ) 0.1544 14.4103 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 93 = 12.3048 27.8793 17.8852 -Arial.ttf 65 ( 14.4103 53.6167 94 + 7.5167 27.8753 27.8753 -Arial.ttf 65 ( 14.4103 53.6167 95 X 0.0992 37.6626 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 96 » 13.6443 25.0439 26.1917 -Arial.ttf 65 ( 14.4103 53.6167 97 ' 0.1544 5.2626 15.1916 -Arial.ttf 65 ( 14.4103 53.6167 98 ¢ -0.1282 25.7813 54.2685 -Arial.ttf 65 ( 14.4103 53.6167 99 Z 0.0885 33.0729 42.0000 -Arial.ttf 65 ( 14.4103 53.6167 100 > 7.3071 27.8354 27.8704 -Arial.ttf 65 ( 14.4103 53.6167 101 ® -0.8345 43.1916 42.9709 -Arial.ttf 65 ( 14.4103 53.6167 102 © -0.7794 43.1916 42.9709 -Arial.ttf 65 ( 14.4103 53.6167 103 ] -0.0345 11.0000 53.6167 -Arial.ttf 65 ( 14.4103 53.6167 104 é -1.1158 27.4690 43.5020 -Arial.ttf 65 ( 14.4103 53.6167 105 z 11.1207 26.3123 30.8793 -Arial.ttf 65 ( 14.4103 53.6167 106 _ 48.2619 33.3832 5.2626 -Arial.ttf 65 ( 14.4103 53.6167 107 ¥ 0.2169 32.0291 42.0000 -Arial.ttf 66 7 26.8523 41.6897 1 t -0.2759 15.0709 42.3103 -Arial.ttf 66 7 26.8523 41.6897 2 h -0.5782 24.2793 42.0000 -Arial.ttf 66 7 26.8523 41.6897 3 a 9.4049 27.4690 32.3813 -Arial.ttf 66 7 26.8523 41.6897 4 n 9.5455 24.2793 32.0709 -Arial.ttf 66 7 26.8523 41.6897 5 P -0.4302 31.4542 42.0000 -Arial.ttf 66 7 26.8523 41.6897 6 o 9.8329 27.4690 32.3813 -Arial.ttf 66 7 26.8523 41.6897 7 e 9.6984 27.4690 32.3813 -Arial.ttf 66 7 26.8523 41.6897 8 : 11.0724 5.2626 30.8793 -Arial.ttf 66 7 26.8523 41.6897 9 r 9.3416 16.5689 32.0709 -Arial.ttf 66 7 26.8523 41.6897 10 l -0.3724 5.2626 42.0000 -Arial.ttf 66 7 26.8523 41.6897 11 i -0.2844 5.2626 42.0000 -Arial.ttf 66 7 26.8523 41.6897 12 1 0.1061 15.2355 41.6897 -Arial.ttf 66 7 26.8523 41.6897 13 | -0.1891 4.1916 54.4980 -Arial.ttf 66 7 26.8523 41.6897 14 N -0.3077 32.9083 42.0000 -Arial.ttf 66 7 26.8523 41.6897 15 f -0.0647 18.0709 42.0000 -Arial.ttf 66 7 26.8523 41.6897 16 g 9.6653 26.3123 43.6877 -Arial.ttf 66 7 26.8523 41.6897 17 d -0.4269 26.3123 42.3103 -Arial.ttf 66 7 26.8523 41.6897 18 W 0.0233 57.1916 42.0000 -Arial.ttf 66 7 26.8523 41.6897 19 s 9.6914 24.9561 32.3813 -Arial.ttf 66 7 26.8523 41.6897 20 c 9.6484 26.8084 32.3813 -Arial.ttf 66 7 26.8523 41.6897 21 u 10.6936 24.2793 31.1896 -Arial.ttf 66 7 26.8523 41.6897 22 3 0.3048 26.8483 41.6897 -Arial.ttf 66 7 26.8523 41.6897 23 ~ 16.6919 29.9083 10.9561 -Arial.ttf 66 7 26.8523 41.6897 24 # -0.5209 31.2646 42.0000 -Arial.ttf 66 7 26.8523 41.6897 25 O -0.9687 39.5749 43.3212 -Arial.ttf 66 7 26.8523 41.6897 26 ` -0.4261 10.9561 8.0769 -Arial.ttf 66 7 26.8523 41.6897 27 @ -0.3438 54.1478 54.3123 -Arial.ttf 66 7 26.8523 41.6897 28 F -0.3878 28.2207 42.0000 -Arial.ttf 66 7 26.8523 41.6897 29 S -0.9006 33.0001 43.3212 -Arial.ttf 66 7 26.8523 41.6897 30 p 9.4475 26.3123 43.6877 -Arial.ttf 66 7 26.8523 41.6897 31 “ -0.3596 13.5690 14.0000 -Arial.ttf 66 7 26.8523 41.6897 32 % -0.6567 44.8793 42.3103 -Arial.ttf 66 7 26.8523 41.6897 33 £ -0.5363 29.8522 42.3103 -Arial.ttf 66 7 26.8523 41.6897 34 . 36.3930 5.2626 5.2626 -Arial.ttf 66 7 26.8523 41.6897 35 2 0.0138 28.6956 41.6897 -Arial.ttf 66 7 26.8523 41.6897 36 5 -0.2206 26.8483 41.6897 -Arial.ttf 66 7 26.8523 41.6897 37 m 9.5040 41.4044 32.0709 -Arial.ttf 66 7 26.8523 41.6897 38 V -0.1640 40.5788 42.0000 -Arial.ttf 66 7 26.8523 41.6897 39 6 -0.0346 27.8542 41.6897 -Arial.ttf 66 7 26.8523 41.6897 40 w 10.8862 43.4212 30.8793 -Arial.ttf 66 7 26.8523 41.6897 41 T -0.1753 33.6936 42.0000 -Arial.ttf 66 7 26.8523 41.6897 42 M -0.3560 40.5788 42.0000 -Arial.ttf 66 7 26.8523 41.6897 43 G -0.9571 38.6897 43.3212 -Arial.ttf 66 7 26.8523 41.6897 44 b -0.2546 26.3123 42.3103 -Arial.ttf 66 7 26.8523 41.6897 45 9 -0.1363 26.8483 41.6897 -Arial.ttf 66 7 26.8523 41.6897 46 ; 10.8215 5.2626 39.6167 -Arial.ttf 66 7 26.8523 41.6897 47 D -0.2854 34.4542 42.0000 -Arial.ttf 66 7 26.8523 41.6897 48 L -0.3353 25.8813 42.0000 -Arial.ttf 66 7 26.8523 41.6897 49 y 10.7138 28.0000 42.4960 -Arial.ttf 66 7 26.8523 41.6897 50 ‘ -0.3900 5.9231 14.0000 -Arial.ttf 66 7 26.8523 41.6897 51 \ -0.2073 17.5749 42.0000 -Arial.ttf 66 7 26.8523 41.6897 52 R -0.7973 36.7497 42.0000 -Arial.ttf 66 7 26.8523 41.6897 53 < 7.1358 27.8354 27.8704 -Arial.ttf 66 7 26.8523 41.6897 54 4 -0.0429 28.3503 41.6897 -Arial.ttf 66 7 26.8523 41.6897 55 8 -0.1797 26.6626 41.6897 -Arial.ttf 66 7 26.8523 41.6897 56 0 0.0115 26.8483 41.6897 -Arial.ttf 66 7 26.8523 41.6897 57 A -0.2286 40.5788 42.0000 -Arial.ttf 66 7 26.8523 41.6897 58 E -0.2907 31.4542 42.0000 -Arial.ttf 66 7 26.8523 41.6897 59 B -0.3545 31.4542 42.0000 -Arial.ttf 66 7 26.8523 41.6897 60 v 10.7017 27.8704 30.8793 -Arial.ttf 66 7 26.8523 41.6897 61 k -0.5022 25.1207 42.0000 -Arial.ttf 66 7 26.8523 41.6897 62 J -0.1458 24.0291 42.6606 -Arial.ttf 66 7 26.8523 41.6897 63 U -0.2924 32.9083 42.6606 -Arial.ttf 66 7 26.8523 41.6897 64 j -0.1749 12.3773 53.6167 -Arial.ttf 66 7 26.8523 41.6897 65 ( -0.5113 14.4103 53.6167 -Arial.ttf 66 7 26.8523 41.6897 66 7 -0.0960 26.8523 41.6897 -Arial.ttf 66 7 26.8523 41.6897 67 § -0.3545 26.9729 53.9271 -Arial.ttf 66 7 26.8523 41.6897 68 $ -2.3586 27.6897 49.3355 -Arial.ttf 66 7 26.8523 41.6897 69 € -1.1449 33.0769 43.3212 -Arial.ttf 66 7 26.8523 41.6897 70 / -0.3724 17.5749 42.0000 -Arial.ttf 66 7 26.8523 41.6897 71 C -1.1974 36.0000 43.3212 -Arial.ttf 66 7 26.8523 41.6897 72 * -0.5236 20.3453 17.8852 -Arial.ttf 66 7 26.8523 41.6897 73 ” -0.4276 14.2296 14.0000 -Arial.ttf 66 7 26.8523 41.6897 74 ? -0.1794 26.8483 42.0000 -Arial.ttf 66 7 26.8523 41.6897 75 { -0.4722 16.7375 53.6167 -Arial.ttf 66 7 26.8523 41.6897 76 } -0.1874 16.7375 53.6167 -Arial.ttf 66 7 26.8523 41.6897 77 , 36.4774 5.2626 14.0000 -Arial.ttf 66 7 26.8523 41.6897 78 I -0.1640 5.6936 42.0000 -Arial.ttf 66 7 26.8523 41.6897 79 ° -0.4674 15.8083 15.8083 -Arial.ttf 66 7 26.8523 41.6897 80 K -0.1243 34.5749 42.0000 -Arial.ttf 66 7 26.8523 41.6897 81 H -0.3103 32.9083 42.0000 -Arial.ttf 66 7 26.8523 41.6897 82 q 9.7206 26.3123 43.6877 -Arial.ttf 66 7 26.8523 41.6897 83 & -0.3312 35.1148 42.3103 -Arial.ttf 66 7 26.8523 41.6897 84 ’ -0.3241 5.9231 14.0000 -Arial.ttf 66 7 26.8523 41.6897 85 [ -0.3862 11.0000 53.6167 -Arial.ttf 66 7 26.8523 41.6897 86 - 24.0697 15.4980 5.2626 -Arial.ttf 66 7 26.8523 41.6897 87 Y -0.1708 38.4601 42.0000 -Arial.ttf 66 7 26.8523 41.6897 88 Q -1.2153 39.5749 46.3212 -Arial.ttf 66 7 26.8523 41.6897 89 " -0.4346 15.8083 15.1916 -Arial.ttf 66 7 26.8523 41.6897 90 ! -0.3188 5.2626 42.0000 -Arial.ttf 66 7 26.8523 41.6897 91 x 10.9630 29.1060 30.8793 -Arial.ttf 66 7 26.8523 41.6897 92 ) -0.3932 14.4103 53.6167 -Arial.ttf 66 7 26.8523 41.6897 93 = 11.8482 27.8793 17.8852 -Arial.ttf 66 7 26.8523 41.6897 94 + 7.3027 27.8753 27.8753 -Arial.ttf 66 7 26.8523 41.6897 95 X -0.4248 37.6626 42.0000 -Arial.ttf 66 7 26.8523 41.6897 96 » 13.8764 25.0439 26.1917 -Arial.ttf 66 7 26.8523 41.6897 97 ' -0.1589 5.2626 15.1916 -Arial.ttf 66 7 26.8523 41.6897 98 ¢ -0.4337 25.7813 54.2685 -Arial.ttf 66 7 26.8523 41.6897 99 Z -0.5447 33.0729 42.0000 -Arial.ttf 66 7 26.8523 41.6897 100 > 7.0328 27.8354 27.8704 -Arial.ttf 66 7 26.8523 41.6897 101 ® -0.7932 43.1916 42.9709 -Arial.ttf 66 7 26.8523 41.6897 102 © -1.1337 43.1916 42.9709 -Arial.ttf 66 7 26.8523 41.6897 103 ] -0.5528 11.0000 53.6167 -Arial.ttf 66 7 26.8523 41.6897 104 é -1.4405 27.4690 43.5020 -Arial.ttf 66 7 26.8523 41.6897 105 z 10.5803 26.3123 30.8793 -Arial.ttf 66 7 26.8523 41.6897 106 _ 47.5628 33.3832 5.2626 -Arial.ttf 66 7 26.8523 41.6897 107 ¥ -0.3161 32.0291 42.0000 -Arial.ttf 67 § 26.9729 53.9271 1 t 0.1199 15.0709 42.3103 -Arial.ttf 67 § 26.9729 53.9271 2 h 0.1327 24.2793 42.0000 -Arial.ttf 67 § 26.9729 53.9271 3 a 10.0053 27.4690 32.3813 -Arial.ttf 67 § 26.9729 53.9271 4 n 10.1439 24.2793 32.0709 -Arial.ttf 67 § 26.9729 53.9271 5 P 0.0138 31.4542 42.0000 -Arial.ttf 67 § 26.9729 53.9271 6 o 10.1247 27.4690 32.3813 -Arial.ttf 67 § 26.9729 53.9271 7 e 9.7733 27.4690 32.3813 -Arial.ttf 67 § 26.9729 53.9271 8 : 10.9426 5.2626 30.8793 -Arial.ttf 67 § 26.9729 53.9271 9 r 9.9955 16.5689 32.0709 -Arial.ttf 67 § 26.9729 53.9271 10 l 0.2226 5.2626 42.0000 -Arial.ttf 67 § 26.9729 53.9271 11 i -0.0567 5.2626 42.0000 -Arial.ttf 67 § 26.9729 53.9271 12 1 0.6675 15.2355 41.6897 -Arial.ttf 67 § 26.9729 53.9271 13 | -0.0828 4.1916 54.4980 -Arial.ttf 67 § 26.9729 53.9271 14 N 0.0540 32.9083 42.0000 -Arial.ttf 67 § 26.9729 53.9271 15 f 0.2850 18.0709 42.0000 -Arial.ttf 67 § 26.9729 53.9271 16 g 9.9916 26.3123 43.6877 -Arial.ttf 67 § 26.9729 53.9271 17 d -0.2045 26.3123 42.3103 -Arial.ttf 67 § 26.9729 53.9271 18 W 0.0399 57.1916 42.0000 -Arial.ttf 67 § 26.9729 53.9271 19 s 9.8601 24.9561 32.3813 -Arial.ttf 67 § 26.9729 53.9271 20 c 9.8659 26.8084 32.3813 -Arial.ttf 67 § 26.9729 53.9271 21 u 11.1314 24.2793 31.1896 -Arial.ttf 67 § 26.9729 53.9271 22 3 0.5460 26.8483 41.6897 -Arial.ttf 67 § 26.9729 53.9271 23 ~ 16.6655 29.9083 10.9561 -Arial.ttf 67 § 26.9729 53.9271 24 # 0.1168 31.2646 42.0000 -Arial.ttf 67 § 26.9729 53.9271 25 O -0.7225 39.5749 43.3212 -Arial.ttf 67 § 26.9729 53.9271 26 ` 0.2400 10.9561 8.0769 -Arial.ttf 67 § 26.9729 53.9271 27 @ 0.1287 54.1478 54.3123 -Arial.ttf 67 § 26.9729 53.9271 28 F -0.0264 28.2207 42.0000 -Arial.ttf 67 § 26.9729 53.9271 29 S -0.6251 33.0001 43.3212 -Arial.ttf 67 § 26.9729 53.9271 30 p 10.0755 26.3123 43.6877 -Arial.ttf 67 § 26.9729 53.9271 31 “ -0.3117 13.5690 14.0000 -Arial.ttf 67 § 26.9729 53.9271 32 % 0.0331 44.8793 42.3103 -Arial.ttf 67 § 26.9729 53.9271 33 £ 0.0011 29.8522 42.3103 -Arial.ttf 67 § 26.9729 53.9271 34 . 36.3869 5.2626 5.2626 -Arial.ttf 67 § 26.9729 53.9271 35 2 -0.1517 28.6956 41.6897 -Arial.ttf 67 § 26.9729 53.9271 36 5 0.0381 26.8483 41.6897 -Arial.ttf 67 § 26.9729 53.9271 37 m 9.5604 41.4044 32.0709 -Arial.ttf 67 § 26.9729 53.9271 38 V -0.1766 40.5788 42.0000 -Arial.ttf 67 § 26.9729 53.9271 39 6 0.3077 27.8542 41.6897 -Arial.ttf 67 § 26.9729 53.9271 40 w 11.0349 43.4212 30.8793 -Arial.ttf 67 § 26.9729 53.9271 41 T 0.1341 33.6936 42.0000 -Arial.ttf 67 § 26.9729 53.9271 42 M 0.1544 40.5788 42.0000 -Arial.ttf 67 § 26.9729 53.9271 43 G -0.7698 38.6897 43.3212 -Arial.ttf 67 § 26.9729 53.9271 44 b 0.0399 26.3123 42.3103 -Arial.ttf 67 § 26.9729 53.9271 45 9 0.3144 26.8483 41.6897 -Arial.ttf 67 § 26.9729 53.9271 46 ; 11.1496 5.2626 39.6167 -Arial.ttf 67 § 26.9729 53.9271 47 D -0.2411 34.4542 42.0000 -Arial.ttf 67 § 26.9729 53.9271 48 L 0.0425 25.8813 42.0000 -Arial.ttf 67 § 26.9729 53.9271 49 y 11.1690 28.0000 42.4960 -Arial.ttf 67 § 26.9729 53.9271 50 ‘ 0.1506 5.9231 14.0000 -Arial.ttf 67 § 26.9729 53.9271 51 \ -0.0854 17.5749 42.0000 -Arial.ttf 67 § 26.9729 53.9271 52 R -0.1188 36.7497 42.0000 -Arial.ttf 67 § 26.9729 53.9271 53 < 7.2229 27.8354 27.8704 -Arial.ttf 67 § 26.9729 53.9271 54 4 0.2690 28.3503 41.6897 -Arial.ttf 67 § 26.9729 53.9271 55 8 0.5559 26.6626 41.6897 -Arial.ttf 67 § 26.9729 53.9271 56 0 0.4248 26.8483 41.6897 -Arial.ttf 67 § 26.9729 53.9271 57 A 0.0000 40.5788 42.0000 -Arial.ttf 67 § 26.9729 53.9271 58 E -0.0981 31.4542 42.0000 -Arial.ttf 67 § 26.9729 53.9271 59 B 0.2226 31.4542 42.0000 -Arial.ttf 67 § 26.9729 53.9271 60 v 11.0946 27.8704 30.8793 -Arial.ttf 67 § 26.9729 53.9271 61 k 0.0115 25.1207 42.0000 -Arial.ttf 67 § 26.9729 53.9271 62 J -0.0992 24.0291 42.6606 -Arial.ttf 67 § 26.9729 53.9271 63 U -0.0565 32.9083 42.6606 -Arial.ttf 67 § 26.9729 53.9271 64 j -0.2279 12.3773 53.6167 -Arial.ttf 67 § 26.9729 53.9271 65 ( -0.0394 14.4103 53.6167 -Arial.ttf 67 § 26.9729 53.9271 66 7 -0.0514 26.8523 41.6897 -Arial.ttf 67 § 26.9729 53.9271 67 § -0.0361 26.9729 53.9271 -Arial.ttf 67 § 26.9729 53.9271 68 $ -1.9128 27.6897 49.3355 -Arial.ttf 67 § 26.9729 53.9271 69 € -0.6411 33.0769 43.3212 -Arial.ttf 67 § 26.9729 53.9271 70 / 0.0000 17.5749 42.0000 -Arial.ttf 67 § 26.9729 53.9271 71 C -0.7905 36.0000 43.3212 -Arial.ttf 67 § 26.9729 53.9271 72 * 0.4253 20.3453 17.8852 -Arial.ttf 67 § 26.9729 53.9271 73 ” 0.0000 14.2296 14.0000 -Arial.ttf 67 § 26.9729 53.9271 74 ? -0.1203 26.8483 42.0000 -Arial.ttf 67 § 26.9729 53.9271 75 { -0.1751 16.7375 53.6167 -Arial.ttf 67 § 26.9729 53.9271 76 } 0.1871 16.7375 53.6167 -Arial.ttf 67 § 26.9729 53.9271 77 , 36.7853 5.2626 14.0000 -Arial.ttf 67 § 26.9729 53.9271 78 I 0.1040 5.6936 42.0000 -Arial.ttf 67 § 26.9729 53.9271 79 ° -0.1697 15.8083 15.8083 -Arial.ttf 67 § 26.9729 53.9271 80 K 0.0440 34.5749 42.0000 -Arial.ttf 67 § 26.9729 53.9271 81 H -0.0116 32.9083 42.0000 -Arial.ttf 67 § 26.9729 53.9271 82 q 10.1635 26.3123 43.6877 -Arial.ttf 67 § 26.9729 53.9271 83 & -0.1453 35.1148 42.3103 -Arial.ttf 67 § 26.9729 53.9271 84 ’ -0.3260 5.9231 14.0000 -Arial.ttf 67 § 26.9729 53.9271 85 [ -0.0499 11.0000 53.6167 -Arial.ttf 67 § 26.9729 53.9271 86 - 24.2087 15.4980 5.2626 -Arial.ttf 67 § 26.9729 53.9271 87 Y 0.0800 38.4601 42.0000 -Arial.ttf 67 § 26.9729 53.9271 88 Q -0.6813 39.5749 46.3212 -Arial.ttf 67 § 26.9729 53.9271 89 " -0.0891 15.8083 15.1916 -Arial.ttf 67 § 26.9729 53.9271 90 ! -0.1824 5.2626 42.0000 -Arial.ttf 67 § 26.9729 53.9271 91 x 11.1016 29.1060 30.8793 -Arial.ttf 67 § 26.9729 53.9271 92 ) -0.2774 14.4103 53.6167 -Arial.ttf 67 § 26.9729 53.9271 93 = 12.0900 27.8793 17.8852 -Arial.ttf 67 § 26.9729 53.9271 94 + 7.4515 27.8753 27.8753 -Arial.ttf 67 § 26.9729 53.9271 95 X -0.0540 37.6626 42.0000 -Arial.ttf 67 § 26.9729 53.9271 96 » 13.8157 25.0439 26.1917 -Arial.ttf 67 § 26.9729 53.9271 97 ' 0.4232 5.2626 15.1916 -Arial.ttf 67 § 26.9729 53.9271 98 ¢ -0.2034 25.7813 54.2685 -Arial.ttf 67 § 26.9729 53.9271 99 Z -0.0364 33.0729 42.0000 -Arial.ttf 67 § 26.9729 53.9271 100 > 7.8700 27.8354 27.8704 -Arial.ttf 67 § 26.9729 53.9271 101 ® -0.8892 43.1916 42.9709 -Arial.ttf 67 § 26.9729 53.9271 102 © -0.6892 43.1916 42.9709 -Arial.ttf 67 § 26.9729 53.9271 103 ] 0.2700 11.0000 53.6167 -Arial.ttf 67 § 26.9729 53.9271 104 é -0.9166 27.4690 43.5020 -Arial.ttf 67 § 26.9729 53.9271 105 z 11.1759 26.3123 30.8793 -Arial.ttf 67 § 26.9729 53.9271 106 _ 48.4204 33.3832 5.2626 -Arial.ttf 67 § 26.9729 53.9271 107 ¥ -0.0238 32.0291 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 1 t 1.8290 15.0709 42.3103 -Arial.ttf 68 $ 27.6897 49.3355 2 h 2.0236 24.2793 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 3 a 12.1479 27.4690 32.3813 -Arial.ttf 68 $ 27.6897 49.3355 4 n 12.0612 24.2793 32.0709 -Arial.ttf 68 $ 27.6897 49.3355 5 P 2.1419 31.4542 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 6 o 12.1962 27.4690 32.3813 -Arial.ttf 68 $ 27.6897 49.3355 7 e 12.0763 27.4690 32.3813 -Arial.ttf 68 $ 27.6897 49.3355 8 : 13.2494 5.2626 30.8793 -Arial.ttf 68 $ 27.6897 49.3355 9 r 12.0114 16.5689 32.0709 -Arial.ttf 68 $ 27.6897 49.3355 10 l 1.8635 5.2626 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 11 i 1.9946 5.2626 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 12 1 2.4302 15.2355 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 13 | 2.0478 4.1916 54.4980 -Arial.ttf 68 $ 27.6897 49.3355 14 N 2.0317 32.9083 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 15 f 1.9195 18.0709 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 16 g 11.8884 26.3123 43.6877 -Arial.ttf 68 $ 27.6897 49.3355 17 d 1.9695 26.3123 42.3103 -Arial.ttf 68 $ 27.6897 49.3355 18 W 2.1091 57.1916 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 19 s 12.1026 24.9561 32.3813 -Arial.ttf 68 $ 27.6897 49.3355 20 c 11.9145 26.8084 32.3813 -Arial.ttf 68 $ 27.6897 49.3355 21 u 13.0379 24.2793 31.1896 -Arial.ttf 68 $ 27.6897 49.3355 22 3 2.4315 26.8483 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 23 ~ 18.9718 29.9083 10.9561 -Arial.ttf 68 $ 27.6897 49.3355 24 # 2.1419 31.2646 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 25 O 1.4739 39.5749 43.3212 -Arial.ttf 68 $ 27.6897 49.3355 26 ` 2.0576 10.9561 8.0769 -Arial.ttf 68 $ 27.6897 49.3355 27 @ 2.4825 54.1478 54.3123 -Arial.ttf 68 $ 27.6897 49.3355 28 F 2.3252 28.2207 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 29 S 1.7238 33.0001 43.3212 -Arial.ttf 68 $ 27.6897 49.3355 30 p 12.1812 26.3123 43.6877 -Arial.ttf 68 $ 27.6897 49.3355 31 “ 2.1074 13.5690 14.0000 -Arial.ttf 68 $ 27.6897 49.3355 32 % 2.1398 44.8793 42.3103 -Arial.ttf 68 $ 27.6897 49.3355 33 £ 2.1641 29.8522 42.3103 -Arial.ttf 68 $ 27.6897 49.3355 34 . 38.7839 5.2626 5.2626 -Arial.ttf 68 $ 27.6897 49.3355 35 2 2.4549 28.6956 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 36 5 2.3699 26.8483 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 37 m 12.0253 41.4044 32.0709 -Arial.ttf 68 $ 27.6897 49.3355 38 V 2.1185 40.5788 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 39 6 2.3877 27.8542 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 40 w 12.8957 43.4212 30.8793 -Arial.ttf 68 $ 27.6897 49.3355 41 T 2.1461 33.6936 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 42 M 2.1641 40.5788 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 43 G 1.6383 38.6897 43.3212 -Arial.ttf 68 $ 27.6897 49.3355 44 b 2.1070 26.3123 42.3103 -Arial.ttf 68 $ 27.6897 49.3355 45 9 2.4687 26.8483 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 46 ; 13.2668 5.2626 39.6167 -Arial.ttf 68 $ 27.6897 49.3355 47 D 2.1228 34.4542 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 48 L 2.0713 25.8813 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 49 y 13.2419 28.0000 42.4960 -Arial.ttf 68 $ 27.6897 49.3355 50 ‘ 1.7415 5.9231 14.0000 -Arial.ttf 68 $ 27.6897 49.3355 51 \ 2.0989 17.5749 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 52 R 2.2172 36.7497 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 53 < 9.8045 27.8354 27.8704 -Arial.ttf 68 $ 27.6897 49.3355 54 4 2.4465 28.3503 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 55 8 2.4731 26.6626 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 56 0 1.8868 26.8483 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 57 A 1.9865 40.5788 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 58 E 2.1668 31.4542 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 59 B 2.3043 31.4542 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 60 v 13.3851 27.8704 30.8793 -Arial.ttf 68 $ 27.6897 49.3355 61 k 2.1223 25.1207 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 62 J 2.1391 24.0291 42.6606 -Arial.ttf 68 $ 27.6897 49.3355 63 U 1.9366 32.9083 42.6606 -Arial.ttf 68 $ 27.6897 49.3355 64 j 1.7850 12.3773 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 65 ( 2.1238 14.4103 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 66 7 2.6552 26.8523 41.6897 -Arial.ttf 68 $ 27.6897 49.3355 67 § 2.0215 26.9729 53.9271 -Arial.ttf 68 $ 27.6897 49.3355 68 $ 0.1462 27.6897 49.3355 -Arial.ttf 68 $ 27.6897 49.3355 69 € 1.4442 33.0769 43.3212 -Arial.ttf 68 $ 27.6897 49.3355 70 / 2.0665 17.5749 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 71 C 1.1694 36.0000 43.3212 -Arial.ttf 68 $ 27.6897 49.3355 72 * 2.0179 20.3453 17.8852 -Arial.ttf 68 $ 27.6897 49.3355 73 ” 2.0649 14.2296 14.0000 -Arial.ttf 68 $ 27.6897 49.3355 74 ? 2.0825 26.8483 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 75 { 2.1972 16.7375 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 76 } 1.9203 16.7375 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 77 , 38.7138 5.2626 14.0000 -Arial.ttf 68 $ 27.6897 49.3355 78 I 2.0067 5.6936 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 79 ° 1.8799 15.8083 15.8083 -Arial.ttf 68 $ 27.6897 49.3355 80 K 1.8274 34.5749 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 81 H 2.0384 32.9083 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 82 q 11.7057 26.3123 43.6877 -Arial.ttf 68 $ 27.6897 49.3355 83 & 2.0220 35.1148 42.3103 -Arial.ttf 68 $ 27.6897 49.3355 84 ’ 2.2358 5.9231 14.0000 -Arial.ttf 68 $ 27.6897 49.3355 85 [ 1.8645 11.0000 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 86 - 26.3393 15.4980 5.2626 -Arial.ttf 68 $ 27.6897 49.3355 87 Y 2.0384 38.4601 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 88 Q 1.4054 39.5749 46.3212 -Arial.ttf 68 $ 27.6897 49.3355 89 " 1.8884 15.8083 15.1916 -Arial.ttf 68 $ 27.6897 49.3355 90 ! 1.9144 5.2626 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 91 x 13.0076 29.1060 30.8793 -Arial.ttf 68 $ 27.6897 49.3355 92 ) 2.2468 14.4103 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 93 = 14.0223 27.8793 17.8852 -Arial.ttf 68 $ 27.6897 49.3355 94 + 9.7785 27.8753 27.8753 -Arial.ttf 68 $ 27.6897 49.3355 95 X 2.0070 37.6626 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 96 » 15.8997 25.0439 26.1917 -Arial.ttf 68 $ 27.6897 49.3355 97 ' 2.1972 5.2626 15.1916 -Arial.ttf 68 $ 27.6897 49.3355 98 ¢ 1.5300 25.7813 54.2685 -Arial.ttf 68 $ 27.6897 49.3355 99 Z 1.9488 33.0729 42.0000 -Arial.ttf 68 $ 27.6897 49.3355 100 > 9.7099 27.8354 27.8704 -Arial.ttf 68 $ 27.6897 49.3355 101 ® 1.1100 43.1916 42.9709 -Arial.ttf 68 $ 27.6897 49.3355 102 © 1.1722 43.1916 42.9709 -Arial.ttf 68 $ 27.6897 49.3355 103 ] 2.4998 11.0000 53.6167 -Arial.ttf 68 $ 27.6897 49.3355 104 é 0.7556 27.4690 43.5020 -Arial.ttf 68 $ 27.6897 49.3355 105 z 12.9497 26.3123 30.8793 -Arial.ttf 68 $ 27.6897 49.3355 106 _ 50.3386 33.3832 5.2626 -Arial.ttf 68 $ 27.6897 49.3355 107 ¥ 2.1959 32.0291 42.0000 -Arial.ttf 69 € 33.0769 43.3212 1 t 0.7286 15.0709 42.3103 -Arial.ttf 69 € 33.0769 43.3212 2 h 0.6686 24.2793 42.0000 -Arial.ttf 69 € 33.0769 43.3212 3 a 10.3721 27.4690 32.3813 -Arial.ttf 69 € 33.0769 43.3212 4 n 10.5250 24.2793 32.0709 -Arial.ttf 69 € 33.0769 43.3212 5 P 0.3062 31.4542 42.0000 -Arial.ttf 69 € 33.0769 43.3212 6 o 10.6644 27.4690 32.3813 -Arial.ttf 69 € 33.0769 43.3212 7 e 10.6268 27.4690 32.3813 -Arial.ttf 69 € 33.0769 43.3212 8 : 11.6057 5.2626 30.8793 -Arial.ttf 69 € 33.0769 43.3212 9 r 10.4033 16.5689 32.0709 -Arial.ttf 69 € 33.0769 43.3212 10 l 1.0841 5.2626 42.0000 -Arial.ttf 69 € 33.0769 43.3212 11 i 0.5518 5.2626 42.0000 -Arial.ttf 69 € 33.0769 43.3212 12 1 0.8069 15.2355 41.6897 -Arial.ttf 69 € 33.0769 43.3212 13 | 0.5127 4.1916 54.4980 -Arial.ttf 69 € 33.0769 43.3212 14 N 0.5406 32.9083 42.0000 -Arial.ttf 69 € 33.0769 43.3212 15 f 0.6442 18.0709 42.0000 -Arial.ttf 69 € 33.0769 43.3212 16 g 10.5441 26.3123 43.6877 -Arial.ttf 69 € 33.0769 43.3212 17 d 0.7614 26.3123 42.3103 -Arial.ttf 69 € 33.0769 43.3212 18 W 0.9798 57.1916 42.0000 -Arial.ttf 69 € 33.0769 43.3212 19 s 10.5760 24.9561 32.3813 -Arial.ttf 69 € 33.0769 43.3212 20 c 10.5462 26.8084 32.3813 -Arial.ttf 69 € 33.0769 43.3212 21 u 11.8884 24.2793 31.1896 -Arial.ttf 69 € 33.0769 43.3212 22 3 0.9825 26.8483 41.6897 -Arial.ttf 69 € 33.0769 43.3212 23 ~ 17.7249 29.9083 10.9561 -Arial.ttf 69 € 33.0769 43.3212 24 # 0.8288 31.2646 42.0000 -Arial.ttf 69 € 33.0769 43.3212 25 O 0.0854 39.5749 43.3212 -Arial.ttf 69 € 33.0769 43.3212 26 ` 0.5231 10.9561 8.0769 -Arial.ttf 69 € 33.0769 43.3212 27 @ 0.6526 54.1478 54.3123 -Arial.ttf 69 € 33.0769 43.3212 28 F 0.8207 28.2207 42.0000 -Arial.ttf 69 € 33.0769 43.3212 29 S 0.1256 33.0001 43.3212 -Arial.ttf 69 € 33.0769 43.3212 30 p 10.3939 26.3123 43.6877 -Arial.ttf 69 € 33.0769 43.3212 31 “ 0.4204 13.5690 14.0000 -Arial.ttf 69 € 33.0769 43.3212 32 % 0.5312 44.8793 42.3103 -Arial.ttf 69 € 33.0769 43.3212 33 £ 0.4538 29.8522 42.3103 -Arial.ttf 69 € 33.0769 43.3212 34 . 37.8135 5.2626 5.2626 -Arial.ttf 69 € 33.0769 43.3212 35 2 0.8793 28.6956 41.6897 -Arial.ttf 69 € 33.0769 43.3212 36 5 0.8192 26.8483 41.6897 -Arial.ttf 69 € 33.0769 43.3212 37 m 10.8468 41.4044 32.0709 -Arial.ttf 69 € 33.0769 43.3212 38 V 0.1485 40.5788 42.0000 -Arial.ttf 69 € 33.0769 43.3212 39 6 0.7985 27.8542 41.6897 -Arial.ttf 69 € 33.0769 43.3212 40 w 12.0390 43.4212 30.8793 -Arial.ttf 69 € 33.0769 43.3212 41 T 0.8960 33.6936 42.0000 -Arial.ttf 69 € 33.0769 43.3212 42 M 0.7656 40.5788 42.0000 -Arial.ttf 69 € 33.0769 43.3212 43 G -0.2620 38.6897 43.3212 -Arial.ttf 69 € 33.0769 43.3212 44 b 0.4798 26.3123 42.3103 -Arial.ttf 69 € 33.0769 43.3212 45 9 0.9905 26.8483 41.6897 -Arial.ttf 69 € 33.0769 43.3212 46 ; 11.9154 5.2626 39.6167 -Arial.ttf 69 € 33.0769 43.3212 47 D 0.5836 34.4542 42.0000 -Arial.ttf 69 € 33.0769 43.3212 48 L 0.9048 25.8813 42.0000 -Arial.ttf 69 € 33.0769 43.3212 49 y 12.0438 28.0000 42.4960 -Arial.ttf 69 € 33.0769 43.3212 50 ‘ 0.5863 5.9231 14.0000 -Arial.ttf 69 € 33.0769 43.3212 51 \ 0.5242 17.5749 42.0000 -Arial.ttf 69 € 33.0769 43.3212 52 R 0.6442 36.7497 42.0000 -Arial.ttf 69 € 33.0769 43.3212 53 < 8.1926 27.8354 27.8704 -Arial.ttf 69 € 33.0769 43.3212 54 4 0.9047 28.3503 41.6897 -Arial.ttf 69 € 33.0769 43.3212 55 8 0.9736 26.6626 41.6897 -Arial.ttf 69 € 33.0769 43.3212 56 0 1.0286 26.8483 41.6897 -Arial.ttf 69 € 33.0769 43.3212 57 A 0.5407 40.5788 42.0000 -Arial.ttf 69 € 33.0769 43.3212 58 E 0.4368 31.4542 42.0000 -Arial.ttf 69 € 33.0769 43.3212 59 B 0.5876 31.4542 42.0000 -Arial.ttf 69 € 33.0769 43.3212 60 v 11.8369 27.8704 30.8793 -Arial.ttf 69 € 33.0769 43.3212 61 k 0.4584 25.1207 42.0000 -Arial.ttf 69 € 33.0769 43.3212 62 J 0.5788 24.0291 42.6606 -Arial.ttf 69 € 33.0769 43.3212 63 U 0.9084 32.9083 42.6606 -Arial.ttf 69 € 33.0769 43.3212 64 j 0.6579 12.3773 53.6167 -Arial.ttf 69 € 33.0769 43.3212 65 ( 0.5821 14.4103 53.6167 -Arial.ttf 69 € 33.0769 43.3212 66 7 0.9036 26.8523 41.6897 -Arial.ttf 69 € 33.0769 43.3212 67 § 0.9052 26.9729 53.9271 -Arial.ttf 69 € 33.0769 43.3212 68 $ -1.3205 27.6897 49.3355 -Arial.ttf 69 € 33.0769 43.3212 69 € -0.0376 33.0769 43.3212 -Arial.ttf 69 € 33.0769 43.3212 70 / 0.8303 17.5749 42.0000 -Arial.ttf 69 € 33.0769 43.3212 71 C -0.0320 36.0000 43.3212 -Arial.ttf 69 € 33.0769 43.3212 72 * 0.6813 20.3453 17.8852 -Arial.ttf 69 € 33.0769 43.3212 73 ” 0.7265 14.2296 14.0000 -Arial.ttf 69 € 33.0769 43.3212 74 ? 0.6420 26.8483 42.0000 -Arial.ttf 69 € 33.0769 43.3212 75 { 0.2411 16.7375 53.6167 -Arial.ttf 69 € 33.0769 43.3212 76 } 0.5583 16.7375 53.6167 -Arial.ttf 69 € 33.0769 43.3212 77 , 37.4146 5.2626 14.0000 -Arial.ttf 69 € 33.0769 43.3212 78 I 0.5381 5.6936 42.0000 -Arial.ttf 69 € 33.0769 43.3212 79 ° 0.4954 15.8083 15.8083 -Arial.ttf 69 € 33.0769 43.3212 80 K 0.5985 34.5749 42.0000 -Arial.ttf 69 € 33.0769 43.3212 81 H 0.7089 32.9083 42.0000 -Arial.ttf 69 € 33.0769 43.3212 82 q 10.6889 26.3123 43.6877 -Arial.ttf 69 € 33.0769 43.3212 83 & 0.7018 35.1148 42.3103 -Arial.ttf 69 € 33.0769 43.3212 84 ’ 0.5043 5.9231 14.0000 -Arial.ttf 69 € 33.0769 43.3212 85 [ 0.9142 11.0000 53.6167 -Arial.ttf 69 € 33.0769 43.3212 86 - 24.7129 15.4980 5.2626 -Arial.ttf 69 € 33.0769 43.3212 87 Y 0.5985 38.4601 42.0000 -Arial.ttf 69 € 33.0769 43.3212 88 Q 0.2785 39.5749 46.3212 -Arial.ttf 69 € 33.0769 43.3212 89 " 0.5646 15.8083 15.1916 -Arial.ttf 69 € 33.0769 43.3212 90 ! 0.7985 5.2626 42.0000 -Arial.ttf 69 € 33.0769 43.3212 91 x 12.0782 29.1060 30.8793 -Arial.ttf 69 € 33.0769 43.3212 92 ) 0.7900 14.4103 53.6167 -Arial.ttf 69 € 33.0769 43.3212 93 = 12.3965 27.8793 17.8852 -Arial.ttf 69 € 33.0769 43.3212 94 + 8.4392 27.8753 27.8753 -Arial.ttf 69 € 33.0769 43.3212 95 X 0.9475 37.6626 42.0000 -Arial.ttf 69 € 33.0769 43.3212 96 » 14.6276 25.0439 26.1917 -Arial.ttf 69 € 33.0769 43.3212 97 ' 0.5640 5.2626 15.1916 -Arial.ttf 69 € 33.0769 43.3212 98 ¢ 0.3200 25.7813 54.2685 -Arial.ttf 69 € 33.0769 43.3212 99 Z 0.6471 33.0729 42.0000 -Arial.ttf 69 € 33.0769 43.3212 100 > 8.1268 27.8354 27.8704 -Arial.ttf 69 € 33.0769 43.3212 101 ® 0.1851 43.1916 42.9709 -Arial.ttf 69 € 33.0769 43.3212 102 © -0.1846 43.1916 42.9709 -Arial.ttf 69 € 33.0769 43.3212 103 ] 0.3269 11.0000 53.6167 -Arial.ttf 69 € 33.0769 43.3212 104 é -0.2925 27.4690 43.5020 -Arial.ttf 69 € 33.0769 43.3212 105 z 11.9978 26.3123 30.8793 -Arial.ttf 69 € 33.0769 43.3212 106 _ 48.9921 33.3832 5.2626 -Arial.ttf 69 € 33.0769 43.3212 107 ¥ 0.7418 32.0291 42.0000 -Arial.ttf 70 / 17.5749 42.0000 1 t 0.2492 15.0709 42.3103 -Arial.ttf 70 / 17.5749 42.0000 2 h -0.1962 24.2793 42.0000 -Arial.ttf 70 / 17.5749 42.0000 3 a 9.8075 27.4690 32.3813 -Arial.ttf 70 / 17.5749 42.0000 4 n 9.9189 24.2793 32.0709 -Arial.ttf 70 / 17.5749 42.0000 5 P -0.0514 31.4542 42.0000 -Arial.ttf 70 / 17.5749 42.0000 6 o 9.8946 27.4690 32.3813 -Arial.ttf 70 / 17.5749 42.0000 7 e 10.3331 27.4690 32.3813 -Arial.ttf 70 / 17.5749 42.0000 8 : 11.3196 5.2626 30.8793 -Arial.ttf 70 / 17.5749 42.0000 9 r 9.8852 16.5689 32.0709 -Arial.ttf 70 / 17.5749 42.0000 10 l 0.0371 5.2626 42.0000 -Arial.ttf 70 / 17.5749 42.0000 11 i 0.0138 5.2626 42.0000 -Arial.ttf 70 / 17.5749 42.0000 12 1 0.4455 15.2355 41.6897 -Arial.ttf 70 / 17.5749 42.0000 13 | 0.2163 4.1916 54.4980 -Arial.ttf 70 / 17.5749 42.0000 14 N 0.1479 32.9083 42.0000 -Arial.ttf 70 / 17.5749 42.0000 15 f -0.0540 18.0709 42.0000 -Arial.ttf 70 / 17.5749 42.0000 16 g 9.7578 26.3123 43.6877 -Arial.ttf 70 / 17.5749 42.0000 17 d -0.0011 26.3123 42.3103 -Arial.ttf 70 / 17.5749 42.0000 18 W -0.1050 57.1916 42.0000 -Arial.ttf 70 / 17.5749 42.0000 19 s 9.9799 24.9561 32.3813 -Arial.ttf 70 / 17.5749 42.0000 20 c 9.8654 26.8084 32.3813 -Arial.ttf 70 / 17.5749 42.0000 21 u 11.2889 24.2793 31.1896 -Arial.ttf 70 / 17.5749 42.0000 22 3 0.2675 26.8483 41.6897 -Arial.ttf 70 / 17.5749 42.0000 23 ~ 16.7536 29.9083 10.9561 -Arial.ttf 70 / 17.5749 42.0000 24 # 0.1034 31.2646 42.0000 -Arial.ttf 70 / 17.5749 42.0000 25 O -0.7767 39.5749 43.3212 -Arial.ttf 70 / 17.5749 42.0000 26 ` 0.0508 10.9561 8.0769 -Arial.ttf 70 / 17.5749 42.0000 27 @ -0.3574 54.1478 54.3123 -Arial.ttf 70 / 17.5749 42.0000 28 F 0.1172 28.2207 42.0000 -Arial.ttf 70 / 17.5749 42.0000 29 S -0.6606 33.0001 43.3212 -Arial.ttf 70 / 17.5749 42.0000 30 p 9.8835 26.3123 43.6877 -Arial.ttf 70 / 17.5749 42.0000 31 “ -0.1787 13.5690 14.0000 -Arial.ttf 70 / 17.5749 42.0000 32 % 0.1320 44.8793 42.3103 -Arial.ttf 70 / 17.5749 42.0000 33 £ -0.0716 29.8522 42.3103 -Arial.ttf 70 / 17.5749 42.0000 34 . 36.9290 5.2626 5.2626 -Arial.ttf 70 / 17.5749 42.0000 35 2 0.6138 28.6956 41.6897 -Arial.ttf 70 / 17.5749 42.0000 36 5 0.3251 26.8483 41.6897 -Arial.ttf 70 / 17.5749 42.0000 37 m 9.8751 41.4044 32.0709 -Arial.ttf 70 / 17.5749 42.0000 38 V -0.0690 40.5788 42.0000 -Arial.ttf 70 / 17.5749 42.0000 39 6 0.4721 27.8542 41.6897 -Arial.ttf 70 / 17.5749 42.0000 40 w 10.9606 43.4212 30.8793 -Arial.ttf 70 / 17.5749 42.0000 41 T -0.0111 33.6936 42.0000 -Arial.ttf 70 / 17.5749 42.0000 42 M 0.0383 40.5788 42.0000 -Arial.ttf 70 / 17.5749 42.0000 43 G -0.5514 38.6897 43.3212 -Arial.ttf 70 / 17.5749 42.0000 44 b -0.0912 26.3123 42.3103 -Arial.ttf 70 / 17.5749 42.0000 45 9 0.2732 26.8483 41.6897 -Arial.ttf 70 / 17.5749 42.0000 46 ; 11.4506 5.2626 39.6167 -Arial.ttf 70 / 17.5749 42.0000 47 D -0.4375 34.4542 42.0000 -Arial.ttf 70 / 17.5749 42.0000 48 L 0.1199 25.8813 42.0000 -Arial.ttf 70 / 17.5749 42.0000 49 y 11.0999 28.0000 42.4960 -Arial.ttf 70 / 17.5749 42.0000 50 ‘ 0.1088 5.9231 14.0000 -Arial.ttf 70 / 17.5749 42.0000 51 \ 0.1517 17.5749 42.0000 -Arial.ttf 70 / 17.5749 42.0000 52 R -0.0800 36.7497 42.0000 -Arial.ttf 70 / 17.5749 42.0000 53 < 7.5941 27.8354 27.8704 -Arial.ttf 70 / 17.5749 42.0000 54 4 0.5595 28.3503 41.6897 -Arial.ttf 70 / 17.5749 42.0000 55 8 0.2349 26.6626 41.6897 -Arial.ttf 70 / 17.5749 42.0000 56 0 0.3326 26.8483 41.6897 -Arial.ttf 70 / 17.5749 42.0000 57 A -0.0455 40.5788 42.0000 -Arial.ttf 70 / 17.5749 42.0000 58 E -0.0106 31.4542 42.0000 -Arial.ttf 70 / 17.5749 42.0000 59 B -0.1682 31.4542 42.0000 -Arial.ttf 70 / 17.5749 42.0000 60 v 11.2008 27.8704 30.8793 -Arial.ttf 70 / 17.5749 42.0000 61 k 0.0138 25.1207 42.0000 -Arial.ttf 70 / 17.5749 42.0000 62 J 0.1159 24.0291 42.6606 -Arial.ttf 70 / 17.5749 42.0000 63 U 0.0134 32.9083 42.6606 -Arial.ttf 70 / 17.5749 42.0000 64 j -0.1601 12.3773 53.6167 -Arial.ttf 70 / 17.5749 42.0000 65 ( 0.1134 14.4103 53.6167 -Arial.ttf 70 / 17.5749 42.0000 66 7 0.1458 26.8523 41.6897 -Arial.ttf 70 / 17.5749 42.0000 67 § 0.0744 26.9729 53.9271 -Arial.ttf 70 / 17.5749 42.0000 68 $ -1.9928 27.6897 49.3355 -Arial.ttf 70 / 17.5749 42.0000 69 € -0.6414 33.0769 43.3212 -Arial.ttf 70 / 17.5749 42.0000 70 / 0.0966 17.5749 42.0000 -Arial.ttf 70 / 17.5749 42.0000 71 C -0.7852 36.0000 43.3212 -Arial.ttf 70 / 17.5749 42.0000 72 * 0.0371 20.3453 17.8852 -Arial.ttf 70 / 17.5749 42.0000 73 ” -0.0111 14.2296 14.0000 -Arial.ttf 70 / 17.5749 42.0000 74 ? 0.1490 26.8483 42.0000 -Arial.ttf 70 / 17.5749 42.0000 75 { 0.0027 16.7375 53.6167 -Arial.ttf 70 / 17.5749 42.0000 76 } -0.2276 16.7375 53.6167 -Arial.ttf 70 / 17.5749 42.0000 77 , 36.8932 5.2626 14.0000 -Arial.ttf 70 / 17.5749 42.0000 78 I 0.1537 5.6936 42.0000 -Arial.ttf 70 / 17.5749 42.0000 79 ° 0.1423 15.8083 15.8083 -Arial.ttf 70 / 17.5749 42.0000 80 K -0.0662 34.5749 42.0000 -Arial.ttf 70 / 17.5749 42.0000 81 H -0.0828 32.9083 42.0000 -Arial.ttf 70 / 17.5749 42.0000 82 q 9.9291 26.3123 43.6877 -Arial.ttf 70 / 17.5749 42.0000 83 & -0.1155 35.1148 42.3103 -Arial.ttf 70 / 17.5749 42.0000 84 ’ 0.0340 5.9231 14.0000 -Arial.ttf 70 / 17.5749 42.0000 85 [ -0.1146 11.0000 53.6167 -Arial.ttf 70 / 17.5749 42.0000 86 - 24.4643 15.4980 5.2626 -Arial.ttf 70 / 17.5749 42.0000 87 Y -0.0690 38.4601 42.0000 -Arial.ttf 70 / 17.5749 42.0000 88 Q -0.7559 39.5749 46.3212 -Arial.ttf 70 / 17.5749 42.0000 89 " -0.1820 15.8083 15.1916 -Arial.ttf 70 / 17.5749 42.0000 90 ! -0.1601 5.2626 42.0000 -Arial.ttf 70 / 17.5749 42.0000 91 x 10.9299 29.1060 30.8793 -Arial.ttf 70 / 17.5749 42.0000 92 ) -0.0345 14.4103 53.6167 -Arial.ttf 70 / 17.5749 42.0000 93 = 12.1061 27.8793 17.8852 -Arial.ttf 70 / 17.5749 42.0000 94 + 7.4918 27.8753 27.8753 -Arial.ttf 70 / 17.5749 42.0000 95 X -0.0966 37.6626 42.0000 -Arial.ttf 70 / 17.5749 42.0000 96 » 13.8082 25.0439 26.1917 -Arial.ttf 70 / 17.5749 42.0000 97 ' 0.0207 5.2626 15.1916 -Arial.ttf 70 / 17.5749 42.0000 98 ¢ 0.1812 25.7813 54.2685 -Arial.ttf 70 / 17.5749 42.0000 99 Z -0.1973 33.0729 42.0000 -Arial.ttf 70 / 17.5749 42.0000 100 > 7.5539 27.8354 27.8704 -Arial.ttf 70 / 17.5749 42.0000 101 ® -0.5863 43.1916 42.9709 -Arial.ttf 70 / 17.5749 42.0000 102 © -0.4066 43.1916 42.9709 -Arial.ttf 70 / 17.5749 42.0000 103 ] -0.0164 11.0000 53.6167 -Arial.ttf 70 / 17.5749 42.0000 104 é -1.3406 27.4690 43.5020 -Arial.ttf 70 / 17.5749 42.0000 105 z 11.0354 26.3123 30.8793 -Arial.ttf 70 / 17.5749 42.0000 106 _ 48.2507 33.3832 5.2626 -Arial.ttf 70 / 17.5749 42.0000 107 ¥ -0.0041 32.0291 42.0000 -Arial.ttf 71 C 36.0000 43.3212 1 t 0.3661 15.0709 42.3103 -Arial.ttf 71 C 36.0000 43.3212 2 h 0.6166 24.2793 42.0000 -Arial.ttf 71 C 36.0000 43.3212 3 a 10.5521 27.4690 32.3813 -Arial.ttf 71 C 36.0000 43.3212 4 n 10.7795 24.2793 32.0709 -Arial.ttf 71 C 36.0000 43.3212 5 P 0.9255 31.4542 42.0000 -Arial.ttf 71 C 36.0000 43.3212 6 o 10.4583 27.4690 32.3813 -Arial.ttf 71 C 36.0000 43.3212 7 e 10.6083 27.4690 32.3813 -Arial.ttf 71 C 36.0000 43.3212 8 : 12.2697 5.2626 30.8793 -Arial.ttf 71 C 36.0000 43.3212 9 r 10.6724 16.5689 32.0709 -Arial.ttf 71 C 36.0000 43.3212 10 l 0.7535 5.2626 42.0000 -Arial.ttf 71 C 36.0000 43.3212 11 i 0.5297 5.2626 42.0000 -Arial.ttf 71 C 36.0000 43.3212 12 1 1.0485 15.2355 41.6897 -Arial.ttf 71 C 36.0000 43.3212 13 | 0.8039 4.1916 54.4980 -Arial.ttf 71 C 36.0000 43.3212 14 N 0.6879 32.9083 42.0000 -Arial.ttf 71 C 36.0000 43.3212 15 f 0.6340 18.0709 42.0000 -Arial.ttf 71 C 36.0000 43.3212 16 g 10.5078 26.3123 43.6877 -Arial.ttf 71 C 36.0000 43.3212 17 d 0.8791 26.3123 42.3103 -Arial.ttf 71 C 36.0000 43.3212 18 W 0.5655 57.1916 42.0000 -Arial.ttf 71 C 36.0000 43.3212 19 s 10.4516 24.9561 32.3813 -Arial.ttf 71 C 36.0000 43.3212 20 c 10.6696 26.8084 32.3813 -Arial.ttf 71 C 36.0000 43.3212 21 u 11.7769 24.2793 31.1896 -Arial.ttf 71 C 36.0000 43.3212 22 3 0.7424 26.8483 41.6897 -Arial.ttf 71 C 36.0000 43.3212 23 ~ 17.4969 29.9083 10.9561 -Arial.ttf 71 C 36.0000 43.3212 24 # 0.7071 31.2646 42.0000 -Arial.ttf 71 C 36.0000 43.3212 25 O -0.3877 39.5749 43.3212 -Arial.ttf 71 C 36.0000 43.3212 26 ` 0.6288 10.9561 8.0769 -Arial.ttf 71 C 36.0000 43.3212 27 @ 0.7059 54.1478 54.3123 -Arial.ttf 71 C 36.0000 43.3212 28 F 0.8092 28.2207 42.0000 -Arial.ttf 71 C 36.0000 43.3212 29 S -0.0854 33.0001 43.3212 -Arial.ttf 71 C 36.0000 43.3212 30 p 10.3579 26.3123 43.6877 -Arial.ttf 71 C 36.0000 43.3212 31 “ 0.2883 13.5690 14.0000 -Arial.ttf 71 C 36.0000 43.3212 32 % 0.8659 44.8793 42.3103 -Arial.ttf 71 C 36.0000 43.3212 33 £ 0.4384 29.8522 42.3103 -Arial.ttf 71 C 36.0000 43.3212 34 . 37.2272 5.2626 5.2626 -Arial.ttf 71 C 36.0000 43.3212 35 2 0.9355 28.6956 41.6897 -Arial.ttf 71 C 36.0000 43.3212 36 5 1.0314 26.8483 41.6897 -Arial.ttf 71 C 36.0000 43.3212 37 m 10.6548 41.4044 32.0709 -Arial.ttf 71 C 36.0000 43.3212 38 V 0.8083 40.5788 42.0000 -Arial.ttf 71 C 36.0000 43.3212 39 6 0.8606 27.8542 41.6897 -Arial.ttf 71 C 36.0000 43.3212 40 w 11.4116 43.4212 30.8793 -Arial.ttf 71 C 36.0000 43.3212 41 T 0.4421 33.6936 42.0000 -Arial.ttf 71 C 36.0000 43.3212 42 M 0.3546 40.5788 42.0000 -Arial.ttf 71 C 36.0000 43.3212 43 G 0.0624 38.6897 43.3212 -Arial.ttf 71 C 36.0000 43.3212 44 b 0.4967 26.3123 42.3103 -Arial.ttf 71 C 36.0000 43.3212 45 9 1.1995 26.8483 41.6897 -Arial.ttf 71 C 36.0000 43.3212 46 ; 11.8932 5.2626 39.6167 -Arial.ttf 71 C 36.0000 43.3212 47 D 0.9820 34.4542 42.0000 -Arial.ttf 71 C 36.0000 43.3212 48 L 0.7984 25.8813 42.0000 -Arial.ttf 71 C 36.0000 43.3212 49 y 11.7108 28.0000 42.4960 -Arial.ttf 71 C 36.0000 43.3212 50 ‘ 0.7434 5.9231 14.0000 -Arial.ttf 71 C 36.0000 43.3212 51 \ 0.9142 17.5749 42.0000 -Arial.ttf 71 C 36.0000 43.3212 52 R 0.5514 36.7497 42.0000 -Arial.ttf 71 C 36.0000 43.3212 53 < 8.3609 27.8354 27.8704 -Arial.ttf 71 C 36.0000 43.3212 54 4 1.0796 28.3503 41.6897 -Arial.ttf 71 C 36.0000 43.3212 55 8 1.3076 26.6626 41.6897 -Arial.ttf 71 C 36.0000 43.3212 56 0 1.0510 26.8483 41.6897 -Arial.ttf 71 C 36.0000 43.3212 57 A 0.5640 40.5788 42.0000 -Arial.ttf 71 C 36.0000 43.3212 58 E 0.6865 31.4542 42.0000 -Arial.ttf 71 C 36.0000 43.3212 59 B 0.6596 31.4542 42.0000 -Arial.ttf 71 C 36.0000 43.3212 60 v 11.8405 27.8704 30.8793 -Arial.ttf 71 C 36.0000 43.3212 61 k 0.4765 25.1207 42.0000 -Arial.ttf 71 C 36.0000 43.3212 62 J 0.6000 24.0291 42.6606 -Arial.ttf 71 C 36.0000 43.3212 63 U 0.6469 32.9083 42.6606 -Arial.ttf 71 C 36.0000 43.3212 64 j 0.7003 12.3773 53.6167 -Arial.ttf 71 C 36.0000 43.3212 65 ( 0.7709 14.4103 53.6167 -Arial.ttf 71 C 36.0000 43.3212 66 7 1.3422 26.8523 41.6897 -Arial.ttf 71 C 36.0000 43.3212 67 § 0.9119 26.9729 53.9271 -Arial.ttf 71 C 36.0000 43.3212 68 $ -1.3614 27.6897 49.3355 -Arial.ttf 71 C 36.0000 43.3212 69 € 0.3506 33.0769 43.3212 -Arial.ttf 71 C 36.0000 43.3212 70 / 0.3822 17.5749 42.0000 -Arial.ttf 71 C 36.0000 43.3212 71 C -0.0122 36.0000 43.3212 -Arial.ttf 71 C 36.0000 43.3212 72 * 0.3679 20.3453 17.8852 -Arial.ttf 71 C 36.0000 43.3212 73 ” 0.5931 14.2296 14.0000 -Arial.ttf 71 C 36.0000 43.3212 74 ? 0.8314 26.8483 42.0000 -Arial.ttf 71 C 36.0000 43.3212 75 { 0.6899 16.7375 53.6167 -Arial.ttf 71 C 36.0000 43.3212 76 } 0.4722 16.7375 53.6167 -Arial.ttf 71 C 36.0000 43.3212 77 , 37.4576 5.2626 14.0000 -Arial.ttf 71 C 36.0000 43.3212 78 I 0.6012 5.6936 42.0000 -Arial.ttf 71 C 36.0000 43.3212 79 ° 0.8342 15.8083 15.8083 -Arial.ttf 71 C 36.0000 43.3212 80 K 0.6977 34.5749 42.0000 -Arial.ttf 71 C 36.0000 43.3212 81 H 0.3388 32.9083 42.0000 -Arial.ttf 71 C 36.0000 43.3212 82 q 10.4133 26.3123 43.6877 -Arial.ttf 71 C 36.0000 43.3212 83 & 0.8866 35.1148 42.3103 -Arial.ttf 71 C 36.0000 43.3212 84 ’ 0.6107 5.9231 14.0000 -Arial.ttf 71 C 36.0000 43.3212 85 [ 0.6092 11.0000 53.6167 -Arial.ttf 71 C 36.0000 43.3212 86 - 25.1746 15.4980 5.2626 -Arial.ttf 71 C 36.0000 43.3212 87 Y 1.1091 38.4601 42.0000 -Arial.ttf 71 C 36.0000 43.3212 88 Q 0.2429 39.5749 46.3212 -Arial.ttf 71 C 36.0000 43.3212 89 " 0.5562 15.8083 15.1916 -Arial.ttf 71 C 36.0000 43.3212 90 ! 0.8872 5.2626 42.0000 -Arial.ttf 71 C 36.0000 43.3212 91 x 11.8063 29.1060 30.8793 -Arial.ttf 71 C 36.0000 43.3212 92 ) 0.7143 14.4103 53.6167 -Arial.ttf 71 C 36.0000 43.3212 93 = 12.4509 27.8793 17.8852 -Arial.ttf 71 C 36.0000 43.3212 94 + 8.2441 27.8753 27.8753 -Arial.ttf 71 C 36.0000 43.3212 95 X 0.8225 37.6626 42.0000 -Arial.ttf 71 C 36.0000 43.3212 96 » 14.5976 25.0439 26.1917 -Arial.ttf 71 C 36.0000 43.3212 97 ' 0.6839 5.2626 15.1916 -Arial.ttf 71 C 36.0000 43.3212 98 ¢ 0.5518 25.7813 54.2685 -Arial.ttf 71 C 36.0000 43.3212 99 Z 0.7025 33.0729 42.0000 -Arial.ttf 71 C 36.0000 43.3212 100 > 7.9402 27.8354 27.8704 -Arial.ttf 71 C 36.0000 43.3212 101 ® -0.0456 43.1916 42.9709 -Arial.ttf 71 C 36.0000 43.3212 102 © -0.0037 43.1916 42.9709 -Arial.ttf 71 C 36.0000 43.3212 103 ] 0.7376 11.0000 53.6167 -Arial.ttf 71 C 36.0000 43.3212 104 é -0.5162 27.4690 43.5020 -Arial.ttf 71 C 36.0000 43.3212 105 z 11.7477 26.3123 30.8793 -Arial.ttf 71 C 36.0000 43.3212 106 _ 48.6203 33.3832 5.2626 -Arial.ttf 71 C 36.0000 43.3212 107 ¥ 0.6637 32.0291 42.0000 -Arial.ttf 72 * 20.3453 17.8852 1 t -0.0871 15.0709 42.3103 -Arial.ttf 72 * 20.3453 17.8852 2 h -0.1102 24.2793 42.0000 -Arial.ttf 72 * 20.3453 17.8852 3 a 10.0462 27.4690 32.3813 -Arial.ttf 72 * 20.3453 17.8852 4 n 9.8766 24.2793 32.0709 -Arial.ttf 72 * 20.3453 17.8852 5 P -0.0402 31.4542 42.0000 -Arial.ttf 72 * 20.3453 17.8852 6 o 9.7101 27.4690 32.3813 -Arial.ttf 72 * 20.3453 17.8852 7 e 9.9980 27.4690 32.3813 -Arial.ttf 72 * 20.3453 17.8852 8 : 11.3467 5.2626 30.8793 -Arial.ttf 72 * 20.3453 17.8852 9 r 9.8406 16.5689 32.0709 -Arial.ttf 72 * 20.3453 17.8852 10 l -0.0402 5.2626 42.0000 -Arial.ttf 72 * 20.3453 17.8852 11 i 0.1657 5.2626 42.0000 -Arial.ttf 72 * 20.3453 17.8852 12 1 0.1944 15.2355 41.6897 -Arial.ttf 72 * 20.3453 17.8852 13 | -0.0953 4.1916 54.4980 -Arial.ttf 72 * 20.3453 17.8852 14 N 0.2148 32.9083 42.0000 -Arial.ttf 72 * 20.3453 17.8852 15 f -0.1406 18.0709 42.0000 -Arial.ttf 72 * 20.3453 17.8852 16 g 9.8034 26.3123 43.6877 -Arial.ttf 72 * 20.3453 17.8852 17 d -0.3099 26.3123 42.3103 -Arial.ttf 72 * 20.3453 17.8852 18 W -0.0207 57.1916 42.0000 -Arial.ttf 72 * 20.3453 17.8852 19 s 10.1084 24.9561 32.3813 -Arial.ttf 72 * 20.3453 17.8852 20 c 9.7264 26.8084 32.3813 -Arial.ttf 72 * 20.3453 17.8852 21 u 11.1143 24.2793 31.1896 -Arial.ttf 72 * 20.3453 17.8852 22 3 0.3019 26.8483 41.6897 -Arial.ttf 72 * 20.3453 17.8852 23 ~ 16.5743 29.9083 10.9561 -Arial.ttf 72 * 20.3453 17.8852 24 # 0.1241 31.2646 42.0000 -Arial.ttf 72 * 20.3453 17.8852 25 O -0.7003 39.5749 43.3212 -Arial.ttf 72 * 20.3453 17.8852 26 ` -0.2318 10.9561 8.0769 -Arial.ttf 72 * 20.3453 17.8852 27 @ 0.2014 54.1478 54.3123 -Arial.ttf 72 * 20.3453 17.8852 28 F -0.1023 28.2207 42.0000 -Arial.ttf 72 * 20.3453 17.8852 29 S -0.4054 33.0001 43.3212 -Arial.ttf 72 * 20.3453 17.8852 30 p 10.1496 26.3123 43.6877 -Arial.ttf 72 * 20.3453 17.8852 31 “ -0.0659 13.5690 14.0000 -Arial.ttf 72 * 20.3453 17.8852 32 % 0.0386 44.8793 42.3103 -Arial.ttf 72 * 20.3453 17.8852 33 £ 0.1172 29.8522 42.3103 -Arial.ttf 72 * 20.3453 17.8852 34 . 36.7237 5.2626 5.2626 -Arial.ttf 72 * 20.3453 17.8852 35 2 0.3103 28.6956 41.6897 -Arial.ttf 72 * 20.3453 17.8852 36 5 0.1242 26.8483 41.6897 -Arial.ttf 72 * 20.3453 17.8852 37 m 9.7345 41.4044 32.0709 -Arial.ttf 72 * 20.3453 17.8852 38 V -0.0455 40.5788 42.0000 -Arial.ttf 72 * 20.3453 17.8852 39 6 0.2111 27.8542 41.6897 -Arial.ttf 72 * 20.3453 17.8852 40 w 10.9263 43.4212 30.8793 -Arial.ttf 72 * 20.3453 17.8852 41 T -0.0138 33.6936 42.0000 -Arial.ttf 72 * 20.3453 17.8852 42 M 0.1335 40.5788 42.0000 -Arial.ttf 72 * 20.3453 17.8852 43 G -0.7598 38.6897 43.3212 -Arial.ttf 72 * 20.3453 17.8852 44 b -0.0110 26.3123 42.3103 -Arial.ttf 72 * 20.3453 17.8852 45 9 0.0209 26.8483 41.6897 -Arial.ttf 72 * 20.3453 17.8852 46 ; 11.0169 5.2626 39.6167 -Arial.ttf 72 * 20.3453 17.8852 47 D 0.1767 34.4542 42.0000 -Arial.ttf 72 * 20.3453 17.8852 48 L 0.0625 25.8813 42.0000 -Arial.ttf 72 * 20.3453 17.8852 49 y 11.1578 28.0000 42.4960 -Arial.ttf 72 * 20.3453 17.8852 50 ‘ -0.0743 5.9231 14.0000 -Arial.ttf 72 * 20.3453 17.8852 51 \ 0.2540 17.5749 42.0000 -Arial.ttf 72 * 20.3453 17.8852 52 R -0.0881 36.7497 42.0000 -Arial.ttf 72 * 20.3453 17.8852 53 < 7.5347 27.8354 27.8704 -Arial.ttf 72 * 20.3453 17.8852 54 4 0.1958 28.3503 41.6897 -Arial.ttf 72 * 20.3453 17.8852 55 8 0.2387 26.6626 41.6897 -Arial.ttf 72 * 20.3453 17.8852 56 0 0.5575 26.8483 41.6897 -Arial.ttf 72 * 20.3453 17.8852 57 A -0.1753 40.5788 42.0000 -Arial.ttf 72 * 20.3453 17.8852 58 E 0.0966 31.4542 42.0000 -Arial.ttf 72 * 20.3453 17.8852 59 B -0.0509 31.4542 42.0000 -Arial.ttf 72 * 20.3453 17.8852 60 v 11.2544 27.8704 30.8793 -Arial.ttf 72 * 20.3453 17.8852 61 k -0.1544 25.1207 42.0000 -Arial.ttf 72 * 20.3453 17.8852 62 J 0.0068 24.0291 42.6606 -Arial.ttf 72 * 20.3453 17.8852 63 U -0.1575 32.9083 42.6606 -Arial.ttf 72 * 20.3453 17.8852 64 j 0.1341 12.3773 53.6167 -Arial.ttf 72 * 20.3453 17.8852 65 ( -0.2716 14.4103 53.6167 -Arial.ttf 72 * 20.3453 17.8852 66 7 0.2552 26.8523 41.6897 -Arial.ttf 72 * 20.3453 17.8852 67 § -0.0912 26.9729 53.9271 -Arial.ttf 72 * 20.3453 17.8852 68 $ -2.0219 27.6897 49.3355 -Arial.ttf 72 * 20.3453 17.8852 69 € -0.8000 33.0769 43.3212 -Arial.ttf 72 * 20.3453 17.8852 70 / 0.0675 17.5749 42.0000 -Arial.ttf 72 * 20.3453 17.8852 71 C -0.5397 36.0000 43.3212 -Arial.ttf 72 * 20.3453 17.8852 72 * -0.1804 20.3453 17.8852 -Arial.ttf 72 * 20.3453 17.8852 73 ” 0.0716 14.2296 14.0000 -Arial.ttf 72 * 20.3453 17.8852 74 ? -0.2264 26.8483 42.0000 -Arial.ttf 72 * 20.3453 17.8852 75 { 0.0142 16.7375 53.6167 -Arial.ttf 72 * 20.3453 17.8852 76 } 0.2509 16.7375 53.6167 -Arial.ttf 72 * 20.3453 17.8852 77 , 36.9966 5.2626 14.0000 -Arial.ttf 72 * 20.3453 17.8852 78 I 0.0675 5.6936 42.0000 -Arial.ttf 72 * 20.3453 17.8852 79 ° 0.0345 15.8083 15.8083 -Arial.ttf 72 * 20.3453 17.8852 80 K -0.1050 34.5749 42.0000 -Arial.ttf 72 * 20.3453 17.8852 81 H -0.2065 32.9083 42.0000 -Arial.ttf 72 * 20.3453 17.8852 82 q 10.0462 26.3123 43.6877 -Arial.ttf 72 * 20.3453 17.8852 83 & -0.0425 35.1148 42.3103 -Arial.ttf 72 * 20.3453 17.8852 84 ’ 0.0747 5.9231 14.0000 -Arial.ttf 72 * 20.3453 17.8852 85 [ -0.1256 11.0000 53.6167 -Arial.ttf 72 * 20.3453 17.8852 86 - 24.1774 15.4980 5.2626 -Arial.ttf 72 * 20.3453 17.8852 87 Y -0.0318 38.4601 42.0000 -Arial.ttf 72 * 20.3453 17.8852 88 Q -0.3988 39.5749 46.3212 -Arial.ttf 72 * 20.3453 17.8852 89 " 0.0122 15.8083 15.1916 -Arial.ttf 72 * 20.3453 17.8852 90 ! 0.2715 5.2626 42.0000 -Arial.ttf 72 * 20.3453 17.8852 91 x 11.3525 29.1060 30.8793 -Arial.ttf 72 * 20.3453 17.8852 92 ) -0.0990 14.4103 53.6167 -Arial.ttf 72 * 20.3453 17.8852 93 = 12.0250 27.8793 17.8852 -Arial.ttf 72 * 20.3453 17.8852 94 + 7.7056 27.8753 27.8753 -Arial.ttf 72 * 20.3453 17.8852 95 X 0.0371 37.6626 42.0000 -Arial.ttf 72 * 20.3453 17.8852 96 » 13.8680 25.0439 26.1917 -Arial.ttf 72 * 20.3453 17.8852 97 ' 0.0875 5.2626 15.1916 -Arial.ttf 72 * 20.3453 17.8852 98 ¢ -0.2294 25.7813 54.2685 -Arial.ttf 72 * 20.3453 17.8852 99 Z 0.1655 33.0729 42.0000 -Arial.ttf 72 * 20.3453 17.8852 100 > 7.7807 27.8354 27.8704 -Arial.ttf 72 * 20.3453 17.8852 101 ® -0.5852 43.1916 42.9709 -Arial.ttf 72 * 20.3453 17.8852 102 © -0.8480 43.1916 42.9709 -Arial.ttf 72 * 20.3453 17.8852 103 ] -0.0111 11.0000 53.6167 -Arial.ttf 72 * 20.3453 17.8852 104 é -0.9171 27.4690 43.5020 -Arial.ttf 72 * 20.3453 17.8852 105 z 11.2092 26.3123 30.8793 -Arial.ttf 72 * 20.3453 17.8852 106 _ 48.5058 33.3832 5.2626 -Arial.ttf 72 * 20.3453 17.8852 107 ¥ -0.1129 32.0291 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 1 t -0.1256 15.0709 42.3103 -Arial.ttf 73 ” 14.2296 14.0000 2 h -0.1962 24.2793 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 3 a 9.8268 27.4690 32.3813 -Arial.ttf 73 ” 14.2296 14.0000 4 n 10.0268 24.2793 32.0709 -Arial.ttf 73 ” 14.2296 14.0000 5 P 0.0001 31.4542 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 6 o 9.8919 27.4690 32.3813 -Arial.ttf 73 ” 14.2296 14.0000 7 e 9.7072 27.4690 32.3813 -Arial.ttf 73 ” 14.2296 14.0000 8 : 11.2999 5.2626 30.8793 -Arial.ttf 73 ” 14.2296 14.0000 9 r 9.8575 16.5689 32.0709 -Arial.ttf 73 ” 14.2296 14.0000 10 l 0.0345 5.2626 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 11 i 0.3007 5.2626 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 12 1 0.2536 15.2355 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 13 | 0.1570 4.1916 54.4980 -Arial.ttf 73 ” 14.2296 14.0000 14 N 0.1393 32.9083 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 15 f -0.0085 18.0709 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 16 g 9.9668 26.3123 43.6877 -Arial.ttf 73 ” 14.2296 14.0000 17 d -0.3107 26.3123 42.3103 -Arial.ttf 73 ” 14.2296 14.0000 18 W 0.1956 57.1916 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 19 s 9.7599 24.9561 32.3813 -Arial.ttf 73 ” 14.2296 14.0000 20 c 10.1195 26.8084 32.3813 -Arial.ttf 73 ” 14.2296 14.0000 21 u 10.9596 24.2793 31.1896 -Arial.ttf 73 ” 14.2296 14.0000 22 3 0.4583 26.8483 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 23 ~ 16.8580 29.9083 10.9561 -Arial.ttf 73 ” 14.2296 14.0000 24 # -0.2661 31.2646 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 25 O -0.7890 39.5749 43.3212 -Arial.ttf 73 ” 14.2296 14.0000 26 ` 0.0000 10.9561 8.0769 -Arial.ttf 73 ” 14.2296 14.0000 27 @ -0.1132 54.1478 54.3123 -Arial.ttf 73 ” 14.2296 14.0000 28 F 0.0176 28.2207 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 29 S -0.7088 33.0001 43.3212 -Arial.ttf 73 ” 14.2296 14.0000 30 p 9.9207 26.3123 43.6877 -Arial.ttf 73 ” 14.2296 14.0000 31 “ -0.1023 13.5690 14.0000 -Arial.ttf 73 ” 14.2296 14.0000 32 % -0.2440 44.8793 42.3103 -Arial.ttf 73 ” 14.2296 14.0000 33 £ -0.0318 29.8522 42.3103 -Arial.ttf 73 ” 14.2296 14.0000 34 . 36.6754 5.2626 5.2626 -Arial.ttf 73 ” 14.2296 14.0000 35 2 0.0770 28.6956 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 36 5 0.3422 26.8483 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 37 m 9.9179 41.4044 32.0709 -Arial.ttf 73 ” 14.2296 14.0000 38 V 0.0233 40.5788 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 39 6 0.4302 27.8542 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 40 w 11.3069 43.4212 30.8793 -Arial.ttf 73 ” 14.2296 14.0000 41 T -0.0101 33.6936 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 42 M 0.2069 40.5788 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 43 G -0.6897 38.6897 43.3212 -Arial.ttf 73 ” 14.2296 14.0000 44 b -0.0402 26.3123 42.3103 -Arial.ttf 73 ” 14.2296 14.0000 45 9 -0.0498 26.8483 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 46 ; 10.8805 5.2626 39.6167 -Arial.ttf 73 ” 14.2296 14.0000 47 D -0.0864 34.4542 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 48 L 0.0659 25.8813 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 49 y 10.9276 28.0000 42.4960 -Arial.ttf 73 ” 14.2296 14.0000 50 ‘ 0.0476 5.9231 14.0000 -Arial.ttf 73 ” 14.2296 14.0000 51 \ 0.0345 17.5749 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 52 R -0.1118 36.7497 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 53 < 7.6258 27.8354 27.8704 -Arial.ttf 73 ” 14.2296 14.0000 54 4 0.2165 28.3503 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 55 8 0.3586 26.6626 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 56 0 0.4690 26.8483 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 57 A 0.1611 40.5788 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 58 E 0.0939 31.4542 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 59 B -0.0455 31.4542 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 60 v 11.1991 27.8704 30.8793 -Arial.ttf 73 ” 14.2296 14.0000 61 k 0.2526 25.1207 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 62 J -0.1199 24.0291 42.6606 -Arial.ttf 73 ” 14.2296 14.0000 63 U 0.1517 32.9083 42.6606 -Arial.ttf 73 ” 14.2296 14.0000 64 j 0.0747 12.3773 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 65 ( -0.2550 14.4103 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 66 7 0.2414 26.8523 41.6897 -Arial.ttf 73 ” 14.2296 14.0000 67 § 0.3023 26.9729 53.9271 -Arial.ttf 73 ” 14.2296 14.0000 68 $ -2.1307 27.6897 49.3355 -Arial.ttf 73 ” 14.2296 14.0000 69 € -0.8234 33.0769 43.3212 -Arial.ttf 73 ” 14.2296 14.0000 70 / -0.1526 17.5749 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 71 C -0.8139 36.0000 43.3212 -Arial.ttf 73 ” 14.2296 14.0000 72 * 0.1202 20.3453 17.8852 -Arial.ttf 73 ” 14.2296 14.0000 73 ” -0.0371 14.2296 14.0000 -Arial.ttf 73 ” 14.2296 14.0000 74 ? -0.0452 26.8483 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 75 { 0.0218 16.7375 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 76 } -0.1557 16.7375 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 77 , 36.7012 5.2626 14.0000 -Arial.ttf 73 ” 14.2296 14.0000 78 I 0.2291 5.6936 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 79 ° -0.0000 15.8083 15.8083 -Arial.ttf 73 ” 14.2296 14.0000 80 K 0.1172 34.5749 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 81 H -0.1310 32.9083 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 82 q 10.2021 26.3123 43.6877 -Arial.ttf 73 ” 14.2296 14.0000 83 & 0.2979 35.1148 42.3103 -Arial.ttf 73 ” 14.2296 14.0000 84 ’ 0.1517 5.9231 14.0000 -Arial.ttf 73 ” 14.2296 14.0000 85 [ -0.1377 11.0000 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 86 - 24.1996 15.4980 5.2626 -Arial.ttf 73 ” 14.2296 14.0000 87 Y -0.3792 38.4601 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 88 Q -0.6579 39.5749 46.3212 -Arial.ttf 73 ” 14.2296 14.0000 89 " -0.1544 15.8083 15.1916 -Arial.ttf 73 ” 14.2296 14.0000 90 ! -0.0731 5.2626 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 91 x 11.0517 29.1060 30.8793 -Arial.ttf 73 ” 14.2296 14.0000 92 ) 0.1655 14.4103 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 93 = 11.8582 27.8793 17.8852 -Arial.ttf 73 ” 14.2296 14.0000 94 + 7.5458 27.8753 27.8753 -Arial.ttf 73 ” 14.2296 14.0000 95 X 0.0345 37.6626 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 96 » 13.8814 25.0439 26.1917 -Arial.ttf 73 ” 14.2296 14.0000 97 ' 0.0524 5.2626 15.1916 -Arial.ttf 73 ” 14.2296 14.0000 98 ¢ -0.3083 25.7813 54.2685 -Arial.ttf 73 ” 14.2296 14.0000 99 Z 0.0828 33.0729 42.0000 -Arial.ttf 73 ” 14.2296 14.0000 100 > 7.6179 27.8354 27.8704 -Arial.ttf 73 ” 14.2296 14.0000 101 ® -0.7237 43.1916 42.9709 -Arial.ttf 73 ” 14.2296 14.0000 102 © -0.9209 43.1916 42.9709 -Arial.ttf 73 ” 14.2296 14.0000 103 ] 0.0057 11.0000 53.6167 -Arial.ttf 73 ” 14.2296 14.0000 104 é -1.2579 27.4690 43.5020 -Arial.ttf 73 ” 14.2296 14.0000 105 z 11.1069 26.3123 30.8793 -Arial.ttf 73 ” 14.2296 14.0000 106 _ 48.2758 33.3832 5.2626 -Arial.ttf 73 ” 14.2296 14.0000 107 ¥ 0.2769 32.0291 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 1 t 0.1554 15.0709 42.3103 -Arial.ttf 74 ? 26.8483 42.0000 2 h 0.1172 24.2793 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 3 a 9.6481 27.4690 32.3813 -Arial.ttf 74 ? 26.8483 42.0000 4 n 10.1853 24.2793 32.0709 -Arial.ttf 74 ? 26.8483 42.0000 5 P -0.2179 31.4542 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 6 o 9.9248 27.4690 32.3813 -Arial.ttf 74 ? 26.8483 42.0000 7 e 10.0882 27.4690 32.3813 -Arial.ttf 74 ? 26.8483 42.0000 8 : 11.1248 5.2626 30.8793 -Arial.ttf 74 ? 26.8483 42.0000 9 r 9.8724 16.5689 32.0709 -Arial.ttf 74 ? 26.8483 42.0000 10 l -0.1500 5.2626 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 11 i 0.1030 5.2626 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 12 1 0.3448 15.2355 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 13 | 0.0101 4.1916 54.4980 -Arial.ttf 74 ? 26.8483 42.0000 14 N 0.0498 32.9083 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 15 f 0.3447 18.0709 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 16 g 10.1408 26.3123 43.6877 -Arial.ttf 74 ? 26.8483 42.0000 17 d -0.2371 26.3123 42.3103 -Arial.ttf 74 ? 26.8483 42.0000 18 W 0.1670 57.1916 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 19 s 9.7442 24.9561 32.3813 -Arial.ttf 74 ? 26.8483 42.0000 20 c 10.2159 26.8084 32.3813 -Arial.ttf 74 ? 26.8483 42.0000 21 u 10.9357 24.2793 31.1896 -Arial.ttf 74 ? 26.8483 42.0000 22 3 0.3659 26.8483 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 23 ~ 16.9870 29.9083 10.9561 -Arial.ttf 74 ? 26.8483 42.0000 24 # 0.1395 31.2646 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 25 O -0.6946 39.5749 43.3212 -Arial.ttf 74 ? 26.8483 42.0000 26 ` -0.0138 10.9561 8.0769 -Arial.ttf 74 ? 26.8483 42.0000 27 @ 0.1617 54.1478 54.3123 -Arial.ttf 74 ? 26.8483 42.0000 28 F -0.1256 28.2207 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 29 S -0.9102 33.0001 43.3212 -Arial.ttf 74 ? 26.8483 42.0000 30 p 10.1051 26.3123 43.6877 -Arial.ttf 74 ? 26.8483 42.0000 31 “ 0.0084 13.5690 14.0000 -Arial.ttf 74 ? 26.8483 42.0000 32 % 0.0993 44.8793 42.3103 -Arial.ttf 74 ? 26.8483 42.0000 33 £ -0.1513 29.8522 42.3103 -Arial.ttf 74 ? 26.8483 42.0000 34 . 36.9211 5.2626 5.2626 -Arial.ttf 74 ? 26.8483 42.0000 35 2 0.2207 28.6956 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 36 5 0.4567 26.8483 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 37 m 9.8059 41.4044 32.0709 -Arial.ttf 74 ? 26.8483 42.0000 38 V -0.0314 40.5788 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 39 6 0.5500 27.8542 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 40 w 10.9026 43.4212 30.8793 -Arial.ttf 74 ? 26.8483 42.0000 41 T 0.0054 33.6936 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 42 M -0.0828 40.5788 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 43 G -0.7698 38.6897 43.3212 -Arial.ttf 74 ? 26.8483 42.0000 44 b 0.4275 26.3123 42.3103 -Arial.ttf 74 ? 26.8483 42.0000 45 9 0.3353 26.8483 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 46 ; 11.1345 5.2626 39.6167 -Arial.ttf 74 ? 26.8483 42.0000 47 D -0.1310 34.4542 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 48 L 0.0456 25.8813 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 49 y 11.1897 28.0000 42.4960 -Arial.ttf 74 ? 26.8483 42.0000 50 ‘ -0.0164 5.9231 14.0000 -Arial.ttf 74 ? 26.8483 42.0000 51 \ -0.2969 17.5749 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 52 R 0.1894 36.7497 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 53 < 7.4286 27.8354 27.8704 -Arial.ttf 74 ? 26.8483 42.0000 54 4 0.2912 28.3503 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 55 8 0.2138 26.6626 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 56 0 0.2885 26.8483 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 57 A -0.3436 40.5788 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 58 E 0.0121 31.4542 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 59 B -0.2551 31.4542 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 60 v 10.7499 27.8704 30.8793 -Arial.ttf 74 ? 26.8483 42.0000 61 k -0.1591 25.1207 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 62 J -0.1713 24.0291 42.6606 -Arial.ttf 74 ? 26.8483 42.0000 63 U -0.0933 32.9083 42.6606 -Arial.ttf 74 ? 26.8483 42.0000 64 j 0.1779 12.3773 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 65 ( -0.1916 14.4103 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 66 7 0.3713 26.8523 41.6897 -Arial.ttf 74 ? 26.8483 42.0000 67 § 0.0110 26.9729 53.9271 -Arial.ttf 74 ? 26.8483 42.0000 68 $ -2.0189 27.6897 49.3355 -Arial.ttf 74 ? 26.8483 42.0000 69 € -0.3695 33.0769 43.3212 -Arial.ttf 74 ? 26.8483 42.0000 70 / 0.0021 17.5749 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 71 C -0.5322 36.0000 43.3212 -Arial.ttf 74 ? 26.8483 42.0000 72 * -0.0261 20.3453 17.8852 -Arial.ttf 74 ? 26.8483 42.0000 73 ” 0.1381 14.2296 14.0000 -Arial.ttf 74 ? 26.8483 42.0000 74 ? -0.0209 26.8483 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 75 { -0.3202 16.7375 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 76 } -0.2095 16.7375 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 77 , 36.8821 5.2626 14.0000 -Arial.ttf 74 ? 26.8483 42.0000 78 I 0.0716 5.6936 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 79 ° 0.0345 15.8083 15.8083 -Arial.ttf 74 ? 26.8483 42.0000 80 K -0.0854 34.5749 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 81 H -0.0027 32.9083 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 82 q 10.1482 26.3123 43.6877 -Arial.ttf 74 ? 26.8483 42.0000 83 & -0.1692 35.1148 42.3103 -Arial.ttf 74 ? 26.8483 42.0000 84 ’ -0.1296 5.9231 14.0000 -Arial.ttf 74 ? 26.8483 42.0000 85 [ 0.0249 11.0000 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 86 - 24.3401 15.4980 5.2626 -Arial.ttf 74 ? 26.8483 42.0000 87 Y -0.1417 38.4601 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 88 Q -0.7200 39.5749 46.3212 -Arial.ttf 74 ? 26.8483 42.0000 89 " -0.0483 15.8083 15.1916 -Arial.ttf 74 ? 26.8483 42.0000 90 ! 0.0266 5.2626 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 91 x 11.1892 29.1060 30.8793 -Arial.ttf 74 ? 26.8483 42.0000 92 ) -0.3225 14.4103 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 93 = 12.1227 27.8793 17.8852 -Arial.ttf 74 ? 26.8483 42.0000 94 + 7.5197 27.8753 27.8753 -Arial.ttf 74 ? 26.8483 42.0000 95 X 0.1098 37.6626 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 96 » 13.7869 25.0439 26.1917 -Arial.ttf 74 ? 26.8483 42.0000 97 ' -0.2233 5.2626 15.1916 -Arial.ttf 74 ? 26.8483 42.0000 98 ¢ -0.1113 25.7813 54.2685 -Arial.ttf 74 ? 26.8483 42.0000 99 Z 0.3986 33.0729 42.0000 -Arial.ttf 74 ? 26.8483 42.0000 100 > 7.5596 27.8354 27.8704 -Arial.ttf 74 ? 26.8483 42.0000 101 ® -0.6801 43.1916 42.9709 -Arial.ttf 74 ? 26.8483 42.0000 102 © -0.7200 43.1916 42.9709 -Arial.ttf 74 ? 26.8483 42.0000 103 ] 0.0425 11.0000 53.6167 -Arial.ttf 74 ? 26.8483 42.0000 104 é -1.1790 27.4690 43.5020 -Arial.ttf 74 ? 26.8483 42.0000 105 z 10.9668 26.3123 30.8793 -Arial.ttf 74 ? 26.8483 42.0000 106 _ 48.3197 33.3832 5.2626 -Arial.ttf 74 ? 26.8483 42.0000 107 ¥ 0.0399 32.0291 42.0000 -Arial.ttf 75 { 16.7375 53.6167 1 t -0.0192 15.0709 42.3103 -Arial.ttf 75 { 16.7375 53.6167 2 h -0.1659 24.2793 42.0000 -Arial.ttf 75 { 16.7375 53.6167 3 a 10.0483 27.4690 32.3813 -Arial.ttf 75 { 16.7375 53.6167 4 n 9.8919 24.2793 32.0709 -Arial.ttf 75 { 16.7375 53.6167 5 P 0.0207 31.4542 42.0000 -Arial.ttf 75 { 16.7375 53.6167 6 o 9.6825 27.4690 32.3813 -Arial.ttf 75 { 16.7375 53.6167 7 e 9.9015 27.4690 32.3813 -Arial.ttf 75 { 16.7375 53.6167 8 : 11.1403 5.2626 30.8793 -Arial.ttf 75 { 16.7375 53.6167 9 r 9.9211 16.5689 32.0709 -Arial.ttf 75 { 16.7375 53.6167 10 l 0.0912 5.2626 42.0000 -Arial.ttf 75 { 16.7375 53.6167 11 i -0.0169 5.2626 42.0000 -Arial.ttf 75 { 16.7375 53.6167 12 1 0.2701 15.2355 41.6897 -Arial.ttf 75 { 16.7375 53.6167 13 | 0.0233 4.1916 54.4980 -Arial.ttf 75 { 16.7375 53.6167 14 N 0.2329 32.9083 42.0000 -Arial.ttf 75 { 16.7375 53.6167 15 f -0.1145 18.0709 42.0000 -Arial.ttf 75 { 16.7375 53.6167 16 g 9.9388 26.3123 43.6877 -Arial.ttf 75 { 16.7375 53.6167 17 d 0.0885 26.3123 42.3103 -Arial.ttf 75 { 16.7375 53.6167 18 W 0.0621 57.1916 42.0000 -Arial.ttf 75 { 16.7375 53.6167 19 s 9.8463 24.9561 32.3813 -Arial.ttf 75 { 16.7375 53.6167 20 c 9.9264 26.8084 32.3813 -Arial.ttf 75 { 16.7375 53.6167 21 u 10.7839 24.2793 31.1896 -Arial.ttf 75 { 16.7375 53.6167 22 3 0.2330 26.8483 41.6897 -Arial.ttf 75 { 16.7375 53.6167 23 ~ 17.0639 29.9083 10.9561 -Arial.ttf 75 { 16.7375 53.6167 24 # -0.3425 31.2646 42.0000 -Arial.ttf 75 { 16.7375 53.6167 25 O -0.4110 39.5749 43.3212 -Arial.ttf 75 { 16.7375 53.6167 26 ` 0.1225 10.9561 8.0769 -Arial.ttf 75 { 16.7375 53.6167 27 @ -0.0509 54.1478 54.3123 -Arial.ttf 75 { 16.7375 53.6167 28 F -0.0981 28.2207 42.0000 -Arial.ttf 75 { 16.7375 53.6167 29 S -0.8659 33.0001 43.3212 -Arial.ttf 75 { 16.7375 53.6167 30 p 9.8118 26.3123 43.6877 -Arial.ttf 75 { 16.7375 53.6167 31 “ 0.1463 13.5690 14.0000 -Arial.ttf 75 { 16.7375 53.6167 32 % -0.1820 44.8793 42.3103 -Arial.ttf 75 { 16.7375 53.6167 33 £ 0.3989 29.8522 42.3103 -Arial.ttf 75 { 16.7375 53.6167 34 . 37.0661 5.2626 5.2626 -Arial.ttf 75 { 16.7375 53.6167 35 2 0.2706 28.6956 41.6897 -Arial.ttf 75 { 16.7375 53.6167 36 5 0.3877 26.8483 41.6897 -Arial.ttf 75 { 16.7375 53.6167 37 m 9.8080 41.4044 32.0709 -Arial.ttf 75 { 16.7375 53.6167 38 V -0.0726 40.5788 42.0000 -Arial.ttf 75 { 16.7375 53.6167 39 6 0.4289 27.8542 41.6897 -Arial.ttf 75 { 16.7375 53.6167 40 w 11.0890 43.4212 30.8793 -Arial.ttf 75 { 16.7375 53.6167 41 T 0.0440 33.6936 42.0000 -Arial.ttf 75 { 16.7375 53.6167 42 M -0.1287 40.5788 42.0000 -Arial.ttf 75 { 16.7375 53.6167 43 G -0.7380 38.6897 43.3212 -Arial.ttf 75 { 16.7375 53.6167 44 b -0.1597 26.3123 42.3103 -Arial.ttf 75 { 16.7375 53.6167 45 9 0.4563 26.8483 41.6897 -Arial.ttf 75 { 16.7375 53.6167 46 ; 10.9525 5.2626 39.6167 -Arial.ttf 75 { 16.7375 53.6167 47 D 0.1544 34.4542 42.0000 -Arial.ttf 75 { 16.7375 53.6167 48 L -0.1601 25.8813 42.0000 -Arial.ttf 75 { 16.7375 53.6167 49 y 11.1383 28.0000 42.4960 -Arial.ttf 75 { 16.7375 53.6167 50 ‘ 0.0000 5.9231 14.0000 -Arial.ttf 75 { 16.7375 53.6167 51 \ 0.1749 17.5749 42.0000 -Arial.ttf 75 { 16.7375 53.6167 52 R -0.0164 36.7497 42.0000 -Arial.ttf 75 { 16.7375 53.6167 53 < 7.7817 27.8354 27.8704 -Arial.ttf 75 { 16.7375 53.6167 54 4 0.2871 28.3503 41.6897 -Arial.ttf 75 { 16.7375 53.6167 55 8 0.2853 26.6626 41.6897 -Arial.ttf 75 { 16.7375 53.6167 56 0 0.1448 26.8483 41.6897 -Arial.ttf 75 { 16.7375 53.6167 57 A 0.1269 40.5788 42.0000 -Arial.ttf 75 { 16.7375 53.6167 58 E -0.1199 31.4542 42.0000 -Arial.ttf 75 { 16.7375 53.6167 59 B -0.0260 31.4542 42.0000 -Arial.ttf 75 { 16.7375 53.6167 60 v 11.1012 27.8704 30.8793 -Arial.ttf 75 { 16.7375 53.6167 61 k 0.1905 25.1207 42.0000 -Arial.ttf 75 { 16.7375 53.6167 62 J 0.0053 24.0291 42.6606 -Arial.ttf 75 { 16.7375 53.6167 63 U -0.3172 32.9083 42.6606 -Arial.ttf 75 { 16.7375 53.6167 64 j -0.1129 12.3773 53.6167 -Arial.ttf 75 { 16.7375 53.6167 65 ( -0.1492 14.4103 53.6167 -Arial.ttf 75 { 16.7375 53.6167 66 7 0.7009 26.8523 41.6897 -Arial.ttf 75 { 16.7375 53.6167 67 § 0.1315 26.9729 53.9271 -Arial.ttf 75 { 16.7375 53.6167 68 $ -2.3212 27.6897 49.3355 -Arial.ttf 75 { 16.7375 53.6167 69 € -0.6617 33.0769 43.3212 -Arial.ttf 75 { 16.7375 53.6167 70 / -0.0027 17.5749 42.0000 -Arial.ttf 75 { 16.7375 53.6167 71 C -0.4819 36.0000 43.3212 -Arial.ttf 75 { 16.7375 53.6167 72 * -0.0111 20.3453 17.8852 -Arial.ttf 75 { 16.7375 53.6167 73 ” 0.0314 14.2296 14.0000 -Arial.ttf 75 { 16.7375 53.6167 74 ? 0.1619 26.8483 42.0000 -Arial.ttf 75 { 16.7375 53.6167 75 { -0.0276 16.7375 53.6167 -Arial.ttf 75 { 16.7375 53.6167 76 } -0.1463 16.7375 53.6167 -Arial.ttf 75 { 16.7375 53.6167 77 , 36.9692 5.2626 14.0000 -Arial.ttf 75 { 16.7375 53.6167 78 I 0.0027 5.6936 42.0000 -Arial.ttf 75 { 16.7375 53.6167 79 ° 0.0912 15.8083 15.8083 -Arial.ttf 75 { 16.7375 53.6167 80 K -0.2348 34.5749 42.0000 -Arial.ttf 75 { 16.7375 53.6167 81 H 0.0000 32.9083 42.0000 -Arial.ttf 75 { 16.7375 53.6167 82 q 9.8697 26.3123 43.6877 -Arial.ttf 75 { 16.7375 53.6167 83 & -0.0716 35.1148 42.3103 -Arial.ttf 75 { 16.7375 53.6167 84 ’ 0.1256 5.9231 14.0000 -Arial.ttf 75 { 16.7375 53.6167 85 [ 0.3807 11.0000 53.6167 -Arial.ttf 75 { 16.7375 53.6167 86 - 24.1125 15.4980 5.2626 -Arial.ttf 75 { 16.7375 53.6167 87 Y 0.1103 38.4601 42.0000 -Arial.ttf 75 { 16.7375 53.6167 88 Q -0.6701 39.5749 46.3212 -Arial.ttf 75 { 16.7375 53.6167 89 " 0.0429 15.8083 15.1916 -Arial.ttf 75 { 16.7375 53.6167 90 ! -0.2111 5.2626 42.0000 -Arial.ttf 75 { 16.7375 53.6167 91 x 11.0588 29.1060 30.8793 -Arial.ttf 75 { 16.7375 53.6167 92 ) 0.1682 14.4103 53.6167 -Arial.ttf 75 { 16.7375 53.6167 93 = 12.0072 27.8793 17.8852 -Arial.ttf 75 { 16.7375 53.6167 94 + 7.5320 27.8753 27.8753 -Arial.ttf 75 { 16.7375 53.6167 95 X -0.0561 37.6626 42.0000 -Arial.ttf 75 { 16.7375 53.6167 96 » 14.0596 25.0439 26.1917 -Arial.ttf 75 { 16.7375 53.6167 97 ' -0.0811 5.2626 15.1916 -Arial.ttf 75 { 16.7375 53.6167 98 ¢ -0.1302 25.7813 54.2685 -Arial.ttf 75 { 16.7375 53.6167 99 Z 0.2483 33.0729 42.0000 -Arial.ttf 75 { 16.7375 53.6167 100 > 7.4228 27.8354 27.8704 -Arial.ttf 75 { 16.7375 53.6167 101 ® -0.6829 43.1916 42.9709 -Arial.ttf 75 { 16.7375 53.6167 102 © -0.3600 43.1916 42.9709 -Arial.ttf 75 { 16.7375 53.6167 103 ] 0.0084 11.0000 53.6167 -Arial.ttf 75 { 16.7375 53.6167 104 é -1.1174 27.4690 43.5020 -Arial.ttf 75 { 16.7375 53.6167 105 z 11.0984 26.3123 30.8793 -Arial.ttf 75 { 16.7375 53.6167 106 _ 48.3239 33.3832 5.2626 -Arial.ttf 75 { 16.7375 53.6167 107 ¥ -0.0775 32.0291 42.0000 -Arial.ttf 76 } 16.7375 53.6167 1 t 0.0753 15.0709 42.3103 -Arial.ttf 76 } 16.7375 53.6167 2 h 0.0966 24.2793 42.0000 -Arial.ttf 76 } 16.7375 53.6167 3 a 9.7980 27.4690 32.3813 -Arial.ttf 76 } 16.7375 53.6167 4 n 9.9207 24.2793 32.0709 -Arial.ttf 76 } 16.7375 53.6167 5 P -0.1877 31.4542 42.0000 -Arial.ttf 76 } 16.7375 53.6167 6 o 9.7398 27.4690 32.3813 -Arial.ttf 76 } 16.7375 53.6167 7 e 10.0223 27.4690 32.3813 -Arial.ttf 76 } 16.7375 53.6167 8 : 10.8251 5.2626 30.8793 -Arial.ttf 76 } 16.7375 53.6167 9 r 10.0999 16.5689 32.0709 -Arial.ttf 76 } 16.7375 53.6167 10 l 0.1379 5.2626 42.0000 -Arial.ttf 76 } 16.7375 53.6167 11 i 0.0632 5.2626 42.0000 -Arial.ttf 76 } 16.7375 53.6167 12 1 0.5989 15.2355 41.6897 -Arial.ttf 76 } 16.7375 53.6167 13 | 0.0101 4.1916 54.4980 -Arial.ttf 76 } 16.7375 53.6167 14 N -0.1479 32.9083 42.0000 -Arial.ttf 76 } 16.7375 53.6167 15 f 0.3256 18.0709 42.0000 -Arial.ttf 76 } 16.7375 53.6167 16 g 9.9636 26.3123 43.6877 -Arial.ttf 76 } 16.7375 53.6167 17 d 0.1889 26.3123 42.3103 -Arial.ttf 76 } 16.7375 53.6167 18 W -0.0690 57.1916 42.0000 -Arial.ttf 76 } 16.7375 53.6167 19 s 9.9609 24.9561 32.3813 -Arial.ttf 76 } 16.7375 53.6167 20 c 9.6963 26.8084 32.3813 -Arial.ttf 76 } 16.7375 53.6167 21 u 11.0214 24.2793 31.1896 -Arial.ttf 76 } 16.7375 53.6167 22 3 0.3931 26.8483 41.6897 -Arial.ttf 76 } 16.7375 53.6167 23 ~ 16.8544 29.9083 10.9561 -Arial.ttf 76 } 16.7375 53.6167 24 # -0.2236 31.2646 42.0000 -Arial.ttf 76 } 16.7375 53.6167 25 O -0.7571 39.5749 43.3212 -Arial.ttf 76 } 16.7375 53.6167 26 ` -0.1601 10.9561 8.0769 -Arial.ttf 76 } 16.7375 53.6167 27 @ -0.2550 54.1478 54.3123 -Arial.ttf 76 } 16.7375 53.6167 28 F -0.0743 28.2207 42.0000 -Arial.ttf 76 } 16.7375 53.6167 29 S -0.6526 33.0001 43.3212 -Arial.ttf 76 } 16.7375 53.6167 30 p 9.9015 26.3123 43.6877 -Arial.ttf 76 } 16.7375 53.6167 31 “ -0.1373 13.5690 14.0000 -Arial.ttf 76 } 16.7375 53.6167 32 % 0.1261 44.8793 42.3103 -Arial.ttf 76 } 16.7375 53.6167 33 £ -0.0578 29.8522 42.3103 -Arial.ttf 76 } 16.7375 53.6167 34 . 36.7432 5.2626 5.2626 -Arial.ttf 76 } 16.7375 53.6167 35 2 0.2414 28.6956 41.6897 -Arial.ttf 76 } 16.7375 53.6167 36 5 0.3586 26.8483 41.6897 -Arial.ttf 76 } 16.7375 53.6167 37 m 9.8378 41.4044 32.0709 -Arial.ttf 76 } 16.7375 53.6167 38 V -0.0953 40.5788 42.0000 -Arial.ttf 76 } 16.7375 53.6167 39 6 0.0939 27.8542 41.6897 -Arial.ttf 76 } 16.7375 53.6167 40 w 10.9251 43.4212 30.8793 -Arial.ttf 76 } 16.7375 53.6167 41 T -0.0568 33.6936 42.0000 -Arial.ttf 76 } 16.7375 53.6167 42 M -0.0567 40.5788 42.0000 -Arial.ttf 76 } 16.7375 53.6167 43 G -0.6097 38.6897 43.3212 -Arial.ttf 76 } 16.7375 53.6167 44 b 0.1080 26.3123 42.3103 -Arial.ttf 76 } 16.7375 53.6167 45 9 0.2015 26.8483 41.6897 -Arial.ttf 76 } 16.7375 53.6167 46 ; 10.9414 5.2626 39.6167 -Arial.ttf 76 } 16.7375 53.6167 47 D -0.0483 34.4542 42.0000 -Arial.ttf 76 } 16.7375 53.6167 48 L 0.0000 25.8813 42.0000 -Arial.ttf 76 } 16.7375 53.6167 49 y 11.2989 28.0000 42.4960 -Arial.ttf 76 } 16.7375 53.6167 50 ‘ 0.0841 5.9231 14.0000 -Arial.ttf 76 } 16.7375 53.6167 51 \ 0.1655 17.5749 42.0000 -Arial.ttf 76 } 16.7375 53.6167 52 R 0.2248 36.7497 42.0000 -Arial.ttf 76 } 16.7375 53.6167 53 < 7.4519 27.8354 27.8704 -Arial.ttf 76 } 16.7375 53.6167 54 4 0.2276 28.3503 41.6897 -Arial.ttf 76 } 16.7375 53.6167 55 8 0.3050 26.6626 41.6897 -Arial.ttf 76 } 16.7375 53.6167 56 0 0.1529 26.8483 41.6897 -Arial.ttf 76 } 16.7375 53.6167 57 A -0.2141 40.5788 42.0000 -Arial.ttf 76 } 16.7375 53.6167 58 E 0.1638 31.4542 42.0000 -Arial.ttf 76 } 16.7375 53.6167 59 B -0.0320 31.4542 42.0000 -Arial.ttf 76 } 16.7375 53.6167 60 v 10.8667 27.8704 30.8793 -Arial.ttf 76 } 16.7375 53.6167 61 k -0.0095 25.1207 42.0000 -Arial.ttf 76 } 16.7375 53.6167 62 J 0.0838 24.0291 42.6606 -Arial.ttf 76 } 16.7375 53.6167 63 U -0.1624 32.9083 42.6606 -Arial.ttf 76 } 16.7375 53.6167 64 j -0.0291 12.3773 53.6167 -Arial.ttf 76 } 16.7375 53.6167 65 ( -0.0394 14.4103 53.6167 -Arial.ttf 76 } 16.7375 53.6167 66 7 0.2547 26.8523 41.6897 -Arial.ttf 76 } 16.7375 53.6167 67 § -0.1098 26.9729 53.9271 -Arial.ttf 76 } 16.7375 53.6167 68 $ -2.2232 27.6897 49.3355 -Arial.ttf 76 } 16.7375 53.6167 69 € -0.9720 33.0769 43.3212 -Arial.ttf 76 } 16.7375 53.6167 70 / -0.0828 17.5749 42.0000 -Arial.ttf 76 } 16.7375 53.6167 71 C -0.4097 36.0000 43.3212 -Arial.ttf 76 } 16.7375 53.6167 72 * -0.0122 20.3453 17.8852 -Arial.ttf 76 } 16.7375 53.6167 73 ” 0.1506 14.2296 14.0000 -Arial.ttf 76 } 16.7375 53.6167 74 ? -0.0129 26.8483 42.0000 -Arial.ttf 76 } 16.7375 53.6167 75 { -0.0514 16.7375 53.6167 -Arial.ttf 76 } 16.7375 53.6167 76 } 0.3367 16.7375 53.6167 -Arial.ttf 76 } 16.7375 53.6167 77 , 37.0604 5.2626 14.0000 -Arial.ttf 76 } 16.7375 53.6167 78 I 0.1830 5.6936 42.0000 -Arial.ttf 76 } 16.7375 53.6167 79 ° 0.0111 15.8083 15.8083 -Arial.ttf 76 } 16.7375 53.6167 80 K -0.2358 34.5749 42.0000 -Arial.ttf 76 } 16.7375 53.6167 81 H 0.0000 32.9083 42.0000 -Arial.ttf 76 } 16.7375 53.6167 82 q 10.1406 26.3123 43.6877 -Arial.ttf 76 } 16.7375 53.6167 83 & 0.5050 35.1148 42.3103 -Arial.ttf 76 } 16.7375 53.6167 84 ’ -0.1463 5.9231 14.0000 -Arial.ttf 76 } 16.7375 53.6167 85 [ -0.1490 11.0000 53.6167 -Arial.ttf 76 } 16.7375 53.6167 86 - 24.2161 15.4980 5.2626 -Arial.ttf 76 } 16.7375 53.6167 87 Y 0.1256 38.4601 42.0000 -Arial.ttf 76 } 16.7375 53.6167 88 Q -0.7089 39.5749 46.3212 -Arial.ttf 76 } 16.7375 53.6167 89 " 0.0138 15.8083 15.1916 -Arial.ttf 76 } 16.7375 53.6167 90 ! 0.0594 5.2626 42.0000 -Arial.ttf 76 } 16.7375 53.6167 91 x 11.0761 29.1060 30.8793 -Arial.ttf 76 } 16.7375 53.6167 92 ) -0.1942 14.4103 53.6167 -Arial.ttf 76 } 16.7375 53.6167 93 = 12.0514 27.8793 17.8852 -Arial.ttf 76 } 16.7375 53.6167 94 + 7.4493 27.8753 27.8753 -Arial.ttf 76 } 16.7375 53.6167 95 X 0.0659 37.6626 42.0000 -Arial.ttf 76 } 16.7375 53.6167 96 » 13.9605 25.0439 26.1917 -Arial.ttf 76 } 16.7375 53.6167 97 ' -0.2637 5.2626 15.1916 -Arial.ttf 76 } 16.7375 53.6167 98 ¢ -0.4088 25.7813 54.2685 -Arial.ttf 76 } 16.7375 53.6167 99 Z -0.0483 33.0729 42.0000 -Arial.ttf 76 } 16.7375 53.6167 100 > 7.4313 27.8354 27.8704 -Arial.ttf 76 } 16.7375 53.6167 101 ® -0.9102 43.1916 42.9709 -Arial.ttf 76 } 16.7375 53.6167 102 © -0.6261 43.1916 42.9709 -Arial.ttf 76 } 16.7375 53.6167 103 ] 0.0249 11.0000 53.6167 -Arial.ttf 76 } 16.7375 53.6167 104 é -1.2976 27.4690 43.5020 -Arial.ttf 76 } 16.7375 53.6167 105 z 11.4311 26.3123 30.8793 -Arial.ttf 76 } 16.7375 53.6167 106 _ 48.3335 33.3832 5.2626 -Arial.ttf 76 } 16.7375 53.6167 107 ¥ 0.3448 32.0291 42.0000 -Arial.ttf 77 , 5.2626 14.0000 1 t -36.7763 15.0709 42.3103 -Arial.ttf 77 , 5.2626 14.0000 2 h -36.7953 24.2793 42.0000 -Arial.ttf 77 , 5.2626 14.0000 3 a -26.6122 27.4690 32.3813 -Arial.ttf 77 , 5.2626 14.0000 4 n -26.9451 24.2793 32.0709 -Arial.ttf 77 , 5.2626 14.0000 5 P -36.7405 31.4542 42.0000 -Arial.ttf 77 , 5.2626 14.0000 6 o -26.7645 27.4690 32.3813 -Arial.ttf 77 , 5.2626 14.0000 7 e -26.8429 27.4690 32.3813 -Arial.ttf 77 , 5.2626 14.0000 8 : -25.8194 5.2626 30.8793 -Arial.ttf 77 , 5.2626 14.0000 9 r -26.8317 16.5689 32.0709 -Arial.ttf 77 , 5.2626 14.0000 10 l -36.7290 5.2626 42.0000 -Arial.ttf 77 , 5.2626 14.0000 11 i -36.6283 5.2626 42.0000 -Arial.ttf 77 , 5.2626 14.0000 12 1 -36.5210 15.2355 41.6897 -Arial.ttf 77 , 5.2626 14.0000 13 | -36.6611 4.1916 54.4980 -Arial.ttf 77 , 5.2626 14.0000 14 N -36.8064 32.9083 42.0000 -Arial.ttf 77 , 5.2626 14.0000 15 f -36.7374 18.0709 42.0000 -Arial.ttf 77 , 5.2626 14.0000 16 g -26.8814 26.3123 43.6877 -Arial.ttf 77 , 5.2626 14.0000 17 d -36.7290 26.3123 42.3103 -Arial.ttf 77 , 5.2626 14.0000 18 W -36.8753 57.1916 42.0000 -Arial.ttf 77 , 5.2626 14.0000 19 s -26.6965 24.9561 32.3813 -Arial.ttf 77 , 5.2626 14.0000 20 c -26.7145 26.8084 32.3813 -Arial.ttf 77 , 5.2626 14.0000 21 u -25.5796 24.2793 31.1896 -Arial.ttf 77 , 5.2626 14.0000 22 3 -36.4329 26.8483 41.6897 -Arial.ttf 77 , 5.2626 14.0000 23 ~ -19.9409 29.9083 10.9561 -Arial.ttf 77 , 5.2626 14.0000 24 # -36.9634 31.2646 42.0000 -Arial.ttf 77 , 5.2626 14.0000 25 O -37.4325 39.5749 43.3212 -Arial.ttf 77 , 5.2626 14.0000 26 ` -36.5168 10.9561 8.0769 -Arial.ttf 77 , 5.2626 14.0000 27 @ -36.8148 54.1478 54.3123 -Arial.ttf 77 , 5.2626 14.0000 28 F -36.6729 28.2207 42.0000 -Arial.ttf 77 , 5.2626 14.0000 29 S -37.3291 33.0001 43.3212 -Arial.ttf 77 , 5.2626 14.0000 30 p -26.5624 26.3123 43.6877 -Arial.ttf 77 , 5.2626 14.0000 31 “ -36.6118 13.5690 14.0000 -Arial.ttf 77 , 5.2626 14.0000 32 % -36.8631 44.8793 42.3103 -Arial.ttf 77 , 5.2626 14.0000 33 £ -36.6367 29.8522 42.3103 -Arial.ttf 77 , 5.2626 14.0000 34 . 0.0031 5.2626 5.2626 -Arial.ttf 77 , 5.2626 14.0000 35 2 -36.3792 28.6956 41.6897 -Arial.ttf 77 , 5.2626 14.0000 36 5 -36.4271 26.8483 41.6897 -Arial.ttf 77 , 5.2626 14.0000 37 m -26.7256 41.4044 32.0709 -Arial.ttf 77 , 5.2626 14.0000 38 V -36.6685 40.5788 42.0000 -Arial.ttf 77 , 5.2626 14.0000 39 6 -36.5018 27.8542 41.6897 -Arial.ttf 77 , 5.2626 14.0000 40 w -25.6539 43.4212 30.8793 -Arial.ttf 77 , 5.2626 14.0000 41 T -36.7442 33.6936 42.0000 -Arial.ttf 77 , 5.2626 14.0000 42 M -36.8340 40.5788 42.0000 -Arial.ttf 77 , 5.2626 14.0000 43 G -37.2893 38.6897 43.3212 -Arial.ttf 77 , 5.2626 14.0000 44 b -36.8519 26.3123 42.3103 -Arial.ttf 77 , 5.2626 14.0000 45 9 -36.2903 26.8483 41.6897 -Arial.ttf 77 , 5.2626 14.0000 46 ; -25.5202 5.2626 39.6167 -Arial.ttf 77 , 5.2626 14.0000 47 D -36.3497 34.4542 42.0000 -Arial.ttf 77 , 5.2626 14.0000 48 L -36.9206 25.8813 42.0000 -Arial.ttf 77 , 5.2626 14.0000 49 y -25.6512 28.0000 42.4960 -Arial.ttf 77 , 5.2626 14.0000 50 ‘ -36.7141 5.9231 14.0000 -Arial.ttf 77 , 5.2626 14.0000 51 \ -36.6294 17.5749 42.0000 -Arial.ttf 77 , 5.2626 14.0000 52 R -36.6976 36.7497 42.0000 -Arial.ttf 77 , 5.2626 14.0000 53 < -29.2882 27.8354 27.8704 -Arial.ttf 77 , 5.2626 14.0000 54 4 -36.4961 28.3503 41.6897 -Arial.ttf 77 , 5.2626 14.0000 55 8 -36.4271 26.6626 41.6897 -Arial.ttf 77 , 5.2626 14.0000 56 0 -36.3967 26.8483 41.6897 -Arial.ttf 77 , 5.2626 14.0000 57 A -36.6409 40.5788 42.0000 -Arial.ttf 77 , 5.2626 14.0000 58 E -36.8658 31.4542 42.0000 -Arial.ttf 77 , 5.2626 14.0000 59 B -36.7374 31.4542 42.0000 -Arial.ttf 77 , 5.2626 14.0000 60 v -25.5478 27.8704 30.8793 -Arial.ttf 77 , 5.2626 14.0000 61 k -36.6654 25.1207 42.0000 -Arial.ttf 77 , 5.2626 14.0000 62 J -36.8091 24.0291 42.6606 -Arial.ttf 77 , 5.2626 14.0000 63 U -36.5122 32.9083 42.6606 -Arial.ttf 77 , 5.2626 14.0000 64 j -36.7719 12.3773 53.6167 -Arial.ttf 77 , 5.2626 14.0000 65 ( -36.8976 14.4103 53.6167 -Arial.ttf 77 , 5.2626 14.0000 66 7 -36.2505 26.8523 41.6897 -Arial.ttf 77 , 5.2626 14.0000 67 § -36.7443 26.9729 53.9271 -Arial.ttf 77 , 5.2626 14.0000 68 $ -38.8104 27.6897 49.3355 -Arial.ttf 77 , 5.2626 14.0000 69 € -37.2406 33.0769 43.3212 -Arial.ttf 77 , 5.2626 14.0000 70 / -36.7237 17.5749 42.0000 -Arial.ttf 77 , 5.2626 14.0000 71 C -37.2771 36.0000 43.3212 -Arial.ttf 77 , 5.2626 14.0000 72 * -36.8340 20.3453 17.8852 -Arial.ttf 77 , 5.2626 14.0000 73 ” -36.6892 14.2296 14.0000 -Arial.ttf 77 , 5.2626 14.0000 74 ? -36.7499 26.8483 42.0000 -Arial.ttf 77 , 5.2626 14.0000 75 { -36.5804 16.7375 53.6167 -Arial.ttf 77 , 5.2626 14.0000 76 } -36.7524 16.7375 53.6167 -Arial.ttf 77 , 5.2626 14.0000 77 , -0.1034 5.2626 14.0000 -Arial.ttf 77 , 5.2626 14.0000 78 I -36.6145 5.6936 42.0000 -Arial.ttf 77 , 5.2626 14.0000 79 ° -36.6972 15.8083 15.8083 -Arial.ttf 77 , 5.2626 14.0000 80 K -36.8060 34.5749 42.0000 -Arial.ttf 77 , 5.2626 14.0000 81 H -36.5088 32.9083 42.0000 -Arial.ttf 77 , 5.2626 14.0000 82 q -26.8867 26.3123 43.6877 -Arial.ttf 77 , 5.2626 14.0000 83 & -36.6823 35.1148 42.3103 -Arial.ttf 77 , 5.2626 14.0000 84 ’ -36.9171 5.9231 14.0000 -Arial.ttf 77 , 5.2626 14.0000 85 [ -36.9002 11.0000 53.6167 -Arial.ttf 77 , 5.2626 14.0000 86 - -12.5754 15.4980 5.2626 -Arial.ttf 77 , 5.2626 14.0000 87 Y -36.6240 38.4601 42.0000 -Arial.ttf 77 , 5.2626 14.0000 88 Q -37.3694 39.5749 46.3212 -Arial.ttf 77 , 5.2626 14.0000 89 " -36.6601 15.8083 15.1916 -Arial.ttf 77 , 5.2626 14.0000 90 ! -36.6658 5.2626 42.0000 -Arial.ttf 77 , 5.2626 14.0000 91 x -25.5425 29.1060 30.8793 -Arial.ttf 77 , 5.2626 14.0000 92 ) -36.6671 14.4103 53.6167 -Arial.ttf 77 , 5.2626 14.0000 93 = -24.7912 27.8793 17.8852 -Arial.ttf 77 , 5.2626 14.0000 94 + -29.2399 27.8753 27.8753 -Arial.ttf 77 , 5.2626 14.0000 95 X -36.7486 37.6626 42.0000 -Arial.ttf 77 , 5.2626 14.0000 96 » -22.7273 25.0439 26.1917 -Arial.ttf 77 , 5.2626 14.0000 97 ' -36.8022 5.2626 15.1916 -Arial.ttf 77 , 5.2626 14.0000 98 ¢ -36.9695 25.7813 54.2685 -Arial.ttf 77 , 5.2626 14.0000 99 Z -36.7570 33.0729 42.0000 -Arial.ttf 77 , 5.2626 14.0000 100 > -29.2028 27.8354 27.8704 -Arial.ttf 77 , 5.2626 14.0000 101 ® -37.0820 43.1916 42.9709 -Arial.ttf 77 , 5.2626 14.0000 102 © -37.3015 43.1916 42.9709 -Arial.ttf 77 , 5.2626 14.0000 103 ] -36.8309 11.0000 53.6167 -Arial.ttf 77 , 5.2626 14.0000 104 é -37.9619 27.4690 43.5020 -Arial.ttf 77 , 5.2626 14.0000 105 z -25.6273 26.3123 30.8793 -Arial.ttf 77 , 5.2626 14.0000 106 _ 11.6539 33.3832 5.2626 -Arial.ttf 77 , 5.2626 14.0000 107 ¥ -36.5625 32.0291 42.0000 -Arial.ttf 78 I 5.6936 42.0000 1 t 0.2358 15.0709 42.3103 -Arial.ttf 78 I 5.6936 42.0000 2 h 0.1544 24.2793 42.0000 -Arial.ttf 78 I 5.6936 42.0000 3 a 9.9332 27.4690 32.3813 -Arial.ttf 78 I 5.6936 42.0000 4 n 9.7568 24.2793 32.0709 -Arial.ttf 78 I 5.6936 42.0000 5 P 0.2536 31.4542 42.0000 -Arial.ttf 78 I 5.6936 42.0000 6 o 9.5748 27.4690 32.3813 -Arial.ttf 78 I 5.6936 42.0000 7 e 9.8517 27.4690 32.3813 -Arial.ttf 78 I 5.6936 42.0000 8 : 11.1605 5.2626 30.8793 -Arial.ttf 78 I 5.6936 42.0000 9 r 9.8575 16.5689 32.0709 -Arial.ttf 78 I 5.6936 42.0000 10 l -0.1956 5.2626 42.0000 -Arial.ttf 78 I 5.6936 42.0000 11 i -0.1931 5.2626 42.0000 -Arial.ttf 78 I 5.6936 42.0000 12 1 0.2361 15.2355 41.6897 -Arial.ttf 78 I 5.6936 42.0000 13 | 0.0952 4.1916 54.4980 -Arial.ttf 78 I 5.6936 42.0000 14 N 0.0828 32.9083 42.0000 -Arial.ttf 78 I 5.6936 42.0000 15 f -0.0690 18.0709 42.0000 -Arial.ttf 78 I 5.6936 42.0000 16 g 9.9578 26.3123 43.6877 -Arial.ttf 78 I 5.6936 42.0000 17 d -0.0094 26.3123 42.3103 -Arial.ttf 78 I 5.6936 42.0000 18 W 0.1199 57.1916 42.0000 -Arial.ttf 78 I 5.6936 42.0000 19 s 10.0064 24.9561 32.3813 -Arial.ttf 78 I 5.6936 42.0000 20 c 10.1294 26.8084 32.3813 -Arial.ttf 78 I 5.6936 42.0000 21 u 11.0472 24.2793 31.1896 -Arial.ttf 78 I 5.6936 42.0000 22 3 0.3682 26.8483 41.6897 -Arial.ttf 78 I 5.6936 42.0000 23 ~ 16.9218 29.9083 10.9561 -Arial.ttf 78 I 5.6936 42.0000 24 # 0.1655 31.2646 42.0000 -Arial.ttf 78 I 5.6936 42.0000 25 O -0.6437 39.5749 43.3212 -Arial.ttf 78 I 5.6936 42.0000 26 ` -0.0111 10.9561 8.0769 -Arial.ttf 78 I 5.6936 42.0000 27 @ -0.1061 54.1478 54.3123 -Arial.ttf 78 I 5.6936 42.0000 28 F -0.0483 28.2207 42.0000 -Arial.ttf 78 I 5.6936 42.0000 29 S -0.8493 33.0001 43.3212 -Arial.ttf 78 I 5.6936 42.0000 30 p 9.8892 26.3123 43.6877 -Arial.ttf 78 I 5.6936 42.0000 31 “ 0.1544 13.5690 14.0000 -Arial.ttf 78 I 5.6936 42.0000 32 % 0.1930 44.8793 42.3103 -Arial.ttf 78 I 5.6936 42.0000 33 £ 0.0345 29.8522 42.3103 -Arial.ttf 78 I 5.6936 42.0000 34 . 36.7922 5.2626 5.2626 -Arial.ttf 78 I 5.6936 42.0000 35 2 0.4001 28.6956 41.6897 -Arial.ttf 78 I 5.6936 42.0000 36 5 0.2330 26.8483 41.6897 -Arial.ttf 78 I 5.6936 42.0000 37 m 9.9828 41.4044 32.0709 -Arial.ttf 78 I 5.6936 42.0000 38 V 0.1749 40.5788 42.0000 -Arial.ttf 78 I 5.6936 42.0000 39 6 0.1310 27.8542 41.6897 -Arial.ttf 78 I 5.6936 42.0000 40 w 11.1207 43.4212 30.8793 -Arial.ttf 78 I 5.6936 42.0000 41 T 0.0970 33.6936 42.0000 -Arial.ttf 78 I 5.6936 42.0000 42 M -0.0854 40.5788 42.0000 -Arial.ttf 78 I 5.6936 42.0000 43 G -0.8123 38.6897 43.3212 -Arial.ttf 78 I 5.6936 42.0000 44 b -0.1611 26.3123 42.3103 -Arial.ttf 78 I 5.6936 42.0000 45 9 0.3586 26.8483 41.6897 -Arial.ttf 78 I 5.6936 42.0000 46 ; 11.1734 5.2626 39.6167 -Arial.ttf 78 I 5.6936 42.0000 47 D 0.0080 34.4542 42.0000 -Arial.ttf 78 I 5.6936 42.0000 48 L 0.0233 25.8813 42.0000 -Arial.ttf 78 I 5.6936 42.0000 49 y 11.1838 28.0000 42.4960 -Arial.ttf 78 I 5.6936 42.0000 50 ‘ -0.0743 5.9231 14.0000 -Arial.ttf 78 I 5.6936 42.0000 51 \ -0.1172 17.5749 42.0000 -Arial.ttf 78 I 5.6936 42.0000 52 R -0.2316 36.7497 42.0000 -Arial.ttf 78 I 5.6936 42.0000 53 < 7.5458 27.8354 27.8704 -Arial.ttf 78 I 5.6936 42.0000 54 4 0.2218 28.3503 41.6897 -Arial.ttf 78 I 5.6936 42.0000 55 8 0.3877 26.6626 41.6897 -Arial.ttf 78 I 5.6936 42.0000 56 0 0.2759 26.8483 41.6897 -Arial.ttf 78 I 5.6936 42.0000 57 A -0.1347 40.5788 42.0000 -Arial.ttf 78 I 5.6936 42.0000 58 E -0.0716 31.4542 42.0000 -Arial.ttf 78 I 5.6936 42.0000 59 B -0.0276 31.4542 42.0000 -Arial.ttf 78 I 5.6936 42.0000 60 v 11.1578 27.8704 30.8793 -Arial.ttf 78 I 5.6936 42.0000 61 k -0.0195 25.1207 42.0000 -Arial.ttf 78 I 5.6936 42.0000 62 J -0.1009 24.0291 42.6606 -Arial.ttf 78 I 5.6936 42.0000 63 U 0.0053 32.9083 42.6606 -Arial.ttf 78 I 5.6936 42.0000 64 j -0.0068 12.3773 53.6167 -Arial.ttf 78 I 5.6936 42.0000 65 ( 0.0939 14.4103 53.6167 -Arial.ttf 78 I 5.6936 42.0000 66 7 0.3103 26.8523 41.6897 -Arial.ttf 78 I 5.6936 42.0000 67 § 0.1973 26.9729 53.9271 -Arial.ttf 78 I 5.6936 42.0000 68 $ -2.2187 27.6897 49.3355 -Arial.ttf 78 I 5.6936 42.0000 69 € -0.7296 33.0769 43.3212 -Arial.ttf 78 I 5.6936 42.0000 70 / 0.0966 17.5749 42.0000 -Arial.ttf 78 I 5.6936 42.0000 71 C -0.7974 36.0000 43.3212 -Arial.ttf 78 I 5.6936 42.0000 72 * 0.0828 20.3453 17.8852 -Arial.ttf 78 I 5.6936 42.0000 73 ” 0.0000 14.2296 14.0000 -Arial.ttf 78 I 5.6936 42.0000 74 ? 0.0774 26.8483 42.0000 -Arial.ttf 78 I 5.6936 42.0000 75 { 0.0429 16.7375 53.6167 -Arial.ttf 78 I 5.6936 42.0000 76 } -0.1004 16.7375 53.6167 -Arial.ttf 78 I 5.6936 42.0000 77 , 36.7374 5.2626 14.0000 -Arial.ttf 78 I 5.6936 42.0000 78 I 0.0287 5.6936 42.0000 -Arial.ttf 78 I 5.6936 42.0000 79 ° 0.0000 15.8083 15.8083 -Arial.ttf 78 I 5.6936 42.0000 80 K -0.0966 34.5749 42.0000 -Arial.ttf 78 I 5.6936 42.0000 81 H 0.0690 32.9083 42.0000 -Arial.ttf 78 I 5.6936 42.0000 82 q 9.9774 26.3123 43.6877 -Arial.ttf 78 I 5.6936 42.0000 83 & -0.0398 35.1148 42.3103 -Arial.ttf 78 I 5.6936 42.0000 84 ’ 0.1077 5.9231 14.0000 -Arial.ttf 78 I 5.6936 42.0000 85 [ 0.1202 11.0000 53.6167 -Arial.ttf 78 I 5.6936 42.0000 86 - 24.3455 15.4980 5.2626 -Arial.ttf 78 I 5.6936 42.0000 87 Y 0.2785 38.4601 42.0000 -Arial.ttf 78 I 5.6936 42.0000 88 Q -0.6480 39.5749 46.3212 -Arial.ttf 78 I 5.6936 42.0000 89 " 0.0163 15.8083 15.1916 -Arial.ttf 78 I 5.6936 42.0000 90 ! -0.1230 5.2626 42.0000 -Arial.ttf 78 I 5.6936 42.0000 91 x 11.1000 29.1060 30.8793 -Arial.ttf 78 I 5.6936 42.0000 92 ) 0.0138 14.4103 53.6167 -Arial.ttf 78 I 5.6936 42.0000 93 = 11.8333 27.8793 17.8852 -Arial.ttf 78 I 5.6936 42.0000 94 + 7.4397 27.8753 27.8753 -Arial.ttf 78 I 5.6936 42.0000 95 X 0.3350 37.6626 42.0000 -Arial.ttf 78 I 5.6936 42.0000 96 » 13.8825 25.0439 26.1917 -Arial.ttf 78 I 5.6936 42.0000 97 ' 0.1061 5.2626 15.1916 -Arial.ttf 78 I 5.6936 42.0000 98 ¢ 0.0655 25.7813 54.2685 -Arial.ttf 78 I 5.6936 42.0000 99 Z 0.1065 33.0729 42.0000 -Arial.ttf 78 I 5.6936 42.0000 100 > 7.3803 27.8354 27.8704 -Arial.ttf 78 I 5.6936 42.0000 101 ® -0.7720 43.1916 42.9709 -Arial.ttf 78 I 5.6936 42.0000 102 © -0.5721 43.1916 42.9709 -Arial.ttf 78 I 5.6936 42.0000 103 ] 0.1517 11.0000 53.6167 -Arial.ttf 78 I 5.6936 42.0000 104 é -1.2112 27.4690 43.5020 -Arial.ttf 78 I 5.6936 42.0000 105 z 11.0397 26.3123 30.8793 -Arial.ttf 78 I 5.6936 42.0000 106 _ 48.1803 33.3832 5.2626 -Arial.ttf 78 I 5.6936 42.0000 107 ¥ 0.0885 32.0291 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 1 t -0.0276 15.0709 42.3103 -Arial.ttf 79 ° 15.8083 15.8083 2 h 0.1544 24.2793 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 3 a 10.0007 27.4690 32.3813 -Arial.ttf 79 ° 15.8083 15.8083 4 n 9.9429 24.2793 32.0709 -Arial.ttf 79 ° 15.8083 15.8083 5 P -0.0318 31.4542 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 6 o 10.0118 27.4690 32.3813 -Arial.ttf 79 ° 15.8083 15.8083 7 e 9.7744 27.4690 32.3813 -Arial.ttf 79 ° 15.8083 15.8083 8 : 11.4877 5.2626 30.8793 -Arial.ttf 79 ° 15.8083 15.8083 9 r 9.8230 16.5689 32.0709 -Arial.ttf 79 ° 15.8083 15.8083 10 l 0.0000 5.2626 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 11 i -0.0295 5.2626 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 12 1 0.3008 15.2355 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 13 | -0.0784 4.1916 54.4980 -Arial.ttf 79 ° 15.8083 15.8083 14 N 0.1363 32.9083 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 15 f -0.1902 18.0709 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 16 g 9.9636 26.3123 43.6877 -Arial.ttf 79 ° 15.8083 15.8083 17 d -0.0885 26.3123 42.3103 -Arial.ttf 79 ° 15.8083 15.8083 18 W -0.0371 57.1916 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 19 s 9.9747 24.9561 32.3813 -Arial.ttf 79 ° 15.8083 15.8083 20 c 9.8507 26.8084 32.3813 -Arial.ttf 79 ° 15.8083 15.8083 21 u 10.9481 24.2793 31.1896 -Arial.ttf 79 ° 15.8083 15.8083 22 3 0.5161 26.8483 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 23 ~ 16.8432 29.9083 10.9561 -Arial.ttf 79 ° 15.8083 15.8083 24 # -0.2621 31.2646 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 25 O -0.4686 39.5749 43.3212 -Arial.ttf 79 ° 15.8083 15.8083 26 ` -0.1506 10.9561 8.0769 -Arial.ttf 79 ° 15.8083 15.8083 27 @ 0.1061 54.1478 54.3123 -Arial.ttf 79 ° 15.8083 15.8083 28 F 0.1266 28.2207 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 29 S -0.8270 33.0001 43.3212 -Arial.ttf 79 ° 15.8083 15.8083 30 p 9.8866 26.3123 43.6877 -Arial.ttf 79 ° 15.8083 15.8083 31 “ 0.1168 13.5690 14.0000 -Arial.ttf 79 ° 15.8083 15.8083 32 % -0.1243 44.8793 42.3103 -Arial.ttf 79 ° 15.8083 15.8083 33 £ 0.0885 29.8522 42.3103 -Arial.ttf 79 ° 15.8083 15.8083 34 . 36.7374 5.2626 5.2626 -Arial.ttf 79 ° 15.8083 15.8083 35 2 0.4674 28.6956 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 36 5 0.5167 26.8483 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 37 m 10.1662 41.4044 32.0709 -Arial.ttf 79 ° 15.8083 15.8083 38 V 0.0540 40.5788 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 39 6 0.2161 27.8542 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 40 w 11.2474 43.4212 30.8793 -Arial.ttf 79 ° 15.8083 15.8083 41 T 0.0598 33.6936 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 42 M 0.1446 40.5788 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 43 G -0.7146 38.6897 43.3212 -Arial.ttf 79 ° 15.8083 15.8083 44 b 0.0879 26.3123 42.3103 -Arial.ttf 79 ° 15.8083 15.8083 45 9 0.3629 26.8483 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 46 ; 11.1494 5.2626 39.6167 -Arial.ttf 79 ° 15.8083 15.8083 47 D 0.2636 34.4542 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 48 L 0.0054 25.8813 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 49 y 11.2889 28.0000 42.4960 -Arial.ttf 79 ° 15.8083 15.8083 50 ‘ 0.1958 5.9231 14.0000 -Arial.ttf 79 ° 15.8083 15.8083 51 \ -0.1946 17.5749 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 52 R 0.0260 36.7497 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 53 < 7.6794 27.8354 27.8704 -Arial.ttf 79 ° 15.8083 15.8083 54 4 0.2563 28.3503 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 55 8 0.3931 26.6626 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 56 0 0.2964 26.8483 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 57 A 0.1905 40.5788 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 58 E -0.1448 31.4542 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 59 B -0.0609 31.4542 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 60 v 11.3356 27.8704 30.8793 -Arial.ttf 79 ° 15.8083 15.8083 61 k 0.0953 25.1207 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 62 J 0.0604 24.0291 42.6606 -Arial.ttf 79 ° 15.8083 15.8083 63 U 0.0929 32.9083 42.6606 -Arial.ttf 79 ° 15.8083 15.8083 64 j -0.0969 12.3773 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 65 ( 0.0508 14.4103 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 66 7 0.1905 26.8523 41.6897 -Arial.ttf 79 ° 15.8083 15.8083 67 § 0.1394 26.9729 53.9271 -Arial.ttf 79 ° 15.8083 15.8083 68 $ -1.9197 27.6897 49.3355 -Arial.ttf 79 ° 15.8083 15.8083 69 € -0.5778 33.0769 43.3212 -Arial.ttf 79 ° 15.8083 15.8083 70 / -0.1310 17.5749 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 71 C -0.6924 36.0000 43.3212 -Arial.ttf 79 ° 15.8083 15.8083 72 * 0.0050 20.3453 17.8852 -Arial.ttf 79 ° 15.8083 15.8083 73 ” -0.0236 14.2296 14.0000 -Arial.ttf 79 ° 15.8083 15.8083 74 ? 0.1463 26.8483 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 75 { -0.0797 16.7375 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 76 } -0.0534 16.7375 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 77 , 36.7665 5.2626 14.0000 -Arial.ttf 79 ° 15.8083 15.8083 78 I -0.1174 5.6936 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 79 ° 0.0716 15.8083 15.8083 -Arial.ttf 79 ° 15.8083 15.8083 80 K 0.1453 34.5749 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 81 H 0.0685 32.9083 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 82 q 9.6906 26.3123 43.6877 -Arial.ttf 79 ° 15.8083 15.8083 83 & -0.1203 35.1148 42.3103 -Arial.ttf 79 ° 15.8083 15.8083 84 ’ -0.0885 5.9231 14.0000 -Arial.ttf 79 ° 15.8083 15.8083 85 [ 0.0403 11.0000 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 86 - 24.1182 15.4980 5.2626 -Arial.ttf 79 ° 15.8083 15.8083 87 Y 0.1199 38.4601 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 88 Q -0.8659 39.5749 46.3212 -Arial.ttf 79 ° 15.8083 15.8083 89 " -0.1071 15.8083 15.1916 -Arial.ttf 79 ° 15.8083 15.8083 90 ! -0.2483 5.2626 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 91 x 10.8671 29.1060 30.8793 -Arial.ttf 79 ° 15.8083 15.8083 92 ) -0.0662 14.4103 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 93 = 11.8869 27.8793 17.8852 -Arial.ttf 79 ° 15.8083 15.8083 94 + 7.7171 27.8753 27.8753 -Arial.ttf 79 ° 15.8083 15.8083 95 X 0.1791 37.6626 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 96 » 14.1544 25.0439 26.1917 -Arial.ttf 79 ° 15.8083 15.8083 97 ' -0.2414 5.2626 15.1916 -Arial.ttf 79 ° 15.8083 15.8083 98 ¢ -0.0030 25.7813 54.2685 -Arial.ttf 79 ° 15.8083 15.8083 99 Z 0.0816 33.0729 42.0000 -Arial.ttf 79 ° 15.8083 15.8083 100 > 7.6906 27.8354 27.8704 -Arial.ttf 79 ° 15.8083 15.8083 101 ® -0.4190 43.1916 42.9709 -Arial.ttf 79 ° 15.8083 15.8083 102 © -0.5079 43.1916 42.9709 -Arial.ttf 79 ° 15.8083 15.8083 103 ] 0.0747 11.0000 53.6167 -Arial.ttf 79 ° 15.8083 15.8083 104 é -1.2085 27.4690 43.5020 -Arial.ttf 79 ° 15.8083 15.8083 105 z 10.9143 26.3123 30.8793 -Arial.ttf 79 ° 15.8083 15.8083 106 _ 48.4741 33.3832 5.2626 -Arial.ttf 79 ° 15.8083 15.8083 107 ¥ 0.0218 32.0291 42.0000 -Arial.ttf 80 K 34.5749 42.0000 1 t 0.2047 15.0709 42.3103 -Arial.ttf 80 K 34.5749 42.0000 2 h 0.1225 24.2793 42.0000 -Arial.ttf 80 K 34.5749 42.0000 3 a 9.6904 27.4690 32.3813 -Arial.ttf 80 K 34.5749 42.0000 4 n 9.8177 24.2793 32.0709 -Arial.ttf 80 K 34.5749 42.0000 5 P 0.1557 31.4542 42.0000 -Arial.ttf 80 K 34.5749 42.0000 6 o 10.0973 27.4690 32.3813 -Arial.ttf 80 K 34.5749 42.0000 7 e 10.4362 27.4690 32.3813 -Arial.ttf 80 K 34.5749 42.0000 8 : 11.3078 5.2626 30.8793 -Arial.ttf 80 K 34.5749 42.0000 9 r 10.0437 16.5689 32.0709 -Arial.ttf 80 K 34.5749 42.0000 10 l -0.0770 5.2626 42.0000 -Arial.ttf 80 K 34.5749 42.0000 11 i -0.0966 5.2626 42.0000 -Arial.ttf 80 K 34.5749 42.0000 12 1 -0.0022 15.2355 41.6897 -Arial.ttf 80 K 34.5749 42.0000 13 | -0.0260 4.1916 54.4980 -Arial.ttf 80 K 34.5749 42.0000 14 N -0.1050 32.9083 42.0000 -Arial.ttf 80 K 34.5749 42.0000 15 f -0.1019 18.0709 42.0000 -Arial.ttf 80 K 34.5749 42.0000 16 g 9.8491 26.3123 43.6877 -Arial.ttf 80 K 34.5749 42.0000 17 d 0.0784 26.3123 42.3103 -Arial.ttf 80 K 34.5749 42.0000 18 W -0.1344 57.1916 42.0000 -Arial.ttf 80 K 34.5749 42.0000 19 s 9.9353 24.9561 32.3813 -Arial.ttf 80 K 34.5749 42.0000 20 c 10.0008 26.8084 32.3813 -Arial.ttf 80 K 34.5749 42.0000 21 u 10.9592 24.2793 31.1896 -Arial.ttf 80 K 34.5749 42.0000 22 3 0.7409 26.8483 41.6897 -Arial.ttf 80 K 34.5749 42.0000 23 ~ 16.8926 29.9083 10.9561 -Arial.ttf 80 K 34.5749 42.0000 24 # -0.1893 31.2646 42.0000 -Arial.ttf 80 K 34.5749 42.0000 25 O -0.6251 39.5749 43.3212 -Arial.ttf 80 K 34.5749 42.0000 26 ` -0.0027 10.9561 8.0769 -Arial.ttf 80 K 34.5749 42.0000 27 @ 0.2129 54.1478 54.3123 -Arial.ttf 80 K 34.5749 42.0000 28 F -0.2154 28.2207 42.0000 -Arial.ttf 80 K 34.5749 42.0000 29 S -0.6748 33.0001 43.3212 -Arial.ttf 80 K 34.5749 42.0000 30 p 10.2334 26.3123 43.6877 -Arial.ttf 80 K 34.5749 42.0000 31 “ -0.2289 13.5690 14.0000 -Arial.ttf 80 K 34.5749 42.0000 32 % -0.0726 44.8793 42.3103 -Arial.ttf 80 K 34.5749 42.0000 33 £ -0.1161 29.8522 42.3103 -Arial.ttf 80 K 34.5749 42.0000 34 . 36.7199 5.2626 5.2626 -Arial.ttf 80 K 34.5749 42.0000 35 2 0.2971 28.6956 41.6897 -Arial.ttf 80 K 34.5749 42.0000 36 5 0.4471 26.8483 41.6897 -Arial.ttf 80 K 34.5749 42.0000 37 m 9.9509 41.4044 32.0709 -Arial.ttf 80 K 34.5749 42.0000 38 V 0.0217 40.5788 42.0000 -Arial.ttf 80 K 34.5749 42.0000 39 6 0.4398 27.8542 41.6897 -Arial.ttf 80 K 34.5749 42.0000 40 w 11.1950 43.4212 30.8793 -Arial.ttf 80 K 34.5749 42.0000 41 T 0.0111 33.6936 42.0000 -Arial.ttf 80 K 34.5749 42.0000 42 M 0.0609 40.5788 42.0000 -Arial.ttf 80 K 34.5749 42.0000 43 G -0.5959 38.6897 43.3212 -Arial.ttf 80 K 34.5749 42.0000 44 b 0.2289 26.3123 42.3103 -Arial.ttf 80 K 34.5749 42.0000 45 9 0.4741 26.8483 41.6897 -Arial.ttf 80 K 34.5749 42.0000 46 ; 11.1220 5.2626 39.6167 -Arial.ttf 80 K 34.5749 42.0000 47 D -0.2014 34.4542 42.0000 -Arial.ttf 80 K 34.5749 42.0000 48 L 0.0527 25.8813 42.0000 -Arial.ttf 80 K 34.5749 42.0000 49 y 10.9951 28.0000 42.4960 -Arial.ttf 80 K 34.5749 42.0000 50 ‘ -0.0874 5.9231 14.0000 -Arial.ttf 80 K 34.5749 42.0000 51 \ -0.2705 17.5749 42.0000 -Arial.ttf 80 K 34.5749 42.0000 52 R -0.0318 36.7497 42.0000 -Arial.ttf 80 K 34.5749 42.0000 53 < 7.4615 27.8354 27.8704 -Arial.ttf 80 K 34.5749 42.0000 54 4 0.4567 28.3503 41.6897 -Arial.ttf 80 K 34.5749 42.0000 55 8 0.5582 26.6626 41.6897 -Arial.ttf 80 K 34.5749 42.0000 56 0 0.4095 26.8483 41.6897 -Arial.ttf 80 K 34.5749 42.0000 57 A -0.1835 40.5788 42.0000 -Arial.ttf 80 K 34.5749 42.0000 58 E -0.2456 31.4542 42.0000 -Arial.ttf 80 K 34.5749 42.0000 59 B 0.0492 31.4542 42.0000 -Arial.ttf 80 K 34.5749 42.0000 60 v 11.2052 27.8704 30.8793 -Arial.ttf 80 K 34.5749 42.0000 61 k 0.0276 25.1207 42.0000 -Arial.ttf 80 K 34.5749 42.0000 62 J -0.0879 24.0291 42.6606 -Arial.ttf 80 K 34.5749 42.0000 63 U 0.0744 32.9083 42.6606 -Arial.ttf 80 K 34.5749 42.0000 64 j 0.0800 12.3773 53.6167 -Arial.ttf 80 K 34.5749 42.0000 65 ( -0.0398 14.4103 53.6167 -Arial.ttf 80 K 34.5749 42.0000 66 7 0.3236 26.8523 41.6897 -Arial.ttf 80 K 34.5749 42.0000 67 § 0.2126 26.9729 53.9271 -Arial.ttf 80 K 34.5749 42.0000 68 $ -1.9129 27.6897 49.3355 -Arial.ttf 80 K 34.5749 42.0000 69 € -0.6096 33.0769 43.3212 -Arial.ttf 80 K 34.5749 42.0000 70 / -0.2222 17.5749 42.0000 -Arial.ttf 80 K 34.5749 42.0000 71 C -0.4522 36.0000 43.3212 -Arial.ttf 80 K 34.5749 42.0000 72 * 0.0429 20.3453 17.8852 -Arial.ttf 80 K 34.5749 42.0000 73 ” -0.2164 14.2296 14.0000 -Arial.ttf 80 K 34.5749 42.0000 74 ? -0.2152 26.8483 42.0000 -Arial.ttf 80 K 34.5749 42.0000 75 { 0.0864 16.7375 53.6167 -Arial.ttf 80 K 34.5749 42.0000 76 } 0.1899 16.7375 53.6167 -Arial.ttf 80 K 34.5749 42.0000 77 , 36.7543 5.2626 14.0000 -Arial.ttf 80 K 34.5749 42.0000 78 I -0.0038 5.6936 42.0000 -Arial.ttf 80 K 34.5749 42.0000 79 ° 0.1873 15.8083 15.8083 -Arial.ttf 80 K 34.5749 42.0000 80 K 0.0249 34.5749 42.0000 -Arial.ttf 80 K 34.5749 42.0000 81 H -0.1341 32.9083 42.0000 -Arial.ttf 80 K 34.5749 42.0000 82 q 10.3702 26.3123 43.6877 -Arial.ttf 80 K 34.5749 42.0000 83 & 0.1341 35.1148 42.3103 -Arial.ttf 80 K 34.5749 42.0000 84 ’ 0.0881 5.9231 14.0000 -Arial.ttf 80 K 34.5749 42.0000 85 [ -0.2401 11.0000 53.6167 -Arial.ttf 80 K 34.5749 42.0000 86 - 24.2591 15.4980 5.2626 -Arial.ttf 80 K 34.5749 42.0000 87 Y 0.1050 38.4601 42.0000 -Arial.ttf 80 K 34.5749 42.0000 88 Q -0.3822 39.5749 46.3212 -Arial.ttf 80 K 34.5749 42.0000 89 " 0.0031 15.8083 15.1916 -Arial.ttf 80 K 34.5749 42.0000 90 ! 0.0149 5.2626 42.0000 -Arial.ttf 80 K 34.5749 42.0000 91 x 10.7691 29.1060 30.8793 -Arial.ttf 80 K 34.5749 42.0000 92 ) -0.0440 14.4103 53.6167 -Arial.ttf 80 K 34.5749 42.0000 93 = 11.8403 27.8793 17.8852 -Arial.ttf 80 K 34.5749 42.0000 94 + 7.7000 27.8753 27.8753 -Arial.ttf 80 K 34.5749 42.0000 95 X -0.2141 37.6626 42.0000 -Arial.ttf 80 K 34.5749 42.0000 96 » 13.7631 25.0439 26.1917 -Arial.ttf 80 K 34.5749 42.0000 97 ' 0.0716 5.2626 15.1916 -Arial.ttf 80 K 34.5749 42.0000 98 ¢ -0.0560 25.7813 54.2685 -Arial.ttf 80 K 34.5749 42.0000 99 Z 0.2121 33.0729 42.0000 -Arial.ttf 80 K 34.5749 42.0000 100 > 7.8025 27.8354 27.8704 -Arial.ttf 80 K 34.5749 42.0000 101 ® -0.6457 43.1916 42.9709 -Arial.ttf 80 K 34.5749 42.0000 102 © -0.5847 43.1916 42.9709 -Arial.ttf 80 K 34.5749 42.0000 103 ] -0.0272 11.0000 53.6167 -Arial.ttf 80 K 34.5749 42.0000 104 é -1.2261 27.4690 43.5020 -Arial.ttf 80 K 34.5749 42.0000 105 z 11.0487 26.3123 30.8793 -Arial.ttf 80 K 34.5749 42.0000 106 _ 48.2152 33.3832 5.2626 -Arial.ttf 80 K 34.5749 42.0000 107 ¥ 0.0371 32.0291 42.0000 -Arial.ttf 81 H 32.9083 42.0000 1 t -0.1708 15.0709 42.3103 -Arial.ttf 81 H 32.9083 42.0000 2 h 0.0145 24.2793 42.0000 -Arial.ttf 81 H 32.9083 42.0000 3 a 9.6809 27.4690 32.3813 -Arial.ttf 81 H 32.9083 42.0000 4 n 9.9429 24.2793 32.0709 -Arial.ttf 81 H 32.9083 42.0000 5 P 0.0547 31.4542 42.0000 -Arial.ttf 81 H 32.9083 42.0000 6 o 9.8419 27.4690 32.3813 -Arial.ttf 81 H 32.9083 42.0000 7 e 10.0691 27.4690 32.3813 -Arial.ttf 81 H 32.9083 42.0000 8 : 11.3068 5.2626 30.8793 -Arial.ttf 81 H 32.9083 42.0000 9 r 9.9360 16.5689 32.0709 -Arial.ttf 81 H 32.9083 42.0000 10 l 0.3873 5.2626 42.0000 -Arial.ttf 81 H 32.9083 42.0000 11 i 0.3368 5.2626 42.0000 -Arial.ttf 81 H 32.9083 42.0000 12 1 0.2085 15.2355 41.6897 -Arial.ttf 81 H 32.9083 42.0000 13 | 0.0981 4.1916 54.4980 -Arial.ttf 81 H 32.9083 42.0000 14 N -0.0734 32.9083 42.0000 -Arial.ttf 81 H 32.9083 42.0000 15 f -0.0017 18.0709 42.0000 -Arial.ttf 81 H 32.9083 42.0000 16 g 10.0394 26.3123 43.6877 -Arial.ttf 81 H 32.9083 42.0000 17 d 0.0800 26.3123 42.3103 -Arial.ttf 81 H 32.9083 42.0000 18 W 0.0801 57.1916 42.0000 -Arial.ttf 81 H 32.9083 42.0000 19 s 9.8775 24.9561 32.3813 -Arial.ttf 81 H 32.9083 42.0000 20 c 10.1141 26.8084 32.3813 -Arial.ttf 81 H 32.9083 42.0000 21 u 11.2889 24.2793 31.1896 -Arial.ttf 81 H 32.9083 42.0000 22 3 0.3019 26.8483 41.6897 -Arial.ttf 81 H 32.9083 42.0000 23 ~ 17.0655 29.9083 10.9561 -Arial.ttf 81 H 32.9083 42.0000 24 # 0.1118 31.2646 42.0000 -Arial.ttf 81 H 32.9083 42.0000 25 O -0.6220 39.5749 43.3212 -Arial.ttf 81 H 32.9083 42.0000 26 ` 0.0192 10.9561 8.0769 -Arial.ttf 81 H 32.9083 42.0000 27 @ -0.0484 54.1478 54.3123 -Arial.ttf 81 H 32.9083 42.0000 28 F 0.3016 28.2207 42.0000 -Arial.ttf 81 H 32.9083 42.0000 29 S -0.7890 33.0001 43.3212 -Arial.ttf 81 H 32.9083 42.0000 30 p 9.7774 26.3123 43.6877 -Arial.ttf 81 H 32.9083 42.0000 31 “ -0.3655 13.5690 14.0000 -Arial.ttf 81 H 32.9083 42.0000 32 % 0.1285 44.8793 42.3103 -Arial.ttf 81 H 32.9083 42.0000 33 £ -0.0657 29.8522 42.3103 -Arial.ttf 81 H 32.9083 42.0000 34 . 36.4946 5.2626 5.2626 -Arial.ttf 81 H 32.9083 42.0000 35 2 0.5352 28.6956 41.6897 -Arial.ttf 81 H 32.9083 42.0000 36 5 0.0414 26.8483 41.6897 -Arial.ttf 81 H 32.9083 42.0000 37 m 10.0649 41.4044 32.0709 -Arial.ttf 81 H 32.9083 42.0000 38 V 0.3697 40.5788 42.0000 -Arial.ttf 81 H 32.9083 42.0000 39 6 0.3516 27.8542 41.6897 -Arial.ttf 81 H 32.9083 42.0000 40 w 10.9468 43.4212 30.8793 -Arial.ttf 81 H 32.9083 42.0000 41 T -0.1507 33.6936 42.0000 -Arial.ttf 81 H 32.9083 42.0000 42 M 0.0031 40.5788 42.0000 -Arial.ttf 81 H 32.9083 42.0000 43 G -0.5075 38.6897 43.3212 -Arial.ttf 81 H 32.9083 42.0000 44 b -0.0065 26.3123 42.3103 -Arial.ttf 81 H 32.9083 42.0000 45 9 0.2759 26.8483 41.6897 -Arial.ttf 81 H 32.9083 42.0000 46 ; 11.0422 5.2626 39.6167 -Arial.ttf 81 H 32.9083 42.0000 47 D -0.2672 34.4542 42.0000 -Arial.ttf 81 H 32.9083 42.0000 48 L -0.3780 25.8813 42.0000 -Arial.ttf 81 H 32.9083 42.0000 49 y 10.9880 28.0000 42.4960 -Arial.ttf 81 H 32.9083 42.0000 50 ‘ 0.0361 5.9231 14.0000 -Arial.ttf 81 H 32.9083 42.0000 51 \ 0.2317 17.5749 42.0000 -Arial.ttf 81 H 32.9083 42.0000 52 R 0.0169 36.7497 42.0000 -Arial.ttf 81 H 32.9083 42.0000 53 < 7.8421 27.8354 27.8704 -Arial.ttf 81 H 32.9083 42.0000 54 4 0.1587 28.3503 41.6897 -Arial.ttf 81 H 32.9083 42.0000 55 8 0.5272 26.6626 41.6897 -Arial.ttf 81 H 32.9083 42.0000 56 0 0.3156 26.8483 41.6897 -Arial.ttf 81 H 32.9083 42.0000 57 A -0.0949 40.5788 42.0000 -Arial.ttf 81 H 32.9083 42.0000 58 E 0.0430 31.4542 42.0000 -Arial.ttf 81 H 32.9083 42.0000 59 B 0.1755 31.4542 42.0000 -Arial.ttf 81 H 32.9083 42.0000 60 v 11.1203 27.8704 30.8793 -Arial.ttf 81 H 32.9083 42.0000 61 k 0.0908 25.1207 42.0000 -Arial.ttf 81 H 32.9083 42.0000 62 J 0.2409 24.0291 42.6606 -Arial.ttf 81 H 32.9083 42.0000 63 U -0.1713 32.9083 42.6606 -Arial.ttf 81 H 32.9083 42.0000 64 j -0.0152 12.3773 53.6167 -Arial.ttf 81 H 32.9083 42.0000 65 ( 0.1161 14.4103 53.6167 -Arial.ttf 81 H 32.9083 42.0000 66 7 0.0991 26.8523 41.6897 -Arial.ttf 81 H 32.9083 42.0000 67 § -0.3002 26.9729 53.9271 -Arial.ttf 81 H 32.9083 42.0000 68 $ -1.9770 27.6897 49.3355 -Arial.ttf 81 H 32.9083 42.0000 69 € -0.6096 33.0769 43.3212 -Arial.ttf 81 H 32.9083 42.0000 70 / 0.0333 17.5749 42.0000 -Arial.ttf 81 H 32.9083 42.0000 71 C -0.8707 36.0000 43.3212 -Arial.ttf 81 H 32.9083 42.0000 72 * -0.0249 20.3453 17.8852 -Arial.ttf 81 H 32.9083 42.0000 73 ” 0.2141 14.2296 14.0000 -Arial.ttf 81 H 32.9083 42.0000 74 ? -0.2371 26.8483 42.0000 -Arial.ttf 81 H 32.9083 42.0000 75 { -0.2138 16.7375 53.6167 -Arial.ttf 81 H 32.9083 42.0000 76 } -0.0540 16.7375 53.6167 -Arial.ttf 81 H 32.9083 42.0000 77 , 36.7512 5.2626 14.0000 -Arial.ttf 81 H 32.9083 42.0000 78 I -0.1851 5.6936 42.0000 -Arial.ttf 81 H 32.9083 42.0000 79 ° -0.2164 15.8083 15.8083 -Arial.ttf 81 H 32.9083 42.0000 80 K -0.0881 34.5749 42.0000 -Arial.ttf 81 H 32.9083 42.0000 81 H 0.3368 32.9083 42.0000 -Arial.ttf 81 H 32.9083 42.0000 82 q 9.9637 26.3123 43.6877 -Arial.ttf 81 H 32.9083 42.0000 83 & -0.1486 35.1148 42.3103 -Arial.ttf 81 H 32.9083 42.0000 84 ’ 0.0731 5.9231 14.0000 -Arial.ttf 81 H 32.9083 42.0000 85 [ 0.1231 11.0000 53.6167 -Arial.ttf 81 H 32.9083 42.0000 86 - 24.3057 15.4980 5.2626 -Arial.ttf 81 H 32.9083 42.0000 87 Y 0.0238 38.4601 42.0000 -Arial.ttf 81 H 32.9083 42.0000 88 Q -0.7890 39.5749 46.3212 -Arial.ttf 81 H 32.9083 42.0000 89 " -0.1699 15.8083 15.1916 -Arial.ttf 81 H 32.9083 42.0000 90 ! 0.1193 5.2626 42.0000 -Arial.ttf 81 H 32.9083 42.0000 91 x 11.1642 29.1060 30.8793 -Arial.ttf 81 H 32.9083 42.0000 92 ) -0.1118 14.4103 53.6167 -Arial.ttf 81 H 32.9083 42.0000 93 = 11.7438 27.8793 17.8852 -Arial.ttf 81 H 32.9083 42.0000 94 + 7.4412 27.8753 27.8753 -Arial.ttf 81 H 32.9083 42.0000 95 X -0.4498 37.6626 42.0000 -Arial.ttf 81 H 32.9083 42.0000 96 » 14.0522 25.0439 26.1917 -Arial.ttf 81 H 32.9083 42.0000 97 ' 0.0706 5.2626 15.1916 -Arial.ttf 81 H 32.9083 42.0000 98 ¢ -0.0825 25.7813 54.2685 -Arial.ttf 81 H 32.9083 42.0000 99 Z 0.0986 33.0729 42.0000 -Arial.ttf 81 H 32.9083 42.0000 100 > 7.3937 27.8354 27.8704 -Arial.ttf 81 H 32.9083 42.0000 101 ® -0.7133 43.1916 42.9709 -Arial.ttf 81 H 32.9083 42.0000 102 © -0.8758 43.1916 42.9709 -Arial.ttf 81 H 32.9083 42.0000 103 ] 0.2621 11.0000 53.6167 -Arial.ttf 81 H 32.9083 42.0000 104 é -1.1625 27.4690 43.5020 -Arial.ttf 81 H 32.9083 42.0000 105 z 10.9337 26.3123 30.8793 -Arial.ttf 81 H 32.9083 42.0000 106 _ 48.3170 33.3832 5.2626 -Arial.ttf 81 H 32.9083 42.0000 107 ¥ 0.1379 32.0291 42.0000 -Arial.ttf 82 q 26.3123 43.6877 1 t -9.5343 15.0709 42.3103 -Arial.ttf 82 q 26.3123 43.6877 2 h -9.6517 24.2793 42.0000 -Arial.ttf 82 q 26.3123 43.6877 3 a -0.0456 27.4690 32.3813 -Arial.ttf 82 q 26.3123 43.6877 4 n 0.1858 24.2793 32.0709 -Arial.ttf 82 q 26.3123 43.6877 5 P -9.9899 31.4542 42.0000 -Arial.ttf 82 q 26.3123 43.6877 6 o -0.0678 27.4690 32.3813 -Arial.ttf 82 q 26.3123 43.6877 7 e -0.1092 27.4690 32.3813 -Arial.ttf 82 q 26.3123 43.6877 8 : 1.3560 5.2626 30.8793 -Arial.ttf 82 q 26.3123 43.6877 9 r -0.1172 16.5689 32.0709 -Arial.ttf 82 q 26.3123 43.6877 10 l -10.1128 5.2626 42.0000 -Arial.ttf 82 q 26.3123 43.6877 11 i -9.6156 5.2626 42.0000 -Arial.ttf 82 q 26.3123 43.6877 12 1 -9.6573 15.2355 41.6897 -Arial.ttf 82 q 26.3123 43.6877 13 | -9.9046 4.1916 54.4980 -Arial.ttf 82 q 26.3123 43.6877 14 N -10.1635 32.9083 42.0000 -Arial.ttf 82 q 26.3123 43.6877 15 f -10.1539 18.0709 42.0000 -Arial.ttf 82 q 26.3123 43.6877 16 g 0.2249 26.3123 43.6877 -Arial.ttf 82 q 26.3123 43.6877 17 d -9.7885 26.3123 42.3103 -Arial.ttf 82 q 26.3123 43.6877 18 W -10.0601 57.1916 42.0000 -Arial.ttf 82 q 26.3123 43.6877 19 s -0.4179 24.9561 32.3813 -Arial.ttf 82 q 26.3123 43.6877 20 c 0.1563 26.8084 32.3813 -Arial.ttf 82 q 26.3123 43.6877 21 u 1.1403 24.2793 31.1896 -Arial.ttf 82 q 26.3123 43.6877 22 3 -9.2586 26.8483 41.6897 -Arial.ttf 82 q 26.3123 43.6877 23 ~ 6.9184 29.9083 10.9561 -Arial.ttf 82 q 26.3123 43.6877 24 # -9.8379 31.2646 42.0000 -Arial.ttf 82 q 26.3123 43.6877 25 O -10.2588 39.5749 43.3212 -Arial.ttf 82 q 26.3123 43.6877 26 ` -10.0256 10.9561 8.0769 -Arial.ttf 82 q 26.3123 43.6877 27 @ -9.9429 54.1478 54.3123 -Arial.ttf 82 q 26.3123 43.6877 28 F -9.9769 28.2207 42.0000 -Arial.ttf 82 q 26.3123 43.6877 29 S -10.6342 33.0001 43.3212 -Arial.ttf 82 q 26.3123 43.6877 30 p -0.1713 26.3123 43.6877 -Arial.ttf 82 q 26.3123 43.6877 31 “ -9.9652 13.5690 14.0000 -Arial.ttf 82 q 26.3123 43.6877 32 % -9.8230 44.8793 42.3103 -Arial.ttf 82 q 26.3123 43.6877 33 £ -9.9690 29.8522 42.3103 -Arial.ttf 82 q 26.3123 43.6877 34 . 26.7850 5.2626 5.2626 -Arial.ttf 82 q 26.3123 43.6877 35 2 -9.6590 28.6956 41.6897 -Arial.ttf 82 q 26.3123 43.6877 36 5 -10.0440 26.8483 41.6897 -Arial.ttf 82 q 26.3123 43.6877 37 m 0.1484 41.4044 32.0709 -Arial.ttf 82 q 26.3123 43.6877 38 V -10.3141 40.5788 42.0000 -Arial.ttf 82 q 26.3123 43.6877 39 6 -9.5596 27.8542 41.6897 -Arial.ttf 82 q 26.3123 43.6877 40 w 0.8761 43.4212 30.8793 -Arial.ttf 82 q 26.3123 43.6877 41 T -10.0003 33.6936 42.0000 -Arial.ttf 82 q 26.3123 43.6877 42 M -9.8453 40.5788 42.0000 -Arial.ttf 82 q 26.3123 43.6877 43 G -10.5197 38.6897 43.3212 -Arial.ttf 82 q 26.3123 43.6877 44 b -10.0865 26.3123 42.3103 -Arial.ttf 82 q 26.3123 43.6877 45 9 -9.5025 26.8483 41.6897 -Arial.ttf 82 q 26.3123 43.6877 46 ; 1.1396 5.2626 39.6167 -Arial.ttf 82 q 26.3123 43.6877 47 D -9.8410 34.4542 42.0000 -Arial.ttf 82 q 26.3123 43.6877 48 L -9.7402 25.8813 42.0000 -Arial.ttf 82 q 26.3123 43.6877 49 y 1.2054 28.0000 42.4960 -Arial.ttf 82 q 26.3123 43.6877 50 ‘ -10.1504 5.9231 14.0000 -Arial.ttf 82 q 26.3123 43.6877 51 \ -10.1375 17.5749 42.0000 -Arial.ttf 82 q 26.3123 43.6877 52 R -9.9636 36.7497 42.0000 -Arial.ttf 82 q 26.3123 43.6877 53 < -2.5032 27.8354 27.8704 -Arial.ttf 82 q 26.3123 43.6877 54 4 -9.6118 28.3503 41.6897 -Arial.ttf 82 q 26.3123 43.6877 55 8 -9.6076 26.6626 41.6897 -Arial.ttf 82 q 26.3123 43.6877 56 0 -9.8616 26.8483 41.6897 -Arial.ttf 82 q 26.3123 43.6877 57 A -9.9291 40.5788 42.0000 -Arial.ttf 82 q 26.3123 43.6877 58 E -10.0187 31.4542 42.0000 -Arial.ttf 82 q 26.3123 43.6877 59 B -10.0632 31.4542 42.0000 -Arial.ttf 82 q 26.3123 43.6877 60 v 1.0951 27.8704 30.8793 -Arial.ttf 82 q 26.3123 43.6877 61 k -9.8184 25.1207 42.0000 -Arial.ttf 82 q 26.3123 43.6877 62 J -10.1344 24.0291 42.6606 -Arial.ttf 82 q 26.3123 43.6877 63 U -9.8555 32.9083 42.6606 -Arial.ttf 82 q 26.3123 43.6877 64 j -9.9223 12.3773 53.6167 -Arial.ttf 82 q 26.3123 43.6877 65 ( -9.8835 14.4103 53.6167 -Arial.ttf 82 q 26.3123 43.6877 66 7 -9.9332 26.8523 41.6897 -Arial.ttf 82 q 26.3123 43.6877 67 § -10.0022 26.9729 53.9271 -Arial.ttf 82 q 26.3123 43.6877 68 $ -11.9160 27.6897 49.3355 -Arial.ttf 82 q 26.3123 43.6877 69 € -10.5069 33.0769 43.3212 -Arial.ttf 82 q 26.3123 43.6877 70 / -9.9385 17.5749 42.0000 -Arial.ttf 82 q 26.3123 43.6877 71 C -10.7938 36.0000 43.3212 -Arial.ttf 82 q 26.3123 43.6877 72 * -9.8792 20.3453 17.8852 -Arial.ttf 82 q 26.3123 43.6877 73 ” -9.7744 14.2296 14.0000 -Arial.ttf 82 q 26.3123 43.6877 74 ? -10.1744 26.8483 42.0000 -Arial.ttf 82 q 26.3123 43.6877 75 { -10.0038 16.7375 53.6167 -Arial.ttf 82 q 26.3123 43.6877 76 } -9.9954 16.7375 53.6167 -Arial.ttf 82 q 26.3123 43.6877 77 , 26.8701 5.2626 14.0000 -Arial.ttf 82 q 26.3123 43.6877 78 I -10.0171 5.6936 42.0000 -Arial.ttf 82 q 26.3123 43.6877 79 ° -9.9831 15.8083 15.8083 -Arial.ttf 82 q 26.3123 43.6877 80 K -10.3304 34.5749 42.0000 -Arial.ttf 82 q 26.3123 43.6877 81 H -10.0342 32.9083 42.0000 -Arial.ttf 82 q 26.3123 43.6877 82 q -0.1077 26.3123 43.6877 -Arial.ttf 82 q 26.3123 43.6877 83 & -10.0685 35.1148 42.3103 -Arial.ttf 82 q 26.3123 43.6877 84 ’ -10.1433 5.9231 14.0000 -Arial.ttf 82 q 26.3123 43.6877 85 [ -9.9889 11.0000 53.6167 -Arial.ttf 82 q 26.3123 43.6877 86 - 14.3050 15.4980 5.2626 -Arial.ttf 82 q 26.3123 43.6877 87 Y -9.9349 38.4601 42.0000 -Arial.ttf 82 q 26.3123 43.6877 88 Q -10.4985 39.5749 46.3212 -Arial.ttf 82 q 26.3123 43.6877 89 " -9.8463 15.8083 15.1916 -Arial.ttf 82 q 26.3123 43.6877 90 ! -9.9455 5.2626 42.0000 -Arial.ttf 82 q 26.3123 43.6877 91 x 1.1376 29.1060 30.8793 -Arial.ttf 82 q 26.3123 43.6877 92 ) -9.7026 14.4103 53.6167 -Arial.ttf 82 q 26.3123 43.6877 93 = 2.2146 27.8793 17.8852 -Arial.ttf 82 q 26.3123 43.6877 94 + -2.4545 27.8753 27.8753 -Arial.ttf 82 q 26.3123 43.6877 95 X -9.8287 37.6626 42.0000 -Arial.ttf 82 q 26.3123 43.6877 96 » 3.8932 25.0439 26.1917 -Arial.ttf 82 q 26.3123 43.6877 97 ' -9.7207 5.2626 15.1916 -Arial.ttf 82 q 26.3123 43.6877 98 ¢ -10.3938 25.7813 54.2685 -Arial.ttf 82 q 26.3123 43.6877 99 Z -10.1576 33.0729 42.0000 -Arial.ttf 82 q 26.3123 43.6877 100 > -2.2221 27.8354 27.8704 -Arial.ttf 82 q 26.3123 43.6877 101 ® -10.2645 43.1916 42.9709 -Arial.ttf 82 q 26.3123 43.6877 102 © -10.4874 43.1916 42.9709 -Arial.ttf 82 q 26.3123 43.6877 103 ] -9.9044 11.0000 53.6167 -Arial.ttf 82 q 26.3123 43.6877 104 é -11.1139 27.4690 43.5020 -Arial.ttf 82 q 26.3123 43.6877 105 z 1.5253 26.3123 30.8793 -Arial.ttf 82 q 26.3123 43.6877 106 _ 38.1590 33.3832 5.2626 -Arial.ttf 82 q 26.3123 43.6877 107 ¥ -10.0300 32.0291 42.0000 -Arial.ttf 83 & 35.1148 42.3103 1 t -0.3233 15.0709 42.3103 -Arial.ttf 83 & 35.1148 42.3103 2 h 0.2816 24.2793 42.0000 -Arial.ttf 83 & 35.1148 42.3103 3 a 10.0616 27.4690 32.3813 -Arial.ttf 83 & 35.1148 42.3103 4 n 9.7567 24.2793 32.0709 -Arial.ttf 83 & 35.1148 42.3103 5 P -0.0991 31.4542 42.0000 -Arial.ttf 83 & 35.1148 42.3103 6 o 10.0287 27.4690 32.3813 -Arial.ttf 83 & 35.1148 42.3103 7 e 9.4102 27.4690 32.3813 -Arial.ttf 83 & 35.1148 42.3103 8 : 11.1493 5.2626 30.8793 -Arial.ttf 83 & 35.1148 42.3103 9 r 10.4376 16.5689 32.0709 -Arial.ttf 83 & 35.1148 42.3103 10 l -0.3211 5.2626 42.0000 -Arial.ttf 83 & 35.1148 42.3103 11 i 0.1019 5.2626 42.0000 -Arial.ttf 83 & 35.1148 42.3103 12 1 0.2665 15.2355 41.6897 -Arial.ttf 83 & 35.1148 42.3103 13 | 0.0828 4.1916 54.4980 -Arial.ttf 83 & 35.1148 42.3103 14 N -0.0774 32.9083 42.0000 -Arial.ttf 83 & 35.1148 42.3103 15 f 0.1341 18.0709 42.0000 -Arial.ttf 83 & 35.1148 42.3103 16 g 9.8472 26.3123 43.6877 -Arial.ttf 83 & 35.1148 42.3103 17 d -0.2094 26.3123 42.3103 -Arial.ttf 83 & 35.1148 42.3103 18 W 0.2456 57.1916 42.0000 -Arial.ttf 83 & 35.1148 42.3103 19 s 9.8463 24.9561 32.3813 -Arial.ttf 83 & 35.1148 42.3103 20 c 10.0159 26.8084 32.3813 -Arial.ttf 83 & 35.1148 42.3103 21 u 11.0498 24.2793 31.1896 -Arial.ttf 83 & 35.1148 42.3103 22 3 0.2027 26.8483 41.6897 -Arial.ttf 83 & 35.1148 42.3103 23 ~ 16.8433 29.9083 10.9561 -Arial.ttf 83 & 35.1148 42.3103 24 # -0.2195 31.2646 42.0000 -Arial.ttf 83 & 35.1148 42.3103 25 O -0.9741 39.5749 43.3212 -Arial.ttf 83 & 35.1148 42.3103 26 ` 0.1209 10.9561 8.0769 -Arial.ttf 83 & 35.1148 42.3103 27 @ 0.0084 54.1478 54.3123 -Arial.ttf 83 & 35.1148 42.3103 28 F 0.2381 28.2207 42.0000 -Arial.ttf 83 & 35.1148 42.3103 29 S -0.7654 33.0001 43.3212 -Arial.ttf 83 & 35.1148 42.3103 30 p 9.8794 26.3123 43.6877 -Arial.ttf 83 & 35.1148 42.3103 31 “ -0.1983 13.5690 14.0000 -Arial.ttf 83 & 35.1148 42.3103 32 % 0.0785 44.8793 42.3103 -Arial.ttf 83 & 35.1148 42.3103 33 £ -0.0276 29.8522 42.3103 -Arial.ttf 83 & 35.1148 42.3103 34 . 36.3657 5.2626 5.2626 -Arial.ttf 83 & 35.1148 42.3103 35 2 0.0983 28.6956 41.6897 -Arial.ttf 83 & 35.1148 42.3103 36 5 0.4512 26.8483 41.6897 -Arial.ttf 83 & 35.1148 42.3103 37 m 9.9536 41.4044 32.0709 -Arial.ttf 83 & 35.1148 42.3103 38 V -0.0908 40.5788 42.0000 -Arial.ttf 83 & 35.1148 42.3103 39 6 0.1435 27.8542 41.6897 -Arial.ttf 83 & 35.1148 42.3103 40 w 10.9426 43.4212 30.8793 -Arial.ttf 83 & 35.1148 42.3103 41 T 0.0922 33.6936 42.0000 -Arial.ttf 83 & 35.1148 42.3103 42 M -0.2536 40.5788 42.0000 -Arial.ttf 83 & 35.1148 42.3103 43 G -0.6704 38.6897 43.3212 -Arial.ttf 83 & 35.1148 42.3103 44 b 0.2979 26.3123 42.3103 -Arial.ttf 83 & 35.1148 42.3103 45 9 0.0885 26.8483 41.6897 -Arial.ttf 83 & 35.1148 42.3103 46 ; 11.2754 5.2626 39.6167 -Arial.ttf 83 & 35.1148 42.3103 47 D -0.1294 34.4542 42.0000 -Arial.ttf 83 & 35.1148 42.3103 48 L 0.2689 25.8813 42.0000 -Arial.ttf 83 & 35.1148 42.3103 49 y 11.1361 28.0000 42.4960 -Arial.ttf 83 & 35.1148 42.3103 50 ‘ -0.0398 5.9231 14.0000 -Arial.ttf 83 & 35.1148 42.3103 51 \ 0.0455 17.5749 42.0000 -Arial.ttf 83 & 35.1148 42.3103 52 R -0.1251 36.7497 42.0000 -Arial.ttf 83 & 35.1148 42.3103 53 < 7.3601 27.8354 27.8704 -Arial.ttf 83 & 35.1148 42.3103 54 4 0.0908 28.3503 41.6897 -Arial.ttf 83 & 35.1148 42.3103 55 8 0.2069 26.6626 41.6897 -Arial.ttf 83 & 35.1148 42.3103 56 0 0.2320 26.8483 41.6897 -Arial.ttf 83 & 35.1148 42.3103 57 A -0.0979 40.5788 42.0000 -Arial.ttf 83 & 35.1148 42.3103 58 E -0.1865 31.4542 42.0000 -Arial.ttf 83 & 35.1148 42.3103 59 B -0.0646 31.4542 42.0000 -Arial.ttf 83 & 35.1148 42.3103 60 v 11.3976 27.8704 30.8793 -Arial.ttf 83 & 35.1148 42.3103 61 k 0.0636 25.1207 42.0000 -Arial.ttf 83 & 35.1148 42.3103 62 J -0.2067 24.0291 42.6606 -Arial.ttf 83 & 35.1148 42.3103 63 U 0.2736 32.9083 42.6606 -Arial.ttf 83 & 35.1148 42.3103 64 j 0.1088 12.3773 53.6167 -Arial.ttf 83 & 35.1148 42.3103 65 ( 0.1145 14.4103 53.6167 -Arial.ttf 83 & 35.1148 42.3103 66 7 0.6111 26.8523 41.6897 -Arial.ttf 83 & 35.1148 42.3103 67 § -0.0371 26.9729 53.9271 -Arial.ttf 83 & 35.1148 42.3103 68 $ -2.0882 27.6897 49.3355 -Arial.ttf 83 & 35.1148 42.3103 69 € -0.8452 33.0769 43.3212 -Arial.ttf 83 & 35.1148 42.3103 70 / -0.2540 17.5749 42.0000 -Arial.ttf 83 & 35.1148 42.3103 71 C -0.5605 36.0000 43.3212 -Arial.ttf 83 & 35.1148 42.3103 72 * -0.0509 20.3453 17.8852 -Arial.ttf 83 & 35.1148 42.3103 73 ” 0.3310 14.2296 14.0000 -Arial.ttf 83 & 35.1148 42.3103 74 ? 0.1168 26.8483 42.0000 -Arial.ttf 83 & 35.1148 42.3103 75 { -0.0399 16.7375 53.6167 -Arial.ttf 83 & 35.1148 42.3103 76 } -0.0567 16.7375 53.6167 -Arial.ttf 83 & 35.1148 42.3103 77 , 36.7718 5.2626 14.0000 -Arial.ttf 83 & 35.1148 42.3103 78 I 0.1215 5.6936 42.0000 -Arial.ttf 83 & 35.1148 42.3103 79 ° -0.0399 15.8083 15.8083 -Arial.ttf 83 & 35.1148 42.3103 80 K -0.0098 34.5749 42.0000 -Arial.ttf 83 & 35.1148 42.3103 81 H -0.0692 32.9083 42.0000 -Arial.ttf 83 & 35.1148 42.3103 82 q 10.1922 26.3123 43.6877 -Arial.ttf 83 & 35.1148 42.3103 83 & 0.1088 35.1148 42.3103 -Arial.ttf 83 & 35.1148 42.3103 84 ’ -0.0399 5.9231 14.0000 -Arial.ttf 83 & 35.1148 42.3103 85 [ 0.1395 11.0000 53.6167 -Arial.ttf 83 & 35.1148 42.3103 86 - 24.0162 15.4980 5.2626 -Arial.ttf 83 & 35.1148 42.3103 87 Y 0.2232 38.4601 42.0000 -Arial.ttf 83 & 35.1148 42.3103 88 Q -0.6452 39.5749 46.3212 -Arial.ttf 83 & 35.1148 42.3103 89 " 0.1077 15.8083 15.1916 -Arial.ttf 83 & 35.1148 42.3103 90 ! -0.0412 5.2626 42.0000 -Arial.ttf 83 & 35.1148 42.3103 91 x 10.9859 29.1060 30.8793 -Arial.ttf 83 & 35.1148 42.3103 92 ) -0.0233 14.4103 53.6167 -Arial.ttf 83 & 35.1148 42.3103 93 = 11.7727 27.8793 17.8852 -Arial.ttf 83 & 35.1148 42.3103 94 + 7.4544 27.8753 27.8753 -Arial.ttf 83 & 35.1148 42.3103 95 X -0.2567 37.6626 42.0000 -Arial.ttf 83 & 35.1148 42.3103 96 » 13.8375 25.0439 26.1917 -Arial.ttf 83 & 35.1148 42.3103 97 ' 0.2109 5.2626 15.1916 -Arial.ttf 83 & 35.1148 42.3103 98 ¢ -0.2339 25.7813 54.2685 -Arial.ttf 83 & 35.1148 42.3103 99 Z -0.2344 33.0729 42.0000 -Arial.ttf 83 & 35.1148 42.3103 100 > 7.7209 27.8354 27.8704 -Arial.ttf 83 & 35.1148 42.3103 101 ® -1.0054 43.1916 42.9709 -Arial.ttf 83 & 35.1148 42.3103 102 © -0.6899 43.1916 42.9709 -Arial.ttf 83 & 35.1148 42.3103 103 ] 0.3654 11.0000 53.6167 -Arial.ttf 83 & 35.1148 42.3103 104 é -1.1943 27.4690 43.5020 -Arial.ttf 83 & 35.1148 42.3103 105 z 11.5089 26.3123 30.8793 -Arial.ttf 83 & 35.1148 42.3103 106 _ 48.1873 33.3832 5.2626 -Arial.ttf 83 & 35.1148 42.3103 107 ¥ -0.1876 32.0291 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 1 t -0.0828 15.0709 42.3103 -Arial.ttf 84 ’ 5.9231 14.0000 2 h -0.0540 24.2793 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 3 a 10.0628 27.4690 32.3813 -Arial.ttf 84 ’ 5.9231 14.0000 4 n 10.0064 24.2793 32.0709 -Arial.ttf 84 ’ 5.9231 14.0000 5 P -0.0776 31.4542 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 6 o 10.1246 27.4690 32.3813 -Arial.ttf 84 ’ 5.9231 14.0000 7 e 9.7662 27.4690 32.3813 -Arial.ttf 84 ’ 5.9231 14.0000 8 : 11.1319 5.2626 30.8793 -Arial.ttf 84 ’ 5.9231 14.0000 9 r 9.9222 16.5689 32.0709 -Arial.ttf 84 ’ 5.9231 14.0000 10 l 0.0000 5.2626 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 11 i -0.0621 5.2626 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 12 1 0.3805 15.2355 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 13 | -0.1341 4.1916 54.4980 -Arial.ttf 84 ’ 5.9231 14.0000 14 N -0.0965 32.9083 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 15 f -0.0345 18.0709 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 16 g 9.7233 26.3123 43.6877 -Arial.ttf 84 ’ 5.9231 14.0000 17 d -0.0138 26.3123 42.3103 -Arial.ttf 84 ’ 5.9231 14.0000 18 W 0.0000 57.1916 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 19 s 9.7402 24.9561 32.3813 -Arial.ttf 84 ’ 5.9231 14.0000 20 c 9.8517 26.8084 32.3813 -Arial.ttf 84 ’ 5.9231 14.0000 21 u 10.9362 24.2793 31.1896 -Arial.ttf 84 ’ 5.9231 14.0000 22 3 0.4536 26.8483 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 23 ~ 16.8806 29.9083 10.9561 -Arial.ttf 84 ’ 5.9231 14.0000 24 # 0.0000 31.2646 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 25 O -0.7571 39.5749 43.3212 -Arial.ttf 84 ’ 5.9231 14.0000 26 ` 0.0784 10.9561 8.0769 -Arial.ttf 84 ’ 5.9231 14.0000 27 @ -0.1463 54.1478 54.3123 -Arial.ttf 84 ’ 5.9231 14.0000 28 F -0.0563 28.2207 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 29 S -0.6230 33.0001 43.3212 -Arial.ttf 84 ’ 5.9231 14.0000 30 p 9.9843 26.3123 43.6877 -Arial.ttf 84 ’ 5.9231 14.0000 31 “ -0.0456 13.5690 14.0000 -Arial.ttf 84 ’ 5.9231 14.0000 32 % -0.0938 44.8793 42.3103 -Arial.ttf 84 ’ 5.9231 14.0000 33 £ -0.0414 29.8522 42.3103 -Arial.ttf 84 ’ 5.9231 14.0000 34 . 36.8949 5.2626 5.2626 -Arial.ttf 84 ’ 5.9231 14.0000 35 2 0.3820 28.6956 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 36 5 0.3130 26.8483 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 37 m 9.9775 41.4044 32.0709 -Arial.ttf 84 ’ 5.9231 14.0000 38 V 0.1931 40.5788 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 39 6 0.3103 27.8542 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 40 w 10.9803 43.4212 30.8793 -Arial.ttf 84 ’ 5.9231 14.0000 41 T -0.0594 33.6936 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 42 M 0.1378 40.5788 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 43 G -0.7640 38.6897 43.3212 -Arial.ttf 84 ’ 5.9231 14.0000 44 b 0.0084 26.3123 42.3103 -Arial.ttf 84 ’ 5.9231 14.0000 45 9 0.3501 26.8483 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 46 ; 11.2173 5.2626 39.6167 -Arial.ttf 84 ’ 5.9231 14.0000 47 D -0.1601 34.4542 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 48 L 0.1363 25.8813 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 49 y 11.0874 28.0000 42.4960 -Arial.ttf 84 ’ 5.9231 14.0000 50 ‘ -0.0563 5.9231 14.0000 -Arial.ttf 84 ’ 5.9231 14.0000 51 \ -0.0605 17.5749 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 52 R 0.1544 36.7497 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 53 < 7.5087 27.8354 27.8704 -Arial.ttf 84 ’ 5.9231 14.0000 54 4 0.2509 28.3503 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 55 8 0.4799 26.6626 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 56 0 0.2011 26.8483 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 57 A 0.1118 40.5788 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 58 E 0.1075 31.4542 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 59 B -0.0260 31.4542 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 60 v 11.0816 27.8704 30.8793 -Arial.ttf 84 ’ 5.9231 14.0000 61 k 0.0000 25.1207 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 62 J 0.1034 24.0291 42.6606 -Arial.ttf 84 ’ 5.9231 14.0000 63 U -0.1061 32.9083 42.6606 -Arial.ttf 84 ’ 5.9231 14.0000 64 j 0.0000 12.3773 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 65 ( -0.0340 14.4103 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 66 7 0.2839 26.8523 41.6897 -Arial.ttf 84 ’ 5.9231 14.0000 67 § -0.0095 26.9729 53.9271 -Arial.ttf 84 ’ 5.9231 14.0000 68 $ -2.1614 27.6897 49.3355 -Arial.ttf 84 ’ 5.9231 14.0000 69 € -0.7433 33.0769 43.3212 -Arial.ttf 84 ’ 5.9231 14.0000 70 / -0.0249 17.5749 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 71 C -0.8261 36.0000 43.3212 -Arial.ttf 84 ’ 5.9231 14.0000 72 * -0.1808 20.3453 17.8852 -Arial.ttf 84 ’ 5.9231 14.0000 73 ” 0.1804 14.2296 14.0000 -Arial.ttf 84 ’ 5.9231 14.0000 74 ? 0.0966 26.8483 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 75 { 0.0483 16.7375 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 76 } -0.1889 16.7375 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 77 , 36.3663 5.2626 14.0000 -Arial.ttf 84 ’ 5.9231 14.0000 78 I 0.0000 5.6936 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 79 ° -0.2000 15.8083 15.8083 -Arial.ttf 84 ’ 5.9231 14.0000 80 K -0.0547 34.5749 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 81 H -0.0287 32.9083 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 82 q 9.8172 26.3123 43.6877 -Arial.ttf 84 ’ 5.9231 14.0000 83 & -0.0467 35.1148 42.3103 -Arial.ttf 84 ’ 5.9231 14.0000 84 ’ -0.0828 5.9231 14.0000 -Arial.ttf 84 ’ 5.9231 14.0000 85 [ 0.0000 11.0000 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 86 - 24.2394 15.4980 5.2626 -Arial.ttf 84 ’ 5.9231 14.0000 87 Y 0.0000 38.4601 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 88 Q -0.4575 39.5749 46.3212 -Arial.ttf 84 ’ 5.9231 14.0000 89 " -0.0345 15.8083 15.1916 -Arial.ttf 84 ’ 5.9231 14.0000 90 ! 0.0690 5.2626 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 91 x 11.1207 29.1060 30.8793 -Arial.ttf 84 ’ 5.9231 14.0000 92 ) 0.1655 14.4103 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 93 = 12.0360 27.8793 17.8852 -Arial.ttf 84 ’ 5.9231 14.0000 94 + 7.5458 27.8753 27.8753 -Arial.ttf 84 ’ 5.9231 14.0000 95 X -0.0345 37.6626 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 96 » 13.9216 25.0439 26.1917 -Arial.ttf 84 ’ 5.9231 14.0000 97 ' 0.0950 5.2626 15.1916 -Arial.ttf 84 ’ 5.9231 14.0000 98 ¢ -0.0655 25.7813 54.2685 -Arial.ttf 84 ’ 5.9231 14.0000 99 Z -0.1516 33.0729 42.0000 -Arial.ttf 84 ’ 5.9231 14.0000 100 > 7.4711 27.8354 27.8704 -Arial.ttf 84 ’ 5.9231 14.0000 101 ® -0.5614 43.1916 42.9709 -Arial.ttf 84 ’ 5.9231 14.0000 102 © -0.7667 43.1916 42.9709 -Arial.ttf 84 ’ 5.9231 14.0000 103 ] 0.0621 11.0000 53.6167 -Arial.ttf 84 ’ 5.9231 14.0000 104 é -1.1434 27.4690 43.5020 -Arial.ttf 84 ’ 5.9231 14.0000 105 z 11.0031 26.3123 30.8793 -Arial.ttf 84 ’ 5.9231 14.0000 106 _ 48.4231 33.3832 5.2626 -Arial.ttf 84 ’ 5.9231 14.0000 107 ¥ -0.2534 32.0291 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 1 t -0.1905 15.0709 42.3103 -Arial.ttf 85 [ 11.0000 53.6167 2 h -0.0057 24.2793 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 3 a 10.0325 27.4690 32.3813 -Arial.ttf 85 [ 11.0000 53.6167 4 n 10.1445 24.2793 32.0709 -Arial.ttf 85 [ 11.0000 53.6167 5 P 0.0085 31.4542 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 6 o 9.9179 27.4690 32.3813 -Arial.ttf 85 [ 11.0000 53.6167 7 e 9.8736 27.4690 32.3813 -Arial.ttf 85 [ 11.0000 53.6167 8 : 11.2177 5.2626 30.8793 -Arial.ttf 85 [ 11.0000 53.6167 9 r 9.8808 16.5689 32.0709 -Arial.ttf 85 [ 11.0000 53.6167 10 l 0.0126 5.2626 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 11 i 0.2595 5.2626 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 12 1 0.2414 15.2355 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 13 | 0.0000 4.1916 54.4980 -Arial.ttf 85 [ 11.0000 53.6167 14 N -0.0966 32.9083 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 15 f 0.0424 18.0709 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 16 g 9.8092 26.3123 43.6877 -Arial.ttf 85 [ 11.0000 53.6167 17 d 0.0260 26.3123 42.3103 -Arial.ttf 85 [ 11.0000 53.6167 18 W 0.0138 57.1916 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 19 s 9.9291 24.9561 32.3813 -Arial.ttf 85 [ 11.0000 53.6167 20 c 9.8049 26.8084 32.3813 -Arial.ttf 85 [ 11.0000 53.6167 21 u 10.9801 24.2793 31.1896 -Arial.ttf 85 [ 11.0000 53.6167 22 3 0.5639 26.8483 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 23 ~ 16.8199 29.9083 10.9561 -Arial.ttf 85 [ 11.0000 53.6167 24 # -0.1310 31.2646 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 25 O -0.8855 39.5749 43.3212 -Arial.ttf 85 [ 11.0000 53.6167 26 ` 0.0743 10.9561 8.0769 -Arial.ttf 85 [ 11.0000 53.6167 27 @ -0.1310 54.1478 54.3123 -Arial.ttf 85 [ 11.0000 53.6167 28 F 0.0414 28.2207 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 29 S -0.6204 33.0001 43.3212 -Arial.ttf 85 [ 11.0000 53.6167 30 p 9.9386 26.3123 43.6877 -Arial.ttf 85 [ 11.0000 53.6167 31 “ 0.1516 13.5690 14.0000 -Arial.ttf 85 [ 11.0000 53.6167 32 % -0.0371 44.8793 42.3103 -Arial.ttf 85 [ 11.0000 53.6167 33 £ 0.1708 29.8522 42.3103 -Arial.ttf 85 [ 11.0000 53.6167 34 . 36.6685 5.2626 5.2626 -Arial.ttf 85 [ 11.0000 53.6167 35 2 0.3862 28.6956 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 36 5 0.2816 26.8483 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 37 m 9.9720 41.4044 32.0709 -Arial.ttf 85 [ 11.0000 53.6167 38 V 0.1560 40.5788 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 39 6 0.3792 27.8542 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 40 w 11.0836 43.4212 30.8793 -Arial.ttf 85 [ 11.0000 53.6167 41 T 0.0371 33.6936 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 42 M -0.1557 40.5788 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 43 G -0.6305 38.6897 43.3212 -Arial.ttf 85 [ 11.0000 53.6167 44 b 0.0021 26.3123 42.3103 -Arial.ttf 85 [ 11.0000 53.6167 45 9 0.2044 26.8483 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 46 ; 10.9880 5.2626 39.6167 -Arial.ttf 85 [ 11.0000 53.6167 47 D 0.0345 34.4542 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 48 L 0.0249 25.8813 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 49 y 11.1207 28.0000 42.4960 -Arial.ttf 85 [ 11.0000 53.6167 50 ‘ -0.0253 5.9231 14.0000 -Arial.ttf 85 [ 11.0000 53.6167 51 \ 0.0784 17.5749 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 52 R 0.1310 36.7497 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 53 < 7.6502 27.8354 27.8704 -Arial.ttf 85 [ 11.0000 53.6167 54 4 0.1354 28.3503 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 55 8 0.3519 26.6626 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 56 0 0.0855 26.8483 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 57 A 0.0563 40.5788 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 58 E -0.2805 31.4542 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 59 B 0.0784 31.4542 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 60 v 11.0598 27.8704 30.8793 -Arial.ttf 85 [ 11.0000 53.6167 61 k -0.2455 25.1207 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 62 J 0.0371 24.0291 42.6606 -Arial.ttf 85 [ 11.0000 53.6167 63 U 0.0521 32.9083 42.6606 -Arial.ttf 85 [ 11.0000 53.6167 64 j 0.0000 12.3773 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 65 ( -0.0537 14.4103 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 66 7 0.2759 26.8523 41.6897 -Arial.ttf 85 [ 11.0000 53.6167 67 § -0.1629 26.9729 53.9271 -Arial.ttf 85 [ 11.0000 53.6167 68 $ -1.9764 27.6897 49.3355 -Arial.ttf 85 [ 11.0000 53.6167 69 € -0.6893 33.0769 43.3212 -Arial.ttf 85 [ 11.0000 53.6167 70 / -0.0864 17.5749 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 71 C -0.5296 36.0000 43.3212 -Arial.ttf 85 [ 11.0000 53.6167 72 * -0.0330 20.3453 17.8852 -Arial.ttf 85 [ 11.0000 53.6167 73 ” 0.2195 14.2296 14.0000 -Arial.ttf 85 [ 11.0000 53.6167 74 ? -0.1203 26.8483 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 75 { 0.0498 16.7375 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 76 } -0.0722 16.7375 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 77 , 36.7179 5.2626 14.0000 -Arial.ttf 85 [ 11.0000 53.6167 78 I 0.0249 5.6936 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 79 ° -0.0885 15.8083 15.8083 -Arial.ttf 85 [ 11.0000 53.6167 80 K 0.2784 34.5749 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 81 H -0.1284 32.9083 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 82 q 9.8146 26.3123 43.6877 -Arial.ttf 85 [ 11.0000 53.6167 83 & -0.2286 35.1148 42.3103 -Arial.ttf 85 [ 11.0000 53.6167 84 ’ -0.1751 5.9231 14.0000 -Arial.ttf 85 [ 11.0000 53.6167 85 [ 0.1861 11.0000 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 86 - 24.3942 15.4980 5.2626 -Arial.ttf 85 [ 11.0000 53.6167 87 Y 0.0371 38.4601 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 88 Q -0.6119 39.5749 46.3212 -Arial.ttf 85 [ 11.0000 53.6167 89 " 0.1432 15.8083 15.1916 -Arial.ttf 85 [ 11.0000 53.6167 90 ! 0.1958 5.2626 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 91 x 11.3746 29.1060 30.8793 -Arial.ttf 85 [ 11.0000 53.6167 92 ) 0.0760 14.4103 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 93 = 12.0015 27.8793 17.8852 -Arial.ttf 85 [ 11.0000 53.6167 94 + 7.4573 27.8753 27.8753 -Arial.ttf 85 [ 11.0000 53.6167 95 X 0.0249 37.6626 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 96 » 14.0142 25.0439 26.1917 -Arial.ttf 85 [ 11.0000 53.6167 97 ' -0.4427 5.2626 15.1916 -Arial.ttf 85 [ 11.0000 53.6167 98 ¢ 0.1236 25.7813 54.2685 -Arial.ttf 85 [ 11.0000 53.6167 99 Z 0.1225 33.0729 42.0000 -Arial.ttf 85 [ 11.0000 53.6167 100 > 7.5830 27.8354 27.8704 -Arial.ttf 85 [ 11.0000 53.6167 101 ® -0.6606 43.1916 42.9709 -Arial.ttf 85 [ 11.0000 53.6167 102 © -0.6288 43.1916 42.9709 -Arial.ttf 85 [ 11.0000 53.6167 103 ] 0.0000 11.0000 53.6167 -Arial.ttf 85 [ 11.0000 53.6167 104 é -1.1133 27.4690 43.5020 -Arial.ttf 85 [ 11.0000 53.6167 105 z 11.0548 26.3123 30.8793 -Arial.ttf 85 [ 11.0000 53.6167 106 _ 48.2948 33.3832 5.2626 -Arial.ttf 85 [ 11.0000 53.6167 107 ¥ -0.0163 32.0291 42.0000 -Arial.ttf 86 - 15.4980 5.2626 1 t -24.2049 15.0709 42.3103 -Arial.ttf 86 - 15.4980 5.2626 2 h -24.0713 24.2793 42.0000 -Arial.ttf 86 - 15.4980 5.2626 3 a -14.3225 27.4690 32.3813 -Arial.ttf 86 - 15.4980 5.2626 4 n -14.0665 24.2793 32.0709 -Arial.ttf 86 - 15.4980 5.2626 5 P -24.0889 31.4542 42.0000 -Arial.ttf 86 - 15.4980 5.2626 6 o -14.1793 27.4690 32.3813 -Arial.ttf 86 - 15.4980 5.2626 7 e -14.4677 27.4690 32.3813 -Arial.ttf 86 - 15.4980 5.2626 8 : -12.7904 5.2626 30.8793 -Arial.ttf 86 - 15.4980 5.2626 9 r -14.0594 16.5689 32.0709 -Arial.ttf 86 - 15.4980 5.2626 10 l -24.1550 5.2626 42.0000 -Arial.ttf 86 - 15.4980 5.2626 11 i -24.3404 5.2626 42.0000 -Arial.ttf 86 - 15.4980 5.2626 12 1 -23.8224 15.2355 41.6897 -Arial.ttf 86 - 15.4980 5.2626 13 | -24.0141 4.1916 54.4980 -Arial.ttf 86 - 15.4980 5.2626 14 N -24.0050 32.9083 42.0000 -Arial.ttf 86 - 15.4980 5.2626 15 f -24.2934 18.0709 42.0000 -Arial.ttf 86 - 15.4980 5.2626 16 g -14.0679 26.3123 43.6877 -Arial.ttf 86 - 15.4980 5.2626 17 d -24.2463 26.3123 42.3103 -Arial.ttf 86 - 15.4980 5.2626 18 W -24.4340 57.1916 42.0000 -Arial.ttf 86 - 15.4980 5.2626 19 s -14.2732 24.9561 32.3813 -Arial.ttf 86 - 15.4980 5.2626 20 c -14.2732 26.8084 32.3813 -Arial.ttf 86 - 15.4980 5.2626 21 u -13.2677 24.2793 31.1896 -Arial.ttf 86 - 15.4980 5.2626 22 3 -23.8406 26.8483 41.6897 -Arial.ttf 86 - 15.4980 5.2626 23 ~ -7.0096 29.9083 10.9561 -Arial.ttf 86 - 15.4980 5.2626 24 # -24.2300 31.2646 42.0000 -Arial.ttf 86 - 15.4980 5.2626 25 O -24.9898 39.5749 43.3212 -Arial.ttf 86 - 15.4980 5.2626 26 ` -24.0946 10.9561 8.0769 -Arial.ttf 86 - 15.4980 5.2626 27 @ -24.3735 54.1478 54.3123 -Arial.ttf 86 - 15.4980 5.2626 28 F -24.2973 28.2207 42.0000 -Arial.ttf 86 - 15.4980 5.2626 29 S -24.9372 33.0001 43.3212 -Arial.ttf 86 - 15.4980 5.2626 30 p -14.1837 26.3123 43.6877 -Arial.ttf 86 - 15.4980 5.2626 31 “ -24.2850 13.5690 14.0000 -Arial.ttf 86 - 15.4980 5.2626 32 % -24.3665 44.8793 42.3103 -Arial.ttf 86 - 15.4980 5.2626 33 £ -24.1965 29.8522 42.3103 -Arial.ttf 86 - 15.4980 5.2626 34 . 12.4444 5.2626 5.2626 -Arial.ttf 86 - 15.4980 5.2626 35 2 -23.9317 28.6956 41.6897 -Arial.ttf 86 - 15.4980 5.2626 36 5 -24.0082 26.8483 41.6897 -Arial.ttf 86 - 15.4980 5.2626 37 m -14.0675 41.4044 32.0709 -Arial.ttf 86 - 15.4980 5.2626 38 V -24.4748 40.5788 42.0000 -Arial.ttf 86 - 15.4980 5.2626 39 6 -23.9465 27.8542 41.6897 -Arial.ttf 86 - 15.4980 5.2626 40 w -13.2650 43.4212 30.8793 -Arial.ttf 86 - 15.4980 5.2626 41 T -24.3079 33.6936 42.0000 -Arial.ttf 86 - 15.4980 5.2626 42 M -24.2394 40.5788 42.0000 -Arial.ttf 86 - 15.4980 5.2626 43 G -25.0659 38.6897 43.3212 -Arial.ttf 86 - 15.4980 5.2626 44 b -24.1912 26.3123 42.3103 -Arial.ttf 86 - 15.4980 5.2626 45 9 -23.9179 26.8483 41.6897 -Arial.ttf 86 - 15.4980 5.2626 46 ; -13.2957 5.2626 39.6167 -Arial.ttf 86 - 15.4980 5.2626 47 D -24.2877 34.4542 42.0000 -Arial.ttf 86 - 15.4980 5.2626 48 L -24.3329 25.8813 42.0000 -Arial.ttf 86 - 15.4980 5.2626 49 y -12.9532 28.0000 42.4960 -Arial.ttf 86 - 15.4980 5.2626 50 ‘ -24.3222 5.9231 14.0000 -Arial.ttf 86 - 15.4980 5.2626 51 \ -24.5003 17.5749 42.0000 -Arial.ttf 86 - 15.4980 5.2626 52 R -24.1568 36.7497 42.0000 -Arial.ttf 86 - 15.4980 5.2626 53 < -16.6591 27.8354 27.8704 -Arial.ttf 86 - 15.4980 5.2626 54 4 -23.8250 28.3503 41.6897 -Arial.ttf 86 - 15.4980 5.2626 55 8 -23.9291 26.6626 41.6897 -Arial.ttf 86 - 15.4980 5.2626 56 0 -23.8061 26.8483 41.6897 -Arial.ttf 86 - 15.4980 5.2626 57 A -24.2421 40.5788 42.0000 -Arial.ttf 86 - 15.4980 5.2626 58 E -24.2506 31.4542 42.0000 -Arial.ttf 86 - 15.4980 5.2626 59 B -24.2161 31.4542 42.0000 -Arial.ttf 86 - 15.4980 5.2626 60 v -13.1823 27.8704 30.8793 -Arial.ttf 86 - 15.4980 5.2626 61 k -24.1828 25.1207 42.0000 -Arial.ttf 86 - 15.4980 5.2626 62 J -24.0682 24.0291 42.6606 -Arial.ttf 86 - 15.4980 5.2626 63 U -24.2789 32.9083 42.6606 -Arial.ttf 86 - 15.4980 5.2626 64 j -24.2077 12.3773 53.6167 -Arial.ttf 86 - 15.4980 5.2626 65 ( -24.1705 14.4103 53.6167 -Arial.ttf 86 - 15.4980 5.2626 66 7 -23.9057 26.8523 41.6897 -Arial.ttf 86 - 15.4980 5.2626 67 § -24.4107 26.9729 53.9271 -Arial.ttf 86 - 15.4980 5.2626 68 $ -26.2381 27.6897 49.3355 -Arial.ttf 86 - 15.4980 5.2626 69 € -24.9828 33.0769 43.3212 -Arial.ttf 86 - 15.4980 5.2626 70 / -24.4917 17.5749 42.0000 -Arial.ttf 86 - 15.4980 5.2626 71 C -24.8655 36.0000 43.3212 -Arial.ttf 86 - 15.4980 5.2626 72 * -24.0598 20.3453 17.8852 -Arial.ttf 86 - 15.4980 5.2626 73 ” -23.9527 14.2296 14.0000 -Arial.ttf 86 - 15.4980 5.2626 74 ? -24.3348 26.8483 42.0000 -Arial.ttf 86 - 15.4980 5.2626 75 { -24.2076 16.7375 53.6167 -Arial.ttf 86 - 15.4980 5.2626 76 } -23.9111 16.7375 53.6167 -Arial.ttf 86 - 15.4980 5.2626 77 , 12.0996 5.2626 14.0000 -Arial.ttf 86 - 15.4980 5.2626 78 I -24.6133 5.6936 42.0000 -Arial.ttf 86 - 15.4980 5.2626 79 ° -24.2394 15.8083 15.8083 -Arial.ttf 86 - 15.4980 5.2626 80 K -24.2023 34.5749 42.0000 -Arial.ttf 86 - 15.4980 5.2626 81 H -24.4270 32.9083 42.0000 -Arial.ttf 86 - 15.4980 5.2626 82 q -14.3103 26.3123 43.6877 -Arial.ttf 86 - 15.4980 5.2626 83 & -24.2992 35.1148 42.3103 -Arial.ttf 86 - 15.4980 5.2626 84 ’ -24.2299 5.9231 14.0000 -Arial.ttf 86 - 15.4980 5.2626 85 [ -24.2590 11.0000 53.6167 -Arial.ttf 86 - 15.4980 5.2626 86 - -0.2816 15.4980 5.2626 -Arial.ttf 86 - 15.4980 5.2626 87 Y -24.4133 38.4601 42.0000 -Arial.ttf 86 - 15.4980 5.2626 88 Q -24.7288 39.5749 46.3212 -Arial.ttf 86 - 15.4980 5.2626 89 " -24.2242 15.8083 15.1916 -Arial.ttf 86 - 15.4980 5.2626 90 ! -24.2988 5.2626 42.0000 -Arial.ttf 86 - 15.4980 5.2626 91 x -13.0279 29.1060 30.8793 -Arial.ttf 86 - 15.4980 5.2626 92 ) -24.0050 14.4103 53.6167 -Arial.ttf 86 - 15.4980 5.2626 93 = -12.4048 27.8793 17.8852 -Arial.ttf 86 - 15.4980 5.2626 94 + -16.4672 27.8753 27.8753 -Arial.ttf 86 - 15.4980 5.2626 95 X -24.2452 37.6626 42.0000 -Arial.ttf 86 - 15.4980 5.2626 96 » -10.2228 25.0439 26.1917 -Arial.ttf 86 - 15.4980 5.2626 97 ' -24.3921 5.2626 15.1916 -Arial.ttf 86 - 15.4980 5.2626 98 ¢ -24.3892 25.7813 54.2685 -Arial.ttf 86 - 15.4980 5.2626 99 Z -24.1509 33.0729 42.0000 -Arial.ttf 86 - 15.4980 5.2626 100 > -16.9091 27.8354 27.8704 -Arial.ttf 86 - 15.4980 5.2626 101 ® -25.0035 43.1916 42.9709 -Arial.ttf 86 - 15.4980 5.2626 102 © -24.8084 43.1916 42.9709 -Arial.ttf 86 - 15.4980 5.2626 103 ] -24.2356 11.0000 53.6167 -Arial.ttf 86 - 15.4980 5.2626 104 é -25.2423 27.4690 43.5020 -Arial.ttf 86 - 15.4980 5.2626 105 z -12.9394 26.3123 30.8793 -Arial.ttf 86 - 15.4980 5.2626 106 _ 24.1438 33.3832 5.2626 -Arial.ttf 86 - 15.4980 5.2626 107 ¥ -24.4049 32.0291 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 1 t 0.0797 15.0709 42.3103 -Arial.ttf 87 Y 38.4601 42.0000 2 h -0.0550 24.2793 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 3 a 9.9869 27.4690 32.3813 -Arial.ttf 87 Y 38.4601 42.0000 4 n 9.6454 24.2793 32.0709 -Arial.ttf 87 Y 38.4601 42.0000 5 P -0.3261 31.4542 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 6 o 9.8935 27.4690 32.3813 -Arial.ttf 87 Y 38.4601 42.0000 7 e 9.7869 27.4690 32.3813 -Arial.ttf 87 Y 38.4601 42.0000 8 : 11.1140 5.2626 30.8793 -Arial.ttf 87 Y 38.4601 42.0000 9 r 9.9264 16.5689 32.0709 -Arial.ttf 87 Y 38.4601 42.0000 10 l 0.0176 5.2626 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 11 i -0.4480 5.2626 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 12 1 0.5117 15.2355 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 13 | 0.0383 4.1916 54.4980 -Arial.ttf 87 Y 38.4601 42.0000 14 N -0.0621 32.9083 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 15 f 0.2260 18.0709 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 16 g 10.0605 26.3123 43.6877 -Arial.ttf 87 Y 38.4601 42.0000 17 d -0.0166 26.3123 42.3103 -Arial.ttf 87 Y 38.4601 42.0000 18 W -0.1837 57.1916 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 19 s 9.7015 24.9561 32.3813 -Arial.ttf 87 Y 38.4601 42.0000 20 c 10.1084 26.8084 32.3813 -Arial.ttf 87 Y 38.4601 42.0000 21 u 11.4389 24.2793 31.1896 -Arial.ttf 87 Y 38.4601 42.0000 22 3 0.0563 26.8483 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 23 ~ 16.7773 29.9083 10.9561 -Arial.ttf 87 Y 38.4601 42.0000 24 # 0.2513 31.2646 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 25 O -0.7969 39.5749 43.3212 -Arial.ttf 87 Y 38.4601 42.0000 26 ` -0.2652 10.9561 8.0769 -Arial.ttf 87 Y 38.4601 42.0000 27 @ -0.2471 54.1478 54.3123 -Arial.ttf 87 Y 38.4601 42.0000 28 F 0.1808 28.2207 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 29 S -0.7556 33.0001 43.3212 -Arial.ttf 87 Y 38.4601 42.0000 30 p 10.0988 26.3123 43.6877 -Arial.ttf 87 Y 38.4601 42.0000 31 “ 0.0115 13.5690 14.0000 -Arial.ttf 87 Y 38.4601 42.0000 32 % -0.1638 44.8793 42.3103 -Arial.ttf 87 Y 38.4601 42.0000 33 £ -0.1571 29.8522 42.3103 -Arial.ttf 87 Y 38.4601 42.0000 34 . 36.6467 5.2626 5.2626 -Arial.ttf 87 Y 38.4601 42.0000 35 2 0.6292 28.6956 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 36 5 0.2080 26.8483 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 37 m 9.9791 41.4044 32.0709 -Arial.ttf 87 Y 38.4601 42.0000 38 V -0.0500 40.5788 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 39 6 0.5356 27.8542 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 40 w 10.9982 43.4212 30.8793 -Arial.ttf 87 Y 38.4601 42.0000 41 T -0.1092 33.6936 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 42 M 0.1682 40.5788 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 43 G -0.8690 38.6897 43.3212 -Arial.ttf 87 Y 38.4601 42.0000 44 b 0.0340 26.3123 42.3103 -Arial.ttf 87 Y 38.4601 42.0000 45 9 0.5876 26.8483 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 46 ; 11.1622 5.2626 39.6167 -Arial.ttf 87 Y 38.4601 42.0000 47 D 0.0716 34.4542 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 48 L -0.1007 25.8813 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 49 y 11.3329 28.0000 42.4960 -Arial.ttf 87 Y 38.4601 42.0000 50 ‘ 0.0000 5.9231 14.0000 -Arial.ttf 87 Y 38.4601 42.0000 51 \ -0.0907 17.5749 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 52 R 0.2014 36.7497 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 53 < 7.3583 27.8354 27.8704 -Arial.ttf 87 Y 38.4601 42.0000 54 4 0.1432 28.3503 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 55 8 0.4121 26.6626 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 56 0 0.2885 26.8483 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 57 A -0.0743 40.5788 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 58 E -0.2678 31.4542 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 59 B 0.1453 31.4542 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 60 v 11.0188 27.8704 30.8793 -Arial.ttf 87 Y 38.4601 42.0000 61 k -0.0510 25.1207 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 62 J 0.1752 24.0291 42.6606 -Arial.ttf 87 Y 38.4601 42.0000 63 U 0.3830 32.9083 42.6606 -Arial.ttf 87 Y 38.4601 42.0000 64 j -0.1314 12.3773 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 65 ( 0.1876 14.4103 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 66 7 0.3427 26.8523 41.6897 -Arial.ttf 87 Y 38.4601 42.0000 67 § -0.0545 26.9729 53.9271 -Arial.ttf 87 Y 38.4601 42.0000 68 $ -1.9925 27.6897 49.3355 -Arial.ttf 87 Y 38.4601 42.0000 69 € -0.5031 33.0769 43.3212 -Arial.ttf 87 Y 38.4601 42.0000 70 / -0.0621 17.5749 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 71 C -0.7243 36.0000 43.3212 -Arial.ttf 87 Y 38.4601 42.0000 72 * 0.1124 20.3453 17.8852 -Arial.ttf 87 Y 38.4601 42.0000 73 ” -0.0885 14.2296 14.0000 -Arial.ttf 87 Y 38.4601 42.0000 74 ? -0.0456 26.8483 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 75 { -0.2624 16.7375 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 76 } -0.1201 16.7375 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 77 , 36.9111 5.2626 14.0000 -Arial.ttf 87 Y 38.4601 42.0000 78 I -0.0719 5.6936 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 79 ° -0.0774 15.8083 15.8083 -Arial.ttf 87 Y 38.4601 42.0000 80 K -0.2445 34.5749 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 81 H 0.2672 32.9083 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 82 q 9.9189 26.3123 43.6877 -Arial.ttf 87 Y 38.4601 42.0000 83 & 0.0107 35.1148 42.3103 -Arial.ttf 87 Y 38.4601 42.0000 84 ’ 0.0805 5.9231 14.0000 -Arial.ttf 87 Y 38.4601 42.0000 85 [ -0.4223 11.0000 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 86 - 24.2818 15.4980 5.2626 -Arial.ttf 87 Y 38.4601 42.0000 87 Y 0.0249 38.4601 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 88 Q -0.5640 39.5749 46.3212 -Arial.ttf 87 Y 38.4601 42.0000 89 " -0.1394 15.8083 15.1916 -Arial.ttf 87 Y 38.4601 42.0000 90 ! -0.2774 5.2626 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 91 x 10.8284 29.1060 30.8793 -Arial.ttf 87 Y 38.4601 42.0000 92 ) 0.0345 14.4103 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 93 = 12.0099 27.8793 17.8852 -Arial.ttf 87 Y 38.4601 42.0000 94 + 7.4146 27.8753 27.8753 -Arial.ttf 87 Y 38.4601 42.0000 95 X 0.0784 37.6626 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 96 » 13.9286 25.0439 26.1917 -Arial.ttf 87 Y 38.4601 42.0000 97 ' -0.0000 5.2626 15.1916 -Arial.ttf 87 Y 38.4601 42.0000 98 ¢ -0.0709 25.7813 54.2685 -Arial.ttf 87 Y 38.4601 42.0000 99 Z 0.0440 33.0729 42.0000 -Arial.ttf 87 Y 38.4601 42.0000 100 > 7.6046 27.8354 27.8704 -Arial.ttf 87 Y 38.4601 42.0000 101 ® -0.8923 43.1916 42.9709 -Arial.ttf 87 Y 38.4601 42.0000 102 © -0.7221 43.1916 42.9709 -Arial.ttf 87 Y 38.4601 42.0000 103 ] -0.0207 11.0000 53.6167 -Arial.ttf 87 Y 38.4601 42.0000 104 é -1.0813 27.4690 43.5020 -Arial.ttf 87 Y 38.4601 42.0000 105 z 10.7468 26.3123 30.8793 -Arial.ttf 87 Y 38.4601 42.0000 106 _ 48.4576 33.3832 5.2626 -Arial.ttf 87 Y 38.4601 42.0000 107 ¥ 0.2496 32.0291 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 1 t 0.4961 15.0709 42.3103 -Arial.ttf 88 Q 39.5749 46.3212 2 h 0.4182 24.2793 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 3 a 10.5991 27.4690 32.3813 -Arial.ttf 88 Q 39.5749 46.3212 4 n 10.5665 24.2793 32.0709 -Arial.ttf 88 Q 39.5749 46.3212 5 P 0.3988 31.4542 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 6 o 10.6613 27.4690 32.3813 -Arial.ttf 88 Q 39.5749 46.3212 7 e 10.3472 27.4690 32.3813 -Arial.ttf 88 Q 39.5749 46.3212 8 : 11.6310 5.2626 30.8793 -Arial.ttf 88 Q 39.5749 46.3212 9 r 10.6048 16.5689 32.0709 -Arial.ttf 88 Q 39.5749 46.3212 10 l 0.5577 5.2626 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 11 i 0.4745 5.2626 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 12 1 1.1667 15.2355 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 13 | 0.8744 4.1916 54.4980 -Arial.ttf 88 Q 39.5749 46.3212 14 N 0.7438 32.9083 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 15 f 0.9735 18.0709 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 16 g 10.4724 26.3123 43.6877 -Arial.ttf 88 Q 39.5749 46.3212 17 d 0.5931 26.3123 42.3103 -Arial.ttf 88 Q 39.5749 46.3212 18 W 0.5407 57.1916 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 19 s 10.6088 24.9561 32.3813 -Arial.ttf 88 Q 39.5749 46.3212 20 c 11.0123 26.8084 32.3813 -Arial.ttf 88 Q 39.5749 46.3212 21 u 12.1299 24.2793 31.1896 -Arial.ttf 88 Q 39.5749 46.3212 22 3 0.8108 26.8483 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 23 ~ 17.5105 29.9083 10.9561 -Arial.ttf 88 Q 39.5749 46.3212 24 # 0.7360 31.2646 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 25 O -0.0912 39.5749 43.3212 -Arial.ttf 88 Q 39.5749 46.3212 26 ` 0.7369 10.9561 8.0769 -Arial.ttf 88 Q 39.5749 46.3212 27 @ 0.6982 54.1478 54.3123 -Arial.ttf 88 Q 39.5749 46.3212 28 F 0.6883 28.2207 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 29 S -0.0706 33.0001 43.3212 -Arial.ttf 88 Q 39.5749 46.3212 30 p 10.4104 26.3123 43.6877 -Arial.ttf 88 Q 39.5749 46.3212 31 “ 0.8627 13.5690 14.0000 -Arial.ttf 88 Q 39.5749 46.3212 32 % 0.4826 44.8793 42.3103 -Arial.ttf 88 Q 39.5749 46.3212 33 £ 0.5683 29.8522 42.3103 -Arial.ttf 88 Q 39.5749 46.3212 34 . 36.9360 5.2626 5.2626 -Arial.ttf 88 Q 39.5749 46.3212 35 2 1.1793 28.6956 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 36 5 0.5998 26.8483 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 37 m 10.6697 41.4044 32.0709 -Arial.ttf 88 Q 39.5749 46.3212 38 V 0.6967 40.5788 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 39 6 0.8151 27.8542 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 40 w 11.7897 43.4212 30.8793 -Arial.ttf 88 Q 39.5749 46.3212 41 T 0.5503 33.6936 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 42 M 0.7115 40.5788 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 43 G -0.2621 38.6897 43.3212 -Arial.ttf 88 Q 39.5749 46.3212 44 b 0.5997 26.3123 42.3103 -Arial.ttf 88 Q 39.5749 46.3212 45 9 1.0069 26.8483 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 46 ; 11.5359 5.2626 39.6167 -Arial.ttf 88 Q 39.5749 46.3212 47 D 0.6893 34.4542 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 48 L 0.7556 25.8813 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 49 y 11.9006 28.0000 42.4960 -Arial.ttf 88 Q 39.5749 46.3212 50 ‘ 0.7956 5.9231 14.0000 -Arial.ttf 88 Q 39.5749 46.3212 51 \ 0.7545 17.5749 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 52 R 0.7869 36.7497 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 53 < 8.0012 27.8354 27.8704 -Arial.ttf 88 Q 39.5749 46.3212 54 4 0.9723 28.3503 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 55 8 0.4673 26.6626 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 56 0 1.0082 26.8483 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 57 A 0.7183 40.5788 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 58 E 0.5614 31.4542 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 59 B 0.8289 31.4542 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 60 v 11.9743 27.8704 30.8793 -Arial.ttf 88 Q 39.5749 46.3212 61 k 0.7190 25.1207 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 62 J 0.4915 24.0291 42.6606 -Arial.ttf 88 Q 39.5749 46.3212 63 U 0.7594 32.9083 42.6606 -Arial.ttf 88 Q 39.5749 46.3212 64 j 0.3488 12.3773 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 65 ( 0.5160 14.4103 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 66 7 1.1326 26.8523 41.6897 -Arial.ttf 88 Q 39.5749 46.3212 67 § 0.4523 26.9729 53.9271 -Arial.ttf 88 Q 39.5749 46.3212 68 $ -1.0648 27.6897 49.3355 -Arial.ttf 88 Q 39.5749 46.3212 69 € -0.0486 33.0769 43.3212 -Arial.ttf 88 Q 39.5749 46.3212 70 / 1.0757 17.5749 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 71 C -0.0271 36.0000 43.3212 -Arial.ttf 88 Q 39.5749 46.3212 72 * 0.4914 20.3453 17.8852 -Arial.ttf 88 Q 39.5749 46.3212 73 ” 0.4842 14.2296 14.0000 -Arial.ttf 88 Q 39.5749 46.3212 74 ? 0.7158 26.8483 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 75 { 0.6261 16.7375 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 76 } 0.5969 16.7375 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 77 , 37.3886 5.2626 14.0000 -Arial.ttf 88 Q 39.5749 46.3212 78 I 0.7765 5.6936 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 79 ° 0.3640 15.8083 15.8083 -Arial.ttf 88 Q 39.5749 46.3212 80 K 0.5668 34.5749 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 81 H 0.7311 32.9083 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 82 q 10.0314 26.3123 43.6877 -Arial.ttf 88 Q 39.5749 46.3212 83 & 0.8025 35.1148 42.3103 -Arial.ttf 88 Q 39.5749 46.3212 84 ’ 0.5225 5.9231 14.0000 -Arial.ttf 88 Q 39.5749 46.3212 85 [ 0.3737 11.0000 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 86 - 24.7675 15.4980 5.2626 -Arial.ttf 88 Q 39.5749 46.3212 87 Y 0.7035 38.4601 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 88 Q -0.3553 39.5749 46.3212 -Arial.ttf 88 Q 39.5749 46.3212 89 " 0.6051 15.8083 15.1916 -Arial.ttf 88 Q 39.5749 46.3212 90 ! 0.3370 5.2626 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 91 x 11.9408 29.1060 30.8793 -Arial.ttf 88 Q 39.5749 46.3212 92 ) 0.6163 14.4103 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 93 = 12.6138 27.8793 17.8852 -Arial.ttf 88 Q 39.5749 46.3212 94 + 7.8972 27.8753 27.8753 -Arial.ttf 88 Q 39.5749 46.3212 95 X 0.6622 37.6626 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 96 » 14.6113 25.0439 26.1917 -Arial.ttf 88 Q 39.5749 46.3212 97 ' 0.4617 5.2626 15.1916 -Arial.ttf 88 Q 39.5749 46.3212 98 ¢ 0.6932 25.7813 54.2685 -Arial.ttf 88 Q 39.5749 46.3212 99 Z 0.8404 33.0729 42.0000 -Arial.ttf 88 Q 39.5749 46.3212 100 > 8.2482 27.8354 27.8704 -Arial.ttf 88 Q 39.5749 46.3212 101 ® 0.1611 43.1916 42.9709 -Arial.ttf 88 Q 39.5749 46.3212 102 © 0.1628 43.1916 42.9709 -Arial.ttf 88 Q 39.5749 46.3212 103 ] 0.7487 11.0000 53.6167 -Arial.ttf 88 Q 39.5749 46.3212 104 é -0.8205 27.4690 43.5020 -Arial.ttf 88 Q 39.5749 46.3212 105 z 11.9219 26.3123 30.8793 -Arial.ttf 88 Q 39.5749 46.3212 106 _ 48.9857 33.3832 5.2626 -Arial.ttf 88 Q 39.5749 46.3212 107 ¥ 0.6923 32.0291 42.0000 -Arial.ttf 89 " 15.8083 15.1916 1 t 0.2248 15.0709 42.3103 -Arial.ttf 89 " 15.8083 15.1916 2 h -0.0460 24.2793 42.0000 -Arial.ttf 89 " 15.8083 15.1916 3 a 9.9875 27.4690 32.3813 -Arial.ttf 89 " 15.8083 15.1916 4 n 10.2309 24.2793 32.0709 -Arial.ttf 89 " 15.8083 15.1916 5 P -0.1092 31.4542 42.0000 -Arial.ttf 89 " 15.8083 15.1916 6 o 9.7853 27.4690 32.3813 -Arial.ttf 89 " 15.8083 15.1916 7 e 9.9084 27.4690 32.3813 -Arial.ttf 89 " 15.8083 15.1916 8 : 11.0242 5.2626 30.8793 -Arial.ttf 89 " 15.8083 15.1916 9 r 9.7810 16.5689 32.0709 -Arial.ttf 89 " 15.8083 15.1916 10 l 0.0966 5.2626 42.0000 -Arial.ttf 89 " 15.8083 15.1916 11 i 0.1422 5.2626 42.0000 -Arial.ttf 89 " 15.8083 15.1916 12 1 0.4291 15.2355 41.6897 -Arial.ttf 89 " 15.8083 15.1916 13 | 0.0551 4.1916 54.4980 -Arial.ttf 89 " 15.8083 15.1916 14 N 0.1500 32.9083 42.0000 -Arial.ttf 89 " 15.8083 15.1916 15 f -0.0775 18.0709 42.0000 -Arial.ttf 89 " 15.8083 15.1916 16 g 10.0750 26.3123 43.6877 -Arial.ttf 89 " 15.8083 15.1916 17 d 0.2032 26.3123 42.3103 -Arial.ttf 89 " 15.8083 15.1916 18 W -0.2291 57.1916 42.0000 -Arial.ttf 89 " 15.8083 15.1916 19 s 10.0766 24.9561 32.3813 -Arial.ttf 89 " 15.8083 15.1916 20 c 10.0485 26.8084 32.3813 -Arial.ttf 89 " 15.8083 15.1916 21 u 11.0421 24.2793 31.1896 -Arial.ttf 89 " 15.8083 15.1916 22 3 0.5103 26.8483 41.6897 -Arial.ttf 89 " 15.8083 15.1916 23 ~ 16.6847 29.9083 10.9561 -Arial.ttf 89 " 15.8083 15.1916 24 # -0.0832 31.2646 42.0000 -Arial.ttf 89 " 15.8083 15.1916 25 O -0.7974 39.5749 43.3212 -Arial.ttf 89 " 15.8083 15.1916 26 ` -0.0966 10.9561 8.0769 -Arial.ttf 89 " 15.8083 15.1916 27 @ 0.0122 54.1478 54.3123 -Arial.ttf 89 " 15.8083 15.1916 28 F 0.0345 28.2207 42.0000 -Arial.ttf 89 " 15.8083 15.1916 29 S -0.6606 33.0001 43.3212 -Arial.ttf 89 " 15.8083 15.1916 30 p 9.9662 26.3123 43.6877 -Arial.ttf 89 " 15.8083 15.1916 31 “ -0.0387 13.5690 14.0000 -Arial.ttf 89 " 15.8083 15.1916 32 % -0.1340 44.8793 42.3103 -Arial.ttf 89 " 15.8083 15.1916 33 £ -0.1310 29.8522 42.3103 -Arial.ttf 89 " 15.8083 15.1916 34 . 36.8976 5.2626 5.2626 -Arial.ttf 89 " 15.8083 15.1916 35 2 0.1847 28.6956 41.6897 -Arial.ttf 89 " 15.8083 15.1916 36 5 0.2877 26.8483 41.6897 -Arial.ttf 89 " 15.8083 15.1916 37 m 10.1567 41.4044 32.0709 -Arial.ttf 89 " 15.8083 15.1916 38 V 0.0314 40.5788 42.0000 -Arial.ttf 89 " 15.8083 15.1916 39 6 0.5820 27.8542 41.6897 -Arial.ttf 89 " 15.8083 15.1916 40 w 10.9924 43.4212 30.8793 -Arial.ttf 89 " 15.8083 15.1916 41 T 0.0926 33.6936 42.0000 -Arial.ttf 89 " 15.8083 15.1916 42 M -0.3713 40.5788 42.0000 -Arial.ttf 89 " 15.8083 15.1916 43 G -0.4123 38.6897 43.3212 -Arial.ttf 89 " 15.8083 15.1916 44 b -0.2948 26.3123 42.3103 -Arial.ttf 89 " 15.8083 15.1916 45 9 0.5613 26.8483 41.6897 -Arial.ttf 89 " 15.8083 15.1916 46 ; 11.0464 5.2626 39.6167 -Arial.ttf 89 " 15.8083 15.1916 47 D 0.0207 34.4542 42.0000 -Arial.ttf 89 " 15.8083 15.1916 48 L -0.0986 25.8813 42.0000 -Arial.ttf 89 " 15.8083 15.1916 49 y 11.1069 28.0000 42.4960 -Arial.ttf 89 " 15.8083 15.1916 50 ‘ -0.1225 5.9231 14.0000 -Arial.ttf 89 " 15.8083 15.1916 51 \ 0.0000 17.5749 42.0000 -Arial.ttf 89 " 15.8083 15.1916 52 R 0.3877 36.7497 42.0000 -Arial.ttf 89 " 15.8083 15.1916 53 < 7.4849 27.8354 27.8704 -Arial.ttf 89 " 15.8083 15.1916 54 4 0.2955 28.3503 41.6897 -Arial.ttf 89 " 15.8083 15.1916 55 8 0.4678 26.6626 41.6897 -Arial.ttf 89 " 15.8083 15.1916 56 0 0.4164 26.8483 41.6897 -Arial.ttf 89 " 15.8083 15.1916 57 A -0.2634 40.5788 42.0000 -Arial.ttf 89 " 15.8083 15.1916 58 E -0.0885 31.4542 42.0000 -Arial.ttf 89 " 15.8083 15.1916 59 B 0.0301 31.4542 42.0000 -Arial.ttf 89 " 15.8083 15.1916 60 v 11.0020 27.8704 30.8793 -Arial.ttf 89 " 15.8083 15.1916 61 k 0.0057 25.1207 42.0000 -Arial.ttf 89 " 15.8083 15.1916 62 J -0.1225 24.0291 42.6606 -Arial.ttf 89 " 15.8083 15.1916 63 U 0.0537 32.9083 42.6606 -Arial.ttf 89 " 15.8083 15.1916 64 j 0.1889 12.3773 53.6167 -Arial.ttf 89 " 15.8083 15.1916 65 ( 0.2111 14.4103 53.6167 -Arial.ttf 89 " 15.8083 15.1916 66 7 0.3793 26.8523 41.6897 -Arial.ttf 89 " 15.8083 15.1916 67 § 0.3797 26.9729 53.9271 -Arial.ttf 89 " 15.8083 15.1916 68 $ -2.3101 27.6897 49.3355 -Arial.ttf 89 " 15.8083 15.1916 69 € -0.5778 33.0769 43.3212 -Arial.ttf 89 " 15.8083 15.1916 70 / 0.0460 17.5749 42.0000 -Arial.ttf 89 " 15.8083 15.1916 71 C -0.5349 36.0000 43.3212 -Arial.ttf 89 " 15.8083 15.1916 72 * -0.1310 20.3453 17.8852 -Arial.ttf 89 " 15.8083 15.1916 73 ” 0.5474 14.2296 14.0000 -Arial.ttf 89 " 15.8083 15.1916 74 ? -0.1172 26.8483 42.0000 -Arial.ttf 89 " 15.8083 15.1916 75 { -0.1588 16.7375 53.6167 -Arial.ttf 89 " 15.8083 15.1916 76 } 0.2540 16.7375 53.6167 -Arial.ttf 89 " 15.8083 15.1916 77 , 36.4686 5.2626 14.0000 -Arial.ttf 89 " 15.8083 15.1916 78 I -0.3973 5.6936 42.0000 -Arial.ttf 89 " 15.8083 15.1916 79 ° 0.0387 15.8083 15.8083 -Arial.ttf 89 " 15.8083 15.1916 80 K 0.1905 34.5749 42.0000 -Arial.ttf 89 " 15.8083 15.1916 81 H -0.2137 32.9083 42.0000 -Arial.ttf 89 " 15.8083 15.1916 82 q 9.8754 26.3123 43.6877 -Arial.ttf 89 " 15.8083 15.1916 83 & 0.2925 35.1148 42.3103 -Arial.ttf 89 " 15.8083 15.1916 84 ’ 0.0828 5.9231 14.0000 -Arial.ttf 89 " 15.8083 15.1916 85 [ -0.0286 11.0000 53.6167 -Arial.ttf 89 " 15.8083 15.1916 86 - 24.2341 15.4980 5.2626 -Arial.ttf 89 " 15.8083 15.1916 87 Y 0.1033 38.4601 42.0000 -Arial.ttf 89 " 15.8083 15.1916 88 Q -0.8137 39.5749 46.3212 -Arial.ttf 89 " 15.8083 15.1916 89 " -0.1479 15.8083 15.1916 -Arial.ttf 89 " 15.8083 15.1916 90 ! 0.1521 5.2626 42.0000 -Arial.ttf 89 " 15.8083 15.1916 91 x 11.3037 29.1060 30.8793 -Arial.ttf 89 " 15.8083 15.1916 92 ) 0.0138 14.4103 53.6167 -Arial.ttf 89 " 15.8083 15.1916 93 = 11.8846 27.8793 17.8852 -Arial.ttf 89 " 15.8083 15.1916 94 + 7.5304 27.8753 27.8753 -Arial.ttf 89 " 15.8083 15.1916 95 X -0.1240 37.6626 42.0000 -Arial.ttf 89 " 15.8083 15.1916 96 » 14.0048 25.0439 26.1917 -Arial.ttf 89 " 15.8083 15.1916 97 ' -0.0646 5.2626 15.1916 -Arial.ttf 89 " 15.8083 15.1916 98 ¢ -0.0836 25.7813 54.2685 -Arial.ttf 89 " 15.8083 15.1916 99 Z 0.0966 33.0729 42.0000 -Arial.ttf 89 " 15.8083 15.1916 100 > 7.8534 27.8354 27.8704 -Arial.ttf 89 " 15.8083 15.1916 101 ® -0.5158 43.1916 42.9709 -Arial.ttf 89 " 15.8083 15.1916 102 © -0.7862 43.1916 42.9709 -Arial.ttf 89 " 15.8083 15.1916 103 ] 0.0770 11.0000 53.6167 -Arial.ttf 89 " 15.8083 15.1916 104 é -1.2957 27.4690 43.5020 -Arial.ttf 89 " 15.8083 15.1916 105 z 10.9940 26.3123 30.8793 -Arial.ttf 89 " 15.8083 15.1916 106 _ 48.3457 33.3832 5.2626 -Arial.ttf 89 " 15.8083 15.1916 107 ¥ -0.1023 32.0291 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 1 t -0.1310 15.0709 42.3103 -Arial.ttf 90 ! 5.2626 42.0000 2 h 0.0828 24.2793 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 3 a 9.9609 27.4690 32.3813 -Arial.ttf 90 ! 5.2626 42.0000 4 n 9.9291 24.2793 32.0709 -Arial.ttf 90 ! 5.2626 42.0000 5 P -0.1448 31.4542 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 6 o 9.9514 27.4690 32.3813 -Arial.ttf 90 ! 5.2626 42.0000 7 e 10.0118 27.4690 32.3813 -Arial.ttf 90 ! 5.2626 42.0000 8 : 11.1122 5.2626 30.8793 -Arial.ttf 90 ! 5.2626 42.0000 9 r 9.8156 16.5689 32.0709 -Arial.ttf 90 ! 5.2626 42.0000 10 l -0.0142 5.2626 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 11 i 0.0885 5.2626 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 12 1 0.2665 15.2355 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 13 | -0.0621 4.1916 54.4980 -Arial.ttf 90 ! 5.2626 42.0000 14 N -0.1777 32.9083 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 15 f 0.0885 18.0709 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 16 g 10.0685 26.3123 43.6877 -Arial.ttf 90 ! 5.2626 42.0000 17 d 0.0690 26.3123 42.3103 -Arial.ttf 90 ! 5.2626 42.0000 18 W -0.0966 57.1916 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 19 s 9.9578 24.9561 32.3813 -Arial.ttf 90 ! 5.2626 42.0000 20 c 9.8501 26.8084 32.3813 -Arial.ttf 90 ! 5.2626 42.0000 21 u 11.1043 24.2793 31.1896 -Arial.ttf 90 ! 5.2626 42.0000 22 3 0.3820 26.8483 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 23 ~ 16.8422 29.9083 10.9561 -Arial.ttf 90 ! 5.2626 42.0000 24 # 0.0000 31.2646 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 25 O -0.5721 39.5749 43.3212 -Arial.ttf 90 ! 5.2626 42.0000 26 ` 0.0000 10.9561 8.0769 -Arial.ttf 90 ! 5.2626 42.0000 27 @ -0.1575 54.1478 54.3123 -Arial.ttf 90 ! 5.2626 42.0000 28 F 0.1172 28.2207 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 29 S -0.5985 33.0001 43.3212 -Arial.ttf 90 ! 5.2626 42.0000 30 p 10.0007 26.3123 43.6877 -Arial.ttf 90 ! 5.2626 42.0000 31 “ 0.0632 13.5690 14.0000 -Arial.ttf 90 ! 5.2626 42.0000 32 % -0.1560 44.8793 42.3103 -Arial.ttf 90 ! 5.2626 42.0000 33 £ 0.1145 29.8522 42.3103 -Arial.ttf 90 ! 5.2626 42.0000 34 . 36.7045 5.2626 5.2626 -Arial.ttf 90 ! 5.2626 42.0000 35 2 0.3762 28.6956 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 36 5 0.2123 26.8483 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 37 m 10.1800 41.4044 32.0709 -Arial.ttf 90 ! 5.2626 42.0000 38 V 0.0398 40.5788 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 39 6 0.2790 27.8542 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 40 w 11.1690 43.4212 30.8793 -Arial.ttf 90 ! 5.2626 42.0000 41 T 0.1391 33.6936 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 42 M 0.0621 40.5788 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 43 G -0.5783 38.6897 43.3212 -Arial.ttf 90 ! 5.2626 42.0000 44 b 0.0483 26.3123 42.3103 -Arial.ttf 90 ! 5.2626 42.0000 45 9 0.2387 26.8483 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 46 ; 11.0768 5.2626 39.6167 -Arial.ttf 90 ! 5.2626 42.0000 47 D -0.0976 34.4542 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 48 L -0.0207 25.8813 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 49 y 11.0052 28.0000 42.4960 -Arial.ttf 90 ! 5.2626 42.0000 50 ‘ -0.0801 5.9231 14.0000 -Arial.ttf 90 ! 5.2626 42.0000 51 \ 0.1432 17.5749 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 52 R 0.2266 36.7497 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 53 < 7.4070 27.8354 27.8704 -Arial.ttf 90 ! 5.2626 42.0000 54 4 0.3989 28.3503 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 55 8 0.1847 26.6626 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 56 0 0.2813 26.8483 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 57 A -0.1973 40.5788 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 58 E 0.0000 31.4542 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 59 B -0.0636 31.4542 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 60 v 11.0862 27.8704 30.8793 -Arial.ttf 90 ! 5.2626 42.0000 61 k -0.0311 25.1207 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 62 J 0.0192 24.0291 42.6606 -Arial.ttf 90 ! 5.2626 42.0000 63 U 0.0568 32.9083 42.6606 -Arial.ttf 90 ! 5.2626 42.0000 64 j -0.0138 12.3773 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 65 ( -0.0816 14.4103 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 66 7 0.1533 26.8523 41.6897 -Arial.ttf 90 ! 5.2626 42.0000 67 § 0.1542 26.9729 53.9271 -Arial.ttf 90 ! 5.2626 42.0000 68 $ -2.0963 27.6897 49.3355 -Arial.ttf 90 ! 5.2626 42.0000 69 € -0.6606 33.0769 43.3212 -Arial.ttf 90 ! 5.2626 42.0000 70 / -0.0291 17.5749 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 71 C -0.5698 36.0000 43.3212 -Arial.ttf 90 ! 5.2626 42.0000 72 * 0.2509 20.3453 17.8852 -Arial.ttf 90 ! 5.2626 42.0000 73 ” 0.1460 14.2296 14.0000 -Arial.ttf 90 ! 5.2626 42.0000 74 ? -0.1739 26.8483 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 75 { 0.1023 16.7375 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 76 } -0.3739 16.7375 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 77 , 36.6755 5.2626 14.0000 -Arial.ttf 90 ! 5.2626 42.0000 78 I -0.0801 5.6936 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 79 ° -0.1448 15.8083 15.8083 -Arial.ttf 90 ! 5.2626 42.0000 80 K 0.0923 34.5749 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 81 H -0.0345 32.9083 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 82 q 9.8919 26.3123 43.6877 -Arial.ttf 90 ! 5.2626 42.0000 83 & 0.0345 35.1148 42.3103 -Arial.ttf 90 ! 5.2626 42.0000 84 ’ -0.0345 5.9231 14.0000 -Arial.ttf 90 ! 5.2626 42.0000 85 [ 0.0260 11.0000 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 86 - 24.2448 15.4980 5.2626 -Arial.ttf 90 ! 5.2626 42.0000 87 Y -0.0346 38.4601 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 88 Q -0.6377 39.5749 46.3212 -Arial.ttf 90 ! 5.2626 42.0000 89 " 0.0050 15.8083 15.1916 -Arial.ttf 90 ! 5.2626 42.0000 90 ! 0.1050 5.2626 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 91 x 11.1234 29.1060 30.8793 -Arial.ttf 90 ! 5.2626 42.0000 92 ) -0.0885 14.4103 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 93 = 11.8265 27.8793 17.8852 -Arial.ttf 90 ! 5.2626 42.0000 94 + 7.6094 27.8753 27.8753 -Arial.ttf 90 ! 5.2626 42.0000 95 X 0.1808 37.6626 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 96 » 14.0389 25.0439 26.1917 -Arial.ttf 90 ! 5.2626 42.0000 97 ' 0.0828 5.2626 15.1916 -Arial.ttf 90 ! 5.2626 42.0000 98 ¢ -0.0862 25.7813 54.2685 -Arial.ttf 90 ! 5.2626 42.0000 99 Z -0.1708 33.0729 42.0000 -Arial.ttf 90 ! 5.2626 42.0000 100 > 7.5087 27.8354 27.8704 -Arial.ttf 90 ! 5.2626 42.0000 101 ® -0.5518 43.1916 42.9709 -Arial.ttf 90 ! 5.2626 42.0000 102 © -0.5890 43.1916 42.9709 -Arial.ttf 90 ! 5.2626 42.0000 103 ] 0.0981 11.0000 53.6167 -Arial.ttf 90 ! 5.2626 42.0000 104 é -1.2801 27.4690 43.5020 -Arial.ttf 90 ! 5.2626 42.0000 105 z 11.1181 26.3123 30.8793 -Arial.ttf 90 ! 5.2626 42.0000 106 _ 48.3197 33.3832 5.2626 -Arial.ttf 90 ! 5.2626 42.0000 107 ¥ 0.0514 32.0291 42.0000 -Arial.ttf 91 x 29.1060 30.8793 1 t -11.2146 15.0709 42.3103 -Arial.ttf 91 x 29.1060 30.8793 2 h -11.2380 24.2793 42.0000 -Arial.ttf 91 x 29.1060 30.8793 3 a -1.4953 27.4690 32.3813 -Arial.ttf 91 x 29.1060 30.8793 4 n -1.4498 24.2793 32.0709 -Arial.ttf 91 x 29.1060 30.8793 5 P -11.0771 31.4542 42.0000 -Arial.ttf 91 x 29.1060 30.8793 6 o -1.1434 27.4690 32.3813 -Arial.ttf 91 x 29.1060 30.8793 7 e -1.1390 27.4690 32.3813 -Arial.ttf 91 x 29.1060 30.8793 8 : 0.0402 5.2626 30.8793 -Arial.ttf 91 x 29.1060 30.8793 9 r -1.3464 16.5689 32.0709 -Arial.ttf 91 x 29.1060 30.8793 10 l -10.9457 5.2626 42.0000 -Arial.ttf 91 x 29.1060 30.8793 11 i -11.0449 5.2626 42.0000 -Arial.ttf 91 x 29.1060 30.8793 12 1 -10.9498 15.2355 41.6897 -Arial.ttf 91 x 29.1060 30.8793 13 | -11.0324 4.1916 54.4980 -Arial.ttf 91 x 29.1060 30.8793 14 N -11.2946 32.9083 42.0000 -Arial.ttf 91 x 29.1060 30.8793 15 f -11.0947 18.0709 42.0000 -Arial.ttf 91 x 29.1060 30.8793 16 g -1.5184 26.3123 43.6877 -Arial.ttf 91 x 29.1060 30.8793 17 d -10.8778 26.3123 42.3103 -Arial.ttf 91 x 29.1060 30.8793 18 W -11.1473 57.1916 42.0000 -Arial.ttf 91 x 29.1060 30.8793 19 s -1.2977 24.9561 32.3813 -Arial.ttf 91 x 29.1060 30.8793 20 c -1.1974 26.8084 32.3813 -Arial.ttf 91 x 29.1060 30.8793 21 u 0.1874 24.2793 31.1896 -Arial.ttf 91 x 29.1060 30.8793 22 3 -11.1281 26.8483 41.6897 -Arial.ttf 91 x 29.1060 30.8793 23 ~ 5.7634 29.9083 10.9561 -Arial.ttf 91 x 29.1060 30.8793 24 # -11.3561 31.2646 42.0000 -Arial.ttf 91 x 29.1060 30.8793 25 O -11.7480 39.5749 43.3212 -Arial.ttf 91 x 29.1060 30.8793 26 ` -11.0481 10.9561 8.0769 -Arial.ttf 91 x 29.1060 30.8793 27 @ -11.1970 54.1478 54.3123 -Arial.ttf 91 x 29.1060 30.8793 28 F -11.2173 28.2207 42.0000 -Arial.ttf 91 x 29.1060 30.8793 29 S -11.8503 33.0001 43.3212 -Arial.ttf 91 x 29.1060 30.8793 30 p -1.2319 26.3123 43.6877 -Arial.ttf 91 x 29.1060 30.8793 31 “ -11.2680 13.5690 14.0000 -Arial.ttf 91 x 29.1060 30.8793 32 % -11.2492 44.8793 42.3103 -Arial.ttf 91 x 29.1060 30.8793 33 £ -11.1043 29.8522 42.3103 -Arial.ttf 91 x 29.1060 30.8793 34 . 25.6343 5.2626 5.2626 -Arial.ttf 91 x 29.1060 30.8793 35 2 -10.9951 28.6956 41.6897 -Arial.ttf 91 x 29.1060 30.8793 36 5 -11.0600 26.8483 41.6897 -Arial.ttf 91 x 29.1060 30.8793 37 m -1.2314 41.4044 32.0709 -Arial.ttf 91 x 29.1060 30.8793 38 V -11.1275 40.5788 42.0000 -Arial.ttf 91 x 29.1060 30.8793 39 6 -10.8306 27.8542 41.6897 -Arial.ttf 91 x 29.1060 30.8793 40 w 0.0404 43.4212 30.8793 -Arial.ttf 91 x 29.1060 30.8793 41 T -10.9414 33.6936 42.0000 -Arial.ttf 91 x 29.1060 30.8793 42 M -11.1413 40.5788 42.0000 -Arial.ttf 91 x 29.1060 30.8793 43 G -11.7993 38.6897 43.3212 -Arial.ttf 91 x 29.1060 30.8793 44 b -11.2754 26.3123 42.3103 -Arial.ttf 91 x 29.1060 30.8793 45 9 -10.8655 26.8483 41.6897 -Arial.ttf 91 x 29.1060 30.8793 46 ; 0.1372 5.2626 39.6167 -Arial.ttf 91 x 29.1060 30.8793 47 D -10.9829 34.4542 42.0000 -Arial.ttf 91 x 29.1060 30.8793 48 L -11.3069 25.8813 42.0000 -Arial.ttf 91 x 29.1060 30.8793 49 y -0.1306 28.0000 42.4960 -Arial.ttf 91 x 29.1060 30.8793 50 ‘ -11.3281 5.9231 14.0000 -Arial.ttf 91 x 29.1060 30.8793 51 \ -11.0582 17.5749 42.0000 -Arial.ttf 91 x 29.1060 30.8793 52 R -10.9282 36.7497 42.0000 -Arial.ttf 91 x 29.1060 30.8793 53 < -3.8539 27.8354 27.8704 -Arial.ttf 91 x 29.1060 30.8793 54 4 -10.9056 28.3503 41.6897 -Arial.ttf 91 x 29.1060 30.8793 55 8 -10.8237 26.6626 41.6897 -Arial.ttf 91 x 29.1060 30.8793 56 0 -10.8591 26.8483 41.6897 -Arial.ttf 91 x 29.1060 30.8793 57 A -11.1964 40.5788 42.0000 -Arial.ttf 91 x 29.1060 30.8793 58 E -10.9663 31.4542 42.0000 -Arial.ttf 91 x 29.1060 30.8793 59 B -11.2698 31.4542 42.0000 -Arial.ttf 91 x 29.1060 30.8793 60 v -0.0095 27.8704 30.8793 -Arial.ttf 91 x 29.1060 30.8793 61 k -11.1144 25.1207 42.0000 -Arial.ttf 91 x 29.1060 30.8793 62 J -11.4558 24.0291 42.6606 -Arial.ttf 91 x 29.1060 30.8793 63 U -11.3183 32.9083 42.6606 -Arial.ttf 91 x 29.1060 30.8793 64 j -11.2241 12.3773 53.6167 -Arial.ttf 91 x 29.1060 30.8793 65 ( -10.9458 14.4103 53.6167 -Arial.ttf 91 x 29.1060 30.8793 66 7 -10.6460 26.8523 41.6897 -Arial.ttf 91 x 29.1060 30.8793 67 § -11.2890 26.9729 53.9271 -Arial.ttf 91 x 29.1060 30.8793 68 $ -13.4158 27.6897 49.3355 -Arial.ttf 91 x 29.1060 30.8793 69 € -11.9605 33.0769 43.3212 -Arial.ttf 91 x 29.1060 30.8793 70 / -10.9361 17.5749 42.0000 -Arial.ttf 91 x 29.1060 30.8793 71 C -11.5469 36.0000 43.3212 -Arial.ttf 91 x 29.1060 30.8793 72 * -11.0437 20.3453 17.8852 -Arial.ttf 91 x 29.1060 30.8793 73 ” -11.2145 14.2296 14.0000 -Arial.ttf 91 x 29.1060 30.8793 74 ? -10.9621 26.8483 42.0000 -Arial.ttf 91 x 29.1060 30.8793 75 { -11.2818 16.7375 53.6167 -Arial.ttf 91 x 29.1060 30.8793 76 } -10.9951 16.7375 53.6167 -Arial.ttf 91 x 29.1060 30.8793 77 , 25.3934 5.2626 14.0000 -Arial.ttf 91 x 29.1060 30.8793 78 I -11.0667 5.6936 42.0000 -Arial.ttf 91 x 29.1060 30.8793 79 ° -11.1839 15.8083 15.8083 -Arial.ttf 91 x 29.1060 30.8793 80 K -11.4764 34.5749 42.0000 -Arial.ttf 91 x 29.1060 30.8793 81 H -11.3976 32.9083 42.0000 -Arial.ttf 91 x 29.1060 30.8793 82 q -1.3878 26.3123 43.6877 -Arial.ttf 91 x 29.1060 30.8793 83 & -10.8890 35.1148 42.3103 -Arial.ttf 91 x 29.1060 30.8793 84 ’ -11.1848 5.9231 14.0000 -Arial.ttf 91 x 29.1060 30.8793 85 [ -11.5211 11.0000 53.6167 -Arial.ttf 91 x 29.1060 30.8793 86 - 13.0911 15.4980 5.2626 -Arial.ttf 91 x 29.1060 30.8793 87 Y -11.1069 38.4601 42.0000 -Arial.ttf 91 x 29.1060 30.8793 88 Q -11.6625 39.5749 46.3212 -Arial.ttf 91 x 29.1060 30.8793 89 " -11.2892 15.8083 15.1916 -Arial.ttf 91 x 29.1060 30.8793 90 ! -11.4527 5.2626 42.0000 -Arial.ttf 91 x 29.1060 30.8793 91 x -0.3475 29.1060 30.8793 -Arial.ttf 91 x 29.1060 30.8793 92 ) -11.1498 14.4103 53.6167 -Arial.ttf 91 x 29.1060 30.8793 93 = 0.9650 27.8793 17.8852 -Arial.ttf 91 x 29.1060 30.8793 94 + -3.7058 27.8753 27.8753 -Arial.ttf 91 x 29.1060 30.8793 95 X -11.2031 37.6626 42.0000 -Arial.ttf 91 x 29.1060 30.8793 96 » 3.0762 25.0439 26.1917 -Arial.ttf 91 x 29.1060 30.8793 97 ' -11.2268 5.2626 15.1916 -Arial.ttf 91 x 29.1060 30.8793 98 ¢ -11.3617 25.7813 54.2685 -Arial.ttf 91 x 29.1060 30.8793 99 Z -10.9690 33.0729 42.0000 -Arial.ttf 91 x 29.1060 30.8793 100 > -3.5345 27.8354 27.8704 -Arial.ttf 91 x 29.1060 30.8793 101 ® -11.5571 43.1916 42.9709 -Arial.ttf 91 x 29.1060 30.8793 102 © -11.7060 43.1916 42.9709 -Arial.ttf 91 x 29.1060 30.8793 103 ] -10.8614 11.0000 53.6167 -Arial.ttf 91 x 29.1060 30.8793 104 é -12.0131 27.4690 43.5020 -Arial.ttf 91 x 29.1060 30.8793 105 z -0.0429 26.3123 30.8793 -Arial.ttf 91 x 29.1060 30.8793 106 _ 37.0638 33.3832 5.2626 -Arial.ttf 91 x 29.1060 30.8793 107 ¥ -11.0093 32.0291 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 1 t -0.2979 15.0709 42.3103 -Arial.ttf 92 ) 14.4103 53.6167 2 h 0.0000 24.2793 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 3 a 9.9138 27.4690 32.3813 -Arial.ttf 92 ) 14.4103 53.6167 4 n 10.0713 24.2793 32.0709 -Arial.ttf 92 ) 14.4103 53.6167 5 P -0.0854 31.4542 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 6 o 9.7592 27.4690 32.3813 -Arial.ttf 92 ) 14.4103 53.6167 7 e 9.9349 27.4690 32.3813 -Arial.ttf 92 ) 14.4103 53.6167 8 : 11.1552 5.2626 30.8793 -Arial.ttf 92 ) 14.4103 53.6167 9 r 10.1787 16.5689 32.0709 -Arial.ttf 92 ) 14.4103 53.6167 10 l -0.0912 5.2626 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 11 i -0.0080 5.2626 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 12 1 0.5156 15.2355 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 13 | 0.0581 4.1916 54.4980 -Arial.ttf 92 ) 14.4103 53.6167 14 N -0.2483 32.9083 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 15 f -0.2345 18.0709 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 16 g 10.0215 26.3123 43.6877 -Arial.ttf 92 ) 14.4103 53.6167 17 d 0.0621 26.3123 42.3103 -Arial.ttf 92 ) 14.4103 53.6167 18 W 0.0775 57.1916 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 19 s 10.0946 24.9561 32.3813 -Arial.ttf 92 ) 14.4103 53.6167 20 c 10.0049 26.8084 32.3813 -Arial.ttf 92 ) 14.4103 53.6167 21 u 11.1816 24.2793 31.1896 -Arial.ttf 92 ) 14.4103 53.6167 22 3 0.2069 26.8483 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 23 ~ 16.8448 29.9083 10.9561 -Arial.ttf 92 ) 14.4103 53.6167 24 # -0.2264 31.2646 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 25 O -0.5640 39.5749 43.3212 -Arial.ttf 92 ) 14.4103 53.6167 26 ` 0.1337 10.9561 8.0769 -Arial.ttf 92 ) 14.4103 53.6167 27 @ -0.1557 54.1478 54.3123 -Arial.ttf 92 ) 14.4103 53.6167 28 F -0.1310 28.2207 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 29 S -0.9089 33.0001 43.3212 -Arial.ttf 92 ) 14.4103 53.6167 30 p 9.8325 26.3123 43.6877 -Arial.ttf 92 ) 14.4103 53.6167 31 “ 0.1310 13.5690 14.0000 -Arial.ttf 92 ) 14.4103 53.6167 32 % -0.0700 44.8793 42.3103 -Arial.ttf 92 ) 14.4103 53.6167 33 £ -0.1426 29.8522 42.3103 -Arial.ttf 92 ) 14.4103 53.6167 34 . 36.5747 5.2626 5.2626 -Arial.ttf 92 ) 14.4103 53.6167 35 2 0.2218 28.6956 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 36 5 0.2276 26.8483 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 37 m 9.8463 41.4044 32.0709 -Arial.ttf 92 ) 14.4103 53.6167 38 V -0.1820 40.5788 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 39 6 0.2414 27.8542 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 40 w 11.3403 43.4212 30.8793 -Arial.ttf 92 ) 14.4103 53.6167 41 T 0.0000 33.6936 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 42 M 0.2169 40.5788 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 43 G -0.7747 38.6897 43.3212 -Arial.ttf 92 ) 14.4103 53.6167 44 b -0.1629 26.3123 42.3103 -Arial.ttf 92 ) 14.4103 53.6167 45 9 0.2609 26.8483 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 46 ; 10.9001 5.2626 39.6167 -Arial.ttf 92 ) 14.4103 53.6167 47 D -0.0757 34.4542 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 48 L 0.0075 25.8813 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 49 y 11.2915 28.0000 42.4960 -Arial.ttf 92 ) 14.4103 53.6167 50 ‘ 0.0292 5.9231 14.0000 -Arial.ttf 92 ) 14.4103 53.6167 51 \ -0.1368 17.5749 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 52 R -0.0207 36.7497 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 53 < 7.6161 27.8354 27.8704 -Arial.ttf 92 ) 14.4103 53.6167 54 4 0.4907 28.3503 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 55 8 0.2280 26.6626 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 56 0 0.4623 26.8483 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 57 A -0.0775 40.5788 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 58 E 0.0784 31.4542 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 59 B 0.1061 31.4542 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 60 v 11.2767 27.8704 30.8793 -Arial.ttf 92 ) 14.4103 53.6167 61 k -0.2122 25.1207 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 62 J -0.0483 24.0291 42.6606 -Arial.ttf 92 ) 14.4103 53.6167 63 U -0.0301 32.9083 42.6606 -Arial.ttf 92 ) 14.4103 53.6167 64 j 0.0906 12.3773 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 65 ( 0.0992 14.4103 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 66 7 0.2759 26.8523 41.6897 -Arial.ttf 92 ) 14.4103 53.6167 67 § -0.0621 26.9729 53.9271 -Arial.ttf 92 ) 14.4103 53.6167 68 $ -2.1472 27.6897 49.3355 -Arial.ttf 92 ) 14.4103 53.6167 69 € -0.5212 33.0769 43.3212 -Arial.ttf 92 ) 14.4103 53.6167 70 / -0.2057 17.5749 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 71 C -0.6744 36.0000 43.3212 -Arial.ttf 92 ) 14.4103 53.6167 72 * 0.2621 20.3453 17.8852 -Arial.ttf 92 ) 14.4103 53.6167 73 ” 0.0524 14.2296 14.0000 -Arial.ttf 92 ) 14.4103 53.6167 74 ? 0.0000 26.8483 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 75 { 0.0578 16.7375 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 76 } 0.0371 16.7375 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 77 , 36.5719 5.2626 14.0000 -Arial.ttf 92 ) 14.4103 53.6167 78 I -0.0439 5.6936 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 79 ° 0.1450 15.8083 15.8083 -Arial.ttf 92 ) 14.4103 53.6167 80 K 0.0000 34.5749 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 81 H 0.0716 32.9083 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 82 q 10.0171 26.3123 43.6877 -Arial.ttf 92 ) 14.4103 53.6167 83 & -0.1862 35.1148 42.3103 -Arial.ttf 92 ) 14.4103 53.6167 84 ’ 0.0537 5.9231 14.0000 -Arial.ttf 92 ) 14.4103 53.6167 85 [ 0.1940 11.0000 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 86 - 24.2904 15.4980 5.2626 -Arial.ttf 92 ) 14.4103 53.6167 87 Y 0.0634 38.4601 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 88 Q -0.5832 39.5749 46.3212 -Arial.ttf 92 ) 14.4103 53.6167 89 " 0.1335 15.8083 15.1916 -Arial.ttf 92 ) 14.4103 53.6167 90 ! -0.0932 5.2626 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 91 x 10.9326 29.1060 30.8793 -Arial.ttf 92 ) 14.4103 53.6167 92 ) 0.0741 14.4103 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 93 = 12.0371 27.8793 17.8852 -Arial.ttf 92 ) 14.4103 53.6167 94 + 7.7776 27.8753 27.8753 -Arial.ttf 92 ) 14.4103 53.6167 95 X 0.2069 37.6626 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 96 » 13.9492 25.0439 26.1917 -Arial.ttf 92 ) 14.4103 53.6167 97 ' -0.2291 5.2626 15.1916 -Arial.ttf 92 ) 14.4103 53.6167 98 ¢ -0.2241 25.7813 54.2685 -Arial.ttf 92 ) 14.4103 53.6167 99 Z 0.2259 33.0729 42.0000 -Arial.ttf 92 ) 14.4103 53.6167 100 > 7.6052 27.8354 27.8704 -Arial.ttf 92 ) 14.4103 53.6167 101 ® -0.5143 43.1916 42.9709 -Arial.ttf 92 ) 14.4103 53.6167 102 © -0.5269 43.1916 42.9709 -Arial.ttf 92 ) 14.4103 53.6167 103 ] 0.2121 11.0000 53.6167 -Arial.ttf 92 ) 14.4103 53.6167 104 é -1.0717 27.4690 43.5020 -Arial.ttf 92 ) 14.4103 53.6167 105 z 11.1207 26.3123 30.8793 -Arial.ttf 92 ) 14.4103 53.6167 106 _ 48.0895 33.3832 5.2626 -Arial.ttf 92 ) 14.4103 53.6167 107 ¥ -0.0828 32.0291 42.0000 -Arial.ttf 93 = 27.8793 17.8852 1 t -11.6901 15.0709 42.3103 -Arial.ttf 93 = 27.8793 17.8852 2 h -11.9824 24.2793 42.0000 -Arial.ttf 93 = 27.8793 17.8852 3 a -2.1610 27.4690 32.3813 -Arial.ttf 93 = 27.8793 17.8852 4 n -1.9574 24.2793 32.0709 -Arial.ttf 93 = 27.8793 17.8852 5 P -11.9888 31.4542 42.0000 -Arial.ttf 93 = 27.8793 17.8852 6 o -2.1976 27.4690 32.3813 -Arial.ttf 93 = 27.8793 17.8852 7 e -1.6916 27.4690 32.3813 -Arial.ttf 93 = 27.8793 17.8852 8 : -0.6851 5.2626 30.8793 -Arial.ttf 93 = 27.8793 17.8852 9 r -2.1609 16.5689 32.0709 -Arial.ttf 93 = 27.8793 17.8852 10 l -11.7348 5.2626 42.0000 -Arial.ttf 93 = 27.8793 17.8852 11 i -11.7023 5.2626 42.0000 -Arial.ttf 93 = 27.8793 17.8852 12 1 -11.8577 15.2355 41.6897 -Arial.ttf 93 = 27.8793 17.8852 13 | -11.8720 4.1916 54.4980 -Arial.ttf 93 = 27.8793 17.8852 14 N -12.0900 32.9083 42.0000 -Arial.ttf 93 = 27.8793 17.8852 15 f -12.0459 18.0709 42.0000 -Arial.ttf 93 = 27.8793 17.8852 16 g -1.8797 26.3123 43.6877 -Arial.ttf 93 = 27.8793 17.8852 17 d -12.1602 26.3123 42.3103 -Arial.ttf 93 = 27.8793 17.8852 18 W -11.9558 57.1916 42.0000 -Arial.ttf 93 = 27.8793 17.8852 19 s -1.8157 24.9561 32.3813 -Arial.ttf 93 = 27.8793 17.8852 20 c -2.0449 26.8084 32.3813 -Arial.ttf 93 = 27.8793 17.8852 21 u -0.9361 24.2793 31.1896 -Arial.ttf 93 = 27.8793 17.8852 22 3 -11.8275 26.8483 41.6897 -Arial.ttf 93 = 27.8793 17.8852 23 ~ 4.7230 29.9083 10.9561 -Arial.ttf 93 = 27.8793 17.8852 24 # -12.0342 31.2646 42.0000 -Arial.ttf 93 = 27.8793 17.8852 25 O -12.5034 39.5749 43.3212 -Arial.ttf 93 = 27.8793 17.8852 26 ` -12.0055 10.9561 8.0769 -Arial.ttf 93 = 27.8793 17.8852 27 @ -12.0524 54.1478 54.3123 -Arial.ttf 93 = 27.8793 17.8852 28 F -11.8509 28.2207 42.0000 -Arial.ttf 93 = 27.8793 17.8852 29 S -12.8052 33.0001 43.3212 -Arial.ttf 93 = 27.8793 17.8852 30 p -1.9872 26.3123 43.6877 -Arial.ttf 93 = 27.8793 17.8852 31 “ -11.8345 13.5690 14.0000 -Arial.ttf 93 = 27.8793 17.8852 32 % -11.8535 44.8793 42.3103 -Arial.ttf 93 = 27.8793 17.8852 33 £ -11.7877 29.8522 42.3103 -Arial.ttf 93 = 27.8793 17.8852 34 . 24.6629 5.2626 5.2626 -Arial.ttf 93 = 27.8793 17.8852 35 2 -11.8210 28.6956 41.6897 -Arial.ttf 93 = 27.8793 17.8852 36 5 -11.8650 26.8483 41.6897 -Arial.ttf 93 = 27.8793 17.8852 37 m -2.0391 41.4044 32.0709 -Arial.ttf 93 = 27.8793 17.8852 38 V -11.9764 40.5788 42.0000 -Arial.ttf 93 = 27.8793 17.8852 39 6 -11.9647 27.8542 41.6897 -Arial.ttf 93 = 27.8793 17.8852 40 w -0.8892 43.4212 30.8793 -Arial.ttf 93 = 27.8793 17.8852 41 T -11.6510 33.6936 42.0000 -Arial.ttf 93 = 27.8793 17.8852 42 M -11.8923 40.5788 42.0000 -Arial.ttf 93 = 27.8793 17.8852 43 G -12.4414 38.6897 43.3212 -Arial.ttf 93 = 27.8793 17.8852 44 b -11.8360 26.3123 42.3103 -Arial.ttf 93 = 27.8793 17.8852 45 9 -11.7765 26.8483 41.6897 -Arial.ttf 93 = 27.8793 17.8852 46 ; -0.9803 5.2626 39.6167 -Arial.ttf 93 = 27.8793 17.8852 47 D -11.7724 34.4542 42.0000 -Arial.ttf 93 = 27.8793 17.8852 48 L -11.9870 25.8813 42.0000 -Arial.ttf 93 = 27.8793 17.8852 49 y -0.9381 28.0000 42.4960 -Arial.ttf 93 = 27.8793 17.8852 50 ‘ -11.6620 5.9231 14.0000 -Arial.ttf 93 = 27.8793 17.8852 51 \ -11.9156 17.5749 42.0000 -Arial.ttf 93 = 27.8793 17.8852 52 R -12.1095 36.7497 42.0000 -Arial.ttf 93 = 27.8793 17.8852 53 < -4.4319 27.8354 27.8704 -Arial.ttf 93 = 27.8793 17.8852 54 4 -11.4885 28.3503 41.6897 -Arial.ttf 93 = 27.8793 17.8852 55 8 -11.8555 26.6626 41.6897 -Arial.ttf 93 = 27.8793 17.8852 56 0 -11.4371 26.8483 41.6897 -Arial.ttf 93 = 27.8793 17.8852 57 A -12.1532 40.5788 42.0000 -Arial.ttf 93 = 27.8793 17.8852 58 E -12.0444 31.4542 42.0000 -Arial.ttf 93 = 27.8793 17.8852 59 B -12.2109 31.4542 42.0000 -Arial.ttf 93 = 27.8793 17.8852 60 v -0.7390 27.8704 30.8793 -Arial.ttf 93 = 27.8793 17.8852 61 k -12.1029 25.1207 42.0000 -Arial.ttf 93 = 27.8793 17.8852 62 J -12.1245 24.0291 42.6606 -Arial.ttf 93 = 27.8793 17.8852 63 U -11.9670 32.9083 42.6606 -Arial.ttf 93 = 27.8793 17.8852 64 j -11.8042 12.3773 53.6167 -Arial.ttf 93 = 27.8793 17.8852 65 ( -12.1961 14.4103 53.6167 -Arial.ttf 93 = 27.8793 17.8852 66 7 -11.9603 26.8523 41.6897 -Arial.ttf 93 = 27.8793 17.8852 67 § -11.9765 26.9729 53.9271 -Arial.ttf 93 = 27.8793 17.8852 68 $ -13.9912 27.6897 49.3355 -Arial.ttf 93 = 27.8793 17.8852 69 € -12.6552 33.0769 43.3212 -Arial.ttf 93 = 27.8793 17.8852 70 / -11.8785 17.5749 42.0000 -Arial.ttf 93 = 27.8793 17.8852 71 C -12.4540 36.0000 43.3212 -Arial.ttf 93 = 27.8793 17.8852 72 * -11.8748 20.3453 17.8852 -Arial.ttf 93 = 27.8793 17.8852 73 ” -11.9029 14.2296 14.0000 -Arial.ttf 93 = 27.8793 17.8852 74 ? -11.8403 26.8483 42.0000 -Arial.ttf 93 = 27.8793 17.8852 75 { -12.2612 16.7375 53.6167 -Arial.ttf 93 = 27.8793 17.8852 76 } -11.9234 16.7375 53.6167 -Arial.ttf 93 = 27.8793 17.8852 77 , 25.0006 5.2626 14.0000 -Arial.ttf 93 = 27.8793 17.8852 78 I -12.0980 5.6936 42.0000 -Arial.ttf 93 = 27.8793 17.8852 79 ° -11.7103 15.8083 15.8083 -Arial.ttf 93 = 27.8793 17.8852 80 K -11.7310 34.5749 42.0000 -Arial.ttf 93 = 27.8793 17.8852 81 H -11.9336 32.9083 42.0000 -Arial.ttf 93 = 27.8793 17.8852 82 q -1.9098 26.3123 43.6877 -Arial.ttf 93 = 27.8793 17.8852 83 & -12.1288 35.1148 42.3103 -Arial.ttf 93 = 27.8793 17.8852 84 ’ -12.0223 5.9231 14.0000 -Arial.ttf 93 = 27.8793 17.8852 85 [ -11.9447 11.0000 53.6167 -Arial.ttf 93 = 27.8793 17.8852 86 - 12.0852 15.4980 5.2626 -Arial.ttf 93 = 27.8793 17.8852 87 Y -11.8731 38.4601 42.0000 -Arial.ttf 93 = 27.8793 17.8852 88 Q -12.7107 39.5749 46.3212 -Arial.ttf 93 = 27.8793 17.8852 89 " -11.6951 15.8083 15.1916 -Arial.ttf 93 = 27.8793 17.8852 90 ! -12.0795 5.2626 42.0000 -Arial.ttf 93 = 27.8793 17.8852 91 x -0.8702 29.1060 30.8793 -Arial.ttf 93 = 27.8793 17.8852 92 ) -12.0221 14.4103 53.6167 -Arial.ttf 93 = 27.8793 17.8852 93 = 0.1669 27.8793 17.8852 -Arial.ttf 93 = 27.8793 17.8852 94 + -4.2435 27.8753 27.8753 -Arial.ttf 93 = 27.8793 17.8852 95 X -12.1356 37.6626 42.0000 -Arial.ttf 93 = 27.8793 17.8852 96 » 1.9404 25.0439 26.1917 -Arial.ttf 93 = 27.8793 17.8852 97 ' -11.9515 5.2626 15.1916 -Arial.ttf 93 = 27.8793 17.8852 98 ¢ -11.9100 25.7813 54.2685 -Arial.ttf 93 = 27.8793 17.8852 99 Z -11.9018 33.0729 42.0000 -Arial.ttf 93 = 27.8793 17.8852 100 > -4.2388 27.8354 27.8704 -Arial.ttf 93 = 27.8793 17.8852 101 ® -12.5422 43.1916 42.9709 -Arial.ttf 93 = 27.8793 17.8852 102 © -12.4786 43.1916 42.9709 -Arial.ttf 93 = 27.8793 17.8852 103 ] -11.9893 11.0000 53.6167 -Arial.ttf 93 = 27.8793 17.8852 104 é -12.9874 27.4690 43.5020 -Arial.ttf 93 = 27.8793 17.8852 105 z -0.8463 26.3123 30.8793 -Arial.ttf 93 = 27.8793 17.8852 106 _ 36.4386 33.3832 5.2626 -Arial.ttf 93 = 27.8793 17.8852 107 ¥ -12.1398 32.0291 42.0000 -Arial.ttf 94 + 27.8753 27.8753 1 t -7.6205 15.0709 42.3103 -Arial.ttf 94 + 27.8753 27.8753 2 h -7.4780 24.2793 42.0000 -Arial.ttf 94 + 27.8753 27.8753 3 a 2.6760 27.4690 32.3813 -Arial.ttf 94 + 27.8753 27.8753 4 n 2.5996 24.2793 32.0709 -Arial.ttf 94 + 27.8753 27.8753 5 P -7.5404 31.4542 42.0000 -Arial.ttf 94 + 27.8753 27.8753 6 o 2.2867 27.4690 32.3813 -Arial.ttf 94 + 27.8753 27.8753 7 e 2.6798 27.4690 32.3813 -Arial.ttf 94 + 27.8753 27.8753 8 : 3.7018 5.2626 30.8793 -Arial.ttf 94 + 27.8753 27.8753 9 r 2.2566 16.5689 32.0709 -Arial.ttf 94 + 27.8753 27.8753 10 l -7.7292 5.2626 42.0000 -Arial.ttf 94 + 27.8753 27.8753 11 i -7.4752 5.2626 42.0000 -Arial.ttf 94 + 27.8753 27.8753 12 1 -7.1156 15.2355 41.6897 -Arial.ttf 94 + 27.8753 27.8753 13 | -7.3847 4.1916 54.4980 -Arial.ttf 94 + 27.8753 27.8753 14 N -7.4769 32.9083 42.0000 -Arial.ttf 94 + 27.8753 27.8753 15 f -7.5596 18.0709 42.0000 -Arial.ttf 94 + 27.8753 27.8753 16 g 2.2603 26.3123 43.6877 -Arial.ttf 94 + 27.8753 27.8753 17 d -7.7303 26.3123 42.3103 -Arial.ttf 94 + 27.8753 27.8753 18 W -7.8791 57.1916 42.0000 -Arial.ttf 94 + 27.8753 27.8753 19 s 2.3709 24.9561 32.3813 -Arial.ttf 94 + 27.8753 27.8753 20 c 2.1793 26.8084 32.3813 -Arial.ttf 94 + 27.8753 27.8753 21 u 3.5060 24.2793 31.1896 -Arial.ttf 94 + 27.8753 27.8753 22 3 -7.2139 26.8483 41.6897 -Arial.ttf 94 + 27.8753 27.8753 23 ~ 9.2353 29.9083 10.9561 -Arial.ttf 94 + 27.8753 27.8753 24 # -7.4317 31.2646 42.0000 -Arial.ttf 94 + 27.8753 27.8753 25 O -8.1276 39.5749 43.3212 -Arial.ttf 94 + 27.8753 27.8753 26 ` -7.2949 10.9561 8.0769 -Arial.ttf 94 + 27.8753 27.8753 27 @ -7.5167 54.1478 54.3123 -Arial.ttf 94 + 27.8753 27.8753 28 F -7.5131 28.2207 42.0000 -Arial.ttf 94 + 27.8753 27.8753 29 S -8.2754 33.0001 43.3212 -Arial.ttf 94 + 27.8753 27.8753 30 p 2.5322 26.3123 43.6877 -Arial.ttf 94 + 27.8753 27.8753 31 “ -7.4313 13.5690 14.0000 -Arial.ttf 94 + 27.8753 27.8753 32 % -7.4441 44.8793 42.3103 -Arial.ttf 94 + 27.8753 27.8753 33 £ -7.6519 29.8522 42.3103 -Arial.ttf 94 + 27.8753 27.8753 34 . 29.2913 5.2626 5.2626 -Arial.ttf 94 + 27.8753 27.8753 35 2 -7.4412 28.6956 41.6897 -Arial.ttf 94 + 27.8753 27.8753 36 5 -7.1527 26.8483 41.6897 -Arial.ttf 94 + 27.8753 27.8753 37 m 2.6373 41.4044 32.0709 -Arial.ttf 94 + 27.8753 27.8753 38 V -7.3194 40.5788 42.0000 -Arial.ttf 94 + 27.8753 27.8753 39 6 -6.9623 27.8542 41.6897 -Arial.ttf 94 + 27.8753 27.8753 40 w 3.6439 43.4212 30.8793 -Arial.ttf 94 + 27.8753 27.8753 41 T -7.6334 33.6936 42.0000 -Arial.ttf 94 + 27.8753 27.8753 42 M -7.5085 40.5788 42.0000 -Arial.ttf 94 + 27.8753 27.8753 43 G -7.7302 38.6897 43.3212 -Arial.ttf 94 + 27.8753 27.8753 44 b -7.6217 26.3123 42.3103 -Arial.ttf 94 + 27.8753 27.8753 45 9 -7.0476 26.8483 41.6897 -Arial.ttf 94 + 27.8753 27.8753 46 ; 3.4232 5.2626 39.6167 -Arial.ttf 94 + 27.8753 27.8753 47 D -7.5432 34.4542 42.0000 -Arial.ttf 94 + 27.8753 27.8753 48 L -7.4658 25.8813 42.0000 -Arial.ttf 94 + 27.8753 27.8753 49 y 3.4536 28.0000 42.4960 -Arial.ttf 94 + 27.8753 27.8753 50 ‘ -7.5043 5.9231 14.0000 -Arial.ttf 94 + 27.8753 27.8753 51 \ -7.7569 17.5749 42.0000 -Arial.ttf 94 + 27.8753 27.8753 52 R -7.7901 36.7497 42.0000 -Arial.ttf 94 + 27.8753 27.8753 53 < -0.1093 27.8354 27.8704 -Arial.ttf 94 + 27.8753 27.8753 54 4 -7.0767 28.3503 41.6897 -Arial.ttf 94 + 27.8753 27.8753 55 8 -7.3489 26.6626 41.6897 -Arial.ttf 94 + 27.8753 27.8753 56 0 -7.3404 26.8483 41.6897 -Arial.ttf 94 + 27.8753 27.8753 57 A -7.7573 40.5788 42.0000 -Arial.ttf 94 + 27.8753 27.8753 58 E -7.4148 31.4542 42.0000 -Arial.ttf 94 + 27.8753 27.8753 59 B -7.6259 31.4542 42.0000 -Arial.ttf 94 + 27.8753 27.8753 60 v 3.4000 27.8704 30.8793 -Arial.ttf 94 + 27.8753 27.8753 61 k -7.6286 25.1207 42.0000 -Arial.ttf 94 + 27.8753 27.8753 62 J -7.5857 24.0291 42.6606 -Arial.ttf 94 + 27.8753 27.8753 63 U -7.6180 32.9083 42.6606 -Arial.ttf 94 + 27.8753 27.8753 64 j -7.7347 12.3773 53.6167 -Arial.ttf 94 + 27.8753 27.8753 65 ( -7.7346 14.4103 53.6167 -Arial.ttf 94 + 27.8753 27.8753 66 7 -7.2493 26.8523 41.6897 -Arial.ttf 94 + 27.8753 27.8753 67 § -7.4779 26.9729 53.9271 -Arial.ttf 94 + 27.8753 27.8753 68 $ -9.7248 27.6897 49.3355 -Arial.ttf 94 + 27.8753 27.8753 69 € -8.3678 33.0769 43.3212 -Arial.ttf 94 + 27.8753 27.8753 70 / -7.4242 17.5749 42.0000 -Arial.ttf 94 + 27.8753 27.8753 71 C -8.2656 36.0000 43.3212 -Arial.ttf 94 + 27.8753 27.8753 72 * -7.8242 20.3453 17.8852 -Arial.ttf 94 + 27.8753 27.8753 73 ” -7.5855 14.2296 14.0000 -Arial.ttf 94 + 27.8753 27.8753 74 ? -7.6339 26.8483 42.0000 -Arial.ttf 94 + 27.8753 27.8753 75 { -7.4685 16.7375 53.6167 -Arial.ttf 94 + 27.8753 27.8753 76 } -7.4692 16.7375 53.6167 -Arial.ttf 94 + 27.8753 27.8753 77 , 29.1724 5.2626 14.0000 -Arial.ttf 94 + 27.8753 27.8753 78 I -7.5728 5.6936 42.0000 -Arial.ttf 94 + 27.8753 27.8753 79 ° -7.6657 15.8083 15.8083 -Arial.ttf 94 + 27.8753 27.8753 80 K -7.4148 34.5749 42.0000 -Arial.ttf 94 + 27.8753 27.8753 81 H -7.5443 32.9083 42.0000 -Arial.ttf 94 + 27.8753 27.8753 82 q 2.2842 26.3123 43.6877 -Arial.ttf 94 + 27.8753 27.8753 83 & -7.3432 35.1148 42.3103 -Arial.ttf 94 + 27.8753 27.8753 84 ’ -7.3364 5.9231 14.0000 -Arial.ttf 94 + 27.8753 27.8753 85 [ -7.7347 11.0000 53.6167 -Arial.ttf 94 + 27.8753 27.8753 86 - 16.6733 15.4980 5.2626 -Arial.ttf 94 + 27.8753 27.8753 87 Y -7.8205 38.4601 42.0000 -Arial.ttf 94 + 27.8753 27.8753 88 Q -7.9913 39.5749 46.3212 -Arial.ttf 94 + 27.8753 27.8753 89 " -7.5102 15.8083 15.1916 -Arial.ttf 94 + 27.8753 27.8753 90 ! -7.5929 5.2626 42.0000 -Arial.ttf 94 + 27.8753 27.8753 91 x 3.4783 29.1060 30.8793 -Arial.ttf 94 + 27.8753 27.8753 92 ) -7.2175 14.4103 53.6167 -Arial.ttf 94 + 27.8753 27.8753 93 = 4.4434 27.8793 17.8852 -Arial.ttf 94 + 27.8753 27.8753 94 + -0.1770 27.8753 27.8753 -Arial.ttf 94 + 27.8753 27.8753 95 X -7.5113 37.6626 42.0000 -Arial.ttf 94 + 27.8753 27.8753 96 » 6.5206 25.0439 26.1917 -Arial.ttf 94 + 27.8753 27.8753 97 ' -7.6312 5.2626 15.1916 -Arial.ttf 94 + 27.8753 27.8753 98 ¢ -7.7573 25.7813 54.2685 -Arial.ttf 94 + 27.8753 27.8753 99 Z -7.4107 33.0729 42.0000 -Arial.ttf 94 + 27.8753 27.8753 100 > 0.1750 27.8354 27.8704 -Arial.ttf 94 + 27.8753 27.8753 101 ® -8.0691 43.1916 42.9709 -Arial.ttf 94 + 27.8753 27.8753 102 © -8.2986 43.1916 42.9709 -Arial.ttf 94 + 27.8753 27.8753 103 ] -7.6052 11.0000 53.6167 -Arial.ttf 94 + 27.8753 27.8753 104 é -8.7387 27.4690 43.5020 -Arial.ttf 94 + 27.8753 27.8753 105 z 3.8025 26.3123 30.8793 -Arial.ttf 94 + 27.8753 27.8753 106 _ 40.8026 33.3832 5.2626 -Arial.ttf 94 + 27.8753 27.8753 107 ¥ -7.6949 32.0291 42.0000 -Arial.ttf 95 X 37.6626 42.0000 1 t -0.2990 15.0709 42.3103 -Arial.ttf 95 X 37.6626 42.0000 2 h 0.0653 24.2793 42.0000 -Arial.ttf 95 X 37.6626 42.0000 3 a 9.9592 27.4690 32.3813 -Arial.ttf 95 X 37.6626 42.0000 4 n 10.3316 24.2793 32.0709 -Arial.ttf 95 X 37.6626 42.0000 5 P 0.1203 31.4542 42.0000 -Arial.ttf 95 X 37.6626 42.0000 6 o 10.0486 27.4690 32.3813 -Arial.ttf 95 X 37.6626 42.0000 7 e 9.9636 27.4690 32.3813 -Arial.ttf 95 X 37.6626 42.0000 8 : 11.1181 5.2626 30.8793 -Arial.ttf 95 X 37.6626 42.0000 9 r 9.9452 16.5689 32.0709 -Arial.ttf 95 X 37.6626 42.0000 10 l -0.0784 5.2626 42.0000 -Arial.ttf 95 X 37.6626 42.0000 11 i 0.1877 5.2626 42.0000 -Arial.ttf 95 X 37.6626 42.0000 12 1 0.3682 15.2355 41.6897 -Arial.ttf 95 X 37.6626 42.0000 13 | -0.0540 4.1916 54.4980 -Arial.ttf 95 X 37.6626 42.0000 14 N -0.0317 32.9083 42.0000 -Arial.ttf 95 X 37.6626 42.0000 15 f 0.1038 18.0709 42.0000 -Arial.ttf 95 X 37.6626 42.0000 16 g 9.7721 26.3123 43.6877 -Arial.ttf 95 X 37.6626 42.0000 17 d 0.0966 26.3123 42.3103 -Arial.ttf 95 X 37.6626 42.0000 18 W 0.0703 57.1916 42.0000 -Arial.ttf 95 X 37.6626 42.0000 19 s 9.7471 24.9561 32.3813 -Arial.ttf 95 X 37.6626 42.0000 20 c 10.1513 26.8084 32.3813 -Arial.ttf 95 X 37.6626 42.0000 21 u 11.3429 24.2793 31.1896 -Arial.ttf 95 X 37.6626 42.0000 22 3 0.2775 26.8483 41.6897 -Arial.ttf 95 X 37.6626 42.0000 23 ~ 16.8684 29.9083 10.9561 -Arial.ttf 95 X 37.6626 42.0000 24 # 0.2552 31.2646 42.0000 -Arial.ttf 95 X 37.6626 42.0000 25 O -0.6123 39.5749 43.3212 -Arial.ttf 95 X 37.6626 42.0000 26 ` -0.2608 10.9561 8.0769 -Arial.ttf 95 X 37.6626 42.0000 27 @ -0.1255 54.1478 54.3123 -Arial.ttf 95 X 37.6626 42.0000 28 F -0.0138 28.2207 42.0000 -Arial.ttf 95 X 37.6626 42.0000 29 S -0.6691 33.0001 43.3212 -Arial.ttf 95 X 37.6626 42.0000 30 p 9.7590 26.3123 43.6877 -Arial.ttf 95 X 37.6626 42.0000 31 “ 0.0498 13.5690 14.0000 -Arial.ttf 95 X 37.6626 42.0000 32 % 0.1929 44.8793 42.3103 -Arial.ttf 95 X 37.6626 42.0000 33 £ 0.0068 29.8522 42.3103 -Arial.ttf 95 X 37.6626 42.0000 34 . 36.7348 5.2626 5.2626 -Arial.ttf 95 X 37.6626 42.0000 35 2 0.2456 28.6956 41.6897 -Arial.ttf 95 X 37.6626 42.0000 36 5 0.4424 26.8483 41.6897 -Arial.ttf 95 X 37.6626 42.0000 37 m 9.8889 41.4044 32.0709 -Arial.ttf 95 X 37.6626 42.0000 38 V 0.0854 40.5788 42.0000 -Arial.ttf 95 X 37.6626 42.0000 39 6 0.4514 27.8542 41.6897 -Arial.ttf 95 X 37.6626 42.0000 40 w 11.0954 43.4212 30.8793 -Arial.ttf 95 X 37.6626 42.0000 41 T -0.0011 33.6936 42.0000 -Arial.ttf 95 X 37.6626 42.0000 42 M -0.1339 40.5788 42.0000 -Arial.ttf 95 X 37.6626 42.0000 43 G -0.4108 38.6897 43.3212 -Arial.ttf 95 X 37.6626 42.0000 44 b -0.3128 26.3123 42.3103 -Arial.ttf 95 X 37.6626 42.0000 45 9 0.4812 26.8483 41.6897 -Arial.ttf 95 X 37.6626 42.0000 46 ; 11.1215 5.2626 39.6167 -Arial.ttf 95 X 37.6626 42.0000 47 D -0.0286 34.4542 42.0000 -Arial.ttf 95 X 37.6626 42.0000 48 L -0.1199 25.8813 42.0000 -Arial.ttf 95 X 37.6626 42.0000 49 y 11.1743 28.0000 42.4960 -Arial.ttf 95 X 37.6626 42.0000 50 ‘ 0.2885 5.9231 14.0000 -Arial.ttf 95 X 37.6626 42.0000 51 \ -0.0578 17.5749 42.0000 -Arial.ttf 95 X 37.6626 42.0000 52 R 0.1570 36.7497 42.0000 -Arial.ttf 95 X 37.6626 42.0000 53 < 7.4121 27.8354 27.8704 -Arial.ttf 95 X 37.6626 42.0000 54 4 0.3529 28.3503 41.6897 -Arial.ttf 95 X 37.6626 42.0000 55 8 0.6205 26.6626 41.6897 -Arial.ttf 95 X 37.6626 42.0000 56 0 0.2313 26.8483 41.6897 -Arial.ttf 95 X 37.6626 42.0000 57 A -0.0580 40.5788 42.0000 -Arial.ttf 95 X 37.6626 42.0000 58 E 0.1946 31.4542 42.0000 -Arial.ttf 95 X 37.6626 42.0000 59 B -0.0939 31.4542 42.0000 -Arial.ttf 95 X 37.6626 42.0000 60 v 10.8615 27.8704 30.8793 -Arial.ttf 95 X 37.6626 42.0000 61 k -0.1915 25.1207 42.0000 -Arial.ttf 95 X 37.6626 42.0000 62 J -0.3286 24.0291 42.6606 -Arial.ttf 95 X 37.6626 42.0000 63 U -0.0385 32.9083 42.6606 -Arial.ttf 95 X 37.6626 42.0000 64 j -0.1699 12.3773 53.6167 -Arial.ttf 95 X 37.6626 42.0000 65 ( 0.0895 14.4103 53.6167 -Arial.ttf 95 X 37.6626 42.0000 66 7 0.4445 26.8523 41.6897 -Arial.ttf 95 X 37.6626 42.0000 67 § 0.1054 26.9729 53.9271 -Arial.ttf 95 X 37.6626 42.0000 68 $ -2.0330 27.6897 49.3355 -Arial.ttf 95 X 37.6626 42.0000 69 € -0.6745 33.0769 43.3212 -Arial.ttf 95 X 37.6626 42.0000 70 / -0.1453 17.5749 42.0000 -Arial.ttf 95 X 37.6626 42.0000 71 C -0.9421 36.0000 43.3212 -Arial.ttf 95 X 37.6626 42.0000 72 * -0.0850 20.3453 17.8852 -Arial.ttf 95 X 37.6626 42.0000 73 ” -0.1114 14.2296 14.0000 -Arial.ttf 95 X 37.6626 42.0000 74 ? -0.1861 26.8483 42.0000 -Arial.ttf 95 X 37.6626 42.0000 75 { -0.1655 16.7375 53.6167 -Arial.ttf 95 X 37.6626 42.0000 76 } -0.0900 16.7375 53.6167 -Arial.ttf 95 X 37.6626 42.0000 77 , 36.5344 5.2626 14.0000 -Arial.ttf 95 X 37.6626 42.0000 78 I -0.2354 5.6936 42.0000 -Arial.ttf 95 X 37.6626 42.0000 79 ° -0.3243 15.8083 15.8083 -Arial.ttf 95 X 37.6626 42.0000 80 K -0.0305 34.5749 42.0000 -Arial.ttf 95 X 37.6626 42.0000 81 H 0.1479 32.9083 42.0000 -Arial.ttf 95 X 37.6626 42.0000 82 q 10.1901 26.3123 43.6877 -Arial.ttf 95 X 37.6626 42.0000 83 & 0.1894 35.1148 42.3103 -Arial.ttf 95 X 37.6626 42.0000 84 ’ -0.2445 5.9231 14.0000 -Arial.ttf 95 X 37.6626 42.0000 85 [ 0.1749 11.0000 53.6167 -Arial.ttf 95 X 37.6626 42.0000 86 - 24.0061 15.4980 5.2626 -Arial.ttf 95 X 37.6626 42.0000 87 Y -0.2111 38.4601 42.0000 -Arial.ttf 95 X 37.6626 42.0000 88 Q -0.1891 39.5749 46.3212 -Arial.ttf 95 X 37.6626 42.0000 89 " 0.0100 15.8083 15.1916 -Arial.ttf 95 X 37.6626 42.0000 90 ! 0.2790 5.2626 42.0000 -Arial.ttf 95 X 37.6626 42.0000 91 x 11.0130 29.1060 30.8793 -Arial.ttf 95 X 37.6626 42.0000 92 ) -0.2445 14.4103 53.6167 -Arial.ttf 95 X 37.6626 42.0000 93 = 11.5367 27.8793 17.8852 -Arial.ttf 95 X 37.6626 42.0000 94 + 7.6529 27.8753 27.8753 -Arial.ttf 95 X 37.6626 42.0000 95 X -0.1628 37.6626 42.0000 -Arial.ttf 95 X 37.6626 42.0000 96 » 13.8914 25.0439 26.1917 -Arial.ttf 95 X 37.6626 42.0000 97 ' -0.1184 5.2626 15.1916 -Arial.ttf 95 X 37.6626 42.0000 98 ¢ 0.1192 25.7813 54.2685 -Arial.ttf 95 X 37.6626 42.0000 99 Z 0.2424 33.0729 42.0000 -Arial.ttf 95 X 37.6626 42.0000 100 > 7.4780 27.8354 27.8704 -Arial.ttf 95 X 37.6626 42.0000 101 ® -0.6054 43.1916 42.9709 -Arial.ttf 95 X 37.6626 42.0000 102 © -0.7470 43.1916 42.9709 -Arial.ttf 95 X 37.6626 42.0000 103 ] 0.2595 11.0000 53.6167 -Arial.ttf 95 X 37.6626 42.0000 104 é -0.8208 27.4690 43.5020 -Arial.ttf 95 X 37.6626 42.0000 105 z 10.8516 26.3123 30.8793 -Arial.ttf 95 X 37.6626 42.0000 106 _ 48.1352 33.3832 5.2626 -Arial.ttf 95 X 37.6626 42.0000 107 ¥ -0.0747 32.0291 42.0000 -Arial.ttf 96 » 25.0439 26.1917 1 t -14.0929 15.0709 42.3103 -Arial.ttf 96 » 25.0439 26.1917 2 h -14.1534 24.2793 42.0000 -Arial.ttf 96 » 25.0439 26.1917 3 a -4.1057 27.4690 32.3813 -Arial.ttf 96 » 25.0439 26.1917 4 n -4.3343 24.2793 32.0709 -Arial.ttf 96 » 25.0439 26.1917 5 P -14.1783 31.4542 42.0000 -Arial.ttf 96 » 25.0439 26.1917 6 o -3.9676 27.4690 32.3813 -Arial.ttf 96 » 25.0439 26.1917 7 e -3.9926 27.4690 32.3813 -Arial.ttf 96 » 25.0439 26.1917 8 : -2.8212 5.2626 30.8793 -Arial.ttf 96 » 25.0439 26.1917 9 r -4.0656 16.5689 32.0709 -Arial.ttf 96 » 25.0439 26.1917 10 l -13.6592 5.2626 42.0000 -Arial.ttf 96 » 25.0439 26.1917 11 i -14.1040 5.2626 42.0000 -Arial.ttf 96 » 25.0439 26.1917 12 1 -13.6002 15.2355 41.6897 -Arial.ttf 96 » 25.0439 26.1917 13 | -13.9592 4.1916 54.4980 -Arial.ttf 96 » 25.0439 26.1917 14 N -13.9950 32.9083 42.0000 -Arial.ttf 96 » 25.0439 26.1917 15 f -13.9074 18.0709 42.0000 -Arial.ttf 96 » 25.0439 26.1917 16 g -3.7278 26.3123 43.6877 -Arial.ttf 96 » 25.0439 26.1917 17 d -14.0038 26.3123 42.3103 -Arial.ttf 96 » 25.0439 26.1917 18 W -14.0473 57.1916 42.0000 -Arial.ttf 96 » 25.0439 26.1917 19 s -3.9475 24.9561 32.3813 -Arial.ttf 96 » 25.0439 26.1917 20 c -4.0063 26.8084 32.3813 -Arial.ttf 96 » 25.0439 26.1917 21 u -2.6327 24.2793 31.1896 -Arial.ttf 96 » 25.0439 26.1917 22 3 -13.6775 26.8483 41.6897 -Arial.ttf 96 » 25.0439 26.1917 23 ~ 2.8404 29.9083 10.9561 -Arial.ttf 96 » 25.0439 26.1917 24 # -14.0596 31.2646 42.0000 -Arial.ttf 96 » 25.0439 26.1917 25 O -14.7314 39.5749 43.3212 -Arial.ttf 96 » 25.0439 26.1917 26 ` -13.8004 10.9561 8.0769 -Arial.ttf 96 » 25.0439 26.1917 27 @ -13.9592 54.1478 54.3123 -Arial.ttf 96 » 25.0439 26.1917 28 F -14.1040 28.2207 42.0000 -Arial.ttf 96 » 25.0439 26.1917 29 S -14.6675 33.0001 43.3212 -Arial.ttf 96 » 25.0439 26.1917 30 p -3.8946 26.3123 43.6877 -Arial.ttf 96 » 25.0439 26.1917 31 “ -13.9561 13.5690 14.0000 -Arial.ttf 96 » 25.0439 26.1917 32 % -14.0514 44.8793 42.3103 -Arial.ttf 96 » 25.0439 26.1917 33 £ -14.1682 29.8522 42.3103 -Arial.ttf 96 » 25.0439 26.1917 34 . 22.5851 5.2626 5.2626 -Arial.ttf 96 » 25.0439 26.1917 35 2 -13.7714 28.6956 41.6897 -Arial.ttf 96 » 25.0439 26.1917 36 5 -13.4469 26.8483 41.6897 -Arial.ttf 96 » 25.0439 26.1917 37 m -3.9936 41.4044 32.0709 -Arial.ttf 96 » 25.0439 26.1917 38 V -14.0000 40.5788 42.0000 -Arial.ttf 96 » 25.0439 26.1917 39 6 -13.4665 27.8542 41.6897 -Arial.ttf 96 » 25.0439 26.1917 40 w -2.9594 43.4212 30.8793 -Arial.ttf 96 » 25.0439 26.1917 41 T -14.0764 33.6936 42.0000 -Arial.ttf 96 » 25.0439 26.1917 42 M -13.8845 40.5788 42.0000 -Arial.ttf 96 » 25.0439 26.1917 43 G -14.6775 38.6897 43.3212 -Arial.ttf 96 » 25.0439 26.1917 44 b -13.9481 26.3123 42.3103 -Arial.ttf 96 » 25.0439 26.1917 45 9 -13.6336 26.8483 41.6897 -Arial.ttf 96 » 25.0439 26.1917 46 ; -3.0246 5.2626 39.6167 -Arial.ttf 96 » 25.0439 26.1917 47 D -13.7960 34.4542 42.0000 -Arial.ttf 96 » 25.0439 26.1917 48 L -13.8828 25.8813 42.0000 -Arial.ttf 96 » 25.0439 26.1917 49 y -2.8412 28.0000 42.4960 -Arial.ttf 96 » 25.0439 26.1917 50 ‘ -14.0044 5.9231 14.0000 -Arial.ttf 96 » 25.0439 26.1917 51 \ -13.9932 17.5749 42.0000 -Arial.ttf 96 » 25.0439 26.1917 52 R -14.0102 36.7497 42.0000 -Arial.ttf 96 » 25.0439 26.1917 53 < -6.0668 27.8354 27.8704 -Arial.ttf 96 » 25.0439 26.1917 54 4 -13.6351 28.3503 41.6897 -Arial.ttf 96 » 25.0439 26.1917 55 8 -13.5122 26.6626 41.6897 -Arial.ttf 96 » 25.0439 26.1917 56 0 -13.6515 26.8483 41.6897 -Arial.ttf 96 » 25.0439 26.1917 57 A -13.8899 40.5788 42.0000 -Arial.ttf 96 » 25.0439 26.1917 58 E -13.7477 31.4542 42.0000 -Arial.ttf 96 » 25.0439 26.1917 59 B -13.7853 31.4542 42.0000 -Arial.ttf 96 » 25.0439 26.1917 60 v -2.8327 27.8704 30.8793 -Arial.ttf 96 » 25.0439 26.1917 61 k -14.0321 25.1207 42.0000 -Arial.ttf 96 » 25.0439 26.1917 62 J -14.1369 24.0291 42.6606 -Arial.ttf 96 » 25.0439 26.1917 63 U -13.9205 32.9083 42.6606 -Arial.ttf 96 » 25.0439 26.1917 64 j -14.0124 12.3773 53.6167 -Arial.ttf 96 » 25.0439 26.1917 65 ( -14.0585 14.4103 53.6167 -Arial.ttf 96 » 25.0439 26.1917 66 7 -13.5630 26.8523 41.6897 -Arial.ttf 96 » 25.0439 26.1917 67 § -14.0690 26.9729 53.9271 -Arial.ttf 96 » 25.0439 26.1917 68 $ -16.1419 27.6897 49.3355 -Arial.ttf 96 » 25.0439 26.1917 69 € -14.6349 33.0769 43.3212 -Arial.ttf 96 » 25.0439 26.1917 70 / -13.8622 17.5749 42.0000 -Arial.ttf 96 » 25.0439 26.1917 71 C -14.6773 36.0000 43.3212 -Arial.ttf 96 » 25.0439 26.1917 72 * -13.8564 20.3453 17.8852 -Arial.ttf 96 » 25.0439 26.1917 73 ” -13.9963 14.2296 14.0000 -Arial.ttf 96 » 25.0439 26.1917 74 ? -13.8114 26.8483 42.0000 -Arial.ttf 96 » 25.0439 26.1917 75 { -14.0389 16.7375 53.6167 -Arial.ttf 96 » 25.0439 26.1917 76 } -14.0462 16.7375 53.6167 -Arial.ttf 96 » 25.0439 26.1917 77 , 22.9218 5.2626 14.0000 -Arial.ttf 96 » 25.0439 26.1917 78 I -14.2976 5.6936 42.0000 -Arial.ttf 96 » 25.0439 26.1917 79 ° -13.6481 15.8083 15.8083 -Arial.ttf 96 » 25.0439 26.1917 80 K -13.8305 34.5749 42.0000 -Arial.ttf 96 » 25.0439 26.1917 81 H -13.9450 32.9083 42.0000 -Arial.ttf 96 » 25.0439 26.1917 82 q -3.9564 26.3123 43.6877 -Arial.ttf 96 » 25.0439 26.1917 83 & -13.8507 35.1148 42.3103 -Arial.ttf 96 » 25.0439 26.1917 84 ’ -13.9791 5.9231 14.0000 -Arial.ttf 96 » 25.0439 26.1917 85 [ -13.7200 11.0000 53.6167 -Arial.ttf 96 » 25.0439 26.1917 86 - 10.3057 15.4980 5.2626 -Arial.ttf 96 » 25.0439 26.1917 87 Y -14.0871 38.4601 42.0000 -Arial.ttf 96 » 25.0439 26.1917 88 Q -14.2942 39.5749 46.3212 -Arial.ttf 96 » 25.0439 26.1917 89 " -13.9837 15.8083 15.1916 -Arial.ttf 96 » 25.0439 26.1917 90 ! -14.0054 5.2626 42.0000 -Arial.ttf 96 » 25.0439 26.1917 91 x -3.1399 29.1060 30.8793 -Arial.ttf 96 » 25.0439 26.1917 92 ) -14.0747 14.4103 53.6167 -Arial.ttf 96 » 25.0439 26.1917 93 = -1.8003 27.8793 17.8852 -Arial.ttf 96 » 25.0439 26.1917 94 + -6.2931 27.8753 27.8753 -Arial.ttf 96 » 25.0439 26.1917 95 X -14.1879 37.6626 42.0000 -Arial.ttf 96 » 25.0439 26.1917 96 » -0.0784 25.0439 26.1917 -Arial.ttf 96 » 25.0439 26.1917 97 ' -13.9524 5.2626 15.1916 -Arial.ttf 96 » 25.0439 26.1917 98 ¢ -14.3571 25.7813 54.2685 -Arial.ttf 96 » 25.0439 26.1917 99 Z -14.1517 33.0729 42.0000 -Arial.ttf 96 » 25.0439 26.1917 100 > -6.2905 27.8354 27.8704 -Arial.ttf 96 » 25.0439 26.1917 101 ® -14.6623 43.1916 42.9709 -Arial.ttf 96 » 25.0439 26.1917 102 © -14.5684 43.1916 42.9709 -Arial.ttf 96 » 25.0439 26.1917 103 ] -14.0389 11.0000 53.6167 -Arial.ttf 96 » 25.0439 26.1917 104 é -14.9574 27.4690 43.5020 -Arial.ttf 96 » 25.0439 26.1917 105 z -2.7611 26.3123 30.8793 -Arial.ttf 96 » 25.0439 26.1917 106 _ 34.1923 33.3832 5.2626 -Arial.ttf 96 » 25.0439 26.1917 107 ¥ -14.0389 32.0291 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 1 t -0.0318 15.0709 42.3103 -Arial.ttf 97 ' 5.2626 15.1916 2 h 0.1199 24.2793 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 3 a 10.1348 27.4690 32.3813 -Arial.ttf 97 ' 5.2626 15.1916 4 n 9.7180 24.2793 32.0709 -Arial.ttf 97 ' 5.2626 15.1916 5 P 0.0483 31.4542 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 6 o 10.1030 27.4690 32.3813 -Arial.ttf 97 ' 5.2626 15.1916 7 e 9.9817 27.4690 32.3813 -Arial.ttf 97 ' 5.2626 15.1916 8 : 11.1923 5.2626 30.8793 -Arial.ttf 97 ' 5.2626 15.1916 9 r 10.1179 16.5689 32.0709 -Arial.ttf 97 ' 5.2626 15.1916 10 l 0.0345 5.2626 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 11 i 0.0439 5.2626 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 12 1 0.3103 15.2355 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 13 | 0.0345 4.1916 54.4980 -Arial.ttf 97 ' 5.2626 15.1916 14 N 0.0882 32.9083 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 15 f 0.0000 18.0709 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 16 g 9.8686 26.3123 43.6877 -Arial.ttf 97 ' 5.2626 15.1916 17 d 0.0000 26.3123 42.3103 -Arial.ttf 97 ' 5.2626 15.1916 18 W 0.0690 57.1916 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 19 s 9.7721 24.9561 32.3813 -Arial.ttf 97 ' 5.2626 15.1916 20 c 9.7900 26.8084 32.3813 -Arial.ttf 97 ' 5.2626 15.1916 21 u 11.0862 24.2793 31.1896 -Arial.ttf 97 ' 5.2626 15.1916 22 3 0.3103 26.8483 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 23 ~ 16.7138 29.9083 10.9561 -Arial.ttf 97 ' 5.2626 15.1916 24 # -0.0784 31.2646 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 25 O -0.6388 39.5749 43.3212 -Arial.ttf 97 ' 5.2626 15.1916 26 ` -0.0371 10.9561 8.0769 -Arial.ttf 97 ' 5.2626 15.1916 27 @ -0.1862 54.1478 54.3123 -Arial.ttf 97 ' 5.2626 15.1916 28 F -0.0027 28.2207 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 29 S -0.3890 33.0001 43.3212 -Arial.ttf 97 ' 5.2626 15.1916 30 p 9.7126 26.3123 43.6877 -Arial.ttf 97 ' 5.2626 15.1916 31 “ 0.1088 13.5690 14.0000 -Arial.ttf 97 ' 5.2626 15.1916 32 % -0.1655 44.8793 42.3103 -Arial.ttf 97 ' 5.2626 15.1916 33 £ 0.1172 29.8522 42.3103 -Arial.ttf 97 ' 5.2626 15.1916 34 . 36.7263 5.2626 5.2626 -Arial.ttf 97 ' 5.2626 15.1916 35 2 0.2330 28.6956 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 36 5 0.3989 26.8483 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 37 m 9.8034 41.4044 32.0709 -Arial.ttf 97 ' 5.2626 15.1916 38 V -0.0195 40.5788 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 39 6 0.4609 27.8542 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 40 w 11.0517 43.4212 30.8793 -Arial.ttf 97 ' 5.2626 15.1916 41 T 0.1023 33.6936 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 42 M 0.1448 40.5788 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 43 G -0.6606 38.6897 43.3212 -Arial.ttf 97 ' 5.2626 15.1916 44 b -0.0690 26.3123 42.3103 -Arial.ttf 97 ' 5.2626 15.1916 45 9 0.4705 26.8483 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 46 ; 11.1552 5.2626 39.6167 -Arial.ttf 97 ' 5.2626 15.1916 47 D -0.0149 34.4542 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 48 L -0.0659 25.8813 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 49 y 10.9069 28.0000 42.4960 -Arial.ttf 97 ' 5.2626 15.1916 50 ‘ 0.2207 5.9231 14.0000 -Arial.ttf 97 ' 5.2626 15.1916 51 \ -0.0483 17.5749 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 52 R -0.1797 36.7497 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 53 < 7.7113 27.8354 27.8704 -Arial.ttf 97 ' 5.2626 15.1916 54 4 0.2908 28.3503 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 55 8 0.3887 26.6626 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 56 0 0.2218 26.8483 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 57 A -0.1368 40.5788 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 58 E 0.0828 31.4542 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 59 B 0.0000 31.4542 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 60 v 11.1207 27.8704 30.8793 -Arial.ttf 97 ' 5.2626 15.1916 61 k 0.2195 25.1207 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 62 J -0.0399 24.0291 42.6606 -Arial.ttf 97 ' 5.2626 15.1916 63 U -0.0854 32.9083 42.6606 -Arial.ttf 97 ' 5.2626 15.1916 64 j 0.0000 12.3773 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 65 ( -0.0716 14.4103 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 66 7 0.2732 26.8523 41.6897 -Arial.ttf 97 ' 5.2626 15.1916 67 § -0.1942 26.9729 53.9271 -Arial.ttf 97 ' 5.2626 15.1916 68 $ -2.2442 27.6897 49.3355 -Arial.ttf 97 ' 5.2626 15.1916 69 € -0.4465 33.0769 43.3212 -Arial.ttf 97 ' 5.2626 15.1916 70 / -0.0207 17.5749 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 71 C -0.7491 36.0000 43.3212 -Arial.ttf 97 ' 5.2626 15.1916 72 * -0.0371 20.3453 17.8852 -Arial.ttf 97 ' 5.2626 15.1916 73 ” -0.0690 14.2296 14.0000 -Arial.ttf 97 ' 5.2626 15.1916 74 ? -0.1463 26.8483 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 75 { -0.0510 16.7375 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 76 } 0.0966 16.7375 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 77 , 36.7888 5.2626 14.0000 -Arial.ttf 97 ' 5.2626 15.1916 78 I 0.1713 5.6936 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 79 ° -0.0371 15.8083 15.8083 -Arial.ttf 97 ' 5.2626 15.1916 80 K -0.0885 34.5749 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 81 H 0.1770 32.9083 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 82 q 9.9153 26.3123 43.6877 -Arial.ttf 97 ' 5.2626 15.1916 83 & 0.0000 35.1148 42.3103 -Arial.ttf 97 ' 5.2626 15.1916 84 ’ 0.0716 5.9231 14.0000 -Arial.ttf 97 ' 5.2626 15.1916 85 [ 0.0000 11.0000 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 86 - 24.1965 15.4980 5.2626 -Arial.ttf 97 ' 5.2626 15.1916 87 Y 0.0594 38.4601 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 88 Q -0.5556 39.5749 46.3212 -Arial.ttf 97 ' 5.2626 15.1916 89 " 0.0084 15.8083 15.1916 -Arial.ttf 97 ' 5.2626 15.1916 90 ! 0.0966 5.2626 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 91 x 11.1207 29.1060 30.8793 -Arial.ttf 97 ' 5.2626 15.1916 92 ) -0.0276 14.4103 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 93 = 12.0041 27.8793 17.8852 -Arial.ttf 97 ' 5.2626 15.1916 94 + 7.5489 27.8753 27.8753 -Arial.ttf 97 ' 5.2626 15.1916 95 X -0.0345 37.6626 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 96 » 13.8967 25.0439 26.1917 -Arial.ttf 97 ' 5.2626 15.1916 97 ' -0.0524 5.2626 15.1916 -Arial.ttf 97 ' 5.2626 15.1916 98 ¢ -0.1308 25.7813 54.2685 -Arial.ttf 97 ' 5.2626 15.1916 99 Z 0.0690 33.0729 42.0000 -Arial.ttf 97 ' 5.2626 15.1916 100 > 7.6587 27.8354 27.8704 -Arial.ttf 97 ' 5.2626 15.1916 101 ® -0.6549 43.1916 42.9709 -Arial.ttf 97 ' 5.2626 15.1916 102 © -0.6526 43.1916 42.9709 -Arial.ttf 97 ' 5.2626 15.1916 103 ] -0.0690 11.0000 53.6167 -Arial.ttf 97 ' 5.2626 15.1916 104 é -1.1143 27.4690 43.5020 -Arial.ttf 97 ' 5.2626 15.1916 105 z 11.1207 26.3123 30.8793 -Arial.ttf 97 ' 5.2626 15.1916 106 _ 48.3542 33.3832 5.2626 -Arial.ttf 97 ' 5.2626 15.1916 107 ¥ 0.0000 32.0291 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 1 t -0.0969 15.0709 42.3103 -Arial.ttf 98 ¢ 25.7813 54.2685 2 h 0.2448 24.2793 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 3 a 10.2702 27.4690 32.3813 -Arial.ttf 98 ¢ 25.7813 54.2685 4 n 9.9501 24.2793 32.0709 -Arial.ttf 98 ¢ 25.7813 54.2685 5 P 0.0956 31.4542 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 6 o 9.9231 27.4690 32.3813 -Arial.ttf 98 ¢ 25.7813 54.2685 7 e 10.1534 27.4690 32.3813 -Arial.ttf 98 ¢ 25.7813 54.2685 8 : 11.1581 5.2626 30.8793 -Arial.ttf 98 ¢ 25.7813 54.2685 9 r 9.9009 16.5689 32.0709 -Arial.ttf 98 ¢ 25.7813 54.2685 10 l 0.2538 5.2626 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 11 i 0.0322 5.2626 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 12 1 0.4103 15.2355 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 13 | -0.1360 4.1916 54.4980 -Arial.ttf 98 ¢ 25.7813 54.2685 14 N -0.1211 32.9083 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 15 f 0.0093 18.0709 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 16 g 10.4290 26.3123 43.6877 -Arial.ttf 98 ¢ 25.7813 54.2685 17 d 0.3482 26.3123 42.3103 -Arial.ttf 98 ¢ 25.7813 54.2685 18 W -0.1700 57.1916 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 19 s 9.9519 24.9561 32.3813 -Arial.ttf 98 ¢ 25.7813 54.2685 20 c 10.2335 26.8084 32.3813 -Arial.ttf 98 ¢ 25.7813 54.2685 21 u 11.1941 24.2793 31.1896 -Arial.ttf 98 ¢ 25.7813 54.2685 22 3 0.4103 26.8483 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 23 ~ 16.9862 29.9083 10.9561 -Arial.ttf 98 ¢ 25.7813 54.2685 24 # 0.1525 31.2646 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 25 O -0.4610 39.5749 43.3212 -Arial.ttf 98 ¢ 25.7813 54.2685 26 ` 0.1022 10.9561 8.0769 -Arial.ttf 98 ¢ 25.7813 54.2685 27 @ 0.1839 54.1478 54.3123 -Arial.ttf 98 ¢ 25.7813 54.2685 28 F 0.4479 28.2207 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 29 S -0.7042 33.0001 43.3212 -Arial.ttf 98 ¢ 25.7813 54.2685 30 p 10.0593 26.3123 43.6877 -Arial.ttf 98 ¢ 25.7813 54.2685 31 “ 0.0970 13.5690 14.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 32 % 0.0517 44.8793 42.3103 -Arial.ttf 98 ¢ 25.7813 54.2685 33 £ -0.0877 29.8522 42.3103 -Arial.ttf 98 ¢ 25.7813 54.2685 34 . 36.9695 5.2626 5.2626 -Arial.ttf 98 ¢ 25.7813 54.2685 35 2 0.3149 28.6956 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 36 5 0.3031 26.8483 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 37 m 9.9724 41.4044 32.0709 -Arial.ttf 98 ¢ 25.7813 54.2685 38 V 0.0172 40.5788 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 39 6 0.5440 27.8542 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 40 w 11.2009 43.4212 30.8793 -Arial.ttf 98 ¢ 25.7813 54.2685 41 T 0.2506 33.6936 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 42 M -0.2019 40.5788 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 43 G -0.3808 38.6897 43.3212 -Arial.ttf 98 ¢ 25.7813 54.2685 44 b 0.1822 26.3123 42.3103 -Arial.ttf 98 ¢ 25.7813 54.2685 45 9 0.4152 26.8483 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 46 ; 11.2240 5.2626 39.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 47 D 0.0312 34.4542 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 48 L 0.3091 25.8813 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 49 y 11.2812 28.0000 42.4960 -Arial.ttf 98 ¢ 25.7813 54.2685 50 ‘ 0.0335 5.9231 14.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 51 \ 0.2299 17.5749 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 52 R -0.0399 36.7497 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 53 < 7.6759 27.8354 27.8704 -Arial.ttf 98 ¢ 25.7813 54.2685 54 4 0.6989 28.3503 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 55 8 0.3869 26.6626 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 56 0 0.5302 26.8483 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 57 A 0.1552 40.5788 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 58 E 0.1345 31.4542 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 59 B 0.2517 31.4542 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 60 v 11.4015 27.8704 30.8793 -Arial.ttf 98 ¢ 25.7813 54.2685 61 k -0.0103 25.1207 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 62 J -0.0462 24.0291 42.6606 -Arial.ttf 98 ¢ 25.7813 54.2685 63 U 0.0677 32.9083 42.6606 -Arial.ttf 98 ¢ 25.7813 54.2685 64 j -0.1948 12.3773 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 65 ( -0.0851 14.4103 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 66 7 0.5191 26.8523 41.6897 -Arial.ttf 98 ¢ 25.7813 54.2685 67 § 0.1695 26.9729 53.9271 -Arial.ttf 98 ¢ 25.7813 54.2685 68 $ -1.9580 27.6897 49.3355 -Arial.ttf 98 ¢ 25.7813 54.2685 69 € -0.5826 33.0769 43.3212 -Arial.ttf 98 ¢ 25.7813 54.2685 70 / 0.1760 17.5749 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 71 C -0.2143 36.0000 43.3212 -Arial.ttf 98 ¢ 25.7813 54.2685 72 * 0.0535 20.3453 17.8852 -Arial.ttf 98 ¢ 25.7813 54.2685 73 ” 0.0326 14.2296 14.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 74 ? 0.1021 26.8483 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 75 { 0.0289 16.7375 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 76 } 0.0312 16.7375 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 77 , 36.8586 5.2626 14.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 78 I 0.2065 5.6936 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 79 ° 0.3253 15.8083 15.8083 -Arial.ttf 98 ¢ 25.7813 54.2685 80 K -0.0199 34.5749 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 81 H 0.3923 32.9083 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 82 q 9.6745 26.3123 43.6877 -Arial.ttf 98 ¢ 25.7813 54.2685 83 & 0.1344 35.1148 42.3103 -Arial.ttf 98 ¢ 25.7813 54.2685 84 ’ -0.0506 5.9231 14.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 85 [ 0.0279 11.0000 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 86 - 24.5961 15.4980 5.2626 -Arial.ttf 98 ¢ 25.7813 54.2685 87 Y -0.3178 38.4601 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 88 Q -0.6284 39.5749 46.3212 -Arial.ttf 98 ¢ 25.7813 54.2685 89 " 0.1525 15.8083 15.1916 -Arial.ttf 98 ¢ 25.7813 54.2685 90 ! 0.1577 5.2626 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 91 x 11.4923 29.1060 30.8793 -Arial.ttf 98 ¢ 25.7813 54.2685 92 ) -0.0410 14.4103 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 93 = 12.0739 27.8793 17.8852 -Arial.ttf 98 ¢ 25.7813 54.2685 94 + 8.0456 27.8753 27.8753 -Arial.ttf 98 ¢ 25.7813 54.2685 95 X 0.1370 37.6626 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 96 » 14.0397 25.0439 26.1917 -Arial.ttf 98 ¢ 25.7813 54.2685 97 ' -0.0586 5.2626 15.1916 -Arial.ttf 98 ¢ 25.7813 54.2685 98 ¢ 0.1458 25.7813 54.2685 -Arial.ttf 98 ¢ 25.7813 54.2685 99 Z -0.0394 33.0729 42.0000 -Arial.ttf 98 ¢ 25.7813 54.2685 100 > 7.7742 27.8354 27.8704 -Arial.ttf 98 ¢ 25.7813 54.2685 101 ® -0.4832 43.1916 42.9709 -Arial.ttf 98 ¢ 25.7813 54.2685 102 © -0.4477 43.1916 42.9709 -Arial.ttf 98 ¢ 25.7813 54.2685 103 ] 0.2409 11.0000 53.6167 -Arial.ttf 98 ¢ 25.7813 54.2685 104 é -0.7936 27.4690 43.5020 -Arial.ttf 98 ¢ 25.7813 54.2685 105 z 11.3977 26.3123 30.8793 -Arial.ttf 98 ¢ 25.7813 54.2685 106 _ 48.5397 33.3832 5.2626 -Arial.ttf 98 ¢ 25.7813 54.2685 107 ¥ -0.0555 32.0291 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 1 t 0.5461 15.0709 42.3103 -Arial.ttf 99 Z 33.0729 42.0000 2 h 0.3500 24.2793 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 3 a 10.0393 27.4690 32.3813 -Arial.ttf 99 Z 33.0729 42.0000 4 n 9.8038 24.2793 32.0709 -Arial.ttf 99 Z 33.0729 42.0000 5 P -0.2376 31.4542 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 6 o 9.5611 27.4690 32.3813 -Arial.ttf 99 Z 33.0729 42.0000 7 e 9.9869 27.4690 32.3813 -Arial.ttf 99 Z 33.0729 42.0000 8 : 11.3027 5.2626 30.8793 -Arial.ttf 99 Z 33.0729 42.0000 9 r 9.8310 16.5689 32.0709 -Arial.ttf 99 Z 33.0729 42.0000 10 l 0.1421 5.2626 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 11 i 0.1218 5.2626 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 12 1 0.4345 15.2355 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 13 | -0.1092 4.1916 54.4980 -Arial.ttf 99 Z 33.0729 42.0000 14 N -0.1973 32.9083 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 15 f 0.0800 18.0709 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 16 g 10.0176 26.3123 43.6877 -Arial.ttf 99 Z 33.0729 42.0000 17 d -0.0249 26.3123 42.3103 -Arial.ttf 99 Z 33.0729 42.0000 18 W 0.0524 57.1916 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 19 s 9.9618 24.9561 32.3813 -Arial.ttf 99 Z 33.0729 42.0000 20 c 9.8054 26.8084 32.3813 -Arial.ttf 99 Z 33.0729 42.0000 21 u 11.1087 24.2793 31.1896 -Arial.ttf 99 Z 33.0729 42.0000 22 3 0.3475 26.8483 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 23 ~ 16.9701 29.9083 10.9561 -Arial.ttf 99 Z 33.0729 42.0000 24 # -0.0774 31.2646 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 25 O -0.5640 39.5749 43.3212 -Arial.ttf 99 Z 33.0729 42.0000 26 ` 0.1780 10.9561 8.0769 -Arial.ttf 99 Z 33.0729 42.0000 27 @ 0.4067 54.1478 54.3123 -Arial.ttf 99 Z 33.0729 42.0000 28 F -0.4284 28.2207 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 29 S -0.5063 33.0001 43.3212 -Arial.ttf 99 Z 33.0729 42.0000 30 p 9.9208 26.3123 43.6877 -Arial.ttf 99 Z 33.0729 42.0000 31 “ -0.4121 13.5690 14.0000 -Arial.ttf 99 Z 33.0729 42.0000 32 % -0.1506 44.8793 42.3103 -Arial.ttf 99 Z 33.0729 42.0000 33 £ -0.0141 29.8522 42.3103 -Arial.ttf 99 Z 33.0729 42.0000 34 . 36.7222 5.2626 5.2626 -Arial.ttf 99 Z 33.0729 42.0000 35 2 0.0351 28.6956 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 36 5 0.1851 26.8483 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 37 m 9.6215 41.4044 32.0709 -Arial.ttf 99 Z 33.0729 42.0000 38 V 0.1432 40.5788 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 39 6 0.4770 27.8542 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 40 w 11.1897 43.4212 30.8793 -Arial.ttf 99 Z 33.0729 42.0000 41 T -0.2603 33.6936 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 42 M 0.0509 40.5788 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 43 G -0.5407 38.6897 43.3212 -Arial.ttf 99 Z 33.0729 42.0000 44 b -0.0841 26.3123 42.3103 -Arial.ttf 99 Z 33.0729 42.0000 45 9 0.2445 26.8483 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 46 ; 11.0613 5.2626 39.6167 -Arial.ttf 99 Z 33.0729 42.0000 47 D 0.3394 34.4542 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 48 L -0.0261 25.8813 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 49 y 11.0655 28.0000 42.4960 -Arial.ttf 99 Z 33.0729 42.0000 50 ‘ -0.0854 5.9231 14.0000 -Arial.ttf 99 Z 33.0729 42.0000 51 \ -0.0226 17.5749 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 52 R 0.3904 36.7497 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 53 < 7.5940 27.8354 27.8704 -Arial.ttf 99 Z 33.0729 42.0000 54 4 0.2333 28.3503 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 55 8 0.2539 26.6626 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 56 0 0.0648 26.8483 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 57 A 0.0355 40.5788 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 58 E -0.1182 31.4542 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 59 B -0.0251 31.4542 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 60 v 11.0846 27.8704 30.8793 -Arial.ttf 99 Z 33.0729 42.0000 61 k 0.3532 25.1207 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 62 J -0.1437 24.0291 42.6606 -Arial.ttf 99 Z 33.0729 42.0000 63 U -0.0148 32.9083 42.6606 -Arial.ttf 99 Z 33.0729 42.0000 64 j 0.0774 12.3773 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 65 ( 0.2138 14.4103 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 66 7 0.3073 26.8523 41.6897 -Arial.ttf 99 Z 33.0729 42.0000 67 § -0.0797 26.9729 53.9271 -Arial.ttf 99 Z 33.0729 42.0000 68 $ -2.1779 27.6897 49.3355 -Arial.ttf 99 Z 33.0729 42.0000 69 € -1.0052 33.0769 43.3212 -Arial.ttf 99 Z 33.0729 42.0000 70 / -0.0463 17.5749 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 71 C -0.5694 36.0000 43.3212 -Arial.ttf 99 Z 33.0729 42.0000 72 * 0.1682 20.3453 17.8852 -Arial.ttf 99 Z 33.0729 42.0000 73 ” 0.1731 14.2296 14.0000 -Arial.ttf 99 Z 33.0729 42.0000 74 ? -0.2979 26.8483 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 75 { -0.1230 16.7375 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 76 } 0.1161 16.7375 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 77 , 36.9077 5.2626 14.0000 -Arial.ttf 99 Z 33.0729 42.0000 78 I 0.1671 5.6936 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 79 ° 0.0594 15.8083 15.8083 -Arial.ttf 99 Z 33.0729 42.0000 80 K 0.0248 34.5749 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 81 H 0.1272 32.9083 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 82 q 9.9210 26.3123 43.6877 -Arial.ttf 99 Z 33.0729 42.0000 83 & -0.0376 35.1148 42.3103 -Arial.ttf 99 Z 33.0729 42.0000 84 ’ -0.0122 5.9231 14.0000 -Arial.ttf 99 Z 33.0729 42.0000 85 [ -0.0371 11.0000 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 86 - 24.0686 15.4980 5.2626 -Arial.ttf 99 Z 33.0729 42.0000 87 Y 0.1279 38.4601 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 88 Q -0.9460 39.5749 46.3212 -Arial.ttf 99 Z 33.0729 42.0000 89 " -0.1793 15.8083 15.1916 -Arial.ttf 99 Z 33.0729 42.0000 90 ! -0.1314 5.2626 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 91 x 11.0406 29.1060 30.8793 -Arial.ttf 99 Z 33.0729 42.0000 92 ) -0.3293 14.4103 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 93 = 11.8691 27.8793 17.8852 -Arial.ttf 99 Z 33.0729 42.0000 94 + 7.2466 27.8753 27.8753 -Arial.ttf 99 Z 33.0729 42.0000 95 X -0.0274 37.6626 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 96 » 13.9576 25.0439 26.1917 -Arial.ttf 99 Z 33.0729 42.0000 97 ' 0.1902 5.2626 15.1916 -Arial.ttf 99 Z 33.0729 42.0000 98 ¢ -0.0136 25.7813 54.2685 -Arial.ttf 99 Z 33.0729 42.0000 99 Z -0.0939 33.0729 42.0000 -Arial.ttf 99 Z 33.0729 42.0000 100 > 7.2478 27.8354 27.8704 -Arial.ttf 99 Z 33.0729 42.0000 101 ® -0.7706 43.1916 42.9709 -Arial.ttf 99 Z 33.0729 42.0000 102 © -0.8690 43.1916 42.9709 -Arial.ttf 99 Z 33.0729 42.0000 103 ] 0.2360 11.0000 53.6167 -Arial.ttf 99 Z 33.0729 42.0000 104 é -1.3533 27.4690 43.5020 -Arial.ttf 99 Z 33.0729 42.0000 105 z 10.9474 26.3123 30.8793 -Arial.ttf 99 Z 33.0729 42.0000 106 _ 48.3706 33.3832 5.2626 -Arial.ttf 99 Z 33.0729 42.0000 107 ¥ 0.2948 32.0291 42.0000 -Arial.ttf 100 > 27.8354 27.8704 1 t -7.5776 15.0709 42.3103 -Arial.ttf 100 > 27.8354 27.8704 2 h -7.6491 24.2793 42.0000 -Arial.ttf 100 > 27.8354 27.8704 3 a 2.4055 27.4690 32.3813 -Arial.ttf 100 > 27.8354 27.8704 4 n 2.3817 24.2793 32.0709 -Arial.ttf 100 > 27.8354 27.8704 5 P -7.8120 31.4542 42.0000 -Arial.ttf 100 > 27.8354 27.8704 6 o 2.5837 27.4690 32.3813 -Arial.ttf 100 > 27.8354 27.8704 7 e 2.1542 27.4690 32.3813 -Arial.ttf 100 > 27.8354 27.8704 8 : 3.7707 5.2626 30.8793 -Arial.ttf 100 > 27.8354 27.8704 9 r 2.3154 16.5689 32.0709 -Arial.ttf 100 > 27.8354 27.8704 10 l -7.7404 5.2626 42.0000 -Arial.ttf 100 > 27.8354 27.8704 11 i -7.6384 5.2626 42.0000 -Arial.ttf 100 > 27.8354 27.8704 12 1 -7.4220 15.2355 41.6897 -Arial.ttf 100 > 27.8354 27.8704 13 | -7.5570 4.1916 54.4980 -Arial.ttf 100 > 27.8354 27.8704 14 N -7.8036 32.9083 42.0000 -Arial.ttf 100 > 27.8354 27.8704 15 f -7.2838 18.0709 42.0000 -Arial.ttf 100 > 27.8354 27.8704 16 g 2.4028 26.3123 43.6877 -Arial.ttf 100 > 27.8354 27.8704 17 d -7.6196 26.3123 42.3103 -Arial.ttf 100 > 27.8354 27.8704 18 W -7.3734 57.1916 42.0000 -Arial.ttf 100 > 27.8354 27.8704 19 s 2.3036 24.9561 32.3813 -Arial.ttf 100 > 27.8354 27.8704 20 c 2.5572 26.8084 32.3813 -Arial.ttf 100 > 27.8354 27.8704 21 u 3.6894 24.2793 31.1896 -Arial.ttf 100 > 27.8354 27.8704 22 3 -7.4439 26.8483 41.6897 -Arial.ttf 100 > 27.8354 27.8704 23 ~ 9.5254 29.9083 10.9561 -Arial.ttf 100 > 27.8354 27.8704 24 # -7.4340 31.2646 42.0000 -Arial.ttf 100 > 27.8354 27.8704 25 O -7.9497 39.5749 43.3212 -Arial.ttf 100 > 27.8354 27.8704 26 ` -7.6481 10.9561 8.0769 -Arial.ttf 100 > 27.8354 27.8704 27 @ -7.7638 54.1478 54.3123 -Arial.ttf 100 > 27.8354 27.8704 28 F -7.4895 28.2207 42.0000 -Arial.ttf 100 > 27.8354 27.8704 29 S -8.1125 33.0001 43.3212 -Arial.ttf 100 > 27.8354 27.8704 30 p 2.2629 26.3123 43.6877 -Arial.ttf 100 > 27.8354 27.8704 31 “ -7.4795 13.5690 14.0000 -Arial.ttf 100 > 27.8354 27.8704 32 % -7.7113 44.8793 42.3103 -Arial.ttf 100 > 27.8354 27.8704 33 £ -7.5485 29.8522 42.3103 -Arial.ttf 100 > 27.8354 27.8704 34 . 28.8016 5.2626 5.2626 -Arial.ttf 100 > 27.8354 27.8704 35 2 -7.4434 28.6956 41.6897 -Arial.ttf 100 > 27.8354 27.8704 36 5 -7.5000 26.8483 41.6897 -Arial.ttf 100 > 27.8354 27.8704 37 m 2.1750 41.4044 32.0709 -Arial.ttf 100 > 27.8354 27.8704 38 V -7.5162 40.5788 42.0000 -Arial.ttf 100 > 27.8354 27.8704 39 6 -7.1389 27.8542 41.6897 -Arial.ttf 100 > 27.8354 27.8704 40 w 3.3623 43.4212 30.8793 -Arial.ttf 100 > 27.8354 27.8704 41 T -7.5819 33.6936 42.0000 -Arial.ttf 100 > 27.8354 27.8704 42 M -7.6616 40.5788 42.0000 -Arial.ttf 100 > 27.8354 27.8704 43 G -8.4117 38.6897 43.3212 -Arial.ttf 100 > 27.8354 27.8704 44 b -7.4610 26.3123 42.3103 -Arial.ttf 100 > 27.8354 27.8704 45 9 -7.1719 26.8483 41.6897 -Arial.ttf 100 > 27.8354 27.8704 46 ; 3.3743 5.2626 39.6167 -Arial.ttf 100 > 27.8354 27.8704 47 D -7.5166 34.4542 42.0000 -Arial.ttf 100 > 27.8354 27.8704 48 L -7.4626 25.8813 42.0000 -Arial.ttf 100 > 27.8354 27.8704 49 y 3.5118 28.0000 42.4960 -Arial.ttf 100 > 27.8354 27.8704 50 ‘ -7.6201 5.9231 14.0000 -Arial.ttf 100 > 27.8354 27.8704 51 \ -7.6519 17.5749 42.0000 -Arial.ttf 100 > 27.8354 27.8704 52 R -7.3597 36.7497 42.0000 -Arial.ttf 100 > 27.8354 27.8704 53 < -0.1491 27.8354 27.8704 -Arial.ttf 100 > 27.8354 27.8704 54 4 -7.2355 28.3503 41.6897 -Arial.ttf 100 > 27.8354 27.8704 55 8 -7.1182 26.6626 41.6897 -Arial.ttf 100 > 27.8354 27.8704 56 0 -7.4036 26.8483 41.6897 -Arial.ttf 100 > 27.8354 27.8704 57 A -7.6604 40.5788 42.0000 -Arial.ttf 100 > 27.8354 27.8704 58 E -7.7803 31.4542 42.0000 -Arial.ttf 100 > 27.8354 27.8704 59 B -7.5342 31.4542 42.0000 -Arial.ttf 100 > 27.8354 27.8704 60 v 3.5611 27.8704 30.8793 -Arial.ttf 100 > 27.8354 27.8704 61 k -7.2956 25.1207 42.0000 -Arial.ttf 100 > 27.8354 27.8704 62 J -7.3979 24.0291 42.6606 -Arial.ttf 100 > 27.8354 27.8704 63 U -7.6628 32.9083 42.6606 -Arial.ttf 100 > 27.8354 27.8704 64 j -7.6715 12.3773 53.6167 -Arial.ttf 100 > 27.8354 27.8704 65 ( -7.6110 14.4103 53.6167 -Arial.ttf 100 > 27.8354 27.8704 66 7 -7.1213 26.8523 41.6897 -Arial.ttf 100 > 27.8354 27.8704 67 § -7.6366 26.9729 53.9271 -Arial.ttf 100 > 27.8354 27.8704 68 $ -9.7869 27.6897 49.3355 -Arial.ttf 100 > 27.8354 27.8704 69 € -8.1512 33.0769 43.3212 -Arial.ttf 100 > 27.8354 27.8704 70 / -7.6795 17.5749 42.0000 -Arial.ttf 100 > 27.8354 27.8704 71 C -8.1568 36.0000 43.3212 -Arial.ttf 100 > 27.8354 27.8704 72 * -7.5540 20.3453 17.8852 -Arial.ttf 100 > 27.8354 27.8704 73 ” -7.7552 14.2296 14.0000 -Arial.ttf 100 > 27.8354 27.8704 74 ? -7.3205 26.8483 42.0000 -Arial.ttf 100 > 27.8354 27.8704 75 { -7.6917 16.7375 53.6167 -Arial.ttf 100 > 27.8354 27.8704 76 } -7.6493 16.7375 53.6167 -Arial.ttf 100 > 27.8354 27.8704 77 , 29.4094 5.2626 14.0000 -Arial.ttf 100 > 27.8354 27.8704 78 I -7.6481 5.6936 42.0000 -Arial.ttf 100 > 27.8354 27.8704 79 ° -7.4991 15.8083 15.8083 -Arial.ttf 100 > 27.8354 27.8704 80 K -7.7238 34.5749 42.0000 -Arial.ttf 100 > 27.8354 27.8704 81 H -7.4695 32.9083 42.0000 -Arial.ttf 100 > 27.8354 27.8704 82 q 2.4845 26.3123 43.6877 -Arial.ttf 100 > 27.8354 27.8704 83 & -7.7006 35.1148 42.3103 -Arial.ttf 100 > 27.8354 27.8704 84 ’ -7.7064 5.9231 14.0000 -Arial.ttf 100 > 27.8354 27.8704 85 [ -7.7086 11.0000 53.6167 -Arial.ttf 100 > 27.8354 27.8704 86 - 16.6246 15.4980 5.2626 -Arial.ttf 100 > 27.8354 27.8704 87 Y -7.5830 38.4601 42.0000 -Arial.ttf 100 > 27.8354 27.8704 88 Q -8.2214 39.5749 46.3212 -Arial.ttf 100 > 27.8354 27.8704 89 " -7.4537 15.8083 15.1916 -Arial.ttf 100 > 27.8354 27.8704 90 ! -7.3392 5.2626 42.0000 -Arial.ttf 100 > 27.8354 27.8704 91 x 3.8925 29.1060 30.8793 -Arial.ttf 100 > 27.8354 27.8704 92 ) -7.5373 14.4103 53.6167 -Arial.ttf 100 > 27.8354 27.8704 93 = 4.4610 27.8793 17.8852 -Arial.ttf 100 > 27.8354 27.8704 94 + -0.0797 27.8753 27.8753 -Arial.ttf 100 > 27.8354 27.8704 95 X -7.4918 37.6626 42.0000 -Arial.ttf 100 > 27.8354 27.8704 96 » 6.4383 25.0439 26.1917 -Arial.ttf 100 > 27.8354 27.8704 97 ' -7.6588 5.2626 15.1916 -Arial.ttf 100 > 27.8354 27.8704 98 ¢ -7.5217 25.7813 54.2685 -Arial.ttf 100 > 27.8354 27.8704 99 Z -7.6556 33.0729 42.0000 -Arial.ttf 100 > 27.8354 27.8704 100 > 0.1009 27.8354 27.8704 -Arial.ttf 100 > 27.8354 27.8704 101 ® -8.0918 43.1916 42.9709 -Arial.ttf 100 > 27.8354 27.8704 102 © -8.3209 43.1916 42.9709 -Arial.ttf 100 > 27.8354 27.8704 103 ] -7.2366 11.0000 53.6167 -Arial.ttf 100 > 27.8354 27.8704 104 é -8.4808 27.4690 43.5020 -Arial.ttf 100 > 27.8354 27.8704 105 z 3.6354 26.3123 30.8793 -Arial.ttf 100 > 27.8354 27.8704 106 _ 40.7781 33.3832 5.2626 -Arial.ttf 100 > 27.8354 27.8704 107 ¥ -7.7733 32.0291 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 1 t 0.8506 15.0709 42.3103 -Arial.ttf 101 ® 43.1916 42.9709 2 h 0.5240 24.2793 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 3 a 10.7021 27.4690 32.3813 -Arial.ttf 101 ® 43.1916 42.9709 4 n 10.5000 24.2793 32.0709 -Arial.ttf 101 ® 43.1916 42.9709 5 P 0.8610 31.4542 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 6 o 10.5261 27.4690 32.3813 -Arial.ttf 101 ® 43.1916 42.9709 7 e 10.1306 27.4690 32.3813 -Arial.ttf 101 ® 43.1916 42.9709 8 : 11.6763 5.2626 30.8793 -Arial.ttf 101 ® 43.1916 42.9709 9 r 10.5276 16.5689 32.0709 -Arial.ttf 101 ® 43.1916 42.9709 10 l 0.7036 5.2626 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 11 i 0.1600 5.2626 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 12 1 0.9812 15.2355 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 13 | 0.8125 4.1916 54.4980 -Arial.ttf 101 ® 43.1916 42.9709 14 N 0.7512 32.9083 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 15 f 0.6012 18.0709 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 16 g 10.3034 26.3123 43.6877 -Arial.ttf 101 ® 43.1916 42.9709 17 d 0.5859 26.3123 42.3103 -Arial.ttf 101 ® 43.1916 42.9709 18 W 0.8163 57.1916 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 19 s 10.8777 24.9561 32.3813 -Arial.ttf 101 ® 43.1916 42.9709 20 c 10.5853 26.8084 32.3813 -Arial.ttf 101 ® 43.1916 42.9709 21 u 12.0800 24.2793 31.1896 -Arial.ttf 101 ® 43.1916 42.9709 22 3 0.9560 26.8483 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 23 ~ 17.4257 29.9083 10.9561 -Arial.ttf 101 ® 43.1916 42.9709 24 # 0.8261 31.2646 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 25 O -0.0287 39.5749 43.3212 -Arial.ttf 101 ® 43.1916 42.9709 26 ` 0.6866 10.9561 8.0769 -Arial.ttf 101 ® 43.1916 42.9709 27 @ 0.7131 54.1478 54.3123 -Arial.ttf 101 ® 43.1916 42.9709 28 F 0.6854 28.2207 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 29 S 0.0238 33.0001 43.3212 -Arial.ttf 101 ® 43.1916 42.9709 30 p 10.3277 26.3123 43.6877 -Arial.ttf 101 ® 43.1916 42.9709 31 “ 0.7778 13.5690 14.0000 -Arial.ttf 101 ® 43.1916 42.9709 32 % 0.6568 44.8793 42.3103 -Arial.ttf 101 ® 43.1916 42.9709 33 £ 0.8883 29.8522 42.3103 -Arial.ttf 101 ® 43.1916 42.9709 34 . 37.6028 5.2626 5.2626 -Arial.ttf 101 ® 43.1916 42.9709 35 2 0.8867 28.6956 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 36 5 1.2107 26.8483 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 37 m 10.4257 41.4044 32.0709 -Arial.ttf 101 ® 43.1916 42.9709 38 V 0.6373 40.5788 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 39 6 1.1391 27.8542 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 40 w 11.8089 43.4212 30.8793 -Arial.ttf 101 ® 43.1916 42.9709 41 T 0.4029 33.6936 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 42 M 0.4802 40.5788 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 43 G -0.5668 38.6897 43.3212 -Arial.ttf 101 ® 43.1916 42.9709 44 b 0.4017 26.3123 42.3103 -Arial.ttf 101 ® 43.1916 42.9709 45 9 1.1962 26.8483 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 46 ; 11.9920 5.2626 39.6167 -Arial.ttf 101 ® 43.1916 42.9709 47 D 0.7338 34.4542 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 48 L 0.6522 25.8813 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 49 y 12.1148 28.0000 42.4960 -Arial.ttf 101 ® 43.1916 42.9709 50 ‘ 0.5791 5.9231 14.0000 -Arial.ttf 101 ® 43.1916 42.9709 51 \ 0.6404 17.5749 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 52 R 0.5062 36.7497 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 53 < 8.4799 27.8354 27.8704 -Arial.ttf 101 ® 43.1916 42.9709 54 4 0.9831 28.3503 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 55 8 0.7476 26.6626 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 56 0 0.9149 26.8483 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 57 A 0.7905 40.5788 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 58 E 0.6257 31.4542 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 59 B 0.6373 31.4542 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 60 v 11.9202 27.8704 30.8793 -Arial.ttf 101 ® 43.1916 42.9709 61 k 0.5350 25.1207 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 62 J 0.9296 24.0291 42.6606 -Arial.ttf 101 ® 43.1916 42.9709 63 U 0.9258 32.9083 42.6606 -Arial.ttf 101 ® 43.1916 42.9709 64 j 0.9406 12.3773 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 65 ( 0.5928 14.4103 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 66 7 0.9811 26.8523 41.6897 -Arial.ttf 101 ® 43.1916 42.9709 67 § 0.7362 26.9729 53.9271 -Arial.ttf 101 ® 43.1916 42.9709 68 $ -1.8981 27.6897 49.3355 -Arial.ttf 101 ® 43.1916 42.9709 69 € -0.1628 33.0769 43.3212 -Arial.ttf 101 ® 43.1916 42.9709 70 / 0.8987 17.5749 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 71 C -0.0578 36.0000 43.3212 -Arial.ttf 101 ® 43.1916 42.9709 72 * 0.6606 20.3453 17.8852 -Arial.ttf 101 ® 43.1916 42.9709 73 ” 0.7403 14.2296 14.0000 -Arial.ttf 101 ® 43.1916 42.9709 74 ? 0.6299 26.8483 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 75 { 0.6345 16.7375 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 76 } 0.7362 16.7375 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 77 , 37.1144 5.2626 14.0000 -Arial.ttf 101 ® 43.1916 42.9709 78 I 0.7778 5.6936 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 79 ° 0.9974 15.8083 15.8083 -Arial.ttf 101 ® 43.1916 42.9709 80 K 0.4877 34.5749 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 81 H 0.6581 32.9083 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 82 q 10.3673 26.3123 43.6877 -Arial.ttf 101 ® 43.1916 42.9709 83 & 0.9417 35.1148 42.3103 -Arial.ttf 101 ® 43.1916 42.9709 84 ’ 0.5890 5.9231 14.0000 -Arial.ttf 101 ® 43.1916 42.9709 85 [ 0.6131 11.0000 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 86 - 25.4367 15.4980 5.2626 -Arial.ttf 101 ® 43.1916 42.9709 87 Y 0.3944 38.4601 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 88 Q 0.1001 39.5749 46.3212 -Arial.ttf 101 ® 43.1916 42.9709 89 " 0.8430 15.8083 15.1916 -Arial.ttf 101 ® 43.1916 42.9709 90 ! 0.8886 5.2626 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 91 x 11.8981 29.1060 30.8793 -Arial.ttf 101 ® 43.1916 42.9709 92 ) 0.7543 14.4103 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 93 = 12.7905 27.8793 17.8852 -Arial.ttf 101 ® 43.1916 42.9709 94 + 7.8740 27.8753 27.8753 -Arial.ttf 101 ® 43.1916 42.9709 95 X 0.6717 37.6626 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 96 » 14.8788 25.0439 26.1917 -Arial.ttf 101 ® 43.1916 42.9709 97 ' 0.8653 5.2626 15.1916 -Arial.ttf 101 ® 43.1916 42.9709 98 ¢ 0.5758 25.7813 54.2685 -Arial.ttf 101 ® 43.1916 42.9709 99 Z 0.5407 33.0729 42.0000 -Arial.ttf 101 ® 43.1916 42.9709 100 > 8.0754 27.8354 27.8704 -Arial.ttf 101 ® 43.1916 42.9709 101 ® -0.0341 43.1916 42.9709 -Arial.ttf 101 ® 43.1916 42.9709 102 © -0.4483 43.1916 42.9709 -Arial.ttf 101 ® 43.1916 42.9709 103 ] 1.0608 11.0000 53.6167 -Arial.ttf 101 ® 43.1916 42.9709 104 é -0.2231 27.4690 43.5020 -Arial.ttf 101 ® 43.1916 42.9709 105 z 11.7760 26.3123 30.8793 -Arial.ttf 101 ® 43.1916 42.9709 106 _ 48.9979 33.3832 5.2626 -Arial.ttf 101 ® 43.1916 42.9709 107 ¥ 0.8112 32.0291 42.0000 -Arial.ttf 102 © 43.1916 42.9709 1 t 0.7198 15.0709 42.3103 -Arial.ttf 102 © 43.1916 42.9709 2 h 1.1544 24.2793 42.0000 -Arial.ttf 102 © 43.1916 42.9709 3 a 10.6299 27.4690 32.3813 -Arial.ttf 102 © 43.1916 42.9709 4 n 10.3872 24.2793 32.0709 -Arial.ttf 102 © 43.1916 42.9709 5 P 0.6282 31.4542 42.0000 -Arial.ttf 102 © 43.1916 42.9709 6 o 10.5673 27.4690 32.3813 -Arial.ttf 102 © 43.1916 42.9709 7 e 10.7892 27.4690 32.3813 -Arial.ttf 102 © 43.1916 42.9709 8 : 11.5885 5.2626 30.8793 -Arial.ttf 102 © 43.1916 42.9709 9 r 10.2651 16.5689 32.0709 -Arial.ttf 102 © 43.1916 42.9709 10 l 0.7376 5.2626 42.0000 -Arial.ttf 102 © 43.1916 42.9709 11 i 0.5515 5.2626 42.0000 -Arial.ttf 102 © 43.1916 42.9709 12 1 0.5781 15.2355 41.6897 -Arial.ttf 102 © 43.1916 42.9709 13 | 0.7910 4.1916 54.4980 -Arial.ttf 102 © 43.1916 42.9709 14 N 0.6957 32.9083 42.0000 -Arial.ttf 102 © 43.1916 42.9709 15 f 1.0521 18.0709 42.0000 -Arial.ttf 102 © 43.1916 42.9709 16 g 10.9042 26.3123 43.6877 -Arial.ttf 102 © 43.1916 42.9709 17 d 1.0441 26.3123 42.3103 -Arial.ttf 102 © 43.1916 42.9709 18 W 0.5005 57.1916 42.0000 -Arial.ttf 102 © 43.1916 42.9709 19 s 10.4656 24.9561 32.3813 -Arial.ttf 102 © 43.1916 42.9709 20 c 10.3553 26.8084 32.3813 -Arial.ttf 102 © 43.1916 42.9709 21 u 12.1657 24.2793 31.1896 -Arial.ttf 102 © 43.1916 42.9709 22 3 0.9847 26.8483 41.6897 -Arial.ttf 102 © 43.1916 42.9709 23 ~ 17.5362 29.9083 10.9561 -Arial.ttf 102 © 43.1916 42.9709 24 # 0.8482 31.2646 42.0000 -Arial.ttf 102 © 43.1916 42.9709 25 O -0.1729 39.5749 43.3212 -Arial.ttf 102 © 43.1916 42.9709 26 ` 0.1546 10.9561 8.0769 -Arial.ttf 102 © 43.1916 42.9709 27 @ 0.5960 54.1478 54.3123 -Arial.ttf 102 © 43.1916 42.9709 28 F 0.6671 28.2207 42.0000 -Arial.ttf 102 © 43.1916 42.9709 29 S -0.1134 33.0001 43.3212 -Arial.ttf 102 © 43.1916 42.9709 30 p 10.6617 26.3123 43.6877 -Arial.ttf 102 © 43.1916 42.9709 31 “ 0.7079 13.5690 14.0000 -Arial.ttf 102 © 43.1916 42.9709 32 % 0.6235 44.8793 42.3103 -Arial.ttf 102 © 43.1916 42.9709 33 £ 0.3235 29.8522 42.3103 -Arial.ttf 102 © 43.1916 42.9709 34 . 37.4868 5.2626 5.2626 -Arial.ttf 102 © 43.1916 42.9709 35 2 0.9497 28.6956 41.6897 -Arial.ttf 102 © 43.1916 42.9709 36 5 0.7254 26.8483 41.6897 -Arial.ttf 102 © 43.1916 42.9709 37 m 10.5276 41.4044 32.0709 -Arial.ttf 102 © 43.1916 42.9709 38 V 0.5514 40.5788 42.0000 -Arial.ttf 102 © 43.1916 42.9709 39 6 0.5350 27.8542 41.6897 -Arial.ttf 102 © 43.1916 42.9709 40 w 11.6998 43.4212 30.8793 -Arial.ttf 102 © 43.1916 42.9709 41 T 0.8571 33.6936 42.0000 -Arial.ttf 102 © 43.1916 42.9709 42 M 0.7035 40.5788 42.0000 -Arial.ttf 102 © 43.1916 42.9709 43 G -0.0828 38.6897 43.3212 -Arial.ttf 102 © 43.1916 42.9709 44 b 0.5218 26.3123 42.3103 -Arial.ttf 102 © 43.1916 42.9709 45 9 1.3735 26.8483 41.6897 -Arial.ttf 102 © 43.1916 42.9709 46 ; 11.7702 5.2626 39.6167 -Arial.ttf 102 © 43.1916 42.9709 47 D 0.6824 34.4542 42.0000 -Arial.ttf 102 © 43.1916 42.9709 48 L 0.7852 25.8813 42.0000 -Arial.ttf 102 © 43.1916 42.9709 49 y 11.9181 28.0000 42.4960 -Arial.ttf 102 © 43.1916 42.9709 50 ‘ 0.4141 5.9231 14.0000 -Arial.ttf 102 © 43.1916 42.9709 51 \ 0.4836 17.5749 42.0000 -Arial.ttf 102 © 43.1916 42.9709 52 R 0.4606 36.7497 42.0000 -Arial.ttf 102 © 43.1916 42.9709 53 < 8.1385 27.8354 27.8704 -Arial.ttf 102 © 43.1916 42.9709 54 4 0.9392 28.3503 41.6897 -Arial.ttf 102 © 43.1916 42.9709 55 8 1.0550 26.6626 41.6897 -Arial.ttf 102 © 43.1916 42.9709 56 0 0.8811 26.8483 41.6897 -Arial.ttf 102 © 43.1916 42.9709 57 A 0.6277 40.5788 42.0000 -Arial.ttf 102 © 43.1916 42.9709 58 E 0.6382 31.4542 42.0000 -Arial.ttf 102 © 43.1916 42.9709 59 B 0.6012 31.4542 42.0000 -Arial.ttf 102 © 43.1916 42.9709 60 v 11.9048 27.8704 30.8793 -Arial.ttf 102 © 43.1916 42.9709 61 k 0.4206 25.1207 42.0000 -Arial.ttf 102 © 43.1916 42.9709 62 J 0.6841 24.0291 42.6606 -Arial.ttf 102 © 43.1916 42.9709 63 U 0.9120 32.9083 42.6606 -Arial.ttf 102 © 43.1916 42.9709 64 j 0.6051 12.3773 53.6167 -Arial.ttf 102 © 43.1916 42.9709 65 ( 0.3431 14.4103 53.6167 -Arial.ttf 102 © 43.1916 42.9709 66 7 0.9849 26.8523 41.6897 -Arial.ttf 102 © 43.1916 42.9709 67 § 0.3870 26.9729 53.9271 -Arial.ttf 102 © 43.1916 42.9709 68 $ -1.5190 27.6897 49.3355 -Arial.ttf 102 © 43.1916 42.9709 69 € 0.1209 33.0769 43.3212 -Arial.ttf 102 © 43.1916 42.9709 70 / 0.4902 17.5749 42.0000 -Arial.ttf 102 © 43.1916 42.9709 71 C 0.0483 36.0000 43.3212 -Arial.ttf 102 © 43.1916 42.9709 72 * 0.6799 20.3453 17.8852 -Arial.ttf 102 © 43.1916 42.9709 73 ” 0.8960 14.2296 14.0000 -Arial.ttf 102 © 43.1916 42.9709 74 ? 0.3508 26.8483 42.0000 -Arial.ttf 102 © 43.1916 42.9709 75 { 0.6426 16.7375 53.6167 -Arial.ttf 102 © 43.1916 42.9709 76 } 0.7003 16.7375 53.6167 -Arial.ttf 102 © 43.1916 42.9709 77 , 37.6493 5.2626 14.0000 -Arial.ttf 102 © 43.1916 42.9709 78 I 0.5540 5.6936 42.0000 -Arial.ttf 102 © 43.1916 42.9709 79 ° 0.4789 15.8083 15.8083 -Arial.ttf 102 © 43.1916 42.9709 80 K 0.8319 34.5749 42.0000 -Arial.ttf 102 © 43.1916 42.9709 81 H 0.7076 32.9083 42.0000 -Arial.ttf 102 © 43.1916 42.9709 82 q 10.8517 26.3123 43.6877 -Arial.ttf 102 © 43.1916 42.9709 83 & 0.6851 35.1148 42.3103 -Arial.ttf 102 © 43.1916 42.9709 84 ’ 0.8107 5.9231 14.0000 -Arial.ttf 102 © 43.1916 42.9709 85 [ 0.5928 11.0000 53.6167 -Arial.ttf 102 © 43.1916 42.9709 86 - 24.7235 15.4980 5.2626 -Arial.ttf 102 © 43.1916 42.9709 87 Y 0.9380 38.4601 42.0000 -Arial.ttf 102 © 43.1916 42.9709 88 Q -0.0000 39.5749 46.3212 -Arial.ttf 102 © 43.1916 42.9709 89 " 0.8153 15.8083 15.1916 -Arial.ttf 102 © 43.1916 42.9709 90 ! 0.6991 5.2626 42.0000 -Arial.ttf 102 © 43.1916 42.9709 91 x 11.6610 29.1060 30.8793 -Arial.ttf 102 © 43.1916 42.9709 92 ) 0.4915 14.4103 53.6167 -Arial.ttf 102 © 43.1916 42.9709 93 = 12.7337 27.8793 17.8852 -Arial.ttf 102 © 43.1916 42.9709 94 + 8.5569 27.8753 27.8753 -Arial.ttf 102 © 43.1916 42.9709 95 X 0.6282 37.6626 42.0000 -Arial.ttf 102 © 43.1916 42.9709 96 » 14.7584 25.0439 26.1917 -Arial.ttf 102 © 43.1916 42.9709 97 ' 0.8128 5.2626 15.1916 -Arial.ttf 102 © 43.1916 42.9709 98 ¢ 0.6678 25.7813 54.2685 -Arial.ttf 102 © 43.1916 42.9709 99 Z 0.5794 33.0729 42.0000 -Arial.ttf 102 © 43.1916 42.9709 100 > 8.0934 27.8354 27.8704 -Arial.ttf 102 © 43.1916 42.9709 101 ® 0.2249 43.1916 42.9709 -Arial.ttf 102 © 43.1916 42.9709 102 © 0.1077 43.1916 42.9709 -Arial.ttf 102 © 43.1916 42.9709 103 ] 0.6284 11.0000 53.6167 -Arial.ttf 102 © 43.1916 42.9709 104 é -0.3068 27.4690 43.5020 -Arial.ttf 102 © 43.1916 42.9709 105 z 11.9721 26.3123 30.8793 -Arial.ttf 102 © 43.1916 42.9709 106 _ 48.8662 33.3832 5.2626 -Arial.ttf 102 © 43.1916 42.9709 107 ¥ 0.4920 32.0291 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 1 t -0.1157 15.0709 42.3103 -Arial.ttf 103 ] 11.0000 53.6167 2 h -0.1283 24.2793 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 3 a 10.1206 27.4690 32.3813 -Arial.ttf 103 ] 11.0000 53.6167 4 n 9.9720 24.2793 32.0709 -Arial.ttf 103 ] 11.0000 53.6167 5 P -0.0318 31.4542 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 6 o 10.0557 27.4690 32.3813 -Arial.ttf 103 ] 11.0000 53.6167 7 e 9.8464 27.4690 32.3813 -Arial.ttf 103 ] 11.0000 53.6167 8 : 11.2230 5.2626 30.8793 -Arial.ttf 103 ] 11.0000 53.6167 9 r 9.7843 16.5689 32.0709 -Arial.ttf 103 ] 11.0000 53.6167 10 l 0.0195 5.2626 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 11 i -0.1739 5.2626 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 12 1 0.4684 15.2355 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 13 | 0.0371 4.1916 54.4980 -Arial.ttf 103 ] 11.0000 53.6167 14 N 0.0014 32.9083 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 15 f 0.1268 18.0709 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 16 g 10.1810 26.3123 43.6877 -Arial.ttf 103 ] 11.0000 53.6167 17 d 0.0000 26.3123 42.3103 -Arial.ttf 103 ] 11.0000 53.6167 18 W 0.0966 57.1916 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 19 s 9.9291 24.9561 32.3813 -Arial.ttf 103 ] 11.0000 53.6167 20 c 9.8284 26.8084 32.3813 -Arial.ttf 103 ] 11.0000 53.6167 21 u 11.1510 24.2793 31.1896 -Arial.ttf 103 ] 11.0000 53.6167 22 3 0.4445 26.8483 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 23 ~ 16.9579 29.9083 10.9561 -Arial.ttf 103 ] 11.0000 53.6167 24 # 0.0690 31.2646 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 25 O -0.7696 39.5749 43.3212 -Arial.ttf 103 ] 11.0000 53.6167 26 ` 0.0839 10.9561 8.0769 -Arial.ttf 103 ] 11.0000 53.6167 27 @ -0.1432 54.1478 54.3123 -Arial.ttf 103 ] 11.0000 53.6167 28 F 0.5404 28.2207 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 29 S -0.3885 33.0001 43.3212 -Arial.ttf 103 ] 11.0000 53.6167 30 p 9.9885 26.3123 43.6877 -Arial.ttf 103 ] 11.0000 53.6167 31 “ 0.1406 13.5690 14.0000 -Arial.ttf 103 ] 11.0000 53.6167 32 % -0.1570 44.8793 42.3103 -Arial.ttf 103 ] 11.0000 53.6167 33 £ -0.1601 29.8522 42.3103 -Arial.ttf 103 ] 11.0000 53.6167 34 . 36.9336 5.2626 5.2626 -Arial.ttf 103 ] 11.0000 53.6167 35 2 0.2621 28.6956 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 36 5 0.5144 26.8483 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 37 m 9.9095 41.4044 32.0709 -Arial.ttf 103 ] 11.0000 53.6167 38 V -0.0621 40.5788 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 39 6 0.1364 27.8542 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 40 w 11.0805 43.4212 30.8793 -Arial.ttf 103 ] 11.0000 53.6167 41 T -0.0260 33.6936 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 42 M -0.0828 40.5788 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 43 G -0.6606 38.6897 43.3212 -Arial.ttf 103 ] 11.0000 53.6167 44 b 0.0621 26.3123 42.3103 -Arial.ttf 103 ] 11.0000 53.6167 45 9 0.3103 26.8483 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 46 ; 11.1954 5.2626 39.6167 -Arial.ttf 103 ] 11.0000 53.6167 47 D 0.0138 34.4542 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 48 L -0.3394 25.8813 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 49 y 11.2230 28.0000 42.4960 -Arial.ttf 103 ] 11.0000 53.6167 50 ‘ 0.3092 5.9231 14.0000 -Arial.ttf 103 ] 11.0000 53.6167 51 \ 0.2594 17.5749 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 52 R -0.0117 36.7497 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 53 < 7.5830 27.8354 27.8704 -Arial.ttf 103 ] 11.0000 53.6167 54 4 0.1453 28.3503 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 55 8 0.0665 26.6626 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 56 0 -0.0534 26.8483 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 57 A 0.0744 40.5788 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 58 E 0.0690 31.4542 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 59 B -0.0594 31.4542 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 60 v 11.0862 27.8704 30.8793 -Arial.ttf 103 ] 11.0000 53.6167 61 k 0.1034 25.1207 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 62 J 0.2042 24.0291 42.6606 -Arial.ttf 103 ] 11.0000 53.6167 63 U -0.2014 32.9083 42.6606 -Arial.ttf 103 ] 11.0000 53.6167 64 j 0.0000 12.3773 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 65 ( 0.0281 14.4103 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 66 7 0.2607 26.8523 41.6897 -Arial.ttf 103 ] 11.0000 53.6167 67 § -0.0690 26.9729 53.9271 -Arial.ttf 103 ] 11.0000 53.6167 68 $ -2.1020 27.6897 49.3355 -Arial.ttf 103 ] 11.0000 53.6167 69 € -0.8288 33.0769 43.3212 -Arial.ttf 103 ] 11.0000 53.6167 70 / -0.1034 17.5749 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 71 C -0.9142 36.0000 43.3212 -Arial.ttf 103 ] 11.0000 53.6167 72 * -0.2678 20.3453 17.8852 -Arial.ttf 103 ] 11.0000 53.6167 73 ” -0.0923 14.2296 14.0000 -Arial.ttf 103 ] 11.0000 53.6167 74 ? 0.0885 26.8483 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 75 { 0.0784 16.7375 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 76 } 0.0966 16.7375 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 77 , 37.1539 5.2626 14.0000 -Arial.ttf 103 ] 11.0000 53.6167 78 I -0.1632 5.6936 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 79 ° 0.0371 15.8083 15.8083 -Arial.ttf 103 ] 11.0000 53.6167 80 K 0.0770 34.5749 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 81 H -0.2291 32.9083 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 82 q 10.0892 26.3123 43.6877 -Arial.ttf 103 ] 11.0000 53.6167 83 & 0.0333 35.1148 42.3103 -Arial.ttf 103 ] 11.0000 53.6167 84 ’ 0.2149 5.9231 14.0000 -Arial.ttf 103 ] 11.0000 53.6167 85 [ -0.0716 11.0000 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 86 - 24.2766 15.4980 5.2626 -Arial.ttf 103 ] 11.0000 53.6167 87 Y -0.0563 38.4601 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 88 Q -0.5652 39.5749 46.3212 -Arial.ttf 103 ] 11.0000 53.6167 89 " 0.1682 15.8083 15.1916 -Arial.ttf 103 ] 11.0000 53.6167 90 ! -0.0053 5.2626 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 91 x 11.0943 29.1060 30.8793 -Arial.ttf 103 ] 11.0000 53.6167 92 ) -0.0966 14.4103 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 93 = 12.1758 27.8793 17.8852 -Arial.ttf 103 ] 11.0000 53.6167 94 + 7.5624 27.8753 27.8753 -Arial.ttf 103 ] 11.0000 53.6167 95 X 0.1337 37.6626 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 96 » 14.1078 25.0439 26.1917 -Arial.ttf 103 ] 11.0000 53.6167 97 ' 0.1114 5.2626 15.1916 -Arial.ttf 103 ] 11.0000 53.6167 98 ¢ -0.0008 25.7813 54.2685 -Arial.ttf 103 ] 11.0000 53.6167 99 Z 0.1847 33.0729 42.0000 -Arial.ttf 103 ] 11.0000 53.6167 100 > 7.6010 27.8354 27.8704 -Arial.ttf 103 ] 11.0000 53.6167 101 ® -0.5652 43.1916 42.9709 -Arial.ttf 103 ] 11.0000 53.6167 102 © -0.7296 43.1916 42.9709 -Arial.ttf 103 ] 11.0000 53.6167 103 ] 0.1575 11.0000 53.6167 -Arial.ttf 103 ] 11.0000 53.6167 104 é -1.2908 27.4690 43.5020 -Arial.ttf 103 ] 11.0000 53.6167 105 z 11.1690 26.3123 30.8793 -Arial.ttf 103 ] 11.0000 53.6167 106 _ 48.3474 33.3832 5.2626 -Arial.ttf 103 ] 11.0000 53.6167 107 ¥ 0.1368 32.0291 42.0000 -Arial.ttf 104 é 27.4690 43.5020 1 t 1.1008 15.0709 42.3103 -Arial.ttf 104 é 27.4690 43.5020 2 h 1.2288 24.2793 42.0000 -Arial.ttf 104 é 27.4690 43.5020 3 a 10.9038 27.4690 32.3813 -Arial.ttf 104 é 27.4690 43.5020 4 n 11.0349 24.2793 32.0709 -Arial.ttf 104 é 27.4690 43.5020 5 P 1.2028 31.4542 42.0000 -Arial.ttf 104 é 27.4690 43.5020 6 o 11.0459 27.4690 32.3813 -Arial.ttf 104 é 27.4690 43.5020 7 e 11.0544 27.4690 32.3813 -Arial.ttf 104 é 27.4690 43.5020 8 : 12.5251 5.2626 30.8793 -Arial.ttf 104 é 27.4690 43.5020 9 r 11.1537 16.5689 32.0709 -Arial.ttf 104 é 27.4690 43.5020 10 l 1.1863 5.2626 42.0000 -Arial.ttf 104 é 27.4690 43.5020 11 i 1.2935 5.2626 42.0000 -Arial.ttf 104 é 27.4690 43.5020 12 1 1.1970 15.2355 41.6897 -Arial.ttf 104 é 27.4690 43.5020 13 | 1.1146 4.1916 54.4980 -Arial.ttf 104 é 27.4690 43.5020 14 N 1.4376 32.9083 42.0000 -Arial.ttf 104 é 27.4690 43.5020 15 f 0.9807 18.0709 42.0000 -Arial.ttf 104 é 27.4690 43.5020 16 g 11.3015 26.3123 43.6877 -Arial.ttf 104 é 27.4690 43.5020 17 d 1.1872 26.3123 42.3103 -Arial.ttf 104 é 27.4690 43.5020 18 W 1.3518 57.1916 42.0000 -Arial.ttf 104 é 27.4690 43.5020 19 s 11.2612 24.9561 32.3813 -Arial.ttf 104 é 27.4690 43.5020 20 c 11.1747 26.8084 32.3813 -Arial.ttf 104 é 27.4690 43.5020 21 u 12.6434 24.2793 31.1896 -Arial.ttf 104 é 27.4690 43.5020 22 3 1.4913 26.8483 41.6897 -Arial.ttf 104 é 27.4690 43.5020 23 ~ 18.0433 29.9083 10.9561 -Arial.ttf 104 é 27.4690 43.5020 24 # 0.8411 31.2646 42.0000 -Arial.ttf 104 é 27.4690 43.5020 25 O 0.3943 39.5749 43.3212 -Arial.ttf 104 é 27.4690 43.5020 26 ` 0.9694 10.9561 8.0769 -Arial.ttf 104 é 27.4690 43.5020 27 @ 1.3851 54.1478 54.3123 -Arial.ttf 104 é 27.4690 43.5020 28 F 1.1589 28.2207 42.0000 -Arial.ttf 104 é 27.4690 43.5020 29 S 0.7722 33.0001 43.3212 -Arial.ttf 104 é 27.4690 43.5020 30 p 11.2858 26.3123 43.6877 -Arial.ttf 104 é 27.4690 43.5020 31 “ 1.1268 13.5690 14.0000 -Arial.ttf 104 é 27.4690 43.5020 32 % 1.1939 44.8793 42.3103 -Arial.ttf 104 é 27.4690 43.5020 33 £ 1.2457 29.8522 42.3103 -Arial.ttf 104 é 27.4690 43.5020 34 . 37.9335 5.2626 5.2626 -Arial.ttf 104 é 27.4690 43.5020 35 2 1.2898 28.6956 41.6897 -Arial.ttf 104 é 27.4690 43.5020 36 5 1.6537 26.8483 41.6897 -Arial.ttf 104 é 27.4690 43.5020 37 m 11.0517 41.4044 32.0709 -Arial.ttf 104 é 27.4690 43.5020 38 V 1.2659 40.5788 42.0000 -Arial.ttf 104 é 27.4690 43.5020 39 6 1.4260 27.8542 41.6897 -Arial.ttf 104 é 27.4690 43.5020 40 w 12.4497 43.4212 30.8793 -Arial.ttf 104 é 27.4690 43.5020 41 T 0.9281 33.6936 42.0000 -Arial.ttf 104 é 27.4690 43.5020 42 M 1.2700 40.5788 42.0000 -Arial.ttf 104 é 27.4690 43.5020 43 G 0.5215 38.6897 43.3212 -Arial.ttf 104 é 27.4690 43.5020 44 b 1.3472 26.3123 42.3103 -Arial.ttf 104 é 27.4690 43.5020 45 9 1.3986 26.8483 41.6897 -Arial.ttf 104 é 27.4690 43.5020 46 ; 12.1606 5.2626 39.6167 -Arial.ttf 104 é 27.4690 43.5020 47 D 1.0451 34.4542 42.0000 -Arial.ttf 104 é 27.4690 43.5020 48 L 1.1958 25.8813 42.0000 -Arial.ttf 104 é 27.4690 43.5020 49 y 12.3292 28.0000 42.4960 -Arial.ttf 104 é 27.4690 43.5020 50 ‘ 1.0314 5.9231 14.0000 -Arial.ttf 104 é 27.4690 43.5020 51 \ 1.0411 17.5749 42.0000 -Arial.ttf 104 é 27.4690 43.5020 52 R 1.1115 36.7497 42.0000 -Arial.ttf 104 é 27.4690 43.5020 53 < 9.0286 27.8354 27.8704 -Arial.ttf 104 é 27.4690 43.5020 54 4 1.4537 28.3503 41.6897 -Arial.ttf 104 é 27.4690 43.5020 55 8 1.5895 26.6626 41.6897 -Arial.ttf 104 é 27.4690 43.5020 56 0 1.3806 26.8483 41.6897 -Arial.ttf 104 é 27.4690 43.5020 57 A 0.9928 40.5788 42.0000 -Arial.ttf 104 é 27.4690 43.5020 58 E 1.1849 31.4542 42.0000 -Arial.ttf 104 é 27.4690 43.5020 59 B 1.0522 31.4542 42.0000 -Arial.ttf 104 é 27.4690 43.5020 60 v 12.1467 27.8704 30.8793 -Arial.ttf 104 é 27.4690 43.5020 61 k 1.4559 25.1207 42.0000 -Arial.ttf 104 é 27.4690 43.5020 62 J 1.2176 24.0291 42.6606 -Arial.ttf 104 é 27.4690 43.5020 63 U 1.0258 32.9083 42.6606 -Arial.ttf 104 é 27.4690 43.5020 64 j 1.1974 12.3773 53.6167 -Arial.ttf 104 é 27.4690 43.5020 65 ( 1.2648 14.4103 53.6167 -Arial.ttf 104 é 27.4690 43.5020 66 7 1.4553 26.8523 41.6897 -Arial.ttf 104 é 27.4690 43.5020 67 § 1.2898 26.9729 53.9271 -Arial.ttf 104 é 27.4690 43.5020 68 $ -0.5175 27.6897 49.3355 -Arial.ttf 104 é 27.4690 43.5020 69 € 0.5915 33.0769 43.3212 -Arial.ttf 104 é 27.4690 43.5020 70 / 0.9572 17.5749 42.0000 -Arial.ttf 104 é 27.4690 43.5020 71 C 0.4207 36.0000 43.3212 -Arial.ttf 104 é 27.4690 43.5020 72 * 1.3146 20.3453 17.8852 -Arial.ttf 104 é 27.4690 43.5020 73 ” 0.8332 14.2296 14.0000 -Arial.ttf 104 é 27.4690 43.5020 74 ? 1.1778 26.8483 42.0000 -Arial.ttf 104 é 27.4690 43.5020 75 { 1.3571 16.7375 53.6167 -Arial.ttf 104 é 27.4690 43.5020 76 } 1.1763 16.7375 53.6167 -Arial.ttf 104 é 27.4690 43.5020 77 , 37.8559 5.2626 14.0000 -Arial.ttf 104 é 27.4690 43.5020 78 I 1.4038 5.6936 42.0000 -Arial.ttf 104 é 27.4690 43.5020 79 ° 1.0978 15.8083 15.8083 -Arial.ttf 104 é 27.4690 43.5020 80 K 1.1997 34.5749 42.0000 -Arial.ttf 104 é 27.4690 43.5020 81 H 1.1045 32.9083 42.0000 -Arial.ttf 104 é 27.4690 43.5020 82 q 11.1410 26.3123 43.6877 -Arial.ttf 104 é 27.4690 43.5020 83 & 1.1127 35.1148 42.3103 -Arial.ttf 104 é 27.4690 43.5020 84 ’ 0.9477 5.9231 14.0000 -Arial.ttf 104 é 27.4690 43.5020 85 [ 1.4646 11.0000 53.6167 -Arial.ttf 104 é 27.4690 43.5020 86 - 25.4738 15.4980 5.2626 -Arial.ttf 104 é 27.4690 43.5020 87 Y 1.2345 38.4601 42.0000 -Arial.ttf 104 é 27.4690 43.5020 88 Q 0.4760 39.5749 46.3212 -Arial.ttf 104 é 27.4690 43.5020 89 " 1.1859 15.8083 15.1916 -Arial.ttf 104 é 27.4690 43.5020 90 ! 1.0035 5.2626 42.0000 -Arial.ttf 104 é 27.4690 43.5020 91 x 12.4789 29.1060 30.8793 -Arial.ttf 104 é 27.4690 43.5020 92 ) 1.3804 14.4103 53.6167 -Arial.ttf 104 é 27.4690 43.5020 93 = 13.2312 27.8793 17.8852 -Arial.ttf 104 é 27.4690 43.5020 94 + 8.5804 27.8753 27.8753 -Arial.ttf 104 é 27.4690 43.5020 95 X 1.3407 37.6626 42.0000 -Arial.ttf 104 é 27.4690 43.5020 96 » 15.1302 25.0439 26.1917 -Arial.ttf 104 é 27.4690 43.5020 97 ' 1.0438 5.2626 15.1916 -Arial.ttf 104 é 27.4690 43.5020 98 ¢ 0.9319 25.7813 54.2685 -Arial.ttf 104 é 27.4690 43.5020 99 Z 1.2744 33.0729 42.0000 -Arial.ttf 104 é 27.4690 43.5020 100 > 8.4316 27.8354 27.8704 -Arial.ttf 104 é 27.4690 43.5020 101 ® 0.4483 43.1916 42.9709 -Arial.ttf 104 é 27.4690 43.5020 102 © 0.5598 43.1916 42.9709 -Arial.ttf 104 é 27.4690 43.5020 103 ] 1.4897 11.0000 53.6167 -Arial.ttf 104 é 27.4690 43.5020 104 é 0.0302 27.4690 43.5020 -Arial.ttf 104 é 27.4690 43.5020 105 z 12.4559 26.3123 30.8793 -Arial.ttf 104 é 27.4690 43.5020 106 _ 49.6079 33.3832 5.2626 -Arial.ttf 104 é 27.4690 43.5020 107 ¥ 1.2031 32.0291 42.0000 -Arial.ttf 105 z 26.3123 30.8793 1 t -11.1748 15.0709 42.3103 -Arial.ttf 105 z 26.3123 30.8793 2 h -11.6691 24.2793 42.0000 -Arial.ttf 105 z 26.3123 30.8793 3 a -1.1655 27.4690 32.3813 -Arial.ttf 105 z 26.3123 30.8793 4 n -1.0902 24.2793 32.0709 -Arial.ttf 105 z 26.3123 30.8793 5 P -11.1484 31.4542 42.0000 -Arial.ttf 105 z 26.3123 30.8793 6 o -0.9582 27.4690 32.3813 -Arial.ttf 105 z 26.3123 30.8793 7 e -1.1683 27.4690 32.3813 -Arial.ttf 105 z 26.3123 30.8793 8 : -0.0540 5.2626 30.8793 -Arial.ttf 105 z 26.3123 30.8793 9 r -1.1987 16.5689 32.0709 -Arial.ttf 105 z 26.3123 30.8793 10 l -10.8367 5.2626 42.0000 -Arial.ttf 105 z 26.3123 30.8793 11 i -11.0600 5.2626 42.0000 -Arial.ttf 105 z 26.3123 30.8793 12 1 -10.6671 15.2355 41.6897 -Arial.ttf 105 z 26.3123 30.8793 13 | -11.0724 4.1916 54.4980 -Arial.ttf 105 z 26.3123 30.8793 14 N -10.9265 32.9083 42.0000 -Arial.ttf 105 z 26.3123 30.8793 15 f -11.1451 18.0709 42.0000 -Arial.ttf 105 z 26.3123 30.8793 16 g -1.1552 26.3123 43.6877 -Arial.ttf 105 z 26.3123 30.8793 17 d -10.9001 26.3123 42.3103 -Arial.ttf 105 z 26.3123 30.8793 18 W -11.2422 57.1916 42.0000 -Arial.ttf 105 z 26.3123 30.8793 19 s -1.2973 24.9561 32.3813 -Arial.ttf 105 z 26.3123 30.8793 20 c -0.9960 26.8084 32.3813 -Arial.ttf 105 z 26.3123 30.8793 21 u -0.1210 24.2793 31.1896 -Arial.ttf 105 z 26.3123 30.8793 22 3 -11.2198 26.8483 41.6897 -Arial.ttf 105 z 26.3123 30.8793 23 ~ 6.0700 29.9083 10.9561 -Arial.ttf 105 z 26.3123 30.8793 24 # -10.7830 31.2646 42.0000 -Arial.ttf 105 z 26.3123 30.8793 25 O -11.7744 39.5749 43.3212 -Arial.ttf 105 z 26.3123 30.8793 26 ` -11.0273 10.9561 8.0769 -Arial.ttf 105 z 26.3123 30.8793 27 @ -11.0958 54.1478 54.3123 -Arial.ttf 105 z 26.3123 30.8793 28 F -11.3843 28.2207 42.0000 -Arial.ttf 105 z 26.3123 30.8793 29 S -11.9026 33.0001 43.3212 -Arial.ttf 105 z 26.3123 30.8793 30 p -1.0401 26.3123 43.6877 -Arial.ttf 105 z 26.3123 30.8793 31 “ -11.1031 13.5690 14.0000 -Arial.ttf 105 z 26.3123 30.8793 32 % -11.0768 44.8793 42.3103 -Arial.ttf 105 z 26.3123 30.8793 33 £ -11.1659 29.8522 42.3103 -Arial.ttf 105 z 26.3123 30.8793 34 . 25.5660 5.2626 5.2626 -Arial.ttf 105 z 26.3123 30.8793 35 2 -10.8905 28.6956 41.6897 -Arial.ttf 105 z 26.3123 30.8793 36 5 -10.7966 26.8483 41.6897 -Arial.ttf 105 z 26.3123 30.8793 37 m -1.2123 41.4044 32.0709 -Arial.ttf 105 z 26.3123 30.8793 38 V -11.0322 40.5788 42.0000 -Arial.ttf 105 z 26.3123 30.8793 39 6 -10.7123 27.8542 41.6897 -Arial.ttf 105 z 26.3123 30.8793 40 w 0.1668 43.4212 30.8793 -Arial.ttf 105 z 26.3123 30.8793 41 T -11.1540 33.6936 42.0000 -Arial.ttf 105 z 26.3123 30.8793 42 M -11.0629 40.5788 42.0000 -Arial.ttf 105 z 26.3123 30.8793 43 G -11.6476 38.6897 43.3212 -Arial.ttf 105 z 26.3123 30.8793 44 b -10.9484 26.3123 42.3103 -Arial.ttf 105 z 26.3123 30.8793 45 9 -10.8466 26.8483 41.6897 -Arial.ttf 105 z 26.3123 30.8793 46 ; 0.1340 5.2626 39.6167 -Arial.ttf 105 z 26.3123 30.8793 47 D -11.2130 34.4542 42.0000 -Arial.ttf 105 z 26.3123 30.8793 48 L -11.0464 25.8813 42.0000 -Arial.ttf 105 z 26.3123 30.8793 49 y -0.3023 28.0000 42.4960 -Arial.ttf 105 z 26.3123 30.8793 50 ‘ -11.0530 5.9231 14.0000 -Arial.ttf 105 z 26.3123 30.8793 51 \ -11.3163 17.5749 42.0000 -Arial.ttf 105 z 26.3123 30.8793 52 R -11.3636 36.7497 42.0000 -Arial.ttf 105 z 26.3123 30.8793 53 < -3.4493 27.8354 27.8704 -Arial.ttf 105 z 26.3123 30.8793 54 4 -10.6227 28.3503 41.6897 -Arial.ttf 105 z 26.3123 30.8793 55 8 -10.4821 26.6626 41.6897 -Arial.ttf 105 z 26.3123 30.8793 56 0 -10.9429 26.8483 41.6897 -Arial.ttf 105 z 26.3123 30.8793 57 A -11.1181 40.5788 42.0000 -Arial.ttf 105 z 26.3123 30.8793 58 E -11.1467 31.4542 42.0000 -Arial.ttf 105 z 26.3123 30.8793 59 B -11.4918 31.4542 42.0000 -Arial.ttf 105 z 26.3123 30.8793 60 v -0.0800 27.8704 30.8793 -Arial.ttf 105 z 26.3123 30.8793 61 k -11.0395 25.1207 42.0000 -Arial.ttf 105 z 26.3123 30.8793 62 J -11.0008 24.0291 42.6606 -Arial.ttf 105 z 26.3123 30.8793 63 U -11.0831 32.9083 42.6606 -Arial.ttf 105 z 26.3123 30.8793 64 j -11.2670 12.3773 53.6167 -Arial.ttf 105 z 26.3123 30.8793 65 ( -11.2876 14.4103 53.6167 -Arial.ttf 105 z 26.3123 30.8793 66 7 -11.0739 26.8523 41.6897 -Arial.ttf 105 z 26.3123 30.8793 67 § -11.0062 26.9729 53.9271 -Arial.ttf 105 z 26.3123 30.8793 68 $ -13.0971 27.6897 49.3355 -Arial.ttf 105 z 26.3123 30.8793 69 € -11.6131 33.0769 43.3212 -Arial.ttf 105 z 26.3123 30.8793 70 / -11.3424 17.5749 42.0000 -Arial.ttf 105 z 26.3123 30.8793 71 C -11.7924 36.0000 43.3212 -Arial.ttf 105 z 26.3123 30.8793 72 * -10.9069 20.3453 17.8852 -Arial.ttf 105 z 26.3123 30.8793 73 ” -11.2723 14.2296 14.0000 -Arial.ttf 105 z 26.3123 30.8793 74 ? -11.1530 26.8483 42.0000 -Arial.ttf 105 z 26.3123 30.8793 75 { -11.2115 16.7375 53.6167 -Arial.ttf 105 z 26.3123 30.8793 76 } -11.4571 16.7375 53.6167 -Arial.ttf 105 z 26.3123 30.8793 77 , 25.6830 5.2626 14.0000 -Arial.ttf 105 z 26.3123 30.8793 78 I -11.0826 5.6936 42.0000 -Arial.ttf 105 z 26.3123 30.8793 79 ° -11.3175 15.8083 15.8083 -Arial.ttf 105 z 26.3123 30.8793 80 K -11.3055 34.5749 42.0000 -Arial.ttf 105 z 26.3123 30.8793 81 H -11.3165 32.9083 42.0000 -Arial.ttf 105 z 26.3123 30.8793 82 q -1.2510 26.3123 43.6877 -Arial.ttf 105 z 26.3123 30.8793 83 & -10.8376 35.1148 42.3103 -Arial.ttf 105 z 26.3123 30.8793 84 ’ -11.2146 5.9231 14.0000 -Arial.ttf 105 z 26.3123 30.8793 85 [ -11.1025 11.0000 53.6167 -Arial.ttf 105 z 26.3123 30.8793 86 - 13.0732 15.4980 5.2626 -Arial.ttf 105 z 26.3123 30.8793 87 Y -11.1484 38.4601 42.0000 -Arial.ttf 105 z 26.3123 30.8793 88 Q -11.5693 39.5749 46.3212 -Arial.ttf 105 z 26.3123 30.8793 89 " -10.9148 15.8083 15.1916 -Arial.ttf 105 z 26.3123 30.8793 90 ! -11.2008 5.2626 42.0000 -Arial.ttf 105 z 26.3123 30.8793 91 x 0.1899 29.1060 30.8793 -Arial.ttf 105 z 26.3123 30.8793 92 ) -11.0805 14.4103 53.6167 -Arial.ttf 105 z 26.3123 30.8793 93 = 1.0494 27.8793 17.8852 -Arial.ttf 105 z 26.3123 30.8793 94 + -3.4174 27.8753 27.8753 -Arial.ttf 105 z 26.3123 30.8793 95 X -11.0751 37.6626 42.0000 -Arial.ttf 105 z 26.3123 30.8793 96 » 2.9758 25.0439 26.1917 -Arial.ttf 105 z 26.3123 30.8793 97 ' -11.1897 5.2626 15.1916 -Arial.ttf 105 z 26.3123 30.8793 98 ¢ -11.0982 25.7813 54.2685 -Arial.ttf 105 z 26.3123 30.8793 99 Z -11.0076 33.0729 42.0000 -Arial.ttf 105 z 26.3123 30.8793 100 > -3.3888 27.8354 27.8704 -Arial.ttf 105 z 26.3123 30.8793 101 ® -11.9580 43.1916 42.9709 -Arial.ttf 105 z 26.3123 30.8793 102 © -11.8763 43.1916 42.9709 -Arial.ttf 105 z 26.3123 30.8793 103 ] -11.0862 11.0000 53.6167 -Arial.ttf 105 z 26.3123 30.8793 104 é -12.1468 27.4690 43.5020 -Arial.ttf 105 z 26.3123 30.8793 105 z -0.3833 26.3123 30.8793 -Arial.ttf 105 z 26.3123 30.8793 106 _ 37.2955 33.3832 5.2626 -Arial.ttf 105 z 26.3123 30.8793 107 ¥ -10.9113 32.0291 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 1 t -48.4224 15.0709 42.3103 -Arial.ttf 106 _ 33.3832 5.2626 2 h -48.1691 24.2793 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 3 a -38.5311 27.4690 32.3813 -Arial.ttf 106 _ 33.3832 5.2626 4 n -38.4458 24.2793 32.0709 -Arial.ttf 106 _ 33.3832 5.2626 5 P -48.3369 31.4542 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 6 o -38.4701 27.4690 32.3813 -Arial.ttf 106 _ 33.3832 5.2626 7 e -38.2691 27.4690 32.3813 -Arial.ttf 106 _ 33.3832 5.2626 8 : -37.3861 5.2626 30.8793 -Arial.ttf 106 _ 33.3832 5.2626 9 r -38.6690 16.5689 32.0709 -Arial.ttf 106 _ 33.3832 5.2626 10 l -48.2105 5.2626 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 11 i -48.2702 5.2626 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 12 1 -47.7644 15.2355 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 13 | -48.1818 4.1916 54.4980 -Arial.ttf 106 _ 33.3832 5.2626 14 N -48.3835 32.9083 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 15 f -48.3373 18.0709 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 16 g -38.5285 26.3123 43.6877 -Arial.ttf 106 _ 33.3832 5.2626 17 d -48.3731 26.3123 42.3103 -Arial.ttf 106 _ 33.3832 5.2626 18 W -48.4896 57.1916 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 19 s -38.5354 24.9561 32.3813 -Arial.ttf 106 _ 33.3832 5.2626 20 c -38.6632 26.8084 32.3813 -Arial.ttf 106 _ 33.3832 5.2626 21 u -36.9794 24.2793 31.1896 -Arial.ttf 106 _ 33.3832 5.2626 22 3 -47.9818 26.8483 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 23 ~ -31.3934 29.9083 10.9561 -Arial.ttf 106 _ 33.3832 5.2626 24 # -48.4660 31.2646 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 25 O -49.3345 39.5749 43.3212 -Arial.ttf 106 _ 33.3832 5.2626 26 ` -48.4056 10.9561 8.0769 -Arial.ttf 106 _ 33.3832 5.2626 27 @ -48.5115 54.1478 54.3123 -Arial.ttf 106 _ 33.3832 5.2626 28 F -48.2771 28.2207 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 29 S -49.3335 33.0001 43.3212 -Arial.ttf 106 _ 33.3832 5.2626 30 p -38.2538 26.3123 43.6877 -Arial.ttf 106 _ 33.3832 5.2626 31 “ -48.2485 13.5690 14.0000 -Arial.ttf 106 _ 33.3832 5.2626 32 % -48.3706 44.8793 42.3103 -Arial.ttf 106 _ 33.3832 5.2626 33 £ -47.8505 29.8522 42.3103 -Arial.ttf 106 _ 33.3832 5.2626 34 . -11.4650 5.2626 5.2626 -Arial.ttf 106 _ 33.3832 5.2626 35 2 -48.1567 28.6956 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 36 5 -47.8094 26.8483 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 37 m -38.3655 41.4044 32.0709 -Arial.ttf 106 _ 33.3832 5.2626 38 V -48.2576 40.5788 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 39 6 -48.1664 27.8542 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 40 w -37.0059 43.4212 30.8793 -Arial.ttf 106 _ 33.3832 5.2626 41 T -47.9905 33.6936 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 42 M -48.0900 40.5788 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 43 G -49.2990 38.6897 43.3212 -Arial.ttf 106 _ 33.3832 5.2626 44 b -48.4132 26.3123 42.3103 -Arial.ttf 106 _ 33.3832 5.2626 45 9 -47.9197 26.8483 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 46 ; -37.2451 5.2626 39.6167 -Arial.ttf 106 _ 33.3832 5.2626 47 D -48.5680 34.4542 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 48 L -48.3407 25.8813 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 49 y -37.1963 28.0000 42.4960 -Arial.ttf 106 _ 33.3832 5.2626 50 ‘ -48.2025 5.9231 14.0000 -Arial.ttf 106 _ 33.3832 5.2626 51 \ -48.1967 17.5749 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 52 R -47.9533 36.7497 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 53 < -40.7303 27.8354 27.8704 -Arial.ttf 106 _ 33.3832 5.2626 54 4 -48.1695 28.3503 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 55 8 -48.1266 26.6626 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 56 0 -48.0448 26.8483 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 57 A -48.2522 40.5788 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 58 E -48.1367 31.4542 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 59 B -48.4136 31.4542 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 60 v -37.1447 27.8704 30.8793 -Arial.ttf 106 _ 33.3832 5.2626 61 k -48.3675 25.1207 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 62 J -48.4011 24.0291 42.6606 -Arial.ttf 106 _ 33.3832 5.2626 63 U -48.4864 32.9083 42.6606 -Arial.ttf 106 _ 33.3832 5.2626 64 j -48.4025 12.3773 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 65 ( -48.4038 14.4103 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 66 7 -47.9722 26.8523 41.6897 -Arial.ttf 106 _ 33.3832 5.2626 67 § -48.4312 26.9729 53.9271 -Arial.ttf 106 _ 33.3832 5.2626 68 $ -50.4214 27.6897 49.3355 -Arial.ttf 106 _ 33.3832 5.2626 69 € -48.9156 33.0769 43.3212 -Arial.ttf 106 _ 33.3832 5.2626 70 / -48.3552 17.5749 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 71 C -48.8202 36.0000 43.3212 -Arial.ttf 106 _ 33.3832 5.2626 72 * -48.3913 20.3453 17.8852 -Arial.ttf 106 _ 33.3832 5.2626 73 ” -48.3718 14.2296 14.0000 -Arial.ttf 106 _ 33.3832 5.2626 74 ? -48.2933 26.8483 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 75 { -48.1361 16.7375 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 76 } -48.4813 16.7375 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 77 , -11.7147 5.2626 14.0000 -Arial.ttf 106 _ 33.3832 5.2626 78 I -48.5239 5.6936 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 79 ° -48.4687 15.8083 15.8083 -Arial.ttf 106 _ 33.3832 5.2626 80 K -48.2094 34.5749 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 81 H -48.1624 32.9083 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 82 q -38.5370 26.3123 43.6877 -Arial.ttf 106 _ 33.3832 5.2626 83 & -47.9745 35.1148 42.3103 -Arial.ttf 106 _ 33.3832 5.2626 84 ’ -48.1665 5.9231 14.0000 -Arial.ttf 106 _ 33.3832 5.2626 85 [ -48.3829 11.0000 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 86 - -24.1837 15.4980 5.2626 -Arial.ttf 106 _ 33.3832 5.2626 87 Y -48.2620 38.4601 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 88 Q -48.5544 39.5749 46.3212 -Arial.ttf 106 _ 33.3832 5.2626 89 " -48.2254 15.8083 15.1916 -Arial.ttf 106 _ 33.3832 5.2626 90 ! -48.4475 5.2626 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 91 x -37.2817 29.1060 30.8793 -Arial.ttf 106 _ 33.3832 5.2626 92 ) -48.4113 14.4103 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 93 = -36.4132 27.8793 17.8852 -Arial.ttf 106 _ 33.3832 5.2626 94 + -40.6566 27.8753 27.8753 -Arial.ttf 106 _ 33.3832 5.2626 95 X -48.4034 37.6626 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 96 » -34.1048 25.0439 26.1917 -Arial.ttf 106 _ 33.3832 5.2626 97 ' -48.7376 5.2626 15.1916 -Arial.ttf 106 _ 33.3832 5.2626 98 ¢ -48.3607 25.7813 54.2685 -Arial.ttf 106 _ 33.3832 5.2626 99 Z -48.5166 33.0729 42.0000 -Arial.ttf 106 _ 33.3832 5.2626 100 > -40.7023 27.8354 27.8704 -Arial.ttf 106 _ 33.3832 5.2626 101 ® -48.7655 43.1916 42.9709 -Arial.ttf 106 _ 33.3832 5.2626 102 © -48.9775 43.1916 42.9709 -Arial.ttf 106 _ 33.3832 5.2626 103 ] -48.6285 11.0000 53.6167 -Arial.ttf 106 _ 33.3832 5.2626 104 é -49.3194 27.4690 43.5020 -Arial.ttf 106 _ 33.3832 5.2626 105 z -37.2675 26.3123 30.8793 -Arial.ttf 106 _ 33.3832 5.2626 106 _ -0.0689 33.3832 5.2626 -Arial.ttf 106 _ 33.3832 5.2626 107 ¥ -48.4109 32.0291 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 1 t 0.2859 15.0709 42.3103 -Arial.ttf 107 ¥ 32.0291 42.0000 2 h 0.1584 24.2793 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 3 a 9.9832 27.4690 32.3813 -Arial.ttf 107 ¥ 32.0291 42.0000 4 n 9.9667 24.2793 32.0709 -Arial.ttf 107 ¥ 32.0291 42.0000 5 P -0.1007 31.4542 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 6 o 9.8184 27.4690 32.3813 -Arial.ttf 107 ¥ 32.0291 42.0000 7 e 9.9540 27.4690 32.3813 -Arial.ttf 107 ¥ 32.0291 42.0000 8 : 10.7724 5.2626 30.8793 -Arial.ttf 107 ¥ 32.0291 42.0000 9 r 10.2064 16.5689 32.0709 -Arial.ttf 107 ¥ 32.0291 42.0000 10 l -0.1103 5.2626 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 11 i 0.1846 5.2626 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 12 1 0.1793 15.2355 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 13 | -0.3007 4.1916 54.4980 -Arial.ttf 107 ¥ 32.0291 42.0000 14 N -0.0510 32.9083 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 15 f -0.1920 18.0709 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 16 g 9.9980 26.3123 43.6877 -Arial.ttf 107 ¥ 32.0291 42.0000 17 d -0.0690 26.3123 42.3103 -Arial.ttf 107 ¥ 32.0291 42.0000 18 W -0.4715 57.1916 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 19 s 9.9099 24.9561 32.3813 -Arial.ttf 107 ¥ 32.0291 42.0000 20 c 10.1151 26.8084 32.3813 -Arial.ttf 107 ¥ 32.0291 42.0000 21 u 11.2443 24.2793 31.1896 -Arial.ttf 107 ¥ 32.0291 42.0000 22 3 0.0713 26.8483 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 23 ~ 17.0279 29.9083 10.9561 -Arial.ttf 107 ¥ 32.0291 42.0000 24 # 0.1739 31.2646 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 25 O -0.5030 39.5749 43.3212 -Arial.ttf 107 ¥ 32.0291 42.0000 26 ` -0.2769 10.9561 8.0769 -Arial.ttf 107 ¥ 32.0291 42.0000 27 @ 0.2249 54.1478 54.3123 -Arial.ttf 107 ¥ 32.0291 42.0000 28 F 0.3225 28.2207 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 29 S -0.5218 33.0001 43.3212 -Arial.ttf 107 ¥ 32.0291 42.0000 30 p 9.8601 26.3123 43.6877 -Arial.ttf 107 ¥ 32.0291 42.0000 31 “ -0.1335 13.5690 14.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 32 % 0.0233 44.8793 42.3103 -Arial.ttf 107 ¥ 32.0291 42.0000 33 £ -0.0923 29.8522 42.3103 -Arial.ttf 107 ¥ 32.0291 42.0000 34 . 36.5862 5.2626 5.2626 -Arial.ttf 107 ¥ 32.0291 42.0000 35 2 0.2356 28.6956 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 36 5 0.3914 26.8483 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 37 m 9.6161 41.4044 32.0709 -Arial.ttf 107 ¥ 32.0291 42.0000 38 V -0.3060 40.5788 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 39 6 0.3172 27.8542 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 40 w 11.0437 43.4212 30.8793 -Arial.ttf 107 ¥ 32.0291 42.0000 41 T -0.2084 33.6936 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 42 M -0.1575 40.5788 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 43 G -0.6913 38.6897 43.3212 -Arial.ttf 107 ¥ 32.0291 42.0000 44 b -0.0616 26.3123 42.3103 -Arial.ttf 107 ¥ 32.0291 42.0000 45 9 0.2001 26.8483 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 46 ; 10.9732 5.2626 39.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 47 D 0.3860 34.4542 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 48 L 0.0851 25.8813 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 49 y 11.0174 28.0000 42.4960 -Arial.ttf 107 ¥ 32.0291 42.0000 50 ‘ -0.0744 5.9231 14.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 51 \ -0.1199 17.5749 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 52 R 0.0552 36.7497 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 53 < 7.6281 27.8354 27.8704 -Arial.ttf 107 ¥ 32.0291 42.0000 54 4 0.2914 28.3503 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 55 8 0.2494 26.6626 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 56 0 0.0230 26.8483 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 57 A -0.0196 40.5788 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 58 E -0.0429 31.4542 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 59 B 0.2222 31.4542 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 60 v 11.1494 27.8704 30.8793 -Arial.ttf 107 ¥ 32.0291 42.0000 61 k -0.0164 25.1207 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 62 J 0.0439 24.0291 42.6606 -Arial.ttf 107 ¥ 32.0291 42.0000 63 U -0.1808 32.9083 42.6606 -Arial.ttf 107 ¥ 32.0291 42.0000 64 j 0.1682 12.3773 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 65 ( 0.1676 14.4103 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 66 7 0.1956 26.8523 41.6897 -Arial.ttf 107 ¥ 32.0291 42.0000 67 § -0.2441 26.9729 53.9271 -Arial.ttf 107 ¥ 32.0291 42.0000 68 $ -2.2568 27.6897 49.3355 -Arial.ttf 107 ¥ 32.0291 42.0000 69 € -0.4499 33.0769 43.3212 -Arial.ttf 107 ¥ 32.0291 42.0000 70 / -0.0897 17.5749 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 71 C -0.8822 36.0000 43.3212 -Arial.ttf 107 ¥ 32.0291 42.0000 72 * -0.1394 20.3453 17.8852 -Arial.ttf 107 ¥ 32.0291 42.0000 73 ” 0.1607 14.2296 14.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 74 ? -0.1024 26.8483 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 75 { -0.0892 16.7375 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 76 } -0.2141 16.7375 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 77 , 36.4865 5.2626 14.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 78 I 0.0297 5.6936 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 79 ° 0.0483 15.8083 15.8083 -Arial.ttf 107 ¥ 32.0291 42.0000 80 K 0.1744 34.5749 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 81 H -0.1682 32.9083 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 82 q 9.8481 26.3123 43.6877 -Arial.ttf 107 ¥ 32.0291 42.0000 83 & -0.1075 35.1148 42.3103 -Arial.ttf 107 ¥ 32.0291 42.0000 84 ’ -0.0122 5.9231 14.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 85 [ 0.0986 11.0000 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 86 - 24.2256 15.4980 5.2626 -Arial.ttf 107 ¥ 32.0291 42.0000 87 Y -0.0027 38.4601 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 88 Q -0.4332 39.5749 46.3212 -Arial.ttf 107 ¥ 32.0291 42.0000 89 " -0.1739 15.8083 15.1916 -Arial.ttf 107 ¥ 32.0291 42.0000 90 ! -0.2759 5.2626 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 91 x 11.4421 29.1060 30.8793 -Arial.ttf 107 ¥ 32.0291 42.0000 92 ) 0.0922 14.4103 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 93 = 12.0677 27.8793 17.8852 -Arial.ttf 107 ¥ 32.0291 42.0000 94 + 7.7511 27.8753 27.8753 -Arial.ttf 107 ¥ 32.0291 42.0000 95 X -0.2128 37.6626 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 96 » 13.9121 25.0439 26.1917 -Arial.ttf 107 ¥ 32.0291 42.0000 97 ' -0.0192 5.2626 15.1916 -Arial.ttf 107 ¥ 32.0291 42.0000 98 ¢ -0.2586 25.7813 54.2685 -Arial.ttf 107 ¥ 32.0291 42.0000 99 Z 0.0317 33.0729 42.0000 -Arial.ttf 107 ¥ 32.0291 42.0000 100 > 7.6286 27.8354 27.8704 -Arial.ttf 107 ¥ 32.0291 42.0000 101 ® -0.6568 43.1916 42.9709 -Arial.ttf 107 ¥ 32.0291 42.0000 102 © -0.3802 43.1916 42.9709 -Arial.ttf 107 ¥ 32.0291 42.0000 103 ] -0.0358 11.0000 53.6167 -Arial.ttf 107 ¥ 32.0291 42.0000 104 é -1.2729 27.4690 43.5020 -Arial.ttf 107 ¥ 32.0291 42.0000 105 z 11.2984 26.3123 30.8793 -Arial.ttf 107 ¥ 32.0291 42.0000 106 _ 47.8921 33.3832 5.2626 -Arial.ttf 107 ¥ 32.0291 42.0000 107 ¥ -0.0693 32.0291 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 1 t -0.0961 22.4548 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 2 h 0.0865 31.8826 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 3 a 10.4637 35.4269 32.7258 -Arial_Black.ttf 1 t 22.4548 43.1815 4 n 10.8042 31.8826 31.5444 -Arial_Black.ttf 1 t 22.4548 43.1815 5 P -0.0354 34.7906 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 6 o 10.6181 34.2455 32.7258 -Arial_Black.ttf 1 t 22.4548 43.1815 7 e 10.4744 34.2455 32.7258 -Arial_Black.ttf 1 t 22.4548 43.1815 8 : 11.6491 11.6371 30.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 9 r 10.2472 23.9105 31.5444 -Arial_Black.ttf 1 t 22.4548 43.1815 10 l 0.0277 11.6371 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 11 i -0.0399 11.6371 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 12 1 -1.0943 23.9105 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 13 | -0.0516 7.2718 53.3612 -Arial_Black.ttf 1 t 22.4548 43.1815 14 N -0.1781 39.2421 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 15 f -1.4597 23.6362 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 16 g 10.4486 34.2455 44.0871 -Arial_Black.ttf 1 t 22.4548 43.1815 17 d -0.0179 32.7882 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 18 W -0.1625 59.5444 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 19 s 10.6476 31.5444 32.7258 -Arial_Black.ttf 1 t 22.4548 43.1815 20 c 10.3069 34.2455 32.7258 -Arial_Black.ttf 1 t 22.4548 43.1815 21 u 11.3798 31.6067 31.5444 -Arial_Black.ttf 1 t 22.4548 43.1815 22 3 -1.0871 33.8834 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 23 ~ 14.0854 32.7258 14.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 24 # -1.2642 35.6338 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 25 O -1.0167 42.6921 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 26 ` -1.3503 14.6708 8.4532 -Arial_Black.ttf 1 t 22.4548 43.1815 27 @ -1.2029 43.1815 49.5147 -Arial_Black.ttf 1 t 22.4548 43.1815 28 F -0.1216 31.6067 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 29 S -0.8941 37.5485 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 30 p 10.5675 32.7882 42.9056 -Arial_Black.ttf 1 t 22.4548 43.1815 31 “ -1.1815 25.6371 23.2742 -Arial_Black.ttf 1 t 22.4548 43.1815 32 % -1.1815 52.3055 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 33 £ -1.0977 34.8768 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 34 . 30.4068 11.6371 11.6371 -Arial_Black.ttf 1 t 22.4548 43.1815 35 2 -1.2315 33.6075 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 36 5 -0.2894 33.8834 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 37 m 10.4938 51.5206 31.5444 -Arial_Black.ttf 1 t 22.4548 43.1815 38 V 0.1473 45.1494 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 39 6 -1.0234 33.8834 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 40 w 11.7646 54.8185 30.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 41 T 0.0304 38.4556 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 42 M -0.3455 45.8497 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 43 G -1.2867 42.5435 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 44 b -0.1526 32.7882 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 45 9 -1.1330 33.8834 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 46 ; 11.3855 11.6371 42.9056 -Arial_Black.ttf 1 t 22.4548 43.1815 47 D -0.1525 38.3349 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 48 L -0.3634 32.0311 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 49 y 11.6227 35.7890 42.9056 -Arial_Black.ttf 1 t 22.4548 43.1815 50 ‘ -1.4141 11.6371 23.2742 -Arial_Black.ttf 1 t 22.4548 43.1815 51 \ -1.5130 16.3629 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 52 R -0.0094 41.2135 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 53 < 3.8675 32.6051 34.9975 -Arial_Black.ttf 1 t 22.4548 43.1815 54 4 -1.0433 38.0591 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 55 8 -1.1031 33.8834 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 56 0 -1.0168 33.8834 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 57 A -0.1718 45.5444 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 58 E -0.1199 34.5147 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 59 B 0.0433 38.3349 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 60 v 11.5936 35.7874 30.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 61 k 0.0068 35.5476 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 62 J -0.1629 33.1847 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 63 U -0.1933 39.2421 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 64 j 0.2783 18.3653 54.5427 -Arial_Black.ttf 1 t 22.4548 43.1815 65 ( -1.4243 17.4252 56.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 66 7 0.1230 33.6075 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 67 § -1.2133 34.2455 55.7241 -Arial_Black.ttf 1 t 22.4548 43.1815 68 $ -3.9285 35.2718 52.4211 -Arial_Black.ttf 1 t 22.4548 43.1815 69 € -1.0682 38.1503 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 70 / -1.2597 16.3629 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 71 C -1.2917 39.9114 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 72 * -1.3922 22.1511 20.6009 -Arial_Black.ttf 1 t 22.4548 43.1815 73 ” -1.3341 25.6371 23.2742 -Arial_Black.ttf 1 t 22.4548 43.1815 74 ? -1.1899 31.8202 43.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 75 { -1.4351 21.5147 56.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 76 } -1.1031 21.5147 56.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 77 , 30.3599 11.6371 24.1798 -Arial_Black.ttf 1 t 22.4548 43.1815 78 I -0.0345 12.8185 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 79 ° -1.3959 14.1207 14.1207 -Arial_Black.ttf 1 t 22.4548 43.1815 80 K 0.1692 43.9679 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 81 H 0.0999 39.2421 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 82 q 10.6078 32.7882 42.9056 -Arial_Black.ttf 1 t 22.4548 43.1815 83 & -1.2468 46.8516 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 84 ’ -1.3483 11.6371 23.2742 -Arial_Black.ttf 1 t 22.4548 43.1815 85 [ -0.2050 18.3653 53.6371 -Arial_Black.ttf 1 t 22.4548 43.1815 86 - 21.9504 16.9080 9.2397 -Arial_Black.ttf 1 t 22.4548 43.1815 87 Y -0.0723 45.5444 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 88 Q -1.3138 44.1494 48.3317 -Arial_Black.ttf 1 t 22.4548 43.1815 89 " -0.1129 26.8185 15.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 90 ! 0.0402 11.6371 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 91 x 11.4908 38.7021 30.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 92 ) -1.0498 17.4252 56.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 93 = 9.3414 30.9080 23.2397 -Arial_Black.ttf 1 t 22.4548 43.1815 94 + 5.2226 31.4237 31.4237 -Arial_Black.ttf 1 t 22.4548 43.1815 95 X -0.0864 45.1494 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 96 » 13.5815 31.1494 26.3941 -Arial_Black.ttf 1 t 22.4548 43.1815 97 ' 0.0040 11.6371 15.1815 -Arial_Black.ttf 1 t 22.4548 43.1815 98 ¢ 0.6821 34.2455 53.1782 -Arial_Black.ttf 1 t 22.4548 43.1815 99 Z -0.0246 37.3644 42.0000 -Arial_Black.ttf 1 t 22.4548 43.1815 100 > 3.4598 32.6051 34.9975 -Arial_Black.ttf 1 t 22.4548 43.1815 101 ® -1.0991 43.9385 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 102 © -1.2227 43.9385 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 103 ] 0.1526 18.3653 53.6371 -Arial_Black.ttf 1 t 22.4548 43.1815 104 é -1.3185 34.2455 44.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 105 z 11.5054 28.4867 30.3629 -Arial_Black.ttf 1 t 22.4548 43.1815 106 _ 45.9929 29.1815 2.7873 -Arial_Black.ttf 1 t 22.4548 43.1815 107 ¥ -0.0116 40.3941 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 1 t -0.1632 22.4548 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 2 h 0.2703 31.8826 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 3 a 10.7135 35.4269 32.7258 -Arial_Black.ttf 2 h 31.8826 42.0000 4 n 10.6803 31.8826 31.5444 -Arial_Black.ttf 2 h 31.8826 42.0000 5 P 0.1544 34.7906 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 6 o 10.3867 34.2455 32.7258 -Arial_Black.ttf 2 h 31.8826 42.0000 7 e 10.2605 34.2455 32.7258 -Arial_Black.ttf 2 h 31.8826 42.0000 8 : 11.7010 11.6371 30.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 9 r 10.7135 23.9105 31.5444 -Arial_Black.ttf 2 h 31.8826 42.0000 10 l 0.2922 11.6371 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 11 i -0.1165 11.6371 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 12 1 -1.0127 23.9105 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 13 | 0.0255 7.2718 53.3612 -Arial_Black.ttf 2 h 31.8826 42.0000 14 N 0.2470 39.2421 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 15 f -1.1909 23.6362 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 16 g 10.2318 34.2455 44.0871 -Arial_Black.ttf 2 h 31.8826 42.0000 17 d 0.0683 32.7882 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 18 W 0.0823 59.5444 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 19 s 10.5465 31.5444 32.7258 -Arial_Black.ttf 2 h 31.8826 42.0000 20 c 10.3339 34.2455 32.7258 -Arial_Black.ttf 2 h 31.8826 42.0000 21 u 11.9208 31.6067 31.5444 -Arial_Black.ttf 2 h 31.8826 42.0000 22 3 -1.1470 33.8834 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 23 ~ 13.7812 32.7258 14.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 24 # -1.2190 35.6338 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 25 O -1.4671 42.6921 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 26 ` -1.0686 14.6708 8.4532 -Arial_Black.ttf 2 h 31.8826 42.0000 27 @ -1.0950 43.1815 49.5147 -Arial_Black.ttf 2 h 31.8826 42.0000 28 F 0.1576 31.6067 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 29 S -1.2589 37.5485 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 30 p 10.6351 32.7882 42.9056 -Arial_Black.ttf 2 h 31.8826 42.0000 31 “ -1.1470 25.6371 23.2742 -Arial_Black.ttf 2 h 31.8826 42.0000 32 % -1.2682 52.3055 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 33 £ -0.9336 34.8768 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 34 . 30.3697 11.6371 11.6371 -Arial_Black.ttf 2 h 31.8826 42.0000 35 2 -1.0181 33.6075 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 36 5 -0.2725 33.8834 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 37 m 10.2540 51.5206 31.5444 -Arial_Black.ttf 2 h 31.8826 42.0000 38 V -0.2783 45.1494 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 39 6 -1.2602 33.8834 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 40 w 11.6407 54.8185 30.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 41 T -0.1959 38.4556 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 42 M -0.0376 45.8497 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 43 G -1.2876 42.5435 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 44 b 0.4587 32.7882 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 45 9 -1.2642 33.8834 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 46 ; 11.5794 11.6371 42.9056 -Arial_Black.ttf 2 h 31.8826 42.0000 47 D 0.0059 38.3349 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 48 L 0.0735 32.0311 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 49 y 11.3855 35.7890 42.9056 -Arial_Black.ttf 2 h 31.8826 42.0000 50 ‘ -1.0844 11.6371 23.2742 -Arial_Black.ttf 2 h 31.8826 42.0000 51 \ -1.1882 16.3629 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 52 R -0.1052 41.2135 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 53 < 3.3823 32.6051 34.9975 -Arial_Black.ttf 2 h 31.8826 42.0000 54 4 -0.9836 38.0591 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 55 8 -1.4182 33.8834 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 56 0 -1.2162 33.8834 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 57 A -0.0345 45.5444 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 58 E -0.0037 34.5147 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 59 B -0.0000 38.3349 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 60 v 11.6841 35.7874 30.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 61 k 0.2399 35.5476 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 62 J 0.0533 33.1847 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 63 U 0.0210 39.2421 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 64 j 0.0496 18.3653 54.5427 -Arial_Black.ttf 2 h 31.8826 42.0000 65 ( -0.9417 17.4252 56.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 66 7 -0.4238 33.6075 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 67 § -1.1778 34.2455 55.7241 -Arial_Black.ttf 2 h 31.8826 42.0000 68 $ -3.8863 35.2718 52.4211 -Arial_Black.ttf 2 h 31.8826 42.0000 69 € -1.1908 38.1503 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 70 / -0.9998 16.3629 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 71 C -1.5140 39.9114 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 72 * -1.5874 22.1511 20.6009 -Arial_Black.ttf 2 h 31.8826 42.0000 73 ” -0.9693 25.6371 23.2742 -Arial_Black.ttf 2 h 31.8826 42.0000 74 ? -1.2079 31.8202 43.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 75 { -1.0924 21.5147 56.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 76 } -1.3730 21.5147 56.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 77 , 30.3002 11.6371 24.1798 -Arial_Black.ttf 2 h 31.8826 42.0000 78 I 0.0190 12.8185 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 79 ° -1.1286 14.1207 14.1207 -Arial_Black.ttf 2 h 31.8826 42.0000 80 K 0.2082 43.9679 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 81 H -0.2756 39.2421 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 82 q 10.1831 32.7882 42.9056 -Arial_Black.ttf 2 h 31.8826 42.0000 83 & -0.9839 46.8516 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 84 ’ -1.0861 11.6371 23.2742 -Arial_Black.ttf 2 h 31.8826 42.0000 85 [ 0.0282 18.3653 53.6371 -Arial_Black.ttf 2 h 31.8826 42.0000 86 - 22.2491 16.9080 9.2397 -Arial_Black.ttf 2 h 31.8826 42.0000 87 Y 0.0223 45.5444 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 88 Q -1.5010 44.1494 48.3317 -Arial_Black.ttf 2 h 31.8826 42.0000 89 " 0.1065 26.8185 15.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 90 ! 0.2378 11.6371 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 91 x 11.8850 38.7021 30.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 92 ) -1.3671 17.4252 56.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 93 = 9.5169 30.9080 23.2397 -Arial_Black.ttf 2 h 31.8826 42.0000 94 + 5.4259 31.4237 31.4237 -Arial_Black.ttf 2 h 31.8826 42.0000 95 X 0.1915 45.1494 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 96 » 13.5658 31.1494 26.3941 -Arial_Black.ttf 2 h 31.8826 42.0000 97 ' -0.1114 11.6371 15.1815 -Arial_Black.ttf 2 h 31.8826 42.0000 98 ¢ 0.4733 34.2455 53.1782 -Arial_Black.ttf 2 h 31.8826 42.0000 99 Z 0.1209 37.3644 42.0000 -Arial_Black.ttf 2 h 31.8826 42.0000 100 > 3.6867 32.6051 34.9975 -Arial_Black.ttf 2 h 31.8826 42.0000 101 ® -1.1242 43.9385 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 102 © -1.3348 43.9385 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 103 ] 0.0395 18.3653 53.6371 -Arial_Black.ttf 2 h 31.8826 42.0000 104 é -0.8991 34.2455 44.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 105 z 11.6095 28.4867 30.3629 -Arial_Black.ttf 2 h 31.8826 42.0000 106 _ 46.0586 29.1815 2.7873 -Arial_Black.ttf 2 h 31.8826 42.0000 107 ¥ 0.0871 40.3941 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 1 t -10.4413 22.4548 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 2 h -10.3169 31.8826 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 3 a 0.2426 35.4269 32.7258 -Arial_Black.ttf 3 a 35.4269 32.7258 4 n 0.0810 31.8826 31.5444 -Arial_Black.ttf 3 a 35.4269 32.7258 5 P -10.2220 34.7906 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 6 o -0.0837 34.2455 32.7258 -Arial_Black.ttf 3 a 35.4269 32.7258 7 e -0.0004 34.2455 32.7258 -Arial_Black.ttf 3 a 35.4269 32.7258 8 : 1.3968 11.6371 30.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 9 r -0.0690 23.9105 31.5444 -Arial_Black.ttf 3 a 35.4269 32.7258 10 l -10.4951 11.6371 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 11 i -10.2816 11.6371 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 12 1 -11.6026 23.9105 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 13 | -10.4583 7.2718 53.3612 -Arial_Black.ttf 3 a 35.4269 32.7258 14 N -10.3768 39.2421 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 15 f -11.8976 23.6362 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 16 g -0.0697 34.2455 44.0871 -Arial_Black.ttf 3 a 35.4269 32.7258 17 d -10.3266 32.7882 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 18 W -10.6930 59.5444 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 19 s -0.0470 31.5444 32.7258 -Arial_Black.ttf 3 a 35.4269 32.7258 20 c 0.3125 34.2455 32.7258 -Arial_Black.ttf 3 a 35.4269 32.7258 21 u 1.2902 31.6067 31.5444 -Arial_Black.ttf 3 a 35.4269 32.7258 22 3 -11.6192 33.8834 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 23 ~ 3.5497 32.7258 14.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 24 # -11.7253 35.6338 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 25 O -11.8560 42.6921 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 26 ` -11.6354 14.6708 8.4532 -Arial_Black.ttf 3 a 35.4269 32.7258 27 @ -11.3932 43.1815 49.5147 -Arial_Black.ttf 3 a 35.4269 32.7258 28 F -10.2996 31.6067 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 29 S -11.6675 37.5485 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 30 p 0.1879 32.7882 42.9056 -Arial_Black.ttf 3 a 35.4269 32.7258 31 “ -11.5972 25.6371 23.2742 -Arial_Black.ttf 3 a 35.4269 32.7258 32 % -11.5574 52.3055 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 33 £ -11.8536 34.8768 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 34 . 19.8313 11.6371 11.6371 -Arial_Black.ttf 3 a 35.4269 32.7258 35 2 -11.7543 33.6075 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 36 5 -10.4614 33.8834 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 37 m 0.0017 51.5206 31.5444 -Arial_Black.ttf 3 a 35.4269 32.7258 38 V -10.2847 45.1494 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 39 6 -11.6773 33.8834 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 40 w 1.2249 54.8185 30.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 41 T -10.3808 38.4556 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 42 M -10.4942 45.8497 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 43 G -11.5530 42.5435 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 44 b -10.4757 32.7882 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 45 9 -11.7249 33.8834 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 46 ; 1.2548 11.6371 42.9056 -Arial_Black.ttf 3 a 35.4269 32.7258 47 D -10.4220 38.3349 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 48 L -10.5353 32.0311 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 49 y 0.8937 35.7890 42.9056 -Arial_Black.ttf 3 a 35.4269 32.7258 50 ‘ -11.5097 11.6371 23.2742 -Arial_Black.ttf 3 a 35.4269 32.7258 51 \ -11.6823 16.3629 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 52 R -10.2506 41.2135 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 53 < -7.0080 32.6051 34.9975 -Arial_Black.ttf 3 a 35.4269 32.7258 54 4 -11.3584 38.0591 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 55 8 -11.8169 33.8834 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 56 0 -11.8782 33.8834 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 57 A -10.4759 45.5444 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 58 E -10.9031 34.5147 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 59 B -10.5657 38.3349 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 60 v 1.1376 35.7874 30.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 61 k -10.0824 35.5476 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 62 J -10.3021 33.1847 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 63 U -10.6677 39.2421 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 64 j -10.4954 18.3653 54.5427 -Arial_Black.ttf 3 a 35.4269 32.7258 65 ( -11.8378 17.4252 56.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 66 7 -10.4844 33.6075 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 67 § -11.8464 34.2455 55.7241 -Arial_Black.ttf 3 a 35.4269 32.7258 68 $ -14.2495 35.2718 52.4211 -Arial_Black.ttf 3 a 35.4269 32.7258 69 € -11.5905 38.1503 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 70 / -11.7520 16.3629 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 71 C -11.4652 39.9114 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 72 * -11.7486 22.1511 20.6009 -Arial_Black.ttf 3 a 35.4269 32.7258 73 ” -11.4196 25.6371 23.2742 -Arial_Black.ttf 3 a 35.4269 32.7258 74 ? -11.8103 31.8202 43.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 75 { -11.5964 21.5147 56.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 76 } -11.5936 21.5147 56.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 77 , 19.8056 11.6371 24.1798 -Arial_Black.ttf 3 a 35.4269 32.7258 78 I -10.3710 12.8185 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 79 ° -11.9288 14.1207 14.1207 -Arial_Black.ttf 3 a 35.4269 32.7258 80 K -10.7511 43.9679 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 81 H -10.6907 39.2421 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 82 q -0.0869 32.7882 42.9056 -Arial_Black.ttf 3 a 35.4269 32.7258 83 & -11.4375 46.8516 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 84 ’ -11.5974 11.6371 23.2742 -Arial_Black.ttf 3 a 35.4269 32.7258 85 [ -10.3711 18.3653 53.6371 -Arial_Black.ttf 3 a 35.4269 32.7258 86 - 11.6006 16.9080 9.2397 -Arial_Black.ttf 3 a 35.4269 32.7258 87 Y -10.6109 45.5444 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 88 Q -11.7928 44.1494 48.3317 -Arial_Black.ttf 3 a 35.4269 32.7258 89 " -10.2641 26.8185 15.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 90 ! -10.2888 11.6371 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 91 x 1.3050 38.7021 30.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 92 ) -11.4862 17.4252 56.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 93 = -1.2150 30.9080 23.2397 -Arial_Black.ttf 3 a 35.4269 32.7258 94 + -5.4668 31.4237 31.4237 -Arial_Black.ttf 3 a 35.4269 32.7258 95 X -10.4483 45.1494 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 96 » 3.1630 31.1494 26.3941 -Arial_Black.ttf 3 a 35.4269 32.7258 97 ' -10.7749 11.6371 15.1815 -Arial_Black.ttf 3 a 35.4269 32.7258 98 ¢ -10.0778 34.2455 53.1782 -Arial_Black.ttf 3 a 35.4269 32.7258 99 Z -10.3715 37.3644 42.0000 -Arial_Black.ttf 3 a 35.4269 32.7258 100 > -7.0024 32.6051 34.9975 -Arial_Black.ttf 3 a 35.4269 32.7258 101 ® -11.8313 43.9385 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 102 © -11.5936 43.9385 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 103 ] -10.2990 18.3653 53.6371 -Arial_Black.ttf 3 a 35.4269 32.7258 104 é -11.8071 34.2455 44.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 105 z 1.1219 28.4867 30.3629 -Arial_Black.ttf 3 a 35.4269 32.7258 106 _ 35.4519 29.1815 2.7873 -Arial_Black.ttf 3 a 35.4269 32.7258 107 ¥ -10.5451 40.3941 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 1 t -10.2242 22.4548 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 2 h -10.4543 31.8826 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 3 a -0.1025 35.4269 32.7258 -Arial_Black.ttf 4 n 31.8826 31.5444 4 n -0.2368 31.8826 31.5444 -Arial_Black.ttf 4 n 31.8826 31.5444 5 P -10.4650 34.7906 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 6 o -0.0295 34.2455 32.7258 -Arial_Black.ttf 4 n 31.8826 31.5444 7 e 0.1404 34.2455 32.7258 -Arial_Black.ttf 4 n 31.8826 31.5444 8 : 1.2473 11.6371 30.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 9 r 0.1152 23.9105 31.5444 -Arial_Black.ttf 4 n 31.8826 31.5444 10 l -10.8239 11.6371 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 11 i -10.5711 11.6371 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 12 1 -11.8800 23.9105 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 13 | -10.6553 7.2718 53.3612 -Arial_Black.ttf 4 n 31.8826 31.5444 14 N -10.5644 39.2421 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 15 f -11.4331 23.6362 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 16 g 0.0345 34.2455 44.0871 -Arial_Black.ttf 4 n 31.8826 31.5444 17 d -10.5063 32.7882 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 18 W -10.3809 59.5444 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 19 s 0.0711 31.5444 32.7258 -Arial_Black.ttf 4 n 31.8826 31.5444 20 c -0.2372 34.2455 32.7258 -Arial_Black.ttf 4 n 31.8826 31.5444 21 u 1.0897 31.6067 31.5444 -Arial_Black.ttf 4 n 31.8826 31.5444 22 3 -11.6980 33.8834 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 23 ~ 3.5470 32.7258 14.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 24 # -11.6170 35.6338 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 25 O -11.8963 42.6921 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 26 ` -11.5662 14.6708 8.4532 -Arial_Black.ttf 4 n 31.8826 31.5444 27 @ -11.8474 43.1815 49.5147 -Arial_Black.ttf 4 n 31.8826 31.5444 28 F -10.3718 31.6067 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 29 S -11.9965 37.5485 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 30 p -0.0277 32.7882 42.9056 -Arial_Black.ttf 4 n 31.8826 31.5444 31 “ -11.4532 25.6371 23.2742 -Arial_Black.ttf 4 n 31.8826 31.5444 32 % -11.6694 52.3055 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 33 £ -11.7343 34.8768 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 34 . 20.1315 11.6371 11.6371 -Arial_Black.ttf 4 n 31.8826 31.5444 35 2 -11.6921 33.6075 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 36 5 -10.7399 33.8834 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 37 m -0.0135 51.5206 31.5444 -Arial_Black.ttf 4 n 31.8826 31.5444 38 V -10.4222 45.1494 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 39 6 -11.6331 33.8834 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 40 w 1.0809 54.8185 30.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 41 T -10.6592 38.4556 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 42 M -10.4045 45.8497 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 43 G -11.9374 42.5435 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 44 b -10.5401 32.7882 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 45 9 -11.8013 33.8834 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 46 ; 1.1048 11.6371 42.9056 -Arial_Black.ttf 4 n 31.8826 31.5444 47 D -10.7478 38.3349 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 48 L -10.5746 32.0311 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 49 y 1.5342 35.7890 42.9056 -Arial_Black.ttf 4 n 31.8826 31.5444 50 ‘ -11.7374 11.6371 23.2742 -Arial_Black.ttf 4 n 31.8826 31.5444 51 \ -11.7087 16.3629 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 52 R -10.7173 41.2135 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 53 < -6.8710 32.6051 34.9975 -Arial_Black.ttf 4 n 31.8826 31.5444 54 4 -11.3394 38.0591 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 55 8 -11.8478 33.8834 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 56 0 -11.6478 33.8834 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 57 A -10.1831 45.5444 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 58 E -10.8208 34.5147 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 59 B -10.3777 38.3349 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 60 v 1.0535 35.7874 30.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 61 k -10.6747 35.5476 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 62 J -10.5566 33.1847 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 63 U -10.6803 39.2421 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 64 j -10.5893 18.3653 54.5427 -Arial_Black.ttf 4 n 31.8826 31.5444 65 ( -11.5989 17.4252 56.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 66 7 -10.3993 33.6075 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 67 § -11.7909 34.2455 55.7241 -Arial_Black.ttf 4 n 31.8826 31.5444 68 $ -14.4727 35.2718 52.4211 -Arial_Black.ttf 4 n 31.8826 31.5444 69 € -11.3246 38.1503 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 70 / -11.3794 16.3629 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 71 C -11.6716 39.9114 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 72 * -11.6397 22.1511 20.6009 -Arial_Black.ttf 4 n 31.8826 31.5444 73 ” -11.5363 25.6371 23.2742 -Arial_Black.ttf 4 n 31.8826 31.5444 74 ? -11.7419 31.8202 43.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 75 { -11.9499 21.5147 56.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 76 } -11.6813 21.5147 56.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 77 , 19.9291 11.6371 24.1798 -Arial_Black.ttf 4 n 31.8826 31.5444 78 I -10.5430 12.8185 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 79 ° -11.7659 14.1207 14.1207 -Arial_Black.ttf 4 n 31.8826 31.5444 80 K -10.5779 43.9679 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 81 H -10.5140 39.2421 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 82 q 0.0474 32.7882 42.9056 -Arial_Black.ttf 4 n 31.8826 31.5444 83 & -11.8854 46.8516 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 84 ’ -11.6246 11.6371 23.2742 -Arial_Black.ttf 4 n 31.8826 31.5444 85 [ -10.4148 18.3653 53.6371 -Arial_Black.ttf 4 n 31.8826 31.5444 86 - 11.6036 16.9080 9.2397 -Arial_Black.ttf 4 n 31.8826 31.5444 87 Y -10.4964 45.5444 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 88 Q -11.5172 44.1494 48.3317 -Arial_Black.ttf 4 n 31.8826 31.5444 89 " -10.5066 26.8185 15.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 90 ! -10.2254 11.6371 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 91 x 0.8709 38.7021 30.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 92 ) -11.6698 17.4252 56.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 93 = -0.9324 30.9080 23.2397 -Arial_Black.ttf 4 n 31.8826 31.5444 94 + -5.1714 31.4237 31.4237 -Arial_Black.ttf 4 n 31.8826 31.5444 95 X -10.4458 45.1494 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 96 » 3.1907 31.1494 26.3941 -Arial_Black.ttf 4 n 31.8826 31.5444 97 ' -10.5222 11.6371 15.1815 -Arial_Black.ttf 4 n 31.8826 31.5444 98 ¢ -10.3575 34.2455 53.1782 -Arial_Black.ttf 4 n 31.8826 31.5444 99 Z -10.0452 37.3644 42.0000 -Arial_Black.ttf 4 n 31.8826 31.5444 100 > -6.8898 32.6051 34.9975 -Arial_Black.ttf 4 n 31.8826 31.5444 101 ® -11.9039 43.9385 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 102 © -11.5888 43.9385 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 103 ] -10.5384 18.3653 53.6371 -Arial_Black.ttf 4 n 31.8826 31.5444 104 é -11.5838 34.2455 44.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 105 z 1.0160 28.4867 30.3629 -Arial_Black.ttf 4 n 31.8826 31.5444 106 _ 35.7480 29.1815 2.7873 -Arial_Black.ttf 4 n 31.8826 31.5444 107 ¥ -10.2995 40.3941 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 1 t -0.0864 22.4548 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 2 h 0.2950 31.8826 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 3 a 10.2837 35.4269 32.7258 -Arial_Black.ttf 5 P 34.7906 42.0000 4 n 10.3572 31.8826 31.5444 -Arial_Black.ttf 5 P 34.7906 42.0000 5 P -0.1741 34.7906 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 6 o 10.4204 34.2455 32.7258 -Arial_Black.ttf 5 P 34.7906 42.0000 7 e 10.4260 34.2455 32.7258 -Arial_Black.ttf 5 P 34.7906 42.0000 8 : 11.9870 11.6371 30.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 9 r 10.3266 23.9105 31.5444 -Arial_Black.ttf 5 P 34.7906 42.0000 10 l -0.3313 11.6371 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 11 i -0.1182 11.6371 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 12 1 -1.2210 23.9105 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 13 | 0.0804 7.2718 53.3612 -Arial_Black.ttf 5 P 34.7906 42.0000 14 N 0.1240 39.2421 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 15 f -1.2253 23.6362 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 16 g 10.6051 34.2455 44.0871 -Arial_Black.ttf 5 P 34.7906 42.0000 17 d -0.0381 32.7882 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 18 W -0.2860 59.5444 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 19 s 10.4628 31.5444 32.7258 -Arial_Black.ttf 5 P 34.7906 42.0000 20 c 10.3152 34.2455 32.7258 -Arial_Black.ttf 5 P 34.7906 42.0000 21 u 11.5063 31.6067 31.5444 -Arial_Black.ttf 5 P 34.7906 42.0000 22 3 -1.1144 33.8834 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 23 ~ 14.3697 32.7258 14.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 24 # -0.9295 35.6338 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 25 O -1.1072 42.6921 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 26 ` -1.2432 14.6708 8.4532 -Arial_Black.ttf 5 P 34.7906 42.0000 27 @ -1.2736 43.1815 49.5147 -Arial_Black.ttf 5 P 34.7906 42.0000 28 F -0.0909 31.6067 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 29 S -1.2418 37.5485 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 30 p 10.4542 32.7882 42.9056 -Arial_Black.ttf 5 P 34.7906 42.0000 31 “ -1.3031 25.6371 23.2742 -Arial_Black.ttf 5 P 34.7906 42.0000 32 % -1.1895 52.3055 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 33 £ -1.0450 34.8768 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 34 . 30.5539 11.6371 11.6371 -Arial_Black.ttf 5 P 34.7906 42.0000 35 2 -1.5347 33.6075 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 36 5 0.2077 33.8834 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 37 m 10.5648 51.5206 31.5444 -Arial_Black.ttf 5 P 34.7906 42.0000 38 V 0.0590 45.1494 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 39 6 -1.0478 33.8834 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 40 w 11.9978 54.8185 30.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 41 T -0.0135 38.4556 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 42 M -0.1645 45.8497 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 43 G -0.8578 42.5435 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 44 b 0.1553 32.7882 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 45 9 -1.4169 33.8834 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 46 ; 11.7878 11.6371 42.9056 -Arial_Black.ttf 5 P 34.7906 42.0000 47 D -0.0922 38.3349 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 48 L -0.0895 32.0311 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 49 y 11.9205 35.7890 42.9056 -Arial_Black.ttf 5 P 34.7906 42.0000 50 ‘ -1.3291 11.6371 23.2742 -Arial_Black.ttf 5 P 34.7906 42.0000 51 \ -1.5546 16.3629 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 52 R 0.2543 41.2135 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 53 < 3.5888 32.6051 34.9975 -Arial_Black.ttf 5 P 34.7906 42.0000 54 4 -1.1332 38.0591 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 55 8 -1.2011 33.8834 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 56 0 -1.2261 33.8834 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 57 A -0.0164 45.5444 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 58 E 0.2847 34.5147 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 59 B 0.2215 38.3349 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 60 v 11.6456 35.7874 30.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 61 k -0.0577 35.5476 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 62 J 0.1614 33.1847 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 63 U 0.1815 39.2421 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 64 j -0.0483 18.3653 54.5427 -Arial_Black.ttf 5 P 34.7906 42.0000 65 ( -1.1655 17.4252 56.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 66 7 0.1926 33.6075 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 67 § -1.3935 34.2455 55.7241 -Arial_Black.ttf 5 P 34.7906 42.0000 68 $ -3.8341 35.2718 52.4211 -Arial_Black.ttf 5 P 34.7906 42.0000 69 € -1.4983 38.1503 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 70 / -1.5252 16.3629 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 71 C -1.1792 39.9114 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 72 * -1.3014 22.1511 20.6009 -Arial_Black.ttf 5 P 34.7906 42.0000 73 ” -1.2893 25.6371 23.2742 -Arial_Black.ttf 5 P 34.7906 42.0000 74 ? -1.0240 31.8202 43.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 75 { -1.0746 21.5147 56.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 76 } -1.2777 21.5147 56.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 77 , 30.2637 11.6371 24.1798 -Arial_Black.ttf 5 P 34.7906 42.0000 78 I 0.1039 12.8185 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 79 ° -1.4156 14.1207 14.1207 -Arial_Black.ttf 5 P 34.7906 42.0000 80 K 0.0740 43.9679 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 81 H 0.1915 39.2421 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 82 q 10.5089 32.7882 42.9056 -Arial_Black.ttf 5 P 34.7906 42.0000 83 & -1.3510 46.8516 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 84 ’ -1.1122 11.6371 23.2742 -Arial_Black.ttf 5 P 34.7906 42.0000 85 [ 0.0989 18.3653 53.6371 -Arial_Black.ttf 5 P 34.7906 42.0000 86 - 21.7005 16.9080 9.2397 -Arial_Black.ttf 5 P 34.7906 42.0000 87 Y -0.2097 45.5444 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 88 Q -1.2661 44.1494 48.3317 -Arial_Black.ttf 5 P 34.7906 42.0000 89 " -0.3006 26.8185 15.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 90 ! 0.1276 11.6371 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 91 x 11.4558 38.7021 30.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 92 ) -1.0959 17.4252 56.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 93 = 9.5173 30.9080 23.2397 -Arial_Black.ttf 5 P 34.7906 42.0000 94 + 5.5695 31.4237 31.4237 -Arial_Black.ttf 5 P 34.7906 42.0000 95 X 0.2519 45.1494 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 96 » 13.3269 31.1494 26.3941 -Arial_Black.ttf 5 P 34.7906 42.0000 97 ' 0.1232 11.6371 15.1815 -Arial_Black.ttf 5 P 34.7906 42.0000 98 ¢ 0.5064 34.2455 53.1782 -Arial_Black.ttf 5 P 34.7906 42.0000 99 Z -0.1350 37.3644 42.0000 -Arial_Black.ttf 5 P 34.7906 42.0000 100 > 3.3888 32.6051 34.9975 -Arial_Black.ttf 5 P 34.7906 42.0000 101 ® -1.1308 43.9385 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 102 © -1.1859 43.9385 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 103 ] 0.4242 18.3653 53.6371 -Arial_Black.ttf 5 P 34.7906 42.0000 104 é -1.2392 34.2455 44.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 105 z 11.5091 28.4867 30.3629 -Arial_Black.ttf 5 P 34.7906 42.0000 106 _ 46.2215 29.1815 2.7873 -Arial_Black.ttf 5 P 34.7906 42.0000 107 ¥ -0.0537 40.3941 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 1 t -10.3720 22.4548 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 2 h -10.7135 31.8826 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 3 a 0.0297 35.4269 32.7258 -Arial_Black.ttf 6 o 34.2455 32.7258 4 n 0.0040 31.8826 31.5444 -Arial_Black.ttf 6 o 34.2455 32.7258 5 P -10.1273 34.7906 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 6 o -0.2479 34.2455 32.7258 -Arial_Black.ttf 6 o 34.2455 32.7258 7 e 0.3304 34.2455 32.7258 -Arial_Black.ttf 6 o 34.2455 32.7258 8 : 1.1690 11.6371 30.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 9 r -0.1217 23.9105 31.5444 -Arial_Black.ttf 6 o 34.2455 32.7258 10 l -10.4650 11.6371 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 11 i -10.4158 11.6371 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 12 1 -11.8421 23.9105 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 13 | -10.6699 7.2718 53.3612 -Arial_Black.ttf 6 o 34.2455 32.7258 14 N -10.5076 39.2421 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 15 f -11.6190 23.6362 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 16 g 0.0969 34.2455 44.0871 -Arial_Black.ttf 6 o 34.2455 32.7258 17 d -10.5039 32.7882 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 18 W -10.5344 59.5444 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 19 s -0.0439 31.5444 32.7258 -Arial_Black.ttf 6 o 34.2455 32.7258 20 c -0.3128 34.2455 32.7258 -Arial_Black.ttf 6 o 34.2455 32.7258 21 u 1.0856 31.6067 31.5444 -Arial_Black.ttf 6 o 34.2455 32.7258 22 3 -11.8205 33.8834 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 23 ~ 3.5287 32.7258 14.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 24 # -11.7252 35.6338 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 25 O -11.5842 42.6921 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 26 ` -11.7131 14.6708 8.4532 -Arial_Black.ttf 6 o 34.2455 32.7258 27 @ -11.6796 43.1815 49.5147 -Arial_Black.ttf 6 o 34.2455 32.7258 28 F -10.5842 31.6067 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 29 S -11.6805 37.5485 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 30 p 0.1975 32.7882 42.9056 -Arial_Black.ttf 6 o 34.2455 32.7258 31 “ -11.7972 25.6371 23.2742 -Arial_Black.ttf 6 o 34.2455 32.7258 32 % -11.6532 52.3055 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 33 £ -11.3121 34.8768 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 34 . 19.6917 11.6371 11.6371 -Arial_Black.ttf 6 o 34.2455 32.7258 35 2 -11.3340 33.6075 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 36 5 -10.7887 33.8834 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 37 m -0.0070 51.5206 31.5444 -Arial_Black.ttf 6 o 34.2455 32.7258 38 V -10.3321 45.1494 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 39 6 -11.8748 33.8834 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 40 w 1.2625 54.8185 30.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 41 T -10.2322 38.4556 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 42 M -10.6965 45.8497 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 43 G -11.6469 42.5435 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 44 b -10.4047 32.7882 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 45 9 -11.6934 33.8834 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 46 ; 1.4402 11.6371 42.9056 -Arial_Black.ttf 6 o 34.2455 32.7258 47 D -10.4030 38.3349 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 48 L -10.1544 32.0311 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 49 y 1.2849 35.7890 42.9056 -Arial_Black.ttf 6 o 34.2455 32.7258 50 ‘ -11.4469 11.6371 23.2742 -Arial_Black.ttf 6 o 34.2455 32.7258 51 \ -11.6931 16.3629 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 52 R -10.3722 41.2135 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 53 < -6.7073 32.6051 34.9975 -Arial_Black.ttf 6 o 34.2455 32.7258 54 4 -11.5242 38.0591 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 55 8 -11.4857 33.8834 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 56 0 -11.3618 33.8834 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 57 A -10.4624 45.5444 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 58 E -10.4295 34.5147 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 59 B -10.2422 38.3349 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 60 v 1.3805 35.7874 30.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 61 k -10.3729 35.5476 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 62 J -10.4255 33.1847 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 63 U -10.7053 39.2421 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 64 j -10.6650 18.3653 54.5427 -Arial_Black.ttf 6 o 34.2455 32.7258 65 ( -11.8421 17.4252 56.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 66 7 -10.5303 33.6075 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 67 § -11.8657 34.2455 55.7241 -Arial_Black.ttf 6 o 34.2455 32.7258 68 $ -14.1012 35.2718 52.4211 -Arial_Black.ttf 6 o 34.2455 32.7258 69 € -11.5216 38.1503 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 70 / -11.3855 16.3629 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 71 C -11.7235 39.9114 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 72 * -11.5396 22.1511 20.6009 -Arial_Black.ttf 6 o 34.2455 32.7258 73 ” -11.5386 25.6371 23.2742 -Arial_Black.ttf 6 o 34.2455 32.7258 74 ? -11.3270 31.8202 43.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 75 { -11.7627 21.5147 56.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 76 } -11.4970 21.5147 56.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 77 , 19.9546 11.6371 24.1798 -Arial_Black.ttf 6 o 34.2455 32.7258 78 I -10.4687 12.8185 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 79 ° -11.9088 14.1207 14.1207 -Arial_Black.ttf 6 o 34.2455 32.7258 80 K -10.6606 43.9679 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 81 H -10.6978 39.2421 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 82 q -0.1585 32.7882 42.9056 -Arial_Black.ttf 6 o 34.2455 32.7258 83 & -11.5659 46.8516 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 84 ’ -11.6945 11.6371 23.2742 -Arial_Black.ttf 6 o 34.2455 32.7258 85 [ -10.2708 18.3653 53.6371 -Arial_Black.ttf 6 o 34.2455 32.7258 86 - 11.4985 16.9080 9.2397 -Arial_Black.ttf 6 o 34.2455 32.7258 87 Y -10.6119 45.5444 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 88 Q -11.2361 44.1494 48.3317 -Arial_Black.ttf 6 o 34.2455 32.7258 89 " -10.2798 26.8185 15.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 90 ! -10.6266 11.6371 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 91 x 1.0360 38.7021 30.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 92 ) -11.6465 17.4252 56.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 93 = -0.7376 30.9080 23.2397 -Arial_Black.ttf 6 o 34.2455 32.7258 94 + -4.8816 31.4237 31.4237 -Arial_Black.ttf 6 o 34.2455 32.7258 95 X -10.5729 45.1494 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 96 » 3.3935 31.1494 26.3941 -Arial_Black.ttf 6 o 34.2455 32.7258 97 ' -10.6017 11.6371 15.1815 -Arial_Black.ttf 6 o 34.2455 32.7258 98 ¢ -9.9476 34.2455 53.1782 -Arial_Black.ttf 6 o 34.2455 32.7258 99 Z -10.5849 37.3644 42.0000 -Arial_Black.ttf 6 o 34.2455 32.7258 100 > -6.9207 32.6051 34.9975 -Arial_Black.ttf 6 o 34.2455 32.7258 101 ® -11.8238 43.9385 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 102 © -11.6371 43.9385 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 103 ] -10.3930 18.3653 53.6371 -Arial_Black.ttf 6 o 34.2455 32.7258 104 é -11.5198 34.2455 44.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 105 z 1.1031 28.4867 30.3629 -Arial_Black.ttf 6 o 34.2455 32.7258 106 _ 35.5889 29.1815 2.7873 -Arial_Black.ttf 6 o 34.2455 32.7258 107 ¥ -10.5255 40.3941 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 1 t -10.4906 22.4548 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 2 h -10.1348 31.8826 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 3 a -0.1330 35.4269 32.7258 -Arial_Black.ttf 7 e 34.2455 32.7258 4 n 0.0577 31.8826 31.5444 -Arial_Black.ttf 7 e 34.2455 32.7258 5 P -10.5478 34.7906 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 6 o 0.0458 34.2455 32.7258 -Arial_Black.ttf 7 e 34.2455 32.7258 7 e 0.0953 34.2455 32.7258 -Arial_Black.ttf 7 e 34.2455 32.7258 8 : 0.9836 11.6371 30.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 9 r 0.1692 23.9105 31.5444 -Arial_Black.ttf 7 e 34.2455 32.7258 10 l -10.6884 11.6371 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 11 i -10.4865 11.6371 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 12 1 -11.7570 23.9105 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 13 | -10.4991 7.2718 53.3612 -Arial_Black.ttf 7 e 34.2455 32.7258 14 N -10.2993 39.2421 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 15 f -11.5310 23.6362 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 16 g -0.0769 34.2455 44.0871 -Arial_Black.ttf 7 e 34.2455 32.7258 17 d -10.5136 32.7882 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 18 W -10.1759 59.5444 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 19 s -0.1766 31.5444 32.7258 -Arial_Black.ttf 7 e 34.2455 32.7258 20 c 0.1879 34.2455 32.7258 -Arial_Black.ttf 7 e 34.2455 32.7258 21 u 1.2006 31.6067 31.5444 -Arial_Black.ttf 7 e 34.2455 32.7258 22 3 -11.5574 33.8834 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 23 ~ 3.5529 32.7258 14.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 24 # -11.7122 35.6338 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 25 O -11.5218 42.6921 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 26 ` -11.6921 14.6708 8.4532 -Arial_Black.ttf 7 e 34.2455 32.7258 27 @ -11.7520 43.1815 49.5147 -Arial_Black.ttf 7 e 34.2455 32.7258 28 F -10.4609 31.6067 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 29 S -11.6192 37.5485 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 30 p 0.3174 32.7882 42.9056 -Arial_Black.ttf 7 e 34.2455 32.7258 31 “ -11.8304 25.6371 23.2742 -Arial_Black.ttf 7 e 34.2455 32.7258 32 % -11.7114 52.3055 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 33 £ -11.4567 34.8768 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 34 . 19.8665 11.6371 11.6371 -Arial_Black.ttf 7 e 34.2455 32.7258 35 2 -11.3615 33.6075 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 36 5 -10.6620 33.8834 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 37 m 0.1192 51.5206 31.5444 -Arial_Black.ttf 7 e 34.2455 32.7258 38 V -10.4386 45.1494 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 39 6 -11.4607 33.8834 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 40 w 1.4643 54.8185 30.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 41 T -10.5343 38.4556 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 42 M -10.3622 45.8497 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 43 G -11.5104 42.5435 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 44 b -10.6888 32.7882 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 45 9 -11.3940 33.8834 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 46 ; 1.2454 11.6371 42.9056 -Arial_Black.ttf 7 e 34.2455 32.7258 47 D -10.4637 38.3349 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 48 L -10.3469 32.0311 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 49 y 1.3646 35.7890 42.9056 -Arial_Black.ttf 7 e 34.2455 32.7258 50 ‘ -11.8568 11.6371 23.2742 -Arial_Black.ttf 7 e 34.2455 32.7258 51 \ -11.8522 16.3629 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 52 R -10.5908 41.2135 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 53 < -6.7156 32.6051 34.9975 -Arial_Black.ttf 7 e 34.2455 32.7258 54 4 -11.8712 38.0591 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 55 8 -11.6189 33.8834 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 56 0 -11.6609 33.8834 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 57 A -10.6415 45.5444 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 58 E -10.5170 34.5147 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 59 B -10.0909 38.3349 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 60 v 1.4003 35.7874 30.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 61 k -10.2623 35.5476 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 62 J -10.7072 33.1847 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 63 U -10.3066 39.2421 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 64 j -10.3756 18.3653 54.5427 -Arial_Black.ttf 7 e 34.2455 32.7258 65 ( -11.2447 17.4252 56.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 66 7 -10.5779 33.6075 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 67 § -11.6294 34.2455 55.7241 -Arial_Black.ttf 7 e 34.2455 32.7258 68 $ -14.5437 35.2718 52.4211 -Arial_Black.ttf 7 e 34.2455 32.7258 69 € -11.7186 38.1503 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 70 / -11.4063 16.3629 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 71 C -11.8917 39.9114 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 72 * -11.2773 22.1511 20.6009 -Arial_Black.ttf 7 e 34.2455 32.7258 73 ” -11.3436 25.6371 23.2742 -Arial_Black.ttf 7 e 34.2455 32.7258 74 ? -11.7802 31.8202 43.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 75 { -11.5925 21.5147 56.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 76 } -11.5524 21.5147 56.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 77 , 19.9302 11.6371 24.1798 -Arial_Black.ttf 7 e 34.2455 32.7258 78 I -10.4176 12.8185 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 79 ° -11.8245 14.1207 14.1207 -Arial_Black.ttf 7 e 34.2455 32.7258 80 K -10.2049 43.9679 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 81 H -10.3303 39.2421 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 82 q 0.1404 32.7882 42.9056 -Arial_Black.ttf 7 e 34.2455 32.7258 83 & -11.6501 46.8516 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 84 ’ -11.4960 11.6371 23.2742 -Arial_Black.ttf 7 e 34.2455 32.7258 85 [ -10.6041 18.3653 53.6371 -Arial_Black.ttf 7 e 34.2455 32.7258 86 - 11.3723 16.9080 9.2397 -Arial_Black.ttf 7 e 34.2455 32.7258 87 Y -10.2888 45.5444 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 88 Q -11.5767 44.1494 48.3317 -Arial_Black.ttf 7 e 34.2455 32.7258 89 " -10.4377 26.8185 15.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 90 ! -10.3642 11.6371 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 91 x 1.2619 38.7021 30.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 92 ) -11.6774 17.4252 56.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 93 = -0.8887 30.9080 23.2397 -Arial_Black.ttf 7 e 34.2455 32.7258 94 + -5.4759 31.4237 31.4237 -Arial_Black.ttf 7 e 34.2455 32.7258 95 X -10.5260 45.1494 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 96 » 3.1509 31.1494 26.3941 -Arial_Black.ttf 7 e 34.2455 32.7258 97 ' -10.5786 11.6371 15.1815 -Arial_Black.ttf 7 e 34.2455 32.7258 98 ¢ -10.2612 34.2455 53.1782 -Arial_Black.ttf 7 e 34.2455 32.7258 99 Z -10.4436 37.3644 42.0000 -Arial_Black.ttf 7 e 34.2455 32.7258 100 > -6.8128 32.6051 34.9975 -Arial_Black.ttf 7 e 34.2455 32.7258 101 ® -11.5976 43.9385 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 102 © -11.5283 43.9385 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 103 ] -10.3500 18.3653 53.6371 -Arial_Black.ttf 7 e 34.2455 32.7258 104 é -11.5279 34.2455 44.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 105 z 1.1554 28.4867 30.3629 -Arial_Black.ttf 7 e 34.2455 32.7258 106 _ 35.8116 29.1815 2.7873 -Arial_Black.ttf 7 e 34.2455 32.7258 107 ¥ -10.5186 40.3941 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 1 t -11.3568 22.4548 43.1815 -Arial_Black.ttf 8 : 11.6371 30.3629 2 h -11.7467 31.8826 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 3 a -1.2683 35.4269 32.7258 -Arial_Black.ttf 8 : 11.6371 30.3629 4 n -1.2538 31.8826 31.5444 -Arial_Black.ttf 8 : 11.6371 30.3629 5 P -11.6290 34.7906 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 6 o -1.1188 34.2455 32.7258 -Arial_Black.ttf 8 : 11.6371 30.3629 7 e -1.2485 34.2455 32.7258 -Arial_Black.ttf 8 : 11.6371 30.3629 8 : 0.0233 11.6371 30.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 9 r -1.3855 23.9105 31.5444 -Arial_Black.ttf 8 : 11.6371 30.3629 10 l -11.7897 11.6371 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 11 i -11.6963 11.6371 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 12 1 -12.8091 23.9105 43.1815 -Arial_Black.ttf 8 : 11.6371 30.3629 13 | -11.7189 7.2718 53.3612 -Arial_Black.ttf 8 : 11.6371 30.3629 14 N -11.6271 39.2421 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 15 f -12.5237 23.6362 43.1815 -Arial_Black.ttf 8 : 11.6371 30.3629 16 g -1.2588 34.2455 44.0871 -Arial_Black.ttf 8 : 11.6371 30.3629 17 d -11.5655 32.7882 43.1815 -Arial_Black.ttf 8 : 11.6371 30.3629 18 W -11.5844 59.5444 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 19 s -1.2230 31.5444 32.7258 -Arial_Black.ttf 8 : 11.6371 30.3629 20 c -1.3001 34.2455 32.7258 -Arial_Black.ttf 8 : 11.6371 30.3629 21 u 0.0068 31.6067 31.5444 -Arial_Black.ttf 8 : 11.6371 30.3629 22 3 -12.6597 33.8834 44.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 23 ~ 2.3535 32.7258 14.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 24 # -12.8172 35.6338 44.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 25 O -12.7685 42.6921 44.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 26 ` -12.8530 14.6708 8.4532 -Arial_Black.ttf 8 : 11.6371 30.3629 27 @ -12.6574 43.1815 49.5147 -Arial_Black.ttf 8 : 11.6371 30.3629 28 F -11.5882 31.6067 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 29 S -12.6480 37.5485 44.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 30 p -1.1031 32.7882 42.9056 -Arial_Black.ttf 8 : 11.6241 30.3759 31 “ -12.8953 25.6241 23.2483 -Arial_Black.ttf 8 : 11.6241 30.3759 32 % -12.9214 52.3164 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 33 £ -12.9664 34.8724 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 34 . 18.7445 11.6241 11.6241 -Arial_Black.ttf 8 : 11.6241 30.3759 35 2 -12.8204 33.5935 43.1879 -Arial_Black.ttf 8 : 11.6241 30.3759 36 5 -11.5332 33.8435 43.1879 -Arial_Black.ttf 8 : 11.6371 30.3629 37 m -1.1098 51.5206 31.5444 -Arial_Black.ttf 8 : 11.6371 30.3629 38 V -11.4307 45.1494 42.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 39 6 -12.8390 33.8435 44.3759 -Arial_Black.ttf 8 : 11.6371 30.3629 40 w 0.1611 54.8185 30.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 41 T -11.7978 38.4556 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 42 M -11.7664 45.8497 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 43 G -12.7532 42.5435 44.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 44 b -11.8211 32.7882 43.1815 -Arial_Black.ttf 8 : 11.6241 30.3759 45 9 -12.6438 33.8435 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 46 ; 0.0455 11.6241 42.9379 -Arial_Black.ttf 8 : 11.6371 30.3629 47 D -11.8505 38.3349 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 48 L -11.5502 32.0311 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 49 y -0.0017 35.7890 42.9056 -Arial_Black.ttf 8 : 11.6241 30.3759 50 ‘ -12.9470 11.6241 23.2483 -Arial_Black.ttf 8 : 11.6241 30.3759 51 \ -12.7666 16.3759 44.3759 -Arial_Black.ttf 8 : 11.6371 30.3629 52 R -11.4723 41.2135 42.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 53 < -8.0211 32.6267 34.9974 -Arial_Black.ttf 8 : 11.6241 30.3759 54 4 -12.8121 38.0612 43.1879 -Arial_Black.ttf 8 : 11.6241 30.3759 55 8 -12.7718 33.8435 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 56 0 -12.8894 33.8435 44.3759 -Arial_Black.ttf 8 : 11.6371 30.3629 57 A -11.6716 45.5444 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 58 E -11.8349 34.5147 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 59 B -11.5449 38.3349 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 60 v -0.0760 35.7874 30.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 61 k -11.7965 35.5476 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 62 J -11.6126 33.1847 43.1815 -Arial_Black.ttf 8 : 11.6371 30.3629 63 U -11.4381 39.2421 43.1815 -Arial_Black.ttf 8 : 11.6371 30.3629 64 j -11.8743 18.3653 54.5427 -Arial_Black.ttf 8 : 11.6241 30.3759 65 ( -12.9344 17.4047 56.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 66 7 -11.7938 33.5935 42.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 67 § -12.9390 34.2185 55.7500 -Arial_Black.ttf 8 : 11.6241 30.3759 68 $ -15.6789 35.2815 52.4362 -Arial_Black.ttf 8 : 11.6241 30.3759 69 € -12.9804 38.1914 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 70 / -12.9414 16.3759 44.3759 -Arial_Black.ttf 8 : 11.6371 30.3629 71 C -12.7877 39.9114 44.3629 -Arial_Black.ttf 8 : 11.6241 30.3759 72 * -13.0706 22.1565 20.6224 -Arial_Black.ttf 8 : 11.6241 30.3759 73 ” -12.7347 25.6241 23.2483 -Arial_Black.ttf 8 : 11.6241 30.3759 74 ? -12.7351 31.8138 43.1879 -Arial_Black.ttf 8 : 11.6241 30.3759 75 { -12.9571 21.4974 56.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 76 } -12.8621 21.4974 56.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 77 , 18.6314 11.6241 24.1862 -Arial_Black.ttf 8 : 11.6371 30.3629 78 I -11.8555 12.8185 42.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 79 ° -12.5938 14.1250 14.1250 -Arial_Black.ttf 8 : 11.6371 30.3629 80 K -11.3252 43.9679 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 81 H -11.8336 39.2421 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 82 q -1.0893 32.7882 42.9056 -Arial_Black.ttf 8 : 11.6241 30.3759 83 & -12.8932 46.8820 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 84 ’ -12.7913 11.6241 23.2483 -Arial_Black.ttf 8 : 11.6241 30.3759 85 [ -11.4888 18.3427 53.6241 -Arial_Black.ttf 8 : 11.6241 30.3759 86 - 10.3371 16.9047 9.2483 -Arial_Black.ttf 8 : 11.6371 30.3629 87 Y -11.7257 45.5444 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 88 Q -12.9837 44.1494 48.3317 -Arial_Black.ttf 8 : 11.6241 30.3759 89 " -11.7293 26.8121 15.1879 -Arial_Black.ttf 8 : 11.6241 30.3759 90 ! -11.6983 11.6241 42.0000 -Arial_Black.ttf 8 : 11.6371 30.3629 91 x -0.1584 38.7021 30.3629 -Arial_Black.ttf 8 : 11.6241 30.3759 92 ) -12.7254 17.4047 56.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 93 = -1.7959 30.9047 23.2483 -Arial_Black.ttf 8 : 11.6241 30.3759 94 + -6.3250 31.4388 31.4388 -Arial_Black.ttf 8 : 11.6371 30.3629 95 X -11.7915 45.1494 42.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 96 » 1.7533 31.1547 26.4082 -Arial_Black.ttf 8 : 11.6241 30.3759 97 ' -11.7984 11.6241 15.1879 -Arial_Black.ttf 8 : 11.6241 30.3759 98 ¢ -11.3798 34.2185 53.2203 -Arial_Black.ttf 8 : 11.6371 30.3629 99 Z -11.5584 37.3644 42.0000 -Arial_Black.ttf 8 : 11.6241 30.3759 100 > -7.9829 32.6267 34.9974 -Arial_Black.ttf 8 : 11.6241 30.3759 101 ® -12.9030 43.9720 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 102 © -12.7652 43.9720 44.3759 -Arial_Black.ttf 8 : 11.6241 30.3759 103 ] -11.4110 18.3427 53.6241 -Arial_Black.ttf 8 : 11.6371 30.3629 104 é -12.4936 34.2455 44.3629 -Arial_Black.ttf 8 : 11.6371 30.3629 105 z 0.0376 28.4867 30.3629 -Arial_Black.ttf 8 : 11.6241 30.3759 106 _ 34.3562 29.1879 2.7797 -Arial_Black.ttf 8 : 11.6241 30.3759 107 ¥ -11.6144 40.4082 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 1 t -10.4386 22.4548 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 2 h -10.5441 31.8826 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 3 a -0.1915 35.4269 32.7258 -Arial_Black.ttf 9 r 23.9105 31.5444 4 n -0.0371 31.8826 31.5444 -Arial_Black.ttf 9 r 23.9105 31.5444 5 P -10.6512 34.7906 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 6 o -0.0371 34.2455 32.7258 -Arial_Black.ttf 9 r 23.9105 31.5444 7 e 0.2676 34.2455 32.7258 -Arial_Black.ttf 9 r 23.9105 31.5444 8 : 1.2068 11.6371 30.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 9 r -0.3929 23.9105 31.5444 -Arial_Black.ttf 9 r 23.9105 31.5444 10 l -10.7100 11.6371 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 11 i -10.4964 11.6371 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 12 1 -11.5222 23.9105 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 13 | -10.4915 7.2718 53.3612 -Arial_Black.ttf 9 r 23.9105 31.5444 14 N -10.5340 39.2421 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 15 f -11.8151 23.6362 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 16 g -0.0308 34.2455 44.0871 -Arial_Black.ttf 9 r 23.9105 31.5444 17 d -10.3903 32.7882 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 18 W -10.7719 59.5444 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 19 s 0.0301 31.5444 32.7258 -Arial_Black.ttf 9 r 23.9105 31.5444 20 c -0.0820 34.2455 32.7258 -Arial_Black.ttf 9 r 23.9105 31.5444 21 u 0.8615 31.6067 31.5444 -Arial_Black.ttf 9 r 23.9105 31.5444 22 3 -11.7298 33.8834 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 23 ~ 3.8370 32.7258 14.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 24 # -11.7587 35.6338 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 25 O -11.3669 42.6921 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 26 ` -11.7118 14.6708 8.4532 -Arial_Black.ttf 9 r 23.9105 31.5444 27 @ -11.4394 43.1815 49.5147 -Arial_Black.ttf 9 r 23.9105 31.5444 28 F -10.3947 31.6067 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 29 S -11.7985 37.5485 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 30 p -0.1695 32.7882 42.9056 -Arial_Black.ttf 9 r 23.9105 31.5444 31 “ -11.4948 25.6371 23.2742 -Arial_Black.ttf 9 r 23.9105 31.5444 32 % -11.8371 52.3055 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 33 £ -11.9306 34.8768 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 34 . 19.8195 11.6371 11.6371 -Arial_Black.ttf 9 r 23.9105 31.5444 35 2 -11.5946 33.6075 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 36 5 -10.6694 33.8834 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 37 m 0.3714 51.5206 31.5444 -Arial_Black.ttf 9 r 23.9105 31.5444 38 V -10.7725 45.1494 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 39 6 -11.4997 33.8834 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 40 w 0.8619 54.8185 30.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 41 T -10.3246 38.4556 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 42 M -10.6687 45.8497 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 43 G -11.4723 42.5435 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 44 b -10.3224 32.7882 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 45 9 -11.5534 33.8834 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 46 ; 1.3382 11.6371 42.9056 -Arial_Black.ttf 9 r 23.9105 31.5444 47 D -10.4954 38.3349 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 48 L -10.2864 32.0311 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 49 y 0.9782 35.7890 42.9056 -Arial_Black.ttf 9 r 23.9105 31.5444 50 ‘ -11.4984 11.6371 23.2742 -Arial_Black.ttf 9 r 23.9105 31.5444 51 \ -11.4814 16.3629 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 52 R -10.3635 41.2135 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 53 < -7.1198 32.6051 34.9975 -Arial_Black.ttf 9 r 23.9105 31.5444 54 4 -11.8273 38.0591 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 55 8 -11.6371 33.8834 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 56 0 -11.8232 33.8834 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 57 A -10.7009 45.5444 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 58 E -10.2449 34.5147 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 59 B -10.3608 38.3349 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 60 v 1.3546 35.7874 30.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 61 k -10.1662 35.5476 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 62 J -10.3370 33.1847 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 63 U -10.5388 39.2421 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 64 j -10.1499 18.3653 54.5427 -Arial_Black.ttf 9 r 23.9105 31.5444 65 ( -11.5683 17.4252 56.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 66 7 -10.2659 33.6075 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 67 § -11.5615 34.2455 55.7241 -Arial_Black.ttf 9 r 23.9105 31.5444 68 $ -14.1433 35.2718 52.4211 -Arial_Black.ttf 9 r 23.9105 31.5444 69 € -11.7598 38.1503 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 70 / -11.5969 16.3629 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 71 C -11.8669 39.9114 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 72 * -11.5493 22.1511 20.6009 -Arial_Black.ttf 9 r 23.9105 31.5444 73 ” -11.8076 25.6371 23.2742 -Arial_Black.ttf 9 r 23.9105 31.5444 74 ? -11.5918 31.8202 43.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 75 { -11.7589 21.5147 56.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 76 } -11.5862 21.5147 56.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 77 , 20.0065 11.6371 24.1798 -Arial_Black.ttf 9 r 23.9105 31.5444 78 I -10.3947 12.8185 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 79 ° -11.3926 14.1207 14.1207 -Arial_Black.ttf 9 r 23.9105 31.5444 80 K -10.4825 43.9679 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 81 H -10.4950 39.2421 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 82 q -0.1293 32.7882 42.9056 -Arial_Black.ttf 9 r 23.9105 31.5444 83 & -11.4823 46.8516 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 84 ’ -11.5556 11.6371 23.2742 -Arial_Black.ttf 9 r 23.9105 31.5444 85 [ -10.1241 18.3653 53.6371 -Arial_Black.ttf 9 r 23.9105 31.5444 86 - 11.6739 16.9080 9.2397 -Arial_Black.ttf 9 r 23.9105 31.5444 87 Y -10.5903 45.5444 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 88 Q -11.7606 44.1494 48.3317 -Arial_Black.ttf 9 r 23.9105 31.5444 89 " -10.4600 26.8185 15.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 90 ! -10.5823 11.6371 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 91 x 1.0991 38.7021 30.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 92 ) -11.4058 17.4252 56.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 93 = -1.1378 30.9080 23.2397 -Arial_Black.ttf 9 r 23.9105 31.5444 94 + -5.1847 31.4237 31.4237 -Arial_Black.ttf 9 r 23.9105 31.5444 95 X -10.7448 45.1494 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 96 » 2.8050 31.1494 26.3941 -Arial_Black.ttf 9 r 23.9105 31.5444 97 ' -10.6177 11.6371 15.1815 -Arial_Black.ttf 9 r 23.9105 31.5444 98 ¢ -10.1069 34.2455 53.1782 -Arial_Black.ttf 9 r 23.9105 31.5444 99 Z -10.6325 37.3644 42.0000 -Arial_Black.ttf 9 r 23.9105 31.5444 100 > -7.0406 32.6051 34.9975 -Arial_Black.ttf 9 r 23.9105 31.5444 101 ® -11.6026 43.9385 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 102 © -11.5998 43.9385 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 103 ] -10.2931 18.3653 53.6371 -Arial_Black.ttf 9 r 23.9105 31.5444 104 é -11.5546 34.2455 44.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 105 z 1.2443 28.4867 30.3629 -Arial_Black.ttf 9 r 23.9105 31.5444 106 _ 35.4656 29.1815 2.7873 -Arial_Black.ttf 9 r 23.9105 31.5444 107 ¥ -10.6168 40.3941 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 1 t 0.0063 22.4548 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 2 h 0.3326 31.8826 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 3 a 10.4959 35.4269 32.7258 -Arial_Black.ttf 10 l 11.6371 42.0000 4 n 10.1521 31.8826 31.5444 -Arial_Black.ttf 10 l 11.6371 42.0000 5 P 0.3651 34.7906 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 6 o 10.5680 34.2455 32.7258 -Arial_Black.ttf 10 l 11.6371 42.0000 7 e 10.4512 34.2455 32.7258 -Arial_Black.ttf 10 l 11.6371 42.0000 8 : 11.7181 11.6371 30.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 9 r 10.3773 23.9105 31.5444 -Arial_Black.ttf 10 l 11.6371 42.0000 10 l -0.0364 11.6371 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 11 i -0.2304 11.6371 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 12 1 -1.5793 23.9105 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 13 | 0.1638 7.2718 53.3612 -Arial_Black.ttf 10 l 11.6371 42.0000 14 N 0.0846 39.2421 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 15 f -1.1815 23.6362 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 16 g 10.5464 34.2455 44.0871 -Arial_Black.ttf 10 l 11.6371 42.0000 17 d -0.0426 32.7882 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 18 W -0.1149 59.5444 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 19 s 10.5066 31.5444 32.7258 -Arial_Black.ttf 10 l 11.6371 42.0000 20 c 10.5303 34.2455 32.7258 -Arial_Black.ttf 10 l 11.6371 42.0000 21 u 11.7306 31.6067 31.5444 -Arial_Black.ttf 10 l 11.6371 42.0000 22 3 -1.3717 33.8834 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 23 ~ 13.8017 32.7258 14.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 24 # -0.7755 35.6338 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 25 O -1.2253 42.6921 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 26 ` -1.0351 14.6708 8.4532 -Arial_Black.ttf 10 l 11.6371 42.0000 27 @ -1.3389 43.1815 49.5147 -Arial_Black.ttf 10 l 11.6371 42.0000 28 F 0.0784 31.6067 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 29 S -1.0616 37.5485 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 30 p 10.1276 32.7882 42.9056 -Arial_Black.ttf 10 l 11.6371 42.0000 31 “ -1.1596 25.6371 23.2742 -Arial_Black.ttf 10 l 11.6371 42.0000 32 % -0.9724 52.3055 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 33 £ -0.9980 34.8768 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 34 . 30.7857 11.6371 11.6371 -Arial_Black.ttf 10 l 11.6371 42.0000 35 2 -1.3345 33.6075 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 36 5 -0.0301 33.8834 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 37 m 10.4945 51.5206 31.5444 -Arial_Black.ttf 10 l 11.6371 42.0000 38 V -0.0891 45.1494 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 39 6 -1.0454 33.8834 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 40 w 11.7055 54.8185 30.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 41 T 0.1343 38.4556 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 42 M 0.2291 45.8497 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 43 G -1.3389 42.5435 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 44 b 0.2036 32.7882 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 45 9 -0.9639 33.8834 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 46 ; 11.7552 11.6371 42.9056 -Arial_Black.ttf 10 l 11.6371 42.0000 47 D 0.0282 38.3349 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 48 L -0.0618 32.0311 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 49 y 11.7614 35.7890 42.9056 -Arial_Black.ttf 10 l 11.6371 42.0000 50 ‘ -1.4173 11.6371 23.2742 -Arial_Black.ttf 10 l 11.6371 42.0000 51 \ -1.0168 16.3629 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 52 R 0.0031 41.2135 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 53 < 3.5350 32.6051 34.9975 -Arial_Black.ttf 10 l 11.6371 42.0000 54 4 -1.1072 38.0591 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 55 8 -1.0987 33.8834 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 56 0 -1.2656 33.8834 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 57 A 0.0000 45.5444 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 58 E -0.2144 34.5147 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 59 B 0.0828 38.3349 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 60 v 11.5162 35.7874 30.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 61 k -0.1531 35.5476 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 62 J -0.1256 33.1847 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 63 U 0.1594 39.2421 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 64 j 0.2404 18.3653 54.5427 -Arial_Black.ttf 10 l 11.6371 42.0000 65 ( -1.1470 17.4252 56.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 66 7 -0.0371 33.6075 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 67 § -0.8303 34.2455 55.7241 -Arial_Black.ttf 10 l 11.6371 42.0000 68 $ -3.8538 35.2718 52.4211 -Arial_Black.ttf 10 l 11.6371 42.0000 69 € -1.0799 38.1503 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 70 / -0.9111 16.3629 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 71 C -0.9808 39.9114 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 72 * -1.0338 22.1511 20.6009 -Arial_Black.ttf 10 l 11.6371 42.0000 73 ” -1.1832 25.6371 23.2742 -Arial_Black.ttf 10 l 11.6371 42.0000 74 ? -1.1684 31.8202 43.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 75 { -1.1332 21.5147 56.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 76 } -1.2562 21.5147 56.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 77 , 30.3559 11.6371 24.1798 -Arial_Black.ttf 10 l 11.6371 42.0000 78 I 0.0107 12.8185 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 79 ° -1.3496 14.1207 14.1207 -Arial_Black.ttf 10 l 11.6371 42.0000 80 K -0.0680 43.9679 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 81 H 0.0878 39.2421 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 82 q 10.3357 32.7882 42.9056 -Arial_Black.ttf 10 l 11.6371 42.0000 83 & -1.0231 46.8516 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 84 ’ -1.2092 11.6371 23.2742 -Arial_Black.ttf 10 l 11.6371 42.0000 85 [ -0.0214 18.3653 53.6371 -Arial_Black.ttf 10 l 11.6371 42.0000 86 - 22.3126 16.9080 9.2397 -Arial_Black.ttf 10 l 11.6371 42.0000 87 Y -0.2641 45.5444 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 88 Q -1.2557 44.1494 48.3317 -Arial_Black.ttf 10 l 11.6371 42.0000 89 " 0.2094 26.8185 15.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 90 ! 0.2503 11.6371 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 91 x 11.4821 38.7021 30.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 92 ) -1.0561 17.4252 56.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 93 = 9.4372 30.9080 23.2397 -Arial_Black.ttf 10 l 11.6371 42.0000 94 + 5.3420 31.4237 31.4237 -Arial_Black.ttf 10 l 11.6371 42.0000 95 X -0.1638 45.1494 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 96 » 13.5282 31.1494 26.3941 -Arial_Black.ttf 10 l 11.6371 42.0000 97 ' -0.0828 11.6371 15.1815 -Arial_Black.ttf 10 l 11.6371 42.0000 98 ¢ 0.2951 34.2455 53.1782 -Arial_Black.ttf 10 l 11.6371 42.0000 99 Z -0.2941 37.3644 42.0000 -Arial_Black.ttf 10 l 11.6371 42.0000 100 > 3.7166 32.6051 34.9975 -Arial_Black.ttf 10 l 11.6371 42.0000 101 ® -1.1443 43.9385 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 102 © -1.1653 43.9385 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 103 ] -0.1249 18.3653 53.6371 -Arial_Black.ttf 10 l 11.6371 42.0000 104 é -1.2123 34.2455 44.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 105 z 11.7203 28.4867 30.3629 -Arial_Black.ttf 10 l 11.6371 42.0000 106 _ 46.2081 29.1815 2.7873 -Arial_Black.ttf 10 l 11.6371 42.0000 107 ¥ -0.0050 40.3941 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 1 t -0.0456 22.4548 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 2 h 0.1638 31.8826 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 3 a 10.5397 35.4269 32.7258 -Arial_Black.ttf 11 i 11.6371 42.0000 4 n 10.4476 31.8826 31.5444 -Arial_Black.ttf 11 i 11.6371 42.0000 5 P 0.2972 34.7906 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 6 o 10.4262 34.2455 32.7258 -Arial_Black.ttf 11 i 11.6371 42.0000 7 e 10.3719 34.2455 32.7258 -Arial_Black.ttf 11 i 11.6371 42.0000 8 : 11.7959 11.6371 30.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 9 r 10.4127 23.9105 31.5444 -Arial_Black.ttf 11 i 11.6371 42.0000 10 l -0.0389 11.6371 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 11 i 0.1186 11.6371 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 12 1 -1.1875 23.9105 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 13 | -0.2877 7.2718 53.3612 -Arial_Black.ttf 11 i 11.6371 42.0000 14 N 0.1755 39.2421 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 15 f -1.2253 23.6362 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 16 g 10.5340 34.2455 44.0871 -Arial_Black.ttf 11 i 11.6371 42.0000 17 d 0.0797 32.7882 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 18 W -0.0859 59.5444 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 19 s 10.3401 31.5444 32.7258 -Arial_Black.ttf 11 i 11.6371 42.0000 20 c 10.4512 34.2455 32.7258 -Arial_Black.ttf 11 i 11.6371 42.0000 21 u 11.7300 31.6067 31.5444 -Arial_Black.ttf 11 i 11.6371 42.0000 22 3 -1.3403 33.8834 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 23 ~ 13.8139 32.7258 14.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 24 # -1.1605 35.6338 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 25 O -0.9845 42.6921 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 26 ` -1.2360 14.6708 8.4532 -Arial_Black.ttf 11 i 11.6371 42.0000 27 @ -1.2118 43.1815 49.5147 -Arial_Black.ttf 11 i 11.6371 42.0000 28 F 0.0063 31.6067 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 29 S -1.3001 37.5485 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 30 p 10.5397 32.7882 42.9056 -Arial_Black.ttf 11 i 11.6371 42.0000 31 “ -1.1470 25.6371 23.2742 -Arial_Black.ttf 11 i 11.6371 42.0000 32 % -1.1282 52.3055 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 33 £ -1.1061 34.8768 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 34 . 30.2380 11.6371 11.6371 -Arial_Black.ttf 11 i 11.6371 42.0000 35 2 -1.2319 33.6075 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 36 5 0.1162 33.8834 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 37 m 10.3729 51.5206 31.5444 -Arial_Black.ttf 11 i 11.6371 42.0000 38 V 0.0321 45.1494 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 39 6 -1.0548 33.8834 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 40 w 11.7252 54.8185 30.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 41 T 0.1804 38.4556 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 42 M -0.0828 45.8497 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 43 G -1.1815 42.5435 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 44 b -0.2130 32.7882 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 45 9 -1.3260 33.8834 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 46 ; 11.6465 11.6371 42.9056 -Arial_Black.ttf 11 i 11.6371 42.0000 47 D 0.0784 38.3349 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 48 L -0.0680 32.0311 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 49 y 11.5110 35.7890 42.9056 -Arial_Black.ttf 11 i 11.6371 42.0000 50 ‘ -1.0235 11.6371 23.2742 -Arial_Black.ttf 11 i 11.6371 42.0000 51 \ -1.0156 16.3629 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 52 R -0.1701 41.2135 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 53 < 3.6163 32.6051 34.9975 -Arial_Black.ttf 11 i 11.6371 42.0000 54 4 -1.1031 38.0591 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 55 8 -1.3614 33.8834 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 56 0 -1.2619 33.8834 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 57 A 0.1324 45.5444 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 58 E 0.0380 34.5147 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 59 B -0.1799 38.3349 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 60 v 11.7118 35.7874 30.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 61 k -0.1661 35.5476 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 62 J -0.2533 33.1847 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 63 U 0.0784 39.2421 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 64 j 0.1705 18.3653 54.5427 -Arial_Black.ttf 11 i 11.6371 42.0000 65 ( -0.9447 17.4252 56.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 66 7 -0.1485 33.6075 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 67 § -1.1116 34.2455 55.7241 -Arial_Black.ttf 11 i 11.6371 42.0000 68 $ -3.9688 35.2718 52.4211 -Arial_Black.ttf 11 i 11.6371 42.0000 69 € -1.1399 38.1503 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 70 / -0.9782 16.3629 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 71 C -1.0250 39.9114 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 72 * -1.1952 22.1511 20.6009 -Arial_Black.ttf 11 i 11.6371 42.0000 73 ” -1.1274 25.6371 23.2742 -Arial_Black.ttf 11 i 11.6371 42.0000 74 ? -1.3345 31.8202 43.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 75 { -1.1072 21.5147 56.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 76 } -1.1470 21.5147 56.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 77 , 30.4855 11.6371 24.1798 -Arial_Black.ttf 11 i 11.6371 42.0000 78 I 0.2094 12.8185 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 79 ° -1.1111 14.1207 14.1207 -Arial_Black.ttf 11 i 11.6371 42.0000 80 K 0.0371 43.9679 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 81 H 0.0514 39.2421 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 82 q 10.3980 32.7882 42.9056 -Arial_Black.ttf 11 i 11.6371 42.0000 83 & -1.3108 46.8516 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 84 ’ -1.2642 11.6371 23.2742 -Arial_Black.ttf 11 i 11.6371 42.0000 85 [ 0.0313 18.3653 53.6371 -Arial_Black.ttf 11 i 11.6371 42.0000 86 - 22.0275 16.9080 9.2397 -Arial_Black.ttf 11 i 11.6371 42.0000 87 Y 0.0070 45.5444 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 88 Q -1.0109 44.1494 48.3317 -Arial_Black.ttf 11 i 11.6371 42.0000 89 " 0.0345 26.8185 15.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 90 ! -0.2138 11.6371 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 91 x 11.6277 38.7021 30.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 92 ) -1.0629 17.4252 56.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 93 = 9.8020 30.9080 23.2397 -Arial_Black.ttf 11 i 11.6371 42.0000 94 + 5.1443 31.4237 31.4237 -Arial_Black.ttf 11 i 11.6371 42.0000 95 X -0.0308 45.1494 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 96 » 13.4924 31.1494 26.3941 -Arial_Black.ttf 11 i 11.6371 42.0000 97 ' -0.2009 11.6371 15.1815 -Arial_Black.ttf 11 i 11.6371 42.0000 98 ¢ 0.4633 34.2455 53.1782 -Arial_Black.ttf 11 i 11.6371 42.0000 99 Z 0.0068 37.3644 42.0000 -Arial_Black.ttf 11 i 11.6371 42.0000 100 > 3.7561 32.6051 34.9975 -Arial_Black.ttf 11 i 11.6371 42.0000 101 ® -1.2557 43.9385 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 102 © -1.0598 43.9385 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 103 ] -0.1230 18.3653 53.6371 -Arial_Black.ttf 11 i 11.6371 42.0000 104 é -1.1879 34.2455 44.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 105 z 11.3597 28.4867 30.3629 -Arial_Black.ttf 11 i 11.6371 42.0000 106 _ 46.1270 29.1815 2.7873 -Arial_Black.ttf 11 i 11.6371 42.0000 107 ¥ 0.1517 40.3941 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 1 t 1.2128 22.4548 43.1815 -Arial_Black.ttf 12 1 23.9105 43.1815 2 h 1.0325 31.8826 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 3 a 11.6193 35.4269 32.7258 -Arial_Black.ttf 12 1 23.9105 43.1815 4 n 11.5959 31.8826 31.5444 -Arial_Black.ttf 12 1 23.9105 43.1815 5 P 1.2914 34.7906 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 6 o 11.8048 34.2455 32.7258 -Arial_Black.ttf 12 1 23.9105 43.1815 7 e 11.7209 34.2455 32.7258 -Arial_Black.ttf 12 1 23.9105 43.1815 8 : 12.5473 11.6371 30.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 9 r 11.8836 23.9105 31.5444 -Arial_Black.ttf 12 1 23.9105 43.1815 10 l 1.0835 11.6371 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 11 i 1.3526 11.6371 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 12 1 0.0402 23.9105 43.1815 -Arial_Black.ttf 12 1 23.9105 43.1815 13 | 1.2996 7.2718 53.3612 -Arial_Black.ttf 12 1 23.9105 43.1815 14 N 1.2017 39.2421 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 15 f 0.1118 23.6362 43.1815 -Arial_Black.ttf 12 1 23.9105 43.1815 16 g 11.6769 34.2455 44.0871 -Arial_Black.ttf 12 1 23.9105 43.1815 17 d 1.1569 32.7882 43.1815 -Arial_Black.ttf 12 1 23.9105 43.1815 18 W 1.3784 59.5444 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 19 s 11.7632 31.5444 32.7258 -Arial_Black.ttf 12 1 23.9105 43.1815 20 c 11.5449 34.2455 32.7258 -Arial_Black.ttf 12 1 23.9105 43.1815 21 u 12.9422 31.6067 31.5444 -Arial_Black.ttf 12 1 23.9105 43.1815 22 3 0.0509 33.8834 44.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 23 ~ 14.8928 32.7258 14.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 24 # 0.1079 35.6338 44.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 25 O 0.0298 42.6921 44.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 26 ` -0.0904 14.6708 8.4532 -Arial_Black.ttf 12 1 23.9105 43.1815 27 @ -0.1172 43.1815 49.5147 -Arial_Black.ttf 12 1 23.9105 43.1815 28 F 1.1004 31.6067 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 29 S -0.3343 37.5485 44.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 30 p 11.8729 32.7882 42.9056 -Arial_Black.ttf 12 1 23.9073 43.1879 31 “ 0.0333 25.6241 23.2483 -Arial_Black.ttf 12 1 23.9073 43.1879 32 % -0.2484 52.3164 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 33 £ 0.1126 34.8724 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 34 . 31.4264 11.6241 11.6241 -Arial_Black.ttf 12 1 23.9073 43.1879 35 2 -0.0258 33.5935 43.1879 -Arial_Black.ttf 12 1 23.9073 43.1879 36 5 0.9882 33.8435 43.1879 -Arial_Black.ttf 12 1 23.9105 43.1815 37 m 11.8193 51.5206 31.5444 -Arial_Black.ttf 12 1 23.9105 43.1815 38 V 1.3811 45.1494 42.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 39 6 0.1746 33.8435 44.3759 -Arial_Black.ttf 12 1 23.9105 43.1815 40 w 12.7415 54.8185 30.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 41 T 0.8930 38.4556 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 42 M 1.3675 45.8497 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 43 G -0.4023 42.5435 44.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 44 b 1.1939 32.7882 43.1815 -Arial_Black.ttf 12 1 23.9073 43.1879 45 9 0.1742 33.8435 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 46 ; 12.6767 11.6241 42.9379 -Arial_Black.ttf 12 1 23.9105 43.1815 47 D 1.4829 38.3349 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 48 L 0.8119 32.0311 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 49 y 12.8166 35.7890 42.9056 -Arial_Black.ttf 12 1 23.9073 43.1879 50 ‘ 0.0909 11.6241 23.2483 -Arial_Black.ttf 12 1 23.9073 43.1879 51 \ -0.0368 16.3759 44.3759 -Arial_Black.ttf 12 1 23.9105 43.1815 52 R 1.2151 41.2135 42.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 53 < 4.6748 32.6267 34.9974 -Arial_Black.ttf 12 1 23.9073 43.1879 54 4 0.0755 38.0612 43.1879 -Arial_Black.ttf 12 1 23.9073 43.1879 55 8 0.1701 33.8435 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 56 0 -0.0027 33.8435 44.3759 -Arial_Black.ttf 12 1 23.9105 43.1815 57 A 1.2541 45.5444 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 58 E 1.2780 34.5147 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 59 B 0.9416 38.3349 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 60 v 12.5957 35.7874 30.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 61 k 1.4768 35.5476 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 62 J 1.4669 33.1847 43.1815 -Arial_Black.ttf 12 1 23.9105 43.1815 63 U 1.6280 39.2421 43.1815 -Arial_Black.ttf 12 1 23.9105 43.1815 64 j 0.8785 18.3653 54.5427 -Arial_Black.ttf 12 1 23.9073 43.1879 65 ( -0.0903 17.4047 56.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 66 7 1.3618 33.5935 42.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 67 § 0.0754 34.2185 55.7500 -Arial_Black.ttf 12 1 23.9073 43.1879 68 $ -2.8252 35.2815 52.4362 -Arial_Black.ttf 12 1 23.9073 43.1879 69 € 0.1556 38.1914 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 70 / -0.1353 16.3759 44.3759 -Arial_Black.ttf 12 1 23.9105 43.1815 71 C 0.0381 39.9114 44.3629 -Arial_Black.ttf 12 1 23.9073 43.1879 72 * 0.2234 22.1565 20.6224 -Arial_Black.ttf 12 1 23.9073 43.1879 73 ” -0.2563 25.6241 23.2483 -Arial_Black.ttf 12 1 23.9073 43.1879 74 ? -0.0111 31.8138 43.1879 -Arial_Black.ttf 12 1 23.9073 43.1879 75 { -0.1301 21.4974 56.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 76 } -0.1571 21.4974 56.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 77 , 31.5630 11.6241 24.1862 -Arial_Black.ttf 12 1 23.9105 43.1815 78 I 0.9277 12.8185 42.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 79 ° 0.2690 14.1250 14.1250 -Arial_Black.ttf 12 1 23.9105 43.1815 80 K 1.3382 43.9679 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 81 H 1.2198 39.2421 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 82 q 11.7657 32.7882 42.9056 -Arial_Black.ttf 12 1 23.9073 43.1879 83 & 0.0236 46.8820 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 84 ’ 0.1780 11.6241 23.2483 -Arial_Black.ttf 12 1 23.9073 43.1879 85 [ 1.4462 18.3427 53.6241 -Arial_Black.ttf 12 1 23.9073 43.1879 86 - 23.2632 16.9047 9.2483 -Arial_Black.ttf 12 1 23.9105 43.1815 87 Y 1.2029 45.5444 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 88 Q -0.3111 44.1494 48.3317 -Arial_Black.ttf 12 1 23.9073 43.1879 89 " 1.1411 26.8121 15.1879 -Arial_Black.ttf 12 1 23.9073 43.1879 90 ! 1.2393 11.6241 42.0000 -Arial_Black.ttf 12 1 23.9105 43.1815 91 x 12.8638 38.7021 30.3629 -Arial_Black.ttf 12 1 23.9073 43.1879 92 ) -0.0778 17.4047 56.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 93 = 10.8110 30.9047 23.2483 -Arial_Black.ttf 12 1 23.9073 43.1879 94 + 6.5882 31.4388 31.4388 -Arial_Black.ttf 12 1 23.9105 43.1815 95 X 1.2548 45.1494 42.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 96 » 14.4447 31.1547 26.4082 -Arial_Black.ttf 12 1 23.9073 43.1879 97 ' 0.9826 11.6241 15.1879 -Arial_Black.ttf 12 1 23.9073 43.1879 98 ¢ 1.4749 34.2185 53.2203 -Arial_Black.ttf 12 1 23.9105 43.1815 99 Z 1.2819 37.3644 42.0000 -Arial_Black.ttf 12 1 23.9073 43.1879 100 > 4.9438 32.6267 34.9974 -Arial_Black.ttf 12 1 23.9073 43.1879 101 ® -0.1599 43.9720 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 102 © 0.0787 43.9720 44.3759 -Arial_Black.ttf 12 1 23.9073 43.1879 103 ] 0.9461 18.3427 53.6241 -Arial_Black.ttf 12 1 23.9105 43.1815 104 é -0.0295 34.2455 44.3629 -Arial_Black.ttf 12 1 23.9105 43.1815 105 z 12.6943 28.4867 30.3629 -Arial_Black.ttf 12 1 23.9073 43.1879 106 _ 47.3399 29.1879 2.7797 -Arial_Black.ttf 12 1 23.9073 43.1879 107 ¥ 1.3867 40.4082 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 1 t -0.2094 22.4548 43.1815 -Arial_Black.ttf 13 | 7.2718 53.3612 2 h -0.0394 31.8826 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 3 a 10.2242 35.4269 32.7258 -Arial_Black.ttf 13 | 7.2718 53.3612 4 n 10.4901 31.8826 31.5444 -Arial_Black.ttf 13 | 7.2718 53.3612 5 P 0.0810 34.7906 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 6 o 10.4624 34.2455 32.7258 -Arial_Black.ttf 13 | 7.2718 53.3612 7 e 10.2506 34.2455 32.7258 -Arial_Black.ttf 13 | 7.2718 53.3612 8 : 11.3494 11.6371 30.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 9 r 10.4009 23.9105 31.5444 -Arial_Black.ttf 13 | 7.2718 53.3612 10 l -0.0983 11.6371 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 11 i 0.0828 11.6371 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 12 1 -1.2212 23.9105 43.1815 -Arial_Black.ttf 13 | 7.2718 53.3612 13 | -0.1215 7.2718 53.3612 -Arial_Black.ttf 13 | 7.2718 53.3612 14 N -0.1186 39.2421 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 15 f -1.1778 23.6362 43.1815 -Arial_Black.ttf 13 | 7.2718 53.3612 16 g 10.4229 34.2455 44.0871 -Arial_Black.ttf 13 | 7.2718 53.3612 17 d -0.2077 32.7882 43.1815 -Arial_Black.ttf 13 | 7.2718 53.3612 18 W -0.0430 59.5444 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 19 s 10.4512 31.5444 32.7258 -Arial_Black.ttf 13 | 7.2718 53.3612 20 c 10.5299 34.2455 32.7258 -Arial_Black.ttf 13 | 7.2718 53.3612 21 u 11.7902 31.6067 31.5444 -Arial_Black.ttf 13 | 7.2718 53.3612 22 3 -1.0987 33.8834 44.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 23 ~ 13.9956 32.7258 14.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 24 # -0.9502 35.6338 44.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 25 O -1.1198 42.6921 44.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 26 ` -1.0240 14.6708 8.4532 -Arial_Black.ttf 13 | 7.2718 53.3612 27 @ -1.2585 43.1815 49.5147 -Arial_Black.ttf 13 | 7.2718 53.3612 28 F -0.0878 31.6067 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 29 S -1.1952 37.5485 44.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 30 p 10.5420 32.7882 42.9056 -Arial_Black.ttf 13 | 7.2815 53.3741 31 “ -1.4822 25.6241 23.2483 -Arial_Black.ttf 13 | 7.2815 53.3741 32 % -0.9520 52.3164 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 33 £ -1.3312 34.8724 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 34 . 30.5052 11.6241 11.6241 -Arial_Black.ttf 13 | 7.2815 53.3741 35 2 -1.1879 33.5935 43.1879 -Arial_Black.ttf 13 | 7.2815 53.3741 36 5 0.0552 33.8435 43.1879 -Arial_Black.ttf 13 | 7.2718 53.3612 37 m 10.5066 51.5206 31.5444 -Arial_Black.ttf 13 | 7.2718 53.3612 38 V 0.0680 45.1494 42.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 39 6 -1.2631 33.8435 44.3759 -Arial_Black.ttf 13 | 7.2718 53.3612 40 w 11.5493 54.8185 30.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 41 T 0.1186 38.4556 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 42 M -0.2028 45.8497 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 43 G -1.2070 42.5435 44.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 44 b 0.1920 32.7882 43.1815 -Arial_Black.ttf 13 | 7.2815 53.3741 45 9 -1.0396 33.8435 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 46 ; 11.7997 11.6241 42.9379 -Arial_Black.ttf 13 | 7.2718 53.3612 47 D 0.0345 38.3349 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 48 L 0.0533 32.0311 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 49 y 11.3933 35.7890 42.9056 -Arial_Black.ttf 13 | 7.2815 53.3741 50 ‘ -1.3524 11.6241 23.2483 -Arial_Black.ttf 13 | 7.2815 53.3741 51 \ -1.2951 16.3759 44.3759 -Arial_Black.ttf 13 | 7.2718 53.3612 52 R -0.0743 41.2135 42.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 53 < 3.6547 32.6267 34.9974 -Arial_Black.ttf 13 | 7.2815 53.3741 54 4 -1.1022 38.0612 43.1879 -Arial_Black.ttf 13 | 7.2815 53.3741 55 8 -1.1879 33.8435 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 56 0 -1.3621 33.8435 44.3759 -Arial_Black.ttf 13 | 7.2718 53.3612 57 A 0.0000 45.5444 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 58 E 0.3584 34.5147 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 59 B -0.0509 38.3349 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 60 v 11.6371 35.7874 30.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 61 k 0.1249 35.5476 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 62 J 0.0000 33.1847 43.1815 -Arial_Black.ttf 13 | 7.2718 53.3612 63 U 0.0850 39.2421 43.1815 -Arial_Black.ttf 13 | 7.2718 53.3612 64 j 0.0000 18.3653 54.5427 -Arial_Black.ttf 13 | 7.2815 53.3741 65 ( -1.1879 17.4047 56.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 66 7 0.2071 33.5935 42.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 67 § -0.7681 34.2185 55.7500 -Arial_Black.ttf 13 | 7.2815 53.3741 68 $ -4.0086 35.2815 52.4362 -Arial_Black.ttf 13 | 7.2815 53.3741 69 € -1.1917 38.1914 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 70 / -1.1560 16.3759 44.3759 -Arial_Black.ttf 13 | 7.2718 53.3612 71 C -1.2499 39.9114 44.3629 -Arial_Black.ttf 13 | 7.2815 53.3741 72 * -0.7731 22.1565 20.6224 -Arial_Black.ttf 13 | 7.2815 53.3741 73 ” -1.1813 25.6241 23.2483 -Arial_Black.ttf 13 | 7.2815 53.3741 74 ? -1.3103 31.8138 43.1879 -Arial_Black.ttf 13 | 7.2815 53.3741 75 { -1.2716 21.4974 56.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 76 } -1.0568 21.4974 56.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 77 , 30.1743 11.6241 24.1862 -Arial_Black.ttf 13 | 7.2718 53.3612 78 I 0.1186 12.8185 42.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 79 ° -1.2691 14.1250 14.1250 -Arial_Black.ttf 13 | 7.2718 53.3612 80 K -0.1531 43.9679 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 81 H 0.1266 39.2421 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 82 q 10.4211 32.7882 42.9056 -Arial_Black.ttf 13 | 7.2815 53.3741 83 & -1.2751 46.8820 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 84 ’ -1.2764 11.6241 23.2483 -Arial_Black.ttf 13 | 7.2815 53.3741 85 [ 0.2355 18.3427 53.6241 -Arial_Black.ttf 13 | 7.2815 53.3741 86 - 21.8213 16.9047 9.2483 -Arial_Black.ttf 13 | 7.2718 53.3612 87 Y 0.1494 45.5444 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 88 Q -1.1832 44.1494 48.3317 -Arial_Black.ttf 13 | 7.2815 53.3741 89 " -0.1683 26.8121 15.1879 -Arial_Black.ttf 13 | 7.2815 53.3741 90 ! 0.0027 11.6241 42.0000 -Arial_Black.ttf 13 | 7.2718 53.3612 91 x 11.4495 38.7021 30.3629 -Arial_Black.ttf 13 | 7.2815 53.3741 92 ) -1.3256 17.4047 56.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 93 = 9.7355 30.9047 23.2483 -Arial_Black.ttf 13 | 7.2815 53.3741 94 + 5.1921 31.4388 31.4388 -Arial_Black.ttf 13 | 7.2718 53.3612 95 X 0.0753 45.1494 42.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 96 » 13.3487 31.1547 26.4082 -Arial_Black.ttf 13 | 7.2815 53.3741 97 ' 0.1409 11.6241 15.1879 -Arial_Black.ttf 13 | 7.2815 53.3741 98 ¢ 0.6323 34.2185 53.2203 -Arial_Black.ttf 13 | 7.2718 53.3612 99 Z -0.0439 37.3644 42.0000 -Arial_Black.ttf 13 | 7.2815 53.3741 100 > 3.5620 32.6267 34.9974 -Arial_Black.ttf 13 | 7.2815 53.3741 101 ® -1.0332 43.9720 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 102 © -1.1879 43.9720 44.3759 -Arial_Black.ttf 13 | 7.2815 53.3741 103 ] 0.0357 18.3427 53.6241 -Arial_Black.ttf 13 | 7.2718 53.3612 104 é -1.1067 34.2455 44.3629 -Arial_Black.ttf 13 | 7.2718 53.3612 105 z 11.7520 28.4867 30.3629 -Arial_Black.ttf 13 | 7.2815 53.3741 106 _ 46.0927 29.1879 2.7797 -Arial_Black.ttf 13 | 7.2815 53.3741 107 ¥ -0.1900 40.4082 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 1 t -0.0232 22.4548 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 2 h 0.3955 31.8826 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 3 a 10.5363 35.4269 32.7258 -Arial_Black.ttf 14 N 39.2421 42.0000 4 n 9.9938 31.8826 31.5444 -Arial_Black.ttf 14 N 39.2421 42.0000 5 P -0.0057 34.7906 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 6 o 10.4489 34.2455 32.7258 -Arial_Black.ttf 14 N 39.2421 42.0000 7 e 10.3043 34.2455 32.7258 -Arial_Black.ttf 14 N 39.2421 42.0000 8 : 11.9262 11.6371 30.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 9 r 9.8457 23.9105 31.5444 -Arial_Black.ttf 14 N 39.2421 42.0000 10 l 0.0169 11.6371 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 11 i 0.0149 11.6371 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 12 1 -1.0956 23.9105 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 13 | -0.0823 7.2718 53.3612 -Arial_Black.ttf 14 N 39.2421 42.0000 14 N 0.0569 39.2421 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 15 f -1.0377 23.6362 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 16 g 10.1147 34.2455 44.0871 -Arial_Black.ttf 14 N 39.2421 42.0000 17 d 0.3334 32.7882 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 18 W -0.1590 59.5444 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 19 s 10.1727 31.5444 32.7258 -Arial_Black.ttf 14 N 39.2421 42.0000 20 c 10.4556 34.2455 32.7258 -Arial_Black.ttf 14 N 39.2421 42.0000 21 u 11.2844 31.6067 31.5444 -Arial_Black.ttf 14 N 39.2421 42.0000 22 3 -0.9858 33.8834 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 23 ~ 13.7526 32.7258 14.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 24 # -0.8418 35.6338 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 25 O -0.9609 42.6921 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 26 ` -1.2669 14.6708 8.4532 -Arial_Black.ttf 14 N 39.2421 42.0000 27 @ -1.0444 43.1815 49.5147 -Arial_Black.ttf 14 N 39.2421 42.0000 28 F 0.1320 31.6067 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 29 S -1.2794 37.5485 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 30 p 10.4101 32.7882 42.9056 -Arial_Black.ttf 14 N 39.2421 42.0000 31 “ -1.0158 25.6371 23.2742 -Arial_Black.ttf 14 N 39.2421 42.0000 32 % -1.4007 52.3055 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 33 £ -1.3188 34.8768 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 34 . 30.3345 11.6371 11.6371 -Arial_Black.ttf 14 N 39.2421 42.0000 35 2 -0.9242 33.6075 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 36 5 -0.1387 33.8834 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 37 m 10.5832 51.5206 31.5444 -Arial_Black.ttf 14 N 39.2421 42.0000 38 V 0.0559 45.1494 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 39 6 -1.1048 33.8834 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 40 w 12.0129 54.8185 30.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 41 T 0.2894 38.4556 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 42 M 0.0027 45.8497 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 43 G -1.2212 42.5435 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 44 b -0.2814 32.7882 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 45 9 -1.2756 33.8834 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 46 ; 11.8505 11.6371 42.9056 -Arial_Black.ttf 14 N 39.2421 42.0000 47 D 0.1610 38.3349 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 48 L -0.0073 32.0311 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 49 y 11.3987 35.7890 42.9056 -Arial_Black.ttf 14 N 39.2421 42.0000 50 ‘ -1.2579 11.6371 23.2742 -Arial_Black.ttf 14 N 39.2421 42.0000 51 \ -1.1519 16.3629 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 52 R 0.1531 41.2135 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 53 < 3.5789 32.6051 34.9975 -Arial_Black.ttf 14 N 39.2421 42.0000 54 4 -0.9670 38.0591 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 55 8 -1.2366 33.8834 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 56 0 -1.4979 33.8834 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 57 A 0.1218 45.5444 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 58 E 0.0125 34.5147 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 59 B -0.3665 38.3349 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 60 v 11.5399 35.7874 30.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 61 k -0.0264 35.5476 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 62 J -0.1293 33.1847 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 63 U -0.0760 39.2421 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 64 j -0.0864 18.3653 54.5427 -Arial_Black.ttf 14 N 39.2421 42.0000 65 ( -1.0727 17.4252 56.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 66 7 -0.1016 33.6075 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 67 § -1.1716 34.2455 55.7241 -Arial_Black.ttf 14 N 39.2421 42.0000 68 $ -4.1464 35.2718 52.4211 -Arial_Black.ttf 14 N 39.2421 42.0000 69 € -1.3610 38.1503 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 70 / -1.1443 16.3629 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 71 C -1.2589 39.9114 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 72 * -1.2548 22.1511 20.6009 -Arial_Black.ttf 14 N 39.2421 42.0000 73 ” -1.0615 25.6371 23.2742 -Arial_Black.ttf 14 N 39.2421 42.0000 74 ? -1.2562 31.8202 43.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 75 { -1.3021 21.5147 56.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 76 } -1.2682 21.5147 56.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 77 , 30.6908 11.6371 24.1798 -Arial_Black.ttf 14 N 39.2421 42.0000 78 I -0.2586 12.8185 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 79 ° -1.2588 14.1207 14.1207 -Arial_Black.ttf 14 N 39.2421 42.0000 80 K -0.0040 43.9679 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 81 H -0.2171 39.2421 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 82 q 10.7009 32.7882 42.9056 -Arial_Black.ttf 14 N 39.2421 42.0000 83 & -1.2159 46.8516 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 84 ’ -1.1564 11.6371 23.2742 -Arial_Black.ttf 14 N 39.2421 42.0000 85 [ -0.1286 18.3653 53.6371 -Arial_Black.ttf 14 N 39.2421 42.0000 86 - 21.9478 16.9080 9.2397 -Arial_Black.ttf 14 N 39.2421 42.0000 87 Y 0.1064 45.5444 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 88 Q -1.3081 44.1494 48.3317 -Arial_Black.ttf 14 N 39.2421 42.0000 89 " -0.1217 26.8185 15.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 90 ! -0.0218 11.6371 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 91 x 11.7283 38.7021 30.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 92 ) -1.1155 17.4252 56.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 93 = 9.6883 30.9080 23.2397 -Arial_Black.ttf 14 N 39.2421 42.0000 94 + 5.4300 31.4237 31.4237 -Arial_Black.ttf 14 N 39.2421 42.0000 95 X -0.3516 45.1494 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 96 » 13.5590 31.1494 26.3941 -Arial_Black.ttf 14 N 39.2421 42.0000 97 ' -0.2501 11.6371 15.1815 -Arial_Black.ttf 14 N 39.2421 42.0000 98 ¢ 0.5135 34.2455 53.1782 -Arial_Black.ttf 14 N 39.2421 42.0000 99 Z 0.0784 37.3644 42.0000 -Arial_Black.ttf 14 N 39.2421 42.0000 100 > 3.0480 32.6051 34.9975 -Arial_Black.ttf 14 N 39.2421 42.0000 101 ® -1.1550 43.9385 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 102 © -1.0502 43.9385 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 103 ] -0.1633 18.3653 53.6371 -Arial_Black.ttf 14 N 39.2421 42.0000 104 é -1.1382 34.2455 44.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 105 z 11.5919 28.4867 30.3629 -Arial_Black.ttf 14 N 39.2421 42.0000 106 _ 46.3347 29.1815 2.7873 -Arial_Black.ttf 14 N 39.2421 42.0000 107 ¥ -0.3669 40.3941 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 1 t 1.2396 22.4548 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 2 h 0.9711 31.8826 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 3 a 11.6244 35.4269 32.7258 -Arial_Black.ttf 15 f 23.6362 43.1815 4 n 11.3073 31.8826 31.5444 -Arial_Black.ttf 15 f 23.6362 43.1815 5 P 1.0240 34.7906 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 6 o 11.5341 34.2455 32.7258 -Arial_Black.ttf 15 f 23.6362 43.1815 7 e 11.6340 34.2455 32.7258 -Arial_Black.ttf 15 f 23.6362 43.1815 8 : 12.8209 11.6371 30.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 9 r 11.7316 23.9105 31.5444 -Arial_Black.ttf 15 f 23.6362 43.1815 10 l 1.1024 11.6371 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 11 i 1.1433 11.6371 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 12 1 -0.1266 23.9105 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 13 | 1.1024 7.2718 53.3612 -Arial_Black.ttf 15 f 23.6362 43.1815 14 N 0.9741 39.2421 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 15 f 0.0000 23.6362 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 16 g 11.4666 34.2455 44.0871 -Arial_Black.ttf 15 f 23.6362 43.1815 17 d 0.9420 32.7882 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 18 W 1.2173 59.5444 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 19 s 11.6716 31.5444 32.7258 -Arial_Black.ttf 15 f 23.6362 43.1815 20 c 11.8386 34.2455 32.7258 -Arial_Black.ttf 15 f 23.6362 43.1815 21 u 13.0024 31.6067 31.5444 -Arial_Black.ttf 15 f 23.6362 43.1815 22 3 0.1990 33.8834 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 23 ~ 14.8947 32.7258 14.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 24 # -0.0649 35.6338 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 25 O -0.1942 42.6921 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 26 ` -0.1567 14.6708 8.4532 -Arial_Black.ttf 15 f 23.6362 43.1815 27 @ 0.3320 43.1815 49.5147 -Arial_Black.ttf 15 f 23.6362 43.1815 28 F 1.1791 31.6067 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 29 S 0.1611 37.5485 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 30 p 11.5995 32.7882 42.9056 -Arial_Black.ttf 15 f 23.6362 43.1815 31 “ 0.0223 25.6371 23.2742 -Arial_Black.ttf 15 f 23.6362 43.1815 32 % -0.1249 52.3055 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 33 £ 0.0260 34.8768 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 34 . 31.4955 11.6371 11.6371 -Arial_Black.ttf 15 f 23.6362 43.1815 35 2 -0.0841 33.6075 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 36 5 0.9788 33.8834 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 37 m 11.4716 51.5206 31.5444 -Arial_Black.ttf 15 f 23.6362 43.1815 38 V 1.0046 45.1494 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 39 6 0.2284 33.8834 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 40 w 12.8222 54.8185 30.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 41 T 1.0025 38.4556 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 42 M 0.9970 45.8497 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 43 G -0.0308 42.5435 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 44 b 1.2294 32.7882 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 45 9 0.1786 33.8834 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 46 ; 12.8266 11.6371 42.9056 -Arial_Black.ttf 15 f 23.6362 43.1815 47 D 0.9813 38.3349 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 48 L 1.2937 32.0311 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 49 y 12.4986 35.7890 42.9056 -Arial_Black.ttf 15 f 23.6362 43.1815 50 ‘ -0.2435 11.6371 23.2742 -Arial_Black.ttf 15 f 23.6362 43.1815 51 \ 0.0832 16.3629 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 52 R 1.0876 41.2135 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 53 < 4.6360 32.6051 34.9975 -Arial_Black.ttf 15 f 23.6362 43.1815 54 4 0.0828 38.0591 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 55 8 -0.0207 33.8834 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 56 0 -0.0305 33.8834 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 57 A 1.0177 45.5444 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 58 E 1.2321 34.5147 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 59 B 1.3329 38.3349 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 60 v 12.9587 35.7874 30.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 61 k 1.1483 35.5476 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 62 J 1.2145 33.1847 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 63 U 1.2504 39.2421 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 64 j 1.1909 18.3653 54.5427 -Arial_Black.ttf 15 f 23.6362 43.1815 65 ( -0.0656 17.4252 56.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 66 7 1.2164 33.6075 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 67 § -0.1396 34.2455 55.7241 -Arial_Black.ttf 15 f 23.6362 43.1815 68 $ -2.9318 35.2718 52.4211 -Arial_Black.ttf 15 f 23.6362 43.1815 69 € -0.2086 38.1503 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 70 / -0.0094 16.3629 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 71 C -0.0345 39.9114 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 72 * -0.0423 22.1511 20.6009 -Arial_Black.ttf 15 f 23.6362 43.1815 73 ” -0.0000 25.6371 23.2742 -Arial_Black.ttf 15 f 23.6362 43.1815 74 ? -0.0110 31.8202 43.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 75 { -0.1048 21.5147 56.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 76 } 0.0412 21.5147 56.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 77 , 31.3745 11.6371 24.1798 -Arial_Black.ttf 15 f 23.6362 43.1815 78 I 1.1872 12.8185 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 79 ° -0.0784 14.1207 14.1207 -Arial_Black.ttf 15 f 23.6362 43.1815 80 K 0.9707 43.9679 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 81 H 1.0524 39.2421 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 82 q 11.5172 32.7882 42.9056 -Arial_Black.ttf 15 f 23.6362 43.1815 83 & -0.2643 46.8516 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 84 ’ -0.0072 11.6371 23.2742 -Arial_Black.ttf 15 f 23.6362 43.1815 85 [ 1.1202 18.3653 53.6371 -Arial_Black.ttf 15 f 23.6362 43.1815 86 - 23.2363 16.9080 9.2397 -Arial_Black.ttf 15 f 23.6362 43.1815 87 Y 1.0874 45.5444 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 88 Q 0.1131 44.1494 48.3317 -Arial_Black.ttf 15 f 23.6362 43.1815 89 " 1.1801 26.8185 15.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 90 ! 1.3510 11.6371 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 91 x 12.8884 38.7021 30.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 92 ) -0.2452 17.4252 56.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 93 = 10.6555 30.9080 23.2397 -Arial_Black.ttf 15 f 23.6362 43.1815 94 + 6.3244 31.4237 31.4237 -Arial_Black.ttf 15 f 23.6362 43.1815 95 X 1.3145 45.1494 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 96 » 14.7442 31.1494 26.3941 -Arial_Black.ttf 15 f 23.6362 43.1815 97 ' 1.1238 11.6371 15.1815 -Arial_Black.ttf 15 f 23.6362 43.1815 98 ¢ 1.7007 34.2455 53.1782 -Arial_Black.ttf 15 f 23.6362 43.1815 99 Z 1.1895 37.3644 42.0000 -Arial_Black.ttf 15 f 23.6362 43.1815 100 > 4.7448 32.6051 34.9975 -Arial_Black.ttf 15 f 23.6362 43.1815 101 ® 0.0791 43.9385 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 102 © 0.0134 43.9385 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 103 ] 1.1000 18.3653 53.6371 -Arial_Black.ttf 15 f 23.6362 43.1815 104 é 0.0367 34.2455 44.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 105 z 12.9782 28.4867 30.3629 -Arial_Black.ttf 15 f 23.6362 43.1815 106 _ 47.3710 29.1815 2.7873 -Arial_Black.ttf 15 f 23.6362 43.1815 107 ¥ 1.2638 40.3941 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 1 t -10.6495 22.4548 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 2 h -10.5541 31.8826 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 3 a 0.0251 35.4269 32.7258 -Arial_Black.ttf 16 g 34.2455 44.0871 4 n 0.2452 31.8826 31.5444 -Arial_Black.ttf 16 g 34.2455 44.0871 5 P -10.5303 34.7906 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 6 o -0.0362 34.2455 32.7258 -Arial_Black.ttf 16 g 34.2455 44.0871 7 e 0.2557 34.2455 32.7258 -Arial_Black.ttf 16 g 34.2455 44.0871 8 : 0.9985 11.6371 30.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 9 r -0.0797 23.9105 31.5444 -Arial_Black.ttf 16 g 34.2455 44.0871 10 l -10.5989 11.6371 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 11 i -10.4891 11.6371 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 12 1 -11.9731 23.9105 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 13 | -10.7233 7.2718 53.3612 -Arial_Black.ttf 16 g 34.2455 44.0871 14 N -10.2619 39.2421 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 15 f -11.4857 23.6362 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 16 g -0.2291 34.2455 44.0871 -Arial_Black.ttf 16 g 34.2455 44.0871 17 d -10.5013 32.7882 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 18 W -10.4552 59.5444 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 19 s 0.0429 31.5444 32.7258 -Arial_Black.ttf 16 g 34.2455 44.0871 20 c -0.0027 34.2455 32.7258 -Arial_Black.ttf 16 g 34.2455 44.0871 21 u 1.1537 31.6067 31.5444 -Arial_Black.ttf 16 g 34.2455 44.0871 22 3 -11.7302 33.8834 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 23 ~ 3.4529 32.7258 14.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 24 # -12.0087 35.6338 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 25 O -11.4823 42.6921 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 26 ` -11.5072 14.6708 8.4532 -Arial_Black.ttf 16 g 34.2455 44.0871 27 @ -11.7208 43.1815 49.5147 -Arial_Black.ttf 16 g 34.2455 44.0871 28 F -10.2296 31.6067 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 29 S -11.6911 37.5485 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 30 p 0.1973 32.7882 42.9056 -Arial_Black.ttf 16 g 34.2455 44.0871 31 “ -11.4884 25.6371 23.2742 -Arial_Black.ttf 16 g 34.2455 44.0871 32 % -11.5905 52.3055 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 33 £ -11.7249 34.8768 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 34 . 20.1146 11.6371 11.6371 -Arial_Black.ttf 16 g 34.2455 44.0871 35 2 -11.2969 33.6075 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 36 5 -10.2185 33.8834 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 37 m 0.0851 51.5206 31.5444 -Arial_Black.ttf 16 g 34.2455 44.0871 38 V -10.4051 45.1494 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 39 6 -11.7118 33.8834 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 40 w 1.3577 54.8185 30.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 41 T -10.4117 38.4556 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 42 M -10.4161 45.8497 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 43 G -11.5091 42.5435 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 44 b -10.4163 32.7882 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 45 9 -11.5752 33.8834 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 46 ; 1.0664 11.6371 42.9056 -Arial_Black.ttf 16 g 34.2455 44.0871 47 D -10.5974 38.3349 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 48 L -10.1628 32.0311 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 49 y 1.3014 35.7890 42.9056 -Arial_Black.ttf 16 g 34.2455 44.0871 50 ‘ -11.4428 11.6371 23.2742 -Arial_Black.ttf 16 g 34.2455 44.0871 51 \ -11.5753 16.3629 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 52 R -10.4668 41.2135 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 53 < -6.7927 32.6051 34.9975 -Arial_Black.ttf 16 g 34.2455 44.0871 54 4 -11.6622 38.0591 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 55 8 -11.6747 33.8834 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 56 0 -11.4375 33.8834 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 57 A -10.5515 45.5444 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 58 E -10.2721 34.5147 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 59 B -10.6545 38.3349 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 60 v 0.8414 35.7874 30.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 61 k -10.5528 35.5476 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 62 J -10.4084 33.1847 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 63 U -10.6862 39.2421 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 64 j -10.5453 18.3653 54.5427 -Arial_Black.ttf 16 g 34.2455 44.0871 65 ( -11.8823 17.4252 56.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 66 7 -10.6288 33.6075 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 67 § -11.9952 34.2455 55.7241 -Arial_Black.ttf 16 g 34.2455 44.0871 68 $ -14.4666 35.2718 52.4211 -Arial_Black.ttf 16 g 34.2455 44.0871 69 € -11.6984 38.1503 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 70 / -11.4093 16.3629 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 71 C -11.4783 39.9114 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 72 * -11.7852 22.1511 20.6009 -Arial_Black.ttf 16 g 34.2455 44.0871 73 ” -11.4936 25.6371 23.2742 -Arial_Black.ttf 16 g 34.2455 44.0871 74 ? -11.5196 31.8202 43.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 75 { -11.3041 21.5147 56.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 76 } -11.6313 21.5147 56.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 77 , 19.7776 11.6371 24.1798 -Arial_Black.ttf 16 g 34.2455 44.0871 78 I -10.4515 12.8185 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 79 ° -11.6494 14.1207 14.1207 -Arial_Black.ttf 16 g 34.2455 44.0871 80 K -10.2215 43.9679 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 81 H -10.3219 39.2421 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 82 q -0.1200 32.7882 42.9056 -Arial_Black.ttf 16 g 34.2455 44.0871 83 & -11.8715 46.8516 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 84 ’ -11.5198 11.6371 23.2742 -Arial_Black.ttf 16 g 34.2455 44.0871 85 [ -10.4051 18.3653 53.6371 -Arial_Black.ttf 16 g 34.2455 44.0871 86 - 11.8498 16.9080 9.2397 -Arial_Black.ttf 16 g 34.2455 44.0871 87 Y -10.3163 45.5444 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 88 Q -11.6716 44.1494 48.3317 -Arial_Black.ttf 16 g 34.2455 44.0871 89 " -10.3191 26.8185 15.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 90 ! -10.3293 11.6371 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 91 x 1.3341 38.7021 30.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 92 ) -11.6451 17.4252 56.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 93 = -0.8704 30.9080 23.2397 -Arial_Black.ttf 16 g 34.2455 44.0871 94 + -5.4272 31.4237 31.4237 -Arial_Black.ttf 16 g 34.2455 44.0871 95 X -10.2127 45.1494 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 96 » 2.9101 31.1494 26.3941 -Arial_Black.ttf 16 g 34.2455 44.0871 97 ' -10.3343 11.6371 15.1815 -Arial_Black.ttf 16 g 34.2455 44.0871 98 ¢ -10.4985 34.2455 53.1782 -Arial_Black.ttf 16 g 34.2455 44.0871 99 Z -10.5053 37.3644 42.0000 -Arial_Black.ttf 16 g 34.2455 44.0871 100 > -7.0017 32.6051 34.9975 -Arial_Black.ttf 16 g 34.2455 44.0871 101 ® -11.5910 43.9385 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 102 © -11.3984 43.9385 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 103 ] -10.3867 18.3653 53.6371 -Arial_Black.ttf 16 g 34.2455 44.0871 104 é -11.6337 34.2455 44.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 105 z 1.1022 28.4867 30.3629 -Arial_Black.ttf 16 g 34.2455 44.0871 106 _ 35.8047 29.1815 2.7873 -Arial_Black.ttf 16 g 34.2455 44.0871 107 ¥ -10.5201 40.3941 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 1 t -0.0614 22.4548 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 2 h 0.3070 31.8826 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 3 a 10.6703 35.4269 32.7258 -Arial_Black.ttf 17 d 32.7882 43.1815 4 n 10.6643 31.8826 31.5444 -Arial_Black.ttf 17 d 32.7882 43.1815 5 P 0.0107 34.7906 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 6 o 10.5340 34.2455 32.7258 -Arial_Black.ttf 17 d 32.7882 43.1815 7 e 10.5238 34.2455 32.7258 -Arial_Black.ttf 17 d 32.7882 43.1815 8 : 11.9942 11.6371 30.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 9 r 10.3783 23.9105 31.5444 -Arial_Black.ttf 17 d 32.7882 43.1815 10 l -0.1324 11.6371 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 11 i -0.3213 11.6371 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 12 1 -0.8056 23.9105 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 13 | 0.1638 7.2718 53.3612 -Arial_Black.ttf 17 d 32.7882 43.1815 14 N 0.1628 39.2421 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 15 f -1.0310 23.6362 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 16 g 10.7698 34.2455 44.0871 -Arial_Black.ttf 17 d 32.7882 43.1815 17 d -0.2425 32.7882 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 18 W 0.0439 59.5444 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 19 s 10.5076 31.5444 32.7258 -Arial_Black.ttf 17 d 32.7882 43.1815 20 c 10.1853 34.2455 32.7258 -Arial_Black.ttf 17 d 32.7882 43.1815 21 u 11.4093 31.6067 31.5444 -Arial_Black.ttf 17 d 32.7882 43.1815 22 3 -1.0941 33.8834 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 23 ~ 13.9785 32.7258 14.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 24 # -1.2749 35.6338 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 25 O -1.1439 42.6921 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 26 ` -1.1585 14.6708 8.4532 -Arial_Black.ttf 17 d 32.7882 43.1815 27 @ -1.1815 43.1815 49.5147 -Arial_Black.ttf 17 d 32.7882 43.1815 28 F -0.2090 31.6067 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 29 S -1.2365 37.5485 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 30 p 10.4194 32.7882 42.9056 -Arial_Black.ttf 17 d 32.7882 43.1815 31 “ -1.1004 25.6371 23.2742 -Arial_Black.ttf 17 d 32.7882 43.1815 32 % -1.1174 52.3055 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 33 £ -0.9558 34.8768 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 34 . 30.5712 11.6371 11.6371 -Arial_Black.ttf 17 d 32.7882 43.1815 35 2 -1.0582 33.6075 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 36 5 0.0616 33.8834 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 37 m 10.3213 51.5206 31.5444 -Arial_Black.ttf 17 d 32.7882 43.1815 38 V 0.0260 45.1494 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 39 6 -1.3783 33.8834 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 40 w 11.8022 54.8185 30.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 41 T -0.1114 38.4556 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 42 M 0.3263 45.8497 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 43 G -1.0976 42.5435 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 44 b -0.1921 32.7882 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 45 9 -1.0517 33.8834 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 46 ; 11.8295 11.6371 42.9056 -Arial_Black.ttf 17 d 32.7882 43.1815 47 D -0.1536 38.3349 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 48 L -0.4243 32.0311 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 49 y 11.7495 35.7890 42.9056 -Arial_Black.ttf 17 d 32.7882 43.1815 50 ‘ -1.4105 11.6371 23.2742 -Arial_Black.ttf 17 d 32.7882 43.1815 51 \ -1.3408 16.3629 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 52 R 0.1095 41.2135 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 53 < 3.7758 32.6051 34.9975 -Arial_Black.ttf 17 d 32.7882 43.1815 54 4 -1.0325 38.0591 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 55 8 -1.0686 33.8834 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 56 0 -0.5961 33.8834 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 57 A 0.1401 45.5444 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 58 E -0.0210 34.5147 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 59 B -0.1692 38.3349 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 60 v 11.5087 35.7874 30.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 61 k -0.3276 35.5476 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 62 J -0.3564 33.1847 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 63 U 0.0738 39.2421 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 64 j -0.0465 18.3653 54.5427 -Arial_Black.ttf 17 d 32.7882 43.1815 65 ( -1.3117 17.4252 56.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 66 7 0.2404 33.6075 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 67 § -1.0724 34.2455 55.7241 -Arial_Black.ttf 17 d 32.7882 43.1815 68 $ -3.9554 35.2718 52.4211 -Arial_Black.ttf 17 d 32.7882 43.1815 69 € -1.7180 38.1503 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 70 / -1.1022 16.3629 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 71 C -1.0334 39.9114 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 72 * -1.0589 22.1511 20.6009 -Arial_Black.ttf 17 d 32.7882 43.1815 73 ” -1.1269 25.6371 23.2742 -Arial_Black.ttf 17 d 32.7882 43.1815 74 ? -1.1801 31.8202 43.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 75 { -0.9694 21.5147 56.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 76 } -1.1966 21.5147 56.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 77 , 30.2605 11.6371 24.1798 -Arial_Black.ttf 17 d 32.7882 43.1815 78 I 0.1061 12.8185 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 79 ° -1.4706 14.1207 14.1207 -Arial_Black.ttf 17 d 32.7882 43.1815 80 K 0.1682 43.9679 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 81 H 0.2409 39.2421 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 82 q 10.6249 32.7882 42.9056 -Arial_Black.ttf 17 d 32.7882 43.1815 83 & -1.3949 46.8516 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 84 ’ -1.2222 11.6371 23.2742 -Arial_Black.ttf 17 d 32.7882 43.1815 85 [ 0.0389 18.3653 53.6371 -Arial_Black.ttf 17 d 32.7882 43.1815 86 - 22.1528 16.9080 9.2397 -Arial_Black.ttf 17 d 32.7882 43.1815 87 Y 0.0060 45.5444 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 88 Q -1.1881 44.1494 48.3317 -Arial_Black.ttf 17 d 32.7882 43.1815 89 " -0.2675 26.8185 15.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 90 ! 0.1236 11.6371 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 91 x 11.6482 38.7021 30.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 92 ) -0.9808 17.4252 56.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 93 = 9.4703 30.9080 23.2397 -Arial_Black.ttf 17 d 32.7882 43.1815 94 + 5.2082 31.4237 31.4237 -Arial_Black.ttf 17 d 32.7882 43.1815 95 X 0.0464 45.1494 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 96 » 13.4037 31.1494 26.3941 -Arial_Black.ttf 17 d 32.7882 43.1815 97 ' 0.3218 11.6371 15.1815 -Arial_Black.ttf 17 d 32.7882 43.1815 98 ¢ 0.4499 34.2455 53.1782 -Arial_Black.ttf 17 d 32.7882 43.1815 99 Z -0.0229 37.3644 42.0000 -Arial_Black.ttf 17 d 32.7882 43.1815 100 > 3.8866 32.6051 34.9975 -Arial_Black.ttf 17 d 32.7882 43.1815 101 ® -1.0150 43.9385 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 102 © -1.2522 43.9385 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 103 ] 0.1138 18.3653 53.6371 -Arial_Black.ttf 17 d 32.7882 43.1815 104 é -1.1389 34.2455 44.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 105 z 12.0072 28.4867 30.3629 -Arial_Black.ttf 17 d 32.7882 43.1815 106 _ 46.0519 29.1815 2.7873 -Arial_Black.ttf 17 d 32.7882 43.1815 107 ¥ -0.1749 40.3941 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 1 t -0.0114 22.4548 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 2 h 0.1974 31.8826 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 3 a 10.4421 35.4269 32.7258 -Arial_Black.ttf 18 W 59.5444 42.0000 4 n 10.2816 31.8826 31.5444 -Arial_Black.ttf 18 W 59.5444 42.0000 5 P 0.0053 34.7906 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 6 o 10.7426 34.2455 32.7258 -Arial_Black.ttf 18 W 59.5444 42.0000 7 e 10.6951 34.2455 32.7258 -Arial_Black.ttf 18 W 59.5444 42.0000 8 : 11.8801 11.6371 30.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 9 r 10.6422 23.9105 31.5444 -Arial_Black.ttf 18 W 59.5444 42.0000 10 l 0.0054 11.6371 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 11 i -0.2149 11.6371 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 12 1 -0.8037 23.9105 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 13 | 0.3885 7.2718 53.3612 -Arial_Black.ttf 18 W 59.5444 42.0000 14 N -0.2055 39.2421 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 15 f -0.6047 23.6362 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 16 g 10.1882 34.2455 44.0871 -Arial_Black.ttf 18 W 59.5444 42.0000 17 d -0.3530 32.7882 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 18 W 0.1538 59.5444 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 19 s 10.4803 31.5444 32.7258 -Arial_Black.ttf 18 W 59.5444 42.0000 20 c 10.4602 34.2455 32.7258 -Arial_Black.ttf 18 W 59.5444 42.0000 21 u 11.6791 31.6067 31.5444 -Arial_Black.ttf 18 W 59.5444 42.0000 22 3 -1.2441 33.8834 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 23 ~ 14.2324 32.7258 14.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 24 # -1.4057 35.6338 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 25 O -0.8701 42.6921 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 26 ` -1.2780 14.6708 8.4532 -Arial_Black.ttf 18 W 59.5444 42.0000 27 @ -1.0645 43.1815 49.5147 -Arial_Black.ttf 18 W 59.5444 42.0000 28 F 0.1371 31.6067 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 29 S -0.9062 37.5485 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 30 p 10.4583 32.7882 42.9056 -Arial_Black.ttf 18 W 59.5444 42.0000 31 “ -1.4970 25.6371 23.2742 -Arial_Black.ttf 18 W 59.5444 42.0000 32 % -1.2061 52.3055 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 33 £ -1.2866 34.8768 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 34 . 30.6236 11.6371 11.6371 -Arial_Black.ttf 18 W 59.5444 42.0000 35 2 -1.6119 33.6075 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 36 5 -0.1312 33.8834 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 37 m 10.4727 51.5206 31.5444 -Arial_Black.ttf 18 W 59.5444 42.0000 38 V -0.1956 45.1494 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 39 6 -1.1560 33.8834 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 40 w 11.7242 54.8185 30.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 41 T -0.3320 38.4556 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 42 M 0.0245 45.8497 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 43 G -1.1551 42.5435 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 44 b 0.2693 32.7882 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 45 9 -0.8555 33.8834 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 46 ; 11.7730 11.6371 42.9056 -Arial_Black.ttf 18 W 59.5444 42.0000 47 D 0.3299 38.3349 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 48 L 0.2368 32.0311 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 49 y 11.8749 35.7890 42.9056 -Arial_Black.ttf 18 W 59.5444 42.0000 50 ‘ -0.6798 11.6371 23.2742 -Arial_Black.ttf 18 W 59.5444 42.0000 51 \ -1.6554 16.3629 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 52 R 0.0957 41.2135 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 53 < 3.7928 32.6051 34.9975 -Arial_Black.ttf 18 W 59.5444 42.0000 54 4 -1.1800 38.0591 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 55 8 -0.9805 33.8834 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 56 0 -0.9849 33.8834 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 57 A 0.1679 45.5444 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 58 E 0.0469 34.5147 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 59 B 0.0410 38.3349 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 60 v 11.5686 35.7874 30.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 61 k 0.3228 35.5476 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 62 J 0.4230 33.1847 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 63 U 0.1701 39.2421 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 64 j 0.0465 18.3653 54.5427 -Arial_Black.ttf 18 W 59.5444 42.0000 65 ( -1.5415 17.4252 56.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 66 7 -0.1129 33.6075 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 67 § -1.1327 34.2455 55.7241 -Arial_Black.ttf 18 W 59.5444 42.0000 68 $ -3.9595 35.2718 52.4211 -Arial_Black.ttf 18 W 59.5444 42.0000 69 € -1.1131 38.1503 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 70 / -1.2767 16.3629 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 71 C -1.5837 39.9114 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 72 * -1.7971 22.1511 20.6009 -Arial_Black.ttf 18 W 59.5444 42.0000 73 ” -1.4178 25.6371 23.2742 -Arial_Black.ttf 18 W 59.5444 42.0000 74 ? -1.0296 31.8202 43.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 75 { -1.1407 21.5147 56.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 76 } -1.3376 21.5147 56.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 77 , 30.7787 11.6371 24.1798 -Arial_Black.ttf 18 W 59.5444 42.0000 78 I -0.0044 12.8185 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 79 ° -0.8906 14.1207 14.1207 -Arial_Black.ttf 18 W 59.5444 42.0000 80 K -0.0829 43.9679 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 81 H 0.0117 39.2421 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 82 q 10.2958 32.7882 42.9056 -Arial_Black.ttf 18 W 59.5444 42.0000 83 & -0.8687 46.8516 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 84 ’ -0.9769 11.6371 23.2742 -Arial_Black.ttf 18 W 59.5444 42.0000 85 [ -0.0461 18.3653 53.6371 -Arial_Black.ttf 18 W 59.5444 42.0000 86 - 22.2991 16.9080 9.2397 -Arial_Black.ttf 18 W 59.5444 42.0000 87 Y 0.0805 45.5444 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 88 Q -0.9918 44.1494 48.3317 -Arial_Black.ttf 18 W 59.5444 42.0000 89 " -0.0022 26.8185 15.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 90 ! 0.2024 11.6371 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 91 x 11.4696 38.7021 30.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 92 ) -1.1295 17.4252 56.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 93 = 9.2417 30.9080 23.2397 -Arial_Black.ttf 18 W 59.5444 42.0000 94 + 5.5731 31.4237 31.4237 -Arial_Black.ttf 18 W 59.5444 42.0000 95 X 0.3120 45.1494 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 96 » 13.5260 31.1494 26.3941 -Arial_Black.ttf 18 W 59.5444 42.0000 97 ' -0.0251 11.6371 15.1815 -Arial_Black.ttf 18 W 59.5444 42.0000 98 ¢ 0.4491 34.2455 53.1782 -Arial_Black.ttf 18 W 59.5444 42.0000 99 Z 0.4883 37.3644 42.0000 -Arial_Black.ttf 18 W 59.5444 42.0000 100 > 3.6115 32.6051 34.9975 -Arial_Black.ttf 18 W 59.5444 42.0000 101 ® -0.9993 43.9385 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 102 © -1.1157 43.9385 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 103 ] -0.3807 18.3653 53.6371 -Arial_Black.ttf 18 W 59.5444 42.0000 104 é -1.0619 34.2455 44.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 105 z 11.3980 28.4867 30.3629 -Arial_Black.ttf 18 W 59.5444 42.0000 106 _ 46.1539 29.1815 2.7873 -Arial_Black.ttf 18 W 59.5444 42.0000 107 ¥ -0.1580 40.3941 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 1 t -10.3049 22.4548 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 2 h -10.5849 31.8826 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 3 a 0.1431 35.4269 32.7258 -Arial_Black.ttf 19 s 31.5444 32.7258 4 n 0.0063 31.8826 31.5444 -Arial_Black.ttf 19 s 31.5444 32.7258 5 P -10.4225 34.7906 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 6 o 0.3625 34.2455 32.7258 -Arial_Black.ttf 19 s 31.5444 32.7258 7 e -0.0784 34.2455 32.7258 -Arial_Black.ttf 19 s 31.5444 32.7258 8 : 1.2159 11.6371 30.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 9 r -0.1232 23.9105 31.5444 -Arial_Black.ttf 19 s 31.5444 32.7258 10 l -10.4202 11.6371 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 11 i -10.4663 11.6371 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 12 1 -11.7888 23.9105 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 13 | -10.7009 7.2718 53.3612 -Arial_Black.ttf 19 s 31.5444 32.7258 14 N -10.2571 39.2421 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 15 f -11.4331 23.6362 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 16 g 0.1199 34.2455 44.0871 -Arial_Black.ttf 19 s 31.5444 32.7258 17 d -10.3809 32.7882 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 18 W -10.4694 59.5444 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 19 s 0.0788 31.5444 32.7258 -Arial_Black.ttf 19 s 31.5444 32.7258 20 c 0.1016 34.2455 32.7258 -Arial_Black.ttf 19 s 31.5444 32.7258 21 u 1.0974 31.6067 31.5444 -Arial_Black.ttf 19 s 31.5444 32.7258 22 3 -11.9120 33.8834 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 23 ~ 3.3574 32.7258 14.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 24 # -11.7280 35.6338 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 25 O -11.9101 42.6921 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 26 ` -11.8040 14.6708 8.4532 -Arial_Black.ttf 19 s 31.5444 32.7258 27 @ -11.5462 43.1815 49.5147 -Arial_Black.ttf 19 s 31.5444 32.7258 28 F -10.5330 31.6067 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 29 S -11.7932 37.5485 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 30 p -0.0784 32.7882 42.9056 -Arial_Black.ttf 19 s 31.5444 32.7258 31 “ -11.7739 25.6371 23.2742 -Arial_Black.ttf 19 s 31.5444 32.7258 32 % -11.7871 52.3055 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 33 £ -12.2635 34.8768 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 34 . 19.9927 11.6371 11.6371 -Arial_Black.ttf 19 s 31.5444 32.7258 35 2 -12.0134 33.6075 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 36 5 -10.3043 33.8834 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 37 m 0.0164 51.5206 31.5444 -Arial_Black.ttf 19 s 31.5444 32.7258 38 V -10.3903 45.1494 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 39 6 -11.8491 33.8834 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 40 w 1.2970 54.8185 30.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 41 T -10.0905 38.4556 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 42 M -10.2968 45.8497 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 43 G -11.5028 42.5435 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 44 b -10.2038 32.7882 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 45 9 -11.6277 33.8834 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 46 ; 1.3411 11.6371 42.9056 -Arial_Black.ttf 19 s 31.5444 32.7258 47 D -10.1178 38.3349 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 48 L -10.2530 32.0311 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 49 y 1.0919 35.7890 42.9056 -Arial_Black.ttf 19 s 31.5444 32.7258 50 ‘ -11.7336 11.6371 23.2742 -Arial_Black.ttf 19 s 31.5444 32.7258 51 \ -11.5260 16.3629 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 52 R -10.6793 41.2135 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 53 < -7.1306 32.6051 34.9975 -Arial_Black.ttf 19 s 31.5444 32.7258 54 4 -11.4746 38.0591 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 55 8 -11.6810 33.8834 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 56 0 -11.3385 33.8834 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 57 A -10.2584 45.5444 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 58 E -10.6127 34.5147 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 59 B -10.4901 38.3349 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 60 v 1.2079 35.7874 30.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 61 k -10.4204 35.5476 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 62 J -10.3760 33.1847 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 63 U -10.7385 39.2421 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 64 j -10.5231 18.3653 54.5427 -Arial_Black.ttf 19 s 31.5444 32.7258 65 ( -11.6096 17.4252 56.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 66 7 -10.3488 33.6075 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 67 § -11.4625 34.2455 55.7241 -Arial_Black.ttf 19 s 31.5444 32.7258 68 $ -14.1953 35.2718 52.4211 -Arial_Black.ttf 19 s 31.5444 32.7258 69 € -11.5061 38.1503 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 70 / -11.6773 16.3629 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 71 C -11.8040 39.9114 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 72 * -11.9333 22.1511 20.6009 -Arial_Black.ttf 19 s 31.5444 32.7258 73 ” -11.6304 25.6371 23.2742 -Arial_Black.ttf 19 s 31.5444 32.7258 74 ? -11.5551 31.8202 43.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 75 { -11.6967 21.5147 56.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 76 } -11.8642 21.5147 56.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 77 , 19.7608 11.6371 24.1798 -Arial_Black.ttf 19 s 31.5444 32.7258 78 I -10.1335 12.8185 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 79 ° -11.7256 14.1207 14.1207 -Arial_Black.ttf 19 s 31.5444 32.7258 80 K -10.5799 43.9679 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 81 H -10.3532 39.2421 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 82 q 0.2104 32.7882 42.9056 -Arial_Black.ttf 19 s 31.5444 32.7258 83 & -11.8063 46.8516 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 84 ’ -11.5213 11.6371 23.2742 -Arial_Black.ttf 19 s 31.5444 32.7258 85 [ -10.5648 18.3653 53.6371 -Arial_Black.ttf 19 s 31.5444 32.7258 86 - 11.4188 16.9080 9.2397 -Arial_Black.ttf 19 s 31.5444 32.7258 87 Y -10.5635 45.5444 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 88 Q -12.0699 44.1494 48.3317 -Arial_Black.ttf 19 s 31.5444 32.7258 89 " -10.6469 26.8185 15.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 90 ! -10.5183 11.6371 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 91 x 1.1979 38.7021 30.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 92 ) -11.5028 17.4252 56.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 93 = -1.0860 30.9080 23.2397 -Arial_Black.ttf 19 s 31.5444 32.7258 94 + -5.5605 31.4237 31.4237 -Arial_Black.ttf 19 s 31.5444 32.7258 95 X -10.0758 45.1494 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 96 » 3.2311 31.1494 26.3941 -Arial_Black.ttf 19 s 31.5444 32.7258 97 ' -10.4359 11.6371 15.1815 -Arial_Black.ttf 19 s 31.5444 32.7258 98 ¢ -9.9087 34.2455 53.1782 -Arial_Black.ttf 19 s 31.5444 32.7258 99 Z -10.5089 37.3644 42.0000 -Arial_Black.ttf 19 s 31.5444 32.7258 100 > -6.8087 32.6051 34.9975 -Arial_Black.ttf 19 s 31.5444 32.7258 101 ® -11.5694 43.9385 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 102 © -11.3908 43.9385 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 103 ] -10.4506 18.3653 53.6371 -Arial_Black.ttf 19 s 31.5444 32.7258 104 é -11.5922 34.2455 44.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 105 z 1.0384 28.4867 30.3629 -Arial_Black.ttf 19 s 31.5444 32.7258 106 _ 35.5058 29.1815 2.7873 -Arial_Black.ttf 19 s 31.5444 32.7258 107 ¥ -10.5340 40.3941 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 1 t -10.3742 22.4548 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 2 h -10.4914 31.8826 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 3 a -0.0766 35.4269 32.7258 -Arial_Black.ttf 20 c 34.2455 32.7258 4 n -0.3222 31.8826 31.5444 -Arial_Black.ttf 20 c 34.2455 32.7258 5 P -10.2145 34.7906 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 6 o -0.0854 34.2455 32.7258 -Arial_Black.ttf 20 c 34.2455 32.7258 7 e 0.0677 34.2455 32.7258 -Arial_Black.ttf 20 c 34.2455 32.7258 8 : 1.2183 11.6371 30.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 9 r 0.1588 23.9105 31.5444 -Arial_Black.ttf 20 c 34.2455 32.7258 10 l -10.4094 11.6371 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 11 i -10.4211 11.6371 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 12 1 -11.4049 23.9105 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 13 | -10.4530 7.2718 53.3612 -Arial_Black.ttf 20 c 34.2455 32.7258 14 N -10.3880 39.2421 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 15 f -11.4733 23.6362 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 16 g -0.0299 34.2455 44.0871 -Arial_Black.ttf 20 c 34.2455 32.7258 17 d -10.3428 32.7882 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 18 W -10.0452 59.5444 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 19 s -0.3615 31.5444 32.7258 -Arial_Black.ttf 20 c 34.2455 32.7258 20 c -0.0854 34.2455 32.7258 -Arial_Black.ttf 20 c 34.2455 32.7258 21 u 1.2459 31.6067 31.5444 -Arial_Black.ttf 20 c 34.2455 32.7258 22 3 -11.7953 33.8834 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 23 ~ 3.5614 32.7258 14.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 24 # -11.6729 35.6338 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 25 O -11.5512 42.6921 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 26 ` -11.8147 14.6708 8.4532 -Arial_Black.ttf 20 c 34.2455 32.7258 27 @ -11.9337 43.1815 49.5147 -Arial_Black.ttf 20 c 34.2455 32.7258 28 F -10.6512 31.6067 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 29 S -11.8816 37.5485 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 30 p -0.1473 32.7882 42.9056 -Arial_Black.ttf 20 c 34.2455 32.7258 31 “ -11.9254 25.6371 23.2742 -Arial_Black.ttf 20 c 34.2455 32.7258 32 % -11.7458 52.3055 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 33 £ -11.8863 34.8768 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 34 . 19.8419 11.6371 11.6371 -Arial_Black.ttf 20 c 34.2455 32.7258 35 2 -11.6313 33.6075 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 36 5 -10.6216 33.8834 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 37 m 0.0922 51.5206 31.5444 -Arial_Black.ttf 20 c 34.2455 32.7258 38 V -10.7264 45.1494 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 39 6 -12.2431 33.8834 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 40 w 1.1417 54.8185 30.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 41 T -10.3886 38.4556 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 42 M -10.4614 45.8497 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 43 G -11.9262 42.5435 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 44 b -10.4982 32.7882 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 45 9 -11.5610 33.8834 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 46 ; 1.1945 11.6371 42.9056 -Arial_Black.ttf 20 c 34.2455 32.7258 47 D -10.4298 38.3349 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 48 L -10.4506 32.0311 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 49 y 1.1111 35.7890 42.9056 -Arial_Black.ttf 20 c 34.2455 32.7258 50 ‘ -11.9101 11.6371 23.2742 -Arial_Black.ttf 20 c 34.2455 32.7258 51 \ -11.4595 16.3629 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 52 R -10.4556 41.2135 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 53 < -6.8570 32.6051 34.9975 -Arial_Black.ttf 20 c 34.2455 32.7258 54 4 -11.4864 38.0591 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 55 8 -11.4034 33.8834 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 56 0 -11.4814 33.8834 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 57 A -10.1279 45.5444 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 58 E -10.5522 34.5147 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 59 B -10.3112 38.3349 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 60 v 1.0417 35.7874 30.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 61 k -10.3952 35.5476 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 62 J -10.6458 33.1847 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 63 U -10.4262 39.2421 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 64 j -10.6162 18.3653 54.5427 -Arial_Black.ttf 20 c 34.2455 32.7258 65 ( -11.4281 17.4252 56.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 66 7 -10.4962 33.6075 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 67 § -11.6685 34.2455 55.7241 -Arial_Black.ttf 20 c 34.2455 32.7258 68 $ -14.5103 35.2718 52.4211 -Arial_Black.ttf 20 c 34.2455 32.7258 69 € -11.6290 38.1503 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 70 / -11.6979 16.3629 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 71 C -11.6033 39.9114 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 72 * -11.5627 22.1511 20.6009 -Arial_Black.ttf 20 c 34.2455 32.7258 73 ” -11.8937 25.6371 23.2742 -Arial_Black.ttf 20 c 34.2455 32.7258 74 ? -11.2978 31.8202 43.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 75 { -11.5525 21.5147 56.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 76 } -11.6120 21.5147 56.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 77 , 19.9846 11.6371 24.1798 -Arial_Black.ttf 20 c 34.2455 32.7258 78 I -10.3517 12.8185 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 79 ° -11.7614 14.1207 14.1207 -Arial_Black.ttf 20 c 34.2455 32.7258 80 K -10.3759 43.9679 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 81 H -10.3043 39.2421 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 82 q -0.0878 32.7882 42.9056 -Arial_Black.ttf 20 c 34.2455 32.7258 83 & -11.5336 46.8516 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 84 ’ -11.4327 11.6371 23.2742 -Arial_Black.ttf 20 c 34.2455 32.7258 85 [ -10.5959 18.3653 53.6371 -Arial_Black.ttf 20 c 34.2455 32.7258 86 - 11.5983 16.9080 9.2397 -Arial_Black.ttf 20 c 34.2455 32.7258 87 Y -10.6701 45.5444 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 88 Q -11.8016 44.1494 48.3317 -Arial_Black.ttf 20 c 34.2455 32.7258 89 " -10.3671 26.8185 15.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 90 ! -10.3969 11.6371 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 91 x 1.1111 38.7021 30.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 92 ) -11.3889 17.4252 56.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 93 = -0.8318 30.9080 23.2397 -Arial_Black.ttf 20 c 34.2455 32.7258 94 + -4.9251 31.4237 31.4237 -Arial_Black.ttf 20 c 34.2455 32.7258 95 X -10.4869 45.1494 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 96 » 3.1584 31.1494 26.3941 -Arial_Black.ttf 20 c 34.2455 32.7258 97 ' -10.0556 11.6371 15.1815 -Arial_Black.ttf 20 c 34.2455 32.7258 98 ¢ -9.9188 34.2455 53.1782 -Arial_Black.ttf 20 c 34.2455 32.7258 99 Z -10.6237 37.3644 42.0000 -Arial_Black.ttf 20 c 34.2455 32.7258 100 > -6.7306 32.6051 34.9975 -Arial_Black.ttf 20 c 34.2455 32.7258 101 ® -11.5834 43.9385 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 102 © -11.5543 43.9385 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 103 ] -10.5943 18.3653 53.6371 -Arial_Black.ttf 20 c 34.2455 32.7258 104 é -11.7225 34.2455 44.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 105 z 1.1520 28.4867 30.3629 -Arial_Black.ttf 20 c 34.2455 32.7258 106 _ 35.4078 29.1815 2.7873 -Arial_Black.ttf 20 c 34.2455 32.7258 107 ¥ -10.2743 40.3941 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 1 t -11.4017 22.4548 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 2 h -11.5695 31.8826 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 3 a -1.4280 35.4269 32.7258 -Arial_Black.ttf 21 u 31.6067 31.5444 4 n -1.0709 31.8826 31.5444 -Arial_Black.ttf 21 u 31.6067 31.5444 5 P -11.7678 34.7906 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 6 o -1.0484 34.2455 32.7258 -Arial_Black.ttf 21 u 31.6067 31.5444 7 e -1.3872 34.2455 32.7258 -Arial_Black.ttf 21 u 31.6067 31.5444 8 : -0.0138 11.6371 30.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 9 r -1.0457 23.9105 31.5444 -Arial_Black.ttf 21 u 31.6067 31.5444 10 l -11.3875 11.6371 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 11 i -11.5593 11.6371 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 12 1 -12.8142 23.9105 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 13 | -11.5020 7.2718 53.3612 -Arial_Black.ttf 21 u 31.6067 31.5444 14 N -11.5816 39.2421 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 15 f -12.4212 23.6362 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 16 g -1.2297 34.2455 44.0871 -Arial_Black.ttf 21 u 31.6067 31.5444 17 d -11.6904 32.7882 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 18 W -11.8662 59.5444 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 19 s -1.0149 31.5444 32.7258 -Arial_Black.ttf 21 u 31.6067 31.5444 20 c -0.9520 34.2455 32.7258 -Arial_Black.ttf 21 u 31.6067 31.5444 21 u -0.2398 31.6067 31.5444 -Arial_Black.ttf 21 u 31.6067 31.5444 22 3 -12.6916 33.8834 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 23 ~ 2.3391 32.7258 14.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 24 # -12.8856 35.6338 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 25 O -12.8172 42.6921 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 26 ` -12.6239 14.6708 8.4532 -Arial_Black.ttf 21 u 31.6067 31.5444 27 @ -12.8754 43.1815 49.5147 -Arial_Black.ttf 21 u 31.6067 31.5444 28 F -11.4572 31.6067 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 29 S -12.5447 37.5485 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 30 p -1.1394 32.7882 42.9056 -Arial_Black.ttf 21 u 31.6067 31.5444 31 “ -12.6505 25.6371 23.2742 -Arial_Black.ttf 21 u 31.6067 31.5444 32 % -12.9533 52.3055 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 33 £ -12.5845 34.8768 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 34 . 18.9576 11.6371 11.6371 -Arial_Black.ttf 21 u 31.6067 31.5444 35 2 -12.9847 33.6075 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 36 5 -11.4653 33.8834 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 37 m -0.9493 51.5206 31.5444 -Arial_Black.ttf 21 u 31.6067 31.5444 38 V -11.9638 45.1494 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 39 6 -12.6392 33.8834 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 40 w 0.2341 54.8185 30.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 41 T -11.8129 38.4556 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 42 M -11.4918 45.8497 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 43 G -12.9716 42.5435 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 44 b -11.5969 32.7882 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 45 9 -12.9546 33.8834 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 46 ; -0.1460 11.6371 42.9056 -Arial_Black.ttf 21 u 31.6067 31.5444 47 D -11.5818 38.3349 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 48 L -11.6446 32.0311 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 49 y -0.3527 35.7890 42.9056 -Arial_Black.ttf 21 u 31.6067 31.5444 50 ‘ -12.9455 11.6371 23.2742 -Arial_Black.ttf 21 u 31.6067 31.5444 51 \ -12.9116 16.3629 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 52 R -11.3638 41.2135 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 53 < -8.3229 32.6051 34.9975 -Arial_Black.ttf 21 u 31.6067 31.5444 54 4 -12.6530 38.0591 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 55 8 -12.7434 33.8834 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 56 0 -12.8476 33.8834 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 57 A -11.8917 45.5444 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 58 E -11.7399 34.5147 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 59 B -11.3202 38.3349 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 60 v -0.1907 35.7874 30.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 61 k -11.9001 35.5476 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 62 J -11.8535 33.1847 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 63 U -11.6290 39.2421 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 64 j -11.6635 18.3653 54.5427 -Arial_Black.ttf 21 u 31.6067 31.5444 65 ( -12.7908 17.4252 56.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 66 7 -11.4571 33.6075 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 67 § -12.9769 34.2455 55.7241 -Arial_Black.ttf 21 u 31.6067 31.5444 68 $ -15.5406 35.2718 52.4211 -Arial_Black.ttf 21 u 31.6067 31.5444 69 € -12.5448 38.1503 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 70 / -12.9386 16.3629 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 71 C -13.1077 39.9114 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 72 * -12.5120 22.1511 20.6009 -Arial_Black.ttf 21 u 31.6067 31.5444 73 ” -13.0503 25.6371 23.2742 -Arial_Black.ttf 21 u 31.6067 31.5444 74 ? -12.9063 31.8202 43.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 75 { -12.8999 21.5147 56.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 76 } -12.8192 21.5147 56.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 77 , 18.8418 11.6371 24.1798 -Arial_Black.ttf 21 u 31.6067 31.5444 78 I -11.7687 12.8185 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 79 ° -12.9120 14.1207 14.1207 -Arial_Black.ttf 21 u 31.6067 31.5444 80 K -11.7070 43.9679 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 81 H -11.5892 39.2421 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 82 q -1.2849 32.7882 42.9056 -Arial_Black.ttf 21 u 31.6067 31.5444 83 & -12.8903 46.8516 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 84 ’ -12.8364 11.6371 23.2742 -Arial_Black.ttf 21 u 31.6067 31.5444 85 [ -11.5956 18.3653 53.6371 -Arial_Black.ttf 21 u 31.6067 31.5444 86 - 10.5171 16.9080 9.2397 -Arial_Black.ttf 21 u 31.6067 31.5444 87 Y -11.3014 45.5444 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 88 Q -12.9471 44.1494 48.3317 -Arial_Black.ttf 21 u 31.6067 31.5444 89 " -11.3864 26.8185 15.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 90 ! -11.9212 11.6371 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 91 x 0.3029 38.7021 30.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 92 ) -12.9283 17.4252 56.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 93 = -2.1744 30.9080 23.2397 -Arial_Black.ttf 21 u 31.6067 31.5444 94 + -6.5494 31.4237 31.4237 -Arial_Black.ttf 21 u 31.6067 31.5444 95 X -11.6189 45.1494 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 96 » 1.6946 31.1494 26.3941 -Arial_Black.ttf 21 u 31.6067 31.5444 97 ' -11.5932 11.6371 15.1815 -Arial_Black.ttf 21 u 31.6067 31.5444 98 ¢ -11.2660 34.2455 53.1782 -Arial_Black.ttf 21 u 31.6067 31.5444 99 Z -11.5808 37.3644 42.0000 -Arial_Black.ttf 21 u 31.6067 31.5444 100 > -8.1674 32.6051 34.9975 -Arial_Black.ttf 21 u 31.6067 31.5444 101 ® -12.6395 43.9385 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 102 © -12.7052 43.9385 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 103 ] -11.8501 18.3653 53.6371 -Arial_Black.ttf 21 u 31.6067 31.5444 104 é -12.9083 34.2455 44.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 105 z -0.2031 28.4867 30.3629 -Arial_Black.ttf 21 u 31.6067 31.5444 106 _ 34.4202 29.1815 2.7873 -Arial_Black.ttf 21 u 31.6067 31.5444 107 ¥ -11.8672 40.3941 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 1 t 1.2625 22.4548 43.1815 -Arial_Black.ttf 22 3 33.8834 44.3629 2 h 1.3690 31.8826 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 3 a 11.4454 35.4269 32.7258 -Arial_Black.ttf 22 3 33.8834 44.3629 4 n 11.6904 31.8826 31.5444 -Arial_Black.ttf 22 3 33.8834 44.3629 5 P 1.2324 34.7906 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 6 o 11.7874 34.2455 32.7258 -Arial_Black.ttf 22 3 33.8834 44.3629 7 e 11.7703 34.2455 32.7258 -Arial_Black.ttf 22 3 33.8834 44.3629 8 : 12.7589 11.6371 30.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 9 r 11.3014 23.9105 31.5444 -Arial_Black.ttf 22 3 33.8834 44.3629 10 l 1.2579 11.6371 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 11 i 1.0137 11.6371 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 12 1 -0.1029 23.9105 43.1815 -Arial_Black.ttf 22 3 33.8834 44.3629 13 | 1.1089 7.2718 53.3612 -Arial_Black.ttf 22 3 33.8834 44.3629 14 N 1.4567 39.2421 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 15 f -0.1749 23.6362 43.1815 -Arial_Black.ttf 22 3 33.8834 44.3629 16 g 11.4864 34.2455 44.0871 -Arial_Black.ttf 22 3 33.8834 44.3629 17 d 0.7989 32.7882 43.1815 -Arial_Black.ttf 22 3 33.8834 44.3629 18 W 0.9858 59.5444 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 19 s 11.5777 31.5444 32.7258 -Arial_Black.ttf 22 3 33.8834 44.3629 20 c 11.4796 34.2455 32.7258 -Arial_Black.ttf 22 3 33.8834 44.3629 21 u 12.7438 31.6067 31.5444 -Arial_Black.ttf 22 3 33.8834 44.3629 22 3 0.0412 33.8834 44.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 23 ~ 15.7185 32.7258 14.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 24 # 0.0864 35.6338 44.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 25 O 0.0878 42.6921 44.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 26 ` -0.0197 14.6708 8.4532 -Arial_Black.ttf 22 3 33.8834 44.3629 27 @ 0.0048 43.1815 49.5147 -Arial_Black.ttf 22 3 33.8834 44.3629 28 F 0.9487 31.6067 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 29 S -0.0672 37.5485 44.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 30 p 11.4549 32.7882 42.9056 -Arial_Black.ttf 22 3 33.8435 44.3759 31 “ 0.1766 25.6241 23.2483 -Arial_Black.ttf 22 3 33.8435 44.3759 32 % 0.2063 52.3164 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 33 £ 0.0909 34.8724 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 34 . 31.5998 11.6241 11.6241 -Arial_Black.ttf 22 3 33.8435 44.3759 35 2 0.0068 33.5935 43.1879 -Arial_Black.ttf 22 3 33.8435 44.3759 36 5 1.5287 33.8435 43.1879 -Arial_Black.ttf 22 3 33.8834 44.3629 37 m 11.6216 51.5206 31.5444 -Arial_Black.ttf 22 3 33.8834 44.3629 38 V 1.3064 45.1494 42.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 39 6 0.3226 33.8435 44.3759 -Arial_Black.ttf 22 3 33.8834 44.3629 40 w 12.5084 54.8185 30.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 41 T 1.3362 38.4556 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 42 M 0.9017 45.8497 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 43 G -0.1601 42.5435 44.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 44 b 1.2092 32.7882 43.1815 -Arial_Black.ttf 22 3 33.8435 44.3759 45 9 -0.1103 33.8435 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 46 ; 12.8728 11.6241 42.9379 -Arial_Black.ttf 22 3 33.8834 44.3629 47 D 1.4141 38.3349 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 48 L 1.5172 32.0311 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 49 y 13.1063 35.7890 42.9056 -Arial_Black.ttf 22 3 33.8435 44.3759 50 ‘ 0.0455 11.6241 23.2483 -Arial_Black.ttf 22 3 33.8435 44.3759 51 \ -0.0530 16.3759 44.3759 -Arial_Black.ttf 22 3 33.8834 44.3629 52 R 1.0942 41.2135 42.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 53 < 4.7443 32.6267 34.9974 -Arial_Black.ttf 22 3 33.8435 44.3759 54 4 -0.0186 38.0612 43.1879 -Arial_Black.ttf 22 3 33.8435 44.3759 55 8 -0.1613 33.8435 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 56 0 0.0557 33.8435 44.3759 -Arial_Black.ttf 22 3 33.8834 44.3629 57 A 1.0606 45.5444 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 58 E 0.8947 34.5147 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 59 B 1.2677 38.3349 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 60 v 12.9473 35.7874 30.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 61 k 1.0696 35.5476 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 62 J 1.0315 33.1847 43.1815 -Arial_Black.ttf 22 3 33.8834 44.3629 63 U 1.1851 39.2421 43.1815 -Arial_Black.ttf 22 3 33.8834 44.3629 64 j 1.2799 18.3653 54.5427 -Arial_Black.ttf 22 3 33.8435 44.3759 65 ( -0.0784 17.4047 56.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 66 7 1.3555 33.5935 42.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 67 § -0.1966 34.2185 55.7500 -Arial_Black.ttf 22 3 33.8435 44.3759 68 $ -3.0078 35.2815 52.4362 -Arial_Black.ttf 22 3 33.8435 44.3759 69 € -0.1516 38.1914 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 70 / 0.0106 16.3759 44.3759 -Arial_Black.ttf 22 3 33.8834 44.3629 71 C 0.1205 39.9114 44.3629 -Arial_Black.ttf 22 3 33.8435 44.3759 72 * -0.0678 22.1565 20.6224 -Arial_Black.ttf 22 3 33.8435 44.3759 73 ” 0.0599 25.6241 23.2483 -Arial_Black.ttf 22 3 33.8435 44.3759 74 ? -0.0266 31.8138 43.1879 -Arial_Black.ttf 22 3 33.8435 44.3759 75 { 0.2178 21.4974 56.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 76 } 0.1132 21.4974 56.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 77 , 31.7006 11.6241 24.1862 -Arial_Black.ttf 22 3 33.8834 44.3629 78 I 1.1778 12.8185 42.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 79 ° 0.2345 14.1250 14.1250 -Arial_Black.ttf 22 3 33.8834 44.3629 80 K 0.8897 43.9679 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 81 H 0.9403 39.2421 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 82 q 11.5219 32.7882 42.9056 -Arial_Black.ttf 22 3 33.8435 44.3759 83 & 0.0479 46.8820 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 84 ’ -0.1766 11.6241 23.2483 -Arial_Black.ttf 22 3 33.8435 44.3759 85 [ 1.0963 18.3427 53.6241 -Arial_Black.ttf 22 3 33.8435 44.3759 86 - 23.2178 16.9047 9.2483 -Arial_Black.ttf 22 3 33.8834 44.3629 87 Y 1.2858 45.5444 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 88 Q -0.0963 44.1494 48.3317 -Arial_Black.ttf 22 3 33.8435 44.3759 89 " 1.0164 26.8121 15.1879 -Arial_Black.ttf 22 3 33.8435 44.3759 90 ! 1.2686 11.6241 42.0000 -Arial_Black.ttf 22 3 33.8834 44.3629 91 x 12.8144 38.7021 30.3629 -Arial_Black.ttf 22 3 33.8435 44.3759 92 ) 0.0037 17.4047 56.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 93 = 10.7289 30.9047 23.2483 -Arial_Black.ttf 22 3 33.8435 44.3759 94 + 6.7661 31.4388 31.4388 -Arial_Black.ttf 22 3 33.8834 44.3629 95 X 1.3426 45.1494 42.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 96 » 14.7572 31.1547 26.4082 -Arial_Black.ttf 22 3 33.8435 44.3759 97 ' 1.5796 11.6241 15.1879 -Arial_Black.ttf 22 3 33.8435 44.3759 98 ¢ 1.5988 34.2185 53.2203 -Arial_Black.ttf 22 3 33.8834 44.3629 99 Z 0.9282 37.3644 42.0000 -Arial_Black.ttf 22 3 33.8435 44.3759 100 > 4.5818 32.6267 34.9974 -Arial_Black.ttf 22 3 33.8435 44.3759 101 ® -0.1585 43.9720 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 102 © 0.0432 43.9720 44.3759 -Arial_Black.ttf 22 3 33.8435 44.3759 103 ] 1.1837 18.3427 53.6241 -Arial_Black.ttf 22 3 33.8834 44.3629 104 é -0.2228 34.2455 44.3629 -Arial_Black.ttf 22 3 33.8834 44.3629 105 z 12.7802 28.4867 30.3629 -Arial_Black.ttf 22 3 33.8435 44.3759 106 _ 47.3502 29.1879 2.7797 -Arial_Black.ttf 22 3 33.8435 44.3759 107 ¥ 0.9771 40.4082 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 1 t -13.8035 22.4548 43.1815 -Arial_Black.ttf 23 ~ 32.7258 14.0000 2 h -14.0094 31.8826 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 3 a -3.4603 35.4269 32.7258 -Arial_Black.ttf 23 ~ 32.7258 14.0000 4 n -3.7886 31.8826 31.5444 -Arial_Black.ttf 23 ~ 32.7258 14.0000 5 P -13.8935 34.7906 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 6 o -3.2646 34.2455 32.7258 -Arial_Black.ttf 23 ~ 32.7258 14.0000 7 e -3.5989 34.2455 32.7258 -Arial_Black.ttf 23 ~ 32.7258 14.0000 8 : -2.5679 11.6371 30.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 9 r -3.4204 23.9105 31.5444 -Arial_Black.ttf 23 ~ 32.7258 14.0000 10 l -13.7253 11.6371 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 11 i -13.4984 11.6371 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 12 1 -15.1220 23.9105 43.1815 -Arial_Black.ttf 23 ~ 32.7258 14.0000 13 | -13.7458 7.2718 53.3612 -Arial_Black.ttf 23 ~ 32.7258 14.0000 14 N -14.1133 39.2421 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 15 f -15.0811 23.6362 43.1815 -Arial_Black.ttf 23 ~ 32.7258 14.0000 16 g -3.5860 34.2455 44.0871 -Arial_Black.ttf 23 ~ 32.7258 14.0000 17 d -14.1970 32.7882 43.1815 -Arial_Black.ttf 23 ~ 32.7258 14.0000 18 W -14.0657 59.5444 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 19 s -3.5494 31.5444 32.7258 -Arial_Black.ttf 23 ~ 32.7258 14.0000 20 c -3.5099 34.2455 32.7258 -Arial_Black.ttf 23 ~ 32.7258 14.0000 21 u -2.5116 31.6067 31.5444 -Arial_Black.ttf 23 ~ 32.7258 14.0000 22 3 -15.4148 33.8834 44.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 23 ~ -0.0851 32.7258 14.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 24 # -14.9231 35.6338 44.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 25 O -15.1989 42.6921 44.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 26 ` -15.1715 14.6708 8.4532 -Arial_Black.ttf 23 ~ 32.7258 14.0000 27 @ -15.0657 43.1815 49.5147 -Arial_Black.ttf 23 ~ 32.7258 14.0000 28 F -13.8358 31.6067 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 29 S -15.3149 37.5485 44.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 30 p -4.0742 32.7882 42.9056 -Arial_Black.ttf 23 ~ 32.7517 14.0000 31 “ -15.0294 25.6241 23.2483 -Arial_Black.ttf 23 ~ 32.7517 14.0000 32 % -15.0276 52.3164 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 33 £ -15.4340 34.8724 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 34 . 16.1181 11.6241 11.6241 -Arial_Black.ttf 23 ~ 32.7517 14.0000 35 2 -15.4220 33.5935 43.1879 -Arial_Black.ttf 23 ~ 32.7517 14.0000 36 5 -13.8615 33.8435 43.1879 -Arial_Black.ttf 23 ~ 32.7258 14.0000 37 m -3.6379 51.5206 31.5444 -Arial_Black.ttf 23 ~ 32.7258 14.0000 38 V -14.2523 45.1494 42.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 39 6 -14.9315 33.8435 44.3759 -Arial_Black.ttf 23 ~ 32.7258 14.0000 40 w -2.2028 54.8185 30.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 41 T -13.7137 38.4556 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 42 M -13.9279 45.8497 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 43 G -15.0838 42.5435 44.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 44 b -14.2171 32.7882 43.1815 -Arial_Black.ttf 23 ~ 32.7517 14.0000 45 9 -15.2968 33.8435 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 46 ; -2.1289 11.6241 42.9379 -Arial_Black.ttf 23 ~ 32.7258 14.0000 47 D -14.3157 38.3349 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 48 L -14.0828 32.0311 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 49 y -2.7472 35.7890 42.9056 -Arial_Black.ttf 23 ~ 32.7517 14.0000 50 ‘ -15.1420 11.6241 23.2483 -Arial_Black.ttf 23 ~ 32.7517 14.0000 51 \ -15.1791 16.3759 44.3759 -Arial_Black.ttf 23 ~ 32.7258 14.0000 52 R -14.1517 41.2135 42.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 53 < -10.4719 32.6267 34.9974 -Arial_Black.ttf 23 ~ 32.7517 14.0000 54 4 -15.4721 38.0612 43.1879 -Arial_Black.ttf 23 ~ 32.7517 14.0000 55 8 -15.3131 33.8435 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 56 0 -15.1834 33.8435 44.3759 -Arial_Black.ttf 23 ~ 32.7258 14.0000 57 A -14.0408 45.5444 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 58 E -14.0869 34.5147 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 59 B -13.9055 38.3349 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 60 v -2.4552 35.7874 30.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 61 k -13.6322 35.5476 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 62 J -14.0849 33.1847 43.1815 -Arial_Black.ttf 23 ~ 32.7258 14.0000 63 U -14.1402 39.2421 43.1815 -Arial_Black.ttf 23 ~ 32.7258 14.0000 64 j -14.1601 18.3653 54.5427 -Arial_Black.ttf 23 ~ 32.7517 14.0000 65 ( -15.0645 17.4047 56.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 66 7 -13.9570 33.5935 42.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 67 § -15.3205 34.2185 55.7500 -Arial_Black.ttf 23 ~ 32.7517 14.0000 68 $ -18.1345 35.2815 52.4362 -Arial_Black.ttf 23 ~ 32.7517 14.0000 69 € -15.0952 38.1914 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 70 / -15.3062 16.3759 44.3759 -Arial_Black.ttf 23 ~ 32.7258 14.0000 71 C -14.9784 39.9114 44.3629 -Arial_Black.ttf 23 ~ 32.7517 14.0000 72 * -15.3056 22.1565 20.6224 -Arial_Black.ttf 23 ~ 32.7517 14.0000 73 ” -15.1653 25.6241 23.2483 -Arial_Black.ttf 23 ~ 32.7517 14.0000 74 ? -15.1512 31.8138 43.1879 -Arial_Black.ttf 23 ~ 32.7517 14.0000 75 { -14.8944 21.4974 56.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 76 } -15.2417 21.4974 56.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 77 , 16.4428 11.6241 24.1862 -Arial_Black.ttf 23 ~ 32.7258 14.0000 78 I -13.8312 12.8185 42.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 79 ° -15.1513 14.1250 14.1250 -Arial_Black.ttf 23 ~ 32.7258 14.0000 80 K -13.9065 43.9679 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 81 H -14.1491 39.2421 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 82 q -3.6450 32.7882 42.9056 -Arial_Black.ttf 23 ~ 32.7517 14.0000 83 & -15.3729 46.8820 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 84 ’ -15.1870 11.6241 23.2483 -Arial_Black.ttf 23 ~ 32.7517 14.0000 85 [ -14.1149 18.3427 53.6241 -Arial_Black.ttf 23 ~ 32.7517 14.0000 86 - 8.0516 16.9047 9.2483 -Arial_Black.ttf 23 ~ 32.7258 14.0000 87 Y -14.0802 45.5444 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 88 Q -14.9035 44.1494 48.3317 -Arial_Black.ttf 23 ~ 32.7517 14.0000 89 " -13.9324 26.8121 15.1879 -Arial_Black.ttf 23 ~ 32.7517 14.0000 90 ! -13.9927 11.6241 42.0000 -Arial_Black.ttf 23 ~ 32.7258 14.0000 91 x -2.6972 38.7021 30.3629 -Arial_Black.ttf 23 ~ 32.7517 14.0000 92 ) -15.1700 17.4047 56.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 93 = -4.4972 30.9047 23.2483 -Arial_Black.ttf 23 ~ 32.7517 14.0000 94 + -8.5938 31.4388 31.4388 -Arial_Black.ttf 23 ~ 32.7258 14.0000 95 X -14.1347 45.1494 42.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 96 » -0.4966 31.1547 26.4082 -Arial_Black.ttf 23 ~ 32.7517 14.0000 97 ' -13.7049 11.6241 15.1879 -Arial_Black.ttf 23 ~ 32.7517 14.0000 98 ¢ -13.6745 34.2185 53.2203 -Arial_Black.ttf 23 ~ 32.7258 14.0000 99 Z -13.9812 37.3644 42.0000 -Arial_Black.ttf 23 ~ 32.7517 14.0000 100 > -10.5900 32.6267 34.9974 -Arial_Black.ttf 23 ~ 32.7517 14.0000 101 ® -15.0221 43.9720 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 102 © -15.3942 43.9720 44.3759 -Arial_Black.ttf 23 ~ 32.7517 14.0000 103 ] -14.2841 18.3427 53.6241 -Arial_Black.ttf 23 ~ 32.7258 14.0000 104 é -15.4304 34.2455 44.3629 -Arial_Black.ttf 23 ~ 32.7258 14.0000 105 z -2.2775 28.4867 30.3629 -Arial_Black.ttf 23 ~ 32.7517 14.0000 106 _ 31.8328 29.1879 2.7797 -Arial_Black.ttf 23 ~ 32.7517 14.0000 107 ¥ -13.9143 40.4082 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 1 t 1.4179 22.4548 43.1815 -Arial_Black.ttf 24 # 35.6338 44.3629 2 h 1.1943 31.8826 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 3 a 11.6159 35.4269 32.7258 -Arial_Black.ttf 24 # 35.6338 44.3629 4 n 11.8047 31.8826 31.5444 -Arial_Black.ttf 24 # 35.6338 44.3629 5 P 1.1183 34.7906 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 6 o 11.6236 34.2455 32.7258 -Arial_Black.ttf 24 # 35.6338 44.3629 7 e 11.9319 34.2455 32.7258 -Arial_Black.ttf 24 # 35.6338 44.3629 8 : 12.5791 11.6371 30.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 9 r 11.4281 23.9105 31.5444 -Arial_Black.ttf 24 # 35.6338 44.3629 10 l 1.1031 11.6371 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 11 i 1.1775 11.6371 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 12 1 0.0033 23.9105 43.1815 -Arial_Black.ttf 24 # 35.6338 44.3629 13 | 1.0592 7.2718 53.3612 -Arial_Black.ttf 24 # 35.6338 44.3629 14 N 1.2934 39.2421 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 15 f 0.2747 23.6362 43.1815 -Arial_Black.ttf 24 # 35.6338 44.3629 16 g 11.7225 34.2455 44.0871 -Arial_Black.ttf 24 # 35.6338 44.3629 17 d 0.8191 32.7882 43.1815 -Arial_Black.ttf 24 # 35.6338 44.3629 18 W 1.1577 59.5444 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 19 s 11.6820 31.5444 32.7258 -Arial_Black.ttf 24 # 35.6338 44.3629 20 c 11.7047 34.2455 32.7258 -Arial_Black.ttf 24 # 35.6338 44.3629 21 u 12.7766 31.6067 31.5444 -Arial_Black.ttf 24 # 35.6338 44.3629 22 3 -0.0854 33.8834 44.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 23 ~ 14.9238 32.7258 14.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 24 # 0.2130 35.6338 44.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 25 O -0.1615 42.6921 44.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 26 ` 0.1979 14.6708 8.4532 -Arial_Black.ttf 24 # 35.6338 44.3629 27 @ 0.1324 43.1815 49.5147 -Arial_Black.ttf 24 # 35.6338 44.3629 28 F 1.1815 31.6067 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 29 S -0.0009 37.5485 44.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 30 p 11.7269 32.7882 42.9056 -Arial_Black.ttf 24 # 35.6565 44.3759 31 “ 0.0871 25.6241 23.2483 -Arial_Black.ttf 24 # 35.6565 44.3759 32 % 0.1801 52.3164 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 33 £ 0.1295 34.8724 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 34 . 31.5460 11.6241 11.6241 -Arial_Black.ttf 24 # 35.6565 44.3759 35 2 -0.0427 33.5935 43.1879 -Arial_Black.ttf 24 # 35.6565 44.3759 36 5 1.2579 33.8435 43.1879 -Arial_Black.ttf 24 # 35.6338 44.3629 37 m 11.3716 51.5206 31.5444 -Arial_Black.ttf 24 # 35.6338 44.3629 38 V 1.1339 45.1494 42.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 39 6 -0.0880 33.8435 44.3759 -Arial_Black.ttf 24 # 35.6338 44.3629 40 w 12.7725 54.8185 30.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 41 T 1.0633 38.4556 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 42 M 1.3564 45.8497 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 43 G 0.2439 42.5435 44.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 44 b 0.7801 32.7882 43.1815 -Arial_Black.ttf 24 # 35.6565 44.3759 45 9 0.1470 33.8435 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 46 ; 12.5932 11.6241 42.9379 -Arial_Black.ttf 24 # 35.6338 44.3629 47 D 1.1975 38.3349 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 48 L 1.3365 32.0311 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 49 y 12.8996 35.7890 42.9056 -Arial_Black.ttf 24 # 35.6565 44.3759 50 ‘ -0.1720 11.6241 23.2483 -Arial_Black.ttf 24 # 35.6565 44.3759 51 \ -0.1392 16.3759 44.3759 -Arial_Black.ttf 24 # 35.6338 44.3629 52 R 1.4391 41.2135 42.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 53 < 4.6841 32.6267 34.9974 -Arial_Black.ttf 24 # 35.6565 44.3759 54 4 -0.1298 38.0612 43.1879 -Arial_Black.ttf 24 # 35.6565 44.3759 55 8 0.1191 33.8435 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 56 0 0.1242 33.8435 44.3759 -Arial_Black.ttf 24 # 35.6338 44.3629 57 A 1.1054 45.5444 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 58 E 1.1815 34.5147 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 59 B 1.2026 38.3349 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 60 v 13.2544 35.7874 30.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 61 k 1.2974 35.5476 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 62 J 1.3767 33.1847 43.1815 -Arial_Black.ttf 24 # 35.6338 44.3629 63 U 0.8469 39.2421 43.1815 -Arial_Black.ttf 24 # 35.6338 44.3629 64 j 1.2210 18.3653 54.5427 -Arial_Black.ttf 24 # 35.6565 44.3759 65 ( 0.0281 17.4047 56.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 66 7 1.1515 33.5935 42.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 67 § 0.0484 34.2185 55.7500 -Arial_Black.ttf 24 # 35.6565 44.3759 68 $ -2.9136 35.2815 52.4362 -Arial_Black.ttf 24 # 35.6565 44.3759 69 € -0.0640 38.1914 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 70 / -0.1690 16.3759 44.3759 -Arial_Black.ttf 24 # 35.6338 44.3629 71 C -0.2847 39.9114 44.3629 -Arial_Black.ttf 24 # 35.6565 44.3759 72 * -0.1169 22.1565 20.6224 -Arial_Black.ttf 24 # 35.6565 44.3759 73 ” 0.1862 25.6241 23.2483 -Arial_Black.ttf 24 # 35.6565 44.3759 74 ? 0.1995 31.8138 43.1879 -Arial_Black.ttf 24 # 35.6565 44.3759 75 { 0.0794 21.4974 56.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 76 } 0.2307 21.4974 56.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 77 , 31.6163 11.6241 24.1862 -Arial_Black.ttf 24 # 35.6338 44.3629 78 I 1.0953 12.8185 42.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 79 ° -0.0844 14.1250 14.1250 -Arial_Black.ttf 24 # 35.6338 44.3629 80 K 1.3520 43.9679 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 81 H 1.1810 39.2421 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 82 q 11.5221 32.7882 42.9056 -Arial_Black.ttf 24 # 35.6565 44.3759 83 & 0.0078 46.8820 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 84 ’ 0.0292 11.6241 23.2483 -Arial_Black.ttf 24 # 35.6565 44.3759 85 [ 1.2469 18.3427 53.6241 -Arial_Black.ttf 24 # 35.6565 44.3759 86 - 23.4329 16.9047 9.2483 -Arial_Black.ttf 24 # 35.6338 44.3629 87 Y 1.1048 45.5444 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 88 Q -0.0876 44.1494 48.3317 -Arial_Black.ttf 24 # 35.6565 44.3759 89 " 1.3199 26.8121 15.1879 -Arial_Black.ttf 24 # 35.6565 44.3759 90 ! 1.0628 11.6241 42.0000 -Arial_Black.ttf 24 # 35.6338 44.3629 91 x 12.7215 38.7021 30.3629 -Arial_Black.ttf 24 # 35.6565 44.3759 92 ) 0.1350 17.4047 56.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 93 = 10.4634 30.9047 23.2483 -Arial_Black.ttf 24 # 35.6565 44.3759 94 + 6.3539 31.4388 31.4388 -Arial_Black.ttf 24 # 35.6338 44.3629 95 X 1.3944 45.1494 42.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 96 » 14.6858 31.1547 26.4082 -Arial_Black.ttf 24 # 35.6565 44.3759 97 ' 1.3288 11.6241 15.1879 -Arial_Black.ttf 24 # 35.6565 44.3759 98 ¢ 1.6799 34.2185 53.2203 -Arial_Black.ttf 24 # 35.6338 44.3629 99 Z 1.1081 37.3644 42.0000 -Arial_Black.ttf 24 # 35.6565 44.3759 100 > 4.9185 32.6267 34.9974 -Arial_Black.ttf 24 # 35.6565 44.3759 101 ® -0.0417 43.9720 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 102 © 0.1862 43.9720 44.3759 -Arial_Black.ttf 24 # 35.6565 44.3759 103 ] 1.2361 18.3427 53.6241 -Arial_Black.ttf 24 # 35.6338 44.3629 104 é 0.0497 34.2455 44.3629 -Arial_Black.ttf 24 # 35.6338 44.3629 105 z 12.9863 28.4867 30.3629 -Arial_Black.ttf 24 # 35.6565 44.3759 106 _ 47.1994 29.1879 2.7797 -Arial_Black.ttf 24 # 35.6565 44.3759 107 ¥ 1.1384 40.4082 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 1 t 1.3073 22.4548 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 2 h 1.0284 31.8826 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 3 a 11.5095 35.4269 32.7258 -Arial_Black.ttf 25 O 42.6921 44.3629 4 n 11.7768 31.8826 31.5444 -Arial_Black.ttf 25 O 42.6921 44.3629 5 P 1.1266 34.7906 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 6 o 11.7901 34.2455 32.7258 -Arial_Black.ttf 25 O 42.6921 44.3629 7 e 11.7032 34.2455 32.7258 -Arial_Black.ttf 25 O 42.6921 44.3629 8 : 12.7361 11.6371 30.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 9 r 11.6067 23.9105 31.5444 -Arial_Black.ttf 25 O 42.6921 44.3629 10 l 1.0869 11.6371 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 11 i 1.3441 11.6371 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 12 1 -0.3410 23.9105 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 13 | 0.7693 7.2718 53.3612 -Arial_Black.ttf 25 O 42.6921 44.3629 14 N 1.2723 39.2421 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 15 f 0.1177 23.6362 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 16 g 11.8435 34.2455 44.0871 -Arial_Black.ttf 25 O 42.6921 44.3629 17 d 1.2886 32.7882 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 18 W 1.2606 59.5444 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 19 s 11.6662 31.5444 32.7258 -Arial_Black.ttf 25 O 42.6921 44.3629 20 c 11.4012 34.2455 32.7258 -Arial_Black.ttf 25 O 42.6921 44.3629 21 u 12.7040 31.6067 31.5444 -Arial_Black.ttf 25 O 42.6921 44.3629 22 3 0.1419 33.8834 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 23 ~ 14.9403 32.7258 14.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 24 # 0.0784 35.6338 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 25 O -0.0017 42.6921 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 26 ` 0.2806 14.6708 8.4532 -Arial_Black.ttf 25 O 42.6921 44.3629 27 @ -0.1249 43.1815 49.5147 -Arial_Black.ttf 25 O 42.6921 44.3629 28 F 1.0401 31.6067 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 29 S -0.0622 37.5485 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 30 p 11.9265 32.7882 42.9056 -Arial_Black.ttf 25 O 42.6921 44.3629 31 “ 0.0223 25.6371 23.2742 -Arial_Black.ttf 25 O 42.6921 44.3629 32 % 0.0281 52.3055 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 33 £ -0.2712 34.8768 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 34 . 31.7416 11.6371 11.6371 -Arial_Black.ttf 25 O 42.6921 44.3629 35 2 0.0699 33.6075 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 36 5 1.7757 33.8834 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 37 m 11.7871 51.5206 31.5444 -Arial_Black.ttf 25 O 42.6921 44.3629 38 V 1.3582 45.1494 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 39 6 -0.1213 33.8834 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 40 w 12.7609 54.8185 30.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 41 T 0.9757 38.4556 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 42 M 0.8369 45.8497 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 43 G 0.1303 42.5435 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 44 b 0.8324 32.7882 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 45 9 0.0794 33.8834 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 46 ; 12.7908 11.6371 42.9056 -Arial_Black.ttf 25 O 42.6921 44.3629 47 D 1.3577 38.3349 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 48 L 0.9933 32.0311 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 49 y 12.6109 35.7890 42.9056 -Arial_Black.ttf 25 O 42.6921 44.3629 50 ‘ 0.3109 11.6371 23.2742 -Arial_Black.ttf 25 O 42.6921 44.3629 51 \ 0.1359 16.3629 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 52 R 1.3278 41.2135 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 53 < 4.5920 32.6051 34.9975 -Arial_Black.ttf 25 O 42.6921 44.3629 54 4 -0.0057 38.0591 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 55 8 0.2385 33.8834 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 56 0 0.0264 33.8834 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 57 A 1.1851 45.5444 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 58 E 1.3411 34.5147 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 59 B 1.2405 38.3349 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 60 v 13.0235 35.7874 30.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 61 k 1.2355 35.5476 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 62 J 1.1793 33.1847 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 63 U 1.2572 39.2421 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 64 j 1.1052 18.3653 54.5427 -Arial_Black.ttf 25 O 42.6921 44.3629 65 ( -0.0318 17.4252 56.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 66 7 1.0942 33.6075 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 67 § 0.2881 34.2455 55.7241 -Arial_Black.ttf 25 O 42.6921 44.3629 68 $ -2.5233 35.2718 52.4211 -Arial_Black.ttf 25 O 42.6921 44.3629 69 € -0.1597 38.1503 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 70 / -0.1558 16.3629 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 71 C 0.2680 39.9114 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 72 * 0.0967 22.1511 20.6009 -Arial_Black.ttf 25 O 42.6921 44.3629 73 ” 0.1993 25.6371 23.2742 -Arial_Black.ttf 25 O 42.6921 44.3629 74 ? 0.0048 31.8202 43.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 75 { -0.0546 21.5147 56.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 76 } -0.0864 21.5147 56.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 77 , 31.6585 11.6371 24.1798 -Arial_Black.ttf 25 O 42.6921 44.3629 78 I 1.3806 12.8185 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 79 ° 0.0500 14.1207 14.1207 -Arial_Black.ttf 25 O 42.6921 44.3629 80 K 1.4952 43.9679 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 81 H 1.4442 39.2421 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 82 q 11.8372 32.7882 42.9056 -Arial_Black.ttf 25 O 42.6921 44.3629 83 & -0.0928 46.8516 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 84 ’ -0.0743 11.6371 23.2742 -Arial_Black.ttf 25 O 42.6921 44.3629 85 [ 1.2394 18.3653 53.6371 -Arial_Black.ttf 25 O 42.6921 44.3629 86 - 23.5599 16.9080 9.2397 -Arial_Black.ttf 25 O 42.6921 44.3629 87 Y 1.3081 45.5444 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 88 Q 0.1322 44.1494 48.3317 -Arial_Black.ttf 25 O 42.6921 44.3629 89 " 1.3416 26.8185 15.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 90 ! 1.1322 11.6371 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 91 x 12.6399 38.7021 30.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 92 ) 0.1061 17.4252 56.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 93 = 11.0264 30.9080 23.2397 -Arial_Black.ttf 25 O 42.6921 44.3629 94 + 6.4967 31.4237 31.4237 -Arial_Black.ttf 25 O 42.6921 44.3629 95 X 1.1895 45.1494 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 96 » 14.7204 31.1494 26.3941 -Arial_Black.ttf 25 O 42.6921 44.3629 97 ' 1.3345 11.6371 15.1815 -Arial_Black.ttf 25 O 42.6921 44.3629 98 ¢ 1.3235 34.2455 53.1782 -Arial_Black.ttf 25 O 42.6921 44.3629 99 Z 1.3474 37.3644 42.0000 -Arial_Black.ttf 25 O 42.6921 44.3629 100 > 4.6429 32.6051 34.9975 -Arial_Black.ttf 25 O 42.6921 44.3629 101 ® 0.1623 43.9385 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 102 © 0.0779 43.9385 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 103 ] 0.9813 18.3653 53.6371 -Arial_Black.ttf 25 O 42.6921 44.3629 104 é -0.0162 34.2455 44.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 105 z 13.0769 28.4867 30.3629 -Arial_Black.ttf 25 O 42.6921 44.3629 106 _ 47.1412 29.1815 2.7873 -Arial_Black.ttf 25 O 42.6921 44.3629 107 ¥ 0.9902 40.3941 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 1 t 1.2557 22.4548 43.1815 -Arial_Black.ttf 26 ` 14.6708 8.4532 2 h 1.0522 31.8826 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 3 a 11.6358 35.4269 32.7258 -Arial_Black.ttf 26 ` 14.6708 8.4532 4 n 11.7897 31.8826 31.5444 -Arial_Black.ttf 26 ` 14.6708 8.4532 5 P 1.2669 34.7906 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 6 o 11.5449 34.2455 32.7258 -Arial_Black.ttf 26 ` 14.6708 8.4532 7 e 11.5590 34.2455 32.7258 -Arial_Black.ttf 26 ` 14.6708 8.4532 8 : 12.7747 11.6371 30.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 9 r 11.7996 23.9105 31.5444 -Arial_Black.ttf 26 ` 14.6708 8.4532 10 l 1.1054 11.6371 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 11 i 1.0414 11.6371 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 12 1 -0.1159 23.9105 43.1815 -Arial_Black.ttf 26 ` 14.6708 8.4532 13 | 1.4409 7.2718 53.3612 -Arial_Black.ttf 26 ` 14.6708 8.4532 14 N 0.9818 39.2421 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 15 f -0.0009 23.6362 43.1815 -Arial_Black.ttf 26 ` 14.6708 8.4532 16 g 11.8782 34.2455 44.0871 -Arial_Black.ttf 26 ` 14.6708 8.4532 17 d 1.1858 32.7882 43.1815 -Arial_Black.ttf 26 ` 14.6708 8.4532 18 W 1.0723 59.5444 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 19 s 11.6854 31.5444 32.7258 -Arial_Black.ttf 26 ` 14.6708 8.4532 20 c 11.6930 34.2455 32.7258 -Arial_Black.ttf 26 ` 14.6708 8.4532 21 u 12.9824 31.6067 31.5444 -Arial_Black.ttf 26 ` 14.6708 8.4532 22 3 -0.0415 33.8834 44.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 23 ~ 15.3489 32.7258 14.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 24 # 0.3138 35.6338 44.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 25 O -0.2134 42.6921 44.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 26 ` 0.0358 14.6708 8.4532 -Arial_Black.ttf 26 ` 14.6708 8.4532 27 @ 0.1249 43.1815 49.5147 -Arial_Black.ttf 26 ` 14.6708 8.4532 28 F 1.3443 31.6067 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 29 S -0.2178 37.5485 44.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 30 p 11.6084 32.7882 42.9056 -Arial_Black.ttf 26 ` 14.6591 8.4694 31 “ 0.0812 25.6241 23.2483 -Arial_Black.ttf 26 ` 14.6591 8.4694 32 % -0.3477 52.3164 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 33 £ 0.0038 34.8724 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 34 . 31.3487 11.6241 11.6241 -Arial_Black.ttf 26 ` 14.6591 8.4694 35 2 0.0135 33.5935 43.1879 -Arial_Black.ttf 26 ` 14.6591 8.4694 36 5 1.2352 33.8435 43.1879 -Arial_Black.ttf 26 ` 14.6708 8.4532 37 m 11.6344 51.5206 31.5444 -Arial_Black.ttf 26 ` 14.6708 8.4532 38 V 1.2297 45.1494 42.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 39 6 0.0045 33.8435 44.3759 -Arial_Black.ttf 26 ` 14.6708 8.4532 40 w 12.8853 54.8185 30.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 41 T 1.4726 38.4556 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 42 M 1.0565 45.8497 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 43 G 0.1956 42.5435 44.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 44 b 1.1858 32.7882 43.1815 -Arial_Black.ttf 26 ` 14.6591 8.4694 45 9 0.0315 33.8435 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 46 ; 12.6220 11.6241 42.9379 -Arial_Black.ttf 26 ` 14.6708 8.4532 47 D 1.3031 38.3349 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 48 L 1.1541 32.0311 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 49 y 12.5743 35.7890 42.9056 -Arial_Black.ttf 26 ` 14.6591 8.4694 50 ‘ 0.0455 11.6241 23.2483 -Arial_Black.ttf 26 ` 14.6591 8.4694 51 \ 0.0857 16.3759 44.3759 -Arial_Black.ttf 26 ` 14.6708 8.4532 52 R 1.2625 41.2135 42.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 53 < 4.8395 32.6267 34.9974 -Arial_Black.ttf 26 ` 14.6591 8.4694 54 4 -0.1158 38.0612 43.1879 -Arial_Black.ttf 26 ` 14.6591 8.4694 55 8 -0.0045 33.8435 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 56 0 -0.0357 33.8435 44.3759 -Arial_Black.ttf 26 ` 14.6708 8.4532 57 A 1.3520 45.5444 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 58 E 1.0978 34.5147 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 59 B 1.2428 38.3349 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 60 v 12.9894 35.7874 30.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 61 k 1.4689 35.5476 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 62 J 1.5121 33.1847 43.1815 -Arial_Black.ttf 26 ` 14.6708 8.4532 63 U 1.2419 39.2421 43.1815 -Arial_Black.ttf 26 ` 14.6708 8.4532 64 j 1.3001 18.3653 54.5427 -Arial_Black.ttf 26 ` 14.6591 8.4694 65 ( -0.1186 17.4047 56.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 66 7 1.1945 33.5935 42.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 67 § 0.0032 34.2185 55.7500 -Arial_Black.ttf 26 ` 14.6591 8.4694 68 $ -2.7797 35.2815 52.4362 -Arial_Black.ttf 26 ` 14.6591 8.4694 69 € -0.0557 38.1914 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 70 / -0.2318 16.3759 44.3759 -Arial_Black.ttf 26 ` 14.6708 8.4532 71 C -0.1230 39.9114 44.3629 -Arial_Black.ttf 26 ` 14.6591 8.4694 72 * 0.0944 22.1565 20.6224 -Arial_Black.ttf 26 ` 14.6591 8.4694 73 ” 0.1846 25.6241 23.2483 -Arial_Black.ttf 26 ` 14.6591 8.4694 74 ? 0.1658 31.8138 43.1879 -Arial_Black.ttf 26 ` 14.6591 8.4694 75 { 0.0871 21.4974 56.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 76 } -0.0185 21.4974 56.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 77 , 31.3501 11.6241 24.1862 -Arial_Black.ttf 26 ` 14.6708 8.4532 78 I 1.2656 12.8185 42.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 79 ° -0.0330 14.1250 14.1250 -Arial_Black.ttf 26 ` 14.6708 8.4532 80 K 1.0932 43.9679 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 81 H 1.0541 39.2421 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 82 q 11.5073 32.7882 42.9056 -Arial_Black.ttf 26 ` 14.6591 8.4694 83 & -0.0857 46.8820 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 84 ’ 0.2221 11.6241 23.2483 -Arial_Black.ttf 26 ` 14.6591 8.4694 85 [ 1.0988 18.3427 53.6241 -Arial_Black.ttf 26 ` 14.6591 8.4694 86 - 23.0797 16.9047 9.2483 -Arial_Black.ttf 26 ` 14.6708 8.4532 87 Y 0.9639 45.5444 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 88 Q -0.3213 44.1494 48.3317 -Arial_Black.ttf 26 ` 14.6591 8.4694 89 " 1.1685 26.8121 15.1879 -Arial_Black.ttf 26 ` 14.6591 8.4694 90 ! 1.2671 11.6241 42.0000 -Arial_Black.ttf 26 ` 14.6708 8.4532 91 x 12.9050 38.7021 30.3629 -Arial_Black.ttf 26 ` 14.6591 8.4694 92 ) 0.1753 17.4047 56.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 93 = 10.6921 30.9047 23.2483 -Arial_Black.ttf 26 ` 14.6591 8.4694 94 + 6.5418 31.4388 31.4388 -Arial_Black.ttf 26 ` 14.6708 8.4532 95 X 1.1295 45.1494 42.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 96 » 14.7576 31.1547 26.4082 -Arial_Black.ttf 26 ` 14.6591 8.4694 97 ' 1.1018 11.6241 15.1879 -Arial_Black.ttf 26 ` 14.6591 8.4694 98 ¢ 1.4977 34.2185 53.2203 -Arial_Black.ttf 26 ` 14.6708 8.4532 99 Z 1.1031 37.3644 42.0000 -Arial_Black.ttf 26 ` 14.6591 8.4694 100 > 4.5373 32.6267 34.9974 -Arial_Black.ttf 26 ` 14.6591 8.4694 101 ® -0.0871 43.9720 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 102 © 0.0111 43.9720 44.3759 -Arial_Black.ttf 26 ` 14.6591 8.4694 103 ] 1.1917 18.3427 53.6241 -Arial_Black.ttf 26 ` 14.6708 8.4532 104 é 0.0559 34.2455 44.3629 -Arial_Black.ttf 26 ` 14.6708 8.4532 105 z 12.7523 28.4867 30.3629 -Arial_Black.ttf 26 ` 14.6591 8.4694 106 _ 47.3260 29.1879 2.7797 -Arial_Black.ttf 26 ` 14.6591 8.4694 107 ¥ 0.9729 40.4082 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 1 t 1.1907 22.4548 43.1815 -Arial_Black.ttf 27 @ 43.1815 49.5147 2 h 1.1757 31.8826 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 3 a 12.0541 35.4269 32.7258 -Arial_Black.ttf 27 @ 43.1815 49.5147 4 n 11.8196 31.8826 31.5444 -Arial_Black.ttf 27 @ 43.1815 49.5147 5 P 1.1376 34.7906 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 6 o 11.4857 34.2455 32.7258 -Arial_Black.ttf 27 @ 43.1815 49.5147 7 e 11.6366 34.2455 32.7258 -Arial_Black.ttf 27 @ 43.1815 49.5147 8 : 12.6912 11.6371 30.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 9 r 11.4695 23.9105 31.5444 -Arial_Black.ttf 27 @ 43.1815 49.5147 10 l 1.2234 11.6371 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 11 i 1.1018 11.6371 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 12 1 0.0706 23.9105 43.1815 -Arial_Black.ttf 27 @ 43.1815 49.5147 13 | 1.3966 7.2718 53.3612 -Arial_Black.ttf 27 @ 43.1815 49.5147 14 N 1.3392 39.2421 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 15 f -0.1691 23.6362 43.1815 -Arial_Black.ttf 27 @ 43.1815 49.5147 16 g 11.9472 34.2455 44.0871 -Arial_Black.ttf 27 @ 43.1815 49.5147 17 d 1.2133 32.7882 43.1815 -Arial_Black.ttf 27 @ 43.1815 49.5147 18 W 0.7620 59.5444 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 19 s 11.5803 31.5444 32.7258 -Arial_Black.ttf 27 @ 43.1815 49.5147 20 c 11.8859 34.2455 32.7258 -Arial_Black.ttf 27 @ 43.1815 49.5147 21 u 12.5463 31.6067 31.5444 -Arial_Black.ttf 27 @ 43.1815 49.5147 22 3 -0.1246 33.8834 44.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 23 ~ 15.1426 32.7258 14.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 24 # 0.1213 35.6338 44.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 25 O -0.1557 42.6921 44.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 26 ` -0.0094 14.6708 8.4532 -Arial_Black.ttf 27 @ 43.1815 49.5147 27 @ 0.2810 43.1815 49.5147 -Arial_Black.ttf 27 @ 43.1815 49.5147 28 F 1.3014 31.6067 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 29 S 0.3533 37.5485 44.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 30 p 11.4451 32.7882 42.9056 -Arial_Black.ttf 27 @ 43.1879 49.4974 31 “ -0.1302 25.6241 23.2483 -Arial_Black.ttf 27 @ 43.1879 49.4974 32 % 0.0065 52.3164 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 33 £ -0.2193 34.8724 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 34 . 31.5697 11.6241 11.6241 -Arial_Black.ttf 27 @ 43.1879 49.4974 35 2 0.0692 33.5935 43.1879 -Arial_Black.ttf 27 @ 43.1879 49.4974 36 5 1.0651 33.8435 43.1879 -Arial_Black.ttf 27 @ 43.1815 49.5147 37 m 11.3700 51.5206 31.5444 -Arial_Black.ttf 27 @ 43.1815 49.5147 38 V 1.2284 45.1494 42.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 39 6 -0.1585 33.8435 44.3759 -Arial_Black.ttf 27 @ 43.1815 49.5147 40 w 13.2105 54.8185 30.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 41 T 1.2598 38.4556 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 42 M 1.1383 45.8497 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 43 G 0.0730 42.5435 44.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 44 b 1.1636 32.7882 43.1815 -Arial_Black.ttf 27 @ 43.1879 49.4974 45 9 0.0464 33.8435 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 46 ; 12.6847 11.6241 42.9379 -Arial_Black.ttf 27 @ 43.1815 49.5147 47 D 0.9889 38.3349 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 48 L 1.3872 32.0311 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 49 y 12.7402 35.7890 42.9056 -Arial_Black.ttf 27 @ 43.1879 49.4974 50 ‘ -0.0275 11.6241 23.2483 -Arial_Black.ttf 27 @ 43.1879 49.4974 51 \ -0.0365 16.3759 44.3759 -Arial_Black.ttf 27 @ 43.1815 49.5147 52 R 1.1845 41.2135 42.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 53 < 4.7452 32.6267 34.9974 -Arial_Black.ttf 27 @ 43.1879 49.4974 54 4 0.0561 38.0612 43.1879 -Arial_Black.ttf 27 @ 43.1879 49.4974 55 8 -0.2034 33.8435 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 56 0 0.1003 33.8435 44.3759 -Arial_Black.ttf 27 @ 43.1815 49.5147 57 A 1.2066 45.5444 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 58 E 1.1436 34.5147 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 59 B 1.2113 38.3349 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 60 v 12.9205 35.7874 30.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 61 k 1.3769 35.5476 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 62 J 1.0866 33.1847 43.1815 -Arial_Black.ttf 27 @ 43.1815 49.5147 63 U 1.5783 39.2421 43.1815 -Arial_Black.ttf 27 @ 43.1815 49.5147 64 j 1.1268 18.3653 54.5427 -Arial_Black.ttf 27 @ 43.1879 49.4974 65 ( 0.2463 17.4047 56.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 66 7 0.8091 33.5935 42.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 67 § -0.0172 34.2185 55.7500 -Arial_Black.ttf 27 @ 43.1879 49.4974 68 $ -2.6639 35.2815 52.4362 -Arial_Black.ttf 27 @ 43.1879 49.4974 69 € -0.1329 38.1914 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 70 / -0.3770 16.3759 44.3759 -Arial_Black.ttf 27 @ 43.1815 49.5147 71 C 0.1195 39.9114 44.3629 -Arial_Black.ttf 27 @ 43.1879 49.4974 72 * 0.1034 22.1565 20.6224 -Arial_Black.ttf 27 @ 43.1879 49.4974 73 ” -0.1248 25.6241 23.2483 -Arial_Black.ttf 27 @ 43.1879 49.4974 74 ? 0.2929 31.8138 43.1879 -Arial_Black.ttf 27 @ 43.1879 49.4974 75 { 0.2085 21.4974 56.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 76 } 0.2026 21.4974 56.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 77 , 31.7088 11.6241 24.1862 -Arial_Black.ttf 27 @ 43.1815 49.5147 78 I 1.0471 12.8185 42.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 79 ° -0.1190 14.1250 14.1250 -Arial_Black.ttf 27 @ 43.1815 49.5147 80 K 1.2123 43.9679 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 81 H 1.1497 39.2421 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 82 q 11.6782 32.7882 42.9056 -Arial_Black.ttf 27 @ 43.1879 49.4974 83 & -0.0354 46.8820 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 84 ’ -0.2703 11.6241 23.2483 -Arial_Black.ttf 27 @ 43.1879 49.4974 85 [ 1.2519 18.3427 53.6241 -Arial_Black.ttf 27 @ 43.1879 49.4974 86 - 23.2711 16.9047 9.2483 -Arial_Black.ttf 27 @ 43.1815 49.5147 87 Y 0.9456 45.5444 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 88 Q -0.0170 44.1494 48.3317 -Arial_Black.ttf 27 @ 43.1879 49.4974 89 " 1.1018 26.8121 15.1879 -Arial_Black.ttf 27 @ 43.1879 49.4974 90 ! 1.2296 11.6241 42.0000 -Arial_Black.ttf 27 @ 43.1815 49.5147 91 x 12.9210 38.7021 30.3629 -Arial_Black.ttf 27 @ 43.1879 49.4974 92 ) -0.0593 17.4047 56.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 93 = 10.7910 30.9047 23.2483 -Arial_Black.ttf 27 @ 43.1879 49.4974 94 + 5.9402 31.4388 31.4388 -Arial_Black.ttf 27 @ 43.1815 49.5147 95 X 1.1470 45.1494 42.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 96 » 14.8155 31.1547 26.4082 -Arial_Black.ttf 27 @ 43.1879 49.4974 97 ' 1.4628 11.6241 15.1879 -Arial_Black.ttf 27 @ 43.1879 49.4974 98 ¢ 1.6248 34.2185 53.2203 -Arial_Black.ttf 27 @ 43.1815 49.5147 99 Z 1.0298 37.3644 42.0000 -Arial_Black.ttf 27 @ 43.1879 49.4974 100 > 4.6026 32.6267 34.9974 -Arial_Black.ttf 27 @ 43.1879 49.4974 101 ® -0.0162 43.9720 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 102 © -0.1357 43.9720 44.3759 -Arial_Black.ttf 27 @ 43.1879 49.4974 103 ] 0.9121 18.3427 53.6241 -Arial_Black.ttf 27 @ 43.1815 49.5147 104 é -0.1455 34.2455 44.3629 -Arial_Black.ttf 27 @ 43.1815 49.5147 105 z 12.7858 28.4867 30.3629 -Arial_Black.ttf 27 @ 43.1879 49.4974 106 _ 47.5208 29.1879 2.7797 -Arial_Black.ttf 27 @ 43.1879 49.4974 107 ¥ 1.3138 40.4082 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 1 t 0.1854 22.4548 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 2 h -0.1929 31.8826 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 3 a 10.4066 35.4269 32.7258 -Arial_Black.ttf 28 F 31.6067 42.0000 4 n 10.5650 31.8826 31.5444 -Arial_Black.ttf 28 F 31.6067 42.0000 5 P 0.0618 34.7906 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 6 o 10.2628 34.2455 32.7258 -Arial_Black.ttf 28 F 31.6067 42.0000 7 e 10.0748 34.2455 32.7258 -Arial_Black.ttf 28 F 31.6067 42.0000 8 : 11.4475 11.6371 30.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 9 r 10.4154 23.9105 31.5444 -Arial_Black.ttf 28 F 31.6067 42.0000 10 l -0.1862 11.6371 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 11 i -0.3136 11.6371 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 12 1 -1.1413 23.9105 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 13 | 0.0550 7.2718 53.3612 -Arial_Black.ttf 28 F 31.6067 42.0000 14 N 0.0068 39.2421 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 15 f -0.9243 23.6362 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 16 g 10.2516 34.2455 44.0871 -Arial_Black.ttf 28 F 31.6067 42.0000 17 d 0.1088 32.7882 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 18 W -0.0057 59.5444 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 19 s 10.3367 31.5444 32.7258 -Arial_Black.ttf 28 F 31.6067 42.0000 20 c 10.3254 34.2455 32.7258 -Arial_Black.ttf 28 F 31.6067 42.0000 21 u 11.7939 31.6067 31.5444 -Arial_Black.ttf 28 F 31.6067 42.0000 22 3 -1.0401 33.8834 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 23 ~ 13.8174 32.7258 14.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 24 # -1.1747 35.6338 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 25 O -1.2606 42.6921 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 26 ` -1.0786 14.6708 8.4532 -Arial_Black.ttf 28 F 31.6067 42.0000 27 @ -1.1291 43.1815 49.5147 -Arial_Black.ttf 28 F 31.6067 42.0000 28 F -0.2533 31.6067 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 29 S -1.2965 37.5485 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 30 p 10.2480 32.7882 42.9056 -Arial_Black.ttf 28 F 31.6067 42.0000 31 “ -1.2567 25.6371 23.2742 -Arial_Black.ttf 28 F 31.6067 42.0000 32 % -1.3595 52.3055 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 33 £ -1.2159 34.8768 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 34 . 30.4162 11.6371 11.6371 -Arial_Black.ttf 28 F 31.6067 42.0000 35 2 -0.9367 33.6075 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 36 5 -0.1874 33.8834 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 37 m 10.6087 51.5206 31.5444 -Arial_Black.ttf 28 F 31.6067 42.0000 38 V 0.1321 45.1494 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 39 6 -1.4304 33.8834 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 40 w 11.5788 54.8185 30.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 41 T 0.1317 38.4556 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 42 M -0.0068 45.8497 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 43 G -1.0413 42.5435 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 44 b -0.1701 32.7882 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 45 9 -1.2773 33.8834 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 46 ; 11.8407 11.6371 42.9056 -Arial_Black.ttf 28 F 31.6067 42.0000 47 D -0.0024 38.3349 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 48 L 0.1303 32.0311 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 49 y 11.7249 35.7890 42.9056 -Arial_Black.ttf 28 F 31.6067 42.0000 50 ‘ -1.1245 11.6371 23.2742 -Arial_Black.ttf 28 F 31.6067 42.0000 51 \ -1.1764 16.3629 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 52 R -0.3374 41.2135 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 53 < 3.8783 32.6051 34.9975 -Arial_Black.ttf 28 F 31.6067 42.0000 54 4 -1.1219 38.0591 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 55 8 -1.1653 33.8834 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 56 0 -1.0843 33.8834 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 57 A 0.3302 45.5444 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 58 E 0.1428 34.5147 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 59 B 0.3270 38.3349 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 60 v 11.7458 35.7874 30.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 61 k -0.1678 35.5476 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 62 J -0.2036 33.1847 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 63 U 0.0402 39.2421 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 64 j 0.4615 18.3653 54.5427 -Arial_Black.ttf 28 F 31.6067 42.0000 65 ( -1.2055 17.4252 56.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 66 7 0.0116 33.6075 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 67 § -1.3592 34.2455 55.7241 -Arial_Black.ttf 28 F 31.6067 42.0000 68 $ -4.1920 35.2718 52.4211 -Arial_Black.ttf 28 F 31.6067 42.0000 69 € -1.3014 38.1503 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 70 / -1.2347 16.3629 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 71 C -1.2305 39.9114 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 72 * -1.0856 22.1511 20.6009 -Arial_Black.ttf 28 F 31.6067 42.0000 73 ” -1.4110 25.6371 23.2742 -Arial_Black.ttf 28 F 31.6067 42.0000 74 ? -1.3811 31.8202 43.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 75 { -1.2236 21.5147 56.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 76 } -1.3144 21.5147 56.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 77 , 30.4068 11.6371 24.1798 -Arial_Black.ttf 28 F 31.6067 42.0000 78 I -0.1718 12.8185 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 79 ° -1.0610 14.1207 14.1207 -Arial_Black.ttf 28 F 31.6067 42.0000 80 K -0.3955 43.9679 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 81 H -0.0627 39.2421 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 82 q 10.5032 32.7882 42.9056 -Arial_Black.ttf 28 F 31.6067 42.0000 83 & -0.9733 46.8516 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 84 ’ -1.2647 11.6371 23.2742 -Arial_Black.ttf 28 F 31.6067 42.0000 85 [ 0.1858 18.3653 53.6371 -Arial_Black.ttf 28 F 31.6067 42.0000 86 - 22.2164 16.9080 9.2397 -Arial_Black.ttf 28 F 31.6067 42.0000 87 Y -0.0877 45.5444 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 88 Q -1.1125 44.1494 48.3317 -Arial_Black.ttf 28 F 31.6067 42.0000 89 " 0.0828 26.8185 15.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 90 ! 0.0111 11.6371 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 91 x 11.6465 38.7021 30.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 92 ) -1.3748 17.4252 56.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 93 = 9.5983 30.9080 23.2397 -Arial_Black.ttf 28 F 31.6067 42.0000 94 + 5.4648 31.4237 31.4237 -Arial_Black.ttf 28 F 31.6067 42.0000 95 X 0.1957 45.1494 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 96 » 13.7403 31.1494 26.3941 -Arial_Black.ttf 28 F 31.6067 42.0000 97 ' 0.0479 11.6371 15.1815 -Arial_Black.ttf 28 F 31.6067 42.0000 98 ¢ 0.2614 34.2455 53.1782 -Arial_Black.ttf 28 F 31.6067 42.0000 99 Z -0.2522 37.3644 42.0000 -Arial_Black.ttf 28 F 31.6067 42.0000 100 > 3.5904 32.6051 34.9975 -Arial_Black.ttf 28 F 31.6067 42.0000 101 ® -1.2039 43.9385 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 102 © -1.2098 43.9385 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 103 ] -0.0859 18.3653 53.6371 -Arial_Black.ttf 28 F 31.6067 42.0000 104 é -1.2217 34.2455 44.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 105 z 11.5252 28.4867 30.3629 -Arial_Black.ttf 28 F 31.6067 42.0000 106 _ 46.1515 29.1815 2.7873 -Arial_Black.ttf 28 F 31.6067 42.0000 107 ¥ 0.0348 40.3941 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 1 t 1.2244 22.4548 43.1815 -Arial_Black.ttf 29 S 37.5485 44.3629 2 h 1.0777 31.8826 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 3 a 11.6729 35.4269 32.7258 -Arial_Black.ttf 29 S 37.5485 44.3629 4 n 11.5852 31.8826 31.5444 -Arial_Black.ttf 29 S 37.5485 44.3629 5 P 1.3282 34.7906 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 6 o 11.8649 34.2455 32.7258 -Arial_Black.ttf 29 S 37.5485 44.3629 7 e 11.3410 34.2455 32.7258 -Arial_Black.ttf 29 S 37.5485 44.3629 8 : 12.8651 11.6371 30.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 9 r 11.1582 23.9105 31.5444 -Arial_Black.ttf 29 S 37.5485 44.3629 10 l 1.1129 11.6371 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 11 i 1.3224 11.6371 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 12 1 -0.0278 23.9105 43.1815 -Arial_Black.ttf 29 S 37.5485 44.3629 13 | 1.0492 7.2718 53.3612 -Arial_Black.ttf 29 S 37.5485 44.3629 14 N 1.8637 39.2421 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 15 f 0.0519 23.6362 43.1815 -Arial_Black.ttf 29 S 37.5485 44.3629 16 g 11.6334 34.2455 44.0871 -Arial_Black.ttf 29 S 37.5485 44.3629 17 d 1.3314 32.7882 43.1815 -Arial_Black.ttf 29 S 37.5485 44.3629 18 W 1.1763 59.5444 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 19 s 11.7733 31.5444 32.7258 -Arial_Black.ttf 29 S 37.5485 44.3629 20 c 11.3480 34.2455 32.7258 -Arial_Black.ttf 29 S 37.5485 44.3629 21 u 12.3971 31.6067 31.5444 -Arial_Black.ttf 29 S 37.5485 44.3629 22 3 0.1714 33.8834 44.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 23 ~ 15.3885 32.7258 14.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 24 # 0.3446 35.6338 44.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 25 O 0.2429 42.6921 44.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 26 ` -0.0667 14.6708 8.4532 -Arial_Black.ttf 29 S 37.5485 44.3629 27 @ -0.1350 43.1815 49.5147 -Arial_Black.ttf 29 S 37.5485 44.3629 28 F 1.1614 31.6067 42.0000 -Arial_Black.ttf 29 S 37.5485 44.3629 29 S 0.2470 37.5485 44.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 30 p 11.6371 32.7882 42.9056 -Arial_Black.ttf 29 S 37.5485 44.3629 31 “ -0.1256 25.6371 23.2742 -Arial_Black.ttf 29 S 37.5485 44.3629 32 % -0.0764 52.3055 44.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 33 £ -0.2753 34.8768 44.3629 -Arial_Black.ttf 29 S 37.5485 44.3629 34 . 31.1391 11.6371 11.6371 -Arial_Black.ttf 29 S 37.5485 44.3629 35 2 -0.0474 33.6075 43.1815 -Arial_Black.ttf 29 S 37.5485 44.3629 36 5 0.7259 33.8834 43.1815 -Arial_Black.ttf 29 S 37.5485 44.3629 37 m 11.9486 51.5206 31.5444 -Arial_Black.ttf 29 S 37.5485 44.3629 38 V 1.3793 45.1494 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 39 6 -0.0464 33.8435 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 40 w 12.9417 54.8121 30.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 41 T 0.8921 38.4362 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 42 M 0.7531 45.8086 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 43 G -0.1014 42.5629 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 44 b 1.1341 32.7806 43.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 45 9 0.1915 33.8435 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 46 ; 13.0048 11.6241 42.9379 -Arial_Black.ttf 29 S 37.5323 44.3759 47 D 0.8587 38.3112 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 48 L 1.2810 31.9965 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 49 y 12.6197 35.7815 42.9379 -Arial_Black.ttf 29 S 37.5323 44.3759 50 ‘ 0.0895 11.6241 23.2483 -Arial_Black.ttf 29 S 37.5323 44.3759 51 \ -0.3277 16.3759 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 52 R 1.2431 41.2212 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 53 < 4.6441 32.6267 34.9974 -Arial_Black.ttf 29 S 37.5323 44.3759 54 4 -0.1294 38.0612 43.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 55 8 0.0824 33.8435 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 56 0 -0.0882 33.8435 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 57 A 1.2788 45.5638 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 58 E 1.0995 34.4974 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 59 B 1.0747 38.3112 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 60 v 12.5470 35.8156 30.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 61 k 1.3191 35.5315 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 62 J 1.3385 33.1556 43.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 63 U 1.3971 39.2150 43.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 64 j 0.9853 18.3427 54.5621 -Arial_Black.ttf 29 S 37.5323 44.3759 65 ( -0.0018 17.4047 56.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 66 7 1.0409 33.5935 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 67 § -0.0073 34.2185 55.7500 -Arial_Black.ttf 29 S 37.5323 44.3759 68 $ -2.7297 35.2815 52.4362 -Arial_Black.ttf 29 S 37.5323 44.3759 69 € -0.0810 38.1914 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 70 / 0.1024 16.3759 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 71 C 0.1658 39.9082 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 72 * -0.0018 22.1565 20.6224 -Arial_Black.ttf 29 S 37.5323 44.3759 73 ” 0.0903 25.6241 23.2483 -Arial_Black.ttf 29 S 37.5323 44.3759 74 ? -0.1446 31.8138 43.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 75 { 0.0325 21.4974 56.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 76 } 0.3313 21.4974 56.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 77 , 31.5253 11.6241 24.1862 -Arial_Black.ttf 29 S 37.5323 44.3759 78 I 1.6570 12.8121 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 79 ° -0.1214 14.1250 14.1250 -Arial_Black.ttf 29 S 37.5323 44.3759 80 K 0.9246 43.9668 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 81 H 1.2903 39.2150 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 82 q 11.5294 32.7806 42.9379 -Arial_Black.ttf 29 S 37.5323 44.3759 83 & -0.1432 46.8820 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 84 ’ -0.0480 11.6241 23.2483 -Arial_Black.ttf 29 S 37.5323 44.3759 85 [ 1.4855 18.3427 53.6241 -Arial_Black.ttf 29 S 37.5323 44.3759 86 - 23.2059 16.9047 9.2483 -Arial_Black.ttf 29 S 37.5323 44.3759 87 Y 1.3603 45.5638 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 88 Q -0.1395 44.1547 48.3435 -Arial_Black.ttf 29 S 37.5323 44.3759 89 " 1.1782 26.8121 15.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 90 ! 1.4444 11.6241 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 91 x 12.5654 38.6914 30.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 92 ) -0.0597 17.4047 56.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 93 = 10.6057 30.9047 23.2483 -Arial_Black.ttf 29 S 37.5323 44.3759 94 + 6.2177 31.4388 31.4388 -Arial_Black.ttf 29 S 37.5323 44.3759 95 X 0.9520 45.1547 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 96 » 14.8277 31.1547 26.4082 -Arial_Black.ttf 29 S 37.5323 44.3759 97 ' 1.2510 11.6241 15.1879 -Arial_Black.ttf 29 S 37.5323 44.3759 98 ¢ 1.5657 34.2185 53.2203 -Arial_Black.ttf 29 S 37.5323 44.3759 99 Z 0.8337 37.3059 42.0000 -Arial_Black.ttf 29 S 37.5323 44.3759 100 > 4.4707 32.6267 34.9974 -Arial_Black.ttf 29 S 37.5323 44.3759 101 ® 0.2873 43.9720 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 102 © 0.0606 43.9720 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 103 ] 1.0251 18.3427 53.6241 -Arial_Black.ttf 29 S 37.5323 44.3759 104 é 0.1610 34.2185 44.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 105 z 12.8960 28.4327 30.3759 -Arial_Black.ttf 29 S 37.5323 44.3759 106 _ 47.2060 29.1879 2.7797 -Arial_Black.ttf 29 S 37.5323 44.3759 107 ¥ 1.1229 40.4082 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 1 t -10.0715 22.4353 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 2 h -10.5566 31.8427 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 3 a 0.0774 35.4065 32.7517 -Arial_Black.ttf 30 p 32.7806 42.9379 4 n -0.0410 31.8427 31.5638 -Arial_Black.ttf 30 p 32.7806 42.9379 5 P -10.4307 34.7474 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 6 o -0.4576 34.2185 32.7517 -Arial_Black.ttf 30 p 32.7806 42.9379 7 e 0.0909 34.2185 32.7517 -Arial_Black.ttf 30 p 32.7806 42.9379 8 : 1.1902 11.6241 30.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 9 r 0.0264 23.9073 31.5638 -Arial_Black.ttf 30 p 32.7806 42.9379 10 l -10.3782 11.6241 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 11 i -10.8094 11.6241 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 12 1 -11.5389 23.9073 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 13 | -10.4779 7.2815 53.3741 -Arial_Black.ttf 30 p 32.7806 42.9379 14 N -10.6045 39.2150 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 15 f -11.7553 23.6233 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 16 g -0.2920 34.2185 44.1259 -Arial_Black.ttf 30 p 32.7806 42.9379 17 d -10.8427 32.7806 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 18 W -10.4227 59.5638 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 19 s 0.0566 31.5638 32.7517 -Arial_Black.ttf 30 p 32.7806 42.9379 20 c -0.0403 34.2185 32.7517 -Arial_Black.ttf 30 p 32.7806 42.9379 21 u 1.5833 31.5927 31.5638 -Arial_Black.ttf 30 p 32.7806 42.9379 22 3 -11.5700 33.8435 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 23 ~ 3.3872 32.7517 14.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 24 # -11.6913 35.6565 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 25 O -11.6287 42.7168 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 26 ` -11.7168 14.6591 8.4694 -Arial_Black.ttf 30 p 32.7806 42.9379 27 @ -11.7983 43.1879 49.4974 -Arial_Black.ttf 30 p 32.7806 42.9379 28 F -10.3550 31.5927 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 29 S -11.5542 37.5323 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 30 p -0.0871 32.7806 42.9379 -Arial_Black.ttf 30 p 32.7806 42.9379 31 “ -11.7771 25.6241 23.2483 -Arial_Black.ttf 30 p 32.7806 42.9379 32 % -11.5908 52.3164 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 33 £ -11.8452 34.8724 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 34 . 19.8994 11.6241 11.6241 -Arial_Black.ttf 30 p 32.7806 42.9379 35 2 -11.7330 33.5935 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 36 5 -10.2476 33.8435 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 37 m -0.0385 51.5035 31.5638 -Arial_Black.ttf 30 p 32.7806 42.9379 38 V -10.5561 45.1547 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 39 6 -11.7070 33.8435 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 40 w 1.2171 54.8121 30.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 41 T -10.3959 38.4362 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 42 M -10.7477 45.8086 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 43 G -11.7015 42.5629 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 44 b -10.4316 32.7806 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 45 9 -11.6287 33.8435 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 46 ; 1.2649 11.6241 42.9379 -Arial_Black.ttf 30 p 32.7806 42.9379 47 D -10.0997 38.3112 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 48 L -10.5289 31.9965 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 49 y 0.8857 35.7815 42.9379 -Arial_Black.ttf 30 p 32.7806 42.9379 50 ‘ -11.8892 11.6241 23.2483 -Arial_Black.ttf 30 p 32.7806 42.9379 51 \ -11.8690 16.3759 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 52 R -10.4699 41.2212 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 53 < -6.9812 32.6267 34.9974 -Arial_Black.ttf 30 p 32.7806 42.9379 54 4 -11.4472 38.0612 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 55 8 -11.6709 33.8435 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 56 0 -11.6654 33.8435 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 57 A -10.4692 45.5638 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 58 E -10.5489 34.4974 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 59 B -10.5093 38.3112 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 60 v 1.0173 35.8156 30.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 61 k -10.5923 35.5315 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 62 J -10.4445 33.1556 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 63 U -10.5882 39.2150 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 64 j -10.4834 18.3427 54.5621 -Arial_Black.ttf 30 p 32.7806 42.9379 65 ( -11.7188 17.4047 56.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 66 7 -10.3176 33.5935 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 67 § -11.5217 34.2185 55.7500 -Arial_Black.ttf 30 p 32.7806 42.9379 68 $ -14.5888 35.2815 52.4362 -Arial_Black.ttf 30 p 32.7806 42.9379 69 € -11.6223 38.1914 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 70 / -11.5825 16.3759 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 71 C -11.7200 39.9082 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 72 * -11.8470 22.1565 20.6224 -Arial_Black.ttf 30 p 32.7806 42.9379 73 ” -11.6525 25.6241 23.2483 -Arial_Black.ttf 30 p 32.7806 42.9379 74 ? -11.8924 31.8138 43.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 75 { -11.5349 21.4974 56.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 76 } -11.8475 21.4974 56.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 77 , 19.7547 11.6241 24.1862 -Arial_Black.ttf 30 p 32.7806 42.9379 78 I -10.5441 12.8121 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 79 ° -11.7043 14.1250 14.1250 -Arial_Black.ttf 30 p 32.7806 42.9379 80 K -10.6519 43.9668 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 81 H -10.5399 39.2150 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 82 q 0.0000 32.7806 42.9379 -Arial_Black.ttf 30 p 32.7806 42.9379 83 & -11.5671 46.8820 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 84 ’ -11.6241 11.6241 23.2483 -Arial_Black.ttf 30 p 32.7806 42.9379 85 [ -10.3509 18.3427 53.6241 -Arial_Black.ttf 30 p 32.7806 42.9379 86 - 11.5737 16.9047 9.2483 -Arial_Black.ttf 30 p 32.7806 42.9379 87 Y -10.3963 45.5638 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 88 Q -11.6108 44.1547 48.3435 -Arial_Black.ttf 30 p 32.7806 42.9379 89 " -10.6017 26.8121 15.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 90 ! -10.0031 11.6241 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 91 x 1.0945 38.6914 30.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 92 ) -11.3932 17.4047 56.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 93 = -0.7689 30.9047 23.2483 -Arial_Black.ttf 30 p 32.7806 42.9379 94 + -5.2725 31.4388 31.4388 -Arial_Black.ttf 30 p 32.7806 42.9379 95 X -10.2300 45.1547 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 96 » 2.8562 31.1547 26.4082 -Arial_Black.ttf 30 p 32.7806 42.9379 97 ' -10.6402 11.6241 15.1879 -Arial_Black.ttf 30 p 32.7806 42.9379 98 ¢ -10.1102 34.2185 53.2203 -Arial_Black.ttf 30 p 32.7806 42.9379 99 Z -10.4075 37.3059 42.0000 -Arial_Black.ttf 30 p 32.7806 42.9379 100 > -7.0035 32.6267 34.9974 -Arial_Black.ttf 30 p 32.7806 42.9379 101 ® -11.2894 43.9720 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 102 © -11.6691 43.9720 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 103 ] -10.3979 18.3427 53.6241 -Arial_Black.ttf 30 p 32.7806 42.9379 104 é -11.4317 34.2185 44.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 105 z 1.3285 28.4327 30.3759 -Arial_Black.ttf 30 p 32.7806 42.9379 106 _ 35.5920 29.1879 2.7797 -Arial_Black.ttf 30 p 32.7806 42.9379 107 ¥ -10.6507 40.4082 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 1 t 1.0689 22.4353 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 2 h 1.1040 31.8427 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 3 a 11.8025 35.4065 32.7517 -Arial_Black.ttf 31 “ 25.6241 23.2483 4 n 11.8462 31.8427 31.5638 -Arial_Black.ttf 31 “ 25.6241 23.2483 5 P 1.0470 34.7474 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 6 o 11.6737 34.2185 32.7517 -Arial_Black.ttf 31 “ 25.6241 23.2483 7 e 11.5002 34.2185 32.7517 -Arial_Black.ttf 31 “ 25.6371 23.2742 8 : 12.8409 11.6371 30.3629 -Arial_Black.ttf 31 “ 25.6241 23.2483 9 r 11.6098 23.9073 31.5638 -Arial_Black.ttf 31 “ 25.6241 23.2483 10 l 1.3079 11.6241 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 11 i 1.1879 11.6241 42.0000 -Arial_Black.ttf 31 “ 25.6371 23.2742 12 1 0.0854 23.9105 43.1815 -Arial_Black.ttf 31 “ 25.6371 23.2742 13 | 1.2347 7.2718 53.3612 -Arial_Black.ttf 31 “ 25.6241 23.2483 14 N 1.3479 39.2150 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 15 f 0.1409 23.6233 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 16 g 11.6241 34.2185 44.1259 -Arial_Black.ttf 31 “ 25.6241 23.2483 17 d 1.0090 32.7806 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 18 W 0.9525 59.5638 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 19 s 11.8211 31.5638 32.7517 -Arial_Black.ttf 31 “ 25.6241 23.2483 20 c 11.1995 34.2185 32.7517 -Arial_Black.ttf 31 “ 25.6241 23.2483 21 u 12.5293 31.5927 31.5638 -Arial_Black.ttf 31 “ 25.6371 23.2742 22 3 -0.3059 33.8834 44.3629 -Arial_Black.ttf 31 “ 25.6371 23.2742 23 ~ 15.0430 32.7258 14.0000 -Arial_Black.ttf 31 “ 25.6371 23.2742 24 # -0.1085 35.6338 44.3629 -Arial_Black.ttf 31 “ 25.6241 23.2483 25 O -0.3942 42.7168 44.3759 -Arial_Black.ttf 31 “ 25.6371 23.2742 26 ` -0.0349 14.6708 8.4532 -Arial_Black.ttf 31 “ 25.6371 23.2742 27 @ 0.0272 43.1815 49.5147 -Arial_Black.ttf 31 “ 25.6241 23.2483 28 F 1.6134 31.5927 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 29 S 0.0083 37.5323 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 30 p 11.5787 32.7806 42.9379 -Arial_Black.ttf 31 “ 25.6241 23.2483 31 “ -0.1020 25.6241 23.2483 -Arial_Black.ttf 31 “ 25.6241 23.2483 32 % 0.1848 52.3164 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 33 £ 0.0548 34.8724 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 34 . 31.5679 11.6241 11.6241 -Arial_Black.ttf 31 “ 25.6241 23.2483 35 2 -0.1721 33.5935 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 36 5 1.5958 33.8435 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 37 m 11.5561 51.5035 31.5638 -Arial_Black.ttf 31 “ 25.6241 23.2483 38 V 1.1508 45.1547 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 39 6 0.1269 33.8435 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 40 w 13.1518 54.8121 30.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 41 T 1.1495 38.4362 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 42 M 1.1026 45.8086 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 43 G 0.2928 42.5629 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 44 b 1.1737 32.7806 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 45 9 0.1677 33.8435 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 46 ; 12.7371 11.6241 42.9379 -Arial_Black.ttf 31 “ 25.6241 23.2483 47 D 1.0519 38.3112 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 48 L 1.3498 31.9965 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 49 y 12.6202 35.7815 42.9379 -Arial_Black.ttf 31 “ 25.6241 23.2483 50 ‘ -0.2095 11.6241 23.2483 -Arial_Black.ttf 31 “ 25.6241 23.2483 51 \ 0.0009 16.3759 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 52 R 1.4198 41.2212 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 53 < 4.5860 32.6267 34.9974 -Arial_Black.ttf 31 “ 25.6241 23.2483 54 4 0.0471 38.0612 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 55 8 -0.0714 33.8435 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 56 0 0.0357 33.8435 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 57 A 1.2341 45.5638 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 58 E 1.1782 34.4974 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 59 B 1.1560 38.3112 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 60 v 12.4552 35.8156 30.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 61 k 1.2834 35.5315 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 62 J 1.2251 33.1556 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 63 U 0.9669 39.2150 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 64 j 1.0683 18.3427 54.5621 -Arial_Black.ttf 31 “ 25.6241 23.2483 65 ( -0.0000 17.4047 56.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 66 7 1.4460 33.5935 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 67 § 0.1190 34.2185 55.7500 -Arial_Black.ttf 31 “ 25.6241 23.2483 68 $ -2.6475 35.2815 52.4362 -Arial_Black.ttf 31 “ 25.6241 23.2483 69 € -0.0774 38.1914 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 70 / 0.2493 16.3759 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 71 C -0.3365 39.9082 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 72 * -0.0982 22.1565 20.6224 -Arial_Black.ttf 31 “ 25.6241 23.2483 73 ” 0.0458 25.6241 23.2483 -Arial_Black.ttf 31 “ 25.6241 23.2483 74 ? 0.0038 31.8138 43.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 75 { -0.1274 21.4974 56.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 76 } -0.0185 21.4974 56.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 77 , 31.7459 11.6241 24.1862 -Arial_Black.ttf 31 “ 25.6241 23.2483 78 I 1.2868 12.8121 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 79 ° -0.0927 14.1250 14.1250 -Arial_Black.ttf 31 “ 25.6241 23.2483 80 K 1.0332 43.9668 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 81 H 1.4062 39.2150 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 82 q 11.5759 32.7806 42.9379 -Arial_Black.ttf 31 “ 25.6241 23.2483 83 & -0.0301 46.8820 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 84 ’ 0.1103 11.6241 23.2483 -Arial_Black.ttf 31 “ 25.6241 23.2483 85 [ 0.9403 18.3427 53.6241 -Arial_Black.ttf 31 “ 25.6241 23.2483 86 - 23.2836 16.9047 9.2483 -Arial_Black.ttf 31 “ 25.6241 23.2483 87 Y 1.3139 45.5638 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 88 Q 0.0774 44.1547 48.3435 -Arial_Black.ttf 31 “ 25.6241 23.2483 89 " 1.0568 26.8121 15.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 90 ! 1.1939 11.6241 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 91 x 12.8982 38.6914 30.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 92 ) -0.3022 17.4047 56.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 93 = 10.6384 30.9047 23.2483 -Arial_Black.ttf 31 “ 25.6241 23.2483 94 + 6.3866 31.4388 31.4388 -Arial_Black.ttf 31 “ 25.6241 23.2483 95 X 1.1068 45.1547 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 96 » 14.5797 31.1547 26.4082 -Arial_Black.ttf 31 “ 25.6241 23.2483 97 ' 1.3264 11.6241 15.1879 -Arial_Black.ttf 31 “ 25.6241 23.2483 98 ¢ 1.3179 34.2185 53.2203 -Arial_Black.ttf 31 “ 25.6241 23.2483 99 Z 1.1963 37.3059 42.0000 -Arial_Black.ttf 31 “ 25.6241 23.2483 100 > 4.5172 32.6267 34.9974 -Arial_Black.ttf 31 “ 25.6241 23.2483 101 ® 0.3463 43.9720 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 102 © 0.0765 43.9720 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 103 ] 1.1449 18.3427 53.6241 -Arial_Black.ttf 31 “ 25.6241 23.2483 104 é 0.1437 34.2185 44.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 105 z 13.1083 28.4327 30.3759 -Arial_Black.ttf 31 “ 25.6241 23.2483 106 _ 47.4554 29.1879 2.7797 -Arial_Black.ttf 31 “ 25.6241 23.2483 107 ¥ 0.9984 40.4082 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 1 t 1.1113 22.4353 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 2 h 1.5095 31.8427 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 3 a 11.9295 35.4065 32.7517 -Arial_Black.ttf 32 % 52.3164 44.3759 4 n 11.2579 31.8427 31.5638 -Arial_Black.ttf 32 % 52.3164 44.3759 5 P 1.1802 34.7474 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 6 o 11.4916 34.2185 32.7517 -Arial_Black.ttf 32 % 52.3164 44.3759 7 e 11.5836 34.2185 32.7517 -Arial_Black.ttf 32 % 52.3055 44.3629 8 : 12.9218 11.6371 30.3629 -Arial_Black.ttf 32 % 52.3164 44.3759 9 r 11.7535 23.9073 31.5638 -Arial_Black.ttf 32 % 52.3164 44.3759 10 l 1.0546 11.6241 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 11 i 1.1960 11.6241 42.0000 -Arial_Black.ttf 32 % 52.3055 44.3629 12 1 0.5704 23.9105 43.1815 -Arial_Black.ttf 32 % 52.3055 44.3629 13 | 1.1872 7.2718 53.3612 -Arial_Black.ttf 32 % 52.3164 44.3759 14 N 1.6385 39.2150 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 15 f 0.1052 23.6233 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 16 g 11.6634 34.2185 44.1259 -Arial_Black.ttf 32 % 52.3164 44.3759 17 d 1.1306 32.7806 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 18 W 0.7537 59.5638 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 19 s 11.1948 31.5638 32.7517 -Arial_Black.ttf 32 % 52.3164 44.3759 20 c 11.6046 34.2185 32.7517 -Arial_Black.ttf 32 % 52.3164 44.3759 21 u 13.0934 31.5927 31.5638 -Arial_Black.ttf 32 % 52.3055 44.3629 22 3 0.1132 33.8834 44.3629 -Arial_Black.ttf 32 % 52.3055 44.3629 23 ~ 14.7178 32.7258 14.0000 -Arial_Black.ttf 32 % 52.3055 44.3629 24 # -0.0565 35.6338 44.3629 -Arial_Black.ttf 32 % 52.3164 44.3759 25 O -0.1735 42.7168 44.3759 -Arial_Black.ttf 32 % 52.3055 44.3629 26 ` -0.1456 14.6708 8.4532 -Arial_Black.ttf 32 % 52.3055 44.3629 27 @ -0.2470 43.1815 49.5147 -Arial_Black.ttf 32 % 52.3164 44.3759 28 F 1.1997 31.5927 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 29 S -0.0714 37.5323 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 30 p 11.2453 32.7806 42.9379 -Arial_Black.ttf 32 % 52.3164 44.3759 31 “ 0.1246 25.6241 23.2483 -Arial_Black.ttf 32 % 52.3164 44.3759 32 % 0.1180 52.3164 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 33 £ -0.0967 34.8724 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 34 . 31.3669 11.6241 11.6241 -Arial_Black.ttf 32 % 52.3164 44.3759 35 2 0.3810 33.5935 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 36 5 1.0109 33.8435 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 37 m 11.6384 51.5035 31.5638 -Arial_Black.ttf 32 % 52.3164 44.3759 38 V 1.2973 45.1547 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 39 6 0.2597 33.8435 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 40 w 12.7272 54.8121 30.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 41 T 1.3006 38.4362 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 42 M 0.9927 45.8086 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 43 G -0.0037 42.5629 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 44 b 1.3712 32.7806 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 45 9 -0.1213 33.8435 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 46 ; 12.9010 11.6241 42.9379 -Arial_Black.ttf 32 % 52.3164 44.3759 47 D 1.5304 38.3112 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 48 L 1.2425 31.9965 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 49 y 12.7524 35.7815 42.9379 -Arial_Black.ttf 32 % 52.3164 44.3759 50 ‘ -0.2008 11.6241 23.2483 -Arial_Black.ttf 32 % 52.3164 44.3759 51 \ 0.4570 16.3759 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 52 R 1.2092 41.2212 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 53 < 4.6828 32.6267 34.9974 -Arial_Black.ttf 32 % 52.3164 44.3759 54 4 -0.4010 38.0612 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 55 8 0.2203 33.8435 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 56 0 0.0417 33.8435 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 57 A 1.0197 45.5638 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 58 E 0.8675 34.4974 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 59 B 1.1063 38.3112 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 60 v 12.8706 35.8156 30.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 61 k 1.3339 35.5315 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 62 J 1.2732 33.1556 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 63 U 1.2351 39.2150 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 64 j 0.9088 18.3427 54.5621 -Arial_Black.ttf 32 % 52.3164 44.3759 65 ( -0.0609 17.4047 56.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 66 7 1.5169 33.5935 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 67 § 0.0699 34.2185 55.7500 -Arial_Black.ttf 32 % 52.3164 44.3759 68 $ -2.5947 35.2815 52.4362 -Arial_Black.ttf 32 % 52.3164 44.3759 69 € 0.1575 38.1914 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 70 / -0.1756 16.3759 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 71 C 0.1052 39.9082 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 72 * 0.6401 22.1565 20.6224 -Arial_Black.ttf 32 % 52.3164 44.3759 73 ” -0.1386 25.6241 23.2483 -Arial_Black.ttf 32 % 52.3164 44.3759 74 ? 0.1089 31.8138 43.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 75 { 0.3032 21.4974 56.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 76 } -0.2453 21.4974 56.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 77 , 31.5937 11.6241 24.1862 -Arial_Black.ttf 32 % 52.3164 44.3759 78 I 1.2646 12.8121 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 79 ° -0.0069 14.1250 14.1250 -Arial_Black.ttf 32 % 52.3164 44.3759 80 K 0.8667 43.9668 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 81 H 1.3983 39.2150 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 82 q 11.5899 32.7806 42.9379 -Arial_Black.ttf 32 % 52.3164 44.3759 83 & -0.0728 46.8820 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 84 ’ -0.1225 11.6241 23.2483 -Arial_Black.ttf 32 % 52.3164 44.3759 85 [ 1.3291 18.3427 53.6241 -Arial_Black.ttf 32 % 52.3164 44.3759 86 - 22.9922 16.9047 9.2483 -Arial_Black.ttf 32 % 52.3164 44.3759 87 Y 1.5653 45.5638 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 88 Q -0.0432 44.1547 48.3435 -Arial_Black.ttf 32 % 52.3164 44.3759 89 " 0.8967 26.8121 15.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 90 ! 0.8032 11.6241 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 91 x 13.0336 38.6914 30.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 92 ) -0.1605 17.4047 56.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 93 = 10.5249 30.9047 23.2483 -Arial_Black.ttf 32 % 52.3164 44.3759 94 + 6.3347 31.4388 31.4388 -Arial_Black.ttf 32 % 52.3164 44.3759 95 X 1.0384 45.1547 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 96 » 14.5870 31.1547 26.4082 -Arial_Black.ttf 32 % 52.3164 44.3759 97 ' 1.5843 11.6241 15.1879 -Arial_Black.ttf 32 % 52.3164 44.3759 98 ¢ 1.7239 34.2185 53.2203 -Arial_Black.ttf 32 % 52.3164 44.3759 99 Z 0.8705 37.3059 42.0000 -Arial_Black.ttf 32 % 52.3164 44.3759 100 > 4.7605 32.6267 34.9974 -Arial_Black.ttf 32 % 52.3164 44.3759 101 ® -0.2038 43.9720 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 102 © 0.1585 43.9720 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 103 ] 0.8708 18.3427 53.6241 -Arial_Black.ttf 32 % 52.3164 44.3759 104 é -0.3234 34.2185 44.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 105 z 12.8746 28.4327 30.3759 -Arial_Black.ttf 32 % 52.3164 44.3759 106 _ 47.1540 29.1879 2.7797 -Arial_Black.ttf 32 % 52.3164 44.3759 107 ¥ 1.0033 40.4082 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 1 t 1.0591 22.4353 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 2 h 1.2445 31.8427 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 3 a 11.1932 35.4065 32.7517 -Arial_Black.ttf 33 £ 34.8724 44.3759 4 n 11.6566 31.8427 31.5638 -Arial_Black.ttf 33 £ 34.8724 44.3759 5 P 1.0554 34.7474 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 6 o 11.4708 34.2185 32.7517 -Arial_Black.ttf 33 £ 34.8724 44.3759 7 e 11.7872 34.2185 32.7517 -Arial_Black.ttf 33 £ 34.8768 44.3629 8 : 12.6540 11.6371 30.3629 -Arial_Black.ttf 33 £ 34.8724 44.3759 9 r 11.6960 23.9073 31.5638 -Arial_Black.ttf 33 £ 34.8724 44.3759 10 l 1.0627 11.6241 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 11 i 1.3071 11.6241 42.0000 -Arial_Black.ttf 33 £ 34.8768 44.3629 12 1 -0.4400 23.9105 43.1815 -Arial_Black.ttf 33 £ 34.8768 44.3629 13 | 1.1743 7.2718 53.3612 -Arial_Black.ttf 33 £ 34.8724 44.3759 14 N 1.0669 39.2150 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 15 f 0.2847 23.6233 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 16 g 11.7372 34.2185 44.1259 -Arial_Black.ttf 33 £ 34.8724 44.3759 17 d 1.4225 32.7806 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 18 W 1.0554 59.5638 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 19 s 11.7869 31.5638 32.7517 -Arial_Black.ttf 33 £ 34.8724 44.3759 20 c 11.5825 34.2185 32.7517 -Arial_Black.ttf 33 £ 34.8724 44.3759 21 u 12.6277 31.5927 31.5638 -Arial_Black.ttf 33 £ 34.8768 44.3629 22 3 -0.1754 33.8834 44.3629 -Arial_Black.ttf 33 £ 34.8768 44.3629 23 ~ 14.9403 32.7258 14.0000 -Arial_Black.ttf 33 £ 34.8768 44.3629 24 # 0.0322 35.6338 44.3629 -Arial_Black.ttf 33 £ 34.8724 44.3759 25 O 0.2196 42.7168 44.3759 -Arial_Black.ttf 33 £ 34.8768 44.3629 26 ` -0.0659 14.6708 8.4532 -Arial_Black.ttf 33 £ 34.8768 44.3629 27 @ -0.1435 43.1815 49.5147 -Arial_Black.ttf 33 £ 34.8724 44.3759 28 F 1.1837 31.5927 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 29 S -0.0608 37.5323 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 30 p 11.7953 32.7806 42.9379 -Arial_Black.ttf 33 £ 34.8724 44.3759 31 “ -0.0738 25.6241 23.2483 -Arial_Black.ttf 33 £ 34.8724 44.3759 32 % 0.0417 52.3164 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 33 £ 0.0547 34.8724 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 34 . 31.5948 11.6241 11.6241 -Arial_Black.ttf 33 £ 34.8724 44.3759 35 2 -0.3065 33.5935 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 36 5 1.2608 33.8435 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 37 m 11.4503 51.5035 31.5638 -Arial_Black.ttf 33 £ 34.8724 44.3759 38 V 1.0985 45.1547 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 39 6 0.1154 33.8435 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 40 w 13.0615 54.8121 30.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 41 T 1.1103 38.4362 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 42 M 1.1931 45.8086 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 43 G -0.1791 42.5629 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 44 b 1.3510 32.7806 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 45 9 0.1108 33.8435 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 46 ; 12.8093 11.6241 42.9379 -Arial_Black.ttf 33 £ 34.8724 44.3759 47 D 1.1490 38.3112 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 48 L 0.9586 31.9965 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 49 y 12.8881 35.7815 42.9379 -Arial_Black.ttf 33 £ 34.8724 44.3759 50 ‘ 0.0903 11.6241 23.2483 -Arial_Black.ttf 33 £ 34.8724 44.3759 51 \ -0.2109 16.3759 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 52 R 1.2608 41.2212 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 53 < 4.3628 32.6267 34.9974 -Arial_Black.ttf 33 £ 34.8724 44.3759 54 4 -0.2516 38.0612 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 55 8 -0.1251 33.8435 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 56 0 -0.2169 33.8435 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 57 A 1.1254 45.5638 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 58 E 1.0957 34.4974 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 59 B 1.6108 38.3112 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 60 v 12.9335 35.8156 30.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 61 k 1.4637 35.5315 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 62 J 1.1170 33.1556 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 63 U 1.1582 39.2150 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 64 j 0.7693 18.3427 54.5621 -Arial_Black.ttf 33 £ 34.8724 44.3759 65 ( 0.5915 17.4047 56.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 66 7 1.1065 33.5935 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 67 § 0.0430 34.2185 55.7500 -Arial_Black.ttf 33 £ 34.8724 44.3759 68 $ -2.8589 35.2815 52.4362 -Arial_Black.ttf 33 £ 34.8724 44.3759 69 € -0.1710 38.1914 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 70 / 0.0937 16.3759 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 71 C 0.3300 39.9082 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 72 * 0.2619 22.1565 20.6224 -Arial_Black.ttf 33 £ 34.8724 44.3759 73 ” -0.2827 25.6241 23.2483 -Arial_Black.ttf 33 £ 34.8724 44.3759 74 ? 0.0520 31.8138 43.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 75 { -0.1585 21.4974 56.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 76 } -0.0987 21.4974 56.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 77 , 31.4980 11.6241 24.1862 -Arial_Black.ttf 33 £ 34.8724 44.3759 78 I 1.3086 12.8121 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 79 ° -0.0819 14.1250 14.1250 -Arial_Black.ttf 33 £ 34.8724 44.3759 80 K 1.1046 43.9668 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 81 H 1.4731 39.2150 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 82 q 11.5072 32.7806 42.9379 -Arial_Black.ttf 33 £ 34.8724 44.3759 83 & 0.3644 46.8820 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 84 ’ -0.2841 11.6241 23.2483 -Arial_Black.ttf 33 £ 34.8724 44.3759 85 [ 1.3191 18.3427 53.6241 -Arial_Black.ttf 33 £ 34.8724 44.3759 86 - 23.5224 16.9047 9.2483 -Arial_Black.ttf 33 £ 34.8724 44.3759 87 Y 1.4307 45.5638 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 88 Q -0.2516 44.1547 48.3435 -Arial_Black.ttf 33 £ 34.8724 44.3759 89 " 1.3933 26.8121 15.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 90 ! 1.3632 11.6241 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 91 x 12.7763 38.6914 30.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 92 ) 0.4825 17.4047 56.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 93 = 10.8929 30.9047 23.2483 -Arial_Black.ttf 33 £ 34.8724 44.3759 94 + 6.3276 31.4388 31.4388 -Arial_Black.ttf 33 £ 34.8724 44.3759 95 X 0.9678 45.1547 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 96 » 14.7326 31.1547 26.4082 -Arial_Black.ttf 33 £ 34.8724 44.3759 97 ' 1.0656 11.6241 15.1879 -Arial_Black.ttf 33 £ 34.8724 44.3759 98 ¢ 1.4846 34.2185 53.2203 -Arial_Black.ttf 33 £ 34.8724 44.3759 99 Z 1.2806 37.3059 42.0000 -Arial_Black.ttf 33 £ 34.8724 44.3759 100 > 4.5891 32.6267 34.9974 -Arial_Black.ttf 33 £ 34.8724 44.3759 101 ® -0.2160 43.9720 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 102 © -0.1868 43.9720 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 103 ] 0.8254 18.3427 53.6241 -Arial_Black.ttf 33 £ 34.8724 44.3759 104 é 0.0527 34.2185 44.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 105 z 12.9771 28.4327 30.3759 -Arial_Black.ttf 33 £ 34.8724 44.3759 106 _ 47.0015 29.1879 2.7797 -Arial_Black.ttf 33 £ 34.8724 44.3759 107 ¥ 1.3372 40.4082 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 1 t -30.1493 22.4353 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 2 h -30.5584 31.8427 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 3 a -19.9310 35.4065 32.7517 -Arial_Black.ttf 34 . 11.6241 11.6241 4 n -20.0263 31.8427 31.5638 -Arial_Black.ttf 34 . 11.6241 11.6241 5 P -30.2874 34.7474 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 6 o -19.9040 34.2185 32.7517 -Arial_Black.ttf 34 . 11.6241 11.6241 7 e -19.8956 34.2185 32.7517 -Arial_Black.ttf 34 . 11.6371 11.6371 8 : -18.7603 11.6371 30.3629 -Arial_Black.ttf 34 . 11.6241 11.6241 9 r -19.7881 23.9073 31.5638 -Arial_Black.ttf 34 . 11.6241 11.6241 10 l -30.4620 11.6241 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 11 i -30.2214 11.6241 42.0000 -Arial_Black.ttf 34 . 11.6371 11.6371 12 1 -31.5735 23.9105 43.1815 -Arial_Black.ttf 34 . 11.6371 11.6371 13 | -30.2806 7.2718 53.3612 -Arial_Black.ttf 34 . 11.6241 11.6241 14 N -30.4175 39.2150 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 15 f -31.5184 23.6233 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 16 g -20.0324 34.2185 44.1259 -Arial_Black.ttf 34 . 11.6241 11.6241 17 d -30.8439 32.7806 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 18 W -30.2001 59.5638 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 19 s -19.8942 31.5638 32.7517 -Arial_Black.ttf 34 . 11.6241 11.6241 20 c -19.9512 34.2185 32.7517 -Arial_Black.ttf 34 . 11.6241 11.6241 21 u -18.6133 31.5927 31.5638 -Arial_Black.ttf 34 . 11.6371 11.6371 22 3 -31.5135 33.8834 44.3629 -Arial_Black.ttf 34 . 11.6371 11.6371 23 ~ -16.3717 32.7258 14.0000 -Arial_Black.ttf 34 . 11.6371 11.6371 24 # -31.6298 35.6338 44.3629 -Arial_Black.ttf 34 . 11.6241 11.6241 25 O -31.6439 42.7168 44.3759 -Arial_Black.ttf 34 . 11.6371 11.6371 26 ` -31.2373 14.6708 8.4532 -Arial_Black.ttf 34 . 11.6371 11.6371 27 @ -31.5434 43.1815 49.5147 -Arial_Black.ttf 34 . 11.6241 11.6241 28 F -30.1149 31.5927 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 29 S -31.4764 37.5323 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 30 p -19.9467 32.7806 42.9379 -Arial_Black.ttf 34 . 11.6241 11.6241 31 “ -31.7256 25.6241 23.2483 -Arial_Black.ttf 34 . 11.6241 11.6241 32 % -31.5624 52.3164 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 33 £ -31.6842 34.8724 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 34 . 0.1312 11.6241 11.6241 -Arial_Black.ttf 34 . 11.6241 11.6241 35 2 -31.4767 33.5935 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 36 5 -30.3892 33.8435 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 37 m -20.2100 51.5035 31.5638 -Arial_Black.ttf 34 . 11.6241 11.6241 38 V -30.4329 45.1547 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 39 6 -31.6464 33.8435 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 40 w -18.7160 54.8121 30.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 41 T -30.5102 38.4362 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 42 M -30.2309 45.8086 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 43 G -31.6088 42.5629 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 44 b -30.5934 32.7806 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 45 9 -31.6315 33.8435 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 46 ; -18.8264 11.6241 42.9379 -Arial_Black.ttf 34 . 11.6241 11.6241 47 D -30.3686 38.3112 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 48 L -30.2472 31.9965 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 49 y -18.6160 35.7815 42.9379 -Arial_Black.ttf 34 . 11.6241 11.6241 50 ‘ -31.5971 11.6241 23.2483 -Arial_Black.ttf 34 . 11.6241 11.6241 51 \ -31.4067 16.3759 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 52 R -30.4928 41.2212 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 53 < -26.6395 32.6267 34.9974 -Arial_Black.ttf 34 . 11.6241 11.6241 54 4 -31.5666 38.0612 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 55 8 -31.5541 33.8435 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 56 0 -31.4007 33.8435 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 57 A -30.0251 45.5638 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 58 E -30.2530 34.4974 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 59 B -30.4552 38.3112 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 60 v -18.7420 35.8156 30.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 61 k -30.3046 35.5315 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 62 J -30.3689 33.1556 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 63 U -30.1191 39.2150 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 64 j -30.3759 18.3427 54.5621 -Arial_Black.ttf 34 . 11.6241 11.6241 65 ( -31.3755 17.4047 56.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 66 7 -30.2990 33.5935 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 67 § -31.5684 34.2185 55.7500 -Arial_Black.ttf 34 . 11.6241 11.6241 68 $ -34.1382 35.2815 52.4362 -Arial_Black.ttf 34 . 11.6241 11.6241 69 € -31.6982 38.1914 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 70 / -31.5698 16.3759 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 71 C -31.3129 39.9082 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 72 * -31.5166 22.1565 20.6224 -Arial_Black.ttf 34 . 11.6241 11.6241 73 ” -31.5778 25.6241 23.2483 -Arial_Black.ttf 34 . 11.6241 11.6241 74 ? -31.3858 31.8138 43.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 75 { -31.2144 21.4974 56.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 76 } -31.5541 21.4974 56.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 77 , 0.0867 11.6241 24.1862 -Arial_Black.ttf 34 . 11.6241 11.6241 78 I -30.3431 12.8121 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 79 ° -31.5676 14.1250 14.1250 -Arial_Black.ttf 34 . 11.6241 11.6241 80 K -30.2512 43.9668 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 81 H -30.4533 39.2150 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 82 q -20.0347 32.7806 42.9379 -Arial_Black.ttf 34 . 11.6241 11.6241 83 & -31.5953 46.8820 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 84 ’ -31.4684 11.6241 23.2483 -Arial_Black.ttf 34 . 11.6241 11.6241 85 [ -30.3773 18.3427 53.6241 -Arial_Black.ttf 34 . 11.6241 11.6241 86 - -8.2579 16.9047 9.2483 -Arial_Black.ttf 34 . 11.6241 11.6241 87 Y -30.3259 45.5638 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 88 Q -31.4702 44.1547 48.3435 -Arial_Black.ttf 34 . 11.6241 11.6241 89 " -30.3867 26.8121 15.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 90 ! -30.2173 11.6241 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 91 x -18.6303 38.6914 30.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 92 ) -31.5208 17.4047 56.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 93 = -20.7910 30.9047 23.2483 -Arial_Black.ttf 34 . 11.6241 11.6241 94 + -25.1050 31.4388 31.4388 -Arial_Black.ttf 34 . 11.6241 11.6241 95 X -30.1831 45.1547 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 96 » -16.8355 31.1547 26.4082 -Arial_Black.ttf 34 . 11.6241 11.6241 97 ' -30.6281 11.6241 15.1879 -Arial_Black.ttf 34 . 11.6241 11.6241 98 ¢ -30.0707 34.2185 53.2203 -Arial_Black.ttf 34 . 11.6241 11.6241 99 Z -30.5098 37.3059 42.0000 -Arial_Black.ttf 34 . 11.6241 11.6241 100 > -26.8607 32.6267 34.9974 -Arial_Black.ttf 34 . 11.6241 11.6241 101 ® -31.6366 43.9720 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 102 © -31.5638 43.9720 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 103 ] -30.1234 18.3427 53.6241 -Arial_Black.ttf 34 . 11.6241 11.6241 104 é -31.6547 34.2185 44.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 105 z -18.9096 28.4327 30.3759 -Arial_Black.ttf 34 . 11.6241 11.6241 106 _ 15.8889 29.1879 2.7797 -Arial_Black.ttf 34 . 11.6241 11.6241 107 ¥ -30.4347 40.4082 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 1 t 1.2199 22.4353 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 2 h 0.8961 31.8427 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 3 a 11.9064 35.4065 32.7517 -Arial_Black.ttf 35 2 33.5935 43.1879 4 n 11.5647 31.8427 31.5638 -Arial_Black.ttf 35 2 33.5935 43.1879 5 P 1.2704 34.7474 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 6 o 11.7357 34.2185 32.7517 -Arial_Black.ttf 35 2 33.5935 43.1879 7 e 11.4527 34.2185 32.7517 -Arial_Black.ttf 35 2 33.6075 43.1815 8 : 12.8946 11.6371 30.3629 -Arial_Black.ttf 35 2 33.5935 43.1879 9 r 11.8990 23.9073 31.5638 -Arial_Black.ttf 35 2 33.5935 43.1879 10 l 1.1773 11.6241 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 11 i 1.2361 11.6241 42.0000 -Arial_Black.ttf 35 2 33.6075 43.1815 12 1 0.0358 23.9105 43.1815 -Arial_Black.ttf 35 2 33.6075 43.1815 13 | 1.2562 7.2718 53.3612 -Arial_Black.ttf 35 2 33.5935 43.1879 14 N 0.8528 39.2150 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 15 f 0.2809 23.6233 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 16 g 11.5991 34.2185 44.1259 -Arial_Black.ttf 35 2 33.5935 43.1879 17 d 1.2816 32.7806 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 18 W 1.1443 59.5638 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 19 s 11.5569 31.5638 32.7517 -Arial_Black.ttf 35 2 33.5935 43.1879 20 c 11.4594 34.2185 32.7517 -Arial_Black.ttf 35 2 33.5935 43.1879 21 u 12.5678 31.5927 31.5638 -Arial_Black.ttf 35 2 33.6075 43.1815 22 3 -0.0596 33.8834 44.3629 -Arial_Black.ttf 35 2 33.6075 43.1815 23 ~ 15.2450 32.7258 14.0000 -Arial_Black.ttf 35 2 33.6075 43.1815 24 # 0.0264 35.6338 44.3629 -Arial_Black.ttf 35 2 33.5935 43.1879 25 O -0.0812 42.7168 44.3759 -Arial_Black.ttf 35 2 33.6075 43.1815 26 ` -0.0618 14.6708 8.4532 -Arial_Black.ttf 35 2 33.6075 43.1815 27 @ -0.0851 43.1815 49.5147 -Arial_Black.ttf 35 2 33.5935 43.1879 28 F 1.3488 31.5927 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 29 S 0.1302 37.5323 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 30 p 11.6906 32.7806 42.9379 -Arial_Black.ttf 35 2 33.5935 43.1879 31 “ -0.0955 25.6241 23.2483 -Arial_Black.ttf 35 2 33.5935 43.1879 32 % -0.0445 52.3164 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 33 £ -0.2671 34.8724 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 34 . 31.7724 11.6241 11.6241 -Arial_Black.ttf 35 2 33.5935 43.1879 35 2 -0.2605 33.5935 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 36 5 1.4254 33.8435 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 37 m 11.7001 51.5035 31.5638 -Arial_Black.ttf 35 2 33.5935 43.1879 38 V 1.0165 45.1547 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 39 6 -0.1371 33.8435 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 40 w 12.6476 54.8121 30.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 41 T 1.2653 38.4362 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 42 M 1.3705 45.8086 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 43 G -0.1742 42.5629 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 44 b 1.1834 32.7806 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 45 9 0.0440 33.8435 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 46 ; 12.7037 11.6241 42.9379 -Arial_Black.ttf 35 2 33.5935 43.1879 47 D 1.5346 38.3112 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 48 L 1.4272 31.9965 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 49 y 12.7291 35.7815 42.9379 -Arial_Black.ttf 35 2 33.5935 43.1879 50 ‘ -0.2739 11.6241 23.2483 -Arial_Black.ttf 35 2 33.5935 43.1879 51 \ -0.1315 16.3759 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 52 R 1.4048 41.2212 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 53 < 4.9246 32.6267 34.9974 -Arial_Black.ttf 35 2 33.5935 43.1879 54 4 -0.3333 38.0612 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 55 8 -0.1785 33.8435 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 56 0 -0.0342 33.8435 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 57 A 1.2338 45.5638 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 58 E 1.3933 34.4974 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 59 B 1.0949 38.3112 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 60 v 12.6053 35.8156 30.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 61 k 1.0151 35.5315 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 62 J 1.2872 33.1556 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 63 U 1.2709 39.2150 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 64 j 1.2681 18.3427 54.5621 -Arial_Black.ttf 35 2 33.5935 43.1879 65 ( -0.0422 17.4047 56.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 66 7 0.9176 33.5935 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 67 § -0.3642 34.2185 55.7500 -Arial_Black.ttf 35 2 33.5935 43.1879 68 $ -2.8030 35.2815 52.4362 -Arial_Black.ttf 35 2 33.5935 43.1879 69 € -0.0909 38.1914 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 70 / -0.3259 16.3759 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 71 C 0.3366 39.9082 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 72 * 0.0088 22.1565 20.6224 -Arial_Black.ttf 35 2 33.5935 43.1879 73 ” 0.0138 25.6241 23.2483 -Arial_Black.ttf 35 2 33.5935 43.1879 74 ? 0.0365 31.8138 43.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 75 { 0.3365 21.4974 56.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 76 } -0.1266 21.4974 56.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 77 , 31.6509 11.6241 24.1862 -Arial_Black.ttf 35 2 33.5935 43.1879 78 I 1.4879 12.8121 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 79 ° 0.1984 14.1250 14.1250 -Arial_Black.ttf 35 2 33.5935 43.1879 80 K 1.2673 43.9668 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 81 H 1.3243 39.2150 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 82 q 11.6255 32.7806 42.9379 -Arial_Black.ttf 35 2 33.5935 43.1879 83 & 0.0153 46.8820 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 84 ’ -0.0070 11.6241 23.2483 -Arial_Black.ttf 35 2 33.5935 43.1879 85 [ 1.1824 18.3427 53.6241 -Arial_Black.ttf 35 2 33.5935 43.1879 86 - 23.3402 16.9047 9.2483 -Arial_Black.ttf 35 2 33.5935 43.1879 87 Y 1.1935 45.5638 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 88 Q 0.0231 44.1547 48.3435 -Arial_Black.ttf 35 2 33.5935 43.1879 89 " 1.4835 26.8121 15.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 90 ! 1.0022 11.6241 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 91 x 12.7399 38.6914 30.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 92 ) 0.1357 17.4047 56.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 93 = 10.8949 30.9047 23.2483 -Arial_Black.ttf 35 2 33.5935 43.1879 94 + 6.6461 31.4388 31.4388 -Arial_Black.ttf 35 2 33.5935 43.1879 95 X 1.2486 45.1547 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 96 » 14.6570 31.1547 26.4082 -Arial_Black.ttf 35 2 33.5935 43.1879 97 ' 1.2852 11.6241 15.1879 -Arial_Black.ttf 35 2 33.5935 43.1879 98 ¢ 1.6744 34.2185 53.2203 -Arial_Black.ttf 35 2 33.5935 43.1879 99 Z 1.3465 37.3059 42.0000 -Arial_Black.ttf 35 2 33.5935 43.1879 100 > 4.6308 32.6267 34.9974 -Arial_Black.ttf 35 2 33.5935 43.1879 101 ® -0.1204 43.9720 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 102 © -0.1068 43.9720 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 103 ] 1.1861 18.3427 53.6241 -Arial_Black.ttf 35 2 33.5935 43.1879 104 é 0.3463 34.2185 44.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 105 z 12.8613 28.4327 30.3759 -Arial_Black.ttf 35 2 33.5935 43.1879 106 _ 47.2487 29.1879 2.7797 -Arial_Black.ttf 35 2 33.5935 43.1879 107 ¥ 0.9312 40.4082 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 1 t -0.0830 22.4353 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 2 h 0.0167 31.8427 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 3 a 10.1404 35.4065 32.7517 -Arial_Black.ttf 36 5 33.8435 43.1879 4 n 10.3769 31.8427 31.5638 -Arial_Black.ttf 36 5 33.8435 43.1879 5 P -0.1242 34.7474 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 6 o 10.4292 34.2185 32.7517 -Arial_Black.ttf 36 5 33.8435 43.1879 7 e 10.2284 34.2185 32.7517 -Arial_Black.ttf 36 5 33.8834 43.1815 8 : 11.6030 11.6371 30.3629 -Arial_Black.ttf 36 5 33.8435 43.1879 9 r 10.1834 23.9073 31.5638 -Arial_Black.ttf 36 5 33.8435 43.1879 10 l 0.0452 11.6241 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 11 i 0.2433 11.6241 42.0000 -Arial_Black.ttf 36 5 33.8834 43.1815 12 1 -1.6454 23.9105 43.1815 -Arial_Black.ttf 36 5 33.8834 43.1815 13 | 0.0205 7.2718 53.3612 -Arial_Black.ttf 36 5 33.8435 43.1879 14 N -0.0875 39.2150 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 15 f -1.3083 23.6233 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 16 g 10.8139 34.2185 44.1259 -Arial_Black.ttf 36 5 33.8435 43.1879 17 d 0.1544 32.7806 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 18 W -0.1984 59.5638 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 19 s 10.3570 31.5638 32.7517 -Arial_Black.ttf 36 5 33.8435 43.1879 20 c 10.4667 34.2185 32.7517 -Arial_Black.ttf 36 5 33.8435 43.1879 21 u 11.7945 31.5927 31.5638 -Arial_Black.ttf 36 5 33.8834 43.1815 22 3 -0.8546 33.8834 44.3629 -Arial_Black.ttf 36 5 33.8834 43.1815 23 ~ 14.0282 32.7258 14.0000 -Arial_Black.ttf 36 5 33.8834 43.1815 24 # -1.3077 35.6338 44.3629 -Arial_Black.ttf 36 5 33.8435 43.1879 25 O -1.0530 42.7168 44.3759 -Arial_Black.ttf 36 5 33.8834 43.1815 26 ` -1.5844 14.6708 8.4532 -Arial_Black.ttf 36 5 33.8834 43.1815 27 @ -1.1774 43.1815 49.5147 -Arial_Black.ttf 36 5 33.8435 43.1879 28 F 0.0440 31.5927 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 29 S -1.5387 37.5323 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 30 p 10.6400 32.7806 42.9379 -Arial_Black.ttf 36 5 33.8435 43.1879 31 “ -1.3804 25.6241 23.2483 -Arial_Black.ttf 36 5 33.8435 43.1879 32 % -1.2495 52.3164 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 33 £ -1.1893 34.8724 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 34 . 30.0673 11.6241 11.6241 -Arial_Black.ttf 36 5 33.8435 43.1879 35 2 -1.2945 33.5935 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 36 5 -0.2425 33.8435 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 37 m 10.4264 51.5035 31.5638 -Arial_Black.ttf 36 5 33.8435 43.1879 38 V 0.0812 45.1547 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 39 6 -1.3929 33.8435 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 40 w 11.7535 54.8121 30.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 41 T 0.0339 38.4362 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 42 M 0.0927 45.8086 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 43 G -1.7853 42.5629 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 44 b -0.3560 32.7806 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 45 9 -1.1425 33.8435 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 46 ; 11.9492 11.6241 42.9379 -Arial_Black.ttf 36 5 33.8435 43.1879 47 D -0.0658 38.3112 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 48 L 0.0295 31.9965 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 49 y 11.6144 35.7815 42.9379 -Arial_Black.ttf 36 5 33.8435 43.1879 50 ‘ -1.0081 11.6241 23.2483 -Arial_Black.ttf 36 5 33.8435 43.1879 51 \ -1.1977 16.3759 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 52 R 0.0756 41.2212 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 53 < 3.4721 32.6267 34.9974 -Arial_Black.ttf 36 5 33.8435 43.1879 54 4 -1.4841 38.0612 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 55 8 -1.2167 33.8435 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 56 0 -1.0703 33.8435 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 57 A 0.1210 45.5638 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 58 E -0.0374 34.4974 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 59 B -0.1746 38.3112 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 60 v 11.6717 35.8156 30.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 61 k -0.1253 35.5315 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 62 J 0.0626 33.1556 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 63 U 0.1506 39.2150 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 64 j 0.0987 18.3427 54.5621 -Arial_Black.ttf 36 5 33.8435 43.1879 65 ( -0.9683 17.4047 56.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 66 7 0.2669 33.5935 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 67 § -0.9891 34.2185 55.7500 -Arial_Black.ttf 36 5 33.8435 43.1879 68 $ -3.7383 35.2815 52.4362 -Arial_Black.ttf 36 5 33.8435 43.1879 69 € -0.9435 38.1914 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 70 / -1.5438 16.3759 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 71 C -1.3320 39.9082 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 72 * -0.6856 22.1565 20.6224 -Arial_Black.ttf 36 5 33.8435 43.1879 73 ” -0.8829 25.6241 23.2483 -Arial_Black.ttf 36 5 33.8435 43.1879 74 ? -1.0771 31.8138 43.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 75 { -1.3965 21.4974 56.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 76 } -1.1365 21.4974 56.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 77 , 30.8681 11.6241 24.1862 -Arial_Black.ttf 36 5 33.8435 43.1879 78 I -0.2532 12.8121 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 79 ° -1.2237 14.1250 14.1250 -Arial_Black.ttf 36 5 33.8435 43.1879 80 K 0.1784 43.9668 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 81 H 0.2396 39.2150 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 82 q 10.0385 32.7806 42.9379 -Arial_Black.ttf 36 5 33.8435 43.1879 83 & -1.1068 46.8820 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 84 ’ -1.1475 11.6241 23.2483 -Arial_Black.ttf 36 5 33.8435 43.1879 85 [ -0.0724 18.3427 53.6241 -Arial_Black.ttf 36 5 33.8435 43.1879 86 - 22.0836 16.9047 9.2483 -Arial_Black.ttf 36 5 33.8435 43.1879 87 Y -0.2094 45.5638 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 88 Q -1.1694 44.1547 48.3435 -Arial_Black.ttf 36 5 33.8435 43.1879 89 " -0.0236 26.8121 15.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 90 ! -0.1973 11.6241 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 91 x 11.5430 38.6914 30.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 92 ) -1.0711 17.4047 56.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 93 = 9.4076 30.9047 23.2483 -Arial_Black.ttf 36 5 33.8435 43.1879 94 + 5.2921 31.4388 31.4388 -Arial_Black.ttf 36 5 33.8435 43.1879 95 X -0.0403 45.1547 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 96 » 13.4155 31.1547 26.4082 -Arial_Black.ttf 36 5 33.8435 43.1879 97 ' 0.1613 11.6241 15.1879 -Arial_Black.ttf 36 5 33.8435 43.1879 98 ¢ 0.5067 34.2185 53.2203 -Arial_Black.ttf 36 5 33.8435 43.1879 99 Z 0.1640 37.3059 42.0000 -Arial_Black.ttf 36 5 33.8435 43.1879 100 > 3.5184 32.6267 34.9974 -Arial_Black.ttf 36 5 33.8435 43.1879 101 ® -1.1101 43.9720 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 102 © -0.9579 43.9720 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 103 ] -0.0398 18.3427 53.6241 -Arial_Black.ttf 36 5 33.8435 43.1879 104 é -1.3538 34.2185 44.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 105 z 11.4178 28.4327 30.3759 -Arial_Black.ttf 36 5 33.8435 43.1879 106 _ 46.0825 29.1879 2.7797 -Arial_Black.ttf 36 5 33.8435 43.1879 107 ¥ 0.0284 40.4082 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 1 t -10.1315 22.4353 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 2 h -10.3607 31.8427 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 3 a -0.1555 35.4065 32.7517 -Arial_Black.ttf 37 m 51.5035 31.5638 4 n -0.4215 31.8427 31.5638 -Arial_Black.ttf 37 m 51.5035 31.5638 5 P -10.2684 34.7474 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 6 o -0.2047 34.2185 32.7517 -Arial_Black.ttf 37 m 51.5035 31.5638 7 e -0.0608 34.2185 32.7517 -Arial_Black.ttf 37 m 51.5035 31.5638 8 : 1.3362 11.6241 30.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 9 r -0.2516 23.9073 31.5638 -Arial_Black.ttf 37 m 51.5035 31.5638 10 l -10.4360 11.6241 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 11 i -10.6108 11.6241 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 12 1 -11.7026 23.9073 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 13 | -10.2819 7.2815 53.3741 -Arial_Black.ttf 37 m 51.5035 31.5638 14 N -10.8682 39.2150 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 15 f -11.3525 23.6233 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 16 g 0.0936 34.2185 44.1259 -Arial_Black.ttf 37 m 51.5035 31.5638 17 d -10.8390 32.7806 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 18 W -10.6433 59.5638 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 19 s -0.0023 31.5638 32.7517 -Arial_Black.ttf 37 m 51.5035 31.5638 20 c -0.2058 34.2185 32.7517 -Arial_Black.ttf 37 m 51.5035 31.5638 21 u 1.0664 31.5927 31.5638 -Arial_Black.ttf 37 m 51.5035 31.5638 22 3 -11.5064 33.8435 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 23 ~ 3.8134 32.7517 14.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 24 # -11.4902 35.6565 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 25 O -11.5031 42.7168 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 26 ` -11.6288 14.6591 8.4694 -Arial_Black.ttf 37 m 51.5035 31.5638 27 @ -11.5017 43.1879 49.4974 -Arial_Black.ttf 37 m 51.5035 31.5638 28 F -10.5549 31.5927 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 29 S -11.3633 37.5323 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 30 p 0.1692 32.7806 42.9379 -Arial_Black.ttf 37 m 51.5035 31.5638 31 “ -11.5264 25.6241 23.2483 -Arial_Black.ttf 37 m 51.5035 31.5638 32 % -11.6404 52.3164 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 33 £ -11.7257 34.8724 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 34 . 20.1002 11.6241 11.6241 -Arial_Black.ttf 37 m 51.5035 31.5638 35 2 -11.4323 33.5935 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 36 5 -10.5436 33.8435 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 37 m -0.3218 51.5035 31.5638 -Arial_Black.ttf 37 m 51.5035 31.5638 38 V -10.0524 45.1547 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 39 6 -11.4017 33.8435 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 40 w 1.1597 54.8121 30.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 41 T -10.5456 38.4362 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 42 M -10.3239 45.8086 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 43 G -11.4290 42.5629 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 44 b -10.4222 32.7806 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 45 9 -11.6293 33.8435 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 46 ; 1.3562 11.6241 42.9379 -Arial_Black.ttf 37 m 51.5035 31.5638 47 D -10.2972 38.3112 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 48 L -10.4977 31.9965 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 49 y 1.0222 35.7815 42.9379 -Arial_Black.ttf 37 m 51.5035 31.5638 50 ‘ -11.8634 11.6241 23.2483 -Arial_Black.ttf 37 m 51.5035 31.5638 51 \ -11.3781 16.3759 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 52 R -10.4432 41.2212 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 53 < -6.7932 32.6267 34.9974 -Arial_Black.ttf 37 m 51.5035 31.5638 54 4 -11.4921 38.0612 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 55 8 -11.6043 33.8435 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 56 0 -11.7276 33.8435 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 57 A -10.5256 45.5638 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 58 E -10.7200 34.4974 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 59 B -10.7519 38.3112 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 60 v 1.2917 35.8156 30.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 61 k -10.4150 35.5315 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 62 J -10.3824 33.1556 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 63 U -10.3375 39.2150 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 64 j -10.7153 18.3427 54.5621 -Arial_Black.ttf 37 m 51.5035 31.5638 65 ( -11.6293 17.4047 56.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 66 7 -10.5475 33.5935 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 67 § -11.5492 34.2185 55.7500 -Arial_Black.ttf 37 m 51.5035 31.5638 68 $ -14.5401 35.2815 52.4362 -Arial_Black.ttf 37 m 51.5035 31.5638 69 € -11.7413 38.1914 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 70 / -11.9064 16.3759 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 71 C -11.2162 39.9082 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 72 * -11.6983 22.1565 20.6224 -Arial_Black.ttf 37 m 51.5035 31.5638 73 ” -11.4698 25.6241 23.2483 -Arial_Black.ttf 37 m 51.5035 31.5638 74 ? -11.5512 31.8138 43.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 75 { -11.9412 21.4974 56.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 76 } -11.4114 21.4974 56.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 77 , 19.7822 11.6241 24.1862 -Arial_Black.ttf 37 m 51.5035 31.5638 78 I -10.6377 12.8121 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 79 ° -11.6221 14.1250 14.1250 -Arial_Black.ttf 37 m 51.5035 31.5638 80 K -10.5724 43.9668 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 81 H -10.6017 39.2150 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 82 q 0.1227 32.7806 42.9379 -Arial_Black.ttf 37 m 51.5035 31.5638 83 & -11.4873 46.8820 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 84 ’ -11.6913 11.6241 23.2483 -Arial_Black.ttf 37 m 51.5035 31.5638 85 [ -10.3575 18.3427 53.6241 -Arial_Black.ttf 37 m 51.5035 31.5638 86 - 11.4153 16.9047 9.2483 -Arial_Black.ttf 37 m 51.5035 31.5638 87 Y -10.3308 45.5638 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 88 Q -11.7781 44.1547 48.3435 -Arial_Black.ttf 37 m 51.5035 31.5638 89 " -10.0709 26.8121 15.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 90 ! -10.6712 11.6241 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 91 x 1.3003 38.6914 30.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 92 ) -11.4251 17.4047 56.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 93 = -0.6400 30.9047 23.2483 -Arial_Black.ttf 37 m 51.5035 31.5638 94 + -5.4002 31.4388 31.4388 -Arial_Black.ttf 37 m 51.5035 31.5638 95 X -10.1638 45.1547 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 96 » 3.2100 31.1547 26.4082 -Arial_Black.ttf 37 m 51.5035 31.5638 97 ' -10.2600 11.6241 15.1879 -Arial_Black.ttf 37 m 51.5035 31.5638 98 ¢ -10.5367 34.2185 53.2203 -Arial_Black.ttf 37 m 51.5035 31.5638 99 Z -10.5680 37.3059 42.0000 -Arial_Black.ttf 37 m 51.5035 31.5638 100 > -6.6745 32.6267 34.9974 -Arial_Black.ttf 37 m 51.5035 31.5638 101 ® -11.8015 43.9720 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 102 © -11.5709 43.9720 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 103 ] -10.3086 18.3427 53.6241 -Arial_Black.ttf 37 m 51.5035 31.5638 104 é -11.4535 34.2185 44.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 105 z 1.1700 28.4327 30.3759 -Arial_Black.ttf 37 m 51.5035 31.5638 106 _ 35.3895 29.1879 2.7797 -Arial_Black.ttf 37 m 51.5035 31.5638 107 ¥ -10.0024 40.4082 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 1 t -0.0422 22.4353 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 2 h -0.2169 31.8427 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 3 a 10.2763 35.4065 32.7517 -Arial_Black.ttf 38 V 45.1547 42.0000 4 n 10.5247 31.8427 31.5638 -Arial_Black.ttf 38 V 45.1547 42.0000 5 P 0.1595 34.7474 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 6 o 10.5724 34.2185 32.7517 -Arial_Black.ttf 38 V 45.1547 42.0000 7 e 10.4816 34.2185 32.7517 -Arial_Black.ttf 38 V 45.1547 42.0000 8 : 11.5458 11.6241 30.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 9 r 10.3509 23.9073 31.5638 -Arial_Black.ttf 38 V 45.1547 42.0000 10 l -0.1367 11.6241 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 11 i 0.1263 11.6241 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 12 1 -1.2663 23.9073 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 13 | 0.0175 7.2815 53.3741 -Arial_Black.ttf 38 V 45.1547 42.0000 14 N -0.0564 39.2150 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 15 f -1.2316 23.6233 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 16 g 10.3816 34.2185 44.1259 -Arial_Black.ttf 38 V 45.1547 42.0000 17 d -0.0918 32.7806 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 18 W -0.2687 59.5638 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 19 s 10.5432 31.5638 32.7517 -Arial_Black.ttf 38 V 45.1547 42.0000 20 c 10.4412 34.2185 32.7517 -Arial_Black.ttf 38 V 45.1547 42.0000 21 u 11.4229 31.5927 31.5638 -Arial_Black.ttf 38 V 45.1547 42.0000 22 3 -1.1054 33.8435 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 23 ~ 13.5736 32.7517 14.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 24 # -1.4587 35.6565 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 25 O -1.2988 42.7168 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 26 ` -1.1893 14.6591 8.4694 -Arial_Black.ttf 38 V 45.1547 42.0000 27 @ -1.3027 43.1879 49.4974 -Arial_Black.ttf 38 V 45.1547 42.0000 28 F 0.0305 31.5927 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 29 S -1.1495 37.5323 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 30 p 10.1451 32.7806 42.9379 -Arial_Black.ttf 38 V 45.1547 42.0000 31 “ -0.7217 25.6241 23.2483 -Arial_Black.ttf 38 V 45.1547 42.0000 32 % -1.3506 52.3164 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 33 £ -1.1253 34.8724 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 34 . 30.3365 11.6241 11.6241 -Arial_Black.ttf 38 V 45.1547 42.0000 35 2 -1.3051 33.5935 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 36 5 0.0502 33.8435 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 37 m 10.4617 51.5035 31.5638 -Arial_Black.ttf 38 V 45.1547 42.0000 38 V -0.2115 45.1547 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 39 6 -1.0551 33.8435 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 40 w 11.9291 54.8121 30.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 41 T -0.0620 38.4362 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 42 M 0.1925 45.8086 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 43 G -1.4559 42.5629 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 44 b 0.0752 32.7806 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 45 9 -1.2701 33.8435 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 46 ; 11.6352 11.6241 42.9379 -Arial_Black.ttf 38 V 45.1547 42.0000 47 D 0.3445 38.3112 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 48 L -0.3958 31.9965 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 49 y 11.1356 35.7815 42.9379 -Arial_Black.ttf 38 V 45.1547 42.0000 50 ‘ -0.8435 11.6241 23.2483 -Arial_Black.ttf 38 V 45.1547 42.0000 51 \ -0.9943 16.3759 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 52 R -0.1293 41.2212 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 53 < 3.8057 32.6267 34.9974 -Arial_Black.ttf 38 V 45.1547 42.0000 54 4 -1.0283 38.0612 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 55 8 -1.2626 33.8435 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 56 0 -1.0600 33.8435 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 57 A -0.1210 45.5638 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 58 E -0.2794 34.4974 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 59 B -0.0774 38.3112 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 60 v 11.4958 35.8156 30.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 61 k 0.2093 35.5315 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 62 J -0.2158 33.1556 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 63 U -0.0787 39.2150 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 64 j 0.2924 18.3427 54.5621 -Arial_Black.ttf 38 V 45.1547 42.0000 65 ( -1.3989 17.4047 56.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 66 7 0.1827 33.5935 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 67 § -1.6288 34.2185 55.7500 -Arial_Black.ttf 38 V 45.1547 42.0000 68 $ -3.8433 35.2815 52.4362 -Arial_Black.ttf 38 V 45.1547 42.0000 69 € -1.2418 38.1914 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 70 / -1.0882 16.3759 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 71 C -1.4372 39.9082 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 72 * -1.2102 22.1565 20.6224 -Arial_Black.ttf 38 V 45.1547 42.0000 73 ” -0.8083 25.6241 23.2483 -Arial_Black.ttf 38 V 45.1547 42.0000 74 ? -1.2153 31.8138 43.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 75 { -1.4416 21.4974 56.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 76 } -1.2840 21.4974 56.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 77 , 30.5127 11.6241 24.1862 -Arial_Black.ttf 38 V 45.1547 42.0000 78 I 0.2155 12.8121 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 79 ° -1.2303 14.1250 14.1250 -Arial_Black.ttf 38 V 45.1547 42.0000 80 K -0.2864 43.9668 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 81 H 0.1600 39.2150 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 82 q 10.7332 32.7806 42.9379 -Arial_Black.ttf 38 V 45.1547 42.0000 83 & -1.2898 46.8820 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 84 ’ -1.5138 11.6241 23.2483 -Arial_Black.ttf 38 V 45.1547 42.0000 85 [ -0.2373 18.3427 53.6241 -Arial_Black.ttf 38 V 45.1547 42.0000 86 - 21.9633 16.9047 9.2483 -Arial_Black.ttf 38 V 45.1547 42.0000 87 Y 0.0400 45.5638 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 88 Q -1.0618 44.1547 48.3435 -Arial_Black.ttf 38 V 45.1547 42.0000 89 " -0.0009 26.8121 15.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 90 ! 0.0615 11.6241 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 91 x 11.5398 38.6914 30.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 92 ) -1.0229 17.4047 56.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 93 = 9.4413 30.9047 23.2483 -Arial_Black.ttf 38 V 45.1547 42.0000 94 + 5.4855 31.4388 31.4388 -Arial_Black.ttf 38 V 45.1547 42.0000 95 X 0.0608 45.1547 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 96 » 13.4691 31.1547 26.4082 -Arial_Black.ttf 38 V 45.1547 42.0000 97 ' 0.1658 11.6241 15.1879 -Arial_Black.ttf 38 V 45.1547 42.0000 98 ¢ -0.0625 34.2185 53.2203 -Arial_Black.ttf 38 V 45.1547 42.0000 99 Z 0.0027 37.3059 42.0000 -Arial_Black.ttf 38 V 45.1547 42.0000 100 > 3.2423 32.6267 34.9974 -Arial_Black.ttf 38 V 45.1547 42.0000 101 ® -1.0780 43.9720 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 102 © -1.1945 43.9720 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 103 ] 0.4162 18.3427 53.6241 -Arial_Black.ttf 38 V 45.1547 42.0000 104 é -1.2861 34.2185 44.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 105 z 11.5619 28.4327 30.3759 -Arial_Black.ttf 38 V 45.1547 42.0000 106 _ 46.5150 29.1879 2.7797 -Arial_Black.ttf 38 V 45.1547 42.0000 107 ¥ -0.3754 40.4082 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 1 t 1.0591 22.4353 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 2 h 1.1291 31.8427 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 3 a 12.0157 35.4065 32.7517 -Arial_Black.ttf 39 6 33.8435 44.3759 4 n 11.6384 31.8427 31.5638 -Arial_Black.ttf 39 6 33.8435 44.3759 5 P 1.3673 34.7474 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 6 o 11.5949 34.2185 32.7517 -Arial_Black.ttf 39 6 33.8435 44.3759 7 e 11.7830 34.2185 32.7517 -Arial_Black.ttf 39 6 33.8834 44.3629 8 : 12.7040 11.6371 30.3629 -Arial_Black.ttf 39 6 33.8435 44.3759 9 r 11.8679 23.9073 31.5638 -Arial_Black.ttf 39 6 33.8435 44.3759 10 l 1.3358 11.6241 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 11 i 0.8725 11.6241 42.0000 -Arial_Black.ttf 39 6 33.8834 44.3629 12 1 -0.0537 23.9105 43.1815 -Arial_Black.ttf 39 6 33.8834 44.3629 13 | 1.0949 7.2718 53.3612 -Arial_Black.ttf 39 6 33.8435 44.3759 14 N 1.1193 39.2150 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 15 f -0.0344 23.6233 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 16 g 11.6784 34.2185 44.1259 -Arial_Black.ttf 39 6 33.8435 44.3759 17 d 1.0113 32.7806 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 18 W 1.2876 59.5638 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 19 s 11.6349 31.5638 32.7517 -Arial_Black.ttf 39 6 33.8435 44.3759 20 c 11.5384 34.2185 32.7517 -Arial_Black.ttf 39 6 33.8435 44.3759 21 u 12.5479 31.5927 31.5638 -Arial_Black.ttf 39 6 33.8834 44.3629 22 3 0.2841 33.8834 44.3629 -Arial_Black.ttf 39 6 33.8834 44.3629 23 ~ 15.3864 32.7258 14.0000 -Arial_Black.ttf 39 6 33.8834 44.3629 24 # -0.0188 35.6338 44.3629 -Arial_Black.ttf 39 6 33.8435 44.3759 25 O 0.0430 42.7168 44.3759 -Arial_Black.ttf 39 6 33.8834 44.3629 26 ` 0.1661 14.6708 8.4532 -Arial_Black.ttf 39 6 33.8834 44.3629 27 @ 0.0468 43.1815 49.5147 -Arial_Black.ttf 39 6 33.8435 44.3759 28 F 1.1866 31.5927 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 29 S 0.0374 37.5323 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 30 p 11.6116 32.7806 42.9379 -Arial_Black.ttf 39 6 33.8435 44.3759 31 “ 0.0769 25.6241 23.2483 -Arial_Black.ttf 39 6 33.8435 44.3759 32 % -0.3630 52.3164 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 33 £ -0.1637 34.8724 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 34 . 31.6872 11.6241 11.6241 -Arial_Black.ttf 39 6 33.8435 44.3759 35 2 -0.0312 33.5935 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 36 5 1.4360 33.8435 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 37 m 11.6224 51.5035 31.5638 -Arial_Black.ttf 39 6 33.8435 44.3759 38 V 1.1026 45.1547 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 39 6 0.0812 33.8435 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 40 w 12.7118 54.8121 30.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 41 T 1.0304 38.4362 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 42 M 1.0466 45.8086 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 43 G -0.3008 42.5629 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 44 b 1.2492 32.7806 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 45 9 -0.0396 33.8435 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 46 ; 12.7276 11.6241 42.9379 -Arial_Black.ttf 39 6 33.8435 44.3759 47 D 1.0238 38.3112 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 48 L 1.0429 31.9965 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 49 y 12.6809 35.7815 42.9379 -Arial_Black.ttf 39 6 33.8435 44.3759 50 ‘ 0.0885 11.6241 23.2483 -Arial_Black.ttf 39 6 33.8435 44.3759 51 \ -0.0019 16.3759 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 52 R 1.4114 41.2212 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 53 < 4.9886 32.6267 34.9974 -Arial_Black.ttf 39 6 33.8435 44.3759 54 4 0.2016 38.0612 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 55 8 0.2651 33.8435 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 56 0 0.0482 33.8435 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 57 A 1.1411 45.5638 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 58 E 1.2209 34.4974 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 59 B 1.5759 38.3112 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 60 v 12.6980 35.8156 30.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 61 k 1.1499 35.5315 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 62 J 1.3395 33.1556 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 63 U 1.3556 39.2150 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 64 j 1.0613 18.3427 54.5621 -Arial_Black.ttf 39 6 33.8435 44.3759 65 ( -0.2095 17.4047 56.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 66 7 0.9452 33.5935 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 67 § -0.2137 34.2185 55.7500 -Arial_Black.ttf 39 6 33.8435 44.3759 68 $ -2.8825 35.2815 52.4362 -Arial_Black.ttf 39 6 33.8435 44.3759 69 € 0.3092 38.1914 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 70 / 0.2732 16.3759 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 71 C 0.2516 39.9082 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 72 * 0.0974 22.1565 20.6224 -Arial_Black.ttf 39 6 33.8435 44.3759 73 ” -0.1437 25.6241 23.2483 -Arial_Black.ttf 39 6 33.8435 44.3759 74 ? 0.3411 31.8138 43.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 75 { -0.1492 21.4974 56.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 76 } -0.1459 21.4974 56.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 77 , 31.2324 11.6241 24.1862 -Arial_Black.ttf 39 6 33.8435 44.3759 78 I 1.2194 12.8121 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 79 ° 0.0382 14.1250 14.1250 -Arial_Black.ttf 39 6 33.8435 44.3759 80 K 1.1522 43.9668 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 81 H 1.1369 39.2150 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 82 q 11.6546 32.7806 42.9379 -Arial_Black.ttf 39 6 33.8435 44.3759 83 & -0.1239 46.8820 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 84 ’ 0.0844 11.6241 23.2483 -Arial_Black.ttf 39 6 33.8435 44.3759 85 [ 0.9377 18.3427 53.6241 -Arial_Black.ttf 39 6 33.8435 44.3759 86 - 23.2577 16.9047 9.2483 -Arial_Black.ttf 39 6 33.8435 44.3759 87 Y 1.1685 45.5638 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 88 Q -0.2877 44.1547 48.3435 -Arial_Black.ttf 39 6 33.8435 44.3759 89 " 1.4349 26.8121 15.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 90 ! 1.3440 11.6241 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 91 x 12.6535 38.6914 30.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 92 ) 0.2303 17.4047 56.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 93 = 10.5779 30.9047 23.2483 -Arial_Black.ttf 39 6 33.8435 44.3759 94 + 6.3537 31.4388 31.4388 -Arial_Black.ttf 39 6 33.8435 44.3759 95 X 1.2710 45.1547 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 96 » 14.7020 31.1547 26.4082 -Arial_Black.ttf 39 6 33.8435 44.3759 97 ' 1.0610 11.6241 15.1879 -Arial_Black.ttf 39 6 33.8435 44.3759 98 ¢ 1.3536 34.2185 53.2203 -Arial_Black.ttf 39 6 33.8435 44.3759 99 Z 1.1040 37.3059 42.0000 -Arial_Black.ttf 39 6 33.8435 44.3759 100 > 4.9228 32.6267 34.9974 -Arial_Black.ttf 39 6 33.8435 44.3759 101 ® -0.2578 43.9720 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 102 © -0.0746 43.9720 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 103 ] 1.2992 18.3427 53.6241 -Arial_Black.ttf 39 6 33.8435 44.3759 104 é -0.1885 34.2185 44.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 105 z 12.8932 28.4327 30.3759 -Arial_Black.ttf 39 6 33.8435 44.3759 106 _ 47.0707 29.1879 2.7797 -Arial_Black.ttf 39 6 33.8435 44.3759 107 ¥ 1.2621 40.4082 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 1 t -11.4244 22.4353 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 2 h -11.3671 31.8427 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 3 a -1.5209 35.4065 32.7517 -Arial_Black.ttf 40 w 54.8121 30.3759 4 n -1.2334 31.8427 31.5638 -Arial_Black.ttf 40 w 54.8121 30.3759 5 P -11.7246 34.7474 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 6 o -1.4135 34.2185 32.7517 -Arial_Black.ttf 40 w 54.8121 30.3759 7 e -0.8254 34.2185 32.7517 -Arial_Black.ttf 40 w 54.8121 30.3759 8 : -0.0582 11.6241 30.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 9 r -0.5930 23.9073 31.5638 -Arial_Black.ttf 40 w 54.8121 30.3759 10 l -11.6185 11.6241 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 11 i -11.3206 11.6241 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 12 1 -12.9174 23.9073 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 13 | -11.2648 7.2815 53.3741 -Arial_Black.ttf 40 w 54.8121 30.3759 14 N -11.7451 39.2150 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 15 f -12.7353 23.6233 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 16 g -1.1522 34.2185 44.1259 -Arial_Black.ttf 40 w 54.8121 30.3759 17 d -11.6977 32.7806 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 18 W -11.8007 59.5638 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 19 s -1.0703 31.5638 32.7517 -Arial_Black.ttf 40 w 54.8121 30.3759 20 c -1.5352 34.2185 32.7517 -Arial_Black.ttf 40 w 54.8121 30.3759 21 u -0.2131 31.5927 31.5638 -Arial_Black.ttf 40 w 54.8121 30.3759 22 3 -12.9414 33.8435 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 23 ~ 2.3388 32.7517 14.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 24 # -12.9224 35.6565 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 25 O -13.0035 42.7168 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 26 ` -12.7820 14.6591 8.4694 -Arial_Black.ttf 40 w 54.8121 30.3759 27 @ -13.0940 43.1879 49.4974 -Arial_Black.ttf 40 w 54.8121 30.3759 28 F -11.6289 31.5927 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 29 S -12.6765 37.5323 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 30 p -1.1920 32.7806 42.9379 -Arial_Black.ttf 40 w 54.8121 30.3759 31 “ -12.8087 25.6241 23.2483 -Arial_Black.ttf 40 w 54.8121 30.3759 32 % -12.8444 52.3164 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 33 £ -12.5943 34.8724 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 34 . 18.4912 11.6241 11.6241 -Arial_Black.ttf 40 w 54.8121 30.3759 35 2 -12.8280 33.5935 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 36 5 -11.9298 33.8435 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 37 m -1.3507 51.5035 31.5638 -Arial_Black.ttf 40 w 54.8121 30.3759 38 V -11.8633 45.1547 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 39 6 -12.5895 33.8435 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 40 w -0.1199 54.8121 30.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 41 T -11.4989 38.4362 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 42 M -11.7584 45.8086 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 43 G -12.7814 42.5629 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 44 b -11.8799 32.7806 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 45 9 -12.6427 33.8435 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 46 ; 0.1325 11.6241 42.9379 -Arial_Black.ttf 40 w 54.8121 30.3759 47 D -11.2803 38.3112 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 48 L -10.9489 31.9965 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 49 y -0.3295 35.7815 42.9379 -Arial_Black.ttf 40 w 54.8121 30.3759 50 ‘ -12.8143 11.6241 23.2483 -Arial_Black.ttf 40 w 54.8121 30.3759 51 \ -12.7557 16.3759 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 52 R -11.1035 41.2212 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 53 < -7.8592 32.6267 34.9974 -Arial_Black.ttf 40 w 54.8121 30.3759 54 4 -12.6272 38.0612 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 55 8 -12.8560 33.8435 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 56 0 -12.9229 33.8435 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 57 A -11.8669 45.5638 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 58 E -11.7340 34.4974 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 59 B -11.4197 38.3112 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 60 v -0.0339 35.8156 30.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 61 k -11.6162 35.5315 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 62 J -11.7388 33.1556 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 63 U -11.6700 39.2150 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 64 j -11.8312 18.3427 54.5621 -Arial_Black.ttf 40 w 54.8121 30.3759 65 ( -12.9423 17.4047 56.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 66 7 -11.7173 33.5935 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 67 § -12.6711 34.2185 55.7500 -Arial_Black.ttf 40 w 54.8121 30.3759 68 $ -16.0460 35.2815 52.4362 -Arial_Black.ttf 40 w 54.8121 30.3759 69 € -12.9894 38.1914 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 70 / -12.6470 16.3759 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 71 C -12.7921 39.9082 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 72 * -12.8118 22.1565 20.6224 -Arial_Black.ttf 40 w 54.8121 30.3759 73 ” -12.8666 25.6241 23.2483 -Arial_Black.ttf 40 w 54.8121 30.3759 74 ? -12.9116 31.8138 43.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 75 { -12.9135 21.4974 56.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 76 } -12.7387 21.4974 56.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 77 , 18.2519 11.6241 24.1862 -Arial_Black.ttf 40 w 54.8121 30.3759 78 I -11.6226 12.8121 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 79 ° -12.8978 14.1250 14.1250 -Arial_Black.ttf 40 w 54.8121 30.3759 80 K -11.8459 43.9668 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 81 H -12.0127 39.2150 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 82 q -0.9330 32.7806 42.9379 -Arial_Black.ttf 40 w 54.8121 30.3759 83 & -12.5255 46.8820 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 84 ’ -12.7931 11.6241 23.2483 -Arial_Black.ttf 40 w 54.8121 30.3759 85 [ -11.5809 18.3427 53.6241 -Arial_Black.ttf 40 w 54.8121 30.3759 86 - 10.4183 16.9047 9.2483 -Arial_Black.ttf 40 w 54.8121 30.3759 87 Y -11.6124 45.5638 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 88 Q -12.4199 44.1547 48.3435 -Arial_Black.ttf 40 w 54.8121 30.3759 89 " -11.6951 26.8121 15.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 90 ! -12.1674 11.6241 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 91 x -0.3671 38.6914 30.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 92 ) -12.5211 17.4047 56.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 93 = -1.9035 30.9047 23.2483 -Arial_Black.ttf 40 w 54.8121 30.3759 94 + -6.6152 31.4388 31.4388 -Arial_Black.ttf 40 w 54.8121 30.3759 95 X -11.9529 45.1547 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 96 » 1.9916 31.1547 26.4082 -Arial_Black.ttf 40 w 54.8121 30.3759 97 ' -11.8123 11.6241 15.1879 -Arial_Black.ttf 40 w 54.8121 30.3759 98 ¢ -11.4492 34.2185 53.2203 -Arial_Black.ttf 40 w 54.8121 30.3759 99 Z -11.4630 37.3059 42.0000 -Arial_Black.ttf 40 w 54.8121 30.3759 100 > -8.0041 32.6267 34.9974 -Arial_Black.ttf 40 w 54.8121 30.3759 101 ® -12.5910 43.9720 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 102 © -12.9057 43.9720 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 103 ] -11.3567 18.3427 53.6241 -Arial_Black.ttf 40 w 54.8121 30.3759 104 é -12.5822 34.2185 44.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 105 z 0.2516 28.4327 30.3759 -Arial_Black.ttf 40 w 54.8121 30.3759 106 _ 34.1737 29.1879 2.7797 -Arial_Black.ttf 40 w 54.8121 30.3759 107 ¥ -11.5129 40.4082 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 1 t -0.0653 22.4353 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 2 h 0.1984 31.8427 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 3 a 10.2278 35.4065 32.7517 -Arial_Black.ttf 41 T 38.4362 42.0000 4 n 10.3050 31.8427 31.5638 -Arial_Black.ttf 41 T 38.4362 42.0000 5 P -0.2058 34.7474 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 6 o 10.4876 34.2185 32.7517 -Arial_Black.ttf 41 T 38.4362 42.0000 7 e 10.3018 34.2185 32.7517 -Arial_Black.ttf 41 T 38.4362 42.0000 8 : 11.8077 11.6241 30.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 9 r 10.3263 23.9073 31.5638 -Arial_Black.ttf 41 T 38.4362 42.0000 10 l -0.0635 11.6241 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 11 i -0.0385 11.6241 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 12 1 -1.2590 23.9073 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 13 | -0.0909 7.2815 53.3741 -Arial_Black.ttf 41 T 38.4362 42.0000 14 N -0.0871 39.2150 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 15 f -1.4392 23.6233 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 16 g 10.5628 34.2185 44.1259 -Arial_Black.ttf 41 T 38.4362 42.0000 17 d 0.0208 32.7806 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 18 W 0.0437 59.5638 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 19 s 10.3102 31.5638 32.7517 -Arial_Black.ttf 41 T 38.4362 42.0000 20 c 10.5354 34.2185 32.7517 -Arial_Black.ttf 41 T 38.4362 42.0000 21 u 11.4500 31.5927 31.5638 -Arial_Black.ttf 41 T 38.4362 42.0000 22 3 -0.8514 33.8435 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 23 ~ 14.0078 32.7517 14.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 24 # -1.0662 35.6565 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 25 O -0.7819 42.7168 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 26 ` -1.1048 14.6591 8.4694 -Arial_Black.ttf 41 T 38.4362 42.0000 27 @ -1.2719 43.1879 49.4974 -Arial_Black.ttf 41 T 38.4362 42.0000 28 F 0.1658 31.5927 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 29 S -0.9072 37.5323 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 30 p 10.5372 32.7806 42.9379 -Arial_Black.ttf 41 T 38.4362 42.0000 31 “ -1.2389 25.6241 23.2483 -Arial_Black.ttf 41 T 38.4362 42.0000 32 % -1.2691 52.3164 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 33 £ -1.0558 34.8724 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 34 . 30.5108 11.6241 11.6241 -Arial_Black.ttf 41 T 38.4362 42.0000 35 2 -0.9593 33.5935 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 36 5 0.2094 33.8435 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 37 m 10.6554 51.5035 31.5638 -Arial_Black.ttf 41 T 38.4362 42.0000 38 V 0.2568 45.1547 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 39 6 -1.2270 33.8435 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 40 w 11.6775 54.8121 30.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 41 T -0.1427 38.4362 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 42 M 0.0319 45.8086 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 43 G -1.0988 42.5629 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 44 b 0.3216 32.7806 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 45 9 -0.9940 33.8435 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 46 ; 11.8400 11.6241 42.9379 -Arial_Black.ttf 41 T 38.4362 42.0000 47 D -0.3796 38.3112 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 48 L 0.0839 31.9965 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 49 y 11.7025 35.7815 42.9379 -Arial_Black.ttf 41 T 38.4362 42.0000 50 ‘ -1.2766 11.6241 23.2483 -Arial_Black.ttf 41 T 38.4362 42.0000 51 \ -1.3947 16.3759 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 52 R 0.1094 41.2212 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 53 < 3.2987 32.6267 34.9974 -Arial_Black.ttf 41 T 38.4362 42.0000 54 4 -1.3149 38.0612 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 55 8 -1.2653 33.8435 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 56 0 -1.0013 33.8435 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 57 A -0.0028 45.5638 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 58 E -0.1832 34.4974 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 59 B -0.1547 38.3112 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 60 v 11.7098 35.8156 30.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 61 k -0.1757 35.5315 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 62 J 0.0835 33.1556 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 63 U -0.0375 39.2150 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 64 j -0.1631 18.3427 54.5621 -Arial_Black.ttf 41 T 38.4362 42.0000 65 ( -1.0033 17.4047 56.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 66 7 -0.0052 33.5935 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 67 § -1.3565 34.2185 55.7500 -Arial_Black.ttf 41 T 38.4362 42.0000 68 $ -3.9880 35.2815 52.4362 -Arial_Black.ttf 41 T 38.4362 42.0000 69 € -1.2393 38.1914 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 70 / -1.2361 16.3759 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 71 C -1.1064 39.9082 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 72 * -1.1852 22.1565 20.6224 -Arial_Black.ttf 41 T 38.4362 42.0000 73 ” -1.1917 25.6241 23.2483 -Arial_Black.ttf 41 T 38.4362 42.0000 74 ? -1.3784 31.8138 43.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 75 { -1.1065 21.4974 56.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 76 } -1.4752 21.4974 56.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 77 , 30.4233 11.6241 24.1862 -Arial_Black.ttf 41 T 38.4362 42.0000 78 I -0.0917 12.8121 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 79 ° -1.3126 14.1250 14.1250 -Arial_Black.ttf 41 T 38.4362 42.0000 80 K -0.1067 43.9668 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 81 H 0.2495 39.2150 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 82 q 10.3658 32.7806 42.9379 -Arial_Black.ttf 41 T 38.4362 42.0000 83 & -0.8992 46.8820 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 84 ’ -1.2945 11.6241 23.2483 -Arial_Black.ttf 41 T 38.4362 42.0000 85 [ -0.0774 18.3427 53.6241 -Arial_Black.ttf 41 T 38.4362 42.0000 86 - 21.9132 16.9047 9.2483 -Arial_Black.ttf 41 T 38.4362 42.0000 87 Y -0.1266 45.5638 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 88 Q -0.7356 44.1547 48.3435 -Arial_Black.ttf 41 T 38.4362 42.0000 89 " 0.3428 26.8121 15.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 90 ! 0.2584 11.6241 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 91 x 11.5471 38.6914 30.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 92 ) -1.0280 17.4047 56.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 93 = 9.4087 30.9047 23.2483 -Arial_Black.ttf 41 T 38.4362 42.0000 94 + 5.5118 31.4388 31.4388 -Arial_Black.ttf 41 T 38.4362 42.0000 95 X -0.1882 45.1547 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 96 » 13.4784 31.1547 26.4082 -Arial_Black.ttf 41 T 38.4362 42.0000 97 ' -0.2298 11.6241 15.1879 -Arial_Black.ttf 41 T 38.4362 42.0000 98 ¢ 0.1527 34.2185 53.2203 -Arial_Black.ttf 41 T 38.4362 42.0000 99 Z -0.2295 37.3059 42.0000 -Arial_Black.ttf 41 T 38.4362 42.0000 100 > 3.7158 32.6267 34.9974 -Arial_Black.ttf 41 T 38.4362 42.0000 101 ® -1.3386 43.9720 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 102 © -1.0905 43.9720 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 103 ] -0.0955 18.3427 53.6241 -Arial_Black.ttf 41 T 38.4362 42.0000 104 é -0.8333 34.2185 44.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 105 z 12.0485 28.4327 30.3759 -Arial_Black.ttf 41 T 38.4362 42.0000 106 _ 46.1686 29.1879 2.7797 -Arial_Black.ttf 41 T 38.4362 42.0000 107 ¥ -0.0422 40.4082 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 1 t 0.2865 22.4353 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 2 h -0.2970 31.8427 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 3 a 10.3532 35.4065 32.7517 -Arial_Black.ttf 42 M 45.8086 42.0000 4 n 10.7269 31.8427 31.5638 -Arial_Black.ttf 42 M 45.8086 42.0000 5 P -0.1305 34.7474 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 6 o 10.4009 34.2185 32.7517 -Arial_Black.ttf 42 M 45.8086 42.0000 7 e 10.2157 34.2185 32.7517 -Arial_Black.ttf 42 M 45.8086 42.0000 8 : 11.9172 11.6241 30.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 9 r 10.3370 23.9073 31.5638 -Arial_Black.ttf 42 M 45.8086 42.0000 10 l -0.0362 11.6241 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 11 i 0.4309 11.6241 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 12 1 -1.1796 23.9073 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 13 | -0.0403 7.2815 53.3741 -Arial_Black.ttf 42 M 45.8086 42.0000 14 N 0.1658 39.2150 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 15 f -1.2083 23.6233 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 16 g 10.3480 34.2185 44.1259 -Arial_Black.ttf 42 M 45.8086 42.0000 17 d 0.2555 32.7806 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 18 W 0.4212 59.5638 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 19 s 10.0220 31.5638 32.7517 -Arial_Black.ttf 42 M 45.8086 42.0000 20 c 10.4754 34.2185 32.7517 -Arial_Black.ttf 42 M 45.8086 42.0000 21 u 11.6536 31.5927 31.5638 -Arial_Black.ttf 42 M 45.8086 42.0000 22 3 -1.3562 33.8435 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 23 ~ 14.0641 32.7517 14.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 24 # -1.0168 35.6565 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 25 O -1.0606 42.7168 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 26 ` -1.2709 14.6591 8.4694 -Arial_Black.ttf 42 M 45.8086 42.0000 27 @ -1.1533 43.1879 49.4974 -Arial_Black.ttf 42 M 45.8086 42.0000 28 F 0.1001 31.5927 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 29 S -1.2431 37.5323 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 30 p 10.7301 32.7806 42.9379 -Arial_Black.ttf 42 M 45.8086 42.0000 31 “ -0.7556 25.6241 23.2483 -Arial_Black.ttf 42 M 45.8086 42.0000 32 % -1.2816 52.3164 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 33 £ -1.3822 34.8724 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 34 . 30.3035 11.6241 11.6241 -Arial_Black.ttf 42 M 45.8086 42.0000 35 2 -0.6869 33.5935 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 36 5 -0.2078 33.8435 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 37 m 10.3978 51.5035 31.5638 -Arial_Black.ttf 42 M 45.8086 42.0000 38 V 0.0444 45.1547 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 39 6 -0.9914 33.8435 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 40 w 11.9315 54.8121 30.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 41 T -0.0965 38.4362 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 42 M -0.2101 45.8086 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 43 G -0.8116 42.5629 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 44 b 0.3541 32.7806 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 45 9 -1.2537 33.8435 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 46 ; 11.4586 11.6241 42.9379 -Arial_Black.ttf 42 M 45.8086 42.0000 47 D -0.0213 38.3112 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 48 L -0.1640 31.9965 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 49 y 11.6092 35.7815 42.9379 -Arial_Black.ttf 42 M 45.8086 42.0000 50 ‘ -1.0877 11.6241 23.2483 -Arial_Black.ttf 42 M 45.8086 42.0000 51 \ -1.2886 16.3759 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 52 R 0.0465 41.2212 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 53 < 3.4720 32.6267 34.9974 -Arial_Black.ttf 42 M 45.8086 42.0000 54 4 -1.2487 38.0612 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 55 8 -1.1226 33.8435 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 56 0 -1.0110 33.8435 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 57 A 0.2382 45.5638 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 58 E -0.2610 34.4974 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 59 B 0.0235 38.3112 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 60 v 11.2760 35.8156 30.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 61 k -0.1301 35.5315 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 62 J -0.0992 33.1556 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 63 U 0.1676 39.2150 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 64 j 0.0116 18.3427 54.5621 -Arial_Black.ttf 42 M 45.8086 42.0000 65 ( -0.8921 17.4047 56.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 66 7 -0.0877 33.5935 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 67 § -1.2397 34.2185 55.7500 -Arial_Black.ttf 42 M 45.8086 42.0000 68 $ -3.8073 35.2815 52.4362 -Arial_Black.ttf 42 M 45.8086 42.0000 69 € -1.3136 38.1914 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 70 / -1.1040 16.3759 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 71 C -1.4648 39.9082 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 72 * -1.0082 22.1565 20.6224 -Arial_Black.ttf 42 M 45.8086 42.0000 73 ” -1.3047 25.6241 23.2483 -Arial_Black.ttf 42 M 45.8086 42.0000 74 ? -0.8222 31.8138 43.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 75 { -1.2847 21.4974 56.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 76 } -1.2904 21.4974 56.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 77 , 30.1972 11.6241 24.1862 -Arial_Black.ttf 42 M 45.8086 42.0000 78 I -0.0922 12.8121 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 79 ° -1.1110 14.1250 14.1250 -Arial_Black.ttf 42 M 45.8086 42.0000 80 K -0.1896 43.9668 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 81 H -0.3281 39.2150 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 82 q 10.3737 32.7806 42.9379 -Arial_Black.ttf 42 M 45.8086 42.0000 83 & -1.5810 46.8820 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 84 ’ -1.4460 11.6241 23.2483 -Arial_Black.ttf 42 M 45.8086 42.0000 85 [ 0.2754 18.3427 53.6241 -Arial_Black.ttf 42 M 45.8086 42.0000 86 - 22.2826 16.9047 9.2483 -Arial_Black.ttf 42 M 45.8086 42.0000 87 Y -0.3240 45.5638 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 88 Q -1.1508 44.1547 48.3435 -Arial_Black.ttf 42 M 45.8086 42.0000 89 " -0.1789 26.8121 15.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 90 ! 0.0157 11.6241 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 91 x 11.4641 38.6914 30.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 92 ) -0.9377 17.4047 56.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 93 = 9.6150 30.9047 23.2483 -Arial_Black.ttf 42 M 45.8086 42.0000 94 + 5.0743 31.4388 31.4388 -Arial_Black.ttf 42 M 45.8086 42.0000 95 X 0.0736 45.1547 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 96 » 13.2054 31.1547 26.4082 -Arial_Black.ttf 42 M 45.8086 42.0000 97 ' 0.0909 11.6241 15.1879 -Arial_Black.ttf 42 M 45.8086 42.0000 98 ¢ 0.2751 34.2185 53.2203 -Arial_Black.ttf 42 M 45.8086 42.0000 99 Z 0.0621 37.3059 42.0000 -Arial_Black.ttf 42 M 45.8086 42.0000 100 > 4.0148 32.6267 34.9974 -Arial_Black.ttf 42 M 45.8086 42.0000 101 ® -1.4346 43.9720 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 102 © -1.4265 43.9720 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 103 ] -0.3092 18.3427 53.6241 -Arial_Black.ttf 42 M 45.8086 42.0000 104 é -1.3874 34.2185 44.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 105 z 11.7691 28.4327 30.3759 -Arial_Black.ttf 42 M 45.8086 42.0000 106 _ 46.0286 29.1879 2.7797 -Arial_Black.ttf 42 M 45.8086 42.0000 107 ¥ 0.3327 40.4082 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 1 t 0.9860 22.4353 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 2 h 1.4429 31.8427 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 3 a 11.7001 35.4065 32.7517 -Arial_Black.ttf 43 G 42.5629 44.3759 4 n 11.7881 31.8427 31.5638 -Arial_Black.ttf 43 G 42.5629 44.3759 5 P 1.0233 34.7474 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 6 o 11.6164 34.2185 32.7517 -Arial_Black.ttf 43 G 42.5629 44.3759 7 e 11.5121 34.2185 32.7517 -Arial_Black.ttf 43 G 42.5629 44.3759 8 : 12.5391 11.6241 30.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 9 r 11.5537 23.9073 31.5638 -Arial_Black.ttf 43 G 42.5629 44.3759 10 l 1.4178 11.6241 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 11 i 1.4904 11.6241 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 12 1 0.1812 23.9073 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 13 | 1.3817 7.2815 53.3741 -Arial_Black.ttf 43 G 42.5629 44.3759 14 N 1.0054 39.2150 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 15 f -0.0487 23.6233 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 16 g 11.2880 34.2185 44.1259 -Arial_Black.ttf 43 G 42.5629 44.3759 17 d 1.1838 32.7806 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 18 W 1.2831 59.5638 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 19 s 11.6422 31.5638 32.7517 -Arial_Black.ttf 43 G 42.5629 44.3759 20 c 11.7605 34.2185 32.7517 -Arial_Black.ttf 43 G 42.5629 44.3759 21 u 12.6309 31.5927 31.5638 -Arial_Black.ttf 43 G 42.5629 44.3759 22 3 0.2809 33.8435 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 23 ~ 15.0113 32.7517 14.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 24 # 0.1539 35.6565 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 25 O -0.2172 42.7168 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 26 ` -0.2300 14.6591 8.4694 -Arial_Black.ttf 43 G 42.5629 44.3759 27 @ 0.0853 43.1879 49.4974 -Arial_Black.ttf 43 G 42.5629 44.3759 28 F 1.1879 31.5927 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 29 S -0.3078 37.5323 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 30 p 11.5514 32.7806 42.9379 -Arial_Black.ttf 43 G 42.5629 44.3759 31 “ 0.1938 25.6241 23.2483 -Arial_Black.ttf 43 G 42.5629 44.3759 32 % 0.0244 52.3164 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 33 £ 0.1575 34.8724 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 34 . 31.4573 11.6241 11.6241 -Arial_Black.ttf 43 G 42.5629 44.3759 35 2 0.1006 33.5935 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 36 5 1.2653 33.8435 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 37 m 11.4901 51.5035 31.5638 -Arial_Black.ttf 43 G 42.5629 44.3759 38 V 1.0939 45.1547 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 39 6 -0.1911 33.8435 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 40 w 12.8180 54.8121 30.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 41 T 1.3304 38.4362 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 42 M 0.8945 45.8086 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 43 G 0.0075 42.5629 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 44 b 1.2949 32.7806 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 45 9 0.0676 33.8435 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 46 ; 12.7569 11.6241 42.9379 -Arial_Black.ttf 43 G 42.5629 44.3759 47 D 1.3992 38.3112 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 48 L 1.4894 31.9965 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 49 y 12.8131 35.7815 42.9379 -Arial_Black.ttf 43 G 42.5629 44.3759 50 ‘ -0.0251 11.6241 23.2483 -Arial_Black.ttf 43 G 42.5629 44.3759 51 \ 0.3634 16.3759 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 52 R 1.4360 41.2212 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 53 < 4.8203 32.6267 34.9974 -Arial_Black.ttf 43 G 42.5629 44.3759 54 4 -0.1332 38.0612 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 55 8 -0.3838 33.8435 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 56 0 -0.4236 33.8435 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 57 A 1.1061 45.5638 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 58 E 1.3186 34.4974 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 59 B 1.2854 38.3112 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 60 v 12.8925 35.8156 30.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 61 k 1.4883 35.5315 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 62 J 1.3382 33.1556 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 63 U 1.4017 39.2150 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 64 j 1.0711 18.3427 54.5621 -Arial_Black.ttf 43 G 42.5629 44.3759 65 ( 0.0867 17.4047 56.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 66 7 1.2516 33.5935 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 67 § -0.1645 34.2185 55.7500 -Arial_Black.ttf 43 G 42.5629 44.3759 68 $ -2.5423 35.2815 52.4362 -Arial_Black.ttf 43 G 42.5629 44.3759 69 € -0.2498 38.1914 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 70 / 0.2006 16.3759 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 71 C -0.0891 39.9082 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 72 * 0.3463 22.1565 20.6224 -Arial_Black.ttf 43 G 42.5629 44.3759 73 ” 0.1145 25.6241 23.2483 -Arial_Black.ttf 43 G 42.5629 44.3759 74 ? -0.2198 31.8138 43.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 75 { -0.5447 21.4974 56.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 76 } -0.0495 21.4974 56.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 77 , 31.6056 11.6241 24.1862 -Arial_Black.ttf 43 G 42.5629 44.3759 78 I 1.3890 12.8121 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 79 ° -0.0365 14.1250 14.1250 -Arial_Black.ttf 43 G 42.5629 44.3759 80 K 0.8171 43.9668 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 81 H 1.1449 39.2150 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 82 q 11.3351 32.7806 42.9379 -Arial_Black.ttf 43 G 42.5629 44.3759 83 & 0.0394 46.8820 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 84 ’ -0.2470 11.6241 23.2483 -Arial_Black.ttf 43 G 42.5629 44.3759 85 [ 1.0624 18.3427 53.6241 -Arial_Black.ttf 43 G 42.5629 44.3759 86 - 23.3774 16.9047 9.2483 -Arial_Black.ttf 43 G 42.5629 44.3759 87 Y 1.1124 45.5638 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 88 Q 0.0874 44.1547 48.3435 -Arial_Black.ttf 43 G 42.5629 44.3759 89 " 1.5112 26.8121 15.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 90 ! 1.2229 11.6241 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 91 x 12.8691 38.6914 30.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 92 ) 0.0076 17.4047 56.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 93 = 10.6468 30.9047 23.2483 -Arial_Black.ttf 43 G 42.5629 44.3759 94 + 6.7583 31.4388 31.4388 -Arial_Black.ttf 43 G 42.5629 44.3759 95 X 1.2442 45.1547 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 96 » 14.6391 31.1547 26.4082 -Arial_Black.ttf 43 G 42.5629 44.3759 97 ' 1.2635 11.6241 15.1879 -Arial_Black.ttf 43 G 42.5629 44.3759 98 ¢ 1.5904 34.2185 53.2203 -Arial_Black.ttf 43 G 42.5629 44.3759 99 Z 1.2746 37.3059 42.0000 -Arial_Black.ttf 43 G 42.5629 44.3759 100 > 4.8133 32.6267 34.9974 -Arial_Black.ttf 43 G 42.5629 44.3759 101 ® -0.1187 43.9720 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 102 © 0.2289 43.9720 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 103 ] 1.2571 18.3427 53.6241 -Arial_Black.ttf 43 G 42.5629 44.3759 104 é -0.2294 34.2185 44.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 105 z 12.7781 28.4327 30.3759 -Arial_Black.ttf 43 G 42.5629 44.3759 106 _ 47.3127 29.1879 2.7797 -Arial_Black.ttf 43 G 42.5629 44.3759 107 ¥ 0.6965 40.4082 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 1 t -0.0156 22.4353 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 2 h 0.1307 31.8427 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 3 a 10.4581 35.4065 32.7517 -Arial_Black.ttf 44 b 32.7806 43.1879 4 n 9.9318 31.8427 31.5638 -Arial_Black.ttf 44 b 32.7806 43.1879 5 P 0.0899 34.7474 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 6 o 10.4464 34.2185 32.7517 -Arial_Black.ttf 44 b 32.7806 43.1879 7 e 10.5493 34.2185 32.7517 -Arial_Black.ttf 44 b 32.7806 43.1879 8 : 11.7413 11.6241 30.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 9 r 10.7415 23.9073 31.5638 -Arial_Black.ttf 44 b 32.7806 43.1879 10 l 0.1746 11.6241 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 11 i -0.0292 11.6241 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 12 1 -0.9631 23.9073 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 13 | -0.0676 7.2815 53.3741 -Arial_Black.ttf 44 b 32.7806 43.1879 14 N -0.3838 39.2150 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 15 f -1.2834 23.6233 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 16 g 10.4807 34.2185 44.1259 -Arial_Black.ttf 44 b 32.7806 43.1879 17 d -0.0544 32.7806 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 18 W 0.0108 59.5638 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 19 s 10.6035 31.5638 32.7517 -Arial_Black.ttf 44 b 32.7806 43.1879 20 c 10.5923 34.2185 32.7517 -Arial_Black.ttf 44 b 32.7806 43.1879 21 u 11.7809 31.5927 31.5638 -Arial_Black.ttf 44 b 32.7806 43.1879 22 3 -1.2389 33.8435 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 23 ~ 14.0097 32.7517 14.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 24 # -1.2803 35.6565 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 25 O -1.1963 42.7168 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 26 ` -1.4960 14.6591 8.4694 -Arial_Black.ttf 44 b 32.7806 43.1879 27 @ -1.2551 43.1879 49.4974 -Arial_Black.ttf 44 b 32.7806 43.1879 28 F -0.0170 31.5927 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 29 S -1.3419 37.5323 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 30 p 10.4789 32.7806 42.9379 -Arial_Black.ttf 44 b 32.7806 43.1879 31 “ -1.2829 25.6241 23.2483 -Arial_Black.ttf 44 b 32.7806 43.1879 32 % -0.9696 52.3164 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 33 £ -1.3177 34.8724 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 34 . 30.3294 11.6241 11.6241 -Arial_Black.ttf 44 b 32.7806 43.1879 35 2 -1.0099 33.5935 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 36 5 -0.2420 33.8435 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 37 m 10.5798 51.5035 31.5638 -Arial_Black.ttf 44 b 32.7806 43.1879 38 V 0.0997 45.1547 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 39 6 -1.0624 33.8435 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 40 w 11.5711 54.8121 30.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 41 T 0.1603 38.4362 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 42 M -0.1590 45.8086 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 43 G -1.2663 42.5629 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 44 b -0.2379 32.7806 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 45 9 -1.1355 33.8435 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 46 ; 11.4500 11.6241 42.9379 -Arial_Black.ttf 44 b 32.7806 43.1879 47 D -0.0524 38.3112 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 48 L 0.0703 31.9965 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 49 y 11.7591 35.7815 42.9379 -Arial_Black.ttf 44 b 32.7806 43.1879 50 ‘ -1.3316 11.6241 23.2483 -Arial_Black.ttf 44 b 32.7806 43.1879 51 \ -1.1545 16.3759 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 52 R -0.0992 41.2212 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 53 < 3.4670 32.6267 34.9974 -Arial_Black.ttf 44 b 32.7806 43.1879 54 4 -0.9487 38.0612 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 55 8 -1.3520 33.8435 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 56 0 -1.1422 33.8435 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 57 A 0.1707 45.5638 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 58 E 0.4177 34.4974 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 59 B 0.0756 38.3112 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 60 v 11.7515 35.8156 30.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 61 k -0.0534 35.5315 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 62 J 0.1739 33.1556 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 63 U -0.2911 39.2150 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 64 j -0.1269 18.3427 54.5621 -Arial_Black.ttf 44 b 32.7806 43.1879 65 ( -0.8060 17.4047 56.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 66 7 0.0941 33.5935 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 67 § -1.1574 34.2185 55.7500 -Arial_Black.ttf 44 b 32.7806 43.1879 68 $ -4.0853 35.2815 52.4362 -Arial_Black.ttf 44 b 32.7806 43.1879 69 € -1.1203 38.1914 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 70 / -0.9159 16.3759 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 71 C -1.1384 39.9082 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 72 * -1.1106 22.1565 20.6224 -Arial_Black.ttf 44 b 32.7806 43.1879 73 ” -1.0221 25.6241 23.2483 -Arial_Black.ttf 44 b 32.7806 43.1879 74 ? -0.7342 31.8138 43.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 75 { -0.9677 21.4974 56.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 76 } -1.1232 21.4974 56.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 77 , 30.1743 11.6241 24.1862 -Arial_Black.ttf 44 b 32.7806 43.1879 78 I 0.0038 12.8121 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 79 ° -1.3094 14.1250 14.1250 -Arial_Black.ttf 44 b 32.7806 43.1879 80 K -0.5548 43.9668 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 81 H -0.2011 39.2150 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 82 q 10.4015 32.7806 42.9379 -Arial_Black.ttf 44 b 32.7806 43.1879 83 & -1.0638 46.8820 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 84 ’ -1.3465 11.6241 23.2483 -Arial_Black.ttf 44 b 32.7806 43.1879 85 [ -0.1374 18.3427 53.6241 -Arial_Black.ttf 44 b 32.7806 43.1879 86 - 21.9816 16.9047 9.2483 -Arial_Black.ttf 44 b 32.7806 43.1879 87 Y 0.2605 45.5638 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 88 Q -1.0078 44.1547 48.3435 -Arial_Black.ttf 44 b 32.7806 43.1879 89 " 0.1739 26.8121 15.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 90 ! -0.3484 11.6241 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 91 x 11.7028 38.6914 30.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 92 ) -1.1629 17.4047 56.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 93 = 9.5343 30.9047 23.2483 -Arial_Black.ttf 44 b 32.7806 43.1879 94 + 5.0610 31.4388 31.4388 -Arial_Black.ttf 44 b 32.7806 43.1879 95 X -0.1608 45.1547 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 96 » 13.6340 31.1547 26.4082 -Arial_Black.ttf 44 b 32.7806 43.1879 97 ' 0.2757 11.6241 15.1879 -Arial_Black.ttf 44 b 32.7806 43.1879 98 ¢ 0.7243 34.2185 53.2203 -Arial_Black.ttf 44 b 32.7806 43.1879 99 Z 0.0399 37.3059 42.0000 -Arial_Black.ttf 44 b 32.7806 43.1879 100 > 3.2849 32.6267 34.9974 -Arial_Black.ttf 44 b 32.7806 43.1879 101 ® -1.2931 43.9720 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 102 © -1.3524 43.9720 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 103 ] 0.2925 18.3427 53.6241 -Arial_Black.ttf 44 b 32.7806 43.1879 104 é -1.0196 34.2185 44.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 105 z 11.2849 28.4327 30.3759 -Arial_Black.ttf 44 b 32.7806 43.1879 106 _ 46.0537 29.1879 2.7797 -Arial_Black.ttf 44 b 32.7806 43.1879 107 ¥ 0.0379 40.4082 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 1 t 1.1876 22.4353 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 2 h 1.0762 31.8427 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 3 a 11.3688 35.4065 32.7517 -Arial_Black.ttf 45 9 33.8435 44.3759 4 n 11.2469 31.8427 31.5638 -Arial_Black.ttf 45 9 33.8435 44.3759 5 P 0.9825 34.7474 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 6 o 11.6121 34.2185 32.7517 -Arial_Black.ttf 45 9 33.8435 44.3759 7 e 11.7938 34.2185 32.7517 -Arial_Black.ttf 45 9 33.8834 44.3629 8 : 12.9891 11.6371 30.3629 -Arial_Black.ttf 45 9 33.8435 44.3759 9 r 11.7214 23.9073 31.5638 -Arial_Black.ttf 45 9 33.8435 44.3759 10 l 1.5430 11.6241 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 11 i 0.7772 11.6241 42.0000 -Arial_Black.ttf 45 9 33.8834 44.3629 12 1 0.0257 23.9105 43.1815 -Arial_Black.ttf 45 9 33.8834 44.3629 13 | 1.1706 7.2718 53.3612 -Arial_Black.ttf 45 9 33.8435 44.3759 14 N 1.3171 39.2150 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 15 f -0.3341 23.6233 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 16 g 11.9329 34.2185 44.1259 -Arial_Black.ttf 45 9 33.8435 44.3759 17 d 1.3361 32.7806 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 18 W 1.1963 59.5638 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 19 s 11.7158 31.5638 32.7517 -Arial_Black.ttf 45 9 33.8435 44.3759 20 c 11.7098 34.2185 32.7517 -Arial_Black.ttf 45 9 33.8435 44.3759 21 u 12.9260 31.5927 31.5638 -Arial_Black.ttf 45 9 33.8834 44.3629 22 3 -0.1324 33.8834 44.3629 -Arial_Black.ttf 45 9 33.8834 44.3629 23 ~ 15.0423 32.7258 14.0000 -Arial_Black.ttf 45 9 33.8834 44.3629 24 # 0.1983 35.6338 44.3629 -Arial_Black.ttf 45 9 33.8435 44.3759 25 O -0.1516 42.7168 44.3759 -Arial_Black.ttf 45 9 33.8834 44.3629 26 ` 0.0828 14.6708 8.4532 -Arial_Black.ttf 45 9 33.8834 44.3629 27 @ 0.1929 43.1815 49.5147 -Arial_Black.ttf 45 9 33.8435 44.3759 28 F 1.4377 31.5927 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 29 S 0.0431 37.5323 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 30 p 11.5759 32.7806 42.9379 -Arial_Black.ttf 45 9 33.8435 44.3759 31 “ 0.0403 25.6241 23.2483 -Arial_Black.ttf 45 9 33.8435 44.3759 32 % -0.1455 52.3164 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 33 £ -0.0882 34.8724 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 34 . 31.3966 11.6241 11.6241 -Arial_Black.ttf 45 9 33.8435 44.3759 35 2 -0.1548 33.5935 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 36 5 1.2719 33.8435 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 37 m 11.5013 51.5035 31.5638 -Arial_Black.ttf 45 9 33.8435 44.3759 38 V 1.2413 45.1547 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 39 6 0.1173 33.8435 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 40 w 13.0296 54.8121 30.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 41 T 0.9846 38.4362 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 42 M 1.2098 45.8086 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 43 G -0.1256 42.5629 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 44 b 1.1290 32.7806 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 45 9 -0.2540 33.8435 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 46 ; 12.8721 11.6241 42.9379 -Arial_Black.ttf 45 9 33.8435 44.3759 47 D 0.9496 38.3112 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 48 L 1.0844 31.9965 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 49 y 13.0168 35.7815 42.9379 -Arial_Black.ttf 45 9 33.8435 44.3759 50 ‘ 0.0523 11.6241 23.2483 -Arial_Black.ttf 45 9 33.8435 44.3759 51 \ 0.2025 16.3759 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 52 R 1.0203 41.2212 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 53 < 4.7720 32.6267 34.9974 -Arial_Black.ttf 45 9 33.8435 44.3759 54 4 0.2957 38.0612 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 55 8 -0.1447 33.8435 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 56 0 -0.0403 33.8435 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 57 A 1.1991 45.5638 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 58 E 1.3742 34.4974 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 59 B 1.2195 38.3112 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 60 v 13.0118 35.8156 30.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 61 k 1.3234 35.5315 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 62 J 1.1237 33.1556 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 63 U 1.0878 39.2150 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 64 j 1.2761 18.3427 54.5621 -Arial_Black.ttf 45 9 33.8435 44.3759 65 ( -0.1176 17.4047 56.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 66 7 1.3139 33.5935 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 67 § 0.0622 34.2185 55.7500 -Arial_Black.ttf 45 9 33.8435 44.3759 68 $ -2.9136 35.2815 52.4362 -Arial_Black.ttf 45 9 33.8435 44.3759 69 € 0.1696 38.1914 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 70 / 0.0990 16.3759 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 71 C 0.1144 39.9082 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 72 * 0.0171 22.1565 20.6224 -Arial_Black.ttf 45 9 33.8435 44.3759 73 ” 0.1256 25.6241 23.2483 -Arial_Black.ttf 45 9 33.8435 44.3759 74 ? 0.2490 31.8138 43.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 75 { -0.2727 21.4974 56.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 76 } -0.1228 21.4974 56.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 77 , 31.5643 11.6241 24.1862 -Arial_Black.ttf 45 9 33.8435 44.3759 78 I 1.2904 12.8121 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 79 ° 0.1260 14.1250 14.1250 -Arial_Black.ttf 45 9 33.8435 44.3759 80 K 0.9985 43.9668 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 81 H 1.3685 39.2150 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 82 q 11.6938 32.7806 42.9379 -Arial_Black.ttf 45 9 33.8435 44.3759 83 & 0.4201 46.8820 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 84 ’ 0.1549 11.6241 23.2483 -Arial_Black.ttf 45 9 33.8435 44.3759 85 [ 1.2838 18.3427 53.6241 -Arial_Black.ttf 45 9 33.8435 44.3759 86 - 23.2423 16.9047 9.2483 -Arial_Black.ttf 45 9 33.8435 44.3759 87 Y 1.3988 45.5638 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 88 Q 0.1748 44.1547 48.3435 -Arial_Black.ttf 45 9 33.8435 44.3759 89 " 1.5430 26.8121 15.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 90 ! 1.3020 11.6241 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 91 x 12.9030 38.6914 30.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 92 ) 0.1873 17.4047 56.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 93 = 10.7779 30.9047 23.2483 -Arial_Black.ttf 45 9 33.8435 44.3759 94 + 6.8949 31.4388 31.4388 -Arial_Black.ttf 45 9 33.8435 44.3759 95 X 1.3010 45.1547 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 96 » 14.6663 31.1547 26.4082 -Arial_Black.ttf 45 9 33.8435 44.3759 97 ' 1.0452 11.6241 15.1879 -Arial_Black.ttf 45 9 33.8435 44.3759 98 ¢ 1.5783 34.2185 53.2203 -Arial_Black.ttf 45 9 33.8435 44.3759 99 Z 1.0696 37.3059 42.0000 -Arial_Black.ttf 45 9 33.8435 44.3759 100 > 4.9144 32.6267 34.9974 -Arial_Black.ttf 45 9 33.8435 44.3759 101 ® -0.0500 43.9720 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 102 © 0.0020 43.9720 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 103 ] 1.1879 18.3427 53.6241 -Arial_Black.ttf 45 9 33.8435 44.3759 104 é -0.0755 34.2185 44.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 105 z 12.6333 28.4327 30.3759 -Arial_Black.ttf 45 9 33.8435 44.3759 106 _ 47.3590 29.1879 2.7797 -Arial_Black.ttf 45 9 33.8435 44.3759 107 ¥ 1.1193 40.4082 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 1 t -11.4975 22.4353 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 2 h -11.5217 31.8427 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 3 a -1.1110 35.4065 32.7517 -Arial_Black.ttf 46 ; 11.6241 42.9379 4 n -1.3233 31.8427 31.5638 -Arial_Black.ttf 46 ; 11.6241 42.9379 5 P -11.6279 34.7474 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 6 o -1.1165 34.2185 32.7517 -Arial_Black.ttf 46 ; 11.6241 42.9379 7 e -0.9683 34.2185 32.7517 -Arial_Black.ttf 46 ; 11.6371 42.9056 8 : 0.0138 11.6371 30.3629 -Arial_Black.ttf 46 ; 11.6241 42.9379 9 r -1.3556 23.9073 31.5638 -Arial_Black.ttf 46 ; 11.6241 42.9379 10 l -11.5908 11.6241 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 11 i -11.7934 11.6241 42.0000 -Arial_Black.ttf 46 ; 11.6371 42.9056 12 1 -13.0262 23.9105 43.1815 -Arial_Black.ttf 46 ; 11.6371 42.9056 13 | -11.7205 7.2718 53.3612 -Arial_Black.ttf 46 ; 11.6241 42.9379 14 N -11.4156 39.2150 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 15 f -12.9749 23.6233 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 16 g -1.0855 34.2185 44.1259 -Arial_Black.ttf 46 ; 11.6241 42.9379 17 d -11.5587 32.7806 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 18 W -11.7144 59.5638 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 19 s -1.1578 31.5638 32.7517 -Arial_Black.ttf 46 ; 11.6241 42.9379 20 c -1.0938 34.2185 32.7517 -Arial_Black.ttf 46 ; 11.6241 42.9379 21 u 0.4500 31.5927 31.5638 -Arial_Black.ttf 46 ; 11.6371 42.9056 22 3 -13.0061 33.8834 44.3629 -Arial_Black.ttf 46 ; 11.6371 42.9056 23 ~ 2.3593 32.7258 14.0000 -Arial_Black.ttf 46 ; 11.6371 42.9056 24 # -12.7841 35.6338 44.3629 -Arial_Black.ttf 46 ; 11.6241 42.9379 25 O -12.9089 42.7168 44.3759 -Arial_Black.ttf 46 ; 11.6371 42.9056 26 ` -12.9854 14.6708 8.4532 -Arial_Black.ttf 46 ; 11.6371 42.9056 27 @ -12.9404 43.1815 49.5147 -Arial_Black.ttf 46 ; 11.6241 42.9379 28 F -11.6182 31.5927 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 29 S -12.6892 37.5323 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 30 p -1.2237 32.7806 42.9379 -Arial_Black.ttf 46 ; 11.6241 42.9379 31 “ -12.9484 25.6241 23.2483 -Arial_Black.ttf 46 ; 11.6241 42.9379 32 % -12.8256 52.3164 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 33 £ -12.6827 34.8724 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 34 . 18.9164 11.6241 11.6241 -Arial_Black.ttf 46 ; 11.6241 42.9379 35 2 -12.6850 33.5935 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 36 5 -11.6301 33.8435 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 37 m -1.0151 51.5035 31.5638 -Arial_Black.ttf 46 ; 11.6241 42.9379 38 V -11.3785 45.1547 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 39 6 -13.1365 33.8435 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 40 w -0.0045 54.8121 30.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 41 T -11.5884 38.4362 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 42 M -11.6696 45.8086 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 43 G -12.8797 42.5629 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 44 b -11.5467 32.7806 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 45 9 -12.8849 33.8435 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 46 ; 0.1873 11.6241 42.9379 -Arial_Black.ttf 46 ; 11.6241 42.9379 47 D -11.3726 38.3112 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 48 L -11.6501 31.9965 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 49 y -0.0385 35.7815 42.9379 -Arial_Black.ttf 46 ; 11.6241 42.9379 50 ‘ -12.8478 11.6241 23.2483 -Arial_Black.ttf 46 ; 11.6241 42.9379 51 \ -12.7198 16.3759 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 52 R -11.4948 41.2212 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 53 < -7.8628 32.6267 34.9974 -Arial_Black.ttf 46 ; 11.6241 42.9379 54 4 -12.7278 38.0612 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 55 8 -12.8970 33.8435 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 56 0 -12.6614 33.8435 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 57 A -11.3715 45.5638 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 58 E -11.7150 34.4974 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 59 B -11.6630 38.3112 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 60 v 0.1850 35.8156 30.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 61 k -11.7098 35.5315 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 62 J -11.5787 33.1556 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 63 U -11.5402 39.2150 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 64 j -11.7010 18.3427 54.5621 -Arial_Black.ttf 46 ; 11.6241 42.9379 65 ( -13.0091 17.4047 56.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 66 7 -11.6241 33.5935 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 67 § -12.5488 34.2185 55.7500 -Arial_Black.ttf 46 ; 11.6241 42.9379 68 $ -15.6757 35.2815 52.4362 -Arial_Black.ttf 46 ; 11.6241 42.9379 69 € -12.6397 38.1914 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 70 / -12.7263 16.3759 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 71 C -12.9706 39.9082 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 72 * -12.8166 22.1565 20.6224 -Arial_Black.ttf 46 ; 11.6241 42.9379 73 ” -12.9771 25.6241 23.2483 -Arial_Black.ttf 46 ; 11.6241 42.9379 74 ? -12.9380 31.8138 43.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 75 { -12.8362 21.4974 56.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 76 } -12.7342 21.4974 56.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 77 , 18.8221 11.6241 24.1862 -Arial_Black.ttf 46 ; 11.6241 42.9379 78 I -11.6575 12.8121 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 79 ° -12.7281 14.1250 14.1250 -Arial_Black.ttf 46 ; 11.6241 42.9379 80 K -11.6241 43.9668 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 81 H -11.5791 39.2150 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 82 q -1.2334 32.7806 42.9379 -Arial_Black.ttf 46 ; 11.6241 42.9379 83 & -13.0132 46.8820 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 84 ’ -12.5952 11.6241 23.2483 -Arial_Black.ttf 46 ; 11.6241 42.9379 85 [ -11.4174 18.3427 53.6241 -Arial_Black.ttf 46 ; 11.6241 42.9379 86 - 10.6454 16.9047 9.2483 -Arial_Black.ttf 46 ; 11.6241 42.9379 87 Y -11.7938 45.5638 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 88 Q -12.7763 44.1547 48.3435 -Arial_Black.ttf 46 ; 11.6241 42.9379 89 " -11.3201 26.8121 15.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 90 ! -11.7010 11.6241 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 91 x -0.1928 38.6914 30.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 92 ) -12.8218 17.4047 56.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 93 = -2.2487 30.9047 23.2483 -Arial_Black.ttf 46 ; 11.6241 42.9379 94 + -6.4370 31.4388 31.4388 -Arial_Black.ttf 46 ; 11.6241 42.9379 95 X -11.6241 45.1547 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 96 » 1.8730 31.1547 26.4082 -Arial_Black.ttf 46 ; 11.6241 42.9379 97 ' -11.7809 11.6241 15.1879 -Arial_Black.ttf 46 ; 11.6241 42.9379 98 ¢ -11.2661 34.2185 53.2203 -Arial_Black.ttf 46 ; 11.6241 42.9379 99 Z -11.7910 37.3059 42.0000 -Arial_Black.ttf 46 ; 11.6241 42.9379 100 > -8.0603 32.6267 34.9974 -Arial_Black.ttf 46 ; 11.6241 42.9379 101 ® -12.8005 43.9720 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 102 © -12.8890 43.9720 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 103 ] -11.6766 18.3427 53.6241 -Arial_Black.ttf 46 ; 11.6241 42.9379 104 é -12.8180 34.2185 44.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 105 z 0.0097 28.4327 30.3759 -Arial_Black.ttf 46 ; 11.6241 42.9379 106 _ 34.3944 29.1879 2.7797 -Arial_Black.ttf 46 ; 11.6241 42.9379 107 ¥ -11.4902 40.4082 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 1 t -0.0324 22.4353 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 2 h 0.1936 31.8427 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 3 a 10.0548 35.4065 32.7517 -Arial_Black.ttf 47 D 38.3112 42.0000 4 n 10.4617 31.8427 31.5638 -Arial_Black.ttf 47 D 38.3112 42.0000 5 P -0.0403 34.7474 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 6 o 10.6476 34.2185 32.7517 -Arial_Black.ttf 47 D 38.3112 42.0000 7 e 10.2299 34.2185 32.7517 -Arial_Black.ttf 47 D 38.3112 42.0000 8 : 11.6241 11.6241 30.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 9 r 10.2980 23.9073 31.5638 -Arial_Black.ttf 47 D 38.3112 42.0000 10 l -0.4173 11.6241 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 11 i -0.0156 11.6241 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 12 1 -0.9353 23.9073 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 13 | -0.3601 7.2815 53.3741 -Arial_Black.ttf 47 D 38.3112 42.0000 14 N 0.1006 39.2150 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 15 f -1.2153 23.6233 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 16 g 10.5698 34.2185 44.1259 -Arial_Black.ttf 47 D 38.3112 42.0000 17 d -0.0408 32.7806 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 18 W -0.0602 59.5638 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 19 s 10.6108 31.5638 32.7517 -Arial_Black.ttf 47 D 38.3112 42.0000 20 c 10.3955 34.2185 32.7517 -Arial_Black.ttf 47 D 38.3112 42.0000 21 u 11.4526 31.5927 31.5638 -Arial_Black.ttf 47 D 38.3112 42.0000 22 3 -1.3105 33.8435 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 23 ~ 14.2327 32.7517 14.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 24 # -1.3510 35.6565 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 25 O -1.2134 42.7168 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 26 ` -1.3248 14.6591 8.4694 -Arial_Black.ttf 47 D 38.3112 42.0000 27 @ -1.2764 43.1879 49.4974 -Arial_Black.ttf 47 D 38.3112 42.0000 28 F -0.1968 31.5927 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 29 S -0.9020 37.5323 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 30 p 10.7373 32.7806 42.9379 -Arial_Black.ttf 47 D 38.3112 42.0000 31 “ -1.1025 25.6241 23.2483 -Arial_Black.ttf 47 D 38.3112 42.0000 32 % -1.0317 52.3164 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 33 £ -1.2436 34.8724 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 34 . 30.1608 11.6241 11.6241 -Arial_Black.ttf 47 D 38.3112 42.0000 35 2 -1.0294 33.5935 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 36 5 0.1443 33.8435 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 37 m 10.4047 51.5035 31.5638 -Arial_Black.ttf 47 D 38.3112 42.0000 38 V 0.0469 45.1547 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 39 6 -1.0495 33.8435 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 40 w 11.6153 54.8121 30.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 41 T -0.3295 38.4362 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 42 M 0.1309 45.8086 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 43 G -1.1022 42.5629 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 44 b -0.3438 32.7806 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 45 9 -1.1090 33.8435 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 46 ; 11.5259 11.6241 42.9379 -Arial_Black.ttf 47 D 38.3112 42.0000 47 D 0.0468 38.3112 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 48 L -0.2056 31.9965 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 49 y 11.5343 35.7815 42.9379 -Arial_Black.ttf 47 D 38.3112 42.0000 50 ‘ -1.2751 11.6241 23.2483 -Arial_Black.ttf 47 D 38.3112 42.0000 51 \ -1.0478 16.3759 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 52 R -0.1126 41.2212 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 53 < 3.4802 32.6267 34.9974 -Arial_Black.ttf 47 D 38.3112 42.0000 54 4 -1.1235 38.0612 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 55 8 -1.1925 33.8435 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 56 0 -0.8505 33.8435 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 57 A 0.0162 45.5638 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 58 E -0.0059 34.4974 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 59 B -0.5478 38.3112 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 60 v 11.7298 35.8156 30.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 61 k -0.1061 35.5315 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 62 J 0.1605 33.1556 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 63 U -0.2669 39.2150 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 64 j 0.3189 18.3427 54.5621 -Arial_Black.ttf 47 D 38.3112 42.0000 65 ( -0.9566 17.4047 56.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 66 7 0.0385 33.5935 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 67 § -1.0142 34.2185 55.7500 -Arial_Black.ttf 47 D 38.3112 42.0000 68 $ -3.8128 35.2815 52.4362 -Arial_Black.ttf 47 D 38.3112 42.0000 69 € -1.1782 38.1914 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 70 / -1.2352 16.3759 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 71 C -1.1124 39.9082 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 72 * -1.2232 22.1565 20.6224 -Arial_Black.ttf 47 D 38.3112 42.0000 73 ” -0.9627 25.6241 23.2483 -Arial_Black.ttf 47 D 38.3112 42.0000 74 ? -1.0242 31.8138 43.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 75 { -1.1481 21.4974 56.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 76 } -1.4447 21.4974 56.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 77 , 30.4643 11.6241 24.1862 -Arial_Black.ttf 47 D 38.3112 42.0000 78 I -0.0466 12.8121 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 79 ° -1.3191 14.1250 14.1250 -Arial_Black.ttf 47 D 38.3112 42.0000 80 K -0.1405 43.9668 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 81 H -0.0309 39.2150 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 82 q 10.4569 32.7806 42.9379 -Arial_Black.ttf 47 D 38.3112 42.0000 83 & -1.1327 46.8820 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 84 ’ -1.3260 11.6241 23.2483 -Arial_Black.ttf 47 D 38.3112 42.0000 85 [ -0.3452 18.3427 53.6241 -Arial_Black.ttf 47 D 38.3112 42.0000 86 - 22.0693 16.9047 9.2483 -Arial_Black.ttf 47 D 38.3112 42.0000 87 Y 0.0927 45.5638 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 88 Q -1.5181 44.1547 48.3435 -Arial_Black.ttf 47 D 38.3112 42.0000 89 " -0.0149 26.8121 15.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 90 ! 0.2096 11.6241 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 91 x 11.8879 38.6914 30.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 92 ) -1.0638 17.4047 56.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 93 = 9.6206 30.9047 23.2483 -Arial_Black.ttf 47 D 38.3112 42.0000 94 + 5.4804 31.4388 31.4388 -Arial_Black.ttf 47 D 38.3112 42.0000 95 X -0.1765 45.1547 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 96 » 13.6392 31.1547 26.4082 -Arial_Black.ttf 47 D 38.3112 42.0000 97 ' -0.1780 11.6241 15.1879 -Arial_Black.ttf 47 D 38.3112 42.0000 98 ¢ 0.4878 34.2185 53.2203 -Arial_Black.ttf 47 D 38.3112 42.0000 99 Z 0.0857 37.3059 42.0000 -Arial_Black.ttf 47 D 38.3112 42.0000 100 > 3.6450 32.6267 34.9974 -Arial_Black.ttf 47 D 38.3112 42.0000 101 ® -1.2894 43.9720 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 102 © -1.2699 43.9720 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 103 ] -0.0652 18.3427 53.6241 -Arial_Black.ttf 47 D 38.3112 42.0000 104 é -1.0735 34.2185 44.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 105 z 11.5463 28.4327 30.3759 -Arial_Black.ttf 47 D 38.3112 42.0000 106 _ 46.0893 29.1879 2.7797 -Arial_Black.ttf 47 D 38.3112 42.0000 107 ¥ 0.0780 40.4082 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 1 t 0.2895 22.4353 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 2 h -0.1696 31.8427 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 3 a 10.6558 35.4065 32.7517 -Arial_Black.ttf 48 L 31.9965 42.0000 4 n 10.5617 31.8427 31.5638 -Arial_Black.ttf 48 L 31.9965 42.0000 5 P -0.0844 34.7474 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 6 o 10.4394 34.2185 32.7517 -Arial_Black.ttf 48 L 31.9965 42.0000 7 e 10.3211 34.2185 32.7517 -Arial_Black.ttf 48 L 31.9965 42.0000 8 : 11.3668 11.6241 30.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 9 r 10.4831 23.9073 31.5638 -Arial_Black.ttf 48 L 31.9965 42.0000 10 l 0.0403 11.6241 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 11 i -0.1850 11.6241 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 12 1 -1.1963 23.9073 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 13 | 0.0797 7.2815 53.3741 -Arial_Black.ttf 48 L 31.9965 42.0000 14 N -0.2949 39.2150 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 15 f -1.2834 23.6233 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 16 g 10.2620 34.2185 44.1259 -Arial_Black.ttf 48 L 31.9965 42.0000 17 d -0.1766 32.7806 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 18 W 0.0353 59.5638 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 19 s 10.4497 31.5638 32.7517 -Arial_Black.ttf 48 L 31.9965 42.0000 20 c 10.4362 34.2185 32.7517 -Arial_Black.ttf 48 L 31.9965 42.0000 21 u 11.6688 31.5927 31.5638 -Arial_Black.ttf 48 L 31.9965 42.0000 22 3 -1.1893 33.8435 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 23 ~ 14.0492 32.7517 14.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 24 # -1.4836 35.6565 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 25 O -1.1106 42.7168 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 26 ` -1.3503 14.6591 8.4694 -Arial_Black.ttf 48 L 31.9965 42.0000 27 @ -1.1879 43.1879 49.4974 -Arial_Black.ttf 48 L 31.9965 42.0000 28 F 0.3276 31.5927 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 29 S -1.1523 37.5323 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 30 p 10.2857 32.7806 42.9379 -Arial_Black.ttf 48 L 31.9965 42.0000 31 “ -1.3646 25.6241 23.2483 -Arial_Black.ttf 48 L 31.9965 42.0000 32 % -1.1977 52.3164 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 33 £ -1.2719 34.8724 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 34 . 30.3818 11.6241 11.6241 -Arial_Black.ttf 48 L 31.9965 42.0000 35 2 -0.9502 33.5935 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 36 5 -0.4191 33.8435 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 37 m 10.6397 51.5035 31.5638 -Arial_Black.ttf 48 L 31.9965 42.0000 38 V -0.0000 45.1547 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 39 6 -1.2441 33.8435 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 40 w 11.8277 54.8121 30.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 41 T -0.1585 38.4362 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 42 M -0.1367 45.8086 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 43 G -1.1939 42.5629 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 44 b -0.2875 32.7806 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 45 9 -1.0138 33.8435 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 46 ; 11.7789 11.6241 42.9379 -Arial_Black.ttf 48 L 31.9965 42.0000 47 D 0.1350 38.3112 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 48 L -0.1154 31.9965 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 49 y 11.7080 35.7815 42.9379 -Arial_Black.ttf 48 L 31.9965 42.0000 50 ‘ -1.3488 11.6241 23.2483 -Arial_Black.ttf 48 L 31.9965 42.0000 51 \ -1.3698 16.3759 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 52 R -0.1952 41.2212 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 53 < 3.5945 32.6267 34.9974 -Arial_Black.ttf 48 L 31.9965 42.0000 54 4 -1.4412 38.0612 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 55 8 -1.0300 33.8435 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 56 0 -1.0536 33.8435 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 57 A -0.1066 45.5638 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 58 E 0.0395 34.4974 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 59 B -0.1921 38.3112 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 60 v 11.8035 35.8156 30.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 61 k -0.0686 35.5315 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 62 J -0.0339 33.1556 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 63 U -0.0868 39.2150 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 64 j -0.0242 18.3427 54.5621 -Arial_Black.ttf 48 L 31.9965 42.0000 65 ( -1.3230 17.4047 56.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 66 7 0.0301 33.5935 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 67 § -1.2004 34.2185 55.7500 -Arial_Black.ttf 48 L 31.9965 42.0000 68 $ -3.8991 35.2815 52.4362 -Arial_Black.ttf 48 L 31.9965 42.0000 69 € -1.5446 38.1914 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 70 / -1.0196 16.3759 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 71 C -1.0336 39.9082 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 72 * -1.4335 22.1565 20.6224 -Arial_Black.ttf 48 L 31.9965 42.0000 73 ” -1.0248 25.6241 23.2483 -Arial_Black.ttf 48 L 31.9965 42.0000 74 ? -1.0727 31.8138 43.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 75 { -0.9830 21.4974 56.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 76 } -1.0081 21.4974 56.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 77 , 30.2094 11.6241 24.1862 -Arial_Black.ttf 48 L 31.9965 42.0000 78 I 0.0093 12.8121 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 79 ° -1.0970 14.1250 14.1250 -Arial_Black.ttf 48 L 31.9965 42.0000 80 K -0.4111 43.9668 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 81 H -0.0385 39.2150 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 82 q 10.5979 32.7806 42.9379 -Arial_Black.ttf 48 L 31.9965 42.0000 83 & -1.0568 46.8820 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 84 ’ -1.1097 11.6241 23.2483 -Arial_Black.ttf 48 L 31.9965 42.0000 85 [ 0.0347 18.3427 53.6241 -Arial_Black.ttf 48 L 31.9965 42.0000 86 - 22.1272 16.9047 9.2483 -Arial_Black.ttf 48 L 31.9965 42.0000 87 Y -0.1037 45.5638 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 88 Q -1.4444 44.1547 48.3435 -Arial_Black.ttf 48 L 31.9965 42.0000 89 " -0.0284 26.8121 15.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 90 ! 0.1312 11.6241 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 91 x 11.6938 38.6914 30.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 92 ) -0.9816 17.4047 56.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 93 = 9.5794 30.9047 23.2483 -Arial_Black.ttf 48 L 31.9965 42.0000 94 + 5.5398 31.4388 31.4388 -Arial_Black.ttf 48 L 31.9965 42.0000 95 X 0.0305 45.1547 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 96 » 13.5905 31.1547 26.4082 -Arial_Black.ttf 48 L 31.9965 42.0000 97 ' 0.0973 11.6241 15.1879 -Arial_Black.ttf 48 L 31.9965 42.0000 98 ¢ 0.4144 34.2185 53.2203 -Arial_Black.ttf 48 L 31.9965 42.0000 99 Z 0.0843 37.3059 42.0000 -Arial_Black.ttf 48 L 31.9965 42.0000 100 > 3.4045 32.6267 34.9974 -Arial_Black.ttf 48 L 31.9965 42.0000 101 ® -1.2760 43.9720 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 102 © -1.1565 43.9720 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 103 ] 0.0487 18.3427 53.6241 -Arial_Black.ttf 48 L 31.9965 42.0000 104 é -1.1574 34.2185 44.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 105 z 11.8717 28.4327 30.3759 -Arial_Black.ttf 48 L 31.9965 42.0000 106 _ 45.9542 29.1879 2.7797 -Arial_Black.ttf 48 L 31.9965 42.0000 107 ¥ 0.0742 40.4082 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 1 t -11.5696 22.4353 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 2 h -11.6010 31.8427 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 3 a -1.0151 35.4065 32.7517 -Arial_Black.ttf 49 y 35.7815 42.9379 4 n -1.3451 31.8427 31.5638 -Arial_Black.ttf 49 y 35.7815 42.9379 5 P -11.6203 34.7474 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 6 o -0.9339 34.2185 32.7517 -Arial_Black.ttf 49 y 35.7815 42.9379 7 e -1.2664 34.2185 32.7517 -Arial_Black.ttf 49 y 35.7815 42.9379 8 : 0.2183 11.6241 30.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 9 r -1.3965 23.9073 31.5638 -Arial_Black.ttf 49 y 35.7815 42.9379 10 l -11.6550 11.6241 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 11 i -11.8910 11.6241 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 12 1 -12.7662 23.9073 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 13 | -11.5731 7.2815 53.3741 -Arial_Black.ttf 49 y 35.7815 42.9379 14 N -11.8676 39.2150 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 15 f -12.8621 23.6233 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 16 g -1.3465 34.2185 44.1259 -Arial_Black.ttf 49 y 35.7815 42.9379 17 d -11.3656 32.7806 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 18 W -11.4572 59.5638 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 19 s -1.1633 31.5638 32.7517 -Arial_Black.ttf 49 y 35.7815 42.9379 20 c -1.3510 34.2185 32.7517 -Arial_Black.ttf 49 y 35.7815 42.9379 21 u -0.2508 31.5927 31.5638 -Arial_Black.ttf 49 y 35.7815 42.9379 22 3 -12.8023 33.8435 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 23 ~ 2.3870 32.7517 14.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 24 # -13.0161 35.6565 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 25 O -12.6886 42.7168 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 26 ` -12.8408 14.6591 8.4694 -Arial_Black.ttf 49 y 35.7815 42.9379 27 @ -12.8709 43.1879 49.4974 -Arial_Black.ttf 49 y 35.7815 42.9379 28 F -11.3364 31.5927 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 29 S -13.0003 37.5323 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 30 p -0.7296 32.7806 42.9379 -Arial_Black.ttf 49 y 35.7815 42.9379 31 “ -12.7274 25.6241 23.2483 -Arial_Black.ttf 49 y 35.7815 42.9379 32 % -12.8179 52.3164 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 33 £ -12.9914 34.8724 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 34 . 18.6535 11.6241 11.6241 -Arial_Black.ttf 49 y 35.7815 42.9379 35 2 -12.8089 33.5935 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 36 5 -11.6028 33.8435 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 37 m -1.2834 51.5035 31.5638 -Arial_Black.ttf 49 y 35.7815 42.9379 38 V -11.6214 45.1547 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 39 6 -12.8887 33.8435 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 40 w -0.1728 54.8121 30.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 41 T -11.6988 38.4362 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 42 M -11.6047 45.8086 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 43 G -12.8019 42.5629 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 44 b -11.6588 32.7806 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 45 9 -12.9601 33.8435 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 46 ; -0.1960 11.6241 42.9379 -Arial_Black.ttf 49 y 35.7815 42.9379 47 D -11.8541 38.3112 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 48 L -11.3601 31.9965 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 49 y -0.2619 35.7815 42.9379 -Arial_Black.ttf 49 y 35.7815 42.9379 50 ‘ -12.9812 11.6241 23.2483 -Arial_Black.ttf 49 y 35.7815 42.9379 51 \ -12.8176 16.3759 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 52 R -11.5884 41.2212 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 53 < -8.0460 32.6267 34.9974 -Arial_Black.ttf 49 y 35.7815 42.9379 54 4 -13.0684 38.0612 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 55 8 -12.7950 33.8435 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 56 0 -12.4321 33.8435 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 57 A -11.6329 45.5638 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 58 E -11.6291 34.4974 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 59 B -11.7678 38.3112 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 60 v -0.0444 35.8156 30.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 61 k -11.8080 35.5315 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 62 J -11.5782 33.1556 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 63 U -11.4467 39.2150 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 64 j -11.7910 18.3427 54.5621 -Arial_Black.ttf 49 y 35.7815 42.9379 65 ( -12.8867 17.4047 56.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 66 7 -11.4507 33.5935 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 67 § -12.8748 34.2185 55.7500 -Arial_Black.ttf 49 y 35.7815 42.9379 68 $ -15.7854 35.2815 52.4362 -Arial_Black.ttf 49 y 35.7815 42.9379 69 € -12.7236 38.1914 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 70 / -12.7040 16.3759 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 71 C -12.6053 39.9082 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 72 * -12.7462 22.1565 20.6224 -Arial_Black.ttf 49 y 35.7815 42.9379 73 ” -12.8478 25.6241 23.2483 -Arial_Black.ttf 49 y 35.7815 42.9379 74 ? -12.7333 31.8138 43.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 75 { -12.8435 21.4974 56.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 76 } -12.6822 21.4974 56.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 77 , 18.8472 11.6241 24.1862 -Arial_Black.ttf 49 y 35.7815 42.9379 78 I -12.0134 12.8121 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 79 ° -12.7368 14.1250 14.1250 -Arial_Black.ttf 49 y 35.7815 42.9379 80 K -11.3993 43.9668 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 81 H -11.7039 39.2150 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 82 q -1.3121 32.7806 42.9379 -Arial_Black.ttf 49 y 35.7815 42.9379 83 & -12.8862 46.8820 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 84 ’ -12.7166 11.6241 23.2483 -Arial_Black.ttf 49 y 35.7815 42.9379 85 [ -11.4999 18.3427 53.6241 -Arial_Black.ttf 49 y 35.7815 42.9379 86 - 10.1521 16.9047 9.2483 -Arial_Black.ttf 49 y 35.7815 42.9379 87 Y -11.7484 45.5638 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 88 Q -13.0344 44.1547 48.3435 -Arial_Black.ttf 49 y 35.7815 42.9379 89 " -11.5624 26.8121 15.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 90 ! -11.3285 11.6241 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 91 x -0.0129 38.6914 30.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 92 ) -12.9581 17.4047 56.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 93 = -2.3729 30.9047 23.2483 -Arial_Black.ttf 49 y 35.7815 42.9379 94 + -6.2207 31.4388 31.4388 -Arial_Black.ttf 49 y 35.7815 42.9379 95 X -11.5319 45.1547 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 96 » 1.9827 31.1547 26.4082 -Arial_Black.ttf 49 y 35.7815 42.9379 97 ' -11.8854 11.6241 15.1879 -Arial_Black.ttf 49 y 35.7815 42.9379 98 ¢ -11.2078 34.2185 53.2203 -Arial_Black.ttf 49 y 35.7815 42.9379 99 Z -11.2946 37.3059 42.0000 -Arial_Black.ttf 49 y 35.7815 42.9379 100 > -7.9728 32.6267 34.9974 -Arial_Black.ttf 49 y 35.7815 42.9379 101 ® -13.0174 43.9720 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 102 © -12.7212 43.9720 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 103 ] -11.8053 18.3427 53.6241 -Arial_Black.ttf 49 y 35.7815 42.9379 104 é -12.5711 34.2185 44.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 105 z 0.0997 28.4327 30.3759 -Arial_Black.ttf 49 y 35.7815 42.9379 106 _ 34.3142 29.1879 2.7797 -Arial_Black.ttf 49 y 35.7815 42.9379 107 ¥ -11.8132 40.4082 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 1 t 1.1452 22.4353 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 2 h 1.2796 31.8427 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 3 a 11.5519 35.4065 32.7517 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 4 n 11.6241 31.8427 31.5638 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 5 P 1.1063 34.7474 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 6 o 11.6741 34.2185 32.7517 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 7 e 11.5884 34.2185 32.7517 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 8 : 12.7827 11.6371 30.3629 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 9 r 11.9601 23.9073 31.5638 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 10 l 1.3492 11.6241 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 11 i 1.4062 11.6241 42.0000 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 12 1 -0.0514 23.9105 43.1815 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 13 | 1.2212 7.2718 53.3612 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 14 N 1.2834 39.2150 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 15 f 0.0812 23.6233 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 16 g 11.5072 34.2185 44.1259 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 17 d 1.0651 32.7806 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 18 W 1.0957 59.5638 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 19 s 11.6658 31.5638 32.7517 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 20 c 11.6273 34.2185 32.7517 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 21 u 12.5558 31.5927 31.5638 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 22 3 0.2962 33.8834 44.3629 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 23 ~ 14.9506 32.7258 14.0000 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 24 # -0.1337 35.6338 44.3629 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 25 O 0.0000 42.7168 44.3759 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 26 ` -0.1517 14.6708 8.4532 -Arial_Black.ttf 50 ‘ 11.6371 23.2742 27 @ 0.1691 43.1815 49.5147 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 28 F 1.3173 31.5927 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 29 S -0.0251 37.5323 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 30 p 11.6241 32.7806 42.9379 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 31 “ 0.2949 25.6241 23.2483 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 32 % -0.0482 52.3164 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 33 £ 0.0000 34.8724 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 34 . 31.3451 11.6241 11.6241 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 35 2 0.0357 33.5935 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 36 5 1.1574 33.8435 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 37 m 11.7043 51.5035 31.5638 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 38 V 1.1040 45.1547 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 39 6 0.1228 33.8435 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 40 w 12.8894 54.8121 30.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 41 T 1.2194 38.4362 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 42 M 0.9909 45.8086 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 43 G 0.0000 42.5629 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 44 b 1.2417 32.7806 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 45 9 -0.0430 33.8435 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 46 ; 12.7774 11.6241 42.9379 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 47 D 1.4377 38.3112 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 48 L 1.2422 31.9965 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 49 y 12.9030 35.7815 42.9379 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 50 ‘ -0.0812 11.6241 23.2483 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 51 \ 0.0135 16.3759 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 52 R 1.1022 41.2212 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 53 < 4.5970 32.6267 34.9974 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 54 4 -0.0010 38.0612 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 55 8 -0.0955 33.8435 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 56 0 -0.1631 33.8435 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 57 A 1.2379 45.5638 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 58 E 1.0887 34.4974 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 59 B 1.1425 38.3112 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 60 v 13.1563 35.8156 30.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 61 k 1.0294 35.5315 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 62 J 1.3646 33.1556 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 63 U 1.4517 39.2150 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 64 j 1.1879 18.3427 54.5621 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 65 ( -0.0812 17.4047 56.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 66 7 1.3646 33.5935 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 67 § 0.0842 34.2185 55.7500 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 68 $ -2.6101 35.2815 52.4362 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 69 € 0.1585 38.1914 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 70 / 0.0385 16.3759 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 71 C 0.3365 39.9082 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 72 * 0.1979 22.1565 20.6224 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 73 ” -0.1801 25.6241 23.2483 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 74 ? 0.0430 31.8138 43.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 75 { 0.1645 21.4974 56.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 76 } -0.1224 21.4974 56.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 77 , 31.6866 11.6241 24.1862 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 78 I 1.1977 12.8121 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 79 ° 0.1529 14.1250 14.1250 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 80 K 1.1291 43.9668 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 81 H 1.1841 39.2150 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 82 q 11.5392 32.7806 42.9379 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 83 & -0.0097 46.8820 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 84 ’ 0.0482 11.6241 23.2483 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 85 [ 1.2737 18.3427 53.6241 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 86 - 23.1709 16.9047 9.2483 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 87 Y 1.1522 45.5638 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 88 Q 0.2683 44.1547 48.3435 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 89 " 1.1782 26.8121 15.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 90 ! 1.1879 11.6241 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 91 x 12.9752 38.6914 30.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 92 ) 0.1798 17.4047 56.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 93 = 10.5977 30.9047 23.2483 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 94 + 6.3457 31.4388 31.4388 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 95 X 1.1106 45.1547 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 96 » 14.6469 31.1547 26.4082 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 97 ' 1.2751 11.6241 15.1879 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 98 ¢ 1.6275 34.2185 53.2203 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 99 Z 1.2899 37.3059 42.0000 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 100 > 4.9431 32.6267 34.9974 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 101 ® 0.1099 43.9720 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 102 © 0.1683 43.9720 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 103 ] 1.2445 18.3427 53.6241 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 104 é -0.1603 34.2185 44.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 105 z 12.8121 28.4327 30.3759 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 106 _ 47.1717 29.1879 2.7797 -Arial_Black.ttf 50 ‘ 11.6241 23.2483 107 ¥ 1.0753 40.4082 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 1 t 1.3056 22.4353 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 2 h 1.2879 31.8427 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 3 a 11.4500 35.4065 32.7517 -Arial_Black.ttf 51 \ 16.3759 44.3759 4 n 11.6769 31.8427 31.5638 -Arial_Black.ttf 51 \ 16.3759 44.3759 5 P 1.3474 34.7474 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 6 o 11.6158 34.2185 32.7517 -Arial_Black.ttf 51 \ 16.3759 44.3759 7 e 11.5290 34.2185 32.7517 -Arial_Black.ttf 51 \ 16.3629 44.3629 8 : 12.7344 11.6371 30.3629 -Arial_Black.ttf 51 \ 16.3759 44.3759 9 r 11.7990 23.9073 31.5638 -Arial_Black.ttf 51 \ 16.3759 44.3759 10 l 0.9724 11.6241 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 11 i 1.1133 11.6241 42.0000 -Arial_Black.ttf 51 \ 16.3629 44.3629 12 1 0.2435 23.9105 43.1815 -Arial_Black.ttf 51 \ 16.3629 44.3629 13 | 0.9670 7.2718 53.3612 -Arial_Black.ttf 51 \ 16.3759 44.3759 14 N 1.3627 39.2150 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 15 f -0.1925 23.6233 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 16 g 11.4920 34.2185 44.1259 -Arial_Black.ttf 51 \ 16.3759 44.3759 17 d 1.0683 32.7806 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 18 W 1.2264 59.5638 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 19 s 11.4701 31.5638 32.7517 -Arial_Black.ttf 51 \ 16.3759 44.3759 20 c 11.6252 34.2185 32.7517 -Arial_Black.ttf 51 \ 16.3759 44.3759 21 u 12.6470 31.5927 31.5638 -Arial_Black.ttf 51 \ 16.3629 44.3629 22 3 0.0885 33.8834 44.3629 -Arial_Black.ttf 51 \ 16.3629 44.3629 23 ~ 15.2799 32.7258 14.0000 -Arial_Black.ttf 51 \ 16.3629 44.3629 24 # 0.0868 35.6338 44.3629 -Arial_Black.ttf 51 \ 16.3759 44.3759 25 O 0.0812 42.7168 44.3759 -Arial_Black.ttf 51 \ 16.3629 44.3629 26 ` 0.1669 14.6708 8.4532 -Arial_Black.ttf 51 \ 16.3629 44.3629 27 @ 0.1199 43.1815 49.5147 -Arial_Black.ttf 51 \ 16.3759 44.3759 28 F 1.2594 31.5927 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 29 S 0.0027 37.5323 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 30 p 11.4147 32.7806 42.9379 -Arial_Black.ttf 51 \ 16.3759 44.3759 31 “ -0.1294 25.6241 23.2483 -Arial_Black.ttf 51 \ 16.3759 44.3759 32 % 0.0455 52.3164 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 33 £ 0.1048 34.8724 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 34 . 31.5156 11.6241 11.6241 -Arial_Black.ttf 51 \ 16.3759 44.3759 35 2 0.1593 33.5935 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 36 5 1.0665 33.8435 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 37 m 11.5490 51.5035 31.5638 -Arial_Black.ttf 51 \ 16.3759 44.3759 38 V 1.3076 45.1547 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 39 6 -0.2002 33.8435 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 40 w 12.8148 54.8121 30.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 41 T 1.1582 38.4362 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 42 M 1.0984 45.8086 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 43 G -0.3470 42.5629 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 44 b 1.2764 32.7806 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 45 9 0.1294 33.8435 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 46 ; 12.9141 11.6241 42.9379 -Arial_Black.ttf 51 \ 16.3759 44.3759 47 D 1.4702 38.3112 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 48 L 0.9839 31.9965 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 49 y 12.6935 35.7815 42.9379 -Arial_Black.ttf 51 \ 16.3759 44.3759 50 ‘ 0.1766 11.6241 23.2483 -Arial_Black.ttf 51 \ 16.3759 44.3759 51 \ 0.0455 16.3759 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 52 R 1.2348 41.2212 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 53 < 4.7038 32.6267 34.9974 -Arial_Black.ttf 51 \ 16.3759 44.3759 54 4 0.0427 38.0612 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 55 8 -0.0111 33.8435 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 56 0 0.0000 33.8435 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 57 A 1.1106 45.5638 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 58 E 1.1040 34.4974 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 59 B 0.7740 38.3112 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 60 v 12.9464 35.8156 30.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 61 k 1.0970 35.5315 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 62 J 1.2472 33.1556 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 63 U 1.1449 39.2150 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 64 j 1.4754 18.3427 54.5621 -Arial_Black.ttf 51 \ 16.3759 44.3759 65 ( -0.0347 17.4047 56.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 66 7 1.2886 33.5935 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 67 § -0.0505 34.2185 55.7500 -Arial_Black.ttf 51 \ 16.3759 44.3759 68 $ -2.6755 35.2815 52.4362 -Arial_Black.ttf 51 \ 16.3759 44.3759 69 € 0.1728 38.1914 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 70 / 0.1891 16.3759 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 71 C 0.0760 39.9082 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 72 * -0.1689 22.1565 20.6224 -Arial_Black.ttf 51 \ 16.3759 44.3759 73 ” -0.0312 25.6241 23.2483 -Arial_Black.ttf 51 \ 16.3759 44.3759 74 ? 0.0455 31.8138 43.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 75 { -0.1766 21.4974 56.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 76 } -0.0357 21.4974 56.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 77 , 31.5593 11.6241 24.1862 -Arial_Black.ttf 51 \ 16.3759 44.3759 78 I 1.1452 12.8121 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 79 ° -0.0403 14.1250 14.1250 -Arial_Black.ttf 51 \ 16.3759 44.3759 80 K 1.0248 43.9668 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 81 H 1.3372 39.2150 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 82 q 11.5741 32.7806 42.9379 -Arial_Black.ttf 51 \ 16.3759 44.3759 83 & 0.1266 46.8820 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 84 ’ -0.1224 11.6241 23.2483 -Arial_Black.ttf 51 \ 16.3759 44.3759 85 [ 1.5369 18.3427 53.6241 -Arial_Black.ttf 51 \ 16.3759 44.3759 86 - 23.2535 16.9047 9.2483 -Arial_Black.ttf 51 \ 16.3759 44.3759 87 Y 1.0582 45.5638 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 88 Q -0.0102 44.1547 48.3435 -Arial_Black.ttf 51 \ 16.3759 44.3759 89 " 1.2334 26.8121 15.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 90 ! 1.1115 11.6241 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 91 x 12.7037 38.6914 30.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 92 ) -0.2578 17.4047 56.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 93 = 10.5588 30.9047 23.2483 -Arial_Black.ttf 51 \ 16.3759 44.3759 94 + 6.5126 31.4388 31.4388 -Arial_Black.ttf 51 \ 16.3759 44.3759 95 X 1.2751 45.1547 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 96 » 14.5681 31.1547 26.4082 -Arial_Black.ttf 51 \ 16.3759 44.3759 97 ' 0.9613 11.6241 15.1879 -Arial_Black.ttf 51 \ 16.3759 44.3759 98 ¢ 1.4092 34.2185 53.2203 -Arial_Black.ttf 51 \ 16.3759 44.3759 99 Z 1.0138 37.3059 42.0000 -Arial_Black.ttf 51 \ 16.3759 44.3759 100 > 4.5353 32.6267 34.9974 -Arial_Black.ttf 51 \ 16.3759 44.3759 101 ® 0.0417 43.9720 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 102 © 0.1298 43.9720 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 103 ] 1.0138 18.3427 53.6241 -Arial_Black.ttf 51 \ 16.3759 44.3759 104 é -0.1832 34.2185 44.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 105 z 12.8121 28.4327 30.3759 -Arial_Black.ttf 51 \ 16.3759 44.3759 106 _ 47.4118 29.1879 2.7797 -Arial_Black.ttf 51 \ 16.3759 44.3759 107 ¥ 1.5091 40.4082 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 1 t -0.0060 22.4353 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 2 h 0.3022 31.8427 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 3 a 10.5038 35.4065 32.7517 -Arial_Black.ttf 52 R 41.2212 42.0000 4 n 10.4400 31.8427 31.5638 -Arial_Black.ttf 52 R 41.2212 42.0000 5 P -0.3694 34.7474 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 6 o 10.4979 34.2185 32.7517 -Arial_Black.ttf 52 R 41.2212 42.0000 7 e 10.0580 34.2185 32.7517 -Arial_Black.ttf 52 R 41.2212 42.0000 8 : 11.3242 11.6241 30.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 9 r 10.6569 23.9073 31.5638 -Arial_Black.ttf 52 R 41.2212 42.0000 10 l 0.2537 11.6241 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 11 i 0.1121 11.6241 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 12 1 -1.3302 23.9073 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 13 | -0.1314 7.2815 53.3741 -Arial_Black.ttf 52 R 41.2212 42.0000 14 N -0.0375 39.2150 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 15 f -0.9798 23.6233 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 16 g 10.6224 34.2185 44.1259 -Arial_Black.ttf 52 R 41.2212 42.0000 17 d 0.0889 32.7806 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 18 W -0.0903 59.5638 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 19 s 10.4678 31.5638 32.7517 -Arial_Black.ttf 52 R 41.2212 42.0000 20 c 10.7671 34.2185 32.7517 -Arial_Black.ttf 52 R 41.2212 42.0000 21 u 11.4688 31.5927 31.5638 -Arial_Black.ttf 52 R 41.2212 42.0000 22 3 -1.2495 33.8435 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 23 ~ 13.9455 32.7517 14.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 24 # -1.1341 35.6565 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 25 O -1.0701 42.7168 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 26 ` -1.4507 14.6591 8.4694 -Arial_Black.ttf 52 R 41.2212 42.0000 27 @ -1.1936 43.1879 49.4974 -Arial_Black.ttf 52 R 41.2212 42.0000 28 F -0.0807 31.5927 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 29 S -1.6598 37.5323 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 30 p 10.2541 32.7806 42.9379 -Arial_Black.ttf 52 R 41.2212 42.0000 31 “ -1.4017 25.6241 23.2483 -Arial_Black.ttf 52 R 41.2212 42.0000 32 % -1.2323 52.3164 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 33 £ -1.2621 34.8724 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 34 . 30.4333 11.6241 11.6241 -Arial_Black.ttf 52 R 41.2212 42.0000 35 2 -1.4822 33.5935 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 36 5 0.0020 33.8435 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 37 m 10.5201 51.5035 31.5638 -Arial_Black.ttf 52 R 41.2212 42.0000 38 V 0.0497 45.1547 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 39 6 -1.0419 33.8435 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 40 w 11.2862 54.8121 30.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 41 T -0.1655 38.4362 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 42 M -0.0731 45.8086 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 43 G -1.2820 42.5629 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 44 b 0.1988 32.7806 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 45 9 -1.2037 33.8435 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 46 ; 11.5970 11.6241 42.9379 -Arial_Black.ttf 52 R 41.2212 42.0000 47 D -0.0867 38.3112 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 48 L 0.1339 31.9965 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 49 y 11.7577 35.7815 42.9379 -Arial_Black.ttf 52 R 41.2212 42.0000 50 ‘ -0.9409 11.6241 23.2483 -Arial_Black.ttf 52 R 41.2212 42.0000 51 \ -1.2782 16.3759 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 52 R 0.0510 41.2212 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 53 < 3.7808 32.6267 34.9974 -Arial_Black.ttf 52 R 41.2212 42.0000 54 4 -1.2484 38.0612 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 55 8 -1.5335 33.8435 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 56 0 -1.0803 33.8435 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 57 A 0.0000 45.5638 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 58 E -0.0660 34.4974 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 59 B -0.0335 38.3112 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 60 v 11.7462 35.8156 30.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 61 k -0.1371 35.5315 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 62 J -0.0000 33.1556 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 63 U 0.0830 39.2150 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 64 j 0.1766 18.3427 54.5621 -Arial_Black.ttf 52 R 41.2212 42.0000 65 ( -1.1463 17.4047 56.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 66 7 -0.0812 33.5935 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 67 § -1.5740 34.2185 55.7500 -Arial_Black.ttf 52 R 41.2212 42.0000 68 $ -4.1800 35.2815 52.4362 -Arial_Black.ttf 52 R 41.2212 42.0000 69 € -1.1958 38.1914 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 70 / -1.0341 16.3759 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 71 C -0.9357 39.9082 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 72 * -1.3343 22.1565 20.6224 -Arial_Black.ttf 52 R 41.2212 42.0000 73 ” -1.1907 25.6241 23.2483 -Arial_Black.ttf 52 R 41.2212 42.0000 74 ? -1.3530 31.8138 43.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 75 { -1.1615 21.4974 56.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 76 } -0.9590 21.4974 56.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 77 , 30.4105 11.6241 24.1862 -Arial_Black.ttf 52 R 41.2212 42.0000 78 I 0.1149 12.8121 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 79 ° -1.2780 14.1250 14.1250 -Arial_Black.ttf 52 R 41.2212 42.0000 80 K 0.2891 43.9668 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 81 H -0.3155 39.2150 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 82 q 10.7454 32.7806 42.9379 -Arial_Black.ttf 52 R 41.2212 42.0000 83 & -1.0025 46.8820 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 84 ’ -0.9822 11.6241 23.2483 -Arial_Black.ttf 52 R 41.2212 42.0000 85 [ -0.3712 18.3427 53.6241 -Arial_Black.ttf 52 R 41.2212 42.0000 86 - 21.8987 16.9047 9.2483 -Arial_Black.ttf 52 R 41.2212 42.0000 87 Y -0.0184 45.5638 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 88 Q -1.2341 44.1547 48.3435 -Arial_Black.ttf 52 R 41.2212 42.0000 89 " -0.2615 26.8121 15.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 90 ! -0.3142 11.6241 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 91 x 11.9115 38.6914 30.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 92 ) -1.0419 17.4047 56.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 93 = 9.5854 30.9047 23.2483 -Arial_Black.ttf 52 R 41.2212 42.0000 94 + 5.2879 31.4388 31.4388 -Arial_Black.ttf 52 R 41.2212 42.0000 95 X -0.0923 45.1547 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 96 » 13.8927 31.1547 26.4082 -Arial_Black.ttf 52 R 41.2212 42.0000 97 ' 0.0459 11.6241 15.1879 -Arial_Black.ttf 52 R 41.2212 42.0000 98 ¢ 0.3254 34.2185 53.2203 -Arial_Black.ttf 52 R 41.2212 42.0000 99 Z -0.1371 37.3059 42.0000 -Arial_Black.ttf 52 R 41.2212 42.0000 100 > 3.6032 32.6267 34.9974 -Arial_Black.ttf 52 R 41.2212 42.0000 101 ® -0.9530 43.9720 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 102 © -1.1782 43.9720 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 103 ] 0.0828 18.3427 53.6241 -Arial_Black.ttf 52 R 41.2212 42.0000 104 é -1.1065 34.2185 44.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 105 z 11.7707 28.4327 30.3759 -Arial_Black.ttf 52 R 41.2212 42.0000 106 _ 45.9105 29.1879 2.7797 -Arial_Black.ttf 52 R 41.2212 42.0000 107 ¥ 0.0866 40.4082 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 1 t -3.4975 22.4353 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 2 h -3.3590 31.8427 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 3 a 6.8826 35.4065 32.7517 -Arial_Black.ttf 53 < 32.6267 34.9974 4 n 6.7602 31.8427 31.5638 -Arial_Black.ttf 53 < 32.6267 34.9974 5 P -3.8212 34.7474 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 6 o 6.7495 34.2185 32.7517 -Arial_Black.ttf 53 < 32.6267 34.9974 7 e 6.8695 34.2185 32.7517 -Arial_Black.ttf 53 < 32.6051 34.9975 8 : 7.8103 11.6371 30.3629 -Arial_Black.ttf 53 < 32.6267 34.9974 9 r 6.6576 23.9073 31.5638 -Arial_Black.ttf 53 < 32.6267 34.9974 10 l -3.4652 11.6241 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 11 i -3.7689 11.6241 42.0000 -Arial_Black.ttf 53 < 32.6051 34.9975 12 1 -4.2572 23.9105 43.1815 -Arial_Black.ttf 53 < 32.6051 34.9975 13 | -3.2827 7.2718 53.3612 -Arial_Black.ttf 53 < 32.6267 34.9974 14 N -3.6617 39.2150 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 15 f -4.8002 23.6233 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 16 g 6.5216 34.2185 44.1259 -Arial_Black.ttf 53 < 32.6267 34.9974 17 d -3.4369 32.7806 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 18 W -3.6904 59.5638 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 19 s 6.8706 31.5638 32.7517 -Arial_Black.ttf 53 < 32.6267 34.9974 20 c 6.9241 34.2185 32.7517 -Arial_Black.ttf 53 < 32.6267 34.9974 21 u 7.5190 31.5927 31.5638 -Arial_Black.ttf 53 < 32.6051 34.9975 22 3 -4.5845 33.8834 44.3629 -Arial_Black.ttf 53 < 32.6051 34.9975 23 ~ 10.3206 32.7258 14.0000 -Arial_Black.ttf 53 < 32.6051 34.9975 24 # -4.9013 35.6338 44.3629 -Arial_Black.ttf 53 < 32.6267 34.9974 25 O -4.9168 42.7168 44.3759 -Arial_Black.ttf 53 < 32.6051 34.9975 26 ` -4.4963 14.6708 8.4532 -Arial_Black.ttf 53 < 32.6051 34.9975 27 @ -4.7523 43.1815 49.5147 -Arial_Black.ttf 53 < 32.6267 34.9974 28 F -3.6152 31.5927 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 29 S -4.6186 37.5323 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 30 p 6.7353 32.7806 42.9379 -Arial_Black.ttf 53 < 32.6267 34.9974 31 “ -4.4277 25.6241 23.2483 -Arial_Black.ttf 53 < 32.6267 34.9974 32 % -4.7092 52.3164 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 33 £ -4.5041 34.8724 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 34 . 26.7121 11.6241 11.6241 -Arial_Black.ttf 53 < 32.6267 34.9974 35 2 -4.8277 33.5935 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 36 5 -3.7345 33.8435 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 37 m 6.9224 51.5035 31.5638 -Arial_Black.ttf 53 < 32.6267 34.9974 38 V -3.6645 45.1547 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 39 6 -4.9015 33.8435 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 40 w 8.2365 54.8121 30.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 41 T -3.7608 38.4362 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 42 M -3.4991 45.8086 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 43 G -4.5769 42.5629 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 44 b -3.7228 32.7806 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 45 9 -4.7448 33.8435 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 46 ; 7.9212 11.6241 42.9379 -Arial_Black.ttf 53 < 32.6267 34.9974 47 D -3.6477 38.3112 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 48 L -3.7678 31.9965 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 49 y 7.6982 35.7815 42.9379 -Arial_Black.ttf 53 < 32.6267 34.9974 50 ‘ -4.7160 11.6241 23.2483 -Arial_Black.ttf 53 < 32.6267 34.9974 51 \ -4.6785 16.3759 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 52 R -3.4749 41.2212 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 53 < -0.0692 32.6267 34.9974 -Arial_Black.ttf 53 < 32.6267 34.9974 54 4 -4.7791 38.0612 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 55 8 -4.8533 33.8435 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 56 0 -4.9983 33.8435 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 57 A -3.4168 45.5638 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 58 E -3.2240 34.4974 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 59 B -3.7023 38.3112 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 60 v 8.2394 35.8156 30.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 61 k -3.8293 35.5315 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 62 J -3.3702 33.1556 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 63 U -3.8418 39.2150 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 64 j -3.5883 18.3427 54.5621 -Arial_Black.ttf 53 < 32.6267 34.9974 65 ( -4.7555 17.4047 56.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 66 7 -3.3598 33.5935 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 67 § -4.9017 34.2185 55.7500 -Arial_Black.ttf 53 < 32.6267 34.9974 68 $ -7.6588 35.2815 52.4362 -Arial_Black.ttf 53 < 32.6267 34.9974 69 € -4.8696 38.1914 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 70 / -4.9270 16.3759 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 71 C -4.6985 39.9082 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 72 * -4.5054 22.1565 20.6224 -Arial_Black.ttf 53 < 32.6267 34.9974 73 ” -4.8825 25.6241 23.2483 -Arial_Black.ttf 53 < 32.6267 34.9974 74 ? -4.6660 31.8138 43.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 75 { -4.5780 21.4974 56.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 76 } -4.7063 21.4974 56.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 77 , 27.0341 11.6241 24.1862 -Arial_Black.ttf 53 < 32.6267 34.9974 78 I -3.5457 12.8121 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 79 ° -4.7660 14.1250 14.1250 -Arial_Black.ttf 53 < 32.6267 34.9974 80 K -3.4535 43.9668 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 81 H -3.5253 39.2150 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 82 q 6.7867 32.7806 42.9379 -Arial_Black.ttf 53 < 32.6267 34.9974 83 & -4.8000 46.8820 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 84 ’ -4.4895 11.6241 23.2483 -Arial_Black.ttf 53 < 32.6267 34.9974 85 [ -3.8134 18.3427 53.6241 -Arial_Black.ttf 53 < 32.6267 34.9974 86 - 18.5050 16.9047 9.2483 -Arial_Black.ttf 53 < 32.6267 34.9974 87 Y -3.6883 45.5638 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 88 Q -4.7445 44.1547 48.3435 -Arial_Black.ttf 53 < 32.6267 34.9974 89 " -3.7399 26.8121 15.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 90 ! -3.5401 11.6241 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 91 x 8.0610 38.6914 30.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 92 ) -4.7577 17.4047 56.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 93 = 5.9822 30.9047 23.2483 -Arial_Black.ttf 53 < 32.6267 34.9974 94 + 1.9926 31.4388 31.4388 -Arial_Black.ttf 53 < 32.6267 34.9974 95 X -3.4934 45.1547 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 96 » 10.2029 31.1547 26.4082 -Arial_Black.ttf 53 < 32.6267 34.9974 97 ' -3.5291 11.6241 15.1879 -Arial_Black.ttf 53 < 32.6267 34.9974 98 ¢ -3.0218 34.2185 53.2203 -Arial_Black.ttf 53 < 32.6267 34.9974 99 Z -3.5652 37.3059 42.0000 -Arial_Black.ttf 53 < 32.6267 34.9974 100 > -0.0974 32.6267 34.9974 -Arial_Black.ttf 53 < 32.6267 34.9974 101 ® -4.7466 43.9720 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 102 © -4.4960 43.9720 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 103 ] -3.7724 18.3427 53.6241 -Arial_Black.ttf 53 < 32.6267 34.9974 104 é -4.8379 34.2185 44.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 105 z 8.2697 28.4327 30.3759 -Arial_Black.ttf 53 < 32.6267 34.9974 106 _ 42.3931 29.1879 2.7797 -Arial_Black.ttf 53 < 32.6267 34.9974 107 ¥ -3.7186 40.4082 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 1 t 1.1365 22.4353 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 2 h 1.1443 31.8427 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 3 a 11.7568 35.4065 32.7517 -Arial_Black.ttf 54 4 38.0612 43.1879 4 n 11.4216 31.8427 31.5638 -Arial_Black.ttf 54 4 38.0612 43.1879 5 P 1.5995 34.7474 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 6 o 11.6027 34.2185 32.7517 -Arial_Black.ttf 54 4 38.0612 43.1879 7 e 11.5454 34.2185 32.7517 -Arial_Black.ttf 54 4 38.0591 43.1815 8 : 12.5916 11.6371 30.3629 -Arial_Black.ttf 54 4 38.0612 43.1879 9 r 11.6311 23.9073 31.5638 -Arial_Black.ttf 54 4 38.0612 43.1879 10 l 1.1519 11.6241 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 11 i 1.3024 11.6241 42.0000 -Arial_Black.ttf 54 4 38.0591 43.1815 12 1 0.2404 23.9105 43.1815 -Arial_Black.ttf 54 4 38.0591 43.1815 13 | 1.0284 7.2718 53.3612 -Arial_Black.ttf 54 4 38.0612 43.1879 14 N 1.5221 39.2150 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 15 f 0.1315 23.6233 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 16 g 11.5517 34.2185 44.1259 -Arial_Black.ttf 54 4 38.0612 43.1879 17 d 1.0624 32.7806 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 18 W 1.4444 59.5638 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 19 s 11.9158 31.5638 32.7517 -Arial_Black.ttf 54 4 38.0612 43.1879 20 c 11.2862 34.2185 32.7517 -Arial_Black.ttf 54 4 38.0612 43.1879 21 u 13.0379 31.5927 31.5638 -Arial_Black.ttf 54 4 38.0591 43.1815 22 3 0.0774 33.8834 44.3629 -Arial_Black.ttf 54 4 38.0591 43.1815 23 ~ 15.3886 32.7258 14.0000 -Arial_Black.ttf 54 4 38.0591 43.1815 24 # 0.0555 35.6338 44.3629 -Arial_Black.ttf 54 4 38.0612 43.1879 25 O -0.1459 42.7168 44.3759 -Arial_Black.ttf 54 4 38.0591 43.1815 26 ` -0.0882 14.6708 8.4532 -Arial_Black.ttf 54 4 38.0591 43.1815 27 @ 0.1544 43.1815 49.5147 -Arial_Black.ttf 54 4 38.0612 43.1879 28 F 1.2751 31.5927 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 29 S -0.1932 37.5323 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 30 p 11.5119 32.7806 42.9379 -Arial_Black.ttf 54 4 38.0612 43.1879 31 “ 0.2133 25.6241 23.2483 -Arial_Black.ttf 54 4 38.0612 43.1879 32 % -0.0663 52.3164 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 33 £ -0.2105 34.8724 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 34 . 31.4431 11.6241 11.6241 -Arial_Black.ttf 54 4 38.0612 43.1879 35 2 -0.0013 33.5935 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 36 5 0.9284 33.8435 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 37 m 11.3353 51.5035 31.5638 -Arial_Black.ttf 54 4 38.0612 43.1879 38 V 1.5777 45.1547 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 39 6 0.1830 33.8435 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 40 w 12.9034 54.8121 30.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 41 T 1.1893 38.4362 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 42 M 1.1616 45.8086 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 43 G -0.2206 42.5629 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 44 b 1.5336 32.7806 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 45 9 0.0774 33.8435 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 46 ; 13.0030 11.6241 42.9379 -Arial_Black.ttf 54 4 38.0612 43.1879 47 D 1.3947 38.3112 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 48 L 1.1850 31.9965 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 49 y 12.8069 35.7815 42.9379 -Arial_Black.ttf 54 4 38.0612 43.1879 50 ‘ -0.2262 11.6241 23.2483 -Arial_Black.ttf 54 4 38.0612 43.1879 51 \ -0.1134 16.3759 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 52 R 1.2334 41.2212 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 53 < 4.9863 32.6267 34.9974 -Arial_Black.ttf 54 4 38.0612 43.1879 54 4 -0.0462 38.0612 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 55 8 -0.2592 33.8435 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 56 0 0.0219 33.8435 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 57 A 1.0938 45.5638 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 58 E 1.0631 34.4974 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 59 B 1.1907 38.3112 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 60 v 12.8471 35.8156 30.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 61 k 1.3219 35.5315 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 62 J 1.4062 33.1556 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 63 U 0.9043 39.2150 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 64 j 1.2212 18.3427 54.5621 -Arial_Black.ttf 54 4 38.0612 43.1879 65 ( -0.1728 17.4047 56.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 66 7 1.0526 33.5935 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 67 § 0.1697 34.2185 55.7500 -Arial_Black.ttf 54 4 38.0612 43.1879 68 $ -2.7714 35.2815 52.4362 -Arial_Black.ttf 54 4 38.0612 43.1879 69 € 0.2516 38.1914 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 70 / 0.0312 16.3759 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 71 C 0.0204 39.9082 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 72 * -0.2581 22.1565 20.6224 -Arial_Black.ttf 54 4 38.0612 43.1879 73 ” 0.0979 25.6241 23.2483 -Arial_Black.ttf 54 4 38.0612 43.1879 74 ? -0.0570 31.8138 43.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 75 { 0.1339 21.4974 56.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 76 } -0.1728 21.4974 56.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 77 , 31.8049 11.6241 24.1862 -Arial_Black.ttf 54 4 38.0612 43.1879 78 I 1.2219 12.8121 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 79 ° -0.2008 14.1250 14.1250 -Arial_Black.ttf 54 4 38.0612 43.1879 80 K 1.0321 43.9668 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 81 H 1.5032 39.2150 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 82 q 11.8718 32.7806 42.9379 -Arial_Black.ttf 54 4 38.0612 43.1879 83 & -0.5367 46.8820 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 84 ’ -0.1228 11.6241 23.2483 -Arial_Black.ttf 54 4 38.0612 43.1879 85 [ 1.3538 18.3427 53.6241 -Arial_Black.ttf 54 4 38.0612 43.1879 86 - 23.2490 16.9047 9.2483 -Arial_Black.ttf 54 4 38.0612 43.1879 87 Y 1.2348 45.5638 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 88 Q 0.0440 44.1547 48.3435 -Arial_Black.ttf 54 4 38.0612 43.1879 89 " 1.0748 26.8121 15.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 90 ! 1.1349 11.6241 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 91 x 13.0502 38.6914 30.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 92 ) 0.0699 17.4047 56.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 93 = 10.3310 30.9047 23.2483 -Arial_Black.ttf 54 4 38.0612 43.1879 94 + 6.2749 31.4388 31.4388 -Arial_Black.ttf 54 4 38.0612 43.1879 95 X 1.5490 45.1547 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 96 » 14.4880 31.1547 26.4082 -Arial_Black.ttf 54 4 38.0612 43.1879 97 ' 1.1737 11.6241 15.1879 -Arial_Black.ttf 54 4 38.0612 43.1879 98 ¢ 1.4347 34.2185 53.2203 -Arial_Black.ttf 54 4 38.0612 43.1879 99 Z 1.0970 37.3059 42.0000 -Arial_Black.ttf 54 4 38.0612 43.1879 100 > 4.7160 32.6267 34.9974 -Arial_Black.ttf 54 4 38.0612 43.1879 101 ® -0.0465 43.9720 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 102 © 0.0705 43.9720 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 103 ] 1.3206 18.3427 53.6241 -Arial_Black.ttf 54 4 38.0612 43.1879 104 é -0.0399 34.2185 44.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 105 z 12.8046 28.4327 30.3759 -Arial_Black.ttf 54 4 38.0612 43.1879 106 _ 47.4118 29.1879 2.7797 -Arial_Black.ttf 54 4 38.0612 43.1879 107 ¥ 1.0484 40.4082 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 1 t 1.0586 22.4353 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 2 h 1.3010 31.8427 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 3 a 11.8229 35.4065 32.7517 -Arial_Black.ttf 55 8 33.8435 44.3759 4 n 11.8569 31.8427 31.5638 -Arial_Black.ttf 55 8 33.8435 44.3759 5 P 1.2649 34.7474 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 6 o 11.3220 34.2185 32.7517 -Arial_Black.ttf 55 8 33.8435 44.3759 7 e 11.7406 34.2185 32.7517 -Arial_Black.ttf 55 8 33.8834 44.3629 8 : 12.7366 11.6371 30.3629 -Arial_Black.ttf 55 8 33.8435 44.3759 9 r 11.3896 23.9073 31.5638 -Arial_Black.ttf 55 8 33.8435 44.3759 10 l 1.2092 11.6241 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 11 i 1.1809 11.6241 42.0000 -Arial_Black.ttf 55 8 33.8834 44.3629 12 1 -0.0371 23.9105 43.1815 -Arial_Black.ttf 55 8 33.8834 44.3629 13 | 1.0913 7.2718 53.3612 -Arial_Black.ttf 55 8 33.8435 44.3759 14 N 1.1467 39.2150 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 15 f 0.3910 23.6233 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 16 g 11.6797 34.2185 44.1259 -Arial_Black.ttf 55 8 33.8435 44.3759 17 d 1.1272 32.7806 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 18 W 1.1536 59.5638 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 19 s 12.0069 31.5638 32.7517 -Arial_Black.ttf 55 8 33.8435 44.3759 20 c 11.5949 34.2185 32.7517 -Arial_Black.ttf 55 8 33.8435 44.3759 21 u 12.8890 31.5927 31.5638 -Arial_Black.ttf 55 8 33.8834 44.3629 22 3 0.2860 33.8834 44.3629 -Arial_Black.ttf 55 8 33.8834 44.3629 23 ~ 15.0221 32.7258 14.0000 -Arial_Black.ttf 55 8 33.8834 44.3629 24 # 0.1551 35.6338 44.3629 -Arial_Black.ttf 55 8 33.8435 44.3759 25 O -0.1158 42.7168 44.3759 -Arial_Black.ttf 55 8 33.8834 44.3629 26 ` -0.1608 14.6708 8.4532 -Arial_Black.ttf 55 8 33.8834 44.3629 27 @ -0.0771 43.1815 49.5147 -Arial_Black.ttf 55 8 33.8435 44.3759 28 F 1.1060 31.5927 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 29 S -0.0997 37.5323 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 30 p 11.5916 32.7806 42.9379 -Arial_Black.ttf 55 8 33.8435 44.3759 31 “ -0.0385 25.6241 23.2483 -Arial_Black.ttf 55 8 33.8435 44.3759 32 % 0.0490 52.3164 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 33 £ -0.0812 34.8724 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 34 . 31.3553 11.6241 11.6241 -Arial_Black.ttf 55 8 33.8435 44.3759 35 2 -0.0509 33.5935 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 36 5 1.0554 33.8435 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 37 m 11.6134 51.5035 31.5638 -Arial_Black.ttf 55 8 33.8435 44.3759 38 V 1.0939 45.1547 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 39 6 -0.0024 33.8435 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 40 w 12.6382 54.8121 30.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 41 T 1.2562 38.4362 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 42 M 1.0554 45.8086 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 43 G -0.0979 42.5629 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 44 b 1.0712 32.7806 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 45 9 0.0769 33.8435 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 46 ; 12.9284 11.6241 42.9379 -Arial_Black.ttf 55 8 33.8435 44.3759 47 D 0.9714 38.3112 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 48 L 1.5578 31.9965 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 49 y 12.7435 35.7815 42.9379 -Arial_Black.ttf 55 8 33.8435 44.3759 50 ‘ -0.2548 11.6241 23.2483 -Arial_Black.ttf 55 8 33.8435 44.3759 51 \ 0.0714 16.3759 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 52 R 1.4035 41.2212 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 53 < 4.7555 32.6267 34.9974 -Arial_Black.ttf 55 8 33.8435 44.3759 54 4 0.0751 38.0612 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 55 8 -0.0669 33.8435 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 56 0 0.1061 33.8435 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 57 A 1.2167 45.5638 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 58 E 1.2469 34.4974 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 59 B 0.9238 38.3112 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 60 v 12.8998 35.8156 30.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 61 k 1.3816 35.5315 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 62 J 1.3646 33.1556 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 63 U 1.1963 39.2150 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 64 j 1.1097 18.3427 54.5621 -Arial_Black.ttf 55 8 33.8435 44.3759 65 ( -0.1930 17.4047 56.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 66 7 1.3928 33.5935 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 67 § -0.0237 34.2185 55.7500 -Arial_Black.ttf 55 8 33.8435 44.3759 68 $ -2.6069 35.2815 52.4362 -Arial_Black.ttf 55 8 33.8435 44.3759 69 € 0.1228 38.1914 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 70 / -0.1804 16.3759 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 71 C -0.0886 39.9082 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 72 * 0.1169 22.1565 20.6224 -Arial_Black.ttf 55 8 33.8435 44.3759 73 ” -0.2438 25.6241 23.2483 -Arial_Black.ttf 55 8 33.8435 44.3759 74 ? -0.0473 31.8138 43.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 75 { -0.0523 21.4974 56.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 76 } 0.1266 21.4974 56.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 77 , 31.3837 11.6241 24.1862 -Arial_Black.ttf 55 8 33.8435 44.3759 78 I 1.1571 12.8121 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 79 ° 0.0208 14.1250 14.1250 -Arial_Black.ttf 55 8 33.8435 44.3759 80 K 1.2705 43.9668 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 81 H 0.9380 39.2150 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 82 q 11.7386 32.7806 42.9379 -Arial_Black.ttf 55 8 33.8435 44.3759 83 & -0.0298 46.8820 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 84 ’ -0.2052 11.6241 23.2483 -Arial_Black.ttf 55 8 33.8435 44.3759 85 [ 1.2376 18.3427 53.6241 -Arial_Black.ttf 55 8 33.8435 44.3759 86 - 23.3392 16.9047 9.2483 -Arial_Black.ttf 55 8 33.8435 44.3759 87 Y 1.1508 45.5638 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 88 Q -0.1166 44.1547 48.3435 -Arial_Black.ttf 55 8 33.8435 44.3759 89 " 1.0620 26.8121 15.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 90 ! 1.1022 11.6241 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 91 x 12.7763 38.6914 30.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 92 ) -0.0045 17.4047 56.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 93 = 10.4832 30.9047 23.2483 -Arial_Black.ttf 55 8 33.8435 44.3759 94 + 6.6465 31.4388 31.4388 -Arial_Black.ttf 55 8 33.8435 44.3759 95 X 1.3090 45.1547 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 96 » 14.2001 31.1547 26.4082 -Arial_Black.ttf 55 8 33.8435 44.3759 97 ' 1.2884 11.6241 15.1879 -Arial_Black.ttf 55 8 33.8435 44.3759 98 ¢ 1.7322 34.2185 53.2203 -Arial_Black.ttf 55 8 33.8435 44.3759 99 Z 1.1009 37.3059 42.0000 -Arial_Black.ttf 55 8 33.8435 44.3759 100 > 4.8954 32.6267 34.9974 -Arial_Black.ttf 55 8 33.8435 44.3759 101 ® -0.1312 43.9720 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 102 © 0.2211 43.9720 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 103 ] 1.2330 18.3427 53.6241 -Arial_Black.ttf 55 8 33.8435 44.3759 104 é -0.0319 34.2185 44.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 105 z 12.9835 28.4327 30.3759 -Arial_Black.ttf 55 8 33.8435 44.3759 106 _ 47.4086 29.1879 2.7797 -Arial_Black.ttf 55 8 33.8435 44.3759 107 ¥ 1.1068 40.4082 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 1 t 0.9714 22.4353 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 2 h 1.2005 31.8427 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 3 a 11.3411 35.4065 32.7517 -Arial_Black.ttf 56 0 33.8435 44.3759 4 n 11.5884 31.8427 31.5638 -Arial_Black.ttf 56 0 33.8435 44.3759 5 P 0.8885 34.7474 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 6 o 11.7404 34.2185 32.7517 -Arial_Black.ttf 56 0 33.8435 44.3759 7 e 11.7900 34.2185 32.7517 -Arial_Black.ttf 56 0 33.8834 44.3629 8 : 13.0269 11.6371 30.3629 -Arial_Black.ttf 56 0 33.8435 44.3759 9 r 11.3730 23.9073 31.5638 -Arial_Black.ttf 56 0 33.8435 44.3759 10 l 1.0110 11.6241 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 11 i 0.7619 11.6241 42.0000 -Arial_Black.ttf 56 0 33.8834 44.3629 12 1 0.0631 23.9105 43.1815 -Arial_Black.ttf 56 0 33.8834 44.3629 13 | 1.3310 7.2718 53.3612 -Arial_Black.ttf 56 0 33.8435 44.3759 14 N 1.1217 39.2150 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 15 f 0.1357 23.6233 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 16 g 11.4790 34.2185 44.1259 -Arial_Black.ttf 56 0 33.8435 44.3759 17 d 1.1143 32.7806 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 18 W 1.2704 59.5638 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 19 s 11.7048 31.5638 32.7517 -Arial_Black.ttf 56 0 33.8435 44.3759 20 c 11.6793 34.2185 32.7517 -Arial_Black.ttf 56 0 33.8435 44.3759 21 u 12.6920 31.5927 31.5638 -Arial_Black.ttf 56 0 33.8834 44.3629 22 3 -0.0815 33.8834 44.3629 -Arial_Black.ttf 56 0 33.8834 44.3629 23 ~ 15.4590 32.7258 14.0000 -Arial_Black.ttf 56 0 33.8834 44.3629 24 # 0.3016 35.6338 44.3629 -Arial_Black.ttf 56 0 33.8435 44.3759 25 O -0.0357 42.7168 44.3759 -Arial_Black.ttf 56 0 33.8834 44.3629 26 ` 0.2463 14.6708 8.4532 -Arial_Black.ttf 56 0 33.8834 44.3629 27 @ 0.0384 43.1815 49.5147 -Arial_Black.ttf 56 0 33.8435 44.3759 28 F 1.1744 31.5927 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 29 S -0.1929 37.5323 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 30 p 11.8521 32.7806 42.9379 -Arial_Black.ttf 56 0 33.8435 44.3759 31 “ -0.0844 25.6241 23.2483 -Arial_Black.ttf 56 0 33.8435 44.3759 32 % 0.0644 52.3164 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 33 £ 0.0812 34.8724 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 34 . 31.4372 11.6241 11.6241 -Arial_Black.ttf 56 0 33.8435 44.3759 35 2 0.1154 33.5935 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 36 5 1.1443 33.8435 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 37 m 11.8295 51.5035 31.5638 -Arial_Black.ttf 56 0 33.8435 44.3759 38 V 1.0943 45.1547 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 39 6 0.1158 33.8435 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 40 w 13.0896 54.8121 30.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 41 T 0.9095 38.4362 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 42 M 1.3580 45.8086 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 43 G 0.1210 42.5629 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 44 b 0.7796 32.7806 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 45 9 -0.1710 33.8435 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 46 ; 12.7142 11.6241 42.9379 -Arial_Black.ttf 56 0 33.8435 44.3759 47 D 1.2705 38.3112 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 48 L 1.1703 31.9965 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 49 y 13.0366 35.7815 42.9379 -Arial_Black.ttf 56 0 33.8435 44.3759 50 ‘ 0.0140 11.6241 23.2483 -Arial_Black.ttf 56 0 33.8435 44.3759 51 \ 0.0208 16.3759 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 52 R 1.2237 41.2212 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 53 < 4.9158 32.6267 34.9974 -Arial_Black.ttf 56 0 33.8435 44.3759 54 4 -0.1169 38.0612 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 55 8 -0.0430 33.8435 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 56 0 0.0440 33.8435 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 57 A 1.1889 45.5638 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 58 E 1.0058 34.4974 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 59 B 1.2023 38.3112 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 60 v 12.9159 35.8156 30.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 61 k 1.2662 35.5315 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 62 J 1.1827 33.1556 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 63 U 1.4562 39.2150 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 64 j 1.3465 18.3427 54.5621 -Arial_Black.ttf 56 0 33.8435 44.3759 65 ( 0.0115 17.4047 56.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 66 7 1.1662 33.5935 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 67 § -0.0455 34.2185 55.7500 -Arial_Black.ttf 56 0 33.8435 44.3759 68 $ -2.5226 35.2815 52.4362 -Arial_Black.ttf 56 0 33.8435 44.3759 69 € -0.0000 38.1914 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 70 / -0.0073 16.3759 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 71 C -0.0829 39.9082 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 72 * 0.0533 22.1565 20.6224 -Arial_Black.ttf 56 0 33.8435 44.3759 73 ” 0.1830 25.6241 23.2483 -Arial_Black.ttf 56 0 33.8435 44.3759 74 ? -0.1956 31.8138 43.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 75 { -0.1602 21.4974 56.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 76 } 0.0024 21.4974 56.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 77 , 31.5982 11.6241 24.1862 -Arial_Black.ttf 56 0 33.8435 44.3759 78 I 1.3313 12.8121 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 79 ° 0.1181 14.1250 14.1250 -Arial_Black.ttf 56 0 33.8435 44.3759 80 K 1.4919 43.9668 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 81 H 1.0100 39.2150 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 82 q 11.5866 32.7806 42.9379 -Arial_Black.ttf 56 0 33.8435 44.3759 83 & 0.3977 46.8820 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 84 ’ -0.0808 11.6241 23.2483 -Arial_Black.ttf 56 0 33.8435 44.3759 85 [ 1.0495 18.3427 53.6241 -Arial_Black.ttf 56 0 33.8435 44.3759 86 - 23.0773 16.9047 9.2483 -Arial_Black.ttf 56 0 33.8435 44.3759 87 Y 1.1939 45.5638 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 88 Q 0.1665 44.1547 48.3435 -Arial_Black.ttf 56 0 33.8435 44.3759 89 " 1.0659 26.8121 15.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 90 ! 1.1859 11.6241 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 91 x 12.9052 38.6914 30.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 92 ) 0.4173 17.4047 56.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 93 = 10.5953 30.9047 23.2483 -Arial_Black.ttf 56 0 33.8435 44.3759 94 + 6.5500 31.4388 31.4388 -Arial_Black.ttf 56 0 33.8435 44.3759 95 X 1.0224 45.1547 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 96 » 14.5064 31.1547 26.4082 -Arial_Black.ttf 56 0 33.8435 44.3759 97 ' 1.1568 11.6241 15.1879 -Arial_Black.ttf 56 0 33.8435 44.3759 98 ¢ 1.3805 34.2185 53.2203 -Arial_Black.ttf 56 0 33.8435 44.3759 99 Z 1.0522 37.3059 42.0000 -Arial_Black.ttf 56 0 33.8435 44.3759 100 > 4.4324 32.6267 34.9974 -Arial_Black.ttf 56 0 33.8435 44.3759 101 ® -0.3463 43.9720 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 102 © 0.1995 43.9720 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 103 ] 1.2699 18.3427 53.6241 -Arial_Black.ttf 56 0 33.8435 44.3759 104 é 0.0126 34.2185 44.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 105 z 12.9270 28.4327 30.3759 -Arial_Black.ttf 56 0 33.8435 44.3759 106 _ 47.2263 29.1879 2.7797 -Arial_Black.ttf 56 0 33.8435 44.3759 107 ¥ 0.9256 40.4082 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 1 t 0.1339 22.4353 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 2 h -0.1447 31.8427 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 3 a 10.1669 35.4065 32.7517 -Arial_Black.ttf 57 A 45.5638 42.0000 4 n 10.3558 31.8427 31.5638 -Arial_Black.ttf 57 A 45.5638 42.0000 5 P 0.2498 34.7474 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 6 o 10.6006 34.2185 32.7517 -Arial_Black.ttf 57 A 45.5638 42.0000 7 e 10.4706 34.2185 32.7517 -Arial_Black.ttf 57 A 45.5638 42.0000 8 : 11.4481 11.6241 30.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 9 r 10.7063 23.9073 31.5638 -Arial_Black.ttf 57 A 45.5638 42.0000 10 l -0.0662 11.6241 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 11 i -0.3578 11.6241 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 12 1 -1.0627 23.9073 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 13 | 0.2472 7.2815 53.3741 -Arial_Black.ttf 57 A 45.5638 42.0000 14 N 0.2214 39.2150 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 15 f -1.3562 23.6233 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 16 g 10.0293 34.2185 44.1259 -Arial_Black.ttf 57 A 45.5638 42.0000 17 d -0.0918 32.7806 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 18 W -0.0617 59.5638 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 19 s 10.3250 31.5638 32.7517 -Arial_Black.ttf 57 A 45.5638 42.0000 20 c 11.0673 34.2185 32.7517 -Arial_Black.ttf 57 A 45.5638 42.0000 21 u 11.8517 31.5927 31.5638 -Arial_Black.ttf 57 A 45.5638 42.0000 22 3 -1.0988 33.8435 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 23 ~ 14.1134 32.7517 14.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 24 # -1.4155 35.6565 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 25 O -0.9437 42.7168 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 26 ` -1.3705 14.6591 8.4694 -Arial_Black.ttf 57 A 45.5638 42.0000 27 @ -0.9440 43.1879 49.4974 -Arial_Black.ttf 57 A 45.5638 42.0000 28 F -0.1963 31.5927 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 29 S -0.8853 37.5323 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 30 p 10.7824 32.7806 42.9379 -Arial_Black.ttf 57 A 45.5638 42.0000 31 “ -1.4062 25.6241 23.2483 -Arial_Black.ttf 57 A 45.5638 42.0000 32 % -1.2386 52.3164 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 33 £ -1.0440 34.8724 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 34 . 30.6680 11.6241 11.6241 -Arial_Black.ttf 57 A 45.5638 42.0000 35 2 -1.1866 33.5935 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 36 5 -0.2022 33.8435 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 37 m 10.1989 51.5035 31.5638 -Arial_Black.ttf 57 A 45.5638 42.0000 38 V 0.0371 45.1547 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 39 6 -1.1796 33.8435 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 40 w 11.6791 54.8121 30.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 41 T -0.0045 38.4362 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 42 M 0.2145 45.8086 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 43 G -1.2237 42.5629 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 44 b 0.1871 32.7806 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 45 9 -1.0999 33.8435 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 46 ; 11.3311 11.6241 42.9379 -Arial_Black.ttf 57 A 45.5638 42.0000 47 D -0.0385 38.3112 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 48 L 0.0833 31.9965 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 49 y 11.6497 35.7815 42.9379 -Arial_Black.ttf 57 A 45.5638 42.0000 50 ‘ -0.9567 11.6241 23.2483 -Arial_Black.ttf 57 A 45.5638 42.0000 51 \ -1.1351 16.3759 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 52 R -0.0690 41.2212 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 53 < 4.0682 32.6267 34.9974 -Arial_Black.ttf 57 A 45.5638 42.0000 54 4 -1.0312 38.0612 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 55 8 -1.2288 33.8435 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 56 0 -1.2088 33.8435 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 57 A 0.0190 45.5638 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 58 E 0.1399 34.4974 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 59 B -0.3524 38.3112 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 60 v 11.7200 35.8156 30.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 61 k -0.0365 35.5315 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 62 J 0.1651 33.1556 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 63 U 0.0871 39.2150 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 64 j 0.3078 18.3427 54.5621 -Arial_Black.ttf 57 A 45.5638 42.0000 65 ( -1.2022 17.4047 56.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 66 7 0.0084 33.5935 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 67 § -1.0425 34.2185 55.7500 -Arial_Black.ttf 57 A 45.5638 42.0000 68 $ -4.3219 35.2815 52.4362 -Arial_Black.ttf 57 A 45.5638 42.0000 69 € -1.2379 38.1914 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 70 / -1.1172 16.3759 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 71 C -1.3520 39.9082 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 72 * -1.0693 22.1565 20.6224 -Arial_Black.ttf 57 A 45.5638 42.0000 73 ” -1.1809 25.6241 23.2483 -Arial_Black.ttf 57 A 45.5638 42.0000 74 ? -1.0620 31.8138 43.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 75 { -1.5164 21.4974 56.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 76 } -0.8955 21.4974 56.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 77 , 30.2942 11.6241 24.1862 -Arial_Black.ttf 57 A 45.5638 42.0000 78 I -0.1530 12.8121 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 79 ° -1.4754 14.1250 14.1250 -Arial_Black.ttf 57 A 45.5638 42.0000 80 K -0.3375 43.9668 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 81 H 0.2022 39.2150 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 82 q 10.3292 32.7806 42.9379 -Arial_Black.ttf 57 A 45.5638 42.0000 83 & -1.1067 46.8820 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 84 ’ -1.1782 11.6241 23.2483 -Arial_Black.ttf 57 A 45.5638 42.0000 85 [ -0.1307 18.3427 53.6241 -Arial_Black.ttf 57 A 45.5638 42.0000 86 - 22.1467 16.9047 9.2483 -Arial_Black.ttf 57 A 45.5638 42.0000 87 Y 0.0952 45.5638 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 88 Q -1.4985 44.1547 48.3435 -Arial_Black.ttf 57 A 45.5638 42.0000 89 " -0.2897 26.8121 15.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 90 ! 0.0751 11.6241 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 91 x 11.4017 38.6914 30.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 92 ) -1.2914 17.4047 56.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 93 = 9.3955 30.9047 23.2483 -Arial_Black.ttf 57 A 45.5638 42.0000 94 + 5.4790 31.4388 31.4388 -Arial_Black.ttf 57 A 45.5638 42.0000 95 X 0.0018 45.1547 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 96 » 13.0891 31.1547 26.4082 -Arial_Black.ttf 57 A 45.5638 42.0000 97 ' 0.2285 11.6241 15.1879 -Arial_Black.ttf 57 A 45.5638 42.0000 98 ¢ 0.6156 34.2185 53.2203 -Arial_Black.ttf 57 A 45.5638 42.0000 99 Z -0.0333 37.3059 42.0000 -Arial_Black.ttf 57 A 45.5638 42.0000 100 > 3.5439 32.6267 34.9974 -Arial_Black.ttf 57 A 45.5638 42.0000 101 ® -0.9714 43.9720 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 102 © -1.1425 43.9720 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 103 ] -0.1811 18.3427 53.6241 -Arial_Black.ttf 57 A 45.5638 42.0000 104 é -1.1981 34.2185 44.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 105 z 11.7655 28.4327 30.3759 -Arial_Black.ttf 57 A 45.5638 42.0000 106 _ 46.2372 29.1879 2.7797 -Arial_Black.ttf 57 A 45.5638 42.0000 107 ¥ 0.0041 40.4082 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 1 t -0.2387 22.4353 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 2 h 0.1678 31.8427 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 3 a 10.3050 35.4065 32.7517 -Arial_Black.ttf 58 E 34.4974 42.0000 4 n 10.2444 31.8427 31.5638 -Arial_Black.ttf 58 E 34.4974 42.0000 5 P 0.1169 34.7474 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 6 o 10.1840 34.2185 32.7517 -Arial_Black.ttf 58 E 34.4974 42.0000 7 e 10.4876 34.2185 32.7517 -Arial_Black.ttf 58 E 34.4974 42.0000 8 : 11.6256 11.6241 30.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 9 r 10.7584 23.9073 31.5638 -Arial_Black.ttf 58 E 34.4974 42.0000 10 l 0.3698 11.6241 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 11 i 0.0126 11.6241 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 12 1 -1.3681 23.9073 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 13 | 0.0028 7.2815 53.3741 -Arial_Black.ttf 58 E 34.4974 42.0000 14 N 0.2915 39.2150 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 15 f -1.6793 23.6233 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 16 g 10.5905 34.2185 44.1259 -Arial_Black.ttf 58 E 34.4974 42.0000 17 d 0.0267 32.7806 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 18 W 0.1035 59.5638 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 19 s 10.5167 31.5638 32.7517 -Arial_Black.ttf 58 E 34.4974 42.0000 20 c 10.9164 34.2185 32.7517 -Arial_Black.ttf 58 E 34.4974 42.0000 21 u 11.7418 31.5927 31.5638 -Arial_Black.ttf 58 E 34.4974 42.0000 22 3 -1.1830 33.8435 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 23 ~ 13.8772 32.7517 14.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 24 # -1.0347 35.6565 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 25 O -1.1855 42.7168 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 26 ` -1.2498 14.6591 8.4694 -Arial_Black.ttf 58 E 34.4974 42.0000 27 @ -1.1719 43.1879 49.4974 -Arial_Black.ttf 58 E 34.4974 42.0000 28 F -0.0468 31.5927 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 29 S -0.8640 37.5323 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 30 p 10.1813 32.7806 42.9379 -Arial_Black.ttf 58 E 34.4974 42.0000 31 “ -1.0642 25.6241 23.2483 -Arial_Black.ttf 58 E 34.4974 42.0000 32 % -1.0837 52.3164 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 33 £ -1.1448 34.8724 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 34 . 30.1766 11.6241 11.6241 -Arial_Black.ttf 58 E 34.4974 42.0000 35 2 -1.0735 33.5935 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 36 5 -0.2137 33.8435 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 37 m 10.3096 51.5035 31.5638 -Arial_Black.ttf 58 E 34.4974 42.0000 38 V -0.2498 45.1547 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 39 6 -1.2992 33.8435 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 40 w 11.7084 54.8121 30.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 41 T 0.4361 38.4362 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 42 M -0.0236 45.8086 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 43 G -0.9833 42.5629 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 44 b -0.0844 32.7806 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 45 9 -1.2621 33.8435 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 46 ; 11.2572 11.6241 42.9379 -Arial_Black.ttf 58 E 34.4974 42.0000 47 D -0.1631 38.3112 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 48 L 0.1228 31.9965 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 49 y 11.3608 35.7815 42.9379 -Arial_Black.ttf 58 E 34.4974 42.0000 50 ‘ -1.0493 11.6241 23.2483 -Arial_Black.ttf 58 E 34.4974 42.0000 51 \ -1.2968 16.3759 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 52 R 0.0453 41.2212 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 53 < 3.5728 32.6267 34.9974 -Arial_Black.ttf 58 E 34.4974 42.0000 54 4 -1.3224 38.0612 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 55 8 -1.4599 33.8435 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 56 0 -1.2989 33.8435 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 57 A 0.2414 45.5638 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 58 E 0.3231 34.4974 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 59 B -0.2332 38.3112 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 60 v 11.4851 35.8156 30.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 61 k 0.1367 35.5315 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 62 J -0.3449 33.1556 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 63 U 0.0394 39.2150 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 64 j -0.0880 18.3427 54.5621 -Arial_Black.ttf 58 E 34.4974 42.0000 65 ( -1.3094 17.4047 56.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 66 7 0.0794 33.5935 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 67 § -1.2691 34.2185 55.7500 -Arial_Black.ttf 58 E 34.4974 42.0000 68 $ -3.7498 35.2815 52.4362 -Arial_Black.ttf 58 E 34.4974 42.0000 69 € -1.1530 38.1914 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 70 / -1.4814 16.3759 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 71 C -1.3382 39.9082 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 72 * -1.1145 22.1565 20.6224 -Arial_Black.ttf 58 E 34.4974 42.0000 73 ” -1.0336 25.6241 23.2483 -Arial_Black.ttf 58 E 34.4974 42.0000 74 ? -1.1945 31.8138 43.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 75 { -1.3387 21.4974 56.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 76 } -1.1425 21.4974 56.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 77 , 30.6679 11.6241 24.1862 -Arial_Black.ttf 58 E 34.4974 42.0000 78 I 0.0379 12.8121 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 79 ° -1.1439 14.1250 14.1250 -Arial_Black.ttf 58 E 34.4974 42.0000 80 K -0.1393 43.9668 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 81 H 0.1131 39.2150 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 82 q 10.2925 32.7806 42.9379 -Arial_Black.ttf 58 E 34.4974 42.0000 83 & -1.4874 46.8820 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 84 ’ -1.3753 11.6241 23.2483 -Arial_Black.ttf 58 E 34.4974 42.0000 85 [ -0.0135 18.3427 53.6241 -Arial_Black.ttf 58 E 34.4974 42.0000 86 - 22.2431 16.9047 9.2483 -Arial_Black.ttf 58 E 34.4974 42.0000 87 Y -0.0500 45.5638 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 88 Q -1.1382 44.1547 48.3435 -Arial_Black.ttf 58 E 34.4974 42.0000 89 " -0.1599 26.8121 15.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 90 ! 0.0889 11.6241 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 91 x 11.3005 38.6914 30.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 92 ) -1.0690 17.4047 56.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 93 = 9.6613 30.9047 23.2483 -Arial_Black.ttf 58 E 34.4974 42.0000 94 + 5.2602 31.4388 31.4388 -Arial_Black.ttf 58 E 34.4974 42.0000 95 X 0.2355 45.1547 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 96 » 13.3320 31.1547 26.4082 -Arial_Black.ttf 58 E 34.4974 42.0000 97 ' 0.1498 11.6241 15.1879 -Arial_Black.ttf 58 E 34.4974 42.0000 98 ¢ 0.5249 34.2185 53.2203 -Arial_Black.ttf 58 E 34.4974 42.0000 99 Z -0.1034 37.3059 42.0000 -Arial_Black.ttf 58 E 34.4974 42.0000 100 > 3.4789 32.6267 34.9974 -Arial_Black.ttf 58 E 34.4974 42.0000 101 ® -1.5338 43.9720 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 102 © -1.3024 43.9720 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 103 ] 0.3102 18.3427 53.6241 -Arial_Black.ttf 58 E 34.4974 42.0000 104 é -1.3460 34.2185 44.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 105 z 11.4569 28.4327 30.3759 -Arial_Black.ttf 58 E 34.4974 42.0000 106 _ 46.0087 29.1879 2.7797 -Arial_Black.ttf 58 E 34.4974 42.0000 107 ¥ 0.0450 40.4082 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 1 t 0.0495 22.4353 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 2 h -0.1325 31.8427 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 3 a 10.6884 35.4065 32.7517 -Arial_Black.ttf 59 B 38.3112 42.0000 4 n 10.5889 31.8427 31.5638 -Arial_Black.ttf 59 B 38.3112 42.0000 5 P 0.0973 34.7474 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 6 o 10.3073 34.2185 32.7517 -Arial_Black.ttf 59 B 38.3112 42.0000 7 e 10.4715 34.2185 32.7517 -Arial_Black.ttf 59 B 38.3112 42.0000 8 : 11.5121 11.6241 30.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 9 r 10.2558 23.9073 31.5638 -Arial_Black.ttf 59 B 38.3112 42.0000 10 l 0.2547 11.6241 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 11 i -0.1748 11.6241 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 12 1 -1.2571 23.9073 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 13 | -0.1626 7.2815 53.3741 -Arial_Black.ttf 59 B 38.3112 42.0000 14 N 0.0955 39.2150 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 15 f -1.2778 23.6233 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 16 g 10.2638 34.2185 44.1259 -Arial_Black.ttf 59 B 38.3112 42.0000 17 d -0.2718 32.7806 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 18 W -0.0625 59.5638 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 19 s 10.6517 31.5638 32.7517 -Arial_Black.ttf 59 B 38.3112 42.0000 20 c 10.1724 34.2185 32.7517 -Arial_Black.ttf 59 B 38.3112 42.0000 21 u 11.4958 31.5927 31.5638 -Arial_Black.ttf 59 B 38.3112 42.0000 22 3 -1.4304 33.8435 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 23 ~ 13.6329 32.7517 14.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 24 # -1.1421 35.6565 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 25 O -1.0610 42.7168 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 26 ` -1.4447 14.6591 8.4694 -Arial_Black.ttf 59 B 38.3112 42.0000 27 @ -1.1406 43.1879 49.4974 -Arial_Black.ttf 59 B 38.3112 42.0000 28 F -0.0644 31.5927 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 29 S -1.1945 37.5323 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 30 p 10.5035 32.7806 42.9379 -Arial_Black.ttf 59 B 38.3112 42.0000 31 “ -1.0156 25.6241 23.2483 -Arial_Black.ttf 59 B 38.3112 42.0000 32 % -1.2324 52.3164 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 33 £ -0.6184 34.8724 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 34 . 30.3017 11.6241 11.6241 -Arial_Black.ttf 59 B 38.3112 42.0000 35 2 -1.4544 33.5935 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 36 5 -0.1932 33.8435 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 37 m 10.3518 51.5035 31.5638 -Arial_Black.ttf 59 B 38.3112 42.0000 38 V -0.1473 45.1547 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 39 6 -1.3503 33.8435 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 40 w 11.4697 54.8121 30.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 41 T 0.0933 38.4362 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 42 M -0.2945 45.8086 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 43 G -1.2660 42.5629 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 44 b -0.0152 32.7806 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 45 9 -1.4006 33.8435 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 46 ; 11.6565 11.6241 42.9379 -Arial_Black.ttf 59 B 38.3112 42.0000 47 D 0.0371 38.3112 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 48 L 0.2689 31.9965 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 49 y 11.5235 35.7815 42.9379 -Arial_Black.ttf 59 B 38.3112 42.0000 50 ‘ -0.9409 11.6241 23.2483 -Arial_Black.ttf 59 B 38.3112 42.0000 51 \ -1.2205 16.3759 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 52 R 0.4000 41.2212 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 53 < 3.8433 32.6267 34.9974 -Arial_Black.ttf 59 B 38.3112 42.0000 54 4 -1.2274 38.0612 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 55 8 -1.2594 33.8435 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 56 0 -1.5689 33.8435 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 57 A 0.0213 45.5638 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 58 E -0.2394 34.4974 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 59 B -0.2817 38.3112 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 60 v 11.8112 35.8156 30.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 61 k -0.0829 35.5315 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 62 J 0.3271 33.1556 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 63 U -0.2803 39.2150 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 64 j 0.0097 18.3427 54.5621 -Arial_Black.ttf 59 B 38.3112 42.0000 65 ( -1.0817 17.4047 56.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 66 7 0.1889 33.5935 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 67 § -0.9145 34.2185 55.7500 -Arial_Black.ttf 59 B 38.3112 42.0000 68 $ -4.0516 35.2815 52.4362 -Arial_Black.ttf 59 B 38.3112 42.0000 69 € -0.8640 38.1914 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 70 / -0.9882 16.3759 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 71 C -1.1443 39.9082 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 72 * -0.8055 22.1565 20.6224 -Arial_Black.ttf 59 B 38.3112 42.0000 73 ” -1.2167 25.6241 23.2483 -Arial_Black.ttf 59 B 38.3112 42.0000 74 ? -1.3405 31.8138 43.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 75 { -1.3117 21.4974 56.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 76 } -1.0862 21.4974 56.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 77 , 30.7120 11.6241 24.1862 -Arial_Black.ttf 59 B 38.3112 42.0000 78 I 0.1024 12.8121 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 79 ° -1.5172 14.1250 14.1250 -Arial_Black.ttf 59 B 38.3112 42.0000 80 K -0.2432 43.9668 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 81 H 0.2021 39.2150 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 82 q 10.5914 32.7806 42.9379 -Arial_Black.ttf 59 B 38.3112 42.0000 83 & -1.5602 46.8820 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 84 ’ -0.9719 11.6241 23.2483 -Arial_Black.ttf 59 B 38.3112 42.0000 85 [ -0.0009 18.3427 53.6241 -Arial_Black.ttf 59 B 38.3112 42.0000 86 - 22.1467 16.9047 9.2483 -Arial_Black.ttf 59 B 38.3112 42.0000 87 Y 0.0745 45.5638 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 88 Q -1.4332 44.1547 48.3435 -Arial_Black.ttf 59 B 38.3112 42.0000 89 " 0.1219 26.8121 15.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 90 ! -0.0422 11.6241 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 91 x 11.2835 38.6914 30.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 92 ) -1.0827 17.4047 56.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 93 = 9.4417 30.9047 23.2483 -Arial_Black.ttf 59 B 38.3112 42.0000 94 + 5.3227 31.4388 31.4388 -Arial_Black.ttf 59 B 38.3112 42.0000 95 X -0.4321 45.1547 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 96 » 13.4090 31.1547 26.4082 -Arial_Black.ttf 59 B 38.3112 42.0000 97 ' -0.0042 11.6241 15.1879 -Arial_Black.ttf 59 B 38.3112 42.0000 98 ¢ 0.1568 34.2185 53.2203 -Arial_Black.ttf 59 B 38.3112 42.0000 99 Z -0.0325 37.3059 42.0000 -Arial_Black.ttf 59 B 38.3112 42.0000 100 > 3.3492 32.6267 34.9974 -Arial_Black.ttf 59 B 38.3112 42.0000 101 ® -0.9377 43.9720 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 102 © -1.0292 43.9720 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 103 ] -0.0649 18.3427 53.6241 -Arial_Black.ttf 59 B 38.3112 42.0000 104 é -1.0715 34.2185 44.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 105 z 11.4063 28.4327 30.3759 -Arial_Black.ttf 59 B 38.3112 42.0000 106 _ 46.0607 29.1879 2.7797 -Arial_Black.ttf 59 B 38.3112 42.0000 107 ¥ 0.1297 40.4082 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 1 t -11.2987 22.4353 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 2 h -11.5943 31.8427 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 3 a -1.0113 35.4065 32.7517 -Arial_Black.ttf 60 v 35.8156 30.3759 4 n -1.1977 31.8427 31.5638 -Arial_Black.ttf 60 v 35.8156 30.3759 5 P -11.7661 34.7474 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 6 o -1.0868 34.2185 32.7517 -Arial_Black.ttf 60 v 35.8156 30.3759 7 e -1.1820 34.2185 32.7517 -Arial_Black.ttf 60 v 35.8156 30.3759 8 : -0.1020 11.6241 30.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 9 r -0.9660 23.9073 31.5638 -Arial_Black.ttf 60 v 35.8156 30.3759 10 l -11.6206 11.6241 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 11 i -11.5561 11.6241 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 12 1 -12.9387 23.9073 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 13 | -11.3043 7.2815 53.3741 -Arial_Black.ttf 60 v 35.8156 30.3759 14 N -11.8179 39.2150 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 15 f -12.8669 23.6233 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 16 g -1.2078 34.2185 44.1259 -Arial_Black.ttf 60 v 35.8156 30.3759 17 d -11.6366 32.7806 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 18 W -11.8795 59.5638 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 19 s -1.1016 31.5638 32.7517 -Arial_Black.ttf 60 v 35.8156 30.3759 20 c -1.1022 34.2185 32.7517 -Arial_Black.ttf 60 v 35.8156 30.3759 21 u 0.0121 31.5927 31.5638 -Arial_Black.ttf 60 v 35.8156 30.3759 22 3 -12.7203 33.8435 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 23 ~ 2.4862 32.7517 14.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 24 # -13.0109 35.6565 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 25 O -12.6715 42.7168 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 26 ` -12.7263 14.6591 8.4694 -Arial_Black.ttf 60 v 35.8156 30.3759 27 @ -12.7833 43.1879 49.4974 -Arial_Black.ttf 60 v 35.8156 30.3759 28 F -11.6664 31.5927 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 29 S -12.9799 37.5323 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 30 p -1.3108 32.7806 42.9379 -Arial_Black.ttf 60 v 35.8156 30.3759 31 “ -12.7885 25.6241 23.2483 -Arial_Black.ttf 60 v 35.8156 30.3759 32 % -13.0281 52.3164 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 33 £ -12.6744 34.8724 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 34 . 18.5699 11.6241 11.6241 -Arial_Black.ttf 60 v 35.8156 30.3759 35 2 -13.0609 33.5935 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 36 5 -11.5825 33.8435 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 37 m -0.7667 51.5035 31.5638 -Arial_Black.ttf 60 v 35.8156 30.3759 38 V -11.7077 45.1547 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 39 6 -12.7839 33.8435 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 40 w 0.0538 54.8121 30.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 41 T -11.4615 38.4362 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 42 M -11.7827 45.8086 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 43 G -12.6479 42.5629 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 44 b -11.5964 32.7806 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 45 9 -12.9789 33.8435 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 46 ; -0.0357 11.6241 42.9379 -Arial_Black.ttf 60 v 35.8156 30.3759 47 D -11.3424 38.3112 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 48 L -11.5540 31.9965 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 49 y 0.0965 35.7815 42.9379 -Arial_Black.ttf 60 v 35.8156 30.3759 50 ‘ -12.9766 11.6241 23.2483 -Arial_Black.ttf 60 v 35.8156 30.3759 51 \ -12.8125 16.3759 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 52 R -11.7709 41.2212 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 53 < -8.4427 32.6267 34.9974 -Arial_Black.ttf 60 v 35.8156 30.3759 54 4 -12.8677 38.0612 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 55 8 -13.1236 33.8435 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 56 0 -12.7992 33.8435 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 57 A -11.6203 45.5638 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 58 E -11.5000 34.4974 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 59 B -11.7872 38.3112 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 60 v -0.1321 35.8156 30.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 61 k -11.9295 35.5315 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 62 J -11.7155 33.1556 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 63 U -11.5983 39.2150 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 64 j -11.4081 18.3427 54.5621 -Arial_Black.ttf 60 v 35.8156 30.3759 65 ( -12.8953 17.4047 56.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 66 7 -12.0138 33.5935 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 67 § -12.9390 34.2185 55.7500 -Arial_Black.ttf 60 v 35.8156 30.3759 68 $ -15.6185 35.2815 52.4362 -Arial_Black.ttf 60 v 35.8156 30.3759 69 € -12.8964 38.1914 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 70 / -12.8519 16.3759 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 71 C -12.7347 39.9082 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 72 * -12.9019 22.1565 20.6224 -Arial_Black.ttf 60 v 35.8156 30.3759 73 ” -12.9478 25.6241 23.2483 -Arial_Black.ttf 60 v 35.8156 30.3759 74 ? -12.8742 31.8138 43.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 75 { -12.8075 21.4974 56.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 76 } -12.9068 21.4974 56.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 77 , 18.5106 11.6241 24.1862 -Arial_Black.ttf 60 v 35.8156 30.3759 78 I -11.5930 12.8121 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 79 ° -12.7691 14.1250 14.1250 -Arial_Black.ttf 60 v 35.8156 30.3759 80 K -11.7679 43.9668 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 81 H -11.4527 39.2150 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 82 q -1.1495 32.7806 42.9379 -Arial_Black.ttf 60 v 35.8156 30.3759 83 & -12.9589 46.8820 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 84 ’ -12.8418 11.6241 23.2483 -Arial_Black.ttf 60 v 35.8156 30.3759 85 [ -11.5651 18.3427 53.6241 -Arial_Black.ttf 60 v 35.8156 30.3759 86 - 10.0990 16.9047 9.2483 -Arial_Black.ttf 60 v 35.8156 30.3759 87 Y -11.7473 45.5638 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 88 Q -13.0220 44.1547 48.3435 -Arial_Black.ttf 60 v 35.8156 30.3759 89 " -11.5370 26.8121 15.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 90 ! -11.8506 11.6241 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 91 x -0.1850 38.6914 30.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 92 ) -12.5640 17.4047 56.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 93 = -2.1398 30.9047 23.2483 -Arial_Black.ttf 60 v 35.8156 30.3759 94 + -6.1777 31.4388 31.4388 -Arial_Black.ttf 60 v 35.8156 30.3759 95 X -11.2817 45.1547 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 96 » 1.8834 31.1547 26.4082 -Arial_Black.ttf 60 v 35.8156 30.3759 97 ' -11.5139 11.6241 15.1879 -Arial_Black.ttf 60 v 35.8156 30.3759 98 ¢ -11.3098 34.2185 53.2203 -Arial_Black.ttf 60 v 35.8156 30.3759 99 Z -11.6432 37.3059 42.0000 -Arial_Black.ttf 60 v 35.8156 30.3759 100 > -7.9713 32.6267 34.9974 -Arial_Black.ttf 60 v 35.8156 30.3759 101 ® -12.5872 43.9720 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 102 © -12.7514 43.9720 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 103 ] -11.7196 18.3427 53.6241 -Arial_Black.ttf 60 v 35.8156 30.3759 104 é -12.9694 34.2185 44.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 105 z 0.0922 28.4327 30.3759 -Arial_Black.ttf 60 v 35.8156 30.3759 106 _ 34.3012 29.1879 2.7797 -Arial_Black.ttf 60 v 35.8156 30.3759 107 ¥ -11.4174 40.4082 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 1 t 0.0876 22.4353 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 2 h -0.1339 31.8427 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 3 a 10.1021 35.4065 32.7517 -Arial_Black.ttf 61 k 35.5315 42.0000 4 n 10.3936 31.8427 31.5638 -Arial_Black.ttf 61 k 35.5315 42.0000 5 P 0.1312 34.7474 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 6 o 10.2711 34.2185 32.7517 -Arial_Black.ttf 61 k 35.5315 42.0000 7 e 10.4432 34.2185 32.7517 -Arial_Black.ttf 61 k 35.5315 42.0000 8 : 11.5434 11.6241 30.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 9 r 10.7069 23.9073 31.5638 -Arial_Black.ttf 61 k 35.5315 42.0000 10 l 0.0585 11.6241 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 11 i 0.1266 11.6241 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 12 1 -0.8857 23.9073 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 13 | 0.1788 7.2815 53.3741 -Arial_Black.ttf 61 k 35.5315 42.0000 14 N -0.2397 39.2150 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 15 f -1.2115 23.6233 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 16 g 10.2610 34.2185 44.1259 -Arial_Black.ttf 61 k 35.5315 42.0000 17 d 0.1047 32.7806 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 18 W 0.0214 59.5638 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 19 s 10.5271 31.5638 32.7517 -Arial_Black.ttf 61 k 35.5315 42.0000 20 c 10.3936 34.2185 32.7517 -Arial_Black.ttf 61 k 35.5315 42.0000 21 u 11.4780 31.5927 31.5638 -Arial_Black.ttf 61 k 35.5315 42.0000 22 3 -1.1744 33.8435 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 23 ~ 13.8233 32.7517 14.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 24 # -1.3284 35.6565 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 25 O -1.1110 42.7168 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 26 ` -1.4295 14.6591 8.4694 -Arial_Black.ttf 61 k 35.5315 42.0000 27 @ -1.3101 43.1879 49.4974 -Arial_Black.ttf 61 k 35.5315 42.0000 28 F 0.1519 31.5927 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 29 S -1.4363 37.5323 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 30 p 10.3643 32.7806 42.9379 -Arial_Black.ttf 61 k 35.5315 42.0000 31 “ -1.4471 25.6241 23.2483 -Arial_Black.ttf 61 k 35.5315 42.0000 32 % -1.2341 52.3164 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 33 £ -1.1083 34.8724 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 34 . 30.4952 11.6241 11.6241 -Arial_Black.ttf 61 k 35.5315 42.0000 35 2 -1.3395 33.5935 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 36 5 0.0940 33.8435 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 37 m 10.5975 51.5035 31.5638 -Arial_Black.ttf 61 k 35.5315 42.0000 38 V 0.1304 45.1547 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 39 6 -1.1414 33.8435 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 40 w 11.3183 54.8121 30.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 41 T 0.2721 38.4362 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 42 M -0.0409 45.8086 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 43 G -1.3978 42.5629 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 44 b -0.1038 32.7806 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 45 9 -1.3219 33.8435 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 46 ; 11.5884 11.6241 42.9379 -Arial_Black.ttf 61 k 35.5315 42.0000 47 D -0.0871 38.3112 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 48 L -0.1644 31.9965 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 49 y 11.5527 35.7815 42.9379 -Arial_Black.ttf 61 k 35.5315 42.0000 50 ‘ -1.4054 11.6241 23.2483 -Arial_Black.ttf 61 k 35.5315 42.0000 51 \ -1.2664 16.3759 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 52 R -0.1683 41.2212 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 53 < 3.5369 32.6267 34.9974 -Arial_Black.ttf 61 k 35.5315 42.0000 54 4 -1.2691 38.0612 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 55 8 -1.0043 33.8435 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 56 0 -1.1106 33.8435 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 57 A 0.0468 45.5638 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 58 E 0.0992 34.4974 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 59 B 0.3078 38.3112 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 60 v 11.6988 35.8156 30.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 61 k 0.2235 35.5315 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 62 J -0.0287 33.1556 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 63 U -0.0073 39.2150 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 64 j 0.1228 18.3427 54.5621 -Arial_Black.ttf 61 k 35.5315 42.0000 65 ( -0.9905 17.4047 56.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 66 7 -0.2248 33.5935 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 67 § -1.4818 34.2185 55.7500 -Arial_Black.ttf 61 k 35.5315 42.0000 68 $ -4.3121 35.2815 52.4362 -Arial_Black.ttf 61 k 35.5315 42.0000 69 € -1.2028 38.1914 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 70 / -1.3975 16.3759 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 71 C -1.1995 39.9082 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 72 * -1.0791 22.1565 20.6224 -Arial_Black.ttf 61 k 35.5315 42.0000 73 ” -1.1925 25.6241 23.2483 -Arial_Black.ttf 61 k 35.5315 42.0000 74 ? -1.4725 31.8138 43.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 75 { -1.3705 21.4974 56.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 76 } -1.1908 21.4974 56.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 77 , 30.6012 11.6241 24.1862 -Arial_Black.ttf 61 k 35.5315 42.0000 78 I -0.0561 12.8121 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 79 ° -1.2208 14.1250 14.1250 -Arial_Black.ttf 61 k 35.5315 42.0000 80 K 0.0062 43.9668 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 81 H -0.1599 39.2150 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 82 q 10.3672 32.7806 42.9379 -Arial_Black.ttf 61 k 35.5315 42.0000 83 & -0.9276 46.8820 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 84 ’ -1.1565 11.6241 23.2483 -Arial_Black.ttf 61 k 35.5315 42.0000 85 [ -0.0722 18.3427 53.6241 -Arial_Black.ttf 61 k 35.5315 42.0000 86 - 22.0733 16.9047 9.2483 -Arial_Black.ttf 61 k 35.5315 42.0000 87 Y 0.1408 45.5638 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 88 Q -0.8178 44.1547 48.3435 -Arial_Black.ttf 61 k 35.5315 42.0000 89 " -0.2316 26.8121 15.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 90 ! -0.2382 11.6241 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 91 x 11.8730 38.6914 30.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 92 ) -0.7987 17.4047 56.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 93 = 9.8018 30.9047 23.2483 -Arial_Black.ttf 61 k 35.5315 42.0000 94 + 5.5949 31.4388 31.4388 -Arial_Black.ttf 61 k 35.5315 42.0000 95 X 0.2837 45.1547 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 96 » 13.5446 31.1547 26.4082 -Arial_Black.ttf 61 k 35.5315 42.0000 97 ' -0.2438 11.6241 15.1879 -Arial_Black.ttf 61 k 35.5315 42.0000 98 ¢ 0.1810 34.2185 53.2203 -Arial_Black.ttf 61 k 35.5315 42.0000 99 Z 0.0430 37.3059 42.0000 -Arial_Black.ttf 61 k 35.5315 42.0000 100 > 3.4781 32.6267 34.9974 -Arial_Black.ttf 61 k 35.5315 42.0000 101 ® -1.1504 43.9720 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 102 © -0.8455 43.9720 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 103 ] -0.1690 18.3427 53.6241 -Arial_Black.ttf 61 k 35.5315 42.0000 104 é -0.9312 34.2185 44.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 105 z 11.3571 28.4327 30.3759 -Arial_Black.ttf 61 k 35.5315 42.0000 106 _ 45.9278 29.1879 2.7797 -Arial_Black.ttf 61 k 35.5315 42.0000 107 ¥ 0.0382 40.4082 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 1 t 0.1186 22.4353 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 2 h -0.2890 31.8427 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 3 a 10.3176 35.4065 32.7517 -Arial_Black.ttf 62 J 33.1556 43.1879 4 n 10.2706 31.8427 31.5638 -Arial_Black.ttf 62 J 33.1556 43.1879 5 P 0.0166 34.7474 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 6 o 10.7365 34.2185 32.7517 -Arial_Black.ttf 62 J 33.1556 43.1879 7 e 10.2157 34.2185 32.7517 -Arial_Black.ttf 62 J 33.1556 43.1879 8 : 12.0733 11.6241 30.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 9 r 10.4389 23.9073 31.5638 -Arial_Black.ttf 62 J 33.1556 43.1879 10 l -0.2855 11.6241 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 11 i -0.1353 11.6241 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 12 1 -1.2872 23.9073 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 13 | -0.0357 7.2815 53.3741 -Arial_Black.ttf 62 J 33.1556 43.1879 14 N -0.0260 39.2150 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 15 f -1.2816 23.6233 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 16 g 10.5993 34.2185 44.1259 -Arial_Black.ttf 62 J 33.1556 43.1879 17 d 0.0520 32.7806 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 18 W -0.0798 59.5638 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 19 s 10.2351 31.5638 32.7517 -Arial_Black.ttf 62 J 33.1556 43.1879 20 c 10.3764 34.2185 32.7517 -Arial_Black.ttf 62 J 33.1556 43.1879 21 u 11.3953 31.5927 31.5638 -Arial_Black.ttf 62 J 33.1556 43.1879 22 3 -1.0711 33.8435 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 23 ~ 14.0821 32.7517 14.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 24 # -1.3108 35.6565 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 25 O -0.8643 42.7168 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 26 ` -0.9292 14.6591 8.4694 -Arial_Black.ttf 62 J 33.1556 43.1879 27 @ -1.1458 43.1879 49.4974 -Arial_Black.ttf 62 J 33.1556 43.1879 28 F 0.0354 31.5927 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 29 S -0.8993 37.5323 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 30 p 10.1413 32.7806 42.9379 -Arial_Black.ttf 62 J 33.1556 43.1879 31 “ -1.1128 25.6241 23.2483 -Arial_Black.ttf 62 J 33.1556 43.1879 32 % -1.2005 52.3164 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 33 £ -1.2296 34.8724 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 34 . 30.2474 11.6241 11.6241 -Arial_Black.ttf 62 J 33.1556 43.1879 35 2 -1.2671 33.5935 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 36 5 -0.3239 33.8435 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 37 m 10.1924 51.5035 31.5638 -Arial_Black.ttf 62 J 33.1556 43.1879 38 V 0.0979 45.1547 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 39 6 -1.0734 33.8435 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 40 w 11.6144 54.8121 30.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 41 T -0.0399 38.4362 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 42 M 0.2563 45.8086 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 43 G -1.2686 42.5629 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 44 b 0.2508 32.7806 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 45 9 -1.2701 33.8435 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 46 ; 11.5162 11.6241 42.9379 -Arial_Black.ttf 62 J 33.1556 43.1879 47 D 0.0167 38.3112 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 48 L 0.0430 31.9965 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 49 y 11.7238 35.7815 42.9379 -Arial_Black.ttf 62 J 33.1556 43.1879 50 ‘ -1.2296 11.6241 23.2483 -Arial_Black.ttf 62 J 33.1556 43.1879 51 \ -1.2251 16.3759 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 52 R 0.0445 41.2212 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 53 < 3.3071 32.6267 34.9974 -Arial_Black.ttf 62 J 33.1556 43.1879 54 4 -1.2005 38.0612 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 55 8 -1.0208 33.8435 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 56 0 -0.9763 33.8435 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 57 A 0.0792 45.5638 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 58 E -0.2151 34.4974 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 59 B -0.5015 38.3112 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 60 v 11.5839 35.8156 30.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 61 k -0.3774 35.5315 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 62 J -0.0455 33.1556 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 63 U 0.0672 39.2150 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 64 j 0.0495 18.3427 54.5621 -Arial_Black.ttf 62 J 33.1556 43.1879 65 ( -1.3104 17.4047 56.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 66 7 0.1298 33.5935 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 67 § -0.9211 34.2185 55.7500 -Arial_Black.ttf 62 J 33.1556 43.1879 68 $ -4.1779 35.2815 52.4362 -Arial_Black.ttf 62 J 33.1556 43.1879 69 € -1.3334 38.1914 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 70 / -1.2306 16.3759 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 71 C -1.3719 39.9082 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 72 * -1.0251 22.1565 20.6224 -Arial_Black.ttf 62 J 33.1556 43.1879 73 ” -1.0432 25.6241 23.2483 -Arial_Black.ttf 62 J 33.1556 43.1879 74 ? -1.1882 31.8138 43.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 75 { -1.3146 21.4974 56.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 76 } -1.2309 21.4974 56.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 77 , 30.4231 11.6241 24.1862 -Arial_Black.ttf 62 J 33.1556 43.1879 78 I 0.2490 12.8121 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 79 ° -1.3155 14.1250 14.1250 -Arial_Black.ttf 62 J 33.1556 43.1879 80 K 0.2487 43.9668 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 81 H 0.1952 39.2150 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 82 q 10.5590 32.7806 42.9379 -Arial_Black.ttf 62 J 33.1556 43.1879 83 & -1.1439 46.8820 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 84 ’ -1.3427 11.6241 23.2483 -Arial_Black.ttf 62 J 33.1556 43.1879 85 [ -0.1287 18.3427 53.6241 -Arial_Black.ttf 62 J 33.1556 43.1879 86 - 21.9107 16.9047 9.2483 -Arial_Black.ttf 62 J 33.1556 43.1879 87 Y 0.0366 45.5638 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 88 Q -1.4006 44.1547 48.3435 -Arial_Black.ttf 62 J 33.1556 43.1879 89 " 0.2164 26.8121 15.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 90 ! 0.2553 11.6241 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 91 x 11.9231 38.6914 30.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 92 ) -1.2769 17.4047 56.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 93 = 9.2980 30.9047 23.2483 -Arial_Black.ttf 62 J 33.1556 43.1879 94 + 5.4534 31.4388 31.4388 -Arial_Black.ttf 62 J 33.1556 43.1879 95 X -0.0774 45.1547 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 96 » 13.2642 31.1547 26.4082 -Arial_Black.ttf 62 J 33.1556 43.1879 97 ' -0.1437 11.6241 15.1879 -Arial_Black.ttf 62 J 33.1556 43.1879 98 ¢ 0.1194 34.2185 53.2203 -Arial_Black.ttf 62 J 33.1556 43.1879 99 Z 0.2164 37.3059 42.0000 -Arial_Black.ttf 62 J 33.1556 43.1879 100 > 3.7827 32.6267 34.9974 -Arial_Black.ttf 62 J 33.1556 43.1879 101 ® -0.9682 43.9720 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 102 © -1.0090 43.9720 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 103 ] -0.0495 18.3427 53.6241 -Arial_Black.ttf 62 J 33.1556 43.1879 104 é -1.2077 34.2185 44.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 105 z 11.5316 28.4327 30.3759 -Arial_Black.ttf 62 J 33.1556 43.1879 106 _ 46.0125 29.1879 2.7797 -Arial_Black.ttf 62 J 33.1556 43.1879 107 ¥ 0.2123 40.4082 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 1 t 0.0249 22.4353 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 2 h 0.0924 31.8427 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 3 a 10.4532 35.4065 32.7517 -Arial_Black.ttf 63 U 39.2150 43.1879 4 n 10.0763 31.8427 31.5638 -Arial_Black.ttf 63 U 39.2150 43.1879 5 P -0.1752 34.7474 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 6 o 10.4109 34.2185 32.7517 -Arial_Black.ttf 63 U 39.2150 43.1879 7 e 10.4602 34.2185 32.7517 -Arial_Black.ttf 63 U 39.2150 43.1879 8 : 11.4884 11.6241 30.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 9 r 10.3550 23.9073 31.5638 -Arial_Black.ttf 63 U 39.2150 43.1879 10 l -0.3806 11.6241 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 11 i -0.0658 11.6241 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 12 1 -1.2413 23.9073 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 13 | -0.0992 7.2815 53.3741 -Arial_Black.ttf 63 U 39.2150 43.1879 14 N -0.0458 39.2150 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 15 f -1.1226 23.6233 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 16 g 10.5864 34.2185 44.1259 -Arial_Black.ttf 63 U 39.2150 43.1879 17 d -0.0518 32.7806 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 18 W -0.2535 59.5638 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 19 s 10.1687 31.5638 32.7517 -Arial_Black.ttf 63 U 39.2150 43.1879 20 c 10.2874 34.2185 32.7517 -Arial_Black.ttf 63 U 39.2150 43.1879 21 u 11.5388 31.5927 31.5638 -Arial_Black.ttf 63 U 39.2150 43.1879 22 3 -1.2050 33.8435 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 23 ~ 13.8276 32.7517 14.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 24 # -1.0645 35.6565 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 25 O -0.9673 42.7168 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 26 ` -1.0127 14.6591 8.4694 -Arial_Black.ttf 63 U 39.2150 43.1879 27 @ -1.0214 43.1879 49.4974 -Arial_Black.ttf 63 U 39.2150 43.1879 28 F -0.5056 31.5927 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 29 S -1.2940 37.5323 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 30 p 10.4900 32.7806 42.9379 -Arial_Black.ttf 63 U 39.2150 43.1879 31 “ -0.9941 25.6241 23.2483 -Arial_Black.ttf 63 U 39.2150 43.1879 32 % -1.3205 52.3164 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 33 £ -1.0780 34.8724 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 34 . 30.5070 11.6241 11.6241 -Arial_Black.ttf 63 U 39.2150 43.1879 35 2 -1.0309 33.5935 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 36 5 0.2917 33.8435 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 37 m 10.4681 51.5035 31.5638 -Arial_Black.ttf 63 U 39.2150 43.1879 38 V -0.1561 45.1547 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 39 6 -1.0640 33.8435 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 40 w 11.7784 54.8121 30.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 41 T -0.0826 38.4362 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 42 M 0.1669 45.8086 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 43 G -1.0189 42.5629 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 44 b 0.0240 32.7806 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 45 9 -1.3752 33.8435 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 46 ; 11.3814 11.6241 42.9379 -Arial_Black.ttf 63 U 39.2150 43.1879 47 D 0.0469 38.3112 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 48 L 0.2517 31.9965 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 49 y 11.3201 35.7815 42.9379 -Arial_Black.ttf 63 U 39.2150 43.1879 50 ‘ -1.0071 11.6241 23.2483 -Arial_Black.ttf 63 U 39.2150 43.1879 51 \ -1.0425 16.3759 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 52 R 0.1381 41.2212 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 53 < 3.9458 32.6267 34.9974 -Arial_Black.ttf 63 U 39.2150 43.1879 54 4 -1.0221 38.0612 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 55 8 -1.3164 33.8435 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 56 0 -1.1106 33.8435 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 57 A -0.1176 45.5638 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 58 E 0.4358 34.4974 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 59 B 0.1146 38.3112 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 60 v 11.5207 35.8156 30.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 61 k 0.0357 35.5315 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 62 J -0.1309 33.1556 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 63 U -0.1652 39.2150 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 64 j -0.1155 18.3427 54.5621 -Arial_Black.ttf 63 U 39.2150 43.1879 65 ( -1.0964 17.4047 56.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 66 7 0.1113 33.5935 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 67 § -1.2357 34.2185 55.7500 -Arial_Black.ttf 63 U 39.2150 43.1879 68 $ -3.6756 35.2815 52.4362 -Arial_Black.ttf 63 U 39.2150 43.1879 69 € -0.8889 38.1914 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 70 / -1.1885 16.3759 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 71 C -1.3635 39.9082 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 72 * -1.3191 22.1565 20.6224 -Arial_Black.ttf 63 U 39.2150 43.1879 73 ” -1.4049 25.6241 23.2483 -Arial_Black.ttf 63 U 39.2150 43.1879 74 ? -1.0651 31.8138 43.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 75 { -1.0550 21.4974 56.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 76 } -1.2351 21.4974 56.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 77 , 30.4904 11.6241 24.1862 -Arial_Black.ttf 63 U 39.2150 43.1879 78 I -0.0509 12.8121 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 79 ° -1.3121 14.1250 14.1250 -Arial_Black.ttf 63 U 39.2150 43.1879 80 K 0.1075 43.9668 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 81 H 0.1776 39.2150 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 82 q 10.6531 32.7806 42.9379 -Arial_Black.ttf 63 U 39.2150 43.1879 83 & -1.1670 46.8820 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 84 ’ -1.2309 11.6241 23.2483 -Arial_Black.ttf 63 U 39.2150 43.1879 85 [ -0.3791 18.3427 53.6241 -Arial_Black.ttf 63 U 39.2150 43.1879 86 - 21.9324 16.9047 9.2483 -Arial_Black.ttf 63 U 39.2150 43.1879 87 Y 0.0357 45.5638 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 88 Q -1.2834 44.1547 48.3435 -Arial_Black.ttf 63 U 39.2150 43.1879 89 " 0.1519 26.8121 15.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 90 ! -0.0853 11.6241 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 91 x 11.3872 38.6914 30.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 92 ) -1.4062 17.4047 56.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 93 = 9.7932 30.9047 23.2483 -Arial_Black.ttf 63 U 39.2150 43.1879 94 + 5.7293 31.4388 31.4388 -Arial_Black.ttf 63 U 39.2150 43.1879 95 X -0.0490 45.1547 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 96 » 13.7084 31.1547 26.4082 -Arial_Black.ttf 63 U 39.2150 43.1879 97 ' -0.3295 11.6241 15.1879 -Arial_Black.ttf 63 U 39.2150 43.1879 98 ¢ 0.2847 34.2185 53.2203 -Arial_Black.ttf 63 U 39.2150 43.1879 99 Z -0.2020 37.3059 42.0000 -Arial_Black.ttf 63 U 39.2150 43.1879 100 > 3.5246 32.6267 34.9974 -Arial_Black.ttf 63 U 39.2150 43.1879 101 ® -1.1230 43.9720 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 102 © -0.8130 43.9720 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 103 ] -0.1301 18.3427 53.6241 -Arial_Black.ttf 63 U 39.2150 43.1879 104 é -1.4433 34.2185 44.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 105 z 11.2832 28.4327 30.3759 -Arial_Black.ttf 63 U 39.2150 43.1879 106 _ 46.0937 29.1879 2.7797 -Arial_Black.ttf 63 U 39.2150 43.1879 107 ¥ -0.0018 40.4082 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 1 t -0.0455 22.4353 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 2 h -0.0111 31.8427 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 3 a 10.4214 35.4065 32.7517 -Arial_Black.ttf 64 j 18.3427 54.5621 4 n 10.6819 31.8427 31.5638 -Arial_Black.ttf 64 j 18.3427 54.5621 5 P 0.0097 34.7474 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 6 o 10.5336 34.2185 32.7517 -Arial_Black.ttf 64 j 18.3427 54.5621 7 e 10.6856 34.2185 32.7517 -Arial_Black.ttf 64 j 18.3427 54.5621 8 : 11.4624 11.6241 30.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 9 r 10.4581 23.9073 31.5638 -Arial_Black.ttf 64 j 18.3427 54.5621 10 l -0.0801 11.6241 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 11 i -0.3365 11.6241 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 12 1 -1.0248 23.9073 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 13 | 0.0000 7.2815 53.3741 -Arial_Black.ttf 64 j 18.3427 54.5621 14 N -0.1504 39.2150 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 15 f -1.3485 23.6233 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 16 g 10.4348 34.2185 44.1259 -Arial_Black.ttf 64 j 18.3427 54.5621 17 d -0.1038 32.7806 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 18 W -0.4743 59.5638 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 19 s 10.5224 31.5638 32.7517 -Arial_Black.ttf 64 j 18.3427 54.5621 20 c 10.5628 34.2185 32.7517 -Arial_Black.ttf 64 j 18.3427 54.5621 21 u 11.6779 31.5927 31.5638 -Arial_Black.ttf 64 j 18.3427 54.5621 22 3 -0.7994 33.8435 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 23 ~ 13.7244 32.7517 14.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 24 # -1.3687 35.6565 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 25 O -1.2194 42.7168 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 26 ` -0.9213 14.6591 8.4694 -Arial_Black.ttf 64 j 18.3427 54.5621 27 @ -1.2334 43.1879 49.4974 -Arial_Black.ttf 64 j 18.3427 54.5621 28 F 0.2373 31.5927 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 29 S -1.1068 37.5323 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 30 p 10.7881 32.7806 42.9379 -Arial_Black.ttf 64 j 18.3427 54.5621 31 “ -1.1068 25.6241 23.2483 -Arial_Black.ttf 64 j 18.3427 54.5621 32 % -1.2824 52.3164 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 33 £ -1.0970 34.8724 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 34 . 30.2892 11.6241 11.6241 -Arial_Black.ttf 64 j 18.3427 54.5621 35 2 -1.2987 33.5935 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 36 5 0.1683 33.8435 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 37 m 10.3631 51.5035 31.5638 -Arial_Black.ttf 64 j 18.3427 54.5621 38 V -0.0097 45.1547 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 39 6 -0.8046 33.8435 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 40 w 11.7734 54.8121 30.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 41 T -0.1024 38.4362 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 42 M -0.0982 45.8086 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 43 G -1.1022 42.5629 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 44 b 0.1427 32.7806 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 45 9 -0.9816 33.8435 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 46 ; 11.3753 11.6241 42.9379 -Arial_Black.ttf 64 j 18.3427 54.5621 47 D 0.0217 38.3112 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 48 L 0.2957 31.9965 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 49 y 11.4156 35.7815 42.9379 -Arial_Black.ttf 64 j 18.3427 54.5621 50 ‘ -1.4447 11.6241 23.2483 -Arial_Black.ttf 64 j 18.3427 54.5621 51 \ -1.2282 16.3759 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 52 R -0.2605 41.2212 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 53 < 3.4238 32.6267 34.9974 -Arial_Black.ttf 64 j 18.3427 54.5621 54 4 -1.2036 38.0612 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 55 8 -1.1110 33.8435 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 56 0 -1.1588 33.8435 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 57 A -0.0746 45.5638 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 58 E -0.0000 34.4974 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 59 B -0.2582 38.3112 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 60 v 11.5755 35.8156 30.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 61 k 0.0541 35.5315 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 62 J -0.1357 33.1556 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 63 U -0.0313 39.2150 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 64 j 0.0000 18.3427 54.5621 -Arial_Black.ttf 64 j 18.3427 54.5621 65 ( -1.4183 17.4047 56.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 66 7 0.0278 33.5935 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 67 § -1.1165 34.2185 55.7500 -Arial_Black.ttf 64 j 18.3427 54.5621 68 $ -3.9222 35.2815 52.4362 -Arial_Black.ttf 64 j 18.3427 54.5621 69 € -1.1439 38.1914 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 70 / -1.2204 16.3759 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 71 C -1.4307 39.9082 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 72 * -1.3478 22.1565 20.6224 -Arial_Black.ttf 64 j 18.3427 54.5621 73 ” -1.3248 25.6241 23.2483 -Arial_Black.ttf 64 j 18.3427 54.5621 74 ? -1.0460 31.8138 43.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 75 { -1.3065 21.4974 56.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 76 } -1.0665 21.4974 56.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 77 , 30.6559 11.6241 24.1862 -Arial_Black.ttf 64 j 18.3427 54.5621 78 I 0.0455 12.8121 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 79 ° -0.9414 14.1250 14.1250 -Arial_Black.ttf 64 j 18.3427 54.5621 80 K -0.0853 43.9668 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 81 H -0.0728 39.2150 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 82 q 10.6045 32.7806 42.9379 -Arial_Black.ttf 64 j 18.3427 54.5621 83 & -1.1574 46.8820 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 84 ’ -1.4915 11.6241 23.2483 -Arial_Black.ttf 64 j 18.3427 54.5621 85 [ -0.0859 18.3427 53.6241 -Arial_Black.ttf 64 j 18.3427 54.5621 86 - 22.0763 16.9047 9.2483 -Arial_Black.ttf 64 j 18.3427 54.5621 87 Y -0.2169 45.5638 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 88 Q -1.3469 44.1547 48.3435 -Arial_Black.ttf 64 j 18.3427 54.5621 89 " 0.2535 26.8121 15.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 90 ! 0.1190 11.6241 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 91 x 11.3782 38.6914 30.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 92 ) -1.2393 17.4047 56.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 93 = 9.1905 30.9047 23.2483 -Arial_Black.ttf 64 j 18.3427 54.5621 94 + 5.1012 31.4388 31.4388 -Arial_Black.ttf 64 j 18.3427 54.5621 95 X 0.0912 45.1547 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 96 » 13.2522 31.1547 26.4082 -Arial_Black.ttf 64 j 18.3427 54.5621 97 ' -0.0917 11.6241 15.1879 -Arial_Black.ttf 64 j 18.3427 54.5621 98 ¢ 0.3181 34.2185 53.2203 -Arial_Black.ttf 64 j 18.3427 54.5621 99 Z -0.0445 37.3059 42.0000 -Arial_Black.ttf 64 j 18.3427 54.5621 100 > 3.5198 32.6267 34.9974 -Arial_Black.ttf 64 j 18.3427 54.5621 101 ® -1.0984 43.9720 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 102 © -1.2167 43.9720 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 103 ] -0.0888 18.3427 53.6241 -Arial_Black.ttf 64 j 18.3427 54.5621 104 é -1.2802 34.2185 44.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 105 z 11.5787 28.4327 30.3759 -Arial_Black.ttf 64 j 18.3427 54.5621 106 _ 45.9940 29.1879 2.7797 -Arial_Black.ttf 64 j 18.3427 54.5621 107 ¥ -0.0705 40.4082 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 1 t 1.3738 22.4353 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 2 h 0.9683 31.8427 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 3 a 11.5110 35.4065 32.7517 -Arial_Black.ttf 65 ( 17.4047 56.0000 4 n 11.3789 31.8427 31.5638 -Arial_Black.ttf 65 ( 17.4047 56.0000 5 P 1.1044 34.7474 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 6 o 11.5500 34.2185 32.7517 -Arial_Black.ttf 65 ( 17.4047 56.0000 7 e 11.8091 34.2185 32.7517 -Arial_Black.ttf 65 ( 17.4252 56.0000 8 : 12.6722 11.6371 30.3629 -Arial_Black.ttf 65 ( 17.4047 56.0000 9 r 11.9658 23.9073 31.5638 -Arial_Black.ttf 65 ( 17.4047 56.0000 10 l 1.2691 11.6241 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 11 i 1.0766 11.6241 42.0000 -Arial_Black.ttf 65 ( 17.4252 56.0000 12 1 -0.0358 23.9105 43.1815 -Arial_Black.ttf 65 ( 17.4252 56.0000 13 | 1.0642 7.2718 53.3612 -Arial_Black.ttf 65 ( 17.4047 56.0000 14 N 1.3348 39.2150 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 15 f 0.2581 23.6233 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 16 g 11.7266 34.2185 44.1259 -Arial_Black.ttf 65 ( 17.4047 56.0000 17 d 1.1490 32.7806 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 18 W 1.3205 59.5638 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 19 s 11.6144 31.5638 32.7517 -Arial_Black.ttf 65 ( 17.4047 56.0000 20 c 11.6677 34.2185 32.7517 -Arial_Black.ttf 65 ( 17.4047 56.0000 21 u 12.8940 31.5927 31.5638 -Arial_Black.ttf 65 ( 17.4252 56.0000 22 3 0.1742 33.8834 44.3629 -Arial_Black.ttf 65 ( 17.4252 56.0000 23 ~ 14.9255 32.7258 14.0000 -Arial_Black.ttf 65 ( 17.4252 56.0000 24 # -0.1431 35.6338 44.3629 -Arial_Black.ttf 65 ( 17.4047 56.0000 25 O -0.0839 42.7168 44.3759 -Arial_Black.ttf 65 ( 17.4252 56.0000 26 ` 0.0037 14.6708 8.4532 -Arial_Black.ttf 65 ( 17.4252 56.0000 27 @ -0.0229 43.1815 49.5147 -Arial_Black.ttf 65 ( 17.4047 56.0000 28 F 0.9677 31.5927 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 29 S -0.1585 37.5323 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 30 p 11.4642 32.7806 42.9379 -Arial_Black.ttf 65 ( 17.4047 56.0000 31 “ 0.2140 25.6241 23.2483 -Arial_Black.ttf 65 ( 17.4047 56.0000 32 % -0.0385 52.3164 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 33 £ -0.0343 34.8724 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 34 . 31.2367 11.6241 11.6241 -Arial_Black.ttf 65 ( 17.4047 56.0000 35 2 0.4329 33.5935 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 36 5 1.1522 33.8435 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 37 m 11.5852 51.5035 31.5638 -Arial_Black.ttf 65 ( 17.4047 56.0000 38 V 1.1490 45.1547 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 39 6 0.0375 33.8435 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 40 w 12.8932 54.8121 30.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 41 T 1.1827 38.4362 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 42 M 1.1931 45.8086 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 43 G -0.1548 42.5629 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 44 b 1.0294 32.7806 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 45 9 -0.0251 33.8435 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 46 ; 12.9394 11.6241 42.9379 -Arial_Black.ttf 65 ( 17.4047 56.0000 47 D 1.1884 38.3112 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 48 L 1.1878 31.9965 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 49 y 12.6392 35.7815 42.9379 -Arial_Black.ttf 65 ( 17.4047 56.0000 50 ‘ 0.2059 11.6241 23.2483 -Arial_Black.ttf 65 ( 17.4047 56.0000 51 \ -0.0246 16.3759 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 52 R 1.0414 41.2212 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 53 < 4.8217 32.6267 34.9974 -Arial_Black.ttf 65 ( 17.4047 56.0000 54 4 -0.1651 38.0612 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 55 8 -0.1914 33.8435 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 56 0 -0.0857 33.8435 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 57 A 1.3205 45.5638 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 58 E 1.0382 34.4974 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 59 B 1.3705 38.3112 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 60 v 12.7666 35.8156 30.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 61 k 1.3153 35.5315 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 62 J 1.4085 33.1556 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 63 U 1.3919 39.2150 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 64 j 1.2788 18.3427 54.5621 -Arial_Black.ttf 65 ( 17.4047 56.0000 65 ( -0.0412 17.4047 56.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 66 7 1.4062 33.5935 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 67 § 0.0774 34.2185 55.7500 -Arial_Black.ttf 65 ( 17.4047 56.0000 68 $ -2.6471 35.2815 52.4362 -Arial_Black.ttf 65 ( 17.4047 56.0000 69 € 0.2085 38.1914 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 70 / -0.1553 16.3759 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 71 C -0.1678 39.9082 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 72 * 0.1864 22.1565 20.6224 -Arial_Black.ttf 65 ( 17.4047 56.0000 73 ” 0.0756 25.6241 23.2483 -Arial_Black.ttf 65 ( 17.4047 56.0000 74 ? 0.2591 31.8138 43.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 75 { 0.2526 21.4974 56.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 76 } -0.0342 21.4974 56.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 77 , 31.6221 11.6241 24.1862 -Arial_Black.ttf 65 ( 17.4047 56.0000 78 I 1.1522 12.8121 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 79 ° 0.1271 14.1250 14.1250 -Arial_Black.ttf 65 ( 17.4047 56.0000 80 K 1.3600 43.9668 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 81 H 1.2196 39.2150 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 82 q 11.6171 32.7806 42.9379 -Arial_Black.ttf 65 ( 17.4047 56.0000 83 & 0.2555 46.8820 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 84 ’ 0.3463 11.6241 23.2483 -Arial_Black.ttf 65 ( 17.4047 56.0000 85 [ 1.2065 18.3427 53.6241 -Arial_Black.ttf 65 ( 17.4047 56.0000 86 - 23.1150 16.9047 9.2483 -Arial_Black.ttf 65 ( 17.4047 56.0000 87 Y 0.9686 45.5638 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 88 Q -0.0857 44.1547 48.3435 -Arial_Black.ttf 65 ( 17.4047 56.0000 89 " 1.3160 26.8121 15.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 90 ! 1.2983 11.6241 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 91 x 12.7666 38.6914 30.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 92 ) 0.1339 17.4047 56.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 93 = 10.6324 30.9047 23.2483 -Arial_Black.ttf 65 ( 17.4047 56.0000 94 + 6.3429 31.4388 31.4388 -Arial_Black.ttf 65 ( 17.4047 56.0000 95 X 1.1106 45.1547 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 96 » 14.5681 31.1547 26.4082 -Arial_Black.ttf 65 ( 17.4047 56.0000 97 ' 1.2750 11.6241 15.1879 -Arial_Black.ttf 65 ( 17.4047 56.0000 98 ¢ 1.7011 34.2185 53.2203 -Arial_Black.ttf 65 ( 17.4047 56.0000 99 Z 1.1022 37.3059 42.0000 -Arial_Black.ttf 65 ( 17.4047 56.0000 100 > 4.6332 32.6267 34.9974 -Arial_Black.ttf 65 ( 17.4047 56.0000 101 ® -0.2601 43.9720 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 102 © -0.2151 43.9720 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 103 ] 1.0113 18.3427 53.6241 -Arial_Black.ttf 65 ( 17.4047 56.0000 104 é 0.0270 34.2185 44.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 105 z 12.8811 28.4327 30.3759 -Arial_Black.ttf 65 ( 17.4047 56.0000 106 _ 47.4859 29.1879 2.7797 -Arial_Black.ttf 65 ( 17.4047 56.0000 107 ¥ 1.3205 40.4082 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 1 t -0.1312 22.4353 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 2 h 0.4064 31.8427 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 3 a 10.5972 35.4065 32.7517 -Arial_Black.ttf 66 7 33.5935 42.0000 4 n 10.5674 31.8427 31.5638 -Arial_Black.ttf 66 7 33.5935 42.0000 5 P 0.1391 34.7474 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 6 o 10.5400 34.2185 32.7517 -Arial_Black.ttf 66 7 33.5935 42.0000 7 e 10.0098 34.2185 32.7517 -Arial_Black.ttf 66 7 33.6075 42.0000 8 : 11.7650 11.6371 30.3629 -Arial_Black.ttf 66 7 33.5935 42.0000 9 r 10.1919 23.9073 31.5638 -Arial_Black.ttf 66 7 33.5935 42.0000 10 l 0.1294 11.6241 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 11 i -0.2789 11.6241 42.0000 -Arial_Black.ttf 66 7 33.6075 42.0000 12 1 -1.3228 23.9105 43.1815 -Arial_Black.ttf 66 7 33.6075 42.0000 13 | 0.0068 7.2718 53.3612 -Arial_Black.ttf 66 7 33.5935 42.0000 14 N 0.1497 39.2150 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 15 f -1.3097 23.6233 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 16 g 9.9295 34.2185 44.1259 -Arial_Black.ttf 66 7 33.5935 42.0000 17 d -0.1265 32.7806 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 18 W -0.1326 59.5638 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 19 s 10.5163 31.5638 32.7517 -Arial_Black.ttf 66 7 33.5935 42.0000 20 c 10.5251 34.2185 32.7517 -Arial_Black.ttf 66 7 33.5935 42.0000 21 u 11.4114 31.5927 31.5638 -Arial_Black.ttf 66 7 33.6075 42.0000 22 3 -1.4459 33.8834 44.3629 -Arial_Black.ttf 66 7 33.6075 42.0000 23 ~ 14.0672 32.7258 14.0000 -Arial_Black.ttf 66 7 33.6075 42.0000 24 # -1.2230 35.6338 44.3629 -Arial_Black.ttf 66 7 33.5935 42.0000 25 O -1.2316 42.7168 44.3759 -Arial_Black.ttf 66 7 33.6075 42.0000 26 ` -1.2297 14.6708 8.4532 -Arial_Black.ttf 66 7 33.6075 42.0000 27 @ -0.9687 43.1815 49.5147 -Arial_Black.ttf 66 7 33.5935 42.0000 28 F -0.0217 31.5927 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 29 S -0.9613 37.5323 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 30 p 10.5247 32.7806 42.9379 -Arial_Black.ttf 66 7 33.5935 42.0000 31 “ -1.3664 25.6241 23.2483 -Arial_Black.ttf 66 7 33.5935 42.0000 32 % -1.0229 52.3164 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 33 £ -1.1178 34.8724 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 34 . 30.6150 11.6241 11.6241 -Arial_Black.ttf 66 7 33.5935 42.0000 35 2 -1.3947 33.5935 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 36 5 -0.1269 33.8435 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 37 m 10.3953 51.5035 31.5638 -Arial_Black.ttf 66 7 33.5935 42.0000 38 V -0.2425 45.1547 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 39 6 -1.0893 33.8435 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 40 w 11.6640 54.8121 30.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 41 T -0.1301 38.4362 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 42 M -0.0417 45.8086 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 43 G -0.9997 42.5629 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 44 b -0.1298 32.7806 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 45 9 -0.7944 33.8435 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 46 ; 11.3970 11.6241 42.9379 -Arial_Black.ttf 66 7 33.5935 42.0000 47 D 0.1756 38.3112 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 48 L -0.2568 31.9965 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 49 y 11.5467 35.7815 42.9379 -Arial_Black.ttf 66 7 33.5935 42.0000 50 ‘ -0.8937 11.6241 23.2483 -Arial_Black.ttf 66 7 33.5935 42.0000 51 \ -1.1060 16.3759 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 52 R -0.1637 41.2212 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 53 < 3.2490 32.6267 34.9974 -Arial_Black.ttf 66 7 33.5935 42.0000 54 4 -1.2569 38.0612 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 55 8 -1.3080 33.8435 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 56 0 -1.1237 33.8435 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 57 A 0.0323 45.5638 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 58 E 0.2513 34.4974 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 59 B -0.0038 38.3112 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 60 v 11.5598 35.8156 30.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 61 k 0.0811 35.5315 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 62 J 0.2624 33.1556 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 63 U 0.1891 39.2150 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 64 j -0.1249 18.3427 54.5621 -Arial_Black.ttf 66 7 33.5935 42.0000 65 ( -0.9042 17.4047 56.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 66 7 -0.1056 33.5935 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 67 § -1.3252 34.2185 55.7500 -Arial_Black.ttf 66 7 33.5935 42.0000 68 $ -4.0414 35.2815 52.4362 -Arial_Black.ttf 66 7 33.5935 42.0000 69 € -0.8070 38.1914 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 70 / -1.1397 16.3759 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 71 C -1.2797 39.9082 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 72 * -1.4450 22.1565 20.6224 -Arial_Black.ttf 66 7 33.5935 42.0000 73 ” -1.3251 25.6241 23.2483 -Arial_Black.ttf 66 7 33.5935 42.0000 74 ? -1.1847 31.8138 43.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 75 { -1.1086 21.4974 56.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 76 } -1.0409 21.4974 56.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 77 , 30.1626 11.6241 24.1862 -Arial_Black.ttf 66 7 33.5935 42.0000 78 I -0.2443 12.8121 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 79 ° -1.4829 14.1250 14.1250 -Arial_Black.ttf 66 7 33.5935 42.0000 80 K 0.2164 43.9668 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 81 H 0.0389 39.2150 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 82 q 10.2656 32.7806 42.9379 -Arial_Black.ttf 66 7 33.5935 42.0000 83 & -1.3867 46.8820 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 84 ’ -0.8543 11.6241 23.2483 -Arial_Black.ttf 66 7 33.5935 42.0000 85 [ 0.2925 18.3427 53.6241 -Arial_Black.ttf 66 7 33.5935 42.0000 86 - 22.0826 16.9047 9.2483 -Arial_Black.ttf 66 7 33.5935 42.0000 87 Y -0.0284 45.5638 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 88 Q -1.0193 44.1547 48.3435 -Arial_Black.ttf 66 7 33.5935 42.0000 89 " -0.1567 26.8121 15.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 90 ! -0.1284 11.6241 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 91 x 11.5579 38.6914 30.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 92 ) -1.1477 17.4047 56.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 93 = 9.6288 30.9047 23.2483 -Arial_Black.ttf 66 7 33.5935 42.0000 94 + 5.0942 31.4388 31.4388 -Arial_Black.ttf 66 7 33.5935 42.0000 95 X 0.1568 45.1547 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 96 » 13.5464 31.1547 26.4082 -Arial_Black.ttf 66 7 33.5935 42.0000 97 ' 0.0427 11.6241 15.1879 -Arial_Black.ttf 66 7 33.5935 42.0000 98 ¢ 0.5776 34.2185 53.2203 -Arial_Black.ttf 66 7 33.5935 42.0000 99 Z -0.0579 37.3059 42.0000 -Arial_Black.ttf 66 7 33.5935 42.0000 100 > 3.7737 32.6267 34.9974 -Arial_Black.ttf 66 7 33.5935 42.0000 101 ® -0.9624 43.9720 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 102 © -0.7237 43.9720 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 103 ] 0.0004 18.3427 53.6241 -Arial_Black.ttf 66 7 33.5935 42.0000 104 é -1.0995 34.2185 44.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 105 z 11.4610 28.4327 30.3759 -Arial_Black.ttf 66 7 33.5935 42.0000 106 _ 46.1024 29.1879 2.7797 -Arial_Black.ttf 66 7 33.5935 42.0000 107 ¥ -0.2415 40.4082 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 1 t 1.2844 22.4353 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 2 h 1.1713 31.8427 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 3 a 11.8143 35.4065 32.7517 -Arial_Black.ttf 67 § 34.2185 55.7500 4 n 11.6357 31.8427 31.5638 -Arial_Black.ttf 67 § 34.2185 55.7500 5 P 1.1171 34.7474 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 6 o 11.5430 34.2185 32.7517 -Arial_Black.ttf 67 § 34.2185 55.7500 7 e 11.6153 34.2185 32.7517 -Arial_Black.ttf 67 § 34.2455 55.7241 8 : 13.1918 11.6371 30.3629 -Arial_Black.ttf 67 § 34.2185 55.7500 9 r 11.6510 23.9073 31.5638 -Arial_Black.ttf 67 § 34.2185 55.7500 10 l 1.1527 11.6241 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 11 i 1.3349 11.6241 42.0000 -Arial_Black.ttf 67 § 34.2455 55.7241 12 1 0.1741 23.9105 43.1815 -Arial_Black.ttf 67 § 34.2455 55.7241 13 | 0.9146 7.2718 53.3612 -Arial_Black.ttf 67 § 34.2185 55.7500 14 N 1.1013 39.2150 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 15 f 0.1774 23.6233 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 16 g 11.6945 34.2185 44.1259 -Arial_Black.ttf 67 § 34.2185 55.7500 17 d 1.2361 32.7806 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 18 W 1.1751 59.5638 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 19 s 11.4114 31.5638 32.7517 -Arial_Black.ttf 67 § 34.2185 55.7500 20 c 11.3126 34.2185 32.7517 -Arial_Black.ttf 67 § 34.2185 55.7500 21 u 12.7894 31.5927 31.5638 -Arial_Black.ttf 67 § 34.2455 55.7241 22 3 -0.0402 33.8834 44.3629 -Arial_Black.ttf 67 § 34.2455 55.7241 23 ~ 15.2983 32.7258 14.0000 -Arial_Black.ttf 67 § 34.2455 55.7241 24 # 0.0806 35.6338 44.3629 -Arial_Black.ttf 67 § 34.2185 55.7500 25 O -0.1131 42.7168 44.3759 -Arial_Black.ttf 67 § 34.2455 55.7241 26 ` 0.0699 14.6708 8.4532 -Arial_Black.ttf 67 § 34.2455 55.7241 27 @ -0.0396 43.1815 49.5147 -Arial_Black.ttf 67 § 34.2185 55.7500 28 F 0.9836 31.5927 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 29 S 0.1690 37.5323 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 30 p 11.8228 32.7806 42.9379 -Arial_Black.ttf 67 § 34.2185 55.7500 31 “ -0.2363 25.6241 23.2483 -Arial_Black.ttf 67 § 34.2185 55.7500 32 % -0.0909 52.3164 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 33 £ -0.1200 34.8724 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 34 . 31.6425 11.6241 11.6241 -Arial_Black.ttf 67 § 34.2185 55.7500 35 2 -0.0070 33.5935 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 36 5 1.1019 33.8435 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 37 m 11.6251 51.5035 31.5638 -Arial_Black.ttf 67 § 34.2185 55.7500 38 V 0.9269 45.1547 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 39 6 0.0570 33.8435 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 40 w 12.9432 54.8121 30.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 41 T 1.2742 38.4362 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 42 M 1.2208 45.8086 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 43 G 0.0379 42.5629 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 44 b 1.0973 32.7806 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 45 9 -0.1204 33.8435 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 46 ; 12.9779 11.6241 42.9379 -Arial_Black.ttf 67 § 34.2185 55.7500 47 D 1.1096 38.3112 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 48 L 1.1636 31.9965 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 49 y 12.9386 35.7815 42.9379 -Arial_Black.ttf 67 § 34.2185 55.7500 50 ‘ -0.2105 11.6241 23.2483 -Arial_Black.ttf 67 § 34.2185 55.7500 51 \ -0.1344 16.3759 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 52 R 1.0184 41.2212 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 53 < 4.7025 32.6267 34.9974 -Arial_Black.ttf 67 § 34.2185 55.7500 54 4 -0.0839 38.0612 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 55 8 0.0784 33.8435 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 56 0 0.0830 33.8435 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 57 A 1.2653 45.5638 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 58 E 1.2866 34.4974 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 59 B 1.3399 38.3112 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 60 v 12.6578 35.8156 30.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 61 k 1.4280 35.5315 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 62 J 1.5245 33.1556 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 63 U 1.0248 39.2150 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 64 j 1.3162 18.3427 54.5621 -Arial_Black.ttf 67 § 34.2185 55.7500 65 ( -0.1769 17.4047 56.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 66 7 1.1967 33.5935 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 67 § -0.0423 34.2185 55.7500 -Arial_Black.ttf 67 § 34.2185 55.7500 68 $ -3.1143 35.2815 52.4362 -Arial_Black.ttf 67 § 34.2185 55.7500 69 € 0.0301 38.1914 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 70 / -0.1683 16.3759 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 71 C -0.2183 39.9082 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 72 * -0.0066 22.1565 20.6224 -Arial_Black.ttf 67 § 34.2185 55.7500 73 ” 0.3578 25.6241 23.2483 -Arial_Black.ttf 67 § 34.2185 55.7500 74 ? -0.1294 31.8138 43.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 75 { 0.2548 21.4974 56.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 76 } -0.2429 21.4974 56.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 77 , 31.4044 11.6241 24.1862 -Arial_Black.ttf 67 § 34.2185 55.7500 78 I 1.3895 12.8121 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 79 ° -0.3262 14.1250 14.1250 -Arial_Black.ttf 67 § 34.2185 55.7500 80 K 1.2537 43.9668 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 81 H 0.9719 39.2150 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 82 q 11.7103 32.7806 42.9379 -Arial_Black.ttf 67 § 34.2185 55.7500 83 & -0.1201 46.8820 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 84 ’ -0.1252 11.6241 23.2483 -Arial_Black.ttf 67 § 34.2185 55.7500 85 [ 1.2015 18.3427 53.6241 -Arial_Black.ttf 67 § 34.2185 55.7500 86 - 23.2104 16.9047 9.2483 -Arial_Black.ttf 67 § 34.2185 55.7500 87 Y 1.1008 45.5638 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 88 Q -0.2405 44.1547 48.3435 -Arial_Black.ttf 67 § 34.2185 55.7500 89 " 1.3778 26.8121 15.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 90 ! 0.9108 11.6241 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 91 x 12.9131 38.6914 30.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 92 ) 0.0347 17.4047 56.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 93 = 10.5574 30.9047 23.2483 -Arial_Black.ttf 67 § 34.2185 55.7500 94 + 6.5140 31.4388 31.4388 -Arial_Black.ttf 67 § 34.2185 55.7500 95 X 1.0350 45.1547 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 96 » 14.6418 31.1547 26.4082 -Arial_Black.ttf 67 § 34.2185 55.7500 97 ' 1.2167 11.6241 15.1879 -Arial_Black.ttf 67 § 34.2185 55.7500 98 ¢ 1.3350 34.2185 53.2203 -Arial_Black.ttf 67 § 34.2185 55.7500 99 Z 0.9914 37.3059 42.0000 -Arial_Black.ttf 67 § 34.2185 55.7500 100 > 4.2521 32.6267 34.9974 -Arial_Black.ttf 67 § 34.2185 55.7500 101 ® 0.0742 43.9720 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 102 © -0.0635 43.9720 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 103 ] 1.1855 18.3427 53.6241 -Arial_Black.ttf 67 § 34.2185 55.7500 104 é 0.0395 34.2185 44.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 105 z 12.9057 28.4327 30.3759 -Arial_Black.ttf 67 § 34.2185 55.7500 106 _ 47.3090 29.1879 2.7797 -Arial_Black.ttf 67 § 34.2185 55.7500 107 ¥ 0.9183 40.4082 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 1 t 3.7564 22.4353 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 2 h 3.7470 31.8427 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 3 a 14.6137 35.4065 32.7517 -Arial_Black.ttf 68 $ 35.2815 52.4362 4 n 14.3941 31.8427 31.5638 -Arial_Black.ttf 68 $ 35.2815 52.4362 5 P 4.3983 34.7474 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 6 o 14.2447 34.2185 32.7517 -Arial_Black.ttf 68 $ 35.2815 52.4362 7 e 14.5627 34.2185 32.7517 -Arial_Black.ttf 68 $ 35.2718 52.4211 8 : 15.5258 11.6371 30.3629 -Arial_Black.ttf 68 $ 35.2815 52.4362 9 r 14.4873 23.9073 31.5638 -Arial_Black.ttf 68 $ 35.2815 52.4362 10 l 4.1262 11.6241 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 11 i 3.8518 11.6241 42.0000 -Arial_Black.ttf 68 $ 35.2718 52.4211 12 1 2.6607 23.9105 43.1815 -Arial_Black.ttf 68 $ 35.2718 52.4211 13 | 4.1663 7.2718 53.3612 -Arial_Black.ttf 68 $ 35.2815 52.4362 14 N 4.1300 39.2150 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 15 f 2.6569 23.6233 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 16 g 14.7863 34.2185 44.1259 -Arial_Black.ttf 68 $ 35.2815 52.4362 17 d 4.0405 32.7806 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 18 W 3.7521 59.5638 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 19 s 14.4920 31.5638 32.7517 -Arial_Black.ttf 68 $ 35.2815 52.4362 20 c 14.2120 34.2185 32.7517 -Arial_Black.ttf 68 $ 35.2815 52.4362 21 u 15.7874 31.5927 31.5638 -Arial_Black.ttf 68 $ 35.2718 52.4211 22 3 2.7206 33.8834 44.3629 -Arial_Black.ttf 68 $ 35.2718 52.4211 23 ~ 17.8107 32.7258 14.0000 -Arial_Black.ttf 68 $ 35.2718 52.4211 24 # 2.7442 35.6338 44.3629 -Arial_Black.ttf 68 $ 35.2815 52.4362 25 O 2.7195 42.7168 44.3759 -Arial_Black.ttf 68 $ 35.2718 52.4211 26 ` 2.5421 14.6708 8.4532 -Arial_Black.ttf 68 $ 35.2718 52.4211 27 @ 2.7900 43.1815 49.5147 -Arial_Black.ttf 68 $ 35.2815 52.4362 28 F 3.8925 31.5927 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 29 S 2.4001 37.5323 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 30 p 14.1068 32.7806 42.9379 -Arial_Black.ttf 68 $ 35.2815 52.4362 31 “ 2.6593 25.6241 23.2483 -Arial_Black.ttf 68 $ 35.2815 52.4362 32 % 2.8808 52.3164 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 33 £ 2.4006 34.8724 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 34 . 34.2106 11.6241 11.6241 -Arial_Black.ttf 68 $ 35.2815 52.4362 35 2 2.6041 33.5935 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 36 5 4.1488 33.8435 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 37 m 14.4832 51.5035 31.5638 -Arial_Black.ttf 68 $ 35.2815 52.4362 38 V 3.9312 45.1547 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 39 6 2.5494 33.8435 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 40 w 15.0402 54.8121 30.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 41 T 3.9488 38.4362 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 42 M 3.8625 45.8086 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 43 G 2.6823 42.5629 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 44 b 4.1330 32.7806 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 45 9 2.7857 33.8435 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 46 ; 15.7605 11.6241 42.9379 -Arial_Black.ttf 68 $ 35.2815 52.4362 47 D 3.9875 38.3112 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 48 L 3.7044 31.9965 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 49 y 15.5950 35.7815 42.9379 -Arial_Black.ttf 68 $ 35.2815 52.4362 50 ‘ 2.9095 11.6241 23.2483 -Arial_Black.ttf 68 $ 35.2815 52.4362 51 \ 2.7849 16.3759 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 52 R 4.2619 41.2212 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 53 < 7.1900 32.6267 34.9974 -Arial_Black.ttf 68 $ 35.2815 52.4362 54 4 2.7849 38.0612 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 55 8 2.4224 33.8435 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 56 0 2.6404 33.8435 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 57 A 3.9209 45.5638 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 58 E 4.4335 34.4974 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 59 B 3.9319 38.3112 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 60 v 15.6784 35.8156 30.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 61 k 3.9645 35.5315 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 62 J 4.0149 33.1556 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 63 U 4.0326 39.2150 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 64 j 4.2624 18.3427 54.5621 -Arial_Black.ttf 68 $ 35.2815 52.4362 65 ( 2.5698 17.4047 56.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 66 7 4.0061 33.5935 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 67 § 3.1052 34.2185 55.7500 -Arial_Black.ttf 68 $ 35.2815 52.4362 68 $ -0.2326 35.2815 52.4362 -Arial_Black.ttf 68 $ 35.2815 52.4362 69 € 2.7286 38.1914 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 70 / 2.7186 16.3759 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 71 C 2.8171 39.9082 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 72 * 3.0518 22.1565 20.6224 -Arial_Black.ttf 68 $ 35.2815 52.4362 73 ” 2.6216 25.6241 23.2483 -Arial_Black.ttf 68 $ 35.2815 52.4362 74 ? 2.7107 31.8138 43.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 75 { 2.6712 21.4974 56.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 76 } 2.8817 21.4974 56.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 77 , 34.1830 11.6241 24.1862 -Arial_Black.ttf 68 $ 35.2815 52.4362 78 I 4.0344 12.8121 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 79 ° 3.1166 14.1250 14.1250 -Arial_Black.ttf 68 $ 35.2815 52.4362 80 K 3.8822 43.9668 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 81 H 3.9598 39.2150 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 82 q 14.7983 32.7806 42.9379 -Arial_Black.ttf 68 $ 35.2815 52.4362 83 & 2.8162 46.8820 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 84 ’ 2.4789 11.6241 23.2483 -Arial_Black.ttf 68 $ 35.2815 52.4362 85 [ 3.7901 18.3427 53.6241 -Arial_Black.ttf 68 $ 35.2815 52.4362 86 - 25.9475 16.9047 9.2483 -Arial_Black.ttf 68 $ 35.2815 52.4362 87 Y 3.6437 45.5638 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 88 Q 3.1124 44.1547 48.3435 -Arial_Black.ttf 68 $ 35.2815 52.4362 89 " 3.8111 26.8121 15.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 90 ! 3.8962 11.6241 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 91 x 15.7094 38.6914 30.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 92 ) 2.9645 17.4047 56.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 93 = 13.4747 30.9047 23.2483 -Arial_Black.ttf 68 $ 35.2815 52.4362 94 + 9.2218 31.4388 31.4388 -Arial_Black.ttf 68 $ 35.2815 52.4362 95 X 3.9284 45.1547 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 96 » 17.2486 31.1547 26.4082 -Arial_Black.ttf 68 $ 35.2815 52.4362 97 ' 4.1393 11.6241 15.1879 -Arial_Black.ttf 68 $ 35.2815 52.4362 98 ¢ 4.5185 34.2185 53.2203 -Arial_Black.ttf 68 $ 35.2815 52.4362 99 Z 3.6630 37.3059 42.0000 -Arial_Black.ttf 68 $ 35.2815 52.4362 100 > 7.3209 32.6267 34.9974 -Arial_Black.ttf 68 $ 35.2815 52.4362 101 ® 2.6996 43.9720 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 102 © 2.7343 43.9720 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 103 ] 4.0659 18.3427 53.6241 -Arial_Black.ttf 68 $ 35.2815 52.4362 104 é 2.6486 34.2185 44.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 105 z 15.6062 28.4327 30.3759 -Arial_Black.ttf 68 $ 35.2815 52.4362 106 _ 49.9486 29.1879 2.7797 -Arial_Black.ttf 68 $ 35.2815 52.4362 107 ¥ 3.6103 40.4082 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 1 t 1.2631 22.4353 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 2 h 1.0229 31.8427 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 3 a 11.5259 35.4065 32.7517 -Arial_Black.ttf 69 € 38.1914 44.3759 4 n 11.5857 31.8427 31.5638 -Arial_Black.ttf 69 € 38.1914 44.3759 5 P 0.8756 34.7474 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 6 o 11.6825 34.2185 32.7517 -Arial_Black.ttf 69 € 38.1914 44.3759 7 e 11.6300 34.2185 32.7517 -Arial_Black.ttf 69 € 38.1503 44.3629 8 : 13.0293 11.6371 30.3629 -Arial_Black.ttf 69 € 38.1914 44.3759 9 r 11.4735 23.9073 31.5638 -Arial_Black.ttf 69 € 38.1914 44.3759 10 l 0.9326 11.6241 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 11 i 1.1379 11.6241 42.0000 -Arial_Black.ttf 69 € 38.1503 44.3629 12 1 -0.2009 23.9105 43.1815 -Arial_Black.ttf 69 € 38.1503 44.3629 13 | 1.2588 7.2718 53.3612 -Arial_Black.ttf 69 € 38.1914 44.3759 14 N 1.1457 39.2150 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 15 f -0.0780 23.6233 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 16 g 11.6910 34.2185 44.1259 -Arial_Black.ttf 69 € 38.1914 44.3759 17 d 1.0423 32.7806 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 18 W 1.1120 59.5638 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 19 s 11.5755 31.5638 32.7517 -Arial_Black.ttf 69 € 38.1914 44.3759 20 c 11.6273 34.2185 32.7517 -Arial_Black.ttf 69 € 38.1914 44.3759 21 u 12.7392 31.5927 31.5638 -Arial_Black.ttf 69 € 38.1503 44.3629 22 3 0.0542 33.8834 44.3629 -Arial_Black.ttf 69 € 38.1503 44.3629 23 ~ 15.2507 32.7258 14.0000 -Arial_Black.ttf 69 € 38.1503 44.3629 24 # 0.1714 35.6338 44.3629 -Arial_Black.ttf 69 € 38.1914 44.3759 25 O -0.1202 42.7168 44.3759 -Arial_Black.ttf 69 € 38.1503 44.3629 26 ` 0.3453 14.6708 8.4532 -Arial_Black.ttf 69 € 38.1503 44.3629 27 @ 0.1310 43.1815 49.5147 -Arial_Black.ttf 69 € 38.1914 44.3759 28 F 1.3994 31.5927 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 29 S 0.2555 37.5323 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 30 p 11.5971 32.7806 42.9379 -Arial_Black.ttf 69 € 38.1914 44.3759 31 “ 0.0830 25.6241 23.2483 -Arial_Black.ttf 69 € 38.1914 44.3759 32 % -0.0973 52.3164 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 33 £ 0.2712 34.8724 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 34 . 31.2603 11.6241 11.6241 -Arial_Black.ttf 69 € 38.1914 44.3759 35 2 0.1308 33.5935 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 36 5 0.8487 33.8435 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 37 m 11.5787 51.5035 31.5638 -Arial_Black.ttf 69 € 38.1914 44.3759 38 V 1.2629 45.1547 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 39 6 0.1235 33.8435 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 40 w 12.8228 54.8121 30.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 41 T 1.3413 38.4362 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 42 M 1.1305 45.8086 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 43 G 0.0778 42.5629 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 44 b 1.4155 32.7806 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 45 9 -0.0395 33.8435 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 46 ; 12.5492 11.6241 42.9379 -Arial_Black.ttf 69 € 38.1914 44.3759 47 D 1.0663 38.3112 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 48 L 0.9279 31.9965 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 49 y 12.5410 35.7815 42.9379 -Arial_Black.ttf 69 € 38.1914 44.3759 50 ‘ 0.0343 11.6241 23.2483 -Arial_Black.ttf 69 € 38.1914 44.3759 51 \ 0.2210 16.3759 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 52 R 1.1782 41.2212 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 53 < 4.6479 32.6267 34.9974 -Arial_Black.ttf 69 € 38.1914 44.3759 54 4 -0.3884 38.0612 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 55 8 -0.0305 33.8435 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 56 0 -0.2852 33.8435 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 57 A 0.8821 45.5638 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 58 E 1.0234 34.4974 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 59 B 1.1841 38.3112 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 60 v 12.9785 35.8156 30.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 61 k 1.3640 35.5315 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 62 J 1.6130 33.1556 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 63 U 1.2726 39.2150 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 64 j 0.9280 18.3427 54.5621 -Arial_Black.ttf 69 € 38.1914 44.3759 65 ( 0.2980 17.4047 56.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 66 7 1.3447 33.5935 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 67 § 0.2823 34.2185 55.7500 -Arial_Black.ttf 69 € 38.1914 44.3759 68 $ -2.9383 35.2815 52.4362 -Arial_Black.ttf 69 € 38.1914 44.3759 69 € -0.1841 38.1914 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 70 / 0.0774 16.3759 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 71 C 0.0237 39.9082 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 72 * -0.0685 22.1565 20.6224 -Arial_Black.ttf 69 € 38.1914 44.3759 73 ” 0.5384 25.6241 23.2483 -Arial_Black.ttf 69 € 38.1914 44.3759 74 ? -0.4519 31.8138 43.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 75 { 0.2158 21.4974 56.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 76 } 0.0410 21.4974 56.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 77 , 31.5166 11.6241 24.1862 -Arial_Black.ttf 69 € 38.1914 44.3759 78 I 1.1963 12.8121 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 79 ° -0.0117 14.1250 14.1250 -Arial_Black.ttf 69 € 38.1914 44.3759 80 K 1.2334 43.9668 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 81 H 0.9266 39.2150 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 82 q 11.5607 32.7806 42.9379 -Arial_Black.ttf 69 € 38.1914 44.3759 83 & -0.1287 46.8820 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 84 ’ -0.2379 11.6241 23.2483 -Arial_Black.ttf 69 € 38.1914 44.3759 85 [ 0.9826 18.3427 53.6241 -Arial_Black.ttf 69 € 38.1914 44.3759 86 - 23.3022 16.9047 9.2483 -Arial_Black.ttf 69 € 38.1914 44.3759 87 Y 1.3205 45.5638 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 88 Q 0.0454 44.1547 48.3435 -Arial_Black.ttf 69 € 38.1914 44.3759 89 " 1.1008 26.8121 15.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 90 ! 1.2158 11.6241 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 91 x 12.8955 38.6914 30.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 92 ) 0.0922 17.4047 56.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 93 = 10.4952 30.9047 23.2483 -Arial_Black.ttf 69 € 38.1914 44.3759 94 + 6.5969 31.4388 31.4388 -Arial_Black.ttf 69 € 38.1914 44.3759 95 X 1.3205 45.1547 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 96 » 14.6368 31.1547 26.4082 -Arial_Black.ttf 69 € 38.1914 44.3759 97 ' 1.3887 11.6241 15.1879 -Arial_Black.ttf 69 € 38.1914 44.3759 98 ¢ 1.2595 34.2185 53.2203 -Arial_Black.ttf 69 € 38.1914 44.3759 99 Z 1.0470 37.3059 42.0000 -Arial_Black.ttf 69 € 38.1914 44.3759 100 > 4.6498 32.6267 34.9974 -Arial_Black.ttf 69 € 38.1914 44.3759 101 ® -0.2472 43.9720 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 102 © 0.2977 43.9720 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 103 ] 0.9479 18.3427 53.6241 -Arial_Black.ttf 69 € 38.1914 44.3759 104 é 0.3320 34.2185 44.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 105 z 12.5183 28.4327 30.3759 -Arial_Black.ttf 69 € 38.1914 44.3759 106 _ 47.1953 29.1879 2.7797 -Arial_Black.ttf 69 € 38.1914 44.3759 107 ¥ 1.3234 40.4082 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 1 t 1.0386 22.4353 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 2 h 1.1603 31.8427 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 3 a 11.6598 35.4065 32.7517 -Arial_Black.ttf 70 / 16.3759 44.3759 4 n 11.7539 31.8427 31.5638 -Arial_Black.ttf 70 / 16.3759 44.3759 5 P 1.4024 34.7474 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 6 o 11.3799 34.2185 32.7517 -Arial_Black.ttf 70 / 16.3759 44.3759 7 e 11.7088 34.2185 32.7517 -Arial_Black.ttf 70 / 16.3629 44.3629 8 : 13.0557 11.6371 30.3629 -Arial_Black.ttf 70 / 16.3759 44.3759 9 r 11.8787 23.9073 31.5638 -Arial_Black.ttf 70 / 16.3759 44.3759 10 l 1.2237 11.6241 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 11 i 1.2483 11.6241 42.0000 -Arial_Black.ttf 70 / 16.3629 44.3629 12 1 0.1074 23.9105 43.1815 -Arial_Black.ttf 70 / 16.3629 44.3629 13 | 1.0616 7.2718 53.3612 -Arial_Black.ttf 70 / 16.3759 44.3759 14 N 1.1527 39.2150 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 15 f 0.0927 23.6233 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 16 g 11.7924 34.2185 44.1259 -Arial_Black.ttf 70 / 16.3759 44.3759 17 d 1.3243 32.7806 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 18 W 0.9214 59.5638 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 19 s 11.5964 31.5638 32.7517 -Arial_Black.ttf 70 / 16.3759 44.3759 20 c 11.6633 34.2185 32.7517 -Arial_Black.ttf 70 / 16.3759 44.3759 21 u 12.7449 31.5927 31.5638 -Arial_Black.ttf 70 / 16.3629 44.3629 22 3 0.0469 33.8834 44.3629 -Arial_Black.ttf 70 / 16.3629 44.3629 23 ~ 15.2773 32.7258 14.0000 -Arial_Black.ttf 70 / 16.3629 44.3629 24 # 0.3172 35.6338 44.3629 -Arial_Black.ttf 70 / 16.3759 44.3759 25 O 0.2484 42.7168 44.3759 -Arial_Black.ttf 70 / 16.3629 44.3629 26 ` -0.3634 14.6708 8.4532 -Arial_Black.ttf 70 / 16.3629 44.3629 27 @ -0.1611 43.1815 49.5147 -Arial_Black.ttf 70 / 16.3759 44.3759 28 F 1.1907 31.5927 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 29 S 0.1631 37.5323 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 30 p 11.6115 32.7806 42.9379 -Arial_Black.ttf 70 / 16.3759 44.3759 31 “ 0.0857 25.6241 23.2483 -Arial_Black.ttf 70 / 16.3759 44.3759 32 % 0.1581 52.3164 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 33 £ 0.2151 34.8724 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 34 . 31.6193 11.6241 11.6241 -Arial_Black.ttf 70 / 16.3759 44.3759 35 2 0.1228 33.5935 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 36 5 0.7276 33.8435 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 37 m 11.8684 51.5035 31.5638 -Arial_Black.ttf 70 / 16.3759 44.3759 38 V 1.1769 45.1547 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 39 6 -0.0176 33.8435 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 40 w 12.8928 54.8121 30.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 41 T 1.4405 38.4362 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 42 M 1.3594 45.8086 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 43 G -0.0409 42.5629 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 44 b 1.2709 32.7806 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 45 9 -0.1821 33.8435 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 46 ; 12.7981 11.6241 42.9379 -Arial_Black.ttf 70 / 16.3759 44.3759 47 D 1.3264 38.3112 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 48 L 1.0113 31.9965 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 49 y 13.0168 35.7815 42.9379 -Arial_Black.ttf 70 / 16.3759 44.3759 50 ‘ -0.1909 11.6241 23.2483 -Arial_Black.ttf 70 / 16.3759 44.3759 51 \ -0.1339 16.3759 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 52 R 1.1806 41.2212 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 53 < 4.6026 32.6267 34.9974 -Arial_Black.ttf 70 / 16.3759 44.3759 54 4 0.0000 38.0612 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 55 8 0.0903 33.8435 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 56 0 -0.0455 33.8435 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 57 A 1.1138 45.5638 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 58 E 1.1983 34.4974 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 59 B 1.1977 38.3112 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 60 v 12.9766 35.8156 30.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 61 k 1.4052 35.5315 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 62 J 1.3103 33.1556 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 63 U 1.1379 39.2150 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 64 j 1.1068 18.3427 54.5621 -Arial_Black.ttf 70 / 16.3759 44.3759 65 ( 0.2809 17.4047 56.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 66 7 1.1809 33.5935 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 67 § 0.2581 34.2185 55.7500 -Arial_Black.ttf 70 / 16.3759 44.3759 68 $ -2.9833 35.2815 52.4362 -Arial_Black.ttf 70 / 16.3759 44.3759 69 € -0.2266 38.1914 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 70 / 0.1529 16.3759 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 71 C -0.0455 39.9082 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 72 * 0.0912 22.1565 20.6224 -Arial_Black.ttf 70 / 16.3759 44.3759 73 ” 0.0185 25.6241 23.2483 -Arial_Black.ttf 70 / 16.3759 44.3759 74 ? 0.1724 31.8138 43.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 75 { 0.0821 21.4974 56.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 76 } 0.1626 21.4974 56.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 77 , 31.6407 11.6241 24.1862 -Arial_Black.ttf 70 / 16.3759 44.3759 78 I 0.9747 12.8121 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 79 ° 0.1626 14.1250 14.1250 -Arial_Black.ttf 70 / 16.3759 44.3759 80 K 1.1545 43.9668 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 81 H 1.2379 39.2150 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 82 q 11.5689 32.7806 42.9379 -Arial_Black.ttf 70 / 16.3759 44.3759 83 & 0.0408 46.8820 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 84 ’ -0.0403 11.6241 23.2483 -Arial_Black.ttf 70 / 16.3759 44.3759 85 [ 1.2611 18.3427 53.6241 -Arial_Black.ttf 70 / 16.3759 44.3759 86 - 23.1821 16.9047 9.2483 -Arial_Black.ttf 70 / 16.3759 44.3759 87 Y 1.0196 45.5638 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 88 Q 0.0097 44.1547 48.3435 -Arial_Black.ttf 70 / 16.3759 44.3759 89 " 1.5573 26.8121 15.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 90 ! 1.3076 11.6241 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 91 x 12.6841 38.6914 30.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 92 ) 0.0593 17.4047 56.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 93 = 10.6945 30.9047 23.2483 -Arial_Black.ttf 70 / 16.3759 44.3759 94 + 6.3100 31.4388 31.4388 -Arial_Black.ttf 70 / 16.3759 44.3759 95 X 1.0949 45.1547 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 96 » 14.7280 31.1547 26.4082 -Arial_Black.ttf 70 / 16.3759 44.3759 97 ' 1.2379 11.6241 15.1879 -Arial_Black.ttf 70 / 16.3759 44.3759 98 ¢ 1.6687 34.2185 53.2203 -Arial_Black.ttf 70 / 16.3759 44.3759 99 Z 1.4734 37.3059 42.0000 -Arial_Black.ttf 70 / 16.3759 44.3759 100 > 4.9061 32.6267 34.9974 -Arial_Black.ttf 70 / 16.3759 44.3759 101 ® 0.0417 43.9720 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 102 © -0.0843 43.9720 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 103 ] 1.2848 18.3427 53.6241 -Arial_Black.ttf 70 / 16.3759 44.3759 104 é -0.2601 34.2185 44.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 105 z 12.4427 28.4327 30.3759 -Arial_Black.ttf 70 / 16.3759 44.3759 106 _ 47.2741 29.1879 2.7797 -Arial_Black.ttf 70 / 16.3759 44.3759 107 ¥ 1.3548 40.4082 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 1 t 1.2791 22.4353 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 2 h 1.1492 31.8427 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 3 a 11.5735 35.4065 32.7517 -Arial_Black.ttf 71 C 39.9082 44.3759 4 n 11.8295 31.8427 31.5638 -Arial_Black.ttf 71 C 39.9082 44.3759 5 P 0.8153 34.7474 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 6 o 11.7275 34.2185 32.7517 -Arial_Black.ttf 71 C 39.9082 44.3759 7 e 11.6863 34.2185 32.7517 -Arial_Black.ttf 71 C 39.9082 44.3759 8 : 12.5374 11.6241 30.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 9 r 11.3576 23.9073 31.5638 -Arial_Black.ttf 71 C 39.9082 44.3759 10 l 0.8140 11.6241 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 11 i 1.2621 11.6241 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 12 1 0.0265 23.9073 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 13 | 1.6510 7.2815 53.3741 -Arial_Black.ttf 71 C 39.9082 44.3759 14 N 1.3024 39.2150 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 15 f 0.0455 23.6233 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 16 g 11.4101 34.2185 44.1259 -Arial_Black.ttf 71 C 39.9082 44.3759 17 d 1.1422 32.7806 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 18 W 0.9593 59.5638 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 19 s 11.3948 31.5638 32.7517 -Arial_Black.ttf 71 C 39.9082 44.3759 20 c 11.6621 34.2185 32.7517 -Arial_Black.ttf 71 C 39.9082 44.3759 21 u 12.7160 31.5927 31.5638 -Arial_Black.ttf 71 C 39.9082 44.3759 22 3 0.0038 33.8435 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 23 ~ 15.2876 32.7517 14.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 24 # 0.1192 35.6565 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 25 O -0.0226 42.7168 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 26 ` 0.0611 14.6591 8.4694 -Arial_Black.ttf 71 C 39.9082 44.3759 27 @ -0.0470 43.1879 49.4974 -Arial_Black.ttf 71 C 39.9082 44.3759 28 F 1.1783 31.5927 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 29 S 0.0844 37.5323 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 30 p 11.7340 32.7806 42.9379 -Arial_Black.ttf 71 C 39.9082 44.3759 31 “ -0.3578 25.6241 23.2483 -Arial_Black.ttf 71 C 39.9082 44.3759 32 % -0.4394 52.3164 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 33 £ 0.1353 34.8724 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 34 . 31.5435 11.6241 11.6241 -Arial_Black.ttf 71 C 39.9082 44.3759 35 2 -0.3026 33.5935 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 36 5 1.0939 33.8435 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 37 m 11.7642 51.5035 31.5638 -Arial_Black.ttf 71 C 39.9082 44.3759 38 V 1.2135 45.1547 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 39 6 0.3244 33.8435 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 40 w 12.6795 54.8121 30.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 41 T 1.2240 38.4362 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 42 M 1.3542 45.8086 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 43 G -0.1909 42.5629 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 44 b 1.1411 32.7806 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 45 9 0.0399 33.8435 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 46 ; 12.8710 11.6241 42.9379 -Arial_Black.ttf 71 C 39.9082 44.3759 47 D 1.2267 38.3112 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 48 L 0.8927 31.9965 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 49 y 13.0414 35.7815 42.9379 -Arial_Black.ttf 71 C 39.9082 44.3759 50 ‘ -0.0013 11.6241 23.2483 -Arial_Black.ttf 71 C 39.9082 44.3759 51 \ 0.0892 16.3759 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 52 R 0.9896 41.2212 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 53 < 4.9272 32.6267 34.9974 -Arial_Black.ttf 71 C 39.9082 44.3759 54 4 0.0552 38.0612 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 55 8 -0.0839 33.8435 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 56 0 -0.0185 33.8435 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 57 A 0.9326 45.5638 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 58 E 0.9794 34.4974 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 59 B 1.3357 38.3112 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 60 v 12.8752 35.8156 30.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 61 k 1.3576 35.5315 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 62 J 1.4332 33.1556 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 63 U 1.2399 39.2150 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 64 j 1.2372 18.3427 54.5621 -Arial_Black.ttf 71 C 39.9082 44.3759 65 ( 0.0491 17.4047 56.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 66 7 1.0592 33.5935 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 67 § 0.1529 34.2185 55.7500 -Arial_Black.ttf 71 C 39.9082 44.3759 68 $ -2.8631 35.2815 52.4362 -Arial_Black.ttf 71 C 39.9082 44.3759 69 € -0.1164 38.1914 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 70 / -0.0042 16.3759 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 71 C -0.0182 39.9082 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 72 * 0.2800 22.1565 20.6224 -Arial_Black.ttf 71 C 39.9082 44.3759 73 ” -0.1553 25.6241 23.2483 -Arial_Black.ttf 71 C 39.9082 44.3759 74 ? -0.0997 31.8138 43.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 75 { -0.2280 21.4974 56.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 76 } -0.0422 21.4974 56.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 77 , 31.6034 11.6241 24.1862 -Arial_Black.ttf 71 C 39.9082 44.3759 78 I 1.2951 12.8121 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 79 ° 0.0147 14.1250 14.1250 -Arial_Black.ttf 71 C 39.9082 44.3759 80 K 0.8993 43.9668 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 81 H 1.1050 39.2150 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 82 q 11.7636 32.7806 42.9379 -Arial_Black.ttf 71 C 39.9082 44.3759 83 & -0.0422 46.8820 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 84 ’ -0.0213 11.6241 23.2483 -Arial_Black.ttf 71 C 39.9082 44.3759 85 [ 1.0977 18.3427 53.6241 -Arial_Black.ttf 71 C 39.9082 44.3759 86 - 23.0162 16.9047 9.2483 -Arial_Black.ttf 71 C 39.9082 44.3759 87 Y 1.0808 45.5638 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 88 Q 0.0819 44.1547 48.3435 -Arial_Black.ttf 71 C 39.9082 44.3759 89 " 1.0457 26.8121 15.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 90 ! 1.3864 11.6241 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 91 x 12.8268 38.6914 30.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 92 ) -0.1215 17.4047 56.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 93 = 10.8970 30.9047 23.2483 -Arial_Black.ttf 71 C 39.9082 44.3759 94 + 6.4240 31.4388 31.4388 -Arial_Black.ttf 71 C 39.9082 44.3759 95 X 1.3035 45.1547 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 96 » 14.7914 31.1547 26.4082 -Arial_Black.ttf 71 C 39.9082 44.3759 97 ' 1.2237 11.6241 15.1879 -Arial_Black.ttf 71 C 39.9082 44.3759 98 ¢ 1.5965 34.2185 53.2203 -Arial_Black.ttf 71 C 39.9082 44.3759 99 Z 1.2691 37.3059 42.0000 -Arial_Black.ttf 71 C 39.9082 44.3759 100 > 5.0688 32.6267 34.9974 -Arial_Black.ttf 71 C 39.9082 44.3759 101 ® 0.1571 43.9720 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 102 © -0.1762 43.9720 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 103 ] 1.3303 18.3427 53.6241 -Arial_Black.ttf 71 C 39.9082 44.3759 104 é -0.2244 34.2185 44.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 105 z 12.7685 28.4327 30.3759 -Arial_Black.ttf 71 C 39.9082 44.3759 106 _ 47.4859 29.1879 2.7797 -Arial_Black.ttf 71 C 39.9082 44.3759 107 ¥ 1.1931 40.4082 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 1 t 1.2655 22.4353 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 2 h 1.1138 31.8427 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 3 a 11.6371 35.4065 32.7517 -Arial_Black.ttf 72 * 22.1565 20.6224 4 n 11.4554 31.8427 31.5638 -Arial_Black.ttf 72 * 22.1565 20.6224 5 P 0.9354 34.7474 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 6 o 11.4590 34.2185 32.7517 -Arial_Black.ttf 72 * 22.1565 20.6224 7 e 11.6918 34.2185 32.7517 -Arial_Black.ttf 72 * 22.1511 20.6009 8 : 12.6698 11.6371 30.3629 -Arial_Black.ttf 72 * 22.1565 20.6224 9 r 11.6558 23.9073 31.5638 -Arial_Black.ttf 72 * 22.1565 20.6224 10 l 1.1079 11.6241 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 11 i 1.3646 11.6241 42.0000 -Arial_Black.ttf 72 * 22.1511 20.6009 12 1 0.0205 23.9105 43.1815 -Arial_Black.ttf 72 * 22.1511 20.6009 13 | 1.2749 7.2718 53.3612 -Arial_Black.ttf 72 * 22.1565 20.6224 14 N 1.2156 39.2150 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 15 f 0.0231 23.6233 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 16 g 11.7061 34.2185 44.1259 -Arial_Black.ttf 72 * 22.1565 20.6224 17 d 1.2324 32.7806 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 18 W 1.1841 59.5638 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 19 s 11.7115 31.5638 32.7517 -Arial_Black.ttf 72 * 22.1565 20.6224 20 c 11.4615 34.2185 32.7517 -Arial_Black.ttf 72 * 22.1565 20.6224 21 u 12.9344 31.5927 31.5638 -Arial_Black.ttf 72 * 22.1511 20.6009 22 3 -0.1955 33.8834 44.3629 -Arial_Black.ttf 72 * 22.1511 20.6009 23 ~ 15.2920 32.7258 14.0000 -Arial_Black.ttf 72 * 22.1511 20.6009 24 # -0.0349 35.6338 44.3629 -Arial_Black.ttf 72 * 22.1565 20.6224 25 O -0.0455 42.7168 44.3759 -Arial_Black.ttf 72 * 22.1511 20.6009 26 ` -0.0027 14.6708 8.4532 -Arial_Black.ttf 72 * 22.1511 20.6009 27 @ -0.3387 43.1815 49.5147 -Arial_Black.ttf 72 * 22.1565 20.6224 28 F 1.2306 31.5927 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 29 S -0.1521 37.5323 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 30 p 11.4726 32.7806 42.9379 -Arial_Black.ttf 72 * 22.1565 20.6224 31 “ -0.0615 25.6241 23.2483 -Arial_Black.ttf 72 * 22.1565 20.6224 32 % -0.0417 52.3164 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 33 £ -0.0122 34.8724 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 34 . 31.6834 11.6241 11.6241 -Arial_Black.ttf 72 * 22.1565 20.6224 35 2 0.0167 33.5935 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 36 5 0.9000 33.8435 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 37 m 11.6553 51.5035 31.5638 -Arial_Black.ttf 72 * 22.1565 20.6224 38 V 1.0581 45.1547 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 39 6 -0.1721 33.8435 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 40 w 12.9636 54.8121 30.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 41 T 1.3325 38.4362 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 42 M 1.4016 45.8086 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 43 G 0.0760 42.5629 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 44 b 1.1809 32.7806 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 45 9 -0.1748 33.8435 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 46 ; 12.7573 11.6241 42.9379 -Arial_Black.ttf 72 * 22.1565 20.6224 47 D 1.1967 38.3112 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 48 L 1.3664 31.9965 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 49 y 12.7666 35.7815 42.9379 -Arial_Black.ttf 72 * 22.1565 20.6224 50 ‘ -0.0455 11.6241 23.2483 -Arial_Black.ttf 72 * 22.1565 20.6224 51 \ -0.0455 16.3759 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 52 R 1.1764 41.2212 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 53 < 4.6154 32.6267 34.9974 -Arial_Black.ttf 72 * 22.1565 20.6224 54 4 -0.1437 38.0612 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 55 8 0.0871 33.8435 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 56 0 0.0986 33.8435 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 57 A 1.2691 45.5638 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 58 E 1.2691 34.4974 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 59 B 1.3614 38.3112 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 60 v 12.7259 35.8156 30.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 61 k 1.1095 35.5315 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 62 J 1.0859 33.1556 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 63 U 1.1022 39.2150 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 64 j 1.0181 18.3427 54.5621 -Arial_Black.ttf 72 * 22.1565 20.6224 65 ( -0.2248 17.4047 56.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 66 7 1.0740 33.5935 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 67 § 0.0357 34.2185 55.7500 -Arial_Black.ttf 72 * 22.1565 20.6224 68 $ -2.5660 35.2815 52.4362 -Arial_Black.ttf 72 * 22.1565 20.6224 69 € -0.0538 38.1914 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 70 / -0.1724 16.3759 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 71 C 0.0552 39.9082 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 72 * -0.0500 22.1565 20.6224 -Arial_Black.ttf 72 * 22.1565 20.6224 73 ” -0.0784 25.6241 23.2483 -Arial_Black.ttf 72 * 22.1565 20.6224 74 ? -0.1909 31.8138 43.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 75 { 0.0778 21.4974 56.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 76 } 0.0181 21.4974 56.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 77 , 31.5076 11.6241 24.1862 -Arial_Black.ttf 72 * 22.1565 20.6224 78 I 1.3591 12.8121 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 79 ° -0.1099 14.1250 14.1250 -Arial_Black.ttf 72 * 22.1565 20.6224 80 K 1.1887 43.9668 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 81 H 1.1908 39.2150 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 82 q 11.6196 32.7806 42.9379 -Arial_Black.ttf 72 * 22.1565 20.6224 83 & 0.1020 46.8820 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 84 ’ -0.3026 11.6241 23.2483 -Arial_Black.ttf 72 * 22.1565 20.6224 85 [ 1.1907 18.3427 53.6241 -Arial_Black.ttf 72 * 22.1565 20.6224 86 - 23.1231 16.9047 9.2483 -Arial_Black.ttf 72 * 22.1565 20.6224 87 Y 1.2366 45.5638 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 88 Q 0.2183 44.1547 48.3435 -Arial_Black.ttf 72 * 22.1565 20.6224 89 " 1.1935 26.8121 15.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 90 ! 1.1420 11.6241 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 91 x 13.0995 38.6914 30.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 92 ) -0.1502 17.4047 56.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 93 = 10.4503 30.9047 23.2483 -Arial_Black.ttf 72 * 22.1565 20.6224 94 + 6.5185 31.4388 31.4388 -Arial_Black.ttf 72 * 22.1565 20.6224 95 X 1.1745 45.1547 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 96 » 14.8574 31.1547 26.4082 -Arial_Black.ttf 72 * 22.1565 20.6224 97 ' 1.0495 11.6241 15.1879 -Arial_Black.ttf 72 * 22.1565 20.6224 98 ¢ 1.7347 34.2185 53.2203 -Arial_Black.ttf 72 * 22.1565 20.6224 99 Z 1.4942 37.3059 42.0000 -Arial_Black.ttf 72 * 22.1565 20.6224 100 > 4.8773 32.6267 34.9974 -Arial_Black.ttf 72 * 22.1565 20.6224 101 ® 0.2190 43.9720 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 102 © -0.1316 43.9720 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 103 ] 1.2404 18.3427 53.6241 -Arial_Black.ttf 72 * 22.1565 20.6224 104 é 0.0027 34.2185 44.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 105 z 13.0771 28.4327 30.3759 -Arial_Black.ttf 72 * 22.1565 20.6224 106 _ 47.2278 29.1879 2.7797 -Arial_Black.ttf 72 * 22.1565 20.6224 107 ¥ 1.0853 40.4082 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 1 t 1.1068 22.4353 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 2 h 1.1411 31.8427 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 3 a 11.4758 35.4065 32.7517 -Arial_Black.ttf 73 ” 25.6241 23.2483 4 n 11.6311 31.8427 31.5638 -Arial_Black.ttf 73 ” 25.6241 23.2483 5 P 1.3403 34.7474 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 6 o 11.8379 34.2185 32.7517 -Arial_Black.ttf 73 ” 25.6241 23.2483 7 e 11.5198 34.2185 32.7517 -Arial_Black.ttf 73 ” 25.6371 23.2742 8 : 12.7052 11.6371 30.3629 -Arial_Black.ttf 73 ” 25.6241 23.2483 9 r 11.5320 23.9073 31.5638 -Arial_Black.ttf 73 ” 25.6241 23.2483 10 l 1.0151 11.6241 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 11 i 1.3562 11.6241 42.0000 -Arial_Black.ttf 73 ” 25.6371 23.2742 12 1 -0.0434 23.9105 43.1815 -Arial_Black.ttf 73 ” 25.6371 23.2742 13 | 1.1922 7.2718 53.3612 -Arial_Black.ttf 73 ” 25.6241 23.2483 14 N 1.1425 39.2150 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 15 f 0.0774 23.6233 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 16 g 11.7179 34.2185 44.1259 -Arial_Black.ttf 73 ” 25.6241 23.2483 17 d 1.6126 32.7806 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 18 W 1.2167 59.5638 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 19 s 11.5857 31.5638 32.7517 -Arial_Black.ttf 73 ” 25.6241 23.2483 20 c 11.6825 34.2185 32.7517 -Arial_Black.ttf 73 ” 25.6241 23.2483 21 u 12.8218 31.5927 31.5638 -Arial_Black.ttf 73 ” 25.6371 23.2742 22 3 -0.0568 33.8834 44.3629 -Arial_Black.ttf 73 ” 25.6371 23.2742 23 ~ 15.1609 32.7258 14.0000 -Arial_Black.ttf 73 ” 25.6371 23.2742 24 # -0.1266 35.6338 44.3629 -Arial_Black.ttf 73 ” 25.6241 23.2483 25 O 0.0176 42.7168 44.3759 -Arial_Black.ttf 73 ” 25.6371 23.2742 26 ` 0.1380 14.6708 8.4532 -Arial_Black.ttf 73 ” 25.6371 23.2742 27 @ -0.0402 43.1815 49.5147 -Arial_Black.ttf 73 ” 25.6241 23.2483 28 F 1.2761 31.5927 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 29 S 0.1616 37.5323 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 30 p 11.5156 32.7806 42.9379 -Arial_Black.ttf 73 ” 25.6241 23.2483 31 “ 0.0953 25.6241 23.2483 -Arial_Black.ttf 73 ” 25.6241 23.2483 32 % -0.0491 52.3164 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 33 £ 0.0565 34.8724 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 34 . 31.8920 11.6241 11.6241 -Arial_Black.ttf 73 ” 25.6241 23.2483 35 2 0.0403 33.5935 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 36 5 1.2379 33.8435 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 37 m 11.7088 51.5035 31.5638 -Arial_Black.ttf 73 ” 25.6241 23.2483 38 V 1.5314 45.1547 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 39 6 -0.0097 33.8435 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 40 w 12.5848 54.8121 30.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 41 T 1.3465 38.4362 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 42 M 1.3321 45.8086 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 43 G -0.1746 42.5629 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 44 b 1.1931 32.7806 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 45 9 -0.0867 33.8435 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 46 ; 12.8932 11.6241 42.9379 -Arial_Black.ttf 73 ” 25.6241 23.2483 47 D 1.0545 38.3112 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 48 L 0.9871 31.9965 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 49 y 13.0314 35.7815 42.9379 -Arial_Black.ttf 73 ” 25.6241 23.2483 50 ‘ 0.1581 11.6241 23.2483 -Arial_Black.ttf 73 ” 25.6241 23.2483 51 \ 0.0353 16.3759 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 52 R 1.3167 41.2212 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 53 < 4.7619 32.6267 34.9974 -Arial_Black.ttf 73 ” 25.6241 23.2483 54 4 -0.1219 38.0612 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 55 8 0.0862 33.8435 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 56 0 -0.0782 33.8435 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 57 A 1.4364 45.5638 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 58 E 1.0734 34.4974 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 59 B 1.4164 38.3112 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 60 v 12.6712 35.8156 30.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 61 k 1.3326 35.5315 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 62 J 1.2838 33.1556 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 63 U 1.1967 39.2150 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 64 j 0.7175 18.3427 54.5621 -Arial_Black.ttf 73 ” 25.6241 23.2483 65 ( -0.1294 17.4047 56.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 66 7 0.8923 33.5935 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 67 § 0.1622 34.2185 55.7500 -Arial_Black.ttf 73 ” 25.6241 23.2483 68 $ -3.3085 35.2815 52.4362 -Arial_Black.ttf 73 ” 25.6241 23.2483 69 € 0.2643 38.1914 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 70 / 0.0812 16.3759 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 71 C 0.1603 39.9082 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 72 * 0.0047 22.1565 20.6224 -Arial_Black.ttf 73 ” 25.6241 23.2483 73 ” 0.0057 25.6241 23.2483 -Arial_Black.ttf 73 ” 25.6241 23.2483 74 ? 0.0506 31.8138 43.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 75 { 0.0403 21.4974 56.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 76 } 0.0154 21.4974 56.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 77 , 31.8118 11.6241 24.1862 -Arial_Black.ttf 73 ” 25.6241 23.2483 78 I 1.1606 12.8121 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 79 ° 0.0872 14.1250 14.1250 -Arial_Black.ttf 73 ” 25.6241 23.2483 80 K 1.3649 43.9668 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 81 H 1.2820 39.2150 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 82 q 11.8707 32.7806 42.9379 -Arial_Black.ttf 73 ” 25.6241 23.2483 83 & -0.1493 46.8820 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 84 ’ -0.1297 11.6241 23.2483 -Arial_Black.ttf 73 ” 25.6241 23.2483 85 [ 0.8775 18.3427 53.6241 -Arial_Black.ttf 73 ” 25.6241 23.2483 86 - 22.8970 16.9047 9.2483 -Arial_Black.ttf 73 ” 25.6241 23.2483 87 Y 1.3422 45.5638 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 88 Q -0.2619 44.1547 48.3435 -Arial_Black.ttf 73 ” 25.6241 23.2483 89 " 1.2139 26.8121 15.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 90 ! 1.2653 11.6241 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 91 x 12.5456 38.6914 30.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 92 ) 0.3593 17.4047 56.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 93 = 10.7590 30.9047 23.2483 -Arial_Black.ttf 73 ” 25.6241 23.2483 94 + 6.5997 31.4388 31.4388 -Arial_Black.ttf 73 ” 25.6241 23.2483 95 X 1.2988 45.1547 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 96 » 14.7253 31.1547 26.4082 -Arial_Black.ttf 73 ” 25.6241 23.2483 97 ' 1.0113 11.6241 15.1879 -Arial_Black.ttf 73 ” 25.6241 23.2483 98 ¢ 1.6719 34.2185 53.2203 -Arial_Black.ttf 73 ” 25.6241 23.2483 99 Z 0.8927 37.3059 42.0000 -Arial_Black.ttf 73 ” 25.6241 23.2483 100 > 4.8541 32.6267 34.9974 -Arial_Black.ttf 73 ” 25.6241 23.2483 101 ® -0.0857 43.9720 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 102 © 0.0690 43.9720 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 103 ] 0.9469 18.3427 53.6241 -Arial_Black.ttf 73 ” 25.6241 23.2483 104 é 0.0441 34.2185 44.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 105 z 12.7601 28.4327 30.3759 -Arial_Black.ttf 73 ” 25.6241 23.2483 106 _ 47.2575 29.1879 2.7797 -Arial_Black.ttf 73 ” 25.6241 23.2483 107 ¥ 1.2691 40.4082 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 1 t 1.1977 22.4353 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 2 h 1.1554 31.8427 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 3 a 12.0175 35.4065 32.7517 -Arial_Black.ttf 74 ? 31.8138 43.1879 4 n 11.6307 31.8427 31.5638 -Arial_Black.ttf 74 ? 31.8138 43.1879 5 P 0.8402 34.7474 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 6 o 11.4006 34.2185 32.7517 -Arial_Black.ttf 74 ? 31.8138 43.1879 7 e 11.6339 34.2185 32.7517 -Arial_Black.ttf 74 ? 31.8202 43.1815 8 : 12.8580 11.6371 30.3629 -Arial_Black.ttf 74 ? 31.8138 43.1879 9 r 11.3470 23.9073 31.5638 -Arial_Black.ttf 74 ? 31.8138 43.1879 10 l 1.2681 11.6241 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 11 i 1.2393 11.6241 42.0000 -Arial_Black.ttf 74 ? 31.8202 43.1815 12 1 -0.0116 23.9105 43.1815 -Arial_Black.ttf 74 ? 31.8202 43.1815 13 | 1.1340 7.2718 53.3612 -Arial_Black.ttf 74 ? 31.8138 43.1879 14 N 1.0256 39.2150 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 15 f -0.3268 23.6233 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 16 g 11.8289 34.2185 44.1259 -Arial_Black.ttf 74 ? 31.8138 43.1879 17 d 1.1341 32.7806 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 18 W 1.4229 59.5638 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 19 s 11.4020 31.5638 32.7517 -Arial_Black.ttf 74 ? 31.8138 43.1879 20 c 11.3047 34.2185 32.7517 -Arial_Black.ttf 74 ? 31.8138 43.1879 21 u 12.9362 31.5927 31.5638 -Arial_Black.ttf 74 ? 31.8202 43.1815 22 3 0.1563 33.8834 44.3629 -Arial_Black.ttf 74 ? 31.8202 43.1815 23 ~ 15.4624 32.7258 14.0000 -Arial_Black.ttf 74 ? 31.8202 43.1815 24 # 0.1031 35.6338 44.3629 -Arial_Black.ttf 74 ? 31.8138 43.1879 25 O -0.0083 42.7168 44.3759 -Arial_Black.ttf 74 ? 31.8202 43.1815 26 ` -0.1601 14.6708 8.4532 -Arial_Black.ttf 74 ? 31.8202 43.1815 27 @ 0.2819 43.1815 49.5147 -Arial_Black.ttf 74 ? 31.8138 43.1879 28 F 1.2264 31.5927 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 29 S 0.0000 37.5323 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 30 p 11.4430 32.7806 42.9379 -Arial_Black.ttf 74 ? 31.8138 43.1879 31 “ -0.0992 25.6241 23.2483 -Arial_Black.ttf 74 ? 31.8138 43.1879 32 % -0.4008 52.3164 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 33 £ 0.2970 34.8724 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 34 . 31.3658 11.6241 11.6241 -Arial_Black.ttf 74 ? 31.8138 43.1879 35 2 -0.1312 33.5935 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 36 5 1.2699 33.8435 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 37 m 11.6784 51.5035 31.5638 -Arial_Black.ttf 74 ? 31.8138 43.1879 38 V 0.9125 45.1547 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 39 6 0.0322 33.8435 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 40 w 12.6818 54.8121 30.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 41 T 1.6123 38.4362 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 42 M 1.1957 45.8086 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 43 G 0.1934 42.5629 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 44 b 1.1675 32.7806 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 45 9 -0.0815 33.8435 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 46 ; 12.8464 11.6241 42.9379 -Arial_Black.ttf 74 ? 31.8138 43.1879 47 D 1.2477 38.3112 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 48 L 1.3979 31.9965 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 49 y 12.2975 35.7815 42.9379 -Arial_Black.ttf 74 ? 31.8138 43.1879 50 ‘ 0.0947 11.6241 23.2483 -Arial_Black.ttf 74 ? 31.8138 43.1879 51 \ 0.1406 16.3759 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 52 R 1.4030 41.2212 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 53 < 4.7185 32.6267 34.9974 -Arial_Black.ttf 74 ? 31.8138 43.1879 54 4 0.1126 38.0612 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 55 8 -0.0214 33.8435 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 56 0 0.2373 33.8435 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 57 A 0.9000 45.5638 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 58 E 1.4796 34.4974 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 59 B 1.2245 38.3112 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 60 v 12.9352 35.8156 30.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 61 k 1.2237 35.5315 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 62 J 1.0568 33.1556 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 63 U 1.2673 39.2150 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 64 j 1.4419 18.3427 54.5621 -Arial_Black.ttf 74 ? 31.8138 43.1879 65 ( 0.1219 17.4047 56.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 66 7 0.9280 33.5935 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 67 § 0.1388 34.2185 55.7500 -Arial_Black.ttf 74 ? 31.8138 43.1879 68 $ -2.7340 35.2815 52.4362 -Arial_Black.ttf 74 ? 31.8138 43.1879 69 € 0.1631 38.1914 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 70 / 0.2062 16.3759 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 71 C -0.1535 39.9082 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 72 * 0.0083 22.1565 20.6224 -Arial_Black.ttf 74 ? 31.8138 43.1879 73 ” -0.2684 25.6241 23.2483 -Arial_Black.ttf 74 ? 31.8138 43.1879 74 ? -0.1079 31.8138 43.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 75 { 0.1415 21.4974 56.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 76 } -0.0819 21.4974 56.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 77 , 31.7660 11.6241 24.1862 -Arial_Black.ttf 74 ? 31.8138 43.1879 78 I 1.4076 12.8121 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 79 ° -0.2100 14.1250 14.1250 -Arial_Black.ttf 74 ? 31.8138 43.1879 80 K 1.1221 43.9668 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 81 H 0.9812 39.2150 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 82 q 11.6991 32.7806 42.9379 -Arial_Black.ttf 74 ? 31.8138 43.1879 83 & 0.2841 46.8820 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 84 ’ -0.0500 11.6241 23.2483 -Arial_Black.ttf 74 ? 31.8138 43.1879 85 [ 1.3585 18.3427 53.6241 -Arial_Black.ttf 74 ? 31.8138 43.1879 86 - 23.3791 16.9047 9.2483 -Arial_Black.ttf 74 ? 31.8138 43.1879 87 Y 1.2826 45.5638 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 88 Q -0.4950 44.1547 48.3435 -Arial_Black.ttf 74 ? 31.8138 43.1879 89 " 1.4044 26.8121 15.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 90 ! 1.0633 11.6241 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 91 x 12.8932 38.6914 30.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 92 ) -0.0312 17.4047 56.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 93 = 10.6518 30.9047 23.2483 -Arial_Black.ttf 74 ? 31.8138 43.1879 94 + 6.7151 31.4388 31.4388 -Arial_Black.ttf 74 ? 31.8138 43.1879 95 X 1.0526 45.1547 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 96 » 14.8115 31.1547 26.4082 -Arial_Black.ttf 74 ? 31.8138 43.1879 97 ' 1.0094 11.6241 15.1879 -Arial_Black.ttf 74 ? 31.8138 43.1879 98 ¢ 1.5114 34.2185 53.2203 -Arial_Black.ttf 74 ? 31.8138 43.1879 99 Z 1.5058 37.3059 42.0000 -Arial_Black.ttf 74 ? 31.8138 43.1879 100 > 4.7653 32.6267 34.9974 -Arial_Black.ttf 74 ? 31.8138 43.1879 101 ® 0.2605 43.9720 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 102 © 0.1364 43.9720 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 103 ] 1.3691 18.3427 53.6241 -Arial_Black.ttf 74 ? 31.8138 43.1879 104 é -0.1367 34.2185 44.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 105 z 12.9005 28.4327 30.3759 -Arial_Black.ttf 74 ? 31.8138 43.1879 106 _ 47.1217 29.1879 2.7797 -Arial_Black.ttf 74 ? 31.8138 43.1879 107 ¥ 0.9882 40.4082 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 1 t 1.2751 22.4353 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 2 h 0.9877 31.8427 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 3 a 11.7015 35.4065 32.7517 -Arial_Black.ttf 75 { 21.4974 56.0000 4 n 11.3590 31.8427 31.5638 -Arial_Black.ttf 75 { 21.4974 56.0000 5 P 1.2463 34.7474 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 6 o 11.3136 34.2185 32.7517 -Arial_Black.ttf 75 { 21.4974 56.0000 7 e 11.7497 34.2185 32.7517 -Arial_Black.ttf 75 { 21.5147 56.0000 8 : 12.9058 11.6371 30.3629 -Arial_Black.ttf 75 { 21.4974 56.0000 9 r 11.6587 23.9073 31.5638 -Arial_Black.ttf 75 { 21.4974 56.0000 10 l 1.1425 11.6241 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 11 i 1.1227 11.6241 42.0000 -Arial_Black.ttf 75 { 21.5147 56.0000 12 1 0.0600 23.9105 43.1815 -Arial_Black.ttf 75 { 21.5147 56.0000 13 | 1.2123 7.2718 53.3612 -Arial_Black.ttf 75 { 21.4974 56.0000 14 N 1.2764 39.2150 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 15 f -0.1266 23.6233 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 16 g 11.6158 34.2185 44.1259 -Arial_Black.ttf 75 { 21.4974 56.0000 17 d 1.2671 32.7806 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 18 W 1.0642 59.5638 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 19 s 11.7298 31.5638 32.7517 -Arial_Black.ttf 75 { 21.4974 56.0000 20 c 11.8865 34.2185 32.7517 -Arial_Black.ttf 75 { 21.4974 56.0000 21 u 12.7512 31.5927 31.5638 -Arial_Black.ttf 75 { 21.5147 56.0000 22 3 -0.0876 33.8834 44.3629 -Arial_Black.ttf 75 { 21.5147 56.0000 23 ~ 15.1504 32.7258 14.0000 -Arial_Black.ttf 75 { 21.5147 56.0000 24 # -0.0417 35.6338 44.3629 -Arial_Black.ttf 75 { 21.4974 56.0000 25 O 0.0444 42.7168 44.3759 -Arial_Black.ttf 75 { 21.5147 56.0000 26 ` -0.0301 14.6708 8.4532 -Arial_Black.ttf 75 { 21.5147 56.0000 27 @ -0.0469 43.1815 49.5147 -Arial_Black.ttf 75 { 21.4974 56.0000 28 F 0.8685 31.5927 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 29 S -0.0073 37.5323 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 30 p 11.6932 32.7806 42.9379 -Arial_Black.ttf 75 { 21.4974 56.0000 31 “ 0.0491 25.6241 23.2483 -Arial_Black.ttf 75 { 21.4974 56.0000 32 % -0.1126 52.3164 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 33 £ -0.3022 34.8724 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 34 . 31.5442 11.6241 11.6241 -Arial_Black.ttf 75 { 21.4974 56.0000 35 2 0.0371 33.5935 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 36 5 1.2713 33.8435 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 37 m 11.5319 51.5035 31.5638 -Arial_Black.ttf 75 { 21.4974 56.0000 38 V 1.4155 45.1547 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 39 6 0.0871 33.8435 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 40 w 12.5168 54.8121 30.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 41 T 1.4382 38.4362 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 42 M 1.2608 45.8086 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 43 G 0.0417 42.5629 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 44 b 1.1022 32.7806 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 45 9 -0.2759 33.8435 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 46 ; 12.9363 11.6241 42.9379 -Arial_Black.ttf 75 { 21.4974 56.0000 47 D 1.0981 38.3112 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 48 L 1.1945 31.9965 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 49 y 12.9478 35.7815 42.9379 -Arial_Black.ttf 75 { 21.4974 56.0000 50 ‘ 0.0973 11.6241 23.2483 -Arial_Black.ttf 75 { 21.4974 56.0000 51 \ 0.0403 16.3759 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 52 R 1.1820 41.2212 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 53 < 4.8264 32.6267 34.9974 -Arial_Black.ttf 75 { 21.4974 56.0000 54 4 0.1511 38.0612 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 55 8 0.0833 33.8435 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 56 0 -0.2585 33.8435 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 57 A 1.4160 45.5638 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 58 E 1.0307 34.4974 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 59 B 1.5349 38.3112 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 60 v 12.8659 35.8156 30.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 61 k 1.1452 35.5315 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 62 J 1.2664 33.1556 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 63 U 1.2946 39.2150 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 64 j 1.2375 18.3427 54.5621 -Arial_Black.ttf 75 { 21.4974 56.0000 65 ( 0.0125 17.4047 56.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 66 7 1.0294 33.5935 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 67 § -0.0228 34.2185 55.7500 -Arial_Black.ttf 75 { 21.4974 56.0000 68 $ -2.7395 35.2815 52.4362 -Arial_Black.ttf 75 { 21.4974 56.0000 69 € 0.2206 38.1914 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 70 / -0.2400 16.3759 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 71 C -0.1228 39.9082 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 72 * 0.2071 22.1565 20.6224 -Arial_Black.ttf 75 { 21.4974 56.0000 73 ” 0.2151 25.6241 23.2483 -Arial_Black.ttf 75 { 21.4974 56.0000 74 ? 0.0357 31.8138 43.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 75 { -0.1748 21.4974 56.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 76 } 0.1714 21.4974 56.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 77 , 31.4469 11.6241 24.1862 -Arial_Black.ttf 75 { 21.4974 56.0000 78 I 1.0016 12.8121 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 79 ° -0.3411 14.1250 14.1250 -Arial_Black.ttf 75 { 21.4974 56.0000 80 K 1.3992 43.9668 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 81 H 1.1235 39.2150 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 82 q 11.4481 32.7806 42.9379 -Arial_Black.ttf 75 { 21.4974 56.0000 83 & 0.1613 46.8820 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 84 ’ 0.1088 11.6241 23.2483 -Arial_Black.ttf 75 { 21.4974 56.0000 85 [ 1.4683 18.3427 53.6241 -Arial_Black.ttf 75 { 21.4974 56.0000 86 - 23.4175 16.9047 9.2483 -Arial_Black.ttf 75 { 21.4974 56.0000 87 Y 1.3121 45.5638 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 88 Q 0.0774 44.1547 48.3435 -Arial_Black.ttf 75 { 21.4974 56.0000 89 " 1.4048 26.8121 15.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 90 ! 1.0984 11.6241 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 91 x 12.7347 38.6914 30.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 92 ) -0.1079 17.4047 56.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 93 = 10.7414 30.9047 23.2483 -Arial_Black.ttf 75 { 21.4974 56.0000 94 + 6.4086 31.4388 31.4388 -Arial_Black.ttf 75 { 21.4974 56.0000 95 X 1.2520 45.1547 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 96 » 14.5865 31.1547 26.4082 -Arial_Black.ttf 75 { 21.4974 56.0000 97 ' 0.6415 11.6241 15.1879 -Arial_Black.ttf 75 { 21.4974 56.0000 98 ¢ 1.5061 34.2185 53.2203 -Arial_Black.ttf 75 { 21.4974 56.0000 99 Z 1.0540 37.3059 42.0000 -Arial_Black.ttf 75 { 21.4974 56.0000 100 > 4.6061 32.6267 34.9974 -Arial_Black.ttf 75 { 21.4974 56.0000 101 ® -0.0274 43.9720 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 102 © -0.0482 43.9720 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 103 ] 1.1949 18.3427 53.6241 -Arial_Black.ttf 75 { 21.4974 56.0000 104 é 0.1400 34.2185 44.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 105 z 12.8992 28.4327 30.3759 -Arial_Black.ttf 75 { 21.4974 56.0000 106 _ 47.4048 29.1879 2.7797 -Arial_Black.ttf 75 { 21.4974 56.0000 107 ¥ 1.2293 40.4082 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 1 t 1.3024 22.4353 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 2 h 1.2834 31.8427 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 3 a 11.4131 35.4065 32.7517 -Arial_Black.ttf 76 } 21.4974 56.0000 4 n 11.5072 31.8427 31.5638 -Arial_Black.ttf 76 } 21.4974 56.0000 5 P 1.2737 34.7474 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 6 o 11.5934 34.2185 32.7517 -Arial_Black.ttf 76 } 21.4974 56.0000 7 e 11.4160 34.2185 32.7517 -Arial_Black.ttf 76 } 21.5147 56.0000 8 : 12.5216 11.6371 30.3629 -Arial_Black.ttf 76 } 21.4974 56.0000 9 r 11.4563 23.9073 31.5638 -Arial_Black.ttf 76 } 21.4974 56.0000 10 l 1.2719 11.6241 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 11 i 1.1286 11.6241 42.0000 -Arial_Black.ttf 76 } 21.5147 56.0000 12 1 0.0653 23.9105 43.1815 -Arial_Black.ttf 76 } 21.5147 56.0000 13 | 1.2116 7.2718 53.3612 -Arial_Black.ttf 76 } 21.4974 56.0000 14 N 1.2788 39.2150 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 15 f -0.0357 23.6233 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 16 g 11.3681 34.2185 44.1259 -Arial_Black.ttf 76 } 21.4974 56.0000 17 d 1.3951 32.7806 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 18 W 1.0271 59.5638 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 19 s 11.6848 31.5638 32.7517 -Arial_Black.ttf 76 } 21.4974 56.0000 20 c 11.4490 34.2185 32.7517 -Arial_Black.ttf 76 } 21.4974 56.0000 21 u 12.8887 31.5927 31.5638 -Arial_Black.ttf 76 } 21.5147 56.0000 22 3 -0.0402 33.8834 44.3629 -Arial_Black.ttf 76 } 21.5147 56.0000 23 ~ 15.2159 32.7258 14.0000 -Arial_Black.ttf 76 } 21.5147 56.0000 24 # 0.0483 35.6338 44.3629 -Arial_Black.ttf 76 } 21.4974 56.0000 25 O -0.0812 42.7168 44.3759 -Arial_Black.ttf 76 } 21.5147 56.0000 26 ` 0.0063 14.6708 8.4532 -Arial_Black.ttf 76 } 21.5147 56.0000 27 @ 0.0402 43.1815 49.5147 -Arial_Black.ttf 76 } 21.4974 56.0000 28 F 1.1782 31.5927 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 29 S -0.0871 37.5323 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 30 p 11.4952 32.7806 42.9379 -Arial_Black.ttf 76 } 21.4974 56.0000 31 “ -0.0024 25.6241 23.2483 -Arial_Black.ttf 76 } 21.4974 56.0000 32 % 0.0955 52.3164 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 33 £ 0.0065 34.8724 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 34 . 31.7464 11.6241 11.6241 -Arial_Black.ttf 76 } 21.4974 56.0000 35 2 0.1482 33.5935 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 36 5 1.1908 33.8435 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 37 m 11.5467 51.5035 31.5638 -Arial_Black.ttf 76 } 21.4974 56.0000 38 V 1.2922 45.1547 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 39 6 0.3666 33.8435 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 40 w 12.6317 54.8121 30.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 41 T 1.2302 38.4362 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 42 M 1.2756 45.8086 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 43 G -0.0686 42.5629 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 44 b 1.4646 32.7806 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 45 9 0.1963 33.8435 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 46 ; 12.7288 11.6241 42.9379 -Arial_Black.ttf 76 } 21.4974 56.0000 47 D 1.0039 38.3112 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 48 L 1.4517 31.9965 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 49 y 12.8089 35.7815 42.9379 -Arial_Black.ttf 76 } 21.4974 56.0000 50 ‘ -0.0505 11.6241 23.2483 -Arial_Black.ttf 76 } 21.4974 56.0000 51 \ -0.0774 16.3759 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 52 R 0.9783 41.2212 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 53 < 4.6923 32.6267 34.9974 -Arial_Black.ttf 76 } 21.4974 56.0000 54 4 -0.1606 38.0612 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 55 8 -0.1748 33.8435 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 56 0 -0.0857 33.8435 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 57 A 1.1925 45.5638 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 58 E 1.2237 34.4974 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 59 B 1.0208 38.3112 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 60 v 12.6452 35.8156 30.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 61 k 1.1285 35.5315 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 62 J 1.1925 33.1556 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 63 U 0.9696 39.2150 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 64 j 1.1050 18.3427 54.5621 -Arial_Black.ttf 76 } 21.4974 56.0000 65 ( -0.1409 17.4047 56.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 66 7 1.1120 33.5935 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 67 § -0.0458 34.2185 55.7500 -Arial_Black.ttf 76 } 21.4974 56.0000 68 $ -2.9026 35.2815 52.4362 -Arial_Black.ttf 76 } 21.4974 56.0000 69 € -0.0455 38.1914 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 70 / -0.0065 16.3759 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 71 C -0.0367 39.9082 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 72 * 0.1131 22.1565 20.6224 -Arial_Black.ttf 76 } 21.4974 56.0000 73 ” 0.0728 25.6241 23.2483 -Arial_Black.ttf 76 } 21.4974 56.0000 74 ? -0.0421 31.8138 43.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 75 { 0.1321 21.4974 56.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 76 } -0.1619 21.4974 56.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 77 , 31.3980 11.6241 24.1862 -Arial_Black.ttf 76 } 21.4974 56.0000 78 I 1.1106 12.8121 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 79 ° 0.1062 14.1250 14.1250 -Arial_Black.ttf 76 } 21.4974 56.0000 80 K 1.1782 43.9668 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 81 H 1.0295 39.2150 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 82 q 11.5936 32.7806 42.9379 -Arial_Black.ttf 76 } 21.4974 56.0000 83 & -0.3754 46.8820 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 84 ’ 0.1617 11.6241 23.2483 -Arial_Black.ttf 76 } 21.4974 56.0000 85 [ 1.4030 18.3427 53.6241 -Arial_Black.ttf 76 } 21.4974 56.0000 86 - 23.1723 16.9047 9.2483 -Arial_Black.ttf 76 } 21.4974 56.0000 87 Y 1.2256 45.5638 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 88 Q -0.1316 44.1547 48.3435 -Arial_Black.ttf 76 } 21.4974 56.0000 89 " 1.1834 26.8121 15.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 90 ! 1.2751 11.6241 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 91 x 12.7575 38.6914 30.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 92 ) 0.0455 17.4047 56.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 93 = 10.4591 30.9047 23.2483 -Arial_Black.ttf 76 } 21.4974 56.0000 94 + 6.3804 31.4388 31.4388 -Arial_Black.ttf 76 } 21.4974 56.0000 95 X 0.9319 45.1547 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 96 » 14.8768 31.1547 26.4082 -Arial_Black.ttf 76 } 21.4974 56.0000 97 ' 1.0275 11.6241 15.1879 -Arial_Black.ttf 76 } 21.4974 56.0000 98 ¢ 1.4963 34.2185 53.2203 -Arial_Black.ttf 76 } 21.4974 56.0000 99 Z 1.4600 37.3059 42.0000 -Arial_Black.ttf 76 } 21.4974 56.0000 100 > 4.7254 32.6267 34.9974 -Arial_Black.ttf 76 } 21.4974 56.0000 101 ® -0.0844 43.9720 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 102 © -0.1242 43.9720 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 103 ] 1.0619 18.3427 53.6241 -Arial_Black.ttf 76 } 21.4974 56.0000 104 é -0.0922 34.2185 44.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 105 z 12.4644 28.4327 30.3759 -Arial_Black.ttf 76 } 21.4974 56.0000 106 _ 47.5429 29.1879 2.7797 -Arial_Black.ttf 76 } 21.4974 56.0000 107 ¥ 1.1379 40.4082 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 1 t -30.3713 22.4353 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 2 h -30.1764 31.8427 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 3 a -19.9410 35.4065 32.7517 -Arial_Black.ttf 77 , 11.6241 24.1862 4 n -20.1362 31.8427 31.5638 -Arial_Black.ttf 77 , 11.6241 24.1862 5 P -30.3343 34.7474 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 6 o -19.9178 34.2185 32.7517 -Arial_Black.ttf 77 , 11.6241 24.1862 7 e -19.9488 34.2185 32.7517 -Arial_Black.ttf 77 , 11.6371 24.1798 8 : -18.5725 11.6371 30.3629 -Arial_Black.ttf 77 , 11.6241 24.1862 9 r -20.0566 23.9073 31.5638 -Arial_Black.ttf 77 , 11.6241 24.1862 10 l -30.3675 11.6241 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 11 i -30.3804 11.6241 42.0000 -Arial_Black.ttf 77 , 11.6371 24.1798 12 1 -31.7112 23.9105 43.1815 -Arial_Black.ttf 77 , 11.6371 24.1798 13 | -30.6695 7.2718 53.3612 -Arial_Black.ttf 77 , 11.6241 24.1862 14 N -30.3578 39.2150 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 15 f -31.2686 23.6233 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 16 g -19.9345 34.2185 44.1259 -Arial_Black.ttf 77 , 11.6241 24.1862 17 d -30.3759 32.7806 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 18 W -30.3439 59.5638 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 19 s -20.0216 31.5638 32.7517 -Arial_Black.ttf 77 , 11.6241 24.1862 20 c -20.0611 34.2185 32.7517 -Arial_Black.ttf 77 , 11.6241 24.1862 21 u -18.8311 31.5927 31.5638 -Arial_Black.ttf 77 , 11.6371 24.1798 22 3 -31.5789 33.8834 44.3629 -Arial_Black.ttf 77 , 11.6371 24.1798 23 ~ -16.0953 32.7258 14.0000 -Arial_Black.ttf 77 , 11.6371 24.1798 24 # -31.3832 35.6338 44.3629 -Arial_Black.ttf 77 , 11.6241 24.1862 25 O -31.4404 42.7168 44.3759 -Arial_Black.ttf 77 , 11.6371 24.1798 26 ` -31.3511 14.6708 8.4532 -Arial_Black.ttf 77 , 11.6371 24.1798 27 @ -31.5269 43.1815 49.5147 -Arial_Black.ttf 77 , 11.6241 24.1862 28 F -30.3709 31.5927 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 29 S -31.4767 37.5323 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 30 p -20.0865 32.7806 42.9379 -Arial_Black.ttf 77 , 11.6241 24.1862 31 “ -31.6093 25.6241 23.2483 -Arial_Black.ttf 77 , 11.6241 24.1862 32 % -31.6214 52.3164 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 33 £ -31.6384 34.8724 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 34 . 0.0027 11.6241 11.6241 -Arial_Black.ttf 77 , 11.6241 24.1862 35 2 -31.3195 33.5935 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 36 5 -30.4223 33.8435 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 37 m -19.9281 51.5035 31.5638 -Arial_Black.ttf 77 , 11.6241 24.1862 38 V -30.4311 45.1547 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 39 6 -31.3665 33.8435 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 40 w -18.7160 54.8121 30.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 41 T -30.4616 38.4362 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 42 M -30.3721 45.8086 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 43 G -31.2858 42.5629 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 44 b -30.4570 32.7806 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 45 9 -31.8558 33.8435 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 46 ; -18.5932 11.6241 42.9379 -Arial_Black.ttf 77 , 11.6241 24.1862 47 D -30.2402 38.3112 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 48 L -30.6424 31.9965 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 49 y -18.8000 35.7815 42.9379 -Arial_Black.ttf 77 , 11.6241 24.1862 50 ‘ -31.4684 11.6241 23.2483 -Arial_Black.ttf 77 , 11.6241 24.1862 51 \ -31.4329 16.3759 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 52 R -30.3439 41.2212 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 53 < -26.7207 32.6267 34.9974 -Arial_Black.ttf 77 , 11.6241 24.1862 54 4 -31.5628 38.0612 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 55 8 -31.3487 33.8435 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 56 0 -31.5593 33.8435 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 57 A -30.6812 45.5638 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 58 E -30.3304 34.4974 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 59 B -30.2062 38.3112 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 60 v -18.7855 35.8156 30.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 61 k -30.2990 35.5315 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 62 J -30.2902 33.1556 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 63 U -30.2173 39.2150 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 64 j -30.2804 18.3427 54.5621 -Arial_Black.ttf 77 , 11.6241 24.1862 65 ( -31.3612 17.4047 56.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 66 7 -30.5312 33.5935 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 67 § -31.5880 34.2185 55.7500 -Arial_Black.ttf 77 , 11.6241 24.1862 68 $ -34.3478 35.2815 52.4362 -Arial_Black.ttf 77 , 11.6241 24.1862 69 € -31.4840 38.1914 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 70 / -31.7181 16.3759 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 71 C -31.7224 39.9082 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 72 * -31.5957 22.1565 20.6224 -Arial_Black.ttf 77 , 11.6241 24.1862 73 ” -31.6360 25.6241 23.2483 -Arial_Black.ttf 77 , 11.6241 24.1862 74 ? -31.3376 31.8138 43.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 75 { -31.5170 21.4974 56.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 76 } -31.5736 21.4974 56.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 77 , -0.0375 11.6241 24.1862 -Arial_Black.ttf 77 , 11.6241 24.1862 78 I -30.2888 12.8121 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 79 ° -31.7002 14.1250 14.1250 -Arial_Black.ttf 77 , 11.6241 24.1862 80 K -30.5385 43.9668 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 81 H -30.3759 39.2150 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 82 q -19.9462 32.7806 42.9379 -Arial_Black.ttf 77 , 11.6241 24.1862 83 & -31.5998 46.8820 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 84 ’ -31.7186 11.6241 23.2483 -Arial_Black.ttf 77 , 11.6241 24.1862 85 [ -30.3661 18.3427 53.6241 -Arial_Black.ttf 77 , 11.6241 24.1862 86 - -8.4030 16.9047 9.2483 -Arial_Black.ttf 77 , 11.6241 24.1862 87 Y -30.1621 45.5638 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 88 Q -31.4826 44.1547 48.3435 -Arial_Black.ttf 77 , 11.6241 24.1862 89 " -30.2791 26.8121 15.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 90 ! -30.5525 11.6241 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 91 x -18.6238 38.6914 30.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 92 ) -31.4753 17.4047 56.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 93 = -20.7215 30.9047 23.2483 -Arial_Black.ttf 77 , 11.6241 24.1862 94 + -25.1727 31.4388 31.4388 -Arial_Black.ttf 77 , 11.6241 24.1862 95 X -30.3332 45.1547 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 96 » -17.0509 31.1547 26.4082 -Arial_Black.ttf 77 , 11.6241 24.1862 97 ' -30.3804 11.6241 15.1879 -Arial_Black.ttf 77 , 11.6241 24.1862 98 ¢ -29.7927 34.2185 53.2203 -Arial_Black.ttf 77 , 11.6241 24.1862 99 Z -30.5130 37.3059 42.0000 -Arial_Black.ttf 77 , 11.6241 24.1862 100 > -26.9030 32.6267 34.9974 -Arial_Black.ttf 77 , 11.6241 24.1862 101 ® -31.3987 43.9720 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 102 © -31.5593 43.9720 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 103 ] -30.2374 18.3427 53.6241 -Arial_Black.ttf 77 , 11.6241 24.1862 104 é -31.8289 34.2185 44.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 105 z -18.8357 28.4327 30.3759 -Arial_Black.ttf 77 , 11.6241 24.1862 106 _ 15.6426 29.1879 2.7797 -Arial_Black.ttf 77 , 11.6241 24.1862 107 ¥ -30.1641 40.4082 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 1 t -0.1330 22.4353 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 2 h -0.0045 31.8427 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 3 a 10.2576 35.4065 32.7517 -Arial_Black.ttf 78 I 12.8121 42.0000 4 n 10.6981 31.8427 31.5638 -Arial_Black.ttf 78 I 12.8121 42.0000 5 P -0.2513 34.7474 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 6 o 10.4334 34.2185 32.7517 -Arial_Black.ttf 78 I 12.8121 42.0000 7 e 10.3453 34.2185 32.7517 -Arial_Black.ttf 78 I 12.8121 42.0000 8 : 11.5773 11.6241 30.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 9 r 10.6076 23.9073 31.5638 -Arial_Black.ttf 78 I 12.8121 42.0000 10 l -0.2581 11.6241 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 11 i -0.0885 11.6241 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 12 1 -1.0911 23.9073 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 13 | 0.2405 7.2815 53.3741 -Arial_Black.ttf 78 I 12.8121 42.0000 14 N 0.0083 39.2150 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 15 f -1.2601 23.6233 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 16 g 10.5631 34.2185 44.1259 -Arial_Black.ttf 78 I 12.8121 42.0000 17 d 0.2493 32.7806 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 18 W -0.1251 59.5638 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 19 s 10.3397 31.5638 32.7517 -Arial_Black.ttf 78 I 12.8121 42.0000 20 c 10.4302 34.2185 32.7517 -Arial_Black.ttf 78 I 12.8121 42.0000 21 u 11.6612 31.5927 31.5638 -Arial_Black.ttf 78 I 12.8121 42.0000 22 3 -1.2788 33.8435 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 23 ~ 14.1294 32.7517 14.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 24 # -1.1764 35.6565 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 25 O -1.2751 42.7168 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 26 ` -1.3103 14.6591 8.4694 -Arial_Black.ttf 78 I 12.8121 42.0000 27 @ -1.3922 43.1879 49.4974 -Arial_Black.ttf 78 I 12.8121 42.0000 28 F -0.2108 31.5927 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 29 S -1.0595 37.5323 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 30 p 10.4701 32.7806 42.9379 -Arial_Black.ttf 78 I 12.8121 42.0000 31 “ -1.1537 25.6241 23.2483 -Arial_Black.ttf 78 I 12.8121 42.0000 32 % -1.2375 52.3164 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 33 £ -1.0638 34.8724 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 34 . 30.4762 11.6241 11.6241 -Arial_Black.ttf 78 I 12.8121 42.0000 35 2 -1.1995 33.5935 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 36 5 -0.0812 33.8435 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 37 m 10.3634 51.5035 31.5638 -Arial_Black.ttf 78 I 12.8121 42.0000 38 V -0.3309 45.1547 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 39 6 -1.1572 33.8435 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 40 w 11.5475 54.8121 30.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 41 T -0.0319 38.4362 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 42 M -0.0552 45.8086 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 43 G -0.7700 42.5629 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 44 b 0.0287 32.7806 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 45 9 -1.4530 33.8435 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 46 ; 11.6252 11.6241 42.9379 -Arial_Black.ttf 78 I 12.8121 42.0000 47 D 0.0597 38.3112 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 48 L 0.0357 31.9965 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 49 y 11.8953 35.7815 42.9379 -Arial_Black.ttf 78 I 12.8121 42.0000 50 ‘ -1.5553 11.6241 23.2483 -Arial_Black.ttf 78 I 12.8121 42.0000 51 \ -1.1033 16.3759 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 52 R 0.0802 41.2212 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 53 < 3.5239 32.6267 34.9974 -Arial_Black.ttf 78 I 12.8121 42.0000 54 4 -1.3445 38.0612 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 55 8 -1.3132 33.8435 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 56 0 -1.1977 33.8435 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 57 A -0.1648 45.5638 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 58 E -0.1683 34.4974 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 59 B -0.1613 38.3112 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 60 v 11.7028 35.8156 30.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 61 k -0.2493 35.5315 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 62 J -0.2605 33.1556 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 63 U -0.0819 39.2150 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 64 j 0.0143 18.3427 54.5621 -Arial_Black.ttf 78 I 12.8121 42.0000 65 ( -1.0239 17.4047 56.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 66 7 -0.0357 33.5935 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 67 § -0.9427 34.2185 55.7500 -Arial_Black.ttf 78 I 12.8121 42.0000 68 $ -4.3129 35.2815 52.4362 -Arial_Black.ttf 78 I 12.8121 42.0000 69 € -1.3686 38.1914 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 70 / -1.2320 16.3759 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 71 C -1.2226 39.9082 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 72 * -1.0651 22.1565 20.6224 -Arial_Black.ttf 78 I 12.8121 42.0000 73 ” -1.0543 25.6241 23.2483 -Arial_Black.ttf 78 I 12.8121 42.0000 74 ? -1.1875 31.8138 43.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 75 { -1.1967 21.4974 56.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 76 } -1.4117 21.4974 56.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 77 , 30.3759 11.6241 24.1862 -Arial_Black.ttf 78 I 12.8121 42.0000 78 I -0.1839 12.8121 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 79 ° -1.2022 14.1250 14.1250 -Arial_Black.ttf 78 I 12.8121 42.0000 80 K 0.1242 43.9668 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 81 H -0.0287 39.2150 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 82 q 10.4797 32.7806 42.9379 -Arial_Black.ttf 78 I 12.8121 42.0000 83 & -1.3985 46.8820 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 84 ’ -0.9269 11.6241 23.2483 -Arial_Black.ttf 78 I 12.8121 42.0000 85 [ -0.1585 18.3427 53.6241 -Arial_Black.ttf 78 I 12.8121 42.0000 86 - 21.8120 16.9047 9.2483 -Arial_Black.ttf 78 I 12.8121 42.0000 87 Y 0.0079 45.5638 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 88 Q -1.1904 44.1547 48.3435 -Arial_Black.ttf 78 I 12.8121 42.0000 89 " 0.0000 26.8121 15.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 90 ! 0.0000 11.6241 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 91 x 11.7553 38.6914 30.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 92 ) -1.3562 17.4047 56.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 93 = 9.5028 30.9047 23.2483 -Arial_Black.ttf 78 I 12.8121 42.0000 94 + 5.2806 31.4388 31.4388 -Arial_Black.ttf 78 I 12.8121 42.0000 95 X -0.1434 45.1547 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 96 » 13.4167 31.1547 26.4082 -Arial_Black.ttf 78 I 12.8121 42.0000 97 ' 0.0357 11.6241 15.1879 -Arial_Black.ttf 78 I 12.8121 42.0000 98 ¢ 0.4984 34.2185 53.2203 -Arial_Black.ttf 78 I 12.8121 42.0000 99 Z -0.0389 37.3059 42.0000 -Arial_Black.ttf 78 I 12.8121 42.0000 100 > 3.5236 32.6267 34.9974 -Arial_Black.ttf 78 I 12.8121 42.0000 101 ® -1.3146 43.9720 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 102 © -1.2968 43.9720 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 103 ] -0.2565 18.3427 53.6241 -Arial_Black.ttf 78 I 12.8121 42.0000 104 é -1.1879 34.2185 44.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 105 z 11.4660 28.4327 30.3759 -Arial_Black.ttf 78 I 12.8121 42.0000 106 _ 46.3856 29.1879 2.7797 -Arial_Black.ttf 78 I 12.8121 42.0000 107 ¥ 0.0000 40.4082 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 1 t 1.2893 22.4353 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 2 h 1.2334 31.8427 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 3 a 11.4418 35.4065 32.7517 -Arial_Black.ttf 79 ° 14.1250 14.1250 4 n 11.6779 31.8427 31.5638 -Arial_Black.ttf 79 ° 14.1250 14.1250 5 P 1.1879 34.7474 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 6 o 11.7816 34.2185 32.7517 -Arial_Black.ttf 79 ° 14.1250 14.1250 7 e 11.8462 34.2185 32.7517 -Arial_Black.ttf 79 ° 14.1207 14.1207 8 : 12.6825 11.6371 30.3629 -Arial_Black.ttf 79 ° 14.1250 14.1250 9 r 11.5364 23.9073 31.5638 -Arial_Black.ttf 79 ° 14.1250 14.1250 10 l 1.3608 11.6241 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 11 i 1.1420 11.6241 42.0000 -Arial_Black.ttf 79 ° 14.1207 14.1207 12 1 0.0370 23.9105 43.1815 -Arial_Black.ttf 79 ° 14.1207 14.1207 13 | 1.3426 7.2718 53.3612 -Arial_Black.ttf 79 ° 14.1250 14.1250 14 N 1.0368 39.2150 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 15 f 0.0073 23.6233 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 16 g 11.6696 34.2185 44.1259 -Arial_Black.ttf 79 ° 14.1250 14.1250 17 d 1.2764 32.7806 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 18 W 1.2422 59.5638 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 19 s 11.7970 31.5638 32.7517 -Arial_Black.ttf 79 ° 14.1250 14.1250 20 c 11.6339 34.2185 32.7517 -Arial_Black.ttf 79 ° 14.1250 14.1250 21 u 12.8155 31.5927 31.5638 -Arial_Black.ttf 79 ° 14.1207 14.1207 22 3 0.0331 33.8834 44.3629 -Arial_Black.ttf 79 ° 14.1207 14.1207 23 ~ 15.1456 32.7258 14.0000 -Arial_Black.ttf 79 ° 14.1207 14.1207 24 # -0.0183 35.6338 44.3629 -Arial_Black.ttf 79 ° 14.1250 14.1250 25 O 0.0000 42.7168 44.3759 -Arial_Black.ttf 79 ° 14.1207 14.1207 26 ` -0.1620 14.6708 8.4532 -Arial_Black.ttf 79 ° 14.1207 14.1207 27 @ -0.0430 43.1815 49.5147 -Arial_Black.ttf 79 ° 14.1250 14.1250 28 F 1.1068 31.5927 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 29 S -0.0903 37.5323 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 30 p 11.5357 32.7806 42.9379 -Arial_Black.ttf 79 ° 14.1250 14.1250 31 “ 0.1568 25.6241 23.2483 -Arial_Black.ttf 79 ° 14.1250 14.1250 32 % 0.1196 52.3164 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 33 £ -0.2480 34.8724 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 34 . 31.4878 11.6241 11.6241 -Arial_Black.ttf 79 ° 14.1250 14.1250 35 2 -0.0927 33.5935 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 36 5 1.2774 33.8435 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 37 m 11.8847 51.5035 31.5638 -Arial_Black.ttf 79 ° 14.1250 14.1250 38 V 1.3628 45.1547 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 39 6 -0.0514 33.8435 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 40 w 12.9089 54.8121 30.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 41 T 1.1379 38.4362 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 42 M 1.3530 45.8086 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 43 G -0.0097 42.5629 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 44 b 1.1879 32.7806 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 45 9 0.0052 33.8435 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 46 ; 12.8686 11.6241 42.9379 -Arial_Black.ttf 79 ° 14.1250 14.1250 47 D 1.1397 38.3112 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 48 L 1.1855 31.9965 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 49 y 12.6648 35.7815 42.9379 -Arial_Black.ttf 79 ° 14.1250 14.1250 50 ‘ 0.2373 11.6241 23.2483 -Arial_Black.ttf 79 ° 14.1250 14.1250 51 \ -0.0738 16.3759 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 52 R 1.2834 41.2212 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 53 < 4.8375 32.6267 34.9974 -Arial_Black.ttf 79 ° 14.1250 14.1250 54 4 -0.0850 38.0612 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 55 8 0.0249 33.8435 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 56 0 0.1519 33.8435 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 57 A 1.2737 45.5638 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 58 E 0.7769 34.4974 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 59 B 1.0852 38.3112 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 60 v 12.6397 35.8156 30.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 61 k 1.1841 35.5315 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 62 J 1.1963 33.1556 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 63 U 1.1952 39.2150 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 64 j 1.1913 18.3427 54.5621 -Arial_Black.ttf 79 ° 14.1250 14.1250 65 ( 0.0857 17.4047 56.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 66 7 1.0178 33.5935 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 67 § 0.0593 34.2185 55.7500 -Arial_Black.ttf 79 ° 14.1250 14.1250 68 $ -2.8209 35.2815 52.4362 -Arial_Black.ttf 79 ° 14.1250 14.1250 69 € 0.0955 38.1914 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 70 / -0.2085 16.3759 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 71 C -0.1613 39.9082 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 72 * -0.1774 22.1565 20.6224 -Arial_Black.ttf 79 ° 14.1250 14.1250 73 ” 0.2043 25.6241 23.2483 -Arial_Black.ttf 79 ° 14.1250 14.1250 74 ? 0.0992 31.8138 43.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 75 { -0.0083 21.4974 56.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 76 } 0.0045 21.4974 56.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 77 , 31.4756 11.6241 24.1862 -Arial_Black.ttf 79 ° 14.1250 14.1250 78 I 1.1078 12.8121 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 79 ° -0.2970 14.1250 14.1250 -Arial_Black.ttf 79 ° 14.1250 14.1250 80 K 1.1884 43.9668 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 81 H 1.1110 39.2150 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 82 q 11.6339 32.7806 42.9379 -Arial_Black.ttf 79 ° 14.1250 14.1250 83 & -0.1683 46.8820 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 84 ’ 0.1134 11.6241 23.2483 -Arial_Black.ttf 79 ° 14.1250 14.1250 85 [ 1.1800 18.3427 53.6241 -Arial_Black.ttf 79 ° 14.1250 14.1250 86 - 23.4704 16.9047 9.2483 -Arial_Black.ttf 79 ° 14.1250 14.1250 87 Y 1.1741 45.5638 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 88 Q -0.1568 44.1547 48.3435 -Arial_Black.ttf 79 ° 14.1250 14.1250 89 " 0.9452 26.8121 15.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 90 ! 0.9308 11.6241 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 91 x 12.8492 38.6914 30.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 92 ) 0.1581 17.4047 56.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 93 = 10.6050 30.9047 23.2483 -Arial_Black.ttf 79 ° 14.1250 14.1250 94 + 6.4713 31.4388 31.4388 -Arial_Black.ttf 79 ° 14.1250 14.1250 95 X 1.4076 45.1547 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 96 » 14.5217 31.1547 26.4082 -Arial_Black.ttf 79 ° 14.1250 14.1250 97 ' 1.0887 11.6241 15.1879 -Arial_Black.ttf 79 ° 14.1250 14.1250 98 ¢ 1.3697 34.2185 53.2203 -Arial_Black.ttf 79 ° 14.1250 14.1250 99 Z 1.0151 37.3059 42.0000 -Arial_Black.ttf 79 ° 14.1250 14.1250 100 > 4.8448 32.6267 34.9974 -Arial_Black.ttf 79 ° 14.1250 14.1250 101 ® -0.1280 43.9720 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 102 © 0.2613 43.9720 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 103 ] 1.3659 18.3427 53.6241 -Arial_Black.ttf 79 ° 14.1250 14.1250 104 é -0.1767 34.2185 44.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 105 z 12.9674 28.4327 30.3759 -Arial_Black.ttf 79 ° 14.1250 14.1250 106 _ 47.2917 29.1879 2.7797 -Arial_Black.ttf 79 ° 14.1250 14.1250 107 ¥ 1.2737 40.4082 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 1 t -0.2238 22.4353 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 2 h 0.1728 31.8427 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 3 a 10.9015 35.4065 32.7517 -Arial_Black.ttf 80 K 43.9668 42.0000 4 n 10.1739 31.8427 31.5638 -Arial_Black.ttf 80 K 43.9668 42.0000 5 P -0.0223 34.7474 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 6 o 10.4561 34.2185 32.7517 -Arial_Black.ttf 80 K 43.9668 42.0000 7 e 10.6996 34.2185 32.7517 -Arial_Black.ttf 80 K 43.9668 42.0000 8 : 11.9632 11.6241 30.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 9 r 10.7817 23.9073 31.5638 -Arial_Black.ttf 80 K 43.9668 42.0000 10 l -0.0035 11.6241 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 11 i 0.2035 11.6241 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 12 1 -1.3056 23.9073 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 13 | -0.0821 7.2815 53.3741 -Arial_Black.ttf 80 K 43.9668 42.0000 14 N 0.1960 39.2150 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 15 f -1.2501 23.6233 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 16 g 10.1410 34.2185 44.1259 -Arial_Black.ttf 80 K 43.9668 42.0000 17 d -0.2861 32.7806 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 18 W 0.0167 59.5638 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 19 s 10.4319 31.5638 32.7517 -Arial_Black.ttf 80 K 43.9668 42.0000 20 c 10.6226 34.2185 32.7517 -Arial_Black.ttf 80 K 43.9668 42.0000 21 u 11.6779 31.5927 31.5638 -Arial_Black.ttf 80 K 43.9668 42.0000 22 3 -0.9351 33.8435 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 23 ~ 13.7325 32.7517 14.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 24 # -1.2889 35.6565 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 25 O -1.2593 42.7168 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 26 ` -1.1509 14.6591 8.4694 -Arial_Black.ttf 80 K 43.9668 42.0000 27 @ -1.4429 43.1879 49.4974 -Arial_Black.ttf 80 K 43.9668 42.0000 28 F -0.0353 31.5927 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 29 S -1.0708 37.5323 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 30 p 10.2253 32.7806 42.9379 -Arial_Black.ttf 80 K 43.9668 42.0000 31 “ -0.9654 25.6241 23.2483 -Arial_Black.ttf 80 K 43.9668 42.0000 32 % -1.1143 52.3164 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 33 £ -0.9762 34.8724 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 34 . 30.5577 11.6241 11.6241 -Arial_Black.ttf 80 K 43.9668 42.0000 35 2 -1.2667 33.5935 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 36 5 0.3092 33.8435 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 37 m 10.4631 51.5035 31.5638 -Arial_Black.ttf 80 K 43.9668 42.0000 38 V -0.0955 45.1547 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 39 6 -1.2667 33.8435 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 40 w 11.5569 54.8121 30.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 41 T 0.0568 38.4362 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 42 M -0.1099 45.8086 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 43 G -1.2212 42.5629 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 44 b -0.0760 32.7806 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 45 9 -1.0457 33.8435 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 46 ; 11.5927 11.6241 42.9379 -Arial_Black.ttf 80 K 43.9668 42.0000 47 D -0.1669 38.3112 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 48 L 0.1516 31.9965 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 49 y 11.7228 35.7815 42.9379 -Arial_Black.ttf 80 K 43.9668 42.0000 50 ‘ -1.0210 11.6241 23.2483 -Arial_Black.ttf 80 K 43.9668 42.0000 51 \ -1.1578 16.3759 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 52 R -0.2065 41.2212 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 53 < 3.7337 32.6267 34.9974 -Arial_Black.ttf 80 K 43.9668 42.0000 54 4 -0.9682 38.0612 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 55 8 -1.2417 33.8435 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 56 0 -0.9438 33.8435 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 57 A 0.1357 45.5638 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 58 E -0.2869 34.4974 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 59 B 0.0701 38.3112 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 60 v 11.7000 35.8156 30.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 61 k -0.0075 35.5315 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 62 J -0.0398 33.1556 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 63 U 0.0101 39.2150 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 64 j -0.1970 18.3427 54.5621 -Arial_Black.ttf 80 K 43.9668 42.0000 65 ( -0.7392 17.4047 56.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 66 7 0.1231 33.5935 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 67 § -1.2181 34.2185 55.7500 -Arial_Black.ttf 80 K 43.9668 42.0000 68 $ -4.0450 35.2815 52.4362 -Arial_Black.ttf 80 K 43.9668 42.0000 69 € -1.2719 38.1914 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 70 / -1.1162 16.3759 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 71 C -1.2610 39.9082 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 72 * -1.2104 22.1565 20.6224 -Arial_Black.ttf 80 K 43.9668 42.0000 73 ” -1.2041 25.6241 23.2483 -Arial_Black.ttf 80 K 43.9668 42.0000 74 ? -1.0577 31.8138 43.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 75 { -0.9466 21.4974 56.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 76 } -1.1653 21.4974 56.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 77 , 30.3320 11.6241 24.1862 -Arial_Black.ttf 80 K 43.9668 42.0000 78 I -0.2669 12.8121 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 79 ° -1.3863 14.1250 14.1250 -Arial_Black.ttf 80 K 43.9668 42.0000 80 K 0.0812 43.9668 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 81 H 0.2323 39.2150 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 82 q 10.4640 32.7806 42.9379 -Arial_Black.ttf 80 K 43.9668 42.0000 83 & -0.8986 46.8820 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 84 ’ -1.3091 11.6241 23.2483 -Arial_Black.ttf 80 K 43.9668 42.0000 85 [ -0.0580 18.3427 53.6241 -Arial_Black.ttf 80 K 43.9668 42.0000 86 - 22.1841 16.9047 9.2483 -Arial_Black.ttf 80 K 43.9668 42.0000 87 Y -0.0045 45.5638 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 88 Q -1.3646 44.1547 48.3435 -Arial_Black.ttf 80 K 43.9668 42.0000 89 " 0.1487 26.8121 15.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 90 ! -0.0050 11.6241 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 91 x 11.6374 38.6914 30.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 92 ) -1.1148 17.4047 56.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 93 = 9.5587 30.9047 23.2483 -Arial_Black.ttf 80 K 43.9668 42.0000 94 + 4.9381 31.4388 31.4388 -Arial_Black.ttf 80 K 43.9668 42.0000 95 X 0.0781 45.1547 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 96 » 13.6679 31.1547 26.4082 -Arial_Black.ttf 80 K 43.9668 42.0000 97 ' 0.2259 11.6241 15.1879 -Arial_Black.ttf 80 K 43.9668 42.0000 98 ¢ 0.0614 34.2185 53.2203 -Arial_Black.ttf 80 K 43.9668 42.0000 99 Z -0.3397 37.3059 42.0000 -Arial_Black.ttf 80 K 43.9668 42.0000 100 > 3.4469 32.6267 34.9974 -Arial_Black.ttf 80 K 43.9668 42.0000 101 ® -1.0708 43.9720 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 102 © -1.4595 43.9720 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 103 ] -0.3107 18.3427 53.6241 -Arial_Black.ttf 80 K 43.9668 42.0000 104 é -1.1819 34.2185 44.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 105 z 11.5323 28.4327 30.3759 -Arial_Black.ttf 80 K 43.9668 42.0000 106 _ 46.1029 29.1879 2.7797 -Arial_Black.ttf 80 K 43.9668 42.0000 107 ¥ -0.1335 40.4082 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 1 t 0.0056 22.4353 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 2 h -0.0748 31.8427 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 3 a 10.5452 35.4065 32.7517 -Arial_Black.ttf 81 H 39.2150 42.0000 4 n 10.4351 31.8427 31.5638 -Arial_Black.ttf 81 H 39.2150 42.0000 5 P -0.6099 34.7474 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 6 o 10.5545 34.2185 32.7517 -Arial_Black.ttf 81 H 39.2150 42.0000 7 e 10.5769 34.2185 32.7517 -Arial_Black.ttf 81 H 39.2150 42.0000 8 : 11.1445 11.6241 30.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 9 r 10.1849 23.9073 31.5638 -Arial_Black.ttf 81 H 39.2150 42.0000 10 l 0.1584 11.6241 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 11 i 0.1585 11.6241 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 12 1 -1.4634 23.9073 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 13 | 0.0482 7.2815 53.3741 -Arial_Black.ttf 81 H 39.2150 42.0000 14 N -0.2235 39.2150 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 15 f -1.2658 23.6233 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 16 g 10.4785 34.2185 44.1259 -Arial_Black.ttf 81 H 39.2150 42.0000 17 d 0.0774 32.7806 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 18 W -0.0514 59.5638 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 19 s 10.4509 31.5638 32.7517 -Arial_Black.ttf 81 H 39.2150 42.0000 20 c 10.1562 34.2185 32.7517 -Arial_Black.ttf 81 H 39.2150 42.0000 21 u 11.5880 31.5927 31.5638 -Arial_Black.ttf 81 H 39.2150 42.0000 22 3 -1.1981 33.8435 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 23 ~ 14.2830 32.7517 14.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 24 # -1.0914 35.6565 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 25 O -1.0701 42.7168 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 26 ` -1.1643 14.6591 8.4694 -Arial_Black.ttf 81 H 39.2150 42.0000 27 @ -1.2723 43.1879 49.4974 -Arial_Black.ttf 81 H 39.2150 42.0000 28 F -0.2016 31.5927 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 29 S -1.3433 37.5323 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 30 p 10.3837 32.7806 42.9379 -Arial_Black.ttf 81 H 39.2150 42.0000 31 “ -0.8844 25.6241 23.2483 -Arial_Black.ttf 81 H 39.2150 42.0000 32 % -1.1545 52.3164 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 33 £ -1.4801 34.8724 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 34 . 30.2105 11.6241 11.6241 -Arial_Black.ttf 81 H 39.2150 42.0000 35 2 -1.4829 33.5935 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 36 5 -0.2035 33.8435 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 37 m 10.3565 51.5035 31.5638 -Arial_Black.ttf 81 H 39.2150 42.0000 38 V 0.0284 45.1547 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 39 6 -1.4409 33.8435 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 40 w 11.8372 54.8121 30.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 41 T -0.1900 38.4362 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 42 M 0.0948 45.8086 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 43 G -1.1196 42.5629 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 44 b -0.0896 32.7806 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 45 9 -1.2143 33.8435 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 46 ; 11.7080 11.6241 42.9379 -Arial_Black.ttf 81 H 39.2150 42.0000 47 D 0.2239 38.3112 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 48 L 0.0319 31.9965 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 49 y 11.4174 35.7815 42.9379 -Arial_Black.ttf 81 H 39.2150 42.0000 50 ‘ -0.9753 11.6241 23.2483 -Arial_Black.ttf 81 H 39.2150 42.0000 51 \ -1.3243 16.3759 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 52 R -0.3639 41.2212 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 53 < 3.5369 32.6267 34.9974 -Arial_Black.ttf 81 H 39.2150 42.0000 54 4 -1.3562 38.0612 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 55 8 -1.3734 33.8435 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 56 0 -0.9886 33.8435 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 57 A 0.2548 45.5638 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 58 E 0.1594 34.4974 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 59 B 0.0371 38.3112 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 60 v 11.5769 35.8156 30.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 61 k 0.0885 35.5315 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 62 J -0.0611 33.1556 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 63 U 0.1672 39.2150 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 64 j 0.3060 18.3427 54.5621 -Arial_Black.ttf 81 H 39.2150 42.0000 65 ( -1.0540 17.4047 56.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 66 7 0.1007 33.5935 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 67 § -1.1110 34.2185 55.7500 -Arial_Black.ttf 81 H 39.2150 42.0000 68 $ -4.2026 35.2815 52.4362 -Arial_Black.ttf 81 H 39.2150 42.0000 69 € -1.1565 38.1914 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 70 / -1.5740 16.3759 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 71 C -1.3492 39.9082 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 72 * -1.2737 22.1565 20.6224 -Arial_Black.ttf 81 H 39.2150 42.0000 73 ” -1.0837 25.6241 23.2483 -Arial_Black.ttf 81 H 39.2150 42.0000 74 ? -1.2047 31.8138 43.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 75 { -1.5790 21.4974 56.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 76 } -1.0058 21.4974 56.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 77 , 30.4913 11.6241 24.1862 -Arial_Black.ttf 81 H 39.2150 42.0000 78 I -0.1846 12.8121 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 79 ° -1.1560 14.1250 14.1250 -Arial_Black.ttf 81 H 39.2150 42.0000 80 K 0.0992 43.9668 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 81 H 0.3621 39.2150 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 82 q 10.3491 32.7806 42.9379 -Arial_Black.ttf 81 H 39.2150 42.0000 83 & -1.4076 46.8820 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 84 ’ -0.9201 11.6241 23.2483 -Arial_Black.ttf 81 H 39.2150 42.0000 85 [ -0.2516 18.3427 53.6241 -Arial_Black.ttf 81 H 39.2150 42.0000 86 - 21.8552 16.9047 9.2483 -Arial_Black.ttf 81 H 39.2150 42.0000 87 Y 0.0039 45.5638 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 88 Q -1.0633 44.1547 48.3435 -Arial_Black.ttf 81 H 39.2150 42.0000 89 " 0.2345 26.8121 15.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 90 ! -0.3820 11.6241 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 91 x 11.6228 38.6914 30.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 92 ) -1.0499 17.4047 56.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 93 = 9.1936 30.9047 23.2483 -Arial_Black.ttf 81 H 39.2150 42.0000 94 + 5.4738 31.4388 31.4388 -Arial_Black.ttf 81 H 39.2150 42.0000 95 X 0.1672 45.1547 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 96 » 13.2081 31.1547 26.4082 -Arial_Black.ttf 81 H 39.2150 42.0000 97 ' -0.0284 11.6241 15.1879 -Arial_Black.ttf 81 H 39.2150 42.0000 98 ¢ 0.6027 34.2185 53.2203 -Arial_Black.ttf 81 H 39.2150 42.0000 99 Z 0.1879 37.3059 42.0000 -Arial_Black.ttf 81 H 39.2150 42.0000 100 > 3.6047 32.6267 34.9974 -Arial_Black.ttf 81 H 39.2150 42.0000 101 ® -1.1959 43.9720 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 102 © -1.2708 43.9720 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 103 ] -0.1678 18.3427 53.6241 -Arial_Black.ttf 81 H 39.2150 42.0000 104 é -1.4103 34.2185 44.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 105 z 11.7123 28.4327 30.3759 -Arial_Black.ttf 81 H 39.2150 42.0000 106 _ 46.0911 29.1879 2.7797 -Arial_Black.ttf 81 H 39.2150 42.0000 107 ¥ -0.0829 40.4082 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 1 t -10.3012 22.4353 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 2 h -10.3206 31.8427 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 3 a -0.1048 35.4065 32.7517 -Arial_Black.ttf 82 q 32.7806 42.9379 4 n 0.3130 31.8427 31.5638 -Arial_Black.ttf 82 q 32.7806 42.9379 5 P -10.0362 34.7474 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 6 o -0.0479 34.2185 32.7517 -Arial_Black.ttf 82 q 32.7806 42.9379 7 e -0.2355 34.2185 32.7517 -Arial_Black.ttf 82 q 32.7806 42.9379 8 : 1.3673 11.6241 30.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 9 r 0.0466 23.9073 31.5638 -Arial_Black.ttf 82 q 32.7806 42.9379 10 l -10.2064 11.6241 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 11 i -10.4803 11.6241 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 12 1 -11.5273 23.9073 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 13 | -10.7376 7.2815 53.3741 -Arial_Black.ttf 82 q 32.7806 42.9379 14 N -10.6006 39.2150 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 15 f -11.7340 23.6233 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 16 g -0.2133 34.2185 44.1259 -Arial_Black.ttf 82 q 32.7806 42.9379 17 d -10.8071 32.7806 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 18 W -10.3476 59.5638 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 19 s -0.0992 31.5638 32.7517 -Arial_Black.ttf 82 q 32.7806 42.9379 20 c -0.0469 34.2185 32.7517 -Arial_Black.ttf 82 q 32.7806 42.9379 21 u 1.3108 31.5927 31.5638 -Arial_Black.ttf 82 q 32.7806 42.9379 22 3 -11.6133 33.8435 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 23 ~ 3.4039 32.7517 14.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 24 # -11.7924 35.6565 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 25 O -12.0061 42.7168 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 26 ` -11.6435 14.6591 8.4694 -Arial_Black.ttf 82 q 32.7806 42.9379 27 @ -11.8123 43.1879 49.4974 -Arial_Black.ttf 82 q 32.7806 42.9379 28 F -10.5967 31.5927 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 29 S -11.7123 37.5323 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 30 p -0.0122 32.7806 42.9379 -Arial_Black.ttf 82 q 32.7806 42.9379 31 “ -11.5273 25.6241 23.2483 -Arial_Black.ttf 82 q 32.7806 42.9379 32 % -11.6167 52.3164 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 33 £ -11.2761 34.8724 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 34 . 19.8924 11.6241 11.6241 -Arial_Black.ttf 82 q 32.7806 42.9379 35 2 -11.7158 33.5935 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 36 5 -10.5636 33.8435 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 37 m -0.1630 51.5035 31.5638 -Arial_Black.ttf 82 q 32.7806 42.9379 38 V -10.3653 45.1547 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 39 6 -11.6436 33.8435 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 40 w 0.9183 54.8121 30.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 41 T -10.5687 38.4362 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 42 M -10.4279 45.8086 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 43 G -11.5138 42.5629 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 44 b -10.4362 32.7806 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 45 9 -11.6300 33.8435 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 46 ; 1.2288 11.6241 42.9379 -Arial_Black.ttf 82 q 32.7806 42.9379 47 D -10.4389 38.3112 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 48 L -10.4491 31.9965 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 49 y 1.2283 35.7815 42.9379 -Arial_Black.ttf 82 q 32.7806 42.9379 50 ‘ -11.9867 11.6241 23.2483 -Arial_Black.ttf 82 q 32.7806 42.9379 51 \ -11.7483 16.3759 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 52 R -10.4774 41.2212 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 53 < -7.0099 32.6267 34.9974 -Arial_Black.ttf 82 q 32.7806 42.9379 54 4 -11.6481 38.0612 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 55 8 -11.5318 33.8435 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 56 0 -11.7650 33.8435 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 57 A -10.6545 45.5638 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 58 E -10.3894 34.4974 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 59 B -10.3346 38.3112 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 60 v 1.3849 35.8156 30.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 61 k -10.4477 35.5315 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 62 J -10.7848 33.1556 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 63 U -10.7429 39.2150 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 64 j -10.5812 18.3427 54.5621 -Arial_Black.ttf 82 q 32.7806 42.9379 65 ( -11.4498 17.4047 56.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 66 7 -10.6388 33.5935 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 67 § -11.8406 34.2185 55.7500 -Arial_Black.ttf 82 q 32.7806 42.9379 68 $ -14.5151 35.2815 52.4362 -Arial_Black.ttf 82 q 32.7806 42.9379 69 € -11.4080 38.1914 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 70 / -11.5444 16.3759 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 71 C -11.4985 39.9082 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 72 * -11.7488 22.1565 20.6224 -Arial_Black.ttf 82 q 32.7806 42.9379 73 ” -11.6348 25.6241 23.2483 -Arial_Black.ttf 82 q 32.7806 42.9379 74 ? -11.9365 31.8138 43.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 75 { -11.7844 21.4974 56.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 76 } -11.7812 21.4974 56.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 77 , 19.7655 11.6241 24.1862 -Arial_Black.ttf 82 q 32.7806 42.9379 78 I -10.3138 12.8121 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 79 ° -11.5482 14.1250 14.1250 -Arial_Black.ttf 82 q 32.7806 42.9379 80 K -10.2106 43.9668 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 81 H -10.4380 39.2150 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 82 q -0.1260 32.7806 42.9379 -Arial_Black.ttf 82 q 32.7806 42.9379 83 & -12.0432 46.8820 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 84 ’ -11.8261 11.6241 23.2483 -Arial_Black.ttf 82 q 32.7806 42.9379 85 [ -10.3432 18.3427 53.6241 -Arial_Black.ttf 82 q 32.7806 42.9379 86 - 11.5371 16.9047 9.2483 -Arial_Black.ttf 82 q 32.7806 42.9379 87 Y -10.5610 45.5638 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 88 Q -11.4163 44.1547 48.3435 -Arial_Black.ttf 82 q 32.7806 42.9379 89 " -10.3894 26.8121 15.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 90 ! -10.4798 11.6241 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 91 x 1.0609 38.6914 30.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 92 ) -11.7203 17.4047 56.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 93 = -0.8984 30.9047 23.2483 -Arial_Black.ttf 82 q 32.7806 42.9379 94 + -5.1664 31.4388 31.4388 -Arial_Black.ttf 82 q 32.7806 42.9379 95 X -10.8168 45.1547 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 96 » 3.0932 31.1547 26.4082 -Arial_Black.ttf 82 q 32.7806 42.9379 97 ' -10.5090 11.6241 15.1879 -Arial_Black.ttf 82 q 32.7806 42.9379 98 ¢ -10.0240 34.2185 53.2203 -Arial_Black.ttf 82 q 32.7806 42.9379 99 Z -10.7746 37.3059 42.0000 -Arial_Black.ttf 82 q 32.7806 42.9379 100 > -6.8561 32.6267 34.9974 -Arial_Black.ttf 82 q 32.7806 42.9379 101 ® -11.6658 43.9720 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 102 © -11.7438 43.9720 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 103 ] -10.8033 18.3427 53.6241 -Arial_Black.ttf 82 q 32.7806 42.9379 104 é -11.7515 34.2185 44.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 105 z 1.2334 28.4327 30.3759 -Arial_Black.ttf 82 q 32.7806 42.9379 106 _ 35.5836 29.1879 2.7797 -Arial_Black.ttf 82 q 32.7806 42.9379 107 ¥ -10.4876 40.4082 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 1 t 1.1995 22.4353 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 2 h 1.2119 31.8427 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 3 a 11.6611 35.4065 32.7517 -Arial_Black.ttf 83 & 46.8820 44.3759 4 n 11.7223 31.8427 31.5638 -Arial_Black.ttf 83 & 46.8820 44.3759 5 P 0.9648 34.7474 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 6 o 11.7195 34.2185 32.7517 -Arial_Black.ttf 83 & 46.8820 44.3759 7 e 11.5378 34.2185 32.7517 -Arial_Black.ttf 83 & 46.8516 44.3629 8 : 12.5956 11.6371 30.3629 -Arial_Black.ttf 83 & 46.8820 44.3759 9 r 11.6072 23.9073 31.5638 -Arial_Black.ttf 83 & 46.8820 44.3759 10 l 1.1411 11.6241 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 11 i 1.4354 11.6241 42.0000 -Arial_Black.ttf 83 & 46.8516 44.3629 12 1 -0.2121 23.9105 43.1815 -Arial_Black.ttf 83 & 46.8516 44.3629 13 | 1.2155 7.2718 53.3612 -Arial_Black.ttf 83 & 46.8820 44.3759 14 N 1.2366 39.2150 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 15 f 0.0371 23.6233 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 16 g 11.2353 34.2185 44.1259 -Arial_Black.ttf 83 & 46.8820 44.3759 17 d 1.2124 32.7806 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 18 W 1.3042 59.5638 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 19 s 11.6241 31.5638 32.7517 -Arial_Black.ttf 83 & 46.8820 44.3759 20 c 11.7296 34.2185 32.7517 -Arial_Black.ttf 83 & 46.8820 44.3759 21 u 13.0178 31.5927 31.5638 -Arial_Black.ttf 83 & 46.8516 44.3629 22 3 0.0187 33.8834 44.3629 -Arial_Black.ttf 83 & 46.8516 44.3629 23 ~ 15.3261 32.7258 14.0000 -Arial_Black.ttf 83 & 46.8516 44.3629 24 # 0.2649 35.6338 44.3629 -Arial_Black.ttf 83 & 46.8820 44.3759 25 O 0.3390 42.7168 44.3759 -Arial_Black.ttf 83 & 46.8516 44.3629 26 ` -0.0667 14.6708 8.4532 -Arial_Black.ttf 83 & 46.8516 44.3629 27 @ 0.1172 43.1815 49.5147 -Arial_Black.ttf 83 & 46.8820 44.3759 28 F 1.2334 31.5927 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 29 S 0.1660 37.5323 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 30 p 11.4923 32.7806 42.9379 -Arial_Black.ttf 83 & 46.8820 44.3759 31 “ 0.1651 25.6241 23.2483 -Arial_Black.ttf 83 & 46.8820 44.3759 32 % 0.4334 52.3164 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 33 £ 0.1803 34.8724 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 34 . 31.4517 11.6241 11.6241 -Arial_Black.ttf 83 & 46.8820 44.3759 35 2 -0.3629 33.5935 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 36 5 0.9265 33.8435 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 37 m 11.5277 51.5035 31.5638 -Arial_Black.ttf 83 & 46.8820 44.3759 38 V 1.1352 45.1547 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 39 6 0.2646 33.8435 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 40 w 12.7760 54.8121 30.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 41 T 1.2774 38.4362 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 42 M 1.0431 45.8086 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 43 G 0.2721 42.5629 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 44 b 1.1717 32.7806 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 45 9 -0.1627 33.8435 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 46 ; 12.9358 11.6241 42.9379 -Arial_Black.ttf 83 & 46.8820 44.3759 47 D 1.4869 38.3112 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 48 L 1.3919 31.9965 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 49 y 12.7546 35.7815 42.9379 -Arial_Black.ttf 83 & 46.8820 44.3759 50 ‘ 0.0288 11.6241 23.2483 -Arial_Black.ttf 83 & 46.8820 44.3759 51 \ 0.0594 16.3759 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 52 R 1.2407 41.2212 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 53 < 4.5800 32.6267 34.9974 -Arial_Black.ttf 83 & 46.8820 44.3759 54 4 -0.1051 38.0612 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 55 8 -0.2382 33.8435 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 56 0 0.1336 33.8435 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 57 A 1.1481 45.5638 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 58 E 1.2882 34.4974 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 59 B 1.1560 38.3112 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 60 v 13.0243 35.8156 30.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 61 k 1.1277 35.5315 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 62 J 1.5473 33.1556 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 63 U 1.1282 39.2150 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 64 j 1.2650 18.3427 54.5621 -Arial_Black.ttf 83 & 46.8820 44.3759 65 ( 0.1006 17.4047 56.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 66 7 0.7908 33.5935 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 67 § -0.1406 34.2185 55.7500 -Arial_Black.ttf 83 & 46.8820 44.3759 68 $ -2.4131 35.2815 52.4362 -Arial_Black.ttf 83 & 46.8820 44.3759 69 € -0.5205 38.1914 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 70 / 0.0249 16.3759 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 71 C -0.5498 39.9082 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 72 * -0.1844 22.1565 20.6224 -Arial_Black.ttf 83 & 46.8820 44.3759 73 ” -0.6104 25.6241 23.2483 -Arial_Black.ttf 83 & 46.8820 44.3759 74 ? -0.1739 31.8138 43.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 75 { -0.1995 21.4974 56.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 76 } 0.2732 21.4974 56.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 77 , 31.6789 11.6241 24.1862 -Arial_Black.ttf 83 & 46.8820 44.3759 78 I 1.1667 12.8121 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 79 ° 0.0839 14.1250 14.1250 -Arial_Black.ttf 83 & 46.8820 44.3759 80 K 1.4076 43.9668 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 81 H 1.3510 39.2150 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 82 q 11.6915 32.7806 42.9379 -Arial_Black.ttf 83 & 46.8820 44.3759 83 & 0.2706 46.8820 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 84 ’ -0.0524 11.6241 23.2483 -Arial_Black.ttf 83 & 46.8820 44.3759 85 [ 1.3469 18.3427 53.6241 -Arial_Black.ttf 83 & 46.8820 44.3759 86 - 22.9851 16.9047 9.2483 -Arial_Black.ttf 83 & 46.8820 44.3759 87 Y 1.3460 45.5638 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 88 Q -0.1558 44.1547 48.3435 -Arial_Black.ttf 83 & 46.8820 44.3759 89 " 0.9513 26.8121 15.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 90 ! 0.9877 11.6241 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 91 x 13.0720 38.6914 30.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 92 ) -0.0452 17.4047 56.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 93 = 10.6866 30.9047 23.2483 -Arial_Black.ttf 83 & 46.8820 44.3759 94 + 5.9499 31.4388 31.4388 -Arial_Black.ttf 83 & 46.8820 44.3759 95 X 1.5447 45.1547 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 96 » 14.6079 31.1547 26.4082 -Arial_Black.ttf 83 & 46.8820 44.3759 97 ' 1.2375 11.6241 15.1879 -Arial_Black.ttf 83 & 46.8820 44.3759 98 ¢ 1.7244 34.2185 53.2203 -Arial_Black.ttf 83 & 46.8820 44.3759 99 Z 1.1911 37.3059 42.0000 -Arial_Black.ttf 83 & 46.8820 44.3759 100 > 4.4914 32.6267 34.9974 -Arial_Black.ttf 83 & 46.8820 44.3759 101 ® -0.3387 43.9720 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 102 © -0.1645 43.9720 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 103 ] 1.4382 18.3427 53.6241 -Arial_Black.ttf 83 & 46.8820 44.3759 104 é 0.1668 34.2185 44.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 105 z 12.9387 28.4327 30.3759 -Arial_Black.ttf 83 & 46.8820 44.3759 106 _ 47.0655 29.1879 2.7797 -Arial_Black.ttf 83 & 46.8820 44.3759 107 ¥ 1.5304 40.4082 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 1 t 1.2719 22.4353 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 2 h 1.2334 31.8427 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 3 a 11.6983 35.4065 32.7517 -Arial_Black.ttf 84 ’ 11.6241 23.2483 4 n 11.5045 31.8427 31.5638 -Arial_Black.ttf 84 ’ 11.6241 23.2483 5 P 0.9423 34.7474 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 6 o 11.5787 34.2185 32.7517 -Arial_Black.ttf 84 ’ 11.6241 23.2483 7 e 11.5027 34.2185 32.7517 -Arial_Black.ttf 84 ’ 11.6371 23.2742 8 : 12.8105 11.6371 30.3629 -Arial_Black.ttf 84 ’ 11.6241 23.2483 9 r 11.6997 23.9073 31.5638 -Arial_Black.ttf 84 ’ 11.6241 23.2483 10 l 1.2764 11.6241 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 11 i 1.2732 11.6241 42.0000 -Arial_Black.ttf 84 ’ 11.6371 23.2742 12 1 0.0989 23.9105 43.1815 -Arial_Black.ttf 84 ’ 11.6371 23.2742 13 | 1.3686 7.2718 53.3612 -Arial_Black.ttf 84 ’ 11.6241 23.2483 14 N 1.2334 39.2150 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 15 f 0.1228 23.6233 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 16 g 11.3674 34.2185 44.1259 -Arial_Black.ttf 84 ’ 11.6241 23.2483 17 d 1.3517 32.7806 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 18 W 0.7223 59.5638 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 19 s 11.5811 31.5638 32.7517 -Arial_Black.ttf 84 ’ 11.6241 23.2483 20 c 11.8809 34.2185 32.7517 -Arial_Black.ttf 84 ’ 11.6241 23.2483 21 u 12.4793 31.5927 31.5638 -Arial_Black.ttf 84 ’ 11.6371 23.2742 22 3 -0.1155 33.8834 44.3629 -Arial_Black.ttf 84 ’ 11.6371 23.2742 23 ~ 15.1922 32.7258 14.0000 -Arial_Black.ttf 84 ’ 11.6371 23.2742 24 # 0.0604 35.6338 44.3629 -Arial_Black.ttf 84 ’ 11.6241 23.2483 25 O -0.2085 42.7168 44.3759 -Arial_Black.ttf 84 ’ 11.6371 23.2742 26 ` 0.0784 14.6708 8.4532 -Arial_Black.ttf 84 ’ 11.6371 23.2742 27 @ -0.0345 43.1815 49.5147 -Arial_Black.ttf 84 ’ 11.6241 23.2483 28 F 0.9891 31.5927 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 29 S 0.3619 37.5323 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 30 p 11.6507 32.7806 42.9379 -Arial_Black.ttf 84 ’ 11.6241 23.2483 31 “ -0.1339 25.6241 23.2483 -Arial_Black.ttf 84 ’ 11.6241 23.2483 32 % 0.0375 52.3164 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 33 £ -0.1312 34.8724 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 34 . 31.8576 11.6241 11.6241 -Arial_Black.ttf 84 ’ 11.6241 23.2483 35 2 -0.1131 33.5935 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 36 5 1.2649 33.8435 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 37 m 11.6983 51.5035 31.5638 -Arial_Black.ttf 84 ’ 11.6241 23.2483 38 V 1.1834 45.1547 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 39 6 0.0599 33.8435 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 40 w 12.8478 54.8121 30.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 41 T 1.1879 38.4362 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 42 M 1.1658 45.8086 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 43 G -0.0052 42.5629 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 44 b 1.2556 32.7806 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 45 9 -0.0000 33.8435 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 46 ; 12.8121 11.6241 42.9379 -Arial_Black.ttf 84 ’ 11.6241 23.2483 47 D 1.2484 38.3112 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 48 L 1.4503 31.9965 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 49 y 12.6990 35.7815 42.9379 -Arial_Black.ttf 84 ’ 11.6241 23.2483 50 ‘ 0.0070 11.6241 23.2483 -Arial_Black.ttf 84 ’ 11.6241 23.2483 51 \ 0.1728 16.3759 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 52 R 1.3930 41.2212 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 53 < 4.5808 32.6267 34.9974 -Arial_Black.ttf 84 ’ 11.6241 23.2483 54 4 0.0135 38.0612 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 55 8 0.1382 33.8435 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 56 0 -0.0083 33.8435 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 57 A 1.0665 45.5638 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 58 E 0.9801 34.4974 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 59 B 1.0952 38.3112 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 60 v 12.9706 35.8156 30.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 61 k 0.9409 35.5315 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 62 J 1.2764 33.1556 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 63 U 1.2678 39.2150 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 64 j 1.1106 18.3427 54.5621 -Arial_Black.ttf 84 ’ 11.6241 23.2483 65 ( -0.1395 17.4047 56.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 66 7 1.3108 33.5935 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 67 § -0.0885 34.2185 55.7500 -Arial_Black.ttf 84 ’ 11.6241 23.2483 68 $ -2.6783 35.2815 52.4362 -Arial_Black.ttf 84 ’ 11.6241 23.2483 69 € -0.0839 38.1914 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 70 / 0.0000 16.3759 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 71 C 0.2178 39.9082 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 72 * -0.0102 22.1565 20.6224 -Arial_Black.ttf 84 ’ 11.6241 23.2483 73 ” 0.1721 25.6241 23.2483 -Arial_Black.ttf 84 ’ 11.6241 23.2483 74 ? -0.0403 31.8138 43.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 75 { -0.0187 21.4974 56.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 76 } 0.2257 21.4974 56.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 77 , 31.7279 11.6241 24.1862 -Arial_Black.ttf 84 ’ 11.6241 23.2483 78 I 1.0516 12.8121 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 79 ° 0.0760 14.1250 14.1250 -Arial_Black.ttf 84 ’ 11.6241 23.2483 80 K 0.9312 43.9668 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 81 H 1.3205 39.2150 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 82 q 11.8854 32.7806 42.9379 -Arial_Black.ttf 84 ’ 11.6241 23.2483 83 & -0.2739 46.8820 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 84 ’ -0.1274 11.6241 23.2483 -Arial_Black.ttf 84 ’ 11.6241 23.2483 85 [ 1.1764 18.3427 53.6241 -Arial_Black.ttf 84 ’ 11.6241 23.2483 86 - 23.0390 16.9047 9.2483 -Arial_Black.ttf 84 ’ 11.6241 23.2483 87 Y 1.2065 45.5638 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 88 Q 0.0259 44.1547 48.3435 -Arial_Black.ttf 84 ’ 11.6241 23.2483 89 " 1.1495 26.8121 15.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 90 ! 0.9839 11.6241 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 91 x 12.9839 38.6914 30.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 92 ) 0.0444 17.4047 56.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 93 = 10.6907 30.9047 23.2483 -Arial_Black.ttf 84 ’ 11.6241 23.2483 94 + 6.5667 31.4388 31.4388 -Arial_Black.ttf 84 ’ 11.6241 23.2483 95 X 1.0099 45.1547 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 96 » 14.5056 31.1547 26.4082 -Arial_Black.ttf 84 ’ 11.6241 23.2483 97 ' 1.2899 11.6241 15.1879 -Arial_Black.ttf 84 ’ 11.6241 23.2483 98 ¢ 1.5061 34.2185 53.2203 -Arial_Black.ttf 84 ’ 11.6241 23.2483 99 Z 1.1550 37.3059 42.0000 -Arial_Black.ttf 84 ’ 11.6241 23.2483 100 > 4.7480 32.6267 34.9974 -Arial_Black.ttf 84 ’ 11.6241 23.2483 101 ® 0.0045 43.9720 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 102 © 0.0865 43.9720 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 103 ] 1.1931 18.3427 53.6241 -Arial_Black.ttf 84 ’ 11.6241 23.2483 104 é 0.0524 34.2185 44.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 105 z 12.7319 28.4327 30.3759 -Arial_Black.ttf 84 ’ 11.6241 23.2483 106 _ 47.4132 29.1879 2.7797 -Arial_Black.ttf 84 ’ 11.6241 23.2483 107 ¥ 1.1922 40.4082 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 1 t 0.1103 22.4353 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 2 h 0.1581 31.8427 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 3 a 10.2874 35.4065 32.7517 -Arial_Black.ttf 85 [ 18.3427 53.6241 4 n 10.7620 31.8427 31.5638 -Arial_Black.ttf 85 [ 18.3427 53.6241 5 P -0.3288 34.7474 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 6 o 10.4862 34.2185 32.7517 -Arial_Black.ttf 85 [ 18.3427 53.6241 7 e 10.3727 34.2185 32.7517 -Arial_Black.ttf 85 [ 18.3653 53.6371 8 : 11.7091 11.6371 30.3629 -Arial_Black.ttf 85 [ 18.3427 53.6241 9 r 10.4274 23.9073 31.5638 -Arial_Black.ttf 85 [ 18.3427 53.6241 10 l 0.0455 11.6241 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 11 i -0.2865 11.6241 42.0000 -Arial_Black.ttf 85 [ 18.3653 53.6371 12 1 -1.4612 23.9105 43.1815 -Arial_Black.ttf 85 [ 18.3653 53.6371 13 | 0.1655 7.2718 53.3612 -Arial_Black.ttf 85 [ 18.3427 53.6241 14 N -0.0871 39.2150 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 15 f -1.2803 23.6233 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 16 g 10.5868 34.2185 44.1259 -Arial_Black.ttf 85 [ 18.3427 53.6241 17 d -0.0015 32.7806 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 18 W -0.3949 59.5638 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 19 s 10.2596 31.5638 32.7517 -Arial_Black.ttf 85 [ 18.3427 53.6241 20 c 10.5247 34.2185 32.7517 -Arial_Black.ttf 85 [ 18.3427 53.6241 21 u 11.5083 31.5927 31.5638 -Arial_Black.ttf 85 [ 18.3653 53.6371 22 3 -0.9989 33.8834 44.3629 -Arial_Black.ttf 85 [ 18.3653 53.6371 23 ~ 14.0439 32.7258 14.0000 -Arial_Black.ttf 85 [ 18.3653 53.6371 24 # -0.8974 35.6338 44.3629 -Arial_Black.ttf 85 [ 18.3427 53.6241 25 O -1.1834 42.7168 44.3759 -Arial_Black.ttf 85 [ 18.3653 53.6371 26 ` -1.1098 14.6708 8.4532 -Arial_Black.ttf 85 [ 18.3653 53.6371 27 @ -1.0951 43.1815 49.5147 -Arial_Black.ttf 85 [ 18.3427 53.6241 28 F -0.2131 31.5927 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 29 S -1.2338 37.5323 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 30 p 10.5233 32.7806 42.9379 -Arial_Black.ttf 85 [ 18.3427 53.6241 31 “ -1.5259 25.6241 23.2483 -Arial_Black.ttf 85 [ 18.3427 53.6241 32 % -1.1796 52.3164 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 33 £ -1.5294 34.8724 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 34 . 30.4213 11.6241 11.6241 -Arial_Black.ttf 85 [ 18.3427 53.6241 35 2 -1.1068 33.5935 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 36 5 0.0000 33.8435 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 37 m 10.1469 51.5035 31.5638 -Arial_Black.ttf 85 [ 18.3427 53.6241 38 V -0.3662 45.1547 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 39 6 -1.2802 33.8435 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 40 w 11.4628 54.8121 30.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 41 T -0.0871 38.4362 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 42 M -0.0135 45.8086 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 43 G -1.2672 42.5629 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 44 b -0.2342 32.7806 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 45 9 -1.3530 33.8435 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 46 ; 11.6759 11.6241 42.9379 -Arial_Black.ttf 85 [ 18.3427 53.6241 47 D 0.1190 38.3112 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 48 L 0.4736 31.9965 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 49 y 11.6273 35.7815 42.9379 -Arial_Black.ttf 85 [ 18.3427 53.6241 50 ‘ -1.1898 11.6241 23.2483 -Arial_Black.ttf 85 [ 18.3427 53.6241 51 \ -1.1897 16.3759 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 52 R 0.0774 41.2212 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 53 < 3.3598 32.6267 34.9974 -Arial_Black.ttf 85 [ 18.3427 53.6241 54 4 -1.2399 38.0612 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 55 8 -1.2653 33.8435 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 56 0 -1.0826 33.8435 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 57 A -0.0774 45.5638 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 58 E -0.0889 34.4974 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 59 B -0.0482 38.3112 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 60 v 12.0498 35.8156 30.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 61 k 0.0065 35.5315 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 62 J 0.2411 33.1556 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 63 U -0.4445 39.2150 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 64 j -0.0979 18.3427 54.5621 -Arial_Black.ttf 85 [ 18.3427 53.6241 65 ( -1.0242 17.4047 56.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 66 7 -0.1608 33.5935 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 67 § -1.2348 34.2185 55.7500 -Arial_Black.ttf 85 [ 18.3427 53.6241 68 $ -4.0561 35.2815 52.4362 -Arial_Black.ttf 85 [ 18.3427 53.6241 69 € -1.4765 38.1914 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 70 / -1.1425 16.3759 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 71 C -1.0183 39.9082 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 72 * -1.2646 22.1565 20.6224 -Arial_Black.ttf 85 [ 18.3427 53.6241 73 ” -1.1693 25.6241 23.2483 -Arial_Black.ttf 85 [ 18.3427 53.6241 74 ? -1.5686 31.8138 43.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 75 { -1.1022 21.4974 56.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 76 } -1.3135 21.4974 56.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 77 , 30.3639 11.6241 24.1862 -Arial_Black.ttf 85 [ 18.3427 53.6241 78 I 0.0240 12.8121 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 79 ° -0.9756 14.1250 14.1250 -Arial_Black.ttf 85 [ 18.3427 53.6241 80 K -0.0409 43.9668 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 81 H -0.4288 39.2150 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 82 q 10.4362 32.7806 42.9379 -Arial_Black.ttf 85 [ 18.3427 53.6241 83 & -1.1879 46.8820 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 84 ’ -1.3562 11.6241 23.2483 -Arial_Black.ttf 85 [ 18.3427 53.6241 85 [ 0.1371 18.3427 53.6241 -Arial_Black.ttf 85 [ 18.3427 53.6241 86 - 22.1429 16.9047 9.2483 -Arial_Black.ttf 85 [ 18.3427 53.6241 87 Y -0.1228 45.5638 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 88 Q -1.1977 44.1547 48.3435 -Arial_Black.ttf 85 [ 18.3427 53.6241 89 " 0.0527 26.8121 15.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 90 ! -0.1721 11.6241 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 91 x 11.7238 38.6914 30.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 92 ) -1.3635 17.4047 56.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 93 = 9.3394 30.9047 23.2483 -Arial_Black.ttf 85 [ 18.3427 53.6241 94 + 5.2088 31.4388 31.4388 -Arial_Black.ttf 85 [ 18.3427 53.6241 95 X -0.0078 45.1547 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 96 » 13.4554 31.1547 26.4082 -Arial_Black.ttf 85 [ 18.3427 53.6241 97 ' 0.0857 11.6241 15.1879 -Arial_Black.ttf 85 [ 18.3427 53.6241 98 ¢ 0.3724 34.2185 53.2203 -Arial_Black.ttf 85 [ 18.3427 53.6241 99 Z -0.2137 37.3059 42.0000 -Arial_Black.ttf 85 [ 18.3427 53.6241 100 > 3.3424 32.6267 34.9974 -Arial_Black.ttf 85 [ 18.3427 53.6241 101 ® -1.2194 43.9720 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 102 © -1.1082 43.9720 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 103 ] 0.1704 18.3427 53.6241 -Arial_Black.ttf 85 [ 18.3427 53.6241 104 é -1.0099 34.2185 44.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 105 z 11.7442 28.4327 30.3759 -Arial_Black.ttf 85 [ 18.3427 53.6241 106 _ 46.0329 29.1879 2.7797 -Arial_Black.ttf 85 [ 18.3427 53.6241 107 ¥ -0.0839 40.4082 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 1 t -22.1267 22.4353 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 2 h -21.8459 31.8427 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 3 a -11.6730 35.4065 32.7517 -Arial_Black.ttf 86 - 16.9047 9.2483 4 n -11.5797 31.8427 31.5638 -Arial_Black.ttf 86 - 16.9047 9.2483 5 P -21.9572 34.7474 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 6 o -11.3851 34.2185 32.7517 -Arial_Black.ttf 86 - 16.9047 9.2483 7 e -11.7959 34.2185 32.7517 -Arial_Black.ttf 86 - 16.9080 9.2397 8 : -10.4633 11.6371 30.3629 -Arial_Black.ttf 86 - 16.9047 9.2483 9 r -11.6364 23.9073 31.5638 -Arial_Black.ttf 86 - 16.9047 9.2483 10 l -22.1586 11.6241 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 11 i -21.8941 11.6241 42.0000 -Arial_Black.ttf 86 - 16.9080 9.2397 12 1 -23.2576 23.9105 43.1815 -Arial_Black.ttf 86 - 16.9080 9.2397 13 | -22.1048 7.2718 53.3612 -Arial_Black.ttf 86 - 16.9047 9.2483 14 N -22.0402 39.2150 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 15 f -23.2947 23.6233 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 16 g -11.8055 34.2185 44.1259 -Arial_Black.ttf 86 - 16.9047 9.2483 17 d -22.2010 32.7806 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 18 W -22.1540 59.5638 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 19 s -11.7748 31.5638 32.7517 -Arial_Black.ttf 86 - 16.9047 9.2483 20 c -11.5850 34.2185 32.7517 -Arial_Black.ttf 86 - 16.9047 9.2483 21 u -10.4869 31.5927 31.5638 -Arial_Black.ttf 86 - 16.9080 9.2397 22 3 -23.2860 33.8834 44.3629 -Arial_Black.ttf 86 - 16.9080 9.2397 23 ~ -8.1788 32.7258 14.0000 -Arial_Black.ttf 86 - 16.9080 9.2397 24 # -23.2654 35.6338 44.3629 -Arial_Black.ttf 86 - 16.9047 9.2483 25 O -23.3347 42.7168 44.3759 -Arial_Black.ttf 86 - 16.9080 9.2397 26 ` -23.0877 14.6708 8.4532 -Arial_Black.ttf 86 - 16.9080 9.2397 27 @ -23.1714 43.1815 49.5147 -Arial_Black.ttf 86 - 16.9047 9.2483 28 F -22.3524 31.5927 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 29 S -23.4231 37.5323 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 30 p -11.6326 32.7806 42.9379 -Arial_Black.ttf 86 - 16.9047 9.2483 31 “ -23.2553 25.6241 23.2483 -Arial_Black.ttf 86 - 16.9047 9.2483 32 % -23.2164 52.3164 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 33 £ -23.2535 34.8724 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 34 . 8.3083 11.6241 11.6241 -Arial_Black.ttf 86 - 16.9047 9.2483 35 2 -23.1307 33.5935 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 36 5 -22.0618 33.8435 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 37 m -11.5474 51.5035 31.5638 -Arial_Black.ttf 86 - 16.9047 9.2483 38 V -22.3171 45.1547 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 39 6 -23.0054 33.8435 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 40 w -10.5688 54.8121 30.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 41 T -22.1949 38.4362 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 42 M -22.3608 45.8086 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 43 G -23.4588 42.5629 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 44 b -21.9566 32.7806 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 45 9 -23.0069 33.8435 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 46 ; -10.3505 11.6241 42.9379 -Arial_Black.ttf 86 - 16.9047 9.2483 47 D -21.9886 38.3112 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 48 L -21.9322 31.9965 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 49 y -10.5188 35.7815 42.9379 -Arial_Black.ttf 86 - 16.9047 9.2483 50 ‘ -23.4541 11.6241 23.2483 -Arial_Black.ttf 86 - 16.9047 9.2483 51 \ -23.3198 16.3759 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 52 R -21.9344 41.2212 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 53 < -18.1100 32.6267 34.9974 -Arial_Black.ttf 86 - 16.9047 9.2483 54 4 -23.3062 38.0612 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 55 8 -23.2535 33.8435 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 56 0 -23.4141 33.8435 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 57 A -22.0239 45.5638 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 58 E -22.0341 34.4974 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 59 B -22.0613 38.3112 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 60 v -10.2630 35.8156 30.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 61 k -22.0915 35.5315 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 62 J -22.1897 33.1556 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 63 U -22.0929 39.2150 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 64 j -22.0618 18.3427 54.5621 -Arial_Black.ttf 86 - 16.9047 9.2483 65 ( -23.3035 17.4047 56.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 66 7 -22.0675 33.5935 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 67 § -23.1626 34.2185 55.7500 -Arial_Black.ttf 86 - 16.9047 9.2483 68 $ -26.1491 35.2815 52.4362 -Arial_Black.ttf 86 - 16.9047 9.2483 69 € -23.4263 38.1914 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 70 / -23.2865 16.3759 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 71 C -23.4899 39.9082 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 72 * -23.4704 22.1565 20.6224 -Arial_Black.ttf 86 - 16.9047 9.2483 73 ” -23.1696 25.6241 23.2483 -Arial_Black.ttf 86 - 16.9047 9.2483 74 ? -23.4270 31.8138 43.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 75 { -23.1241 21.4974 56.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 76 } -23.3972 21.4974 56.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 77 , 8.4502 11.6241 24.1862 -Arial_Black.ttf 86 - 16.9047 9.2483 78 I -22.0520 12.8121 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 79 ° -23.2781 14.1250 14.1250 -Arial_Black.ttf 86 - 16.9047 9.2483 80 K -22.1156 43.9668 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 81 H -21.8959 39.2150 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 82 q -11.6307 32.7806 42.9379 -Arial_Black.ttf 86 - 16.9047 9.2483 83 & -23.1317 46.8820 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 84 ’ -23.1196 11.6241 23.2483 -Arial_Black.ttf 86 - 16.9047 9.2483 85 [ -22.0159 18.3427 53.6241 -Arial_Black.ttf 86 - 16.9047 9.2483 86 - -0.1339 16.9047 9.2483 -Arial_Black.ttf 86 - 16.9047 9.2483 87 Y -21.8546 45.5638 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 88 Q -23.2438 44.1547 48.3435 -Arial_Black.ttf 86 - 16.9047 9.2483 89 " -21.9822 26.8121 15.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 90 ! -21.7860 11.6241 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 91 x -10.5643 38.6914 30.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 92 ) -23.3249 17.4047 56.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 93 = -12.5756 30.9047 23.2483 -Arial_Black.ttf 86 - 16.9047 9.2483 94 + -16.8277 31.4388 31.4388 -Arial_Black.ttf 86 - 16.9047 9.2483 95 X -21.7801 45.1547 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 96 » -8.4583 31.1547 26.4082 -Arial_Black.ttf 86 - 16.9047 9.2483 97 ' -21.7190 11.6241 15.1879 -Arial_Black.ttf 86 - 16.9047 9.2483 98 ¢ -21.5768 34.2185 53.2203 -Arial_Black.ttf 86 - 16.9047 9.2483 99 Z -22.0656 37.3059 42.0000 -Arial_Black.ttf 86 - 16.9047 9.2483 100 > -18.3335 32.6267 34.9974 -Arial_Black.ttf 86 - 16.9047 9.2483 101 ® -23.3420 43.9720 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 102 © -23.2913 43.9720 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 103 ] -22.0388 18.3427 53.6241 -Arial_Black.ttf 86 - 16.9047 9.2483 104 é -23.2535 34.2185 44.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 105 z -10.2663 28.4327 30.3759 -Arial_Black.ttf 86 - 16.9047 9.2483 106 _ 24.1397 29.1879 2.7797 -Arial_Black.ttf 86 - 16.9047 9.2483 107 ¥ -22.1440 40.4082 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 1 t -0.0718 22.4353 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 2 h -0.2076 31.8427 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 3 a 10.6485 35.4065 32.7517 -Arial_Black.ttf 87 Y 45.5638 42.0000 4 n 10.5236 31.8427 31.5638 -Arial_Black.ttf 87 Y 45.5638 42.0000 5 P -0.0895 34.7474 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 6 o 10.5345 34.2185 32.7517 -Arial_Black.ttf 87 Y 45.5638 42.0000 7 e 10.5374 34.2185 32.7517 -Arial_Black.ttf 87 Y 45.5638 42.0000 8 : 11.5746 11.6241 30.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 9 r 10.5312 23.9073 31.5638 -Arial_Black.ttf 87 Y 45.5638 42.0000 10 l 0.2340 11.6241 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 11 i -0.2030 11.6241 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 12 1 -1.0336 23.9073 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 13 | 0.2178 7.2815 53.3741 -Arial_Black.ttf 87 Y 45.5638 42.0000 14 N -0.0468 39.2150 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 15 f -0.8455 23.6233 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 16 g 10.4844 34.2185 44.1259 -Arial_Black.ttf 87 Y 45.5638 42.0000 17 d 0.1271 32.7806 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 18 W -0.2637 59.5638 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 19 s 10.3426 31.5638 32.7517 -Arial_Black.ttf 87 Y 45.5638 42.0000 20 c 10.6870 34.2185 32.7517 -Arial_Black.ttf 87 Y 45.5638 42.0000 21 u 11.5689 31.5927 31.5638 -Arial_Black.ttf 87 Y 45.5638 42.0000 22 3 -0.9826 33.8435 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 23 ~ 13.9726 32.7517 14.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 24 # -1.2259 35.6565 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 25 O -1.1156 42.7168 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 26 ` -1.4035 14.6591 8.4694 -Arial_Black.ttf 87 Y 45.5638 42.0000 27 @ -0.9839 43.1879 49.4974 -Arial_Black.ttf 87 Y 45.5638 42.0000 28 F -0.0885 31.5927 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 29 S -1.1221 37.5323 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 30 p 10.2457 32.7806 42.9379 -Arial_Black.ttf 87 Y 45.5638 42.0000 31 “ -0.8903 25.6241 23.2483 -Arial_Black.ttf 87 Y 45.5638 42.0000 32 % -1.5012 52.3164 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 33 £ -1.2094 34.8724 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 34 . 30.5561 11.6241 11.6241 -Arial_Black.ttf 87 Y 45.5638 42.0000 35 2 -1.2199 33.5935 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 36 5 0.0829 33.8435 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 37 m 10.1794 51.5035 31.5638 -Arial_Black.ttf 87 Y 45.5638 42.0000 38 V -0.0385 45.1547 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 39 6 -1.1257 33.8435 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 40 w 11.4045 54.8121 30.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 41 T -0.3227 38.4362 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 42 M -0.2921 45.8086 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 43 G -1.2232 42.5629 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 44 b -0.0839 32.7806 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 45 9 -1.1264 33.8435 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 46 ; 11.2681 11.6241 42.9379 -Arial_Black.ttf 87 Y 45.5638 42.0000 47 D 0.0724 38.3112 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 48 L 0.2665 31.9965 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 49 y 12.1265 35.7815 42.9379 -Arial_Black.ttf 87 Y 45.5638 42.0000 50 ‘ -0.8051 11.6241 23.2483 -Arial_Black.ttf 87 Y 45.5638 42.0000 51 \ -1.1375 16.3759 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 52 R 0.1045 41.2212 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 53 < 3.5143 32.6267 34.9974 -Arial_Black.ttf 87 Y 45.5638 42.0000 54 4 -0.9377 38.0612 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 55 8 -1.0949 33.8435 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 56 0 -1.3372 33.8435 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 57 A 0.0780 45.5638 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 58 E 0.2085 34.4974 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 59 B 0.3911 38.3112 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 60 v 11.2952 35.8156 30.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 61 k 0.1178 35.5315 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 62 J -0.3422 33.1556 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 63 U -0.3917 39.2150 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 64 j -0.0742 18.3427 54.5621 -Arial_Black.ttf 87 Y 45.5638 42.0000 65 ( -1.5204 17.4047 56.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 66 7 -0.2571 33.5935 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 67 § -1.0271 34.2185 55.7500 -Arial_Black.ttf 87 Y 45.5638 42.0000 68 $ -3.9681 35.2815 52.4362 -Arial_Black.ttf 87 Y 45.5638 42.0000 69 € -1.0606 38.1914 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 70 / -0.9955 16.3759 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 71 C -1.2829 39.9082 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 72 * -1.3603 22.1565 20.6224 -Arial_Black.ttf 87 Y 45.5638 42.0000 73 ” -1.4649 25.6241 23.2483 -Arial_Black.ttf 87 Y 45.5638 42.0000 74 ? -1.1990 31.8138 43.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 75 { -0.9979 21.4974 56.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 76 } -1.3955 21.4974 56.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 77 , 30.3193 11.6241 24.1862 -Arial_Black.ttf 87 Y 45.5638 42.0000 78 I 0.2535 12.8121 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 79 ° -1.4035 14.1250 14.1250 -Arial_Black.ttf 87 Y 45.5638 42.0000 80 K -0.2346 43.9668 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 81 H 0.1014 39.2150 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 82 q 10.3394 32.7806 42.9379 -Arial_Black.ttf 87 Y 45.5638 42.0000 83 & -1.0683 46.8820 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 84 ’ -0.8388 11.6241 23.2483 -Arial_Black.ttf 87 Y 45.5638 42.0000 85 [ -0.0607 18.3427 53.6241 -Arial_Black.ttf 87 Y 45.5638 42.0000 86 - 22.0271 16.9047 9.2483 -Arial_Black.ttf 87 Y 45.5638 42.0000 87 Y 0.1701 45.5638 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 88 Q -1.3153 44.1547 48.3435 -Arial_Black.ttf 87 Y 45.5638 42.0000 89 " -0.3300 26.8121 15.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 90 ! -0.0185 11.6241 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 91 x 11.4898 38.6914 30.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 92 ) -1.1879 17.4047 56.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 93 = 9.8386 30.9047 23.2483 -Arial_Black.ttf 87 Y 45.5638 42.0000 94 + 5.4048 31.4388 31.4388 -Arial_Black.ttf 87 Y 45.5638 42.0000 95 X 0.0264 45.1547 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 96 » 13.4169 31.1547 26.4082 -Arial_Black.ttf 87 Y 45.5638 42.0000 97 ' -0.1071 11.6241 15.1879 -Arial_Black.ttf 87 Y 45.5638 42.0000 98 ¢ 0.6138 34.2185 53.2203 -Arial_Black.ttf 87 Y 45.5638 42.0000 99 Z -0.1131 37.3059 42.0000 -Arial_Black.ttf 87 Y 45.5638 42.0000 100 > 3.5968 32.6267 34.9974 -Arial_Black.ttf 87 Y 45.5638 42.0000 101 ® -1.3864 43.9720 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 102 © -1.1612 43.9720 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 103 ] -0.1277 18.3427 53.6241 -Arial_Black.ttf 87 Y 45.5638 42.0000 104 é -0.8015 34.2185 44.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 105 z 11.7668 28.4327 30.3759 -Arial_Black.ttf 87 Y 45.5638 42.0000 106 _ 46.2585 29.1879 2.7797 -Arial_Black.ttf 87 Y 45.5638 42.0000 107 ¥ -0.0427 40.4082 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 1 t 1.3015 22.4353 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 2 h 1.4111 31.8427 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 3 a 11.6044 35.4065 32.7517 -Arial_Black.ttf 88 Q 44.1547 48.3435 4 n 11.5390 31.8427 31.5638 -Arial_Black.ttf 88 Q 44.1547 48.3435 5 P 1.2281 34.7474 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 6 o 11.8094 34.2185 32.7517 -Arial_Black.ttf 88 Q 44.1547 48.3435 7 e 11.6210 34.2185 32.7517 -Arial_Black.ttf 88 Q 44.1547 48.3435 8 : 13.1366 11.6241 30.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 9 r 11.6595 23.9073 31.5638 -Arial_Black.ttf 88 Q 44.1547 48.3435 10 l 1.4909 11.6241 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 11 i 0.8903 11.6241 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 12 1 0.0955 23.9073 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 13 | 1.2884 7.2815 53.3741 -Arial_Black.ttf 88 Q 44.1547 48.3435 14 N 1.2539 39.2150 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 15 f -0.1190 23.6233 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 16 g 11.5846 34.2185 44.1259 -Arial_Black.ttf 88 Q 44.1547 48.3435 17 d 0.9052 32.7806 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 18 W 1.3181 59.5638 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 19 s 11.8676 31.5638 32.7517 -Arial_Black.ttf 88 Q 44.1547 48.3435 20 c 11.6862 34.2185 32.7517 -Arial_Black.ttf 88 Q 44.1547 48.3435 21 u 12.9255 31.5927 31.5638 -Arial_Black.ttf 88 Q 44.1547 48.3435 22 3 -0.0024 33.8435 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 23 ~ 15.0814 32.7517 14.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 24 # 0.2120 35.6565 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 25 O 0.1687 42.7168 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 26 ` -0.1228 14.6591 8.4694 -Arial_Black.ttf 88 Q 44.1547 48.3435 27 @ 0.3647 43.1879 49.4974 -Arial_Black.ttf 88 Q 44.1547 48.3435 28 F 1.5218 31.5927 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 29 S 0.2712 37.5323 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 30 p 11.9217 32.7806 42.9379 -Arial_Black.ttf 88 Q 44.1547 48.3435 31 “ 0.2083 25.6241 23.2483 -Arial_Black.ttf 88 Q 44.1547 48.3435 32 % 0.1339 52.3164 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 33 £ 0.0219 34.8724 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 34 . 31.3455 11.6241 11.6241 -Arial_Black.ttf 88 Q 44.1547 48.3435 35 2 -0.2480 33.5935 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 36 5 1.3895 33.8435 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 37 m 11.4317 51.5035 31.5638 -Arial_Black.ttf 88 Q 44.1547 48.3435 38 V 1.1662 45.1547 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 39 6 0.1326 33.8435 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 40 w 12.8061 54.8121 30.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 41 T 1.2486 38.4362 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 42 M 1.0271 45.8086 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 43 G -0.2013 42.5629 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 44 b 0.9367 32.7806 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 45 9 0.0013 33.8435 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 46 ; 12.5952 11.6241 42.9379 -Arial_Black.ttf 88 Q 44.1547 48.3435 47 D 1.1671 38.3112 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 48 L 1.3460 31.9965 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 49 y 12.7722 35.7815 42.9379 -Arial_Black.ttf 88 Q 44.1547 48.3435 50 ‘ -0.0473 11.6241 23.2483 -Arial_Black.ttf 88 Q 44.1547 48.3435 51 \ -0.1891 16.3759 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 52 R 1.1458 41.2212 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 53 < 4.4138 32.6267 34.9974 -Arial_Black.ttf 88 Q 44.1547 48.3435 54 4 -0.0903 38.0612 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 55 8 -0.0024 33.8435 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 56 0 -0.1721 33.8435 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 57 A 1.3044 45.5638 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 58 E 0.9438 34.4974 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 59 B 1.4239 38.3112 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 60 v 12.6202 35.8156 30.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 61 k 1.1175 35.5315 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 62 J 0.9391 33.1556 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 63 U 1.4549 39.2150 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 64 j 1.1338 18.3427 54.5621 -Arial_Black.ttf 88 Q 44.1547 48.3435 65 ( -0.1167 17.4047 56.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 66 7 1.2573 33.5935 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 67 § 0.1988 34.2185 55.7500 -Arial_Black.ttf 88 Q 44.1547 48.3435 68 $ -2.6133 35.2815 52.4362 -Arial_Black.ttf 88 Q 44.1547 48.3435 69 € -0.0774 38.1914 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 70 / 0.0514 16.3759 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 71 C 0.1260 39.9082 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 72 * 0.0084 22.1565 20.6224 -Arial_Black.ttf 88 Q 44.1547 48.3435 73 ” -0.1274 25.6241 23.2483 -Arial_Black.ttf 88 Q 44.1547 48.3435 74 ? 0.0737 31.8138 43.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 75 { 0.0112 21.4974 56.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 76 } -0.1168 21.4974 56.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 77 , 31.7556 11.6241 24.1862 -Arial_Black.ttf 88 Q 44.1547 48.3435 78 I 1.3115 12.8121 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 79 ° 0.0005 14.1250 14.1250 -Arial_Black.ttf 88 Q 44.1547 48.3435 80 K 0.9909 43.9668 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 81 H 1.0906 39.2150 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 82 q 11.6547 32.7806 42.9379 -Arial_Black.ttf 88 Q 44.1547 48.3435 83 & -0.0487 46.8820 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 84 ’ -0.1704 11.6241 23.2483 -Arial_Black.ttf 88 Q 44.1547 48.3435 85 [ 1.1410 18.3427 53.6241 -Arial_Black.ttf 88 Q 44.1547 48.3435 86 - 23.3444 16.9047 9.2483 -Arial_Black.ttf 88 Q 44.1547 48.3435 87 Y 1.0879 45.5638 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 88 Q 0.0992 44.1547 48.3435 -Arial_Black.ttf 88 Q 44.1547 48.3435 89 " 1.4433 26.8121 15.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 90 ! 1.1715 11.6241 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 91 x 12.8023 38.6914 30.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 92 ) -0.1591 17.4047 56.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 93 = 10.7652 30.9047 23.2483 -Arial_Black.ttf 88 Q 44.1547 48.3435 94 + 6.7344 31.4388 31.4388 -Arial_Black.ttf 88 Q 44.1547 48.3435 95 X 1.0289 45.1547 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 96 » 14.5899 31.1547 26.4082 -Arial_Black.ttf 88 Q 44.1547 48.3435 97 ' 0.8482 11.6241 15.1879 -Arial_Black.ttf 88 Q 44.1547 48.3435 98 ¢ 1.4963 34.2185 53.2203 -Arial_Black.ttf 88 Q 44.1547 48.3435 99 Z 1.0711 37.3059 42.0000 -Arial_Black.ttf 88 Q 44.1547 48.3435 100 > 4.7333 32.6267 34.9974 -Arial_Black.ttf 88 Q 44.1547 48.3435 101 ® 0.1571 43.9720 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 102 © 0.0385 43.9720 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 103 ] 0.9806 18.3427 53.6241 -Arial_Black.ttf 88 Q 44.1547 48.3435 104 é 0.1623 34.2185 44.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 105 z 12.5585 28.4327 30.3759 -Arial_Black.ttf 88 Q 44.1547 48.3435 106 _ 47.5088 29.1879 2.7797 -Arial_Black.ttf 88 Q 44.1547 48.3435 107 ¥ 1.4280 40.4082 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 1 t -0.0839 22.4353 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 2 h 0.2728 31.8427 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 3 a 10.5538 35.4065 32.7517 -Arial_Black.ttf 89 " 26.8121 15.1879 4 n 10.4774 31.8427 31.5638 -Arial_Black.ttf 89 " 26.8121 15.1879 5 P -0.0283 34.7474 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 6 o 10.6077 34.2185 32.7517 -Arial_Black.ttf 89 " 26.8121 15.1879 7 e 10.2193 34.2185 32.7517 -Arial_Black.ttf 89 " 26.8185 15.1815 8 : 11.5068 11.6371 30.3629 -Arial_Black.ttf 89 " 26.8121 15.1879 9 r 10.5353 23.9073 31.5638 -Arial_Black.ttf 89 " 26.8121 15.1879 10 l -0.2838 11.6241 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 11 i 0.0961 11.6241 42.0000 -Arial_Black.ttf 89 " 26.8185 15.1815 12 1 -1.3081 23.9105 43.1815 -Arial_Black.ttf 89 " 26.8185 15.1815 13 | -0.0519 7.2718 53.3612 -Arial_Black.ttf 89 " 26.8121 15.1879 14 N 0.1777 39.2150 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 15 f -1.3139 23.6233 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 16 g 10.1767 34.2185 44.1259 -Arial_Black.ttf 89 " 26.8121 15.1879 17 d 0.0534 32.7806 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 18 W 0.0736 59.5638 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 19 s 10.5757 31.5638 32.7517 -Arial_Black.ttf 89 " 26.8121 15.1879 20 c 10.3783 34.2185 32.7517 -Arial_Black.ttf 89 " 26.8121 15.1879 21 u 11.6761 31.5927 31.5638 -Arial_Black.ttf 89 " 26.8185 15.1815 22 3 -1.1035 33.8834 44.3629 -Arial_Black.ttf 89 " 26.8185 15.1815 23 ~ 14.1411 32.7258 14.0000 -Arial_Black.ttf 89 " 26.8185 15.1815 24 # -1.4365 35.6338 44.3629 -Arial_Black.ttf 89 " 26.8121 15.1879 25 O -1.1477 42.7168 44.3759 -Arial_Black.ttf 89 " 26.8185 15.1815 26 ` -0.9349 14.6708 8.4532 -Arial_Black.ttf 89 " 26.8185 15.1815 27 @ -1.1004 43.1815 49.5147 -Arial_Black.ttf 89 " 26.8121 15.1879 28 F -0.3805 31.5927 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 29 S -1.0791 37.5323 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 30 p 10.4821 32.7806 42.9379 -Arial_Black.ttf 89 " 26.8121 15.1879 31 “ -1.3711 25.6241 23.2483 -Arial_Black.ttf 89 " 26.8121 15.1879 32 % -1.2117 52.3164 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 33 £ -1.2992 34.8724 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 34 . 30.3707 11.6241 11.6241 -Arial_Black.ttf 89 " 26.8121 15.1879 35 2 -1.2653 33.5935 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 36 5 0.1599 33.8435 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 37 m 10.3518 51.5035 31.5638 -Arial_Black.ttf 89 " 26.8121 15.1879 38 V -0.1710 45.1547 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 39 6 -1.1411 33.8435 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 40 w 11.5557 54.8121 30.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 41 T -0.2852 38.4362 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 42 M -0.1626 45.8086 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 43 G -1.0373 42.5629 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 44 b -0.2206 32.7806 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 45 9 -1.3103 33.8435 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 46 ; 11.6524 11.6241 42.9379 -Arial_Black.ttf 89 " 26.8121 15.1879 47 D 0.1242 38.3112 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 48 L -0.0885 31.9965 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 49 y 12.0575 35.7815 42.9379 -Arial_Black.ttf 89 " 26.8121 15.1879 50 ‘ -1.2653 11.6241 23.2483 -Arial_Black.ttf 89 " 26.8121 15.1879 51 \ -1.2708 16.3759 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 52 R 0.2585 41.2212 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 53 < 3.6412 32.6267 34.9974 -Arial_Black.ttf 89 " 26.8121 15.1879 54 4 -1.1022 38.0612 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 55 8 -1.3524 33.8435 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 56 0 -1.3638 33.8435 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 57 A 0.1724 45.5638 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 58 E -0.1683 34.4974 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 59 B 0.1974 38.3112 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 60 v 11.9653 35.8156 30.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 61 k -0.0032 35.5315 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 62 J 0.0704 33.1556 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 63 U -0.1864 39.2150 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 64 j -0.0027 18.3427 54.5621 -Arial_Black.ttf 89 " 26.8121 15.1879 65 ( -1.1106 17.4047 56.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 66 7 -0.0255 33.5935 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 67 § -1.1536 34.2185 55.7500 -Arial_Black.ttf 89 " 26.8121 15.1879 68 $ -3.9343 35.2815 52.4362 -Arial_Black.ttf 89 " 26.8121 15.1879 69 € -1.3191 38.1914 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 70 / -1.2764 16.3759 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 71 C -0.9298 39.9082 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 72 * -0.8969 22.1565 20.6224 -Arial_Black.ttf 89 " 26.8121 15.1879 73 ” -1.2603 25.6241 23.2483 -Arial_Black.ttf 89 " 26.8121 15.1879 74 ? -1.0613 31.8138 43.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 75 { -1.2054 21.4974 56.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 76 } -1.2699 21.4974 56.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 77 , 30.2842 11.6241 24.1862 -Arial_Black.ttf 89 " 26.8121 15.1879 78 I -0.0374 12.8121 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 79 ° -1.0563 14.1250 14.1250 -Arial_Black.ttf 89 " 26.8121 15.1879 80 K 0.2145 43.9668 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 81 H 0.2178 39.2150 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 82 q 10.3291 32.7806 42.9379 -Arial_Black.ttf 89 " 26.8121 15.1879 83 & -1.0776 46.8820 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 84 ’ -1.1834 11.6241 23.2483 -Arial_Black.ttf 89 " 26.8121 15.1879 85 [ 0.0260 18.3427 53.6241 -Arial_Black.ttf 89 " 26.8121 15.1879 86 - 22.2306 16.9047 9.2483 -Arial_Black.ttf 89 " 26.8121 15.1879 87 Y 0.3393 45.5638 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 88 Q -1.0113 44.1547 48.3435 -Arial_Black.ttf 89 " 26.8121 15.1879 89 " 0.1561 26.8121 15.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 90 ! -0.1686 11.6241 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 91 x 11.5814 38.6914 30.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 92 ) -1.1142 17.4047 56.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 93 = 9.2370 30.9047 23.2483 -Arial_Black.ttf 89 " 26.8121 15.1879 94 + 5.2692 31.4388 31.4388 -Arial_Black.ttf 89 " 26.8121 15.1879 95 X -0.0769 45.1547 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 96 » 13.4850 31.1547 26.4082 -Arial_Black.ttf 89 " 26.8121 15.1879 97 ' 0.0298 11.6241 15.1879 -Arial_Black.ttf 89 " 26.8121 15.1879 98 ¢ 0.5021 34.2185 53.2203 -Arial_Black.ttf 89 " 26.8121 15.1879 99 Z 0.0565 37.3059 42.0000 -Arial_Black.ttf 89 " 26.8121 15.1879 100 > 3.7051 32.6267 34.9974 -Arial_Black.ttf 89 " 26.8121 15.1879 101 ® -1.1309 43.9720 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 102 © -1.5671 43.9720 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 103 ] 0.0283 18.3427 53.6241 -Arial_Black.ttf 89 " 26.8121 15.1879 104 é -1.1120 34.2185 44.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 105 z 11.6918 28.4327 30.3759 -Arial_Black.ttf 89 " 26.8121 15.1879 106 _ 46.0986 29.1879 2.7797 -Arial_Black.ttf 89 " 26.8121 15.1879 107 ¥ -0.1088 40.4082 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 1 t 0.2140 22.4353 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 2 h 0.0455 31.8427 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 3 a 10.5303 35.4065 32.7517 -Arial_Black.ttf 90 ! 11.6241 42.0000 4 n 10.5719 31.8427 31.5638 -Arial_Black.ttf 90 ! 11.6241 42.0000 5 P -0.1099 34.7474 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 6 o 10.4432 34.2185 32.7517 -Arial_Black.ttf 90 ! 11.6241 42.0000 7 e 10.4407 34.2185 32.7517 -Arial_Black.ttf 90 ! 11.6371 42.0000 8 : 11.4375 11.6371 30.3629 -Arial_Black.ttf 90 ! 11.6241 42.0000 9 r 10.5289 23.9073 31.5638 -Arial_Black.ttf 90 ! 11.6241 42.0000 10 l -0.1714 11.6241 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 11 i 0.0588 11.6241 42.0000 -Arial_Black.ttf 90 ! 11.6371 42.0000 12 1 -1.1757 23.9105 43.1815 -Arial_Black.ttf 90 ! 11.6371 42.0000 13 | 0.0740 7.2718 53.3612 -Arial_Black.ttf 90 ! 11.6241 42.0000 14 N 0.0042 39.2150 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 15 f -1.1379 23.6233 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 16 g 10.5548 34.2185 44.1259 -Arial_Black.ttf 90 ! 11.6241 42.0000 17 d 0.1301 32.7806 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 18 W 0.2581 59.5638 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 19 s 10.3166 31.5638 32.7517 -Arial_Black.ttf 90 ! 11.6241 42.0000 20 c 10.4380 34.2185 32.7517 -Arial_Black.ttf 90 ! 11.6241 42.0000 21 u 11.6671 31.5927 31.5638 -Arial_Black.ttf 90 ! 11.6371 42.0000 22 3 -1.2473 33.8834 44.3629 -Arial_Black.ttf 90 ! 11.6371 42.0000 23 ~ 14.0912 32.7258 14.0000 -Arial_Black.ttf 90 ! 11.6371 42.0000 24 # -1.2642 35.6338 44.3629 -Arial_Black.ttf 90 ! 11.6241 42.0000 25 O -1.2861 42.7168 44.3759 -Arial_Black.ttf 90 ! 11.6371 42.0000 26 ` -1.1031 14.6708 8.4532 -Arial_Black.ttf 90 ! 11.6371 42.0000 27 @ -1.1815 43.1815 49.5147 -Arial_Black.ttf 90 ! 11.6241 42.0000 28 F 0.1794 31.5927 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 29 S -1.3673 37.5323 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 30 p 10.2851 32.7806 42.9379 -Arial_Black.ttf 90 ! 11.6241 42.0000 31 “ -1.1925 25.6241 23.2483 -Arial_Black.ttf 90 ! 11.6241 42.0000 32 % -1.1467 52.3164 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 33 £ -1.0865 34.8724 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 34 . 30.3638 11.6241 11.6241 -Arial_Black.ttf 90 ! 11.6241 42.0000 35 2 -1.3196 33.5935 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 36 5 -0.0312 33.8435 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 37 m 10.3889 51.5035 31.5638 -Arial_Black.ttf 90 ! 11.6241 42.0000 38 V -0.1728 45.1547 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 39 6 -1.1694 33.8435 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 40 w 11.8141 54.8121 30.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 41 T 0.1701 38.4362 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 42 M -0.0728 45.8086 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 43 G -1.1702 42.5629 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 44 b -0.0510 32.7806 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 45 9 -1.0211 33.8435 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 46 ; 11.4493 11.6241 42.9379 -Arial_Black.ttf 90 ! 11.6241 42.0000 47 D 0.0826 38.3112 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 48 L 0.1447 31.9965 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 49 y 11.6877 35.7815 42.9379 -Arial_Black.ttf 90 ! 11.6241 42.0000 50 ‘ -1.2653 11.6241 23.2483 -Arial_Black.ttf 90 ! 11.6241 42.0000 51 \ -1.3548 16.3759 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 52 R 0.0347 41.2212 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 53 < 3.8011 32.6267 34.9974 -Arial_Black.ttf 90 ! 11.6241 42.0000 54 4 -1.1045 38.0612 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 55 8 -1.1443 33.8435 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 56 0 -1.1452 33.8435 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 57 A -0.1988 45.5638 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 58 E 0.0430 34.4974 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 59 B 0.2619 38.3112 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 60 v 11.6741 35.8156 30.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 61 k -0.1553 35.5315 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 62 J 0.0385 33.1556 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 63 U -0.0937 39.2150 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 64 j -0.2105 18.3427 54.5621 -Arial_Black.ttf 90 ! 11.6241 42.0000 65 ( -1.3146 17.4047 56.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 66 7 -0.1310 33.5935 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 67 § -1.2802 34.2185 55.7500 -Arial_Black.ttf 90 ! 11.6241 42.0000 68 $ -4.0023 35.2815 52.4362 -Arial_Black.ttf 90 ! 11.6241 42.0000 69 € -1.1972 38.1914 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 70 / -0.8987 16.3759 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 71 C -1.1757 39.9082 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 72 * -0.9747 22.1565 20.6224 -Arial_Black.ttf 90 ! 11.6241 42.0000 73 ” -1.2751 25.6241 23.2483 -Arial_Black.ttf 90 ! 11.6241 42.0000 74 ? -1.1554 31.8138 43.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 75 { -1.1425 21.4974 56.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 76 } -1.3205 21.4974 56.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 77 , 30.2447 11.6241 24.1862 -Arial_Black.ttf 90 ! 11.6241 42.0000 78 I 0.3026 12.8121 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 79 ° -1.1470 14.1250 14.1250 -Arial_Black.ttf 90 ! 11.6241 42.0000 80 K -0.0864 43.9668 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 81 H 0.2516 39.2150 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 82 q 10.5436 32.7806 42.9379 -Arial_Black.ttf 90 ! 11.6241 42.0000 83 & -1.4090 46.8820 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 84 ’ -1.3488 11.6241 23.2483 -Arial_Black.ttf 90 ! 11.6241 42.0000 85 [ 0.1787 18.3427 53.6241 -Arial_Black.ttf 90 ! 11.6241 42.0000 86 - 22.2110 16.9047 9.2483 -Arial_Black.ttf 90 ! 11.6241 42.0000 87 Y -0.1176 45.5638 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 88 Q -1.2316 44.1547 48.3435 -Arial_Black.ttf 90 ! 11.6241 42.0000 89 " 0.0319 26.8121 15.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 90 ! -0.0774 11.6241 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 91 x 11.6689 38.6914 30.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 92 ) -1.0540 17.4047 56.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 93 = 9.3439 30.9047 23.2483 -Arial_Black.ttf 90 ! 11.6241 42.0000 94 + 5.1040 31.4388 31.4388 -Arial_Black.ttf 90 ! 11.6241 42.0000 95 X -0.0523 45.1547 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 96 » 13.4562 31.1547 26.4082 -Arial_Black.ttf 90 ! 11.6241 42.0000 97 ' 0.0065 11.6241 15.1879 -Arial_Black.ttf 90 ! 11.6241 42.0000 98 ¢ 0.5683 34.2185 53.2203 -Arial_Black.ttf 90 ! 11.6241 42.0000 99 Z 0.1826 37.3059 42.0000 -Arial_Black.ttf 90 ! 11.6241 42.0000 100 > 3.2890 32.6267 34.9974 -Arial_Black.ttf 90 ! 11.6241 42.0000 101 ® -1.1879 43.9720 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 102 © -1.3947 43.9720 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 103 ] 0.0885 18.3427 53.6241 -Arial_Black.ttf 90 ! 11.6241 42.0000 104 é -1.1022 34.2185 44.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 105 z 11.6084 28.4327 30.3759 -Arial_Black.ttf 90 ! 11.6241 42.0000 106 _ 46.1302 29.1879 2.7797 -Arial_Black.ttf 90 ! 11.6241 42.0000 107 ¥ 0.0135 40.4082 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 1 t -11.6217 22.4353 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 2 h -11.8739 31.8427 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 3 a -1.3132 35.4065 32.7517 -Arial_Black.ttf 91 x 38.6914 30.3759 4 n -1.3562 31.8427 31.5638 -Arial_Black.ttf 91 x 38.6914 30.3759 5 P -11.7561 34.7474 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 6 o -1.4256 34.2185 32.7517 -Arial_Black.ttf 91 x 38.6914 30.3759 7 e -1.2764 34.2185 32.7517 -Arial_Black.ttf 91 x 38.6914 30.3759 8 : 0.0389 11.6241 30.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 9 r -1.3590 23.9073 31.5638 -Arial_Black.ttf 91 x 38.6914 30.3759 10 l -11.5249 11.6241 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 11 i -11.8119 11.6241 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 12 1 -12.8820 23.9073 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 13 | -11.7956 7.2815 53.3741 -Arial_Black.ttf 91 x 38.6914 30.3759 14 N -11.5825 39.2150 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 15 f -13.0268 23.6233 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 16 g -1.4117 34.2185 44.1259 -Arial_Black.ttf 91 x 38.6914 30.3759 17 d -11.4785 32.7806 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 18 W -11.6287 59.5638 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 19 s -1.2033 31.5638 32.7517 -Arial_Black.ttf 91 x 38.6914 30.3759 20 c -1.2626 34.2185 32.7517 -Arial_Black.ttf 91 x 38.6914 30.3759 21 u 0.0551 31.5927 31.5638 -Arial_Black.ttf 91 x 38.6914 30.3759 22 3 -12.7212 33.8435 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 23 ~ 2.3801 32.7517 14.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 24 # -12.9709 35.6565 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 25 O -12.9232 42.7168 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 26 ` -12.6151 14.6591 8.4694 -Arial_Black.ttf 91 x 38.6914 30.3759 27 @ -13.1014 43.1879 49.4974 -Arial_Black.ttf 91 x 38.6914 30.3759 28 F -12.0213 31.5927 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 29 S -12.5942 37.5323 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 30 p -0.9229 32.7806 42.9379 -Arial_Black.ttf 91 x 38.6914 30.3759 31 “ -12.8932 25.6241 23.2483 -Arial_Black.ttf 91 x 38.6914 30.3759 32 % -12.7019 52.3164 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 33 £ -12.8408 34.8724 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 34 . 18.7055 11.6241 11.6241 -Arial_Black.ttf 91 x 38.6914 30.3759 35 2 -12.7745 33.5935 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 36 5 -11.4156 33.8435 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 37 m -1.3108 51.5035 31.5638 -Arial_Black.ttf 91 x 38.6914 30.3759 38 V -11.5017 45.1547 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 39 6 -12.8747 33.8435 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 40 w 0.1242 54.8121 30.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 41 T -11.8763 38.4362 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 42 M -11.8836 45.8086 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 43 G -13.0475 42.5629 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 44 b -11.8512 32.7806 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 45 9 -12.8759 33.8435 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 46 ; 0.0570 11.6241 42.9379 -Arial_Black.ttf 91 x 38.6914 30.3759 47 D -11.6676 38.3112 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 48 L -11.5398 31.9965 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 49 y 0.0324 35.7815 42.9379 -Arial_Black.ttf 91 x 38.6914 30.3759 50 ‘ -12.8033 11.6241 23.2483 -Arial_Black.ttf 91 x 38.6914 30.3759 51 \ -12.6837 16.3759 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 52 R -11.7515 41.2212 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 53 < -7.9393 32.6267 34.9974 -Arial_Black.ttf 91 x 38.6914 30.3759 54 4 -12.7736 38.0612 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 55 8 -12.8523 33.8435 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 56 0 -12.9626 33.8435 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 57 A -11.3979 45.5638 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 58 E -11.2757 34.4974 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 59 B -11.5427 38.3112 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 60 v -0.3027 35.8156 30.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 61 k -11.0854 35.5315 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 62 J -12.0237 33.1556 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 63 U -11.4995 39.2150 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 64 j -11.3505 18.3427 54.5621 -Arial_Black.ttf 91 x 38.6914 30.3759 65 ( -12.6768 17.4047 56.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 66 7 -11.8452 33.5935 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 67 § -12.7749 34.2185 55.7500 -Arial_Black.ttf 91 x 38.6914 30.3759 68 $ -15.7569 35.2815 52.4362 -Arial_Black.ttf 91 x 38.6914 30.3759 69 € -12.9939 38.1914 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 70 / -12.8626 16.3759 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 71 C -12.8847 39.9082 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 72 * -13.2533 22.1565 20.6224 -Arial_Black.ttf 91 x 38.6914 30.3759 73 ” -12.9538 25.6241 23.2483 -Arial_Black.ttf 91 x 38.6914 30.3759 74 ? -12.9308 31.8138 43.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 75 { -12.3846 21.4974 56.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 76 } -12.6291 21.4974 56.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 77 , 18.8370 11.6241 24.1862 -Arial_Black.ttf 91 x 38.6914 30.3759 78 I -11.7126 12.8121 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 79 ° -12.7217 14.1250 14.1250 -Arial_Black.ttf 91 x 38.6914 30.3759 80 K -11.3362 43.9668 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 81 H -11.4069 39.2150 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 82 q -1.0244 32.7806 42.9379 -Arial_Black.ttf 91 x 38.6914 30.3759 83 & -12.6666 46.8820 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 84 ’ -12.7360 11.6241 23.2483 -Arial_Black.ttf 91 x 38.6914 30.3759 85 [ -11.4846 18.3427 53.6241 -Arial_Black.ttf 91 x 38.6914 30.3759 86 - 10.0191 16.9047 9.2483 -Arial_Black.ttf 91 x 38.6914 30.3759 87 Y -11.6585 45.5638 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 88 Q -12.8089 44.1547 48.3435 -Arial_Black.ttf 91 x 38.6914 30.3759 89 " -11.9647 26.8121 15.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 90 ! -11.4615 11.6241 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 91 x -0.2715 38.6914 30.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 92 ) -12.7267 17.4047 56.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 93 = -2.2140 30.9047 23.2483 -Arial_Black.ttf 91 x 38.6914 30.3759 94 + -6.2965 31.4388 31.4388 -Arial_Black.ttf 91 x 38.6914 30.3759 95 X -11.4388 45.1547 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 96 » 1.9234 31.1547 26.4082 -Arial_Black.ttf 91 x 38.6914 30.3759 97 ' -11.6574 11.6241 15.1879 -Arial_Black.ttf 91 x 38.6914 30.3759 98 ¢ -11.1479 34.2185 53.2203 -Arial_Black.ttf 91 x 38.6914 30.3759 99 Z -11.4128 37.3059 42.0000 -Arial_Black.ttf 91 x 38.6914 30.3759 100 > -8.0232 32.6267 34.9974 -Arial_Black.ttf 91 x 38.6914 30.3759 101 ® -13.2620 43.9720 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 102 © -12.9442 43.9720 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 103 ] -11.4513 18.3427 53.6241 -Arial_Black.ttf 91 x 38.6914 30.3759 104 é -13.2430 34.2185 44.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 105 z -0.2002 28.4327 30.3759 -Arial_Black.ttf 91 x 38.6914 30.3759 106 _ 34.3326 29.1879 2.7797 -Arial_Black.ttf 91 x 38.6914 30.3759 107 ¥ -11.3967 40.4082 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 1 t 1.2124 22.4353 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 2 h 1.3978 31.8427 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 3 a 11.6553 35.4065 32.7517 -Arial_Black.ttf 92 ) 17.4047 56.0000 4 n 11.7150 31.8427 31.5638 -Arial_Black.ttf 92 ) 17.4047 56.0000 5 P 1.2153 34.7474 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 6 o 11.6241 34.2185 32.7517 -Arial_Black.ttf 92 ) 17.4047 56.0000 7 e 11.6872 34.2185 32.7517 -Arial_Black.ttf 92 ) 17.4252 56.0000 8 : 12.8551 11.6371 30.3629 -Arial_Black.ttf 92 ) 17.4047 56.0000 9 r 11.7098 23.9073 31.5638 -Arial_Black.ttf 92 ) 17.4047 56.0000 10 l 1.1661 11.6241 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 11 i 1.3594 11.6241 42.0000 -Arial_Black.ttf 92 ) 17.4252 56.0000 12 1 0.4167 23.9105 43.1815 -Arial_Black.ttf 92 ) 17.4252 56.0000 13 | 1.2943 7.2718 53.3612 -Arial_Black.ttf 92 ) 17.4047 56.0000 14 N 0.9780 39.2150 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 15 f 0.0000 23.6233 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 16 g 11.5027 34.2185 44.1259 -Arial_Black.ttf 92 ) 17.4047 56.0000 17 d 1.1393 32.7806 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 18 W 0.7476 59.5638 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 19 s 11.5296 31.5638 32.7517 -Arial_Black.ttf 92 ) 17.4047 56.0000 20 c 11.9679 34.2185 32.7517 -Arial_Black.ttf 92 ) 17.4047 56.0000 21 u 12.6573 31.5927 31.5638 -Arial_Black.ttf 92 ) 17.4252 56.0000 22 3 0.0730 33.8834 44.3629 -Arial_Black.ttf 92 ) 17.4252 56.0000 23 ~ 15.2212 32.7258 14.0000 -Arial_Black.ttf 92 ) 17.4252 56.0000 24 # 0.0559 35.6338 44.3629 -Arial_Black.ttf 92 ) 17.4047 56.0000 25 O 0.1683 42.7168 44.3759 -Arial_Black.ttf 92 ) 17.4252 56.0000 26 ` -0.0784 14.6708 8.4532 -Arial_Black.ttf 92 ) 17.4252 56.0000 27 @ -0.0841 43.1815 49.5147 -Arial_Black.ttf 92 ) 17.4047 56.0000 28 F 1.0581 31.5927 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 29 S -0.1585 37.5323 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 30 p 11.7910 32.7806 42.9379 -Arial_Black.ttf 92 ) 17.4047 56.0000 31 “ 0.0706 25.6241 23.2483 -Arial_Black.ttf 92 ) 17.4047 56.0000 32 % 0.0857 52.3164 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 33 £ -0.1921 34.8724 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 34 . 31.5684 11.6241 11.6241 -Arial_Black.ttf 92 ) 17.4047 56.0000 35 2 -0.1640 33.5935 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 36 5 1.2171 33.8435 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 37 m 11.4160 51.5035 31.5638 -Arial_Black.ttf 92 ) 17.4047 56.0000 38 V 1.0586 45.1547 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 39 6 0.2337 33.8435 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 40 w 12.8078 54.8121 30.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 41 T 1.3121 38.4362 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 42 M 0.8667 45.8086 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 43 G -0.0357 42.5629 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 44 b 1.3798 32.7806 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 45 9 -0.1389 33.8435 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 46 ; 12.3018 11.6241 42.9379 -Arial_Black.ttf 92 ) 17.4047 56.0000 47 D 1.0855 38.3112 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 48 L 1.1990 31.9965 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 49 y 12.7166 35.7815 42.9379 -Arial_Black.ttf 92 ) 17.4047 56.0000 50 ‘ -0.1891 11.6241 23.2483 -Arial_Black.ttf 92 ) 17.4047 56.0000 51 \ 0.2540 16.3759 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 52 R 1.0332 41.2212 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 53 < 4.8426 32.6267 34.9974 -Arial_Black.ttf 92 ) 17.4047 56.0000 54 4 -0.2266 38.0612 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 55 8 0.0073 33.8435 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 56 0 0.1756 33.8435 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 57 A 0.9423 45.5638 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 58 E 1.5164 34.4974 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 59 B 1.0748 38.3112 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 60 v 12.5906 35.8156 30.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 61 k 1.0952 35.5315 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 62 J 1.0183 33.1556 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 63 U 1.4280 39.2150 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 64 j 0.9753 18.3427 54.5621 -Arial_Black.ttf 92 ) 17.4047 56.0000 65 ( -0.1266 17.4047 56.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 66 7 1.0675 33.5935 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 67 § -0.0452 34.2185 55.7500 -Arial_Black.ttf 92 ) 17.4047 56.0000 68 $ -2.7023 35.2815 52.4362 -Arial_Black.ttf 92 ) 17.4047 56.0000 69 € 0.1966 38.1914 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 70 / -0.2484 16.3759 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 71 C 0.0027 39.9082 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 72 * 0.0000 22.1565 20.6224 -Arial_Black.ttf 92 ) 17.4047 56.0000 73 ” 0.0857 25.6241 23.2483 -Arial_Black.ttf 92 ) 17.4047 56.0000 74 ? 0.0455 31.8138 43.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 75 { -0.0097 21.4974 56.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 76 } 0.4139 21.4974 56.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 77 , 31.5281 11.6241 24.1862 -Arial_Black.ttf 92 ) 17.4047 56.0000 78 I 1.2639 12.8121 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 79 ° -0.1266 14.1250 14.1250 -Arial_Black.ttf 92 ) 17.4047 56.0000 80 K 1.1852 43.9668 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 81 H 1.0620 39.2150 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 82 q 11.7605 32.7806 42.9379 -Arial_Black.ttf 92 ) 17.4047 56.0000 83 & 0.1123 46.8820 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 84 ’ -0.0455 11.6241 23.2483 -Arial_Black.ttf 92 ) 17.4047 56.0000 85 [ 1.1072 18.3427 53.6241 -Arial_Black.ttf 92 ) 17.4047 56.0000 86 - 23.3347 16.9047 9.2483 -Arial_Black.ttf 92 ) 17.4047 56.0000 87 Y 1.2251 45.5638 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 88 Q -0.0903 44.1547 48.3435 -Arial_Black.ttf 92 ) 17.4047 56.0000 89 " 1.0586 26.8121 15.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 90 ! 1.3465 11.6241 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 91 x 13.0776 38.6914 30.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 92 ) 0.0417 17.4047 56.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 93 = 10.7993 30.9047 23.2483 -Arial_Black.ttf 92 ) 17.4047 56.0000 94 + 6.4366 31.4388 31.4388 -Arial_Black.ttf 92 ) 17.4047 56.0000 95 X 1.1513 45.1547 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 96 » 14.5996 31.1547 26.4082 -Arial_Black.ttf 92 ) 17.4047 56.0000 97 ' 1.2743 11.6241 15.1879 -Arial_Black.ttf 92 ) 17.4047 56.0000 98 ¢ 1.5189 34.2185 53.2203 -Arial_Black.ttf 92 ) 17.4047 56.0000 99 Z 1.2194 37.3059 42.0000 -Arial_Black.ttf 92 ) 17.4047 56.0000 100 > 4.8287 32.6267 34.9974 -Arial_Black.ttf 92 ) 17.4047 56.0000 101 ® 0.2595 43.9720 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 102 © -0.0766 43.9720 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 103 ] 1.3422 18.3427 53.6241 -Arial_Black.ttf 92 ) 17.4047 56.0000 104 é 0.0769 34.2185 44.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 105 z 12.8510 28.4327 30.3759 -Arial_Black.ttf 92 ) 17.4047 56.0000 106 _ 47.1897 29.1879 2.7797 -Arial_Black.ttf 92 ) 17.4047 56.0000 107 ¥ 1.1470 40.4082 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 1 t -9.4381 22.4353 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 2 h -9.7023 31.8427 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 3 a 0.8309 35.4065 32.7517 -Arial_Black.ttf 93 = 30.9047 23.2483 4 n 1.0646 31.8427 31.5638 -Arial_Black.ttf 93 = 30.9047 23.2483 5 P -9.4802 34.7474 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 6 o 1.1623 34.2185 32.7517 -Arial_Black.ttf 93 = 30.9047 23.2483 7 e 0.9816 34.2185 32.7517 -Arial_Black.ttf 93 = 30.9080 23.2397 8 : 2.2518 11.6371 30.3629 -Arial_Black.ttf 93 = 30.9047 23.2483 9 r 0.9304 23.9073 31.5638 -Arial_Black.ttf 93 = 30.9047 23.2483 10 l -9.4950 11.6241 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 11 i -9.5455 11.6241 42.0000 -Arial_Black.ttf 93 = 30.9080 23.2397 12 1 -10.6775 23.9105 43.1815 -Arial_Black.ttf 93 = 30.9080 23.2397 13 | -9.7931 7.2718 53.3612 -Arial_Black.ttf 93 = 30.9047 23.2483 14 N -9.6665 39.2150 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 15 f -10.9031 23.6233 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 16 g 0.9533 34.2185 44.1259 -Arial_Black.ttf 93 = 30.9047 23.2483 17 d -9.5210 32.7806 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 18 W -9.6724 59.5638 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 19 s 0.7696 31.5638 32.7517 -Arial_Black.ttf 93 = 30.9047 23.2483 20 c 0.9938 34.2185 32.7517 -Arial_Black.ttf 93 = 30.9047 23.2483 21 u 2.0569 31.5927 31.5638 -Arial_Black.ttf 93 = 30.9080 23.2397 22 3 -10.4083 33.8834 44.3629 -Arial_Black.ttf 93 = 30.9080 23.2397 23 ~ 4.7959 32.7258 14.0000 -Arial_Black.ttf 93 = 30.9080 23.2397 24 # -10.5418 35.6338 44.3629 -Arial_Black.ttf 93 = 30.9047 23.2483 25 O -10.6894 42.7168 44.3759 -Arial_Black.ttf 93 = 30.9080 23.2397 26 ` -10.6631 14.6708 8.4532 -Arial_Black.ttf 93 = 30.9080 23.2397 27 @ -10.4876 43.1815 49.5147 -Arial_Black.ttf 93 = 30.9047 23.2483 28 F -9.7092 31.5927 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 29 S -10.7025 37.5323 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 30 p 0.9704 32.7806 42.9379 -Arial_Black.ttf 93 = 30.9047 23.2483 31 “ -10.6175 25.6241 23.2483 -Arial_Black.ttf 93 = 30.9047 23.2483 32 % -10.8609 52.3164 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 33 £ -10.4840 34.8724 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 34 . 20.6671 11.6241 11.6241 -Arial_Black.ttf 93 = 30.9047 23.2483 35 2 -10.5866 33.5935 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 36 5 -9.5080 33.8435 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 37 m 1.0548 51.5035 31.5638 -Arial_Black.ttf 93 = 30.9047 23.2483 38 V -9.6141 45.1547 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 39 6 -10.3465 33.8435 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 40 w 2.2181 54.8121 30.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 41 T -9.7665 38.4362 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 42 M -9.5854 45.8086 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 43 G -10.6027 42.5629 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 44 b -9.6312 32.7806 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 45 9 -10.5536 33.8435 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 46 ; 2.2840 11.6241 42.9379 -Arial_Black.ttf 93 = 30.9047 23.2483 47 D -9.6498 38.3112 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 48 L -9.9221 31.9965 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 49 y 2.0795 35.7815 42.9379 -Arial_Black.ttf 93 = 30.9047 23.2483 50 ‘ -10.6515 11.6241 23.2483 -Arial_Black.ttf 93 = 30.9047 23.2483 51 \ -10.4480 16.3759 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 52 R -9.9239 41.2212 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 53 < -6.0415 32.6267 34.9974 -Arial_Black.ttf 93 = 30.9047 23.2483 54 4 -10.6543 38.0612 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 55 8 -10.7825 33.8435 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 56 0 -10.7979 33.8435 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 57 A -9.4198 45.5638 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 58 E -9.2358 34.4974 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 59 B -9.3005 38.3112 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 60 v 2.1370 35.8156 30.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 61 k -9.5607 35.5315 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 62 J -9.5589 33.1556 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 63 U -9.4987 39.2150 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 64 j -9.7480 18.3427 54.5621 -Arial_Black.ttf 93 = 30.9047 23.2483 65 ( -10.7261 17.4047 56.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 66 7 -9.6378 33.5935 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 67 § -10.7831 34.2185 55.7500 -Arial_Black.ttf 93 = 30.9047 23.2483 68 $ -13.5684 35.2815 52.4362 -Arial_Black.ttf 93 = 30.9047 23.2483 69 € -10.8883 38.1914 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 70 / -10.8377 16.3759 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 71 C -10.7152 39.9082 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 72 * -10.6036 22.1565 20.6224 -Arial_Black.ttf 93 = 30.9047 23.2483 73 ” -10.8363 25.6241 23.2483 -Arial_Black.ttf 93 = 30.9047 23.2483 74 ? -10.3021 31.8138 43.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 75 { -10.8583 21.4974 56.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 76 } -10.7316 21.4974 56.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 77 , 20.7447 11.6241 24.1862 -Arial_Black.ttf 93 = 30.9047 23.2483 78 I -9.3234 12.8121 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 79 ° -10.6116 14.1250 14.1250 -Arial_Black.ttf 93 = 30.9047 23.2483 80 K -9.6273 43.9668 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 81 H -9.6220 39.2150 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 82 q 0.6868 32.7806 42.9379 -Arial_Black.ttf 93 = 30.9047 23.2483 83 & -10.8563 46.8820 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 84 ’ -10.6631 11.6241 23.2483 -Arial_Black.ttf 93 = 30.9047 23.2483 85 [ -9.9552 18.3427 53.6241 -Arial_Black.ttf 93 = 30.9047 23.2483 86 - 12.6869 16.9047 9.2483 -Arial_Black.ttf 93 = 30.9047 23.2483 87 Y -9.3241 45.5638 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 88 Q -10.7754 44.1547 48.3435 -Arial_Black.ttf 93 = 30.9047 23.2483 89 " -9.5093 26.8121 15.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 90 ! -9.4468 11.6241 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 91 x 1.8639 38.6914 30.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 92 ) -10.7354 17.4047 56.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 93 = 0.0839 30.9047 23.2483 -Arial_Black.ttf 93 = 30.9047 23.2483 94 + -4.4160 31.4388 31.4388 -Arial_Black.ttf 93 = 30.9047 23.2483 95 X -9.0250 45.1547 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 96 » 3.8285 31.1547 26.4082 -Arial_Black.ttf 93 = 30.9047 23.2483 97 ' -9.5983 11.6241 15.1879 -Arial_Black.ttf 93 = 30.9047 23.2483 98 ¢ -9.1238 34.2185 53.2203 -Arial_Black.ttf 93 = 30.9047 23.2483 99 Z -9.6200 37.3059 42.0000 -Arial_Black.ttf 93 = 30.9047 23.2483 100 > -5.9261 32.6267 34.9974 -Arial_Black.ttf 93 = 30.9047 23.2483 101 ® -10.8405 43.9720 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 102 © -10.5773 43.9720 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 103 ] -9.4268 18.3427 53.6241 -Arial_Black.ttf 93 = 30.9047 23.2483 104 é -10.7163 34.2185 44.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 105 z 2.3686 28.4327 30.3759 -Arial_Black.ttf 93 = 30.9047 23.2483 106 _ 36.3562 29.1879 2.7797 -Arial_Black.ttf 93 = 30.9047 23.2483 107 ¥ -9.6100 40.4082 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 1 t -5.1671 22.4353 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 2 h -5.3899 31.8427 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 3 a 5.2412 35.4065 32.7517 -Arial_Black.ttf 94 + 31.4388 31.4388 4 n 5.4638 31.8427 31.5638 -Arial_Black.ttf 94 + 31.4388 31.4388 5 P -5.2742 34.7474 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 6 o 5.4749 34.2185 32.7517 -Arial_Black.ttf 94 + 31.4388 31.4388 7 e 4.8191 34.2185 32.7517 -Arial_Black.ttf 94 + 31.4237 31.4237 8 : 6.3215 11.6371 30.3629 -Arial_Black.ttf 94 + 31.4388 31.4388 9 r 5.2794 23.9073 31.5638 -Arial_Black.ttf 94 + 31.4388 31.4388 10 l -5.2806 11.6241 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 11 i -5.3566 11.6241 42.0000 -Arial_Black.ttf 94 + 31.4237 31.4237 12 1 -6.5696 23.9105 43.1815 -Arial_Black.ttf 94 + 31.4237 31.4237 13 | -5.2159 7.2718 53.3612 -Arial_Black.ttf 94 + 31.4388 31.4388 14 N -5.3719 39.2150 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 15 f -6.5102 23.6233 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 16 g 5.1626 34.2185 44.1259 -Arial_Black.ttf 94 + 31.4388 31.4388 17 d -5.1532 32.7806 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 18 W -5.3575 59.5638 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 19 s 5.1612 31.5638 32.7517 -Arial_Black.ttf 94 + 31.4388 31.4388 20 c 5.1314 34.2185 32.7517 -Arial_Black.ttf 94 + 31.4388 31.4388 21 u 6.1605 31.5927 31.5638 -Arial_Black.ttf 94 + 31.4237 31.4237 22 3 -6.6659 33.8834 44.3629 -Arial_Black.ttf 94 + 31.4237 31.4237 23 ~ 8.7831 32.7258 14.0000 -Arial_Black.ttf 94 + 31.4237 31.4237 24 # -6.6210 35.6338 44.3629 -Arial_Black.ttf 94 + 31.4388 31.4388 25 O -6.0941 42.7168 44.3759 -Arial_Black.ttf 94 + 31.4237 31.4237 26 ` -6.6860 14.6708 8.4532 -Arial_Black.ttf 94 + 31.4237 31.4237 27 @ -6.2510 43.1815 49.5147 -Arial_Black.ttf 94 + 31.4388 31.4388 28 F -5.5170 31.5927 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 29 S -6.4231 37.5323 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 30 p 5.1347 32.7806 42.9379 -Arial_Black.ttf 94 + 31.4388 31.4388 31 “ -6.5029 25.6241 23.2483 -Arial_Black.ttf 94 + 31.4388 31.4388 32 % -6.0166 52.3164 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 33 £ -6.5236 34.8724 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 34 . 25.3146 11.6241 11.6241 -Arial_Black.ttf 94 + 31.4388 31.4388 35 2 -6.3475 33.5935 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 36 5 -5.3246 33.8435 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 37 m 5.1307 51.5035 31.5638 -Arial_Black.ttf 94 + 31.4388 31.4388 38 V -5.3341 45.1547 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 39 6 -6.5844 33.8435 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 40 w 6.5016 54.8121 30.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 41 T -5.3548 38.4362 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 42 M -5.2871 45.8086 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 43 G -6.3159 42.5629 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 44 b -5.1365 32.7806 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 45 9 -6.3054 33.8435 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 46 ; 6.4767 11.6241 42.9379 -Arial_Black.ttf 94 + 31.4388 31.4388 47 D -5.2625 38.3112 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 48 L -5.3711 31.9965 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 49 y 6.4904 35.7815 42.9379 -Arial_Black.ttf 94 + 31.4388 31.4388 50 ‘ -6.8105 11.6241 23.2483 -Arial_Black.ttf 94 + 31.4388 31.4388 51 \ -6.5005 16.3759 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 52 R -5.1290 41.2212 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 53 < -1.7515 32.6267 34.9974 -Arial_Black.ttf 94 + 31.4388 31.4388 54 4 -6.3912 38.0612 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 55 8 -6.4792 33.8435 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 56 0 -6.2125 33.8435 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 57 A -5.2148 45.5638 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 58 E -5.1987 34.4974 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 59 B -4.6932 38.3112 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 60 v 6.3166 35.8156 30.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 61 k -5.0290 35.5315 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 62 J -5.1275 33.1556 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 63 U -5.2602 39.2150 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 64 j -5.1220 18.3427 54.5621 -Arial_Black.ttf 94 + 31.4388 31.4388 65 ( -6.6836 17.4047 56.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 66 7 -5.2162 33.5935 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 67 § -6.5617 34.2185 55.7500 -Arial_Black.ttf 94 + 31.4388 31.4388 68 $ -9.2878 35.2815 52.4362 -Arial_Black.ttf 94 + 31.4388 31.4388 69 € -6.4570 38.1914 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 70 / -6.5567 16.3759 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 71 C -6.5389 39.9082 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 72 * -6.6136 22.1565 20.6224 -Arial_Black.ttf 94 + 31.4388 31.4388 73 ” -6.6979 25.6241 23.2483 -Arial_Black.ttf 94 + 31.4388 31.4388 74 ? -6.5088 31.8138 43.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 75 { -6.6461 21.4974 56.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 76 } -6.4889 21.4974 56.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 77 , 24.8375 11.6241 24.1862 -Arial_Black.ttf 94 + 31.4388 31.4388 78 I -5.2788 12.8121 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 79 ° -6.6129 14.1250 14.1250 -Arial_Black.ttf 94 + 31.4388 31.4388 80 K -5.5145 43.9668 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 81 H -5.2162 39.2150 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 82 q 5.3669 32.7806 42.9379 -Arial_Black.ttf 94 + 31.4388 31.4388 83 & -6.4731 46.8820 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 84 ’ -6.3452 11.6241 23.2483 -Arial_Black.ttf 94 + 31.4388 31.4388 85 [ -5.2314 18.3427 53.6241 -Arial_Black.ttf 94 + 31.4388 31.4388 86 - 16.8003 16.9047 9.2483 -Arial_Black.ttf 94 + 31.4388 31.4388 87 Y -5.2022 45.5638 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 88 Q -6.5955 44.1547 48.3435 -Arial_Black.ttf 94 + 31.4388 31.4388 89 " -5.3107 26.8121 15.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 90 ! -5.4293 11.6241 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 91 x 6.4307 38.6914 30.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 92 ) -6.3072 17.4047 56.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 93 = 4.2914 30.9047 23.2483 -Arial_Black.ttf 94 + 31.4388 31.4388 94 + 0.3536 31.4388 31.4388 -Arial_Black.ttf 94 + 31.4388 31.4388 95 X -5.0468 45.1547 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 96 » 8.1333 31.1547 26.4082 -Arial_Black.ttf 94 + 31.4388 31.4388 97 ' -5.3566 11.6241 15.1879 -Arial_Black.ttf 94 + 31.4388 31.4388 98 ¢ -5.0639 34.2185 53.2203 -Arial_Black.ttf 94 + 31.4388 31.4388 99 Z -5.1592 37.3059 42.0000 -Arial_Black.ttf 94 + 31.4388 31.4388 100 > -1.8781 32.6267 34.9974 -Arial_Black.ttf 94 + 31.4388 31.4388 101 ® -6.3954 43.9720 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 102 © -6.3856 43.9720 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 103 ] -5.1258 18.3427 53.6241 -Arial_Black.ttf 94 + 31.4388 31.4388 104 é -6.5140 34.2185 44.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 105 z 6.1938 28.4327 30.3759 -Arial_Black.ttf 94 + 31.4388 31.4388 106 _ 40.9457 29.1879 2.7797 -Arial_Black.ttf 94 + 31.4388 31.4388 107 ¥ -5.1614 40.4082 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 1 t -0.1146 22.4353 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 2 h 0.2113 31.8427 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 3 a 10.6397 35.4065 32.7517 -Arial_Black.ttf 95 X 45.1547 42.0000 4 n 10.3231 31.8427 31.5638 -Arial_Black.ttf 95 X 45.1547 42.0000 5 P -0.1832 34.7474 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 6 o 10.0553 34.2185 32.7517 -Arial_Black.ttf 95 X 45.1547 42.0000 7 e 10.3648 34.2185 32.7517 -Arial_Black.ttf 95 X 45.1547 42.0000 8 : 11.2789 11.6241 30.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 9 r 10.6850 23.9073 31.5638 -Arial_Black.ttf 95 X 45.1547 42.0000 10 l -0.0010 11.6241 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 11 i 0.2019 11.6241 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 12 1 -1.4782 23.9073 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 13 | -0.2278 7.2815 53.3741 -Arial_Black.ttf 95 X 45.1547 42.0000 14 N 0.2957 39.2150 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 15 f -1.3922 23.6233 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 16 g 10.4765 34.2185 44.1259 -Arial_Black.ttf 95 X 45.1547 42.0000 17 d -0.0382 32.7806 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 18 W -0.0129 59.5638 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 19 s 10.3523 31.5638 32.7517 -Arial_Black.ttf 95 X 45.1547 42.0000 20 c 10.1937 34.2185 32.7517 -Arial_Black.ttf 95 X 45.1547 42.0000 21 u 11.5996 31.5927 31.5638 -Arial_Black.ttf 95 X 45.1547 42.0000 22 3 -1.0528 33.8435 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 23 ~ 14.3417 32.7517 14.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 24 # -1.0172 35.6565 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 25 O -1.0716 42.7168 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 26 ` -1.0865 14.6591 8.4694 -Arial_Black.ttf 95 X 45.1547 42.0000 27 @ -1.3515 43.1879 49.4974 -Arial_Black.ttf 95 X 45.1547 42.0000 28 F -0.1149 31.5927 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 29 S -1.1125 37.5323 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 30 p 10.2281 32.7806 42.9379 -Arial_Black.ttf 95 X 45.1547 42.0000 31 “ -1.2831 25.6241 23.2483 -Arial_Black.ttf 95 X 45.1547 42.0000 32 % -1.0049 52.3164 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 33 £ -1.2793 34.8724 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 34 . 30.2833 11.6241 11.6241 -Arial_Black.ttf 95 X 45.1547 42.0000 35 2 -1.0530 33.5935 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 36 5 0.0236 33.8435 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 37 m 10.6516 51.5035 31.5638 -Arial_Black.ttf 95 X 45.1547 42.0000 38 V 0.2324 45.1547 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 39 6 -1.3076 33.8435 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 40 w 11.4586 54.8121 30.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 41 T 0.2429 38.4362 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 42 M -0.0562 45.8086 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 43 G -1.1059 42.5629 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 44 b -0.0825 32.7806 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 45 9 -1.1072 33.8435 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 46 ; 11.4349 11.6241 42.9379 -Arial_Black.ttf 95 X 45.1547 42.0000 47 D 0.2689 38.3112 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 48 L 0.3698 31.9965 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 49 y 11.9996 35.7815 42.9379 -Arial_Black.ttf 95 X 45.1547 42.0000 50 ‘ -1.0438 11.6241 23.2483 -Arial_Black.ttf 95 X 45.1547 42.0000 51 \ -1.6833 16.3759 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 52 R -0.0948 41.2212 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 53 < 3.6787 32.6267 34.9974 -Arial_Black.ttf 95 X 45.1547 42.0000 54 4 -0.9679 38.0612 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 55 8 -1.3326 33.8435 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 56 0 -0.9124 33.8435 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 57 A -0.2119 45.5638 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 58 E -0.0903 34.4974 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 59 B 0.2133 38.3112 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 60 v 11.2690 35.8156 30.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 61 k 0.3927 35.5315 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 62 J -0.2809 33.1556 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 63 U 0.1760 39.2150 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 64 j 0.0208 18.3427 54.5621 -Arial_Black.ttf 95 X 45.1547 42.0000 65 ( -1.2379 17.4047 56.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 66 7 -0.1011 33.5935 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 67 § -1.2352 34.2185 55.7500 -Arial_Black.ttf 95 X 45.1547 42.0000 68 $ -4.0961 35.2815 52.4362 -Arial_Black.ttf 95 X 45.1547 42.0000 69 € -1.0402 38.1914 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 70 / -1.1681 16.3759 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 71 C -1.0884 39.9082 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 72 * -1.1063 22.1565 20.6224 -Arial_Black.ttf 95 X 45.1547 42.0000 73 ” -1.0701 25.6241 23.2483 -Arial_Black.ttf 95 X 45.1547 42.0000 74 ? -1.0703 31.8138 43.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 75 { -1.1019 21.4974 56.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 76 } -1.1945 21.4974 56.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 77 , 30.4130 11.6241 24.1862 -Arial_Black.ttf 95 X 45.1547 42.0000 78 I 0.0717 12.8121 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 79 ° -0.8658 14.1250 14.1250 -Arial_Black.ttf 95 X 45.1547 42.0000 80 K -0.0469 43.9668 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 81 H 0.2692 39.2150 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 82 q 10.5072 32.7806 42.9379 -Arial_Black.ttf 95 X 45.1547 42.0000 83 & -1.5008 46.8820 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 84 ’ -0.9714 11.6241 23.2483 -Arial_Black.ttf 95 X 45.1547 42.0000 85 [ -0.1206 18.3427 53.6241 -Arial_Black.ttf 95 X 45.1547 42.0000 86 - 22.4548 16.9047 9.2483 -Arial_Black.ttf 95 X 45.1547 42.0000 87 Y -0.4293 45.5638 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 88 Q -1.1026 44.1547 48.3435 -Arial_Black.ttf 95 X 45.1547 42.0000 89 " 0.0930 26.8121 15.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 90 ! 0.0398 11.6241 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 91 x 11.7474 38.6914 30.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 92 ) -1.1889 17.4047 56.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 93 = 9.4132 30.9047 23.2483 -Arial_Black.ttf 95 X 45.1547 42.0000 94 + 5.6144 31.4388 31.4388 -Arial_Black.ttf 95 X 45.1547 42.0000 95 X 0.0305 45.1547 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 96 » 13.5873 31.1547 26.4082 -Arial_Black.ttf 95 X 45.1547 42.0000 97 ' 0.1574 11.6241 15.1879 -Arial_Black.ttf 95 X 45.1547 42.0000 98 ¢ 0.6829 34.2185 53.2203 -Arial_Black.ttf 95 X 45.1547 42.0000 99 Z 0.2592 37.3059 42.0000 -Arial_Black.ttf 95 X 45.1547 42.0000 100 > 3.7975 32.6267 34.9974 -Arial_Black.ttf 95 X 45.1547 42.0000 101 ® -1.2659 43.9720 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 102 © -1.5152 43.9720 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 103 ] -0.1536 18.3427 53.6241 -Arial_Black.ttf 95 X 45.1547 42.0000 104 é -1.4883 34.2185 44.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 105 z 11.7234 28.4327 30.3759 -Arial_Black.ttf 95 X 45.1547 42.0000 106 _ 46.1406 29.1879 2.7797 -Arial_Black.ttf 95 X 45.1547 42.0000 107 ¥ 0.1527 40.4082 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 1 t -13.6342 22.4353 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 2 h -13.4951 31.8427 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 3 a -3.1158 35.4065 32.7517 -Arial_Black.ttf 96 » 31.1547 26.4082 4 n -3.0928 31.8427 31.5638 -Arial_Black.ttf 96 » 31.1547 26.4082 5 P -13.5419 34.7474 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 6 o -3.0770 34.2185 32.7517 -Arial_Black.ttf 96 » 31.1547 26.4082 7 e -2.8062 34.2185 32.7517 -Arial_Black.ttf 96 » 31.1494 26.3941 8 : -1.7000 11.6371 30.3629 -Arial_Black.ttf 96 » 31.1547 26.4082 9 r -3.1351 23.9073 31.5638 -Arial_Black.ttf 96 » 31.1547 26.4082 10 l -13.3263 11.6241 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 11 i -13.5252 11.6241 42.0000 -Arial_Black.ttf 96 » 31.1494 26.3941 12 1 -14.9492 23.9105 43.1815 -Arial_Black.ttf 96 » 31.1494 26.3941 13 | -13.5506 7.2718 53.3612 -Arial_Black.ttf 96 » 31.1547 26.4082 14 N -13.5457 39.2150 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 15 f -14.3506 23.6233 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 16 g -3.2078 34.2185 44.1259 -Arial_Black.ttf 96 » 31.1547 26.4082 17 d -13.3078 32.7806 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 18 W -13.2847 59.5638 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 19 s -2.7855 31.5638 32.7517 -Arial_Black.ttf 96 » 31.1547 26.4082 20 c -2.9853 34.2185 32.7517 -Arial_Black.ttf 96 » 31.1547 26.4082 21 u -1.7638 31.5927 31.5638 -Arial_Black.ttf 96 » 31.1494 26.3941 22 3 -14.5817 33.8834 44.3629 -Arial_Black.ttf 96 » 31.1494 26.3941 23 ~ 0.4762 32.7258 14.0000 -Arial_Black.ttf 96 » 31.1494 26.3941 24 # -14.6699 35.6338 44.3629 -Arial_Black.ttf 96 » 31.1547 26.4082 25 O -14.6324 42.7168 44.3759 -Arial_Black.ttf 96 » 31.1494 26.3941 26 ` -14.8407 14.6708 8.4532 -Arial_Black.ttf 96 » 31.1494 26.3941 27 @ -14.6439 43.1815 49.5147 -Arial_Black.ttf 96 » 31.1547 26.4082 28 F -13.3935 31.5927 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 29 S -14.7056 37.5323 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 30 p -3.1692 32.7806 42.9379 -Arial_Black.ttf 96 » 31.1547 26.4082 31 “ -14.5797 25.6241 23.2483 -Arial_Black.ttf 96 » 31.1547 26.4082 32 % -14.6556 52.3164 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 33 £ -14.7359 34.8724 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 34 . 17.0211 11.6241 11.6241 -Arial_Black.ttf 96 » 31.1547 26.4082 35 2 -14.8079 33.5935 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 36 5 -13.2234 33.8435 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 37 m -2.9857 51.5035 31.5638 -Arial_Black.ttf 96 » 31.1547 26.4082 38 V -13.3783 45.1547 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 39 6 -14.8630 33.8435 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 40 w -2.1485 54.8121 30.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 41 T -13.7143 38.4362 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 42 M -13.4978 45.8086 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 43 G -14.6483 42.5629 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 44 b -13.5907 32.7806 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 45 9 -14.6538 33.8435 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 46 ; -1.9284 11.6241 42.9379 -Arial_Black.ttf 96 » 31.1547 26.4082 47 D -13.5790 38.3112 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 48 L -13.3747 31.9965 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 49 y -1.6568 35.7815 42.9379 -Arial_Black.ttf 96 » 31.1547 26.4082 50 ‘ -14.5570 11.6241 23.2483 -Arial_Black.ttf 96 » 31.1547 26.4082 51 \ -14.4082 16.3759 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 52 R -13.4742 41.2212 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 53 < -9.6481 32.6267 34.9974 -Arial_Black.ttf 96 » 31.1547 26.4082 54 4 -14.7228 38.0612 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 55 8 -14.5310 33.8435 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 56 0 -14.3976 33.8435 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 57 A -13.2429 45.5638 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 58 E -14.0081 34.4974 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 59 B -13.3344 38.3112 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 60 v -1.8348 35.8156 30.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 61 k -13.4840 35.5315 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 62 J -13.5946 33.1556 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 63 U -13.3690 39.2150 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 64 j -13.2526 18.3427 54.5621 -Arial_Black.ttf 96 » 31.1547 26.4082 65 ( -14.6993 17.4047 56.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 66 7 -13.6973 33.5935 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 67 § -14.7516 34.2185 55.7500 -Arial_Black.ttf 96 » 31.1547 26.4082 68 $ -17.0379 35.2815 52.4362 -Arial_Black.ttf 96 » 31.1547 26.4082 69 € -14.3096 38.1914 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 70 / -14.7906 16.3759 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 71 C -15.1322 39.9082 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 72 * -14.7812 22.1565 20.6224 -Arial_Black.ttf 96 » 31.1547 26.4082 73 ” -14.7632 25.6241 23.2483 -Arial_Black.ttf 96 » 31.1547 26.4082 74 ? -14.7396 31.8138 43.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 75 { -14.7632 21.4974 56.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 76 } -14.3433 21.4974 56.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 77 , 16.6078 11.6241 24.1862 -Arial_Black.ttf 96 » 31.1547 26.4082 78 I -13.3393 12.8121 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 79 ° -14.6011 14.1250 14.1250 -Arial_Black.ttf 96 » 31.1547 26.4082 80 K -13.2216 43.9668 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 81 H -13.3460 39.2150 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 82 q -3.1494 32.7806 42.9379 -Arial_Black.ttf 96 » 31.1547 26.4082 83 & -15.0145 46.8820 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 84 ’ -14.5391 11.6241 23.2483 -Arial_Black.ttf 96 » 31.1547 26.4082 85 [ -13.4723 18.3427 53.6241 -Arial_Black.ttf 96 » 31.1547 26.4082 86 - 8.4268 16.9047 9.2483 -Arial_Black.ttf 96 » 31.1547 26.4082 87 Y -13.5516 45.5638 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 88 Q -14.6733 44.1547 48.3435 -Arial_Black.ttf 96 » 31.1547 26.4082 89 " -13.5749 26.8121 15.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 90 ! -13.5624 11.6241 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 91 x -2.1714 38.6914 30.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 92 ) -14.9001 17.4047 56.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 93 = -3.7910 30.9047 23.2483 -Arial_Black.ttf 96 » 31.1547 26.4082 94 + -8.2381 31.4388 31.4388 -Arial_Black.ttf 96 » 31.1547 26.4082 95 X -13.2935 45.1547 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 96 » 0.0468 31.1547 26.4082 -Arial_Black.ttf 96 » 31.1547 26.4082 97 ' -13.7741 11.6241 15.1879 -Arial_Black.ttf 96 » 31.1547 26.4082 98 ¢ -13.0691 34.2185 53.2203 -Arial_Black.ttf 96 » 31.1547 26.4082 99 Z -13.5828 37.3059 42.0000 -Arial_Black.ttf 96 » 31.1547 26.4082 100 > -9.9697 32.6267 34.9974 -Arial_Black.ttf 96 » 31.1547 26.4082 101 ® -14.5772 43.9720 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 102 © -14.4012 43.9720 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 103 ] -13.1822 18.3427 53.6241 -Arial_Black.ttf 96 » 31.1547 26.4082 104 é -14.6622 34.2185 44.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 105 z -1.7866 28.4327 30.3759 -Arial_Black.ttf 96 » 31.1547 26.4082 106 _ 32.4210 29.1879 2.7797 -Arial_Black.ttf 96 » 31.1547 26.4082 107 ¥ -13.4659 40.4082 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 1 t -0.1631 22.4353 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 2 h 0.0774 31.8427 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 3 a 10.5160 35.4065 32.7517 -Arial_Black.ttf 97 ' 11.6241 15.1879 4 n 10.3505 31.8427 31.5638 -Arial_Black.ttf 97 ' 11.6241 15.1879 5 P 0.1269 34.7474 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 6 o 10.4477 34.2185 32.7517 -Arial_Black.ttf 97 ' 11.6241 15.1879 7 e 10.1711 34.2185 32.7517 -Arial_Black.ttf 97 ' 11.6371 15.1815 8 : 11.6810 11.6371 30.3629 -Arial_Black.ttf 97 ' 11.6241 15.1879 9 r 10.2114 23.9073 31.5638 -Arial_Black.ttf 97 ' 11.6241 15.1879 10 l -0.0844 11.6241 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 11 i 0.0812 11.6241 42.0000 -Arial_Black.ttf 97 ' 11.6371 15.1815 12 1 -1.1764 23.9105 43.1815 -Arial_Black.ttf 97 ' 11.6371 15.1815 13 | -0.2094 7.2718 53.3612 -Arial_Black.ttf 97 ' 11.6241 15.1879 14 N -0.1364 39.2150 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 15 f -1.1068 23.6233 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 16 g 10.3120 34.2185 44.1259 -Arial_Black.ttf 97 ' 11.6241 15.1879 17 d 0.0557 32.7806 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 18 W -0.0909 59.5638 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 19 s 10.2381 31.5638 32.7517 -Arial_Black.ttf 97 ' 11.6241 15.1879 20 c 10.2256 34.2185 32.7517 -Arial_Black.ttf 97 ' 11.6241 15.1879 21 u 11.5852 31.5927 31.5638 -Arial_Black.ttf 97 ' 11.6371 15.1815 22 3 -1.1443 33.8834 44.3629 -Arial_Black.ttf 97 ' 11.6371 15.1815 23 ~ 13.8720 32.7258 14.0000 -Arial_Black.ttf 97 ' 11.6371 15.1815 24 # -1.2227 35.6338 44.3629 -Arial_Black.ttf 97 ' 11.6241 15.1879 25 O -0.9729 42.7168 44.3759 -Arial_Black.ttf 97 ' 11.6371 15.1815 26 ` -1.1111 14.6708 8.4532 -Arial_Black.ttf 97 ' 11.6371 15.1815 27 @ -1.2635 43.1815 49.5147 -Arial_Black.ttf 97 ' 11.6241 15.1879 28 F -0.0812 31.5927 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 29 S -1.2334 37.5323 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 30 p 10.3505 32.7806 42.9379 -Arial_Black.ttf 97 ' 11.6241 15.1879 31 “ -1.3992 25.6241 23.2483 -Arial_Black.ttf 97 ' 11.6241 15.1879 32 % -0.9729 52.3164 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 33 £ -1.2515 34.8724 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 34 . 30.7013 11.6241 11.6241 -Arial_Black.ttf 97 ' 11.6241 15.1879 35 2 -1.1809 33.5935 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 36 5 -0.0097 33.8435 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 37 m 10.3148 51.5035 31.5638 -Arial_Black.ttf 97 ' 11.6241 15.1879 38 V 0.0000 45.1547 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 39 6 -0.8871 33.8435 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 40 w 11.8850 54.8121 30.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 41 T -0.0073 38.4362 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 42 M 0.0455 45.8086 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 43 G -0.9729 42.5629 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 44 b 0.1409 32.7806 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 45 9 -1.1439 33.8435 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 46 ; 11.6533 11.6241 42.9379 -Arial_Black.ttf 97 ' 11.6241 15.1879 47 D 0.0038 38.3112 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 48 L -0.0430 31.9965 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 49 y 11.5430 35.7815 42.9379 -Arial_Black.ttf 97 ' 11.6241 15.1879 50 ‘ -1.1495 11.6241 23.2483 -Arial_Black.ttf 97 ' 11.6241 15.1879 51 \ -1.1879 16.3759 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 52 R -0.0694 41.2212 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 53 < 3.5593 32.6267 34.9974 -Arial_Black.ttf 97 ' 11.6241 15.1879 54 4 -1.5012 38.0612 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 55 8 -1.1904 33.8435 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 56 0 -1.0638 33.8435 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 57 A 0.2498 45.5638 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 58 E 0.0097 34.4974 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 59 B 0.0000 38.3112 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 60 v 11.4513 35.8156 30.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 61 k 0.0045 35.5315 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 62 J -0.2438 33.1556 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 63 U 0.1988 39.2150 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 64 j -0.1812 18.3427 54.5621 -Arial_Black.ttf 97 ' 11.6241 15.1879 65 ( -1.1879 17.4047 56.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 66 7 -0.2242 33.5935 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 67 § -1.3038 34.2185 55.7500 -Arial_Black.ttf 97 ' 11.6241 15.1879 68 $ -3.9357 35.2815 52.4362 -Arial_Black.ttf 97 ' 11.6241 15.1879 69 € -1.1879 38.1914 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 70 / -1.2737 16.3759 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 71 C -1.2788 39.9082 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 72 * -1.1740 22.1565 20.6224 -Arial_Black.ttf 97 ' 11.6241 15.1879 73 ” -1.4003 25.6241 23.2483 -Arial_Black.ttf 97 ' 11.6241 15.1879 74 ? -1.1949 31.8138 43.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 75 { -1.2338 21.4974 56.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 76 } -1.1827 21.4974 56.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 77 , 30.4245 11.6241 24.1862 -Arial_Black.ttf 97 ' 11.6241 15.1879 78 I 0.2113 12.8121 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 79 ° -1.1606 14.1250 14.1250 -Arial_Black.ttf 97 ' 11.6241 15.1879 80 K -0.0135 43.9668 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 81 H -0.0371 39.2150 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 82 q 10.3231 32.7806 42.9379 -Arial_Black.ttf 97 ' 11.6241 15.1879 83 & -1.1890 46.8820 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 84 ’ -0.8583 11.6241 23.2483 -Arial_Black.ttf 97 ' 11.6241 15.1879 85 [ 0.0774 18.3427 53.6241 -Arial_Black.ttf 97 ' 11.6241 15.1879 86 - 22.1884 16.9047 9.2483 -Arial_Black.ttf 97 ' 11.6241 15.1879 87 Y 0.0947 45.5638 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 88 Q -0.9190 44.1547 48.3435 -Arial_Black.ttf 97 ' 11.6241 15.1879 89 " -0.1126 26.8121 15.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 90 ! 0.0360 11.6241 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 91 x 11.6993 38.6914 30.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 92 ) -1.0989 17.4047 56.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 93 = 9.5025 30.9047 23.2483 -Arial_Black.ttf 97 ' 11.6241 15.1879 94 + 5.4173 31.4388 31.4388 -Arial_Black.ttf 97 ' 11.6241 15.1879 95 X 0.0000 45.1547 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 96 » 13.5915 31.1547 26.4082 -Arial_Black.ttf 97 ' 11.6241 15.1879 97 ' -0.0163 11.6241 15.1879 -Arial_Black.ttf 97 ' 11.6241 15.1879 98 ¢ 0.3441 34.2185 53.2203 -Arial_Black.ttf 97 ' 11.6241 15.1879 99 Z -0.0357 37.3059 42.0000 -Arial_Black.ttf 97 ' 11.6241 15.1879 100 > 3.6407 32.6267 34.9974 -Arial_Black.ttf 97 ' 11.6241 15.1879 101 ® -0.8844 43.9720 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 102 © -1.1106 43.9720 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 103 ] -0.2623 18.3427 53.6241 -Arial_Black.ttf 97 ' 11.6241 15.1879 104 é -1.1022 34.2185 44.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 105 z 11.8638 28.4327 30.3759 -Arial_Black.ttf 97 ' 11.6241 15.1879 106 _ 46.0069 29.1879 2.7797 -Arial_Black.ttf 97 ' 11.6241 15.1879 107 ¥ 0.3550 40.4082 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 1 t 0.0351 22.4353 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 2 h -0.4124 31.8427 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 3 a 10.0699 35.4065 32.7517 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 4 n 10.2992 31.8427 31.5638 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 5 P -0.4416 34.7474 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 6 o 9.8308 34.2185 32.7517 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 7 e 10.2093 34.2185 32.7517 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 8 : 11.1949 11.6371 30.3629 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 9 r 9.8600 23.9073 31.5638 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 10 l -0.6102 11.6241 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 11 i -0.8145 11.6241 42.0000 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 12 1 -1.2894 23.9105 43.1815 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 13 | -0.3748 7.2718 53.3612 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 14 N -0.4576 39.2150 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 15 f -1.4582 23.6233 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 16 g 9.7718 34.2185 44.1259 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 17 d -0.5901 32.7806 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 18 W -0.2983 59.5638 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 19 s 9.7763 31.5638 32.7517 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 20 c 10.1468 34.2185 32.7517 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 21 u 11.2216 31.5927 31.5638 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 22 3 -1.5526 33.8834 44.3629 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 23 ~ 13.6275 32.7258 14.0000 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 24 # -1.5470 35.6338 44.3629 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 25 O -1.7239 42.7168 44.3759 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 26 ` -1.6886 14.6708 8.4532 -Arial_Black.ttf 98 ¢ 34.2455 53.1782 27 @ -1.8018 43.1815 49.5147 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 28 F -0.5221 31.5927 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 29 S -1.5714 37.5323 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 30 p 10.1218 32.7806 42.9379 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 31 “ -1.5900 25.6241 23.2483 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 32 % -1.2788 52.3164 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 33 £ -1.4170 34.8724 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 34 . 30.2172 11.6241 11.6241 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 35 2 -1.5840 33.5935 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 36 5 -0.5295 33.8435 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 37 m 10.1354 51.5035 31.5638 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 38 V -0.5378 45.1547 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 39 6 -1.4764 33.8435 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 40 w 11.4377 54.8121 30.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 41 T -0.7196 38.4362 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 42 M -0.5035 45.8086 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 43 G -1.6438 42.5629 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 44 b -0.4975 32.7806 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 45 9 -1.7257 33.8435 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 46 ; 11.5160 11.6241 42.9379 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 47 D -0.6665 38.3112 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 48 L -0.1971 31.9965 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 49 y 11.0135 35.7815 42.9379 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 50 ‘ -1.7953 11.6241 23.2483 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 51 \ -1.6205 16.3759 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 52 R -0.7056 41.2212 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 53 < 2.8921 32.6267 34.9974 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 54 4 -1.6033 38.0612 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 55 8 -1.5895 33.8435 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 56 0 -1.5395 33.8435 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 57 A -0.5601 45.5638 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 58 E -0.1614 34.4974 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 59 B -0.4896 38.3112 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 60 v 11.2209 35.8156 30.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 61 k -0.3987 35.5315 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 62 J -0.5350 33.1556 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 63 U -0.2342 39.2150 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 64 j -0.0716 18.3427 54.5621 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 65 ( -1.4661 17.4047 56.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 66 7 -0.3858 33.5935 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 67 § -1.6794 34.2185 55.7500 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 68 $ -4.8049 35.2815 52.4362 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 69 € -1.8031 38.1914 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 70 / -1.7160 16.3759 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 71 C -1.6813 39.9082 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 72 * -1.6275 22.1565 20.6224 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 73 ” -1.4249 25.6241 23.2483 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 74 ? -1.5918 31.8138 43.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 75 { -1.6262 21.4974 56.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 76 } -1.5661 21.4974 56.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 77 , 30.2052 11.6241 24.1862 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 78 I -0.0446 12.8121 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 79 ° -1.6372 14.1250 14.1250 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 80 K -0.4168 43.9668 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 81 H -0.2422 39.2150 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 82 q 9.8998 32.7806 42.9379 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 83 & -1.4147 46.8820 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 84 ’ -1.7410 11.6241 23.2483 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 85 [ -0.2292 18.3427 53.6241 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 86 - 21.5833 16.9047 9.2483 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 87 Y -0.6481 45.5638 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 88 Q -1.3728 44.1547 48.3435 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 89 " -0.2833 26.8121 15.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 90 ! -0.3403 11.6241 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 91 x 11.2811 38.6914 30.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 92 ) -1.6527 17.4047 56.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 93 = 8.9730 30.9047 23.2483 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 94 + 4.5461 31.4388 31.4388 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 95 X -0.4513 45.1547 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 96 » 12.9361 31.1547 26.4082 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 97 ' -0.6981 11.6241 15.1879 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 98 ¢ 0.2407 34.2185 53.2203 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 99 Z -0.6495 37.3059 42.0000 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 100 > 3.4637 32.6267 34.9974 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 101 ® -1.5061 43.9720 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 102 © -1.8569 43.9720 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 103 ] -0.1419 18.3427 53.6241 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 104 é -1.4722 34.2185 44.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 105 z 11.4656 28.4327 30.3759 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 106 _ 45.6458 29.1879 2.7797 -Arial_Black.ttf 98 ¢ 34.2185 53.2203 107 ¥ -0.5644 40.4082 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 1 t -0.3470 22.4353 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 2 h -0.0997 31.8427 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 3 a 10.4467 35.4065 32.7517 -Arial_Black.ttf 99 Z 37.3059 42.0000 4 n 10.4037 31.8427 31.5638 -Arial_Black.ttf 99 Z 37.3059 42.0000 5 P -0.3672 34.7474 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 6 o 10.3491 34.2185 32.7517 -Arial_Black.ttf 99 Z 37.3059 42.0000 7 e 10.2819 34.2185 32.7517 -Arial_Black.ttf 99 Z 37.3059 42.0000 8 : 11.7480 11.6241 30.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 9 r 10.6368 23.9073 31.5638 -Arial_Black.ttf 99 Z 37.3059 42.0000 10 l 0.1266 11.6241 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 11 i 0.2137 11.6241 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 12 1 -1.0729 23.9073 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 13 | -0.0561 7.2815 53.3741 -Arial_Black.ttf 99 Z 37.3059 42.0000 14 N 0.1543 39.2150 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 15 f -1.0662 23.6233 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 16 g 10.3973 34.2185 44.1259 -Arial_Black.ttf 99 Z 37.3059 42.0000 17 d -0.4603 32.7806 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 18 W 0.0497 59.5638 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 19 s 10.5803 31.5638 32.7517 -Arial_Black.ttf 99 Z 37.3059 42.0000 20 c 10.3412 34.2185 32.7517 -Arial_Black.ttf 99 Z 37.3059 42.0000 21 u 11.5360 31.5927 31.5638 -Arial_Black.ttf 99 Z 37.3059 42.0000 22 3 -1.4062 33.8435 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 23 ~ 13.9545 32.7517 14.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 24 # -1.1704 35.6565 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 25 O -1.2126 42.7168 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 26 ` -1.3079 14.6591 8.4694 -Arial_Black.ttf 99 Z 37.3059 42.0000 27 @ -1.2207 43.1879 49.4974 -Arial_Black.ttf 99 Z 37.3059 42.0000 28 F -0.0565 31.5927 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 29 S -1.3038 37.5323 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 30 p 10.3575 32.7806 42.9379 -Arial_Black.ttf 99 Z 37.3059 42.0000 31 “ -1.4155 25.6241 23.2483 -Arial_Black.ttf 99 Z 37.3059 42.0000 32 % -1.1592 52.3164 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 33 £ -1.6158 34.8724 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 34 . 30.1800 11.6241 11.6241 -Arial_Black.ttf 99 Z 37.3059 42.0000 35 2 -1.3059 33.5935 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 36 5 0.1289 33.8435 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 37 m 10.6090 51.5035 31.5638 -Arial_Black.ttf 99 Z 37.3059 42.0000 38 V -0.1004 45.1547 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 39 6 -1.4777 33.8435 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 40 w 11.5648 54.8121 30.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 41 T 0.2076 38.4362 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 42 M 0.0982 45.8086 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 43 G -0.8543 42.5629 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 44 b -0.0524 32.7806 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 45 9 -1.3275 33.8435 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 46 ; 11.5482 11.6241 42.9379 -Arial_Black.ttf 99 Z 37.3059 42.0000 47 D 0.1585 38.3112 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 48 L -0.0584 31.9965 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 49 y 11.8341 35.7815 42.9379 -Arial_Black.ttf 99 Z 37.3059 42.0000 50 ‘ -1.4026 11.6241 23.2483 -Arial_Black.ttf 99 Z 37.3059 42.0000 51 \ -1.5535 16.3759 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 52 R -0.1548 41.2212 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 53 < 3.4776 32.6267 34.9974 -Arial_Black.ttf 99 Z 37.3059 42.0000 54 4 -1.0229 38.0612 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 55 8 -1.4849 33.8435 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 56 0 -1.0183 33.8435 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 57 A 0.2678 45.5638 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 58 E -0.1543 34.4974 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 59 B -0.0506 38.3112 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 60 v 11.4832 35.8156 30.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 61 k 0.0330 35.5315 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 62 J 0.1399 33.1556 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 63 U -0.2438 39.2150 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 64 j -0.0167 18.3427 54.5621 -Arial_Black.ttf 99 Z 37.3059 42.0000 65 ( -1.1560 17.4047 56.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 66 7 0.1248 33.5935 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 67 § -1.1499 34.2185 55.7500 -Arial_Black.ttf 99 Z 37.3059 42.0000 68 $ -4.0226 35.2815 52.4362 -Arial_Black.ttf 99 Z 37.3059 42.0000 69 € -1.1355 38.1914 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 70 / -1.0780 16.3759 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 71 C -1.1522 39.9082 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 72 * -1.4304 22.1565 20.6224 -Arial_Black.ttf 99 Z 37.3059 42.0000 73 ” -1.4735 25.6241 23.2483 -Arial_Black.ttf 99 Z 37.3059 42.0000 74 ? -1.2486 31.8138 43.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 75 { -1.1370 21.4974 56.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 76 } -0.9975 21.4974 56.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 77 , 30.0764 11.6241 24.1862 -Arial_Black.ttf 99 Z 37.3059 42.0000 78 I 0.2206 12.8121 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 79 ° -0.8917 14.1250 14.1250 -Arial_Black.ttf 99 Z 37.3059 42.0000 80 K -0.2945 43.9668 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 81 H 0.0959 39.2150 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 82 q 10.1739 32.7806 42.9379 -Arial_Black.ttf 99 Z 37.3059 42.0000 83 & -1.2288 46.8820 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 84 ’ -1.1467 11.6241 23.2483 -Arial_Black.ttf 99 Z 37.3059 42.0000 85 [ 0.0882 18.3427 53.6241 -Arial_Black.ttf 99 Z 37.3059 42.0000 86 - 21.9868 16.9047 9.2483 -Arial_Black.ttf 99 Z 37.3059 42.0000 87 Y 0.3463 45.5638 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 88 Q -1.0151 44.1547 48.3435 -Arial_Black.ttf 99 Z 37.3059 42.0000 89 " -0.1405 26.8121 15.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 90 ! 0.1988 11.6241 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 91 x 11.4226 38.6914 30.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 92 ) -1.2237 17.4047 56.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 93 = 9.4018 30.9047 23.2483 -Arial_Black.ttf 99 Z 37.3059 42.0000 94 + 5.2218 31.4388 31.4388 -Arial_Black.ttf 99 Z 37.3059 42.0000 95 X 0.3449 45.1547 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 96 » 13.6345 31.1547 26.4082 -Arial_Black.ttf 99 Z 37.3059 42.0000 97 ' -0.1571 11.6241 15.1879 -Arial_Black.ttf 99 Z 37.3059 42.0000 98 ¢ 0.4710 34.2185 53.2203 -Arial_Black.ttf 99 Z 37.3059 42.0000 99 Z 0.0042 37.3059 42.0000 -Arial_Black.ttf 99 Z 37.3059 42.0000 100 > 3.6649 32.6267 34.9974 -Arial_Black.ttf 99 Z 37.3059 42.0000 101 ® -1.4048 43.9720 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 102 © -1.2594 43.9720 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 103 ] 0.0377 18.3427 53.6241 -Arial_Black.ttf 99 Z 37.3059 42.0000 104 é -1.0099 34.2185 44.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 105 z 11.7852 28.4327 30.3759 -Arial_Black.ttf 99 Z 37.3059 42.0000 106 _ 46.0597 29.1879 2.7797 -Arial_Black.ttf 99 Z 37.3059 42.0000 107 ¥ -0.2739 40.4082 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 1 t -3.5152 22.4353 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 2 h -3.5953 31.8427 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 3 a 7.0357 35.4065 32.7517 -Arial_Black.ttf 100 > 32.6267 34.9974 4 n 6.9651 31.8427 31.5638 -Arial_Black.ttf 100 > 32.6267 34.9974 5 P -3.2876 34.7474 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 6 o 6.7919 34.2185 32.7517 -Arial_Black.ttf 100 > 32.6267 34.9974 7 e 7.1096 34.2185 32.7517 -Arial_Black.ttf 100 > 32.6051 34.9975 8 : 8.2283 11.6371 30.3629 -Arial_Black.ttf 100 > 32.6267 34.9974 9 r 6.5272 23.9073 31.5638 -Arial_Black.ttf 100 > 32.6267 34.9974 10 l -3.8076 11.6241 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 11 i -3.5541 11.6241 42.0000 -Arial_Black.ttf 100 > 32.6051 34.9975 12 1 -4.8086 23.9105 43.1815 -Arial_Black.ttf 100 > 32.6051 34.9975 13 | -3.6536 7.2718 53.3612 -Arial_Black.ttf 100 > 32.6267 34.9974 14 N -3.7307 39.2150 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 15 f -4.4430 23.6233 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 16 g 6.6146 34.2185 44.1259 -Arial_Black.ttf 100 > 32.6267 34.9974 17 d -3.4799 32.7806 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 18 W -3.4756 59.5638 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 19 s 6.7885 31.5638 32.7517 -Arial_Black.ttf 100 > 32.6267 34.9974 20 c 7.0059 34.2185 32.7517 -Arial_Black.ttf 100 > 32.6267 34.9974 21 u 7.9340 31.5927 31.5638 -Arial_Black.ttf 100 > 32.6051 34.9975 22 3 -4.4636 33.8834 44.3629 -Arial_Black.ttf 100 > 32.6051 34.9975 23 ~ 10.3671 32.7258 14.0000 -Arial_Black.ttf 100 > 32.6051 34.9975 24 # -4.9232 35.6338 44.3629 -Arial_Black.ttf 100 > 32.6267 34.9974 25 O -4.8287 42.7168 44.3759 -Arial_Black.ttf 100 > 32.6051 34.9975 26 ` -4.5764 14.6708 8.4532 -Arial_Black.ttf 100 > 32.6051 34.9975 27 @ -4.6694 43.1815 49.5147 -Arial_Black.ttf 100 > 32.6267 34.9974 28 F -3.7813 31.5927 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 29 S -4.8773 37.5323 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 30 p 6.8682 32.7806 42.9379 -Arial_Black.ttf 100 > 32.6267 34.9974 31 “ -4.8959 25.6241 23.2483 -Arial_Black.ttf 100 > 32.6267 34.9974 32 % -4.6294 52.3164 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 33 £ -5.0442 34.8724 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 34 . 27.2412 11.6241 11.6241 -Arial_Black.ttf 100 > 32.6267 34.9974 35 2 -4.7917 33.5935 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 36 5 -3.5229 33.8435 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 37 m 6.8380 51.5035 31.5638 -Arial_Black.ttf 100 > 32.6267 34.9974 38 V -3.3885 45.1547 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 39 6 -4.5617 33.8435 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 40 w 8.0273 54.8121 30.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 41 T -3.7386 38.4362 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 42 M -3.5575 45.8086 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 43 G -4.6405 42.5629 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 44 b -3.5213 32.7806 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 45 9 -4.8309 33.8435 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 46 ; 8.1085 11.6241 42.9379 -Arial_Black.ttf 100 > 32.6267 34.9974 47 D -3.4910 38.3112 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 48 L -3.4840 31.9965 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 49 y 8.1313 35.7815 42.9379 -Arial_Black.ttf 100 > 32.6267 34.9974 50 ‘ -4.7912 11.6241 23.2483 -Arial_Black.ttf 100 > 32.6267 34.9974 51 \ -4.5835 16.3759 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 52 R -3.4752 41.2212 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 53 < -0.1079 32.6267 34.9974 -Arial_Black.ttf 100 > 32.6267 34.9974 54 4 -4.9416 38.0612 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 55 8 -4.8881 33.8435 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 56 0 -4.8413 33.8435 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 57 A -3.5281 45.5638 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 58 E -3.4407 34.4974 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 59 B -3.4826 38.3112 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 60 v 8.0603 35.8156 30.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 61 k -3.4507 35.5315 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 62 J -3.5453 33.1556 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 63 U -3.6860 39.2150 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 64 j -3.4729 18.3427 54.5621 -Arial_Black.ttf 100 > 32.6267 34.9974 65 ( -4.7399 17.4047 56.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 66 7 -3.4643 33.5935 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 67 § -4.6884 34.2185 55.7500 -Arial_Black.ttf 100 > 32.6267 34.9974 68 $ -7.3041 35.2815 52.4362 -Arial_Black.ttf 100 > 32.6267 34.9974 69 € -4.6619 38.1914 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 70 / -4.7063 16.3759 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 71 C -4.6192 39.9082 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 72 * -4.9264 22.1565 20.6224 -Arial_Black.ttf 100 > 32.6267 34.9974 73 ” -5.0108 25.6241 23.2483 -Arial_Black.ttf 100 > 32.6267 34.9974 74 ? -4.9845 31.8138 43.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 75 { -4.9567 21.4974 56.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 76 } -4.4653 21.4974 56.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 77 , 27.0202 11.6241 24.1862 -Arial_Black.ttf 100 > 32.6267 34.9974 78 I -3.7334 12.8121 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 79 ° -4.5456 14.1250 14.1250 -Arial_Black.ttf 100 > 32.6267 34.9974 80 K -3.6732 43.9668 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 81 H -3.3080 39.2150 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 82 q 6.6953 32.7806 42.9379 -Arial_Black.ttf 100 > 32.6267 34.9974 83 & -4.9259 46.8820 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 84 ’ -4.2327 11.6241 23.2483 -Arial_Black.ttf 100 > 32.6267 34.9974 85 [ -3.4914 18.3427 53.6241 -Arial_Black.ttf 100 > 32.6267 34.9974 86 - 18.3864 16.9047 9.2483 -Arial_Black.ttf 100 > 32.6267 34.9974 87 Y -3.1829 45.5638 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 88 Q -4.8427 44.1547 48.3435 -Arial_Black.ttf 100 > 32.6267 34.9974 89 " -3.7674 26.8121 15.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 90 ! -3.6486 11.6241 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 91 x 8.0144 38.6914 30.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 92 ) -4.7495 17.4047 56.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 93 = 5.7676 30.9047 23.2483 -Arial_Black.ttf 100 > 32.6267 34.9974 94 + 1.5093 31.4388 31.4388 -Arial_Black.ttf 100 > 32.6267 34.9974 95 X -3.5457 45.1547 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 96 » 9.5744 31.1547 26.4082 -Arial_Black.ttf 100 > 32.6267 34.9974 97 ' -3.7761 11.6241 15.1879 -Arial_Black.ttf 100 > 32.6267 34.9974 98 ¢ -2.9949 34.2185 53.2203 -Arial_Black.ttf 100 > 32.6267 34.9974 99 Z -3.6125 37.3059 42.0000 -Arial_Black.ttf 100 > 32.6267 34.9974 100 > 0.0357 32.6267 34.9974 -Arial_Black.ttf 100 > 32.6267 34.9974 101 ® -5.1949 43.9720 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 102 © -4.8305 43.9720 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 103 ] -3.6075 18.3427 53.6241 -Arial_Black.ttf 100 > 32.6267 34.9974 104 é -4.7156 34.2185 44.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 105 z 7.9809 28.4327 30.3759 -Arial_Black.ttf 100 > 32.6267 34.9974 106 _ 42.6791 29.1879 2.7797 -Arial_Black.ttf 100 > 32.6267 34.9974 107 ¥ -3.5721 40.4082 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 1 t 1.0109 22.4353 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 2 h 1.0836 31.8427 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 3 a 11.4090 35.4065 32.7517 -Arial_Black.ttf 101 ® 43.9720 44.3759 4 n 11.4472 31.8427 31.5638 -Arial_Black.ttf 101 ® 43.9720 44.3759 5 P 1.4827 34.7474 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 6 o 11.8693 34.2185 32.7517 -Arial_Black.ttf 101 ® 43.9720 44.3759 7 e 11.4119 34.2185 32.7517 -Arial_Black.ttf 101 ® 43.9385 44.3629 8 : 12.6624 11.6371 30.3629 -Arial_Black.ttf 101 ® 43.9720 44.3759 9 r 12.0055 23.9073 31.5638 -Arial_Black.ttf 101 ® 43.9720 44.3759 10 l 1.2979 11.6241 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 11 i 1.2893 11.6241 42.0000 -Arial_Black.ttf 101 ® 43.9385 44.3629 12 1 -0.3173 23.9105 43.1815 -Arial_Black.ttf 101 ® 43.9385 44.3629 13 | 1.2203 7.2718 53.3612 -Arial_Black.ttf 101 ® 43.9720 44.3759 14 N 1.1262 39.2150 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 15 f -0.0620 23.6233 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 16 g 11.5779 34.2185 44.1259 -Arial_Black.ttf 101 ® 43.9720 44.3759 17 d 0.7158 32.7806 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 18 W 1.0599 59.5638 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 19 s 11.4516 31.5638 32.7517 -Arial_Black.ttf 101 ® 43.9720 44.3759 20 c 11.3883 34.2185 32.7517 -Arial_Black.ttf 101 ® 43.9720 44.3759 21 u 13.0693 31.5927 31.5638 -Arial_Black.ttf 101 ® 43.9385 44.3629 22 3 0.1544 33.8834 44.3629 -Arial_Black.ttf 101 ® 43.9385 44.3629 23 ~ 15.1487 32.7258 14.0000 -Arial_Black.ttf 101 ® 43.9385 44.3629 24 # 0.2623 35.6338 44.3629 -Arial_Black.ttf 101 ® 43.9720 44.3759 25 O 0.0616 42.7168 44.3759 -Arial_Black.ttf 101 ® 43.9385 44.3629 26 ` 0.0094 14.6708 8.4532 -Arial_Black.ttf 101 ® 43.9385 44.3629 27 @ 0.0801 43.1815 49.5147 -Arial_Black.ttf 101 ® 43.9720 44.3759 28 F 1.2565 31.5927 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 29 S 0.1344 37.5323 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 30 p 11.6112 32.7806 42.9379 -Arial_Black.ttf 101 ® 43.9720 44.3759 31 “ 0.3686 25.6241 23.2483 -Arial_Black.ttf 101 ® 43.9720 44.3759 32 % 0.2801 52.3164 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 33 £ -0.2368 34.8724 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 34 . 31.6046 11.6241 11.6241 -Arial_Black.ttf 101 ® 43.9720 44.3759 35 2 -0.0766 33.5935 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 36 5 1.1852 33.8435 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 37 m 11.6890 51.5035 31.5638 -Arial_Black.ttf 101 ® 43.9720 44.3759 38 V 1.3056 45.1547 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 39 6 -0.0129 33.8435 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 40 w 12.5158 54.8121 30.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 41 T 1.0984 38.4362 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 42 M 1.1337 45.8086 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 43 G 0.3262 42.5629 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 44 b 1.0110 32.7806 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 45 9 0.5056 33.8435 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 46 ; 12.7528 11.6241 42.9379 -Arial_Black.ttf 101 ® 43.9720 44.3759 47 D 0.9271 38.3112 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 48 L 0.8555 31.9965 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 49 y 12.6540 35.7815 42.9379 -Arial_Black.ttf 101 ® 43.9720 44.3759 50 ‘ -0.1262 11.6241 23.2483 -Arial_Black.ttf 101 ® 43.9720 44.3759 51 \ -0.0817 16.3759 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 52 R 1.0368 41.2212 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 53 < 4.9061 32.6267 34.9974 -Arial_Black.ttf 101 ® 43.9720 44.3759 54 4 0.2224 38.0612 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 55 8 -0.3841 33.8435 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 56 0 0.0217 33.8435 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 57 A 1.5199 45.5638 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 58 E 1.4150 34.4974 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 59 B 0.8611 38.3112 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 60 v 12.8593 35.8156 30.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 61 k 1.3349 35.5315 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 62 J 1.3729 33.1556 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 63 U 1.0266 39.2150 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 64 j 1.2467 18.3427 54.5621 -Arial_Black.ttf 101 ® 43.9720 44.3759 65 ( 0.4180 17.4047 56.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 66 7 1.2115 33.5935 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 67 § -0.0052 34.2185 55.7500 -Arial_Black.ttf 101 ® 43.9720 44.3759 68 $ -2.7797 35.2815 52.4362 -Arial_Black.ttf 101 ® 43.9720 44.3759 69 € -0.0045 38.1914 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 70 / -0.3774 16.3759 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 71 C 0.0909 39.9082 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 72 * -0.3337 22.1565 20.6224 -Arial_Black.ttf 101 ® 43.9720 44.3759 73 ” -0.1868 25.6241 23.2483 -Arial_Black.ttf 101 ® 43.9720 44.3759 74 ? 0.3452 31.8138 43.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 75 { -0.2336 21.4974 56.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 76 } 0.0895 21.4974 56.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 77 , 31.4455 11.6241 24.1862 -Arial_Black.ttf 101 ® 43.9720 44.3759 78 I 1.5514 12.8121 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 79 ° -0.2466 14.1250 14.1250 -Arial_Black.ttf 101 ® 43.9720 44.3759 80 K 1.1018 43.9668 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 81 H 0.8127 39.2150 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 82 q 11.3864 32.7806 42.9379 -Arial_Black.ttf 101 ® 43.9720 44.3759 83 & -0.0687 46.8820 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 84 ’ -0.0774 11.6241 23.2483 -Arial_Black.ttf 101 ® 43.9720 44.3759 85 [ 1.2983 18.3427 53.6241 -Arial_Black.ttf 101 ® 43.9720 44.3759 86 - 23.2517 16.9047 9.2483 -Arial_Black.ttf 101 ® 43.9720 44.3759 87 Y 1.0586 45.5638 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 88 Q -0.0339 44.1547 48.3435 -Arial_Black.ttf 101 ® 43.9720 44.3759 89 " 1.3677 26.8121 15.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 90 ! 1.3053 11.6241 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 91 x 12.7763 38.6914 30.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 92 ) 0.1682 17.4047 56.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 93 = 10.5879 30.9047 23.2483 -Arial_Black.ttf 101 ® 43.9720 44.3759 94 + 6.4536 31.4388 31.4388 -Arial_Black.ttf 101 ® 43.9720 44.3759 95 X 1.2306 45.1547 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 96 » 14.7554 31.1547 26.4082 -Arial_Black.ttf 101 ® 43.9720 44.3759 97 ' 1.2681 11.6241 15.1879 -Arial_Black.ttf 101 ® 43.9720 44.3759 98 ¢ 1.5386 34.2185 53.2203 -Arial_Black.ttf 101 ® 43.9720 44.3759 99 Z 1.5498 37.3059 42.0000 -Arial_Black.ttf 101 ® 43.9720 44.3759 100 > 4.3382 32.6267 34.9974 -Arial_Black.ttf 101 ® 43.9720 44.3759 101 ® 0.2396 43.9720 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 102 © 0.0880 43.9720 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 103 ] 0.9742 18.3427 53.6241 -Arial_Black.ttf 101 ® 43.9720 44.3759 104 é -0.0019 34.2185 44.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 105 z 13.0823 28.4327 30.3759 -Arial_Black.ttf 101 ® 43.9720 44.3759 106 _ 47.2835 29.1879 2.7797 -Arial_Black.ttf 101 ® 43.9720 44.3759 107 ¥ 1.3916 40.4082 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 1 t 1.2921 22.4353 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 2 h 0.9446 31.8427 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 3 a 11.5091 35.4065 32.7517 -Arial_Black.ttf 102 © 43.9720 44.3759 4 n 11.8815 31.8427 31.5638 -Arial_Black.ttf 102 © 43.9720 44.3759 5 P 1.5916 34.7474 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 6 o 11.8774 34.2185 32.7517 -Arial_Black.ttf 102 © 43.9720 44.3759 7 e 11.8544 34.2185 32.7517 -Arial_Black.ttf 102 © 43.9385 44.3629 8 : 12.6668 11.6371 30.3629 -Arial_Black.ttf 102 © 43.9720 44.3759 9 r 11.4586 23.9073 31.5638 -Arial_Black.ttf 102 © 43.9720 44.3759 10 l 1.4912 11.6241 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 11 i 1.3780 11.6241 42.0000 -Arial_Black.ttf 102 © 43.9385 44.3629 12 1 0.1926 23.9105 43.1815 -Arial_Black.ttf 102 © 43.9385 44.3629 13 | 0.8739 7.2718 53.3612 -Arial_Black.ttf 102 © 43.9720 44.3759 14 N 1.2881 39.2150 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 15 f 0.1546 23.6233 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 16 g 11.9263 34.2185 44.1259 -Arial_Black.ttf 102 © 43.9720 44.3759 17 d 1.3510 32.7806 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 18 W 1.0478 59.5638 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 19 s 11.6539 31.5638 32.7517 -Arial_Black.ttf 102 © 43.9720 44.3759 20 c 11.6019 34.2185 32.7517 -Arial_Black.ttf 102 © 43.9720 44.3759 21 u 12.9734 31.5927 31.5638 -Arial_Black.ttf 102 © 43.9385 44.3629 22 3 -0.0381 33.8834 44.3629 -Arial_Black.ttf 102 © 43.9385 44.3629 23 ~ 15.4011 32.7258 14.0000 -Arial_Black.ttf 102 © 43.9385 44.3629 24 # 0.2037 35.6338 44.3629 -Arial_Black.ttf 102 © 43.9720 44.3759 25 O 0.0844 42.7168 44.3759 -Arial_Black.ttf 102 © 43.9385 44.3629 26 ` -0.1254 14.6708 8.4532 -Arial_Black.ttf 102 © 43.9385 44.3629 27 @ -0.0402 43.1815 49.5147 -Arial_Black.ttf 102 © 43.9720 44.3759 28 F 1.2779 31.5927 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 29 S 0.1242 37.5323 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 30 p 11.5287 32.7806 42.9379 -Arial_Black.ttf 102 © 43.9720 44.3759 31 “ -0.1511 25.6241 23.2483 -Arial_Black.ttf 102 © 43.9720 44.3759 32 % 0.0524 52.3164 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 33 £ 0.0312 34.8724 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 34 . 31.3966 11.6241 11.6241 -Arial_Black.ttf 102 © 43.9720 44.3759 35 2 -0.0593 33.5935 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 36 5 1.1588 33.8435 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 37 m 11.7480 51.5035 31.5638 -Arial_Black.ttf 102 © 43.9720 44.3759 38 V 1.3603 45.1547 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 39 6 -0.2984 33.8435 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 40 w 12.7651 54.8121 30.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 41 T 1.3600 38.4362 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 42 M 1.1766 45.8086 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 43 G -0.2441 42.5629 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 44 b 1.0882 32.7806 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 45 9 -0.2095 33.8435 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 46 ; 12.6191 11.6241 42.9379 -Arial_Black.ttf 102 © 43.9720 44.3759 47 D 1.2244 38.3112 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 48 L 1.4419 31.9965 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 49 y 12.6535 35.7815 42.9379 -Arial_Black.ttf 102 © 43.9720 44.3759 50 ‘ 0.0052 11.6241 23.2483 -Arial_Black.ttf 102 © 43.9720 44.3759 51 \ -0.0055 16.3759 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 52 R 1.1508 41.2212 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 53 < 4.7590 32.6267 34.9974 -Arial_Black.ttf 102 © 43.9720 44.3759 54 4 -0.3688 38.0612 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 55 8 -0.0487 33.8435 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 56 0 0.1619 33.8435 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 57 A 1.1457 45.5638 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 58 E 1.4442 34.4974 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 59 B 0.8737 38.3112 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 60 v 12.8534 35.8156 30.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 61 k 1.4017 35.5315 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 62 J 1.3472 33.1556 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 63 U 1.2649 39.2150 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 64 j 1.2969 18.3427 54.5621 -Arial_Black.ttf 102 © 43.9720 44.3759 65 ( -0.4316 17.4047 56.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 66 7 0.9403 33.5935 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 67 § 0.2537 34.2185 55.7500 -Arial_Black.ttf 102 © 43.9720 44.3759 68 $ -3.0605 35.2815 52.4362 -Arial_Black.ttf 102 © 43.9720 44.3759 69 € 0.2564 38.1914 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 70 / 0.0850 16.3759 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 71 C -0.2645 39.9082 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 72 * 0.0906 22.1565 20.6224 -Arial_Black.ttf 102 © 43.9720 44.3759 73 ” 0.0819 25.6241 23.2483 -Arial_Black.ttf 102 © 43.9720 44.3759 74 ? -0.0825 31.8138 43.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 75 { 0.0260 21.4974 56.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 76 } 0.0400 21.4974 56.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 77 , 31.6880 11.6241 24.1862 -Arial_Black.ttf 102 © 43.9720 44.3759 78 I 1.1050 12.8121 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 79 ° -0.2414 14.1250 14.1250 -Arial_Black.ttf 102 © 43.9720 44.3759 80 K 1.5277 43.9668 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 81 H 0.9965 39.2150 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 82 q 11.6705 32.7806 42.9379 -Arial_Black.ttf 102 © 43.9720 44.3759 83 & -0.0000 46.8820 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 84 ’ 0.2543 11.6241 23.2483 -Arial_Black.ttf 102 © 43.9720 44.3759 85 [ 1.0266 18.3427 53.6241 -Arial_Black.ttf 102 © 43.9720 44.3759 86 - 23.0103 16.9047 9.2483 -Arial_Black.ttf 102 © 43.9720 44.3759 87 Y 1.1533 45.5638 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 88 Q -0.1689 44.1547 48.3435 -Arial_Black.ttf 102 © 43.9720 44.3759 89 " 1.1658 26.8121 15.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 90 ! 1.5119 11.6241 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 91 x 13.0720 38.6914 30.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 92 ) 0.1526 17.4047 56.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 93 = 10.8632 30.9047 23.2483 -Arial_Black.ttf 102 © 43.9720 44.3759 94 + 6.5945 31.4388 31.4388 -Arial_Black.ttf 102 © 43.9720 44.3759 95 X 1.2201 45.1547 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 96 » 14.4068 31.1547 26.4082 -Arial_Black.ttf 102 © 43.9720 44.3759 97 ' 0.8125 11.6241 15.1879 -Arial_Black.ttf 102 © 43.9720 44.3759 98 ¢ 1.5900 34.2185 53.2203 -Arial_Black.ttf 102 © 43.9720 44.3759 99 Z 1.2375 37.3059 42.0000 -Arial_Black.ttf 102 © 43.9720 44.3759 100 > 4.8469 32.6267 34.9974 -Arial_Black.ttf 102 © 43.9720 44.3759 101 ® -0.0749 43.9720 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 102 © 0.0542 43.9720 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 103 ] 1.1847 18.3427 53.6241 -Arial_Black.ttf 102 © 43.9720 44.3759 104 é -0.0694 34.2185 44.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 105 z 12.8725 28.4327 30.3759 -Arial_Black.ttf 102 © 43.9720 44.3759 106 _ 47.1795 29.1879 2.7797 -Arial_Black.ttf 102 © 43.9720 44.3759 107 ¥ 1.1019 40.4082 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 1 t -0.0819 22.4353 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 2 h 0.2456 31.8427 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 3 a 10.4222 35.4065 32.7517 -Arial_Black.ttf 103 ] 18.3427 53.6241 4 n 10.2977 31.8427 31.5638 -Arial_Black.ttf 103 ] 18.3427 53.6241 5 P -0.1122 34.7474 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 6 o 10.5136 34.2185 32.7517 -Arial_Black.ttf 103 ] 18.3427 53.6241 7 e 10.4334 34.2185 32.7517 -Arial_Black.ttf 103 ] 18.3653 53.6371 8 : 11.6766 11.6371 30.3629 -Arial_Black.ttf 103 ] 18.3427 53.6241 9 r 10.5174 23.9073 31.5638 -Arial_Black.ttf 103 ] 18.3427 53.6241 10 l 0.0365 11.6241 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 11 i -0.0129 11.6241 42.0000 -Arial_Black.ttf 103 ] 18.3653 53.6371 12 1 -1.1443 23.9105 43.1815 -Arial_Black.ttf 103 ] 18.3653 53.6371 13 | -0.1107 7.2718 53.3612 -Arial_Black.ttf 103 ] 18.3427 53.6241 14 N 0.0059 39.2150 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 15 f -1.2816 23.6233 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 16 g 10.3134 34.2185 44.1259 -Arial_Black.ttf 103 ] 18.3427 53.6241 17 d -0.0857 32.7806 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 18 W 0.1585 59.5638 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 19 s 10.4834 31.5638 32.7517 -Arial_Black.ttf 103 ] 18.3427 53.6241 20 c 10.5150 34.2185 32.7517 -Arial_Black.ttf 103 ] 18.3427 53.6241 21 u 11.6259 31.5927 31.5638 -Arial_Black.ttf 103 ] 18.3653 53.6371 22 3 -1.3353 33.8834 44.3629 -Arial_Black.ttf 103 ] 18.3653 53.6371 23 ~ 13.9611 32.7258 14.0000 -Arial_Black.ttf 103 ] 18.3653 53.6371 24 # -0.9282 35.6338 44.3629 -Arial_Black.ttf 103 ] 18.3427 53.6241 25 O -1.2719 42.7168 44.3759 -Arial_Black.ttf 103 ] 18.3653 53.6371 26 ` -1.2428 14.6708 8.4532 -Arial_Black.ttf 103 ] 18.3653 53.6371 27 @ -1.0973 43.1815 49.5147 -Arial_Black.ttf 103 ] 18.3427 53.6241 28 F 0.0251 31.5927 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 29 S -1.0248 37.5323 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 30 p 10.3606 32.7806 42.9379 -Arial_Black.ttf 103 ] 18.3427 53.6241 31 “ -1.2361 25.6241 23.2483 -Arial_Black.ttf 103 ] 18.3427 53.6241 32 % -1.2751 52.3164 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 33 £ -1.0711 34.8724 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 34 . 30.2985 11.6241 11.6241 -Arial_Black.ttf 103 ] 18.3427 53.6241 35 2 -1.1995 33.5935 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 36 5 -0.0055 33.8435 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 37 m 10.4310 51.5035 31.5638 -Arial_Black.ttf 103 ] 18.3427 53.6241 38 V -0.0903 45.1547 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 39 6 -1.1495 33.8435 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 40 w 11.4527 54.8121 30.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 41 T -0.0794 38.4362 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 42 M -0.0052 45.8086 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 43 G -1.2149 42.5629 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 44 b -0.2280 32.7806 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 45 9 -1.0095 33.8435 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 46 ; 11.2832 11.6241 42.9379 -Arial_Black.ttf 103 ] 18.3427 53.6241 47 D 0.2651 38.3112 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 48 L 0.0097 31.9965 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 49 y 11.6626 35.7815 42.9379 -Arial_Black.ttf 103 ] 18.3427 53.6241 50 ‘ -1.1744 11.6241 23.2483 -Arial_Black.ttf 103 ] 18.3427 53.6241 51 \ -1.3608 16.3759 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 52 R 0.0013 41.2212 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 53 < 3.9961 32.6267 34.9974 -Arial_Black.ttf 103 ] 18.3427 53.6241 54 4 -0.9839 38.0612 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 55 8 -1.1040 33.8435 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 56 0 -1.0331 33.8435 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 57 A -0.0181 45.5638 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 58 E 0.1000 34.4974 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 59 B 0.0135 38.3112 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 60 v 11.2477 35.8156 30.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 61 k -0.2721 35.5315 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 62 J -0.1154 33.1556 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 63 U -0.1301 39.2150 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 64 j -0.0885 18.3427 54.5621 -Arial_Black.ttf 103 ] 18.3427 53.6241 65 ( -1.2033 17.4047 56.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 66 7 -0.0812 33.5935 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 67 § -1.1731 34.2185 55.7500 -Arial_Black.ttf 103 ] 18.3427 53.6241 68 $ -3.8819 35.2815 52.4362 -Arial_Black.ttf 103 ] 18.3427 53.6241 69 € -1.3219 38.1914 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 70 / -1.1990 16.3759 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 71 C -1.1903 39.9082 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 72 * -0.9496 22.1565 20.6224 -Arial_Black.ttf 103 ] 18.3427 53.6241 73 ” -1.0911 25.6241 23.2483 -Arial_Black.ttf 103 ] 18.3427 53.6241 74 ? -1.2659 31.8138 43.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 75 { -1.1793 21.4974 56.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 76 } -1.2788 21.4974 56.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 77 , 30.1659 11.6241 24.1862 -Arial_Black.ttf 103 ] 18.3427 53.6241 78 I -0.1301 12.8121 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 79 ° -1.3121 14.1250 14.1250 -Arial_Black.ttf 103 ] 18.3427 53.6241 80 K -0.1045 43.9668 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 81 H 0.1409 39.2150 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 82 q 10.3991 32.7806 42.9379 -Arial_Black.ttf 103 ] 18.3427 53.6241 83 & -1.0873 46.8820 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 84 ’ -1.0786 11.6241 23.2483 -Arial_Black.ttf 103 ] 18.3427 53.6241 85 [ -0.0417 18.3427 53.6241 -Arial_Black.ttf 103 ] 18.3427 53.6241 86 - 22.1527 16.9047 9.2483 -Arial_Black.ttf 103 ] 18.3427 53.6241 87 Y -0.0045 45.5638 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 88 Q -1.2015 44.1547 48.3435 -Arial_Black.ttf 103 ] 18.3427 53.6241 89 " -0.0385 26.8121 15.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 90 ! 0.0000 11.6241 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 91 x 11.7757 38.6914 30.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 92 ) -1.1769 17.4047 56.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 93 = 9.3397 30.9047 23.2483 -Arial_Black.ttf 103 ] 18.3427 53.6241 94 + 5.2908 31.4388 31.4388 -Arial_Black.ttf 103 ] 18.3427 53.6241 95 X 0.1312 45.1547 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 96 » 13.6245 31.1547 26.4082 -Arial_Black.ttf 103 ] 18.3427 53.6241 97 ' 0.0830 11.6241 15.1879 -Arial_Black.ttf 103 ] 18.3427 53.6241 98 ¢ 0.3056 34.2185 53.2203 -Arial_Black.ttf 103 ] 18.3427 53.6241 99 Z -0.0787 37.3059 42.0000 -Arial_Black.ttf 103 ] 18.3427 53.6241 100 > 3.4753 32.6267 34.9974 -Arial_Black.ttf 103 ] 18.3427 53.6241 101 ® -1.0229 43.9720 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 102 © -1.1027 43.9720 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 103 ] 0.0028 18.3427 53.6241 -Arial_Black.ttf 103 ] 18.3427 53.6241 104 é -1.3070 34.2185 44.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 105 z 11.5963 28.4327 30.3759 -Arial_Black.ttf 103 ] 18.3427 53.6241 106 _ 46.1849 29.1879 2.7797 -Arial_Black.ttf 103 ] 18.3427 53.6241 107 ¥ -0.0857 40.4082 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 1 t 1.0367 22.4353 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 2 h 1.0841 31.8427 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 3 a 11.6741 35.4065 32.7517 -Arial_Black.ttf 104 é 34.2185 44.3759 4 n 11.6807 31.8427 31.5638 -Arial_Black.ttf 104 é 34.2185 44.3759 5 P 1.2474 34.7474 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 6 o 11.6875 34.2185 32.7517 -Arial_Black.ttf 104 é 34.2185 44.3759 7 e 11.3456 34.2185 32.7517 -Arial_Black.ttf 104 é 34.2185 44.3759 8 : 12.7378 11.6241 30.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 9 r 11.5884 23.9073 31.5638 -Arial_Black.ttf 104 é 34.2185 44.3759 10 l 1.6390 11.6241 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 11 i 1.1991 11.6241 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 12 1 -0.2696 23.9073 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 13 | 1.1352 7.2815 53.3741 -Arial_Black.ttf 104 é 34.2185 44.3759 14 N 1.5053 39.2150 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 15 f -0.0292 23.6233 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 16 g 11.4787 34.2185 44.1259 -Arial_Black.ttf 104 é 34.2185 44.3759 17 d 1.1633 32.7806 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 18 W 1.0689 59.5638 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 19 s 11.3993 31.5638 32.7517 -Arial_Black.ttf 104 é 34.2185 44.3759 20 c 11.5161 34.2185 32.7517 -Arial_Black.ttf 104 é 34.2185 44.3759 21 u 12.6531 31.5927 31.5638 -Arial_Black.ttf 104 é 34.2185 44.3759 22 3 0.3532 33.8435 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 23 ~ 15.0196 32.7517 14.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 24 # 0.1350 35.6565 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 25 O -0.1270 42.7168 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 26 ` -0.1794 14.6591 8.4694 -Arial_Black.ttf 104 é 34.2185 44.3759 27 @ -0.0204 43.1879 49.4974 -Arial_Black.ttf 104 é 34.2185 44.3759 28 F 1.3678 31.5927 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 29 S -0.2008 37.5323 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 30 p 11.8295 32.7806 42.9379 -Arial_Black.ttf 104 é 34.2185 44.3759 31 “ -0.1006 25.6241 23.2483 -Arial_Black.ttf 104 é 34.2185 44.3759 32 % 0.2438 52.3164 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 33 £ 0.1721 34.8724 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 34 . 31.3761 11.6241 11.6241 -Arial_Black.ttf 104 é 34.2185 44.3759 35 2 0.1246 33.5935 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 36 5 1.0142 33.8435 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 37 m 11.4215 51.5035 31.5638 -Arial_Black.ttf 104 é 34.2185 44.3759 38 V 1.3600 45.1547 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 39 6 -0.1732 33.8435 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 40 w 12.9020 54.8121 30.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 41 T 0.9496 38.4362 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 42 M 1.3248 45.8086 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 43 G -0.1409 42.5629 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 44 b 1.1119 32.7806 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 45 9 -0.0839 33.8435 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 46 ; 12.7022 11.6241 42.9379 -Arial_Black.ttf 104 é 34.2185 44.3759 47 D 1.0481 38.3112 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 48 L 1.1530 31.9965 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 49 y 12.9311 35.7815 42.9379 -Arial_Black.ttf 104 é 34.2185 44.3759 50 ‘ -0.1005 11.6241 23.2483 -Arial_Black.ttf 104 é 34.2185 44.3759 51 \ 0.0000 16.3759 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 52 R 1.0312 41.2212 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 53 < 4.7827 32.6267 34.9974 -Arial_Black.ttf 104 é 34.2185 44.3759 54 4 -0.1581 38.0612 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 55 8 -0.1396 33.8435 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 56 0 -0.1641 33.8435 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 57 A 1.2761 45.5638 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 58 E 1.0016 34.4974 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 59 B 1.2877 38.3112 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 60 v 12.7666 35.8156 30.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 61 k 1.2585 35.5315 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 62 J 0.9839 33.1556 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 63 U 1.2022 39.2150 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 64 j 1.0693 18.3427 54.5621 -Arial_Black.ttf 104 é 34.2185 44.3759 65 ( 0.0663 17.4047 56.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 66 7 1.4485 33.5935 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 67 § 0.0542 34.2185 55.7500 -Arial_Black.ttf 104 é 34.2185 44.3759 68 $ -2.8504 35.2815 52.4362 -Arial_Black.ttf 104 é 34.2185 44.3759 69 € 0.1701 38.1914 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 70 / -0.0231 16.3759 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 71 C 0.3490 39.9082 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 72 * 0.2719 22.1565 20.6224 -Arial_Black.ttf 104 é 34.2185 44.3759 73 ” -0.0864 25.6241 23.2483 -Arial_Black.ttf 104 é 34.2185 44.3759 74 ? -0.0676 31.8138 43.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 75 { 0.0405 21.4974 56.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 76 } -0.0501 21.4974 56.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 77 , 31.1772 11.6241 24.1862 -Arial_Black.ttf 104 é 34.2185 44.3759 78 I 0.9934 12.8121 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 79 ° 0.0801 14.1250 14.1250 -Arial_Black.ttf 104 é 34.2185 44.3759 80 K 1.1208 43.9668 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 81 H 1.0976 39.2150 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 82 q 11.9588 32.7806 42.9379 -Arial_Black.ttf 104 é 34.2185 44.3759 83 & 0.0027 46.8820 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 84 ’ -0.0097 11.6241 23.2483 -Arial_Black.ttf 104 é 34.2185 44.3759 85 [ 1.1745 18.3427 53.6241 -Arial_Black.ttf 104 é 34.2185 44.3759 86 - 23.1766 16.9047 9.2483 -Arial_Black.ttf 104 é 34.2185 44.3759 87 Y 1.1704 45.5638 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 88 Q 0.1353 44.1547 48.3435 -Arial_Black.ttf 104 é 34.2185 44.3759 89 " 0.9461 26.8121 15.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 90 ! 1.1989 11.6241 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 91 x 12.9789 38.6914 30.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 92 ) -0.2016 17.4047 56.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 93 = 10.6041 30.9047 23.2483 -Arial_Black.ttf 104 é 34.2185 44.3759 94 + 6.5014 31.4388 31.4388 -Arial_Black.ttf 104 é 34.2185 44.3759 95 X 0.9163 45.1547 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 96 » 14.6584 31.1547 26.4082 -Arial_Black.ttf 104 é 34.2185 44.3759 97 ' 1.1295 11.6241 15.1879 -Arial_Black.ttf 104 é 34.2185 44.3759 98 ¢ 1.6248 34.2185 53.2203 -Arial_Black.ttf 104 é 34.2185 44.3759 99 Z 1.2927 37.3059 42.0000 -Arial_Black.ttf 104 é 34.2185 44.3759 100 > 4.7940 32.6267 34.9974 -Arial_Black.ttf 104 é 34.2185 44.3759 101 ® -0.1641 43.9720 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 102 © 0.1010 43.9720 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 103 ] 0.7625 18.3427 53.6241 -Arial_Black.ttf 104 é 34.2185 44.3759 104 é 0.2794 34.2185 44.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 105 z 12.8106 28.4327 30.3759 -Arial_Black.ttf 104 é 34.2185 44.3759 106 _ 47.5921 29.1879 2.7797 -Arial_Black.ttf 104 é 34.2185 44.3759 107 ¥ 0.8935 40.4082 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 1 t -11.7053 22.4353 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 2 h -11.4857 31.8427 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 3 a -1.1113 35.4065 32.7517 -Arial_Black.ttf 105 z 28.4327 30.3759 4 n -1.4377 31.8427 31.5638 -Arial_Black.ttf 105 z 28.4327 30.3759 5 P -11.4517 34.7474 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 6 o -1.0868 34.2185 32.7517 -Arial_Black.ttf 105 z 28.4327 30.3759 7 e -1.1791 34.2185 32.7517 -Arial_Black.ttf 105 z 28.4327 30.3759 8 : 0.1243 11.6241 30.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 9 r -1.1529 23.9073 31.5638 -Arial_Black.ttf 105 z 28.4327 30.3759 10 l -11.3576 11.6241 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 11 i -11.9352 11.6241 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 12 1 -12.4964 23.9073 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 13 | -11.4922 7.2815 53.3741 -Arial_Black.ttf 105 z 28.4327 30.3759 14 N -11.5221 39.2150 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 15 f -12.9807 23.6233 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 16 g -1.1870 34.2185 44.1259 -Arial_Black.ttf 105 z 28.4327 30.3759 17 d -11.7715 32.7806 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 18 W -11.7650 59.5638 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 19 s -1.2866 31.5638 32.7517 -Arial_Black.ttf 105 z 28.4327 30.3759 20 c -1.1331 34.2185 32.7517 -Arial_Black.ttf 105 z 28.4327 30.3759 21 u -0.2726 31.5927 31.5638 -Arial_Black.ttf 105 z 28.4327 30.3759 22 3 -12.8037 33.8435 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 23 ~ 2.5095 32.7517 14.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 24 # -12.8166 35.6565 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 25 O -12.7376 42.7168 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 26 ` -12.6480 14.6591 8.4694 -Arial_Black.ttf 105 z 28.4327 30.3759 27 @ -12.9400 43.1879 49.4974 -Arial_Black.ttf 105 z 28.4327 30.3759 28 F -11.6166 31.5927 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 29 S -13.1202 37.5323 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 30 p -1.1036 32.7806 42.9379 -Arial_Black.ttf 105 z 28.4327 30.3759 31 “ -12.9939 25.6241 23.2483 -Arial_Black.ttf 105 z 28.4327 30.3759 32 % -12.9432 52.3164 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 33 £ -12.6497 34.8724 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 34 . 18.4690 11.6241 11.6241 -Arial_Black.ttf 105 z 28.4327 30.3759 35 2 -12.8180 33.5935 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 36 5 -11.5430 33.8435 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 37 m -1.4006 51.5035 31.5638 -Arial_Black.ttf 105 z 28.4327 30.3759 38 V -11.6217 45.1547 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 39 6 -12.7263 33.8435 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 40 w 0.0695 54.8121 30.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 41 T -11.8354 38.4362 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 42 M -11.9383 45.8086 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 43 G -12.7354 42.5629 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 44 b -11.8179 32.7806 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 45 9 -12.6092 33.8435 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 46 ; -0.3428 11.6241 42.9379 -Arial_Black.ttf 105 z 28.4327 30.3759 47 D -11.2599 38.3112 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 48 L -11.6199 31.9965 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 49 y -0.1228 35.7815 42.9379 -Arial_Black.ttf 105 z 28.4327 30.3759 50 ‘ -12.8121 11.6241 23.2483 -Arial_Black.ttf 105 z 28.4327 30.3759 51 \ -12.7417 16.3759 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 52 R -11.6390 41.2212 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 53 < -7.9431 32.6267 34.9974 -Arial_Black.ttf 105 z 28.4327 30.3759 54 4 -12.8371 38.0612 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 55 8 -12.5658 33.8435 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 56 0 -12.8950 33.8435 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 57 A -11.6539 45.5638 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 58 E -11.3715 34.4974 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 59 B -11.5849 38.3112 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 60 v -0.1683 35.8156 30.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 61 k -11.5814 35.5315 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 62 J -11.6598 33.1556 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 63 U -11.6151 39.2150 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 64 j -11.6279 18.3427 54.5621 -Arial_Black.ttf 105 z 28.4327 30.3759 65 ( -12.7139 17.4047 56.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 66 7 -11.7588 33.5935 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 67 § -13.0289 34.2185 55.7500 -Arial_Black.ttf 105 z 28.4327 30.3759 68 $ -15.8398 35.2815 52.4362 -Arial_Black.ttf 105 z 28.4327 30.3759 69 € -12.6892 38.1914 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 70 / -12.4881 16.3759 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 71 C -12.7179 39.9082 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 72 * -12.6897 22.1565 20.6224 -Arial_Black.ttf 105 z 28.4327 30.3759 73 ” -12.7326 25.6241 23.2483 -Arial_Black.ttf 105 z 28.4327 30.3759 74 ? -12.7676 31.8138 43.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 75 { -12.7239 21.4974 56.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 76 } -12.7351 21.4974 56.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 77 , 18.8798 11.6241 24.1862 -Arial_Black.ttf 105 z 28.4327 30.3759 78 I -11.5805 12.8121 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 79 ° -12.9734 14.1250 14.1250 -Arial_Black.ttf 105 z 28.4327 30.3759 80 K -11.5801 43.9668 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 81 H -11.6509 39.2150 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 82 q -1.1022 32.7806 42.9379 -Arial_Black.ttf 105 z 28.4327 30.3759 83 & -13.1902 46.8820 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 84 ’ -12.5651 11.6241 23.2483 -Arial_Black.ttf 105 z 28.4327 30.3759 85 [ -11.6667 18.3427 53.6241 -Arial_Black.ttf 105 z 28.4327 30.3759 86 - 10.1934 16.9047 9.2483 -Arial_Black.ttf 105 z 28.4327 30.3759 87 Y -11.7483 45.5638 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 88 Q -12.9844 44.1547 48.3435 -Arial_Black.ttf 105 z 28.4327 30.3759 89 " -11.5138 26.8121 15.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 90 ! -11.7938 11.6241 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 91 x 0.2930 38.6914 30.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 92 ) -12.5990 17.4047 56.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 93 = -2.2199 30.9047 23.2483 -Arial_Black.ttf 105 z 28.4327 30.3759 94 + -6.3505 31.4388 31.4388 -Arial_Black.ttf 105 z 28.4327 30.3759 95 X -11.5319 45.1547 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 96 » 2.0614 31.1547 26.4082 -Arial_Black.ttf 105 z 28.4327 30.3759 97 ' -11.6314 11.6241 15.1879 -Arial_Black.ttf 105 z 28.4327 30.3759 98 ¢ -10.8977 34.2185 53.2203 -Arial_Black.ttf 105 z 28.4327 30.3759 99 Z -11.4572 37.3059 42.0000 -Arial_Black.ttf 105 z 28.4327 30.3759 100 > -8.2178 32.6267 34.9974 -Arial_Black.ttf 105 z 28.4327 30.3759 101 ® -12.9246 43.9720 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 102 © -12.8957 43.9720 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 103 ] -11.5051 18.3427 53.6241 -Arial_Black.ttf 105 z 28.4327 30.3759 104 é -13.1161 34.2185 44.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 105 z -0.0455 28.4327 30.3759 -Arial_Black.ttf 105 z 28.4327 30.3759 106 _ 34.4903 29.1879 2.7797 -Arial_Black.ttf 105 z 28.4327 30.3759 107 ¥ -11.7136 40.4082 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 1 t -45.8026 22.4353 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 2 h -46.0555 31.8427 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 3 a -35.7153 35.4065 32.7517 -Arial_Black.ttf 106 _ 29.1879 2.7797 4 n -35.9517 31.8427 31.5638 -Arial_Black.ttf 106 _ 29.1879 2.7797 5 P -46.0339 34.7474 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 6 o -35.6449 34.2185 32.7517 -Arial_Black.ttf 106 _ 29.1879 2.7797 7 e -35.7037 34.2185 32.7517 -Arial_Black.ttf 106 _ 29.1815 2.7873 8 : -34.2578 11.6371 30.3629 -Arial_Black.ttf 106 _ 29.1879 2.7797 9 r -35.5926 23.9073 31.5638 -Arial_Black.ttf 106 _ 29.1879 2.7797 10 l -46.1302 11.6241 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 11 i -46.2155 11.6241 42.0000 -Arial_Black.ttf 106 _ 29.1815 2.7873 12 1 -47.2096 23.9105 43.1815 -Arial_Black.ttf 106 _ 29.1815 2.7873 13 | -46.2188 7.2718 53.3612 -Arial_Black.ttf 106 _ 29.1879 2.7797 14 N -45.9355 39.2150 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 15 f -47.2254 23.6233 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 16 g -35.7876 34.2185 44.1259 -Arial_Black.ttf 106 _ 29.1879 2.7797 17 d -45.8567 32.7806 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 18 W -46.1182 59.5638 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 19 s -35.6565 31.5638 32.7517 -Arial_Black.ttf 106 _ 29.1879 2.7797 20 c -35.9640 34.2185 32.7517 -Arial_Black.ttf 106 _ 29.1879 2.7797 21 u -34.6187 31.5927 31.5638 -Arial_Black.ttf 106 _ 29.1815 2.7873 22 3 -47.5121 33.8834 44.3629 -Arial_Black.ttf 106 _ 29.1815 2.7873 23 ~ -32.4215 32.7258 14.0000 -Arial_Black.ttf 106 _ 29.1815 2.7873 24 # -47.1925 35.6338 44.3629 -Arial_Black.ttf 106 _ 29.1879 2.7797 25 O -47.2621 42.7168 44.3759 -Arial_Black.ttf 106 _ 29.1815 2.7873 26 ` -47.3859 14.6708 8.4532 -Arial_Black.ttf 106 _ 29.1815 2.7873 27 @ -47.4635 43.1815 49.5147 -Arial_Black.ttf 106 _ 29.1879 2.7797 28 F -46.2712 31.5927 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 29 S -47.1263 37.5323 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 30 p -35.3581 32.7806 42.9379 -Arial_Black.ttf 106 _ 29.1879 2.7797 31 “ -47.3292 25.6241 23.2483 -Arial_Black.ttf 106 _ 29.1879 2.7797 32 % -47.1667 52.3164 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 33 £ -47.2704 34.8724 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 34 . -15.8378 11.6241 11.6241 -Arial_Black.ttf 106 _ 29.1879 2.7797 35 2 -47.3153 33.5935 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 36 5 -46.3512 33.8435 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 37 m -35.5777 51.5035 31.5638 -Arial_Black.ttf 106 _ 29.1879 2.7797 38 V -45.8758 45.1547 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 39 6 -47.2046 33.8435 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 40 w -34.6876 54.8121 30.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 41 T -45.8747 38.4362 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 42 M -46.1366 45.8086 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 43 G -47.2064 42.5629 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 44 b -46.4858 32.7806 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 45 9 -47.2514 33.8435 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 46 ; -34.4213 11.6241 42.9379 -Arial_Black.ttf 106 _ 29.1879 2.7797 47 D -46.2053 38.3112 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 48 L -46.1349 31.9965 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 49 y -34.3419 35.7815 42.9379 -Arial_Black.ttf 106 _ 29.1879 2.7797 50 ‘ -47.3513 11.6241 23.2483 -Arial_Black.ttf 106 _ 29.1879 2.7797 51 \ -47.1851 16.3759 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 52 R -45.9063 41.2212 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 53 < -42.1570 32.6267 34.9974 -Arial_Black.ttf 106 _ 29.1879 2.7797 54 4 -47.0680 38.0612 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 55 8 -47.1746 33.8435 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 56 0 -47.4514 33.8435 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 57 A -46.1340 45.5638 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 58 E -46.0922 34.4974 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 59 B -45.9967 38.3112 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 60 v -34.5500 35.8156 30.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 61 k -46.1336 35.5315 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 62 J -46.1673 33.1556 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 63 U -46.0472 39.2150 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 64 j -46.0139 18.3427 54.5621 -Arial_Black.ttf 106 _ 29.1879 2.7797 65 ( -47.3663 17.4047 56.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 66 7 -46.1749 33.5935 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 67 § -47.2421 34.2185 55.7500 -Arial_Black.ttf 106 _ 29.1879 2.7797 68 $ -50.0590 35.2815 52.4362 -Arial_Black.ttf 106 _ 29.1879 2.7797 69 € -47.1263 38.1914 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 70 / -47.0706 16.3759 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 71 C -47.3163 39.9082 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 72 * -47.3125 22.1565 20.6224 -Arial_Black.ttf 106 _ 29.1879 2.7797 73 ” -47.2519 25.6241 23.2483 -Arial_Black.ttf 106 _ 29.1879 2.7797 74 ? -47.1210 31.8138 43.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 75 { -47.0637 21.4974 56.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 76 } -47.2691 21.4974 56.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 77 , -15.8428 11.6241 24.1862 -Arial_Black.ttf 106 _ 29.1879 2.7797 78 I -45.7927 12.8121 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 79 ° -46.9479 14.1250 14.1250 -Arial_Black.ttf 106 _ 29.1879 2.7797 80 K -45.8526 43.9668 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 81 H -46.1069 39.2150 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 82 q -35.5718 32.7806 42.9379 -Arial_Black.ttf 106 _ 29.1879 2.7797 83 & -47.4072 46.8820 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 84 ’ -47.1040 11.6241 23.2483 -Arial_Black.ttf 106 _ 29.1879 2.7797 85 [ -46.0969 18.3427 53.6241 -Arial_Black.ttf 106 _ 29.1879 2.7797 86 - -24.2259 16.9047 9.2483 -Arial_Black.ttf 106 _ 29.1879 2.7797 87 Y -46.1756 45.5638 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 88 Q -47.0413 44.1547 48.3435 -Arial_Black.ttf 106 _ 29.1879 2.7797 89 " -46.3472 26.8121 15.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 90 ! -46.0496 11.6241 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 91 x -34.4685 38.6914 30.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 92 ) -47.3306 17.4047 56.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 93 = -36.6023 30.9047 23.2483 -Arial_Black.ttf 106 _ 29.1879 2.7797 94 + -40.7768 31.4388 31.4388 -Arial_Black.ttf 106 _ 29.1879 2.7797 95 X -45.8929 45.1547 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 96 » -32.7921 31.1547 26.4082 -Arial_Black.ttf 106 _ 29.1879 2.7797 97 ' -46.1413 11.6241 15.1879 -Arial_Black.ttf 106 _ 29.1879 2.7797 98 ¢ -45.7231 34.2185 53.2203 -Arial_Black.ttf 106 _ 29.1879 2.7797 99 Z -45.9647 37.3059 42.0000 -Arial_Black.ttf 106 _ 29.1879 2.7797 100 > -42.5399 32.6267 34.9974 -Arial_Black.ttf 106 _ 29.1879 2.7797 101 ® -47.4873 43.9720 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 102 © -47.2403 43.9720 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 103 ] -46.1539 18.3427 53.6241 -Arial_Black.ttf 106 _ 29.1879 2.7797 104 é -47.3987 34.2185 44.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 105 z -34.4783 28.4327 30.3759 -Arial_Black.ttf 106 _ 29.1879 2.7797 106 _ 0.0079 29.1879 2.7797 -Arial_Black.ttf 106 _ 29.1879 2.7797 107 ¥ -45.9629 40.4082 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 1 t 0.0274 22.4353 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 2 h -0.3399 31.8427 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 3 a 10.1730 35.4065 32.7517 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 4 n 10.5229 31.8427 31.5638 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 5 P 0.1449 34.7474 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 6 o 10.3950 34.2185 32.7517 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 7 e 10.4098 34.2185 32.7517 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 8 : 11.4834 11.6371 30.3629 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 9 r 10.6624 23.9073 31.5638 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 10 l 0.4893 11.6241 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 11 i -0.2420 11.6241 42.0000 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 12 1 -1.0869 23.9105 43.1815 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 13 | -0.0470 7.2718 53.3612 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 14 N 0.0737 39.2150 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 15 f -0.9479 23.6233 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 16 g 10.4515 34.2185 44.1259 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 17 d -0.0455 32.7806 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 18 W 0.0774 59.5638 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 19 s 10.2239 31.5638 32.7517 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 20 c 10.7254 34.2185 32.7517 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 21 u 11.5103 31.5927 31.5638 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 22 3 -1.3909 33.8834 44.3629 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 23 ~ 13.9356 32.7258 14.0000 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 24 # -1.1466 35.6338 44.3629 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 25 O -1.0841 42.7168 44.3759 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 26 ` -0.9001 14.6708 8.4532 -Arial_Black.ttf 107 ¥ 40.3941 42.0000 27 @ -1.1072 43.1815 49.5147 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 28 F -0.4569 31.5927 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 29 S -1.7078 37.5323 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 30 p 10.1798 32.7806 42.9379 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 31 “ -1.2027 25.6241 23.2483 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 32 % -1.6098 52.3164 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 33 £ -1.5193 34.8724 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 34 . 30.4754 11.6241 11.6241 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 35 2 -1.1477 33.5935 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 36 5 -0.3429 33.8435 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 37 m 10.5239 51.5035 31.5638 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 38 V -0.0045 45.1547 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 39 6 -1.3450 33.8435 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 40 w 11.5343 54.8121 30.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 41 T 0.3047 38.4362 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 42 M 0.0440 45.8086 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 43 G -1.2533 42.5629 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 44 b -0.0532 32.7806 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 45 9 -1.2626 33.8435 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 46 ; 11.5546 11.6241 42.9379 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 47 D 0.2221 38.3112 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 48 L -0.3541 31.9965 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 49 y 11.7910 35.7815 42.9379 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 50 ‘ -1.5647 11.6241 23.2483 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 51 \ -1.0391 16.3759 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 52 R -0.0094 41.2212 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 53 < 3.5541 32.6267 34.9974 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 54 4 -1.2240 38.0612 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 55 8 -1.2547 33.8435 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 56 0 -0.9889 33.8435 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 57 A 0.0255 45.5638 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 58 E 0.2178 34.4974 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 59 B 0.2183 38.3112 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 60 v 11.8535 35.8156 30.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 61 k -0.0106 35.5315 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 62 J 0.0937 33.1556 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 63 U -0.1151 39.2150 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 64 j -0.0005 18.3427 54.5621 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 65 ( -1.2775 17.4047 56.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 66 7 -0.1839 33.5935 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 67 § -1.4339 34.2185 55.7500 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 68 $ -3.9867 35.2815 52.4362 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 69 € -0.9312 38.1914 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 70 / -1.0665 16.3759 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 71 C -1.2924 39.9082 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 72 * -1.2033 22.1565 20.6224 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 73 ” -1.0145 25.6241 23.2483 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 74 ? -1.1467 31.8138 43.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 75 { -1.3191 21.4974 56.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 76 } -1.0554 21.4974 56.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 77 , 30.4983 11.6241 24.1862 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 78 I -0.5374 12.8121 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 79 ° -1.4015 14.1250 14.1250 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 80 K 0.2133 43.9668 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 81 H -0.0885 39.2150 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 82 q 10.6785 32.7806 42.9379 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 83 & -0.9358 46.8820 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 84 ’ -1.2904 11.6241 23.2483 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 85 [ -0.1479 18.3427 53.6241 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 86 - 22.2758 16.9047 9.2483 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 87 Y -0.2484 45.5638 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 88 Q -1.2788 44.1547 48.3435 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 89 " 0.0287 26.8121 15.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 90 ! -0.1434 11.6241 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 91 x 11.5640 38.6914 30.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 92 ) -0.7748 17.4047 56.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 93 = 9.4445 30.9047 23.2483 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 94 + 5.4794 31.4388 31.4388 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 95 X 0.0977 45.1547 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 96 » 13.5910 31.1547 26.4082 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 97 ' -0.3605 11.6241 15.1879 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 98 ¢ 0.7488 34.2185 53.2203 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 99 Z -0.1900 37.3059 42.0000 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 100 > 3.3623 32.6267 34.9974 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 101 ® -1.3691 43.9720 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 102 © -1.0873 43.9720 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 103 ] 0.3347 18.3427 53.6241 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 104 é -1.0104 34.2185 44.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 105 z 11.4104 28.4327 30.3759 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 106 _ 46.1024 29.1879 2.7797 -Arial_Black.ttf 107 ¥ 40.4082 42.0000 107 ¥ 0.1214 40.4082 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 1 t 0.0214 18.1169 41.3810 -Arial_Bold.ttf 1 t 18.1169 41.3810 2 h -0.5339 27.7857 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 3 a 8.8793 28.8333 32.1169 -Arial_Bold.ttf 1 t 18.1169 41.3810 4 n 9.5443 27.7857 31.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 5 P -0.7631 32.0844 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 6 o 9.1732 31.0065 32.1169 -Arial_Bold.ttf 1 t 18.1169 41.3810 7 e 9.2557 29.4113 32.1169 -Arial_Bold.ttf 1 t 18.1169 41.3810 8 : 10.2231 8.1385 30.6732 -Arial_Bold.ttf 1 t 18.1169 41.3810 9 r 9.0041 19.8615 31.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 10 l -0.9269 8.1385 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 11 i -1.0016 8.1385 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 12 1 -0.7455 18.2359 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 13 | -0.6748 5.8615 54.5563 -Arial_Bold.ttf 1 t 18.1169 41.3810 14 N -0.8690 33.3463 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 15 f -1.1476 20.6948 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 16 g 9.4012 29.5628 43.6580 -Arial_Bold.ttf 1 t 18.1169 41.3810 17 d -1.2635 29.5628 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 18 W -0.7417 54.7706 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 19 s 9.2141 28.3333 32.1169 -Arial_Bold.ttf 1 t 18.1169 41.3810 20 c 9.3603 27.5000 32.1169 -Arial_Bold.ttf 1 t 18.1169 41.3810 21 u 10.3481 27.7857 30.8874 -Arial_Bold.ttf 1 t 18.1169 41.3810 22 3 -0.5855 27.2857 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 23 ~ 15.3998 30.4589 10.8117 -Arial_Bold.ttf 1 t 18.1169 41.3810 24 # -0.9814 30.3874 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 25 O -1.7318 40.3420 43.4589 -Arial_Bold.ttf 1 t 18.1169 41.3810 26 ` -0.4155 12.7706 8.3203 -Arial_Bold.ttf 1 t 18.1169 41.3810 27 @ -1.1107 55.2706 56.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 28 F -1.2193 29.0152 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 29 S -1.9320 33.8615 43.4589 -Arial_Bold.ttf 1 t 18.1169 41.3810 30 p 9.4571 29.5628 43.4437 -Arial_Bold.ttf 1 t 18.1169 41.3810 31 “ -0.8153 22.4719 17.6883 -Arial_Bold.ttf 1 t 18.1169 41.3810 32 % -1.4440 44.9329 43.6580 -Arial_Bold.ttf 1 t 18.1169 41.3810 33 £ -0.8613 31.1883 42.4286 -Arial_Bold.ttf 1 t 18.1169 41.3810 34 . 33.0184 8.1385 8.1385 -Arial_Bold.ttf 1 t 18.1169 41.3810 35 2 -1.0205 27.2857 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 36 5 -0.4143 28.0000 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 37 m 9.1567 44.6104 31.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 38 V -0.7508 38.4935 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 39 6 -0.7379 27.2857 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 40 w 10.4890 45.5065 30.6732 -Arial_Bold.ttf 1 t 18.1169 41.3810 41 T -1.0100 33.2511 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 42 M -0.9417 39.5584 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 43 G -1.5628 39.1126 43.4589 -Arial_Bold.ttf 1 t 18.1169 41.3810 44 b -0.8347 29.5628 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 45 9 -0.7819 27.2857 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 46 ; 10.3673 8.8680 40.4372 -Arial_Bold.ttf 1 t 18.1169 41.3810 47 D -0.7976 35.0909 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 48 L -0.8333 29.9113 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 49 y 10.4064 31.6883 42.4286 -Arial_Bold.ttf 1 t 18.1169 41.3810 50 ‘ -1.0054 8.8680 17.6883 -Arial_Bold.ttf 1 t 18.1169 41.3810 51 \ -0.9157 17.6883 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 52 R -0.6188 37.0498 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 53 < 4.7759 28.0000 31.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 54 4 -0.3591 29.9589 41.7857 -Arial_Bold.ttf 1 t 18.1169 41.3810 55 8 -0.7643 27.2857 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 56 0 -0.8190 27.2857 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 57 A -0.3922 40.5887 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 58 E -0.9607 32.0844 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 59 B -0.9069 35.0909 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 60 v 10.4161 31.6883 30.6732 -Arial_Bold.ttf 1 t 18.1169 41.3810 61 k -1.1850 28.5152 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 62 J -0.8190 26.9524 42.7294 -Arial_Bold.ttf 1 t 18.1169 41.3810 63 U -0.8574 33.3463 42.7294 -Arial_Bold.ttf 1 t 18.1169 41.3810 64 j -0.6845 15.2294 53.7554 -Arial_Bold.ttf 1 t 18.1169 41.3810 65 ( -1.0167 14.0000 53.5411 -Arial_Bold.ttf 1 t 18.1169 41.3810 66 7 -0.6931 27.2857 41.7857 -Arial_Bold.ttf 1 t 18.1169 41.3810 67 § -1.2264 28.5152 54.7706 -Arial_Bold.ttf 1 t 18.1169 41.3810 68 $ -3.8541 27.7857 50.8680 -Arial_Bold.ttf 1 t 18.1169 41.3810 69 € -1.5711 31.6883 42.9437 -Arial_Bold.ttf 1 t 18.1169 41.3810 70 / -0.7762 17.6883 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 71 C -1.6104 36.6537 42.7294 -Arial_Bold.ttf 1 t 18.1169 41.3810 72 * -0.7417 19.7424 19.1320 -Arial_Bold.ttf 1 t 18.1169 41.3810 73 ” -1.2774 22.4719 17.6883 -Arial_Bold.ttf 1 t 18.1169 41.3810 74 ? -1.1885 30.4589 42.2143 -Arial_Bold.ttf 1 t 18.1169 41.3810 75 { -1.2645 19.6472 53.9697 -Arial_Bold.ttf 1 t 18.1169 41.3810 76 } -1.3231 19.6472 53.9697 -Arial_Bold.ttf 1 t 18.1169 41.3810 77 , 33.1972 8.8680 17.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 78 I -0.9355 8.1385 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 79 ° -1.0611 18.0844 18.0844 -Arial_Bold.ttf 1 t 18.1169 41.3810 80 K -0.6165 37.7641 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 81 H -1.0621 33.3463 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 82 q 8.9793 29.5628 43.4437 -Arial_Bold.ttf 1 t 18.1169 41.3810 83 & -1.1190 38.8117 42.4286 -Arial_Bold.ttf 1 t 18.1169 41.3810 84 ’ -0.8100 8.8680 17.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 85 [ -0.6143 15.2294 53.5411 -Arial_Bold.ttf 1 t 18.1169 41.3810 86 - 23.0798 15.7294 6.9091 -Arial_Bold.ttf 1 t 18.1169 41.3810 87 Y -0.5702 41.0563 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 88 Q -1.6068 41.7857 46.6472 -Arial_Bold.ttf 1 t 18.1169 41.3810 89 " -1.0024 21.5909 15.2294 -Arial_Bold.ttf 1 t 18.1169 41.3810 90 ! -0.7774 8.1385 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 91 x 10.3395 32.4177 30.6732 -Arial_Bold.ttf 1 t 18.1169 41.3810 92 ) -0.8972 14.0000 53.5411 -Arial_Bold.ttf 1 t 18.1169 41.3810 93 = 10.6300 29.2294 19.2835 -Arial_Bold.ttf 1 t 18.1169 41.3810 94 + 6.1841 28.8961 28.8961 -Arial_Bold.ttf 1 t 18.1169 41.3810 95 X -0.8750 38.9935 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 96 » 12.5384 26.9524 26.5563 -Arial_Bold.ttf 1 t 18.1169 41.3810 97 ' -0.9107 8.1385 15.2294 -Arial_Bold.ttf 1 t 18.1169 41.3810 98 ¢ -1.0250 28.7294 54.4372 -Arial_Bold.ttf 1 t 18.1169 41.3810 99 Z -0.9242 34.4805 42.0000 -Arial_Bold.ttf 1 t 18.1169 41.3810 100 > 4.7358 28.0000 31.9026 -Arial_Bold.ttf 1 t 18.1169 41.3810 101 ® -0.9619 43.2294 42.4286 -Arial_Bold.ttf 1 t 18.1169 41.3810 102 © -0.7929 43.9589 42.4286 -Arial_Bold.ttf 1 t 18.1169 41.3810 103 ] -0.8119 15.2294 53.5411 -Arial_Bold.ttf 1 t 18.1169 41.3810 104 é -1.5963 29.4113 42.8961 -Arial_Bold.ttf 1 t 18.1169 41.3810 105 z 10.6649 26.7706 30.6732 -Arial_Bold.ttf 1 t 18.1169 41.3810 106 _ 46.4904 33.4654 5.8615 -Arial_Bold.ttf 1 t 18.1169 41.3810 107 ¥ -0.8190 30.2056 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 1 t 0.6260 18.1169 41.3810 -Arial_Bold.ttf 2 h 27.7857 42.0000 2 h -0.0417 27.7857 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 3 a 10.4014 28.8333 32.1169 -Arial_Bold.ttf 2 h 27.7857 42.0000 4 n 10.1793 27.7857 31.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 5 P -0.0826 32.0844 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 6 o 10.2734 31.0065 32.1169 -Arial_Bold.ttf 2 h 27.7857 42.0000 7 e 10.2665 29.4113 32.1169 -Arial_Bold.ttf 2 h 27.7857 42.0000 8 : 11.5913 8.1385 30.6732 -Arial_Bold.ttf 2 h 27.7857 42.0000 9 r 10.1817 19.8615 31.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 10 l -0.0871 8.1385 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 11 i 0.1690 8.1385 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 12 1 -0.0538 18.2359 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 13 | 0.0000 5.8615 54.5563 -Arial_Bold.ttf 2 h 27.7857 42.0000 14 N -0.0864 33.3463 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 15 f -0.3976 20.6948 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 16 g 10.2248 29.5628 43.6580 -Arial_Bold.ttf 2 h 27.7857 42.0000 17 d -0.1040 29.5628 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 18 W 0.3167 54.7706 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 19 s 10.2286 28.3333 32.1169 -Arial_Bold.ttf 2 h 27.7857 42.0000 20 c 10.1929 27.5000 32.1169 -Arial_Bold.ttf 2 h 27.7857 42.0000 21 u 11.3667 27.7857 30.8874 -Arial_Bold.ttf 2 h 27.7857 42.0000 22 3 0.0417 27.2857 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 23 ~ 15.9453 30.4589 10.8117 -Arial_Bold.ttf 2 h 27.7857 42.0000 24 # -0.0871 30.3874 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 25 O -0.6528 40.3420 43.4589 -Arial_Bold.ttf 2 h 27.7857 42.0000 26 ` -0.0955 12.7706 8.3203 -Arial_Bold.ttf 2 h 27.7857 42.0000 27 @ -0.4683 55.2706 56.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 28 F 0.0650 29.0152 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 29 S -0.9620 33.8615 43.4589 -Arial_Bold.ttf 2 h 27.7857 42.0000 30 p 10.0748 29.5628 43.4437 -Arial_Bold.ttf 2 h 27.7857 42.0000 31 “ 0.0752 22.4719 17.6883 -Arial_Bold.ttf 2 h 27.7857 42.0000 32 % -0.2278 44.9329 43.6580 -Arial_Bold.ttf 2 h 27.7857 42.0000 33 £ 0.1107 31.1883 42.4286 -Arial_Bold.ttf 2 h 27.7857 42.0000 34 . 33.8440 8.1385 8.1385 -Arial_Bold.ttf 2 h 27.7857 42.0000 35 2 0.2788 27.2857 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 36 5 -0.0540 28.0000 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 37 m 9.9648 44.6104 31.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 38 V -0.0181 38.4935 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 39 6 0.1690 27.2857 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 40 w 11.1221 45.5065 30.6732 -Arial_Bold.ttf 2 h 27.7857 42.0000 41 T 0.0083 33.2511 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 42 M 0.0357 39.5584 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 43 G -0.7606 39.1126 43.4589 -Arial_Bold.ttf 2 h 27.7857 42.0000 44 b 0.0262 29.5628 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 45 9 0.0262 27.2857 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 46 ; 11.3445 8.8680 40.4372 -Arial_Bold.ttf 2 h 27.7857 42.0000 47 D 0.0940 35.0909 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 48 L 0.1417 29.9113 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 49 y 11.2328 31.6883 42.4286 -Arial_Bold.ttf 2 h 27.7857 42.0000 50 ‘ 0.1597 8.8680 17.6883 -Arial_Bold.ttf 2 h 27.7857 42.0000 51 \ -0.0240 17.6883 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 52 R -0.2100 37.0498 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 53 < 5.3140 28.0000 31.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 54 4 0.0655 29.9589 41.7857 -Arial_Bold.ttf 2 h 27.7857 42.0000 55 8 -0.2010 27.2857 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 56 0 -0.2371 27.2857 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 57 A 0.2562 40.5887 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 58 E -0.0492 32.0844 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 59 B 0.1619 35.0909 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 60 v 11.4899 31.6883 30.6732 -Arial_Bold.ttf 2 h 27.7857 42.0000 61 k 0.0643 28.5152 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 62 J -0.0917 26.9524 42.7294 -Arial_Bold.ttf 2 h 27.7857 42.0000 63 U -0.0976 33.3463 42.7294 -Arial_Bold.ttf 2 h 27.7857 42.0000 64 j -0.0552 15.2294 53.7554 -Arial_Bold.ttf 2 h 27.7857 42.0000 65 ( 0.0850 14.0000 53.5411 -Arial_Bold.ttf 2 h 27.7857 42.0000 66 7 0.0121 27.2857 41.7857 -Arial_Bold.ttf 2 h 27.7857 42.0000 67 § -0.4131 28.5152 54.7706 -Arial_Bold.ttf 2 h 27.7857 42.0000 68 $ -3.1543 27.7857 50.8680 -Arial_Bold.ttf 2 h 27.7857 42.0000 69 € -0.5469 31.6883 42.9437 -Arial_Bold.ttf 2 h 27.7857 42.0000 70 / -0.1909 17.6883 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 71 C -0.1971 36.6537 42.7294 -Arial_Bold.ttf 2 h 27.7857 42.0000 72 * -0.0976 19.7424 19.1320 -Arial_Bold.ttf 2 h 27.7857 42.0000 73 ” -0.2814 22.4719 17.6883 -Arial_Bold.ttf 2 h 27.7857 42.0000 74 ? -0.4917 30.4589 42.2143 -Arial_Bold.ttf 2 h 27.7857 42.0000 75 { -0.4810 19.6472 53.9697 -Arial_Bold.ttf 2 h 27.7857 42.0000 76 } 0.1405 19.6472 53.9697 -Arial_Bold.ttf 2 h 27.7857 42.0000 77 , 33.6608 8.8680 17.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 78 I -0.1190 8.1385 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 79 ° -0.0863 18.0844 18.0844 -Arial_Bold.ttf 2 h 27.7857 42.0000 80 K 0.0083 37.7641 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 81 H -0.0752 33.3463 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 82 q 10.3359 29.5628 43.4437 -Arial_Bold.ttf 2 h 27.7857 42.0000 83 & 0.0502 38.8117 42.4286 -Arial_Bold.ttf 2 h 27.7857 42.0000 84 ’ -0.1097 8.8680 17.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 85 [ 0.3919 15.2294 53.5411 -Arial_Bold.ttf 2 h 27.7857 42.0000 86 - 24.0524 15.7294 6.9091 -Arial_Bold.ttf 2 h 27.7857 42.0000 87 Y 0.0611 41.0563 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 88 Q -0.7287 41.7857 46.6472 -Arial_Bold.ttf 2 h 27.7857 42.0000 89 " -0.0486 21.5909 15.2294 -Arial_Bold.ttf 2 h 27.7857 42.0000 90 ! -0.2288 8.1385 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 91 x 11.3880 32.4177 30.6732 -Arial_Bold.ttf 2 h 27.7857 42.0000 92 ) 0.2593 14.0000 53.5411 -Arial_Bold.ttf 2 h 27.7857 42.0000 93 = 11.6030 29.2294 19.2835 -Arial_Bold.ttf 2 h 27.7857 42.0000 94 + 7.3639 28.8961 28.8961 -Arial_Bold.ttf 2 h 27.7857 42.0000 95 X 0.2683 38.9935 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 96 » 13.4289 26.9524 26.5563 -Arial_Bold.ttf 2 h 27.7857 42.0000 97 ' 0.1661 8.1385 15.2294 -Arial_Bold.ttf 2 h 27.7857 42.0000 98 ¢ 0.0031 28.7294 54.4372 -Arial_Bold.ttf 2 h 27.7857 42.0000 99 Z 0.4685 34.4805 42.0000 -Arial_Bold.ttf 2 h 27.7857 42.0000 100 > 5.3023 28.0000 31.9026 -Arial_Bold.ttf 2 h 27.7857 42.0000 101 ® -0.1286 43.2294 42.4286 -Arial_Bold.ttf 2 h 27.7857 42.0000 102 © 0.0626 43.9589 42.4286 -Arial_Bold.ttf 2 h 27.7857 42.0000 103 ] -0.2931 15.2294 53.5411 -Arial_Bold.ttf 2 h 27.7857 42.0000 104 é -0.5628 29.4113 42.8961 -Arial_Bold.ttf 2 h 27.7857 42.0000 105 z 11.4580 26.7706 30.6732 -Arial_Bold.ttf 2 h 27.7857 42.0000 106 _ 47.5773 33.4654 5.8615 -Arial_Bold.ttf 2 h 27.7857 42.0000 107 ¥ -0.2333 30.2056 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 1 t -9.3141 18.1169 41.3810 -Arial_Bold.ttf 3 a 28.8333 32.1169 2 h -10.4074 27.7857 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 3 a -0.0917 28.8333 32.1169 -Arial_Bold.ttf 3 a 28.8333 32.1169 4 n -0.2802 27.7857 31.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 5 P -10.1605 32.0844 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 6 o 0.0490 31.0065 32.1169 -Arial_Bold.ttf 3 a 28.8333 32.1169 7 e 0.0955 29.4113 32.1169 -Arial_Bold.ttf 3 a 28.8333 32.1169 8 : 1.0558 8.1385 30.6732 -Arial_Bold.ttf 3 a 28.8333 32.1169 9 r -0.1333 19.8615 31.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 10 l -10.1800 8.1385 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 11 i -10.1019 8.1385 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 12 1 -10.5333 18.2359 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 13 | -10.0117 5.8615 54.5563 -Arial_Bold.ttf 3 a 28.8333 32.1169 14 N -10.3508 33.3463 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 15 f -10.1077 20.6948 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 16 g -0.0000 29.5628 43.6580 -Arial_Bold.ttf 3 a 28.8333 32.1169 17 d -9.9415 29.5628 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 18 W -10.0057 54.7706 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 19 s 0.1105 28.3333 32.1169 -Arial_Bold.ttf 3 a 28.8333 32.1169 20 c 0.0657 27.5000 32.1169 -Arial_Bold.ttf 3 a 28.8333 32.1169 21 u 1.3332 27.7857 30.8874 -Arial_Bold.ttf 3 a 28.8333 32.1169 22 3 -10.4879 27.2857 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 23 ~ 5.8415 30.4589 10.8117 -Arial_Bold.ttf 3 a 28.8333 32.1169 24 # -10.0246 30.3874 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 25 O -10.8254 40.3420 43.4589 -Arial_Bold.ttf 3 a 28.8333 32.1169 26 ` -9.9641 12.7706 8.3203 -Arial_Bold.ttf 3 a 28.8333 32.1169 27 @ -10.4162 55.2706 56.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 28 F -10.0758 29.0152 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 29 S -10.5981 33.8615 43.4589 -Arial_Bold.ttf 3 a 28.8333 32.1169 30 p -0.1923 29.5628 43.4437 -Arial_Bold.ttf 3 a 28.8333 32.1169 31 “ -10.1998 22.4719 17.6883 -Arial_Bold.ttf 3 a 28.8333 32.1169 32 % -10.1746 44.9329 43.6580 -Arial_Bold.ttf 3 a 28.8333 32.1169 33 £ -10.2176 31.1883 42.4286 -Arial_Bold.ttf 3 a 28.8333 32.1169 34 . 23.5777 8.1385 8.1385 -Arial_Bold.ttf 3 a 28.8333 32.1169 35 2 -10.1466 27.2857 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 36 5 -9.8674 28.0000 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 37 m -0.0871 44.6104 31.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 38 V -10.1429 38.4935 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 39 6 -9.9831 27.2857 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 40 w 1.0163 45.5065 30.6732 -Arial_Bold.ttf 3 a 28.8333 32.1169 41 T -9.9915 33.2511 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 42 M -10.1748 39.5584 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 43 G -10.6481 39.1126 43.4589 -Arial_Bold.ttf 3 a 28.8333 32.1169 44 b -9.9343 29.5628 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 45 9 -10.0498 27.2857 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 46 ; 1.4775 8.8680 40.4372 -Arial_Bold.ttf 3 a 28.8333 32.1169 47 D -9.8732 35.0909 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 48 L -10.0557 29.9113 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 49 y 1.4068 31.6883 42.4286 -Arial_Bold.ttf 3 a 28.8333 32.1169 50 ‘ -10.3605 8.8680 17.6883 -Arial_Bold.ttf 3 a 28.8333 32.1169 51 \ -9.6829 17.6883 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 52 R -10.2436 37.0498 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 53 < -4.7868 28.0000 31.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 54 4 -9.2972 29.9589 41.7857 -Arial_Bold.ttf 3 a 28.8333 32.1169 55 8 -10.0819 27.2857 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 56 0 -10.1264 27.2857 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 57 A -9.9284 40.5887 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 58 E -10.2800 32.0844 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 59 B -9.9517 35.0909 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 60 v 1.1001 31.6883 30.6732 -Arial_Bold.ttf 3 a 28.8333 32.1169 61 k -9.9474 28.5152 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 62 J -10.0057 26.9524 42.7294 -Arial_Bold.ttf 3 a 28.8333 32.1169 63 U -10.2022 33.3463 42.7294 -Arial_Bold.ttf 3 a 28.8333 32.1169 64 j -10.0609 15.2294 53.7554 -Arial_Bold.ttf 3 a 28.8333 32.1169 65 ( -10.0057 14.0000 53.5411 -Arial_Bold.ttf 3 a 28.8333 32.1169 66 7 -9.7519 27.2857 41.7857 -Arial_Bold.ttf 3 a 28.8333 32.1169 67 § -10.3871 28.5152 54.7706 -Arial_Bold.ttf 3 a 28.8333 32.1169 68 $ -13.2843 27.7857 50.8680 -Arial_Bold.ttf 3 a 28.8333 32.1169 69 € -10.7540 31.6883 42.9437 -Arial_Bold.ttf 3 a 28.8333 32.1169 70 / -10.1331 17.6883 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 71 C -10.7768 36.6537 42.7294 -Arial_Bold.ttf 3 a 28.8333 32.1169 72 * -10.0591 19.7424 19.1320 -Arial_Bold.ttf 3 a 28.8333 32.1169 73 ” -9.8374 22.4719 17.6883 -Arial_Bold.ttf 3 a 28.8333 32.1169 74 ? -10.2922 30.4589 42.2143 -Arial_Bold.ttf 3 a 28.8333 32.1169 75 { -10.3891 19.6472 53.9697 -Arial_Bold.ttf 3 a 28.8333 32.1169 76 } -10.3767 19.6472 53.9697 -Arial_Bold.ttf 3 a 28.8333 32.1169 77 , 23.6420 8.8680 17.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 78 I -10.1571 8.1385 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 79 ° -10.0926 18.0844 18.0844 -Arial_Bold.ttf 3 a 28.8333 32.1169 80 K -10.0438 37.7641 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 81 H -10.1988 33.3463 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 82 q 0.1526 29.5628 43.4437 -Arial_Bold.ttf 3 a 28.8333 32.1169 83 & -10.2403 38.8117 42.4286 -Arial_Bold.ttf 3 a 28.8333 32.1169 84 ’ -10.1034 8.8680 17.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 85 [ -10.3728 15.2294 53.5411 -Arial_Bold.ttf 3 a 28.8333 32.1169 86 - 13.0610 15.7294 6.9091 -Arial_Bold.ttf 3 a 28.8333 32.1169 87 Y -10.3269 41.0563 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 88 Q -10.7756 41.7857 46.6472 -Arial_Bold.ttf 3 a 28.8333 32.1169 89 " -10.0228 21.5909 15.2294 -Arial_Bold.ttf 3 a 28.8333 32.1169 90 ! -10.0214 8.1385 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 91 x 1.2451 32.4177 30.6732 -Arial_Bold.ttf 3 a 28.8333 32.1169 92 ) -10.0034 14.0000 53.5411 -Arial_Bold.ttf 3 a 28.8333 32.1169 93 = 0.8357 29.2294 19.2835 -Arial_Bold.ttf 3 a 28.8333 32.1169 94 + -2.8633 28.8961 28.8961 -Arial_Bold.ttf 3 a 28.8333 32.1169 95 X -10.0260 38.9935 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 96 » 3.3041 26.9524 26.5563 -Arial_Bold.ttf 3 a 28.8333 32.1169 97 ' -10.0655 8.1385 15.2294 -Arial_Bold.ttf 3 a 28.8333 32.1169 98 ¢ -9.9841 28.7294 54.4372 -Arial_Bold.ttf 3 a 28.8333 32.1169 99 Z -10.0974 34.4805 42.0000 -Arial_Bold.ttf 3 a 28.8333 32.1169 100 > -4.9218 28.0000 31.9026 -Arial_Bold.ttf 3 a 28.8333 32.1169 101 ® -10.0315 43.2294 42.4286 -Arial_Bold.ttf 3 a 28.8333 32.1169 102 © -10.2519 43.9589 42.4286 -Arial_Bold.ttf 3 a 28.8333 32.1169 103 ] -9.9641 15.2294 53.5411 -Arial_Bold.ttf 3 a 28.8333 32.1169 104 é -11.0392 29.4113 42.8961 -Arial_Bold.ttf 3 a 28.8333 32.1169 105 z 1.3128 26.7706 30.6732 -Arial_Bold.ttf 3 a 28.8333 32.1169 106 _ 37.2965 33.4654 5.8615 -Arial_Bold.ttf 3 a 28.8333 32.1169 107 ¥ -10.1853 30.2056 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 1 t -9.2045 18.1169 41.3810 -Arial_Bold.ttf 4 n 27.7857 31.9026 2 h -9.9595 27.7857 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 3 a 0.0500 28.8333 32.1169 -Arial_Bold.ttf 4 n 27.7857 31.9026 4 n -0.1623 27.7857 31.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 5 P -9.7569 32.0844 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 6 o -0.0631 31.0065 32.1169 -Arial_Bold.ttf 4 n 27.7857 31.9026 7 e -0.0917 29.4113 32.1169 -Arial_Bold.ttf 4 n 27.7857 31.9026 8 : 1.2768 8.1385 30.6732 -Arial_Bold.ttf 4 n 27.7857 31.9026 9 r -0.2236 19.8615 31.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 10 l -9.8498 8.1385 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 11 i -9.9805 8.1385 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 12 1 -10.3040 18.2359 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 13 | -10.3574 5.8615 54.5563 -Arial_Bold.ttf 4 n 27.7857 31.9026 14 N -9.9557 33.3463 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 15 f -10.1603 20.6948 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 16 g -0.1002 29.5628 43.6580 -Arial_Bold.ttf 4 n 27.7857 31.9026 17 d -9.9095 29.5628 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 18 W -10.1605 54.7706 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 19 s 0.0798 28.3333 32.1169 -Arial_Bold.ttf 4 n 27.7857 31.9026 20 c 0.1097 27.5000 32.1169 -Arial_Bold.ttf 4 n 27.7857 31.9026 21 u 1.2346 27.7857 30.8874 -Arial_Bold.ttf 4 n 27.7857 31.9026 22 3 -10.1617 27.2857 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 23 ~ 6.1319 30.4589 10.8117 -Arial_Bold.ttf 4 n 27.7857 31.9026 24 # -10.2405 30.3874 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 25 O -11.0390 40.3420 43.4589 -Arial_Bold.ttf 4 n 27.7857 31.9026 26 ` -10.1117 12.7706 8.3203 -Arial_Bold.ttf 4 n 27.7857 31.9026 27 @ -10.4676 55.2706 56.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 28 F -10.2702 29.0152 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 29 S -10.9471 33.8615 43.4589 -Arial_Bold.ttf 4 n 27.7857 31.9026 30 p -0.1274 29.5628 43.4437 -Arial_Bold.ttf 4 n 27.7857 31.9026 31 “ -10.0929 22.4719 17.6883 -Arial_Bold.ttf 4 n 27.7857 31.9026 32 % -10.1246 44.9329 43.6580 -Arial_Bold.ttf 4 n 27.7857 31.9026 33 £ -10.2045 31.1883 42.4286 -Arial_Bold.ttf 4 n 27.7857 31.9026 34 . 23.3188 8.1385 8.1385 -Arial_Bold.ttf 4 n 27.7857 31.9026 35 2 -10.0531 27.2857 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 36 5 -10.0812 28.0000 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 37 m 0.0744 44.6104 31.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 38 V -10.0057 38.4935 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 39 6 -10.1117 27.2857 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 40 w 1.3354 45.5065 30.6732 -Arial_Bold.ttf 4 n 27.7857 31.9026 41 T -10.3724 33.2511 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 42 M -10.0760 39.5584 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 43 G -10.8066 39.1126 43.4589 -Arial_Bold.ttf 4 n 27.7857 31.9026 44 b -9.8329 29.5628 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 45 9 -10.1393 27.2857 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 46 ; 1.3509 8.8680 40.4372 -Arial_Bold.ttf 4 n 27.7857 31.9026 47 D -10.3536 35.0909 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 48 L -9.9186 29.9113 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 49 y 1.0780 31.6883 42.4286 -Arial_Bold.ttf 4 n 27.7857 31.9026 50 ‘ -9.7680 8.8680 17.6883 -Arial_Bold.ttf 4 n 27.7857 31.9026 51 \ -10.1248 17.6883 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 52 R -10.3581 37.0498 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 53 < -4.4189 28.0000 31.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 54 4 -9.8105 29.9589 41.7857 -Arial_Bold.ttf 4 n 27.7857 31.9026 55 8 -10.0648 27.2857 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 56 0 -10.2143 27.2857 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 57 A -10.1176 40.5887 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 58 E -10.2398 32.0844 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 59 B -9.9291 35.0909 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 60 v 1.0885 31.6883 30.6732 -Arial_Bold.ttf 4 n 27.7857 31.9026 61 k -10.1155 28.5152 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 62 J -10.1071 26.9524 42.7294 -Arial_Bold.ttf 4 n 27.7857 31.9026 63 U -9.9065 33.3463 42.7294 -Arial_Bold.ttf 4 n 27.7857 31.9026 64 j -10.3976 15.2294 53.7554 -Arial_Bold.ttf 4 n 27.7857 31.9026 65 ( -10.3893 14.0000 53.5411 -Arial_Bold.ttf 4 n 27.7857 31.9026 66 7 -9.7624 27.2857 41.7857 -Arial_Bold.ttf 4 n 27.7857 31.9026 67 § -10.0615 28.5152 54.7706 -Arial_Bold.ttf 4 n 27.7857 31.9026 68 $ -13.1389 27.7857 50.8680 -Arial_Bold.ttf 4 n 27.7857 31.9026 69 € -11.2777 31.6883 42.9437 -Arial_Bold.ttf 4 n 27.7857 31.9026 70 / -9.8353 17.6883 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 71 C -10.8495 36.6537 42.7294 -Arial_Bold.ttf 4 n 27.7857 31.9026 72 * -9.8867 19.7424 19.1320 -Arial_Bold.ttf 4 n 27.7857 31.9026 73 ” -10.0260 22.4719 17.6883 -Arial_Bold.ttf 4 n 27.7857 31.9026 74 ? -10.6871 30.4589 42.2143 -Arial_Bold.ttf 4 n 27.7857 31.9026 75 { -10.3755 19.6472 53.9697 -Arial_Bold.ttf 4 n 27.7857 31.9026 76 } -10.3819 19.6472 53.9697 -Arial_Bold.ttf 4 n 27.7857 31.9026 77 , 23.7452 8.8680 17.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 78 I -10.1734 8.1385 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 79 ° -10.2246 18.0844 18.0844 -Arial_Bold.ttf 4 n 27.7857 31.9026 80 K -9.9615 37.7641 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 81 H -10.0415 33.3463 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 82 q 0.0327 29.5628 43.4437 -Arial_Bold.ttf 4 n 27.7857 31.9026 83 & -10.3141 38.8117 42.4286 -Arial_Bold.ttf 4 n 27.7857 31.9026 84 ’ -10.0617 8.8680 17.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 85 [ -10.2262 15.2294 53.5411 -Arial_Bold.ttf 4 n 27.7857 31.9026 86 - 13.5764 15.7294 6.9091 -Arial_Bold.ttf 4 n 27.7857 31.9026 87 Y -9.9186 41.0563 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 88 Q -10.8231 41.7857 46.6472 -Arial_Bold.ttf 4 n 27.7857 31.9026 89 " -10.3476 21.5909 15.2294 -Arial_Bold.ttf 4 n 27.7857 31.9026 90 ! -10.4574 8.1385 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 91 x 1.1306 32.4177 30.6732 -Arial_Bold.ttf 4 n 27.7857 31.9026 92 ) -10.0295 14.0000 53.5411 -Arial_Bold.ttf 4 n 27.7857 31.9026 93 = 1.3711 29.2294 19.2835 -Arial_Bold.ttf 4 n 27.7857 31.9026 94 + -2.6062 28.8961 28.8961 -Arial_Bold.ttf 4 n 27.7857 31.9026 95 X -10.0519 38.9935 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 96 » 3.2920 26.9524 26.5563 -Arial_Bold.ttf 4 n 27.7857 31.9026 97 ' -10.0974 8.1385 15.2294 -Arial_Bold.ttf 4 n 27.7857 31.9026 98 ¢ -9.8746 28.7294 54.4372 -Arial_Bold.ttf 4 n 27.7857 31.9026 99 Z -10.1397 34.4805 42.0000 -Arial_Bold.ttf 4 n 27.7857 31.9026 100 > -4.4332 28.0000 31.9026 -Arial_Bold.ttf 4 n 27.7857 31.9026 101 ® -10.0972 43.2294 42.4286 -Arial_Bold.ttf 4 n 27.7857 31.9026 102 © -10.1591 43.9589 42.4286 -Arial_Bold.ttf 4 n 27.7857 31.9026 103 ] -10.3262 15.2294 53.5411 -Arial_Bold.ttf 4 n 27.7857 31.9026 104 é -10.8447 29.4113 42.8961 -Arial_Bold.ttf 4 n 27.7857 31.9026 105 z 1.1942 26.7706 30.6732 -Arial_Bold.ttf 4 n 27.7857 31.9026 106 _ 37.1808 33.4654 5.8615 -Arial_Bold.ttf 4 n 27.7857 31.9026 107 ¥ -10.1736 30.2056 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 1 t 0.6955 18.1169 41.3810 -Arial_Bold.ttf 5 P 32.0844 42.0000 2 h 0.0045 27.7857 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 3 a 10.0415 28.8333 32.1169 -Arial_Bold.ttf 5 P 32.0844 42.0000 4 n 10.3426 27.7857 31.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 5 P 0.1357 32.0844 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 6 o 9.8472 31.0065 32.1169 -Arial_Bold.ttf 5 P 32.0844 42.0000 7 e 9.9708 29.4113 32.1169 -Arial_Bold.ttf 5 P 32.0844 42.0000 8 : 11.0473 8.1385 30.6732 -Arial_Bold.ttf 5 P 32.0844 42.0000 9 r 10.1696 19.8615 31.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 10 l 0.1593 8.1385 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 11 i 0.1891 8.1385 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 12 1 -0.1847 18.2359 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 13 | -0.0226 5.8615 54.5563 -Arial_Bold.ttf 5 P 32.0844 42.0000 14 N 0.0274 33.3463 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 15 f -0.6373 20.6948 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 16 g 10.2649 29.5628 43.6580 -Arial_Bold.ttf 5 P 32.0844 42.0000 17 d -0.2645 29.5628 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 18 W 0.0045 54.7706 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 19 s 10.0869 28.3333 32.1169 -Arial_Bold.ttf 5 P 32.0844 42.0000 20 c 10.1186 27.5000 32.1169 -Arial_Bold.ttf 5 P 32.0844 42.0000 21 u 11.3866 27.7857 30.8874 -Arial_Bold.ttf 5 P 32.0844 42.0000 22 3 0.4971 27.2857 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 23 ~ 15.9029 30.4589 10.8117 -Arial_Bold.ttf 5 P 32.0844 42.0000 24 # -0.0805 30.3874 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 25 O -0.7944 40.3420 43.4589 -Arial_Bold.ttf 5 P 32.0844 42.0000 26 ` -0.0214 12.7706 8.3203 -Arial_Bold.ttf 5 P 32.0844 42.0000 27 @ -0.2038 55.2706 56.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 28 F -0.0857 29.0152 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 29 S -1.0927 33.8615 43.4589 -Arial_Bold.ttf 5 P 32.0844 42.0000 30 p 9.9700 29.5628 43.4437 -Arial_Bold.ttf 5 P 32.0844 42.0000 31 “ -0.1347 22.4719 17.6883 -Arial_Bold.ttf 5 P 32.0844 42.0000 32 % -0.4014 44.9329 43.6580 -Arial_Bold.ttf 5 P 32.0844 42.0000 33 £ 0.0276 31.1883 42.4286 -Arial_Bold.ttf 5 P 32.0844 42.0000 34 . 33.6789 8.1385 8.1385 -Arial_Bold.ttf 5 P 32.0844 42.0000 35 2 0.1424 27.2857 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 36 5 0.3969 28.0000 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 37 m 10.3633 44.6104 31.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 38 V 0.1153 38.4935 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 39 6 -0.2048 27.2857 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 40 w 11.4899 45.5065 30.6732 -Arial_Bold.ttf 5 P 32.0844 42.0000 41 T 0.0903 33.2511 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 42 M -0.0522 39.5584 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 43 G -0.7211 39.1126 43.4589 -Arial_Bold.ttf 5 P 32.0844 42.0000 44 b 0.0000 29.5628 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 45 9 0.1424 27.2857 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 46 ; 11.1995 8.8680 40.4372 -Arial_Bold.ttf 5 P 32.0844 42.0000 47 D -0.0266 35.0909 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 48 L -0.1826 29.9113 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 49 y 11.6544 31.6883 42.4286 -Arial_Bold.ttf 5 P 32.0844 42.0000 50 ‘ -0.0661 8.8680 17.6883 -Arial_Bold.ttf 5 P 32.0844 42.0000 51 \ -0.1788 17.6883 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 52 R -0.0357 37.0498 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 53 < 5.3030 28.0000 31.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 54 4 0.0188 29.9589 41.7857 -Arial_Bold.ttf 5 P 32.0844 42.0000 55 8 -0.1228 27.2857 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 56 0 0.0845 27.2857 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 57 A -0.0403 40.5887 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 58 E 0.0597 32.0844 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 59 B 0.0500 35.0909 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 60 v 11.3671 31.6883 30.6732 -Arial_Bold.ttf 5 P 32.0844 42.0000 61 k 0.3853 28.5152 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 62 J 0.0774 26.9524 42.7294 -Arial_Bold.ttf 5 P 32.0844 42.0000 63 U -0.1623 33.3463 42.7294 -Arial_Bold.ttf 5 P 32.0844 42.0000 64 j -0.1274 15.2294 53.7554 -Arial_Bold.ttf 5 P 32.0844 42.0000 65 ( 0.1105 14.0000 53.5411 -Arial_Bold.ttf 5 P 32.0844 42.0000 66 7 0.1865 27.2857 41.7857 -Arial_Bold.ttf 5 P 32.0844 42.0000 67 § -0.0095 28.5152 54.7706 -Arial_Bold.ttf 5 P 32.0844 42.0000 68 $ -3.0624 27.7857 50.8680 -Arial_Bold.ttf 5 P 32.0844 42.0000 69 € -0.6542 31.6883 42.9437 -Arial_Bold.ttf 5 P 32.0844 42.0000 70 / -0.0583 17.6883 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 71 C -0.5506 36.6537 42.7294 -Arial_Bold.ttf 5 P 32.0844 42.0000 72 * 0.1014 19.7424 19.1320 -Arial_Bold.ttf 5 P 32.0844 42.0000 73 ” -0.1288 22.4719 17.6883 -Arial_Bold.ttf 5 P 32.0844 42.0000 74 ? -0.1286 30.4589 42.2143 -Arial_Bold.ttf 5 P 32.0844 42.0000 75 { 0.0457 19.6472 53.9697 -Arial_Bold.ttf 5 P 32.0844 42.0000 76 } -0.0369 19.6472 53.9697 -Arial_Bold.ttf 5 P 32.0844 42.0000 77 , 33.6760 8.8680 17.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 78 I 0.1343 8.1385 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 79 ° -0.5373 18.0844 18.0844 -Arial_Bold.ttf 5 P 32.0844 42.0000 80 K -0.0917 37.7641 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 81 H 0.0443 33.3463 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 82 q 10.4847 29.5628 43.4437 -Arial_Bold.ttf 5 P 32.0844 42.0000 83 & -0.5280 38.8117 42.4286 -Arial_Bold.ttf 5 P 32.0844 42.0000 84 ’ 0.0417 8.8680 17.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 85 [ 0.2145 15.2294 53.5411 -Arial_Bold.ttf 5 P 32.0844 42.0000 86 - 23.6224 15.7294 6.9091 -Arial_Bold.ttf 5 P 32.0844 42.0000 87 Y -0.3578 41.0563 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 88 Q -0.6580 41.7857 46.6472 -Arial_Bold.ttf 5 P 32.0844 42.0000 89 " 0.0857 21.5909 15.2294 -Arial_Bold.ttf 5 P 32.0844 42.0000 90 ! -0.1812 8.1385 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 91 x 11.5102 32.4177 30.6732 -Arial_Bold.ttf 5 P 32.0844 42.0000 92 ) 0.2350 14.0000 53.5411 -Arial_Bold.ttf 5 P 32.0844 42.0000 93 = 11.1838 29.2294 19.2835 -Arial_Bold.ttf 5 P 32.0844 42.0000 94 + 7.1491 28.8961 28.8961 -Arial_Bold.ttf 5 P 32.0844 42.0000 95 X 0.0198 38.9935 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 96 » 13.6265 26.9524 26.5563 -Arial_Bold.ttf 5 P 32.0844 42.0000 97 ' -0.0933 8.1385 15.2294 -Arial_Bold.ttf 5 P 32.0844 42.0000 98 ¢ 0.1600 28.7294 54.4372 -Arial_Bold.ttf 5 P 32.0844 42.0000 99 Z 0.2852 34.4805 42.0000 -Arial_Bold.ttf 5 P 32.0844 42.0000 100 > 5.4706 28.0000 31.9026 -Arial_Bold.ttf 5 P 32.0844 42.0000 101 ® -0.6895 43.2294 42.4286 -Arial_Bold.ttf 5 P 32.0844 42.0000 102 © -0.0662 43.9589 42.4286 -Arial_Bold.ttf 5 P 32.0844 42.0000 103 ] -0.0298 15.2294 53.5411 -Arial_Bold.ttf 5 P 32.0844 42.0000 104 é -0.7630 29.4113 42.8961 -Arial_Bold.ttf 5 P 32.0844 42.0000 105 z 11.2866 26.7706 30.6732 -Arial_Bold.ttf 5 P 32.0844 42.0000 106 _ 47.5304 33.4654 5.8615 -Arial_Bold.ttf 5 P 32.0844 42.0000 107 ¥ -0.1871 30.2056 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 1 t -9.1295 18.1169 41.3810 -Arial_Bold.ttf 6 o 31.0065 32.1169 2 h -10.0900 27.7857 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 3 a 0.0214 28.8333 32.1169 -Arial_Bold.ttf 6 o 31.0065 32.1169 4 n -0.1274 27.7857 31.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 5 P -10.0486 32.0844 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 6 o 0.0798 31.0065 32.1169 -Arial_Bold.ttf 6 o 31.0065 32.1169 7 e 0.3540 29.4113 32.1169 -Arial_Bold.ttf 6 o 31.0065 32.1169 8 : 1.1794 8.1385 30.6732 -Arial_Bold.ttf 6 o 31.0065 32.1169 9 r 0.0286 19.8615 31.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 10 l -9.9982 8.1385 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 11 i -9.7777 8.1385 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 12 1 -9.9498 18.2359 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 13 | -10.0450 5.8615 54.5563 -Arial_Bold.ttf 6 o 31.0065 32.1169 14 N -10.2105 33.3463 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 15 f -10.3557 20.6948 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 16 g -0.0895 29.5628 43.6580 -Arial_Bold.ttf 6 o 31.0065 32.1169 17 d -10.3188 29.5628 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 18 W -9.9460 54.7706 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 19 s -0.1014 28.3333 32.1169 -Arial_Bold.ttf 6 o 31.0065 32.1169 20 c -0.0403 27.5000 32.1169 -Arial_Bold.ttf 6 o 31.0065 32.1169 21 u 1.2042 27.7857 30.8874 -Arial_Bold.ttf 6 o 31.0065 32.1169 22 3 -9.8863 27.2857 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 23 ~ 5.8855 30.4589 10.8117 -Arial_Bold.ttf 6 o 31.0065 32.1169 24 # -10.2522 30.3874 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 25 O -10.8328 40.3420 43.4589 -Arial_Bold.ttf 6 o 31.0065 32.1169 26 ` -9.8186 12.7706 8.3203 -Arial_Bold.ttf 6 o 31.0065 32.1169 27 @ -10.2912 55.2706 56.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 28 F -10.1466 29.0152 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 29 S -10.6600 33.8615 43.4589 -Arial_Bold.ttf 6 o 31.0065 32.1169 30 p -0.1161 29.5628 43.4437 -Arial_Bold.ttf 6 o 31.0065 32.1169 31 “ -10.4224 22.4719 17.6883 -Arial_Bold.ttf 6 o 31.0065 32.1169 32 % -10.1758 44.9329 43.6580 -Arial_Bold.ttf 6 o 31.0065 32.1169 33 £ -10.4655 31.1883 42.4286 -Arial_Bold.ttf 6 o 31.0065 32.1169 34 . 24.0688 8.1385 8.1385 -Arial_Bold.ttf 6 o 31.0065 32.1169 35 2 -9.9305 27.2857 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 36 5 -9.6648 28.0000 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 37 m -0.1988 44.6104 31.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 38 V -9.9557 38.4935 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 39 6 -10.3026 27.2857 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 40 w 1.0532 45.5065 30.6732 -Arial_Bold.ttf 6 o 31.0065 32.1169 41 T -9.8986 33.2511 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 42 M -10.1869 39.5584 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 43 G -10.7216 39.1126 43.4589 -Arial_Bold.ttf 6 o 31.0065 32.1169 44 b -10.1415 29.5628 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 45 9 -10.1369 27.2857 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 46 ; 1.1521 8.8680 40.4372 -Arial_Bold.ttf 6 o 31.0065 32.1169 47 D -10.1012 35.0909 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 48 L -10.1162 29.9113 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 49 y 1.2235 31.6883 42.4286 -Arial_Bold.ttf 6 o 31.0065 32.1169 50 ‘ -10.2679 8.8680 17.6883 -Arial_Bold.ttf 6 o 31.0065 32.1169 51 \ -10.1772 17.6883 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 52 R -9.9629 37.0498 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 53 < -4.6594 28.0000 31.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 54 4 -9.7386 29.9589 41.7857 -Arial_Bold.ttf 6 o 31.0065 32.1169 55 8 -10.0429 27.2857 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 56 0 -9.8412 27.2857 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 57 A -10.3379 40.5887 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 58 E -10.1012 32.0844 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 59 B -10.1548 35.0909 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 60 v 1.2211 31.6883 30.6732 -Arial_Bold.ttf 6 o 31.0065 32.1169 61 k -9.8374 28.5152 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 62 J -10.1774 26.9524 42.7294 -Arial_Bold.ttf 6 o 31.0065 32.1169 63 U -10.1345 33.3463 42.7294 -Arial_Bold.ttf 6 o 31.0065 32.1169 64 j -10.2165 15.2294 53.7554 -Arial_Bold.ttf 6 o 31.0065 32.1169 65 ( -10.0019 14.0000 53.5411 -Arial_Bold.ttf 6 o 31.0065 32.1169 66 7 -9.4874 27.2857 41.7857 -Arial_Bold.ttf 6 o 31.0065 32.1169 67 § -10.5022 28.5152 54.7706 -Arial_Bold.ttf 6 o 31.0065 32.1169 68 $ -13.1694 27.7857 50.8680 -Arial_Bold.ttf 6 o 31.0065 32.1169 69 € -10.8195 31.6883 42.9437 -Arial_Bold.ttf 6 o 31.0065 32.1169 70 / -10.0095 17.6883 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 71 C -10.3700 36.6537 42.7294 -Arial_Bold.ttf 6 o 31.0065 32.1169 72 * -10.0617 19.7424 19.1320 -Arial_Bold.ttf 6 o 31.0065 32.1169 73 ” -10.5321 22.4719 17.6883 -Arial_Bold.ttf 6 o 31.0065 32.1169 74 ? -10.0979 30.4589 42.2143 -Arial_Bold.ttf 6 o 31.0065 32.1169 75 { -10.3972 19.6472 53.9697 -Arial_Bold.ttf 6 o 31.0065 32.1169 76 } -10.4071 19.6472 53.9697 -Arial_Bold.ttf 6 o 31.0065 32.1169 77 , 23.8355 8.8680 17.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 78 I -10.1585 8.1385 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 79 ° -10.1051 18.0844 18.0844 -Arial_Bold.ttf 6 o 31.0065 32.1169 80 K -10.4171 37.7641 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 81 H -9.9655 33.3463 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 82 q -0.0871 29.5628 43.4437 -Arial_Bold.ttf 6 o 31.0065 32.1169 83 & -10.4496 38.8117 42.4286 -Arial_Bold.ttf 6 o 31.0065 32.1169 84 ’ -10.1534 8.8680 17.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 85 [ -10.3188 15.2294 53.5411 -Arial_Bold.ttf 6 o 31.0065 32.1169 86 - 13.8774 15.7294 6.9091 -Arial_Bold.ttf 6 o 31.0065 32.1169 87 Y -10.0815 41.0563 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 88 Q -10.7911 41.7857 46.6472 -Arial_Bold.ttf 6 o 31.0065 32.1169 89 " -10.0974 21.5909 15.2294 -Arial_Bold.ttf 6 o 31.0065 32.1169 90 ! -9.9117 8.1385 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 91 x 1.1521 32.4177 30.6732 -Arial_Bold.ttf 6 o 31.0065 32.1169 92 ) -10.2307 14.0000 53.5411 -Arial_Bold.ttf 6 o 31.0065 32.1169 93 = 0.9721 29.2294 19.2835 -Arial_Bold.ttf 6 o 31.0065 32.1169 94 + -2.7207 28.8961 28.8961 -Arial_Bold.ttf 6 o 31.0065 32.1169 95 X -9.9857 38.9935 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 96 » 3.4767 26.9524 26.5563 -Arial_Bold.ttf 6 o 31.0065 32.1169 97 ' -10.4415 8.1385 15.2294 -Arial_Bold.ttf 6 o 31.0065 32.1169 98 ¢ -10.3286 28.7294 54.4372 -Arial_Bold.ttf 6 o 31.0065 32.1169 99 Z -10.2824 34.4805 42.0000 -Arial_Bold.ttf 6 o 31.0065 32.1169 100 > -4.8130 28.0000 31.9026 -Arial_Bold.ttf 6 o 31.0065 32.1169 101 ® -10.3524 43.2294 42.4286 -Arial_Bold.ttf 6 o 31.0065 32.1169 102 © -10.4496 43.9589 42.4286 -Arial_Bold.ttf 6 o 31.0065 32.1169 103 ] -10.1748 15.2294 53.5411 -Arial_Bold.ttf 6 o 31.0065 32.1169 104 é -10.6838 29.4113 42.8961 -Arial_Bold.ttf 6 o 31.0065 32.1169 105 z 1.4316 26.7706 30.6732 -Arial_Bold.ttf 6 o 31.0065 32.1169 106 _ 37.1854 33.4654 5.8615 -Arial_Bold.ttf 6 o 31.0065 32.1169 107 ¥ -9.9629 30.2056 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 1 t -9.0087 18.1169 41.3810 -Arial_Bold.ttf 7 e 29.4113 32.1169 2 h -9.9543 27.7857 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 3 a 0.1645 28.8333 32.1169 -Arial_Bold.ttf 7 e 29.4113 32.1169 4 n -0.0462 27.7857 31.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 5 P -10.1800 32.0844 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 6 o 0.2228 31.0065 32.1169 -Arial_Bold.ttf 7 e 29.4113 32.1169 7 e -0.2319 29.4113 32.1169 -Arial_Bold.ttf 7 e 29.4113 32.1169 8 : 1.1930 8.1385 30.6732 -Arial_Bold.ttf 7 e 29.4113 32.1169 9 r -0.0188 19.8615 31.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 10 l -10.1988 8.1385 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 11 i -9.9253 8.1385 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 12 1 -10.4269 18.2359 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 13 | -10.3165 5.8615 54.5563 -Arial_Bold.ttf 7 e 29.4113 32.1169 14 N -10.1981 33.3463 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 15 f -10.3124 20.6948 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 16 g 0.1333 29.5628 43.6580 -Arial_Bold.ttf 7 e 29.4113 32.1169 17 d -10.3988 29.5628 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 18 W -10.1565 54.7706 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 19 s 0.0857 28.3333 32.1169 -Arial_Bold.ttf 7 e 29.4113 32.1169 20 c 0.2988 27.5000 32.1169 -Arial_Bold.ttf 7 e 29.4113 32.1169 21 u 1.1866 27.7857 30.8874 -Arial_Bold.ttf 7 e 29.4113 32.1169 22 3 -10.1629 27.2857 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 23 ~ 6.0403 30.4589 10.8117 -Arial_Bold.ttf 7 e 29.4113 32.1169 24 # -9.8843 30.3874 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 25 O -10.6981 40.3420 43.4589 -Arial_Bold.ttf 7 e 29.4113 32.1169 26 ` -10.2391 12.7706 8.3203 -Arial_Bold.ttf 7 e 29.4113 32.1169 27 @ -10.2557 55.2706 56.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 28 F -10.2240 29.0152 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 29 S -10.8328 33.8615 43.4589 -Arial_Bold.ttf 7 e 29.4113 32.1169 30 p -0.1093 29.5628 43.4437 -Arial_Bold.ttf 7 e 29.4113 32.1169 31 “ -10.1455 22.4719 17.6883 -Arial_Bold.ttf 7 e 29.4113 32.1169 32 % -10.3377 44.9329 43.6580 -Arial_Bold.ttf 7 e 29.4113 32.1169 33 £ -10.3936 31.1883 42.4286 -Arial_Bold.ttf 7 e 29.4113 32.1169 34 . 23.9478 8.1385 8.1385 -Arial_Bold.ttf 7 e 29.4113 32.1169 35 2 -9.9603 27.2857 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 36 5 -9.9831 28.0000 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 37 m -0.3969 44.6104 31.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 38 V -10.3341 38.4935 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 39 6 -9.9089 27.2857 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 40 w 1.2273 45.5065 30.6732 -Arial_Bold.ttf 7 e 29.4113 32.1169 41 T -10.2819 33.2511 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 42 M -10.0057 39.5584 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 43 G -10.8880 39.1126 43.4589 -Arial_Bold.ttf 7 e 29.4113 32.1169 44 b -10.0238 29.5628 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 45 9 -10.2331 27.2857 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 46 ; 1.0983 8.8680 40.4372 -Arial_Bold.ttf 7 e 29.4113 32.1169 47 D -10.4288 35.0909 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 48 L -10.2605 29.9113 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 49 y 1.3652 31.6883 42.4286 -Arial_Bold.ttf 7 e 29.4113 32.1169 50 ‘ -10.2391 8.8680 17.6883 -Arial_Bold.ttf 7 e 29.4113 32.1169 51 \ -10.0147 17.6883 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 52 R -10.2188 37.0498 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 53 < -4.5320 28.0000 31.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 54 4 -9.9391 29.9589 41.7857 -Arial_Bold.ttf 7 e 29.4113 32.1169 55 8 -10.0343 27.2857 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 56 0 -10.2331 27.2857 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 57 A -10.0741 40.5887 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 58 E -9.9750 32.0844 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 59 B -10.0421 35.0909 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 60 v 1.0558 31.6883 30.6732 -Arial_Bold.ttf 7 e 29.4113 32.1169 61 k -9.9843 28.5152 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 62 J -10.0284 26.9524 42.7294 -Arial_Bold.ttf 7 e 29.4113 32.1169 63 U -10.1526 33.3463 42.7294 -Arial_Bold.ttf 7 e 29.4113 32.1169 64 j -10.4319 15.2294 53.7554 -Arial_Bold.ttf 7 e 29.4113 32.1169 65 ( -9.6412 14.0000 53.5411 -Arial_Bold.ttf 7 e 29.4113 32.1169 66 7 -9.9583 27.2857 41.7857 -Arial_Bold.ttf 7 e 29.4113 32.1169 67 § -10.4807 28.5152 54.7706 -Arial_Bold.ttf 7 e 29.4113 32.1169 68 $ -12.9592 27.7857 50.8680 -Arial_Bold.ttf 7 e 29.4113 32.1169 69 € -10.6213 31.6883 42.9437 -Arial_Bold.ttf 7 e 29.4113 32.1169 70 / -9.8569 17.6883 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 71 C -10.7114 36.6537 42.7294 -Arial_Bold.ttf 7 e 29.4113 32.1169 72 * -9.9557 19.7424 19.1320 -Arial_Bold.ttf 7 e 29.4113 32.1169 73 ” -10.1950 22.4719 17.6883 -Arial_Bold.ttf 7 e 29.4113 32.1169 74 ? -10.3676 30.4589 42.2143 -Arial_Bold.ttf 7 e 29.4113 32.1169 75 { -10.1010 19.6472 53.9697 -Arial_Bold.ttf 7 e 29.4113 32.1169 76 } -9.9496 19.6472 53.9697 -Arial_Bold.ttf 7 e 29.4113 32.1169 77 , 23.9147 8.8680 17.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 78 I -10.5288 8.1385 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 79 ° -10.3150 18.0844 18.0844 -Arial_Bold.ttf 7 e 29.4113 32.1169 80 K -9.9505 37.7641 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 81 H -9.8905 33.3463 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 82 q 0.0662 29.5628 43.4437 -Arial_Bold.ttf 7 e 29.4113 32.1169 83 & -10.1617 38.8117 42.4286 -Arial_Bold.ttf 7 e 29.4113 32.1169 84 ’ -9.9222 8.8680 17.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 85 [ -10.0012 15.2294 53.5411 -Arial_Bold.ttf 7 e 29.4113 32.1169 86 - 13.9155 15.7294 6.9091 -Arial_Bold.ttf 7 e 29.4113 32.1169 87 Y -9.9486 41.0563 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 88 Q -10.7761 41.7857 46.6472 -Arial_Bold.ttf 7 e 29.4113 32.1169 89 " -10.2833 21.5909 15.2294 -Arial_Bold.ttf 7 e 29.4113 32.1169 90 ! -10.1369 8.1385 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 91 x 1.4297 32.4177 30.6732 -Arial_Bold.ttf 7 e 29.4113 32.1169 92 ) -9.9141 14.0000 53.5411 -Arial_Bold.ttf 7 e 29.4113 32.1169 93 = 1.2256 29.2294 19.2835 -Arial_Bold.ttf 7 e 29.4113 32.1169 94 + -2.9466 28.8961 28.8961 -Arial_Bold.ttf 7 e 29.4113 32.1169 95 X -10.2581 38.9935 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 96 » 3.2601 26.9524 26.5563 -Arial_Bold.ttf 7 e 29.4113 32.1169 97 ' -9.9843 8.1385 15.2294 -Arial_Bold.ttf 7 e 29.4113 32.1169 98 ¢ -9.9343 28.7294 54.4372 -Arial_Bold.ttf 7 e 29.4113 32.1169 99 Z -10.6328 34.4805 42.0000 -Arial_Bold.ttf 7 e 29.4113 32.1169 100 > -4.6692 28.0000 31.9026 -Arial_Bold.ttf 7 e 29.4113 32.1169 101 ® -10.4905 43.2294 42.4286 -Arial_Bold.ttf 7 e 29.4113 32.1169 102 © -10.6657 43.9589 42.4286 -Arial_Bold.ttf 7 e 29.4113 32.1169 103 ] -9.9141 15.2294 53.5411 -Arial_Bold.ttf 7 e 29.4113 32.1169 104 é -10.6109 29.4113 42.8961 -Arial_Bold.ttf 7 e 29.4113 32.1169 105 z 1.4106 26.7706 30.6732 -Arial_Bold.ttf 7 e 29.4113 32.1169 106 _ 37.2906 33.4654 5.8615 -Arial_Bold.ttf 7 e 29.4113 32.1169 107 ¥ -10.0248 30.2056 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 1 t -10.5649 18.1169 41.3810 -Arial_Bold.ttf 8 : 8.1385 30.6732 2 h -11.2352 27.7857 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 3 a -1.4850 28.8333 32.1169 -Arial_Bold.ttf 8 : 8.1385 30.6732 4 n -1.1878 27.7857 31.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 5 P -11.4223 32.0844 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 6 o -1.1794 31.0065 32.1169 -Arial_Bold.ttf 8 : 8.1385 30.6732 7 e -1.1137 29.4113 32.1169 -Arial_Bold.ttf 8 : 8.1385 30.6732 8 : 0.1371 8.1385 30.6732 -Arial_Bold.ttf 8 : 8.1385 30.6732 9 r -1.2430 19.8615 31.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 10 l -11.2768 8.1385 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 11 i -11.3268 8.1385 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 12 1 -11.3588 18.2359 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 13 | -11.3640 5.8615 54.5563 -Arial_Bold.ttf 8 : 8.1385 30.6732 14 N -11.3411 33.3463 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 15 f -11.6268 20.6948 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 16 g -1.3568 29.5628 43.6580 -Arial_Bold.ttf 8 : 8.1385 30.6732 17 d -11.5594 29.5628 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 18 W -11.3768 54.7706 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 19 s -1.1723 28.3333 32.1169 -Arial_Bold.ttf 8 : 8.1385 30.6732 20 c -1.3009 27.5000 32.1169 -Arial_Bold.ttf 8 : 8.1385 30.6732 21 u -0.1183 27.7857 30.8874 -Arial_Bold.ttf 8 : 8.1385 30.6732 22 3 -11.7090 27.2857 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 23 ~ 4.7192 30.4589 10.8117 -Arial_Bold.ttf 8 : 8.1385 30.6732 24 # -11.4990 30.3874 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 25 O -12.0837 40.3420 43.4589 -Arial_Bold.ttf 8 : 8.1385 30.6732 26 ` -11.3268 12.7706 8.3203 -Arial_Bold.ttf 8 : 8.1385 30.6732 27 @ -11.5971 55.2706 56.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 28 F -11.1516 29.0152 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 29 S -12.0206 33.8615 43.4589 -Arial_Bold.ttf 8 : 8.1385 30.6732 30 p -1.3211 29.5628 43.4437 -Arial_Bold.ttf 8 : 8.1385 30.6732 31 “ -11.2911 22.4719 17.6883 -Arial_Bold.ttf 8 : 8.1385 30.6732 32 % -11.5209 44.9329 43.6580 -Arial_Bold.ttf 8 : 8.1385 30.6732 33 £ -11.3885 31.1883 42.4286 -Arial_Bold.ttf 8 : 8.1385 30.6732 34 . 22.5192 8.1385 8.1385 -Arial_Bold.ttf 8 : 8.1385 30.6732 35 2 -11.2611 27.2857 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 36 5 -11.1126 28.0000 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 37 m -1.3354 44.6104 31.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 38 V -11.3171 38.4935 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 39 6 -11.3268 27.2857 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 40 w -0.0774 45.5065 30.6732 -Arial_Bold.ttf 8 : 8.1385 30.6732 41 T -11.2373 33.2511 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 42 M -11.3187 39.5584 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 43 G -12.1192 39.1126 43.4589 -Arial_Bold.ttf 8 : 8.1385 30.6732 44 b -11.5185 29.5628 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 45 9 -11.2554 27.2857 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 46 ; -0.1826 8.8680 40.4372 -Arial_Bold.ttf 8 : 8.1385 30.6732 47 D -11.6876 35.0909 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 48 L -11.3126 29.9113 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 49 y 0.0462 31.6883 42.4286 -Arial_Bold.ttf 8 : 8.1385 30.6732 50 ‘ -11.4973 8.8680 17.6883 -Arial_Bold.ttf 8 : 8.1385 30.6732 51 \ -11.1768 17.6883 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 52 R -11.2754 37.0498 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 53 < -5.9115 28.0000 31.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 54 4 -11.2723 29.9589 41.7857 -Arial_Bold.ttf 8 : 8.1385 30.6732 55 8 -11.2352 27.2857 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 56 0 -11.4316 27.2857 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 57 A -11.3342 40.5887 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 58 E -11.5223 32.0844 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 59 B -11.1443 35.0909 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 60 v 0.0000 31.6883 30.6732 -Arial_Bold.ttf 8 : 8.1385 30.6732 61 k -11.0661 28.5152 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 62 J -11.0488 26.9524 42.7294 -Arial_Bold.ttf 8 : 8.1385 30.6732 63 U -11.3990 33.3463 42.7294 -Arial_Bold.ttf 8 : 8.1385 30.6732 64 j -11.4088 15.2294 53.7554 -Arial_Bold.ttf 8 : 8.1385 30.6732 65 ( -11.1397 14.0000 53.5411 -Arial_Bold.ttf 8 : 8.1385 30.6732 66 7 -10.9792 27.2857 41.7857 -Arial_Bold.ttf 8 : 8.1385 30.6732 67 § -11.7140 28.5152 54.7706 -Arial_Bold.ttf 8 : 8.1385 30.6732 68 $ -14.3060 27.7857 50.8680 -Arial_Bold.ttf 8 : 8.1385 30.6732 69 € -12.0920 31.6883 42.9437 -Arial_Bold.ttf 8 : 8.1385 30.6732 70 / -11.5756 17.6883 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 71 C -11.8170 36.6537 42.7294 -Arial_Bold.ttf 8 : 8.1385 30.6732 72 * -11.4185 19.7424 19.1320 -Arial_Bold.ttf 8 : 8.1385 30.6732 73 ” -11.4140 22.4719 17.6883 -Arial_Bold.ttf 8 : 8.1385 30.6732 74 ? -11.2902 30.4589 42.2143 -Arial_Bold.ttf 8 : 8.1385 30.6732 75 { -11.4221 19.6472 53.9697 -Arial_Bold.ttf 8 : 8.1385 30.6732 76 } -11.3669 19.6472 53.9697 -Arial_Bold.ttf 8 : 8.1385 30.6732 77 , 22.5884 8.8680 17.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 78 I -11.4951 8.1385 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 79 ° -11.3002 18.0844 18.0844 -Arial_Bold.ttf 8 : 8.1385 30.6732 80 K -11.4282 37.7641 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 81 H -11.1578 33.3463 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 82 q -1.3485 29.5628 43.4437 -Arial_Bold.ttf 8 : 8.1385 30.6732 83 & -11.3697 38.8117 42.4286 -Arial_Bold.ttf 8 : 8.1385 30.6732 84 ’ -11.3828 8.8680 17.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 85 [ -11.2137 15.2294 53.5411 -Arial_Bold.ttf 8 : 8.1385 30.6732 86 - 12.3313 15.7294 6.9091 -Arial_Bold.ttf 8 : 8.1385 30.6732 87 Y -11.1935 41.0563 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 88 Q -11.9646 41.7857 46.6472 -Arial_Bold.ttf 8 : 8.1385 30.6732 89 " -11.2435 21.5909 15.2294 -Arial_Bold.ttf 8 : 8.1385 30.6732 90 ! -11.1911 8.1385 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 91 x -0.0552 32.4177 30.6732 -Arial_Bold.ttf 8 : 8.1385 30.6732 92 ) -11.1292 14.0000 53.5411 -Arial_Bold.ttf 8 : 8.1385 30.6732 93 = 0.1788 29.2294 19.2835 -Arial_Bold.ttf 8 : 8.1385 30.6732 94 + -4.1092 28.8961 28.8961 -Arial_Bold.ttf 8 : 8.1385 30.6732 95 X -11.1397 38.9935 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 96 » 2.0858 26.9524 26.5563 -Arial_Bold.ttf 8 : 8.1385 30.6732 97 ' -11.4209 8.1385 15.2294 -Arial_Bold.ttf 8 : 8.1385 30.6732 98 ¢ -11.6068 28.7294 54.4372 -Arial_Bold.ttf 8 : 8.1385 30.6732 99 Z -11.3626 34.4805 42.0000 -Arial_Bold.ttf 8 : 8.1385 30.6732 100 > -5.5210 28.0000 31.9026 -Arial_Bold.ttf 8 : 8.1385 30.6732 101 ® -11.4814 43.2294 42.4286 -Arial_Bold.ttf 8 : 8.1385 30.6732 102 © -11.7282 43.9589 42.4286 -Arial_Bold.ttf 8 : 8.1385 30.6732 103 ] -11.4997 15.2294 53.5411 -Arial_Bold.ttf 8 : 8.1385 30.6732 104 é -12.0289 29.4113 42.8961 -Arial_Bold.ttf 8 : 8.1385 30.6732 105 z 0.0357 26.7706 30.6732 -Arial_Bold.ttf 8 : 8.1385 30.6732 106 _ 36.2302 33.4654 5.8615 -Arial_Bold.ttf 8 : 8.1385 30.6732 107 ¥ -11.3314 30.2056 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 1 t -9.3355 18.1169 41.3810 -Arial_Bold.ttf 9 r 19.8615 31.9026 2 h -9.8232 27.7857 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 3 a 0.0440 28.8333 32.1169 -Arial_Bold.ttf 9 r 19.8615 31.9026 4 n 0.1371 27.7857 31.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 5 P -10.2165 32.0844 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 6 o -0.1514 31.0065 32.1169 -Arial_Bold.ttf 9 r 19.8615 31.9026 7 e -0.0333 29.4113 32.1169 -Arial_Bold.ttf 9 r 19.8615 31.9026 8 : 1.3842 8.1385 30.6732 -Arial_Bold.ttf 9 r 19.8615 31.9026 9 r -0.2048 19.8615 31.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 10 l -9.7720 8.1385 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 11 i -9.9208 8.1385 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 12 1 -10.2307 18.2359 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 13 | -10.4400 5.8615 54.5563 -Arial_Bold.ttf 9 r 19.8615 31.9026 14 N -10.0662 33.3463 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 15 f -10.3357 20.6948 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 16 g 0.0857 29.5628 43.6580 -Arial_Bold.ttf 9 r 19.8615 31.9026 17 d -9.9819 29.5628 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 18 W -9.9200 54.7706 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 19 s 0.3548 28.3333 32.1169 -Arial_Bold.ttf 9 r 19.8615 31.9026 20 c 0.0917 27.5000 32.1169 -Arial_Bold.ttf 9 r 19.8615 31.9026 21 u 1.3652 27.7857 30.8874 -Arial_Bold.ttf 9 r 19.8615 31.9026 22 3 -9.9363 27.2857 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 23 ~ 5.9889 30.4589 10.8117 -Arial_Bold.ttf 9 r 19.8615 31.9026 24 # -10.1824 30.3874 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 25 O -10.4766 40.3420 43.4589 -Arial_Bold.ttf 9 r 19.8615 31.9026 26 ` -10.2165 12.7706 8.3203 -Arial_Bold.ttf 9 r 19.8615 31.9026 27 @ -10.2148 55.2706 56.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 28 F -10.2119 29.0152 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 29 S -10.5742 33.8615 43.4589 -Arial_Bold.ttf 9 r 19.8615 31.9026 30 p -0.1157 29.5628 43.4437 -Arial_Bold.ttf 9 r 19.8615 31.9026 31 “ -10.3202 22.4719 17.6883 -Arial_Bold.ttf 9 r 19.8615 31.9026 32 % -10.3891 44.9329 43.6580 -Arial_Bold.ttf 9 r 19.8615 31.9026 33 £ -10.4255 31.1883 42.4286 -Arial_Bold.ttf 9 r 19.8615 31.9026 34 . 23.9429 8.1385 8.1385 -Arial_Bold.ttf 9 r 19.8615 31.9026 35 2 -10.2508 27.2857 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 36 5 -9.8103 28.0000 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 37 m 0.0060 44.6104 31.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 38 V -10.0929 38.4935 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 39 6 -9.9117 27.2857 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 40 w 1.3068 45.5065 30.6732 -Arial_Bold.ttf 9 r 19.8615 31.9026 41 T -10.1498 33.2511 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 42 M -9.8343 39.5584 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 43 G -10.6578 39.1126 43.4589 -Arial_Bold.ttf 9 r 19.8615 31.9026 44 b -10.1845 29.5628 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 45 9 -10.3345 27.2857 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 46 ; 1.3703 8.8680 40.4372 -Arial_Bold.ttf 9 r 19.8615 31.9026 47 D -10.0103 35.0909 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 48 L -10.3619 29.9113 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 49 y 1.1447 31.6883 42.4286 -Arial_Bold.ttf 9 r 19.8615 31.9026 50 ‘ -10.2314 8.8680 17.6883 -Arial_Bold.ttf 9 r 19.8615 31.9026 51 \ -10.1950 17.6883 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 52 R -10.2117 37.0498 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 53 < -4.9277 28.0000 31.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 54 4 -9.6889 29.9589 41.7857 -Arial_Bold.ttf 9 r 19.8615 31.9026 55 8 -9.8389 27.2857 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 56 0 -9.9141 27.2857 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 57 A -9.9284 40.5887 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 58 E -9.9915 32.0844 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 59 B -10.1034 35.0909 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 60 v 1.2294 31.6883 30.6732 -Arial_Bold.ttf 9 r 19.8615 31.9026 61 k -10.1117 28.5152 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 62 J -10.0831 26.9524 42.7294 -Arial_Bold.ttf 9 r 19.8615 31.9026 63 U -10.0801 33.3463 42.7294 -Arial_Bold.ttf 9 r 19.8615 31.9026 64 j -10.1891 15.2294 53.7554 -Arial_Bold.ttf 9 r 19.8615 31.9026 65 ( -10.1353 14.0000 53.5411 -Arial_Bold.ttf 9 r 19.8615 31.9026 66 7 -9.5718 27.2857 41.7857 -Arial_Bold.ttf 9 r 19.8615 31.9026 67 § -10.3676 28.5152 54.7706 -Arial_Bold.ttf 9 r 19.8615 31.9026 68 $ -13.0479 27.7857 50.8680 -Arial_Bold.ttf 9 r 19.8615 31.9026 69 € -10.7495 31.6883 42.9437 -Arial_Bold.ttf 9 r 19.8615 31.9026 70 / -10.1974 17.6883 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 71 C -10.6852 36.6537 42.7294 -Arial_Bold.ttf 9 r 19.8615 31.9026 72 * -10.2324 19.7424 19.1320 -Arial_Bold.ttf 9 r 19.8615 31.9026 73 ” -10.0915 22.4719 17.6883 -Arial_Bold.ttf 9 r 19.8615 31.9026 74 ? -10.3891 30.4589 42.2143 -Arial_Bold.ttf 9 r 19.8615 31.9026 75 { -10.1843 19.6472 53.9697 -Arial_Bold.ttf 9 r 19.8615 31.9026 76 } -10.4429 19.6472 53.9697 -Arial_Bold.ttf 9 r 19.8615 31.9026 77 , 23.6367 8.8680 17.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 78 I -10.0260 8.1385 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 79 ° -10.5143 18.0844 18.0844 -Arial_Bold.ttf 9 r 19.8615 31.9026 80 K -10.1688 37.7641 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 81 H -10.0214 33.3463 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 82 q 0.2548 29.5628 43.4437 -Arial_Bold.ttf 9 r 19.8615 31.9026 83 & -10.2494 38.8117 42.4286 -Arial_Bold.ttf 9 r 19.8615 31.9026 84 ’ -10.1057 8.8680 17.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 85 [ -10.3216 15.2294 53.5411 -Arial_Bold.ttf 9 r 19.8615 31.9026 86 - 13.6810 15.7294 6.9091 -Arial_Bold.ttf 9 r 19.8615 31.9026 87 Y -9.6841 41.0563 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 88 Q -10.6754 41.7857 46.6472 -Arial_Bold.ttf 9 r 19.8615 31.9026 89 " -10.0355 21.5909 15.2294 -Arial_Bold.ttf 9 r 19.8615 31.9026 90 ! -9.9557 8.1385 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 91 x 1.3166 32.4177 30.6732 -Arial_Bold.ttf 9 r 19.8615 31.9026 92 ) -10.0617 14.0000 53.5411 -Arial_Bold.ttf 9 r 19.8615 31.9026 93 = 1.2937 29.2294 19.2835 -Arial_Bold.ttf 9 r 19.8615 31.9026 94 + -2.9316 28.8961 28.8961 -Arial_Bold.ttf 9 r 19.8615 31.9026 95 X -10.1028 38.9935 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 96 » 3.6670 26.9524 26.5563 -Arial_Bold.ttf 9 r 19.8615 31.9026 97 ' -9.8889 8.1385 15.2294 -Arial_Bold.ttf 9 r 19.8615 31.9026 98 ¢ -10.0968 28.7294 54.4372 -Arial_Bold.ttf 9 r 19.8615 31.9026 99 Z -10.1891 34.4805 42.0000 -Arial_Bold.ttf 9 r 19.8615 31.9026 100 > -4.7632 28.0000 31.9026 -Arial_Bold.ttf 9 r 19.8615 31.9026 101 ® -10.3891 43.2294 42.4286 -Arial_Bold.ttf 9 r 19.8615 31.9026 102 © -10.2629 43.9589 42.4286 -Arial_Bold.ttf 9 r 19.8615 31.9026 103 ] -10.1272 15.2294 53.5411 -Arial_Bold.ttf 9 r 19.8615 31.9026 104 é -10.6721 29.4113 42.8961 -Arial_Bold.ttf 9 r 19.8615 31.9026 105 z 1.2294 26.7706 30.6732 -Arial_Bold.ttf 9 r 19.8615 31.9026 106 _ 37.3739 33.4654 5.8615 -Arial_Bold.ttf 9 r 19.8615 31.9026 107 ¥ -10.1571 30.2056 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 1 t 0.9486 18.1169 41.3810 -Arial_Bold.ttf 10 l 8.1385 42.0000 2 h -0.0417 27.7857 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 3 a 9.9186 28.8333 32.1169 -Arial_Bold.ttf 10 l 8.1385 42.0000 4 n 10.0605 27.7857 31.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 5 P 0.0000 32.0844 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 6 o 10.3438 31.0065 32.1169 -Arial_Bold.ttf 10 l 8.1385 42.0000 7 e 10.1665 29.4113 32.1169 -Arial_Bold.ttf 10 l 8.1385 42.0000 8 : 11.2971 8.1385 30.6732 -Arial_Bold.ttf 10 l 8.1385 42.0000 9 r 9.9141 19.8615 31.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 10 l 0.0774 8.1385 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 11 i -0.0476 8.1385 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 12 1 -0.1274 18.2359 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 13 | -0.1000 5.8615 54.5563 -Arial_Bold.ttf 10 l 8.1385 42.0000 14 N 0.1006 33.3463 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 15 f -0.5419 20.6948 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 16 g 10.2665 29.5628 43.6580 -Arial_Bold.ttf 10 l 8.1385 42.0000 17 d 0.0000 29.5628 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 18 W -0.0357 54.7706 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 19 s 10.0915 28.3333 32.1169 -Arial_Bold.ttf 10 l 8.1385 42.0000 20 c 10.0877 27.5000 32.1169 -Arial_Bold.ttf 10 l 8.1385 42.0000 21 u 11.1359 27.7857 30.8874 -Arial_Bold.ttf 10 l 8.1385 42.0000 22 3 0.0409 27.2857 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 23 ~ 15.9303 30.4589 10.8117 -Arial_Bold.ttf 10 l 8.1385 42.0000 24 # 0.0774 30.3874 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 25 O -0.7235 40.3420 43.4589 -Arial_Bold.ttf 10 l 8.1385 42.0000 26 ` -0.0955 12.7706 8.3203 -Arial_Bold.ttf 10 l 8.1385 42.0000 27 @ -0.0317 55.2706 56.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 28 F 0.0083 29.0152 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 29 S -0.8368 33.8615 43.4589 -Arial_Bold.ttf 10 l 8.1385 42.0000 30 p 10.1474 29.5628 43.4437 -Arial_Bold.ttf 10 l 8.1385 42.0000 31 “ 0.0500 22.4719 17.6883 -Arial_Bold.ttf 10 l 8.1385 42.0000 32 % -0.3014 44.9329 43.6580 -Arial_Bold.ttf 10 l 8.1385 42.0000 33 £ -0.2143 31.1883 42.4286 -Arial_Bold.ttf 10 l 8.1385 42.0000 34 . 33.7303 8.1385 8.1385 -Arial_Bold.ttf 10 l 8.1385 42.0000 35 2 -0.1496 27.2857 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 36 5 0.1331 28.0000 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 37 m 10.0103 44.6104 31.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 38 V -0.0917 38.4935 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 39 6 0.0350 27.2857 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 40 w 11.1435 45.5065 30.6732 -Arial_Bold.ttf 10 l 8.1385 42.0000 41 T -0.0143 33.2511 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 42 M 0.0917 39.5584 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 43 G -0.6431 39.1126 43.4589 -Arial_Bold.ttf 10 l 8.1385 42.0000 44 b -0.0714 29.5628 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 45 9 0.2502 27.2857 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 46 ; 11.3066 8.8680 40.4372 -Arial_Bold.ttf 10 l 8.1385 42.0000 47 D 0.1917 35.0909 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 48 L -0.0833 29.9113 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 49 y 11.2554 31.6883 42.4286 -Arial_Bold.ttf 10 l 8.1385 42.0000 50 ‘ -0.2645 8.8680 17.6883 -Arial_Bold.ttf 10 l 8.1385 42.0000 51 \ 0.0714 17.6883 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 52 R 0.0736 37.0498 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 53 < 5.6646 28.0000 31.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 54 4 0.2000 29.9589 41.7857 -Arial_Bold.ttf 10 l 8.1385 42.0000 55 8 -0.2000 27.2857 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 56 0 0.0365 27.2857 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 57 A 0.0357 40.5887 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 58 E 0.0083 32.0844 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 59 B -0.0266 35.0909 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 60 v 11.2911 31.6883 30.6732 -Arial_Bold.ttf 10 l 8.1385 42.0000 61 k -0.0371 28.5152 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 62 J -0.0038 26.9524 42.7294 -Arial_Bold.ttf 10 l 8.1385 42.0000 63 U 0.0500 33.3463 42.7294 -Arial_Bold.ttf 10 l 8.1385 42.0000 64 j 0.0774 15.2294 53.7554 -Arial_Bold.ttf 10 l 8.1385 42.0000 65 ( 0.0538 14.0000 53.5411 -Arial_Bold.ttf 10 l 8.1385 42.0000 66 7 0.3976 27.2857 41.7857 -Arial_Bold.ttf 10 l 8.1385 42.0000 67 § -0.1940 28.5152 54.7706 -Arial_Bold.ttf 10 l 8.1385 42.0000 68 $ -2.6920 27.7857 50.8680 -Arial_Bold.ttf 10 l 8.1385 42.0000 69 € -0.6021 31.6883 42.9437 -Arial_Bold.ttf 10 l 8.1385 42.0000 70 / -0.0917 17.6883 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 71 C -0.7771 36.6537 42.7294 -Arial_Bold.ttf 10 l 8.1385 42.0000 72 * -0.2645 19.7424 19.1320 -Arial_Bold.ttf 10 l 8.1385 42.0000 73 ” 0.0917 22.4719 17.6883 -Arial_Bold.ttf 10 l 8.1385 42.0000 74 ? -0.2083 30.4589 42.2143 -Arial_Bold.ttf 10 l 8.1385 42.0000 75 { -0.2545 19.6472 53.9697 -Arial_Bold.ttf 10 l 8.1385 42.0000 76 } -0.0726 19.6472 53.9697 -Arial_Bold.ttf 10 l 8.1385 42.0000 77 , 33.7348 8.8680 17.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 78 I 0.3002 8.1385 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 79 ° -0.0569 18.0844 18.0844 -Arial_Bold.ttf 10 l 8.1385 42.0000 80 K -0.2216 37.7641 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 81 H -0.1266 33.3463 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 82 q 9.9700 29.5628 43.4437 -Arial_Bold.ttf 10 l 8.1385 42.0000 83 & -0.2143 38.8117 42.4286 -Arial_Bold.ttf 10 l 8.1385 42.0000 84 ’ -0.1417 8.8680 17.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 85 [ -0.0083 15.2294 53.5411 -Arial_Bold.ttf 10 l 8.1385 42.0000 86 - 23.7141 15.7294 6.9091 -Arial_Bold.ttf 10 l 8.1385 42.0000 87 Y 0.0417 41.0563 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 88 Q -0.7840 41.7857 46.6472 -Arial_Bold.ttf 10 l 8.1385 42.0000 89 " -0.1631 21.5909 15.2294 -Arial_Bold.ttf 10 l 8.1385 42.0000 90 ! -0.0955 8.1385 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 91 x 11.3483 32.4177 30.6732 -Arial_Bold.ttf 10 l 8.1385 42.0000 92 ) -0.0857 14.0000 53.5411 -Arial_Bold.ttf 10 l 8.1385 42.0000 93 = 11.1859 29.2294 19.2835 -Arial_Bold.ttf 10 l 8.1385 42.0000 94 + 7.2424 28.8961 28.8961 -Arial_Bold.ttf 10 l 8.1385 42.0000 95 X 0.1071 38.9935 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 96 » 13.3991 26.9524 26.5563 -Arial_Bold.ttf 10 l 8.1385 42.0000 97 ' 0.0714 8.1385 15.2294 -Arial_Bold.ttf 10 l 8.1385 42.0000 98 ¢ -0.0857 28.7294 54.4372 -Arial_Bold.ttf 10 l 8.1385 42.0000 99 Z -0.0060 34.4805 42.0000 -Arial_Bold.ttf 10 l 8.1385 42.0000 100 > 5.4297 28.0000 31.9026 -Arial_Bold.ttf 10 l 8.1385 42.0000 101 ® -0.2500 43.2294 42.4286 -Arial_Bold.ttf 10 l 8.1385 42.0000 102 © -0.2395 43.9589 42.4286 -Arial_Bold.ttf 10 l 8.1385 42.0000 103 ] -0.2645 15.2294 53.5411 -Arial_Bold.ttf 10 l 8.1385 42.0000 104 é -0.4364 29.4113 42.8961 -Arial_Bold.ttf 10 l 8.1385 42.0000 105 z 11.3626 26.7706 30.6732 -Arial_Bold.ttf 10 l 8.1385 42.0000 106 _ 47.4282 33.4654 5.8615 -Arial_Bold.ttf 10 l 8.1385 42.0000 107 ¥ -0.0909 30.2056 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 1 t 0.7639 18.1169 41.3810 -Arial_Bold.ttf 11 i 8.1385 42.0000 2 h 0.1871 27.7857 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 3 a 10.0779 28.8333 32.1169 -Arial_Bold.ttf 11 i 8.1385 42.0000 4 n 10.2224 27.7857 31.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 5 P -0.0350 32.0844 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 6 o 10.0034 31.0065 32.1169 -Arial_Bold.ttf 11 i 8.1385 42.0000 7 e 10.0200 29.4113 32.1169 -Arial_Bold.ttf 11 i 8.1385 42.0000 8 : 11.3209 8.1385 30.6732 -Arial_Bold.ttf 11 i 8.1385 42.0000 9 r 10.0117 19.8615 31.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 10 l 0.0643 8.1385 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 11 i 0.1871 8.1385 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 12 1 0.0060 18.2359 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 13 | -0.0417 5.8615 54.5563 -Arial_Bold.ttf 11 i 8.1385 42.0000 14 N 0.1000 33.3463 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 15 f -0.3286 20.6948 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 16 g 10.3938 29.5628 43.6580 -Arial_Bold.ttf 11 i 8.1385 42.0000 17 d 0.0417 29.5628 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 18 W 0.0871 54.7706 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 19 s 10.3105 28.3333 32.1169 -Arial_Bold.ttf 11 i 8.1385 42.0000 20 c 9.9752 27.5000 32.1169 -Arial_Bold.ttf 11 i 8.1385 42.0000 21 u 11.3528 27.7857 30.8874 -Arial_Bold.ttf 11 i 8.1385 42.0000 22 3 -0.0305 27.2857 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 23 ~ 16.0672 30.4589 10.8117 -Arial_Bold.ttf 11 i 8.1385 42.0000 24 # -0.1274 30.3874 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 25 O -0.7392 40.3420 43.4589 -Arial_Bold.ttf 11 i 8.1385 42.0000 26 ` -0.1488 12.7706 8.3203 -Arial_Bold.ttf 11 i 8.1385 42.0000 27 @ -0.1907 55.2706 56.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 28 F -0.0181 29.0152 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 29 S -0.6437 33.8615 43.4589 -Arial_Bold.ttf 11 i 8.1385 42.0000 30 p 9.9343 29.5628 43.4437 -Arial_Bold.ttf 11 i 8.1385 42.0000 31 “ -0.1871 22.4719 17.6883 -Arial_Bold.ttf 11 i 8.1385 42.0000 32 % -0.1986 44.9329 43.6580 -Arial_Bold.ttf 11 i 8.1385 42.0000 33 £ -0.0310 31.1883 42.4286 -Arial_Bold.ttf 11 i 8.1385 42.0000 34 . 33.6508 8.1385 8.1385 -Arial_Bold.ttf 11 i 8.1385 42.0000 35 2 -0.0500 27.2857 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 36 5 0.1155 28.0000 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 37 m 10.1734 44.6104 31.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 38 V 0.0909 38.4935 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 39 6 0.1274 27.2857 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 40 w 11.4997 45.5065 30.6732 -Arial_Bold.ttf 11 i 8.1385 42.0000 41 T 0.0000 33.2511 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 42 M 0.0500 39.5584 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 43 G -0.7261 39.1126 43.4589 -Arial_Bold.ttf 11 i 8.1385 42.0000 44 b -0.1571 29.5628 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 45 9 0.0955 27.2857 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 46 ; 11.4406 8.8680 40.4372 -Arial_Bold.ttf 11 i 8.1385 42.0000 47 D -0.0903 35.0909 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 48 L 0.0455 29.9113 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 49 y 11.2352 31.6883 42.4286 -Arial_Bold.ttf 11 i 8.1385 42.0000 50 ‘ -0.0774 8.8680 17.6883 -Arial_Bold.ttf 11 i 8.1385 42.0000 51 \ 0.0714 17.6883 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 52 R 0.0560 37.0498 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 53 < 5.4856 28.0000 31.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 54 4 0.1369 29.9589 41.7857 -Arial_Bold.ttf 11 i 8.1385 42.0000 55 8 -0.1131 27.2857 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 56 0 -0.2600 27.2857 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 57 A -0.0240 40.5887 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 58 E 0.2333 32.0844 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 59 B -0.0060 35.0909 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 60 v 11.2292 31.6883 30.6732 -Arial_Bold.ttf 11 i 8.1385 42.0000 61 k -0.1462 28.5152 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 62 J -0.1214 26.9524 42.7294 -Arial_Bold.ttf 11 i 8.1385 42.0000 63 U 0.0440 33.3463 42.7294 -Arial_Bold.ttf 11 i 8.1385 42.0000 64 j -0.1623 15.2294 53.7554 -Arial_Bold.ttf 11 i 8.1385 42.0000 65 ( 0.0403 14.0000 53.5411 -Arial_Bold.ttf 11 i 8.1385 42.0000 66 7 0.3014 27.2857 41.7857 -Arial_Bold.ttf 11 i 8.1385 42.0000 67 § -0.2560 28.5152 54.7706 -Arial_Bold.ttf 11 i 8.1385 42.0000 68 $ -3.0936 27.7857 50.8680 -Arial_Bold.ttf 11 i 8.1385 42.0000 69 € -0.6697 31.6883 42.9437 -Arial_Bold.ttf 11 i 8.1385 42.0000 70 / 0.0326 17.6883 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 71 C -0.8068 36.6537 42.7294 -Arial_Bold.ttf 11 i 8.1385 42.0000 72 * 0.0357 19.7424 19.1320 -Arial_Bold.ttf 11 i 8.1385 42.0000 73 ” 0.0917 22.4719 17.6883 -Arial_Bold.ttf 11 i 8.1385 42.0000 74 ? -0.2883 30.4589 42.2143 -Arial_Bold.ttf 11 i 8.1385 42.0000 75 { -0.3969 19.6472 53.9697 -Arial_Bold.ttf 11 i 8.1385 42.0000 76 } -0.3226 19.6472 53.9697 -Arial_Bold.ttf 11 i 8.1385 42.0000 77 , 34.0031 8.8680 17.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 78 I 0.0500 8.1385 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 79 ° -0.3052 18.0844 18.0844 -Arial_Bold.ttf 11 i 8.1385 42.0000 80 K 0.0871 37.7641 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 81 H 0.0024 33.3463 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 82 q 10.0200 29.5628 43.4437 -Arial_Bold.ttf 11 i 8.1385 42.0000 83 & -0.1810 38.8117 42.4286 -Arial_Bold.ttf 11 i 8.1385 42.0000 84 ’ -0.1190 8.8680 17.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 85 [ 0.1690 15.2294 53.5411 -Arial_Bold.ttf 11 i 8.1385 42.0000 86 - 23.8617 15.7294 6.9091 -Arial_Bold.ttf 11 i 8.1385 42.0000 87 Y -0.0917 41.0563 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 88 Q -0.7437 41.7857 46.6472 -Arial_Bold.ttf 11 i 8.1385 42.0000 89 " 0.0857 21.5909 15.2294 -Arial_Bold.ttf 11 i 8.1385 42.0000 90 ! -0.0714 8.1385 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 91 x 11.3425 32.4177 30.6732 -Arial_Bold.ttf 11 i 8.1385 42.0000 92 ) 0.0038 14.0000 53.5411 -Arial_Bold.ttf 11 i 8.1385 42.0000 93 = 11.2378 29.2294 19.2835 -Arial_Bold.ttf 11 i 8.1385 42.0000 94 + 7.4055 28.8961 28.8961 -Arial_Bold.ttf 11 i 8.1385 42.0000 95 X 0.0083 38.9935 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 96 » 13.4311 26.9524 26.5563 -Arial_Bold.ttf 11 i 8.1385 42.0000 97 ' -0.0181 8.1385 15.2294 -Arial_Bold.ttf 11 i 8.1385 42.0000 98 ¢ -0.1417 28.7294 54.4372 -Arial_Bold.ttf 11 i 8.1385 42.0000 99 Z 0.0917 34.4805 42.0000 -Arial_Bold.ttf 11 i 8.1385 42.0000 100 > 5.4237 28.0000 31.9026 -Arial_Bold.ttf 11 i 8.1385 42.0000 101 ® -0.1940 43.2294 42.4286 -Arial_Bold.ttf 11 i 8.1385 42.0000 102 © -0.2188 43.9589 42.4286 -Arial_Bold.ttf 11 i 8.1385 42.0000 103 ] -0.0917 15.2294 53.5411 -Arial_Bold.ttf 11 i 8.1385 42.0000 104 é -0.8652 29.4113 42.8961 -Arial_Bold.ttf 11 i 8.1385 42.0000 105 z 11.1397 26.7706 30.6732 -Arial_Bold.ttf 11 i 8.1385 42.0000 106 _ 47.2820 33.4654 5.8615 -Arial_Bold.ttf 11 i 8.1385 42.0000 107 ¥ -0.0083 30.2056 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 1 t 0.8250 18.1169 41.3810 -Arial_Bold.ttf 12 1 18.2359 42.0000 2 h 0.0774 27.7857 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 3 a 9.9641 28.8333 32.1169 -Arial_Bold.ttf 12 1 18.2359 42.0000 4 n 9.8337 27.7857 31.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 5 P 0.1826 32.0844 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 6 o 9.8186 31.0065 32.1169 -Arial_Bold.ttf 12 1 18.2359 42.0000 7 e 10.1331 29.4113 32.1169 -Arial_Bold.ttf 12 1 18.2359 42.0000 8 : 11.4861 8.1385 30.6732 -Arial_Bold.ttf 12 1 18.2359 42.0000 9 r 10.0474 19.8615 31.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 10 l -0.1833 8.1385 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 11 i -0.1274 8.1385 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 12 1 -0.0038 18.2359 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 13 | 0.3085 5.8615 54.5563 -Arial_Bold.ttf 12 1 18.2359 42.0000 14 N 0.2476 33.3463 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 15 f -0.0377 20.6948 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 16 g 10.1359 29.5628 43.6580 -Arial_Bold.ttf 12 1 18.2359 42.0000 17 d 0.2169 29.5628 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 18 W -0.1333 54.7706 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 19 s 10.0772 28.3333 32.1169 -Arial_Bold.ttf 12 1 18.2359 42.0000 20 c 9.8952 27.5000 32.1169 -Arial_Bold.ttf 12 1 18.2359 42.0000 21 u 11.2614 27.7857 30.8874 -Arial_Bold.ttf 12 1 18.2359 42.0000 22 3 -0.2333 27.2857 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 23 ~ 16.0148 30.4589 10.8117 -Arial_Bold.ttf 12 1 18.2359 42.0000 24 # 0.0826 30.3874 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 25 O -0.8902 40.3420 43.4589 -Arial_Bold.ttf 12 1 18.2359 42.0000 26 ` -0.3107 12.7706 8.3203 -Arial_Bold.ttf 12 1 18.2359 42.0000 27 @ -0.2500 55.2706 56.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 28 F 0.1864 29.0152 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 29 S -0.4826 33.8615 43.4589 -Arial_Bold.ttf 12 1 18.2359 42.0000 30 p 9.9162 29.5628 43.4437 -Arial_Bold.ttf 12 1 18.2359 42.0000 31 “ -0.3381 22.4719 17.6883 -Arial_Bold.ttf 12 1 18.2359 42.0000 32 % 0.1562 44.9329 43.6580 -Arial_Bold.ttf 12 1 18.2359 42.0000 33 £ -0.3948 31.1883 42.4286 -Arial_Bold.ttf 12 1 18.2359 42.0000 34 . 33.9329 8.1385 8.1385 -Arial_Bold.ttf 12 1 18.2359 42.0000 35 2 -0.1931 27.2857 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 36 5 0.4123 28.0000 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 37 m 10.2845 44.6104 31.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 38 V -0.1417 38.4935 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 39 6 0.0462 27.2857 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 40 w 11.4245 45.5065 30.6732 -Arial_Bold.ttf 12 1 18.2359 42.0000 41 T 0.0631 33.2511 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 42 M -0.0181 39.5584 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 43 G -1.1485 39.1126 43.4589 -Arial_Bold.ttf 12 1 18.2359 42.0000 44 b -0.3600 29.5628 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 45 9 -0.0143 27.2857 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 46 ; 11.5518 8.8680 40.4372 -Arial_Bold.ttf 12 1 18.2359 42.0000 47 D -0.0962 35.0909 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 48 L 0.0038 29.9113 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 49 y 11.6511 31.6883 42.4286 -Arial_Bold.ttf 12 1 18.2359 42.0000 50 ‘ 0.1593 8.8680 17.6883 -Arial_Bold.ttf 12 1 18.2359 42.0000 51 \ 0.0597 17.6883 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 52 R 0.0129 37.0498 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 53 < 5.6116 28.0000 31.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 54 4 0.2000 29.9589 41.7857 -Arial_Bold.ttf 12 1 18.2359 42.0000 55 8 -0.0879 27.2857 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 56 0 0.1131 27.2857 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 57 A -0.3347 40.5887 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 58 E -0.1728 32.0844 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 59 B 0.1721 35.0909 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 60 v 11.3268 31.6883 30.6732 -Arial_Bold.ttf 12 1 18.2359 42.0000 61 k -0.1417 28.5152 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 62 J -0.3048 26.9524 42.7294 -Arial_Bold.ttf 12 1 18.2359 42.0000 63 U 0.1298 33.3463 42.7294 -Arial_Bold.ttf 12 1 18.2359 42.0000 64 j 0.0514 15.2294 53.7554 -Arial_Bold.ttf 12 1 18.2359 42.0000 65 ( -0.0893 14.0000 53.5411 -Arial_Bold.ttf 12 1 18.2359 42.0000 66 7 0.1786 27.2857 41.7857 -Arial_Bold.ttf 12 1 18.2359 42.0000 67 § -0.5873 28.5152 54.7706 -Arial_Bold.ttf 12 1 18.2359 42.0000 68 $ -3.0391 27.7857 50.8680 -Arial_Bold.ttf 12 1 18.2359 42.0000 69 € -0.8666 31.6883 42.9437 -Arial_Bold.ttf 12 1 18.2359 42.0000 70 / 0.0955 17.6883 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 71 C -0.5385 36.6537 42.7294 -Arial_Bold.ttf 12 1 18.2359 42.0000 72 * -0.1917 19.7424 19.1320 -Arial_Bold.ttf 12 1 18.2359 42.0000 73 ” 0.2600 22.4719 17.6883 -Arial_Bold.ttf 12 1 18.2359 42.0000 74 ? -0.5137 30.4589 42.2143 -Arial_Bold.ttf 12 1 18.2359 42.0000 75 { -0.0966 19.6472 53.9697 -Arial_Bold.ttf 12 1 18.2359 42.0000 76 } -0.3357 19.6472 53.9697 -Arial_Bold.ttf 12 1 18.2359 42.0000 77 , 33.7615 8.8680 17.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 78 I -0.2028 8.1385 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 79 ° -0.0143 18.0844 18.0844 -Arial_Bold.ttf 12 1 18.2359 42.0000 80 K 0.0357 37.7641 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 81 H 0.0417 33.3463 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 82 q 10.0498 29.5628 43.4437 -Arial_Bold.ttf 12 1 18.2359 42.0000 83 & 0.0359 38.8117 42.4286 -Arial_Bold.ttf 12 1 18.2359 42.0000 84 ’ -0.1000 8.8680 17.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 85 [ 0.0121 15.2294 53.5411 -Arial_Bold.ttf 12 1 18.2359 42.0000 86 - 23.7117 15.7294 6.9091 -Arial_Bold.ttf 12 1 18.2359 42.0000 87 Y -0.3738 41.0563 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 88 Q -0.5469 41.7857 46.6472 -Arial_Bold.ttf 12 1 18.2359 42.0000 89 " -0.0560 21.5909 15.2294 -Arial_Bold.ttf 12 1 18.2359 42.0000 90 ! 0.0260 8.1385 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 91 x 11.3606 32.4177 30.6732 -Arial_Bold.ttf 12 1 18.2359 42.0000 92 ) 0.0621 14.0000 53.5411 -Arial_Bold.ttf 12 1 18.2359 42.0000 93 = 11.2885 29.2294 19.2835 -Arial_Bold.ttf 12 1 18.2359 42.0000 94 + 7.0591 28.8961 28.8961 -Arial_Bold.ttf 12 1 18.2359 42.0000 95 X -0.1623 38.9935 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 96 » 13.3073 26.9524 26.5563 -Arial_Bold.ttf 12 1 18.2359 42.0000 97 ' 0.3328 8.1385 15.2294 -Arial_Bold.ttf 12 1 18.2359 42.0000 98 ¢ 0.1333 28.7294 54.4372 -Arial_Bold.ttf 12 1 18.2359 42.0000 99 Z 0.0917 34.4805 42.0000 -Arial_Bold.ttf 12 1 18.2359 42.0000 100 > 5.5368 28.0000 31.9026 -Arial_Bold.ttf 12 1 18.2359 42.0000 101 ® -0.3409 43.2294 42.4286 -Arial_Bold.ttf 12 1 18.2359 42.0000 102 © 0.1145 43.9589 42.4286 -Arial_Bold.ttf 12 1 18.2359 42.0000 103 ] 0.0000 15.2294 53.5411 -Arial_Bold.ttf 12 1 18.2359 42.0000 104 é -1.1515 29.4113 42.8961 -Arial_Bold.ttf 12 1 18.2359 42.0000 105 z 11.2697 26.7706 30.6732 -Arial_Bold.ttf 12 1 18.2359 42.0000 106 _ 47.5563 33.4654 5.8615 -Arial_Bold.ttf 12 1 18.2359 42.0000 107 ¥ 0.0357 30.2056 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 1 t 0.9881 18.1169 41.3810 -Arial_Bold.ttf 13 | 5.8615 54.5563 2 h -0.0917 27.7857 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 3 a 10.0057 28.8333 32.1169 -Arial_Bold.ttf 13 | 5.8615 54.5563 4 n 9.9922 27.7857 31.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 5 P 0.0045 32.0844 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 6 o 10.3345 31.0065 32.1169 -Arial_Bold.ttf 13 | 5.8615 54.5563 7 e 10.1109 29.4113 32.1169 -Arial_Bold.ttf 13 | 5.8615 54.5563 8 : 11.2911 8.1385 30.6732 -Arial_Bold.ttf 13 | 5.8615 54.5563 9 r 10.0534 19.8615 31.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 10 l 0.0955 8.1385 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 11 i -0.2571 8.1385 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 12 1 -0.1060 18.2359 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 13 | -0.2750 5.8615 54.5563 -Arial_Bold.ttf 13 | 5.8615 54.5563 14 N -0.2205 33.3463 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 15 f -0.2695 20.6948 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 16 g 10.0186 29.5628 43.6580 -Arial_Bold.ttf 13 | 5.8615 54.5563 17 d 0.1326 29.5628 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 18 W -0.1014 54.7706 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 19 s 10.3855 28.3333 32.1169 -Arial_Bold.ttf 13 | 5.8615 54.5563 20 c 9.9208 27.5000 32.1169 -Arial_Bold.ttf 13 | 5.8615 54.5563 21 u 11.2689 27.7857 30.8874 -Arial_Bold.ttf 13 | 5.8615 54.5563 22 3 -0.1833 27.2857 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 23 ~ 15.8003 30.4589 10.8117 -Arial_Bold.ttf 13 | 5.8615 54.5563 24 # 0.1274 30.3874 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 25 O -0.4566 40.3420 43.4589 -Arial_Bold.ttf 13 | 5.8615 54.5563 26 ` 0.1788 12.7706 8.3203 -Arial_Bold.ttf 13 | 5.8615 54.5563 27 @ -0.0726 55.2706 56.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 28 F 0.3321 29.0152 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 29 S -0.7652 33.8615 43.4589 -Arial_Bold.ttf 13 | 5.8615 54.5563 30 p 10.3081 29.5628 43.4437 -Arial_Bold.ttf 13 | 5.8615 54.5563 31 “ -0.0214 22.4719 17.6883 -Arial_Bold.ttf 13 | 5.8615 54.5563 32 % -0.2143 44.9329 43.6580 -Arial_Bold.ttf 13 | 5.8615 54.5563 33 £ -0.1903 31.1883 42.4286 -Arial_Bold.ttf 13 | 5.8615 54.5563 34 . 33.8531 8.1385 8.1385 -Arial_Bold.ttf 13 | 5.8615 54.5563 35 2 -0.0766 27.2857 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 36 5 0.1226 28.0000 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 37 m 9.8843 44.6104 31.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 38 V 0.0060 38.4935 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 39 6 -0.1728 27.2857 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 40 w 11.3768 45.5065 30.6732 -Arial_Bold.ttf 13 | 5.8615 54.5563 41 T 0.1131 33.2511 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 42 M -0.1619 39.5584 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 43 G -0.6975 39.1126 43.4589 -Arial_Bold.ttf 13 | 5.8615 54.5563 44 b -0.0417 29.5628 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 45 9 -0.1274 27.2857 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 46 ; 11.0792 8.8680 40.4372 -Arial_Bold.ttf 13 | 5.8615 54.5563 47 D 0.0500 35.0909 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 48 L 0.1052 29.9113 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 49 y 11.3268 31.6883 42.4286 -Arial_Bold.ttf 13 | 5.8615 54.5563 50 ‘ 0.0500 8.8680 17.6883 -Arial_Bold.ttf 13 | 5.8615 54.5563 51 \ -0.0129 17.6883 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 52 R 0.0143 37.0498 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 53 < 5.3009 28.0000 31.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 54 4 0.2143 29.9589 41.7857 -Arial_Bold.ttf 13 | 5.8615 54.5563 55 8 0.1333 27.2857 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 56 0 0.0917 27.2857 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 57 A 0.1585 40.5887 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 58 E 0.0357 32.0844 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 59 B 0.1183 35.0909 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 60 v 11.4185 31.6883 30.6732 -Arial_Bold.ttf 13 | 5.8615 54.5563 61 k 0.0143 28.5152 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 62 J 0.0871 26.9524 42.7294 -Arial_Bold.ttf 13 | 5.8615 54.5563 63 U -0.1326 33.3463 42.7294 -Arial_Bold.ttf 13 | 5.8615 54.5563 64 j -0.1000 15.2294 53.7554 -Arial_Bold.ttf 13 | 5.8615 54.5563 65 ( -0.1690 14.0000 53.5411 -Arial_Bold.ttf 13 | 5.8615 54.5563 66 7 0.3766 27.2857 41.7857 -Arial_Bold.ttf 13 | 5.8615 54.5563 67 § -0.3060 28.5152 54.7706 -Arial_Bold.ttf 13 | 5.8615 54.5563 68 $ -2.8172 27.7857 50.8680 -Arial_Bold.ttf 13 | 5.8615 54.5563 69 € -0.7287 31.6883 42.9437 -Arial_Bold.ttf 13 | 5.8615 54.5563 70 / -0.0357 17.6883 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 71 C -0.6021 36.6537 42.7294 -Arial_Bold.ttf 13 | 5.8615 54.5563 72 * -0.0643 19.7424 19.1320 -Arial_Bold.ttf 13 | 5.8615 54.5563 73 ” -0.1274 22.4719 17.6883 -Arial_Bold.ttf 13 | 5.8615 54.5563 74 ? 0.1085 30.4589 42.2143 -Arial_Bold.ttf 13 | 5.8615 54.5563 75 { -0.1845 19.6472 53.9697 -Arial_Bold.ttf 13 | 5.8615 54.5563 76 } -0.2226 19.6472 53.9697 -Arial_Bold.ttf 13 | 5.8615 54.5563 77 , 33.5008 8.8680 17.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 78 I -0.0714 8.1385 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 79 ° -0.1583 18.0844 18.0844 -Arial_Bold.ttf 13 | 5.8615 54.5563 80 K 0.0538 37.7641 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 81 H -0.1631 33.3463 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 82 q 10.1474 29.5628 43.4437 -Arial_Bold.ttf 13 | 5.8615 54.5563 83 & 0.0107 38.8117 42.4286 -Arial_Bold.ttf 13 | 5.8615 54.5563 84 ’ 0.0774 8.8680 17.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 85 [ 0.0417 15.2294 53.5411 -Arial_Bold.ttf 13 | 5.8615 54.5563 86 - 23.8595 15.7294 6.9091 -Arial_Bold.ttf 13 | 5.8615 54.5563 87 Y -0.0357 41.0563 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 88 Q -0.6378 41.7857 46.6472 -Arial_Bold.ttf 13 | 5.8615 54.5563 89 " -0.0714 21.5909 15.2294 -Arial_Bold.ttf 13 | 5.8615 54.5563 90 ! 0.3881 8.1385 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 91 x 11.7142 32.4177 30.6732 -Arial_Bold.ttf 13 | 5.8615 54.5563 92 ) -0.0774 14.0000 53.5411 -Arial_Bold.ttf 13 | 5.8615 54.5563 93 = 11.5140 29.2294 19.2835 -Arial_Bold.ttf 13 | 5.8615 54.5563 94 + 7.2853 28.8961 28.8961 -Arial_Bold.ttf 13 | 5.8615 54.5563 95 X -0.1274 38.9935 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 96 » 13.4491 26.9524 26.5563 -Arial_Bold.ttf 13 | 5.8615 54.5563 97 ' 0.0500 8.1385 15.2294 -Arial_Bold.ttf 13 | 5.8615 54.5563 98 ¢ 0.1000 28.7294 54.4372 -Arial_Bold.ttf 13 | 5.8615 54.5563 99 Z 0.2190 34.4805 42.0000 -Arial_Bold.ttf 13 | 5.8615 54.5563 100 > 5.4890 28.0000 31.9026 -Arial_Bold.ttf 13 | 5.8615 54.5563 101 ® -0.2060 43.2294 42.4286 -Arial_Bold.ttf 13 | 5.8615 54.5563 102 © -0.3333 43.9589 42.4286 -Arial_Bold.ttf 13 | 5.8615 54.5563 103 ] -0.0714 15.2294 53.5411 -Arial_Bold.ttf 13 | 5.8615 54.5563 104 é -0.6104 29.4113 42.8961 -Arial_Bold.ttf 13 | 5.8615 54.5563 105 z 11.3268 26.7706 30.6732 -Arial_Bold.ttf 13 | 5.8615 54.5563 106 _ 47.4654 33.4654 5.8615 -Arial_Bold.ttf 13 | 5.8615 54.5563 107 ¥ 0.1274 30.2056 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 1 t 1.1347 18.1169 41.3810 -Arial_Bold.ttf 14 N 33.3463 42.0000 2 h -0.0766 27.7857 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 3 a 9.9588 28.8333 32.1169 -Arial_Bold.ttf 14 N 33.3463 42.0000 4 n 10.2643 27.7857 31.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 5 P -0.0143 32.0844 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 6 o 10.1557 31.0065 32.1169 -Arial_Bold.ttf 14 N 33.3463 42.0000 7 e 9.6648 29.4113 32.1169 -Arial_Bold.ttf 14 N 33.3463 42.0000 8 : 11.1423 8.1385 30.6732 -Arial_Bold.ttf 14 N 33.3463 42.0000 9 r 10.0222 19.8615 31.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 10 l 0.2183 8.1385 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 11 i -0.0022 8.1385 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 12 1 0.0131 18.2359 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 13 | 0.1738 5.8615 54.5563 -Arial_Bold.ttf 14 N 33.3463 42.0000 14 N 0.1393 33.3463 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 15 f -0.6211 20.6948 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 16 g 9.9926 29.5628 43.6580 -Arial_Bold.ttf 14 N 33.3463 42.0000 17 d -0.1085 29.5628 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 18 W 0.1181 54.7706 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 19 s 9.9472 28.3333 32.1169 -Arial_Bold.ttf 14 N 33.3463 42.0000 20 c 10.0363 27.5000 32.1169 -Arial_Bold.ttf 14 N 33.3463 42.0000 21 u 11.2644 27.7857 30.8874 -Arial_Bold.ttf 14 N 33.3463 42.0000 22 3 0.1807 27.2857 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 23 ~ 15.9462 30.4589 10.8117 -Arial_Bold.ttf 14 N 33.3463 42.0000 24 # 0.0538 30.3874 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 25 O -0.4850 40.3420 43.4589 -Arial_Bold.ttf 14 N 33.3463 42.0000 26 ` 0.1676 12.7706 8.3203 -Arial_Bold.ttf 14 N 33.3463 42.0000 27 @ -0.2669 55.2706 56.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 28 F 0.0395 29.0152 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 29 S -0.8404 33.8615 43.4589 -Arial_Bold.ttf 14 N 33.3463 42.0000 30 p 10.3074 29.5628 43.4437 -Arial_Bold.ttf 14 N 33.3463 42.0000 31 “ 0.1079 22.4719 17.6883 -Arial_Bold.ttf 14 N 33.3463 42.0000 32 % -0.1095 44.9329 43.6580 -Arial_Bold.ttf 14 N 33.3463 42.0000 33 £ -0.1635 31.1883 42.4286 -Arial_Bold.ttf 14 N 33.3463 42.0000 34 . 33.7348 8.1385 8.1385 -Arial_Bold.ttf 14 N 33.3463 42.0000 35 2 0.0631 27.2857 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 36 5 0.4833 28.0000 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 37 m 10.1748 44.6104 31.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 38 V 0.0597 38.4935 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 39 6 -0.0333 27.2857 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 40 w 11.2314 45.5065 30.6732 -Arial_Bold.ttf 14 N 33.3463 42.0000 41 T 0.0728 33.2511 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 42 M -0.1412 39.5584 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 43 G -1.2108 39.1126 43.4589 -Arial_Bold.ttf 14 N 33.3463 42.0000 44 b -0.3010 29.5628 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 45 9 0.0143 27.2857 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 46 ; 11.1235 8.8680 40.4372 -Arial_Bold.ttf 14 N 33.3463 42.0000 47 D -0.2431 35.0909 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 48 L -0.1917 29.9113 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 49 y 11.1397 31.6883 42.4286 -Arial_Bold.ttf 14 N 33.3463 42.0000 50 ‘ 0.1135 8.8680 17.6883 -Arial_Bold.ttf 14 N 33.3463 42.0000 51 \ 0.0345 17.6883 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 52 R -0.3183 37.0498 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 53 < 5.4773 28.0000 31.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 54 4 0.3181 29.9589 41.7857 -Arial_Bold.ttf 14 N 33.3463 42.0000 55 8 -0.0069 27.2857 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 56 0 -0.2417 27.2857 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 57 A 0.1386 40.5887 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 58 E 0.0286 32.0844 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 59 B -0.1931 35.0909 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 60 v 11.4703 31.6883 30.6732 -Arial_Bold.ttf 14 N 33.3463 42.0000 61 k 0.0798 28.5152 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 62 J -0.0357 26.9524 42.7294 -Arial_Bold.ttf 14 N 33.3463 42.0000 63 U 0.0469 33.3463 42.7294 -Arial_Bold.ttf 14 N 33.3463 42.0000 64 j 0.1690 15.2294 53.7554 -Arial_Bold.ttf 14 N 33.3463 42.0000 65 ( -0.1669 14.0000 53.5411 -Arial_Bold.ttf 14 N 33.3463 42.0000 66 7 0.4176 27.2857 41.7857 -Arial_Bold.ttf 14 N 33.3463 42.0000 67 § -0.2780 28.5152 54.7706 -Arial_Bold.ttf 14 N 33.3463 42.0000 68 $ -3.2519 27.7857 50.8680 -Arial_Bold.ttf 14 N 33.3463 42.0000 69 € -0.9282 31.6883 42.9437 -Arial_Bold.ttf 14 N 33.3463 42.0000 70 / -0.1417 17.6883 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 71 C -0.7449 36.6537 42.7294 -Arial_Bold.ttf 14 N 33.3463 42.0000 72 * -0.0436 19.7424 19.1320 -Arial_Bold.ttf 14 N 33.3463 42.0000 73 ” -0.1000 22.4719 17.6883 -Arial_Bold.ttf 14 N 33.3463 42.0000 74 ? -0.2545 30.4589 42.2143 -Arial_Bold.ttf 14 N 33.3463 42.0000 75 { -0.1869 19.6472 53.9697 -Arial_Bold.ttf 14 N 33.3463 42.0000 76 } -0.1155 19.6472 53.9697 -Arial_Bold.ttf 14 N 33.3463 42.0000 77 , 33.5196 8.8680 17.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 78 I -0.4288 8.1385 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 79 ° -0.0712 18.0844 18.0844 -Arial_Bold.ttf 14 N 33.3463 42.0000 80 K 0.0417 37.7641 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 81 H -0.0066 33.3463 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 82 q 10.3119 29.5628 43.4437 -Arial_Bold.ttf 14 N 33.3463 42.0000 83 & -0.2833 38.8117 42.4286 -Arial_Bold.ttf 14 N 33.3463 42.0000 84 ’ -0.2397 8.8680 17.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 85 [ -0.3838 15.2294 53.5411 -Arial_Bold.ttf 14 N 33.3463 42.0000 86 - 23.6337 15.7294 6.9091 -Arial_Bold.ttf 14 N 33.3463 42.0000 87 Y -0.0762 41.0563 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 88 Q -0.7471 41.7857 46.6472 -Arial_Bold.ttf 14 N 33.3463 42.0000 89 " 0.0871 21.5909 15.2294 -Arial_Bold.ttf 14 N 33.3463 42.0000 90 ! 0.4614 8.1385 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 91 x 11.2054 32.4177 30.6732 -Arial_Bold.ttf 14 N 33.3463 42.0000 92 ) -0.1008 14.0000 53.5411 -Arial_Bold.ttf 14 N 33.3463 42.0000 93 = 11.5181 29.2294 19.2835 -Arial_Bold.ttf 14 N 33.3463 42.0000 94 + 7.3557 28.8961 28.8961 -Arial_Bold.ttf 14 N 33.3463 42.0000 95 X -0.0409 38.9935 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 96 » 13.3932 26.9524 26.5563 -Arial_Bold.ttf 14 N 33.3463 42.0000 97 ' 0.1319 8.1385 15.2294 -Arial_Bold.ttf 14 N 33.3463 42.0000 98 ¢ 0.1917 28.7294 54.4372 -Arial_Bold.ttf 14 N 33.3463 42.0000 99 Z -0.3062 34.4805 42.0000 -Arial_Bold.ttf 14 N 33.3463 42.0000 100 > 5.4011 28.0000 31.9026 -Arial_Bold.ttf 14 N 33.3463 42.0000 101 ® 0.0768 43.2294 42.4286 -Arial_Bold.ttf 14 N 33.3463 42.0000 102 © -0.1853 43.9589 42.4286 -Arial_Bold.ttf 14 N 33.3463 42.0000 103 ] 0.1048 15.2294 53.5411 -Arial_Bold.ttf 14 N 33.3463 42.0000 104 é -0.2271 29.4113 42.8961 -Arial_Bold.ttf 14 N 33.3463 42.0000 105 z 11.1338 26.7706 30.6732 -Arial_Bold.ttf 14 N 33.3463 42.0000 106 _ 47.3939 33.4654 5.8615 -Arial_Bold.ttf 14 N 33.3463 42.0000 107 ¥ 0.2010 30.2056 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 1 t 1.0490 18.1169 41.3810 -Arial_Bold.ttf 15 f 20.6948 42.2143 2 h 0.2597 27.7857 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 3 a 10.3291 28.8333 32.1169 -Arial_Bold.ttf 15 f 20.6948 42.2143 4 n 10.0494 27.7857 31.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 5 P 0.2955 32.0844 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 6 o 10.1641 31.0065 32.1169 -Arial_Bold.ttf 15 f 20.6948 42.2143 7 e 10.2486 29.4113 32.1169 -Arial_Bold.ttf 15 f 20.6948 42.2143 8 : 11.4697 8.1385 30.6732 -Arial_Bold.ttf 15 f 20.6948 42.2143 9 r 10.1926 19.8615 31.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 10 l -0.0897 8.1385 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 11 i 0.0869 8.1385 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 12 1 0.1083 18.2359 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 13 | 0.1226 5.8615 54.5563 -Arial_Bold.ttf 15 f 20.6948 42.2143 14 N 0.2060 33.3463 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 15 f -0.1833 20.6948 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 16 g 10.3519 29.5628 43.6580 -Arial_Bold.ttf 15 f 20.6948 42.2143 17 d -0.2298 29.5628 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 18 W 0.2629 54.7706 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 19 s 10.0972 28.3333 32.1169 -Arial_Bold.ttf 15 f 20.6948 42.2143 20 c 10.5905 27.5000 32.1169 -Arial_Bold.ttf 15 f 20.6948 42.2143 21 u 11.6282 27.7857 30.8874 -Arial_Bold.ttf 15 f 20.6948 42.2143 22 3 0.3326 27.2857 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 23 ~ 16.2005 30.4589 10.8117 -Arial_Bold.ttf 15 f 20.6948 42.2143 24 # 0.2417 30.3874 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 25 O -0.3832 40.3420 43.4589 -Arial_Bold.ttf 15 f 20.6948 42.2143 26 ` 0.3052 12.7706 8.3203 -Arial_Bold.ttf 15 f 20.6948 42.2143 27 @ -0.0500 55.2706 56.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 28 F 0.1057 29.0152 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 29 S -0.7834 33.8615 43.4589 -Arial_Bold.ttf 15 f 20.6948 42.2143 30 p 10.3819 29.5628 43.4437 -Arial_Bold.ttf 15 f 20.6948 42.2143 31 “ 0.1050 22.4719 17.6883 -Arial_Bold.ttf 15 f 20.6948 42.2143 32 % -0.0143 44.9329 43.6580 -Arial_Bold.ttf 15 f 20.6948 42.2143 33 £ 0.0786 31.1883 42.4286 -Arial_Bold.ttf 15 f 20.6948 42.2143 34 . 34.0057 8.1385 8.1385 -Arial_Bold.ttf 15 f 20.6948 42.2143 35 2 0.1831 27.2857 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 36 5 0.5391 28.0000 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 37 m 10.3286 44.6104 31.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 38 V 0.2805 38.4935 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 39 6 0.0440 27.2857 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 40 w 11.7745 45.5065 30.6732 -Arial_Bold.ttf 15 f 20.6948 42.2143 41 T -0.0540 33.2511 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 42 M 0.2324 39.5584 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 43 G -0.3021 39.1126 43.4589 -Arial_Bold.ttf 15 f 20.6948 42.2143 44 b 0.5683 29.5628 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 45 9 0.1748 27.2857 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 46 ; 11.7899 8.8680 40.4372 -Arial_Bold.ttf 15 f 20.6948 42.2143 47 D 0.4550 35.0909 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 48 L 0.3157 29.9113 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 49 y 11.5411 31.6883 42.4286 -Arial_Bold.ttf 15 f 20.6948 42.2143 50 ‘ 0.1083 8.8680 17.6883 -Arial_Bold.ttf 15 f 20.6948 42.2143 51 \ 0.3060 17.6883 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 52 R -0.0690 37.0498 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 53 < 5.6030 28.0000 31.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 54 4 0.2831 29.9589 41.7857 -Arial_Bold.ttf 15 f 20.6948 42.2143 55 8 0.2560 27.2857 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 56 0 0.1286 27.2857 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 57 A 0.3560 40.5887 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 58 E 0.4083 32.0844 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 59 B -0.0183 35.0909 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 60 v 11.5709 31.6883 30.6732 -Arial_Bold.ttf 15 f 20.6948 42.2143 61 k 0.3333 28.5152 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 62 J 0.3492 26.9524 42.7294 -Arial_Bold.ttf 15 f 20.6948 42.2143 63 U 0.2643 33.3463 42.7294 -Arial_Bold.ttf 15 f 20.6948 42.2143 64 j 0.1726 15.2294 53.7554 -Arial_Bold.ttf 15 f 20.6948 42.2143 65 ( 0.0302 14.0000 53.5411 -Arial_Bold.ttf 15 f 20.6948 42.2143 66 7 0.4060 27.2857 41.7857 -Arial_Bold.ttf 15 f 20.6948 42.2143 67 § 0.1357 28.5152 54.7706 -Arial_Bold.ttf 15 f 20.6948 42.2143 68 $ -2.8422 27.7857 50.8680 -Arial_Bold.ttf 15 f 20.6948 42.2143 69 € -0.4521 31.6883 42.9437 -Arial_Bold.ttf 15 f 20.6948 42.2143 70 / 0.1415 17.6883 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 71 C -0.6152 36.6537 42.7294 -Arial_Bold.ttf 15 f 20.6948 42.2143 72 * 0.3014 19.7424 19.1320 -Arial_Bold.ttf 15 f 20.6948 42.2143 73 ” 0.0847 22.4719 17.6883 -Arial_Bold.ttf 15 f 20.6948 42.2143 74 ? -0.0008 30.4589 42.2143 -Arial_Bold.ttf 15 f 20.6948 42.2143 75 { -0.0909 19.6472 53.9697 -Arial_Bold.ttf 15 f 20.6948 42.2143 76 } 0.0274 19.6472 53.9697 -Arial_Bold.ttf 15 f 20.6948 42.2143 77 , 34.2753 8.8680 17.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 78 I 0.1740 8.1385 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 79 ° -0.1417 18.0844 18.0844 -Arial_Bold.ttf 15 f 20.6948 42.2143 80 K 0.0719 37.7641 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 81 H 0.1845 33.3463 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 82 q 10.3391 29.5628 43.4437 -Arial_Bold.ttf 15 f 20.6948 42.2143 83 & -0.0623 38.8117 42.4286 -Arial_Bold.ttf 15 f 20.6948 42.2143 84 ’ 0.2681 8.8680 17.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 85 [ 0.3060 15.2294 53.5411 -Arial_Bold.ttf 15 f 20.6948 42.2143 86 - 24.4286 15.7294 6.9091 -Arial_Bold.ttf 15 f 20.6948 42.2143 87 Y 0.2143 41.0563 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 88 Q -0.4568 41.7857 46.6472 -Arial_Bold.ttf 15 f 20.6948 42.2143 89 " 0.1462 21.5909 15.2294 -Arial_Bold.ttf 15 f 20.6948 42.2143 90 ! 0.0915 8.1385 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 91 x 11.6602 32.4177 30.6732 -Arial_Bold.ttf 15 f 20.6948 42.2143 92 ) 0.2643 14.0000 53.5411 -Arial_Bold.ttf 15 f 20.6948 42.2143 93 = 11.7797 29.2294 19.2835 -Arial_Bold.ttf 15 f 20.6948 42.2143 94 + 7.3293 28.8961 28.8961 -Arial_Bold.ttf 15 f 20.6948 42.2143 95 X 0.2895 38.9935 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 96 » 13.5718 26.9524 26.5563 -Arial_Bold.ttf 15 f 20.6948 42.2143 97 ' 0.2857 8.1385 15.2294 -Arial_Bold.ttf 15 f 20.6948 42.2143 98 ¢ 0.3060 28.7294 54.4372 -Arial_Bold.ttf 15 f 20.6948 42.2143 99 Z 0.0415 34.4805 42.0000 -Arial_Bold.ttf 15 f 20.6948 42.2143 100 > 5.7427 28.0000 31.9026 -Arial_Bold.ttf 15 f 20.6948 42.2143 101 ® 0.3873 43.2294 42.4286 -Arial_Bold.ttf 15 f 20.6948 42.2143 102 © -0.1690 43.9589 42.4286 -Arial_Bold.ttf 15 f 20.6948 42.2143 103 ] 0.2143 15.2294 53.5411 -Arial_Bold.ttf 15 f 20.6948 42.2143 104 é -0.7282 29.4113 42.8961 -Arial_Bold.ttf 15 f 20.6948 42.2143 105 z 11.6411 26.7706 30.6732 -Arial_Bold.ttf 15 f 20.6948 42.2143 106 _ 47.8213 33.4654 5.8615 -Arial_Bold.ttf 15 f 20.6948 42.2143 107 ¥ 0.3254 30.2056 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 1 t -9.1724 18.1169 41.3810 -Arial_Bold.ttf 16 g 29.5628 43.6580 2 h -10.0331 27.7857 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 3 a -0.0272 28.8333 32.1169 -Arial_Bold.ttf 16 g 29.5628 43.6580 4 n 0.1617 27.7857 31.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 5 P -9.9700 32.0844 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 6 o -0.1048 31.0065 32.1169 -Arial_Bold.ttf 16 g 29.5628 43.6580 7 e 0.4288 29.4113 32.1169 -Arial_Bold.ttf 16 g 29.5628 43.6580 8 : 1.2911 8.1385 30.6732 -Arial_Bold.ttf 16 g 29.5628 43.6580 9 r -0.1236 19.8615 31.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 10 l -10.1079 8.1385 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 11 i -10.0752 8.1385 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 12 1 -10.2957 18.2359 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 13 | -10.1909 5.8615 54.5563 -Arial_Bold.ttf 16 g 29.5628 43.6580 14 N -10.0746 33.3463 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 15 f -10.3571 20.6948 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 16 g -0.1417 29.5628 43.6580 -Arial_Bold.ttf 16 g 29.5628 43.6580 17 d -10.2545 29.5628 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 18 W -10.2545 54.7706 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 19 s -0.1802 28.3333 32.1169 -Arial_Bold.ttf 16 g 29.5628 43.6580 20 c 0.1714 27.5000 32.1169 -Arial_Bold.ttf 16 g 29.5628 43.6580 21 u 1.0902 27.7857 30.8874 -Arial_Bold.ttf 16 g 29.5628 43.6580 22 3 -9.8919 27.2857 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 23 ~ 5.7817 30.4589 10.8117 -Arial_Bold.ttf 16 g 29.5628 43.6580 24 # -10.1605 30.3874 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 25 O -11.0316 40.3420 43.4589 -Arial_Bold.ttf 16 g 29.5628 43.6580 26 ` -10.2079 12.7706 8.3203 -Arial_Bold.ttf 16 g 29.5628 43.6580 27 @ -10.5105 55.2706 56.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 28 F -10.3724 29.0152 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 29 S -10.9542 33.8615 43.4589 -Arial_Bold.ttf 16 g 29.5628 43.6580 30 p 0.1064 29.5628 43.4437 -Arial_Bold.ttf 16 g 29.5628 43.6580 31 “ -10.2607 22.4719 17.6883 -Arial_Bold.ttf 16 g 29.5628 43.6580 32 % -10.4676 44.9329 43.6580 -Arial_Bold.ttf 16 g 29.5628 43.6580 33 £ -10.2579 31.1883 42.4286 -Arial_Bold.ttf 16 g 29.5628 43.6580 34 . 23.7010 8.1385 8.1385 -Arial_Bold.ttf 16 g 29.5628 43.6580 35 2 -10.0238 27.2857 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 36 5 -9.7400 28.0000 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 37 m 0.3254 44.6104 31.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 38 V -9.9545 38.4935 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 39 6 -10.2143 27.2857 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 40 w 1.4568 45.5065 30.6732 -Arial_Bold.ttf 16 g 29.5628 43.6580 41 T -10.1415 33.2511 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 42 M -10.2815 39.5584 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 43 G -10.6780 39.1126 43.4589 -Arial_Bold.ttf 16 g 29.5628 43.6580 44 b -10.1162 29.5628 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 45 9 -10.0624 27.2857 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 46 ; 1.1080 8.8680 40.4372 -Arial_Bold.ttf 16 g 29.5628 43.6580 47 D -10.1579 35.0909 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 48 L -10.3838 29.9113 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 49 y 1.1521 31.6883 42.4286 -Arial_Bold.ttf 16 g 29.5628 43.6580 50 ‘ -10.0884 8.8680 17.6883 -Arial_Bold.ttf 16 g 29.5628 43.6580 51 \ -10.1845 17.6883 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 52 R -10.1519 37.0498 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 53 < -4.6820 28.0000 31.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 54 4 -10.2016 29.9589 41.7857 -Arial_Bold.ttf 16 g 29.5628 43.6580 55 8 -10.1676 27.2857 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 56 0 -9.9389 27.2857 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 57 A -10.1317 40.5887 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 58 E -10.0579 32.0844 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 59 B -9.9903 35.0909 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 60 v 1.2711 31.6883 30.6732 -Arial_Bold.ttf 16 g 29.5628 43.6580 61 k -10.3052 28.5152 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 62 J -10.0331 26.9524 42.7294 -Arial_Bold.ttf 16 g 29.5628 43.6580 63 U -10.0474 33.3463 42.7294 -Arial_Bold.ttf 16 g 29.5628 43.6580 64 j -9.5601 15.2294 53.7554 -Arial_Bold.ttf 16 g 29.5628 43.6580 65 ( -9.7329 14.0000 53.5411 -Arial_Bold.ttf 16 g 29.5628 43.6580 66 7 -9.9545 27.2857 41.7857 -Arial_Bold.ttf 16 g 29.5628 43.6580 67 § -10.5405 28.5152 54.7706 -Arial_Bold.ttf 16 g 29.5628 43.6580 68 $ -13.5517 27.7857 50.8680 -Arial_Bold.ttf 16 g 29.5628 43.6580 69 € -10.6697 31.6883 42.9437 -Arial_Bold.ttf 16 g 29.5628 43.6580 70 / -10.2405 17.6883 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 71 C -11.1390 36.6537 42.7294 -Arial_Bold.ttf 16 g 29.5628 43.6580 72 * -10.2560 19.7424 19.1320 -Arial_Bold.ttf 16 g 29.5628 43.6580 73 ” -10.2650 22.4719 17.6883 -Arial_Bold.ttf 16 g 29.5628 43.6580 74 ? -10.2026 30.4589 42.2143 -Arial_Bold.ttf 16 g 29.5628 43.6580 75 { -10.6500 19.6472 53.9697 -Arial_Bold.ttf 16 g 29.5628 43.6580 76 } -10.2312 19.6472 53.9697 -Arial_Bold.ttf 16 g 29.5628 43.6580 77 , 23.7141 8.8680 17.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 78 I -10.3022 8.1385 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 79 ° -10.6197 18.0844 18.0844 -Arial_Bold.ttf 16 g 29.5628 43.6580 80 K -10.1293 37.7641 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 81 H -10.3712 33.3463 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 82 q 0.1274 29.5628 43.4437 -Arial_Bold.ttf 16 g 29.5628 43.6580 83 & -10.0855 38.8117 42.4286 -Arial_Bold.ttf 16 g 29.5628 43.6580 84 ’ -9.9966 8.8680 17.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 85 [ -10.1369 15.2294 53.5411 -Arial_Bold.ttf 16 g 29.5628 43.6580 86 - 13.8669 15.7294 6.9091 -Arial_Bold.ttf 16 g 29.5628 43.6580 87 Y -9.9662 41.0563 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 88 Q -10.9892 41.7857 46.6472 -Arial_Bold.ttf 16 g 29.5628 43.6580 89 " -10.2169 21.5909 15.2294 -Arial_Bold.ttf 16 g 29.5628 43.6580 90 ! -10.1415 8.1385 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 91 x 1.3711 32.4177 30.6732 -Arial_Bold.ttf 16 g 29.5628 43.6580 92 ) -10.4195 14.0000 53.5411 -Arial_Bold.ttf 16 g 29.5628 43.6580 93 = 1.2302 29.2294 19.2835 -Arial_Bold.ttf 16 g 29.5628 43.6580 94 + -2.8298 28.8961 28.8961 -Arial_Bold.ttf 16 g 29.5628 43.6580 95 X -9.9103 38.9935 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 96 » 3.2627 26.9524 26.5563 -Arial_Bold.ttf 16 g 29.5628 43.6580 97 ' -9.7434 8.1385 15.2294 -Arial_Bold.ttf 16 g 29.5628 43.6580 98 ¢ -10.2724 28.7294 54.4372 -Arial_Bold.ttf 16 g 29.5628 43.6580 99 Z -10.2307 34.4805 42.0000 -Arial_Bold.ttf 16 g 29.5628 43.6580 100 > -4.9927 28.0000 31.9026 -Arial_Bold.ttf 16 g 29.5628 43.6580 101 ® -10.2434 43.2294 42.4286 -Arial_Bold.ttf 16 g 29.5628 43.6580 102 © -10.4188 43.9589 42.4286 -Arial_Bold.ttf 16 g 29.5628 43.6580 103 ] -10.2581 15.2294 53.5411 -Arial_Bold.ttf 16 g 29.5628 43.6580 104 é -10.7011 29.4113 42.8961 -Arial_Bold.ttf 16 g 29.5628 43.6580 105 z 1.0937 26.7706 30.6732 -Arial_Bold.ttf 16 g 29.5628 43.6580 106 _ 37.3870 33.4654 5.8615 -Arial_Bold.ttf 16 g 29.5628 43.6580 107 ¥ -10.2034 30.2056 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 1 t 0.5636 18.1169 41.3810 -Arial_Bold.ttf 17 d 29.5628 42.2143 2 h 0.0381 27.7857 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 3 a 10.2716 28.8333 32.1169 -Arial_Bold.ttf 17 d 29.5628 42.2143 4 n 10.2202 27.7857 31.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 5 P -0.2814 32.0844 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 6 o 9.9681 31.0065 32.1169 -Arial_Bold.ttf 17 d 29.5628 42.2143 7 e 10.1774 29.4113 32.1169 -Arial_Bold.ttf 17 d 29.5628 42.2143 8 : 11.2723 8.1385 30.6732 -Arial_Bold.ttf 17 d 29.5628 42.2143 9 r 10.0222 19.8615 31.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 10 l 0.0500 8.1385 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 11 i -0.2014 8.1385 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 12 1 -0.0119 18.2359 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 13 | 0.5140 5.8615 54.5563 -Arial_Bold.ttf 17 d 29.5628 42.2143 14 N -0.0264 33.3463 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 15 f -0.1500 20.6948 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 16 g 10.0391 29.5628 43.6580 -Arial_Bold.ttf 17 d 29.5628 42.2143 17 d 0.0909 29.5628 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 18 W 0.0240 54.7706 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 19 s 9.8575 28.3333 32.1169 -Arial_Bold.ttf 17 d 29.5628 42.2143 20 c 10.0057 27.5000 32.1169 -Arial_Bold.ttf 17 d 29.5628 42.2143 21 u 11.3550 27.7857 30.8874 -Arial_Bold.ttf 17 d 29.5628 42.2143 22 3 -0.2054 27.2857 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 23 ~ 15.8739 30.4589 10.8117 -Arial_Bold.ttf 17 d 29.5628 42.2143 24 # -0.0538 30.3874 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 25 O -0.7995 40.3420 43.4589 -Arial_Bold.ttf 17 d 29.5628 42.2143 26 ` 0.1988 12.7706 8.3203 -Arial_Bold.ttf 17 d 29.5628 42.2143 27 @ -0.1492 55.2706 56.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 28 F 0.0038 29.0152 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 29 S -0.5323 33.8615 43.4589 -Arial_Bold.ttf 17 d 29.5628 42.2143 30 p 10.1629 29.5628 43.4437 -Arial_Bold.ttf 17 d 29.5628 42.2143 31 “ -0.0403 22.4719 17.6883 -Arial_Bold.ttf 17 d 29.5628 42.2143 32 % -0.1369 44.9329 43.6580 -Arial_Bold.ttf 17 d 29.5628 42.2143 33 £ -0.4476 31.1883 42.4286 -Arial_Bold.ttf 17 d 29.5628 42.2143 34 . 33.8063 8.1385 8.1385 -Arial_Bold.ttf 17 d 29.5628 42.2143 35 2 -0.0871 27.2857 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 36 5 0.2286 28.0000 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 37 m 9.9422 44.6104 31.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 38 V -0.2788 38.4935 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 39 6 0.0976 27.2857 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 40 w 11.3425 45.5065 30.6732 -Arial_Bold.ttf 17 d 29.5628 42.2143 41 T -0.3145 33.2511 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 42 M 0.0506 39.5584 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 43 G -0.6937 39.1126 43.4589 -Arial_Bold.ttf 17 d 29.5628 42.2143 44 b 0.0357 29.5628 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 45 9 -0.0143 27.2857 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 46 ; 11.6459 8.8680 40.4372 -Arial_Bold.ttf 17 d 29.5628 42.2143 47 D -0.1060 35.0909 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 48 L -0.1631 29.9113 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 49 y 11.4320 31.6883 42.4286 -Arial_Bold.ttf 17 d 29.5628 42.2143 50 ‘ -0.0940 8.8680 17.6883 -Arial_Bold.ttf 17 d 29.5628 42.2143 51 \ 0.2810 17.6883 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 52 R -0.0631 37.0498 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 53 < 5.3594 28.0000 31.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 54 4 0.1317 29.9589 41.7857 -Arial_Bold.ttf 17 d 29.5628 42.2143 55 8 0.0364 27.2857 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 56 0 -0.1085 27.2857 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 57 A 0.0233 40.5887 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 58 E 0.3397 32.0844 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 59 B -0.1014 35.0909 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 60 v 11.3756 31.6883 30.6732 -Arial_Bold.ttf 17 d 29.5628 42.2143 61 k -0.0631 28.5152 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 62 J -0.1728 26.9524 42.7294 -Arial_Bold.ttf 17 d 29.5628 42.2143 63 U -0.1105 33.3463 42.7294 -Arial_Bold.ttf 17 d 29.5628 42.2143 64 j -0.3319 15.2294 53.7554 -Arial_Bold.ttf 17 d 29.5628 42.2143 65 ( 0.0508 14.0000 53.5411 -Arial_Bold.ttf 17 d 29.5628 42.2143 66 7 -0.0562 27.2857 41.7857 -Arial_Bold.ttf 17 d 29.5628 42.2143 67 § -0.3405 28.5152 54.7706 -Arial_Bold.ttf 17 d 29.5628 42.2143 68 $ -3.0057 27.7857 50.8680 -Arial_Bold.ttf 17 d 29.5628 42.2143 69 € -0.6802 31.6883 42.9437 -Arial_Bold.ttf 17 d 29.5628 42.2143 70 / 0.1395 17.6883 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 71 C -0.8271 36.6537 42.7294 -Arial_Bold.ttf 17 d 29.5628 42.2143 72 * 0.1060 19.7424 19.1320 -Arial_Bold.ttf 17 d 29.5628 42.2143 73 ” -0.1034 22.4719 17.6883 -Arial_Bold.ttf 17 d 29.5628 42.2143 74 ? -0.1355 30.4589 42.2143 -Arial_Bold.ttf 17 d 29.5628 42.2143 75 { -0.0831 19.6472 53.9697 -Arial_Bold.ttf 17 d 29.5628 42.2143 76 } -0.3760 19.6472 53.9697 -Arial_Bold.ttf 17 d 29.5628 42.2143 77 , 33.5789 8.8680 17.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 78 I -0.1333 8.1385 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 79 ° -0.4385 18.0844 18.0844 -Arial_Bold.ttf 17 d 29.5628 42.2143 80 K -0.1847 37.7641 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 81 H -0.3895 33.3463 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 82 q 9.7089 29.5628 43.4437 -Arial_Bold.ttf 17 d 29.5628 42.2143 83 & -0.1248 38.8117 42.4286 -Arial_Bold.ttf 17 d 29.5628 42.2143 84 ’ -0.1826 8.8680 17.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 85 [ -0.1183 15.2294 53.5411 -Arial_Bold.ttf 17 d 29.5628 42.2143 86 - 23.5665 15.7294 6.9091 -Arial_Bold.ttf 17 d 29.5628 42.2143 87 Y -0.0312 41.0563 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 88 Q -0.4633 41.7857 46.6472 -Arial_Bold.ttf 17 d 29.5628 42.2143 89 " 0.1488 21.5909 15.2294 -Arial_Bold.ttf 17 d 29.5628 42.2143 90 ! 0.0669 8.1385 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 91 x 11.3268 32.4177 30.6732 -Arial_Bold.ttf 17 d 29.5628 42.2143 92 ) 0.0772 14.0000 53.5411 -Arial_Bold.ttf 17 d 29.5628 42.2143 93 = 11.4102 29.2294 19.2835 -Arial_Bold.ttf 17 d 29.5628 42.2143 94 + 7.4205 28.8961 28.8961 -Arial_Bold.ttf 17 d 29.5628 42.2143 95 X -0.2780 38.9935 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 96 » 13.4067 26.9524 26.5563 -Arial_Bold.ttf 17 d 29.5628 42.2143 97 ' -0.1864 8.1385 15.2294 -Arial_Bold.ttf 17 d 29.5628 42.2143 98 ¢ 0.0508 28.7294 54.4372 -Arial_Bold.ttf 17 d 29.5628 42.2143 99 Z 0.0760 34.4805 42.0000 -Arial_Bold.ttf 17 d 29.5628 42.2143 100 > 5.3677 28.0000 31.9026 -Arial_Bold.ttf 17 d 29.5628 42.2143 101 ® -0.2976 43.2294 42.4286 -Arial_Bold.ttf 17 d 29.5628 42.2143 102 © -0.4060 43.9589 42.4286 -Arial_Bold.ttf 17 d 29.5628 42.2143 103 ] -0.1669 15.2294 53.5411 -Arial_Bold.ttf 17 d 29.5628 42.2143 104 é -0.5485 29.4113 42.8961 -Arial_Bold.ttf 17 d 29.5628 42.2143 105 z 11.3814 26.7706 30.6732 -Arial_Bold.ttf 17 d 29.5628 42.2143 106 _ 47.4608 33.4654 5.8615 -Arial_Bold.ttf 17 d 29.5628 42.2143 107 ¥ 0.3653 30.2056 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 1 t 1.1181 18.1169 41.3810 -Arial_Bold.ttf 18 W 54.7706 42.0000 2 h -0.1695 27.7857 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 3 a 10.1633 28.8333 32.1169 -Arial_Bold.ttf 18 W 54.7706 42.0000 4 n 10.4952 27.7857 31.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 5 P 0.0588 32.0844 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 6 o 10.3165 31.0065 32.1169 -Arial_Bold.ttf 18 W 54.7706 42.0000 7 e 10.0660 29.4113 32.1169 -Arial_Bold.ttf 18 W 54.7706 42.0000 8 : 11.0740 8.1385 30.6732 -Arial_Bold.ttf 18 W 54.7706 42.0000 9 r 10.2105 19.8615 31.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 10 l -0.3778 8.1385 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 11 i -0.3350 8.1385 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 12 1 -0.1766 18.2359 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 13 | 0.1481 5.8615 54.5563 -Arial_Bold.ttf 18 W 54.7706 42.0000 14 N 0.3395 33.3463 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 15 f -0.3649 20.6948 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 16 g 10.3421 29.5628 43.6580 -Arial_Bold.ttf 18 W 54.7706 42.0000 17 d 0.1431 29.5628 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 18 W -0.0571 54.7706 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 19 s 10.1943 28.3333 32.1169 -Arial_Bold.ttf 18 W 54.7706 42.0000 20 c 10.1950 27.5000 32.1169 -Arial_Bold.ttf 18 W 54.7706 42.0000 21 u 11.4316 27.7857 30.8874 -Arial_Bold.ttf 18 W 54.7706 42.0000 22 3 -0.0143 27.2857 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 23 ~ 16.1936 30.4589 10.8117 -Arial_Bold.ttf 18 W 54.7706 42.0000 24 # 0.4562 30.3874 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 25 O -0.6344 40.3420 43.4589 -Arial_Bold.ttf 18 W 54.7706 42.0000 26 ` 0.1022 12.7706 8.3203 -Arial_Bold.ttf 18 W 54.7706 42.0000 27 @ -0.6697 55.2706 56.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 28 F -0.0200 29.0152 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 29 S -0.6483 33.8615 43.4589 -Arial_Bold.ttf 18 W 54.7706 42.0000 30 p 10.2093 29.5628 43.4437 -Arial_Bold.ttf 18 W 54.7706 42.0000 31 “ -0.1623 22.4719 17.6883 -Arial_Bold.ttf 18 W 54.7706 42.0000 32 % -0.2008 44.9329 43.6580 -Arial_Bold.ttf 18 W 54.7706 42.0000 33 £ -0.3548 31.1883 42.4286 -Arial_Bold.ttf 18 W 54.7706 42.0000 34 . 33.3057 8.1385 8.1385 -Arial_Bold.ttf 18 W 54.7706 42.0000 35 2 -0.1702 27.2857 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 36 5 0.3002 28.0000 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 37 m 9.8893 44.6104 31.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 38 V -0.1645 38.4935 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 39 6 -0.2079 27.2857 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 40 w 11.4074 45.5065 30.6732 -Arial_Bold.ttf 18 W 54.7706 42.0000 41 T 0.2252 33.2511 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 42 M -0.0947 39.5584 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 43 G -0.7370 39.1126 43.4589 -Arial_Bold.ttf 18 W 54.7706 42.0000 44 b 0.2988 29.5628 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 45 9 0.1767 27.2857 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 46 ; 11.4516 8.8680 40.4372 -Arial_Bold.ttf 18 W 54.7706 42.0000 47 D 0.0121 35.0909 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 48 L 0.1236 29.9113 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 49 y 11.2323 31.6883 42.4286 -Arial_Bold.ttf 18 W 54.7706 42.0000 50 ‘ 0.3092 8.8680 17.6883 -Arial_Bold.ttf 18 W 54.7706 42.0000 51 \ 0.1431 17.6883 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 52 R -0.0038 37.0498 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 53 < 5.3947 28.0000 31.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 54 4 0.2915 29.9589 41.7857 -Arial_Bold.ttf 18 W 54.7706 42.0000 55 8 -0.1498 27.2857 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 56 0 -0.1815 27.2857 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 57 A -0.0690 40.5887 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 58 E 0.2119 32.0844 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 59 B 0.3114 35.0909 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 60 v 11.1069 31.6883 30.6732 -Arial_Bold.ttf 18 W 54.7706 42.0000 61 k 0.3548 28.5152 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 62 J -0.3135 26.9524 42.7294 -Arial_Bold.ttf 18 W 54.7706 42.0000 63 U -0.3705 33.3463 42.7294 -Arial_Bold.ttf 18 W 54.7706 42.0000 64 j 0.3411 15.2294 53.7554 -Arial_Bold.ttf 18 W 54.7706 42.0000 65 ( -0.1526 14.0000 53.5411 -Arial_Bold.ttf 18 W 54.7706 42.0000 66 7 0.0278 27.2857 41.7857 -Arial_Bold.ttf 18 W 54.7706 42.0000 67 § -0.2643 28.5152 54.7706 -Arial_Bold.ttf 18 W 54.7706 42.0000 68 $ -2.9148 27.7857 50.8680 -Arial_Bold.ttf 18 W 54.7706 42.0000 69 € -0.6689 31.6883 42.9437 -Arial_Bold.ttf 18 W 54.7706 42.0000 70 / -0.0500 17.6883 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 71 C -0.4014 36.6537 42.7294 -Arial_Bold.ttf 18 W 54.7706 42.0000 72 * -0.0181 19.7424 19.1320 -Arial_Bold.ttf 18 W 54.7706 42.0000 73 ” -0.2048 22.4719 17.6883 -Arial_Bold.ttf 18 W 54.7706 42.0000 74 ? -0.4214 30.4589 42.2143 -Arial_Bold.ttf 18 W 54.7706 42.0000 75 { -0.3326 19.6472 53.9697 -Arial_Bold.ttf 18 W 54.7706 42.0000 76 } -0.3319 19.6472 53.9697 -Arial_Bold.ttf 18 W 54.7706 42.0000 77 , 34.0569 8.8680 17.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 78 I -0.0486 8.1385 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 79 ° 0.1483 18.0844 18.0844 -Arial_Bold.ttf 18 W 54.7706 42.0000 80 K 0.0579 37.7641 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 81 H -0.2919 33.3463 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 82 q 9.8127 29.5628 43.4437 -Arial_Bold.ttf 18 W 54.7706 42.0000 83 & -0.2383 38.8117 42.4286 -Arial_Bold.ttf 18 W 54.7706 42.0000 84 ’ 0.1571 8.8680 17.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 85 [ -0.0516 15.2294 53.5411 -Arial_Bold.ttf 18 W 54.7706 42.0000 86 - 23.7798 15.7294 6.9091 -Arial_Bold.ttf 18 W 54.7706 42.0000 87 Y -0.0635 41.0563 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 88 Q -0.8978 41.7857 46.6472 -Arial_Bold.ttf 18 W 54.7706 42.0000 89 " 0.3838 21.5909 15.2294 -Arial_Bold.ttf 18 W 54.7706 42.0000 90 ! 0.1881 8.1385 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 91 x 11.7513 32.4177 30.6732 -Arial_Bold.ttf 18 W 54.7706 42.0000 92 ) 0.1245 14.0000 53.5411 -Arial_Bold.ttf 18 W 54.7706 42.0000 93 = 11.5369 29.2294 19.2835 -Arial_Bold.ttf 18 W 54.7706 42.0000 94 + 7.1629 28.8961 28.8961 -Arial_Bold.ttf 18 W 54.7706 42.0000 95 X -0.1310 38.9935 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 96 » 13.3590 26.9524 26.5563 -Arial_Bold.ttf 18 W 54.7706 42.0000 97 ' -0.3768 8.1385 15.2294 -Arial_Bold.ttf 18 W 54.7706 42.0000 98 ¢ -0.0492 28.7294 54.4372 -Arial_Bold.ttf 18 W 54.7706 42.0000 99 Z 0.0655 34.4805 42.0000 -Arial_Bold.ttf 18 W 54.7706 42.0000 100 > 5.3515 28.0000 31.9026 -Arial_Bold.ttf 18 W 54.7706 42.0000 101 ® -0.0355 43.2294 42.4286 -Arial_Bold.ttf 18 W 54.7706 42.0000 102 © -0.2393 43.9589 42.4286 -Arial_Bold.ttf 18 W 54.7706 42.0000 103 ] -0.2490 15.2294 53.5411 -Arial_Bold.ttf 18 W 54.7706 42.0000 104 é -0.7207 29.4113 42.8961 -Arial_Bold.ttf 18 W 54.7706 42.0000 105 z 11.4473 26.7706 30.6732 -Arial_Bold.ttf 18 W 54.7706 42.0000 106 _ 47.3147 33.4654 5.8615 -Arial_Bold.ttf 18 W 54.7706 42.0000 107 ¥ -0.0207 30.2056 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 1 t -9.1938 18.1169 41.3810 -Arial_Bold.ttf 19 s 28.3333 32.1169 2 h -9.8389 27.7857 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 3 a 0.0266 28.8333 32.1169 -Arial_Bold.ttf 19 s 28.3333 32.1169 4 n -0.0500 27.7857 31.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 5 P -10.0936 32.0844 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 6 o 0.3419 31.0065 32.1169 -Arial_Bold.ttf 19 s 28.3333 32.1169 7 e 0.0083 29.4113 32.1169 -Arial_Bold.ttf 19 s 28.3333 32.1169 8 : 1.1878 8.1385 30.6732 -Arial_Bold.ttf 19 s 28.3333 32.1169 9 r -0.0129 19.8615 31.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 10 l -9.8389 8.1385 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 11 i -10.0810 8.1385 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 12 1 -10.0337 18.2359 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 13 | -10.1248 5.8615 54.5563 -Arial_Bold.ttf 19 s 28.3333 32.1169 14 N -10.2619 33.3463 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 15 f -10.3929 20.6948 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 16 g 0.1417 29.5628 43.6580 -Arial_Bold.ttf 19 s 28.3333 32.1169 17 d -10.3665 29.5628 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 18 W -9.6563 54.7706 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 19 s -0.1871 28.3333 32.1169 -Arial_Bold.ttf 19 s 28.3333 32.1169 20 c 0.0548 27.5000 32.1169 -Arial_Bold.ttf 19 s 28.3333 32.1169 21 u 1.0366 27.7857 30.8874 -Arial_Bold.ttf 19 s 28.3333 32.1169 22 3 -10.0786 27.2857 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 23 ~ 5.9555 30.4589 10.8117 -Arial_Bold.ttf 19 s 28.3333 32.1169 24 # -10.3514 30.3874 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 25 O -10.9459 40.3420 43.4589 -Arial_Bold.ttf 19 s 28.3333 32.1169 26 ` -9.9708 12.7706 8.3203 -Arial_Bold.ttf 19 s 28.3333 32.1169 27 @ -10.0258 55.2706 56.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 28 F -10.2665 29.0152 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 29 S -10.7873 33.8615 43.4589 -Arial_Bold.ttf 19 s 28.3333 32.1169 30 p 0.1357 29.5628 43.4437 -Arial_Bold.ttf 19 s 28.3333 32.1169 31 “ -9.8374 22.4719 17.6883 -Arial_Bold.ttf 19 s 28.3333 32.1169 32 % -10.2752 44.9329 43.6580 -Arial_Bold.ttf 19 s 28.3333 32.1169 33 £ -10.1343 31.1883 42.4286 -Arial_Bold.ttf 19 s 28.3333 32.1169 34 . 24.0772 8.1385 8.1385 -Arial_Bold.ttf 19 s 28.3333 32.1169 35 2 -10.0169 27.2857 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 36 5 -9.9754 28.0000 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 37 m -0.1097 44.6104 31.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 38 V -10.2665 38.4935 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 39 6 -10.0057 27.2857 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 40 w 1.0695 45.5065 30.6732 -Arial_Bold.ttf 19 s 28.3333 32.1169 41 T -9.9141 33.2511 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 42 M -9.9110 39.5584 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 43 G -11.1695 39.1126 43.4589 -Arial_Bold.ttf 19 s 28.3333 32.1169 44 b -10.0162 29.5628 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 45 9 -10.0365 27.2857 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 46 ; 1.3582 8.8680 40.4372 -Arial_Bold.ttf 19 s 28.3333 32.1169 47 D -10.1169 35.0909 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 48 L -10.3307 29.9113 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 49 y 1.0961 31.6883 42.4286 -Arial_Bold.ttf 19 s 28.3333 32.1169 50 ‘ -9.8224 8.8680 17.6883 -Arial_Bold.ttf 19 s 28.3333 32.1169 51 \ -10.0974 17.6883 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 52 R -10.0448 37.0498 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 53 < -5.0763 28.0000 31.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 54 4 -9.6998 29.9589 41.7857 -Arial_Bold.ttf 19 s 28.3333 32.1169 55 8 -10.0714 27.2857 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 56 0 -10.0421 27.2857 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 57 A -10.2821 40.5887 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 58 E -10.2386 32.0844 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 59 B -9.9700 35.0909 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 60 v 1.1521 31.6883 30.6732 -Arial_Bold.ttf 19 s 28.3333 32.1169 61 k -9.9403 28.5152 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 62 J -10.2486 26.9524 42.7294 -Arial_Bold.ttf 19 s 28.3333 32.1169 63 U -9.8426 33.3463 42.7294 -Arial_Bold.ttf 19 s 28.3333 32.1169 64 j -10.2093 15.2294 53.7554 -Arial_Bold.ttf 19 s 28.3333 32.1169 65 ( -9.9790 14.0000 53.5411 -Arial_Bold.ttf 19 s 28.3333 32.1169 66 7 -9.9300 27.2857 41.7857 -Arial_Bold.ttf 19 s 28.3333 32.1169 67 § -10.1662 28.5152 54.7706 -Arial_Bold.ttf 19 s 28.3333 32.1169 68 $ -13.1948 27.7857 50.8680 -Arial_Bold.ttf 19 s 28.3333 32.1169 69 € -11.0292 31.6883 42.9437 -Arial_Bold.ttf 19 s 28.3333 32.1169 70 / -10.1155 17.6883 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 71 C -10.8554 36.6537 42.7294 -Arial_Bold.ttf 19 s 28.3333 32.1169 72 * -10.2514 19.7424 19.1320 -Arial_Bold.ttf 19 s 28.3333 32.1169 73 ” -10.2526 22.4719 17.6883 -Arial_Bold.ttf 19 s 28.3333 32.1169 74 ? -10.3117 30.4589 42.2143 -Arial_Bold.ttf 19 s 28.3333 32.1169 75 { -10.0986 19.6472 53.9697 -Arial_Bold.ttf 19 s 28.3333 32.1169 76 } -10.1972 19.6472 53.9697 -Arial_Bold.ttf 19 s 28.3333 32.1169 77 , 23.7295 8.8680 17.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 78 I -9.9208 8.1385 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 79 ° -10.1843 18.0844 18.0844 -Arial_Bold.ttf 19 s 28.3333 32.1169 80 K -10.0617 37.7641 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 81 H -10.3897 33.3463 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 82 q 0.2312 29.5628 43.4437 -Arial_Bold.ttf 19 s 28.3333 32.1169 83 & -10.3774 38.8117 42.4286 -Arial_Bold.ttf 19 s 28.3333 32.1169 84 ’ -10.0369 8.8680 17.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 85 [ -10.2567 15.2294 53.5411 -Arial_Bold.ttf 19 s 28.3333 32.1169 86 - 13.5536 15.7294 6.9091 -Arial_Bold.ttf 19 s 28.3333 32.1169 87 Y -10.0214 41.0563 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 88 Q -10.7723 41.7857 46.6472 -Arial_Bold.ttf 19 s 28.3333 32.1169 89 " -10.0274 21.5909 15.2294 -Arial_Bold.ttf 19 s 28.3333 32.1169 90 ! -10.3835 8.1385 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 91 x 1.1735 32.4177 30.6732 -Arial_Bold.ttf 19 s 28.3333 32.1169 92 ) -9.9162 14.0000 53.5411 -Arial_Bold.ttf 19 s 28.3333 32.1169 93 = 0.9338 29.2294 19.2835 -Arial_Bold.ttf 19 s 28.3333 32.1169 94 + -3.0088 28.8961 28.8961 -Arial_Bold.ttf 19 s 28.3333 32.1169 95 X -9.9798 38.9935 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 96 » 3.1541 26.9524 26.5563 -Arial_Bold.ttf 19 s 28.3333 32.1169 97 ' -10.3052 8.1385 15.2294 -Arial_Bold.ttf 19 s 28.3333 32.1169 98 ¢ -10.0714 28.7294 54.4372 -Arial_Bold.ttf 19 s 28.3333 32.1169 99 Z -10.1755 34.4805 42.0000 -Arial_Bold.ttf 19 s 28.3333 32.1169 100 > -4.8051 28.0000 31.9026 -Arial_Bold.ttf 19 s 28.3333 32.1169 101 ® -10.2843 43.2294 42.4286 -Arial_Bold.ttf 19 s 28.3333 32.1169 102 © -10.3891 43.9589 42.4286 -Arial_Bold.ttf 19 s 28.3333 32.1169 103 ] -10.0565 15.2294 53.5411 -Arial_Bold.ttf 19 s 28.3333 32.1169 104 é -10.9475 29.4113 42.8961 -Arial_Bold.ttf 19 s 28.3333 32.1169 105 z 0.8461 26.7706 30.6732 -Arial_Bold.ttf 19 s 28.3333 32.1169 106 _ 37.4823 33.4654 5.8615 -Arial_Bold.ttf 19 s 28.3333 32.1169 107 ¥ -10.4615 30.2056 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 1 t -9.3700 18.1169 41.3810 -Arial_Bold.ttf 20 c 27.5000 32.1169 2 h -10.4141 27.7857 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 3 a 0.0500 28.8333 32.1169 -Arial_Bold.ttf 20 c 27.5000 32.1169 4 n 0.2534 27.7857 31.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 5 P -10.2196 32.0844 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 6 o 0.0728 31.0065 32.1169 -Arial_Bold.ttf 20 c 27.5000 32.1169 7 e 0.0083 29.4113 32.1169 -Arial_Bold.ttf 20 c 27.5000 32.1169 8 : 1.2697 8.1385 30.6732 -Arial_Bold.ttf 20 c 27.5000 32.1169 9 r 0.1357 19.8615 31.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 10 l -9.8426 8.1385 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 11 i -9.8069 8.1385 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 12 1 -10.0950 18.2359 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 13 | -10.1891 5.8615 54.5563 -Arial_Bold.ttf 20 c 27.5000 32.1169 14 N -10.0482 33.3463 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 15 f -10.4807 20.6948 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 16 g 0.0879 29.5628 43.6580 -Arial_Bold.ttf 20 c 27.5000 32.1169 17 d -9.9384 29.5628 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 18 W -10.3262 54.7706 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 19 s -0.2040 28.3333 32.1169 -Arial_Bold.ttf 20 c 27.5000 32.1169 20 c -0.1850 27.5000 32.1169 -Arial_Bold.ttf 20 c 27.5000 32.1169 21 u 1.2211 27.7857 30.8874 -Arial_Bold.ttf 20 c 27.5000 32.1169 22 3 -10.0688 27.2857 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 23 ~ 6.1335 30.4589 10.8117 -Arial_Bold.ttf 20 c 27.5000 32.1169 24 # -10.2248 30.3874 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 25 O -10.9177 40.3420 43.4589 -Arial_Bold.ttf 20 c 27.5000 32.1169 26 ` -10.3218 12.7706 8.3203 -Arial_Bold.ttf 20 c 27.5000 32.1169 27 @ -10.3839 55.2706 56.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 28 F -10.1462 29.0152 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 29 S -10.8983 33.8615 43.4589 -Arial_Bold.ttf 20 c 27.5000 32.1169 30 p -0.0774 29.5628 43.4437 -Arial_Bold.ttf 20 c 27.5000 32.1169 31 “ -9.9900 22.4719 17.6883 -Arial_Bold.ttf 20 c 27.5000 32.1169 32 % -10.0472 44.9329 43.6580 -Arial_Bold.ttf 20 c 27.5000 32.1169 33 £ -10.2557 31.1883 42.4286 -Arial_Bold.ttf 20 c 27.5000 32.1169 34 . 23.5405 8.1385 8.1385 -Arial_Bold.ttf 20 c 27.5000 32.1169 35 2 -9.9110 27.2857 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 36 5 -10.0286 28.0000 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 37 m -0.0917 44.6104 31.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 38 V -10.2679 38.4935 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 39 6 -9.7835 27.2857 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 40 w 1.1028 45.5065 30.6732 -Arial_Bold.ttf 20 c 27.5000 32.1169 41 T -10.4885 33.2511 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 42 M -10.0440 39.5584 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 43 G -10.7735 39.1126 43.4589 -Arial_Bold.ttf 20 c 27.5000 32.1169 44 b -10.3969 29.5628 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 45 9 -10.1748 27.2857 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 46 ; 1.2256 8.8680 40.4372 -Arial_Bold.ttf 20 c 27.5000 32.1169 47 D -10.0936 35.0909 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 48 L -9.9779 29.9113 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 49 y 1.3530 31.6883 42.4286 -Arial_Bold.ttf 20 c 27.5000 32.1169 50 ‘ -10.1391 8.8680 17.6883 -Arial_Bold.ttf 20 c 27.5000 32.1169 51 \ -10.2597 17.6883 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 52 R -10.0317 37.0498 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 53 < -4.5523 28.0000 31.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 54 4 -10.2476 29.9589 41.7857 -Arial_Bold.ttf 20 c 27.5000 32.1169 55 8 -10.2022 27.2857 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 56 0 -9.7641 27.2857 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 57 A -10.1793 40.5887 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 58 E -10.0260 32.0844 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 59 B -9.9813 35.0909 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 60 v 1.2547 31.6883 30.6732 -Arial_Bold.ttf 20 c 27.5000 32.1169 61 k -10.2377 28.5152 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 62 J -10.3067 26.9524 42.7294 -Arial_Bold.ttf 20 c 27.5000 32.1169 63 U -10.3181 33.3463 42.7294 -Arial_Bold.ttf 20 c 27.5000 32.1169 64 j -10.0929 15.2294 53.7554 -Arial_Bold.ttf 20 c 27.5000 32.1169 65 ( -10.3074 14.0000 53.5411 -Arial_Bold.ttf 20 c 27.5000 32.1169 66 7 -9.8831 27.2857 41.7857 -Arial_Bold.ttf 20 c 27.5000 32.1169 67 § -10.3176 28.5152 54.7706 -Arial_Bold.ttf 20 c 27.5000 32.1169 68 $ -13.2229 27.7857 50.8680 -Arial_Bold.ttf 20 c 27.5000 32.1169 69 € -11.0782 31.6883 42.9437 -Arial_Bold.ttf 20 c 27.5000 32.1169 70 / -9.8141 17.6883 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 71 C -10.6457 36.6537 42.7294 -Arial_Bold.ttf 20 c 27.5000 32.1169 72 * -9.9194 19.7424 19.1320 -Arial_Bold.ttf 20 c 27.5000 32.1169 73 ” -10.0760 22.4719 17.6883 -Arial_Bold.ttf 20 c 27.5000 32.1169 74 ? -10.4702 30.4589 42.2143 -Arial_Bold.ttf 20 c 27.5000 32.1169 75 { -10.4696 19.6472 53.9697 -Arial_Bold.ttf 20 c 27.5000 32.1169 76 } -10.3429 19.6472 53.9697 -Arial_Bold.ttf 20 c 27.5000 32.1169 77 , 23.9831 8.8680 17.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 78 I -10.0748 8.1385 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 79 ° -10.0069 18.0844 18.0844 -Arial_Bold.ttf 20 c 27.5000 32.1169 80 K -10.1274 37.7641 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 81 H -10.3224 33.3463 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 82 q 0.1048 29.5628 43.4437 -Arial_Bold.ttf 20 c 27.5000 32.1169 83 & -10.4117 38.8117 42.4286 -Arial_Bold.ttf 20 c 27.5000 32.1169 84 ’ -10.1891 8.8680 17.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 85 [ -10.0708 15.2294 53.5411 -Arial_Bold.ttf 20 c 27.5000 32.1169 86 - 13.8538 15.7294 6.9091 -Arial_Bold.ttf 20 c 27.5000 32.1169 87 Y -10.0650 41.0563 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 88 Q -10.8866 41.7857 46.6472 -Arial_Bold.ttf 20 c 27.5000 32.1169 89 " -10.1195 21.5909 15.2294 -Arial_Bold.ttf 20 c 27.5000 32.1169 90 ! -10.0124 8.1385 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 91 x 1.0761 32.4177 30.6732 -Arial_Bold.ttf 20 c 27.5000 32.1169 92 ) -9.9012 14.0000 53.5411 -Arial_Bold.ttf 20 c 27.5000 32.1169 93 = 1.1930 29.2294 19.2835 -Arial_Bold.ttf 20 c 27.5000 32.1169 94 + -3.2364 28.8961 28.8961 -Arial_Bold.ttf 20 c 27.5000 32.1169 95 X -10.2045 38.9935 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 96 » 3.3636 26.9524 26.5563 -Arial_Bold.ttf 20 c 27.5000 32.1169 97 ' -10.0807 8.1385 15.2294 -Arial_Bold.ttf 20 c 27.5000 32.1169 98 ¢ -10.0403 28.7294 54.4372 -Arial_Bold.ttf 20 c 27.5000 32.1169 99 Z -10.0200 34.4805 42.0000 -Arial_Bold.ttf 20 c 27.5000 32.1169 100 > -4.4247 28.0000 31.9026 -Arial_Bold.ttf 20 c 27.5000 32.1169 101 ® -10.2752 43.2294 42.4286 -Arial_Bold.ttf 20 c 27.5000 32.1169 102 © -10.3267 43.9589 42.4286 -Arial_Bold.ttf 20 c 27.5000 32.1169 103 ] -10.0429 15.2294 53.5411 -Arial_Bold.ttf 20 c 27.5000 32.1169 104 é -11.0423 29.4113 42.8961 -Arial_Bold.ttf 20 c 27.5000 32.1169 105 z 1.0242 26.7706 30.6732 -Arial_Bold.ttf 20 c 27.5000 32.1169 106 _ 37.4089 33.4654 5.8615 -Arial_Bold.ttf 20 c 27.5000 32.1169 107 ¥ -9.8948 30.2056 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 1 t -10.3429 18.1169 41.3810 -Arial_Bold.ttf 21 u 27.7857 30.8874 2 h -11.4080 27.7857 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 3 a -1.2749 28.8333 32.1169 -Arial_Bold.ttf 21 u 27.7857 30.8874 4 n -1.1735 27.7857 31.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 5 P -11.4126 32.0844 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 6 o -0.9306 31.0065 32.1169 -Arial_Bold.ttf 21 u 27.7857 30.8874 7 e -1.3011 29.4113 32.1169 -Arial_Bold.ttf 21 u 27.7857 30.8874 8 : 0.2385 8.1385 30.6732 -Arial_Bold.ttf 21 u 27.7857 30.8874 9 r -1.0254 19.8615 31.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 10 l -11.2995 8.1385 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 11 i -11.3647 8.1385 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 12 1 -11.3171 18.2359 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 13 | -11.1266 5.8615 54.5563 -Arial_Bold.ttf 21 u 27.7857 30.8874 14 N -11.4185 33.3463 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 15 f -11.3523 20.6948 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 16 g -1.3992 29.5628 43.6580 -Arial_Bold.ttf 21 u 27.7857 30.8874 17 d -11.4483 29.5628 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 18 W -11.2782 54.7706 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 19 s -1.2233 28.3333 32.1169 -Arial_Bold.ttf 21 u 27.7857 30.8874 20 c -1.3939 27.5000 32.1169 -Arial_Bold.ttf 21 u 27.7857 30.8874 21 u -0.0564 27.7857 30.8874 -Arial_Bold.ttf 21 u 27.7857 30.8874 22 3 -11.0266 27.2857 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 23 ~ 4.7699 30.4589 10.8117 -Arial_Bold.ttf 21 u 27.7857 30.8874 24 # -11.1578 30.3874 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 25 O -12.1972 40.3420 43.4589 -Arial_Bold.ttf 21 u 27.7857 30.8874 26 ` -11.3899 12.7706 8.3203 -Arial_Bold.ttf 21 u 27.7857 30.8874 27 @ -11.5828 55.2706 56.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 28 F -11.4937 29.0152 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 29 S -12.1351 33.8615 43.4589 -Arial_Bold.ttf 21 u 27.7857 30.8874 30 p -1.4523 29.5628 43.4437 -Arial_Bold.ttf 21 u 27.7857 30.8874 31 “ -11.2897 22.4719 17.6883 -Arial_Bold.ttf 21 u 27.7857 30.8874 32 % -11.5009 44.9329 43.6580 -Arial_Bold.ttf 21 u 27.7857 30.8874 33 £ -11.7256 31.1883 42.4286 -Arial_Bold.ttf 21 u 27.7857 30.8874 34 . 22.1927 8.1385 8.1385 -Arial_Bold.ttf 21 u 27.7857 30.8874 35 2 -11.5094 27.2857 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 36 5 -11.2731 28.0000 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 37 m -1.0604 44.6104 31.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 38 V -11.1495 38.4935 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 39 6 -11.2663 27.2857 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 40 w -0.1333 45.5065 30.6732 -Arial_Bold.ttf 21 u 27.7857 30.8874 41 T -11.5906 33.2511 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 42 M -11.1981 39.5584 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 43 G -12.0622 39.1126 43.4589 -Arial_Bold.ttf 21 u 27.7857 30.8874 44 b -11.2092 29.5628 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 45 9 -11.6056 27.2857 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 46 ; 0.0417 8.8680 40.4372 -Arial_Bold.ttf 21 u 27.7857 30.8874 47 D -11.5697 35.0909 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 48 L -11.1502 29.9113 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 49 y 0.0643 31.6883 42.4286 -Arial_Bold.ttf 21 u 27.7857 30.8874 50 ‘ -11.5094 8.8680 17.6883 -Arial_Bold.ttf 21 u 27.7857 30.8874 51 \ -11.4535 17.6883 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 52 R -11.6816 37.0498 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 53 < -5.8817 28.0000 31.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 54 4 -11.1983 29.9589 41.7857 -Arial_Bold.ttf 21 u 27.7857 30.8874 55 8 -11.2201 27.2857 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 56 0 -11.3768 27.2857 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 57 A -11.1689 40.5887 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 58 E -11.3163 32.0844 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 59 B -11.5473 35.0909 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 60 v 0.1195 31.6883 30.6732 -Arial_Bold.ttf 21 u 27.7857 30.8874 61 k -11.1814 28.5152 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 62 J -11.2100 26.9524 42.7294 -Arial_Bold.ttf 21 u 27.7857 30.8874 63 U -11.2509 33.3463 42.7294 -Arial_Bold.ttf 21 u 27.7857 30.8874 64 j -11.2352 15.2294 53.7554 -Arial_Bold.ttf 21 u 27.7857 30.8874 65 ( -11.1780 14.0000 53.5411 -Arial_Bold.ttf 21 u 27.7857 30.8874 66 7 -11.0306 27.2857 41.7857 -Arial_Bold.ttf 21 u 27.7857 30.8874 67 § -11.3040 28.5152 54.7706 -Arial_Bold.ttf 21 u 27.7857 30.8874 68 $ -14.0557 27.7857 50.8680 -Arial_Bold.ttf 21 u 27.7857 30.8874 69 € -11.7932 31.6883 42.9437 -Arial_Bold.ttf 21 u 27.7857 30.8874 70 / -11.2359 17.6883 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 71 C -12.3017 36.6537 42.7294 -Arial_Bold.ttf 21 u 27.7857 30.8874 72 * -11.2040 19.7424 19.1320 -Arial_Bold.ttf 21 u 27.7857 30.8874 73 ” -11.4473 22.4719 17.6883 -Arial_Bold.ttf 21 u 27.7857 30.8874 74 ? -11.8249 30.4589 42.2143 -Arial_Bold.ttf 21 u 27.7857 30.8874 75 { -11.6647 19.6472 53.9697 -Arial_Bold.ttf 21 u 27.7857 30.8874 76 } -11.4262 19.6472 53.9697 -Arial_Bold.ttf 21 u 27.7857 30.8874 77 , 22.6932 8.8680 17.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 78 I -11.4326 8.1385 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 79 ° -11.3578 18.0844 18.0844 -Arial_Bold.ttf 21 u 27.7857 30.8874 80 K -11.2949 37.7641 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 81 H -11.3261 33.3463 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 82 q -1.0961 29.5628 43.4437 -Arial_Bold.ttf 21 u 27.7857 30.8874 83 & -11.2280 38.8117 42.4286 -Arial_Bold.ttf 21 u 27.7857 30.8874 84 ’ -11.2679 8.8680 17.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 85 [ -11.2592 15.2294 53.5411 -Arial_Bold.ttf 21 u 27.7857 30.8874 86 - 12.4229 15.7294 6.9091 -Arial_Bold.ttf 21 u 27.7857 30.8874 87 Y -11.0481 41.0563 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 88 Q -11.8932 41.7857 46.6472 -Arial_Bold.ttf 21 u 27.7857 30.8874 89 " -10.8381 21.5909 15.2294 -Arial_Bold.ttf 21 u 27.7857 30.8874 90 ! -11.3268 8.1385 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 91 x 0.1833 32.4177 30.6732 -Arial_Bold.ttf 21 u 27.7857 30.8874 92 ) -11.3923 14.0000 53.5411 -Arial_Bold.ttf 21 u 27.7857 30.8874 93 = -0.1293 29.2294 19.2835 -Arial_Bold.ttf 21 u 27.7857 30.8874 94 + -4.1149 28.8961 28.8961 -Arial_Bold.ttf 21 u 27.7857 30.8874 95 X -11.5511 38.9935 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 96 » 1.7050 26.9524 26.5563 -Arial_Bold.ttf 21 u 27.7857 30.8874 97 ' -11.6173 8.1385 15.2294 -Arial_Bold.ttf 21 u 27.7857 30.8874 98 ¢ -10.8669 28.7294 54.4372 -Arial_Bold.ttf 21 u 27.7857 30.8874 99 Z -11.5808 34.4805 42.0000 -Arial_Bold.ttf 21 u 27.7857 30.8874 100 > -6.1071 28.0000 31.9026 -Arial_Bold.ttf 21 u 27.7857 30.8874 101 ® -11.9142 43.2294 42.4286 -Arial_Bold.ttf 21 u 27.7857 30.8874 102 © -11.6574 43.9589 42.4286 -Arial_Bold.ttf 21 u 27.7857 30.8874 103 ] -11.4261 15.2294 53.5411 -Arial_Bold.ttf 21 u 27.7857 30.8874 104 é -12.1860 29.4113 42.8961 -Arial_Bold.ttf 21 u 27.7857 30.8874 105 z -0.1774 26.7706 30.6732 -Arial_Bold.ttf 21 u 27.7857 30.8874 106 _ 35.9216 33.4654 5.8615 -Arial_Bold.ttf 21 u 27.7857 30.8874 107 ¥ -11.2768 30.2056 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 1 t 0.9919 18.1169 41.3810 -Arial_Bold.ttf 22 3 27.2857 42.2143 2 h -0.0071 27.7857 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 3 a 9.9117 28.8333 32.1169 -Arial_Bold.ttf 22 3 27.2857 42.2143 4 n 10.2300 27.7857 31.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 5 P -0.0083 32.0844 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 6 o 9.9551 31.0065 32.1169 -Arial_Bold.ttf 22 3 27.2857 42.2143 7 e 10.0317 29.4113 32.1169 -Arial_Bold.ttf 22 3 27.2857 42.2143 8 : 11.0149 8.1385 30.6732 -Arial_Bold.ttf 22 3 27.2857 42.2143 9 r 10.0534 19.8615 31.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 10 l 0.0833 8.1385 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 11 i -0.0909 8.1385 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 12 1 -0.2431 18.2359 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 13 | 0.0897 5.8615 54.5563 -Arial_Bold.ttf 22 3 27.2857 42.2143 14 N -0.2788 33.3463 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 15 f -0.2865 20.6948 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 16 g 10.4310 29.5628 43.6580 -Arial_Bold.ttf 22 3 27.2857 42.2143 17 d -0.0067 29.5628 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 18 W 0.1488 54.7706 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 19 s 10.1639 28.3333 32.1169 -Arial_Bold.ttf 22 3 27.2857 42.2143 20 c 10.2552 27.5000 32.1169 -Arial_Bold.ttf 22 3 27.2857 42.2143 21 u 11.4733 27.7857 30.8874 -Arial_Bold.ttf 22 3 27.2857 42.2143 22 3 0.1038 27.2857 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 23 ~ 16.3000 30.4589 10.8117 -Arial_Bold.ttf 22 3 27.2857 42.2143 24 # -0.0060 30.3874 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 25 O -0.6562 40.3420 43.4589 -Arial_Bold.ttf 22 3 27.2857 42.2143 26 ` 0.1266 12.7706 8.3203 -Arial_Bold.ttf 22 3 27.2857 42.2143 27 @ -0.2324 55.2706 56.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 28 F -0.2571 29.0152 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 29 S -0.5892 33.8615 43.4589 -Arial_Bold.ttf 22 3 27.2857 42.2143 30 p 10.1474 29.5628 43.4437 -Arial_Bold.ttf 22 3 27.2857 42.2143 31 “ 0.2048 22.4719 17.6883 -Arial_Bold.ttf 22 3 27.2857 42.2143 32 % -0.4333 44.9329 43.6580 -Arial_Bold.ttf 22 3 27.2857 42.2143 33 £ -0.2324 31.1883 42.4286 -Arial_Bold.ttf 22 3 27.2857 42.2143 34 . 33.7744 8.1385 8.1385 -Arial_Bold.ttf 22 3 27.2857 42.2143 35 2 -0.0091 27.2857 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 36 5 0.3260 28.0000 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 37 m 10.2724 44.6104 31.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 38 V 0.0417 38.4935 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 39 6 0.4038 27.2857 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 40 w 11.2919 45.5065 30.6732 -Arial_Bold.ttf 22 3 27.2857 42.2143 41 T 0.1683 33.2511 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 42 M -0.2326 39.5584 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 43 G -0.9485 39.1126 43.4589 -Arial_Bold.ttf 22 3 27.2857 42.2143 44 b -0.0500 29.5628 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 45 9 0.0619 27.2857 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 46 ; 11.6890 8.8680 40.4372 -Arial_Bold.ttf 22 3 27.2857 42.2143 47 D -0.0683 35.0909 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 48 L 0.0202 29.9113 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 49 y 11.3911 31.6883 42.4286 -Arial_Bold.ttf 22 3 27.2857 42.2143 50 ‘ -0.0774 8.8680 17.6883 -Arial_Bold.ttf 22 3 27.2857 42.2143 51 \ 0.0195 17.6883 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 52 R -0.1000 37.0498 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 53 < 5.2606 28.0000 31.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 54 4 0.1064 29.9589 41.7857 -Arial_Bold.ttf 22 3 27.2857 42.2143 55 8 -0.1548 27.2857 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 56 0 -0.1897 27.2857 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 57 A -0.0833 40.5887 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 58 E 0.0631 32.0844 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 59 B -0.1131 35.0909 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 60 v 11.2852 31.6883 30.6732 -Arial_Bold.ttf 22 3 27.2857 42.2143 61 k -0.1807 28.5152 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 62 J 0.0240 26.9524 42.7294 -Arial_Bold.ttf 22 3 27.2857 42.2143 63 U 0.0181 33.3463 42.7294 -Arial_Bold.ttf 22 3 27.2857 42.2143 64 j 0.1074 15.2294 53.7554 -Arial_Bold.ttf 22 3 27.2857 42.2143 65 ( 0.1252 14.0000 53.5411 -Arial_Bold.ttf 22 3 27.2857 42.2143 66 7 0.0915 27.2857 41.7857 -Arial_Bold.ttf 22 3 27.2857 42.2143 67 § -0.0095 28.5152 54.7706 -Arial_Bold.ttf 22 3 27.2857 42.2143 68 $ -2.9246 27.7857 50.8680 -Arial_Bold.ttf 22 3 27.2857 42.2143 69 € -0.8834 31.6883 42.9437 -Arial_Bold.ttf 22 3 27.2857 42.2143 70 / 0.1060 17.6883 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 71 C -0.9023 36.6537 42.7294 -Arial_Bold.ttf 22 3 27.2857 42.2143 72 * 0.0377 19.7424 19.1320 -Arial_Bold.ttf 22 3 27.2857 42.2143 73 ” -0.1750 22.4719 17.6883 -Arial_Bold.ttf 22 3 27.2857 42.2143 74 ? -0.0310 30.4589 42.2143 -Arial_Bold.ttf 22 3 27.2857 42.2143 75 { -0.1688 19.6472 53.9697 -Arial_Bold.ttf 22 3 27.2857 42.2143 76 } -0.2940 19.6472 53.9697 -Arial_Bold.ttf 22 3 27.2857 42.2143 77 , 33.9986 8.8680 17.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 78 I -0.0157 8.1385 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 79 ° -0.1819 18.0844 18.0844 -Arial_Bold.ttf 22 3 27.2857 42.2143 80 K -0.1548 37.7641 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 81 H -0.0736 33.3463 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 82 q 10.2300 29.5628 43.4437 -Arial_Bold.ttf 22 3 27.2857 42.2143 83 & -0.1786 38.8117 42.4286 -Arial_Bold.ttf 22 3 27.2857 42.2143 84 ’ 0.5433 8.8680 17.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 85 [ -0.0278 15.2294 53.5411 -Arial_Bold.ttf 22 3 27.2857 42.2143 86 - 23.6269 15.7294 6.9091 -Arial_Bold.ttf 22 3 27.2857 42.2143 87 Y 0.1917 41.0563 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 88 Q -0.6554 41.7857 46.6472 -Arial_Bold.ttf 22 3 27.2857 42.2143 89 " -0.1274 21.5909 15.2294 -Arial_Bold.ttf 22 3 27.2857 42.2143 90 ! -0.1060 8.1385 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 91 x 11.4566 32.4177 30.6732 -Arial_Bold.ttf 22 3 27.2857 42.2143 92 ) 0.0766 14.0000 53.5411 -Arial_Bold.ttf 22 3 27.2857 42.2143 93 = 11.2411 29.2294 19.2835 -Arial_Bold.ttf 22 3 27.2857 42.2143 94 + 7.1900 28.8961 28.8961 -Arial_Bold.ttf 22 3 27.2857 42.2143 95 X 0.1645 38.9935 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 96 » 13.4089 26.9524 26.5563 -Arial_Bold.ttf 22 3 27.2857 42.2143 97 ' -0.1574 8.1385 15.2294 -Arial_Bold.ttf 22 3 27.2857 42.2143 98 ¢ 0.1014 28.7294 54.4372 -Arial_Bold.ttf 22 3 27.2857 42.2143 99 Z 0.1514 34.4805 42.0000 -Arial_Bold.ttf 22 3 27.2857 42.2143 100 > 5.4661 28.0000 31.9026 -Arial_Bold.ttf 22 3 27.2857 42.2143 101 ® -0.3929 43.2294 42.4286 -Arial_Bold.ttf 22 3 27.2857 42.2143 102 © -0.1129 43.9589 42.4286 -Arial_Bold.ttf 22 3 27.2857 42.2143 103 ] -0.0774 15.2294 53.5411 -Arial_Bold.ttf 22 3 27.2857 42.2143 104 é -0.6675 29.4113 42.8961 -Arial_Bold.ttf 22 3 27.2857 42.2143 105 z 11.3983 26.7706 30.6732 -Arial_Bold.ttf 22 3 27.2857 42.2143 106 _ 47.3387 33.4654 5.8615 -Arial_Bold.ttf 22 3 27.2857 42.2143 107 ¥ 0.2780 30.2056 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 1 t -15.4295 18.1169 41.3810 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 2 h -15.7406 27.7857 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 3 a -5.7295 28.8333 32.1169 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 4 n -5.7496 27.7857 31.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 5 P -15.8732 32.0844 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 6 o -5.8758 31.0065 32.1169 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 7 e -5.7061 29.4113 32.1169 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 8 : -4.7677 8.1385 30.6732 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 9 r -5.9321 19.8615 31.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 10 l -15.8674 8.1385 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 11 i -15.9017 8.1385 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 12 1 -15.9791 18.2359 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 13 | -16.0922 5.8615 54.5563 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 14 N -15.9991 33.3463 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 15 f -16.2246 20.6948 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 16 g -5.9700 29.5628 43.6580 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 17 d -16.0400 29.5628 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 18 W -15.9926 54.7706 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 19 s -5.5301 28.3333 32.1169 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 20 c -5.6639 27.5000 32.1169 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 21 u -4.5076 27.7857 30.8874 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 22 3 -16.2017 27.2857 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 23 ~ -0.1728 30.4589 10.8117 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 24 # -15.7965 30.3874 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 25 O -16.5050 40.3420 43.4589 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 26 ` -15.9529 12.7706 8.3203 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 27 @ -16.0672 55.2706 56.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 28 F -16.0825 29.0152 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 29 S -16.9780 33.8615 43.4589 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 30 p -6.0305 29.5628 43.4437 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 31 “ -15.8446 22.4719 17.6883 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 32 % -16.1972 44.9329 43.6580 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 33 £ -16.2596 31.1883 42.4286 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 34 . 18.2066 8.1385 8.1385 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 35 2 -16.0220 27.2857 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 36 5 -15.8148 28.0000 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 37 m -6.1643 44.6104 31.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 38 V -16.2188 38.4935 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 39 6 -16.0036 27.2857 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 40 w -4.6463 45.5065 30.6732 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 41 T -16.0610 33.2511 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 42 M -15.7172 39.5584 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 43 G -16.4974 39.1126 43.4589 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 44 b -16.2331 29.5628 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 45 9 -15.8880 27.2857 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 46 ; -4.7965 8.8680 40.4372 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 47 D -16.0446 35.0909 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 48 L -15.8672 29.9113 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 49 y -4.5620 31.6883 42.4286 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 50 ‘ -15.9089 8.8680 17.6883 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 51 \ -16.0363 17.6883 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 52 R -15.8708 37.0498 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 53 < -10.4931 28.0000 31.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 54 4 -15.9017 29.9589 41.7857 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 55 8 -15.8108 27.2857 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 56 0 -16.0148 27.2857 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 57 A -16.0811 40.5887 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 58 E -16.1696 32.0844 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 59 B -15.8517 35.0909 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 60 v -4.6166 31.6883 30.6732 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 61 k -15.9408 28.5152 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 62 J -15.8953 26.9524 42.7294 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 63 U -16.1700 33.3463 42.7294 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 64 j -15.8029 15.2294 53.7554 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 65 ( -16.0573 14.0000 53.5411 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 66 7 -16.2139 27.2857 41.7857 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 67 § -15.8944 28.5152 54.7706 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 68 $ -19.0713 27.7857 50.8680 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 69 € -16.5012 31.6883 42.9437 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 70 / -15.8082 17.6883 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 71 C -16.8074 36.6537 42.7294 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 72 * -16.0394 19.7424 19.1320 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 73 ” -15.6767 22.4719 17.6883 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 74 ? -16.1932 30.4589 42.2143 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 75 { -16.2741 19.6472 53.9697 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 76 } -16.1627 19.6472 53.9697 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 77 , 17.7760 8.8680 17.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 78 I -15.9732 8.1385 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 79 ° -15.9620 18.0844 18.0844 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 80 K -15.8996 37.7641 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 81 H -16.2817 33.3463 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 82 q -5.9460 29.5628 43.4437 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 83 & -16.1315 38.8117 42.4286 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 84 ’ -16.1220 8.8680 17.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 85 [ -16.2579 15.2294 53.5411 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 86 - 7.8417 15.7294 6.9091 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 87 Y -15.7444 41.0563 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 88 Q -16.6966 41.7857 46.6472 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 89 " -15.8732 21.5909 15.2294 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 90 ! -16.2124 8.1385 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 91 x -4.4487 32.4177 30.6732 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 92 ) -15.9005 14.0000 53.5411 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 93 = -4.7463 29.2294 19.2835 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 94 + -8.7784 28.8961 28.8961 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 95 X -15.9648 38.9935 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 96 » -2.5278 26.9524 26.5563 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 97 ' -15.7398 8.1385 15.2294 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 98 ¢ -15.9551 28.7294 54.4372 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 99 Z -15.8874 34.4805 42.0000 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 100 > -10.5209 28.0000 31.9026 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 101 ® -16.2043 43.2294 42.4286 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 102 © -16.1934 43.9589 42.4286 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 103 ] -16.0968 15.2294 53.5411 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 104 é -16.8635 29.4113 42.8961 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 105 z -4.6015 26.7706 30.6732 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 106 _ 31.5019 33.4654 5.8615 -Arial_Bold.ttf 23 ~ 30.4589 10.8117 107 ¥ -15.8277 30.2056 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 1 t 0.8915 18.1169 41.3810 -Arial_Bold.ttf 24 # 30.3874 42.0000 2 h 0.0774 27.7857 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 3 a 10.1943 28.8333 32.1169 -Arial_Bold.ttf 24 # 30.3874 42.0000 4 n 10.1765 27.7857 31.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 5 P 0.1683 32.0844 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 6 o 10.2248 31.0065 32.1169 -Arial_Bold.ttf 24 # 30.3874 42.0000 7 e 9.8360 29.4113 32.1169 -Arial_Bold.ttf 24 # 30.3874 42.0000 8 : 11.1830 8.1385 30.6732 -Arial_Bold.ttf 24 # 30.3874 42.0000 9 r 10.0452 19.8615 31.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 10 l -0.0012 8.1385 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 11 i -0.1976 8.1385 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 12 1 -0.3679 18.2359 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 13 | 0.1548 5.8615 54.5563 -Arial_Bold.ttf 24 # 30.3874 42.0000 14 N -0.1443 33.3463 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 15 f -0.4274 20.6948 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 16 g 10.0805 29.5628 43.6580 -Arial_Bold.ttf 24 # 30.3874 42.0000 17 d -0.1774 29.5628 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 18 W -0.0871 54.7706 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 19 s 10.1415 28.3333 32.1169 -Arial_Bold.ttf 24 # 30.3874 42.0000 20 c 10.0339 27.5000 32.1169 -Arial_Bold.ttf 24 # 30.3874 42.0000 21 u 11.4282 27.7857 30.8874 -Arial_Bold.ttf 24 # 30.3874 42.0000 22 3 0.0143 27.2857 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 23 ~ 15.7898 30.4589 10.8117 -Arial_Bold.ttf 24 # 30.3874 42.0000 24 # -0.0492 30.3874 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 25 O -0.8568 40.3420 43.4589 -Arial_Bold.ttf 24 # 30.3874 42.0000 26 ` -0.1788 12.7706 8.3203 -Arial_Bold.ttf 24 # 30.3874 42.0000 27 @ -0.1286 55.2706 56.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 28 F -0.1274 29.0152 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 29 S -0.6058 33.8615 43.4589 -Arial_Bold.ttf 24 # 30.3874 42.0000 30 p 10.0279 29.5628 43.4437 -Arial_Bold.ttf 24 # 30.3874 42.0000 31 “ -0.0500 22.4719 17.6883 -Arial_Bold.ttf 24 # 30.3874 42.0000 32 % -0.5964 44.9329 43.6580 -Arial_Bold.ttf 24 # 30.3874 42.0000 33 £ -0.2486 31.1883 42.4286 -Arial_Bold.ttf 24 # 30.3874 42.0000 34 . 34.1022 8.1385 8.1385 -Arial_Bold.ttf 24 # 30.3874 42.0000 35 2 -0.3010 27.2857 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 36 5 -0.1619 28.0000 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 37 m 9.9543 44.6104 31.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 38 V 0.0371 38.4935 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 39 6 -0.2152 27.2857 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 40 w 11.3054 45.5065 30.6732 -Arial_Bold.ttf 24 # 30.3874 42.0000 41 T 0.0488 33.2511 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 42 M -0.2405 39.5584 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 43 G -0.7937 39.1126 43.4589 -Arial_Bold.ttf 24 # 30.3874 42.0000 44 b -0.1002 29.5628 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 45 9 0.0250 27.2857 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 46 ; 11.4404 8.8680 40.4372 -Arial_Bold.ttf 24 # 30.3874 42.0000 47 D -0.2137 35.0909 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 48 L 0.3100 29.9113 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 49 y 11.2064 31.6883 42.4286 -Arial_Bold.ttf 24 # 30.3874 42.0000 50 ‘ 0.1214 8.8680 17.6883 -Arial_Bold.ttf 24 # 30.3874 42.0000 51 \ 0.0950 17.6883 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 52 R 0.0376 37.0498 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 53 < 5.5511 28.0000 31.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 54 4 -0.1276 29.9589 41.7857 -Arial_Bold.ttf 24 # 30.3874 42.0000 55 8 -0.1819 27.2857 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 56 0 0.0969 27.2857 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 57 A -0.1222 40.5887 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 58 E -0.1000 32.0844 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 59 B -0.1649 35.0909 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 60 v 11.3749 31.6883 30.6732 -Arial_Bold.ttf 24 # 30.3874 42.0000 61 k 0.0714 28.5152 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 62 J -0.0714 26.9524 42.7294 -Arial_Bold.ttf 24 # 30.3874 42.0000 63 U 0.2190 33.3463 42.7294 -Arial_Bold.ttf 24 # 30.3874 42.0000 64 j -0.1190 15.2294 53.7554 -Arial_Bold.ttf 24 # 30.3874 42.0000 65 ( 0.2055 14.0000 53.5411 -Arial_Bold.ttf 24 # 30.3874 42.0000 66 7 0.3490 27.2857 41.7857 -Arial_Bold.ttf 24 # 30.3874 42.0000 67 § -0.2476 28.5152 54.7706 -Arial_Bold.ttf 24 # 30.3874 42.0000 68 $ -2.9953 27.7857 50.8680 -Arial_Bold.ttf 24 # 30.3874 42.0000 69 € -0.7021 31.6883 42.9437 -Arial_Bold.ttf 24 # 30.3874 42.0000 70 / 0.2728 17.6883 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 71 C -0.7085 36.6537 42.7294 -Arial_Bold.ttf 24 # 30.3874 42.0000 72 * 0.0457 19.7424 19.1320 -Arial_Bold.ttf 24 # 30.3874 42.0000 73 ” -0.3093 22.4719 17.6883 -Arial_Bold.ttf 24 # 30.3874 42.0000 74 ? -0.0583 30.4589 42.2143 -Arial_Bold.ttf 24 # 30.3874 42.0000 75 { -0.3955 19.6472 53.9697 -Arial_Bold.ttf 24 # 30.3874 42.0000 76 } 0.1486 19.6472 53.9697 -Arial_Bold.ttf 24 # 30.3874 42.0000 77 , 33.9760 8.8680 17.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 78 I -0.1409 8.1385 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 79 ° -0.0929 18.0844 18.0844 -Arial_Bold.ttf 24 # 30.3874 42.0000 80 K -0.1064 37.7641 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 81 H -0.0631 33.3463 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 82 q 10.0329 29.5628 43.4437 -Arial_Bold.ttf 24 # 30.3874 42.0000 83 & -0.2000 38.8117 42.4286 -Arial_Bold.ttf 24 # 30.3874 42.0000 84 ’ -0.0143 8.8680 17.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 85 [ 0.1538 15.2294 53.5411 -Arial_Bold.ttf 24 # 30.3874 42.0000 86 - 23.9429 15.7294 6.9091 -Arial_Bold.ttf 24 # 30.3874 42.0000 87 Y -0.0462 41.0563 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 88 Q -1.1116 41.7857 46.6472 -Arial_Bold.ttf 24 # 30.3874 42.0000 89 " -0.0500 21.5909 15.2294 -Arial_Bold.ttf 24 # 30.3874 42.0000 90 ! 0.0052 8.1385 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 91 x 11.4042 32.4177 30.6732 -Arial_Bold.ttf 24 # 30.3874 42.0000 92 ) -0.0407 14.0000 53.5411 -Arial_Bold.ttf 24 # 30.3874 42.0000 93 = 11.6032 29.2294 19.2835 -Arial_Bold.ttf 24 # 30.3874 42.0000 94 + 7.3198 28.8961 28.8961 -Arial_Bold.ttf 24 # 30.3874 42.0000 95 X -0.1728 38.9935 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 96 » 13.6094 26.9524 26.5563 -Arial_Bold.ttf 24 # 30.3874 42.0000 97 ' 0.0431 8.1385 15.2294 -Arial_Bold.ttf 24 # 30.3874 42.0000 98 ¢ -0.0097 28.7294 54.4372 -Arial_Bold.ttf 24 # 30.3874 42.0000 99 Z 0.2826 34.4805 42.0000 -Arial_Bold.ttf 24 # 30.3874 42.0000 100 > 5.2771 28.0000 31.9026 -Arial_Bold.ttf 24 # 30.3874 42.0000 101 ® -0.2188 43.2294 42.4286 -Arial_Bold.ttf 24 # 30.3874 42.0000 102 © -0.1974 43.9589 42.4286 -Arial_Bold.ttf 24 # 30.3874 42.0000 103 ] -0.1707 15.2294 53.5411 -Arial_Bold.ttf 24 # 30.3874 42.0000 104 é -0.7078 29.4113 42.8961 -Arial_Bold.ttf 24 # 30.3874 42.0000 105 z 11.2314 26.7706 30.6732 -Arial_Bold.ttf 24 # 30.3874 42.0000 106 _ 47.4692 33.4654 5.8615 -Arial_Bold.ttf 24 # 30.3874 42.0000 107 ¥ 0.2964 30.2056 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 1 t 1.7499 18.1169 41.3810 -Arial_Bold.ttf 25 O 40.3420 43.4589 2 h 0.6709 27.7857 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 3 a 10.9975 28.8333 32.1169 -Arial_Bold.ttf 25 O 40.3420 43.4589 4 n 11.1999 27.7857 31.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 5 P 0.4443 32.0844 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 6 o 10.6637 31.0065 32.1169 -Arial_Bold.ttf 25 O 40.3420 43.4589 7 e 10.6683 29.4113 32.1169 -Arial_Bold.ttf 25 O 40.3420 43.4589 8 : 11.9348 8.1385 30.6732 -Arial_Bold.ttf 25 O 40.3420 43.4589 9 r 10.6964 19.8615 31.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 10 l 0.6399 8.1385 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 11 i 0.6461 8.1385 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 12 1 0.9225 18.2359 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 13 | 1.0386 5.8615 54.5563 -Arial_Bold.ttf 25 O 40.3420 43.4589 14 N 0.2102 33.3463 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 15 f 0.5144 20.6948 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 16 g 10.9276 29.5628 43.6580 -Arial_Bold.ttf 25 O 40.3420 43.4589 17 d 0.8808 29.5628 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 18 W 0.9991 54.7706 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 19 s 10.7709 28.3333 32.1169 -Arial_Bold.ttf 25 O 40.3420 43.4589 20 c 10.8235 27.5000 32.1169 -Arial_Bold.ttf 25 O 40.3420 43.4589 21 u 11.9146 27.7857 30.8874 -Arial_Bold.ttf 25 O 40.3420 43.4589 22 3 0.7366 27.2857 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 23 ~ 16.3464 30.4589 10.8117 -Arial_Bold.ttf 25 O 40.3420 43.4589 24 # 0.4687 30.3874 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 25 O 0.1326 40.3420 43.4589 -Arial_Bold.ttf 25 O 40.3420 43.4589 26 ` 0.6794 12.7706 8.3203 -Arial_Bold.ttf 25 O 40.3420 43.4589 27 @ 0.6582 55.2706 56.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 28 F 0.7711 29.0152 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 29 S 0.0448 33.8615 43.4589 -Arial_Bold.ttf 25 O 40.3420 43.4589 30 p 10.6981 29.5628 43.4437 -Arial_Bold.ttf 25 O 40.3420 43.4589 31 “ 0.6763 22.4719 17.6883 -Arial_Bold.ttf 25 O 40.3420 43.4589 32 % 0.4004 44.9329 43.6580 -Arial_Bold.ttf 25 O 40.3420 43.4589 33 £ 0.4340 31.1883 42.4286 -Arial_Bold.ttf 25 O 40.3420 43.4589 34 . 34.5018 8.1385 8.1385 -Arial_Bold.ttf 25 O 40.3420 43.4589 35 2 0.7828 27.2857 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 36 5 1.1485 28.0000 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 37 m 11.0126 44.6104 31.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 38 V 0.8301 38.4935 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 39 6 0.8620 27.2857 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 40 w 12.3305 45.5065 30.6732 -Arial_Bold.ttf 25 O 40.3420 43.4589 41 T 0.5566 33.2511 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 42 M 0.5663 39.5584 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 43 G -0.3109 39.1126 43.4589 -Arial_Bold.ttf 25 O 40.3420 43.4589 44 b 0.9342 29.5628 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 45 9 0.6794 27.2857 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 46 ; 12.0646 8.8680 40.4372 -Arial_Bold.ttf 25 O 40.3420 43.4589 47 D 0.6028 35.0909 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 48 L 0.8308 29.9113 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 49 y 12.1837 31.6883 42.4286 -Arial_Bold.ttf 25 O 40.3420 43.4589 50 ‘ 0.5228 8.8680 17.6883 -Arial_Bold.ttf 25 O 40.3420 43.4589 51 \ 0.5626 17.6883 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 52 R 0.7256 37.0498 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 53 < 5.9791 28.0000 31.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 54 4 0.7554 29.9589 41.7857 -Arial_Bold.ttf 25 O 40.3420 43.4589 55 8 0.6080 27.2857 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 56 0 0.8021 27.2857 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 57 A 0.6223 40.5887 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 58 E 1.0394 32.0844 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 59 B 1.0654 35.0909 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 60 v 11.9146 31.6883 30.6732 -Arial_Bold.ttf 25 O 40.3420 43.4589 61 k 0.5566 28.5152 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 62 J 0.4528 26.9524 42.7294 -Arial_Bold.ttf 25 O 40.3420 43.4589 63 U 0.7290 33.3463 42.7294 -Arial_Bold.ttf 25 O 40.3420 43.4589 64 j 0.6306 15.2294 53.7554 -Arial_Bold.ttf 25 O 40.3420 43.4589 65 ( 0.7392 14.0000 53.5411 -Arial_Bold.ttf 25 O 40.3420 43.4589 66 7 0.9663 27.2857 41.7857 -Arial_Bold.ttf 25 O 40.3420 43.4589 67 § 0.4235 28.5152 54.7706 -Arial_Bold.ttf 25 O 40.3420 43.4589 68 $ -2.2189 27.7857 50.8680 -Arial_Bold.ttf 25 O 40.3420 43.4589 69 € -0.0865 31.6883 42.9437 -Arial_Bold.ttf 25 O 40.3420 43.4589 70 / 0.7156 17.6883 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 71 C 0.3784 36.6537 42.7294 -Arial_Bold.ttf 25 O 40.3420 43.4589 72 * 0.3824 19.7424 19.1320 -Arial_Bold.ttf 25 O 40.3420 43.4589 73 ” 0.7737 22.4719 17.6883 -Arial_Bold.ttf 25 O 40.3420 43.4589 74 ? 0.4080 30.4589 42.2143 -Arial_Bold.ttf 25 O 40.3420 43.4589 75 { 0.4378 19.6472 53.9697 -Arial_Bold.ttf 25 O 40.3420 43.4589 76 } 0.6342 19.6472 53.9697 -Arial_Bold.ttf 25 O 40.3420 43.4589 77 , 34.3940 8.8680 17.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 78 I 0.9463 8.1385 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 79 ° 0.2090 18.0844 18.0844 -Arial_Bold.ttf 25 O 40.3420 43.4589 80 K 0.8023 37.7641 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 81 H 0.7983 33.3463 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 82 q 10.5814 29.5628 43.4437 -Arial_Bold.ttf 25 O 40.3420 43.4589 83 & 0.4697 38.8117 42.4286 -Arial_Bold.ttf 25 O 40.3420 43.4589 84 ’ 0.7580 8.8680 17.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 85 [ 0.5294 15.2294 53.5411 -Arial_Bold.ttf 25 O 40.3420 43.4589 86 - 24.5723 15.7294 6.9091 -Arial_Bold.ttf 25 O 40.3420 43.4589 87 Y 1.0372 41.0563 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 88 Q -0.1593 41.7857 46.6472 -Arial_Bold.ttf 25 O 40.3420 43.4589 89 " 0.6085 21.5909 15.2294 -Arial_Bold.ttf 25 O 40.3420 43.4589 90 ! 0.6892 8.1385 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 91 x 12.0206 32.4177 30.6732 -Arial_Bold.ttf 25 O 40.3420 43.4589 92 ) 0.6780 14.0000 53.5411 -Arial_Bold.ttf 25 O 40.3420 43.4589 93 = 12.4222 29.2294 19.2835 -Arial_Bold.ttf 25 O 40.3420 43.4589 94 + 7.8945 28.8961 28.8961 -Arial_Bold.ttf 25 O 40.3420 43.4589 95 X 0.9646 38.9935 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 96 » 13.9720 26.9524 26.5563 -Arial_Bold.ttf 25 O 40.3420 43.4589 97 ' 0.8666 8.1385 15.2294 -Arial_Bold.ttf 25 O 40.3420 43.4589 98 ¢ 0.4195 28.7294 54.4372 -Arial_Bold.ttf 25 O 40.3420 43.4589 99 Z 0.7030 34.4805 42.0000 -Arial_Bold.ttf 25 O 40.3420 43.4589 100 > 6.4996 28.0000 31.9026 -Arial_Bold.ttf 25 O 40.3420 43.4589 101 ® 0.4273 43.2294 42.4286 -Arial_Bold.ttf 25 O 40.3420 43.4589 102 © 0.4735 43.9589 42.4286 -Arial_Bold.ttf 25 O 40.3420 43.4589 103 ] 0.5385 15.2294 53.5411 -Arial_Bold.ttf 25 O 40.3420 43.4589 104 é 0.0333 29.4113 42.8961 -Arial_Bold.ttf 25 O 40.3420 43.4589 105 z 11.6842 26.7706 30.6732 -Arial_Bold.ttf 25 O 40.3420 43.4589 106 _ 48.1305 33.4654 5.8615 -Arial_Bold.ttf 25 O 40.3420 43.4589 107 ¥ 0.5326 30.2056 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 1 t 0.7357 18.1169 41.3810 -Arial_Bold.ttf 26 ` 12.7706 8.3203 2 h -0.0631 27.7857 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 3 a 10.1748 28.8333 32.1169 -Arial_Bold.ttf 26 ` 12.7706 8.3203 4 n 9.9940 27.7857 31.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 5 P 0.2274 32.0844 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 6 o 10.0831 31.0065 32.1169 -Arial_Bold.ttf 26 ` 12.7706 8.3203 7 e 10.0998 29.4113 32.1169 -Arial_Bold.ttf 26 ` 12.7706 8.3203 8 : 11.3268 8.1385 30.6732 -Arial_Bold.ttf 26 ` 12.7706 8.3203 9 r 10.2883 19.8615 31.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 10 l -0.2548 8.1385 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 11 i 0.0455 8.1385 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 12 1 -0.1417 18.2359 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 13 | -0.0143 5.8615 54.5563 -Arial_Bold.ttf 26 ` 12.7706 8.3203 14 N 0.2645 33.3463 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 15 f -0.1429 20.6948 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 16 g 9.7815 29.5628 43.6580 -Arial_Bold.ttf 26 ` 12.7706 8.3203 17 d -0.0240 29.5628 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 18 W 0.0000 54.7706 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 19 s 9.8343 28.3333 32.1169 -Arial_Bold.ttf 26 ` 12.7706 8.3203 20 c 9.8732 27.5000 32.1169 -Arial_Bold.ttf 26 ` 12.7706 8.3203 21 u 11.2411 27.7857 30.8874 -Arial_Bold.ttf 26 ` 12.7706 8.3203 22 3 -0.1833 27.2857 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 23 ~ 15.9101 30.4589 10.8117 -Arial_Bold.ttf 26 ` 12.7706 8.3203 24 # 0.0226 30.3874 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 25 O -0.7197 40.3420 43.4589 -Arial_Bold.ttf 26 ` 12.7706 8.3203 26 ` 0.0000 12.7706 8.3203 -Arial_Bold.ttf 26 ` 12.7706 8.3203 27 @ -0.3143 55.2706 56.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 28 F -0.2034 29.0152 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 29 S -0.6892 33.8615 43.4589 -Arial_Bold.ttf 26 ` 12.7706 8.3203 30 p 10.0831 29.5628 43.4437 -Arial_Bold.ttf 26 ` 12.7706 8.3203 31 “ 0.1214 22.4719 17.6883 -Arial_Bold.ttf 26 ` 12.7706 8.3203 32 % -0.3169 44.9329 43.6580 -Arial_Bold.ttf 26 ` 12.7706 8.3203 33 £ -0.3976 31.1883 42.4286 -Arial_Bold.ttf 26 ` 12.7706 8.3203 34 . 33.8972 8.1385 8.1385 -Arial_Bold.ttf 26 ` 12.7706 8.3203 35 2 0.0695 27.2857 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 36 5 0.1786 28.0000 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 37 m 10.1188 44.6104 31.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 38 V 0.1333 38.4935 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 39 6 0.1131 27.2857 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 40 w 11.4042 45.5065 30.6732 -Arial_Bold.ttf 26 ` 12.7706 8.3203 41 T 0.0714 33.2511 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 42 M -0.2476 39.5584 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 43 G -0.4239 39.1126 43.4589 -Arial_Bold.ttf 26 ` 12.7706 8.3203 44 b -0.2228 29.5628 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 45 9 0.0000 27.2857 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 46 ; 11.6316 8.8680 40.4372 -Arial_Bold.ttf 26 ` 12.7706 8.3203 47 D -0.0266 35.0909 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 48 L 0.1631 29.9113 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 49 y 11.7134 31.6883 42.4286 -Arial_Bold.ttf 26 ` 12.7706 8.3203 50 ‘ 0.0038 8.8680 17.6883 -Arial_Bold.ttf 26 ` 12.7706 8.3203 51 \ 0.3107 17.6883 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 52 R 0.0131 37.0498 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 53 < 5.4594 28.0000 31.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 54 4 0.2361 29.9589 41.7857 -Arial_Bold.ttf 26 ` 12.7706 8.3203 55 8 0.0060 27.2857 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 56 0 0.1833 27.2857 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 57 A -0.0635 40.5887 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 58 E 0.0119 32.0844 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 59 B 0.1171 35.0909 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 60 v 11.3911 31.6883 30.6732 -Arial_Bold.ttf 26 ` 12.7706 8.3203 61 k 0.1266 28.5152 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 62 J 0.0560 26.9524 42.7294 -Arial_Bold.ttf 26 ` 12.7706 8.3203 63 U 0.2600 33.3463 42.7294 -Arial_Bold.ttf 26 ` 12.7706 8.3203 64 j 0.1440 15.2294 53.7554 -Arial_Bold.ttf 26 ` 12.7706 8.3203 65 ( 0.0857 14.0000 53.5411 -Arial_Bold.ttf 26 ` 12.7706 8.3203 66 7 0.3333 27.2857 41.7857 -Arial_Bold.ttf 26 ` 12.7706 8.3203 67 § -0.1583 28.5152 54.7706 -Arial_Bold.ttf 26 ` 12.7706 8.3203 68 $ -3.2541 27.7857 50.8680 -Arial_Bold.ttf 26 ` 12.7706 8.3203 69 € -0.2913 31.6883 42.9437 -Arial_Bold.ttf 26 ` 12.7706 8.3203 70 / 0.1409 17.6883 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 71 C -0.7449 36.6537 42.7294 -Arial_Bold.ttf 26 ` 12.7706 8.3203 72 * -0.0833 19.7424 19.1320 -Arial_Bold.ttf 26 ` 12.7706 8.3203 73 ” -0.1145 22.4719 17.6883 -Arial_Bold.ttf 26 ` 12.7706 8.3203 74 ? -0.1734 30.4589 42.2143 -Arial_Bold.ttf 26 ` 12.7706 8.3203 75 { -0.0915 19.6472 53.9697 -Arial_Bold.ttf 26 ` 12.7706 8.3203 76 } -0.1045 19.6472 53.9697 -Arial_Bold.ttf 26 ` 12.7706 8.3203 77 , 33.9994 8.8680 17.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 78 I -0.0819 8.1385 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 79 ° -0.4038 18.0844 18.0844 -Arial_Bold.ttf 26 ` 12.7706 8.3203 80 K -0.1774 37.7641 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 81 H -0.0083 33.3463 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 82 q 10.0200 29.5628 43.4437 -Arial_Bold.ttf 26 ` 12.7706 8.3203 83 & 0.1119 38.8117 42.4286 -Arial_Bold.ttf 26 ` 12.7706 8.3203 84 ’ 0.0341 8.8680 17.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 85 [ -0.1274 15.2294 53.5411 -Arial_Bold.ttf 26 ` 12.7706 8.3203 86 - 23.7069 15.7294 6.9091 -Arial_Bold.ttf 26 ` 12.7706 8.3203 87 Y 0.0728 41.0563 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 88 Q -0.5149 41.7857 46.6472 -Arial_Bold.ttf 26 ` 12.7706 8.3203 89 " 0.0298 21.5909 15.2294 -Arial_Bold.ttf 26 ` 12.7706 8.3203 90 ! 0.1833 8.1385 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 91 x 11.3618 32.4177 30.6732 -Arial_Bold.ttf 26 ` 12.7706 8.3203 92 ) 0.0060 14.0000 53.5411 -Arial_Bold.ttf 26 ` 12.7706 8.3203 93 = 11.5816 29.2294 19.2835 -Arial_Bold.ttf 26 ` 12.7706 8.3203 94 + 7.1196 28.8961 28.8961 -Arial_Bold.ttf 26 ` 12.7706 8.3203 95 X 0.0067 38.9935 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 96 » 13.2775 26.9524 26.5563 -Arial_Bold.ttf 26 ` 12.7706 8.3203 97 ' -0.0052 8.1385 15.2294 -Arial_Bold.ttf 26 ` 12.7706 8.3203 98 ¢ 0.1417 28.7294 54.4372 -Arial_Bold.ttf 26 ` 12.7706 8.3203 99 Z -0.1988 34.4805 42.0000 -Arial_Bold.ttf 26 ` 12.7706 8.3203 100 > 5.4154 28.0000 31.9026 -Arial_Bold.ttf 26 ` 12.7706 8.3203 101 ® -0.3742 43.2294 42.4286 -Arial_Bold.ttf 26 ` 12.7706 8.3203 102 © -0.3566 43.9589 42.4286 -Arial_Bold.ttf 26 ` 12.7706 8.3203 103 ] -0.0826 15.2294 53.5411 -Arial_Bold.ttf 26 ` 12.7706 8.3203 104 é -0.5038 29.4113 42.8961 -Arial_Bold.ttf 26 ` 12.7706 8.3203 105 z 11.4042 26.7706 30.6732 -Arial_Bold.ttf 26 ` 12.7706 8.3203 106 _ 47.3177 33.4654 5.8615 -Arial_Bold.ttf 26 ` 12.7706 8.3203 107 ¥ -0.1833 30.2056 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 1 t 1.1827 18.1169 41.3810 -Arial_Bold.ttf 27 @ 55.2706 56.2143 2 h 0.3274 27.7857 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 3 a 10.5574 28.8333 32.1169 -Arial_Bold.ttf 27 @ 55.2706 56.2143 4 n 10.4176 27.7857 31.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 5 P -0.0327 32.0844 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 6 o 10.5241 31.0065 32.1169 -Arial_Bold.ttf 27 @ 55.2706 56.2143 7 e 9.8665 29.4113 32.1169 -Arial_Bold.ttf 27 @ 55.2706 56.2143 8 : 11.2585 8.1385 30.6732 -Arial_Bold.ttf 27 @ 55.2706 56.2143 9 r 10.4448 19.8615 31.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 10 l 0.3353 8.1385 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 11 i 0.4812 8.1385 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 12 1 0.2220 18.2359 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 13 | 0.1331 5.8615 54.5563 -Arial_Bold.ttf 27 @ 55.2706 56.2143 14 N 0.2435 33.3463 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 15 f -0.0170 20.6948 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 16 g 10.5536 29.5628 43.6580 -Arial_Bold.ttf 27 @ 55.2706 56.2143 17 d -0.1679 29.5628 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 18 W 0.1331 54.7706 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 19 s 10.1017 28.3333 32.1169 -Arial_Bold.ttf 27 @ 55.2706 56.2143 20 c 10.1903 27.5000 32.1169 -Arial_Bold.ttf 27 @ 55.2706 56.2143 21 u 11.2883 27.7857 30.8874 -Arial_Bold.ttf 27 @ 55.2706 56.2143 22 3 -0.1010 27.2857 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 23 ~ 16.0491 30.4589 10.8117 -Arial_Bold.ttf 27 @ 55.2706 56.2143 24 # 0.0571 30.3874 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 25 O -0.6471 40.3420 43.4589 -Arial_Bold.ttf 27 @ 55.2706 56.2143 26 ` 0.2124 12.7706 8.3203 -Arial_Bold.ttf 27 @ 55.2706 56.2143 27 @ 0.1238 55.2706 56.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 28 F 0.2226 29.0152 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 29 S -0.4558 33.8615 43.4589 -Arial_Bold.ttf 27 @ 55.2706 56.2143 30 p 10.5905 29.5628 43.4437 -Arial_Bold.ttf 27 @ 55.2706 56.2143 31 “ 0.1247 22.4719 17.6883 -Arial_Bold.ttf 27 @ 55.2706 56.2143 32 % 0.3002 44.9329 43.6580 -Arial_Bold.ttf 27 @ 55.2706 56.2143 33 £ 0.1026 31.1883 42.4286 -Arial_Bold.ttf 27 @ 55.2706 56.2143 34 . 34.3595 8.1385 8.1385 -Arial_Bold.ttf 27 @ 55.2706 56.2143 35 2 0.3078 27.2857 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 36 5 0.4784 28.0000 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 37 m 10.6393 44.6104 31.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 38 V 0.2988 38.4935 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 39 6 0.2093 27.2857 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 40 w 11.5814 45.5065 30.6732 -Arial_Bold.ttf 27 @ 55.2706 56.2143 41 T -0.2516 33.2511 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 42 M -0.3413 39.5584 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 43 G -0.2364 39.1126 43.4589 -Arial_Bold.ttf 27 @ 55.2706 56.2143 44 b 0.0839 29.5628 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 45 9 0.0714 27.2857 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 46 ; 11.4228 8.8680 40.4372 -Arial_Bold.ttf 27 @ 55.2706 56.2143 47 D 0.3402 35.0909 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 48 L 0.1248 29.9113 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 49 y 11.8445 31.6883 42.4286 -Arial_Bold.ttf 27 @ 55.2706 56.2143 50 ‘ 0.5495 8.8680 17.6883 -Arial_Bold.ttf 27 @ 55.2706 56.2143 51 \ 0.2943 17.6883 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 52 R 0.3800 37.0498 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 53 < 5.8866 28.0000 31.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 54 4 0.4935 29.9589 41.7857 -Arial_Bold.ttf 27 @ 55.2706 56.2143 55 8 -0.0195 27.2857 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 56 0 0.5219 27.2857 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 57 A 0.1740 40.5887 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 58 E 0.0855 32.0844 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 59 B 0.6145 35.0909 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 60 v 11.4949 31.6883 30.6732 -Arial_Bold.ttf 27 @ 55.2706 56.2143 61 k 0.4318 28.5152 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 62 J 0.1798 26.9524 42.7294 -Arial_Bold.ttf 27 @ 55.2706 56.2143 63 U 0.0147 33.3463 42.7294 -Arial_Bold.ttf 27 @ 55.2706 56.2143 64 j 0.3728 15.2294 53.7554 -Arial_Bold.ttf 27 @ 55.2706 56.2143 65 ( 0.0740 14.0000 53.5411 -Arial_Bold.ttf 27 @ 55.2706 56.2143 66 7 0.4740 27.2857 41.7857 -Arial_Bold.ttf 27 @ 55.2706 56.2143 67 § -0.2236 28.5152 54.7706 -Arial_Bold.ttf 27 @ 55.2706 56.2143 68 $ -2.5539 27.7857 50.8680 -Arial_Bold.ttf 27 @ 55.2706 56.2143 69 € -0.2521 31.6883 42.9437 -Arial_Bold.ttf 27 @ 55.2706 56.2143 70 / 0.0200 17.6883 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 71 C -0.6594 36.6537 42.7294 -Arial_Bold.ttf 27 @ 55.2706 56.2143 72 * 0.0512 19.7424 19.1320 -Arial_Bold.ttf 27 @ 55.2706 56.2143 73 ” 0.1260 22.4719 17.6883 -Arial_Bold.ttf 27 @ 55.2706 56.2143 74 ? -0.2431 30.4589 42.2143 -Arial_Bold.ttf 27 @ 55.2706 56.2143 75 { -0.3964 19.6472 53.9697 -Arial_Bold.ttf 27 @ 55.2706 56.2143 76 } 0.1207 19.6472 53.9697 -Arial_Bold.ttf 27 @ 55.2706 56.2143 77 , 33.9198 8.8680 17.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 78 I 0.1196 8.1385 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 79 ° -0.1534 18.0844 18.0844 -Arial_Bold.ttf 27 @ 55.2706 56.2143 80 K 0.0089 37.7641 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 81 H 0.2165 33.3463 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 82 q 10.2579 29.5628 43.4437 -Arial_Bold.ttf 27 @ 55.2706 56.2143 83 & 0.0286 38.8117 42.4286 -Arial_Bold.ttf 27 @ 55.2706 56.2143 84 ’ 0.2883 8.8680 17.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 85 [ 0.1139 15.2294 53.5411 -Arial_Bold.ttf 27 @ 55.2706 56.2143 86 - 24.0162 15.7294 6.9091 -Arial_Bold.ttf 27 @ 55.2706 56.2143 87 Y 0.4333 41.0563 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 88 Q -0.5256 41.7857 46.6472 -Arial_Bold.ttf 27 @ 55.2706 56.2143 89 " -0.0100 21.5909 15.2294 -Arial_Bold.ttf 27 @ 55.2706 56.2143 90 ! 0.0212 8.1385 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 91 x 11.5873 32.4177 30.6732 -Arial_Bold.ttf 27 @ 55.2706 56.2143 92 ) 0.3639 14.0000 53.5411 -Arial_Bold.ttf 27 @ 55.2706 56.2143 93 = 11.2038 29.2294 19.2835 -Arial_Bold.ttf 27 @ 55.2706 56.2143 94 + 7.8438 28.8961 28.8961 -Arial_Bold.ttf 27 @ 55.2706 56.2143 95 X 0.3117 38.9935 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 96 » 14.0729 26.9524 26.5563 -Arial_Bold.ttf 27 @ 55.2706 56.2143 97 ' 0.7278 8.1385 15.2294 -Arial_Bold.ttf 27 @ 55.2706 56.2143 98 ¢ 0.3935 28.7294 54.4372 -Arial_Bold.ttf 27 @ 55.2706 56.2143 99 Z 0.7425 34.4805 42.0000 -Arial_Bold.ttf 27 @ 55.2706 56.2143 100 > 5.6737 28.0000 31.9026 -Arial_Bold.ttf 27 @ 55.2706 56.2143 101 ® -0.2405 43.2294 42.4286 -Arial_Bold.ttf 27 @ 55.2706 56.2143 102 © 0.0839 43.9589 42.4286 -Arial_Bold.ttf 27 @ 55.2706 56.2143 103 ] 0.2417 15.2294 53.5411 -Arial_Bold.ttf 27 @ 55.2706 56.2143 104 é -0.1393 29.4113 42.8961 -Arial_Bold.ttf 27 @ 55.2706 56.2143 105 z 11.4352 26.7706 30.6732 -Arial_Bold.ttf 27 @ 55.2706 56.2143 106 _ 47.5016 33.4654 5.8615 -Arial_Bold.ttf 27 @ 55.2706 56.2143 107 ¥ -0.0242 30.2056 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 1 t 0.7278 18.1169 41.3810 -Arial_Bold.ttf 28 F 29.0152 42.0000 2 h 0.0462 27.7857 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 3 a 9.9415 28.8333 32.1169 -Arial_Bold.ttf 28 F 29.0152 42.0000 4 n 10.1422 27.7857 31.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 5 P -0.1631 32.0844 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 6 o 10.0767 31.0065 32.1169 -Arial_Bold.ttf 28 F 29.0152 42.0000 7 e 9.9305 29.4113 32.1169 -Arial_Bold.ttf 28 F 29.0152 42.0000 8 : 11.3449 8.1385 30.6732 -Arial_Bold.ttf 28 F 29.0152 42.0000 9 r 10.1772 19.8615 31.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 10 l 0.4088 8.1385 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 11 i -0.3242 8.1385 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 12 1 -0.1131 18.2359 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 13 | 0.0135 5.8615 54.5563 -Arial_Bold.ttf 28 F 29.0152 42.0000 14 N 0.0440 33.3463 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 15 f -0.0219 20.6948 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 16 g 10.2821 29.5628 43.6580 -Arial_Bold.ttf 28 F 29.0152 42.0000 17 d -0.1705 29.5628 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 18 W 0.0996 54.7706 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 19 s 10.0246 28.3333 32.1169 -Arial_Bold.ttf 28 F 29.0152 42.0000 20 c 10.0103 27.5000 32.1169 -Arial_Bold.ttf 28 F 29.0152 42.0000 21 u 11.1630 27.7857 30.8874 -Arial_Bold.ttf 28 F 29.0152 42.0000 22 3 0.0955 27.2857 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 23 ~ 15.8815 30.4589 10.8117 -Arial_Bold.ttf 28 F 29.0152 42.0000 24 # -0.1940 30.3874 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 25 O -0.6794 40.3420 43.4589 -Arial_Bold.ttf 28 F 29.0152 42.0000 26 ` -0.3957 12.7706 8.3203 -Arial_Bold.ttf 28 F 29.0152 42.0000 27 @ -0.0581 55.2706 56.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 28 F -0.0219 29.0152 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 29 S -0.9582 33.8615 43.4589 -Arial_Bold.ttf 28 F 29.0152 42.0000 30 p 10.0246 29.5628 43.4437 -Arial_Bold.ttf 28 F 29.0152 42.0000 31 “ -0.1010 22.4719 17.6883 -Arial_Bold.ttf 28 F 29.0152 42.0000 32 % 0.0326 44.9329 43.6580 -Arial_Bold.ttf 28 F 29.0152 42.0000 33 £ -0.1103 31.1883 42.4286 -Arial_Bold.ttf 28 F 29.0152 42.0000 34 . 33.7160 8.1385 8.1385 -Arial_Bold.ttf 28 F 29.0152 42.0000 35 2 0.0143 27.2857 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 36 5 0.1869 28.0000 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 37 m 9.9381 44.6104 31.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 38 V -0.0917 38.4935 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 39 6 -0.0417 27.2857 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 40 w 11.4266 45.5065 30.6732 -Arial_Bold.ttf 28 F 29.0152 42.0000 41 T 0.2943 33.2511 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 42 M 0.0597 39.5584 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 43 G -0.5254 39.1126 43.4589 -Arial_Bold.ttf 28 F 29.0152 42.0000 44 b -0.2976 29.5628 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 45 9 0.0955 27.2857 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 46 ; 11.1728 8.8680 40.4372 -Arial_Bold.ttf 28 F 29.0152 42.0000 47 D 0.1000 35.0909 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 48 L -0.0947 29.9113 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 49 y 11.2314 31.6883 42.4286 -Arial_Bold.ttf 28 F 29.0152 42.0000 50 ‘ 0.1135 8.8680 17.6883 -Arial_Bold.ttf 28 F 29.0152 42.0000 51 \ -0.2052 17.6883 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 52 R 0.3716 37.0498 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 53 < 5.3185 28.0000 31.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 54 4 0.0095 29.9589 41.7857 -Arial_Bold.ttf 28 F 29.0152 42.0000 55 8 -0.0695 27.2857 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 56 0 -0.0214 27.2857 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 57 A -0.0819 40.5887 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 58 E 0.1357 32.0844 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 59 B 0.0631 35.0909 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 60 v 11.2637 31.6883 30.6732 -Arial_Bold.ttf 28 F 29.0152 42.0000 61 k 0.0371 28.5152 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 62 J -0.0097 26.9524 42.7294 -Arial_Bold.ttf 28 F 29.0152 42.0000 63 U -0.0657 33.3463 42.7294 -Arial_Bold.ttf 28 F 29.0152 42.0000 64 j 0.0045 15.2294 53.7554 -Arial_Bold.ttf 28 F 29.0152 42.0000 65 ( 0.0947 14.0000 53.5411 -Arial_Bold.ttf 28 F 29.0152 42.0000 66 7 0.4847 27.2857 41.7857 -Arial_Bold.ttf 28 F 29.0152 42.0000 67 § -0.4488 28.5152 54.7706 -Arial_Bold.ttf 28 F 29.0152 42.0000 68 $ -2.9486 27.7857 50.8680 -Arial_Bold.ttf 28 F 29.0152 42.0000 69 € -0.8023 31.6883 42.9437 -Arial_Bold.ttf 28 F 29.0152 42.0000 70 / -0.0865 17.6883 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 71 C -0.9894 36.6537 42.7294 -Arial_Bold.ttf 28 F 29.0152 42.0000 72 * 0.0798 19.7424 19.1320 -Arial_Bold.ttf 28 F 29.0152 42.0000 73 ” -0.1871 22.4719 17.6883 -Arial_Bold.ttf 28 F 29.0152 42.0000 74 ? 0.0931 30.4589 42.2143 -Arial_Bold.ttf 28 F 29.0152 42.0000 75 { -0.2083 19.6472 53.9697 -Arial_Bold.ttf 28 F 29.0152 42.0000 76 } -0.3264 19.6472 53.9697 -Arial_Bold.ttf 28 F 29.0152 42.0000 77 , 33.6931 8.8680 17.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 78 I 0.1312 8.1385 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 79 ° -0.3195 18.0844 18.0844 -Arial_Bold.ttf 28 F 29.0152 42.0000 80 K 0.0143 37.7641 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 81 H 0.1176 33.3463 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 82 q 10.1639 29.5628 43.4437 -Arial_Bold.ttf 28 F 29.0152 42.0000 83 & 0.0145 38.8117 42.4286 -Arial_Bold.ttf 28 F 29.0152 42.0000 84 ’ -0.1683 8.8680 17.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 85 [ -0.0514 15.2294 53.5411 -Arial_Bold.ttf 28 F 29.0152 42.0000 86 - 23.8186 15.7294 6.9091 -Arial_Bold.ttf 28 F 29.0152 42.0000 87 Y 0.1052 41.0563 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 88 Q -0.8366 41.7857 46.6472 -Arial_Bold.ttf 28 F 29.0152 42.0000 89 " -0.1845 21.5909 15.2294 -Arial_Bold.ttf 28 F 29.0152 42.0000 90 ! -0.1552 8.1385 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 91 x 11.4080 32.4177 30.6732 -Arial_Bold.ttf 28 F 29.0152 42.0000 92 ) 0.0424 14.0000 53.5411 -Arial_Bold.ttf 28 F 29.0152 42.0000 93 = 11.2768 29.2294 19.2835 -Arial_Bold.ttf 28 F 29.0152 42.0000 94 + 7.4841 28.8961 28.8961 -Arial_Bold.ttf 28 F 29.0152 42.0000 95 X 0.0143 38.9935 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 96 » 13.0991 26.9524 26.5563 -Arial_Bold.ttf 28 F 29.0152 42.0000 97 ' 0.0895 8.1385 15.2294 -Arial_Bold.ttf 28 F 29.0152 42.0000 98 ¢ -0.1157 28.7294 54.4372 -Arial_Bold.ttf 28 F 29.0152 42.0000 99 Z -0.2288 34.4805 42.0000 -Arial_Bold.ttf 28 F 29.0152 42.0000 100 > 5.0663 28.0000 31.9026 -Arial_Bold.ttf 28 F 29.0152 42.0000 101 ® -0.2345 43.2294 42.4286 -Arial_Bold.ttf 28 F 29.0152 42.0000 102 © 0.1314 43.9589 42.4286 -Arial_Bold.ttf 28 F 29.0152 42.0000 103 ] -0.1781 15.2294 53.5411 -Arial_Bold.ttf 28 F 29.0152 42.0000 104 é -0.4961 29.4113 42.8961 -Arial_Bold.ttf 28 F 29.0152 42.0000 105 z 11.5618 26.7706 30.6732 -Arial_Bold.ttf 28 F 29.0152 42.0000 106 _ 47.8275 33.4654 5.8615 -Arial_Bold.ttf 28 F 29.0152 42.0000 107 ¥ -0.0857 30.2056 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 1 t 1.4628 18.1169 41.3810 -Arial_Bold.ttf 29 S 33.8615 43.4589 2 h 0.6618 27.7857 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 3 a 10.7574 28.8333 32.1169 -Arial_Bold.ttf 29 S 33.8615 43.4589 4 n 10.7998 27.7857 31.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 5 P 0.5854 32.0844 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 6 o 10.7754 31.0065 32.1169 -Arial_Bold.ttf 29 S 33.8615 43.4589 7 e 10.7852 29.4113 32.1169 -Arial_Bold.ttf 29 S 33.8615 43.4589 8 : 12.1396 8.1385 30.6732 -Arial_Bold.ttf 29 S 33.8615 43.4589 9 r 10.8268 19.8615 31.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 10 l 0.9425 8.1385 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 11 i 0.8866 8.1385 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 12 1 0.8544 18.2359 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 13 | 0.8054 5.8615 54.5563 -Arial_Bold.ttf 29 S 33.8615 43.4589 14 N 0.8614 33.3463 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 15 f 0.2544 20.6948 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 16 g 10.8588 29.5628 43.6580 -Arial_Bold.ttf 29 S 33.8615 43.4589 17 d 0.4792 29.5628 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 18 W 0.9211 54.7706 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 19 s 10.8723 28.3333 32.1169 -Arial_Bold.ttf 29 S 33.8615 43.4589 20 c 10.8276 27.5000 32.1169 -Arial_Bold.ttf 29 S 33.8615 43.4589 21 u 11.9801 27.7857 30.8874 -Arial_Bold.ttf 29 S 33.8615 43.4589 22 3 1.1015 27.2857 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 23 ~ 16.5050 30.4589 10.8117 -Arial_Bold.ttf 29 S 33.8615 43.4589 24 # 0.4709 30.3874 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 25 O -0.0234 40.3420 43.4589 -Arial_Bold.ttf 29 S 33.8615 43.4589 26 ` 0.8354 12.7706 8.3203 -Arial_Bold.ttf 29 S 33.8615 43.4589 27 @ 0.5985 55.2706 56.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 28 F 0.9166 29.0152 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 29 S -0.0181 33.8615 43.4589 -Arial_Bold.ttf 29 S 33.8615 43.4589 30 p 10.9366 29.5628 43.4437 -Arial_Bold.ttf 29 S 33.8615 43.4589 31 “ 0.8249 22.4719 17.6883 -Arial_Bold.ttf 29 S 33.8615 43.4589 32 % 0.4749 44.9329 43.6580 -Arial_Bold.ttf 29 S 33.8615 43.4589 33 £ 0.3969 31.1883 42.4286 -Arial_Bold.ttf 29 S 33.8615 43.4589 34 . 34.4278 8.1385 8.1385 -Arial_Bold.ttf 29 S 33.8615 43.4589 35 2 0.4852 27.2857 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 36 5 1.0223 28.0000 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 37 m 10.9066 44.6104 31.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 38 V 0.7354 38.4935 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 39 6 0.7606 27.2857 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 40 w 12.1337 45.5065 30.6732 -Arial_Bold.ttf 29 S 33.8615 43.4589 41 T 0.7832 33.2511 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 42 M 0.8749 39.5584 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 43 G -0.1742 39.1126 43.4589 -Arial_Bold.ttf 29 S 33.8615 43.4589 44 b 0.6892 29.5628 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 45 9 0.6356 27.2857 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 46 ; 11.8789 8.8680 40.4372 -Arial_Bold.ttf 29 S 33.8615 43.4589 47 D 0.9547 35.0909 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 48 L 1.0023 29.9113 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 49 y 12.0563 31.6883 42.4286 -Arial_Bold.ttf 29 S 33.8615 43.4589 50 ‘ 1.0499 8.8680 17.6883 -Arial_Bold.ttf 29 S 33.8615 43.4589 51 \ 0.7302 17.6883 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 52 R 0.9372 37.0498 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 53 < 6.2351 28.0000 31.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 54 4 0.9475 29.9589 41.7857 -Arial_Bold.ttf 29 S 33.8615 43.4589 55 8 0.5052 27.2857 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 56 0 0.6787 27.2857 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 57 A 1.0128 40.5887 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 58 E 0.6532 32.0844 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 59 B 0.7439 35.0909 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 60 v 12.4734 31.6883 30.6732 -Arial_Bold.ttf 29 S 33.8615 43.4589 61 k 1.1220 28.5152 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 62 J 0.8745 26.9524 42.7294 -Arial_Bold.ttf 29 S 33.8615 43.4589 63 U 0.8278 33.3463 42.7294 -Arial_Bold.ttf 29 S 33.8615 43.4589 64 j 0.2578 15.2294 53.7554 -Arial_Bold.ttf 29 S 33.8615 43.4589 65 ( 0.5911 14.0000 53.5411 -Arial_Bold.ttf 29 S 33.8615 43.4589 66 7 0.8299 27.2857 41.7857 -Arial_Bold.ttf 29 S 33.8615 43.4589 67 § 0.3066 28.5152 54.7706 -Arial_Bold.ttf 29 S 33.8615 43.4589 68 $ -2.5735 27.7857 50.8680 -Arial_Bold.ttf 29 S 33.8615 43.4589 69 € 0.4509 31.6883 42.9437 -Arial_Bold.ttf 29 S 33.8615 43.4589 70 / 0.6137 17.6883 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 71 C -0.3137 36.6537 42.7294 -Arial_Bold.ttf 29 S 33.8615 43.4589 72 * 0.7944 19.7424 19.1320 -Arial_Bold.ttf 29 S 33.8615 43.4589 73 ” 0.9582 22.4719 17.6883 -Arial_Bold.ttf 29 S 33.8615 43.4589 74 ? 0.3999 30.4589 42.2143 -Arial_Bold.ttf 29 S 33.8615 43.4589 75 { 0.3552 19.6472 53.9697 -Arial_Bold.ttf 29 S 33.8615 43.4589 76 } 0.8473 19.6472 53.9697 -Arial_Bold.ttf 29 S 33.8615 43.4589 77 , 34.2141 8.8680 17.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 78 I 0.7542 8.1385 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 79 ° 0.4780 18.0844 18.0844 -Arial_Bold.ttf 29 S 33.8615 43.4589 80 K 1.0342 37.7641 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 81 H 0.4552 33.3463 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 82 q 10.9419 29.5628 43.4437 -Arial_Bold.ttf 29 S 33.8615 43.4589 83 & 0.6425 38.8117 42.4286 -Arial_Bold.ttf 29 S 33.8615 43.4589 84 ’ 0.7794 8.8680 17.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 85 [ 0.7366 15.2294 53.5411 -Arial_Bold.ttf 29 S 33.8615 43.4589 86 - 24.5792 15.7294 6.9091 -Arial_Bold.ttf 29 S 33.8615 43.4589 87 Y 0.5923 41.0563 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 88 Q -0.2607 41.7857 46.6472 -Arial_Bold.ttf 29 S 33.8615 43.4589 89 " 0.8294 21.5909 15.2294 -Arial_Bold.ttf 29 S 33.8615 43.4589 90 ! 0.7997 8.1385 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 91 x 11.7261 32.4177 30.6732 -Arial_Bold.ttf 29 S 33.8615 43.4589 92 ) 0.5573 14.0000 53.5411 -Arial_Bold.ttf 29 S 33.8615 43.4589 93 = 12.2305 29.2294 19.2835 -Arial_Bold.ttf 29 S 33.8615 43.4589 94 + 7.8752 28.8961 28.8961 -Arial_Bold.ttf 29 S 33.8615 43.4589 95 X 0.2609 38.9935 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 96 » 14.3431 26.9524 26.5563 -Arial_Bold.ttf 29 S 33.8615 43.4589 97 ' 0.8084 8.1385 15.2294 -Arial_Bold.ttf 29 S 33.8615 43.4589 98 ¢ 1.0453 28.7294 54.4372 -Arial_Bold.ttf 29 S 33.8615 43.4589 99 Z 0.6110 34.4805 42.0000 -Arial_Bold.ttf 29 S 33.8615 43.4589 100 > 6.0407 28.0000 31.9026 -Arial_Bold.ttf 29 S 33.8615 43.4589 101 ® 0.4985 43.2294 42.4286 -Arial_Bold.ttf 29 S 33.8615 43.4589 102 © 0.6282 43.9589 42.4286 -Arial_Bold.ttf 29 S 33.8615 43.4589 103 ] 0.8128 15.2294 53.5411 -Arial_Bold.ttf 29 S 33.8615 43.4589 104 é -0.0335 29.4113 42.8961 -Arial_Bold.ttf 29 S 33.8615 43.4589 105 z 12.2180 26.7706 30.6732 -Arial_Bold.ttf 29 S 33.8615 43.4589 106 _ 47.9793 33.4654 5.8615 -Arial_Bold.ttf 29 S 33.8615 43.4589 107 ¥ 0.8378 30.2056 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 1 t -9.1686 18.1169 41.3810 -Arial_Bold.ttf 30 p 29.5628 43.4437 2 h -10.1891 27.7857 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 3 a 0.0319 28.8333 32.1169 -Arial_Bold.ttf 30 p 29.5628 43.4437 4 n -0.0917 27.7857 31.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 5 P -10.1966 32.0844 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 6 o 0.1728 31.0065 32.1169 -Arial_Bold.ttf 30 p 29.5628 43.4437 7 e 0.5002 29.4113 32.1169 -Arial_Bold.ttf 30 p 29.5628 43.4437 8 : 1.0687 8.1385 30.6732 -Arial_Bold.ttf 30 p 29.5628 43.4437 9 r -0.3062 19.8615 31.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 10 l -10.2443 8.1385 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 11 i -10.1298 8.1385 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 12 1 -9.8329 18.2359 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 13 | -9.6479 5.8615 54.5563 -Arial_Bold.ttf 30 p 29.5628 43.4437 14 N -10.3522 33.3463 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 15 f -10.4450 20.6948 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 16 g -0.2510 29.5628 43.6580 -Arial_Bold.ttf 30 p 29.5628 43.4437 17 d -10.2488 29.5628 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 18 W -10.1748 54.7706 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 19 s 0.0248 28.3333 32.1169 -Arial_Bold.ttf 30 p 29.5628 43.4437 20 c -0.0976 27.5000 32.1169 -Arial_Bold.ttf 30 p 29.5628 43.4437 21 u 1.1459 27.7857 30.8874 -Arial_Bold.ttf 30 p 29.5628 43.4437 22 3 -9.9769 27.2857 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 23 ~ 5.6244 30.4589 10.8117 -Arial_Bold.ttf 30 p 29.5628 43.4437 24 # -9.8569 30.3874 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 25 O -10.6995 40.3420 43.4589 -Arial_Bold.ttf 30 p 29.5628 43.4437 26 ` -9.7801 12.7706 8.3203 -Arial_Bold.ttf 30 p 29.5628 43.4437 27 @ -10.4041 55.2706 56.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 28 F -10.2176 29.0152 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 29 S -10.9475 33.8615 43.4589 -Arial_Bold.ttf 30 p 29.5628 43.4437 30 p -0.2690 29.5628 43.4437 -Arial_Bold.ttf 30 p 29.5628 43.4437 31 “ -9.8037 22.4719 17.6883 -Arial_Bold.ttf 30 p 29.5628 43.4437 32 % -10.2903 44.9329 43.6580 -Arial_Bold.ttf 30 p 29.5628 43.4437 33 £ -10.4169 31.1883 42.4286 -Arial_Bold.ttf 30 p 29.5628 43.4437 34 . 23.8512 8.1385 8.1385 -Arial_Bold.ttf 30 p 29.5628 43.4437 35 2 -10.1422 27.2857 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 36 5 -9.4946 28.0000 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 37 m -0.1500 44.6104 31.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 38 V -10.1674 38.4935 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 39 6 -10.2300 27.2857 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 40 w 1.2906 45.5065 30.6732 -Arial_Bold.ttf 30 p 29.5628 43.4437 41 T -10.3216 33.2511 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 42 M -9.8589 39.5584 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 43 G -10.9761 39.1126 43.4589 -Arial_Bold.ttf 30 p 29.5628 43.4437 44 b -9.9633 29.5628 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 45 9 -10.2665 27.2857 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 46 ; 1.3271 8.8680 40.4372 -Arial_Bold.ttf 30 p 29.5628 43.4437 47 D -10.1929 35.0909 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 48 L -10.0877 29.9113 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 49 y 1.1390 31.6883 42.4286 -Arial_Bold.ttf 30 p 29.5628 43.4437 50 ‘ -10.0488 8.8680 17.6883 -Arial_Bold.ttf 30 p 29.5628 43.4437 51 \ -10.1557 17.6883 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 52 R -10.1117 37.0498 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 53 < -4.6737 28.0000 31.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 54 4 -9.8817 29.9589 41.7857 -Arial_Bold.ttf 30 p 29.5628 43.4437 55 8 -10.2522 27.2857 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 56 0 -9.8307 27.2857 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 57 A -10.3347 40.5887 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 58 E -10.0079 32.0844 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 59 B -10.1331 35.0909 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 60 v 0.9544 31.6883 30.6732 -Arial_Bold.ttf 30 p 29.5628 43.4437 61 k -9.9903 28.5152 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 62 J -10.0831 26.9524 42.7294 -Arial_Bold.ttf 30 p 29.5628 43.4437 63 U -9.6996 33.3463 42.7294 -Arial_Bold.ttf 30 p 29.5628 43.4437 64 j -10.1748 15.2294 53.7554 -Arial_Bold.ttf 30 p 29.5628 43.4437 65 ( -9.8055 14.0000 53.5411 -Arial_Bold.ttf 30 p 29.5628 43.4437 66 7 -10.1165 27.2857 41.7857 -Arial_Bold.ttf 30 p 29.5628 43.4437 67 § -10.3019 28.5152 54.7706 -Arial_Bold.ttf 30 p 29.5628 43.4437 68 $ -12.9420 27.7857 50.8680 -Arial_Bold.ttf 30 p 29.5628 43.4437 69 € -10.7562 31.6883 42.9437 -Arial_Bold.ttf 30 p 29.5628 43.4437 70 / -9.6841 17.6883 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 71 C -10.7911 36.6537 42.7294 -Arial_Bold.ttf 30 p 29.5628 43.4437 72 * -9.6517 19.7424 19.1320 -Arial_Bold.ttf 30 p 29.5628 43.4437 73 ” -10.3938 22.4719 17.6883 -Arial_Bold.ttf 30 p 29.5628 43.4437 74 ? -10.1810 30.4589 42.2143 -Arial_Bold.ttf 30 p 29.5628 43.4437 75 { -10.6893 19.6472 53.9697 -Arial_Bold.ttf 30 p 29.5628 43.4437 76 } -10.4345 19.6472 53.9697 -Arial_Bold.ttf 30 p 29.5628 43.4437 77 , 23.7512 8.8680 17.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 78 I -9.9539 8.1385 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 79 ° -10.3436 18.0844 18.0844 -Arial_Bold.ttf 30 p 29.5628 43.4437 80 K -10.1579 37.7641 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 81 H -9.8062 33.3463 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 82 q -0.0117 29.5628 43.4437 -Arial_Bold.ttf 30 p 29.5628 43.4437 83 & -10.2208 38.8117 42.4286 -Arial_Bold.ttf 30 p 29.5628 43.4437 84 ’ -10.1650 8.8680 17.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 85 [ -10.0527 15.2294 53.5411 -Arial_Bold.ttf 30 p 29.5628 43.4437 86 - 13.3886 15.7294 6.9091 -Arial_Bold.ttf 30 p 29.5628 43.4437 87 Y -10.0772 41.0563 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 88 Q -10.7209 41.7857 46.6472 -Arial_Bold.ttf 30 p 29.5628 43.4437 89 " -10.3157 21.5909 15.2294 -Arial_Bold.ttf 30 p 29.5628 43.4437 90 ! -9.9422 8.1385 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 91 x 1.1858 32.4177 30.6732 -Arial_Bold.ttf 30 p 29.5628 43.4437 92 ) -10.1877 14.0000 53.5411 -Arial_Bold.ttf 30 p 29.5628 43.4437 93 = 1.4080 29.2294 19.2835 -Arial_Bold.ttf 30 p 29.5628 43.4437 94 + -2.9376 28.8961 28.8961 -Arial_Bold.ttf 30 p 29.5628 43.4437 95 X -9.9024 38.9935 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 96 » 3.1482 26.9524 26.5563 -Arial_Bold.ttf 30 p 29.5628 43.4437 97 ' -9.9367 8.1385 15.2294 -Arial_Bold.ttf 30 p 29.5628 43.4437 98 ¢ -10.0117 28.7294 54.4372 -Arial_Bold.ttf 30 p 29.5628 43.4437 99 Z -10.1391 34.4805 42.0000 -Arial_Bold.ttf 30 p 29.5628 43.4437 100 > -4.5535 28.0000 31.9026 -Arial_Bold.ttf 30 p 29.5628 43.4437 101 ® -10.3071 43.2294 42.4286 -Arial_Bold.ttf 30 p 29.5628 43.4437 102 © -10.4429 43.9589 42.4286 -Arial_Bold.ttf 30 p 29.5628 43.4437 103 ] -10.1617 15.2294 53.5411 -Arial_Bold.ttf 30 p 29.5628 43.4437 104 é -10.9292 29.4113 42.8961 -Arial_Bold.ttf 30 p 29.5628 43.4437 105 z 1.1497 26.7706 30.6732 -Arial_Bold.ttf 30 p 29.5628 43.4437 106 _ 37.1846 33.4654 5.8615 -Arial_Bold.ttf 30 p 29.5628 43.4437 107 ¥ -9.9986 30.2056 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 1 t 0.8333 18.1169 41.3810 -Arial_Bold.ttf 31 “ 22.4719 17.6883 2 h 0.0417 27.7857 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 3 a 10.2300 28.8333 32.1169 -Arial_Bold.ttf 31 “ 22.4719 17.6883 4 n 10.0200 27.7857 31.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 5 P -0.0767 32.0844 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 6 o 10.1571 31.0065 32.1169 -Arial_Bold.ttf 31 “ 22.4719 17.6883 7 e 10.2415 29.4113 32.1169 -Arial_Bold.ttf 31 “ 22.4719 17.6883 8 : 11.3431 8.1385 30.6732 -Arial_Bold.ttf 31 “ 22.4719 17.6883 9 r 10.1807 19.8615 31.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 10 l 0.0486 8.1385 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 11 i 0.0494 8.1385 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 12 1 -0.0955 18.2359 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 13 | 0.1045 5.8615 54.5563 -Arial_Bold.ttf 31 “ 22.4719 17.6883 14 N 0.2742 33.3463 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 15 f -0.1643 20.6948 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 16 g 10.1103 29.5628 43.6580 -Arial_Bold.ttf 31 “ 22.4719 17.6883 17 d 0.0240 29.5628 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 18 W 0.0500 54.7706 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 19 s 10.0819 28.3333 32.1169 -Arial_Bold.ttf 31 “ 22.4719 17.6883 20 c 10.0974 27.5000 32.1169 -Arial_Bold.ttf 31 “ 22.4719 17.6883 21 u 11.2292 27.7857 30.8874 -Arial_Bold.ttf 31 “ 22.4719 17.6883 22 3 -0.0545 27.2857 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 23 ~ 15.9551 30.4589 10.8117 -Arial_Bold.ttf 31 “ 22.4719 17.6883 24 # 0.0702 30.3874 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 25 O -0.9354 40.3420 43.4589 -Arial_Bold.ttf 31 “ 22.4719 17.6883 26 ` 0.1469 12.7706 8.3203 -Arial_Bold.ttf 31 “ 22.4719 17.6883 27 @ -0.3274 55.2706 56.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 28 F 0.0766 29.0152 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 29 S -0.9001 33.8615 43.4589 -Arial_Bold.ttf 31 “ 22.4719 17.6883 30 p 10.2986 29.5628 43.4437 -Arial_Bold.ttf 31 “ 22.4719 17.6883 31 “ 0.2250 22.4719 17.6883 -Arial_Bold.ttf 31 “ 22.4719 17.6883 32 % -0.3619 44.9329 43.6580 -Arial_Bold.ttf 31 “ 22.4719 17.6883 33 £ -0.1391 31.1883 42.4286 -Arial_Bold.ttf 31 “ 22.4719 17.6883 34 . 34.0374 8.1385 8.1385 -Arial_Bold.ttf 31 “ 22.4719 17.6883 35 2 0.3107 27.2857 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 36 5 -0.0288 28.0000 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 37 m 10.3145 44.6104 31.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 38 V 0.0969 38.4935 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 39 6 0.0752 27.2857 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 40 w 11.2443 45.5065 30.6732 -Arial_Bold.ttf 31 “ 22.4719 17.6883 41 T 0.1548 33.2511 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 42 M 0.1298 39.5584 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 43 G -0.6235 39.1126 43.4589 -Arial_Bold.ttf 31 “ 22.4719 17.6883 44 b -0.4752 29.5628 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 45 9 0.3731 27.2857 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 46 ; 11.1506 8.8680 40.4372 -Arial_Bold.ttf 31 “ 22.4719 17.6883 47 D 0.0722 35.0909 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 48 L 0.0167 29.9113 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 49 y 11.2352 31.6883 42.4286 -Arial_Bold.ttf 31 “ 22.4719 17.6883 50 ‘ -0.0214 8.8680 17.6883 -Arial_Bold.ttf 31 “ 22.4719 17.6883 51 \ 0.0962 17.6883 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 52 R 0.1014 37.0498 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 53 < 5.6142 28.0000 31.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 54 4 -0.2835 29.9589 41.7857 -Arial_Bold.ttf 31 “ 22.4719 17.6883 55 8 0.2645 27.2857 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 56 0 -0.1045 27.2857 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 57 A 0.0038 40.5887 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 58 E 0.0545 32.0844 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 59 B 0.0038 35.0909 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 60 v 11.6025 31.6883 30.6732 -Arial_Bold.ttf 31 “ 22.4719 17.6883 61 k -0.1341 28.5152 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 62 J 0.3328 26.9524 42.7294 -Arial_Bold.ttf 31 “ 22.4719 17.6883 63 U -0.2417 33.3463 42.7294 -Arial_Bold.ttf 31 “ 22.4719 17.6883 64 j 0.1847 15.2294 53.7554 -Arial_Bold.ttf 31 “ 22.4719 17.6883 65 ( 0.2145 14.0000 53.5411 -Arial_Bold.ttf 31 “ 22.4719 17.6883 66 7 0.1143 27.2857 41.7857 -Arial_Bold.ttf 31 “ 22.4719 17.6883 67 § 0.1002 28.5152 54.7706 -Arial_Bold.ttf 31 “ 22.4719 17.6883 68 $ -3.0515 27.7857 50.8680 -Arial_Bold.ttf 31 “ 22.4719 17.6883 69 € -0.7092 31.6883 42.9437 -Arial_Bold.ttf 31 “ 22.4719 17.6883 70 / -0.0246 17.6883 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 71 C -0.8652 36.6537 42.7294 -Arial_Bold.ttf 31 “ 22.4719 17.6883 72 * 0.0508 19.7424 19.1320 -Arial_Bold.ttf 31 “ 22.4719 17.6883 73 ” -0.0917 22.4719 17.6883 -Arial_Bold.ttf 31 “ 22.4719 17.6883 74 ? -0.1226 30.4589 42.2143 -Arial_Bold.ttf 31 “ 22.4719 17.6883 75 { 0.0957 19.6472 53.9697 -Arial_Bold.ttf 31 “ 22.4719 17.6883 76 } -0.2143 19.6472 53.9697 -Arial_Bold.ttf 31 “ 22.4719 17.6883 77 , 33.9948 8.8680 17.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 78 I 0.0219 8.1385 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 79 ° -0.3008 18.0844 18.0844 -Arial_Bold.ttf 31 “ 22.4719 17.6883 80 K -0.2048 37.7641 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 81 H -0.1488 33.3463 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 82 q 10.3560 29.5628 43.4437 -Arial_Bold.ttf 31 “ 22.4719 17.6883 83 & -0.1726 38.8117 42.4286 -Arial_Bold.ttf 31 “ 22.4719 17.6883 84 ’ 0.2145 8.8680 17.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 85 [ -0.2333 15.2294 53.5411 -Arial_Bold.ttf 31 “ 22.4719 17.6883 86 - 23.4898 15.7294 6.9091 -Arial_Bold.ttf 31 “ 22.4719 17.6883 87 Y 0.2788 41.0563 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 88 Q -0.7211 41.7857 46.6472 -Arial_Bold.ttf 31 “ 22.4719 17.6883 89 " -0.1280 21.5909 15.2294 -Arial_Bold.ttf 31 “ 22.4719 17.6883 90 ! -0.4205 8.1385 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 91 x 11.2338 32.4177 30.6732 -Arial_Bold.ttf 31 “ 22.4719 17.6883 92 ) 0.0716 14.0000 53.5411 -Arial_Bold.ttf 31 “ 22.4719 17.6883 93 = 11.2540 29.2294 19.2835 -Arial_Bold.ttf 31 “ 22.4719 17.6883 94 + 7.3841 28.8961 28.8961 -Arial_Bold.ttf 31 “ 22.4719 17.6883 95 X -0.0083 38.9935 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 96 » 13.5825 26.9524 26.5563 -Arial_Bold.ttf 31 “ 22.4719 17.6883 97 ' -0.0924 8.1385 15.2294 -Arial_Bold.ttf 31 “ 22.4719 17.6883 98 ¢ 0.0417 28.7294 54.4372 -Arial_Bold.ttf 31 “ 22.4719 17.6883 99 Z -0.0357 34.4805 42.0000 -Arial_Bold.ttf 31 “ 22.4719 17.6883 100 > 5.4594 28.0000 31.9026 -Arial_Bold.ttf 31 “ 22.4719 17.6883 101 ® -0.2226 43.2294 42.4286 -Arial_Bold.ttf 31 “ 22.4719 17.6883 102 © -0.2976 43.9589 42.4286 -Arial_Bold.ttf 31 “ 22.4719 17.6883 103 ] -0.1236 15.2294 53.5411 -Arial_Bold.ttf 31 “ 22.4719 17.6883 104 é -0.5187 29.4113 42.8961 -Arial_Bold.ttf 31 “ 22.4719 17.6883 105 z 11.2092 26.7706 30.6732 -Arial_Bold.ttf 31 “ 22.4719 17.6883 106 _ 47.6382 33.4654 5.8615 -Arial_Bold.ttf 31 “ 22.4719 17.6883 107 ¥ 0.1221 30.2056 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 1 t 0.9405 18.1169 41.3810 -Arial_Bold.ttf 32 % 44.9329 43.6580 2 h 0.3157 27.7857 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 3 a 10.2662 28.8333 32.1169 -Arial_Bold.ttf 32 % 44.9329 43.6580 4 n 10.1784 27.7857 31.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 5 P 0.3583 32.0844 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 6 o 10.1019 31.0065 32.1169 -Arial_Bold.ttf 32 % 44.9329 43.6580 7 e 10.3996 29.4113 32.1169 -Arial_Bold.ttf 32 % 44.9329 43.6580 8 : 11.4340 8.1385 30.6732 -Arial_Bold.ttf 32 % 44.9329 43.6580 9 r 10.3912 19.8615 31.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 10 l 0.2141 8.1385 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 11 i 0.1395 8.1385 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 12 1 0.0312 18.2359 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 13 | -0.0633 5.8615 54.5563 -Arial_Bold.ttf 32 % 44.9329 43.6580 14 N 0.2008 33.3463 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 15 f 0.5693 20.6948 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 16 g 10.1791 29.5628 43.6580 -Arial_Bold.ttf 32 % 44.9329 43.6580 17 d 0.1883 29.5628 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 18 W -0.0379 54.7706 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 19 s 10.1940 28.3333 32.1169 -Arial_Bold.ttf 32 % 44.9329 43.6580 20 c 10.0069 27.5000 32.1169 -Arial_Bold.ttf 32 % 44.9329 43.6580 21 u 11.2635 27.7857 30.8874 -Arial_Bold.ttf 32 % 44.9329 43.6580 22 3 0.3514 27.2857 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 23 ~ 16.0965 30.4589 10.8117 -Arial_Bold.ttf 32 % 44.9329 43.6580 24 # 0.3236 30.3874 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 25 O -0.5733 40.3420 43.4589 -Arial_Bold.ttf 32 % 44.9329 43.6580 26 ` 0.2307 12.7706 8.3203 -Arial_Bold.ttf 32 % 44.9329 43.6580 27 @ -0.2526 55.2706 56.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 28 F -0.0536 29.0152 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 29 S -0.7977 33.8615 43.4589 -Arial_Bold.ttf 32 % 44.9329 43.6580 30 p 10.3265 29.5628 43.4437 -Arial_Bold.ttf 32 % 44.9329 43.6580 31 “ 0.1605 22.4719 17.6883 -Arial_Bold.ttf 32 % 44.9329 43.6580 32 % 0.2905 44.9329 43.6580 -Arial_Bold.ttf 32 % 44.9329 43.6580 33 £ 0.1145 31.1883 42.4286 -Arial_Bold.ttf 32 % 44.9329 43.6580 34 . 33.9560 8.1385 8.1385 -Arial_Bold.ttf 32 % 44.9329 43.6580 35 2 0.3149 27.2857 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 36 5 0.1829 28.0000 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 37 m 10.2260 44.6104 31.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 38 V 0.1526 38.4935 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 39 6 0.0960 27.2857 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 40 w 11.5147 45.5065 30.6732 -Arial_Bold.ttf 32 % 44.9329 43.6580 41 T 0.1800 33.2511 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 42 M 0.5140 39.5584 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 43 G -0.5437 39.1126 43.4589 -Arial_Bold.ttf 32 % 44.9329 43.6580 44 b -0.0107 29.5628 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 45 9 0.1845 27.2857 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 46 ; 11.2530 8.8680 40.4372 -Arial_Bold.ttf 32 % 44.9329 43.6580 47 D -0.1881 35.0909 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 48 L 0.3157 29.9113 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 49 y 11.1097 31.6883 42.4286 -Arial_Bold.ttf 32 % 44.9329 43.6580 50 ‘ 0.3443 8.8680 17.6883 -Arial_Bold.ttf 32 % 44.9329 43.6580 51 \ 0.0248 17.6883 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 52 R 0.0648 37.0498 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 53 < 5.5320 28.0000 31.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 54 4 0.4077 29.9589 41.7857 -Arial_Bold.ttf 32 % 44.9329 43.6580 55 8 0.4060 27.2857 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 56 0 0.2071 27.2857 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 57 A 0.1355 40.5887 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 58 E 0.3109 32.0844 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 59 B 0.0748 35.0909 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 60 v 11.4532 31.6883 30.6732 -Arial_Bold.ttf 32 % 44.9329 43.6580 61 k 0.0746 28.5152 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 62 J 0.1369 26.9524 42.7294 -Arial_Bold.ttf 32 % 44.9329 43.6580 63 U 0.1017 33.3463 42.7294 -Arial_Bold.ttf 32 % 44.9329 43.6580 64 j 0.1674 15.2294 53.7554 -Arial_Bold.ttf 32 % 44.9329 43.6580 65 ( 0.2740 14.0000 53.5411 -Arial_Bold.ttf 32 % 44.9329 43.6580 66 7 0.2550 27.2857 41.7857 -Arial_Bold.ttf 32 % 44.9329 43.6580 67 § 0.0674 28.5152 54.7706 -Arial_Bold.ttf 32 % 44.9329 43.6580 68 $ -2.9894 27.7857 50.8680 -Arial_Bold.ttf 32 % 44.9329 43.6580 69 € -0.8282 31.6883 42.9437 -Arial_Bold.ttf 32 % 44.9329 43.6580 70 / 0.0083 17.6883 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 71 C -0.5652 36.6537 42.7294 -Arial_Bold.ttf 32 % 44.9329 43.6580 72 * 0.2026 19.7424 19.1320 -Arial_Bold.ttf 32 % 44.9329 43.6580 73 ” 0.3683 22.4719 17.6883 -Arial_Bold.ttf 32 % 44.9329 43.6580 74 ? 0.0117 30.4589 42.2143 -Arial_Bold.ttf 32 % 44.9329 43.6580 75 { 0.0103 19.6472 53.9697 -Arial_Bold.ttf 32 % 44.9329 43.6580 76 } 0.0417 19.6472 53.9697 -Arial_Bold.ttf 32 % 44.9329 43.6580 77 , 34.2843 8.8680 17.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 78 I 0.0498 8.1385 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 79 ° 0.0938 18.0844 18.0844 -Arial_Bold.ttf 32 % 44.9329 43.6580 80 K 0.2695 37.7641 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 81 H 0.0490 33.3463 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 82 q 10.3617 29.5628 43.4437 -Arial_Bold.ttf 32 % 44.9329 43.6580 83 & -0.1055 38.8117 42.4286 -Arial_Bold.ttf 32 % 44.9329 43.6580 84 ’ -0.0183 8.8680 17.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 85 [ 0.0422 15.2294 53.5411 -Arial_Bold.ttf 32 % 44.9329 43.6580 86 - 24.0262 15.7294 6.9091 -Arial_Bold.ttf 32 % 44.9329 43.6580 87 Y 0.0448 41.0563 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 88 Q -0.5749 41.7857 46.6472 -Arial_Bold.ttf 32 % 44.9329 43.6580 89 " -0.2009 21.5909 15.2294 -Arial_Bold.ttf 32 % 44.9329 43.6580 90 ! 0.3292 8.1385 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 91 x 11.5271 32.4177 30.6732 -Arial_Bold.ttf 32 % 44.9329 43.6580 92 ) 0.0165 14.0000 53.5411 -Arial_Bold.ttf 32 % 44.9329 43.6580 93 = 11.5423 29.2294 19.2835 -Arial_Bold.ttf 32 % 44.9329 43.6580 94 + 7.2741 28.8961 28.8961 -Arial_Bold.ttf 32 % 44.9329 43.6580 95 X 0.4298 38.9935 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 96 » 13.8227 26.9524 26.5563 -Arial_Bold.ttf 32 % 44.9329 43.6580 97 ' 0.1136 8.1385 15.2294 -Arial_Bold.ttf 32 % 44.9329 43.6580 98 ¢ -0.4342 28.7294 54.4372 -Arial_Bold.ttf 32 % 44.9329 43.6580 99 Z 0.2766 34.4805 42.0000 -Arial_Bold.ttf 32 % 44.9329 43.6580 100 > 5.5666 28.0000 31.9026 -Arial_Bold.ttf 32 % 44.9329 43.6580 101 ® -0.0181 43.2294 42.4286 -Arial_Bold.ttf 32 % 44.9329 43.6580 102 © -0.0097 43.9589 42.4286 -Arial_Bold.ttf 32 % 44.9329 43.6580 103 ] 0.2286 15.2294 53.5411 -Arial_Bold.ttf 32 % 44.9329 43.6580 104 é -0.6753 29.4113 42.8961 -Arial_Bold.ttf 32 % 44.9329 43.6580 105 z 11.3792 26.7706 30.6732 -Arial_Bold.ttf 32 % 44.9329 43.6580 106 _ 47.7166 33.4654 5.8615 -Arial_Bold.ttf 32 % 44.9329 43.6580 107 ¥ -0.0683 30.2056 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 1 t 1.0893 18.1169 41.3810 -Arial_Bold.ttf 33 £ 31.1883 42.4286 2 h 0.3202 27.7857 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 3 a 10.3027 28.8333 32.1169 -Arial_Bold.ttf 33 £ 31.1883 42.4286 4 n 10.2455 27.7857 31.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 5 P 0.2560 32.0844 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 6 o 10.5462 31.0065 32.1169 -Arial_Bold.ttf 33 £ 31.1883 42.4286 7 e 10.3974 29.4113 32.1169 -Arial_Bold.ttf 33 £ 31.1883 42.4286 8 : 11.3431 8.1385 30.6732 -Arial_Bold.ttf 33 £ 31.1883 42.4286 9 r 10.5165 19.8615 31.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 10 l 0.2657 8.1385 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 11 i 0.5405 8.1385 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 12 1 0.2895 18.2359 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 13 | 0.1026 5.8615 54.5563 -Arial_Bold.ttf 33 £ 31.1883 42.4286 14 N 0.3955 33.3463 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 15 f 0.4147 20.6948 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 16 g 10.3298 29.5628 43.6580 -Arial_Bold.ttf 33 £ 31.1883 42.4286 17 d 0.3060 29.5628 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 18 W 0.4795 54.7706 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 19 s 10.3200 28.3333 32.1169 -Arial_Bold.ttf 33 £ 31.1883 42.4286 20 c 10.1881 27.5000 32.1169 -Arial_Bold.ttf 33 £ 31.1883 42.4286 21 u 11.6106 27.7857 30.8874 -Arial_Bold.ttf 33 £ 31.1883 42.4286 22 3 0.1226 27.2857 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 23 ~ 16.2519 30.4589 10.8117 -Arial_Bold.ttf 33 £ 31.1883 42.4286 24 # 0.6495 30.3874 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 25 O -0.4021 40.3420 43.4589 -Arial_Bold.ttf 33 £ 31.1883 42.4286 26 ` 0.0629 12.7706 8.3203 -Arial_Bold.ttf 33 £ 31.1883 42.4286 27 @ -0.0492 55.2706 56.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 28 F 0.2710 29.0152 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 29 S -0.7287 33.8615 43.4589 -Arial_Bold.ttf 33 £ 31.1883 42.4286 30 p 10.1714 29.5628 43.4437 -Arial_Bold.ttf 33 £ 31.1883 42.4286 31 “ 0.3643 22.4719 17.6883 -Arial_Bold.ttf 33 £ 31.1883 42.4286 32 % 0.0260 44.9329 43.6580 -Arial_Bold.ttf 33 £ 31.1883 42.4286 33 £ 0.0113 31.1883 42.4286 -Arial_Bold.ttf 33 £ 31.1883 42.4286 34 . 34.4597 8.1385 8.1385 -Arial_Bold.ttf 33 £ 31.1883 42.4286 35 2 0.2786 27.2857 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 36 5 0.4778 28.0000 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 37 m 10.4131 44.6104 31.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 38 V 0.3657 38.4935 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 39 6 0.3969 27.2857 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 40 w 11.8685 45.5065 30.6732 -Arial_Bold.ttf 33 £ 31.1883 42.4286 41 T 0.3988 33.2511 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 42 M 0.3455 39.5584 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 43 G -0.5854 39.1126 43.4589 -Arial_Bold.ttf 33 £ 31.1883 42.4286 44 b 0.1036 29.5628 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 45 9 0.0583 27.2857 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 46 ; 11.5731 8.8680 40.4372 -Arial_Bold.ttf 33 £ 31.1883 42.4286 47 D 0.5788 35.0909 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 48 L 0.0057 29.9113 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 49 y 11.3532 31.6883 42.4286 -Arial_Bold.ttf 33 £ 31.1883 42.4286 50 ‘ 0.1786 8.8680 17.6883 -Arial_Bold.ttf 33 £ 31.1883 42.4286 51 \ 0.1105 17.6883 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 52 R 0.1466 37.0498 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 53 < 5.7070 28.0000 31.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 54 4 0.4707 29.9589 41.7857 -Arial_Bold.ttf 33 £ 31.1883 42.4286 55 8 0.4705 27.2857 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 56 0 0.1869 27.2857 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 57 A 0.2740 40.5887 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 58 E 0.2008 32.0844 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 59 B 0.2897 35.0909 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 60 v 11.5092 31.6883 30.6732 -Arial_Bold.ttf 33 £ 31.1883 42.4286 61 k 0.5821 28.5152 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 62 J 0.3976 26.9524 42.7294 -Arial_Bold.ttf 33 £ 31.1883 42.4286 63 U 0.1317 33.3463 42.7294 -Arial_Bold.ttf 33 £ 31.1883 42.4286 64 j 0.1188 15.2294 53.7554 -Arial_Bold.ttf 33 £ 31.1883 42.4286 65 ( 0.1240 14.0000 53.5411 -Arial_Bold.ttf 33 £ 31.1883 42.4286 66 7 0.2276 27.2857 41.7857 -Arial_Bold.ttf 33 £ 31.1883 42.4286 67 § 0.1205 28.5152 54.7706 -Arial_Bold.ttf 33 £ 31.1883 42.4286 68 $ -2.9260 27.7857 50.8680 -Arial_Bold.ttf 33 £ 31.1883 42.4286 69 € -0.9402 31.6883 42.9437 -Arial_Bold.ttf 33 £ 31.1883 42.4286 70 / 0.1226 17.6883 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 71 C -0.4930 36.6537 42.7294 -Arial_Bold.ttf 33 £ 31.1883 42.4286 72 * 0.0583 19.7424 19.1320 -Arial_Bold.ttf 33 £ 31.1883 42.4286 73 ” 0.1524 22.4719 17.6883 -Arial_Bold.ttf 33 £ 31.1883 42.4286 74 ? -0.0736 30.4589 42.2143 -Arial_Bold.ttf 33 £ 31.1883 42.4286 75 { -0.1319 19.6472 53.9697 -Arial_Bold.ttf 33 £ 31.1883 42.4286 76 } 0.0298 19.6472 53.9697 -Arial_Bold.ttf 33 £ 31.1883 42.4286 77 , 34.2069 8.8680 17.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 78 I 0.0486 8.1385 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 79 ° 0.1364 18.0844 18.0844 -Arial_Bold.ttf 33 £ 31.1883 42.4286 80 K 0.3286 37.7641 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 81 H 0.3462 33.3463 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 82 q 10.1351 29.5628 43.4437 -Arial_Bold.ttf 33 £ 31.1883 42.4286 83 & 0.0655 38.8117 42.4286 -Arial_Bold.ttf 33 £ 31.1883 42.4286 84 ’ 0.3417 8.8680 17.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 85 [ 0.4585 15.2294 53.5411 -Arial_Bold.ttf 33 £ 31.1883 42.4286 86 - 23.7503 15.7294 6.9091 -Arial_Bold.ttf 33 £ 31.1883 42.4286 87 Y 0.0929 41.0563 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 88 Q -0.4937 41.7857 46.6472 -Arial_Bold.ttf 33 £ 31.1883 42.4286 89 " 0.2955 21.5909 15.2294 -Arial_Bold.ttf 33 £ 31.1883 42.4286 90 ! 0.2143 8.1385 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 91 x 11.5111 32.4177 30.6732 -Arial_Bold.ttf 33 £ 31.1883 42.4286 92 ) -0.0397 14.0000 53.5411 -Arial_Bold.ttf 33 £ 31.1883 42.4286 93 = 11.4800 29.2294 19.2835 -Arial_Bold.ttf 33 £ 31.1883 42.4286 94 + 7.7167 28.8961 28.8961 -Arial_Bold.ttf 33 £ 31.1883 42.4286 95 X 0.0286 38.9935 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 96 » 13.8265 26.9524 26.5563 -Arial_Bold.ttf 33 £ 31.1883 42.4286 97 ' -0.1697 8.1385 15.2294 -Arial_Bold.ttf 33 £ 31.1883 42.4286 98 ¢ -0.0548 28.7294 54.4372 -Arial_Bold.ttf 33 £ 31.1883 42.4286 99 Z 0.5076 34.4805 42.0000 -Arial_Bold.ttf 33 £ 31.1883 42.4286 100 > 5.7070 28.0000 31.9026 -Arial_Bold.ttf 33 £ 31.1883 42.4286 101 ® 0.0074 43.2294 42.4286 -Arial_Bold.ttf 33 £ 31.1883 42.4286 102 © -0.2600 43.9589 42.4286 -Arial_Bold.ttf 33 £ 31.1883 42.4286 103 ] 0.0617 15.2294 53.5411 -Arial_Bold.ttf 33 £ 31.1883 42.4286 104 é -0.3266 29.4113 42.8961 -Arial_Bold.ttf 33 £ 31.1883 42.4286 105 z 11.3833 26.7706 30.6732 -Arial_Bold.ttf 33 £ 31.1883 42.4286 106 _ 47.6675 33.4654 5.8615 -Arial_Bold.ttf 33 £ 31.1883 42.4286 107 ¥ -0.0100 30.2056 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 1 t -32.9267 18.1169 41.3810 -Arial_Bold.ttf 34 . 8.1385 8.1385 2 h -33.8374 27.7857 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 3 a -23.6926 28.8333 32.1169 -Arial_Bold.ttf 34 . 8.1385 8.1385 4 n -23.9512 27.7857 31.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 5 P -33.8412 32.0844 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 6 o -23.7186 31.0065 32.1169 -Arial_Bold.ttf 34 . 8.1385 8.1385 7 e -23.7224 29.4113 32.1169 -Arial_Bold.ttf 34 . 8.1385 8.1385 8 : -22.4846 8.1385 30.6732 -Arial_Bold.ttf 34 . 8.1385 8.1385 9 r -23.7998 19.8615 31.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 10 l -33.7613 8.1385 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 11 i -33.9212 8.1385 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 12 1 -33.7341 18.2359 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 13 | -33.9843 5.8615 54.5563 -Arial_Bold.ttf 34 . 8.1385 8.1385 14 N -34.0222 33.3463 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 15 f -34.1115 20.6948 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 16 g -23.8498 29.5628 43.6580 -Arial_Bold.ttf 34 . 8.1385 8.1385 17 d -33.7698 29.5628 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 18 W -33.7258 54.7706 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 19 s -23.7700 28.3333 32.1169 -Arial_Bold.ttf 34 . 8.1385 8.1385 20 c -23.8415 27.5000 32.1169 -Arial_Bold.ttf 34 . 8.1385 8.1385 21 u -22.4468 27.7857 30.8874 -Arial_Bold.ttf 34 . 8.1385 8.1385 22 3 -33.7958 27.2857 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 23 ~ -17.8526 30.4589 10.8117 -Arial_Bold.ttf 34 . 8.1385 8.1385 24 # -33.8438 30.3874 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 25 O -34.5611 40.3420 43.4589 -Arial_Bold.ttf 34 . 8.1385 8.1385 26 ` -33.8698 12.7706 8.3203 -Arial_Bold.ttf 34 . 8.1385 8.1385 27 @ -33.8841 55.2706 56.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 28 F -33.7543 29.0152 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 29 S -34.5766 33.8615 43.4589 -Arial_Bold.ttf 34 . 8.1385 8.1385 30 p -23.8990 29.5628 43.4437 -Arial_Bold.ttf 34 . 8.1385 8.1385 31 “ -33.8674 22.4719 17.6883 -Arial_Bold.ttf 34 . 8.1385 8.1385 32 % -34.0984 44.9329 43.6580 -Arial_Bold.ttf 34 . 8.1385 8.1385 33 £ -34.2031 31.1883 42.4286 -Arial_Bold.ttf 34 . 8.1385 8.1385 34 . 0.1943 8.1385 8.1385 -Arial_Bold.ttf 34 . 8.1385 8.1385 35 2 -33.9055 27.2857 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 36 5 -33.6972 28.0000 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 37 m -23.6172 44.6104 31.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 38 V -33.8031 38.4935 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 39 6 -33.8758 27.2857 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 40 w -22.2799 45.5065 30.6732 -Arial_Bold.ttf 34 . 8.1385 8.1385 41 T -33.7706 33.2511 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 42 M -33.7698 39.5584 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 43 G -34.7266 39.1126 43.4589 -Arial_Bold.ttf 34 . 8.1385 8.1385 44 b -33.8277 29.5628 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 45 9 -33.8629 27.2857 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 46 ; -22.3573 8.8680 40.4372 -Arial_Bold.ttf 34 . 8.1385 8.1385 47 D -33.9393 35.0909 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 48 L -33.9589 29.9113 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 49 y -22.5263 31.6883 42.4286 -Arial_Bold.ttf 34 . 8.1385 8.1385 50 ‘ -33.7758 8.8680 17.6883 -Arial_Bold.ttf 34 . 8.1385 8.1385 51 \ -33.7424 17.6883 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 52 R -33.8986 37.0498 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 53 < -28.2876 28.0000 31.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 54 4 -33.6972 29.9589 41.7857 -Arial_Bold.ttf 34 . 8.1385 8.1385 55 8 -33.8874 27.2857 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 56 0 -33.8674 27.2857 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 57 A -33.7698 40.5887 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 58 E -33.6698 32.0844 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 59 B -33.9024 35.0909 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 60 v -22.5465 31.6883 30.6732 -Arial_Bold.ttf 34 . 8.1385 8.1385 61 k -33.7400 28.5152 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 62 J -33.7860 26.9524 42.7294 -Arial_Bold.ttf 34 . 8.1385 8.1385 63 U -33.7900 33.3463 42.7294 -Arial_Bold.ttf 34 . 8.1385 8.1385 64 j -34.0069 15.2294 53.7554 -Arial_Bold.ttf 34 . 8.1385 8.1385 65 ( -33.6886 14.0000 53.5411 -Arial_Bold.ttf 34 . 8.1385 8.1385 66 7 -33.5198 27.2857 41.7857 -Arial_Bold.ttf 34 . 8.1385 8.1385 67 § -34.0089 28.5152 54.7706 -Arial_Bold.ttf 34 . 8.1385 8.1385 68 $ -36.7003 27.7857 50.8680 -Arial_Bold.ttf 34 . 8.1385 8.1385 69 € -34.5780 31.6883 42.9437 -Arial_Bold.ttf 34 . 8.1385 8.1385 70 / -33.8258 17.6883 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 71 C -34.7183 36.6537 42.7294 -Arial_Bold.ttf 34 . 8.1385 8.1385 72 * -33.9948 19.7424 19.1320 -Arial_Bold.ttf 34 . 8.1385 8.1385 73 ” -34.0531 22.4719 17.6883 -Arial_Bold.ttf 34 . 8.1385 8.1385 74 ? -34.0258 30.4589 42.2143 -Arial_Bold.ttf 34 . 8.1385 8.1385 75 { -34.1607 19.6472 53.9697 -Arial_Bold.ttf 34 . 8.1385 8.1385 76 } -33.8984 19.6472 53.9697 -Arial_Bold.ttf 34 . 8.1385 8.1385 77 , 0.0000 8.8680 17.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 78 I -33.6698 8.1385 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 79 ° -34.1317 18.0844 18.0844 -Arial_Bold.ttf 34 . 8.1385 8.1385 80 K -33.8472 37.7641 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 81 H -33.9829 33.3463 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 82 q -23.6543 29.5628 43.4437 -Arial_Bold.ttf 34 . 8.1385 8.1385 83 & -34.0758 38.8117 42.4286 -Arial_Bold.ttf 34 . 8.1385 8.1385 84 ’ -33.7037 8.8680 17.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 85 [ -34.0079 15.2294 53.5411 -Arial_Bold.ttf 34 . 8.1385 8.1385 86 - -10.1331 15.7294 6.9091 -Arial_Bold.ttf 34 . 8.1385 8.1385 87 Y -33.8244 41.0563 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 88 Q -34.6818 41.7857 46.6472 -Arial_Bold.ttf 34 . 8.1385 8.1385 89 " -33.8750 21.5909 15.2294 -Arial_Bold.ttf 34 . 8.1385 8.1385 90 ! -33.9805 8.1385 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 91 x -22.5755 32.4177 30.6732 -Arial_Bold.ttf 34 . 8.1385 8.1385 92 ) -33.9486 14.0000 53.5411 -Arial_Bold.ttf 34 . 8.1385 8.1385 93 = -22.4013 29.2294 19.2835 -Arial_Bold.ttf 34 . 8.1385 8.1385 94 + -26.5462 28.8961 28.8961 -Arial_Bold.ttf 34 . 8.1385 8.1385 95 X -33.9615 38.9935 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 96 » -20.1933 26.9524 26.5563 -Arial_Bold.ttf 34 . 8.1385 8.1385 97 ' -33.6698 8.1385 15.2294 -Arial_Bold.ttf 34 . 8.1385 8.1385 98 ¢ -33.8031 28.7294 54.4372 -Arial_Bold.ttf 34 . 8.1385 8.1385 99 Z -33.8555 34.4805 42.0000 -Arial_Bold.ttf 34 . 8.1385 8.1385 100 > -28.2447 28.0000 31.9026 -Arial_Bold.ttf 34 . 8.1385 8.1385 101 ® -34.1667 43.2294 42.4286 -Arial_Bold.ttf 34 . 8.1385 8.1385 102 © -34.0484 43.9589 42.4286 -Arial_Bold.ttf 34 . 8.1385 8.1385 103 ] -34.2222 15.2294 53.5411 -Arial_Bold.ttf 34 . 8.1385 8.1385 104 é -34.4457 29.4113 42.8961 -Arial_Bold.ttf 34 . 8.1385 8.1385 105 z -22.5703 26.7706 30.6732 -Arial_Bold.ttf 34 . 8.1385 8.1385 106 _ 13.6396 33.4654 5.8615 -Arial_Bold.ttf 34 . 8.1385 8.1385 107 ¥ -33.8472 30.2056 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 1 t 1.0881 18.1169 41.3810 -Arial_Bold.ttf 35 2 27.2857 42.0000 2 h 0.2131 27.7857 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 3 a 10.2748 28.8333 32.1169 -Arial_Bold.ttf 35 2 27.2857 42.0000 4 n 10.1800 27.7857 31.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 5 P 0.0530 32.0844 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 6 o 10.2248 31.0065 32.1169 -Arial_Bold.ttf 35 2 27.2857 42.0000 7 e 10.0500 29.4113 32.1169 -Arial_Bold.ttf 35 2 27.2857 42.0000 8 : 11.4252 8.1385 30.6732 -Arial_Bold.ttf 35 2 27.2857 42.0000 9 r 10.0317 19.8615 31.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 10 l 0.0305 8.1385 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 11 i -0.0538 8.1385 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 12 1 0.0792 18.2359 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 13 | 0.2371 5.8615 54.5563 -Arial_Bold.ttf 35 2 27.2857 42.0000 14 N -0.0931 33.3463 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 15 f -0.1143 20.6948 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 16 g 10.0474 29.5628 43.6580 -Arial_Bold.ttf 35 2 27.2857 42.0000 17 d -0.0643 29.5628 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 18 W -0.0649 54.7706 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 19 s 9.6541 28.3333 32.1169 -Arial_Bold.ttf 35 2 27.2857 42.0000 20 c 10.1688 27.5000 32.1169 -Arial_Bold.ttf 35 2 27.2857 42.0000 21 u 11.2411 27.7857 30.8874 -Arial_Bold.ttf 35 2 27.2857 42.0000 22 3 0.1131 27.2857 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 23 ~ 15.9446 30.4589 10.8117 -Arial_Bold.ttf 35 2 27.2857 42.0000 24 # 0.1857 30.3874 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 25 O -0.7197 40.3420 43.4589 -Arial_Bold.ttf 35 2 27.2857 42.0000 26 ` -0.3040 12.7706 8.3203 -Arial_Bold.ttf 35 2 27.2857 42.0000 27 @ -0.2695 55.2706 56.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 28 F -0.0455 29.0152 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 29 S -0.8366 33.8615 43.4589 -Arial_Bold.ttf 35 2 27.2857 42.0000 30 p 10.2688 29.5628 43.4437 -Arial_Bold.ttf 35 2 27.2857 42.0000 31 “ -0.2347 22.4719 17.6883 -Arial_Bold.ttf 35 2 27.2857 42.0000 32 % 0.1742 44.9329 43.6580 -Arial_Bold.ttf 35 2 27.2857 42.0000 33 £ -0.2643 31.1883 42.4286 -Arial_Bold.ttf 35 2 27.2857 42.0000 34 . 33.8874 8.1385 8.1385 -Arial_Bold.ttf 35 2 27.2857 42.0000 35 2 0.1631 27.2857 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 36 5 0.1655 28.0000 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 37 m 10.0688 44.6104 31.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 38 V 0.0105 38.4935 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 39 6 0.1969 27.2857 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 40 w 11.1852 45.5065 30.6732 -Arial_Bold.ttf 35 2 27.2857 42.0000 41 T -0.2488 33.2511 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 42 M 0.1341 39.5584 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 43 G -0.8166 39.1126 43.4589 -Arial_Bold.ttf 35 2 27.2857 42.0000 44 b -0.0455 29.5628 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 45 9 -0.1157 27.2857 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 46 ; 11.3754 8.8680 40.4372 -Arial_Bold.ttf 35 2 27.2857 42.0000 47 D -0.2002 35.0909 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 48 L -0.2899 29.9113 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 49 y 11.4647 31.6883 42.4286 -Arial_Bold.ttf 35 2 27.2857 42.0000 50 ‘ -0.1409 8.8680 17.6883 -Arial_Bold.ttf 35 2 27.2857 42.0000 51 \ -0.1766 17.6883 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 52 R 0.2637 37.0498 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 53 < 5.4356 28.0000 31.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 54 4 0.1272 29.9589 41.7857 -Arial_Bold.ttf 35 2 27.2857 42.0000 55 8 -0.0274 27.2857 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 56 0 -0.2359 27.2857 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 57 A -0.1514 40.5887 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 58 E 0.0286 32.0844 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 59 B -0.0357 35.0909 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 60 v 11.3359 31.6883 30.6732 -Arial_Bold.ttf 35 2 27.2857 42.0000 61 k -0.1690 28.5152 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 62 J 0.2833 26.9524 42.7294 -Arial_Bold.ttf 35 2 27.2857 42.0000 63 U 0.1667 33.3463 42.7294 -Arial_Bold.ttf 35 2 27.2857 42.0000 64 j 0.1417 15.2294 53.7554 -Arial_Bold.ttf 35 2 27.2857 42.0000 65 ( -0.0714 14.0000 53.5411 -Arial_Bold.ttf 35 2 27.2857 42.0000 66 7 0.3514 27.2857 41.7857 -Arial_Bold.ttf 35 2 27.2857 42.0000 67 § -0.4514 28.5152 54.7706 -Arial_Bold.ttf 35 2 27.2857 42.0000 68 $ -2.8926 27.7857 50.8680 -Arial_Bold.ttf 35 2 27.2857 42.0000 69 € -0.9128 31.6883 42.9437 -Arial_Bold.ttf 35 2 27.2857 42.0000 70 / 0.0417 17.6883 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 71 C -0.7249 36.6537 42.7294 -Arial_Bold.ttf 35 2 27.2857 42.0000 72 * 0.0233 19.7424 19.1320 -Arial_Bold.ttf 35 2 27.2857 42.0000 73 ” -0.1014 22.4719 17.6883 -Arial_Bold.ttf 35 2 27.2857 42.0000 74 ? -0.0355 30.4589 42.2143 -Arial_Bold.ttf 35 2 27.2857 42.0000 75 { -0.5802 19.6472 53.9697 -Arial_Bold.ttf 35 2 27.2857 42.0000 76 } 0.0645 19.6472 53.9697 -Arial_Bold.ttf 35 2 27.2857 42.0000 77 , 33.9024 8.8680 17.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 78 I -0.2585 8.1385 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 79 ° -0.3774 18.0844 18.0844 -Arial_Bold.ttf 35 2 27.2857 42.0000 80 K 0.1123 37.7641 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 81 H 0.1585 33.3463 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 82 q 10.2962 29.5628 43.4437 -Arial_Bold.ttf 35 2 27.2857 42.0000 83 & 0.0756 38.8117 42.4286 -Arial_Bold.ttf 35 2 27.2857 42.0000 84 ’ -0.0226 8.8680 17.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 85 [ 0.0917 15.2294 53.5411 -Arial_Bold.ttf 35 2 27.2857 42.0000 86 - 23.9793 15.7294 6.9091 -Arial_Bold.ttf 35 2 27.2857 42.0000 87 Y -0.1969 41.0563 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 88 Q -0.8925 41.7857 46.6472 -Arial_Bold.ttf 35 2 27.2857 42.0000 89 " -0.2907 21.5909 15.2294 -Arial_Bold.ttf 35 2 27.2857 42.0000 90 ! -0.0214 8.1385 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 91 x 11.4282 32.4177 30.6732 -Arial_Bold.ttf 35 2 27.2857 42.0000 92 ) 0.0219 14.0000 53.5411 -Arial_Bold.ttf 35 2 27.2857 42.0000 93 = 11.4693 29.2294 19.2835 -Arial_Bold.ttf 35 2 27.2857 42.0000 94 + 7.2781 28.8961 28.8961 -Arial_Bold.ttf 35 2 27.2857 42.0000 95 X 0.1228 38.9935 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 96 » 13.5348 26.9524 26.5563 -Arial_Bold.ttf 35 2 27.2857 42.0000 97 ' -0.0639 8.1385 15.2294 -Arial_Bold.ttf 35 2 27.2857 42.0000 98 ¢ 0.1450 28.7294 54.4372 -Arial_Bold.ttf 35 2 27.2857 42.0000 99 Z -0.2810 34.4805 42.0000 -Arial_Bold.ttf 35 2 27.2857 42.0000 100 > 5.4654 28.0000 31.9026 -Arial_Bold.ttf 35 2 27.2857 42.0000 101 ® -0.3833 43.2294 42.4286 -Arial_Bold.ttf 35 2 27.2857 42.0000 102 © -0.1650 43.9589 42.4286 -Arial_Bold.ttf 35 2 27.2857 42.0000 103 ] 0.1826 15.2294 53.5411 -Arial_Bold.ttf 35 2 27.2857 42.0000 104 é -0.6175 29.4113 42.8961 -Arial_Bold.ttf 35 2 27.2857 42.0000 105 z 11.4959 26.7706 30.6732 -Arial_Bold.ttf 35 2 27.2857 42.0000 106 _ 47.5570 33.4654 5.8615 -Arial_Bold.ttf 35 2 27.2857 42.0000 107 ¥ -0.1631 30.2056 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 1 t 0.7190 18.1169 41.3810 -Arial_Bold.ttf 36 5 28.0000 42.0000 2 h -0.3038 27.7857 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 3 a 9.9331 28.8333 32.1169 -Arial_Bold.ttf 36 5 28.0000 42.0000 4 n 9.8915 27.7857 31.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 5 P 0.1100 32.0844 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 6 o 9.8545 31.0065 32.1169 -Arial_Bold.ttf 36 5 28.0000 42.0000 7 e 10.1000 29.4113 32.1169 -Arial_Bold.ttf 36 5 28.0000 42.0000 8 : 11.0411 8.1385 30.6732 -Arial_Bold.ttf 36 5 28.0000 42.0000 9 r 9.8331 19.8615 31.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 10 l -0.0921 8.1385 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 11 i -0.0810 8.1385 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 12 1 -0.1466 18.2359 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 13 | -0.1845 5.8615 54.5563 -Arial_Bold.ttf 36 5 28.0000 42.0000 14 N -0.2371 33.3463 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 15 f -0.4240 20.6948 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 16 g 9.9234 29.5628 43.6580 -Arial_Bold.ttf 36 5 28.0000 42.0000 17 d 0.0202 29.5628 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 18 W -0.1560 54.7706 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 19 s 10.0750 28.3333 32.1169 -Arial_Bold.ttf 36 5 28.0000 42.0000 20 c 9.8643 27.5000 32.1169 -Arial_Bold.ttf 36 5 28.0000 42.0000 21 u 11.2430 27.7857 30.8874 -Arial_Bold.ttf 36 5 28.0000 42.0000 22 3 -0.1069 27.2857 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 23 ~ 15.7148 30.4589 10.8117 -Arial_Bold.ttf 36 5 28.0000 42.0000 24 # -0.2105 30.3874 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 25 O -0.8806 40.3420 43.4589 -Arial_Bold.ttf 36 5 28.0000 42.0000 26 ` -0.1643 12.7706 8.3203 -Arial_Bold.ttf 36 5 28.0000 42.0000 27 @ -0.3455 55.2706 56.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 28 F -0.1155 29.0152 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 29 S -0.9430 33.8615 43.4589 -Arial_Bold.ttf 36 5 28.0000 42.0000 30 p 9.8748 29.5628 43.4437 -Arial_Bold.ttf 36 5 28.0000 42.0000 31 “ -0.2500 22.4719 17.6883 -Arial_Bold.ttf 36 5 28.0000 42.0000 32 % -0.4897 44.9329 43.6580 -Arial_Bold.ttf 36 5 28.0000 42.0000 33 £ -0.3869 31.1883 42.4286 -Arial_Bold.ttf 36 5 28.0000 42.0000 34 . 33.7260 8.1385 8.1385 -Arial_Bold.ttf 36 5 28.0000 42.0000 35 2 -0.1226 27.2857 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 36 5 -0.1417 28.0000 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 37 m 9.5686 44.6104 31.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 38 V -0.3833 38.4935 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 39 6 -0.3857 27.2857 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 40 w 11.3687 45.5065 30.6732 -Arial_Bold.ttf 36 5 28.0000 42.0000 41 T -0.1597 33.2511 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 42 M -0.2734 39.5584 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 43 G -0.9497 39.1126 43.4589 -Arial_Bold.ttf 36 5 28.0000 42.0000 44 b -0.1324 29.5628 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 45 9 0.1814 27.2857 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 46 ; 11.4271 8.8680 40.4372 -Arial_Bold.ttf 36 5 28.0000 42.0000 47 D -0.2419 35.0909 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 48 L -0.0057 29.9113 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 49 y 10.8219 31.6883 42.4286 -Arial_Bold.ttf 36 5 28.0000 42.0000 50 ‘ -0.2545 8.8680 17.6883 -Arial_Bold.ttf 36 5 28.0000 42.0000 51 \ -0.5205 17.6883 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 52 R -0.0857 37.0498 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 53 < 5.3465 28.0000 31.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 54 4 -0.2378 29.9589 41.7857 -Arial_Bold.ttf 36 5 28.0000 42.0000 55 8 -0.3240 27.2857 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 56 0 -0.1629 27.2857 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 57 A -0.2157 40.5887 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 58 E -0.3514 32.0844 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 59 B -0.3000 35.0909 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 60 v 11.1983 31.6883 30.6732 -Arial_Bold.ttf 36 5 28.0000 42.0000 61 k -0.3006 28.5152 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 62 J -0.2331 26.9524 42.7294 -Arial_Bold.ttf 36 5 28.0000 42.0000 63 U -0.2845 33.3463 42.7294 -Arial_Bold.ttf 36 5 28.0000 42.0000 64 j -0.1226 15.2294 53.7554 -Arial_Bold.ttf 36 5 28.0000 42.0000 65 ( -0.3228 14.0000 53.5411 -Arial_Bold.ttf 36 5 28.0000 42.0000 66 7 -0.0357 27.2857 41.7857 -Arial_Bold.ttf 36 5 28.0000 42.0000 67 § -0.2978 28.5152 54.7706 -Arial_Bold.ttf 36 5 28.0000 42.0000 68 $ -3.2110 27.7857 50.8680 -Arial_Bold.ttf 36 5 28.0000 42.0000 69 € -1.0406 31.6883 42.9437 -Arial_Bold.ttf 36 5 28.0000 42.0000 70 / -0.1655 17.6883 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 71 C -0.9483 36.6537 42.7294 -Arial_Bold.ttf 36 5 28.0000 42.0000 72 * -0.4476 19.7424 19.1320 -Arial_Bold.ttf 36 5 28.0000 42.0000 73 ” -0.1824 22.4719 17.6883 -Arial_Bold.ttf 36 5 28.0000 42.0000 74 ? -0.3383 30.4589 42.2143 -Arial_Bold.ttf 36 5 28.0000 42.0000 75 { -0.1543 19.6472 53.9697 -Arial_Bold.ttf 36 5 28.0000 42.0000 76 } -0.6202 19.6472 53.9697 -Arial_Bold.ttf 36 5 28.0000 42.0000 77 , 33.5353 8.8680 17.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 78 I -0.6600 8.1385 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 79 ° -0.4226 18.0844 18.0844 -Arial_Bold.ttf 36 5 28.0000 42.0000 80 K -0.6062 37.7641 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 81 H -0.0966 33.3463 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 82 q 9.9754 29.5628 43.4437 -Arial_Bold.ttf 36 5 28.0000 42.0000 83 & -0.1367 38.8117 42.4286 -Arial_Bold.ttf 36 5 28.0000 42.0000 84 ’ 0.0345 8.8680 17.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 85 [ -0.2357 15.2294 53.5411 -Arial_Bold.ttf 36 5 28.0000 42.0000 86 - 23.5984 15.7294 6.9091 -Arial_Bold.ttf 36 5 28.0000 42.0000 87 Y -0.2105 41.0563 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 88 Q -1.1568 41.7857 46.6472 -Arial_Bold.ttf 36 5 28.0000 42.0000 89 " -0.3955 21.5909 15.2294 -Arial_Bold.ttf 36 5 28.0000 42.0000 90 ! -0.3417 8.1385 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 91 x 11.3080 32.4177 30.6732 -Arial_Bold.ttf 36 5 28.0000 42.0000 92 ) -0.3333 14.0000 53.5411 -Arial_Bold.ttf 36 5 28.0000 42.0000 93 = 11.1425 29.2294 19.2835 -Arial_Bold.ttf 36 5 28.0000 42.0000 94 + 7.1931 28.8961 28.8961 -Arial_Bold.ttf 36 5 28.0000 42.0000 95 X -0.0833 38.9935 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 96 » 13.4420 26.9524 26.5563 -Arial_Bold.ttf 36 5 28.0000 42.0000 97 ' -0.2629 8.1385 15.2294 -Arial_Bold.ttf 36 5 28.0000 42.0000 98 ¢ -0.1293 28.7294 54.4372 -Arial_Bold.ttf 36 5 28.0000 42.0000 99 Z -0.2605 34.4805 42.0000 -Arial_Bold.ttf 36 5 28.0000 42.0000 100 > 5.0418 28.0000 31.9026 -Arial_Bold.ttf 36 5 28.0000 42.0000 101 ® -0.4188 43.2294 42.4286 -Arial_Bold.ttf 36 5 28.0000 42.0000 102 © -0.3155 43.9589 42.4286 -Arial_Bold.ttf 36 5 28.0000 42.0000 103 ] -0.3333 15.2294 53.5411 -Arial_Bold.ttf 36 5 28.0000 42.0000 104 é -0.9461 29.4113 42.8961 -Arial_Bold.ttf 36 5 28.0000 42.0000 105 z 11.3542 26.7706 30.6732 -Arial_Bold.ttf 36 5 28.0000 42.0000 106 _ 47.4058 33.4654 5.8615 -Arial_Bold.ttf 36 5 28.0000 42.0000 107 ¥ -0.0226 30.2056 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 1 t -9.2381 18.1169 41.3810 -Arial_Bold.ttf 37 m 44.6104 31.9026 2 h -9.7051 27.7857 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 3 a -0.3383 28.8333 32.1169 -Arial_Bold.ttf 37 m 44.6104 31.9026 4 n 0.0147 27.7857 31.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 5 P -9.8405 32.0844 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 6 o -0.0417 31.0065 32.1169 -Arial_Bold.ttf 37 m 44.6104 31.9026 7 e 0.0448 29.4113 32.1169 -Arial_Bold.ttf 37 m 44.6104 31.9026 8 : 1.3516 8.1385 30.6732 -Arial_Bold.ttf 37 m 44.6104 31.9026 9 r -0.1350 19.8615 31.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 10 l -9.9952 8.1385 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 11 i -10.1571 8.1385 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 12 1 -10.1762 18.2359 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 13 | -10.3768 5.8615 54.5563 -Arial_Bold.ttf 37 m 44.6104 31.9026 14 N -10.3909 33.3463 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 15 f -10.4679 20.6948 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 16 g -0.3284 29.5628 43.6580 -Arial_Bold.ttf 37 m 44.6104 31.9026 17 d -9.9460 29.5628 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 18 W -9.8829 54.7706 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 19 s -0.1859 28.3333 32.1169 -Arial_Bold.ttf 37 m 44.6104 31.9026 20 c -0.1812 27.5000 32.1169 -Arial_Bold.ttf 37 m 44.6104 31.9026 21 u 0.9969 27.7857 30.8874 -Arial_Bold.ttf 37 m 44.6104 31.9026 22 3 -10.4826 27.2857 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 23 ~ 5.9129 30.4589 10.8117 -Arial_Bold.ttf 37 m 44.6104 31.9026 24 # -9.7974 30.3874 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 25 O -11.0719 40.3420 43.4589 -Arial_Bold.ttf 37 m 44.6104 31.9026 26 ` -9.8874 12.7706 8.3203 -Arial_Bold.ttf 37 m 44.6104 31.9026 27 @ -10.4045 55.2706 56.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 28 F -9.8662 29.0152 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 29 S -10.8009 33.8615 43.4589 -Arial_Bold.ttf 37 m 44.6104 31.9026 30 p -0.3145 29.5628 43.4437 -Arial_Bold.ttf 37 m 44.6104 31.9026 31 “ -9.8627 22.4719 17.6883 -Arial_Bold.ttf 37 m 44.6104 31.9026 32 % -10.5436 44.9329 43.6580 -Arial_Bold.ttf 37 m 44.6104 31.9026 33 £ -10.4891 31.1883 42.4286 -Arial_Bold.ttf 37 m 44.6104 31.9026 34 . 23.3629 8.1385 8.1385 -Arial_Bold.ttf 37 m 44.6104 31.9026 35 2 -10.3864 27.2857 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 36 5 -10.0627 28.0000 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 37 m -0.1293 44.6104 31.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 38 V -9.9903 38.4935 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 39 6 -9.8958 27.2857 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 40 w 1.1749 45.5065 30.6732 -Arial_Bold.ttf 37 m 44.6104 31.9026 41 T -10.1078 33.2511 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 42 M -10.3268 39.5584 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 43 G -11.1604 39.1126 43.4589 -Arial_Bold.ttf 37 m 44.6104 31.9026 44 b -10.1541 29.5628 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 45 9 -9.8674 27.2857 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 46 ; 1.0052 8.8680 40.4372 -Arial_Bold.ttf 37 m 44.6104 31.9026 47 D -10.4645 35.0909 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 48 L -9.7912 29.9113 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 49 y 1.2937 31.6883 42.4286 -Arial_Bold.ttf 37 m 44.6104 31.9026 50 ‘ -10.0208 8.8680 17.6883 -Arial_Bold.ttf 37 m 44.6104 31.9026 51 \ -9.8805 17.6883 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 52 R -10.0468 37.0498 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 53 < -4.6382 28.0000 31.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 54 4 -10.1365 29.9589 41.7857 -Arial_Bold.ttf 37 m 44.6104 31.9026 55 8 -9.9141 27.2857 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 56 0 -10.5295 27.2857 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 57 A -9.8479 40.5887 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 58 E -10.2755 32.0844 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 59 B -10.1466 35.0909 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 60 v 1.2703 31.6883 30.6732 -Arial_Bold.ttf 37 m 44.6104 31.9026 61 k -10.0907 28.5152 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 62 J -9.9162 26.9524 42.7294 -Arial_Bold.ttf 37 m 44.6104 31.9026 63 U -9.9734 33.3463 42.7294 -Arial_Bold.ttf 37 m 44.6104 31.9026 64 j -10.1891 15.2294 53.7554 -Arial_Bold.ttf 37 m 44.6104 31.9026 65 ( -9.9805 14.0000 53.5411 -Arial_Bold.ttf 37 m 44.6104 31.9026 66 7 -9.7686 27.2857 41.7857 -Arial_Bold.ttf 37 m 44.6104 31.9026 67 § -10.3650 28.5152 54.7706 -Arial_Bold.ttf 37 m 44.6104 31.9026 68 $ -13.1920 27.7857 50.8680 -Arial_Bold.ttf 37 m 44.6104 31.9026 69 € -10.6145 31.6883 42.9437 -Arial_Bold.ttf 37 m 44.6104 31.9026 70 / -9.8986 17.6883 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 71 C -10.8364 36.6537 42.7294 -Arial_Bold.ttf 37 m 44.6104 31.9026 72 * -10.0369 19.7424 19.1320 -Arial_Bold.ttf 37 m 44.6104 31.9026 73 ” -10.5407 22.4719 17.6883 -Arial_Bold.ttf 37 m 44.6104 31.9026 74 ? -10.5105 30.4589 42.2143 -Arial_Bold.ttf 37 m 44.6104 31.9026 75 { -10.1700 19.6472 53.9697 -Arial_Bold.ttf 37 m 44.6104 31.9026 76 } -10.2986 19.6472 53.9697 -Arial_Bold.ttf 37 m 44.6104 31.9026 77 , 24.0219 8.8680 17.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 78 I -10.1312 8.1385 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 79 ° -10.2629 18.0844 18.0844 -Arial_Bold.ttf 37 m 44.6104 31.9026 80 K -10.1786 37.7641 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 81 H -10.2924 33.3463 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 82 q -0.1597 29.5628 43.4437 -Arial_Bold.ttf 37 m 44.6104 31.9026 83 & -10.2700 38.8117 42.4286 -Arial_Bold.ttf 37 m 44.6104 31.9026 84 ’ -10.2188 8.8680 17.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 85 [ -10.0629 15.2294 53.5411 -Arial_Bold.ttf 37 m 44.6104 31.9026 86 - 13.6879 15.7294 6.9091 -Arial_Bold.ttf 37 m 44.6104 31.9026 87 Y -9.8910 41.0563 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 88 Q -10.5169 41.7857 46.6472 -Arial_Bold.ttf 37 m 44.6104 31.9026 89 " -9.8122 21.5909 15.2294 -Arial_Bold.ttf 37 m 44.6104 31.9026 90 ! -10.0746 8.1385 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 91 x 1.3568 32.4177 30.6732 -Arial_Bold.ttf 37 m 44.6104 31.9026 92 ) -10.0541 14.0000 53.5411 -Arial_Bold.ttf 37 m 44.6104 31.9026 93 = 1.2742 29.2294 19.2835 -Arial_Bold.ttf 37 m 44.6104 31.9026 94 + -2.8679 28.8961 28.8961 -Arial_Bold.ttf 37 m 44.6104 31.9026 95 X -10.1976 38.9935 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 96 » 3.1334 26.9524 26.5563 -Arial_Bold.ttf 37 m 44.6104 31.9026 97 ' -10.1492 8.1385 15.2294 -Arial_Bold.ttf 37 m 44.6104 31.9026 98 ¢ -9.9698 28.7294 54.4372 -Arial_Bold.ttf 37 m 44.6104 31.9026 99 Z -9.7389 34.4805 42.0000 -Arial_Bold.ttf 37 m 44.6104 31.9026 100 > -4.4084 28.0000 31.9026 -Arial_Bold.ttf 37 m 44.6104 31.9026 101 ® -10.4522 43.2294 42.4286 -Arial_Bold.ttf 37 m 44.6104 31.9026 102 © -10.3474 43.9589 42.4286 -Arial_Bold.ttf 37 m 44.6104 31.9026 103 ] -10.3048 15.2294 53.5411 -Arial_Bold.ttf 37 m 44.6104 31.9026 104 é -11.1197 29.4113 42.8961 -Arial_Bold.ttf 37 m 44.6104 31.9026 105 z 1.6154 26.7706 30.6732 -Arial_Bold.ttf 37 m 44.6104 31.9026 106 _ 37.4920 33.4654 5.8615 -Arial_Bold.ttf 37 m 44.6104 31.9026 107 ¥ -10.0650 30.2056 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 1 t 0.7312 18.1169 41.3810 -Arial_Bold.ttf 38 V 38.4935 42.0000 2 h 0.0857 27.7857 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 3 a 9.9179 28.8333 32.1169 -Arial_Bold.ttf 38 V 38.4935 42.0000 4 n 10.1331 27.7857 31.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 5 P -0.0022 32.0844 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 6 o 10.0891 31.0065 32.1169 -Arial_Bold.ttf 38 V 38.4935 42.0000 7 e 9.8986 29.4113 32.1169 -Arial_Bold.ttf 38 V 38.4935 42.0000 8 : 11.1274 8.1385 30.6732 -Arial_Bold.ttf 38 V 38.4935 42.0000 9 r 9.8299 19.8615 31.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 10 l 0.0679 8.1385 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 11 i -0.2653 8.1385 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 12 1 -0.1324 18.2359 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 13 | 0.2548 5.8615 54.5563 -Arial_Bold.ttf 38 V 38.4935 42.0000 14 N -0.2502 33.3463 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 15 f -0.2748 20.6948 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 16 g 10.0117 29.5628 43.6580 -Arial_Bold.ttf 38 V 38.4935 42.0000 17 d -0.2314 29.5628 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 18 W -0.0917 54.7706 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 19 s 10.1460 28.3333 32.1169 -Arial_Bold.ttf 38 V 38.4935 42.0000 20 c 9.9986 27.5000 32.1169 -Arial_Bold.ttf 38 V 38.4935 42.0000 21 u 11.2352 27.7857 30.8874 -Arial_Bold.ttf 38 V 38.4935 42.0000 22 3 0.1929 27.2857 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 23 ~ 16.0148 30.4589 10.8117 -Arial_Bold.ttf 38 V 38.4935 42.0000 24 # 0.3750 30.3874 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 25 O -0.4530 40.3420 43.4589 -Arial_Bold.ttf 38 V 38.4935 42.0000 26 ` -0.0947 12.7706 8.3203 -Arial_Bold.ttf 38 V 38.4935 42.0000 27 @ -0.7197 55.2706 56.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 28 F -0.2262 29.0152 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 29 S -0.5892 33.8615 43.4589 -Arial_Bold.ttf 38 V 38.4935 42.0000 30 p 10.2571 29.5628 43.4437 -Arial_Bold.ttf 38 V 38.4935 42.0000 31 “ -0.0833 22.4719 17.6883 -Arial_Bold.ttf 38 V 38.4935 42.0000 32 % -0.2333 44.9329 43.6580 -Arial_Bold.ttf 38 V 38.4935 42.0000 33 £ -0.2526 31.1883 42.4286 -Arial_Bold.ttf 38 V 38.4935 42.0000 34 . 33.7698 8.1385 8.1385 -Arial_Bold.ttf 38 V 38.4935 42.0000 35 2 -0.0500 27.2857 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 36 5 0.1857 28.0000 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 37 m 10.1391 44.6104 31.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 38 V 0.0105 38.4935 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 39 6 -0.0695 27.2857 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 40 w 11.0123 45.5065 30.6732 -Arial_Bold.ttf 38 V 38.4935 42.0000 41 T 0.3321 33.2511 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 42 M -0.2864 39.5584 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 43 G -0.7892 39.1126 43.4589 -Arial_Bold.ttf 38 V 38.4935 42.0000 44 b 0.1917 29.5628 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 45 9 0.1071 27.2857 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 46 ; 11.2366 8.8680 40.4372 -Arial_Bold.ttf 38 V 38.4935 42.0000 47 D 0.2221 35.0909 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 48 L 0.0038 29.9113 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 49 y 11.4140 31.6883 42.4286 -Arial_Bold.ttf 38 V 38.4935 42.0000 50 ‘ -0.1766 8.8680 17.6883 -Arial_Bold.ttf 38 V 38.4935 42.0000 51 \ 0.0506 17.6883 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 52 R 0.0676 37.0498 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 53 < 5.5570 28.0000 31.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 54 4 -0.0326 29.9589 41.7857 -Arial_Bold.ttf 38 V 38.4935 42.0000 55 8 0.0045 27.2857 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 56 0 0.2250 27.2857 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 57 A 0.1157 40.5887 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 58 E -0.1333 32.0844 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 59 B -0.2137 35.0909 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 60 v 11.6199 31.6883 30.6732 -Arial_Bold.ttf 38 V 38.4935 42.0000 61 k -0.2350 28.5152 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 62 J 0.0000 26.9524 42.7294 -Arial_Bold.ttf 38 V 38.4935 42.0000 63 U 0.0571 33.3463 42.7294 -Arial_Bold.ttf 38 V 38.4935 42.0000 64 j -0.2540 15.2294 53.7554 -Arial_Bold.ttf 38 V 38.4935 42.0000 65 ( 0.0560 14.0000 53.5411 -Arial_Bold.ttf 38 V 38.4935 42.0000 66 7 0.6205 27.2857 41.7857 -Arial_Bold.ttf 38 V 38.4935 42.0000 67 § -0.1181 28.5152 54.7706 -Arial_Bold.ttf 38 V 38.4935 42.0000 68 $ -2.8634 27.7857 50.8680 -Arial_Bold.ttf 38 V 38.4935 42.0000 69 € -0.8418 31.6883 42.9437 -Arial_Bold.ttf 38 V 38.4935 42.0000 70 / 0.2705 17.6883 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 71 C -0.9497 36.6537 42.7294 -Arial_Bold.ttf 38 V 38.4935 42.0000 72 * 0.1645 19.7424 19.1320 -Arial_Bold.ttf 38 V 38.4935 42.0000 73 ” -0.0071 22.4719 17.6883 -Arial_Bold.ttf 38 V 38.4935 42.0000 74 ? -0.0966 30.4589 42.2143 -Arial_Bold.ttf 38 V 38.4935 42.0000 75 { -0.2943 19.6472 53.9697 -Arial_Bold.ttf 38 V 38.4935 42.0000 76 } 0.0919 19.6472 53.9697 -Arial_Bold.ttf 38 V 38.4935 42.0000 77 , 34.1455 8.8680 17.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 78 I -0.0702 8.1385 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 79 ° -0.2060 18.0844 18.0844 -Arial_Bold.ttf 38 V 38.4935 42.0000 80 K 0.3562 37.7641 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 81 H -0.0365 33.3463 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 82 q 10.2474 29.5628 43.4437 -Arial_Bold.ttf 38 V 38.4935 42.0000 83 & 0.1995 38.8117 42.4286 -Arial_Bold.ttf 38 V 38.4935 42.0000 84 ’ -0.2609 8.8680 17.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 85 [ -0.2242 15.2294 53.5411 -Arial_Bold.ttf 38 V 38.4935 42.0000 86 - 23.3634 15.7294 6.9091 -Arial_Bold.ttf 38 V 38.4935 42.0000 87 Y 0.0917 41.0563 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 88 Q -0.7832 41.7857 46.6472 -Arial_Bold.ttf 38 V 38.4935 42.0000 89 " -0.1331 21.5909 15.2294 -Arial_Bold.ttf 38 V 38.4935 42.0000 90 ! -0.2690 8.1385 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 91 x 11.0623 32.4177 30.6732 -Arial_Bold.ttf 38 V 38.4935 42.0000 92 ) -0.0857 14.0000 53.5411 -Arial_Bold.ttf 38 V 38.4935 42.0000 93 = 11.4185 29.2294 19.2835 -Arial_Bold.ttf 38 V 38.4935 42.0000 94 + 7.0477 28.8961 28.8961 -Arial_Bold.ttf 38 V 38.4935 42.0000 95 X -0.1417 38.9935 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 96 » 13.7047 26.9524 26.5563 -Arial_Bold.ttf 38 V 38.4935 42.0000 97 ' -0.0917 8.1385 15.2294 -Arial_Bold.ttf 38 V 38.4935 42.0000 98 ¢ -0.1821 28.7294 54.4372 -Arial_Bold.ttf 38 V 38.4935 42.0000 99 Z -0.0455 34.4805 42.0000 -Arial_Bold.ttf 38 V 38.4935 42.0000 100 > 5.4161 28.0000 31.9026 -Arial_Bold.ttf 38 V 38.4935 42.0000 101 ® -0.0524 43.2294 42.4286 -Arial_Bold.ttf 38 V 38.4935 42.0000 102 © -0.1248 43.9589 42.4286 -Arial_Bold.ttf 38 V 38.4935 42.0000 103 ] 0.0000 15.2294 53.5411 -Arial_Bold.ttf 38 V 38.4935 42.0000 104 é -0.8378 29.4113 42.8961 -Arial_Bold.ttf 38 V 38.4935 42.0000 105 z 11.0921 26.7706 30.6732 -Arial_Bold.ttf 38 V 38.4935 42.0000 106 _ 47.4413 33.4654 5.8615 -Arial_Bold.ttf 38 V 38.4935 42.0000 107 ¥ 0.1631 30.2056 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 1 t 0.9197 18.1169 41.3810 -Arial_Bold.ttf 39 6 27.2857 42.2143 2 h 0.0486 27.7857 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 3 a 9.8153 28.8333 32.1169 -Arial_Bold.ttf 39 6 27.2857 42.2143 4 n 10.0193 27.7857 31.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 5 P 0.2683 32.0844 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 6 o 10.0843 31.0065 32.1169 -Arial_Bold.ttf 39 6 27.2857 42.2143 7 e 9.9260 29.4113 32.1169 -Arial_Bold.ttf 39 6 27.2857 42.2143 8 : 11.2464 8.1385 30.6732 -Arial_Bold.ttf 39 6 27.2857 42.2143 9 r 9.9117 19.8615 31.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 10 l 0.0736 8.1385 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 11 i -0.1143 8.1385 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 12 1 -0.1826 18.2359 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 13 | 0.0181 5.8615 54.5563 -Arial_Bold.ttf 39 6 27.2857 42.2143 14 N -0.1371 33.3463 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 15 f -0.2357 20.6948 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 16 g 10.1853 29.5628 43.6580 -Arial_Bold.ttf 39 6 27.2857 42.2143 17 d 0.1319 29.5628 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 18 W 0.1683 54.7706 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 19 s 10.0557 28.3333 32.1169 -Arial_Bold.ttf 39 6 27.2857 42.2143 20 c 9.9291 27.5000 32.1169 -Arial_Bold.ttf 39 6 27.2857 42.2143 21 u 11.3261 27.7857 30.8874 -Arial_Bold.ttf 39 6 27.2857 42.2143 22 3 -0.1716 27.2857 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 23 ~ 15.6406 30.4589 10.8117 -Arial_Bold.ttf 39 6 27.2857 42.2143 24 # -0.1443 30.3874 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 25 O -0.8354 40.3420 43.4589 -Arial_Bold.ttf 39 6 27.2857 42.2143 26 ` 0.3054 12.7706 8.3203 -Arial_Bold.ttf 39 6 27.2857 42.2143 27 @ -0.1317 55.2706 56.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 28 F 0.2645 29.0152 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 29 S -0.8425 33.8615 43.4589 -Arial_Bold.ttf 39 6 27.2857 42.2143 30 p 10.0246 29.5628 43.4437 -Arial_Bold.ttf 39 6 27.2857 42.2143 31 “ 0.0181 22.4719 17.6883 -Arial_Bold.ttf 39 6 27.2857 42.2143 32 % -0.0621 44.9329 43.6580 -Arial_Bold.ttf 39 6 27.2857 42.2143 33 £ -0.3288 31.1883 42.4286 -Arial_Bold.ttf 39 6 27.2857 42.2143 34 . 33.7067 8.1385 8.1385 -Arial_Bold.ttf 39 6 27.2857 42.2143 35 2 0.1455 27.2857 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 36 5 0.3649 28.0000 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 37 m 10.3657 44.6104 31.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 38 V 0.0298 38.4935 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 39 6 0.2314 27.2857 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 40 w 11.5890 45.5065 30.6732 -Arial_Bold.ttf 39 6 27.2857 42.2143 41 T -0.0933 33.2511 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 42 M -0.1131 39.5584 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 43 G -0.7854 39.1126 43.4589 -Arial_Bold.ttf 39 6 27.2857 42.2143 44 b -0.1528 29.5628 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 45 9 0.0500 27.2857 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 46 ; 11.0364 8.8680 40.4372 -Arial_Bold.ttf 39 6 27.2857 42.2143 47 D 0.0774 35.0909 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 48 L -0.3236 29.9113 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 49 y 11.2495 31.6883 42.4286 -Arial_Bold.ttf 39 6 27.2857 42.2143 50 ‘ -0.1000 8.8680 17.6883 -Arial_Bold.ttf 39 6 27.2857 42.2143 51 \ 0.0052 17.6883 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 52 R 0.1476 37.0498 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 53 < 5.3483 28.0000 31.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 54 4 0.1583 29.9589 41.7857 -Arial_Bold.ttf 39 6 27.2857 42.2143 55 8 0.0240 27.2857 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 56 0 0.1450 27.2857 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 57 A -0.1423 40.5887 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 58 E 0.1060 32.0844 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 59 B 0.1214 35.0909 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 60 v 11.4404 31.6883 30.6732 -Arial_Bold.ttf 39 6 27.2857 42.2143 61 k -0.1333 28.5152 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 62 J 0.1221 26.9524 42.7294 -Arial_Bold.ttf 39 6 27.2857 42.2143 63 U 0.0045 33.3463 42.7294 -Arial_Bold.ttf 39 6 27.2857 42.2143 64 j -0.1417 15.2294 53.7554 -Arial_Bold.ttf 39 6 27.2857 42.2143 65 ( -0.2750 14.0000 53.5411 -Arial_Bold.ttf 39 6 27.2857 42.2143 66 7 0.2157 27.2857 41.7857 -Arial_Bold.ttf 39 6 27.2857 42.2143 67 § -0.4295 28.5152 54.7706 -Arial_Bold.ttf 39 6 27.2857 42.2143 68 $ -2.9648 27.7857 50.8680 -Arial_Bold.ttf 39 6 27.2857 42.2143 69 € -0.5521 31.6883 42.9437 -Arial_Bold.ttf 39 6 27.2857 42.2143 70 / -0.2631 17.6883 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 71 C -1.0477 36.6537 42.7294 -Arial_Bold.ttf 39 6 27.2857 42.2143 72 * 0.0281 19.7424 19.1320 -Arial_Bold.ttf 39 6 27.2857 42.2143 73 ” 0.2274 22.4719 17.6883 -Arial_Bold.ttf 39 6 27.2857 42.2143 74 ? -0.4502 30.4589 42.2143 -Arial_Bold.ttf 39 6 27.2857 42.2143 75 { -0.3379 19.6472 53.9697 -Arial_Bold.ttf 39 6 27.2857 42.2143 76 } -0.1429 19.6472 53.9697 -Arial_Bold.ttf 39 6 27.2857 42.2143 77 , 33.9889 8.8680 17.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 78 I 0.0123 8.1385 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 79 ° -0.4445 18.0844 18.0844 -Arial_Bold.ttf 39 6 27.2857 42.2143 80 K 0.0845 37.7641 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 81 H -0.1774 33.3463 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 82 q 10.1034 29.5628 43.4437 -Arial_Bold.ttf 39 6 27.2857 42.2143 83 & 0.0131 38.8117 42.4286 -Arial_Bold.ttf 39 6 27.2857 42.2143 84 ’ -0.0462 8.8680 17.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 85 [ 0.0350 15.2294 53.5411 -Arial_Bold.ttf 39 6 27.2857 42.2143 86 - 24.0824 15.7294 6.9091 -Arial_Bold.ttf 39 6 27.2857 42.2143 87 Y 0.0567 41.0563 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 88 Q -0.8985 41.7857 46.6472 -Arial_Bold.ttf 39 6 27.2857 42.2143 89 " -0.0514 21.5909 15.2294 -Arial_Bold.ttf 39 6 27.2857 42.2143 90 ! 0.0774 8.1385 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 91 x 11.4050 32.4177 30.6732 -Arial_Bold.ttf 39 6 27.2857 42.2143 92 ) 0.2683 14.0000 53.5411 -Arial_Bold.ttf 39 6 27.2857 42.2143 93 = 11.4088 29.2294 19.2835 -Arial_Bold.ttf 39 6 27.2857 42.2143 94 + 7.1994 28.8961 28.8961 -Arial_Bold.ttf 39 6 27.2857 42.2143 95 X -0.0601 38.9935 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 96 » 13.6160 26.9524 26.5563 -Arial_Bold.ttf 39 6 27.2857 42.2143 97 ' -0.2048 8.1385 15.2294 -Arial_Bold.ttf 39 6 27.2857 42.2143 98 ¢ 0.0060 28.7294 54.4372 -Arial_Bold.ttf 39 6 27.2857 42.2143 99 Z 0.0812 34.4805 42.0000 -Arial_Bold.ttf 39 6 27.2857 42.2143 100 > 5.5427 28.0000 31.9026 -Arial_Bold.ttf 39 6 27.2857 42.2143 101 ® -0.0734 43.2294 42.4286 -Arial_Bold.ttf 39 6 27.2857 42.2143 102 © -0.2571 43.9589 42.4286 -Arial_Bold.ttf 39 6 27.2857 42.2143 103 ] 0.1917 15.2294 53.5411 -Arial_Bold.ttf 39 6 27.2857 42.2143 104 é -0.5447 29.4113 42.8961 -Arial_Bold.ttf 39 6 27.2857 42.2143 105 z 11.3547 26.7706 30.6732 -Arial_Bold.ttf 39 6 27.2857 42.2143 106 _ 47.5344 33.4654 5.8615 -Arial_Bold.ttf 39 6 27.2857 42.2143 107 ¥ -0.1083 30.2056 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 1 t -10.3852 18.1169 41.3810 -Arial_Bold.ttf 40 w 45.5065 30.6732 2 h -11.4685 27.7857 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 3 a -1.3144 28.8333 32.1169 -Arial_Bold.ttf 40 w 45.5065 30.6732 4 n -0.9852 27.7857 31.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 5 P -11.3542 32.0844 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 6 o -1.2735 31.0065 32.1169 -Arial_Bold.ttf 40 w 45.5065 30.6732 7 e -1.1547 29.4113 32.1169 -Arial_Bold.ttf 40 w 45.5065 30.6732 8 : 0.0560 8.1385 30.6732 -Arial_Bold.ttf 40 w 45.5065 30.6732 9 r -1.4523 19.8615 31.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 10 l -11.2423 8.1385 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 11 i -11.3931 8.1385 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 12 1 -11.0221 18.2359 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 13 | -11.1190 5.8615 54.5563 -Arial_Bold.ttf 40 w 45.5065 30.6732 14 N -11.5971 33.3463 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 15 f -11.5107 20.6948 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 16 g -1.5358 29.5628 43.6580 -Arial_Bold.ttf 40 w 45.5065 30.6732 17 d -11.3800 29.5628 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 18 W -11.3580 54.7706 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 19 s -1.3802 28.3333 32.1169 -Arial_Bold.ttf 40 w 45.5065 30.6732 20 c -1.0185 27.5000 32.1169 -Arial_Bold.ttf 40 w 45.5065 30.6732 21 u 0.0455 27.7857 30.8874 -Arial_Bold.ttf 40 w 45.5065 30.6732 22 3 -10.9669 27.2857 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 23 ~ 4.4761 30.4589 10.8117 -Arial_Bold.ttf 40 w 45.5065 30.6732 24 # -11.6725 30.3874 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 25 O -12.3196 40.3420 43.4589 -Arial_Bold.ttf 40 w 45.5065 30.6732 26 ` -11.3390 12.7706 8.3203 -Arial_Bold.ttf 40 w 45.5065 30.6732 27 @ -11.7477 55.2706 56.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 28 F -11.0776 29.0152 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 29 S -11.9192 33.8615 43.4589 -Arial_Bold.ttf 40 w 45.5065 30.6732 30 p -1.2880 29.5628 43.4437 -Arial_Bold.ttf 40 w 45.5065 30.6732 31 “ -11.3411 22.4719 17.6883 -Arial_Bold.ttf 40 w 45.5065 30.6732 32 % -11.6411 44.9329 43.6580 -Arial_Bold.ttf 40 w 45.5065 30.6732 33 £ -11.5978 31.1883 42.4286 -Arial_Bold.ttf 40 w 45.5065 30.6732 34 . 22.4215 8.1385 8.1385 -Arial_Bold.ttf 40 w 45.5065 30.6732 35 2 -11.2214 27.2857 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 36 5 -10.7947 28.0000 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 37 m -0.8890 44.6104 31.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 38 V -11.2359 38.4935 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 39 6 -11.4459 27.2857 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 40 w -0.3034 45.5065 30.6732 -Arial_Bold.ttf 40 w 45.5065 30.6732 41 T -11.4899 33.2511 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 42 M -11.2425 39.5584 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 43 G -12.1837 39.1126 43.4589 -Arial_Bold.ttf 40 w 45.5065 30.6732 44 b -11.2463 29.5628 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 45 9 -11.4570 27.2857 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 46 ; -0.1274 8.8680 40.4372 -Arial_Bold.ttf 40 w 45.5065 30.6732 47 D -11.3411 35.0909 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 48 L -11.2640 29.9113 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 49 y -0.0357 31.6883 42.4286 -Arial_Bold.ttf 40 w 45.5065 30.6732 50 ‘ -11.3925 8.8680 17.6883 -Arial_Bold.ttf 40 w 45.5065 30.6732 51 \ -11.1481 17.6883 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 52 R -11.4213 37.0498 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 53 < -5.5172 28.0000 31.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 54 4 -10.9897 29.9589 41.7857 -Arial_Bold.ttf 40 w 45.5065 30.6732 55 8 -11.5816 27.2857 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 56 0 -11.3238 27.2857 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 57 A -11.3009 40.5887 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 58 E -11.2649 32.0844 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 59 B -11.5959 35.0909 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 60 v 0.3171 31.6883 30.6732 -Arial_Bold.ttf 40 w 45.5065 30.6732 61 k -11.2880 28.5152 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 62 J -11.2294 26.9524 42.7294 -Arial_Bold.ttf 40 w 45.5065 30.6732 63 U -11.4594 33.3463 42.7294 -Arial_Bold.ttf 40 w 45.5065 30.6732 64 j -11.1443 15.2294 53.7554 -Arial_Bold.ttf 40 w 45.5065 30.6732 65 ( -11.3256 14.0000 53.5411 -Arial_Bold.ttf 40 w 45.5065 30.6732 66 7 -10.8526 27.2857 41.7857 -Arial_Bold.ttf 40 w 45.5065 30.6732 67 § -11.3364 28.5152 54.7706 -Arial_Bold.ttf 40 w 45.5065 30.6732 68 $ -13.9891 27.7857 50.8680 -Arial_Bold.ttf 40 w 45.5065 30.6732 69 € -12.1739 31.6883 42.9437 -Arial_Bold.ttf 40 w 45.5065 30.6732 70 / -11.2009 17.6883 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 71 C -12.1908 36.6537 42.7294 -Arial_Bold.ttf 40 w 45.5065 30.6732 72 * -11.5899 19.7424 19.1320 -Arial_Bold.ttf 40 w 45.5065 30.6732 73 ” -11.2030 22.4719 17.6883 -Arial_Bold.ttf 40 w 45.5065 30.6732 74 ? -11.3131 30.4589 42.2143 -Arial_Bold.ttf 40 w 45.5065 30.6732 75 { -11.6616 19.6472 53.9697 -Arial_Bold.ttf 40 w 45.5065 30.6732 76 } -11.8380 19.6472 53.9697 -Arial_Bold.ttf 40 w 45.5065 30.6732 77 , 22.6289 8.8680 17.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 78 I -11.3290 8.1385 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 79 ° -11.8792 18.0844 18.0844 -Arial_Bold.ttf 40 w 45.5065 30.6732 80 K -11.1040 37.7641 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 81 H -11.2780 33.3463 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 82 q -1.4096 29.5628 43.4437 -Arial_Bold.ttf 40 w 45.5065 30.6732 83 & -11.7719 38.8117 42.4286 -Arial_Bold.ttf 40 w 45.5065 30.6732 84 ’ -11.5640 8.8680 17.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 85 [ -11.2897 15.2294 53.5411 -Arial_Bold.ttf 40 w 45.5065 30.6732 86 - 12.3606 15.7294 6.9091 -Arial_Bold.ttf 40 w 45.5065 30.6732 87 Y -11.5050 41.0563 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 88 Q -12.0608 41.7857 46.6472 -Arial_Bold.ttf 40 w 45.5065 30.6732 89 " -11.3471 21.5909 15.2294 -Arial_Bold.ttf 40 w 45.5065 30.6732 90 ! -11.2530 8.1385 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 91 x 0.3940 32.4177 30.6732 -Arial_Bold.ttf 40 w 45.5065 30.6732 92 ) -11.5945 14.0000 53.5411 -Arial_Bold.ttf 40 w 45.5065 30.6732 93 = -0.0097 29.2294 19.2835 -Arial_Bold.ttf 40 w 45.5065 30.6732 94 + -4.2104 28.8961 28.8961 -Arial_Bold.ttf 40 w 45.5065 30.6732 95 X -11.5009 38.9935 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 96 » 1.9754 26.9524 26.5563 -Arial_Bold.ttf 40 w 45.5065 30.6732 97 ' -11.2449 8.1385 15.2294 -Arial_Bold.ttf 40 w 45.5065 30.6732 98 ¢ -11.3469 28.7294 54.4372 -Arial_Bold.ttf 40 w 45.5065 30.6732 99 Z -11.3268 34.4805 42.0000 -Arial_Bold.ttf 40 w 45.5065 30.6732 100 > -6.0141 28.0000 31.9026 -Arial_Bold.ttf 40 w 45.5065 30.6732 101 ® -11.8894 43.2294 42.4286 -Arial_Bold.ttf 40 w 45.5065 30.6732 102 © -11.5411 43.9589 42.4286 -Arial_Bold.ttf 40 w 45.5065 30.6732 103 ] -11.2540 15.2294 53.5411 -Arial_Bold.ttf 40 w 45.5065 30.6732 104 é -12.2079 29.4113 42.8961 -Arial_Bold.ttf 40 w 45.5065 30.6732 105 z 0.2014 26.7706 30.6732 -Arial_Bold.ttf 40 w 45.5065 30.6732 106 _ 36.1576 33.4654 5.8615 -Arial_Bold.ttf 40 w 45.5065 30.6732 107 ¥ -11.6999 30.2056 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 1 t 0.9107 18.1169 41.3810 -Arial_Bold.ttf 41 T 33.2511 42.0000 2 h 0.0095 27.7857 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 3 a 10.3931 28.8333 32.1169 -Arial_Bold.ttf 41 T 33.2511 42.0000 4 n 10.1593 27.7857 31.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 5 P 0.0176 32.0844 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 6 o 10.1331 31.0065 32.1169 -Arial_Bold.ttf 41 T 33.2511 42.0000 7 e 10.0298 29.4113 32.1169 -Arial_Bold.ttf 41 T 33.2511 42.0000 8 : 11.4782 8.1385 30.6732 -Arial_Bold.ttf 41 T 33.2511 42.0000 9 r 10.4724 19.8615 31.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 10 l 0.0560 8.1385 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 11 i 0.0298 8.1385 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 12 1 0.0992 18.2359 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 13 | -0.1552 5.8615 54.5563 -Arial_Bold.ttf 41 T 33.2511 42.0000 14 N -0.0105 33.3463 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 15 f -0.2702 20.6948 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 16 g 9.8519 29.5628 43.6580 -Arial_Bold.ttf 41 T 33.2511 42.0000 17 d -0.0417 29.5628 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 18 W 0.2040 54.7706 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 19 s 9.6615 28.3333 32.1169 -Arial_Bold.ttf 41 T 33.2511 42.0000 20 c 9.9700 27.5000 32.1169 -Arial_Bold.ttf 41 T 33.2511 42.0000 21 u 11.2937 27.7857 30.8874 -Arial_Bold.ttf 41 T 33.2511 42.0000 22 3 -0.0119 27.2857 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 23 ~ 16.0589 30.4589 10.8117 -Arial_Bold.ttf 41 T 33.2511 42.0000 24 # 0.2626 30.3874 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 25 O -1.1682 40.3420 43.4589 -Arial_Bold.ttf 41 T 33.2511 42.0000 26 ` -0.4792 12.7706 8.3203 -Arial_Bold.ttf 41 T 33.2511 42.0000 27 @ -0.4514 55.2706 56.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 28 F -0.0181 29.0152 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 29 S -0.9854 33.8615 43.4589 -Arial_Bold.ttf 41 T 33.2511 42.0000 30 p 10.0284 29.5628 43.4437 -Arial_Bold.ttf 41 T 33.2511 42.0000 31 “ 0.0365 22.4719 17.6883 -Arial_Bold.ttf 41 T 33.2511 42.0000 32 % 0.0264 44.9329 43.6580 -Arial_Bold.ttf 41 T 33.2511 42.0000 33 £ 0.3252 31.1883 42.4286 -Arial_Bold.ttf 41 T 33.2511 42.0000 34 . 33.8496 8.1385 8.1385 -Arial_Bold.ttf 41 T 33.2511 42.0000 35 2 -0.2555 27.2857 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 36 5 0.3014 28.0000 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 37 m 10.1665 44.6104 31.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 38 V -0.1000 38.4935 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 39 6 0.0819 27.2857 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 40 w 11.0364 45.5065 30.6732 -Arial_Bold.ttf 41 T 33.2511 42.0000 41 T 0.0236 33.2511 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 42 M -0.0071 39.5584 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 43 G -0.7378 39.1126 43.4589 -Arial_Bold.ttf 41 T 33.2511 42.0000 44 b -0.0500 29.5628 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 45 9 0.0312 27.2857 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 46 ; 11.6947 8.8680 40.4372 -Arial_Bold.ttf 41 T 33.2511 42.0000 47 D 0.2295 35.0909 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 48 L 0.0500 29.9113 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 49 y 11.2431 31.6883 42.4286 -Arial_Bold.ttf 41 T 33.2511 42.0000 50 ‘ -0.0696 8.8680 17.6883 -Arial_Bold.ttf 41 T 33.2511 42.0000 51 \ 0.1690 17.6883 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 52 R -0.1357 37.0498 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 53 < 5.3297 28.0000 31.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 54 4 0.2324 29.9589 41.7857 -Arial_Bold.ttf 41 T 33.2511 42.0000 55 8 0.2645 27.2857 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 56 0 0.0327 27.2857 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 57 A 0.3464 40.5887 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 58 E -0.0403 32.0844 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 59 B -0.0260 35.0909 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 60 v 11.4140 31.6883 30.6732 -Arial_Bold.ttf 41 T 33.2511 42.0000 61 k -0.0357 28.5152 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 62 J 0.1312 26.9524 42.7294 -Arial_Bold.ttf 41 T 33.2511 42.0000 63 U -0.0462 33.3463 42.7294 -Arial_Bold.ttf 41 T 33.2511 42.0000 64 j -0.2964 15.2294 53.7554 -Arial_Bold.ttf 41 T 33.2511 42.0000 65 ( -0.2228 14.0000 53.5411 -Arial_Bold.ttf 41 T 33.2511 42.0000 66 7 -0.1254 27.2857 41.7857 -Arial_Bold.ttf 41 T 33.2511 42.0000 67 § -0.3804 28.5152 54.7706 -Arial_Bold.ttf 41 T 33.2511 42.0000 68 $ -3.0960 27.7857 50.8680 -Arial_Bold.ttf 41 T 33.2511 42.0000 69 € -0.6006 31.6883 42.9437 -Arial_Bold.ttf 41 T 33.2511 42.0000 70 / -0.0300 17.6883 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 71 C -0.5292 36.6537 42.7294 -Arial_Bold.ttf 41 T 33.2511 42.0000 72 * 0.0871 19.7424 19.1320 -Arial_Bold.ttf 41 T 33.2511 42.0000 73 ” -0.0424 22.4719 17.6883 -Arial_Bold.ttf 41 T 33.2511 42.0000 74 ? -0.1429 30.4589 42.2143 -Arial_Bold.ttf 41 T 33.2511 42.0000 75 { -0.1258 19.6472 53.9697 -Arial_Bold.ttf 41 T 33.2511 42.0000 76 } -0.2609 19.6472 53.9697 -Arial_Bold.ttf 41 T 33.2511 42.0000 77 , 33.9843 8.8680 17.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 78 I -0.4614 8.1385 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 79 ° 0.0859 18.0844 18.0844 -Arial_Bold.ttf 41 T 33.2511 42.0000 80 K 0.1312 37.7641 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 81 H -0.0786 33.3463 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 82 q 10.0019 29.5628 43.4437 -Arial_Bold.ttf 41 T 33.2511 42.0000 83 & -0.2026 38.8117 42.4286 -Arial_Bold.ttf 41 T 33.2511 42.0000 84 ’ -0.0538 8.8680 17.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 85 [ -0.0286 15.2294 53.5411 -Arial_Bold.ttf 41 T 33.2511 42.0000 86 - 23.4698 15.7294 6.9091 -Arial_Bold.ttf 41 T 33.2511 42.0000 87 Y 0.1728 41.0563 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 88 Q -0.7256 41.7857 46.6472 -Arial_Bold.ttf 41 T 33.2511 42.0000 89 " -0.1585 21.5909 15.2294 -Arial_Bold.ttf 41 T 33.2511 42.0000 90 ! -0.0492 8.1385 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 91 x 11.1631 32.4177 30.6732 -Arial_Bold.ttf 41 T 33.2511 42.0000 92 ) -0.0631 14.0000 53.5411 -Arial_Bold.ttf 41 T 33.2511 42.0000 93 = 11.0721 29.2294 19.2835 -Arial_Bold.ttf 41 T 33.2511 42.0000 94 + 7.0710 28.8961 28.8961 -Arial_Bold.ttf 41 T 33.2511 42.0000 95 X -0.1274 38.9935 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 96 » 13.4939 26.9524 26.5563 -Arial_Bold.ttf 41 T 33.2511 42.0000 97 ' 0.1714 8.1385 15.2294 -Arial_Bold.ttf 41 T 33.2511 42.0000 98 ¢ -0.0150 28.7294 54.4372 -Arial_Bold.ttf 41 T 33.2511 42.0000 99 Z -0.0774 34.4805 42.0000 -Arial_Bold.ttf 41 T 33.2511 42.0000 100 > 5.3082 28.0000 31.9026 -Arial_Bold.ttf 41 T 33.2511 42.0000 101 ® -0.1143 43.2294 42.4286 -Arial_Bold.ttf 41 T 33.2511 42.0000 102 © -0.3260 43.9589 42.4286 -Arial_Bold.ttf 41 T 33.2511 42.0000 103 ] 0.1333 15.2294 53.5411 -Arial_Bold.ttf 41 T 33.2511 42.0000 104 é -1.0106 29.4113 42.8961 -Arial_Bold.ttf 41 T 33.2511 42.0000 105 z 11.1800 26.7706 30.6732 -Arial_Bold.ttf 41 T 33.2511 42.0000 106 _ 47.4594 33.4654 5.8615 -Arial_Bold.ttf 41 T 33.2511 42.0000 107 ¥ -0.1917 30.2056 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 1 t 0.9085 18.1169 41.3810 -Arial_Bold.ttf 42 M 39.5584 42.0000 2 h -0.0645 27.7857 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 3 a 10.1603 28.8333 32.1169 -Arial_Bold.ttf 42 M 39.5584 42.0000 4 n 10.0988 27.7857 31.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 5 P 0.1111 32.0844 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 6 o 10.3172 31.0065 32.1169 -Arial_Bold.ttf 42 M 39.5584 42.0000 7 e 10.5295 29.4113 32.1169 -Arial_Bold.ttf 42 M 39.5584 42.0000 8 : 11.1137 8.1385 30.6732 -Arial_Bold.ttf 42 M 39.5584 42.0000 9 r 10.1436 19.8615 31.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 10 l -0.1600 8.1385 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 11 i -0.2214 8.1385 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 12 1 -0.0236 18.2359 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 13 | 0.2250 5.8615 54.5563 -Arial_Bold.ttf 42 M 39.5584 42.0000 14 N -0.2312 33.3463 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 15 f -0.5107 20.6948 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 16 g 10.1278 29.5628 43.6580 -Arial_Bold.ttf 42 M 39.5584 42.0000 17 d 0.0850 29.5628 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 18 W -0.3861 54.7706 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 19 s 10.0714 28.3333 32.1169 -Arial_Bold.ttf 42 M 39.5584 42.0000 20 c 10.1926 27.5000 32.1169 -Arial_Bold.ttf 42 M 39.5584 42.0000 21 u 11.2792 27.7857 30.8874 -Arial_Bold.ttf 42 M 39.5584 42.0000 22 3 -0.3190 27.2857 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 23 ~ 15.8613 30.4589 10.8117 -Arial_Bold.ttf 42 M 39.5584 42.0000 24 # 0.2472 30.3874 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 25 O -0.6294 40.3420 43.4589 -Arial_Bold.ttf 42 M 39.5584 42.0000 26 ` 0.6266 12.7706 8.3203 -Arial_Bold.ttf 42 M 39.5584 42.0000 27 @ -0.2879 55.2706 56.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 28 F 0.2421 29.0152 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 29 S -0.8114 33.8615 43.4589 -Arial_Bold.ttf 42 M 39.5584 42.0000 30 p 10.3345 29.5628 43.4437 -Arial_Bold.ttf 42 M 39.5584 42.0000 31 “ 0.1788 22.4719 17.6883 -Arial_Bold.ttf 42 M 39.5584 42.0000 32 % -0.1726 44.9329 43.6580 -Arial_Bold.ttf 42 M 39.5584 42.0000 33 £ -0.2097 31.1883 42.4286 -Arial_Bold.ttf 42 M 39.5584 42.0000 34 . 33.7075 8.1385 8.1385 -Arial_Bold.ttf 42 M 39.5584 42.0000 35 2 -0.1417 27.2857 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 36 5 0.1393 28.0000 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 37 m 10.2917 44.6104 31.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 38 V 0.2286 38.4935 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 39 6 0.2228 27.2857 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 40 w 11.2852 45.5065 30.6732 -Arial_Bold.ttf 42 M 39.5584 42.0000 41 T -0.1426 33.2511 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 42 M 0.2716 39.5584 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 43 G -0.2445 39.1126 43.4589 -Arial_Bold.ttf 42 M 39.5584 42.0000 44 b -0.0722 29.5628 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 45 9 -0.2621 27.2857 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 46 ; 11.2685 8.8680 40.4372 -Arial_Bold.ttf 42 M 39.5584 42.0000 47 D -0.1412 35.0909 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 48 L 0.0571 29.9113 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 49 y 11.4697 31.6883 42.4286 -Arial_Bold.ttf 42 M 39.5584 42.0000 50 ‘ 0.0643 8.8680 17.6883 -Arial_Bold.ttf 42 M 39.5584 42.0000 51 \ -0.1705 17.6883 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 52 R -0.0124 37.0498 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 53 < 5.1251 28.0000 31.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 54 4 -0.2633 29.9589 41.7857 -Arial_Bold.ttf 42 M 39.5584 42.0000 55 8 0.0008 27.2857 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 56 0 0.1395 27.2857 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 57 A 0.2264 40.5887 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 58 E -0.1030 32.0844 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 59 B 0.0393 35.0909 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 60 v 11.8509 31.6883 30.6732 -Arial_Bold.ttf 42 M 39.5584 42.0000 61 k -0.4588 28.5152 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 62 J 0.0181 26.9524 42.7294 -Arial_Bold.ttf 42 M 39.5584 42.0000 63 U -0.0681 33.3463 42.7294 -Arial_Bold.ttf 42 M 39.5584 42.0000 64 j 0.0045 15.2294 53.7554 -Arial_Bold.ttf 42 M 39.5584 42.0000 65 ( -0.1560 14.0000 53.5411 -Arial_Bold.ttf 42 M 39.5584 42.0000 66 7 0.1936 27.2857 41.7857 -Arial_Bold.ttf 42 M 39.5584 42.0000 67 § -0.6250 28.5152 54.7706 -Arial_Bold.ttf 42 M 39.5584 42.0000 68 $ -2.7674 27.7857 50.8680 -Arial_Bold.ttf 42 M 39.5584 42.0000 69 € -0.5902 31.6883 42.9437 -Arial_Bold.ttf 42 M 39.5584 42.0000 70 / -0.0123 17.6883 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 71 C -0.6423 36.6537 42.7294 -Arial_Bold.ttf 42 M 39.5584 42.0000 72 * 0.0597 19.7424 19.1320 -Arial_Bold.ttf 42 M 39.5584 42.0000 73 ” -0.3214 22.4719 17.6883 -Arial_Bold.ttf 42 M 39.5584 42.0000 74 ? -0.1702 30.4589 42.2143 -Arial_Bold.ttf 42 M 39.5584 42.0000 75 { -0.1545 19.6472 53.9697 -Arial_Bold.ttf 42 M 39.5584 42.0000 76 } 0.2288 19.6472 53.9697 -Arial_Bold.ttf 42 M 39.5584 42.0000 77 , 34.0396 8.8680 17.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 78 I 0.0871 8.1385 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 79 ° -0.4209 18.0844 18.0844 -Arial_Bold.ttf 42 M 39.5584 42.0000 80 K 0.0774 37.7641 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 81 H -0.1690 33.3463 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 82 q 10.1807 29.5628 43.4437 -Arial_Bold.ttf 42 M 39.5584 42.0000 83 & -0.2377 38.8117 42.4286 -Arial_Bold.ttf 42 M 39.5584 42.0000 84 ’ -0.3426 8.8680 17.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 85 [ -0.0305 15.2294 53.5411 -Arial_Bold.ttf 42 M 39.5584 42.0000 86 - 23.3624 15.7294 6.9091 -Arial_Bold.ttf 42 M 39.5584 42.0000 87 Y -0.0008 41.0563 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 88 Q -0.8763 41.7857 46.6472 -Arial_Bold.ttf 42 M 39.5584 42.0000 89 " 0.0159 21.5909 15.2294 -Arial_Bold.ttf 42 M 39.5584 42.0000 90 ! -0.1019 8.1385 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 91 x 11.4126 32.4177 30.6732 -Arial_Bold.ttf 42 M 39.5584 42.0000 92 ) -0.0500 14.0000 53.5411 -Arial_Bold.ttf 42 M 39.5584 42.0000 93 = 11.0585 29.2294 19.2835 -Arial_Bold.ttf 42 M 39.5584 42.0000 94 + 7.2938 28.8961 28.8961 -Arial_Bold.ttf 42 M 39.5584 42.0000 95 X 0.0804 38.9935 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 96 » 13.3477 26.9524 26.5563 -Arial_Bold.ttf 42 M 39.5584 42.0000 97 ' 0.0202 8.1385 15.2294 -Arial_Bold.ttf 42 M 39.5584 42.0000 98 ¢ -0.0286 28.7294 54.4372 -Arial_Bold.ttf 42 M 39.5584 42.0000 99 Z 0.2145 34.4805 42.0000 -Arial_Bold.ttf 42 M 39.5584 42.0000 100 > 5.5108 28.0000 31.9026 -Arial_Bold.ttf 42 M 39.5584 42.0000 101 ® -0.0379 43.2294 42.4286 -Arial_Bold.ttf 42 M 39.5584 42.0000 102 © -0.2286 43.9589 42.4286 -Arial_Bold.ttf 42 M 39.5584 42.0000 103 ] -0.0893 15.2294 53.5411 -Arial_Bold.ttf 42 M 39.5584 42.0000 104 é -1.0677 29.4113 42.8961 -Arial_Bold.ttf 42 M 39.5584 42.0000 105 z 11.3054 26.7706 30.6732 -Arial_Bold.ttf 42 M 39.5584 42.0000 106 _ 47.6308 33.4654 5.8615 -Arial_Bold.ttf 42 M 39.5584 42.0000 107 ¥ 0.0155 30.2056 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 1 t 1.3705 18.1169 41.3810 -Arial_Bold.ttf 43 G 39.1126 43.4589 2 h 0.9418 27.7857 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 3 a 10.5661 28.8333 32.1169 -Arial_Bold.ttf 43 G 39.1126 43.4589 4 n 11.1271 27.7857 31.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 5 P 0.7256 32.0844 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 6 o 10.4661 31.0065 32.1169 -Arial_Bold.ttf 43 G 39.1126 43.4589 7 e 11.0594 29.4113 32.1169 -Arial_Bold.ttf 43 G 39.1126 43.4589 8 : 12.0636 8.1385 30.6732 -Arial_Bold.ttf 43 G 39.1126 43.4589 9 r 10.6540 19.8615 31.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 10 l 0.3338 8.1385 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 11 i 0.8223 8.1385 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 12 1 0.6878 18.2359 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 13 | 0.7854 5.8615 54.5563 -Arial_Bold.ttf 43 G 39.1126 43.4589 14 N 0.7235 33.3463 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 15 f 0.3584 20.6948 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 16 g 10.6137 29.5628 43.6580 -Arial_Bold.ttf 43 G 39.1126 43.4589 17 d 0.7561 29.5628 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 18 W 0.8064 54.7706 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 19 s 10.7761 28.3333 32.1169 -Arial_Bold.ttf 43 G 39.1126 43.4589 20 c 10.8032 27.5000 32.1169 -Arial_Bold.ttf 43 G 39.1126 43.4589 21 u 11.7801 27.7857 30.8874 -Arial_Bold.ttf 43 G 39.1126 43.4589 22 3 0.9556 27.2857 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 23 ~ 16.7397 30.4589 10.8117 -Arial_Bold.ttf 43 G 39.1126 43.4589 24 # 0.6832 30.3874 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 25 O -0.1190 40.3420 43.4589 -Arial_Bold.ttf 43 G 39.1126 43.4589 26 ` 1.0334 12.7706 8.3203 -Arial_Bold.ttf 43 G 39.1126 43.4589 27 @ 0.3104 55.2706 56.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 28 F 0.4675 29.0152 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 29 S 0.2119 33.8615 43.4589 -Arial_Bold.ttf 43 G 39.1126 43.4589 30 p 11.0890 29.5628 43.4437 -Arial_Bold.ttf 43 G 39.1126 43.4589 31 “ 0.5292 22.4719 17.6883 -Arial_Bold.ttf 43 G 39.1126 43.4589 32 % 0.5471 44.9329 43.6580 -Arial_Bold.ttf 43 G 39.1126 43.4589 33 £ 0.6316 31.1883 42.4286 -Arial_Bold.ttf 43 G 39.1126 43.4589 34 . 34.3778 8.1385 8.1385 -Arial_Bold.ttf 43 G 39.1126 43.4589 35 2 0.7787 27.2857 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 36 5 1.0703 28.0000 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 37 m 10.8528 44.6104 31.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 38 V 0.7223 38.4935 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 39 6 0.6535 27.2857 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 40 w 12.3732 45.5065 30.6732 -Arial_Bold.ttf 43 G 39.1126 43.4589 41 T 0.4969 33.2511 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 42 M 0.7104 39.5584 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 43 G -0.0254 39.1126 43.4589 -Arial_Bold.ttf 43 G 39.1126 43.4589 44 b 0.6642 29.5628 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 45 9 0.5411 27.2857 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 46 ; 12.2063 8.8680 40.4372 -Arial_Bold.ttf 43 G 39.1126 43.4589 47 D 0.9699 35.0909 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 48 L 0.6495 29.9113 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 49 y 12.0206 31.6883 42.4286 -Arial_Bold.ttf 43 G 39.1126 43.4589 50 ‘ 0.4709 8.8680 17.6883 -Arial_Bold.ttf 43 G 39.1126 43.4589 51 \ 0.8749 17.6883 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 52 R 0.6235 37.0498 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 53 < 5.9803 28.0000 31.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 54 4 0.6961 29.9589 41.7857 -Arial_Bold.ttf 43 G 39.1126 43.4589 55 8 0.7235 27.2857 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 56 0 0.8009 27.2857 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 57 A 0.7766 40.5887 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 58 E 0.6219 32.0844 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 59 B 0.6280 35.0909 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 60 v 11.7813 31.6883 30.6732 -Arial_Bold.ttf 43 G 39.1126 43.4589 61 k 0.6118 28.5152 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 62 J 0.7628 26.9524 42.7294 -Arial_Bold.ttf 43 G 39.1126 43.4589 63 U 0.8380 33.3463 42.7294 -Arial_Bold.ttf 43 G 39.1126 43.4589 64 j 1.0011 15.2294 53.7554 -Arial_Bold.ttf 43 G 39.1126 43.4589 65 ( 0.6318 14.0000 53.5411 -Arial_Bold.ttf 43 G 39.1126 43.4589 66 7 1.1687 27.2857 41.7857 -Arial_Bold.ttf 43 G 39.1126 43.4589 67 § 0.5144 28.5152 54.7706 -Arial_Bold.ttf 43 G 39.1126 43.4589 68 $ -2.1354 27.7857 50.8680 -Arial_Bold.ttf 43 G 39.1126 43.4589 69 € -0.5716 31.6883 42.9437 -Arial_Bold.ttf 43 G 39.1126 43.4589 70 / 0.7935 17.6883 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 71 C 0.1431 36.6537 42.7294 -Arial_Bold.ttf 43 G 39.1126 43.4589 72 * 0.6285 19.7424 19.1320 -Arial_Bold.ttf 43 G 39.1126 43.4589 73 ” 0.3376 22.4719 17.6883 -Arial_Bold.ttf 43 G 39.1126 43.4589 74 ? 1.0142 30.4589 42.2143 -Arial_Bold.ttf 43 G 39.1126 43.4589 75 { 0.5606 19.6472 53.9697 -Arial_Bold.ttf 43 G 39.1126 43.4589 76 } 0.3657 19.6472 53.9697 -Arial_Bold.ttf 43 G 39.1126 43.4589 77 , 34.6402 8.8680 17.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 78 I 0.9718 8.1385 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 79 ° 0.5703 18.0844 18.0844 -Arial_Bold.ttf 43 G 39.1126 43.4589 80 K 0.8009 37.7641 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 81 H 0.6711 33.3463 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 82 q 10.7697 29.5628 43.4437 -Arial_Bold.ttf 43 G 39.1126 43.4589 83 & 0.1985 38.8117 42.4286 -Arial_Bold.ttf 43 G 39.1126 43.4589 84 ’ 0.9632 8.8680 17.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 85 [ 0.5804 15.2294 53.5411 -Arial_Bold.ttf 43 G 39.1126 43.4589 86 - 24.3328 15.7294 6.9091 -Arial_Bold.ttf 43 G 39.1126 43.4589 87 Y 0.8568 41.0563 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 88 Q -0.2006 41.7857 46.6472 -Arial_Bold.ttf 43 G 39.1126 43.4589 89 " 0.8152 21.5909 15.2294 -Arial_Bold.ttf 43 G 39.1126 43.4589 90 ! 0.6997 8.1385 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 91 x 12.1289 32.4177 30.6732 -Arial_Bold.ttf 43 G 39.1126 43.4589 92 ) 0.8652 14.0000 53.5411 -Arial_Bold.ttf 43 G 39.1126 43.4589 93 = 11.6227 29.2294 19.2835 -Arial_Bold.ttf 43 G 39.1126 43.4589 94 + 8.0090 28.8961 28.8961 -Arial_Bold.ttf 43 G 39.1126 43.4589 95 X 0.5663 38.9935 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 96 » 14.0926 26.9524 26.5563 -Arial_Bold.ttf 43 G 39.1126 43.4589 97 ' 0.5632 8.1385 15.2294 -Arial_Bold.ttf 43 G 39.1126 43.4589 98 ¢ 0.7346 28.7294 54.4372 -Arial_Bold.ttf 43 G 39.1126 43.4589 99 Z 1.1342 34.4805 42.0000 -Arial_Bold.ttf 43 G 39.1126 43.4589 100 > 6.0617 28.0000 31.9026 -Arial_Bold.ttf 43 G 39.1126 43.4589 101 ® 0.4021 43.2294 42.4286 -Arial_Bold.ttf 43 G 39.1126 43.4589 102 © 0.5741 43.9589 42.4286 -Arial_Bold.ttf 43 G 39.1126 43.4589 103 ] 0.8219 15.2294 53.5411 -Arial_Bold.ttf 43 G 39.1126 43.4589 104 é 0.1952 29.4113 42.8961 -Arial_Bold.ttf 43 G 39.1126 43.4589 105 z 11.8692 26.7706 30.6732 -Arial_Bold.ttf 43 G 39.1126 43.4589 106 _ 47.8984 33.4654 5.8615 -Arial_Bold.ttf 43 G 39.1126 43.4589 107 ¥ 0.5294 30.2056 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 1 t 1.1357 18.1169 41.3810 -Arial_Bold.ttf 44 b 29.5628 42.2143 2 h -0.1383 27.7857 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 3 a 10.1232 28.8333 32.1169 -Arial_Bold.ttf 44 b 29.5628 42.2143 4 n 9.9793 27.7857 31.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 5 P 0.0045 32.0844 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 6 o 10.0103 31.0065 32.1169 -Arial_Bold.ttf 44 b 29.5628 42.2143 7 e 9.9557 29.4113 32.1169 -Arial_Bold.ttf 44 b 29.5628 42.2143 8 : 11.4028 8.1385 30.6732 -Arial_Bold.ttf 44 b 29.5628 42.2143 9 r 10.1643 19.8615 31.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 10 l -0.1514 8.1385 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 11 i 0.0976 8.1385 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 12 1 0.1923 18.2359 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 13 | 0.0417 5.8615 54.5563 -Arial_Bold.ttf 44 b 29.5628 42.2143 14 N -0.3216 33.3463 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 15 f -0.1324 20.6948 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 16 g 10.3345 29.5628 43.6580 -Arial_Bold.ttf 44 b 29.5628 42.2143 17 d -0.4216 29.5628 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 18 W -0.0060 54.7706 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 19 s 10.0605 28.3333 32.1169 -Arial_Bold.ttf 44 b 29.5628 42.2143 20 c 10.0877 27.5000 32.1169 -Arial_Bold.ttf 44 b 29.5628 42.2143 21 u 11.2768 27.7857 30.8874 -Arial_Bold.ttf 44 b 29.5628 42.2143 22 3 -0.0312 27.2857 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 23 ~ 15.6470 30.4589 10.8117 -Arial_Bold.ttf 44 b 29.5628 42.2143 24 # 0.0052 30.3874 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 25 O -0.8576 40.3420 43.4589 -Arial_Bold.ttf 44 b 29.5628 42.2143 26 ` 0.0500 12.7706 8.3203 -Arial_Bold.ttf 44 b 29.5628 42.2143 27 @ -0.1302 55.2706 56.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 28 F -0.0083 29.0152 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 29 S -1.0646 33.8615 43.4589 -Arial_Bold.ttf 44 b 29.5628 42.2143 30 p 10.2845 29.5628 43.4437 -Arial_Bold.ttf 44 b 29.5628 42.2143 31 “ -0.1417 22.4719 17.6883 -Arial_Bold.ttf 44 b 29.5628 42.2143 32 % -0.0339 44.9329 43.6580 -Arial_Bold.ttf 44 b 29.5628 42.2143 33 £ -0.0474 31.1883 42.4286 -Arial_Bold.ttf 44 b 29.5628 42.2143 34 . 33.8198 8.1385 8.1385 -Arial_Bold.ttf 44 b 29.5628 42.2143 35 2 -0.0455 27.2857 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 36 5 0.2500 28.0000 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 37 m 9.9367 44.6104 31.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 38 V -0.1788 38.4935 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 39 6 0.0895 27.2857 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 40 w 11.1183 45.5065 30.6732 -Arial_Bold.ttf 44 b 29.5628 42.2143 41 T 0.1352 33.2511 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 42 M 0.0752 39.5584 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 43 G -0.8842 39.1126 43.4589 -Arial_Bold.ttf 44 b 29.5628 42.2143 44 b -0.1995 29.5628 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 45 9 -0.0371 27.2857 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 46 ; 11.3425 8.8680 40.4372 -Arial_Bold.ttf 44 b 29.5628 42.2143 47 D 0.1683 35.0909 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 48 L 0.2111 29.9113 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 49 y 11.3106 31.6883 42.4286 -Arial_Bold.ttf 44 b 29.5628 42.2143 50 ‘ 0.2117 8.8680 17.6883 -Arial_Bold.ttf 44 b 29.5628 42.2143 51 \ -0.1631 17.6883 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 52 R 0.0357 37.0498 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 53 < 5.2235 28.0000 31.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 54 4 0.0460 29.9589 41.7857 -Arial_Bold.ttf 44 b 29.5628 42.2143 55 8 0.0774 27.2857 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 56 0 0.1123 27.2857 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 57 A -0.1207 40.5887 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 58 E 0.1379 32.0844 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 59 B 0.1421 35.0909 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 60 v 11.4685 31.6883 30.6732 -Arial_Bold.ttf 44 b 29.5628 42.2143 61 k -0.0976 28.5152 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 62 J -0.1350 26.9524 42.7294 -Arial_Bold.ttf 44 b 29.5628 42.2143 63 U -0.0552 33.3463 42.7294 -Arial_Bold.ttf 44 b 29.5628 42.2143 64 j -0.0149 15.2294 53.7554 -Arial_Bold.ttf 44 b 29.5628 42.2143 65 ( 0.0343 14.0000 53.5411 -Arial_Bold.ttf 44 b 29.5628 42.2143 66 7 0.3274 27.2857 41.7857 -Arial_Bold.ttf 44 b 29.5628 42.2143 67 § -0.1712 28.5152 54.7706 -Arial_Bold.ttf 44 b 29.5628 42.2143 68 $ -3.0779 27.7857 50.8680 -Arial_Bold.ttf 44 b 29.5628 42.2143 69 € -0.8256 31.6883 42.9437 -Arial_Bold.ttf 44 b 29.5628 42.2143 70 / -0.1022 17.6883 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 71 C -0.8346 36.6537 42.7294 -Arial_Bold.ttf 44 b 29.5628 42.2143 72 * 0.1780 19.7424 19.1320 -Arial_Bold.ttf 44 b 29.5628 42.2143 73 ” -0.1571 22.4719 17.6883 -Arial_Bold.ttf 44 b 29.5628 42.2143 74 ? -0.2948 30.4589 42.2143 -Arial_Bold.ttf 44 b 29.5628 42.2143 75 { -0.2214 19.6472 53.9697 -Arial_Bold.ttf 44 b 29.5628 42.2143 76 } -0.2395 19.6472 53.9697 -Arial_Bold.ttf 44 b 29.5628 42.2143 77 , 33.6984 8.8680 17.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 78 I 0.1055 8.1385 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 79 ° -0.3053 18.0844 18.0844 -Arial_Bold.ttf 44 b 29.5628 42.2143 80 K -0.1071 37.7641 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 81 H -0.0774 33.3463 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 82 q 10.1613 29.5628 43.4437 -Arial_Bold.ttf 44 b 29.5628 42.2143 83 & -0.6731 38.8117 42.4286 -Arial_Bold.ttf 44 b 29.5628 42.2143 84 ’ 0.1014 8.8680 17.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 85 [ 0.3588 15.2294 53.5411 -Arial_Bold.ttf 44 b 29.5628 42.2143 86 - 23.6531 15.7294 6.9091 -Arial_Bold.ttf 44 b 29.5628 42.2143 87 Y -0.1683 41.0563 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 88 Q -0.8271 41.7857 46.6472 -Arial_Bold.ttf 44 b 29.5628 42.2143 89 " -0.3371 21.5909 15.2294 -Arial_Bold.ttf 44 b 29.5628 42.2143 90 ! 0.4478 8.1385 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 91 x 11.5556 32.4177 30.6732 -Arial_Bold.ttf 44 b 29.5628 42.2143 92 ) 0.1371 14.0000 53.5411 -Arial_Bold.ttf 44 b 29.5628 42.2143 93 = 11.3306 29.2294 19.2835 -Arial_Bold.ttf 44 b 29.5628 42.2143 94 + 6.8765 28.8961 28.8961 -Arial_Bold.ttf 44 b 29.5628 42.2143 95 X -0.2242 38.9935 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 96 » 13.4453 26.9524 26.5563 -Arial_Bold.ttf 44 b 29.5628 42.2143 97 ' -0.1000 8.1385 15.2294 -Arial_Bold.ttf 44 b 29.5628 42.2143 98 ¢ 0.0800 28.7294 54.4372 -Arial_Bold.ttf 44 b 29.5628 42.2143 99 Z 0.0272 34.4805 42.0000 -Arial_Bold.ttf 44 b 29.5628 42.2143 100 > 5.4713 28.0000 31.9026 -Arial_Bold.ttf 44 b 29.5628 42.2143 101 ® -0.0931 43.2294 42.4286 -Arial_Bold.ttf 44 b 29.5628 42.2143 102 © 0.0405 43.9589 42.4286 -Arial_Bold.ttf 44 b 29.5628 42.2143 103 ] 0.0774 15.2294 53.5411 -Arial_Bold.ttf 44 b 29.5628 42.2143 104 é -0.4961 29.4113 42.8961 -Arial_Bold.ttf 44 b 29.5628 42.2143 105 z 11.1411 26.7706 30.6732 -Arial_Bold.ttf 44 b 29.5628 42.2143 106 _ 47.6751 33.4654 5.8615 -Arial_Bold.ttf 44 b 29.5628 42.2143 107 ¥ -0.0071 30.2056 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 1 t 0.8871 18.1169 41.3810 -Arial_Bold.ttf 45 9 27.2857 42.2143 2 h 0.1391 27.7857 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 3 a 10.3800 28.8333 32.1169 -Arial_Bold.ttf 45 9 27.2857 42.2143 4 n 10.1193 27.7857 31.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 5 P 0.0233 32.0844 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 6 o 10.1534 31.0065 32.1169 -Arial_Bold.ttf 45 9 27.2857 42.2143 7 e 10.0974 29.4113 32.1169 -Arial_Bold.ttf 45 9 27.2857 42.2143 8 : 11.1754 8.1385 30.6732 -Arial_Bold.ttf 45 9 27.2857 42.2143 9 r 10.2405 19.8615 31.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 10 l 0.2788 8.1385 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 11 i 0.2228 8.1385 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 12 1 -0.2807 18.2359 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 13 | 0.0254 5.8615 54.5563 -Arial_Bold.ttf 45 9 27.2857 42.2143 14 N 0.2190 33.3463 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 15 f -0.2798 20.6948 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 16 g 9.9738 29.5628 43.6580 -Arial_Bold.ttf 45 9 27.2857 42.2143 17 d 0.3852 29.5628 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 18 W 0.1683 54.7706 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 19 s 10.1891 28.3333 32.1169 -Arial_Bold.ttf 45 9 27.2857 42.2143 20 c 10.1369 27.5000 32.1169 -Arial_Bold.ttf 45 9 27.2857 42.2143 21 u 11.6294 27.7857 30.8874 -Arial_Bold.ttf 45 9 27.2857 42.2143 22 3 -0.0865 27.2857 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 23 ~ 16.1079 30.4589 10.8117 -Arial_Bold.ttf 45 9 27.2857 42.2143 24 # -0.0917 30.3874 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 25 O -0.8203 40.3420 43.4589 -Arial_Bold.ttf 45 9 27.2857 42.2143 26 ` -0.3009 12.7706 8.3203 -Arial_Bold.ttf 45 9 27.2857 42.2143 27 @ -0.1869 55.2706 56.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 28 F 0.3431 29.0152 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 29 S -0.6163 33.8615 43.4589 -Arial_Bold.ttf 45 9 27.2857 42.2143 30 p 9.7603 29.5628 43.4437 -Arial_Bold.ttf 45 9 27.2857 42.2143 31 “ 0.0060 22.4719 17.6883 -Arial_Bold.ttf 45 9 27.2857 42.2143 32 % -0.2274 44.9329 43.6580 -Arial_Bold.ttf 45 9 27.2857 42.2143 33 £ -0.5131 31.1883 42.4286 -Arial_Bold.ttf 45 9 27.2857 42.2143 34 . 33.6924 8.1385 8.1385 -Arial_Bold.ttf 45 9 27.2857 42.2143 35 2 -0.0760 27.2857 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 36 5 0.0012 28.0000 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 37 m 10.3341 44.6104 31.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 38 V 0.1826 38.4935 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 39 6 -0.2631 27.2857 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 40 w 11.5102 45.5065 30.6732 -Arial_Bold.ttf 45 9 27.2857 42.2143 41 T 0.1476 33.2511 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 42 M 0.2819 39.5584 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 43 G -0.8197 39.1126 43.4589 -Arial_Bold.ttf 45 9 27.2857 42.2143 44 b -0.0812 29.5628 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 45 9 -0.0574 27.2857 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 46 ; 11.0304 8.8680 40.4372 -Arial_Bold.ttf 45 9 27.2857 42.2143 47 D 0.0274 35.0909 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 48 L -0.1871 29.9113 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 49 y 11.3066 31.6883 42.4286 -Arial_Bold.ttf 45 9 27.2857 42.2143 50 ‘ 0.1943 8.8680 17.6883 -Arial_Bold.ttf 45 9 27.2857 42.2143 51 \ -0.2288 17.6883 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 52 R -0.1736 37.0498 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 53 < 5.6344 28.0000 31.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 54 4 0.3976 29.9589 41.7857 -Arial_Bold.ttf 45 9 27.2857 42.2143 55 8 0.0008 27.2857 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 56 0 -0.0728 27.2857 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 57 A 0.0143 40.5887 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 58 E 0.1969 32.0844 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 59 B 0.0000 35.0909 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 60 v 11.3709 31.6883 30.6732 -Arial_Bold.ttf 45 9 27.2857 42.2143 61 k -0.1312 28.5152 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 62 J -0.2756 26.9524 42.7294 -Arial_Bold.ttf 45 9 27.2857 42.2143 63 U 0.1319 33.3463 42.7294 -Arial_Bold.ttf 45 9 27.2857 42.2143 64 j -0.1274 15.2294 53.7554 -Arial_Bold.ttf 45 9 27.2857 42.2143 65 ( 0.2788 14.0000 53.5411 -Arial_Bold.ttf 45 9 27.2857 42.2143 66 7 -0.0262 27.2857 41.7857 -Arial_Bold.ttf 45 9 27.2857 42.2143 67 § -0.0286 28.5152 54.7706 -Arial_Bold.ttf 45 9 27.2857 42.2143 68 $ -2.9974 27.7857 50.8680 -Arial_Bold.ttf 45 9 27.2857 42.2143 69 € -0.5832 31.6883 42.9437 -Arial_Bold.ttf 45 9 27.2857 42.2143 70 / -0.0571 17.6883 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 71 C -0.7437 36.6537 42.7294 -Arial_Bold.ttf 45 9 27.2857 42.2143 72 * 0.0350 19.7424 19.1320 -Arial_Bold.ttf 45 9 27.2857 42.2143 73 ” -0.0038 22.4719 17.6883 -Arial_Bold.ttf 45 9 27.2857 42.2143 74 ? -0.2931 30.4589 42.2143 -Arial_Bold.ttf 45 9 27.2857 42.2143 75 { -0.1012 19.6472 53.9697 -Arial_Bold.ttf 45 9 27.2857 42.2143 76 } -0.3469 19.6472 53.9697 -Arial_Bold.ttf 45 9 27.2857 42.2143 77 , 33.8692 8.8680 17.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 78 I -0.1260 8.1385 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 79 ° -0.1474 18.0844 18.0844 -Arial_Bold.ttf 45 9 27.2857 42.2143 80 K 0.1157 37.7641 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 81 H 0.1274 33.3463 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 82 q 9.8569 29.5628 43.4437 -Arial_Bold.ttf 45 9 27.2857 42.2143 83 & -0.0012 38.8117 42.4286 -Arial_Bold.ttf 45 9 27.2857 42.2143 84 ’ -0.0774 8.8680 17.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 85 [ 0.0000 15.2294 53.5411 -Arial_Bold.ttf 45 9 27.2857 42.2143 86 - 23.5996 15.7294 6.9091 -Arial_Bold.ttf 45 9 27.2857 42.2143 87 Y -0.0174 41.0563 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 88 Q -0.6997 41.7857 46.6472 -Arial_Bold.ttf 45 9 27.2857 42.2143 89 " -0.1931 21.5909 15.2294 -Arial_Bold.ttf 45 9 27.2857 42.2143 90 ! 0.0060 8.1385 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 91 x 10.8526 32.4177 30.6732 -Arial_Bold.ttf 45 9 27.2857 42.2143 92 ) -0.6050 14.0000 53.5411 -Arial_Bold.ttf 45 9 27.2857 42.2143 93 = 11.3828 29.2294 19.2835 -Arial_Bold.ttf 45 9 27.2857 42.2143 94 + 7.3198 28.8961 28.8961 -Arial_Bold.ttf 45 9 27.2857 42.2143 95 X 0.1181 38.9935 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 96 » 13.5011 26.9524 26.5563 -Arial_Bold.ttf 45 9 27.2857 42.2143 97 ' 0.1690 8.1385 15.2294 -Arial_Bold.ttf 45 9 27.2857 42.2143 98 ¢ -0.0298 28.7294 54.4372 -Arial_Bold.ttf 45 9 27.2857 42.2143 99 Z 0.0962 34.4805 42.0000 -Arial_Bold.ttf 45 9 27.2857 42.2143 100 > 5.3140 28.0000 31.9026 -Arial_Bold.ttf 45 9 27.2857 42.2143 101 ® -0.2819 43.2294 42.4286 -Arial_Bold.ttf 45 9 27.2857 42.2143 102 © -0.0376 43.9589 42.4286 -Arial_Bold.ttf 45 9 27.2857 42.2143 103 ] -0.1260 15.2294 53.5411 -Arial_Bold.ttf 45 9 27.2857 42.2143 104 é -0.5947 29.4113 42.8961 -Arial_Bold.ttf 45 9 27.2857 42.2143 105 z 11.4380 26.7706 30.6732 -Arial_Bold.ttf 45 9 27.2857 42.2143 106 _ 47.3959 33.4654 5.8615 -Arial_Bold.ttf 45 9 27.2857 42.2143 107 ¥ -0.0162 30.2056 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 1 t -10.4935 18.1169 41.3810 -Arial_Bold.ttf 46 ; 8.8680 40.4372 2 h -11.1197 27.7857 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 3 a -1.1945 28.8333 32.1169 -Arial_Bold.ttf 46 ; 8.8680 40.4372 4 n -1.3628 27.7857 31.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 5 P -11.3449 32.0844 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 6 o -1.5902 31.0065 32.1169 -Arial_Bold.ttf 46 ; 8.8680 40.4372 7 e -1.1554 29.4113 32.1169 -Arial_Bold.ttf 46 ; 8.8680 40.4372 8 : 0.0387 8.1385 30.6732 -Arial_Bold.ttf 46 ; 8.8680 40.4372 9 r -0.7278 19.8615 31.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 10 l -11.1090 8.1385 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 11 i -11.3768 8.1385 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 12 1 -11.2911 18.2359 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 13 | -11.3209 5.8615 54.5563 -Arial_Bold.ttf 46 ; 8.8680 40.4372 14 N -11.2768 33.3463 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 15 f -11.4578 20.6948 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 16 g -1.2749 29.5628 43.6580 -Arial_Bold.ttf 46 ; 8.8680 40.4372 17 d -11.2352 29.5628 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 18 W -11.0585 54.7706 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 19 s -1.3152 28.3333 32.1169 -Arial_Bold.ttf 46 ; 8.8680 40.4372 20 c -1.1378 27.5000 32.1169 -Arial_Bold.ttf 46 ; 8.8680 40.4372 21 u 0.0162 27.7857 30.8874 -Arial_Bold.ttf 46 ; 8.8680 40.4372 22 3 -11.4399 27.2857 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 23 ~ 4.6804 30.4589 10.8117 -Arial_Bold.ttf 46 ; 8.8680 40.4372 24 # -11.1085 30.3874 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 25 O -12.1837 40.3420 43.4589 -Arial_Bold.ttf 46 ; 8.8680 40.4372 26 ` -10.9455 12.7706 8.3203 -Arial_Bold.ttf 46 ; 8.8680 40.4372 27 @ -11.5411 55.2706 56.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 28 F -11.4459 29.0152 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 29 S -11.9289 33.8615 43.4589 -Arial_Bold.ttf 46 ; 8.8680 40.4372 30 p -1.1983 29.5628 43.4437 -Arial_Bold.ttf 46 ; 8.8680 40.4372 31 “ -11.3268 22.4719 17.6883 -Arial_Bold.ttf 46 ; 8.8680 40.4372 32 % -11.4911 44.9329 43.6580 -Arial_Bold.ttf 46 ; 8.8680 40.4372 33 £ -11.4002 31.1883 42.4286 -Arial_Bold.ttf 46 ; 8.8680 40.4372 34 . 22.6263 8.1385 8.1385 -Arial_Bold.ttf 46 ; 8.8680 40.4372 35 2 -11.2483 27.2857 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 36 5 -11.0852 28.0000 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 37 m -1.2080 44.6104 31.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 38 V -11.2838 38.4935 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 39 6 -11.4535 27.2857 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 40 w -0.0774 45.5065 30.6732 -Arial_Bold.ttf 46 ; 8.8680 40.4372 41 T -11.5556 33.2511 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 42 M -11.2637 39.5584 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 43 G -12.1920 39.1126 43.4589 -Arial_Bold.ttf 46 ; 8.8680 40.4372 44 b -11.3066 29.5628 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 45 9 -11.7225 27.2857 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 46 ; 0.2774 8.8680 40.4372 -Arial_Bold.ttf 46 ; 8.8680 40.4372 47 D -11.4231 35.0909 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 48 L -11.3261 29.9113 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 49 y -0.0714 31.6883 42.4286 -Arial_Bold.ttf 46 ; 8.8680 40.4372 50 ‘ -11.4042 8.8680 17.6883 -Arial_Bold.ttf 46 ; 8.8680 40.4372 51 \ -11.2137 17.6883 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 52 R -11.2685 37.0498 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 53 < -5.5037 28.0000 31.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 54 4 -11.1445 29.9589 41.7857 -Arial_Bold.ttf 46 ; 8.8680 40.4372 55 8 -11.3768 27.2857 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 56 0 -11.2359 27.2857 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 57 A -11.2649 40.5887 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 58 E -11.2828 32.0844 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 59 B -11.3588 35.0909 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 60 v 0.0917 31.6883 30.6732 -Arial_Bold.ttf 46 ; 8.8680 40.4372 61 k -11.1578 28.5152 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 62 J -11.5675 26.9524 42.7294 -Arial_Bold.ttf 46 ; 8.8680 40.4372 63 U -11.2314 33.3463 42.7294 -Arial_Bold.ttf 46 ; 8.8680 40.4372 64 j -11.5868 15.2294 53.7554 -Arial_Bold.ttf 46 ; 8.8680 40.4372 65 ( -11.3411 14.0000 53.5411 -Arial_Bold.ttf 46 ; 8.8680 40.4372 66 7 -11.1542 27.2857 41.7857 -Arial_Bold.ttf 46 ; 8.8680 40.4372 67 § -11.5790 28.5152 54.7706 -Arial_Bold.ttf 46 ; 8.8680 40.4372 68 $ -14.2143 27.7857 50.8680 -Arial_Bold.ttf 46 ; 8.8680 40.4372 69 € -12.0303 31.6883 42.9437 -Arial_Bold.ttf 46 ; 8.8680 40.4372 70 / -11.1443 17.6883 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 71 C -12.1426 36.6537 42.7294 -Arial_Bold.ttf 46 ; 8.8680 40.4372 72 * -11.3268 19.7424 19.1320 -Arial_Bold.ttf 46 ; 8.8680 40.4372 73 ” -11.2137 22.4719 17.6883 -Arial_Bold.ttf 46 ; 8.8680 40.4372 74 ? -11.5649 30.4589 42.2143 -Arial_Bold.ttf 46 ; 8.8680 40.4372 75 { -11.4340 19.6472 53.9697 -Arial_Bold.ttf 46 ; 8.8680 40.4372 76 } -11.6328 19.6472 53.9697 -Arial_Bold.ttf 46 ; 8.8680 40.4372 77 , 22.7627 8.8680 17.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 78 I -10.9609 8.1385 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 79 ° -11.4048 18.0844 18.0844 -Arial_Bold.ttf 46 ; 8.8680 40.4372 80 K -11.1280 37.7641 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 81 H -11.2859 33.3463 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 82 q -1.2092 29.5628 43.4437 -Arial_Bold.ttf 46 ; 8.8680 40.4372 83 & -11.3371 38.8117 42.4286 -Arial_Bold.ttf 46 ; 8.8680 40.4372 84 ’ -11.1780 8.8680 17.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 85 [ -11.3328 15.2294 53.5411 -Arial_Bold.ttf 46 ; 8.8680 40.4372 86 - 12.4372 15.7294 6.9091 -Arial_Bold.ttf 46 ; 8.8680 40.4372 87 Y -11.2495 41.0563 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 88 Q -12.1934 41.7857 46.6472 -Arial_Bold.ttf 46 ; 8.8680 40.4372 89 " -11.2904 21.5909 15.2294 -Arial_Bold.ttf 46 ; 8.8680 40.4372 90 ! -11.4497 8.1385 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 91 x -0.1417 32.4177 30.6732 -Arial_Bold.ttf 46 ; 8.8680 40.4372 92 ) -11.3268 14.0000 53.5411 -Arial_Bold.ttf 46 ; 8.8680 40.4372 93 = -0.0812 29.2294 19.2835 -Arial_Bold.ttf 46 ; 8.8680 40.4372 94 + -4.3451 28.8961 28.8961 -Arial_Bold.ttf 46 ; 8.8680 40.4372 95 X -11.4126 38.9935 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 96 » 2.4406 26.9524 26.5563 -Arial_Bold.ttf 46 ; 8.8680 40.4372 97 ' -11.1540 8.1385 15.2294 -Arial_Bold.ttf 46 ; 8.8680 40.4372 98 ¢ -11.5094 28.7294 54.4372 -Arial_Bold.ttf 46 ; 8.8680 40.4372 99 Z -11.4794 34.4805 42.0000 -Arial_Bold.ttf 46 ; 8.8680 40.4372 100 > -5.9198 28.0000 31.9026 -Arial_Bold.ttf 46 ; 8.8680 40.4372 101 ® -11.5054 43.2294 42.4286 -Arial_Bold.ttf 46 ; 8.8680 40.4372 102 © -11.5411 43.9589 42.4286 -Arial_Bold.ttf 46 ; 8.8680 40.4372 103 ] -11.3163 15.2294 53.5411 -Arial_Bold.ttf 46 ; 8.8680 40.4372 104 é -12.1277 29.4113 42.8961 -Arial_Bold.ttf 46 ; 8.8680 40.4372 105 z -0.1574 26.7706 30.6732 -Arial_Bold.ttf 46 ; 8.8680 40.4372 106 _ 36.1957 33.4654 5.8615 -Arial_Bold.ttf 46 ; 8.8680 40.4372 107 ¥ -11.3288 30.2056 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 1 t 0.5462 18.1169 41.3810 -Arial_Bold.ttf 47 D 35.0909 42.0000 2 h -0.1190 27.7857 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 3 a 10.2248 28.8333 32.1169 -Arial_Bold.ttf 47 D 35.0909 42.0000 4 n 10.2643 27.7857 31.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 5 P 0.4190 32.0844 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 6 o 10.1176 31.0065 32.1169 -Arial_Bold.ttf 47 D 35.0909 42.0000 7 e 10.4393 29.4113 32.1169 -Arial_Bold.ttf 47 D 35.0909 42.0000 8 : 11.2828 8.1385 30.6732 -Arial_Bold.ttf 47 D 35.0909 42.0000 9 r 9.6996 19.8615 31.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 10 l 0.0833 8.1385 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 11 i 0.0917 8.1385 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 12 1 -0.0252 18.2359 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 13 | 0.0643 5.8615 54.5563 -Arial_Bold.ttf 47 D 35.0909 42.0000 14 N -0.3240 33.3463 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 15 f -0.1071 20.6948 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 16 g 10.1579 29.5628 43.6580 -Arial_Bold.ttf 47 D 35.0909 42.0000 17 d 0.0639 29.5628 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 18 W -0.0917 54.7706 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 19 s 9.9200 28.3333 32.1169 -Arial_Bold.ttf 47 D 35.0909 42.0000 20 c 10.0400 27.5000 32.1169 -Arial_Bold.ttf 47 D 35.0909 42.0000 21 u 11.2776 27.7857 30.8874 -Arial_Bold.ttf 47 D 35.0909 42.0000 22 3 -0.0545 27.2857 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 23 ~ 16.0279 30.4589 10.8117 -Arial_Bold.ttf 47 D 35.0909 42.0000 24 # 0.3347 30.3874 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 25 O -0.6618 40.3420 43.4589 -Arial_Bold.ttf 47 D 35.0909 42.0000 26 ` 0.0522 12.7706 8.3203 -Arial_Bold.ttf 47 D 35.0909 42.0000 27 @ -0.0974 55.2706 56.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 28 F -0.0188 29.0152 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 29 S -0.8530 33.8615 43.4589 -Arial_Bold.ttf 47 D 35.0909 42.0000 30 p 10.2240 29.5628 43.4437 -Arial_Bold.ttf 47 D 35.0909 42.0000 31 “ -0.0286 22.4719 17.6883 -Arial_Bold.ttf 47 D 35.0909 42.0000 32 % 0.0207 44.9329 43.6580 -Arial_Bold.ttf 47 D 35.0909 42.0000 33 £ -0.3893 31.1883 42.4286 -Arial_Bold.ttf 47 D 35.0909 42.0000 34 . 33.9545 8.1385 8.1385 -Arial_Bold.ttf 47 D 35.0909 42.0000 35 2 0.1883 27.2857 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 36 5 0.3143 28.0000 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 37 m 10.3341 44.6104 31.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 38 V 0.1409 38.4935 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 39 6 0.1274 27.2857 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 40 w 11.5342 45.5065 30.6732 -Arial_Bold.ttf 47 D 35.0909 42.0000 41 T -0.0214 33.2511 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 42 M -0.1252 39.5584 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 43 G -0.4701 39.1126 43.4589 -Arial_Bold.ttf 47 D 35.0909 42.0000 44 b -0.0076 29.5628 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 45 9 -0.0240 27.2857 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 46 ; 11.4423 8.8680 40.4372 -Arial_Bold.ttf 47 D 35.0909 42.0000 47 D -0.4276 35.0909 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 48 L 0.1371 29.9113 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 49 y 11.3731 31.6883 42.4286 -Arial_Bold.ttf 47 D 35.0909 42.0000 50 ‘ 0.0331 8.8680 17.6883 -Arial_Bold.ttf 47 D 35.0909 42.0000 51 \ 0.4478 17.6883 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 52 R -0.0281 37.0498 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 53 < 5.6166 28.0000 31.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 54 4 0.0946 29.9589 41.7857 -Arial_Bold.ttf 47 D 35.0909 42.0000 55 8 0.0014 27.2857 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 56 0 0.2540 27.2857 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 57 A -0.0566 40.5887 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 58 E 0.3145 32.0844 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 59 B 0.1274 35.0909 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 60 v 11.7576 31.6883 30.6732 -Arial_Bold.ttf 47 D 35.0909 42.0000 61 k -0.3176 28.5152 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 62 J 0.0774 26.9524 42.7294 -Arial_Bold.ttf 47 D 35.0909 42.0000 63 U 0.3002 33.3463 42.7294 -Arial_Bold.ttf 47 D 35.0909 42.0000 64 j -0.0236 15.2294 53.7554 -Arial_Bold.ttf 47 D 35.0909 42.0000 65 ( -0.0690 14.0000 53.5411 -Arial_Bold.ttf 47 D 35.0909 42.0000 66 7 0.3514 27.2857 41.7857 -Arial_Bold.ttf 47 D 35.0909 42.0000 67 § -0.2538 28.5152 54.7706 -Arial_Bold.ttf 47 D 35.0909 42.0000 68 $ -3.1839 27.7857 50.8680 -Arial_Bold.ttf 47 D 35.0909 42.0000 69 € -0.7509 31.6883 42.9437 -Arial_Bold.ttf 47 D 35.0909 42.0000 70 / 0.0274 17.6883 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 71 C -0.6378 36.6537 42.7294 -Arial_Bold.ttf 47 D 35.0909 42.0000 72 * 0.0917 19.7424 19.1320 -Arial_Bold.ttf 47 D 35.0909 42.0000 73 ” 0.0202 22.4719 17.6883 -Arial_Bold.ttf 47 D 35.0909 42.0000 74 ? -0.0196 30.4589 42.2143 -Arial_Bold.ttf 47 D 35.0909 42.0000 75 { -0.1038 19.6472 53.9697 -Arial_Bold.ttf 47 D 35.0909 42.0000 76 } -0.3865 19.6472 53.9697 -Arial_Bold.ttf 47 D 35.0909 42.0000 77 , 33.7341 8.8680 17.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 78 I 0.2083 8.1385 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 79 ° -0.5242 18.0844 18.0844 -Arial_Bold.ttf 47 D 35.0909 42.0000 80 K -0.0143 37.7641 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 81 H -0.1455 33.3463 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 82 q 9.8232 29.5628 43.4437 -Arial_Bold.ttf 47 D 35.0909 42.0000 83 & -0.0325 38.8117 42.4286 -Arial_Bold.ttf 47 D 35.0909 42.0000 84 ’ -0.3119 8.8680 17.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 85 [ 0.1312 15.2294 53.5411 -Arial_Bold.ttf 47 D 35.0909 42.0000 86 - 23.7379 15.7294 6.9091 -Arial_Bold.ttf 47 D 35.0909 42.0000 87 Y 0.2280 41.0563 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 88 Q -0.6787 41.7857 46.6472 -Arial_Bold.ttf 47 D 35.0909 42.0000 89 " 0.0929 21.5909 15.2294 -Arial_Bold.ttf 47 D 35.0909 42.0000 90 ! 0.0681 8.1385 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 91 x 11.0326 32.4177 30.6732 -Arial_Bold.ttf 47 D 35.0909 42.0000 92 ) 0.1774 14.0000 53.5411 -Arial_Bold.ttf 47 D 35.0909 42.0000 93 = 11.4171 29.2294 19.2835 -Arial_Bold.ttf 47 D 35.0909 42.0000 94 + 7.3881 28.8961 28.8961 -Arial_Bold.ttf 47 D 35.0909 42.0000 95 X 0.0792 38.9935 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 96 » 13.3729 26.9524 26.5563 -Arial_Bold.ttf 47 D 35.0909 42.0000 97 ' -0.0357 8.1385 15.2294 -Arial_Bold.ttf 47 D 35.0909 42.0000 98 ¢ -0.4054 28.7294 54.4372 -Arial_Bold.ttf 47 D 35.0909 42.0000 99 Z 0.1541 34.4805 42.0000 -Arial_Bold.ttf 47 D 35.0909 42.0000 100 > 5.5465 28.0000 31.9026 -Arial_Bold.ttf 47 D 35.0909 42.0000 101 ® -0.0786 43.2294 42.4286 -Arial_Bold.ttf 47 D 35.0909 42.0000 102 © -0.1391 43.9589 42.4286 -Arial_Bold.ttf 47 D 35.0909 42.0000 103 ] -0.1639 15.2294 53.5411 -Arial_Bold.ttf 47 D 35.0909 42.0000 104 é -0.9851 29.4113 42.8961 -Arial_Bold.ttf 47 D 35.0909 42.0000 105 z 11.5854 26.7706 30.6732 -Arial_Bold.ttf 47 D 35.0909 42.0000 106 _ 47.4692 33.4654 5.8615 -Arial_Bold.ttf 47 D 35.0909 42.0000 107 ¥ -0.0955 30.2056 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 1 t 1.0419 18.1169 41.3810 -Arial_Bold.ttf 48 L 29.9113 42.0000 2 h 0.0917 27.7857 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 3 a 10.1129 28.8333 32.1169 -Arial_Bold.ttf 48 L 29.9113 42.0000 4 n 10.3022 27.7857 31.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 5 P -0.0714 32.0844 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 6 o 9.9915 31.0065 32.1169 -Arial_Bold.ttf 48 L 29.9113 42.0000 7 e 9.9012 29.4113 32.1169 -Arial_Bold.ttf 48 L 29.9113 42.0000 8 : 11.4094 8.1385 30.6732 -Arial_Bold.ttf 48 L 29.9113 42.0000 9 r 10.0124 19.8615 31.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 10 l 0.2462 8.1385 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 11 i -0.1393 8.1385 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 12 1 -0.0857 18.2359 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 13 | 0.1405 5.8615 54.5563 -Arial_Bold.ttf 48 L 29.9113 42.0000 14 N 0.0552 33.3463 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 15 f -0.2298 20.6948 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 16 g 10.3417 29.5628 43.6580 -Arial_Bold.ttf 48 L 29.9113 42.0000 17 d -0.1274 29.5628 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 18 W -0.2062 54.7706 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 19 s 9.7510 28.3333 32.1169 -Arial_Bold.ttf 48 L 29.9113 42.0000 20 c 10.3319 27.5000 32.1169 -Arial_Bold.ttf 48 L 29.9113 42.0000 21 u 11.2709 27.7857 30.8874 -Arial_Bold.ttf 48 L 29.9113 42.0000 22 3 -0.0538 27.2857 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 23 ~ 15.5587 30.4589 10.8117 -Arial_Bold.ttf 48 L 29.9113 42.0000 24 # -0.0188 30.3874 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 25 O -0.9392 40.3420 43.4589 -Arial_Bold.ttf 48 L 29.9113 42.0000 26 ` -0.0052 12.7706 8.3203 -Arial_Bold.ttf 48 L 29.9113 42.0000 27 @ -0.2214 55.2706 56.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 28 F 0.1385 29.0152 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 29 S -0.7016 33.8615 43.4589 -Arial_Bold.ttf 48 L 29.9113 42.0000 30 p 10.0760 29.5628 43.4437 -Arial_Bold.ttf 48 L 29.9113 42.0000 31 “ 0.0014 22.4719 17.6883 -Arial_Bold.ttf 48 L 29.9113 42.0000 32 % 0.0540 44.9329 43.6580 -Arial_Bold.ttf 48 L 29.9113 42.0000 33 £ -0.1286 31.1883 42.4286 -Arial_Bold.ttf 48 L 29.9113 42.0000 34 . 33.8760 8.1385 8.1385 -Arial_Bold.ttf 48 L 29.9113 42.0000 35 2 -0.1274 27.2857 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 36 5 0.0726 28.0000 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 37 m 10.1571 44.6104 31.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 38 V -0.1288 38.4935 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 39 6 -0.0202 27.2857 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 40 w 11.2254 45.5065 30.6732 -Arial_Bold.ttf 48 L 29.9113 42.0000 41 T -0.1607 33.2511 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 42 M -0.1657 39.5584 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 43 G -1.3039 39.1126 43.4589 -Arial_Bold.ttf 48 L 29.9113 42.0000 44 b 0.1683 29.5628 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 45 9 0.1540 27.2857 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 46 ; 11.3723 8.8680 40.4372 -Arial_Bold.ttf 48 L 29.9113 42.0000 47 D -0.3600 35.0909 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 48 L -0.1064 29.9113 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 49 y 11.3411 31.6883 42.4286 -Arial_Bold.ttf 48 L 29.9113 42.0000 50 ‘ -0.1510 8.8680 17.6883 -Arial_Bold.ttf 48 L 29.9113 42.0000 51 \ -0.0333 17.6883 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 52 R -0.0143 37.0498 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 53 < 5.6687 28.0000 31.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 54 4 0.1377 29.9589 41.7857 -Arial_Bold.ttf 48 L 29.9113 42.0000 55 8 -0.0714 27.2857 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 56 0 0.0272 27.2857 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 57 A -0.4576 40.5887 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 58 E -0.2026 32.0844 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 59 B 0.1697 35.0909 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 60 v 11.5816 31.6883 30.6732 -Arial_Bold.ttf 48 L 29.9113 42.0000 61 k 0.1907 28.5152 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 62 J -0.1833 26.9524 42.7294 -Arial_Bold.ttf 48 L 29.9113 42.0000 63 U -0.1552 33.3463 42.7294 -Arial_Bold.ttf 48 L 29.9113 42.0000 64 j 0.0214 15.2294 53.7554 -Arial_Bold.ttf 48 L 29.9113 42.0000 65 ( -0.0357 14.0000 53.5411 -Arial_Bold.ttf 48 L 29.9113 42.0000 66 7 0.2597 27.2857 41.7857 -Arial_Bold.ttf 48 L 29.9113 42.0000 67 § 0.0100 28.5152 54.7706 -Arial_Bold.ttf 48 L 29.9113 42.0000 68 $ -2.9825 27.7857 50.8680 -Arial_Bold.ttf 48 L 29.9113 42.0000 69 € -0.7152 31.6883 42.9437 -Arial_Bold.ttf 48 L 29.9113 42.0000 70 / 0.0000 17.6883 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 71 C -0.9532 36.6537 42.7294 -Arial_Bold.ttf 48 L 29.9113 42.0000 72 * -0.0357 19.7424 19.1320 -Arial_Bold.ttf 48 L 29.9113 42.0000 73 ” 0.0522 22.4719 17.6883 -Arial_Bold.ttf 48 L 29.9113 42.0000 74 ? -0.1143 30.4589 42.2143 -Arial_Bold.ttf 48 L 29.9113 42.0000 75 { 0.0548 19.6472 53.9697 -Arial_Bold.ttf 48 L 29.9113 42.0000 76 } -0.2734 19.6472 53.9697 -Arial_Bold.ttf 48 L 29.9113 42.0000 77 , 33.9389 8.8680 17.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 78 I -0.2502 8.1385 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 79 ° -0.0688 18.0844 18.0844 -Arial_Bold.ttf 48 L 29.9113 42.0000 80 K -0.0484 37.7641 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 81 H 0.0643 33.3463 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 82 q 9.9825 29.5628 43.4437 -Arial_Bold.ttf 48 L 29.9113 42.0000 83 & -0.2631 38.8117 42.4286 -Arial_Bold.ttf 48 L 29.9113 42.0000 84 ’ -0.2774 8.8680 17.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 85 [ -0.2645 15.2294 53.5411 -Arial_Bold.ttf 48 L 29.9113 42.0000 86 - 23.4534 15.7294 6.9091 -Arial_Bold.ttf 48 L 29.9113 42.0000 87 Y 0.0143 41.0563 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 88 Q -0.4018 41.7857 46.6472 -Arial_Bold.ttf 48 L 29.9113 42.0000 89 " 0.1429 21.5909 15.2294 -Arial_Bold.ttf 48 L 29.9113 42.0000 90 ! 0.0312 8.1385 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 91 x 11.5323 32.4177 30.6732 -Arial_Bold.ttf 48 L 29.9113 42.0000 92 ) 0.0597 14.0000 53.5411 -Arial_Bold.ttf 48 L 29.9113 42.0000 93 = 11.1145 29.2294 19.2835 -Arial_Bold.ttf 48 L 29.9113 42.0000 94 + 7.1807 28.8961 28.8961 -Arial_Bold.ttf 48 L 29.9113 42.0000 95 X 0.1826 38.9935 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 96 » 13.2203 26.9524 26.5563 -Arial_Bold.ttf 48 L 29.9113 42.0000 97 ' -0.1690 8.1385 15.2294 -Arial_Bold.ttf 48 L 29.9113 42.0000 98 ¢ 0.3449 28.7294 54.4372 -Arial_Bold.ttf 48 L 29.9113 42.0000 99 Z -0.0895 34.4805 42.0000 -Arial_Bold.ttf 48 L 29.9113 42.0000 100 > 5.6206 28.0000 31.9026 -Arial_Bold.ttf 48 L 29.9113 42.0000 101 ® -0.1219 43.2294 42.4286 -Arial_Bold.ttf 48 L 29.9113 42.0000 102 © -0.1695 43.9589 42.4286 -Arial_Bold.ttf 48 L 29.9113 42.0000 103 ] 0.0343 15.2294 53.5411 -Arial_Bold.ttf 48 L 29.9113 42.0000 104 é -0.5252 29.4113 42.8961 -Arial_Bold.ttf 48 L 29.9113 42.0000 105 z 11.4745 26.7706 30.6732 -Arial_Bold.ttf 48 L 29.9113 42.0000 106 _ 47.4094 33.4654 5.8615 -Arial_Bold.ttf 48 L 29.9113 42.0000 107 ¥ -0.1190 30.2056 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 1 t -11.1292 18.1169 41.3810 -Arial_Bold.ttf 49 y 31.6883 42.4286 2 h -11.3723 27.7857 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 3 a -1.1930 28.8333 32.1169 -Arial_Bold.ttf 49 y 31.6883 42.4286 4 n -1.1794 27.7857 31.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 5 P -11.5876 32.0844 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 6 o -1.2058 31.0065 32.1169 -Arial_Bold.ttf 49 y 31.6883 42.4286 7 e -0.9338 29.4113 32.1169 -Arial_Bold.ttf 49 y 31.6883 42.4286 8 : 0.0417 8.1385 30.6732 -Arial_Bold.ttf 49 y 31.6883 42.4286 9 r -1.0566 19.8615 31.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 10 l -11.4126 8.1385 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 11 i -11.4899 8.1385 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 12 1 -11.3126 18.2359 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 13 | -11.4185 5.8615 54.5563 -Arial_Bold.ttf 49 y 31.6883 42.4286 14 N -11.2449 33.3463 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 15 f -11.6828 20.6948 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 16 g -1.1280 29.5628 43.6580 -Arial_Bold.ttf 49 y 31.6883 42.4286 17 d -11.3018 29.5628 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 18 W -11.2509 54.7706 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 19 s -1.1675 28.3333 32.1169 -Arial_Bold.ttf 49 y 31.6883 42.4286 20 c -1.3509 27.5000 32.1169 -Arial_Bold.ttf 49 y 31.6883 42.4286 21 u 0.2288 27.7857 30.8874 -Arial_Bold.ttf 49 y 31.6883 42.4286 22 3 -11.1540 27.2857 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 23 ~ 4.3356 30.4589 10.8117 -Arial_Bold.ttf 49 y 31.6883 42.4286 24 # -11.5854 30.3874 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 25 O -12.0684 40.3420 43.4589 -Arial_Bold.ttf 49 y 31.6883 42.4286 26 ` -11.4640 12.7706 8.3203 -Arial_Bold.ttf 49 y 31.6883 42.4286 27 @ -11.7102 55.2706 56.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 28 F -11.5616 29.0152 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 29 S -11.8587 33.8615 43.4589 -Arial_Bold.ttf 49 y 31.6883 42.4286 30 p -1.4925 29.5628 43.4437 -Arial_Bold.ttf 49 y 31.6883 42.4286 31 “ -11.4556 22.4719 17.6883 -Arial_Bold.ttf 49 y 31.6883 42.4286 32 % -11.5592 44.9329 43.6580 -Arial_Bold.ttf 49 y 31.6883 42.4286 33 £ -11.5411 31.1883 42.4286 -Arial_Bold.ttf 49 y 31.6883 42.4286 34 . 22.5378 8.1385 8.1385 -Arial_Bold.ttf 49 y 31.6883 42.4286 35 2 -11.2397 27.2857 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 36 5 -10.9604 28.0000 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 37 m -1.1378 44.6104 31.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 38 V -11.3216 38.4935 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 39 6 -11.1495 27.2857 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 40 w -0.3426 45.5065 30.6732 -Arial_Bold.ttf 49 y 31.6883 42.4286 41 T -11.3104 33.2511 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 42 M -11.4820 39.5584 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 43 G -12.1420 39.1126 43.4589 -Arial_Bold.ttf 49 y 31.6883 42.4286 44 b -10.9604 29.5628 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 45 9 -11.5594 27.2857 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 46 ; -0.0000 8.8680 40.4372 -Arial_Bold.ttf 49 y 31.6883 42.4286 47 D -11.1518 35.0909 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 48 L -11.2838 29.9113 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 49 y -0.1262 31.6883 42.4286 -Arial_Bold.ttf 49 y 31.6883 42.4286 50 ‘ -11.3268 8.8680 17.6883 -Arial_Bold.ttf 49 y 31.6883 42.4286 51 \ -11.4042 17.6883 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 52 R -11.4899 37.0498 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 53 < -5.7781 28.0000 31.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 54 4 -10.9254 29.9589 41.7857 -Arial_Bold.ttf 49 y 31.6883 42.4286 55 8 -11.3292 27.2857 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 56 0 -11.4028 27.2857 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 57 A -11.4042 40.5887 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 58 E -11.6239 32.0844 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 59 B -11.3185 35.0909 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 60 v 0.0857 31.6883 30.6732 -Arial_Bold.ttf 49 y 31.6883 42.4286 61 k -10.9395 28.5152 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 62 J -11.3761 26.9524 42.7294 -Arial_Bold.ttf 49 y 31.6883 42.4286 63 U -11.3782 33.3463 42.7294 -Arial_Bold.ttf 49 y 31.6883 42.4286 64 j -11.3058 15.2294 53.7554 -Arial_Bold.ttf 49 y 31.6883 42.4286 65 ( -11.3530 14.0000 53.5411 -Arial_Bold.ttf 49 y 31.6883 42.4286 66 7 -11.3771 27.2857 41.7857 -Arial_Bold.ttf 49 y 31.6883 42.4286 67 § -11.8199 28.5152 54.7706 -Arial_Bold.ttf 49 y 31.6883 42.4286 68 $ -14.3326 27.7857 50.8680 -Arial_Bold.ttf 49 y 31.6883 42.4286 69 € -11.7910 31.6883 42.9437 -Arial_Bold.ttf 49 y 31.6883 42.4286 70 / -11.6161 17.6883 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 71 C -11.8229 36.6537 42.7294 -Arial_Bold.ttf 49 y 31.6883 42.4286 72 * -11.4504 19.7424 19.1320 -Arial_Bold.ttf 49 y 31.6883 42.4286 73 ” -11.3502 22.4719 17.6883 -Arial_Bold.ttf 49 y 31.6883 42.4286 74 ? -11.5259 30.4589 42.2143 -Arial_Bold.ttf 49 y 31.6883 42.4286 75 { -11.4957 19.6472 53.9697 -Arial_Bold.ttf 49 y 31.6883 42.4286 76 } -11.4471 19.6472 53.9697 -Arial_Bold.ttf 49 y 31.6883 42.4286 77 , 22.6575 8.8680 17.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 78 I -11.3328 8.1385 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 79 ° -11.2578 18.0844 18.0844 -Arial_Bold.ttf 49 y 31.6883 42.4286 80 K -11.2137 37.7641 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 81 H -11.4314 33.3463 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 82 q -0.7526 29.5628 43.4437 -Arial_Bold.ttf 49 y 31.6883 42.4286 83 & -11.4957 38.8117 42.4286 -Arial_Bold.ttf 49 y 31.6883 42.4286 84 ’ -11.3152 8.8680 17.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 85 [ -11.1478 15.2294 53.5411 -Arial_Bold.ttf 49 y 31.6883 42.4286 86 - 12.4789 15.7294 6.9091 -Arial_Bold.ttf 49 y 31.6883 42.4286 87 Y -11.5927 41.0563 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 88 Q -12.1442 41.7857 46.6472 -Arial_Bold.ttf 49 y 31.6883 42.4286 89 " -11.7157 21.5909 15.2294 -Arial_Bold.ttf 49 y 31.6883 42.4286 90 ! -11.1637 8.1385 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 91 x 0.0083 32.4177 30.6732 -Arial_Bold.ttf 49 y 31.6883 42.4286 92 ) -11.3602 14.0000 53.5411 -Arial_Bold.ttf 49 y 31.6883 42.4286 93 = 0.0090 29.2294 19.2835 -Arial_Bold.ttf 49 y 31.6883 42.4286 94 + -4.3094 28.8961 28.8961 -Arial_Bold.ttf 49 y 31.6883 42.4286 95 X -11.0864 38.9935 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 96 » 1.9806 26.9524 26.5563 -Arial_Bold.ttf 49 y 31.6883 42.4286 97 ' -11.4185 8.1385 15.2294 -Arial_Bold.ttf 49 y 31.6883 42.4286 98 ¢ -11.4945 28.7294 54.4372 -Arial_Bold.ttf 49 y 31.6883 42.4286 99 Z -11.3685 34.4805 42.0000 -Arial_Bold.ttf 49 y 31.6883 42.4286 100 > -6.0103 28.0000 31.9026 -Arial_Bold.ttf 49 y 31.6883 42.4286 101 ® -11.5340 43.2294 42.4286 -Arial_Bold.ttf 49 y 31.6883 42.4286 102 © -11.3742 43.9589 42.4286 -Arial_Bold.ttf 49 y 31.6883 42.4286 103 ] -11.2768 15.2294 53.5411 -Arial_Bold.ttf 49 y 31.6883 42.4286 104 é -12.1634 29.4113 42.8961 -Arial_Bold.ttf 49 y 31.6883 42.4286 105 z -0.0286 26.7706 30.6732 -Arial_Bold.ttf 49 y 31.6883 42.4286 106 _ 36.1705 33.4654 5.8615 -Arial_Bold.ttf 49 y 31.6883 42.4286 107 ¥ -11.3126 30.2056 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 1 t 0.7917 18.1169 41.3810 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 2 h 0.2457 27.7857 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 3 a 10.2522 28.8333 32.1169 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 4 n 10.0617 27.7857 31.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 5 P 0.0788 32.0844 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 6 o 10.0200 31.0065 32.1169 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 7 e 9.8938 29.4113 32.1169 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 8 : 11.4126 8.1385 30.6732 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 9 r 10.1891 19.8615 31.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 10 l -0.2540 8.1385 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 11 i 0.0976 8.1385 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 12 1 0.0060 18.2359 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 13 | -0.1490 5.8615 54.5563 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 14 N 0.2252 33.3463 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 15 f -0.1226 20.6948 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 16 g 10.1609 29.5628 43.6580 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 17 d -0.1826 29.5628 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 18 W -0.1333 54.7706 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 19 s 10.1391 28.3333 32.1169 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 20 c 9.9784 27.5000 32.1169 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 21 u 11.4997 27.7857 30.8874 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 22 3 0.5335 27.2857 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 23 ~ 15.9255 30.4589 10.8117 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 24 # 0.0000 30.3874 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 25 O -0.6521 40.3420 43.4589 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 26 ` -0.0038 12.7706 8.3203 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 27 @ -0.1583 55.2706 56.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 28 F -0.1274 29.0152 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 29 S -0.6378 33.8615 43.4589 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 30 p 9.9922 29.5628 43.4437 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 31 “ -0.0060 22.4719 17.6883 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 32 % -0.2143 44.9329 43.6580 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 33 £ -0.1786 31.1883 42.4286 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 34 . 33.8258 8.1385 8.1385 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 35 2 -0.1214 27.2857 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 36 5 0.2857 28.0000 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 37 m 10.1391 44.6104 31.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 38 V -0.2548 38.4935 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 39 6 -0.0955 27.2857 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 40 w 11.3782 45.5065 30.6732 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 41 T 0.0060 33.2511 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 42 M 0.1955 39.5584 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 43 G -0.8294 39.1126 43.4589 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 44 b 0.1871 29.5628 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 45 9 0.0909 27.2857 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 46 ; 11.0540 8.8680 40.4372 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 47 D -0.1571 35.0909 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 48 L 0.1131 29.9113 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 49 y 11.4140 31.6883 42.4286 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 50 ‘ -0.0798 8.8680 17.6883 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 51 \ 0.1488 17.6883 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 52 R 0.0060 37.0498 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 53 < 5.5063 28.0000 31.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 54 4 0.2143 29.9589 41.7857 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 55 8 -0.0917 27.2857 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 56 0 -0.0955 27.2857 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 57 A 0.0857 40.5887 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 58 E 0.1812 32.0844 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 59 B -0.1476 35.0909 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 60 v 11.3268 31.6883 30.6732 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 61 k 0.2183 28.5152 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 62 J 0.0774 26.9524 42.7294 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 63 U -0.0274 33.3463 42.7294 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 64 j 0.0357 15.2294 53.7554 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 65 ( -0.1562 14.0000 53.5411 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 66 7 0.0452 27.2857 41.7857 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 67 § -0.0655 28.5152 54.7706 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 68 $ -3.0839 27.7857 50.8680 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 69 € -0.6294 31.6883 42.9437 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 70 / 0.0857 17.6883 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 71 C -0.6794 36.6537 42.7294 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 72 * 0.0917 19.7424 19.1320 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 73 ” 0.2742 22.4719 17.6883 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 74 ? -0.0696 30.4589 42.2143 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 75 { -0.3052 19.6472 53.9697 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 76 } -0.0655 19.6472 53.9697 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 77 , 33.7698 8.8680 17.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 78 I -0.1202 8.1385 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 79 ° -0.3774 18.0844 18.0844 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 80 K 0.2833 37.7641 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 81 H -0.2250 33.3463 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 82 q 10.0057 29.5628 43.4437 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 83 & -0.2143 38.8117 42.4286 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 84 ’ 0.1871 8.8680 17.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 85 [ 0.0135 15.2294 53.5411 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 86 - 23.9005 15.7294 6.9091 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 87 Y 0.1476 41.0563 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 88 Q -0.9723 41.7857 46.6472 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 89 " -0.1371 21.5909 15.2294 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 90 ! 0.0917 8.1385 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 91 x 11.4042 32.4177 30.6732 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 92 ) -0.2405 14.0000 53.5411 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 93 = 11.4042 29.2294 19.2835 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 94 + 7.1379 28.8961 28.8961 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 95 X 0.1183 38.9935 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 96 » 13.2451 26.9524 26.5563 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 97 ' 0.1417 8.1385 15.2294 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 98 ¢ -0.1119 28.7294 54.4372 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 99 Z -0.0560 34.4805 42.0000 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 100 > 5.5213 28.0000 31.9026 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 101 ® -0.1226 43.2294 42.4286 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 102 © -0.1226 43.9589 42.4286 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 103 ] 0.2183 15.2294 53.5411 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 104 é -0.7175 29.4113 42.8961 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 105 z 11.1435 26.7706 30.6732 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 106 _ 47.3737 33.4654 5.8615 -Arial_Bold.ttf 50 ‘ 8.8680 17.6883 107 ¥ -0.0917 30.2056 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 1 t 1.0159 18.1169 41.3810 -Arial_Bold.ttf 51 \ 17.6883 42.0000 2 h 0.0417 27.7857 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 3 a 9.9550 28.8333 32.1169 -Arial_Bold.ttf 51 \ 17.6883 42.0000 4 n 9.6744 27.7857 31.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 5 P -0.0774 32.0844 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 6 o 10.3754 31.0065 32.1169 -Arial_Bold.ttf 51 \ 17.6883 42.0000 7 e 10.1831 29.4113 32.1169 -Arial_Bold.ttf 51 \ 17.6883 42.0000 8 : 11.0995 8.1385 30.6732 -Arial_Bold.ttf 51 \ 17.6883 42.0000 9 r 10.2248 19.8615 31.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 10 l 0.0722 8.1385 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 11 i -0.0038 8.1385 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 12 1 0.0500 18.2359 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 13 | -0.0143 5.8615 54.5563 -Arial_Bold.ttf 51 \ 17.6883 42.0000 14 N -0.1145 33.3463 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 15 f -0.0155 20.6948 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 16 g 9.9505 29.5628 43.6580 -Arial_Bold.ttf 51 \ 17.6883 42.0000 17 d -0.0274 29.5628 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 18 W 0.0000 54.7706 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 19 s 10.0208 28.3333 32.1169 -Arial_Bold.ttf 51 \ 17.6883 42.0000 20 c 10.1688 27.5000 32.1169 -Arial_Bold.ttf 51 \ 17.6883 42.0000 21 u 11.4566 27.7857 30.8874 -Arial_Bold.ttf 51 \ 17.6883 42.0000 22 3 0.0728 27.2857 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 23 ~ 16.2317 30.4589 10.8117 -Arial_Bold.ttf 51 \ 17.6883 42.0000 24 # -0.0631 30.3874 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 25 O -0.7899 40.3420 43.4589 -Arial_Bold.ttf 51 \ 17.6883 42.0000 26 ` -0.0955 12.7706 8.3203 -Arial_Bold.ttf 51 \ 17.6883 42.0000 27 @ -0.2143 55.2706 56.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 28 F 0.0518 29.0152 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 29 S -0.9342 33.8615 43.4589 -Arial_Bold.ttf 51 \ 17.6883 42.0000 30 p 10.3405 29.5628 43.4437 -Arial_Bold.ttf 51 \ 17.6883 42.0000 31 “ 0.2054 22.4719 17.6883 -Arial_Bold.ttf 51 \ 17.6883 42.0000 32 % -0.3728 44.9329 43.6580 -Arial_Bold.ttf 51 \ 17.6883 42.0000 33 £ -0.2129 31.1883 42.4286 -Arial_Bold.ttf 51 \ 17.6883 42.0000 34 . 33.8660 8.1385 8.1385 -Arial_Bold.ttf 51 \ 17.6883 42.0000 35 2 -0.1988 27.2857 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 36 5 0.2500 28.0000 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 37 m 9.9915 44.6104 31.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 38 V 0.0571 38.4935 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 39 6 -0.0917 27.2857 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 40 w 11.3671 45.5065 30.6732 -Arial_Bold.ttf 51 \ 17.6883 42.0000 41 T 0.0000 33.2511 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 42 M 0.0500 39.5584 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 43 G -0.6794 39.1126 43.4589 -Arial_Bold.ttf 51 \ 17.6883 42.0000 44 b 0.4193 29.5628 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 45 9 -0.3088 27.2857 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 46 ; 11.4685 8.8680 40.4372 -Arial_Bold.ttf 51 \ 17.6883 42.0000 47 D -0.2810 35.0909 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 48 L 0.2040 29.9113 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 49 y 11.4035 31.6883 42.4286 -Arial_Bold.ttf 51 \ 17.6883 42.0000 50 ‘ -0.2540 8.8680 17.6883 -Arial_Bold.ttf 51 \ 17.6883 42.0000 51 \ -0.0714 17.6883 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 52 R -0.0917 37.0498 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 53 < 5.6874 28.0000 31.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 54 4 0.3240 29.9589 41.7857 -Arial_Bold.ttf 51 \ 17.6883 42.0000 55 8 0.0760 27.2857 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 56 0 0.0643 27.2857 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 57 A -0.0260 40.5887 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 58 E -0.0560 32.0844 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 59 B 0.0357 35.0909 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 60 v 11.5132 31.6883 30.6732 -Arial_Bold.ttf 51 \ 17.6883 42.0000 61 k 0.3585 28.5152 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 62 J 0.0643 26.9524 42.7294 -Arial_Bold.ttf 51 \ 17.6883 42.0000 63 U 0.2036 33.3463 42.7294 -Arial_Bold.ttf 51 \ 17.6883 42.0000 64 j -0.0357 15.2294 53.7554 -Arial_Bold.ttf 51 \ 17.6883 42.0000 65 ( -0.1409 14.0000 53.5411 -Arial_Bold.ttf 51 \ 17.6883 42.0000 66 7 0.0310 27.2857 41.7857 -Arial_Bold.ttf 51 \ 17.6883 42.0000 67 § -0.2000 28.5152 54.7706 -Arial_Bold.ttf 51 \ 17.6883 42.0000 68 $ -2.9075 27.7857 50.8680 -Arial_Bold.ttf 51 \ 17.6883 42.0000 69 € -0.7294 31.6883 42.9437 -Arial_Bold.ttf 51 \ 17.6883 42.0000 70 / 0.2062 17.6883 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 71 C -0.9523 36.6537 42.7294 -Arial_Bold.ttf 51 \ 17.6883 42.0000 72 * 0.2190 19.7424 19.1320 -Arial_Bold.ttf 51 \ 17.6883 42.0000 73 ” 0.1169 22.4719 17.6883 -Arial_Bold.ttf 51 \ 17.6883 42.0000 74 ? -0.2286 30.4589 42.2143 -Arial_Bold.ttf 51 \ 17.6883 42.0000 75 { -0.0240 19.6472 53.9697 -Arial_Bold.ttf 51 \ 17.6883 42.0000 76 } -0.3326 19.6472 53.9697 -Arial_Bold.ttf 51 \ 17.6883 42.0000 77 , 33.6275 8.8680 17.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 78 I -0.0234 8.1385 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 79 ° -0.4074 18.0844 18.0844 -Arial_Bold.ttf 51 \ 17.6883 42.0000 80 K 0.0635 37.7641 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 81 H -0.0917 33.3463 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 82 q 10.4209 29.5628 43.4437 -Arial_Bold.ttf 51 \ 17.6883 42.0000 83 & -0.3060 38.8117 42.4286 -Arial_Bold.ttf 51 \ 17.6883 42.0000 84 ’ 0.0917 8.8680 17.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 85 [ 0.0774 15.2294 53.5411 -Arial_Bold.ttf 51 \ 17.6883 42.0000 86 - 23.5232 15.7294 6.9091 -Arial_Bold.ttf 51 \ 17.6883 42.0000 87 Y -0.1571 41.0563 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 88 Q -0.5340 41.7857 46.6472 -Arial_Bold.ttf 51 \ 17.6883 42.0000 89 " 0.0736 21.5909 15.2294 -Arial_Bold.ttf 51 \ 17.6883 42.0000 90 ! 0.0657 8.1385 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 91 x 11.3268 32.4177 30.6732 -Arial_Bold.ttf 51 \ 17.6883 42.0000 92 ) -0.0857 14.0000 53.5411 -Arial_Bold.ttf 51 \ 17.6883 42.0000 93 = 11.1280 29.2294 19.2835 -Arial_Bold.ttf 51 \ 17.6883 42.0000 94 + 7.1508 28.8961 28.8961 -Arial_Bold.ttf 51 \ 17.6883 42.0000 95 X -0.1690 38.9935 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 96 » 13.8674 26.9524 26.5563 -Arial_Bold.ttf 51 \ 17.6883 42.0000 97 ' 0.0824 8.1385 15.2294 -Arial_Bold.ttf 51 \ 17.6883 42.0000 98 ¢ 0.0631 28.7294 54.4372 -Arial_Bold.ttf 51 \ 17.6883 42.0000 99 Z 0.0574 34.4805 42.0000 -Arial_Bold.ttf 51 \ 17.6883 42.0000 100 > 5.3413 28.0000 31.9026 -Arial_Bold.ttf 51 \ 17.6883 42.0000 101 ® -0.3060 43.2294 42.4286 -Arial_Bold.ttf 51 \ 17.6883 42.0000 102 © -0.1226 43.9589 42.4286 -Arial_Bold.ttf 51 \ 17.6883 42.0000 103 ] 0.0924 15.2294 53.5411 -Arial_Bold.ttf 51 \ 17.6883 42.0000 104 é -0.5413 29.4113 42.8961 -Arial_Bold.ttf 51 \ 17.6883 42.0000 105 z 11.4828 26.7706 30.6732 -Arial_Bold.ttf 51 \ 17.6883 42.0000 106 _ 47.4868 33.4654 5.8615 -Arial_Bold.ttf 51 \ 17.6883 42.0000 107 ¥ -0.0357 30.2056 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 1 t 0.6760 18.1169 41.3810 -Arial_Bold.ttf 52 R 37.0498 42.0000 2 h 0.1826 27.7857 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 3 a 10.2157 28.8333 32.1169 -Arial_Bold.ttf 52 R 37.0498 42.0000 4 n 10.0343 27.7857 31.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 5 P -0.0728 32.0844 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 6 o 10.3232 31.0065 32.1169 -Arial_Bold.ttf 52 R 37.0498 42.0000 7 e 9.9129 29.4113 32.1169 -Arial_Bold.ttf 52 R 37.0498 42.0000 8 : 11.1814 8.1385 30.6732 -Arial_Bold.ttf 52 R 37.0498 42.0000 9 r 10.2462 19.8615 31.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 10 l -0.1859 8.1385 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 11 i 0.2345 8.1385 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 12 1 -0.0357 18.2359 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 13 | 0.1600 5.8615 54.5563 -Arial_Bold.ttf 52 R 37.0498 42.0000 14 N 0.0024 33.3463 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 15 f -0.5859 20.6948 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 16 g 10.1188 29.5628 43.6580 -Arial_Bold.ttf 52 R 37.0498 42.0000 17 d 0.0395 29.5628 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 18 W -0.0403 54.7706 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 19 s 10.4826 28.3333 32.1169 -Arial_Bold.ttf 52 R 37.0498 42.0000 20 c 10.3022 27.5000 32.1169 -Arial_Bold.ttf 52 R 37.0498 42.0000 21 u 11.3314 27.7857 30.8874 -Arial_Bold.ttf 52 R 37.0498 42.0000 22 3 -0.0200 27.2857 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 23 ~ 16.0446 30.4589 10.8117 -Arial_Bold.ttf 52 R 37.0498 42.0000 24 # -0.1371 30.3874 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 25 O -0.9334 40.3420 43.4589 -Arial_Bold.ttf 52 R 37.0498 42.0000 26 ` 0.3457 12.7706 8.3203 -Arial_Bold.ttf 52 R 37.0498 42.0000 27 @ -0.2421 55.2706 56.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 28 F -0.1326 29.0152 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 29 S -0.8128 33.8615 43.4589 -Arial_Bold.ttf 52 R 37.0498 42.0000 30 p 10.1786 29.5628 43.4437 -Arial_Bold.ttf 52 R 37.0498 42.0000 31 “ 0.0962 22.4719 17.6883 -Arial_Bold.ttf 52 R 37.0498 42.0000 32 % -0.3000 44.9329 43.6580 -Arial_Bold.ttf 52 R 37.0498 42.0000 33 £ -0.1324 31.1883 42.4286 -Arial_Bold.ttf 52 R 37.0498 42.0000 34 . 33.7400 8.1385 8.1385 -Arial_Bold.ttf 52 R 37.0498 42.0000 35 2 -0.0462 27.2857 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 36 5 0.1976 28.0000 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 37 m 10.1045 44.6104 31.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 38 V 0.1190 38.4935 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 39 6 -0.0069 27.2857 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 40 w 11.1721 45.5065 30.6732 -Arial_Bold.ttf 52 R 37.0498 42.0000 41 T 0.1579 33.2511 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 42 M -0.0131 39.5584 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 43 G -0.5756 39.1126 43.4589 -Arial_Bold.ttf 52 R 37.0498 42.0000 44 b -0.0246 29.5628 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 45 9 0.0786 27.2857 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 46 ; 11.5447 8.8680 40.4372 -Arial_Bold.ttf 52 R 37.0498 42.0000 47 D 0.3171 35.0909 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 48 L 0.1417 29.9113 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 49 y 11.3449 31.6883 42.4286 -Arial_Bold.ttf 52 R 37.0498 42.0000 50 ‘ 0.4335 8.8680 17.6883 -Arial_Bold.ttf 52 R 37.0498 42.0000 51 \ 0.1266 17.6883 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 52 R -0.0155 37.0498 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 53 < 5.2568 28.0000 31.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 54 4 0.4131 29.9589 41.7857 -Arial_Bold.ttf 52 R 37.0498 42.0000 55 8 -0.2114 27.2857 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 56 0 0.0014 27.2857 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 57 A -0.1304 40.5887 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 58 E -0.3010 32.0844 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 59 B -0.3502 35.0909 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 60 v 11.4185 31.6883 30.6732 -Arial_Bold.ttf 52 R 37.0498 42.0000 61 k 0.1052 28.5152 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 62 J 0.2702 26.9524 42.7294 -Arial_Bold.ttf 52 R 37.0498 42.0000 63 U 0.0333 33.3463 42.7294 -Arial_Bold.ttf 52 R 37.0498 42.0000 64 j 0.1054 15.2294 53.7554 -Arial_Bold.ttf 52 R 37.0498 42.0000 65 ( -0.0917 14.0000 53.5411 -Arial_Bold.ttf 52 R 37.0498 42.0000 66 7 0.2879 27.2857 41.7857 -Arial_Bold.ttf 52 R 37.0498 42.0000 67 § -0.0429 28.5152 54.7706 -Arial_Bold.ttf 52 R 37.0498 42.0000 68 $ -2.8239 27.7857 50.8680 -Arial_Bold.ttf 52 R 37.0498 42.0000 69 € -0.8249 31.6883 42.9437 -Arial_Bold.ttf 52 R 37.0498 42.0000 70 / -0.1312 17.6883 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 71 C -0.9245 36.6537 42.7294 -Arial_Bold.ttf 52 R 37.0498 42.0000 72 * -0.1371 19.7424 19.1320 -Arial_Bold.ttf 52 R 37.0498 42.0000 73 ” -0.2107 22.4719 17.6883 -Arial_Bold.ttf 52 R 37.0498 42.0000 74 ? -0.1286 30.4589 42.2143 -Arial_Bold.ttf 52 R 37.0498 42.0000 75 { -0.3679 19.6472 53.9697 -Arial_Bold.ttf 52 R 37.0498 42.0000 76 } -0.0734 19.6472 53.9697 -Arial_Bold.ttf 52 R 37.0498 42.0000 77 , 33.7767 8.8680 17.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 78 I 0.0109 8.1385 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 79 ° -0.4562 18.0844 18.0844 -Arial_Bold.ttf 52 R 37.0498 42.0000 80 K 0.1266 37.7641 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 81 H -0.0060 33.3463 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 82 q 10.1079 29.5628 43.4437 -Arial_Bold.ttf 52 R 37.0498 42.0000 83 & -0.0708 38.8117 42.4286 -Arial_Bold.ttf 52 R 37.0498 42.0000 84 ’ 0.0857 8.8680 17.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 85 [ 0.1548 15.2294 53.5411 -Arial_Bold.ttf 52 R 37.0498 42.0000 86 - 23.6595 15.7294 6.9091 -Arial_Bold.ttf 52 R 37.0498 42.0000 87 Y -0.3137 41.0563 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 88 Q -0.6618 41.7857 46.6472 -Arial_Bold.ttf 52 R 37.0498 42.0000 89 " 0.0121 21.5909 15.2294 -Arial_Bold.ttf 52 R 37.0498 42.0000 90 ! 0.0181 8.1385 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 91 x 11.6687 32.4177 30.6732 -Arial_Bold.ttf 52 R 37.0498 42.0000 92 ) 0.0924 14.0000 53.5411 -Arial_Bold.ttf 52 R 37.0498 42.0000 93 = 11.2197 29.2294 19.2835 -Arial_Bold.ttf 52 R 37.0498 42.0000 94 + 7.3829 28.8961 28.8961 -Arial_Bold.ttf 52 R 37.0498 42.0000 95 X 0.1631 38.9935 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 96 » 13.2561 26.9524 26.5563 -Arial_Bold.ttf 52 R 37.0498 42.0000 97 ' 0.0695 8.1385 15.2294 -Arial_Bold.ttf 52 R 37.0498 42.0000 98 ¢ 0.1474 28.7294 54.4372 -Arial_Bold.ttf 52 R 37.0498 42.0000 99 Z 0.1774 34.4805 42.0000 -Arial_Bold.ttf 52 R 37.0498 42.0000 100 > 5.1890 28.0000 31.9026 -Arial_Bold.ttf 52 R 37.0498 42.0000 101 ® -0.3841 43.2294 42.4286 -Arial_Bold.ttf 52 R 37.0498 42.0000 102 © -0.4607 43.9589 42.4286 -Arial_Bold.ttf 52 R 37.0498 42.0000 103 ] -0.0983 15.2294 53.5411 -Arial_Bold.ttf 52 R 37.0498 42.0000 104 é -0.5961 29.4113 42.8961 -Arial_Bold.ttf 52 R 37.0498 42.0000 105 z 11.3768 26.7706 30.6732 -Arial_Bold.ttf 52 R 37.0498 42.0000 106 _ 47.3306 33.4654 5.8615 -Arial_Bold.ttf 52 R 37.0498 42.0000 107 ¥ -0.0962 30.2056 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 1 t -4.6282 18.1169 41.3810 -Arial_Bold.ttf 53 < 28.0000 31.9026 2 h -5.5427 27.7857 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 3 a 4.2318 28.8333 32.1169 -Arial_Bold.ttf 53 < 28.0000 31.9026 4 n 4.7535 27.7857 31.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 5 P -5.1175 32.0844 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 6 o 4.5068 31.0065 32.1169 -Arial_Bold.ttf 53 < 28.0000 31.9026 7 e 4.4092 29.4113 32.1169 -Arial_Bold.ttf 53 < 28.0000 31.9026 8 : 5.8653 8.1385 30.6732 -Arial_Bold.ttf 53 < 28.0000 31.9026 9 r 4.6035 19.8615 31.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 10 l -5.7011 8.1385 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 11 i -5.5282 8.1385 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 12 1 -5.4251 18.2359 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 13 | -5.4108 5.8615 54.5563 -Arial_Bold.ttf 53 < 28.0000 31.9026 14 N -5.2880 33.3463 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 15 f -5.9682 20.6948 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 16 g 4.5163 29.5628 43.6580 -Arial_Bold.ttf 53 < 28.0000 31.9026 17 d -5.3199 29.5628 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 18 W -5.5025 54.7706 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 19 s 4.7729 28.3333 32.1169 -Arial_Bold.ttf 53 < 28.0000 31.9026 20 c 4.3661 27.5000 32.1169 -Arial_Bold.ttf 53 < 28.0000 31.9026 21 u 5.5627 27.7857 30.8874 -Arial_Bold.ttf 53 < 28.0000 31.9026 22 3 -5.4858 27.2857 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 23 ~ 10.3578 30.4589 10.8117 -Arial_Bold.ttf 53 < 28.0000 31.9026 24 # -5.3177 30.3874 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 25 O -6.1662 40.3420 43.4589 -Arial_Bold.ttf 53 < 28.0000 31.9026 26 ` -5.2866 12.7706 8.3203 -Arial_Bold.ttf 53 < 28.0000 31.9026 27 @ -5.8689 55.2706 56.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 28 F -5.2749 29.0152 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 29 S -6.2819 33.8615 43.4589 -Arial_Bold.ttf 53 < 28.0000 31.9026 30 p 4.6910 29.5628 43.4437 -Arial_Bold.ttf 53 < 28.0000 31.9026 31 “ -5.4297 22.4719 17.6883 -Arial_Bold.ttf 53 < 28.0000 31.9026 32 % -5.5628 44.9329 43.6580 -Arial_Bold.ttf 53 < 28.0000 31.9026 33 £ -5.7168 31.1883 42.4286 -Arial_Bold.ttf 53 < 28.0000 31.9026 34 . 28.3890 8.1385 8.1385 -Arial_Bold.ttf 53 < 28.0000 31.9026 35 2 -5.6130 27.2857 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 36 5 -5.1792 28.0000 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 37 m 4.4890 44.6104 31.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 38 V -5.3880 38.4935 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 39 6 -5.7261 27.2857 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 40 w 5.5668 45.5065 30.6732 -Arial_Bold.ttf 53 < 28.0000 31.9026 41 T -5.7311 33.2511 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 42 M -5.3504 39.5584 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 43 G -6.3722 39.1126 43.4589 -Arial_Bold.ttf 53 < 28.0000 31.9026 44 b -5.4977 29.5628 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 45 9 -5.5376 27.2857 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 46 ; 5.8434 8.8680 40.4372 -Arial_Bold.ttf 53 < 28.0000 31.9026 47 D -5.4570 35.0909 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 48 L -5.7344 29.9113 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 49 y 5.8115 31.6883 42.4286 -Arial_Bold.ttf 53 < 28.0000 31.9026 50 ‘ -5.4161 8.8680 17.6883 -Arial_Bold.ttf 53 < 28.0000 31.9026 51 \ -5.1911 17.6883 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 52 R -5.4491 37.0498 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 53 < 0.1319 28.0000 31.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 54 4 -5.5035 29.9589 41.7857 -Arial_Bold.ttf 53 < 28.0000 31.9026 55 8 -5.4751 27.2857 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 56 0 -5.4207 27.2857 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 57 A -5.7374 40.5887 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 58 E -5.0735 32.0844 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 59 B -5.2023 35.0909 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 60 v 5.8639 31.6883 30.6732 -Arial_Bold.ttf 53 < 28.0000 31.9026 61 k -5.3834 28.5152 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 62 J -5.4965 26.9524 42.7294 -Arial_Bold.ttf 53 < 28.0000 31.9026 63 U -5.4654 33.3463 42.7294 -Arial_Bold.ttf 53 < 28.0000 31.9026 64 j -5.5927 15.2294 53.7554 -Arial_Bold.ttf 53 < 28.0000 31.9026 65 ( -5.5451 14.0000 53.5411 -Arial_Bold.ttf 53 < 28.0000 31.9026 66 7 -5.1140 27.2857 41.7857 -Arial_Bold.ttf 53 < 28.0000 31.9026 67 § -5.9832 28.5152 54.7706 -Arial_Bold.ttf 53 < 28.0000 31.9026 68 $ -8.5864 27.7857 50.8680 -Arial_Bold.ttf 53 < 28.0000 31.9026 69 € -6.0674 31.6883 42.9437 -Arial_Bold.ttf 53 < 28.0000 31.9026 70 / -5.5473 17.6883 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 71 C -6.2281 36.6537 42.7294 -Arial_Bold.ttf 53 < 28.0000 31.9026 72 * -5.1471 19.7424 19.1320 -Arial_Bold.ttf 53 < 28.0000 31.9026 73 ” -5.3094 22.4719 17.6883 -Arial_Bold.ttf 53 < 28.0000 31.9026 74 ? -5.5328 30.4589 42.2143 -Arial_Bold.ttf 53 < 28.0000 31.9026 75 { -5.7630 19.6472 53.9697 -Arial_Bold.ttf 53 < 28.0000 31.9026 76 } -5.7473 19.6472 53.9697 -Arial_Bold.ttf 53 < 28.0000 31.9026 77 , 28.3663 8.8680 17.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 78 I -5.2640 8.1385 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 79 ° -5.4509 18.0844 18.0844 -Arial_Bold.ttf 53 < 28.0000 31.9026 80 K -5.6285 37.7641 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 81 H -5.8372 33.3463 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 82 q 4.7616 29.5628 43.4437 -Arial_Bold.ttf 53 < 28.0000 31.9026 83 & -5.6297 38.8117 42.4286 -Arial_Bold.ttf 53 < 28.0000 31.9026 84 ’ -5.1749 8.8680 17.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 85 [ -5.5654 15.2294 53.5411 -Arial_Bold.ttf 53 < 28.0000 31.9026 86 - 18.6013 15.7294 6.9091 -Arial_Bold.ttf 53 < 28.0000 31.9026 87 Y -5.8513 41.0563 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 88 Q -6.1160 41.7857 46.6472 -Arial_Bold.ttf 53 < 28.0000 31.9026 89 " -5.2880 21.5909 15.2294 -Arial_Bold.ttf 53 < 28.0000 31.9026 90 ! -5.3797 8.1385 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 91 x 5.8220 32.4177 30.6732 -Arial_Bold.ttf 53 < 28.0000 31.9026 92 ) -5.7642 14.0000 53.5411 -Arial_Bold.ttf 53 < 28.0000 31.9026 93 = 6.2391 29.2294 19.2835 -Arial_Bold.ttf 53 < 28.0000 31.9026 94 + 1.7421 28.8961 28.8961 -Arial_Bold.ttf 53 < 28.0000 31.9026 95 X -5.1463 38.9935 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 96 » 7.9981 26.9524 26.5563 -Arial_Bold.ttf 53 < 28.0000 31.9026 97 ' -5.5168 8.1385 15.2294 -Arial_Bold.ttf 53 < 28.0000 31.9026 98 ¢ -5.4518 28.7294 54.4372 -Arial_Bold.ttf 53 < 28.0000 31.9026 99 Z -5.5503 34.4805 42.0000 -Arial_Bold.ttf 53 < 28.0000 31.9026 100 > -0.0176 28.0000 31.9026 -Arial_Bold.ttf 53 < 28.0000 31.9026 101 ® -5.8025 43.2294 42.4286 -Arial_Bold.ttf 53 < 28.0000 31.9026 102 © -5.8390 43.9589 42.4286 -Arial_Bold.ttf 53 < 28.0000 31.9026 103 ] -5.4297 15.2294 53.5411 -Arial_Bold.ttf 53 < 28.0000 31.9026 104 é -6.3136 29.4113 42.8961 -Arial_Bold.ttf 53 < 28.0000 31.9026 105 z 5.7089 26.7706 30.6732 -Arial_Bold.ttf 53 < 28.0000 31.9026 106 _ 42.3062 33.4654 5.8615 -Arial_Bold.ttf 53 < 28.0000 31.9026 107 ¥ -5.2373 30.2056 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 1 t 0.5657 18.1169 41.3810 -Arial_Bold.ttf 54 4 29.9589 41.7857 2 h -0.0095 27.7857 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 3 a 10.0240 28.8333 32.1169 -Arial_Bold.ttf 54 4 29.9589 41.7857 4 n 9.7708 27.7857 31.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 5 P -0.0500 32.0844 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 6 o 9.7877 31.0065 32.1169 -Arial_Bold.ttf 54 4 29.9589 41.7857 7 e 9.9605 29.4113 32.1169 -Arial_Bold.ttf 54 4 29.9589 41.7857 8 : 11.1268 8.1385 30.6732 -Arial_Bold.ttf 54 4 29.9589 41.7857 9 r 9.5867 19.8615 31.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 10 l -0.0595 8.1385 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 11 i -0.2935 8.1385 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 12 1 -0.3150 18.2359 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 13 | -0.0212 5.8615 54.5563 -Arial_Bold.ttf 54 4 29.9589 41.7857 14 N 0.0667 33.3463 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 15 f -0.5417 20.6948 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 16 g 9.9377 29.5628 43.6580 -Arial_Bold.ttf 54 4 29.9589 41.7857 17 d -0.1212 29.5628 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 18 W -0.3060 54.7706 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 19 s 9.8631 28.3333 32.1169 -Arial_Bold.ttf 54 4 29.9589 41.7857 20 c 9.6486 27.5000 32.1169 -Arial_Bold.ttf 54 4 29.9589 41.7857 21 u 11.3771 27.7857 30.8874 -Arial_Bold.ttf 54 4 29.9589 41.7857 22 3 -0.2552 27.2857 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 23 ~ 15.9041 30.4589 10.8117 -Arial_Bold.ttf 54 4 29.9589 41.7857 24 # -0.3278 30.3874 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 25 O -0.9126 40.3420 43.4589 -Arial_Bold.ttf 54 4 29.9589 41.7857 26 ` -0.3060 12.7706 8.3203 -Arial_Bold.ttf 54 4 29.9589 41.7857 27 @ -0.0250 55.2706 56.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 28 F -0.1857 29.0152 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 29 S -1.0249 33.8615 43.4589 -Arial_Bold.ttf 54 4 29.9589 41.7857 30 p 10.0529 29.5628 43.4437 -Arial_Bold.ttf 54 4 29.9589 41.7857 31 “ -0.5502 22.4719 17.6883 -Arial_Bold.ttf 54 4 29.9589 41.7857 32 % -0.4748 44.9329 43.6580 -Arial_Bold.ttf 54 4 29.9589 41.7857 33 £ -0.4702 31.1883 42.4286 -Arial_Bold.ttf 54 4 29.9589 41.7857 34 . 33.6627 8.1385 8.1385 -Arial_Bold.ttf 54 4 29.9589 41.7857 35 2 -0.1734 27.2857 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 36 5 -0.1661 28.0000 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 37 m 9.9748 44.6104 31.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 38 V -0.2857 38.4935 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 39 6 -0.2300 27.2857 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 40 w 11.0209 45.5065 30.6732 -Arial_Bold.ttf 54 4 29.9589 41.7857 41 T -0.2248 33.2511 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 42 M -0.1733 39.5584 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 43 G -1.1718 39.1126 43.4589 -Arial_Bold.ttf 54 4 29.9589 41.7857 44 b -0.5088 29.5628 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 45 9 -0.1331 27.2857 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 46 ; 10.9957 8.8680 40.4372 -Arial_Bold.ttf 54 4 29.9589 41.7857 47 D -0.1778 35.0909 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 48 L -0.0415 29.9113 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 49 y 10.7845 31.6883 42.4286 -Arial_Bold.ttf 54 4 29.9589 41.7857 50 ‘ -0.4878 8.8680 17.6883 -Arial_Bold.ttf 54 4 29.9589 41.7857 51 \ -0.2034 17.6883 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 52 R -0.0855 37.0498 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 53 < 5.1427 28.0000 31.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 54 4 -0.2250 29.9589 41.7857 -Arial_Bold.ttf 54 4 29.9589 41.7857 55 8 -0.2643 27.2857 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 56 0 -0.0569 27.2857 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 57 A -0.2091 40.5887 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 58 E 0.0802 32.0844 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 59 B -0.3529 35.0909 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 60 v 11.1145 31.6883 30.6732 -Arial_Bold.ttf 54 4 29.9589 41.7857 61 k -0.1012 28.5152 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 62 J -0.1331 26.9524 42.7294 -Arial_Bold.ttf 54 4 29.9589 41.7857 63 U -0.4847 33.3463 42.7294 -Arial_Bold.ttf 54 4 29.9589 41.7857 64 j 0.1390 15.2294 53.7554 -Arial_Bold.ttf 54 4 29.9589 41.7857 65 ( -0.2167 14.0000 53.5411 -Arial_Bold.ttf 54 4 29.9589 41.7857 66 7 0.0150 27.2857 41.7857 -Arial_Bold.ttf 54 4 29.9589 41.7857 67 § -0.6952 28.5152 54.7706 -Arial_Bold.ttf 54 4 29.9589 41.7857 68 $ -3.3482 27.7857 50.8680 -Arial_Bold.ttf 54 4 29.9589 41.7857 69 € -0.8723 31.6883 42.9437 -Arial_Bold.ttf 54 4 29.9589 41.7857 70 / -0.4690 17.6883 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 71 C -0.7604 36.6537 42.7294 -Arial_Bold.ttf 54 4 29.9589 41.7857 72 * -0.2798 19.7424 19.1320 -Arial_Bold.ttf 54 4 29.9589 41.7857 73 ” -0.3871 22.4719 17.6883 -Arial_Bold.ttf 54 4 29.9589 41.7857 74 ? -0.3688 30.4589 42.2143 -Arial_Bold.ttf 54 4 29.9589 41.7857 75 { -0.2655 19.6472 53.9697 -Arial_Bold.ttf 54 4 29.9589 41.7857 76 } -0.6111 19.6472 53.9697 -Arial_Bold.ttf 54 4 29.9589 41.7857 77 , 33.5555 8.8680 17.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 78 I -0.3286 8.1385 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 79 ° -0.2655 18.0844 18.0844 -Arial_Bold.ttf 54 4 29.9589 41.7857 80 K 0.0607 37.7641 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 81 H -0.1929 33.3463 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 82 q 9.7571 29.5628 43.4437 -Arial_Bold.ttf 54 4 29.9589 41.7857 83 & -0.7169 38.8117 42.4286 -Arial_Bold.ttf 54 4 29.9589 41.7857 84 ’ -0.1726 8.8680 17.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 85 [ -0.2083 15.2294 53.5411 -Arial_Bold.ttf 54 4 29.9589 41.7857 86 - 23.5861 15.7294 6.9091 -Arial_Bold.ttf 54 4 29.9589 41.7857 87 Y -0.1398 41.0563 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 88 Q -0.9437 41.7857 46.6472 -Arial_Bold.ttf 54 4 29.9589 41.7857 89 " 0.0176 21.5909 15.2294 -Arial_Bold.ttf 54 4 29.9589 41.7857 90 ! -0.2298 8.1385 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 91 x 11.2756 32.4177 30.6732 -Arial_Bold.ttf 54 4 29.9589 41.7857 92 ) -0.1403 14.0000 53.5411 -Arial_Bold.ttf 54 4 29.9589 41.7857 93 = 11.2497 29.2294 19.2835 -Arial_Bold.ttf 54 4 29.9589 41.7857 94 + 7.0222 28.8961 28.8961 -Arial_Bold.ttf 54 4 29.9589 41.7857 95 X -0.3000 38.9935 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 96 » 13.2029 26.9524 26.5563 -Arial_Bold.ttf 54 4 29.9589 41.7857 97 ' -0.3417 8.1385 15.2294 -Arial_Bold.ttf 54 4 29.9589 41.7857 98 ¢ -0.0091 28.7294 54.4372 -Arial_Bold.ttf 54 4 29.9589 41.7857 99 Z 0.1183 34.4805 42.0000 -Arial_Bold.ttf 54 4 29.9589 41.7857 100 > 5.1523 28.0000 31.9026 -Arial_Bold.ttf 54 4 29.9589 41.7857 101 ® -0.2714 43.2294 42.4286 -Arial_Bold.ttf 54 4 29.9589 41.7857 102 © -0.3429 43.9589 42.4286 -Arial_Bold.ttf 54 4 29.9589 41.7857 103 ] -0.5123 15.2294 53.5411 -Arial_Bold.ttf 54 4 29.9589 41.7857 104 é -1.1463 29.4113 42.8961 -Arial_Bold.ttf 54 4 29.9589 41.7857 105 z 11.0983 26.7706 30.6732 -Arial_Bold.ttf 54 4 29.9589 41.7857 106 _ 47.2094 33.4654 5.8615 -Arial_Bold.ttf 54 4 29.9589 41.7857 107 ¥ 0.1179 30.2056 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 1 t 1.0538 18.1169 41.3810 -Arial_Bold.ttf 55 8 27.2857 42.2143 2 h 0.1379 27.7857 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 3 a 10.0898 28.8333 32.1169 -Arial_Bold.ttf 55 8 27.2857 42.2143 4 n 9.9148 27.7857 31.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 5 P -0.2085 32.0844 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 6 o 10.1688 31.0065 32.1169 -Arial_Bold.ttf 55 8 27.2857 42.2143 7 e 10.1331 29.4113 32.1169 -Arial_Bold.ttf 55 8 27.2857 42.2143 8 : 11.0916 8.1385 30.6732 -Arial_Bold.ttf 55 8 27.2857 42.2143 9 r 10.4665 19.8615 31.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 10 l 0.1714 8.1385 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 11 i -0.0733 8.1385 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 12 1 0.2060 18.2359 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 13 | 0.0226 5.8615 54.5563 -Arial_Bold.ttf 55 8 27.2857 42.2143 14 N 0.2431 33.3463 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 15 f -0.1286 20.6948 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 16 g 10.0655 29.5628 43.6580 -Arial_Bold.ttf 55 8 27.2857 42.2143 17 d -0.1228 29.5628 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 18 W 0.0143 54.7706 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 19 s 10.0974 28.3333 32.1169 -Arial_Bold.ttf 55 8 27.2857 42.2143 20 c 10.0974 27.5000 32.1169 -Arial_Bold.ttf 55 8 27.2857 42.2143 21 u 11.3268 27.7857 30.8874 -Arial_Bold.ttf 55 8 27.2857 42.2143 22 3 0.0788 27.2857 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 23 ~ 15.8732 30.4589 10.8117 -Arial_Bold.ttf 55 8 27.2857 42.2143 24 # -0.1274 30.3874 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 25 O -0.5818 40.3420 43.4589 -Arial_Bold.ttf 55 8 27.2857 42.2143 26 ` 0.0774 12.7706 8.3203 -Arial_Bold.ttf 55 8 27.2857 42.2143 27 @ 0.0397 55.2706 56.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 28 F 0.1488 29.0152 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 29 S -0.6663 33.8615 43.4589 -Arial_Bold.ttf 55 8 27.2857 42.2143 30 p 10.1176 29.5628 43.4437 -Arial_Bold.ttf 55 8 27.2857 42.2143 31 “ 0.1859 22.4719 17.6883 -Arial_Bold.ttf 55 8 27.2857 42.2143 32 % 0.0600 44.9329 43.6580 -Arial_Bold.ttf 55 8 27.2857 42.2143 33 £ -0.0143 31.1883 42.4286 -Arial_Bold.ttf 55 8 27.2857 42.2143 34 . 33.9881 8.1385 8.1385 -Arial_Bold.ttf 55 8 27.2857 42.2143 35 2 0.1245 27.2857 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 36 5 0.3560 28.0000 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 37 m 9.8821 44.6104 31.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 38 V -0.1722 38.4935 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 39 6 0.1597 27.2857 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 40 w 11.4399 45.5065 30.6732 -Arial_Bold.ttf 55 8 27.2857 42.2143 41 T -0.3659 33.2511 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 42 M -0.1488 39.5584 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 43 G -0.8218 39.1126 43.4589 -Arial_Bold.ttf 55 8 27.2857 42.2143 44 b 0.0135 29.5628 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 45 9 0.1774 27.2857 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 46 ; 11.4973 8.8680 40.4372 -Arial_Bold.ttf 55 8 27.2857 42.2143 47 D 0.0286 35.0909 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 48 L 0.1319 29.9113 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 49 y 11.2040 31.6883 42.4286 -Arial_Bold.ttf 55 8 27.2857 42.2143 50 ‘ 0.0903 8.8680 17.6883 -Arial_Bold.ttf 55 8 27.2857 42.2143 51 \ 0.0857 17.6883 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 52 R -0.0774 37.0498 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 53 < 5.2925 28.0000 31.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 54 4 0.2167 29.9589 41.7857 -Arial_Bold.ttf 55 8 27.2857 42.2143 55 8 0.2600 27.2857 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 56 0 0.1750 27.2857 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 57 A 0.2350 40.5887 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 58 E -0.0357 32.0844 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 59 B 0.0738 35.0909 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 60 v 11.7149 31.6883 30.6732 -Arial_Bold.ttf 55 8 27.2857 42.2143 61 k 0.0083 28.5152 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 62 J -0.2274 26.9524 42.7294 -Arial_Bold.ttf 55 8 27.2857 42.2143 63 U -0.0274 33.3463 42.7294 -Arial_Bold.ttf 55 8 27.2857 42.2143 64 j -0.0135 15.2294 53.7554 -Arial_Bold.ttf 55 8 27.2857 42.2143 65 ( 0.0083 14.0000 53.5411 -Arial_Bold.ttf 55 8 27.2857 42.2143 66 7 0.6076 27.2857 41.7857 -Arial_Bold.ttf 55 8 27.2857 42.2143 67 § -0.3333 28.5152 54.7706 -Arial_Bold.ttf 55 8 27.2857 42.2143 68 $ -3.0287 27.7857 50.8680 -Arial_Bold.ttf 55 8 27.2857 42.2143 69 € -0.6378 31.6883 42.9437 -Arial_Bold.ttf 55 8 27.2857 42.2143 70 / -0.1038 17.6883 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 71 C -0.9068 36.6537 42.7294 -Arial_Bold.ttf 55 8 27.2857 42.2143 72 * 0.0274 19.7424 19.1320 -Arial_Bold.ttf 55 8 27.2857 42.2143 73 ” 0.3062 22.4719 17.6883 -Arial_Bold.ttf 55 8 27.2857 42.2143 74 ? 0.0048 30.4589 42.2143 -Arial_Bold.ttf 55 8 27.2857 42.2143 75 { -0.7395 19.6472 53.9697 -Arial_Bold.ttf 55 8 27.2857 42.2143 76 } -0.2440 19.6472 53.9697 -Arial_Bold.ttf 55 8 27.2857 42.2143 77 , 33.8615 8.8680 17.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 78 I -0.1060 8.1385 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 79 ° -0.2917 18.0844 18.0844 -Arial_Bold.ttf 55 8 27.2857 42.2143 80 K -0.0298 37.7641 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 81 H -0.0676 33.3463 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 82 q 10.1702 29.5628 43.4437 -Arial_Bold.ttf 55 8 27.2857 42.2143 83 & -0.2560 38.8117 42.4286 -Arial_Bold.ttf 55 8 27.2857 42.2143 84 ’ 0.1326 8.8680 17.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 85 [ 0.0202 15.2294 53.5411 -Arial_Bold.ttf 55 8 27.2857 42.2143 86 - 23.6829 15.7294 6.9091 -Arial_Bold.ttf 55 8 27.2857 42.2143 87 Y -0.1871 41.0563 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 88 Q -0.7203 41.7857 46.6472 -Arial_Bold.ttf 55 8 27.2857 42.2143 89 " -0.2429 21.5909 15.2294 -Arial_Bold.ttf 55 8 27.2857 42.2143 90 ! 0.1060 8.1385 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 91 x 11.1526 32.4177 30.6732 -Arial_Bold.ttf 55 8 27.2857 42.2143 92 ) 0.0350 14.0000 53.5411 -Arial_Bold.ttf 55 8 27.2857 42.2143 93 = 11.1614 29.2294 19.2835 -Arial_Bold.ttf 55 8 27.2857 42.2143 94 + 7.1508 28.8961 28.8961 -Arial_Bold.ttf 55 8 27.2857 42.2143 95 X 0.0492 38.9935 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 96 » 13.4932 26.9524 26.5563 -Arial_Bold.ttf 55 8 27.2857 42.2143 97 ' -0.0038 8.1385 15.2294 -Arial_Bold.ttf 55 8 27.2857 42.2143 98 ¢ -0.0583 28.7294 54.4372 -Arial_Bold.ttf 55 8 27.2857 42.2143 99 Z 0.2675 34.4805 42.0000 -Arial_Bold.ttf 55 8 27.2857 42.2143 100 > 5.4654 28.0000 31.9026 -Arial_Bold.ttf 55 8 27.2857 42.2143 101 ® -0.2824 43.2294 42.4286 -Arial_Bold.ttf 55 8 27.2857 42.2143 102 © -0.3728 43.9589 42.4286 -Arial_Bold.ttf 55 8 27.2857 42.2143 103 ] 0.3197 15.2294 53.5411 -Arial_Bold.ttf 55 8 27.2857 42.2143 104 é -0.6759 29.4113 42.8961 -Arial_Bold.ttf 55 8 27.2857 42.2143 105 z 11.2268 26.7706 30.6732 -Arial_Bold.ttf 55 8 27.2857 42.2143 106 _ 47.6979 33.4654 5.8615 -Arial_Bold.ttf 55 8 27.2857 42.2143 107 ¥ -0.1010 30.2056 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 1 t 0.5779 18.1169 41.3810 -Arial_Bold.ttf 56 0 27.2857 42.2143 2 h 0.1578 27.7857 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 3 a 10.2286 28.8333 32.1169 -Arial_Bold.ttf 56 0 27.2857 42.2143 4 n 10.0238 27.7857 31.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 5 P -0.2304 32.0844 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 6 o 10.0246 31.0065 32.1169 -Arial_Bold.ttf 56 0 27.2857 42.2143 7 e 9.6615 29.4113 32.1169 -Arial_Bold.ttf 56 0 27.2857 42.2143 8 : 11.5140 8.1385 30.6732 -Arial_Bold.ttf 56 0 27.2857 42.2143 9 r 9.8077 19.8615 31.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 10 l -0.2911 8.1385 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 11 i 0.1969 8.1385 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 12 1 0.0774 18.2359 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 13 | -0.0038 5.8615 54.5563 -Arial_Bold.ttf 56 0 27.2857 42.2143 14 N 0.0988 33.3463 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 15 f 0.1502 20.6948 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 16 g 9.8769 29.5628 43.6580 -Arial_Bold.ttf 56 0 27.2857 42.2143 17 d 0.1690 29.5628 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 18 W -0.2600 54.7706 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 19 s 9.9609 28.3333 32.1169 -Arial_Bold.ttf 56 0 27.2857 42.2143 20 c 10.2754 27.5000 32.1169 -Arial_Bold.ttf 56 0 27.2857 42.2143 21 u 11.0383 27.7857 30.8874 -Arial_Bold.ttf 56 0 27.2857 42.2143 22 3 -0.1060 27.2857 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 23 ~ 16.0505 30.4589 10.8117 -Arial_Bold.ttf 56 0 27.2857 42.2143 24 # 0.1429 30.3874 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 25 O -1.2622 40.3420 43.4589 -Arial_Bold.ttf 56 0 27.2857 42.2143 26 ` -0.0740 12.7706 8.3203 -Arial_Bold.ttf 56 0 27.2857 42.2143 27 @ -0.3455 55.2706 56.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 28 F 0.1022 29.0152 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 29 S -0.4078 33.8615 43.4589 -Arial_Bold.ttf 56 0 27.2857 42.2143 30 p 10.0877 29.5628 43.4437 -Arial_Bold.ttf 56 0 27.2857 42.2143 31 “ -0.4679 22.4719 17.6883 -Arial_Bold.ttf 56 0 27.2857 42.2143 32 % -0.0603 44.9329 43.6580 -Arial_Bold.ttf 56 0 27.2857 42.2143 33 £ -0.0331 31.1883 42.4286 -Arial_Bold.ttf 56 0 27.2857 42.2143 34 . 33.9865 8.1385 8.1385 -Arial_Bold.ttf 56 0 27.2857 42.2143 35 2 0.0736 27.2857 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 36 5 0.0310 28.0000 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 37 m 9.7031 44.6104 31.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 38 V -0.0214 38.4935 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 39 6 -0.0969 27.2857 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 40 w 11.4268 45.5065 30.6732 -Arial_Bold.ttf 56 0 27.2857 42.2143 41 T -0.0560 33.2511 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 42 M -0.0476 39.5584 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 43 G -0.8433 39.1126 43.4589 -Arial_Bold.ttf 56 0 27.2857 42.2143 44 b -0.1571 29.5628 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 45 9 -0.0345 27.2857 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 46 ; 10.9988 8.8680 40.4372 -Arial_Bold.ttf 56 0 27.2857 42.2143 47 D -0.3048 35.0909 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 48 L -0.1371 29.9113 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 49 y 11.2040 31.6883 42.4286 -Arial_Bold.ttf 56 0 27.2857 42.2143 50 ‘ -0.0091 8.8680 17.6883 -Arial_Bold.ttf 56 0 27.2857 42.2143 51 \ 0.0000 17.6883 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 52 R 0.3645 37.0498 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 53 < 5.6532 28.0000 31.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 54 4 0.0621 29.9589 41.7857 -Arial_Bold.ttf 56 0 27.2857 42.2143 55 8 -0.0988 27.2857 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 56 0 -0.6402 27.2857 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 57 A 0.0774 40.5887 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 58 E 0.0657 32.0844 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 59 B 0.4306 35.0909 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 60 v 11.1137 31.6883 30.6732 -Arial_Bold.ttf 56 0 27.2857 42.2143 61 k -0.2548 28.5152 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 62 J 0.1228 26.9524 42.7294 -Arial_Bold.ttf 56 0 27.2857 42.2143 63 U -0.2788 33.3463 42.7294 -Arial_Bold.ttf 56 0 27.2857 42.2143 64 j -0.0226 15.2294 53.7554 -Arial_Bold.ttf 56 0 27.2857 42.2143 65 ( 0.3705 14.0000 53.5411 -Arial_Bold.ttf 56 0 27.2857 42.2143 66 7 0.0421 27.2857 41.7857 -Arial_Bold.ttf 56 0 27.2857 42.2143 67 § -0.2345 28.5152 54.7706 -Arial_Bold.ttf 56 0 27.2857 42.2143 68 $ -3.1227 27.7857 50.8680 -Arial_Bold.ttf 56 0 27.2857 42.2143 69 € -0.6340 31.6883 42.9437 -Arial_Bold.ttf 56 0 27.2857 42.2143 70 / -0.0655 17.6883 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 71 C -0.8122 36.6537 42.7294 -Arial_Bold.ttf 56 0 27.2857 42.2143 72 * -0.1683 19.7424 19.1320 -Arial_Bold.ttf 56 0 27.2857 42.2143 73 ” 0.0740 22.4719 17.6883 -Arial_Bold.ttf 56 0 27.2857 42.2143 74 ? -0.2762 30.4589 42.2143 -Arial_Bold.ttf 56 0 27.2857 42.2143 75 { -0.1921 19.6472 53.9697 -Arial_Bold.ttf 56 0 27.2857 42.2143 76 } -0.1369 19.6472 53.9697 -Arial_Bold.ttf 56 0 27.2857 42.2143 77 , 33.7543 8.8680 17.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 78 I -0.2528 8.1385 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 79 ° -0.4399 18.0844 18.0844 -Arial_Bold.ttf 56 0 27.2857 42.2143 80 K 0.0455 37.7641 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 81 H -0.0012 33.3463 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 82 q 10.1415 29.5628 43.4437 -Arial_Bold.ttf 56 0 27.2857 42.2143 83 & -0.0629 38.8117 42.4286 -Arial_Bold.ttf 56 0 27.2857 42.2143 84 ’ 0.0500 8.8680 17.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 85 [ 0.1514 15.2294 53.5411 -Arial_Bold.ttf 56 0 27.2857 42.2143 86 - 23.6236 15.7294 6.9091 -Arial_Bold.ttf 56 0 27.2857 42.2143 87 Y 0.1752 41.0563 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 88 Q -0.5521 41.7857 46.6472 -Arial_Bold.ttf 56 0 27.2857 42.2143 89 " 0.0560 21.5909 15.2294 -Arial_Bold.ttf 56 0 27.2857 42.2143 90 ! -0.0162 8.1385 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 91 x 11.1352 32.4177 30.6732 -Arial_Bold.ttf 56 0 27.2857 42.2143 92 ) 0.0083 14.0000 53.5411 -Arial_Bold.ttf 56 0 27.2857 42.2143 93 = 11.2776 29.2294 19.2835 -Arial_Bold.ttf 56 0 27.2857 42.2143 94 + 7.6272 28.8961 28.8961 -Arial_Bold.ttf 56 0 27.2857 42.2143 95 X 0.0252 38.9935 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 96 » 13.8617 26.9524 26.5563 -Arial_Bold.ttf 56 0 27.2857 42.2143 97 ' -0.0819 8.1385 15.2294 -Arial_Bold.ttf 56 0 27.2857 42.2143 98 ¢ -0.1117 28.7294 54.4372 -Arial_Bold.ttf 56 0 27.2857 42.2143 99 Z 0.2060 34.4805 42.0000 -Arial_Bold.ttf 56 0 27.2857 42.2143 100 > 5.6630 28.0000 31.9026 -Arial_Bold.ttf 56 0 27.2857 42.2143 101 ® -0.2143 43.2294 42.4286 -Arial_Bold.ttf 56 0 27.2857 42.2143 102 © -0.3260 43.9589 42.4286 -Arial_Bold.ttf 56 0 27.2857 42.2143 103 ] 0.1607 15.2294 53.5411 -Arial_Bold.ttf 56 0 27.2857 42.2143 104 é -1.1094 29.4113 42.8961 -Arial_Bold.ttf 56 0 27.2857 42.2143 105 z 11.6018 26.7706 30.6732 -Arial_Bold.ttf 56 0 27.2857 42.2143 106 _ 47.2203 33.4654 5.8615 -Arial_Bold.ttf 56 0 27.2857 42.2143 107 ¥ -0.0143 30.2056 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 1 t 0.9174 18.1169 41.3810 -Arial_Bold.ttf 57 A 40.5887 42.0000 2 h -0.0333 27.7857 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 3 a 10.2321 28.8333 32.1169 -Arial_Bold.ttf 57 A 40.5887 42.0000 4 n 9.8986 27.7857 31.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 5 P -0.0893 32.0844 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 6 o 10.1421 31.0065 32.1169 -Arial_Bold.ttf 57 A 40.5887 42.0000 7 e 10.1488 29.4113 32.1169 -Arial_Bold.ttf 57 A 40.5887 42.0000 8 : 11.2828 8.1385 30.6732 -Arial_Bold.ttf 57 A 40.5887 42.0000 9 r 10.1141 19.8615 31.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 10 l -0.2457 8.1385 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 11 i 0.1143 8.1385 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 12 1 0.1409 18.2359 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 13 | 0.0752 5.8615 54.5563 -Arial_Bold.ttf 57 A 40.5887 42.0000 14 N 0.1514 33.3463 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 15 f -0.1448 20.6948 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 16 g 10.1748 29.5628 43.6580 -Arial_Bold.ttf 57 A 40.5887 42.0000 17 d -0.2631 29.5628 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 18 W 0.0903 54.7706 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 19 s 10.0700 28.3333 32.1169 -Arial_Bold.ttf 57 A 40.5887 42.0000 20 c 9.9367 27.5000 32.1169 -Arial_Bold.ttf 57 A 40.5887 42.0000 21 u 11.6763 27.7857 30.8874 -Arial_Bold.ttf 57 A 40.5887 42.0000 22 3 0.0117 27.2857 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 23 ~ 15.8529 30.4589 10.8117 -Arial_Bold.ttf 57 A 40.5887 42.0000 24 # 0.0357 30.3874 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 25 O -0.7521 40.3420 43.4589 -Arial_Bold.ttf 57 A 40.5887 42.0000 26 ` 0.0000 12.7706 8.3203 -Arial_Bold.ttf 57 A 40.5887 42.0000 27 @ -0.4871 55.2706 56.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 28 F 0.1135 29.0152 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 29 S -0.5247 33.8615 43.4589 -Arial_Bold.ttf 57 A 40.5887 42.0000 30 p 10.2671 29.5628 43.4437 -Arial_Bold.ttf 57 A 40.5887 42.0000 31 “ -0.1623 22.4719 17.6883 -Arial_Bold.ttf 57 A 40.5887 42.0000 32 % -0.2702 44.9329 43.6580 -Arial_Bold.ttf 57 A 40.5887 42.0000 33 £ -0.1188 31.1883 42.4286 -Arial_Bold.ttf 57 A 40.5887 42.0000 34 . 34.0031 8.1385 8.1385 -Arial_Bold.ttf 57 A 40.5887 42.0000 35 2 0.1526 27.2857 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 36 5 0.1353 28.0000 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 37 m 9.9915 44.6104 31.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 38 V -0.1274 38.4935 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 39 6 0.2821 27.2857 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 40 w 11.4387 45.5065 30.6732 -Arial_Bold.ttf 57 A 40.5887 42.0000 41 T 0.0083 33.2511 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 42 M 0.1631 39.5584 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 43 G -0.5028 39.1126 43.4589 -Arial_Bold.ttf 57 A 40.5887 42.0000 44 b 0.1481 29.5628 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 45 9 0.0976 27.2857 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 46 ; 11.3697 8.8680 40.4372 -Arial_Bold.ttf 57 A 40.5887 42.0000 47 D -0.0240 35.0909 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 48 L -0.0162 29.9113 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 49 y 11.2971 31.6883 42.4286 -Arial_Bold.ttf 57 A 40.5887 42.0000 50 ‘ 0.1228 8.8680 17.6883 -Arial_Bold.ttf 57 A 40.5887 42.0000 51 \ -0.0645 17.6883 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 52 R 0.2619 37.0498 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 53 < 5.7979 28.0000 31.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 54 4 0.2669 29.9589 41.7857 -Arial_Bold.ttf 57 A 40.5887 42.0000 55 8 -0.2631 27.2857 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 56 0 0.2957 27.2857 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 57 A -0.0481 40.5887 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 58 E -0.2137 32.0844 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 59 B -0.0645 35.0909 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 60 v 11.1175 31.6883 30.6732 -Arial_Bold.ttf 57 A 40.5887 42.0000 61 k 0.0929 28.5152 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 62 J 0.0306 26.9524 42.7294 -Arial_Bold.ttf 57 A 40.5887 42.0000 63 U -0.1524 33.3463 42.7294 -Arial_Bold.ttf 57 A 40.5887 42.0000 64 j 0.2228 15.2294 53.7554 -Arial_Bold.ttf 57 A 40.5887 42.0000 65 ( -0.0522 14.0000 53.5411 -Arial_Bold.ttf 57 A 40.5887 42.0000 66 7 0.2538 27.2857 41.7857 -Arial_Bold.ttf 57 A 40.5887 42.0000 67 § -0.2702 28.5152 54.7706 -Arial_Bold.ttf 57 A 40.5887 42.0000 68 $ -2.9448 27.7857 50.8680 -Arial_Bold.ttf 57 A 40.5887 42.0000 69 € -0.5342 31.6883 42.9437 -Arial_Bold.ttf 57 A 40.5887 42.0000 70 / 0.1319 17.6883 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 71 C -0.5953 36.6537 42.7294 -Arial_Bold.ttf 57 A 40.5887 42.0000 72 * 0.0617 19.7424 19.1320 -Arial_Bold.ttf 57 A 40.5887 42.0000 73 ” -0.1917 22.4719 17.6883 -Arial_Bold.ttf 57 A 40.5887 42.0000 74 ? -0.3962 30.4589 42.2143 -Arial_Bold.ttf 57 A 40.5887 42.0000 75 { -0.0162 19.6472 53.9697 -Arial_Bold.ttf 57 A 40.5887 42.0000 76 } -0.5548 19.6472 53.9697 -Arial_Bold.ttf 57 A 40.5887 42.0000 77 , 33.9843 8.8680 17.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 78 I -0.1262 8.1385 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 79 ° -0.0452 18.0844 18.0844 -Arial_Bold.ttf 57 A 40.5887 42.0000 80 K 0.0312 37.7641 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 81 H -0.1707 33.3463 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 82 q 9.9043 29.5628 43.4437 -Arial_Bold.ttf 57 A 40.5887 42.0000 83 & 0.1133 38.8117 42.4286 -Arial_Bold.ttf 57 A 40.5887 42.0000 84 ’ -0.1093 8.8680 17.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 85 [ 0.2683 15.2294 53.5411 -Arial_Bold.ttf 57 A 40.5887 42.0000 86 - 24.0734 15.7294 6.9091 -Arial_Bold.ttf 57 A 40.5887 42.0000 87 Y 0.0583 41.0563 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 88 Q -0.5044 41.7857 46.6472 -Arial_Bold.ttf 57 A 40.5887 42.0000 89 " 0.1766 21.5909 15.2294 -Arial_Bold.ttf 57 A 40.5887 42.0000 90 ! -0.1038 8.1385 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 91 x 11.0578 32.4177 30.6732 -Arial_Bold.ttf 57 A 40.5887 42.0000 92 ) -0.2048 14.0000 53.5411 -Arial_Bold.ttf 57 A 40.5887 42.0000 93 = 11.2511 29.2294 19.2835 -Arial_Bold.ttf 57 A 40.5887 42.0000 94 + 7.2924 28.8961 28.8961 -Arial_Bold.ttf 57 A 40.5887 42.0000 95 X -0.1879 38.9935 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 96 » 13.4277 26.9524 26.5563 -Arial_Bold.ttf 57 A 40.5887 42.0000 97 ' -0.1214 8.1385 15.2294 -Arial_Bold.ttf 57 A 40.5887 42.0000 98 ¢ -0.0350 28.7294 54.4372 -Arial_Bold.ttf 57 A 40.5887 42.0000 99 Z -0.0202 34.4805 42.0000 -Arial_Bold.ttf 57 A 40.5887 42.0000 100 > 5.2366 28.0000 31.9026 -Arial_Bold.ttf 57 A 40.5887 42.0000 101 ® -0.1508 43.2294 42.4286 -Arial_Bold.ttf 57 A 40.5887 42.0000 102 © -0.1440 43.9589 42.4286 -Arial_Bold.ttf 57 A 40.5887 42.0000 103 ] -0.0357 15.2294 53.5411 -Arial_Bold.ttf 57 A 40.5887 42.0000 104 é -0.5628 29.4113 42.8961 -Arial_Bold.ttf 57 A 40.5887 42.0000 105 z 11.5346 26.7706 30.6732 -Arial_Bold.ttf 57 A 40.5887 42.0000 106 _ 47.3465 33.4654 5.8615 -Arial_Bold.ttf 57 A 40.5887 42.0000 107 ¥ 0.0143 30.2056 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 1 t 0.8310 18.1169 41.3810 -Arial_Bold.ttf 58 E 32.0844 42.0000 2 h -0.5042 27.7857 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 3 a 10.0291 28.8333 32.1169 -Arial_Bold.ttf 58 E 32.0844 42.0000 4 n 10.1200 27.7857 31.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 5 P 0.1631 32.0844 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 6 o 10.2045 31.0065 32.1169 -Arial_Bold.ttf 58 E 32.0844 42.0000 7 e 9.8017 29.4113 32.1169 -Arial_Bold.ttf 58 E 32.0844 42.0000 8 : 11.5106 8.1385 30.6732 -Arial_Bold.ttf 58 E 32.0844 42.0000 9 r 10.5167 19.8615 31.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 10 l 0.1405 8.1385 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 11 i -0.2198 8.1385 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 12 1 -0.1455 18.2359 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 13 | -0.3405 5.8615 54.5563 -Arial_Bold.ttf 58 E 32.0844 42.0000 14 N -0.0579 33.3463 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 15 f -0.1393 20.6948 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 16 g 9.8510 29.5628 43.6580 -Arial_Bold.ttf 58 E 32.0844 42.0000 17 d 0.1690 29.5628 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 18 W -0.1955 54.7706 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 19 s 10.0369 28.3333 32.1169 -Arial_Bold.ttf 58 E 32.0844 42.0000 20 c 9.8246 27.5000 32.1169 -Arial_Bold.ttf 58 E 32.0844 42.0000 21 u 11.0526 27.7857 30.8874 -Arial_Bold.ttf 58 E 32.0844 42.0000 22 3 -0.1812 27.2857 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 23 ~ 16.1904 30.4589 10.8117 -Arial_Bold.ttf 58 E 32.0844 42.0000 24 # -0.2000 30.3874 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 25 O -0.7152 40.3420 43.4589 -Arial_Bold.ttf 58 E 32.0844 42.0000 26 ` 0.0665 12.7706 8.3203 -Arial_Bold.ttf 58 E 32.0844 42.0000 27 @ 0.0464 55.2706 56.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 28 F 0.0440 29.0152 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 29 S -0.8092 33.8615 43.4589 -Arial_Bold.ttf 58 E 32.0844 42.0000 30 p 10.3676 29.5628 43.4437 -Arial_Bold.ttf 58 E 32.0844 42.0000 31 “ -0.1714 22.4719 17.6883 -Arial_Bold.ttf 58 E 32.0844 42.0000 32 % -0.4728 44.9329 43.6580 -Arial_Bold.ttf 58 E 32.0844 42.0000 33 £ -0.3074 31.1883 42.4286 -Arial_Bold.ttf 58 E 32.0844 42.0000 34 . 33.6900 8.1385 8.1385 -Arial_Bold.ttf 58 E 32.0844 42.0000 35 2 0.0955 27.2857 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 36 5 0.2486 28.0000 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 37 m 9.9648 44.6104 31.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 38 V -0.5107 38.4935 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 39 6 0.1469 27.2857 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 40 w 11.6140 45.5065 30.6732 -Arial_Bold.ttf 58 E 32.0844 42.0000 41 T 0.2818 33.2511 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 42 M -0.0917 39.5584 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 43 G -0.6735 39.1126 43.4589 -Arial_Bold.ttf 58 E 32.0844 42.0000 44 b 0.2488 29.5628 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 45 9 -0.0409 27.2857 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 46 ; 11.2397 8.8680 40.4372 -Arial_Bold.ttf 58 E 32.0844 42.0000 47 D 0.0759 35.0909 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 48 L 0.1393 29.9113 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 49 y 11.3840 31.6883 42.4286 -Arial_Bold.ttf 58 E 32.0844 42.0000 50 ‘ -0.1623 8.8680 17.6883 -Arial_Bold.ttf 58 E 32.0844 42.0000 51 \ 0.3016 17.6883 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 52 R 0.2548 37.0498 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 53 < 5.5868 28.0000 31.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 54 4 0.1786 29.9589 41.7857 -Arial_Bold.ttf 58 E 32.0844 42.0000 55 8 -0.0417 27.2857 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 56 0 0.1060 27.2857 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 57 A -0.2026 40.5887 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 58 E -0.2123 32.0844 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 59 B 0.2307 35.0909 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 60 v 11.2495 31.6883 30.6732 -Arial_Bold.ttf 58 E 32.0844 42.0000 61 k -0.0557 28.5152 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 62 J -0.1026 26.9524 42.7294 -Arial_Bold.ttf 58 E 32.0844 42.0000 63 U -0.1034 33.3463 42.7294 -Arial_Bold.ttf 58 E 32.0844 42.0000 64 j -0.2183 15.2294 53.7554 -Arial_Bold.ttf 58 E 32.0844 42.0000 65 ( 0.0131 14.0000 53.5411 -Arial_Bold.ttf 58 E 32.0844 42.0000 66 7 0.1538 27.2857 41.7857 -Arial_Bold.ttf 58 E 32.0844 42.0000 67 § -0.2014 28.5152 54.7706 -Arial_Bold.ttf 58 E 32.0844 42.0000 68 $ -2.9589 27.7857 50.8680 -Arial_Bold.ttf 58 E 32.0844 42.0000 69 € -0.6899 31.6883 42.9437 -Arial_Bold.ttf 58 E 32.0844 42.0000 70 / 0.2228 17.6883 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 71 C -0.8009 36.6537 42.7294 -Arial_Bold.ttf 58 E 32.0844 42.0000 72 * -0.2885 19.7424 19.1320 -Arial_Bold.ttf 58 E 32.0844 42.0000 73 ” -0.0502 22.4719 17.6883 -Arial_Bold.ttf 58 E 32.0844 42.0000 74 ? -0.1403 30.4589 42.2143 -Arial_Bold.ttf 58 E 32.0844 42.0000 75 { -0.0674 19.6472 53.9697 -Arial_Bold.ttf 58 E 32.0844 42.0000 76 } -0.5840 19.6472 53.9697 -Arial_Bold.ttf 58 E 32.0844 42.0000 77 , 33.8934 8.8680 17.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 78 I 0.2040 8.1385 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 79 ° -0.2657 18.0844 18.0844 -Arial_Bold.ttf 58 E 32.0844 42.0000 80 K -0.4062 37.7641 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 81 H 0.2123 33.3463 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 82 q 9.9603 29.5628 43.4437 -Arial_Bold.ttf 58 E 32.0844 42.0000 83 & -0.1407 38.8117 42.4286 -Arial_Bold.ttf 58 E 32.0844 42.0000 84 ’ 0.0060 8.8680 17.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 85 [ -0.1319 15.2294 53.5411 -Arial_Bold.ttf 58 E 32.0844 42.0000 86 - 23.7835 15.7294 6.9091 -Arial_Bold.ttf 58 E 32.0844 42.0000 87 Y 0.0508 41.0563 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 88 Q -0.5892 41.7857 46.6472 -Arial_Bold.ttf 58 E 32.0844 42.0000 89 " -0.1762 21.5909 15.2294 -Arial_Bold.ttf 58 E 32.0844 42.0000 90 ! -0.3540 8.1385 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 91 x 11.0266 32.4177 30.6732 -Arial_Bold.ttf 58 E 32.0844 42.0000 92 ) -0.0091 14.0000 53.5411 -Arial_Bold.ttf 58 E 32.0844 42.0000 93 = 11.1768 29.2294 19.2835 -Arial_Bold.ttf 58 E 32.0844 42.0000 94 + 6.9881 28.8961 28.8961 -Arial_Bold.ttf 58 E 32.0844 42.0000 95 X 0.2742 38.9935 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 96 » 13.4412 26.9524 26.5563 -Arial_Bold.ttf 58 E 32.0844 42.0000 97 ' -0.1690 8.1385 15.2294 -Arial_Bold.ttf 58 E 32.0844 42.0000 98 ¢ 0.0000 28.7294 54.4372 -Arial_Bold.ttf 58 E 32.0844 42.0000 99 Z -0.0157 34.4805 42.0000 -Arial_Bold.ttf 58 E 32.0844 42.0000 100 > 5.0983 28.0000 31.9026 -Arial_Bold.ttf 58 E 32.0844 42.0000 101 ® -0.0331 43.2294 42.4286 -Arial_Bold.ttf 58 E 32.0844 42.0000 102 © -0.1149 43.9589 42.4286 -Arial_Bold.ttf 58 E 32.0844 42.0000 103 ] -0.0508 15.2294 53.5411 -Arial_Bold.ttf 58 E 32.0844 42.0000 104 é -0.7116 29.4113 42.8961 -Arial_Bold.ttf 58 E 32.0844 42.0000 105 z 11.3790 26.7706 30.6732 -Arial_Bold.ttf 58 E 32.0844 42.0000 106 _ 47.5751 33.4654 5.8615 -Arial_Bold.ttf 58 E 32.0844 42.0000 107 ¥ -0.3405 30.2056 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 1 t 1.0335 18.1169 41.3810 -Arial_Bold.ttf 59 B 35.0909 42.0000 2 h -0.2048 27.7857 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 3 a 10.1286 28.8333 32.1169 -Arial_Bold.ttf 59 B 35.0909 42.0000 4 n 9.9629 27.7857 31.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 5 P -0.1631 32.0844 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 6 o 10.2534 31.0065 32.1169 -Arial_Bold.ttf 59 B 35.0909 42.0000 7 e 10.1331 29.4113 32.1169 -Arial_Bold.ttf 59 B 35.0909 42.0000 8 : 11.3104 8.1385 30.6732 -Arial_Bold.ttf 59 B 35.0909 42.0000 9 r 10.2429 19.8615 31.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 10 l 0.0014 8.1385 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 11 i 0.1333 8.1385 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 12 1 -0.1566 18.2359 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 13 | 0.0045 5.8615 54.5563 -Arial_Bold.ttf 59 B 35.0909 42.0000 14 N 0.2697 33.3463 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 15 f -0.1786 20.6948 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 16 g 9.9668 29.5628 43.6580 -Arial_Bold.ttf 59 B 35.0909 42.0000 17 d -0.2280 29.5628 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 18 W 0.1431 54.7706 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 19 s 10.0996 28.3333 32.1169 -Arial_Bold.ttf 59 B 35.0909 42.0000 20 c 9.9603 27.5000 32.1169 -Arial_Bold.ttf 59 B 35.0909 42.0000 21 u 11.6971 27.7857 30.8874 -Arial_Bold.ttf 59 B 35.0909 42.0000 22 3 -0.1045 27.2857 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 23 ~ 15.7755 30.4589 10.8117 -Arial_Bold.ttf 59 B 35.0909 42.0000 24 # -0.1107 30.3874 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 25 O -0.4014 40.3420 43.4589 -Arial_Bold.ttf 59 B 35.0909 42.0000 26 ` 0.0865 12.7706 8.3203 -Arial_Bold.ttf 59 B 35.0909 42.0000 27 @ -0.0355 55.2706 56.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 28 F 0.0924 29.0152 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 29 S -0.7445 33.8615 43.4589 -Arial_Bold.ttf 59 B 35.0909 42.0000 30 p 10.0760 29.5628 43.4437 -Arial_Bold.ttf 59 B 35.0909 42.0000 31 “ 0.0053 22.4719 17.6883 -Arial_Bold.ttf 59 B 35.0909 42.0000 32 % -0.0369 44.9329 43.6580 -Arial_Bold.ttf 59 B 35.0909 42.0000 33 £ -0.2417 31.1883 42.4286 -Arial_Bold.ttf 59 B 35.0909 42.0000 34 . 33.9145 8.1385 8.1385 -Arial_Bold.ttf 59 B 35.0909 42.0000 35 2 -0.1043 27.2857 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 36 5 0.4131 28.0000 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 37 m 9.9377 44.6104 31.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 38 V -0.1014 38.4935 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 39 6 -0.2397 27.2857 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 40 w 11.0745 45.5065 30.6732 -Arial_Bold.ttf 59 B 35.0909 42.0000 41 T -0.1871 33.2511 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 42 M -0.0510 39.5584 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 43 G -0.4747 39.1126 43.4589 -Arial_Bold.ttf 59 B 35.0909 42.0000 44 b 0.0097 29.5628 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 45 9 0.1379 27.2857 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 46 ; 11.1518 8.8680 40.4372 -Arial_Bold.ttf 59 B 35.0909 42.0000 47 D 0.0000 35.0909 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 48 L -0.2417 29.9113 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 49 y 11.2516 31.6883 42.4286 -Arial_Bold.ttf 59 B 35.0909 42.0000 50 ‘ 0.1617 8.8680 17.6883 -Arial_Bold.ttf 59 B 35.0909 42.0000 51 \ 0.1190 17.6883 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 52 R -0.0879 37.0498 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 53 < 5.4418 28.0000 31.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 54 4 0.0593 29.9589 41.7857 -Arial_Bold.ttf 59 B 35.0909 42.0000 55 8 0.1833 27.2857 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 56 0 0.0833 27.2857 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 57 A 0.0395 40.5887 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 58 E -0.0500 32.0844 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 59 B -0.0728 35.0909 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 60 v 10.9447 31.6883 30.6732 -Arial_Bold.ttf 59 B 35.0909 42.0000 61 k -0.0083 28.5152 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 62 J 0.0045 26.9524 42.7294 -Arial_Bold.ttf 59 B 35.0909 42.0000 63 U -0.0365 33.3463 42.7294 -Arial_Bold.ttf 59 B 35.0909 42.0000 64 j -0.1464 15.2294 53.7554 -Arial_Bold.ttf 59 B 35.0909 42.0000 65 ( -0.0000 14.0000 53.5411 -Arial_Bold.ttf 59 B 35.0909 42.0000 66 7 0.1317 27.2857 41.7857 -Arial_Bold.ttf 59 B 35.0909 42.0000 67 § -0.0688 28.5152 54.7706 -Arial_Bold.ttf 59 B 35.0909 42.0000 68 $ -3.0968 27.7857 50.8680 -Arial_Bold.ttf 59 B 35.0909 42.0000 69 € -0.5551 31.6883 42.9437 -Arial_Bold.ttf 59 B 35.0909 42.0000 70 / -0.0538 17.6883 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 71 C -0.5318 36.6537 42.7294 -Arial_Bold.ttf 59 B 35.0909 42.0000 72 * 0.0266 19.7424 19.1320 -Arial_Bold.ttf 59 B 35.0909 42.0000 73 ” 0.0365 22.4719 17.6883 -Arial_Bold.ttf 59 B 35.0909 42.0000 74 ? -0.1643 30.4589 42.2143 -Arial_Bold.ttf 59 B 35.0909 42.0000 75 { -0.0343 19.6472 53.9697 -Arial_Bold.ttf 59 B 35.0909 42.0000 76 } -0.2560 19.6472 53.9697 -Arial_Bold.ttf 59 B 35.0909 42.0000 77 , 34.0085 8.8680 17.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 78 I 0.0202 8.1385 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 79 ° 0.0048 18.0844 18.0844 -Arial_Bold.ttf 59 B 35.0909 42.0000 80 K 0.1333 37.7641 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 81 H 0.3183 33.3463 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 82 q 10.3619 29.5628 43.4437 -Arial_Bold.ttf 59 B 35.0909 42.0000 83 & -0.2429 38.8117 42.4286 -Arial_Bold.ttf 59 B 35.0909 42.0000 84 ’ -0.1071 8.8680 17.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 85 [ -0.0657 15.2294 53.5411 -Arial_Bold.ttf 59 B 35.0909 42.0000 86 - 23.7776 15.7294 6.9091 -Arial_Bold.ttf 59 B 35.0909 42.0000 87 Y -0.0635 41.0563 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 88 Q -0.6578 41.7857 46.6472 -Arial_Bold.ttf 59 B 35.0909 42.0000 89 " -0.2907 21.5909 15.2294 -Arial_Bold.ttf 59 B 35.0909 42.0000 90 ! -0.0155 8.1385 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 91 x 11.2564 32.4177 30.6732 -Arial_Bold.ttf 59 B 35.0909 42.0000 92 ) 0.0417 14.0000 53.5411 -Arial_Bold.ttf 59 B 35.0909 42.0000 93 = 11.4983 29.2294 19.2835 -Arial_Bold.ttf 59 B 35.0909 42.0000 94 + 7.0279 28.8961 28.8961 -Arial_Bold.ttf 59 B 35.0909 42.0000 95 X -0.3548 38.9935 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 96 » 13.5720 26.9524 26.5563 -Arial_Bold.ttf 59 B 35.0909 42.0000 97 ' 0.0383 8.1385 15.2294 -Arial_Bold.ttf 59 B 35.0909 42.0000 98 ¢ 0.0924 28.7294 54.4372 -Arial_Bold.ttf 59 B 35.0909 42.0000 99 Z 0.0260 34.4805 42.0000 -Arial_Bold.ttf 59 B 35.0909 42.0000 100 > 5.2425 28.0000 31.9026 -Arial_Bold.ttf 59 B 35.0909 42.0000 101 ® -0.2955 43.2294 42.4286 -Arial_Bold.ttf 59 B 35.0909 42.0000 102 © -0.3833 43.9589 42.4286 -Arial_Bold.ttf 59 B 35.0909 42.0000 103 ] 0.0629 15.2294 53.5411 -Arial_Bold.ttf 59 B 35.0909 42.0000 104 é -0.4364 29.4113 42.8961 -Arial_Bold.ttf 59 B 35.0909 42.0000 105 z 11.3195 26.7706 30.6732 -Arial_Bold.ttf 59 B 35.0909 42.0000 106 _ 47.4737 33.4654 5.8615 -Arial_Bold.ttf 59 B 35.0909 42.0000 107 ¥ 0.1018 30.2056 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 1 t -10.4669 18.1169 41.3810 -Arial_Bold.ttf 60 v 31.6883 30.6732 2 h -11.1175 27.7857 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 3 a -1.0163 28.8333 32.1169 -Arial_Bold.ttf 60 v 31.6883 30.6732 4 n -1.3530 27.7857 31.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 5 P -10.9745 32.0844 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 6 o -1.1437 31.0065 32.1169 -Arial_Bold.ttf 60 v 31.6883 30.6732 7 e -1.0709 29.4113 32.1169 -Arial_Bold.ttf 60 v 31.6883 30.6732 8 : -0.0736 8.1385 30.6732 -Arial_Bold.ttf 60 v 31.6883 30.6732 9 r -1.3346 19.8615 31.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 10 l -11.1768 8.1385 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 11 i -11.4921 8.1385 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 12 1 -11.1481 18.2359 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 13 | -11.3745 5.8615 54.5563 -Arial_Bold.ttf 60 v 31.6883 30.6732 14 N -10.9947 33.3463 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 15 f -11.5185 20.6948 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 16 g -1.4068 29.5628 43.6580 -Arial_Bold.ttf 60 v 31.6883 30.6732 17 d -11.3254 29.5628 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 18 W -11.3209 54.7706 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 19 s -1.0364 28.3333 32.1169 -Arial_Bold.ttf 60 v 31.6883 30.6732 20 c -0.9578 27.5000 32.1169 -Arial_Bold.ttf 60 v 31.6883 30.6732 21 u -0.1409 27.7857 30.8874 -Arial_Bold.ttf 60 v 31.6883 30.6732 22 3 -11.3820 27.2857 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 23 ~ 4.6753 30.4589 10.8117 -Arial_Bold.ttf 60 v 31.6883 30.6732 24 # -11.3314 30.3874 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 25 O -11.9744 40.3420 43.4589 -Arial_Bold.ttf 60 v 31.6883 30.6732 26 ` -11.3798 12.7706 8.3203 -Arial_Bold.ttf 60 v 31.6883 30.6732 27 @ -11.5359 55.2706 56.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 28 F -11.2501 29.0152 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 29 S -11.7718 33.8615 43.4589 -Arial_Bold.ttf 60 v 31.6883 30.6732 30 p -1.2899 29.5628 43.4437 -Arial_Bold.ttf 60 v 31.6883 30.6732 31 “ -11.5354 22.4719 17.6883 -Arial_Bold.ttf 60 v 31.6883 30.6732 32 % -11.3235 44.9329 43.6580 -Arial_Bold.ttf 60 v 31.6883 30.6732 33 £ -11.5114 31.1883 42.4286 -Arial_Bold.ttf 60 v 31.6883 30.6732 34 . 22.6301 8.1385 8.1385 -Arial_Bold.ttf 60 v 31.6883 30.6732 35 2 -11.2614 27.2857 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 36 5 -11.1054 28.0000 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 37 m -1.0937 44.6104 31.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 38 V -11.6913 38.4935 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 39 6 -11.5745 27.2857 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 40 w 0.0623 45.5065 30.6732 -Arial_Bold.ttf 60 v 31.6883 30.6732 41 T -11.2431 33.2511 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 42 M -11.4276 39.5584 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 43 G -12.1265 39.1126 43.4589 -Arial_Bold.ttf 60 v 31.6883 30.6732 44 b -11.4185 29.5628 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 45 9 -11.2716 27.2857 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 46 ; -0.1357 8.8680 40.4372 -Arial_Bold.ttf 60 v 31.6883 30.6732 47 D -11.3983 35.0909 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 48 L -11.5876 29.9113 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 49 y 0.1393 31.6883 42.4286 -Arial_Bold.ttf 60 v 31.6883 30.6732 50 ‘ -11.5997 8.8680 17.6883 -Arial_Bold.ttf 60 v 31.6883 30.6732 51 \ -11.3828 17.6883 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 52 R -11.2111 37.0498 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 53 < -5.6206 28.0000 31.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 54 4 -11.2528 29.9589 41.7857 -Arial_Bold.ttf 60 v 31.6883 30.6732 55 8 -11.5838 27.2857 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 56 0 -11.1552 27.2857 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 57 A -11.3247 40.5887 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 58 E -11.3282 32.0844 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 59 B -11.1957 35.0909 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 60 v -0.2788 31.6883 30.6732 -Arial_Bold.ttf 60 v 31.6883 30.6732 61 k -11.4685 28.5152 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 62 J -11.4042 26.9524 42.7294 -Arial_Bold.ttf 60 v 31.6883 30.6732 63 U -11.4535 33.3463 42.7294 -Arial_Bold.ttf 60 v 31.6883 30.6732 64 j -11.2352 15.2294 53.7554 -Arial_Bold.ttf 60 v 31.6883 30.6732 65 ( -11.3163 14.0000 53.5411 -Arial_Bold.ttf 60 v 31.6883 30.6732 66 7 -11.2215 27.2857 41.7857 -Arial_Bold.ttf 60 v 31.6883 30.6732 67 § -11.5292 28.5152 54.7706 -Arial_Bold.ttf 60 v 31.6883 30.6732 68 $ -14.5524 27.7857 50.8680 -Arial_Bold.ttf 60 v 31.6883 30.6732 69 € -12.0029 31.6883 42.9437 -Arial_Bold.ttf 60 v 31.6883 30.6732 70 / -11.3359 17.6883 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 71 C -12.0660 36.6537 42.7294 -Arial_Bold.ttf 60 v 31.6883 30.6732 72 * -11.2009 19.7424 19.1320 -Arial_Bold.ttf 60 v 31.6883 30.6732 73 ” -11.0766 22.4719 17.6883 -Arial_Bold.ttf 60 v 31.6883 30.6732 74 ? -11.5904 30.4589 42.2143 -Arial_Bold.ttf 60 v 31.6883 30.6732 75 { -11.5873 19.6472 53.9697 -Arial_Bold.ttf 60 v 31.6883 30.6732 76 } -11.7199 19.6472 53.9697 -Arial_Bold.ttf 60 v 31.6883 30.6732 77 , 22.5301 8.8680 17.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 78 I -11.6154 8.1385 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 79 ° -11.5254 18.0844 18.0844 -Arial_Bold.ttf 60 v 31.6883 30.6732 80 K -11.4268 37.7641 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 81 H -11.4185 33.3463 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 82 q -1.3197 29.5628 43.4437 -Arial_Bold.ttf 60 v 31.6883 30.6732 83 & -11.3548 38.8117 42.4286 -Arial_Bold.ttf 60 v 31.6883 30.6732 84 ’ -11.7882 8.8680 17.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 85 [ -11.3126 15.2294 53.5411 -Arial_Bold.ttf 60 v 31.6883 30.6732 86 - 12.3636 15.7294 6.9091 -Arial_Bold.ttf 60 v 31.6883 30.6732 87 Y -11.3983 41.0563 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 88 Q -11.9334 41.7857 46.6472 -Arial_Bold.ttf 60 v 31.6883 30.6732 89 " -11.6225 21.5909 15.2294 -Arial_Bold.ttf 60 v 31.6883 30.6732 90 ! -11.1614 8.1385 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 91 x -0.1002 32.4177 30.6732 -Arial_Bold.ttf 60 v 31.6883 30.6732 92 ) -11.2723 14.0000 53.5411 -Arial_Bold.ttf 60 v 31.6883 30.6732 93 = 0.0155 29.2294 19.2835 -Arial_Bold.ttf 60 v 31.6883 30.6732 94 + -4.3729 28.8961 28.8961 -Arial_Bold.ttf 60 v 31.6883 30.6732 95 X -11.5256 38.9935 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 96 » 2.0806 26.9524 26.5563 -Arial_Bold.ttf 60 v 31.6883 30.6732 97 ' -11.5459 8.1385 15.2294 -Arial_Bold.ttf 60 v 31.6883 30.6732 98 ¢ -11.2411 28.7294 54.4372 -Arial_Bold.ttf 60 v 31.6883 30.6732 99 Z -11.3066 34.4805 42.0000 -Arial_Bold.ttf 60 v 31.6883 30.6732 100 > -5.7124 28.0000 31.9026 -Arial_Bold.ttf 60 v 31.6883 30.6732 101 ® -11.8868 43.2294 42.4286 -Arial_Bold.ttf 60 v 31.6883 30.6732 102 © -11.9725 43.9589 42.4286 -Arial_Bold.ttf 60 v 31.6883 30.6732 103 ] -11.0278 15.2294 53.5411 -Arial_Bold.ttf 60 v 31.6883 30.6732 104 é -12.0582 29.4113 42.8961 -Arial_Bold.ttf 60 v 31.6883 30.6732 105 z -0.0357 26.7706 30.6732 -Arial_Bold.ttf 60 v 31.6883 30.6732 106 _ 36.2742 33.4654 5.8615 -Arial_Bold.ttf 60 v 31.6883 30.6732 107 ¥ -11.4185 30.2056 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 1 t 0.8847 18.1169 41.3810 -Arial_Bold.ttf 61 k 28.5152 42.0000 2 h 0.2607 27.7857 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 3 a 10.5990 28.8333 32.1169 -Arial_Bold.ttf 61 k 28.5152 42.0000 4 n 10.0422 27.7857 31.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 5 P -0.3133 32.0844 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 6 o 10.0065 31.0065 32.1169 -Arial_Bold.ttf 61 k 28.5152 42.0000 7 e 10.3060 29.4113 32.1169 -Arial_Bold.ttf 61 k 28.5152 42.0000 8 : 11.4618 8.1385 30.6732 -Arial_Bold.ttf 61 k 28.5152 42.0000 9 r 10.0531 19.8615 31.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 10 l -0.2481 8.1385 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 11 i 0.4238 8.1385 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 12 1 0.2210 18.2359 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 13 | 0.0260 5.8615 54.5563 -Arial_Bold.ttf 61 k 28.5152 42.0000 14 N -0.2228 33.3463 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 15 f -0.4905 20.6948 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 16 g 10.0974 29.5628 43.6580 -Arial_Bold.ttf 61 k 28.5152 42.0000 17 d -0.0522 29.5628 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 18 W 0.1750 54.7706 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 19 s 10.2845 28.3333 32.1169 -Arial_Bold.ttf 61 k 28.5152 42.0000 20 c 9.8798 27.5000 32.1169 -Arial_Bold.ttf 61 k 28.5152 42.0000 21 u 11.2209 27.7857 30.8874 -Arial_Bold.ttf 61 k 28.5152 42.0000 22 3 -0.2607 27.2857 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 23 ~ 16.1234 30.4589 10.8117 -Arial_Bold.ttf 61 k 28.5152 42.0000 24 # -0.1488 30.3874 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 25 O -0.9699 40.3420 43.4589 -Arial_Bold.ttf 61 k 28.5152 42.0000 26 ` 0.0917 12.7706 8.3203 -Arial_Bold.ttf 61 k 28.5152 42.0000 27 @ -0.3657 55.2706 56.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 28 F 0.0940 29.0152 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 29 S -0.7054 33.8615 43.4589 -Arial_Bold.ttf 61 k 28.5152 42.0000 30 p 10.0746 29.5628 43.4437 -Arial_Bold.ttf 61 k 28.5152 42.0000 31 “ 0.0631 22.4719 17.6883 -Arial_Bold.ttf 61 k 28.5152 42.0000 32 % -0.2657 44.9329 43.6580 -Arial_Bold.ttf 61 k 28.5152 42.0000 33 £ 0.0333 31.1883 42.4286 -Arial_Bold.ttf 61 k 28.5152 42.0000 34 . 33.7311 8.1385 8.1385 -Arial_Bold.ttf 61 k 28.5152 42.0000 35 2 -0.1008 27.2857 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 36 5 0.4712 28.0000 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 37 m 10.1391 44.6104 31.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 38 V -0.0605 38.4935 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 39 6 -0.0234 27.2857 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 40 w 11.1280 45.5065 30.6732 -Arial_Bold.ttf 61 k 28.5152 42.0000 41 T -0.4335 33.2511 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 42 M -0.0740 39.5584 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 43 G -0.6937 39.1126 43.4589 -Arial_Bold.ttf 61 k 28.5152 42.0000 44 b 0.2169 29.5628 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 45 9 -0.0000 27.2857 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 46 ; 11.4009 8.8680 40.4372 -Arial_Bold.ttf 61 k 28.5152 42.0000 47 D -0.1833 35.0909 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 48 L -0.0076 29.9113 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 49 y 11.1481 31.6883 42.4286 -Arial_Bold.ttf 61 k 28.5152 42.0000 50 ‘ -0.1969 8.8680 17.6883 -Arial_Bold.ttf 61 k 28.5152 42.0000 51 \ -0.0395 17.6883 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 52 R -0.1447 37.0498 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 53 < 5.6344 28.0000 31.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 54 4 0.1369 29.9589 41.7857 -Arial_Bold.ttf 61 k 28.5152 42.0000 55 8 0.0129 27.2857 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 56 0 0.0500 27.2857 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 57 A -0.2964 40.5887 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 58 E 0.2183 32.0844 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 59 B -0.0841 35.0909 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 60 v 11.2078 31.6883 30.6732 -Arial_Bold.ttf 61 k 28.5152 42.0000 61 k 0.2107 28.5152 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 62 J -0.2093 26.9524 42.7294 -Arial_Bold.ttf 61 k 28.5152 42.0000 63 U -0.0381 33.3463 42.7294 -Arial_Bold.ttf 61 k 28.5152 42.0000 64 j -0.3048 15.2294 53.7554 -Arial_Bold.ttf 61 k 28.5152 42.0000 65 ( -0.2995 14.0000 53.5411 -Arial_Bold.ttf 61 k 28.5152 42.0000 66 7 0.3483 27.2857 41.7857 -Arial_Bold.ttf 61 k 28.5152 42.0000 67 § -0.3469 28.5152 54.7706 -Arial_Bold.ttf 61 k 28.5152 42.0000 68 $ -3.0005 27.7857 50.8680 -Arial_Bold.ttf 61 k 28.5152 42.0000 69 € -0.7294 31.6883 42.9437 -Arial_Bold.ttf 61 k 28.5152 42.0000 70 / 0.1000 17.6883 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 71 C -0.6163 36.6537 42.7294 -Arial_Bold.ttf 61 k 28.5152 42.0000 72 * -0.0643 19.7424 19.1320 -Arial_Bold.ttf 61 k 28.5152 42.0000 73 ” -0.0143 22.4719 17.6883 -Arial_Bold.ttf 61 k 28.5152 42.0000 74 ? 0.0464 30.4589 42.2143 -Arial_Bold.ttf 61 k 28.5152 42.0000 75 { -0.3931 19.6472 53.9697 -Arial_Bold.ttf 61 k 28.5152 42.0000 76 } -0.1226 19.6472 53.9697 -Arial_Bold.ttf 61 k 28.5152 42.0000 77 , 34.1019 8.8680 17.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 78 I -0.0000 8.1385 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 79 ° -0.0377 18.0844 18.0844 -Arial_Bold.ttf 61 k 28.5152 42.0000 80 K -0.0903 37.7641 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 81 H 0.1819 33.3463 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 82 q 10.0655 29.5628 43.4437 -Arial_Bold.ttf 61 k 28.5152 42.0000 83 & -0.1577 38.8117 42.4286 -Arial_Bold.ttf 61 k 28.5152 42.0000 84 ’ 0.2107 8.8680 17.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 85 [ -0.4719 15.2294 53.5411 -Arial_Bold.ttf 61 k 28.5152 42.0000 86 - 23.5034 15.7294 6.9091 -Arial_Bold.ttf 61 k 28.5152 42.0000 87 Y 0.0786 41.0563 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 88 Q -0.6021 41.7857 46.6472 -Arial_Bold.ttf 61 k 28.5152 42.0000 89 " 0.0083 21.5909 15.2294 -Arial_Bold.ttf 61 k 28.5152 42.0000 90 ! 0.2048 8.1385 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 91 x 11.3483 32.4177 30.6732 -Arial_Bold.ttf 61 k 28.5152 42.0000 92 ) 0.1131 14.0000 53.5411 -Arial_Bold.ttf 61 k 28.5152 42.0000 93 = 11.4016 29.2294 19.2835 -Arial_Bold.ttf 61 k 28.5152 42.0000 94 + 7.1279 28.8961 28.8961 -Arial_Bold.ttf 61 k 28.5152 42.0000 95 X -0.1371 38.9935 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 96 » 13.2872 26.9524 26.5563 -Arial_Bold.ttf 61 k 28.5152 42.0000 97 ' 0.0857 8.1385 15.2294 -Arial_Bold.ttf 61 k 28.5152 42.0000 98 ¢ -0.3115 28.7294 54.4372 -Arial_Bold.ttf 61 k 28.5152 42.0000 99 Z 0.0476 34.4805 42.0000 -Arial_Bold.ttf 61 k 28.5152 42.0000 100 > 5.4380 28.0000 31.9026 -Arial_Bold.ttf 61 k 28.5152 42.0000 101 ® -0.2286 43.2294 42.4286 -Arial_Bold.ttf 61 k 28.5152 42.0000 102 © -0.2202 43.9589 42.4286 -Arial_Bold.ttf 61 k 28.5152 42.0000 103 ] -0.1917 15.2294 53.5411 -Arial_Bold.ttf 61 k 28.5152 42.0000 104 é -0.6447 29.4113 42.8961 -Arial_Bold.ttf 61 k 28.5152 42.0000 105 z 11.2562 26.7706 30.6732 -Arial_Bold.ttf 61 k 28.5152 42.0000 106 _ 47.3342 33.4654 5.8615 -Arial_Bold.ttf 61 k 28.5152 42.0000 107 ¥ 0.1190 30.2056 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 1 t 0.9705 18.1169 41.3810 -Arial_Bold.ttf 62 J 26.9524 42.7294 2 h -0.2736 27.7857 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 3 a 10.1091 28.8333 32.1169 -Arial_Bold.ttf 62 J 26.9524 42.7294 4 n 10.1845 27.7857 31.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 5 P -0.2036 32.0844 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 6 o 10.3248 31.0065 32.1169 -Arial_Bold.ttf 62 J 26.9524 42.7294 7 e 10.0974 29.4113 32.1169 -Arial_Bold.ttf 62 J 26.9524 42.7294 8 : 11.3425 8.1385 30.6732 -Arial_Bold.ttf 62 J 26.9524 42.7294 9 r 10.1103 19.8615 31.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 10 l -0.0643 8.1385 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 11 i -0.0083 8.1385 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 12 1 -0.2002 18.2359 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 13 | 0.0750 5.8615 54.5563 -Arial_Bold.ttf 62 J 26.9524 42.7294 14 N -0.0083 33.3463 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 15 f -0.5145 20.6948 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 16 g 10.1974 29.5628 43.6580 -Arial_Bold.ttf 62 J 26.9524 42.7294 17 d 0.1143 29.5628 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 18 W 0.0045 54.7706 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 19 s 10.0609 28.3333 32.1169 -Arial_Bold.ttf 62 J 26.9524 42.7294 20 c 10.3815 27.5000 32.1169 -Arial_Bold.ttf 62 J 26.9524 42.7294 21 u 11.4268 27.7857 30.8874 -Arial_Bold.ttf 62 J 26.9524 42.7294 22 3 -0.1488 27.2857 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 23 ~ 16.0029 30.4589 10.8117 -Arial_Bold.ttf 62 J 26.9524 42.7294 24 # 0.1506 30.3874 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 25 O -1.0128 40.3420 43.4589 -Arial_Bold.ttf 62 J 26.9524 42.7294 26 ` 0.1288 12.7706 8.3203 -Arial_Bold.ttf 62 J 26.9524 42.7294 27 @ -0.2000 55.2706 56.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 28 F 0.0060 29.0152 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 29 S -0.6742 33.8615 43.4589 -Arial_Bold.ttf 62 J 26.9524 42.7294 30 p 9.6996 29.5628 43.4437 -Arial_Bold.ttf 62 J 26.9524 42.7294 31 “ -0.1502 22.4719 17.6883 -Arial_Bold.ttf 62 J 26.9524 42.7294 32 % -0.1226 44.9329 43.6580 -Arial_Bold.ttf 62 J 26.9524 42.7294 33 £ -0.4048 31.1883 42.4286 -Arial_Bold.ttf 62 J 26.9524 42.7294 34 . 33.8127 8.1385 8.1385 -Arial_Bold.ttf 62 J 26.9524 42.7294 35 2 -0.1721 27.2857 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 36 5 0.0279 28.0000 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 37 m 9.9700 44.6104 31.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 38 V -0.0045 38.4935 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 39 6 0.2036 27.2857 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 40 w 11.5056 45.5065 30.6732 -Arial_Bold.ttf 62 J 26.9524 42.7294 41 T -0.0766 33.2511 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 42 M -0.0091 39.5584 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 43 G -0.9211 39.1126 43.4589 -Arial_Bold.ttf 62 J 26.9524 42.7294 44 b 0.1333 29.5628 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 45 9 0.1728 27.2857 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 46 ; 11.5602 8.8680 40.4372 -Arial_Bold.ttf 62 J 26.9524 42.7294 47 D -0.0202 35.0909 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 48 L 0.0500 29.9113 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 49 y 11.5421 31.6883 42.4286 -Arial_Bold.ttf 62 J 26.9524 42.7294 50 ‘ -0.2371 8.8680 17.6883 -Arial_Bold.ttf 62 J 26.9524 42.7294 51 \ -0.1728 17.6883 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 52 R 0.0524 37.0498 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 53 < 5.4594 28.0000 31.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 54 4 0.0752 29.9589 41.7857 -Arial_Bold.ttf 62 J 26.9524 42.7294 55 8 0.2407 27.2857 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 56 0 -0.0202 27.2857 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 57 A 0.0000 40.5887 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 58 E 0.1214 32.0844 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 59 B -0.1826 35.0909 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 60 v 11.4282 31.6883 30.6732 -Arial_Bold.ttf 62 J 26.9524 42.7294 61 k 0.0917 28.5152 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 62 J 0.1183 26.9524 42.7294 -Arial_Bold.ttf 62 J 26.9524 42.7294 63 U -0.0202 33.3463 42.7294 -Arial_Bold.ttf 62 J 26.9524 42.7294 64 j 0.1123 15.2294 53.7554 -Arial_Bold.ttf 62 J 26.9524 42.7294 65 ( -0.0639 14.0000 53.5411 -Arial_Bold.ttf 62 J 26.9524 42.7294 66 7 0.0960 27.2857 41.7857 -Arial_Bold.ttf 62 J 26.9524 42.7294 67 § -0.1338 28.5152 54.7706 -Arial_Bold.ttf 62 J 26.9524 42.7294 68 $ -3.1793 27.7857 50.8680 -Arial_Bold.ttf 62 J 26.9524 42.7294 69 € -0.4330 31.6883 42.9437 -Arial_Bold.ttf 62 J 26.9524 42.7294 70 / 0.1722 17.6883 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 71 C -0.7711 36.6537 42.7294 -Arial_Bold.ttf 62 J 26.9524 42.7294 72 * 0.0871 19.7424 19.1320 -Arial_Bold.ttf 62 J 26.9524 42.7294 73 ” -0.1750 22.4719 17.6883 -Arial_Bold.ttf 62 J 26.9524 42.7294 74 ? -0.3690 30.4589 42.2143 -Arial_Bold.ttf 62 J 26.9524 42.7294 75 { -0.3650 19.6472 53.9697 -Arial_Bold.ttf 62 J 26.9524 42.7294 76 } -0.2181 19.6472 53.9697 -Arial_Bold.ttf 62 J 26.9524 42.7294 77 , 33.9494 8.8680 17.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 78 I 0.2578 8.1385 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 79 ° 0.2542 18.0844 18.0844 -Arial_Bold.ttf 62 J 26.9524 42.7294 80 K 0.1052 37.7641 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 81 H -0.0038 33.3463 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 82 q 10.0339 29.5628 43.4437 -Arial_Bold.ttf 62 J 26.9524 42.7294 83 & 0.1911 38.8117 42.4286 -Arial_Bold.ttf 62 J 26.9524 42.7294 84 ’ 0.1207 8.8680 17.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 85 [ -0.1750 15.2294 53.5411 -Arial_Bold.ttf 62 J 26.9524 42.7294 86 - 23.2103 15.7294 6.9091 -Arial_Bold.ttf 62 J 26.9524 42.7294 87 Y 0.1038 41.0563 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 88 Q -0.6378 41.7857 46.6472 -Arial_Bold.ttf 62 J 26.9524 42.7294 89 " -0.1274 21.5909 15.2294 -Arial_Bold.ttf 62 J 26.9524 42.7294 90 ! -0.1333 8.1385 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 91 x 11.2254 32.4177 30.6732 -Arial_Bold.ttf 62 J 26.9524 42.7294 92 ) 0.0786 14.0000 53.5411 -Arial_Bold.ttf 62 J 26.9524 42.7294 93 = 11.5340 29.2294 19.2835 -Arial_Bold.ttf 62 J 26.9524 42.7294 94 + 7.2605 28.8961 28.8961 -Arial_Bold.ttf 62 J 26.9524 42.7294 95 X -0.2712 38.9935 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 96 » 13.4327 26.9524 26.5563 -Arial_Bold.ttf 62 J 26.9524 42.7294 97 ' -0.1022 8.1385 15.2294 -Arial_Bold.ttf 62 J 26.9524 42.7294 98 ¢ -0.0955 28.7294 54.4372 -Arial_Bold.ttf 62 J 26.9524 42.7294 99 Z 0.1000 34.4805 42.0000 -Arial_Bold.ttf 62 J 26.9524 42.7294 100 > 5.7156 28.0000 31.9026 -Arial_Bold.ttf 62 J 26.9524 42.7294 101 ® 0.0819 43.2294 42.4286 -Arial_Bold.ttf 62 J 26.9524 42.7294 102 © -0.4163 43.9589 42.4286 -Arial_Bold.ttf 62 J 26.9524 42.7294 103 ] 0.0319 15.2294 53.5411 -Arial_Bold.ttf 62 J 26.9524 42.7294 104 é -0.6818 29.4113 42.8961 -Arial_Bold.ttf 62 J 26.9524 42.7294 105 z 11.0709 26.7706 30.6732 -Arial_Bold.ttf 62 J 26.9524 42.7294 106 _ 47.5368 33.4654 5.8615 -Arial_Bold.ttf 62 J 26.9524 42.7294 107 ¥ -0.1417 30.2056 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 1 t 0.9712 18.1169 41.3810 -Arial_Bold.ttf 63 U 33.3463 42.7294 2 h -0.1800 27.7857 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 3 a 10.1436 28.8333 32.1169 -Arial_Bold.ttf 63 U 33.3463 42.7294 4 n 9.9200 27.7857 31.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 5 P -0.0909 32.0844 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 6 o 10.0508 31.0065 32.1169 -Arial_Bold.ttf 63 U 33.3463 42.7294 7 e 10.0429 29.4113 32.1169 -Arial_Bold.ttf 63 U 33.3463 42.7294 8 : 11.4088 8.1385 30.6732 -Arial_Bold.ttf 63 U 33.3463 42.7294 9 r 9.9305 19.8615 31.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 10 l -0.0976 8.1385 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 11 i 0.0060 8.1385 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 12 1 -0.2284 18.2359 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 13 | -0.0417 5.8615 54.5563 -Arial_Bold.ttf 63 U 33.3463 42.7294 14 N -0.0631 33.3463 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 15 f -0.1369 20.6948 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 16 g 10.2222 29.5628 43.6580 -Arial_Bold.ttf 63 U 33.3463 42.7294 17 d -0.1893 29.5628 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 18 W -0.0260 54.7706 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 19 s 10.1391 28.3333 32.1169 -Arial_Bold.ttf 63 U 33.3463 42.7294 20 c 10.2502 27.5000 32.1169 -Arial_Bold.ttf 63 U 33.3463 42.7294 21 u 11.5042 27.7857 30.8874 -Arial_Bold.ttf 63 U 33.3463 42.7294 22 3 -0.0117 27.2857 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 23 ~ 15.8601 30.4589 10.8117 -Arial_Bold.ttf 63 U 33.3463 42.7294 24 # 0.0728 30.3874 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 25 O -0.8140 40.3420 43.4589 -Arial_Bold.ttf 63 U 33.3463 42.7294 26 ` 0.0266 12.7706 8.3203 -Arial_Bold.ttf 63 U 33.3463 42.7294 27 @ -0.0369 55.2706 56.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 28 F 0.0319 29.0152 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 29 S -0.7100 33.8615 43.4589 -Arial_Bold.ttf 63 U 33.3463 42.7294 30 p 10.3022 29.5628 43.4437 -Arial_Bold.ttf 63 U 33.3463 42.7294 31 “ 0.0676 22.4719 17.6883 -Arial_Bold.ttf 63 U 33.3463 42.7294 32 % -0.0786 44.9329 43.6580 -Arial_Bold.ttf 63 U 33.3463 42.7294 33 £ -0.3347 31.1883 42.4286 -Arial_Bold.ttf 63 U 33.3463 42.7294 34 . 33.8581 8.1385 8.1385 -Arial_Bold.ttf 63 U 33.3463 42.7294 35 2 -0.1574 27.2857 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 36 5 0.0272 28.0000 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 37 m 10.3331 44.6104 31.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 38 V -0.0754 38.4935 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 39 6 0.0357 27.2857 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 40 w 11.1663 45.5065 30.6732 -Arial_Bold.ttf 63 U 33.3463 42.7294 41 T 0.1455 33.2511 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 42 M 0.0417 39.5584 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 43 G -0.4402 39.1126 43.4589 -Arial_Bold.ttf 63 U 33.3463 42.7294 44 b -0.0526 29.5628 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 45 9 -0.0514 27.2857 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 46 ; 11.2911 8.8680 40.4372 -Arial_Bold.ttf 63 U 33.3463 42.7294 47 D 0.0083 35.0909 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 48 L -0.1060 29.9113 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 49 y 11.2768 31.6883 42.4286 -Arial_Bold.ttf 63 U 33.3463 42.7294 50 ‘ -0.0605 8.8680 17.6883 -Arial_Bold.ttf 63 U 33.3463 42.7294 51 \ -0.1385 17.6883 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 52 R 0.2364 37.0498 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 53 < 5.4465 28.0000 31.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 54 4 0.5060 29.9589 41.7857 -Arial_Bold.ttf 63 U 33.3463 42.7294 55 8 -0.1560 27.2857 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 56 0 0.2286 27.2857 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 57 A -0.0631 40.5887 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 58 E 0.2562 32.0844 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 59 B -0.1169 35.0909 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 60 v 11.3135 31.6883 30.6732 -Arial_Bold.ttf 63 U 33.3463 42.7294 61 k 0.1780 28.5152 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 62 J -0.2280 26.9524 42.7294 -Arial_Bold.ttf 63 U 33.3463 42.7294 63 U 0.0212 33.3463 42.7294 -Arial_Bold.ttf 63 U 33.3463 42.7294 64 j -0.1300 15.2294 53.7554 -Arial_Bold.ttf 63 U 33.3463 42.7294 65 ( 0.0240 14.0000 53.5411 -Arial_Bold.ttf 63 U 33.3463 42.7294 66 7 0.1429 27.2857 41.7857 -Arial_Bold.ttf 63 U 33.3463 42.7294 67 § 0.0443 28.5152 54.7706 -Arial_Bold.ttf 63 U 33.3463 42.7294 68 $ -2.8961 27.7857 50.8680 -Arial_Bold.ttf 63 U 33.3463 42.7294 69 € -1.0366 31.6883 42.9437 -Arial_Bold.ttf 63 U 33.3463 42.7294 70 / 0.2562 17.6883 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 71 C -0.9485 36.6537 42.7294 -Arial_Bold.ttf 63 U 33.3463 42.7294 72 * 0.2274 19.7424 19.1320 -Arial_Bold.ttf 63 U 33.3463 42.7294 73 ” -0.1209 22.4719 17.6883 -Arial_Bold.ttf 63 U 33.3463 42.7294 74 ? -0.4060 30.4589 42.2143 -Arial_Bold.ttf 63 U 33.3463 42.7294 75 { -0.6288 19.6472 53.9697 -Arial_Bold.ttf 63 U 33.3463 42.7294 76 } -0.3665 19.6472 53.9697 -Arial_Bold.ttf 63 U 33.3463 42.7294 77 , 33.8615 8.8680 17.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 78 I -0.0381 8.1385 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 79 ° -0.0095 18.0844 18.0844 -Arial_Bold.ttf 63 U 33.3463 42.7294 80 K 0.0462 37.7641 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 81 H -0.3048 33.3463 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 82 q 10.3248 29.5628 43.4437 -Arial_Bold.ttf 63 U 33.3463 42.7294 83 & -0.2341 38.8117 42.4286 -Arial_Bold.ttf 63 U 33.3463 42.7294 84 ’ -0.1871 8.8680 17.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 85 [ -0.0857 15.2294 53.5411 -Arial_Bold.ttf 63 U 33.3463 42.7294 86 - 24.0071 15.7294 6.9091 -Arial_Bold.ttf 63 U 33.3463 42.7294 87 Y 0.0940 41.0563 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 88 Q -0.8794 41.7857 46.6472 -Arial_Bold.ttf 63 U 33.3463 42.7294 89 " 0.0976 21.5909 15.2294 -Arial_Bold.ttf 63 U 33.3463 42.7294 90 ! 0.0740 8.1385 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 91 x 11.4133 32.4177 30.6732 -Arial_Bold.ttf 63 U 33.3463 42.7294 92 ) 0.0417 14.0000 53.5411 -Arial_Bold.ttf 63 U 33.3463 42.7294 93 = 11.0488 29.2294 19.2835 -Arial_Bold.ttf 63 U 33.3463 42.7294 94 + 6.9734 28.8961 28.8961 -Arial_Bold.ttf 63 U 33.3463 42.7294 95 X 0.1814 38.9935 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 96 » 13.6487 26.9524 26.5563 -Arial_Bold.ttf 63 U 33.3463 42.7294 97 ' -0.2695 8.1385 15.2294 -Arial_Bold.ttf 63 U 33.3463 42.7294 98 ¢ 0.4768 28.7294 54.4372 -Arial_Bold.ttf 63 U 33.3463 42.7294 99 Z 0.1988 34.4805 42.0000 -Arial_Bold.ttf 63 U 33.3463 42.7294 100 > 5.4872 28.0000 31.9026 -Arial_Bold.ttf 63 U 33.3463 42.7294 101 ® -0.4052 43.2294 42.4286 -Arial_Bold.ttf 63 U 33.3463 42.7294 102 © -0.1149 43.9589 42.4286 -Arial_Bold.ttf 63 U 33.3463 42.7294 103 ] -0.1996 15.2294 53.5411 -Arial_Bold.ttf 63 U 33.3463 42.7294 104 é -0.2983 29.4113 42.8961 -Arial_Bold.ttf 63 U 33.3463 42.7294 105 z 11.4633 26.7706 30.6732 -Arial_Bold.ttf 63 U 33.3463 42.7294 106 _ 47.6247 33.4654 5.8615 -Arial_Bold.ttf 63 U 33.3463 42.7294 107 ¥ -0.3169 30.2056 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 1 t 0.7627 18.1169 41.3810 -Arial_Bold.ttf 64 j 15.2294 53.7554 2 h 0.1919 27.7857 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 3 a 9.9998 28.8333 32.1169 -Arial_Bold.ttf 64 j 15.2294 53.7554 4 n 10.0624 27.7857 31.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 5 P -0.2405 32.0844 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 6 o 10.2331 31.0065 32.1169 -Arial_Bold.ttf 64 j 15.2294 53.7554 7 e 10.0057 29.4113 32.1169 -Arial_Bold.ttf 64 j 15.2294 53.7554 8 : 11.3509 8.1385 30.6732 -Arial_Bold.ttf 64 j 15.2294 53.7554 9 r 10.3397 19.8615 31.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 10 l 0.1417 8.1385 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 11 i 0.1895 8.1385 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 12 1 0.2333 18.2359 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 13 | 0.2190 5.8615 54.5563 -Arial_Bold.ttf 64 j 15.2294 53.7554 14 N 0.1424 33.3463 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 15 f -0.2143 20.6948 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 16 g 10.0617 29.5628 43.6580 -Arial_Bold.ttf 64 j 15.2294 53.7554 17 d 0.2502 29.5628 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 18 W 0.1417 54.7706 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 19 s 10.3665 28.3333 32.1169 -Arial_Bold.ttf 64 j 15.2294 53.7554 20 c 10.0772 27.5000 32.1169 -Arial_Bold.ttf 64 j 15.2294 53.7554 21 u 11.4392 27.7857 30.8874 -Arial_Bold.ttf 64 j 15.2294 53.7554 22 3 -0.2780 27.2857 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 23 ~ 15.9394 30.4589 10.8117 -Arial_Bold.ttf 64 j 15.2294 53.7554 24 # -0.0774 30.3874 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 25 O -0.8092 40.3420 43.4589 -Arial_Bold.ttf 64 j 15.2294 53.7554 26 ` -0.1014 12.7706 8.3203 -Arial_Bold.ttf 64 j 15.2294 53.7554 27 @ -0.1793 55.2706 56.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 28 F 0.0000 29.0152 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 29 S -0.8354 33.8615 43.4589 -Arial_Bold.ttf 64 j 15.2294 53.7554 30 p 10.0331 29.5628 43.4437 -Arial_Bold.ttf 64 j 15.2294 53.7554 31 “ 0.4159 22.4719 17.6883 -Arial_Bold.ttf 64 j 15.2294 53.7554 32 % -0.3774 44.9329 43.6580 -Arial_Bold.ttf 64 j 15.2294 53.7554 33 £ -0.0484 31.1883 42.4286 -Arial_Bold.ttf 64 j 15.2294 53.7554 34 . 34.0603 8.1385 8.1385 -Arial_Bold.ttf 64 j 15.2294 53.7554 35 2 -0.0774 27.2857 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 36 5 0.2345 28.0000 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 37 m 9.9641 44.6104 31.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 38 V -0.0202 38.4935 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 39 6 0.0357 27.2857 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 40 w 11.1721 45.5065 30.6732 -Arial_Bold.ttf 64 j 15.2294 53.7554 41 T 0.0650 33.2511 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 42 M -0.2288 39.5584 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 43 G -0.8485 39.1126 43.4589 -Arial_Bold.ttf 64 j 15.2294 53.7554 44 b -0.1312 29.5628 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 45 9 0.1859 27.2857 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 46 ; 11.3794 8.8680 40.4372 -Arial_Bold.ttf 64 j 15.2294 53.7554 47 D -0.1280 35.0909 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 48 L 0.0083 29.9113 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 49 y 11.5451 31.6883 42.4286 -Arial_Bold.ttf 64 j 15.2294 53.7554 50 ‘ 0.1631 8.8680 17.6883 -Arial_Bold.ttf 64 j 15.2294 53.7554 51 \ 0.0405 17.6883 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 52 R 0.1690 37.0498 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 53 < 5.5116 28.0000 31.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 54 4 0.0188 29.9589 41.7857 -Arial_Bold.ttf 64 j 15.2294 53.7554 55 8 0.1045 27.2857 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 56 0 0.2457 27.2857 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 57 A 0.0597 40.5887 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 58 E -0.2548 32.0844 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 59 B -0.3276 35.0909 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 60 v 10.9387 31.6883 30.6732 -Arial_Bold.ttf 64 j 15.2294 53.7554 61 k 0.0947 28.5152 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 62 J 0.4252 26.9524 42.7294 -Arial_Bold.ttf 64 j 15.2294 53.7554 63 U 0.1774 33.3463 42.7294 -Arial_Bold.ttf 64 j 15.2294 53.7554 64 j 0.2488 15.2294 53.7554 -Arial_Bold.ttf 64 j 15.2294 53.7554 65 ( 0.3183 14.0000 53.5411 -Arial_Bold.ttf 64 j 15.2294 53.7554 66 7 0.2149 27.2857 41.7857 -Arial_Bold.ttf 64 j 15.2294 53.7554 67 § -0.3781 28.5152 54.7706 -Arial_Bold.ttf 64 j 15.2294 53.7554 68 $ -2.9246 27.7857 50.8680 -Arial_Bold.ttf 64 j 15.2294 53.7554 69 € -0.5663 31.6883 42.9437 -Arial_Bold.ttf 64 j 15.2294 53.7554 70 / -0.0714 17.6883 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 71 C -0.5149 36.6537 42.7294 -Arial_Bold.ttf 64 j 15.2294 53.7554 72 * -0.4419 19.7424 19.1320 -Arial_Bold.ttf 64 j 15.2294 53.7554 73 ” -0.1955 22.4719 17.6883 -Arial_Bold.ttf 64 j 15.2294 53.7554 74 ? -0.3026 30.4589 42.2143 -Arial_Bold.ttf 64 j 15.2294 53.7554 75 { -0.1786 19.6472 53.9697 -Arial_Bold.ttf 64 j 15.2294 53.7554 76 } -0.0655 19.6472 53.9697 -Arial_Bold.ttf 64 j 15.2294 53.7554 77 , 33.6970 8.8680 17.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 78 I 0.1123 8.1385 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 79 ° -0.3774 18.0844 18.0844 -Arial_Bold.ttf 64 j 15.2294 53.7554 80 K -0.0123 37.7641 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 81 H -0.3600 33.3463 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 82 q 9.5160 29.5628 43.4437 -Arial_Bold.ttf 64 j 15.2294 53.7554 83 & -0.4333 38.8117 42.4286 -Arial_Bold.ttf 64 j 15.2294 53.7554 84 ’ -0.0228 8.8680 17.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 85 [ -0.0448 15.2294 53.5411 -Arial_Bold.ttf 64 j 15.2294 53.7554 86 - 23.7686 15.7294 6.9091 -Arial_Bold.ttf 64 j 15.2294 53.7554 87 Y 0.1833 41.0563 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 88 Q -0.8523 41.7857 46.6472 -Arial_Bold.ttf 64 j 15.2294 53.7554 89 " -0.0552 21.5909 15.2294 -Arial_Bold.ttf 64 j 15.2294 53.7554 90 ! 0.2393 8.1385 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 91 x 11.3471 32.4177 30.6732 -Arial_Bold.ttf 64 j 15.2294 53.7554 92 ) -0.1250 14.0000 53.5411 -Arial_Bold.ttf 64 j 15.2294 53.7554 93 = 11.2806 29.2294 19.2835 -Arial_Bold.ttf 64 j 15.2294 53.7554 94 + 7.3496 28.8961 28.8961 -Arial_Bold.ttf 64 j 15.2294 53.7554 95 X -0.2131 38.9935 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 96 » 13.7741 26.9524 26.5563 -Arial_Bold.ttf 64 j 15.2294 53.7554 97 ' 0.0045 8.1385 15.2294 -Arial_Bold.ttf 64 j 15.2294 53.7554 98 ¢ -0.1417 28.7294 54.4372 -Arial_Bold.ttf 64 j 15.2294 53.7554 99 Z -0.1014 34.4805 42.0000 -Arial_Bold.ttf 64 j 15.2294 53.7554 100 > 5.2523 28.0000 31.9026 -Arial_Bold.ttf 64 j 15.2294 53.7554 101 ® -0.2917 43.2294 42.4286 -Arial_Bold.ttf 64 j 15.2294 53.7554 102 © 0.0405 43.9589 42.4286 -Arial_Bold.ttf 64 j 15.2294 53.7554 103 ] -0.0067 15.2294 53.5411 -Arial_Bold.ttf 64 j 15.2294 53.7554 104 é -0.5544 29.4113 42.8961 -Arial_Bold.ttf 64 j 15.2294 53.7554 105 z 11.2532 26.7706 30.6732 -Arial_Bold.ttf 64 j 15.2294 53.7554 106 _ 47.5882 33.4654 5.8615 -Arial_Bold.ttf 64 j 15.2294 53.7554 107 ¥ 0.0357 30.2056 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 1 t 0.9250 18.1169 41.3810 -Arial_Bold.ttf 65 ( 14.0000 53.5411 2 h 0.1060 27.7857 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 3 a 10.1891 28.8333 32.1169 -Arial_Bold.ttf 65 ( 14.0000 53.5411 4 n 10.2429 27.7857 31.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 5 P -0.2100 32.0844 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 6 o 10.1748 31.0065 32.1169 -Arial_Bold.ttf 65 ( 14.0000 53.5411 7 e 10.0200 29.4113 32.1169 -Arial_Bold.ttf 65 ( 14.0000 53.5411 8 : 11.1390 8.1385 30.6732 -Arial_Bold.ttf 65 ( 14.0000 53.5411 9 r 9.9662 19.8615 31.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 10 l 0.0736 8.1385 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 11 i 0.1871 8.1385 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 12 1 -0.1690 18.2359 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 13 | 0.0593 5.8615 54.5563 -Arial_Bold.ttf 65 ( 14.0000 53.5411 14 N -0.0233 33.3463 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 15 f -0.1786 20.6948 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 16 g 9.8577 29.5628 43.6580 -Arial_Bold.ttf 65 ( 14.0000 53.5411 17 d 0.1417 29.5628 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 18 W 0.1500 54.7706 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 19 s 9.9700 28.3333 32.1169 -Arial_Bold.ttf 65 ( 14.0000 53.5411 20 c 10.5490 27.5000 32.1169 -Arial_Bold.ttf 65 ( 14.0000 53.5411 21 u 11.1585 27.7857 30.8874 -Arial_Bold.ttf 65 ( 14.0000 53.5411 22 3 0.1833 27.2857 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 23 ~ 15.8672 30.4589 10.8117 -Arial_Bold.ttf 65 ( 14.0000 53.5411 24 # 0.1455 30.3874 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 25 O -0.5469 40.3420 43.4589 -Arial_Bold.ttf 65 ( 14.0000 53.5411 26 ` 0.0702 12.7706 8.3203 -Arial_Bold.ttf 65 ( 14.0000 53.5411 27 @ -0.2924 55.2706 56.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 28 F -0.0538 29.0152 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 29 S -0.9842 33.8615 43.4589 -Arial_Bold.ttf 65 ( 14.0000 53.5411 30 p 10.0922 29.5628 43.4437 -Arial_Bold.ttf 65 ( 14.0000 53.5411 31 “ 0.0228 22.4719 17.6883 -Arial_Bold.ttf 65 ( 14.0000 53.5411 32 % -0.2105 44.9329 43.6580 -Arial_Bold.ttf 65 ( 14.0000 53.5411 33 £ -0.3014 31.1883 42.4286 -Arial_Bold.ttf 65 ( 14.0000 53.5411 34 . 33.5910 8.1385 8.1385 -Arial_Bold.ttf 65 ( 14.0000 53.5411 35 2 0.0045 27.2857 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 36 5 0.4214 28.0000 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 37 m 10.0974 44.6104 31.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 38 V -0.1371 38.4935 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 39 6 0.0417 27.2857 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 40 w 11.1502 45.5065 30.6732 -Arial_Bold.ttf 65 ( 14.0000 53.5411 41 T -0.0917 33.2511 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 42 M 0.2443 39.5584 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 43 G -0.7923 39.1126 43.4589 -Arial_Bold.ttf 65 ( 14.0000 53.5411 44 b -0.1312 29.5628 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 45 9 -0.1274 27.2857 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 46 ; 11.4185 8.8680 40.4372 -Arial_Bold.ttf 65 ( 14.0000 53.5411 47 D 0.0774 35.0909 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 48 L 0.1690 29.9113 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 49 y 11.2416 31.6883 42.4286 -Arial_Bold.ttf 65 ( 14.0000 53.5411 50 ‘ 0.3776 8.8680 17.6883 -Arial_Bold.ttf 65 ( 14.0000 53.5411 51 \ 0.0917 17.6883 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 52 R -0.1274 37.0498 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 53 < 5.4289 28.0000 31.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 54 4 0.5919 29.9589 41.7857 -Arial_Bold.ttf 65 ( 14.0000 53.5411 55 8 -0.0357 27.2857 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 56 0 0.0857 27.2857 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 57 A 0.0357 40.5887 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 58 E 0.0357 32.0844 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 59 B 0.1107 35.0909 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 60 v 11.2911 31.6883 30.6732 -Arial_Bold.ttf 65 ( 14.0000 53.5411 61 k -0.1274 28.5152 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 62 J 0.0893 26.9524 42.7294 -Arial_Bold.ttf 65 ( 14.0000 53.5411 63 U 0.0857 33.3463 42.7294 -Arial_Bold.ttf 65 ( 14.0000 53.5411 64 j 0.1274 15.2294 53.7554 -Arial_Bold.ttf 65 ( 14.0000 53.5411 65 ( -0.0060 14.0000 53.5411 -Arial_Bold.ttf 65 ( 14.0000 53.5411 66 7 0.0095 27.2857 41.7857 -Arial_Bold.ttf 65 ( 14.0000 53.5411 67 § -0.2702 28.5152 54.7706 -Arial_Bold.ttf 65 ( 14.0000 53.5411 68 $ -3.1898 27.7857 50.8680 -Arial_Bold.ttf 65 ( 14.0000 53.5411 69 € -0.6156 31.6883 42.9437 -Arial_Bold.ttf 65 ( 14.0000 53.5411 70 / 0.0357 17.6883 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 71 C -0.5728 36.6537 42.7294 -Arial_Bold.ttf 65 ( 14.0000 53.5411 72 * 0.0690 19.7424 19.1320 -Arial_Bold.ttf 65 ( 14.0000 53.5411 73 ” 0.0008 22.4719 17.6883 -Arial_Bold.ttf 65 ( 14.0000 53.5411 74 ? -0.0141 30.4589 42.2143 -Arial_Bold.ttf 65 ( 14.0000 53.5411 75 { -0.1234 19.6472 53.9697 -Arial_Bold.ttf 65 ( 14.0000 53.5411 76 } -0.2262 19.6472 53.9697 -Arial_Bold.ttf 65 ( 14.0000 53.5411 77 , 33.8615 8.8680 17.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 78 I 0.0714 8.1385 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 79 ° -0.3931 18.0844 18.0844 -Arial_Bold.ttf 65 ( 14.0000 53.5411 80 K 0.2964 37.7641 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 81 H 0.1476 33.3463 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 82 q 10.1474 29.5628 43.4437 -Arial_Bold.ttf 65 ( 14.0000 53.5411 83 & -0.1500 38.8117 42.4286 -Arial_Bold.ttf 65 ( 14.0000 53.5411 84 ’ -0.0030 8.8680 17.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 85 [ 0.0357 15.2294 53.5411 -Arial_Bold.ttf 65 ( 14.0000 53.5411 86 - 23.7700 15.7294 6.9091 -Arial_Bold.ttf 65 ( 14.0000 53.5411 87 Y -0.0655 41.0563 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 88 Q -0.6235 41.7857 46.6472 -Arial_Bold.ttf 65 ( 14.0000 53.5411 89 " 0.1248 21.5909 15.2294 -Arial_Bold.ttf 65 ( 14.0000 53.5411 90 ! -0.0560 8.1385 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 91 x 11.3768 32.4177 30.6732 -Arial_Bold.ttf 65 ( 14.0000 53.5411 92 ) 0.0560 14.0000 53.5411 -Arial_Bold.ttf 65 ( 14.0000 53.5411 93 = 11.2649 29.2294 19.2835 -Arial_Bold.ttf 65 ( 14.0000 53.5411 94 + 6.8848 28.8961 28.8961 -Arial_Bold.ttf 65 ( 14.0000 53.5411 95 X 0.0826 38.9935 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 96 » 13.5491 26.9524 26.5563 -Arial_Bold.ttf 65 ( 14.0000 53.5411 97 ' -0.0917 8.1385 15.2294 -Arial_Bold.ttf 65 ( 14.0000 53.5411 98 ¢ -0.1506 28.7294 54.4372 -Arial_Bold.ttf 65 ( 14.0000 53.5411 99 Z 0.1728 34.4805 42.0000 -Arial_Bold.ttf 65 ( 14.0000 53.5411 100 > 5.3677 28.0000 31.9026 -Arial_Bold.ttf 65 ( 14.0000 53.5411 101 ® -0.0355 43.2294 42.4286 -Arial_Bold.ttf 65 ( 14.0000 53.5411 102 © -0.2060 43.9589 42.4286 -Arial_Bold.ttf 65 ( 14.0000 53.5411 103 ] -0.1585 15.2294 53.5411 -Arial_Bold.ttf 65 ( 14.0000 53.5411 104 é -0.5590 29.4113 42.8961 -Arial_Bold.ttf 65 ( 14.0000 53.5411 105 z 11.2314 26.7706 30.6732 -Arial_Bold.ttf 65 ( 14.0000 53.5411 106 _ 47.4130 33.4654 5.8615 -Arial_Bold.ttf 65 ( 14.0000 53.5411 107 ¥ 0.0000 30.2056 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 1 t 0.6988 18.1169 41.3810 -Arial_Bold.ttf 66 7 27.2857 41.7857 2 h -0.0877 27.7857 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 3 a 9.9331 28.8333 32.1169 -Arial_Bold.ttf 66 7 27.2857 41.7857 4 n 9.7903 27.7857 31.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 5 P -0.2752 32.0844 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 6 o 9.8422 31.0065 32.1169 -Arial_Bold.ttf 66 7 27.2857 41.7857 7 e 9.7700 29.4113 32.1169 -Arial_Bold.ttf 66 7 27.2857 41.7857 8 : 11.0216 8.1385 30.6732 -Arial_Bold.ttf 66 7 27.2857 41.7857 9 r 9.8605 19.8615 31.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 10 l -0.3014 8.1385 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 11 i -0.1688 8.1385 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 12 1 0.0126 18.2359 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 13 | 0.1495 5.8615 54.5563 -Arial_Bold.ttf 66 7 27.2857 41.7857 14 N -0.0810 33.3463 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 15 f -0.4635 20.6948 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 16 g 9.6974 29.5628 43.6580 -Arial_Bold.ttf 66 7 27.2857 41.7857 17 d -0.1272 29.5628 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 18 W -0.2943 54.7706 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 19 s 9.7877 28.3333 32.1169 -Arial_Bold.ttf 66 7 27.2857 41.7857 20 c 9.7260 27.5000 32.1169 -Arial_Bold.ttf 66 7 27.2857 41.7857 21 u 11.3233 27.7857 30.8874 -Arial_Bold.ttf 66 7 27.2857 41.7857 22 3 -0.1377 27.2857 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 23 ~ 15.6075 30.4589 10.8117 -Arial_Bold.ttf 66 7 27.2857 41.7857 24 # -0.1545 30.3874 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 25 O -0.8580 40.3420 43.4589 -Arial_Bold.ttf 66 7 27.2857 41.7857 26 ` -0.1876 12.7706 8.3203 -Arial_Bold.ttf 66 7 27.2857 41.7857 27 @ -0.3869 55.2706 56.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 28 F -0.5340 29.0152 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 29 S -0.9094 33.8615 43.4589 -Arial_Bold.ttf 66 7 27.2857 41.7857 30 p 10.0324 29.5628 43.4437 -Arial_Bold.ttf 66 7 27.2857 41.7857 31 “ -0.3893 22.4719 17.6883 -Arial_Bold.ttf 66 7 27.2857 41.7857 32 % -0.6357 44.9329 43.6580 -Arial_Bold.ttf 66 7 27.2857 41.7857 33 £ -0.5216 31.1883 42.4286 -Arial_Bold.ttf 66 7 27.2857 41.7857 34 . 33.6543 8.1385 8.1385 -Arial_Bold.ttf 66 7 27.2857 41.7857 35 2 -0.3274 27.2857 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 36 5 0.3190 28.0000 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 37 m 10.1762 44.6104 31.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 38 V 0.0957 38.4935 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 39 6 -0.2833 27.2857 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 40 w 11.2677 45.5065 30.6732 -Arial_Bold.ttf 66 7 27.2857 41.7857 41 T -0.3931 33.2511 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 42 M -0.3288 39.5584 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 43 G -1.1413 39.1126 43.4589 -Arial_Bold.ttf 66 7 27.2857 41.7857 44 b -0.0952 29.5628 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 45 9 -0.2195 27.2857 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 46 ; 11.2132 8.8680 40.4372 -Arial_Bold.ttf 66 7 27.2857 41.7857 47 D -0.0831 35.0909 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 48 L -0.1869 29.9113 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 49 y 10.9137 31.6883 42.4286 -Arial_Bold.ttf 66 7 27.2857 41.7857 50 ‘ -0.1143 8.8680 17.6883 -Arial_Bold.ttf 66 7 27.2857 41.7857 51 \ -0.3135 17.6883 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 52 R -0.1143 37.0498 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 53 < 5.0737 28.0000 31.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 54 4 0.2111 29.9589 41.7857 -Arial_Bold.ttf 66 7 27.2857 41.7857 55 8 -0.1188 27.2857 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 56 0 -0.7516 27.2857 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 57 A -0.4060 40.5887 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 58 E -0.2417 32.0844 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 59 B -0.3935 35.0909 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 60 v 11.0216 31.6883 30.6732 -Arial_Bold.ttf 66 7 27.2857 41.7857 61 k -0.3917 28.5152 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 62 J -0.3226 26.9524 42.7294 -Arial_Bold.ttf 66 7 27.2857 41.7857 63 U -0.2202 33.3463 42.7294 -Arial_Bold.ttf 66 7 27.2857 41.7857 64 j -0.2635 15.2294 53.7554 -Arial_Bold.ttf 66 7 27.2857 41.7857 65 ( -0.3417 14.0000 53.5411 -Arial_Bold.ttf 66 7 27.2857 41.7857 66 7 0.1522 27.2857 41.7857 -Arial_Bold.ttf 66 7 27.2857 41.7857 67 § -0.6345 28.5152 54.7706 -Arial_Bold.ttf 66 7 27.2857 41.7857 68 $ -3.3541 27.7857 50.8680 -Arial_Bold.ttf 66 7 27.2857 41.7857 69 € -1.0166 31.6883 42.9437 -Arial_Bold.ttf 66 7 27.2857 41.7857 70 / -0.0929 17.6883 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 71 C -1.0256 36.6537 42.7294 -Arial_Bold.ttf 66 7 27.2857 41.7857 72 * -0.3371 19.7424 19.1320 -Arial_Bold.ttf 66 7 27.2857 41.7857 73 ” -0.4266 22.4719 17.6883 -Arial_Bold.ttf 66 7 27.2857 41.7857 74 ? -0.3740 30.4589 42.2143 -Arial_Bold.ttf 66 7 27.2857 41.7857 75 { -0.3512 19.6472 53.9697 -Arial_Bold.ttf 66 7 27.2857 41.7857 76 } -0.2595 19.6472 53.9697 -Arial_Bold.ttf 66 7 27.2857 41.7857 77 , 33.4624 8.8680 17.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 78 I -0.4074 8.1385 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 79 ° -0.5226 18.0844 18.0844 -Arial_Bold.ttf 66 7 27.2857 41.7857 80 K -0.3536 37.7641 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 81 H -0.4600 33.3463 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 82 q 9.4589 29.5628 43.4437 -Arial_Bold.ttf 66 7 27.2857 41.7857 83 & -0.6893 38.8117 42.4286 -Arial_Bold.ttf 66 7 27.2857 41.7857 84 ’ -0.4819 8.8680 17.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 85 [ -0.1786 15.2294 53.5411 -Arial_Bold.ttf 66 7 27.2857 41.7857 86 - 23.5555 15.7294 6.9091 -Arial_Bold.ttf 66 7 27.2857 41.7857 87 Y -0.1726 41.0563 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 88 Q -0.9887 41.7857 46.6472 -Arial_Bold.ttf 66 7 27.2857 41.7857 89 " -0.1024 21.5909 15.2294 -Arial_Bold.ttf 66 7 27.2857 41.7857 90 ! -0.0877 8.1385 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 91 x 11.0923 32.4177 30.6732 -Arial_Bold.ttf 66 7 27.2857 41.7857 92 ) -0.5431 14.0000 53.5411 -Arial_Bold.ttf 66 7 27.2857 41.7857 93 = 11.4596 29.2294 19.2835 -Arial_Bold.ttf 66 7 27.2857 41.7857 94 + 7.3712 28.8961 28.8961 -Arial_Bold.ttf 66 7 27.2857 41.7857 95 X -0.2188 38.9935 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 96 » 13.1575 26.9524 26.5563 -Arial_Bold.ttf 66 7 27.2857 41.7857 97 ' -0.2448 8.1385 15.2294 -Arial_Bold.ttf 66 7 27.2857 41.7857 98 ¢ -0.2150 28.7294 54.4372 -Arial_Bold.ttf 66 7 27.2857 41.7857 99 Z -0.2022 34.4805 42.0000 -Arial_Bold.ttf 66 7 27.2857 41.7857 100 > 5.2973 28.0000 31.9026 -Arial_Bold.ttf 66 7 27.2857 41.7857 101 ® -0.1889 43.2294 42.4286 -Arial_Bold.ttf 66 7 27.2857 41.7857 102 © -0.3155 43.9589 42.4286 -Arial_Bold.ttf 66 7 27.2857 41.7857 103 ] -0.4326 15.2294 53.5411 -Arial_Bold.ttf 66 7 27.2857 41.7857 104 é -0.9032 29.4113 42.8961 -Arial_Bold.ttf 66 7 27.2857 41.7857 105 z 11.3763 26.7706 30.6732 -Arial_Bold.ttf 66 7 27.2857 41.7857 106 _ 47.1899 33.4654 5.8615 -Arial_Bold.ttf 66 7 27.2857 41.7857 107 ¥ -0.3788 30.2056 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 1 t 1.0522 18.1169 41.3810 -Arial_Bold.ttf 67 § 28.5152 54.7706 2 h 0.2831 27.7857 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 3 a 10.2238 28.8333 32.1169 -Arial_Bold.ttf 67 § 28.5152 54.7706 4 n 10.4788 27.7857 31.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 5 P 0.2955 32.0844 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 6 o 10.0843 31.0065 32.1169 -Arial_Bold.ttf 67 § 28.5152 54.7706 7 e 10.6179 29.4113 32.1169 -Arial_Bold.ttf 67 § 28.5152 54.7706 8 : 11.3921 8.1385 30.6732 -Arial_Bold.ttf 67 § 28.5152 54.7706 9 r 10.2462 19.8615 31.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 10 l 0.1429 8.1385 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 11 i -0.0600 8.1385 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 12 1 -0.0145 18.2359 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 13 | 0.4052 5.8615 54.5563 -Arial_Bold.ttf 67 § 28.5152 54.7706 14 N 0.3321 33.3463 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 15 f -0.2645 20.6948 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 16 g 10.0972 29.5628 43.6580 -Arial_Bold.ttf 67 § 28.5152 54.7706 17 d 0.2097 29.5628 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 18 W 0.4195 54.7706 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 19 s 10.2284 28.3333 32.1169 -Arial_Bold.ttf 67 § 28.5152 54.7706 20 c 10.1329 27.5000 32.1169 -Arial_Bold.ttf 67 § 28.5152 54.7706 21 u 11.5276 27.7857 30.8874 -Arial_Bold.ttf 67 § 28.5152 54.7706 22 3 0.2486 27.2857 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 23 ~ 16.3738 30.4589 10.8117 -Arial_Bold.ttf 67 § 28.5152 54.7706 24 # 0.5145 30.3874 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 25 O -0.7834 40.3420 43.4589 -Arial_Bold.ttf 67 § 28.5152 54.7706 26 ` 0.2850 12.7706 8.3203 -Arial_Bold.ttf 67 § 28.5152 54.7706 27 @ 0.1639 55.2706 56.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 28 F 0.1429 29.0152 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 29 S -0.5340 33.8615 43.4589 -Arial_Bold.ttf 67 § 28.5152 54.7706 30 p 10.4319 29.5628 43.4437 -Arial_Bold.ttf 67 § 28.5152 54.7706 31 “ 0.2167 22.4719 17.6883 -Arial_Bold.ttf 67 § 28.5152 54.7706 32 % 0.2774 44.9329 43.6580 -Arial_Bold.ttf 67 § 28.5152 54.7706 33 £ 0.1545 31.1883 42.4286 -Arial_Bold.ttf 67 § 28.5152 54.7706 34 . 33.9029 8.1385 8.1385 -Arial_Bold.ttf 67 § 28.5152 54.7706 35 2 0.0557 27.2857 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 36 5 0.4359 28.0000 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 37 m 10.4443 44.6104 31.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 38 V 0.1226 38.4935 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 39 6 -0.0202 27.2857 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 40 w 11.4818 45.5065 30.6732 -Arial_Bold.ttf 67 § 28.5152 54.7706 41 T 0.2774 33.2511 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 42 M 0.4060 39.5584 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 43 G -0.5509 39.1126 43.4589 -Arial_Bold.ttf 67 § 28.5152 54.7706 44 b 0.2819 29.5628 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 45 9 0.3097 27.2857 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 46 ; 11.7342 8.8680 40.4372 -Arial_Bold.ttf 67 § 28.5152 54.7706 47 D 0.5788 35.0909 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 48 L 0.5242 29.9113 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 49 y 11.9271 31.6883 42.4286 -Arial_Bold.ttf 67 § 28.5152 54.7706 50 ‘ 0.3455 8.8680 17.6883 -Arial_Bold.ttf 67 § 28.5152 54.7706 51 \ -0.0183 17.6883 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 52 R 0.3883 37.0498 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 53 < 5.8668 28.0000 31.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 54 4 0.1524 29.9589 41.7857 -Arial_Bold.ttf 67 § 28.5152 54.7706 55 8 0.3333 27.2857 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 56 0 0.2202 27.2857 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 57 A 0.5621 40.5887 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 58 E 0.1135 32.0844 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 59 B 0.1688 35.0909 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 60 v 11.8018 31.6883 30.6732 -Arial_Bold.ttf 67 § 28.5152 54.7706 61 k 0.3333 28.5152 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 62 J 0.1665 26.9524 42.7294 -Arial_Bold.ttf 67 § 28.5152 54.7706 63 U 0.6600 33.3463 42.7294 -Arial_Bold.ttf 67 § 28.5152 54.7706 64 j 0.0452 15.2294 53.7554 -Arial_Bold.ttf 67 § 28.5152 54.7706 65 ( 0.3476 14.0000 53.5411 -Arial_Bold.ttf 67 § 28.5152 54.7706 66 7 0.1926 27.2857 41.7857 -Arial_Bold.ttf 67 § 28.5152 54.7706 67 § -0.0274 28.5152 54.7706 -Arial_Bold.ttf 67 § 28.5152 54.7706 68 $ -2.5791 27.7857 50.8680 -Arial_Bold.ttf 67 § 28.5152 54.7706 69 € -0.5009 31.6883 42.9437 -Arial_Bold.ttf 67 § 28.5152 54.7706 70 / 0.3476 17.6883 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 71 C -0.6652 36.6537 42.7294 -Arial_Bold.ttf 67 § 28.5152 54.7706 72 * 0.2804 19.7424 19.1320 -Arial_Bold.ttf 67 § 28.5152 54.7706 73 ” 0.1193 22.4719 17.6883 -Arial_Bold.ttf 67 § 28.5152 54.7706 74 ? -0.0887 30.4589 42.2143 -Arial_Bold.ttf 67 § 28.5152 54.7706 75 { 0.1488 19.6472 53.9697 -Arial_Bold.ttf 67 § 28.5152 54.7706 76 } 0.0984 19.6472 53.9697 -Arial_Bold.ttf 67 § 28.5152 54.7706 77 , 33.9067 8.8680 17.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 78 I -0.0228 8.1385 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 79 ° -0.1857 18.0844 18.0844 -Arial_Bold.ttf 67 § 28.5152 54.7706 80 K 0.3833 37.7641 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 81 H -0.2438 33.3463 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 82 q 10.2998 29.5628 43.4437 -Arial_Bold.ttf 67 § 28.5152 54.7706 83 & -0.1357 38.8117 42.4286 -Arial_Bold.ttf 67 § 28.5152 54.7706 84 ’ 0.1226 8.8680 17.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 85 [ 0.1903 15.2294 53.5411 -Arial_Bold.ttf 67 § 28.5152 54.7706 86 - 23.9218 15.7294 6.9091 -Arial_Bold.ttf 67 § 28.5152 54.7706 87 Y 0.4728 41.0563 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 88 Q -0.2611 41.7857 46.6472 -Arial_Bold.ttf 67 § 28.5152 54.7706 89 " 0.0988 21.5909 15.2294 -Arial_Bold.ttf 67 § 28.5152 54.7706 90 ! 0.5095 8.1385 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 91 x 11.8959 32.4177 30.6732 -Arial_Bold.ttf 67 § 28.5152 54.7706 92 ) 0.0220 14.0000 53.5411 -Arial_Bold.ttf 67 § 28.5152 54.7706 93 = 11.5697 29.2294 19.2835 -Arial_Bold.ttf 67 § 28.5152 54.7706 94 + 7.3865 28.8961 28.8961 -Arial_Bold.ttf 67 § 28.5152 54.7706 95 X 0.3357 38.9935 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 96 » 13.6394 26.9524 26.5563 -Arial_Bold.ttf 67 § 28.5152 54.7706 97 ' 0.2345 8.1385 15.2294 -Arial_Bold.ttf 67 § 28.5152 54.7706 98 ¢ 0.4653 28.7294 54.4372 -Arial_Bold.ttf 67 § 28.5152 54.7706 99 Z -0.0333 34.4805 42.0000 -Arial_Bold.ttf 67 § 28.5152 54.7706 100 > 5.5233 28.0000 31.9026 -Arial_Bold.ttf 67 § 28.5152 54.7706 101 ® -0.0819 43.2294 42.4286 -Arial_Bold.ttf 67 § 28.5152 54.7706 102 © -0.1833 43.9589 42.4286 -Arial_Bold.ttf 67 § 28.5152 54.7706 103 ] 0.1824 15.2294 53.5411 -Arial_Bold.ttf 67 § 28.5152 54.7706 104 é -0.6384 29.4113 42.8961 -Arial_Bold.ttf 67 § 28.5152 54.7706 105 z 11.6387 26.7706 30.6732 -Arial_Bold.ttf 67 § 28.5152 54.7706 106 _ 47.8570 33.4654 5.8615 -Arial_Bold.ttf 67 § 28.5152 54.7706 107 ¥ 0.1720 30.2056 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 1 t 3.9553 18.1169 41.3810 -Arial_Bold.ttf 68 $ 27.7857 50.8680 2 h 2.9565 27.7857 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 3 a 13.0851 28.8333 32.1169 -Arial_Bold.ttf 68 $ 27.7857 50.8680 4 n 13.1884 27.7857 31.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 5 P 2.8979 32.0844 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 6 o 12.9668 31.0065 32.1169 -Arial_Bold.ttf 68 $ 27.7857 50.8680 7 e 13.0956 29.4113 32.1169 -Arial_Bold.ttf 68 $ 27.7857 50.8680 8 : 14.3176 8.1385 30.6732 -Arial_Bold.ttf 68 $ 27.7857 50.8680 9 r 13.0565 19.8615 31.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 10 l 2.8210 8.1385 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 11 i 2.8791 8.1385 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 12 1 2.8134 18.2359 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 13 | 3.1539 5.8615 54.5563 -Arial_Bold.ttf 68 $ 27.7857 50.8680 14 N 2.9017 33.3463 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 15 f 2.8474 20.6948 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 16 g 13.1053 29.5628 43.6580 -Arial_Bold.ttf 68 $ 27.7857 50.8680 17 d 2.7747 29.5628 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 18 W 2.7630 54.7706 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 19 s 13.1265 28.3333 32.1169 -Arial_Bold.ttf 68 $ 27.7857 50.8680 20 c 12.7703 27.5000 32.1169 -Arial_Bold.ttf 68 $ 27.7857 50.8680 21 u 14.0748 27.7857 30.8874 -Arial_Bold.ttf 68 $ 27.7857 50.8680 22 3 3.0982 27.2857 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 23 ~ 19.0570 30.4589 10.8117 -Arial_Bold.ttf 68 $ 27.7857 50.8680 24 # 2.9922 30.3874 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 25 O 2.2492 40.3420 43.4589 -Arial_Bold.ttf 68 $ 27.7857 50.8680 26 ` 2.9422 12.7706 8.3203 -Arial_Bold.ttf 68 $ 27.7857 50.8680 27 @ 2.8898 55.2706 56.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 28 F 3.0396 29.0152 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 29 S 2.0261 33.8615 43.4589 -Arial_Bold.ttf 68 $ 27.7857 50.8680 30 p 13.0063 29.5628 43.4437 -Arial_Bold.ttf 68 $ 27.7857 50.8680 31 “ 3.1839 22.4719 17.6883 -Arial_Bold.ttf 68 $ 27.7857 50.8680 32 % 2.6732 44.9329 43.6580 -Arial_Bold.ttf 68 $ 27.7857 50.8680 33 £ 2.6889 31.1883 42.4286 -Arial_Bold.ttf 68 $ 27.7857 50.8680 34 . 36.9453 8.1385 8.1385 -Arial_Bold.ttf 68 $ 27.7857 50.8680 35 2 3.1755 27.2857 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 36 5 3.4045 28.0000 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 37 m 13.1956 44.6104 31.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 38 V 3.1422 38.4935 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 39 6 3.0196 27.2857 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 40 w 14.2643 45.5065 30.6732 -Arial_Bold.ttf 68 $ 27.7857 50.8680 41 T 3.0877 33.2511 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 42 M 2.7706 39.5584 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 43 G 2.2294 39.1126 43.4589 -Arial_Bold.ttf 68 $ 27.7857 50.8680 44 b 2.8753 29.5628 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 45 9 2.9708 27.2857 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 46 ; 14.3750 8.8680 40.4372 -Arial_Bold.ttf 68 $ 27.7857 50.8680 47 D 2.8799 35.0909 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 48 L 2.8765 29.9113 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 49 y 14.4236 31.6883 42.4286 -Arial_Bold.ttf 68 $ 27.7857 50.8680 50 ‘ 3.0208 8.8680 17.6883 -Arial_Bold.ttf 68 $ 27.7857 50.8680 51 \ 2.8017 17.6883 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 52 R 2.9601 37.0498 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 53 < 8.3302 28.0000 31.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 54 4 3.1791 29.9589 41.7857 -Arial_Bold.ttf 68 $ 27.7857 50.8680 55 8 2.9136 27.2857 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 56 0 2.7701 27.2857 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 57 A 2.9682 40.5887 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 58 E 3.1605 32.0844 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 59 B 2.8291 35.0909 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 60 v 14.3190 31.6883 30.6732 -Arial_Bold.ttf 68 $ 27.7857 50.8680 61 k 2.8791 28.5152 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 62 J 2.8194 26.9524 42.7294 -Arial_Bold.ttf 68 $ 27.7857 50.8680 63 U 3.2605 33.3463 42.7294 -Arial_Bold.ttf 68 $ 27.7857 50.8680 64 j 3.3202 15.2294 53.7554 -Arial_Bold.ttf 68 $ 27.7857 50.8680 65 ( 2.7577 14.0000 53.5411 -Arial_Bold.ttf 68 $ 27.7857 50.8680 66 7 3.2565 27.2857 41.7857 -Arial_Bold.ttf 68 $ 27.7857 50.8680 67 § 2.7936 28.5152 54.7706 -Arial_Bold.ttf 68 $ 27.7857 50.8680 68 $ 0.1214 27.7857 50.8680 -Arial_Bold.ttf 68 $ 27.7857 50.8680 69 € 2.2966 31.6883 42.9437 -Arial_Bold.ttf 68 $ 27.7857 50.8680 70 / 3.0755 17.6883 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 71 C 2.0937 36.6537 42.7294 -Arial_Bold.ttf 68 $ 27.7857 50.8680 72 * 3.0898 19.7424 19.1320 -Arial_Bold.ttf 68 $ 27.7857 50.8680 73 ” 2.8253 22.4719 17.6883 -Arial_Bold.ttf 68 $ 27.7857 50.8680 74 ? 2.8644 30.4589 42.2143 -Arial_Bold.ttf 68 $ 27.7857 50.8680 75 { 2.9665 19.6472 53.9697 -Arial_Bold.ttf 68 $ 27.7857 50.8680 76 } 2.6922 19.6472 53.9697 -Arial_Bold.ttf 68 $ 27.7857 50.8680 77 , 37.0127 8.8680 17.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 78 I 3.0624 8.1385 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 79 ° 2.8577 18.0844 18.0844 -Arial_Bold.ttf 68 $ 27.7857 50.8680 80 K 3.0450 37.7641 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 81 H 2.7517 33.3463 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 82 q 12.9039 29.5628 43.4437 -Arial_Bold.ttf 68 $ 27.7857 50.8680 83 & 2.8422 38.8117 42.4286 -Arial_Bold.ttf 68 $ 27.7857 50.8680 84 ’ 3.0617 8.8680 17.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 85 [ 2.7656 15.2294 53.5411 -Arial_Bold.ttf 68 $ 27.7857 50.8680 86 - 26.7370 15.7294 6.9091 -Arial_Bold.ttf 68 $ 27.7857 50.8680 87 Y 3.0065 41.0563 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 88 Q 2.4991 41.7857 46.6472 -Arial_Bold.ttf 68 $ 27.7857 50.8680 89 " 2.7823 21.5909 15.2294 -Arial_Bold.ttf 68 $ 27.7857 50.8680 90 ! 3.1079 8.1385 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 91 x 14.4250 32.4177 30.6732 -Arial_Bold.ttf 68 $ 27.7857 50.8680 92 ) 2.6049 14.0000 53.5411 -Arial_Bold.ttf 68 $ 27.7857 50.8680 93 = 14.1795 29.2294 19.2835 -Arial_Bold.ttf 68 $ 27.7857 50.8680 94 + 9.7876 28.8961 28.8961 -Arial_Bold.ttf 68 $ 27.7857 50.8680 95 X 2.8648 38.9935 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 96 » 16.4830 26.9524 26.5563 -Arial_Bold.ttf 68 $ 27.7857 50.8680 97 ' 2.7803 8.1385 15.2294 -Arial_Bold.ttf 68 $ 27.7857 50.8680 98 ¢ 3.0496 28.7294 54.4372 -Arial_Bold.ttf 68 $ 27.7857 50.8680 99 Z 2.8253 34.4805 42.0000 -Arial_Bold.ttf 68 $ 27.7857 50.8680 100 > 8.4978 28.0000 31.9026 -Arial_Bold.ttf 68 $ 27.7857 50.8680 101 ® 2.5537 43.2294 42.4286 -Arial_Bold.ttf 68 $ 27.7857 50.8680 102 © 2.8793 43.9589 42.4286 -Arial_Bold.ttf 68 $ 27.7857 50.8680 103 ] 2.9648 15.2294 53.5411 -Arial_Bold.ttf 68 $ 27.7857 50.8680 104 é 2.2739 29.4113 42.8961 -Arial_Bold.ttf 68 $ 27.7857 50.8680 105 z 14.1786 26.7706 30.6732 -Arial_Bold.ttf 68 $ 27.7857 50.8680 106 _ 50.3742 33.4654 5.8615 -Arial_Bold.ttf 68 $ 27.7857 50.8680 107 ¥ 3.0398 30.2056 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 1 t 1.6425 18.1169 41.3810 -Arial_Bold.ttf 69 € 31.6883 42.9437 2 h 0.9953 27.7857 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 3 a 10.8126 28.8333 32.1169 -Arial_Bold.ttf 69 € 31.6883 42.9437 4 n 10.6578 27.7857 31.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 5 P 0.9842 32.0844 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 6 o 11.1465 31.0065 32.1169 -Arial_Bold.ttf 69 € 31.6883 42.9437 7 e 10.5859 29.4113 32.1169 -Arial_Bold.ttf 69 € 31.6883 42.9437 8 : 11.8965 8.1385 30.6732 -Arial_Bold.ttf 69 € 31.6883 42.9437 9 r 10.7231 19.8615 31.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 10 l 0.7437 8.1385 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 11 i 0.9894 8.1385 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 12 1 1.2304 18.2359 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 13 | 0.5449 5.8615 54.5563 -Arial_Bold.ttf 69 € 31.6883 42.9437 14 N 0.5235 33.3463 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 15 f 0.5384 20.6948 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 16 g 10.6221 29.5628 43.6580 -Arial_Bold.ttf 69 € 31.6883 42.9437 17 d 0.7392 29.5628 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 18 W 0.6697 54.7706 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 19 s 10.5995 28.3333 32.1169 -Arial_Bold.ttf 69 € 31.6883 42.9437 20 c 10.8211 27.5000 32.1169 -Arial_Bold.ttf 69 € 31.6883 42.9437 21 u 12.1337 27.7857 30.8874 -Arial_Bold.ttf 69 € 31.6883 42.9437 22 3 0.3271 27.2857 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 23 ~ 16.6740 30.4589 10.8117 -Arial_Bold.ttf 69 € 31.6883 42.9437 24 # 0.9797 30.3874 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 25 O -0.0690 40.3420 43.4589 -Arial_Bold.ttf 69 € 31.6883 42.9437 26 ` 0.6326 12.7706 8.3203 -Arial_Bold.ttf 69 € 31.6883 42.9437 27 @ 0.8927 55.2706 56.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 28 F 0.5566 29.0152 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 29 S 0.1476 33.8615 43.4589 -Arial_Bold.ttf 69 € 31.6883 42.9437 30 p 10.8268 29.5628 43.4437 -Arial_Bold.ttf 69 € 31.6883 42.9437 31 “ 0.3992 22.4719 17.6883 -Arial_Bold.ttf 69 € 31.6883 42.9437 32 % 0.4021 44.9329 43.6580 -Arial_Bold.ttf 69 € 31.6883 42.9437 33 £ 0.2104 31.1883 42.4286 -Arial_Bold.ttf 69 € 31.6883 42.9437 34 . 34.6417 8.1385 8.1385 -Arial_Bold.ttf 69 € 31.6883 42.9437 35 2 0.7711 27.2857 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 36 5 0.9437 28.0000 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 37 m 11.0094 44.6104 31.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 38 V 0.8633 38.4935 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 39 6 0.8294 27.2857 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 40 w 11.9146 45.5065 30.6732 -Arial_Bold.ttf 69 € 31.6883 42.9437 41 T 0.4761 33.2511 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 42 M 0.6626 39.5584 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 43 G 0.0635 39.1126 43.4589 -Arial_Bold.ttf 69 € 31.6883 42.9437 44 b 0.5378 29.5628 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 45 9 0.6332 27.2857 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 46 ; 12.0192 8.8680 40.4372 -Arial_Bold.ttf 69 € 31.6883 42.9437 47 D 0.5364 35.0909 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 48 L 0.7652 29.9113 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 49 y 11.9872 31.6883 42.4286 -Arial_Bold.ttf 69 € 31.6883 42.9437 50 ‘ 0.3597 8.8680 17.6883 -Arial_Bold.ttf 69 € 31.6883 42.9437 51 \ 0.5618 17.6883 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 52 R 0.6570 37.0498 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 53 < 6.0077 28.0000 31.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 54 4 0.8340 29.9589 41.7857 -Arial_Bold.ttf 69 € 31.6883 42.9437 55 8 0.9128 27.2857 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 56 0 0.6878 27.2857 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 57 A 0.9523 40.5887 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 58 E 0.7287 32.0844 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 59 B 0.8666 35.0909 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 60 v 12.3051 31.6883 30.6732 -Arial_Bold.ttf 69 € 31.6883 42.9437 61 k 0.9316 28.5152 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 62 J 0.6378 26.9524 42.7294 -Arial_Bold.ttf 69 € 31.6883 42.9437 63 U 0.4300 33.3463 42.7294 -Arial_Bold.ttf 69 € 31.6883 42.9437 64 j 0.5223 15.2294 53.7554 -Arial_Bold.ttf 69 € 31.6883 42.9437 65 ( 0.7554 14.0000 53.5411 -Arial_Bold.ttf 69 € 31.6883 42.9437 66 7 1.0756 27.2857 41.7857 -Arial_Bold.ttf 69 € 31.6883 42.9437 67 § 0.5159 28.5152 54.7706 -Arial_Bold.ttf 69 € 31.6883 42.9437 68 $ -2.1021 27.7857 50.8680 -Arial_Bold.ttf 69 € 31.6883 42.9437 69 € -0.0500 31.6883 42.9437 -Arial_Bold.ttf 69 € 31.6883 42.9437 70 / 0.6780 17.6883 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 71 C 0.2488 36.6537 42.7294 -Arial_Bold.ttf 69 € 31.6883 42.9437 72 * 0.7247 19.7424 19.1320 -Arial_Bold.ttf 69 € 31.6883 42.9437 73 ” 0.9529 22.4719 17.6883 -Arial_Bold.ttf 69 € 31.6883 42.9437 74 ? 0.7692 30.4589 42.2143 -Arial_Bold.ttf 69 € 31.6883 42.9437 75 { 0.5189 19.6472 53.9697 -Arial_Bold.ttf 69 € 31.6883 42.9437 76 } 0.6985 19.6472 53.9697 -Arial_Bold.ttf 69 € 31.6883 42.9437 77 , 34.3361 8.8680 17.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 78 I 0.7737 8.1385 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 79 ° 0.4521 18.0844 18.0844 -Arial_Bold.ttf 69 € 31.6883 42.9437 80 K 0.7463 37.7641 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 81 H 0.9350 33.3463 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 82 q 10.5131 29.5628 43.4437 -Arial_Bold.ttf 69 € 31.6883 42.9437 83 & 0.5963 38.8117 42.4286 -Arial_Bold.ttf 69 € 31.6883 42.9437 84 ’ 0.3747 8.8680 17.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 85 [ 0.3481 15.2294 53.5411 -Arial_Bold.ttf 69 € 31.6883 42.9437 86 - 24.3655 15.7294 6.9091 -Arial_Bold.ttf 69 € 31.6883 42.9437 87 Y 0.7523 41.0563 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 88 Q 0.0917 41.7857 46.6472 -Arial_Bold.ttf 69 € 31.6883 42.9437 89 " 0.7023 21.5909 15.2294 -Arial_Bold.ttf 69 € 31.6883 42.9437 90 ! 0.6885 8.1385 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 91 x 12.1039 32.4177 30.6732 -Arial_Bold.ttf 69 € 31.6883 42.9437 92 ) 0.7416 14.0000 53.5411 -Arial_Bold.ttf 69 € 31.6883 42.9437 93 = 12.0420 29.2294 19.2835 -Arial_Bold.ttf 69 € 31.6883 42.9437 94 + 8.1173 28.8961 28.8961 -Arial_Bold.ttf 69 € 31.6883 42.9437 95 X 0.9939 38.9935 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 96 » 13.9393 26.9524 26.5563 -Arial_Bold.ttf 69 € 31.6883 42.9437 97 ' 0.6197 8.1385 15.2294 -Arial_Bold.ttf 69 € 31.6883 42.9437 98 ¢ 0.5916 28.7294 54.4372 -Arial_Bold.ttf 69 € 31.6883 42.9437 99 Z 0.8604 34.4805 42.0000 -Arial_Bold.ttf 69 € 31.6883 42.9437 100 > 6.1008 28.0000 31.9026 -Arial_Bold.ttf 69 € 31.6883 42.9437 101 ® 0.6628 43.2294 42.4286 -Arial_Bold.ttf 69 € 31.6883 42.9437 102 © 0.4235 43.9589 42.4286 -Arial_Bold.ttf 69 € 31.6883 42.9437 103 ] 0.9135 15.2294 53.5411 -Arial_Bold.ttf 69 € 31.6883 42.9437 104 é -0.0143 29.4113 42.8961 -Arial_Bold.ttf 69 € 31.6883 42.9437 105 z 11.9465 26.7706 30.6732 -Arial_Bold.ttf 69 € 31.6883 42.9437 106 _ 48.3714 33.4654 5.8615 -Arial_Bold.ttf 69 € 31.6883 42.9437 107 ¥ 0.9135 30.2056 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 1 t 0.6726 18.1169 41.3810 -Arial_Bold.ttf 70 / 17.6883 42.0000 2 h 0.1327 27.7857 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 3 a 10.0403 28.8333 32.1169 -Arial_Bold.ttf 70 / 17.6883 42.0000 4 n 9.9377 27.7857 31.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 5 P -0.2697 32.0844 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 6 o 9.7615 31.0065 32.1169 -Arial_Bold.ttf 70 / 17.6883 42.0000 7 e 10.1240 29.4113 32.1169 -Arial_Bold.ttf 70 / 17.6883 42.0000 8 : 11.1266 8.1385 30.6732 -Arial_Bold.ttf 70 / 17.6883 42.0000 9 r 9.8374 19.8615 31.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 10 l 0.0940 8.1385 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 11 i -0.2333 8.1385 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 12 1 0.0585 18.2359 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 13 | -0.1631 5.8615 54.5563 -Arial_Bold.ttf 70 / 17.6883 42.0000 14 N 0.3048 33.3463 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 15 f -0.1786 20.6948 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 16 g 9.8367 29.5628 43.6580 -Arial_Bold.ttf 70 / 17.6883 42.0000 17 d 0.1521 29.5628 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 18 W 0.2750 54.7706 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 19 s 10.0579 28.3333 32.1169 -Arial_Bold.ttf 70 / 17.6883 42.0000 20 c 10.6088 27.5000 32.1169 -Arial_Bold.ttf 70 / 17.6883 42.0000 21 u 11.2776 27.7857 30.8874 -Arial_Bold.ttf 70 / 17.6883 42.0000 22 3 0.2788 27.2857 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 23 ~ 15.9529 30.4589 10.8117 -Arial_Bold.ttf 70 / 17.6883 42.0000 24 # 0.0574 30.3874 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 25 O -0.6759 40.3420 43.4589 -Arial_Bold.ttf 70 / 17.6883 42.0000 26 ` 0.0530 12.7706 8.3203 -Arial_Bold.ttf 70 / 17.6883 42.0000 27 @ -0.4728 55.2706 56.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 28 F -0.1750 29.0152 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 29 S -0.3649 33.8615 43.4589 -Arial_Bold.ttf 70 / 17.6883 42.0000 30 p 10.1474 29.5628 43.4437 -Arial_Bold.ttf 70 / 17.6883 42.0000 31 “ 0.1469 22.4719 17.6883 -Arial_Bold.ttf 70 / 17.6883 42.0000 32 % -0.1597 44.9329 43.6580 -Arial_Bold.ttf 70 / 17.6883 42.0000 33 £ 0.0510 31.1883 42.4286 -Arial_Bold.ttf 70 / 17.6883 42.0000 34 . 33.8698 8.1385 8.1385 -Arial_Bold.ttf 70 / 17.6883 42.0000 35 2 0.1476 27.2857 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 36 5 0.1310 28.0000 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 37 m 9.8889 44.6104 31.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 38 V -0.2198 38.4935 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 39 6 -0.0045 27.2857 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 40 w 11.2776 45.5065 30.6732 -Arial_Bold.ttf 70 / 17.6883 42.0000 41 T -0.0431 33.2511 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 42 M -0.1202 39.5584 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 43 G -0.8568 39.1126 43.4589 -Arial_Bold.ttf 70 / 17.6883 42.0000 44 b 0.1819 29.5628 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 45 9 0.1826 27.2857 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 46 ; 11.3685 8.8680 40.4372 -Arial_Bold.ttf 70 / 17.6883 42.0000 47 D 0.0143 35.0909 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 48 L -0.1833 29.9113 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 49 y 11.3133 31.6883 42.4286 -Arial_Bold.ttf 70 / 17.6883 42.0000 50 ‘ 0.0871 8.8680 17.6883 -Arial_Bold.ttf 70 / 17.6883 42.0000 51 \ 0.0871 17.6883 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 52 R -0.1131 37.0498 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 53 < 5.3737 28.0000 31.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 54 4 0.1681 29.9589 41.7857 -Arial_Bold.ttf 70 / 17.6883 42.0000 55 8 -0.1405 27.2857 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 56 0 0.1917 27.2857 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 57 A -0.0774 40.5887 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 58 E 0.0143 32.0844 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 59 B 0.1560 35.0909 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 60 v 11.2554 31.6883 30.6732 -Arial_Bold.ttf 70 / 17.6883 42.0000 61 k 0.2623 28.5152 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 62 J -0.0236 26.9524 42.7294 -Arial_Bold.ttf 70 / 17.6883 42.0000 63 U -0.0955 33.3463 42.7294 -Arial_Bold.ttf 70 / 17.6883 42.0000 64 j 0.0455 15.2294 53.7554 -Arial_Bold.ttf 70 / 17.6883 42.0000 65 ( -0.0403 14.0000 53.5411 -Arial_Bold.ttf 70 / 17.6883 42.0000 66 7 0.2635 27.2857 41.7857 -Arial_Bold.ttf 70 / 17.6883 42.0000 67 § -0.3176 28.5152 54.7706 -Arial_Bold.ttf 70 / 17.6883 42.0000 68 $ -3.1591 27.7857 50.8680 -Arial_Bold.ttf 70 / 17.6883 42.0000 69 € -1.0271 31.6883 42.9437 -Arial_Bold.ttf 70 / 17.6883 42.0000 70 / -0.3762 17.6883 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 71 C -1.0856 36.6537 42.7294 -Arial_Bold.ttf 70 / 17.6883 42.0000 72 * 0.0917 19.7424 19.1320 -Arial_Bold.ttf 70 / 17.6883 42.0000 73 ” -0.0722 22.4719 17.6883 -Arial_Bold.ttf 70 / 17.6883 42.0000 74 ? -0.0504 30.4589 42.2143 -Arial_Bold.ttf 70 / 17.6883 42.0000 75 { -0.0310 19.6472 53.9697 -Arial_Bold.ttf 70 / 17.6883 42.0000 76 } -0.2143 19.6472 53.9697 -Arial_Bold.ttf 70 / 17.6883 42.0000 77 , 33.8472 8.8680 17.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 78 I -0.0805 8.1385 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 79 ° -0.2255 18.0844 18.0844 -Arial_Bold.ttf 70 / 17.6883 42.0000 80 K -0.1812 37.7641 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 81 H 0.0774 33.3463 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 82 q 10.0422 29.5628 43.4437 -Arial_Bold.ttf 70 / 17.6883 42.0000 83 & -0.4750 38.8117 42.4286 -Arial_Bold.ttf 70 / 17.6883 42.0000 84 ’ -0.0500 8.8680 17.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 85 [ 0.0635 15.2294 53.5411 -Arial_Bold.ttf 70 / 17.6883 42.0000 86 - 23.8415 15.7294 6.9091 -Arial_Bold.ttf 70 / 17.6883 42.0000 87 Y 0.0826 41.0563 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 88 Q -0.7892 41.7857 46.6472 -Arial_Bold.ttf 70 / 17.6883 42.0000 89 " -0.0826 21.5909 15.2294 -Arial_Bold.ttf 70 / 17.6883 42.0000 90 ! 0.0343 8.1385 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 91 x 11.4223 32.4177 30.6732 -Arial_Bold.ttf 70 / 17.6883 42.0000 92 ) -0.0760 14.0000 53.5411 -Arial_Bold.ttf 70 / 17.6883 42.0000 93 = 11.1532 29.2294 19.2835 -Arial_Bold.ttf 70 / 17.6883 42.0000 94 + 7.3412 28.8961 28.8961 -Arial_Bold.ttf 70 / 17.6883 42.0000 95 X -0.1357 38.9935 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 96 » 13.7010 26.9524 26.5563 -Arial_Bold.ttf 70 / 17.6883 42.0000 97 ' -0.0766 8.1385 15.2294 -Arial_Bold.ttf 70 / 17.6883 42.0000 98 ¢ -0.2364 28.7294 54.4372 -Arial_Bold.ttf 70 / 17.6883 42.0000 99 Z -0.0371 34.4805 42.0000 -Arial_Bold.ttf 70 / 17.6883 42.0000 100 > 5.4439 28.0000 31.9026 -Arial_Bold.ttf 70 / 17.6883 42.0000 101 ® -0.1383 43.2294 42.4286 -Arial_Bold.ttf 70 / 17.6883 42.0000 102 © 0.0631 43.9589 42.4286 -Arial_Bold.ttf 70 / 17.6883 42.0000 103 ] 0.0302 15.2294 53.5411 -Arial_Bold.ttf 70 / 17.6883 42.0000 104 é -0.5649 29.4113 42.8961 -Arial_Bold.ttf 70 / 17.6883 42.0000 105 z 11.2592 26.7706 30.6732 -Arial_Bold.ttf 70 / 17.6883 42.0000 106 _ 47.5882 33.4654 5.8615 -Arial_Bold.ttf 70 / 17.6883 42.0000 107 ¥ -0.1048 30.2056 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 1 t 1.6068 18.1169 41.3810 -Arial_Bold.ttf 71 C 36.6537 42.7294 2 h 0.1661 27.7857 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 3 a 10.8483 28.8333 32.1169 -Arial_Bold.ttf 71 C 36.6537 42.7294 4 n 11.0294 27.7857 31.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 5 P 0.6092 32.0844 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 6 o 10.9102 31.0065 32.1169 -Arial_Bold.ttf 71 C 36.6537 42.7294 7 e 10.9380 29.4113 32.1169 -Arial_Bold.ttf 71 C 36.6537 42.7294 8 : 11.8158 8.1385 30.6732 -Arial_Bold.ttf 71 C 36.6537 42.7294 9 r 10.8030 19.8615 31.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 10 l 0.5780 8.1385 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 11 i 0.6937 8.1385 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 12 1 0.7925 18.2359 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 13 | 0.5163 5.8615 54.5563 -Arial_Bold.ttf 71 C 36.6537 42.7294 14 N 0.4044 33.3463 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 15 f 0.6628 20.6948 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 16 g 10.8276 29.5628 43.6580 -Arial_Bold.ttf 71 C 36.6537 42.7294 17 d 0.7937 29.5628 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 18 W 0.4066 54.7706 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 19 s 10.7201 28.3333 32.1169 -Arial_Bold.ttf 71 C 36.6537 42.7294 20 c 10.7709 27.5000 32.1169 -Arial_Bold.ttf 71 C 36.6537 42.7294 21 u 12.1134 27.7857 30.8874 -Arial_Bold.ttf 71 C 36.6537 42.7294 22 3 0.9044 27.2857 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 23 ~ 16.5676 30.4589 10.8117 -Arial_Bold.ttf 71 C 36.6537 42.7294 24 # 0.6580 30.3874 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 25 O 0.0135 40.3420 43.4589 -Arial_Bold.ttf 71 C 36.6537 42.7294 26 ` 0.7242 12.7706 8.3203 -Arial_Bold.ttf 71 C 36.6537 42.7294 27 @ 0.4437 55.2706 56.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 28 F 0.5513 29.0152 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 29 S -0.0129 33.8615 43.4589 -Arial_Bold.ttf 71 C 36.6537 42.7294 30 p 11.0483 29.5628 43.4437 -Arial_Bold.ttf 71 C 36.6537 42.7294 31 “ 0.8076 22.4719 17.6883 -Arial_Bold.ttf 71 C 36.6537 42.7294 32 % 0.6715 44.9329 43.6580 -Arial_Bold.ttf 71 C 36.6537 42.7294 33 £ 0.2247 31.1883 42.4286 -Arial_Bold.ttf 71 C 36.6537 42.7294 34 . 34.8659 8.1385 8.1385 -Arial_Bold.ttf 71 C 36.6537 42.7294 35 2 0.8203 27.2857 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 36 5 0.8437 28.0000 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 37 m 10.5064 44.6104 31.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 38 V 0.8392 38.4935 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 39 6 0.8282 27.2857 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 40 w 12.5255 45.5065 30.6732 -Arial_Bold.ttf 71 C 36.6537 42.7294 41 T 0.5461 33.2511 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 42 M 0.6118 39.5584 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 43 G 0.1721 39.1126 43.4589 -Arial_Bold.ttf 71 C 36.6537 42.7294 44 b 0.8561 29.5628 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 45 9 0.8035 27.2857 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 46 ; 11.9627 8.8680 40.4372 -Arial_Bold.ttf 71 C 36.6537 42.7294 47 D 0.8763 35.0909 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 48 L 0.7892 29.9113 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 49 y 11.9646 31.6883 42.4286 -Arial_Bold.ttf 71 C 36.6537 42.7294 50 ‘ 0.7568 8.8680 17.6883 -Arial_Bold.ttf 71 C 36.6537 42.7294 51 \ 0.6788 17.6883 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 52 R 0.6259 37.0498 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 53 < 6.3684 28.0000 31.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 54 4 0.8449 29.9589 41.7857 -Arial_Bold.ttf 71 C 36.6537 42.7294 55 8 0.6550 27.2857 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 56 0 1.0745 27.2857 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 57 A 0.6983 40.5887 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 58 E 0.9089 32.0844 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 59 B 0.6818 35.0909 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 60 v 12.1239 31.6883 30.6732 -Arial_Bold.ttf 71 C 36.6537 42.7294 61 k 0.5485 28.5152 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 62 J 0.9759 26.9524 42.7294 -Arial_Bold.ttf 71 C 36.6537 42.7294 63 U 0.6907 33.3463 42.7294 -Arial_Bold.ttf 71 C 36.6537 42.7294 64 j 0.5521 15.2294 53.7554 -Arial_Bold.ttf 71 C 36.6537 42.7294 65 ( 0.8061 14.0000 53.5411 -Arial_Bold.ttf 71 C 36.6537 42.7294 66 7 0.6473 27.2857 41.7857 -Arial_Bold.ttf 71 C 36.6537 42.7294 67 § 0.4459 28.5152 54.7706 -Arial_Bold.ttf 71 C 36.6537 42.7294 68 $ -2.3687 27.7857 50.8680 -Arial_Bold.ttf 71 C 36.6537 42.7294 69 € -0.1857 31.6883 42.9437 -Arial_Bold.ttf 71 C 36.6537 42.7294 70 / 0.5949 17.6883 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 71 C 0.0676 36.6537 42.7294 -Arial_Bold.ttf 71 C 36.6537 42.7294 72 * 0.7925 19.7424 19.1320 -Arial_Bold.ttf 71 C 36.6537 42.7294 73 ” 1.1273 22.4719 17.6883 -Arial_Bold.ttf 71 C 36.6537 42.7294 74 ? 0.6918 30.4589 42.2143 -Arial_Bold.ttf 71 C 36.6537 42.7294 75 { 0.4561 19.6472 53.9697 -Arial_Bold.ttf 71 C 36.6537 42.7294 76 } 0.5666 19.6472 53.9697 -Arial_Bold.ttf 71 C 36.6537 42.7294 77 , 34.6818 8.8680 17.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 78 I 0.5352 8.1385 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 79 ° 0.6902 18.0844 18.0844 -Arial_Bold.ttf 71 C 36.6537 42.7294 80 K 0.5637 37.7641 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 81 H 0.8366 33.3463 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 82 q 10.6085 29.5628 43.4437 -Arial_Bold.ttf 71 C 36.6537 42.7294 83 & 0.4092 38.8117 42.4286 -Arial_Bold.ttf 71 C 36.6537 42.7294 84 ’ 1.0213 8.8680 17.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 85 [ 0.4240 15.2294 53.5411 -Arial_Bold.ttf 71 C 36.6537 42.7294 86 - 24.7025 15.7294 6.9091 -Arial_Bold.ttf 71 C 36.6537 42.7294 87 Y 0.7437 41.0563 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 88 Q -0.0955 41.7857 46.6472 -Arial_Bold.ttf 71 C 36.6537 42.7294 89 " 0.9054 21.5909 15.2294 -Arial_Bold.ttf 71 C 36.6537 42.7294 90 ! 0.6385 8.1385 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 91 x 11.9116 32.4177 30.6732 -Arial_Bold.ttf 71 C 36.6537 42.7294 92 ) 0.8794 14.0000 53.5411 -Arial_Bold.ttf 71 C 36.6537 42.7294 93 = 12.0894 29.2294 19.2835 -Arial_Bold.ttf 71 C 36.6537 42.7294 94 + 8.0616 28.8961 28.8961 -Arial_Bold.ttf 71 C 36.6537 42.7294 95 X 0.4961 38.9935 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 96 » 14.2955 26.9524 26.5563 -Arial_Bold.ttf 71 C 36.6537 42.7294 97 ' 0.8313 8.1385 15.2294 -Arial_Bold.ttf 71 C 36.6537 42.7294 98 ¢ 1.0082 28.7294 54.4372 -Arial_Bold.ttf 71 C 36.6537 42.7294 99 Z 0.9192 34.4805 42.0000 -Arial_Bold.ttf 71 C 36.6537 42.7294 100 > 6.2500 28.0000 31.9026 -Arial_Bold.ttf 71 C 36.6537 42.7294 101 ® 0.4318 43.2294 42.4286 -Arial_Bold.ttf 71 C 36.6537 42.7294 102 © 0.3592 43.9589 42.4286 -Arial_Bold.ttf 71 C 36.6537 42.7294 103 ] 0.6580 15.2294 53.5411 -Arial_Bold.ttf 71 C 36.6537 42.7294 104 é 0.0588 29.4113 42.8961 -Arial_Bold.ttf 71 C 36.6537 42.7294 105 z 11.9154 26.7706 30.6732 -Arial_Bold.ttf 71 C 36.6537 42.7294 106 _ 48.2929 33.4654 5.8615 -Arial_Bold.ttf 71 C 36.6537 42.7294 107 ¥ 0.8725 30.2056 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 1 t 0.9048 18.1169 41.3810 -Arial_Bold.ttf 72 * 19.7424 19.1320 2 h 0.0000 27.7857 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 3 a 10.0474 28.8333 32.1169 -Arial_Bold.ttf 72 * 19.7424 19.1320 4 n 10.1176 27.7857 31.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 5 P -0.0571 32.0844 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 6 o 10.1643 31.0065 32.1169 -Arial_Bold.ttf 72 * 19.7424 19.1320 7 e 9.8915 29.4113 32.1169 -Arial_Bold.ttf 72 * 19.7424 19.1320 8 : 11.4951 8.1385 30.6732 -Arial_Bold.ttf 72 * 19.7424 19.1320 9 r 10.0348 19.8615 31.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 10 l 0.0545 8.1385 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 11 i 0.1000 8.1385 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 12 1 0.0181 18.2359 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 13 | -0.2060 5.8615 54.5563 -Arial_Bold.ttf 72 * 19.7424 19.1320 14 N 0.0038 33.3463 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 15 f -0.0369 20.6948 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 16 g 9.9855 29.5628 43.6580 -Arial_Bold.ttf 72 * 19.7424 19.1320 17 d 0.1145 29.5628 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 18 W 0.2326 54.7706 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 19 s 9.9512 28.3333 32.1169 -Arial_Bold.ttf 72 * 19.7424 19.1320 20 c 10.0700 27.5000 32.1169 -Arial_Bold.ttf 72 * 19.7424 19.1320 21 u 11.2078 27.7857 30.8874 -Arial_Bold.ttf 72 * 19.7424 19.1320 22 3 -0.0798 27.2857 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 23 ~ 15.6898 30.4589 10.8117 -Arial_Bold.ttf 72 * 19.7424 19.1320 24 # 0.1053 30.3874 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 25 O -0.7854 40.3420 43.4589 -Arial_Bold.ttf 72 * 19.7424 19.1320 26 ` -0.0643 12.7706 8.3203 -Arial_Bold.ttf 72 * 19.7424 19.1320 27 @ -0.0310 55.2706 56.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 28 F 0.3024 29.0152 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 29 S -0.6937 33.8615 43.4589 -Arial_Bold.ttf 72 * 19.7424 19.1320 30 p 10.0246 29.5628 43.4437 -Arial_Bold.ttf 72 * 19.7424 19.1320 31 “ 0.0135 22.4719 17.6883 -Arial_Bold.ttf 72 * 19.7424 19.1320 32 % -0.3766 44.9329 43.6580 -Arial_Bold.ttf 72 * 19.7424 19.1320 33 £ -0.2683 31.1883 42.4286 -Arial_Bold.ttf 72 * 19.7424 19.1320 34 . 34.0010 8.1385 8.1385 -Arial_Bold.ttf 72 * 19.7424 19.1320 35 2 0.2405 27.2857 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 36 5 0.1369 28.0000 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 37 m 9.8551 44.6104 31.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 38 V -0.0169 38.4935 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 39 6 0.0488 27.2857 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 40 w 11.3614 45.5065 30.6732 -Arial_Bold.ttf 72 * 19.7424 19.1320 41 T 0.1879 33.2511 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 42 M 0.1600 39.5584 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 43 G -0.6968 39.1126 43.4589 -Arial_Bold.ttf 72 * 19.7424 19.1320 44 b 0.0583 29.5628 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 45 9 0.1462 27.2857 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 46 ; 11.2935 8.8680 40.4372 -Arial_Bold.ttf 72 * 19.7424 19.1320 47 D 0.0236 35.0909 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 48 L -0.3943 29.9113 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 49 y 11.2709 31.6883 42.4286 -Arial_Bold.ttf 72 * 19.7424 19.1320 50 ‘ -0.0143 8.8680 17.6883 -Arial_Bold.ttf 72 * 19.7424 19.1320 51 \ -0.2645 17.6883 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 52 R 0.2326 37.0498 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 53 < 5.3782 28.0000 31.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 54 4 0.1167 29.9589 41.7857 -Arial_Bold.ttf 72 * 19.7424 19.1320 55 8 0.1655 27.2857 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 56 0 0.2137 27.2857 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 57 A -0.1371 40.5887 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 58 E -0.0240 32.0844 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 59 B 0.0045 35.0909 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 60 v 11.2949 31.6883 30.6732 -Arial_Bold.ttf 72 * 19.7424 19.1320 61 k 0.0060 28.5152 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 62 J -0.1198 26.9524 42.7294 -Arial_Bold.ttf 72 * 19.7424 19.1320 63 U -0.2524 33.3463 42.7294 -Arial_Bold.ttf 72 * 19.7424 19.1320 64 j 0.0500 15.2294 53.7554 -Arial_Bold.ttf 72 * 19.7424 19.1320 65 ( 0.2371 14.0000 53.5411 -Arial_Bold.ttf 72 * 19.7424 19.1320 66 7 0.1940 27.2857 41.7857 -Arial_Bold.ttf 72 * 19.7424 19.1320 67 § -0.0012 28.5152 54.7706 -Arial_Bold.ttf 72 * 19.7424 19.1320 68 $ -3.2015 27.7857 50.8680 -Arial_Bold.ttf 72 * 19.7424 19.1320 69 € -0.7302 31.6883 42.9437 -Arial_Bold.ttf 72 * 19.7424 19.1320 70 / 0.0774 17.6883 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 71 C -0.7711 36.6537 42.7294 -Arial_Bold.ttf 72 * 19.7424 19.1320 72 * -0.1014 19.7424 19.1320 -Arial_Bold.ttf 72 * 19.7424 19.1320 73 ” 0.1169 22.4719 17.6883 -Arial_Bold.ttf 72 * 19.7424 19.1320 74 ? -0.1188 30.4589 42.2143 -Arial_Bold.ttf 72 * 19.7424 19.1320 75 { -0.0383 19.6472 53.9697 -Arial_Bold.ttf 72 * 19.7424 19.1320 76 } -0.0726 19.6472 53.9697 -Arial_Bold.ttf 72 * 19.7424 19.1320 77 , 33.7841 8.8680 17.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 78 I 0.0548 8.1385 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 79 ° -0.1338 18.0844 18.0844 -Arial_Bold.ttf 72 * 19.7424 19.1320 80 K 0.0690 37.7641 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 81 H -0.0097 33.3463 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 82 q 10.0891 29.5628 43.4437 -Arial_Bold.ttf 72 * 19.7424 19.1320 83 & -0.1688 38.8117 42.4286 -Arial_Bold.ttf 72 * 19.7424 19.1320 84 ’ -0.1455 8.8680 17.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 85 [ 0.1131 15.2294 53.5411 -Arial_Bold.ttf 72 * 19.7424 19.1320 86 - 23.6777 15.7294 6.9091 -Arial_Bold.ttf 72 * 19.7424 19.1320 87 Y -0.1774 41.0563 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 88 Q -0.6028 41.7857 46.6472 -Arial_Bold.ttf 72 * 19.7424 19.1320 89 " -0.3419 21.5909 15.2294 -Arial_Bold.ttf 72 * 19.7424 19.1320 90 ! -0.1500 8.1385 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 91 x 11.3209 32.4177 30.6732 -Arial_Bold.ttf 72 * 19.7424 19.1320 92 ) -0.1207 14.0000 53.5411 -Arial_Bold.ttf 72 * 19.7424 19.1320 93 = 11.2002 29.2294 19.2835 -Arial_Bold.ttf 72 * 19.7424 19.1320 94 + 7.1948 28.8961 28.8961 -Arial_Bold.ttf 72 * 19.7424 19.1320 95 X -0.0676 38.9935 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 96 » 13.4894 26.9524 26.5563 -Arial_Bold.ttf 72 * 19.7424 19.1320 97 ' -0.1155 8.1385 15.2294 -Arial_Bold.ttf 72 * 19.7424 19.1320 98 ¢ -0.0552 28.7294 54.4372 -Arial_Bold.ttf 72 * 19.7424 19.1320 99 Z 0.0893 34.4805 42.0000 -Arial_Bold.ttf 72 * 19.7424 19.1320 100 > 5.5244 28.0000 31.9026 -Arial_Bold.ttf 72 * 19.7424 19.1320 101 ® -0.0915 43.2294 42.4286 -Arial_Bold.ttf 72 * 19.7424 19.1320 102 © -0.2740 43.9589 42.4286 -Arial_Bold.ttf 72 * 19.7424 19.1320 103 ] 0.0500 15.2294 53.5411 -Arial_Bold.ttf 72 * 19.7424 19.1320 104 é -0.4302 29.4113 42.8961 -Arial_Bold.ttf 72 * 19.7424 19.1320 105 z 11.3268 26.7706 30.6732 -Arial_Bold.ttf 72 * 19.7424 19.1320 106 _ 47.4830 33.4654 5.8615 -Arial_Bold.ttf 72 * 19.7424 19.1320 107 ¥ -0.0976 30.2056 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 1 t 0.7228 18.1169 41.3810 -Arial_Bold.ttf 73 ” 22.4719 17.6883 2 h -0.0835 27.7857 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 3 a 10.0248 28.8333 32.1169 -Arial_Bold.ttf 73 ” 22.4719 17.6883 4 n 10.1883 27.7857 31.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 5 P -0.1183 32.0844 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 6 o 10.0998 31.0065 32.1169 -Arial_Bold.ttf 73 ” 22.4719 17.6883 7 e 10.0936 29.4113 32.1169 -Arial_Bold.ttf 73 ” 22.4719 17.6883 8 : 11.5771 8.1385 30.6732 -Arial_Bold.ttf 73 ” 22.4719 17.6883 9 r 10.0109 19.8615 31.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 10 l -0.2183 8.1385 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 11 i -0.1236 8.1385 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 12 1 0.0917 18.2359 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 13 | 0.1455 5.8615 54.5563 -Arial_Bold.ttf 73 ” 22.4719 17.6883 14 N 0.0000 33.3463 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 15 f -0.2462 20.6948 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 16 g 10.1966 29.5628 43.6580 -Arial_Bold.ttf 73 ” 22.4719 17.6883 17 d 0.1865 29.5628 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 18 W 0.0774 54.7706 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 19 s 10.1176 28.3333 32.1169 -Arial_Bold.ttf 73 ” 22.4719 17.6883 20 c 9.9005 27.5000 32.1169 -Arial_Bold.ttf 73 ” 22.4719 17.6883 21 u 11.4245 27.7857 30.8874 -Arial_Bold.ttf 73 ” 22.4719 17.6883 22 3 0.1819 27.2857 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 23 ~ 15.8263 30.4589 10.8117 -Arial_Bold.ttf 73 ” 22.4719 17.6883 24 # -0.0405 30.3874 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 25 O -0.8680 40.3420 43.4589 -Arial_Bold.ttf 73 ” 22.4719 17.6883 26 ` -0.0500 12.7706 8.3203 -Arial_Bold.ttf 73 ” 22.4719 17.6883 27 @ -0.3333 55.2706 56.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 28 F 0.1676 29.0152 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 29 S -0.6225 33.8615 43.4589 -Arial_Bold.ttf 73 ” 22.4719 17.6883 30 p 10.1452 29.5628 43.4437 -Arial_Bold.ttf 73 ” 22.4719 17.6883 31 “ 0.0045 22.4719 17.6883 -Arial_Bold.ttf 73 ” 22.4719 17.6883 32 % -0.4022 44.9329 43.6580 -Arial_Bold.ttf 73 ” 22.4719 17.6883 33 £ -0.3371 31.1883 42.4286 -Arial_Bold.ttf 73 ” 22.4719 17.6883 34 . 34.0615 8.1385 8.1385 -Arial_Bold.ttf 73 ” 22.4719 17.6883 35 2 -0.0157 27.2857 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 36 5 0.0179 28.0000 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 37 m 10.4833 44.6104 31.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 38 V -0.0333 38.4935 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 39 6 -0.1190 27.2857 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 40 w 11.1488 45.5065 30.6732 -Arial_Bold.ttf 73 ” 22.4719 17.6883 41 T 0.0917 33.2511 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 42 M 0.2728 39.5584 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 43 G -0.8963 39.1126 43.4589 -Arial_Bold.ttf 73 ” 22.4719 17.6883 44 b -0.0440 29.5628 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 45 9 -0.1409 27.2857 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 46 ; 11.0714 8.8680 40.4372 -Arial_Bold.ttf 73 ” 22.4719 17.6883 47 D 0.0492 35.0909 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 48 L 0.2040 29.9113 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 49 y 11.2562 31.6883 42.4286 -Arial_Bold.ttf 73 ” 22.4719 17.6883 50 ‘ 0.0774 8.8680 17.6883 -Arial_Bold.ttf 73 ” 22.4719 17.6883 51 \ -0.1728 17.6883 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 52 R -0.1690 37.0498 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 53 < 5.5070 28.0000 31.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 54 4 0.3438 29.9589 41.7857 -Arial_Bold.ttf 73 ” 22.4719 17.6883 55 8 0.1295 27.2857 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 56 0 -0.0097 27.2857 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 57 A 0.2333 40.5887 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 58 E 0.1326 32.0844 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 59 B 0.0788 35.0909 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 60 v 11.2189 31.6883 30.6732 -Arial_Bold.ttf 73 ” 22.4719 17.6883 61 k -0.1133 28.5152 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 62 J 0.0512 26.9524 42.7294 -Arial_Bold.ttf 73 ” 22.4719 17.6883 63 U 0.1788 33.3463 42.7294 -Arial_Bold.ttf 73 ” 22.4719 17.6883 64 j -0.0650 15.2294 53.7554 -Arial_Bold.ttf 73 ” 22.4719 17.6883 65 ( -0.1871 14.0000 53.5411 -Arial_Bold.ttf 73 ” 22.4719 17.6883 66 7 0.1591 27.2857 41.7857 -Arial_Bold.ttf 73 ” 22.4719 17.6883 67 § -0.0393 28.5152 54.7706 -Arial_Bold.ttf 73 ” 22.4719 17.6883 68 $ -3.1422 27.7857 50.8680 -Arial_Bold.ttf 73 ” 22.4719 17.6883 69 € -0.4687 31.6883 42.9437 -Arial_Bold.ttf 73 ” 22.4719 17.6883 70 / -0.0045 17.6883 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 71 C -0.6771 36.6537 42.7294 -Arial_Bold.ttf 73 ” 22.4719 17.6883 72 * -0.0597 19.7424 19.1320 -Arial_Bold.ttf 73 ” 22.4719 17.6883 73 ” -0.4119 22.4719 17.6883 -Arial_Bold.ttf 73 ” 22.4719 17.6883 74 ? -0.1369 30.4589 42.2143 -Arial_Bold.ttf 73 ” 22.4719 17.6883 75 { 0.1495 19.6472 53.9697 -Arial_Bold.ttf 73 ” 22.4719 17.6883 76 } -0.4469 19.6472 53.9697 -Arial_Bold.ttf 73 ” 22.4719 17.6883 77 , 33.8355 8.8680 17.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 78 I -0.3224 8.1385 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 79 ° -0.0793 18.0844 18.0844 -Arial_Bold.ttf 73 ” 22.4719 17.6883 80 K 0.0284 37.7641 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 81 H 0.1131 33.3463 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 82 q 10.0936 29.5628 43.4437 -Arial_Bold.ttf 73 ” 22.4719 17.6883 83 & -0.2083 38.8117 42.4286 -Arial_Bold.ttf 73 ” 22.4719 17.6883 84 ’ 0.0167 8.8680 17.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 85 [ -0.4693 15.2294 53.5411 -Arial_Bold.ttf 73 ” 22.4719 17.6883 86 - 23.7426 15.7294 6.9091 -Arial_Bold.ttf 73 ” 22.4719 17.6883 87 Y 0.0774 41.0563 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 88 Q -0.5611 41.7857 46.6472 -Arial_Bold.ttf 73 ” 22.4719 17.6883 89 " 0.0857 21.5909 15.2294 -Arial_Bold.ttf 73 ” 22.4719 17.6883 90 ! 0.0053 8.1385 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 91 x 11.2566 32.4177 30.6732 -Arial_Bold.ttf 73 ” 22.4719 17.6883 92 ) 0.1645 14.0000 53.5411 -Arial_Bold.ttf 73 ” 22.4719 17.6883 93 = 11.4334 29.2294 19.2835 -Arial_Bold.ttf 73 ” 22.4719 17.6883 94 + 7.1470 28.8961 28.8961 -Arial_Bold.ttf 73 ” 22.4719 17.6883 95 X -0.3449 38.9935 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 96 » 13.5622 26.9524 26.5563 -Arial_Bold.ttf 73 ” 22.4719 17.6883 97 ' 0.2071 8.1385 15.2294 -Arial_Bold.ttf 73 ” 22.4719 17.6883 98 ¢ 0.1155 28.7294 54.4372 -Arial_Bold.ttf 73 ” 22.4719 17.6883 99 Z -0.2417 34.4805 42.0000 -Arial_Bold.ttf 73 ” 22.4719 17.6883 100 > 5.4616 28.0000 31.9026 -Arial_Bold.ttf 73 ” 22.4719 17.6883 101 ® 0.0002 43.2294 42.4286 -Arial_Bold.ttf 73 ” 22.4719 17.6883 102 © -0.1143 43.9589 42.4286 -Arial_Bold.ttf 73 ” 22.4719 17.6883 103 ] 0.1871 15.2294 53.5411 -Arial_Bold.ttf 73 ” 22.4719 17.6883 104 é -0.7116 29.4113 42.8961 -Arial_Bold.ttf 73 ” 22.4719 17.6883 105 z 11.3633 26.7706 30.6732 -Arial_Bold.ttf 73 ” 22.4719 17.6883 106 _ 47.4439 33.4654 5.8615 -Arial_Bold.ttf 73 ” 22.4719 17.6883 107 ¥ 0.2090 30.2056 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 1 t 1.1788 18.1169 41.3810 -Arial_Bold.ttf 74 ? 30.4589 42.2143 2 h 0.2367 27.7857 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 3 a 10.3609 28.8333 32.1169 -Arial_Bold.ttf 74 ? 30.4589 42.2143 4 n 10.1591 27.7857 31.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 5 P 0.2338 32.0844 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 6 o 10.4415 31.0065 32.1169 -Arial_Bold.ttf 74 ? 30.4589 42.2143 7 e 10.0531 29.4113 32.1169 -Arial_Bold.ttf 74 ? 30.4589 42.2143 8 : 11.5002 8.1385 30.6732 -Arial_Bold.ttf 74 ? 30.4589 42.2143 9 r 10.1426 19.8615 31.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 10 l 0.4571 8.1385 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 11 i 0.3728 8.1385 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 12 1 0.1940 18.2359 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 13 | -0.0495 5.8615 54.5563 -Arial_Bold.ttf 74 ? 30.4589 42.2143 14 N 0.0272 33.3463 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 15 f 0.0181 20.6948 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 16 g 10.4095 29.5628 43.6580 -Arial_Bold.ttf 74 ? 30.4589 42.2143 17 d 0.0569 29.5628 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 18 W 0.6024 54.7706 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 19 s 10.0968 28.3333 32.1169 -Arial_Bold.ttf 74 ? 30.4589 42.2143 20 c 10.4048 27.5000 32.1169 -Arial_Bold.ttf 74 ? 30.4589 42.2143 21 u 11.4911 27.7857 30.8874 -Arial_Bold.ttf 74 ? 30.4589 42.2143 22 3 0.2286 27.2857 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 23 ~ 16.0660 30.4589 10.8117 -Arial_Bold.ttf 74 ? 30.4589 42.2143 24 # 0.1357 30.3874 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 25 O -0.5106 40.3420 43.4589 -Arial_Bold.ttf 74 ? 30.4589 42.2143 26 ` -0.0633 12.7706 8.3203 -Arial_Bold.ttf 74 ? 30.4589 42.2143 27 @ 0.1014 55.2706 56.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 28 F 0.2650 29.0152 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 29 S -0.2552 33.8615 43.4589 -Arial_Bold.ttf 74 ? 30.4589 42.2143 30 p 10.6690 29.5628 43.4437 -Arial_Bold.ttf 74 ? 30.4589 42.2143 31 “ -0.2716 22.4719 17.6883 -Arial_Bold.ttf 74 ? 30.4589 42.2143 32 % -0.0893 44.9329 43.6580 -Arial_Bold.ttf 74 ? 30.4589 42.2143 33 £ 0.0871 31.1883 42.4286 -Arial_Bold.ttf 74 ? 30.4589 42.2143 34 . 34.3531 8.1385 8.1385 -Arial_Bold.ttf 74 ? 30.4589 42.2143 35 2 0.2143 27.2857 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 36 5 0.3103 28.0000 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 37 m 10.4228 44.6104 31.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 38 V 0.2004 38.4935 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 39 6 0.3560 27.2857 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 40 w 11.4137 45.5065 30.6732 -Arial_Bold.ttf 74 ? 30.4589 42.2143 41 T 0.2174 33.2511 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 42 M 0.1167 39.5584 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 43 G -0.5485 39.1126 43.4589 -Arial_Bold.ttf 74 ? 30.4589 42.2143 44 b 0.1391 29.5628 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 45 9 -0.0585 27.2857 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 46 ; 11.5114 8.8680 40.4372 -Arial_Bold.ttf 74 ? 30.4589 42.2143 47 D 0.4698 35.0909 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 48 L 0.0557 29.9113 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 49 y 11.6106 31.6883 42.4286 -Arial_Bold.ttf 74 ? 30.4589 42.2143 50 ‘ 0.2000 8.8680 17.6883 -Arial_Bold.ttf 74 ? 30.4589 42.2143 51 \ 0.2583 17.6883 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 52 R 0.3345 37.0498 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 53 < 5.8351 28.0000 31.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 54 4 0.5943 29.9589 41.7857 -Arial_Bold.ttf 74 ? 30.4589 42.2143 55 8 0.2702 27.2857 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 56 0 0.1278 27.2857 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 57 A 0.1167 40.5887 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 58 E 0.0786 32.0844 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 59 B 0.5756 35.0909 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 60 v 11.6238 31.6883 30.6732 -Arial_Bold.ttf 74 ? 30.4589 42.2143 61 k 0.2702 28.5152 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 62 J 0.0286 26.9524 42.7294 -Arial_Bold.ttf 74 ? 30.4589 42.2143 63 U 0.1740 33.3463 42.7294 -Arial_Bold.ttf 74 ? 30.4589 42.2143 64 j 0.3567 15.2294 53.7554 -Arial_Bold.ttf 74 ? 30.4589 42.2143 65 ( 0.3008 14.0000 53.5411 -Arial_Bold.ttf 74 ? 30.4589 42.2143 66 7 0.5762 27.2857 41.7857 -Arial_Bold.ttf 74 ? 30.4589 42.2143 67 § -0.1119 28.5152 54.7706 -Arial_Bold.ttf 74 ? 30.4589 42.2143 68 $ -2.9041 27.7857 50.8680 -Arial_Bold.ttf 74 ? 30.4589 42.2143 69 € -0.5568 31.6883 42.9437 -Arial_Bold.ttf 74 ? 30.4589 42.2143 70 / 0.0272 17.6883 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 71 C -0.2187 36.6537 42.7294 -Arial_Bold.ttf 74 ? 30.4589 42.2143 72 * 0.3714 19.7424 19.1320 -Arial_Bold.ttf 74 ? 30.4589 42.2143 73 ” 0.0617 22.4719 17.6883 -Arial_Bold.ttf 74 ? 30.4589 42.2143 74 ? -0.2814 30.4589 42.2143 -Arial_Bold.ttf 74 ? 30.4589 42.2143 75 { -0.2393 19.6472 53.9697 -Arial_Bold.ttf 74 ? 30.4589 42.2143 76 } 0.0131 19.6472 53.9697 -Arial_Bold.ttf 74 ? 30.4589 42.2143 77 , 34.1355 8.8680 17.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 78 I 0.1936 8.1385 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 79 ° -0.2000 18.0844 18.0844 -Arial_Bold.ttf 74 ? 30.4589 42.2143 80 K 0.0534 37.7641 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 81 H 0.5157 33.3463 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 82 q 10.1648 29.5628 43.4437 -Arial_Bold.ttf 74 ? 30.4589 42.2143 83 & -0.0917 38.8117 42.4286 -Arial_Bold.ttf 74 ? 30.4589 42.2143 84 ’ 0.2650 8.8680 17.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 85 [ 0.1355 15.2294 53.5411 -Arial_Bold.ttf 74 ? 30.4589 42.2143 86 - 23.7950 15.7294 6.9091 -Arial_Bold.ttf 74 ? 30.4589 42.2143 87 Y 0.2714 41.0563 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 88 Q -0.5437 41.7857 46.6472 -Arial_Bold.ttf 74 ? 30.4589 42.2143 89 " 0.2345 21.5909 15.2294 -Arial_Bold.ttf 74 ? 30.4589 42.2143 90 ! 0.4024 8.1385 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 91 x 11.6320 32.4177 30.6732 -Arial_Bold.ttf 74 ? 30.4589 42.2143 92 ) 0.3143 14.0000 53.5411 -Arial_Bold.ttf 74 ? 30.4589 42.2143 93 = 11.5509 29.2294 19.2835 -Arial_Bold.ttf 74 ? 30.4589 42.2143 94 + 7.5698 28.8961 28.8961 -Arial_Bold.ttf 74 ? 30.4589 42.2143 95 X 0.2383 38.9935 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 96 » 13.5703 26.9524 26.5563 -Arial_Bold.ttf 74 ? 30.4589 42.2143 97 ' 0.0629 8.1385 15.2294 -Arial_Bold.ttf 74 ? 30.4589 42.2143 98 ¢ 0.2219 28.7294 54.4372 -Arial_Bold.ttf 74 ? 30.4589 42.2143 99 Z 0.2955 34.4805 42.0000 -Arial_Bold.ttf 74 ? 30.4589 42.2143 100 > 5.3606 28.0000 31.9026 -Arial_Bold.ttf 74 ? 30.4589 42.2143 101 ® 0.1274 43.2294 42.4286 -Arial_Bold.ttf 74 ? 30.4589 42.2143 102 © 0.1143 43.9589 42.4286 -Arial_Bold.ttf 74 ? 30.4589 42.2143 103 ] -0.1335 15.2294 53.5411 -Arial_Bold.ttf 74 ? 30.4589 42.2143 104 é -0.7223 29.4113 42.8961 -Arial_Bold.ttf 74 ? 30.4589 42.2143 105 z 11.4092 26.7706 30.6732 -Arial_Bold.ttf 74 ? 30.4589 42.2143 106 _ 47.3604 33.4654 5.8615 -Arial_Bold.ttf 74 ? 30.4589 42.2143 107 ¥ 0.1286 30.2056 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 1 t 0.7714 18.1169 41.3810 -Arial_Bold.ttf 75 { 19.6472 53.9697 2 h -0.1657 27.7857 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 3 a 10.2246 28.8333 32.1169 -Arial_Bold.ttf 75 { 19.6472 53.9697 4 n 10.2170 27.7857 31.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 5 P 0.1929 32.0844 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 6 o 10.2617 31.0065 32.1169 -Arial_Bold.ttf 75 { 19.6472 53.9697 7 e 10.1129 29.4113 32.1169 -Arial_Bold.ttf 75 { 19.6472 53.9697 8 : 11.7140 8.1385 30.6732 -Arial_Bold.ttf 75 { 19.6472 53.9697 9 r 10.2960 19.8615 31.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 10 l 0.1143 8.1385 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 11 i 0.2643 8.1385 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 12 1 0.2512 18.2359 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 13 | 0.1226 5.8615 54.5563 -Arial_Bold.ttf 75 { 19.6472 53.9697 14 N 0.0302 33.3463 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 15 f 0.0195 20.6948 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 16 g 10.4688 29.5628 43.6580 -Arial_Bold.ttf 75 { 19.6472 53.9697 17 d 0.0994 29.5628 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 18 W 0.1688 54.7706 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 19 s 10.3117 28.3333 32.1169 -Arial_Bold.ttf 75 { 19.6472 53.9697 20 c 10.1455 27.5000 32.1169 -Arial_Bold.ttf 75 { 19.6472 53.9697 21 u 11.8116 27.7857 30.8874 -Arial_Bold.ttf 75 { 19.6472 53.9697 22 3 0.2857 27.2857 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 23 ~ 16.2096 30.4589 10.8117 -Arial_Bold.ttf 75 { 19.6472 53.9697 24 # 0.1135 30.3874 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 25 O -0.6054 40.3420 43.4589 -Arial_Bold.ttf 75 { 19.6472 53.9697 26 ` 0.0738 12.7706 8.3203 -Arial_Bold.ttf 75 { 19.6472 53.9697 27 @ -0.0357 55.2706 56.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 28 F 0.2105 29.0152 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 29 S -0.5114 33.8615 43.4589 -Arial_Bold.ttf 75 { 19.6472 53.9697 30 p 10.1486 29.5628 43.4437 -Arial_Bold.ttf 75 { 19.6472 53.9697 31 “ 0.1869 22.4719 17.6883 -Arial_Bold.ttf 75 { 19.6472 53.9697 32 % 0.0135 44.9329 43.6580 -Arial_Bold.ttf 75 { 19.6472 53.9697 33 £ 0.1833 31.1883 42.4286 -Arial_Bold.ttf 75 { 19.6472 53.9697 34 . 34.1636 8.1385 8.1385 -Arial_Bold.ttf 75 { 19.6472 53.9697 35 2 0.2778 27.2857 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 36 5 0.6036 28.0000 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 37 m 10.3124 44.6104 31.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 38 V 0.0776 38.4935 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 39 6 -0.1957 27.2857 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 40 w 11.5411 45.5065 30.6732 -Arial_Bold.ttf 75 { 19.6472 53.9697 41 T 0.3333 33.2511 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 42 M 0.2262 39.5584 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 43 G -0.3371 39.1126 43.4589 -Arial_Bold.ttf 75 { 19.6472 53.9697 44 b -0.0919 29.5628 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 45 9 0.2274 27.2857 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 46 ; 11.3721 8.8680 40.4372 -Arial_Bold.ttf 75 { 19.6472 53.9697 47 D 0.0355 35.0909 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 48 L -0.0040 29.9113 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 49 y 11.9733 31.6883 42.4286 -Arial_Bold.ttf 75 { 19.6472 53.9697 50 ‘ 0.1591 8.8680 17.6883 -Arial_Bold.ttf 75 { 19.6472 53.9697 51 \ 0.2188 17.6883 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 52 R 0.4333 37.0498 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 53 < 5.5523 28.0000 31.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 54 4 0.4576 29.9589 41.7857 -Arial_Bold.ttf 75 { 19.6472 53.9697 55 8 0.0962 27.2857 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 56 0 -0.0548 27.2857 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 57 A 0.3014 40.5887 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 58 E 0.1234 32.0844 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 59 B 0.1986 35.0909 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 60 v 11.3423 31.6883 30.6732 -Arial_Bold.ttf 75 { 19.6472 53.9697 61 k 0.2143 28.5152 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 62 J 0.2552 26.9524 42.7294 -Arial_Bold.ttf 75 { 19.6472 53.9697 63 U 0.1129 33.3463 42.7294 -Arial_Bold.ttf 75 { 19.6472 53.9697 64 j 0.0355 15.2294 53.7554 -Arial_Bold.ttf 75 { 19.6472 53.9697 65 ( -0.0064 14.0000 53.5411 -Arial_Bold.ttf 75 { 19.6472 53.9697 66 7 0.5195 27.2857 41.7857 -Arial_Bold.ttf 75 { 19.6472 53.9697 67 § 0.0195 28.5152 54.7706 -Arial_Bold.ttf 75 { 19.6472 53.9697 68 $ -2.6908 27.7857 50.8680 -Arial_Bold.ttf 75 { 19.6472 53.9697 69 € -0.7187 31.6883 42.9437 -Arial_Bold.ttf 75 { 19.6472 53.9697 70 / 0.2552 17.6883 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 71 C -0.6918 36.6537 42.7294 -Arial_Bold.ttf 75 { 19.6472 53.9697 72 * 0.2726 19.7424 19.1320 -Arial_Bold.ttf 75 { 19.6472 53.9697 73 ” 0.2345 22.4719 17.6883 -Arial_Bold.ttf 75 { 19.6472 53.9697 74 ? 0.1274 30.4589 42.2143 -Arial_Bold.ttf 75 { 19.6472 53.9697 75 { -0.0357 19.6472 53.9697 -Arial_Bold.ttf 75 { 19.6472 53.9697 76 } 0.1645 19.6472 53.9697 -Arial_Bold.ttf 75 { 19.6472 53.9697 77 , 34.2486 8.8680 17.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 78 I 0.2150 8.1385 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 79 ° 0.0000 18.0844 18.0844 -Arial_Bold.ttf 75 { 19.6472 53.9697 80 K 0.4371 37.7641 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 81 H 0.1143 33.3463 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 82 q 10.2929 29.5628 43.4437 -Arial_Bold.ttf 75 { 19.6472 53.9697 83 & -0.0364 38.8117 42.4286 -Arial_Bold.ttf 75 { 19.6472 53.9697 84 ’ -0.1716 8.8680 17.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 85 [ 0.0522 15.2294 53.5411 -Arial_Bold.ttf 75 { 19.6472 53.9697 86 - 23.9412 15.7294 6.9091 -Arial_Bold.ttf 75 { 19.6472 53.9697 87 Y 0.0662 41.0563 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 88 Q -0.2149 41.7857 46.6472 -Arial_Bold.ttf 75 { 19.6472 53.9697 89 " 0.2403 21.5909 15.2294 -Arial_Bold.ttf 75 { 19.6472 53.9697 90 ! 0.3312 8.1385 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 91 x 11.6140 32.4177 30.6732 -Arial_Bold.ttf 75 { 19.6472 53.9697 92 ) 0.1135 14.0000 53.5411 -Arial_Bold.ttf 75 { 19.6472 53.9697 93 = 11.8564 29.2294 19.2835 -Arial_Bold.ttf 75 { 19.6472 53.9697 94 + 7.4060 28.8961 28.8961 -Arial_Bold.ttf 75 { 19.6472 53.9697 95 X 0.3060 38.9935 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 96 » 13.6777 26.9524 26.5563 -Arial_Bold.ttf 75 { 19.6472 53.9697 97 ' 0.2924 8.1385 15.2294 -Arial_Bold.ttf 75 { 19.6472 53.9697 98 ¢ 0.0369 28.7294 54.4372 -Arial_Bold.ttf 75 { 19.6472 53.9697 99 Z 0.2921 34.4805 42.0000 -Arial_Bold.ttf 75 { 19.6472 53.9697 100 > 5.8934 28.0000 31.9026 -Arial_Bold.ttf 75 { 19.6472 53.9697 101 ® 0.1000 43.2294 42.4286 -Arial_Bold.ttf 75 { 19.6472 53.9697 102 © 0.0252 43.9589 42.4286 -Arial_Bold.ttf 75 { 19.6472 53.9697 103 ] 0.3688 15.2294 53.5411 -Arial_Bold.ttf 75 { 19.6472 53.9697 104 é -0.5054 29.4113 42.8961 -Arial_Bold.ttf 75 { 19.6472 53.9697 105 z 11.3461 26.7706 30.6732 -Arial_Bold.ttf 75 { 19.6472 53.9697 106 _ 47.7011 33.4654 5.8615 -Arial_Bold.ttf 75 { 19.6472 53.9697 107 ¥ 0.0452 30.2056 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 1 t 1.1588 18.1169 41.3810 -Arial_Bold.ttf 76 } 19.6472 53.9697 2 h 0.2038 27.7857 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 3 a 10.3474 28.8333 32.1169 -Arial_Bold.ttf 76 } 19.6472 53.9697 4 n 10.1148 27.7857 31.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 5 P 0.0019 32.0844 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 6 o 10.4048 31.0065 32.1169 -Arial_Bold.ttf 76 } 19.6472 53.9697 7 e 10.2679 29.4113 32.1169 -Arial_Bold.ttf 76 } 19.6472 53.9697 8 : 11.3826 8.1385 30.6732 -Arial_Bold.ttf 76 } 19.6472 53.9697 9 r 10.1829 19.8615 31.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 10 l 0.0591 8.1385 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 11 i 0.0810 8.1385 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 12 1 0.4833 18.2359 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 13 | 0.0377 5.8615 54.5563 -Arial_Bold.ttf 76 } 19.6472 53.9697 14 N 0.4923 33.3463 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 15 f -0.2064 20.6948 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 16 g 10.4034 29.5628 43.6580 -Arial_Bold.ttf 76 } 19.6472 53.9697 17 d 0.3976 29.5628 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 18 W 0.1762 54.7706 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 19 s 10.5905 28.3333 32.1169 -Arial_Bold.ttf 76 } 19.6472 53.9697 20 c 10.5353 27.5000 32.1169 -Arial_Bold.ttf 76 } 19.6472 53.9697 21 u 11.4471 27.7857 30.8874 -Arial_Bold.ttf 76 } 19.6472 53.9697 22 3 0.0667 27.2857 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 23 ~ 16.0101 30.4589 10.8117 -Arial_Bold.ttf 76 } 19.6472 53.9697 24 # -0.2161 30.3874 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 25 O -0.2604 40.3420 43.4589 -Arial_Bold.ttf 76 } 19.6472 53.9697 26 ` 0.2233 12.7706 8.3203 -Arial_Bold.ttf 76 } 19.6472 53.9697 27 @ 0.1357 55.2706 56.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 28 F 0.1726 29.0152 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 29 S -0.5152 33.8615 43.4589 -Arial_Bold.ttf 76 } 19.6472 53.9697 30 p 10.4057 29.5628 43.4437 -Arial_Bold.ttf 76 } 19.6472 53.9697 31 “ -0.0631 22.4719 17.6883 -Arial_Bold.ttf 76 } 19.6472 53.9697 32 % -0.0500 44.9329 43.6580 -Arial_Bold.ttf 76 } 19.6472 53.9697 33 £ -0.1359 31.1883 42.4286 -Arial_Bold.ttf 76 } 19.6472 53.9697 34 . 34.1472 8.1385 8.1385 -Arial_Bold.ttf 76 } 19.6472 53.9697 35 2 -0.0738 27.2857 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 36 5 0.3865 28.0000 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 37 m 10.1351 44.6104 31.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 38 V 0.2369 38.4935 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 39 6 0.0643 27.2857 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 40 w 11.3623 45.5065 30.6732 -Arial_Bold.ttf 76 } 19.6472 53.9697 41 T 0.1429 33.2511 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 42 M -0.0821 39.5584 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 43 G -0.6120 39.1126 43.4589 -Arial_Bold.ttf 76 } 19.6472 53.9697 44 b 0.0369 29.5628 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 45 9 0.0869 27.2857 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 46 ; 11.7556 8.8680 40.4372 -Arial_Bold.ttf 76 } 19.6472 53.9697 47 D 0.0400 35.0909 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 48 L 0.2105 29.9113 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 49 y 11.5411 31.6883 42.4286 -Arial_Bold.ttf 76 } 19.6472 53.9697 50 ‘ 0.1786 8.8680 17.6883 -Arial_Bold.ttf 76 } 19.6472 53.9697 51 \ -0.0228 17.6883 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 52 R 0.3969 37.0498 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 53 < 5.5666 28.0000 31.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 54 4 0.3369 29.9589 41.7857 -Arial_Bold.ttf 76 } 19.6472 53.9697 55 8 0.0369 27.2857 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 56 0 0.0810 27.2857 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 57 A -0.0405 40.5887 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 58 E 0.3060 32.0844 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 59 B 0.2481 35.0909 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 60 v 11.3585 31.6883 30.6732 -Arial_Bold.ttf 76 } 19.6472 53.9697 61 k 0.3038 28.5152 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 62 J 0.2345 26.9524 42.7294 -Arial_Bold.ttf 76 } 19.6472 53.9697 63 U 0.6419 33.3463 42.7294 -Arial_Bold.ttf 76 } 19.6472 53.9697 64 j 0.2643 15.2294 53.7554 -Arial_Bold.ttf 76 } 19.6472 53.9697 65 ( 0.4048 14.0000 53.5411 -Arial_Bold.ttf 76 } 19.6472 53.9697 66 7 0.6702 27.2857 41.7857 -Arial_Bold.ttf 76 } 19.6472 53.9697 67 § 0.0857 28.5152 54.7706 -Arial_Bold.ttf 76 } 19.6472 53.9697 68 $ -2.8057 27.7857 50.8680 -Arial_Bold.ttf 76 } 19.6472 53.9697 69 € -0.4189 31.6883 42.9437 -Arial_Bold.ttf 76 } 19.6472 53.9697 70 / 0.3826 17.6883 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 71 C -0.6918 36.6537 42.7294 -Arial_Bold.ttf 76 } 19.6472 53.9697 72 * 0.0179 19.7424 19.1320 -Arial_Bold.ttf 76 } 19.6472 53.9697 73 ” -0.1262 22.4719 17.6883 -Arial_Bold.ttf 76 } 19.6472 53.9697 74 ? 0.1774 30.4589 42.2143 -Arial_Bold.ttf 76 } 19.6472 53.9697 75 { -0.0657 19.6472 53.9697 -Arial_Bold.ttf 76 } 19.6472 53.9697 76 } 0.0121 19.6472 53.9697 -Arial_Bold.ttf 76 } 19.6472 53.9697 77 , 34.2746 8.8680 17.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 78 I 0.1929 8.1385 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 79 ° -0.1990 18.0844 18.0844 -Arial_Bold.ttf 76 } 19.6472 53.9697 80 K 0.1688 37.7641 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 81 H 0.1924 33.3463 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 82 q 10.1355 29.5628 43.4437 -Arial_Bold.ttf 76 } 19.6472 53.9697 83 & 0.0038 38.8117 42.4286 -Arial_Bold.ttf 76 } 19.6472 53.9697 84 ’ 0.2476 8.8680 17.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 85 [ 0.3969 15.2294 53.5411 -Arial_Bold.ttf 76 } 19.6472 53.9697 86 - 24.2188 15.7294 6.9091 -Arial_Bold.ttf 76 } 19.6472 53.9697 87 Y 0.1643 41.0563 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 88 Q -0.7114 41.7857 46.6472 -Arial_Bold.ttf 76 } 19.6472 53.9697 89 " 0.3962 21.5909 15.2294 -Arial_Bold.ttf 76 } 19.6472 53.9697 90 ! 0.3774 8.1385 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 91 x 11.5443 32.4177 30.6732 -Arial_Bold.ttf 76 } 19.6472 53.9697 92 ) 0.0250 14.0000 53.5411 -Arial_Bold.ttf 76 } 19.6472 53.9697 93 = 11.4495 29.2294 19.2835 -Arial_Bold.ttf 76 } 19.6472 53.9697 94 + 7.5341 28.8961 28.8961 -Arial_Bold.ttf 76 } 19.6472 53.9697 95 X 0.1772 38.9935 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 96 » 13.5180 26.9524 26.5563 -Arial_Bold.ttf 76 } 19.6472 53.9697 97 ' 0.4742 8.1385 15.2294 -Arial_Bold.ttf 76 } 19.6472 53.9697 98 ¢ -0.0190 28.7294 54.4372 -Arial_Bold.ttf 76 } 19.6472 53.9697 99 Z 0.2143 34.4805 42.0000 -Arial_Bold.ttf 76 } 19.6472 53.9697 100 > 5.7570 28.0000 31.9026 -Arial_Bold.ttf 76 } 19.6472 53.9697 101 ® -0.1131 43.2294 42.4286 -Arial_Bold.ttf 76 } 19.6472 53.9697 102 © 0.0917 43.9589 42.4286 -Arial_Bold.ttf 76 } 19.6472 53.9697 103 ] 0.2560 15.2294 53.5411 -Arial_Bold.ttf 76 } 19.6472 53.9697 104 é -0.4592 29.4113 42.8961 -Arial_Bold.ttf 76 } 19.6472 53.9697 105 z 11.2721 26.7706 30.6732 -Arial_Bold.ttf 76 } 19.6472 53.9697 106 _ 47.6054 33.4654 5.8615 -Arial_Bold.ttf 76 } 19.6472 53.9697 107 ¥ 0.3931 30.2056 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 1 t -33.0567 18.1169 41.3810 -Arial_Bold.ttf 77 , 8.8680 17.9026 2 h -33.8841 27.7857 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 3 a -23.7998 28.8333 32.1169 -Arial_Bold.ttf 77 , 8.8680 17.9026 4 n -23.8550 27.7857 31.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 5 P -34.0319 32.0844 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 6 o -23.8284 31.0065 32.1169 -Arial_Bold.ttf 77 , 8.8680 17.9026 7 e -23.6484 29.4113 32.1169 -Arial_Bold.ttf 77 , 8.8680 17.9026 8 : -22.4346 8.1385 30.6732 -Arial_Bold.ttf 77 , 8.8680 17.9026 9 r -23.6329 19.8615 31.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 10 l -33.8517 8.1385 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 11 i -33.8972 8.1385 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 12 1 -33.8607 18.2359 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 13 | -34.1769 5.8615 54.5563 -Arial_Bold.ttf 77 , 8.8680 17.9026 14 N -33.9174 33.3463 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 15 f -34.0946 20.6948 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 16 g -23.6307 29.5628 43.6580 -Arial_Bold.ttf 77 , 8.8680 17.9026 17 d -33.8674 29.5628 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 18 W -33.8472 54.7706 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 19 s -23.8679 28.3333 32.1169 -Arial_Bold.ttf 77 , 8.8680 17.9026 20 c -23.6724 27.5000 32.1169 -Arial_Bold.ttf 77 , 8.8680 17.9026 21 u -22.5565 27.7857 30.8874 -Arial_Bold.ttf 77 , 8.8680 17.9026 22 3 -33.4922 27.2857 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 23 ~ -17.9943 30.4589 10.8117 -Arial_Bold.ttf 77 , 8.8680 17.9026 24 # -33.9426 30.3874 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 25 O -34.6199 40.3420 43.4589 -Arial_Bold.ttf 77 , 8.8680 17.9026 26 ` -33.9817 12.7706 8.3203 -Arial_Bold.ttf 77 , 8.8680 17.9026 27 @ -33.8688 55.2706 56.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 28 F -33.9317 29.0152 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 29 S -34.4076 33.8615 43.4589 -Arial_Bold.ttf 77 , 8.8680 17.9026 30 p -23.8057 29.5628 43.4437 -Arial_Bold.ttf 77 , 8.8680 17.9026 31 “ -33.7660 22.4719 17.6883 -Arial_Bold.ttf 77 , 8.8680 17.9026 32 % -34.3305 44.9329 43.6580 -Arial_Bold.ttf 77 , 8.8680 17.9026 33 £ -34.0198 31.1883 42.4286 -Arial_Bold.ttf 77 , 8.8680 17.9026 34 . -0.2183 8.1385 8.1385 -Arial_Bold.ttf 77 , 8.8680 17.9026 35 2 -33.8615 27.2857 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 36 5 -33.6412 28.0000 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 37 m -23.8557 44.6104 31.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 38 V -34.0448 38.4935 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 39 6 -34.0426 27.2857 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 40 w -22.5203 45.5065 30.6732 -Arial_Bold.ttf 77 , 8.8680 17.9026 41 T -34.0440 33.2511 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 42 M -33.6970 39.5584 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 43 G -34.5673 39.1126 43.4589 -Arial_Bold.ttf 77 , 8.8680 17.9026 44 b -33.8531 29.5628 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 45 9 -33.8698 27.2857 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 46 ; -22.6613 8.8680 40.4372 -Arial_Bold.ttf 77 , 8.8680 17.9026 47 D -33.7244 35.0909 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 48 L -33.8168 29.9113 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 49 y -22.5346 31.6883 42.4286 -Arial_Bold.ttf 77 , 8.8680 17.9026 50 ‘ -34.1012 8.8680 17.6883 -Arial_Bold.ttf 77 , 8.8680 17.9026 51 \ -34.0305 17.6883 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 52 R -33.9017 37.0498 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 53 < -28.2271 28.0000 31.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 54 4 -33.7024 29.9589 41.7857 -Arial_Bold.ttf 77 , 8.8680 17.9026 55 8 -34.0083 27.2857 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 56 0 -33.8434 27.2857 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 57 A -33.6841 40.5887 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 58 E -33.7900 32.0844 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 59 B -33.9389 35.0909 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 60 v -22.5482 31.6883 30.6732 -Arial_Bold.ttf 77 , 8.8680 17.9026 61 k -33.8615 28.5152 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 62 J -33.8746 26.9524 42.7294 -Arial_Bold.ttf 77 , 8.8680 17.9026 63 U -33.8258 33.3463 42.7294 -Arial_Bold.ttf 77 , 8.8680 17.9026 64 j -33.8615 15.2294 53.7554 -Arial_Bold.ttf 77 , 8.8680 17.9026 65 ( -33.7341 14.0000 53.5411 -Arial_Bold.ttf 77 , 8.8680 17.9026 66 7 -33.8343 27.2857 41.7857 -Arial_Bold.ttf 77 , 8.8680 17.9026 67 § -33.9900 28.5152 54.7706 -Arial_Bold.ttf 77 , 8.8680 17.9026 68 $ -37.0551 27.7857 50.8680 -Arial_Bold.ttf 77 , 8.8680 17.9026 69 € -34.5076 31.6883 42.9437 -Arial_Bold.ttf 77 , 8.8680 17.9026 70 / -34.0069 17.6883 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 71 C -34.3621 36.6537 42.7294 -Arial_Bold.ttf 77 , 8.8680 17.9026 72 * -33.9531 19.7424 19.1320 -Arial_Bold.ttf 77 , 8.8680 17.9026 73 ” -34.0603 22.4719 17.6883 -Arial_Bold.ttf 77 , 8.8680 17.9026 74 ? -34.0900 30.4589 42.2143 -Arial_Bold.ttf 77 , 8.8680 17.9026 75 { -34.0341 19.6472 53.9697 -Arial_Bold.ttf 77 , 8.8680 17.9026 76 } -34.0341 19.6472 53.9697 -Arial_Bold.ttf 77 , 8.8680 17.9026 77 , 0.0774 8.8680 17.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 78 I -34.1760 8.1385 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 79 ° -33.8984 18.0844 18.0844 -Arial_Bold.ttf 77 , 8.8680 17.9026 80 K -33.8258 37.7641 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 81 H -33.9670 33.3463 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 82 q -24.0188 29.5628 43.4437 -Arial_Bold.ttf 77 , 8.8680 17.9026 83 & -34.2545 38.8117 42.4286 -Arial_Bold.ttf 77 , 8.8680 17.9026 84 ’ -33.8281 8.8680 17.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 85 [ -33.8615 15.2294 53.5411 -Arial_Bold.ttf 77 , 8.8680 17.9026 86 - -10.0155 15.7294 6.9091 -Arial_Bold.ttf 77 , 8.8680 17.9026 87 Y -33.9031 41.0563 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 88 Q -34.7397 41.7857 46.6472 -Arial_Bold.ttf 77 , 8.8680 17.9026 89 " -33.9569 21.5909 15.2294 -Arial_Bold.ttf 77 , 8.8680 17.9026 90 ! -33.6803 8.1385 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 91 x -22.7172 32.4177 30.6732 -Arial_Bold.ttf 77 , 8.8680 17.9026 92 ) -34.0095 14.0000 53.5411 -Arial_Bold.ttf 77 , 8.8680 17.9026 93 = -22.7453 29.2294 19.2835 -Arial_Bold.ttf 77 , 8.8680 17.9026 94 + -26.6683 28.8961 28.8961 -Arial_Bold.ttf 77 , 8.8680 17.9026 95 X -33.9329 38.9935 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 96 » -20.1850 26.9524 26.5563 -Arial_Bold.ttf 77 , 8.8680 17.9026 97 ' -34.0519 8.1385 15.2294 -Arial_Bold.ttf 77 , 8.8680 17.9026 98 ¢ -33.8577 28.7294 54.4372 -Arial_Bold.ttf 77 , 8.8680 17.9026 99 Z -34.0095 34.4805 42.0000 -Arial_Bold.ttf 77 , 8.8680 17.9026 100 > -28.7456 28.0000 31.9026 -Arial_Bold.ttf 77 , 8.8680 17.9026 101 ® -34.0900 43.2294 42.4286 -Arial_Bold.ttf 77 , 8.8680 17.9026 102 © -33.9984 43.9589 42.4286 -Arial_Bold.ttf 77 , 8.8680 17.9026 103 ] -33.6744 15.2294 53.5411 -Arial_Bold.ttf 77 , 8.8680 17.9026 104 é -34.4576 29.4113 42.8961 -Arial_Bold.ttf 77 , 8.8680 17.9026 105 z -22.5287 26.7706 30.6732 -Arial_Bold.ttf 77 , 8.8680 17.9026 106 _ 13.6479 33.4654 5.8615 -Arial_Bold.ttf 77 , 8.8680 17.9026 107 ¥ -33.8615 30.2056 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 1 t 1.0940 18.1169 41.3810 -Arial_Bold.ttf 78 I 8.1385 42.0000 2 h -0.1060 27.7857 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 3 a 10.0057 28.8333 32.1169 -Arial_Bold.ttf 78 I 8.1385 42.0000 4 n 10.2800 27.7857 31.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 5 P -0.1931 32.0844 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 6 o 9.9498 31.0065 32.1169 -Arial_Bold.ttf 78 I 8.1385 42.0000 7 e 10.1534 29.4113 32.1169 -Arial_Bold.ttf 78 I 8.1385 42.0000 8 : 11.3995 8.1385 30.6732 -Arial_Bold.ttf 78 I 8.1385 42.0000 9 r 10.2034 19.8615 31.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 10 l -0.1228 8.1385 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 11 i -0.0440 8.1385 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 12 1 0.0500 18.2359 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 13 | 0.0545 5.8615 54.5563 -Arial_Bold.ttf 78 I 8.1385 42.0000 14 N 0.0357 33.3463 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 15 f -0.3097 20.6948 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 16 g 9.8284 29.5628 43.6580 -Arial_Bold.ttf 78 I 8.1385 42.0000 17 d 0.0417 29.5628 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 18 W 0.2137 54.7706 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 19 s 10.1748 28.3333 32.1169 -Arial_Bold.ttf 78 I 8.1385 42.0000 20 c 10.0057 27.5000 32.1169 -Arial_Bold.ttf 78 I 8.1385 42.0000 21 u 11.3268 27.7857 30.8874 -Arial_Bold.ttf 78 I 8.1385 42.0000 22 3 0.1995 27.2857 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 23 ~ 16.1077 30.4589 10.8117 -Arial_Bold.ttf 78 I 8.1385 42.0000 24 # 0.1705 30.3874 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 25 O -1.1654 40.3420 43.4589 -Arial_Bold.ttf 78 I 8.1385 42.0000 26 ` 0.0357 12.7706 8.3203 -Arial_Bold.ttf 78 I 8.1385 42.0000 27 @ -0.2702 55.2706 56.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 28 F 0.1597 29.0152 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 29 S -0.8068 33.8615 43.4589 -Arial_Bold.ttf 78 I 8.1385 42.0000 30 p 9.9200 29.5628 43.4437 -Arial_Bold.ttf 78 I 8.1385 42.0000 31 “ 0.1131 22.4719 17.6883 -Arial_Bold.ttf 78 I 8.1385 42.0000 32 % -0.2702 44.9329 43.6580 -Arial_Bold.ttf 78 I 8.1385 42.0000 33 £ -0.2643 31.1883 42.4286 -Arial_Bold.ttf 78 I 8.1385 42.0000 34 . 33.7541 8.1385 8.1385 -Arial_Bold.ttf 78 I 8.1385 42.0000 35 2 -0.0500 27.2857 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 36 5 0.3274 28.0000 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 37 m 9.9974 44.6104 31.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 38 V 0.2548 38.4935 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 39 6 0.0202 27.2857 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 40 w 11.2768 45.5065 30.6732 -Arial_Bold.ttf 78 I 8.1385 42.0000 41 T -0.1190 33.2511 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 42 M -0.0631 39.5584 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 43 G -0.6749 39.1126 43.4589 -Arial_Bold.ttf 78 I 8.1385 42.0000 44 b 0.0000 29.5628 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 45 9 0.0440 27.2857 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 46 ; 11.4723 8.8680 40.4372 -Arial_Bold.ttf 78 I 8.1385 42.0000 47 D -0.0833 35.0909 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 48 L 0.1833 29.9113 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 49 y 11.3268 31.6883 42.4286 -Arial_Bold.ttf 78 I 8.1385 42.0000 50 ‘ -0.0514 8.8680 17.6883 -Arial_Bold.ttf 78 I 8.1385 42.0000 51 \ -0.2488 17.6883 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 52 R -0.0417 37.0498 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 53 < 5.3530 28.0000 31.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 54 4 0.2202 29.9589 41.7857 -Arial_Bold.ttf 78 I 8.1385 42.0000 55 8 -0.0909 27.2857 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 56 0 -0.0766 27.2857 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 57 A -0.1714 40.5887 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 58 E -0.1371 32.0844 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 59 B 0.1976 35.0909 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 60 v 11.3768 31.6883 30.6732 -Arial_Bold.ttf 78 I 8.1385 42.0000 61 k -0.2705 28.5152 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 62 J 0.0000 26.9524 42.7294 -Arial_Bold.ttf 78 I 8.1385 42.0000 63 U -0.0714 33.3463 42.7294 -Arial_Bold.ttf 78 I 8.1385 42.0000 64 j 0.0417 15.2294 53.7554 -Arial_Bold.ttf 78 I 8.1385 42.0000 65 ( 0.1736 14.0000 53.5411 -Arial_Bold.ttf 78 I 8.1385 42.0000 66 7 0.1767 27.2857 41.7857 -Arial_Bold.ttf 78 I 8.1385 42.0000 67 § -0.2298 28.5152 54.7706 -Arial_Bold.ttf 78 I 8.1385 42.0000 68 $ -2.9232 27.7857 50.8680 -Arial_Bold.ttf 78 I 8.1385 42.0000 69 € -0.8249 31.6883 42.9437 -Arial_Bold.ttf 78 I 8.1385 42.0000 70 / 0.0000 17.6883 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 71 C -0.7294 36.6537 42.7294 -Arial_Bold.ttf 78 I 8.1385 42.0000 72 * -0.0774 19.7424 19.1320 -Arial_Bold.ttf 78 I 8.1385 42.0000 73 ” 0.0371 22.4719 17.6883 -Arial_Bold.ttf 78 I 8.1385 42.0000 74 ? -0.1445 30.4589 42.2143 -Arial_Bold.ttf 78 I 8.1385 42.0000 75 { -0.3560 19.6472 53.9697 -Arial_Bold.ttf 78 I 8.1385 42.0000 76 } -0.1272 19.6472 53.9697 -Arial_Bold.ttf 78 I 8.1385 42.0000 77 , 33.8531 8.8680 17.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 78 I -0.2190 8.1385 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 79 ° 0.0014 18.0844 18.0844 -Arial_Bold.ttf 78 I 8.1385 42.0000 80 K 0.0560 37.7641 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 81 H -0.0560 33.3463 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 82 q 10.0377 29.5628 43.4437 -Arial_Bold.ttf 78 I 8.1385 42.0000 83 & -0.1060 38.8117 42.4286 -Arial_Bold.ttf 78 I 8.1385 42.0000 84 ’ -0.2457 8.8680 17.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 85 [ -0.0240 15.2294 53.5411 -Arial_Bold.ttf 78 I 8.1385 42.0000 86 - 23.7798 15.7294 6.9091 -Arial_Bold.ttf 78 I 8.1385 42.0000 87 Y 0.0214 41.0563 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 88 Q -1.0987 41.7857 46.6472 -Arial_Bold.ttf 78 I 8.1385 42.0000 89 " 0.1060 21.5909 15.2294 -Arial_Bold.ttf 78 I 8.1385 42.0000 90 ! 0.1774 8.1385 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 91 x 11.2137 32.4177 30.6732 -Arial_Bold.ttf 78 I 8.1385 42.0000 92 ) 0.0895 14.0000 53.5411 -Arial_Bold.ttf 78 I 8.1385 42.0000 93 = 11.4126 29.2294 19.2835 -Arial_Bold.ttf 78 I 8.1385 42.0000 94 + 7.2841 28.8961 28.8961 -Arial_Bold.ttf 78 I 8.1385 42.0000 95 X -0.1548 38.9935 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 96 » 13.6265 26.9524 26.5563 -Arial_Bold.ttf 78 I 8.1385 42.0000 97 ' 0.1371 8.1385 15.2294 -Arial_Bold.ttf 78 I 8.1385 42.0000 98 ¢ 0.0643 28.7294 54.4372 -Arial_Bold.ttf 78 I 8.1385 42.0000 99 Z -0.0917 34.4805 42.0000 -Arial_Bold.ttf 78 I 8.1385 42.0000 100 > 5.4745 28.0000 31.9026 -Arial_Bold.ttf 78 I 8.1385 42.0000 101 ® -0.2143 43.2294 42.4286 -Arial_Bold.ttf 78 I 8.1385 42.0000 102 © -0.2143 43.9589 42.4286 -Arial_Bold.ttf 78 I 8.1385 42.0000 103 ] 0.0060 15.2294 53.5411 -Arial_Bold.ttf 78 I 8.1385 42.0000 104 é -0.5006 29.4113 42.8961 -Arial_Bold.ttf 78 I 8.1385 42.0000 105 z 11.3268 26.7706 30.6732 -Arial_Bold.ttf 78 I 8.1385 42.0000 106 _ 47.3654 33.4654 5.8615 -Arial_Bold.ttf 78 I 8.1385 42.0000 107 ¥ -0.0857 30.2056 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 1 t 1.0859 18.1169 41.3810 -Arial_Bold.ttf 79 ° 18.0844 18.0844 2 h 0.0212 27.7857 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 3 a 10.2873 28.8333 32.1169 -Arial_Bold.ttf 79 ° 18.0844 18.0844 4 n 10.6074 27.7857 31.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 5 P 0.2038 32.0844 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 6 o 10.2010 31.0065 32.1169 -Arial_Bold.ttf 79 ° 18.0844 18.0844 7 e 10.0615 29.4113 32.1169 -Arial_Bold.ttf 79 ° 18.0844 18.0844 8 : 11.3788 8.1385 30.6732 -Arial_Bold.ttf 79 ° 18.0844 18.0844 9 r 10.4034 19.8615 31.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 10 l 0.2917 8.1385 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 11 i 0.3917 8.1385 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 12 1 0.3060 18.2359 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 13 | 0.3060 5.8615 54.5563 -Arial_Bold.ttf 79 ° 18.0844 18.0844 14 N 0.2435 33.3463 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 15 f -0.0955 20.6948 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 16 g 10.0396 29.5628 43.6580 -Arial_Bold.ttf 79 ° 18.0844 18.0844 17 d 0.0127 29.5628 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 18 W 0.1629 54.7706 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 19 s 10.1857 28.3333 32.1169 -Arial_Bold.ttf 79 ° 18.0844 18.0844 20 c 10.3545 27.5000 32.1169 -Arial_Bold.ttf 79 ° 18.0844 18.0844 21 u 11.5411 27.7857 30.8874 -Arial_Bold.ttf 79 ° 18.0844 18.0844 22 3 0.3083 27.2857 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 23 ~ 16.4293 30.4589 10.8117 -Arial_Bold.ttf 79 ° 18.0844 18.0844 24 # 0.1286 30.3874 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 25 O -0.6692 40.3420 43.4589 -Arial_Bold.ttf 79 ° 18.0844 18.0844 26 ` 0.1324 12.7706 8.3203 -Arial_Bold.ttf 79 ° 18.0844 18.0844 27 @ 0.1131 55.2706 56.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 28 F -0.0161 29.0152 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 29 S -0.6640 33.8615 43.4589 -Arial_Bold.ttf 79 ° 18.0844 18.0844 30 p 10.1246 29.5628 43.4437 -Arial_Bold.ttf 79 ° 18.0844 18.0844 31 “ 0.2143 22.4719 17.6883 -Arial_Bold.ttf 79 ° 18.0844 18.0844 32 % 0.1395 44.9329 43.6580 -Arial_Bold.ttf 79 ° 18.0844 18.0844 33 £ 0.4397 31.1883 42.4286 -Arial_Bold.ttf 79 ° 18.0844 18.0844 34 . 34.1272 8.1385 8.1385 -Arial_Bold.ttf 79 ° 18.0844 18.0844 35 2 0.2143 27.2857 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 36 5 0.4526 28.0000 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 37 m 10.5071 44.6104 31.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 38 V 0.1726 38.4935 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 39 6 0.1583 27.2857 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 40 w 11.3661 45.5065 30.6732 -Arial_Bold.ttf 79 ° 18.0844 18.0844 41 T 0.1240 33.2511 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 42 M 0.1512 39.5584 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 43 G -0.6985 39.1126 43.4589 -Arial_Bold.ttf 79 ° 18.0844 18.0844 44 b 0.1012 29.5628 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 45 9 0.2786 27.2857 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 46 ; 11.4197 8.8680 40.4372 -Arial_Bold.ttf 79 ° 18.0844 18.0844 47 D -0.0495 35.0909 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 48 L 0.3008 29.9113 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 49 y 11.4197 31.6883 42.4286 -Arial_Bold.ttf 79 ° 18.0844 18.0844 50 ‘ 0.3143 8.8680 17.6883 -Arial_Bold.ttf 79 ° 18.0844 18.0844 51 \ 0.0452 17.6883 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 52 R 0.4190 37.0498 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 53 < 5.6439 28.0000 31.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 54 4 0.6127 29.9589 41.7857 -Arial_Bold.ttf 79 ° 18.0844 18.0844 55 8 0.1450 27.2857 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 56 0 0.2552 27.2857 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 57 A 0.1226 40.5887 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 58 E 0.0181 32.0844 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 59 B 0.0603 35.0909 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 60 v 11.3419 31.6883 30.6732 -Arial_Bold.ttf 79 ° 18.0844 18.0844 61 k 0.2143 28.5152 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 62 J 0.3000 26.9524 42.7294 -Arial_Bold.ttf 79 ° 18.0844 18.0844 63 U 0.1234 33.3463 42.7294 -Arial_Bold.ttf 79 ° 18.0844 18.0844 64 j 0.1226 15.2294 53.7554 -Arial_Bold.ttf 79 ° 18.0844 18.0844 65 ( 0.2605 14.0000 53.5411 -Arial_Bold.ttf 79 ° 18.0844 18.0844 66 7 0.5476 27.2857 41.7857 -Arial_Bold.ttf 79 ° 18.0844 18.0844 67 § -0.2645 28.5152 54.7706 -Arial_Bold.ttf 79 ° 18.0844 18.0844 68 $ -2.8863 27.7857 50.8680 -Arial_Bold.ttf 79 ° 18.0844 18.0844 69 € -0.6699 31.6883 42.9437 -Arial_Bold.ttf 79 ° 18.0844 18.0844 70 / 0.2226 17.6883 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 71 C -0.6009 36.6537 42.7294 -Arial_Bold.ttf 79 ° 18.0844 18.0844 72 * 0.1915 19.7424 19.1320 -Arial_Bold.ttf 79 ° 18.0844 18.0844 73 ” 0.4055 22.4719 17.6883 -Arial_Bold.ttf 79 ° 18.0844 18.0844 74 ? -0.0266 30.4589 42.2143 -Arial_Bold.ttf 79 ° 18.0844 18.0844 75 { 0.0038 19.6472 53.9697 -Arial_Bold.ttf 79 ° 18.0844 18.0844 76 } -0.2881 19.6472 53.9697 -Arial_Bold.ttf 79 ° 18.0844 18.0844 77 , 33.9127 8.8680 17.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 78 I 0.1674 8.1385 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 79 ° 0.2690 18.0844 18.0844 -Arial_Bold.ttf 79 ° 18.0844 18.0844 80 K 0.0988 37.7641 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 81 H 0.2643 33.3463 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 82 q 10.2498 29.5628 43.4437 -Arial_Bold.ttf 79 ° 18.0844 18.0844 83 & -0.2262 38.8117 42.4286 -Arial_Bold.ttf 79 ° 18.0844 18.0844 84 ’ -0.0540 8.8680 17.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 85 [ -0.0607 15.2294 53.5411 -Arial_Bold.ttf 79 ° 18.0844 18.0844 86 - 23.9412 15.7294 6.9091 -Arial_Bold.ttf 79 ° 18.0844 18.0844 87 Y 0.2083 41.0563 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 88 Q -0.0056 41.7857 46.6472 -Arial_Bold.ttf 79 ° 18.0844 18.0844 89 " 0.3060 21.5909 15.2294 -Arial_Bold.ttf 79 ° 18.0844 18.0844 90 ! 0.1681 8.1385 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 91 x 11.6919 32.4177 30.6732 -Arial_Bold.ttf 79 ° 18.0844 18.0844 92 ) 0.1583 14.0000 53.5411 -Arial_Bold.ttf 79 ° 18.0844 18.0844 93 = 11.7542 29.2294 19.2835 -Arial_Bold.ttf 79 ° 18.0844 18.0844 94 + 7.3886 28.8961 28.8961 -Arial_Bold.ttf 79 ° 18.0844 18.0844 95 X 0.3119 38.9935 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 96 » 13.7908 26.9524 26.5563 -Arial_Bold.ttf 79 ° 18.0844 18.0844 97 ' 0.3157 8.1385 15.2294 -Arial_Bold.ttf 79 ° 18.0844 18.0844 98 ¢ -0.1452 28.7294 54.4372 -Arial_Bold.ttf 79 ° 18.0844 18.0844 99 Z 0.2097 34.4805 42.0000 -Arial_Bold.ttf 79 ° 18.0844 18.0844 100 > 5.8442 28.0000 31.9026 -Arial_Bold.ttf 79 ° 18.0844 18.0844 101 ® 0.3145 43.2294 42.4286 -Arial_Bold.ttf 79 ° 18.0844 18.0844 102 © 0.0657 43.9589 42.4286 -Arial_Bold.ttf 79 ° 18.0844 18.0844 103 ] 0.0869 15.2294 53.5411 -Arial_Bold.ttf 79 ° 18.0844 18.0844 104 é -0.4818 29.4113 42.8961 -Arial_Bold.ttf 79 ° 18.0844 18.0844 105 z 11.8154 26.7706 30.6732 -Arial_Bold.ttf 79 ° 18.0844 18.0844 106 _ 47.5880 33.4654 5.8615 -Arial_Bold.ttf 79 ° 18.0844 18.0844 107 ¥ 0.0900 30.2056 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 1 t 0.8417 18.1169 41.3810 -Arial_Bold.ttf 80 K 37.7641 42.0000 2 h -0.0714 27.7857 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 3 a 10.0760 28.8333 32.1169 -Arial_Bold.ttf 80 K 37.7641 42.0000 4 n 10.1085 27.7857 31.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 5 P 0.1909 32.0844 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 6 o 10.0043 31.0065 32.1169 -Arial_Bold.ttf 80 K 37.7641 42.0000 7 e 9.9170 29.4113 32.1169 -Arial_Bold.ttf 80 K 37.7641 42.0000 8 : 11.3171 8.1385 30.6732 -Arial_Bold.ttf 80 K 37.7641 42.0000 9 r 10.0557 19.8615 31.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 10 l 0.2631 8.1385 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 11 i -0.2981 8.1385 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 12 1 0.2443 18.2359 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 13 | -0.1000 5.8615 54.5563 -Arial_Bold.ttf 80 K 37.7641 42.0000 14 N -0.0788 33.3463 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 15 f -0.0915 20.6948 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 16 g 9.8307 29.5628 43.6580 -Arial_Bold.ttf 80 K 37.7641 42.0000 17 d 0.1326 29.5628 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 18 W 0.1105 54.7706 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 19 s 10.0415 28.3333 32.1169 -Arial_Bold.ttf 80 K 37.7641 42.0000 20 c 10.1450 27.5000 32.1169 -Arial_Bold.ttf 80 K 37.7641 42.0000 21 u 11.1616 27.7857 30.8874 -Arial_Bold.ttf 80 K 37.7641 42.0000 22 3 -0.1319 27.2857 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 23 ~ 15.5930 30.4589 10.8117 -Arial_Bold.ttf 80 K 37.7641 42.0000 24 # -0.2071 30.3874 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 25 O -0.8016 40.3420 43.4589 -Arial_Bold.ttf 80 K 37.7641 42.0000 26 ` -0.0014 12.7706 8.3203 -Arial_Bold.ttf 80 K 37.7641 42.0000 27 @ -0.2240 55.2706 56.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 28 F -0.1957 29.0152 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 29 S -1.0348 33.8615 43.4589 -Arial_Bold.ttf 80 K 37.7641 42.0000 30 p 10.2560 29.5628 43.4437 -Arial_Bold.ttf 80 K 37.7641 42.0000 31 “ 0.0992 22.4719 17.6883 -Arial_Bold.ttf 80 K 37.7641 42.0000 32 % -0.2405 44.9329 43.6580 -Arial_Bold.ttf 80 K 37.7641 42.0000 33 £ -0.2181 31.1883 42.4286 -Arial_Bold.ttf 80 K 37.7641 42.0000 34 . 34.2012 8.1385 8.1385 -Arial_Bold.ttf 80 K 37.7641 42.0000 35 2 -0.0248 27.2857 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 36 5 0.4871 28.0000 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 37 m 10.0571 44.6104 31.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 38 V 0.0045 38.4935 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 39 6 0.2455 27.2857 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 40 w 11.5697 45.5065 30.6732 -Arial_Bold.ttf 80 K 37.7641 42.0000 41 T -0.0157 33.2511 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 42 M 0.4726 39.5584 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 43 G -0.6449 39.1126 43.4589 -Arial_Bold.ttf 80 K 37.7641 42.0000 44 b -0.2847 29.5628 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 45 9 -0.1669 27.2857 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 46 ; 11.0274 8.8680 40.4372 -Arial_Bold.ttf 80 K 37.7641 42.0000 47 D -0.2250 35.0909 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 48 L 0.0305 29.9113 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 49 y 11.4549 31.6883 42.4286 -Arial_Bold.ttf 80 K 37.7641 42.0000 50 ‘ 0.1617 8.8680 17.6883 -Arial_Bold.ttf 80 K 37.7641 42.0000 51 \ -0.0917 17.6883 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 52 R -0.0591 37.0498 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 53 < 5.3918 28.0000 31.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 54 4 0.3581 29.9589 41.7857 -Arial_Bold.ttf 80 K 37.7641 42.0000 55 8 -0.2683 27.2857 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 56 0 0.1176 27.2857 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 57 A -0.0909 40.5887 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 58 E 0.3433 32.0844 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 59 B -0.1990 35.0909 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 60 v 11.6823 31.6883 30.6732 -Arial_Bold.ttf 80 K 37.7641 42.0000 61 k -0.0440 28.5152 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 62 J 0.1431 26.9524 42.7294 -Arial_Bold.ttf 80 K 37.7641 42.0000 63 U -0.1371 33.3463 42.7294 -Arial_Bold.ttf 80 K 37.7641 42.0000 64 j 0.0514 15.2294 53.7554 -Arial_Bold.ttf 80 K 37.7641 42.0000 65 ( 0.2274 14.0000 53.5411 -Arial_Bold.ttf 80 K 37.7641 42.0000 66 7 0.2052 27.2857 41.7857 -Arial_Bold.ttf 80 K 37.7641 42.0000 67 § -0.1778 28.5152 54.7706 -Arial_Bold.ttf 80 K 37.7641 42.0000 68 $ -2.6406 27.7857 50.8680 -Arial_Bold.ttf 80 K 37.7641 42.0000 69 € -0.8860 31.6883 42.9437 -Arial_Bold.ttf 80 K 37.7641 42.0000 70 / -0.0871 17.6883 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 71 C -0.7435 36.6537 42.7294 -Arial_Bold.ttf 80 K 37.7641 42.0000 72 * -0.0319 19.7424 19.1320 -Arial_Bold.ttf 80 K 37.7641 42.0000 73 ” 0.0560 22.4719 17.6883 -Arial_Bold.ttf 80 K 37.7641 42.0000 74 ? -0.2695 30.4589 42.2143 -Arial_Bold.ttf 80 K 37.7641 42.0000 75 { -0.2248 19.6472 53.9697 -Arial_Bold.ttf 80 K 37.7641 42.0000 76 } -0.3469 19.6472 53.9697 -Arial_Bold.ttf 80 K 37.7641 42.0000 77 , 33.5755 8.8680 17.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 78 I -0.0774 8.1385 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 79 ° -0.0821 18.0844 18.0844 -Arial_Bold.ttf 80 K 37.7641 42.0000 80 K -0.2266 37.7641 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 81 H -0.2197 33.3463 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 82 q 10.1450 29.5628 43.4437 -Arial_Bold.ttf 80 K 37.7641 42.0000 83 & -0.1948 38.8117 42.4286 -Arial_Bold.ttf 80 K 37.7641 42.0000 84 ’ -0.0476 8.8680 17.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 85 [ 0.2242 15.2294 53.5411 -Arial_Bold.ttf 80 K 37.7641 42.0000 86 - 24.0500 15.7294 6.9091 -Arial_Bold.ttf 80 K 37.7641 42.0000 87 Y 0.2645 41.0563 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 88 Q -0.8308 41.7857 46.6472 -Arial_Bold.ttf 80 K 37.7641 42.0000 89 " 0.0571 21.5909 15.2294 -Arial_Bold.ttf 80 K 37.7641 42.0000 90 ! -0.0760 8.1385 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 91 x 11.2390 32.4177 30.6732 -Arial_Bold.ttf 80 K 37.7641 42.0000 92 ) -0.3788 14.0000 53.5411 -Arial_Bold.ttf 80 K 37.7641 42.0000 93 = 11.2532 29.2294 19.2835 -Arial_Bold.ttf 80 K 37.7641 42.0000 94 + 7.3619 28.8961 28.8961 -Arial_Bold.ttf 80 K 37.7641 42.0000 95 X 0.0903 38.9935 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 96 » 13.6051 26.9524 26.5563 -Arial_Bold.ttf 80 K 37.7641 42.0000 97 ' -0.1585 8.1385 15.2294 -Arial_Bold.ttf 80 K 37.7641 42.0000 98 ¢ 0.2176 28.7294 54.4372 -Arial_Bold.ttf 80 K 37.7641 42.0000 99 Z 0.0393 34.4805 42.0000 -Arial_Bold.ttf 80 K 37.7641 42.0000 100 > 5.4894 28.0000 31.9026 -Arial_Bold.ttf 80 K 37.7641 42.0000 101 ® -0.0695 43.2294 42.4286 -Arial_Bold.ttf 80 K 37.7641 42.0000 102 © -0.4431 43.9589 42.4286 -Arial_Bold.ttf 80 K 37.7641 42.0000 103 ] 0.0871 15.2294 53.5411 -Arial_Bold.ttf 80 K 37.7641 42.0000 104 é -0.5447 29.4113 42.8961 -Arial_Bold.ttf 80 K 37.7641 42.0000 105 z 11.2457 26.7706 30.6732 -Arial_Bold.ttf 80 K 37.7641 42.0000 106 _ 47.7434 33.4654 5.8615 -Arial_Bold.ttf 80 K 37.7641 42.0000 107 ¥ -0.0312 30.2056 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 1 t 0.9190 18.1169 41.3810 -Arial_Bold.ttf 81 H 33.3463 42.0000 2 h 0.0790 27.7857 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 3 a 10.1650 28.8333 32.1169 -Arial_Bold.ttf 81 H 33.3463 42.0000 4 n 10.2286 27.7857 31.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 5 P -0.1221 32.0844 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 6 o 10.0460 31.0065 32.1169 -Arial_Bold.ttf 81 H 33.3463 42.0000 7 e 10.0974 29.4113 32.1169 -Arial_Bold.ttf 81 H 33.3463 42.0000 8 : 11.2223 8.1385 30.6732 -Arial_Bold.ttf 81 H 33.3463 42.0000 9 r 10.3224 19.8615 31.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 10 l -0.2107 8.1385 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 11 i -0.1619 8.1385 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 12 1 -0.2476 18.2359 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 13 | 0.1157 5.8615 54.5563 -Arial_Bold.ttf 81 H 33.3463 42.0000 14 N 0.3062 33.3463 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 15 f -0.3879 20.6948 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 16 g 10.2429 29.5628 43.6580 -Arial_Bold.ttf 81 H 33.3463 42.0000 17 d 0.0391 29.5628 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 18 W -0.0248 54.7706 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 19 s 10.1300 28.3333 32.1169 -Arial_Bold.ttf 81 H 33.3463 42.0000 20 c 10.6966 27.5000 32.1169 -Arial_Bold.ttf 81 H 33.3463 42.0000 21 u 11.5640 27.7857 30.8874 -Arial_Bold.ttf 81 H 33.3463 42.0000 22 3 -0.4419 27.2857 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 23 ~ 16.0446 30.4589 10.8117 -Arial_Bold.ttf 81 H 33.3463 42.0000 24 # -0.1350 30.3874 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 25 O -0.5221 40.3420 43.4589 -Arial_Bold.ttf 81 H 33.3463 42.0000 26 ` -0.1645 12.7706 8.3203 -Arial_Bold.ttf 81 H 33.3463 42.0000 27 @ -0.0091 55.2706 56.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 28 F 0.1312 29.0152 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 29 S -0.7592 33.8615 43.4589 -Arial_Bold.ttf 81 H 33.3463 42.0000 30 p 9.7127 29.5628 43.4437 -Arial_Bold.ttf 81 H 33.3463 42.0000 31 “ 0.0955 22.4719 17.6883 -Arial_Bold.ttf 81 H 33.3463 42.0000 32 % -0.1982 44.9329 43.6580 -Arial_Bold.ttf 81 H 33.3463 42.0000 33 £ -0.1609 31.1883 42.4286 -Arial_Bold.ttf 81 H 33.3463 42.0000 34 . 34.0784 8.1385 8.1385 -Arial_Bold.ttf 81 H 33.3463 42.0000 35 2 0.2014 27.2857 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 36 5 0.4798 28.0000 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 37 m 10.1793 44.6104 31.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 38 V 0.1228 38.4935 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 39 6 -0.1728 27.2857 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 40 w 11.0157 45.5065 30.6732 -Arial_Bold.ttf 81 H 33.3463 42.0000 41 T 0.1826 33.2511 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 42 M -0.4062 39.5584 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 43 G -0.5604 39.1126 43.4589 -Arial_Bold.ttf 81 H 33.3463 42.0000 44 b -0.1476 29.5628 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 45 9 -0.0760 27.2857 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 46 ; 11.4104 8.8680 40.4372 -Arial_Bold.ttf 81 H 33.3463 42.0000 47 D -0.2026 35.0909 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 48 L 0.3062 29.9113 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 49 y 11.3047 31.6883 42.4286 -Arial_Bold.ttf 81 H 33.3463 42.0000 50 ‘ 0.0000 8.8680 17.6883 -Arial_Bold.ttf 81 H 33.3463 42.0000 51 \ 0.0579 17.6883 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 52 R -0.0917 37.0498 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 53 < 5.7656 28.0000 31.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 54 4 0.1369 29.9589 41.7857 -Arial_Bold.ttf 81 H 33.3463 42.0000 55 8 -0.0290 27.2857 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 56 0 -0.2347 27.2857 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 57 A 0.0319 40.5887 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 58 E 0.0486 32.0844 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 59 B -0.1333 35.0909 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 60 v 11.4497 31.6883 30.6732 -Arial_Bold.ttf 81 H 33.3463 42.0000 61 k -0.0702 28.5152 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 62 J 0.1034 26.9524 42.7294 -Arial_Bold.ttf 81 H 33.3463 42.0000 63 U 0.2371 33.3463 42.7294 -Arial_Bold.ttf 81 H 33.3463 42.0000 64 j -0.0909 15.2294 53.7554 -Arial_Bold.ttf 81 H 33.3463 42.0000 65 ( 0.0714 14.0000 53.5411 -Arial_Bold.ttf 81 H 33.3463 42.0000 66 7 0.1655 27.2857 41.7857 -Arial_Bold.ttf 81 H 33.3463 42.0000 67 § -0.2760 28.5152 54.7706 -Arial_Bold.ttf 81 H 33.3463 42.0000 68 $ -3.1610 27.7857 50.8680 -Arial_Bold.ttf 81 H 33.3463 42.0000 69 € -0.8425 31.6883 42.9437 -Arial_Bold.ttf 81 H 33.3463 42.0000 70 / -0.2802 17.6883 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 71 C -0.6580 36.6537 42.7294 -Arial_Bold.ttf 81 H 33.3463 42.0000 72 * 0.1252 19.7424 19.1320 -Arial_Bold.ttf 81 H 33.3463 42.0000 73 ” 0.0712 22.4719 17.6883 -Arial_Bold.ttf 81 H 33.3463 42.0000 74 ? -0.3631 30.4589 42.2143 -Arial_Bold.ttf 81 H 33.3463 42.0000 75 { -0.2135 19.6472 53.9697 -Arial_Bold.ttf 81 H 33.3463 42.0000 76 } -0.2931 19.6472 53.9697 -Arial_Bold.ttf 81 H 33.3463 42.0000 77 , 34.0045 8.8680 17.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 78 I -0.0623 8.1385 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 79 ° -0.2083 18.0844 18.0844 -Arial_Bold.ttf 81 H 33.3463 42.0000 80 K -0.0417 37.7641 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 81 H 0.1202 33.3463 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 82 q 10.0403 29.5628 43.4437 -Arial_Bold.ttf 81 H 33.3463 42.0000 83 & -0.1772 38.8117 42.4286 -Arial_Bold.ttf 81 H 33.3463 42.0000 84 ’ 0.0150 8.8680 17.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 85 [ 0.2788 15.2294 53.5411 -Arial_Bold.ttf 81 H 33.3463 42.0000 86 - 23.7595 15.7294 6.9091 -Arial_Bold.ttf 81 H 33.3463 42.0000 87 Y -0.1548 41.0563 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 88 Q -0.9642 41.7857 46.6472 -Arial_Bold.ttf 81 H 33.3463 42.0000 89 " -0.1326 21.5909 15.2294 -Arial_Bold.ttf 81 H 33.3463 42.0000 90 ! 0.0252 8.1385 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 91 x 11.3292 32.4177 30.6732 -Arial_Bold.ttf 81 H 33.3463 42.0000 92 ) 0.1274 14.0000 53.5411 -Arial_Bold.ttf 81 H 33.3463 42.0000 93 = 11.0885 29.2294 19.2835 -Arial_Bold.ttf 81 H 33.3463 42.0000 94 + 7.2827 28.8961 28.8961 -Arial_Bold.ttf 81 H 33.3463 42.0000 95 X -0.1774 38.9935 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 96 » 13.6882 26.9524 26.5563 -Arial_Bold.ttf 81 H 33.3463 42.0000 97 ' -0.0974 8.1385 15.2294 -Arial_Bold.ttf 81 H 33.3463 42.0000 98 ¢ -0.1683 28.7294 54.4372 -Arial_Bold.ttf 81 H 33.3463 42.0000 99 Z -0.0500 34.4805 42.0000 -Arial_Bold.ttf 81 H 33.3463 42.0000 100 > 5.2754 28.0000 31.9026 -Arial_Bold.ttf 81 H 33.3463 42.0000 101 ® -0.3278 43.2294 42.4286 -Arial_Bold.ttf 81 H 33.3463 42.0000 102 © -0.1383 43.9589 42.4286 -Arial_Bold.ttf 81 H 33.3463 42.0000 103 ] -0.1071 15.2294 53.5411 -Arial_Bold.ttf 81 H 33.3463 42.0000 104 é -0.6453 29.4113 42.8961 -Arial_Bold.ttf 81 H 33.3463 42.0000 105 z 11.5197 26.7706 30.6732 -Arial_Bold.ttf 81 H 33.3463 42.0000 106 _ 47.4556 33.4654 5.8615 -Arial_Bold.ttf 81 H 33.3463 42.0000 107 ¥ 0.3238 30.2056 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 1 t -9.3536 18.1169 41.3810 -Arial_Bold.ttf 82 q 29.5628 43.4437 2 h -10.4371 27.7857 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 3 a -0.0500 28.8333 32.1169 -Arial_Bold.ttf 82 q 29.5628 43.4437 4 n 0.0331 27.7857 31.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 5 P -9.9784 32.0844 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 6 o 0.1153 31.0065 32.1169 -Arial_Bold.ttf 82 q 29.5628 43.4437 7 e 0.0988 29.4113 32.1169 -Arial_Bold.ttf 82 q 29.5628 43.4437 8 : 1.1975 8.1385 30.6732 -Arial_Bold.ttf 82 q 29.5628 43.4437 9 r 0.0865 19.8615 31.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 10 l -10.0595 8.1385 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 11 i -10.2210 8.1385 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 12 1 -10.0331 18.2359 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 13 | -10.0403 5.8615 54.5563 -Arial_Bold.ttf 82 q 29.5628 43.4437 14 N -10.2233 33.3463 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 15 f -10.3214 20.6948 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 16 g -0.0462 29.5628 43.6580 -Arial_Bold.ttf 82 q 29.5628 43.4437 17 d -10.0624 29.5628 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 18 W -10.0534 54.7706 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 19 s 0.2502 28.3333 32.1169 -Arial_Bold.ttf 82 q 29.5628 43.4437 20 c 0.1097 27.5000 32.1169 -Arial_Bold.ttf 82 q 29.5628 43.4437 21 u 1.1035 27.7857 30.8874 -Arial_Bold.ttf 82 q 29.5628 43.4437 22 3 -10.0915 27.2857 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 23 ~ 5.8472 30.4589 10.8117 -Arial_Bold.ttf 82 q 29.5628 43.4437 24 # -9.9486 30.3874 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 25 O -10.8640 40.3420 43.4589 -Arial_Bold.ttf 82 q 29.5628 43.4437 26 ` -9.7912 12.7706 8.3203 -Arial_Bold.ttf 82 q 29.5628 43.4437 27 @ -10.2805 55.2706 56.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 28 F -10.0474 29.0152 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 29 S -10.6443 33.8615 43.4589 -Arial_Bold.ttf 82 q 29.5628 43.4437 30 p 0.1645 29.5628 43.4437 -Arial_Bold.ttf 82 q 29.5628 43.4437 31 “ -10.0351 22.4719 17.6883 -Arial_Bold.ttf 82 q 29.5628 43.4437 32 % -10.5560 44.9329 43.6580 -Arial_Bold.ttf 82 q 29.5628 43.4437 33 £ -10.2527 31.1883 42.4286 -Arial_Bold.ttf 82 q 29.5628 43.4437 34 . 23.7051 8.1385 8.1385 -Arial_Bold.ttf 82 q 29.5628 43.4437 35 2 -10.0057 27.2857 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 36 5 -9.9688 28.0000 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 37 m 0.5562 44.6104 31.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 38 V -9.8936 38.4935 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 39 6 -10.3157 27.2857 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 40 w 1.0645 45.5065 30.6732 -Arial_Bold.ttf 82 q 29.5628 43.4437 41 T -10.1557 33.2511 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 42 M -9.8426 39.5584 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 43 G -10.5788 39.1126 43.4589 -Arial_Bold.ttf 82 q 29.5628 43.4437 44 b -10.3202 29.5628 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 45 9 -9.7472 27.2857 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 46 ; 1.0469 8.8680 40.4372 -Arial_Bold.ttf 82 q 29.5628 43.4437 47 D -10.1339 35.0909 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 48 L -10.1891 29.9113 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 49 y 1.2294 31.6883 42.4286 -Arial_Bold.ttf 82 q 29.5628 43.4437 50 ‘ -10.3826 8.8680 17.6883 -Arial_Bold.ttf 82 q 29.5628 43.4437 51 \ -10.0877 17.6883 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 52 R -9.8496 37.0498 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 53 < -4.2135 28.0000 31.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 54 4 -9.7734 29.9589 41.7857 -Arial_Bold.ttf 82 q 29.5628 43.4437 55 8 -10.0734 27.2857 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 56 0 -10.1181 27.2857 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 57 A -10.0929 40.5887 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 58 E -10.1105 32.0844 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 59 B -9.9662 35.0909 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 60 v 1.1794 31.6883 30.6732 -Arial_Bold.ttf 82 q 29.5628 43.4437 61 k -10.1831 28.5152 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 62 J -10.2605 26.9524 42.7294 -Arial_Bold.ttf 82 q 29.5628 43.4437 63 U -9.8662 33.3463 42.7294 -Arial_Bold.ttf 82 q 29.5628 43.4437 64 j -9.8738 15.2294 53.7554 -Arial_Bold.ttf 82 q 29.5628 43.4437 65 ( -10.2050 14.0000 53.5411 -Arial_Bold.ttf 82 q 29.5628 43.4437 66 7 -9.7700 27.2857 41.7857 -Arial_Bold.ttf 82 q 29.5628 43.4437 67 § -10.5762 28.5152 54.7706 -Arial_Bold.ttf 82 q 29.5628 43.4437 68 $ -13.0682 27.7857 50.8680 -Arial_Bold.ttf 82 q 29.5628 43.4437 69 € -10.8969 31.6883 42.9437 -Arial_Bold.ttf 82 q 29.5628 43.4437 70 / -10.1310 17.6883 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 71 C -11.0628 36.6537 42.7294 -Arial_Bold.ttf 82 q 29.5628 43.4437 72 * -10.2210 19.7424 19.1320 -Arial_Bold.ttf 82 q 29.5628 43.4437 73 ” -9.8575 22.4719 17.6883 -Arial_Bold.ttf 82 q 29.5628 43.4437 74 ? -10.2260 30.4589 42.2143 -Arial_Bold.ttf 82 q 29.5628 43.4437 75 { -10.3482 19.6472 53.9697 -Arial_Bold.ttf 82 q 29.5628 43.4437 76 } -10.2734 19.6472 53.9697 -Arial_Bold.ttf 82 q 29.5628 43.4437 77 , 23.6198 8.8680 17.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 78 I -9.8867 8.1385 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 79 ° -10.4034 18.0844 18.0844 -Arial_Bold.ttf 82 q 29.5628 43.4437 80 K -10.2093 37.7641 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 81 H -9.7303 33.3463 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 82 q 0.0207 29.5628 43.4437 -Arial_Bold.ttf 82 q 29.5628 43.4437 83 & -10.0295 38.8117 42.4286 -Arial_Bold.ttf 82 q 29.5628 43.4437 84 ’ -9.9305 8.8680 17.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 85 [ -9.9505 15.2294 53.5411 -Arial_Bold.ttf 82 q 29.5628 43.4437 86 - 13.4879 15.7294 6.9091 -Arial_Bold.ttf 82 q 29.5628 43.4437 87 Y -9.7232 41.0563 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 88 Q -10.6071 41.7857 46.6472 -Arial_Bold.ttf 82 q 29.5628 43.4437 89 " -10.3379 21.5909 15.2294 -Arial_Bold.ttf 82 q 29.5628 43.4437 90 ! -9.9486 8.1385 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 91 x 1.3196 32.4177 30.6732 -Arial_Bold.ttf 82 q 29.5628 43.4437 92 ) -9.8517 14.0000 53.5411 -Arial_Bold.ttf 82 q 29.5628 43.4437 93 = 1.1645 29.2294 19.2835 -Arial_Bold.ttf 82 q 29.5628 43.4437 94 + -2.7750 28.8961 28.8961 -Arial_Bold.ttf 82 q 29.5628 43.4437 95 X -10.0936 38.9935 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 96 » 3.1549 26.9524 26.5563 -Arial_Bold.ttf 82 q 29.5628 43.4437 97 ' -10.1565 8.1385 15.2294 -Arial_Bold.ttf 82 q 29.5628 43.4437 98 ¢ -10.0474 28.7294 54.4372 -Arial_Bold.ttf 82 q 29.5628 43.4437 99 Z -9.8946 34.4805 42.0000 -Arial_Bold.ttf 82 q 29.5628 43.4437 100 > -4.5761 28.0000 31.9026 -Arial_Bold.ttf 82 q 29.5628 43.4437 101 ® -10.1212 43.2294 42.4286 -Arial_Bold.ttf 82 q 29.5628 43.4437 102 © -10.0367 43.9589 42.4286 -Arial_Bold.ttf 82 q 29.5628 43.4437 103 ] -9.8843 15.2294 53.5411 -Arial_Bold.ttf 82 q 29.5628 43.4437 104 é -10.6161 29.4113 42.8961 -Arial_Bold.ttf 82 q 29.5628 43.4437 105 z 1.0338 26.7706 30.6732 -Arial_Bold.ttf 82 q 29.5628 43.4437 106 _ 37.7884 33.4654 5.8615 -Arial_Bold.ttf 82 q 29.5628 43.4437 107 ¥ -9.9843 30.2056 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 1 t 0.8345 18.1169 41.3810 -Arial_Bold.ttf 83 & 38.8117 42.4286 2 h 0.0712 27.7857 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 3 a 10.6536 28.8333 32.1169 -Arial_Bold.ttf 83 & 38.8117 42.4286 4 n 10.5462 27.7857 31.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 5 P 0.1702 32.0844 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 6 o 10.3610 31.0065 32.1169 -Arial_Bold.ttf 83 & 38.8117 42.4286 7 e 10.2557 29.4113 32.1169 -Arial_Bold.ttf 83 & 38.8117 42.4286 8 : 11.3578 8.1385 30.6732 -Arial_Bold.ttf 83 & 38.8117 42.4286 9 r 10.1343 19.8615 31.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 10 l 0.2500 8.1385 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 11 i 0.1057 8.1385 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 12 1 -0.0321 18.2359 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 13 | 0.3431 5.8615 54.5563 -Arial_Bold.ttf 83 & 38.8117 42.4286 14 N 0.4847 33.3463 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 15 f 0.1488 20.6948 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 16 g 10.2819 29.5628 43.6580 -Arial_Bold.ttf 83 & 38.8117 42.4286 17 d 0.2395 29.5628 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 18 W 0.0302 54.7706 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 19 s 9.9389 28.3333 32.1169 -Arial_Bold.ttf 83 & 38.8117 42.4286 20 c 9.9829 27.5000 32.1169 -Arial_Bold.ttf 83 & 38.8117 42.4286 21 u 11.6768 27.7857 30.8874 -Arial_Bold.ttf 83 & 38.8117 42.4286 22 3 0.2714 27.2857 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 23 ~ 16.2908 30.4589 10.8117 -Arial_Bold.ttf 83 & 38.8117 42.4286 24 # 0.2476 30.3874 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 25 O -0.3671 40.3420 43.4589 -Arial_Bold.ttf 83 & 38.8117 42.4286 26 ` 0.3792 12.7706 8.3203 -Arial_Bold.ttf 83 & 38.8117 42.4286 27 @ -0.1792 55.2706 56.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 28 F 0.2238 29.0152 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 29 S -0.4596 33.8615 43.4589 -Arial_Bold.ttf 83 & 38.8117 42.4286 30 p 10.2824 29.5628 43.4437 -Arial_Bold.ttf 83 & 38.8117 42.4286 31 “ 0.2121 22.4719 17.6883 -Arial_Bold.ttf 83 & 38.8117 42.4286 32 % 0.1774 44.9329 43.6580 -Arial_Bold.ttf 83 & 38.8117 42.4286 33 £ -0.0207 31.1883 42.4286 -Arial_Bold.ttf 83 & 38.8117 42.4286 34 . 34.0900 8.1385 8.1385 -Arial_Bold.ttf 83 & 38.8117 42.4286 35 2 0.2635 27.2857 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 36 5 0.7262 28.0000 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 37 m 10.3655 44.6104 31.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 38 V 0.0869 38.4935 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 39 6 -0.1055 27.2857 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 40 w 11.7628 45.5065 30.6732 -Arial_Bold.ttf 83 & 38.8117 42.4286 41 T 0.0438 33.2511 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 42 M 0.1595 39.5584 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 43 G -0.6061 39.1126 43.4589 -Arial_Bold.ttf 83 & 38.8117 42.4286 44 b 0.2365 29.5628 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 45 9 0.4516 27.2857 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 46 ; 11.3923 8.8680 40.4372 -Arial_Bold.ttf 83 & 38.8117 42.4286 47 D 0.0621 35.0909 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 48 L 0.4893 29.9113 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 49 y 11.8564 31.6883 42.4286 -Arial_Bold.ttf 83 & 38.8117 42.4286 50 ‘ 0.2909 8.8680 17.6883 -Arial_Bold.ttf 83 & 38.8117 42.4286 51 \ -0.0145 17.6883 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 52 R 0.1310 37.0498 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 53 < 5.6358 28.0000 31.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 54 4 0.5119 29.9589 41.7857 -Arial_Bold.ttf 83 & 38.8117 42.4286 55 8 0.3976 27.2857 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 56 0 0.2635 27.2857 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 57 A 0.0500 40.5887 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 58 E 0.3611 32.0844 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 59 B -0.2133 35.0909 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 60 v 11.6471 31.6883 30.6732 -Arial_Bold.ttf 83 & 38.8117 42.4286 61 k 0.1855 28.5152 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 62 J 0.1772 26.9524 42.7294 -Arial_Bold.ttf 83 & 38.8117 42.4286 63 U -0.0048 33.3463 42.7294 -Arial_Bold.ttf 83 & 38.8117 42.4286 64 j 0.0436 15.2294 53.7554 -Arial_Bold.ttf 83 & 38.8117 42.4286 65 ( 0.1083 14.0000 53.5411 -Arial_Bold.ttf 83 & 38.8117 42.4286 66 7 0.2036 27.2857 41.7857 -Arial_Bold.ttf 83 & 38.8117 42.4286 67 § -0.2667 28.5152 54.7706 -Arial_Bold.ttf 83 & 38.8117 42.4286 68 $ -2.7186 27.7857 50.8680 -Arial_Bold.ttf 83 & 38.8117 42.4286 69 € -0.5523 31.6883 42.9437 -Arial_Bold.ttf 83 & 38.8117 42.4286 70 / 0.2917 17.6883 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 71 C -0.6211 36.6537 42.7294 -Arial_Bold.ttf 83 & 38.8117 42.4286 72 * 0.1786 19.7424 19.1320 -Arial_Bold.ttf 83 & 38.8117 42.4286 73 ” 0.3298 22.4719 17.6883 -Arial_Bold.ttf 83 & 38.8117 42.4286 74 ? 0.0603 30.4589 42.2143 -Arial_Bold.ttf 83 & 38.8117 42.4286 75 { 0.1500 19.6472 53.9697 -Arial_Bold.ttf 83 & 38.8117 42.4286 76 } 0.1990 19.6472 53.9697 -Arial_Bold.ttf 83 & 38.8117 42.4286 77 , 34.0424 8.8680 17.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 78 I 0.2448 8.1385 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 79 ° 0.1222 18.0844 18.0844 -Arial_Bold.ttf 83 & 38.8117 42.4286 80 K 0.5621 37.7641 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 81 H -0.1016 33.3463 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 82 q 10.6295 29.5628 43.4437 -Arial_Bold.ttf 83 & 38.8117 42.4286 83 & 0.4524 38.8117 42.4286 -Arial_Bold.ttf 83 & 38.8117 42.4286 84 ’ 0.5464 8.8680 17.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 85 [ 0.3417 15.2294 53.5411 -Arial_Bold.ttf 83 & 38.8117 42.4286 86 - 24.2883 15.7294 6.9091 -Arial_Bold.ttf 83 & 38.8117 42.4286 87 Y 0.2917 41.0563 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 88 Q -0.4294 41.7857 46.6472 -Arial_Bold.ttf 83 & 38.8117 42.4286 89 " 0.0940 21.5909 15.2294 -Arial_Bold.ttf 83 & 38.8117 42.4286 90 ! 0.4312 8.1385 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 91 x 11.4983 32.4177 30.6732 -Arial_Bold.ttf 83 & 38.8117 42.4286 92 ) 0.1585 14.0000 53.5411 -Arial_Bold.ttf 83 & 38.8117 42.4286 93 = 11.2364 29.2294 19.2835 -Arial_Bold.ttf 83 & 38.8117 42.4286 94 + 7.4158 28.8961 28.8961 -Arial_Bold.ttf 83 & 38.8117 42.4286 95 X 0.1940 38.9935 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 96 » 13.9241 26.9524 26.5563 -Arial_Bold.ttf 83 & 38.8117 42.4286 97 ' 0.0034 8.1385 15.2294 -Arial_Bold.ttf 83 & 38.8117 42.4286 98 ¢ 0.3281 28.7294 54.4372 -Arial_Bold.ttf 83 & 38.8117 42.4286 99 Z 0.0869 34.4805 42.0000 -Arial_Bold.ttf 83 & 38.8117 42.4286 100 > 5.5439 28.0000 31.9026 -Arial_Bold.ttf 83 & 38.8117 42.4286 101 ® 0.1631 43.2294 42.4286 -Arial_Bold.ttf 83 & 38.8117 42.4286 102 © -0.1891 43.9589 42.4286 -Arial_Bold.ttf 83 & 38.8117 42.4286 103 ] 0.3824 15.2294 53.5411 -Arial_Bold.ttf 83 & 38.8117 42.4286 104 é -0.7663 29.4113 42.8961 -Arial_Bold.ttf 83 & 38.8117 42.4286 105 z 11.5666 26.7706 30.6732 -Arial_Bold.ttf 83 & 38.8117 42.4286 106 _ 47.6587 33.4654 5.8615 -Arial_Bold.ttf 83 & 38.8117 42.4286 107 ¥ 0.1460 30.2056 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 1 t 0.7605 18.1169 41.3810 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 2 h 0.0226 27.7857 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 3 a 10.1474 28.8333 32.1169 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 4 n 10.2307 27.7857 31.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 5 P -0.1714 32.0844 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 6 o 9.8010 31.0065 32.1169 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 7 e 10.3990 29.4113 32.1169 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 8 : 11.3171 8.1385 30.6732 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 9 r 10.3417 19.8615 31.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 10 l -0.3314 8.1385 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 11 i 0.0917 8.1385 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 12 1 0.0585 18.2359 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 13 | 0.3076 5.8615 54.5563 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 14 N 0.0917 33.3463 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 15 f -0.3417 20.6948 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 16 g 10.1564 29.5628 43.6580 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 17 d 0.0524 29.5628 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 18 W -0.1526 54.7706 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 19 s 10.0974 28.3333 32.1169 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 20 c 10.1331 27.5000 32.1169 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 21 u 11.1600 27.7857 30.8874 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 22 3 -0.0909 27.2857 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 23 ~ 16.2220 30.4589 10.8117 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 24 # 0.1964 30.3874 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 25 O -0.6521 40.3420 43.4589 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 26 ` 0.0045 12.7706 8.3203 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 27 @ -0.1369 55.2706 56.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 28 F -0.0135 29.0152 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 29 S -0.5044 33.8615 43.4589 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 30 p 9.9305 29.5628 43.4437 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 31 “ 0.0669 22.4719 17.6883 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 32 % -0.0688 44.9329 43.6580 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 33 £ -0.1143 31.1883 42.4286 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 34 . 33.8438 8.1385 8.1385 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 35 2 -0.0643 27.2857 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 36 5 0.3819 28.0000 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 37 m 10.1974 44.6104 31.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 38 V -0.0917 38.4935 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 39 6 0.0583 27.2857 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 40 w 11.3626 45.5065 30.6732 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 41 T 0.1357 33.2511 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 42 M 0.3268 39.5584 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 43 G -0.7249 39.1126 43.4589 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 44 b 0.2562 29.5628 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 45 9 0.0000 27.2857 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 46 ; 11.3626 8.8680 40.4372 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 47 D -0.2540 35.0909 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 48 L -0.0274 29.9113 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 49 y 11.2852 31.6883 42.4286 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 50 ‘ -0.2060 8.8680 17.6883 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 51 \ 0.0955 17.6883 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 52 R -0.0871 37.0498 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 53 < 5.7201 28.0000 31.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 54 4 0.3417 29.9589 41.7857 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 55 8 -0.0455 27.2857 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 56 0 -0.0379 27.2857 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 57 A 0.1266 40.5887 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 58 E 0.3502 32.0844 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 59 B -0.0008 35.0909 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 60 v 11.0864 31.6883 30.6732 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 61 k 0.0403 28.5152 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 62 J 0.0365 26.9524 42.7294 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 63 U -0.1690 33.3463 42.7294 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 64 j -0.1893 15.2294 53.7554 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 65 ( 0.1766 14.0000 53.5411 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 66 7 0.2766 27.2857 41.7857 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 67 § -0.3371 28.5152 54.7706 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 68 $ -3.0982 27.7857 50.8680 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 69 € -0.9166 31.6883 42.9437 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 70 / -0.0917 17.6883 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 71 C -0.8203 36.6537 42.7294 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 72 * -0.0500 19.7424 19.1320 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 73 ” -0.0871 22.4719 17.6883 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 74 ? -0.1921 30.4589 42.2143 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 75 { -0.2657 19.6472 53.9697 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 76 } -0.2500 19.6472 53.9697 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 77 , 33.9024 8.8680 17.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 78 I -0.2205 8.1385 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 79 ° -0.2143 18.0844 18.0844 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 80 K -0.0571 37.7641 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 81 H 0.1443 33.3463 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 82 q 10.0877 29.5628 43.4437 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 83 & -0.0877 38.8117 42.4286 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 84 ’ 0.0762 8.8680 17.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 85 [ -0.1585 15.2294 53.5411 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 86 - 23.7998 15.7294 6.9091 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 87 Y -0.0312 41.0563 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 88 Q -0.5558 41.7857 46.6472 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 89 " 0.0202 21.5909 15.2294 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 90 ! 0.1909 8.1385 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 91 x 11.4177 32.4177 30.6732 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 92 ) -0.1871 14.0000 53.5411 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 93 = 11.2780 29.2294 19.2835 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 94 + 7.2424 28.8961 28.8961 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 95 X -0.0871 38.9935 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 96 » 13.8746 26.9524 26.5563 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 97 ' 0.0826 8.1385 15.2294 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 98 ¢ -0.0409 28.7294 54.4372 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 99 Z 0.1905 34.4805 42.0000 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 100 > 5.2366 28.0000 31.9026 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 101 ® -0.0831 43.2294 42.4286 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 102 © -0.0310 43.9589 42.4286 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 103 ] -0.0909 15.2294 53.5411 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 104 é -0.8925 29.4113 42.8961 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 105 z 11.2963 26.7706 30.6732 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 106 _ 47.3366 33.4654 5.8615 -Arial_Bold.ttf 84 ’ 8.8680 17.9026 107 ¥ 0.1274 30.2056 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 1 t 0.7536 18.1169 41.3810 -Arial_Bold.ttf 85 [ 15.2294 53.5411 2 h -0.1728 27.7857 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 3 a 10.0974 28.8333 32.1169 -Arial_Bold.ttf 85 [ 15.2294 53.5411 4 n 10.3036 27.7857 31.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 5 P -0.0455 32.0844 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 6 o 10.1762 31.0065 32.1169 -Arial_Bold.ttf 85 [ 15.2294 53.5411 7 e 10.2879 29.4113 32.1169 -Arial_Bold.ttf 85 [ 15.2294 53.5411 8 : 11.0766 8.1385 30.6732 -Arial_Bold.ttf 85 [ 15.2294 53.5411 9 r 10.0843 19.8615 31.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 10 l -0.0274 8.1385 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 11 i -0.1034 8.1385 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 12 1 0.2326 18.2359 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 13 | 0.3607 5.8615 54.5563 -Arial_Bold.ttf 85 [ 15.2294 53.5411 14 N 0.3385 33.3463 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 15 f -0.0317 20.6948 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 16 g 10.0617 29.5628 43.6580 -Arial_Bold.ttf 85 [ 15.2294 53.5411 17 d -0.0176 29.5628 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 18 W -0.1371 54.7706 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 19 s 10.1548 28.3333 32.1169 -Arial_Bold.ttf 85 [ 15.2294 53.5411 20 c 10.0019 27.5000 32.1169 -Arial_Bold.ttf 85 [ 15.2294 53.5411 21 u 11.1221 27.7857 30.8874 -Arial_Bold.ttf 85 [ 15.2294 53.5411 22 3 0.0210 27.2857 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 23 ~ 15.7113 30.4589 10.8117 -Arial_Bold.ttf 85 [ 15.2294 53.5411 24 # 0.0440 30.3874 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 25 O -0.5885 40.3420 43.4589 -Arial_Bold.ttf 85 [ 15.2294 53.5411 26 ` -0.3216 12.7706 8.3203 -Arial_Bold.ttf 85 [ 15.2294 53.5411 27 @ -0.1024 55.2706 56.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 28 F -0.1123 29.0152 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 29 S -0.4800 33.8615 43.4589 -Arial_Bold.ttf 85 [ 15.2294 53.5411 30 p 10.1845 29.5628 43.4437 -Arial_Bold.ttf 85 [ 15.2294 53.5411 31 “ -0.0060 22.4719 17.6883 -Arial_Bold.ttf 85 [ 15.2294 53.5411 32 % -0.2643 44.9329 43.6580 -Arial_Bold.ttf 85 [ 15.2294 53.5411 33 £ -0.0258 31.1883 42.4286 -Arial_Bold.ttf 85 [ 15.2294 53.5411 34 . 33.7660 8.1385 8.1385 -Arial_Bold.ttf 85 [ 15.2294 53.5411 35 2 -0.1022 27.2857 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 36 5 0.2500 28.0000 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 37 m 10.0891 44.6104 31.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 38 V -0.1988 38.4935 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 39 6 0.0506 27.2857 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 40 w 11.1852 45.5065 30.6732 -Arial_Bold.ttf 85 [ 15.2294 53.5411 41 T 0.0202 33.2511 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 42 M 0.1943 39.5584 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 43 G -0.7509 39.1126 43.4589 -Arial_Bold.ttf 85 [ 15.2294 53.5411 44 b -0.0774 29.5628 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 45 9 -0.0071 27.2857 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 46 ; 11.2359 8.8680 40.4372 -Arial_Bold.ttf 85 [ 15.2294 53.5411 47 D 0.0917 35.0909 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 48 L 0.3137 29.9113 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 49 y 11.5102 31.6883 42.4286 -Arial_Bold.ttf 85 [ 15.2294 53.5411 50 ‘ 0.0319 8.8680 17.6883 -Arial_Bold.ttf 85 [ 15.2294 53.5411 51 \ -0.1669 17.6883 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 52 R 0.1774 37.0498 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 53 < 5.5487 28.0000 31.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 54 4 0.2052 29.9589 41.7857 -Arial_Bold.ttf 85 [ 15.2294 53.5411 55 8 0.1495 27.2857 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 56 0 0.0288 27.2857 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 57 A -0.1417 40.5887 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 58 E 0.0760 32.0844 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 59 B 0.0500 35.0909 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 60 v 11.4140 31.6883 30.6732 -Arial_Bold.ttf 85 [ 15.2294 53.5411 61 k 0.2100 28.5152 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 62 J 0.0097 26.9524 42.7294 -Arial_Bold.ttf 85 [ 15.2294 53.5411 63 U 0.1045 33.3463 42.7294 -Arial_Bold.ttf 85 [ 15.2294 53.5411 64 j 0.0222 15.2294 53.7554 -Arial_Bold.ttf 85 [ 15.2294 53.5411 65 ( 0.0812 14.0000 53.5411 -Arial_Bold.ttf 85 [ 15.2294 53.5411 66 7 0.1436 27.2857 41.7857 -Arial_Bold.ttf 85 [ 15.2294 53.5411 67 § -0.0571 28.5152 54.7706 -Arial_Bold.ttf 85 [ 15.2294 53.5411 68 $ -2.8968 27.7857 50.8680 -Arial_Bold.ttf 85 [ 15.2294 53.5411 69 € -0.8794 31.6883 42.9437 -Arial_Bold.ttf 85 [ 15.2294 53.5411 70 / 0.0000 17.6883 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 71 C -0.8030 36.6537 42.7294 -Arial_Bold.ttf 85 [ 15.2294 53.5411 72 * -0.1955 19.7424 19.1320 -Arial_Bold.ttf 85 [ 15.2294 53.5411 73 ” -0.0760 22.4719 17.6883 -Arial_Bold.ttf 85 [ 15.2294 53.5411 74 ? -0.0095 30.4589 42.2143 -Arial_Bold.ttf 85 [ 15.2294 53.5411 75 { -0.1883 19.6472 53.9697 -Arial_Bold.ttf 85 [ 15.2294 53.5411 76 } -0.0524 19.6472 53.9697 -Arial_Bold.ttf 85 [ 15.2294 53.5411 77 , 33.8258 8.8680 17.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 78 I 0.1266 8.1385 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 79 ° -0.0452 18.0844 18.0844 -Arial_Bold.ttf 85 [ 15.2294 53.5411 80 K -0.0060 37.7641 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 81 H -0.1071 33.3463 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 82 q 10.0974 29.5628 43.4437 -Arial_Bold.ttf 85 [ 15.2294 53.5411 83 & -0.3969 38.8117 42.4286 -Arial_Bold.ttf 85 [ 15.2294 53.5411 84 ’ 0.0684 8.8680 17.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 85 [ -0.1905 15.2294 53.5411 -Arial_Bold.ttf 85 [ 15.2294 53.5411 86 - 23.8609 15.7294 6.9091 -Arial_Bold.ttf 85 [ 15.2294 53.5411 87 Y -0.0736 41.0563 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 88 Q -0.5949 41.7857 46.6472 -Arial_Bold.ttf 85 [ 15.2294 53.5411 89 " 0.0155 21.5909 15.2294 -Arial_Bold.ttf 85 [ 15.2294 53.5411 90 ! 0.2228 8.1385 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 91 x 11.4140 32.4177 30.6732 -Arial_Bold.ttf 85 [ 15.2294 53.5411 92 ) -0.1107 14.0000 53.5411 -Arial_Bold.ttf 85 [ 15.2294 53.5411 93 = 11.3997 29.2294 19.2835 -Arial_Bold.ttf 85 [ 15.2294 53.5411 94 + 7.3536 28.8961 28.8961 -Arial_Bold.ttf 85 [ 15.2294 53.5411 95 X -0.1117 38.9935 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 96 » 13.3082 26.9524 26.5563 -Arial_Bold.ttf 85 [ 15.2294 53.5411 97 ' 0.0135 8.1385 15.2294 -Arial_Bold.ttf 85 [ 15.2294 53.5411 98 ¢ -0.0462 28.7294 54.4372 -Arial_Bold.ttf 85 [ 15.2294 53.5411 99 Z 0.2821 34.4805 42.0000 -Arial_Bold.ttf 85 [ 15.2294 53.5411 100 > 5.3056 28.0000 31.9026 -Arial_Bold.ttf 85 [ 15.2294 53.5411 101 ® -0.4423 43.2294 42.4286 -Arial_Bold.ttf 85 [ 15.2294 53.5411 102 © -0.0667 43.9589 42.4286 -Arial_Bold.ttf 85 [ 15.2294 53.5411 103 ] 0.0917 15.2294 53.5411 -Arial_Bold.ttf 85 [ 15.2294 53.5411 104 é -0.5259 29.4113 42.8961 -Arial_Bold.ttf 85 [ 15.2294 53.5411 105 z 11.4983 26.7706 30.6732 -Arial_Bold.ttf 85 [ 15.2294 53.5411 106 _ 47.3745 33.4654 5.8615 -Arial_Bold.ttf 85 [ 15.2294 53.5411 107 ¥ 0.0440 30.2056 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 1 t -22.9845 18.1169 41.3810 -Arial_Bold.ttf 86 - 15.7294 6.9091 2 h -23.6165 27.7857 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 3 a -13.4976 28.8333 32.1169 -Arial_Bold.ttf 86 - 15.7294 6.9091 4 n -13.6667 27.7857 31.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 5 P -23.8155 32.0844 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 6 o -13.5667 31.0065 32.1169 -Arial_Bold.ttf 86 - 15.7294 6.9091 7 e -13.6369 29.4113 32.1169 -Arial_Bold.ttf 86 - 15.7294 6.9091 8 : -12.5515 8.1385 30.6732 -Arial_Bold.ttf 86 - 15.7294 6.9091 9 r -13.6167 19.8615 31.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 10 l -23.6732 8.1385 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 11 i -24.0469 8.1385 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 12 1 -23.7627 18.2359 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 13 | -23.9415 5.8615 54.5563 -Arial_Bold.ttf 86 - 15.7294 6.9091 14 N -23.6641 33.3463 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 15 f -23.9966 20.6948 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 16 g -13.5393 29.5628 43.6580 -Arial_Bold.ttf 86 - 15.7294 6.9091 17 d -23.6679 29.5628 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 18 W -23.5639 54.7706 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 19 s -13.5885 28.3333 32.1169 -Arial_Bold.ttf 86 - 15.7294 6.9091 20 c -13.6790 27.5000 32.1169 -Arial_Bold.ttf 86 - 15.7294 6.9091 21 u -12.4820 27.7857 30.8874 -Arial_Bold.ttf 86 - 15.7294 6.9091 22 3 -23.7557 27.2857 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 23 ~ -7.6909 30.4589 10.8117 -Arial_Bold.ttf 86 - 15.7294 6.9091 24 # -23.8127 30.3874 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 25 O -24.6018 40.3420 43.4589 -Arial_Bold.ttf 86 - 15.7294 6.9091 26 ` -23.6498 12.7706 8.3203 -Arial_Bold.ttf 86 - 15.7294 6.9091 27 @ -23.7476 55.2706 56.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 28 F -23.8641 29.0152 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 29 S -24.6092 33.8615 43.4589 -Arial_Bold.ttf 86 - 15.7294 6.9091 30 p -13.6921 29.5628 43.4437 -Arial_Bold.ttf 86 - 15.7294 6.9091 31 “ -23.8246 22.4719 17.6883 -Arial_Bold.ttf 86 - 15.7294 6.9091 32 % -24.1367 44.9329 43.6580 -Arial_Bold.ttf 86 - 15.7294 6.9091 33 £ -23.9010 31.1883 42.4286 -Arial_Bold.ttf 86 - 15.7294 6.9091 34 . 10.1831 8.1385 8.1385 -Arial_Bold.ttf 86 - 15.7294 6.9091 35 2 -23.6665 27.2857 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 36 5 -23.3605 28.0000 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 37 m -13.6786 44.6104 31.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 38 V -23.8276 38.4935 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 39 6 -23.8571 27.2857 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 40 w -12.6426 45.5065 30.6732 -Arial_Bold.ttf 86 - 15.7294 6.9091 41 T -23.7043 33.2511 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 42 M -23.4936 39.5584 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 43 G -24.6806 39.1126 43.4589 -Arial_Bold.ttf 86 - 15.7294 6.9091 44 b -23.7657 29.5628 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 45 9 -23.7825 27.2857 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 46 ; -12.3456 8.8680 40.4372 -Arial_Bold.ttf 86 - 15.7294 6.9091 47 D -23.8057 35.0909 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 48 L -23.6627 29.9113 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 49 y -12.4146 31.6883 42.4286 -Arial_Bold.ttf 86 - 15.7294 6.9091 50 ‘ -23.9147 8.8680 17.6883 -Arial_Bold.ttf 86 - 15.7294 6.9091 51 \ -23.7498 17.6883 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 52 R -23.2924 37.0498 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 53 < -18.5346 28.0000 31.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 54 4 -23.5998 29.9589 41.7857 -Arial_Bold.ttf 86 - 15.7294 6.9091 55 8 -23.6815 27.2857 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 56 0 -23.7795 27.2857 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 57 A -23.5867 40.5887 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 58 E -23.7450 32.0844 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 59 B -23.7641 35.0909 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 60 v -12.3858 31.6883 30.6732 -Arial_Bold.ttf 86 - 15.7294 6.9091 61 k -23.7998 28.5152 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 62 J -23.9793 26.9524 42.7294 -Arial_Bold.ttf 86 - 15.7294 6.9091 63 U -23.5807 33.3463 42.7294 -Arial_Bold.ttf 86 - 15.7294 6.9091 64 j -23.9057 15.2294 53.7554 -Arial_Bold.ttf 86 - 15.7294 6.9091 65 ( -23.6581 14.0000 53.5411 -Arial_Bold.ttf 86 - 15.7294 6.9091 66 7 -23.6238 27.2857 41.7857 -Arial_Bold.ttf 86 - 15.7294 6.9091 67 § -24.2474 28.5152 54.7706 -Arial_Bold.ttf 86 - 15.7294 6.9091 68 $ -26.7439 27.7857 50.8680 -Arial_Bold.ttf 86 - 15.7294 6.9091 69 € -24.4397 31.6883 42.9437 -Arial_Bold.ttf 86 - 15.7294 6.9091 70 / -23.4898 17.6883 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 71 C -24.2335 36.6537 42.7294 -Arial_Bold.ttf 86 - 15.7294 6.9091 72 * -23.8050 19.7424 19.1320 -Arial_Bold.ttf 86 - 15.7294 6.9091 73 ” -23.6581 22.4719 17.6883 -Arial_Bold.ttf 86 - 15.7294 6.9091 74 ? -24.0641 30.4589 42.2143 -Arial_Bold.ttf 86 - 15.7294 6.9091 75 { -23.9738 19.6472 53.9697 -Arial_Bold.ttf 86 - 15.7294 6.9091 76 } -23.9017 19.6472 53.9697 -Arial_Bold.ttf 86 - 15.7294 6.9091 77 , 9.9141 8.8680 17.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 78 I -24.0564 8.1385 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 79 ° -23.9641 18.0844 18.0844 -Arial_Bold.ttf 86 - 15.7294 6.9091 80 K -23.6746 37.7641 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 81 H -23.5807 33.3463 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 82 q -13.8978 29.5628 43.4437 -Arial_Bold.ttf 86 - 15.7294 6.9091 83 & -24.0655 38.8117 42.4286 -Arial_Bold.ttf 86 - 15.7294 6.9091 84 ’ -23.8534 8.8680 17.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 85 [ -23.8712 15.2294 53.5411 -Arial_Bold.ttf 86 - 15.7294 6.9091 86 - -0.2250 15.7294 6.9091 -Arial_Bold.ttf 86 - 15.7294 6.9091 87 Y -23.7284 41.0563 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 88 Q -24.6566 41.7857 46.6472 -Arial_Bold.ttf 86 - 15.7294 6.9091 89 " -23.8050 21.5909 15.2294 -Arial_Bold.ttf 86 - 15.7294 6.9091 90 ! -23.8617 8.1385 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 91 x -12.6063 32.4177 30.6732 -Arial_Bold.ttf 86 - 15.7294 6.9091 92 ) -23.9655 14.0000 53.5411 -Arial_Bold.ttf 86 - 15.7294 6.9091 93 = -12.4229 29.2294 19.2835 -Arial_Bold.ttf 86 - 15.7294 6.9091 94 + -16.3488 28.8961 28.8961 -Arial_Bold.ttf 86 - 15.7294 6.9091 95 X -23.7641 38.9935 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 96 » -10.4437 26.9524 26.5563 -Arial_Bold.ttf 86 - 15.7294 6.9091 97 ' -23.8557 8.1385 15.2294 -Arial_Bold.ttf 86 - 15.7294 6.9091 98 ¢ -23.7998 28.7294 54.4372 -Arial_Bold.ttf 86 - 15.7294 6.9091 99 Z -23.9466 34.4805 42.0000 -Arial_Bold.ttf 86 - 15.7294 6.9091 100 > -18.2806 28.0000 31.9026 -Arial_Bold.ttf 86 - 15.7294 6.9091 101 ® -24.0141 43.2294 42.4286 -Arial_Bold.ttf 86 - 15.7294 6.9091 102 © -23.9784 43.9589 42.4286 -Arial_Bold.ttf 86 - 15.7294 6.9091 103 ] -23.6821 15.2294 53.5411 -Arial_Bold.ttf 86 - 15.7294 6.9091 104 é -24.3989 29.4113 42.8961 -Arial_Bold.ttf 86 - 15.7294 6.9091 105 z -12.5327 26.7706 30.6732 -Arial_Bold.ttf 86 - 15.7294 6.9091 106 _ 23.5323 33.4654 5.8615 -Arial_Bold.ttf 86 - 15.7294 6.9091 107 ¥ -23.7179 30.2056 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 1 t 1.0419 18.1169 41.3810 -Arial_Bold.ttf 87 Y 41.0563 42.0000 2 h 0.0064 27.7857 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 3 a 10.1103 28.8333 32.1169 -Arial_Bold.ttf 87 Y 41.0563 42.0000 4 n 9.9200 27.7857 31.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 5 P 0.0492 32.0844 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 6 o 9.8531 31.0065 32.1169 -Arial_Bold.ttf 87 Y 41.0563 42.0000 7 e 10.1019 29.4113 32.1169 -Arial_Bold.ttf 87 Y 41.0563 42.0000 8 : 11.1145 8.1385 30.6732 -Arial_Bold.ttf 87 Y 41.0563 42.0000 9 r 9.8643 19.8615 31.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 10 l 0.2123 8.1385 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 11 i 0.1690 8.1385 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 12 1 -0.0371 18.2359 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 13 | -0.0403 5.8615 54.5563 -Arial_Bold.ttf 87 Y 41.0563 42.0000 14 N 0.0083 33.3463 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 15 f -0.2376 20.6948 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 16 g 10.2574 29.5628 43.6580 -Arial_Bold.ttf 87 Y 41.0563 42.0000 17 d 0.2637 29.5628 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 18 W -0.1274 54.7706 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 19 s 10.0019 28.3333 32.1169 -Arial_Bold.ttf 87 Y 41.0563 42.0000 20 c 10.1440 27.5000 32.1169 -Arial_Bold.ttf 87 Y 41.0563 42.0000 21 u 11.3197 27.7857 30.8874 -Arial_Bold.ttf 87 Y 41.0563 42.0000 22 3 -0.2411 27.2857 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 23 ~ 15.8972 30.4589 10.8117 -Arial_Bold.ttf 87 Y 41.0563 42.0000 24 # 0.0045 30.3874 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 25 O -1.1168 40.3420 43.4589 -Arial_Bold.ttf 87 Y 41.0563 42.0000 26 ` 0.2464 12.7706 8.3203 -Arial_Bold.ttf 87 Y 41.0563 42.0000 27 @ -0.4052 55.2706 56.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 28 F 0.1766 29.0152 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 29 S -0.6904 33.8615 43.4589 -Arial_Bold.ttf 87 Y 41.0563 42.0000 30 p 10.1877 29.5628 43.4437 -Arial_Bold.ttf 87 Y 41.0563 42.0000 31 “ 0.0074 22.4719 17.6883 -Arial_Bold.ttf 87 Y 41.0563 42.0000 32 % -0.1298 44.9329 43.6580 -Arial_Bold.ttf 87 Y 41.0563 42.0000 33 £ 0.2731 31.1883 42.4286 -Arial_Bold.ttf 87 Y 41.0563 42.0000 34 . 33.8010 8.1385 8.1385 -Arial_Bold.ttf 87 Y 41.0563 42.0000 35 2 0.3431 27.2857 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 36 5 0.2740 28.0000 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 37 m 10.2548 44.6104 31.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 38 V 0.0357 38.4935 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 39 6 -0.0000 27.2857 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 40 w 11.3449 45.5065 30.6732 -Arial_Bold.ttf 87 Y 41.0563 42.0000 41 T 0.2693 33.2511 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 42 M 0.0240 39.5584 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 43 G -0.5685 39.1126 43.4589 -Arial_Bold.ttf 87 Y 41.0563 42.0000 44 b -0.2236 29.5628 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 45 9 -0.0500 27.2857 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 46 ; 11.1659 8.8680 40.4372 -Arial_Bold.ttf 87 Y 41.0563 42.0000 47 D 0.0726 35.0909 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 48 L 0.1319 29.9113 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 49 y 11.1359 31.6883 42.4286 -Arial_Bold.ttf 87 Y 41.0563 42.0000 50 ‘ -0.0962 8.8680 17.6883 -Arial_Bold.ttf 87 Y 41.0563 42.0000 51 \ 0.0560 17.6883 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 52 R -0.0657 37.0498 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 53 < 5.2394 28.0000 31.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 54 4 0.2962 29.9589 41.7857 -Arial_Bold.ttf 87 Y 41.0563 42.0000 55 8 0.2562 27.2857 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 56 0 -0.2645 27.2857 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 57 A 0.0214 40.5887 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 58 E 0.2157 32.0844 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 59 B 0.2190 35.0909 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 60 v 11.3387 31.6883 30.6732 -Arial_Bold.ttf 87 Y 41.0563 42.0000 61 k -0.0798 28.5152 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 62 J 0.1117 26.9524 42.7294 -Arial_Bold.ttf 87 Y 41.0563 42.0000 63 U -0.1145 33.3463 42.7294 -Arial_Bold.ttf 87 Y 41.0563 42.0000 64 j 0.0976 15.2294 53.7554 -Arial_Bold.ttf 87 Y 41.0563 42.0000 65 ( 0.3931 14.0000 53.5411 -Arial_Bold.ttf 87 Y 41.0563 42.0000 66 7 0.3931 27.2857 41.7857 -Arial_Bold.ttf 87 Y 41.0563 42.0000 67 § -0.3045 28.5152 54.7706 -Arial_Bold.ttf 87 Y 41.0563 42.0000 68 $ -2.5684 27.7857 50.8680 -Arial_Bold.ttf 87 Y 41.0563 42.0000 69 € -0.8249 31.6883 42.9437 -Arial_Bold.ttf 87 Y 41.0563 42.0000 70 / 0.0500 17.6883 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 71 C -0.6023 36.6537 42.7294 -Arial_Bold.ttf 87 Y 41.0563 42.0000 72 * -0.0635 19.7424 19.1320 -Arial_Bold.ttf 87 Y 41.0563 42.0000 73 ” 0.6921 22.4719 17.6883 -Arial_Bold.ttf 87 Y 41.0563 42.0000 74 ? -0.1143 30.4589 42.2143 -Arial_Bold.ttf 87 Y 41.0563 42.0000 75 { 0.1514 19.6472 53.9697 -Arial_Bold.ttf 87 Y 41.0563 42.0000 76 } -0.0466 19.6472 53.9697 -Arial_Bold.ttf 87 Y 41.0563 42.0000 77 , 33.8660 8.8680 17.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 78 I -0.0690 8.1385 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 79 ° -0.2240 18.0844 18.0844 -Arial_Bold.ttf 87 Y 41.0563 42.0000 80 K 0.0357 37.7641 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 81 H 0.0574 33.3463 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 82 q 9.9641 29.5628 43.4437 -Arial_Bold.ttf 87 Y 41.0563 42.0000 83 & -0.1810 38.8117 42.4286 -Arial_Bold.ttf 87 Y 41.0563 42.0000 84 ’ -0.2502 8.8680 17.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 85 [ -0.0597 15.2294 53.5411 -Arial_Bold.ttf 87 Y 41.0563 42.0000 86 - 23.7446 15.7294 6.9091 -Arial_Bold.ttf 87 Y 41.0563 42.0000 87 Y 0.4978 41.0563 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 88 Q -0.6197 41.7857 46.6472 -Arial_Bold.ttf 87 Y 41.0563 42.0000 89 " 0.2214 21.5909 15.2294 -Arial_Bold.ttf 87 Y 41.0563 42.0000 90 ! 0.2262 8.1385 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 91 x 11.1585 32.4177 30.6732 -Arial_Bold.ttf 87 Y 41.0563 42.0000 92 ) -0.1105 14.0000 53.5411 -Arial_Bold.ttf 87 Y 41.0563 42.0000 93 = 11.2566 29.2294 19.2835 -Arial_Bold.ttf 87 Y 41.0563 42.0000 94 + 7.4893 28.8961 28.8961 -Arial_Bold.ttf 87 Y 41.0563 42.0000 95 X -0.2014 38.9935 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 96 » 13.2680 26.9524 26.5563 -Arial_Bold.ttf 87 Y 41.0563 42.0000 97 ' 0.2153 8.1385 15.2294 -Arial_Bold.ttf 87 Y 41.0563 42.0000 98 ¢ 0.0500 28.7294 54.4372 -Arial_Bold.ttf 87 Y 41.0563 42.0000 99 Z -0.1176 34.4805 42.0000 -Arial_Bold.ttf 87 Y 41.0563 42.0000 100 > 5.7501 28.0000 31.9026 -Arial_Bold.ttf 87 Y 41.0563 42.0000 101 ® -0.0538 43.2294 42.4286 -Arial_Bold.ttf 87 Y 41.0563 42.0000 102 © -0.3097 43.9589 42.4286 -Arial_Bold.ttf 87 Y 41.0563 42.0000 103 ] -0.0690 15.2294 53.5411 -Arial_Bold.ttf 87 Y 41.0563 42.0000 104 é -0.7013 29.4113 42.8961 -Arial_Bold.ttf 87 Y 41.0563 42.0000 105 z 11.3321 26.7706 30.6732 -Arial_Bold.ttf 87 Y 41.0563 42.0000 106 _ 47.4751 33.4654 5.8615 -Arial_Bold.ttf 87 Y 41.0563 42.0000 107 ¥ 0.1266 30.2056 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 1 t 1.6999 18.1169 41.3810 -Arial_Bold.ttf 88 Q 41.7857 46.6472 2 h 0.9211 27.7857 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 3 a 10.9021 28.8333 32.1169 -Arial_Bold.ttf 88 Q 41.7857 46.6472 4 n 10.3833 27.7857 31.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 5 P 0.7780 32.0844 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 6 o 10.7209 31.0065 32.1169 -Arial_Bold.ttf 88 Q 41.7857 46.6472 7 e 10.8604 29.4113 32.1169 -Arial_Bold.ttf 88 Q 41.7857 46.6472 8 : 11.9722 8.1385 30.6732 -Arial_Bold.ttf 88 Q 41.7857 46.6472 9 r 10.8385 19.8615 31.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 10 l 0.7806 8.1385 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 11 i 0.7140 8.1385 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 12 1 0.6445 18.2359 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 13 | 0.3649 5.8615 54.5563 -Arial_Bold.ttf 88 Q 41.7857 46.6472 14 N 0.6916 33.3463 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 15 f 0.2461 20.6948 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 16 g 10.8411 29.5628 43.6580 -Arial_Bold.ttf 88 Q 41.7857 46.6472 17 d 0.8509 29.5628 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 18 W 0.7892 54.7706 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 19 s 10.4252 28.3333 32.1169 -Arial_Bold.ttf 88 Q 41.7857 46.6472 20 c 10.6429 27.5000 32.1169 -Arial_Bold.ttf 88 Q 41.7857 46.6472 21 u 11.8297 27.7857 30.8874 -Arial_Bold.ttf 88 Q 41.7857 46.6472 22 3 0.5528 27.2857 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 23 ~ 16.6778 30.4589 10.8117 -Arial_Bold.ttf 88 Q 41.7857 46.6472 24 # 0.7399 30.3874 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 25 O -0.0069 40.3420 43.4589 -Arial_Bold.ttf 88 Q 41.7857 46.6472 26 ` 0.6273 12.7706 8.3203 -Arial_Bold.ttf 88 Q 41.7857 46.6472 27 @ 0.4159 55.2706 56.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 28 F 0.1485 29.0152 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 29 S 0.0143 33.8615 43.4589 -Arial_Bold.ttf 88 Q 41.7857 46.6472 30 p 11.2799 29.5628 43.4437 -Arial_Bold.ttf 88 Q 41.7857 46.6472 31 “ 0.6749 22.4719 17.6883 -Arial_Bold.ttf 88 Q 41.7857 46.6472 32 % 0.3273 44.9329 43.6580 -Arial_Bold.ttf 88 Q 41.7857 46.6472 33 £ 0.7894 31.1883 42.4286 -Arial_Bold.ttf 88 Q 41.7857 46.6472 34 . 34.5745 8.1385 8.1385 -Arial_Bold.ttf 88 Q 41.7857 46.6472 35 2 0.7580 27.2857 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 36 5 0.9423 28.0000 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 37 m 10.9808 44.6104 31.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 38 V 0.4578 38.4935 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 39 6 0.5857 27.2857 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 40 w 12.2510 45.5065 30.6732 -Arial_Bold.ttf 88 Q 41.7857 46.6472 41 T 0.9261 33.2511 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 42 M 0.3247 39.5584 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 43 G 0.2048 39.1126 43.4589 -Arial_Bold.ttf 88 Q 41.7857 46.6472 44 b 0.6102 29.5628 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 45 9 0.7294 27.2857 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 46 ; 11.5794 8.8680 40.4372 -Arial_Bold.ttf 88 Q 41.7857 46.6472 47 D 0.6292 35.0909 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 48 L 0.5626 29.9113 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 49 y 11.5916 31.6883 42.4286 -Arial_Bold.ttf 88 Q 41.7857 46.6472 50 ‘ 0.4878 8.8680 17.6883 -Arial_Bold.ttf 88 Q 41.7857 46.6472 51 \ 0.6652 17.6883 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 52 R 0.8278 37.0498 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 53 < 6.5853 28.0000 31.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 54 4 0.6935 29.9589 41.7857 -Arial_Bold.ttf 88 Q 41.7857 46.6472 55 8 0.8411 27.2857 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 56 0 0.5455 27.2857 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 57 A 0.4225 40.5887 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 58 E 1.0166 32.0844 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 59 B 0.5709 35.0909 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 60 v 12.1720 31.6883 30.6732 -Arial_Bold.ttf 88 Q 41.7857 46.6472 61 k 0.7437 28.5152 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 62 J 0.8098 26.9524 42.7294 -Arial_Bold.ttf 88 Q 41.7857 46.6472 63 U 0.3830 33.3463 42.7294 -Arial_Bold.ttf 88 Q 41.7857 46.6472 64 j 0.5416 15.2294 53.7554 -Arial_Bold.ttf 88 Q 41.7857 46.6472 65 ( 0.8749 14.0000 53.5411 -Arial_Bold.ttf 88 Q 41.7857 46.6472 66 7 1.0475 27.2857 41.7857 -Arial_Bold.ttf 88 Q 41.7857 46.6472 67 § 0.5509 28.5152 54.7706 -Arial_Bold.ttf 88 Q 41.7857 46.6472 68 $ -2.2614 27.7857 50.8680 -Arial_Bold.ttf 88 Q 41.7857 46.6472 69 € -0.1079 31.6883 42.9437 -Arial_Bold.ttf 88 Q 41.7857 46.6472 70 / 1.0030 17.6883 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 71 C -0.0440 36.6537 42.7294 -Arial_Bold.ttf 88 Q 41.7857 46.6472 72 * 0.5728 19.7424 19.1320 -Arial_Bold.ttf 88 Q 41.7857 46.6472 73 ” 0.7332 22.4719 17.6883 -Arial_Bold.ttf 88 Q 41.7857 46.6472 74 ? 0.5971 30.4589 42.2143 -Arial_Bold.ttf 88 Q 41.7857 46.6472 75 { 0.6268 19.6472 53.9697 -Arial_Bold.ttf 88 Q 41.7857 46.6472 76 } 0.5918 19.6472 53.9697 -Arial_Bold.ttf 88 Q 41.7857 46.6472 77 , 34.8584 8.8680 17.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 78 I 0.5152 8.1385 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 79 ° 0.4614 18.0844 18.0844 -Arial_Bold.ttf 88 Q 41.7857 46.6472 80 K 0.9696 37.7641 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 81 H 0.7380 33.3463 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 82 q 10.8761 29.5628 43.4437 -Arial_Bold.ttf 88 Q 41.7857 46.6472 83 & 0.4378 38.8117 42.4286 -Arial_Bold.ttf 88 Q 41.7857 46.6472 84 ’ 0.7816 8.8680 17.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 85 [ 0.4195 15.2294 53.5411 -Arial_Bold.ttf 88 Q 41.7857 46.6472 86 - 24.6983 15.7294 6.9091 -Arial_Bold.ttf 88 Q 41.7857 46.6472 87 Y 0.5006 41.0563 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 88 Q -0.0560 41.7857 46.6472 -Arial_Bold.ttf 88 Q 41.7857 46.6472 89 " 0.8068 21.5909 15.2294 -Arial_Bold.ttf 88 Q 41.7857 46.6472 90 ! 0.9023 8.1385 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 91 x 11.9015 32.4177 30.6732 -Arial_Bold.ttf 88 Q 41.7857 46.6472 92 ) 0.7906 14.0000 53.5411 -Arial_Bold.ttf 88 Q 41.7857 46.6472 93 = 11.9511 29.2294 19.2835 -Arial_Bold.ttf 88 Q 41.7857 46.6472 94 + 7.7885 28.8961 28.8961 -Arial_Bold.ttf 88 Q 41.7857 46.6472 95 X 0.6588 38.9935 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 96 » 14.4781 26.9524 26.5563 -Arial_Bold.ttf 88 Q 41.7857 46.6472 97 ' 0.6554 8.1385 15.2294 -Arial_Bold.ttf 88 Q 41.7857 46.6472 98 ¢ 0.8004 28.7294 54.4372 -Arial_Bold.ttf 88 Q 41.7857 46.6472 99 Z 0.7483 34.4805 42.0000 -Arial_Bold.ttf 88 Q 41.7857 46.6472 100 > 6.0688 28.0000 31.9026 -Arial_Bold.ttf 88 Q 41.7857 46.6472 101 ® 0.5280 43.2294 42.4286 -Arial_Bold.ttf 88 Q 41.7857 46.6472 102 © 0.5249 43.9589 42.4286 -Arial_Bold.ttf 88 Q 41.7857 46.6472 103 ] 0.9530 15.2294 53.5411 -Arial_Bold.ttf 88 Q 41.7857 46.6472 104 é -0.0286 29.4113 42.8961 -Arial_Bold.ttf 88 Q 41.7857 46.6472 105 z 12.3827 26.7706 30.6732 -Arial_Bold.ttf 88 Q 41.7857 46.6472 106 _ 48.0741 33.4654 5.8615 -Arial_Bold.ttf 88 Q 41.7857 46.6472 107 ¥ 0.7201 30.2056 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 1 t 0.6143 18.1169 41.3810 -Arial_Bold.ttf 89 " 21.5909 15.2294 2 h 0.1060 27.7857 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 3 a 9.8731 28.8333 32.1169 -Arial_Bold.ttf 89 " 21.5909 15.2294 4 n 10.2286 27.7857 31.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 5 P -0.0909 32.0844 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 6 o 10.1034 31.0065 32.1169 -Arial_Bold.ttf 89 " 21.5909 15.2294 7 e 9.9629 29.4113 32.1169 -Arial_Bold.ttf 89 " 21.5909 15.2294 8 : 11.2859 8.1385 30.6732 -Arial_Bold.ttf 89 " 21.5909 15.2294 9 r 9.9472 19.8615 31.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 10 l 0.1619 8.1385 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 11 i -0.1431 8.1385 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 12 1 0.0286 18.2359 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 13 | 0.0690 5.8615 54.5563 -Arial_Bold.ttf 89 " 21.5909 15.2294 14 N 0.1397 33.3463 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 15 f -0.1779 20.6948 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 16 g 10.4379 29.5628 43.6580 -Arial_Bold.ttf 89 " 21.5909 15.2294 17 d 0.0774 29.5628 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 18 W -0.0357 54.7706 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 19 s 10.0474 28.3333 32.1169 -Arial_Bold.ttf 89 " 21.5909 15.2294 20 c 10.0557 27.5000 32.1169 -Arial_Bold.ttf 89 " 21.5909 15.2294 21 u 11.4185 27.7857 30.8874 -Arial_Bold.ttf 89 " 21.5909 15.2294 22 3 -0.2585 27.2857 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 23 ~ 16.0581 30.4589 10.8117 -Arial_Bold.ttf 89 " 21.5909 15.2294 24 # -0.1288 30.3874 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 25 O -0.8652 40.3420 43.4589 -Arial_Bold.ttf 89 " 21.5909 15.2294 26 ` 0.0014 12.7706 8.3203 -Arial_Bold.ttf 89 " 21.5909 15.2294 27 @ -0.1188 55.2706 56.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 28 F 0.1617 29.0152 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 29 S -0.4885 33.8615 43.4589 -Arial_Bold.ttf 89 " 21.5909 15.2294 30 p 10.1966 29.5628 43.4437 -Arial_Bold.ttf 89 " 21.5909 15.2294 31 “ -0.0476 22.4719 17.6883 -Arial_Bold.ttf 89 " 21.5909 15.2294 32 % -0.1929 44.9329 43.6580 -Arial_Bold.ttf 89 " 21.5909 15.2294 33 £ -0.2143 31.1883 42.4286 -Arial_Bold.ttf 89 " 21.5909 15.2294 34 . 34.0974 8.1385 8.1385 -Arial_Bold.ttf 89 " 21.5909 15.2294 35 2 0.2250 27.2857 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 36 5 0.2748 28.0000 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 37 m 10.1391 44.6104 31.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 38 V -0.0597 38.4935 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 39 6 -0.1183 27.2857 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 40 w 11.4088 45.5065 30.6732 -Arial_Bold.ttf 89 " 21.5909 15.2294 41 T -0.1326 33.2511 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 42 M 0.3464 39.5584 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 43 G -0.6580 39.1126 43.4589 -Arial_Bold.ttf 89 " 21.5909 15.2294 44 b 0.2266 29.5628 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 45 9 -0.0226 27.2857 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 46 ; 11.8180 8.8680 40.4372 -Arial_Bold.ttf 89 " 21.5909 15.2294 47 D -0.0522 35.0909 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 48 L -0.1162 29.9113 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 49 y 11.3066 31.6883 42.4286 -Arial_Bold.ttf 89 " 21.5909 15.2294 50 ‘ -0.1526 8.8680 17.6883 -Arial_Bold.ttf 89 " 21.5909 15.2294 51 \ -0.0357 17.6883 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 52 R -0.1623 37.0498 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 53 < 5.5011 28.0000 31.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 54 4 0.1369 29.9589 41.7857 -Arial_Bold.ttf 89 " 21.5909 15.2294 55 8 0.0000 27.2857 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 56 0 0.4538 27.2857 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 57 A 0.0488 40.5887 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 58 E -0.0722 32.0844 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 59 B -0.1038 35.0909 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 60 v 11.8942 31.6883 30.6732 -Arial_Bold.ttf 89 " 21.5909 15.2294 61 k -0.0597 28.5152 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 62 J -0.0917 26.9524 42.7294 -Arial_Bold.ttf 89 " 21.5909 15.2294 63 U -0.0871 33.3463 42.7294 -Arial_Bold.ttf 89 " 21.5909 15.2294 64 j -0.0917 15.2294 53.7554 -Arial_Bold.ttf 89 " 21.5909 15.2294 65 ( -0.2024 14.0000 53.5411 -Arial_Bold.ttf 89 " 21.5909 15.2294 66 7 -0.1548 27.2857 41.7857 -Arial_Bold.ttf 89 " 21.5909 15.2294 67 § 0.1302 28.5152 54.7706 -Arial_Bold.ttf 89 " 21.5909 15.2294 68 $ -3.0456 27.7857 50.8680 -Arial_Bold.ttf 89 " 21.5909 15.2294 69 € -0.8985 31.6883 42.9437 -Arial_Bold.ttf 89 " 21.5909 15.2294 70 / 0.1950 17.6883 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 71 C -0.6118 36.6537 42.7294 -Arial_Bold.ttf 89 " 21.5909 15.2294 72 * -0.0143 19.7424 19.1320 -Arial_Bold.ttf 89 " 21.5909 15.2294 73 ” -0.0774 22.4719 17.6883 -Arial_Bold.ttf 89 " 21.5909 15.2294 74 ? -0.0179 30.4589 42.2143 -Arial_Bold.ttf 89 " 21.5909 15.2294 75 { -0.0303 19.6472 53.9697 -Arial_Bold.ttf 89 " 21.5909 15.2294 76 } -0.1583 19.6472 53.9697 -Arial_Bold.ttf 89 " 21.5909 15.2294 77 , 33.9686 8.8680 17.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 78 I 0.1833 8.1385 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 79 ° -0.0355 18.0844 18.0844 -Arial_Bold.ttf 89 " 21.5909 15.2294 80 K 0.2578 37.7641 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 81 H -0.0955 33.3463 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 82 q 10.0351 29.5628 43.4437 -Arial_Bold.ttf 89 " 21.5909 15.2294 83 & -0.3788 38.8117 42.4286 -Arial_Bold.ttf 89 " 21.5909 15.2294 84 ’ -0.2333 8.8680 17.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 85 [ -0.2621 15.2294 53.5411 -Arial_Bold.ttf 89 " 21.5909 15.2294 86 - 23.7886 15.7294 6.9091 -Arial_Bold.ttf 89 " 21.5909 15.2294 87 Y 0.1326 41.0563 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 88 Q -0.6475 41.7857 46.6472 -Arial_Bold.ttf 89 " 21.5909 15.2294 89 " 0.2667 21.5909 15.2294 -Arial_Bold.ttf 89 " 21.5909 15.2294 90 ! 0.1190 8.1385 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 91 x 11.4475 32.4177 30.6732 -Arial_Bold.ttf 89 " 21.5909 15.2294 92 ) -0.2919 14.0000 53.5411 -Arial_Bold.ttf 89 " 21.5909 15.2294 93 = 11.3471 29.2294 19.2835 -Arial_Bold.ttf 89 " 21.5909 15.2294 94 + 7.4555 28.8961 28.8961 -Arial_Bold.ttf 89 " 21.5909 15.2294 95 X -0.0657 38.9935 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 96 » 13.3491 26.9524 26.5563 -Arial_Bold.ttf 89 " 21.5909 15.2294 97 ' -0.1669 8.1385 15.2294 -Arial_Bold.ttf 89 " 21.5909 15.2294 98 ¢ 0.0371 28.7294 54.4372 -Arial_Bold.ttf 89 " 21.5909 15.2294 99 Z 0.0000 34.4805 42.0000 -Arial_Bold.ttf 89 " 21.5909 15.2294 100 > 5.2894 28.0000 31.9026 -Arial_Bold.ttf 89 " 21.5909 15.2294 101 ® -0.2895 43.2294 42.4286 -Arial_Bold.ttf 89 " 21.5909 15.2294 102 © -0.0400 43.9589 42.4286 -Arial_Bold.ttf 89 " 21.5909 15.2294 103 ] -0.4328 15.2294 53.5411 -Arial_Bold.ttf 89 " 21.5909 15.2294 104 é -0.6402 29.4113 42.8961 -Arial_Bold.ttf 89 " 21.5909 15.2294 105 z 11.3997 26.7706 30.6732 -Arial_Bold.ttf 89 " 21.5909 15.2294 106 _ 47.4237 33.4654 5.8615 -Arial_Bold.ttf 89 " 21.5909 15.2294 107 ¥ -0.4002 30.2056 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 1 t 0.7833 18.1169 41.3810 -Arial_Bold.ttf 90 ! 8.1385 42.0000 2 h -0.0357 27.7857 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 3 a 10.0057 28.8333 32.1169 -Arial_Bold.ttf 90 ! 8.1385 42.0000 4 n 10.2891 27.7857 31.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 5 P 0.0552 32.0844 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 6 o 10.1831 31.0065 32.1169 -Arial_Bold.ttf 90 ! 8.1385 42.0000 7 e 10.2034 29.4113 32.1169 -Arial_Bold.ttf 90 ! 8.1385 42.0000 8 : 11.3314 8.1385 30.6732 -Arial_Bold.ttf 90 ! 8.1385 42.0000 9 r 10.2905 19.8615 31.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 10 l -0.0162 8.1385 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 11 i 0.2417 8.1385 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 12 1 -0.0143 18.2359 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 13 | -0.1274 5.8615 54.5563 -Arial_Bold.ttf 90 ! 8.1385 42.0000 14 N 0.1357 33.3463 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 15 f -0.1857 20.6948 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 16 g 9.9141 29.5628 43.6580 -Arial_Bold.ttf 90 ! 8.1385 42.0000 17 d -0.0740 29.5628 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 18 W -0.0722 54.7706 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 19 s 10.1557 28.3333 32.1169 -Arial_Bold.ttf 90 ! 8.1385 42.0000 20 c 9.9557 27.5000 32.1169 -Arial_Bold.ttf 90 ! 8.1385 42.0000 21 u 11.1814 27.7857 30.8874 -Arial_Bold.ttf 90 ! 8.1385 42.0000 22 3 -0.2405 27.2857 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 23 ~ 16.0446 30.4589 10.8117 -Arial_Bold.ttf 90 ! 8.1385 42.0000 24 # -0.0181 30.3874 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 25 O -0.7794 40.3420 43.4589 -Arial_Bold.ttf 90 ! 8.1385 42.0000 26 ` -0.0690 12.7706 8.3203 -Arial_Bold.ttf 90 ! 8.1385 42.0000 27 @ -0.2143 55.2706 56.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 28 F 0.0655 29.0152 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 29 S -0.5521 33.8615 43.4589 -Arial_Bold.ttf 90 ! 8.1385 42.0000 30 p 10.1688 29.5628 43.4437 -Arial_Bold.ttf 90 ! 8.1385 42.0000 31 “ -0.2488 22.4719 17.6883 -Arial_Bold.ttf 90 ! 8.1385 42.0000 32 % -0.1786 44.9329 43.6580 -Arial_Bold.ttf 90 ! 8.1385 42.0000 33 £ -0.1988 31.1883 42.4286 -Arial_Bold.ttf 90 ! 8.1385 42.0000 34 . 34.0010 8.1385 8.1385 -Arial_Bold.ttf 90 ! 8.1385 42.0000 35 2 -0.0748 27.2857 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 36 5 0.3710 28.0000 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 37 m 9.8412 44.6104 31.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 38 V -0.0955 38.4935 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 39 6 -0.3540 27.2857 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 40 w 11.2495 45.5065 30.6732 -Arial_Bold.ttf 90 ! 8.1385 42.0000 41 T -0.0226 33.2511 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 42 M -0.0324 39.5584 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 43 G -0.6137 39.1126 43.4589 -Arial_Bold.ttf 90 ! 8.1385 42.0000 44 b 0.1038 29.5628 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 45 9 0.0774 27.2857 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 46 ; 11.0616 8.8680 40.4372 -Arial_Bold.ttf 90 ! 8.1385 42.0000 47 D -0.2131 35.0909 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 48 L 0.0129 29.9113 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 49 y 11.1768 31.6883 42.4286 -Arial_Bold.ttf 90 ! 8.1385 42.0000 50 ‘ 0.0597 8.8680 17.6883 -Arial_Bold.ttf 90 ! 8.1385 42.0000 51 \ -0.1585 17.6883 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 52 R -0.1774 37.0498 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 53 < 5.4811 28.0000 31.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 54 4 0.1369 29.9589 41.7857 -Arial_Bold.ttf 90 ! 8.1385 42.0000 55 8 -0.2762 27.2857 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 56 0 -0.2645 27.2857 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 57 A 0.2833 40.5887 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 58 E 0.1917 32.0844 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 59 B 0.0774 35.0909 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 60 v 11.2352 31.6883 30.6732 -Arial_Bold.ttf 90 ! 8.1385 42.0000 61 k 0.0917 28.5152 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 62 J 0.0702 26.9524 42.7294 -Arial_Bold.ttf 90 ! 8.1385 42.0000 63 U -0.0357 33.3463 42.7294 -Arial_Bold.ttf 90 ! 8.1385 42.0000 64 j -0.1750 15.2294 53.7554 -Arial_Bold.ttf 90 ! 8.1385 42.0000 65 ( -0.0202 14.0000 53.5411 -Arial_Bold.ttf 90 ! 8.1385 42.0000 66 7 0.1071 27.2857 41.7857 -Arial_Bold.ttf 90 ! 8.1385 42.0000 67 § -0.2766 28.5152 54.7706 -Arial_Bold.ttf 90 ! 8.1385 42.0000 68 $ -2.9558 27.7857 50.8680 -Arial_Bold.ttf 90 ! 8.1385 42.0000 69 € -0.4233 31.6883 42.9437 -Arial_Bold.ttf 90 ! 8.1385 42.0000 70 / 0.0000 17.6883 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 71 C -0.7340 36.6537 42.7294 -Arial_Bold.ttf 90 ! 8.1385 42.0000 72 * -0.0143 19.7424 19.1320 -Arial_Bold.ttf 90 ! 8.1385 42.0000 73 ” 0.0857 22.4719 17.6883 -Arial_Bold.ttf 90 ! 8.1385 42.0000 74 ? -0.3135 30.4589 42.2143 -Arial_Bold.ttf 90 ! 8.1385 42.0000 75 { -0.4833 19.6472 53.9697 -Arial_Bold.ttf 90 ! 8.1385 42.0000 76 } -0.2560 19.6472 53.9697 -Arial_Bold.ttf 90 ! 8.1385 42.0000 77 , 34.1639 8.8680 17.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 78 I 0.2405 8.1385 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 79 ° -0.3038 18.0844 18.0844 -Arial_Bold.ttf 90 ! 8.1385 42.0000 80 K -0.2048 37.7641 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 81 H -0.2190 33.3463 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 82 q 10.0793 29.5628 43.4437 -Arial_Bold.ttf 90 ! 8.1385 42.0000 83 & -0.3060 38.8117 42.4286 -Arial_Bold.ttf 90 ! 8.1385 42.0000 84 ’ -0.0157 8.8680 17.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 85 [ -0.0631 15.2294 53.5411 -Arial_Bold.ttf 90 ! 8.1385 42.0000 86 - 23.9877 15.7294 6.9091 -Arial_Bold.ttf 90 ! 8.1385 42.0000 87 Y -0.1833 41.0563 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 88 Q -0.8530 41.7857 46.6472 -Arial_Bold.ttf 90 ! 8.1385 42.0000 89 " 0.1214 21.5909 15.2294 -Arial_Bold.ttf 90 ! 8.1385 42.0000 90 ! -0.0060 8.1385 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 91 x 11.3223 32.4177 30.6732 -Arial_Bold.ttf 90 ! 8.1385 42.0000 92 ) 0.0492 14.0000 53.5411 -Arial_Bold.ttf 90 ! 8.1385 42.0000 93 = 11.2397 29.2294 19.2835 -Arial_Bold.ttf 90 ! 8.1385 42.0000 94 + 6.9325 28.8961 28.8961 -Arial_Bold.ttf 90 ! 8.1385 42.0000 95 X 0.0714 38.9935 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 96 » 13.4646 26.9524 26.5563 -Arial_Bold.ttf 90 ! 8.1385 42.0000 97 ' -0.1214 8.1385 15.2294 -Arial_Bold.ttf 90 ! 8.1385 42.0000 98 ¢ 0.1274 28.7294 54.4372 -Arial_Bold.ttf 90 ! 8.1385 42.0000 99 Z -0.3014 34.4805 42.0000 -Arial_Bold.ttf 90 ! 8.1385 42.0000 100 > 5.6427 28.0000 31.9026 -Arial_Bold.ttf 90 ! 8.1385 42.0000 101 ® -0.2643 43.2294 42.4286 -Arial_Bold.ttf 90 ! 8.1385 42.0000 102 © -0.2702 43.9589 42.4286 -Arial_Bold.ttf 90 ! 8.1385 42.0000 103 ] -0.0052 15.2294 53.5411 -Arial_Bold.ttf 90 ! 8.1385 42.0000 104 é -0.7235 29.4113 42.8961 -Arial_Bold.ttf 90 ! 8.1385 42.0000 105 z 11.5959 26.7706 30.6732 -Arial_Bold.ttf 90 ! 8.1385 42.0000 106 _ 47.3745 33.4654 5.8615 -Arial_Bold.ttf 90 ! 8.1385 42.0000 107 ¥ 0.0008 30.2056 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 1 t -10.6820 18.1169 41.3810 -Arial_Bold.ttf 91 x 32.4177 30.6732 2 h -11.4542 27.7857 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 3 a -1.4925 28.8333 32.1169 -Arial_Bold.ttf 91 x 32.4177 30.6732 4 n -0.8135 27.7857 31.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 5 P -11.1306 32.0844 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 6 o -1.1445 31.0065 32.1169 -Arial_Bold.ttf 91 x 32.4177 30.6732 7 e -1.0461 29.4113 32.1169 -Arial_Bold.ttf 91 x 32.4177 30.6732 8 : 0.1476 8.1385 30.6732 -Arial_Bold.ttf 91 x 32.4177 30.6732 9 r -1.2130 19.8615 31.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 10 l -11.2280 8.1385 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 11 i -11.2768 8.1385 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 12 1 -11.2411 18.2359 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 13 | -11.4231 5.8615 54.5563 -Arial_Bold.ttf 91 x 32.4177 30.6732 14 N -11.2306 33.3463 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 15 f -11.4592 20.6948 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 16 g -1.6297 29.5628 43.6580 -Arial_Bold.ttf 91 x 32.4177 30.6732 17 d -11.4358 29.5628 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 18 W -11.3185 54.7706 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 19 s -1.1735 28.3333 32.1169 -Arial_Bold.ttf 91 x 32.4177 30.6732 20 c -1.2854 27.5000 32.1169 -Arial_Bold.ttf 91 x 32.4177 30.6732 21 u 0.2119 27.7857 30.8874 -Arial_Bold.ttf 91 x 32.4177 30.6732 22 3 -11.6271 27.2857 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 23 ~ 4.5411 30.4589 10.8117 -Arial_Bold.ttf 91 x 32.4177 30.6732 24 # -11.4489 30.3874 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 25 O -12.3468 40.3420 43.4589 -Arial_Bold.ttf 91 x 32.4177 30.6732 26 ` -11.3854 12.7706 8.3203 -Arial_Bold.ttf 91 x 32.4177 30.6732 27 @ -11.7185 55.2706 56.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 28 F -11.4056 29.0152 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 29 S -12.1720 33.8615 43.4589 -Arial_Bold.ttf 91 x 32.4177 30.6732 30 p -1.1175 29.5628 43.4437 -Arial_Bold.ttf 91 x 32.4177 30.6732 31 “ -11.4566 22.4719 17.6883 -Arial_Bold.ttf 91 x 32.4177 30.6732 32 % -11.2760 44.9329 43.6580 -Arial_Bold.ttf 91 x 32.4177 30.6732 33 £ -11.7056 31.1883 42.4286 -Arial_Bold.ttf 91 x 32.4177 30.6732 34 . 22.3767 8.1385 8.1385 -Arial_Bold.ttf 91 x 32.4177 30.6732 35 2 -11.2185 27.2857 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 36 5 -10.8514 28.0000 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 37 m -1.2614 44.6104 31.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 38 V -11.6590 38.4935 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 39 6 -11.3547 27.2857 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 40 w 0.0338 45.5065 30.6732 -Arial_Bold.ttf 91 x 32.4177 30.6732 41 T -11.5673 33.2511 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 42 M -10.9776 39.5584 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 43 G -12.2571 39.1126 43.4589 -Arial_Bold.ttf 91 x 32.4177 30.6732 44 b -11.0683 29.5628 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 45 9 -11.1661 27.2857 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 46 ; 0.1698 8.8680 40.4372 -Arial_Bold.ttf 91 x 32.4177 30.6732 47 D -11.3163 35.0909 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 48 L -11.2328 29.9113 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 49 y -0.0176 31.6883 42.4286 -Arial_Bold.ttf 91 x 32.4177 30.6732 50 ‘ -11.4306 8.8680 17.6883 -Arial_Bold.ttf 91 x 32.4177 30.6732 51 \ -11.2442 17.6883 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 52 R -11.3768 37.0498 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 53 < -5.7424 28.0000 31.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 54 4 -11.1542 29.9589 41.7857 -Arial_Bold.ttf 91 x 32.4177 30.6732 55 8 -11.4959 27.2857 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 56 0 -11.2554 27.2857 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 57 A -11.5733 40.5887 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 58 E -11.0852 32.0844 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 59 B -11.5816 35.0909 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 60 v 0.0871 31.6883 30.6732 -Arial_Bold.ttf 91 x 32.4177 30.6732 61 k -11.5711 28.5152 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 62 J -11.3556 26.9524 42.7294 -Arial_Bold.ttf 91 x 32.4177 30.6732 63 U -11.6380 33.3463 42.7294 -Arial_Bold.ttf 91 x 32.4177 30.6732 64 j -11.2814 15.2294 53.7554 -Arial_Bold.ttf 91 x 32.4177 30.6732 65 ( -11.2254 14.0000 53.5411 -Arial_Bold.ttf 91 x 32.4177 30.6732 66 7 -11.4082 27.2857 41.7857 -Arial_Bold.ttf 91 x 32.4177 30.6732 67 § -11.3669 28.5152 54.7706 -Arial_Bold.ttf 91 x 32.4177 30.6732 68 $ -14.3955 27.7857 50.8680 -Arial_Bold.ttf 91 x 32.4177 30.6732 69 € -12.2389 31.6883 42.9437 -Arial_Bold.ttf 91 x 32.4177 30.6732 70 / -11.4118 17.6883 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 71 C -12.0944 36.6537 42.7294 -Arial_Bold.ttf 91 x 32.4177 30.6732 72 * -11.3095 19.7424 19.1320 -Arial_Bold.ttf 91 x 32.4177 30.6732 73 ” -11.6785 22.4719 17.6883 -Arial_Bold.ttf 91 x 32.4177 30.6732 74 ? -11.8451 30.4589 42.2143 -Arial_Bold.ttf 91 x 32.4177 30.6732 75 { -11.6737 19.6472 53.9697 -Arial_Bold.ttf 91 x 32.4177 30.6732 76 } -11.2857 19.6472 53.9697 -Arial_Bold.ttf 91 x 32.4177 30.6732 77 , 22.5763 8.8680 17.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 78 I -11.6823 8.1385 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 79 ° -11.3495 18.0844 18.0844 -Arial_Bold.ttf 91 x 32.4177 30.6732 80 K -11.2157 37.7641 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 81 H -11.1957 33.3463 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 82 q -1.2437 29.5628 43.4437 -Arial_Bold.ttf 91 x 32.4177 30.6732 83 & -11.2864 38.8117 42.4286 -Arial_Bold.ttf 91 x 32.4177 30.6732 84 ’ -11.4197 8.8680 17.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 85 [ -11.3761 15.2294 53.5411 -Arial_Bold.ttf 91 x 32.4177 30.6732 86 - 12.5365 15.7294 6.9091 -Arial_Bold.ttf 91 x 32.4177 30.6732 87 Y -11.2314 41.0563 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 88 Q -12.2234 41.7857 46.6472 -Arial_Bold.ttf 91 x 32.4177 30.6732 89 " -11.3528 21.5909 15.2294 -Arial_Bold.ttf 91 x 32.4177 30.6732 90 ! -11.2457 8.1385 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 91 x 0.0492 32.4177 30.6732 -Arial_Bold.ttf 91 x 32.4177 30.6732 92 ) -11.3209 14.0000 53.5411 -Arial_Bold.ttf 91 x 32.4177 30.6732 93 = -0.1597 29.2294 19.2835 -Arial_Bold.ttf 91 x 32.4177 30.6732 94 + -4.6537 28.8961 28.8961 -Arial_Bold.ttf 91 x 32.4177 30.6732 95 X -11.5399 38.9935 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 96 » 1.9532 26.9524 26.5563 -Arial_Bold.ttf 91 x 32.4177 30.6732 97 ' -11.3449 8.1385 15.2294 -Arial_Bold.ttf 91 x 32.4177 30.6732 98 ¢ -11.2521 28.7294 54.4372 -Arial_Bold.ttf 91 x 32.4177 30.6732 99 Z -11.3885 34.4805 42.0000 -Arial_Bold.ttf 91 x 32.4177 30.6732 100 > -5.9674 28.0000 31.9026 -Arial_Bold.ttf 91 x 32.4177 30.6732 101 ® -11.3495 43.2294 42.4286 -Arial_Bold.ttf 91 x 32.4177 30.6732 102 © -11.5411 43.9589 42.4286 -Arial_Bold.ttf 91 x 32.4177 30.6732 103 ] -11.3177 15.2294 53.5411 -Arial_Bold.ttf 91 x 32.4177 30.6732 104 é -12.0093 29.4113 42.8961 -Arial_Bold.ttf 91 x 32.4177 30.6732 105 z -0.1431 26.7706 30.6732 -Arial_Bold.ttf 91 x 32.4177 30.6732 106 _ 36.4687 33.4654 5.8615 -Arial_Bold.ttf 91 x 32.4177 30.6732 107 ¥ -11.3923 30.2056 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 1 t 1.0524 18.1169 41.3810 -Arial_Bold.ttf 92 ) 14.0000 53.5411 2 h -0.2548 27.7857 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 3 a 10.1688 28.8333 32.1169 -Arial_Bold.ttf 92 ) 14.0000 53.5411 4 n 10.2331 27.7857 31.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 5 P -0.2833 32.0844 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 6 o 10.1534 31.0065 32.1169 -Arial_Bold.ttf 92 ) 14.0000 53.5411 7 e 10.0676 29.4113 32.1169 -Arial_Bold.ttf 92 ) 14.0000 53.5411 8 : 11.4185 8.1385 30.6732 -Arial_Bold.ttf 92 ) 14.0000 53.5411 9 r 10.1267 19.8615 31.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 10 l 0.0833 8.1385 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 11 i -0.0931 8.1385 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 12 1 0.2929 18.2359 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 13 | -0.0123 5.8615 54.5563 -Arial_Bold.ttf 92 ) 14.0000 53.5411 14 N 0.1510 33.3463 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 15 f -0.3431 20.6948 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 16 g 9.9305 29.5628 43.6580 -Arial_Bold.ttf 92 ) 14.0000 53.5411 17 d -0.1623 29.5628 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 18 W 0.0500 54.7706 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 19 s 9.9922 28.3333 32.1169 -Arial_Bold.ttf 92 ) 14.0000 53.5411 20 c 10.0065 27.5000 32.1169 -Arial_Bold.ttf 92 ) 14.0000 53.5411 21 u 11.2626 27.7857 30.8874 -Arial_Bold.ttf 92 ) 14.0000 53.5411 22 3 0.2371 27.2857 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 23 ~ 15.6398 30.4589 10.8117 -Arial_Bold.ttf 92 ) 14.0000 53.5411 24 # 0.1996 30.3874 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 25 O -0.6659 40.3420 43.4589 -Arial_Bold.ttf 92 ) 14.0000 53.5411 26 ` -0.0500 12.7706 8.3203 -Arial_Bold.ttf 92 ) 14.0000 53.5411 27 @ 0.1345 55.2706 56.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 28 F -0.1585 29.0152 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 29 S -0.8211 33.8615 43.4589 -Arial_Bold.ttf 92 ) 14.0000 53.5411 30 p 10.0124 29.5628 43.4437 -Arial_Bold.ttf 92 ) 14.0000 53.5411 31 “ 0.0319 22.4719 17.6883 -Arial_Bold.ttf 92 ) 14.0000 53.5411 32 % -0.3383 44.9329 43.6580 -Arial_Bold.ttf 92 ) 14.0000 53.5411 33 £ -0.3417 31.1883 42.4286 -Arial_Bold.ttf 92 ) 14.0000 53.5411 34 . 33.6120 8.1385 8.1385 -Arial_Bold.ttf 92 ) 14.0000 53.5411 35 2 -0.0857 27.2857 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 36 5 0.0286 28.0000 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 37 m 9.8591 44.6104 31.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 38 V -0.1500 38.4935 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 39 6 -0.1826 27.2857 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 40 w 11.2768 45.5065 30.6732 -Arial_Bold.ttf 92 ) 14.0000 53.5411 41 T -0.0774 33.2511 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 42 M -0.0774 39.5584 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 43 G -0.8294 39.1126 43.4589 -Arial_Bold.ttf 92 ) 14.0000 53.5411 44 b 0.1319 29.5628 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 45 9 -0.0514 27.2857 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 46 ; 11.0504 8.8680 40.4372 -Arial_Bold.ttf 92 ) 14.0000 53.5411 47 D -0.0169 35.0909 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 48 L 0.0417 29.9113 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 49 y 11.4042 31.6883 42.4286 -Arial_Bold.ttf 92 ) 14.0000 53.5411 50 ‘ 0.1506 8.8680 17.6883 -Arial_Bold.ttf 92 ) 14.0000 53.5411 51 \ 0.1131 17.6883 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 52 R 0.0552 37.0498 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 53 < 5.5773 28.0000 31.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 54 4 0.1962 29.9589 41.7857 -Arial_Bold.ttf 92 ) 14.0000 53.5411 55 8 0.0940 27.2857 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 56 0 0.1826 27.2857 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 57 A 0.0060 40.5887 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 58 E -0.2750 32.0844 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 59 B -0.0357 35.0909 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 60 v 11.2814 31.6883 30.6732 -Arial_Bold.ttf 92 ) 14.0000 53.5411 61 k -0.0045 28.5152 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 62 J -0.1917 26.9524 42.7294 -Arial_Bold.ttf 92 ) 14.0000 53.5411 63 U -0.0202 33.3463 42.7294 -Arial_Bold.ttf 92 ) 14.0000 53.5411 64 j 0.0917 15.2294 53.7554 -Arial_Bold.ttf 92 ) 14.0000 53.5411 65 ( -0.0695 14.0000 53.5411 -Arial_Bold.ttf 92 ) 14.0000 53.5411 66 7 0.0990 27.2857 41.7857 -Arial_Bold.ttf 92 ) 14.0000 53.5411 67 § -0.4014 28.5152 54.7706 -Arial_Bold.ttf 92 ) 14.0000 53.5411 68 $ -2.9194 27.7857 50.8680 -Arial_Bold.ttf 92 ) 14.0000 53.5411 69 € -0.3459 31.6883 42.9437 -Arial_Bold.ttf 92 ) 14.0000 53.5411 70 / -0.0903 17.6883 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 71 C -0.6014 36.6537 42.7294 -Arial_Bold.ttf 92 ) 14.0000 53.5411 72 * -0.2607 19.7424 19.1320 -Arial_Bold.ttf 92 ) 14.0000 53.5411 73 ” 0.2190 22.4719 17.6883 -Arial_Bold.ttf 92 ) 14.0000 53.5411 74 ? 0.1133 30.4589 42.2143 -Arial_Bold.ttf 92 ) 14.0000 53.5411 75 { -0.0869 19.6472 53.9697 -Arial_Bold.ttf 92 ) 14.0000 53.5411 76 } -0.3788 19.6472 53.9697 -Arial_Bold.ttf 92 ) 14.0000 53.5411 77 , 33.8803 8.8680 17.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 78 I 0.0500 8.1385 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 79 ° -0.3143 18.0844 18.0844 -Arial_Bold.ttf 92 ) 14.0000 53.5411 80 K -0.1371 37.7641 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 81 H 0.1484 33.3463 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 82 q 10.0966 29.5628 43.4437 -Arial_Bold.ttf 92 ) 14.0000 53.5411 83 & -0.2143 38.8117 42.4286 -Arial_Bold.ttf 92 ) 14.0000 53.5411 84 ’ -0.2060 8.8680 17.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 85 [ 0.0955 15.2294 53.5411 -Arial_Bold.ttf 92 ) 14.0000 53.5411 86 - 23.6569 15.7294 6.9091 -Arial_Bold.ttf 92 ) 14.0000 53.5411 87 Y 0.0014 41.0563 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 88 Q -0.6756 41.7857 46.6472 -Arial_Bold.ttf 92 ) 14.0000 53.5411 89 " 0.1560 21.5909 15.2294 -Arial_Bold.ttf 92 ) 14.0000 53.5411 90 ! -0.1871 8.1385 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 91 x 11.3731 32.4177 30.6732 -Arial_Bold.ttf 92 ) 14.0000 53.5411 92 ) -0.2788 14.0000 53.5411 -Arial_Bold.ttf 92 ) 14.0000 53.5411 93 = 11.0369 29.2294 19.2835 -Arial_Bold.ttf 92 ) 14.0000 53.5411 94 + 7.1970 28.8961 28.8961 -Arial_Bold.ttf 92 ) 14.0000 53.5411 95 X -0.1571 38.9935 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 96 » 13.6453 26.9524 26.5563 -Arial_Bold.ttf 92 ) 14.0000 53.5411 97 ' 0.0202 8.1385 15.2294 -Arial_Bold.ttf 92 ) 14.0000 53.5411 98 ¢ -0.0045 28.7294 54.4372 -Arial_Bold.ttf 92 ) 14.0000 53.5411 99 Z -0.1266 34.4805 42.0000 -Arial_Bold.ttf 92 ) 14.0000 53.5411 100 > 5.1189 28.0000 31.9026 -Arial_Bold.ttf 92 ) 14.0000 53.5411 101 ® -0.0498 43.2294 42.4286 -Arial_Bold.ttf 92 ) 14.0000 53.5411 102 © -0.1560 43.9589 42.4286 -Arial_Bold.ttf 92 ) 14.0000 53.5411 103 ] -0.0260 15.2294 53.5411 -Arial_Bold.ttf 92 ) 14.0000 53.5411 104 é -0.7152 29.4113 42.8961 -Arial_Bold.ttf 92 ) 14.0000 53.5411 105 z 11.3768 26.7706 30.6732 -Arial_Bold.ttf 92 ) 14.0000 53.5411 106 _ 47.6882 33.4654 5.8615 -Arial_Bold.ttf 92 ) 14.0000 53.5411 107 ¥ 0.0645 30.2056 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 1 t -10.4161 18.1169 41.3810 -Arial_Bold.ttf 93 = 29.2294 19.2835 2 h -11.1423 27.7857 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 3 a -1.1558 28.8333 32.1169 -Arial_Bold.ttf 93 = 29.2294 19.2835 4 n -1.4576 27.7857 31.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 5 P -11.2917 32.0844 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 6 o -1.4271 31.0065 32.1169 -Arial_Bold.ttf 93 = 29.2294 19.2835 7 e -1.3575 29.4113 32.1169 -Arial_Bold.ttf 93 = 29.2294 19.2835 8 : -0.5530 8.1385 30.6732 -Arial_Bold.ttf 93 = 29.2294 19.2835 9 r -1.1580 19.8615 31.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 10 l -11.5264 8.1385 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 11 i -11.3328 8.1385 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 12 1 -11.2995 18.2359 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 13 | -11.2126 5.8615 54.5563 -Arial_Bold.ttf 93 = 29.2294 19.2835 14 N -11.1883 33.3463 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 15 f -11.5637 20.6948 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 16 g -1.2509 29.5628 43.6580 -Arial_Bold.ttf 93 = 29.2294 19.2835 17 d -10.7802 29.5628 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 18 W -11.0540 54.7706 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 19 s -1.3606 28.3333 32.1169 -Arial_Bold.ttf 93 = 29.2294 19.2835 20 c -1.0923 27.5000 32.1169 -Arial_Bold.ttf 93 = 29.2294 19.2835 21 u -0.4466 27.7857 30.8874 -Arial_Bold.ttf 93 = 29.2294 19.2835 22 3 -11.3028 27.2857 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 23 ~ 4.7233 30.4589 10.8117 -Arial_Bold.ttf 93 = 29.2294 19.2835 24 # -11.1481 30.3874 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 25 O -11.8380 40.3420 43.4589 -Arial_Bold.ttf 93 = 29.2294 19.2835 26 ` -11.2866 12.7706 8.3203 -Arial_Bold.ttf 93 = 29.2294 19.2835 27 @ -11.3585 55.2706 56.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 28 F -11.5090 29.0152 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 29 S -12.1584 33.8615 43.4589 -Arial_Bold.ttf 93 = 29.2294 19.2835 30 p -1.0878 29.5628 43.4437 -Arial_Bold.ttf 93 = 29.2294 19.2835 31 “ -11.4511 22.4719 17.6883 -Arial_Bold.ttf 93 = 29.2294 19.2835 32 % -11.5256 44.9329 43.6580 -Arial_Bold.ttf 93 = 29.2294 19.2835 33 £ -11.3518 31.1883 42.4286 -Arial_Bold.ttf 93 = 29.2294 19.2835 34 . 22.1687 8.1385 8.1385 -Arial_Bold.ttf 93 = 29.2294 19.2835 35 2 -11.2352 27.2857 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 36 5 -10.8443 28.0000 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 37 m -1.3880 44.6104 31.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 38 V -11.3328 38.4935 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 39 6 -11.2352 27.2857 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 40 w 0.0631 45.5065 30.6732 -Arial_Bold.ttf 93 = 29.2294 19.2835 41 T -11.4088 33.2511 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 42 M -11.1600 39.5584 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 43 G -12.1472 39.1126 43.4589 -Arial_Bold.ttf 93 = 29.2294 19.2835 44 b -11.8630 29.5628 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 45 9 -11.2140 27.2857 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 46 ; 0.1111 8.8680 40.4372 -Arial_Bold.ttf 93 = 29.2294 19.2835 47 D -11.2411 35.0909 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 48 L -11.2925 29.9113 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 49 y -0.0847 31.6883 42.4286 -Arial_Bold.ttf 93 = 29.2294 19.2835 50 ‘ -11.2054 8.8680 17.6883 -Arial_Bold.ttf 93 = 29.2294 19.2835 51 \ -11.3463 17.6883 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 52 R -11.3062 37.0498 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 53 < -5.8115 28.0000 31.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 54 4 -10.9792 29.9589 41.7857 -Arial_Bold.ttf 93 = 29.2294 19.2835 55 8 -11.4147 27.2857 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 56 0 -11.2268 27.2857 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 57 A -11.3111 40.5887 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 58 E -11.5399 32.0844 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 59 B -11.4261 35.0909 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 60 v -0.1552 31.6883 30.6732 -Arial_Bold.ttf 93 = 29.2294 19.2835 61 k -11.2711 28.5152 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 62 J -11.0526 26.9524 42.7294 -Arial_Bold.ttf 93 = 29.2294 19.2835 63 U -11.0018 33.3463 42.7294 -Arial_Bold.ttf 93 = 29.2294 19.2835 64 j -11.1540 15.2294 53.7554 -Arial_Bold.ttf 93 = 29.2294 19.2835 65 ( -11.4304 14.0000 53.5411 -Arial_Bold.ttf 93 = 29.2294 19.2835 66 7 -11.3673 27.2857 41.7857 -Arial_Bold.ttf 93 = 29.2294 19.2835 67 § -11.6699 28.5152 54.7706 -Arial_Bold.ttf 93 = 29.2294 19.2835 68 $ -14.3319 27.7857 50.8680 -Arial_Bold.ttf 93 = 29.2294 19.2835 69 € -11.8320 31.6883 42.9437 -Arial_Bold.ttf 93 = 29.2294 19.2835 70 / -11.3782 17.6883 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 71 C -12.1063 36.6537 42.7294 -Arial_Bold.ttf 93 = 29.2294 19.2835 72 * -11.3080 19.7424 19.1320 -Arial_Bold.ttf 93 = 29.2294 19.2835 73 ” -11.1919 22.4719 17.6883 -Arial_Bold.ttf 93 = 29.2294 19.2835 74 ? -11.6126 30.4589 42.2143 -Arial_Bold.ttf 93 = 29.2294 19.2835 75 { -11.5411 19.6472 53.9697 -Arial_Bold.ttf 93 = 29.2294 19.2835 76 } -11.6677 19.6472 53.9697 -Arial_Bold.ttf 93 = 29.2294 19.2835 77 , 22.4997 8.8680 17.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 78 I -11.4373 8.1385 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 79 ° -11.3383 18.0844 18.0844 -Arial_Bold.ttf 93 = 29.2294 19.2835 80 K -11.4497 37.7641 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 81 H -11.5816 33.3463 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 82 q -1.2925 29.5628 43.4437 -Arial_Bold.ttf 93 = 29.2294 19.2835 83 & -11.6775 38.8117 42.4286 -Arial_Bold.ttf 93 = 29.2294 19.2835 84 ’ -11.4640 8.8680 17.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 85 [ -11.0488 15.2294 53.5411 -Arial_Bold.ttf 93 = 29.2294 19.2835 86 - 12.4692 15.7294 6.9091 -Arial_Bold.ttf 93 = 29.2294 19.2835 87 Y -11.2814 41.0563 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 88 Q -11.9920 41.7857 46.6472 -Arial_Bold.ttf 93 = 29.2294 19.2835 89 " -11.3463 21.5909 15.2294 -Arial_Bold.ttf 93 = 29.2294 19.2835 90 ! -11.4892 8.1385 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 91 x 0.1228 32.4177 30.6732 -Arial_Bold.ttf 93 = 29.2294 19.2835 92 ) -11.1449 14.0000 53.5411 -Arial_Bold.ttf 93 = 29.2294 19.2835 93 = -0.2885 29.2294 19.2835 -Arial_Bold.ttf 93 = 29.2294 19.2835 94 + -3.8237 28.8961 28.8961 -Arial_Bold.ttf 93 = 29.2294 19.2835 95 X -11.2443 38.9935 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 96 » 2.1469 26.9524 26.5563 -Arial_Bold.ttf 93 = 29.2294 19.2835 97 ' -11.5004 8.1385 15.2294 -Arial_Bold.ttf 93 = 29.2294 19.2835 98 ¢ -11.2397 28.7294 54.4372 -Arial_Bold.ttf 93 = 29.2294 19.2835 99 Z -11.1600 34.4805 42.0000 -Arial_Bold.ttf 93 = 29.2294 19.2835 100 > -5.5232 28.0000 31.9026 -Arial_Bold.ttf 93 = 29.2294 19.2835 101 ® -11.4716 43.2294 42.4286 -Arial_Bold.ttf 93 = 29.2294 19.2835 102 © -11.7951 43.9589 42.4286 -Arial_Bold.ttf 93 = 29.2294 19.2835 103 ] -11.2768 15.2294 53.5411 -Arial_Bold.ttf 93 = 29.2294 19.2835 104 é -11.7547 29.4113 42.8961 -Arial_Bold.ttf 93 = 29.2294 19.2835 105 z -0.0819 26.7706 30.6732 -Arial_Bold.ttf 93 = 29.2294 19.2835 106 _ 35.9885 33.4654 5.8615 -Arial_Bold.ttf 93 = 29.2294 19.2835 107 ¥ -11.0911 30.2056 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 1 t -6.3650 18.1169 41.3810 -Arial_Bold.ttf 94 + 28.8961 28.8961 2 h -7.0898 27.7857 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 3 a 2.9526 28.8333 32.1169 -Arial_Bold.ttf 94 + 28.8961 28.8961 4 n 2.6449 27.7857 31.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 5 P -7.4029 32.0844 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 6 o 2.9526 31.0065 32.1169 -Arial_Bold.ttf 94 + 28.8961 28.8961 7 e 3.0324 29.4113 32.1169 -Arial_Bold.ttf 94 + 28.8961 28.8961 8 : 3.8880 8.1385 30.6732 -Arial_Bold.ttf 94 + 28.8961 28.8961 9 r 2.5405 19.8615 31.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 10 l -7.0605 8.1385 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 11 i -7.4367 8.1385 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 12 1 -7.3139 18.2359 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 13 | -7.1724 5.8615 54.5563 -Arial_Bold.ttf 94 + 28.8961 28.8961 14 N -7.2853 33.3463 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 15 f -7.4665 20.6948 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 16 g 3.0292 29.5628 43.6580 -Arial_Bold.ttf 94 + 28.8961 28.8961 17 d -7.3015 29.5628 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 18 W -7.2484 54.7706 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 19 s 2.7081 28.3333 32.1169 -Arial_Bold.ttf 94 + 28.8961 28.8961 20 c 2.8778 27.5000 32.1169 -Arial_Bold.ttf 94 + 28.8961 28.8961 21 u 3.8094 27.7857 30.8874 -Arial_Bold.ttf 94 + 28.8961 28.8961 22 3 -7.1515 27.2857 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 23 ~ 8.6508 30.4589 10.8117 -Arial_Bold.ttf 94 + 28.8961 28.8961 24 # -7.1515 30.3874 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 25 O -7.9050 40.3420 43.4589 -Arial_Bold.ttf 94 + 28.8961 28.8961 26 ` -7.2150 12.7706 8.3203 -Arial_Bold.ttf 94 + 28.8961 28.8961 27 @ -7.6139 55.2706 56.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 28 F -7.5760 29.0152 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 29 S -7.8111 33.8615 43.4589 -Arial_Bold.ttf 94 + 28.8961 28.8961 30 p 2.9609 29.5628 43.4437 -Arial_Bold.ttf 94 + 28.8961 28.8961 31 “ -7.2962 22.4719 17.6883 -Arial_Bold.ttf 94 + 28.8961 28.8961 32 % -7.7900 44.9329 43.6580 -Arial_Bold.ttf 94 + 28.8961 28.8961 33 £ -7.5381 31.1883 42.4286 -Arial_Bold.ttf 94 + 28.8961 28.8961 34 . 26.6139 8.1385 8.1385 -Arial_Bold.ttf 94 + 28.8961 28.8961 35 2 -7.2900 27.2857 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 36 5 -7.3576 28.0000 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 37 m 2.8855 44.6104 31.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 38 V -7.3952 38.4935 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 39 6 -7.0896 27.2857 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 40 w 3.6237 45.5065 30.6732 -Arial_Bold.ttf 94 + 28.8961 28.8961 41 T -7.2053 33.2511 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 42 M -7.2019 39.5584 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 43 G -7.6307 39.1126 43.4589 -Arial_Bold.ttf 94 + 28.8961 28.8961 44 b -7.1022 29.5628 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 45 9 -6.9787 27.2857 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 46 ; 4.0495 8.8680 40.4372 -Arial_Bold.ttf 94 + 28.8961 28.8961 47 D -7.1938 35.0909 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 48 L -7.2767 29.9113 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 49 y 3.8838 31.6883 42.4286 -Arial_Bold.ttf 94 + 28.8961 28.8961 50 ‘ -7.0650 8.8680 17.6883 -Arial_Bold.ttf 94 + 28.8961 28.8961 51 \ -7.1015 17.6883 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 52 R -7.5250 37.0498 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 53 < -1.9558 28.0000 31.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 54 4 -6.9522 29.9589 41.7857 -Arial_Bold.ttf 94 + 28.8961 28.8961 55 8 -7.0793 27.2857 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 56 0 -7.0279 27.2857 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 57 A -7.3781 40.5887 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 58 E -7.5450 32.0844 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 59 B -7.1091 35.0909 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 60 v 4.2787 31.6883 30.6732 -Arial_Bold.ttf 94 + 28.8961 28.8961 61 k -6.9603 28.5152 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 62 J -7.3484 26.9524 42.7294 -Arial_Bold.ttf 94 + 28.8961 28.8961 63 U -7.4167 33.3463 42.7294 -Arial_Bold.ttf 94 + 28.8961 28.8961 64 j -7.0508 15.2294 53.7554 -Arial_Bold.ttf 94 + 28.8961 28.8961 65 ( -7.3043 14.0000 53.5411 -Arial_Bold.ttf 94 + 28.8961 28.8961 66 7 -6.9924 27.2857 41.7857 -Arial_Bold.ttf 94 + 28.8961 28.8961 67 § -7.2710 28.5152 54.7706 -Arial_Bold.ttf 94 + 28.8961 28.8961 68 $ -10.0487 27.7857 50.8680 -Arial_Bold.ttf 94 + 28.8961 28.8961 69 € -7.8167 31.6883 42.9437 -Arial_Bold.ttf 94 + 28.8961 28.8961 70 / -7.1150 17.6883 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 71 C -8.1350 36.6537 42.7294 -Arial_Bold.ttf 94 + 28.8961 28.8961 72 * -7.4926 19.7424 19.1320 -Arial_Bold.ttf 94 + 28.8961 28.8961 73 ” -7.3690 22.4719 17.6883 -Arial_Bold.ttf 94 + 28.8961 28.8961 74 ? -7.7190 30.4589 42.2143 -Arial_Bold.ttf 94 + 28.8961 28.8961 75 { -7.1877 19.6472 53.9697 -Arial_Bold.ttf 94 + 28.8961 28.8961 76 } -7.5412 19.6472 53.9697 -Arial_Bold.ttf 94 + 28.8961 28.8961 77 , 26.3662 8.8680 17.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 78 I -7.3476 8.1385 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 79 ° -7.4196 18.0844 18.0844 -Arial_Bold.ttf 94 + 28.8961 28.8961 80 K -7.4355 37.7641 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 81 H -7.2386 33.3463 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 82 q 3.0440 29.5628 43.4437 -Arial_Bold.ttf 94 + 28.8961 28.8961 83 & -7.5341 38.8117 42.4286 -Arial_Bold.ttf 94 + 28.8961 28.8961 84 ’ -7.4829 8.8680 17.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 85 [ -7.0267 15.2294 53.5411 -Arial_Bold.ttf 94 + 28.8961 28.8961 86 - 16.3288 15.7294 6.9091 -Arial_Bold.ttf 94 + 28.8961 28.8961 87 Y -7.6329 41.0563 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 88 Q -7.9004 41.7857 46.6472 -Arial_Bold.ttf 94 + 28.8961 28.8961 89 " -7.4964 21.5909 15.2294 -Arial_Bold.ttf 94 + 28.8961 28.8961 90 ! -7.1196 8.1385 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 91 x 3.9868 32.4177 30.6732 -Arial_Bold.ttf 94 + 28.8961 28.8961 92 ) -7.0410 14.0000 53.5411 -Arial_Bold.ttf 94 + 28.8961 28.8961 93 = 3.7166 29.2294 19.2835 -Arial_Bold.ttf 94 + 28.8961 28.8961 94 + -0.1728 28.8961 28.8961 -Arial_Bold.ttf 94 + 28.8961 28.8961 95 X -7.3874 38.9935 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 96 » 6.2303 26.9524 26.5563 -Arial_Bold.ttf 94 + 28.8961 28.8961 97 ' -7.2424 8.1385 15.2294 -Arial_Bold.ttf 94 + 28.8961 28.8961 98 ¢ -7.2619 28.7294 54.4372 -Arial_Bold.ttf 94 + 28.8961 28.8961 99 Z -7.5821 34.4805 42.0000 -Arial_Bold.ttf 94 + 28.8961 28.8961 100 > -1.7147 28.0000 31.9026 -Arial_Bold.ttf 94 + 28.8961 28.8961 101 ® -7.5341 43.2294 42.4286 -Arial_Bold.ttf 94 + 28.8961 28.8961 102 © -7.5589 43.9589 42.4286 -Arial_Bold.ttf 94 + 28.8961 28.8961 103 ] -7.2229 15.2294 53.5411 -Arial_Bold.ttf 94 + 28.8961 28.8961 104 é -8.0276 29.4113 42.8961 -Arial_Bold.ttf 94 + 28.8961 28.8961 105 z 4.3027 26.7706 30.6732 -Arial_Bold.ttf 94 + 28.8961 28.8961 106 _ 40.2184 33.4654 5.8615 -Arial_Bold.ttf 94 + 28.8961 28.8961 107 ¥ -7.1567 30.2056 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 1 t 0.7298 18.1169 41.3810 -Arial_Bold.ttf 95 X 38.9935 42.0000 2 h 0.0131 27.7857 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 3 a 9.8805 28.8333 32.1169 -Arial_Bold.ttf 95 X 38.9935 42.0000 4 n 10.4905 27.7857 31.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 5 P -0.0143 32.0844 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 6 o 9.9922 31.0065 32.1169 -Arial_Bold.ttf 95 X 38.9935 42.0000 7 e 10.2210 29.4113 32.1169 -Arial_Bold.ttf 95 X 38.9935 42.0000 8 : 11.2163 8.1385 30.6732 -Arial_Bold.ttf 95 X 38.9935 42.0000 9 r 9.8688 19.8615 31.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 10 l -0.1983 8.1385 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 11 i 0.0424 8.1385 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 12 1 0.0969 18.2359 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 13 | -0.4659 5.8615 54.5563 -Arial_Bold.ttf 95 X 38.9935 42.0000 14 N -0.1943 33.3463 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 15 f -0.0966 20.6948 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 16 g 10.3008 29.5628 43.6580 -Arial_Bold.ttf 95 X 38.9935 42.0000 17 d 0.1631 29.5628 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 18 W -0.1395 54.7706 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 19 s 10.2658 28.3333 32.1169 -Arial_Bold.ttf 95 X 38.9935 42.0000 20 c 10.1391 27.5000 32.1169 -Arial_Bold.ttf 95 X 38.9935 42.0000 21 u 11.3054 27.7857 30.8874 -Arial_Bold.ttf 95 X 38.9935 42.0000 22 3 -0.0583 27.2857 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 23 ~ 16.0238 30.4589 10.8117 -Arial_Bold.ttf 95 X 38.9935 42.0000 24 # 0.0000 30.3874 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 25 O -1.0668 40.3420 43.4589 -Arial_Bold.ttf 95 X 38.9935 42.0000 26 ` 0.0222 12.7706 8.3203 -Arial_Bold.ttf 95 X 38.9935 42.0000 27 @ -0.2105 55.2706 56.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 28 F 0.2169 29.0152 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 29 S -0.4794 33.8615 43.4589 -Arial_Bold.ttf 95 X 38.9935 42.0000 30 p 10.2917 29.5628 43.4437 -Arial_Bold.ttf 95 X 38.9935 42.0000 31 “ -0.0008 22.4719 17.6883 -Arial_Bold.ttf 95 X 38.9935 42.0000 32 % 0.0183 44.9329 43.6580 -Arial_Bold.ttf 95 X 38.9935 42.0000 33 £ -0.3119 31.1883 42.4286 -Arial_Bold.ttf 95 X 38.9935 42.0000 34 . 34.0486 8.1385 8.1385 -Arial_Bold.ttf 95 X 38.9935 42.0000 35 2 -0.2062 27.2857 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 36 5 0.3983 28.0000 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 37 m 9.9369 44.6104 31.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 38 V -0.1274 38.4935 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 39 6 0.1371 27.2857 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 40 w 11.3419 45.5065 30.6732 -Arial_Bold.ttf 95 X 38.9935 42.0000 41 T 0.0357 33.2511 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 42 M 0.0966 39.5584 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 43 G -0.9044 39.1126 43.4589 -Arial_Bold.ttf 95 X 38.9935 42.0000 44 b 0.3085 29.5628 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 45 9 -0.3048 27.2857 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 46 ; 11.3366 8.8680 40.4372 -Arial_Bold.ttf 95 X 38.9935 42.0000 47 D 0.0669 35.0909 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 48 L 0.3562 29.9113 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 49 y 11.4699 31.6883 42.4286 -Arial_Bold.ttf 95 X 38.9935 42.0000 50 ‘ 0.0534 8.8680 17.6883 -Arial_Bold.ttf 95 X 38.9935 42.0000 51 \ 0.3762 17.6883 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 52 R 0.0065 37.0498 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 53 < 5.2620 28.0000 31.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 54 4 0.4826 29.9589 41.7857 -Arial_Bold.ttf 95 X 38.9935 42.0000 55 8 -0.0226 27.2857 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 56 0 -0.2690 27.2857 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 57 A -0.1074 40.5887 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 58 E 0.1461 32.0844 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 59 B 0.2653 35.0909 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 60 v 11.1338 31.6883 30.6732 -Arial_Bold.ttf 95 X 38.9935 42.0000 61 k -0.3457 28.5152 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 62 J -0.0514 26.9524 42.7294 -Arial_Bold.ttf 95 X 38.9935 42.0000 63 U 0.0500 33.3463 42.7294 -Arial_Bold.ttf 95 X 38.9935 42.0000 64 j 0.1812 15.2294 53.7554 -Arial_Bold.ttf 95 X 38.9935 42.0000 65 ( 0.0067 14.0000 53.5411 -Arial_Bold.ttf 95 X 38.9935 42.0000 66 7 0.3879 27.2857 41.7857 -Arial_Bold.ttf 95 X 38.9935 42.0000 67 § 0.0679 28.5152 54.7706 -Arial_Bold.ttf 95 X 38.9935 42.0000 68 $ -3.2665 27.7857 50.8680 -Arial_Bold.ttf 95 X 38.9935 42.0000 69 € -0.4216 31.6883 42.9437 -Arial_Bold.ttf 95 X 38.9935 42.0000 70 / 0.3040 17.6883 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 71 C -0.5573 36.6537 42.7294 -Arial_Bold.ttf 95 X 38.9935 42.0000 72 * -0.4062 19.7424 19.1320 -Arial_Bold.ttf 95 X 38.9935 42.0000 73 ” -0.3107 22.4719 17.6883 -Arial_Bold.ttf 95 X 38.9935 42.0000 74 ? -0.2740 30.4589 42.2143 -Arial_Bold.ttf 95 X 38.9935 42.0000 75 { -0.1042 19.6472 53.9697 -Arial_Bold.ttf 95 X 38.9935 42.0000 76 } 0.0078 19.6472 53.9697 -Arial_Bold.ttf 95 X 38.9935 42.0000 77 , 33.7855 8.8680 17.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 78 I -0.2222 8.1385 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 79 ° -0.3014 18.0844 18.0844 -Arial_Bold.ttf 95 X 38.9935 42.0000 80 K 0.1371 37.7641 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 81 H -0.0969 33.3463 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 82 q 9.8155 29.5628 43.4437 -Arial_Bold.ttf 95 X 38.9935 42.0000 83 & -0.2010 38.8117 42.4286 -Arial_Bold.ttf 95 X 38.9935 42.0000 84 ’ -0.2385 8.8680 17.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 85 [ 0.4069 15.2294 53.5411 -Arial_Bold.ttf 95 X 38.9935 42.0000 86 - 23.9109 15.7294 6.9091 -Arial_Bold.ttf 95 X 38.9935 42.0000 87 Y 0.0774 41.0563 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 88 Q -0.8725 41.7857 46.6472 -Arial_Bold.ttf 95 X 38.9935 42.0000 89 " -0.0076 21.5909 15.2294 -Arial_Bold.ttf 95 X 38.9935 42.0000 90 ! -0.2722 8.1385 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 91 x 11.3359 32.4177 30.6732 -Arial_Bold.ttf 95 X 38.9935 42.0000 92 ) 0.1950 14.0000 53.5411 -Arial_Bold.ttf 95 X 38.9935 42.0000 93 = 11.2240 29.2294 19.2835 -Arial_Bold.ttf 95 X 38.9935 42.0000 94 + 7.3827 28.8961 28.8961 -Arial_Bold.ttf 95 X 38.9935 42.0000 95 X -0.1643 38.9935 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 96 » 13.4946 26.9524 26.5563 -Arial_Bold.ttf 95 X 38.9935 42.0000 97 ' 0.0038 8.1385 15.2294 -Arial_Bold.ttf 95 X 38.9935 42.0000 98 ¢ 0.2236 28.7294 54.4372 -Arial_Bold.ttf 95 X 38.9935 42.0000 99 Z 0.0611 34.4805 42.0000 -Arial_Bold.ttf 95 X 38.9935 42.0000 100 > 5.1411 28.0000 31.9026 -Arial_Bold.ttf 95 X 38.9935 42.0000 101 ® -0.1234 43.2294 42.4286 -Arial_Bold.ttf 95 X 38.9935 42.0000 102 © -0.1226 43.9589 42.4286 -Arial_Bold.ttf 95 X 38.9935 42.0000 103 ] -0.3726 15.2294 53.5411 -Arial_Bold.ttf 95 X 38.9935 42.0000 104 é -0.6423 29.4113 42.8961 -Arial_Bold.ttf 95 X 38.9935 42.0000 105 z 11.8201 26.7706 30.6732 -Arial_Bold.ttf 95 X 38.9935 42.0000 106 _ 47.2963 33.4654 5.8615 -Arial_Bold.ttf 95 X 38.9935 42.0000 107 ¥ 0.0962 30.2056 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 1 t -12.8432 18.1169 41.3810 -Arial_Bold.ttf 96 » 26.9524 26.5563 2 h -13.5517 27.7857 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 3 a -3.4912 28.8333 32.1169 -Arial_Bold.ttf 96 » 26.9524 26.5563 4 n -3.2777 27.7857 31.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 5 P -13.4037 32.0844 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 6 o -3.3124 31.0065 32.1169 -Arial_Bold.ttf 96 » 26.9524 26.5563 7 e -3.3003 29.4113 32.1169 -Arial_Bold.ttf 96 » 26.9524 26.5563 8 : -2.4582 8.1385 30.6732 -Arial_Bold.ttf 96 » 26.9524 26.5563 9 r -3.5662 19.8615 31.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 10 l -13.3751 8.1385 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 11 i -13.3918 8.1385 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 12 1 -13.7160 18.2359 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 13 | -13.4648 5.8615 54.5563 -Arial_Bold.ttf 96 » 26.9524 26.5563 14 N -13.5848 33.3463 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 15 f -13.6394 20.6948 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 16 g -3.4374 29.5628 43.6580 -Arial_Bold.ttf 96 » 26.9524 26.5563 17 d -13.4938 29.5628 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 18 W -13.4863 54.7706 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 19 s -3.0432 28.3333 32.1169 -Arial_Bold.ttf 96 » 26.9524 26.5563 20 c -3.5519 27.5000 32.1169 -Arial_Bold.ttf 96 » 26.9524 26.5563 21 u -2.4239 27.7857 30.8874 -Arial_Bold.ttf 96 » 26.9524 26.5563 22 3 -13.3003 27.2857 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 23 ~ 1.9524 30.4589 10.8117 -Arial_Bold.ttf 96 » 26.9524 26.5563 24 # -13.5442 30.3874 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 25 O -14.2143 40.3420 43.4589 -Arial_Bold.ttf 96 » 26.9524 26.5563 26 ` -13.6712 12.7706 8.3203 -Arial_Bold.ttf 96 » 26.9524 26.5563 27 @ -13.9708 55.2706 56.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 28 F -13.5946 29.0152 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 29 S -14.0193 33.8615 43.4589 -Arial_Bold.ttf 96 » 26.9524 26.5563 30 p -3.3882 29.5628 43.4437 -Arial_Bold.ttf 96 » 26.9524 26.5563 31 “ -13.3837 22.4719 17.6883 -Arial_Bold.ttf 96 » 26.9524 26.5563 32 % -13.7938 44.9329 43.6580 -Arial_Bold.ttf 96 » 26.9524 26.5563 33 £ -13.9577 31.1883 42.4286 -Arial_Bold.ttf 96 » 26.9524 26.5563 34 . 20.3492 8.1385 8.1385 -Arial_Bold.ttf 96 » 26.9524 26.5563 35 2 -13.5751 27.2857 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 36 5 -13.0880 28.0000 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 37 m -3.4791 44.6104 31.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 38 V -13.2249 38.4935 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 39 6 -13.2360 27.2857 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 40 w -1.9578 45.5065 30.6732 -Arial_Bold.ttf 96 » 26.9524 26.5563 41 T -13.5848 33.2511 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 42 M -13.4706 39.5584 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 43 G -14.2000 39.1126 43.4589 -Arial_Bold.ttf 96 » 26.9524 26.5563 44 b -13.2963 29.5628 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 45 9 -13.2225 27.2857 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 46 ; -2.2475 8.8680 40.4372 -Arial_Bold.ttf 96 » 26.9524 26.5563 47 D -13.7396 35.0909 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 48 L -13.5063 29.9113 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 49 y -2.2278 31.6883 42.4286 -Arial_Bold.ttf 96 » 26.9524 26.5563 50 ‘ -13.6479 8.8680 17.6883 -Arial_Bold.ttf 96 » 26.9524 26.5563 51 \ -13.2880 17.6883 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 52 R -13.4103 37.0498 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 53 < -7.6933 28.0000 31.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 54 4 -13.5148 29.9589 41.7857 -Arial_Bold.ttf 96 » 26.9524 26.5563 55 8 -13.5551 27.2857 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 56 0 -13.5765 27.2857 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 57 A -13.5337 40.5887 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 58 E -13.6837 32.0844 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 59 B -13.6494 35.0909 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 60 v -2.3939 31.6883 30.6732 -Arial_Bold.ttf 96 » 26.9524 26.5563 61 k -13.7494 28.5152 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 62 J -13.5894 26.9524 42.7294 -Arial_Bold.ttf 96 » 26.9524 26.5563 63 U -13.3218 33.3463 42.7294 -Arial_Bold.ttf 96 » 26.9524 26.5563 64 j -13.2128 15.2294 53.7554 -Arial_Bold.ttf 96 » 26.9524 26.5563 65 ( -13.5577 14.0000 53.5411 -Arial_Bold.ttf 96 » 26.9524 26.5563 66 7 -13.1075 27.2857 41.7857 -Arial_Bold.ttf 96 » 26.9524 26.5563 67 § -13.7499 28.5152 54.7706 -Arial_Bold.ttf 96 » 26.9524 26.5563 68 $ -16.5654 27.7857 50.8680 -Arial_Bold.ttf 96 » 26.9524 26.5563 69 € -14.3397 31.6883 42.9437 -Arial_Bold.ttf 96 » 26.9524 26.5563 70 / -13.2432 17.6883 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 71 C -14.1955 36.6537 42.7294 -Arial_Bold.ttf 96 » 26.9524 26.5563 72 * -13.4575 19.7424 19.1320 -Arial_Bold.ttf 96 » 26.9524 26.5563 73 ” -13.5682 22.4719 17.6883 -Arial_Bold.ttf 96 » 26.9524 26.5563 74 ? -13.7295 30.4589 42.2143 -Arial_Bold.ttf 96 » 26.9524 26.5563 75 { -13.3606 19.6472 53.9697 -Arial_Bold.ttf 96 » 26.9524 26.5563 76 } -13.9303 19.6472 53.9697 -Arial_Bold.ttf 96 » 26.9524 26.5563 77 , 20.4766 8.8680 17.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 78 I -13.3408 8.1385 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 79 ° -13.7499 18.0844 18.0844 -Arial_Bold.ttf 96 » 26.9524 26.5563 80 K -13.3432 37.7641 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 81 H -13.3037 33.3463 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 82 q -3.4472 29.5628 43.4437 -Arial_Bold.ttf 96 » 26.9524 26.5563 83 & -13.6218 38.8117 42.4286 -Arial_Bold.ttf 96 » 26.9524 26.5563 84 ’ -13.3991 8.8680 17.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 85 [ -13.4870 15.2294 53.5411 -Arial_Bold.ttf 96 » 26.9524 26.5563 86 - 10.3142 15.7294 6.9091 -Arial_Bold.ttf 96 » 26.9524 26.5563 87 Y -13.3718 41.0563 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 88 Q -14.1940 41.7857 46.6472 -Arial_Bold.ttf 96 » 26.9524 26.5563 89 " -13.6739 21.5909 15.2294 -Arial_Bold.ttf 96 » 26.9524 26.5563 90 ! -13.4297 8.1385 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 91 x -2.0254 32.4177 30.6732 -Arial_Bold.ttf 96 » 26.9524 26.5563 92 ) -13.7880 14.0000 53.5411 -Arial_Bold.ttf 96 » 26.9524 26.5563 93 = -2.2554 29.2294 19.2835 -Arial_Bold.ttf 96 » 26.9524 26.5563 94 + -6.3198 28.8961 28.8961 -Arial_Bold.ttf 96 » 26.9524 26.5563 95 X -13.3815 38.9935 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 96 » 0.0060 26.9524 26.5563 -Arial_Bold.ttf 96 » 26.9524 26.5563 97 ' -13.4608 8.1385 15.2294 -Arial_Bold.ttf 96 » 26.9524 26.5563 98 ¢ -13.7174 28.7294 54.4372 -Arial_Bold.ttf 96 » 26.9524 26.5563 99 Z -13.6220 34.4805 42.0000 -Arial_Bold.ttf 96 » 26.9524 26.5563 100 > -8.0262 28.0000 31.9026 -Arial_Bold.ttf 96 » 26.9524 26.5563 101 ® -13.3497 43.2294 42.4286 -Arial_Bold.ttf 96 » 26.9524 26.5563 102 © -13.6491 43.9589 42.4286 -Arial_Bold.ttf 96 » 26.9524 26.5563 103 ] -13.6934 15.2294 53.5411 -Arial_Bold.ttf 96 » 26.9524 26.5563 104 é -14.2538 29.4113 42.8961 -Arial_Bold.ttf 96 » 26.9524 26.5563 105 z -2.2497 26.7706 30.6732 -Arial_Bold.ttf 96 » 26.9524 26.5563 106 _ 34.1631 33.4654 5.8615 -Arial_Bold.ttf 96 » 26.9524 26.5563 107 ¥ -13.3120 30.2056 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 1 t 0.8333 18.1169 41.3810 -Arial_Bold.ttf 97 ' 8.1385 15.2294 2 h -0.0357 27.7857 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 3 a 9.9700 28.8333 32.1169 -Arial_Bold.ttf 97 ' 8.1385 15.2294 4 n 10.1831 27.7857 31.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 5 P 0.2821 32.0844 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 6 o 10.1353 31.0065 32.1169 -Arial_Bold.ttf 97 ' 8.1385 15.2294 7 e 10.0974 29.4113 32.1169 -Arial_Bold.ttf 97 ' 8.1385 15.2294 8 : 11.1526 8.1385 30.6732 -Arial_Bold.ttf 97 ' 8.1385 15.2294 9 r 10.2307 19.8615 31.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 10 l 0.1631 8.1385 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 11 i 0.2131 8.1385 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 12 1 0.0917 18.2359 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 13 | -0.0350 5.8615 54.5563 -Arial_Bold.ttf 97 ' 8.1385 15.2294 14 N -0.1690 33.3463 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 15 f -0.1786 20.6948 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 16 g 10.1474 29.5628 43.6580 -Arial_Bold.ttf 97 ' 8.1385 15.2294 17 d 0.0083 29.5628 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 18 W -0.0195 54.7706 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 19 s 10.1929 28.3333 32.1169 -Arial_Bold.ttf 97 ' 8.1385 15.2294 20 c 10.0915 27.5000 32.1169 -Arial_Bold.ttf 97 ' 8.1385 15.2294 21 u 11.2390 27.7857 30.8874 -Arial_Bold.ttf 97 ' 8.1385 15.2294 22 3 0.1000 27.2857 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 23 ~ 15.8315 30.4589 10.8117 -Arial_Bold.ttf 97 ' 8.1385 15.2294 24 # -0.0476 30.3874 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 25 O -0.7892 40.3420 43.4589 -Arial_Bold.ttf 97 ' 8.1385 15.2294 26 ` 0.0514 12.7706 8.3203 -Arial_Bold.ttf 97 ' 8.1385 15.2294 27 @ -0.1286 55.2706 56.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 28 F 0.0597 29.0152 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 29 S -0.7054 33.8615 43.4589 -Arial_Bold.ttf 97 ' 8.1385 15.2294 30 p 10.1681 29.5628 43.4437 -Arial_Bold.ttf 97 ' 8.1385 15.2294 31 “ 0.0357 22.4719 17.6883 -Arial_Bold.ttf 97 ' 8.1385 15.2294 32 % -0.2500 44.9329 43.6580 -Arial_Bold.ttf 97 ' 8.1385 15.2294 33 £ -0.1726 31.1883 42.4286 -Arial_Bold.ttf 97 ' 8.1385 15.2294 34 . 33.9329 8.1385 8.1385 -Arial_Bold.ttf 97 ' 8.1385 15.2294 35 2 0.0038 27.2857 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 36 5 0.1407 28.0000 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 37 m 10.1488 44.6104 31.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 38 V -0.0357 38.4935 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 39 6 -0.0714 27.2857 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 40 w 11.4535 45.5065 30.6732 -Arial_Bold.ttf 97 ' 8.1385 15.2294 41 T -0.0714 33.2511 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 42 M -0.0500 39.5584 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 43 G -0.7294 39.1126 43.4589 -Arial_Bold.ttf 97 ' 8.1385 15.2294 44 b 0.2871 29.5628 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 45 9 0.0583 27.2857 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 46 ; 11.3626 8.8680 40.4372 -Arial_Bold.ttf 97 ' 8.1385 15.2294 47 D 0.1000 35.0909 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 48 L 0.2409 29.9113 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 49 y 11.2828 31.6883 42.4286 -Arial_Bold.ttf 97 ' 8.1385 15.2294 50 ‘ -0.1319 8.8680 17.6883 -Arial_Bold.ttf 97 ' 8.1385 15.2294 51 \ 0.0000 17.6883 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 52 R -0.0917 37.0498 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 53 < 5.6070 28.0000 31.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 54 4 0.2226 29.9589 41.7857 -Arial_Bold.ttf 97 ' 8.1385 15.2294 55 8 -0.0319 27.2857 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 56 0 0.1931 27.2857 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 57 A 0.0714 40.5887 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 58 E -0.2205 32.0844 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 59 B -0.3100 35.0909 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 60 v 11.0312 31.6883 30.6732 -Arial_Bold.ttf 97 ' 8.1385 15.2294 61 k 0.0871 28.5152 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 62 J 0.0357 26.9524 42.7294 -Arial_Bold.ttf 97 ' 8.1385 15.2294 63 U 0.1143 33.3463 42.7294 -Arial_Bold.ttf 97 ' 8.1385 15.2294 64 j -0.2357 15.2294 53.7554 -Arial_Bold.ttf 97 ' 8.1385 15.2294 65 ( 0.0476 14.0000 53.5411 -Arial_Bold.ttf 97 ' 8.1385 15.2294 66 7 0.2202 27.2857 41.7857 -Arial_Bold.ttf 97 ' 8.1385 15.2294 67 § -0.2917 28.5152 54.7706 -Arial_Bold.ttf 97 ' 8.1385 15.2294 68 $ -2.9110 27.7857 50.8680 -Arial_Bold.ttf 97 ' 8.1385 15.2294 69 € -0.7802 31.6883 42.9437 -Arial_Bold.ttf 97 ' 8.1385 15.2294 70 / 0.1826 17.6883 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 71 C -0.6937 36.6537 42.7294 -Arial_Bold.ttf 97 ' 8.1385 15.2294 72 * 0.0774 19.7424 19.1320 -Arial_Bold.ttf 97 ' 8.1385 15.2294 73 ” -0.0500 22.4719 17.6883 -Arial_Bold.ttf 97 ' 8.1385 15.2294 74 ? 0.0990 30.4589 42.2143 -Arial_Bold.ttf 97 ' 8.1385 15.2294 75 { -0.1786 19.6472 53.9697 -Arial_Bold.ttf 97 ' 8.1385 15.2294 76 } -0.3909 19.6472 53.9697 -Arial_Bold.ttf 97 ' 8.1385 15.2294 77 , 33.6841 8.8680 17.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 78 I 0.0000 8.1385 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 79 ° -0.3195 18.0844 18.0844 -Arial_Bold.ttf 97 ' 8.1385 15.2294 80 K -0.0338 37.7641 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 81 H 0.0071 33.3463 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 82 q 10.1974 29.5628 43.4437 -Arial_Bold.ttf 97 ' 8.1385 15.2294 83 & -0.3060 38.8117 42.4286 -Arial_Bold.ttf 97 ' 8.1385 15.2294 84 ’ 0.0909 8.8680 17.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 85 [ 0.1312 15.2294 53.5411 -Arial_Bold.ttf 97 ' 8.1385 15.2294 86 - 23.9369 15.7294 6.9091 -Arial_Bold.ttf 97 ' 8.1385 15.2294 87 Y -0.1190 41.0563 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 88 Q -0.7794 41.7857 46.6472 -Arial_Bold.ttf 97 ' 8.1385 15.2294 89 " 0.0000 21.5909 15.2294 -Arial_Bold.ttf 97 ' 8.1385 15.2294 90 ! 0.0143 8.1385 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 91 x 11.1981 32.4177 30.6732 -Arial_Bold.ttf 97 ' 8.1385 15.2294 92 ) 0.0060 14.0000 53.5411 -Arial_Bold.ttf 97 ' 8.1385 15.2294 93 = 11.2911 29.2294 19.2835 -Arial_Bold.ttf 97 ' 8.1385 15.2294 94 + 7.1508 28.8961 28.8961 -Arial_Bold.ttf 97 ' 8.1385 15.2294 95 X 0.0917 38.9935 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 96 » 13.4848 26.9524 26.5563 -Arial_Bold.ttf 97 ' 8.1385 15.2294 97 ' -0.1774 8.1385 15.2294 -Arial_Bold.ttf 97 ' 8.1385 15.2294 98 ¢ -0.0143 28.7294 54.4372 -Arial_Bold.ttf 97 ' 8.1385 15.2294 99 Z -0.1190 34.4805 42.0000 -Arial_Bold.ttf 97 ' 8.1385 15.2294 100 > 5.3745 28.0000 31.9026 -Arial_Bold.ttf 97 ' 8.1385 15.2294 101 ® -0.0726 43.2294 42.4286 -Arial_Bold.ttf 97 ' 8.1385 15.2294 102 © -0.1091 43.9589 42.4286 -Arial_Bold.ttf 97 ' 8.1385 15.2294 103 ] -0.0143 15.2294 53.5411 -Arial_Bold.ttf 97 ' 8.1385 15.2294 104 é -0.6187 29.4113 42.8961 -Arial_Bold.ttf 97 ' 8.1385 15.2294 105 z 11.1435 26.7706 30.6732 -Arial_Bold.ttf 97 ' 8.1385 15.2294 106 _ 47.3582 33.4654 5.8615 -Arial_Bold.ttf 97 ' 8.1385 15.2294 107 ¥ 0.0000 30.2056 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 1 t 0.6974 18.1169 41.3810 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 2 h 0.0417 27.7857 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 3 a 10.0903 28.8333 32.1169 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 4 n 9.9617 27.7857 31.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 5 P 0.3659 32.0844 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 6 o 10.0974 31.0065 32.1169 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 7 e 10.2583 29.4113 32.1169 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 8 : 11.1163 8.1385 30.6732 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 9 r 10.1143 19.8615 31.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 10 l 0.2002 8.1385 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 11 i 0.0403 8.1385 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 12 1 -0.1645 18.2359 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 13 | 0.2071 5.8615 54.5563 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 14 N 0.1912 33.3463 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 15 f -0.0839 20.6948 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 16 g 10.2581 29.5628 43.6580 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 17 d 0.4238 29.5628 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 18 W -0.0286 54.7706 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 19 s 9.9700 28.3333 32.1169 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 20 c 10.1605 27.5000 32.1169 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 21 u 11.4447 27.7857 30.8874 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 22 3 -0.1274 27.2857 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 23 ~ 15.8755 30.4589 10.8117 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 24 # 0.0155 30.3874 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 25 O -0.5780 40.3420 43.4589 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 26 ` 0.0905 12.7706 8.3203 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 27 @ -0.4833 55.2706 56.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 28 F 0.2481 29.0152 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 29 S -0.6742 33.8615 43.4589 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 30 p 10.0960 29.5628 43.4437 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 31 “ -0.0683 22.4719 17.6883 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 32 % -0.2935 44.9329 43.6580 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 33 £ 0.1054 31.1883 42.4286 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 34 . 33.9784 8.1385 8.1385 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 35 2 -0.2107 27.2857 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 36 5 0.0310 28.0000 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 37 m 9.8291 44.6104 31.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 38 V -0.1969 38.4935 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 39 6 -0.0590 27.2857 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 40 w 11.3068 45.5065 30.6732 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 41 T 0.0462 33.2511 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 42 M -0.1736 39.5584 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 43 G -0.4947 39.1126 43.4589 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 44 b -0.2502 29.5628 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 45 9 -0.4776 27.2857 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 46 ; 11.3276 8.8680 40.4372 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 47 D 0.0917 35.0909 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 48 L 0.1766 29.9113 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 49 y 11.3282 31.6883 42.4286 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 50 ‘ -0.0202 8.8680 17.6883 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 51 \ 0.6245 17.6883 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 52 R -0.1690 37.0498 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 53 < 5.4451 28.0000 31.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 54 4 0.2792 29.9589 41.7857 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 55 8 0.1000 27.2857 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 56 0 0.1000 27.2857 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 57 A -0.2502 40.5887 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 58 E 0.1736 32.0844 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 59 B -0.0357 35.0909 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 60 v 11.7247 31.6883 30.6732 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 61 k -0.0774 28.5152 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 62 J -0.0917 26.9524 42.7294 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 63 U -0.2671 33.3463 42.7294 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 64 j -0.0440 15.2294 53.7554 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 65 ( 0.0129 14.0000 53.5411 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 66 7 0.1448 27.2857 41.7857 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 67 § -0.1539 28.5152 54.7706 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 68 $ -2.9012 27.7857 50.8680 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 69 € -0.7614 31.6883 42.9437 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 70 / 0.0440 17.6883 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 71 C -0.5899 36.6537 42.7294 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 72 * 0.1060 19.7424 19.1320 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 73 ” -0.2728 22.4719 17.6883 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 74 ? -0.6114 30.4589 42.2143 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 75 { 0.1852 19.6472 53.9697 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 76 } -0.3143 19.6472 53.9697 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 77 , 33.6932 8.8680 17.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 78 I 0.1045 8.1385 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 79 ° -0.1355 18.0844 18.0844 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 80 K -0.0500 37.7641 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 81 H -0.0357 33.3463 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 82 q 10.2053 29.5628 43.4437 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 83 & 0.0345 38.8117 42.4286 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 84 ’ 0.1333 8.8680 17.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 85 [ -0.2333 15.2294 53.5411 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 86 - 23.5943 15.7294 6.9091 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 87 Y 0.1107 41.0563 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 88 Q -0.8568 41.7857 46.6472 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 89 " 0.0560 21.5909 15.2294 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 90 ! 0.0143 8.1385 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 91 x 11.0369 32.4177 30.6732 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 92 ) -0.0300 14.0000 53.5411 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 93 = 11.3554 29.2294 19.2835 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 94 + 7.4788 28.8961 28.8961 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 95 X -0.1917 38.9935 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 96 » 13.3555 26.9524 26.5563 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 97 ' -0.0228 8.1385 15.2294 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 98 ¢ 0.0635 28.7294 54.4372 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 99 Z 0.1690 34.4805 42.0000 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 100 > 5.3602 28.0000 31.9026 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 101 ® -0.1643 43.2294 42.4286 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 102 © -0.2466 43.9589 42.4286 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 103 ] 0.1458 15.2294 53.5411 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 104 é -0.5447 29.4113 42.8961 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 105 z 11.5050 26.7706 30.6732 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 106 _ 47.1380 33.4654 5.8615 -Arial_Bold.ttf 98 ¢ 28.7294 54.4372 107 ¥ -0.1940 30.2056 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 1 t 0.9250 18.1169 41.3810 -Arial_Bold.ttf 99 Z 34.4805 42.0000 2 h -0.0097 27.7857 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 3 a 9.9843 28.8333 32.1169 -Arial_Bold.ttf 99 Z 34.4805 42.0000 4 n 10.0958 27.7857 31.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 5 P 0.0298 32.0844 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 6 o 9.9343 31.0065 32.1169 -Arial_Bold.ttf 99 Z 34.4805 42.0000 7 e 10.2269 29.4113 32.1169 -Arial_Bold.ttf 99 Z 34.4805 42.0000 8 : 11.6570 8.1385 30.6732 -Arial_Bold.ttf 99 Z 34.4805 42.0000 9 r 10.3074 19.8615 31.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 10 l -0.0298 8.1385 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 11 i 0.0992 8.1385 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 12 1 0.0440 18.2359 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 13 | -0.0742 5.8615 54.5563 -Arial_Bold.ttf 99 Z 34.4805 42.0000 14 N -0.1514 33.3463 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 15 f -0.2726 20.6948 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 16 g 10.3716 29.5628 43.6580 -Arial_Bold.ttf 99 Z 34.4805 42.0000 17 d 0.1969 29.5628 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 18 W -0.4321 54.7706 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 19 s 10.0936 28.3333 32.1169 -Arial_Bold.ttf 99 Z 34.4805 42.0000 20 c 10.2548 27.5000 32.1169 -Arial_Bold.ttf 99 Z 34.4805 42.0000 21 u 11.5163 27.7857 30.8874 -Arial_Bold.ttf 99 Z 34.4805 42.0000 22 3 -0.0976 27.2857 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 23 ~ 15.7218 30.4589 10.8117 -Arial_Bold.ttf 99 Z 34.4805 42.0000 24 # 0.1236 30.3874 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 25 O -0.8144 40.3420 43.4589 -Arial_Bold.ttf 99 Z 34.4805 42.0000 26 ` 0.1300 12.7706 8.3203 -Arial_Bold.ttf 99 Z 34.4805 42.0000 27 @ -0.3969 55.2706 56.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 28 F -0.1107 29.0152 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 29 S -1.0820 33.8615 43.4589 -Arial_Bold.ttf 99 Z 34.4805 42.0000 30 p 10.4484 29.5628 43.4437 -Arial_Bold.ttf 99 Z 34.4805 42.0000 31 “ 0.1155 22.4719 17.6883 -Arial_Bold.ttf 99 Z 34.4805 42.0000 32 % -0.2286 44.9329 43.6580 -Arial_Bold.ttf 99 Z 34.4805 42.0000 33 £ -0.2560 31.1883 42.4286 -Arial_Bold.ttf 99 Z 34.4805 42.0000 34 . 33.7924 8.1385 8.1385 -Arial_Bold.ttf 99 Z 34.4805 42.0000 35 2 -0.0750 27.2857 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 36 5 0.3955 28.0000 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 37 m 9.9700 44.6104 31.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 38 V -0.1864 38.4935 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 39 6 -0.0574 27.2857 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 40 w 11.1943 45.5065 30.6732 -Arial_Bold.ttf 99 Z 34.4805 42.0000 41 T 0.1690 33.2511 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 42 M -0.1385 39.5584 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 43 G -0.2207 39.1126 43.4589 -Arial_Bold.ttf 99 Z 34.4805 42.0000 44 b -0.0669 29.5628 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 45 9 0.2333 27.2857 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 46 ; 11.4223 8.8680 40.4372 -Arial_Bold.ttf 99 Z 34.4805 42.0000 47 D -0.2040 35.0909 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 48 L -0.1176 29.9113 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 49 y 11.3328 31.6883 42.4286 -Arial_Bold.ttf 99 Z 34.4805 42.0000 50 ‘ -0.0871 8.8680 17.6883 -Arial_Bold.ttf 99 Z 34.4805 42.0000 51 \ -0.1176 17.6883 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 52 R 0.1048 37.0498 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 53 < 5.0873 28.0000 31.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 54 4 0.0667 29.9589 41.7857 -Arial_Bold.ttf 99 Z 34.4805 42.0000 55 8 0.0940 27.2857 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 56 0 0.1409 27.2857 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 57 A 0.3633 40.5887 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 58 E 0.2469 32.0844 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 59 B -0.2423 35.0909 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 60 v 11.0728 31.6883 30.6732 -Arial_Bold.ttf 99 Z 34.4805 42.0000 61 k 0.0885 28.5152 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 62 J 0.1714 26.9524 42.7294 -Arial_Bold.ttf 99 Z 34.4805 42.0000 63 U -0.2393 33.3463 42.7294 -Arial_Bold.ttf 99 Z 34.4805 42.0000 64 j -0.0083 15.2294 53.7554 -Arial_Bold.ttf 99 Z 34.4805 42.0000 65 ( -0.1371 14.0000 53.5411 -Arial_Bold.ttf 99 Z 34.4805 42.0000 66 7 0.4981 27.2857 41.7857 -Arial_Bold.ttf 99 Z 34.4805 42.0000 67 § -0.1508 28.5152 54.7706 -Arial_Bold.ttf 99 Z 34.4805 42.0000 68 $ -3.1555 27.7857 50.8680 -Arial_Bold.ttf 99 Z 34.4805 42.0000 69 € -0.8166 31.6883 42.9437 -Arial_Bold.ttf 99 Z 34.4805 42.0000 70 / -0.0853 17.6883 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 71 C -1.0537 36.6537 42.7294 -Arial_Bold.ttf 99 Z 34.4805 42.0000 72 * -0.2074 19.7424 19.1320 -Arial_Bold.ttf 99 Z 34.4805 42.0000 73 ” -0.2780 22.4719 17.6883 -Arial_Bold.ttf 99 Z 34.4805 42.0000 74 ? -0.3014 30.4589 42.2143 -Arial_Bold.ttf 99 Z 34.4805 42.0000 75 { -0.0815 19.6472 53.9697 -Arial_Bold.ttf 99 Z 34.4805 42.0000 76 } -0.0831 19.6472 53.9697 -Arial_Bold.ttf 99 Z 34.4805 42.0000 77 , 33.8069 8.8680 17.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 78 I 0.0295 8.1385 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 79 ° -0.3976 18.0844 18.0844 -Arial_Bold.ttf 99 Z 34.4805 42.0000 80 K -0.0909 37.7641 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 81 H 0.1593 33.3463 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 82 q 10.1188 29.5628 43.4437 -Arial_Bold.ttf 99 Z 34.4805 42.0000 83 & -0.3976 38.8117 42.4286 -Arial_Bold.ttf 99 Z 34.4805 42.0000 84 ’ 0.0131 8.8680 17.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 85 [ -0.2750 15.2294 53.5411 -Arial_Bold.ttf 99 Z 34.4805 42.0000 86 - 24.0045 15.7294 6.9091 -Arial_Bold.ttf 99 Z 34.4805 42.0000 87 Y -0.0124 41.0563 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 88 Q -0.6340 41.7857 46.6472 -Arial_Bold.ttf 99 Z 34.4805 42.0000 89 " -0.1060 21.5909 15.2294 -Arial_Bold.ttf 99 Z 34.4805 42.0000 90 ! -0.0008 8.1385 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 91 x 11.3523 32.4177 30.6732 -Arial_Bold.ttf 99 Z 34.4805 42.0000 92 ) -0.1788 14.0000 53.5411 -Arial_Bold.ttf 99 Z 34.4805 42.0000 93 = 11.3185 29.2294 19.2835 -Arial_Bold.ttf 99 Z 34.4805 42.0000 94 + 6.8715 28.8961 28.8961 -Arial_Bold.ttf 99 Z 34.4805 42.0000 95 X 0.1488 38.9935 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 96 » 13.4289 26.9524 26.5563 -Arial_Bold.ttf 99 Z 34.4805 42.0000 97 ' -0.0955 8.1385 15.2294 -Arial_Bold.ttf 99 Z 34.4805 42.0000 98 ¢ 0.0417 28.7294 54.4372 -Arial_Bold.ttf 99 Z 34.4805 42.0000 99 Z 0.0286 34.4805 42.0000 -Arial_Bold.ttf 99 Z 34.4805 42.0000 100 > 5.4070 28.0000 31.9026 -Arial_Bold.ttf 99 Z 34.4805 42.0000 101 ® 0.1123 43.2294 42.4286 -Arial_Bold.ttf 99 Z 34.4805 42.0000 102 © -0.2591 43.9589 42.4286 -Arial_Bold.ttf 99 Z 34.4805 42.0000 103 ] -0.1000 15.2294 53.5411 -Arial_Bold.ttf 99 Z 34.4805 42.0000 104 é -0.4747 29.4113 42.8961 -Arial_Bold.ttf 99 Z 34.4805 42.0000 105 z 11.2209 26.7706 30.6732 -Arial_Bold.ttf 99 Z 34.4805 42.0000 106 _ 47.4965 33.4654 5.8615 -Arial_Bold.ttf 99 Z 34.4805 42.0000 107 ¥ -0.0074 30.2056 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 1 t -4.5047 18.1169 41.3810 -Arial_Bold.ttf 100 > 28.0000 31.9026 2 h -5.6122 27.7857 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 3 a 4.7504 28.8333 32.1169 -Arial_Bold.ttf 100 > 28.0000 31.9026 4 n 4.4047 27.7857 31.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 5 P -5.6570 32.0844 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 6 o 4.4987 31.0065 32.1169 -Arial_Bold.ttf 100 > 28.0000 31.9026 7 e 4.3890 29.4113 32.1169 -Arial_Bold.ttf 100 > 28.0000 31.9026 8 : 5.7720 8.1385 30.6732 -Arial_Bold.ttf 100 > 28.0000 31.9026 9 r 4.6761 19.8615 31.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 10 l -5.7118 8.1385 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 11 i -5.4211 8.1385 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 12 1 -5.4437 18.2359 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 13 | -5.2606 5.8615 54.5563 -Arial_Bold.ttf 100 > 28.0000 31.9026 14 N -5.4797 33.3463 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 15 f -5.7729 20.6948 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 16 g 4.4137 29.5628 43.6580 -Arial_Bold.ttf 100 > 28.0000 31.9026 17 d -5.4630 29.5628 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 18 W -5.6323 54.7706 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 19 s 4.4261 28.3333 32.1169 -Arial_Bold.ttf 100 > 28.0000 31.9026 20 c 5.0503 27.5000 32.1169 -Arial_Bold.ttf 100 > 28.0000 31.9026 21 u 5.9746 27.7857 30.8874 -Arial_Bold.ttf 100 > 28.0000 31.9026 22 3 -5.1532 27.2857 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 23 ~ 10.5481 30.4589 10.8117 -Arial_Bold.ttf 100 > 28.0000 31.9026 24 # -5.3640 30.3874 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 25 O -6.5436 40.3420 43.4589 -Arial_Bold.ttf 100 > 28.0000 31.9026 26 ` -5.9839 12.7706 8.3203 -Arial_Bold.ttf 100 > 28.0000 31.9026 27 @ -5.6608 55.2706 56.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 28 F -5.4699 29.0152 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 29 S -6.2305 33.8615 43.4589 -Arial_Bold.ttf 100 > 28.0000 31.9026 30 p 4.7132 29.5628 43.4437 -Arial_Bold.ttf 100 > 28.0000 31.9026 31 “ -5.6479 22.4719 17.6883 -Arial_Bold.ttf 100 > 28.0000 31.9026 32 % -5.8987 44.9329 43.6580 -Arial_Bold.ttf 100 > 28.0000 31.9026 33 £ -5.6842 31.1883 42.4286 -Arial_Bold.ttf 100 > 28.0000 31.9026 34 . 28.5378 8.1385 8.1385 -Arial_Bold.ttf 100 > 28.0000 31.9026 35 2 -5.3556 27.2857 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 36 5 -5.0973 28.0000 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 37 m 4.9041 44.6104 31.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 38 V -5.5706 38.4935 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 39 6 -5.5070 27.2857 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 40 w 5.7615 45.5065 30.6732 -Arial_Bold.ttf 100 > 28.0000 31.9026 41 T -5.5282 33.2511 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 42 M -5.5006 39.5584 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 43 G -6.2234 39.1126 43.4589 -Arial_Bold.ttf 100 > 28.0000 31.9026 44 b -5.4661 29.5628 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 45 9 -5.4311 27.2857 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 46 ; 5.9048 8.8680 40.4372 -Arial_Bold.ttf 100 > 28.0000 31.9026 47 D -5.4380 35.0909 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 48 L -5.5525 29.9113 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 49 y 6.0034 31.6883 42.4286 -Arial_Bold.ttf 100 > 28.0000 31.9026 50 ‘ -5.3939 8.8680 17.6883 -Arial_Bold.ttf 100 > 28.0000 31.9026 51 \ -5.6277 17.6883 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 52 R -5.3342 37.0498 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 53 < -0.0833 28.0000 31.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 54 4 -5.4201 29.9589 41.7857 -Arial_Bold.ttf 100 > 28.0000 31.9026 55 8 -5.6232 27.2857 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 56 0 -5.7423 27.2857 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 57 A -5.0997 40.5887 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 58 E -5.5368 32.0844 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 59 B -5.4320 35.0909 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 60 v 5.6210 31.6883 30.6732 -Arial_Bold.ttf 100 > 28.0000 31.9026 61 k -5.6120 28.5152 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 62 J -5.6427 26.9524 42.7294 -Arial_Bold.ttf 100 > 28.0000 31.9026 63 U -5.2749 33.3463 42.7294 -Arial_Bold.ttf 100 > 28.0000 31.9026 64 j -5.6532 15.2294 53.7554 -Arial_Bold.ttf 100 > 28.0000 31.9026 65 ( -5.5961 14.0000 53.5411 -Arial_Bold.ttf 100 > 28.0000 31.9026 66 7 -5.0366 27.2857 41.7857 -Arial_Bold.ttf 100 > 28.0000 31.9026 67 § -5.7146 28.5152 54.7706 -Arial_Bold.ttf 100 > 28.0000 31.9026 68 $ -8.3913 27.7857 50.8680 -Arial_Bold.ttf 100 > 28.0000 31.9026 69 € -6.2008 31.6883 42.9437 -Arial_Bold.ttf 100 > 28.0000 31.9026 70 / -5.2047 17.6883 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 71 C -6.0956 36.6537 42.7294 -Arial_Bold.ttf 100 > 28.0000 31.9026 72 * -5.6896 19.7424 19.1320 -Arial_Bold.ttf 100 > 28.0000 31.9026 73 ” -5.3606 22.4719 17.6883 -Arial_Bold.ttf 100 > 28.0000 31.9026 74 ? -6.0404 30.4589 42.2143 -Arial_Bold.ttf 100 > 28.0000 31.9026 75 { -5.4880 19.6472 53.9697 -Arial_Bold.ttf 100 > 28.0000 31.9026 76 } -5.6842 19.6472 53.9697 -Arial_Bold.ttf 100 > 28.0000 31.9026 77 , 28.3628 8.8680 17.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 78 I -5.4699 8.1385 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 79 ° -5.8011 18.0844 18.0844 -Arial_Bold.ttf 100 > 28.0000 31.9026 80 K -5.6037 37.7641 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 81 H -5.8351 33.3463 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 82 q 4.4137 29.5628 43.4437 -Arial_Bold.ttf 100 > 28.0000 31.9026 83 & -5.6737 38.8117 42.4286 -Arial_Bold.ttf 100 > 28.0000 31.9026 84 ’ -5.1828 8.8680 17.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 85 [ -5.5868 15.2294 53.5411 -Arial_Bold.ttf 100 > 28.0000 31.9026 86 - 18.0485 15.7294 6.9091 -Arial_Bold.ttf 100 > 28.0000 31.9026 87 Y -5.4192 41.0563 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 88 Q -5.7991 41.7857 46.6472 -Arial_Bold.ttf 100 > 28.0000 31.9026 89 " -5.3654 21.5909 15.2294 -Arial_Bold.ttf 100 > 28.0000 31.9026 90 ! -5.1911 8.1385 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 91 x 5.9434 32.4177 30.6732 -Arial_Bold.ttf 100 > 28.0000 31.9026 92 ) -5.3297 14.0000 53.5411 -Arial_Bold.ttf 100 > 28.0000 31.9026 93 = 5.5313 29.2294 19.2835 -Arial_Bold.ttf 100 > 28.0000 31.9026 94 + 2.0073 28.8961 28.8961 -Arial_Bold.ttf 100 > 28.0000 31.9026 95 X -5.3654 38.9935 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 96 » 7.8012 26.9524 26.5563 -Arial_Bold.ttf 100 > 28.0000 31.9026 97 ' -5.7096 8.1385 15.2294 -Arial_Bold.ttf 100 > 28.0000 31.9026 98 ¢ -5.6927 28.7294 54.4372 -Arial_Bold.ttf 100 > 28.0000 31.9026 99 Z -5.4654 34.4805 42.0000 -Arial_Bold.ttf 100 > 28.0000 31.9026 100 > 0.0333 28.0000 31.9026 -Arial_Bold.ttf 100 > 28.0000 31.9026 101 ® -5.7904 43.2294 42.4286 -Arial_Bold.ttf 100 > 28.0000 31.9026 102 © -5.8130 43.9589 42.4286 -Arial_Bold.ttf 100 > 28.0000 31.9026 103 ] -5.3082 15.2294 53.5411 -Arial_Bold.ttf 100 > 28.0000 31.9026 104 é -5.9692 29.4113 42.8961 -Arial_Bold.ttf 100 > 28.0000 31.9026 105 z 5.9607 26.7706 30.6732 -Arial_Bold.ttf 100 > 28.0000 31.9026 106 _ 41.5855 33.4654 5.8615 -Arial_Bold.ttf 100 > 28.0000 31.9026 107 ¥ -5.1925 30.2056 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 1 t 1.1246 18.1169 41.3810 -Arial_Bold.ttf 101 ® 43.2294 42.4286 2 h -0.0085 27.7857 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 3 a 10.5450 28.8333 32.1169 -Arial_Bold.ttf 101 ® 43.2294 42.4286 4 n 10.5964 27.7857 31.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 5 P 0.2150 32.0844 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 6 o 10.4176 31.0065 32.1169 -Arial_Bold.ttf 101 ® 43.2294 42.4286 7 e 10.3355 29.4113 32.1169 -Arial_Bold.ttf 101 ® 43.2294 42.4286 8 : 11.5361 8.1385 30.6732 -Arial_Bold.ttf 101 ® 43.2294 42.4286 9 r 10.3988 19.8615 31.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 10 l 0.2226 8.1385 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 11 i 0.5280 8.1385 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 12 1 0.2500 18.2359 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 13 | 0.0071 5.8615 54.5563 -Arial_Bold.ttf 101 ® 43.2294 42.4286 14 N 0.0557 33.3463 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 15 f 0.2085 20.6948 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 16 g 10.0926 29.5628 43.6580 -Arial_Bold.ttf 101 ® 43.2294 42.4286 17 d 0.2845 29.5628 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 18 W 0.0276 54.7706 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 19 s 10.2543 28.3333 32.1169 -Arial_Bold.ttf 101 ® 43.2294 42.4286 20 c 10.4331 27.5000 32.1169 -Arial_Bold.ttf 101 ® 43.2294 42.4286 21 u 11.8108 27.7857 30.8874 -Arial_Bold.ttf 101 ® 43.2294 42.4286 22 3 0.0452 27.2857 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 23 ~ 16.4317 30.4589 10.8117 -Arial_Bold.ttf 101 ® 43.2294 42.4286 24 # 0.2774 30.3874 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 25 O -0.3949 40.3420 43.4589 -Arial_Bold.ttf 101 ® 43.2294 42.4286 26 ` 0.1988 12.7706 8.3203 -Arial_Bold.ttf 101 ® 43.2294 42.4286 27 @ 0.0681 55.2706 56.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 28 F 0.6373 29.0152 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 29 S -0.4006 33.8615 43.4589 -Arial_Bold.ttf 101 ® 43.2294 42.4286 30 p 10.5048 29.5628 43.4437 -Arial_Bold.ttf 101 ® 43.2294 42.4286 31 “ 0.2707 22.4719 17.6883 -Arial_Bold.ttf 101 ® 43.2294 42.4286 32 % -0.1417 44.9329 43.6580 -Arial_Bold.ttf 101 ® 43.2294 42.4286 33 £ 0.1119 31.1883 42.4286 -Arial_Bold.ttf 101 ® 43.2294 42.4286 34 . 34.2629 8.1385 8.1385 -Arial_Bold.ttf 101 ® 43.2294 42.4286 35 2 0.1286 27.2857 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 36 5 0.3766 28.0000 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 37 m 10.5891 44.6104 31.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 38 V 0.3545 38.4935 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 39 6 0.2955 27.2857 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 40 w 11.7223 45.5065 30.6732 -Arial_Bold.ttf 101 ® 43.2294 42.4286 41 T 0.2240 33.2511 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 42 M 0.2883 39.5584 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 43 G -0.7515 39.1126 43.4589 -Arial_Bold.ttf 101 ® 43.2294 42.4286 44 b 0.4676 29.5628 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 45 9 -0.0280 27.2857 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 46 ; 11.4618 8.8680 40.4372 -Arial_Bold.ttf 101 ® 43.2294 42.4286 47 D 0.5190 35.0909 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 48 L 0.3364 29.9113 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 49 y 11.7433 31.6883 42.4286 -Arial_Bold.ttf 101 ® 43.2294 42.4286 50 ‘ 0.1738 8.8680 17.6883 -Arial_Bold.ttf 101 ® 43.2294 42.4286 51 \ 0.2962 17.6883 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 52 R 0.2240 37.0498 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 53 < 5.6963 28.0000 31.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 54 4 0.5488 29.9589 41.7857 -Arial_Bold.ttf 101 ® 43.2294 42.4286 55 8 -0.0421 27.2857 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 56 0 0.3826 27.2857 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 57 A 0.3500 40.5887 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 58 E 0.2264 32.0844 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 59 B 0.0966 35.0909 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 60 v 11.8459 31.6883 30.6732 -Arial_Bold.ttf 101 ® 43.2294 42.4286 61 k 0.0024 28.5152 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 62 J 0.5690 26.9524 42.7294 -Arial_Bold.ttf 101 ® 43.2294 42.4286 63 U 0.3316 33.3463 42.7294 -Arial_Bold.ttf 101 ® 43.2294 42.4286 64 j 0.0415 15.2294 53.7554 -Arial_Bold.ttf 101 ® 43.2294 42.4286 65 ( 0.1436 14.0000 53.5411 -Arial_Bold.ttf 101 ® 43.2294 42.4286 66 7 0.0363 27.2857 41.7857 -Arial_Bold.ttf 101 ® 43.2294 42.4286 67 § 0.0662 28.5152 54.7706 -Arial_Bold.ttf 101 ® 43.2294 42.4286 68 $ -2.8177 27.7857 50.8680 -Arial_Bold.ttf 101 ® 43.2294 42.4286 69 € -0.3911 31.6883 42.9437 -Arial_Bold.ttf 101 ® 43.2294 42.4286 70 / 0.0831 17.6883 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 71 C -0.2931 36.6537 42.7294 -Arial_Bold.ttf 101 ® 43.2294 42.4286 72 * 0.1657 19.7424 19.1320 -Arial_Bold.ttf 101 ® 43.2294 42.4286 73 ” 0.2494 22.4719 17.6883 -Arial_Bold.ttf 101 ® 43.2294 42.4286 74 ? -0.2540 30.4589 42.2143 -Arial_Bold.ttf 101 ® 43.2294 42.4286 75 { 0.0645 19.6472 53.9697 -Arial_Bold.ttf 101 ® 43.2294 42.4286 76 } -0.3190 19.6472 53.9697 -Arial_Bold.ttf 101 ® 43.2294 42.4286 77 , 33.8996 8.8680 17.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 78 I 0.3000 8.1385 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 79 ° 0.1155 18.0844 18.0844 -Arial_Bold.ttf 101 ® 43.2294 42.4286 80 K 0.4385 37.7641 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 81 H 0.4957 33.3463 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 82 q 10.1805 29.5628 43.4437 -Arial_Bold.ttf 101 ® 43.2294 42.4286 83 & -0.1440 38.8117 42.4286 -Arial_Bold.ttf 101 ® 43.2294 42.4286 84 ’ 0.2357 8.8680 17.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 85 [ 0.2254 15.2294 53.5411 -Arial_Bold.ttf 101 ® 43.2294 42.4286 86 - 23.8724 15.7294 6.9091 -Arial_Bold.ttf 101 ® 43.2294 42.4286 87 Y 0.5788 41.0563 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 88 Q -0.2221 41.7857 46.6472 -Arial_Bold.ttf 101 ® 43.2294 42.4286 89 " -0.1925 21.5909 15.2294 -Arial_Bold.ttf 101 ® 43.2294 42.4286 90 ! 0.2386 8.1385 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 91 x 11.4592 32.4177 30.6732 -Arial_Bold.ttf 101 ® 43.2294 42.4286 92 ) 0.1357 14.0000 53.5411 -Arial_Bold.ttf 101 ® 43.2294 42.4286 93 = 11.4709 29.2294 19.2835 -Arial_Bold.ttf 101 ® 43.2294 42.4286 94 + 7.4331 28.8961 28.8961 -Arial_Bold.ttf 101 ® 43.2294 42.4286 95 X 0.0415 38.9935 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 96 » 13.8979 26.9524 26.5563 -Arial_Bold.ttf 101 ® 43.2294 42.4286 97 ' 0.2357 8.1385 15.2294 -Arial_Bold.ttf 101 ® 43.2294 42.4286 98 ¢ 0.0889 28.7294 54.4372 -Arial_Bold.ttf 101 ® 43.2294 42.4286 99 Z 0.0952 34.4805 42.0000 -Arial_Bold.ttf 101 ® 43.2294 42.4286 100 > 5.6624 28.0000 31.9026 -Arial_Bold.ttf 101 ® 43.2294 42.4286 101 ® 0.2295 43.2294 42.4286 -Arial_Bold.ttf 101 ® 43.2294 42.4286 102 © -0.2774 43.9589 42.4286 -Arial_Bold.ttf 101 ® 43.2294 42.4286 103 ] 0.5607 15.2294 53.5411 -Arial_Bold.ttf 101 ® 43.2294 42.4286 104 é -0.3228 29.4113 42.8961 -Arial_Bold.ttf 101 ® 43.2294 42.4286 105 z 11.7646 26.7706 30.6732 -Arial_Bold.ttf 101 ® 43.2294 42.4286 106 _ 47.6797 33.4654 5.8615 -Arial_Bold.ttf 101 ® 43.2294 42.4286 107 ¥ -0.0695 30.2056 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 1 t 1.1476 18.1169 41.3810 -Arial_Bold.ttf 102 © 43.9589 42.4286 2 h 0.1105 27.7857 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 3 a 10.3331 28.8333 32.1169 -Arial_Bold.ttf 102 © 43.9589 42.4286 4 n 10.1784 27.7857 31.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 5 P 0.1929 32.0844 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 6 o 10.4450 31.0065 32.1169 -Arial_Bold.ttf 102 © 43.9589 42.4286 7 e 10.1851 29.4113 32.1169 -Arial_Bold.ttf 102 © 43.9589 42.4286 8 : 11.2119 8.1385 30.6732 -Arial_Bold.ttf 102 © 43.9589 42.4286 9 r 10.0650 19.8615 31.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 10 l 0.2484 8.1385 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 11 i 0.1960 8.1385 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 12 1 -0.0623 18.2359 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 13 | 0.1948 5.8615 54.5563 -Arial_Bold.ttf 102 © 43.9589 42.4286 14 N 0.0279 33.3463 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 15 f 0.2502 20.6948 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 16 g 9.9563 29.5628 43.6580 -Arial_Bold.ttf 102 © 43.9589 42.4286 17 d 0.2728 29.5628 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 18 W 0.4093 54.7706 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 19 s 10.3139 28.3333 32.1169 -Arial_Bold.ttf 102 © 43.9589 42.4286 20 c 10.3824 27.5000 32.1169 -Arial_Bold.ttf 102 © 43.9589 42.4286 21 u 11.4300 27.7857 30.8874 -Arial_Bold.ttf 102 © 43.9589 42.4286 22 3 0.0700 27.2857 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 23 ~ 16.2998 30.4589 10.8117 -Arial_Bold.ttf 102 © 43.9589 42.4286 24 # 0.2545 30.3874 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 25 O -0.3411 40.3420 43.4589 -Arial_Bold.ttf 102 © 43.9589 42.4286 26 ` -0.0595 12.7706 8.3203 -Arial_Bold.ttf 102 © 43.9589 42.4286 27 @ 0.0746 55.2706 56.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 28 F 0.2361 29.0152 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 29 S -0.5290 33.8615 43.4589 -Arial_Bold.ttf 102 © 43.9589 42.4286 30 p 10.2117 29.5628 43.4437 -Arial_Bold.ttf 102 © 43.9589 42.4286 31 “ 0.1429 22.4719 17.6883 -Arial_Bold.ttf 102 © 43.9589 42.4286 32 % -0.1909 44.9329 43.6580 -Arial_Bold.ttf 102 © 43.9589 42.4286 33 £ -0.2022 31.1883 42.4286 -Arial_Bold.ttf 102 © 43.9589 42.4286 34 . 34.3843 8.1385 8.1385 -Arial_Bold.ttf 102 © 43.9589 42.4286 35 2 0.2962 27.2857 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 36 5 0.7288 28.0000 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 37 m 10.5838 44.6104 31.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 38 V -0.0722 38.4935 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 39 6 0.1214 27.2857 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 40 w 11.7661 45.5065 30.6732 -Arial_Bold.ttf 102 © 43.9589 42.4286 41 T -0.0516 33.2511 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 42 M 0.3864 39.5584 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 43 G -0.5782 39.1126 43.4589 -Arial_Bold.ttf 102 © 43.9589 42.4286 44 b -0.2842 29.5628 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 45 9 0.1205 27.2857 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 46 ; 11.8116 8.8680 40.4372 -Arial_Bold.ttf 102 © 43.9589 42.4286 47 D 0.2673 35.0909 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 48 L 0.1286 29.9113 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 49 y 11.6016 31.6883 42.4286 -Arial_Bold.ttf 102 © 43.9589 42.4286 50 ‘ 0.2484 8.8680 17.6883 -Arial_Bold.ttf 102 © 43.9589 42.4286 51 \ 0.1597 17.6883 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 52 R 0.6242 37.0498 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 53 < 5.6523 28.0000 31.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 54 4 0.4740 29.9589 41.7857 -Arial_Bold.ttf 102 © 43.9589 42.4286 55 8 0.0369 27.2857 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 56 0 0.3000 27.2857 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 57 A 0.2226 40.5887 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 58 E 0.1583 32.0844 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 59 B 0.5464 35.0909 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 60 v 11.9792 31.6883 30.6732 -Arial_Bold.ttf 102 © 43.9589 42.4286 61 k -0.0040 28.5152 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 62 J 0.2917 26.9524 42.7294 -Arial_Bold.ttf 102 © 43.9589 42.4286 63 U 0.3345 33.3463 42.7294 -Arial_Bold.ttf 102 © 43.9589 42.4286 64 j 0.2286 15.2294 53.7554 -Arial_Bold.ttf 102 © 43.9589 42.4286 65 ( 0.6548 14.0000 53.5411 -Arial_Bold.ttf 102 © 43.9589 42.4286 66 7 0.2057 27.2857 41.7857 -Arial_Bold.ttf 102 © 43.9589 42.4286 67 § 0.0000 28.5152 54.7706 -Arial_Bold.ttf 102 © 43.9589 42.4286 68 $ -2.8839 27.7857 50.8680 -Arial_Bold.ttf 102 © 43.9589 42.4286 69 € -0.2923 31.6883 42.9437 -Arial_Bold.ttf 102 © 43.9589 42.4286 70 / -0.0502 17.6883 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 71 C -0.4378 36.6537 42.7294 -Arial_Bold.ttf 102 © 43.9589 42.4286 72 * -0.0190 19.7424 19.1320 -Arial_Bold.ttf 102 © 43.9589 42.4286 73 ” 0.3014 22.4719 17.6883 -Arial_Bold.ttf 102 © 43.9589 42.4286 74 ? -0.1645 30.4589 42.2143 -Arial_Bold.ttf 102 © 43.9589 42.4286 75 { 0.1252 19.6472 53.9697 -Arial_Bold.ttf 102 © 43.9589 42.4286 76 } 0.2183 19.6472 53.9697 -Arial_Bold.ttf 102 © 43.9589 42.4286 77 , 33.7255 8.8680 17.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 78 I -0.0919 8.1385 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 79 ° 0.1538 18.0844 18.0844 -Arial_Bold.ttf 102 © 43.9589 42.4286 80 K 0.2143 37.7641 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 81 H 0.1012 33.3463 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 82 q 10.2519 29.5628 43.4437 -Arial_Bold.ttf 102 © 43.9589 42.4286 83 & 0.3250 38.8117 42.4286 -Arial_Bold.ttf 102 © 43.9589 42.4286 84 ’ 0.2234 8.8680 17.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 85 [ 0.2755 15.2294 53.5411 -Arial_Bold.ttf 102 © 43.9589 42.4286 86 - 23.6813 15.7294 6.9091 -Arial_Bold.ttf 102 © 43.9589 42.4286 87 Y 0.0810 41.0563 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 88 Q -0.5592 41.7857 46.6472 -Arial_Bold.ttf 102 © 43.9589 42.4286 89 " 0.5675 21.5909 15.2294 -Arial_Bold.ttf 102 © 43.9589 42.4286 90 ! 0.1474 8.1385 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 91 x 11.5626 32.4177 30.6732 -Arial_Bold.ttf 102 © 43.9589 42.4286 92 ) 0.3250 14.0000 53.5411 -Arial_Bold.ttf 102 © 43.9589 42.4286 93 = 11.1357 29.2294 19.2835 -Arial_Bold.ttf 102 © 43.9589 42.4286 94 + 7.2656 28.8961 28.8961 -Arial_Bold.ttf 102 © 43.9589 42.4286 95 X 0.1133 38.9935 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 96 » 13.8077 26.9524 26.5563 -Arial_Bold.ttf 102 © 43.9589 42.4286 97 ' 0.1310 8.1385 15.2294 -Arial_Bold.ttf 102 © 43.9589 42.4286 98 ¢ 0.1331 28.7294 54.4372 -Arial_Bold.ttf 102 © 43.9589 42.4286 99 Z 0.1940 34.4805 42.0000 -Arial_Bold.ttf 102 © 43.9589 42.4286 100 > 5.8356 28.0000 31.9026 -Arial_Bold.ttf 102 © 43.9589 42.4286 101 ® -0.0000 43.2294 42.4286 -Arial_Bold.ttf 102 © 43.9589 42.4286 102 © -0.1673 43.9589 42.4286 -Arial_Bold.ttf 102 © 43.9589 42.4286 103 ] 0.1038 15.2294 53.5411 -Arial_Bold.ttf 102 © 43.9589 42.4286 104 é -0.8463 29.4113 42.8961 -Arial_Bold.ttf 102 © 43.9589 42.4286 105 z 11.2585 26.7706 30.6732 -Arial_Bold.ttf 102 © 43.9589 42.4286 106 _ 47.4054 33.4654 5.8615 -Arial_Bold.ttf 102 © 43.9589 42.4286 107 ¥ 0.2714 30.2056 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 1 t 0.9060 18.1169 41.3810 -Arial_Bold.ttf 103 ] 15.2294 53.5411 2 h -0.2405 27.7857 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 3 a 10.0617 28.8333 32.1169 -Arial_Bold.ttf 103 ] 15.2294 53.5411 4 n 10.1891 27.7857 31.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 5 P 0.0008 32.0844 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 6 o 9.8115 31.0065 32.1169 -Arial_Bold.ttf 103 ] 15.2294 53.5411 7 e 10.1831 29.4113 32.1169 -Arial_Bold.ttf 103 ] 15.2294 53.5411 8 : 11.2709 8.1385 30.6732 -Arial_Bold.ttf 103 ] 15.2294 53.5411 9 r 10.1436 19.8615 31.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 10 l -0.0395 8.1385 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 11 i -0.0917 8.1385 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 12 1 -0.0955 18.2359 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 13 | 0.1955 5.8615 54.5563 -Arial_Bold.ttf 103 ] 15.2294 53.5411 14 N -0.0702 33.3463 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 15 f -0.3476 20.6948 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 16 g 9.9069 29.5628 43.6580 -Arial_Bold.ttf 103 ] 15.2294 53.5411 17 d -0.0500 29.5628 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 18 W 0.0000 54.7706 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 19 s 9.8208 28.3333 32.1169 -Arial_Bold.ttf 103 ] 15.2294 53.5411 20 c 10.0617 27.5000 32.1169 -Arial_Bold.ttf 103 ] 15.2294 53.5411 21 u 11.2352 27.7857 30.8874 -Arial_Bold.ttf 103 ] 15.2294 53.5411 22 3 0.1961 27.2857 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 23 ~ 15.9648 30.4589 10.8117 -Arial_Bold.ttf 103 ] 15.2294 53.5411 24 # 0.2571 30.3874 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 25 O -0.6568 40.3420 43.4589 -Arial_Bold.ttf 103 ] 15.2294 53.5411 26 ` -0.1833 12.7706 8.3203 -Arial_Bold.ttf 103 ] 15.2294 53.5411 27 @ -0.1778 55.2706 56.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 28 F 0.0000 29.0152 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 29 S -0.4378 33.8615 43.4589 -Arial_Bold.ttf 103 ] 15.2294 53.5411 30 p 10.1012 29.5628 43.4437 -Arial_Bold.ttf 103 ] 15.2294 53.5411 31 “ -0.0576 22.4719 17.6883 -Arial_Bold.ttf 103 ] 15.2294 53.5411 32 % 0.1074 44.9329 43.6580 -Arial_Bold.ttf 103 ] 15.2294 53.5411 33 £ -0.5683 31.1883 42.4286 -Arial_Bold.ttf 103 ] 15.2294 53.5411 34 . 33.8837 8.1385 8.1385 -Arial_Bold.ttf 103 ] 15.2294 53.5411 35 2 0.1131 27.2857 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 36 5 0.3371 28.0000 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 37 m 10.1057 44.6104 31.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 38 V -0.1483 38.4935 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 39 6 -0.0593 27.2857 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 40 w 11.2768 45.5065 30.6732 -Arial_Bold.ttf 103 ] 15.2294 53.5411 41 T 0.2288 33.2511 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 42 M -0.0357 39.5584 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 43 G -0.6652 39.1126 43.4589 -Arial_Bold.ttf 103 ] 15.2294 53.5411 44 b 0.2228 29.5628 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 45 9 0.1714 27.2857 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 46 ; 11.2231 8.8680 40.4372 -Arial_Bold.ttf 103 ] 15.2294 53.5411 47 D 0.3623 35.0909 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 48 L 0.0714 29.9113 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 49 y 11.3640 31.6883 42.4286 -Arial_Bold.ttf 103 ] 15.2294 53.5411 50 ‘ -0.0083 8.8680 17.6883 -Arial_Bold.ttf 103 ] 15.2294 53.5411 51 \ 0.1405 17.6883 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 52 R -0.1676 37.0498 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 53 < 5.7618 28.0000 31.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 54 4 0.1429 29.9589 41.7857 -Arial_Bold.ttf 103 ] 15.2294 53.5411 55 8 -0.0909 27.2857 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 56 0 0.1871 27.2857 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 57 A 0.2107 40.5887 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 58 E 0.0000 32.0844 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 59 B 0.0760 35.0909 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 60 v 11.2047 31.6883 30.6732 -Arial_Bold.ttf 103 ] 15.2294 53.5411 61 k 0.4516 28.5152 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 62 J 0.1274 26.9524 42.7294 -Arial_Bold.ttf 103 ] 15.2294 53.5411 63 U 0.1833 33.3463 42.7294 -Arial_Bold.ttf 103 ] 15.2294 53.5411 64 j 0.1909 15.2294 53.7554 -Arial_Bold.ttf 103 ] 15.2294 53.5411 65 ( -0.0917 14.0000 53.5411 -Arial_Bold.ttf 103 ] 15.2294 53.5411 66 7 0.2688 27.2857 41.7857 -Arial_Bold.ttf 103 ] 15.2294 53.5411 67 § -0.4742 28.5152 54.7706 -Arial_Bold.ttf 103 ] 15.2294 53.5411 68 $ -3.0494 27.7857 50.8680 -Arial_Bold.ttf 103 ] 15.2294 53.5411 69 € -0.8985 31.6883 42.9437 -Arial_Bold.ttf 103 ] 15.2294 53.5411 70 / 0.0857 17.6883 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 71 C -0.8530 36.6537 42.7294 -Arial_Bold.ttf 103 ] 15.2294 53.5411 72 * -0.3085 19.7424 19.1320 -Arial_Bold.ttf 103 ] 15.2294 53.5411 73 ” -0.2190 22.4719 17.6883 -Arial_Bold.ttf 103 ] 15.2294 53.5411 74 ? -0.3714 30.4589 42.2143 -Arial_Bold.ttf 103 ] 15.2294 53.5411 75 { 0.0693 19.6472 53.9697 -Arial_Bold.ttf 103 ] 15.2294 53.5411 76 } -0.0377 19.6472 53.9697 -Arial_Bold.ttf 103 ] 15.2294 53.5411 77 , 33.8115 8.8680 17.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 78 I 0.0514 8.1385 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 79 ° -0.2286 18.0844 18.0844 -Arial_Bold.ttf 103 ] 15.2294 53.5411 80 K 0.0514 37.7641 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 81 H -0.1819 33.3463 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 82 q 10.3998 29.5628 43.4437 -Arial_Bold.ttf 103 ] 15.2294 53.5411 83 & -0.2538 38.8117 42.4286 -Arial_Bold.ttf 103 ] 15.2294 53.5411 84 ’ 0.0917 8.8680 17.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 85 [ -0.0371 15.2294 53.5411 -Arial_Bold.ttf 103 ] 15.2294 53.5411 86 - 24.0415 15.7294 6.9091 -Arial_Bold.ttf 103 ] 15.2294 53.5411 87 Y -0.0455 41.0563 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 88 Q -0.8068 41.7857 46.6472 -Arial_Bold.ttf 103 ] 15.2294 53.5411 89 " 0.2548 21.5909 15.2294 -Arial_Bold.ttf 103 ] 15.2294 53.5411 90 ! 0.0996 8.1385 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 91 x 11.0518 32.4177 30.6732 -Arial_Bold.ttf 103 ] 15.2294 53.5411 92 ) 0.1288 14.0000 53.5411 -Arial_Bold.ttf 103 ] 15.2294 53.5411 93 = 11.3671 29.2294 19.2835 -Arial_Bold.ttf 103 ] 15.2294 53.5411 94 + 7.4115 28.8961 28.8961 -Arial_Bold.ttf 103 ] 15.2294 53.5411 95 X 0.1288 38.9935 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 96 » 13.4206 26.9524 26.5563 -Arial_Bold.ttf 103 ] 15.2294 53.5411 97 ' -0.1014 8.1385 15.2294 -Arial_Bold.ttf 103 ] 15.2294 53.5411 98 ¢ -0.0105 28.7294 54.4372 -Arial_Bold.ttf 103 ] 15.2294 53.5411 99 Z 0.1488 34.4805 42.0000 -Arial_Bold.ttf 103 ] 15.2294 53.5411 100 > 5.4544 28.0000 31.9026 -Arial_Bold.ttf 103 ] 15.2294 53.5411 101 ® -0.4014 43.2294 42.4286 -Arial_Bold.ttf 103 ] 15.2294 53.5411 102 © 0.0405 43.9589 42.4286 -Arial_Bold.ttf 103 ] 15.2294 53.5411 103 ] 0.0143 15.2294 53.5411 -Arial_Bold.ttf 103 ] 15.2294 53.5411 104 é -0.8735 29.4113 42.8961 -Arial_Bold.ttf 103 ] 15.2294 53.5411 105 z 11.3373 26.7706 30.6732 -Arial_Bold.ttf 103 ] 15.2294 53.5411 106 _ 47.6823 33.4654 5.8615 -Arial_Bold.ttf 103 ] 15.2294 53.5411 107 ¥ -0.0462 30.2056 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 1 t 1.4437 18.1169 41.3810 -Arial_Bold.ttf 104 é 29.4113 42.8961 2 h 0.1780 27.7857 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 3 a 10.6740 28.8333 32.1169 -Arial_Bold.ttf 104 é 29.4113 42.8961 4 n 10.7018 27.7857 31.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 5 P 0.5604 32.0844 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 6 o 10.5550 31.0065 32.1169 -Arial_Bold.ttf 104 é 29.4113 42.8961 7 e 10.7233 29.4113 32.1169 -Arial_Bold.ttf 104 é 29.4113 42.8961 8 : 11.8463 8.1385 30.6732 -Arial_Bold.ttf 104 é 29.4113 42.8961 9 r 11.2492 19.8615 31.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 10 l 0.4544 8.1385 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 11 i 0.5955 8.1385 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 12 1 0.8820 18.2359 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 13 | 0.5661 5.8615 54.5563 -Arial_Bold.ttf 104 é 29.4113 42.8961 14 N 0.7318 33.3463 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 15 f 0.4584 20.6948 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 16 g 10.6102 29.5628 43.6580 -Arial_Bold.ttf 104 é 29.4113 42.8961 17 d 0.7156 29.5628 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 18 W 0.6909 54.7706 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 19 s 10.5028 28.3333 32.1169 -Arial_Bold.ttf 104 é 29.4113 42.8961 20 c 10.6876 27.5000 32.1169 -Arial_Bold.ttf 104 é 29.4113 42.8961 21 u 11.8098 27.7857 30.8874 -Arial_Bold.ttf 104 é 29.4113 42.8961 22 3 1.1851 27.2857 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 23 ~ 16.5633 30.4589 10.8117 -Arial_Bold.ttf 104 é 29.4113 42.8961 24 # 0.5187 30.3874 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 25 O -0.3343 40.3420 43.4589 -Arial_Bold.ttf 104 é 29.4113 42.8961 26 ` 0.7021 12.7706 8.3203 -Arial_Bold.ttf 104 é 29.4113 42.8961 27 @ 0.4449 55.2706 56.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 28 F 0.8084 29.0152 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 29 S -0.2069 33.8615 43.4589 -Arial_Bold.ttf 104 é 29.4113 42.8961 30 p 10.6233 29.5628 43.4437 -Arial_Bold.ttf 104 é 29.4113 42.8961 31 “ 0.7923 22.4719 17.6883 -Arial_Bold.ttf 104 é 29.4113 42.8961 32 % 0.4735 44.9329 43.6580 -Arial_Bold.ttf 104 é 29.4113 42.8961 33 £ 0.4044 31.1883 42.4286 -Arial_Bold.ttf 104 é 29.4113 42.8961 34 . 34.4332 8.1385 8.1385 -Arial_Bold.ttf 104 é 29.4113 42.8961 35 2 0.5818 27.2857 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 36 5 0.9937 28.0000 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 37 m 10.8149 44.6104 31.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 38 V 0.5030 38.4935 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 39 6 0.5635 27.2857 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 40 w 11.9035 45.5065 30.6732 -Arial_Bold.ttf 104 é 29.4113 42.8961 41 T 0.8761 33.2511 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 42 M 0.2497 39.5584 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 43 G 0.1440 39.1126 43.4589 -Arial_Bold.ttf 104 é 29.4113 42.8961 44 b 0.7592 29.5628 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 45 9 0.2497 27.2857 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 46 ; 11.8896 8.8680 40.4372 -Arial_Bold.ttf 104 é 29.4113 42.8961 47 D 0.9106 35.0909 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 48 L 0.6759 29.9113 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 49 y 12.0860 31.6883 42.4286 -Arial_Bold.ttf 104 é 29.4113 42.8961 50 ‘ 0.6461 8.8680 17.6883 -Arial_Bold.ttf 104 é 29.4113 42.8961 51 \ 0.8235 17.6883 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 52 R 0.3316 37.0498 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 53 < 5.9503 28.0000 31.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 54 4 0.8285 29.9589 41.7857 -Arial_Bold.ttf 104 é 29.4113 42.8961 55 8 0.4316 27.2857 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 56 0 0.7995 27.2857 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 57 A 0.6273 40.5887 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 58 E 0.7092 32.0844 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 59 B 1.1297 35.0909 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 60 v 12.0003 31.6883 30.6732 -Arial_Bold.ttf 104 é 29.4113 42.8961 61 k 0.7449 28.5152 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 62 J 0.4830 26.9524 42.7294 -Arial_Bold.ttf 104 é 29.4113 42.8961 63 U 0.6735 33.3463 42.7294 -Arial_Bold.ttf 104 é 29.4113 42.8961 64 j 0.6953 15.2294 53.7554 -Arial_Bold.ttf 104 é 29.4113 42.8961 65 ( 1.0797 14.0000 53.5411 -Arial_Bold.ttf 104 é 29.4113 42.8961 66 7 0.9416 27.2857 41.7857 -Arial_Bold.ttf 104 é 29.4113 42.8961 67 § 0.4985 28.5152 54.7706 -Arial_Bold.ttf 104 é 29.4113 42.8961 68 $ -2.2435 27.7857 50.8680 -Arial_Bold.ttf 104 é 29.4113 42.8961 69 € 0.2278 31.6883 42.9437 -Arial_Bold.ttf 104 é 29.4113 42.8961 70 / 0.8830 17.6883 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 71 C -0.2183 36.6537 42.7294 -Arial_Bold.ttf 104 é 29.4113 42.8961 72 * 0.9035 19.7424 19.1320 -Arial_Bold.ttf 104 é 29.4113 42.8961 73 ” 0.5082 22.4719 17.6883 -Arial_Bold.ttf 104 é 29.4113 42.8961 74 ? 0.5311 30.4589 42.2143 -Arial_Bold.ttf 104 é 29.4113 42.8961 75 { 0.4794 19.6472 53.9697 -Arial_Bold.ttf 104 é 29.4113 42.8961 76 } 0.4792 19.6472 53.9697 -Arial_Bold.ttf 104 é 29.4113 42.8961 77 , 34.6939 8.8680 17.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 78 I 0.7773 8.1385 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 79 ° 0.5532 18.0844 18.0844 -Arial_Bold.ttf 104 é 29.4113 42.8961 80 K 0.5544 37.7641 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 81 H 0.5856 33.3463 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 82 q 10.6338 29.5628 43.4437 -Arial_Bold.ttf 104 é 29.4113 42.8961 83 & 0.3123 38.8117 42.4286 -Arial_Bold.ttf 104 é 29.4113 42.8961 84 ’ 0.5402 8.8680 17.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 85 [ 0.7818 15.2294 53.5411 -Arial_Bold.ttf 104 é 29.4113 42.8961 86 - 24.6004 15.7294 6.9091 -Arial_Bold.ttf 104 é 29.4113 42.8961 87 Y 0.5818 41.0563 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 88 Q -0.2524 41.7857 46.6472 -Arial_Bold.ttf 104 é 29.4113 42.8961 89 " 0.4030 21.5909 15.2294 -Arial_Bold.ttf 104 é 29.4113 42.8961 90 ! 0.6461 8.1385 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 91 x 11.9646 32.4177 30.6732 -Arial_Bold.ttf 104 é 29.4113 42.8961 92 ) 0.6021 14.0000 53.5411 -Arial_Bold.ttf 104 é 29.4113 42.8961 93 = 11.9035 29.2294 19.2835 -Arial_Bold.ttf 104 é 29.4113 42.8961 94 + 7.7552 28.8961 28.8961 -Arial_Bold.ttf 104 é 29.4113 42.8961 95 X 0.7116 38.9935 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 96 » 14.3850 26.9524 26.5563 -Arial_Bold.ttf 104 é 29.4113 42.8961 97 ' 0.5818 8.1385 15.2294 -Arial_Bold.ttf 104 é 29.4113 42.8961 98 ¢ 0.6787 28.7294 54.4372 -Arial_Bold.ttf 104 é 29.4113 42.8961 99 Z 0.8584 34.4805 42.0000 -Arial_Bold.ttf 104 é 29.4113 42.8961 100 > 6.1639 28.0000 31.9026 -Arial_Bold.ttf 104 é 29.4113 42.8961 101 ® 0.4995 43.2294 42.4286 -Arial_Bold.ttf 104 é 29.4113 42.8961 102 © 0.5092 43.9589 42.4286 -Arial_Bold.ttf 104 é 29.4113 42.8961 103 ] 0.4407 15.2294 53.5411 -Arial_Bold.ttf 104 é 29.4113 42.8961 104 é -0.2310 29.4113 42.8961 -Arial_Bold.ttf 104 é 29.4113 42.8961 105 z 12.1511 26.7706 30.6732 -Arial_Bold.ttf 104 é 29.4113 42.8961 106 _ 48.1889 33.4654 5.8615 -Arial_Bold.ttf 104 é 29.4113 42.8961 107 ¥ 0.4556 30.2056 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 1 t -10.5578 18.1169 41.3810 -Arial_Bold.ttf 105 z 26.7706 30.6732 2 h -11.6199 27.7857 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 3 a -1.4249 28.8333 32.1169 -Arial_Bold.ttf 105 z 26.7706 30.6732 4 n -1.2430 27.7857 31.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 5 P -11.3880 32.0844 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 6 o -1.2430 31.0065 32.1169 -Arial_Bold.ttf 105 z 26.7706 30.6732 7 e -1.3235 29.4113 32.1169 -Arial_Bold.ttf 105 z 26.7706 30.6732 8 : 0.2109 8.1385 30.6732 -Arial_Bold.ttf 105 z 26.7706 30.6732 9 r -1.3485 19.8615 31.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 10 l -11.2554 8.1385 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 11 i -11.1397 8.1385 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 12 1 -11.0266 18.2359 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 13 | -11.4892 5.8615 54.5563 -Arial_Bold.ttf 105 z 26.7706 30.6732 14 N -11.4126 33.3463 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 15 f -11.2566 20.6948 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 16 g -1.2203 29.5628 43.6580 -Arial_Bold.ttf 105 z 26.7706 30.6732 17 d -10.9714 29.5628 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 18 W -11.4602 54.7706 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 19 s -1.0431 28.3333 32.1169 -Arial_Bold.ttf 105 z 26.7706 30.6732 20 c -1.2354 27.5000 32.1169 -Arial_Bold.ttf 105 z 26.7706 30.6732 21 u 0.1917 27.7857 30.8874 -Arial_Bold.ttf 105 z 26.7706 30.6732 22 3 -11.4685 27.2857 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 23 ~ 4.6320 30.4589 10.8117 -Arial_Bold.ttf 105 z 26.7706 30.6732 24 # -11.6635 30.3874 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 25 O -12.0660 40.3420 43.4589 -Arial_Bold.ttf 105 z 26.7706 30.6732 26 ` -11.2352 12.7706 8.3203 -Arial_Bold.ttf 105 z 26.7706 30.6732 27 @ -11.5314 55.2706 56.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 28 F -11.7114 29.0152 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 29 S -12.3208 33.8615 43.4589 -Arial_Bold.ttf 105 z 26.7706 30.6732 30 p -1.5140 29.5628 43.4437 -Arial_Bold.ttf 105 z 26.7706 30.6732 31 “ -11.5094 22.4719 17.6883 -Arial_Bold.ttf 105 z 26.7706 30.6732 32 % -11.6971 44.9329 43.6580 -Arial_Bold.ttf 105 z 26.7706 30.6732 33 £ -11.7602 31.1883 42.4286 -Arial_Bold.ttf 105 z 26.7706 30.6732 34 . 22.7334 8.1385 8.1385 -Arial_Bold.ttf 105 z 26.7706 30.6732 35 2 -11.3378 27.2857 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 36 5 -10.8338 28.0000 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 37 m -1.3523 44.6104 31.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 38 V -11.6876 38.4935 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 39 6 -11.6854 27.2857 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 40 w -0.1536 45.5065 30.6732 -Arial_Bold.ttf 105 z 26.7706 30.6732 41 T -11.3497 33.2511 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 42 M -11.4737 39.5584 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 43 G -12.1920 39.1126 43.4589 -Arial_Bold.ttf 105 z 26.7706 30.6732 44 b -11.1495 29.5628 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 45 9 -11.3542 27.2857 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 46 ; -0.0165 8.8680 40.4372 -Arial_Bold.ttf 105 z 26.7706 30.6732 47 D -11.1675 35.0909 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 48 L -11.3328 29.9113 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 49 y 0.1774 31.6883 42.4286 -Arial_Bold.ttf 105 z 26.7706 30.6732 50 ‘ -11.5602 8.8680 17.6883 -Arial_Bold.ttf 105 z 26.7706 30.6732 51 \ -11.4459 17.6883 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 52 R -11.2292 37.0498 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 53 < -6.0881 28.0000 31.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 54 4 -10.9352 29.9589 41.7857 -Arial_Bold.ttf 105 z 26.7706 30.6732 55 8 -11.4354 27.2857 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 56 0 -11.1995 27.2857 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 57 A -11.4685 40.5887 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 58 E -11.3602 32.0844 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 59 B -11.3768 35.0909 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 60 v 0.1248 31.6883 30.6732 -Arial_Bold.ttf 105 z 26.7706 30.6732 61 k -11.5756 28.5152 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 62 J -11.5906 26.9524 42.7294 -Arial_Bold.ttf 105 z 26.7706 30.6732 63 U -11.3471 33.3463 42.7294 -Arial_Bold.ttf 105 z 26.7706 30.6732 64 j -11.1383 15.2294 53.7554 -Arial_Bold.ttf 105 z 26.7706 30.6732 65 ( -11.2495 14.0000 53.5411 -Arial_Bold.ttf 105 z 26.7706 30.6732 66 7 -11.1483 27.2857 41.7857 -Arial_Bold.ttf 105 z 26.7706 30.6732 67 § -11.6118 28.5152 54.7706 -Arial_Bold.ttf 105 z 26.7706 30.6732 68 $ -13.9988 27.7857 50.8680 -Arial_Bold.ttf 105 z 26.7706 30.6732 69 € -12.0563 31.6883 42.9437 -Arial_Bold.ttf 105 z 26.7706 30.6732 70 / -11.0578 17.6883 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 71 C -11.9789 36.6537 42.7294 -Arial_Bold.ttf 105 z 26.7706 30.6732 72 * -11.4614 19.7424 19.1320 -Arial_Bold.ttf 105 z 26.7706 30.6732 73 ” -11.4471 22.4719 17.6883 -Arial_Bold.ttf 105 z 26.7706 30.6732 74 ? -11.4137 30.4589 42.2143 -Arial_Bold.ttf 105 z 26.7706 30.6732 75 { -11.6030 19.6472 53.9697 -Arial_Bold.ttf 105 z 26.7706 30.6732 76 } -11.4554 19.6472 53.9697 -Arial_Bold.ttf 105 z 26.7706 30.6732 77 , 22.8939 8.8680 17.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 78 I -11.1137 8.1385 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 79 ° -11.7437 18.0844 18.0844 -Arial_Bold.ttf 105 z 26.7706 30.6732 80 K -11.1183 37.7641 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 81 H -11.3126 33.3463 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 82 q -1.3628 29.5628 43.4437 -Arial_Bold.ttf 105 z 26.7706 30.6732 83 & -11.7009 38.8117 42.4286 -Arial_Bold.ttf 105 z 26.7706 30.6732 84 ’ -11.0450 8.8680 17.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 85 [ -11.4983 15.2294 53.5411 -Arial_Bold.ttf 105 z 26.7706 30.6732 86 - 12.3082 15.7294 6.9091 -Arial_Bold.ttf 105 z 26.7706 30.6732 87 Y -11.3411 41.0563 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 88 Q -11.9063 41.7857 46.6472 -Arial_Bold.ttf 105 z 26.7706 30.6732 89 " -11.2352 21.5909 15.2294 -Arial_Bold.ttf 105 z 26.7706 30.6732 90 ! -11.3126 8.1385 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 91 x -0.2409 32.4177 30.6732 -Arial_Bold.ttf 105 z 26.7706 30.6732 92 ) -11.3626 14.0000 53.5411 -Arial_Bold.ttf 105 z 26.7706 30.6732 93 = -0.1000 29.2294 19.2835 -Arial_Bold.ttf 105 z 26.7706 30.6732 94 + -3.9979 28.8961 28.8961 -Arial_Bold.ttf 105 z 26.7706 30.6732 95 X -11.4102 38.9935 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 96 » 1.8852 26.9524 26.5563 -Arial_Bold.ttf 105 z 26.7706 30.6732 97 ' -11.4437 8.1385 15.2294 -Arial_Bold.ttf 105 z 26.7706 30.6732 98 ¢ -11.3899 28.7294 54.4372 -Arial_Bold.ttf 105 z 26.7706 30.6732 99 Z -11.1754 34.4805 42.0000 -Arial_Bold.ttf 105 z 26.7706 30.6732 100 > -5.7491 28.0000 31.9026 -Arial_Bold.ttf 105 z 26.7706 30.6732 101 ® -11.3911 43.2294 42.4286 -Arial_Bold.ttf 105 z 26.7706 30.6732 102 © -11.4814 43.9589 42.4286 -Arial_Bold.ttf 105 z 26.7706 30.6732 103 ] -11.2427 15.2294 53.5411 -Arial_Bold.ttf 105 z 26.7706 30.6732 104 é -12.1184 29.4113 42.8961 -Arial_Bold.ttf 105 z 26.7706 30.6732 105 z 0.0569 26.7706 30.6732 -Arial_Bold.ttf 105 z 26.7706 30.6732 106 _ 36.5304 33.4654 5.8615 -Arial_Bold.ttf 105 z 26.7706 30.6732 107 ¥ -11.3268 30.2056 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 1 t -46.6652 18.1169 41.3810 -Arial_Bold.ttf 106 _ 33.4654 5.8615 2 h -47.6420 27.7857 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 3 a -37.8436 28.8333 32.1169 -Arial_Bold.ttf 106 _ 33.4654 5.8615 4 n -37.7196 27.7857 31.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 5 P -47.3608 32.0844 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 6 o -37.4458 31.0065 32.1169 -Arial_Bold.ttf 106 _ 33.4654 5.8615 7 e -37.5408 29.4113 32.1169 -Arial_Bold.ttf 106 _ 33.4654 5.8615 8 : -35.9754 8.1385 30.6732 -Arial_Bold.ttf 106 _ 33.4654 5.8615 9 r -37.1177 19.8615 31.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 10 l -47.7017 8.1385 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 11 i -47.3009 8.1385 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 12 1 -47.8527 18.2359 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 13 | -47.6218 5.8615 54.5563 -Arial_Bold.ttf 106 _ 33.4654 5.8615 14 N -46.9735 33.3463 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 15 f -47.6023 20.6948 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 16 g -37.6363 29.5628 43.6580 -Arial_Bold.ttf 106 _ 33.4654 5.8615 17 d -47.6570 29.5628 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 18 W -47.3677 54.7706 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 19 s -37.3672 28.3333 32.1169 -Arial_Bold.ttf 106 _ 33.4654 5.8615 20 c -37.2672 27.5000 32.1169 -Arial_Bold.ttf 106 _ 33.4654 5.8615 21 u -36.3226 27.7857 30.8874 -Arial_Bold.ttf 106 _ 33.4654 5.8615 22 3 -47.2768 27.2857 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 23 ~ -31.1160 30.4589 10.8117 -Arial_Bold.ttf 106 _ 33.4654 5.8615 24 # -47.4570 30.3874 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 25 O -48.1772 40.3420 43.4589 -Arial_Bold.ttf 106 _ 33.4654 5.8615 26 ` -47.3030 12.7706 8.3203 -Arial_Bold.ttf 106 _ 33.4654 5.8615 27 @ -47.6387 55.2706 56.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 28 F -47.5094 29.0152 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 29 S -48.1746 33.8615 43.4589 -Arial_Bold.ttf 106 _ 33.4654 5.8615 30 p -37.6525 29.5628 43.4437 -Arial_Bold.ttf 106 _ 33.4654 5.8615 31 “ -47.1509 22.4719 17.6883 -Arial_Bold.ttf 106 _ 33.4654 5.8615 32 % -47.7356 44.9329 43.6580 -Arial_Bold.ttf 106 _ 33.4654 5.8615 33 £ -47.4394 31.1883 42.4286 -Arial_Bold.ttf 106 _ 33.4654 5.8615 34 . -13.7791 8.1385 8.1385 -Arial_Bold.ttf 106 _ 33.4654 5.8615 35 2 -47.3523 27.2857 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 36 5 -47.1947 28.0000 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 37 m -37.4253 44.6104 31.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 38 V -47.2985 38.4935 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 39 6 -47.5394 27.2857 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 40 w -36.2219 45.5065 30.6732 -Arial_Bold.ttf 106 _ 33.4654 5.8615 41 T -47.2971 33.2511 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 42 M -47.4654 39.5584 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 43 G -48.5464 39.1126 43.4589 -Arial_Bold.ttf 106 _ 33.4654 5.8615 44 b -47.7934 29.5628 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 45 9 -47.4154 27.2857 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 46 ; -36.3457 8.8680 40.4372 -Arial_Bold.ttf 106 _ 33.4654 5.8615 47 D -47.3001 35.0909 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 48 L -47.3902 29.9113 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 49 y -36.0294 31.6883 42.4286 -Arial_Bold.ttf 106 _ 33.4654 5.8615 50 ‘ -47.6382 8.8680 17.6883 -Arial_Bold.ttf 106 _ 33.4654 5.8615 51 \ -47.4011 17.6883 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 52 R -47.7058 37.0498 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 53 < -42.1891 28.0000 31.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 54 4 -47.5598 29.9589 41.7857 -Arial_Bold.ttf 106 _ 33.4654 5.8615 55 8 -47.6116 27.2857 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 56 0 -47.3737 27.2857 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 57 A -47.4797 40.5887 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 58 E -47.4237 32.0844 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 59 B -47.6844 35.0909 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 60 v -36.1611 31.6883 30.6732 -Arial_Bold.ttf 106 _ 33.4654 5.8615 61 k -47.5570 28.5152 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 62 J -47.5525 26.9524 42.7294 -Arial_Bold.ttf 106 _ 33.4654 5.8615 63 U -47.6070 33.3463 42.7294 -Arial_Bold.ttf 106 _ 33.4654 5.8615 64 j -47.4640 15.2294 53.7554 -Arial_Bold.ttf 106 _ 33.4654 5.8615 65 ( -47.6642 14.0000 53.5411 -Arial_Bold.ttf 106 _ 33.4654 5.8615 66 7 -47.0132 27.2857 41.7857 -Arial_Bold.ttf 106 _ 33.4654 5.8615 67 § -47.6789 28.5152 54.7706 -Arial_Bold.ttf 106 _ 33.4654 5.8615 68 $ -50.3295 27.7857 50.8680 -Arial_Bold.ttf 106 _ 33.4654 5.8615 69 € -48.1272 31.6883 42.9437 -Arial_Bold.ttf 106 _ 33.4654 5.8615 70 / -47.6608 17.6883 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 71 C -48.0882 36.6537 42.7294 -Arial_Bold.ttf 106 _ 33.4654 5.8615 72 * -47.7030 19.7424 19.1320 -Arial_Bold.ttf 106 _ 33.4654 5.8615 73 ” -47.2433 22.4719 17.6883 -Arial_Bold.ttf 106 _ 33.4654 5.8615 74 ? -47.5856 30.4589 42.2143 -Arial_Bold.ttf 106 _ 33.4654 5.8615 75 { -47.7011 19.6472 53.9697 -Arial_Bold.ttf 106 _ 33.4654 5.8615 76 } -47.8442 19.6472 53.9697 -Arial_Bold.ttf 106 _ 33.4654 5.8615 77 , -13.5708 8.8680 17.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 78 I -47.4154 8.1385 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 79 ° -48.0527 18.0844 18.0844 -Arial_Bold.ttf 106 _ 33.4654 5.8615 80 K -47.4229 37.7641 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 81 H -47.5285 33.3463 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 82 q -36.7911 29.5628 43.4437 -Arial_Bold.ttf 106 _ 33.4654 5.8615 83 & -47.1709 38.8117 42.4286 -Arial_Bold.ttf 106 _ 33.4654 5.8615 84 ’ -47.6420 8.8680 17.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 85 [ -47.5965 15.2294 53.5411 -Arial_Bold.ttf 106 _ 33.4654 5.8615 86 - -23.7013 15.7294 6.9091 -Arial_Bold.ttf 106 _ 33.4654 5.8615 87 Y -47.2054 41.0563 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 88 Q -48.2008 41.7857 46.6472 -Arial_Bold.ttf 106 _ 33.4654 5.8615 89 " -47.3185 21.5909 15.2294 -Arial_Bold.ttf 106 _ 33.4654 5.8615 90 ! -47.6049 8.1385 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 91 x -35.9695 32.4177 30.6732 -Arial_Bold.ttf 106 _ 33.4654 5.8615 92 ) -47.4771 14.0000 53.5411 -Arial_Bold.ttf 106 _ 33.4654 5.8615 93 = -36.1542 29.2294 19.2835 -Arial_Bold.ttf 106 _ 33.4654 5.8615 94 + -40.6053 28.8961 28.8961 -Arial_Bold.ttf 106 _ 33.4654 5.8615 95 X -47.5713 38.9935 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 96 » -34.1429 26.9524 26.5563 -Arial_Bold.ttf 106 _ 33.4654 5.8615 97 ' -47.8122 8.1385 15.2294 -Arial_Bold.ttf 106 _ 33.4654 5.8615 98 ¢ -47.3259 28.7294 54.4372 -Arial_Bold.ttf 106 _ 33.4654 5.8615 99 Z -47.4237 34.4805 42.0000 -Arial_Bold.ttf 106 _ 33.4654 5.8615 100 > -42.1071 28.0000 31.9026 -Arial_Bold.ttf 106 _ 33.4654 5.8615 101 ® -47.4242 43.2294 42.4286 -Arial_Bold.ttf 106 _ 33.4654 5.8615 102 © -47.6797 43.9589 42.4286 -Arial_Bold.ttf 106 _ 33.4654 5.8615 103 ] -47.3185 15.2294 53.5411 -Arial_Bold.ttf 106 _ 33.4654 5.8615 104 é -48.2926 29.4113 42.8961 -Arial_Bold.ttf 106 _ 33.4654 5.8615 105 z -35.9376 26.7706 30.6732 -Arial_Bold.ttf 106 _ 33.4654 5.8615 106 _ -0.2040 33.4654 5.8615 -Arial_Bold.ttf 106 _ 33.4654 5.8615 107 ¥ -47.8021 30.2056 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 1 t 0.5426 18.1169 41.3810 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 2 h -0.0538 27.7857 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 3 a 10.1488 28.8333 32.1169 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 4 n 9.8908 27.7857 31.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 5 P 0.2321 32.0844 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 6 o 10.0534 31.0065 32.1169 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 7 e 10.0760 29.4113 32.1169 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 8 : 11.2078 8.1385 30.6732 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 9 r 10.0200 19.8615 31.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 10 l -0.1038 8.1385 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 11 i 0.1560 8.1385 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 12 1 -0.1469 18.2359 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 13 | -0.2897 5.8615 54.5563 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 14 N 0.1000 33.3463 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 15 f -0.3976 20.6948 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 16 g 9.9565 29.5628 43.6580 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 17 d -0.0169 29.5628 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 18 W -0.3845 54.7706 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 19 s 10.2748 28.3333 32.1169 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 20 c 9.8107 27.5000 32.1169 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 21 u 11.1100 27.7857 30.8874 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 22 3 0.1795 27.2857 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 23 ~ 15.9491 30.4589 10.8117 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 24 # 0.0494 30.3874 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 25 O -0.7308 40.3420 43.4589 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 26 ` -0.1833 12.7706 8.3203 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 27 @ -0.5198 55.2706 56.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 28 F 0.3607 29.0152 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 29 S -0.7511 33.8615 43.4589 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 30 p 10.1377 29.5628 43.4437 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 31 “ -0.2607 22.4719 17.6883 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 32 % 0.1671 44.9329 43.6580 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 33 £ -0.2105 31.1883 42.4286 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 34 . 33.9615 8.1385 8.1385 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 35 2 -0.2254 27.2857 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 36 5 0.1545 28.0000 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 37 m 9.9403 44.6104 31.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 38 V 0.0000 38.4935 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 39 6 -0.0060 27.2857 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 40 w 11.4126 45.5065 30.6732 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 41 T -0.0272 33.2511 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 42 M -0.0857 39.5584 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 43 G -0.8959 39.1126 43.4589 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 44 b -0.1669 29.5628 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 45 9 -0.0008 27.2857 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 46 ; 11.2111 8.8680 40.4372 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 47 D -0.1119 35.0909 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 48 L 0.0500 29.9113 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 49 y 11.0714 31.6883 42.4286 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 50 ‘ -0.2683 8.8680 17.6883 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 51 \ -0.0060 17.6883 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 52 R 0.0781 37.0498 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 53 < 5.6142 28.0000 31.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 54 4 0.3195 29.9589 41.7857 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 55 8 0.0857 27.2857 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 56 0 -0.2774 27.2857 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 57 A -0.1371 40.5887 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 58 E 0.1228 32.0844 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 59 B 0.1841 35.0909 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 60 v 11.5140 31.6883 30.6732 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 61 k -0.1417 28.5152 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 62 J -0.1631 26.9524 42.7294 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 63 U 0.1281 33.3463 42.7294 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 64 j 0.0167 15.2294 53.7554 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 65 ( -0.0560 14.0000 53.5411 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 66 7 0.4131 27.2857 41.7857 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 67 § -0.1940 28.5152 54.7706 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 68 $ -3.1124 27.7857 50.8680 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 69 € -0.8777 31.6883 42.9437 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 70 / 0.0403 17.6883 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 71 C -0.7735 36.6537 42.7294 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 72 * 0.1714 19.7424 19.1320 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 73 ” -0.0409 22.4719 17.6883 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 74 ? -0.6373 30.4589 42.2143 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 75 { -0.1869 19.6472 53.9697 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 76 } -0.3917 19.6472 53.9697 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 77 , 33.8160 8.8680 17.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 78 I -0.1131 8.1385 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 79 ° -0.3528 18.0844 18.0844 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 80 K 0.1833 37.7641 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 81 H 0.0714 33.3463 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 82 q 10.3976 29.5628 43.4437 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 83 & -0.2129 38.8117 42.4286 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 84 ’ 0.0143 8.8680 17.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 85 [ -0.0143 15.2294 53.5411 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 86 - 23.7843 15.7294 6.9091 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 87 Y -0.0798 41.0563 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 88 Q -0.7068 41.7857 46.6472 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 89 " 0.2002 21.5909 15.2294 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 90 ! -0.0097 8.1385 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 91 x 11.1345 32.4177 30.6732 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 92 ) -0.1433 14.0000 53.5411 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 93 = 11.0921 29.2294 19.2835 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 94 + 7.0508 28.8961 28.8961 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 95 X 0.0090 38.9935 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 96 » 13.6758 26.9524 26.5563 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 97 ' 0.2540 8.1385 15.2294 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 98 ¢ -0.1417 28.7294 54.4372 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 99 Z -0.2131 34.4805 42.0000 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 100 > 5.2166 28.0000 31.9026 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 101 ® -0.1564 43.2294 42.4286 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 102 © 0.2126 43.9589 42.4286 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 103 ] -0.0274 15.2294 53.5411 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 104 é -0.4842 29.4113 42.8961 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 105 z 11.3100 26.7706 30.6732 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 106 _ 47.4594 33.4654 5.8615 -Arial_Bold.ttf 107 ¥ 30.2056 42.0000 107 ¥ -0.0917 30.2056 42.0000 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 1 t 0.1783 24.4154 40.9766 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 2 h -6.8836 27.3402 48.0853 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 3 a 9.8436 27.8462 31.0067 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 4 n 8.7949 25.2031 32.0301 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 5 P -4.7193 25.7986 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 6 o 9.5951 28.2098 31.0067 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 7 e 10.1207 29.0196 31.0067 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 8 : 7.7137 6.5913 28.6598 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 9 r 9.2996 22.4322 31.3748 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 10 l -7.0876 5.9315 47.8672 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 11 i -2.7042 5.9315 42.5060 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 12 1 -4.2955 17.7944 44.3469 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 13 | -9.4032 5.0619 59.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 14 N -4.4709 40.7623 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 15 f -6.7178 25.3570 50.5822 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 16 g 9.8078 27.1902 46.1801 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 17 d -6.7881 29.0196 47.8672 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 18 W -4.4164 55.7857 46.6937 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 19 s 7.3550 23.9737 33.7172 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 20 c 9.9282 24.4154 31.0067 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 21 u 10.2291 25.6486 31.0067 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 22 3 -4.2211 26.8266 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 23 ~ 13.7004 29.5416 13.1304 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 24 # -5.0764 48.2353 45.8884 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 25 O -4.4066 40.8266 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 26 ` -6.9463 12.1668 14.0000 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 27 @ -6.9718 46.9080 50.3381 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 28 F -4.5735 29.7514 46.8399 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 29 S -2.2824 35.2549 43.5416 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 30 p 7.7003 26.0129 48.3770 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 31 “ -5.3278 16.2052 15.1734 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 32 % -7.1888 41.4940 48.0815 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 33 £ -7.2573 40.6123 52.6252 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 34 . 34.3095 7.2587 7.2587 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 35 2 -4.4966 26.1844 44.3469 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 36 5 -5.7374 29.0970 46.6937 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 37 m 8.9919 41.1864 33.4217 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 38 V -4.5437 33.7172 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 39 6 -4.4910 28.4417 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 40 w 9.7813 36.2783 32.1801 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 41 T -3.4733 38.6252 43.4734 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 42 M -4.2915 46.1801 46.6087 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 43 G -4.3647 36.4322 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 44 b -5.3991 29.0196 46.2566 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 45 9 -4.6271 30.7150 47.0619 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 46 ; 8.0283 9.4563 37.1646 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 47 D -4.6693 33.9315 46.2566 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 48 L -4.2661 28.2917 45.9489 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 49 y 10.1508 29.5371 46.1801 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 50 ‘ -4.7036 6.2353 15.1734 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 51 \ -3.5613 24.7790 47.3535 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 52 R -5.8236 31.5203 46.6937 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 53 < 9.4059 17.3703 24.6297 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 54 4 -4.6676 32.9854 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 55 8 -5.6063 29.5371 46.6937 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 56 0 -4.7190 32.0982 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 57 A -2.3872 34.7413 42.0000 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 58 E -4.3792 30.3469 46.2566 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 59 B -4.4618 29.1734 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 60 v 9.8943 25.8031 31.3748 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 61 k -5.4136 26.1668 47.8672 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 62 J -4.6319 34.6594 47.5672 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 63 U -4.6204 37.3920 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 64 j -2.0384 19.9315 58.8567 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 65 ( -6.9788 16.3469 59.1522 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 66 7 -4.1331 32.5437 45.3741 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 67 § -6.7761 28.0000 47.8672 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 68 $ -9.5368 31.6450 60.2521 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 69 € -5.8651 37.0881 46.6937 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 70 / -7.1246 26.4584 49.4087 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 71 C -4.4787 31.7346 45.3741 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 72 * -5.9560 26.1668 23.2420 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 73 ” -4.4174 16.6424 15.3877 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 74 ? -2.5189 25.8031 44.3469 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 75 { -6.7839 19.9315 59.1522 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 76 } -6.8948 19.9315 59.1522 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 77 , 35.5644 8.6465 14.0000 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 78 I -3.2079 28.3476 43.2416 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 79 ° -8.4570 19.9315 20.0853 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 80 K -4.4409 29.1734 46.8399 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 81 H -4.7050 37.2420 46.6937 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 82 q 8.7348 25.2850 46.8399 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 83 & -4.7348 34.7451 46.9080 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 84 ’ -4.3010 8.4926 15.1734 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 85 [ -4.3800 16.1930 57.9787 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 86 - 21.9661 18.5437 5.0619 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 87 Y -3.5326 34.2353 44.7150 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 88 Q -4.5315 48.2353 56.9591 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 89 " -4.5542 15.4773 18.5437 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 90 ! -6.9949 6.0853 48.5270 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 91 x 8.8306 31.0067 32.0339 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 92 ) -6.8535 16.9248 59.1522 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 93 = 8.8569 22.4322 24.3214 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 94 + 8.7979 24.4154 24.4154 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 95 X -4.5437 38.1116 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 96 » 9.1459 31.0028 25.6531 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 97 ' -7.9314 5.0619 15.1734 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 98 ¢ -9.6615 29.3832 48.2353 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 99 Z -4.6134 37.6056 45.5203 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 100 > 7.4372 19.3535 26.8266 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 101 ® -7.0140 41.3402 40.7623 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 102 © -6.7618 40.8266 38.4231 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 103 ] -4.5465 16.1930 57.9787 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 104 é -6.9466 29.0196 47.8672 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 105 z 9.9167 26.1668 31.0067 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 106 _ 43.5203 38.7790 7.1049 -Comic_Sans_MS.ttf 1 t 24.4154 40.9766 107 ¥ -1.8784 31.1560 42.8053 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 1 t 6.9175 24.4154 40.9766 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 2 h 0.3032 27.3402 48.0853 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 3 a 16.8391 27.8462 31.0067 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 4 n 15.8371 25.2031 32.0301 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 5 P 2.0636 25.7986 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 6 o 16.8248 28.2098 31.0067 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 7 e 16.9329 29.0196 31.0067 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 8 : 14.5976 6.5913 28.6598 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 9 r 16.3627 22.4322 31.3748 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 10 l -0.0143 5.9315 47.8672 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 11 i 4.3582 5.9315 42.5060 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 12 1 2.3858 17.7944 44.3469 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 13 | -2.4754 5.0619 59.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 14 N 2.3560 40.7623 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 15 f 0.0309 25.3570 50.5822 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 16 g 16.9157 27.1902 46.1801 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 17 d -0.0166 29.0196 47.8672 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 18 W 2.3780 55.7857 46.6937 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 19 s 14.1062 23.9737 33.7172 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 20 c 17.0760 24.4154 31.0067 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 21 u 16.7209 25.6486 31.0067 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 22 3 2.2097 26.8266 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 23 ~ 20.5840 29.5416 13.1304 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 24 # 1.7604 48.2353 45.8884 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 25 O 2.1036 40.8266 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 26 ` 0.2205 12.1668 14.0000 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 27 @ -0.1995 46.9080 50.3381 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 28 F 2.1892 29.7514 46.8399 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 29 S 4.7437 35.2549 43.5416 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 30 p 14.7442 26.0129 48.3770 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 31 “ 1.8362 16.2052 15.1734 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 32 % -0.2318 41.4940 48.0815 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 33 £ 0.0000 40.6123 52.6252 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 34 . 40.8830 7.2587 7.2587 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 35 2 2.4053 26.1844 44.3469 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 36 5 0.7554 29.0970 46.6937 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 37 m 16.0015 41.1864 33.4217 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 38 V 2.2871 33.7172 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 39 6 2.6520 28.4417 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 40 w 16.4309 36.2783 32.1801 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 41 T 3.0621 38.6252 43.4734 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 42 M 2.4697 46.1801 46.6087 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 43 G 2.4638 36.4322 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 44 b 1.4493 29.0196 46.2566 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 45 9 2.5082 30.7150 47.0619 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 46 ; 15.2551 9.4563 37.1646 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 47 D 2.1681 33.9315 46.2566 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 48 L 2.1415 28.2917 45.9489 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 49 y 16.6825 29.5371 46.1801 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 50 ‘ 2.0989 6.2353 15.1734 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 51 \ 3.2314 24.7790 47.3535 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 52 R 1.3012 31.5203 46.6937 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 53 < 16.2927 17.3703 24.6297 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 54 4 2.2328 32.9854 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 55 8 1.1532 29.5371 46.6937 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 56 0 2.1054 32.0982 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 57 A 4.8543 34.7413 42.0000 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 58 E 2.3469 30.3469 46.2566 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 59 B 2.1061 29.1734 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 60 v 16.6832 25.8031 31.3748 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 61 k 1.2916 26.1668 47.8672 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 62 J 2.4278 34.6594 47.5672 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 63 U 2.3199 37.3920 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 64 j 4.7343 19.9315 58.8567 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 65 ( -0.0844 16.3469 59.1522 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 66 7 2.6651 32.5437 45.3741 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 67 § -0.1512 28.0000 47.8672 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 68 $ -2.4876 31.6450 60.2521 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 69 € 1.2689 37.0881 46.6937 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 70 / -0.3449 26.4584 49.4087 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 71 C 2.2749 31.7346 45.3741 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 72 * 0.8842 26.1668 23.2420 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 73 ” 2.7108 16.6424 15.3877 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 74 ? 4.5497 25.8031 44.3469 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 75 { -0.0857 19.9315 59.1522 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 76 } -0.2105 19.9315 59.1522 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 77 , 42.6738 8.6465 14.0000 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 78 I 3.7888 28.3476 43.2416 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 79 ° -1.3327 19.9315 20.0853 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 80 K 2.1356 29.1734 46.8399 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 81 H 2.3779 37.2420 46.6937 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 82 q 15.7654 25.2850 46.8399 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 83 & 2.5878 34.7451 46.9080 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 84 ’ 2.4327 8.4926 15.1734 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 85 [ 1.9340 16.1930 57.9787 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 86 - 28.9746 18.5437 5.0619 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 87 Y 3.3636 34.2353 44.7150 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 88 Q 2.1572 48.2353 56.9591 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 89 " 2.1880 15.4773 18.5437 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 90 ! -0.2022 6.0853 48.5270 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 91 x 15.5079 31.0067 32.0339 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 92 ) -0.3512 16.9248 59.1522 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 93 = 15.7693 22.4322 24.3214 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 94 + 15.8456 24.4154 24.4154 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 95 X 2.4822 38.1116 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 96 » 16.1151 31.0028 25.6531 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 97 ' -0.5481 5.0619 15.1734 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 98 ¢ -2.6896 29.3832 48.2353 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 99 Z 2.1188 37.6056 45.5203 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 100 > 14.6029 19.3535 26.8266 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 101 ® -0.0756 41.3402 40.7623 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 102 © 0.0147 40.8266 38.4231 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 103 ] 2.3577 16.1930 57.9787 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 104 é -0.1246 29.0196 47.8672 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 105 z 16.9522 26.1668 31.0067 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 106 _ 50.1051 38.7790 7.1049 -Comic_Sans_MS.ttf 2 h 27.3402 48.0853 107 ¥ 4.9688 31.1560 42.8053 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 1 t -9.9328 24.4154 40.9766 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 2 h -16.8535 27.3402 48.0853 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 3 a 0.0363 27.8462 31.0067 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 4 n -0.8979 25.2031 32.0301 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 5 P -14.4875 25.7986 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 6 o 0.2859 28.2098 31.0067 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 7 e -0.1158 29.0196 31.0067 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 8 : -2.5841 6.5913 28.6598 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 9 r -0.6406 22.4322 31.3748 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 10 l -16.7521 5.9315 47.8672 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 11 i -12.7301 5.9315 42.5060 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 12 1 -14.4779 17.7944 44.3469 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 13 | -19.5147 5.0619 59.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 14 N -14.6008 40.7623 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 15 f -16.5985 25.3570 50.5822 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 16 g 0.0143 27.1902 46.1801 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 17 d -16.8760 29.0196 47.8672 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 18 W -14.2037 55.7857 46.6937 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 19 s -2.7962 23.9737 33.7172 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 20 c 0.0752 24.4154 31.0067 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 21 u -0.1214 25.6486 31.0067 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 22 3 -14.2008 26.8266 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 23 ~ 3.6346 29.5416 13.1304 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 24 # -14.7498 48.2353 45.8884 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 25 O -14.7634 40.8266 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 26 ` -17.0686 12.1668 14.0000 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 27 @ -17.0333 46.9080 50.3381 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 28 F -14.5951 29.7514 46.8399 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 29 S -12.3294 35.2549 43.5416 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 30 p -1.8683 26.0129 48.3770 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 31 “ -15.1999 16.2052 15.1734 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 32 % -17.2165 41.4940 48.0815 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 33 £ -16.7654 40.6123 52.6252 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 34 . 24.1023 7.2587 7.2587 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 35 2 -14.5154 26.1844 44.3469 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 36 5 -15.6625 29.0970 46.6937 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 37 m -0.9444 41.1864 33.4217 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 38 V -14.4279 33.7172 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 39 6 -14.9142 28.4417 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 40 w 0.0696 36.2783 32.1801 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 41 T -13.5394 38.6252 43.4734 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 42 M -14.2428 46.1801 46.6087 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 43 G -14.2397 36.4322 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 44 b -15.2596 29.0196 46.2566 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 45 9 -14.5182 30.7150 47.0619 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 46 ; -1.7135 9.4563 37.1646 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 47 D -14.6613 33.9315 46.2566 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 48 L -14.3450 28.2917 45.9489 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 49 y -0.1943 29.5371 46.1801 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 50 ‘ -14.7031 6.2353 15.1734 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 51 \ -13.7934 24.7790 47.3535 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 52 R -15.3827 31.5203 46.6937 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 53 < 0.0032 17.3703 24.6297 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 54 4 -14.7596 32.9854 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 55 8 -15.4306 29.5371 46.6937 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 56 0 -14.2303 32.0982 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 57 A -12.2001 34.7413 42.0000 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 58 E -14.5364 30.3469 46.2566 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 59 B -14.5730 29.1734 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 60 v -0.0594 25.8031 31.3748 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 61 k -15.7742 26.1668 47.8672 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 62 J -14.7639 34.6594 47.5672 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 63 U -14.6781 37.3920 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 64 j -11.9735 19.9315 58.8567 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 65 ( -16.7293 16.3469 59.1522 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 66 7 -14.3934 32.5437 45.3741 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 67 § -16.6974 28.0000 47.8672 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 68 $ -19.3934 31.6450 60.2521 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 69 € -15.5941 37.0881 46.6937 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 70 / -17.0590 26.4584 49.4087 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 71 C -14.5331 31.7346 45.3741 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 72 * -15.6741 26.1668 23.2420 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 73 ” -14.5163 16.6424 15.3877 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 74 ? -12.4104 25.8031 44.3469 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 75 { -17.0172 19.9315 59.1522 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 76 } -17.0804 19.9315 59.1522 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 77 , 25.8762 8.6465 14.0000 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 78 I -13.0572 28.3476 43.2416 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 79 ° -17.9939 19.9315 20.0853 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 80 K -14.6426 29.1734 46.8399 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 81 H -14.4811 37.2420 46.6937 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 82 q -1.3001 25.2850 46.8399 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 83 & -14.8107 34.7451 46.9080 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 84 ’ -14.9093 8.4926 15.1734 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 85 [ -14.5534 16.1930 57.9787 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 86 - 11.8586 18.5437 5.0619 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 87 Y -13.4235 34.2353 44.7150 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 88 Q -14.3366 48.2353 56.9591 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 89 " -14.4206 15.4773 18.5437 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 90 ! -16.6575 6.0853 48.5270 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 91 x -0.8725 31.0067 32.0339 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 92 ) -16.6348 16.9248 59.1522 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 93 = -1.3386 22.4322 24.3214 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 94 + -0.8511 24.4154 24.4154 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 95 X -14.2544 38.1116 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 96 » -0.9391 31.0028 25.6531 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 97 ' -17.2830 5.0619 15.1734 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 98 ¢ -19.4051 29.3832 48.2353 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 99 Z -14.3471 37.6056 45.5203 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 100 > -2.2923 19.3535 26.8266 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 101 ® -16.8423 41.3402 40.7623 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 102 © -16.6922 40.8266 38.4231 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 103 ] -14.4730 16.1930 57.9787 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 104 é -16.8903 29.0196 47.8672 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 105 z 0.2600 26.1668 31.0067 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 106 _ 33.4519 38.7790 7.1049 -Comic_Sans_MS.ttf 3 a 27.8462 31.0067 107 ¥ -11.8240 31.1560 42.8053 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 1 t -8.8093 24.4154 40.9766 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 2 h -15.6432 27.3402 48.0853 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 3 a 1.2726 27.8462 31.0067 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 4 n -0.1623 25.2031 32.0301 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 5 P -13.3138 25.7986 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 6 o 1.2042 28.2098 31.0067 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 7 e 1.1075 29.0196 31.0067 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 8 : -1.5699 6.5913 28.6598 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 9 r 0.7289 22.4322 31.3748 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 10 l -15.9621 5.9315 47.8672 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 11 i -11.5656 5.9315 42.5060 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 12 1 -13.8856 17.7944 44.3469 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 13 | -18.4385 5.0619 59.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 14 N -13.3262 40.7623 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 15 f -15.6650 25.3570 50.5822 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 16 g 0.9678 27.1902 46.1801 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 17 d -15.8290 29.0196 47.8672 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 18 W -13.3160 55.7857 46.6937 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 19 s -1.6927 23.9737 33.7172 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 20 c 0.8337 24.4154 31.0067 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 21 u 1.1175 25.6486 31.0067 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 22 3 -13.4964 26.8266 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 23 ~ 4.8260 29.5416 13.1304 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 24 # -13.8095 48.2353 45.8884 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 25 O -13.2317 40.8266 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 26 ` -15.9553 12.1668 14.0000 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 27 @ -15.9857 46.9080 50.3381 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 28 F -13.3660 29.7514 46.8399 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 29 S -11.0888 35.2549 43.5416 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 30 p -0.9842 26.0129 48.3770 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 31 “ -14.1814 16.2052 15.1734 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 32 % -15.7589 41.4940 48.0815 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 33 £ -15.7537 40.6123 52.6252 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 34 . 25.3973 7.2587 7.2587 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 35 2 -13.2113 26.1844 44.3469 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 36 5 -14.6632 29.0970 46.6937 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 37 m 0.2380 41.1864 33.4217 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 38 V -13.7098 33.7172 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 39 6 -13.6488 28.4417 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 40 w 1.2668 36.2783 32.1801 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 41 T -12.5989 38.6252 43.4734 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 42 M -13.3771 46.1801 46.6087 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 43 G -13.6942 36.4322 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 44 b -14.4150 29.0196 46.2566 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 45 9 -13.4357 30.7150 47.0619 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 46 ; -0.6502 9.4563 37.1646 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 47 D -13.5045 33.9315 46.2566 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 48 L -13.4090 28.2917 45.9489 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 49 y 1.0234 29.5371 46.1801 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 50 ‘ -13.4104 6.2353 15.1734 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 51 \ -12.5739 24.7790 47.3535 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 52 R -14.8827 31.5203 46.6937 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 53 < 0.6639 17.3703 24.6297 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 54 4 -13.5332 32.9854 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 55 8 -14.3494 29.5371 46.6937 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 56 0 -13.5598 32.0982 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 57 A -11.0714 34.7413 42.0000 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 58 E -13.7539 30.3469 46.2566 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 59 B -13.5270 29.1734 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 60 v 1.3415 25.8031 31.3748 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 61 k -14.7105 26.1668 47.8672 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 62 J -13.4238 34.6594 47.5672 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 63 U -13.3503 37.3920 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 64 j -11.2253 19.9315 58.8567 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 65 ( -15.8375 16.3469 59.1522 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 66 7 -13.0180 32.5437 45.3741 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 67 § -15.8346 28.0000 47.8672 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 68 $ -18.5704 31.6450 60.2521 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 69 € -14.6451 37.0881 46.6937 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 70 / -16.0710 26.4584 49.4087 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 71 C -12.8769 31.7346 45.3741 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 72 * -14.5223 26.1668 23.2420 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 73 ” -13.5665 16.6424 15.3877 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 74 ? -10.9794 25.8031 44.3469 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 75 { -15.9172 19.9315 59.1522 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 76 } -15.9313 19.9315 59.1522 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 77 , 26.6331 8.6465 14.0000 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 78 I -12.0894 28.3476 43.2416 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 79 ° -17.2181 19.9315 20.0853 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 80 K -13.9835 29.1734 46.8399 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 81 H -13.6592 37.2420 46.6937 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 82 q -0.1955 25.2850 46.8399 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 83 & -13.6009 34.7451 46.9080 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 84 ’ -13.3122 8.4926 15.1734 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 85 [ -13.5759 16.1930 57.9787 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 86 - 13.1547 18.5437 5.0619 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 87 Y -12.2079 34.2353 44.7150 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 88 Q -13.3958 48.2353 56.9591 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 89 " -13.4485 15.4773 18.5437 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 90 ! -15.9752 6.0853 48.5270 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 91 x 0.0182 31.0067 32.0339 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 92 ) -15.5392 16.9248 59.1522 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 93 = -0.1240 22.4322 24.3214 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 94 + -0.0856 24.4154 24.4154 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 95 X -13.4100 38.1116 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 96 » 0.3242 31.0028 25.6531 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 97 ' -16.5789 5.0619 15.1734 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 98 ¢ -18.3934 29.3832 48.2353 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 99 Z -13.3639 37.6056 45.5203 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 100 > -1.4001 19.3535 26.8266 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 101 ® -16.0112 41.3402 40.7623 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 102 © -15.6261 40.8266 38.4231 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 103 ] -13.4517 16.1930 57.9787 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 104 é -15.9155 29.0196 47.8672 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 105 z 1.1028 26.1668 31.0067 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 106 _ 34.6235 38.7790 7.1049 -Comic_Sans_MS.ttf 4 n 25.2031 32.0301 107 ¥ -10.6835 31.1560 42.8053 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 1 t 4.5854 24.4154 40.9766 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 2 h -2.2727 27.3402 48.0853 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 3 a 14.6749 27.8462 31.0067 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 4 n 13.5517 25.2031 32.0301 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 5 P 0.2430 25.7986 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 6 o 14.3399 28.2098 31.0067 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 7 e 14.4413 29.0196 31.0067 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 8 : 12.2122 6.5913 28.6598 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 9 r 14.1767 22.4322 31.3748 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 10 l -2.3894 5.9315 47.8672 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 11 i 1.7877 5.9315 42.5060 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 12 1 0.2847 17.7944 44.3469 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 13 | -4.6537 5.0619 59.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 14 N -0.0801 40.7623 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 15 f -2.5805 25.3570 50.5822 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 16 g 14.5747 27.1902 46.1801 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 17 d -2.0891 29.0196 47.8672 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 18 W -0.1210 55.7857 46.6937 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 19 s 11.8351 23.9737 33.7172 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 20 c 14.3527 24.4154 31.0067 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 21 u 14.6601 25.6486 31.0067 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 22 3 -0.4381 26.8266 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 23 ~ 18.5389 29.5416 13.1304 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 24 # -0.2461 48.2353 45.8884 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 25 O -0.1770 40.8266 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 26 ` -2.4015 12.1668 14.0000 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 27 @ -2.4628 46.9080 50.3381 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 28 F 0.0903 29.7514 46.8399 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 29 S 2.7219 35.2549 43.5416 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 30 p 12.4141 26.0129 48.3770 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 31 “ -0.9476 16.2052 15.1734 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 32 % -2.2510 41.4940 48.0815 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 33 £ -2.4802 40.6123 52.6252 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 34 . 38.6401 7.2587 7.2587 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 35 2 0.2137 26.1844 44.3469 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 36 5 -1.3326 29.0970 46.6937 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 37 m 13.6087 41.1864 33.4217 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 38 V -0.0542 33.7172 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 39 6 -0.1532 28.4417 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 40 w 14.5059 36.2783 32.1801 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 41 T 1.0120 38.6252 43.4734 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 42 M -0.0759 46.1801 46.6087 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 43 G -0.2391 36.4322 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 44 b -0.5295 29.0196 46.2566 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 45 9 -0.1353 30.7150 47.0619 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 46 ; 12.6493 9.4563 37.1646 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 47 D 0.0392 33.9315 46.2566 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 48 L 0.1213 28.2917 45.9489 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 49 y 14.4395 29.5371 46.1801 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 50 ‘ -0.1233 6.2353 15.1734 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 51 \ 1.0183 24.7790 47.3535 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 52 R -1.0062 31.5203 46.6937 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 53 < 14.4261 17.3703 24.6297 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 54 4 -0.0868 32.9854 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 55 8 -1.3393 29.5371 46.6937 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 56 0 0.1575 32.0982 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 57 A 2.5855 34.7413 42.0000 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 58 E 0.2365 30.3469 46.2566 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 59 B -0.2172 29.1734 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 60 v 14.3348 25.8031 31.3748 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 61 k -1.0062 26.1668 47.8672 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 62 J -0.0235 34.6594 47.5672 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 63 U -0.2742 37.3920 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 64 j 2.3667 19.9315 58.8567 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 65 ( -2.2699 16.3469 59.1522 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 66 7 0.0507 32.5437 45.3741 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 67 § -2.3066 28.0000 47.8672 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 68 $ -4.9980 31.6450 60.2521 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 69 € -1.0051 37.0881 46.6937 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 70 / -2.5798 26.4584 49.4087 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 71 C 0.2691 31.7346 45.3741 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 72 * -1.3951 26.1668 23.2420 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 73 ” -0.1126 16.6424 15.3877 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 74 ? 2.0804 25.8031 44.3469 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 75 { -2.3137 19.9315 59.1522 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 76 } -2.2018 19.9315 59.1522 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 77 , 40.5477 8.6465 14.0000 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 78 I 1.3921 28.3476 43.2416 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 79 ° -3.9841 19.9315 20.0853 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 80 K -0.0724 29.1734 46.8399 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 81 H -0.0309 37.2420 46.6937 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 82 q 13.5561 25.2850 46.8399 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 83 & -0.1315 34.7451 46.9080 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 84 ’ 0.1109 8.4926 15.1734 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 85 [ 0.0350 16.1930 57.9787 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 86 - 26.1860 18.5437 5.0619 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 87 Y 1.0002 34.2353 44.7150 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 88 Q 0.1019 48.2353 56.9591 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 89 " -0.0825 15.4773 18.5437 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 90 ! -2.4243 6.0853 48.5270 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 91 x 13.8630 31.0067 32.0339 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 92 ) -2.5647 16.9248 59.1522 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 93 = 13.4528 22.4322 24.3214 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 94 + 13.3229 24.4154 24.4154 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 95 X -0.1756 38.1116 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 96 » 13.2351 31.0028 25.6531 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 97 ' -3.2973 5.0619 15.1734 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 98 ¢ -5.1286 29.3832 48.2353 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 99 Z -0.0592 37.6056 45.5203 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 100 > 12.1898 19.3535 26.8266 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 101 ® -2.1838 41.3402 40.7623 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 102 © -2.6079 40.8266 38.4231 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 103 ] -0.0574 16.1930 57.9787 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 104 é -2.4548 29.0196 47.8672 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 105 z 14.7616 26.1668 31.0067 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 106 _ 47.9718 38.7790 7.1049 -Comic_Sans_MS.ttf 5 P 25.7986 45.5203 107 ¥ 2.7164 31.1560 42.8053 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 1 t -9.9744 24.4154 40.9766 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 2 h -17.0204 27.3402 48.0853 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 3 a -0.1763 27.8462 31.0067 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 4 n -1.1169 25.2031 32.0301 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 5 P -14.3551 25.7986 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 6 o -0.0532 28.2098 31.0067 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 7 e 0.0344 29.0196 31.0067 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 8 : -2.6453 6.5913 28.6598 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 9 r -0.3658 22.4322 31.3748 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 10 l -16.6933 5.9315 47.8672 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 11 i -12.6228 5.9315 42.5060 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 12 1 -14.3766 17.7944 44.3469 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 13 | -19.3090 5.0619 59.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 14 N -14.6827 40.7623 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 15 f -16.9938 25.3570 50.5822 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 16 g -0.2470 27.1902 46.1801 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 17 d -16.6413 29.0196 47.8672 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 18 W -14.5970 55.7857 46.6937 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 19 s -2.7526 23.9737 33.7172 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 20 c -0.2183 24.4154 31.0067 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 21 u 0.1001 25.6486 31.0067 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 22 3 -14.6865 26.8266 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 23 ~ 3.7766 29.5416 13.1304 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 24 # -15.1376 48.2353 45.8884 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 25 O -14.6091 40.8266 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 26 ` -16.8795 12.1668 14.0000 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 27 @ -16.8275 46.9080 50.3381 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 28 F -14.3962 29.7514 46.8399 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 29 S -12.0968 35.2549 43.5416 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 30 p -2.1850 26.0129 48.3770 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 31 “ -15.3825 16.2052 15.1734 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 32 % -16.9121 41.4940 48.0815 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 33 £ -17.0788 40.6123 52.6252 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 34 . 24.0596 7.2587 7.2587 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 35 2 -14.9426 26.1844 44.3469 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 36 5 -15.7787 29.0970 46.6937 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 37 m -1.1598 41.1864 33.4217 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 38 V -14.6592 33.7172 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 39 6 -14.4780 28.4417 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 40 w -0.0022 36.2783 32.1801 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 41 T -13.5079 38.6252 43.4734 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 42 M -14.8124 46.1801 46.6087 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 43 G -14.5228 36.4322 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 44 b -15.1628 29.0196 46.2566 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 45 9 -14.3918 30.7150 47.0619 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 46 ; -1.6347 9.4563 37.1646 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 47 D -14.4539 33.9315 46.2566 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 48 L -14.4287 28.2917 45.9489 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 49 y -0.1588 29.5371 46.1801 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 50 ‘ -14.4969 6.2353 15.1734 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 51 \ -13.3655 24.7790 47.3535 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 52 R -15.6941 31.5203 46.6937 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 53 < -0.3476 17.3703 24.6297 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 54 4 -14.3020 32.9854 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 55 8 -15.1658 29.5371 46.6937 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 56 0 -14.2677 32.0982 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 57 A -12.1311 34.7413 42.0000 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 58 E -14.4483 30.3469 46.2566 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 59 B -14.4271 29.1734 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 60 v 0.2803 25.8031 31.3748 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 61 k -15.6921 26.1668 47.8672 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 62 J -14.8922 34.6594 47.5672 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 63 U -14.5267 37.3920 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 64 j -12.0493 19.9315 58.8567 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 65 ( -16.7955 16.3469 59.1522 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 66 7 -14.2006 32.5437 45.3741 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 67 § -16.7231 28.0000 47.8672 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 68 $ -19.2809 31.6450 60.2521 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 69 € -15.5730 37.0881 46.6937 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 70 / -17.0171 26.4584 49.4087 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 71 C -14.4546 31.7346 45.3741 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 72 * -15.7391 26.1668 23.2420 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 73 ” -14.5521 16.6424 15.3877 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 74 ? -12.2815 25.8031 44.3469 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 75 { -16.7030 19.9315 59.1522 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 76 } -16.9062 19.9315 59.1522 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 77 , 25.8740 8.6465 14.0000 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 78 I -13.3938 28.3476 43.2416 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 79 ° -18.1240 19.9315 20.0853 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 80 K -14.3968 29.1734 46.8399 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 81 H -14.4265 37.2420 46.6937 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 82 q -1.3875 25.2850 46.8399 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 83 & -14.7295 34.7451 46.9080 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 84 ’ -14.4020 8.4926 15.1734 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 85 [ -14.5091 16.1930 57.9787 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 86 - 11.8836 18.5437 5.0619 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 87 Y -13.3485 34.2353 44.7150 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 88 Q -14.4927 48.2353 56.9591 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 89 " -14.3741 15.4773 18.5437 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 90 ! -16.6575 6.0853 48.5270 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 91 x -1.1042 31.0067 32.0339 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 92 ) -16.8133 16.9248 59.1522 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 93 = -1.3138 22.4322 24.3214 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 94 + -1.3417 24.4154 24.4154 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 95 X -14.3555 38.1116 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 96 » -0.9696 31.0028 25.6531 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 97 ' -17.3638 5.0619 15.1734 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 98 ¢ -19.8319 29.3832 48.2353 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 99 Z -14.6263 37.6056 45.5203 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 100 > -2.2699 19.3535 26.8266 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 101 ® -16.7307 41.3402 40.7623 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 102 © -16.7828 40.8266 38.4231 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 103 ] -14.3631 16.1930 57.9787 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 104 é -16.8101 29.0196 47.8672 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 105 z 0.1576 26.1668 31.0067 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 106 _ 33.5816 38.7790 7.1049 -Comic_Sans_MS.ttf 6 o 28.2098 31.0067 107 ¥ -11.5946 31.1560 42.8053 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 1 t -9.7828 24.4154 40.9766 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 2 h -16.6834 27.3402 48.0853 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 3 a -0.3530 27.8462 31.0067 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 4 n -1.0379 25.2031 32.0301 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 5 P -14.6057 25.7986 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 6 o 0.1218 28.2098 31.0067 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 7 e -0.1605 29.0196 31.0067 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 8 : -2.6387 6.5913 28.6598 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 9 r -0.3786 22.4322 31.3748 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 10 l -16.9389 5.9315 47.8672 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 11 i -12.5342 5.9315 42.5060 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 12 1 -14.5182 17.7944 44.3469 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 13 | -19.5431 5.0619 59.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 14 N -14.5066 40.7623 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 15 f -16.9105 25.3570 50.5822 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 16 g 0.2365 27.1902 46.1801 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 17 d -16.7765 29.0196 47.8672 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 18 W -14.3680 55.7857 46.6937 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 19 s -2.5552 23.9737 33.7172 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 20 c 0.1292 24.4154 31.0067 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 21 u 0.0588 25.6486 31.0067 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 22 3 -14.6109 26.8266 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 23 ~ 3.7939 29.5416 13.1304 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 24 # -15.0546 48.2353 45.8884 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 25 O -14.5791 40.8266 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 26 ` -16.9341 12.1668 14.0000 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 27 @ -17.0249 46.9080 50.3381 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 28 F -14.4343 29.7514 46.8399 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 29 S -12.4050 35.2549 43.5416 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 30 p -2.0376 26.0129 48.3770 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 31 “ -15.1573 16.2052 15.1734 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 32 % -17.1363 41.4940 48.0815 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 33 £ -16.9067 40.6123 52.6252 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 34 . 24.2934 7.2587 7.2587 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 35 2 -14.2971 26.1844 44.3469 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 36 5 -15.7339 29.0970 46.6937 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 37 m -1.1529 41.1864 33.4217 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 38 V -14.4421 33.7172 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 39 6 -14.5854 28.4417 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 40 w 0.0060 36.2783 32.1801 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 41 T -13.5915 38.6252 43.4734 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 42 M -14.5175 46.1801 46.6087 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 43 G -14.2331 36.4322 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 44 b -15.0914 29.0196 46.2566 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 45 9 -14.5793 30.7150 47.0619 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 46 ; -1.7051 9.4563 37.1646 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 47 D -14.5368 33.9315 46.2566 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 48 L -14.4458 28.2917 45.9489 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 49 y -0.2013 29.5371 46.1801 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 50 ‘ -14.5878 6.2353 15.1734 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 51 \ -13.4576 24.7790 47.3535 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 52 R -15.6892 31.5203 46.6937 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 53 < -0.4662 17.3703 24.6297 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 54 4 -14.5395 32.9854 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 55 8 -15.6714 29.5371 46.6937 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 56 0 -14.6091 32.0982 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 57 A -12.3119 34.7413 42.0000 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 58 E -14.4451 30.3469 46.2566 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 59 B -14.3537 29.1734 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 60 v 0.0903 25.8031 31.3748 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 61 k -15.4165 26.1668 47.8672 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 62 J -14.3653 34.6594 47.5672 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 63 U -14.3878 37.3920 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 64 j -11.8439 19.9315 58.8567 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 65 ( -16.8295 16.3469 59.1522 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 66 7 -14.2057 32.5437 45.3741 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 67 § -16.8567 28.0000 47.8672 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 68 $ -19.5105 31.6450 60.2521 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 69 € -15.7602 37.0881 46.6937 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 70 / -17.0365 26.4584 49.4087 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 71 C -14.3156 31.7346 45.3741 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 72 * -15.9910 26.1668 23.2420 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 73 ” -14.4789 16.6424 15.3877 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 74 ? -12.4110 25.8031 44.3469 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 75 { -16.6310 19.9315 59.1522 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 76 } -16.9699 19.9315 59.1522 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 77 , 25.8685 8.6465 14.0000 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 78 I -13.1399 28.3476 43.2416 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 79 ° -18.4970 19.9315 20.0853 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 80 K -14.1040 29.1734 46.8399 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 81 H -14.7693 37.2420 46.6937 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 82 q -1.4288 25.2850 46.8399 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 83 & -14.5790 34.7451 46.9080 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 84 ’ -14.2214 8.4926 15.1734 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 85 [ -14.5132 16.1930 57.9787 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 86 - 12.0950 18.5437 5.0619 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 87 Y -13.1286 34.2353 44.7150 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 88 Q -14.5049 48.2353 56.9591 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 89 " -14.4384 15.4773 18.5437 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 90 ! -16.8388 6.0853 48.5270 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 91 x -0.6824 31.0067 32.0339 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 92 ) -16.9893 16.9248 59.1522 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 93 = -1.1877 22.4322 24.3214 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 94 + -1.0603 24.4154 24.4154 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 95 X -14.4910 38.1116 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 96 » -1.1742 31.0028 25.6531 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 97 ' -17.7601 5.0619 15.1734 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 98 ¢ -19.7253 29.3832 48.2353 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 99 Z -14.4918 37.6056 45.5203 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 100 > -2.5175 19.3535 26.8266 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 101 ® -16.8522 41.3402 40.7623 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 102 © -16.8420 40.8266 38.4231 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 103 ] -14.4738 16.1930 57.9787 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 104 é -16.8105 29.0196 47.8672 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 105 z 0.3148 26.1668 31.0067 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 106 _ 33.5028 38.7790 7.1049 -Comic_Sans_MS.ttf 7 e 29.0196 31.0067 107 ¥ -11.7374 31.1560 42.8053 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 1 t -7.6647 24.4154 40.9766 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 2 h -14.5214 27.3402 48.0853 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 3 a 2.4643 27.8462 31.0067 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 4 n 1.0852 25.2031 32.0301 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 5 P -12.1979 25.7986 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 6 o 2.3353 28.2098 31.0067 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 7 e 2.2635 29.0196 31.0067 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 8 : -0.2539 6.5913 28.6598 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 9 r 2.0766 22.4322 31.3748 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 10 l -14.4445 5.9315 47.8672 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 11 i -10.3056 5.9315 42.5060 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 12 1 -12.4305 17.7944 44.3469 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 13 | -17.0038 5.0619 59.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 14 N -12.0026 40.7623 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 15 f -14.5039 25.3570 50.5822 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 16 g 2.3552 27.1902 46.1801 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 17 d -14.5878 29.0196 47.8672 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 18 W -12.1636 55.7857 46.6937 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 19 s -0.5365 23.9737 33.7172 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 20 c 2.4243 24.4154 31.0067 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 21 u 2.2552 25.6486 31.0067 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 22 3 -12.3438 26.8266 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 23 ~ 5.8272 29.5416 13.1304 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 24 # -12.3806 48.2353 45.8884 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 25 O -12.1668 40.8266 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 26 ` -14.3529 12.1668 14.0000 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 27 @ -14.4720 46.9080 50.3381 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 28 F -12.3676 29.7514 46.8399 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 29 S -9.8199 35.2549 43.5416 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 30 p 0.0439 26.0129 48.3770 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 31 “ -12.7256 16.2052 15.1734 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 32 % -14.5247 41.4940 48.0815 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 33 £ -14.4367 40.6123 52.6252 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 34 . 26.4817 7.2587 7.2587 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 35 2 -12.2382 26.1844 44.3469 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 36 5 -13.5092 29.0970 46.6937 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 37 m 1.4675 41.1864 33.4217 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 38 V -12.1269 33.7172 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 39 6 -12.0796 28.4417 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 40 w 2.2754 36.2783 32.1801 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 41 T -11.3842 38.6252 43.4734 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 42 M -12.2140 46.1801 46.6087 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 43 G -12.1668 36.4322 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 44 b -12.7699 29.0196 46.2566 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 45 9 -11.9288 30.7150 47.0619 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 46 ; 0.5865 9.4563 37.1646 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 47 D -12.1348 33.9315 46.2566 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 48 L -12.1525 28.2917 45.9489 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 49 y 2.0880 29.5371 46.1801 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 50 ‘ -11.9929 6.2353 15.1734 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 51 \ -11.1371 24.7790 47.3535 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 52 R -12.9945 31.5203 46.6937 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 53 < 0.0812 19.3535 26.8266 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 54 4 -12.1770 32.9854 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 55 8 -13.3174 29.5371 46.6937 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 56 0 -12.2409 32.0982 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 57 A -9.9056 34.7413 42.0000 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 58 E -12.5496 30.3469 46.2566 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 59 B -11.9778 29.1734 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 60 v 2.1426 25.8031 31.3748 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 61 k -13.5348 26.1668 47.8672 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 62 J -12.2469 34.6594 47.5672 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 63 U -12.1622 37.3920 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 64 j -9.5810 19.9315 58.8567 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 65 ( -14.5508 16.9248 59.1522 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 66 7 -11.8176 32.5437 45.3741 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 67 § -14.4070 28.0000 47.8672 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 68 $ -16.8950 31.6450 60.2521 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 69 € -13.2558 37.0881 46.6937 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 70 / -14.5804 26.4584 49.4087 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 71 C -12.2641 31.7346 45.3741 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 72 * -13.6553 26.1668 23.2420 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 73 ” -11.9425 16.6424 15.3877 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 74 ? -10.0056 25.8031 44.3469 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 75 { -14.4308 19.9315 59.1522 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 76 } -14.3811 19.9315 59.1522 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 77 , 28.3774 8.6465 14.0000 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 78 I -10.8472 28.3476 43.2416 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 79 ° -15.8997 19.9315 20.0853 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 80 K -12.1304 29.1734 46.8399 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 81 H -12.0556 37.2420 46.6937 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 82 q 1.2730 25.2850 46.8399 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 83 & -12.1256 34.7451 46.9080 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 84 ’ -12.3124 8.4926 15.1734 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 85 [ -11.9471 16.1930 57.9787 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 86 - 14.0589 18.5437 5.0619 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 87 Y -11.1259 34.2353 44.7150 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 88 Q -12.1213 48.2353 56.9591 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 89 " -12.2372 15.4773 18.5437 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 90 ! -14.5553 6.0853 48.5270 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 91 x 1.0669 31.0067 32.0339 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 92 ) -14.5808 16.3469 59.1522 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 93 = 1.0471 22.4322 24.3214 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 94 + 1.1874 24.4154 24.4154 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 95 X -12.1193 38.1116 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 96 » 1.3482 31.0028 25.6531 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 97 ' -15.2463 5.0619 15.1734 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 98 ¢ -17.1572 29.3832 48.2353 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 99 Z -12.0834 37.6056 45.5203 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 100 > 1.9326 17.3703 24.6297 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 101 ® -14.4279 41.3402 40.7623 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 102 © -14.4335 40.8266 38.4231 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 103 ] -12.1500 16.1930 57.9787 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 104 é -14.5136 29.0196 47.8672 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 105 z 2.2814 26.1668 31.0067 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 106 _ 35.7671 38.7790 7.1049 -Comic_Sans_MS.ttf 8 : 6.5913 28.6598 107 ¥ -9.5329 31.1560 42.8053 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 1 t -9.3505 24.4154 40.9766 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 2 h -16.3162 27.3402 48.0853 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 3 a 0.2727 27.8462 31.0067 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 4 n -0.7281 25.2031 32.0301 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 5 P -14.4828 25.7986 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 6 o 0.1953 28.2098 31.0067 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 7 e 0.4955 29.0196 31.0067 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 8 : -2.2016 6.5913 28.6598 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 9 r 0.1826 22.4322 31.3748 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 10 l -16.4077 5.9315 47.8672 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 11 i -12.3403 5.9315 42.5060 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 12 1 -14.0026 17.7944 44.3469 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 13 | -19.0108 5.0619 59.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 14 N -14.1288 40.7623 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 15 f -16.5295 25.3570 50.5822 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 16 g 0.4636 27.1902 46.1801 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 17 d -16.3293 29.0196 47.8672 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 18 W -14.0786 55.7857 46.6937 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 19 s -2.4276 23.9737 33.7172 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 20 c 0.3408 24.4154 31.0067 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 21 u 0.4475 25.6486 31.0067 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 22 3 -14.1990 26.8266 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 23 ~ 4.2178 29.5416 13.1304 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 24 # -14.3908 48.2353 45.8884 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 25 O -14.4374 40.8266 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 26 ` -16.3682 12.1668 14.0000 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 27 @ -16.3349 46.9080 50.3381 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 28 F -14.5232 29.7514 46.8399 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 29 S -11.7867 35.2549 43.5416 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 30 p -1.5326 26.0129 48.3770 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 31 “ -14.4819 16.2052 15.1734 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 32 % -16.7067 41.4940 48.0815 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 33 £ -16.2681 40.6123 52.6252 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 34 . 24.3851 7.2587 7.2587 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 35 2 -14.1000 26.1844 44.3469 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 36 5 -15.0768 29.0970 46.6937 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 37 m -0.7739 41.1864 33.4217 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 38 V -13.9663 33.7172 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 39 6 -14.3378 28.4417 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 40 w 0.3506 36.2783 32.1801 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 41 T -13.5718 38.6252 43.4734 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 42 M -14.1840 46.1801 46.6087 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 43 G -14.2169 36.4322 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 44 b -14.8707 29.0196 46.2566 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 45 9 -14.2544 30.7150 47.0619 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 46 ; -1.6616 9.4563 37.1646 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 47 D -14.1931 33.9315 46.2566 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 48 L -14.1683 28.2917 45.9489 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 49 y 0.0816 29.5371 46.1801 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 50 ‘ -14.1192 6.2353 15.1734 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 51 \ -13.0901 24.7790 47.3535 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 52 R -15.3189 31.5203 46.6937 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 53 < -0.2219 17.3703 24.6297 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 54 4 -14.3141 32.9854 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 55 8 -15.1521 29.5371 46.6937 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 56 0 -13.9415 32.0982 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 57 A -11.5506 34.7413 42.0000 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 58 E -14.3200 30.3469 46.2566 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 59 B -14.2700 29.1734 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 60 v 0.2772 25.8031 31.3748 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 61 k -15.3606 26.1668 47.8672 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 62 J -14.1469 34.6594 47.5672 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 63 U -14.1130 37.3920 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 64 j -11.5115 19.9315 58.8567 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 65 ( -16.4053 16.3469 59.1522 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 66 7 -13.9377 32.5437 45.3741 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 67 § -16.5201 28.0000 47.8672 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 68 $ -19.0213 31.6450 60.2521 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 69 € -15.6513 37.0881 46.6937 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 70 / -16.5560 26.4584 49.4087 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 71 C -13.7908 31.7346 45.3741 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 72 * -15.7181 26.1668 23.2420 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 73 ” -14.1875 16.6424 15.3877 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 74 ? -11.9346 25.8031 44.3469 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 75 { -16.6712 19.9315 59.1522 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 76 } -16.1501 19.9315 59.1522 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 77 , 26.1471 8.6465 14.0000 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 78 I -12.9848 28.3476 43.2416 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 79 ° -18.1205 19.9315 20.0853 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 80 K -14.0756 29.1734 46.8399 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 81 H -14.2364 37.2420 46.6937 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 82 q -0.8553 25.2850 46.8399 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 83 & -14.3641 34.7451 46.9080 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 84 ’ -14.0747 8.4926 15.1734 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 85 [ -14.0847 16.1930 57.9787 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 86 - 12.2758 18.5437 5.0619 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 87 Y -12.9506 34.2353 44.7150 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 88 Q -14.2348 48.2353 56.9591 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 89 " -14.2235 15.4773 18.5437 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 90 ! -16.3455 6.0853 48.5270 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 91 x -0.7137 31.0067 32.0339 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 92 ) -16.6300 16.9248 59.1522 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 93 = -0.8612 22.4322 24.3214 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 94 + -0.8892 24.4154 24.4154 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 95 X -14.1872 38.1116 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 96 » -0.2782 31.0028 25.6531 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 97 ' -17.2554 5.0619 15.1734 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 98 ¢ -19.1300 29.3832 48.2353 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 99 Z -14.0800 37.6056 45.5203 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 100 > -1.9273 19.3535 26.8266 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 101 ® -16.3604 41.3402 40.7623 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 102 © -16.5314 40.8266 38.4231 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 103 ] -14.3848 16.1930 57.9787 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 104 é -16.5719 29.0196 47.8672 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 105 z 0.2023 26.1668 31.0067 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 106 _ 33.6277 38.7790 7.1049 -Comic_Sans_MS.ttf 9 r 22.4322 31.3748 107 ¥ -11.6187 31.1560 42.8053 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 1 t 6.8917 24.4154 40.9766 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 2 h 0.0000 27.3402 48.0853 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 3 a 17.0061 27.8462 31.0067 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 4 n 15.9325 25.2031 32.0301 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 5 P 2.4145 25.7986 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 6 o 16.8220 28.2098 31.0067 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 7 e 17.0098 29.0196 31.0067 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 8 : 14.5196 6.5913 28.6598 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 9 r 16.2542 22.4322 31.3748 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 10 l -0.0900 5.9315 47.8672 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 11 i 4.3291 5.9315 42.5060 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 12 1 2.2657 17.7944 44.3469 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 13 | -2.6280 5.0619 59.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 14 N 2.4448 40.7623 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 15 f -0.1575 25.3570 50.5822 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 16 g 16.7290 27.1902 46.1801 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 17 d -0.0371 29.0196 47.8672 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 18 W 2.1384 55.7857 46.6937 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 19 s 14.2371 23.9737 33.7172 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 20 c 16.7436 24.4154 31.0067 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 21 u 16.9466 25.6486 31.0067 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 22 3 2.3507 26.8266 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 23 ~ 20.5749 29.5416 13.1304 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 24 # 2.2212 48.2353 45.8884 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 25 O 2.4162 40.8266 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 26 ` -0.0871 12.1668 14.0000 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 27 @ 0.1599 46.9080 50.3381 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 28 F 2.1845 29.7514 46.8399 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 29 S 4.8225 35.2549 43.5416 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 30 p 14.5765 26.0129 48.3770 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 31 “ 1.5689 16.2052 15.1734 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 32 % -0.1643 41.4940 48.0815 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 33 £ -0.0909 40.6123 52.6252 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 34 . 41.1973 7.2587 7.2587 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 35 2 2.4378 26.1844 44.3469 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 36 5 1.2568 29.0970 46.6937 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 37 m 15.9599 41.1864 33.4217 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 38 V 2.3052 33.7172 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 39 6 2.4280 28.4417 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 40 w 16.8151 36.2783 32.1801 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 41 T 3.0558 38.6252 43.4734 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 42 M 2.7358 46.1801 46.6087 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 43 G 2.3367 36.4322 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 44 b 1.7093 29.0196 46.2566 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 45 9 2.4970 30.7150 47.0619 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 46 ; 15.0228 9.4563 37.1646 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 47 D 2.3238 33.9315 46.2566 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 48 L 2.3525 28.2917 45.9489 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 49 y 17.1057 29.5371 46.1801 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 50 ‘ 2.2574 6.2353 15.1734 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 51 \ 3.1429 24.7790 47.3535 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 52 R 1.1903 31.5203 46.6937 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 53 < 16.4188 17.3703 24.6297 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 54 4 2.4326 32.9854 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 55 8 1.0121 29.5371 46.6937 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 56 0 2.2199 32.0982 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 57 A 4.9519 34.7413 42.0000 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 58 E 2.2359 30.3469 46.2566 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 59 B 2.3469 29.1734 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 60 v 16.9388 25.8031 31.3748 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 61 k 1.0164 26.1668 47.8672 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 62 J 2.4210 34.6594 47.5672 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 63 U 2.5109 37.3920 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 64 j 4.9809 19.9315 58.8567 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 65 ( 0.0143 16.3469 59.1522 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 66 7 2.5802 32.5437 45.3741 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 67 § -0.0500 28.0000 47.8672 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 68 $ -2.5443 31.6450 60.2521 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 69 € 1.0506 37.0881 46.6937 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 70 / -0.2280 26.4584 49.4087 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 71 C 2.4129 31.7346 45.3741 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 72 * 0.9384 26.1668 23.2420 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 73 ” 2.4326 16.6424 15.3877 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 74 ? 4.4085 25.8031 44.3469 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 75 { 0.0812 19.9315 59.1522 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 76 } 0.0909 19.9315 59.1522 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 77 , 42.7415 8.6465 14.0000 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 78 I 3.7141 28.3476 43.2416 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 79 ° -1.3916 19.9315 20.0853 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 80 K 2.1793 29.1734 46.8399 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 81 H 2.0952 37.2420 46.6937 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 82 q 15.6714 25.2850 46.8399 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 83 & 2.4270 34.7451 46.9080 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 84 ’ 2.4010 8.4926 15.1734 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 85 [ 2.3826 16.1930 57.9787 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 86 - 28.8865 18.5437 5.0619 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 87 Y 3.6510 34.2353 44.7150 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 88 Q 2.2835 48.2353 56.9591 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 89 " 2.3112 15.4773 18.5437 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 90 ! 0.0760 6.0853 48.5270 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 91 x 15.9204 31.0067 32.0339 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 92 ) 0.1780 16.9248 59.1522 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 93 = 15.9611 22.4322 24.3214 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 94 + 15.7134 24.4154 24.4154 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 95 X 2.3090 38.1116 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 96 » 15.9885 31.0028 25.6531 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 97 ' -0.8666 5.0619 15.1734 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 98 ¢ -2.7605 29.3832 48.2353 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 99 Z 2.2830 37.6056 45.5203 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 100 > 14.4734 19.3535 26.8266 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 101 ® 0.0284 41.3402 40.7623 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 102 © -0.0864 40.8266 38.4231 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 103 ] 2.4364 16.1930 57.9787 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 104 é 0.0000 29.0196 47.8672 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 105 z 16.9067 26.1668 31.0067 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 106 _ 50.2308 38.7790 7.1049 -Comic_Sans_MS.ttf 10 l 5.9315 47.8672 107 ¥ 4.9748 31.1560 42.8053 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 1 t 2.8669 24.4154 40.9766 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 2 h -4.1993 27.3402 48.0853 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 3 a 12.5916 27.8462 31.0067 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 4 n 11.6598 25.2031 32.0301 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 5 P -1.8766 25.7986 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 6 o 12.7636 28.2098 31.0067 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 7 e 12.7241 29.0196 31.0067 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 8 : 10.1730 6.5913 28.6598 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 9 r 12.3732 22.4322 31.3748 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 10 l -4.1772 5.9315 47.8672 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 11 i -0.2446 5.9315 42.5060 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 12 1 -2.0802 17.7944 44.3469 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 13 | -6.4949 5.0619 59.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 14 N -1.9036 40.7623 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 15 f -4.1980 25.3570 50.5822 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 16 g 12.5856 27.1902 46.1801 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 17 d -4.1613 29.0196 47.8672 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 18 W -1.9243 55.7857 46.6937 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 19 s 9.9168 23.9737 33.7172 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 20 c 12.6657 24.4154 31.0067 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 21 u 12.5114 25.6486 31.0067 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 22 3 -1.9238 26.8266 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 23 ~ 16.4017 29.5416 13.1304 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 24 # -2.0317 48.2353 45.8884 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 25 O -1.9189 40.8266 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 26 ` -4.3144 12.1668 14.0000 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 27 @ -4.2322 46.9080 50.3381 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 28 F -1.8409 29.7514 46.8399 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 29 S 0.6750 35.2549 43.5416 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 30 p 10.5987 26.0129 48.3770 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 31 “ -2.5258 16.2052 15.1734 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 32 % -4.3150 41.4940 48.0815 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 33 £ -4.1850 40.6123 52.6252 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 34 . 37.0235 7.2587 7.2587 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 35 2 -1.9221 26.1844 44.3469 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 36 5 -3.1042 29.0970 46.6937 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 37 m 11.5207 41.1864 33.4217 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 38 V -1.8307 33.7172 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 39 6 -1.7538 28.4417 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 40 w 12.8028 36.2783 32.1801 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 41 T -1.0903 38.6252 43.4734 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 42 M -2.0189 46.1801 46.6087 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 43 G -1.8826 36.4322 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 44 b -2.7640 29.0196 46.2566 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 45 9 -1.9028 30.7150 47.0619 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 46 ; 10.6881 9.4563 37.1646 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 47 D -1.6796 33.9315 46.2566 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 48 L -1.8821 28.2917 45.9489 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 49 y 12.6689 29.5371 46.1801 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 50 ‘ -1.8431 6.2353 15.1734 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 51 \ -0.8877 24.7790 47.3535 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 52 R -2.9165 31.5203 46.6937 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 53 < 12.1675 17.3703 24.6297 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 54 4 -2.0022 32.9854 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 55 8 -2.9786 29.5371 46.6937 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 56 0 -2.0896 32.0982 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 57 A 0.5871 34.7413 42.0000 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 58 E -1.6839 30.3469 46.2566 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 59 B -1.9730 29.1734 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 60 v 12.6370 25.8031 31.3748 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 61 k -3.0945 26.1668 47.8672 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 62 J -1.9935 34.6594 47.5672 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 63 U -1.8739 37.3920 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 64 j 0.7371 19.9315 58.8567 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 65 ( -4.2327 16.3469 59.1522 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 66 7 -1.8019 32.5437 45.3741 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 67 § -3.9339 28.0000 47.8672 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 68 $ -6.7937 31.6450 60.2521 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 69 € -2.9731 37.0881 46.6937 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 70 / -4.5933 26.4584 49.4087 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 71 C -1.7402 31.7346 45.3741 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 72 * -3.3008 26.1668 23.2420 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 73 ” -1.7038 16.6424 15.3877 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 74 ? 0.1947 25.8031 44.3469 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 75 { -4.1007 19.9315 59.1522 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 76 } -4.1878 19.9315 59.1522 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 77 , 38.8072 8.6465 14.0000 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 78 I -0.6063 28.3476 43.2416 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 79 ° -5.5808 19.9315 20.0853 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 80 K -1.9216 29.1734 46.8399 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 81 H -1.8409 37.2420 46.6937 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 82 q 11.5805 25.2850 46.8399 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 83 & -1.7597 34.7451 46.9080 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 84 ’ -2.0068 8.4926 15.1734 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 85 [ -1.7538 16.1930 57.9787 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 86 - 24.6084 18.5437 5.0619 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 87 Y -0.7508 34.2353 44.7150 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 88 Q -1.7538 48.2353 56.9591 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 89 " -1.7385 15.4773 18.5437 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 90 ! -4.2430 6.0853 48.5270 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 91 x 11.8088 31.0067 32.0339 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 92 ) -4.4743 16.9248 59.1522 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 93 = 11.3219 22.4322 24.3214 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 94 + 11.5045 24.4154 24.4154 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 95 X -1.8312 38.1116 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 96 » 11.9333 31.0028 25.6531 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 97 ' -4.7535 5.0619 15.1734 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 98 ¢ -6.7810 29.3832 48.2353 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 99 Z -1.8409 37.6056 45.5203 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 100 > 10.5743 19.3535 26.8266 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 101 ® -4.1840 41.3402 40.7623 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 102 © -4.2235 40.8266 38.4231 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 103 ] -1.7839 16.1930 57.9787 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 104 é -3.9334 29.0196 47.8672 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 105 z 12.4270 26.1668 31.0067 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 106 _ 46.1032 38.7790 7.1049 -Comic_Sans_MS.ttf 11 i 5.9315 42.5060 107 ¥ 0.8324 31.1560 42.8053 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 1 t 4.3824 24.4154 40.9766 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 2 h -2.2947 27.3402 48.0853 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 3 a 14.3496 27.8462 31.0067 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 4 n 13.4499 25.2031 32.0301 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 5 P 0.0083 25.7986 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 6 o 14.5017 28.2098 31.0067 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 7 e 14.5182 29.0196 31.0067 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 8 : 11.9963 6.5913 28.6598 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 9 r 14.0181 22.4322 31.3748 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 10 l -2.2097 5.9315 47.8672 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 11 i 1.5963 5.9315 42.5060 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 12 1 0.0133 17.7944 44.3469 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 13 | -4.8219 5.0619 59.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 14 N -0.2666 40.7623 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 15 f -2.2507 25.3570 50.5822 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 16 g 14.4265 27.1902 46.1801 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 17 d -2.3840 29.0196 47.8672 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 18 W -0.1169 55.7857 46.6937 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 19 s 11.8416 23.9737 33.7172 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 20 c 14.4410 24.4154 31.0067 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 21 u 14.5053 25.6486 31.0067 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 22 3 -0.0760 26.8266 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 23 ~ 18.3638 29.5416 13.1304 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 24 # -0.5392 48.2353 45.8884 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 25 O 0.1183 40.8266 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 26 ` -2.2871 12.1668 14.0000 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 27 @ -2.3409 46.9080 50.3381 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 28 F 0.0597 29.7514 46.8399 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 29 S 2.4304 35.2549 43.5416 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 30 p 12.1944 26.0129 48.3770 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 31 “ -0.9917 16.2052 15.1734 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 32 % -2.4800 41.4940 48.0815 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 33 £ -2.2278 40.6123 52.6252 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 34 . 38.8000 7.2587 7.2587 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 35 2 -0.1385 26.1844 44.3469 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 36 5 -1.3921 29.0970 46.6937 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 37 m 13.4409 41.1864 33.4217 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 38 V -0.1414 33.7172 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 39 6 0.2030 28.4417 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 40 w 14.7676 36.2783 32.1801 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 41 T 0.8734 38.6252 43.4734 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 42 M -0.0119 46.1801 46.6087 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 43 G 0.1683 36.4322 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 44 b -0.8591 29.0196 46.2566 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 45 9 -0.2897 30.7150 47.0619 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 46 ; 12.8789 9.4563 37.1646 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 47 D 0.1594 33.9315 46.2566 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 48 L -0.0945 28.2917 45.9489 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 49 y 14.4303 29.5371 46.1801 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 50 ‘ 0.0343 6.2353 15.1734 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 51 \ 0.7487 24.7790 47.3535 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 52 R -1.4786 31.5203 46.6937 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 53 < 12.2896 19.3535 26.8266 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 54 4 -0.1158 32.9854 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 55 8 -1.2004 29.5371 46.6937 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 56 0 0.0287 32.0982 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 57 A 2.0847 34.7413 42.0000 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 58 E -0.0430 30.3469 46.2566 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 59 B -0.1218 29.1734 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 60 v 14.4303 25.8031 31.3748 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 61 k -0.8806 26.1668 47.8672 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 62 J 0.1028 34.6594 47.5672 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 63 U -0.1802 37.3920 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 64 j 2.6743 19.9315 58.8567 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 65 ( -2.1488 16.9248 59.1522 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 66 7 0.1854 32.5437 45.3741 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 67 § -2.3808 28.0000 47.8672 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 68 $ -4.9063 31.6450 60.2521 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 69 € -1.2595 37.0881 46.6937 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 70 / -2.4952 26.4584 49.4087 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 71 C 0.2231 31.7346 45.3741 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 72 * -1.2416 26.1668 23.2420 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 73 ” 0.0070 16.6424 15.3877 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 74 ? 2.4341 25.8031 44.3469 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 75 { -2.5911 19.9315 59.1522 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 76 } -2.0054 19.9315 59.1522 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 77 , 40.5438 8.6465 14.0000 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 78 I 1.3651 28.3476 43.2416 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 79 ° -3.8210 19.9315 20.0853 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 80 K -0.0945 29.1734 46.8399 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 81 H 0.0950 37.2420 46.6937 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 82 q 13.3828 25.2850 46.8399 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 83 & -0.0389 34.7451 46.9080 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 84 ’ -0.0797 8.4926 15.1734 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 85 [ 0.0045 16.1930 57.9787 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 86 - 26.2944 18.5437 5.0619 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 87 Y 1.2374 34.2353 44.7150 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 88 Q 0.0147 48.2353 56.9591 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 89 " -0.2809 15.4773 18.5437 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 90 ! -2.4595 6.0853 48.5270 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 91 x 13.2407 31.0067 32.0339 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 92 ) -2.1743 16.3469 59.1522 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 93 = 13.2079 22.4322 24.3214 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 94 + 13.3402 24.4154 24.4154 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 95 X -0.2247 38.1116 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 96 » 13.5209 31.0028 25.6531 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 97 ' -3.1942 5.0619 15.1734 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 98 ¢ -4.9748 29.3832 48.2353 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 99 Z -0.2336 37.6056 45.5203 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 100 > 13.9791 17.3703 24.6297 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 101 ® -2.2370 41.3402 40.7623 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 102 © -2.4350 40.8266 38.4231 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 103 ] 0.0958 16.1930 57.9787 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 104 é -2.3885 29.0196 47.8672 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 105 z 14.5039 26.1668 31.0067 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 106 _ 48.2253 38.7790 7.1049 -Comic_Sans_MS.ttf 12 1 17.7944 44.3469 107 ¥ 2.8083 31.1560 42.8053 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 1 t 9.4738 24.4154 40.9766 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 2 h 2.8485 27.3402 48.0853 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 3 a 19.4217 27.8462 31.0067 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 4 n 18.0504 25.2031 32.0301 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 5 P 5.1505 25.7986 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 6 o 19.3411 28.2098 31.0067 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 7 e 19.4841 29.0196 31.0067 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 8 : 16.9589 6.5913 28.6598 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 9 r 19.2830 22.4322 31.3748 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 10 l 2.5727 5.9315 47.8672 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 11 i 6.7591 5.9315 42.5060 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 12 1 5.1624 17.7944 44.3469 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 13 | 0.0657 5.0619 59.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 14 N 5.1204 40.7623 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 15 f 2.5275 25.3570 50.5822 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 16 g 19.2961 27.1902 46.1801 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 17 d 2.5514 29.0196 47.8672 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 18 W 4.8269 55.7857 46.6937 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 19 s 16.5173 23.9737 33.7172 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 20 c 19.2576 24.4154 31.0067 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 21 u 19.4846 25.6486 31.0067 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 22 3 5.0035 26.8266 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 23 ~ 23.2400 29.5416 13.1304 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 24 # 4.5546 48.2353 45.8884 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 25 O 4.9735 40.8266 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 26 ` 2.5969 12.1668 14.0000 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 27 @ 2.7197 46.9080 50.3381 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 28 F 4.9059 29.7514 46.8399 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 29 S 7.4872 35.2549 43.5416 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 30 p 17.2702 26.0129 48.3770 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 31 “ 4.1718 16.2052 15.1734 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 32 % 2.1856 41.4940 48.0815 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 33 £ 2.5310 40.6123 52.6252 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 34 . 43.8952 7.2587 7.2587 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 35 2 4.9892 26.1844 44.3469 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 36 5 3.6577 29.0970 46.6937 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 37 m 18.5492 41.1864 33.4217 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 38 V 4.8528 33.7172 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 39 6 4.9573 28.4417 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 40 w 19.5370 36.2783 32.1801 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 41 T 5.7003 38.6252 43.4734 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 42 M 5.0655 46.1801 46.6087 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 43 G 4.8495 36.4322 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 44 b 4.1263 29.0196 46.2566 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 45 9 4.9021 30.7150 47.0619 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 46 ; 17.5812 9.4563 37.1646 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 47 D 4.8269 33.9315 46.2566 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 48 L 4.7292 28.2917 45.9489 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 49 y 19.4466 29.5371 46.1801 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 50 ‘ 4.8366 6.2353 15.1734 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 51 \ 5.5820 24.7790 47.3535 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 52 R 3.7902 31.5203 46.6937 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 53 < 17.1035 19.3535 26.8266 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 54 4 4.9080 32.9854 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 55 8 3.7430 29.5371 46.6937 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 56 0 4.8171 32.0982 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 57 A 7.2966 34.7413 42.0000 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 58 E 4.8821 30.3469 46.2566 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 59 B 4.7478 29.1734 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 60 v 19.2100 25.8031 31.3748 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 61 k 3.6201 26.1668 47.8672 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 62 J 4.7116 34.6594 47.5672 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 63 U 4.9951 37.3920 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 64 j 7.4633 19.9315 58.8567 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 65 ( 2.8064 16.9248 59.1522 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 66 7 4.9723 32.5437 45.3741 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 67 § 2.5969 28.0000 47.8672 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 68 $ -0.0455 31.6450 60.2521 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 69 € 3.8921 37.0881 46.6937 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 70 / 2.5801 26.4584 49.4087 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 71 C 5.0542 31.7346 45.3741 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 72 * 3.4566 26.1668 23.2420 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 73 ” 5.0106 16.6424 15.3877 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 74 ? 6.9593 25.8031 44.3469 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 75 { 2.5097 19.9315 59.1522 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 76 } 2.7354 19.9315 59.1522 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 77 , 45.3464 8.6465 14.0000 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 78 I 6.2319 28.3476 43.2416 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 79 ° 1.1831 19.9315 20.0853 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 80 K 4.7560 29.1734 46.8399 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 81 H 4.8219 37.2420 46.6937 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 82 q 18.5429 25.2850 46.8399 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 83 & 4.8366 34.7451 46.9080 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 84 ’ 4.6590 8.4926 15.1734 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 85 [ 4.6586 16.1930 57.9787 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 86 - 31.1587 18.5437 5.0619 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 87 Y 5.9110 34.2353 44.7150 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 88 Q 4.8754 48.2353 56.9591 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 89 " 4.8618 15.4773 18.5437 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 90 ! 2.3452 6.0853 48.5270 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 91 x 18.4412 31.0067 32.0339 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 92 ) 2.3869 16.3469 59.1522 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 93 = 18.1766 22.4322 24.3214 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 94 + 18.0375 24.4154 24.4154 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 95 X 5.0748 38.1116 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 96 » 18.5284 31.0028 25.6531 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 97 ' 1.8278 5.0619 15.1734 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 98 ¢ -0.1122 29.3832 48.2353 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 99 Z 5.2787 37.6056 45.5203 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 100 > 19.2205 17.3703 24.6297 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 101 ® 2.6423 41.3402 40.7623 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 102 © 2.5612 40.8266 38.4231 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 103 ] 5.0691 16.1930 57.9787 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 104 é 2.6413 29.0196 47.8672 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 105 z 19.5088 26.1668 31.0067 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 106 _ 53.0574 38.7790 7.1049 -Comic_Sans_MS.ttf 13 | 5.0619 59.5203 107 ¥ 7.7069 31.1560 42.8053 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 1 t 4.7061 24.4154 40.9766 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 2 h -2.5187 27.3402 48.0853 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 3 a 14.7275 27.8462 31.0067 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 4 n 13.6361 25.2031 32.0301 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 5 P 0.2224 25.7986 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 6 o 14.3654 28.2098 31.0067 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 7 e 14.3724 29.0196 31.0067 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 8 : 11.9926 6.5913 28.6598 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 9 r 14.4229 22.4322 31.3748 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 10 l -2.8570 5.9315 47.8672 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 11 i 2.0097 5.9315 42.5060 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 12 1 -0.2873 17.7944 44.3469 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 13 | -5.0061 5.0619 59.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 14 N 0.0018 40.7623 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 15 f -2.5564 25.3570 50.5822 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 16 g 14.2616 27.1902 46.1801 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 17 d -2.6550 29.0196 47.8672 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 18 W -0.1598 55.7857 46.6937 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 19 s 11.7604 23.9737 33.7172 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 20 c 14.4817 24.4154 31.0067 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 21 u 14.3863 25.6486 31.0067 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 22 3 -0.0969 26.8266 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 23 ~ 17.9523 29.5416 13.1304 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 24 # -0.3278 48.2353 45.8884 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 25 O 0.1166 40.8266 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 26 ` -2.2540 12.1668 14.0000 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 27 @ -2.5789 46.9080 50.3381 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 28 F 0.2861 29.7514 46.8399 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 29 S 2.2930 35.2549 43.5416 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 30 p 12.2311 26.0129 48.3770 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 31 “ -0.6273 16.2052 15.1734 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 32 % -2.8975 41.4940 48.0815 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 33 £ -2.1905 40.6123 52.6252 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 34 . 38.5725 7.2587 7.2587 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 35 2 0.0922 26.1844 44.3469 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 36 5 -1.0839 29.0970 46.6937 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 37 m 13.3108 41.1864 33.4217 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 38 V 0.0818 33.7172 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 39 6 -0.0440 28.4417 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 40 w 14.5406 36.2783 32.1801 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 41 T 0.8030 38.6252 43.4734 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 42 M 0.1476 46.1801 46.6087 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 43 G -0.2053 36.4322 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 44 b -0.7849 29.0196 46.2566 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 45 9 -0.1393 30.7150 47.0619 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 46 ; 12.7598 9.4563 37.1646 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 47 D 0.1371 33.9315 46.2566 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 48 L 0.1792 28.2917 45.9489 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 49 y 14.4366 29.5371 46.1801 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 50 ‘ -0.1075 6.2353 15.1734 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 51 \ 0.8336 24.7790 47.3535 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 52 R -1.2318 31.5203 46.6937 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 53 < 14.1816 17.3703 24.6297 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 54 4 -0.1998 32.9854 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 55 8 -0.8890 29.5371 46.6937 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 56 0 -0.1566 32.0982 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 57 A 2.0648 34.7413 42.0000 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 58 E -0.0269 30.3469 46.2566 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 59 B -0.1001 29.1734 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 60 v 14.6365 25.8031 31.3748 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 61 k -0.7622 26.1668 47.8672 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 62 J -0.1784 34.6594 47.5672 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 63 U -0.0172 37.3920 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 64 j 2.4714 19.9315 58.8567 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 65 ( -2.6793 16.3469 59.1522 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 66 7 -0.1834 32.5437 45.3741 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 67 § -2.4434 28.0000 47.8672 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 68 $ -5.0291 31.6450 60.2521 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 69 € -1.3658 37.0881 46.6937 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 70 / -2.4556 26.4584 49.4087 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 71 C 0.2447 31.7346 45.3741 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 72 * -1.8301 26.1668 23.2420 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 73 ” -0.2971 16.6424 15.3877 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 74 ? 2.3680 25.8031 44.3469 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 75 { -1.9868 19.9315 59.1522 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 76 } -2.3801 19.9315 59.1522 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 77 , 40.7912 8.6465 14.0000 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 78 I 1.1817 28.3476 43.2416 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 79 ° -3.7115 19.9315 20.0853 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 80 K 0.0133 29.1734 46.8399 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 81 H -0.0144 37.2420 46.6937 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 82 q 13.4626 25.2850 46.8399 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 83 & -0.2414 34.7451 46.9080 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 84 ’ -0.0017 8.4926 15.1734 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 85 [ -0.2742 16.1930 57.9787 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 86 - 26.6420 18.5437 5.0619 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 87 Y 1.0622 34.2353 44.7150 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 88 Q -0.0623 48.2353 56.9591 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 89 " 0.0909 15.4773 18.5437 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 90 ! -2.0915 6.0853 48.5270 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 91 x 13.3579 31.0067 32.0339 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 92 ) -2.3196 16.9248 59.1522 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 93 = 13.1861 22.4322 24.3214 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 94 + 13.2563 24.4154 24.4154 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 95 X -0.2908 38.1116 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 96 » 13.5692 31.0028 25.6531 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 97 ' -2.8545 5.0619 15.1734 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 98 ¢ -5.0294 29.3832 48.2353 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 99 Z 0.0784 37.6056 45.5203 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 100 > 12.4481 19.3535 26.8266 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 101 ® -2.4539 41.3402 40.7623 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 102 © -2.2917 40.8266 38.4231 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 103 ] -0.0437 16.1930 57.9787 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 104 é -2.3768 29.0196 47.8672 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 105 z 14.6897 26.1668 31.0067 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 106 _ 48.0174 38.7790 7.1049 -Comic_Sans_MS.ttf 14 N 40.7623 45.5203 107 ¥ 2.4786 31.1560 42.8053 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 1 t 6.7465 24.4154 40.9766 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 2 h -0.1319 27.3402 48.0853 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 3 a 16.7248 27.8462 31.0067 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 4 n 15.6916 25.2031 32.0301 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 5 P 2.2862 25.7986 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 6 o 16.9543 28.2098 31.0067 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 7 e 16.8476 29.0196 31.0067 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 8 : 14.6147 6.5913 28.6598 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 9 r 16.3913 22.4322 31.3748 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 10 l 0.0080 5.9315 47.8672 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 11 i 3.9876 5.9315 42.5060 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 12 1 2.2700 17.7944 44.3469 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 13 | -2.3952 5.0619 59.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 14 N 2.5993 40.7623 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 15 f 0.1940 25.3570 50.5822 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 16 g 17.4105 27.1902 46.1801 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 17 d 0.1388 29.0196 47.8672 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 18 W 2.3116 55.7857 46.6937 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 19 s 14.2924 23.9737 33.7172 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 20 c 16.7454 24.4154 31.0067 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 21 u 16.8546 25.6486 31.0067 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 22 3 2.3497 26.8266 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 23 ~ 20.4996 29.5416 13.1304 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 24 # 1.8633 48.2353 45.8884 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 25 O 2.6055 40.8266 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 26 ` -0.0835 12.1668 14.0000 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 27 @ -0.0172 46.9080 50.3381 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 28 F 2.6501 29.7514 46.8399 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 29 S 4.8788 35.2549 43.5416 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 30 p 14.4639 26.0129 48.3770 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 31 “ 1.6616 16.2052 15.1734 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 32 % -0.4571 41.4940 48.0815 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 33 £ 0.0046 40.6123 52.6252 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 34 . 40.9967 7.2587 7.2587 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 35 2 1.8847 26.1844 44.3469 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 36 5 1.0696 29.0970 46.6937 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 37 m 15.9620 41.1864 33.4217 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 38 V 2.2322 33.7172 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 39 6 2.4028 28.4417 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 40 w 16.9637 36.2783 32.1801 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 41 T 3.2220 38.6252 43.4734 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 42 M 2.3878 46.1801 46.6087 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 43 G 2.4326 36.4322 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 44 b 1.8024 29.0196 46.2566 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 45 9 2.4173 30.7150 47.0619 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 46 ; 14.9746 9.4563 37.1646 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 47 D 2.3052 33.9315 46.2566 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 48 L 2.4507 28.2917 45.9489 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 49 y 16.7674 29.5371 46.1801 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 50 ‘ 2.5915 6.2353 15.1734 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 51 \ 3.1168 24.7790 47.3535 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 52 R 1.1724 31.5203 46.6937 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 53 < 16.2565 17.3703 24.6297 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 54 4 2.2635 32.9854 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 55 8 1.2934 29.5371 46.6937 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 56 0 2.3097 32.0982 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 57 A 4.6832 34.7413 42.0000 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 58 E 2.8060 30.3469 46.2566 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 59 B 2.2625 29.1734 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 60 v 17.1681 25.8031 31.3748 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 61 k 1.1625 26.1668 47.8672 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 62 J 2.5652 34.6594 47.5672 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 63 U 2.4665 37.3920 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 64 j 4.9846 19.9315 58.8567 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 65 ( 0.0847 16.3469 59.1522 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 66 7 2.3202 32.5437 45.3741 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 67 § 0.1440 28.0000 47.8672 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 68 $ -2.5372 31.6450 60.2521 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 69 € 1.3493 37.0881 46.6937 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 70 / -0.0029 26.4584 49.4087 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 71 C 2.6014 31.7346 45.3741 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 72 * 0.8621 26.1668 23.2420 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 73 ” 2.3052 16.6424 15.3877 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 74 ? 4.4609 25.8031 44.3469 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 75 { -0.1599 19.9315 59.1522 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 76 } 0.0605 19.9315 59.1522 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 77 , 42.8291 8.6465 14.0000 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 78 I 3.7536 28.3476 43.2416 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 79 ° -1.4227 19.9315 20.0853 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 80 K 2.1778 29.1734 46.8399 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 81 H 2.2300 37.2420 46.6937 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 82 q 15.7468 25.2850 46.8399 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 83 & 2.1219 34.7451 46.9080 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 84 ’ 2.4325 8.4926 15.1734 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 85 [ 2.4302 16.1930 57.9787 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 86 - 28.9142 18.5437 5.0619 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 87 Y 3.7194 34.2353 44.7150 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 88 Q 2.4770 48.2353 56.9591 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 89 " 2.1670 15.4773 18.5437 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 90 ! -0.0452 6.0853 48.5270 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 91 x 15.8255 31.0067 32.0339 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 92 ) -0.1364 16.9248 59.1522 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 93 = 15.5954 22.4322 24.3214 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 94 + 15.4227 24.4154 24.4154 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 95 X 2.3633 38.1116 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 96 » 15.9486 31.0028 25.6531 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 97 ' -1.0137 5.0619 15.1734 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 98 ¢ -2.4295 29.3832 48.2353 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 99 Z 2.6030 37.6056 45.5203 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 100 > 14.7583 19.3535 26.8266 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 101 ® -0.1631 41.3402 40.7623 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 102 © 0.0611 40.8266 38.4231 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 103 ] 2.2272 16.1930 57.9787 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 104 é 0.0984 29.0196 47.8672 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 105 z 16.8117 26.1668 31.0067 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 106 _ 50.4620 38.7790 7.1049 -Comic_Sans_MS.ttf 15 f 25.3570 50.5822 107 ¥ 5.1166 31.1560 42.8053 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 1 t -9.9482 24.4154 40.9766 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 2 h -16.7363 27.3402 48.0853 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 3 a 0.0960 27.8462 31.0067 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 4 n -0.8449 25.2031 32.0301 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 5 P -14.6805 25.7986 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 6 o -0.1714 28.2098 31.0067 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 7 e -0.1354 29.0196 31.0067 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 8 : -2.1528 6.5913 28.6598 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 9 r -0.2710 22.4322 31.3748 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 10 l -16.9412 5.9315 47.8672 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 11 i -12.3484 5.9315 42.5060 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 12 1 -14.6029 17.7944 44.3469 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 13 | -19.4707 5.0619 59.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 14 N -14.3254 40.7623 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 15 f -16.7779 25.3570 50.5822 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 16 g -0.1372 27.1902 46.1801 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 17 d -17.0263 29.0196 47.8672 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 18 W -14.5603 55.7857 46.6937 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 19 s -3.0009 23.9737 33.7172 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 20 c 0.0255 24.4154 31.0067 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 21 u 0.2326 25.6486 31.0067 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 22 3 -14.6722 26.8266 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 23 ~ 3.8529 29.5416 13.1304 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 24 # -14.7243 48.2353 45.8884 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 25 O -14.3857 40.8266 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 26 ` -16.9969 12.1668 14.0000 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 27 @ -16.8697 46.9080 50.3381 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 28 F -14.5664 29.7514 46.8399 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 29 S -12.1630 35.2549 43.5416 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 30 p -2.2413 26.0129 48.3770 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 31 “ -15.2842 16.2052 15.1734 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 32 % -17.2046 41.4940 48.0815 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 33 £ -16.9347 40.6123 52.6252 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 34 . 23.9537 7.2587 7.2587 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 35 2 -14.3411 26.1844 44.3469 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 36 5 -15.6380 29.0970 46.6937 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 37 m -1.0125 41.1864 33.4217 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 38 V -14.5106 33.7172 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 39 6 -14.5684 28.4417 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 40 w 0.1016 36.2783 32.1801 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 41 T -13.5332 38.6252 43.4734 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 42 M -14.6777 46.1801 46.6087 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 43 G -14.3426 36.4322 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 44 b -15.0340 29.0196 46.2566 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 45 9 -14.5038 30.7150 47.0619 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 46 ; -1.6859 9.4563 37.1646 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 47 D -14.7228 33.9315 46.2566 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 48 L -14.4992 28.2917 45.9489 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 49 y -0.0557 29.5371 46.1801 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 50 ‘ -14.7431 6.2353 15.1734 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 51 \ -13.4558 24.7790 47.3535 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 52 R -15.8315 31.5203 46.6937 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 53 < -0.2801 17.3703 24.6297 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 54 4 -14.5553 32.9854 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 55 8 -15.4015 29.5371 46.6937 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 56 0 -14.5220 32.0982 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 57 A -11.9625 34.7413 42.0000 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 58 E -14.6045 30.3469 46.2566 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 59 B -14.2547 29.1734 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 60 v -0.0045 25.8031 31.3748 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 61 k -15.5481 26.1668 47.8672 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 62 J -14.5935 34.6594 47.5672 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 63 U -14.3954 37.3920 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 64 j -12.1830 19.9315 58.8567 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 65 ( -16.9318 16.3469 59.1522 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 66 7 -14.3287 32.5437 45.3741 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 67 § -16.6983 28.0000 47.8672 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 68 $ -19.1275 31.6450 60.2521 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 69 € -15.7787 37.0881 46.6937 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 70 / -17.1714 26.4584 49.4087 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 71 C -14.3717 31.7346 45.3741 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 72 * -15.7441 26.1668 23.2420 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 73 ” -14.5343 16.6424 15.3877 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 74 ? -12.2583 25.8031 44.3469 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 75 { -16.6250 19.9315 59.1522 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 76 } -17.1103 19.9315 59.1522 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 77 , 26.0704 8.6465 14.0000 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 78 I -13.4480 28.3476 43.2416 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 79 ° -18.1303 19.9315 20.0853 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 80 K -14.5591 29.1734 46.8399 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 81 H -14.1008 37.2420 46.6937 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 82 q -1.1912 25.2850 46.8399 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 83 & -14.2646 34.7451 46.9080 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 84 ’ -14.7211 8.4926 15.1734 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 85 [ -14.8992 16.1930 57.9787 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 86 - 12.0254 18.5437 5.0619 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 87 Y -13.0886 34.2353 44.7150 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 88 Q -14.4642 48.2353 56.9591 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 89 " -14.5921 15.4773 18.5437 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 90 ! -17.2373 6.0853 48.5270 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 91 x -1.0273 31.0067 32.0339 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 92 ) -16.7079 16.9248 59.1522 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 93 = -0.9954 22.4322 24.3214 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 94 + -1.1675 24.4154 24.4154 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 95 X -14.3479 38.1116 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 96 » -0.9577 31.0028 25.6531 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 97 ' -17.3527 5.0619 15.1734 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 98 ¢ -19.7048 29.3832 48.2353 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 99 Z -14.5000 37.6056 45.5203 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 100 > -2.3528 19.3535 26.8266 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 101 ® -16.8605 41.3402 40.7623 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 102 © -16.9290 40.8266 38.4231 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 103 ] -14.2625 16.1930 57.9787 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 104 é -16.8262 29.0196 47.8672 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 105 z 0.0742 26.1668 31.0067 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 106 _ 33.5913 38.7790 7.1049 -Comic_Sans_MS.ttf 16 g 27.1902 46.1801 107 ¥ -11.8181 31.1560 42.8053 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 1 t 6.9137 24.4154 40.9766 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 2 h -0.1445 27.3402 48.0853 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 3 a 17.1603 27.8462 31.0067 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 4 n 15.6407 25.2031 32.0301 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 5 P 2.5375 25.7986 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 6 o 16.9497 28.2098 31.0067 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 7 e 17.0530 29.0196 31.0067 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 8 : 14.3375 6.5913 28.6598 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 9 r 16.6264 22.4322 31.3748 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 10 l 0.2572 5.9315 47.8672 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 11 i 4.2545 5.9315 42.5060 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 12 1 2.5352 17.7944 44.3469 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 13 | -2.6290 5.0619 59.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 14 N 2.1278 40.7623 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 15 f 0.1683 25.3570 50.5822 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 16 g 16.8752 27.1902 46.1801 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 17 d 0.2697 29.0196 47.8672 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 18 W 2.3717 55.7857 46.6937 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 19 s 13.9849 23.9737 33.7172 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 20 c 16.9315 24.4154 31.0067 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 21 u 16.8351 25.6486 31.0067 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 22 3 2.2619 26.8266 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 23 ~ 20.5868 29.5416 13.1304 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 24 # 1.8095 48.2353 45.8884 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 25 O 2.4840 40.8266 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 26 ` 0.1242 12.1668 14.0000 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 27 @ -0.1640 46.9080 50.3381 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 28 F 2.1953 29.7514 46.8399 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 29 S 4.8704 35.2549 43.5416 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 30 p 14.9603 26.0129 48.3770 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 31 “ 1.4376 16.2052 15.1734 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 32 % -0.0607 41.4940 48.0815 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 33 £ 0.0045 40.6123 52.6252 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 34 . 40.9160 7.2587 7.2587 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 35 2 2.2847 26.1844 44.3469 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 36 5 1.1721 29.0970 46.6937 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 37 m 15.6048 41.1864 33.4217 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 38 V 2.4118 33.7172 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 39 6 2.4511 28.4417 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 40 w 16.9522 36.2783 32.1801 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 41 T 2.9236 38.6252 43.4734 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 42 M 2.3566 46.1801 46.6087 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 43 G 2.4887 36.4322 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 44 b 1.3104 29.0196 46.2566 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 45 9 2.4200 30.7150 47.0619 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 46 ; 15.1848 9.4563 37.1646 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 47 D 2.3472 33.9315 46.2566 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 48 L 1.7990 28.2917 45.9489 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 49 y 16.7706 29.5371 46.1801 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 50 ‘ 2.4673 6.2353 15.1734 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 51 \ 3.3365 24.7790 47.3535 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 52 R 0.8892 31.5203 46.6937 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 53 < 16.5067 17.3703 24.6297 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 54 4 2.1331 32.9854 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 55 8 1.2606 29.5371 46.6937 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 56 0 2.3020 32.0982 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 57 A 4.7038 34.7413 42.0000 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 58 E 2.3102 30.3469 46.2566 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 59 B 2.4469 29.1734 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 60 v 16.9744 25.8031 31.3748 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 61 k 1.3190 26.1668 47.8672 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 62 J 2.3361 34.6594 47.5672 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 63 U 2.6603 37.3920 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 64 j 4.9372 19.9315 58.8567 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 65 ( -0.2914 16.3469 59.1522 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 66 7 2.3355 32.5437 45.3741 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 67 § -0.1218 28.0000 47.8672 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 68 $ -2.3155 31.6450 60.2521 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 69 € 1.4729 37.0881 46.6937 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 70 / -0.2780 26.4584 49.4087 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 71 C 2.1393 31.7346 45.3741 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 72 * 1.0765 26.1668 23.2420 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 73 ” 2.1271 16.6424 15.3877 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 74 ? 4.5437 25.8031 44.3469 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 75 { -0.0895 19.9315 59.1522 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 76 } -0.0167 19.9315 59.1522 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 77 , 42.7442 8.6465 14.0000 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 78 I 3.4250 28.3476 43.2416 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 79 ° -1.0936 19.9315 20.0853 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 80 K 2.3412 29.1734 46.8399 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 81 H 2.2245 37.2420 46.6937 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 82 q 15.8298 25.2850 46.8399 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 83 & 2.3326 34.7451 46.9080 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 84 ’ 2.3626 8.4926 15.1734 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 85 [ 2.3780 16.1930 57.9787 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 86 - 28.9289 18.5437 5.0619 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 87 Y 3.6042 34.2353 44.7150 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 88 Q 2.4666 48.2353 56.9591 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 89 " 2.3195 15.4773 18.5437 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 90 ! 0.0073 6.0853 48.5270 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 91 x 15.8118 31.0067 32.0339 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 92 ) 0.4258 16.9248 59.1522 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 93 = 15.3273 22.4322 24.3214 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 94 + 15.7515 24.4154 24.4154 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 95 X 2.0536 38.1116 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 96 » 15.7230 31.0028 25.6531 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 97 ' -0.7284 5.0619 15.1734 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 98 ¢ -2.8331 29.3832 48.2353 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 99 Z 2.5044 37.6056 45.5203 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 100 > 14.7876 19.3535 26.8266 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 101 ® 0.0742 41.3402 40.7623 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 102 © 0.1821 40.8266 38.4231 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 103 ] 2.2839 16.1930 57.9787 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 104 é 0.0115 29.0196 47.8672 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 105 z 16.7831 26.1668 31.0067 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 106 _ 50.3017 38.7790 7.1049 -Comic_Sans_MS.ttf 17 d 29.0196 47.8672 107 ¥ 5.3460 31.1560 42.8053 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 1 t 4.4672 24.4154 40.9766 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 2 h -2.4238 27.3402 48.0853 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 3 a 14.2925 27.8462 31.0067 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 4 n 13.8650 25.2031 32.0301 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 5 P -0.6833 25.7986 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 6 o 14.8709 28.2098 31.0067 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 7 e 14.8685 29.0196 31.0067 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 8 : 12.1782 6.5913 28.6598 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 9 r 14.0965 22.4322 31.3748 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 10 l -2.4513 5.9315 47.8672 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 11 i 1.8622 5.9315 42.5060 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 12 1 -0.0301 17.7944 44.3469 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 13 | -4.6790 5.0619 59.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 14 N -0.0985 40.7623 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 15 f -2.3516 25.3570 50.5822 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 16 g 14.2999 27.1902 46.1801 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 17 d -2.4997 29.0196 47.8672 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 18 W 0.0172 55.7857 46.6937 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 19 s 11.4981 23.9737 33.7172 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 20 c 14.5118 24.4154 31.0067 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 21 u 14.6609 25.6486 31.0067 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 22 3 0.0347 26.8266 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 23 ~ 18.1220 29.5416 13.1304 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 24 # -0.2701 48.2353 45.8884 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 25 O 0.0426 40.8266 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 26 ` -2.3309 12.1668 14.0000 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 27 @ -2.7074 46.9080 50.3381 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 28 F 0.1852 29.7514 46.8399 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 29 S 2.1482 35.2549 43.5416 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 30 p 11.9071 26.0129 48.3770 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 31 “ -0.6019 16.2052 15.1734 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 32 % -2.3661 41.4940 48.0815 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 33 £ -2.1886 40.6123 52.6252 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 34 . 38.5176 7.2587 7.2587 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 35 2 -0.1110 26.1844 44.3469 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 36 5 -1.2046 29.0970 46.6937 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 37 m 13.8480 41.1864 33.4217 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 38 V 0.4613 33.7172 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 39 6 -0.0185 28.4417 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 40 w 14.9112 36.2783 32.1801 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 41 T 1.2326 38.6252 43.4734 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 42 M -0.4319 46.1801 46.6087 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 43 G -0.1742 36.4322 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 44 b -0.2828 29.0196 46.2566 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 45 9 -0.2045 30.7150 47.0619 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 46 ; 12.7894 9.4563 37.1646 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 47 D 0.3855 33.9315 46.2566 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 48 L 0.1105 28.2917 45.9489 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 49 y 14.6455 29.5371 46.1801 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 50 ‘ 0.1017 6.2353 15.1734 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 51 \ 1.0899 24.7790 47.3535 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 52 R -1.2647 31.5203 46.6937 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 53 < 14.1770 17.3703 24.6297 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 54 4 0.0524 32.9854 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 55 8 -1.0391 29.5371 46.6937 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 56 0 -0.0416 32.0982 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 57 A 2.5902 34.7413 42.0000 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 58 E 0.2518 30.3469 46.2566 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 59 B -0.1612 29.1734 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 60 v 14.5939 25.8031 31.3748 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 61 k -0.8532 26.1668 47.8672 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 62 J -0.1222 34.6594 47.5672 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 63 U 0.1567 37.3920 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 64 j 2.3303 19.9315 58.8567 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 65 ( -2.2589 16.3469 59.1522 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 66 7 -0.2772 32.5437 45.3741 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 67 § -2.4505 28.0000 47.8672 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 68 $ -4.9332 31.6450 60.2521 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 69 € -1.1714 37.0881 46.6937 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 70 / -2.3061 26.4584 49.4087 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 71 C 0.0386 31.7346 45.3741 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 72 * -1.1644 26.1668 23.2420 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 73 ” -0.2657 16.6424 15.3877 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 74 ? 1.9743 25.8031 44.3469 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 75 { -2.4526 19.9315 59.1522 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 76 } -2.4676 19.9315 59.1522 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 77 , 40.3551 8.6465 14.0000 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 78 I 1.1402 28.3476 43.2416 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 79 ° -3.6857 19.9315 20.0853 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 80 K 0.0032 29.1734 46.8399 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 81 H -0.0458 37.2420 46.6937 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 82 q 13.4102 25.2850 46.8399 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 83 & -0.1594 34.7451 46.9080 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 84 ’ -0.1663 8.4926 15.1734 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 85 [ -0.2826 16.1930 57.9787 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 86 - 26.5247 18.5437 5.0619 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 87 Y 1.0733 34.2353 44.7150 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 88 Q 0.0298 48.2353 56.9591 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 89 " -0.0299 15.4773 18.5437 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 90 ! -2.2532 6.0853 48.5270 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 91 x 13.5666 31.0067 32.0339 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 92 ) -2.2699 16.9248 59.1522 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 93 = 13.0460 22.4322 24.3214 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 94 + 13.1697 24.4154 24.4154 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 95 X -0.0885 38.1116 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 96 » 13.5040 31.0028 25.6531 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 97 ' -2.8241 5.0619 15.1734 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 98 ¢ -5.0049 29.3832 48.2353 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 99 Z 0.0029 37.6056 45.5203 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 100 > 12.4600 19.3535 26.8266 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 101 ® -2.3743 41.3402 40.7623 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 102 © -2.1859 40.8266 38.4231 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 103 ] -0.0120 16.1930 57.9787 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 104 é -2.4188 29.0196 47.8672 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 105 z 14.7031 26.1668 31.0067 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 106 _ 48.0217 38.7790 7.1049 -Comic_Sans_MS.ttf 18 W 55.7857 46.6937 107 ¥ 2.7876 31.1560 42.8053 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 1 t -7.4578 24.4154 40.9766 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 2 h -14.2038 27.3402 48.0853 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 3 a 2.8343 27.8462 31.0067 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 4 n 1.8162 25.2031 32.0301 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 5 P -11.7128 25.7986 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 6 o 2.8288 28.2098 31.0067 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 7 e 2.4128 29.0196 31.0067 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 8 : 0.5200 6.5913 28.6598 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 9 r 2.2640 22.4322 31.3748 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 10 l -14.1013 5.9315 47.8672 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 11 i -10.1948 5.9315 42.5060 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 12 1 -12.1698 17.7944 44.3469 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 13 | -16.7310 5.0619 59.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 14 N -11.9623 40.7623 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 15 f -14.1650 25.3570 50.5822 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 16 g 2.6476 27.1902 46.1801 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 17 d -14.1305 29.0196 47.8672 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 18 W -11.9696 55.7857 46.6937 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 19 s 0.0889 23.9737 33.7172 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 20 c 2.7272 24.4154 31.0067 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 21 u 2.9952 25.6486 31.0067 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 22 3 -11.9932 26.8266 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 23 ~ 6.3891 29.5416 13.1304 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 24 # -12.1852 48.2353 45.8884 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 25 O -11.7185 40.8266 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 26 ` -14.3289 12.1668 14.0000 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 27 @ -14.0231 46.9080 50.3381 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 28 F -11.9551 29.7514 46.8399 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 29 S -9.4650 35.2549 43.5416 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 30 p 0.4720 26.0129 48.3770 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 31 “ -12.6710 16.2052 15.1734 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 32 % -14.0236 41.4940 48.0815 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 33 £ -14.0044 40.6123 52.6252 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 34 . 26.9273 7.2587 7.2587 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 35 2 -11.8045 26.1844 44.3469 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 36 5 -12.9013 29.0970 46.6937 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 37 m 1.5433 41.1864 33.4217 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 38 V -11.9043 33.7172 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 39 6 -11.6752 28.4417 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 40 w 2.7924 36.2783 32.1801 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 41 T -10.9182 38.6252 43.4734 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 42 M -11.9570 46.1801 46.6087 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 43 G -11.8951 36.4322 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 44 b -12.4967 29.0196 46.2566 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 45 9 -11.8903 30.7150 47.0619 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 46 ; 1.0157 9.4563 37.1646 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 47 D -12.0647 33.9315 46.2566 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 48 L -11.9148 28.2917 45.9489 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 49 y 2.7105 29.5371 46.1801 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 50 ‘ -11.9238 6.2353 15.1734 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 51 \ -11.0332 24.7790 47.3535 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 52 R -13.1499 31.5203 46.6937 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 53 < 2.2730 17.3703 24.6297 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 54 4 -11.7165 32.9854 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 55 8 -13.1806 29.5371 46.6937 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 56 0 -11.6002 32.0982 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 57 A -9.7200 34.7413 42.0000 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 58 E -11.3735 30.3469 46.2566 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 59 B -11.6362 29.1734 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 60 v 2.7702 25.8031 31.3748 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 61 k -13.0623 26.1668 47.8672 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 62 J -11.7891 34.6594 47.5672 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 63 U -11.6888 37.3920 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 64 j -9.0995 19.9315 58.8567 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 65 ( -14.2570 16.3469 59.1522 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 66 7 -11.7619 32.5437 45.3741 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 67 § -14.3516 28.0000 47.8672 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 68 $ -16.7605 31.6450 60.2521 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 69 € -13.1397 37.0881 46.6937 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 70 / -14.2181 26.4584 49.4087 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 71 C -11.7907 31.7346 45.3741 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 72 * -13.1254 26.1668 23.2420 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 73 ” -11.6573 16.6424 15.3877 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 74 ? -9.7045 25.8031 44.3469 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 75 { -14.2585 19.9315 59.1522 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 76 } -14.2871 19.9315 59.1522 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 77 , 28.8008 8.6465 14.0000 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 78 I -10.4892 28.3476 43.2416 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 79 ° -15.6727 19.9315 20.0853 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 80 K -11.5891 29.1734 46.8399 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 81 H -12.2174 37.2420 46.6937 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 82 q 1.3817 25.2850 46.8399 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 83 & -11.5358 34.7451 46.9080 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 84 ’ -11.7636 8.4926 15.1734 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 85 [ -11.7714 16.1930 57.9787 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 86 - 14.8310 18.5437 5.0619 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 87 Y -10.5321 34.2353 44.7150 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 88 Q -11.7352 48.2353 56.9591 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 89 " -11.5904 15.4773 18.5437 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 90 ! -13.9177 6.0853 48.5270 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 91 x 1.6741 31.0067 32.0339 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 92 ) -14.4379 16.9248 59.1522 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 93 = 1.4811 22.4322 24.3214 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 94 + 1.6382 24.4154 24.4154 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 95 X -11.8069 38.1116 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 96 » 2.1237 31.0028 25.6531 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 97 ' -14.8598 5.0619 15.1734 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 98 ¢ -16.6870 29.3832 48.2353 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 99 Z -11.8746 37.6056 45.5203 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 100 > 0.6548 19.3535 26.8266 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 101 ® -14.1500 41.3402 40.7623 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 102 © -14.1462 40.8266 38.4231 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 103 ] -11.6159 16.1930 57.9787 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 104 é -14.1532 29.0196 47.8672 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 105 z 2.8420 26.1668 31.0067 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 106 _ 36.1433 38.7790 7.1049 -Comic_Sans_MS.ttf 19 s 23.9737 33.7172 107 ¥ -9.1224 31.1560 42.8053 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 1 t -10.1931 24.4154 40.9766 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 2 h -16.9244 27.3402 48.0853 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 3 a -0.0829 27.8462 31.0067 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 4 n -0.7701 25.2031 32.0301 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 5 P -14.6854 25.7986 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 6 o -0.1155 28.2098 31.0067 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 7 e -0.1228 29.0196 31.0067 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 8 : -2.4134 6.5913 28.6598 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 9 r -0.3993 22.4322 31.3748 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 10 l -16.7651 5.9315 47.8672 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 11 i -12.5545 5.9315 42.5060 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 12 1 -14.8121 17.7944 44.3469 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 13 | -19.3511 5.0619 59.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 14 N -14.6930 40.7623 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 15 f -16.7748 25.3570 50.5822 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 16 g 0.0931 27.1902 46.1801 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 17 d -16.8276 29.0196 47.8672 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 18 W -14.3972 55.7857 46.6937 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 19 s -2.7078 23.9737 33.7172 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 20 c 0.1466 24.4154 31.0067 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 21 u -0.1750 25.6486 31.0067 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 22 3 -14.6252 26.8266 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 23 ~ 3.9004 29.5416 13.1304 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 24 # -14.9758 48.2353 45.8884 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 25 O -14.2674 40.8266 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 26 ` -17.0575 12.1668 14.0000 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 27 @ -16.8234 46.9080 50.3381 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 28 F -14.5857 29.7514 46.8399 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 29 S -12.1710 35.2549 43.5416 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 30 p -2.2804 26.0129 48.3770 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 31 “ -15.2954 16.2052 15.1734 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 32 % -17.1092 41.4940 48.0815 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 33 £ -17.0964 40.6123 52.6252 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 34 . 24.3970 7.2587 7.2587 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 35 2 -14.5001 26.1844 44.3469 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 36 5 -15.5128 29.0970 46.6937 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 37 m -0.9388 41.1864 33.4217 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 38 V -14.2908 33.7172 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 39 6 -14.5136 28.4417 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 40 w 0.1371 36.2783 32.1801 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 41 T -14.0292 38.6252 43.4734 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 42 M -14.6267 46.1801 46.6087 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 43 G -14.7400 36.4322 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 44 b -15.5106 29.0196 46.2566 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 45 9 -14.3023 30.7150 47.0619 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 46 ; -1.5697 9.4563 37.1646 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 47 D -14.1652 33.9315 46.2566 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 48 L -14.4923 28.2917 45.9489 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 49 y -0.0504 29.5371 46.1801 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 50 ‘ -14.6121 6.2353 15.1734 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 51 \ -13.4750 24.7790 47.3535 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 52 R -15.8603 31.5203 46.6937 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 53 < -0.0944 17.3703 24.6297 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 54 4 -14.4150 32.9854 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 55 8 -15.5994 29.5371 46.6937 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 56 0 -14.6260 32.0982 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 57 A -12.3995 34.7413 42.0000 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 58 E -14.2523 30.3469 46.2566 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 59 B -14.5066 29.1734 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 60 v -0.3266 25.8031 31.3748 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 61 k -15.5383 26.1668 47.8672 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 62 J -14.6557 34.6594 47.5672 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 63 U -14.6819 37.3920 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 64 j -12.1577 19.9315 58.8567 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 65 ( -16.9399 16.3469 59.1522 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 66 7 -14.4490 32.5437 45.3741 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 67 § -16.7002 28.0000 47.8672 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 68 $ -19.5056 31.6450 60.2521 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 69 € -15.4576 37.0881 46.6937 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 70 / -16.7307 26.4584 49.4087 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 71 C -14.2122 31.7346 45.3741 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 72 * -16.0036 26.1668 23.2420 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 73 ” -14.6973 16.6424 15.3877 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 74 ? -12.4935 25.8031 44.3469 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 75 { -16.7758 19.9315 59.1522 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 76 } -16.7514 19.9315 59.1522 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 77 , 26.1033 8.6465 14.0000 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 78 I -13.1923 28.3476 43.2416 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 79 ° -18.5116 19.9315 20.0853 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 80 K -14.3894 29.1734 46.8399 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 81 H -14.5131 37.2420 46.6937 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 82 q -1.5065 25.2850 46.8399 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 83 & -14.5700 34.7451 46.9080 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 84 ’ -14.6815 8.4926 15.1734 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 85 [ -14.4730 16.1930 57.9787 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 86 - 12.1543 18.5437 5.0619 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 87 Y -13.4353 34.2353 44.7150 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 88 Q -14.5234 48.2353 56.9591 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 89 " -14.3580 15.4773 18.5437 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 90 ! -17.0333 6.0853 48.5270 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 91 x -0.7834 31.0067 32.0339 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 92 ) -16.9788 16.9248 59.1522 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 93 = -1.4232 22.4322 24.3214 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 94 + -1.5010 24.4154 24.4154 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 95 X -14.3697 38.1116 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 96 » -0.9786 31.0028 25.6531 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 97 ' -17.5055 5.0619 15.1734 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 98 ¢ -19.6150 29.3832 48.2353 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 99 Z -14.4170 37.6056 45.5203 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 100 > -2.4647 19.3535 26.8266 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 101 ® -16.6607 41.3402 40.7623 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 102 © -16.9469 40.8266 38.4231 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 103 ] -14.4979 16.1930 57.9787 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 104 é -16.9714 29.0196 47.8672 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 105 z 0.1320 26.1668 31.0067 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 106 _ 33.9081 38.7790 7.1049 -Comic_Sans_MS.ttf 20 c 24.4154 31.0067 107 ¥ -11.6635 31.1560 42.8053 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 1 t -10.1659 24.4154 40.9766 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 2 h -17.1575 27.3402 48.0853 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 3 a 0.0403 27.8462 31.0067 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 4 n -1.2697 25.2031 32.0301 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 5 P -14.7528 25.7986 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 6 o -0.1085 28.2098 31.0067 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 7 e 0.0038 29.0196 31.0067 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 8 : -2.4156 6.5913 28.6598 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 9 r -0.4079 22.4322 31.3748 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 10 l -16.7807 5.9315 47.8672 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 11 i -12.6723 5.9315 42.5060 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 12 1 -14.3795 17.7944 44.3469 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 13 | -19.4035 5.0619 59.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 14 N -14.5851 40.7623 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 15 f -16.8136 25.3570 50.5822 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 16 g 0.0500 27.1902 46.1801 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 17 d -16.9263 29.0196 47.8672 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 18 W -14.7327 55.7857 46.6937 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 19 s -2.7994 23.9737 33.7172 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 20 c -0.0550 24.4154 31.0067 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 21 u 0.0749 25.6486 31.0067 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 22 3 -14.5879 26.8266 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 23 ~ 3.8816 29.5416 13.1304 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 24 # -14.9514 48.2353 45.8884 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 25 O -14.6841 40.8266 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 26 ` -16.9838 12.1668 14.0000 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 27 @ -17.0240 46.9080 50.3381 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 28 F -14.4363 29.7514 46.8399 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 29 S -12.3267 35.2549 43.5416 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 30 p -2.2483 26.0129 48.3770 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 31 “ -15.0501 16.2052 15.1734 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 32 % -17.1304 41.4940 48.0815 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 33 £ -16.6086 40.6123 52.6252 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 34 . 24.3194 7.2587 7.2587 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 35 2 -14.8352 26.1844 44.3469 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 36 5 -15.7777 29.0970 46.6937 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 37 m -0.8983 41.1864 33.4217 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 38 V -14.6821 33.7172 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 39 6 -14.2852 28.4417 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 40 w 0.0704 36.2783 32.1801 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 41 T -13.6534 38.6252 43.4734 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 42 M -14.4231 46.1801 46.6087 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 43 G -14.8499 36.4322 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 44 b -15.0239 29.0196 46.2566 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 45 9 -14.5865 30.7150 47.0619 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 46 ; -1.7914 9.4563 37.1646 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 47 D -14.6113 33.9315 46.2566 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 48 L -14.5234 28.2917 45.9489 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 49 y 0.0714 29.5371 46.1801 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 50 ‘ -14.2797 6.2353 15.1734 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 51 \ -13.5916 24.7790 47.3535 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 52 R -15.5930 31.5203 46.6937 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 53 < -0.3717 17.3703 24.6297 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 54 4 -14.4636 32.9854 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 55 8 -15.8099 29.5371 46.6937 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 56 0 -14.4219 32.0982 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 57 A -12.3918 34.7413 42.0000 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 58 E -14.5775 30.3469 46.2566 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 59 B -14.5079 29.1734 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 60 v 0.1395 25.8031 31.3748 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 61 k -15.7594 26.1668 47.8672 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 62 J -14.6161 34.6594 47.5672 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 63 U -14.4733 37.3920 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 64 j -11.9251 19.9315 58.8567 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 65 ( -17.1145 16.3469 59.1522 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 66 7 -14.5075 32.5437 45.3741 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 67 § -16.5953 28.0000 47.8672 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 68 $ -19.2735 31.6450 60.2521 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 69 € -15.5317 37.0881 46.6937 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 70 / -17.0917 26.4584 49.4087 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 71 C -14.6121 31.7346 45.3741 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 72 * -15.8048 26.1668 23.2420 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 73 ” -14.5476 16.6424 15.3877 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 74 ? -12.3964 25.8031 44.3469 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 75 { -16.8151 19.9315 59.1522 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 76 } -16.9054 19.9315 59.1522 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 77 , 25.7790 8.6465 14.0000 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 78 I -13.2933 28.3476 43.2416 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 79 ° -18.1737 19.9315 20.0853 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 80 K -14.5914 29.1734 46.8399 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 81 H -14.3811 37.2420 46.6937 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 82 q -1.0446 25.2850 46.8399 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 83 & -14.4122 34.7451 46.9080 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 84 ’ -14.6912 8.4926 15.1734 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 85 [ -14.6847 16.1930 57.9787 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 86 - 12.2327 18.5437 5.0619 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 87 Y -13.5168 34.2353 44.7150 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 88 Q -14.4276 48.2353 56.9591 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 89 " -14.4199 15.4773 18.5437 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 90 ! -16.9031 6.0853 48.5270 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 91 x -1.0133 31.0067 32.0339 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 92 ) -16.7436 16.9248 59.1522 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 93 = -1.1547 22.4322 24.3214 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 94 + -1.4197 24.4154 24.4154 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 95 X -14.4892 38.1116 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 96 » -1.0165 31.0028 25.6531 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 97 ' -17.5095 5.0619 15.1734 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 98 ¢ -19.5755 29.3832 48.2353 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 99 Z -14.6679 37.6056 45.5203 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 100 > -2.3195 19.3535 26.8266 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 101 ® -17.0597 41.3402 40.7623 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 102 © -16.8332 40.8266 38.4231 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 103 ] -14.5066 16.1930 57.9787 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 104 é -16.8966 29.0196 47.8672 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 105 z -0.0444 26.1668 31.0067 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 106 _ 33.5900 38.7790 7.1049 -Comic_Sans_MS.ttf 21 u 25.6486 31.0067 107 ¥ -11.7927 31.1560 42.8053 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 1 t 4.6906 24.4154 40.9766 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 2 h -2.6194 27.3402 48.0853 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 3 a 14.6283 27.8462 31.0067 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 4 n 13.6437 25.2031 32.0301 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 5 P 0.1728 25.7986 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 6 o 14.6900 28.2098 31.0067 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 7 e 14.9608 29.0196 31.0067 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 8 : 12.1630 6.5913 28.6598 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 9 r 14.1826 22.4322 31.3748 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 10 l -2.2955 5.9315 47.8672 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 11 i 1.7630 5.9315 42.5060 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 12 1 0.0978 17.7944 44.3469 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 13 | -5.4720 5.0619 59.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 14 N -0.1099 40.7623 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 15 f -2.3483 25.3570 50.5822 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 16 g 14.3120 27.1902 46.1801 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 17 d -2.4497 29.0196 47.8672 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 18 W 0.1984 55.7857 46.6937 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 19 s 12.1233 23.9737 33.7172 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 20 c 14.6865 24.4154 31.0067 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 21 u 14.5874 25.6486 31.0067 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 22 3 0.1368 26.8266 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 23 ~ 18.2598 29.5416 13.1304 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 24 # -0.3969 48.2353 45.8884 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 25 O -0.0947 40.8266 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 26 ` -2.2990 12.1668 14.0000 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 27 @ -2.2560 46.9080 50.3381 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 28 F -0.0851 29.7514 46.8399 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 29 S 2.4243 35.2549 43.5416 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 30 p 12.3125 26.0129 48.3770 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 31 “ -0.4868 16.2052 15.1734 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 32 % -2.3830 41.4940 48.0815 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 33 £ -2.2133 40.6123 52.6252 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 34 . 38.5700 7.2587 7.2587 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 35 2 -0.3331 26.1844 44.3469 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 36 5 -1.1734 29.0970 46.6937 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 37 m 13.3443 41.1864 33.4217 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 38 V -0.0010 33.7172 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 39 6 0.0931 28.4417 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 40 w 14.2889 36.2783 32.1801 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 41 T 1.0295 38.6252 43.4734 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 42 M 0.2008 46.1801 46.6087 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 43 G 0.0509 36.4322 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 44 b -0.5694 29.0196 46.2566 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 45 9 -0.0207 30.7150 47.0619 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 46 ; 12.6265 9.4563 37.1646 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 47 D 0.0342 33.9315 46.2566 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 48 L -0.1365 28.2917 45.9489 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 49 y 14.2422 29.5371 46.1801 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 50 ‘ 0.0744 6.2353 15.1734 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 51 \ 0.9809 24.7790 47.3535 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 52 R -0.9575 31.5203 46.6937 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 53 < 12.3113 19.3535 26.8266 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 54 4 0.1980 32.9854 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 55 8 -0.9597 29.5371 46.6937 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 56 0 0.0527 32.0982 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 57 A 2.1683 34.7413 42.0000 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 58 E -0.0455 30.3469 46.2566 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 59 B 0.0042 29.1734 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 60 v 14.7953 25.8031 31.3748 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 61 k -1.3704 26.1668 47.8672 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 62 J -0.0319 34.6594 47.5672 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 63 U 0.1074 37.3920 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 64 j 2.8305 19.9315 58.8567 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 65 ( -2.3206 16.9248 59.1522 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 66 7 0.2162 32.5437 45.3741 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 67 § -2.5071 28.0000 47.8672 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 68 $ -4.8912 31.6450 60.2521 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 69 € -1.1573 37.0881 46.6937 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 70 / -2.1711 26.4584 49.4087 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 71 C 0.3913 31.7346 45.3741 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 72 * -1.5715 26.1668 23.2420 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 73 ” 0.0893 16.6424 15.3877 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 74 ? 2.4471 25.8031 44.3469 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 75 { -2.1869 19.9315 59.1522 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 76 } -2.2444 19.9315 59.1522 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 77 , 40.4386 8.6465 14.0000 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 78 I 1.1884 28.3476 43.2416 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 79 ° -3.6611 19.9315 20.0853 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 80 K -0.1469 29.1734 46.8399 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 81 H -0.2381 37.2420 46.6937 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 82 q 13.2163 25.2850 46.8399 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 83 & 0.1641 34.7451 46.9080 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 84 ’ 0.2280 8.4926 15.1734 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 85 [ 0.0312 16.1930 57.9787 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 86 - 26.2120 18.5437 5.0619 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 87 Y 1.0892 34.2353 44.7150 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 88 Q -0.0909 48.2353 56.9591 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 89 " -0.1658 15.4773 18.5437 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 90 ! -2.3112 6.0853 48.5270 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 91 x 13.7264 31.0067 32.0339 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 92 ) -2.2440 16.3469 59.1522 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 93 = 13.4138 22.4322 24.3214 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 94 + 13.3241 24.4154 24.4154 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 95 X 0.1361 38.1116 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 96 » 13.6496 31.0028 25.6531 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 97 ' -3.0279 5.0619 15.1734 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 98 ¢ -5.2980 29.3832 48.2353 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 99 Z -0.0287 37.6056 45.5203 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 100 > 13.6886 17.3703 24.6297 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 101 ® -2.2300 41.3402 40.7623 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 102 © -2.1828 40.8266 38.4231 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 103 ] 0.0742 16.1930 57.9787 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 104 é -2.3464 29.0196 47.8672 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 105 z 14.5224 26.1668 31.0067 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 106 _ 48.0210 38.7790 7.1049 -Comic_Sans_MS.ttf 22 3 26.8266 45.5203 107 ¥ 2.6271 31.1560 42.8053 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 1 t -13.6185 24.4154 40.9766 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 2 h -20.4913 27.3402 48.0853 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 3 a -3.8032 27.8462 31.0067 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 4 n -4.7591 25.2031 32.0301 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 5 P -18.3305 25.7986 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 6 o -3.4750 28.2098 31.0067 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 7 e -3.8134 29.0196 31.0067 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 8 : -6.1135 6.5913 28.6598 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 9 r -4.1793 22.4322 31.3748 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 10 l -20.4996 5.9315 47.8672 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 11 i -16.4192 5.9315 42.5060 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 12 1 -18.1976 17.7944 44.3469 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 13 | -23.2102 5.0619 59.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 14 N -18.1528 40.7623 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 15 f -20.6794 25.3570 50.5822 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 16 g -3.8666 27.1902 46.1801 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 17 d -20.4150 29.0196 47.8672 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 18 W -18.1213 55.7857 46.6937 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 19 s -6.7222 23.9737 33.7172 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 20 c -3.7190 24.4154 31.0067 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 21 u -3.8088 25.6486 31.0067 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 22 3 -18.4883 26.8266 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 23 ~ -0.0864 29.5416 13.1304 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 24 # -18.5454 48.2353 45.8884 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 25 O -18.3021 40.8266 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 26 ` -20.3151 12.1668 14.0000 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 27 @ -20.6637 46.9080 50.3381 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 28 F -18.0813 29.7514 46.8399 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 29 S -15.9811 35.2549 43.5416 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 30 p -5.9574 26.0129 48.3770 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 31 “ -18.9904 16.2052 15.1734 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 32 % -20.7069 41.4940 48.0815 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 33 £ -20.7376 40.6123 52.6252 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 34 . 20.1258 7.2587 7.2587 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 35 2 -18.2539 26.1844 44.3469 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 36 5 -19.3364 29.0970 46.6937 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 37 m -4.5954 41.1864 33.4217 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 38 V -18.2326 33.7172 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 39 6 -17.9357 28.4417 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 40 w -3.7392 36.2783 32.1801 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 41 T -17.0096 38.6252 43.4734 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 42 M -18.1357 46.1801 46.6087 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 43 G -18.1216 36.4322 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 44 b -18.8135 29.0196 46.2566 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 45 9 -18.4269 30.7150 47.0619 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 46 ; -5.6213 9.4563 37.1646 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 47 D -18.0017 33.9315 46.2566 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 48 L -18.5744 28.2917 45.9489 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 49 y -3.5899 29.5371 46.1801 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 50 ‘ -18.1128 6.2353 15.1734 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 51 \ -17.6987 24.7790 47.3535 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 52 R -19.5400 31.5203 46.6937 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 53 < -5.9251 19.3535 26.8266 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 54 4 -18.1954 32.9854 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 55 8 -19.3249 29.5371 46.6937 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 56 0 -17.9697 32.0982 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 57 A -15.8083 34.7413 42.0000 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 58 E -18.3705 30.3469 46.2566 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 59 B -18.1752 29.1734 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 60 v -3.6066 25.8031 31.3748 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 61 k -19.1905 26.1668 47.8672 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 62 J -18.2641 34.6594 47.5672 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 63 U -18.2711 37.3920 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 64 j -15.7787 19.9315 58.8567 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 65 ( -20.6211 16.9248 59.1522 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 66 7 -17.8205 32.5437 45.3741 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 67 § -20.7653 28.0000 47.8672 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 68 $ -23.1361 31.6450 60.2521 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 69 € -19.2548 37.0881 46.6937 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 70 / -21.0506 26.4584 49.4087 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 71 C -18.0669 31.7346 45.3741 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 72 * -19.3989 26.1668 23.2420 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 73 ” -18.0034 16.6424 15.3877 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 74 ? -15.9050 25.8031 44.3469 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 75 { -20.7949 19.9315 59.1522 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 76 } -20.5830 19.9315 59.1522 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 77 , 22.0762 8.6465 14.0000 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 78 I -16.7821 28.3476 43.2416 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 79 ° -22.0711 19.9315 20.0853 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 80 K -18.1437 29.1734 46.8399 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 81 H -18.2770 37.2420 46.6937 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 82 q -4.7769 25.2850 46.8399 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 83 & -18.1276 34.7451 46.9080 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 84 ’ -18.2407 8.4926 15.1734 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 85 [ -18.2496 16.1930 57.9787 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 86 - 8.3284 18.5437 5.0619 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 87 Y -17.3286 34.2353 44.7150 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 88 Q -18.2889 48.2353 56.9591 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 89 " -17.9929 15.4773 18.5437 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 90 ! -20.7123 6.0853 48.5270 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 91 x -4.8049 31.0067 32.0339 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 92 ) -20.5144 16.3469 59.1522 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 93 = -4.9970 22.4322 24.3214 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 94 + -5.1649 24.4154 24.4154 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 95 X -18.6074 38.1116 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 96 » -4.8663 31.0028 25.6531 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 97 ' -21.5400 5.0619 15.1734 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 98 ¢ -23.4936 29.3832 48.2353 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 99 Z -18.1671 37.6056 45.5203 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 100 > -3.9177 17.3703 24.6297 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 101 ® -20.5164 41.3402 40.7623 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 102 © -20.8524 40.8266 38.4231 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 103 ] -17.9857 16.1930 57.9787 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 104 é -20.5812 29.0196 47.8672 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 105 z -3.9083 26.1668 31.0067 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 106 _ 29.8430 38.7790 7.1049 -Comic_Sans_MS.ttf 23 ~ 29.5416 13.1304 107 ¥ -15.5249 31.1560 42.8053 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 1 t 5.0746 24.4154 40.9766 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 2 h -1.7480 27.3402 48.0853 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 3 a 14.7482 27.8462 31.0067 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 4 n 13.8449 25.2031 32.0301 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 5 P 0.4163 25.7986 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 6 o 15.2445 28.2098 31.0067 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 7 e 14.9717 29.0196 31.0067 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 8 : 12.5841 6.5913 28.6598 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 9 r 14.5068 22.4322 31.3748 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 10 l -1.9683 5.9315 47.8672 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 11 i 2.1998 5.9315 42.5060 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 12 1 0.3786 17.7944 44.3469 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 13 | -4.4987 5.0619 59.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 14 N 0.4217 40.7623 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 15 f -2.1393 25.3570 50.5822 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 16 g 15.1390 27.1902 46.1801 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 17 d -1.8895 29.0196 47.8672 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 18 W 0.4955 55.7857 46.6937 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 19 s 12.0142 23.9737 33.7172 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 20 c 15.0490 24.4154 31.0067 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 21 u 14.8087 25.6486 31.0067 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 22 3 0.0507 26.8266 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 23 ~ 18.6773 29.5416 13.1304 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 24 # 0.1422 48.2353 45.8884 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 25 O 0.2332 40.8266 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 26 ` -2.2460 12.1668 14.0000 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 27 @ -1.9101 46.9080 50.3381 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 28 F 0.0585 29.7514 46.8399 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 29 S 3.1325 35.2549 43.5416 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 30 p 12.6554 26.0129 48.3770 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 31 “ -0.4136 16.2052 15.1734 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 32 % -2.1433 41.4940 48.0815 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 33 £ -2.0140 40.6123 52.6252 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 34 . 39.1871 7.2587 7.2587 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 35 2 0.7096 26.1844 44.3469 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 36 5 -0.9888 29.0970 46.6937 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 37 m 13.7732 41.1864 33.4217 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 38 V 0.4463 33.7172 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 39 6 0.6229 28.4417 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 40 w 14.6718 36.2783 32.1801 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 41 T 1.3211 38.6252 43.4734 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 42 M 0.4391 46.1801 46.6087 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 43 G 0.4320 36.4322 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 44 b -0.1777 29.0196 46.2566 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 45 9 0.1382 30.7150 47.0619 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 46 ; 13.1865 9.4563 37.1646 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 47 D 0.2540 33.9315 46.2566 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 48 L 0.3304 28.2917 45.9489 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 49 y 14.8290 29.5371 46.1801 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 50 ‘ 0.1234 6.2353 15.1734 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 51 \ 1.1439 24.7790 47.3535 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 52 R -0.6843 31.5203 46.6937 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 53 < 12.5100 19.3535 26.8266 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 54 4 0.4878 32.9854 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 55 8 -0.8117 29.5371 46.6937 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 56 0 0.0914 32.0982 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 57 A 2.7977 34.7413 42.0000 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 58 E 0.1249 30.3469 46.2566 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 59 B 0.2343 29.1734 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 60 v 14.9827 25.8031 31.3748 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 61 k -0.5619 26.1668 47.8672 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 62 J 0.5682 34.6594 47.5672 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 63 U 0.3056 37.3920 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 64 j 2.8251 19.9315 58.8567 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 65 ( -1.8997 16.9248 59.1522 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 66 7 0.1941 32.5437 45.3741 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 67 § -1.8960 28.0000 47.8672 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 68 $ -4.3677 31.6450 60.2521 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 69 € -1.0867 37.0881 46.6937 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 70 / -2.1596 26.4584 49.4087 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 71 C 0.3009 31.7346 45.3741 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 72 * -0.9624 26.1668 23.2420 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 73 ” 0.4070 16.6424 15.3877 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 74 ? 2.3997 25.8031 44.3469 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 75 { -1.8514 19.9315 59.1522 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 76 } -1.8766 19.9315 59.1522 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 77 , 40.5849 8.6465 14.0000 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 78 I 1.7689 28.3476 43.2416 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 79 ° -3.3786 19.9315 20.0853 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 80 K 0.0722 29.1734 46.8399 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 81 H 0.2803 37.2420 46.6937 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 82 q 13.4900 25.2850 46.8399 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 83 & -0.0259 34.7451 46.9080 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 84 ’ 0.3646 8.4926 15.1734 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 85 [ 0.4325 16.1930 57.9787 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 86 - 26.8640 18.5437 5.0619 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 87 Y 1.5724 34.2353 44.7150 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 88 Q 0.2852 48.2353 56.9591 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 89 " 0.5225 15.4773 18.5437 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 90 ! -1.8259 6.0853 48.5270 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 91 x 13.8023 31.0067 32.0339 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 92 ) -2.0644 16.3469 59.1522 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 93 = 13.6258 22.4322 24.3214 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 94 + 13.5996 24.4154 24.4154 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 95 X 0.5680 38.1116 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 96 » 13.8531 31.0028 25.6531 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 97 ' -2.4745 5.0619 15.1734 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 98 ¢ -4.9559 29.3832 48.2353 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 99 Z 0.2727 37.6056 45.5203 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 100 > 14.3469 17.3703 24.6297 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 101 ® -1.9354 41.3402 40.7623 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 102 © -2.1430 40.8266 38.4231 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 103 ] 0.4009 16.1930 57.9787 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 104 é -1.8159 29.0196 47.8672 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 105 z 14.5796 26.1668 31.0067 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 106 _ 48.4739 38.7790 7.1049 -Comic_Sans_MS.ttf 24 # 48.2353 45.8884 107 ¥ 3.2742 31.1560 42.8053 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 1 t 4.4815 24.4154 40.9766 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 2 h -2.0795 27.3402 48.0853 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 3 a 14.3366 27.8462 31.0067 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 4 n 13.6091 25.2031 32.0301 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 5 P -0.2519 25.7986 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 6 o 14.7303 28.2098 31.0067 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 7 e 14.3206 29.0196 31.0067 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 8 : 12.1217 6.5913 28.6598 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 9 r 14.5912 22.4322 31.3748 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 10 l -2.1720 5.9315 47.8672 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 11 i 1.8427 5.9315 42.5060 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 12 1 0.0270 17.7944 44.3469 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 13 | -4.7774 5.0619 59.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 14 N -0.0362 40.7623 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 15 f -2.5173 25.3570 50.5822 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 16 g 14.5772 27.1902 46.1801 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 17 d -2.1681 29.0196 47.8672 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 18 W 0.3536 55.7857 46.6937 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 19 s 11.9400 23.9737 33.7172 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 20 c 14.7096 24.4154 31.0067 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 21 u 14.2648 25.6486 31.0067 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 22 3 -0.0122 26.8266 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 23 ~ 18.4211 29.5416 13.1304 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 24 # -0.2883 48.2353 45.8884 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 25 O -0.0549 40.8266 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 26 ` -2.1310 12.1668 14.0000 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 27 @ -2.3444 46.9080 50.3381 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 28 F -0.1350 29.7514 46.8399 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 29 S 2.3979 35.2549 43.5416 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 30 p 12.4229 26.0129 48.3770 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 31 “ -1.1978 16.2052 15.1734 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 32 % -2.4778 41.4940 48.0815 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 33 £ -2.5211 40.6123 52.6252 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 34 . 38.9112 7.2587 7.2587 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 35 2 0.1299 26.1844 44.3469 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 36 5 -0.9479 29.0970 46.6937 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 37 m 13.2215 41.1864 33.4217 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 38 V -0.3415 33.7172 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 39 6 -0.1116 28.4417 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 40 w 14.6860 36.2783 32.1801 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 41 T 0.4488 38.6252 43.4734 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 42 M -0.0041 46.1801 46.6087 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 43 G -0.1051 36.4322 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 44 b -0.2490 29.0196 46.2566 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 45 9 -0.0324 30.7150 47.0619 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 46 ; 12.3358 9.4563 37.1646 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 47 D -0.2134 33.9315 46.2566 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 48 L 0.1418 28.2917 45.9489 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 49 y 14.5567 29.5371 46.1801 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 50 ‘ -0.1057 6.2353 15.1734 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 51 \ 0.8704 24.7790 47.3535 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 52 R -1.2678 31.5203 46.6937 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 53 < 13.6703 17.3703 24.6297 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 54 4 0.0444 32.9854 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 55 8 -1.7146 29.5371 46.6937 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 56 0 0.2467 32.0982 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 57 A 2.4492 34.7413 42.0000 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 58 E 0.1584 30.3469 46.2566 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 59 B -0.0282 29.1734 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 60 v 14.6416 25.8031 31.3748 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 61 k -0.9856 26.1668 47.8672 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 62 J 0.1837 34.6594 47.5672 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 63 U -0.0997 37.3920 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 64 j 2.5077 19.9315 58.8567 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 65 ( -2.5480 16.3469 59.1522 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 66 7 0.2445 32.5437 45.3741 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 67 § -2.2734 28.0000 47.8672 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 68 $ -4.8117 31.6450 60.2521 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 69 € -1.2420 37.0881 46.6937 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 70 / -2.1120 26.4584 49.4087 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 71 C 0.3263 31.7346 45.3741 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 72 * -1.0274 26.1668 23.2420 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 73 ” -0.0805 16.6424 15.3877 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 74 ? 2.5181 25.8031 44.3469 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 75 { -1.9771 19.9315 59.1522 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 76 } -2.2717 19.9315 59.1522 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 77 , 40.6068 8.6465 14.0000 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 78 I 1.3564 28.3476 43.2416 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 79 ° -3.6562 19.9315 20.0853 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 80 K 0.0043 29.1734 46.8399 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 81 H -0.0272 37.2420 46.6937 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 82 q 13.3549 25.2850 46.8399 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 83 & 0.0311 34.7451 46.9080 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 84 ’ -0.0988 8.4926 15.1734 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 85 [ 0.2017 16.1930 57.9787 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 86 - 26.6260 18.5437 5.0619 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 87 Y 1.4270 34.2353 44.7150 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 88 Q -0.1736 48.2353 56.9591 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 89 " 0.0744 15.4773 18.5437 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 90 ! -2.6627 6.0853 48.5270 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 91 x 13.3860 31.0067 32.0339 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 92 ) -2.2314 16.9248 59.1522 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 93 = 13.3017 22.4322 24.3214 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 94 + 13.3145 24.4154 24.4154 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 95 X -0.0312 38.1116 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 96 » 13.9368 31.0028 25.6531 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 97 ' -3.0816 5.0619 15.1734 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 98 ¢ -5.0532 29.3832 48.2353 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 99 Z 0.0918 37.6056 45.5203 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 100 > 12.0264 19.3535 26.8266 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 101 ® -2.3122 41.3402 40.7623 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 102 © -2.4659 40.8266 38.4231 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 103 ] 0.0042 16.1930 57.9787 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 104 é -2.3070 29.0196 47.8672 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 105 z 14.3957 26.1668 31.0067 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 106 _ 48.0028 38.7790 7.1049 -Comic_Sans_MS.ttf 25 O 40.8266 45.5203 107 ¥ 2.5366 31.1560 42.8053 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 1 t 6.7573 24.4154 40.9766 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 2 h 0.0301 27.3402 48.0853 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 3 a 17.0339 27.8462 31.0067 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 4 n 16.0554 25.2031 32.0301 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 5 P 2.2597 25.7986 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 6 o 16.7079 28.2098 31.0067 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 7 e 16.9731 29.0196 31.0067 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 8 : 14.5970 6.5913 28.6598 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 9 r 16.4836 22.4322 31.3748 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 10 l -0.0431 5.9315 47.8672 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 11 i 4.1721 5.9315 42.5060 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 12 1 2.1886 17.7944 44.3469 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 13 | -2.5668 5.0619 59.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 14 N 2.5312 40.7623 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 15 f 0.1645 25.3570 50.5822 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 16 g 16.8605 27.1902 46.1801 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 17 d 0.2484 29.0196 47.8672 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 18 W 2.5796 55.7857 46.6937 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 19 s 14.2357 23.9737 33.7172 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 20 c 16.8105 24.4154 31.0067 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 21 u 16.6916 25.6486 31.0067 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 22 3 2.2514 26.8266 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 23 ~ 20.5927 29.5416 13.1304 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 24 # 1.8706 48.2353 45.8884 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 25 O 2.1356 40.8266 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 26 ` -0.3718 12.1668 14.0000 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 27 @ 0.1648 46.9080 50.3381 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 28 F 2.4577 29.7514 46.8399 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 29 S 4.5890 35.2549 43.5416 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 30 p 14.5808 26.0129 48.3770 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 31 “ 1.6918 16.2052 15.1734 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 32 % -0.3736 41.4940 48.0815 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 33 £ -0.0871 40.6123 52.6252 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 34 . 40.8736 7.2587 7.2587 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 35 2 2.4165 26.1844 44.3469 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 36 5 1.2526 29.0970 46.6937 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 37 m 15.7059 41.1864 33.4217 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 38 V 2.2458 33.7172 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 39 6 2.1717 28.4417 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 40 w 16.7391 36.2783 32.1801 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 41 T 2.9684 38.6252 43.4734 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 42 M 2.3469 46.1801 46.6087 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 43 G 2.3826 36.4322 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 44 b 1.4662 29.0196 46.2566 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 45 9 2.4665 30.7150 47.0619 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 46 ; 14.6099 9.4563 37.1646 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 47 D 2.2546 33.9315 46.2566 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 48 L 2.2955 28.2917 45.9489 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 49 y 16.9347 29.5371 46.1801 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 50 ‘ 2.3469 6.2353 15.1734 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 51 \ 3.1859 24.7790 47.3535 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 52 R 1.2077 31.5203 46.6937 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 53 < 14.4375 19.3535 26.8266 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 54 4 2.4336 32.9854 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 55 8 0.9906 29.5371 46.6937 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 56 0 2.2705 32.0982 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 57 A 4.6892 34.7413 42.0000 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 58 E 2.3709 30.3469 46.2566 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 59 B 2.0113 29.1734 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 60 v 17.1040 25.8031 31.3748 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 61 k 1.0629 26.1668 47.8672 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 62 J 2.1296 34.6594 47.5672 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 63 U 2.5054 37.3920 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 64 j 4.7598 19.9315 58.8567 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 65 ( 0.0426 16.9248 59.1522 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 66 7 2.4482 32.5437 45.3741 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 67 § 0.0042 28.0000 47.8672 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 68 $ -2.7021 31.6450 60.2521 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 69 € 1.2147 37.0881 46.6937 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 70 / -0.1658 26.4584 49.4087 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 71 C 2.7387 31.7346 45.3741 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 72 * 0.7876 26.1668 23.2420 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 73 ” 2.4812 16.6424 15.3877 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 74 ? 4.7527 25.8031 44.3469 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 75 { -0.0024 19.9315 59.1522 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 76 } -0.0169 19.9315 59.1522 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 77 , 42.8799 8.6465 14.0000 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 78 I 3.7471 28.3476 43.2416 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 79 ° -1.3878 19.9315 20.0853 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 80 K 2.1143 29.1734 46.8399 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 81 H 2.3007 37.2420 46.6937 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 82 q 15.8973 25.2850 46.8399 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 83 & 2.4548 34.7451 46.9080 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 84 ’ 2.2640 8.4926 15.1734 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 85 [ 2.1347 16.1930 57.9787 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 86 - 28.7588 18.5437 5.0619 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 87 Y 3.6277 34.2353 44.7150 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 88 Q 2.5044 48.2353 56.9591 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 89 " 2.4670 15.4773 18.5437 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 90 ! 0.2100 6.0853 48.5270 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 91 x 15.9191 31.0067 32.0339 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 92 ) -0.0824 16.3469 59.1522 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 93 = 15.7081 22.4322 24.3214 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 94 + 15.7742 24.4154 24.4154 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 95 X 2.4402 38.1116 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 96 » 16.1537 31.0028 25.6531 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 97 ' -1.1168 5.0619 15.1734 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 98 ¢ -2.4656 29.3832 48.2353 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 99 Z 2.3597 37.6056 45.5203 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 100 > 16.4295 17.3703 24.6297 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 101 ® 0.1250 41.3402 40.7623 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 102 © -0.0422 40.8266 38.4231 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 103 ] 2.5239 16.1930 57.9787 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 104 é -0.3591 29.0196 47.8672 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 105 z 16.8595 26.1668 31.0067 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 106 _ 50.2762 38.7790 7.1049 -Comic_Sans_MS.ttf 26 ` 12.1668 14.0000 107 ¥ 4.9862 31.1560 42.8053 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 1 t 6.9992 24.4154 40.9766 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 2 h 0.1896 27.3402 48.0853 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 3 a 16.6188 27.8462 31.0067 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 4 n 16.1057 25.2031 32.0301 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 5 P 2.3330 25.7986 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 6 o 16.7726 28.2098 31.0067 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 7 e 16.7858 29.0196 31.0067 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 8 : 14.7481 6.5913 28.6598 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 9 r 16.5044 22.4322 31.3748 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 10 l -0.3846 5.9315 47.8672 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 11 i 4.2234 5.9315 42.5060 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 12 1 2.4324 17.7944 44.3469 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 13 | -2.8745 5.0619 59.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 14 N 2.4905 40.7623 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 15 f 0.3057 25.3570 50.5822 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 16 g 16.9154 27.1902 46.1801 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 17 d 0.4079 29.0196 47.8672 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 18 W 2.2458 55.7857 46.6937 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 19 s 14.1206 23.9737 33.7172 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 20 c 17.0064 24.4154 31.0067 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 21 u 16.6000 25.6486 31.0067 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 22 3 2.4228 26.8266 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 23 ~ 20.2764 29.5416 13.1304 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 24 # 2.0188 48.2353 45.8884 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 25 O 2.7349 40.8266 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 26 ` 0.2053 12.1668 14.0000 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 27 @ -0.1332 46.9080 50.3381 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 28 F 2.1789 29.7514 46.8399 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 29 S 4.6787 35.2549 43.5416 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 30 p 14.5964 26.0129 48.3770 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 31 “ 1.4140 16.2052 15.1734 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 32 % -0.3781 41.4940 48.0815 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 33 £ -0.1768 40.6123 52.6252 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 34 . 40.8058 7.2587 7.2587 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 35 2 2.4095 26.1844 44.3469 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 36 5 1.3838 29.0970 46.6937 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 37 m 16.1502 41.1864 33.4217 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 38 V 2.2027 33.7172 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 39 6 2.0109 28.4417 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 40 w 16.4995 36.2783 32.1801 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 41 T 3.0988 38.6252 43.4734 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 42 M 2.5400 46.1801 46.6087 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 43 G 1.9091 36.4322 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 44 b 1.3728 29.0196 46.2566 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 45 9 2.5068 30.7150 47.0619 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 46 ; 15.2005 9.4563 37.1646 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 47 D 2.3574 33.9315 46.2566 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 48 L 2.1660 28.2917 45.9489 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 49 y 17.1190 29.5371 46.1801 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 50 ‘ 2.5149 6.2353 15.1734 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 51 \ 2.7185 24.7790 47.3535 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 52 R 1.2098 31.5203 46.6937 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 53 < 14.1462 19.3535 26.8266 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 54 4 2.2873 32.9854 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 55 8 1.2324 29.5371 46.6937 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 56 0 2.2353 32.0982 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 57 A 4.5200 34.7413 42.0000 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 58 E 2.3118 30.3469 46.2566 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 59 B 2.2479 29.1734 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 60 v 16.9945 25.8031 31.3748 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 61 k 1.3306 26.1668 47.8672 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 62 J 2.4603 34.6594 47.5672 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 63 U 2.6417 37.3920 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 64 j 4.7650 19.9315 58.8567 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 65 ( 0.1172 16.9248 59.1522 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 66 7 2.4695 32.5437 45.3741 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 67 § -0.1005 28.0000 47.8672 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 68 $ -2.9197 31.6450 60.2521 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 69 € 1.4181 37.0881 46.6937 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 70 / -0.2271 26.4584 49.4087 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 71 C 2.2758 31.7346 45.3741 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 72 * 1.2086 26.1668 23.2420 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 73 ” 2.7983 16.6424 15.3877 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 74 ? 4.6711 25.8031 44.3469 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 75 { -0.3524 19.9315 59.1522 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 76 } -0.1351 19.9315 59.1522 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 77 , 43.0251 8.6465 14.0000 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 78 I 3.8488 28.3476 43.2416 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 79 ° -1.2125 19.9315 20.0853 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 80 K 2.3818 29.1734 46.8399 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 81 H 2.5886 37.2420 46.6937 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 82 q 15.6199 25.2850 46.8399 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 83 & 2.5216 34.7451 46.9080 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 84 ’ 2.0544 8.4926 15.1734 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 85 [ 2.4679 16.1930 57.9787 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 86 - 28.7284 18.5437 5.0619 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 87 Y 3.6070 34.2353 44.7150 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 88 Q 2.6062 48.2353 56.9591 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 89 " 2.2466 15.4773 18.5437 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 90 ! 0.4274 6.0853 48.5270 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 91 x 15.6279 31.0067 32.0339 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 92 ) 0.1564 16.3469 59.1522 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 93 = 15.2070 22.4322 24.3214 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 94 + 15.6907 24.4154 24.4154 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 95 X 2.3276 38.1116 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 96 » 15.8430 31.0028 25.6531 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 97 ' -0.3667 5.0619 15.1734 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 98 ¢ -2.4651 29.3832 48.2353 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 99 Z 2.0153 37.6056 45.5203 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 100 > 16.8016 17.3703 24.6297 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 101 ® -0.2473 41.3402 40.7623 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 102 © -0.0723 40.8266 38.4231 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 103 ] 2.4882 16.1930 57.9787 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 104 é 0.1588 29.0196 47.8672 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 105 z 16.9597 26.1668 31.0067 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 106 _ 50.1786 38.7790 7.1049 -Comic_Sans_MS.ttf 27 @ 46.9080 50.3381 107 ¥ 5.2136 31.1560 42.8053 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 1 t 4.4993 24.4154 40.9766 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 2 h -2.3195 27.3402 48.0853 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 3 a 14.6508 27.8462 31.0067 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 4 n 13.2371 25.2031 32.0301 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 5 P -0.2589 25.7986 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 6 o 14.2739 28.2098 31.0067 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 7 e 14.5930 29.0196 31.0067 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 8 : 12.2257 6.5913 28.6598 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 9 r 14.1063 22.4322 31.3748 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 10 l -2.1128 5.9315 47.8672 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 11 i 1.8594 5.9315 42.5060 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 12 1 -0.0440 17.7944 44.3469 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 13 | -4.8993 5.0619 59.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 14 N 0.0514 40.7623 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 15 f -2.3589 25.3570 50.5822 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 16 g 14.4682 27.1902 46.1801 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 17 d -2.5647 29.0196 47.8672 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 18 W 0.1511 55.7857 46.6937 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 19 s 11.6835 23.9737 33.7172 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 20 c 14.4682 24.4154 31.0067 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 21 u 14.2663 25.6486 31.0067 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 22 3 0.0857 26.8266 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 23 ~ 18.4655 29.5416 13.1304 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 24 # -0.4616 48.2353 45.8884 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 25 O 0.2446 40.8266 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 26 ` -2.5935 12.1668 14.0000 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 27 @ -2.3339 46.9080 50.3381 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 28 F -0.0850 29.7514 46.8399 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 29 S 2.1751 35.2549 43.5416 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 30 p 12.3959 26.0129 48.3770 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 31 “ -0.7373 16.2052 15.1734 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 32 % -2.5542 41.4940 48.0815 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 33 £ -2.5257 40.6123 52.6252 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 34 . 38.7213 7.2587 7.2587 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 35 2 -0.3072 26.1844 44.3469 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 36 5 -1.0251 29.0970 46.6937 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 37 m 13.5550 41.1864 33.4217 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 38 V 0.1771 33.7172 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 39 6 -0.2155 28.4417 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 40 w 14.3443 36.2783 32.1801 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 41 T 0.7083 38.6252 43.4734 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 42 M -0.2656 46.1801 46.6087 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 43 G -0.0801 36.4322 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 44 b -0.6223 29.0196 46.2566 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 45 9 -0.1406 30.7150 47.0619 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 46 ; 12.9526 9.4563 37.1646 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 47 D -0.0301 33.9315 46.2566 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 48 L 0.0403 28.2917 45.9489 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 49 y 14.5297 29.5371 46.1801 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 50 ‘ 0.2609 6.2353 15.1734 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 51 \ 0.7086 24.7790 47.3535 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 52 R -1.1263 31.5203 46.6937 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 53 < 14.0447 17.3703 24.6297 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 54 4 0.3107 32.9854 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 55 8 -1.4317 29.5371 46.6937 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 56 0 -0.0871 32.0982 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 57 A 2.0395 34.7413 42.0000 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 58 E 0.1236 30.3469 46.2566 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 59 B -0.0507 29.1734 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 60 v 14.6054 25.8031 31.3748 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 61 k -1.0994 26.1668 47.8672 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 62 J -0.0003 34.6594 47.5672 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 63 U 0.1187 37.3920 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 64 j 2.3058 19.9315 58.8567 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 65 ( -2.5924 16.3469 59.1522 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 66 7 0.1532 32.5437 45.3741 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 67 § -2.5617 28.0000 47.8672 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 68 $ -5.0189 31.6450 60.2521 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 69 € -1.4489 37.0881 46.6937 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 70 / -2.7090 26.4584 49.4087 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 71 C -0.1837 31.7346 45.3741 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 72 * -1.3287 26.1668 23.2420 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 73 ” -0.2201 16.6424 15.3877 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 74 ? 2.0719 25.8031 44.3469 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 75 { -2.1324 19.9315 59.1522 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 76 } -2.5035 19.9315 59.1522 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 77 , 40.3818 8.6465 14.0000 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 78 I 1.4595 28.3476 43.2416 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 79 ° -3.7514 19.9315 20.0853 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 80 K 0.2387 29.1734 46.8399 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 81 H 0.0055 37.2420 46.6937 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 82 q 13.3811 25.2850 46.8399 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 83 & -0.0801 34.7451 46.9080 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 84 ’ 0.0816 8.4926 15.1734 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 85 [ 0.0254 16.1930 57.9787 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 86 - 26.7017 18.5437 5.0619 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 87 Y 0.9750 34.2353 44.7150 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 88 Q 0.2221 48.2353 56.9591 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 89 " 0.1185 15.4773 18.5437 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 90 ! -2.2707 6.0853 48.5270 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 91 x 13.5866 31.0067 32.0339 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 92 ) -2.4007 16.9248 59.1522 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 93 = 13.2430 22.4322 24.3214 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 94 + 12.9372 24.4154 24.4154 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 95 X -0.2544 38.1116 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 96 » 13.5490 31.0028 25.6531 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 97 ' -3.0043 5.0619 15.1734 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 98 ¢ -5.0056 29.3832 48.2353 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 99 Z 0.0412 37.6056 45.5203 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 100 > 12.2275 19.3535 26.8266 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 101 ® -2.5243 41.3402 40.7623 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 102 © -2.3966 40.8266 38.4231 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 103 ] 0.0763 16.1930 57.9787 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 104 é -2.6542 29.0196 47.8672 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 105 z 14.2113 26.1668 31.0067 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 106 _ 48.1978 38.7790 7.1049 -Comic_Sans_MS.ttf 28 F 29.7514 46.8399 107 ¥ 2.6936 31.1560 42.8053 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 1 t 1.9439 24.4154 40.9766 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 2 h -4.4407 27.3402 48.0853 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 3 a 12.2913 27.8462 31.0067 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 4 n 11.5062 25.2031 32.0301 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 5 P -2.2226 25.7986 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 6 o 12.2491 28.2098 31.0067 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 7 e 12.4086 29.0196 31.0067 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 8 : 9.9760 6.5913 28.6598 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 9 r 11.6249 22.4322 31.3748 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 10 l -4.6118 5.9315 47.8672 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 11 i -0.5243 5.9315 42.5060 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 12 1 -2.3201 17.7944 44.3469 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 13 | -7.1958 5.0619 59.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 14 N -2.3119 40.7623 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 15 f -4.7322 25.3570 50.5822 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 16 g 12.1648 27.1902 46.1801 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 17 d -4.5241 29.0196 47.8672 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 18 W -2.2135 55.7857 46.6937 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 19 s 9.6221 23.9737 33.7172 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 20 c 11.8077 24.4154 31.0067 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 21 u 12.0324 25.6486 31.0067 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 22 3 -2.1664 26.8266 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 23 ~ 15.6726 29.5416 13.1304 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 24 # -2.5537 48.2353 45.8884 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 25 O -2.6642 40.8266 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 26 ` -4.6437 12.1668 14.0000 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 27 @ -4.5597 46.9080 50.3381 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 28 F -2.6588 29.7514 46.8399 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 29 S -0.1564 35.2549 43.5416 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 30 p 9.8699 26.0129 48.3770 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 31 “ -3.0985 16.2052 15.1734 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 32 % -5.2274 41.4940 48.0815 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 33 £ -4.8787 40.6123 52.6252 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 34 . 36.2626 7.2587 7.2587 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 35 2 -2.5646 26.1844 44.3469 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 36 5 -3.4399 29.0970 46.6937 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 37 m 11.2266 41.1864 33.4217 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 38 V -2.3363 33.7172 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 39 6 -2.4969 28.4417 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 40 w 12.3466 36.2783 32.1801 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 41 T -1.4661 38.6252 43.4734 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 42 M -2.4892 46.1801 46.6087 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 43 G -2.3559 36.4322 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 44 b -3.1654 29.0196 46.2566 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 45 9 -2.1537 30.7150 47.0619 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 46 ; 10.6506 9.4563 37.1646 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 47 D -2.1729 33.9315 46.2566 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 48 L -2.0443 28.2917 45.9489 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 49 y 12.3084 29.5371 46.1801 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 50 ‘ -2.6179 6.2353 15.1734 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 51 \ -1.3742 24.7790 47.3535 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 52 R -3.7605 31.5203 46.6937 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 53 < 11.6965 17.3703 24.6297 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 54 4 -2.4794 32.9854 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 55 8 -3.5039 29.5371 46.6937 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 56 0 -2.4382 32.0982 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 57 A 0.2096 34.7413 42.0000 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 58 E -2.2790 30.3469 46.2566 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 59 B -2.2754 29.1734 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 60 v 12.1305 25.8031 31.3748 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 61 k -3.5295 26.1668 47.8672 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 62 J -2.3103 34.6594 47.5672 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 63 U -2.5033 37.3920 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 64 j -0.0140 19.9315 58.8567 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 65 ( -4.6217 16.3469 59.1522 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 66 7 -2.1550 32.5437 45.3741 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 67 § -4.8557 28.0000 47.8672 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 68 $ -7.0720 31.6450 60.2521 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 69 € -3.2723 37.0881 46.6937 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 70 / -4.7852 26.4584 49.4087 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 71 C -2.1784 31.7346 45.3741 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 72 * -3.5532 26.1668 23.2420 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 73 ” -2.2240 16.6424 15.3877 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 74 ? -0.3721 25.8031 44.3469 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 75 { -4.9890 19.9315 59.1522 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 76 } -4.8529 19.9315 59.1522 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 77 , 38.1921 8.6465 14.0000 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 78 I -1.0657 28.3476 43.2416 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 79 ° -5.9538 19.9315 20.0853 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 80 K -2.0383 29.1734 46.8399 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 81 H -2.2923 37.2420 46.6937 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 82 q 10.9636 25.2850 46.8399 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 83 & -2.6998 34.7451 46.9080 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 84 ’ -2.3455 8.4926 15.1734 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 85 [ -2.5184 16.1930 57.9787 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 86 - 24.2183 18.5437 5.0619 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 87 Y -1.1568 34.2353 44.7150 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 88 Q -2.2321 48.2353 56.9591 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 89 " -2.5127 15.4773 18.5437 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 90 ! -4.7825 6.0853 48.5270 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 91 x 11.2438 31.0067 32.0339 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 92 ) -4.4988 16.9248 59.1522 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 93 = 10.9084 22.4322 24.3214 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 94 + 10.7750 24.4154 24.4154 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 95 X -2.2388 38.1116 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 96 » 11.3572 31.0028 25.6531 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 97 ' -5.4551 5.0619 15.1734 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 98 ¢ -7.6575 29.3832 48.2353 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 99 Z -2.6116 37.6056 45.5203 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 100 > 9.9487 19.3535 26.8266 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 101 ® -4.7464 41.3402 40.7623 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 102 © -4.5181 40.8266 38.4231 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 103 ] -2.4630 16.1930 57.9787 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 104 é -4.2630 29.0196 47.8672 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 105 z 12.1719 26.1668 31.0067 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 106 _ 45.4809 38.7790 7.1049 -Comic_Sans_MS.ttf 29 S 35.2549 43.5416 107 ¥ 0.1425 31.1560 42.8053 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 1 t -7.4088 24.4154 40.9766 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 2 h -14.5875 27.3402 48.0853 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 3 a 2.3308 27.8462 31.0067 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 4 n 1.1121 25.2031 32.0301 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 5 P -12.3864 25.7986 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 6 o 2.4463 28.2098 31.0067 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 7 e 2.1167 29.0196 31.0067 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 8 : -0.0513 6.5913 28.6598 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 9 r 1.8750 22.4322 31.3748 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 10 l -14.5720 5.9315 47.8672 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 11 i -10.2627 5.9315 42.5060 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 12 1 -12.4731 17.7944 44.3469 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 13 | -17.1856 5.0619 59.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 14 N -12.3567 40.7623 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 15 f -14.5066 25.3570 50.5822 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 16 g 2.2173 27.1902 46.1801 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 17 d -14.6636 29.0196 47.8672 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 18 W -12.3136 55.7857 46.6937 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 19 s -0.4524 23.9737 33.7172 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 20 c 2.1240 24.4154 31.0067 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 21 u 2.0856 25.6486 31.0067 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 22 3 -12.3941 26.8266 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 23 ~ 6.1095 29.5416 13.1304 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 24 # -12.6249 48.2353 45.8884 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 25 O -12.2453 40.8266 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 26 ` -14.7378 12.1668 14.0000 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 27 @ -14.3740 46.9080 50.3381 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 28 F -12.1202 29.7514 46.8399 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 29 S -9.9380 35.2549 43.5416 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 30 p -0.0819 26.0129 48.3770 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 31 “ -13.0614 16.2052 15.1734 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 32 % -14.7790 41.4940 48.0815 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 33 £ -14.5484 40.6123 52.6252 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 34 . 26.1543 7.2587 7.2587 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 35 2 -12.2798 26.1844 44.3469 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 36 5 -13.7019 29.0970 46.6937 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 37 m 1.1091 41.1864 33.4217 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 38 V -12.2584 33.7172 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 39 6 -12.2538 28.4417 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 40 w 2.2423 36.2783 32.1801 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 41 T -11.3729 38.6252 43.4734 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 42 M -12.3303 46.1801 46.6087 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 43 G -12.3668 36.4322 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 44 b -13.3910 29.0196 46.2566 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 45 9 -12.0614 30.7150 47.0619 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 46 ; 0.4403 9.4563 37.1646 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 47 D -12.1800 33.9315 46.2566 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 48 L -12.3668 28.2917 45.9489 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 49 y 2.3452 29.5371 46.1801 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 50 ‘ -12.3740 6.2353 15.1734 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 51 \ -11.3532 24.7790 47.3535 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 52 R -13.5714 31.5203 46.6937 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 53 < 2.2021 17.3703 24.6297 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 54 4 -12.3566 32.9854 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 55 8 -13.4940 29.5371 46.6937 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 56 0 -12.4581 32.0982 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 57 A -10.3068 34.7413 42.0000 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 58 E -12.1082 30.3469 46.2566 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 59 B -12.4456 29.1734 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 60 v 2.2094 25.8031 31.3748 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 61 k -13.2456 26.1668 47.8672 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 62 J -12.1527 34.6594 47.5672 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 63 U -12.5479 37.3920 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 64 j -9.8056 19.9315 58.8567 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 65 ( -14.7163 16.3469 59.1522 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 66 7 -12.3007 32.5437 45.3741 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 67 § -14.5682 28.0000 47.8672 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 68 $ -17.1675 31.6450 60.2521 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 69 € -13.3444 37.0881 46.6937 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 70 / -15.0232 26.4584 49.4087 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 71 C -12.3490 31.7346 45.3741 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 72 * -13.5940 26.1668 23.2420 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 73 ” -12.3628 16.6424 15.3877 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 74 ? -10.2233 25.8031 44.3469 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 75 { -14.4079 19.9315 59.1522 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 76 } -14.5730 19.9315 59.1522 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 77 , 28.1958 8.6465 14.0000 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 78 I -11.2914 28.3476 43.2416 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 79 ° -16.0433 19.9315 20.0853 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 80 K -12.6779 29.1734 46.8399 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 81 H -12.2668 37.2420 46.6937 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 82 q 1.1658 25.2850 46.8399 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 83 & -12.4001 34.7451 46.9080 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 84 ’ -12.2847 8.4926 15.1734 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 85 [ -12.4298 16.1930 57.9787 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 86 - 14.3054 18.5437 5.0619 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 87 Y -11.1388 34.2353 44.7150 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 88 Q -12.3076 48.2353 56.9591 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 89 " -12.3070 15.4773 18.5437 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 90 ! -14.6203 6.0853 48.5270 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 91 x 1.0663 31.0067 32.0339 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 92 ) -14.9252 16.9248 59.1522 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 93 = 0.9729 22.4322 24.3214 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 94 + 0.9423 24.4154 24.4154 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 95 X -12.3710 38.1116 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 96 » 1.7100 31.0028 25.6531 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 97 ' -15.5609 5.0619 15.1734 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 98 ¢ -17.4717 29.3832 48.2353 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 99 Z -12.2199 37.6056 45.5203 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 100 > 0.0492 19.3535 26.8266 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 101 ® -14.7410 41.3402 40.7623 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 102 © -14.6668 40.8266 38.4231 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 103 ] -12.0565 16.1930 57.9787 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 104 é -14.7640 29.0196 47.8672 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 105 z 2.0240 26.1668 31.0067 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 106 _ 35.7316 38.7790 7.1049 -Comic_Sans_MS.ttf 30 p 26.0129 48.3770 107 ¥ -9.4275 31.1560 42.8053 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 1 t 5.3657 24.4154 40.9766 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 2 h -1.6302 27.3402 48.0853 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 3 a 15.3695 27.8462 31.0067 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 4 n 14.3654 25.2031 32.0301 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 5 P 0.3661 25.7986 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 6 o 15.3318 28.2098 31.0067 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 7 e 15.2856 29.0196 31.0067 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 8 : 12.6990 6.5913 28.6598 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 9 r 14.9304 22.4322 31.3748 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 10 l -1.4405 5.9315 47.8672 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 11 i 2.4981 5.9315 42.5060 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 12 1 0.7287 17.7944 44.3469 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 13 | -4.1728 5.0619 59.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 14 N 0.5954 40.7623 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 15 f -1.6064 25.3570 50.5822 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 16 g 15.2630 27.1902 46.1801 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 17 d -2.2099 29.0196 47.8672 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 18 W 0.7012 55.7857 46.6937 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 19 s 12.4326 23.9737 33.7172 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 20 c 15.1065 24.4154 31.0067 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 21 u 14.7177 25.6486 31.0067 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 22 3 0.6194 26.8266 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 23 ~ 19.0836 29.5416 13.1304 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 24 # 0.3666 48.2353 45.8884 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 25 O 0.7580 40.8266 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 26 ` -1.7996 12.1668 14.0000 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 27 @ -1.9864 46.9080 50.3381 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 28 F 0.8104 29.7514 46.8399 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 29 S 3.0302 35.2549 43.5416 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 30 p 12.9673 26.0129 48.3770 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 31 “ 0.0199 16.2052 15.1734 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 32 % -1.6371 41.4940 48.0815 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 33 £ -1.5679 40.6123 52.6252 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 34 . 39.3445 7.2587 7.2587 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 35 2 0.8220 26.1844 44.3469 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 36 5 -0.2689 29.0970 46.6937 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 37 m 14.2237 41.1864 33.4217 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 38 V 0.7415 33.7172 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 39 6 0.4887 28.4417 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 40 w 15.3478 36.2783 32.1801 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 41 T 1.4403 38.6252 43.4734 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 42 M 0.5035 46.1801 46.6087 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 43 G 0.7922 36.4322 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 44 b -0.0076 29.0196 46.2566 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 45 9 0.7418 30.7150 47.0619 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 46 ; 13.3853 9.4563 37.1646 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 47 D 0.7803 33.9315 46.2566 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 48 L 0.8013 28.2917 45.9489 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 49 y 15.2499 29.5371 46.1801 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 50 ‘ 0.8067 6.2353 15.1734 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 51 \ 1.6040 24.7790 47.3535 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 52 R -0.3630 31.5203 46.6937 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 53 < 12.9554 19.3535 26.8266 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 54 4 0.9994 32.9854 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 55 8 -0.3116 29.5371 46.6937 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 56 0 0.6946 32.0982 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 57 A 3.4827 34.7413 42.0000 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 58 E 0.5798 30.3469 46.2566 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 59 B 0.5999 29.1734 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 60 v 15.2096 25.8031 31.3748 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 61 k -0.2205 26.1668 47.8672 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 62 J 0.6163 34.6594 47.5672 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 63 U 0.8779 37.3920 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 64 j 3.1506 19.9315 58.8567 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 65 ( -1.6890 16.9248 59.1522 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 66 7 0.9251 32.5437 45.3741 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 67 § -1.6018 28.0000 47.8672 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 68 $ -4.3755 31.6450 60.2521 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 69 € -0.4348 37.0881 46.6937 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 70 / -1.7924 26.4584 49.4087 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 71 C 0.7996 31.7346 45.3741 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 72 * -0.7174 26.1668 23.2420 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 73 ” 0.9661 16.6424 15.3877 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 74 ? 3.0755 25.8031 44.3469 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 75 { -2.0092 19.9315 59.1522 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 76 } -1.5276 19.9315 59.1522 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 77 , 41.3286 8.6465 14.0000 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 78 I 1.9650 28.3476 43.2416 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 79 ° -2.8219 19.9315 20.0853 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 80 K 0.9003 29.1734 46.8399 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 81 H 0.6219 37.2420 46.6937 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 82 q 13.8151 25.2850 46.8399 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 83 & 0.7514 34.7451 46.9080 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 84 ’ 0.8772 8.4926 15.1734 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 85 [ 1.0315 16.1930 57.9787 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 86 - 27.3791 18.5437 5.0619 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 87 Y 1.9107 34.2353 44.7150 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 88 Q 0.7427 48.2353 56.9591 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 89 " 0.8615 15.4773 18.5437 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 90 ! -1.6843 6.0853 48.5270 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 91 x 14.3055 31.0067 32.0339 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 92 ) -1.4353 16.3469 59.1522 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 93 = 13.9530 22.4322 24.3214 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 94 + 14.1636 24.4154 24.4154 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 95 X 0.5601 38.1116 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 96 » 14.4038 31.0028 25.6531 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 97 ' -2.3159 5.0619 15.1734 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 98 ¢ -4.3256 29.3832 48.2353 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 99 Z 0.6148 37.6056 45.5203 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 100 > 14.6354 17.3703 24.6297 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 101 ® -1.2321 41.3402 40.7623 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 102 © -1.7821 40.8266 38.4231 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 103 ] 0.7785 16.1930 57.9787 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 104 é -1.4928 29.0196 47.8672 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 105 z 15.4834 26.1668 31.0067 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 106 _ 48.5293 38.7790 7.1049 -Comic_Sans_MS.ttf 31 “ 16.2052 15.1734 107 ¥ 3.5088 31.1560 42.8053 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 1 t 6.8218 24.4154 40.9766 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 2 h 0.0834 27.3402 48.0853 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 3 a 16.8855 27.8462 31.0067 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 4 n 16.0468 25.2031 32.0301 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 5 P 2.1291 25.7986 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 6 o 17.2287 28.2098 31.0067 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 7 e 16.9837 29.0196 31.0067 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 8 : 14.7118 6.5913 28.6598 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 9 r 16.7902 22.4322 31.3748 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 10 l 0.2958 5.9315 47.8672 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 11 i 4.3678 5.9315 42.5060 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 12 1 2.6024 17.7944 44.3469 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 13 | -2.2908 5.0619 59.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 14 N 2.6416 40.7623 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 15 f 0.4396 25.3570 50.5822 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 16 g 16.7954 27.1902 46.1801 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 17 d 0.3509 29.0196 47.8672 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 18 W 2.6353 55.7857 46.6937 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 19 s 14.3983 23.9737 33.7172 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 20 c 17.2374 24.4154 31.0067 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 21 u 17.1573 25.6486 31.0067 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 22 3 2.8578 26.8266 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 23 ~ 20.9765 29.5416 13.1304 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 24 # 2.0887 48.2353 45.8884 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 25 O 2.3425 40.8266 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 26 ` 0.0498 12.1668 14.0000 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 27 @ 0.1702 46.9080 50.3381 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 28 F 2.4485 29.7514 46.8399 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 29 S 5.1527 35.2549 43.5416 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 30 p 14.6421 26.0129 48.3770 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 31 “ 2.1832 16.2052 15.1734 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 32 % -0.1117 41.4940 48.0815 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 33 £ 0.0109 40.6123 52.6252 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 34 . 41.3726 7.2587 7.2587 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 35 2 2.3753 26.1844 44.3469 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 36 5 1.7415 29.0970 46.6937 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 37 m 15.7540 41.1864 33.4217 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 38 V 2.5102 33.7172 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 39 6 2.5667 28.4417 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 40 w 16.8358 36.2783 32.1801 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 41 T 3.7095 38.6252 43.4734 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 42 M 2.4545 46.1801 46.6087 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 43 G 1.9667 36.4322 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 44 b 1.6528 29.0196 46.2566 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 45 9 2.8851 30.7150 47.0619 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 46 ; 15.3813 9.4563 37.1646 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 47 D 2.6403 33.9315 46.2566 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 48 L 2.4931 28.2917 45.9489 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 49 y 17.3185 29.5371 46.1801 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 50 ‘ 2.7911 6.2353 15.1734 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 51 \ 3.7172 24.7790 47.3535 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 52 R 1.4000 31.5203 46.6937 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 53 < 14.7780 19.3535 26.8266 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 54 4 2.2845 32.9854 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 55 8 1.4525 29.5371 46.6937 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 56 0 2.5329 32.0982 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 57 A 4.9494 34.7413 42.0000 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 58 E 2.3815 30.3469 46.2566 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 59 B 2.7399 29.1734 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 60 v 17.1689 25.8031 31.3748 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 61 k 1.4923 26.1668 47.8672 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 62 J 2.6910 34.6594 47.5672 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 63 U 2.5115 37.3920 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 64 j 5.1313 19.9315 58.8567 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 65 ( -0.1722 16.9248 59.1522 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 66 7 2.9893 32.5437 45.3741 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 67 § 0.0544 28.0000 47.8672 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 68 $ -2.4790 31.6450 60.2521 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 69 € 1.3780 37.0881 46.6937 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 70 / -0.2542 26.4584 49.4087 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 71 C 3.0103 31.7346 45.3741 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 72 * 1.4526 26.1668 23.2420 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 73 ” 2.7077 16.6424 15.3877 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 74 ? 4.6269 25.8031 44.3469 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 75 { 0.2167 19.9315 59.1522 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 76 } 0.2067 19.9315 59.1522 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 77 , 43.1938 8.6465 14.0000 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 78 I 3.9979 28.3476 43.2416 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 79 ° -1.0771 19.9315 20.0853 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 80 K 2.8406 29.1734 46.8399 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 81 H 2.8796 37.2420 46.6937 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 82 q 16.0956 25.2850 46.8399 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 83 & 3.1454 34.7451 46.9080 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 84 ’ 2.7600 8.4926 15.1734 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 85 [ 2.2487 16.1930 57.9787 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 86 - 28.8945 18.5437 5.0619 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 87 Y 3.8233 34.2353 44.7150 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 88 Q 2.5961 48.2353 56.9591 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 89 " 2.7001 15.4773 18.5437 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 90 ! 0.4534 6.0853 48.5270 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 91 x 16.0832 31.0067 32.0339 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 92 ) 0.0603 16.3469 59.1522 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 93 = 15.6439 22.4322 24.3214 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 94 + 15.4202 24.4154 24.4154 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 95 X 2.3330 38.1116 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 96 » 16.1352 31.0028 25.6531 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 97 ' -0.4420 5.0619 15.1734 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 98 ¢ -2.3846 29.3832 48.2353 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 99 Z 2.3527 37.6056 45.5203 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 100 > 17.1608 17.3703 24.6297 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 101 ® -0.1402 41.3402 40.7623 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 102 © 0.3783 40.8266 38.4231 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 103 ] 2.2927 16.1930 57.9787 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 104 é 0.5428 29.0196 47.8672 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 105 z 17.1561 26.1668 31.0067 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 106 _ 50.4878 38.7790 7.1049 -Comic_Sans_MS.ttf 32 % 41.4940 48.0815 107 ¥ 4.9011 31.1560 42.8053 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 1 t 7.0090 24.4154 40.9766 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 2 h 0.0507 27.3402 48.0853 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 3 a 16.7706 27.8462 31.0067 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 4 n 15.5688 25.2031 32.0301 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 5 P 2.1268 25.7986 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 6 o 16.8122 28.2098 31.0067 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 7 e 17.0957 29.0196 31.0067 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 8 : 14.3318 6.5913 28.6598 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 9 r 16.5906 22.4322 31.3748 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 10 l 0.1988 5.9315 47.8672 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 11 i 4.7138 5.9315 42.5060 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 12 1 2.3301 17.7944 44.3469 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 13 | -2.7143 5.0619 59.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 14 N 2.3149 40.7623 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 15 f 0.0519 25.3570 50.5822 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 16 g 17.0799 27.1902 46.1801 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 17 d -0.3379 29.0196 47.8672 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 18 W 2.3001 55.7857 46.6937 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 19 s 14.0237 23.9737 33.7172 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 20 c 17.0001 24.4154 31.0067 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 21 u 16.9335 25.6486 31.0067 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 22 3 2.3224 26.8266 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 23 ~ 20.7894 29.5416 13.1304 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 24 # 2.3360 48.2353 45.8884 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 25 O 2.3189 40.8266 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 26 ` -0.2119 12.1668 14.0000 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 27 @ -0.0259 46.9080 50.3381 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 28 F 2.2464 29.7514 46.8399 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 29 S 4.7150 35.2549 43.5416 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 30 p 14.4846 26.0129 48.3770 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 31 “ 1.6205 16.2052 15.1734 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 32 % -0.5992 41.4940 48.0815 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 33 £ 0.1082 40.6123 52.6252 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 34 . 41.5225 7.2587 7.2587 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 35 2 2.2423 26.1844 44.3469 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 36 5 0.8434 29.0970 46.6937 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 37 m 15.7698 41.1864 33.4217 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 38 V 2.3182 33.7172 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 39 6 2.3382 28.4417 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 40 w 16.6230 36.2783 32.1801 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 41 T 3.0726 38.6252 43.4734 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 42 M 2.2754 46.1801 46.6087 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 43 G 2.5169 36.4322 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 44 b 1.5035 29.0196 46.2566 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 45 9 2.0860 30.7150 47.0619 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 46 ; 14.8092 9.4563 37.1646 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 47 D 1.9581 33.9315 46.2566 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 48 L 2.4283 28.2917 45.9489 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 49 y 16.6579 29.5371 46.1801 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 50 ‘ 2.7236 6.2353 15.1734 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 51 \ 3.4568 24.7790 47.3535 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 52 R 1.2545 31.5203 46.6937 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 53 < 14.6949 19.3535 26.8266 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 54 4 2.3014 32.9854 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 55 8 1.5140 29.5371 46.6937 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 56 0 2.3048 32.0982 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 57 A 4.9537 34.7413 42.0000 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 58 E 2.3199 30.3469 46.2566 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 59 B 2.1750 29.1734 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 60 v 16.7804 25.8031 31.3748 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 61 k 1.1837 26.1668 47.8672 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 62 J 2.5312 34.6594 47.5672 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 63 U 2.1699 37.3920 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 64 j 4.9696 19.9315 58.8567 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 65 ( 0.0147 16.9248 59.1522 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 66 7 2.4178 32.5437 45.3741 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 67 § -0.1738 28.0000 47.8672 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 68 $ -2.2854 31.6450 60.2521 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 69 € 1.0107 37.0881 46.6937 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 70 / -0.0472 26.4584 49.4087 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 71 C 2.2506 31.7346 45.3741 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 72 * 1.0548 26.1668 23.2420 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 73 ” 2.1165 16.6424 15.3877 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 74 ? 4.5017 25.8031 44.3469 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 75 { 0.4044 19.9315 59.1522 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 76 } 0.1881 19.9315 59.1522 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 77 , 42.6983 8.6465 14.0000 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 78 I 3.7791 28.3476 43.2416 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 79 ° -1.5052 19.9315 20.0853 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 80 K 2.0604 29.1734 46.8399 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 81 H 2.2552 37.2420 46.6937 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 82 q 15.8984 25.2850 46.8399 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 83 & 2.3205 34.7451 46.9080 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 84 ’ 2.2262 8.4926 15.1734 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 85 [ 2.0961 16.1930 57.9787 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 86 - 28.6550 18.5437 5.0619 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 87 Y 3.3006 34.2353 44.7150 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 88 Q 2.3839 48.2353 56.9591 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 89 " 2.4089 15.4773 18.5437 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 90 ! -0.2019 6.0853 48.5270 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 91 x 15.6776 31.0067 32.0339 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 92 ) 0.0885 16.3469 59.1522 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 93 = 15.3638 22.4322 24.3214 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 94 + 15.3470 24.4154 24.4154 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 95 X 2.1038 38.1116 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 96 » 16.1102 31.0028 25.6531 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 97 ' -0.5569 5.0619 15.1734 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 98 ¢ -2.8284 29.3832 48.2353 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 99 Z 2.1693 37.6056 45.5203 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 100 > 16.7530 17.3703 24.6297 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 101 ® -0.0389 41.3402 40.7623 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 102 © -0.0281 40.8266 38.4231 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 103 ] 2.1026 16.1930 57.9787 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 104 é -0.1001 29.0196 47.8672 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 105 z 16.5329 26.1668 31.0067 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 106 _ 50.1908 38.7790 7.1049 -Comic_Sans_MS.ttf 33 £ 40.6123 52.6252 107 ¥ 5.3005 31.1560 42.8053 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 1 t -34.3185 24.4154 40.9766 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 2 h -41.0989 27.3402 48.0853 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 3 a -24.1810 27.8462 31.0067 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 4 n -25.3341 25.2031 32.0301 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 5 P -38.6737 25.7986 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 6 o -24.1107 28.2098 31.0067 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 7 e -24.3368 29.0196 31.0067 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 8 : -26.4432 6.5913 28.6598 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 9 r -24.6345 22.4322 31.3748 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 10 l -40.9856 5.9315 47.8672 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 11 i -36.7746 5.9315 42.5060 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 12 1 -38.5229 17.7944 44.3469 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 13 | -43.6003 5.0619 59.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 14 N -38.7318 40.7623 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 15 f -41.1084 25.3570 50.5822 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 16 g -23.9767 27.1902 46.1801 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 17 d -41.0227 29.0196 47.8672 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 18 W -38.6044 55.7857 46.6937 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 19 s -27.0553 23.9737 33.7172 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 20 c -24.2864 24.4154 31.0067 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 21 u -24.1787 25.6486 31.0067 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 22 3 -38.7189 26.8266 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 23 ~ -20.5147 29.5416 13.1304 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 24 # -39.1440 48.2353 45.8884 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 25 O -38.4463 40.8266 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 26 ` -40.9461 12.1668 14.0000 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 27 @ -41.0457 46.9080 50.3381 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 28 F -39.0281 29.7514 46.8399 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 29 S -36.4304 35.2549 43.5416 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 30 p -26.2446 26.0129 48.3770 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 31 “ -39.4649 16.2052 15.1734 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 32 % -41.4965 41.4940 48.0815 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 33 £ -41.0398 40.6123 52.6252 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 34 . 0.0022 7.2587 7.2587 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 35 2 -38.5548 26.1844 44.3469 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 36 5 -39.8111 29.0970 46.6937 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 37 m -25.1783 41.1864 33.4217 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 38 V -38.9158 33.7172 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 39 6 -38.6831 28.4417 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 40 w -24.1754 36.2783 32.1801 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 41 T -37.7453 38.6252 43.4734 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 42 M -38.5243 46.1801 46.6087 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 43 G -38.5233 36.4322 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 44 b -39.3469 29.0196 46.2566 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 45 9 -38.7840 30.7150 47.0619 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 46 ; -25.9400 9.4563 37.1646 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 47 D -38.6901 33.9315 46.2566 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 48 L -38.6901 28.2917 45.9489 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 49 y -24.1023 29.5371 46.1801 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 50 ‘ -38.6831 6.2353 15.1734 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 51 \ -37.7250 24.7790 47.3535 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 52 R -39.6217 31.5203 46.6937 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 53 < -26.3607 19.3535 26.8266 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 54 4 -38.9343 32.9854 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 55 8 -39.7001 29.5371 46.6937 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 56 0 -38.6901 32.0982 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 57 A -36.3230 34.7413 42.0000 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 58 E -38.6813 30.3469 46.2566 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 59 B -38.4567 29.1734 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 60 v -24.1765 25.8031 31.3748 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 61 k -39.6992 26.1668 47.8672 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 62 J -38.5673 34.6594 47.5672 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 63 U -39.0052 37.3920 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 64 j -36.1933 19.9315 58.8567 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 65 ( -41.2833 16.9248 59.1522 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 66 7 -38.7123 32.5437 45.3741 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 67 § -40.8698 28.0000 47.8672 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 68 $ -43.5541 31.6450 60.2521 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 69 € -39.8279 37.0881 46.6937 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 70 / -41.3521 26.4584 49.4087 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 71 C -38.4341 31.7346 45.3741 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 72 * -39.8543 26.1668 23.2420 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 73 ” -38.7616 16.6424 15.3877 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 74 ? -36.3561 25.8031 44.3469 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 75 { -40.7956 19.9315 59.1522 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 76 } -41.2144 19.9315 59.1522 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 77 , 1.9772 8.6465 14.0000 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 78 I -37.3727 28.3476 43.2416 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 79 ° -42.2990 19.9315 20.0853 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 80 K -38.7401 29.1734 46.8399 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 81 H -38.8417 37.2420 46.6937 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 82 q -25.2628 25.2850 46.8399 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 83 & -38.6090 34.7451 46.9080 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 84 ’ -38.6100 8.4926 15.1734 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 85 [ -38.7808 16.1930 57.9787 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 86 - -12.1673 18.5437 5.0619 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 87 Y -37.5329 34.2353 44.7150 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 88 Q -39.2327 48.2353 56.9591 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 89 " -38.5901 15.4773 18.5437 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 90 ! -40.9925 6.0853 48.5270 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 91 x -25.2871 31.0067 32.0339 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 92 ) -40.9114 16.3469 59.1522 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 93 = -25.6543 22.4322 24.3214 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 94 + -25.3499 24.4154 24.4154 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 95 X -38.5316 38.1116 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 96 » -25.1394 31.0028 25.6531 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 97 ' -41.7538 5.0619 15.1734 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 98 ¢ -43.8082 29.3832 48.2353 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 99 Z -38.6030 37.6056 45.5203 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 100 > -24.5408 17.3703 24.6297 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 101 ® -40.9499 41.3402 40.7623 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 102 © -41.1241 40.8266 38.4231 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 103 ] -38.6187 16.1930 57.9787 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 104 é -40.9229 29.0196 47.8672 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 105 z -24.3448 26.1668 31.0067 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 106 _ 9.3624 38.7790 7.1049 -Comic_Sans_MS.ttf 34 . 7.2587 7.2587 107 ¥ -36.1422 31.1560 42.8053 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 1 t 4.4098 24.4154 40.9766 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 2 h -2.4297 27.3402 48.0853 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 3 a 14.5136 27.8462 31.0067 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 4 n 13.6171 25.2031 32.0301 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 5 P -0.2840 25.7986 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 6 o 14.4853 28.2098 31.0067 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 7 e 14.2032 29.0196 31.0067 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 8 : 12.1403 6.5913 28.6598 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 9 r 13.8892 22.4322 31.3748 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 10 l -2.7129 5.9315 47.8672 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 11 i 1.7538 5.9315 42.5060 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 12 1 0.1236 17.7944 44.3469 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 13 | -5.0966 5.0619 59.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 14 N 0.1748 40.7623 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 15 f -2.4145 25.3570 50.5822 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 16 g 14.4265 27.1902 46.1801 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 17 d -2.4086 29.0196 47.8672 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 18 W -0.0315 55.7857 46.6937 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 19 s 11.8351 23.9737 33.7172 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 20 c 14.6953 24.4154 31.0067 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 21 u 14.4370 25.6486 31.0067 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 22 3 -0.0462 26.8266 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 23 ~ 18.2500 29.5416 13.1304 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 24 # -0.4004 48.2353 45.8884 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 25 O -0.0430 40.8266 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 26 ` -2.1522 12.1668 14.0000 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 27 @ -2.3393 46.9080 50.3381 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 28 F 0.1158 29.7514 46.8399 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 29 S 2.3972 35.2549 43.5416 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 30 p 12.1859 26.0129 48.3770 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 31 “ -0.7276 16.2052 15.1734 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 32 % -2.3197 41.4940 48.0815 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 33 £ -2.7240 40.6123 52.6252 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 34 . 38.6447 7.2587 7.2587 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 35 2 0.2153 26.1844 44.3469 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 36 5 -1.4181 29.0970 46.6937 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 37 m 13.2987 41.1864 33.4217 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 38 V -0.1871 33.7172 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 39 6 0.0871 28.4417 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 40 w 14.1837 36.2783 32.1801 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 41 T 1.0407 38.6252 43.4734 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 42 M 0.1533 46.1801 46.6087 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 43 G 0.2151 36.4322 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 44 b -0.6991 29.0196 46.2566 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 45 9 -0.1465 30.7150 47.0619 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 46 ; 13.0055 9.4563 37.1646 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 47 D 0.1788 33.9315 46.2566 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 48 L 0.0325 28.2917 45.9489 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 49 y 14.4037 29.5371 46.1801 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 50 ‘ -0.2408 6.2353 15.1734 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 51 \ 0.8377 24.7790 47.3535 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 52 R -1.0006 31.5203 46.6937 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 53 < 12.2463 19.3535 26.8266 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 54 4 -0.0112 32.9854 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 55 8 -0.9709 29.5371 46.6937 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 56 0 -0.0395 32.0982 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 57 A 2.0967 34.7413 42.0000 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 58 E 0.0341 30.3469 46.2566 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 59 B 0.0769 29.1734 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 60 v 14.6291 25.8031 31.3748 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 61 k -0.8726 26.1668 47.8672 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 62 J -0.1029 34.6594 47.5672 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 63 U -0.0763 37.3920 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 64 j 2.4969 19.9315 58.8567 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 65 ( -2.3517 16.9248 59.1522 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 66 7 0.1430 32.5437 45.3741 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 67 § -2.6064 28.0000 47.8672 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 68 $ -4.8224 31.6450 60.2521 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 69 € -1.3455 37.0881 46.6937 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 70 / -2.5735 26.4584 49.4087 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 71 C 0.1850 31.7346 45.3741 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 72 * -1.2930 26.1668 23.2420 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 73 ” 0.2935 16.6424 15.3877 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 74 ? 2.0758 25.8031 44.3469 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 75 { -2.0183 19.9315 59.1522 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 76 } -2.6040 19.9315 59.1522 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 77 , 40.5029 8.6465 14.0000 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 78 I 1.2771 28.3476 43.2416 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 79 ° -3.5231 19.9315 20.0853 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 80 K -0.0710 29.1734 46.8399 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 81 H -0.1595 37.2420 46.6937 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 82 q 13.1149 25.2850 46.8399 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 83 & -0.1392 34.7451 46.9080 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 84 ’ -0.0357 8.4926 15.1734 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 85 [ -0.0290 16.1930 57.9787 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 86 - 26.2809 18.5437 5.0619 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 87 Y 1.3615 34.2353 44.7150 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 88 Q -0.0614 48.2353 56.9591 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 89 " -0.2095 15.4773 18.5437 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 90 ! -2.5452 6.0853 48.5270 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 91 x 13.4923 31.0067 32.0339 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 92 ) -2.3909 16.3469 59.1522 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 93 = 13.3482 22.4322 24.3214 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 94 + 13.4910 24.4154 24.4154 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 95 X -0.0242 38.1116 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 96 » 13.5906 31.0028 25.6531 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 97 ' -3.0330 5.0619 15.1734 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 98 ¢ -5.2466 29.3832 48.2353 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 99 Z 0.5876 37.6056 45.5203 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 100 > 14.1448 17.3703 24.6297 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 101 ® -2.4057 41.3402 40.7623 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 102 © -2.5522 40.8266 38.4231 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 103 ] 0.1089 16.1930 57.9787 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 104 é -2.1393 29.0196 47.8672 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 105 z 14.5537 26.1668 31.0067 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 106 _ 47.9815 38.7790 7.1049 -Comic_Sans_MS.ttf 35 2 26.1844 44.3469 107 ¥ 2.5467 31.1560 42.8053 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 1 t 5.7497 24.4154 40.9766 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 2 h -1.3840 27.3402 48.0853 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 3 a 15.9939 27.8462 31.0067 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 4 n 14.6938 25.2031 32.0301 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 5 P 1.0493 25.7986 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 6 o 15.6591 28.2098 31.0067 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 7 e 15.8449 29.0196 31.0067 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 8 : 13.4185 6.5913 28.6598 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 9 r 15.2892 22.4322 31.3748 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 10 l -1.3571 5.9315 47.8672 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 11 i 2.8646 5.9315 42.5060 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 12 1 0.9627 17.7944 44.3469 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 13 | -3.7199 5.0619 59.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 14 N 1.1699 40.7623 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 15 f -1.0458 25.3570 50.5822 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 16 g 15.6378 27.1902 46.1801 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 17 d -1.0755 29.0196 47.8672 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 18 W 1.1266 55.7857 46.6937 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 19 s 13.0908 23.9737 33.7172 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 20 c 15.5167 24.4154 31.0067 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 21 u 15.8172 25.6486 31.0067 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 22 3 1.0213 26.8266 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 23 ~ 19.5688 29.5416 13.1304 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 24 # 0.4645 48.2353 45.8884 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 25 O 1.1686 40.8266 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 26 ` -1.0925 12.1668 14.0000 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 27 @ -1.0766 46.9080 50.3381 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 28 F 0.9285 29.7514 46.8399 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 29 S 3.7400 35.2549 43.5416 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 30 p 13.3373 26.0129 48.3770 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 31 “ 0.6485 16.2052 15.1734 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 32 % -1.3039 41.4940 48.0815 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 33 £ -1.2286 40.6123 52.6252 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 34 . 39.7227 7.2587 7.2587 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 35 2 1.3133 26.1844 44.3469 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 36 5 0.0704 29.0970 46.6937 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 37 m 14.9180 41.1864 33.4217 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 38 V 1.0184 33.7172 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 39 6 1.1664 28.4417 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 40 w 15.7498 36.2783 32.1801 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 41 T 2.3079 38.6252 43.4734 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 42 M 1.1720 46.1801 46.6087 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 43 G 1.2476 36.4322 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 44 b 0.3659 29.0196 46.2566 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 45 9 1.1840 30.7150 47.0619 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 46 ; 14.0037 9.4563 37.1646 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 47 D 1.0479 33.9315 46.2566 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 48 L 1.0950 28.2917 45.9489 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 49 y 15.6107 29.5371 46.1801 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 50 ‘ 1.0901 6.2353 15.1734 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 51 \ 2.1566 24.7790 47.3535 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 52 R -0.0895 31.5203 46.6937 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 53 < 13.4598 19.3535 26.8266 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 54 4 1.0153 32.9854 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 55 8 0.2068 29.5371 46.6937 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 56 0 1.4911 32.0982 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 57 A 3.5917 34.7413 42.0000 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 58 E 1.2364 30.3469 46.2566 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 59 B 0.7581 29.1734 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 60 v 15.5377 25.8031 31.3748 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 61 k -0.1723 26.1668 47.8672 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 62 J 1.1880 34.6594 47.5672 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 63 U 1.1326 37.3920 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 64 j 3.4743 19.9315 58.8567 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 65 ( -1.2546 16.9248 59.1522 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 66 7 1.3661 32.5437 45.3741 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 67 § -1.1689 28.0000 47.8672 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 68 $ -3.8015 31.6450 60.2521 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 69 € -0.4150 37.0881 46.6937 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 70 / -1.4913 26.4584 49.4087 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 71 C 1.3734 31.7346 45.3741 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 72 * -0.1549 26.1668 23.2420 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 73 ” 1.3910 16.6424 15.3877 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 74 ? 3.4291 25.8031 44.3469 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 75 { -1.2538 19.9315 59.1522 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 76 } -1.0022 19.9315 59.1522 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 77 , 41.8039 8.6465 14.0000 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 78 I 2.5885 28.3476 43.2416 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 79 ° -2.6567 19.9315 20.0853 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 80 K 1.5474 29.1734 46.8399 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 81 H 0.8597 37.2420 46.6937 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 82 q 14.5636 25.2850 46.8399 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 83 & 0.8563 34.7451 46.9080 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 84 ’ 1.0923 8.4926 15.1734 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 85 [ 1.3148 16.1930 57.9787 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 86 - 27.7322 18.5437 5.0619 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 87 Y 2.4943 34.2353 44.7150 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 88 Q 1.0016 48.2353 56.9591 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 89 " 1.1325 15.4773 18.5437 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 90 ! -1.0885 6.0853 48.5270 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 91 x 14.3998 31.0067 32.0339 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 92 ) -1.1164 16.3469 59.1522 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 93 = 14.3790 22.4322 24.3214 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 94 + 14.7828 24.4154 24.4154 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 95 X 1.3452 38.1116 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 96 » 14.6823 31.0028 25.6531 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 97 ' -1.8797 5.0619 15.1734 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 98 ¢ -3.8553 29.3832 48.2353 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 99 Z 1.3347 37.6056 45.5203 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 100 > 15.2395 17.3703 24.6297 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 101 ® -0.9611 41.3402 40.7623 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 102 © -0.9191 40.8266 38.4231 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 103 ] 1.0014 16.1930 57.9787 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 104 é -1.1976 29.0196 47.8672 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 105 z 15.5090 26.1668 31.0067 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 106 _ 49.1495 38.7790 7.1049 -Comic_Sans_MS.ttf 36 5 29.0970 46.6937 107 ¥ 4.0529 31.1560 42.8053 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 1 t -9.0089 24.4154 40.9766 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 2 h -15.8768 27.3402 48.0853 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 3 a 1.3356 27.8462 31.0067 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 4 n 0.1157 25.2031 32.0301 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 5 P -13.4885 25.7986 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 6 o 1.0857 28.2098 31.0067 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 7 e 0.5574 29.0196 31.0067 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 8 : -1.1047 6.5913 28.6598 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 9 r 0.7098 22.4322 31.3748 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 10 l -15.4917 5.9315 47.8672 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 11 i -11.6317 5.9315 42.5060 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 12 1 -13.7260 17.7944 44.3469 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 13 | -18.5831 5.0619 59.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 14 N -13.5687 40.7623 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 15 f -15.9204 25.3570 50.5822 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 16 g 0.7896 27.1902 46.1801 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 17 d -15.3053 29.0196 47.8672 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 18 W -13.5087 55.7857 46.6937 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 19 s -1.6343 23.9737 33.7172 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 20 c 1.2854 24.4154 31.0067 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 21 u 0.7645 25.6486 31.0067 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 22 3 -13.5283 26.8266 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 23 ~ 4.8292 29.5416 13.1304 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 24 # -13.7800 48.2353 45.8884 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 25 O -13.5786 40.8266 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 26 ` -15.2832 12.1668 14.0000 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 27 @ -15.6705 46.9080 50.3381 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 28 F -13.7983 29.7514 46.8399 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 29 S -11.0621 35.2549 43.5416 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 30 p -1.3212 26.0129 48.3770 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 31 “ -14.0894 16.2052 15.1734 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 32 % -15.7932 41.4940 48.0815 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 33 £ -15.8665 40.6123 52.6252 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 34 . 24.9589 7.2587 7.2587 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 35 2 -13.2361 26.1844 44.3469 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 36 5 -14.9911 29.0970 46.6937 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 37 m -0.1742 41.1864 33.4217 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 38 V -13.6060 33.7172 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 39 6 -13.6376 28.4417 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 40 w 0.8632 36.2783 32.1801 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 41 T -13.0394 38.6252 43.4734 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 42 M -13.4601 46.1801 46.6087 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 43 G -13.5286 36.4322 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 44 b -13.9955 29.0196 46.2566 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 45 9 -13.4908 30.7150 47.0619 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 46 ; -0.4690 9.4563 37.1646 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 47 D -13.6448 33.9315 46.2566 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 48 L -13.2691 28.2917 45.9489 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 49 y 0.6515 29.5371 46.1801 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 50 ‘ -13.4654 6.2353 15.1734 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 51 \ -12.6450 24.7790 47.3535 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 52 R -14.6203 31.5203 46.6937 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 53 < 0.6468 17.3703 24.6297 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 54 4 -13.5024 32.9854 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 55 8 -14.7683 29.5371 46.6937 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 56 0 -13.6387 32.0982 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 57 A -10.9575 34.7413 42.0000 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 58 E -13.8149 30.3469 46.2566 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 59 B -13.5957 29.1734 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 60 v 0.9843 25.8031 31.3748 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 61 k -14.4124 26.1668 47.8672 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 62 J -13.5610 34.6594 47.5672 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 63 U -13.3251 37.3920 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 64 j -10.7231 19.9315 58.8567 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 65 ( -15.9396 16.3469 59.1522 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 66 7 -13.2503 32.5437 45.3741 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 67 § -15.6335 28.0000 47.8672 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 68 $ -18.8331 31.6450 60.2521 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 69 € -14.7592 37.0881 46.6937 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 70 / -15.9929 26.4584 49.4087 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 71 C -13.5502 31.7346 45.3741 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 72 * -14.8251 26.1668 23.2420 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 73 ” -13.9683 16.6424 15.3877 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 74 ? -11.4893 25.8031 44.3469 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 75 { -15.7864 19.9315 59.1522 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 76 } -15.8733 19.9315 59.1522 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 77 , 26.6504 8.6465 14.0000 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 78 I -11.9499 28.3476 43.2416 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 79 ° -17.3605 19.9315 20.0853 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 80 K -13.6904 29.1734 46.8399 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 81 H -13.4604 37.2420 46.6937 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 82 q 0.0454 25.2850 46.8399 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 83 & -13.4952 34.7451 46.9080 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 84 ’ -13.4913 8.4926 15.1734 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 85 [ -13.3009 16.1930 57.9787 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 86 - 12.7542 18.5437 5.0619 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 87 Y -12.6814 34.2353 44.7150 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 88 Q -13.7848 48.2353 56.9591 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 89 " -13.8636 15.4773 18.5437 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 90 ! -15.5267 6.0853 48.5270 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 91 x -0.1006 31.0067 32.0339 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 92 ) -16.0138 16.9248 59.1522 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 93 = -0.2994 22.4322 24.3214 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 94 + -0.2083 24.4154 24.4154 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 95 X -13.5195 38.1116 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 96 » 0.2952 31.0028 25.6531 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 97 ' -16.7534 5.0619 15.1734 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 98 ¢ -18.4703 29.3832 48.2353 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 99 Z -13.4333 37.6056 45.5203 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 100 > -1.3471 19.3535 26.8266 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 101 ® -15.8550 41.3402 40.7623 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 102 © -16.1368 40.8266 38.4231 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 103 ] -13.4696 16.1930 57.9787 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 104 é -15.7420 29.0196 47.8672 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 105 z 1.0143 26.1668 31.0067 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 106 _ 34.3956 38.7790 7.1049 -Comic_Sans_MS.ttf 37 m 41.1864 33.4217 107 ¥ -10.6160 31.1560 42.8053 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 1 t 4.2973 24.4154 40.9766 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 2 h -2.3804 27.3402 48.0853 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 3 a 14.4779 27.8462 31.0067 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 4 n 13.3789 25.2031 32.0301 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 5 P -0.0388 25.7986 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 6 o 14.2558 28.2098 31.0067 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 7 e 14.5956 29.0196 31.0067 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 8 : 12.3452 6.5913 28.6598 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 9 r 14.0361 22.4322 31.3748 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 10 l -2.4375 5.9315 47.8672 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 11 i 1.5935 5.9315 42.5060 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 12 1 0.0115 17.7944 44.3469 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 13 | -4.6231 5.0619 59.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 14 N -0.0222 40.7623 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 15 f -2.3570 25.3570 50.5822 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 16 g 14.6099 27.1902 46.1801 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 17 d -2.4623 29.0196 47.8672 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 18 W -0.0482 55.7857 46.6937 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 19 s 11.7847 23.9737 33.7172 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 20 c 14.6892 24.4154 31.0067 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 21 u 14.3526 25.6486 31.0067 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 22 3 0.0368 26.8266 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 23 ~ 18.2426 29.5416 13.1304 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 24 # -0.2184 48.2353 45.8884 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 25 O 0.0115 40.8266 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 26 ` -2.2670 12.1668 14.0000 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 27 @ -2.3020 46.9080 50.3381 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 28 F 0.1344 29.7514 46.8399 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 29 S 2.0703 35.2549 43.5416 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 30 p 12.3352 26.0129 48.3770 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 31 “ -0.7303 16.2052 15.1734 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 32 % -2.3837 41.4940 48.0815 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 33 £ -2.4086 40.6123 52.6252 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 34 . 38.5878 7.2587 7.2587 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 35 2 0.3036 26.1844 44.3469 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 36 5 -1.1173 29.0970 46.6937 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 37 m 13.6606 41.1864 33.4217 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 38 V -0.0070 33.7172 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 39 6 0.1752 28.4417 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 40 w 14.6074 36.2783 32.1801 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 41 T 0.6884 38.6252 43.4734 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 42 M 0.1974 46.1801 46.6087 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 43 G -0.0658 36.4322 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 44 b -0.8714 29.0196 46.2566 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 45 9 0.1364 30.7150 47.0619 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 46 ; 12.6672 9.4563 37.1646 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 47 D -0.0274 33.9315 46.2566 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 48 L 0.2053 28.2917 45.9489 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 49 y 14.3268 29.5371 46.1801 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 50 ‘ -0.0454 6.2353 15.1734 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 51 \ 1.0590 24.7790 47.3535 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 52 R -1.3350 31.5203 46.6937 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 53 < 14.1921 17.3703 24.6297 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 54 4 -0.1416 32.9854 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 55 8 -1.1266 29.5371 46.6937 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 56 0 -0.0804 32.0982 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 57 A 2.4080 34.7413 42.0000 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 58 E 0.0509 30.3469 46.2566 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 59 B 0.0055 29.1734 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 60 v 14.1521 25.8031 31.3748 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 61 k -1.2400 26.1668 47.8672 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 62 J 0.1603 34.6594 47.5672 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 63 U -0.1511 37.3920 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 64 j 2.2100 19.9315 58.8567 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 65 ( -2.4308 16.3469 59.1522 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 66 7 0.1007 32.5437 45.3741 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 67 § -2.5512 28.0000 47.8672 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 68 $ -4.9133 31.6450 60.2521 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 69 € -1.0336 37.0881 46.6937 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 70 / -2.6650 26.4584 49.4087 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 71 C 0.3389 31.7346 45.3741 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 72 * -1.4168 26.1668 23.2420 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 73 ” -0.2942 16.6424 15.3877 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 74 ? 2.6541 25.8031 44.3469 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 75 { -2.4580 19.9315 59.1522 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 76 } -2.1748 19.9315 59.1522 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 77 , 40.5418 8.6465 14.0000 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 78 I 1.2894 28.3476 43.2416 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 79 ° -3.7255 19.9315 20.0853 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 80 K 0.0060 29.1734 46.8399 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 81 H -0.1705 37.2420 46.6937 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 82 q 13.1034 25.2850 46.8399 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 83 & 0.0906 34.7451 46.9080 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 84 ’ 0.0722 8.4926 15.1734 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 85 [ 0.0377 16.1930 57.9787 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 86 - 26.5387 18.5437 5.0619 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 87 Y 1.2476 34.2353 44.7150 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 88 Q 0.1575 48.2353 56.9591 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 89 " -0.5423 15.4773 18.5437 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 90 ! -2.5571 6.0853 48.5270 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 91 x 13.4999 31.0067 32.0339 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 92 ) -2.3522 16.9248 59.1522 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 93 = 13.1430 22.4322 24.3214 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 94 + 13.1799 24.4154 24.4154 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 95 X 0.0742 38.1116 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 96 » 13.7130 31.0028 25.6531 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 97 ' -3.1369 5.0619 15.1734 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 98 ¢ -5.3214 29.3832 48.2353 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 99 Z 0.0408 37.6056 45.5203 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 100 > 12.0205 19.3535 26.8266 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 101 ® -2.3793 41.3402 40.7623 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 102 © -2.3909 40.8266 38.4231 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 103 ] 0.0315 16.1930 57.9787 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 104 é -2.5171 29.0196 47.8672 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 105 z 14.3394 26.1668 31.0067 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 106 _ 47.9268 38.7790 7.1049 -Comic_Sans_MS.ttf 38 V 33.7172 45.5203 107 ¥ 2.7832 31.1560 42.8053 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 1 t 4.7160 24.4154 40.9766 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 2 h -2.4218 27.3402 48.0853 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 3 a 14.5386 27.8462 31.0067 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 4 n 13.6516 25.2031 32.0301 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 5 P 0.0871 25.7986 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 6 o 14.2743 28.2098 31.0067 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 7 e 14.5526 29.0196 31.0067 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 8 : 12.1235 6.5913 28.6598 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 9 r 14.1802 22.4322 31.3748 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 10 l -1.9528 5.9315 47.8672 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 11 i 1.8178 5.9315 42.5060 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 12 1 -0.1529 17.7944 44.3469 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 13 | -4.5845 5.0619 59.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 14 N -0.3647 40.7623 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 15 f -2.4780 25.3570 50.5822 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 16 g 14.5228 27.1902 46.1801 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 17 d -2.3597 29.0196 47.8672 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 18 W -0.0766 55.7857 46.6937 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 19 s 11.8658 23.9737 33.7172 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 20 c 14.6854 24.4154 31.0067 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 21 u 14.3570 25.6486 31.0067 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 22 3 0.0839 26.8266 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 23 ~ 18.2764 29.5416 13.1304 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 24 # -0.2780 48.2353 45.8884 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 25 O -0.0552 40.8266 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 26 ` -2.1688 12.1668 14.0000 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 27 @ -2.5397 46.9080 50.3381 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 28 F -0.2359 29.7514 46.8399 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 29 S 2.3554 35.2549 43.5416 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 30 p 12.2895 26.0129 48.3770 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 31 “ -0.9932 16.2052 15.1734 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 32 % -2.7131 41.4940 48.0815 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 33 £ -2.0127 40.6123 52.6252 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 34 . 38.6054 7.2587 7.2587 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 35 2 0.1371 26.1844 44.3469 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 36 5 -1.1958 29.0970 46.6937 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 37 m 13.3478 41.1864 33.4217 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 38 V -0.2476 33.7172 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 39 6 -0.1292 28.4417 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 40 w 14.2501 36.2783 32.1801 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 41 T 0.9931 38.6252 43.4734 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 42 M -0.0839 46.1801 46.6087 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 43 G -0.0527 36.4322 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 44 b -0.3352 29.0196 46.2566 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 45 9 0.3852 30.7150 47.0619 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 46 ; 12.7758 9.4563 37.1646 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 47 D -0.1176 33.9315 46.2566 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 48 L 0.1182 28.2917 45.9489 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 49 y 14.4721 29.5371 46.1801 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 50 ‘ -0.1046 6.2353 15.1734 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 51 \ 0.8038 24.7790 47.3535 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 52 R -1.1405 31.5203 46.6937 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 53 < 12.0894 19.3535 26.8266 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 54 4 0.2914 32.9854 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 55 8 -0.9627 29.5371 46.6937 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 56 0 -0.0518 32.0982 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 57 A 2.1713 34.7413 42.0000 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 58 E -0.1116 30.3469 46.2566 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 59 B 0.2502 29.1734 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 60 v 14.6346 25.8031 31.3748 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 61 k -1.0083 26.1668 47.8672 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 62 J 0.1014 34.6594 47.5672 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 63 U -0.1938 37.3920 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 64 j 2.6533 19.9315 58.8567 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 65 ( -2.4635 16.9248 59.1522 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 66 7 0.3537 32.5437 45.3741 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 67 § -2.0452 28.0000 47.8672 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 68 $ -5.0366 31.6450 60.2521 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 69 € -1.5215 37.0881 46.6937 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 70 / -2.5007 26.4584 49.4087 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 71 C 0.0545 31.7346 45.3741 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 72 * -1.4070 26.1668 23.2420 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 73 ” 0.4009 16.6424 15.3877 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 74 ? 2.1531 25.8031 44.3469 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 75 { -2.4872 19.9315 59.1522 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 76 } -2.3964 19.9315 59.1522 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 77 , 40.4070 8.6465 14.0000 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 78 I 1.2056 28.3476 43.2416 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 79 ° -3.6810 19.9315 20.0853 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 80 K -0.0455 29.1734 46.8399 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 81 H -0.2414 37.2420 46.6937 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 82 q 13.1509 25.2850 46.8399 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 83 & 0.0844 34.7451 46.9080 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 84 ’ 0.0214 8.4926 15.1734 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 85 [ 0.1728 16.1930 57.9787 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 86 - 26.4189 18.5437 5.0619 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 87 Y 1.3461 34.2353 44.7150 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 88 Q -0.0245 48.2353 56.9591 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 89 " -0.0707 15.4773 18.5437 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 90 ! -2.3574 6.0853 48.5270 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 91 x 13.9132 31.0067 32.0339 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 92 ) -2.5771 16.3469 59.1522 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 93 = 13.3357 22.4322 24.3214 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 94 + 13.4982 24.4154 24.4154 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 95 X -0.0046 38.1116 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 96 » 13.7968 31.0028 25.6531 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 97 ' -2.6795 5.0619 15.1734 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 98 ¢ -5.1430 29.3832 48.2353 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 99 Z 0.2595 37.6056 45.5203 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 100 > 14.5275 17.3703 24.6297 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 101 ® -2.6778 41.3402 40.7623 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 102 © -2.4141 40.8266 38.4231 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 103 ] -0.2177 16.1930 57.9787 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 104 é -2.4136 29.0196 47.8672 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 105 z 14.4394 26.1668 31.0067 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 106 _ 47.9224 38.7790 7.1049 -Comic_Sans_MS.ttf 39 6 28.4417 45.5203 107 ¥ 2.8576 31.1560 42.8053 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 1 t -10.0316 24.4154 40.9766 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 2 h -16.5310 27.3402 48.0853 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 3 a 0.0784 27.8462 31.0067 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 4 n -0.7954 25.2031 32.0301 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 5 P -14.5959 25.7986 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 6 o -0.0245 28.2098 31.0067 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 7 e 0.0927 29.0196 31.0067 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 8 : -2.1856 6.5913 28.6598 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 9 r -0.3004 22.4322 31.3748 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 10 l -16.4878 5.9315 47.8672 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 11 i -12.5880 5.9315 42.5060 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 12 1 -14.4860 17.7944 44.3469 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 13 | -19.2079 5.0619 59.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 14 N -14.4122 40.7623 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 15 f -17.0103 25.3570 50.5822 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 16 g 0.1563 27.1902 46.1801 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 17 d -16.5081 29.0196 47.8672 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 18 W -14.3583 55.7857 46.6937 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 19 s -2.6240 23.9737 33.7172 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 20 c 0.3908 24.4154 31.0067 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 21 u -0.1816 25.6486 31.0067 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 22 3 -14.8855 26.8266 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 23 ~ 3.9445 29.5416 13.1304 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 24 # -14.8393 48.2353 45.8884 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 25 O -14.4737 40.8266 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 26 ` -16.7795 12.1668 14.0000 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 27 @ -16.6080 46.9080 50.3381 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 28 F -14.6316 29.7514 46.8399 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 29 S -12.4816 35.2549 43.5416 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 30 p -2.4897 26.0129 48.3770 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 31 “ -15.4956 16.2052 15.1734 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 32 % -16.9407 41.4940 48.0815 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 33 £ -16.7349 40.6123 52.6252 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 34 . 24.2619 7.2587 7.2587 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 35 2 -14.3439 26.1844 44.3469 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 36 5 -15.5994 29.0970 46.6937 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 37 m -1.2353 41.1864 33.4217 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 38 V -14.6103 33.7172 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 39 6 -14.5688 28.4417 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 40 w 0.0060 36.2783 32.1801 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 41 T -13.7139 38.6252 43.4734 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 42 M -14.3857 46.1801 46.6087 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 43 G -14.5881 36.4322 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 44 b -15.1660 29.0196 46.2566 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 45 9 -14.3509 30.7150 47.0619 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 46 ; -1.8433 9.4563 37.1646 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 47 D -14.5401 33.9315 46.2566 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 48 L -14.4265 28.2917 45.9489 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 49 y -0.1966 29.5371 46.1801 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 50 ‘ -14.3250 6.2353 15.1734 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 51 \ -13.6203 24.7790 47.3535 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 52 R -15.5078 31.5203 46.6937 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 53 < -0.3551 17.3703 24.6297 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 54 4 -14.5403 32.9854 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 55 8 -15.3047 29.5371 46.6937 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 56 0 -14.7029 32.0982 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 57 A -12.4092 34.7413 42.0000 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 58 E -14.5110 30.3469 46.2566 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 59 B -14.3862 29.1734 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 60 v -0.1970 25.8031 31.3748 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 61 k -15.6325 26.1668 47.8672 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 62 J -14.2435 34.6594 47.5672 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 63 U -14.8900 37.3920 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 64 j -11.9092 19.9315 58.8567 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 65 ( -16.7365 16.3469 59.1522 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 66 7 -14.4141 32.5437 45.3741 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 67 § -17.1050 28.0000 47.8672 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 68 $ -19.3157 31.6450 60.2521 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 69 € -15.5982 37.0881 46.6937 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 70 / -17.2575 26.4584 49.4087 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 71 C -14.5794 31.7346 45.3741 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 72 * -15.9992 26.1668 23.2420 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 73 ” -14.2837 16.6424 15.3877 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 74 ? -12.2555 25.8031 44.3469 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 75 { -16.7752 19.9315 59.1522 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 76 } -16.7584 19.9315 59.1522 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 77 , 26.4389 8.6465 14.0000 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 78 I -13.1986 28.3476 43.2416 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 79 ° -17.9666 19.9315 20.0853 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 80 K -14.5563 29.1734 46.8399 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 81 H -14.3128 37.2420 46.6937 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 82 q -1.0433 25.2850 46.8399 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 83 & -14.7109 34.7451 46.9080 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 84 ’ -14.4749 8.4926 15.1734 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 85 [ -14.4247 16.1930 57.9787 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 86 - 12.2085 18.5437 5.0619 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 87 Y -13.1968 34.2353 44.7150 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 88 Q -14.3450 48.2353 56.9591 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 89 " -14.3258 15.4773 18.5437 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 90 ! -16.9938 6.0853 48.5270 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 91 x -1.3386 31.0067 32.0339 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 92 ) -17.0008 16.9248 59.1522 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 93 = -1.5583 22.4322 24.3214 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 94 + -1.3043 24.4154 24.4154 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 95 X -14.6647 38.1116 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 96 » -0.6782 31.0028 25.6531 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 97 ' -17.4805 5.0619 15.1734 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 98 ¢ -19.5411 29.3832 48.2353 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 99 Z -14.6903 37.6056 45.5203 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 100 > -2.0477 19.3535 26.8266 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 101 ® -17.0008 41.3402 40.7623 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 102 © -16.7006 40.8266 38.4231 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 103 ] -14.7449 16.1930 57.9787 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 104 é -16.8140 29.0196 47.8672 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 105 z -0.1047 26.1668 31.0067 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 106 _ 33.5694 38.7790 7.1049 -Comic_Sans_MS.ttf 40 w 36.2783 32.1801 107 ¥ -11.8339 31.1560 42.8053 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 1 t 3.8529 24.4154 40.9766 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 2 h -3.1944 27.3402 48.0853 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 3 a 13.6002 27.8462 31.0067 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 4 n 12.8229 25.2031 32.0301 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 5 P -0.8682 25.7986 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 6 o 13.6370 28.2098 31.0067 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 7 e 13.7840 29.0196 31.0067 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 8 : 11.2625 6.5913 28.6598 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 9 r 13.3621 22.4322 31.3748 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 10 l -3.1716 5.9315 47.8672 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 11 i 1.2965 5.9315 42.5060 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 12 1 -0.6778 17.7944 44.3469 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 13 | -5.5740 5.0619 59.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 14 N -1.1814 40.7623 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 15 f -3.3297 25.3570 50.5822 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 16 g 13.6090 27.1902 46.1801 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 17 d -3.2977 29.0196 47.8672 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 18 W -0.8899 55.7857 46.6937 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 19 s 10.8374 23.9737 33.7172 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 20 c 13.6676 24.4154 31.0067 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 21 u 13.6797 25.6486 31.0067 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 22 3 -0.6915 26.8266 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 23 ~ 17.4014 29.5416 13.1304 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 24 # -1.3440 48.2353 45.8884 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 25 O -0.8052 40.8266 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 26 ` -3.2469 12.1668 14.0000 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 27 @ -3.4431 46.9080 50.3381 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 28 F -0.5053 29.7514 46.8399 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 29 S 1.6939 35.2549 43.5416 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 30 p 11.2750 26.0129 48.3770 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 31 “ -1.6177 16.2052 15.1734 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 32 % -3.3545 41.4940 48.0815 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 33 £ -3.0604 40.6123 52.6252 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 34 . 37.7282 7.2587 7.2587 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 35 2 -1.0390 26.1844 44.3469 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 36 5 -2.2735 29.0970 46.6937 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 37 m 12.6885 41.1864 33.4217 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 38 V -0.7360 33.7172 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 39 6 -0.6673 28.4417 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 40 w 13.6290 36.2783 32.1801 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 41 T -0.0828 38.6252 43.4734 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 42 M -0.7988 46.1801 46.6087 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 43 G -0.9405 36.4322 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 44 b -1.5401 29.0196 46.2566 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 45 9 -0.6285 30.7150 47.0619 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 46 ; 11.7877 9.4563 37.1646 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 47 D -1.1089 33.9315 46.2566 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 48 L -0.7359 28.2917 45.9489 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 49 y 13.5920 29.5371 46.1801 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 50 ‘ -1.0074 6.2353 15.1734 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 51 \ -0.2363 24.7790 47.3535 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 52 R -1.9188 31.5203 46.6937 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 53 < 13.0094 17.3703 24.6297 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 54 4 -0.7873 32.9854 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 55 8 -1.9366 29.5371 46.6937 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 56 0 -0.9032 32.0982 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 57 A 1.3094 34.7413 42.0000 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 58 E -0.8535 30.3469 46.2566 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 59 B -0.7888 29.1734 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 60 v 13.8908 25.8031 31.3748 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 61 k -2.0580 26.1668 47.8672 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 62 J -1.0222 34.6594 47.5672 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 63 U -0.7051 37.3920 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 64 j 1.5731 19.9315 58.8567 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 65 ( -3.2799 16.3469 59.1522 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 66 7 -0.5757 32.5437 45.3741 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 67 § -3.3802 28.0000 47.8672 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 68 $ -5.9267 31.6450 60.2521 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 69 € -2.1286 37.0881 46.6937 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 70 / -2.9823 26.4584 49.4087 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 71 C -1.2356 31.7346 45.3741 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 72 * -2.4351 26.1668 23.2420 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 73 ” -0.8272 16.6424 15.3877 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 74 ? 1.5439 25.8031 44.3469 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 75 { -3.0615 19.9315 59.1522 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 76 } -3.1833 19.9315 59.1522 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 77 , 39.2675 8.6465 14.0000 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 78 I 0.4053 28.3476 43.2416 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 79 ° -4.3597 19.9315 20.0853 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 80 K -0.7551 29.1734 46.8399 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 81 H -0.8734 37.2420 46.6937 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 82 q 12.6596 25.2850 46.8399 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 83 & -0.9013 34.7451 46.9080 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 84 ’ -1.0022 8.4926 15.1734 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 85 [ -1.0792 16.1930 57.9787 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 86 - 25.6729 18.5437 5.0619 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 87 Y 0.1915 34.2353 44.7150 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 88 Q -0.7972 48.2353 56.9591 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 89 " -0.8766 15.4773 18.5437 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 90 ! -3.2577 6.0853 48.5270 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 91 x 12.6402 31.0067 32.0339 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 92 ) -3.3320 16.9248 59.1522 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 93 = 12.6694 22.4322 24.3214 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 94 + 12.5496 24.4154 24.4154 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 95 X -1.0642 38.1116 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 96 » 13.1223 31.0028 25.6531 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 97 ' -4.1653 5.0619 15.1734 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 98 ¢ -5.8097 29.3832 48.2353 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 99 Z -1.1186 37.6056 45.5203 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 100 > 11.2108 19.3535 26.8266 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 101 ® -3.3858 41.3402 40.7623 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 102 © -3.4386 40.8266 38.4231 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 103 ] -0.9306 16.1930 57.9787 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 104 é -3.1025 29.0196 47.8672 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 105 z 13.3358 26.1668 31.0067 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 106 _ 47.0021 38.7790 7.1049 -Comic_Sans_MS.ttf 41 T 38.6252 43.4734 107 ¥ 1.9731 31.1560 42.8053 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 1 t 4.7085 24.4154 40.9766 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 2 h -2.2286 27.3402 48.0853 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 3 a 15.0340 27.8462 31.0067 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 4 n 13.7502 25.2031 32.0301 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 5 P -0.2276 25.7986 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 6 o 13.9835 28.2098 31.0067 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 7 e 14.3689 29.0196 31.0067 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 8 : 12.0992 6.5913 28.6598 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 9 r 14.1096 22.4322 31.3748 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 10 l -2.4467 5.9315 47.8672 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 11 i 2.1092 5.9315 42.5060 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 12 1 -0.0368 17.7944 44.3469 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 13 | -5.2399 5.0619 59.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 14 N -0.0117 40.7623 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 15 f -2.3441 25.3570 50.5822 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 16 g 14.6388 27.1902 46.1801 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 17 d -2.1156 29.0196 47.8672 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 18 W -0.1791 55.7857 46.6937 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 19 s 11.9673 23.9737 33.7172 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 20 c 14.5370 24.4154 31.0067 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 21 u 14.7729 25.6486 31.0067 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 22 3 -0.4930 26.8266 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 23 ~ 18.1581 29.5416 13.1304 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 24 # -0.7239 48.2353 45.8884 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 25 O 0.0501 40.8266 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 26 ` -2.2328 12.1668 14.0000 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 27 @ -2.5579 46.9080 50.3381 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 28 F -0.0118 29.7514 46.8399 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 29 S 2.2079 35.2549 43.5416 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 30 p 12.3872 26.0129 48.3770 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 31 “ -0.8824 16.2052 15.1734 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 32 % -2.4754 41.4940 48.0815 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 33 £ -2.6212 40.6123 52.6252 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 34 . 38.7906 7.2587 7.2587 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 35 2 0.1283 26.1844 44.3469 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 36 5 -1.2837 29.0970 46.6937 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 37 m 13.4140 41.1864 33.4217 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 38 V 0.0227 33.7172 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 39 6 0.2838 28.4417 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 40 w 14.5258 36.2783 32.1801 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 41 T 0.8356 38.6252 43.4734 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 42 M 0.1966 46.1801 46.6087 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 43 G 0.0498 36.4322 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 44 b -0.5425 29.0196 46.2566 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 45 9 0.0374 30.7150 47.0619 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 46 ; 12.9148 9.4563 37.1646 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 47 D -0.1718 33.9315 46.2566 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 48 L 0.5580 28.2917 45.9489 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 49 y 14.4017 29.5371 46.1801 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 50 ‘ 0.3257 6.2353 15.1734 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 51 \ 0.4892 24.7790 47.3535 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 52 R -1.0346 31.5203 46.6937 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 53 < 14.3029 17.3703 24.6297 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 54 4 0.0152 32.9854 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 55 8 -1.1692 29.5371 46.6937 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 56 0 -0.0580 32.0982 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 57 A 2.3226 34.7413 42.0000 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 58 E 0.1663 30.3469 46.2566 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 59 B 0.4793 29.1734 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 60 v 14.4929 25.8031 31.3748 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 61 k -1.0266 26.1668 47.8672 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 62 J 0.1568 34.6594 47.5672 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 63 U 0.1742 37.3920 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 64 j 2.2064 19.9315 58.8567 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 65 ( -1.9469 16.3469 59.1522 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 66 7 0.1601 32.5437 45.3741 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 67 § -2.1267 28.0000 47.8672 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 68 $ -4.9857 31.6450 60.2521 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 69 € -1.3871 37.0881 46.6937 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 70 / -2.3524 26.4584 49.4087 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 71 C 0.2231 31.7346 45.3741 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 72 * -1.4212 26.1668 23.2420 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 73 ” 0.3134 16.6424 15.3877 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 74 ? 2.2334 25.8031 44.3469 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 75 { -2.1453 19.9315 59.1522 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 76 } -2.2398 19.9315 59.1522 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 77 , 40.6506 8.6465 14.0000 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 78 I 1.1500 28.3476 43.2416 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 79 ° -3.7964 19.9315 20.0853 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 80 K 0.0479 29.1734 46.8399 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 81 H -0.2015 37.2420 46.6937 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 82 q 13.4893 25.2850 46.8399 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 83 & -0.0167 34.7451 46.9080 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 84 ’ 0.1224 8.4926 15.1734 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 85 [ -0.0131 16.1930 57.9787 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 86 - 26.5498 18.5437 5.0619 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 87 Y 1.1279 34.2353 44.7150 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 88 Q -0.0815 48.2353 56.9591 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 89 " -0.1388 15.4773 18.5437 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 90 ! -2.4623 6.0853 48.5270 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 91 x 13.1876 31.0067 32.0339 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 92 ) -2.2533 16.9248 59.1522 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 93 = 13.4383 22.4322 24.3214 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 94 + 13.4297 24.4154 24.4154 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 95 X 0.0843 38.1116 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 96 » 13.7295 31.0028 25.6531 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 97 ' -2.9516 5.0619 15.1734 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 98 ¢ -5.4408 29.3832 48.2353 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 99 Z 0.0152 37.6056 45.5203 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 100 > 12.0125 19.3535 26.8266 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 101 ® -2.4684 41.3402 40.7623 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 102 © -2.3155 40.8266 38.4231 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 103 ] 0.0283 16.1930 57.9787 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 104 é -2.4320 29.0196 47.8672 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 105 z 14.5161 26.1668 31.0067 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 106 _ 48.2414 38.7790 7.1049 -Comic_Sans_MS.ttf 42 M 46.1801 46.6087 107 ¥ 2.8549 31.1560 42.8053 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 1 t 4.7201 24.4154 40.9766 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 2 h -2.4155 27.3402 48.0853 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 3 a 14.5973 27.8462 31.0067 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 4 n 13.2223 25.2031 32.0301 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 5 P -0.1911 25.7986 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 6 o 14.5155 28.2098 31.0067 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 7 e 14.5811 29.0196 31.0067 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 8 : 12.1517 6.5913 28.6598 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 9 r 13.8044 22.4322 31.3748 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 10 l -2.6649 5.9315 47.8672 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 11 i 1.8181 5.9315 42.5060 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 12 1 0.0847 17.7944 44.3469 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 13 | -5.1718 5.0619 59.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 14 N -0.0749 40.7623 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 15 f -2.0925 25.3570 50.5822 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 16 g 14.7134 27.1902 46.1801 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 17 d -2.4224 29.0196 47.8672 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 18 W -0.1683 55.7857 46.6937 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 19 s 12.1120 23.9737 33.7172 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 20 c 14.3794 24.4154 31.0067 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 21 u 14.5252 25.6486 31.0067 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 22 3 -0.3341 26.8266 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 23 ~ 18.1671 29.5416 13.1304 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 24 # -0.2036 48.2353 45.8884 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 25 O 0.0580 40.8266 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 26 ` -2.2054 12.1668 14.0000 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 27 @ -2.0933 46.9080 50.3381 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 28 F 0.0868 29.7514 46.8399 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 29 S 2.1764 35.2549 43.5416 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 30 p 12.2547 26.0129 48.3770 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 31 “ -0.7650 16.2052 15.1734 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 32 % -2.9482 41.4940 48.0815 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 33 £ -2.4275 40.6123 52.6252 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 34 . 38.5103 7.2587 7.2587 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 35 2 0.0522 26.1844 44.3469 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 36 5 -1.3820 29.0970 46.6937 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 37 m 13.3223 41.1864 33.4217 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 38 V 0.1405 33.7172 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 39 6 0.0801 28.4417 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 40 w 14.2337 36.2783 32.1801 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 41 T 0.8987 38.6252 43.4734 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 42 M 0.3244 46.1801 46.6087 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 43 G -0.0277 36.4322 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 44 b -0.6425 29.0196 46.2566 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 45 9 -0.1283 30.7150 47.0619 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 46 ; 12.8316 9.4563 37.1646 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 47 D -0.1321 33.9315 46.2566 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 48 L 0.1567 28.2917 45.9489 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 49 y 14.8075 29.5371 46.1801 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 50 ‘ -0.0623 6.2353 15.1734 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 51 \ 0.9545 24.7790 47.3535 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 52 R -1.3463 31.5203 46.6937 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 53 < 14.1494 17.3703 24.6297 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 54 4 -0.0704 32.9854 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 55 8 -1.4928 29.5371 46.6937 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 56 0 -0.1231 32.0982 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 57 A 2.2514 34.7413 42.0000 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 58 E -0.0395 30.3469 46.2566 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 59 B 0.1494 29.1734 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 60 v 14.7069 25.8031 31.3748 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 61 k -1.1751 26.1668 47.8672 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 62 J 0.1101 34.6594 47.5672 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 63 U -0.0486 37.3920 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 64 j 2.6526 19.9315 58.8567 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 65 ( -2.3345 16.3469 59.1522 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 66 7 0.1993 32.5437 45.3741 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 67 § -2.5544 28.0000 47.8672 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 68 $ -4.6607 31.6450 60.2521 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 69 € -1.5558 37.0881 46.6937 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 70 / -2.5679 26.4584 49.4087 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 71 C 0.0556 31.7346 45.3741 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 72 * -1.1146 26.1668 23.2420 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 73 ” -0.1295 16.6424 15.3877 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 74 ? 2.0261 25.8031 44.3469 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 75 { -2.2127 19.9315 59.1522 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 76 } -2.3186 19.9315 59.1522 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 77 , 40.6316 8.6465 14.0000 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 78 I 1.2677 28.3476 43.2416 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 79 ° -3.5251 19.9315 20.0853 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 80 K -0.0803 29.1734 46.8399 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 81 H 0.4494 37.2420 46.6937 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 82 q 13.7336 25.2850 46.8399 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 83 & -0.0937 34.7451 46.9080 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 84 ’ 0.0847 8.4926 15.1734 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 85 [ -0.1526 16.1930 57.9787 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 86 - 26.5543 18.5437 5.0619 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 87 Y 1.1377 34.2353 44.7150 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 88 Q 0.1343 48.2353 56.9591 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 89 " 0.1739 15.4773 18.5437 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 90 ! -2.5782 6.0853 48.5270 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 91 x 13.2719 31.0067 32.0339 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 92 ) -2.5189 16.9248 59.1522 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 93 = 13.5961 22.4322 24.3214 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 94 + 13.5886 24.4154 24.4154 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 95 X -0.2404 38.1116 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 96 » 13.4048 31.0028 25.6531 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 97 ' -2.9240 5.0619 15.1734 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 98 ¢ -5.1528 29.3832 48.2353 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 99 Z -0.1669 37.6056 45.5203 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 100 > 12.2042 19.3535 26.8266 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 101 ® -2.4507 41.3402 40.7623 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 102 © -2.2996 40.8266 38.4231 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 103 ] -0.1193 16.1930 57.9787 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 104 é -2.2292 29.0196 47.8672 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 105 z 14.7708 26.1668 31.0067 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 106 _ 47.9748 38.7790 7.1049 -Comic_Sans_MS.ttf 43 G 36.4322 45.5203 107 ¥ 2.8037 31.1560 42.8053 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 1 t 5.1950 24.4154 40.9766 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 2 h -1.5735 27.3402 48.0853 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 3 a 15.2189 27.8462 31.0067 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 4 n 14.4007 25.2031 32.0301 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 5 P 0.6491 25.7986 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 6 o 15.1634 28.2098 31.0067 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 7 e 15.3023 29.0196 31.0067 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 8 : 13.1116 6.5913 28.6598 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 9 r 15.2044 22.4322 31.3748 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 10 l -1.7264 5.9315 47.8672 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 11 i 2.6226 5.9315 42.5060 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 12 1 0.8636 17.7944 44.3469 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 13 | -4.2456 5.0619 59.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 14 N 0.6491 40.7623 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 15 f -1.5337 25.3570 50.5822 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 16 g 15.1030 27.1902 46.1801 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 17 d -1.6106 29.0196 47.8672 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 18 W 0.6593 55.7857 46.6937 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 19 s 12.2899 23.9737 33.7172 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 20 c 15.2277 24.4154 31.0067 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 21 u 15.4557 25.6486 31.0067 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 22 3 0.8241 26.8266 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 23 ~ 18.9195 29.5416 13.1304 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 24 # 0.6568 48.2353 45.8884 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 25 O 0.8007 40.8266 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 26 ` -1.4864 12.1668 14.0000 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 27 @ -1.4930 46.9080 50.3381 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 28 F 0.5347 29.7514 46.8399 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 29 S 3.4443 35.2549 43.5416 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 30 p 12.8528 26.0129 48.3770 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 31 “ -0.1864 16.2052 15.1734 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 32 % -1.6969 41.4940 48.0815 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 33 £ -1.7821 40.6123 52.6252 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 34 . 39.5492 7.2587 7.2587 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 35 2 0.4029 26.1844 44.3469 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 36 5 -0.2601 29.0970 46.6937 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 37 m 14.2884 41.1864 33.4217 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 38 V 0.7817 33.7172 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 39 6 0.5412 28.4417 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 40 w 15.0390 36.2783 32.1801 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 41 T 1.7280 38.6252 43.4734 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 42 M 0.7769 46.1801 46.6087 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 43 G 0.7033 36.4322 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 44 b -0.2033 29.0196 46.2566 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 45 9 0.5253 30.7150 47.0619 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 46 ; 13.5587 9.4563 37.1646 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 47 D 0.7583 33.9315 46.2566 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 48 L 0.4567 28.2917 45.9489 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 49 y 15.4304 29.5371 46.1801 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 50 ‘ 0.7433 6.2353 15.1734 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 51 \ 1.6128 24.7790 47.3535 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 52 R -0.3361 31.5203 46.6937 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 53 < 14.9843 17.3703 24.6297 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 54 4 0.5003 32.9854 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 55 8 -0.3845 29.5371 46.6937 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 56 0 0.6357 32.0982 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 57 A 3.1996 34.7413 42.0000 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 58 E 0.6895 30.3469 46.2566 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 59 B 0.5420 29.1734 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 60 v 15.0504 25.8031 31.3748 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 61 k -0.2227 26.1668 47.8672 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 62 J 0.6208 34.6594 47.5672 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 63 U 0.8104 37.3920 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 64 j 2.9764 19.9315 58.8567 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 65 ( -1.7834 16.3469 59.1522 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 66 7 1.1105 32.5437 45.3741 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 67 § -1.6071 28.0000 47.8672 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 68 $ -3.7522 31.6450 60.2521 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 69 € -0.4462 37.0881 46.6937 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 70 / -1.7158 26.4584 49.4087 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 71 C 0.6743 31.7346 45.3741 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 72 * -0.4703 26.1668 23.2420 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 73 ” 0.5793 16.6424 15.3877 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 74 ? 3.2264 25.8031 44.3469 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 75 { -1.7997 19.9315 59.1522 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 76 } -1.5694 19.9315 59.1522 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 77 , 41.4487 8.6465 14.0000 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 78 I 1.8446 28.3476 43.2416 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 79 ° -3.0402 19.9315 20.0853 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 80 K 0.5859 29.1734 46.8399 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 81 H 0.8895 37.2420 46.6937 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 82 q 13.9941 25.2850 46.8399 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 83 & 0.4067 34.7451 46.9080 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 84 ’ 0.7747 8.4926 15.1734 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 85 [ 0.8057 16.1930 57.9787 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 86 - 27.0778 18.5437 5.0619 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 87 Y 1.8313 34.2353 44.7150 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 88 Q 0.9543 48.2353 56.9591 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 89 " 0.8067 15.4773 18.5437 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 90 ! -1.8395 6.0853 48.5270 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 91 x 14.2454 31.0067 32.0339 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 92 ) -1.6273 16.9248 59.1522 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 93 = 13.9312 22.4322 24.3214 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 94 + 14.0338 24.4154 24.4154 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 95 X 1.0514 38.1116 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 96 » 14.2033 31.0028 25.6531 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 97 ' -2.4695 5.0619 15.1734 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 98 ¢ -4.1633 29.3832 48.2353 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 99 Z 0.8223 37.6056 45.5203 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 100 > 12.9003 19.3535 26.8266 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 101 ® -1.5749 41.3402 40.7623 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 102 © -1.4550 40.8266 38.4231 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 103 ] 0.4004 16.1930 57.9787 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 104 é -1.8011 29.0196 47.8672 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 105 z 15.1567 26.1668 31.0067 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 106 _ 48.6206 38.7790 7.1049 -Comic_Sans_MS.ttf 44 b 29.0196 46.2566 107 ¥ 3.5054 31.1560 42.8053 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 1 t 4.5266 24.4154 40.9766 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 2 h -2.6097 27.3402 48.0853 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 3 a 14.3496 27.8462 31.0067 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 4 n 13.5696 25.2031 32.0301 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 5 P 0.2100 25.7986 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 6 o 14.7574 28.2098 31.0067 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 7 e 14.4331 29.0196 31.0067 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 8 : 12.0031 6.5913 28.6598 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 9 r 14.2656 22.4322 31.3748 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 10 l -2.4657 5.9315 47.8672 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 11 i 1.7846 5.9315 42.5060 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 12 1 0.0288 17.7944 44.3469 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 13 | -4.8374 5.0619 59.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 14 N 0.0940 40.7623 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 15 f -2.3598 25.3570 50.5822 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 16 g 14.6060 27.1902 46.1801 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 17 d -2.4253 29.0196 47.8672 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 18 W 0.0728 55.7857 46.6937 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 19 s 11.7603 23.9737 33.7172 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 20 c 14.3978 24.4154 31.0067 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 21 u 14.2596 25.6486 31.0067 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 22 3 -0.2358 26.8266 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 23 ~ 17.8431 29.5416 13.1304 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 24 # -0.6065 48.2353 45.8884 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 25 O 0.3025 40.8266 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 26 ` -2.2709 12.1668 14.0000 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 27 @ -2.1772 46.9080 50.3381 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 28 F -0.0631 29.7514 46.8399 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 29 S 2.4337 35.2549 43.5416 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 30 p 12.2461 26.0129 48.3770 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 31 “ -0.7380 16.2052 15.1734 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 32 % -2.2798 41.4940 48.0815 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 33 £ -2.4206 40.6123 52.6252 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 34 . 38.5681 7.2587 7.2587 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 35 2 -0.0167 26.1844 44.3469 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 36 5 -1.0701 29.0970 46.6937 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 37 m 13.6376 41.1864 33.4217 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 38 V 0.1770 33.7172 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 39 6 0.1525 28.4417 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 40 w 14.3674 36.2783 32.1801 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 41 T 0.8772 38.6252 43.4734 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 42 M -0.0857 46.1801 46.6087 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 43 G -0.2432 36.4322 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 44 b -0.4833 29.0196 46.2566 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 45 9 -0.1202 30.7150 47.0619 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 46 ; 12.7154 9.4563 37.1646 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 47 D -0.1098 33.9315 46.2566 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 48 L 0.2308 28.2917 45.9489 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 49 y 14.4384 29.5371 46.1801 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 50 ‘ -0.0517 6.2353 15.1734 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 51 \ 0.7891 24.7790 47.3535 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 52 R -1.0341 31.5203 46.6937 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 53 < 11.9887 19.3535 26.8266 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 54 4 -0.1099 32.9854 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 55 8 -1.2138 29.5371 46.6937 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 56 0 -0.0087 32.0982 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 57 A 2.2450 34.7413 42.0000 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 58 E -0.0720 30.3469 46.2566 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 59 B 0.0997 29.1734 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 60 v 14.6553 25.8031 31.3748 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 61 k -1.0997 26.1668 47.8672 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 62 J 0.0798 34.6594 47.5672 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 63 U -0.1147 37.3920 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 64 j 2.3344 19.9315 58.8567 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 65 ( -2.3371 16.9248 59.1522 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 66 7 0.1337 32.5437 45.3741 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 67 § -2.4780 28.0000 47.8672 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 68 $ -4.7173 31.6450 60.2521 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 69 € -1.4817 37.0881 46.6937 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 70 / -2.7093 26.4584 49.4087 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 71 C 0.1024 31.7346 45.3741 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 72 * -1.1593 26.1668 23.2420 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 73 ” 0.0552 16.6424 15.3877 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 74 ? 2.4199 25.8031 44.3469 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 75 { -2.3776 19.9315 59.1522 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 76 } -2.0772 19.9315 59.1522 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 77 , 40.4540 8.6465 14.0000 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 78 I 1.2335 28.3476 43.2416 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 79 ° -3.7749 19.9315 20.0853 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 80 K -0.1093 29.1734 46.8399 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 81 H 0.1575 37.2420 46.6937 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 82 q 13.2464 25.2850 46.8399 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 83 & -0.0115 34.7451 46.9080 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 84 ’ -0.2600 8.4926 15.1734 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 85 [ 0.1683 16.1930 57.9787 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 86 - 26.4455 18.5437 5.0619 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 87 Y 0.7322 34.2353 44.7150 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 88 Q 0.0658 48.2353 56.9591 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 89 " 0.0065 15.4773 18.5437 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 90 ! -2.5257 6.0853 48.5270 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 91 x 13.6154 31.0067 32.0339 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 92 ) -2.2175 16.3469 59.1522 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 93 = 13.1936 22.4322 24.3214 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 94 + 13.6223 24.4154 24.4154 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 95 X 0.0514 38.1116 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 96 » 13.3894 31.0028 25.6531 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 97 ' -3.2290 5.0619 15.1734 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 98 ¢ -5.2075 29.3832 48.2353 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 99 Z 0.0889 37.6056 45.5203 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 100 > 14.2327 17.3703 24.6297 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 101 ® -2.5450 41.3402 40.7623 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 102 © -2.3084 40.8266 38.4231 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 103 ] 0.1371 16.1930 57.9787 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 104 é -2.5179 29.0196 47.8672 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 105 z 14.4250 26.1668 31.0067 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 106 _ 48.1669 38.7790 7.1049 -Comic_Sans_MS.ttf 45 9 30.7150 47.0619 107 ¥ 2.6367 31.1560 42.8053 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 1 t -8.3054 24.4154 40.9766 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 2 h -15.2642 27.3402 48.0853 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 3 a 1.5243 27.8462 31.0067 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 4 n 0.7845 25.2031 32.0301 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 5 P -12.5742 25.7986 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 6 o 1.6366 28.2098 31.0067 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 7 e 1.9109 29.0196 31.0067 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 8 : -0.5871 6.5913 28.6598 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 9 r 1.3900 22.4322 31.3748 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 10 l -15.1123 5.9315 47.8672 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 11 i -10.8428 5.9315 42.5060 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 12 1 -12.8340 17.7944 44.3469 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 13 | -17.6998 5.0619 59.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 14 N -12.8585 40.7623 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 15 f -14.8930 25.3570 50.5822 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 16 g 1.6764 27.1902 46.1801 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 17 d -15.0255 29.0196 47.8672 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 18 W -12.6811 55.7857 46.6937 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 19 s -0.8696 23.9737 33.7172 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 20 c 1.7650 24.4154 31.0067 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 21 u 1.8485 25.6486 31.0067 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 22 3 -12.7767 26.8266 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 23 ~ 5.4338 29.5416 13.1304 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 24 # -13.3939 48.2353 45.8884 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 25 O -12.8049 40.8266 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 26 ` -15.3356 12.1668 14.0000 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 27 @ -15.2496 46.9080 50.3381 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 28 F -12.7028 29.7514 46.8399 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 29 S -10.3161 35.2549 43.5416 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 30 p -0.4826 26.0129 48.3770 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 31 “ -13.5741 16.2052 15.1734 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 32 % -15.3011 41.4940 48.0815 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 33 £ -15.2166 40.6123 52.6252 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 34 . 25.8315 7.2587 7.2587 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 35 2 -12.9243 26.1844 44.3469 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 36 5 -14.2164 29.0970 46.6937 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 37 m 0.7401 41.1864 33.4217 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 38 V -12.7501 33.7172 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 39 6 -12.6157 28.4417 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 40 w 1.6656 36.2783 32.1801 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 41 T -11.9281 38.6252 43.4734 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 42 M -12.7603 46.1801 46.6087 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 43 G -13.0146 36.4322 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 44 b -13.6509 29.0196 46.2566 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 45 9 -12.7488 30.7150 47.0619 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 46 ; 0.0769 9.4563 37.1646 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 47 D -12.5958 33.9315 46.2566 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 48 L -12.9827 28.2917 45.9489 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 49 y 1.8080 29.5371 46.1801 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 50 ‘ -12.9187 6.2353 15.1734 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 51 \ -11.8645 24.7790 47.3535 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 52 R -13.8477 31.5203 46.6937 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 53 < -0.7796 19.3535 26.8266 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 54 4 -12.4689 32.9854 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 55 8 -13.9078 29.5371 46.6937 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 56 0 -12.9471 32.0982 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 57 A -10.3207 34.7413 42.0000 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 58 E -12.6509 30.3469 46.2566 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 59 B -12.7910 29.1734 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 60 v 1.7695 25.8031 31.3748 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 61 k -13.9295 26.1668 47.8672 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 62 J -12.7501 34.6594 47.5672 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 63 U -12.8418 37.3920 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 64 j -10.1791 19.9315 58.8567 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 65 ( -15.1448 16.9248 59.1522 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 66 7 -12.6118 32.5437 45.3741 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 67 § -15.1886 28.0000 47.8672 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 68 $ -17.7765 31.6450 60.2521 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 69 € -14.1052 37.0881 46.6937 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 70 / -15.1377 26.4584 49.4087 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 71 C -12.7183 31.7346 45.3741 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 72 * -14.1555 26.1668 23.2420 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 73 ” -12.8372 16.6424 15.3877 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 74 ? -10.7237 25.8031 44.3469 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 75 { -14.9249 19.9315 59.1522 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 76 } -15.1753 19.9315 59.1522 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 77 , 27.6839 8.6465 14.0000 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 78 I -11.4305 28.3476 43.2416 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 79 ° -16.3643 19.9315 20.0853 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 80 K -12.8894 29.1734 46.8399 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 81 H -12.9239 37.2420 46.6937 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 82 q 0.3616 25.2850 46.8399 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 83 & -12.5809 34.7451 46.9080 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 84 ’ -12.7466 8.4926 15.1734 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 85 [ -12.7106 16.1930 57.9787 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 86 - 13.9123 18.5437 5.0619 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 87 Y -11.5102 34.2353 44.7150 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 88 Q -12.5573 48.2353 56.9591 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 89 " -12.9200 15.4773 18.5437 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 90 ! -14.7558 6.0853 48.5270 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 91 x 0.8115 31.0067 32.0339 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 92 ) -15.0123 16.3469 59.1522 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 93 = 0.5484 22.4322 24.3214 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 94 + 0.6643 24.4154 24.4154 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 95 X -12.5156 38.1116 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 96 » 0.9702 31.0028 25.6531 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 97 ' -15.8837 5.0619 15.1734 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 98 ¢ -17.7763 29.3832 48.2353 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 99 Z -12.7256 37.6056 45.5203 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 100 > 1.4318 17.3703 24.6297 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 101 ® -15.1078 41.3402 40.7623 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 102 © -15.0098 40.8266 38.4231 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 103 ] -12.6449 16.1930 57.9787 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 104 é -15.1470 29.0196 47.8672 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 105 z 2.0673 26.1668 31.0067 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 106 _ 35.2325 38.7790 7.1049 -Comic_Sans_MS.ttf 46 ; 9.4563 37.1646 107 ¥ -9.9466 31.1560 42.8053 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 1 t 4.3954 24.4154 40.9766 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 2 h -2.4483 27.3402 48.0853 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 3 a 14.3069 27.8462 31.0067 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 4 n 13.7243 25.2031 32.0301 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 5 P -0.1098 25.7986 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 6 o 14.4612 28.2098 31.0067 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 7 e 14.3719 29.0196 31.0067 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 8 : 12.0719 6.5913 28.6598 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 9 r 13.9304 22.4322 31.3748 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 10 l -2.4603 5.9315 47.8672 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 11 i 1.7584 5.9315 42.5060 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 12 1 0.3411 17.7944 44.3469 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 13 | -4.4375 5.0619 59.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 14 N 0.0087 40.7623 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 15 f -2.4749 25.3570 50.5822 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 16 g 14.5591 27.1902 46.1801 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 17 d -2.3574 29.0196 47.8672 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 18 W 0.1075 55.7857 46.6937 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 19 s 11.7566 23.9737 33.7172 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 20 c 14.7423 24.4154 31.0067 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 21 u 14.1823 25.6486 31.0067 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 22 3 -0.0006 26.8266 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 23 ~ 18.2738 29.5416 13.1304 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 24 # -0.2772 48.2353 45.8884 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 25 O -0.0665 40.8266 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 26 ` -2.4882 12.1668 14.0000 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 27 @ -2.3273 46.9080 50.3381 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 28 F -0.2008 29.7514 46.8399 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 29 S 2.1058 35.2549 43.5416 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 30 p 12.2811 26.0129 48.3770 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 31 “ -0.9011 16.2052 15.1734 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 32 % -2.0206 41.4940 48.0815 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 33 £ -2.7230 40.6123 52.6252 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 34 . 39.1361 7.2587 7.2587 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 35 2 -0.3373 26.1844 44.3469 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 36 5 -1.2969 29.0970 46.6937 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 37 m 13.4894 41.1864 33.4217 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 38 V 0.2393 33.7172 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 39 6 -0.0077 28.4417 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 40 w 14.4779 36.2783 32.1801 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 41 T 1.0504 38.6252 43.4734 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 42 M 0.0823 46.1801 46.6087 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 43 G 0.2527 36.4322 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 44 b -0.8929 29.0196 46.2566 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 45 9 -0.2905 30.7150 47.0619 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 46 ; 12.9485 9.4563 37.1646 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 47 D -0.0193 33.9315 46.2566 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 48 L -0.3013 28.2917 45.9489 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 49 y 14.5839 29.5371 46.1801 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 50 ‘ 0.2529 6.2353 15.1734 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 51 \ 0.6083 24.7790 47.3535 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 52 R -1.1979 31.5203 46.6937 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 53 < 14.2477 17.3703 24.6297 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 54 4 0.0822 32.9854 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 55 8 -1.3078 29.5371 46.6937 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 56 0 -0.1364 32.0982 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 57 A 1.9732 34.7413 42.0000 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 58 E -0.1052 30.3469 46.2566 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 59 B 0.0809 29.1734 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 60 v 14.6142 25.8031 31.3748 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 61 k -0.9437 26.1668 47.8672 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 62 J -0.2442 34.6594 47.5672 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 63 U 0.1228 37.3920 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 64 j 2.4147 19.9315 58.8567 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 65 ( -2.3519 16.3469 59.1522 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 66 7 -0.0084 32.5437 45.3741 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 67 § -2.1782 28.0000 47.8672 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 68 $ -5.0014 31.6450 60.2521 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 69 € -1.2522 37.0881 46.6937 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 70 / -2.1523 26.4584 49.4087 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 71 C -0.2796 31.7346 45.3741 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 72 * -1.2616 26.1668 23.2420 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 73 ” -0.2386 16.6424 15.3877 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 74 ? 2.2826 25.8031 44.3469 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 75 { -2.5155 19.9315 59.1522 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 76 } -2.4302 19.9315 59.1522 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 77 , 40.3793 8.6465 14.0000 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 78 I 1.1527 28.3476 43.2416 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 79 ° -3.5642 19.9315 20.0853 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 80 K 0.2178 29.1734 46.8399 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 81 H 0.1295 37.2420 46.6937 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 82 q 13.6009 25.2850 46.8399 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 83 & 0.0038 34.7451 46.9080 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 84 ’ 0.0757 8.4926 15.1734 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 85 [ -0.1269 16.1930 57.9787 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 86 - 26.5391 18.5437 5.0619 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 87 Y 1.2490 34.2353 44.7150 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 88 Q -0.1589 48.2353 56.9591 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 89 " -0.1339 15.4773 18.5437 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 90 ! -2.3681 6.0853 48.5270 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 91 x 13.4304 31.0067 32.0339 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 92 ) -2.5330 16.9248 59.1522 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 93 = 13.3142 22.4322 24.3214 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 94 + 13.1317 24.4154 24.4154 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 95 X 0.0048 38.1116 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 96 » 13.4727 31.0028 25.6531 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 97 ' -2.9975 5.0619 15.1734 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 98 ¢ -5.0868 29.3832 48.2353 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 99 Z 0.2394 37.6056 45.5203 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 100 > 12.4059 19.3535 26.8266 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 101 ® -2.4399 41.3402 40.7623 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 102 © -2.3909 40.8266 38.4231 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 103 ] 0.3226 16.1930 57.9787 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 104 é -2.3612 29.0196 47.8672 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 105 z 13.9602 26.1668 31.0067 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 106 _ 48.2568 38.7790 7.1049 -Comic_Sans_MS.ttf 47 D 33.9315 46.2566 107 ¥ 2.7864 31.1560 42.8053 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 1 t 4.2634 24.4154 40.9766 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 2 h -2.0095 27.3402 48.0853 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 3 a 14.2750 27.8462 31.0067 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 4 n 13.4628 25.2031 32.0301 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 5 P -0.0963 25.7986 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 6 o 14.6027 28.2098 31.0067 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 7 e 14.6714 29.0196 31.0067 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 8 : 11.9837 6.5913 28.6598 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 9 r 13.9754 22.4322 31.3748 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 10 l -2.2468 5.9315 47.8672 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 11 i 1.7220 5.9315 42.5060 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 12 1 0.1780 17.7944 44.3469 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 13 | -4.9998 5.0619 59.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 14 N -0.1696 40.7623 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 15 f -2.3675 25.3570 50.5822 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 16 g 14.5983 27.1902 46.1801 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 17 d -2.4891 29.0196 47.8672 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 18 W 0.0822 55.7857 46.6937 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 19 s 11.7091 23.9737 33.7172 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 20 c 14.3513 24.4154 31.0067 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 21 u 14.5938 25.6486 31.0067 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 22 3 -0.1270 26.8266 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 23 ~ 18.0818 29.5416 13.1304 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 24 # -0.5673 48.2353 45.8884 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 25 O -0.0094 40.8266 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 26 ` -2.4925 12.1668 14.0000 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 27 @ -2.4266 46.9080 50.3381 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 28 F -0.2418 29.7514 46.8399 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 29 S 2.1796 35.2549 43.5416 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 30 p 12.2773 26.0129 48.3770 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 31 “ -1.0133 16.2052 15.1734 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 32 % -2.1004 41.4940 48.0815 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 33 £ -2.4256 40.6123 52.6252 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 34 . 38.8528 7.2587 7.2587 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 35 2 0.0153 26.1844 44.3469 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 36 5 -0.9250 29.0970 46.6937 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 37 m 13.5605 41.1864 33.4217 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 38 V -0.4342 33.7172 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 39 6 0.1718 28.4417 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 40 w 14.2421 36.2783 32.1801 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 41 T 0.9504 38.6252 43.4734 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 42 M -0.0505 46.1801 46.6087 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 43 G -0.4038 36.4322 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 44 b -0.7265 29.0196 46.2566 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 45 9 0.0455 30.7150 47.0619 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 46 ; 12.4041 9.4563 37.1646 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 47 D 0.2595 33.9315 46.2566 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 48 L 0.0371 28.2917 45.9489 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 49 y 14.6753 29.5371 46.1801 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 50 ‘ -0.2999 6.2353 15.1734 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 51 \ 0.5869 24.7790 47.3535 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 52 R -1.2161 31.5203 46.6937 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 53 < 14.0577 17.3703 24.6297 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 54 4 -0.0500 32.9854 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 55 8 -1.0839 29.5371 46.6937 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 56 0 0.0780 32.0982 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 57 A 2.5039 34.7413 42.0000 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 58 E -0.0160 30.3469 46.2566 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 59 B -0.1099 29.1734 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 60 v 14.5182 25.8031 31.3748 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 61 k -1.0979 26.1668 47.8672 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 62 J -0.2841 34.6594 47.5672 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 63 U -0.0377 37.3920 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 64 j 2.4125 19.9315 58.8567 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 65 ( -2.3888 16.3469 59.1522 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 66 7 0.0951 32.5437 45.3741 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 67 § -2.2769 28.0000 47.8672 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 68 $ -4.9498 31.6450 60.2521 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 69 € -1.4284 37.0881 46.6937 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 70 / -2.7765 26.4584 49.4087 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 71 C 0.0817 31.7346 45.3741 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 72 * -1.4039 26.1668 23.2420 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 73 ” -0.0588 16.6424 15.3877 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 74 ? 1.8785 25.8031 44.3469 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 75 { -2.3771 19.9315 59.1522 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 76 } -2.1748 19.9315 59.1522 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 77 , 40.3657 8.6465 14.0000 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 78 I 1.3723 28.3476 43.2416 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 79 ° -3.7343 19.9315 20.0853 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 80 K 0.1672 29.1734 46.8399 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 81 H 0.2545 37.2420 46.6937 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 82 q 13.0386 25.2850 46.8399 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 83 & 0.2215 34.7451 46.9080 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 84 ’ 0.0135 8.4926 15.1734 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 85 [ 0.2464 16.1930 57.9787 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 86 - 26.5274 18.5437 5.0619 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 87 Y 1.4159 34.2353 44.7150 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 88 Q -0.0987 48.2353 56.9591 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 89 " 0.1710 15.4773 18.5437 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 90 ! -2.2673 6.0853 48.5270 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 91 x 13.3625 31.0067 32.0339 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 92 ) -2.4410 16.9248 59.1522 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 93 = 13.4228 22.4322 24.3214 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 94 + 13.5218 24.4154 24.4154 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 95 X -0.0798 38.1116 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 96 » 13.5764 31.0028 25.6531 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 97 ' -2.8921 5.0619 15.1734 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 98 ¢ -4.8960 29.3832 48.2353 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 99 Z -0.0736 37.6056 45.5203 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 100 > 12.0622 19.3535 26.8266 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 101 ® -2.4536 41.3402 40.7623 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 102 © -2.4925 40.8266 38.4231 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 103 ] -0.1158 16.1930 57.9787 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 104 é -2.6442 29.0196 47.8672 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 105 z 14.3523 26.1668 31.0067 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 106 _ 47.6341 38.7790 7.1049 -Comic_Sans_MS.ttf 48 L 28.2917 45.9489 107 ¥ 2.5330 31.1560 42.8053 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 1 t -9.9244 24.4154 40.9766 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 2 h -16.7278 27.3402 48.0853 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 3 a -0.1575 27.8462 31.0067 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 4 n -1.5566 25.2031 32.0301 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 5 P -14.5091 25.7986 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 6 o -0.1575 28.2098 31.0067 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 7 e -0.1669 29.0196 31.0067 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 8 : -2.3961 6.5913 28.6598 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 9 r -0.3604 22.4322 31.3748 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 10 l -16.9367 5.9315 47.8672 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 11 i -12.7057 5.9315 42.5060 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 12 1 -14.3450 17.7944 44.3469 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 13 | -19.3280 5.0619 59.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 14 N -14.4395 40.7623 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 15 f -17.0505 25.3570 50.5822 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 16 g -0.1074 27.1902 46.1801 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 17 d -16.7194 29.0196 47.8672 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 18 W -14.4762 55.7857 46.6937 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 19 s -2.8011 23.9737 33.7172 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 20 c 0.1562 24.4154 31.0067 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 21 u -0.0728 25.6486 31.0067 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 22 3 -14.3464 26.8266 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 23 ~ 3.7937 29.5416 13.1304 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 24 # -14.6177 48.2353 45.8884 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 25 O -14.6777 40.8266 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 26 ` -17.2173 12.1668 14.0000 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 27 @ -17.1051 46.9080 50.3381 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 28 F -14.2943 29.7514 46.8399 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 29 S -11.9918 35.2549 43.5416 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 30 p -2.2350 26.0129 48.3770 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 31 “ -15.3772 16.2052 15.1734 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 32 % -17.1235 41.4940 48.0815 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 33 £ -16.8620 40.6123 52.6252 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 34 . 24.0754 7.2587 7.2587 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 35 2 -14.2789 26.1844 44.3469 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 36 5 -15.7242 29.0970 46.6937 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 37 m -1.1917 41.1864 33.4217 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 38 V -14.5970 33.7172 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 39 6 -14.4776 28.4417 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 40 w -0.0423 36.2783 32.1801 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 41 T -13.7463 38.6252 43.4734 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 42 M -14.8467 46.1801 46.6087 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 43 G -14.6860 36.4322 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 44 b -15.2142 29.0196 46.2566 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 45 9 -14.4313 30.7150 47.0619 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 46 ; -1.7982 9.4563 37.1646 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 47 D -14.6483 33.9315 46.2566 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 48 L -14.4769 28.2917 45.9489 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 49 y -0.0060 29.5371 46.1801 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 50 ‘ -14.3537 6.2353 15.1734 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 51 \ -13.4538 24.7790 47.3535 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 52 R -15.6097 31.5203 46.6937 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 53 < -0.6742 17.3703 24.6297 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 54 4 -14.6731 32.9854 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 55 8 -15.8979 29.5371 46.6937 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 56 0 -14.6069 32.0982 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 57 A -12.2084 34.7413 42.0000 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 58 E -14.6138 30.3469 46.2566 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 59 B -14.4230 29.1734 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 60 v 0.0318 25.8031 31.3748 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 61 k -15.6930 26.1668 47.8672 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 62 J -14.6115 34.6594 47.5672 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 63 U -14.6095 37.3920 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 64 j -11.9605 19.9315 58.8567 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 65 ( -16.8034 16.3469 59.1522 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 66 7 -14.5802 32.5437 45.3741 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 67 § -17.0106 28.0000 47.8672 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 68 $ -19.3513 31.6450 60.2521 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 69 € -15.7640 37.0881 46.6937 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 70 / -16.8982 26.4584 49.4087 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 71 C -14.3588 31.7346 45.3741 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 72 * -15.7336 26.1668 23.2420 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 73 ” -14.6071 16.6424 15.3877 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 74 ? -12.6362 25.8031 44.3469 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 75 { -17.0595 19.9315 59.1522 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 76 } -16.4844 19.9315 59.1522 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 77 , 26.1890 8.6465 14.0000 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 78 I -13.4040 28.3476 43.2416 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 79 ° -18.2353 19.9315 20.0853 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 80 K -14.3629 29.1734 46.8399 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 81 H -14.4572 37.2420 46.6937 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 82 q -1.3939 25.2850 46.8399 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 83 & -14.2736 34.7451 46.9080 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 84 ’ -14.3575 8.4926 15.1734 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 85 [ -14.3079 16.1930 57.9787 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 86 - 11.9234 18.5437 5.0619 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 87 Y -13.2174 34.2353 44.7150 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 88 Q -14.5636 48.2353 56.9591 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 89 " -14.6508 15.4773 18.5437 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 90 ! -17.0289 6.0853 48.5270 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 91 x -1.0213 31.0067 32.0339 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 92 ) -16.8257 16.9248 59.1522 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 93 = -1.3559 22.4322 24.3214 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 94 + -0.9119 24.4154 24.4154 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 95 X -14.5464 38.1116 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 96 » -0.9272 31.0028 25.6531 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 97 ' -17.4990 5.0619 15.1734 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 98 ¢ -19.5290 29.3832 48.2353 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 99 Z -14.4168 37.6056 45.5203 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 100 > -2.3564 19.3535 26.8266 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 101 ® -16.6468 41.3402 40.7623 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 102 © -16.7658 40.8266 38.4231 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 103 ] -14.3172 16.1930 57.9787 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 104 é -16.8105 29.0196 47.8672 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 105 z 0.0574 26.1668 31.0067 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 106 _ 33.5046 38.7790 7.1049 -Comic_Sans_MS.ttf 49 y 29.5371 46.1801 107 ¥ -11.6433 31.1560 42.8053 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 1 t 4.5427 24.4154 40.9766 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 2 h -2.3469 27.3402 48.0853 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 3 a 14.7561 27.8462 31.0067 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 4 n 13.4174 25.2031 32.0301 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 5 P 0.0650 25.7986 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 6 o 14.5244 28.2098 31.0067 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 7 e 14.5098 29.0196 31.0067 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 8 : 12.0769 6.5913 28.6598 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 9 r 14.1405 22.4322 31.3748 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 10 l -2.4645 5.9315 47.8672 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 11 i 1.9840 5.9315 42.5060 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 12 1 -0.0839 17.7944 44.3469 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 13 | -4.8895 5.0619 59.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 14 N 0.0167 40.7623 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 15 f -2.3885 25.3570 50.5822 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 16 g 14.5959 27.1902 46.1801 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 17 d -2.3469 29.0196 47.8672 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 18 W -0.0714 55.7857 46.6937 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 19 s 11.8031 23.9737 33.7172 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 20 c 14.5192 24.4154 31.0067 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 21 u 14.5136 25.6486 31.0067 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 22 3 -0.1301 26.8266 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 23 ~ 18.3649 29.5416 13.1304 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 24 # -0.2870 48.2353 45.8884 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 25 O -0.0871 40.8266 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 26 ` -2.2013 12.1668 14.0000 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 27 @ -2.2937 46.9080 50.3381 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 28 F -0.0395 29.7514 46.8399 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 29 S 2.3469 35.2549 43.5416 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 30 p 12.2608 26.0129 48.3770 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 31 “ -0.7779 16.2052 15.1734 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 32 % -2.5552 41.4940 48.0815 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 33 £ -2.1688 40.6123 52.6252 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 34 . 38.8143 7.2587 7.2587 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 35 2 -0.0097 26.1844 44.3469 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 36 5 -1.1734 29.0970 46.6937 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 37 m 13.4864 41.1864 33.4217 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 38 V -0.0045 33.7172 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 39 6 0.1158 28.4417 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 40 w 14.5948 36.2783 32.1801 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 41 T 0.8734 38.6252 43.4734 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 42 M 0.0060 46.1801 46.6087 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 43 G -0.2540 36.4322 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 44 b -0.7720 29.0196 46.2566 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 45 9 0.1099 30.7150 47.0619 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 46 ; 12.9444 9.4563 37.1646 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 47 D 0.0000 33.9315 46.2566 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 48 L 0.0000 28.2917 45.9489 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 49 y 14.5017 29.5371 46.1801 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 50 ‘ -0.0871 6.2353 15.1734 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 51 \ 1.0606 24.7790 47.3535 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 52 R -1.0933 31.5203 46.6937 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 53 < 12.0848 19.3535 26.8266 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 54 4 0.0455 32.9854 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 55 8 -1.1090 29.5371 46.6937 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 56 0 0.0710 32.0982 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 57 A 2.2713 34.7413 42.0000 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 58 E 0.0000 30.3469 46.2566 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 59 B -0.1164 29.1734 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 60 v 14.5136 25.8031 31.3748 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 61 k -0.9326 26.1668 47.8672 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 62 J 0.0833 34.6594 47.5672 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 63 U 0.0347 37.3920 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 64 j 2.4167 19.9315 58.8567 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 65 ( -2.2699 16.9248 59.1522 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 66 7 0.2333 32.5437 45.3741 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 67 § -2.2552 28.0000 47.8672 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 68 $ -5.1180 31.6450 60.2521 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 69 € -1.1479 37.0881 46.6937 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 70 / -2.5819 26.4584 49.4087 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 71 C 0.2259 31.7346 45.3741 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 72 * -1.2402 26.1668 23.2420 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 73 ” 0.0742 16.6424 15.3877 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 74 ? 1.9131 25.8031 44.3469 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 75 { -2.1796 19.9315 59.1522 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 76 } -2.1713 19.9315 59.1522 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 77 , 40.3727 8.6465 14.0000 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 78 I 1.2325 28.3476 43.2416 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 79 ° -3.6166 19.9315 20.0853 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 80 K -0.1218 29.1734 46.8399 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 81 H 0.0714 37.2420 46.6937 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 82 q 13.4273 25.2850 46.8399 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 83 & 0.0956 34.7451 46.9080 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 84 ’ 0.0000 8.4926 15.1734 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 85 [ -0.0060 16.1930 57.9787 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 86 - 26.4584 18.5437 5.0619 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 87 Y 1.0933 34.2353 44.7150 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 88 Q 0.0000 48.2353 56.9591 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 89 " 0.1074 15.4773 18.5437 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 90 ! -2.4974 6.0853 48.5270 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 91 x 13.4766 31.0067 32.0339 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 92 ) -2.2552 16.3469 59.1522 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 93 = 13.2843 22.4322 24.3214 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 94 + 13.4918 24.4154 24.4154 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 95 X -0.0449 38.1116 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 96 » 13.5864 31.0028 25.6531 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 97 ' -2.9927 5.0619 15.1734 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 98 ¢ -5.0626 29.3832 48.2353 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 99 Z 0.1371 37.6056 45.5203 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 100 > 14.0956 17.3703 24.6297 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 101 ® -2.3560 41.3402 40.7623 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 102 © -2.2754 40.8266 38.4231 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 103 ] -0.1353 16.1930 57.9787 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 104 é -2.1759 29.0196 47.8672 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 105 z 14.6392 26.1668 31.0067 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 106 _ 48.1081 38.7790 7.1049 -Comic_Sans_MS.ttf 50 ‘ 6.2353 15.1734 107 ¥ 2.8609 31.1560 42.8053 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 1 t 3.5795 24.4154 40.9766 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 2 h -3.4102 27.3402 48.0853 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 3 a 13.4709 27.8462 31.0067 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 4 n 12.5991 25.2031 32.0301 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 5 P -0.8455 25.7986 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 6 o 13.7326 28.2098 31.0067 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 7 e 13.6781 29.0196 31.0067 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 8 : 11.2818 6.5913 28.6598 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 9 r 13.3467 22.4322 31.3748 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 10 l -3.5956 5.9315 47.8672 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 11 i 0.9084 5.9315 42.5060 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 12 1 -0.8713 17.7944 44.3469 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 13 | -5.7888 5.0619 59.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 14 N -0.8429 40.7623 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 15 f -3.3915 25.3570 50.5822 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 16 g 13.6340 27.1902 46.1801 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 17 d -3.2384 29.0196 47.8672 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 18 W -0.6661 55.7857 46.6937 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 19 s 10.9468 23.9737 33.7172 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 20 c 13.8851 24.4154 31.0067 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 21 u 13.5476 25.6486 31.0067 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 22 3 -1.2016 26.8266 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 23 ~ 17.3165 29.5416 13.1304 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 24 # -1.1036 48.2353 45.8884 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 25 O -0.7839 40.8266 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 26 ` -3.1453 12.1668 14.0000 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 27 @ -3.3899 46.9080 50.3381 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 28 F -0.5511 29.7514 46.8399 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 29 S 1.3538 35.2549 43.5416 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 30 p 11.2444 26.0129 48.3770 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 31 “ -1.5057 16.2052 15.1734 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 32 % -3.3494 41.4940 48.0815 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 33 £ -2.8799 40.6123 52.6252 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 34 . 38.0197 7.2587 7.2587 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 35 2 -0.7627 26.1844 44.3469 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 36 5 -2.1368 29.0970 46.6937 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 37 m 12.6977 41.1864 33.4217 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 38 V -1.0046 33.7172 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 39 6 -0.9577 28.4417 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 40 w 13.8905 36.2783 32.1801 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 41 T 0.2796 38.6252 43.4734 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 42 M -0.8160 46.1801 46.6087 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 43 G -0.6708 36.4322 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 44 b -1.5253 29.0196 46.2566 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 45 9 -0.9137 30.7150 47.0619 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 46 ; 11.8431 9.4563 37.1646 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 47 D -1.0949 33.9315 46.2566 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 48 L -0.7792 28.2917 45.9489 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 49 y 13.8544 29.5371 46.1801 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 50 ‘ -1.0472 6.2353 15.1734 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 51 \ 0.0609 24.7790 47.3535 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 52 R -2.2592 31.5203 46.6937 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 53 < 11.1895 19.3535 26.8266 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 54 4 -0.7159 32.9854 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 55 8 -2.0412 29.5371 46.6937 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 56 0 -0.8841 32.0982 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 57 A 1.2107 34.7413 42.0000 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 58 E -1.0396 30.3469 46.2566 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 59 B -0.9707 29.1734 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 60 v 13.5295 25.8031 31.3748 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 61 k -1.7918 26.1668 47.8672 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 62 J -0.9444 34.6594 47.5672 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 63 U -0.6951 37.3920 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 64 j 1.4261 19.9315 58.8567 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 65 ( -3.0181 16.9248 59.1522 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 66 7 -0.6318 32.5437 45.3741 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 67 § -3.1999 28.0000 47.8672 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 68 $ -5.6910 31.6450 60.2521 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 69 € -2.3029 37.0881 46.6937 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 70 / -3.3562 26.4584 49.4087 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 71 C -0.7856 31.7346 45.3741 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 72 * -2.2590 26.1668 23.2420 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 73 ” -1.1396 16.6424 15.3877 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 74 ? 1.6528 25.8031 44.3469 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 75 { -3.4267 19.9315 59.1522 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 76 } -3.3074 19.9315 59.1522 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 77 , 39.5427 8.6465 14.0000 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 78 I 0.2776 28.3476 43.2416 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 79 ° -4.8784 19.9315 20.0853 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 80 K -0.7871 29.1734 46.8399 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 81 H -1.0413 37.2420 46.6937 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 82 q 12.4741 25.2850 46.8399 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 83 & -1.2173 34.7451 46.9080 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 84 ’ -0.9622 8.4926 15.1734 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 85 [ -0.6273 16.1930 57.9787 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 86 - 25.6495 18.5437 5.0619 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 87 Y 0.4450 34.2353 44.7150 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 88 Q -0.6337 48.2353 56.9591 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 89 " -0.8734 15.4773 18.5437 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 90 ! -3.7877 6.0853 48.5270 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 91 x 12.5619 31.0067 32.0339 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 92 ) -3.1727 16.3469 59.1522 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 93 = 12.3154 22.4322 24.3214 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 94 + 12.5369 24.4154 24.4154 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 95 X -1.2012 38.1116 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 96 » 12.5732 31.0028 25.6531 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 97 ' -3.8115 5.0619 15.1734 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 98 ¢ -5.8240 29.3832 48.2353 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 99 Z -0.8874 37.6056 45.5203 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 100 > 13.2988 17.3703 24.6297 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 101 ® -3.1475 41.3402 40.7623 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 102 © -2.8662 40.8266 38.4231 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 103 ] -0.9384 16.1930 57.9787 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 104 é -3.1862 29.0196 47.8672 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 105 z 13.7190 26.1668 31.0067 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 106 _ 47.3205 38.7790 7.1049 -Comic_Sans_MS.ttf 51 \ 24.7790 47.3535 107 ¥ 1.6214 31.1560 42.8053 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 1 t 5.4559 24.4154 40.9766 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 2 h -1.3417 27.3402 48.0853 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 3 a 15.7720 27.8462 31.0067 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 4 n 14.6685 25.2031 32.0301 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 5 P 1.1175 25.7986 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 6 o 15.5857 28.2098 31.0067 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 7 e 15.9585 29.0196 31.0067 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 8 : 13.0785 6.5913 28.6598 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 9 r 15.2312 22.4322 31.3748 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 10 l -1.3764 5.9315 47.8672 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 11 i 3.1445 5.9315 42.5060 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 12 1 1.2438 17.7944 44.3469 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 13 | -3.6168 5.0619 59.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 14 N 1.1864 40.7623 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 15 f -1.1877 25.3570 50.5822 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 16 g 15.8944 27.1902 46.1801 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 17 d -1.5243 29.0196 47.8672 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 18 W 1.2522 55.7857 46.6937 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 19 s 12.9822 23.9737 33.7172 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 20 c 15.6523 24.4154 31.0067 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 21 u 15.4715 25.6486 31.0067 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 22 3 1.1487 26.8266 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 23 ~ 19.2061 29.5416 13.1304 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 24 # 0.6450 48.2353 45.8884 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 25 O 1.1734 40.8266 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 26 ` -1.1955 12.1668 14.0000 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 27 @ -1.2741 46.9080 50.3381 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 28 F 1.1818 29.7514 46.8399 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 29 S 3.0473 35.2549 43.5416 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 30 p 13.2751 26.0129 48.3770 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 31 “ 0.3143 16.2052 15.1734 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 32 % -1.5560 41.4940 48.0815 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 33 £ -1.1155 40.6123 52.6252 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 34 . 39.9450 7.2587 7.2587 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 35 2 1.2124 26.1844 44.3469 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 36 5 0.0492 29.0970 46.6937 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 37 m 14.7455 41.1864 33.4217 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 38 V 0.9944 33.7172 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 39 6 1.3632 28.4417 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 40 w 15.5895 36.2783 32.1801 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 41 T 2.0458 38.6252 43.4734 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 42 M 1.1724 46.1801 46.6087 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 43 G 0.7500 36.4322 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 44 b 0.4896 29.0196 46.2566 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 45 9 0.9905 30.7150 47.0619 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 46 ; 13.7656 9.4563 37.1646 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 47 D 1.2463 33.9315 46.2566 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 48 L 0.9865 28.2917 45.9489 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 49 y 15.7602 29.5371 46.1801 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 50 ‘ 1.2512 6.2353 15.1734 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 51 \ 2.0345 24.7790 47.3535 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 52 R 0.3282 31.5203 46.6937 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 53 < 15.0481 17.3703 24.6297 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 54 4 0.9185 32.9854 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 55 8 -0.2359 29.5371 46.6937 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 56 0 1.0911 32.0982 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 57 A 3.2690 34.7413 42.0000 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 58 E 1.5942 30.3469 46.2566 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 59 B 1.5390 29.1734 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 60 v 15.4355 25.8031 31.3748 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 61 k -0.1578 26.1668 47.8672 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 62 J 0.7647 34.6594 47.5672 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 63 U 0.9733 37.3920 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 64 j 3.8354 19.9315 58.8567 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 65 ( -1.2492 16.3469 59.1522 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 66 7 1.4508 32.5437 45.3741 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 67 § -1.3685 28.0000 47.8672 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 68 $ -3.7277 31.6450 60.2521 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 69 € 0.3498 37.0881 46.6937 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 70 / -1.5056 26.4584 49.4087 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 71 C 1.4374 31.7346 45.3741 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 72 * -0.3818 26.1668 23.2420 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 73 ” 1.0831 16.6424 15.3877 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 74 ? 3.4399 25.8031 44.3469 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 75 { -1.0363 19.9315 59.1522 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 76 } -0.9656 19.9315 59.1522 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 77 , 41.3418 8.6465 14.0000 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 78 I 2.4017 28.3476 43.2416 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 79 ° -2.3103 19.9315 20.0853 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 80 K 1.0432 29.1734 46.8399 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 81 H 1.1664 37.2420 46.6937 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 82 q 14.4124 25.2850 46.8399 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 83 & 1.1044 34.7451 46.9080 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 84 ’ 1.1480 8.4926 15.1734 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 85 [ 1.4575 16.1930 57.9787 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 86 - 27.5730 18.5437 5.0619 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 87 Y 2.5091 34.2353 44.7150 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 88 Q 1.2295 48.2353 56.9591 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 89 " 0.8766 15.4773 18.5437 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 90 ! -1.0138 6.0853 48.5270 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 91 x 14.7314 31.0067 32.0339 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 92 ) -1.0271 16.9248 59.1522 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 93 = 14.5357 22.4322 24.3214 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 94 + 14.4518 24.4154 24.4154 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 95 X 0.9974 38.1116 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 96 » 14.8480 31.0028 25.6531 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 97 ' -1.8472 5.0619 15.1734 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 98 ¢ -3.9658 29.3832 48.2353 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 99 Z 1.5075 37.6056 45.5203 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 100 > 13.2336 19.3535 26.8266 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 101 ® -1.3347 41.3402 40.7623 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 102 © -1.3501 40.8266 38.4231 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 103 ] 1.4042 16.1930 57.9787 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 104 é -1.1947 29.0196 47.8672 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 105 z 15.8656 26.1668 31.0067 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 106 _ 49.2609 38.7790 7.1049 -Comic_Sans_MS.ttf 52 R 31.5203 46.6937 107 ¥ 3.7932 31.1560 42.8053 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 1 t -9.6889 24.4154 40.9766 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 2 h -16.5549 27.3402 48.0853 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 3 a 0.4654 27.8462 31.0067 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 4 n -0.6696 25.2031 32.0301 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 5 P -14.1910 25.7986 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 6 o 0.5186 28.2098 31.0067 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 7 e 0.3175 29.0196 31.0067 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 8 : -0.0812 6.5913 28.6598 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 9 r 0.1630 22.4322 31.3748 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 10 l -16.5522 5.9315 47.8672 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 11 i -12.2175 5.9315 42.5060 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 12 1 -12.3382 17.7944 44.3469 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 13 | -17.1994 5.0619 59.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 14 N -14.2048 40.7623 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 15 f -16.6315 25.3570 50.5822 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 16 g 0.5826 27.1902 46.1801 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 17 d -16.4508 29.0196 47.8672 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 18 W -13.9918 55.7857 46.6937 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 19 s -2.2591 23.9737 33.7172 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 20 c -0.0500 24.4154 31.0067 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 21 u 0.6595 25.6486 31.0067 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 22 3 -12.3388 26.8266 45.5203 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 23 ~ 6.0414 29.5416 13.1304 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 24 # -12.4005 48.2353 45.8884 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 25 O -14.3214 40.8266 45.5203 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 26 ` -14.4345 12.1668 14.0000 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 27 @ -14.8405 46.9080 50.3381 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 28 F -14.0660 29.7514 46.8399 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 29 S -11.6842 35.2549 43.5416 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 30 p -1.7525 26.0129 48.3770 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 31 “ -12.9517 16.2052 15.1734 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 32 % -14.7450 41.4940 48.0815 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 33 £ -14.6240 40.6123 52.6252 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 34 . 26.2680 7.2587 7.2587 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 35 2 -12.1377 26.1844 44.3469 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 36 5 -13.1474 29.0970 46.6937 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 37 m -0.7445 41.1864 33.4217 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 38 V -13.9853 33.7172 45.5203 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 39 6 -12.1727 28.4417 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 40 w 0.5584 36.2783 32.1801 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 41 T -13.0349 38.6252 43.4734 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 42 M -14.1851 46.1801 46.6087 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 43 G -14.2959 36.4322 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 44 b -14.7929 29.0196 46.2566 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 45 9 -12.2665 30.7150 47.0619 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 46 ; 0.2849 9.4563 37.1646 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 47 D -14.2819 33.9315 46.2566 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 48 L -13.8936 28.2917 45.9489 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 49 y 0.0718 29.5371 46.1801 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 50 ‘ -11.8799 6.2353 15.1734 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 51 \ -11.0348 24.7790 47.3535 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 52 R -15.2508 31.5203 46.6937 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 53 < -0.1169 19.3535 26.8266 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 54 4 -12.3530 32.9854 45.5203 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 55 8 -13.1499 29.5371 46.6937 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 56 0 -12.2595 32.0982 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 57 A -11.8025 34.7413 42.0000 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 58 E -14.3912 30.3469 46.2566 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 59 B -14.2473 29.1734 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 60 v 0.3632 25.8031 31.3748 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 61 k -15.5250 26.1668 47.8672 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 62 J -14.1320 34.6594 47.5672 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 63 U -14.4682 37.3920 45.5203 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 64 j -11.6260 19.9315 58.8567 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 65 ( -14.5776 16.9248 59.1522 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 66 7 -12.1539 32.5437 45.3741 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 67 § -14.4072 28.0000 47.8672 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 68 $ -16.8219 31.6450 60.2521 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 69 € -13.0079 37.0881 46.6937 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 70 / -14.7591 26.4584 49.4087 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 71 C -14.0994 31.7346 45.3741 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 72 * -13.5655 26.1668 23.2420 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 73 ” -12.1270 16.6424 15.3877 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 74 ? -9.9366 25.8031 44.3469 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 75 { -14.2716 19.9315 59.1522 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 76 } -14.4341 19.9315 59.1522 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 77 , 28.3326 8.6465 14.0000 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 78 I -12.8840 28.3476 43.2416 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 79 ° -15.8912 19.9315 20.0853 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 80 K -14.1650 29.1734 46.8399 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 81 H -14.5655 37.2420 46.6937 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 82 q -0.7220 25.2850 46.8399 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 83 & -11.9953 34.7451 46.9080 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 84 ’ -12.0654 8.4926 15.1734 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 85 [ -12.2664 16.1930 57.9787 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 86 - 14.2994 18.5437 5.0619 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 87 Y -13.0602 34.2353 44.7150 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 88 Q -14.1136 48.2353 56.9591 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 89 " -12.1975 15.4773 18.5437 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 90 ! -14.4301 6.0853 48.5270 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 91 x -0.6745 31.0067 32.0339 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 92 ) -14.0934 16.3469 59.1522 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 93 = 1.1046 22.4322 24.3214 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 94 + 1.0566 24.4154 24.4154 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 95 X -13.8964 38.1116 45.5203 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 96 » 1.6138 31.0028 25.6531 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 97 ' -14.9716 5.0619 15.1734 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 98 ¢ -17.3504 29.3832 48.2353 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 99 Z -14.1417 37.6056 45.5203 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 100 > 1.7764 17.3703 24.6297 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 101 ® -14.7281 41.3402 40.7623 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 102 © -14.7274 40.8266 38.4231 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 103 ] -12.4007 16.1930 57.9787 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 104 é -16.5699 29.0196 47.8672 -Comic_Sans_MS.ttf 53 < 17.3703 24.6297 105 z 0.2786 26.1668 31.0067 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 106 _ 35.6300 38.7790 7.1049 -Comic_Sans_MS.ttf 53 < 19.3535 26.8266 107 ¥ -9.5369 31.1560 42.8053 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 1 t 4.7445 24.4154 40.9766 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 2 h -2.4735 27.3402 48.0853 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 3 a 14.3963 27.8462 31.0067 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 4 n 13.5037 25.2031 32.0301 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 5 P 0.1419 25.7986 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 6 o 14.5983 28.2098 31.0067 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 7 e 14.4381 29.0196 31.0067 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 8 : 12.2151 6.5913 28.6598 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 9 r 14.2719 22.4322 31.3748 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 10 l -2.1856 5.9315 47.8672 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 11 i 2.1516 5.9315 42.5060 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 12 1 0.0278 17.7944 44.3469 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 13 | -5.1619 5.0619 59.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 14 N -0.2145 40.7623 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 15 f -2.3917 25.3570 50.5822 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 16 g 14.6403 27.1902 46.1801 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 17 d -2.1921 29.0196 47.8672 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 18 W -0.0595 55.7857 46.6937 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 19 s 11.9603 23.9737 33.7172 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 20 c 14.3002 24.4154 31.0067 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 21 u 14.6105 25.6486 31.0067 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 22 3 -0.1756 26.8266 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 23 ~ 17.9380 29.5416 13.1304 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 24 # -0.4721 48.2353 45.8884 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 25 O -0.3172 40.8266 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 26 ` -2.4749 12.1668 14.0000 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 27 @ -2.3899 46.9080 50.3381 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 28 F -0.2911 29.7514 46.8399 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 29 S 2.6987 35.2549 43.5416 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 30 p 12.4332 26.0129 48.3770 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 31 “ -0.6008 16.2052 15.1734 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 32 % -2.4940 41.4940 48.0815 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 33 £ -2.5921 40.6123 52.6252 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 34 . 38.7216 7.2587 7.2587 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 35 2 -0.0952 26.1844 44.3469 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 36 5 -1.0419 29.0970 46.6937 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 37 m 13.5675 41.1864 33.4217 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 38 V -0.1288 33.7172 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 39 6 -0.1591 28.4417 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 40 w 14.4936 36.2783 32.1801 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 41 T 0.8280 38.6252 43.4734 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 42 M 0.4472 46.1801 46.6087 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 43 G -0.1148 36.4322 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 44 b -0.6659 29.0196 46.2566 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 45 9 0.0889 30.7150 47.0619 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 46 ; 12.9289 9.4563 37.1646 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 47 D -0.0668 33.9315 46.2566 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 48 L -0.1623 28.2917 45.9489 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 49 y 14.4335 29.5371 46.1801 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 50 ‘ 0.3680 6.2353 15.1734 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 51 \ 0.9811 24.7790 47.3535 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 52 R -1.0530 31.5203 46.6937 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 53 < 12.3171 19.3535 26.8266 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 54 4 -0.2551 32.9854 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 55 8 -1.4316 29.5371 46.6937 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 56 0 -0.0395 32.0982 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 57 A 2.4630 34.7413 42.0000 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 58 E 0.0738 30.3469 46.2566 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 59 B 0.0892 29.1734 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 60 v 14.0994 25.8031 31.3748 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 61 k -1.3701 26.1668 47.8672 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 62 J -0.0440 34.6594 47.5672 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 63 U -0.0774 37.3920 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 64 j 2.4969 19.9315 58.8567 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 65 ( -2.3469 16.9248 59.1522 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 66 7 0.2278 32.5437 45.3741 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 67 § -2.3030 28.0000 47.8672 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 68 $ -4.6115 31.6450 60.2521 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 69 € -1.0641 37.0881 46.6937 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 70 / -3.0182 26.4584 49.4087 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 71 C 0.0800 31.7346 45.3741 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 72 * -1.3154 26.1668 23.2420 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 73 ” -0.0135 16.6424 15.3877 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 74 ? 2.3264 25.8031 44.3469 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 75 { -2.2657 19.9315 59.1522 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 76 } -2.7719 19.9315 59.1522 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 77 , 40.2052 8.6465 14.0000 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 78 I 1.4712 28.3476 43.2416 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 79 ° -3.9484 19.9315 20.0853 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 80 K 0.1539 29.1734 46.8399 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 81 H 0.1595 37.2420 46.6937 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 82 q 13.4973 25.2850 46.8399 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 83 & -0.1204 34.7451 46.9080 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 84 ’ -0.2480 8.4926 15.1734 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 85 [ -0.1301 16.1930 57.9787 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 86 - 26.2527 18.5437 5.0619 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 87 Y 1.0969 34.2353 44.7150 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 88 Q -0.0335 48.2353 56.9591 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 89 " -0.1417 15.4773 18.5437 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 90 ! -2.5319 6.0853 48.5270 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 91 x 13.4469 31.0067 32.0339 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 92 ) -2.3586 16.3469 59.1522 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 93 = 13.0805 22.4322 24.3214 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 94 + 13.3315 24.4154 24.4154 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 95 X -0.1886 38.1116 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 96 » 13.6137 31.0028 25.6531 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 97 ' -2.7908 5.0619 15.1734 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 98 ¢ -4.8599 29.3832 48.2353 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 99 Z 0.0027 37.6056 45.5203 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 100 > 14.1228 17.3703 24.6297 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 101 ® -2.2681 41.3402 40.7623 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 102 © -2.0883 40.8266 38.4231 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 103 ] -0.2537 16.1930 57.9787 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 104 é -2.1138 29.0196 47.8672 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 105 z 14.1986 26.1668 31.0067 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 106 _ 48.0200 38.7790 7.1049 -Comic_Sans_MS.ttf 54 4 32.9854 45.5203 107 ¥ 2.6195 31.1560 42.8053 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 1 t 5.7172 24.4154 40.9766 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 2 h -1.3396 27.3402 48.0853 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 3 a 15.5247 27.8462 31.0067 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 4 n 14.3333 25.2031 32.0301 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 5 P 1.2638 25.7986 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 6 o 15.7273 28.2098 31.0067 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 7 e 15.3651 29.0196 31.0067 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 8 : 13.3864 6.5913 28.6598 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 9 r 15.0090 22.4322 31.3748 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 10 l -1.4337 5.9315 47.8672 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 11 i 3.2781 5.9315 42.5060 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 12 1 1.1105 17.7944 44.3469 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 13 | -4.2287 5.0619 59.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 14 N 0.9761 40.7623 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 15 f -1.2274 25.3570 50.5822 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 16 g 15.6923 27.1902 46.1801 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 17 d -1.2024 29.0196 47.8672 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 18 W 1.2211 55.7857 46.6937 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 19 s 13.3855 23.9737 33.7172 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 20 c 15.8507 24.4154 31.0067 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 21 u 15.5361 25.6486 31.0067 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 22 3 0.8694 26.8266 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 23 ~ 19.3332 29.5416 13.1304 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 24 # 0.7182 48.2353 45.8884 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 25 O 0.9537 40.8266 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 26 ` -1.2685 12.1668 14.0000 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 27 @ -1.3420 46.9080 50.3381 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 28 F 1.2639 29.7514 46.8399 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 29 S 3.4727 35.2549 43.5416 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 30 p 13.4560 26.0129 48.3770 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 31 “ 0.5115 16.2052 15.1734 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 32 % -1.4294 41.4940 48.0815 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 33 £ -1.1831 40.6123 52.6252 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 34 . 39.8056 7.2587 7.2587 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 35 2 1.0538 26.1844 44.3469 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 36 5 -0.0704 29.0970 46.6937 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 37 m 14.5265 41.1864 33.4217 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 38 V 1.0605 33.7172 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 39 6 1.3396 28.4417 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 40 w 15.9628 36.2783 32.1801 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 41 T 1.8264 38.6252 43.4734 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 42 M 1.0385 46.1801 46.6087 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 43 G 1.2199 36.4322 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 44 b 0.3560 29.0196 46.2566 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 45 9 1.3237 30.7150 47.0619 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 46 ; 13.6773 9.4563 37.1646 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 47 D 1.3606 33.9315 46.2566 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 48 L 1.2850 28.2917 45.9489 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 49 y 15.4460 29.5371 46.1801 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 50 ‘ 1.0479 6.2353 15.1734 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 51 \ 1.8866 24.7790 47.3535 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 52 R 0.1144 31.5203 46.6937 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 53 < 13.0872 19.3535 26.8266 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 54 4 1.1080 32.9854 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 55 8 -0.1442 29.5371 46.6937 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 56 0 1.0621 32.0982 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 57 A 3.4801 34.7413 42.0000 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 58 E 1.3663 30.3469 46.2566 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 59 B 1.0191 29.1734 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 60 v 15.7028 25.8031 31.3748 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 61 k -0.1442 26.1668 47.8672 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 62 J 1.0784 34.6594 47.5672 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 63 U 1.4380 37.3920 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 64 j 3.5940 19.9315 58.8567 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 65 ( -1.3473 16.9248 59.1522 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 66 7 1.6667 32.5437 45.3741 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 67 § -1.0877 28.0000 47.8672 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 68 $ -3.6648 31.6450 60.2521 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 69 € 0.0702 37.0881 46.6937 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 70 / -1.0737 26.4584 49.4087 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 71 C 0.9377 31.7346 45.3741 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 72 * 0.0620 26.1668 23.2420 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 73 ” 1.2889 16.6424 15.3877 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 74 ? 3.3578 25.8031 44.3469 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 75 { -1.1670 19.9315 59.1522 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 76 } -1.1248 19.9315 59.1522 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 77 , 41.4616 8.6465 14.0000 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 78 I 2.6361 28.3476 43.2416 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 79 ° -2.6962 19.9315 20.0853 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 80 K 1.5611 29.1734 46.8399 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 81 H 1.6178 37.2420 46.6937 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 82 q 14.6749 25.2850 46.8399 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 83 & 1.0594 34.7451 46.9080 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 84 ’ 1.1556 8.4926 15.1734 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 85 [ 1.3491 16.1930 57.9787 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 86 - 27.6072 18.5437 5.0619 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 87 Y 2.4280 34.2353 44.7150 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 88 Q 1.1675 48.2353 56.9591 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 89 " 1.0461 15.4773 18.5437 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 90 ! -1.0153 6.0853 48.5270 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 91 x 14.4393 31.0067 32.0339 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 92 ) -1.3939 16.3469 59.1522 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 93 = 14.4724 22.4322 24.3214 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 94 + 14.3621 24.4154 24.4154 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 95 X 1.5192 38.1116 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 96 » 14.8281 31.0028 25.6531 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 97 ' -1.7618 5.0619 15.1734 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 98 ¢ -3.6799 29.3832 48.2353 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 99 Z 1.2234 37.6056 45.5203 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 100 > 15.3130 17.3703 24.6297 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 101 ® -0.9884 41.3402 40.7623 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 102 © -1.2656 40.8266 38.4231 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 103 ] 1.3001 16.1930 57.9787 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 104 é -1.0804 29.0196 47.8672 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 105 z 15.8277 26.1668 31.0067 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 106 _ 49.4842 38.7790 7.1049 -Comic_Sans_MS.ttf 55 8 29.5371 46.6937 107 ¥ 3.7855 31.1560 42.8053 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 1 t 4.7835 24.4154 40.9766 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 2 h -2.3144 27.3402 48.0853 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 3 a 14.6508 27.8462 31.0067 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 4 n 13.3855 25.2031 32.0301 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 5 P -0.2169 25.7986 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 6 o 14.2100 28.2098 31.0067 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 7 e 14.3824 29.0196 31.0067 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 8 : 12.2312 6.5913 28.6598 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 9 r 13.9334 22.4322 31.3748 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 10 l -2.2772 5.9315 47.8672 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 11 i 2.0274 5.9315 42.5060 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 12 1 0.0609 17.7944 44.3469 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 13 | -5.0903 5.0619 59.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 14 N 0.1344 40.7623 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 15 f -2.3464 25.3570 50.5822 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 16 g 14.2250 27.1902 46.1801 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 17 d -2.6768 29.0196 47.8672 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 18 W -0.0207 55.7857 46.6937 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 19 s 12.1048 23.9737 33.7172 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 20 c 14.7542 24.4154 31.0067 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 21 u 14.5065 25.6486 31.0067 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 22 3 0.1599 26.8266 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 23 ~ 18.3627 29.5416 13.1304 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 24 # -0.2012 48.2353 45.8884 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 25 O -0.1742 40.8266 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 26 ` -2.3181 12.1668 14.0000 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 27 @ -1.9235 46.9080 50.3381 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 28 F -0.1494 29.7514 46.8399 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 29 S 2.5243 35.2549 43.5416 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 30 p 12.2398 26.0129 48.3770 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 31 “ -0.5352 16.2052 15.1734 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 32 % -2.7324 41.4940 48.0815 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 33 £ -2.3052 40.6123 52.6252 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 34 . 38.4756 7.2587 7.2587 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 35 2 0.2385 26.1844 44.3469 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 36 5 -1.1163 29.0970 46.6937 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 37 m 13.3646 41.1864 33.4217 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 38 V 0.2492 33.7172 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 39 6 0.4038 28.4417 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 40 w 14.2203 36.2783 32.1801 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 41 T 1.2611 38.6252 43.4734 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 42 M 0.1584 46.1801 46.6087 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 43 G 0.0917 36.4322 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 44 b -0.4406 29.0196 46.2566 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 45 9 -0.0871 30.7150 47.0619 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 46 ; 12.8694 9.4563 37.1646 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 47 D -0.0557 33.9315 46.2566 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 48 L -0.0584 28.2917 45.9489 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 49 y 14.3593 29.5371 46.1801 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 50 ‘ 0.0129 6.2353 15.1734 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 51 \ 0.7568 24.7790 47.3535 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 52 R -0.9836 31.5203 46.6937 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 53 < 12.1686 19.3535 26.8266 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 54 4 -0.0119 32.9854 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 55 8 -1.1140 29.5371 46.6937 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 56 0 0.0363 32.0982 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 57 A 2.3539 34.7413 42.0000 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 58 E 0.0519 30.3469 46.2566 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 59 B 0.2414 29.1734 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 60 v 14.4311 25.8031 31.3748 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 61 k -1.1599 26.1668 47.8672 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 62 J -0.3726 34.6594 47.5672 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 63 U -0.2887 37.3920 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 64 j 2.4590 19.9315 58.8567 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 65 ( -2.2758 16.9248 59.1522 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 66 7 0.0640 32.5437 45.3741 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 67 § -2.4787 28.0000 47.8672 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 68 $ -4.8842 31.6450 60.2521 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 69 € -1.1786 37.0881 46.6937 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 70 / -2.4692 26.4584 49.4087 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 71 C 0.0485 31.7346 45.3741 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 72 * -1.3777 26.1668 23.2420 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 73 ” 0.2942 16.6424 15.3877 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 74 ? 2.0415 25.8031 44.3469 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 75 { -2.4210 19.9315 59.1522 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 76 } -2.4832 19.9315 59.1522 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 77 , 40.4358 8.6465 14.0000 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 78 I 1.2125 28.3476 43.2416 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 79 ° -3.5720 19.9315 20.0853 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 80 K 0.1595 29.1734 46.8399 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 81 H 0.2470 37.2420 46.6937 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 82 q 13.3357 25.2850 46.8399 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 83 & -0.1322 34.7451 46.9080 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 84 ’ -0.1721 8.4926 15.1734 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 85 [ 0.1147 16.1930 57.9787 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 86 - 26.2628 18.5437 5.0619 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 87 Y 1.0159 34.2353 44.7150 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 88 Q 0.1228 48.2353 56.9591 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 89 " 0.2100 15.4773 18.5437 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 90 ! -2.0582 6.0853 48.5270 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 91 x 13.6907 31.0067 32.0339 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 92 ) -2.2514 16.3469 59.1522 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 93 = 13.2388 22.4322 24.3214 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 94 + 13.1616 24.4154 24.4154 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 95 X -0.2946 38.1116 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 96 » 13.5845 31.0028 25.6531 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 97 ' -3.0553 5.0619 15.1734 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 98 ¢ -5.2712 29.3832 48.2353 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 99 Z -0.1535 37.6056 45.5203 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 100 > 14.0303 17.3703 24.6297 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 101 ® -2.4855 41.3402 40.7623 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 102 © -1.9056 40.8266 38.4231 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 103 ] -0.1021 16.1930 57.9787 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 104 é -2.3377 29.0196 47.8672 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 105 z 14.2309 26.1668 31.0067 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 106 _ 47.9017 38.7790 7.1049 -Comic_Sans_MS.ttf 56 0 32.0982 45.5203 107 ¥ 2.6246 31.1560 42.8053 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 1 t 2.1357 24.4154 40.9766 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 2 h -5.1217 27.3402 48.0853 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 3 a 12.0883 27.8462 31.0067 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 4 n 11.2017 25.2031 32.0301 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 5 P -2.6117 25.7986 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 6 o 11.9152 28.2098 31.0067 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 7 e 12.5023 29.0196 31.0067 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 8 : 9.8102 6.5913 28.6598 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 9 r 11.8083 22.4322 31.3748 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 10 l -4.8169 5.9315 47.8672 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 11 i -0.5885 5.9315 42.5060 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 12 1 -2.0649 17.7944 44.3469 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 13 | -6.8007 5.0619 59.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 14 N -2.4469 40.7623 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 15 f -4.7731 25.3570 50.5822 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 16 g 11.9530 27.1902 46.1801 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 17 d -4.9949 29.0196 47.8672 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 18 W -2.1467 55.7857 46.6937 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 19 s 9.2624 23.9737 33.7172 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 20 c 11.9327 24.4154 31.0067 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 21 u 11.9898 25.6486 31.0067 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 22 3 -2.3181 26.8266 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 23 ~ 15.9067 29.5416 13.1304 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 24 # -2.7126 48.2353 45.8884 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 25 O -2.2384 40.8266 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 26 ` -4.9310 12.1668 14.0000 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 27 @ -4.9870 46.9080 50.3381 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 28 F -2.7733 29.7514 46.8399 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 29 S 0.3796 35.2549 43.5416 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 30 p 10.1724 26.0129 48.3770 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 31 “ -3.2808 16.2052 15.1734 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 32 % -4.8213 41.4940 48.0815 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 33 £ -4.5341 40.6123 52.6252 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 34 . 36.2096 7.2587 7.2587 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 35 2 -2.1160 26.1844 44.3469 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 36 5 -3.6015 29.0970 46.6937 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 37 m 11.2387 41.1864 33.4217 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 38 V -2.4676 33.7172 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 39 6 -2.1610 28.4417 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 40 w 11.7302 36.2783 32.1801 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 41 T -1.3418 38.6252 43.4734 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 42 M -2.2403 46.1801 46.6087 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 43 G -2.5294 36.4322 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 44 b -3.2123 29.0196 46.2566 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 45 9 -2.1865 30.7150 47.0619 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 46 ; 10.2620 9.4563 37.1646 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 47 D -2.7727 33.9315 46.2566 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 48 L -2.3025 28.2917 45.9489 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 49 y 12.1727 29.5371 46.1801 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 50 ‘ -2.3994 6.2353 15.1734 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 51 \ -1.5022 24.7790 47.3535 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 52 R -3.5018 31.5203 46.6937 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 53 < 12.1370 17.3703 24.6297 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 54 4 -2.2499 32.9854 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 55 8 -3.7029 29.5371 46.6937 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 56 0 -2.1138 32.0982 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 57 A -0.0522 34.7413 42.0000 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 58 E -2.5044 30.3469 46.2566 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 59 B -2.5225 29.1734 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 60 v 12.0800 25.8031 31.3748 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 61 k -3.4527 26.1668 47.8672 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 62 J -2.3774 34.6594 47.5672 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 63 U -2.2227 37.3920 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 64 j -0.0168 19.9315 58.8567 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 65 ( -4.7141 16.3469 59.1522 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 66 7 -1.9724 32.5437 45.3741 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 67 § -4.4356 28.0000 47.8672 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 68 $ -7.1811 31.6450 60.2521 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 69 € -3.4391 37.0881 46.6937 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 70 / -4.6079 26.4584 49.4087 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 71 C -2.2455 31.7346 45.3741 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 72 * -3.7775 26.1668 23.2420 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 73 ” -2.5589 16.6424 15.3877 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 74 ? -0.1503 25.8031 44.3469 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 75 { -4.3421 19.9315 59.1522 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 76 } -4.4510 19.9315 59.1522 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 77 , 38.1882 8.6465 14.0000 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 78 I -1.1966 28.3476 43.2416 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 79 ° -5.9125 19.9315 20.0853 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 80 K -2.2665 29.1734 46.8399 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 81 H -2.5431 37.2420 46.6937 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 82 q 11.3734 25.2850 46.8399 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 83 & -2.1023 34.7451 46.9080 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 84 ’ -2.5846 8.4926 15.1734 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 85 [ -2.0661 16.1930 57.9787 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 86 - 24.3965 18.5437 5.0619 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 87 Y -1.3050 34.2353 44.7150 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 88 Q -2.5851 48.2353 56.9591 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 89 " -2.3574 15.4773 18.5437 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 90 ! -4.5163 6.0853 48.5270 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 91 x 11.0955 31.0067 32.0339 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 92 ) -4.7809 16.9248 59.1522 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 93 = 10.7961 22.4322 24.3214 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 94 + 10.9048 24.4154 24.4154 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 95 X -2.2130 38.1116 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 96 » 11.1167 31.0028 25.6531 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 97 ' -5.5264 5.0619 15.1734 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 98 ¢ -7.4055 29.3832 48.2353 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 99 Z -2.4437 37.6056 45.5203 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 100 > 10.1100 19.3535 26.8266 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 101 ® -4.4628 41.3402 40.7623 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 102 © -4.9512 40.8266 38.4231 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 103 ] -2.3577 16.1930 57.9787 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 104 é -4.9023 29.0196 47.8672 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 105 z 12.1191 26.1668 31.0067 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 106 _ 45.9921 38.7790 7.1049 -Comic_Sans_MS.ttf 57 A 34.7413 42.0000 107 ¥ 0.4279 31.1560 42.8053 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 1 t 4.6428 24.4154 40.9766 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 2 h -2.4291 27.3402 48.0853 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 3 a 14.8079 27.8462 31.0067 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 4 n 13.3327 25.2031 32.0301 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 5 P 0.0070 25.7986 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 6 o 14.2659 28.2098 31.0067 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 7 e 14.6396 29.0196 31.0067 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 8 : 12.4541 6.5913 28.6598 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 9 r 14.4069 22.4322 31.3748 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 10 l -2.4659 5.9315 47.8672 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 11 i 2.0215 5.9315 42.5060 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 12 1 0.0000 17.7944 44.3469 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 13 | -4.9164 5.0619 59.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 14 N 0.0157 40.7623 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 15 f -2.1517 25.3570 50.5822 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 16 g 14.5706 27.1902 46.1801 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 17 d -2.3102 29.0196 47.8672 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 18 W 0.0319 55.7857 46.6937 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 19 s 11.6642 23.9737 33.7172 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 20 c 14.4363 24.4154 31.0067 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 21 u 14.5469 25.6486 31.0067 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 22 3 0.2068 26.8266 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 23 ~ 18.0373 29.5416 13.1304 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 24 # -0.4326 48.2353 45.8884 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 25 O -0.0647 40.8266 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 26 ` -2.0438 12.1668 14.0000 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 27 @ -2.5154 46.9080 50.3381 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 28 F -0.0909 29.7514 46.8399 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 29 S 2.2130 35.2549 43.5416 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 30 p 12.2034 26.0129 48.3770 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 31 “ -0.6096 16.2052 15.1734 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 32 % -2.5240 41.4940 48.0815 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 33 £ -2.0949 40.6123 52.6252 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 34 . 38.6406 7.2587 7.2587 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 35 2 0.2082 26.1844 44.3469 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 36 5 -1.2438 29.0970 46.6937 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 37 m 13.1502 41.1864 33.4217 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 38 V -0.3530 33.7172 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 39 6 0.1461 28.4417 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 40 w 14.5833 36.2783 32.1801 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 41 T 0.6051 38.6252 43.4734 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 42 M -0.1022 46.1801 46.6087 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 43 G 0.1528 36.4322 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 44 b -0.5642 29.0196 46.2566 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 45 9 0.1943 30.7150 47.0619 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 46 ; 12.7718 9.4563 37.1646 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 47 D -0.1882 33.9315 46.2566 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 48 L 0.1768 28.2917 45.9489 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 49 y 14.5983 29.5371 46.1801 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 50 ‘ -0.0135 6.2353 15.1734 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 51 \ 0.8734 24.7790 47.3535 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 52 R -1.4037 31.5203 46.6937 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 53 < 14.0882 17.3703 24.6297 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 54 4 0.0780 32.9854 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 55 8 -0.8166 29.5371 46.6937 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 56 0 -0.2172 32.0982 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 57 A 2.4939 34.7413 42.0000 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 58 E 0.1156 30.3469 46.2566 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 59 B -0.3132 29.1734 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 60 v 14.4289 25.8031 31.3748 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 61 k -1.2885 26.1668 47.8672 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 62 J 0.2841 34.6594 47.5672 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 63 U 0.0958 37.3920 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 64 j 2.3794 19.9315 58.8567 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 65 ( -2.1740 16.3469 59.1522 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 66 7 0.3834 32.5437 45.3741 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 67 § -2.4248 28.0000 47.8672 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 68 $ -4.4734 31.6450 60.2521 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 69 € -0.9121 37.0881 46.6937 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 70 / -2.5721 26.4584 49.4087 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 71 C -0.2071 31.7346 45.3741 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 72 * -1.3454 26.1668 23.2420 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 73 ” 0.1218 16.6424 15.3877 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 74 ? 1.9810 25.8031 44.3469 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 75 { -2.3919 19.9315 59.1522 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 76 } -2.2772 19.9315 59.1522 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 77 , 40.3283 8.6465 14.0000 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 78 I 1.3885 28.3476 43.2416 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 79 ° -3.4747 19.9315 20.0853 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 80 K -0.2026 29.1734 46.8399 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 81 H -0.0504 37.2420 46.6937 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 82 q 13.4004 25.2850 46.8399 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 83 & -0.4205 34.7451 46.9080 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 84 ’ -0.0280 8.4926 15.1734 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 85 [ -0.1111 16.1930 57.9787 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 86 - 26.4465 18.5437 5.0619 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 87 Y 1.0219 34.2353 44.7150 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 88 Q 0.1014 48.2353 56.9591 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 89 " 0.0455 15.4773 18.5437 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 90 ! -2.8038 6.0853 48.5270 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 91 x 13.6963 31.0067 32.0339 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 92 ) -2.3987 16.9248 59.1522 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 93 = 13.4260 22.4322 24.3214 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 94 + 13.2549 24.4154 24.4154 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 95 X -0.1329 38.1116 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 96 » 13.5705 31.0028 25.6531 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 97 ' -2.7799 5.0619 15.1734 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 98 ¢ -5.1697 29.3832 48.2353 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 99 Z -0.3089 37.6056 45.5203 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 100 > 12.2150 19.3535 26.8266 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 101 ® -2.1471 41.3402 40.7623 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 102 © -2.4572 40.8266 38.4231 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 103 ] -0.0249 16.1930 57.9787 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 104 é -2.2955 29.0196 47.8672 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 105 z 14.6425 26.1668 31.0067 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 106 _ 48.2001 38.7790 7.1049 -Comic_Sans_MS.ttf 58 E 30.3469 46.2566 107 ¥ 2.8777 31.1560 42.8053 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 1 t 4.5892 24.4154 40.9766 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 2 h -2.4197 27.3402 48.0853 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 3 a 14.4877 27.8462 31.0067 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 4 n 13.5752 25.2031 32.0301 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 5 P 0.0829 25.7986 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 6 o 14.3649 28.2098 31.0067 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 7 e 14.6406 29.0196 31.0067 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 8 : 12.0916 6.5913 28.6598 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 9 r 14.1358 22.4322 31.3748 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 10 l -2.4410 5.9315 47.8672 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 11 i 1.6944 5.9315 42.5060 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 12 1 0.2470 17.7944 44.3469 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 13 | -4.7928 5.0619 59.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 14 N 0.3065 40.7623 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 15 f -2.4382 25.3570 50.5822 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 16 g 14.4422 27.1902 46.1801 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 17 d -2.3409 29.0196 47.8672 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 18 W -0.0333 55.7857 46.6937 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 19 s 11.7965 23.9737 33.7172 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 20 c 14.6847 24.4154 31.0067 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 21 u 14.3680 25.6486 31.0067 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 22 3 -0.1548 26.8266 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 23 ~ 18.2454 29.5416 13.1304 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 24 # -0.5326 48.2353 45.8884 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 25 O -0.2145 40.8266 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 26 ` -2.1921 12.1668 14.0000 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 27 @ -2.2345 46.9080 50.3381 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 28 F -0.0867 29.7514 46.8399 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 29 S 2.4148 35.2549 43.5416 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 30 p 12.4971 26.0129 48.3770 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 31 “ -0.5847 16.2052 15.1734 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 32 % -2.5122 41.4940 48.0815 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 33 £ -2.4245 40.6123 52.6252 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 34 . 38.9515 7.2587 7.2587 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 35 2 -0.1214 26.1844 44.3469 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 36 5 -1.3385 29.0970 46.6937 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 37 m 13.2690 41.1864 33.4217 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 38 V -0.0826 33.7172 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 39 6 -0.0529 28.4417 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 40 w 14.3121 36.2783 32.1801 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 41 T 0.7807 38.6252 43.4734 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 42 M -0.0896 46.1801 46.6087 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 43 G -0.2341 36.4322 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 44 b -0.6329 29.0196 46.2566 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 45 9 -0.4180 30.7150 47.0619 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 46 ; 12.7162 9.4563 37.1646 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 47 D -0.1511 33.9315 46.2566 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 48 L 0.1379 28.2917 45.9489 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 49 y 14.5131 29.5371 46.1801 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 50 ‘ 0.1623 6.2353 15.1734 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 51 \ 0.5487 24.7790 47.3535 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 52 R -1.1947 31.5203 46.6937 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 53 < 14.0084 17.3703 24.6297 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 54 4 0.2817 32.9854 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 55 8 -1.4169 29.5371 46.6937 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 56 0 0.0850 32.0982 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 57 A 2.5114 34.7413 42.0000 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 58 E -0.3003 30.3469 46.2566 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 59 B -0.1827 29.1734 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 60 v 14.3905 25.8031 31.3748 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 61 k -0.9478 26.1668 47.8672 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 62 J -0.2151 34.6594 47.5672 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 63 U -0.0527 37.3920 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 64 j 2.5344 19.9315 58.8567 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 65 ( -2.1815 16.3469 59.1522 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 66 7 0.2295 32.5437 45.3741 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 67 § -2.2530 28.0000 47.8672 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 68 $ -5.0893 31.6450 60.2521 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 69 € -1.1605 37.0881 46.6937 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 70 / -2.4233 26.4584 49.4087 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 71 C 0.0730 31.7346 45.3741 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 72 * -1.3416 26.1668 23.2420 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 73 ” -0.3086 16.6424 15.3877 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 74 ? 2.0286 25.8031 44.3469 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 75 { -2.2560 19.9315 59.1522 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 76 } -2.5179 19.9315 59.1522 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 77 , 40.5481 8.6465 14.0000 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 78 I 1.2668 28.3476 43.2416 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 79 ° -3.7083 19.9315 20.0853 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 80 K 0.1399 29.1734 46.8399 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 81 H -0.2478 37.2420 46.6937 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 82 q 13.2114 25.2850 46.8399 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 83 & 0.0242 34.7451 46.9080 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 84 ’ -0.0710 8.4926 15.1734 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 85 [ 0.2358 16.1930 57.9787 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 86 - 26.4178 18.5437 5.0619 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 87 Y 0.9976 34.2353 44.7150 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 88 Q 0.0895 48.2353 56.9591 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 89 " 0.0704 15.4773 18.5437 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 90 ! -2.3987 6.0853 48.5270 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 91 x 13.5727 31.0067 32.0339 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 92 ) -2.2824 16.9248 59.1522 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 93 = 13.1523 22.4322 24.3214 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 94 + 13.6921 24.4154 24.4154 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 95 X -0.0205 38.1116 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 96 » 13.3505 31.0028 25.6531 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 97 ' -3.0067 5.0619 15.1734 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 98 ¢ -4.8430 29.3832 48.2353 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 99 Z 0.2289 37.6056 45.5203 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 100 > 12.2836 19.3535 26.8266 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 101 ® -2.0452 41.3402 40.7623 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 102 © -2.5684 40.8266 38.4231 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 103 ] 0.1571 16.1930 57.9787 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 104 é -2.5157 29.0196 47.8672 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 105 z 14.5767 26.1668 31.0067 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 106 _ 48.2734 38.7790 7.1049 -Comic_Sans_MS.ttf 59 B 29.1734 45.5203 107 ¥ 2.8319 31.1560 42.8053 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 1 t -9.7354 24.4154 40.9766 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 2 h -16.6250 27.3402 48.0853 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 3 a 0.0871 27.8462 31.0067 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 4 n -0.8855 25.2031 32.0301 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 5 P -14.5508 25.7986 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 6 o 0.1078 28.2098 31.0067 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 7 e 0.3211 29.0196 31.0067 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 8 : -2.1040 6.5913 28.6598 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 9 r -0.6256 22.4322 31.3748 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 10 l -16.9309 5.9315 47.8672 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 11 i -12.6058 5.9315 42.5060 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 12 1 -14.5980 17.7944 44.3469 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 13 | -19.5889 5.0619 59.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 14 N -14.4381 40.7623 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 15 f -17.0847 25.3570 50.5822 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 16 g -0.1887 27.1902 46.1801 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 17 d -16.7705 29.0196 47.8672 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 18 W -14.5267 55.7857 46.6937 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 19 s -2.3397 23.9737 33.7172 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 20 c -0.3754 24.4154 31.0067 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 21 u -0.0440 25.6486 31.0067 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 22 3 -14.3956 26.8266 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 23 ~ 3.6478 29.5416 13.1304 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 24 # -14.8713 48.2353 45.8884 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 25 O -14.4734 40.8266 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 26 ` -17.0231 12.1668 14.0000 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 27 @ -16.6877 46.9080 50.3381 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 28 F -14.4408 29.7514 46.8399 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 29 S -12.1152 35.2549 43.5416 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 30 p -2.0490 26.0129 48.3770 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 31 “ -15.3468 16.2052 15.1734 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 32 % -17.2388 41.4940 48.0815 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 33 £ -16.8188 40.6123 52.6252 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 34 . 23.8564 7.2587 7.2587 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 35 2 -14.5805 26.1844 44.3469 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 36 5 -15.8002 29.0970 46.6937 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 37 m -1.0213 41.1864 33.4217 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 38 V -14.3688 33.7172 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 39 6 -14.5266 28.4417 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 40 w -0.2169 36.2783 32.1801 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 41 T -13.8427 38.6252 43.4734 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 42 M -14.7142 46.1801 46.6087 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 43 G -14.3625 36.4322 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 44 b -15.0039 29.0196 46.2566 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 45 9 -14.2023 30.7150 47.0619 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 46 ; -1.8052 9.4563 37.1646 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 47 D -14.4636 33.9315 46.2566 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 48 L -14.5851 28.2917 45.9489 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 49 y -0.1582 29.5371 46.1801 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 50 ‘ -14.4622 6.2353 15.1734 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 51 \ -13.5951 24.7790 47.3535 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 52 R -15.9071 31.5203 46.6937 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 53 < -0.4555 17.3703 24.6297 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 54 4 -14.4849 32.9854 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 55 8 -15.7024 29.5371 46.6937 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 56 0 -14.4741 32.0982 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 57 A -12.0361 34.7413 42.0000 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 58 E -14.1233 30.3469 46.2566 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 59 B -14.8093 29.1734 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 60 v -0.1690 25.8031 31.3748 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 61 k -15.4016 26.1668 47.8672 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 62 J -14.5098 34.6594 47.5672 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 63 U -14.3964 37.3920 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 64 j -12.0604 19.9315 58.8567 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 65 ( -16.8979 16.3469 59.1522 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 66 7 -14.2723 32.5437 45.3741 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 67 § -16.9691 28.0000 47.8672 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 68 $ -19.2761 31.6450 60.2521 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 69 € -15.7992 37.0881 46.6937 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 70 / -17.2206 26.4584 49.4087 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 71 C -14.5385 31.7346 45.3741 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 72 * -15.8345 26.1668 23.2420 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 73 ” -14.5119 16.6424 15.3877 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 74 ? -11.8587 25.8031 44.3469 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 75 { -16.6349 19.9315 59.1522 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 76 } -16.9060 19.9315 59.1522 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 77 , 26.2128 8.6465 14.0000 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 78 I -13.2606 28.3476 43.2416 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 79 ° -18.1543 19.9315 20.0853 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 80 K -14.2064 29.1734 46.8399 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 81 H -14.5420 37.2420 46.6937 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 82 q -1.2143 25.2850 46.8399 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 83 & -14.6081 34.7451 46.9080 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 84 ’ -14.5182 8.4926 15.1734 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 85 [ -14.4206 16.1930 57.9787 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 86 - 11.7757 18.5437 5.0619 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 87 Y -13.1519 34.2353 44.7150 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 88 Q -14.4188 48.2353 56.9591 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 89 " -14.6850 15.4773 18.5437 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 90 ! -16.8148 6.0853 48.5270 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 91 x -0.9030 31.0067 32.0339 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 92 ) -16.9176 16.9248 59.1522 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 93 = -1.3809 22.4322 24.3214 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 94 + -1.1699 24.4154 24.4154 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 95 X -14.4255 38.1116 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 96 » -0.8870 31.0028 25.6531 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 97 ' -17.4186 5.0619 15.1734 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 98 ¢ -19.5793 29.3832 48.2353 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 99 Z -14.4028 37.6056 45.5203 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 100 > -2.3256 19.3535 26.8266 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 101 ® -16.7696 41.3402 40.7623 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 102 © -16.7817 40.8266 38.4231 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 103 ] -14.5734 16.1930 57.9787 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 104 é -16.7947 29.0196 47.8672 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 105 z 0.1705 26.1668 31.0067 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 106 _ 33.5133 38.7790 7.1049 -Comic_Sans_MS.ttf 60 v 25.8031 31.3748 107 ¥ -11.5294 31.1560 42.8053 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 1 t 5.6588 24.4154 40.9766 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 2 h -1.2213 27.3402 48.0853 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 3 a 15.7682 27.8462 31.0067 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 4 n 14.4519 25.2031 32.0301 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 5 P 1.2893 25.7986 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 6 o 15.6968 28.2098 31.0067 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 7 e 15.7499 29.0196 31.0067 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 8 : 13.3342 6.5913 28.6598 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 9 r 15.3606 22.4322 31.3748 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 10 l -1.2295 5.9315 47.8672 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 11 i 3.0532 5.9315 42.5060 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 12 1 0.9992 17.7944 44.3469 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 13 | -3.7521 5.0619 59.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 14 N 1.1274 40.7623 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 15 f -1.0446 25.3570 50.5822 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 16 g 15.8934 27.1902 46.1801 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 17 d -1.1832 29.0196 47.8672 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 18 W 1.0663 55.7857 46.6937 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 19 s 12.6061 23.9737 33.7172 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 20 c 15.5966 24.4154 31.0067 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 21 u 15.7293 25.6486 31.0067 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 22 3 1.2911 26.8266 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 23 ~ 19.3063 29.5416 13.1304 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 24 # 0.7363 48.2353 45.8884 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 25 O 1.2601 40.8266 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 26 ` -1.0062 12.1668 14.0000 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 27 @ -1.2091 46.9080 50.3381 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 28 F 1.4057 29.7514 46.8399 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 29 S 3.3775 35.2549 43.5416 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 30 p 13.8650 26.0129 48.3770 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 31 “ 0.4372 16.2052 15.1734 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 32 % -1.3206 41.4940 48.0815 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 33 £ -1.4204 40.6123 52.6252 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 34 . 39.8009 7.2587 7.2587 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 35 2 1.0016 26.1844 44.3469 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 36 5 0.0370 29.0970 46.6937 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 37 m 14.7299 41.1864 33.4217 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 38 V 1.2504 33.7172 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 39 6 1.2095 28.4417 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 40 w 15.5583 36.2783 32.1801 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 41 T 2.0451 38.6252 43.4734 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 42 M 1.1356 46.1801 46.6087 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 43 G 1.2365 36.4322 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 44 b 0.4516 29.0196 46.2566 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 45 9 1.0993 30.7150 47.0619 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 46 ; 13.9106 9.4563 37.1646 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 47 D 1.4575 33.9315 46.2566 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 48 L 1.2215 28.2917 45.9489 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 49 y 16.0995 29.5371 46.1801 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 50 ‘ 0.9943 6.2353 15.1734 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 51 \ 2.0170 24.7790 47.3535 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 52 R -0.0444 31.5203 46.6937 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 53 < 15.0901 17.3703 24.6297 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 54 4 1.2335 32.9854 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 55 8 0.1431 29.5371 46.6937 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 56 0 1.2955 32.0982 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 57 A 3.4937 34.7413 42.0000 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 58 E 1.2920 30.3469 46.2566 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 59 B 1.1744 29.1734 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 60 v 15.8510 25.8031 31.3748 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 61 k 0.0710 26.1668 47.8672 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 62 J 1.2939 34.6594 47.5672 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 63 U 1.3526 37.3920 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 64 j 3.5824 19.9315 58.8567 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 65 ( -1.0923 16.3469 59.1522 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 66 7 1.4078 32.5437 45.3741 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 67 § -1.2973 28.0000 47.8672 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 68 $ -3.7027 31.6450 60.2521 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 69 € -0.0105 37.0881 46.6937 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 70 / -1.5086 26.4584 49.4087 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 71 C 1.5341 31.7346 45.3741 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 72 * -0.2910 26.1668 23.2420 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 73 ” 1.0576 16.6424 15.3877 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 74 ? 3.2839 25.8031 44.3469 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 75 { -1.0845 19.9315 59.1522 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 76 } -1.0153 19.9315 59.1522 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 77 , 41.5989 8.6465 14.0000 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 78 I 2.5700 28.3476 43.2416 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 79 ° -2.6832 19.9315 20.0853 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 80 K 1.1161 29.1734 46.8399 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 81 H 1.3347 37.2420 46.6937 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 82 q 14.5161 25.2850 46.8399 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 83 & 1.1318 34.7451 46.9080 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 84 ’ 1.0863 8.4926 15.1734 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 85 [ 0.8323 16.1930 57.9787 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 86 - 27.2867 18.5437 5.0619 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 87 Y 2.0889 34.2353 44.7150 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 88 Q 1.3333 48.2353 56.9591 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 89 " 1.2703 15.4773 18.5437 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 90 ! -1.1664 6.0853 48.5270 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 91 x 14.4810 31.0067 32.0339 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 92 ) -1.3750 16.9248 59.1522 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 93 = 14.5757 22.4322 24.3214 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 94 + 14.5136 24.4154 24.4154 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 95 X 1.0220 38.1116 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 96 » 14.6797 31.0028 25.6531 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 97 ' -1.6929 5.0619 15.1734 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 98 ¢ -3.9335 29.3832 48.2353 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 99 Z 1.0915 37.6056 45.5203 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 100 > 13.3354 19.3535 26.8266 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 101 ® -1.3879 41.3402 40.7623 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 102 © -1.2570 40.8266 38.4231 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 103 ] 1.2091 16.1930 57.9787 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 104 é -1.0744 29.0196 47.8672 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 105 z 15.9711 26.1668 31.0067 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 106 _ 49.1669 38.7790 7.1049 -Comic_Sans_MS.ttf 61 k 26.1668 47.8672 107 ¥ 4.0637 31.1560 42.8053 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 1 t 4.6568 24.4154 40.9766 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 2 h -2.3937 27.3402 48.0853 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 3 a 14.5133 27.8462 31.0067 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 4 n 13.6577 25.2031 32.0301 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 5 P 0.1602 25.7986 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 6 o 14.2875 28.2098 31.0067 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 7 e 14.4864 29.0196 31.0067 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 8 : 12.1668 6.5913 28.6598 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 9 r 14.1224 22.4322 31.3748 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 10 l -2.4757 5.9315 47.8672 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 11 i 1.6079 5.9315 42.5060 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 12 1 -0.1728 17.7944 44.3469 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 13 | -5.0798 5.0619 59.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 14 N 0.1355 40.7623 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 15 f -2.4205 25.3570 50.5822 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 16 g 14.6627 27.1902 46.1801 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 17 d -2.4587 29.0196 47.8672 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 18 W 0.0385 55.7857 46.6937 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 19 s 12.0716 23.9737 33.7172 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 20 c 14.8887 24.4154 31.0067 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 21 u 14.0081 25.6486 31.0067 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 22 3 0.0955 26.8266 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 23 ~ 18.4100 29.5416 13.1304 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 24 # -0.4645 48.2353 45.8884 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 25 O -0.1607 40.8266 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 26 ` -2.2435 12.1668 14.0000 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 27 @ -2.1834 46.9080 50.3381 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 28 F -0.1626 29.7514 46.8399 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 29 S 2.3792 35.2549 43.5416 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 30 p 12.3409 26.0129 48.3770 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 31 “ -0.9151 16.2052 15.1734 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 32 % -2.4366 41.4940 48.0815 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 33 £ -2.2473 40.6123 52.6252 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 34 . 38.6750 7.2587 7.2587 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 35 2 -0.0087 26.1844 44.3469 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 36 5 -1.1508 29.0970 46.6937 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 37 m 13.4090 41.1864 33.4217 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 38 V 0.1269 33.7172 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 39 6 -0.2155 28.4417 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 40 w 14.5391 36.2783 32.1801 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 41 T 0.9491 38.6252 43.4734 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 42 M -0.0395 46.1801 46.6087 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 43 G -0.2255 36.4322 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 44 b -0.9119 29.0196 46.2566 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 45 9 -0.0847 30.7150 47.0619 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 46 ; 12.7904 9.4563 37.1646 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 47 D 0.0839 33.9315 46.2566 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 48 L 0.1920 28.2917 45.9489 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 49 y 14.4934 29.5371 46.1801 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 50 ‘ -0.2040 6.2353 15.1734 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 51 \ 0.6409 24.7790 47.3535 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 52 R -1.3379 31.5203 46.6937 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 53 < 13.9394 17.3703 24.6297 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 54 4 0.0578 32.9854 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 55 8 -1.3779 29.5371 46.6937 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 56 0 0.1414 32.0982 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 57 A 2.2658 34.7413 42.0000 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 58 E -0.1099 30.3469 46.2566 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 59 B 0.1478 29.1734 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 60 v 14.1805 25.8031 31.3748 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 61 k -1.1555 26.1668 47.8672 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 62 J -0.2190 34.6594 47.5672 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 63 U -0.0982 37.3920 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 64 j 2.5493 19.9315 58.8567 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 65 ( -2.5002 16.3469 59.1522 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 66 7 -0.0958 32.5437 45.3741 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 67 § -2.7370 28.0000 47.8672 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 68 $ -4.7965 31.6450 60.2521 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 69 € -1.1038 37.0881 46.6937 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 70 / -2.3974 26.4584 49.4087 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 71 C 0.0243 31.7346 45.3741 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 72 * -1.2391 26.1668 23.2420 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 73 ” 0.0724 16.6424 15.3877 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 74 ? 2.2619 25.8031 44.3469 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 75 { -2.3391 19.9315 59.1522 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 76 } -2.3536 19.9315 59.1522 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 77 , 40.7559 8.6465 14.0000 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 78 I 1.0928 28.3476 43.2416 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 79 ° -3.8821 19.9315 20.0853 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 80 K -0.0492 29.1734 46.8399 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 81 H -0.0306 37.2420 46.6937 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 82 q 13.4269 25.2850 46.8399 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 83 & 0.1141 34.7451 46.9080 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 84 ’ -0.2935 8.4926 15.1734 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 85 [ -0.0199 16.1930 57.9787 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 86 - 26.6412 18.5437 5.0619 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 87 Y 1.0955 34.2353 44.7150 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 88 Q -0.2767 48.2353 56.9591 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 89 " 0.0857 15.4773 18.5437 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 90 ! -2.1166 6.0853 48.5270 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 91 x 13.6385 31.0067 32.0339 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 92 ) -2.2055 16.9248 59.1522 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 93 = 13.0303 22.4322 24.3214 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 94 + 13.5970 24.4154 24.4154 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 95 X -0.0000 38.1116 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 96 » 13.7033 31.0028 25.6531 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 97 ' -2.8556 5.0619 15.1734 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 98 ¢ -5.0002 29.3832 48.2353 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 99 Z -0.1150 37.6056 45.5203 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 100 > 12.2886 19.3535 26.8266 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 101 ® -2.3371 41.3402 40.7623 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 102 © -2.4872 40.8266 38.4231 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 103 ] 0.0682 16.1930 57.9787 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 104 é -2.5296 29.0196 47.8672 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 105 z 14.4756 26.1668 31.0067 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 106 _ 48.3789 38.7790 7.1049 -Comic_Sans_MS.ttf 62 J 34.6594 47.5672 107 ¥ 2.5929 31.1560 42.8053 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 1 t 4.5882 24.4154 40.9766 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 2 h -2.3428 27.3402 48.0853 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 3 a 14.8629 27.8462 31.0067 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 4 n 13.5314 25.2031 32.0301 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 5 P 0.3152 25.7986 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 6 o 14.2382 28.2098 31.0067 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 7 e 14.5066 29.0196 31.0067 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 8 : 12.0477 6.5913 28.6598 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 9 r 13.9754 22.4322 31.3748 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 10 l -2.2993 5.9315 47.8672 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 11 i 1.9031 5.9315 42.5060 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 12 1 -0.1581 17.7944 44.3469 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 13 | -5.0742 5.0619 59.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 14 N 0.0689 40.7623 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 15 f -2.2949 25.3570 50.5822 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 16 g 14.2767 27.1902 46.1801 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 17 d -2.5630 29.0196 47.8672 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 18 W -0.0020 55.7857 46.6937 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 19 s 11.5081 23.9737 33.7172 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 20 c 14.3480 24.4154 31.0067 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 21 u 14.2294 25.6486 31.0067 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 22 3 0.0305 26.8266 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 23 ~ 18.1667 29.5416 13.1304 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 24 # -0.3983 48.2353 45.8884 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 25 O 0.2400 40.8266 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 26 ` -2.6424 12.1668 14.0000 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 27 @ -2.2626 46.9080 50.3381 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 28 F 0.0033 29.7514 46.8399 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 29 S 2.1778 35.2549 43.5416 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 30 p 12.6017 26.0129 48.3770 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 31 “ -0.8276 16.2052 15.1734 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 32 % -2.5390 41.4940 48.0815 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 33 £ -2.6218 40.6123 52.6252 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 34 . 38.5516 7.2587 7.2587 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 35 2 -0.1784 26.1844 44.3469 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 36 5 -0.9612 29.0970 46.6937 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 37 m 13.5692 41.1864 33.4217 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 38 V 0.0549 33.7172 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 39 6 -0.0881 28.4417 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 40 w 14.7057 36.2783 32.1801 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 41 T 0.9336 38.6252 43.4734 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 42 M 0.4524 46.1801 46.6087 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 43 G 0.0858 36.4322 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 44 b -0.4581 29.0196 46.2566 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 45 9 -0.0255 30.7150 47.0619 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 46 ; 12.6630 9.4563 37.1646 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 47 D -0.0516 33.9315 46.2566 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 48 L 0.1409 28.2917 45.9489 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 49 y 14.4870 29.5371 46.1801 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 50 ‘ 0.0027 6.2353 15.1734 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 51 \ 0.7946 24.7790 47.3535 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 52 R -1.2248 31.5203 46.6937 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 53 < 14.5912 17.3703 24.6297 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 54 4 0.2802 32.9854 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 55 8 -1.1675 29.5371 46.6937 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 56 0 0.0664 32.0982 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 57 A 2.1731 34.7413 42.0000 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 58 E 0.0459 30.3469 46.2566 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 59 B 0.1974 29.1734 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 60 v 14.7162 25.8031 31.3748 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 61 k -0.9961 26.1668 47.8672 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 62 J 0.0368 34.6594 47.5672 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 63 U -0.0122 37.3920 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 64 j 2.4125 19.9315 58.8567 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 65 ( -2.5623 16.3469 59.1522 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 66 7 -0.0715 32.5437 45.3741 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 67 § -2.5063 28.0000 47.8672 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 68 $ -5.1691 31.6450 60.2521 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 69 € -1.3165 37.0881 46.6937 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 70 / -2.7991 26.4584 49.4087 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 71 C 0.1485 31.7346 45.3741 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 72 * -1.1015 26.1668 23.2420 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 73 ” -0.1189 16.6424 15.3877 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 74 ? 2.2563 25.8031 44.3469 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 75 { -2.3402 19.9315 59.1522 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 76 } -2.3888 19.9315 59.1522 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 77 , 40.4848 8.6465 14.0000 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 78 I 1.1408 28.3476 43.2416 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 79 ° -3.6573 19.9315 20.0853 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 80 K 0.0084 29.1734 46.8399 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 81 H 0.0825 37.2420 46.6937 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 82 q 13.2629 25.2850 46.8399 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 83 & 0.3171 34.7451 46.9080 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 84 ’ -0.4615 8.4926 15.1734 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 85 [ 0.2191 16.1930 57.9787 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 86 - 26.8231 18.5437 5.0619 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 87 Y 1.0363 34.2353 44.7150 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 88 Q 0.2879 48.2353 56.9591 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 89 " 0.0996 15.4773 18.5437 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 90 ! -1.9998 6.0853 48.5270 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 91 x 13.6022 31.0067 32.0339 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 92 ) -2.6137 16.9248 59.1522 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 93 = 13.5123 22.4322 24.3214 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 94 + 13.4642 24.4154 24.4154 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 95 X 0.2495 38.1116 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 96 » 13.8249 31.0028 25.6531 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 97 ' -2.7957 5.0619 15.1734 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 98 ¢ -4.9390 29.3832 48.2353 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 99 Z -0.1710 37.6056 45.5203 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 100 > 12.2195 19.3535 26.8266 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 101 ® -2.2696 41.3402 40.7623 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 102 © -2.3343 40.8266 38.4231 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 103 ] -0.0371 16.1930 57.9787 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 104 é -2.3759 29.0196 47.8672 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 105 z 14.3570 26.1668 31.0067 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 106 _ 48.0627 38.7790 7.1049 -Comic_Sans_MS.ttf 63 U 37.3920 45.5203 107 ¥ 2.6397 31.1560 42.8053 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 1 t 2.0409 24.4154 40.9766 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 2 h -4.7088 27.3402 48.0853 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 3 a 12.0259 27.8462 31.0067 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 4 n 10.9174 25.2031 32.0301 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 5 P -2.2094 25.7986 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 6 o 11.9818 28.2098 31.0067 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 7 e 11.8898 29.0196 31.0067 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 8 : 9.6726 6.5913 28.6598 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 9 r 12.1959 22.4322 31.3748 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 10 l -4.6612 5.9315 47.8672 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 11 i -0.7552 5.9315 42.5060 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 12 1 -2.2310 17.7944 44.3469 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 13 | -7.7390 5.0619 59.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 14 N -2.7068 40.7623 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 15 f -4.8997 25.3570 50.5822 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 16 g 11.7971 27.1902 46.1801 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 17 d -4.7511 29.0196 47.8672 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 18 W -2.3713 55.7857 46.6937 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 19 s 9.3484 23.9737 33.7172 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 20 c 12.0825 24.4154 31.0067 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 21 u 12.0696 25.6486 31.0067 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 22 3 -2.4455 26.8266 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 23 ~ 15.6888 29.5416 13.1304 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 24 # -2.7803 48.2353 45.8884 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 25 O -2.7597 40.8266 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 26 ` -4.7545 12.1668 14.0000 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 27 @ -5.0929 46.9080 50.3381 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 28 F -2.3436 29.7514 46.8399 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 29 S 0.1078 35.2549 43.5416 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 30 p 9.7982 26.0129 48.3770 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 31 “ -3.4393 16.2052 15.1734 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 32 % -5.1382 41.4940 48.0815 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 33 £ -4.7636 40.6123 52.6252 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 34 . 35.8315 7.2587 7.2587 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 35 2 -2.4664 26.1844 44.3469 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 36 5 -3.8743 29.0970 46.6937 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 37 m 10.9895 41.1864 33.4217 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 38 V -2.0136 33.7172 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 39 6 -2.5081 28.4417 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 40 w 12.0204 36.2783 32.1801 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 41 T -1.8049 38.6252 43.4734 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 42 M -2.3248 46.1801 46.6087 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 43 G -2.6659 36.4322 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 44 b -3.4063 29.0196 46.2566 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 45 9 -2.5591 30.7150 47.0619 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 46 ; 10.0790 9.4563 37.1646 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 47 D -2.7141 33.9315 46.2566 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 48 L -2.2267 28.2917 45.9489 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 49 y 12.1033 29.5371 46.1801 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 50 ‘ -2.5539 6.2353 15.1734 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 51 \ -1.4839 24.7790 47.3535 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 52 R -3.6249 31.5203 46.6937 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 53 < 11.4740 17.3703 24.6297 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 54 4 -2.6238 32.9854 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 55 8 -3.7983 29.5371 46.6937 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 56 0 -2.5721 32.0982 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 57 A -0.0999 34.7413 42.0000 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 58 E -2.5388 30.3469 46.2566 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 59 B -2.6711 29.1734 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 60 v 12.2225 25.8031 31.3748 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 61 k -3.4043 26.1668 47.8672 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 62 J -2.6360 34.6594 47.5672 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 63 U -2.7102 37.3920 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 64 j -0.1567 19.9315 58.8567 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 65 ( -4.9956 16.3469 59.1522 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 66 7 -2.2493 32.5437 45.3741 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 67 § -4.9602 28.0000 47.8672 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 68 $ -7.6494 31.6450 60.2521 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 69 € -3.7627 37.0881 46.6937 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 70 / -5.4059 26.4584 49.4087 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 71 C -2.5071 31.7346 45.3741 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 72 * -3.7111 26.1668 23.2420 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 73 ” -2.5639 16.6424 15.3877 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 74 ? -0.3873 25.8031 44.3469 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 75 { -4.9316 19.9315 59.1522 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 76 } -4.9354 19.9315 59.1522 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 77 , 38.2002 8.6465 14.0000 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 78 I -1.1259 28.3476 43.2416 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 79 ° -6.2710 19.9315 20.0853 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 80 K -2.6719 29.1734 46.8399 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 81 H -2.6984 37.2420 46.6937 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 82 q 10.6863 25.2850 46.8399 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 83 & -2.5687 34.7451 46.9080 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 84 ’ -2.4112 8.4926 15.1734 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 85 [ -2.5689 16.1930 57.9787 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 86 - 24.1344 18.5437 5.0619 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 87 Y -1.4041 34.2353 44.7150 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 88 Q -2.4626 48.2353 56.9591 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 89 " -2.5010 15.4773 18.5437 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 90 ! -4.5082 6.0853 48.5270 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 91 x 10.9863 31.0067 32.0339 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 92 ) -4.6717 16.9248 59.1522 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 93 = 10.9497 22.4322 24.3214 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 94 + 10.9245 24.4154 24.4154 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 95 X -2.6638 38.1116 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 96 » 11.0067 31.0028 25.6531 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 97 ' -5.2471 5.0619 15.1734 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 98 ¢ -7.5280 29.3832 48.2353 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 99 Z -2.2036 37.6056 45.5203 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 100 > 9.4449 19.3535 26.8266 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 101 ® -4.5876 41.3402 40.7623 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 102 © -4.7785 40.8266 38.4231 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 103 ] -2.3324 16.1930 57.9787 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 104 é -4.9592 29.0196 47.8672 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 105 z 12.0114 26.1668 31.0067 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 106 _ 45.3614 38.7790 7.1049 -Comic_Sans_MS.ttf 64 j 19.9315 58.8567 107 ¥ 0.0144 31.1560 42.8053 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 1 t 6.8549 24.4154 40.9766 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 2 h -0.0454 27.3402 48.0853 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 3 a 16.5495 27.8462 31.0067 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 4 n 15.6033 25.2031 32.0301 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 5 P 2.3377 25.7986 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 6 o 16.6153 28.2098 31.0067 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 7 e 17.0919 29.0196 31.0067 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 8 : 14.4825 6.5913 28.6598 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 9 r 16.7273 22.4322 31.3748 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 10 l 0.0829 5.9315 47.8672 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 11 i 3.9232 5.9315 42.5060 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 12 1 2.3588 17.7944 44.3469 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 13 | -2.4254 5.0619 59.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 14 N 2.5420 40.7623 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 15 f 0.0871 25.3570 50.5822 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 16 g 16.7062 27.1902 46.1801 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 17 d -0.1742 29.0196 47.8672 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 18 W 2.4910 55.7857 46.6937 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 19 s 14.2447 23.9737 33.7172 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 20 c 16.9409 24.4154 31.0067 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 21 u 16.6576 25.6486 31.0067 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 22 3 2.5261 26.8266 45.5203 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 23 ~ 20.5766 29.5416 13.1304 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 24 # 2.1400 48.2353 45.8884 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 25 O 2.1999 40.8266 45.5203 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 26 ` -0.3509 12.1668 14.0000 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 27 @ 0.0784 46.9080 50.3381 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 28 F 2.1807 29.7514 46.8399 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 29 S 4.5647 35.2549 43.5416 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 30 p 14.7770 26.0129 48.3770 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 31 “ 1.6789 16.2052 15.1734 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 32 % -0.0205 41.4940 48.0815 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 33 £ -0.0027 40.6123 52.6252 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 34 . 41.1333 7.2587 7.2587 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 35 2 2.5915 26.1844 44.3469 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 36 5 1.2397 29.0970 46.6937 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 37 m 15.5536 41.1864 33.4217 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 38 V 2.2695 33.7172 45.5203 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 39 6 2.1408 28.4417 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 40 w 16.8134 36.2783 32.1801 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 41 T 3.1370 38.6252 43.4734 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 42 M 2.3525 46.1801 46.6087 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 43 G 2.2083 36.4322 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 44 b 1.3562 29.0196 46.2566 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 45 9 2.2552 30.7150 47.0619 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 46 ; 15.0827 9.4563 37.1646 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 47 D 2.3738 33.9315 46.2566 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 48 L 2.4280 28.2917 45.9489 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 49 y 17.1993 29.5371 46.1801 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 50 ‘ 2.2468 6.2353 15.1734 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 51 \ 3.4197 24.7790 47.3535 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 52 R 1.1675 31.5203 46.6937 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 53 < 14.5168 19.3535 26.8266 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 54 4 2.1481 32.9854 45.5203 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 55 8 1.1923 29.5371 46.6937 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 56 0 2.2341 32.0982 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 57 A 4.7749 34.7413 42.0000 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 58 E 2.1762 30.3469 46.2566 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 59 B 2.0828 29.1734 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 60 v 16.7783 25.8031 31.3748 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 61 k 1.2536 26.1668 47.8672 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 62 J 2.3060 34.6594 47.5672 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 63 U 2.1810 37.3920 45.5203 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 64 j 4.7528 19.9315 58.8567 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 65 ( -0.1272 16.9248 59.1522 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 66 7 2.2807 32.5437 45.3741 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 67 § 0.0455 28.0000 47.8672 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 68 $ -2.2693 31.6450 60.2521 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 69 € 1.2945 37.0881 46.6937 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 70 / -0.1189 26.4584 49.4087 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 71 C 2.5014 31.7346 45.3741 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 72 * 0.7690 26.1668 23.2420 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 73 ” 2.3469 16.6424 15.3877 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 74 ? 4.7249 25.8031 44.3469 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 75 { 0.0070 19.9315 59.1522 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 76 } 0.1780 19.9315 59.1522 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 77 , 42.6500 8.6465 14.0000 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 78 I 3.7036 28.3476 43.2416 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 79 ° -1.5350 19.9315 20.0853 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 80 K 2.4582 29.1734 46.8399 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 81 H 2.1786 37.2420 46.6937 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 82 q 15.3739 25.2850 46.8399 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 83 & 2.6754 34.7451 46.9080 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 84 ’ 2.2300 8.4926 15.1734 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 85 [ 2.3598 16.1930 57.9787 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 86 - 28.5972 18.5437 5.0619 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 87 Y 3.4202 34.2353 44.7150 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 88 Q 2.4378 48.2353 56.9591 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 89 " 2.2151 15.4773 18.5437 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 90 ! 0.1112 6.0853 48.5270 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 91 x 15.7437 31.0067 32.0339 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 92 ) 0.0055 16.3469 59.1522 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 93 = 15.8745 22.4322 24.3214 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 94 + 15.5212 24.4154 24.4154 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 95 X 2.3126 38.1116 45.5203 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 96 » 15.7619 31.0028 25.6531 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 97 ' -0.9176 5.0619 15.1734 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 98 ¢ -2.8007 29.3832 48.2353 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 99 Z 2.5373 37.6056 45.5203 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 100 > 16.6429 17.3703 24.6297 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 101 ® -0.0903 41.3402 40.7623 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 102 © -0.0815 40.8266 38.4231 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 103 ] 2.4123 16.1930 57.9787 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 104 é 0.1721 29.0196 47.8672 -Comic_Sans_MS.ttf 65 ( 16.3469 59.1522 105 z 16.9686 26.1668 31.0067 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 106 _ 50.4424 38.7790 7.1049 -Comic_Sans_MS.ttf 65 ( 16.9248 59.1522 107 ¥ 5.0675 31.1560 42.8053 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 1 t 4.3366 24.4154 40.9766 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 2 h -2.3247 27.3402 48.0853 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 3 a 14.3170 27.8462 31.0067 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 4 n 13.5548 25.2031 32.0301 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 5 P -0.0749 25.7986 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 6 o 14.3653 28.2098 31.0067 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 7 e 14.5018 29.0196 31.0067 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 8 : 12.2339 6.5913 28.6598 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 9 r 13.6614 22.4322 31.3748 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 10 l -2.4885 5.9315 47.8672 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 11 i 1.9372 5.9315 42.5060 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 12 1 -0.2000 17.7944 44.3469 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 13 | -5.4625 5.0619 59.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 14 N -0.2416 40.7623 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 15 f -2.4091 25.3570 50.5822 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 16 g 14.2484 27.1902 46.1801 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 17 d -2.2544 29.0196 47.8672 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 18 W -0.0247 55.7857 46.6937 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 19 s 11.7966 23.9737 33.7172 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 20 c 13.9375 24.4154 31.0067 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 21 u 14.2062 25.6486 31.0067 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 22 3 -0.1220 26.8266 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 23 ~ 18.2634 29.5416 13.1304 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 24 # -0.6000 48.2353 45.8884 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 25 O -0.1725 40.8266 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 26 ` -2.2030 12.1668 14.0000 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 27 @ -2.3285 46.9080 50.3381 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 28 F 0.1106 29.7514 46.8399 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 29 S 2.0636 35.2549 43.5416 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 30 p 12.2080 26.0129 48.3770 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 31 “ -0.6284 16.2052 15.1734 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 32 % -2.7203 41.4940 48.0815 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 33 £ -2.4102 40.6123 52.6252 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 34 . 38.7959 7.2587 7.2587 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 35 2 -0.3959 26.1844 44.3469 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 36 5 -1.5586 29.0970 46.6937 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 37 m 13.1279 41.1864 33.4217 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 38 V 0.2321 33.7172 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 39 6 0.1075 28.4417 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 40 w 14.2818 36.2783 32.1801 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 41 T 0.5181 38.6252 43.4734 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 42 M -0.1951 46.1801 46.6087 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 43 G -0.1546 36.4322 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 44 b -0.6179 29.0196 46.2566 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 45 9 0.1862 30.7150 47.0619 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 46 ; 12.7320 9.4563 37.1646 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 47 D -0.2035 33.9315 46.2566 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 48 L -0.4016 28.2917 45.9489 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 49 y 14.3178 29.5371 46.1801 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 50 ‘ 0.0411 6.2353 15.1734 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 51 \ 0.5001 24.7790 47.3535 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 52 R -1.3228 31.5203 46.6937 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 53 < 12.1073 19.3535 26.8266 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 54 4 -0.2763 32.9854 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 55 8 -1.2275 29.5371 46.6937 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 56 0 0.0878 32.0982 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 57 A 2.0933 34.7413 42.0000 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 58 E 0.2716 30.3469 46.2566 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 59 B -0.0401 29.1734 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 60 v 14.5046 25.8031 31.3748 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 61 k -1.1811 26.1668 47.8672 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 62 J 0.2245 34.6594 47.5672 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 63 U -0.0622 37.3920 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 64 j 2.2414 19.9315 58.8567 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 65 ( -2.4514 16.9248 59.1522 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 66 7 -0.0500 32.5437 45.3741 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 67 § -2.2259 28.0000 47.8672 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 68 $ -4.8405 31.6450 60.2521 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 69 € -1.3851 37.0881 46.6937 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 70 / -2.4561 26.4584 49.4087 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 71 C -0.0791 31.7346 45.3741 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 72 * -1.6347 26.1668 23.2420 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 73 ” -0.0698 16.6424 15.3877 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 74 ? 1.7991 25.8031 44.3469 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 75 { -2.3355 19.9315 59.1522 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 76 } -2.2398 19.9315 59.1522 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 77 , 40.2329 8.6465 14.0000 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 78 I 1.0170 28.3476 43.2416 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 79 ° -3.7475 19.9315 20.0853 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 80 K -0.0989 29.1734 46.8399 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 81 H 0.0338 37.2420 46.6937 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 82 q 13.2720 25.2850 46.8399 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 83 & -0.2682 34.7451 46.9080 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 84 ’ -0.1569 8.4926 15.1734 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 85 [ -0.3242 16.1930 57.9787 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 86 - 26.3112 18.5437 5.0619 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 87 Y 1.0332 34.2353 44.7150 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 88 Q -0.0631 48.2353 56.9591 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 89 " -0.0793 15.4773 18.5437 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 90 ! -2.2165 6.0853 48.5270 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 91 x 13.3031 31.0067 32.0339 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 92 ) -2.6250 16.3469 59.1522 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 93 = 13.0677 22.4322 24.3214 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 94 + 13.4852 24.4154 24.4154 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 95 X 0.0281 38.1116 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 96 » 13.7159 31.0028 25.6531 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 97 ' -3.1928 5.0619 15.1734 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 98 ¢ -5.3521 29.3832 48.2353 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 99 Z -0.3152 37.6056 45.5203 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 100 > 14.0399 17.3703 24.6297 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 101 ® -2.3762 41.3402 40.7623 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 102 © -2.6150 40.8266 38.4231 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 103 ] 0.0052 16.1930 57.9787 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 104 é -2.6743 29.0196 47.8672 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 105 z 14.1599 26.1668 31.0067 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 106 _ 48.1478 38.7790 7.1049 -Comic_Sans_MS.ttf 66 7 32.5437 45.3741 107 ¥ 2.5807 31.1560 42.8053 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 1 t 6.8847 24.4154 40.9766 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 2 h -0.0144 27.3402 48.0853 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 3 a 16.5958 27.8462 31.0067 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 4 n 15.8372 25.2031 32.0301 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 5 P 2.1947 25.7986 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 6 o 16.9347 28.2098 31.0067 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 7 e 16.8378 29.0196 31.0067 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 8 : 14.4772 6.5913 28.6598 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 9 r 16.3825 22.4322 31.3748 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 10 l -0.2183 5.9315 47.8672 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 11 i 3.8403 5.9315 42.5060 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 12 1 2.3496 17.7944 44.3469 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 13 | -2.5254 5.0619 59.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 14 N 2.3739 40.7623 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 15 f -0.3495 25.3570 50.5822 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 16 g 16.6482 27.1902 46.1801 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 17 d 0.0350 29.0196 47.8672 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 18 W 2.2733 55.7857 46.6937 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 19 s 14.0304 23.9737 33.7172 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 20 c 16.7468 24.4154 31.0067 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 21 u 17.1177 25.6486 31.0067 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 22 3 2.2397 26.8266 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 23 ~ 20.4130 29.5416 13.1304 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 24 # 2.1584 48.2353 45.8884 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 25 O 2.5175 40.8266 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 26 ` 0.0527 12.1668 14.0000 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 27 @ -0.2131 46.9080 50.3381 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 28 F 2.5108 29.7514 46.8399 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 29 S 4.4128 35.2549 43.5416 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 30 p 14.8050 26.0129 48.3770 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 31 “ 1.7324 16.2052 15.1734 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 32 % -0.3998 41.4940 48.0815 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 33 £ -0.0644 40.6123 52.6252 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 34 . 40.9470 7.2587 7.2587 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 35 2 2.4876 26.1844 44.3469 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 36 5 1.0808 29.0970 46.6937 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 37 m 15.5565 41.1864 33.4217 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 38 V 2.3498 33.7172 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 39 6 2.5939 28.4417 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 40 w 16.7030 36.2783 32.1801 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 41 T 2.8840 38.6252 43.4734 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 42 M 2.4302 46.1801 46.6087 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 43 G 2.2862 36.4322 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 44 b 2.0604 29.0196 46.2566 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 45 9 2.4423 30.7150 47.0619 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 46 ; 14.9153 9.4563 37.1646 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 47 D 2.2969 33.9315 46.2566 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 48 L 2.2842 28.2917 45.9489 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 49 y 17.2005 29.5371 46.1801 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 50 ‘ 2.6813 6.2353 15.1734 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 51 \ 2.8784 24.7790 47.3535 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 52 R 1.5917 31.5203 46.6937 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 53 < 14.5243 19.3535 26.8266 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 54 4 2.2786 32.9854 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 55 8 1.2642 29.5371 46.6937 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 56 0 2.2727 32.0982 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 57 A 4.7186 34.7413 42.0000 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 58 E 2.2867 30.3469 46.2566 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 59 B 2.1676 29.1734 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 60 v 17.1335 25.8031 31.3748 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 61 k 0.9566 26.1668 47.8672 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 62 J 2.2429 34.6594 47.5672 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 63 U 2.4299 37.3920 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 64 j 4.7539 19.9315 58.8567 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 65 ( -0.0949 16.9248 59.1522 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 66 7 2.7432 32.5437 45.3741 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 67 § -0.0048 28.0000 47.8672 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 68 $ -2.4488 31.6450 60.2521 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 69 € 1.1210 37.0881 46.6937 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 70 / -0.1939 26.4584 49.4087 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 71 C 2.4045 31.7346 45.3741 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 72 * 0.9395 26.1668 23.2420 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 73 ” 2.7789 16.6424 15.3877 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 74 ? 4.4945 25.8031 44.3469 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 75 { -0.2323 19.9315 59.1522 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 76 } 0.1224 19.9315 59.1522 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 77 , 42.9333 8.6465 14.0000 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 78 I 3.4559 28.3476 43.2416 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 79 ° -1.3151 19.9315 20.0853 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 80 K 2.4641 29.1734 46.8399 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 81 H 2.3035 37.2420 46.6937 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 82 q 15.6944 25.2850 46.8399 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 83 & 2.3490 34.7451 46.9080 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 84 ’ 2.1790 8.4926 15.1734 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 85 [ 2.3941 16.1930 57.9787 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 86 - 28.8526 18.5437 5.0619 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 87 Y 3.8160 34.2353 44.7150 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 88 Q 2.2618 48.2353 56.9591 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 89 " 2.0016 15.4773 18.5437 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 90 ! -0.0770 6.0853 48.5270 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 91 x 15.9599 31.0067 32.0339 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 92 ) -0.2379 16.3469 59.1522 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 93 = 15.6120 22.4322 24.3214 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 94 + 15.6639 24.4154 24.4154 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 95 X 2.5152 38.1116 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 96 » 15.8119 31.0028 25.6531 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 97 ' -0.6388 5.0619 15.1734 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 98 ¢ -2.4848 29.3832 48.2353 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 99 Z 2.2993 37.6056 45.5203 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 100 > 16.7645 17.3703 24.6297 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 101 ® -0.2819 41.3402 40.7623 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 102 © -0.1533 40.8266 38.4231 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 103 ] 2.4970 16.1930 57.9787 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 104 é -0.0010 29.0196 47.8672 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 105 z 16.6954 26.1668 31.0067 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 106 _ 50.0901 38.7790 7.1049 -Comic_Sans_MS.ttf 67 § 28.0000 47.8672 107 ¥ 4.7876 31.1560 42.8053 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 1 t 9.3910 24.4154 40.9766 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 2 h 2.4580 27.3402 48.0853 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 3 a 19.4630 27.8462 31.0067 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 4 n 18.3294 25.2031 32.0301 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 5 P 4.7696 25.7986 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 6 o 19.6971 28.2098 31.0067 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 7 e 19.4013 29.0196 31.0067 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 8 : 17.2913 6.5913 28.6598 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 9 r 18.8670 22.4322 31.3748 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 10 l 2.4129 5.9315 47.8672 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 11 i 6.7213 5.9315 42.5060 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 12 1 5.1183 17.7944 44.3469 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 13 | -0.1684 5.0619 59.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 14 N 4.9420 40.7623 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 15 f 2.5841 25.3570 50.5822 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 16 g 19.1590 27.1902 46.1801 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 17 d 2.4681 29.0196 47.8672 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 18 W 4.7370 55.7857 46.6937 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 19 s 16.8634 23.9737 33.7172 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 20 c 19.2738 24.4154 31.0067 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 21 u 19.3916 25.6486 31.0067 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 22 3 4.8137 26.8266 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 23 ~ 23.3168 29.5416 13.1304 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 24 # 4.5809 48.2353 45.8884 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 25 O 5.1830 40.8266 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 26 ` 2.5374 12.1668 14.0000 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 27 @ 2.4260 46.9080 50.3381 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 28 F 5.0385 29.7514 46.8399 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 29 S 7.2200 35.2549 43.5416 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 30 p 17.3115 26.0129 48.3770 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 31 “ 4.0245 16.2052 15.1734 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 32 % 2.5032 41.4940 48.0815 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 33 £ 2.4717 40.6123 52.6252 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 34 . 43.6266 7.2587 7.2587 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 35 2 4.9059 26.1844 44.3469 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 36 5 4.1133 29.0970 46.6937 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 37 m 18.5206 41.1864 33.4217 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 38 V 4.6722 33.7172 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 39 6 4.9590 28.4417 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 40 w 19.4315 36.2783 32.1801 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 41 T 5.9791 38.6252 43.4734 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 42 M 5.2214 46.1801 46.6087 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 43 G 5.0672 36.4322 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 44 b 3.9412 29.0196 46.2566 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 45 9 4.8426 30.7150 47.0619 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 46 ; 17.7486 9.4563 37.1646 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 47 D 5.1386 33.9315 46.2566 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 48 L 4.9507 28.2917 45.9489 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 49 y 19.4041 29.5371 46.1801 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 50 ‘ 5.0759 6.2353 15.1734 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 51 \ 5.7322 24.7790 47.3535 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 52 R 3.6136 31.5203 46.6937 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 53 < 17.0749 19.3535 26.8266 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 54 4 5.0578 32.9854 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 55 8 3.5333 29.5371 46.6937 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 56 0 4.8271 32.0982 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 57 A 7.5034 34.7413 42.0000 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 58 E 5.0241 30.3469 46.2566 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 59 B 4.8314 29.1734 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 60 v 19.5176 25.8031 31.3748 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 61 k 3.6158 26.1668 47.8672 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 62 J 4.9374 34.6594 47.5672 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 63 U 4.6325 37.3920 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 64 j 7.5384 19.9315 58.8567 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 65 ( 2.5133 16.9248 59.1522 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 66 7 4.9594 32.5437 45.3741 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 67 § 2.7910 28.0000 47.8672 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 68 $ 0.0312 31.6450 60.2521 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 69 € 4.0632 37.0881 46.6937 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 70 / 2.3663 26.4584 49.4087 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 71 C 4.9449 31.7346 45.3741 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 72 * 3.5345 26.1668 23.2420 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 73 ” 5.2575 16.6424 15.3877 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 74 ? 7.0254 25.8031 44.3469 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 75 { 2.6087 19.9315 59.1522 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 76 } 2.5695 19.9315 59.1522 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 77 , 45.7434 8.6465 14.0000 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 78 I 5.9267 28.3476 43.2416 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 79 ° 1.0016 19.9315 20.0853 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 80 K 5.2673 29.1734 46.8399 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 81 H 4.9063 37.2420 46.6937 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 82 q 18.3532 25.2850 46.8399 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 83 & 4.7366 34.7451 46.9080 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 84 ’ 5.2026 8.4926 15.1734 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 85 [ 4.8605 16.1930 57.9787 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 86 - 31.2313 18.5437 5.0619 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 87 Y 6.1776 34.2353 44.7150 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 88 Q 4.8531 48.2353 56.9591 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 89 " 4.6579 15.4773 18.5437 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 90 ! 2.5910 6.0853 48.5270 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 91 x 18.6931 31.0067 32.0339 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 92 ) 2.6122 16.3469 59.1522 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 93 = 18.2188 22.4322 24.3214 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 94 + 17.9697 24.4154 24.4154 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 95 X 4.7682 38.1116 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 96 » 18.2537 31.0028 25.6531 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 97 ' 1.8754 5.0619 15.1734 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 98 ¢ -0.5430 29.3832 48.2353 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 99 Z 5.1232 37.6056 45.5203 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 100 > 19.0172 17.3703 24.6297 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 101 ® 2.7242 41.3402 40.7623 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 102 © 2.9895 40.8266 38.4231 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 103 ] 4.8643 16.1930 57.9787 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 104 é 2.6987 29.0196 47.8672 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 105 z 19.6893 26.1668 31.0067 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 106 _ 52.9718 38.7790 7.1049 -Comic_Sans_MS.ttf 68 $ 31.6450 60.2521 107 ¥ 7.3854 31.1560 42.8053 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 1 t 5.7533 24.4154 40.9766 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 2 h -1.1123 27.3402 48.0853 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 3 a 15.6916 27.8462 31.0067 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 4 n 14.4872 25.2031 32.0301 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 5 P 1.1786 25.7986 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 6 o 15.6385 28.2098 31.0067 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 7 e 15.6871 29.0196 31.0067 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 8 : 13.4641 6.5913 28.6598 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 9 r 15.7153 22.4322 31.3748 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 10 l -1.1251 5.9315 47.8672 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 11 i 3.1110 5.9315 42.5060 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 12 1 0.9975 17.7944 44.3469 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 13 | -3.4225 5.0619 59.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 14 N 1.3260 40.7623 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 15 f -1.1145 25.3570 50.5822 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 16 g 15.8186 27.1902 46.1801 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 17 d -1.1095 29.0196 47.8672 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 18 W 1.1450 55.7857 46.6937 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 19 s 13.1216 23.9737 33.7172 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 20 c 15.7769 24.4154 31.0067 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 21 u 15.7342 25.6486 31.0067 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 22 3 1.1363 26.8266 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 23 ~ 19.4588 29.5416 13.1304 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 24 # 1.0003 48.2353 45.8884 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 25 O 1.4085 40.8266 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 26 ` -1.2103 12.1668 14.0000 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 27 @ -0.9722 46.9080 50.3381 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 28 F 1.2574 29.7514 46.8399 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 29 S 3.4721 35.2549 43.5416 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 30 p 13.5157 26.0129 48.3770 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 31 “ 0.7338 16.2052 15.1734 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 32 % -1.4034 41.4940 48.0815 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 33 £ -1.3014 40.6123 52.6252 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 34 . 39.9209 7.2587 7.2587 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 35 2 1.3718 26.1844 44.3469 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 36 5 -0.1432 29.0970 46.6937 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 37 m 14.9040 41.1864 33.4217 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 38 V 1.4094 33.7172 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 39 6 1.1724 28.4417 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 40 w 15.6282 36.2783 32.1801 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 41 T 1.7169 38.6252 43.4734 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 42 M 0.9290 46.1801 46.6087 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 43 G 1.1545 36.4322 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 44 b 0.7792 29.0196 46.2566 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 45 9 1.1717 30.7150 47.0619 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 46 ; 13.7549 9.4563 37.1646 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 47 D 1.2099 33.9315 46.2566 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 48 L 1.0919 28.2917 45.9489 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 49 y 15.7714 29.5371 46.1801 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 50 ‘ 1.4306 6.2353 15.1734 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 51 \ 1.8574 24.7790 47.3535 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 52 R 0.2789 31.5203 46.6937 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 53 < 13.2771 19.3535 26.8266 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 54 4 1.1507 32.9854 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 55 8 0.5059 29.5371 46.6937 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 56 0 1.4190 32.0982 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 57 A 3.7145 34.7413 42.0000 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 58 E 1.1888 30.3469 46.2566 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 59 B 1.4187 29.1734 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 60 v 15.6396 25.8031 31.3748 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 61 k 0.0371 26.1668 47.8672 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 62 J 1.2466 34.6594 47.5672 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 63 U 1.2000 37.3920 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 64 j 3.6665 19.9315 58.8567 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 65 ( -0.8573 16.9248 59.1522 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 66 7 1.2275 32.5437 45.3741 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 67 § -1.5108 28.0000 47.8672 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 68 $ -3.6982 31.6450 60.2521 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 69 € 0.0421 37.0881 46.6937 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 70 / -1.4483 26.4584 49.4087 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 71 C 1.2992 31.7346 45.3741 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 72 * -0.2388 26.1668 23.2420 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 73 ” 1.2378 16.6424 15.3877 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 74 ? 3.3731 25.8031 44.3469 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 75 { -1.0678 19.9315 59.1522 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 76 } -0.9862 19.9315 59.1522 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 77 , 41.2678 8.6465 14.0000 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 78 I 2.2471 28.3476 43.2416 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 79 ° -2.2906 19.9315 20.0853 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 80 K 1.2164 29.1734 46.8399 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 81 H 1.1423 37.2420 46.6937 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 82 q 14.6843 25.2850 46.8399 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 83 & 1.2636 34.7451 46.9080 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 84 ’ 1.1377 8.4926 15.1734 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 85 [ 1.1112 16.1930 57.9787 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 86 - 27.4980 18.5437 5.0619 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 87 Y 2.5120 34.2353 44.7150 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 88 Q 0.8922 48.2353 56.9591 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 89 " 1.0234 15.4773 18.5437 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 90 ! -0.9927 6.0853 48.5270 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 91 x 14.4348 31.0067 32.0339 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 92 ) -0.8626 16.3469 59.1522 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 93 = 14.2891 22.4322 24.3214 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 94 + 14.3870 24.4154 24.4154 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 95 X 1.2273 38.1116 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 96 » 14.7872 31.0028 25.6531 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 97 ' -1.7623 5.0619 15.1734 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 98 ¢ -4.1159 29.3832 48.2353 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 99 Z 1.1073 37.6056 45.5203 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 100 > 15.4204 17.3703 24.6297 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 101 ® -1.1282 41.3402 40.7623 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 102 © -1.0108 40.8266 38.4231 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 103 ] 1.2685 16.1930 57.9787 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 104 é -1.1845 29.0196 47.8672 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 105 z 15.8371 26.1668 31.0067 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 106 _ 49.2861 38.7790 7.1049 -Comic_Sans_MS.ttf 69 € 37.0881 46.6937 107 ¥ 3.6869 31.1560 42.8053 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 1 t 7.0282 24.4154 40.9766 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 2 h 0.1538 27.3402 48.0853 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 3 a 16.9342 27.8462 31.0067 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 4 n 15.8672 25.2031 32.0301 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 5 P 2.4951 25.7986 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 6 o 17.1445 28.2098 31.0067 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 7 e 17.0585 29.0196 31.0067 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 8 : 14.7817 6.5913 28.6598 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 9 r 16.7513 22.4322 31.3748 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 10 l 0.0765 5.9315 47.8672 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 11 i 4.2878 5.9315 42.5060 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 12 1 2.2684 17.7944 44.3469 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 13 | -2.3311 5.0619 59.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 14 N 2.1666 40.7623 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 15 f 0.0786 25.3570 50.5822 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 16 g 17.0258 27.1902 46.1801 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 17 d 0.0853 29.0196 47.8672 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 18 W 2.3955 55.7857 46.6937 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 19 s 14.3899 23.9737 33.7172 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 20 c 17.0106 24.4154 31.0067 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 21 u 17.0154 25.6486 31.0067 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 22 3 2.4692 26.8266 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 23 ~ 20.7118 29.5416 13.1304 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 24 # 1.9917 48.2353 45.8884 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 25 O 2.5007 40.8266 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 26 ` 0.2076 12.1668 14.0000 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 27 @ 0.1277 46.9080 50.3381 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 28 F 2.5669 29.7514 46.8399 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 29 S 5.0159 35.2549 43.5416 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 30 p 14.8123 26.0129 48.3770 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 31 “ 1.6110 16.2052 15.1734 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 32 % -0.0636 41.4940 48.0815 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 33 £ 0.1506 40.6123 52.6252 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 34 . 41.0361 7.2587 7.2587 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 35 2 2.5326 26.1844 44.3469 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 36 5 1.3319 29.0970 46.6937 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 37 m 16.0557 41.1864 33.4217 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 38 V 2.4910 33.7172 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 39 6 2.5623 28.4417 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 40 w 16.8758 36.2783 32.1801 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 41 T 3.1739 38.6252 43.4734 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 42 M 2.4595 46.1801 46.6087 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 43 G 2.3083 36.4322 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 44 b 1.7792 29.0196 46.2566 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 45 9 2.5657 30.7150 47.0619 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 46 ; 15.3320 9.4563 37.1646 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 47 D 2.6083 33.9315 46.2566 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 48 L 2.6008 28.2917 45.9489 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 49 y 17.0473 29.5371 46.1801 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 50 ‘ 2.2440 6.2353 15.1734 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 51 \ 3.1285 24.7790 47.3535 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 52 R 1.3587 31.5203 46.6937 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 53 < 14.5762 19.3535 26.8266 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 54 4 2.4948 32.9854 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 55 8 1.4579 29.5371 46.6937 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 56 0 2.4178 32.0982 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 57 A 4.9139 34.7413 42.0000 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 58 E 2.5276 30.3469 46.2566 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 59 B 2.3519 29.1734 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 60 v 16.7673 25.8031 31.3748 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 61 k 1.6040 26.1668 47.8672 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 62 J 2.5406 34.6594 47.5672 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 63 U 2.3755 37.3920 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 64 j 4.8395 19.9315 58.8567 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 65 ( 0.0530 16.9248 59.1522 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 66 7 2.5598 32.5437 45.3741 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 67 § 0.0506 28.0000 47.8672 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 68 $ -2.4507 31.6450 60.2521 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 69 € 1.4641 37.0881 46.6937 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 70 / -0.2439 26.4584 49.4087 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 71 C 2.3043 31.7346 45.3741 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 72 * 1.2568 26.1668 23.2420 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 73 ” 2.4975 16.6424 15.3877 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 74 ? 4.8046 25.8031 44.3469 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 75 { 0.1367 19.9315 59.1522 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 76 } 0.0639 19.9315 59.1522 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 77 , 42.7493 8.6465 14.0000 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 78 I 3.7574 28.3476 43.2416 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 79 ° -1.2039 19.9315 20.0853 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 80 K 2.4997 29.1734 46.8399 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 81 H 2.6485 37.2420 46.6937 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 82 q 16.1691 25.2850 46.8399 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 83 & 2.3908 34.7451 46.9080 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 84 ’ 2.6263 8.4926 15.1734 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 85 [ 2.4136 16.1930 57.9787 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 86 - 28.8395 18.5437 5.0619 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 87 Y 3.6742 34.2353 44.7150 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 88 Q 2.5039 48.2353 56.9591 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 89 " 2.5707 15.4773 18.5437 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 90 ! 0.2010 6.0853 48.5270 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 91 x 16.0750 31.0067 32.0339 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 92 ) 0.3001 16.3469 59.1522 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 93 = 15.6153 22.4322 24.3214 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 94 + 16.0959 24.4154 24.4154 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 95 X 2.6348 38.1116 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 96 » 15.9783 31.0028 25.6531 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 97 ' -0.4322 5.0619 15.1734 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 98 ¢ -2.7161 29.3832 48.2353 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 99 Z 2.5837 37.6056 45.5203 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 100 > 16.8541 17.3703 24.6297 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 101 ® 0.2448 41.3402 40.7623 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 102 © 0.4079 40.8266 38.4231 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 103 ] 2.4734 16.1930 57.9787 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 104 é -0.1148 29.0196 47.8672 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 105 z 16.9405 26.1668 31.0067 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 106 _ 50.6015 38.7790 7.1049 -Comic_Sans_MS.ttf 70 / 26.4584 49.4087 107 ¥ 5.1326 31.1560 42.8053 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 1 t 4.3497 24.4154 40.9766 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 2 h -2.5830 27.3402 48.0853 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 3 a 14.3615 27.8462 31.0067 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 4 n 13.5920 25.2031 32.0301 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 5 P -0.0238 25.7986 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 6 o 14.6562 28.2098 31.0067 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 7 e 14.3032 29.0196 31.0067 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 8 : 11.9205 6.5913 28.6598 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 9 r 13.7464 22.4322 31.3748 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 10 l -2.5948 5.9315 47.8672 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 11 i 1.7797 5.9315 42.5060 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 12 1 -0.4604 17.7944 44.3469 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 13 | -5.0212 5.0619 59.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 14 N -0.3918 40.7623 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 15 f -2.6259 25.3570 50.5822 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 16 g 14.4931 27.1902 46.1801 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 17 d -2.4979 29.0196 47.8672 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 18 W 0.0092 55.7857 46.6937 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 19 s 11.7035 23.9737 33.7172 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 20 c 14.4136 24.4154 31.0067 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 21 u 14.2100 25.6486 31.0067 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 22 3 -0.1909 26.8266 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 23 ~ 17.9303 29.5416 13.1304 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 24 # -0.6162 48.2353 45.8884 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 25 O -0.3908 40.8266 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 26 ` -2.4875 12.1668 14.0000 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 27 @ -2.3225 46.9080 50.3381 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 28 F 0.0711 29.7514 46.8399 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 29 S 2.0227 35.2549 43.5416 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 30 p 12.2063 26.0129 48.3770 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 31 “ -0.8754 16.2052 15.1734 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 32 % -2.4904 41.4940 48.0815 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 33 £ -2.2975 40.6123 52.6252 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 34 . 38.6507 7.2587 7.2587 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 35 2 -0.2607 26.1844 44.3469 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 36 5 -1.2264 29.0970 46.6937 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 37 m 13.4913 41.1864 33.4217 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 38 V 0.0271 33.7172 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 39 6 -0.3163 28.4417 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 40 w 14.3552 36.2783 32.1801 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 41 T 0.8386 38.6252 43.4734 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 42 M -0.2448 46.1801 46.6087 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 43 G -0.3040 36.4322 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 44 b -1.0335 29.0196 46.2566 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 45 9 -0.1347 30.7150 47.0619 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 46 ; 12.4853 9.4563 37.1646 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 47 D -0.2595 33.9315 46.2566 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 48 L -0.0104 28.2917 45.9489 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 49 y 14.3188 29.5371 46.1801 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 50 ‘ -0.3296 6.2353 15.1734 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 51 \ 0.8552 24.7790 47.3535 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 52 R -1.3847 31.5203 46.6937 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 53 < 13.9849 17.3703 24.6297 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 54 4 -0.3278 32.9854 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 55 8 -1.6166 29.5371 46.6937 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 56 0 -0.2416 32.0982 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 57 A 2.0681 34.7413 42.0000 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 58 E -0.1104 30.3469 46.2566 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 59 B -0.1919 29.1734 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 60 v 14.2730 25.8031 31.3748 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 61 k -1.4131 26.1668 47.8672 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 62 J -0.0458 34.6594 47.5672 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 63 U 0.0243 37.3920 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 64 j 2.3637 19.9315 58.8567 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 65 ( -2.9319 16.3469 59.1522 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 66 7 0.1318 32.5437 45.3741 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 67 § -2.6743 28.0000 47.8672 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 68 $ -5.0804 31.6450 60.2521 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 69 € -1.5742 37.0881 46.6937 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 70 / -2.9156 26.4584 49.4087 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 71 C -0.2172 31.7346 45.3741 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 72 * -1.5476 26.1668 23.2420 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 73 ” 0.0711 16.6424 15.3877 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 74 ? 2.4265 25.8031 44.3469 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 75 { -2.5645 19.9315 59.1522 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 76 } -2.7501 19.9315 59.1522 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 77 , 40.4424 8.6465 14.0000 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 78 I 1.1443 28.3476 43.2416 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 79 ° -3.9773 19.9315 20.0853 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 80 K 0.1428 29.1734 46.8399 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 81 H -0.1830 37.2420 46.6937 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 82 q 13.0148 25.2850 46.8399 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 83 & -0.0727 34.7451 46.9080 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 84 ’ -0.1976 8.4926 15.1734 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 85 [ -0.0937 16.1930 57.9787 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 86 - 26.4222 18.5437 5.0619 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 87 Y 1.1477 34.2353 44.7150 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 88 Q -0.3064 48.2353 56.9591 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 89 " -0.1364 15.4773 18.5437 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 90 ! -2.6497 6.0853 48.5270 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 91 x 13.1733 31.0067 32.0339 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 92 ) -2.3754 16.9248 59.1522 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 93 = 13.1451 22.4322 24.3214 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 94 + 13.6129 24.4154 24.4154 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 95 X -0.0545 38.1116 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 96 » 13.9010 31.0028 25.6531 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 97 ' -3.2697 5.0619 15.1734 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 98 ¢ -5.0242 29.3832 48.2353 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 99 Z 0.0673 37.6056 45.5203 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 100 > 11.9583 19.3535 26.8266 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 101 ® -2.6464 41.3402 40.7623 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 102 © -2.4123 40.8266 38.4231 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 103 ] -0.3428 16.1930 57.9787 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 104 é -2.4389 29.0196 47.8672 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 105 z 14.3371 26.1668 31.0067 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 106 _ 47.7378 38.7790 7.1049 -Comic_Sans_MS.ttf 71 C 31.7346 45.3741 107 ¥ 2.4831 31.1560 42.8053 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 1 t 5.9767 24.4154 40.9766 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 2 h -1.1813 27.3402 48.0853 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 3 a 16.0267 27.8462 31.0067 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 4 n 14.8200 25.2031 32.0301 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 5 P 1.2824 25.7986 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 6 o 15.9245 28.2098 31.0067 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 7 e 15.6174 29.0196 31.0067 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 8 : 13.3677 6.5913 28.6598 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 9 r 15.3615 22.4322 31.3748 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 10 l -1.1011 5.9315 47.8672 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 11 i 3.1876 5.9315 42.5060 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 12 1 1.4599 17.7944 44.3469 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 13 | -3.6735 5.0619 59.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 14 N 1.5392 40.7623 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 15 f -0.8505 25.3570 50.5822 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 16 g 15.8597 27.1902 46.1801 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 17 d -1.2708 29.0196 47.8672 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 18 W 1.5663 55.7857 46.6937 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 19 s 13.2927 23.9737 33.7172 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 20 c 15.8475 24.4154 31.0067 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 21 u 16.1072 25.6486 31.0067 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 22 3 1.2030 26.8266 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 23 ~ 19.7247 29.5416 13.1304 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 24 # 0.9624 48.2353 45.8884 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 25 O 1.0711 40.8266 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 26 ` -1.0168 12.1668 14.0000 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 27 @ -0.9412 46.9080 50.3381 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 28 F 1.2447 29.7514 46.8399 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 29 S 3.9558 35.2549 43.5416 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 30 p 13.5807 26.0129 48.3770 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 31 “ 0.4676 16.2052 15.1734 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 32 % -1.0239 41.4940 48.0815 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 33 £ -1.1185 40.6123 52.6252 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 34 . 40.0465 7.2587 7.2587 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 35 2 1.3700 26.1844 44.3469 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 36 5 0.1129 29.0970 46.6937 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 37 m 14.8200 41.1864 33.4217 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 38 V 1.2699 33.7172 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 39 6 0.9499 28.4417 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 40 w 15.7643 36.2783 32.1801 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 41 T 2.1209 38.6252 43.4734 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 42 M 1.4831 46.1801 46.6087 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 43 G 1.2773 36.4322 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 44 b 0.6334 29.0196 46.2566 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 45 9 1.4279 30.7150 47.0619 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 46 ; 14.0981 9.4563 37.1646 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 47 D 1.1068 33.9315 46.2566 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 48 L 1.5448 28.2917 45.9489 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 49 y 15.5415 29.5371 46.1801 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 50 ‘ 1.3640 6.2353 15.1734 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 51 \ 1.8452 24.7790 47.3535 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 52 R 0.2410 31.5203 46.6937 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 53 < 13.1558 19.3535 26.8266 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 54 4 1.4200 32.9854 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 55 8 0.0622 29.5371 46.6937 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 56 0 1.3273 32.0982 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 57 A 3.6793 34.7413 42.0000 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 58 E 1.2044 30.3469 46.2566 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 59 B 1.2277 29.1734 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 60 v 15.8745 25.8031 31.3748 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 61 k -0.0644 26.1668 47.8672 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 62 J 1.4092 34.6594 47.5672 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 63 U 1.1233 37.3920 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 64 j 3.6579 19.9315 58.8567 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 65 ( -1.1906 16.9248 59.1522 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 66 7 1.4234 32.5437 45.3741 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 67 § -0.7634 28.0000 47.8672 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 68 $ -3.4660 31.6450 60.2521 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 69 € -0.1900 37.0881 46.6937 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 70 / -0.8718 26.4584 49.4087 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 71 C 1.6000 31.7346 45.3741 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 72 * -0.0678 26.1668 23.2420 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 73 ” 1.5941 16.6424 15.3877 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 74 ? 3.6465 25.8031 44.3469 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 75 { -1.2777 19.9315 59.1522 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 76 } -1.0990 19.9315 59.1522 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 77 , 41.8803 8.6465 14.0000 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 78 I 2.8374 28.3476 43.2416 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 79 ° -2.1893 19.9315 20.0853 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 80 K 1.4480 29.1734 46.8399 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 81 H 1.0635 37.2420 46.6937 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 82 q 14.7801 25.2850 46.8399 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 83 & 1.4866 34.7451 46.9080 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 84 ’ 1.1716 8.4926 15.1734 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 85 [ 1.1275 16.1930 57.9787 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 86 - 27.7013 18.5437 5.0619 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 87 Y 2.4381 34.2353 44.7150 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 88 Q 1.4899 48.2353 56.9591 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 89 " 1.3942 15.4773 18.5437 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 90 ! -1.0482 6.0853 48.5270 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 91 x 14.8970 31.0067 32.0339 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 92 ) -0.8691 16.3469 59.1522 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 93 = 14.4879 22.4322 24.3214 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 94 + 14.6010 24.4154 24.4154 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 95 X 1.0324 38.1116 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 96 » 14.9091 31.0028 25.6531 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 97 ' -1.4307 5.0619 15.1734 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 98 ¢ -3.8217 29.3832 48.2353 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 99 Z 1.4099 37.6056 45.5203 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 100 > 15.5995 17.3703 24.6297 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 101 ® -0.7642 41.3402 40.7623 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 102 © -1.1661 40.8266 38.4231 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 103 ] 1.6642 16.1930 57.9787 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 104 é -0.7512 29.0196 47.8672 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 105 z 16.0078 26.1668 31.0067 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 106 _ 49.5110 38.7790 7.1049 -Comic_Sans_MS.ttf 72 * 26.1668 23.2420 107 ¥ 3.9556 31.1560 42.8053 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 1 t 4.6346 24.4154 40.9766 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 2 h -2.3507 27.3402 48.0853 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 3 a 14.3829 27.8462 31.0067 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 4 n 13.3436 25.2031 32.0301 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 5 P 0.2554 25.7986 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 6 o 14.5591 28.2098 31.0067 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 7 e 14.5066 29.0196 31.0067 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 8 : 12.1537 6.5913 28.6598 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 9 r 14.1525 22.4322 31.3748 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 10 l -2.2818 5.9315 47.8672 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 11 i 1.8552 5.9315 42.5060 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 12 1 0.0744 17.7944 44.3469 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 13 | -5.1323 5.0619 59.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 14 N -0.2998 40.7623 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 15 f -2.1719 25.3570 50.5822 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 16 g 14.8297 27.1902 46.1801 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 17 d -2.5177 29.0196 47.8672 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 18 W -0.2113 55.7857 46.6937 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 19 s 11.8940 23.9737 33.7172 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 20 c 14.5174 24.4154 31.0067 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 21 u 14.4363 25.6486 31.0067 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 22 3 -0.0052 26.8266 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 23 ~ 18.3661 29.5416 13.1304 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 24 # -0.3773 48.2353 45.8884 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 25 O -0.0000 40.8266 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 26 ` -2.1324 12.1668 14.0000 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 27 @ -2.1961 46.9080 50.3381 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 28 F -0.0455 29.7514 46.8399 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 29 S 2.1740 35.2549 43.5416 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 30 p 12.3979 26.0129 48.3770 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 31 “ -0.8317 16.2052 15.1734 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 32 % -2.6983 41.4940 48.0815 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 33 £ -2.2167 40.6123 52.6252 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 34 . 38.6485 7.2587 7.2587 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 35 2 0.0951 26.1844 44.3469 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 36 5 -1.0882 29.0970 46.6937 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 37 m 13.3816 41.1864 33.4217 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 38 V -0.0172 33.7172 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 39 6 -0.0109 28.4417 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 40 w 14.6142 36.2783 32.1801 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 41 T 0.9064 38.6252 43.4734 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 42 M -0.1780 46.1801 46.6087 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 43 G -0.0147 36.4322 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 44 b -0.7093 29.0196 46.2566 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 45 9 0.2010 30.7150 47.0619 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 46 ; 12.7501 9.4563 37.1646 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 47 D 0.0353 33.9315 46.2566 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 48 L -0.2406 28.2917 45.9489 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 49 y 14.8371 29.5371 46.1801 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 50 ‘ -0.0871 6.2353 15.1734 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 51 \ 1.0371 24.7790 47.3535 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 52 R -1.1734 31.5203 46.6937 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 53 < 12.0608 19.3535 26.8266 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 54 4 0.1508 32.9854 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 55 8 -1.3439 29.5371 46.6937 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 56 0 -0.0223 32.0982 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 57 A 2.1082 34.7413 42.0000 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 58 E 0.1964 30.3469 46.2566 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 59 B -0.0629 29.1734 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 60 v 14.1851 25.8031 31.3748 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 61 k -1.0181 26.1668 47.8672 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 62 J 0.2547 34.6594 47.5672 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 63 U 0.1705 37.3920 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 64 j 2.4268 19.9315 58.8567 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 65 ( -2.2240 16.9248 59.1522 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 66 7 0.4253 32.5437 45.3741 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 67 § -2.3951 28.0000 47.8672 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 68 $ -5.0606 31.6450 60.2521 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 69 € -1.1494 37.0881 46.6937 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 70 / -2.5924 26.4584 49.4087 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 71 C 0.2046 31.7346 45.3741 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 72 * -1.6141 26.1668 23.2420 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 73 ” -0.0746 16.6424 15.3877 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 74 ? 2.2532 25.8031 44.3469 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 75 { -2.3977 19.9315 59.1522 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 76 } -2.4173 19.9315 59.1522 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 77 , 40.2818 8.6465 14.0000 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 78 I 1.0837 28.3476 43.2416 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 79 ° -3.8970 19.9315 20.0853 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 80 K -0.1701 29.1734 46.8399 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 81 H -0.1888 37.2420 46.6937 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 82 q 13.5015 25.2850 46.8399 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 83 & 0.2672 34.7451 46.9080 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 84 ’ 0.1205 8.4926 15.1734 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 85 [ 0.0189 16.1930 57.9787 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 86 - 26.2582 18.5437 5.0619 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 87 Y 1.1605 34.2353 44.7150 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 88 Q -0.2411 48.2353 56.9591 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 89 " -0.1085 15.4773 18.5437 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 90 ! -2.3766 6.0853 48.5270 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 91 x 13.4770 31.0067 32.0339 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 92 ) -2.1223 16.3469 59.1522 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 93 = 13.2402 22.4322 24.3214 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 94 + 13.2507 24.4154 24.4154 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 95 X 0.0353 38.1116 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 96 » 13.7991 31.0028 25.6531 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 97 ' -2.8495 5.0619 15.1734 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 98 ¢ -4.7088 29.3832 48.2353 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 99 Z -0.2197 37.6056 45.5203 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 100 > 13.9384 17.3703 24.6297 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 101 ® -2.0257 41.3402 40.7623 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 102 © -2.3002 40.8266 38.4231 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 103 ] 0.0760 16.1930 57.9787 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 104 é -2.2657 29.0196 47.8672 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 105 z 14.6229 26.1668 31.0067 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 106 _ 47.9399 38.7790 7.1049 -Comic_Sans_MS.ttf 73 ” 16.6424 15.3877 107 ¥ 2.7462 31.1560 42.8053 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 1 t 1.9086 24.4154 40.9766 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 2 h -4.3040 27.3402 48.0853 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 3 a 12.3886 27.8462 31.0067 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 4 n 11.1947 25.2031 32.0301 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 5 P -2.1469 25.7986 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 6 o 12.4063 28.2098 31.0067 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 7 e 12.5495 29.0196 31.0067 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 8 : 9.9249 6.5913 28.6598 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 9 r 11.6306 22.4322 31.3748 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 10 l -4.4937 5.9315 47.8672 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 11 i -0.3597 5.9315 42.5060 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 12 1 -2.2797 17.7944 44.3469 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 13 | -7.0346 5.0619 59.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 14 N -2.2493 40.7623 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 15 f -4.2619 25.3570 50.5822 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 16 g 12.1801 27.1902 46.1801 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 17 d -4.6550 29.0196 47.8672 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 18 W -1.9917 55.7857 46.6937 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 19 s 9.5321 23.9737 33.7172 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 20 c 12.4120 24.4154 31.0067 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 21 u 12.3230 25.6486 31.0067 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 22 3 -2.3711 26.8266 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 23 ~ 16.1199 29.5416 13.1304 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 24 # -2.7152 48.2353 45.8884 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 25 O -2.2326 40.8266 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 26 ` -4.6704 12.1668 14.0000 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 27 @ -4.8799 46.9080 50.3381 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 28 F -2.1907 29.7514 46.8399 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 29 S 0.3904 35.2549 43.5416 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 30 p 9.8526 26.0129 48.3770 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 31 “ -2.8076 16.2052 15.1734 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 32 % -4.4856 41.4940 48.0815 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 33 £ -4.5080 40.6123 52.6252 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 34 . 36.4904 7.2587 7.2587 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 35 2 -2.3086 26.1844 44.3469 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 36 5 -3.4612 29.0970 46.6937 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 37 m 11.2789 41.1864 33.4217 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 38 V -2.1394 33.7172 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 39 6 -2.0138 28.4417 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 40 w 12.5170 36.2783 32.1801 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 41 T -1.2234 38.6252 43.4734 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 42 M -2.4526 46.1801 46.6087 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 43 G -2.4368 36.4322 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 44 b -2.4342 29.0196 46.2566 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 45 9 -2.3698 30.7150 47.0619 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 46 ; 10.5318 9.4563 37.1646 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 47 D -1.8749 33.9315 46.2566 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 48 L -2.5318 28.2917 45.9489 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 49 y 12.1699 29.5371 46.1801 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 50 ‘ -2.3665 6.2353 15.1734 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 51 \ -1.2205 24.7790 47.3535 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 52 R -3.3914 31.5203 46.6937 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 53 < 9.8253 19.3535 26.8266 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 54 4 -2.0485 32.9854 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 55 8 -3.5329 29.5371 46.6937 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 56 0 -2.1941 32.0982 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 57 A 0.1132 34.7413 42.0000 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 58 E -2.1347 30.3469 46.2566 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 59 B -2.2623 29.1734 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 60 v 12.1447 25.8031 31.3748 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 61 k -3.3419 26.1668 47.8672 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 62 J -2.1191 34.6594 47.5672 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 63 U -2.2840 37.3920 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 64 j 0.1679 19.9315 58.8567 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 65 ( -4.5780 16.9248 59.1522 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 66 7 -2.5170 32.5437 45.3741 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 67 § -4.5024 28.0000 47.8672 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 68 $ -6.8708 31.6450 60.2521 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 69 € -3.0254 37.0881 46.6937 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 70 / -4.8589 26.4584 49.4087 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 71 C -2.1185 31.7346 45.3741 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 72 * -3.8453 26.1668 23.2420 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 73 ” -2.3679 16.6424 15.3877 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 74 ? -0.1021 25.8031 44.3469 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 75 { -4.4748 19.9315 59.1522 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 76 } -4.6132 19.9315 59.1522 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 77 , 38.5100 8.6465 14.0000 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 78 I -0.8220 28.3476 43.2416 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 79 ° -5.8979 19.9315 20.0853 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 80 K -2.6307 29.1734 46.8399 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 81 H -2.1028 37.2420 46.6937 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 82 q 11.1828 25.2850 46.8399 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 83 & -2.2201 34.7451 46.9080 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 84 ’ -2.1044 8.4926 15.1734 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 85 [ -1.9100 16.1930 57.9787 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 86 - 24.4548 18.5437 5.0619 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 87 Y -1.2939 34.2353 44.7150 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 88 Q -2.2234 48.2353 56.9591 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 89 " -1.9214 15.4773 18.5437 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 90 ! -4.5696 6.0853 48.5270 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 91 x 11.4335 31.0067 32.0339 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 92 ) -4.6771 16.3469 59.1522 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 93 = 10.9218 22.4322 24.3214 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 94 + 11.0265 24.4154 24.4154 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 95 X -2.0555 38.1116 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 96 » 11.3930 31.0028 25.6531 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 97 ' -5.1304 5.0619 15.1734 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 98 ¢ -7.1776 29.3832 48.2353 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 99 Z -2.0403 37.6056 45.5203 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 100 > 11.7157 17.3703 24.6297 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 101 ® -4.7156 41.3402 40.7623 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 102 © -4.9888 40.8266 38.4231 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 103 ] -1.9833 16.1930 57.9787 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 104 é -4.6392 29.0196 47.8672 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 105 z 12.0378 26.1668 31.0067 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 106 _ 45.7650 38.7790 7.1049 -Comic_Sans_MS.ttf 74 ? 25.8031 44.3469 107 ¥ 0.2914 31.1560 42.8053 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 1 t 6.8970 24.4154 40.9766 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 2 h -0.1470 27.3402 48.0853 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 3 a 16.7831 27.8462 31.0067 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 4 n 15.9722 25.2031 32.0301 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 5 P 2.3469 25.7986 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 6 o 17.0396 28.2098 31.0067 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 7 e 17.0954 29.0196 31.0067 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 8 : 14.4335 6.5913 28.6598 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 9 r 16.2711 22.4322 31.3748 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 10 l 0.0969 5.9315 47.8672 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 11 i 3.9022 5.9315 42.5060 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 12 1 2.4565 17.7944 44.3469 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 13 | -2.4848 5.0619 59.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 14 N 2.3382 40.7623 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 15 f 0.1626 25.3570 50.5822 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 16 g 16.8067 27.1902 46.1801 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 17 d -0.0833 29.0196 47.8672 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 18 W 2.2093 55.7857 46.6937 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 19 s 14.0699 23.9737 33.7172 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 20 c 16.8685 24.4154 31.0067 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 21 u 16.9914 25.6486 31.0067 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 22 3 2.1226 26.8266 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 23 ~ 20.5413 29.5416 13.1304 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 24 # 1.9035 48.2353 45.8884 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 25 O 2.3333 40.8266 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 26 ` 0.0192 12.1668 14.0000 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 27 @ 0.0163 46.9080 50.3381 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 28 F 2.2024 29.7514 46.8399 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 29 S 4.6088 35.2549 43.5416 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 30 p 14.5695 26.0129 48.3770 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 31 “ 1.5290 16.2052 15.1734 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 32 % -0.1772 41.4940 48.0815 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 33 £ 0.0357 40.6123 52.6252 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 34 . 40.9114 7.2587 7.2587 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 35 2 2.4187 26.1844 44.3469 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 36 5 1.3560 29.0970 46.6937 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 37 m 15.6512 41.1864 33.4217 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 38 V 2.0562 33.7172 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 39 6 2.2997 28.4417 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 40 w 16.8118 36.2783 32.1801 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 41 T 3.4135 38.6252 43.4734 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 42 M 2.5453 46.1801 46.6087 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 43 G 2.3808 36.4322 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 44 b 1.7453 29.0196 46.2566 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 45 9 2.1199 30.7150 47.0619 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 46 ; 15.1758 9.4563 37.1646 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 47 D 2.4882 33.9315 46.2566 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 48 L 2.2852 28.2917 45.9489 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 49 y 16.8167 29.5371 46.1801 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 50 ‘ 2.6554 6.2353 15.1734 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 51 \ 3.1838 24.7790 47.3535 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 52 R 1.1039 31.5203 46.6937 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 53 < 14.4441 19.3535 26.8266 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 54 4 2.4126 32.9854 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 55 8 1.0511 29.5371 46.6937 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 56 0 2.4794 32.0982 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 57 A 4.5016 34.7413 42.0000 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 58 E 2.0974 30.3469 46.2566 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 59 B 2.2542 29.1734 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 60 v 16.7271 25.8031 31.3748 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 61 k 1.0725 26.1668 47.8672 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 62 J 2.4308 34.6594 47.5672 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 63 U 2.2643 37.3920 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 64 j 4.8937 19.9315 58.8567 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 65 ( -0.2002 16.9248 59.1522 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 66 7 2.4021 32.5437 45.3741 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 67 § 0.1158 28.0000 47.8672 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 68 $ -2.6413 31.6450 60.2521 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 69 € 0.9194 37.0881 46.6937 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 70 / -0.1531 26.4584 49.4087 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 71 C 2.5742 31.7346 45.3741 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 72 * 1.0991 26.1668 23.2420 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 73 ” 2.2667 16.6424 15.3877 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 74 ? 4.2724 25.8031 44.3469 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 75 { 0.0657 19.9315 59.1522 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 76 } -0.2492 19.9315 59.1522 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 77 , 42.7214 8.6465 14.0000 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 78 I 3.6665 28.3476 43.2416 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 79 ° -1.3856 19.9315 20.0853 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 80 K 2.2376 29.1734 46.8399 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 81 H 2.3428 37.2420 46.6937 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 82 q 15.5226 25.2850 46.8399 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 83 & 2.3469 34.7451 46.9080 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 84 ’ 1.9784 8.4926 15.1734 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 85 [ 2.5207 16.1930 57.9787 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 86 - 28.9211 18.5437 5.0619 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 87 Y 3.5977 34.2353 44.7150 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 88 Q 2.2727 48.2353 56.9591 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 89 " 2.1786 15.4773 18.5437 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 90 ! 0.0091 6.0853 48.5270 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 91 x 15.9756 31.0067 32.0339 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 92 ) 0.0552 16.3469 59.1522 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 93 = 15.5478 22.4322 24.3214 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 94 + 15.5457 24.4154 24.4154 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 95 X 2.1415 38.1116 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 96 » 15.8930 31.0028 25.6531 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 97 ' -0.5216 5.0619 15.1734 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 98 ¢ -2.6352 29.3832 48.2353 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 99 Z 2.4039 37.6056 45.5203 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 100 > 16.7289 17.3703 24.6297 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 101 ® 0.0909 41.3402 40.7623 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 102 © 0.0888 40.8266 38.4231 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 103 ] 2.3476 16.1930 57.9787 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 104 é 0.1645 29.0196 47.8672 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 105 z 16.7734 26.1668 31.0067 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 106 _ 50.4151 38.7790 7.1049 -Comic_Sans_MS.ttf 75 { 19.9315 59.1522 107 ¥ 4.8890 31.1560 42.8053 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 1 t 6.6460 24.4154 40.9766 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 2 h -0.2992 27.3402 48.0853 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 3 a 16.9462 27.8462 31.0067 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 4 n 15.7787 25.2031 32.0301 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 5 P 2.4091 25.7986 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 6 o 16.9549 28.2098 31.0067 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 7 e 16.6212 29.0196 31.0067 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 8 : 14.4422 6.5913 28.6598 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 9 r 16.4767 22.4322 31.3748 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 10 l 0.0769 5.9315 47.8672 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 11 i 4.2809 5.9315 42.5060 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 12 1 2.4340 17.7944 44.3469 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 13 | -2.4917 5.0619 59.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 14 N 2.2814 40.7623 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 15 f 0.0857 25.3570 50.5822 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 16 g 16.8556 27.1902 46.1801 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 17 d -0.1970 29.0196 47.8672 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 18 W 2.2083 55.7857 46.6937 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 19 s 14.0591 23.9737 33.7172 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 20 c 16.7748 24.4154 31.0067 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 21 u 16.7339 25.6486 31.0067 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 22 3 2.3534 26.8266 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 23 ~ 20.5844 29.5416 13.1304 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 24 # 1.9857 48.2353 45.8884 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 25 O 2.1086 40.8266 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 26 ` 0.1501 12.1668 14.0000 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 27 @ -0.0000 46.9080 50.3381 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 28 F 2.2657 29.7514 46.8399 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 29 S 4.7854 35.2549 43.5416 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 30 p 14.5325 26.0129 48.3770 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 31 “ 1.6935 16.2052 15.1734 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 32 % -0.3487 41.4940 48.0815 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 33 £ -0.0792 40.6123 52.6252 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 34 . 41.1580 7.2587 7.2587 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 35 2 2.2754 26.1844 44.3469 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 36 5 1.0309 29.0970 46.6937 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 37 m 15.7475 41.1864 33.4217 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 38 V 2.6158 33.7172 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 39 6 2.0264 28.4417 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 40 w 17.0651 36.2783 32.1801 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 41 T 3.0590 38.6252 43.4734 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 42 M 2.5197 46.1801 46.6087 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 43 G 2.3826 36.4322 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 44 b 1.6939 29.0196 46.2566 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 45 9 2.1491 30.7150 47.0619 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 46 ; 14.8129 9.4563 37.1646 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 47 D 2.2108 33.9315 46.2566 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 48 L 2.5155 28.2917 45.9489 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 49 y 16.7679 29.5371 46.1801 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 50 ‘ 2.4743 6.2353 15.1734 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 51 \ 3.3195 24.7790 47.3535 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 52 R 0.9250 31.5203 46.6937 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 53 < 14.3227 19.3535 26.8266 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 54 4 2.2842 32.9854 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 55 8 1.1836 29.5371 46.6937 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 56 0 2.3066 32.0982 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 57 A 4.5612 34.7413 42.0000 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 58 E 2.5257 30.3469 46.2566 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 59 B 2.2923 29.1734 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 60 v 17.0977 25.8031 31.3748 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 61 k 0.8884 26.1668 47.8672 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 62 J 2.3983 34.6594 47.5672 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 63 U 2.3437 37.3920 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 64 j 4.8410 19.9315 58.8567 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 65 ( -0.1424 16.9248 59.1522 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 66 7 2.6069 32.5437 45.3741 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 67 § 0.2904 28.0000 47.8672 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 68 $ -2.6045 31.6450 60.2521 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 69 € 1.2560 37.0881 46.6937 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 70 / -0.0524 26.4584 49.4087 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 71 C 2.3651 31.7346 45.3741 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 72 * 0.8723 26.1668 23.2420 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 73 ” 2.1420 16.6424 15.3877 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 74 ? 4.7485 25.8031 44.3469 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 75 { 0.0685 19.9315 59.1522 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 76 } -0.0676 19.9315 59.1522 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 77 , 42.7182 8.6465 14.0000 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 78 I 3.5577 28.3476 43.2416 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 79 ° -0.9685 19.9315 20.0853 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 80 K 2.2560 29.1734 46.8399 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 81 H 2.4221 37.2420 46.6937 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 82 q 15.5604 25.2850 46.8399 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 83 & 2.4939 34.7451 46.9080 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 84 ’ 2.2819 8.4926 15.1734 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 85 [ 2.6159 16.1930 57.9787 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 86 - 28.8386 18.5437 5.0619 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 87 Y 3.3205 34.2353 44.7150 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 88 Q 2.4183 48.2353 56.9591 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 89 " 2.4183 15.4773 18.5437 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 90 ! 0.0000 6.0853 48.5270 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 91 x 15.6951 31.0067 32.0339 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 92 ) 0.1119 16.3469 59.1522 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 93 = 15.4765 22.4322 24.3214 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 94 + 15.8441 24.4154 24.4154 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 95 X 2.3469 38.1116 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 96 » 16.1362 31.0028 25.6531 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 97 ' -0.5786 5.0619 15.1734 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 98 ¢ -2.7090 29.3832 48.2353 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 99 Z 2.3199 37.6056 45.5203 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 100 > 16.4749 17.3703 24.6297 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 101 ® -0.1742 41.3402 40.7623 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 102 © 0.1661 40.8266 38.4231 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 103 ] 2.3125 16.1930 57.9787 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 104 é -0.0199 29.0196 47.8672 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 105 z 16.9151 26.1668 31.0067 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 106 _ 50.4447 38.7790 7.1049 -Comic_Sans_MS.ttf 76 } 19.9315 59.1522 107 ¥ 4.9065 31.1560 42.8053 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 1 t -36.0119 24.4154 40.9766 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 2 h -42.8053 27.3402 48.0853 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 3 a -25.9238 27.8462 31.0067 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 4 n -27.0452 25.2031 32.0301 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 5 P -40.4639 25.7986 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 6 o -25.9448 28.2098 31.0067 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 7 e -25.8993 29.0196 31.0067 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 8 : -28.3364 6.5913 28.6598 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 9 r -26.6156 22.4322 31.3748 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 10 l -42.8410 5.9315 47.8672 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 11 i -38.6630 5.9315 42.5060 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 12 1 -40.6939 17.7944 44.3469 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 13 | -45.3633 5.0619 59.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 14 N -40.4168 40.7623 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 15 f -42.5558 25.3570 50.5822 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 16 g -26.0319 27.1902 46.1801 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 17 d -42.8508 29.0196 47.8672 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 18 W -40.4584 55.7857 46.6937 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 19 s -28.7322 23.9737 33.7172 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 20 c -26.1943 24.4154 31.0067 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 21 u -26.0322 25.6486 31.0067 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 22 3 -40.3675 26.8266 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 23 ~ -22.2353 29.5416 13.1304 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 24 # -40.7766 48.2353 45.8884 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 25 O -40.5354 40.8266 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 26 ` -42.6727 12.1668 14.0000 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 27 @ -42.9254 46.9080 50.3381 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 28 F -40.4077 29.7514 46.8399 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 29 S -38.1110 35.2549 43.5416 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 30 p -28.0702 26.0129 48.3770 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 31 “ -41.1076 16.2052 15.1734 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 32 % -42.9696 41.4940 48.0815 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 33 £ -42.9722 40.6123 52.6252 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 34 . -1.7613 7.2587 7.2587 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 35 2 -40.4241 26.1844 44.3469 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 36 5 -41.4363 29.0970 46.6937 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 37 m -26.8909 41.1864 33.4217 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 38 V -40.3556 33.7172 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 39 6 -40.2901 28.4417 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 40 w -25.8636 36.2783 32.1801 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 41 T -39.4145 38.6252 43.4734 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 42 M -40.5854 46.1801 46.6087 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 43 G -40.5391 36.4322 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 44 b -41.3633 29.0196 46.2566 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 45 9 -40.6358 30.7150 47.0619 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 46 ; -27.7073 9.4563 37.1646 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 47 D -40.4487 33.9315 46.2566 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 48 L -40.3668 28.2917 45.9489 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 49 y -25.9448 29.5371 46.1801 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 50 ‘ -40.5456 6.2353 15.1734 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 51 \ -39.5052 24.7790 47.3535 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 52 R -41.4640 31.5203 46.6937 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 53 < -28.3728 19.3535 26.8266 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 54 4 -40.7069 32.9854 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 55 8 -41.8825 29.5371 46.6937 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 56 0 -40.2111 32.0982 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 57 A -38.0933 34.7413 42.0000 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 58 E -40.1840 30.3469 46.2566 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 59 B -40.3815 29.1734 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 60 v -25.8168 25.8031 31.3748 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 61 k -41.4170 26.1668 47.8672 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 62 J -40.3675 34.6594 47.5672 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 63 U -40.1664 37.3920 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 64 j -37.8804 19.9315 58.8567 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 65 ( -42.6418 16.9248 59.1522 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 66 7 -40.2668 32.5437 45.3741 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 67 § -42.6857 28.0000 47.8672 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 68 $ -45.4954 31.6450 60.2521 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 69 € -41.6319 37.0881 46.6937 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 70 / -42.9532 26.4584 49.4087 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 71 C -40.2164 31.7346 45.3741 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 72 * -41.7597 26.1668 23.2420 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 73 ” -40.2104 16.6424 15.3877 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 74 ? -38.2346 25.8031 44.3469 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 75 { -42.7553 19.9315 59.1522 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 76 } -42.8767 19.9315 59.1522 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 77 , 0.2137 8.6465 14.0000 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 78 I -39.3306 28.3476 43.2416 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 79 ° -44.1821 19.9315 20.0853 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 80 K -40.5418 29.1734 46.8399 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 81 H -40.3713 37.2420 46.6937 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 82 q -27.0903 25.2850 46.8399 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 83 & -40.3668 34.7451 46.9080 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 84 ’ -40.4622 8.4926 15.1734 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 85 [ -40.4105 16.1930 57.9787 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 86 - -13.7400 18.5437 5.0619 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 87 Y -39.2850 34.2353 44.7150 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 88 Q -40.4584 48.2353 56.9591 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 89 " -40.5046 15.4773 18.5437 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 90 ! -42.8767 6.0853 48.5270 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 91 x -27.1604 31.0067 32.0339 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 92 ) -42.8550 16.3469 59.1522 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 93 = -27.0825 22.4322 24.3214 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 94 + -27.1539 24.4154 24.4154 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 95 X -40.3815 38.1116 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 96 » -26.8720 31.0028 25.6531 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 97 ' -43.4800 5.0619 15.1734 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 98 ¢ -45.6263 29.3832 48.2353 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 99 Z -40.6267 37.6056 45.5203 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 100 > -26.1624 17.3703 24.6297 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 101 ® -42.7696 41.3402 40.7623 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 102 © -42.9327 40.8266 38.4231 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 103 ] -40.5046 16.1930 57.9787 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 104 é -42.7241 29.0196 47.8672 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 105 z -25.9440 26.1668 31.0067 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 106 _ 7.6237 38.7790 7.1049 -Comic_Sans_MS.ttf 77 , 8.6465 14.0000 107 ¥ -37.8181 31.1560 42.8053 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 1 t 3.0541 24.4154 40.9766 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 2 h -4.0062 27.3402 48.0853 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 3 a 13.0216 27.8462 31.0067 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 4 n 12.3547 25.2031 32.0301 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 5 P -1.2834 25.7986 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 6 o 13.0285 28.2098 31.0067 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 7 e 13.5121 29.0196 31.0067 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 8 : 10.8996 6.5913 28.6598 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 9 r 12.6933 22.4322 31.3748 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 10 l -3.5804 5.9315 47.8672 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 11 i 0.4643 5.9315 42.5060 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 12 1 -1.4872 17.7944 44.3469 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 13 | -6.3893 5.0619 59.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 14 N -1.1064 40.7623 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 15 f -3.6129 25.3570 50.5822 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 16 g 13.2249 27.1902 46.1801 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 17 d -4.0099 29.0196 47.8672 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 18 W -1.3164 55.7857 46.6937 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 19 s 10.4492 23.9737 33.7172 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 20 c 13.1541 24.4154 31.0067 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 21 u 13.1926 25.6486 31.0067 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 22 3 -1.3932 26.8266 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 23 ~ 16.7842 29.5416 13.1304 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 24 # -1.8490 48.2353 45.8884 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 25 O -1.3997 40.8266 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 26 ` -3.6790 12.1668 14.0000 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 27 @ -3.6235 46.9080 50.3381 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 28 F -1.2839 29.7514 46.8399 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 29 S 1.0311 35.2549 43.5416 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 30 p 11.1112 26.0129 48.3770 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 31 “ -2.1567 16.2052 15.1734 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 32 % -3.9584 41.4940 48.0815 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 33 £ -3.7501 40.6123 52.6252 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 34 . 37.3426 7.2587 7.2587 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 35 2 -1.3158 26.1844 44.3469 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 36 5 -2.3266 29.0970 46.6937 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 37 m 12.2555 41.1864 33.4217 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 38 V -1.1620 33.7172 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 39 6 -1.5861 28.4417 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 40 w 12.9215 36.2783 32.1801 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 41 T -0.0271 38.6252 43.4734 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 42 M -1.4154 46.1801 46.6087 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 43 G -1.2409 36.4322 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 44 b -1.9803 29.0196 46.2566 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 45 9 -1.2796 30.7150 47.0619 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 46 ; 11.2345 9.4563 37.1646 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 47 D -1.3279 33.9315 46.2566 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 48 L -1.0777 28.2917 45.9489 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 49 y 13.1290 29.5371 46.1801 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 50 ‘ -1.2497 6.2353 15.1734 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 51 \ -0.3100 24.7790 47.3535 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 52 R -2.5250 31.5203 46.6937 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 53 < 12.9988 17.3703 24.6297 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 54 4 -1.1600 32.9854 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 55 8 -2.5067 29.5371 46.6937 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 56 0 -1.3150 32.0982 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 57 A 0.7880 34.7413 42.0000 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 58 E -1.4741 30.3469 46.2566 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 59 B -1.4101 29.1734 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 60 v 12.9921 25.8031 31.3748 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 61 k -2.6512 26.1668 47.8672 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 62 J -1.1977 34.6594 47.5672 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 63 U -1.6302 37.3920 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 64 j 1.5146 19.9315 58.8567 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 65 ( -3.6217 16.3469 59.1522 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 66 7 -1.3002 32.5437 45.3741 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 67 § -3.5284 28.0000 47.8672 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 68 $ -6.0958 31.6450 60.2521 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 69 € -2.4032 37.0881 46.6937 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 70 / -3.9123 26.4584 49.4087 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 71 C -1.5951 31.7346 45.3741 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 72 * -2.6279 26.1668 23.2420 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 73 ” -1.1478 16.6424 15.3877 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 74 ? 0.8668 25.8031 44.3469 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 75 { -3.7036 19.9315 59.1522 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 76 } -3.8385 19.9315 59.1522 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 77 , 39.2757 8.6465 14.0000 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 78 I -0.1052 28.3476 43.2416 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 79 ° -5.4538 19.9315 20.0853 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 80 K -1.2486 29.1734 46.8399 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 81 H -1.0366 37.2420 46.6937 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 82 q 11.9734 25.2850 46.8399 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 83 & -1.2427 34.7451 46.9080 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 84 ’ -1.4458 8.4926 15.1734 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 85 [ -1.3284 16.1930 57.9787 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 86 - 24.8598 18.5437 5.0619 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 87 Y -0.3449 34.2353 44.7150 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 88 Q -1.1110 48.2353 56.9591 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 89 " -1.5184 15.4773 18.5437 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 90 ! -4.0048 6.0853 48.5270 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 91 x 12.2548 31.0067 32.0339 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 92 ) -3.5171 16.9248 59.1522 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 93 = 12.0524 22.4322 24.3214 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 94 + 12.0116 24.4154 24.4154 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 95 X -1.2094 38.1116 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 96 » 12.3468 31.0028 25.6531 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 97 ' -4.2997 5.0619 15.1734 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 98 ¢ -6.3322 29.3832 48.2353 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 99 Z -1.1767 37.6056 45.5203 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 100 > 10.8499 19.3535 26.8266 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 101 ® -3.7845 41.3402 40.7623 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 102 © -3.8022 40.8266 38.4231 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 103 ] -1.3696 16.1930 57.9787 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 104 é -3.5678 29.0196 47.8672 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 105 z 13.2408 26.1668 31.0067 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 106 _ 46.8295 38.7790 7.1049 -Comic_Sans_MS.ttf 78 I 28.3476 43.2416 107 ¥ 1.2989 31.1560 42.8053 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 1 t 8.2405 24.4154 40.9766 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 2 h 1.5361 27.3402 48.0853 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 3 a 18.2975 27.8462 31.0067 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 4 n 17.1201 25.2031 32.0301 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 5 P 3.6475 25.7986 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 6 o 18.3235 28.2098 31.0067 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 7 e 18.1769 29.0196 31.0067 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 8 : 15.9011 6.5913 28.6598 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 9 r 18.0133 22.4322 31.3748 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 10 l 1.1778 5.9315 47.8672 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 11 i 5.6703 5.9315 42.5060 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 12 1 3.8158 17.7944 44.3469 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 13 | -1.1839 5.0619 59.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 14 N 4.1914 40.7623 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 15 f 1.3495 25.3570 50.5822 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 16 g 18.1876 27.1902 46.1801 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 17 d 1.2173 29.0196 47.8672 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 18 W 3.6507 55.7857 46.6937 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 19 s 15.2771 23.9737 33.7172 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 20 c 18.2930 24.4154 31.0067 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 21 u 18.1891 25.6486 31.0067 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 22 3 3.9927 26.8266 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 23 ~ 22.1647 29.5416 13.1304 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 24 # 3.2870 48.2353 45.8884 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 25 O 3.7269 40.8266 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 26 ` 1.5195 12.1668 14.0000 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 27 @ 1.4670 46.9080 50.3381 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 28 F 3.7356 29.7514 46.8399 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 29 S 6.2595 35.2549 43.5416 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 30 p 16.2595 26.0129 48.3770 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 31 “ 2.6930 16.2052 15.1734 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 32 % 1.2332 41.4940 48.0815 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 33 £ 1.3153 40.6123 52.6252 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 34 . 42.8170 7.2587 7.2587 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 35 2 3.6285 26.1844 44.3469 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 36 5 2.3208 29.0970 46.6937 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 37 m 17.1369 41.1864 33.4217 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 38 V 3.7934 33.7172 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 39 6 3.7214 28.4417 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 40 w 18.0783 36.2783 32.1801 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 41 T 4.3942 38.6252 43.4734 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 42 M 3.8049 46.1801 46.6087 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 43 G 3.6352 36.4322 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 44 b 2.8398 29.0196 46.2566 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 45 9 3.8186 30.7150 47.0619 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 46 ; 16.3245 9.4563 37.1646 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 47 D 3.8140 33.9315 46.2566 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 48 L 3.6430 28.2917 45.9489 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 49 y 18.1678 29.5371 46.1801 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 50 ‘ 3.6643 6.2353 15.1734 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 51 \ 4.6272 24.7790 47.3535 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 52 R 2.6021 31.5203 46.6937 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 53 < 15.7509 19.3535 26.8266 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 54 4 3.6009 32.9854 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 55 8 2.6623 29.5371 46.6937 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 56 0 3.8710 32.0982 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 57 A 6.1048 34.7413 42.0000 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 58 E 3.6777 30.3469 46.2566 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 59 B 3.5771 29.1734 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 60 v 18.3115 25.8031 31.3748 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 61 k 2.6605 26.1668 47.8672 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 62 J 3.6187 34.6594 47.5672 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 63 U 3.7769 37.3920 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 64 j 6.3665 19.9315 58.8567 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 65 ( 1.2173 16.9248 59.1522 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 66 7 3.9588 32.5437 45.3741 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 67 § 1.3026 28.0000 47.8672 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 68 $ -0.9142 31.6450 60.2521 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 69 € 2.5433 37.0881 46.6937 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 70 / 1.3658 26.4584 49.4087 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 71 C 3.9717 31.7346 45.3741 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 72 * 2.6870 26.1668 23.2420 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 73 ” 3.7279 16.6424 15.3877 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 74 ? 5.8514 25.8031 44.3469 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 75 { 1.1620 19.9315 59.1522 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 76 } 1.3122 19.9315 59.1522 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 77 , 44.3641 8.6465 14.0000 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 78 I 4.9709 28.3476 43.2416 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 79 ° 0.2530 19.9315 20.0853 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 80 K 3.7831 29.1734 46.8399 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 81 H 3.9497 37.2420 46.6937 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 82 q 16.9253 25.2850 46.8399 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 83 & 3.5559 34.7451 46.9080 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 84 ’ 3.7678 8.4926 15.1734 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 85 [ 3.7290 16.1930 57.9787 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 86 - 29.9165 18.5437 5.0619 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 87 Y 4.9035 34.2353 44.7150 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 88 Q 3.7509 48.2353 56.9591 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 89 " 4.0371 15.4773 18.5437 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 90 ! 1.1653 6.0853 48.5270 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 91 x 17.3973 31.0067 32.0339 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 92 ) 1.4598 16.3469 59.1522 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 93 = 16.9258 22.4322 24.3214 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 94 + 17.1556 24.4154 24.4154 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 95 X 4.1597 38.1116 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 96 » 17.4399 31.0028 25.6531 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 97 ' 0.9326 5.0619 15.1734 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 98 ¢ -1.2195 29.3832 48.2353 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 99 Z 3.7444 37.6056 45.5203 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 100 > 17.9138 17.3703 24.6297 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 101 ® 1.3037 41.3402 40.7623 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 102 © 1.3894 40.8266 38.4231 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 103 ] 3.8678 16.1930 57.9787 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 104 é 1.3052 29.0196 47.8672 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 105 z 18.5033 26.1668 31.0067 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 106 _ 51.8861 38.7790 7.1049 -Comic_Sans_MS.ttf 79 ° 19.9315 20.0853 107 ¥ 6.5343 31.1560 42.8053 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 1 t 4.3598 24.4154 40.9766 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 2 h -2.3969 27.3402 48.0853 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 3 a 14.3513 27.8462 31.0067 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 4 n 13.6515 25.2031 32.0301 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 5 P 0.1546 25.7986 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 6 o 14.4685 28.2098 31.0067 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 7 e 14.4822 29.0196 31.0067 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 8 : 12.1622 6.5913 28.6598 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 9 r 14.1580 22.4322 31.3748 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 10 l -2.3525 5.9315 47.8672 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 11 i 1.7584 5.9315 42.5060 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 12 1 -0.1571 17.7944 44.3469 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 13 | -4.9574 5.0619 59.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 14 N 0.2470 40.7623 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 15 f -2.4238 25.3570 50.5822 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 16 g 14.6962 27.1902 46.1801 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 17 d -2.3685 29.0196 47.8672 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 18 W -0.0847 55.7857 46.6937 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 19 s 11.6659 23.9737 33.7172 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 20 c 14.4741 24.4154 31.0067 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 21 u 14.1625 25.6486 31.0067 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 22 3 -0.3653 26.8266 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 23 ~ 18.1969 29.5416 13.1304 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 24 # -0.6848 48.2353 45.8884 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 25 O -0.0095 40.8266 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 26 ` -2.4158 12.1668 14.0000 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 27 @ -2.1716 46.9080 50.3381 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 28 F 0.0524 29.7514 46.8399 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 29 S 2.3367 35.2549 43.5416 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 30 p 12.3589 26.0129 48.3770 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 31 “ -0.9144 16.2052 15.1734 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 32 % -2.6570 41.4940 48.0815 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 33 £ -2.2947 40.6123 52.6252 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 34 . 38.6187 7.2587 7.2587 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 35 2 0.0997 26.1844 44.3469 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 36 5 -1.1807 29.0970 46.6937 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 37 m 13.5573 41.1864 33.4217 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 38 V -0.1669 33.7172 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 39 6 -0.0260 28.4417 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 40 w 14.6263 36.2783 32.1801 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 41 T 0.7776 38.6252 43.4734 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 42 M 0.1441 46.1801 46.6087 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 43 G 0.0935 36.4322 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 44 b -0.6700 29.0196 46.2566 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 45 9 0.1383 30.7150 47.0619 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 46 ; 12.7711 9.4563 37.1646 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 47 D -0.0651 33.9315 46.2566 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 48 L 0.0381 28.2917 45.9489 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 49 y 14.2639 29.5371 46.1801 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 50 ‘ -0.2867 6.2353 15.1734 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 51 \ 0.7909 24.7790 47.3535 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 52 R -1.0640 31.5203 46.6937 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 53 < 13.7390 17.3703 24.6297 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 54 4 0.0833 32.9854 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 55 8 -1.3452 29.5371 46.6937 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 56 0 -0.3366 32.0982 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 57 A 2.4719 34.7413 42.0000 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 58 E 0.1911 30.3469 46.2566 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 59 B -0.2844 29.1734 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 60 v 14.7903 25.8031 31.3748 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 61 k -1.2004 26.1668 47.8672 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 62 J -0.3303 34.6594 47.5672 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 63 U 0.0512 37.3920 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 64 j 2.5483 19.9315 58.8567 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 65 ( -2.5436 16.3469 59.1522 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 66 7 0.0381 32.5437 45.3741 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 67 § -1.9437 28.0000 47.8672 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 68 $ -5.0156 31.6450 60.2521 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 69 € -1.0993 37.0881 46.6937 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 70 / -2.4765 26.4584 49.4087 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 71 C 0.2148 31.7346 45.3741 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 72 * -1.4843 26.1668 23.2420 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 73 ” 0.4121 16.6424 15.3877 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 74 ? 2.3243 25.8031 44.3469 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 75 { -2.0072 19.9315 59.1522 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 76 } -2.4011 19.9315 59.1522 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 77 , 40.3072 8.6465 14.0000 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 78 I 1.0229 28.3476 43.2416 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 79 ° -3.5183 19.9315 20.0853 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 80 K 0.2722 29.1734 46.8399 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 81 H 0.1626 37.2420 46.6937 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 82 q 13.3297 25.2850 46.8399 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 83 & -0.0812 34.7451 46.9080 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 84 ’ -0.3524 8.4926 15.1734 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 85 [ -0.1469 16.1930 57.9787 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 86 - 26.7177 18.5437 5.0619 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 87 Y 1.1798 34.2353 44.7150 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 88 Q -0.1603 48.2353 56.9591 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 89 " 0.0097 15.4773 18.5437 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 90 ! -2.2425 6.0853 48.5270 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 91 x 13.3608 31.0067 32.0339 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 92 ) -2.3977 16.9248 59.1522 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 93 = 13.5561 22.4322 24.3214 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 94 + 13.2779 24.4154 24.4154 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 95 X 0.0417 38.1116 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 96 » 13.7567 31.0028 25.6531 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 97 ' -2.9357 5.0619 15.1734 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 98 ¢ -5.1976 29.3832 48.2353 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 99 Z -0.0658 37.6056 45.5203 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 100 > 12.1955 19.3535 26.8266 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 101 ® -2.3757 41.3402 40.7623 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 102 © -2.3423 40.8266 38.4231 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 103 ] 0.0362 16.1930 57.9787 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 104 é -2.0974 29.0196 47.8672 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 105 z 14.7204 26.1668 31.0067 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 106 _ 48.3270 38.7790 7.1049 -Comic_Sans_MS.ttf 80 K 29.1734 46.8399 107 ¥ 2.4988 31.1560 42.8053 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 1 t 4.9001 24.4154 40.9766 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 2 h -2.2181 27.3402 48.0853 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 3 a 14.5990 27.8462 31.0067 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 4 n 13.6179 25.2031 32.0301 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 5 P -0.2171 25.7986 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 6 o 14.6266 28.2098 31.0067 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 7 e 14.3310 29.0196 31.0067 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 8 : 12.0540 6.5913 28.6598 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 9 r 13.9374 22.4322 31.3748 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 10 l -2.4284 5.9315 47.8672 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 11 i 1.8858 5.9315 42.5060 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 12 1 0.0287 17.7944 44.3469 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 13 | -4.8003 5.0619 59.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 14 N -0.1938 40.7623 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 15 f -2.2597 25.3570 50.5822 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 16 g 14.4325 27.1902 46.1801 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 17 d -2.2165 29.0196 47.8672 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 18 W 0.0703 55.7857 46.6937 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 19 s 12.0033 23.9737 33.7172 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 20 c 14.5926 24.4154 31.0067 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 21 u 14.6060 25.6486 31.0067 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 22 3 -0.2048 26.8266 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 23 ~ 18.2407 29.5416 13.1304 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 24 # -0.5770 48.2353 45.8884 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 25 O -0.3206 40.8266 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 26 ` -2.3251 12.1668 14.0000 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 27 @ -2.3475 46.9080 50.3381 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 28 F -0.1494 29.7514 46.8399 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 29 S 2.0979 35.2549 43.5416 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 30 p 12.0533 26.0129 48.3770 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 31 “ -0.6257 16.2052 15.1734 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 32 % -2.9809 41.4940 48.0815 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 33 £ -2.2042 40.6123 52.6252 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 34 . 38.7565 7.2587 7.2587 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 35 2 0.2868 26.1844 44.3469 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 36 5 -1.0252 29.0970 46.6937 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 37 m 13.6629 41.1864 33.4217 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 38 V -0.1182 33.7172 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 39 6 0.1780 28.4417 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 40 w 14.5293 36.2783 32.1801 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 41 T 0.9106 38.6252 43.4734 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 42 M -0.0955 46.1801 46.6087 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 43 G 0.3051 36.4322 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 44 b -0.6246 29.0196 46.2566 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 45 9 0.0679 30.7150 47.0619 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 46 ; 12.7258 9.4563 37.1646 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 47 D -0.1504 33.9315 46.2566 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 48 L -0.4279 28.2917 45.9489 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 49 y 14.7324 29.5371 46.1801 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 50 ‘ -0.4727 6.2353 15.1734 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 51 \ 1.0178 24.7790 47.3535 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 52 R -1.2602 31.5203 46.6937 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 53 < 14.4677 17.3703 24.6297 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 54 4 -0.3167 32.9854 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 55 8 -1.2987 29.5371 46.6937 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 56 0 -0.0242 32.0982 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 57 A 2.3020 34.7413 42.0000 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 58 E -0.2425 30.3469 46.2566 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 59 B 0.4352 29.1734 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 60 v 14.2407 25.8031 31.3748 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 61 k -1.2514 26.1668 47.8672 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 62 J -0.0185 34.6594 47.5672 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 63 U -0.2364 37.3920 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 64 j 2.8090 19.9315 58.8567 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 65 ( -2.0460 16.3469 59.1522 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 66 7 0.2166 32.5437 45.3741 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 67 § -2.2041 28.0000 47.8672 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 68 $ -4.6688 31.6450 60.2521 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 69 € -1.4471 37.0881 46.6937 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 70 / -2.3222 26.4584 49.4087 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 71 C -0.0610 31.7346 45.3741 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 72 * -1.5655 26.1668 23.2420 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 73 ” 0.0269 16.6424 15.3877 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 74 ? 1.7665 25.8031 44.3469 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 75 { -2.4495 19.9315 59.1522 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 76 } -2.3788 19.9315 59.1522 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 77 , 40.1638 8.6465 14.0000 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 78 I 1.3076 28.3476 43.2416 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 79 ° -3.8126 19.9315 20.0853 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 80 K 0.3296 29.1734 46.8399 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 81 H 0.3015 37.2420 46.6937 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 82 q 13.1697 25.2850 46.8399 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 83 & 0.2555 34.7451 46.9080 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 84 ’ 0.1841 8.4926 15.1734 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 85 [ -0.1747 16.1930 57.9787 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 86 - 26.5582 18.5437 5.0619 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 87 Y 1.1657 34.2353 44.7150 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 88 Q 0.2859 48.2353 56.9591 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 89 " -0.0557 15.4773 18.5437 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 90 ! -2.0763 6.0853 48.5270 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 91 x 13.3629 31.0067 32.0339 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 92 ) -1.9743 16.9248 59.1522 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 93 = 13.4970 22.4322 24.3214 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 94 + 13.3357 24.4154 24.4154 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 95 X -0.0325 38.1116 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 96 » 13.7255 31.0028 25.6531 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 97 ' -2.9141 5.0619 15.1734 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 98 ¢ -4.9298 29.3832 48.2353 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 99 Z 0.1553 37.6056 45.5203 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 100 > 11.8410 19.3535 26.8266 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 101 ® -2.3321 41.3402 40.7623 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 102 © -2.3996 40.8266 38.4231 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 103 ] -0.0769 16.1930 57.9787 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 104 é -2.4169 29.0196 47.8672 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 105 z 14.3013 26.1668 31.0067 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 106 _ 48.0053 38.7790 7.1049 -Comic_Sans_MS.ttf 81 H 37.2420 46.6937 107 ¥ 2.7108 31.1560 42.8053 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 1 t -8.9745 24.4154 40.9766 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 2 h -15.9193 27.3402 48.0853 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 3 a 1.0479 27.8462 31.0067 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 4 n 0.2603 25.2031 32.0301 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 5 P -13.3045 25.7986 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 6 o 1.1286 28.2098 31.0067 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 7 e 1.2124 29.0196 31.0067 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 8 : -1.2651 6.5913 28.6598 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 9 r 0.6803 22.4322 31.3748 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 10 l -15.2349 5.9315 47.8672 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 11 i -11.4569 5.9315 42.5060 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 12 1 -13.3346 17.7944 44.3469 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 13 | -18.0708 5.0619 59.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 14 N -13.4287 40.7623 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 15 f -15.7008 25.3570 50.5822 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 16 g 1.2711 27.1902 46.1801 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 17 d -15.6892 29.0196 47.8672 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 18 W -13.1741 55.7857 46.6937 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 19 s -1.7362 23.9737 33.7172 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 20 c 1.3378 24.4154 31.0067 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 21 u 1.0354 25.6486 31.0067 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 22 3 -13.2219 26.8266 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 23 ~ 4.8594 29.5416 13.1304 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 24 # -13.8019 48.2353 45.8884 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 25 O -13.5515 40.8266 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 26 ` -16.0879 12.1668 14.0000 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 27 @ -15.6170 46.9080 50.3381 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 28 F -13.4437 29.7514 46.8399 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 29 S -11.0566 35.2549 43.5416 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 30 p -1.2177 26.0129 48.3770 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 31 “ -14.1279 16.2052 15.1734 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 32 % -15.9343 41.4940 48.0815 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 33 £ -15.9365 40.6123 52.6252 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 34 . 25.4301 7.2587 7.2587 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 35 2 -13.3745 26.1844 44.3469 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 36 5 -14.2166 29.0970 46.6937 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 37 m -0.1639 41.1864 33.4217 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 38 V -13.1956 33.7172 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 39 6 -13.3090 28.4417 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 40 w 0.7722 36.2783 32.1801 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 41 T -12.5092 38.6252 43.4734 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 42 M -13.3069 46.1801 46.6087 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 43 G -13.2552 36.4322 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 44 b -14.0667 29.0196 46.2566 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 45 9 -13.2541 30.7150 47.0619 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 46 ; -0.6661 9.4563 37.1646 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 47 D -13.2958 33.9315 46.2566 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 48 L -13.0824 28.2917 45.9489 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 49 y 0.9250 29.5371 46.1801 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 50 ‘ -12.8856 6.2353 15.1734 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 51 \ -12.4666 24.7790 47.3535 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 52 R -14.3712 31.5203 46.6937 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 53 < 1.0943 17.3703 24.6297 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 54 4 -13.3504 32.9854 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 55 8 -14.2076 29.5371 46.6937 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 56 0 -13.1817 32.0982 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 57 A -10.9804 34.7413 42.0000 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 58 E -13.8212 30.3469 46.2566 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 59 B -13.2815 29.1734 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 60 v 1.0708 25.8031 31.3748 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 61 k -14.4479 26.1668 47.8672 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 62 J -13.5065 34.6594 47.5672 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 63 U -13.1730 37.3920 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 64 j -10.9861 19.9315 58.8567 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 65 ( -15.4387 16.3469 59.1522 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 66 7 -13.0115 32.5437 45.3741 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 67 § -15.8665 28.0000 47.8672 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 68 $ -18.1502 31.6450 60.2521 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 69 € -14.2212 37.0881 46.6937 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 70 / -15.9105 26.4584 49.4087 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 71 C -13.3515 31.7346 45.3741 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 72 * -14.7454 26.1668 23.2420 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 73 ” -13.1152 16.6424 15.3877 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 74 ? -10.8204 25.8031 44.3469 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 75 { -15.7780 19.9315 59.1522 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 76 } -15.6913 19.9315 59.1522 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 77 , 27.2970 8.6465 14.0000 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 78 I -12.2281 28.3476 43.2416 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 79 ° -16.7754 19.9315 20.0853 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 80 K -13.2016 29.1734 46.8399 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 81 H -13.3364 37.2420 46.6937 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 82 q 0.1705 25.2850 46.8399 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 83 & -13.3829 34.7451 46.9080 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 84 ’ -13.2398 8.4926 15.1734 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 85 [ -13.1477 16.1930 57.9787 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 86 - 13.1107 18.5437 5.0619 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 87 Y -11.9068 34.2353 44.7150 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 88 Q -13.5666 48.2353 56.9591 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 89 " -13.3939 15.4773 18.5437 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 90 ! -15.6045 6.0853 48.5270 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 91 x 0.0073 31.0067 32.0339 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 92 ) -15.6871 16.9248 59.1522 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 93 = -0.2256 22.4322 24.3214 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 94 + 0.2137 24.4154 24.4154 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 95 X -13.4144 38.1116 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 96 » 0.4589 31.0028 25.6531 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 97 ' -16.3205 5.0619 15.1734 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 98 ¢ -18.4382 29.3832 48.2353 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 99 Z -13.0950 37.6056 45.5203 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 100 > -1.2305 19.3535 26.8266 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 101 ® -15.4530 41.3402 40.7623 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 102 © -15.7612 40.8266 38.4231 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 103 ] -13.3885 16.1930 57.9787 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 104 é -15.6246 29.0196 47.8672 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 105 z 1.3060 26.1668 31.0067 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 106 _ 34.5961 38.7790 7.1049 -Comic_Sans_MS.ttf 82 q 25.2850 46.8399 107 ¥ -10.6239 31.1560 42.8053 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 1 t 4.4552 24.4154 40.9766 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 2 h -2.0855 27.3402 48.0853 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 3 a 14.6827 27.8462 31.0067 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 4 n 13.3863 25.2031 32.0301 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 5 P 0.0952 25.7986 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 6 o 14.2555 28.2098 31.0067 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 7 e 14.4529 29.0196 31.0067 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 8 : 12.4617 6.5913 28.6598 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 9 r 14.4418 22.4322 31.3748 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 10 l -2.2042 5.9315 47.8672 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 11 i 1.9262 5.9315 42.5060 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 12 1 -0.1516 17.7944 44.3469 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 13 | -5.0526 5.0619 59.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 14 N 0.0662 40.7623 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 15 f -2.4414 25.3570 50.5822 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 16 g 14.7262 27.1902 46.1801 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 17 d -2.3794 29.0196 47.8672 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 18 W 0.1942 55.7857 46.6937 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 19 s 11.5596 23.9737 33.7172 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 20 c 14.5970 24.4154 31.0067 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 21 u 14.4157 25.6486 31.0067 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 22 3 0.0165 26.8266 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 23 ~ 18.0726 29.5416 13.1304 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 24 # -0.2912 48.2353 45.8884 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 25 O -0.0333 40.8266 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 26 ` -2.6211 12.1668 14.0000 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 27 @ -2.4920 46.9080 50.3381 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 28 F -0.1900 29.7514 46.8399 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 29 S 2.5155 35.2549 43.5416 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 30 p 12.4087 26.0129 48.3770 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 31 “ -1.0805 16.2052 15.1734 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 32 % -2.7085 41.4940 48.0815 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 33 £ -2.4210 40.6123 52.6252 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 34 . 38.4729 7.2587 7.2587 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 35 2 -0.0909 26.1844 44.3469 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 36 5 -1.2217 29.0970 46.6937 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 37 m 13.4804 41.1864 33.4217 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 38 V 0.0019 33.7172 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 39 6 -0.4153 28.4417 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 40 w 14.4741 36.2783 32.1801 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 41 T 0.9616 38.6252 43.4734 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 42 M 0.1364 46.1801 46.6087 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 43 G 0.1339 36.4322 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 44 b -0.7206 29.0196 46.2566 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 45 9 -0.0500 30.7150 47.0619 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 46 ; 12.6963 9.4563 37.1646 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 47 D -0.1155 33.9315 46.2566 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 48 L 0.2065 28.2917 45.9489 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 49 y 14.3083 29.5371 46.1801 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 50 ‘ 0.0147 6.2353 15.1734 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 51 \ 0.8520 24.7790 47.3535 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 52 R -1.4681 31.5203 46.6937 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 53 < 12.1857 19.3535 26.8266 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 54 4 -0.1084 32.9854 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 55 8 -1.2164 29.5371 46.6937 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 56 0 0.0343 32.0982 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 57 A 2.6558 34.7413 42.0000 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 58 E -0.3772 30.3469 46.2566 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 59 B -0.1484 29.1734 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 60 v 14.4816 25.8031 31.3748 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 61 k -1.2460 26.1668 47.8672 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 62 J -0.0900 34.6594 47.5672 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 63 U 0.0045 37.3920 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 64 j 2.3546 19.9315 58.8567 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 65 ( -2.3479 16.9248 59.1522 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 66 7 0.1787 32.5437 45.3741 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 67 § -2.4480 28.0000 47.8672 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 68 $ -5.0031 31.6450 60.2521 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 69 € -1.1980 37.0881 46.6937 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 70 / -2.3454 26.4584 49.4087 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 71 C 0.1112 31.7346 45.3741 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 72 * -1.5358 26.1668 23.2420 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 73 ” 0.0010 16.6424 15.3877 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 74 ? 2.3957 25.8031 44.3469 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 75 { -2.5114 19.9315 59.1522 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 76 } -2.4882 19.9315 59.1522 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 77 , 40.5609 8.6465 14.0000 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 78 I 1.3332 28.3476 43.2416 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 79 ° -3.7884 19.9315 20.0853 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 80 K -0.0149 29.1734 46.8399 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 81 H 0.4527 37.2420 46.6937 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 82 q 13.3577 25.2850 46.8399 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 83 & 0.0973 34.7451 46.9080 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 84 ’ 0.0714 8.4926 15.1734 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 85 [ -0.0760 16.1930 57.9787 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 86 - 26.4755 18.5437 5.0619 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 87 Y 0.9250 34.2353 44.7150 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 88 Q 0.0879 48.2353 56.9591 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 89 " -0.0760 15.4773 18.5437 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 90 ! -2.3226 6.0853 48.5270 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 91 x 13.5721 31.0067 32.0339 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 92 ) -2.4312 16.3469 59.1522 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 93 = 13.3217 22.4322 24.3214 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 94 + 13.4154 24.4154 24.4154 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 95 X -0.2002 38.1116 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 96 » 13.5966 31.0028 25.6531 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 97 ' -2.9172 5.0619 15.1734 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 98 ¢ -4.9278 29.3832 48.2353 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 99 Z 0.2785 37.6056 45.5203 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 100 > 14.1851 17.3703 24.6297 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 101 ® -2.3367 41.3402 40.7623 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 102 © -2.5355 40.8266 38.4231 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 103 ] -0.2100 16.1930 57.9787 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 104 é -2.3580 29.0196 47.8672 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 105 z 14.4279 26.1668 31.0067 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 106 _ 47.9743 38.7790 7.1049 -Comic_Sans_MS.ttf 83 & 34.7451 46.9080 107 ¥ 2.8521 31.1560 42.8053 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 1 t 4.5475 24.4154 40.9766 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 2 h -2.3507 27.3402 48.0853 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 3 a 14.6424 27.8462 31.0067 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 4 n 13.3262 25.2031 32.0301 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 5 P -0.2183 25.7986 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 6 o 14.6008 28.2098 31.0067 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 7 e 14.4303 29.0196 31.0067 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 8 : 12.3336 6.5913 28.6598 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 9 r 14.1697 22.4322 31.3748 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 10 l -2.1638 5.9315 47.8672 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 11 i 1.7552 5.9315 42.5060 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 12 1 -0.2133 17.7944 44.3469 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 13 | -4.8682 5.0619 59.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 14 N -0.0857 40.7623 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 15 f -2.1822 25.3570 50.5822 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 16 g 14.5234 27.1902 46.1801 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 17 d -2.2441 29.0196 47.8672 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 18 W -0.0045 55.7857 46.6937 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 19 s 11.8903 23.9737 33.7172 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 20 c 14.6132 24.4154 31.0067 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 21 u 14.5048 25.6486 31.0067 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 22 3 0.1742 26.8266 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 23 ~ 18.1982 29.5416 13.1304 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 24 # -0.2155 48.2353 45.8884 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 25 O -0.0500 40.8266 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 26 ` -2.3489 12.1668 14.0000 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 27 @ -2.4340 46.9080 50.3381 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 28 F -0.3268 29.7514 46.8399 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 29 S 2.4862 35.2549 43.5416 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 30 p 12.4701 26.0129 48.3770 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 31 “ -0.7206 16.2052 15.1734 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 32 % -2.6566 41.4940 48.0815 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 33 £ -2.4385 40.6123 52.6252 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 34 . 38.6068 7.2587 7.2587 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 35 2 0.0801 26.1844 44.3469 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 36 5 -1.2449 29.0970 46.6937 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 37 m 13.4387 41.1864 33.4217 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 38 V 0.2645 33.7172 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 39 6 0.0500 28.4417 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 40 w 14.4482 36.2783 32.1801 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 41 T 0.8832 38.6252 43.4734 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 42 M 0.0947 46.1801 46.6087 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 43 G -0.0008 36.4322 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 44 b -0.8734 29.0196 46.2566 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 45 9 0.0412 30.7150 47.0619 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 46 ; 12.8302 9.4563 37.1646 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 47 D 0.0280 33.9315 46.2566 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 48 L -0.0455 28.2917 45.9489 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 49 y 14.5136 29.5371 46.1801 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 50 ‘ 0.1499 6.2353 15.1734 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 51 \ 1.0151 24.7790 47.3535 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 52 R -1.0511 31.5203 46.6937 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 53 < 12.2437 19.3535 26.8266 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 54 4 -0.1710 32.9854 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 55 8 -1.3306 29.5371 46.6937 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 56 0 -0.0115 32.0982 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 57 A 2.3469 34.7413 42.0000 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 58 E 0.0736 30.3469 46.2566 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 59 B 0.0000 29.1734 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 60 v 14.5158 25.8031 31.3748 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 61 k -1.2189 26.1668 47.8672 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 62 J 0.0812 34.6594 47.5672 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 63 U -0.1788 37.3920 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 64 j 2.5885 19.9315 58.8567 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 65 ( -2.2754 16.9248 59.1522 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 66 7 0.1916 32.5437 45.3741 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 67 § -2.0509 28.0000 47.8672 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 68 $ -4.9119 31.6450 60.2521 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 69 € -1.2536 37.0881 46.6937 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 70 / -2.6221 26.4584 49.4087 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 71 C 0.1462 31.7346 45.3741 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 72 * -1.3273 26.1668 23.2420 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 73 ” -0.0024 16.6424 15.3877 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 74 ? 2.1969 25.8031 44.3469 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 75 { -2.4326 19.9315 59.1522 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 76 } -2.3469 19.9315 59.1522 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 77 , 40.4584 8.6465 14.0000 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 78 I 1.3141 28.3476 43.2416 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 79 ° -3.8955 19.9315 20.0853 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 80 K -0.3002 29.1734 46.8399 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 81 H -0.0357 37.2420 46.6937 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 82 q 13.2590 25.2850 46.8399 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 83 & 0.0315 34.7451 46.9080 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 84 ’ -0.0368 8.4926 15.1734 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 85 [ -0.1728 16.1930 57.9787 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 86 - 26.3031 18.5437 5.0619 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 87 Y 1.2606 34.2353 44.7150 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 88 Q -0.0070 48.2353 56.9591 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 89 " -0.2600 15.4773 18.5437 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 90 ! -2.2667 6.0853 48.5270 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 91 x 13.5605 31.0067 32.0339 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 92 ) -2.3014 16.3469 59.1522 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 93 = 13.1912 22.4322 24.3214 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 94 + 13.2601 24.4154 24.4154 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 95 X 0.0714 38.1116 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 96 » 13.7959 31.0028 25.6531 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 97 ' -2.9769 5.0619 15.1734 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 98 ¢ -5.0920 29.3832 48.2353 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 99 Z 0.1228 37.6056 45.5203 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 100 > 14.1053 17.3703 24.6297 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 101 ® -2.2514 41.3402 40.7623 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 102 © -2.5211 40.8266 38.4231 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 103 ] -0.1672 16.1930 57.9787 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 104 é -2.4878 29.0196 47.8672 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 105 z 14.5948 26.1668 31.0067 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 106 _ 47.9399 38.7790 7.1049 -Comic_Sans_MS.ttf 84 ’ 8.4926 15.1734 107 ¥ 3.0418 31.1560 42.8053 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 1 t 4.5031 24.4154 40.9766 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 2 h -2.2847 27.3402 48.0853 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 3 a 14.4682 27.8462 31.0067 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 4 n 13.6556 25.2031 32.0301 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 5 P -0.2425 25.7986 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 6 o 14.2624 28.2098 31.0067 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 7 e 14.5900 29.0196 31.0067 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 8 : 11.7227 6.5913 28.6598 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 9 r 14.0751 22.4322 31.3748 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 10 l -2.4326 5.9315 47.8672 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 11 i 1.7779 5.9315 42.5060 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 12 1 -0.0990 17.7944 44.3469 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 13 | -4.8483 5.0619 59.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 14 N 0.0742 40.7623 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 15 f -2.1996 25.3570 50.5822 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 16 g 14.7162 27.1902 46.1801 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 17 d -2.5249 29.0196 47.8672 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 18 W 0.0199 55.7857 46.6937 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 19 s 11.5282 23.9737 33.7172 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 20 c 14.6161 24.4154 31.0067 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 21 u 14.6067 25.6486 31.0067 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 22 3 0.0555 26.8266 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 23 ~ 18.3770 29.5416 13.1304 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 24 # -0.0798 48.2353 45.8884 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 25 O 0.0460 40.8266 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 26 ` -2.4816 12.1668 14.0000 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 27 @ -2.5818 46.9080 50.3381 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 28 F 0.2355 29.7514 46.8399 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 29 S 2.2473 35.2549 43.5416 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 30 p 12.1250 26.0129 48.3770 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 31 “ -0.6908 16.2052 15.1734 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 32 % -2.5520 41.4940 48.0815 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 33 £ -2.5142 40.6123 52.6252 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 34 . 38.4445 7.2587 7.2587 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 35 2 0.0714 26.1844 44.3469 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 36 5 -1.0027 29.0970 46.6937 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 37 m 13.4983 41.1864 33.4217 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 38 V -0.2490 33.7172 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 39 6 -0.0731 28.4417 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 40 w 14.1890 36.2783 32.1801 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 41 T 0.7965 38.6252 43.4734 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 42 M -0.3411 46.1801 46.6087 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 43 G -0.2984 36.4322 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 44 b -0.6886 29.0196 46.2566 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 45 9 0.0669 30.7150 47.0619 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 46 ; 12.8396 9.4563 37.1646 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 47 D -0.0277 33.9315 46.2566 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 48 L -0.0298 28.2917 45.9489 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 49 y 14.4822 29.5371 46.1801 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 50 ‘ -0.2048 6.2353 15.1734 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 51 \ 0.8605 24.7790 47.3535 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 52 R -1.2665 31.5203 46.6937 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 53 < 12.2009 19.3535 26.8266 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 54 4 0.0833 32.9854 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 55 8 -1.2574 29.5371 46.6937 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 56 0 0.0895 32.0982 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 57 A 2.6649 34.7413 42.0000 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 58 E 0.0669 30.3469 46.2566 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 59 B 0.0903 29.1734 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 60 v 14.4335 25.8031 31.3748 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 61 k -1.0906 26.1668 47.8672 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 62 J -0.1607 34.6594 47.5672 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 63 U 0.0857 37.3920 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 64 j 2.4409 19.9315 58.8567 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 65 ( -2.3367 16.9248 59.1522 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 66 7 0.2787 32.5437 45.3741 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 67 § -2.1764 28.0000 47.8672 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 68 $ -4.7762 31.6450 60.2521 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 69 € -1.2164 37.0881 46.6937 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 70 / -2.6823 26.4584 49.4087 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 71 C 0.2991 31.7346 45.3741 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 72 * -1.2898 26.1668 23.2420 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 73 ” -0.0742 16.6424 15.3877 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 74 ? 2.5258 25.8031 44.3469 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 75 { -2.5071 19.9315 59.1522 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 76 } -2.3105 19.9315 59.1522 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 77 , 40.6243 8.6465 14.0000 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 78 I 1.1565 28.3476 43.2416 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 79 ° -3.8158 19.9315 20.0853 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 80 K -0.0944 29.1734 46.8399 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 81 H -0.0424 37.2420 46.6937 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 82 q 13.5190 25.2850 46.8399 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 83 & -0.0013 34.7451 46.9080 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 84 ’ -0.0669 8.4926 15.1734 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 85 [ 0.0868 16.1930 57.9787 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 86 - 26.4130 18.5437 5.0619 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 87 Y 1.1756 34.2353 44.7150 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 88 Q 0.3530 48.2353 56.9591 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 89 " 0.2013 15.4773 18.5437 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 90 ! -2.7154 6.0853 48.5270 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 91 x 13.3485 31.0067 32.0339 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 92 ) -2.3501 16.3469 59.1522 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 93 = 13.3808 22.4322 24.3214 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 94 + 13.1205 24.4154 24.4154 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 95 X 0.0060 38.1116 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 96 » 13.8646 31.0028 25.6531 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 97 ' -2.9997 5.0619 15.1734 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 98 ¢ -4.9997 29.3832 48.2353 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 99 Z 0.0861 37.6056 45.5203 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 100 > 14.0994 17.3703 24.6297 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 101 ® -2.2500 41.3402 40.7623 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 102 © -2.5155 40.8266 38.4231 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 103 ] -0.0482 16.1930 57.9787 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 104 é -2.4592 29.0196 47.8672 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 105 z 14.5172 26.1668 31.0067 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 106 _ 47.9468 38.7790 7.1049 -Comic_Sans_MS.ttf 85 [ 16.1930 57.9787 107 ¥ 2.7150 31.1560 42.8053 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 1 t -22.1645 24.4154 40.9766 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 2 h -28.8053 27.3402 48.0853 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 3 a -11.9136 27.8462 31.0067 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 4 n -12.9298 25.2031 32.0301 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 5 P -26.3843 25.7986 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 6 o -12.1274 28.2098 31.0067 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 7 e -12.0585 29.0196 31.0067 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 8 : -14.2895 6.5913 28.6598 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 9 r -12.0544 22.4322 31.3748 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 10 l -28.8063 5.9315 47.8672 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 11 i -24.3583 5.9315 42.5060 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 12 1 -26.7531 17.7944 44.3469 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 13 | -31.0459 5.0619 59.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 14 N -26.3380 40.7623 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 15 f -29.1327 25.3570 50.5822 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 16 g -12.0018 27.1902 46.1801 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 17 d -28.6811 29.0196 47.8672 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 18 W -26.4204 55.7857 46.6937 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 19 s -14.8593 23.9737 33.7172 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 20 c -12.0857 24.4154 31.0067 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 21 u -12.2530 25.6486 31.0067 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 22 3 -26.9352 26.8266 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 23 ~ -8.2126 29.5416 13.1304 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 24 # -26.7714 48.2353 45.8884 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 25 O -26.6278 40.8266 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 26 ` -28.7150 12.1668 14.0000 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 27 @ -28.6976 46.9080 50.3381 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 28 F -26.6095 29.7514 46.8399 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 29 S -23.8705 35.2549 43.5416 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 30 p -14.0592 26.0129 48.3770 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 31 “ -27.3727 16.2052 15.1734 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 32 % -29.3569 41.4940 48.0815 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 33 £ -28.8480 40.6123 52.6252 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 34 . 12.2317 7.2587 7.2587 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 35 2 -26.7296 26.1844 44.3469 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 36 5 -27.7862 29.0970 46.6937 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 37 m -12.9527 41.1864 33.4217 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 38 V -26.5339 33.7172 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 39 6 -26.5242 28.4417 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 40 w -11.7937 36.2783 32.1801 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 41 T -25.3176 38.6252 43.4734 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 42 M -26.4584 46.1801 46.6087 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 43 G -26.6482 36.4322 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 44 b -27.1318 29.0196 46.2566 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 45 9 -26.4677 30.7150 47.0619 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 46 ; -13.7780 9.4563 37.1646 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 47 D -26.7036 33.9315 46.2566 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 48 L -26.4160 28.2917 45.9489 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 49 y -11.9470 29.5371 46.1801 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 50 ‘ -26.3945 6.2353 15.1734 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 51 \ -25.8185 24.7790 47.3535 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 52 R -27.7190 31.5203 46.6937 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 53 < -14.2917 19.3535 26.8266 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 54 4 -26.9658 32.9854 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 55 8 -27.7997 29.5371 46.6937 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 56 0 -26.5072 32.0982 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 57 A -24.2931 34.7413 42.0000 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 58 E -26.2712 30.3469 46.2566 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 59 B -26.4427 29.1734 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 60 v -11.9903 25.8031 31.3748 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 61 k -27.5174 26.1668 47.8672 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 62 J -26.2138 34.6594 47.5672 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 63 U -26.5753 37.3920 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 64 j -24.0064 19.9315 58.8567 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 65 ( -28.5758 16.9248 59.1522 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 66 7 -26.0708 32.5437 45.3741 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 67 § -28.7521 28.0000 47.8672 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 68 $ -31.4574 31.6450 60.2521 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 69 € -27.7190 37.0881 46.6937 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 70 / -28.7923 26.4584 49.4087 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 71 C -26.3063 31.7346 45.3741 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 72 * -27.8260 26.1668 23.2420 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 73 ” -26.6655 16.6424 15.3877 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 74 ? -24.1100 25.8031 44.3469 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 75 { -28.8008 19.9315 59.1522 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 76 } -28.6432 19.9315 59.1522 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 77 , 14.0887 8.6465 14.0000 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 78 I -25.1430 28.3476 43.2416 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 79 ° -30.2568 19.9315 20.0853 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 80 K -26.3175 29.1734 46.8399 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 81 H -26.5728 37.2420 46.6937 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 82 q -13.0468 25.2850 46.8399 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 83 & -26.3616 34.7451 46.9080 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 84 ’ -26.3213 8.4926 15.1734 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 85 [ -26.2985 16.1930 57.9787 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 86 - -0.0895 18.5437 5.0619 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 87 Y -25.5380 34.2353 44.7150 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 88 Q -26.0390 48.2353 56.9591 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 89 " -26.2416 15.4773 18.5437 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 90 ! -28.8508 6.0853 48.5270 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 91 x -12.8835 31.0067 32.0339 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 92 ) -28.9714 16.3469 59.1522 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 93 = -13.1316 22.4322 24.3214 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 94 + -13.1907 24.4154 24.4154 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 95 X -26.4144 38.1116 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 96 » -12.7773 31.0028 25.6531 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 97 ' -29.3318 5.0619 15.1734 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 98 ¢ -31.6330 29.3832 48.2353 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 99 Z -26.5528 37.6056 45.5203 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 100 > -12.6153 17.3703 24.6297 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 101 ® -28.6597 41.3402 40.7623 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 102 © -29.0705 40.8266 38.4231 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 103 ] -26.3412 16.1930 57.9787 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 104 é -28.8012 29.0196 47.8672 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 105 z -12.1856 26.1668 31.0067 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 106 _ 21.7558 38.7790 7.1049 -Comic_Sans_MS.ttf 86 - 18.5437 5.0619 107 ¥ -23.7018 31.1560 42.8053 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 1 t 3.0763 24.4154 40.9766 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 2 h -3.6886 27.3402 48.0853 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 3 a 13.4880 27.8462 31.0067 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 4 n 11.9375 25.2031 32.0301 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 5 P -1.4159 25.7986 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 6 o 13.2383 28.2098 31.0067 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 7 e 13.3202 29.0196 31.0067 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 8 : 10.9681 6.5913 28.6598 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 9 r 12.8643 22.4322 31.3748 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 10 l -3.3215 5.9315 47.8672 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 11 i 0.2567 5.9315 42.5060 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 12 1 -1.1925 17.7944 44.3469 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 13 | -6.3142 5.0619 59.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 14 N -1.3428 40.7623 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 15 f -3.3607 25.3570 50.5822 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 16 g 13.4543 27.1902 46.1801 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 17 d -3.6451 29.0196 47.8672 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 18 W -1.1269 55.7857 46.6937 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 19 s 10.3203 23.9737 33.7172 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 20 c 13.3454 24.4154 31.0067 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 21 u 13.1932 25.6486 31.0067 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 22 3 -1.4640 26.8266 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 23 ~ 17.0388 29.5416 13.1304 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 24 # -1.5370 48.2353 45.8884 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 25 O -0.9708 40.8266 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 26 ` -3.5203 12.1668 14.0000 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 27 @ -3.7456 46.9080 50.3381 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 28 F -0.9901 29.7514 46.8399 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 29 S 1.3203 35.2549 43.5416 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 30 p 11.3423 26.0129 48.3770 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 31 “ -2.0255 16.2052 15.1734 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 32 % -3.6391 41.4940 48.0815 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 33 £ -3.6448 40.6123 52.6252 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 34 . 37.5282 7.2587 7.2587 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 35 2 -1.0961 26.1844 44.3469 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 36 5 -2.1869 29.0970 46.6937 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 37 m 12.3600 41.1864 33.4217 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 38 V -1.2620 33.7172 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 39 6 -1.2347 28.4417 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 40 w 13.4217 36.2783 32.1801 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 41 T -0.0169 38.6252 43.4734 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 42 M -1.3062 46.1801 46.6087 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 43 G -1.0877 36.4322 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 44 b -2.0523 29.0196 46.2566 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 45 9 -1.3108 30.7150 47.0619 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 46 ; 11.8598 9.4563 37.1646 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 47 D -1.3352 33.9315 46.2566 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 48 L -1.5742 28.2917 45.9489 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 49 y 13.3913 29.5371 46.1801 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 50 ‘ -1.3004 6.2353 15.1734 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 51 \ -0.5442 24.7790 47.3535 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 52 R -2.3525 31.5203 46.6937 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 53 < 13.0454 17.3703 24.6297 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 54 4 -1.0965 32.9854 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 55 8 -2.0877 29.5371 46.6937 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 56 0 -1.1234 32.0982 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 57 A 1.2008 34.7413 42.0000 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 58 E -1.1772 30.3469 46.2566 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 59 B -1.5210 29.1734 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 60 v 13.4839 25.8031 31.3748 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 61 k -2.4196 26.1668 47.8672 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 62 J -1.0831 34.6594 47.5672 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 63 U -1.2087 37.3920 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 64 j 1.3435 19.9315 58.8567 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 65 ( -3.4461 16.3469 59.1522 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 66 7 -1.0899 32.5437 45.3741 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 67 § -3.4644 28.0000 47.8672 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 68 $ -6.0672 31.6450 60.2521 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 69 € -2.0113 37.0881 46.6937 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 70 / -3.7625 26.4584 49.4087 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 71 C -1.0213 31.7346 45.3741 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 72 * -2.5819 26.1668 23.2420 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 73 ” -1.1455 16.6424 15.3877 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 74 ? 1.0808 25.8031 44.3469 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 75 { -3.2598 19.9315 59.1522 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 76 } -3.2246 19.9315 59.1522 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 77 , 39.2828 8.6465 14.0000 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 78 I 0.3866 28.3476 43.2416 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 79 ° -4.6575 19.9315 20.0853 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 80 K -1.2823 29.1734 46.8399 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 81 H -1.3730 37.2420 46.6937 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 82 q 12.0450 25.2850 46.8399 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 83 & -1.4256 34.7451 46.9080 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 84 ’ -1.2855 8.4926 15.1734 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 85 [ -1.1611 16.1930 57.9787 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 86 - 25.4235 18.5437 5.0619 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 87 Y 0.0060 34.2353 44.7150 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 88 Q -1.3942 48.2353 56.9591 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 89 " -1.2176 15.4773 18.5437 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 90 ! -3.4366 6.0853 48.5270 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 91 x 12.2092 31.0067 32.0339 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 92 ) -3.6036 16.9248 59.1522 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 93 = 12.2382 22.4322 24.3214 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 94 + 12.2112 24.4154 24.4154 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 95 X -1.1163 38.1116 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 96 » 12.3727 31.0028 25.6531 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 97 ' -4.2809 5.0619 15.1734 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 98 ¢ -6.3357 29.3832 48.2353 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 99 Z -1.0051 37.6056 45.5203 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 100 > 11.0721 19.3535 26.8266 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 101 ® -3.7585 41.3402 40.7623 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 102 © -3.6112 40.8266 38.4231 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 103 ] -1.1780 16.1930 57.9787 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 104 é -3.3475 29.0196 47.8672 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 105 z 13.5520 26.1668 31.0067 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 106 _ 47.0078 38.7790 7.1049 -Comic_Sans_MS.ttf 87 Y 34.2353 44.7150 107 ¥ 1.7008 31.1560 42.8053 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 1 t 4.3048 24.4154 40.9766 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 2 h -2.5468 27.3402 48.0853 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 3 a 14.7865 27.8462 31.0067 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 4 n 13.2112 25.2031 32.0301 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 5 P 0.1414 25.7986 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 6 o 14.7515 28.2098 31.0067 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 7 e 14.4479 29.0196 31.0067 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 8 : 11.8288 6.5913 28.6598 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 9 r 13.7596 22.4322 31.3748 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 10 l -2.5242 5.9315 47.8672 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 11 i 1.7269 5.9315 42.5060 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 12 1 0.1954 17.7944 44.3469 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 13 | -4.9535 5.0619 59.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 14 N 0.1101 40.7623 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 15 f -2.3273 25.3570 50.5822 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 16 g 14.5539 27.1902 46.1801 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 17 d -2.4270 29.0196 47.8672 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 18 W 0.1088 55.7857 46.6937 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 19 s 11.3476 23.9737 33.7172 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 20 c 14.4740 24.4154 31.0067 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 21 u 14.3450 25.6486 31.0067 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 22 3 -0.4461 26.8266 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 23 ~ 18.4449 29.5416 13.1304 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 24 # -0.5762 48.2353 45.8884 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 25 O 0.0552 40.8266 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 26 ` -2.5801 12.1668 14.0000 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 27 @ -1.8402 46.9080 50.3381 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 28 F 0.1509 29.7514 46.8399 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 29 S 2.0452 35.2549 43.5416 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 30 p 12.2605 26.0129 48.3770 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 31 “ -0.2888 16.2052 15.1734 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 32 % -2.1808 41.4940 48.0815 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 33 £ -2.7511 40.6123 52.6252 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 34 . 38.9766 7.2587 7.2587 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 35 2 -0.1138 26.1844 44.3469 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 36 5 -1.2757 29.0970 46.6937 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 37 m 13.5155 41.1864 33.4217 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 38 V 0.0468 33.7172 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 39 6 -0.2192 28.4417 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 40 w 14.6092 36.2783 32.1801 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 41 T 0.6296 38.6252 43.4734 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 42 M -0.0773 46.1801 46.6087 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 43 G 0.1043 36.4322 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 44 b -0.3657 29.0196 46.2566 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 45 9 0.1897 30.7150 47.0619 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 46 ; 12.7080 9.4563 37.1646 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 47 D -0.0158 33.9315 46.2566 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 48 L 0.0195 28.2917 45.9489 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 49 y 14.4841 29.5371 46.1801 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 50 ‘ 0.2980 6.2353 15.1734 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 51 \ 0.8525 24.7790 47.3535 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 52 R -1.3208 31.5203 46.6937 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 53 < 13.9194 17.3703 24.6297 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 54 4 0.1728 32.9854 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 55 8 -1.4645 29.5371 46.6937 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 56 0 -0.0144 32.0982 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 57 A 2.1768 34.7413 42.0000 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 58 E 0.0020 30.3469 46.2566 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 59 B 0.1333 29.1734 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 60 v 14.3926 25.8031 31.3748 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 61 k -1.4523 26.1668 47.8672 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 62 J 0.1645 34.6594 47.5672 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 63 U 0.0694 37.3920 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 64 j 2.5490 19.9315 58.8567 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 65 ( -2.2049 16.3469 59.1522 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 66 7 0.3160 32.5437 45.3741 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 67 § -2.3723 28.0000 47.8672 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 68 $ -4.6617 31.6450 60.2521 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 69 € -1.1734 37.0881 46.6937 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 70 / -2.2607 26.4584 49.4087 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 71 C 0.4037 31.7346 45.3741 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 72 * -1.6284 26.1668 23.2420 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 73 ” -0.0010 16.6424 15.3877 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 74 ? 2.1177 25.8031 44.3469 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 75 { -2.5199 19.9315 59.1522 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 76 } -2.2350 19.9315 59.1522 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 77 , 40.5618 8.6465 14.0000 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 78 I 1.3276 28.3476 43.2416 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 79 ° -4.0267 19.9315 20.0853 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 80 K 0.0164 29.1734 46.8399 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 81 H 0.2443 37.2420 46.6937 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 82 q 13.5083 25.2850 46.8399 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 83 & -0.1516 34.7451 46.9080 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 84 ’ 0.0041 8.4926 15.1734 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 85 [ 0.0057 16.1930 57.9787 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 86 - 26.6524 18.5437 5.0619 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 87 Y 1.1415 34.2353 44.7150 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 88 Q 0.2675 48.2353 56.9591 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 89 " 0.1400 15.4773 18.5437 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 90 ! -2.2732 6.0853 48.5270 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 91 x 13.5267 31.0067 32.0339 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 92 ) -2.2420 16.9248 59.1522 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 93 = 13.5063 22.4322 24.3214 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 94 + 13.5162 24.4154 24.4154 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 95 X 0.0242 38.1116 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 96 » 13.4908 31.0028 25.6531 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 97 ' -2.8806 5.0619 15.1734 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 98 ¢ -5.0214 29.3832 48.2353 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 99 Z 0.3471 37.6056 45.5203 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 100 > 12.1452 19.3535 26.8266 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 101 ® -2.5299 41.3402 40.7623 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 102 © -2.4572 40.8266 38.4231 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 103 ] -0.2833 16.1930 57.9787 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 104 é -2.6796 29.0196 47.8672 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 105 z 14.6987 26.1668 31.0067 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 106 _ 47.8191 38.7790 7.1049 -Comic_Sans_MS.ttf 88 Q 48.2353 56.9591 107 ¥ 2.3024 31.1560 42.8053 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 1 t 4.3817 24.4154 40.9766 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 2 h -2.1726 27.3402 48.0853 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 3 a 14.2986 27.8462 31.0067 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 4 n 13.4630 25.2031 32.0301 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 5 P 0.0885 25.7986 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 6 o 14.5924 28.2098 31.0067 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 7 e 14.6535 29.0196 31.0067 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 8 : 12.1671 6.5913 28.6598 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 9 r 14.2256 22.4322 31.3748 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 10 l -2.2600 5.9315 47.8672 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 11 i 1.8914 5.9315 42.5060 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 12 1 -0.0353 17.7944 44.3469 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 13 | -5.0566 5.0619 59.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 14 N 0.1557 40.7623 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 15 f -1.9459 25.3570 50.5822 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 16 g 14.7344 27.1902 46.1801 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 17 d -2.3042 29.0196 47.8672 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 18 W -0.0514 55.7857 46.6937 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 19 s 11.5269 23.9737 33.7172 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 20 c 14.2614 24.4154 31.0067 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 21 u 14.6371 25.6486 31.0067 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 22 3 0.0339 26.8266 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 23 ~ 18.2868 29.5416 13.1304 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 24 # -0.5938 48.2353 45.8884 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 25 O -0.0755 40.8266 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 26 ` -2.5634 12.1668 14.0000 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 27 @ -2.1832 46.9080 50.3381 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 28 F -0.0024 29.7514 46.8399 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 29 S 2.4312 35.2549 43.5416 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 30 p 12.2296 26.0129 48.3770 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 31 “ -0.6538 16.2052 15.1734 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 32 % -2.6846 41.4940 48.0815 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 33 £ -2.1915 40.6123 52.6252 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 34 . 38.6772 7.2587 7.2587 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 35 2 0.0646 26.1844 44.3469 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 36 5 -1.1262 29.0970 46.6937 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 37 m 13.5027 41.1864 33.4217 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 38 V -0.1164 33.7172 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 39 6 -0.3076 28.4417 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 40 w 14.7911 36.2783 32.1801 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 41 T 1.1191 38.6252 43.4734 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 42 M 0.2137 46.1801 46.6087 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 43 G 0.0833 36.4322 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 44 b -0.8997 29.0196 46.2566 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 45 9 0.2145 30.7150 47.0619 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 46 ; 12.7253 9.4563 37.1646 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 47 D 0.0056 33.9315 46.2566 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 48 L 0.0184 28.2917 45.9489 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 49 y 14.8562 29.5371 46.1801 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 50 ‘ -0.2159 6.2353 15.1734 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 51 \ 0.7173 24.7790 47.3535 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 52 R -1.2476 31.5203 46.6937 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 53 < 12.0848 19.3535 26.8266 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 54 4 -0.0657 32.9854 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 55 8 -1.4356 29.5371 46.6937 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 56 0 -0.1288 32.0982 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 57 A 2.1444 34.7413 42.0000 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 58 E -0.2414 30.3469 46.2566 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 59 B -0.0368 29.1734 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 60 v 14.4432 25.8031 31.3748 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 61 k -1.2851 26.1668 47.8672 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 62 J -0.3183 34.6594 47.5672 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 63 U 0.1766 37.3920 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 64 j 2.6373 19.9315 58.8567 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 65 ( -2.1883 16.9248 59.1522 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 66 7 0.3583 32.5437 45.3741 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 67 § -2.4404 28.0000 47.8672 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 68 $ -4.8210 31.6450 60.2521 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 69 € -1.3347 37.0881 46.6937 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 70 / -2.8841 26.4584 49.4087 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 71 C -0.0453 31.7346 45.3741 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 72 * -1.3416 26.1668 23.2420 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 73 ” 0.2603 16.6424 15.3877 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 74 ? 2.3589 25.8031 44.3469 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 75 { -2.1328 19.9315 59.1522 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 76 } -2.4318 19.9315 59.1522 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 77 , 40.4514 8.6465 14.0000 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 78 I 1.3298 28.3476 43.2416 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 79 ° -3.5680 19.9315 20.0853 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 80 K 0.1347 29.1734 46.8399 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 81 H 0.0500 37.2420 46.6937 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 82 q 13.3884 25.2850 46.8399 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 83 & -0.2578 34.7451 46.9080 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 84 ’ -0.1603 8.4926 15.1734 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 85 [ 0.1262 16.1930 57.9787 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 86 - 26.7439 18.5437 5.0619 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 87 Y 1.2798 34.2353 44.7150 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 88 Q -0.1180 48.2353 56.9591 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 89 " 0.0949 15.4773 18.5437 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 90 ! -2.2097 6.0853 48.5270 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 91 x 13.4282 31.0067 32.0339 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 92 ) -2.5379 16.3469 59.1522 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 93 = 13.2220 22.4322 24.3214 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 94 + 13.2944 24.4154 24.4154 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 95 X 0.0500 38.1116 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 96 » 14.0077 31.0028 25.6531 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 97 ' -3.0039 5.0619 15.1734 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 98 ¢ -4.8926 29.3832 48.2353 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 99 Z 0.2242 37.6056 45.5203 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 100 > 14.1337 17.3703 24.6297 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 101 ® -2.1421 41.3402 40.7623 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 102 © -2.3503 40.8266 38.4231 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 103 ] -0.0766 16.1930 57.9787 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 104 é -2.5729 29.0196 47.8672 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 105 z 14.5136 26.1668 31.0067 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 106 _ 48.0784 38.7790 7.1049 -Comic_Sans_MS.ttf 89 " 15.4773 18.5437 107 ¥ 2.5792 31.1560 42.8053 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 1 t 6.9777 24.4154 40.9766 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 2 h 0.0157 27.3402 48.0853 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 3 a 16.8293 27.8462 31.0067 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 4 n 15.7217 25.2031 32.0301 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 5 P 2.2597 25.7986 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 6 o 16.8605 28.2098 31.0067 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 7 e 16.8129 29.0196 31.0067 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 8 : 14.3086 6.5913 28.6598 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 9 r 16.4714 22.4322 31.3748 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 10 l 0.0066 5.9315 47.8672 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 11 i 4.5061 5.9315 42.5060 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 12 1 2.3339 17.7944 44.3469 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 13 | -2.7949 5.0619 59.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 14 N 2.2612 40.7623 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 15 f -0.0195 25.3570 50.5822 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 16 g 16.9105 27.1902 46.1801 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 17 d 0.0277 29.0196 47.8672 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 18 W 2.4238 55.7857 46.6937 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 19 s 14.0713 23.9737 33.7172 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 20 c 16.9417 24.4154 31.0067 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 21 u 16.9347 25.6486 31.0067 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 22 3 2.1264 26.8266 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 23 ~ 20.8550 29.5416 13.1304 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 24 # 2.0659 48.2353 45.8884 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 25 O 2.2727 40.8266 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 26 ` -0.0833 12.1668 14.0000 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 27 @ -0.1347 46.9080 50.3381 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 28 F 2.1691 29.7514 46.8399 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 29 S 4.7749 35.2549 43.5416 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 30 p 14.3491 26.0129 48.3770 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 31 “ 1.7667 16.2052 15.1734 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 32 % -0.2702 41.4940 48.0815 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 33 £ -0.0812 40.6123 52.6252 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 34 . 41.1171 7.2587 7.2587 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 35 2 2.5092 26.1844 44.3469 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 36 5 1.3068 29.0970 46.6937 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 37 m 15.8704 41.1864 33.4217 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 38 V 2.2240 33.7172 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 39 6 2.4410 28.4417 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 40 w 16.9438 36.2783 32.1801 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 41 T 3.1846 38.6252 43.4734 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 42 M 2.5120 46.1801 46.6087 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 43 G 2.4210 36.4322 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 44 b 1.6106 29.0196 46.2566 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 45 9 2.4353 30.7150 47.0619 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 46 ; 15.0970 9.4563 37.1646 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 47 D 2.3112 33.9315 46.2566 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 48 L 2.4210 28.2917 45.9489 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 49 y 16.8605 29.5371 46.1801 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 50 ‘ 2.3469 6.2353 15.1734 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 51 \ 3.5666 24.7790 47.3535 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 52 R 1.1080 31.5203 46.6937 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 53 < 14.5021 19.3535 26.8266 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 54 4 2.4238 32.9854 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 55 8 1.3022 29.5371 46.6937 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 56 0 2.3254 32.0982 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 57 A 4.6196 34.7413 42.0000 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 58 E 2.1250 30.3469 46.2566 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 59 B 2.1337 29.1734 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 60 v 16.7696 25.8031 31.3748 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 61 k 1.1294 26.1668 47.8672 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 62 J 2.2755 34.6594 47.5672 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 63 U 2.4266 37.3920 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 64 j 4.9940 19.9315 58.8567 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 65 ( 0.0000 16.9248 59.1522 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 66 7 2.4930 32.5437 45.3741 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 67 § 0.1026 28.0000 47.8672 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 68 $ -2.5922 31.6450 60.2521 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 69 € 1.3306 37.0881 46.6937 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 70 / -0.1668 26.4584 49.4087 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 71 C 2.4875 31.7346 45.3741 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 72 * 1.0196 26.1668 23.2420 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 73 ” 2.2604 16.6424 15.3877 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 74 ? 4.5497 25.8031 44.3469 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 75 { 0.0038 19.9315 59.1522 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 76 } 0.0769 19.9315 59.1522 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 77 , 42.6343 8.6465 14.0000 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 78 I 3.6308 28.3476 43.2416 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 79 ° -1.4657 19.9315 20.0853 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 80 K 2.3885 29.1734 46.8399 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 81 H 2.3644 37.2420 46.6937 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 82 q 15.7710 25.2850 46.8399 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 83 & 2.4995 34.7451 46.9080 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 84 ’ 2.2090 8.4926 15.1734 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 85 [ 2.2848 16.1930 57.9787 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 86 - 28.5426 18.5437 5.0619 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 87 Y 3.4689 34.2353 44.7150 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 88 Q 2.0729 48.2353 56.9591 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 89 " 2.3552 15.4773 18.5437 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 90 ! -0.0129 6.0853 48.5270 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 91 x 15.6779 31.0067 32.0339 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 92 ) -0.0080 16.3469 59.1522 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 93 = 15.5769 22.4322 24.3214 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 94 + 15.6854 24.4154 24.4154 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 95 X 2.4431 38.1116 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 96 » 16.0645 31.0028 25.6531 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 97 ' -0.6469 5.0619 15.1734 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 98 ¢ -2.5537 29.3832 48.2353 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 99 Z 2.3469 37.6056 45.5203 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 100 > 16.4962 17.3703 24.6297 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 101 ® -0.0839 41.3402 40.7623 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 102 © 0.0812 40.8266 38.4231 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 103 ] 2.1810 16.1930 57.9787 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 104 é -0.1066 29.0196 47.8672 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 105 z 17.0236 26.1668 31.0067 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 106 _ 50.3679 38.7790 7.1049 -Comic_Sans_MS.ttf 90 ! 6.0853 48.5270 107 ¥ 4.9202 31.1560 42.8053 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 1 t -9.1808 24.4154 40.9766 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 2 h -15.7759 27.3402 48.0853 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 3 a 0.8725 27.8462 31.0067 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 4 n 0.0836 25.2031 32.0301 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 5 P -13.6128 25.7986 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 6 o 1.0297 28.2098 31.0067 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 7 e 0.9780 29.0196 31.0067 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 8 : -1.3228 6.5913 28.6598 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 9 r 0.9062 22.4322 31.3748 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 10 l -16.0379 5.9315 47.8672 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 11 i -11.8242 5.9315 42.5060 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 12 1 -13.4270 17.7944 44.3469 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 13 | -18.1292 5.0619 59.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 14 N -13.1156 40.7623 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 15 f -15.8665 25.3570 50.5822 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 16 g 1.1453 27.1902 46.1801 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 17 d -15.9788 29.0196 47.8672 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 18 W -13.6445 55.7857 46.6937 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 19 s -1.8887 23.9737 33.7172 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 20 c 1.1119 24.4154 31.0067 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 21 u 0.8544 25.6486 31.0067 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 22 3 -13.3947 26.8266 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 23 ~ 4.4221 29.5416 13.1304 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 24 # -13.7919 48.2353 45.8884 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 25 O -13.5323 40.8266 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 26 ` -16.3335 12.1668 14.0000 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 27 @ -16.1610 46.9080 50.3381 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 28 F -13.6500 29.7514 46.8399 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 29 S -11.1724 35.2549 43.5416 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 30 p -1.3333 26.0129 48.3770 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 31 “ -14.3972 16.2052 15.1734 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 32 % -15.9431 41.4940 48.0815 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 33 £ -15.7144 40.6123 52.6252 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 34 . 25.3623 7.2587 7.2587 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 35 2 -13.6089 26.1844 44.3469 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 36 5 -14.8201 29.0970 46.6937 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 37 m -0.3208 41.1864 33.4217 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 38 V -13.6088 33.7172 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 39 6 -13.6417 28.4417 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 40 w 1.0668 36.2783 32.1801 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 41 T -12.6175 38.6252 43.4734 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 42 M -13.5105 46.1801 46.6087 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 43 G -13.7848 36.4322 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 44 b -14.2383 29.0196 46.2566 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 45 9 -13.5651 30.7150 47.0619 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 46 ; -0.8967 9.4563 37.1646 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 47 D -13.4948 33.9315 46.2566 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 48 L -13.6282 28.2917 45.9489 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 49 y 0.7298 29.5371 46.1801 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 50 ‘ -13.3293 6.2353 15.1734 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 51 \ -12.7627 24.7790 47.3535 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 52 R -14.4530 31.5203 46.6937 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 53 < 0.6302 17.3703 24.6297 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 54 4 -13.5623 32.9854 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 55 8 -15.0023 29.5371 46.6937 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 56 0 -13.6358 32.0982 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 57 A -11.3578 34.7413 42.0000 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 58 E -13.5185 30.3469 46.2566 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 59 B -13.4021 29.1734 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 60 v 0.9882 25.8031 31.3748 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 61 k -14.5412 26.1668 47.8672 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 62 J -13.4338 34.6594 47.5672 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 63 U -13.5808 37.3920 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 64 j -11.1218 19.9315 58.8567 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 65 ( -15.9323 16.3469 59.1522 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 66 7 -13.4077 32.5437 45.3741 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 67 § -16.1394 28.0000 47.8672 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 68 $ -18.3975 31.6450 60.2521 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 69 € -14.7899 37.0881 46.6937 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 70 / -15.9041 26.4584 49.4087 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 71 C -13.2712 31.7346 45.3741 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 72 * -14.8591 26.1668 23.2420 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 73 ” -13.2573 16.6424 15.3877 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 74 ? -11.5785 25.8031 44.3469 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 75 { -15.7916 19.9315 59.1522 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 76 } -15.5518 19.9315 59.1522 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 77 , 26.8367 8.6465 14.0000 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 78 I -12.2996 28.3476 43.2416 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 79 ° -17.0982 19.9315 20.0853 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 80 K -13.3386 29.1734 46.8399 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 81 H -13.5402 37.2420 46.6937 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 82 q -0.2126 25.2850 46.8399 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 83 & -13.6411 34.7451 46.9080 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 84 ’ -13.7680 8.4926 15.1734 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 85 [ -13.5136 16.1930 57.9787 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 86 - 13.0148 18.5437 5.0619 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 87 Y -12.7076 34.2353 44.7150 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 88 Q -13.3955 48.2353 56.9591 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 89 " -13.5337 15.4773 18.5437 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 90 ! -16.0628 6.0853 48.5270 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 91 x 0.0940 31.0067 32.0339 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 92 ) -16.0021 16.9248 59.1522 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 93 = -0.2567 22.4322 24.3214 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 94 + -0.4471 24.4154 24.4154 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 95 X -13.5235 38.1116 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 96 » -0.0696 31.0028 25.6531 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 97 ' -16.5650 5.0619 15.1734 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 98 ¢ -18.4175 29.3832 48.2353 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 99 Z -13.2209 37.6056 45.5203 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 100 > -1.3696 19.3535 26.8266 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 101 ® -16.0561 41.3402 40.7623 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 102 © -16.0575 40.8266 38.4231 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 103 ] -13.4876 16.1930 57.9787 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 104 é -15.9561 29.0196 47.8672 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 105 z 1.1060 26.1668 31.0067 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 106 _ 34.4007 38.7790 7.1049 -Comic_Sans_MS.ttf 91 x 31.0067 32.0339 107 ¥ -10.9299 31.1560 42.8053 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 1 t 7.1370 24.4154 40.9766 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 2 h 0.2175 27.3402 48.0853 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 3 a 16.6863 27.8462 31.0067 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 4 n 15.7797 25.2031 32.0301 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 5 P 2.3405 25.7986 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 6 o 16.8105 28.2098 31.0067 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 7 e 17.2460 29.0196 31.0067 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 8 : 14.6392 6.5913 28.6598 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 9 r 16.5438 22.4322 31.3748 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 10 l -0.2484 5.9315 47.8672 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 11 i 4.0096 5.9315 42.5060 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 12 1 2.5184 17.7944 44.3469 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 13 | -2.4740 5.0619 59.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 14 N 2.4137 40.7623 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 15 f 0.0143 25.3570 50.5822 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 16 g 16.6965 27.1902 46.1801 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 17 d -0.2936 29.0196 47.8672 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 18 W 2.2913 55.7857 46.6937 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 19 s 14.1542 23.9737 33.7172 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 20 c 17.0315 24.4154 31.0067 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 21 u 16.9131 25.6486 31.0067 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 22 3 2.5054 26.8266 45.5203 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 23 ~ 20.7248 29.5416 13.1304 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 24 # 1.9190 48.2353 45.8884 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 25 O 2.3007 40.8266 45.5203 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 26 ` 0.1721 12.1668 14.0000 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 27 @ -0.0941 46.9080 50.3381 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 28 F 2.2664 29.7514 46.8399 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 29 S 4.8470 35.2549 43.5416 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 30 p 14.7512 26.0129 48.3770 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 31 “ 1.3822 16.2052 15.1734 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 32 % -0.2786 41.4940 48.0815 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 33 £ -0.2651 40.6123 52.6252 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 34 . 41.0343 7.2587 7.2587 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 35 2 2.1054 26.1844 44.3469 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 36 5 1.1839 29.0970 46.6937 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 37 m 15.9332 41.1864 33.4217 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 38 V 2.3917 33.7172 45.5203 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 39 6 2.3209 28.4417 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 40 w 16.5401 36.2783 32.1801 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 41 T 3.0344 38.6252 43.4734 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 42 M 2.3426 46.1801 46.6087 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 43 G 2.5466 36.4322 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 44 b 1.4461 29.0196 46.2566 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 45 9 2.4238 30.7150 47.0619 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 46 ; 14.9048 9.4563 37.1646 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 47 D 2.3469 33.9315 46.2566 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 48 L 2.3065 28.2917 45.9489 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 49 y 16.8345 29.5371 46.1801 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 50 ‘ 2.3112 6.2353 15.1734 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 51 \ 3.1383 24.7790 47.3535 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 52 R 0.8597 31.5203 46.6937 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 53 < 14.4752 19.3535 26.8266 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 54 4 2.4784 32.9854 45.5203 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 55 8 0.9705 29.5371 46.6937 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 56 0 2.4864 32.0982 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 57 A 4.6930 34.7413 42.0000 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 58 E 2.4934 30.3469 46.2566 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 59 B 2.2488 29.1734 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 60 v 16.8078 25.8031 31.3748 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 61 k 1.2431 26.1668 47.8672 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 62 J 2.2625 34.6594 47.5672 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 63 U 2.1688 37.3920 45.5203 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 64 j 4.8854 19.9315 58.8567 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 65 ( -0.2463 16.9248 59.1522 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 66 7 2.7337 32.5437 45.3741 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 67 § 0.1581 28.0000 47.8672 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 68 $ -2.6299 31.6450 60.2521 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 69 € 1.4393 37.0881 46.6937 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 70 / -0.0108 26.4584 49.4087 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 71 C 2.5000 31.7346 45.3741 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 72 * 1.1154 26.1668 23.2420 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 73 ” 2.2909 16.6424 15.3877 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 74 ? 4.5535 25.8031 44.3469 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 75 { 0.0312 19.9315 59.1522 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 76 } 0.0202 19.9315 59.1522 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 77 , 42.5948 8.6465 14.0000 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 78 I 3.3893 28.3476 43.2416 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 79 ° -1.3528 19.9315 20.0853 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 80 K 2.4372 29.1734 46.8399 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 81 H 2.4197 37.2420 46.6937 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 82 q 15.8032 25.2850 46.8399 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 83 & 2.4007 34.7451 46.9080 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 84 ’ 2.3294 8.4926 15.1734 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 85 [ 2.4046 16.1930 57.9787 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 86 - 28.7482 18.5437 5.0619 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 87 Y 3.4192 34.2353 44.7150 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 88 Q 2.0740 48.2353 56.9591 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 89 " 2.2805 15.4773 18.5437 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 90 ! -0.1548 6.0853 48.5270 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 91 x 15.9945 31.0067 32.0339 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 92 ) 0.0087 16.3469 59.1522 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 93 = 15.5615 22.4322 24.3214 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 94 + 15.8446 24.4154 24.4154 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 95 X 2.5063 38.1116 45.5203 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 96 » 16.0589 31.0028 25.6531 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 97 ' -0.6068 5.0619 15.1734 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 98 ¢ -2.6384 29.3832 48.2353 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 99 Z 2.2640 37.6056 45.5203 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 100 > 16.2965 17.3703 24.6297 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 101 ® -0.0070 41.3402 40.7623 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 102 © 0.1486 40.8266 38.4231 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 103 ] 2.2265 16.1930 57.9787 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 104 é -0.2083 29.0196 47.8672 -Comic_Sans_MS.ttf 92 ) 16.9248 59.1522 105 z 16.7744 26.1668 31.0067 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 106 _ 50.2104 38.7790 7.1049 -Comic_Sans_MS.ttf 92 ) 16.3469 59.1522 107 ¥ 5.2621 31.1560 42.8053 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 1 t -8.6163 24.4154 40.9766 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 2 h -15.7168 27.3402 48.0853 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 3 a 1.2294 27.8462 31.0067 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 4 n -0.0263 25.2031 32.0301 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 5 P -13.4218 25.7986 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 6 o 1.2256 28.2098 31.0067 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 7 e 1.1595 29.0196 31.0067 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 8 : -1.0168 6.5913 28.6598 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 9 r 0.9351 22.4322 31.3748 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 10 l -15.6241 5.9315 47.8672 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 11 i -11.5231 5.9315 42.5060 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 12 1 -13.6624 17.7944 44.3469 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 13 | -18.1157 5.0619 59.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 14 N -13.2108 40.7623 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 15 f -15.6145 25.3570 50.5822 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 16 g 1.2571 27.1902 46.1801 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 17 d -15.7860 29.0196 47.8672 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 18 W -13.2050 55.7857 46.6937 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 19 s -1.6905 23.9737 33.7172 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 20 c 1.1111 24.4154 31.0067 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 21 u 1.3662 25.6486 31.0067 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 22 3 -13.2832 26.8266 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 23 ~ 4.7891 29.5416 13.1304 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 24 # -14.0352 48.2353 45.8884 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 25 O -13.1062 40.8266 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 26 ` -15.4486 12.1668 14.0000 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 27 @ -15.8708 46.9080 50.3381 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 28 F -13.2801 29.7514 46.8399 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 29 S -10.9035 35.2549 43.5416 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 30 p -0.9675 26.0129 48.3770 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 31 “ -14.0088 16.2052 15.1734 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 32 % -15.7121 41.4940 48.0815 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 33 £ -15.5871 40.6123 52.6252 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 34 . 25.4968 7.2587 7.2587 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 35 2 -13.4277 26.1844 44.3469 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 36 5 -14.5465 29.0970 46.6937 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 37 m 0.1282 41.1864 33.4217 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 38 V -13.1713 33.7172 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 39 6 -13.4418 28.4417 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 40 w 1.2327 36.2783 32.1801 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 41 T -12.5479 38.6252 43.4734 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 42 M -13.2338 46.1801 46.6087 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 43 G -13.2146 36.4322 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 44 b -14.1452 29.0196 46.2566 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 45 9 -13.2672 30.7150 47.0619 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 46 ; -0.3014 9.4563 37.1646 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 47 D -13.0743 33.9315 46.2566 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 48 L -13.2500 28.2917 45.9489 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 49 y 1.1720 29.5371 46.1801 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 50 ‘ -13.4766 6.2353 15.1734 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 51 \ -12.5020 24.7790 47.3535 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 52 R -14.1935 31.5203 46.6937 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 53 < -0.9427 19.3535 26.8266 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 54 4 -13.2188 32.9854 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 55 8 -14.2512 29.5371 46.6937 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 56 0 -13.1976 32.0982 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 57 A -10.8605 34.7413 42.0000 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 58 E -13.2930 30.3469 46.2566 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 59 B -13.0826 29.1734 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 60 v 1.2952 25.8031 31.3748 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 61 k -14.5985 26.1668 47.8672 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 62 J -13.4813 34.6594 47.5672 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 63 U -13.3746 37.3920 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 64 j -10.7836 19.9315 58.8567 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 65 ( -15.9450 16.9248 59.1522 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 66 7 -13.2150 32.5437 45.3741 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 67 § -15.7599 28.0000 47.8672 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 68 $ -18.0604 31.6450 60.2521 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 69 € -14.5273 37.0881 46.6937 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 70 / -15.8350 26.4584 49.4087 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 71 C -13.0274 31.7346 45.3741 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 72 * -14.5086 26.1668 23.2420 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 73 ” -13.3200 16.6424 15.3877 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 74 ? -10.9456 25.8031 44.3469 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 75 { -15.7073 19.9315 59.1522 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 76 } -15.5563 19.9315 59.1522 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 77 , 26.9856 8.6465 14.0000 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 78 I -12.0563 28.3476 43.2416 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 79 ° -17.2945 19.9315 20.0853 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 80 K -13.1521 29.1734 46.8399 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 81 H -13.2885 37.2420 46.6937 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 82 q 0.4245 25.2850 46.8399 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 83 & -13.4773 34.7451 46.9080 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 84 ’ -13.2805 8.4926 15.1734 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 85 [ -13.4928 16.1930 57.9787 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 86 - 13.0430 18.5437 5.0619 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 87 Y -11.8009 34.2353 44.7150 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 88 Q -13.2058 48.2353 56.9591 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 89 " -13.1198 15.4773 18.5437 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 90 ! -15.8753 6.0853 48.5270 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 91 x 0.0709 31.0067 32.0339 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 92 ) -15.9516 16.3469 59.1522 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 93 = -0.2264 22.4322 24.3214 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 94 + 0.1696 24.4154 24.4154 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 95 X -13.5682 38.1116 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 96 » 0.1871 31.0028 25.6531 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 97 ' -16.3339 5.0619 15.1734 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 98 ¢ -18.3920 29.3832 48.2353 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 99 Z -13.3416 37.6056 45.5203 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 100 > 0.5694 17.3703 24.6297 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 101 ® -15.4577 41.3402 40.7623 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 102 © -15.9177 40.8266 38.4231 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 103 ] -13.3612 16.1930 57.9787 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 104 é -15.4986 29.0196 47.8672 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 105 z 1.0649 26.1668 31.0067 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 106 _ 34.6130 38.7790 7.1049 -Comic_Sans_MS.ttf 93 = 22.4322 24.3214 107 ¥ -10.4209 31.1560 42.8053 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 1 t -8.4131 24.4154 40.9766 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 2 h -15.8623 27.3402 48.0853 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 3 a 1.3667 27.8462 31.0067 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 4 n -0.1190 25.2031 32.0301 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 5 P -13.1345 25.7986 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 6 o 1.0465 28.2098 31.0067 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 7 e 1.1780 29.0196 31.0067 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 8 : -1.1627 6.5913 28.6598 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 9 r 0.7378 22.4322 31.3748 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 10 l -15.4422 5.9315 47.8672 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 11 i -11.7422 5.9315 42.5060 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 12 1 -13.0418 17.7944 44.3469 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 13 | -18.3738 5.0619 59.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 14 N -13.3512 40.7623 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 15 f -15.6086 25.3570 50.5822 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 16 g 1.1734 27.1902 46.1801 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 17 d -15.7810 29.0196 47.8672 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 18 W -13.3894 55.7857 46.6937 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 19 s -1.4829 23.9737 33.7172 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 20 c 1.3417 24.4154 31.0067 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 21 u 1.2504 25.6486 31.0067 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 22 3 -13.2840 26.8266 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 23 ~ 5.1954 29.5416 13.1304 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 24 # -13.6328 48.2353 45.8884 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 25 O -13.1454 40.8266 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 26 ` -15.8242 12.1668 14.0000 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 27 @ -15.5268 46.9080 50.3381 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 28 F -13.2401 29.7514 46.8399 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 29 S -10.9602 35.2549 43.5416 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 30 p -1.1928 26.0129 48.3770 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 31 “ -13.8294 16.2052 15.1734 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 32 % -16.0935 41.4940 48.0815 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 33 £ -15.7580 40.6123 52.6252 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 34 . 25.2975 7.2587 7.2587 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 35 2 -13.5861 26.1844 44.3469 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 36 5 -14.4024 29.0970 46.6937 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 37 m 0.1419 41.1864 33.4217 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 38 V -13.5135 33.7172 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 39 6 -13.0281 28.4417 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 40 w 1.2963 36.2783 32.1801 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 41 T -12.3880 38.6252 43.4734 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 42 M -13.3392 46.1801 46.6087 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 43 G -13.2579 36.4322 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 44 b -14.1605 29.0196 46.2566 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 45 9 -13.4973 30.7150 47.0619 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 46 ; -0.5946 9.4563 37.1646 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 47 D -13.1392 33.9315 46.2566 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 48 L -13.5212 28.2917 45.9489 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 49 y 1.3060 29.5371 46.1801 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 50 ‘ -13.3375 6.2353 15.1734 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 51 \ -12.4637 24.7790 47.3535 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 52 R -14.7606 31.5203 46.6937 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 53 < -1.2504 19.3535 26.8266 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 54 4 -13.3874 32.9854 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 55 8 -14.5878 29.5371 46.6937 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 56 0 -13.6310 32.0982 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 57 A -10.8126 34.7413 42.0000 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 58 E -13.2009 30.3469 46.2566 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 59 B -13.1334 29.1734 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 60 v 1.1314 25.8031 31.3748 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 61 k -14.4288 26.1668 47.8672 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 62 J -13.4228 34.6594 47.5672 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 63 U -13.3402 37.3920 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 64 j -10.8511 19.9315 58.8567 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 65 ( -15.5250 16.9248 59.1522 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 66 7 -13.2774 32.5437 45.3741 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 67 § -15.7061 28.0000 47.8672 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 68 $ -18.2916 31.6450 60.2521 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 69 € -14.3688 37.0881 46.6937 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 70 / -15.7458 26.4584 49.4087 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 71 C -13.2728 31.7346 45.3741 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 72 * -14.4100 26.1668 23.2420 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 73 ” -13.2017 16.6424 15.3877 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 74 ? -11.0308 25.8031 44.3469 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 75 { -15.7912 19.9315 59.1522 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 76 } -15.8753 19.9315 59.1522 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 77 , 26.8723 8.6465 14.0000 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 78 I -12.0553 28.3476 43.2416 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 79 ° -16.9092 19.9315 20.0853 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 80 K -13.2236 29.1734 46.8399 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 81 H -13.3146 37.2420 46.6937 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 82 q 0.1663 25.2850 46.8399 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 83 & -13.3104 34.7451 46.9080 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 84 ’ -13.1996 8.4926 15.1734 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 85 [ -13.0442 16.1930 57.9787 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 86 - 13.1363 18.5437 5.0619 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 87 Y -12.3011 34.2353 44.7150 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 88 Q -13.3128 48.2353 56.9591 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 89 " -13.4598 15.4773 18.5437 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 90 ! -15.5804 6.0853 48.5270 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 91 x -0.0503 31.0067 32.0339 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 92 ) -15.6059 16.3469 59.1522 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 93 = -0.4377 22.4322 24.3214 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 94 + -0.1664 24.4154 24.4154 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 95 X -13.5525 38.1116 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 96 » 0.5457 31.0028 25.6531 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 97 ' -16.3514 5.0619 15.1734 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 98 ¢ -18.6786 29.3832 48.2353 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 99 Z -13.2835 37.6056 45.5203 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 100 > 0.6650 17.3703 24.6297 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 101 ® -15.8554 41.3402 40.7623 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 102 © -15.7217 40.8266 38.4231 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 103 ] -13.5491 16.1930 57.9787 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 104 é -15.7493 29.0196 47.8672 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 105 z 1.1689 26.1668 31.0067 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 106 _ 35.0128 38.7790 7.1049 -Comic_Sans_MS.ttf 94 + 24.4154 24.4154 107 ¥ -10.7444 31.1560 42.8053 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 1 t 4.0739 24.4154 40.9766 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 2 h -2.2749 27.3402 48.0853 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 3 a 14.5984 27.8462 31.0067 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 4 n 13.1246 25.2031 32.0301 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 5 P 0.0890 25.7986 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 6 o 14.3121 28.2098 31.0067 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 7 e 14.5063 29.0196 31.0067 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 8 : 11.9100 6.5913 28.6598 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 9 r 14.3160 22.4322 31.3748 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 10 l -2.5661 5.9315 47.8672 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 11 i 2.1380 5.9315 42.5060 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 12 1 -0.1970 17.7944 44.3469 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 13 | -4.9626 5.0619 59.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 14 N -0.1710 40.7623 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 15 f -2.4582 25.3570 50.5822 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 16 g 14.6319 27.1902 46.1801 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 17 d -2.2069 29.0196 47.8672 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 18 W -0.1739 55.7857 46.6937 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 19 s 12.0181 23.9737 33.7172 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 20 c 14.2450 24.4154 31.0067 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 21 u 14.6410 25.6486 31.0067 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 22 3 0.0057 26.8266 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 23 ~ 18.4328 29.5416 13.1304 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 24 # -0.4171 48.2353 45.8884 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 25 O 0.2317 40.8266 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 26 ` -2.2650 12.1668 14.0000 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 27 @ -2.3046 46.9080 50.3381 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 28 F 0.5298 29.7514 46.8399 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 29 S 2.2598 35.2549 43.5416 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 30 p 12.5051 26.0129 48.3770 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 31 “ -0.7363 16.2052 15.1734 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 32 % -2.8115 41.4940 48.0815 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 33 £ -2.5852 40.6123 52.6252 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 34 . 39.1027 7.2587 7.2587 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 35 2 0.1223 26.1844 44.3469 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 36 5 -0.8341 29.0970 46.6937 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 37 m 13.3255 41.1864 33.4217 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 38 V -0.0958 33.7172 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 39 6 -0.0731 28.4417 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 40 w 14.4967 36.2783 32.1801 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 41 T 0.8290 38.6252 43.4734 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 42 M 0.0844 46.1801 46.6087 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 43 G 0.0973 36.4322 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 44 b -0.4532 29.0196 46.2566 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 45 9 0.0266 30.7150 47.0619 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 46 ; 13.1568 9.4563 37.1646 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 47 D 0.0844 33.9315 46.2566 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 48 L 0.2669 28.2917 45.9489 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 49 y 14.3518 29.5371 46.1801 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 50 ‘ -0.2656 6.2353 15.1734 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 51 \ 0.7589 24.7790 47.3535 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 52 R -1.0003 31.5203 46.6937 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 53 < 14.3450 17.3703 24.6297 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 54 4 -0.0102 32.9854 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 55 8 -1.4162 29.5371 46.6937 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 56 0 0.2419 32.0982 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 57 A 2.4890 34.7413 42.0000 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 58 E 0.1144 30.3469 46.2566 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 59 B 0.2113 29.1734 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 60 v 14.6375 25.8031 31.3748 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 61 k -1.5016 26.1668 47.8672 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 62 J 0.1526 34.6594 47.5672 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 63 U -0.1057 37.3920 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 64 j 2.2771 19.9315 58.8567 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 65 ( -2.2296 16.3469 59.1522 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 66 7 0.0612 32.5437 45.3741 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 67 § -2.6117 28.0000 47.8672 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 68 $ -4.7226 31.6450 60.2521 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 69 € -1.3355 37.0881 46.6937 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 70 / -2.2190 26.4584 49.4087 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 71 C 0.2676 31.7346 45.3741 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 72 * -1.0982 26.1668 23.2420 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 73 ” -0.1085 16.6424 15.3877 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 74 ? 2.2373 25.8031 44.3469 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 75 { -1.9474 19.9315 59.1522 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 76 } -2.3802 19.9315 59.1522 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 77 , 40.3921 8.6465 14.0000 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 78 I 1.2843 28.3476 43.2416 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 79 ° -3.9105 19.9315 20.0853 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 80 K 0.2428 29.1734 46.8399 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 81 H 0.0682 37.2420 46.6937 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 82 q 13.1678 25.2850 46.8399 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 83 & -0.0806 34.7451 46.9080 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 84 ’ -0.1636 8.4926 15.1734 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 85 [ 0.0278 16.1930 57.9787 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 86 - 26.6275 18.5437 5.0619 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 87 Y 0.7029 34.2353 44.7150 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 88 Q -0.0762 48.2353 56.9591 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 89 " -0.3831 15.4773 18.5437 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 90 ! -2.5100 6.0853 48.5270 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 91 x 13.3310 31.0067 32.0339 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 92 ) -2.4665 16.9248 59.1522 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 93 = 13.2160 22.4322 24.3214 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 94 + 13.3495 24.4154 24.4154 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 95 X -0.1623 38.1116 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 96 » 13.8491 31.0028 25.6531 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 97 ' -3.0091 5.0619 15.1734 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 98 ¢ -4.9252 29.3832 48.2353 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 99 Z -0.0018 37.6056 45.5203 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 100 > 11.9750 19.3535 26.8266 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 101 ® -2.3220 41.3402 40.7623 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 102 © -2.1702 40.8266 38.4231 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 103 ] -0.1044 16.1930 57.9787 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 104 é -2.3102 29.0196 47.8672 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 105 z 14.2996 26.1668 31.0067 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 106 _ 48.0192 38.7790 7.1049 -Comic_Sans_MS.ttf 95 X 38.1116 45.5203 107 ¥ 2.3097 31.1560 42.8053 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 1 t -9.2889 24.4154 40.9766 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 2 h -16.1330 27.3402 48.0853 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 3 a 0.5962 27.8462 31.0067 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 4 n -0.0413 25.2031 32.0301 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 5 P -13.9608 25.7986 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 6 o 0.8173 28.2098 31.0067 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 7 e 0.5966 29.0196 31.0067 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 8 : -1.2784 6.5913 28.6598 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 9 r 0.8184 22.4322 31.3748 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 10 l -16.2068 5.9315 47.8672 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 11 i -11.9642 5.9315 42.5060 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 12 1 -13.5892 17.7944 44.3469 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 13 | -18.5680 5.0619 59.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 14 N -13.5962 40.7623 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 15 f -15.7997 25.3570 50.5822 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 16 g 0.9164 27.1902 46.1801 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 17 d -15.9729 29.0196 47.8672 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 18 W -13.5101 55.7857 46.6937 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 19 s -1.8046 23.9737 33.7172 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 20 c 0.8059 24.4154 31.0067 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 21 u 0.7540 25.6486 31.0067 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 22 3 -13.4317 26.8266 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 23 ~ 4.6608 29.5416 13.1304 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 24 # -14.1728 48.2353 45.8884 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 25 O -13.8039 40.8266 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 26 ` -16.1757 12.1668 14.0000 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 27 @ -15.8758 46.9080 50.3381 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 28 F -13.1630 29.7514 46.8399 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 29 S -11.3272 35.2549 43.5416 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 30 p -1.1231 26.0129 48.3770 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 31 “ -14.4776 16.2052 15.1734 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 32 % -15.8901 41.4940 48.0815 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 33 £ -15.8823 40.6123 52.6252 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 34 . 24.9873 7.2587 7.2587 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 35 2 -13.6823 26.1844 44.3469 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 36 5 -14.4340 29.0970 46.6937 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 37 m 0.0959 41.1864 33.4217 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 38 V -13.6712 33.7172 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 39 6 -13.8668 28.4417 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 40 w 0.8073 36.2783 32.1801 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 41 T -12.9235 38.6252 43.4734 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 42 M -13.7298 46.1801 46.6087 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 43 G -13.5490 36.4322 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 44 b -14.1869 29.0196 46.2566 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 45 9 -13.6095 30.7150 47.0619 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 46 ; -1.1355 9.4563 37.1646 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 47 D -13.6351 33.9315 46.2566 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 48 L -13.4636 28.2917 45.9489 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 49 y 0.8090 29.5371 46.1801 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 50 ‘ -13.4346 6.2353 15.1734 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 51 \ -12.9693 24.7790 47.3535 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 52 R -14.9596 31.5203 46.6937 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 53 < -1.7530 19.3535 26.8266 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 54 4 -13.4525 32.9854 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 55 8 -14.7584 29.5371 46.6937 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 56 0 -13.2171 32.0982 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 57 A -11.1618 34.7413 42.0000 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 58 E -13.4741 30.3469 46.2566 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 59 B -13.4733 29.1734 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 60 v 0.7255 25.8031 31.3748 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 61 k -14.8585 26.1668 47.8672 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 62 J -13.4335 34.6594 47.5672 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 63 U -13.2787 37.3920 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 64 j -11.1850 19.9315 58.8567 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 65 ( -15.7744 16.9248 59.1522 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 66 7 -13.7113 32.5437 45.3741 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 67 § -15.6433 28.0000 47.8672 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 68 $ -18.5248 31.6450 60.2521 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 69 € -14.8910 37.0881 46.6937 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 70 / -16.1938 26.4584 49.4087 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 71 C -13.4196 31.7346 45.3741 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 72 * -14.7339 26.1668 23.2420 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 73 ” -13.6012 16.6424 15.3877 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 74 ? -11.4700 25.8031 44.3469 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 75 { -16.0831 19.9315 59.1522 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 76 } -15.9000 19.9315 59.1522 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 77 , 27.0152 8.6465 14.0000 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 78 I -12.4994 28.3476 43.2416 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 79 ° -17.4120 19.9315 20.0853 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 80 K -13.5750 29.1734 46.8399 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 81 H -13.1791 37.2420 46.6937 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 82 q -0.5089 25.2850 46.8399 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 83 & -13.6938 34.7451 46.9080 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 84 ’ -13.7557 8.4926 15.1734 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 85 [ -13.4533 16.1930 57.9787 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 86 - 12.8917 18.5437 5.0619 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 87 Y -12.4262 34.2353 44.7150 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 88 Q -13.7543 48.2353 56.9591 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 89 " -13.6501 15.4773 18.5437 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 90 ! -16.3370 6.0853 48.5270 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 91 x -0.0538 31.0067 32.0339 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 92 ) -15.9833 16.3469 59.1522 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 93 = -0.2830 22.4322 24.3214 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 94 + -0.3586 24.4154 24.4154 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 95 X -13.6518 38.1116 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 96 » -0.1298 31.0028 25.6531 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 97 ' -16.5374 5.0619 15.1734 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 98 ¢ -18.4513 29.3832 48.2353 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 99 Z -13.5840 37.6056 45.5203 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 100 > 0.6333 17.3703 24.6297 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 101 ® -16.0232 41.3402 40.7623 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 102 © -15.9397 40.8266 38.4231 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 103 ] -13.7120 16.1930 57.9787 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 104 é -16.0101 29.0196 47.8672 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 105 z 0.9417 26.1668 31.0067 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 106 _ 34.4481 38.7790 7.1049 -Comic_Sans_MS.ttf 96 » 31.0028 25.6531 107 ¥ -11.1604 31.1560 42.8053 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 1 t 7.5050 24.4154 40.9766 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 2 h 0.6041 27.3402 48.0853 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 3 a 17.7848 27.8462 31.0067 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 4 n 16.4766 25.2031 32.0301 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 5 P 2.7967 25.7986 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 6 o 17.4759 28.2098 31.0067 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 7 e 17.6015 29.0196 31.0067 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 8 : 15.2681 6.5913 28.6598 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 9 r 16.8982 22.4322 31.3748 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 10 l 0.3901 5.9315 47.8672 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 11 i 4.7924 5.9315 42.5060 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 12 1 3.1236 17.7944 44.3469 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 13 | -1.7271 5.0619 59.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 14 N 3.1389 40.7623 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 15 f 0.7612 25.3570 50.5822 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 16 g 17.6983 27.1902 46.1801 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 17 d 0.5856 29.0196 47.8672 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 18 W 2.8097 55.7857 46.6937 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 19 s 14.9088 23.9737 33.7172 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 20 c 17.5304 24.4154 31.0067 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 21 u 17.2918 25.6486 31.0067 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 22 3 2.8475 26.8266 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 23 ~ 21.2323 29.5416 13.1304 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 24 # 2.4681 48.2353 45.8884 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 25 O 3.0938 40.8266 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 26 ` 0.7564 12.1668 14.0000 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 27 @ 0.6265 46.9080 50.3381 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 28 F 2.9676 29.7514 46.8399 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 29 S 5.0229 35.2549 43.5416 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 30 p 15.3689 26.0129 48.3770 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 31 “ 2.2564 16.2052 15.1734 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 32 % 0.4487 41.4940 48.0815 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 33 £ 0.5241 40.6123 52.6252 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 34 . 41.6968 7.2587 7.2587 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 35 2 2.6063 26.1844 44.3469 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 36 5 1.9207 29.0970 46.6937 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 37 m 16.4847 41.1864 33.4217 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 38 V 2.9217 33.7172 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 39 6 2.8658 28.4417 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 40 w 17.4332 36.2783 32.1801 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 41 T 3.4571 38.6252 43.4734 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 42 M 2.9233 46.1801 46.6087 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 43 G 2.9233 36.4322 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 44 b 2.1351 29.0196 46.2566 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 45 9 3.3279 30.7150 47.0619 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 46 ; 15.8379 9.4563 37.1646 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 47 D 3.0962 33.9315 46.2566 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 48 L 2.7327 28.2917 45.9489 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 49 y 17.4489 29.5371 46.1801 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 50 ‘ 3.2040 6.2353 15.1734 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 51 \ 3.8727 24.7790 47.3535 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 52 R 1.8021 31.5203 46.6937 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 53 < 15.3515 19.3535 26.8266 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 54 4 3.1620 32.9854 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 55 8 2.1174 29.5371 46.6937 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 56 0 3.0878 32.0982 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 57 A 5.3633 34.7413 42.0000 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 58 E 2.8432 30.3469 46.2566 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 59 B 3.0717 29.1734 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 60 v 17.5144 25.8031 31.3748 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 61 k 1.9834 26.1668 47.8672 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 62 J 3.0011 34.6594 47.5672 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 63 U 3.1204 37.3920 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 64 j 5.2436 19.9315 58.8567 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 65 ( 0.8840 16.9248 59.1522 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 66 7 3.0759 32.5437 45.3741 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 67 § 0.5678 28.0000 47.8672 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 68 $ -1.7401 31.6450 60.2521 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 69 € 1.8332 37.0881 46.6937 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 70 / 0.5060 26.4584 49.4087 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 71 C 3.1101 31.7346 45.3741 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 72 * 1.7925 26.1668 23.2420 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 73 ” 3.0483 16.6424 15.3877 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 74 ? 5.3852 25.8031 44.3469 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 75 { 0.6370 19.9315 59.1522 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 76 } 0.5072 19.9315 59.1522 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 77 , 43.3312 8.6465 14.0000 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 78 I 4.2808 28.3476 43.2416 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 79 ° -0.5761 19.9315 20.0853 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 80 K 2.9325 29.1734 46.8399 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 81 H 2.8303 37.2420 46.6937 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 82 q 16.4340 25.2850 46.8399 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 83 & 3.0326 34.7451 46.9080 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 84 ’ 3.0049 8.4926 15.1734 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 85 [ 2.8852 16.1930 57.9787 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 86 - 29.3909 18.5437 5.0619 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 87 Y 4.0989 34.2353 44.7150 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 88 Q 2.8311 48.2353 56.9591 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 89 " 3.0220 15.4773 18.5437 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 90 ! 0.6755 6.0853 48.5270 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 91 x 16.3377 31.0067 32.0339 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 92 ) 0.6440 16.3469 59.1522 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 93 = 16.0272 22.4322 24.3214 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 94 + 16.3469 24.4154 24.4154 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 95 X 2.9857 38.1116 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 96 » 16.7576 31.0028 25.6531 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 97 ' 0.1635 5.0619 15.1734 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 98 ¢ -2.3337 29.3832 48.2353 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 99 Z 3.1582 37.6056 45.5203 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 100 > 17.1060 17.3703 24.6297 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 101 ® 0.7851 41.3402 40.7623 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 102 © 0.7913 40.8266 38.4231 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 103 ] 2.9489 16.1930 57.9787 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 104 é 0.4281 29.0196 47.8672 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 105 z 17.2746 26.1668 31.0067 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 106 _ 51.1070 38.7790 7.1049 -Comic_Sans_MS.ttf 97 ' 5.0619 15.1734 107 ¥ 5.5289 31.1560 42.8053 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 1 t 9.5898 24.4154 40.9766 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 2 h 2.7118 27.3402 48.0853 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 3 a 19.2047 27.8462 31.0067 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 4 n 18.6480 25.2031 32.0301 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 5 P 4.7312 25.7986 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 6 o 19.5777 28.2098 31.0067 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 7 e 19.7239 29.0196 31.0067 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 8 : 16.9792 6.5913 28.6598 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 9 r 18.8830 22.4322 31.3748 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 10 l 2.8077 5.9315 47.8672 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 11 i 6.9732 5.9315 42.5060 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 12 1 4.8936 17.7944 44.3469 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 13 | 0.7145 5.0619 59.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 14 N 4.9502 40.7623 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 15 f 2.9747 25.3570 50.5822 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 16 g 19.4489 27.1902 46.1801 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 17 d 2.6980 29.0196 47.8672 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 18 W 4.9038 55.7857 46.6937 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 19 s 16.8493 23.9737 33.7172 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 20 c 19.5913 24.4154 31.0067 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 21 u 19.4004 25.6486 31.0067 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 22 3 5.0186 26.8266 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 23 ~ 23.2184 29.5416 13.1304 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 24 # 4.4394 48.2353 45.8884 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 25 O 5.0733 40.8266 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 26 ` 2.4949 12.1668 14.0000 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 27 @ 2.9169 46.9080 50.3381 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 28 F 5.1035 29.7514 46.8399 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 29 S 7.4639 35.2549 43.5416 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 30 p 17.4598 26.0129 48.3770 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 31 “ 4.1707 16.2052 15.1734 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 32 % 2.4661 41.4940 48.0815 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 33 £ 2.8174 40.6123 52.6252 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 34 . 43.7080 7.2587 7.2587 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 35 2 5.0647 26.1844 44.3469 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 36 5 3.8230 29.0970 46.6937 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 37 m 18.2067 41.1864 33.4217 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 38 V 5.1577 33.7172 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 39 6 4.7722 28.4417 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 40 w 19.3344 36.2783 32.1801 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 41 T 5.6775 38.6252 43.4734 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 42 M 5.0216 46.1801 46.6087 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 43 G 5.0796 36.4322 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 44 b 4.1111 29.0196 46.2566 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 45 9 5.0406 30.7150 47.0619 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 46 ; 17.9761 9.4563 37.1646 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 47 D 5.0619 33.9315 46.2566 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 48 L 4.7806 28.2917 45.9489 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 49 y 19.4299 29.5371 46.1801 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 50 ‘ 5.0535 6.2353 15.1734 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 51 \ 5.7810 24.7790 47.3535 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 52 R 3.8180 31.5203 46.6937 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 53 < 17.3472 19.3535 26.8266 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 54 4 5.2052 32.9854 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 55 8 3.9384 29.5371 46.6937 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 56 0 4.9279 32.0982 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 57 A 7.5528 34.7413 42.0000 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 58 E 5.0532 30.3469 46.2566 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 59 B 5.1148 29.1734 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 60 v 19.7747 25.8031 31.3748 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 61 k 3.7582 26.1668 47.8672 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 62 J 5.3936 34.6594 47.5672 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 63 U 4.8273 37.3920 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 64 j 7.3027 19.9315 58.8567 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 65 ( 2.4716 16.9248 59.1522 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 66 7 5.2188 32.5437 45.3741 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 67 § 2.9739 28.0000 47.8672 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 68 $ 0.0871 31.6450 60.2521 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 69 € 3.9587 37.0881 46.6937 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 70 / 2.6185 26.4584 49.4087 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 71 C 5.4610 31.7346 45.3741 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 72 * 3.4166 26.1668 23.2420 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 73 ” 4.8356 16.6424 15.3877 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 74 ? 7.2861 25.8031 44.3469 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 75 { 2.7317 19.9315 59.1522 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 76 } 2.6273 19.9315 59.1522 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 77 , 45.5384 8.6465 14.0000 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 78 I 6.6277 28.3476 43.2416 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 79 ° 1.2650 19.9315 20.0853 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 80 K 4.8759 29.1734 46.8399 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 81 H 4.8968 37.2420 46.6937 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 82 q 18.5099 25.2850 46.8399 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 83 & 5.4030 34.7451 46.9080 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 84 ’ 5.0958 8.4926 15.1734 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 85 [ 4.9196 16.1930 57.9787 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 86 - 31.7483 18.5437 5.0619 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 87 Y 6.1972 34.2353 44.7150 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 88 Q 5.0488 48.2353 56.9591 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 89 " 5.0619 15.4773 18.5437 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 90 ! 2.8725 6.0853 48.5270 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 91 x 18.5468 31.0067 32.0339 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 92 ) 2.8067 16.3469 59.1522 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 93 = 18.2073 22.4322 24.3214 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 94 + 18.6343 24.4154 24.4154 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 95 X 5.2016 38.1116 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 96 » 18.4852 31.0028 25.6531 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 97 ' 2.1785 5.0619 15.1734 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 98 ¢ 0.0669 29.3832 48.2353 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 99 Z 4.8184 37.6056 45.5203 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 100 > 19.1176 17.3703 24.6297 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 101 ® 2.8893 41.3402 40.7623 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 102 © 2.6422 40.8266 38.4231 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 103 ] 5.1897 16.1930 57.9787 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 104 é 2.8682 29.0196 47.8672 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 105 z 19.4898 26.1668 31.0067 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 106 _ 53.2911 38.7790 7.1049 -Comic_Sans_MS.ttf 98 ¢ 29.3832 48.2353 107 ¥ 7.9112 31.1560 42.8053 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 1 t 4.7235 24.4154 40.9766 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 2 h -2.2693 27.3402 48.0853 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 3 a 14.4874 27.8462 31.0067 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 4 n 13.3888 25.2031 32.0301 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 5 P -0.1647 25.7986 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 6 o 14.0483 28.2098 31.0067 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 7 e 14.6717 29.0196 31.0067 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 8 : 12.1468 6.5913 28.6598 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 9 r 14.1378 22.4322 31.3748 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 10 l -2.1967 5.9315 47.8672 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 11 i 1.7510 5.9315 42.5060 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 12 1 -0.0102 17.7944 44.3469 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 13 | -4.9857 5.0619 59.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 14 N 0.0242 40.7623 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 15 f -2.5135 25.3570 50.5822 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 16 g 14.6541 27.1902 46.1801 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 17 d -2.3630 29.0196 47.8672 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 18 W 0.0631 55.7857 46.6937 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 19 s 11.5247 23.9737 33.7172 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 20 c 14.3916 24.4154 31.0067 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 21 u 14.7193 25.6486 31.0067 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 22 3 -0.2123 26.8266 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 23 ~ 18.1877 29.5416 13.1304 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 24 # -0.6183 48.2353 45.8884 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 25 O -0.2072 40.8266 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 26 ` -2.3955 12.1668 14.0000 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 27 @ -2.4180 46.9080 50.3381 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 28 F 0.1707 29.7514 46.8399 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 29 S 2.5788 35.2549 43.5416 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 30 p 12.4848 26.0129 48.3770 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 31 “ -0.7073 16.2052 15.1734 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 32 % -2.4595 41.4940 48.0815 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 33 £ -2.2409 40.6123 52.6252 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 34 . 38.5229 7.2587 7.2587 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 35 2 0.1228 26.1844 44.3469 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 36 5 -1.1516 29.0970 46.6937 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 37 m 13.3321 41.1864 33.4217 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 38 V 0.1218 33.7172 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 39 6 -0.0854 28.4417 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 40 w 14.7583 36.2783 32.1801 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 41 T 0.8053 38.6252 43.4734 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 42 M 0.0003 46.1801 46.6087 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 43 G 0.1248 36.4322 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 44 b -0.4032 29.0196 46.2566 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 45 9 0.0780 30.7150 47.0619 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 46 ; 12.6825 9.4563 37.1646 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 47 D 0.3314 33.9315 46.2566 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 48 L -0.1830 28.2917 45.9489 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 49 y 14.6378 29.5371 46.1801 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 50 ‘ -0.3239 6.2353 15.1734 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 51 \ 0.7821 24.7790 47.3535 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 52 R -0.9919 31.5203 46.6937 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 53 < 14.1966 17.3703 24.6297 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 54 4 0.0310 32.9854 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 55 8 -1.0601 29.5371 46.6937 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 56 0 0.0857 32.0982 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 57 A 2.5865 34.7413 42.0000 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 58 E 0.1050 30.3469 46.2566 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 59 B -0.1486 29.1734 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 60 v 14.2866 25.8031 31.3748 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 61 k -1.1164 26.1668 47.8672 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 62 J -0.0982 34.6594 47.5672 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 63 U 0.0785 37.3920 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 64 j 2.0187 19.9315 58.8567 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 65 ( -2.2719 16.3469 59.1522 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 66 7 0.1621 32.5437 45.3741 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 67 § -2.4535 28.0000 47.8672 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 68 $ -5.0833 31.6450 60.2521 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 69 € -0.8414 37.0881 46.6937 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 70 / -2.6666 26.4584 49.4087 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 71 C -0.1139 31.7346 45.3741 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 72 * -0.8917 26.1668 23.2420 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 73 ” 0.1676 16.6424 15.3877 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 74 ? 2.3239 25.8031 44.3469 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 75 { -2.3346 19.9315 59.1522 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 76 } -2.3721 19.9315 59.1522 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 77 , 40.8827 8.6465 14.0000 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 78 I 1.1992 28.3476 43.2416 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 79 ° -3.6845 19.9315 20.0853 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 80 K -0.0525 29.1734 46.8399 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 81 H 0.0234 37.2420 46.6937 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 82 q 13.1334 25.2850 46.8399 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 83 & -0.1000 34.7451 46.9080 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 84 ’ 0.3846 8.4926 15.1734 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 85 [ -0.0300 16.1930 57.9787 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 86 - 26.5305 18.5437 5.0619 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 87 Y 1.4814 34.2353 44.7150 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 88 Q 0.2442 48.2353 56.9591 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 89 " -0.0385 15.4773 18.5437 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 90 ! -2.5699 6.0853 48.5270 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 91 x 13.7260 31.0067 32.0339 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 92 ) -2.4417 16.9248 59.1522 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 93 = 13.3265 22.4322 24.3214 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 94 + 13.3545 24.4154 24.4154 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 95 X 0.2911 38.1116 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 96 » 13.8158 31.0028 25.6531 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 97 ' -2.6906 5.0619 15.1734 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 98 ¢ -4.7270 29.3832 48.2353 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 99 Z -0.0476 37.6056 45.5203 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 100 > 12.1570 19.3535 26.8266 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 101 ® -2.5771 41.3402 40.7623 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 102 © -2.2617 40.8266 38.4231 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 103 ] 0.2823 16.1930 57.9787 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 104 é -2.0919 29.0196 47.8672 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 105 z 14.2475 26.1668 31.0067 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 106 _ 48.0308 38.7790 7.1049 -Comic_Sans_MS.ttf 99 Z 37.6056 45.5203 107 ¥ 2.7518 31.1560 42.8053 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 1 t -7.9747 24.4154 40.9766 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 2 h -14.7162 27.3402 48.0853 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 3 a 2.2667 27.8462 31.0067 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 4 n 1.3638 25.2031 32.0301 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 5 P -12.0579 25.7986 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 6 o 2.2525 28.2098 31.0067 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 7 e 2.4840 29.0196 31.0067 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 8 : -2.1679 6.5913 28.6598 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 9 r 2.2252 22.4322 31.3748 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 10 l -14.4241 5.9315 47.8672 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 11 i -10.3216 5.9315 42.5060 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 12 1 -14.0514 17.7944 44.3469 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 13 | -19.5157 5.0619 59.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 14 N -12.0724 40.7623 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 15 f -14.2337 25.3570 50.5822 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 16 g 2.4294 27.1902 46.1801 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 17 d -14.4115 29.0196 47.8672 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 18 W -12.2252 55.7857 46.6937 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 19 s -0.3182 23.9737 33.7172 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 20 c 2.2600 24.4154 31.0067 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 21 u 2.4210 25.6486 31.0067 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 22 3 -14.3274 26.8266 45.5203 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 23 ~ 4.4088 29.5416 13.1304 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 24 # -14.3446 48.2353 45.8884 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 25 O -12.2584 40.8266 45.5203 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 26 ` -16.5081 12.1668 14.0000 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 27 @ -16.3976 46.9080 50.3381 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 28 F -12.0654 29.7514 46.8399 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 29 S -9.8258 35.2549 43.5416 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 30 p -0.0236 26.0129 48.3770 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 31 “ -14.8814 16.2052 15.1734 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 32 % -16.6324 41.4940 48.0815 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 33 £ -16.4962 40.6123 52.6252 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 34 . 24.6371 7.2587 7.2587 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 35 2 -14.3134 26.1844 44.3469 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 36 5 -15.3298 29.0970 46.6937 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 37 m 1.2276 41.1864 33.4217 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 38 V -12.1510 33.7172 45.5203 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 39 6 -14.2462 28.4417 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 40 w 2.2510 36.2783 32.1801 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 41 T -11.2150 38.6252 43.4734 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 42 M -12.5754 46.1801 46.6087 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 43 G -12.1668 36.4322 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 44 b -12.8780 29.0196 46.2566 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 45 9 -14.0090 30.7150 47.0619 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 46 ; -1.4909 9.4563 37.1646 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 47 D -12.2794 33.9315 46.2566 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 48 L -12.0824 28.2917 45.9489 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 49 y 2.3969 29.5371 46.1801 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 50 ‘ -14.3722 6.2353 15.1734 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 51 \ -13.3515 24.7790 47.3535 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 52 R -13.2888 31.5203 46.6937 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 53 < -1.8899 19.3535 26.8266 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 54 4 -14.3065 32.9854 45.5203 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 55 8 -15.2562 29.5371 46.6937 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 56 0 -14.3362 32.0982 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 57 A -9.4931 34.7413 42.0000 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 58 E -12.1825 30.3469 46.2566 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 59 B -12.0594 29.1734 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 60 v 2.0173 25.8031 31.3748 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 61 k -13.0148 26.1668 47.8672 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 62 J -11.8306 34.6594 47.5672 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 63 U -12.1636 37.3920 45.5203 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 64 j -9.6263 19.9315 58.8567 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 65 ( -16.7167 16.9248 59.1522 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 66 7 -13.8996 32.5437 45.3741 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 67 § -16.5137 28.0000 47.8672 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 68 $ -19.0042 31.6450 60.2521 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 69 € -15.2486 37.0881 46.6937 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 70 / -16.6983 26.4584 49.4087 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 71 C -11.9637 31.7346 45.3741 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 72 * -15.1995 26.1668 23.2420 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 73 ” -14.0689 16.6424 15.3877 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 74 ? -12.1624 25.8031 44.3469 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 75 { -16.5763 19.9315 59.1522 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 76 } -16.3734 19.9315 59.1522 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 77 , 26.2906 8.6465 14.0000 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 78 I -10.8818 28.3476 43.2416 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 79 ° -17.8843 19.9315 20.0853 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 80 K -12.2479 29.1734 46.8399 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 81 H -12.1391 37.2420 46.6937 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 82 q 1.0148 25.2850 46.8399 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 83 & -14.3991 34.7451 46.9080 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 84 ’ -13.9613 8.4926 15.1734 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 85 [ -14.1365 16.1930 57.9787 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 86 - 12.3892 18.5437 5.0619 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 87 Y -11.1151 34.2353 44.7150 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 88 Q -12.0996 48.2353 56.9591 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 89 " -14.3905 15.4773 18.5437 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 90 ! -16.4688 6.0853 48.5270 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 91 x 1.3549 31.0067 32.0339 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 92 ) -16.2510 16.3469 59.1522 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 93 = -0.6982 22.4322 24.3214 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 94 + -0.8054 24.4154 24.4154 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 95 X -12.1584 38.1116 45.5203 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 96 » -0.4972 31.0028 25.6531 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 97 ' -17.3488 5.0619 15.1734 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 98 ¢ -19.1728 29.3832 48.2353 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 99 Z -12.2778 37.6056 45.5203 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 100 > -0.0909 17.3703 24.6297 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 101 ® -16.6501 41.3402 40.7623 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 102 © -16.7766 40.8266 38.4231 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 103 ] -14.0210 16.1930 57.9787 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 104 é -14.7231 29.0196 47.8672 -Comic_Sans_MS.ttf 100 > 19.3535 26.8266 105 z 2.4308 26.1668 31.0067 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 106 _ 33.8819 38.7790 7.1049 -Comic_Sans_MS.ttf 100 > 17.3703 24.6297 107 ¥ -11.4768 31.1560 42.8053 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 1 t 7.1519 24.4154 40.9766 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 2 h -0.2030 27.3402 48.0853 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 3 a 16.9910 27.8462 31.0067 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 4 n 15.8333 25.2031 32.0301 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 5 P 2.0979 25.7986 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 6 o 16.9300 28.2098 31.0067 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 7 e 16.8255 29.0196 31.0067 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 8 : 14.4308 6.5913 28.6598 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 9 r 16.7140 22.4322 31.3748 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 10 l 0.3818 5.9315 47.8672 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 11 i 4.1450 5.9315 42.5060 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 12 1 2.5071 17.7944 44.3469 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 13 | -2.2970 5.0619 59.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 14 N 1.9425 40.7623 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 15 f -0.0584 25.3570 50.5822 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 16 g 16.7544 27.1902 46.1801 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 17 d -0.0952 29.0196 47.8672 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 18 W 2.4269 55.7857 46.6937 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 19 s 14.1943 23.9737 33.7172 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 20 c 17.0455 24.4154 31.0067 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 21 u 16.5768 25.6486 31.0067 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 22 3 2.1398 26.8266 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 23 ~ 20.6658 29.5416 13.1304 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 24 # 1.8156 48.2353 45.8884 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 25 O 2.3507 40.8266 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 26 ` -0.2023 12.1668 14.0000 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 27 @ -0.0252 46.9080 50.3381 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 28 F 2.6742 29.7514 46.8399 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 29 S 4.7722 35.2549 43.5416 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 30 p 14.6660 26.0129 48.3770 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 31 “ 1.6527 16.2052 15.1734 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 32 % -0.6466 41.4940 48.0815 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 33 £ -0.0207 40.6123 52.6252 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 34 . 40.9646 7.2587 7.2587 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 35 2 1.8584 26.1844 44.3469 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 36 5 0.9233 29.0970 46.6937 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 37 m 15.8213 41.1864 33.4217 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 38 V 2.6074 33.7172 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 39 6 2.5042 28.4417 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 40 w 16.9750 36.2783 32.1801 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 41 T 3.2864 38.6252 43.4734 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 42 M 2.3835 46.1801 46.6087 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 43 G 2.2300 36.4322 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 44 b 1.7281 29.0196 46.2566 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 45 9 2.8493 30.7150 47.0619 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 46 ; 15.0186 9.4563 37.1646 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 47 D 2.5469 33.9315 46.2566 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 48 L 2.6268 28.2917 45.9489 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 49 y 16.7117 29.5371 46.1801 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 50 ‘ 2.4707 6.2353 15.1734 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 51 \ 3.5477 24.7790 47.3535 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 52 R 1.0146 31.5203 46.6937 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 53 < 14.6249 19.3535 26.8266 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 54 4 2.5620 32.9854 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 55 8 1.1415 29.5371 46.6937 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 56 0 2.3315 32.0982 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 57 A 4.4276 34.7413 42.0000 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 58 E 2.5445 30.3469 46.2566 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 59 B 2.3154 29.1734 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 60 v 16.5347 25.8031 31.3748 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 61 k 1.0520 26.1668 47.8672 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 62 J 2.4344 34.6594 47.5672 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 63 U 2.7129 37.3920 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 64 j 4.6835 19.9315 58.8567 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 65 ( 0.1558 16.9248 59.1522 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 66 7 2.4950 32.5437 45.3741 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 67 § 0.0068 28.0000 47.8672 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 68 $ -2.6524 31.6450 60.2521 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 69 € 1.1319 37.0881 46.6937 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 70 / -0.1979 26.4584 49.4087 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 71 C 2.3665 31.7346 45.3741 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 72 * 1.2795 26.1668 23.2420 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 73 ” 2.3990 16.6424 15.3877 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 74 ? 4.5195 25.8031 44.3469 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 75 { 0.0231 19.9315 59.1522 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 76 } 0.0655 19.9315 59.1522 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 77 , 42.5078 8.6465 14.0000 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 78 I 3.4408 28.3476 43.2416 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 79 ° -1.1219 19.9315 20.0853 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 80 K 2.3728 29.1734 46.8399 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 81 H 2.3301 37.2420 46.6937 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 82 q 15.6402 25.2850 46.8399 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 83 & 2.0663 34.7451 46.9080 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 84 ’ 2.0592 8.4926 15.1734 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 85 [ 2.0929 16.1930 57.9787 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 86 - 29.0240 18.5437 5.0619 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 87 Y 3.6217 34.2353 44.7150 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 88 Q 2.5550 48.2353 56.9591 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 89 " 2.5415 15.4773 18.5437 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 90 ! -0.2193 6.0853 48.5270 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 91 x 15.7270 31.0067 32.0339 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 92 ) -0.2408 16.3469 59.1522 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 93 = 15.2329 22.4322 24.3214 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 94 + 15.6374 24.4154 24.4154 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 95 X 2.4626 38.1116 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 96 » 16.0865 31.0028 25.6531 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 97 ' -0.8795 5.0619 15.1734 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 98 ¢ -2.9731 29.3832 48.2353 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 99 Z 2.4546 37.6056 45.5203 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 100 > 16.3282 17.3703 24.6297 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 101 ® 0.2261 41.3402 40.7623 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 102 © 0.0042 40.8266 38.4231 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 103 ] 2.1226 16.1930 57.9787 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 104 é 0.0742 29.0196 47.8672 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 105 z 16.6940 26.1668 31.0067 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 106 _ 50.4269 38.7790 7.1049 -Comic_Sans_MS.ttf 101 ® 41.3402 40.7623 107 ¥ 5.2273 31.1560 42.8053 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 1 t 7.2961 24.4154 40.9766 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 2 h -0.1172 27.3402 48.0853 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 3 a 17.0760 27.8462 31.0067 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 4 n 15.7062 25.2031 32.0301 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 5 P 2.2961 25.7986 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 6 o 16.8546 28.2098 31.0067 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 7 e 16.7712 29.0196 31.0067 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 8 : 14.5044 6.5913 28.6598 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 9 r 16.8692 22.4322 31.3748 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 10 l -0.1057 5.9315 47.8672 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 11 i 4.4718 5.9315 42.5060 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 12 1 2.1141 17.7944 44.3469 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 13 | -2.8457 5.0619 59.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 14 N 2.3311 40.7623 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 15 f -0.1634 25.3570 50.5822 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 16 g 16.8837 27.1902 46.1801 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 17 d -0.2439 29.0196 47.8672 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 18 W 2.4159 55.7857 46.6937 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 19 s 13.8788 23.9737 33.7172 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 20 c 16.7633 24.4154 31.0067 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 21 u 16.9412 25.6486 31.0067 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 22 3 2.3581 26.8266 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 23 ~ 20.8597 29.5416 13.1304 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 24 # 1.8591 48.2353 45.8884 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 25 O 2.4000 40.8266 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 26 ` 0.0286 12.1668 14.0000 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 27 @ 0.0464 46.9080 50.3381 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 28 F 2.4615 29.7514 46.8399 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 29 S 4.6391 35.2549 43.5416 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 30 p 14.7497 26.0129 48.3770 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 31 “ 1.3227 16.2052 15.1734 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 32 % -0.4724 41.4940 48.0815 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 33 £ 0.0662 40.6123 52.6252 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 34 . 41.3683 7.2587 7.2587 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 35 2 2.0155 26.1844 44.3469 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 36 5 1.2551 29.0970 46.6937 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 37 m 15.5170 41.1864 33.4217 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 38 V 2.3543 33.7172 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 39 6 2.5637 28.4417 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 40 w 16.9295 36.2783 32.1801 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 41 T 3.3106 38.6252 43.4734 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 42 M 2.3710 46.1801 46.6087 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 43 G 2.2332 36.4322 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 44 b 1.7191 29.0196 46.2566 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 45 9 2.7476 30.7150 47.0619 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 46 ; 14.8884 9.4563 37.1646 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 47 D 2.3101 33.9315 46.2566 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 48 L 2.3623 28.2917 45.9489 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 49 y 16.8031 29.5371 46.1801 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 50 ‘ 2.4072 6.2353 15.1734 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 51 \ 2.9676 24.7790 47.3535 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 52 R 0.9556 31.5203 46.6937 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 53 < 14.6152 19.3535 26.8266 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 54 4 2.2320 32.9854 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 55 8 1.1929 29.5371 46.6937 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 56 0 2.5431 32.0982 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 57 A 4.8393 34.7413 42.0000 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 58 E 2.3734 30.3469 46.2566 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 59 B 2.1656 29.1734 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 60 v 16.7848 25.8031 31.3748 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 61 k 1.2393 26.1668 47.8672 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 62 J 2.1629 34.6594 47.5672 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 63 U 2.4294 37.3920 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 64 j 4.8143 19.9315 58.8567 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 65 ( 0.4471 16.9248 59.1522 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 66 7 2.6618 32.5437 45.3741 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 67 § 0.3582 28.0000 47.8672 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 68 $ -2.5666 31.6450 60.2521 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 69 € 1.0251 37.0881 46.6937 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 70 / -0.2270 26.4584 49.4087 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 71 C 2.4866 31.7346 45.3741 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 72 * 1.0983 26.1668 23.2420 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 73 ” 2.4669 16.6424 15.3877 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 74 ? 4.6953 25.8031 44.3469 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 75 { 0.2762 19.9315 59.1522 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 76 } 0.1115 19.9315 59.1522 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 77 , 42.6776 8.6465 14.0000 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 78 I 3.5525 28.3476 43.2416 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 79 ° -1.4986 19.9315 20.0853 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 80 K 2.2657 29.1734 46.8399 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 81 H 2.4276 37.2420 46.6937 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 82 q 16.0758 25.2850 46.8399 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 83 & 2.2036 34.7451 46.9080 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 84 ’ 2.4753 8.4926 15.1734 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 85 [ 2.3423 16.1930 57.9787 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 86 - 28.7098 18.5437 5.0619 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 87 Y 3.5074 34.2353 44.7150 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 88 Q 2.5082 48.2353 56.9591 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 89 " 2.2612 15.4773 18.5437 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 90 ! 0.1561 6.0853 48.5270 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 91 x 16.0902 31.0067 32.0339 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 92 ) 0.0955 16.3469 59.1522 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 93 = 15.4040 22.4322 24.3214 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 94 + 15.8432 24.4154 24.4154 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 95 X 2.3609 38.1116 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 96 » 15.9246 31.0028 25.6531 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 97 ' -1.0433 5.0619 15.1734 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 98 ¢ -2.7113 29.3832 48.2353 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 99 Z 2.3232 37.6056 45.5203 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 100 > 16.6589 17.3703 24.6297 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 101 ® -0.1385 41.3402 40.7623 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 102 © -0.0798 40.8266 38.4231 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 103 ] 2.2574 16.1930 57.9787 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 104 é 0.1621 29.0196 47.8672 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 105 z 16.6607 26.1668 31.0067 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 106 _ 50.2770 38.7790 7.1049 -Comic_Sans_MS.ttf 102 © 40.8266 38.4231 107 ¥ 4.9712 31.1560 42.8053 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 1 t 4.4001 24.4154 40.9766 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 2 h -2.1985 27.3402 48.0853 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 3 a 14.6804 27.8462 31.0067 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 4 n 13.5508 25.2031 32.0301 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 5 P -0.2006 25.7986 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 6 o 14.5228 28.2098 31.0067 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 7 e 14.3991 29.0196 31.0067 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 8 : 11.9198 6.5913 28.6598 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 9 r 14.0681 22.4322 31.3748 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 10 l -2.3301 5.9315 47.8672 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 11 i 1.9151 5.9315 42.5060 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 12 1 0.1669 17.7944 44.3469 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 13 | -4.7533 5.0619 59.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 14 N -0.0312 40.7623 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 15 f -2.2959 25.3570 50.5822 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 16 g 14.5053 27.1902 46.1801 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 17 d -2.2774 29.0196 47.8672 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 18 W 0.0801 55.7857 46.6937 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 19 s 11.7325 23.9737 33.7172 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 20 c 14.4979 24.4154 31.0067 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 21 u 14.7051 25.6486 31.0067 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 22 3 0.0826 26.8266 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 23 ~ 18.4798 29.5416 13.1304 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 24 # -0.3590 48.2353 45.8884 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 25 O 0.1333 40.8266 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 26 ` -2.5152 12.1668 14.0000 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 27 @ -2.4203 46.9080 50.3381 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 28 F -0.0804 29.7514 46.8399 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 29 S 2.5418 35.2549 43.5416 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 30 p 12.2590 26.0129 48.3770 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 31 “ -0.7446 16.2052 15.1734 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 32 % -2.4897 41.4940 48.0815 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 33 £ -2.3756 40.6123 52.6252 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 34 . 38.3068 7.2587 7.2587 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 35 2 0.1274 26.1844 44.3469 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 36 5 -1.1734 29.0970 46.6937 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 37 m 13.6679 41.1864 33.4217 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 38 V 0.0228 33.7172 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 39 6 0.1169 28.4417 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 40 w 14.4227 36.2783 32.1801 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 41 T 0.7062 38.6252 43.4734 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 42 M 0.0304 46.1801 46.6087 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 43 G -0.1242 36.4322 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 44 b -0.7460 29.0196 46.2566 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 45 9 -0.2443 30.7150 47.0619 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 46 ; 12.4947 9.4563 37.1646 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 47 D -0.0592 33.9315 46.2566 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 48 L -0.1594 28.2917 45.9489 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 49 y 14.3491 29.5371 46.1801 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 50 ‘ -0.0185 6.2353 15.1734 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 51 \ 0.8220 24.7790 47.3535 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 52 R -1.3365 31.5203 46.6937 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 53 < 11.9480 19.3535 26.8266 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 54 4 0.1414 32.9854 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 55 8 -0.9694 29.5371 46.6937 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 56 0 0.0385 32.0982 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 57 A 2.4651 34.7413 42.0000 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 58 E 0.2960 30.3469 46.2566 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 59 B 0.1577 29.1734 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 60 v 14.3634 25.8031 31.3748 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 61 k -0.8659 26.1668 47.8672 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 62 J 0.1998 34.6594 47.5672 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 63 U -0.1280 37.3920 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 64 j 2.5673 19.9315 58.8567 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 65 ( -2.7409 16.9248 59.1522 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 66 7 0.2333 32.5437 45.3741 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 67 § -2.3910 28.0000 47.8672 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 68 $ -4.9248 31.6450 60.2521 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 69 € -1.2304 37.0881 46.6937 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 70 / -2.4437 26.4584 49.4087 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 71 C 0.2819 31.7346 45.3741 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 72 * -1.1939 26.1668 23.2420 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 73 ” 0.1478 16.6424 15.3877 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 74 ? 2.0156 25.8031 44.3469 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 75 { -2.5959 19.9315 59.1522 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 76 } -2.2912 19.9315 59.1522 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 77 , 40.3811 8.6465 14.0000 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 78 I 1.4197 28.3476 43.2416 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 79 ° -3.6299 19.9315 20.0853 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 80 K 0.0812 29.1734 46.8399 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 81 H 0.0857 37.2420 46.6937 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 82 q 13.2471 25.2850 46.8399 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 83 & 0.0424 34.7451 46.9080 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 84 ’ 0.1011 8.4926 15.1734 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 85 [ 0.0557 16.1930 57.9787 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 86 - 26.5938 18.5437 5.0619 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 87 Y 1.1637 34.2353 44.7150 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 88 Q 0.0024 48.2353 56.9591 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 89 " 0.0479 15.4773 18.5437 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 90 ! -2.3696 6.0853 48.5270 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 91 x 13.2842 31.0067 32.0339 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 92 ) -2.4794 16.3469 59.1522 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 93 = 13.2420 22.4322 24.3214 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 94 + 13.2576 24.4154 24.4154 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 95 X -0.0060 38.1116 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 96 » 13.3589 31.0028 25.6531 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 97 ' -3.0437 5.0619 15.1734 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 98 ¢ -5.1028 29.3832 48.2353 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 99 Z -0.0333 37.6056 45.5203 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 100 > 14.2351 17.3703 24.6297 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 101 ® -2.4826 41.3402 40.7623 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 102 © -2.5518 40.8266 38.4231 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 103 ] 0.0133 16.1930 57.9787 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 104 é -2.2657 29.0196 47.8672 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 105 z 14.6008 26.1668 31.0067 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 106 _ 48.2016 38.7790 7.1049 -Comic_Sans_MS.ttf 103 ] 16.1930 57.9787 107 ¥ 2.6052 31.1560 42.8053 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 1 t 6.9011 24.4154 40.9766 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 2 h -0.1175 27.3402 48.0853 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 3 a 16.9245 27.8462 31.0067 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 4 n 15.7651 25.2031 32.0301 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 5 P 2.2227 25.7986 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 6 o 16.4075 28.2098 31.0067 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 7 e 16.7349 29.0196 31.0067 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 8 : 14.6812 6.5913 28.6598 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 9 r 16.5924 22.4322 31.3748 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 10 l -0.2796 5.9315 47.8672 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 11 i 4.0447 5.9315 42.5060 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 12 1 1.7733 17.7944 44.3469 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 13 | -2.6007 5.0619 59.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 14 N 2.3399 40.7623 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 15 f -0.2271 25.3570 50.5822 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 16 g 16.6527 27.1902 46.1801 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 17 d -0.3942 29.0196 47.8672 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 18 W 2.4560 55.7857 46.6937 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 19 s 14.1199 23.9737 33.7172 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 20 c 16.9267 24.4154 31.0067 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 21 u 16.9938 25.6486 31.0067 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 22 3 2.5165 26.8266 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 23 ~ 20.5010 29.5416 13.1304 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 24 # 1.9514 48.2353 45.8884 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 25 O 2.3646 40.8266 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 26 ` 0.0578 12.1668 14.0000 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 27 @ -0.1723 46.9080 50.3381 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 28 F 2.4159 29.7514 46.8399 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 29 S 4.5721 35.2549 43.5416 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 30 p 14.3722 26.0129 48.3770 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 31 “ 1.7351 16.2052 15.1734 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 32 % -0.2105 41.4940 48.0815 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 33 £ 0.0476 40.6123 52.6252 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 34 . 40.8285 7.2587 7.2587 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 35 2 2.4725 26.1844 44.3469 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 36 5 0.9649 29.0970 46.6937 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 37 m 15.7285 41.1864 33.4217 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 38 V 2.3214 33.7172 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 39 6 2.4222 28.4417 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 40 w 16.3738 36.2783 32.1801 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 41 T 3.1507 38.6252 43.4734 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 42 M 2.1781 46.1801 46.6087 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 43 G 2.3469 36.4322 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 44 b 1.6684 29.0196 46.2566 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 45 9 2.0744 30.7150 47.0619 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 46 ; 15.2930 9.4563 37.1646 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 47 D 2.4805 33.9315 46.2566 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 48 L 2.1376 28.2917 45.9489 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 49 y 16.7605 29.5371 46.1801 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 50 ‘ 2.2696 6.2353 15.1734 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 51 \ 3.5943 24.7790 47.3535 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 52 R 1.3147 31.5203 46.6937 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 53 < 16.5833 17.3703 24.6297 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 54 4 2.3417 32.9854 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 55 8 1.0538 29.5371 46.6937 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 56 0 2.4540 32.0982 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 57 A 4.3590 34.7413 42.0000 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 58 E 2.2383 30.3469 46.2566 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 59 B 2.3447 29.1734 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 60 v 16.9319 25.8031 31.3748 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 61 k 1.2638 26.1668 47.8672 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 62 J 2.2870 34.6594 47.5672 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 63 U 2.5109 37.3920 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 64 j 4.5313 19.9315 58.8567 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 65 ( 0.2492 16.3469 59.1522 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 66 7 2.2373 32.5437 45.3741 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 67 § -0.0175 28.0000 47.8672 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 68 $ -2.5975 31.6450 60.2521 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 69 € 1.4222 37.0881 46.6937 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 70 / -0.4764 26.4584 49.4087 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 71 C 2.4389 31.7346 45.3741 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 72 * 1.0336 26.1668 23.2420 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 73 ” 2.0358 16.6424 15.3877 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 74 ? 4.5374 25.8031 44.3469 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 75 { -0.2475 19.9315 59.1522 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 76 } 0.1042 19.9315 59.1522 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 77 , 42.9008 8.6465 14.0000 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 78 I 3.4292 28.3476 43.2416 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 79 ° -1.4602 19.9315 20.0853 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 80 K 2.4480 29.1734 46.8399 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 81 H 2.5719 37.2420 46.6937 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 82 q 15.7165 25.2850 46.8399 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 83 & 2.0851 34.7451 46.9080 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 84 ’ 2.2649 8.4926 15.1734 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 85 [ 2.4530 16.1930 57.9787 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 86 - 28.7427 18.5437 5.0619 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 87 Y 3.7141 34.2353 44.7150 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 88 Q 2.3520 48.2353 56.9591 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 89 " 2.3164 15.4773 18.5437 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 90 ! -0.0492 6.0853 48.5270 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 91 x 16.0061 31.0067 32.0339 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 92 ) 0.0416 16.9248 59.1522 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 93 = 15.9135 22.4322 24.3214 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 94 + 15.7112 24.4154 24.4154 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 95 X 2.2555 38.1116 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 96 » 16.0375 31.0028 25.6531 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 97 ' -0.7112 5.0619 15.1734 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 98 ¢ -2.6063 29.3832 48.2353 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 99 Z 2.2657 37.6056 45.5203 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 100 > 14.4166 19.3535 26.8266 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 101 ® 0.1781 41.3402 40.7623 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 102 © -0.1131 40.8266 38.4231 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 103 ] 1.8896 16.1930 57.9787 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 104 é 0.1044 29.0196 47.8672 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 105 z 17.0259 26.1668 31.0067 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 106 _ 50.6502 38.7790 7.1049 -Comic_Sans_MS.ttf 104 é 29.0196 47.8672 107 ¥ 4.9224 31.1560 42.8053 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 1 t -10.0668 24.4154 40.9766 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 2 h -17.0228 27.3402 48.0853 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 3 a -0.0728 27.8462 31.0067 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 4 n -1.0504 25.2031 32.0301 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 5 P -14.4636 25.7986 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 6 o -0.0466 28.2098 31.0067 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 7 e 0.0940 29.0196 31.0067 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 8 : -2.4608 6.5913 28.6598 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 9 r -0.4937 22.4322 31.3748 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 10 l -16.6737 5.9315 47.8672 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 11 i -12.5037 5.9315 42.5060 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 12 1 -14.7704 17.7944 44.3469 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 13 | -19.7155 5.0619 59.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 14 N -14.5077 40.7623 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 15 f -16.6446 25.3570 50.5822 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 16 g 0.0311 27.1902 46.1801 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 17 d -16.8188 29.0196 47.8672 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 18 W -14.5122 55.7857 46.6937 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 19 s -2.9371 23.9737 33.7172 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 20 c 0.0676 24.4154 31.0067 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 21 u 0.0787 25.6486 31.0067 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 22 3 -14.4752 26.8266 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 23 ~ 3.6391 29.5416 13.1304 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 24 # -14.8461 48.2353 45.8884 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 25 O -14.5182 40.8266 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 26 ` -16.7576 12.1668 14.0000 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 27 @ -16.6185 46.9080 50.3381 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 28 F -14.4005 29.7514 46.8399 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 29 S -12.1710 35.2549 43.5416 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 30 p -2.1227 26.0129 48.3770 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 31 “ -15.2611 16.2052 15.1734 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 32 % -16.9543 41.4940 48.0815 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 33 £ -17.1358 40.6123 52.6252 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 34 . 24.0819 7.2587 7.2587 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 35 2 -14.6658 26.1844 44.3469 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 36 5 -15.5011 29.0970 46.6937 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 37 m -1.0021 41.1864 33.4217 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 38 V -14.3857 33.7172 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 39 6 -14.7561 28.4417 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 40 w -0.1262 36.2783 32.1801 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 41 T -13.6045 38.6252 43.4734 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 42 M -14.2435 46.1801 46.6087 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 43 G -14.7231 36.4322 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 44 b -15.1934 29.0196 46.2566 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 45 9 -14.5098 30.7150 47.0619 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 46 ; -1.7597 9.4563 37.1646 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 47 D -14.3190 33.9315 46.2566 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 48 L -14.5174 28.2917 45.9489 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 49 y -0.0784 29.5371 46.1801 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 50 ‘ -14.2973 6.2353 15.1734 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 51 \ -13.6342 24.7790 47.3535 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 52 R -15.6871 31.5203 46.6937 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 53 < -0.2745 17.3703 24.6297 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 54 4 -14.3776 32.9854 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 55 8 -15.9022 29.5371 46.6937 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 56 0 -14.4348 32.0982 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 57 A -12.1668 34.7413 42.0000 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 58 E -14.5314 30.3469 46.2566 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 59 B -14.5262 29.1734 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 60 v -0.4468 25.8031 31.3748 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 61 k -15.5908 26.1668 47.8672 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 62 J -14.5938 34.6594 47.5672 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 63 U -14.3765 37.3920 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 64 j -12.1122 19.9315 58.8567 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 65 ( -17.0616 16.3469 59.1522 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 66 7 -14.2562 32.5437 45.3741 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 67 § -17.0778 28.0000 47.8672 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 68 $ -19.3338 31.6450 60.2521 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 69 € -15.8099 37.0881 46.6937 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 70 / -17.0913 26.4584 49.4087 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 71 C -14.3045 31.7346 45.3741 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 72 * -15.8657 26.1668 23.2420 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 73 ” -14.6008 16.6424 15.3877 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 74 ? -12.2283 25.8031 44.3469 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 75 { -16.7748 19.9315 59.1522 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 76 } -16.7734 19.9315 59.1522 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 77 , 25.9689 8.6465 14.0000 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 78 I -13.0591 28.3476 43.2416 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 79 ° -18.0614 19.9315 20.0853 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 80 K -14.6921 29.1734 46.8399 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 81 H -14.5889 37.2420 46.6937 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 82 q -1.1770 25.2850 46.8399 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 83 & -14.4636 34.7451 46.9080 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 84 ’ -14.4279 8.4926 15.1734 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 85 [ -14.2684 16.1930 57.9787 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 86 - 11.6075 18.5437 5.0619 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 87 Y -13.3200 34.2353 44.7150 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 88 Q -14.4073 48.2353 56.9591 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 89 " -14.6646 15.4773 18.5437 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 90 ! -16.8917 6.0853 48.5270 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 91 x -1.1157 31.0067 32.0339 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 92 ) -16.9260 16.9248 59.1522 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 93 = -1.2440 22.4322 24.3214 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 94 + -1.0720 24.4154 24.4154 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 95 X -14.3831 38.1116 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 96 » -0.7923 31.0028 25.6531 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 97 ' -17.4108 5.0619 15.1734 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 98 ¢ -19.6182 29.3832 48.2353 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 99 Z -14.4691 37.6056 45.5203 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 100 > -2.3399 19.3535 26.8266 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 101 ® -16.9462 41.3402 40.7623 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 102 © -16.9763 40.8266 38.4231 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 103 ] -14.5095 16.1930 57.9787 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 104 é -16.9476 29.0196 47.8672 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 105 z -0.0851 26.1668 31.0067 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 106 _ 33.6002 38.7790 7.1049 -Comic_Sans_MS.ttf 105 z 26.1668 31.0067 107 ¥ -11.8203 31.1560 42.8053 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 1 t -43.3548 24.4154 40.9766 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 2 h -50.2668 27.3402 48.0853 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 3 a -33.6827 27.8462 31.0067 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 4 n -34.5119 25.2031 32.0301 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 5 P -47.7653 25.7986 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 6 o -33.5510 28.2098 31.0067 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 7 e -33.5151 29.0196 31.0067 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 8 : -35.6160 6.5913 28.6598 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 9 r -33.9584 22.4322 31.3748 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 10 l -50.4537 5.9315 47.8672 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 11 i -46.5142 5.9315 42.5060 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 12 1 -48.2026 17.7944 44.3469 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 13 | -52.6895 5.0619 59.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 14 N -48.0759 40.7623 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 15 f -50.1163 25.3570 50.5822 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 16 g -33.4328 27.1902 46.1801 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 17 d -50.5372 29.0196 47.8672 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 18 W -48.0210 55.7857 46.6937 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 19 s -36.1093 23.9737 33.7172 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 20 c -33.6005 24.4154 31.0067 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 21 u -33.3979 25.6486 31.0067 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 22 3 -48.2782 26.8266 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 23 ~ -29.8206 29.5416 13.1304 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 24 # -48.1449 48.2353 45.8884 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 25 O -47.7494 40.8266 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 26 ` -50.3195 12.1668 14.0000 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 27 @ -50.4837 46.9080 50.3381 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 28 F -47.9496 29.7514 46.8399 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 29 S -45.5894 35.2549 43.5416 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 30 p -35.3578 26.0129 48.3770 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 31 “ -48.7024 16.2052 15.1734 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 32 % -50.5626 41.4940 48.0815 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 33 £ -50.2979 40.6123 52.6252 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 34 . -9.5408 7.2587 7.2587 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 35 2 -47.8044 26.1844 44.3469 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 36 5 -48.9847 29.0970 46.6937 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 37 m -34.4094 41.1864 33.4217 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 38 V -47.8055 33.7172 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 39 6 -48.3589 28.4417 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 40 w -33.4294 36.2783 32.1801 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 41 T -47.0599 38.6252 43.4734 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 42 M -48.3240 46.1801 46.6087 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 43 G -48.3092 36.4322 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 44 b -48.5830 29.0196 46.2566 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 45 9 -48.0823 30.7150 47.0619 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 46 ; -34.9792 9.4563 37.1646 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 47 D -47.7823 33.9315 46.2566 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 48 L -47.8982 28.2917 45.9489 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 49 y -33.5122 29.5371 46.1801 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 50 ‘ -47.8917 6.2353 15.1734 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 51 \ -47.2736 24.7790 47.3535 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 52 R -49.1300 31.5203 46.6937 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 53 < -35.9253 19.3535 26.8266 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 54 4 -47.8588 32.9854 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 55 8 -49.0873 29.5371 46.6937 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 56 0 -48.0248 32.0982 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 57 A -45.6548 34.7413 42.0000 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 58 E -48.0359 30.3469 46.2566 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 59 B -47.8383 29.1734 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 60 v -33.5151 25.8031 31.3748 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 61 k -49.2159 26.1668 47.8672 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 62 J -47.9533 34.6594 47.5672 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 63 U -48.1253 37.3920 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 64 j -45.5302 19.9315 58.8567 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 65 ( -50.4151 16.9248 59.1522 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 66 7 -47.7130 32.5437 45.3741 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 67 § -50.4522 28.0000 47.8672 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 68 $ -52.9972 31.6450 60.2521 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 69 € -49.1925 37.0881 46.6937 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 70 / -50.6653 26.4584 49.4087 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 71 C -47.5337 31.7346 45.3741 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 72 * -49.2769 26.1668 23.2420 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 73 ” -47.8594 16.6424 15.3877 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 74 ? -45.6226 25.8031 44.3469 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 75 { -50.3017 19.9315 59.1522 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 76 } -50.7112 19.9315 59.1522 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 77 , -7.3005 8.6465 14.0000 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 78 I -46.6955 28.3476 43.2416 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 79 ° -51.8124 19.9315 20.0853 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 80 K -48.0700 29.1734 46.8399 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 81 H -48.1250 37.2420 46.6937 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 82 q -35.0858 25.2850 46.8399 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 83 & -47.8678 34.7451 46.9080 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 84 ’ -48.0262 8.4926 15.1734 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 85 [ -48.0283 16.1930 57.9787 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 86 - -21.3054 18.5437 5.0619 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 87 Y -46.9041 34.2353 44.7150 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 88 Q -48.0535 48.2353 56.9591 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 89 " -48.4599 15.4773 18.5437 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 90 ! -50.3738 6.0853 48.5270 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 91 x -34.4557 31.0067 32.0339 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 92 ) -50.0338 16.3469 59.1522 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 93 = -34.7822 22.4322 24.3214 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 94 + -34.8949 24.4154 24.4154 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 95 X -48.0410 38.1116 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 96 » -34.3187 31.0028 25.6531 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 97 ' -50.7581 5.0619 15.1734 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 98 ¢ -53.0856 29.3832 48.2353 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 99 Z -47.6359 37.6056 45.5203 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 100 > -33.9584 17.3703 24.6297 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 101 ® -50.0908 41.3402 40.7623 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 102 © -50.4512 40.8266 38.4231 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 103 ] -48.0808 16.1930 57.9787 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 104 é -50.3147 29.0196 47.8672 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 105 z -33.5049 26.1668 31.0067 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 106 _ -0.0073 38.7790 7.1049 -Comic_Sans_MS.ttf 106 _ 38.7790 7.1049 107 ¥ -45.3458 31.1560 42.8053 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 1 t 1.9424 24.4154 40.9766 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 2 h -5.1028 27.3402 48.0853 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 3 a 11.7811 27.8462 31.0067 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 4 n 10.7235 25.2031 32.0301 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 5 P -2.8846 25.7986 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 6 o 11.4591 28.2098 31.0067 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 7 e 11.6513 29.0196 31.0067 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 8 : 9.5329 6.5913 28.6598 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 9 r 11.4490 22.4322 31.3748 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 10 l -4.8069 5.9315 47.8672 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 11 i -0.6812 5.9315 42.5060 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 12 1 -2.4575 17.7944 44.3469 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 13 | -7.8682 5.0619 59.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 14 N -2.7507 40.7623 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 15 f -5.1277 25.3570 50.5822 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 16 g 11.8885 27.1902 46.1801 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 17 d -5.0220 29.0196 47.8672 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 18 W -2.5158 55.7857 46.6937 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 19 s 9.0945 23.9737 33.7172 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 20 c 11.8463 24.4154 31.0067 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 21 u 11.9993 25.6486 31.0067 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 22 3 -2.6199 26.8266 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 23 ~ 15.7408 29.5416 13.1304 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 24 # -2.9132 48.2353 45.8884 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 25 O -2.5558 40.8266 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 26 ` -5.1785 12.1668 14.0000 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 27 @ -4.8161 46.9080 50.3381 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 28 F -2.8032 29.7514 46.8399 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 29 S -0.2734 35.2549 43.5416 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 30 p 9.6165 26.0129 48.3770 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 31 “ -3.4621 16.2052 15.1734 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 32 % -5.4280 41.4940 48.0815 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 33 £ -5.2277 40.6123 52.6252 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 34 . 36.1326 7.2587 7.2587 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 35 2 -2.9708 26.1844 44.3469 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 36 5 -3.9339 29.0970 46.6937 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 37 m 10.6364 41.1864 33.4217 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 38 V -2.8836 33.7172 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 39 6 -2.6796 28.4417 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 40 w 12.0397 36.2783 32.1801 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 41 T -1.9927 38.6252 43.4734 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 42 M -2.7150 46.1801 46.6087 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 43 G -2.8354 36.4322 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 44 b -3.2872 29.0196 46.2566 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 45 9 -2.9021 30.7150 47.0619 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 46 ; 9.8803 9.4563 37.1646 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 47 D -2.7372 33.9315 46.2566 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 48 L -2.6695 28.2917 45.9489 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 49 y 11.9537 29.5371 46.1801 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 50 ‘ -2.5239 6.2353 15.1734 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 51 \ -1.9450 24.7790 47.3535 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 52 R -3.7740 31.5203 46.6937 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 53 < 9.5231 19.3535 26.8266 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 54 4 -2.7542 32.9854 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 55 8 -3.7611 29.5371 46.6937 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 56 0 -2.7664 32.0982 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 57 A -0.3301 34.7413 42.0000 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 58 E -2.6303 30.3469 46.2566 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 59 B -2.9290 29.1734 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 60 v 12.1325 25.8031 31.3748 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 61 k -4.0451 26.1668 47.8672 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 62 J -2.4652 34.6594 47.5672 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 63 U -2.8144 37.3920 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 64 j -0.5630 19.9315 58.8567 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 65 ( -5.1342 16.9248 59.1522 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 66 7 -2.5272 32.5437 45.3741 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 67 § -5.0661 28.0000 47.8672 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 68 $ -7.6143 31.6450 60.2521 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 69 € -3.9293 37.0881 46.6937 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 70 / -5.2472 26.4584 49.4087 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 71 C -2.9565 31.7346 45.3741 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 72 * -4.2270 26.1668 23.2420 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 73 ” -2.5102 16.6424 15.3877 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 74 ? -0.5202 25.8031 44.3469 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 75 { -5.1522 19.9315 59.1522 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 76 } -5.0265 19.9315 59.1522 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 77 , 38.1303 8.6465 14.0000 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 78 I -1.5168 28.3476 43.2416 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 79 ° -6.6255 19.9315 20.0853 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 80 K -2.8698 29.1734 46.8399 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 81 H -2.8535 37.2420 46.6937 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 82 q 10.5440 25.2850 46.8399 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 83 & -2.6376 34.7451 46.9080 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 84 ’ -2.8865 8.4926 15.1734 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 85 [ -2.7514 16.1930 57.9787 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 86 - 23.9117 18.5437 5.0619 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 87 Y -1.3733 34.2353 44.7150 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 88 Q -2.4565 48.2353 56.9591 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 89 " -2.7913 15.4773 18.5437 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 90 ! -5.1468 6.0853 48.5270 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 91 x 11.0972 31.0067 32.0339 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 92 ) -4.7065 16.3469 59.1522 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 93 = 10.5837 22.4322 24.3214 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 94 + 10.6714 24.4154 24.4154 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 95 X -2.6849 38.1116 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 96 » 10.7895 31.0028 25.6531 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 97 ' -5.7116 5.0619 15.1734 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 98 ¢ -7.6163 29.3832 48.2353 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 99 Z -2.7521 37.6056 45.5203 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 100 > 11.3032 17.3703 24.6297 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 101 ® -5.3148 41.3402 40.7623 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 102 © -4.8065 40.8266 38.4231 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 103 ] -2.8109 16.1930 57.9787 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 104 é -4.6731 29.0196 47.8672 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 105 z 11.8774 26.1668 31.0067 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 106 _ 45.4242 38.7790 7.1049 -Comic_Sans_MS.ttf 107 ¥ 31.1560 42.8053 107 ¥ -0.2359 31.1560 42.8053 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 1 t -0.1031 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 2 h -5.5683 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 3 a 9.1513 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 4 n 8.5288 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 5 P -4.8594 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 6 o 9.0308 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 7 e 9.2322 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 8 : 7.7726 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 9 r 8.9610 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 10 l -5.8068 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 11 i -3.1163 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 12 1 -4.9780 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 13 | -9.7321 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 14 N -4.4302 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 15 f -5.9750 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 16 g 9.2716 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 17 d -5.5659 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 18 W -4.7064 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 19 s 9.1970 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 20 c 9.3394 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 21 u 9.3953 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 22 3 -4.7130 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 23 ~ 13.3513 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 24 # -8.1315 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 25 O -4.5925 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 26 ` -8.4036 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 27 @ -7.1762 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 28 F -4.7289 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 29 S -2.3089 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 30 p 8.0895 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 31 “ -6.1624 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 32 % -7.3392 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 33 £ -5.2873 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 34 . 34.8855 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 35 2 -4.5362 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 36 5 -4.4461 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 37 m 8.0990 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 38 V -4.8511 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 39 6 -4.7749 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 40 w 9.2007 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 41 T -4.2487 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 42 M -4.7535 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 43 G -4.9019 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 44 b -5.8938 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 45 9 -4.6133 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 46 ; 8.1310 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 47 D -4.8654 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 48 L -4.7570 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 49 y 9.3601 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 50 ‘ -5.9021 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 51 \ -4.7765 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 52 R -6.0493 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 53 < 9.3033 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 54 4 -4.4514 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 55 8 -5.7592 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 56 0 -4.8562 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 57 A -2.3650 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 58 E -4.7868 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 59 B -4.6653 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 60 v 9.3568 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 61 k -6.3622 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 62 J -5.0446 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 63 U -2.8272 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 64 j -2.7726 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 65 ( -5.9972 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 66 7 -3.1260 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 67 § -7.0784 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 68 $ -9.4988 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 69 € -4.3003 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 70 / -7.4442 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 71 C -4.5381 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 72 * -5.8463 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 73 ” -5.9076 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 74 ? -4.6579 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 75 { -5.8453 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 76 } -5.6711 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 77 , 35.6195 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 78 I -3.0825 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 79 ° -8.3175 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 80 K -4.8011 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 81 H -4.6725 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 82 q 8.0406 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 83 & -4.4727 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 84 ’ -5.8466 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 85 [ -3.5442 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 86 - 21.9444 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 87 Y -4.8062 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 88 Q -4.9473 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 89 " -5.9600 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 90 ! -5.7504 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 91 x 9.2638 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 92 ) -5.9937 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 93 = 13.7649 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 94 + 9.1444 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 95 X -4.8934 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 96 » 9.0010 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 97 ' -5.8458 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 98 ¢ -10.6256 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 99 Z -3.4573 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 100 > 8.0205 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 101 ® -7.1795 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 102 © -6.4417 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 103 ] -3.4740 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 104 é -8.5922 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 105 z 9.2246 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 106 _ 44.2212 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 1 t 26.0576 41.3961 107 ¥ -1.9636 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 1 t 6.0655 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 2 h -0.0119 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 3 a 15.0141 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 4 n 14.4220 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 5 P 1.2316 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 6 o 15.2176 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 7 e 15.2975 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 8 : 13.9242 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 9 r 14.9400 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 10 l -0.0614 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 11 i 2.9089 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 12 1 1.2135 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 13 | -3.6690 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 14 N 0.9287 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 15 f 0.4223 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 16 g 15.2054 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 17 d -0.1117 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 18 W 1.3125 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 19 s 15.3438 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 20 c 15.1665 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 21 u 14.9825 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 22 3 1.0196 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 23 ~ 19.2881 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 24 # -2.1156 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 25 O 1.1771 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 26 ` -2.3126 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 27 @ -1.1402 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 28 F 1.6573 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 29 S 3.6117 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 30 p 14.0032 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 31 “ 0.2782 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 32 % -1.2336 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 33 £ 0.5363 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 34 . 41.3551 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 35 2 1.4066 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 36 5 1.1072 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 37 m 13.8810 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 38 V 1.1762 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 39 6 1.1545 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 40 w 15.1921 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 41 T 1.2580 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 42 M 1.2978 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 43 G 1.3827 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 44 b -0.2869 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 45 9 0.5766 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 46 ; 13.9632 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 47 D 1.0071 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 48 L 0.8960 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 49 y 15.2019 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 50 ‘ -0.0348 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 51 \ 1.2295 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 52 R 0.0830 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 53 < 15.1301 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 54 4 0.9284 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 55 8 0.1109 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 56 0 1.0915 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 57 A 3.4271 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 58 E 1.1295 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 59 B 1.2546 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 60 v 15.0503 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 61 k 0.1094 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 62 J 1.0696 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 63 U 3.4501 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 64 j 3.4303 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 65 ( -0.0714 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 66 7 2.6522 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 67 § -1.3145 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 68 $ -3.6543 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 69 € 1.3711 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 70 / -1.3762 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 71 C 1.5450 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 72 * 0.0417 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 73 ” -0.0140 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 74 ? 0.9715 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 75 { 0.0060 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 76 } -0.0389 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 77 , 41.3418 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 78 I 2.7475 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 79 ° -2.5295 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 80 K 1.4408 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 81 H 1.2978 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 82 q 14.0629 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 83 & 1.1252 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 84 ’ 0.1770 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 85 [ 2.5149 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 86 - 27.6595 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 87 Y 1.1105 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 88 Q 1.2518 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 89 " 0.1020 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 90 ! 0.0988 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 91 x 15.0856 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 92 ) 0.0135 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 93 = 19.7935 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 94 + 14.6339 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 95 X 1.1734 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 96 » 15.0168 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 97 ' 0.2544 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 98 ¢ -4.6899 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 99 Z 2.5658 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 100 > 13.9870 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 101 ® -1.2986 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 102 © -0.2619 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 103 ] 2.2988 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 104 é -2.7244 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 105 z 15.2162 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 106 _ 50.1309 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 2 h 27.2297 47.3128 107 ¥ 4.0138 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 1 t -9.4922 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 2 h -15.1625 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 3 a 0.1227 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 4 n -0.6847 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 5 P -14.1623 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 6 o -0.0497 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 7 e -0.0325 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 8 : -1.7610 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 9 r 0.0167 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 10 l -15.4799 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 11 i -12.3635 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 12 1 -14.0819 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 13 | -18.7483 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 14 N -13.5500 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 15 f -15.1132 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 16 g -0.0345 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 17 d -15.1085 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 18 W -14.3748 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 19 s -0.0714 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 20 c -0.0492 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 21 u -0.1201 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 22 3 -13.9618 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 23 ~ 3.7506 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 24 # -17.4909 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 25 O -13.8484 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 26 ` -17.6397 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 27 @ -16.4736 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 28 F -13.9167 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 29 S -11.5420 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 30 p -1.2204 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 31 “ -14.9984 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 32 % -16.4690 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 33 £ -14.5909 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 34 . 25.9060 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 35 2 -14.1900 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 36 5 -14.4050 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 37 m -0.6543 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 38 V -13.7744 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 39 6 -13.9579 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 40 w -0.1543 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 41 T -13.6800 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 42 M -13.7016 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 43 G -14.1091 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 44 b -15.4274 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 45 9 -13.8679 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 46 ; -1.0636 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 47 D -14.0969 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 48 L -14.1628 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 49 y -0.1739 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 50 ‘ -14.9287 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 51 \ -13.9443 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 52 R -15.0674 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 53 < 0.2452 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 54 4 -14.0833 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 55 8 -15.1564 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 56 0 -13.8897 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 57 A -11.8909 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 58 E -13.9563 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 59 B -14.4691 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 60 v 0.1911 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 61 k -15.3075 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 62 J -14.0889 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 63 U -11.9950 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 64 j -12.0333 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 65 ( -15.2301 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 66 7 -12.5765 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 67 § -16.1886 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 68 $ -18.5805 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 69 € -13.7881 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 70 / -16.6778 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 71 C -13.5510 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 72 * -15.1559 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 73 ” -15.5750 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 74 ? -14.1711 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 75 { -15.1500 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 76 } -15.3083 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 77 , 26.2800 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 78 I -12.3606 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 79 ° -17.7169 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 80 K -14.1423 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 81 H -13.8453 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 82 q -1.4861 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 83 & -14.0087 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 84 ’ -15.1462 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 85 [ -12.6799 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 86 - 12.6732 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 87 Y -13.8859 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 88 Q -13.8959 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 89 " -15.3443 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 90 ! -14.9451 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 91 x -0.2544 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 92 ) -15.1105 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 93 = 4.6687 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 94 + -0.1963 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 95 X -13.8159 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 96 » -0.3425 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 97 ' -15.1186 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 98 ¢ -20.0278 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 99 Z -12.7756 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 100 > -0.9271 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 101 ® -16.1341 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 102 © -15.2295 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 103 ] -12.6510 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 104 é -17.8870 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 105 z -0.1356 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 106 _ 34.7717 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 3 a 29.4644 31.7243 107 ¥ -11.0543 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 1 t -8.5259 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 2 h -14.4417 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 3 a 0.8509 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 4 n -0.1900 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 5 P -13.3209 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 6 o 0.5038 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 7 e 0.8060 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 8 : -1.0757 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 9 r 1.0530 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 10 l -14.5702 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 11 i -11.4014 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 12 1 -13.3188 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 13 | -18.0420 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 14 N -13.0309 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 15 f -14.4293 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 16 g 0.7685 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 17 d -14.4859 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 18 W -13.1009 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 19 s 0.7433 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 20 c 0.7669 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 21 u 0.7679 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 22 3 -13.5133 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 23 ~ 4.7836 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 24 # -16.7938 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 25 O -13.3512 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 26 ` -16.9921 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 27 @ -15.2628 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 28 F -13.2026 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 29 S -10.8584 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 30 p -0.5955 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 31 “ -14.5976 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 32 % -16.0894 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 33 £ -13.8683 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 34 . 26.9157 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 35 2 -13.2010 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 36 5 -13.3854 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 37 m -0.5936 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 38 V -13.2752 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 39 6 -13.4316 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 40 w 0.4987 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 41 T -13.2620 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 42 M -13.4684 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 43 G -13.1716 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 44 b -14.7649 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 45 9 -13.4546 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 46 ; -0.5279 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 47 D -13.3004 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 48 L -13.3101 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 49 y 0.8921 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 50 ‘ -14.3730 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 51 \ -13.2657 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 52 R -14.0169 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 53 < 1.0527 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 54 4 -13.4013 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 55 8 -14.2870 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 56 0 -13.0488 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 57 A -11.0434 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 58 E -12.9500 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 59 B -13.3696 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 60 v 0.4583 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 61 k -14.5359 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 62 J -13.5509 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 63 U -11.1411 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 64 j -11.0796 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 65 ( -14.0781 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 66 7 -11.6022 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 67 § -15.9356 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 68 $ -18.1162 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 69 € -12.8380 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 70 / -15.8719 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 71 C -13.2157 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 72 * -14.4057 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 73 ” -14.3265 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 74 ? -13.4225 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 75 { -14.2908 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 76 } -14.1527 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 77 , 27.0129 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 78 I -11.7275 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 79 ° -16.9732 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 80 K -13.0657 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 81 H -13.0472 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 82 q -0.4571 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 83 & -13.1486 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 84 ’ -14.4297 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 85 [ -12.2027 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 86 - 13.2414 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 87 Y -13.1951 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 88 Q -12.9938 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 89 " -14.2764 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 90 ! -14.5777 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 91 x 0.5032 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 92 ) -14.5924 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 93 = 5.3788 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 94 + 0.7543 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 95 X -13.1875 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 96 » 0.7420 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 97 ' -14.3413 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 98 ¢ -19.2274 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 99 Z -11.6536 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 100 > 0.0112 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 101 ® -15.1795 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 102 © -14.8759 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 103 ] -12.2167 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 104 é -16.8778 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 105 z 0.6126 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 106 _ 35.3843 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 4 n 25.9576 33.2128 107 ¥ -10.2426 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 1 t 4.5787 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 2 h -1.4186 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 3 a 13.9740 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 4 n 13.1938 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 5 P -0.0774 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 6 o 13.7381 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 7 e 13.8674 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 8 : 12.5505 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 9 r 14.0163 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 10 l -0.8930 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 11 i 1.9670 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 12 1 -0.0412 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 13 | -4.8674 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 14 N -0.1027 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 15 f -1.3145 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 16 g 13.7960 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 17 d -1.2009 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 18 W 0.0292 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 19 s 13.9605 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 20 c 13.8258 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 21 u 13.9708 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 22 3 0.1718 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 23 ~ 18.0908 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 24 # -3.6947 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 25 O -0.3383 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 26 ` -3.6357 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 27 @ -2.2233 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 28 F -0.1288 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 29 S 2.2047 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 30 p 12.7705 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 31 “ -0.8194 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 32 % -2.6440 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 33 £ -0.5573 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 34 . 39.8397 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 35 2 -0.3147 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 36 5 -0.1326 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 37 m 12.5993 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 38 V -0.0861 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 39 6 -0.0008 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 40 w 14.3463 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 41 T 0.1282 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 42 M 0.0567 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 43 G -0.0703 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 44 b -1.1164 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 45 9 0.0654 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 46 ; 13.2150 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 47 D -0.3201 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 48 L -0.0552 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 49 y 13.9408 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 50 ‘ -1.2319 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 51 \ 0.1379 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 52 R -1.2490 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 53 < 13.7960 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 54 4 0.2887 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 55 8 -1.1073 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 56 0 0.0390 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 57 A 2.3826 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 58 E -0.0542 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 59 B -0.2087 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 60 v 13.8425 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 61 k -1.1091 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 62 J 0.0897 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 63 U 2.1698 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 64 j 2.0623 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 65 ( -1.3187 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 66 7 1.4942 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 67 § -2.2202 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 68 $ -4.9636 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 69 € 0.3808 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 70 / -2.4399 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 71 C 0.6817 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 72 * -1.1549 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 73 ” -1.2236 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 74 ? 0.0639 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 75 { -1.4006 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 76 } -0.9645 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 77 , 40.1326 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 78 I 1.5971 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 79 ° -3.8457 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 80 K -0.4679 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 81 H 0.0312 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 82 q 12.9590 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 83 & 0.0241 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 84 ’ -1.3941 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 85 [ 1.1330 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 86 - 26.8582 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 87 Y 0.1349 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 88 Q -0.2021 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 89 " -1.3183 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 90 ! -0.8712 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 91 x 14.2068 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 92 ) -1.2131 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 93 = 18.6412 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 94 + 13.9011 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 95 X -0.0801 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 96 » 13.9605 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 97 ' -1.1815 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 98 ¢ -6.0538 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 99 Z 1.3659 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 100 > 13.0142 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 101 ® -2.0865 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 102 © -1.1275 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 103 ] 1.3088 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 104 é -3.3765 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 105 z 14.1540 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 106 _ 48.9036 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 5 P 27.6818 45.4386 107 ¥ 2.5109 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 1 t -9.2403 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 2 h -15.1749 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 3 a 0.1937 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 4 n -0.7443 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 5 P -13.8584 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 6 o -0.1111 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 7 e 0.0293 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 8 : -1.4089 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 9 r 0.0676 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 10 l -15.0071 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 11 i -12.0104 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 12 1 -13.8293 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 13 | -18.7289 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 14 N -13.9638 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 15 f -15.0101 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 16 g -0.0176 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 17 d -15.0569 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 18 W -14.1718 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 19 s 0.0850 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 20 c -0.0027 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 21 u -0.0040 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 22 3 -13.5625 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 23 ~ 4.0646 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 24 # -17.3661 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 25 O -13.9643 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 26 ` -17.5267 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 27 @ -16.1213 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 28 F -14.2492 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 29 S -11.8350 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 30 p -0.8956 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 31 “ -15.3061 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 32 % -16.6928 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 33 £ -14.5115 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 34 . 25.8070 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 35 2 -13.8415 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 36 5 -14.0038 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 37 m -0.9255 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 38 V -13.8850 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 39 6 -13.8846 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 40 w -0.2034 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 41 T -13.3606 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 42 M -14.0871 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 43 G -14.0845 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 44 b -15.2133 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 45 9 -14.1683 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 46 ; -1.0107 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 47 D -13.6817 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 48 L -14.3282 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 49 y 0.1262 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 50 ‘ -15.3127 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 51 \ -14.0465 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 52 R -15.0608 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 53 < -0.1437 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 54 4 -14.2649 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 55 8 -15.2626 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 56 0 -13.9313 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 57 A -11.7552 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 58 E -13.9448 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 59 B -14.0167 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 60 v 0.0149 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 61 k -14.8930 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 62 J -14.0492 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 63 U -11.9825 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 64 j -11.6814 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 65 ( -15.1526 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 66 7 -12.3117 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 67 § -16.4667 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 68 $ -18.8823 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 69 € -13.6856 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 70 / -16.6087 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 71 C -13.5823 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 72 * -15.3665 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 73 ” -15.2104 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 74 ? -14.0452 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 75 { -14.9262 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 76 } -14.8499 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 77 , 26.0764 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 78 I -12.4379 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 79 ° -17.4141 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 80 K -13.6476 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 81 H -13.7124 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 82 q -0.9422 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 83 & -13.8243 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 84 ’ -15.0071 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 85 [ -12.8653 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 86 - 12.2212 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 87 Y -13.7086 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 88 Q -14.1068 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 89 " -15.2871 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 90 ! -15.1600 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 91 x 0.0885 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 92 ) -15.0386 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 93 = 4.6762 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 94 + -0.1891 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 95 X -13.9199 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 96 » 0.3032 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 97 ' -15.3113 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 98 ¢ -20.1268 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 99 Z -12.6160 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 100 > -0.9863 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 101 ® -16.4945 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 102 © -15.5827 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 103 ] -12.8236 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 104 é -17.4688 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 105 z 0.0569 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 106 _ 34.6495 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 6 o 28.7039 31.9166 107 ¥ -11.4339 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 1 t -8.9545 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 2 h -14.8548 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 3 a 0.0357 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 4 n -0.9247 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 5 P -14.0774 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 6 o -0.1072 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 7 e -0.0909 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 8 : -1.8036 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 9 r 0.2071 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 10 l -15.2972 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 11 i -11.9282 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 12 1 -13.7308 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 13 | -18.7098 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 14 N -14.2103 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 15 f -15.0655 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 16 g -0.1432 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 17 d -15.0597 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 18 W -13.8769 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 19 s -0.2578 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 20 c 0.0727 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 21 u 0.1260 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 22 3 -14.2420 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 23 ~ 3.8246 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 24 # -17.2733 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 25 O -14.0742 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 26 ` -17.6391 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 27 @ -16.1804 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 28 F -14.0455 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 29 S -11.5533 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 30 p -0.9974 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 31 “ -15.2411 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 32 % -16.7817 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 33 £ -14.2183 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 34 . 25.8651 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 35 2 -13.8734 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 36 5 -13.6028 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 37 m -1.1067 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 38 V -13.8726 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 39 6 -13.9675 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 40 w -0.1984 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 41 T -13.7189 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 42 M -14.0871 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 43 G -13.9643 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 44 b -15.2376 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 45 9 -13.9819 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 46 ; -0.8522 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 47 D -14.2013 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 48 L -13.8869 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 49 y 0.0278 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 50 ‘ -15.1470 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 51 \ -14.2386 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 52 R -15.1827 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 53 < -0.1794 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 54 4 -14.0865 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 55 8 -15.5446 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 56 0 -13.7055 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 57 A -11.4657 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 58 E -14.0532 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 59 B -13.8607 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 60 v -0.1850 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 61 k -14.9225 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 62 J -14.2487 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 63 U -11.9566 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 64 j -11.7562 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 65 ( -15.2452 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 66 7 -12.5851 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 67 § -16.0852 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 68 $ -18.8425 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 69 € -13.6215 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 70 / -16.7543 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 71 C -13.6902 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 72 * -15.3727 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 73 ” -15.1265 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 74 ? -14.1083 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 75 { -15.1327 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 76 } -15.0684 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 77 , 26.2289 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 78 I -12.6793 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 79 ° -17.7482 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 80 K -14.2715 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 81 H -13.8512 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 82 q -1.1252 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 83 & -13.6409 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 84 ’ -15.1684 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 85 [ -13.0196 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 86 - 12.2372 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 87 Y -14.0760 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 88 Q -14.2679 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 89 " -14.9646 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 90 ! -15.3689 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 91 x -0.0008 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 92 ) -15.5143 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 93 = 4.6952 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 94 + -0.2660 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 95 X -13.7305 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 96 » -0.0587 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 97 ' -14.9148 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 98 ¢ -20.0257 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 99 Z -12.6765 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 100 > -1.0362 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 101 ® -16.2759 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 102 © -15.1933 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 103 ] -12.9252 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 104 é -17.9140 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 105 z -0.2481 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 106 _ 34.5284 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 7 e 29.0462 31.4386 107 ¥ -11.4585 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 1 t -7.8417 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 2 h -13.5883 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 3 a 1.6184 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 4 n 0.5695 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 5 P -12.6608 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 6 o 1.4421 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 7 e 1.4690 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 8 : -0.0527 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 9 r 1.4831 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 10 l -13.6072 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 11 i -10.8773 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 12 1 -12.5550 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 13 | -17.5500 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 14 N -12.6951 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 15 f -13.8330 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 16 g 1.4063 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 17 d -13.6350 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 18 W -12.6181 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 19 s 1.3527 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 20 c 1.2017 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 21 u 1.4203 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 22 3 -12.3531 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 23 ~ 5.5227 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 24 # -16.3355 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 25 O -12.5418 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 26 ` -16.1131 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 27 @ -14.7745 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 28 F -12.7241 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 29 S -10.1606 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 30 p 0.4592 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 31 “ -13.7636 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 32 % -15.1391 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 33 £ -13.0265 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 34 . 27.2407 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 35 2 -12.2281 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 36 5 -12.6313 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 37 m 0.3098 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 38 V -12.4670 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 39 6 -12.6247 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 40 w 1.4560 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 41 T -12.2092 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 42 M -12.2850 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 43 G -12.4963 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 44 b -13.5845 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 45 9 -12.6989 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 46 ; 0.5131 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 47 D -12.5737 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 48 L -12.5329 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 49 y 1.4560 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 50 ‘ -13.5219 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 51 \ -12.3459 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 52 R -13.6547 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 53 < 0.1839 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 54 4 -12.1302 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 55 8 -13.9445 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 56 0 -12.4638 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 57 A -10.4448 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 58 E -12.5402 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 59 B -12.6086 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 60 v 1.4033 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 61 k -13.6657 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 62 J -12.6774 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 63 U -10.6674 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 64 j -10.1129 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 65 ( -13.6800 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 66 7 -11.0390 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 67 § -14.8364 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 68 $ -17.7406 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 69 € -12.1957 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 70 / -15.1462 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 71 C -12.4290 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 72 * -13.6271 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 73 ” -13.9418 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 74 ? -12.5353 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 75 { -13.8195 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 76 } -13.7973 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 77 , 27.9203 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 78 I -11.4245 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 79 ° -15.9533 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 80 K -12.5749 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 81 H -12.4698 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 82 q 0.1495 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 83 & -12.3077 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 84 ’ -13.7735 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 85 [ -11.2624 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 86 - 14.2190 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 87 Y -12.8689 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 88 Q -12.2588 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 89 " -13.6882 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 90 ! -13.6525 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 91 x 1.2011 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 92 ) -13.6790 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 93 = 6.1842 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 94 + 1.0460 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 95 X -12.5135 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 96 » 1.4918 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 97 ' -13.4854 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 98 ¢ -18.5431 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 99 Z -10.9533 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 100 > 1.4203 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 101 ® -14.8072 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 102 © -14.2071 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 103 ] -11.3835 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 104 é -15.8272 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 105 z 1.3245 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 106 _ 36.1416 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 8 : 8.4014 28.4423 107 ¥ -9.8579 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 1 t -9.1721 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 2 h -15.2239 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 3 a -0.0306 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 4 n -0.7346 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 5 P -13.9059 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 6 o 0.0064 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 7 e 0.0214 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 8 : -1.3002 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 9 r -0.2068 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 10 l -15.1085 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 11 i -12.0660 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 12 1 -14.1516 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 13 | -18.5606 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 14 N -13.9450 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 15 f -15.2371 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 16 g -0.3289 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 17 d -14.8967 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 18 W -14.0856 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 19 s -0.1067 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 20 c 0.2002 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 21 u -0.0574 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 22 3 -14.1637 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 23 ~ 4.1907 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 24 # -17.3994 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 25 O -14.0409 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 26 ` -17.2514 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 27 @ -16.2028 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 28 F -13.8647 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 29 S -11.8902 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 30 p -1.1987 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 31 “ -15.2695 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 32 % -16.5567 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 33 £ -14.6865 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 34 . 25.9961 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 35 2 -13.9075 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 36 5 -14.1414 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 37 m -0.9630 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 38 V -13.8536 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 39 6 -14.0327 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 40 w -0.1109 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 41 T -13.7394 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 42 M -13.7461 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 43 G -13.9448 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 44 b -15.3919 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 45 9 -14.1071 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 46 ; -1.0719 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 47 D -13.8772 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 48 L -13.8174 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 49 y -0.0769 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 50 ‘ -15.1906 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 51 \ -13.7686 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 52 R -14.7908 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 53 < -0.0774 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 54 4 -14.0135 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 55 8 -15.0248 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 56 0 -14.0195 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 57 A -11.7433 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 58 E -13.8490 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 59 B -13.7845 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 60 v -0.3745 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 61 k -15.2620 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 62 J -13.9146 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 63 U -11.7620 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 64 j -11.8548 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 65 ( -15.0272 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 66 7 -12.5155 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 67 § -16.2047 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 68 $ -18.7721 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 69 € -13.4501 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 70 / -16.5183 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 71 C -13.6380 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 72 * -14.7709 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 73 ” -15.1795 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 74 ? -14.2280 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 75 { -15.2760 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 76 } -15.3859 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 77 , 26.3411 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 78 I -12.6955 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 79 ° -17.5886 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 80 K -14.0115 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 81 H -14.0452 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 82 q -1.3172 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 83 & -14.0822 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 84 ’ -15.2931 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 85 [ -12.6411 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 86 - 12.5586 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 87 Y -13.9987 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 88 Q -13.8814 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 89 " -15.0208 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 90 ! -15.0693 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 91 x 0.0714 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 92 ) -15.0650 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 93 = 4.8603 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 94 + 0.2028 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 95 X -13.9615 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 96 » 0.3274 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 97 ' -15.2835 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 98 ¢ -20.2357 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 99 Z -12.7279 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 100 > -1.2929 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 101 ® -16.3075 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 102 © -15.5117 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 103 ] -12.6967 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 104 é -17.5658 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 105 z 0.0357 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 106 _ 34.8286 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 9 r 24.6614 32.4848 107 ¥ -10.9844 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 1 t 5.9167 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 2 h -0.1158 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 3 a 15.2660 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 4 n 14.3668 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 5 P 1.0856 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 6 o 15.2347 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 7 e 15.1906 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 8 : 13.6899 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 9 r 15.1462 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 10 l 0.1996 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 11 i 3.1687 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 12 1 0.7712 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 13 | -3.6810 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 14 N 1.0363 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 15 f -0.0175 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 16 g 15.2449 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 17 d 0.0187 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 18 W 1.1260 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 19 s 15.0351 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 20 c 15.4533 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 21 u 15.0324 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 22 3 1.1522 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 23 ~ 18.9807 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 24 # -2.3106 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 25 O 1.1057 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 26 ` -2.4754 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 27 @ -0.9748 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 28 F 1.2069 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 29 S 3.1794 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 30 p 14.0774 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 31 “ 0.0108 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 32 % -1.2144 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 33 £ 0.4621 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 34 . 40.9475 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 35 2 1.1819 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 36 5 1.0563 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 37 m 14.1383 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 38 V 1.3446 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 39 6 1.2379 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 40 w 15.1105 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 41 T 1.5362 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 42 M 1.3037 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 43 G 0.9724 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 44 b 0.1126 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 45 9 1.0715 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 46 ; 14.0803 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 47 D 1.0296 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 48 L 1.3443 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 49 y 15.2431 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 50 ‘ 0.1274 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 51 \ 1.3470 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 52 R 0.0357 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 53 < 15.1564 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 54 4 1.1605 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 55 8 0.0000 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 56 0 1.3974 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 57 A 3.5869 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 58 E 1.1597 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 59 B 1.2236 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 60 v 14.8875 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 61 k -0.1099 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 62 J 1.2014 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 63 U 3.2827 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 64 j 3.3001 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 65 ( 0.0357 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 66 7 2.6380 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 67 § -1.0545 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 68 $ -3.6424 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 69 € 1.3727 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 70 / -1.2715 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 71 C 1.5626 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 72 * 0.0000 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 73 ” 0.1981 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 74 ? 0.9659 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 75 { -0.1446 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 76 } -0.0357 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 77 , 41.4446 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 78 I 2.4507 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 79 ° -2.7728 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 80 K 1.2263 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 81 H 1.0661 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 82 q 14.0000 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 83 & 1.1029 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 84 ’ 0.2285 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 85 [ 2.3178 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 86 - 27.6401 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 87 Y 1.1388 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 88 Q 1.3974 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 89 " 0.2321 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 90 ! 0.2457 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 91 x 15.1847 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 92 ) -0.2408 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 93 = 19.6324 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 94 + 15.1372 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 95 X 1.2358 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 96 » 15.3120 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 97 ' -0.0385 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 98 ¢ -4.9986 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 99 Z 2.6574 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 100 > 14.0631 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 101 ® -1.2817 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 102 © -0.3894 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 103 ] 2.2924 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 104 é -2.4424 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 105 z 15.0753 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 106 _ 49.9072 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 10 l 7.8910 46.5848 107 ¥ 3.7976 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 1 t 2.9274 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 2 h -3.0367 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 3 a 12.0659 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 4 n 11.5853 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 5 P -2.0523 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 6 o 12.2973 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 7 e 12.0354 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 8 : 10.5106 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 9 r 12.1325 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 10 l -2.9068 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 11 i -0.1738 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 12 1 -2.2113 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 13 | -6.7129 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 14 N -2.0309 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 15 f -3.1351 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 16 g 11.9705 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 17 d -3.1680 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 18 W -2.0406 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 19 s 12.0891 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 20 c 12.1090 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 21 u 12.0338 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 22 3 -2.2228 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 23 ~ 16.2099 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 24 # -5.3197 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 25 O -1.8460 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 26 ` -5.6742 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 27 @ -3.9570 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 28 F -1.7241 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 29 S 0.2016 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 30 p 10.9828 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 31 “ -3.0117 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 32 % -4.6087 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 33 £ -2.6762 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 34 . 38.0113 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 35 2 -1.8507 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 36 5 -2.0138 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 37 m 10.9499 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 38 V -1.8553 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 39 6 -1.9360 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 40 w 12.1447 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 41 T -1.7841 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 42 M -2.1492 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 43 G -1.9424 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 44 b -3.0564 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 45 9 -1.8618 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 46 ; 11.1730 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 47 D -1.8542 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 48 L -2.0652 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 49 y 12.2429 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 50 ‘ -3.1890 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 51 \ -2.0680 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 52 R -3.1021 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 53 < 11.8969 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 54 4 -1.8539 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 55 8 -2.9214 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 56 0 -2.0333 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 57 A 0.4214 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 58 E -2.0309 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 59 B -2.1218 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 60 v 11.8969 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 61 k -3.0085 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 62 J -1.9432 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 63 U 0.0553 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 64 j 0.2487 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 65 ( -3.2152 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 66 7 -0.5050 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 67 § -4.3117 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 68 $ -6.8682 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 69 € -1.6131 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 70 / -4.3839 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 71 C -1.7040 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 72 * -2.9398 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 73 ” -3.0529 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 74 ? -1.9976 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 75 { -2.8055 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 76 } -3.0077 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 77 , 38.4778 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 78 I -0.4090 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 79 ° -5.7838 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 80 K -2.1010 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 81 H -1.8905 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 82 q 11.0380 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 83 & -2.0861 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 84 ’ -3.1243 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 85 [ -1.0394 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 86 - 24.6284 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 87 Y -1.9067 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 88 Q -2.0523 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 89 " -3.0743 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 90 ! -3.3538 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 91 x 12.0895 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 92 ) -3.2761 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 93 = 16.6255 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 94 + 11.7964 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 95 X -2.1716 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 96 » 12.1766 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 97 ' -3.2899 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 98 ¢ -8.2525 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 99 Z -0.5578 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 100 > 10.9222 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 101 ® -3.9477 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 102 © -3.5560 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 103 ] -1.0251 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 104 é -5.5667 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 105 z 12.1850 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 106 _ 47.0439 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 11 i 9.0372 43.4962 107 ¥ 0.7543 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 1 t 4.5865 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 2 h -1.2520 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 3 a 14.2408 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 4 n 13.1986 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 5 P 0.2409 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 6 o 13.8682 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 7 e 14.1604 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 8 : 12.6506 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 9 r 13.7935 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 10 l -1.0819 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 11 i 1.7551 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 12 1 -0.0877 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 13 | -4.6357 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 14 N -0.0272 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 15 f -0.8945 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 16 g 13.9104 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 17 d -1.1105 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 18 W -0.1511 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 19 s 13.9097 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 20 c 14.1044 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 21 u 13.9231 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 22 3 -0.2774 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 23 ~ 17.9952 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 24 # -3.7999 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 25 O -0.1710 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 26 ` -3.4533 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 27 @ -2.2590 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 28 F -0.1873 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 29 S 1.8698 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 30 p 12.9597 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 31 “ -1.2533 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 32 % -2.6295 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 33 £ -0.6905 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 34 . 40.1692 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 35 2 -0.0449 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 36 5 -0.0955 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 37 m 12.7859 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 38 V -0.0000 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 39 6 -0.3366 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 40 w 13.8290 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 41 T 0.4273 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 42 M -0.0234 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 43 G -0.0737 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 44 b -1.1657 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 45 9 0.1108 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 46 ; 12.7416 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 47 D 0.0500 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 48 L -0.1067 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 49 y 14.0769 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 50 ‘ -1.4251 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 51 \ 0.0777 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 52 R -1.2084 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 53 < 12.8209 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 54 4 -0.1266 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 55 8 -1.2195 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 56 0 0.2089 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 57 A 2.4528 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 58 E -0.0969 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 59 B 0.0038 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 60 v 13.9418 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 61 k -1.2146 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 62 J 0.1032 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 63 U 1.8412 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 64 j 2.0308 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 65 ( -1.7620 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 66 7 1.4129 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 67 § -2.2979 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 68 $ -4.9590 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 69 € 0.1604 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 70 / -2.7769 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 71 C 0.3650 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 72 * -1.2379 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 73 ” -1.1073 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 74 ? -0.2754 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 75 { -1.3149 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 76 } -1.1689 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 77 , 40.3626 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 78 I 1.1559 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 79 ° -3.7114 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 80 K 0.1158 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 81 H 0.0319 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 82 q 12.7716 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 83 & -0.0070 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 84 ’ -0.7689 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 85 [ 0.9147 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 86 - 26.7645 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 87 Y 0.0035 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 88 Q 0.1190 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 89 " -0.9264 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 90 ! -1.5538 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 91 x 13.7263 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 92 ) -1.1652 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 93 = 18.2890 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 94 + 13.8318 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 95 X -0.2349 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 96 » 14.2689 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 97 ' -1.0600 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 98 ¢ -6.3082 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 99 Z 1.4918 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 100 > 14.0480 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 101 ® -1.9013 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 102 © -1.5548 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 103 ] 1.2763 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 104 é -3.8668 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 105 z 13.8685 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 106 _ 49.1457 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 12 1 21.8987 44.2924 107 ¥ 2.6411 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 1 t 9.5411 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 2 h 3.7187 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 3 a 18.6260 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 4 n 18.0335 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 5 P 4.9580 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 6 o 18.7876 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 7 e 18.8475 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 8 : 17.3388 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 9 r 18.6790 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 10 l 3.9188 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 11 i 6.5506 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 12 1 4.8368 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 13 | -0.1875 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 14 N 4.4846 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 15 f 3.6149 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 16 g 18.7757 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 17 d 3.1192 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 18 W 4.8777 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 19 s 18.7652 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 20 c 18.7838 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 21 u 18.7132 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 22 3 4.5887 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 23 ~ 22.7403 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 24 # 1.1476 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 25 O 4.7900 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 26 ` 1.3537 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 27 @ 2.4861 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 28 F 4.6666 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 29 S 6.9953 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 30 p 17.7090 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 31 “ 3.7449 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 32 % 2.1172 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 33 £ 4.1336 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 34 . 44.8408 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 35 2 4.8164 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 36 5 4.8622 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 37 m 17.4831 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 38 V 4.7883 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 39 6 4.8434 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 40 w 18.8257 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 41 T 5.2625 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 42 M 4.7465 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 43 G 4.7530 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 44 b 3.5786 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 45 9 4.6190 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 46 ; 17.5495 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 47 D 4.6011 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 48 L 4.7987 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 49 y 18.9161 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 50 ‘ 3.8286 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 51 \ 4.5398 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 52 R 3.7707 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 53 < 17.8145 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 54 4 4.4309 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 55 8 3.8381 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 56 0 4.7191 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 57 A 7.0408 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 58 E 4.5138 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 59 B 4.7229 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 60 v 18.8675 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 61 k 3.5886 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 62 J 4.7737 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 63 U 6.8010 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 64 j 6.8006 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 65 ( 3.3346 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 66 7 6.3120 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 67 § 2.3127 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 68 $ -0.2794 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 69 € 5.2649 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 70 / 2.4418 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 71 C 5.2455 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 72 * 3.5057 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 73 ” 3.6743 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 74 ? 4.8614 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 75 { 3.6041 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 76 } 3.7434 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 77 , 45.1133 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 78 I 6.3290 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 79 ° 1.0283 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 80 K 4.5744 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 81 H 4.5944 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 82 q 17.5886 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 83 & 4.8292 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 84 ’ 3.6335 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 85 [ 5.9854 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 86 - 31.1556 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 87 Y 4.6931 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 88 Q 4.8019 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 89 " 3.6330 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 90 ! 3.6195 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 91 x 18.9291 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 92 ) 3.4608 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 93 = 23.3347 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 94 + 18.3604 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 95 X 4.8170 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 96 » 18.7900 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 97 ' 3.6928 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 98 ¢ -1.0928 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 99 Z 6.1719 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 100 > 18.5670 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 101 ® 2.4746 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 102 © 3.0777 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 103 ] 5.7933 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 104 é 1.3330 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 105 z 18.6193 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 106 _ 53.3073 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 13 | 9.0372 59.3386 107 ¥ 7.5088 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 1 t 4.9648 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 2 h -1.1115 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 3 a 14.0357 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 4 n 13.0572 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 5 P -0.2083 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 6 o 14.0459 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 7 e 13.8349 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 8 : 12.5579 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 9 r 13.8726 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 10 l -1.1435 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 11 i 2.1562 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 12 1 -0.0581 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 13 | -4.6296 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 14 N -0.2946 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 15 f -1.0870 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 16 g 13.7932 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 17 d -1.0261 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 18 W 0.0830 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 19 s 13.7897 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 20 c 14.0042 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 21 u 14.0041 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 22 3 -0.1935 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 23 ~ 18.0412 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 24 # -3.4543 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 25 O 0.1678 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 26 ` -3.8484 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 27 @ -2.3878 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 28 F 0.1667 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 29 S 2.2094 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 30 p 13.0806 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 31 “ -0.8676 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 32 % -2.8154 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 33 £ -0.7342 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 34 . 40.0600 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 35 2 -0.0663 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 36 5 -0.2184 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 37 m 12.8051 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 38 V 0.4138 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 39 6 -0.2331 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 40 w 13.9578 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 41 T 0.3181 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 42 M -0.0411 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 43 G -0.1194 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 44 b -1.0297 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 45 9 -0.1487 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 46 ; 13.0904 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 47 D -0.2284 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 48 L 0.1415 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 49 y 14.0144 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 50 ‘ -1.1628 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 51 \ 0.0895 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 52 R -0.9919 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 53 < 14.0190 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 54 4 0.0529 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 55 8 -1.4928 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 56 0 -0.2289 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 57 A 1.9991 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 58 E -0.3147 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 59 B -0.3121 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 60 v 14.1797 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 61 k -1.0884 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 62 J 0.1371 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 63 U 2.1892 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 64 j 1.9295 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 65 ( -1.1795 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 66 7 1.7775 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 67 § -2.2348 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 68 $ -5.0148 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 69 € 0.1551 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 70 / -2.4377 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 71 C 0.3371 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 72 * -1.1577 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 73 ” -1.3965 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 74 ? 0.3222 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 75 { -1.1443 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 76 } -1.4051 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 77 , 40.3059 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 78 I 1.6752 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 79 ° -3.5837 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 80 K -0.0737 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 81 H -0.0774 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 82 q 13.0998 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 83 & 0.1131 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 84 ’ -1.0617 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 85 [ 1.2750 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 86 - 26.2427 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 87 Y -0.0185 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 88 Q 0.1961 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 89 " -0.9267 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 90 ! -1.2041 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 91 x 13.9493 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 92 ) -1.2724 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 93 = 18.3458 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 94 + 14.2193 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 95 X 0.0650 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 96 » 13.8810 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 97 ' -1.1152 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 98 ¢ -6.3126 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 99 Z 1.6341 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 100 > 12.8090 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 101 ® -2.2953 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 102 © -1.4139 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 103 ] 1.2365 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 104 é -3.6695 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 105 z 13.8846 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 106 _ 48.6142 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 14 N 42.8280 46.5848 107 ¥ 3.0532 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 1 t 5.6855 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 2 h -0.1833 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 3 a 15.0174 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 4 n 14.5395 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 5 P 1.3353 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 6 o 15.0101 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 7 e 15.3308 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 8 : 13.3714 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 9 r 15.3700 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 10 l 0.1478 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 11 i 3.1695 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 12 1 0.7887 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 13 | -3.6054 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 14 N 0.9432 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 15 f 0.1697 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 16 g 14.9544 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 17 d -0.2614 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 18 W 1.5311 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 19 s 15.4104 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 20 c 15.0994 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 21 u 15.0363 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 22 3 1.0115 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 23 ~ 19.1359 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 24 # -2.4237 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 25 O 0.9804 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 26 ` -2.3430 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 27 @ -1.1648 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 28 F 1.0696 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 29 S 3.5309 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 30 p 13.8412 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 31 “ -0.1125 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 32 % -1.3903 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 33 £ 0.4740 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 34 . 41.0939 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 35 2 1.1176 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 36 5 1.2263 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 37 m 14.0909 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 38 V 0.9252 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 39 6 1.2371 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 40 w 14.9256 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 41 T 1.2937 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 42 M 1.2014 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 43 G 1.0454 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 44 b 0.1456 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 45 9 1.2176 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 46 ; 14.1972 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 47 D 1.0693 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 48 L 0.8545 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 49 y 15.1819 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 50 ‘ -0.1028 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 51 \ 0.9595 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 52 R 0.0027 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 53 < 14.9859 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 54 4 1.1105 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 55 8 -0.2762 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 56 0 1.2316 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 57 A 3.3696 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 58 E 1.3140 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 59 B 1.4504 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 60 v 14.7438 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 61 k -0.1332 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 62 J 1.2303 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 63 U 3.1839 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 64 j 3.4747 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 65 ( -0.1429 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 66 7 2.7387 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 67 § -1.2119 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 68 $ -3.8810 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 69 € 1.5835 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 70 / -1.2910 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 71 C 1.7182 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 72 * 0.3420 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 73 ” 0.2175 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 74 ? 1.2996 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 75 { -0.2266 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 76 } 0.0027 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 77 , 41.4122 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 78 I 2.7500 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 79 ° -2.4054 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 80 K 1.0185 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 81 H 1.0489 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 82 q 14.1426 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 83 & 1.2201 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 84 ’ 0.1409 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 85 [ 2.2214 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 86 - 27.7927 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 87 Y 0.7169 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 88 Q 0.7195 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 89 " -0.0264 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 90 ! 0.0635 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 91 x 15.0557 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 92 ) 0.1349 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 93 = 19.6621 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 94 + 15.0023 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 95 X 1.1129 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 96 » 15.2246 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 97 ' -0.0569 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 98 ¢ -4.9398 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 99 Z 2.5277 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 100 > 14.1858 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 101 ® -0.9129 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 102 © -0.3013 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 103 ] 1.9750 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 104 é -2.5658 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 105 z 15.0496 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 106 _ 50.0064 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 15 f 27.8077 50.2091 107 ¥ 3.9615 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 1 t -9.3366 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 2 h -15.2756 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 3 a -0.1559 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 4 n -0.5905 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 5 P -13.8095 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 6 o 0.2669 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 7 e 0.0734 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 8 : -1.3221 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 9 r -0.3805 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 10 l -15.0569 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 11 i -12.0548 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 12 1 -13.9421 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 13 | -18.5549 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 14 N -14.2145 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 15 f -15.1760 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 16 g 0.0917 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 17 d -15.3125 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 18 W -13.8198 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 19 s 0.0524 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 20 c -0.2492 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 21 u 0.0937 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 22 3 -14.0903 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 23 ~ 3.7836 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 24 # -17.5010 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 25 O -14.1835 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 26 ` -17.4732 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 27 @ -15.9852 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 28 F -14.1429 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 29 S -11.6229 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 30 p -1.0133 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 31 “ -15.1313 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 32 % -16.3182 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 33 £ -14.2754 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 34 . 26.2643 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 35 2 -13.9900 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 36 5 -14.0219 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 37 m -1.0688 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 38 V -14.0892 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 39 6 -13.9697 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 40 w 0.1647 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 41 T -13.9921 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 42 M -13.9389 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 43 G -13.9550 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 44 b -15.3840 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 45 9 -14.0720 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 46 ; -1.0459 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 47 D -14.1104 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 48 L -14.1548 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 49 y -0.2252 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 50 ‘ -14.8376 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 51 \ -13.7348 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 52 R -14.9395 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 53 < 0.1705 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 54 4 -14.1158 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 55 8 -15.2890 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 56 0 -14.1190 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 57 A -11.7095 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 58 E -13.9813 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 59 B -14.1324 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 60 v 0.0024 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 61 k -15.0577 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 62 J -14.0865 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 63 U -11.7390 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 64 j -11.8076 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 65 ( -15.2312 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 66 7 -12.4698 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 67 § -16.2777 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 68 $ -19.0573 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 69 € -13.5331 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 70 / -16.6211 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 71 C -13.6507 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 72 * -15.2707 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 73 ” -14.8572 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 74 ? -14.0714 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 75 { -15.1522 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 76 } -15.3432 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 77 , 26.3855 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 78 I -12.6129 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 79 ° -17.6938 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 80 K -13.8192 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 81 H -13.8674 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 82 q -1.0720 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 83 & -14.0947 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 84 ’ -15.0106 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 85 [ -12.6697 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 86 - 12.7981 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 87 Y -14.1053 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 88 Q -13.6861 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 89 " -14.9359 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 90 ! -14.8555 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 91 x -0.1228 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 92 ) -15.2176 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 93 = 4.8742 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 94 + -0.0739 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 95 X -14.3091 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 96 » -0.2535 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 97 ' -15.2577 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 98 ¢ -20.1456 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 99 Z -12.7729 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 100 > -0.8894 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 101 ® -15.9174 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 102 © -15.6958 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 103 ] -12.5840 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 104 é -17.4807 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 105 z 0.0909 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 106 _ 34.9613 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 16 g 29.3962 46.1666 107 ¥ -11.2338 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 1 t 6.0179 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 2 h 0.1724 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 3 a 15.1333 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 4 n 14.3140 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 5 P 1.3076 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 6 o 15.0855 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 7 e 15.0244 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 8 : 13.5060 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 9 r 15.2680 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 10 l 0.2584 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 11 i 2.8866 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 12 1 0.9139 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 13 | -3.8437 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 14 N 1.3867 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 15 f -0.0440 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 16 g 14.9946 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 17 d 0.1981 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 18 W 0.9674 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 19 s 15.1360 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 20 c 14.9668 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 21 u 15.0867 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 22 3 1.1890 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 23 ~ 19.0148 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 24 # -2.6342 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 25 O 1.1070 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 26 ` -2.3595 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 27 @ -1.0462 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 28 F 1.5649 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 29 S 3.6992 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 30 p 13.8782 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 31 “ 0.1084 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 32 % -1.3467 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 33 £ 0.5146 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 34 . 41.4954 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 35 2 1.4559 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 36 5 1.0807 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 37 m 13.7151 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 38 V 1.2196 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 39 6 1.1795 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 40 w 14.6581 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 41 T 1.3805 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 42 M 1.2141 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 43 G 1.2371 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 44 b -0.0365 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 45 9 1.3107 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 46 ; 14.2189 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 47 D 1.0948 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 48 L 1.3451 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 49 y 15.2463 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 50 ‘ 0.1067 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 51 \ 1.1398 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 52 R -0.3797 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 53 < 15.1990 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 54 4 0.9765 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 55 8 0.0973 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 56 0 0.8843 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 57 A 3.6499 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 58 E 0.9648 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 59 B 1.1435 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 60 v 15.0336 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 61 k 0.3369 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 62 J 1.2789 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 63 U 3.2803 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 64 j 3.0846 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 65 ( 0.2990 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 66 7 2.6681 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 67 § -0.9340 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 68 $ -3.8523 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 69 € 1.6937 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 70 / -1.4290 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 71 C 1.2886 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 72 * -0.0144 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 73 ” -0.0571 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 74 ? 1.2211 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 75 { 0.1138 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 76 } 0.0338 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 77 , 41.5022 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 78 I 2.5884 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 79 ° -2.6503 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 80 K 1.1627 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 81 H 1.1000 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 82 q 13.9762 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 83 & 1.3607 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 84 ’ -0.0027 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 85 [ 2.5006 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 86 - 27.5508 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 87 Y 1.0629 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 88 Q 1.1462 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 89 " 0.1207 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 90 ! -0.0302 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 91 x 14.9825 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 92 ) 0.1190 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 93 = 19.8638 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 94 + 15.0696 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 95 X 1.3648 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 96 » 15.0283 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 97 ' -0.0833 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 98 ¢ -4.7224 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 99 Z 2.1745 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 100 > 14.2601 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 101 ® -0.8181 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 102 © -0.5376 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 103 ] 2.4245 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 104 é -2.6794 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 105 z 14.9979 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 106 _ 49.8628 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 17 d 30.6704 46.5848 107 ¥ 3.9026 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 1 t 4.7597 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 2 h -1.1368 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 3 a 13.9708 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 4 n 13.2815 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 5 P -0.1667 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 6 o 13.8936 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 7 e 14.1598 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 8 : 12.3654 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 9 r 13.7254 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 10 l -0.9604 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 11 i 2.0000 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 12 1 0.3700 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 13 | -4.6686 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 14 N -0.4350 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 15 f -0.6972 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 16 g 14.0910 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 17 d -0.8582 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 18 W 0.0350 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 19 s 13.8110 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 20 c 13.7881 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 21 u 14.0471 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 22 3 -0.1915 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 23 ~ 18.3218 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 24 # -3.1038 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 25 O 0.0183 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 26 ` -3.5574 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 27 @ -2.4565 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 28 F 0.1015 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 29 S 2.4094 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 30 p 13.2380 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 31 “ -1.4911 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 32 % -2.7284 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 33 £ -0.7150 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 34 . 39.6449 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 35 2 -0.3679 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 36 5 -0.2957 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 37 m 13.0084 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 38 V -0.2669 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 39 6 0.0693 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 40 w 14.0863 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 41 T 0.2010 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 42 M 0.4026 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 43 G -0.1268 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 44 b -1.3015 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 45 9 0.4299 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 46 ; 12.4484 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 47 D -0.0517 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 48 L 0.2990 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 49 y 14.4547 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 50 ‘ -1.3387 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 51 \ -0.1137 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 52 R -0.9457 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 53 < 14.1372 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 54 4 -0.0587 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 55 8 -1.0955 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 56 0 0.0966 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 57 A 2.0507 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 58 E -0.1268 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 59 B -0.1416 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 60 v 13.8947 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 61 k -1.0732 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 62 J -0.2639 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 63 U 1.8941 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 64 j 1.8889 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 65 ( -1.0639 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 66 7 1.3703 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 67 § -2.1981 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 68 $ -5.0147 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 69 € 0.4661 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 70 / -2.4211 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 71 C 0.3484 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 72 * -1.3088 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 73 ” -0.7600 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 74 ? -0.3732 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 75 { -1.0603 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 76 } -1.2593 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 77 , 40.2689 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 78 I 1.0093 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 79 ° -3.5658 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 80 K 0.0876 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 81 H -0.1198 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 82 q 12.5022 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 83 & 0.3503 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 84 ’ -0.9660 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 85 [ 1.1652 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 86 - 26.2197 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 87 Y -0.0727 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 88 Q 0.0829 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 89 " -0.5330 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 90 ! -0.9321 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 91 x 14.1521 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 92 ) -1.1032 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 93 = 18.5789 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 94 + 13.9114 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 95 X -0.1803 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 96 » 14.3280 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 97 ' -1.3543 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 98 ¢ -5.9318 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 99 Z 1.4341 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 100 > 12.9615 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 101 ® -1.9603 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 102 © -1.2848 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 103 ] 1.3258 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 104 é -3.8786 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 105 z 14.0234 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 106 _ 48.7160 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 18 W 55.5220 47.0628 107 ¥ 2.6953 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 1 t -9.2322 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 2 h -15.1050 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 3 a -0.0542 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 4 n -0.7340 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 5 P -14.1742 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 6 o 0.1115 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 7 e -0.1955 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 8 : -1.3536 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 9 r 0.0360 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 10 l -15.1652 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 11 i -12.0857 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 12 1 -13.8317 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 13 | -18.8817 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 14 N -14.2013 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 15 f -15.1147 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 16 g 0.0455 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 17 d -15.0344 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 18 W -13.9258 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 19 s -0.2575 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 20 c 0.0527 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 21 u -0.2013 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 22 3 -14.0679 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 23 ~ 4.2384 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 24 # -17.5212 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 25 O -14.0330 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 26 ` -17.6026 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 27 @ -16.2600 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 28 F -14.0742 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 29 S -11.9429 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 30 p -1.3148 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 31 “ -15.1624 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 32 % -16.4870 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 33 £ -14.3056 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 34 . 26.1953 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 35 2 -14.1429 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 36 5 -13.7470 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 37 m -1.0828 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 38 V -14.1626 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 39 6 -14.1921 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 40 w 0.0699 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 41 T -13.6430 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 42 M -14.0144 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 43 G -13.9903 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 44 b -15.3153 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 45 9 -13.9211 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 46 ; -1.0719 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 47 D -14.2762 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 48 L -14.0027 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 49 y -0.0000 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 50 ‘ -15.2379 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 51 \ -13.8614 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 52 R -14.9772 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 53 < 0.3166 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 54 4 -14.0951 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 55 8 -15.3439 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 56 0 -13.9298 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 57 A -11.7000 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 58 E -13.6755 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 59 B -13.9313 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 60 v -0.2650 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 61 k -15.3080 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 62 J -14.0182 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 63 U -11.6917 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 64 j -11.5540 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 65 ( -15.2347 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 66 7 -12.4698 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 67 § -16.3833 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 68 $ -18.9815 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 69 € -13.9006 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 70 / -16.7094 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 71 C -13.4080 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 72 * -15.0910 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 73 ” -15.1804 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 74 ? -14.0812 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 75 { -14.9682 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 76 } -14.8306 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 77 , 26.4898 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 78 I -12.6426 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 79 ° -17.6815 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 80 K -14.2023 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 81 H -13.9605 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 82 q -1.0883 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 83 & -14.2105 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 84 ’ -15.1399 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 85 [ -12.6811 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 86 - 12.6535 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 87 Y -13.8095 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 88 Q -13.9568 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 89 " -15.1962 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 90 ! -14.7836 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 91 x 0.2035 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 92 ) -15.2252 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 93 = 4.5711 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 94 + -0.0544 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 95 X -14.0698 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 96 » -0.3091 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 97 ' -15.1029 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 98 ¢ -20.5229 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 99 Z -12.8364 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 100 > -0.6307 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 101 ® -16.1064 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 102 © -15.4588 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 103 ] -12.8882 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 104 é -17.7818 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 105 z -0.1437 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 106 _ 34.8324 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 19 s 24.1834 31.9166 107 ¥ -11.1054 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 1 t -9.1374 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 2 h -14.9968 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 3 a 0.1266 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 4 n -0.7780 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 5 P -14.1627 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 6 o -0.0202 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 7 e 0.0241 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 8 : -1.4515 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 9 r -0.0433 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 10 l -15.1127 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 11 i -11.9802 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 12 1 -13.9643 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 13 | -18.7114 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 14 N -14.2210 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 15 f -14.7745 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 16 g -0.2635 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 17 d -15.1207 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 18 W -14.0398 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 19 s -0.3569 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 20 c -0.0584 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 21 u -0.2118 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 22 3 -14.0714 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 23 ~ 4.0032 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 24 # -17.4984 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 25 O -14.1608 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 26 ` -17.7689 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 27 @ -15.8485 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 28 F -13.9258 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 29 S -11.7243 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 30 p -0.9279 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 31 “ -14.9811 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 32 % -16.7774 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 33 £ -14.5940 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 34 . 26.0489 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 35 2 -14.0527 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 36 5 -13.9751 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 37 m -1.2501 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 38 V -13.9520 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 39 6 -14.2068 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 40 w 0.0504 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 41 T -13.6906 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 42 M -14.2949 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 43 G -13.9963 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 44 b -15.1990 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 45 9 -14.1207 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 46 ; -1.1965 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 47 D -14.0727 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 48 L -13.9857 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 49 y -0.1329 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 50 ‘ -14.9668 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 51 \ -13.9361 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 52 R -15.2009 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 53 < -0.0592 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 54 4 -13.9572 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 55 8 -15.0494 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 56 0 -14.1066 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 57 A -12.0821 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 58 E -14.0068 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 59 B -14.0385 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 60 v 0.0842 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 61 k -14.9682 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 62 J -14.0193 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 63 U -11.9637 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 64 j -11.6673 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 65 ( -15.1105 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 66 7 -12.8715 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 67 § -16.3652 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 68 $ -19.0788 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 69 € -13.5943 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 70 / -16.9437 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 71 C -13.7486 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 72 * -14.9598 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 73 ” -14.8180 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 74 ? -13.8425 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 75 { -15.0810 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 76 } -15.2169 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 77 , 26.3706 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 78 I -12.7956 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 79 ° -17.8192 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 80 K -13.9374 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 81 H -13.7550 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 82 q -1.2649 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 83 & -13.5595 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 84 ’ -15.3505 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 85 [ -12.8184 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 86 - 13.0175 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 87 Y -13.7373 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 88 Q -14.1542 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 89 " -15.2868 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 90 ! -15.4250 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 91 x 0.0868 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 92 ) -15.2444 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 93 = 4.8538 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 94 + -0.1426 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 95 X -14.4909 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 96 » -0.0774 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 97 ' -15.2801 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 98 ¢ -20.1562 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 99 Z -12.4188 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 100 > -0.7590 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 101 ® -15.9858 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 102 © -15.1776 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 103 ] -12.6779 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 104 é -17.7434 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 105 z 0.0409 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 106 _ 34.8784 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 20 c 26.9538 32.1666 107 ¥ -11.2593 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 1 t -9.2652 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 2 h -15.1105 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 3 a -0.1079 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 4 n -0.5518 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 5 P -14.0119 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 6 o -0.4483 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 7 e 0.3861 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 8 : -1.4342 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 9 r -0.0682 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 10 l -15.3315 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 11 i -12.0923 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 12 1 -13.9129 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 13 | -18.9356 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 14 N -13.9889 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 15 f -15.1990 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 16 g -0.0655 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 17 d -15.5098 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 18 W -13.7204 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 19 s 0.0076 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 20 c -0.0833 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 21 u 0.0958 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 22 3 -13.8512 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 23 ~ 4.0023 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 24 # -17.5650 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 25 O -13.8182 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 26 ` -17.8224 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 27 @ -16.3694 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 28 F -13.9583 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 29 S -11.7485 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 30 p -1.1217 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 31 “ -15.1879 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 32 % -16.6019 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 33 £ -14.7149 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 34 . 26.0132 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 35 2 -13.9857 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 36 5 -14.1623 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 37 m -0.8875 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 38 V -13.9068 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 39 6 -13.9264 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 40 w 0.1375 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 41 T -13.6937 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 42 M -14.3337 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 43 G -14.0492 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 44 b -15.3326 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 45 9 -14.1333 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 46 ; -0.7692 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 47 D -14.2053 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 48 L -13.7673 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 49 y -0.0606 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 50 ‘ -15.5461 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 51 \ -13.9675 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 52 R -15.2501 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 53 < 0.2911 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 54 4 -14.0656 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 55 8 -15.1863 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 56 0 -13.9949 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 57 A -11.7297 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 58 E -14.0527 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 59 B -14.3504 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 60 v -0.1376 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 61 k -14.9375 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 62 J -13.9696 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 63 U -12.0112 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 64 j -11.7231 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 65 ( -15.0629 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 66 7 -12.6231 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 67 § -16.3126 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 68 $ -18.8057 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 69 € -13.6512 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 70 / -16.7299 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 71 C -13.5635 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 72 * -15.2830 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 73 ” -15.4244 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 74 ? -14.0550 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 75 { -15.0891 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 76 } -15.0948 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 77 , 26.6427 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 78 I -12.6674 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 79 ° -17.4592 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 80 K -14.2122 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 81 H -13.9726 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 82 q -1.2657 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 83 & -13.9018 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 84 ’ -15.3237 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 85 [ -12.6435 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 86 - 12.3089 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 87 Y -13.9310 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 88 Q -14.0826 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 89 " -15.0303 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 90 ! -15.0212 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 91 x 0.2771 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 92 ) -15.0720 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 93 = 4.4808 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 94 + -0.0957 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 95 X -13.7989 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 96 » -0.0307 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 97 ' -14.7975 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 98 ¢ -20.0211 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 99 Z -12.7122 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 100 > -0.7882 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 101 ® -15.9218 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 102 © -15.2788 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 103 ] -12.9189 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 104 é -17.6503 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 105 z 0.1274 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 106 _ 34.6359 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 21 u 27.5220 31.4386 107 ¥ -11.2296 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 1 t 4.7678 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 2 h -1.0851 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 3 a 13.8951 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 4 n 13.2271 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 5 P -0.0217 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 6 o 13.8415 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 7 e 13.9251 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 8 : 12.6379 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 9 r 14.0000 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 10 l -1.1732 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 11 i 1.9769 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 12 1 -0.0496 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 13 | -4.9691 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 14 N -0.0552 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 15 f -1.0699 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 16 g 14.1341 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 17 d -1.2696 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 18 W -0.3226 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 19 s 14.2100 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 20 c 13.9175 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 21 u 13.9717 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 22 3 -0.2907 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 23 ~ 18.0666 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 24 # -3.4806 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 25 O 0.2598 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 26 ` -3.7534 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 27 @ -1.9884 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 28 F 0.3452 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 29 S 2.4900 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 30 p 12.6967 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 31 “ -1.1596 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 32 % -2.2095 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 33 £ -0.6948 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 34 . 39.8489 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 35 2 -0.1690 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 36 5 -0.2784 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 37 m 12.6625 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 38 V -0.2582 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 39 6 -0.0281 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 40 w 13.8921 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 41 T 0.3066 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 42 M -0.0184 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 43 G 0.0756 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 44 b -1.1375 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 45 9 0.2595 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 46 ; 13.0077 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 47 D 0.0527 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 48 L 0.2048 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 49 y 14.0784 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 50 ‘ -0.9755 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 51 \ 0.1099 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 52 R -1.0307 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 53 < 12.6546 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 54 4 0.0535 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 55 8 -0.8377 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 56 0 0.1920 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 57 A 2.0804 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 58 E -0.1788 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 59 B -0.1186 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 60 v 13.9955 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 61 k -1.2129 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 62 J -0.0631 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 63 U 2.1051 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 64 j 2.3569 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 65 ( -0.9450 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 66 7 1.3741 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 67 § -2.5241 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 68 $ -4.8572 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 69 € 0.4605 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 70 / -2.6082 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 71 C 0.3400 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 72 * -1.2383 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 73 ” -0.8870 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 74 ? -0.1331 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 75 { -1.0688 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 76 } -1.5322 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 77 , 40.6523 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 78 I 1.5344 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 79 ° -3.4728 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 80 K -0.3634 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 81 H -0.1016 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 82 q 13.0224 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 83 & 0.0433 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 84 ’ -1.2490 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 85 [ 1.2620 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 86 - 26.4086 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 87 Y -0.1144 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 88 Q 0.4700 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 89 " -1.1045 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 90 ! -1.2211 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 91 x 14.1750 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 92 ) -1.2116 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 93 = 18.4969 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 94 + 14.0393 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 95 X 0.1928 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 96 » 14.0319 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 97 ' -0.9866 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 98 ¢ -6.0566 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 99 Z 1.3235 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 100 > 13.9643 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 101 ® -2.0718 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 102 © -1.3159 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 103 ] 1.1549 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 104 é -3.4128 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 105 z 14.4847 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 106 _ 48.7388 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 22 3 29.2462 46.4848 107 ¥ 2.8061 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 1 t -13.3489 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 2 h -19.4913 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 3 a -3.8362 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 4 n -4.5190 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 5 P -18.1129 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 6 o -4.2396 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 7 e -4.3368 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 8 : -5.7139 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 9 r -4.1083 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 10 l -19.3923 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 11 i -15.9559 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 12 1 -18.0510 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 13 | -23.0197 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 14 N -17.6456 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 15 f -19.1439 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 16 g -4.3489 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 17 d -19.1256 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 18 W -18.3623 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 19 s -4.1818 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 20 c -3.9889 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 21 u -4.1230 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 22 3 -18.1543 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 23 ~ -0.2257 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 24 # -21.7658 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 25 O -17.9664 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 26 ` -21.4642 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 27 @ -20.3638 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 28 F -17.8499 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 29 S -15.6759 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 30 p -5.4032 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 31 “ -19.1403 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 32 % -20.6275 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 33 £ -18.7990 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 34 . 22.0012 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 35 2 -17.9632 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 36 5 -18.0445 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 37 m -5.0164 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 38 V -18.0411 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 39 6 -18.2325 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 40 w -3.9571 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 41 T -17.5788 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 42 M -17.8539 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 43 G -17.7080 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 44 b -18.9669 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 45 9 -18.2398 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 46 ; -5.1797 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 47 D -17.7390 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 48 L -18.0547 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 49 y -4.4717 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 50 ‘ -19.1525 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 51 \ -18.3367 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 52 R -19.3018 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 53 < -5.0773 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 54 4 -18.1603 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 55 8 -19.1062 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 56 0 -18.3438 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 57 A -15.5290 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 58 E -18.1159 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 59 B -18.1984 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 60 v -4.0628 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 61 k -19.0922 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 62 J -18.2177 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 63 U -15.8079 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 64 j -15.6160 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 65 ( -19.3000 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 66 7 -16.5901 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 67 § -20.3832 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 68 $ -23.1374 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 69 € -18.0052 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 70 / -20.8945 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 71 C -17.7183 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 72 * -19.2285 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 73 ” -19.1771 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 74 ? -18.2328 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 75 { -18.9918 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 76 } -19.3381 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 77 , 22.7237 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 78 I -16.6383 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 79 ° -21.7521 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 80 K -17.8783 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 81 H -17.8564 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 82 q -5.4190 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 83 & -18.0732 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 84 ’ -19.2838 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 85 [ -16.7435 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 86 - 8.0927 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 87 Y -18.2869 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 88 Q -17.9777 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 89 " -19.0454 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 90 ! -19.0588 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 91 x -4.1961 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 92 ) -19.0942 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 93 = 0.4568 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 94 + -4.1001 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 95 X -18.1413 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 96 » -4.1488 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 97 ' -19.3115 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 98 ¢ -24.4277 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 99 Z -16.6960 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 100 > -3.8204 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 101 ® -20.4714 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 102 © -19.5931 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 103 ] -16.7100 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 104 é -21.9278 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 105 z -4.1532 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 106 _ 30.6762 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 23 ~ 31.9166 13.2720 107 ¥ -15.3851 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 1 t 8.2963 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 2 h 2.1953 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 3 a 17.7415 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 4 n 16.7349 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 5 P 3.5055 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 6 o 17.7076 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 7 e 17.4761 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 8 : 15.9829 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 9 r 17.1385 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 10 l 2.4762 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 11 i 5.1459 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 12 1 3.8581 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 13 | -1.1774 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 14 N 3.4969 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 15 f 2.6415 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 16 g 17.7516 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 17 d 2.4177 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 18 W 3.6294 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 19 s 17.4849 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 20 c 17.6494 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 21 u 17.8926 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 22 3 3.5020 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 23 ~ 21.7343 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 24 # -0.1550 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 25 O 3.6601 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 26 ` -0.3386 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 27 @ 1.3543 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 28 F 3.7735 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 29 S 5.7383 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 30 p 16.6572 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 31 “ 1.9051 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 32 % 0.8010 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 33 £ 3.2685 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 34 . 43.6591 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 35 2 3.5697 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 36 5 3.2674 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 37 m 16.2959 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 38 V 3.3312 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 39 6 3.5795 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 40 w 17.7318 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 41 T 3.7908 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 42 M 3.5834 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 43 G 3.5510 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 44 b 2.1239 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 45 9 3.3934 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 46 ; 16.4341 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 47 D 3.5661 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 48 L 3.0231 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 49 y 17.3646 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 50 ‘ 2.5188 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 51 \ 3.5813 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 52 R 2.3405 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 53 < 16.3947 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 54 4 3.7257 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 55 8 2.2657 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 56 0 3.4481 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 57 A 5.8085 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 58 E 3.5530 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 59 B 3.6005 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 60 v 17.4963 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 61 k 2.7925 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 62 J 3.6472 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 63 U 5.7491 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 64 j 5.7396 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 65 ( 1.9807 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 66 7 5.1483 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 67 § 1.3941 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 68 $ -1.5318 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 69 € 3.8891 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 70 / 1.3228 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 71 C 3.9486 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 72 * 2.3918 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 73 ” 2.2789 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 74 ? 3.4776 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 75 { 2.3222 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 76 } 2.1846 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 77 , 43.6602 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 78 I 5.1509 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 79 ° 0.1090 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 80 K 3.4928 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 81 H 4.1568 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 82 q 16.2048 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 83 & 3.7392 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 84 ’ 2.6940 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 85 [ 4.9409 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 86 - 29.9996 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 87 Y 3.5753 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 88 Q 3.7063 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 89 " 2.4501 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 90 ! 1.9326 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 91 x 17.3912 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 92 ) 2.6714 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 93 = 22.3128 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 94 + 17.3792 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 95 X 3.8231 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 96 » 17.4643 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 97 ' 2.2216 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 98 ¢ -2.4671 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 99 Z 4.9843 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 100 > 17.7285 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 101 ® 1.3345 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 102 © 2.3692 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 103 ] 5.1301 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 104 é -0.1082 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 105 z 17.2718 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 106 _ 52.3554 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 24 # 49.1976 48.9706 107 ¥ 6.2992 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 1 t 5.0612 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 2 h -1.0193 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 3 a 13.9319 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 4 n 13.2987 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 5 P -0.0262 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 6 o 14.0357 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 7 e 14.1071 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 8 : 12.4477 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 9 r 14.0476 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 10 l -0.9840 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 11 i 1.9886 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 12 1 -0.0011 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 13 | -4.4379 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 14 N 0.0670 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 15 f -1.1494 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 16 g 14.1166 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 17 d -0.9345 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 18 W -0.1239 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 19 s 14.1916 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 20 c 13.5402 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 21 u 13.8940 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 22 3 0.1172 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 23 ~ 17.8004 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 24 # -3.0050 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 25 O 0.0841 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 26 ` -3.9358 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 27 @ -2.4082 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 28 F -0.1336 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 29 S 2.4083 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 30 p 13.2033 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 31 “ -1.3101 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 32 % -2.5383 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 33 £ -0.2874 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 34 . 40.0208 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 35 2 0.0084 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 36 5 0.1753 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 37 m 13.0447 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 38 V 0.0857 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 39 6 -0.2067 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 40 w 14.2082 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 41 T 0.6031 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 42 M -0.3516 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 43 G 0.0195 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 44 b -1.0990 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 45 9 0.0452 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 46 ; 13.0582 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 47 D 0.3470 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 48 L -0.0648 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 49 y 13.9361 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 50 ‘ -1.0627 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 51 \ -0.3292 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 52 R -0.9932 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 53 < 14.4353 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 54 4 -0.3180 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 55 8 -0.7577 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 56 0 -0.1936 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 57 A 2.2512 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 58 E -0.2507 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 59 B 0.1678 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 60 v 13.8539 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 61 k -0.7148 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 62 J -0.0424 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 63 U 2.2522 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 64 j 2.0144 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 65 ( -0.8932 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 66 7 1.3794 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 67 § -2.1542 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 68 $ -4.9021 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 69 € 0.3388 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 70 / -2.4689 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 71 C 0.4229 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 72 * -1.0272 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 73 ” -1.2316 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 74 ? 0.0193 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 75 { -1.3128 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 76 } -0.9504 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 77 , 40.3674 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 78 I 1.2712 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 79 ° -3.6009 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 80 K 0.2060 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 81 H 0.0033 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 82 q 12.7407 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 83 & -0.1080 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 84 ’ -1.3626 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 85 [ 1.0886 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 86 - 26.4772 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 87 Y -0.1428 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 88 Q -0.3420 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 89 " -1.4975 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 90 ! -1.0061 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 91 x 13.9833 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 92 ) -0.8491 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 93 = 18.6788 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 94 + 13.8244 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 95 X -0.3479 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 96 » 14.0766 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 97 ' -1.3948 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 98 ¢ -6.0084 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 99 Z 1.5714 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 100 > 13.1725 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 101 ® -2.6228 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 102 © -1.4955 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 103 ] 0.9776 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 104 é -3.6009 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 105 z 13.7999 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 106 _ 49.1907 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 25 O 43.0864 45.9166 107 ¥ 3.0359 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 1 t 8.2661 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 2 h 2.5523 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 3 a 17.5497 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 4 n 16.8560 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 5 P 3.7505 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 6 o 17.7472 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 7 e 17.8619 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 8 : 16.2102 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 9 r 17.4498 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 10 l 2.5281 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 11 i 5.4060 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 12 1 3.5312 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 13 | -1.0448 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 14 N 3.7874 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 15 f 2.6010 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 16 g 17.3763 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 17 d 2.4424 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 18 W 3.4438 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 19 s 17.9613 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 20 c 17.6167 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 21 u 17.5757 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 22 3 3.6988 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 23 ~ 22.0491 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 24 # -0.0287 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 25 O 3.6563 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 26 ` -0.2939 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 27 @ 1.2561 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 28 F 3.7132 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 29 S 5.7213 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 30 p 16.4968 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 31 “ 2.6120 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 32 % 1.2498 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 33 £ 3.1084 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 34 . 43.4065 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 35 2 3.7787 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 36 5 3.9517 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 37 m 16.5754 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 38 V 3.9608 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 39 6 3.7420 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 40 w 17.6170 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 41 T 4.0597 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 42 M 3.5914 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 43 G 3.6503 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 44 b 2.3595 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 45 9 3.5612 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 46 ; 16.7793 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 47 D 3.8199 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 48 L 3.3688 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 49 y 17.6980 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 50 ‘ 2.4118 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 51 \ 3.5389 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 52 R 2.5934 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 53 < 16.0909 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 54 4 3.6632 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 55 8 2.5333 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 56 0 3.6135 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 57 A 6.0914 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 58 E 3.4138 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 59 B 3.4945 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 60 v 17.7856 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 61 k 2.4690 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 62 J 3.5711 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 63 U 5.8812 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 64 j 5.6866 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 65 ( 2.3490 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 66 7 5.4812 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 67 § 1.3676 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 68 $ -0.9714 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 69 € 3.6993 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 70 / 0.9885 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 71 C 3.6977 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 72 * 2.3025 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 73 ” 2.3834 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 74 ? 3.7055 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 75 { 2.4722 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 76 } 2.4007 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 77 , 44.1806 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 78 I 5.3268 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 79 ° -0.2068 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 80 K 4.0453 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 81 H 3.4950 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 82 q 16.2923 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 83 & 3.6135 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 84 ’ 2.7285 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 85 [ 4.6046 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 86 - 30.3499 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 87 Y 3.7084 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 88 Q 3.7138 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 89 " 2.4257 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 90 ! 2.5669 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 91 x 17.7147 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 92 ) 2.5583 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 93 = 22.3113 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 94 + 17.4695 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 95 X 3.3851 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 96 » 17.5359 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 97 ' 2.5912 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 98 ¢ -2.4704 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 99 Z 5.1301 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 100 > 17.4525 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 101 ® 1.4880 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 102 © 2.2067 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 103 ] 4.7074 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 104 é 0.0699 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 105 z 17.9015 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 106 _ 52.7325 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 26 ` 15.1462 14.0000 107 ¥ 6.3948 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 1 t 6.9297 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 2 h 0.5541 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 3 a 16.2362 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 4 n 15.4784 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 5 P 2.0829 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 6 o 16.4241 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 7 e 16.2193 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 8 : 14.7842 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 9 r 16.1808 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 10 l 1.1152 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 11 i 3.9583 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 12 1 2.1494 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 13 | -2.7619 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 14 N 2.3309 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 15 f 1.0465 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 16 g 16.1673 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 17 d 1.1359 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 18 W 2.2861 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 19 s 15.9790 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 20 c 16.0238 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 21 u 16.5600 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 22 3 1.9894 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 23 ~ 20.5903 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 24 # -1.2682 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 25 O 2.2235 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 26 ` -1.3423 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 27 @ -0.0700 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 28 F 2.0162 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 29 S 4.4784 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 30 p 15.0264 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 31 “ 0.7156 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 32 % -0.3784 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 33 £ 1.6038 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 34 . 42.3144 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 35 2 2.0368 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 36 5 2.2379 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 37 m 14.6401 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 38 V 2.1851 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 39 6 1.8147 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 40 w 16.5109 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 41 T 2.5683 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 42 M 1.9677 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 43 G 2.1313 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 44 b 0.8796 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 45 9 2.3001 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 46 ; 15.3753 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 47 D 2.2945 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 48 L 1.9256 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 49 y 16.2555 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 50 ‘ 0.9895 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 51 \ 1.9385 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 52 R 1.1721 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 53 < 15.0196 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 54 4 1.9887 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 55 8 1.1055 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 56 0 2.3233 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 57 A 4.8207 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 58 E 2.0833 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 59 B 2.3898 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 60 v 15.9939 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 61 k 0.8921 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 62 J 2.4305 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 63 U 3.8800 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 64 j 4.2277 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 65 ( 0.8514 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 66 7 3.6780 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 67 § 0.0139 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 68 $ -2.7368 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 69 € 2.4720 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 70 / -0.4307 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 71 C 2.3771 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 72 * 0.9438 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 73 ” 1.3088 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 74 ? 1.9170 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 75 { 1.2163 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 76 } 0.9779 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 77 , 42.0728 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 78 I 3.3830 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 79 ° -1.0997 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 80 K 1.9379 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 81 H 2.2131 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 82 q 15.0358 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 83 & 2.3350 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 84 ’ 0.5164 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 85 [ 3.0461 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 86 - 28.6944 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 87 Y 2.0194 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 88 Q 2.3690 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 89 " 1.0763 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 90 ! 1.5336 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 91 x 16.0894 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 92 ) 1.2383 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 93 = 20.8154 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 94 + 16.1423 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 95 X 2.4399 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 96 » 16.1386 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 97 ' 0.8799 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 98 ¢ -4.0880 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 99 Z 3.6956 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 100 > 15.9878 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 101 ® 0.0103 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 102 © 0.7713 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 103 ] 3.1291 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 104 é -1.3154 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 105 z 16.1958 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 106 _ 51.0466 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 27 @ 48.8448 50.4014 107 ¥ 5.0472 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 1 t 4.6931 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 2 h -1.3048 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 3 a 14.2095 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 4 n 13.0815 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 5 P 0.3785 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 6 o 13.9840 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 7 e 14.0585 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 8 : 12.2896 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 9 r 13.9635 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 10 l -1.3502 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 11 i 1.4382 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 12 1 -0.1321 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 13 | -4.6269 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 14 N -0.1415 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 15 f -1.0948 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 16 g 14.0347 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 17 d -1.1934 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 18 W 0.1083 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 19 s 13.8104 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 20 c 13.6149 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 21 u 14.1257 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 22 3 -0.0547 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 23 ~ 17.9890 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 24 # -3.5677 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 25 O -0.0214 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 26 ` -3.6383 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 27 @ -2.1646 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 28 F -0.1006 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 29 S 2.4174 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 30 p 12.8519 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 31 “ -1.2718 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 32 % -2.4280 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 33 £ -0.8550 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 34 . 39.9694 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 35 2 -0.2452 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 36 5 -0.2961 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 37 m 12.7594 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 38 V 0.0714 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 39 6 0.0964 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 40 w 14.1321 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 41 T 0.2086 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 42 M -0.0210 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 43 G -0.1134 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 44 b -1.2878 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 45 9 0.0515 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 46 ; 12.7682 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 47 D 0.0318 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 48 L -0.3068 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 49 y 14.1358 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 50 ‘ -0.9498 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 51 \ 0.0418 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 52 R -1.1987 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 53 < 13.9740 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 54 4 -0.1017 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 55 8 -1.0792 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 56 0 -0.3092 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 57 A 2.2397 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 58 E -0.0833 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 59 B -0.1621 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 60 v 14.1727 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 61 k -1.2756 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 62 J 0.0318 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 63 U 2.2478 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 64 j 2.0349 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 65 ( -1.3405 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 66 7 1.5629 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 67 § -2.4078 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 68 $ -4.8438 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 69 € 0.1695 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 70 / -2.6637 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 71 C 0.3705 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 72 * -1.1792 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 73 ” -1.3692 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 74 ? 0.2175 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 75 { -0.8813 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 76 } -1.3015 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 77 , 40.6130 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 78 I 1.1879 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 79 ° -3.9195 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 80 K -0.0731 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 81 H 0.1163 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 82 q 12.8133 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 83 & -0.1674 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 84 ’ -1.0156 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 85 [ 1.3456 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 86 - 26.6237 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 87 Y 0.1956 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 88 Q -0.0833 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 89 " -1.2988 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 90 ! -1.1185 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 91 x 13.9734 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 92 ) -1.3411 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 93 = 18.4532 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 94 + 14.0132 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 95 X 0.0367 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 96 » 13.8706 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 97 ' -1.0486 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 98 ¢ -6.3802 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 99 Z 1.6386 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 100 > 13.1519 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 101 ® -1.9580 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 102 © -1.2969 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 103 ] 0.9168 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 104 é -3.4589 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 105 z 13.8348 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 106 _ 49.1404 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 28 F 30.7704 46.8947 107 ¥ 2.6276 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 1 t 2.2598 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 2 h -3.4806 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 3 a 11.8618 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 4 n 10.8529 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 5 P -2.1441 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 6 o 11.9823 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 7 e 11.7200 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 8 : 10.0049 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 9 r 11.4466 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 10 l -3.3606 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 11 i -0.2174 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 12 1 -2.2112 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 13 | -7.1923 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 14 N -2.4111 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 15 f -3.3900 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 16 g 11.9852 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 17 d -3.4024 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 18 W -2.3617 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 19 s 11.6354 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 20 c 11.3552 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 21 u 11.8120 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 22 3 -2.2251 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 23 ~ 16.0199 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 24 # -5.9490 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 25 O -2.2919 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 26 ` -5.6383 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 27 @ -4.7175 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 28 F -2.0972 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 29 S -0.2155 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 30 p 10.5181 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 31 “ -3.5741 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 32 % -4.9637 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 33 £ -2.7225 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 34 . 37.7954 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 35 2 -2.3963 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 36 5 -2.3658 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 37 m 10.5436 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 38 V -2.3476 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 39 6 -2.5789 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 40 w 12.0171 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 41 T -2.1823 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 42 M -2.5492 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 43 G -2.2109 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 44 b -3.4862 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 45 9 -1.9363 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 46 ; 10.6781 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 47 D -2.4432 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 48 L -2.3281 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 49 y 11.7522 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 50 ‘ -3.2723 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 51 \ -2.2792 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 52 R -3.3269 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 53 < 11.5842 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 54 4 -2.3786 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 55 8 -3.5926 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 56 0 -2.1577 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 57 A -0.1813 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 58 E -2.2577 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 59 B -2.5519 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 60 v 11.8862 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 61 k -3.0145 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 62 J -2.0874 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 63 U 0.0285 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 64 j -0.3592 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 65 ( -3.7600 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 66 7 -0.5249 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 67 § -4.4222 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 68 $ -7.5369 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 69 € -1.8917 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 70 / -4.8554 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 71 C -1.9594 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 72 * -3.5642 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 73 ” -3.2057 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 74 ? -2.2263 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 75 { -3.4521 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 76 } -3.5052 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 77 , 37.8870 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 78 I -0.8764 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 79 ° -6.0099 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 80 K -2.3012 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 81 H -2.4884 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 82 q 10.6503 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 83 & -2.1196 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 84 ’ -3.5083 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 85 [ -1.3062 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 86 - 24.3592 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 87 Y -2.1810 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 88 Q -1.9837 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 89 " -2.9751 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 90 ! -3.7692 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 91 x 11.7092 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 92 ) -3.7363 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 93 = 16.4243 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 94 + 11.2347 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 95 X -2.2015 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 96 » 11.8326 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 97 ' -3.2530 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 98 ¢ -8.4700 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 99 Z -1.0377 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 100 > 10.9189 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 101 ® -4.4520 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 102 © -3.5861 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 103 ] -0.8645 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 104 é -6.0516 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 105 z 11.5837 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 106 _ 46.5952 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 29 S 37.8334 43.6242 107 ¥ 0.3495 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 1 t -8.2519 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 2 h -13.7393 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 3 a 1.0296 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 4 n 0.5194 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 5 P -12.7553 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 6 o 1.2750 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 7 e 0.8267 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 8 : -0.1832 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 9 r 1.3037 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 10 l -14.1001 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 11 i -10.8942 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 12 1 -12.7209 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 13 | -17.5159 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 14 N -12.7436 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 15 f -14.0527 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 16 g 0.9507 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 17 d -13.8684 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 18 W -12.6862 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 19 s 0.7406 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 20 c 0.8241 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 21 u 0.9466 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 22 3 -12.8027 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 23 ~ 5.1181 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 24 # -16.3676 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 25 O -12.9038 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 26 ` -16.7213 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 27 @ -14.8734 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 28 F -12.6582 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 29 S -10.4320 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 30 p -0.1349 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 31 “ -14.2428 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 32 % -15.5061 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 33 £ -13.3681 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 34 . 27.0994 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 35 2 -12.9236 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 36 5 -12.8287 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 37 m 0.1484 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 38 V -13.0073 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 39 6 -12.9542 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 40 w 1.1652 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 41 T -12.3766 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 42 M -12.8427 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 43 G -12.7531 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 44 b -14.0601 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 45 9 -12.6368 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 46 ; 0.1012 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 47 D -12.8653 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 48 L -12.8184 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 49 y 1.0720 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 50 ‘ -14.1266 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 51 \ -12.7451 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 52 R -13.5860 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 53 < 1.3613 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 54 4 -13.1065 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 55 8 -14.1988 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 56 0 -12.7455 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 57 A -10.2994 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 58 E -12.9514 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 59 B -12.7764 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 60 v 0.9229 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 61 k -13.9949 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 62 J -12.6581 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 63 U -10.9601 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 64 j -10.7257 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 65 ( -13.8639 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 66 7 -11.3208 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 67 § -15.0774 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 68 $ -18.0447 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 69 € -12.2550 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 70 / -15.0914 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 71 C -12.7910 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 72 * -13.9670 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 73 ” -14.0357 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 74 ? -13.0882 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 75 { -13.9810 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 76 } -13.9167 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 77 , 27.6382 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 78 I -11.4840 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 79 ° -16.4618 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 80 K -12.8228 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 81 H -12.8083 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 82 q 0.2068 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 83 & -12.6160 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 84 ’ -14.3432 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 85 [ -11.7377 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 86 - 13.7492 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 87 Y -12.9383 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 88 Q -12.5437 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 89 " -14.1715 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 90 ! -14.0681 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 91 x 1.1175 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 92 ) -13.9009 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 93 = 5.9653 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 94 + 1.1389 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 95 X -12.7769 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 96 » 1.0553 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 97 ' -14.1513 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 98 ¢ -19.0741 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 99 Z -11.5945 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 100 > 0.2541 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 101 ® -15.1244 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 102 © -14.3074 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 103 ] -12.0242 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 104 é -16.2849 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 105 z 1.0755 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 106 _ 36.1524 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 30 p 27.9077 47.3128 107 ¥ -9.8403 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 1 t 5.7717 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 2 h 0.1845 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 3 a 15.0720 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 4 n 14.3797 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 5 P 1.3637 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 6 o 15.2528 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 7 e 15.1267 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 8 : 14.1888 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 9 r 15.0891 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 10 l 0.1623 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 11 i 2.9042 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 12 1 0.9812 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 13 | -3.6066 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 14 N 1.2775 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 15 f -0.0070 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 16 g 14.9974 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 17 d 0.2949 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 18 W 1.3005 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 19 s 15.3724 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 20 c 15.0553 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 21 u 15.2649 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 22 3 0.9784 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 23 ~ 19.2373 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 24 # -2.2505 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 25 O 1.1634 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 26 ` -2.3983 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 27 @ -0.8498 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 28 F 0.9700 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 29 S 3.5165 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 30 p 14.2137 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 31 “ -0.2198 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 32 % -1.3772 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 33 £ 0.5006 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 34 . 41.1678 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 35 2 1.1354 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 36 5 0.8899 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 37 m 13.9790 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 38 V 0.7828 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 39 6 1.0181 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 40 w 15.1301 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 41 T 1.6184 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 42 M 1.1513 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 43 G 1.0867 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 44 b -0.0955 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 45 9 1.4184 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 46 ; 14.2334 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 47 D 1.2274 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 48 L 1.0068 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 49 y 15.0553 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 50 ‘ -0.0466 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 51 \ 0.9668 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 52 R -0.1078 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 53 < 14.0310 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 54 4 0.9069 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 55 8 0.1269 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 56 0 0.8954 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 57 A 3.7608 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 58 E 0.9340 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 59 B 0.9770 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 60 v 15.3581 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 61 k 0.0909 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 62 J 1.1818 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 63 U 3.0422 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 64 j 3.2720 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 65 ( 0.2420 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 66 7 2.4479 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 67 § -1.3158 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 68 $ -4.0182 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 69 € 1.4453 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 70 / -1.3115 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 71 C 1.2774 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 72 * -0.0060 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 73 ” -0.0920 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 74 ? 1.1987 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 75 { 0.1585 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 76 } 0.1868 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 77 , 41.3932 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 78 I 2.4615 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 79 ° -1.9802 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 80 K 1.1294 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 81 H 1.1424 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 82 q 14.1001 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 83 & 1.0910 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 84 ’ -0.3226 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 85 [ 2.3590 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 86 - 27.8230 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 87 Y 1.2181 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 88 Q 0.9919 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 89 " -0.1201 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 90 ! -0.1215 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 91 x 15.2371 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 92 ) 0.0862 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 93 = 19.9030 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 94 + 14.9109 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 95 X 1.1152 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 96 » 14.9202 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 97 ' 0.0157 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 98 ¢ -5.0338 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 99 Z 2.3793 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 100 > 14.7951 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 101 ® -0.8179 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 102 © -0.2734 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 103 ] 2.3091 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 104 é -2.2224 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 105 z 14.8895 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 106 _ 49.8631 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 31 “ 22.3333 15.1462 107 ¥ 3.7373 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 1 t 7.3243 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 2 h 1.6259 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 3 a 16.2962 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 4 n 15.9954 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 5 P 2.5711 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 6 o 16.6533 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 7 e 16.5335 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 8 : 14.8871 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 9 r 16.7063 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 10 l 1.4306 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 11 i 4.5852 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 12 1 2.5929 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 13 | -2.3240 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 14 N 2.3024 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 15 f 1.5891 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 16 g 16.3110 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 17 d 1.4656 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 18 W 2.8814 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 19 s 16.5484 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 20 c 16.5327 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 21 u 16.5939 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 22 3 2.6841 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 23 ~ 20.4741 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 24 # -0.6297 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 25 O 2.6376 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 26 ` -1.0112 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 27 @ 0.3612 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 28 F 2.7339 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 29 S 4.9810 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 30 p 15.2507 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 31 “ 1.6099 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 32 % 0.2276 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 33 £ 2.1888 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 34 . 42.6719 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 35 2 2.6604 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 36 5 2.6830 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 37 m 15.1943 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 38 V 2.5167 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 39 6 2.8855 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 40 w 16.7020 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 41 T 2.7801 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 42 M 2.5739 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 43 G 2.1636 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 44 b 1.4961 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 45 9 2.8517 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 46 ; 16.0440 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 47 D 2.7594 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 48 L 2.5277 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 49 y 16.3290 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 50 ‘ 1.5872 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 51 \ 2.5184 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 52 R 1.2679 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 53 < 15.3600 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 54 4 2.3779 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 55 8 1.5549 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 56 0 2.5481 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 57 A 4.7155 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 58 E 2.9875 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 59 B 2.6166 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 60 v 16.5833 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 61 k 1.3383 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 62 J 2.6013 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 63 U 4.6863 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 64 j 4.9119 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 65 ( 1.3378 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 66 7 4.3855 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 67 § 0.2088 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 68 $ -2.4984 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 69 € 2.9254 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 70 / -0.0317 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 71 C 2.6557 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 72 * 1.4339 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 73 ” 1.3970 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 74 ? 2.4193 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 75 { 1.6772 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 76 } 1.1752 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 77 , 42.6745 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 78 I 4.1262 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 79 ° -1.3109 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 80 K 2.5851 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 81 H 2.7573 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 82 q 15.6609 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 83 & 2.5638 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 84 ’ 1.1094 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 85 [ 3.5813 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 86 - 29.1614 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 87 Y 2.6657 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 88 Q 2.5353 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 89 " 1.1308 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 90 ! 1.4045 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 91 x 16.4390 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 92 ) 1.6353 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 93 = 21.1503 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 94 + 16.4860 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 95 X 2.6260 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 96 » 16.3354 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 97 ' 1.5727 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 98 ¢ -3.5976 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 99 Z 3.9022 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 100 > 16.7400 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 101 ® 0.3943 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 102 © 1.2647 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 103 ] 3.5863 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 104 é -1.3164 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 105 z 16.0356 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 106 _ 51.5044 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 32 % 46.2666 47.3486 107 ¥ 5.3153 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 1 t 5.1678 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 2 h -0.6740 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 3 a 14.4199 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 4 n 13.7297 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 5 P 1.0998 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 6 o 14.5299 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 7 e 14.7048 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 8 : 13.2999 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 9 r 14.9067 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 10 l -0.7137 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 11 i 2.4666 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 12 1 0.1691 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 13 | -4.2504 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 14 N 0.5184 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 15 f -0.5815 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 16 g 14.6707 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 17 d -0.8505 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 18 W 0.7966 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 19 s 14.2870 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 20 c 14.4894 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 21 u 14.4187 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 22 3 1.1039 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 23 ~ 18.6175 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 24 # -3.0151 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 25 O 0.6894 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 26 ` -3.1630 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 27 @ -1.8294 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 28 F 0.6050 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 29 S 2.8111 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 30 p 13.2201 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 31 “ -0.4799 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 32 % -1.9298 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 33 £ -0.2071 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 34 . 40.8135 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 35 2 0.8599 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 36 5 0.8572 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 37 m 13.1654 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 38 V 0.6234 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 39 6 0.5777 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 40 w 14.5739 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 41 T 1.0097 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 42 M 0.1482 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 43 G 0.6541 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 44 b -0.2235 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 45 9 0.8893 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 46 ; 12.9287 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 47 D 0.3981 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 48 L 0.9660 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 49 y 14.4940 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 50 ‘ -0.5173 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 51 \ 0.1613 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 52 R -0.2729 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 53 < 13.9320 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 54 4 0.2890 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 55 8 -0.6763 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 56 0 0.2607 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 57 A 2.8436 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 58 E 0.5079 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 59 B 0.5357 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 60 v 14.5274 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 61 k -0.4059 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 62 J 0.4702 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 63 U 2.7676 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 64 j 2.5458 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 65 ( -0.6040 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 66 7 1.9520 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 67 § -1.9435 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 68 $ -4.3370 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 69 € 0.8125 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 70 / -1.8051 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 71 C 0.9351 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 72 * -0.6321 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 73 ” -0.8450 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 74 ? 0.7862 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 75 { -0.7448 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 76 } -0.6842 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 77 , 41.1780 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 78 I 1.5933 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 79 ° -3.2015 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 80 K 0.6274 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 81 H 0.6689 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 82 q 13.1470 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 83 & 0.4680 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 84 ’ -0.4065 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 85 [ 1.8613 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 86 - 27.1969 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 87 Y 0.7435 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 88 Q 0.5357 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 89 " -0.8014 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 90 ! -0.4045 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 91 x 14.4604 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 92 ) -0.8150 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 93 = 19.2614 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 94 + 14.1379 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 95 X 0.8805 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 96 » 14.5822 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 97 ' -0.6724 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 98 ¢ -5.3458 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 99 Z 1.8870 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 100 > 14.4754 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 101 ® -1.9322 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 102 © -1.2289 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 103 ] 1.6110 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 104 é -3.1606 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 105 z 14.5127 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 106 _ 49.3567 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 33 £ 43.2039 49.3487 107 ¥ 3.3938 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 1 t -35.5406 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 2 h -40.8967 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 3 a -25.9680 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 4 n -26.9644 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 5 P -40.2294 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 6 o -26.0965 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 7 e -26.2286 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 8 : -27.4947 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 9 r -26.0568 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 10 l -41.2725 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 11 i -38.0438 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 12 1 -40.1318 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 13 | -44.6287 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 14 N -39.9862 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 15 f -41.3058 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 16 g -25.9830 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 17 d -41.3321 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 18 W -40.1371 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 19 s -26.1612 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 20 c -26.1318 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 21 u -26.1257 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 22 3 -40.0544 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 23 ~ -21.9108 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 24 # -43.4213 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 25 O -40.0257 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 26 ` -43.8599 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 27 @ -42.2608 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 28 F -40.1068 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 29 S -37.8485 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 30 p -27.1304 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 31 “ -41.1264 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 32 % -42.7265 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 33 £ -40.5576 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 34 . -0.1745 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 35 2 -40.1485 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 36 5 -40.2254 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 37 m -27.4070 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 38 V -40.1425 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 39 6 -40.0191 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 40 w -25.9310 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 41 T -39.5819 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 42 M -40.0776 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 43 G -40.0406 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 44 b -41.0764 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 45 9 -40.0733 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 46 ; -26.8750 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 47 D -40.2189 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 48 L -40.0543 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 49 y -26.0841 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 50 ‘ -41.2038 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 51 \ -40.0576 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 52 R -41.2812 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 53 < -27.0497 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 54 4 -40.1096 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 55 8 -41.1104 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 56 0 -39.6961 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 57 A -37.6513 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 58 E -39.9130 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 59 B -40.0159 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 60 v -26.2519 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 61 k -41.0907 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 62 J -40.0894 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 63 U -37.8767 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 64 j -37.5096 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 65 ( -41.1069 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 66 7 -38.3980 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 67 § -42.1132 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 68 $ -44.8356 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 69 € -39.6676 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 70 / -42.6533 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 71 C -39.6406 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 72 * -41.0495 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 73 ” -41.2395 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 74 ? -40.1485 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 75 { -41.2777 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 76 } -40.9966 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 77 , 0.3329 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 78 I -38.6567 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 79 ° -43.7347 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 80 K -40.0409 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 81 H -40.0533 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 82 q -27.1057 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 83 & -39.9945 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 84 ’ -41.2644 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 85 [ -38.8757 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 86 - -13.5749 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 87 Y -40.1073 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 88 Q -40.0032 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 89 " -41.0995 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 90 ! -41.1533 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 91 x -26.1396 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 92 ) -41.0463 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 93 = -21.7175 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 94 + -26.0958 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 95 X -40.1345 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 96 » -26.0226 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 97 ' -41.4414 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 98 ¢ -46.0508 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 99 Z -38.3346 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 100 > -26.0711 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 101 ® -42.1774 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 102 © -41.6684 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 103 ] -38.6578 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 104 é -43.6816 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 105 z -26.0132 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 106 _ 8.6070 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 34 . 9.0295 7.2552 107 ¥ -37.3781 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 1 t 4.5638 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 2 h -0.8898 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 3 a 14.0487 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 4 n 12.8692 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 5 P -0.1047 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 6 o 13.9565 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 7 e 13.6499 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 8 : 12.4777 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 9 r 13.9356 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 10 l -0.9654 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 11 i 1.8723 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 12 1 -0.1916 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 13 | -4.8432 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 14 N 0.3443 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 15 f -1.0117 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 16 g 13.9524 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 17 d -0.8663 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 18 W -0.1028 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 19 s 13.9031 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 20 c 14.0462 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 21 u 13.6102 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 22 3 -0.1021 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 23 ~ 18.2387 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 24 # -3.6549 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 25 O 0.1065 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 26 ` -3.7239 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 27 @ -2.5036 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 28 F -0.2544 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 29 S 2.2144 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 30 p 12.7880 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 31 “ -0.9238 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 32 % -2.4593 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 33 £ -0.4865 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 34 . 39.7554 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 35 2 0.1274 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 36 5 -0.2175 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 37 m 12.6574 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 38 V 0.1399 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 39 6 -0.2563 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 40 w 13.8556 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 41 T 0.2297 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 42 M -0.1516 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 43 G -0.0249 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 44 b -1.3200 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 45 9 0.2594 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 46 ; 12.8697 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 47 D 0.0273 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 48 L 0.0281 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 49 y 13.8203 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 50 ‘ -1.1842 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 51 \ -0.1211 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 52 R -0.9825 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 53 < 12.9121 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 54 4 0.2179 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 55 8 -1.2026 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 56 0 0.1137 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 57 A 2.4881 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 58 E 0.1867 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 59 B -0.1802 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 60 v 13.9513 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 61 k -1.2295 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 62 J -0.0492 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 63 U 2.0442 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 64 j 2.1182 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 65 ( -1.1462 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 66 7 1.4016 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 67 § -2.0881 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 68 $ -4.8554 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 69 € 0.2220 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 70 / -2.6810 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 71 C 0.4054 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 72 * -1.2176 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 73 ” -1.0668 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 74 ? -0.1849 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 75 { -1.2485 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 76 } -0.9681 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 77 , 40.5743 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 78 I 1.7055 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 79 ° -3.6070 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 80 K 0.1158 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 81 H -0.4462 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 82 q 12.6249 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 83 & 0.0389 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 84 ’ -1.0336 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 85 [ 1.1522 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 86 - 26.3636 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 87 Y -0.0210 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 88 Q 0.2393 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 89 " -1.1462 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 90 ! -1.1854 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 91 x 13.5787 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 92 ) -1.2834 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 93 = 18.7311 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 94 + 13.9016 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 95 X -0.1678 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 96 » 13.9083 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 97 ' -0.8013 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 98 ¢ -6.0508 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 99 Z 1.4112 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 100 > 13.8034 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 101 ® -2.2581 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 102 © -1.3132 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 103 ] 1.1581 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 104 é -3.6114 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 105 z 13.8816 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 106 _ 48.8304 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 35 2 28.3500 44.2924 107 ¥ 2.9447 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 1 t 4.8975 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 2 h -1.0601 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 3 a 14.4472 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 4 n 13.3976 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 5 P -0.2479 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 6 o 14.1937 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 7 e 13.9903 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 8 : 12.4981 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 9 r 13.8067 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 10 l -1.3256 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 11 i 2.2598 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 12 1 -0.0777 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 13 | -4.9259 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 14 N 0.1448 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 15 f -1.2331 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 16 g 14.1056 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 17 d -1.3072 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 18 W 0.0347 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 19 s 13.8270 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 20 c 13.9615 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 21 u 13.7037 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 22 3 -0.1887 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 23 ~ 18.0826 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 24 # -3.4436 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 25 O -0.0335 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 26 ` -3.5327 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 27 @ -2.3964 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 28 F 0.0958 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 29 S 2.4087 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 30 p 13.1362 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 31 “ -0.9960 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 32 % -2.8367 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 33 £ -0.6585 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 34 . 39.8680 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 35 2 0.0000 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 36 5 0.2457 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 37 m 12.9042 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 38 V 0.1826 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 39 6 -0.0929 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 40 w 13.9393 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 41 T 0.2881 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 42 M 0.1728 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 43 G -0.1372 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 44 b -1.1678 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 45 9 -0.0742 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 46 ; 13.2237 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 47 D 0.2665 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 48 L 0.1353 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 49 y 13.9778 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 50 ‘ -1.1722 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 51 \ -0.1096 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 52 R -1.2791 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 53 < 13.2387 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 54 4 -0.1209 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 55 8 -1.2081 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 56 0 0.0877 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 57 A 2.4306 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 58 E -0.2640 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 59 B -0.0108 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 60 v 14.1326 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 61 k -1.2332 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 62 J 0.1867 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 63 U 2.0623 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 64 j 2.2836 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 65 ( -1.2929 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 66 7 1.3287 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 67 § -2.3725 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 68 $ -4.8406 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 69 € 0.2357 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 70 / -2.8367 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 71 C 0.4412 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 72 * -1.2768 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 73 ” -0.9716 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 74 ? 0.1399 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 75 { -1.2144 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 76 } -1.1819 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 77 , 40.2524 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 78 I 1.2898 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 79 ° -3.7374 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 80 K 0.0298 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 81 H -0.2030 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 82 q 12.6744 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 83 & 0.1920 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 84 ’ -1.2262 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 85 [ 1.0696 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 86 - 26.7109 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 87 Y -0.1039 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 88 Q 0.0093 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 89 " -1.0916 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 90 ! -1.1626 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 91 x 13.9643 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 92 ) -1.0179 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 93 = 18.6347 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 94 + 13.8865 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 95 X 0.1911 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 96 » 13.8623 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 97 ' -1.4154 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 98 ¢ -5.8727 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 99 Z 1.5699 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 100 > 14.4260 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 101 ® -2.1309 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 102 © -1.5604 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 103 ] 1.0888 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 104 é -3.6891 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 105 z 13.8723 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 106 _ 49.1606 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 36 5 31.6886 46.4848 107 ¥ 2.4303 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 1 t -8.3660 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 2 h -14.1844 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 3 a 1.2199 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 4 n 0.3603 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 5 P -13.0684 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 6 o 1.0493 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 7 e 1.1597 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 8 : -0.0707 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 9 r 1.2181 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 10 l -13.6786 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 11 i -10.5359 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 12 1 -12.9598 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 13 | -17.8922 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 14 N -13.0034 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 15 f -13.9109 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 16 g 1.1818 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 17 d -13.9649 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 18 W -12.7380 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 19 s 1.1833 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 20 c 0.8398 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 21 u 1.1711 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 22 3 -12.9062 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 23 ~ 5.3571 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 24 # -16.1764 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 25 O -12.9220 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 26 ` -16.7555 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 27 @ -14.8712 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 28 F -12.8330 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 29 S -10.4515 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 30 p 0.0422 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 31 “ -14.4947 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 32 % -15.3589 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 33 £ -13.5963 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 34 . 27.6320 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 35 2 -12.7428 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 36 5 -12.5169 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 37 m -0.3953 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 38 V -12.7463 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 39 6 -13.0178 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 40 w 1.3033 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 41 T -12.4289 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 42 M -12.9371 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 43 G -12.6427 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 44 b -13.9444 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 45 9 -12.7607 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 46 ; 0.1695 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 47 D -12.6708 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 48 L -12.6388 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 49 y 1.3702 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 50 ‘ -13.9795 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 51 \ -12.8395 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 52 R -14.1450 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 53 < 1.0935 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 54 4 -13.1747 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 55 8 -13.9615 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 56 0 -12.9999 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 57 A -10.5879 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 58 E -12.8777 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 59 B -12.8292 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 60 v 0.9124 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 61 k -13.7572 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 62 J -12.8503 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 63 U -10.8440 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 64 j -10.7908 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 65 ( -13.7278 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 66 7 -11.2591 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 67 § -15.0398 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 68 $ -17.5609 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 69 € -12.5737 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 70 / -15.5037 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 71 C -12.7416 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 72 * -13.8726 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 73 ” -14.0199 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 74 ? -12.8257 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 75 { -14.1991 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 76 } -13.9746 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 77 , 27.7314 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 78 I -11.3077 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 79 ° -16.5114 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 80 K -12.9582 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 81 H -13.0666 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 82 q 0.1698 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 83 & -12.7678 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 84 ’ -13.8042 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 85 [ -11.8640 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 86 - 13.7405 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 87 Y -12.7661 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 88 Q -13.1396 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 89 " -14.1076 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 90 ! -13.8574 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 91 x 1.0757 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 92 ) -14.1536 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 93 = 5.5672 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 94 + 1.0834 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 95 X -12.9450 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 96 » 0.9463 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 97 ' -13.8452 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 98 ¢ -18.9350 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 99 Z -11.4611 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 100 > 0.1352 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 101 ® -14.8272 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 102 © -14.2651 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 103 ] -11.9935 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 104 é -16.2502 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 105 z 1.0532 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 106 _ 36.0346 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 37 m 41.6220 34.8772 107 ¥ -10.0957 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 1 t 4.6580 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 2 h -1.0749 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 3 a 13.8804 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 4 n 13.2130 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 5 P -0.0749 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 6 o 14.3573 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 7 e 13.9585 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 8 : 12.5085 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 9 r 13.6659 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 10 l -1.1172 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 11 i 1.9466 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 12 1 -0.0482 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 13 | -4.7250 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 14 N 0.0076 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 15 f -1.2626 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 16 g 13.9481 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 17 d -1.0170 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 18 W -0.1423 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 19 s 14.1269 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 20 c 14.1501 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 21 u 13.9258 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 22 3 -0.1577 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 23 ~ 18.2047 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 24 # -3.5801 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 25 O -0.0552 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 26 ` -3.7599 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 27 @ -2.0568 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 28 F 0.1193 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 29 S 2.4765 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 30 p 12.6498 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 31 “ -1.1864 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 32 % -2.5740 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 33 £ -0.5640 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 34 . 39.9783 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 35 2 -0.2152 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 36 5 -0.2019 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 37 m 12.9554 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 38 V -0.0769 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 39 6 0.0032 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 40 w 14.0801 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 41 T 0.1110 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 42 M -0.2003 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 43 G -0.0176 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 44 b -1.0045 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 45 9 0.1769 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 46 ; 13.1829 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 47 D 0.0102 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 48 L -0.1071 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 49 y 13.7881 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 50 ‘ -0.8837 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 51 \ -0.3753 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 52 R -1.5727 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 53 < 13.9121 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 54 4 -0.2687 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 55 8 -1.1874 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 56 0 -0.2495 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 57 A 2.5524 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 58 E 0.1061 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 59 B 0.0695 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 60 v 13.9313 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 61 k -1.1616 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 62 J -0.1553 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 63 U 2.0267 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 64 j 2.0674 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 65 ( -1.3006 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 66 7 1.6576 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 67 § -2.3190 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 68 $ -4.9607 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 69 € 0.2544 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 70 / -2.5909 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 71 C 0.1380 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 72 * -1.0702 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 73 ” -0.8034 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 74 ? 0.1096 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 75 { -0.9200 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 76 } -1.0576 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 77 , 40.3503 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 78 I 1.5914 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 79 ° -3.5756 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 80 K -0.1943 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 81 H -0.0259 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 82 q 12.8705 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 83 & -0.0374 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 84 ’ -1.2120 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 85 [ 0.8323 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 86 - 26.4447 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 87 Y -0.0382 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 88 Q -0.2289 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 89 " -1.0077 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 90 ! -1.1347 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 91 x 13.7218 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 92 ) -0.9600 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 93 = 18.8132 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 94 + 14.0929 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 95 X 0.1668 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 96 » 13.9630 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 97 ' -0.9560 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 98 ¢ -6.2790 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 99 Z 1.0453 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 100 > 13.0634 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 101 ® -1.9937 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 102 © -1.6184 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 103 ] 1.2798 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 104 é -3.5001 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 105 z 14.0599 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 106 _ 48.4990 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 38 V 35.8910 45.4386 107 ¥ 2.7260 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 1 t 4.6071 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 2 h -1.0161 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 3 a 14.0922 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 4 n 13.1038 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 5 P -0.2420 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 6 o 14.0532 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 7 e 14.1266 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 8 : 12.8532 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 9 r 14.2463 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 10 l -1.4275 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 11 i 2.1592 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 12 1 -0.0185 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 13 | -4.8941 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 14 N -0.0343 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 15 f -1.3007 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 16 g 14.1464 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 17 d -0.9799 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 18 W 0.0482 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 19 s 14.1057 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 20 c 13.8799 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 21 u 14.1158 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 22 3 0.3378 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 23 ~ 18.1221 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 24 # -3.6299 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 25 O -0.0312 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 26 ` -3.8320 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 27 @ -2.3467 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 28 F 0.1900 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 29 S 2.6015 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 30 p 12.8625 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 31 “ -0.8793 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 32 % -2.2392 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 33 £ -0.3668 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 34 . 40.2996 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 35 2 -0.0833 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 36 5 0.0187 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 37 m 13.0141 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 38 V 0.0821 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 39 6 0.1332 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 40 w 13.8809 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 41 T 0.3892 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 42 M -0.0509 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 43 G -0.0552 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 44 b -1.1403 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 45 9 -0.0511 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 46 ; 12.7384 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 47 D -0.0265 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 48 L 0.1048 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 49 y 13.9734 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 50 ‘ -1.1550 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 51 \ -0.2309 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 52 R -1.1157 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 53 < 13.0288 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 54 4 -0.0187 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 55 8 -1.3738 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 56 0 -0.2043 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 57 A 2.2949 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 58 E 0.0635 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 59 B 0.2467 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 60 v 14.1521 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 61 k -1.2149 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 62 J 0.1071 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 63 U 2.0162 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 64 j 2.2749 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 65 ( -0.7187 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 66 7 1.3294 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 67 § -2.2984 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 68 $ -4.8116 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 69 € 0.2904 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 70 / -2.2727 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 71 C 0.4143 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 72 * -1.5003 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 73 ” -0.9562 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 74 ? 0.1501 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 75 { -1.0553 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 76 } -1.2533 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 77 , 40.7221 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 78 I 1.3159 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 79 ° -3.2563 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 80 K -0.0262 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 81 H -0.0793 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 82 q 12.9521 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 83 & -0.0462 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 84 ’ -1.1462 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 85 [ 1.0994 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 86 - 26.4248 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 87 Y -0.1603 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 88 Q 0.1242 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 89 " -1.0656 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 90 ! -1.1421 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 91 x 14.2766 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 92 ) -1.4228 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 93 = 18.3217 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 94 + 14.0781 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 95 X 0.0964 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 96 » 14.2327 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 97 ' -0.9153 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 98 ¢ -6.1489 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 99 Z 1.3188 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 100 > 14.3230 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 101 ® -2.1049 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 102 © -1.3852 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 103 ] 0.8177 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 104 é -3.7934 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 105 z 14.1966 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 106 _ 48.7857 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 39 6 30.7347 46.4848 107 ¥ 2.9419 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 1 t -9.1299 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 2 h -15.1609 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 3 a 0.1584 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 4 n -0.7364 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 5 P -13.9097 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 6 o -0.0202 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 7 e -0.3222 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 8 : -1.3193 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 9 r 0.2057 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 10 l -15.3894 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 11 i -12.1012 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 12 1 -14.1710 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 13 | -18.5376 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 14 N -13.6294 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 15 f -14.8118 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 16 g -0.2498 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 17 d -15.3929 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 18 W -14.1774 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 19 s 0.0048 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 20 c -0.1144 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 21 u -0.1289 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 22 3 -14.0658 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 23 ~ 4.1273 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 24 # -17.5197 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 25 O -14.0287 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 26 ` -17.7841 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 27 @ -16.3380 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 28 F -13.7575 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 29 S -11.9027 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 30 p -1.0150 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 31 “ -15.1192 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 32 % -16.8585 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 33 £ -14.2540 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 34 . 26.1401 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 35 2 -13.8777 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 36 5 -14.0905 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 37 m -0.9982 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 38 V -13.8081 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 39 6 -14.2582 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 40 w 0.2052 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 41 T -13.7183 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 42 M -14.0787 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 43 G -13.8544 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 44 b -15.0141 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 45 9 -14.1484 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 46 ; -1.1766 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 47 D -13.9219 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 48 L -13.9303 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 49 y 0.1826 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 50 ‘ -15.0243 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 51 \ -13.9698 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 52 R -15.1280 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 53 < -0.0460 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 54 4 -14.0924 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 55 8 -15.1624 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 56 0 -14.0949 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 57 A -11.7413 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 58 E -14.0450 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 59 B -13.9105 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 60 v -0.0672 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 61 k -15.0585 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 62 J -13.9583 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 63 U -12.1674 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 64 j -12.0056 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 65 ( -15.1102 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 66 7 -12.6262 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 67 § -16.0766 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 68 $ -19.3267 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 69 € -13.6607 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 70 / -16.7446 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 71 C -13.2901 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 72 * -15.1430 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 73 ” -15.0981 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 74 ? -14.4549 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 75 { -15.0863 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 76 } -15.0962 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 77 , 26.3945 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 78 I -12.5601 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 79 ° -17.8727 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 80 K -14.2834 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 81 H -14.2155 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 82 q -0.9589 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 83 & -13.7408 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 84 ’ -15.2374 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 85 [ -12.9943 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 86 - 12.4488 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 87 Y -14.0969 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 88 Q -13.9377 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 89 " -15.1952 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 90 ! -15.0846 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 91 x 0.1047 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 92 ) -15.4228 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 93 = 4.5985 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 94 + -0.0041 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 95 X -14.1738 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 96 » 0.0514 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 97 ' -15.1048 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 98 ¢ -20.2601 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 99 Z -12.4666 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 100 > -1.1027 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 101 ® -16.3460 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 102 © -15.6335 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 103 ] -12.8238 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 104 é -17.7485 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 105 z 0.1981 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 106 _ 34.7284 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 40 w 38.1834 33.7310 107 ¥ -11.2542 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 1 t 4.4942 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 2 h -1.6446 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 3 a 13.5475 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 4 n 13.0426 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 5 P -0.2923 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 6 o 13.2565 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 7 e 13.6044 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 8 : 12.0322 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 9 r 13.9715 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 10 l -1.2098 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 11 i 1.3711 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 12 1 -0.3943 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 13 | -5.3423 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 14 N -0.2409 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 15 f -1.5984 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 16 g 13.4334 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 17 d -1.6336 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 18 W -0.3196 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 19 s 13.6504 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 20 c 13.3624 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 21 u 13.7833 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 22 3 -0.2627 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 23 ~ 17.6501 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 24 # -3.7923 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 25 O -0.4298 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 26 ` -3.5811 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 27 @ -2.7030 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 28 F -0.2293 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 29 S 1.9734 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 30 p 12.6479 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 31 “ -1.1660 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 32 % -2.7828 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 33 £ -0.6825 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 34 . 39.9225 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 35 2 -0.2539 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 36 5 -0.0831 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 37 m 12.7158 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 38 V 0.0101 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 39 6 -0.4880 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 40 w 13.7295 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 41 T 0.0682 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 42 M -0.2033 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 43 G -0.5078 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 44 b -1.3169 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 45 9 -0.5301 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 46 ; 12.8567 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 47 D -0.4976 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 48 L -0.2514 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 49 y 13.6739 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 50 ‘ -1.2378 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 51 \ -0.2709 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 52 R -1.4258 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 53 < 13.8565 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 54 4 -0.2546 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 55 8 -1.3651 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 56 0 -0.5760 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 57 A 2.0515 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 58 E -0.1038 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 59 B -0.2400 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 60 v 13.7818 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 61 k -1.4461 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 62 J -0.2654 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 63 U 1.8927 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 64 j 1.9461 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 65 ( -1.4853 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 66 7 1.0924 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 67 § -2.4688 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 68 $ -5.3097 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 69 € 0.1903 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 70 / -2.9787 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 71 C 0.3415 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 72 * -1.4536 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 73 ” -1.2910 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 74 ? -0.2896 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 75 { -1.6179 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 76 } -1.3446 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 77 , 39.9973 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 78 I 1.0039 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 79 ° -3.7221 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 80 K -0.5848 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 81 H -0.3702 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 82 q 12.1299 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 83 & -0.4075 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 84 ’ -1.5697 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 85 [ 0.9078 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 86 - 26.4784 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 87 Y -0.2269 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 88 Q 0.0648 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 89 " -1.7960 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 90 ! -1.6650 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 91 x 13.7134 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 92 ) -1.3182 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 93 = 18.4193 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 94 + 13.4442 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 95 X -0.2409 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 96 » 13.5526 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 97 ' -1.3258 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 98 ¢ -6.1237 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 99 Z 1.3275 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 100 > 12.4153 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 101 ® -2.3920 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 102 © -1.7417 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 103 ] 1.0710 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 104 é -4.0841 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 105 z 13.7853 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 106 _ 48.4012 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 41 T 40.5681 45.1288 107 ¥ 2.7415 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 1 t 4.9060 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 2 h -1.1441 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 3 a 14.4126 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 4 n 13.1809 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 5 P -0.2280 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 6 o 14.4103 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 7 e 14.1076 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 8 : 13.1239 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 9 r 13.4857 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 10 l -1.0614 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 11 i 1.9126 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 12 1 -0.3392 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 13 | -4.5885 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 14 N -0.0290 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 15 f -1.3215 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 16 g 14.2667 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 17 d -1.0810 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 18 W 0.5061 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 19 s 13.9643 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 20 c 14.0677 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 21 u 14.1789 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 22 3 -0.0790 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 23 ~ 17.9536 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 24 # -3.5542 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 25 O -0.0306 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 26 ` -3.2904 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 27 @ -2.4797 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 28 F 0.1219 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 29 S 2.1967 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 30 p 13.0011 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 31 “ -1.3196 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 32 % -2.7227 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 33 £ -0.5722 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 34 . 40.2108 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 35 2 -0.0611 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 36 5 0.1613 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 37 m 13.2181 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 38 V -0.2864 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 39 6 0.0693 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 40 w 14.0092 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 41 T 0.2342 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 42 M -0.2555 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 43 G 0.0554 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 44 b -1.0520 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 45 9 -0.1946 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 46 ; 12.8107 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 47 D 0.1655 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 48 L 0.0318 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 49 y 13.9786 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 50 ‘ -1.0500 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 51 \ 0.2013 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 52 R -1.0187 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 53 < 13.8929 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 54 4 -0.0098 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 55 8 -1.1257 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 56 0 -0.2262 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 57 A 2.2278 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 58 E 0.0775 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 59 B -0.3438 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 60 v 13.9095 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 61 k -0.9881 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 62 J 0.0552 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 63 U 1.5255 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 64 j 2.1158 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 65 ( -1.2944 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 66 7 1.3584 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 67 § -2.2717 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 68 $ -4.8024 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 69 € 0.6440 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 70 / -2.1431 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 71 C 0.1520 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 72 * -1.3737 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 73 ” -1.4247 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 74 ? -0.1402 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 75 { -1.2516 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 76 } -1.0237 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 77 , 40.3169 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 78 I 1.4109 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 79 ° -3.2621 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 80 K 0.1639 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 81 H -0.2998 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 82 q 12.9774 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 83 & 0.1737 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 84 ’ -1.2011 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 85 [ 0.8074 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 86 - 26.5646 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 87 Y -0.0371 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 88 Q -0.0949 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 89 " -1.3800 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 90 ! -1.3786 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 91 x 13.4878 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 92 ) -0.7397 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 93 = 18.8145 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 94 + 13.5058 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 95 X -0.0809 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 96 » 13.7063 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 97 ' -0.7739 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 98 ¢ -6.2059 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 99 Z 1.5139 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 100 > 13.2356 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 101 ® -1.8970 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 102 © -1.4035 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 103 ] 1.0214 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 104 é -3.6184 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 105 z 14.1564 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 106 _ 48.6387 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 42 M 45.0533 46.5848 107 ¥ 2.9419 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 1 t 4.5760 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 2 h -0.9919 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 3 a 14.0027 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 4 n 13.3629 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 5 P -0.1655 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 6 o 13.8814 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 7 e 13.6648 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 8 : 12.5715 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 9 r 14.1294 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 10 l -1.1704 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 11 i 1.8228 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 12 1 0.1669 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 13 | -4.6541 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 14 N 0.0092 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 15 f -1.1792 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 16 g 13.8174 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 17 d -1.4902 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 18 W -0.1512 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 19 s 14.2368 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 20 c 13.9261 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 21 u 13.8377 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 22 3 0.1234 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 23 ~ 17.9817 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 24 # -3.6654 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 25 O -0.1645 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 26 ` -3.5891 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 27 @ -2.1737 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 28 F 0.1424 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 29 S 2.4184 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 30 p 12.8987 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 31 “ -1.0948 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 32 % -2.4702 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 33 £ -0.6727 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 34 . 40.2175 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 35 2 -0.1654 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 36 5 -0.1957 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 37 m 12.9740 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 38 V -0.0899 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 39 6 0.2508 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 40 w 13.8027 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 41 T 0.4911 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 42 M -0.3114 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 43 G -0.1708 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 44 b -1.0196 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 45 9 0.1663 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 46 ; 13.1138 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 47 D 0.1679 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 48 L 0.0240 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 49 y 14.1137 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 50 ‘ -0.9638 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 51 \ 0.1204 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 52 R -1.0095 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 53 < 14.0423 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 54 4 -0.1390 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 55 8 -1.2537 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 56 0 0.4492 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 57 A 2.1091 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 58 E 0.0407 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 59 B -0.0780 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 60 v 13.8842 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 61 k -1.4407 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 62 J -0.0064 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 63 U 1.9287 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 64 j 2.3240 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 65 ( -1.5740 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 66 7 1.3424 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 67 § -2.0698 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 68 $ -5.2123 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 69 € 0.2928 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 70 / -2.4674 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 71 C 0.3186 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 72 * -1.3762 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 73 ” -1.1258 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 74 ? -0.1700 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 75 { -0.8892 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 76 } -1.1367 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 77 , 40.4139 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 78 I 1.2006 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 79 ° -3.7023 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 80 K -0.1505 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 81 H 0.2925 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 82 q 12.6800 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 83 & 0.2265 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 84 ’ -1.1472 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 85 [ 1.4379 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 86 - 26.3753 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 87 Y -0.1628 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 88 Q 0.2075 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 89 " -1.0428 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 90 ! -1.0071 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 91 x 13.7941 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 92 ) -1.0223 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 93 = 18.5814 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 94 + 13.8413 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 95 X 0.0614 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 96 » 14.0584 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 97 ' -1.2339 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 98 ¢ -6.0591 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 99 Z 1.0741 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 100 > 13.0663 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 101 ® -2.5226 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 102 © -1.2858 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 103 ] 0.8355 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 104 é -3.4013 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 105 z 13.9917 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 106 _ 48.8213 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 43 G 38.1834 46.4848 107 ¥ 3.1458 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 1 t 5.7737 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 2 h -0.0560 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 3 a 15.1013 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 4 n 14.6829 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 5 P 1.2001 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 6 o 14.9482 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 7 e 15.1067 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 8 : 13.7248 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 9 r 15.2388 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 10 l 0.1112 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 11 i 3.2114 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 12 1 1.2207 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 13 | -3.7096 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 14 N 1.3530 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 15 f -0.0766 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 16 g 15.0287 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 17 d -0.3198 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 18 W 1.3155 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 19 s 15.3288 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 20 c 15.0935 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 21 u 15.3981 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 22 3 1.3391 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 23 ~ 19.4458 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 24 # -2.2770 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 25 O 1.2176 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 26 ` -2.4698 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 27 @ -1.0197 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 28 F 1.0272 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 29 S 3.5250 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 30 p 13.7191 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 31 “ -0.0053 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 32 % -1.3462 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 33 £ 0.5308 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 34 . 41.2160 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 35 2 1.2055 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 36 5 1.0748 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 37 m 14.0325 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 38 V 1.2931 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 39 6 1.2740 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 40 w 15.4947 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 41 T 1.5970 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 42 M 1.1809 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 43 G 1.1977 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 44 b -0.0078 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 45 9 1.3204 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 46 ; 14.0733 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 47 D 1.4271 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 48 L 1.2256 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 49 y 15.3590 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 50 ‘ 0.2544 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 51 \ 1.1315 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 52 R 0.1516 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 53 < 15.0748 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 54 4 1.1232 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 55 8 -0.0492 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 56 0 1.0726 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 57 A 3.2089 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 58 E 1.4072 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 59 B 1.1164 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 60 v 15.1407 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 61 k 0.0135 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 62 J 1.1260 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 63 U 3.3317 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 64 j 3.2080 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 65 ( 0.0032 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 66 7 2.6237 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 67 § -0.9010 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 68 $ -3.4857 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 69 € 1.5477 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 70 / -1.6981 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 71 C 1.3814 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 72 * 0.2340 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 73 ” 0.2747 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 74 ? 1.3053 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 75 { -0.1517 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 76 } 0.0219 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 77 , 41.7084 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 78 I 2.6855 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 79 ° -2.8025 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 80 K 1.2926 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 81 H 1.1407 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 82 q 14.1480 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 83 & 1.0891 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 84 ’ -0.2265 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 85 [ 2.1773 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 86 - 27.7813 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 87 Y 1.2090 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 88 Q 1.0296 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 89 " 0.0928 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 90 ! 0.3524 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 91 x 15.0585 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 92 ) -0.0242 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 93 = 19.8331 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 94 + 14.9849 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 95 X 1.3269 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 96 » 15.1760 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 97 ' 0.0289 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 98 ¢ -4.9624 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 99 Z 2.5670 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 100 > 14.2572 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 101 ® -0.9156 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 102 © -0.2714 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 103 ] 2.3179 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 104 é -2.6352 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 105 z 15.4337 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 106 _ 50.0603 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 44 b 30.5424 46.5848 107 ¥ 3.8627 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 1 t 4.9627 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 2 h -1.3040 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 3 a 13.8810 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 4 n 13.5336 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 5 P 0.2062 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 6 o 13.9692 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 7 e 13.9770 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 8 : 12.7226 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 9 r 13.9133 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 10 l -1.3475 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 11 i 1.8587 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 12 1 -0.0040 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 13 | -4.5833 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 14 N -0.1321 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 15 f -1.3341 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 16 g 13.6946 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 17 d -1.2041 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 18 W -0.0687 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 19 s 13.7168 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 20 c 13.8452 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 21 u 14.1472 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 22 3 0.2659 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 23 ~ 17.8769 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 24 # -3.3797 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 25 O 0.0554 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 26 ` -3.6243 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 27 @ -1.8503 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 28 F 0.0847 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 29 S 2.2606 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 30 p 13.0207 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 31 “ -1.1266 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 32 % -2.5142 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 33 £ -0.5714 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 34 . 40.0432 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 35 2 0.1223 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 36 5 -0.0000 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 37 m 13.0649 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 38 V 0.3412 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 39 6 0.1870 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 40 w 14.0591 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 41 T 0.2761 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 42 M 0.0143 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 43 G -0.2512 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 44 b -0.9974 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 45 9 -0.3816 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 46 ; 13.2122 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 47 D 0.0111 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 48 L 0.2665 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 49 y 14.0937 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 50 ‘ -0.9346 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 51 \ 0.0385 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 52 R -1.4776 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 53 < 13.0014 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 54 4 -0.2356 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 55 8 -1.0436 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 56 0 -0.0162 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 57 A 2.1284 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 58 E 0.1376 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 59 B -0.0789 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 60 v 14.0155 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 61 k -1.0291 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 62 J 0.0251 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 63 U 2.0220 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 64 j 2.4733 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 65 ( -1.2161 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 66 7 1.3957 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 67 § -1.9230 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 68 $ -4.9841 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 69 € 0.2162 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 70 / -2.5543 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 71 C 0.4365 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 72 * -1.2616 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 73 ” -1.1804 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 74 ? -0.1706 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 75 { -1.1424 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 76 } -0.8927 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 77 , 40.6213 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 78 I 1.3660 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 79 ° -3.8806 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 80 K -0.2522 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 81 H 0.0350 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 82 q 12.8923 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 83 & -0.0774 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 84 ’ -1.0126 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 85 [ 1.0975 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 86 - 26.5100 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 87 Y -0.1843 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 88 Q 0.2757 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 89 " -1.0450 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 90 ! -0.9359 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 91 x 14.1951 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 92 ) -0.9154 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 93 = 18.5382 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 94 + 13.9130 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 95 X 0.2614 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 96 » 14.0151 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 97 ' -0.9537 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 98 ¢ -6.1145 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 99 Z 1.6401 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 100 > 13.8314 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 101 ® -2.1611 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 102 © -1.6362 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 103 ] 1.3093 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 104 é -3.9477 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 105 z 13.9827 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 106 _ 48.7496 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 45 9 33.0271 46.0100 107 ¥ 2.6291 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 1 t -8.4000 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 2 h -14.2541 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 3 a 0.8787 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 4 n -0.1172 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 5 P -13.0587 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 6 o 0.8922 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 7 e 0.9084 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 8 : -0.6993 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 9 r 0.9606 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 10 l -14.2648 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 11 i -11.0246 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 12 1 -12.9471 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 13 | -17.8896 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 14 N -13.1273 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 15 f -14.3746 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 16 g 0.8489 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 17 d -14.3223 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 18 W -12.9211 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 19 s 0.9658 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 20 c 0.9078 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 21 u 0.9495 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 22 3 -12.8869 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 23 ~ 4.9807 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 24 # -16.4291 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 25 O -13.2431 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 26 ` -16.6201 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 27 @ -15.0935 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 28 F -12.9769 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 29 S -10.6631 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 30 p -0.1707 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 31 “ -14.2443 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 32 % -15.4760 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 33 £ -13.5543 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 34 . 27.0918 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 35 2 -12.9555 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 36 5 -12.9336 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 37 m -0.1874 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 38 V -12.9484 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 39 6 -13.3137 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 40 w 1.3104 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 41 T -12.6642 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 42 M -12.8989 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 43 G -13.2150 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 44 b -14.3917 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 45 9 -13.1490 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 46 ; 0.0079 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 47 D -13.1805 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 48 L -13.0992 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 49 y 0.9116 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 50 ‘ -14.2102 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 51 \ -13.3943 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 52 R -14.2805 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 53 < 0.0297 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 54 4 -12.9333 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 55 8 -14.1164 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 56 0 -13.0759 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 57 A -10.5091 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 58 E -13.2672 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 59 B -13.2951 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 60 v 1.1184 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 61 k -14.0830 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 62 J -12.9667 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 63 U -11.0674 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 64 j -11.1262 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 65 ( -14.2486 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 66 7 -11.4887 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 67 § -15.2269 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 68 $ -18.1556 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 69 € -12.6680 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 70 / -15.7902 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 71 C -12.7940 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 72 * -14.1871 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 73 ” -14.0920 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 74 ? -12.9963 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 75 { -14.3977 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 76 } -14.2140 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 77 , 27.2711 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 78 I -11.5879 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 79 ° -16.6298 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 80 K -12.9991 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 81 H -13.0440 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 82 q -0.0980 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 83 & -12.7577 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 84 ’ -14.3487 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 85 [ -11.9887 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 86 - 13.5741 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 87 Y -13.3142 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 88 Q -13.1245 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 89 " -14.1128 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 90 ! -14.2096 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 91 x 1.1188 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 92 ) -14.1272 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 93 = 5.8061 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 94 + 0.8238 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 95 X -13.1035 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 96 » 0.5925 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 97 ' -14.1780 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 98 ¢ -19.1552 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 99 Z -11.3450 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 100 > 1.2010 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 101 ® -15.2110 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 102 © -14.6672 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 103 ] -11.8208 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 104 é -16.7300 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 105 z 0.9954 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 106 _ 35.6953 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 46 ; 11.7401 38.2515 107 ¥ -10.3565 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 1 t 4.6377 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 2 h -1.1421 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 3 a 14.0000 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 4 n 13.1621 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 5 P 0.2114 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 6 o 13.7104 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 7 e 14.0726 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 8 : 12.6483 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 9 r 13.9778 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 10 l -1.3502 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 11 i 2.0008 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 12 1 -0.3161 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 13 | -4.4776 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 14 N -0.1768 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 15 f -1.1754 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 16 g 13.8631 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 17 d -1.4046 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 18 W -0.1835 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 19 s 14.0465 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 20 c 13.7756 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 21 u 13.9830 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 22 3 0.0325 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 23 ~ 18.2049 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 24 # -3.5188 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 25 O -0.1553 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 26 ` -3.5198 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 27 @ -2.0820 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 28 F 0.3881 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 29 S 2.2442 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 30 p 12.8501 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 31 “ -1.4331 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 32 % -2.5705 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 33 £ -0.7622 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 34 . 40.0191 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 35 2 -0.1603 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 36 5 0.0067 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 37 m 12.7748 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 38 V -0.0893 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 39 6 -0.1762 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 40 w 13.8047 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 41 T 0.1300 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 42 M -0.1333 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 43 G -0.1274 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 44 b -1.2533 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 45 9 0.1239 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 46 ; 12.7435 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 47 D 0.0130 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 48 L 0.1147 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 49 y 14.2393 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 50 ‘ -1.0391 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 51 \ -0.3122 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 52 R -1.0542 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 53 < 13.9202 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 54 4 -0.2893 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 55 8 -1.1267 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 56 0 0.1320 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 57 A 2.2581 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 58 E 0.1882 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 59 B 0.0357 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 60 v 13.8227 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 61 k -1.2093 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 62 J -0.2914 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 63 U 2.0854 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 64 j 2.2952 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 65 ( -1.0612 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 66 7 1.2607 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 67 § -2.3872 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 68 $ -5.0414 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 69 € 0.1101 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 70 / -2.7923 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 71 C 0.0534 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 72 * -1.2740 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 73 ” -0.9561 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 74 ? -0.1071 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 75 { -1.2184 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 76 } -1.3897 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 77 , 40.5805 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 78 I 1.4147 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 79 ° -3.6608 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 80 K 0.2087 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 81 H 0.1301 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 82 q 13.0578 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 83 & -0.1781 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 84 ’ -1.2339 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 85 [ 1.0490 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 86 - 26.5247 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 87 Y -0.0574 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 88 Q -0.0707 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 89 " -1.0553 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 90 ! -1.1289 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 91 x 14.0404 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 92 ) -1.3621 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 93 = 18.5988 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 94 + 13.9071 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 95 X -0.2265 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 96 » 13.9567 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 97 ' -0.9887 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 98 ¢ -6.1643 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 99 Z 1.3127 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 100 > 13.1565 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 101 ® -2.1645 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 102 © -1.6194 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 103 ] 1.0823 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 104 é -3.7509 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 105 z 14.1613 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 106 _ 49.1256 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 47 D 36.3690 47.0628 107 ¥ 2.6949 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 1 t 4.9126 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 2 h -1.0682 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 3 a 14.0227 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 4 n 13.3581 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 5 P -0.0494 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 6 o 13.9325 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 7 e 14.0000 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 8 : 12.5384 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 9 r 14.0143 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 10 l -1.1781 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 11 i 2.0059 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 12 1 -0.1429 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 13 | -4.6290 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 14 N -0.0357 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 15 f -1.0085 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 16 g 13.9056 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 17 d -1.0688 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 18 W -0.5090 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 19 s 14.0092 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 20 c 13.9857 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 21 u 13.8929 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 22 3 0.0690 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 23 ~ 18.3740 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 24 # -3.5796 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 25 O 0.1356 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 26 ` -3.8431 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 27 @ -1.9709 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 28 F -0.0143 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 29 S 2.3714 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 30 p 12.9172 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 31 “ -0.9178 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 32 % -2.8201 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 33 £ -0.4583 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 34 . 39.9342 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 35 2 0.1658 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 36 5 -0.0986 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 37 m 12.8538 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 38 V 0.0590 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 39 6 -0.0602 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 40 w 13.9237 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 41 T 0.3321 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 42 M 0.0658 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 43 G -0.0909 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 44 b -1.2795 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 45 9 0.0647 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 46 ; 13.0375 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 47 D 0.1417 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 48 L -0.0281 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 49 y 14.0574 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 50 ‘ -1.2484 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 51 \ 0.1152 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 52 R -1.0045 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 53 < 13.7878 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 54 4 -0.1802 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 55 8 -1.1966 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 56 0 -0.0417 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 57 A 1.7544 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 58 E 0.0582 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 59 B 0.4115 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 60 v 13.7016 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 61 k -1.1462 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 62 J -0.0060 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 63 U 2.1590 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 64 j 2.3987 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 65 ( -1.4521 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 66 7 1.3665 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 67 § -2.4510 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 68 $ -4.8919 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 69 € 0.2766 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 70 / -2.6737 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 71 C 0.1907 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 72 * -1.1841 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 73 ” -1.0824 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 74 ? -0.0000 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 75 { -1.2196 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 76 } -0.9776 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 77 , 40.2117 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 78 I 1.1795 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 79 ° -3.2940 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 80 K -0.1608 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 81 H -0.1151 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 82 q 12.6405 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 83 & -0.0312 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 84 ’ -0.8951 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 85 [ 1.0269 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 86 - 26.4586 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 87 Y -0.1431 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 88 Q 0.0893 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 89 " -1.4065 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 90 ! -1.3729 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 91 x 13.5560 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 92 ) -1.5457 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 93 = 18.6594 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 94 + 14.2811 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 95 X -0.2884 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 96 » 14.0527 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 97 ' -1.1565 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 98 ¢ -6.1495 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 99 Z 1.4615 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 100 > 12.9309 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 101 ® -2.3013 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 102 © -1.3901 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 103 ] 0.8958 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 104 é -3.4097 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 105 z 13.9272 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 106 _ 48.6955 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 48 L 30.1924 46.4848 107 ¥ 2.8418 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 1 t -9.0636 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 2 h -15.2918 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 3 a -0.0552 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 4 n -0.6706 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 5 P -13.9161 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 6 o -0.0579 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 7 e 0.1718 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 8 : -1.4571 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 9 r 0.0488 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 10 l -14.9286 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 11 i -12.3806 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 12 1 -13.9940 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 13 | -19.0922 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 14 N -13.8672 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 15 f -15.3770 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 16 g -0.2725 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 17 d -14.8761 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 18 W -13.8793 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 19 s 0.1686 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 20 c 0.0073 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 21 u 0.3119 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 22 3 -13.9924 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 23 ~ 3.9925 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 24 # -17.3610 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 25 O -13.9265 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 26 ` -17.4913 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 27 @ -15.9811 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 28 F -14.0599 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 29 S -11.4784 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 30 p -1.3037 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 31 “ -15.0553 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 32 % -16.5976 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 33 £ -14.4004 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 34 . 25.7591 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 35 2 -13.5987 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 36 5 -14.0877 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 37 m -1.2386 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 38 V -13.9448 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 39 6 -13.8571 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 40 w 0.0357 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 41 T -13.9370 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 42 M -14.3369 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 43 G -14.2495 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 44 b -15.4761 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 45 9 -13.8761 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 46 ; -0.7604 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 47 D -14.2525 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 48 L -13.9318 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 49 y -0.1280 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 50 ‘ -15.0719 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 51 \ -14.1531 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 52 R -14.8680 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 53 < 0.0847 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 54 4 -14.0110 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 55 8 -15.0906 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 56 0 -14.1812 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 57 A -11.5617 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 58 E -14.3171 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 59 B -13.7872 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 60 v -0.0214 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 61 k -15.2158 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 62 J -13.7636 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 63 U -12.1446 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 64 j -11.9521 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 65 ( -15.1178 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 66 7 -12.3015 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 67 § -16.3238 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 68 $ -18.8990 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 69 € -13.9791 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 70 / -16.7494 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 71 C -13.3578 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 72 * -15.0629 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 73 ” -15.0363 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 74 ? -13.8141 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 75 { -15.3099 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 76 } -15.0903 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 77 , 26.1167 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 78 I -12.6324 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 79 ° -17.6370 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 80 K -14.1975 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 81 H -14.1945 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 82 q -1.1299 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 83 & -13.8953 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 84 ’ -15.3069 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 85 [ -12.6138 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 86 - 12.7493 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 87 Y -14.1848 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 88 Q -13.7586 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 89 " -14.9312 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 90 ! -14.6421 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 91 x 0.2404 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 92 ) -15.2766 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 93 = 4.4462 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 94 + -0.0915 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 95 X -14.0958 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 96 » -0.0504 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 97 ' -15.1868 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 98 ¢ -19.9134 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 99 Z -12.4743 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 100 > -1.2257 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 101 ® -16.1893 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 102 © -15.5275 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 103 ] -13.0064 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 104 é -17.5459 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 105 z -0.2553 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 106 _ 34.7220 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 49 y 31.4386 46.1666 107 ¥ -11.1581 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 1 t 5.9524 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 2 h -0.1835 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 3 a 15.2176 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 4 n 14.2579 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 5 P 1.2950 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 6 o 15.0536 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 7 e 15.2347 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 8 : 13.5971 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 9 r 15.2236 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 10 l -0.0909 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 11 i 3.0117 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 12 1 1.0025 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 13 | -3.6137 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 14 N 1.2980 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 15 f 0.0157 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 16 g 15.2176 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 17 d 0.2803 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 18 W 1.0780 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 19 s 15.1532 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 20 c 15.1619 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 21 u 15.1470 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 22 3 1.1013 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 23 ~ 19.1212 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 24 # -2.4053 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 25 O 1.1844 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 26 ` -2.5555 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 27 @ -1.0267 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 28 F 1.1819 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 29 S 3.3092 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 30 p 13.9611 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 31 “ -0.0690 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 32 % -1.5932 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 33 £ 0.5033 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 34 . 41.0439 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 35 2 1.1954 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 36 5 1.0194 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 37 m 13.9286 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 38 V 1.1629 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 39 6 1.3443 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 40 w 15.1462 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 41 T 1.3819 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 42 M 1.1862 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 43 G 0.9811 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 44 b -0.0801 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 45 9 1.0629 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 46 ; 14.5953 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 47 D 1.3085 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 48 L 0.8575 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 49 y 15.0970 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 50 ‘ 0.0000 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 51 \ 0.9733 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 52 R -0.0357 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 53 < 14.2984 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 54 4 1.0423 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 55 8 0.1126 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 56 0 1.1462 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 57 A 3.4386 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 58 E 1.0793 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 59 B 1.3085 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 60 v 15.2236 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 61 k 0.1036 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 62 J 1.0006 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 63 U 3.2029 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 64 j 3.3029 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 65 ( -0.0505 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 66 7 2.4566 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 67 § -1.0591 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 68 $ -3.8264 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 69 € 1.4872 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 70 / -1.4116 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 71 C 1.3759 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 72 * 0.0135 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 73 ” 0.0909 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 74 ? 1.1990 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 75 { 0.0000 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 76 } 0.0714 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 77 , 41.7783 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 78 I 2.4896 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 79 ° -2.5138 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 80 K 1.2138 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 81 H 1.3085 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 82 q 14.0917 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 83 & 1.1462 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 84 ’ -0.1486 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 85 [ 2.2949 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 86 - 27.8171 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 87 Y 1.2093 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 88 Q 1.3358 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 89 " 0.0000 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 90 ! 0.0000 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 91 x 15.1874 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 92 ) -0.0801 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 93 = 19.8581 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 94 + 14.9711 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 95 X 1.1462 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 96 » 14.9192 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 97 ' -0.0579 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 98 ¢ -4.6894 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 99 Z 2.6380 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 100 > 15.1327 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 101 ® -0.8693 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 102 © -0.3456 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 103 ] 2.2567 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 104 é -2.4956 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 105 z 15.1235 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 106 _ 49.8263 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 50 ‘ 8.0833 15.1462 107 ¥ 3.9142 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 1 t 4.6796 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 2 h -1.0688 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 3 a 14.3331 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 4 n 13.2657 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 5 P 0.3758 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 6 o 14.1456 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 7 e 14.0917 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 8 : 12.5745 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 9 r 13.8531 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 10 l -1.2411 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 11 i 1.7404 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 12 1 0.0665 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 13 | -4.6158 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 14 N 0.0023 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 15 f -1.1470 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 16 g 14.0055 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 17 d -1.4352 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 18 W -0.0631 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 19 s 13.9394 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 20 c 14.0790 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 21 u 14.1239 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 22 3 -0.0420 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 23 ~ 18.1221 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 24 # -3.2786 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 25 O 0.1651 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 26 ` -3.5775 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 27 @ -2.1634 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 28 F -0.1441 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 29 S 2.2345 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 30 p 13.2291 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 31 “ -0.9898 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 32 % -2.7282 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 33 £ -0.6981 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 34 . 39.9885 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 35 2 -0.0809 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 36 5 0.1587 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 37 m 13.0210 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 38 V -0.0347 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 39 6 0.1981 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 40 w 14.1242 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 41 T 0.1972 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 42 M -0.0774 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 43 G -0.1721 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 44 b -1.0336 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 45 9 0.1830 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 46 ; 13.1971 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 47 D -0.2158 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 48 L 0.4340 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 49 y 13.9865 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 50 ‘ -1.3172 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 51 \ 0.1307 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 52 R -1.1897 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 53 < 12.8507 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 54 4 -0.0959 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 55 8 -1.2533 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 56 0 -0.0944 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 57 A 2.5130 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 58 E -0.0801 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 59 B -0.1700 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 60 v 14.1868 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 61 k -1.3534 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 62 J -0.0947 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 63 U 2.5030 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 64 j 2.1837 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 65 ( -1.0174 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 66 7 1.5719 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 67 § -2.1468 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 68 $ -4.7210 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 69 € 0.3161 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 70 / -2.1480 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 71 C 0.3071 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 72 * -1.2014 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 73 ” -1.0434 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 74 ? 0.0417 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 75 { -1.0046 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 76 } -1.3085 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 77 , 40.5241 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 78 I 1.4366 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 79 ° -3.7680 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 80 K -0.0801 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 81 H 0.1093 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 82 q 12.8347 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 83 & 0.3253 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 84 ’ -1.2434 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 85 [ 1.3968 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 86 - 26.6745 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 87 Y 0.2253 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 88 Q -0.0378 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 89 " -1.2946 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 90 ! -1.2686 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 91 x 14.0909 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 92 ) -1.0591 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 93 = 18.4212 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 94 + 14.0100 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 95 X 0.0037 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 96 » 13.8929 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 97 ' -0.8178 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 98 ¢ -6.0487 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 99 Z 1.5057 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 100 > 13.8037 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 101 ® -2.1410 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 102 © -1.3995 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 103 ] 1.3649 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 104 é -3.6744 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 105 z 13.9101 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 106 _ 48.6173 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 51 \ 26.1258 48.2090 107 ¥ 2.5319 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 1 t 5.8826 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 2 h -0.0305 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 3 a 15.1327 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 4 n 14.4144 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 5 P 1.1403 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 6 o 14.8748 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 7 e 15.2696 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 8 : 13.6800 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 9 r 15.2301 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 10 l -0.0996 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 11 i 3.2447 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 12 1 1.2531 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 13 | -3.5494 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 14 N 0.8887 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 15 f -0.0081 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 16 g 15.2295 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 17 d 0.1325 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 18 W 1.1985 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 19 s 15.1042 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 20 c 15.2506 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 21 u 15.1560 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 22 3 1.1459 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 23 ~ 19.0537 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 24 # -2.3858 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 25 O 0.9227 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 26 ` -2.5587 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 27 @ -1.1864 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 28 F 1.0661 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 29 S 3.4529 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 30 p 14.4300 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 31 “ -0.1645 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 32 % -1.2629 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 33 £ 0.7431 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 34 . 41.3089 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 35 2 0.9432 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 36 5 1.1915 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 37 m 13.8738 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 38 V 0.7950 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 39 6 1.1300 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 40 w 15.1347 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 41 T 1.1084 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 42 M 1.4112 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 43 G 1.0688 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 44 b -0.0230 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 45 9 0.9492 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 46 ; 14.2782 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 47 D 1.1847 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 48 L 1.4407 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 49 y 15.1602 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 50 ‘ 0.0579 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 51 \ 1.1202 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 52 R -0.0102 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 53 < 15.0805 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 54 4 1.1235 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 55 8 -0.2013 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 56 0 1.1388 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 57 A 3.3360 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 58 E 1.0930 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 59 B 0.9561 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 60 v 15.1637 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 61 k 0.1933 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 62 J 1.2263 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 63 U 3.1898 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 64 j 3.2672 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 65 ( 0.1137 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 66 7 2.6983 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 67 § -0.9772 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 68 $ -3.7723 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 69 € 1.2902 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 70 / -1.3808 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 71 C 1.5821 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 72 * 0.2540 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 73 ” -0.1796 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 74 ? 1.0416 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 75 { 0.0385 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 76 } -0.0492 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 77 , 41.4791 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 78 I 2.4586 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 79 ° -2.5888 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 80 K 1.2548 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 81 H 1.0486 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 82 q 13.7191 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 83 & 1.1260 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 84 ’ -0.0202 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 85 [ 2.1301 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 86 - 27.6179 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 87 Y 1.0280 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 88 Q 1.3552 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 89 " 0.0492 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 90 ! 0.0690 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 91 x 15.2523 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 92 ) 0.2789 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 93 = 19.7010 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 94 + 15.1722 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 95 X 1.2677 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 96 » 15.1040 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 97 ' -0.3861 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 98 ¢ -4.7640 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 99 Z 2.3765 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 100 > 14.3212 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 101 ® -1.2016 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 102 © -0.3071 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 103 ] 2.2692 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 104 é -2.7399 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 105 z 15.1807 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 106 _ 50.0782 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 52 R 33.2205 46.5848 107 ¥ 4.0553 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 1 t -9.5493 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 2 h -15.3347 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 3 a 0.1307 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 4 n -0.6903 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 5 P -13.9108 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 6 o 0.1135 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 7 e 0.1548 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 8 : -0.3968 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 9 r 0.1079 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 10 l -15.1760 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 11 i -11.8276 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 12 1 -12.9995 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 13 | -17.5745 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 14 N -13.7446 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 15 f -15.1708 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 16 g -0.2281 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 17 d -15.0723 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 18 W -14.0062 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 19 s 0.0412 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 20 c -0.2035 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 21 u -0.1228 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 22 3 -13.1186 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 23 ~ 5.0227 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 24 # -16.4763 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 25 O -14.0877 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 26 ` -16.8054 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 27 @ -15.0278 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 28 F -14.4278 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 29 S -11.7845 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 30 p -0.9400 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 31 “ -14.0816 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 32 % -15.7872 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 33 £ -13.8472 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 34 . 26.5682 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 35 2 -13.0036 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 36 5 -13.1130 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 37 m -0.8905 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 38 V -13.9258 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 39 6 -12.8879 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 40 w 0.0902 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 41 T -13.8287 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 42 M -14.4494 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 43 G -13.8950 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 44 b -15.2101 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 45 9 -13.1356 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 46 ; -0.0524 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 47 D -14.0190 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 48 L -13.9231 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 49 y -0.3431 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 50 ‘ -14.0947 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 51 \ -13.3368 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 52 R -15.1435 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 53 < 0.1344 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 54 4 -13.0408 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 55 8 -14.0156 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 56 0 -13.2067 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 57 A -11.7201 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 58 E -14.0718 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 59 B -13.8755 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 60 v -0.2337 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 61 k -15.0861 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 62 J -14.3574 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 63 U -11.9870 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 64 j -11.8660 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 65 ( -14.3092 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 66 7 -11.5578 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 67 § -14.9266 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 68 $ -18.3721 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 69 € -12.7586 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 70 / -15.7843 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 71 C -13.5443 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 72 * -14.1692 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 73 ” -14.2608 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 74 ? -13.0440 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 75 { -14.3222 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 76 } -14.0211 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 77 , 27.2757 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 78 I -12.5071 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 79 ° -16.7151 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 80 K -13.9076 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 81 H -14.1814 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 82 q -1.0001 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 83 & -12.9222 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 84 ’ -14.1684 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 85 [ -11.8089 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 86 - 13.0441 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 87 Y -14.1329 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 88 Q -13.8458 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 89 " -14.2307 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 90 ! -13.8449 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 91 x -0.0594 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 92 ) -14.4361 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 93 = 5.5997 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 94 + 0.7203 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 95 X -13.8921 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 96 » 0.9116 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 97 ' -14.2056 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 98 ¢ -19.2876 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 99 Z -12.6401 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 100 > 0.9755 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 101 ® -15.2078 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 102 © -14.3016 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 103 ] -11.9172 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 104 é -17.4885 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 53 < 19.6667 24.6614 105 z 0.1071 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 106 _ 35.8353 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 53 < 21.3129 26.8538 107 ¥ -10.3482 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 1 t 4.5281 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 2 h -0.9744 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 3 a 14.0094 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 4 n 13.5242 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 5 P -0.2925 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 6 o 13.9618 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 7 e 13.9032 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 8 : 12.6269 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 9 r 13.9167 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 10 l -1.0723 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 11 i 1.9614 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 12 1 0.0195 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 13 | -4.8836 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 14 N -0.0321 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 15 f -1.0693 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 16 g 14.0584 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 17 d -1.0585 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 18 W -0.0210 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 19 s 13.7180 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 20 c 13.7299 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 21 u 13.7651 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 22 3 0.0362 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 23 ~ 18.1517 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 24 # -3.6944 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 25 O 0.2890 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 26 ` -3.5534 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 27 @ -2.1453 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 28 F -0.1867 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 29 S 2.2729 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 30 p 12.8840 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 31 “ -1.1286 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 32 % -2.3852 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 33 £ -0.7107 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 34 . 40.4072 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 35 2 0.1667 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 36 5 0.0327 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 37 m 12.8236 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 38 V -0.0720 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 39 6 -0.0305 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 40 w 14.0871 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 41 T 0.2667 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 42 M 0.0189 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 43 G -0.0170 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 44 b -1.4174 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 45 9 0.0599 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 46 ; 13.0978 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 47 D -0.3634 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 48 L 0.0996 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 49 y 13.8155 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 50 ‘ -1.2918 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 51 \ -0.0551 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 52 R -1.4021 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 53 < 13.2156 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 54 4 0.3584 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 55 8 -1.0001 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 56 0 -0.3071 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 57 A 2.0742 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 58 E 0.0528 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 59 B 0.2912 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 60 v 14.2711 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 61 k -1.0126 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 62 J -0.2356 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 63 U 2.0024 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 64 j 2.2757 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 65 ( -1.5161 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 66 7 1.5112 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 67 § -2.5995 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 68 $ -5.1696 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 69 € 0.0235 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 70 / -2.4034 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 71 C 0.5647 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 72 * -0.9781 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 73 ” -1.4157 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 74 ? 0.2121 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 75 { -1.0531 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 76 } -1.2259 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 77 , 40.3528 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 78 I 1.4723 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 79 ° -3.8332 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 80 K 0.0093 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 81 H 0.0264 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 82 q 12.7844 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 83 & -0.1134 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 84 ’ -0.8862 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 85 [ 1.0748 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 86 - 26.4074 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 87 Y -0.2470 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 88 Q -0.0353 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 89 " -1.1435 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 90 ! -1.1182 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 91 x 13.9924 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 92 ) -1.2670 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 93 = 18.4552 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 94 + 14.0330 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 95 X 0.0742 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 96 » 14.1099 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 97 ' -1.1077 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 98 ¢ -6.1350 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 99 Z 1.4851 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 100 > 13.8150 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 101 ® -2.0039 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 102 © -1.6243 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 103 ] 1.1879 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 104 é -3.6530 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 105 z 13.9115 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 106 _ 48.9277 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 54 4 35.8976 45.4386 107 ¥ 2.7119 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 1 t 6.1053 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 2 h 0.0249 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 3 a 15.1379 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 4 n 14.4557 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 5 P 1.2004 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 6 o 15.2046 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 7 e 15.0940 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 8 : 13.7183 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 9 r 15.0967 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 10 l 0.0806 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 11 i 3.0561 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 12 1 0.8537 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 13 | -3.7870 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 14 N 0.9395 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 15 f 0.1469 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 16 g 15.1815 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 17 d 0.0512 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 18 W 0.9479 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 19 s 15.0255 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 20 c 15.2386 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 21 u 15.0499 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 22 3 0.8911 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 23 ~ 19.2916 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 24 # -2.4253 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 25 O 1.3443 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 26 ` -2.5669 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 27 @ -0.9845 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 28 F 0.9211 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 29 S 3.3609 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 30 p 14.0766 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 31 “ -0.0027 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 32 % -1.4124 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 33 £ 0.5563 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 34 . 41.0403 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 35 2 1.2625 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 36 5 1.2760 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 37 m 13.9310 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 38 V 0.9839 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 39 6 1.2382 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 40 w 15.3394 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 41 T 1.3906 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 42 M 0.9614 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 43 G 1.3632 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 44 b 0.0762 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 45 9 1.4135 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 46 ; 14.4341 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 47 D 0.9611 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 48 L 1.2728 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 49 y 15.1661 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 50 ‘ 0.2695 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 51 \ 1.1091 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 52 R -0.0707 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 53 < 13.9954 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 54 4 1.2114 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 55 8 -0.3035 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 56 0 1.0962 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 57 A 3.7173 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 58 E 1.4737 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 59 B 0.8288 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 60 v 14.9048 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 61 k -0.2289 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 62 J 0.9279 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 63 U 3.1280 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 64 j 3.2644 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 65 ( 0.1418 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 66 7 2.8751 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 67 § -1.4437 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 68 $ -3.8106 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 69 € 1.4761 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 70 / -1.6426 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 71 C 1.5362 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 72 * -0.0936 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 73 ” -0.0011 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 74 ? 0.9470 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 75 { -0.2911 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 76 } -0.1190 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 77 , 41.4863 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 78 I 2.4669 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 79 ° -2.6085 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 80 K 1.1731 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 81 H 1.1192 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 82 q 14.0388 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 83 & 1.1844 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 84 ’ 0.2218 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 85 [ 2.0978 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 86 - 27.7928 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 87 Y 1.1430 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 88 Q 1.0427 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 89 " -0.3449 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 90 ! -0.0055 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 91 x 15.2156 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 92 ) -0.1393 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 93 = 19.7558 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 94 + 15.0706 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 95 X 1.1603 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 96 » 14.9993 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 97 ' -0.0111 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 98 ¢ -4.9704 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 99 Z 2.6250 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 100 > 15.1105 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 101 ® -0.4355 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 102 © -0.4484 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 103 ] 2.3155 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 104 é -2.6435 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 105 z 15.1853 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 106 _ 49.7790 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 55 8 32.1666 47.6310 107 ¥ 3.6404 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 1 t 4.4534 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 2 h -1.3327 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 3 a 13.9063 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 4 n 13.3142 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 5 P 0.0119 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 6 o 14.0253 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 7 e 14.1301 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 8 : 12.6958 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 9 r 13.9258 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 10 l -1.0395 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 11 i 1.6755 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 12 1 -0.0578 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 13 | -4.4788 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 14 N -0.1119 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 15 f -1.3894 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 16 g 14.0014 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 17 d -0.8072 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 18 W 0.1924 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 19 s 14.0742 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 20 c 14.0714 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 21 u 14.0111 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 22 3 -0.1093 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 23 ~ 17.9760 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 24 # -3.6681 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 25 O 0.2187 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 26 ` -3.2639 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 27 @ -2.4381 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 28 F 0.4129 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 29 S 1.7998 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 30 p 12.8153 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 31 “ -1.1573 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 32 % -2.8025 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 33 £ -0.8584 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 34 . 40.3846 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 35 2 0.1534 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 36 5 -0.0427 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 37 m 12.7857 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 38 V -0.1960 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 39 6 0.0714 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 40 w 13.9258 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 41 T 0.2741 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 42 M 0.0477 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 43 G 0.0064 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 44 b -1.3505 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 45 9 0.1763 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 46 ; 13.1122 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 47 D -0.1961 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 48 L 0.0714 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 49 y 14.1690 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 50 ‘ -1.4164 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 51 \ -0.2508 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 52 R -0.9904 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 53 < 13.1081 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 54 4 0.0140 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 55 8 -1.1220 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 56 0 0.1049 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 57 A 2.3840 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 58 E 0.1891 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 59 B 0.0583 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 60 v 14.1591 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 61 k -1.3051 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 62 J 0.1329 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 63 U 2.1081 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 64 j 2.2026 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 65 ( -1.2327 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 66 7 1.4778 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 67 § -2.5107 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 68 $ -5.1119 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 69 € 0.1470 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 70 / -2.5495 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 71 C 0.4511 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 72 * -1.1800 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 73 ” -1.0553 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 74 ? -0.1223 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 75 { -1.0769 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 76 } -1.1105 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 77 , 40.6270 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 78 I 1.5549 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 79 ° -3.7502 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 80 K -0.1496 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 81 H 0.0473 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 82 q 12.8398 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 83 & -0.1298 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 84 ’ -1.0098 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 85 [ 1.3732 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 86 - 26.3792 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 87 Y 0.1536 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 88 Q -0.1437 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 89 " -1.3335 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 90 ! -1.3510 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 91 x 13.8132 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 92 ) -1.0450 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 93 = 18.8223 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 94 + 13.7700 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 95 X 0.1046 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 96 » 14.3583 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 97 ' -1.2291 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 98 ¢ -6.2661 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 99 Z 1.5984 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 100 > 14.0166 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 101 ® -1.9603 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 102 © -1.1224 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 103 ] 1.0477 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 104 é -3.5827 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 105 z 13.7460 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 106 _ 48.9120 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 56 0 33.3128 45.4386 107 ¥ 2.7704 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 1 t 2.6926 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 2 h -3.6846 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 3 a 11.8344 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 4 n 10.7441 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 5 P -2.5186 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 6 o 11.9259 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 7 e 11.8739 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 8 : 10.3504 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 9 r 11.4543 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 10 l -3.5176 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 11 i -0.3749 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 12 1 -2.3410 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 13 | -7.1677 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 14 N -2.2634 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 15 f -3.2798 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 16 g 11.4595 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 17 d -3.5406 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 18 W -2.2702 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 19 s 11.9828 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 20 c 11.6286 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 21 u 11.7611 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 22 3 -2.2643 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 23 ~ 15.5123 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 24 # -5.6316 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 25 O -2.2578 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 26 ` -5.9584 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 27 @ -4.3161 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 28 F -2.0682 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 29 S -0.1440 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 30 p 10.7760 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 31 “ -3.5809 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 32 % -4.9678 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 33 £ -2.7544 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 34 . 37.7449 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 35 2 -2.2726 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 36 5 -2.4336 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 37 m 10.3714 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 38 V -2.4122 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 39 6 -2.2472 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 40 w 11.8234 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 41 T -2.2320 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 42 M -2.0091 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 43 G -2.2542 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 44 b -3.4382 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 45 9 -2.0662 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 46 ; 10.8345 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 47 D -2.6740 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 48 L -2.4079 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 49 y 11.5298 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 50 ‘ -3.3577 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 51 \ -1.9883 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 52 R -3.1655 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 53 < 11.5458 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 54 4 -2.5544 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 55 8 -3.5434 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 56 0 -2.1436 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 57 A -0.1274 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 58 E -2.1260 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 59 B -2.3561 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 60 v 11.4592 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 61 k -3.4992 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 62 J -2.3368 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 63 U 0.1813 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 64 j -0.3353 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 65 ( -3.5890 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 66 7 -0.8426 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 67 § -4.6709 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 68 $ -7.2618 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 69 € -1.7659 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 70 / -4.8513 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 71 C -1.9766 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 72 * -3.5426 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 73 ” -3.5045 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 74 ? -2.0716 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 75 { -3.7079 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 76 } -3.4529 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 77 , 38.0403 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 78 I -0.7543 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 79 ° -5.8275 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 80 K -2.3678 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 81 H -2.3963 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 82 q 10.4299 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 83 & -2.2979 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 84 ’ -3.6288 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 85 [ -1.1697 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 86 - 23.9880 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 87 Y -1.9999 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 88 Q -2.0665 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 89 " -3.2863 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 90 ! -3.4585 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 91 x 11.7762 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 92 ) -3.7983 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 93 = 16.3458 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 94 + 11.7305 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 95 X -2.5800 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 96 » 11.7709 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 97 ' -3.3181 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 98 ¢ -8.3452 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 99 Z -1.2494 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 100 > 10.4629 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 101 ® -4.3978 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 102 © -3.6775 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 103 ] -0.6616 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 104 é -6.0736 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 105 z 11.4851 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 106 _ 46.5952 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 57 A 36.9438 44.2924 107 ¥ 0.3059 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 1 t 4.9654 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 2 h -1.1047 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 3 a 13.8749 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 4 n 13.1561 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 5 P -0.2068 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 6 o 14.2803 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 7 e 13.8262 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 8 : 12.4414 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 9 r 13.9063 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 10 l -1.0808 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 11 i 1.9854 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 12 1 -0.1285 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 13 | -4.9745 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 14 N 0.3178 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 15 f -1.2233 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 16 g 13.7953 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 17 d -1.1755 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 18 W 0.2231 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 19 s 13.7100 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 20 c 13.8489 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 21 u 14.2832 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 22 3 0.0552 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 23 ~ 17.9400 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 24 # -3.4059 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 25 O -0.0223 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 26 ` -3.7187 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 27 @ -2.4458 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 28 F -0.0079 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 29 S 2.0981 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 30 p 12.8085 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 31 “ -1.2017 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 32 % -2.3256 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 33 £ -0.4976 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 34 . 40.3984 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 35 2 -0.1236 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 36 5 0.1905 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 37 m 12.8614 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 38 V 0.1381 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 39 6 0.1988 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 40 w 14.0392 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 41 T 0.3098 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 42 M 0.0560 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 43 G 0.0038 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 44 b -1.0618 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 45 9 0.1710 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 46 ; 13.1962 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 47 D 0.0949 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 48 L -0.3039 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 49 y 14.2917 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 50 ‘ -1.1475 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 51 \ 0.0682 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 52 R -1.4442 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 53 < 14.1242 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 54 4 0.1163 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 55 8 -0.7701 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 56 0 -0.0298 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 57 A 2.4704 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 58 E 0.0284 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 59 B -0.0824 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 60 v 14.0297 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 61 k -0.9342 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 62 J -0.4163 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 63 U 2.0099 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 64 j 2.2341 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 65 ( -1.0104 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 66 7 1.4176 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 67 § -2.4452 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 68 $ -4.9379 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 69 € 0.4957 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 70 / -2.7838 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 71 C 0.2574 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 72 * -1.2484 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 73 ” -1.3208 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 74 ? 0.1266 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 75 { -1.1077 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 76 } -1.0743 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 77 , 40.1063 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 78 I 1.2583 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 79 ° -3.4776 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 80 K -0.0682 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 81 H 0.2182 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 82 q 12.7542 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 83 & 0.1484 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 84 ’ -0.8946 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 85 [ 0.9097 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 86 - 26.5010 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 87 Y -0.2869 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 88 Q -0.2550 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 89 " -1.4961 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 90 ! -1.1736 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 91 x 13.9318 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 92 ) -1.1764 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 93 = 18.5859 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 94 + 13.9407 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 95 X 0.2128 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 96 » 14.0233 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 97 ' -1.1300 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 98 ¢ -6.0317 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 99 Z 1.7115 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 100 > 13.0679 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 101 ® -2.1638 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 102 © -1.3651 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 103 ] 0.7985 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 104 é -3.4574 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 105 z 14.1052 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 106 _ 48.7193 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 58 E 31.6919 47.0628 107 ¥ 2.5521 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 1 t 5.0045 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 2 h -1.1197 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 3 a 14.1139 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 4 n 12.9780 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 5 P 0.3419 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 6 o 14.0131 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 7 e 14.1064 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 8 : 12.2126 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 9 r 13.8203 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 10 l -1.3705 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 11 i 1.9075 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 12 1 -0.2850 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 13 | -4.5386 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 14 N 0.1269 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 15 f -1.1800 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 16 g 13.8117 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 17 d -0.9993 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 18 W -0.4650 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 19 s 13.9167 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 20 c 13.9317 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 21 u 14.2535 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 22 3 0.0224 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 23 ~ 18.1107 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 24 # -3.2874 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 25 O -0.2716 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 26 ` -3.6184 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 27 @ -2.3036 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 28 F 0.0742 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 29 S 2.4585 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 30 p 12.9252 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 31 “ -1.5226 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 32 % -2.6309 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 33 £ -0.4171 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 34 . 40.2266 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 35 2 0.0504 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 36 5 -0.1932 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 37 m 12.7705 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 38 V 0.0801 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 39 6 -0.0714 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 40 w 13.9234 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 41 T 0.4229 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 42 M -0.0840 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 43 G -0.4995 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 44 b -0.8778 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 45 9 0.3834 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 46 ; 13.1658 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 47 D 0.1442 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 48 L -0.0552 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 49 y 14.1925 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 50 ‘ -1.1497 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 51 \ -0.0465 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 52 R -1.1462 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 53 < 13.9854 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 54 4 -0.0825 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 55 8 -1.1375 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 56 0 0.1683 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 57 A 2.2210 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 58 E 0.2333 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 59 B -0.0125 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 60 v 14.0155 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 61 k -1.5269 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 62 J -0.0395 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 63 U 2.2899 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 64 j 2.0436 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 65 ( -1.2011 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 66 7 1.4176 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 67 § -2.2892 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 68 $ -4.8757 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 69 € 0.5888 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 70 / -2.7701 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 71 C 0.3708 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 72 * -1.1105 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 73 ” -1.1827 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 74 ? -0.0444 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 75 { -1.1874 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 76 } -1.2601 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 77 , 40.3284 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 78 I 1.3556 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 79 ° -3.7132 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 80 K 0.0524 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 81 H 0.0100 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 82 q 12.9766 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 83 & 0.1932 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 84 ’ -1.1670 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 85 [ 1.0196 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 86 - 26.5318 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 87 Y 0.0853 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 88 Q 0.2370 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 89 " -1.0551 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 90 ! -1.2943 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 91 x 13.8907 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 92 ) -1.3326 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 93 = 18.8500 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 94 + 13.8854 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 95 X -0.4895 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 96 » 13.8187 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 97 ' -1.0141 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 98 ¢ -6.2709 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 99 Z 1.7278 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 100 > 13.1322 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 101 ® -2.0545 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 102 © -1.5751 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 103 ] 1.0791 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 104 é -3.3346 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 105 z 13.7765 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 106 _ 48.9350 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 59 B 32.2666 45.4386 107 ¥ 2.7241 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 1 t -9.3873 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 2 h -15.1137 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 3 a -0.3171 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 4 n -0.8879 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 5 P -13.5782 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 6 o 0.1413 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 7 e -0.1274 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 8 : -1.4133 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 9 r 0.1423 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 10 l -14.8448 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 11 i -12.1826 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 12 1 -14.1510 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 13 | -18.9486 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 14 N -14.1266 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 15 f -15.1348 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 16 g 0.0599 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 17 d -15.0150 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 18 W -14.0076 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 19 s -0.0614 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 20 c -0.2370 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 21 u 0.1396 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 22 3 -14.0242 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 23 ~ 3.9710 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 24 # -17.6484 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 25 O -14.1134 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 26 ` -17.7458 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 27 @ -16.5328 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 28 F -14.2345 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 29 S -11.5298 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 30 p -1.0612 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 31 “ -15.2950 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 32 % -16.6690 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 33 £ -14.6932 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 34 . 25.9331 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 35 2 -14.2858 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 36 5 -13.7443 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 37 m -1.3120 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 38 V -14.1104 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 39 6 -14.3967 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 40 w -0.2289 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 41 T -13.5720 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 42 M -14.0617 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 43 G -14.0014 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 44 b -15.2138 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 45 9 -13.9745 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 46 ; -0.6961 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 47 D -14.0714 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 48 L -13.9167 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 49 y -0.1651 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 50 ‘ -15.2309 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 51 \ -13.9970 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 52 R -15.4823 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 53 < 0.0472 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 54 4 -14.3335 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 55 8 -15.1454 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 56 0 -14.0357 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 57 A -11.7655 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 58 E -14.1733 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 59 B -14.0195 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 60 v -0.0888 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 61 k -15.4710 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 62 J -13.9694 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 63 U -11.8627 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 64 j -11.9727 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 65 ( -15.0716 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 66 7 -12.5894 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 67 § -16.0822 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 68 $ -19.1598 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 69 € -13.7096 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 70 / -16.5925 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 71 C -13.8362 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 72 * -14.9482 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 73 ” -15.1101 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 74 ? -13.6764 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 75 { -15.0109 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 76 } -14.7677 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 77 , 26.1857 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 78 I -12.5602 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 79 ° -17.7355 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 80 K -14.0319 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 81 H -14.0969 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 82 q -1.2204 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 83 & -14.1266 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 84 ’ -15.2036 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 85 [ -12.8028 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 86 - 12.4628 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 87 Y -13.8658 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 88 Q -13.8317 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 89 " -15.1188 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 90 ! -14.9756 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 91 x 0.0395 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 92 ) -15.0410 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 93 = 4.8381 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 94 + -0.2931 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 95 X -14.0732 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 96 » 0.1983 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 97 ' -15.1213 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 98 ¢ -20.2387 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 99 Z -12.6047 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 100 > -0.6503 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 101 ® -15.8075 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 102 © -15.5687 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 103 ] -13.1928 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 104 é -17.3568 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 105 z 0.1988 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 106 _ 34.9320 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 60 v 28.3857 31.4386 107 ¥ -11.2915 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 1 t 5.8890 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 2 h 0.2526 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 3 a 15.1643 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 4 n 14.3300 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 5 P 0.9783 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 6 o 15.1807 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 7 e 15.1619 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 8 : 13.6924 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 9 r 15.2033 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 10 l -0.3356 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 11 i 3.1600 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 12 1 1.2204 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 13 | -3.5275 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 14 N 1.2673 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 15 f -0.0695 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 16 g 15.2009 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 17 d -0.1763 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 18 W 0.9530 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 19 s 15.1684 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 20 c 15.2950 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 21 u 15.1445 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 22 3 1.2633 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 23 ~ 19.5675 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 24 # -2.4949 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 25 O 1.2101 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 26 ` -2.4670 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 27 @ -0.8846 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 28 F 1.4020 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 29 S 3.4624 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 30 p 14.2353 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 31 “ -0.0266 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 32 % -1.0823 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 33 £ 0.7143 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 34 . 41.0999 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 35 2 1.2528 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 36 5 1.1907 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 37 m 14.0008 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 38 V 1.1077 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 39 6 0.9603 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 40 w 15.1260 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 41 T 1.1968 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 42 M 0.7260 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 43 G 1.2153 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 44 b -0.0217 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 45 9 1.0161 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 46 ; 14.5863 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 47 D 1.0219 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 48 L 1.2255 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 49 y 15.2041 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 50 ‘ 0.1678 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 51 \ 1.1295 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 52 R -0.1478 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 53 < 15.1722 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 54 4 1.1847 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 55 8 -0.0932 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 56 0 1.0001 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 57 A 3.5628 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 58 E 1.2274 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 59 B 0.8954 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 60 v 14.9065 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 61 k 0.0455 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 62 J 1.1792 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 63 U 3.1743 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 64 j 3.4687 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 65 ( -0.0222 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 66 7 2.6856 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 67 § -1.1186 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 68 $ -4.0241 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 69 € 1.4921 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 70 / -1.5997 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 71 C 1.4871 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 72 * 0.0135 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 73 ” -0.1040 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 74 ? 1.0466 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 75 { 0.1658 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 76 } -0.0385 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 77 , 41.2517 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 78 I 2.4399 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 79 ° -2.5690 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 80 K 0.8828 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 81 H 0.9589 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 82 q 13.7145 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 83 & 0.7915 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 84 ’ 0.0676 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 85 [ 2.3015 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 86 - 27.8079 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 87 Y 1.6517 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 88 Q 1.1896 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 89 " -0.2062 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 90 ! -0.1580 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 91 x 14.9709 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 92 ) -0.0406 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 93 = 19.4995 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 94 + 14.8720 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 95 X 1.1343 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 96 » 15.1704 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 97 ' -0.0385 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 98 ¢ -5.0343 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 99 Z 2.5308 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 100 > 14.0159 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 101 ® -0.9564 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 102 © -0.2714 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 103 ] 2.2429 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 104 é -2.6367 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 105 z 15.0515 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 106 _ 49.6702 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 61 k 28.8539 46.5848 107 ¥ 3.9323 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 1 t 4.5535 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 2 h -1.0720 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 3 a 14.1065 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 4 n 13.3962 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 5 P 0.1262 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 6 o 14.0333 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 7 e 13.6095 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 8 : 12.8582 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 9 r 14.1770 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 10 l -1.2777 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 11 i 1.9309 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 12 1 -0.0286 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 13 | -4.9332 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 14 N -0.3474 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 15 f -0.9868 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 16 g 13.7750 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 17 d -0.9117 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 18 W -0.1561 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 19 s 14.1204 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 20 c 13.8895 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 21 u 13.9289 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 22 3 0.0254 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 23 ~ 17.9642 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 24 # -3.6211 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 25 O -0.0701 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 26 ` -3.6303 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 27 @ -2.3028 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 28 F -0.0806 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 29 S 2.2397 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 30 p 13.0332 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 31 “ -0.9554 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 32 % -2.5802 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 33 £ -0.8314 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 34 . 39.8763 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 35 2 -0.0976 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 36 5 -0.0742 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 37 m 12.8860 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 38 V -0.2540 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 39 6 0.1853 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 40 w 14.0833 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 41 T 0.4526 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 42 M -0.0909 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 43 G 0.0166 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 44 b -1.0795 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 45 9 -0.0195 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 46 ; 13.2832 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 47 D 0.1736 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 48 L -0.0903 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 49 y 13.9643 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 50 ‘ -1.1025 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 51 \ 0.1003 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 52 R -1.0567 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 53 < 14.1269 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 54 4 0.1885 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 55 8 -1.1303 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 56 0 -0.1266 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 57 A 2.3036 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 58 E -0.1274 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 59 B 0.0766 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 60 v 14.2396 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 61 k -1.4408 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 62 J 0.2655 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 63 U 1.9137 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 64 j 2.3286 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 65 ( -1.1575 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 66 7 1.6184 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 67 § -2.4818 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 68 $ -4.7518 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 69 € 0.2852 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 70 / -2.3636 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 71 C 0.4914 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 72 * -1.0133 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 73 ” -0.9992 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 74 ? -0.1315 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 75 { -1.2771 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 76 } -1.4710 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 77 , 40.4497 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 78 I 1.1820 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 79 ° -3.5429 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 80 K -0.0955 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 81 H 0.3268 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 82 q 12.7812 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 83 & 0.0195 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 84 ’ -1.0357 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 85 [ 1.0813 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 86 - 26.5454 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 87 Y 0.0506 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 88 Q -0.2075 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 89 " -1.0817 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 90 ! -1.0597 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 91 x 14.0909 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 92 ) -1.2161 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 93 = 18.4699 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 94 + 13.9543 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 95 X -0.1721 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 96 » 13.9129 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 97 ' -1.0284 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 98 ¢ -6.1361 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 99 Z 1.6338 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 100 > 12.9542 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 101 ® -1.9203 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 102 © -1.3338 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 103 ] 1.3140 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 104 é -3.6114 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 105 z 13.8924 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 106 _ 48.7214 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 62 J 37.1696 47.6310 107 ¥ 2.6184 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 1 t 2.7718 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 2 h -3.1575 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 3 a 12.0377 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 4 n 11.2310 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 5 P -2.0615 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 6 o 11.9635 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 7 e 12.2158 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 8 : 10.4439 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 9 r 11.7243 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 10 l -3.4226 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 11 i -0.4110 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 12 1 -2.0472 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 13 | -7.0242 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 14 N -2.2274 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 15 f -3.3192 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 16 g 12.1717 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 17 d -3.1200 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 18 W -2.1092 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 19 s 11.7917 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 20 c 11.8139 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 21 u 11.9382 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 22 3 -1.9202 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 23 ~ 15.9261 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 24 # -5.2829 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 25 O -2.0634 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 26 ` -5.7444 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 27 @ -4.5300 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 28 F -2.2153 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 29 S 0.3321 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 30 p 10.2073 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 31 “ -3.1889 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 32 % -5.1443 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 33 £ -2.4575 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 34 . 38.0606 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 35 2 -2.5671 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 36 5 -2.2355 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 37 m 10.8325 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 38 V -2.0283 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 39 6 -2.0337 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 40 w 11.8394 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 41 T -1.6417 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 42 M -1.8384 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 43 G -2.2826 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 44 b -3.1566 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 45 9 -2.2213 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 46 ; 10.6623 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 47 D -2.2762 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 48 L -1.9521 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 49 y 12.0762 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 50 ‘ -3.4504 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 51 \ -2.2185 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 52 R -3.2116 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 53 < 11.9111 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 54 4 -2.2970 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 55 8 -2.9851 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 56 0 -2.1984 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 57 A 0.2535 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 58 E -2.1883 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 59 B -2.3733 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 60 v 11.9272 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 61 k -3.1784 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 62 J -1.8162 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 63 U -0.0952 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 64 j -0.3159 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 65 ( -3.4271 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 66 7 -0.9543 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 67 § -4.1521 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 68 $ -7.0500 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 69 € -1.7106 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 70 / -5.0382 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 71 C -1.8567 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 72 * -3.5408 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 73 ” -3.6869 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 74 ? -2.3773 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 75 { -3.2542 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 76 } -3.7715 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 77 , 38.1945 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 78 I -0.5010 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 79 ° -5.4934 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 80 K -2.3197 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 81 H -2.1569 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 82 q 10.6760 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 83 & -2.2382 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 84 ’ -3.2182 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 85 [ -0.7132 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 86 - 24.5836 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 87 Y -2.1833 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 88 Q -2.3276 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 89 " -3.0696 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 90 ! -3.1912 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 91 x 12.0147 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 92 ) -3.0958 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 93 = 16.7753 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 94 + 11.7967 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 95 X -1.8750 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 96 » 11.7917 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 97 ' -3.3386 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 98 ¢ -8.3282 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 99 Z -0.5777 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 100 > 10.9578 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 101 ® -4.2709 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 102 © -3.3357 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 103 ] -1.0304 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 104 é -5.8036 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 105 z 11.8234 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 106 _ 46.7590 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 63 U 38.0834 44.3924 107 ¥ 0.6843 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 1 t 2.4036 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 2 h -3.5767 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 3 a 11.9425 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 4 n 10.9592 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 5 P -2.0928 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 6 o 11.8845 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 7 e 11.8838 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 8 : 9.9098 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 9 r 11.8493 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 10 l -2.9716 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 11 i -0.2468 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 12 1 -2.1107 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 13 | -7.1483 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 14 N -1.9857 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 15 f -3.2827 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 16 g 11.8392 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 17 d -3.3229 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 18 W -2.2091 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 19 s 11.7719 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 20 c 11.5663 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 21 u 11.6131 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 22 3 -2.3663 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 23 ~ 16.0702 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 24 # -5.5970 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 25 O -2.6721 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 26 ` -5.7481 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 27 @ -4.2222 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 28 F -1.9865 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 29 S 0.3270 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 30 p 10.6400 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 31 “ -3.3446 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 32 % -4.7213 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 33 £ -2.7373 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 34 . 37.8208 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 35 2 -2.2958 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 36 5 -2.0246 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 37 m 10.6414 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 38 V -2.2888 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 39 6 -2.3435 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 40 w 11.6728 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 41 T -1.8008 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 42 M -2.1301 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 43 G -2.2026 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 44 b -3.3573 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 45 9 -2.0455 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 46 ; 10.5888 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 47 D -2.1808 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 48 L -2.1795 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 49 y 11.8076 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 50 ‘ -3.3386 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 51 \ -2.0872 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 52 R -3.3129 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 53 < 11.5401 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 54 4 -2.1410 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 55 8 -3.1110 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 56 0 -2.2169 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 57 A 0.2141 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 58 E -2.4376 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 59 B -2.2383 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 60 v 11.8520 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 61 k -3.4300 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 62 J -2.3510 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 63 U 0.0186 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 64 j -0.0972 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 65 ( -3.4512 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 66 7 -0.8046 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 67 § -4.5888 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 68 $ -7.2104 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 69 € -2.0104 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 70 / -4.8942 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 71 C -1.7695 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 72 * -3.3191 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 73 ” -3.4247 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 74 ? -2.3992 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 75 { -3.6158 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 76 } -3.4977 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 77 , 38.0651 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 78 I -0.5832 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 79 ° -5.8020 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 80 K -2.2105 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 81 H -2.2568 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 82 q 10.7856 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 83 & -2.1056 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 84 ’ -3.3375 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 85 [ -0.8574 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 86 - 24.2255 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 87 Y -2.1962 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 88 Q -2.3425 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 89 " -3.4160 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 90 ! -3.3456 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 91 x 11.7430 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 92 ) -3.5881 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 93 = 16.8799 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 94 + 11.8587 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 95 X -2.3115 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 96 » 11.9591 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 97 ' -3.4167 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 98 ¢ -8.3052 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 99 Z -0.6817 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 100 > 10.6987 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 101 ® -3.9622 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 102 © -3.8097 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 103 ] -0.8259 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 104 é -5.7648 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 105 z 11.7719 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 106 _ 46.3656 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 64 j 21.8910 57.9742 107 ¥ 0.9066 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 1 t 5.6226 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 2 h -0.1104 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 3 a 15.0525 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 4 n 14.2572 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 5 P 1.3789 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 6 o 15.1641 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 7 e 14.9451 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 8 : 13.4242 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 9 r 15.2920 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 10 l -0.0412 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 11 i 3.1650 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 12 1 0.9460 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 13 | -3.6985 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 14 N 1.0391 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 15 f -0.1964 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 16 g 15.3540 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 17 d 0.0746 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 18 W 0.8478 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 19 s 15.0130 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 20 c 14.8827 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 21 u 14.7430 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 22 3 1.3966 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 23 ~ 19.2128 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 24 # -2.6911 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 25 O 1.1295 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 26 ` -2.4897 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 27 @ -1.0906 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 28 F 1.5073 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 29 S 3.4588 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 30 p 14.0912 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 31 “ 0.2359 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 32 % -1.5943 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 33 £ 0.6581 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 34 . 41.1383 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 35 2 1.1018 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 36 5 1.2485 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 37 m 13.9199 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 38 V 1.1574 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 39 6 1.0935 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 40 w 15.2004 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 41 T 1.4120 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 42 M 0.8513 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 43 G 1.1397 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 44 b 0.0616 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 45 9 0.9094 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 46 ; 14.1350 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 47 D 1.3085 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 48 L 1.0720 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 49 y 15.0550 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 50 ‘ 0.0941 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 51 \ 1.2648 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 52 R 0.0176 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 53 < 14.1406 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 54 4 1.1091 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 55 8 0.1154 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 56 0 1.1679 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 57 A 3.5157 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 58 E 1.2593 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 59 B 1.1382 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 60 v 15.1487 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 61 k -0.1131 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 62 J 1.3010 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 63 U 3.2029 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 64 j 3.3084 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 65 ( -0.4216 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 66 7 2.5527 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 67 § -0.8570 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 68 $ -3.7834 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 69 € 1.5275 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 70 / -1.5577 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 71 C 1.1692 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 72 * 0.0552 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 73 ” -0.5087 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 74 ? 1.1184 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 75 { 0.1683 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 76 } -0.0080 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 77 , 41.5883 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 78 I 2.9183 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 79 ° -2.4341 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 80 K 1.3460 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 81 H 1.2020 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 82 q 14.0857 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 83 & 1.4474 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 84 ’ 0.0139 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 85 [ 2.4992 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 86 - 27.5779 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 87 Y 1.1050 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 88 Q 1.1819 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 89 " -0.0714 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 90 ! -0.0083 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 91 x 15.1164 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 92 ) 0.0885 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 93 = 19.8462 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 94 + 15.1342 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 95 X 1.2599 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 96 » 15.0877 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 97 ' 0.0444 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 98 ¢ -4.9401 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 99 Z 2.9189 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 100 > 15.3116 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 101 ® -0.9815 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 102 © -0.6269 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 103 ] 2.4824 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 104 é -2.3708 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 105 z 15.0545 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 106 _ 49.9746 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 65 ( 18.8705 57.8144 107 ¥ 4.0265 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 1 t 3.3327 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 2 h -2.7950 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 3 a 12.4915 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 4 n 11.6449 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 5 P -1.6191 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 6 o 12.7653 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 7 e 12.5579 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 8 : 10.9105 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 9 r 12.5614 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 10 l -2.8502 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 11 i 0.5792 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 12 1 -1.2335 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 13 | -6.0673 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 14 N -1.5247 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 15 f -2.7056 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 16 g 12.6203 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 17 d -2.4712 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 18 W -1.5345 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 19 s 12.6149 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 20 c 12.7967 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 21 u 12.3589 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 22 3 -1.4203 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 23 ~ 16.6430 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 24 # -4.9036 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 25 O -1.6993 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 26 ` -4.8899 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 27 @ -3.7699 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 28 F -1.5680 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 29 S 0.8561 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 30 p 11.3865 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 31 “ -2.9423 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 32 % -3.8339 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 33 £ -1.9552 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 34 . 38.4338 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 35 2 -1.3536 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 36 5 -1.4342 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 37 m 11.4149 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 38 V -1.5672 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 39 6 -1.5921 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 40 w 12.5190 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 41 T -1.3789 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 42 M -1.3402 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 43 G -1.5684 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 44 b -2.6732 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 45 9 -1.6092 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 46 ; 11.5782 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 47 D -1.3310 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 48 L -1.5124 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 49 y 12.5053 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 50 ‘ -2.7772 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 51 \ -1.3346 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 52 R -2.7235 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 53 < 11.2768 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 54 4 -1.4063 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 55 8 -2.5352 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 56 0 -1.5323 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 57 A 0.9777 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 58 E -1.2531 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 59 B -1.5683 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 60 v 12.4458 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 61 k -2.5387 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 62 J -1.4454 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 63 U 0.5427 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 64 j 0.9524 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 65 ( -2.4958 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 66 7 -0.1401 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 67 § -3.7961 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 68 $ -6.0903 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 69 € -0.9935 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 70 / -4.0019 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 71 C -1.0573 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 72 * -2.6786 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 73 ” -2.5435 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 74 ? -1.2855 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 75 { -2.6351 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 76 } -2.8874 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 77 , 39.1015 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 78 I -0.3922 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 79 ° -5.2075 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 80 K -1.3397 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 81 H -1.4671 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 82 q 11.4311 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 83 & -1.3581 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 84 ’ -2.6397 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 85 [ -0.3098 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 86 - 24.9292 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 87 Y -1.4454 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 88 Q -1.2041 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 89 " -2.6764 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 90 ! -2.7153 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 91 x 12.4943 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 92 ) -2.7395 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 93 = 17.4196 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 94 + 12.7124 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 95 X -1.3489 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 96 » 12.4088 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 97 ' -2.3114 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 98 ¢ -7.6397 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 99 Z 0.2383 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 100 > 12.7190 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 101 ® -3.5325 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 102 © -2.6878 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 103 ] -0.3504 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 104 é -5.0749 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 105 z 12.6518 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 106 _ 47.3180 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 66 7 34.4590 43.9826 107 ¥ 1.3094 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 1 t 7.2859 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 2 h 1.2400 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 3 a 16.0755 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 4 n 15.6715 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 5 P 2.5522 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 6 o 16.5329 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 7 e 16.4908 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 8 : 14.7102 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 9 r 16.2003 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 10 l 0.9946 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 11 i 4.0176 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 12 1 2.2098 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 13 | -2.5855 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 14 N 2.1871 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 15 f 0.9706 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 16 g 16.5440 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 17 d 1.5045 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 18 W 2.3162 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 19 s 16.2252 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 20 c 16.5718 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 21 u 16.2833 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 22 3 2.6226 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 23 ~ 20.1245 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 24 # -1.1984 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 25 O 2.1828 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 26 ` -1.5738 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 27 @ -0.2091 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 28 F 2.2650 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 29 S 4.4017 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 30 p 15.0272 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 31 “ 0.9557 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 32 % -0.3596 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 33 £ 1.8503 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 34 . 42.3684 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 35 2 2.0409 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 36 5 2.1668 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 37 m 15.4814 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 38 V 2.4065 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 39 6 1.9147 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 40 w 16.3666 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 41 T 2.7951 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 42 M 1.9666 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 43 G 2.3281 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 44 b 1.1410 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 45 9 2.2392 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 46 ; 15.3759 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 47 D 2.1559 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 48 L 2.2837 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 49 y 16.3055 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 50 ‘ 1.2555 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 51 \ 2.1798 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 52 R 0.7593 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 53 < 15.2265 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 54 4 2.2719 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 55 8 0.9130 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 56 0 2.0835 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 57 A 4.6812 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 58 E 2.1881 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 59 B 2.1694 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 60 v 16.3971 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 61 k 1.1406 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 62 J 2.2724 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 63 U 4.5859 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 64 j 4.4854 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 65 ( 1.0986 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 66 7 3.7723 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 67 § 0.0647 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 68 $ -2.7061 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 69 € 2.4011 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 70 / -0.2536 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 71 C 2.5893 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 72 * 1.3437 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 73 ” 1.1609 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 74 ? 2.3757 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 75 { 0.8794 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 76 } 1.1760 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 77 , 43.0126 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 78 I 4.0365 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 79 ° -1.5382 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 80 K 2.4550 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 81 H 2.1504 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 82 q 15.0682 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 83 & 1.9328 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 84 ’ 1.1667 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 85 [ 3.3879 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 86 - 28.9763 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 87 Y 2.0432 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 88 Q 1.9980 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 89 " 0.9257 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 90 ! 1.1819 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 91 x 16.2424 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 92 ) 1.1941 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 93 = 20.8055 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 94 + 16.0497 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 95 X 2.3638 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 96 » 16.4449 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 97 ' 1.2278 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 98 ¢ -3.5515 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 99 Z 3.5580 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 100 > 16.3900 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 101 ® 0.2833 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 102 © 0.8364 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 103 ] 3.5774 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 104 é -1.4353 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 105 z 16.4667 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 106 _ 50.7323 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 67 § 30.1001 48.8772 107 ¥ 4.8561 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 1 t 9.7578 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 2 h 3.9250 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 3 a 18.4831 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 4 n 18.2625 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 5 P 5.0440 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 6 o 18.4618 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 7 e 19.3532 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 8 : 17.5394 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 9 r 18.9826 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 10 l 3.6515 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 11 i 6.6094 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 12 1 5.1144 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 13 | 0.2694 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 14 N 4.7988 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 15 f 3.8047 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 16 g 19.1089 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 17 d 3.9121 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 18 W 4.5997 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 19 s 18.8323 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 20 c 19.1107 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 21 u 19.0303 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 22 3 5.2120 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 23 ~ 22.9938 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 24 # 1.4958 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 25 O 4.8435 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 26 ` 1.1283 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 27 @ 2.8466 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 28 F 5.0867 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 29 S 6.9735 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 30 p 18.0534 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 31 “ 3.9107 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 32 % 2.6713 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 33 £ 4.3470 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 34 . 45.0305 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 35 2 4.9624 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 36 5 5.0021 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 37 m 17.5488 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 38 V 4.8627 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 39 6 4.9953 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 40 w 18.9020 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 41 T 5.3063 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 42 M 4.7602 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 43 G 4.8239 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 44 b 3.8794 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 45 9 4.9271 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 46 ; 18.0371 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 47 D 5.0533 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 48 L 5.0405 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 49 y 19.2251 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 50 ‘ 3.9357 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 51 \ 4.7783 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 52 R 4.0189 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 53 < 18.0036 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 54 4 4.6871 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 55 8 3.6577 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 56 0 5.0235 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 57 A 7.2796 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 58 E 4.9711 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 59 B 4.6956 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 60 v 18.7739 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 61 k 3.6811 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 62 J 4.8303 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 63 U 6.8501 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 64 j 6.9148 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 65 ( 3.8361 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 66 7 6.5732 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 67 § 2.7558 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 68 $ 0.2530 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 69 € 5.0432 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 70 / 2.2177 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 71 C 5.3690 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 72 * 3.8996 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 73 ” 4.2165 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 74 ? 5.0884 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 75 { 3.8739 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 76 } 3.8551 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 77 , 45.2482 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 78 I 6.5066 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 79 ° 1.5044 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 80 K 4.9721 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 81 H 5.3493 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 82 q 17.9829 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 83 & 4.9498 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 84 ’ 3.6483 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 85 [ 6.0955 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 86 - 31.7103 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 87 Y 5.0899 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 88 Q 5.1997 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 89 " 3.8844 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 90 ! 3.5547 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 91 x 19.1149 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 92 ) 3.6540 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 93 = 23.9964 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 94 + 18.6275 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 95 X 4.7776 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 96 » 18.9907 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 97 ' 3.7965 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 98 ¢ -1.0696 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 99 Z 6.3724 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 100 > 18.9691 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 101 ® 3.0687 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 102 © 3.1643 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 103 ] 5.9009 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 104 é 1.3681 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 105 z 18.9069 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 106 _ 53.6589 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 68 $ 36.0811 60.1089 107 ¥ 7.9984 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 1 t 4.4683 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 2 h -1.6666 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 3 a 13.8379 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 4 n 13.1091 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 5 P -0.4670 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 6 o 13.8917 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 7 e 13.7935 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 8 : 11.9251 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 9 r 13.8227 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 10 l -1.3514 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 11 i 1.3939 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 12 1 -0.0695 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 13 | -5.4257 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 14 N -0.2825 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 15 f -1.5502 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 16 g 13.8262 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 17 d -1.3489 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 18 W -0.2357 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 19 s 13.6286 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 20 c 13.6084 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 21 u 13.4691 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 22 3 -0.3840 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 23 ~ 17.5793 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 24 # -3.8701 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 25 O -0.3326 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 26 ` -3.9088 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 27 @ -2.6581 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 28 F -0.4418 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 29 S 2.1830 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 30 p 12.5943 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 31 “ -1.9326 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 32 % -2.8508 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 33 £ -0.7619 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 34 . 39.9735 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 35 2 -0.3325 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 36 5 -0.1058 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 37 m 12.3989 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 38 V -0.4066 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 39 6 -0.3988 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 40 w 13.6944 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 41 T 0.1421 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 42 M -0.1916 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 43 G -0.4386 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 44 b -1.5557 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 45 9 -0.3088 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 46 ; 12.5853 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 47 D -0.1880 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 48 L 0.0008 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 49 y 13.6961 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 50 ‘ -1.2805 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 51 \ -0.5346 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 52 R -1.3329 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 53 < 12.7401 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 54 4 -0.2951 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 55 8 -1.5579 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 56 0 -0.2936 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 57 A 1.6730 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 58 E -0.5260 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 59 B -0.3825 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 60 v 13.8580 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 61 k -1.4883 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 62 J -0.5398 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 63 U 1.5193 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 64 j 1.6975 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 65 ( -1.6246 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 66 7 1.3070 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 67 § -2.5124 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 68 $ -5.2027 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 69 € -0.0826 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 70 / -3.0609 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 71 C -0.2522 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 72 * -1.4950 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 73 ” -1.6280 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 74 ? -0.0115 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 75 { -1.1608 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 76 } -1.2038 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 77 , 40.1205 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 78 I 1.1430 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 79 ° -4.1144 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 80 K -0.0517 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 81 H -0.2914 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 82 q 12.4113 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 83 & -0.3710 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 84 ’ -1.5094 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 85 [ 0.5920 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 86 - 26.3944 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 87 Y 0.0215 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 88 Q -0.1405 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 89 " -1.1766 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 90 ! -1.9802 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 91 x 13.7870 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 92 ) -1.4452 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 93 = 18.4579 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 94 + 13.6108 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 95 X 0.0273 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 96 » 13.4404 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 97 ' -1.0056 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 98 ¢ -6.4439 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 99 Z 1.3055 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 100 > 13.5821 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 101 ® -2.8042 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 102 © -1.9743 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 103 ] 0.7146 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 104 é -3.9807 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 105 z 13.9136 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 106 _ 48.2295 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 69 € 38.6548 45.1288 107 ¥ 2.4256 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 1 t 7.5261 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 2 h 1.4830 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 3 a 16.7094 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 4 n 15.8995 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 5 P 2.6499 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 6 o 16.4879 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 7 e 16.7352 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 8 : 15.0870 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 9 r 16.4554 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 10 l 1.1928 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 11 i 4.7129 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 12 1 2.7278 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 13 | -1.8464 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 14 N 2.5162 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 15 f 1.3370 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 16 g 16.5463 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 17 d 1.3127 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 18 W 2.7175 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 19 s 16.5555 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 20 c 16.4691 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 21 u 16.6959 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 22 3 2.5151 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 23 ~ 20.8413 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 24 # -0.6878 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 25 O 2.3780 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 26 ` -0.9187 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 27 @ 0.0540 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 28 F 2.7300 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 29 S 4.9082 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 30 p 15.2989 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 31 “ 1.6278 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 32 % 0.0349 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 33 £ 2.0113 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 34 . 42.3614 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 35 2 2.7649 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 36 5 2.3668 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 37 m 15.1157 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 38 V 2.4919 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 39 6 2.5925 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 40 w 16.3649 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 41 T 2.9928 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 42 M 2.5801 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 43 G 2.5308 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 44 b 1.2971 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 45 9 2.3306 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 46 ; 15.8204 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 47 D 2.6046 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 48 L 2.7142 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 49 y 16.4372 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 50 ‘ 1.5984 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 51 \ 2.3793 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 52 R 1.4393 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 53 < 15.8120 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 54 4 2.3538 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 55 8 1.3319 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 56 0 2.5950 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 57 A 4.7729 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 58 E 2.4599 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 59 B 2.2067 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 60 v 16.4311 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 61 k 1.6191 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 62 J 2.5428 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 63 U 4.6670 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 64 j 4.5961 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 65 ( 1.4918 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 66 7 3.9803 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 67 § 0.0999 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 68 $ -2.7411 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 69 € 2.8975 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 70 / -0.0111 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 71 C 2.7244 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 72 * 1.6877 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 73 ” 1.2517 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 74 ? 2.5832 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 75 { 1.3937 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 76 } 1.5442 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 77 , 42.9173 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 78 I 4.1390 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 79 ° -0.7574 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 80 K 2.6566 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 81 H 2.4832 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 82 q 15.4171 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 83 & 2.8443 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 84 ’ 1.5529 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 85 [ 4.0149 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 86 - 29.1172 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 87 Y 2.5553 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 88 Q 2.6193 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 89 " 1.5296 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 90 ! 1.6168 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 91 x 16.2662 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 92 ) 1.4717 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 93 = 21.4126 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 94 + 16.5797 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 95 X 2.3790 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 96 » 17.0280 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 97 ' 1.2455 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 98 ¢ -3.6611 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 99 Z 3.8873 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 100 > 16.5828 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 101 ® 0.6535 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 102 © 1.2950 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 103 ] 3.7929 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 104 é -1.2858 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 105 z 16.5068 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 106 _ 51.5707 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 70 / 27.7143 49.4728 107 ¥ 5.5353 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 1 t 4.4349 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 2 h -1.1881 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 3 a 13.8000 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 4 n 13.2138 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 5 P 0.0103 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 6 o 13.4553 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 7 e 13.6766 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 8 : 12.1578 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 9 r 13.6977 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 10 l -1.3513 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 11 i 1.8144 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 12 1 -0.3820 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 13 | -5.0909 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 14 N -0.2541 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 15 f -1.4068 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 16 g 13.5821 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 17 d -1.4743 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 18 W -0.6464 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 19 s 13.5798 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 20 c 13.5411 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 21 u 13.3145 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 22 3 -0.1583 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 23 ~ 17.7592 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 24 # -3.8489 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 25 O -0.1791 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 26 ` -3.9174 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 27 @ -2.7066 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 28 F -0.0440 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 29 S 1.6392 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 30 p 12.6896 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 31 “ -1.6376 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 32 % -2.8816 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 33 £ -0.7856 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 34 . 39.5833 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 35 2 -0.0586 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 36 5 -0.4803 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 37 m 12.6241 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 38 V -0.4717 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 39 6 -0.1648 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 40 w 13.7689 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 41 T 0.1560 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 42 M -0.1282 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 43 G -0.5536 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 44 b -1.4817 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 45 9 -0.3270 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 46 ; 12.7951 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 47 D -0.1333 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 48 L -0.2724 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 49 y 13.6319 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 50 ‘ -1.2215 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 51 \ -0.7408 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 52 R -1.5456 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 53 < 13.3554 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 54 4 -0.1079 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 55 8 -1.3700 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 56 0 -0.4007 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 57 A 1.4063 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 58 E -0.0901 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 59 B -0.4994 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 60 v 13.6842 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 61 k -1.5397 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 62 J -0.2278 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 63 U 1.9114 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 64 j 1.7225 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 65 ( -1.7832 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 66 7 1.1903 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 67 § -2.5074 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 68 $ -5.2303 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 69 € 0.0714 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 70 / -2.9354 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 71 C -0.1718 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 72 * -1.6149 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 73 ” -1.2028 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 74 ? -0.5516 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 75 { -1.4371 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 76 } -1.1859 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 77 , 39.6693 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 78 I 1.2769 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 79 ° -3.8291 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 80 K -0.3965 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 81 H -0.4784 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 82 q 12.4416 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 83 & -0.3848 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 84 ’ -1.2014 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 85 [ 0.9527 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 86 - 26.1786 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 87 Y -0.1155 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 88 Q -0.2692 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 89 " -1.6211 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 90 ! -1.6573 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 91 x 13.6652 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 92 ) -1.4950 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 93 = 18.2585 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 94 + 13.5589 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 95 X -0.3158 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 96 » 13.8844 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 97 ' -1.4334 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 98 ¢ -6.1519 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 99 Z 1.0383 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 100 > 12.8881 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 101 ® -2.2794 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 102 © -1.7691 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 103 ] 0.9589 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 104 é -4.2213 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 105 z 13.9226 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 106 _ 48.1580 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 71 C 34.0167 45.1288 107 ¥ 2.2408 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 1 t 5.9557 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 2 h 0.0811 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 3 a 15.2176 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 4 n 14.6791 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 5 P 1.0539 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 6 o 15.0545 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 7 e 15.3033 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 8 : 13.8707 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 9 r 15.1105 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 10 l 0.1265 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 11 i 3.1163 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 12 1 0.8723 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 13 | -3.6736 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 14 N 0.7750 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 15 f 0.0357 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 16 g 15.0837 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 17 d 0.0392 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 18 W 0.8092 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 19 s 15.0822 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 20 c 15.0626 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 21 u 14.8002 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 22 3 1.3693 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 23 ~ 19.2740 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 24 # -2.5429 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 25 O 1.1197 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 26 ` -2.5128 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 27 @ -1.0581 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 28 F 1.1225 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 29 S 3.3755 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 30 p 13.9800 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 31 “ 0.0709 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 32 % -1.4795 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 33 £ 0.8128 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 34 . 41.1141 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 35 2 1.2260 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 36 5 1.3918 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 37 m 13.6746 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 38 V 0.8456 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 39 6 1.2014 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 40 w 15.2501 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 41 T 1.5632 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 42 M 1.0272 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 43 G 1.2141 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 44 b -0.2071 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 45 9 1.2690 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 46 ; 14.1902 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 47 D 1.0807 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 48 L 1.0304 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 49 y 14.8805 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 50 ‘ 0.1326 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 51 \ 1.4846 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 52 R 0.0509 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 53 < 14.2421 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 54 4 1.1676 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 55 8 0.1780 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 56 0 1.2483 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 57 A 3.4278 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 58 E 1.3135 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 59 B 1.0696 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 60 v 14.9303 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 61 k 0.0412 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 62 J 1.2144 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 63 U 3.3208 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 64 j 3.0794 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 65 ( -0.1418 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 66 7 2.3640 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 67 § -1.1438 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 68 $ -3.9994 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 69 € 1.4954 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 70 / -1.3711 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 71 C 1.2385 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 72 * 0.1873 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 73 ” -0.2998 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 74 ? 1.1929 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 75 { -0.1326 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 76 } 0.1623 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 77 , 41.5057 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 78 I 2.8505 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 79 ° -2.1952 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 80 K 1.2940 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 81 H 1.0748 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 82 q 14.1432 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 83 & 1.0661 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 84 ’ -0.2972 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 85 [ 2.2740 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 86 - 27.7008 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 87 Y 1.1370 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 88 Q 1.0720 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 89 " -0.0704 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 90 ! -0.1955 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 91 x 14.9193 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 92 ) -0.3501 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 93 = 19.8280 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 94 + 15.2016 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 95 X 1.3361 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 96 » 15.4609 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 97 ' -0.1742 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 98 ¢ -4.7262 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 99 Z 2.6321 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 100 > 14.8742 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 101 ® -1.0631 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 102 © -0.0607 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 103 ] 2.0069 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 104 é -2.5763 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 105 z 14.8902 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 106 _ 49.5628 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 72 * 28.3182 23.0372 107 ¥ 3.9110 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 1 t 5.9937 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 2 h -0.1754 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 3 a 14.9779 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 4 n 14.1312 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 5 P 1.0033 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 6 o 14.8635 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 7 e 15.1591 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 8 : 13.7247 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 9 r 15.2047 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 10 l -0.0909 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 11 i 3.1652 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 12 1 1.2439 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 13 | -3.6267 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 14 N 1.3773 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 15 f 0.2701 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 16 g 15.4466 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 17 d -0.0027 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 18 W 1.2926 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 19 s 15.3984 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 20 c 15.3715 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 21 u 15.2763 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 22 3 1.3540 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 23 ~ 19.3616 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 24 # -2.3961 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 25 O 0.9651 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 26 ` -2.5782 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 27 @ -1.0755 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 28 F 1.0462 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 29 S 3.3228 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 30 p 13.7771 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 31 “ 0.2294 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 32 % -1.3053 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 33 £ 0.3166 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 34 . 41.3383 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 35 2 1.0363 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 36 5 1.0875 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 37 m 13.9958 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 38 V 1.0196 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 39 6 1.2390 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 40 w 15.2141 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 41 T 1.6341 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 42 M 1.0493 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 43 G 1.1624 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 44 b -0.2445 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 45 9 1.2022 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 46 ; 14.1790 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 47 D 1.2176 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 48 L 0.9071 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 49 y 15.1269 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 50 ‘ -0.0672 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 51 \ 1.0743 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 52 R -0.2890 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 53 < 14.3143 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 54 4 1.0591 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 55 8 0.0560 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 56 0 1.3498 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 57 A 3.6198 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 58 E 1.1164 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 59 B 1.0196 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 60 v 15.1333 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 61 k -0.4226 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 62 J 1.2379 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 63 U 3.1179 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 64 j 3.2255 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 65 ( 0.0774 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 66 7 2.6820 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 67 § -1.1207 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 68 $ -3.6635 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 69 € 1.4553 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 70 / -1.5700 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 71 C 1.4334 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 72 * 0.1104 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 73 ” 0.0909 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 74 ? 0.8984 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 75 { -0.0777 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 76 } -0.2155 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 77 , 41.6486 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 78 I 2.6000 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 79 ° -2.5955 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 80 K 1.4525 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 81 H 0.9234 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 82 q 13.9591 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 83 & 1.1527 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 84 ’ -0.1516 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 85 [ 2.4050 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 86 - 27.7038 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 87 Y 1.1462 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 88 Q 1.1430 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 89 " -0.2414 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 90 ! -0.1581 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 91 x 15.0910 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 92 ) 0.0000 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 93 = 19.5057 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 94 + 15.0973 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 95 X 1.0494 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 96 » 15.1819 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 97 ' 0.1469 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 98 ¢ -5.0176 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 99 Z 2.4209 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 100 > 15.3460 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 101 ® -0.9869 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 102 © -0.5453 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 103 ] 2.0311 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 104 é -2.6000 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 105 z 15.1462 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 106 _ 49.6533 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 73 ” 22.3333 15.1462 107 ¥ 4.0838 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 1 t 4.8030 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 2 h -1.1930 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 3 a 14.0175 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 4 n 13.0739 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 5 P 0.0552 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 6 o 14.0326 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 7 e 13.8536 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 8 : 12.5489 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 9 r 14.1516 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 10 l -1.3692 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 11 i 1.7059 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 12 1 -0.0122 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 13 | -5.0879 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 14 N -0.2365 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 15 f -1.0493 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 16 g 13.8393 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 17 d -1.2026 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 18 W 0.1158 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 19 s 13.9992 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 20 c 14.0060 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 21 u 13.8901 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 22 3 -0.0560 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 23 ~ 18.1762 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 24 # -3.3328 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 25 O 0.1297 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 26 ` -3.5330 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 27 @ -2.0426 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 28 F -0.0417 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 29 S 2.0440 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 30 p 13.0803 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 31 “ -0.7625 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 32 % -2.8072 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 33 £ -0.5093 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 34 . 39.9056 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 35 2 -0.1399 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 36 5 -0.1851 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 37 m 12.7796 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 38 V 0.1770 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 39 6 0.0885 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 40 w 14.0552 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 41 T 0.5170 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 42 M 0.0385 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 43 G 0.1066 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 44 b -1.2645 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 45 9 -0.1706 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 46 ; 12.6355 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 47 D -0.0374 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 48 L -0.0288 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 49 y 13.9179 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 50 ‘ -0.9311 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 51 \ 0.0010 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 52 R -1.0502 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 53 < 13.2972 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 54 4 0.0000 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 55 8 -1.2978 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 56 0 -0.2730 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 57 A 2.3698 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 58 E -0.2109 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 59 B -0.0249 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 60 v 14.0270 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 61 k -0.9117 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 62 J 0.0170 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 63 U 1.8521 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 64 j 2.0507 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 65 ( -1.2105 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 66 7 1.5215 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 67 § -2.5207 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 68 $ -4.9114 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 69 € 0.4344 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 70 / -2.5781 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 71 C 0.5026 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 72 * -0.9686 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 73 ” -1.1784 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 74 ? -0.3439 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 75 { -1.0391 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 76 } -1.2371 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 77 , 40.3341 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 78 I 1.3861 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 79 ° -3.5854 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 80 K -0.0520 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 81 H -0.1693 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 82 q 12.6336 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 83 & 0.1715 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 84 ’ -1.1509 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 85 [ 1.2031 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 86 - 26.3194 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 87 Y 0.1873 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 88 Q 0.1516 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 89 " -1.3180 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 90 ! -1.1882 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 91 x 13.9280 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 92 ) -1.3263 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 93 = 18.5333 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 94 + 13.9665 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 95 X 0.0000 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 96 » 14.0353 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 97 ' -0.9536 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 98 ¢ -6.0090 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 99 Z 1.2309 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 100 > 13.7984 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 101 ® -1.9896 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 102 © -1.0910 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 103 ] 1.4597 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 104 é -3.5803 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 105 z 14.1076 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 106 _ 48.6374 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 74 ? 28.1000 45.4386 107 ¥ 2.6327 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 1 t 5.9882 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 2 h 0.1034 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 3 a 15.0851 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 4 n 14.3815 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 5 P 1.1581 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 6 o 14.9395 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 7 e 15.1040 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 8 : 13.8143 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 9 r 15.0962 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 10 l 0.1890 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 11 i 2.8856 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 12 1 1.1360 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 13 | -3.8343 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 14 N 0.8328 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 15 f 0.0909 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 16 g 15.2823 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 17 d 0.0440 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 18 W 0.9744 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 19 s 15.3153 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 20 c 15.1121 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 21 u 15.1727 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 22 3 1.5063 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 23 ~ 19.3010 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 24 # -2.4267 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 25 O 1.3783 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 26 ` -2.3900 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 27 @ -0.9383 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 28 F 1.3037 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 29 S 3.4481 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 30 p 13.9556 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 31 “ -0.0742 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 32 % -1.3382 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 33 £ 0.9785 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 34 . 41.3462 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 35 2 1.0313 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 36 5 1.1105 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 37 m 13.7737 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 38 V 1.2306 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 39 6 1.4401 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 40 w 15.1006 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 41 T 1.3287 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 42 M 1.3186 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 43 G 1.2562 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 44 b -0.0655 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 45 9 1.4823 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 46 ; 14.1252 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 47 D 1.2406 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 48 L 0.9482 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 49 y 15.5343 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 50 ‘ -0.3615 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 51 \ 1.0720 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 52 R 0.1651 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 53 < 14.3660 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 54 4 1.3089 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 55 8 -0.0200 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 56 0 1.2953 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 57 A 3.5401 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 58 E 0.9817 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 59 B 1.2653 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 60 v 15.3242 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 61 k -0.1678 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 62 J 1.1424 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 63 U 3.2719 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 64 j 3.2482 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 65 ( -0.1428 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 66 7 2.5910 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 67 § -1.2006 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 68 $ -3.6169 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 69 € 1.4728 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 70 / -1.5719 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 71 C 1.6426 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 72 * 0.1902 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 73 ” -0.4278 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 74 ? 1.1184 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 75 { 0.0574 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 76 } -0.2030 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 77 , 41.6784 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 78 I 2.6987 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 79 ° -2.5917 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 80 K 1.1292 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 81 H 1.1126 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 82 q 14.0742 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 83 & 1.0188 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 84 ’ 0.0207 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 85 [ 2.4400 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 86 - 27.3507 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 87 Y 1.0006 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 88 Q 1.5392 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 89 " -0.1075 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 90 ! -0.0885 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 91 x 14.9279 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 92 ) -0.0972 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 93 = 19.5907 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 94 + 15.4836 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 95 X 1.2240 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 96 » 14.9479 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 97 ' 0.1389 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 98 ¢ -4.9521 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 99 Z 2.5301 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 100 > 15.2685 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 101 ® -0.8234 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 102 © -0.4397 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 103 ] 2.3753 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 104 é -2.5712 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 75 { 23.0372 56.4182 105 z 15.2442 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 106 _ 49.7775 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 75 { 22.4267 56.4182 107 ¥ 3.9459 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 1 t 5.9027 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 2 h 0.0060 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 3 a 15.2533 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 4 n 14.4339 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 5 P 0.8446 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 6 o 15.1462 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 7 e 15.2383 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 8 : 13.5088 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 9 r 15.4257 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 10 l -0.0357 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 11 i 3.0037 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 12 1 1.3791 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 13 | -3.8399 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 14 N 1.1819 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 15 f -0.0465 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 16 g 15.2402 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 17 d -0.1849 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 18 W 1.3645 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 19 s 15.2347 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 20 c 15.1522 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 21 u 15.2180 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 22 3 1.4006 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 23 ~ 19.3867 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 24 # -2.4177 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 25 O 1.1922 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 26 ` -2.3737 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 27 @ -0.8887 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 28 F 1.2069 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 29 S 3.5458 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 30 p 14.0742 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 31 “ -0.2803 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 32 % -1.5775 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 33 £ 0.5623 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 34 . 41.0923 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 35 2 1.0561 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 36 5 1.1347 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 37 m 13.9532 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 38 V 1.0206 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 39 6 1.0859 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 40 w 15.2514 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 41 T 1.4039 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 42 M 1.1819 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 43 G 1.2009 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 44 b -0.1397 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 45 9 1.0723 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 46 ; 14.2735 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 47 D 1.0822 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 48 L 1.0804 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 49 y 14.9103 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 50 ‘ -0.0195 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 51 \ 0.8418 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 52 R 0.1686 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 53 < 14.0506 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 54 4 1.1657 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 55 8 0.0933 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 56 0 1.3405 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 57 A 3.4768 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 58 E 1.0804 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 59 B 1.3942 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 60 v 15.4998 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 61 k -0.0222 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 62 J 1.2236 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 63 U 3.4125 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 64 j 3.4953 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 65 ( -0.0937 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 66 7 2.7113 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 67 § -1.1906 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 68 $ -3.8107 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 69 € 1.4523 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 70 / -1.4501 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 71 C 1.4505 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 72 * 0.0969 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 73 ” 0.3393 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 74 ? 1.0006 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 75 { -0.1186 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 76 } -0.0973 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 77 , 41.6410 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 78 I 2.3182 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 79 ° -2.8892 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 80 K 1.0456 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 81 H 1.3169 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 82 q 13.9083 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 83 & 1.2204 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 84 ’ 0.3920 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 85 [ 2.2507 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 86 - 27.7345 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 87 Y 1.1644 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 88 Q 1.3478 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 89 " 0.0492 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 90 ! -0.1537 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 91 x 15.0855 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 92 ) 0.1207 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 93 = 19.8142 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 94 + 15.1812 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 95 X 1.2116 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 96 » 15.0448 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 97 ' -0.1266 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 98 ¢ -5.0645 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 99 Z 2.7793 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 100 > 14.8577 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 101 ® -0.9375 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 102 © -0.4007 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 103 ] 2.0854 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 104 é -2.2416 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 76 } 22.4267 56.4182 105 z 15.0269 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 106 _ 49.8720 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 76 } 23.0372 56.4182 107 ¥ 3.9818 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 1 t -35.8152 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 2 h -41.8624 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 3 a -26.4440 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 4 n -27.1832 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 5 P -40.4317 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 6 o -26.3548 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 7 e -26.3647 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 8 : -27.9773 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 9 r -26.3555 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 10 l -41.9227 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 11 i -38.0992 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 12 1 -40.7313 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 13 | -45.1106 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 14 N -40.3936 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 15 f -41.1928 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 16 g -26.3730 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 17 d -41.5935 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 18 W -40.2698 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 19 s -26.5409 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 20 c -26.5258 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 21 u -26.2841 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 22 3 -40.3146 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 23 ~ -22.2734 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 24 # -44.0913 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 25 O -40.5218 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 26 ` -44.0001 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 27 @ -42.6029 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 28 F -40.1547 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 29 S -37.7922 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 30 p -27.4648 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 31 “ -41.8696 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 32 % -43.0110 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 33 £ -40.9393 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 34 . -0.3329 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 35 2 -40.3244 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 36 5 -40.3401 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 37 m -27.5136 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 38 V -40.4859 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 39 6 -40.2492 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 40 w -26.2529 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 41 T -40.1076 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 42 M -40.2047 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 43 G -40.4532 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 44 b -41.5080 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 45 9 -40.3043 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 46 ; -27.6474 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 47 D -40.5409 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 48 L -40.3935 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 49 y -26.4255 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 50 ‘ -41.7121 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 51 \ -40.1706 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 52 R -41.5989 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 53 < -27.4327 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 54 4 -40.3758 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 55 8 -41.4744 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 56 0 -40.6155 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 57 A -38.1621 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 58 E -40.7146 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 59 B -40.3293 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 60 v -26.0524 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 61 k -41.7311 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 62 J -40.3758 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 63 U -38.2949 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 64 j -38.2603 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 65 ( -41.4741 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 66 7 -38.6727 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 67 § -42.7113 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 68 $ -45.5048 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 69 € -39.9041 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 70 / -43.2180 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 71 C -40.1568 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 72 * -41.5077 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 73 ” -41.5025 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 74 ? -40.5476 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 75 { -41.5577 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 76 } -41.5567 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 77 , -0.2266 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 78 I -38.5829 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 79 ° -43.8773 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 80 K -40.2567 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 81 H -39.8662 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 82 q -27.5160 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 83 & -40.0746 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 84 ’ -41.6291 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 85 [ -39.3645 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 86 - -13.8679 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 87 Y -40.5626 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 88 Q -40.2381 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 89 " -41.8437 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 90 ! -41.3867 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 91 x -26.3601 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 92 ) -41.4446 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 93 = -21.6206 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 94 + -26.4659 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 95 X -40.3758 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 96 » -26.3855 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 97 ' -41.3309 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 98 ¢ -46.5712 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 99 Z -38.8320 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 100 > -26.3758 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 101 ® -42.3779 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 102 © -41.8037 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 103 ] -38.9641 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 104 é -43.8437 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 105 z -26.4115 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 106 _ 8.3463 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 77 , 10.9796 14.0000 107 ¥ -37.6243 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 1 t 3.0203 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 2 h -2.5808 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 3 a 12.3857 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 4 n 11.7542 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 5 P -1.6926 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 6 o 12.3322 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 7 e 12.4474 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 8 : 10.8392 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 9 r 12.2015 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 10 l -2.8141 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 11 i 0.2768 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 12 1 -1.4366 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 13 | -6.2247 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 14 N -1.2140 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 15 f -2.6022 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 16 g 12.6154 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 17 d -2.3900 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 18 W -1.1584 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 19 s 12.5415 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 20 c 12.3675 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 21 u 12.4809 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 22 3 -1.2802 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 23 ~ 16.6081 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 24 # -4.8996 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 25 O -1.3396 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 26 ` -4.9840 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 27 @ -3.7412 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 28 F -1.6705 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 29 S 0.7522 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 30 p 11.3111 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 31 “ -2.3430 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 32 % -4.1473 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 33 £ -2.0080 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 34 . 38.3346 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 35 2 -1.7041 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 36 5 -1.2683 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 37 m 11.2295 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 38 V -1.2850 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 39 6 -1.4620 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 40 w 12.6598 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 41 T -1.2731 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 42 M -1.0599 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 43 G -1.5451 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 44 b -2.3487 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 45 9 -1.4013 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 46 ; 11.6949 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 47 D -1.1990 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 48 L -1.7502 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 49 y 12.6799 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 50 ‘ -2.6210 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 51 \ -1.0939 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 52 R -2.5947 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 53 < 12.2955 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 54 4 -1.3413 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 55 8 -3.0434 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 56 0 -1.6433 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 57 A 0.8136 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 58 E -1.6268 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 59 B -1.4970 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 60 v 12.6797 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 61 k -2.3930 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 62 J -1.4707 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 63 U 0.7820 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 64 j 0.7929 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 65 ( -2.3479 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 66 7 -0.2002 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 67 § -3.6985 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 68 $ -6.7230 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 69 € -1.0799 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 70 / -4.2094 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 71 C -1.4533 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 72 * -2.7830 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 73 ” -2.6310 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 74 ? -1.2128 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 75 { -2.4242 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 76 } -2.3157 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 77 , 38.8673 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 78 I 0.0137 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 79 ° -5.1573 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 80 K -1.4203 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 81 H -1.2079 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 82 q 11.3625 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 83 & -1.2937 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 84 ’ -3.0536 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 85 [ -0.4783 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 86 - 25.1875 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 87 Y -1.4013 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 88 Q -1.6208 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 89 " -2.5089 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 90 ! -2.5086 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 91 x 12.7994 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 92 ) -2.6967 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 93 = 17.4143 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 94 + 12.4031 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 95 X -1.5854 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 96 » 12.6245 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 97 ' -2.4919 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 98 ¢ -7.8915 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 99 Z -0.1071 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 100 > 11.8359 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 101 ® -3.3787 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 102 © -2.7527 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 103 ] -0.2463 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 104 é -5.1875 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 105 z 12.6787 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 106 _ 47.2926 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 78 I 29.0137 43.3144 107 ¥ 1.5544 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 1 t 8.6127 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 2 h 2.7302 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 3 a 17.1279 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 4 n 16.6728 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 5 P 3.4641 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 6 o 17.7230 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 7 e 17.5886 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 8 : 16.3991 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 9 r 17.6038 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 10 l 2.5472 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 11 i 5.5926 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 12 1 3.5091 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 13 | -1.2236 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 14 N 3.7759 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 15 f 2.7476 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 16 g 17.2972 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 17 d 2.4039 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 18 W 3.5723 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 19 s 17.7257 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 20 c 17.5196 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 21 u 17.5828 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 22 3 3.6167 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 23 ~ 21.6323 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 24 # 0.0035 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 25 O 3.5659 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 26 ` 0.1928 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 27 @ 1.5575 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 28 F 3.7132 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 29 S 5.9664 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 30 p 16.5643 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 31 “ 2.5864 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 32 % 0.8807 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 33 £ 2.9425 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 34 . 43.9320 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 35 2 3.7814 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 36 5 3.6663 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 37 m 16.4841 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 38 V 3.4176 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 39 6 3.6830 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 40 w 17.4088 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 41 T 3.8930 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 42 M 3.6838 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 43 G 3.8818 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 44 b 2.5956 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 45 9 3.6622 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 46 ; 16.7535 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 47 D 3.5053 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 48 L 3.7781 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 49 y 17.5334 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 50 ‘ 2.2273 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 51 \ 3.6243 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 52 R 2.3098 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 53 < 16.5823 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 54 4 3.6406 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 55 8 2.8552 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 56 0 3.6995 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 57 A 5.7072 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 58 E 3.4480 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 59 B 3.4106 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 60 v 17.5426 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 61 k 2.6204 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 62 J 3.4693 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 63 U 5.5690 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 64 j 5.8835 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 65 ( 2.5844 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 66 7 5.0601 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 67 § 1.2875 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 68 $ -1.3535 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 69 € 4.0160 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 70 / 1.0050 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 71 C 3.7280 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 72 * 2.6487 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 73 ” 2.1723 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 74 ? 3.8405 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 75 { 2.4944 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 76 } 2.4138 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 77 , 43.9952 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 78 I 5.2707 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 79 ° 0.1126 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 80 K 3.5691 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 81 H 3.3022 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 82 q 16.0601 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 83 & 3.4913 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 84 ’ 2.5083 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 85 [ 4.7240 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 86 - 30.2281 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 87 Y 3.4917 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 88 Q 3.6516 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 89 " 2.2241 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 90 ! 2.6583 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 91 x 17.8111 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 92 ) 2.0564 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 93 = 22.2731 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 94 + 17.5401 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 95 X 3.7045 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 96 » 17.4641 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 97 ' 2.2380 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 98 ¢ -2.4333 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 99 Z 4.7707 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 100 > 17.3981 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 101 ® 1.5222 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 102 © 2.0027 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 103 ] 4.8534 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 104 é -0.1131 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 105 z 17.7925 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 106 _ 52.3705 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 79 ° 21.3487 19.9167 107 ¥ 6.2730 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 1 t 4.9248 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 2 h -0.9107 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 3 a 14.1956 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 4 n 13.3188 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 5 P -0.0108 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 6 o 13.9940 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 7 e 14.1794 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 8 : 12.4845 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 9 r 14.1932 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 10 l -1.2931 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 11 i 2.1055 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 12 1 0.2230 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 13 | -4.7272 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 14 N -0.2201 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 15 f -1.1438 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 16 g 13.8981 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 17 d -1.3242 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 18 W -0.1623 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 19 s 14.0353 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 20 c 14.0412 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 21 u 14.1658 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 22 3 -0.0619 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 23 ~ 18.1110 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 24 # -3.6371 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 25 O 0.2939 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 26 ` -3.4773 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 27 @ -2.4180 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 28 F 0.1357 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 29 S 2.0186 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 30 p 12.6979 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 31 “ -0.9040 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 32 % -2.5654 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 33 £ -0.2478 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 34 . 40.1888 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 35 2 -0.0699 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 36 5 0.0281 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 37 m 13.1721 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 38 V 0.0560 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 39 6 -0.0422 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 40 w 14.0631 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 41 T 0.6136 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 42 M -0.0061 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 43 G -0.1016 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 44 b -1.0980 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 45 9 -0.1315 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 46 ; 12.9725 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 47 D 0.1723 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 48 L 0.0484 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 49 y 14.2096 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 50 ‘ -1.2061 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 51 \ 0.3823 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 52 R -0.8954 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 53 < 13.6973 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 54 4 -0.1812 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 55 8 -1.1384 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 56 0 0.0595 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 57 A 2.4717 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 58 E 0.0865 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 59 B -0.0460 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 60 v 13.9234 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 61 k -1.0206 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 62 J 0.0389 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 63 U 1.8326 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 64 j 2.2509 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 65 ( -0.9950 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 66 7 1.1596 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 67 § -2.1214 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 68 $ -5.0895 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 69 € 0.3448 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 70 / -2.5498 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 71 C 0.2352 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 72 * -1.2399 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 73 ” -1.2529 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 74 ? 0.0344 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 75 { -1.3701 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 76 } -1.3123 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 77 , 40.0806 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 78 I 1.2248 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 79 ° -3.5735 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 80 K 0.2151 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 81 H 0.1372 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 82 q 12.8705 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 83 & -0.0138 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 84 ’ -1.0553 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 85 [ 1.3123 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 86 - 26.3559 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 87 Y 0.4940 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 88 Q -0.1236 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 89 " -1.1809 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 90 ! -1.3449 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 91 x 14.1239 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 92 ) -1.0933 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 93 = 18.7128 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 94 + 13.7991 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 95 X -0.1757 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 96 » 13.7802 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 97 ' -1.4435 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 98 ¢ -5.9515 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 99 Z 1.4203 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 100 > 12.8094 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 101 ® -2.1536 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 102 © -1.4568 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 103 ] 1.3942 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 104 é -3.8468 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 105 z 13.9448 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 106 _ 49.0873 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 80 K 31.1204 47.3128 107 ¥ 2.8895 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 1 t 4.6222 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 2 h -1.1555 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 3 a 14.0816 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 4 n 13.3307 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 5 P -0.0774 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 6 o 14.0694 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 7 e 13.9702 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 8 : 12.8522 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 9 r 14.1848 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 10 l -1.5448 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 11 i 1.7865 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 12 1 -0.2355 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 13 | -4.8164 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 14 N 0.2649 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 15 f -1.0946 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 16 g 13.8047 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 17 d -1.3227 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 18 W -0.0315 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 19 s 13.7667 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 20 c 14.0504 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 21 u 13.9672 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 22 3 -0.2399 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 23 ~ 17.7617 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 24 # -3.7475 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 25 O -0.1489 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 26 ` -3.6499 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 27 @ -2.0246 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 28 F -0.2609 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 29 S 2.3309 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 30 p 12.6908 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 31 “ -1.3094 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 32 % -2.4802 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 33 £ -0.4504 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 34 . 39.9859 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 35 2 0.2443 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 36 5 0.1895 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 37 m 12.5750 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 38 V 0.1555 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 39 6 -0.0560 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 40 w 13.9909 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 41 T 0.6025 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 42 M -0.4300 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 43 G -0.1418 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 44 b -1.4184 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 45 9 0.1759 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 46 ; 13.2035 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 47 D -0.1239 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 48 L 0.1960 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 49 y 13.9367 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 50 ‘ -1.0231 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 51 \ 0.3027 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 52 R -1.4093 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 53 < 13.8238 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 54 4 -0.1274 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 55 8 -1.2492 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 56 0 0.0714 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 57 A 2.3172 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 58 E 0.0114 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 59 B -0.1386 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 60 v 14.2782 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 61 k -1.2651 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 62 J 0.0312 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 63 U 1.7875 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 64 j 2.0866 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 65 ( -1.2902 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 66 7 1.8309 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 67 § -2.2947 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 68 $ -5.0186 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 69 € 0.2883 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 70 / -2.4892 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 71 C 0.4231 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 72 * -1.1299 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 73 ” -1.3061 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 74 ? 0.0368 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 75 { -1.2306 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 76 } -1.0359 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 77 , 40.1582 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 78 I 1.4831 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 79 ° -3.9770 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 80 K 0.1491 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 81 H 0.0980 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 82 q 12.8475 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 83 & -0.0236 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 84 ’ -1.1073 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 85 [ 0.7301 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 86 - 26.5566 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 87 Y -0.2595 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 88 Q 0.0954 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 89 " -0.9692 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 90 ! -1.2614 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 91 x 13.9801 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 92 ) -1.2180 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 93 = 18.6512 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 94 + 14.1277 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 95 X 0.0688 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 96 » 13.7432 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 97 ' -1.2867 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 98 ¢ -6.3851 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 99 Z 1.5132 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 100 > 13.1604 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 101 ® -2.2789 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 102 © -1.7615 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 103 ] 1.2566 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 104 é -3.9130 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 105 z 13.9206 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 106 _ 48.7192 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 81 H 38.5614 45.4386 107 ¥ 2.6189 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 1 t -7.9615 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 2 h -13.8787 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 3 a 1.1447 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 4 n 0.3445 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 5 P -13.0602 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 6 o 1.2176 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 7 e 1.1819 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 8 : -0.6607 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 9 r 1.0545 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 10 l -13.8879 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 11 i -11.1027 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 12 1 -13.2282 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 13 | -17.2031 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 14 N -12.6996 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 15 f -13.8945 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 16 g 1.0632 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 17 d -13.8767 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 18 W -12.8433 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 19 s 1.2236 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 20 c 1.2887 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 21 u 0.8651 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 22 3 -13.0378 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 23 ~ 5.0501 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 24 # -16.4020 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 25 O -13.0075 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 26 ` -16.5576 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 27 @ -14.9206 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 28 F -12.8421 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 29 S -10.1961 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 30 p -0.1686 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 31 “ -13.8463 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 32 % -15.1440 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 33 £ -13.4698 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 34 . 27.2260 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 35 2 -12.9339 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 36 5 -12.9010 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 37 m 0.2092 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 38 V -12.8744 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 39 6 -12.6779 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 40 w 1.1597 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 41 T -12.4576 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 42 M -12.6550 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 43 G -12.7621 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 44 b -14.0936 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 45 9 -12.7781 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 46 ; 0.1271 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 47 D -12.9514 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 48 L -12.7553 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 49 y 1.1347 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 50 ‘ -14.1210 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 51 \ -12.6654 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 52 R -14.1943 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 53 < 1.3933 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 54 4 -12.6470 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 55 8 -13.8199 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 56 0 -12.8506 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 57 A -10.5496 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 58 E -12.4777 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 59 B -13.0738 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 60 v 1.3998 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 61 k -14.1266 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 62 J -12.9440 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 63 U -10.8970 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 64 j -10.5900 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 65 ( -13.9286 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 66 7 -11.2827 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 67 § -15.0211 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 68 $ -18.1966 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 69 € -12.4780 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 70 / -15.4518 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 71 C -12.6381 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 72 * -14.0262 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 73 ” -14.0135 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 74 ? -13.0183 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 75 { -13.8652 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 76 } -14.0176 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 77 , 27.5415 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 78 I -11.3940 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 79 ° -16.5278 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 80 K -12.8975 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 81 H -12.7973 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 82 q -0.0084 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 83 & -13.1022 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 84 ’ -13.9433 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 85 [ -11.9788 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 86 - 13.7853 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 87 Y -12.6431 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 88 Q -13.1490 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 89 " -13.9968 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 90 ! -13.7051 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 91 x 1.3876 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 92 ) -13.6204 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 93 = 5.8194 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 94 + 1.1827 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 95 X -12.7467 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 96 » 0.8520 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 97 ' -13.8656 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 98 ¢ -18.6700 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 99 Z -11.5429 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 100 > 0.2320 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 101 ® -14.8910 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 102 © -14.3185 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 103 ] -11.7600 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 104 é -16.5972 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 105 z 1.3645 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 106 _ 36.1406 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 82 q 27.8077 47.3128 107 ¥ -10.1630 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 1 t 4.7510 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 2 h -1.1243 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 3 a 13.8774 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 4 n 13.1886 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 5 P -0.3035 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 6 o 13.9594 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 7 e 13.8299 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 8 : 12.5341 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 9 r 13.9123 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 10 l -1.1482 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 11 i 1.9761 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 12 1 -0.1140 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 13 | -4.7988 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 14 N 0.2817 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 15 f -1.2824 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 16 g 13.9730 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 17 d -0.9279 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 18 W -0.2393 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 19 s 13.8410 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 20 c 14.0099 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 21 u 14.1849 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 22 3 -0.1988 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 23 ~ 17.9188 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 24 # -3.4593 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 25 O -0.3386 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 26 ` -3.7178 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 27 @ -2.1884 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 28 F 0.2210 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 29 S 2.4307 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 30 p 12.7732 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 31 “ -1.3695 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 32 % -2.5388 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 33 £ -0.9010 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 34 . 39.7831 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 35 2 -0.0861 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 36 5 -0.1141 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 37 m 12.8254 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 38 V -0.1052 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 39 6 0.0382 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 40 w 13.8821 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 41 T 0.1951 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 42 M -0.0204 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 43 G 0.1323 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 44 b -1.1005 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 45 9 0.1800 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 46 ; 13.0251 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 47 D 0.1524 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 48 L 0.0958 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 49 y 14.1423 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 50 ‘ -1.2807 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 51 \ 0.0279 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 52 R -1.1681 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 53 < 13.1681 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 54 4 -0.1808 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 55 8 -1.2370 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 56 0 0.3976 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 57 A 2.2483 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 58 E 0.2614 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 59 B 0.0640 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 60 v 14.1403 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 61 k -0.9314 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 62 J -0.3133 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 63 U 2.1054 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 64 j 2.0098 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 65 ( -1.1319 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 66 7 1.6342 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 67 § -2.1138 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 68 $ -5.0299 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 69 € 0.3749 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 70 / -2.3765 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 71 C 0.1258 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 72 * -1.1559 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 73 ” -1.0688 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 74 ? -0.0051 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 75 { -1.1165 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 76 } -1.2169 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 77 , 40.7127 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 78 I 1.4566 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 79 ° -3.6216 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 80 K 0.0606 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 81 H -0.0921 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 82 q 13.1217 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 83 & -0.1955 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 84 ’ -1.1911 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 85 [ 1.2063 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 86 - 26.6804 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 87 Y 0.0307 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 88 Q -0.4143 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 89 " -1.3115 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 90 ! -0.8431 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 91 x 14.0574 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 92 ) -1.2633 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 93 = 18.7369 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 94 + 13.5748 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 95 X 0.0438 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 96 » 14.1635 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 97 ' -1.0327 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 98 ¢ -6.0598 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 99 Z 1.6558 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 100 > 13.9842 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 101 ® -2.0962 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 102 © -1.4477 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 103 ] 1.0013 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 104 é -3.5411 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 105 z 14.0714 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 106 _ 48.7377 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 83 & 35.7910 46.5848 107 ¥ 2.9247 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 1 t 6.0126 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 2 h -0.0395 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 3 a 15.1462 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 4 n 14.1523 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 5 P 1.1045 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 6 o 15.1267 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 7 e 15.1570 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 8 : 13.6961 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 9 r 15.1722 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 10 l -0.0524 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 11 i 3.2347 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 12 1 1.2921 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 13 | -3.5327 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 14 N 1.1105 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 15 f -0.0135 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 16 g 15.0693 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 17 d -0.1678 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 18 W 1.4362 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 19 s 14.9744 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 20 c 15.2208 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 21 u 14.8597 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 22 3 0.8913 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 23 ~ 19.3107 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 24 # -2.6056 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 25 O 1.3811 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 26 ` -2.5138 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 27 @ -1.0462 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 28 F 1.1819 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 29 S 3.5897 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 30 p 13.8814 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 31 “ -0.1964 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 32 % -1.4117 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 33 £ 0.8232 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 34 . 41.0050 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 35 2 1.3058 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 36 5 1.1462 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 37 m 14.2155 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 38 V 1.2041 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 39 6 0.9349 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 40 w 15.1768 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 41 T 1.4369 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 42 M 1.0309 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 43 G 1.1417 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 44 b -0.1718 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 45 9 1.2708 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 46 ; 14.3262 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 47 D 1.0244 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 48 L 1.3145 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 49 y 15.0661 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 50 ‘ -0.0737 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 51 \ 1.3645 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 52 R -0.0676 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 53 < 14.2248 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 54 4 1.2295 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 55 8 0.1548 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 56 0 1.0577 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 57 A 3.4529 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 58 E 1.1847 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 59 B 1.1403 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 60 v 15.1462 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 61 k -0.1599 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 62 J 1.2025 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 63 U 3.2386 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 64 j 3.2644 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 65 ( -0.0787 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 66 7 2.7689 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 67 § -1.1619 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 68 $ -3.8218 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 69 € 1.4560 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 70 / -1.3294 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 71 C 1.7152 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 72 * 0.0000 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 73 ” 0.0412 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 74 ? 1.0688 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 75 { 0.0190 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 76 } -0.0917 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 77 , 41.5767 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 78 I 2.6932 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 79 ° -2.2127 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 80 K 1.0391 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 81 H 1.1080 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 82 q 14.2536 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 83 & 1.0970 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 84 ’ -0.0417 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 85 [ 2.2924 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 86 - 27.8333 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 87 Y 1.0553 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 88 Q 1.2371 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 89 " 0.0905 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 90 ! -0.0909 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 91 x 15.3088 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 92 ) -0.0701 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 93 = 19.7141 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 94 + 15.0866 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 95 X 1.0720 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 96 » 15.1962 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 97 ' -0.1262 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 98 ¢ -4.7263 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 99 Z 2.6435 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 100 > 15.1549 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 101 ® -1.0533 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 102 © -0.3258 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 103 ] 2.1897 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 104 é -2.5198 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 105 z 15.0970 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 106 _ 49.9591 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 84 ’ 8.0833 15.1462 107 ¥ 3.9230 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 1 t 3.8735 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 2 h -2.1409 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 3 a 12.8316 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 4 n 12.1782 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 5 P -1.1768 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 6 o 12.9788 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 7 e 12.7485 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 8 : 11.4107 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 9 r 12.6096 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 10 l -2.3833 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 11 i 0.8097 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 12 1 -0.9676 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 13 | -5.7536 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 14 N -1.2561 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 15 f -2.4522 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 16 g 12.9205 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 17 d -2.3281 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 18 W -1.2044 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 19 s 12.8419 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 20 c 12.9003 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 21 u 12.6758 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 22 3 -0.9887 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 23 ~ 17.0720 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 24 # -4.8441 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 25 O -1.1307 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 26 ` -4.8420 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 27 @ -3.2501 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 28 F -1.2791 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 29 S 1.1500 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 30 p 11.7731 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 31 “ -2.4499 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 32 % -3.5627 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 33 £ -1.5206 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 34 . 39.1514 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 35 2 -0.8256 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 36 5 -1.2978 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 37 m 11.8902 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 38 V -1.0401 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 39 6 -0.9116 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 40 w 12.8383 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 41 T -0.9554 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 42 M -1.1857 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 43 G -1.6422 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 44 b -2.4412 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 45 9 -0.9367 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 46 ; 11.8068 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 47 D -1.3140 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 48 L -1.2176 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 49 y 12.8538 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 50 ‘ -2.3341 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 51 \ -1.1475 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 52 R -2.1098 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 53 < 12.0608 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 54 4 -1.2403 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 55 8 -2.3774 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 56 0 -0.9344 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 57 A 1.0785 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 58 E -0.9817 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 59 B -1.1868 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 60 v 13.0192 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 61 k -2.4607 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 62 J -1.1354 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 63 U 0.8664 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 64 j 1.0850 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 65 ( -2.1658 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 66 7 0.3938 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 67 § -3.1063 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 68 $ -5.9862 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 69 € -0.8748 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 70 / -3.9510 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 71 C -0.9847 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 72 * -2.3141 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 73 ” -2.3411 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 74 ? -1.0272 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 75 { -2.4684 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 76 } -2.2102 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 77 , 39.0672 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 78 I 0.4684 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 79 ° -4.7261 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 80 K -1.3984 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 81 H -0.8288 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 82 q 11.7152 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 83 & -1.3938 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 84 ’ -2.3151 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 85 [ -0.1204 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 86 - 25.3147 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 87 Y -1.0331 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 88 Q -1.2783 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 89 " -2.3499 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 90 ! -2.5881 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 91 x 12.9891 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 92 ) -2.3976 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 93 = 17.4996 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 94 + 12.7945 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 95 X -1.3207 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 96 » 12.9328 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 97 ' -2.0936 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 98 ¢ -7.0902 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 99 Z 0.1324 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 100 > 13.0479 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 101 ® -3.2386 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 102 © -2.6708 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 103 ] -0.1278 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 104 é -4.8447 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 105 z 13.1189 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 106 _ 47.6548 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 85 [ 16.9880 54.8538 107 ¥ 1.7563 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 1 t -21.6702 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 2 h -27.5947 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 3 a -12.6070 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 4 n -13.1937 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 5 P -26.6704 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 6 o -12.4279 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 7 e -12.3813 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 8 : -14.1199 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 9 r -12.6597 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 10 l -27.6758 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 11 i -24.4662 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 12 1 -26.4290 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 13 | -30.8320 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 14 N -26.6065 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 15 f -27.6790 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 16 g -12.6970 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 17 d -27.7097 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 18 W -26.7002 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 19 s -12.7182 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 20 c -12.3221 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 21 u -12.7431 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 22 3 -26.5045 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 23 ~ -8.4550 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 24 # -30.1521 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 25 O -26.5740 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 26 ` -30.3116 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 27 @ -28.9478 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 28 F -26.7648 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 29 S -24.2516 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 30 p -13.7528 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 31 “ -27.6596 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 32 % -29.0755 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 33 £ -27.2169 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 34 . 13.6722 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 35 2 -26.6135 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 36 5 -26.6597 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 37 m -13.9911 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 38 V -26.4452 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 39 6 -26.5830 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 40 w -12.6488 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 41 T -25.9987 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 42 M -26.5467 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 43 G -26.7613 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 44 b -27.7360 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 45 9 -26.7689 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 46 ; -13.5234 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 47 D -26.6080 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 48 L -26.5978 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 49 y -12.3912 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 50 ‘ -27.5183 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 51 \ -26.5828 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 52 R -27.8371 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 53 < -13.5460 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 54 4 -26.4263 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 55 8 -27.6071 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 56 0 -26.3746 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 57 A -24.2560 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 58 E -26.5589 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 59 B -26.7359 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 60 v -12.5605 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 61 k -27.6813 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 62 J -26.5800 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 63 U -24.3988 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 64 j -24.3145 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 65 ( -28.0656 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 66 7 -25.0097 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 67 § -28.9438 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 68 $ -31.4061 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 69 € -26.4785 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 70 / -29.1258 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 71 C -26.3654 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 72 * -27.6647 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 73 ” -27.4738 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 74 ? -26.4959 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 75 { -27.8982 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 76 } -27.8715 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 77 , 13.6047 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 78 I -25.1120 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 79 ° -30.3596 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 80 K -26.6538 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 81 H -26.6051 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 82 q -13.6578 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 83 & -26.2834 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 84 ’ -27.6484 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 85 [ -25.7472 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 86 - -0.0574 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 87 Y -26.1973 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 88 Q -26.6475 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 89 " -27.6921 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 90 ! -27.7060 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 91 x -12.6354 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 92 ) -27.5036 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 93 = -7.7729 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 94 + -12.6582 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 95 X -26.6185 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 96 » -12.5296 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 97 ' -28.0254 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 98 ¢ -32.6882 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 99 Z -25.1071 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 100 > -12.4186 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 101 ® -28.8356 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 102 © -27.6533 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 103 ] -25.4330 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 104 é -30.2222 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 105 z -12.4750 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 106 _ 22.2449 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 86 - 23.0372 5.9167 107 ¥ -23.8770 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 1 t 4.7400 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 2 h -1.0550 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 3 a 13.8290 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 4 n 13.1418 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 5 P -0.0361 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 6 o 14.2045 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 7 e 13.9174 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 8 : 12.4519 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 9 r 14.1829 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 10 l -1.0872 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 11 i 1.6875 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 12 1 -0.0992 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 13 | -4.9161 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 14 N -0.1168 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 15 f -1.1254 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 16 g 13.9041 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 17 d -0.9279 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 18 W 0.1847 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 19 s 14.2018 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 20 c 13.6686 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 21 u 14.1614 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 22 3 0.1242 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 23 ~ 18.1916 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 24 # -3.5071 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 25 O 0.1484 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 26 ` -3.5743 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 27 @ -2.1799 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 28 F 0.1051 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 29 S 2.2835 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 30 p 12.8510 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 31 “ -1.0069 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 32 % -2.7388 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 33 £ -0.5965 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 34 . 40.2481 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 35 2 0.1024 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 36 5 0.0809 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 37 m 12.5618 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 38 V 0.3426 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 39 6 -0.1840 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 40 w 14.0182 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 41 T 0.2452 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 42 M -0.0552 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 43 G -0.0766 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 44 b -1.1457 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 45 9 0.1635 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 46 ; 13.1127 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 47 D 0.1731 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 48 L -0.0742 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 49 y 13.7142 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 50 ‘ -1.0888 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 51 \ 0.0726 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 52 R -1.0006 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 53 < 14.0135 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 54 4 -0.2553 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 55 8 -1.1462 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 56 0 0.1738 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 57 A 2.5381 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 58 E -0.2230 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 59 B 0.0095 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 60 v 13.8258 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 61 k -1.2565 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 62 J 0.0747 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 63 U 1.9873 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 64 j 2.5085 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 65 ( -0.7578 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 66 7 1.1222 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 67 § -2.2437 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 68 $ -4.9104 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 69 € 0.3737 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 70 / -2.2403 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 71 C 0.6854 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 72 * -1.0348 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 73 ” -0.9877 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 74 ? 0.1987 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 75 { -1.3807 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 76 } -1.2015 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 77 , 40.3454 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 78 I 1.2609 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 79 ° -3.5497 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 80 K -0.0527 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 81 H -0.2722 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 82 q 12.6832 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 83 & -0.1126 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 84 ’ -1.2869 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 85 [ 0.8691 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 86 - 26.6347 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 87 Y -0.1006 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 88 Q 0.0031 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 89 " -0.9095 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 90 ! -1.1710 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 91 x 14.0111 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 92 ) -1.0429 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 93 = 18.8861 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 94 + 13.6192 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 95 X 0.0435 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 96 » 13.9629 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 97 ' -1.2327 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 98 ¢ -6.2054 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 99 Z 1.1249 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 100 > 12.7551 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 101 ® -2.1306 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 102 © -1.4008 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 103 ] 1.0391 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 104 é -3.4463 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 105 z 14.0080 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 106 _ 48.7717 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 87 Y 35.8910 46.4848 107 ¥ 2.8831 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 1 t 4.6564 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 2 h -0.9382 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 3 a 14.1600 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 4 n 12.8299 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 5 P 0.0269 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 6 o 13.5455 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 7 e 13.7481 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 8 : 12.2420 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 9 r 14.2690 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 10 l -1.4698 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 11 i 1.6999 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 12 1 0.0455 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 13 | -4.7932 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 14 N 0.0216 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 15 f -0.9107 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 16 g 13.7557 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 17 d -1.3460 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 18 W 0.0877 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 19 s 13.7988 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 20 c 14.0793 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 21 u 13.8907 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 22 3 0.4811 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 23 ~ 18.0034 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 24 # -3.2000 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 25 O -0.3673 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 26 ` -3.3264 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 27 @ -2.0495 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 28 F -0.0934 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 29 S 2.3285 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 30 p 13.0396 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 31 “ -1.3519 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 32 % -2.4483 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 33 £ -0.6501 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 34 . 40.1203 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 35 2 -0.1938 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 36 5 0.2137 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 37 m 12.7792 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 38 V 0.0639 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 39 6 0.2243 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 40 w 14.0925 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 41 T 0.3709 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 42 M 0.4677 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 43 G 0.0157 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 44 b -1.3488 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 45 9 0.0157 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 46 ; 12.8576 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 47 D 0.3605 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 48 L 0.2365 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 49 y 13.9470 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 50 ‘ -1.4359 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 51 \ 0.0767 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 52 R -1.1667 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 53 < 13.6052 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 54 4 0.1344 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 55 8 -1.2730 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 56 0 0.0681 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 57 A 2.6619 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 58 E -0.3244 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 59 B -0.2311 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 60 v 13.9457 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 61 k -1.2685 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 62 J -0.0051 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 63 U 2.0518 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 64 j 2.1617 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 65 ( -1.1228 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 66 7 1.7327 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 67 § -2.5473 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 68 $ -4.8475 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 69 € 0.5257 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 70 / -2.4572 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 71 C 0.2928 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 72 * -0.9322 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 73 ” -0.8756 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 74 ? -0.1190 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 75 { -1.3887 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 76 } -0.9387 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 77 , 40.1053 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 78 I 1.3342 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 79 ° -3.8328 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 80 K -0.0600 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 81 H -0.0679 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 82 q 12.6870 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 83 & 0.0848 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 84 ’ -0.7528 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 85 [ 1.2074 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 86 - 26.2616 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 87 Y 0.0627 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 88 Q -0.1786 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 89 " -1.2430 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 90 ! -1.1759 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 91 x 13.7753 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 92 ) -1.2208 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 93 = 18.6640 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 94 + 13.5805 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 95 X 0.2933 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 96 » 13.9936 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 97 ' -0.9434 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 98 ¢ -6.2648 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 99 Z 1.3259 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 100 > 13.0488 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 101 ® -2.3648 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 102 © -1.2596 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 103 ] 1.2616 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 104 é -3.6223 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 105 z 13.9248 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 106 _ 49.1644 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 88 Q 49.6410 56.9539 107 ¥ 2.8148 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 1 t 5.8965 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 2 h 0.0357 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 3 a 15.3887 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 4 n 14.2916 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 5 P 1.3148 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 6 o 15.0981 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 7 e 15.0798 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 8 : 14.0255 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 9 r 15.2316 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 10 l -0.2103 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 11 i 3.1056 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 12 1 1.0688 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 13 | -3.4942 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 14 N 1.0156 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 15 f 0.0000 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 16 g 14.9822 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 17 d 0.1186 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 18 W 1.2479 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 19 s 15.2389 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 20 c 15.1462 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 21 u 15.0970 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 22 3 1.2564 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 23 ~ 19.2705 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 24 # -2.4278 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 25 O 1.1652 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 26 ` -2.4059 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 27 @ -0.9580 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 28 F 1.2653 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 29 S 3.2848 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 30 p 14.0135 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 31 “ -0.1756 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 32 % -1.3747 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 33 £ 0.6517 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 34 . 41.1678 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 35 2 1.0272 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 36 5 1.2263 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 37 m 14.1120 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 38 V 0.8940 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 39 6 1.2675 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 40 w 15.0834 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 41 T 1.6066 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 42 M 0.9030 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 43 G 1.1343 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 44 b -0.0281 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 45 9 1.3177 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 46 ; 14.1020 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 47 D 1.4136 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 48 L 1.2783 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 49 y 15.0001 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 50 ‘ 0.0922 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 51 \ 1.4165 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 52 R -0.1803 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 53 < 13.9150 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 54 4 1.0179 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 55 8 0.3195 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 56 0 1.4557 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 57 A 3.4521 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 58 E 1.5430 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 59 B 1.1457 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 60 v 14.9691 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 61 k 0.2250 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 62 J 1.2514 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 63 U 3.1040 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 64 j 3.2592 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 65 ( -0.0552 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 66 7 2.6605 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 67 § -1.0240 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 68 $ -3.9140 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 69 € 1.5394 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 70 / -1.7152 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 71 C 1.4393 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 72 * 0.1710 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 73 ” 0.0262 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 74 ? 1.2284 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 75 { -0.0769 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 76 } -0.0027 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 77 , 41.5962 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 78 I 2.1537 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 79 ° -2.5327 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 80 K 1.1053 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 81 H 1.0819 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 82 q 14.1750 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 83 & 1.3995 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 84 ’ -0.0731 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 85 [ 2.2729 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 86 - 27.7170 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 87 Y 0.9839 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 88 Q 0.9901 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 89 " 0.0885 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 90 ! 0.0552 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 91 x 15.0740 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 92 ) -0.0850 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 93 = 19.8701 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 94 + 15.1389 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 95 X 0.8523 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 96 » 14.9557 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 97 ' 0.2754 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 98 ¢ -4.8622 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 99 Z 2.2699 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 100 > 15.0976 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 101 ® -1.0309 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 102 © -0.4641 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 103 ] 2.3488 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 104 é -2.4630 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 105 z 14.9014 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 106 _ 50.0754 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 89 " 18.1023 18.4848 107 ¥ 3.8966 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 1 t 5.6749 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 2 h -0.0195 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 3 a 15.2176 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 4 n 14.4552 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 5 P 0.9311 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 6 o 15.2728 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 7 e 14.9859 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 8 : 13.8070 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 9 r 15.2918 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 10 l -0.1193 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 11 i 2.9977 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 12 1 1.0077 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 13 | -3.8069 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 14 N 1.2268 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 15 f 0.0195 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 16 g 15.2406 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 17 d 0.1511 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 18 W 1.0888 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 19 s 15.1938 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 20 c 15.0752 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 21 u 15.2371 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 22 3 1.1354 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 23 ~ 19.3457 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 24 # -2.4673 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 25 O 1.0688 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 26 ` -2.3805 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 27 @ -1.0018 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 28 F 1.3085 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 29 S 3.4938 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 30 p 13.8369 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 31 “ 0.1126 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 32 % -1.6460 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 33 £ 0.4839 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 34 . 40.8506 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 35 2 1.1188 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 36 5 1.3037 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 37 m 14.0909 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 38 V 1.1597 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 39 6 1.2333 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 40 w 15.1819 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 41 T 1.6947 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 42 M 1.2704 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 43 G 1.0688 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 44 b 0.1326 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 45 9 1.2533 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 46 ; 14.0184 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 47 D 1.1762 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 48 L 1.1676 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 49 y 15.1240 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 50 ‘ -0.1085 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 51 \ 1.2394 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 52 R 0.0159 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 53 < 14.1490 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 54 4 1.0553 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 55 8 -0.0655 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 56 0 1.1462 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 57 A 3.4813 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 58 E 1.3919 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 59 B 0.9744 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 60 v 15.1462 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 61 k 0.1488 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 62 J 0.9974 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 63 U 3.2473 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 64 j 3.5314 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 65 ( -0.0714 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 66 7 2.3927 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 67 § -0.9877 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 68 $ -3.6893 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 69 € 1.3819 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 70 / -1.2937 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 71 C 1.3791 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 72 * 0.1603 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 73 ” -0.0714 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 74 ? 1.2379 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 75 { 0.0000 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 76 } 0.0833 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 77 , 41.4706 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 78 I 2.5308 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 79 ° -2.6384 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 80 K 1.0986 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 81 H 1.3992 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 82 q 13.9258 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 83 & 1.1462 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 84 ’ -0.0926 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 85 [ 2.2729 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 86 - 27.8639 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 87 Y 0.9349 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 88 Q 1.0684 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 89 " 0.0000 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 90 ! -0.0357 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 91 x 15.2736 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 92 ) 0.0412 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 93 = 19.7590 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 94 + 15.1537 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 95 X 1.3145 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 96 » 15.0553 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 97 ' 0.1218 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 98 ¢ -4.7210 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 99 Z 2.7296 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 100 > 15.1819 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 101 ® -0.9292 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 102 © -0.3098 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 103 ] 2.3452 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 104 é -2.4429 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 105 z 15.4131 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 106 _ 50.0500 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 90 ! 7.8910 46.5848 107 ¥ 3.9873 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 1 t -9.2302 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 2 h -14.9500 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 3 a -0.0844 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 4 n -0.9548 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 5 P -13.9876 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 6 o 0.3524 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 7 e 0.0157 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 8 : -1.6647 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 9 r -0.0044 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 10 l -15.1851 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 11 i -12.1385 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 12 1 -14.1323 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 13 | -18.5912 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 14 N -13.8612 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 15 f -15.2366 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 16 g -0.2725 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 17 d -15.1164 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 18 W -14.1016 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 19 s 0.0333 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 20 c -0.1327 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 21 u -0.2180 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 22 3 -13.8936 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 23 ~ 3.9008 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 24 # -17.3347 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 25 O -14.0769 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 26 ` -17.5501 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 27 @ -16.6183 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 28 F -13.8842 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 29 S -11.7734 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 30 p -1.4184 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 31 “ -14.8862 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 32 % -16.4316 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 33 £ -14.6516 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 34 . 25.9107 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 35 2 -13.9924 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 36 5 -14.0473 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 37 m -1.0081 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 38 V -13.9559 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 39 6 -13.8726 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 40 w 0.0560 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 41 T -13.9229 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 42 M -14.1645 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 43 G -14.0000 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 44 b -15.0916 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 45 9 -13.8258 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 46 ; -0.9054 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 47 D -14.0719 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 48 L -13.8141 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 49 y 0.0969 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 50 ‘ -14.8598 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 51 \ -14.3095 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 52 R -15.4216 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 53 < -0.0822 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 54 4 -14.2624 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 55 8 -15.5153 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 56 0 -13.7932 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 57 A -11.9865 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 58 E -13.9821 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 59 B -14.1246 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 60 v 0.2019 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 61 k -15.6235 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 62 J -14.2928 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 63 U -11.7095 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 64 j -11.9675 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 65 ( -15.3823 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 66 7 -12.1218 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 67 § -16.2404 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 68 $ -18.7483 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 69 € -13.7332 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 70 / -16.7518 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 71 C -13.7273 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 72 * -15.0891 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 73 ” -15.0702 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 74 ? -13.9632 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 75 { -15.2951 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 76 } -15.3171 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 77 , 26.4903 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 78 I -12.7872 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 79 ° -17.7045 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 80 K -13.9670 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 81 H -13.7401 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 82 q -1.0640 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 83 & -14.2809 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 84 ’ -14.7914 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 85 [ -12.7290 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 86 - 12.1500 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 87 Y -13.9194 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 88 Q -14.0132 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 89 " -15.2533 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 90 ! -15.3008 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 91 x -0.0108 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 92 ) -15.3882 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 93 = 4.8404 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 94 + 0.1398 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 95 X -13.8377 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 96 » -0.0447 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 97 ' -15.2501 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 98 ¢ -20.0649 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 99 Z -12.3763 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 100 > -1.1958 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 101 ® -16.1806 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 102 © -15.5432 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 103 ] -12.7514 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 104 é -17.7477 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 105 z 0.2626 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 106 _ 34.9396 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 91 x 32.5848 31.4386 107 ¥ -11.3299 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 1 t 5.8632 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 2 h 0.0739 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 3 a 15.1803 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 4 n 14.2448 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 5 P 1.1327 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 6 o 14.9823 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 7 e 14.8010 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 8 : 13.6055 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 9 r 14.8629 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 10 l 0.0108 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 11 i 3.3751 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 12 1 1.3664 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 13 | -3.5400 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 14 N 1.1581 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 15 f 0.0728 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 16 g 15.0629 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 17 d 0.0682 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 18 W 1.0434 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 19 s 15.1038 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 20 c 15.0545 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 21 u 15.0351 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 22 3 1.1462 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 23 ~ 19.2073 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 24 # -2.2987 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 25 O 1.4244 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 26 ` -2.3655 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 27 @ -0.7912 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 28 F 1.0304 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 29 S 3.3679 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 30 p 13.9108 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 31 “ -0.0739 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 32 % -1.8898 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 33 £ 0.3408 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 34 . 41.3853 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 35 2 1.2546 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 36 5 1.2253 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 37 m 14.0202 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 38 V 1.2236 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 39 6 1.1013 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 40 w 15.1267 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 41 T 1.6386 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 42 M 1.1462 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 43 G 0.8696 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 44 b -0.2013 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 45 9 1.3726 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 46 ; 14.2675 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 47 D 0.9094 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 48 L 1.1462 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 49 y 15.1827 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 50 ‘ 0.1710 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 51 \ 1.1462 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 52 R -0.2750 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 53 < 13.9804 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 54 4 0.9877 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 55 8 -0.0350 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 56 0 1.2520 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 57 A 3.1994 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 58 E 1.2231 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 59 B 1.1556 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 60 v 15.3275 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 61 k 0.0132 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 62 J 1.1137 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 63 U 3.2551 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 64 j 3.1703 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 65 ( 0.2175 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 66 7 2.6076 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 67 § -1.2144 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 68 $ -3.5969 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 69 € 1.2962 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 70 / -1.5290 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 71 C 1.3105 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 72 * -0.0463 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 73 ” 0.1084 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 74 ? 1.0525 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 75 { 0.0524 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 76 } 0.0175 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 77 , 41.5185 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 78 I 2.3460 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 79 ° -2.4726 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 80 K 0.9422 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 81 H 1.0769 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 82 q 13.9563 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 83 & 1.1435 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 84 ’ -0.2478 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 85 [ 2.2865 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 86 - 27.5294 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 87 Y 1.0434 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 88 Q 0.9895 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 89 " 0.0885 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 90 ! 0.1126 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 91 x 15.1781 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 92 ) 0.1818 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 93 = 19.7786 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 94 + 14.9158 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 95 X 1.2885 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 96 » 15.2128 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 97 ' -0.2186 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 98 ¢ -4.9271 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 99 Z 2.8287 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 100 > 15.4387 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 101 ® -0.8165 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 102 © -0.3098 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 103 ] 2.0872 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 104 é -2.6905 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 105 z 15.3081 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 106 _ 49.9695 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 92 ) 18.8705 57.8144 107 ¥ 3.9531 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 1 t -13.7065 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 2 h -20.0893 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 3 a -4.7005 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 4 n -5.5746 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 5 P -18.4641 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 6 o -4.7324 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 7 e -4.6350 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 8 : -6.2696 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 9 r -4.6313 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 10 l -19.4221 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 11 i -16.6412 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 12 1 -18.8328 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 13 | -23.5474 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 14 N -18.8363 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 15 f -19.6330 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 16 g -4.6832 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 17 d -19.8074 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 18 W -18.6908 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 19 s -4.7129 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 20 c -4.7643 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 21 u -4.7262 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 22 3 -18.6949 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 23 ~ -0.5941 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 24 # -22.2277 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 25 O -18.4312 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 26 ` -21.9156 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 27 @ -20.8937 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 28 F -18.8255 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 29 S -16.1796 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 30 p -5.6963 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 31 “ -19.7982 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 32 % -21.0955 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 33 £ -19.0771 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 34 . 21.5305 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 35 2 -18.6480 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 36 5 -18.5284 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 37 m -5.7192 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 38 V -18.4669 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 39 6 -18.8398 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 40 w -5.1455 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 41 T -18.3150 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 42 M -18.2916 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 43 G -18.7866 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 44 b -19.8835 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 45 9 -18.5961 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 46 ; -5.7318 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 47 D -18.6517 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 48 L -18.5000 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 49 y -4.8384 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 50 ‘ -19.5832 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 51 \ -18.7217 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 52 R -19.7120 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 53 < -5.3866 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 54 4 -18.4807 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 55 8 -19.9490 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 56 0 -18.6870 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 57 A -16.1331 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 58 E -18.7811 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 59 B -18.7477 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 60 v -4.9998 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 61 k -20.0486 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 62 J -18.7976 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 63 U -16.5263 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 64 j -16.2171 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 65 ( -19.7530 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 66 7 -17.1259 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 67 § -21.2246 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 68 $ -23.6011 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 69 € -18.5677 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 70 / -21.3077 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 71 C -18.2924 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 72 * -19.8164 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 73 ” -19.8415 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 74 ? -18.4210 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 75 { -20.0074 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 76 } -19.8349 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 77 , 22.1464 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 78 I -17.3340 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 79 ° -22.2435 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 80 K -18.5655 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 81 H -18.5024 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 82 q -5.9206 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 83 & -18.7662 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 84 ’ -19.7316 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 85 [ -17.4693 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 86 - 7.7578 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 87 Y -18.4330 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 88 Q -18.3042 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 89 " -19.9905 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 90 ! -19.5347 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 91 x -4.7107 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 92 ) -19.6733 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 93 = -0.0866 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 94 + -4.5328 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 95 X -18.6655 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 96 » -4.6680 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 97 ' -19.5850 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 98 ¢ -24.5111 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 99 Z -17.2234 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 100 > -4.5403 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 101 ® -20.7528 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 102 © -19.8771 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 103 ] -17.5592 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 104 é -22.4834 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 105 z -4.6402 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 106 _ 30.2331 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 93 = 23.8334 17.7502 107 ¥ -15.8200 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 1 t -9.1448 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 2 h -15.0198 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 3 a 0.3381 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 4 n -0.4983 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 5 P -14.1718 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 6 o 0.2038 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 7 e 0.2358 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 8 : -1.4406 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 9 r 0.1703 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 10 l -15.0060 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 11 i -11.7104 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 12 1 -13.7329 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 13 | -18.6439 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 14 N -13.7697 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 15 f -14.9517 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 16 g 0.0842 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 17 d -15.1326 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 18 W -13.9456 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 19 s -0.1134 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 20 c -0.0609 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 21 u -0.2237 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 22 3 -14.3107 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 23 ~ 4.1481 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 24 # -17.2985 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 25 O -13.8691 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 26 ` -17.4141 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 27 @ -16.0832 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 28 F -14.0511 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 29 S -11.8238 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 30 p -0.9132 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 31 “ -15.1497 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 32 % -16.4152 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 33 £ -14.2398 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 34 . 25.9323 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 35 2 -13.8035 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 36 5 -13.6446 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 37 m -1.0959 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 38 V -13.9208 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 39 6 -13.8114 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 40 w 0.2695 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 41 T -13.7301 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 42 M -13.8979 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 43 G -13.8288 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 44 b -15.2025 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 45 9 -13.8426 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 46 ; -1.0351 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 47 D -13.8431 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 48 L -13.7080 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 49 y 0.0013 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 50 ‘ -14.9163 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 51 \ -13.7485 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 52 R -15.4604 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 53 < -0.7646 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 54 4 -13.9868 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 55 8 -15.1418 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 56 0 -13.8733 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 57 A -12.0723 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 58 E -13.7423 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 59 B -13.8476 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 60 v 0.3451 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 61 k -15.0691 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 62 J -13.6930 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 63 U -12.1920 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 64 j -12.0536 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 65 ( -15.0853 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 66 7 -12.3807 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 67 § -16.1463 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 68 $ -19.0277 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 69 € -13.5611 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 70 / -16.5873 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 71 C -13.4127 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 72 * -15.3017 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 73 ” -15.1497 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 74 ? -13.9650 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 75 { -15.1705 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 76 } -14.7140 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 77 , 26.6096 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 78 I -12.3506 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 79 ° -17.2573 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 80 K -13.9123 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 81 H -14.0197 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 82 q -0.7933 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 83 & -14.0164 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 84 ’ -15.1600 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 85 [ -12.9214 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 86 - 12.7713 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 87 Y -13.9843 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 88 Q -13.7784 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 89 " -15.2790 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 90 ! -15.3198 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 91 x 0.3469 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 92 ) -15.1421 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 93 = 4.8098 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 94 + -0.1214 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 95 X -14.0333 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 96 » -0.0327 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 97 ' -15.0476 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 98 ¢ -19.7586 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 99 Z -12.7644 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 100 > 0.3060 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 101 ® -16.1135 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 102 © -15.2952 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 103 ] -12.6607 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 104 é -17.4193 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 105 z 0.4368 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 106 _ 34.8108 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 94 + 26.7538 24.5560 107 ¥ -10.8854 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 1 t 4.8117 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 2 h -1.0110 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 3 a 13.9258 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 4 n 13.0508 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 5 P 0.1024 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 6 o 14.1055 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 7 e 13.9527 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 8 : 12.3624 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 9 r 14.1239 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 10 l -0.8242 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 11 i 1.9696 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 12 1 -0.0790 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 13 | -4.6519 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 14 N -0.2701 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 15 f -0.9636 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 16 g 14.0867 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 17 d -0.9149 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 18 W 0.1631 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 19 s 14.0937 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 20 c 14.3147 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 21 u 14.0533 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 22 3 0.1046 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 23 ~ 18.1973 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 24 # -3.6202 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 25 O 0.0374 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 26 ` -3.7819 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 27 @ -2.1952 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 28 F 0.1163 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 29 S 2.7108 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 30 p 12.4850 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 31 “ -1.1018 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 32 % -2.5938 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 33 £ -0.3339 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 34 . 40.0887 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 35 2 -0.4132 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 36 5 0.0051 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 37 m 13.4307 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 38 V 0.0746 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 39 6 -0.3070 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 40 w 14.1175 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 41 T 0.3975 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 42 M 0.0639 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 43 G 0.0382 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 44 b -0.9398 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 45 9 -0.2068 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 46 ; 13.1788 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 47 D -0.0287 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 48 L 0.0357 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 49 y 13.9063 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 50 ‘ -1.0000 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 51 \ 0.3099 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 52 R -0.9889 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 53 < 14.0921 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 54 4 0.0933 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 55 8 -1.1830 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 56 0 -0.1709 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 57 A 1.9619 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 58 E -0.0411 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 59 B 0.1306 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 60 v 14.0324 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 61 k -0.9409 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 62 J 0.0686 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 63 U 1.9842 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 64 j 2.3332 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 65 ( -1.3861 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 66 7 1.6548 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 67 § -2.2410 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 68 $ -4.8655 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 69 € 0.2566 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 70 / -2.4886 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 71 C 0.4582 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 72 * -1.1040 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 73 ” -1.2864 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 74 ? -0.0256 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 75 { -1.4271 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 76 } -1.2606 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 77 , 40.3224 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 78 I 1.3407 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 79 ° -3.5523 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 80 K -0.0171 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 81 H -0.3141 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 82 q 12.7550 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 83 & 0.0637 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 84 ’ -0.9877 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 85 [ 1.3617 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 86 - 26.6390 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 87 Y -0.1401 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 88 Q 0.0994 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 89 " -0.9422 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 90 ! -1.2094 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 91 x 14.0018 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 92 ) -1.1517 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 93 = 18.6029 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 94 + 13.6338 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 95 X 0.3166 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 96 » 14.4238 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 97 ' -1.2367 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 98 ¢ -6.0662 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 99 Z 1.5158 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 100 > 13.0189 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 101 ® -2.1417 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 102 © -1.8987 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 103 ] 1.3457 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 104 é -3.8561 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 105 z 13.6869 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 106 _ 48.5086 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 95 X 39.8076 45.4386 107 ¥ 2.5887 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 1 t -9.0493 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 2 h -15.1755 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 3 a -0.3881 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 4 n -0.6336 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 5 P -14.2440 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 6 o 0.1788 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 7 e -0.2505 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 8 : -1.5205 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 9 r -0.1437 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 10 l -15.0042 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 11 i -11.9986 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 12 1 -14.3264 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 13 | -18.8777 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 14 N -14.2376 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 15 f -15.5788 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 16 g -0.2289 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 17 d -15.1762 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 18 W -14.0874 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 19 s -0.0654 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 20 c 0.2317 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 21 u 0.3679 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 22 3 -14.0937 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 23 ~ 3.9823 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 24 # -17.7909 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 25 O -14.0752 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 26 ` -17.5780 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 27 @ -16.2476 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 28 F -14.0083 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 29 S -11.9199 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 30 p -0.8708 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 31 “ -15.3307 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 32 % -16.1424 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 33 £ -14.5579 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 34 . 25.8063 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 35 2 -14.4043 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 36 5 -14.3457 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 37 m -1.5512 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 38 V -14.0571 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 39 6 -13.7984 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 40 w -0.2013 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 41 T -13.7266 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 42 M -14.0796 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 43 G -13.6778 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 44 b -14.8685 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 45 9 -14.0449 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 46 ; -0.8879 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 47 D -14.2394 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 48 L -13.7189 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 49 y 0.0382 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 50 ‘ -15.0661 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 51 \ -13.8252 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 52 R -15.0556 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 53 < -0.9775 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 54 4 -13.6611 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 55 8 -14.8648 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 56 0 -14.0996 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 57 A -11.7381 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 58 E -14.0660 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 59 B -14.1513 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 60 v -0.2891 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 61 k -14.8153 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 62 J -14.2002 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 63 U -11.6972 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 64 j -11.6501 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 65 ( -14.6078 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 66 7 -12.4284 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 67 § -16.4050 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 68 $ -19.1279 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 69 € -13.7941 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 70 / -16.5884 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 71 C -13.7259 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 72 * -15.0014 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 73 ” -15.4446 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 74 ? -14.0076 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 75 { -15.8020 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 76 } -15.2522 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 77 , 26.4332 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 78 I -12.5797 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 79 ° -17.4196 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 80 K -13.9531 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 81 H -14.2964 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 82 q -1.1375 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 83 & -13.7275 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 84 ’ -14.9250 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 85 [ -12.8861 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 86 - 12.4789 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 87 Y -13.9583 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 88 Q -14.1067 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 89 " -15.2938 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 90 ! -15.1906 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 91 x -0.0900 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 92 ) -15.3183 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 93 = 4.5845 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 94 + -0.4521 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 95 X -13.7408 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 96 » -0.0909 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 97 ' -15.0448 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 98 ¢ -20.3255 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 99 Z -12.5432 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 100 > -0.0060 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 101 ® -16.0202 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 102 © -15.7544 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 103 ] -12.9112 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 104 é -17.6903 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 105 z -0.2401 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 106 _ 34.6606 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 96 » 37.0411 25.4576 107 ¥ -11.2081 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 1 t 5.8096 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 2 h -0.1918 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 3 a 15.2793 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 4 n 14.4182 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 5 P 1.1844 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 6 o 15.2606 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 7 e 15.1990 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 8 : 13.6704 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 9 r 14.9257 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 10 l 0.0048 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 11 i 3.0015 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 12 1 1.1490 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 13 | -3.5334 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 14 N 1.1030 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 15 f -0.2782 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 16 g 15.2204 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 17 d -0.0619 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 18 W 1.0629 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 19 s 15.3599 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 20 c 15.2923 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 21 u 15.0525 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 22 3 1.3785 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 23 ~ 19.2163 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 24 # -2.1878 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 25 O 1.0618 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 26 ` -2.4813 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 27 @ -0.9507 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 28 F 1.1132 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 29 S 3.3179 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 30 p 13.8226 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 31 “ -0.0926 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 32 % -1.3580 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 33 £ 0.4200 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 34 . 41.3164 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 35 2 1.0591 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 36 5 0.9982 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 37 m 14.1250 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 38 V 0.9037 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 39 6 0.9859 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 40 w 15.0168 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 41 T 1.2937 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 42 M 1.1462 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 43 G 1.1954 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 44 b -0.1377 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 45 9 1.2838 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 46 ; 14.2259 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 47 D 0.9272 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 48 L 0.9359 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 49 y 15.0740 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 50 ‘ -0.0417 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 51 \ 1.0150 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 52 R -0.4439 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 53 < 14.2707 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 54 4 1.4379 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 55 8 0.3361 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 56 0 1.1343 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 57 A 3.3612 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 58 E 1.1260 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 59 B 1.1300 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 60 v 15.2593 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 61 k -0.0442 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 62 J 1.1517 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 63 U 3.3852 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 64 j 3.5902 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 65 ( 0.0917 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 66 7 2.6904 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 67 § -1.0774 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 68 $ -3.9075 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 69 € 1.7118 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 70 / -1.3787 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 71 C 1.4560 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 72 * 0.2484 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 73 ” 0.0964 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 74 ? 1.0477 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 75 { 0.0412 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 76 } -0.2587 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 77 , 41.6854 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 78 I 2.6412 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 79 ° -2.3411 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 80 K 0.8264 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 81 H 0.9668 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 82 q 14.0269 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 83 & 1.0664 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 84 ’ 0.0766 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 85 [ 2.3054 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 86 - 27.5016 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 87 Y 1.2728 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 88 Q 1.3964 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 89 " -0.3358 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 90 ! -0.1131 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 91 x 14.9025 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 92 ) 0.1138 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 93 = 19.9995 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 94 + 15.0647 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 95 X 1.3061 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 96 » 15.2287 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 97 ' -0.0492 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 98 ¢ -4.9628 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 99 Z 2.2407 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 100 > 15.1879 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 101 ® -1.1681 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 102 © -0.3673 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 103 ] 2.4166 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 104 é -2.5114 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 105 z 15.1400 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 106 _ 50.2785 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 97 ' 7.7333 18.4848 107 ¥ 3.9691 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 1 t 10.8393 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 2 h 5.1681 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 3 a 20.1376 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 4 n 19.3751 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 5 P 6.0212 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 6 o 20.2479 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 7 e 19.7614 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 8 : 18.7720 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 9 r 20.0209 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 10 l 4.9715 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 11 i 8.1848 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 12 1 6.0242 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 13 | 1.2400 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 14 N 6.1860 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 15 f 4.9352 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 16 g 20.1642 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 17 d 4.7982 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 18 W 5.9783 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 19 s 19.9775 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 20 c 20.1235 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 21 u 20.2578 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 22 3 6.1367 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 23 ~ 23.9130 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 24 # 2.3097 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 25 O 6.1171 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 26 ` 2.5260 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 27 @ 3.9922 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 28 F 6.1396 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 29 S 8.4802 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 30 p 18.7623 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 31 “ 4.9628 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 32 % 3.6638 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 33 £ 5.0679 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 34 . 46.1441 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 35 2 6.1095 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 36 5 6.1090 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 37 m 18.9267 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 38 V 5.9737 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 39 6 6.2102 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 40 w 20.2469 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 41 T 6.3024 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 42 M 5.9542 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 43 G 5.9561 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 44 b 5.0040 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 45 9 6.1253 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 46 ; 19.3719 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 47 D 6.0064 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 48 L 6.0928 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 49 y 19.8666 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 50 ‘ 4.8930 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 51 \ 6.0285 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 52 R 5.0067 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 53 < 18.7867 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 54 4 6.2135 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 55 8 5.3958 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 56 0 6.1599 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 57 A 8.7280 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 58 E 6.0384 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 59 B 6.2357 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 60 v 19.7456 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 61 k 4.9573 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 62 J 6.1430 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 63 U 7.9455 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 64 j 8.4859 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 65 ( 4.8587 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 66 7 7.5239 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 67 § 4.1712 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 68 $ 1.1494 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 69 € 6.5664 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 70 / 3.6936 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 71 C 6.2991 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 72 * 4.7285 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 73 ” 5.0343 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 74 ? 6.1095 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 75 { 4.8882 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 76 } 5.0135 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 77 , 46.4551 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 78 I 7.5154 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 79 ° 2.8481 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 80 K 6.0479 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 81 H 6.0928 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 82 q 19.2696 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 83 & 6.3430 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 84 ’ 5.0700 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 85 [ 7.1506 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 86 - 33.0075 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 87 Y 5.8745 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 88 Q 5.9512 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 89 " 5.1851 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 90 ! 4.9689 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 91 x 19.7203 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 92 ) 4.8297 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 93 = 24.6829 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 94 + 20.1221 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 95 X 5.8558 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 96 » 19.8222 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 97 ' 4.9330 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 98 ¢ -0.0967 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 99 Z 7.4386 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 100 > 20.2448 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 101 ® 4.0309 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 102 © 4.9284 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 103 ] 7.2558 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 104 é 2.3693 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 105 z 20.1013 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 106 _ 55.0588 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 98 ¢ 31.9743 49.3552 107 ¥ 8.7668 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 1 t 2.9871 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 2 h -2.4832 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 3 a 12.7366 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 4 n 11.7144 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 5 P -1.6400 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 6 o 12.6538 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 7 e 12.7171 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 8 : 11.1002 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 9 r 12.3091 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 10 l -2.6022 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 11 i 0.3803 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 12 1 -1.4738 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 13 | -6.1083 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 14 N -1.5358 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 15 f -2.6109 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 16 g 12.4535 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 17 d -2.4069 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 18 W -1.4985 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 19 s 12.8638 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 20 c 12.6211 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 21 u 12.1964 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 22 3 -1.6306 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 23 ~ 16.6898 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 24 # -4.8707 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 25 O -1.6054 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 26 ` -4.9356 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 27 @ -3.9490 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 28 F -1.6333 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 29 S 0.8930 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 30 p 11.4330 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 31 “ -2.3864 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 32 % -4.2137 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 33 £ -2.2982 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 34 . 38.6664 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 35 2 -1.1161 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 36 5 -1.6660 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 37 m 11.3842 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 38 V -1.5202 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 39 6 -1.5299 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 40 w 12.5813 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 41 T -1.1632 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 42 M -1.3608 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 43 G -1.5816 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 44 b -2.9447 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 45 9 -1.1636 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 46 ; 11.8032 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 47 D -1.2870 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 48 L -1.4793 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 49 y 12.6062 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 50 ‘ -2.8008 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 51 \ -1.4418 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 52 R -2.5647 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 53 < 12.2920 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 54 4 -1.5522 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 55 8 -2.4749 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 56 0 -1.3764 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 57 A 0.7389 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 58 E -1.3013 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 59 B -1.6154 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 60 v 12.1478 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 61 k -2.3566 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 62 J -1.2755 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 63 U 0.8778 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 64 j 0.5269 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 65 ( -2.7852 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 66 7 -0.1727 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 67 § -3.7544 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 68 $ -6.5399 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 69 € -0.9377 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 70 / -3.9592 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 71 C -1.3925 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 72 * -2.4956 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 73 ” -2.6218 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 74 ? -1.4291 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 75 { -2.7073 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 76 } -2.6044 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 77 , 38.8959 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 78 I 0.1655 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 79 ° -4.9713 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 80 K -1.2933 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 81 H -1.4490 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 82 q 11.3259 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 83 & -1.4509 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 84 ’ -2.5124 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 85 [ 0.0288 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 86 - 25.1852 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 87 Y -1.2882 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 88 Q -1.4983 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 89 " -2.5113 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 90 ! -2.5113 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 91 x 12.0755 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 92 ) -2.7051 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 93 = 17.2147 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 94 + 12.5510 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 95 X -1.2609 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 96 » 12.5402 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 97 ' -2.6522 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 98 ¢ -7.5543 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 99 Z 0.2270 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 100 > 11.3509 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 101 ® -3.3769 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 102 © -2.9954 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 103 ] -0.4917 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 104 é -5.0433 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 105 z 12.6990 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 106 _ 47.1935 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 99 Z 40.3758 43.9826 107 ¥ 1.5871 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 1 t -8.3643 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 2 h -14.3294 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 3 a 0.8457 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 4 n 0.2253 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 5 P -13.2761 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 6 o 0.9366 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 7 e 1.1720 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 8 : -1.4485 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 9 r 1.0772 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 10 l -14.0121 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 11 i -10.8883 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 12 1 -14.0792 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 13 | -18.7719 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 14 N -13.3074 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 15 f -14.2262 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 16 g 0.7393 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 17 d -14.3130 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 18 W -13.1206 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 19 s 0.9802 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 20 c 0.8767 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 21 u 0.7721 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 22 3 -14.0140 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 23 ~ 4.2487 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 24 # -17.6906 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 25 O -13.0466 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 26 ` -17.4092 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 27 @ -16.2109 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 28 F -13.2357 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 29 S -10.5968 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 30 p -0.3787 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 31 “ -15.1500 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 32 % -16.6652 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 33 £ -14.9246 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 34 . 26.0552 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 35 2 -14.0088 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 36 5 -13.9389 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 37 m -0.0193 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 38 V -13.0142 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 39 6 -13.8629 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 40 w 1.3378 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 41 T -12.8607 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 42 M -13.0055 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 43 G -13.1005 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 44 b -14.2640 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 45 9 -14.1876 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 46 ; -0.9810 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 47 D -13.2469 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 48 L -13.0634 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 49 y 0.7537 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 50 ‘ -15.4583 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 51 \ -14.0781 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 52 R -14.3154 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 53 < -0.8966 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 54 4 -13.8758 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 55 8 -15.4197 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 56 0 -14.0417 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 57 A -10.6801 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 58 E -12.9477 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 59 B -12.9725 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 60 v 0.8489 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 61 k -13.9894 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 62 J -13.1955 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 63 U -10.6452 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 64 j -10.5150 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 65 ( -15.2379 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 66 7 -12.2022 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 67 § -16.3606 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 68 $ -18.8207 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 69 € -13.5596 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 70 / -16.7511 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 71 C -12.7258 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 72 * -15.2725 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 73 ” -15.1435 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 74 ? -14.1391 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 75 { -15.2722 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 76 } -15.1045 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 77 , 26.3441 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 78 I -11.5744 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 79 ° -17.2119 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 80 K -13.0602 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 81 H -13.1384 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 82 q -0.3880 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 83 & -13.8971 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 84 ’ -15.0693 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 85 [ -12.7208 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 86 - 12.7760 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 87 Y -12.8693 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 88 Q -13.1980 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 89 " -15.3362 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 90 ! -15.0861 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 91 x 0.8261 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 92 ) -15.0591 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 93 = 4.8580 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 94 + 0.1309 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 95 X -12.8156 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 96 » 0.2364 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 97 ' -15.1974 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 98 ¢ -20.1293 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 99 Z -11.9283 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 100 > -0.0055 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 101 ® -15.9416 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 102 © -15.5257 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 103 ] -12.9659 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 104 é -16.5175 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 100 > 21.3129 26.8538 105 z 0.6202 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 106 _ 34.5927 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 100 > 19.6667 24.6614 107 ¥ -11.2934 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 1 t 7.1893 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 2 h 1.3258 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 3 a 16.0053 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 4 n 15.1899 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 5 P 2.3272 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 6 o 16.1778 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 7 e 16.1698 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 8 : 14.8982 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 9 r 16.3321 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 10 l 0.6553 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 11 i 3.9141 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 12 1 2.3154 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 13 | -2.8504 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 14 N 2.3497 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 15 f 0.8380 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 16 g 16.2144 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 17 d 0.8276 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 18 W 1.8741 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 19 s 16.2662 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 20 c 16.0480 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 21 u 15.8635 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 22 3 1.9141 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 23 ~ 19.6773 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 24 # -1.5830 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 25 O 1.7452 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 26 ` -1.4761 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 27 @ -0.0383 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 28 F 2.0258 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 29 S 4.3782 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 30 p 14.4840 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 31 “ 0.8533 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 32 % -0.6622 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 33 £ 1.7791 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 34 . 42.4814 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 35 2 2.1551 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 36 5 2.5030 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 37 m 15.2587 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 38 V 2.1985 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 39 6 2.2083 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 40 w 15.8591 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 41 T 2.5157 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 42 M 1.9814 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 43 G 2.2170 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 44 b 0.9120 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 45 9 1.8151 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 46 ; 15.2280 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 47 D 2.2237 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 48 L 2.1155 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 49 y 16.0731 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 50 ‘ 0.9494 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 51 \ 2.2326 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 52 R 0.6969 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 53 < 15.1337 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 54 4 2.0539 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 55 8 0.9632 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 56 0 2.5140 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 57 A 4.4585 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 58 E 2.3157 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 59 B 2.0730 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 60 v 15.9442 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 61 k 0.9824 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 62 J 1.9381 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 63 U 4.2487 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 64 j 4.0007 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 65 ( 1.1029 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 66 7 3.7497 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 67 § 0.0703 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 68 $ -2.8152 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 69 € 2.4082 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 70 / -0.5098 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 71 C 2.2594 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 72 * 1.0214 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 73 ” 0.8193 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 74 ? 2.2515 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 75 { 1.1466 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 76 } 0.4585 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 77 , 42.4431 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 78 I 3.3081 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 79 ° -1.2645 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 80 K 1.8078 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 81 H 2.1412 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 82 q 14.5768 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 83 & 2.0898 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 84 ’ 1.5020 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 85 [ 3.7216 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 86 - 28.1910 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 87 Y 1.8040 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 88 Q 1.9993 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 89 " 1.0195 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 90 ! 0.7330 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 91 x 16.2837 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 92 ) 0.7185 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 93 = 20.7956 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 94 + 16.6360 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 95 X 2.1693 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 96 » 16.2332 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 97 ' 1.1640 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 98 ¢ -3.8451 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 99 Z 3.1953 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 100 > 15.6113 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 101 ® 0.0319 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 102 © 0.6499 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 103 ] 3.2458 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 104 é -1.5748 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 105 z 15.8440 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 106 _ 50.7517 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 101 ® 41.9346 38.6873 107 ¥ 4.8402 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 1 t 6.5190 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 2 h -0.0868 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 3 a 15.2323 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 4 n 14.7666 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 5 P 2.0822 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 6 o 15.4160 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 7 e 15.8547 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 8 : 14.3347 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 9 r 15.5719 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 10 l 0.6348 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 11 i 3.2320 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 12 1 1.4921 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 13 | -3.2681 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 14 N 1.3921 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 15 f 0.7049 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 16 g 15.4473 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 17 d 0.4429 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 18 W 1.2110 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 19 s 15.7242 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 20 c 15.4927 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 21 u 15.5500 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 22 3 1.5317 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 23 ~ 19.3354 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 24 # -2.3909 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 25 O 1.5067 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 26 ` -2.2827 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 27 @ -0.8078 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 28 F 1.5946 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 29 S 3.5548 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 30 p 14.5201 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 31 “ 0.6005 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 32 % -1.4535 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 33 £ 0.9068 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 34 . 41.1119 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 35 2 1.0668 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 36 5 1.3480 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 37 m 14.3924 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 38 V 1.6573 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 39 6 1.6009 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 40 w 15.4469 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 41 T 1.7410 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 42 M 1.2471 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 43 G 1.8703 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 44 b 0.5443 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 45 9 1.7061 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 46 ; 14.4234 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 47 D 1.1674 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 48 L 1.5962 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 49 y 15.4936 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 50 ‘ 0.3956 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 51 \ 1.5350 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 52 R 0.2057 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 53 < 14.2899 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 54 4 1.6452 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 55 8 0.4345 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 56 0 1.7169 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 57 A 4.0832 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 58 E 1.0792 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 59 B 1.1724 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 60 v 15.3402 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 61 k 0.0146 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 62 J 1.1224 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 63 U 3.7220 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 64 j 3.7036 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 65 ( 0.4809 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 66 7 2.9332 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 67 § -0.7759 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 68 $ -3.1550 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 69 € 1.7294 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 70 / -1.2030 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 71 C 1.9848 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 72 * 0.2285 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 73 ” 0.4246 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 74 ? 1.7765 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 75 { 0.3877 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 76 } 0.3520 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 77 , 41.6945 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 78 I 2.7216 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 79 ° -2.1847 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 80 K 1.4595 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 81 H 1.4249 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 82 q 14.4105 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 83 & 1.5076 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 84 ’ 0.4974 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 85 [ 2.6555 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 86 - 27.8335 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 87 Y 1.3647 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 88 Q 1.4997 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 89 " 0.3793 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 90 ! 0.2686 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 91 x 15.5342 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 92 ) 0.3454 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 93 = 19.8232 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 94 + 15.4217 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 95 X 1.5865 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 96 » 15.5056 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 97 ' 0.4547 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 98 ¢ -4.7019 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 99 Z 2.7438 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 100 > 15.3706 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 101 ® -0.2984 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 102 © -0.0052 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 103 ] 2.3395 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 104 é -2.3149 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 105 z 15.4441 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 106 _ 50.1062 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 102 © 40.8818 38.1774 107 ¥ 3.7250 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 1 t 3.4525 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 2 h -2.1130 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 3 a 12.7681 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 4 n 12.4522 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 5 P -1.1462 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 6 o 13.0105 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 7 e 13.0339 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 8 : 11.4765 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 9 r 12.7559 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 10 l -2.3092 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 11 i 0.8819 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 12 1 -1.0577 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 13 | -5.7581 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 14 N -1.3629 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 15 f -2.1380 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 16 g 12.9252 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 17 d -2.4078 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 18 W -1.0591 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 19 s 12.7464 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 20 c 13.0893 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 21 u 12.7824 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 22 3 -1.2763 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 23 ~ 16.9431 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 24 # -4.6620 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 25 O -1.1438 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 26 ` -4.9340 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 27 @ -3.4902 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 28 F -1.2339 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 29 S 0.7660 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 30 p 11.5667 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 31 “ -2.3731 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 32 % -3.7013 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 33 £ -2.0948 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 34 . 38.9419 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 35 2 -1.1732 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 36 5 -1.3120 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 37 m 11.4624 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 38 V -1.1807 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 39 6 -1.0559 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 40 w 13.0338 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 41 T -0.6614 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 42 M -1.3040 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 43 G -1.0260 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 44 b -2.3094 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 45 9 -1.3303 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 46 ; 11.9695 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 47 D -1.1132 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 48 L -1.1347 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 49 y 12.9478 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 50 ‘ -2.2833 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 51 \ -1.4939 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 52 R -2.1363 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 53 < 11.8891 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 54 4 -1.1504 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 55 8 -2.4495 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 56 0 -1.2487 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 57 A 1.1137 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 58 E -1.2041 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 59 B -1.0948 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 60 v 13.0221 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 61 k -2.3874 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 62 J -1.1652 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 63 U 0.9105 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 64 j 0.9164 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 65 ( -2.3277 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 66 7 0.4778 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 67 § -3.4743 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 68 $ -6.3320 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 69 € -0.8439 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 70 / -3.7929 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 71 C -0.6121 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 72 * -2.3362 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 73 ” -2.3400 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 74 ? -1.0910 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 75 { -2.1136 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 76 } -2.4063 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 77 , 39.2341 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 78 I 0.2360 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 79 ° -4.6082 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 80 K -1.1414 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 81 H -1.2526 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 82 q 11.8358 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 83 & -1.0688 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 84 ’ -2.4972 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 85 [ -0.0000 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 86 - 25.3807 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 87 Y -1.1386 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 88 Q -1.1050 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 89 " -2.1793 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 90 ! -2.4986 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 91 x 12.8812 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 92 ) -2.1137 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 93 = 17.7093 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 94 + 12.8735 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 95 X -1.1430 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 96 » 12.9103 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 97 ' -2.3672 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 98 ¢ -7.3711 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 99 Z 0.2189 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 100 > 12.8327 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 101 ® -2.9227 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 102 © -2.8975 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 103 ] 0.0571 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 104 é -4.7701 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 105 z 12.7180 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 106 _ 47.7576 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 103 ] 16.9880 54.8538 107 ¥ 1.5570 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 1 t 8.3865 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 2 h 2.1360 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 3 a 17.5421 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 4 n 16.9340 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 5 P 3.7152 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 6 o 17.6676 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 7 e 17.5674 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 8 : 16.2549 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 9 r 17.7461 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 10 l 2.8698 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 11 i 5.7127 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 12 1 3.6563 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 13 | -1.1494 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 14 N 3.4592 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 15 f 2.6843 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 16 g 17.8718 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 17 d 2.4424 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 18 W 3.7435 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 19 s 17.8177 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 20 c 17.5400 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 21 u 17.6129 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 22 3 3.6081 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 23 ~ 21.5380 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 24 # -0.1263 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 25 O 3.8495 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 26 ` -0.2457 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 27 @ 1.3077 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 28 F 3.7850 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 29 S 6.0239 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 30 p 16.2389 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 31 “ 2.6732 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 32 % 1.1552 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 33 £ 3.4472 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 34 . 43.6397 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 35 2 3.5387 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 36 5 3.7561 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 37 m 16.4397 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 38 V 3.6810 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 39 6 3.7096 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 40 w 17.5191 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 41 T 3.7650 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 42 M 3.5497 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 43 G 3.3383 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 44 b 2.4952 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 45 9 3.5620 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 46 ; 16.7553 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 47 D 3.5469 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 48 L 3.6321 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 49 y 17.4954 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 50 ‘ 2.4976 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 51 \ 3.5614 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 52 R 2.2287 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 53 < 17.6411 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 54 4 3.6530 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 55 8 2.4670 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 56 0 3.6327 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 57 A 6.0068 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 58 E 3.7038 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 59 B 3.5827 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 60 v 17.7641 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 61 k 2.6731 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 62 J 3.5465 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 63 U 5.6803 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 64 j 5.8919 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 65 ( 2.2533 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 66 7 5.0824 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 67 § 1.4663 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 68 $ -1.2803 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 69 € 3.9342 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 70 / 1.0018 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 71 C 3.9314 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 72 * 2.4209 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 73 ” 2.6052 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 74 ? 3.6222 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 75 { 2.5698 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 76 } 2.5782 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 77 , 43.9282 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 78 I 4.9479 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 79 ° -0.3739 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 80 K 3.8869 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 81 H 3.4033 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 82 q 16.1310 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 83 & 3.7152 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 84 ’ 2.5684 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 85 [ 4.4972 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 86 - 30.1924 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 87 Y 3.5442 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 88 Q 3.5719 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 89 " 2.4218 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 90 ! 2.4624 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 91 x 17.2636 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 92 ) 2.4749 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 93 = 22.2891 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 94 + 17.7639 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 95 X 3.2817 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 96 » 17.8811 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 97 ' 2.2880 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 98 ¢ -2.3491 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 99 Z 5.1762 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 100 > 16.7020 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 101 ® 1.4472 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 102 © 2.4115 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 103 ] 4.7705 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 104 é -0.2563 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 105 z 17.5302 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 106 _ 52.3658 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 104 é 29.0462 49.0629 107 ¥ 6.5495 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 1 t -9.3891 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 2 h -15.0755 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 3 a 0.2175 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 4 n -0.9494 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 5 P -14.3060 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 6 o 0.1016 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 7 e 0.1484 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 8 : -1.4238 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 9 r 0.0260 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 10 l -15.2014 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 11 i -12.1415 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 12 1 -13.7706 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 13 | -18.8475 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 14 N -13.6374 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 15 f -15.1698 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 16 g 0.0885 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 17 d -15.1102 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 18 W -13.7659 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 19 s -0.0357 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 20 c -0.1228 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 21 u 0.1141 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 22 3 -14.2373 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 23 ~ 4.0274 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 24 # -17.1059 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 25 O -13.9670 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 26 ` -17.9287 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 27 @ -16.2327 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 28 F -13.9562 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 29 S -11.6524 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 30 p -1.0545 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 31 “ -15.1365 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 32 % -16.4400 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 33 £ -14.7298 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 34 . 25.9177 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 35 2 -13.7962 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 36 5 -14.0382 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 37 m -0.9247 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 38 V -13.8457 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 39 6 -13.6964 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 40 w 0.0051 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 41 T -13.6999 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 42 M -13.9269 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 43 G -14.1657 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 44 b -14.9775 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 45 9 -14.1177 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 46 ; -1.0037 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 47 D -14.2677 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 48 L -13.9028 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 49 y 0.1599 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 50 ‘ -15.4407 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 51 \ -13.7243 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 52 R -15.3552 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 53 < 0.0473 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 54 4 -14.1484 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 55 8 -15.4928 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 56 0 -13.6157 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 57 A -11.6743 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 58 E -13.8054 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 59 B -14.0135 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 60 v 0.0714 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 61 k -14.9926 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 62 J -14.1543 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 63 U -11.7577 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 64 j -11.9689 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 65 ( -15.3565 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 66 7 -12.4469 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 67 § -16.4456 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 68 $ -18.7264 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 69 € -13.5947 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 70 / -16.5276 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 71 C -13.5585 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 72 * -15.3335 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 73 ” -15.0795 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 74 ? -13.9129 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 75 { -14.9682 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 76 } -15.0901 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 77 , 26.4702 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 78 I -12.5306 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 79 ° -17.7332 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 80 K -14.1626 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 81 H -13.9240 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 82 q -1.1819 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 83 & -14.1406 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 84 ’ -14.8700 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 85 [ -13.0175 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 86 - 12.7669 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 87 Y -14.0759 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 88 Q -13.9286 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 89 " -15.4216 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 90 ! -15.0824 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 91 x -0.0249 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 92 ) -15.2541 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 93 = 4.8348 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 94 + -0.3997 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 95 X -14.3161 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 96 » 0.0806 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 97 ' -15.3023 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 98 ¢ -20.2749 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 99 Z -12.4360 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 100 > -0.9955 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 101 ® -16.2115 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 102 © -15.5025 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 103 ] -12.8914 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 104 é -17.5932 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 105 z -0.4038 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 106 _ 34.8216 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 105 z 28.0000 32.1666 107 ¥ -11.1268 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 1 t -43.7816 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 2 h -49.9123 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 3 a -34.7903 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 4 n -35.3843 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 5 P -48.9458 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 6 o -34.9455 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 7 e -34.7962 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 8 : -36.1329 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 9 r -34.4903 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 10 l -50.1055 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 11 i -46.8586 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 12 1 -49.3365 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 13 | -53.5524 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 14 N -48.5083 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 15 f -50.0448 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 16 g -34.6998 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 17 d -50.0913 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 18 W -48.7540 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 19 s -35.0917 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 20 c -34.4598 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 21 u -34.9441 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 22 3 -48.7731 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 23 ~ -30.7106 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 24 # -51.9996 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 25 O -48.5792 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 26 ` -52.4167 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 27 @ -51.2550 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 28 F -48.9494 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 29 S -46.5757 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 30 p -35.6498 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 31 “ -50.0820 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 32 % -51.3654 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 33 £ -49.4572 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 34 . -8.8338 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 35 2 -48.8917 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 36 5 -48.9163 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 37 m -36.1954 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 38 V -48.9001 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 39 6 -48.7787 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 40 w -34.7171 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 41 T -48.5805 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 42 M -48.9339 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 43 G -48.7305 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 44 b -49.9456 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 45 9 -49.1043 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 46 ; -35.5395 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 47 D -48.7212 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 48 L -49.2425 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 49 y -34.6395 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 50 ‘ -50.0454 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 51 \ -48.7304 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 52 R -50.1095 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 53 < -36.2025 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 54 4 -49.0090 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 55 8 -49.9007 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 56 0 -48.8195 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 57 A -46.7225 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 58 E -48.7293 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 59 B -48.8664 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 60 v -34.4918 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 61 k -49.7811 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 62 J -48.4784 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 63 U -46.9277 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 64 j -46.7891 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 65 ( -50.1691 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 66 7 -47.2826 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 67 § -51.1616 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 68 $ -53.7776 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 69 € -48.5870 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 70 / -51.3462 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 71 C -48.4206 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 72 * -49.8488 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 73 ” -50.1965 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 74 ? -48.3637 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 75 { -49.9255 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 76 } -49.8325 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 77 , -8.6382 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 78 I -47.7744 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 79 ° -52.7509 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 80 K -48.6471 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 81 H -48.8226 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 82 q -35.8185 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 83 & -48.4740 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 84 ’ -49.9122 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 85 [ -47.7618 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 86 - -22.2767 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 87 Y -48.7381 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 88 Q -48.6400 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 89 " -50.0145 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 90 ! -50.2161 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 91 x -34.5816 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 92 ) -49.9883 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 93 = -29.8754 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 94 + -34.8403 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 95 X -48.8911 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 96 » -34.8292 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 97 ' -49.9875 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 98 ¢ -55.0276 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 99 Z -47.4758 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 100 > -34.6197 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 101 ® -50.7881 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 102 © -50.4408 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 103 ] -47.9065 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 104 é -52.3409 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 105 z -34.8015 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 106 _ -0.0682 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 106 _ 41.2720 5.3128 107 ¥ -46.0480 33.3128 42.9539 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 1 t 2.1640 26.0576 41.3961 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 2 h -4.0229 27.2297 47.3128 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 3 a 11.3196 29.4644 31.7243 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 4 n 10.5270 25.9576 33.2128 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 5 P -2.8807 27.6818 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 6 o 11.6593 28.7039 31.9166 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 7 e 11.1332 29.0462 31.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 8 : 9.5549 8.4014 28.4423 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 9 r 11.4636 24.6614 32.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 10 l -3.9236 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 11 i -0.7024 9.0372 43.4962 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 12 1 -3.1200 21.8987 44.2924 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 13 | -7.3886 9.0372 59.3386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 14 N -2.9436 42.8280 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 15 f -3.7424 27.8077 50.2091 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 16 g 11.4109 29.3962 46.1666 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 17 d -3.7932 30.6704 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 18 W -2.7043 55.5220 47.0628 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 19 s 11.0456 24.1834 31.9166 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 20 c 10.9858 26.9538 32.1666 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 21 u 11.1581 27.5220 31.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 22 3 -3.1453 29.2462 46.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 23 ~ 15.3813 31.9166 13.2720 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 24 # -6.5212 49.1976 48.9706 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 25 O -2.8635 43.0864 45.9166 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 26 ` -6.3780 15.1462 14.0000 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 27 @ -5.3044 48.8448 50.4014 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 28 F -2.9245 30.7704 46.8947 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 29 S -0.5684 37.8334 43.6242 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 30 p 9.8913 27.9077 47.3128 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 31 “ -3.7859 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 32 % -5.1447 46.2666 47.3486 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 33 £ -3.2347 43.2039 49.3487 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 34 . 37.3122 9.0295 7.2552 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 35 2 -2.4321 28.3500 44.2924 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 36 5 -2.6370 31.6886 46.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 37 m 9.9294 41.6220 34.8772 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 38 V -2.5410 35.8910 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 39 6 -2.8370 30.7347 46.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 40 w 11.1551 38.1834 33.7310 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 41 T -2.6292 40.5681 45.1288 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 42 M -3.3308 45.0533 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 43 G -2.8441 38.1834 46.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 44 b -4.0325 30.5424 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 45 9 -2.9688 33.0271 46.0100 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 46 ; 10.3643 11.7401 38.2515 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 47 D -2.8589 36.3690 47.0628 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 48 L -2.8960 30.1924 46.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 49 y 11.1165 31.4386 46.1666 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 50 ‘ -4.1328 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 51 \ -2.8391 26.1258 48.2090 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 52 R -3.8954 33.2205 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 53 < 10.1377 21.3129 26.8538 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 54 4 -2.8279 35.8976 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 55 8 -3.5655 32.1666 47.6310 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 56 0 -2.8738 33.3128 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 57 A -0.6915 36.9438 44.2924 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 58 E -2.4299 31.6919 47.0628 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 59 B -2.8558 32.2666 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 60 v 11.1019 28.3857 31.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 61 k -4.2638 28.8539 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 62 J -2.6379 37.1696 47.6310 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 63 U -0.5288 38.0834 44.3924 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 64 j -0.4090 21.8910 57.9742 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 65 ( -3.6193 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 66 7 -1.5795 34.4590 43.9826 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 67 § -5.1138 30.1001 48.8772 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 68 $ -7.5887 36.0811 60.1089 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 69 € -2.6640 38.6548 45.1288 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 70 / -5.0885 27.7143 49.4728 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 71 C -2.6455 34.0167 45.1288 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 72 * -4.0909 28.3182 23.0372 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 73 ” -3.9454 22.3333 15.1462 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 74 ? -2.7309 28.1000 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 75 { -3.9091 22.4267 56.4182 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 76 } -3.9232 23.0372 56.4182 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 77 , 37.4968 10.9796 14.0000 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 78 I -1.6190 29.0137 43.3144 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 79 ° -6.3515 21.3487 19.9167 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 80 K -2.8419 31.1204 47.3128 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 81 H -2.6340 38.5614 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 82 q 10.0093 27.8077 47.3128 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 83 & -2.8831 35.7910 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 84 ’ -3.8452 8.0833 15.1462 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 85 [ -1.7016 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 86 - 23.7479 23.0372 5.9167 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 87 Y -2.3419 35.8910 46.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 88 Q -2.5979 49.6410 56.9539 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 89 " -3.9146 18.1023 18.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 90 ! -3.9751 7.8910 46.5848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 91 x 11.0512 32.5848 31.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 92 ) -4.0278 18.8705 57.8144 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 93 = 15.6893 23.8334 17.7502 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 94 + 11.2108 26.7538 24.5560 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 95 X -2.8990 39.8076 45.4386 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 96 » 10.9312 37.0411 25.4576 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 97 ' -3.7378 7.7333 18.4848 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 98 ¢ -8.9899 31.9743 49.3552 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 99 Z -1.5795 40.3758 43.9826 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 100 > 11.4752 19.6667 24.6614 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 101 ® -4.9922 41.9346 38.6873 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 102 © -4.2324 40.8818 38.1774 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 103 ] -1.5776 16.9880 54.8538 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 104 é -6.3171 29.0462 49.0629 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 105 z 11.2370 28.0000 32.1666 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 106 _ 45.9232 41.2720 5.3128 -Comic_Sans_MS_Bold.ttf 107 ¥ 33.3128 42.9539 107 ¥ -0.1390 33.3128 42.9539 -Courier_New.ttf 1 t 26.2362 34.6034 1 t 0.1532 26.2362 34.6034 -Courier_New.ttf 1 t 26.2362 34.6034 2 h -2.1297 29.6326 35.9800 -Courier_New.ttf 1 t 26.2362 34.6034 3 a 8.5103 26.9256 26.1840 -Courier_New.ttf 1 t 26.2362 34.6034 4 n 8.4713 29.2061 25.6135 -Courier_New.ttf 1 t 26.2362 34.6034 5 P 0.8384 26.0529 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 6 o 8.3207 26.8068 26.1840 -Courier_New.ttf 1 t 26.2362 34.6034 7 e 8.3599 27.4295 26.1840 -Courier_New.ttf 1 t 26.2362 34.6034 8 : 8.6716 8.6565 25.7802 -Courier_New.ttf 1 t 26.2362 34.6034 9 r 8.6936 26.8295 25.6135 -Courier_New.ttf 1 t 26.2362 34.6034 10 l -1.8442 24.4725 35.9800 -Courier_New.ttf 1 t 26.2362 34.6034 11 i -3.3806 24.4725 37.2498 -Courier_New.ttf 1 t 26.2362 34.6034 12 1 -3.4742 22.8527 37.5770 -Courier_New.ttf 1 t 26.2362 34.6034 13 | -1.7942 2.3865 43.1932 -Courier_New.ttf 1 t 26.2362 34.6034 14 N 0.3138 31.3964 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 15 f -2.1414 25.4696 35.9800 -Courier_New.ttf 1 t 26.2362 34.6034 16 g 8.6187 27.8462 36.6565 -Courier_New.ttf 1 t 26.2362 34.6034 17 d -1.7750 30.1138 36.5505 -Courier_New.ttf 1 t 26.2362 34.6034 18 W 0.2068 32.5836 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 19 s 8.0658 23.0959 26.1840 -Courier_New.ttf 1 t 26.2362 34.6034 20 c 8.4609 26.6529 26.1840 -Courier_New.ttf 1 t 26.2362 34.6034 21 u 9.2490 29.6326 25.7802 -Courier_New.ttf 1 t 26.2362 34.6034 22 3 -2.6150 23.6959 36.7876 -Courier_New.ttf 1 t 26.2362 34.6034 23 ~ 12.7510 24.8892 8.5732 -Courier_New.ttf 1 t 26.2362 34.6034 24 # -4.3068 25.0657 42.1962 -Courier_New.ttf 1 t 26.2362 34.6034 25 O 0.0106 29.1932 34.4140 -Courier_New.ttf 1 t 26.2362 34.6034 26 ` -3.7435 9.8498 8.6565 -Courier_New.ttf 1 t 26.2362 34.6034 27 @ -3.2323 22.0800 40.4029 -Courier_New.ttf 1 t 26.2362 34.6034 28 F 0.5969 27.3234 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 29 S 0.3618 24.5392 34.4140 -Courier_New.ttf 1 t 26.2362 34.6034 30 p 8.2003 29.8826 36.6565 -Courier_New.ttf 1 t 26.2362 34.6034 31 “ -1.5741 24.6392 15.1932 -Courier_New.ttf 1 t 26.2362 34.6034 32 % -2.3920 24.3664 36.5505 -Courier_New.ttf 1 t 26.2362 34.6034 33 £ 0.1852 26.2840 33.8435 -Courier_New.ttf 1 t 26.2362 34.6034 34 . 26.7377 8.8232 7.9800 -Courier_New.ttf 1 t 26.2362 34.6034 35 2 -2.4770 23.1732 36.3838 -Courier_New.ttf 1 t 26.2362 34.6034 36 5 -1.9328 23.7437 36.3838 -Courier_New.ttf 1 t 26.2362 34.6034 37 m 8.6761 35.1594 25.6135 -Courier_New.ttf 1 t 26.2362 34.6034 38 V 0.4589 35.1140 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 39 6 -2.4505 23.7959 36.7876 -Courier_New.ttf 1 t 26.2362 34.6034 40 w 9.0439 32.7502 25.2097 -Courier_New.ttf 1 t 26.2362 34.6034 41 T 0.2138 26.8590 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 42 M 0.5279 34.5367 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 43 G 0.0070 29.5621 34.4140 -Courier_New.ttf 1 t 26.2362 34.6034 44 b -1.9693 29.8826 36.5505 -Courier_New.ttf 1 t 26.2362 34.6034 45 9 -2.5772 22.4193 36.7876 -Courier_New.ttf 1 t 26.2362 34.6034 46 ; 8.6321 12.8068 30.9570 -Courier_New.ttf 1 t 26.2362 34.6034 47 D 0.4869 28.4394 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 48 L 0.7475 28.2727 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 49 y 8.8153 29.3121 36.2527 -Courier_New.ttf 1 t 26.2362 34.6034 50 ‘ -1.9117 12.7529 17.2297 -Courier_New.ttf 1 t 26.2362 34.6034 51 \ -5.0669 24.6392 44.3865 -Courier_New.ttf 1 t 26.2362 34.6034 52 R 0.1858 30.7070 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 53 < 1.5900 28.0000 31.5797 -Courier_New.ttf 1 t 26.2362 34.6034 54 4 -1.7302 22.3232 35.9800 -Courier_New.ttf 1 t 26.2362 34.6034 55 8 -2.1743 21.3094 36.7876 -Courier_New.ttf 1 t 26.2362 34.6034 56 0 -2.2683 23.6959 36.7876 -Courier_New.ttf 1 t 26.2362 34.6034 57 A 0.4412 37.1505 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 58 E 0.6234 27.3234 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 59 B 0.4816 28.4167 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 60 v 8.6934 32.1252 25.2097 -Courier_New.ttf 1 t 26.2362 34.6034 61 k -1.8542 26.6529 35.9800 -Courier_New.ttf 1 t 26.2362 34.6034 62 J 0.6303 28.6766 34.1640 -Courier_New.ttf 1 t 26.2362 34.6034 63 U 0.3977 31.3964 34.1640 -Courier_New.ttf 1 t 26.2362 34.6034 64 j -3.1682 18.4230 48.2928 -Courier_New.ttf 1 t 26.2362 34.6034 65 ( -1.8821 8.4065 43.1932 -Courier_New.ttf 1 t 26.2362 34.6034 66 7 -2.0114 22.0027 35.9800 -Courier_New.ttf 1 t 26.2362 34.6034 67 § -1.9869 27.1696 39.8097 -Courier_New.ttf 1 t 26.2362 34.6034 68 $ -5.0717 21.8261 44.3865 -Courier_New.ttf 1 t 26.2362 34.6034 69 € 0.0236 31.2297 34.4140 -Courier_New.ttf 1 t 26.2362 34.6034 70 / -5.8161 24.6392 44.3865 -Courier_New.ttf 1 t 26.2362 34.6034 71 C 0.2894 28.2727 34.4140 -Courier_New.ttf 1 t 26.2362 34.6034 72 * -2.0582 22.0860 21.9800 -Courier_New.ttf 1 t 26.2362 34.6034 73 ” -1.9098 24.6392 15.1932 -Courier_New.ttf 1 t 26.2362 34.6034 74 ? -0.2650 21.0594 34.9406 -Courier_New.ttf 1 t 26.2362 34.6034 75 { -2.1981 11.7324 43.3121 -Courier_New.ttf 1 t 26.2362 34.6034 76 } -2.2198 11.7324 43.3121 -Courier_New.ttf 1 t 26.2362 34.6034 77 , 25.2771 11.5597 17.2297 -Courier_New.ttf 1 t 26.2362 34.6034 78 I 0.2638 22.0860 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 79 ° -8.5824 15.7638 15.7638 -Courier_New.ttf 1 t 26.2362 34.6034 80 K 0.4569 31.2297 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 81 H 0.4305 28.4333 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 82 q 8.4169 29.1932 36.6565 -Courier_New.ttf 1 t 26.2362 34.6034 83 & 3.3111 21.9800 31.2070 -Courier_New.ttf 1 t 26.2362 34.6034 84 ’ -2.0077 12.7529 17.2297 -Courier_New.ttf 1 t 26.2362 34.6034 85 [ -1.8740 9.5998 43.1932 -Courier_New.ttf 1 t 26.2362 34.6034 86 - 15.5980 24.8892 3.2297 -Courier_New.ttf 1 t 26.2362 34.6034 87 Y 0.2708 29.3410 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 88 Q 0.1802 30.3865 40.7840 -Courier_New.ttf 1 t 26.2362 34.6034 89 " -1.7691 19.6995 16.0365 -Courier_New.ttf 1 t 26.2362 34.6034 90 ! -1.7092 6.4594 36.5505 -Courier_New.ttf 1 t 26.2362 34.6034 91 x 9.0323 29.1932 25.2097 -Courier_New.ttf 1 t 26.2362 34.6034 92 ) -1.9933 8.4065 43.1932 -Courier_New.ttf 1 t 26.2362 34.6034 93 = 11.3323 29.1932 11.3097 -Courier_New.ttf 1 t 26.2362 34.6034 94 + 2.9820 26.8590 29.2455 -Courier_New.ttf 1 t 26.2362 34.6034 95 X 0.1564 30.9092 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 96 » 8.4551 29.5432 26.8068 -Courier_New.ttf 1 t 26.2362 34.6034 97 ' -1.6917 7.9027 17.2297 -Courier_New.ttf 1 t 26.2362 34.6034 98 ¢ -4.1026 20.7867 38.0998 -Courier_New.ttf 1 t 26.2362 34.6034 99 Z 0.3950 23.0959 33.5935 -Courier_New.ttf 1 t 26.2362 34.6034 100 > 1.4728 28.0000 31.5797 -Courier_New.ttf 1 t 26.2362 34.6034 101 ® -0.6243 34.7867 35.0594 -Courier_New.ttf 1 t 26.2362 34.6034 102 © -0.0272 35.0594 34.7867 -Courier_New.ttf 1 t 26.2362 34.6034 103 ] -2.0367 9.5998 43.1932 -Courier_New.ttf 1 t 26.2362 34.6034 104 é -3.9183 27.4295 38.4203 -Courier_New.ttf 1 t 26.2362 34.6034 105 z 8.8580 23.7959 25.2097 -Courier_New.ttf 1 t 26.2362 34.6034 106 _ 48.0926 35.0594 2.3865 -Courier_New.ttf 1 t 26.2362 34.6034 107 ¥ 0.3745 29.6744 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 1 t 1.7362 26.2362 34.6034 -Courier_New.ttf 2 h 29.6326 35.9800 2 h 0.0941 29.6326 35.9800 -Courier_New.ttf 2 h 29.6326 35.9800 3 a 10.5120 26.9256 26.1840 -Courier_New.ttf 2 h 29.6326 35.9800 4 n 10.4058 29.2061 25.6135 -Courier_New.ttf 2 h 29.6326 35.9800 5 P 2.1349 26.0529 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 6 o 10.6259 26.8068 26.1840 -Courier_New.ttf 2 h 29.6326 35.9800 7 e 10.1790 27.4295 26.1840 -Courier_New.ttf 2 h 29.6326 35.9800 8 : 10.8639 8.6565 25.7802 -Courier_New.ttf 2 h 29.6326 35.9800 9 r 10.5249 26.8295 25.6135 -Courier_New.ttf 2 h 29.6326 35.9800 10 l 0.3053 24.4725 35.9800 -Courier_New.ttf 2 h 29.6326 35.9800 11 i -1.2782 24.4725 37.2498 -Courier_New.ttf 2 h 29.6326 35.9800 12 1 -1.4646 22.8527 37.5770 -Courier_New.ttf 2 h 29.6326 35.9800 13 | 0.0801 2.3865 43.1932 -Courier_New.ttf 2 h 29.6326 35.9800 14 N 2.6835 31.3964 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 15 f -0.0060 25.4696 35.9800 -Courier_New.ttf 2 h 29.6326 35.9800 16 g 10.5406 27.8462 36.6565 -Courier_New.ttf 2 h 29.6326 35.9800 17 d -0.2998 30.1138 36.5505 -Courier_New.ttf 2 h 29.6326 35.9800 18 W 2.5919 32.5836 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 19 s 10.5931 23.0959 26.1840 -Courier_New.ttf 2 h 29.6326 35.9800 20 c 10.0788 26.6529 26.1840 -Courier_New.ttf 2 h 29.6326 35.9800 21 u 10.8834 29.6326 25.7802 -Courier_New.ttf 2 h 29.6326 35.9800 22 3 -0.3818 23.6959 36.7876 -Courier_New.ttf 2 h 29.6326 35.9800 23 ~ 14.8407 24.8892 8.5732 -Courier_New.ttf 2 h 29.6326 35.9800 24 # -2.5134 25.0657 42.1962 -Courier_New.ttf 2 h 29.6326 35.9800 25 O 2.0486 29.1932 34.4140 -Courier_New.ttf 2 h 29.6326 35.9800 26 ` -2.0410 9.8498 8.6565 -Courier_New.ttf 2 h 29.6326 35.9800 27 @ -1.2529 22.0800 40.4029 -Courier_New.ttf 2 h 29.6326 35.9800 28 F 2.2787 27.3234 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 29 S 2.2241 24.5392 34.4140 -Courier_New.ttf 2 h 29.6326 35.9800 30 p 10.4494 29.8826 36.6565 -Courier_New.ttf 2 h 29.6326 35.9800 31 “ 0.0364 24.6392 15.1932 -Courier_New.ttf 2 h 29.6326 35.9800 32 % 0.2794 24.3664 36.5505 -Courier_New.ttf 2 h 29.6326 35.9800 33 £ 2.0291 26.2840 33.8435 -Courier_New.ttf 2 h 29.6326 35.9800 34 . 28.3781 8.8232 7.9800 -Courier_New.ttf 2 h 29.6326 35.9800 35 2 -0.4525 23.1732 36.3838 -Courier_New.ttf 2 h 29.6326 35.9800 36 5 -0.0156 23.7437 36.3838 -Courier_New.ttf 2 h 29.6326 35.9800 37 m 10.6358 35.1594 25.6135 -Courier_New.ttf 2 h 29.6326 35.9800 38 V 2.2573 35.1140 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 39 6 -0.1925 23.7959 36.7876 -Courier_New.ttf 2 h 29.6326 35.9800 40 w 11.0333 32.7502 25.2097 -Courier_New.ttf 2 h 29.6326 35.9800 41 T 2.3837 26.8590 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 42 M 2.1469 34.5367 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 43 G 2.2360 29.5621 34.4140 -Courier_New.ttf 2 h 29.6326 35.9800 44 b -0.0417 29.8826 36.5505 -Courier_New.ttf 2 h 29.6326 35.9800 45 9 -0.5181 22.4193 36.7876 -Courier_New.ttf 2 h 29.6326 35.9800 46 ; 10.4413 12.8068 30.9570 -Courier_New.ttf 2 h 29.6326 35.9800 47 D 2.3448 28.4394 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 48 L 2.5222 28.2727 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 49 y 10.8050 29.3121 36.2527 -Courier_New.ttf 2 h 29.6326 35.9800 50 ‘ -0.0825 12.7529 17.2297 -Courier_New.ttf 2 h 29.6326 35.9800 51 \ -3.2991 24.6392 44.3865 -Courier_New.ttf 2 h 29.6326 35.9800 52 R 2.3070 30.7070 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 53 < 3.9282 28.0000 31.5797 -Courier_New.ttf 2 h 29.6326 35.9800 54 4 -0.1304 22.3232 35.9800 -Courier_New.ttf 2 h 29.6326 35.9800 55 8 -0.1902 21.3094 36.7876 -Courier_New.ttf 2 h 29.6326 35.9800 56 0 -0.2547 23.6959 36.7876 -Courier_New.ttf 2 h 29.6326 35.9800 57 A 2.4092 37.1505 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 58 E 2.2837 27.3234 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 59 B 1.9744 28.4167 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 60 v 10.6689 32.1252 25.2097 -Courier_New.ttf 2 h 29.6326 35.9800 61 k 0.1327 26.6529 35.9800 -Courier_New.ttf 2 h 29.6326 35.9800 62 J 2.5645 28.6766 34.1640 -Courier_New.ttf 2 h 29.6326 35.9800 63 U 2.3579 31.3964 34.1640 -Courier_New.ttf 2 h 29.6326 35.9800 64 j -1.2555 18.4230 48.2928 -Courier_New.ttf 2 h 29.6326 35.9800 65 ( -0.1084 8.4065 43.1932 -Courier_New.ttf 2 h 29.6326 35.9800 66 7 -0.1236 22.0027 35.9800 -Courier_New.ttf 2 h 29.6326 35.9800 67 § -0.1366 27.1696 39.8097 -Courier_New.ttf 2 h 29.6326 35.9800 68 $ -3.1970 21.8261 44.3865 -Courier_New.ttf 2 h 29.6326 35.9800 69 € 2.0448 31.2297 34.4140 -Courier_New.ttf 2 h 29.6326 35.9800 70 / -3.8962 24.6392 44.3865 -Courier_New.ttf 2 h 29.6326 35.9800 71 C 2.0994 28.2727 34.4140 -Courier_New.ttf 2 h 29.6326 35.9800 72 * -0.1513 22.0860 21.9800 -Courier_New.ttf 2 h 29.6326 35.9800 73 ” -0.1213 24.6392 15.1932 -Courier_New.ttf 2 h 29.6326 35.9800 74 ? 1.5924 21.0594 34.9406 -Courier_New.ttf 2 h 29.6326 35.9800 75 { 0.0562 11.7324 43.3121 -Courier_New.ttf 2 h 29.6326 35.9800 76 } -0.2997 11.7324 43.3121 -Courier_New.ttf 2 h 29.6326 35.9800 77 , 27.4998 11.5597 17.2297 -Courier_New.ttf 2 h 29.6326 35.9800 78 I 2.4139 22.0860 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 79 ° -6.4263 15.7638 15.7638 -Courier_New.ttf 2 h 29.6326 35.9800 80 K 2.2973 31.2297 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 81 H 2.2024 28.4333 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 82 q 10.4874 29.1932 36.6565 -Courier_New.ttf 2 h 29.6326 35.9800 83 & 5.4819 21.9800 31.2070 -Courier_New.ttf 2 h 29.6326 35.9800 84 ’ 0.0129 12.7529 17.2297 -Courier_New.ttf 2 h 29.6326 35.9800 85 [ 0.0937 9.5998 43.1932 -Courier_New.ttf 2 h 29.6326 35.9800 86 - 17.6364 24.8892 3.2297 -Courier_New.ttf 2 h 29.6326 35.9800 87 Y 2.3938 29.3410 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 88 Q 2.1917 30.3865 40.7840 -Courier_New.ttf 2 h 29.6326 35.9800 89 " 0.0437 19.6995 16.0365 -Courier_New.ttf 2 h 29.6326 35.9800 90 ! -0.1511 6.4594 36.5505 -Courier_New.ttf 2 h 29.6326 35.9800 91 x 10.7651 29.1932 25.2097 -Courier_New.ttf 2 h 29.6326 35.9800 92 ) 0.0468 8.4065 43.1932 -Courier_New.ttf 2 h 29.6326 35.9800 93 = 13.3106 29.1932 11.3097 -Courier_New.ttf 2 h 29.6326 35.9800 94 + 4.9062 26.8590 29.2455 -Courier_New.ttf 2 h 29.6326 35.9800 95 X 2.7349 30.9092 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 96 » 10.4514 29.5432 26.8068 -Courier_New.ttf 2 h 29.6326 35.9800 97 ' -0.1228 7.9027 17.2297 -Courier_New.ttf 2 h 29.6326 35.9800 98 ¢ -2.2738 20.7867 38.0998 -Courier_New.ttf 2 h 29.6326 35.9800 99 Z 1.9712 23.0959 33.5935 -Courier_New.ttf 2 h 29.6326 35.9800 100 > 3.6354 28.0000 31.5797 -Courier_New.ttf 2 h 29.6326 35.9800 101 ® 1.5623 34.7867 35.0594 -Courier_New.ttf 2 h 29.6326 35.9800 102 © 1.6529 35.0594 34.7867 -Courier_New.ttf 2 h 29.6326 35.9800 103 ] 0.3712 9.5998 43.1932 -Courier_New.ttf 2 h 29.6326 35.9800 104 é -1.9101 27.4295 38.4203 -Courier_New.ttf 2 h 29.6326 35.9800 105 z 10.6864 23.7959 25.2097 -Courier_New.ttf 2 h 29.6326 35.9800 106 _ 49.6837 35.0594 2.3865 -Courier_New.ttf 2 h 29.6326 35.9800 107 ¥ 2.1335 29.6744 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 1 t -8.4735 26.2362 34.6034 -Courier_New.ttf 3 a 26.9256 26.1840 2 h -10.3164 29.6326 35.9800 -Courier_New.ttf 3 a 26.9256 26.1840 3 a 0.2605 26.9256 26.1840 -Courier_New.ttf 3 a 26.9256 26.1840 4 n -0.2894 29.2061 25.6135 -Courier_New.ttf 3 a 26.9256 26.1840 5 P -7.9209 26.0529 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 6 o 0.1996 26.8068 26.1840 -Courier_New.ttf 3 a 26.9256 26.1840 7 e -0.1303 27.4295 26.1840 -Courier_New.ttf 3 a 26.9256 26.1840 8 : 0.5441 8.6565 25.7802 -Courier_New.ttf 3 a 26.9256 26.1840 9 r 0.1115 26.8295 25.6135 -Courier_New.ttf 3 a 26.9256 26.1840 10 l -10.4414 24.4725 35.9800 -Courier_New.ttf 3 a 26.9256 26.1840 11 i -11.7604 24.4725 37.2498 -Courier_New.ttf 3 a 26.9256 26.1840 12 1 -11.6910 22.8527 37.5770 -Courier_New.ttf 3 a 26.9256 26.1840 13 | -10.4873 2.3865 43.1932 -Courier_New.ttf 3 a 26.9256 26.1840 14 N -7.7354 31.3964 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 15 f -10.1142 25.4696 35.9800 -Courier_New.ttf 3 a 26.9256 26.1840 16 g 0.0398 27.8462 36.6565 -Courier_New.ttf 3 a 26.9256 26.1840 17 d -10.7089 30.1138 36.5505 -Courier_New.ttf 3 a 26.9256 26.1840 18 W -7.9928 32.5836 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 19 s 0.2794 23.0959 26.1840 -Courier_New.ttf 3 a 26.9256 26.1840 20 c -0.0213 26.6529 26.1840 -Courier_New.ttf 3 a 26.9256 26.1840 21 u 0.0911 29.6326 25.7802 -Courier_New.ttf 3 a 26.9256 26.1840 22 3 -10.8195 23.6959 36.7876 -Courier_New.ttf 3 a 26.9256 26.1840 23 ~ 4.7024 24.8892 8.5732 -Courier_New.ttf 3 a 26.9256 26.1840 24 # -12.4954 25.0657 42.1962 -Courier_New.ttf 3 a 26.9256 26.1840 25 O -8.5464 29.1932 34.4140 -Courier_New.ttf 3 a 26.9256 26.1840 26 ` -12.1180 9.8498 8.6565 -Courier_New.ttf 3 a 26.9256 26.1840 27 @ -12.0297 22.0800 40.4029 -Courier_New.ttf 3 a 26.9256 26.1840 28 F -7.8135 27.3234 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 29 S -8.1876 24.5392 34.4140 -Courier_New.ttf 3 a 26.9256 26.1840 30 p -0.0857 29.8826 36.6565 -Courier_New.ttf 3 a 26.9256 26.1840 31 “ -10.2353 24.6392 15.1932 -Courier_New.ttf 3 a 26.9256 26.1840 32 % -10.4562 24.3664 36.5505 -Courier_New.ttf 3 a 26.9256 26.1840 33 £ -8.3197 26.2840 33.8435 -Courier_New.ttf 3 a 26.9256 26.1840 34 . 18.3129 8.8232 7.9800 -Courier_New.ttf 3 a 26.9256 26.1840 35 2 -10.8230 23.1732 36.3838 -Courier_New.ttf 3 a 26.9256 26.1840 36 5 -10.1259 23.7437 36.3838 -Courier_New.ttf 3 a 26.9256 26.1840 37 m 0.0156 35.1594 25.6135 -Courier_New.ttf 3 a 26.9256 26.1840 38 V -8.0499 35.1140 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 39 6 -10.6044 23.7959 36.7876 -Courier_New.ttf 3 a 26.9256 26.1840 40 w 0.3741 32.7502 25.2097 -Courier_New.ttf 3 a 26.9256 26.1840 41 T -8.0412 26.8590 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 42 M -7.9137 34.5367 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 43 G -8.2245 29.5621 34.4140 -Courier_New.ttf 3 a 26.9256 26.1840 44 b -10.5239 29.8826 36.5505 -Courier_New.ttf 3 a 26.9256 26.1840 45 9 -11.2025 22.4193 36.7876 -Courier_New.ttf 3 a 26.9256 26.1840 46 ; 0.5812 12.8068 30.9570 -Courier_New.ttf 3 a 26.9256 26.1840 47 D -7.9558 28.4394 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 48 L -7.2566 28.2727 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 49 y 0.7023 29.3121 36.2527 -Courier_New.ttf 3 a 26.9256 26.1840 50 ‘ -10.4760 12.7529 17.2297 -Courier_New.ttf 3 a 26.9256 26.1840 51 \ -13.6969 24.6392 44.3865 -Courier_New.ttf 3 a 26.9256 26.1840 52 R -7.7389 30.7070 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 53 < -6.7210 28.0000 31.5797 -Courier_New.ttf 3 a 26.9256 26.1840 54 4 -10.4119 22.3232 35.9800 -Courier_New.ttf 3 a 26.9256 26.1840 55 8 -10.6759 21.3094 36.7876 -Courier_New.ttf 3 a 26.9256 26.1840 56 0 -10.7002 23.6959 36.7876 -Courier_New.ttf 3 a 26.9256 26.1840 57 A -8.1371 37.1505 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 58 E -8.3917 27.3234 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 59 B -8.1945 28.4167 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 60 v 0.1705 32.1252 25.2097 -Courier_New.ttf 3 a 26.9256 26.1840 61 k -10.2605 26.6529 35.9800 -Courier_New.ttf 3 a 26.9256 26.1840 62 J -7.9405 28.6766 34.1640 -Courier_New.ttf 3 a 26.9256 26.1840 63 U -7.8109 31.3964 34.1640 -Courier_New.ttf 3 a 26.9256 26.1840 64 j -11.3327 18.4230 48.2928 -Courier_New.ttf 3 a 26.9256 26.1840 65 ( -10.4637 8.4065 43.1932 -Courier_New.ttf 3 a 26.9256 26.1840 66 7 -10.4511 22.0027 35.9800 -Courier_New.ttf 3 a 26.9256 26.1840 67 § -10.2898 27.1696 39.8097 -Courier_New.ttf 3 a 26.9256 26.1840 68 $ -13.5139 21.8261 44.3865 -Courier_New.ttf 3 a 26.9256 26.1840 69 € -8.4711 31.2297 34.4140 -Courier_New.ttf 3 a 26.9256 26.1840 70 / -13.8960 24.6392 44.3865 -Courier_New.ttf 3 a 26.9256 26.1840 71 C -8.4510 28.2727 34.4140 -Courier_New.ttf 3 a 26.9256 26.1840 72 * -10.7277 22.0860 21.9800 -Courier_New.ttf 3 a 26.9256 26.1840 73 ” -10.1656 24.6392 15.1932 -Courier_New.ttf 3 a 26.9256 26.1840 74 ? -8.8234 21.0594 34.9406 -Courier_New.ttf 3 a 26.9256 26.1840 75 { -10.3986 11.7324 43.3121 -Courier_New.ttf 3 a 26.9256 26.1840 76 } -10.7991 11.7324 43.3121 -Courier_New.ttf 3 a 26.9256 26.1840 77 , 17.1330 11.5597 17.2297 -Courier_New.ttf 3 a 26.9256 26.1840 78 I -8.1684 22.0860 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 79 ° -16.4992 15.7638 15.7638 -Courier_New.ttf 3 a 26.9256 26.1840 80 K -7.8762 31.2297 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 81 H -7.9762 28.4333 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 82 q -0.4749 29.1932 36.6565 -Courier_New.ttf 3 a 26.9256 26.1840 83 & -4.9307 21.9800 31.2070 -Courier_New.ttf 3 a 26.9256 26.1840 84 ’ -10.5134 12.7529 17.2297 -Courier_New.ttf 3 a 26.9256 26.1840 85 [ -10.5133 9.5998 43.1932 -Courier_New.ttf 3 a 26.9256 26.1840 86 - 7.5174 24.8892 3.2297 -Courier_New.ttf 3 a 26.9256 26.1840 87 Y -7.8800 29.3410 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 88 Q -8.3114 30.3865 40.7840 -Courier_New.ttf 3 a 26.9256 26.1840 89 " -9.9908 19.6995 16.0365 -Courier_New.ttf 3 a 26.9256 26.1840 90 ! -10.2831 6.4594 36.5505 -Courier_New.ttf 3 a 26.9256 26.1840 91 x 0.1166 29.1932 25.2097 -Courier_New.ttf 3 a 26.9256 26.1840 92 ) -10.2436 8.4065 43.1932 -Courier_New.ttf 3 a 26.9256 26.1840 93 = 3.0200 29.1932 11.3097 -Courier_New.ttf 3 a 26.9256 26.1840 94 + -5.2638 26.8590 29.2455 -Courier_New.ttf 3 a 26.9256 26.1840 95 X -7.9216 30.9092 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 96 » 0.1728 29.5432 26.8068 -Courier_New.ttf 3 a 26.9256 26.1840 97 ' -10.5619 7.9027 17.2297 -Courier_New.ttf 3 a 26.9256 26.1840 98 ¢ -12.4291 20.7867 38.0998 -Courier_New.ttf 3 a 26.9256 26.1840 99 Z -8.0790 23.0959 33.5935 -Courier_New.ttf 3 a 26.9256 26.1840 100 > -7.0882 28.0000 31.5797 -Courier_New.ttf 3 a 26.9256 26.1840 101 ® -8.9184 34.7867 35.0594 -Courier_New.ttf 3 a 26.9256 26.1840 102 © -8.5233 35.0594 34.7867 -Courier_New.ttf 3 a 26.9256 26.1840 103 ] -10.3902 9.5998 43.1932 -Courier_New.ttf 3 a 26.9256 26.1840 104 é -12.2303 27.4295 38.4203 -Courier_New.ttf 3 a 26.9256 26.1840 105 z 0.4655 23.7959 25.2097 -Courier_New.ttf 3 a 26.9256 26.1840 106 _ 39.7169 35.0594 2.3865 -Courier_New.ttf 3 a 26.9256 26.1840 107 ¥ -8.0593 29.6744 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 1 t -8.4376 26.2362 34.6034 -Courier_New.ttf 4 n 29.2061 25.6135 2 h -10.2426 29.6326 35.9800 -Courier_New.ttf 4 n 29.2061 25.6135 3 a 0.1742 26.9256 26.1840 -Courier_New.ttf 4 n 29.2061 25.6135 4 n 0.1731 29.2061 25.6135 -Courier_New.ttf 4 n 29.2061 25.6135 5 P -8.1611 26.0529 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 6 o -0.0836 26.8068 26.1840 -Courier_New.ttf 4 n 29.2061 25.6135 7 e 0.2651 27.4295 26.1840 -Courier_New.ttf 4 n 29.2061 25.6135 8 : 0.1874 8.6565 25.7802 -Courier_New.ttf 4 n 29.2061 25.6135 9 r -0.1871 26.8295 25.6135 -Courier_New.ttf 4 n 29.2061 25.6135 10 l -10.2821 24.4725 35.9800 -Courier_New.ttf 4 n 29.2061 25.6135 11 i -11.7363 24.4725 37.2498 -Courier_New.ttf 4 n 29.2061 25.6135 12 1 -12.2102 22.8527 37.5770 -Courier_New.ttf 4 n 29.2061 25.6135 13 | -10.3561 2.3865 43.1932 -Courier_New.ttf 4 n 29.2061 25.6135 14 N -7.9915 31.3964 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 15 f -10.1656 25.4696 35.9800 -Courier_New.ttf 4 n 29.2061 25.6135 16 g 0.1105 27.8462 36.6565 -Courier_New.ttf 4 n 29.2061 25.6135 17 d -10.2706 30.1138 36.5505 -Courier_New.ttf 4 n 29.2061 25.6135 18 W -7.5907 32.5836 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 19 s -0.1214 23.0959 26.1840 -Courier_New.ttf 4 n 29.2061 25.6135 20 c -0.3684 26.6529 26.1840 -Courier_New.ttf 4 n 29.2061 25.6135 21 u 0.6689 29.6326 25.7802 -Courier_New.ttf 4 n 29.2061 25.6135 22 3 -10.6104 23.6959 36.7876 -Courier_New.ttf 4 n 29.2061 25.6135 23 ~ 4.2060 24.8892 8.5732 -Courier_New.ttf 4 n 29.2061 25.6135 24 # -12.9225 25.0657 42.1962 -Courier_New.ttf 4 n 29.2061 25.6135 25 O -8.1201 29.1932 34.4140 -Courier_New.ttf 4 n 29.2061 25.6135 26 ` -12.3414 9.8498 8.6565 -Courier_New.ttf 4 n 29.2061 25.6135 27 @ -11.4784 22.0800 40.4029 -Courier_New.ttf 4 n 29.2061 25.6135 28 F -7.9110 27.3234 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 29 S -8.0868 24.5392 34.4140 -Courier_New.ttf 4 n 29.2061 25.6135 30 p 0.0441 29.8826 36.6565 -Courier_New.ttf 4 n 29.2061 25.6135 31 “ -10.4567 24.6392 15.1932 -Courier_New.ttf 4 n 29.2061 25.6135 32 % -10.6420 24.3664 36.5505 -Courier_New.ttf 4 n 29.2061 25.6135 33 £ -8.2351 26.2840 33.8435 -Courier_New.ttf 4 n 29.2061 25.6135 34 . 18.2366 8.8232 7.9800 -Courier_New.ttf 4 n 29.2061 25.6135 35 2 -10.8605 23.1732 36.3838 -Courier_New.ttf 4 n 29.2061 25.6135 36 5 -10.4993 23.7437 36.3838 -Courier_New.ttf 4 n 29.2061 25.6135 37 m -0.1163 35.1594 25.6135 -Courier_New.ttf 4 n 29.2061 25.6135 38 V -7.8258 35.1140 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 39 6 -10.7178 23.7959 36.7876 -Courier_New.ttf 4 n 29.2061 25.6135 40 w 0.4149 32.7502 25.2097 -Courier_New.ttf 4 n 29.2061 25.6135 41 T -8.1046 26.8590 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 42 M -7.9785 34.5367 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 43 G -8.2391 29.5621 34.4140 -Courier_New.ttf 4 n 29.2061 25.6135 44 b -10.3272 29.8826 36.5505 -Courier_New.ttf 4 n 29.2061 25.6135 45 9 -10.7131 22.4193 36.7876 -Courier_New.ttf 4 n 29.2061 25.6135 46 ; 0.5455 12.8068 30.9570 -Courier_New.ttf 4 n 29.2061 25.6135 47 D -7.8905 28.4394 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 48 L -7.8460 28.2727 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 49 y 0.1933 29.3121 36.2527 -Courier_New.ttf 4 n 29.2061 25.6135 50 ‘ -10.2930 12.7529 17.2297 -Courier_New.ttf 4 n 29.2061 25.6135 51 \ -13.7325 24.6392 44.3865 -Courier_New.ttf 4 n 29.2061 25.6135 52 R -8.2178 30.7070 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 53 < -6.6926 28.0000 31.5797 -Courier_New.ttf 4 n 29.2061 25.6135 54 4 -10.2658 22.3232 35.9800 -Courier_New.ttf 4 n 29.2061 25.6135 55 8 -10.8469 21.3094 36.7876 -Courier_New.ttf 4 n 29.2061 25.6135 56 0 -10.8925 23.6959 36.7876 -Courier_New.ttf 4 n 29.2061 25.6135 57 A -7.7738 37.1505 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 58 E -8.0716 27.3234 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 59 B -7.8953 28.4167 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 60 v 0.4206 32.1252 25.2097 -Courier_New.ttf 4 n 29.2061 25.6135 61 k -10.5341 26.6529 35.9800 -Courier_New.ttf 4 n 29.2061 25.6135 62 J -8.2826 28.6766 34.1640 -Courier_New.ttf 4 n 29.2061 25.6135 63 U -8.0629 31.3964 34.1640 -Courier_New.ttf 4 n 29.2061 25.6135 64 j -11.5960 18.4230 48.2928 -Courier_New.ttf 4 n 29.2061 25.6135 65 ( -10.1402 8.4065 43.1932 -Courier_New.ttf 4 n 29.2061 25.6135 66 7 -10.1963 22.0027 35.9800 -Courier_New.ttf 4 n 29.2061 25.6135 67 § -10.2619 27.1696 39.8097 -Courier_New.ttf 4 n 29.2061 25.6135 68 $ -13.5110 21.8261 44.3865 -Courier_New.ttf 4 n 29.2061 25.6135 69 € -8.2187 31.2297 34.4140 -Courier_New.ttf 4 n 29.2061 25.6135 70 / -13.8947 24.6392 44.3865 -Courier_New.ttf 4 n 29.2061 25.6135 71 C -8.2372 28.2727 34.4140 -Courier_New.ttf 4 n 29.2061 25.6135 72 * -10.4945 22.0860 21.9800 -Courier_New.ttf 4 n 29.2061 25.6135 73 ” -10.6167 24.6392 15.1932 -Courier_New.ttf 4 n 29.2061 25.6135 74 ? -8.9734 21.0594 34.9406 -Courier_New.ttf 4 n 29.2061 25.6135 75 { -10.8217 11.7324 43.3121 -Courier_New.ttf 4 n 29.2061 25.6135 76 } -10.8029 11.7324 43.3121 -Courier_New.ttf 4 n 29.2061 25.6135 77 , 17.1650 11.5597 17.2297 -Courier_New.ttf 4 n 29.2061 25.6135 78 I -8.0168 22.0860 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 79 ° -16.8351 15.7638 15.7638 -Courier_New.ttf 4 n 29.2061 25.6135 80 K -8.0184 31.2297 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 81 H -7.8571 28.4333 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 82 q 0.1639 29.1932 36.6565 -Courier_New.ttf 4 n 29.2061 25.6135 83 & -5.0541 21.9800 31.2070 -Courier_New.ttf 4 n 29.2061 25.6135 84 ’ -10.2278 12.7529 17.2297 -Courier_New.ttf 4 n 29.2061 25.6135 85 [ -10.6650 9.5998 43.1932 -Courier_New.ttf 4 n 29.2061 25.6135 86 - 7.4631 24.8892 3.2297 -Courier_New.ttf 4 n 29.2061 25.6135 87 Y -8.1913 29.3410 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 88 Q -8.2827 30.3865 40.7840 -Courier_New.ttf 4 n 29.2061 25.6135 89 " -10.2167 19.6995 16.0365 -Courier_New.ttf 4 n 29.2061 25.6135 90 ! -10.4504 6.4594 36.5505 -Courier_New.ttf 4 n 29.2061 25.6135 91 x 0.4506 29.1932 25.2097 -Courier_New.ttf 4 n 29.2061 25.6135 92 ) -10.1819 8.4065 43.1932 -Courier_New.ttf 4 n 29.2061 25.6135 93 = 2.9263 29.1932 11.3097 -Courier_New.ttf 4 n 29.2061 25.6135 94 + -5.2928 26.8590 29.2455 -Courier_New.ttf 4 n 29.2061 25.6135 95 X -8.3367 30.9092 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 96 » -0.1780 29.5432 26.8068 -Courier_New.ttf 4 n 29.2061 25.6135 97 ' -10.2720 7.9027 17.2297 -Courier_New.ttf 4 n 29.2061 25.6135 98 ¢ -12.4682 20.7867 38.0998 -Courier_New.ttf 4 n 29.2061 25.6135 99 Z -8.2262 23.0959 33.5935 -Courier_New.ttf 4 n 29.2061 25.6135 100 > -7.0949 28.0000 31.5797 -Courier_New.ttf 4 n 29.2061 25.6135 101 ® -8.8425 34.7867 35.0594 -Courier_New.ttf 4 n 29.2061 25.6135 102 © -8.5999 35.0594 34.7867 -Courier_New.ttf 4 n 29.2061 25.6135 103 ] -10.3640 9.5998 43.1932 -Courier_New.ttf 4 n 29.2061 25.6135 104 é -12.3903 27.4295 38.4203 -Courier_New.ttf 4 n 29.2061 25.6135 105 z 0.5305 23.7959 25.2097 -Courier_New.ttf 4 n 29.2061 25.6135 106 _ 39.5278 35.0594 2.3865 -Courier_New.ttf 4 n 29.2061 25.6135 107 ¥ -7.9684 29.6744 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 1 t -0.4842 26.2362 34.6034 -Courier_New.ttf 5 P 26.0529 33.5935 2 h -2.3619 29.6326 35.9800 -Courier_New.ttf 5 P 26.0529 33.5935 3 a 7.8877 26.9256 26.1840 -Courier_New.ttf 5 P 26.0529 33.5935 4 n 7.9632 29.2061 25.6135 -Courier_New.ttf 5 P 26.0529 33.5935 5 P 0.0278 26.0529 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 6 o 7.7539 26.8068 26.1840 -Courier_New.ttf 5 P 26.0529 33.5935 7 e 7.7881 27.4295 26.1840 -Courier_New.ttf 5 P 26.0529 33.5935 8 : 8.0868 8.6565 25.7802 -Courier_New.ttf 5 P 26.0529 33.5935 9 r 7.9601 26.8295 25.6135 -Courier_New.ttf 5 P 26.0529 33.5935 10 l -2.3722 24.4725 35.9800 -Courier_New.ttf 5 P 26.0529 33.5935 11 i -3.6577 24.4725 37.2498 -Courier_New.ttf 5 P 26.0529 33.5935 12 1 -4.0199 22.8527 37.5770 -Courier_New.ttf 5 P 26.0529 33.5935 13 | -2.1922 2.3865 43.1932 -Courier_New.ttf 5 P 26.0529 33.5935 14 N 0.0032 31.3964 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 15 f -2.2623 25.4696 35.9800 -Courier_New.ttf 5 P 26.0529 33.5935 16 g 8.1968 27.8462 36.6565 -Courier_New.ttf 5 P 26.0529 33.5935 17 d -2.1279 30.1138 36.5505 -Courier_New.ttf 5 P 26.0529 33.5935 18 W -0.1906 32.5836 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 19 s 7.7147 23.0959 26.1840 -Courier_New.ttf 5 P 26.0529 33.5935 20 c 7.8800 26.6529 26.1840 -Courier_New.ttf 5 P 26.0529 33.5935 21 u 8.2713 29.6326 25.7802 -Courier_New.ttf 5 P 26.0529 33.5935 22 3 -2.5238 23.6959 36.7876 -Courier_New.ttf 5 P 26.0529 33.5935 23 ~ 12.4561 24.8892 8.5732 -Courier_New.ttf 5 P 26.0529 33.5935 24 # -5.1928 25.0657 42.1962 -Courier_New.ttf 5 P 26.0529 33.5935 25 O 0.0113 29.1932 34.4140 -Courier_New.ttf 5 P 26.0529 33.5935 26 ` -4.1803 9.8498 8.6565 -Courier_New.ttf 5 P 26.0529 33.5935 27 @ -3.9039 22.0800 40.4029 -Courier_New.ttf 5 P 26.0529 33.5935 28 F 0.0717 27.3234 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 29 S -0.4064 24.5392 34.4140 -Courier_New.ttf 5 P 26.0529 33.5935 30 p 7.8988 29.8826 36.6565 -Courier_New.ttf 5 P 26.0529 33.5935 31 “ -2.3917 24.6392 15.1932 -Courier_New.ttf 5 P 26.0529 33.5935 32 % -2.3021 24.3664 36.5505 -Courier_New.ttf 5 P 26.0529 33.5935 33 £ -0.4588 26.2840 33.8435 -Courier_New.ttf 5 P 26.0529 33.5935 34 . 26.0794 8.8232 7.9800 -Courier_New.ttf 5 P 26.0529 33.5935 35 2 -2.8442 23.1732 36.3838 -Courier_New.ttf 5 P 26.0529 33.5935 36 5 -2.4567 23.7437 36.3838 -Courier_New.ttf 5 P 26.0529 33.5935 37 m 8.0198 35.1594 25.6135 -Courier_New.ttf 5 P 26.0529 33.5935 38 V -0.0024 35.1140 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 39 6 -3.3482 23.7959 36.7876 -Courier_New.ttf 5 P 26.0529 33.5935 40 w 8.4054 32.7502 25.2097 -Courier_New.ttf 5 P 26.0529 33.5935 41 T 0.3684 26.8590 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 42 M 0.0843 34.5367 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 43 G -0.4924 29.5621 34.4140 -Courier_New.ttf 5 P 26.0529 33.5935 44 b -2.5617 29.8826 36.5505 -Courier_New.ttf 5 P 26.0529 33.5935 45 9 -2.8090 22.4193 36.7876 -Courier_New.ttf 5 P 26.0529 33.5935 46 ; 8.3767 12.8068 30.9570 -Courier_New.ttf 5 P 26.0529 33.5935 47 D -0.0597 28.4394 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 48 L 0.0649 28.2727 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 49 y 8.6860 29.3121 36.2527 -Courier_New.ttf 5 P 26.0529 33.5935 50 ‘ -2.2168 12.7529 17.2297 -Courier_New.ttf 5 P 26.0529 33.5935 51 \ -5.8670 24.6392 44.3865 -Courier_New.ttf 5 P 26.0529 33.5935 52 R -0.0690 30.7070 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 53 < 1.2719 28.0000 31.5797 -Courier_New.ttf 5 P 26.0529 33.5935 54 4 -2.5548 22.3232 35.9800 -Courier_New.ttf 5 P 26.0529 33.5935 55 8 -2.8760 21.3094 36.7876 -Courier_New.ttf 5 P 26.0529 33.5935 56 0 -2.9835 23.6959 36.7876 -Courier_New.ttf 5 P 26.0529 33.5935 57 A -0.0398 37.1505 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 58 E 0.5042 27.3234 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 59 B -0.1123 28.4167 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 60 v 8.0445 32.1252 25.2097 -Courier_New.ttf 5 P 26.0529 33.5935 61 k -2.7619 26.6529 35.9800 -Courier_New.ttf 5 P 26.0529 33.5935 62 J -0.1246 28.6766 34.1640 -Courier_New.ttf 5 P 26.0529 33.5935 63 U -0.0955 31.3964 34.1640 -Courier_New.ttf 5 P 26.0529 33.5935 64 j -3.5485 18.4230 48.2928 -Courier_New.ttf 5 P 26.0529 33.5935 65 ( -2.7488 8.4065 43.1932 -Courier_New.ttf 5 P 26.0529 33.5935 66 7 -2.2897 22.0027 35.9800 -Courier_New.ttf 5 P 26.0529 33.5935 67 § -2.3206 27.1696 39.8097 -Courier_New.ttf 5 P 26.0529 33.5935 68 $ -5.4450 21.8261 44.3865 -Courier_New.ttf 5 P 26.0529 33.5935 69 € -0.4308 31.2297 34.4140 -Courier_New.ttf 5 P 26.0529 33.5935 70 / -6.3169 24.6392 44.3865 -Courier_New.ttf 5 P 26.0529 33.5935 71 C -0.1643 28.2727 34.4140 -Courier_New.ttf 5 P 26.0529 33.5935 72 * -2.2372 22.0860 21.9800 -Courier_New.ttf 5 P 26.0529 33.5935 73 ” -2.1589 24.6392 15.1932 -Courier_New.ttf 5 P 26.0529 33.5935 74 ? -0.6741 21.0594 34.9406 -Courier_New.ttf 5 P 26.0529 33.5935 75 { -3.0518 11.7324 43.3121 -Courier_New.ttf 5 P 26.0529 33.5935 76 } -2.7047 11.7324 43.3121 -Courier_New.ttf 5 P 26.0529 33.5935 77 , 25.1028 11.5597 17.2297 -Courier_New.ttf 5 P 26.0529 33.5935 78 I 0.0184 22.0860 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 79 ° -8.6824 15.7638 15.7638 -Courier_New.ttf 5 P 26.0529 33.5935 80 K 0.1867 31.2297 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 81 H 0.2455 28.4333 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 82 q 7.9330 29.1932 36.6565 -Courier_New.ttf 5 P 26.0529 33.5935 83 & 2.7036 21.9800 31.2070 -Courier_New.ttf 5 P 26.0529 33.5935 84 ’ -2.4749 12.7529 17.2297 -Courier_New.ttf 5 P 26.0529 33.5935 85 [ -2.3787 9.5998 43.1932 -Courier_New.ttf 5 P 26.0529 33.5935 86 - 15.0340 24.8892 3.2297 -Courier_New.ttf 5 P 26.0529 33.5935 87 Y -0.0553 29.3410 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 88 Q -0.4016 30.3865 40.7840 -Courier_New.ttf 5 P 26.0529 33.5935 89 " -2.3540 19.6995 16.0365 -Courier_New.ttf 5 P 26.0529 33.5935 90 ! -2.5176 6.4594 36.5505 -Courier_New.ttf 5 P 26.0529 33.5935 91 x 8.1043 29.1932 25.2097 -Courier_New.ttf 5 P 26.0529 33.5935 92 ) -2.1808 8.4065 43.1932 -Courier_New.ttf 5 P 26.0529 33.5935 93 = 10.9357 29.1932 11.3097 -Courier_New.ttf 5 P 26.0529 33.5935 94 + 2.5713 26.8590 29.2455 -Courier_New.ttf 5 P 26.0529 33.5935 95 X 0.1000 30.9092 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 96 » 7.8381 29.5432 26.8068 -Courier_New.ttf 5 P 26.0529 33.5935 97 ' -2.4222 7.9027 17.2297 -Courier_New.ttf 5 P 26.0529 33.5935 98 ¢ -4.4061 20.7867 38.0998 -Courier_New.ttf 5 P 26.0529 33.5935 99 Z -0.2088 23.0959 33.5935 -Courier_New.ttf 5 P 26.0529 33.5935 100 > 1.6119 28.0000 31.5797 -Courier_New.ttf 5 P 26.0529 33.5935 101 ® -1.0448 34.7867 35.0594 -Courier_New.ttf 5 P 26.0529 33.5935 102 © -0.5881 35.0594 34.7867 -Courier_New.ttf 5 P 26.0529 33.5935 103 ] -2.4690 9.5998 43.1932 -Courier_New.ttf 5 P 26.0529 33.5935 104 é -4.5444 27.4295 38.4203 -Courier_New.ttf 5 P 26.0529 33.5935 105 z 8.2680 23.7959 25.2097 -Courier_New.ttf 5 P 26.0529 33.5935 106 _ 47.5377 35.0594 2.3865 -Courier_New.ttf 5 P 26.0529 33.5935 107 ¥ -0.1190 29.6744 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 1 t -8.3354 26.2362 34.6034 -Courier_New.ttf 6 o 26.8068 26.1840 2 h -10.2447 29.6326 35.9800 -Courier_New.ttf 6 o 26.8068 26.1840 3 a -0.0368 26.9256 26.1840 -Courier_New.ttf 6 o 26.8068 26.1840 4 n -0.0417 29.2061 25.6135 -Courier_New.ttf 6 o 26.8068 26.1840 5 P -7.8485 26.0529 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 6 o -0.0553 26.8068 26.1840 -Courier_New.ttf 6 o 26.8068 26.1840 7 e -0.1385 27.4295 26.1840 -Courier_New.ttf 6 o 26.8068 26.1840 8 : 0.5332 8.6565 25.7802 -Courier_New.ttf 6 o 26.8068 26.1840 9 r 0.0917 26.8295 25.6135 -Courier_New.ttf 6 o 26.8068 26.1840 10 l -10.2280 24.4725 35.9800 -Courier_New.ttf 6 o 26.8068 26.1840 11 i -11.5204 24.4725 37.2498 -Courier_New.ttf 6 o 26.8068 26.1840 12 1 -11.8138 22.8527 37.5770 -Courier_New.ttf 6 o 26.8068 26.1840 13 | -10.2609 2.3865 43.1932 -Courier_New.ttf 6 o 26.8068 26.1840 14 N -7.8371 31.3964 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 15 f -10.2455 25.4696 35.9800 -Courier_New.ttf 6 o 26.8068 26.1840 16 g -0.1312 27.8462 36.6565 -Courier_New.ttf 6 o 26.8068 26.1840 17 d -10.4431 30.1138 36.5505 -Courier_New.ttf 6 o 26.8068 26.1840 18 W -7.8311 32.5836 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 19 s 0.1470 23.0959 26.1840 -Courier_New.ttf 6 o 26.8068 26.1840 20 c -0.1496 26.6529 26.1840 -Courier_New.ttf 6 o 26.8068 26.1840 21 u 0.1498 29.6326 25.7802 -Courier_New.ttf 6 o 26.8068 26.1840 22 3 -10.6300 23.6959 36.7876 -Courier_New.ttf 6 o 26.8068 26.1840 23 ~ 4.6342 24.8892 8.5732 -Courier_New.ttf 6 o 26.8068 26.1840 24 # -12.7280 25.0657 42.1962 -Courier_New.ttf 6 o 26.8068 26.1840 25 O -8.5290 29.1932 34.4140 -Courier_New.ttf 6 o 26.8068 26.1840 26 ` -12.1648 9.8498 8.6565 -Courier_New.ttf 6 o 26.8068 26.1840 27 @ -11.7474 22.0800 40.4029 -Courier_New.ttf 6 o 26.8068 26.1840 28 F -8.2207 27.3234 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 29 S -7.8919 24.5392 34.4140 -Courier_New.ttf 6 o 26.8068 26.1840 30 p -0.1027 29.8826 36.6565 -Courier_New.ttf 6 o 26.8068 26.1840 31 “ -10.6954 24.6392 15.1932 -Courier_New.ttf 6 o 26.8068 26.1840 32 % -10.4035 24.3664 36.5505 -Courier_New.ttf 6 o 26.8068 26.1840 33 £ -8.1274 26.2840 33.8435 -Courier_New.ttf 6 o 26.8068 26.1840 34 . 18.1390 8.8232 7.9800 -Courier_New.ttf 6 o 26.8068 26.1840 35 2 -10.8133 23.1732 36.3838 -Courier_New.ttf 6 o 26.8068 26.1840 36 5 -10.5406 23.7437 36.3838 -Courier_New.ttf 6 o 26.8068 26.1840 37 m -0.0357 35.1594 25.6135 -Courier_New.ttf 6 o 26.8068 26.1840 38 V -7.9670 35.1140 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 39 6 -10.9413 23.7959 36.7876 -Courier_New.ttf 6 o 26.8068 26.1840 40 w 0.6016 32.7502 25.2097 -Courier_New.ttf 6 o 26.8068 26.1840 41 T -7.9214 26.8590 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 42 M -7.9890 34.5367 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 43 G -8.3547 29.5621 34.4140 -Courier_New.ttf 6 o 26.8068 26.1840 44 b -10.3651 29.8826 36.5505 -Courier_New.ttf 6 o 26.8068 26.1840 45 9 -11.0399 22.4193 36.7876 -Courier_New.ttf 6 o 26.8068 26.1840 46 ; 0.3886 12.8068 30.9570 -Courier_New.ttf 6 o 26.8068 26.1840 47 D -8.2111 28.4394 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 48 L -7.9762 28.2727 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 49 y 0.5995 29.3121 36.2527 -Courier_New.ttf 6 o 26.8068 26.1840 50 ‘ -10.2603 12.7529 17.2297 -Courier_New.ttf 6 o 26.8068 26.1840 51 \ -13.9497 24.6392 44.3865 -Courier_New.ttf 6 o 26.8068 26.1840 52 R -8.0063 30.7070 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 53 < -6.8950 28.0000 31.5797 -Courier_New.ttf 6 o 26.8068 26.1840 54 4 -10.4866 22.3232 35.9800 -Courier_New.ttf 6 o 26.8068 26.1840 55 8 -10.7643 21.3094 36.7876 -Courier_New.ttf 6 o 26.8068 26.1840 56 0 -10.8167 23.6959 36.7876 -Courier_New.ttf 6 o 26.8068 26.1840 57 A -7.9945 37.1505 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 58 E -7.8890 27.3234 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 59 B -7.8746 28.4167 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 60 v 0.3113 32.1252 25.2097 -Courier_New.ttf 6 o 26.8068 26.1840 61 k -10.0859 26.6529 35.9800 -Courier_New.ttf 6 o 26.8068 26.1840 62 J -7.6756 28.6766 34.1640 -Courier_New.ttf 6 o 26.8068 26.1840 63 U -8.0584 31.3964 34.1640 -Courier_New.ttf 6 o 26.8068 26.1840 64 j -11.5571 18.4230 48.2928 -Courier_New.ttf 6 o 26.8068 26.1840 65 ( -10.5380 8.4065 43.1932 -Courier_New.ttf 6 o 26.8068 26.1840 66 7 -10.2339 22.0027 35.9800 -Courier_New.ttf 6 o 26.8068 26.1840 67 § -10.3705 27.1696 39.8097 -Courier_New.ttf 6 o 26.8068 26.1840 68 $ -13.3631 21.8261 44.3865 -Courier_New.ttf 6 o 26.8068 26.1840 69 € -8.3996 31.2297 34.4140 -Courier_New.ttf 6 o 26.8068 26.1840 70 / -13.8915 24.6392 44.3865 -Courier_New.ttf 6 o 26.8068 26.1840 71 C -8.2541 28.2727 34.4140 -Courier_New.ttf 6 o 26.8068 26.1840 72 * -10.1662 22.0860 21.9800 -Courier_New.ttf 6 o 26.8068 26.1840 73 ” -10.4081 24.6392 15.1932 -Courier_New.ttf 6 o 26.8068 26.1840 74 ? -8.5896 21.0594 34.9406 -Courier_New.ttf 6 o 26.8068 26.1840 75 { -10.3265 11.7324 43.3121 -Courier_New.ttf 6 o 26.8068 26.1840 76 } -10.6224 11.7324 43.3121 -Courier_New.ttf 6 o 26.8068 26.1840 77 , 16.8364 11.5597 17.2297 -Courier_New.ttf 6 o 26.8068 26.1840 78 I -7.8544 22.0860 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 79 ° -16.6760 15.7638 15.7638 -Courier_New.ttf 6 o 26.8068 26.1840 80 K -8.3340 31.2297 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 81 H -8.0156 28.4333 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 82 q -0.0478 29.1932 36.6565 -Courier_New.ttf 6 o 26.8068 26.1840 83 & -5.1639 21.9800 31.2070 -Courier_New.ttf 6 o 26.8068 26.1840 84 ’ -9.9309 12.7529 17.2297 -Courier_New.ttf 6 o 26.8068 26.1840 85 [ -10.5954 9.5998 43.1932 -Courier_New.ttf 6 o 26.8068 26.1840 86 - 6.8820 24.8892 3.2297 -Courier_New.ttf 6 o 26.8068 26.1840 87 Y -8.0657 29.3410 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 88 Q -8.6077 30.3865 40.7840 -Courier_New.ttf 6 o 26.8068 26.1840 89 " -10.4966 19.6995 16.0365 -Courier_New.ttf 6 o 26.8068 26.1840 90 ! -10.5064 6.4594 36.5505 -Courier_New.ttf 6 o 26.8068 26.1840 91 x 0.4554 29.1932 25.2097 -Courier_New.ttf 6 o 26.8068 26.1840 92 ) -10.5295 8.4065 43.1932 -Courier_New.ttf 6 o 26.8068 26.1840 93 = 3.0108 29.1932 11.3097 -Courier_New.ttf 6 o 26.8068 26.1840 94 + -5.4661 26.8590 29.2455 -Courier_New.ttf 6 o 26.8068 26.1840 95 X -8.1413 30.9092 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 96 » 0.0853 29.5432 26.8068 -Courier_New.ttf 6 o 26.8068 26.1840 97 ' -10.5847 7.9027 17.2297 -Courier_New.ttf 6 o 26.8068 26.1840 98 ¢ -12.6910 20.7867 38.0998 -Courier_New.ttf 6 o 26.8068 26.1840 99 Z -8.2375 23.0959 33.5935 -Courier_New.ttf 6 o 26.8068 26.1840 100 > -6.7079 28.0000 31.5797 -Courier_New.ttf 6 o 26.8068 26.1840 101 ® -8.9066 34.7867 35.0594 -Courier_New.ttf 6 o 26.8068 26.1840 102 © -8.5981 35.0594 34.7867 -Courier_New.ttf 6 o 26.8068 26.1840 103 ] -10.3020 9.5998 43.1932 -Courier_New.ttf 6 o 26.8068 26.1840 104 é -12.2136 27.4295 38.4203 -Courier_New.ttf 6 o 26.8068 26.1840 105 z 0.5229 23.7959 25.2097 -Courier_New.ttf 6 o 26.8068 26.1840 106 _ 39.5467 35.0594 2.3865 -Courier_New.ttf 6 o 26.8068 26.1840 107 ¥ -8.0541 29.6744 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 1 t -8.5172 26.2362 34.6034 -Courier_New.ttf 7 e 27.4295 26.1840 2 h -10.0586 29.6326 35.9800 -Courier_New.ttf 7 e 27.4295 26.1840 3 a 0.0988 26.9256 26.1840 -Courier_New.ttf 7 e 27.4295 26.1840 4 n -0.2600 29.2061 25.6135 -Courier_New.ttf 7 e 27.4295 26.1840 5 P -7.9728 26.0529 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 6 o -0.2352 26.8068 26.1840 -Courier_New.ttf 7 e 27.4295 26.1840 7 e 0.0585 27.4295 26.1840 -Courier_New.ttf 7 e 27.4295 26.1840 8 : 0.1061 8.6565 25.7802 -Courier_New.ttf 7 e 27.4295 26.1840 9 r -0.2411 26.8295 25.6135 -Courier_New.ttf 7 e 27.4295 26.1840 10 l -10.4091 24.4725 35.9800 -Courier_New.ttf 7 e 27.4295 26.1840 11 i -11.7720 24.4725 37.2498 -Courier_New.ttf 7 e 27.4295 26.1840 12 1 -12.1248 22.8527 37.5770 -Courier_New.ttf 7 e 27.4295 26.1840 13 | -10.3339 2.3865 43.1932 -Courier_New.ttf 7 e 27.4295 26.1840 14 N -8.2700 31.3964 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 15 f -10.0089 25.4696 35.9800 -Courier_New.ttf 7 e 27.4295 26.1840 16 g -0.1334 27.8462 36.6565 -Courier_New.ttf 7 e 27.4295 26.1840 17 d -10.3424 30.1138 36.5505 -Courier_New.ttf 7 e 27.4295 26.1840 18 W -7.9883 32.5836 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 19 s 0.0786 23.0959 26.1840 -Courier_New.ttf 7 e 27.4295 26.1840 20 c 0.0027 26.6529 26.1840 -Courier_New.ttf 7 e 27.4295 26.1840 21 u 0.5330 29.6326 25.7802 -Courier_New.ttf 7 e 27.4295 26.1840 22 3 -10.8743 23.6959 36.7876 -Courier_New.ttf 7 e 27.4295 26.1840 23 ~ 4.4655 24.8892 8.5732 -Courier_New.ttf 7 e 27.4295 26.1840 24 # -12.5846 25.0657 42.1962 -Courier_New.ttf 7 e 27.4295 26.1840 25 O -8.3195 29.1932 34.4140 -Courier_New.ttf 7 e 27.4295 26.1840 26 ` -12.3479 9.8498 8.6565 -Courier_New.ttf 7 e 27.4295 26.1840 27 @ -11.8622 22.0800 40.4029 -Courier_New.ttf 7 e 27.4295 26.1840 28 F -7.9657 27.3234 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 29 S -8.3569 24.5392 34.4140 -Courier_New.ttf 7 e 27.4295 26.1840 30 p 0.1239 29.8826 36.6565 -Courier_New.ttf 7 e 27.4295 26.1840 31 “ -10.0393 24.6392 15.1932 -Courier_New.ttf 7 e 27.4295 26.1840 32 % -10.1621 24.3664 36.5505 -Courier_New.ttf 7 e 27.4295 26.1840 33 £ -8.3898 26.2840 33.8435 -Courier_New.ttf 7 e 27.4295 26.1840 34 . 18.2044 8.8232 7.9800 -Courier_New.ttf 7 e 27.4295 26.1840 35 2 -10.7864 23.1732 36.3838 -Courier_New.ttf 7 e 27.4295 26.1840 36 5 -10.5732 23.7437 36.3838 -Courier_New.ttf 7 e 27.4295 26.1840 37 m 0.1143 35.1594 25.6135 -Courier_New.ttf 7 e 27.4295 26.1840 38 V -7.7462 35.1140 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 39 6 -10.7248 23.7959 36.7876 -Courier_New.ttf 7 e 27.4295 26.1840 40 w 0.4727 32.7502 25.2097 -Courier_New.ttf 7 e 27.4295 26.1840 41 T -7.7740 26.8590 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 42 M -7.6861 34.5367 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 43 G -8.3807 29.5621 34.4140 -Courier_New.ttf 7 e 27.4295 26.1840 44 b -10.2821 29.8826 36.5505 -Courier_New.ttf 7 e 27.4295 26.1840 45 9 -10.6832 22.4193 36.7876 -Courier_New.ttf 7 e 27.4295 26.1840 46 ; 0.3870 12.8068 30.9570 -Courier_New.ttf 7 e 27.4295 26.1840 47 D -7.9587 28.4394 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 48 L -7.9058 28.2727 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 49 y 0.2067 29.3121 36.2527 -Courier_New.ttf 7 e 27.4295 26.1840 50 ‘ -10.3754 12.7529 17.2297 -Courier_New.ttf 7 e 27.4295 26.1840 51 \ -13.8851 24.6392 44.3865 -Courier_New.ttf 7 e 27.4295 26.1840 52 R -7.9869 30.7070 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 53 < -6.7937 28.0000 31.5797 -Courier_New.ttf 7 e 27.4295 26.1840 54 4 -10.4783 22.3232 35.9800 -Courier_New.ttf 7 e 27.4295 26.1840 55 8 -10.4895 21.3094 36.7876 -Courier_New.ttf 7 e 27.4295 26.1840 56 0 -10.9907 23.6959 36.7876 -Courier_New.ttf 7 e 27.4295 26.1840 57 A -7.7760 37.1505 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 58 E -7.7988 27.3234 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 59 B -8.4420 28.4167 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 60 v 0.1932 32.1252 25.2097 -Courier_New.ttf 7 e 27.4295 26.1840 61 k -10.6037 26.6529 35.9800 -Courier_New.ttf 7 e 27.4295 26.1840 62 J -7.4829 28.6766 34.1640 -Courier_New.ttf 7 e 27.4295 26.1840 63 U -7.9096 31.3964 34.1640 -Courier_New.ttf 7 e 27.4295 26.1840 64 j -11.6282 18.4230 48.2928 -Courier_New.ttf 7 e 27.4295 26.1840 65 ( -10.4435 8.4065 43.1932 -Courier_New.ttf 7 e 27.4295 26.1840 66 7 -10.4652 22.0027 35.9800 -Courier_New.ttf 7 e 27.4295 26.1840 67 § -10.3300 27.1696 39.8097 -Courier_New.ttf 7 e 27.4295 26.1840 68 $ -13.4932 21.8261 44.3865 -Courier_New.ttf 7 e 27.4295 26.1840 69 € -8.1345 31.2297 34.4140 -Courier_New.ttf 7 e 27.4295 26.1840 70 / -14.2683 24.6392 44.3865 -Courier_New.ttf 7 e 27.4295 26.1840 71 C -8.4006 28.2727 34.4140 -Courier_New.ttf 7 e 27.4295 26.1840 72 * -10.2105 22.0860 21.9800 -Courier_New.ttf 7 e 27.4295 26.1840 73 ” -10.5893 24.6392 15.1932 -Courier_New.ttf 7 e 27.4295 26.1840 74 ? -8.8352 21.0594 34.9406 -Courier_New.ttf 7 e 27.4295 26.1840 75 { -10.7756 11.7324 43.3121 -Courier_New.ttf 7 e 27.4295 26.1840 76 } -10.9771 11.7324 43.3121 -Courier_New.ttf 7 e 27.4295 26.1840 77 , 16.8634 11.5597 17.2297 -Courier_New.ttf 7 e 27.4295 26.1840 78 I -8.1456 22.0860 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 79 ° -16.7285 15.7638 15.7638 -Courier_New.ttf 7 e 27.4295 26.1840 80 K -7.9514 31.2297 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 81 H -8.0949 28.4333 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 82 q 0.0624 29.1932 36.6565 -Courier_New.ttf 7 e 27.4295 26.1840 83 & -4.7697 21.9800 31.2070 -Courier_New.ttf 7 e 27.4295 26.1840 84 ’ -10.6232 12.7529 17.2297 -Courier_New.ttf 7 e 27.4295 26.1840 85 [ -10.2918 9.5998 43.1932 -Courier_New.ttf 7 e 27.4295 26.1840 86 - 7.4621 24.8892 3.2297 -Courier_New.ttf 7 e 27.4295 26.1840 87 Y -8.5260 29.3410 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 88 Q -7.8416 30.3865 40.7840 -Courier_New.ttf 7 e 27.4295 26.1840 89 " -10.2130 19.6995 16.0365 -Courier_New.ttf 7 e 27.4295 26.1840 90 ! -10.7076 6.4594 36.5505 -Courier_New.ttf 7 e 27.4295 26.1840 91 x 0.4864 29.1932 25.2097 -Courier_New.ttf 7 e 27.4295 26.1840 92 ) -10.0876 8.4065 43.1932 -Courier_New.ttf 7 e 27.4295 26.1840 93 = 3.0498 29.1932 11.3097 -Courier_New.ttf 7 e 27.4295 26.1840 94 + -5.1500 26.8590 29.2455 -Courier_New.ttf 7 e 27.4295 26.1840 95 X -7.9058 30.9092 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 96 » -0.3068 29.5432 26.8068 -Courier_New.ttf 7 e 27.4295 26.1840 97 ' -10.4192 7.9027 17.2297 -Courier_New.ttf 7 e 27.4295 26.1840 98 ¢ -12.6657 20.7867 38.0998 -Courier_New.ttf 7 e 27.4295 26.1840 99 Z -7.5603 23.0959 33.5935 -Courier_New.ttf 7 e 27.4295 26.1840 100 > -6.7626 28.0000 31.5797 -Courier_New.ttf 7 e 27.4295 26.1840 101 ® -8.9066 34.7867 35.0594 -Courier_New.ttf 7 e 27.4295 26.1840 102 © -8.4102 35.0594 34.7867 -Courier_New.ttf 7 e 27.4295 26.1840 103 ] -10.5978 9.5998 43.1932 -Courier_New.ttf 7 e 27.4295 26.1840 104 é -12.0243 27.4295 38.4203 -Courier_New.ttf 7 e 27.4295 26.1840 105 z 0.1472 23.7959 25.2097 -Courier_New.ttf 7 e 27.4295 26.1840 106 _ 39.4347 35.0594 2.3865 -Courier_New.ttf 7 e 27.4295 26.1840 107 ¥ -7.8214 29.6744 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 1 t -8.9428 26.2362 34.6034 -Courier_New.ttf 8 : 8.6565 25.7802 2 h -10.8417 29.6326 35.9800 -Courier_New.ttf 8 : 8.6565 25.7802 3 a -0.2186 26.9256 26.1840 -Courier_New.ttf 8 : 8.6565 25.7802 4 n -0.3766 29.2061 25.6135 -Courier_New.ttf 8 : 8.6565 25.7802 5 P -8.1882 26.0529 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 6 o -0.3674 26.8068 26.1840 -Courier_New.ttf 8 : 8.6565 25.7802 7 e -0.3737 27.4295 26.1840 -Courier_New.ttf 8 : 8.6565 25.7802 8 : -0.1444 8.6565 25.7802 -Courier_New.ttf 8 : 8.6565 25.7802 9 r -0.5930 26.8295 25.6135 -Courier_New.ttf 8 : 8.6565 25.7802 10 l -10.8417 24.4725 35.9800 -Courier_New.ttf 8 : 8.6565 25.7802 11 i -12.2643 24.4725 37.2498 -Courier_New.ttf 8 : 8.6565 25.7802 12 1 -12.4006 22.8527 37.5770 -Courier_New.ttf 8 : 8.6565 25.7802 13 | -10.4778 2.3865 43.1932 -Courier_New.ttf 8 : 8.6565 25.7802 14 N -8.5591 31.3964 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 15 f -10.6903 25.4696 35.9800 -Courier_New.ttf 8 : 8.6565 25.7802 16 g -0.5053 27.8462 36.6565 -Courier_New.ttf 8 : 8.6565 25.7802 17 d -10.6287 30.1138 36.5505 -Courier_New.ttf 8 : 8.6565 25.7802 18 W -8.6381 32.5836 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 19 s -0.4396 23.0959 26.1840 -Courier_New.ttf 8 : 8.6565 25.7802 20 c -0.4780 26.6529 26.1840 -Courier_New.ttf 8 : 8.6565 25.7802 21 u -0.3771 29.6326 25.7802 -Courier_New.ttf 8 : 8.6565 25.7802 22 3 -11.2098 23.6959 36.7876 -Courier_New.ttf 8 : 8.6565 25.7802 23 ~ 4.1618 24.8892 8.5732 -Courier_New.ttf 8 : 8.6565 25.7802 24 # -13.1373 25.0657 42.1962 -Courier_New.ttf 8 : 8.6565 25.7802 25 O -8.6596 29.1932 34.4140 -Courier_New.ttf 8 : 8.6565 25.7802 26 ` -12.7389 9.8498 8.6565 -Courier_New.ttf 8 : 8.6565 25.7802 27 @ -12.1156 22.0800 40.4029 -Courier_New.ttf 8 : 8.6565 25.7802 28 F -8.3994 27.3234 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 29 S -8.6828 24.5392 34.4140 -Courier_New.ttf 8 : 8.6565 25.7802 30 p -0.4896 29.8826 36.6565 -Courier_New.ttf 8 : 8.6565 25.7802 31 “ -10.5506 24.6392 15.1932 -Courier_New.ttf 8 : 8.6565 25.7802 32 % -10.6405 24.3664 36.5505 -Courier_New.ttf 8 : 8.6565 25.7802 33 £ -8.8191 26.2840 33.8435 -Courier_New.ttf 8 : 8.6565 25.7802 34 . 17.7405 8.8232 7.9800 -Courier_New.ttf 8 : 8.6565 25.7802 35 2 -11.2384 23.1732 36.3838 -Courier_New.ttf 8 : 8.6565 25.7802 36 5 -10.8445 23.7437 36.3838 -Courier_New.ttf 8 : 8.6565 25.7802 37 m -0.5294 35.1594 25.6135 -Courier_New.ttf 8 : 8.6565 25.7802 38 V -8.1715 35.1140 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 39 6 -11.2475 23.7959 36.7876 -Courier_New.ttf 8 : 8.6565 25.7802 40 w 0.2169 32.7502 25.2097 -Courier_New.ttf 8 : 8.6565 25.7802 41 T -8.2846 26.8590 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 42 M -8.3838 34.5367 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 43 G -8.6259 29.5621 34.4140 -Courier_New.ttf 8 : 8.6565 25.7802 44 b -11.0808 29.8826 36.5505 -Courier_New.ttf 8 : 8.6565 25.7802 45 9 -11.1695 22.4193 36.7876 -Courier_New.ttf 8 : 8.6565 25.7802 46 ; -0.1204 12.8068 30.9570 -Courier_New.ttf 8 : 8.6565 25.7802 47 D -8.3755 28.4394 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 48 L -8.3411 28.2727 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 49 y -0.0812 29.3121 36.2527 -Courier_New.ttf 8 : 8.6565 25.7802 50 ‘ -10.9991 12.7529 17.2297 -Courier_New.ttf 8 : 8.6565 25.7802 51 \ -13.8804 24.6392 44.3865 -Courier_New.ttf 8 : 8.6565 25.7802 52 R -8.3677 30.7070 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 53 < -7.1847 28.0000 31.5797 -Courier_New.ttf 8 : 8.6565 25.7802 54 4 -11.0127 22.3232 35.9800 -Courier_New.ttf 8 : 8.6565 25.7802 55 8 -11.2158 21.3094 36.7876 -Courier_New.ttf 8 : 8.6565 25.7802 56 0 -11.1741 23.6959 36.7876 -Courier_New.ttf 8 : 8.6565 25.7802 57 A -8.4293 37.1505 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 58 E -8.5294 27.3234 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 59 B -8.1767 28.4167 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 60 v -0.0035 32.1252 25.2097 -Courier_New.ttf 8 : 8.6565 25.7802 61 k -10.7860 26.6529 35.9800 -Courier_New.ttf 8 : 8.6565 25.7802 62 J -8.3898 28.6766 34.1640 -Courier_New.ttf 8 : 8.6565 25.7802 63 U -8.4709 31.3964 34.1640 -Courier_New.ttf 8 : 8.6565 25.7802 64 j -11.9261 18.4230 48.2928 -Courier_New.ttf 8 : 8.6565 25.7802 65 ( -10.5807 8.4065 43.1932 -Courier_New.ttf 8 : 8.6565 25.7802 66 7 -10.5332 22.0027 35.9800 -Courier_New.ttf 8 : 8.6565 25.7802 67 § -10.7346 27.1696 39.8097 -Courier_New.ttf 8 : 8.6565 25.7802 68 $ -13.6879 21.8261 44.3865 -Courier_New.ttf 8 : 8.6565 25.7802 69 € -8.5841 31.2297 34.4140 -Courier_New.ttf 8 : 8.6565 25.7802 70 / -14.5195 24.6392 44.3865 -Courier_New.ttf 8 : 8.6565 25.7802 71 C -8.5727 28.2727 34.4140 -Courier_New.ttf 8 : 8.6565 25.7802 72 * -10.8625 22.0860 21.9800 -Courier_New.ttf 8 : 8.6565 25.7802 73 ” -10.8637 24.6392 15.1932 -Courier_New.ttf 8 : 8.6565 25.7802 74 ? -9.2174 21.0594 34.9406 -Courier_New.ttf 8 : 8.6565 25.7802 75 { -11.1718 11.7324 43.3121 -Courier_New.ttf 8 : 8.6565 25.7802 76 } -11.3984 11.7324 43.3121 -Courier_New.ttf 8 : 8.6565 25.7802 77 , 16.6781 11.5597 17.2297 -Courier_New.ttf 8 : 8.6565 25.7802 78 I -8.5042 22.0860 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 79 ° -16.9624 15.7638 15.7638 -Courier_New.ttf 8 : 8.6565 25.7802 80 K -8.3838 31.2297 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 81 H -8.2908 28.4333 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 82 q -0.7042 29.1932 36.6565 -Courier_New.ttf 8 : 8.6565 25.7802 83 & -5.1661 21.9800 31.2070 -Courier_New.ttf 8 : 8.6565 25.7802 84 ’ -10.5670 12.7529 17.2297 -Courier_New.ttf 8 : 8.6565 25.7802 85 [ -10.9399 9.5998 43.1932 -Courier_New.ttf 8 : 8.6565 25.7802 86 - 6.9869 24.8892 3.2297 -Courier_New.ttf 8 : 8.6565 25.7802 87 Y -8.2187 29.3410 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 88 Q -8.6967 30.3865 40.7840 -Courier_New.ttf 8 : 8.6565 25.7802 89 " -10.8574 19.6995 16.0365 -Courier_New.ttf 8 : 8.6565 25.7802 90 ! -11.0180 6.4594 36.5505 -Courier_New.ttf 8 : 8.6565 25.7802 91 x -0.0183 29.1932 25.2097 -Courier_New.ttf 8 : 8.6565 25.7802 92 ) -10.8703 8.4065 43.1932 -Courier_New.ttf 8 : 8.6565 25.7802 93 = 2.4359 29.1932 11.3097 -Courier_New.ttf 8 : 8.6565 25.7802 94 + -5.7065 26.8590 29.2455 -Courier_New.ttf 8 : 8.6565 25.7802 95 X -8.2477 30.9092 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 96 » -0.3213 28.7766 26.8068 -Courier_New.ttf 8 : 8.6565 25.7802 97 ' -10.6687 7.9027 17.2297 -Courier_New.ttf 8 : 8.6565 25.7802 98 ¢ -12.9597 20.7867 38.0998 -Courier_New.ttf 8 : 8.6565 25.7802 99 Z -8.4008 23.0959 33.5935 -Courier_New.ttf 8 : 8.6565 25.7802 100 > -7.3089 28.0000 31.5797 -Courier_New.ttf 8 : 8.6565 25.7802 101 ® -9.4080 34.7867 35.0594 -Courier_New.ttf 8 : 8.6565 25.7802 102 © -8.8109 35.0594 34.7867 -Courier_New.ttf 8 : 8.6565 25.7802 103 ] -10.7925 9.5998 43.1932 -Courier_New.ttf 8 : 8.6565 25.7802 104 é -12.4275 27.4295 38.4203 -Courier_New.ttf 8 : 8.6565 25.7802 105 z 0.0319 23.7959 25.2097 -Courier_New.ttf 8 : 8.6565 25.7802 106 _ 39.4255 35.0594 2.3865 -Courier_New.ttf 8 : 8.6565 25.7802 107 ¥ -8.4080 29.6744 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 1 t -8.4967 26.2362 34.6034 -Courier_New.ttf 9 r 26.8295 25.6135 2 h -10.6139 29.6326 35.9800 -Courier_New.ttf 9 r 26.8295 25.6135 3 a 0.2256 26.9256 26.1840 -Courier_New.ttf 9 r 26.8295 25.6135 4 n -0.0682 29.2061 25.6135 -Courier_New.ttf 9 r 26.8295 25.6135 5 P -8.3081 26.0529 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 6 o 0.0292 26.8068 26.1840 -Courier_New.ttf 9 r 26.8295 25.6135 7 e 0.1266 27.4295 26.1840 -Courier_New.ttf 9 r 26.8295 25.6135 8 : 0.4941 8.6565 25.7802 -Courier_New.ttf 9 r 26.8295 25.6135 9 r -0.0713 26.8295 25.6135 -Courier_New.ttf 9 r 26.8295 25.6135 10 l -10.2173 24.4725 35.9800 -Courier_New.ttf 9 r 26.8295 25.6135 11 i -11.5400 24.4725 37.2498 -Courier_New.ttf 9 r 26.8295 25.6135 12 1 -12.3014 22.8527 37.5770 -Courier_New.ttf 9 r 26.8295 25.6135 13 | -10.0460 2.3865 43.1932 -Courier_New.ttf 9 r 26.8295 25.6135 14 N -7.8924 31.3964 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 15 f -10.1611 25.4696 35.9800 -Courier_New.ttf 9 r 26.8295 25.6135 16 g -0.0200 27.8462 36.6565 -Courier_New.ttf 9 r 26.8295 25.6135 17 d -10.3140 30.1138 36.5505 -Courier_New.ttf 9 r 26.8295 25.6135 18 W -7.9216 32.5836 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 19 s -0.0385 23.0959 26.1840 -Courier_New.ttf 9 r 26.8295 25.6135 20 c -0.3841 26.6529 26.1840 -Courier_New.ttf 9 r 26.8295 25.6135 21 u 0.2404 29.6326 25.7802 -Courier_New.ttf 9 r 26.8295 25.6135 22 3 -10.6619 23.6959 36.7876 -Courier_New.ttf 9 r 26.8295 25.6135 23 ~ 4.5003 24.8892 8.5732 -Courier_New.ttf 9 r 26.8295 25.6135 24 # -12.3738 25.0657 42.1962 -Courier_New.ttf 9 r 26.8295 25.6135 25 O -8.1442 29.1932 34.4140 -Courier_New.ttf 9 r 26.8295 25.6135 26 ` -12.3532 9.8498 8.6565 -Courier_New.ttf 9 r 26.8295 25.6135 27 @ -11.9098 22.0800 40.4029 -Courier_New.ttf 9 r 26.8295 25.6135 28 F -8.0393 27.3234 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 29 S -8.3314 24.5392 34.4140 -Courier_New.ttf 9 r 26.8295 25.6135 30 p -0.0940 29.8826 36.6565 -Courier_New.ttf 9 r 26.8295 25.6135 31 “ -10.5992 24.6392 15.1932 -Courier_New.ttf 9 r 26.8295 25.6135 32 % -10.5054 24.3664 36.5505 -Courier_New.ttf 9 r 26.8295 25.6135 33 £ -8.3286 26.2840 33.8435 -Courier_New.ttf 9 r 26.8295 25.6135 34 . 18.1247 8.8232 7.9800 -Courier_New.ttf 9 r 26.8295 25.6135 35 2 -10.9718 23.1732 36.3838 -Courier_New.ttf 9 r 26.8295 25.6135 36 5 -10.5183 23.7437 36.3838 -Courier_New.ttf 9 r 26.8295 25.6135 37 m -0.0995 35.1594 25.6135 -Courier_New.ttf 9 r 26.8295 25.6135 38 V -8.0514 35.1140 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 39 6 -10.7119 23.7959 36.7876 -Courier_New.ttf 9 r 26.8295 25.6135 40 w 0.2922 32.7502 25.2097 -Courier_New.ttf 9 r 26.8295 25.6135 41 T -7.8988 26.8590 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 42 M -8.1555 34.5367 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 43 G -7.9946 29.5621 34.4140 -Courier_New.ttf 9 r 26.8295 25.6135 44 b -10.3263 29.8826 36.5505 -Courier_New.ttf 9 r 26.8295 25.6135 45 9 -10.4617 22.4193 36.7876 -Courier_New.ttf 9 r 26.8295 25.6135 46 ; 0.5483 12.8068 30.9570 -Courier_New.ttf 9 r 26.8295 25.6135 47 D -8.0809 28.4394 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 48 L -8.0764 28.2727 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 49 y 0.0685 29.3121 36.2527 -Courier_New.ttf 9 r 26.8295 25.6135 50 ‘ -10.2891 12.7529 17.2297 -Courier_New.ttf 9 r 26.8295 25.6135 51 \ -13.7749 24.6392 44.3865 -Courier_New.ttf 9 r 26.8295 25.6135 52 R -7.7454 30.7070 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 53 < -6.5769 28.0000 31.5797 -Courier_New.ttf 9 r 26.8295 25.6135 54 4 -10.2960 22.3232 35.9800 -Courier_New.ttf 9 r 26.8295 25.6135 55 8 -10.7151 21.3094 36.7876 -Courier_New.ttf 9 r 26.8295 25.6135 56 0 -10.7657 23.6959 36.7876 -Courier_New.ttf 9 r 26.8295 25.6135 57 A -7.7928 37.1505 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 58 E -7.6208 27.3234 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 59 B -8.1445 28.4167 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 60 v 0.2629 32.1252 25.2097 -Courier_New.ttf 9 r 26.8295 25.6135 61 k -10.4178 26.6529 35.9800 -Courier_New.ttf 9 r 26.8295 25.6135 62 J -8.2580 28.6766 34.1640 -Courier_New.ttf 9 r 26.8295 25.6135 63 U -7.9390 31.3964 34.1640 -Courier_New.ttf 9 r 26.8295 25.6135 64 j -11.4972 18.4230 48.2928 -Courier_New.ttf 9 r 26.8295 25.6135 65 ( -10.3372 8.4065 43.1932 -Courier_New.ttf 9 r 26.8295 25.6135 66 7 -10.4268 22.0027 35.9800 -Courier_New.ttf 9 r 26.8295 25.6135 67 § -10.4379 27.1696 39.8097 -Courier_New.ttf 9 r 26.8295 25.6135 68 $ -13.8150 21.8261 44.3865 -Courier_New.ttf 9 r 26.8295 25.6135 69 € -8.0802 31.2297 34.4140 -Courier_New.ttf 9 r 26.8295 25.6135 70 / -14.4742 24.6392 44.3865 -Courier_New.ttf 9 r 26.8295 25.6135 71 C -8.2073 28.2727 34.4140 -Courier_New.ttf 9 r 26.8295 25.6135 72 * -10.5314 22.0860 21.9800 -Courier_New.ttf 9 r 26.8295 25.6135 73 ” -10.3073 24.6392 15.1932 -Courier_New.ttf 9 r 26.8295 25.6135 74 ? -8.7676 21.0594 34.9406 -Courier_New.ttf 9 r 26.8295 25.6135 75 { -10.4923 11.7324 43.3121 -Courier_New.ttf 9 r 26.8295 25.6135 76 } -10.6999 11.7324 43.3121 -Courier_New.ttf 9 r 26.8295 25.6135 77 , 17.0139 11.5597 17.2297 -Courier_New.ttf 9 r 26.8295 25.6135 78 I -7.9813 22.0860 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 79 ° -16.5994 15.7638 15.7638 -Courier_New.ttf 9 r 26.8295 25.6135 80 K -7.8736 31.2297 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 81 H -8.0456 28.4333 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 82 q -0.1298 29.1932 36.6565 -Courier_New.ttf 9 r 26.8295 25.6135 83 & -4.9640 21.9800 31.2070 -Courier_New.ttf 9 r 26.8295 25.6135 84 ’ -10.2807 12.7529 17.2297 -Courier_New.ttf 9 r 26.8295 25.6135 85 [ -10.3724 9.5998 43.1932 -Courier_New.ttf 9 r 26.8295 25.6135 86 - 7.3518 24.8892 3.2297 -Courier_New.ttf 9 r 26.8295 25.6135 87 Y -7.9716 29.3410 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 88 Q -8.4283 30.3865 40.7840 -Courier_New.ttf 9 r 26.8295 25.6135 89 " -10.4043 19.6995 16.0365 -Courier_New.ttf 9 r 26.8295 25.6135 90 ! -10.6988 6.4594 36.5505 -Courier_New.ttf 9 r 26.8295 25.6135 91 x 0.3538 29.1932 25.2097 -Courier_New.ttf 9 r 26.8295 25.6135 92 ) -10.2509 8.4065 43.1932 -Courier_New.ttf 9 r 26.8295 25.6135 93 = 2.7842 29.1932 11.3097 -Courier_New.ttf 9 r 26.8295 25.6135 94 + -5.7393 26.8590 29.2455 -Courier_New.ttf 9 r 26.8295 25.6135 95 X -8.0566 30.9092 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 96 » 0.0280 29.5432 26.8068 -Courier_New.ttf 9 r 26.8295 25.6135 97 ' -10.3234 7.9027 17.2297 -Courier_New.ttf 9 r 26.8295 25.6135 98 ¢ -12.2560 20.7867 38.0998 -Courier_New.ttf 9 r 26.8295 25.6135 99 Z -7.9442 23.0959 33.5935 -Courier_New.ttf 9 r 26.8295 25.6135 100 > -6.9716 28.0000 31.5797 -Courier_New.ttf 9 r 26.8295 25.6135 101 ® -8.8767 34.7867 35.0594 -Courier_New.ttf 9 r 26.8295 25.6135 102 © -8.6691 35.0594 34.7867 -Courier_New.ttf 9 r 26.8295 25.6135 103 ] -10.3374 9.5998 43.1932 -Courier_New.ttf 9 r 26.8295 25.6135 104 é -12.1960 27.4295 38.4203 -Courier_New.ttf 9 r 26.8295 25.6135 105 z 0.2213 23.7959 25.2097 -Courier_New.ttf 9 r 26.8295 25.6135 106 _ 39.7221 35.0594 2.3865 -Courier_New.ttf 9 r 26.8295 25.6135 107 ¥ -7.9090 29.6744 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 1 t 1.9953 26.2362 34.6034 -Courier_New.ttf 10 l 24.4725 35.9800 2 h -0.3267 29.6326 35.9800 -Courier_New.ttf 10 l 24.4725 35.9800 3 a 10.1844 26.9256 26.1840 -Courier_New.ttf 10 l 24.4725 35.9800 4 n 10.3081 29.2061 25.6135 -Courier_New.ttf 10 l 24.4725 35.9800 5 P 2.4935 26.0529 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 6 o 10.2838 26.8068 26.1840 -Courier_New.ttf 10 l 24.4725 35.9800 7 e 10.1103 27.4295 26.1840 -Courier_New.ttf 10 l 24.4725 35.9800 8 : 10.6881 8.6565 25.7802 -Courier_New.ttf 10 l 24.4725 35.9800 9 r 10.0222 26.8295 25.6135 -Courier_New.ttf 10 l 24.4725 35.9800 10 l -0.0774 24.4725 35.9800 -Courier_New.ttf 10 l 24.4725 35.9800 11 i -1.0456 24.4725 37.2498 -Courier_New.ttf 10 l 24.4725 35.9800 12 1 -1.6939 22.8527 37.5770 -Courier_New.ttf 10 l 24.4725 35.9800 13 | -0.3796 2.3865 43.1932 -Courier_New.ttf 10 l 24.4725 35.9800 14 N 2.3851 31.3964 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 15 f -0.0525 25.4696 35.9800 -Courier_New.ttf 10 l 24.4725 35.9800 16 g 10.3535 27.8462 36.6565 -Courier_New.ttf 10 l 24.4725 35.9800 17 d -0.1338 30.1138 36.5505 -Courier_New.ttf 10 l 24.4725 35.9800 18 W 2.0940 32.5836 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 19 s 10.3562 23.0959 26.1840 -Courier_New.ttf 10 l 24.4725 35.9800 20 c 10.4204 26.6529 26.1840 -Courier_New.ttf 10 l 24.4725 35.9800 21 u 10.6923 29.6326 25.7802 -Courier_New.ttf 10 l 24.4725 35.9800 22 3 -0.4157 23.6959 36.7876 -Courier_New.ttf 10 l 24.4725 35.9800 23 ~ 14.8024 24.8892 8.5732 -Courier_New.ttf 10 l 24.4725 35.9800 24 # -2.8426 25.0657 42.1962 -Courier_New.ttf 10 l 24.4725 35.9800 25 O 2.2333 29.1932 34.4140 -Courier_New.ttf 10 l 24.4725 35.9800 26 ` -1.6071 9.8498 8.6565 -Courier_New.ttf 10 l 24.4725 35.9800 27 @ -1.3886 22.0800 40.4029 -Courier_New.ttf 10 l 24.4725 35.9800 28 F 2.4844 27.3234 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 29 S 2.2263 24.5392 34.4140 -Courier_New.ttf 10 l 24.4725 35.9800 30 p 10.2704 29.8826 36.6565 -Courier_New.ttf 10 l 24.4725 35.9800 31 “ 0.0734 24.6392 15.1932 -Courier_New.ttf 10 l 24.4725 35.9800 32 % 0.0524 24.3664 36.5505 -Courier_New.ttf 10 l 24.4725 35.9800 33 £ 2.0480 26.2840 33.8435 -Courier_New.ttf 10 l 24.4725 35.9800 34 . 28.3318 8.8232 7.9800 -Courier_New.ttf 10 l 24.4725 35.9800 35 2 -0.6351 23.1732 36.3838 -Courier_New.ttf 10 l 24.4725 35.9800 36 5 -0.0871 23.7437 36.3838 -Courier_New.ttf 10 l 24.4725 35.9800 37 m 10.5073 35.1594 25.6135 -Courier_New.ttf 10 l 24.4725 35.9800 38 V 2.3581 35.1140 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 39 6 -0.3122 23.7959 36.7876 -Courier_New.ttf 10 l 24.4725 35.9800 40 w 10.7930 32.7502 25.2097 -Courier_New.ttf 10 l 24.4725 35.9800 41 T 2.4136 26.8590 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 42 M 2.5505 34.5367 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 43 G 2.2593 29.5621 34.4140 -Courier_New.ttf 10 l 24.4725 35.9800 44 b -0.0973 29.8826 36.5505 -Courier_New.ttf 10 l 24.4725 35.9800 45 9 -0.2245 22.4193 36.7876 -Courier_New.ttf 10 l 24.4725 35.9800 46 ; 10.8115 12.8068 30.9570 -Courier_New.ttf 10 l 24.4725 35.9800 47 D 2.1180 28.4394 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 48 L 2.3212 28.2727 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 49 y 10.7931 29.3121 36.2527 -Courier_New.ttf 10 l 24.4725 35.9800 50 ‘ 0.1915 12.7529 17.2297 -Courier_New.ttf 10 l 24.4725 35.9800 51 \ -3.2524 24.6392 44.3865 -Courier_New.ttf 10 l 24.4725 35.9800 52 R 2.1738 30.7070 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 53 < 3.7470 28.0000 31.5797 -Courier_New.ttf 10 l 24.4725 35.9800 54 4 -0.3438 22.3232 35.9800 -Courier_New.ttf 10 l 24.4725 35.9800 55 8 -0.4212 21.3094 36.7876 -Courier_New.ttf 10 l 24.4725 35.9800 56 0 -0.3469 23.6959 36.7876 -Courier_New.ttf 10 l 24.4725 35.9800 57 A 2.2136 37.1505 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 58 E 2.3418 27.3234 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 59 B 2.3206 28.4167 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 60 v 10.7247 32.1252 25.2097 -Courier_New.ttf 10 l 24.4725 35.9800 61 k -0.0395 26.6529 35.9800 -Courier_New.ttf 10 l 24.4725 35.9800 62 J 2.4712 28.6766 34.1640 -Courier_New.ttf 10 l 24.4725 35.9800 63 U 2.0714 31.3964 34.1640 -Courier_New.ttf 10 l 24.4725 35.9800 64 j -0.9774 18.4230 48.2928 -Courier_New.ttf 10 l 24.4725 35.9800 65 ( -0.1295 8.4065 43.1932 -Courier_New.ttf 10 l 24.4725 35.9800 66 7 -0.4268 22.0027 35.9800 -Courier_New.ttf 10 l 24.4725 35.9800 67 § -0.0409 27.1696 39.8097 -Courier_New.ttf 10 l 24.4725 35.9800 68 $ -3.1462 21.8261 44.3865 -Courier_New.ttf 10 l 24.4725 35.9800 69 € 1.9817 31.2297 34.4140 -Courier_New.ttf 10 l 24.4725 35.9800 70 / -3.6524 24.6392 44.3865 -Courier_New.ttf 10 l 24.4725 35.9800 71 C 2.2964 28.2727 34.4140 -Courier_New.ttf 10 l 24.4725 35.9800 72 * -0.0631 22.0860 21.9800 -Courier_New.ttf 10 l 24.4725 35.9800 73 ” 0.1623 24.6392 15.1932 -Courier_New.ttf 10 l 24.4725 35.9800 74 ? 1.7216 21.0594 34.9406 -Courier_New.ttf 10 l 24.4725 35.9800 75 { -0.2226 11.7324 43.3121 -Courier_New.ttf 10 l 24.4725 35.9800 76 } 0.0418 11.7324 43.3121 -Courier_New.ttf 10 l 24.4725 35.9800 77 , 27.3573 11.5597 17.2297 -Courier_New.ttf 10 l 24.4725 35.9800 78 I 2.2609 22.0860 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 79 ° -6.3229 15.7638 15.7638 -Courier_New.ttf 10 l 24.4725 35.9800 80 K 2.2053 31.2297 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 81 H 2.3613 28.4333 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 82 q 10.3554 29.1932 36.6565 -Courier_New.ttf 10 l 24.4725 35.9800 83 & 5.0080 21.9800 31.2070 -Courier_New.ttf 10 l 24.4725 35.9800 84 ’ 0.1658 12.7529 17.2297 -Courier_New.ttf 10 l 24.4725 35.9800 85 [ 0.1445 9.5998 43.1932 -Courier_New.ttf 10 l 24.4725 35.9800 86 - 17.6312 24.8892 3.2297 -Courier_New.ttf 10 l 24.4725 35.9800 87 Y 2.5880 29.3410 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 88 Q 2.0948 30.3865 40.7840 -Courier_New.ttf 10 l 24.4725 35.9800 89 " 0.1988 19.6995 16.0365 -Courier_New.ttf 10 l 24.4725 35.9800 90 ! -0.0060 6.4594 36.5505 -Courier_New.ttf 10 l 24.4725 35.9800 91 x 10.5974 29.1932 25.2097 -Courier_New.ttf 10 l 24.4725 35.9800 92 ) -0.2242 8.4065 43.1932 -Courier_New.ttf 10 l 24.4725 35.9800 93 = 13.6467 29.1932 11.3097 -Courier_New.ttf 10 l 24.4725 35.9800 94 + 5.1797 26.8590 29.2455 -Courier_New.ttf 10 l 24.4725 35.9800 95 X 2.3840 30.9092 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 96 » 10.2793 29.5432 26.8068 -Courier_New.ttf 10 l 24.4725 35.9800 97 ' 0.2169 7.9027 17.2297 -Courier_New.ttf 10 l 24.4725 35.9800 98 ¢ -2.2037 20.7867 38.0998 -Courier_New.ttf 10 l 24.4725 35.9800 99 Z 2.5095 23.0959 33.5935 -Courier_New.ttf 10 l 24.4725 35.9800 100 > 3.6576 28.0000 31.5797 -Courier_New.ttf 10 l 24.4725 35.9800 101 ® 1.2070 34.7867 35.0594 -Courier_New.ttf 10 l 24.4725 35.9800 102 © 1.6280 35.0594 34.7867 -Courier_New.ttf 10 l 24.4725 35.9800 103 ] 0.3055 9.5998 43.1932 -Courier_New.ttf 10 l 24.4725 35.9800 104 é -1.8333 27.4295 38.4203 -Courier_New.ttf 10 l 24.4725 35.9800 105 z 10.8788 23.7959 25.2097 -Courier_New.ttf 10 l 24.4725 35.9800 106 _ 50.0629 35.0594 2.3865 -Courier_New.ttf 10 l 24.4725 35.9800 107 ¥ 2.4607 29.6744 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 1 t 3.1397 26.2362 34.6034 -Courier_New.ttf 11 i 24.4725 37.2498 2 h 1.1990 29.6326 35.9800 -Courier_New.ttf 11 i 24.4725 37.2498 3 a 11.7202 26.9256 26.1840 -Courier_New.ttf 11 i 24.4725 37.2498 4 n 11.6545 29.2061 25.6135 -Courier_New.ttf 11 i 24.4725 37.2498 5 P 3.7004 26.0529 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 6 o 11.3949 26.8068 26.1840 -Courier_New.ttf 11 i 24.4725 37.2498 7 e 11.4703 27.4295 26.1840 -Courier_New.ttf 11 i 24.4725 37.2498 8 : 12.1030 8.6565 25.7802 -Courier_New.ttf 11 i 24.4725 37.2498 9 r 11.5523 26.8295 25.6135 -Courier_New.ttf 11 i 24.4725 37.2498 10 l 1.2523 24.4725 35.9800 -Courier_New.ttf 11 i 24.4725 37.2498 11 i 0.1753 24.4725 37.2498 -Courier_New.ttf 11 i 24.4725 37.2498 12 1 -0.7394 22.8527 37.5770 -Courier_New.ttf 11 i 24.4725 37.2498 13 | 1.3466 2.3865 43.1932 -Courier_New.ttf 11 i 24.4725 37.2498 14 N 3.4620 31.3964 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 15 f 1.2542 25.4696 35.9800 -Courier_New.ttf 11 i 24.4725 37.2498 16 g 11.5481 27.8462 36.6565 -Courier_New.ttf 11 i 24.4725 37.2498 17 d 1.1958 30.1138 36.5505 -Courier_New.ttf 11 i 24.4725 37.2498 18 W 3.6503 32.5836 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 19 s 11.6109 23.0959 26.1840 -Courier_New.ttf 11 i 24.4725 37.2498 20 c 11.1542 26.6529 26.1840 -Courier_New.ttf 11 i 24.4725 37.2498 21 u 12.1857 29.6326 25.7802 -Courier_New.ttf 11 i 24.4725 37.2498 22 3 0.6296 23.6959 36.7876 -Courier_New.ttf 11 i 24.4725 37.2498 23 ~ 16.0804 24.8892 8.5732 -Courier_New.ttf 11 i 24.4725 37.2498 24 # -1.0425 25.0657 42.1962 -Courier_New.ttf 11 i 24.4725 37.2498 25 O 3.3248 29.1932 34.4140 -Courier_New.ttf 11 i 24.4725 37.2498 26 ` -0.5031 9.8498 8.6565 -Courier_New.ttf 11 i 24.4725 37.2498 27 @ -0.1351 22.0800 40.4029 -Courier_New.ttf 11 i 24.4725 37.2498 28 F 3.2854 27.3234 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 29 S 2.9597 24.5392 34.4140 -Courier_New.ttf 11 i 24.4725 37.2498 30 p 11.5051 29.8826 36.6565 -Courier_New.ttf 11 i 24.4725 37.2498 31 “ 1.0488 24.6392 15.1932 -Courier_New.ttf 11 i 24.4725 37.2498 32 % 1.1113 24.3664 36.5505 -Courier_New.ttf 11 i 24.4725 37.2498 33 £ 3.6050 26.2840 33.8435 -Courier_New.ttf 11 i 24.4725 37.2498 34 . 29.6493 8.8232 7.9800 -Courier_New.ttf 11 i 24.4725 37.2498 35 2 1.0327 23.1732 36.3838 -Courier_New.ttf 11 i 24.4725 37.2498 36 5 1.2128 23.7437 36.3838 -Courier_New.ttf 11 i 24.4725 37.2498 37 m 11.8007 35.1594 25.6135 -Courier_New.ttf 11 i 24.4725 37.2498 38 V 3.6692 35.1140 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 39 6 0.8419 23.7959 36.7876 -Courier_New.ttf 11 i 24.4725 37.2498 40 w 11.8876 32.7502 25.2097 -Courier_New.ttf 11 i 24.4725 37.2498 41 T 3.6763 26.8590 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 42 M 3.9890 34.5367 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 43 G 3.4050 29.5621 34.4140 -Courier_New.ttf 11 i 24.4725 37.2498 44 b 1.3471 29.8826 36.5505 -Courier_New.ttf 11 i 24.4725 37.2498 45 9 1.0872 22.4193 36.7876 -Courier_New.ttf 11 i 24.4725 37.2498 46 ; 12.2541 12.8068 30.9570 -Courier_New.ttf 11 i 24.4725 37.2498 47 D 3.5595 28.4394 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 48 L 3.5894 28.2727 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 49 y 12.0734 29.3121 36.2527 -Courier_New.ttf 11 i 24.4725 37.2498 50 ‘ 1.4441 12.7529 17.2297 -Courier_New.ttf 11 i 24.4725 37.2498 51 \ -1.9418 24.6392 44.3865 -Courier_New.ttf 11 i 24.4725 37.2498 52 R 3.4125 30.7070 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 53 < 4.7072 28.0000 31.5797 -Courier_New.ttf 11 i 24.4725 37.2498 54 4 1.3542 22.3232 35.9800 -Courier_New.ttf 11 i 24.4725 37.2498 55 8 0.7431 21.3094 36.7876 -Courier_New.ttf 11 i 24.4725 37.2498 56 0 1.0235 23.6959 36.7876 -Courier_New.ttf 11 i 24.4725 37.2498 57 A 3.7337 37.1505 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 58 E 3.4849 27.3234 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 59 B 3.8279 28.4167 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 60 v 12.2500 32.1252 25.2097 -Courier_New.ttf 11 i 24.4725 37.2498 61 k 1.3314 26.6529 35.9800 -Courier_New.ttf 11 i 24.4725 37.2498 62 J 3.6908 28.6766 34.1640 -Courier_New.ttf 11 i 24.4725 37.2498 63 U 3.5782 31.3964 34.1640 -Courier_New.ttf 11 i 24.4725 37.2498 64 j 0.1473 18.4230 48.2928 -Courier_New.ttf 11 i 24.4725 37.2498 65 ( 1.3817 8.4065 43.1932 -Courier_New.ttf 11 i 24.4725 37.2498 66 7 1.3440 22.0027 35.9800 -Courier_New.ttf 11 i 24.4725 37.2498 67 § 1.2758 27.1696 39.8097 -Courier_New.ttf 11 i 24.4725 37.2498 68 $ -1.8609 21.8261 44.3865 -Courier_New.ttf 11 i 24.4725 37.2498 69 € 3.6144 31.2297 34.4140 -Courier_New.ttf 11 i 24.4725 37.2498 70 / -2.5300 24.6392 44.3865 -Courier_New.ttf 11 i 24.4725 37.2498 71 C 3.3835 28.2727 34.4140 -Courier_New.ttf 11 i 24.4725 37.2498 72 * 1.2750 22.0860 21.9800 -Courier_New.ttf 11 i 24.4725 37.2498 73 ” 1.6136 24.6392 15.1932 -Courier_New.ttf 11 i 24.4725 37.2498 74 ? 2.8738 21.0594 34.9406 -Courier_New.ttf 11 i 24.4725 37.2498 75 { 0.7514 11.7324 43.3121 -Courier_New.ttf 11 i 24.4725 37.2498 76 } 1.0523 11.7324 43.3121 -Courier_New.ttf 11 i 24.4725 37.2498 77 , 28.4379 11.5597 17.2297 -Courier_New.ttf 11 i 24.4725 37.2498 78 I 3.5452 22.0860 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 79 ° -4.9484 15.7638 15.7638 -Courier_New.ttf 11 i 24.4725 37.2498 80 K 4.2086 31.2297 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 81 H 3.5349 28.4333 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 82 q 11.8091 29.1932 36.6565 -Courier_New.ttf 11 i 24.4725 37.2498 83 & 6.5776 21.9800 31.2070 -Courier_New.ttf 11 i 24.4725 37.2498 84 ’ 1.3569 12.7529 17.2297 -Courier_New.ttf 11 i 24.4725 37.2498 85 [ 1.3139 9.5998 43.1932 -Courier_New.ttf 11 i 24.4725 37.2498 86 - 18.7990 24.8892 3.2297 -Courier_New.ttf 11 i 24.4725 37.2498 87 Y 3.7960 29.3410 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 88 Q 3.4674 30.3865 40.7840 -Courier_New.ttf 11 i 24.4725 37.2498 89 " 1.4333 19.6995 16.0365 -Courier_New.ttf 11 i 24.4725 37.2498 90 ! 1.1789 6.4594 36.5505 -Courier_New.ttf 11 i 24.4725 37.2498 91 x 12.0360 29.1932 25.2097 -Courier_New.ttf 11 i 24.4725 37.2498 92 ) 1.4990 8.4065 43.1932 -Courier_New.ttf 11 i 24.4725 37.2498 93 = 14.6119 29.1932 11.3097 -Courier_New.ttf 11 i 24.4725 37.2498 94 + 6.3634 26.8590 29.2455 -Courier_New.ttf 11 i 24.4725 37.2498 95 X 3.6304 30.9092 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 96 » 11.5264 29.5432 26.8068 -Courier_New.ttf 11 i 24.4725 37.2498 97 ' 1.3407 7.9027 17.2297 -Courier_New.ttf 11 i 24.4725 37.2498 98 ¢ -0.9442 20.7867 38.0998 -Courier_New.ttf 11 i 24.4725 37.2498 99 Z 3.6920 23.0959 33.5935 -Courier_New.ttf 11 i 24.4725 37.2498 100 > 5.2421 28.0000 31.5797 -Courier_New.ttf 11 i 24.4725 37.2498 101 ® 2.7890 34.7867 35.0594 -Courier_New.ttf 11 i 24.4725 37.2498 102 © 2.8653 35.0594 34.7867 -Courier_New.ttf 11 i 24.4725 37.2498 103 ] 1.3770 9.5998 43.1932 -Courier_New.ttf 11 i 24.4725 37.2498 104 é -0.6844 27.4295 38.4203 -Courier_New.ttf 11 i 24.4725 37.2498 105 z 12.1001 23.7959 25.2097 -Courier_New.ttf 11 i 24.4725 37.2498 106 _ 51.0444 35.0594 2.3865 -Courier_New.ttf 11 i 24.4725 37.2498 107 ¥ 3.5894 29.6744 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 1 t 3.4499 26.2362 34.6034 -Courier_New.ttf 12 1 22.8527 37.5770 2 h 1.6173 29.6326 35.9800 -Courier_New.ttf 12 1 22.8527 37.5770 3 a 12.0852 26.9256 26.1840 -Courier_New.ttf 12 1 22.8527 37.5770 4 n 11.8806 29.2061 25.6135 -Courier_New.ttf 12 1 22.8527 37.5770 5 P 4.1591 26.0529 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 6 o 11.9887 26.8068 26.1840 -Courier_New.ttf 12 1 22.8527 37.5770 7 e 12.0348 27.4295 26.1840 -Courier_New.ttf 12 1 22.8527 37.5770 8 : 12.2237 8.6565 25.7802 -Courier_New.ttf 12 1 22.8527 37.5770 9 r 11.9045 26.8295 25.6135 -Courier_New.ttf 12 1 22.8527 37.5770 10 l 1.7070 24.4725 35.9800 -Courier_New.ttf 12 1 22.8527 37.5770 11 i 0.1257 24.4725 37.2498 -Courier_New.ttf 12 1 22.8527 37.5770 12 1 -0.0167 22.8527 37.5770 -Courier_New.ttf 12 1 22.8527 37.5770 13 | 1.6088 2.3865 43.1932 -Courier_New.ttf 12 1 22.8527 37.5770 14 N 3.9776 31.3964 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 15 f 1.7045 25.4696 35.9800 -Courier_New.ttf 12 1 22.8527 37.5770 16 g 11.8178 27.8462 36.6565 -Courier_New.ttf 12 1 22.8527 37.5770 17 d 1.3715 30.1138 36.5505 -Courier_New.ttf 12 1 22.8527 37.5770 18 W 4.0562 32.5836 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 19 s 12.0339 23.0959 26.1840 -Courier_New.ttf 12 1 22.8527 37.5770 20 c 11.8806 26.6529 26.1840 -Courier_New.ttf 12 1 22.8527 37.5770 21 u 12.2061 29.6326 25.7802 -Courier_New.ttf 12 1 22.8527 37.5770 22 3 1.0801 23.6959 36.7876 -Courier_New.ttf 12 1 22.8527 37.5770 23 ~ 16.4090 24.8892 8.5732 -Courier_New.ttf 12 1 22.8527 37.5770 24 # -0.4980 25.0657 42.1962 -Courier_New.ttf 12 1 22.8527 37.5770 25 O 3.9435 29.1932 34.4140 -Courier_New.ttf 12 1 22.8527 37.5770 26 ` -0.1727 9.8498 8.6565 -Courier_New.ttf 12 1 22.8527 37.5770 27 @ 0.3434 22.0800 40.4029 -Courier_New.ttf 12 1 22.8527 37.5770 28 F 4.2326 27.3234 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 29 S 3.9219 24.5392 34.4140 -Courier_New.ttf 12 1 22.8527 37.5770 30 p 12.0351 29.8826 36.6565 -Courier_New.ttf 12 1 22.8527 37.5770 31 “ 1.8703 24.6392 15.1932 -Courier_New.ttf 12 1 22.8527 37.5770 32 % 1.5841 24.3664 36.5505 -Courier_New.ttf 12 1 22.8527 37.5770 33 £ 3.9435 26.2840 33.8435 -Courier_New.ttf 12 1 22.8527 37.5770 34 . 30.3632 8.8232 7.9800 -Courier_New.ttf 12 1 22.8527 37.5770 35 2 1.1730 23.1732 36.3838 -Courier_New.ttf 12 1 22.8527 37.5770 36 5 1.7042 23.7437 36.3838 -Courier_New.ttf 12 1 22.8527 37.5770 37 m 12.1665 35.1594 25.6135 -Courier_New.ttf 12 1 22.8527 37.5770 38 V 3.9834 35.1140 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 39 6 1.0600 23.7959 36.7876 -Courier_New.ttf 12 1 22.8527 37.5770 40 w 12.1918 32.7502 25.2097 -Courier_New.ttf 12 1 22.8527 37.5770 41 T 3.9679 26.8590 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 42 M 3.9649 34.5367 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 43 G 4.1222 29.5621 34.4140 -Courier_New.ttf 12 1 22.8527 37.5770 44 b 1.7337 29.8826 36.5505 -Courier_New.ttf 12 1 22.8527 37.5770 45 9 1.1892 22.4193 36.7876 -Courier_New.ttf 12 1 22.8527 37.5770 46 ; 12.1389 12.8068 30.9570 -Courier_New.ttf 12 1 22.8527 37.5770 47 D 3.8413 28.4394 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 48 L 3.7783 28.2727 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 49 y 12.3569 29.3121 36.2527 -Courier_New.ttf 12 1 22.8527 37.5770 50 ‘ 1.2908 12.7529 17.2297 -Courier_New.ttf 12 1 22.8527 37.5770 51 \ -1.7036 24.6392 44.3865 -Courier_New.ttf 12 1 22.8527 37.5770 52 R 3.8913 30.7070 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 53 < 5.0799 28.0000 31.5797 -Courier_New.ttf 12 1 22.8527 37.5770 54 4 1.7740 22.3232 35.9800 -Courier_New.ttf 12 1 22.8527 37.5770 55 8 1.2688 21.3094 36.7876 -Courier_New.ttf 12 1 22.8527 37.5770 56 0 0.9750 23.6959 36.7876 -Courier_New.ttf 12 1 22.8527 37.5770 57 A 4.0540 37.1505 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 58 E 3.7867 27.3234 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 59 B 3.7782 28.4167 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 60 v 12.1828 32.1252 25.2097 -Courier_New.ttf 12 1 22.8527 37.5770 61 k 1.4347 26.6529 35.9800 -Courier_New.ttf 12 1 22.8527 37.5770 62 J 3.9895 28.6766 34.1640 -Courier_New.ttf 12 1 22.8527 37.5770 63 U 3.9686 31.3964 34.1640 -Courier_New.ttf 12 1 22.8527 37.5770 64 j 0.4320 18.4230 48.2928 -Courier_New.ttf 12 1 22.8527 37.5770 65 ( 1.3677 8.4065 43.1932 -Courier_New.ttf 12 1 22.8527 37.5770 66 7 1.7018 22.0027 35.9800 -Courier_New.ttf 12 1 22.8527 37.5770 67 § 1.5828 27.1696 39.8097 -Courier_New.ttf 12 1 22.8527 37.5770 68 $ -1.2287 21.8261 44.3865 -Courier_New.ttf 12 1 22.8527 37.5770 69 € 3.7109 31.2297 34.4140 -Courier_New.ttf 12 1 22.8527 37.5770 70 / -1.9021 24.6392 44.3865 -Courier_New.ttf 12 1 22.8527 37.5770 71 C 3.7283 28.2727 34.4140 -Courier_New.ttf 12 1 22.8527 37.5770 72 * 1.4632 22.0860 21.9800 -Courier_New.ttf 12 1 22.8527 37.5770 73 ” 1.6245 24.6392 15.1932 -Courier_New.ttf 12 1 22.8527 37.5770 74 ? 2.9586 21.0594 34.9406 -Courier_New.ttf 12 1 22.8527 37.5770 75 { 1.3057 11.7324 43.3121 -Courier_New.ttf 12 1 22.8527 37.5770 76 } 1.0497 11.7324 43.3121 -Courier_New.ttf 12 1 22.8527 37.5770 77 , 29.1923 11.5597 17.2297 -Courier_New.ttf 12 1 22.8527 37.5770 78 I 3.8069 22.0860 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 79 ° -4.6428 15.7638 15.7638 -Courier_New.ttf 12 1 22.8527 37.5770 80 K 3.9392 31.2297 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 81 H 3.9804 28.4333 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 82 q 11.9817 29.1932 36.6565 -Courier_New.ttf 12 1 22.8527 37.5770 83 & 7.1142 21.9800 31.2070 -Courier_New.ttf 12 1 22.8527 37.5770 84 ’ 1.3885 12.7529 17.2297 -Courier_New.ttf 12 1 22.8527 37.5770 85 [ 1.4885 9.5998 43.1932 -Courier_New.ttf 12 1 22.8527 37.5770 86 - 19.1513 24.8892 3.2297 -Courier_New.ttf 12 1 22.8527 37.5770 87 Y 4.0550 29.3410 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 88 Q 3.5866 30.3865 40.7840 -Courier_New.ttf 12 1 22.8527 37.5770 89 " 1.4970 19.6995 16.0365 -Courier_New.ttf 12 1 22.8527 37.5770 90 ! 1.9336 6.4594 36.5505 -Courier_New.ttf 12 1 22.8527 37.5770 91 x 12.5487 29.1932 25.2097 -Courier_New.ttf 12 1 22.8527 37.5770 92 ) 1.8893 8.4065 43.1932 -Courier_New.ttf 12 1 22.8527 37.5770 93 = 15.2531 29.1932 11.3097 -Courier_New.ttf 12 1 22.8527 37.5770 94 + 6.4081 26.8590 29.2455 -Courier_New.ttf 12 1 22.8527 37.5770 95 X 4.2970 30.9092 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 96 » 12.0734 28.7766 26.8068 -Courier_New.ttf 12 1 22.8527 37.5770 97 ' 1.6820 7.9027 17.2297 -Courier_New.ttf 12 1 22.8527 37.5770 98 ¢ -0.8308 20.7867 38.0998 -Courier_New.ttf 12 1 22.8527 37.5770 99 Z 3.9551 23.0959 33.5935 -Courier_New.ttf 12 1 22.8527 37.5770 100 > 5.4697 28.0000 31.5797 -Courier_New.ttf 12 1 22.8527 37.5770 101 ® 2.9770 34.7867 35.0594 -Courier_New.ttf 12 1 22.8527 37.5770 102 © 3.4405 35.0594 34.7867 -Courier_New.ttf 12 1 22.8527 37.5770 103 ] 1.5641 9.5998 43.1932 -Courier_New.ttf 12 1 22.8527 37.5770 104 é -0.1902 27.4295 38.4203 -Courier_New.ttf 12 1 22.8527 37.5770 105 z 12.4922 23.7959 25.2097 -Courier_New.ttf 12 1 22.8527 37.5770 106 _ 51.6128 35.0594 2.3865 -Courier_New.ttf 12 1 22.8527 37.5770 107 ¥ 4.1272 29.6744 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 1 t 1.8016 26.2362 34.6034 -Courier_New.ttf 13 | 2.3865 43.1932 2 h 0.1929 29.6326 35.9800 -Courier_New.ttf 13 | 2.3865 43.1932 3 a 10.2786 26.9256 26.1840 -Courier_New.ttf 13 | 2.3865 43.1932 4 n 10.4861 29.2061 25.6135 -Courier_New.ttf 13 | 2.3865 43.1932 5 P 2.3118 26.0529 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 6 o 10.5087 26.8068 26.1840 -Courier_New.ttf 13 | 2.3865 43.1932 7 e 10.1422 27.4295 26.1840 -Courier_New.ttf 13 | 2.3865 43.1932 8 : 10.8619 8.6565 25.7802 -Courier_New.ttf 13 | 2.3865 43.1932 9 r 10.2266 26.8295 25.6135 -Courier_New.ttf 13 | 2.3865 43.1932 10 l 0.1085 24.4725 35.9800 -Courier_New.ttf 13 | 2.3865 43.1932 11 i -1.2749 24.4725 37.2498 -Courier_New.ttf 13 | 2.3865 43.1932 12 1 -1.5841 22.8527 37.5770 -Courier_New.ttf 13 | 2.3865 43.1932 13 | 0.1111 2.3865 43.1932 -Courier_New.ttf 13 | 2.3865 43.1932 14 N 2.3378 31.3964 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 15 f 0.0424 25.4696 35.9800 -Courier_New.ttf 13 | 2.3865 43.1932 16 g 10.1825 27.8462 36.6565 -Courier_New.ttf 13 | 2.3865 43.1932 17 d 0.0403 30.1138 36.5505 -Courier_New.ttf 13 | 2.3865 43.1932 18 W 2.3333 32.5836 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 19 s 10.6406 23.0959 26.1840 -Courier_New.ttf 13 | 2.3865 43.1932 20 c 10.1778 26.6529 26.1840 -Courier_New.ttf 13 | 2.3865 43.1932 21 u 10.8379 29.6326 25.7802 -Courier_New.ttf 13 | 2.3865 43.1932 22 3 -0.2453 23.6959 36.7876 -Courier_New.ttf 13 | 2.3865 43.1932 23 ~ 15.1850 24.8892 8.5732 -Courier_New.ttf 13 | 2.3865 43.1932 24 # -2.5002 25.0657 42.1962 -Courier_New.ttf 13 | 2.3865 43.1932 25 O 2.1107 29.1932 34.4140 -Courier_New.ttf 13 | 2.3865 43.1932 26 ` -1.8341 9.8498 8.6565 -Courier_New.ttf 13 | 2.3865 43.1932 27 @ -1.2092 22.0800 40.4029 -Courier_New.ttf 13 | 2.3865 43.1932 28 F 2.4335 27.3234 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 29 S 2.2892 24.5392 34.4140 -Courier_New.ttf 13 | 2.3865 43.1932 30 p 10.2436 29.8826 36.6565 -Courier_New.ttf 13 | 2.3865 43.1932 31 “ 0.3177 24.6392 15.1932 -Courier_New.ttf 13 | 2.3865 43.1932 32 % -0.0060 24.3664 36.5505 -Courier_New.ttf 13 | 2.3865 43.1932 33 £ 2.1980 26.2840 33.8435 -Courier_New.ttf 13 | 2.3865 43.1932 34 . 28.4450 8.8232 7.9800 -Courier_New.ttf 13 | 2.3865 43.1932 35 2 -0.4767 23.1732 36.3838 -Courier_New.ttf 13 | 2.3865 43.1932 36 5 -0.0175 23.7437 36.3838 -Courier_New.ttf 13 | 2.3865 43.1932 37 m 10.2051 35.1594 25.6135 -Courier_New.ttf 13 | 2.3865 43.1932 38 V 2.2349 35.1140 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 39 6 -0.4832 23.7959 36.7876 -Courier_New.ttf 13 | 2.3865 43.1932 40 w 10.7573 32.7502 25.2097 -Courier_New.ttf 13 | 2.3865 43.1932 41 T 2.1497 26.8590 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 42 M 2.6069 34.5367 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 43 G 2.1851 29.5621 34.4140 -Courier_New.ttf 13 | 2.3865 43.1932 44 b 0.0755 29.8826 36.5505 -Courier_New.ttf 13 | 2.3865 43.1932 45 9 -0.5080 22.4193 36.7876 -Courier_New.ttf 13 | 2.3865 43.1932 46 ; 11.0103 12.8068 30.9570 -Courier_New.ttf 13 | 2.3865 43.1932 47 D 2.3865 28.4394 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 48 L 2.3910 28.2727 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 49 y 10.7569 29.3121 36.2527 -Courier_New.ttf 13 | 2.3865 43.1932 50 ‘ -0.0099 12.7529 17.2297 -Courier_New.ttf 13 | 2.3865 43.1932 51 \ -3.3948 24.6392 44.3865 -Courier_New.ttf 13 | 2.3865 43.1932 52 R 2.3578 30.7070 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 53 < 3.7642 28.0000 31.5797 -Courier_New.ttf 13 | 2.3865 43.1932 54 4 0.0812 22.3232 35.9800 -Courier_New.ttf 13 | 2.3865 43.1932 55 8 -0.3219 21.3094 36.7876 -Courier_New.ttf 13 | 2.3865 43.1932 56 0 -0.2167 23.6959 36.7876 -Courier_New.ttf 13 | 2.3865 43.1932 57 A 2.3240 37.1505 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 58 E 2.3684 27.3234 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 59 B 2.2345 28.4167 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 60 v 10.9218 32.1252 25.2097 -Courier_New.ttf 13 | 2.3865 43.1932 61 k -0.2085 26.6529 35.9800 -Courier_New.ttf 13 | 2.3865 43.1932 62 J 2.6873 28.6766 34.1640 -Courier_New.ttf 13 | 2.3865 43.1932 63 U 2.4464 31.3964 34.1640 -Courier_New.ttf 13 | 2.3865 43.1932 64 j -1.3472 18.4230 48.2928 -Courier_New.ttf 13 | 2.3865 43.1932 65 ( 0.0170 8.4065 43.1932 -Courier_New.ttf 13 | 2.3865 43.1932 66 7 0.1074 22.0027 35.9800 -Courier_New.ttf 13 | 2.3865 43.1932 67 § 0.1365 27.1696 39.8097 -Courier_New.ttf 13 | 2.3865 43.1932 68 $ -2.9041 21.8261 44.3865 -Courier_New.ttf 13 | 2.3865 43.1932 69 € 2.1305 31.2297 34.4140 -Courier_New.ttf 13 | 2.3865 43.1932 70 / -3.6776 24.6392 44.3865 -Courier_New.ttf 13 | 2.3865 43.1932 71 C 2.1508 28.2727 34.4140 -Courier_New.ttf 13 | 2.3865 43.1932 72 * -0.0657 22.0860 21.9800 -Courier_New.ttf 13 | 2.3865 43.1932 73 ” 0.2127 24.6392 15.1932 -Courier_New.ttf 13 | 2.3865 43.1932 74 ? 1.5294 21.0594 34.9406 -Courier_New.ttf 13 | 2.3865 43.1932 75 { -0.1426 11.7324 43.3121 -Courier_New.ttf 13 | 2.3865 43.1932 76 } -0.1031 11.7324 43.3121 -Courier_New.ttf 13 | 2.3865 43.1932 77 , 27.5764 11.5597 17.2297 -Courier_New.ttf 13 | 2.3865 43.1932 78 I 2.3448 22.0860 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 79 ° -6.2700 15.7638 15.7638 -Courier_New.ttf 13 | 2.3865 43.1932 80 K 2.4133 31.2297 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 81 H 2.2980 28.4333 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 82 q 10.5934 29.1932 36.6565 -Courier_New.ttf 13 | 2.3865 43.1932 83 & 5.3209 21.9800 31.2070 -Courier_New.ttf 13 | 2.3865 43.1932 84 ’ -0.1534 12.7529 17.2297 -Courier_New.ttf 13 | 2.3865 43.1932 85 [ -0.0955 9.5998 43.1932 -Courier_New.ttf 13 | 2.3865 43.1932 86 - 17.6511 24.8892 3.2297 -Courier_New.ttf 13 | 2.3865 43.1932 87 Y 2.3174 29.3410 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 88 Q 2.3436 30.3865 40.7840 -Courier_New.ttf 13 | 2.3865 43.1932 89 " 0.3060 19.6995 16.0365 -Courier_New.ttf 13 | 2.3865 43.1932 90 ! 0.2126 6.4594 36.5505 -Courier_New.ttf 13 | 2.3865 43.1932 91 x 10.9729 29.1932 25.2097 -Courier_New.ttf 13 | 2.3865 43.1932 92 ) -0.0202 8.4065 43.1932 -Courier_New.ttf 13 | 2.3865 43.1932 93 = 13.7076 29.1932 11.3097 -Courier_New.ttf 13 | 2.3865 43.1932 94 + 5.0474 26.8590 29.2455 -Courier_New.ttf 13 | 2.3865 43.1932 95 X 2.2888 30.9092 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 96 » 10.2670 28.7766 26.8068 -Courier_New.ttf 13 | 2.3865 43.1932 97 ' 0.2829 7.9027 17.2297 -Courier_New.ttf 13 | 2.3865 43.1932 98 ¢ -2.1796 20.7867 38.0998 -Courier_New.ttf 13 | 2.3865 43.1932 99 Z 2.3053 23.0959 33.5935 -Courier_New.ttf 13 | 2.3865 43.1932 100 > 3.6251 28.0000 31.5797 -Courier_New.ttf 13 | 2.3865 43.1932 101 ® 1.4358 34.7867 35.0594 -Courier_New.ttf 13 | 2.3865 43.1932 102 © 1.7423 35.0594 34.7867 -Courier_New.ttf 13 | 2.3865 43.1932 103 ] 0.0060 9.5998 43.1932 -Courier_New.ttf 13 | 2.3865 43.1932 104 é -2.1228 27.4295 38.4203 -Courier_New.ttf 13 | 2.3865 43.1932 105 z 10.7378 23.7959 25.2097 -Courier_New.ttf 13 | 2.3865 43.1932 106 _ 50.0968 35.0594 2.3865 -Courier_New.ttf 13 | 2.3865 43.1932 107 ¥ 2.5288 29.6744 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 1 t -0.3337 26.2362 34.6034 -Courier_New.ttf 14 N 31.3964 33.5935 2 h -2.1442 29.6326 35.9800 -Courier_New.ttf 14 N 31.3964 33.5935 3 a 7.9956 26.9256 26.1840 -Courier_New.ttf 14 N 31.3964 33.5935 4 n 7.6031 29.2061 25.6135 -Courier_New.ttf 14 N 31.3964 33.5935 5 P 0.0115 26.0529 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 6 o 8.0657 26.8068 26.1840 -Courier_New.ttf 14 N 31.3964 33.5935 7 e 8.1369 27.4295 26.1840 -Courier_New.ttf 14 N 31.3964 33.5935 8 : 7.9989 8.6565 25.7802 -Courier_New.ttf 14 N 31.3964 33.5935 9 r 8.2037 26.8295 25.6135 -Courier_New.ttf 14 N 31.3964 33.5935 10 l -2.5964 24.4725 35.9800 -Courier_New.ttf 14 N 31.3964 33.5935 11 i -3.4663 24.4725 37.2498 -Courier_New.ttf 14 N 31.3964 33.5935 12 1 -4.0225 22.8527 37.5770 -Courier_New.ttf 14 N 31.3964 33.5935 13 | -2.3587 2.3865 43.1932 -Courier_New.ttf 14 N 31.3964 33.5935 14 N -0.1221 31.3964 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 15 f -2.2840 25.4696 35.9800 -Courier_New.ttf 14 N 31.3964 33.5935 16 g 8.2901 27.8462 36.6565 -Courier_New.ttf 14 N 31.3964 33.5935 17 d -2.1812 30.1138 36.5505 -Courier_New.ttf 14 N 31.3964 33.5935 18 W -0.1826 32.5836 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 19 s 8.2067 23.0959 26.1840 -Courier_New.ttf 14 N 31.3964 33.5935 20 c 8.0482 26.6529 26.1840 -Courier_New.ttf 14 N 31.3964 33.5935 21 u 8.4048 29.6326 25.7802 -Courier_New.ttf 14 N 31.3964 33.5935 22 3 -2.8812 23.6959 36.7876 -Courier_New.ttf 14 N 31.3964 33.5935 23 ~ 12.5439 24.8892 8.5732 -Courier_New.ttf 14 N 31.3964 33.5935 24 # -4.7105 25.0657 42.1962 -Courier_New.ttf 14 N 31.3964 33.5935 25 O 0.2038 29.1932 34.4140 -Courier_New.ttf 14 N 31.3964 33.5935 26 ` -3.9267 9.8498 8.6565 -Courier_New.ttf 14 N 31.3964 33.5935 27 @ -3.5197 22.0800 40.4029 -Courier_New.ttf 14 N 31.3964 33.5935 28 F 0.1710 27.3234 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 29 S -0.3144 24.5392 34.4140 -Courier_New.ttf 14 N 31.3964 33.5935 30 p 7.8806 29.8826 36.6565 -Courier_New.ttf 14 N 31.3964 33.5935 31 “ -2.2651 24.6392 15.1932 -Courier_New.ttf 14 N 31.3964 33.5935 32 % -2.4032 24.3664 36.5505 -Courier_New.ttf 14 N 31.3964 33.5935 33 £ -0.5011 26.2840 33.8435 -Courier_New.ttf 14 N 31.3964 33.5935 34 . 26.1410 8.8232 7.9800 -Courier_New.ttf 14 N 31.3964 33.5935 35 2 -2.7157 23.1732 36.3838 -Courier_New.ttf 14 N 31.3964 33.5935 36 5 -2.5047 23.7437 36.3838 -Courier_New.ttf 14 N 31.3964 33.5935 37 m 8.0402 35.1594 25.6135 -Courier_New.ttf 14 N 31.3964 33.5935 38 V -0.0579 35.1140 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 39 6 -2.8715 23.7959 36.7876 -Courier_New.ttf 14 N 31.3964 33.5935 40 w 8.2985 32.7502 25.2097 -Courier_New.ttf 14 N 31.3964 33.5935 41 T 0.1931 26.8590 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 42 M 0.1196 34.5367 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 43 G -0.3175 29.5621 34.4140 -Courier_New.ttf 14 N 31.3964 33.5935 44 b -2.4865 29.8826 36.5505 -Courier_New.ttf 14 N 31.3964 33.5935 45 9 -2.6110 22.4193 36.7876 -Courier_New.ttf 14 N 31.3964 33.5935 46 ; 8.4144 12.8068 30.9570 -Courier_New.ttf 14 N 31.3964 33.5935 47 D -0.1778 28.4394 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 48 L 0.0571 28.2727 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 49 y 8.3870 29.3121 36.2527 -Courier_New.ttf 14 N 31.3964 33.5935 50 ‘ -2.3476 12.7529 17.2297 -Courier_New.ttf 14 N 31.3964 33.5935 51 \ -5.7229 24.6392 44.3865 -Courier_New.ttf 14 N 31.3964 33.5935 52 R 0.0825 30.7070 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 53 < 1.0729 28.0000 31.5797 -Courier_New.ttf 14 N 31.3964 33.5935 54 4 -2.0291 22.3232 35.9800 -Courier_New.ttf 14 N 31.3964 33.5935 55 8 -3.0782 21.3094 36.7876 -Courier_New.ttf 14 N 31.3964 33.5935 56 0 -2.6078 23.6959 36.7876 -Courier_New.ttf 14 N 31.3964 33.5935 57 A -0.0357 37.1505 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 58 E 0.0903 27.3234 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 59 B -0.2658 28.4167 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 60 v 8.6618 32.1252 25.2097 -Courier_New.ttf 14 N 31.3964 33.5935 61 k -2.5139 26.6529 35.9800 -Courier_New.ttf 14 N 31.3964 33.5935 62 J -0.1118 28.6766 34.1640 -Courier_New.ttf 14 N 31.3964 33.5935 63 U 0.0982 31.3964 34.1640 -Courier_New.ttf 14 N 31.3964 33.5935 64 j -3.6244 18.4230 48.2928 -Courier_New.ttf 14 N 31.3964 33.5935 65 ( -2.5387 8.4065 43.1932 -Courier_New.ttf 14 N 31.3964 33.5935 66 7 -2.6367 22.0027 35.9800 -Courier_New.ttf 14 N 31.3964 33.5935 67 § -2.3865 27.1696 39.8097 -Courier_New.ttf 14 N 31.3964 33.5935 68 $ -5.3249 21.8261 44.3865 -Courier_New.ttf 14 N 31.3964 33.5935 69 € -0.1938 31.2297 34.4140 -Courier_New.ttf 14 N 31.3964 33.5935 70 / -6.2572 24.6392 44.3865 -Courier_New.ttf 14 N 31.3964 33.5935 71 C -0.1904 28.2727 34.4140 -Courier_New.ttf 14 N 31.3964 33.5935 72 * -2.7293 22.0860 21.9800 -Courier_New.ttf 14 N 31.3964 33.5935 73 ” -2.4111 24.6392 15.1932 -Courier_New.ttf 14 N 31.3964 33.5935 74 ? -1.1897 21.0594 34.9406 -Courier_New.ttf 14 N 31.3964 33.5935 75 { -2.7608 11.7324 43.3121 -Courier_New.ttf 14 N 31.3964 33.5935 76 } -2.7849 11.7324 43.3121 -Courier_New.ttf 14 N 31.3964 33.5935 77 , 24.9975 11.5597 17.2297 -Courier_New.ttf 14 N 31.3964 33.5935 78 I 0.0885 22.0860 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 79 ° -8.7565 15.7638 15.7638 -Courier_New.ttf 14 N 31.3964 33.5935 80 K -0.2513 31.2297 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 81 H -0.1845 28.4333 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 82 q 8.1541 29.1932 36.6565 -Courier_New.ttf 14 N 31.3964 33.5935 83 & 3.2327 21.9800 31.2070 -Courier_New.ttf 14 N 31.3964 33.5935 84 ’ -2.3085 12.7529 17.2297 -Courier_New.ttf 14 N 31.3964 33.5935 85 [ -2.4000 9.5998 43.1932 -Courier_New.ttf 14 N 31.3964 33.5935 86 - 14.8630 24.8892 3.2297 -Courier_New.ttf 14 N 31.3964 33.5935 87 Y 0.0812 29.3410 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 88 Q 0.1161 30.3865 40.7840 -Courier_New.ttf 14 N 31.3964 33.5935 89 " -2.3880 19.6995 16.0365 -Courier_New.ttf 14 N 31.3964 33.5935 90 ! -2.6016 6.4594 36.5505 -Courier_New.ttf 14 N 31.3964 33.5935 91 x 8.6610 29.1932 25.2097 -Courier_New.ttf 14 N 31.3964 33.5935 92 ) -2.7432 8.4065 43.1932 -Courier_New.ttf 14 N 31.3964 33.5935 93 = 11.1325 29.1932 11.3097 -Courier_New.ttf 14 N 31.3964 33.5935 94 + 2.3170 26.8590 29.2455 -Courier_New.ttf 14 N 31.3964 33.5935 95 X -0.1548 30.9092 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 96 » 7.8730 29.5432 26.8068 -Courier_New.ttf 14 N 31.3964 33.5935 97 ' -2.7814 7.9027 17.2297 -Courier_New.ttf 14 N 31.3964 33.5935 98 ¢ -4.8929 20.7867 38.0998 -Courier_New.ttf 14 N 31.3964 33.5935 99 Z 0.2683 23.0959 33.5935 -Courier_New.ttf 14 N 31.3964 33.5935 100 > 1.2864 28.0000 31.5797 -Courier_New.ttf 14 N 31.3964 33.5935 101 ® -0.7196 34.7867 35.0594 -Courier_New.ttf 14 N 31.3964 33.5935 102 © -0.4628 35.0594 34.7867 -Courier_New.ttf 14 N 31.3964 33.5935 103 ] -1.9309 9.5998 43.1932 -Courier_New.ttf 14 N 31.3964 33.5935 104 é -4.5883 27.4295 38.4203 -Courier_New.ttf 14 N 31.3964 33.5935 105 z 8.8231 23.7959 25.2097 -Courier_New.ttf 14 N 31.3964 33.5935 106 _ 47.6306 35.0594 2.3865 -Courier_New.ttf 14 N 31.3964 33.5935 107 ¥ 0.1644 29.6744 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 1 t 1.9342 26.2362 34.6034 -Courier_New.ttf 15 f 25.4696 35.9800 2 h 0.0672 29.6326 35.9800 -Courier_New.ttf 15 f 25.4696 35.9800 3 a 10.3591 26.9256 26.1840 -Courier_New.ttf 15 f 25.4696 35.9800 4 n 10.1077 29.2061 25.6135 -Courier_New.ttf 15 f 25.4696 35.9800 5 P 2.4690 26.0529 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 6 o 10.5476 26.8068 26.1840 -Courier_New.ttf 15 f 25.4696 35.9800 7 e 10.4094 27.4295 26.1840 -Courier_New.ttf 15 f 25.4696 35.9800 8 : 10.8323 8.6565 25.7802 -Courier_New.ttf 15 f 25.4696 35.9800 9 r 10.1815 26.8295 25.6135 -Courier_New.ttf 15 f 25.4696 35.9800 10 l -0.0155 24.4725 35.9800 -Courier_New.ttf 15 f 25.4696 35.9800 11 i -0.9585 24.4725 37.2498 -Courier_New.ttf 15 f 25.4696 35.9800 12 1 -1.5118 22.8527 37.5770 -Courier_New.ttf 15 f 25.4696 35.9800 13 | -0.0891 2.3865 43.1932 -Courier_New.ttf 15 f 25.4696 35.9800 14 N 2.2488 31.3964 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 15 f -0.1312 25.4696 35.9800 -Courier_New.ttf 15 f 25.4696 35.9800 16 g 10.3989 27.8462 36.6565 -Courier_New.ttf 15 f 25.4696 35.9800 17 d -0.0903 30.1138 36.5505 -Courier_New.ttf 15 f 25.4696 35.9800 18 W 2.3837 32.5836 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 19 s 10.3496 23.0959 26.1840 -Courier_New.ttf 15 f 25.4696 35.9800 20 c 10.7071 26.6529 26.1840 -Courier_New.ttf 15 f 25.4696 35.9800 21 u 10.5759 29.6326 25.7802 -Courier_New.ttf 15 f 25.4696 35.9800 22 3 -0.5280 23.6959 36.7876 -Courier_New.ttf 15 f 25.4696 35.9800 23 ~ 14.8150 24.8892 8.5732 -Courier_New.ttf 15 f 25.4696 35.9800 24 # -2.3324 25.0657 42.1962 -Courier_New.ttf 15 f 25.4696 35.9800 25 O 1.9997 29.1932 34.4140 -Courier_New.ttf 15 f 25.4696 35.9800 26 ` -1.7197 9.8498 8.6565 -Courier_New.ttf 15 f 25.4696 35.9800 27 @ -1.4883 22.0800 40.4029 -Courier_New.ttf 15 f 25.4696 35.9800 28 F 2.4666 27.3234 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 29 S 2.0740 24.5392 34.4140 -Courier_New.ttf 15 f 25.4696 35.9800 30 p 10.2635 29.8826 36.6565 -Courier_New.ttf 15 f 25.4696 35.9800 31 “ -0.1578 24.6392 15.1932 -Courier_New.ttf 15 f 25.4696 35.9800 32 % 0.2000 24.3664 36.5505 -Courier_New.ttf 15 f 25.4696 35.9800 33 £ 2.3069 26.2840 33.8435 -Courier_New.ttf 15 f 25.4696 35.9800 34 . 28.5297 8.8232 7.9800 -Courier_New.ttf 15 f 25.4696 35.9800 35 2 -0.4349 23.1732 36.3838 -Courier_New.ttf 15 f 25.4696 35.9800 36 5 0.0998 23.7437 36.3838 -Courier_New.ttf 15 f 25.4696 35.9800 37 m 10.5323 35.1594 25.6135 -Courier_New.ttf 15 f 25.4696 35.9800 38 V 2.3735 35.1140 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 39 6 -0.3181 23.7959 36.7876 -Courier_New.ttf 15 f 25.4696 35.9800 40 w 10.7703 32.7502 25.2097 -Courier_New.ttf 15 f 25.4696 35.9800 41 T 2.0615 26.8590 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 42 M 2.5580 34.5367 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 43 G 2.0313 29.5621 34.4140 -Courier_New.ttf 15 f 25.4696 35.9800 44 b -0.1131 29.8826 36.5505 -Courier_New.ttf 15 f 25.4696 35.9800 45 9 -0.7068 22.4193 36.7876 -Courier_New.ttf 15 f 25.4696 35.9800 46 ; 11.0635 12.8068 30.9570 -Courier_New.ttf 15 f 25.4696 35.9800 47 D 2.2651 28.4394 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 48 L 2.6653 28.2727 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 49 y 10.1934 29.3121 36.2527 -Courier_New.ttf 15 f 25.4696 35.9800 50 ‘ 0.1014 12.7529 17.2297 -Courier_New.ttf 15 f 25.4696 35.9800 51 \ -3.2037 24.6392 44.3865 -Courier_New.ttf 15 f 25.4696 35.9800 52 R 2.5991 30.7070 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 53 < 3.7396 28.0000 31.5797 -Courier_New.ttf 15 f 25.4696 35.9800 54 4 -0.2105 22.3232 35.9800 -Courier_New.ttf 15 f 25.4696 35.9800 55 8 -0.2570 21.3094 36.7876 -Courier_New.ttf 15 f 25.4696 35.9800 56 0 -0.7463 23.6959 36.7876 -Courier_New.ttf 15 f 25.4696 35.9800 57 A 2.1980 37.1505 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 58 E 2.6446 27.3234 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 59 B 2.5333 28.4167 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 60 v 10.6196 32.1252 25.2097 -Courier_New.ttf 15 f 25.4696 35.9800 61 k 0.0365 26.6529 35.9800 -Courier_New.ttf 15 f 25.4696 35.9800 62 J 2.4653 28.6766 34.1640 -Courier_New.ttf 15 f 25.4696 35.9800 63 U 2.2448 31.3964 34.1640 -Courier_New.ttf 15 f 25.4696 35.9800 64 j -0.9915 18.4230 48.2928 -Courier_New.ttf 15 f 25.4696 35.9800 65 ( -0.0997 8.4065 43.1932 -Courier_New.ttf 15 f 25.4696 35.9800 66 7 0.2371 22.0027 35.9800 -Courier_New.ttf 15 f 25.4696 35.9800 67 § -0.2753 27.1696 39.8097 -Courier_New.ttf 15 f 25.4696 35.9800 68 $ -3.0916 21.8261 44.3865 -Courier_New.ttf 15 f 25.4696 35.9800 69 € 2.0053 31.2297 34.4140 -Courier_New.ttf 15 f 25.4696 35.9800 70 / -3.6808 24.6392 44.3865 -Courier_New.ttf 15 f 25.4696 35.9800 71 C 2.0553 28.2727 34.4140 -Courier_New.ttf 15 f 25.4696 35.9800 72 * -0.1288 22.0860 21.9800 -Courier_New.ttf 15 f 25.4696 35.9800 73 ” 0.0939 24.6392 15.1932 -Courier_New.ttf 15 f 25.4696 35.9800 74 ? 1.6075 21.0594 34.9406 -Courier_New.ttf 15 f 25.4696 35.9800 75 { -0.1076 11.7324 43.3121 -Courier_New.ttf 15 f 25.4696 35.9800 76 } -0.1739 11.7324 43.3121 -Courier_New.ttf 15 f 25.4696 35.9800 77 , 27.2107 11.5597 17.2297 -Courier_New.ttf 15 f 25.4696 35.9800 78 I 2.3178 22.0860 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 79 ° -6.2843 15.7638 15.7638 -Courier_New.ttf 15 f 25.4696 35.9800 80 K 2.5147 31.2297 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 81 H 2.3448 28.4333 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 82 q 10.3952 29.1932 36.6565 -Courier_New.ttf 15 f 25.4696 35.9800 83 & 5.2778 21.9800 31.2070 -Courier_New.ttf 15 f 25.4696 35.9800 84 ’ 0.1294 12.7529 17.2297 -Courier_New.ttf 15 f 25.4696 35.9800 85 [ -0.3323 9.5998 43.1932 -Courier_New.ttf 15 f 25.4696 35.9800 86 - 17.5042 24.8892 3.2297 -Courier_New.ttf 15 f 25.4696 35.9800 87 Y 2.4351 29.3410 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 88 Q 2.2607 30.3865 40.7840 -Courier_New.ttf 15 f 25.4696 35.9800 89 " -0.1013 19.6995 16.0365 -Courier_New.ttf 15 f 25.4696 35.9800 90 ! 0.1324 6.4594 36.5505 -Courier_New.ttf 15 f 25.4696 35.9800 91 x 10.6320 29.1932 25.2097 -Courier_New.ttf 15 f 25.4696 35.9800 92 ) -0.1484 8.4065 43.1932 -Courier_New.ttf 15 f 25.4696 35.9800 93 = 13.3794 29.1932 11.3097 -Courier_New.ttf 15 f 25.4696 35.9800 94 + 4.9565 26.8590 29.2455 -Courier_New.ttf 15 f 25.4696 35.9800 95 X 2.3351 30.9092 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 96 » 10.4054 29.5432 26.8068 -Courier_New.ttf 15 f 25.4696 35.9800 97 ' 0.0513 7.9027 17.2297 -Courier_New.ttf 15 f 25.4696 35.9800 98 ¢ -2.0967 20.7867 38.0998 -Courier_New.ttf 15 f 25.4696 35.9800 99 Z 2.4183 23.0959 33.5935 -Courier_New.ttf 15 f 25.4696 35.9800 100 > 3.7455 28.0000 31.5797 -Courier_New.ttf 15 f 25.4696 35.9800 101 ® 1.3720 34.7867 35.0594 -Courier_New.ttf 15 f 25.4696 35.9800 102 © 1.7540 35.0594 34.7867 -Courier_New.ttf 15 f 25.4696 35.9800 103 ] -0.0559 9.5998 43.1932 -Courier_New.ttf 15 f 25.4696 35.9800 104 é -2.0440 27.4295 38.4203 -Courier_New.ttf 15 f 25.4696 35.9800 105 z 10.5702 23.7959 25.2097 -Courier_New.ttf 15 f 25.4696 35.9800 106 _ 50.1566 35.0594 2.3865 -Courier_New.ttf 15 f 25.4696 35.9800 107 ¥ 2.2287 29.6744 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 1 t -8.3874 26.2362 34.6034 -Courier_New.ttf 16 g 27.8462 36.6565 2 h -10.2150 29.6326 35.9800 -Courier_New.ttf 16 g 27.8462 36.6565 3 a -0.1599 26.9256 26.1840 -Courier_New.ttf 16 g 27.8462 36.6565 4 n 0.3911 29.2061 25.6135 -Courier_New.ttf 16 g 27.8462 36.6565 5 P -7.8631 26.0529 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 6 o -0.1073 26.8068 26.1840 -Courier_New.ttf 16 g 27.8462 36.6565 7 e 0.0798 27.4295 26.1840 -Courier_New.ttf 16 g 27.8462 36.6565 8 : 0.4364 8.6565 25.7802 -Courier_New.ttf 16 g 27.8462 36.6565 9 r 0.1810 26.8295 25.6135 -Courier_New.ttf 16 g 27.8462 36.6565 10 l -10.3961 24.4725 35.9800 -Courier_New.ttf 16 g 27.8462 36.6565 11 i -11.4946 24.4725 37.2498 -Courier_New.ttf 16 g 27.8462 36.6565 12 1 -11.8361 22.8527 37.5770 -Courier_New.ttf 16 g 27.8462 36.6565 13 | -10.4139 2.3865 43.1932 -Courier_New.ttf 16 g 27.8462 36.6565 14 N -7.7070 31.3964 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 15 f -10.3984 25.4696 35.9800 -Courier_New.ttf 16 g 27.8462 36.6565 16 g -0.0018 27.8462 36.6565 -Courier_New.ttf 16 g 27.8462 36.6565 17 d -10.2038 30.1138 36.5505 -Courier_New.ttf 16 g 27.8462 36.6565 18 W -8.0392 32.5836 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 19 s 0.0258 23.0959 26.1840 -Courier_New.ttf 16 g 27.8462 36.6565 20 c -0.0183 26.6529 26.1840 -Courier_New.ttf 16 g 27.8462 36.6565 21 u 0.6346 29.6326 25.7802 -Courier_New.ttf 16 g 27.8462 36.6565 22 3 -10.6713 23.6959 36.7876 -Courier_New.ttf 16 g 27.8462 36.6565 23 ~ 4.8329 24.8892 8.5732 -Courier_New.ttf 16 g 27.8462 36.6565 24 # -12.9456 25.0657 42.1962 -Courier_New.ttf 16 g 27.8462 36.6565 25 O -8.1942 29.1932 34.4140 -Courier_New.ttf 16 g 27.8462 36.6565 26 ` -12.2703 9.8498 8.6565 -Courier_New.ttf 16 g 27.8462 36.6565 27 @ -12.0683 22.0800 40.4029 -Courier_New.ttf 16 g 27.8462 36.6565 28 F -7.8460 27.3234 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 29 S -8.2684 24.5392 34.4140 -Courier_New.ttf 16 g 27.8462 36.6565 30 p -0.0788 29.8826 36.6565 -Courier_New.ttf 16 g 27.8462 36.6565 31 “ -10.2287 24.6392 15.1932 -Courier_New.ttf 16 g 27.8462 36.6565 32 % -10.4581 24.3664 36.5505 -Courier_New.ttf 16 g 27.8462 36.6565 33 £ -8.0974 26.2840 33.8435 -Courier_New.ttf 16 g 27.8462 36.6565 34 . 18.2430 8.8232 7.9800 -Courier_New.ttf 16 g 27.8462 36.6565 35 2 -10.7522 23.1732 36.3838 -Courier_New.ttf 16 g 27.8462 36.6565 36 5 -10.2061 23.7437 36.3838 -Courier_New.ttf 16 g 27.8462 36.6565 37 m 0.0987 35.1594 25.6135 -Courier_New.ttf 16 g 27.8462 36.6565 38 V -7.8960 35.1140 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 39 6 -11.0913 23.7959 36.7876 -Courier_New.ttf 16 g 27.8462 36.6565 40 w 0.2115 32.7502 25.2097 -Courier_New.ttf 16 g 27.8462 36.6565 41 T -7.9604 26.8590 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 42 M -8.0988 34.5367 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 43 G -8.1202 29.5621 34.4140 -Courier_New.ttf 16 g 27.8462 36.6565 44 b -10.3585 29.8826 36.5505 -Courier_New.ttf 16 g 27.8462 36.6565 45 9 -10.8650 22.4193 36.7876 -Courier_New.ttf 16 g 27.8462 36.6565 46 ; 0.3909 12.8068 30.9570 -Courier_New.ttf 16 g 27.8462 36.6565 47 D -7.9026 28.4394 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 48 L -7.7516 28.2727 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 49 y 0.5777 29.3121 36.2527 -Courier_New.ttf 16 g 27.8462 36.6565 50 ‘ -10.4003 12.7529 17.2297 -Courier_New.ttf 16 g 27.8462 36.6565 51 \ -13.5531 24.6392 44.3865 -Courier_New.ttf 16 g 27.8462 36.6565 52 R -8.0814 30.7070 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 53 < -6.9875 28.0000 31.5797 -Courier_New.ttf 16 g 27.8462 36.6565 54 4 -10.1947 22.3232 35.9800 -Courier_New.ttf 16 g 27.8462 36.6565 55 8 -10.7671 21.3094 36.7876 -Courier_New.ttf 16 g 27.8462 36.6565 56 0 -10.8644 23.6959 36.7876 -Courier_New.ttf 16 g 27.8462 36.6565 57 A -7.8532 37.1505 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 58 E -8.0994 27.3234 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 59 B -7.8345 28.4167 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 60 v 0.3896 32.1252 25.2097 -Courier_New.ttf 16 g 27.8462 36.6565 61 k -10.3442 26.6529 35.9800 -Courier_New.ttf 16 g 27.8462 36.6565 62 J -7.7950 28.6766 34.1640 -Courier_New.ttf 16 g 27.8462 36.6565 63 U -8.1689 31.3964 34.1640 -Courier_New.ttf 16 g 27.8462 36.6565 64 j -11.5263 18.4230 48.2928 -Courier_New.ttf 16 g 27.8462 36.6565 65 ( -10.1845 8.4065 43.1932 -Courier_New.ttf 16 g 27.8462 36.6565 66 7 -10.0313 22.0027 35.9800 -Courier_New.ttf 16 g 27.8462 36.6565 67 § -10.3981 27.1696 39.8097 -Courier_New.ttf 16 g 27.8462 36.6565 68 $ -13.5484 21.8261 44.3865 -Courier_New.ttf 16 g 27.8462 36.6565 69 € -8.2989 31.2297 34.4140 -Courier_New.ttf 16 g 27.8462 36.6565 70 / -14.2468 24.6392 44.3865 -Courier_New.ttf 16 g 27.8462 36.6565 71 C -8.0149 28.2727 34.4140 -Courier_New.ttf 16 g 27.8462 36.6565 72 * -10.3813 22.0860 21.9800 -Courier_New.ttf 16 g 27.8462 36.6565 73 ” -10.2333 24.6392 15.1932 -Courier_New.ttf 16 g 27.8462 36.6565 74 ? -8.6921 21.0594 34.9406 -Courier_New.ttf 16 g 27.8462 36.6565 75 { -10.7023 11.7324 43.3121 -Courier_New.ttf 16 g 27.8462 36.6565 76 } -10.4824 11.7324 43.3121 -Courier_New.ttf 16 g 27.8462 36.6565 77 , 16.7867 11.5597 17.2297 -Courier_New.ttf 16 g 27.8462 36.6565 78 I -7.7722 22.0860 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 79 ° -16.4335 15.7638 15.7638 -Courier_New.ttf 16 g 27.8462 36.6565 80 K -8.0660 31.2297 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 81 H -8.1723 28.4333 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 82 q 0.1218 29.1932 36.6565 -Courier_New.ttf 16 g 27.8462 36.6565 83 & -5.1133 21.9800 31.2070 -Courier_New.ttf 16 g 27.8462 36.6565 84 ’ -10.3049 12.7529 17.2297 -Courier_New.ttf 16 g 27.8462 36.6565 85 [ -10.5680 9.5998 43.1932 -Courier_New.ttf 16 g 27.8462 36.6565 86 - 7.2301 24.8892 3.2297 -Courier_New.ttf 16 g 27.8462 36.6565 87 Y -7.9026 29.3410 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 88 Q -8.3087 30.3865 40.7840 -Courier_New.ttf 16 g 27.8462 36.6565 89 " -10.2580 19.6995 16.0365 -Courier_New.ttf 16 g 27.8462 36.6565 90 ! -10.3818 6.4594 36.5505 -Courier_New.ttf 16 g 27.8462 36.6565 91 x 0.7527 29.1932 25.2097 -Courier_New.ttf 16 g 27.8462 36.6565 92 ) -10.3756 8.4065 43.1932 -Courier_New.ttf 16 g 27.8462 36.6565 93 = 2.7874 29.1932 11.3097 -Courier_New.ttf 16 g 27.8462 36.6565 94 + -5.1078 26.8590 29.2455 -Courier_New.ttf 16 g 27.8462 36.6565 95 X -8.1996 30.9092 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 96 » 0.1432 29.5432 26.8068 -Courier_New.ttf 16 g 27.8462 36.6565 97 ' -10.2468 7.9027 17.2297 -Courier_New.ttf 16 g 27.8462 36.6565 98 ¢ -12.4589 20.7867 38.0998 -Courier_New.ttf 16 g 27.8462 36.6565 99 Z -8.0968 23.0959 33.5935 -Courier_New.ttf 16 g 27.8462 36.6565 100 > -7.0655 28.0000 31.5797 -Courier_New.ttf 16 g 27.8462 36.6565 101 ® -8.9808 34.7867 35.0594 -Courier_New.ttf 16 g 27.8462 36.6565 102 © -8.5414 35.0594 34.7867 -Courier_New.ttf 16 g 27.8462 36.6565 103 ] -10.4393 9.5998 43.1932 -Courier_New.ttf 16 g 27.8462 36.6565 104 é -12.2078 27.4295 38.4203 -Courier_New.ttf 16 g 27.8462 36.6565 105 z 0.2610 23.7959 25.2097 -Courier_New.ttf 16 g 27.8462 36.6565 106 _ 39.9758 35.0594 2.3865 -Courier_New.ttf 16 g 27.8462 36.6565 107 ¥ -7.9762 29.6744 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 1 t 1.5511 26.2362 34.6034 -Courier_New.ttf 17 d 30.1138 36.5505 2 h -0.3992 29.6326 35.9800 -Courier_New.ttf 17 d 30.1138 36.5505 3 a 10.2551 26.9256 26.1840 -Courier_New.ttf 17 d 30.1138 36.5505 4 n 10.4588 29.2061 25.6135 -Courier_New.ttf 17 d 30.1138 36.5505 5 P 2.7078 26.0529 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 6 o 10.2591 26.8068 26.1840 -Courier_New.ttf 17 d 30.1138 36.5505 7 e 10.5591 27.4295 26.1840 -Courier_New.ttf 17 d 30.1138 36.5505 8 : 10.9312 8.6565 25.7802 -Courier_New.ttf 17 d 30.1138 36.5505 9 r 10.6627 26.8295 25.6135 -Courier_New.ttf 17 d 30.1138 36.5505 10 l -0.1756 24.4725 35.9800 -Courier_New.ttf 17 d 30.1138 36.5505 11 i -1.0442 24.4725 37.2498 -Courier_New.ttf 17 d 30.1138 36.5505 12 1 -1.5912 22.8527 37.5770 -Courier_New.ttf 17 d 30.1138 36.5505 13 | 0.2105 2.3865 43.1932 -Courier_New.ttf 17 d 30.1138 36.5505 14 N 2.7174 31.3964 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 15 f 0.1774 25.4696 35.9800 -Courier_New.ttf 17 d 30.1138 36.5505 16 g 10.4392 27.8462 36.6565 -Courier_New.ttf 17 d 30.1138 36.5505 17 d -0.2771 30.1138 36.5505 -Courier_New.ttf 17 d 30.1138 36.5505 18 W 2.4950 32.5836 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 19 s 10.2051 23.0959 26.1840 -Courier_New.ttf 17 d 30.1138 36.5505 20 c 10.5075 26.6529 26.1840 -Courier_New.ttf 17 d 30.1138 36.5505 21 u 10.7084 29.6326 25.7802 -Courier_New.ttf 17 d 30.1138 36.5505 22 3 -0.4262 23.6959 36.7876 -Courier_New.ttf 17 d 30.1138 36.5505 23 ~ 15.0702 24.8892 8.5732 -Courier_New.ttf 17 d 30.1138 36.5505 24 # -2.3136 25.0657 42.1962 -Courier_New.ttf 17 d 30.1138 36.5505 25 O 1.9575 29.1932 34.4140 -Courier_New.ttf 17 d 30.1138 36.5505 26 ` -2.0980 9.8498 8.6565 -Courier_New.ttf 17 d 30.1138 36.5505 27 @ -1.1995 22.0800 40.4029 -Courier_New.ttf 17 d 30.1138 36.5505 28 F 2.7553 27.3234 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 29 S 2.1782 24.5392 34.4140 -Courier_New.ttf 17 d 30.1138 36.5505 30 p 10.4859 29.8826 36.6565 -Courier_New.ttf 17 d 30.1138 36.5505 31 “ -0.0228 24.6392 15.1932 -Courier_New.ttf 17 d 30.1138 36.5505 32 % 0.2647 24.3664 36.5505 -Courier_New.ttf 17 d 30.1138 36.5505 33 £ 1.9424 26.2840 33.8435 -Courier_New.ttf 17 d 30.1138 36.5505 34 . 28.6372 8.8232 7.9800 -Courier_New.ttf 17 d 30.1138 36.5505 35 2 -0.3737 23.1732 36.3838 -Courier_New.ttf 17 d 30.1138 36.5505 36 5 0.1523 23.7437 36.3838 -Courier_New.ttf 17 d 30.1138 36.5505 37 m 10.6172 35.1594 25.6135 -Courier_New.ttf 17 d 30.1138 36.5505 38 V 2.2267 35.1140 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 39 6 -0.6231 23.7959 36.7876 -Courier_New.ttf 17 d 30.1138 36.5505 40 w 10.7087 32.7502 25.2097 -Courier_New.ttf 17 d 30.1138 36.5505 41 T 2.5347 26.8590 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 42 M 2.1290 34.5367 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 43 G 2.3187 29.5621 34.4140 -Courier_New.ttf 17 d 30.1138 36.5505 44 b -0.1097 29.8826 36.5505 -Courier_New.ttf 17 d 30.1138 36.5505 45 9 -0.5550 22.4193 36.7876 -Courier_New.ttf 17 d 30.1138 36.5505 46 ; 10.8105 12.8068 30.9570 -Courier_New.ttf 17 d 30.1138 36.5505 47 D 2.5267 28.4394 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 48 L 2.2193 28.2727 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 49 y 10.5597 29.3121 36.2527 -Courier_New.ttf 17 d 30.1138 36.5505 50 ‘ 0.1414 12.7529 17.2297 -Courier_New.ttf 17 d 30.1138 36.5505 51 \ -3.3778 24.6392 44.3865 -Courier_New.ttf 17 d 30.1138 36.5505 52 R 2.9161 30.7070 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 53 < 3.6259 28.0000 31.5797 -Courier_New.ttf 17 d 30.1138 36.5505 54 4 0.1030 22.3232 35.9800 -Courier_New.ttf 17 d 30.1138 36.5505 55 8 -0.4094 21.3094 36.7876 -Courier_New.ttf 17 d 30.1138 36.5505 56 0 -0.4753 23.6959 36.7876 -Courier_New.ttf 17 d 30.1138 36.5505 57 A 2.4592 37.1505 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 58 E 2.3854 27.3234 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 59 B 2.6301 28.4167 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 60 v 10.8041 32.1252 25.2097 -Courier_New.ttf 17 d 30.1138 36.5505 61 k -0.0105 26.6529 35.9800 -Courier_New.ttf 17 d 30.1138 36.5505 62 J 2.3351 28.6766 34.1640 -Courier_New.ttf 17 d 30.1138 36.5505 63 U 2.5325 31.3964 34.1640 -Courier_New.ttf 17 d 30.1138 36.5505 64 j -1.1120 18.4230 48.2928 -Courier_New.ttf 17 d 30.1138 36.5505 65 ( -0.1547 8.4065 43.1932 -Courier_New.ttf 17 d 30.1138 36.5505 66 7 0.1214 22.0027 35.9800 -Courier_New.ttf 17 d 30.1138 36.5505 67 § 0.1696 27.1696 39.8097 -Courier_New.ttf 17 d 30.1138 36.5505 68 $ -3.1117 21.8261 44.3865 -Courier_New.ttf 17 d 30.1138 36.5505 69 € 2.1938 31.2297 34.4140 -Courier_New.ttf 17 d 30.1138 36.5505 70 / -3.7109 24.6392 44.3865 -Courier_New.ttf 17 d 30.1138 36.5505 71 C 2.0272 28.2727 34.4140 -Courier_New.ttf 17 d 30.1138 36.5505 72 * 0.2835 22.0860 21.9800 -Courier_New.ttf 17 d 30.1138 36.5505 73 ” 0.1887 24.6392 15.1932 -Courier_New.ttf 17 d 30.1138 36.5505 74 ? 1.4669 21.0594 34.9406 -Courier_New.ttf 17 d 30.1138 36.5505 75 { -0.1927 11.7324 43.3121 -Courier_New.ttf 17 d 30.1138 36.5505 76 } -0.2242 11.7324 43.3121 -Courier_New.ttf 17 d 30.1138 36.5505 77 , 27.4667 11.5597 17.2297 -Courier_New.ttf 17 d 30.1138 36.5505 78 I 2.3651 22.0860 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 79 ° -6.1875 15.7638 15.7638 -Courier_New.ttf 17 d 30.1138 36.5505 80 K 2.1655 31.2297 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 81 H 2.3665 28.4333 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 82 q 10.6159 29.1932 36.6565 -Courier_New.ttf 17 d 30.1138 36.5505 83 & 5.4723 21.9800 31.2070 -Courier_New.ttf 17 d 30.1138 36.5505 84 ’ -0.0446 12.7529 17.2297 -Courier_New.ttf 17 d 30.1138 36.5505 85 [ 0.0500 9.5998 43.1932 -Courier_New.ttf 17 d 30.1138 36.5505 86 - 17.7096 24.8892 3.2297 -Courier_New.ttf 17 d 30.1138 36.5505 87 Y 2.3676 29.3410 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 88 Q 2.2631 30.3865 40.7840 -Courier_New.ttf 17 d 30.1138 36.5505 89 " -0.0240 19.6995 16.0365 -Courier_New.ttf 17 d 30.1138 36.5505 90 ! -0.1339 6.4594 36.5505 -Courier_New.ttf 17 d 30.1138 36.5505 91 x 10.7890 29.1932 25.2097 -Courier_New.ttf 17 d 30.1138 36.5505 92 ) -0.0867 8.4065 43.1932 -Courier_New.ttf 17 d 30.1138 36.5505 93 = 13.4386 29.1932 11.3097 -Courier_New.ttf 17 d 30.1138 36.5505 94 + 4.8406 26.8590 29.2455 -Courier_New.ttf 17 d 30.1138 36.5505 95 X 2.4676 30.9092 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 96 » 10.4274 29.5432 26.8068 -Courier_New.ttf 17 d 30.1138 36.5505 97 ' -0.0742 7.9027 17.2297 -Courier_New.ttf 17 d 30.1138 36.5505 98 ¢ -2.2094 20.7867 38.0998 -Courier_New.ttf 17 d 30.1138 36.5505 99 Z 2.3720 23.0959 33.5935 -Courier_New.ttf 17 d 30.1138 36.5505 100 > 3.6608 28.0000 31.5797 -Courier_New.ttf 17 d 30.1138 36.5505 101 ® 1.3409 34.7867 35.0594 -Courier_New.ttf 17 d 30.1138 36.5505 102 © 1.6149 35.0594 34.7867 -Courier_New.ttf 17 d 30.1138 36.5505 103 ] 0.1029 9.5998 43.1932 -Courier_New.ttf 17 d 30.1138 36.5505 104 é -1.7113 27.4295 38.4203 -Courier_New.ttf 17 d 30.1138 36.5505 105 z 10.5663 23.7959 25.2097 -Courier_New.ttf 17 d 30.1138 36.5505 106 _ 49.8343 35.0594 2.3865 -Courier_New.ttf 17 d 30.1138 36.5505 107 ¥ 2.3763 29.6744 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 1 t -0.1634 26.2362 34.6034 -Courier_New.ttf 18 W 32.5836 33.5935 2 h -2.3610 29.6326 35.9800 -Courier_New.ttf 18 W 32.5836 33.5935 3 a 7.8927 26.9256 26.1840 -Courier_New.ttf 18 W 32.5836 33.5935 4 n 8.0625 29.2061 25.6135 -Courier_New.ttf 18 W 32.5836 33.5935 5 P 0.1409 26.0529 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 6 o 7.8311 26.8068 26.1840 -Courier_New.ttf 18 W 32.5836 33.5935 7 e 7.9684 27.4295 26.1840 -Courier_New.ttf 18 W 32.5836 33.5935 8 : 8.3300 8.6565 25.7802 -Courier_New.ttf 18 W 32.5836 33.5935 9 r 8.3067 26.8295 25.6135 -Courier_New.ttf 18 W 32.5836 33.5935 10 l -2.4607 24.4725 35.9800 -Courier_New.ttf 18 W 32.5836 33.5935 11 i -3.6730 24.4725 37.2498 -Courier_New.ttf 18 W 32.5836 33.5935 12 1 -4.0574 22.8527 37.5770 -Courier_New.ttf 18 W 32.5836 33.5935 13 | -2.4462 2.3865 43.1932 -Courier_New.ttf 18 W 32.5836 33.5935 14 N -0.1669 31.3964 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 15 f -2.4932 25.4696 35.9800 -Courier_New.ttf 18 W 32.5836 33.5935 16 g 7.8363 27.8462 36.6565 -Courier_New.ttf 18 W 32.5836 33.5935 17 d -2.7023 30.1138 36.5505 -Courier_New.ttf 18 W 32.5836 33.5935 18 W 0.2456 32.5836 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 19 s 7.6816 23.0959 26.1840 -Courier_New.ttf 18 W 32.5836 33.5935 20 c 8.2419 26.6529 26.1840 -Courier_New.ttf 18 W 32.5836 33.5935 21 u 8.3073 29.6326 25.7802 -Courier_New.ttf 18 W 32.5836 33.5935 22 3 -2.9150 23.6959 36.7876 -Courier_New.ttf 18 W 32.5836 33.5935 23 ~ 12.5146 24.8892 8.5732 -Courier_New.ttf 18 W 32.5836 33.5935 24 # -4.5969 25.0657 42.1962 -Courier_New.ttf 18 W 32.5836 33.5935 25 O -0.1272 29.1932 34.4140 -Courier_New.ttf 18 W 32.5836 33.5935 26 ` -4.6422 9.8498 8.6565 -Courier_New.ttf 18 W 32.5836 33.5935 27 @ -3.7609 22.0800 40.4029 -Courier_New.ttf 18 W 32.5836 33.5935 28 F -0.2919 27.3234 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 29 S -0.3774 24.5392 34.4140 -Courier_New.ttf 18 W 32.5836 33.5935 30 p 7.6607 29.8826 36.6565 -Courier_New.ttf 18 W 32.5836 33.5935 31 “ -2.3136 24.6392 15.1932 -Courier_New.ttf 18 W 32.5836 33.5935 32 % -2.5950 24.3664 36.5505 -Courier_New.ttf 18 W 32.5836 33.5935 33 £ -0.5482 26.2840 33.8435 -Courier_New.ttf 18 W 32.5836 33.5935 34 . 25.9468 8.8232 7.9800 -Courier_New.ttf 18 W 32.5836 33.5935 35 2 -2.7396 23.1732 36.3838 -Courier_New.ttf 18 W 32.5836 33.5935 36 5 -2.3831 23.7437 36.3838 -Courier_New.ttf 18 W 32.5836 33.5935 37 m 7.9884 35.1594 25.6135 -Courier_New.ttf 18 W 32.5836 33.5935 38 V 0.1695 35.1140 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 39 6 -2.8546 23.7959 36.7876 -Courier_New.ttf 18 W 32.5836 33.5935 40 w 8.3610 32.7502 25.2097 -Courier_New.ttf 18 W 32.5836 33.5935 41 T 0.0714 26.8590 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 42 M -0.2397 34.5367 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 43 G -0.4977 29.5621 34.4140 -Courier_New.ttf 18 W 32.5836 33.5935 44 b -2.4251 29.8826 36.5505 -Courier_New.ttf 18 W 32.5836 33.5935 45 9 -2.8371 22.4193 36.7876 -Courier_New.ttf 18 W 32.5836 33.5935 46 ; 8.3935 12.8068 30.9570 -Courier_New.ttf 18 W 32.5836 33.5935 47 D -0.0152 28.4394 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 48 L -0.0097 28.2727 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 49 y 8.3499 29.3121 36.2527 -Courier_New.ttf 18 W 32.5836 33.5935 50 ‘ -2.4249 12.7529 17.2297 -Courier_New.ttf 18 W 32.5836 33.5935 51 \ -5.7916 24.6392 44.3865 -Courier_New.ttf 18 W 32.5836 33.5935 52 R 0.1297 30.7070 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 53 < 1.2104 28.0000 31.5797 -Courier_New.ttf 18 W 32.5836 33.5935 54 4 -2.3668 22.3232 35.9800 -Courier_New.ttf 18 W 32.5836 33.5935 55 8 -2.7662 21.3094 36.7876 -Courier_New.ttf 18 W 32.5836 33.5935 56 0 -2.4301 23.6959 36.7876 -Courier_New.ttf 18 W 32.5836 33.5935 57 A 0.0825 37.1505 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 58 E -0.0843 27.3234 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 59 B 0.0242 28.4167 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 60 v 8.6381 32.1252 25.2097 -Courier_New.ttf 18 W 32.5836 33.5935 61 k -2.5704 26.6529 35.9800 -Courier_New.ttf 18 W 32.5836 33.5935 62 J 0.2221 28.6766 34.1640 -Courier_New.ttf 18 W 32.5836 33.5935 63 U 0.0560 31.3964 34.1640 -Courier_New.ttf 18 W 32.5836 33.5935 64 j -3.5654 18.4230 48.2928 -Courier_New.ttf 18 W 32.5836 33.5935 65 ( -2.9996 8.4065 43.1932 -Courier_New.ttf 18 W 32.5836 33.5935 66 7 -2.3551 22.0027 35.9800 -Courier_New.ttf 18 W 32.5836 33.5935 67 § -2.6979 27.1696 39.8097 -Courier_New.ttf 18 W 32.5836 33.5935 68 $ -5.2767 21.8261 44.3865 -Courier_New.ttf 18 W 32.5836 33.5935 69 € -0.1828 31.2297 34.4140 -Courier_New.ttf 18 W 32.5836 33.5935 70 / -6.2363 24.6392 44.3865 -Courier_New.ttf 18 W 32.5836 33.5935 71 C -0.3667 28.2727 34.4140 -Courier_New.ttf 18 W 32.5836 33.5935 72 * -2.2909 22.0860 21.9800 -Courier_New.ttf 18 W 32.5836 33.5935 73 ” -2.4319 24.6392 15.1932 -Courier_New.ttf 18 W 32.5836 33.5935 74 ? -0.9287 21.0594 34.9406 -Courier_New.ttf 18 W 32.5836 33.5935 75 { -2.5674 11.7324 43.3121 -Courier_New.ttf 18 W 32.5836 33.5935 76 } -2.8625 11.7324 43.3121 -Courier_New.ttf 18 W 32.5836 33.5935 77 , 25.1399 11.5597 17.2297 -Courier_New.ttf 18 W 32.5836 33.5935 78 I 0.0199 22.0860 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 79 ° -9.0517 15.7638 15.7638 -Courier_New.ttf 18 W 32.5836 33.5935 80 K -0.0742 31.2297 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 81 H -0.1169 28.4333 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 82 q 8.0247 29.1932 36.6565 -Courier_New.ttf 18 W 32.5836 33.5935 83 & 2.9036 21.9800 31.2070 -Courier_New.ttf 18 W 32.5836 33.5935 84 ’ -2.4266 12.7529 17.2297 -Courier_New.ttf 18 W 32.5836 33.5935 85 [ -2.3586 9.5998 43.1932 -Courier_New.ttf 18 W 32.5836 33.5935 86 - 15.4579 24.8892 3.2297 -Courier_New.ttf 18 W 32.5836 33.5935 87 Y -0.1871 29.3410 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 88 Q -0.2751 30.3865 40.7840 -Courier_New.ttf 18 W 32.5836 33.5935 89 " -2.2573 19.6995 16.0365 -Courier_New.ttf 18 W 32.5836 33.5935 90 ! -2.5121 6.4594 36.5505 -Courier_New.ttf 18 W 32.5836 33.5935 91 x 8.5627 29.1932 25.2097 -Courier_New.ttf 18 W 32.5836 33.5935 92 ) -2.5607 8.4065 43.1932 -Courier_New.ttf 18 W 32.5836 33.5935 93 = 11.0988 29.1932 11.3097 -Courier_New.ttf 18 W 32.5836 33.5935 94 + 2.5930 26.8590 29.2455 -Courier_New.ttf 18 W 32.5836 33.5935 95 X -0.0976 30.9092 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 96 » 7.8544 29.5432 26.8068 -Courier_New.ttf 18 W 32.5836 33.5935 97 ' -2.9512 7.9027 17.2297 -Courier_New.ttf 18 W 32.5836 33.5935 98 ¢ -4.5478 20.7867 38.0998 -Courier_New.ttf 18 W 32.5836 33.5935 99 Z 0.2909 23.0959 33.5935 -Courier_New.ttf 18 W 32.5836 33.5935 100 > 0.9593 28.0000 31.5797 -Courier_New.ttf 18 W 32.5836 33.5935 101 ® -0.7559 34.7867 35.0594 -Courier_New.ttf 18 W 32.5836 33.5935 102 © -0.8897 35.0594 34.7867 -Courier_New.ttf 18 W 32.5836 33.5935 103 ] -2.4378 9.5998 43.1932 -Courier_New.ttf 18 W 32.5836 33.5935 104 é -4.3700 27.4295 38.4203 -Courier_New.ttf 18 W 32.5836 33.5935 105 z 8.6294 23.7959 25.2097 -Courier_New.ttf 18 W 32.5836 33.5935 106 _ 47.8209 35.0594 2.3865 -Courier_New.ttf 18 W 32.5836 33.5935 107 ¥ -0.2382 29.6744 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 1 t -8.2755 26.2362 34.6034 -Courier_New.ttf 19 s 23.0959 26.1840 2 h -10.4883 29.6326 35.9800 -Courier_New.ttf 19 s 23.0959 26.1840 3 a -0.0544 26.9256 26.1840 -Courier_New.ttf 19 s 23.0959 26.1840 4 n 0.0597 29.2061 25.6135 -Courier_New.ttf 19 s 23.0959 26.1840 5 P -8.0584 26.0529 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 6 o 0.2818 26.8068 26.1840 -Courier_New.ttf 19 s 23.0959 26.1840 7 e 0.4060 27.4295 26.1840 -Courier_New.ttf 19 s 23.0959 26.1840 8 : 0.3681 8.6565 25.7802 -Courier_New.ttf 19 s 23.0959 26.1840 9 r -0.2011 26.8295 25.6135 -Courier_New.ttf 19 s 23.0959 26.1840 10 l -10.2092 24.4725 35.9800 -Courier_New.ttf 19 s 23.0959 26.1840 11 i -11.6192 24.4725 37.2498 -Courier_New.ttf 19 s 23.0959 26.1840 12 1 -11.8866 22.8527 37.5770 -Courier_New.ttf 19 s 23.0959 26.1840 13 | -10.7565 2.3865 43.1932 -Courier_New.ttf 19 s 23.0959 26.1840 14 N -8.2682 31.3964 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 15 f -10.5420 25.4696 35.9800 -Courier_New.ttf 19 s 23.0959 26.1840 16 g -0.0917 27.8462 36.6565 -Courier_New.ttf 19 s 23.0959 26.1840 17 d -10.3210 30.1138 36.5505 -Courier_New.ttf 19 s 23.0959 26.1840 18 W -7.9942 32.5836 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 19 s 0.0000 23.0959 26.1840 -Courier_New.ttf 19 s 23.0959 26.1840 20 c -0.1914 26.6529 26.1840 -Courier_New.ttf 19 s 23.0959 26.1840 21 u 0.3695 29.6326 25.7802 -Courier_New.ttf 19 s 23.0959 26.1840 22 3 -10.6919 23.6959 36.7876 -Courier_New.ttf 19 s 23.0959 26.1840 23 ~ 4.5443 24.8892 8.5732 -Courier_New.ttf 19 s 23.0959 26.1840 24 # -13.0604 25.0657 42.1962 -Courier_New.ttf 19 s 23.0959 26.1840 25 O -8.4139 29.1932 34.4140 -Courier_New.ttf 19 s 23.0959 26.1840 26 ` -12.1862 9.8498 8.6565 -Courier_New.ttf 19 s 23.0959 26.1840 27 @ -11.9348 22.0800 40.4029 -Courier_New.ttf 19 s 23.0959 26.1840 28 F -7.7960 27.3234 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 29 S -8.0890 24.5392 34.4140 -Courier_New.ttf 19 s 23.0959 26.1840 30 p 0.3300 29.8826 36.6565 -Courier_New.ttf 19 s 23.0959 26.1840 31 “ -10.4549 24.6392 15.1932 -Courier_New.ttf 19 s 23.0959 26.1840 32 % -10.7265 24.3664 36.5505 -Courier_New.ttf 19 s 23.0959 26.1840 33 £ -8.6624 26.2840 33.8435 -Courier_New.ttf 19 s 23.0959 26.1840 34 . 18.2229 8.8232 7.9800 -Courier_New.ttf 19 s 23.0959 26.1840 35 2 -10.8529 23.1732 36.3838 -Courier_New.ttf 19 s 23.0959 26.1840 36 5 -10.3795 23.7437 36.3838 -Courier_New.ttf 19 s 23.0959 26.1840 37 m -0.1447 35.1594 25.6135 -Courier_New.ttf 19 s 23.0959 26.1840 38 V -7.9198 35.1140 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 39 6 -10.8092 23.7959 36.7876 -Courier_New.ttf 19 s 23.0959 26.1840 40 w 0.3681 32.7502 25.2097 -Courier_New.ttf 19 s 23.0959 26.1840 41 T -8.1968 26.8590 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 42 M -8.1625 34.5367 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 43 G -8.2090 29.5621 34.4140 -Courier_New.ttf 19 s 23.0959 26.1840 44 b -10.1656 29.8826 36.5505 -Courier_New.ttf 19 s 23.0959 26.1840 45 9 -10.7119 22.4193 36.7876 -Courier_New.ttf 19 s 23.0959 26.1840 46 ; 0.3727 12.8068 30.9570 -Courier_New.ttf 19 s 23.0959 26.1840 47 D -7.7172 28.4394 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 48 L -7.8832 28.2727 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 49 y 0.4538 29.3121 36.2527 -Courier_New.ttf 19 s 23.0959 26.1840 50 ‘ -10.1267 12.7529 17.2297 -Courier_New.ttf 19 s 23.0959 26.1840 51 \ -13.4247 24.6392 44.3865 -Courier_New.ttf 19 s 23.0959 26.1840 52 R -7.7931 30.7070 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 53 < -6.5496 28.0000 31.5797 -Courier_New.ttf 19 s 23.0959 26.1840 54 4 -10.1898 22.3232 35.9800 -Courier_New.ttf 19 s 23.0959 26.1840 55 8 -10.7611 21.3094 36.7876 -Courier_New.ttf 19 s 23.0959 26.1840 56 0 -10.7006 23.6959 36.7876 -Courier_New.ttf 19 s 23.0959 26.1840 57 A -8.0359 37.1505 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 58 E -8.1982 27.3234 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 59 B -7.7631 28.4167 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 60 v 0.2425 32.1252 25.2097 -Courier_New.ttf 19 s 23.0959 26.1840 61 k -10.4393 26.6529 35.9800 -Courier_New.ttf 19 s 23.0959 26.1840 62 J -7.6413 28.6766 34.1640 -Courier_New.ttf 19 s 23.0959 26.1840 63 U -8.0622 31.3964 34.1640 -Courier_New.ttf 19 s 23.0959 26.1840 64 j -11.6150 18.4230 48.2928 -Courier_New.ttf 19 s 23.0959 26.1840 65 ( -10.2643 8.4065 43.1932 -Courier_New.ttf 19 s 23.0959 26.1840 66 7 -10.2955 22.0027 35.9800 -Courier_New.ttf 19 s 23.0959 26.1840 67 § -10.1024 27.1696 39.8097 -Courier_New.ttf 19 s 23.0959 26.1840 68 $ -13.5596 21.8261 44.3865 -Courier_New.ttf 19 s 23.0959 26.1840 69 € -8.1905 31.2297 34.4140 -Courier_New.ttf 19 s 23.0959 26.1840 70 / -14.1481 24.6392 44.3865 -Courier_New.ttf 19 s 23.0959 26.1840 71 C -8.3429 28.2727 34.4140 -Courier_New.ttf 19 s 23.0959 26.1840 72 * -10.0863 22.0860 21.9800 -Courier_New.ttf 19 s 23.0959 26.1840 73 ” -10.2590 24.6392 15.1932 -Courier_New.ttf 19 s 23.0959 26.1840 74 ? -8.7590 21.0594 34.9406 -Courier_New.ttf 19 s 23.0959 26.1840 75 { -10.7651 11.7324 43.3121 -Courier_New.ttf 19 s 23.0959 26.1840 76 } -10.7463 11.7324 43.3121 -Courier_New.ttf 19 s 23.0959 26.1840 77 , 16.8387 11.5597 17.2297 -Courier_New.ttf 19 s 23.0959 26.1840 78 I -7.9929 22.0860 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 79 ° -17.0752 15.7638 15.7638 -Courier_New.ttf 19 s 23.0959 26.1840 80 K -8.0587 31.2297 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 81 H -8.1405 28.4333 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 82 q 0.0143 29.1932 36.6565 -Courier_New.ttf 19 s 23.0959 26.1840 83 & -5.3179 21.9800 31.2070 -Courier_New.ttf 19 s 23.0959 26.1840 84 ’ -10.1506 12.7529 17.2297 -Courier_New.ttf 19 s 23.0959 26.1840 85 [ -10.0944 9.5998 43.1932 -Courier_New.ttf 19 s 23.0959 26.1840 86 - 7.1102 24.8892 3.2297 -Courier_New.ttf 19 s 23.0959 26.1840 87 Y -8.2172 29.3410 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 88 Q -8.0568 30.3865 40.7840 -Courier_New.ttf 19 s 23.0959 26.1840 89 " -10.5837 19.6995 16.0365 -Courier_New.ttf 19 s 23.0959 26.1840 90 ! -10.3391 6.4594 36.5505 -Courier_New.ttf 19 s 23.0959 26.1840 91 x 0.5337 29.1932 25.2097 -Courier_New.ttf 19 s 23.0959 26.1840 92 ) -10.4165 8.4065 43.1932 -Courier_New.ttf 19 s 23.0959 26.1840 93 = 3.0949 29.1932 11.3097 -Courier_New.ttf 19 s 23.0959 26.1840 94 + -5.2717 26.8590 29.2455 -Courier_New.ttf 19 s 23.0959 26.1840 95 X -7.7200 30.9092 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 96 » -0.1312 29.5432 26.8068 -Courier_New.ttf 19 s 23.0959 26.1840 97 ' -10.2281 7.9027 17.2297 -Courier_New.ttf 19 s 23.0959 26.1840 98 ¢ -12.5432 20.7867 38.0998 -Courier_New.ttf 19 s 23.0959 26.1840 99 Z -7.5815 23.0959 33.5935 -Courier_New.ttf 19 s 23.0959 26.1840 100 > -6.8087 28.0000 31.5797 -Courier_New.ttf 19 s 23.0959 26.1840 101 ® -8.9314 34.7867 35.0594 -Courier_New.ttf 19 s 23.0959 26.1840 102 © -8.4654 35.0594 34.7867 -Courier_New.ttf 19 s 23.0959 26.1840 103 ] -10.1880 9.5998 43.1932 -Courier_New.ttf 19 s 23.0959 26.1840 104 é -12.3304 27.4295 38.4203 -Courier_New.ttf 19 s 23.0959 26.1840 105 z 0.6366 23.7959 25.2097 -Courier_New.ttf 19 s 23.0959 26.1840 106 _ 39.6362 35.0594 2.3865 -Courier_New.ttf 19 s 23.0959 26.1840 107 ¥ -7.9800 29.6744 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 1 t -7.9363 26.2362 34.6034 -Courier_New.ttf 20 c 26.6529 26.1840 2 h -10.3807 29.6326 35.9800 -Courier_New.ttf 20 c 26.6529 26.1840 3 a -0.1826 26.9256 26.1840 -Courier_New.ttf 20 c 26.6529 26.1840 4 n -0.0617 29.2061 25.6135 -Courier_New.ttf 20 c 26.6529 26.1840 5 P -8.0012 26.0529 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 6 o -0.0027 26.8068 26.1840 -Courier_New.ttf 20 c 26.6529 26.1840 7 e 0.0131 27.4295 26.1840 -Courier_New.ttf 20 c 26.6529 26.1840 8 : 0.7415 8.6565 25.7802 -Courier_New.ttf 20 c 26.6529 26.1840 9 r 0.0143 26.8295 25.6135 -Courier_New.ttf 20 c 26.6529 26.1840 10 l -10.1766 24.4725 35.9800 -Courier_New.ttf 20 c 26.6529 26.1840 11 i -11.4257 24.4725 37.2498 -Courier_New.ttf 20 c 26.6529 26.1840 12 1 -11.8853 22.8527 37.5770 -Courier_New.ttf 20 c 26.6529 26.1840 13 | -10.3313 2.3865 43.1932 -Courier_New.ttf 20 c 26.6529 26.1840 14 N -7.8559 31.3964 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 15 f -10.2266 25.4696 35.9800 -Courier_New.ttf 20 c 26.6529 26.1840 16 g 0.0435 27.8462 36.6565 -Courier_New.ttf 20 c 26.6529 26.1840 17 d -10.6922 30.1138 36.5505 -Courier_New.ttf 20 c 26.6529 26.1840 18 W -8.3112 32.5836 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 19 s -0.1418 23.0959 26.1840 -Courier_New.ttf 20 c 26.6529 26.1840 20 c -0.0042 26.6529 26.1840 -Courier_New.ttf 20 c 26.6529 26.1840 21 u 0.4420 29.6326 25.7802 -Courier_New.ttf 20 c 26.6529 26.1840 22 3 -10.9378 23.6959 36.7876 -Courier_New.ttf 20 c 26.6529 26.1840 23 ~ 4.5794 24.8892 8.5732 -Courier_New.ttf 20 c 26.6529 26.1840 24 # -12.4475 25.0657 42.1962 -Courier_New.ttf 20 c 26.6529 26.1840 25 O -8.1985 29.1932 34.4140 -Courier_New.ttf 20 c 26.6529 26.1840 26 ` -12.1264 9.8498 8.6565 -Courier_New.ttf 20 c 26.6529 26.1840 27 @ -11.6368 22.0800 40.4029 -Courier_New.ttf 20 c 26.6529 26.1840 28 F -8.5097 27.3234 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 29 S -8.1480 24.5392 34.4140 -Courier_New.ttf 20 c 26.6529 26.1840 30 p 0.3665 29.8826 36.6565 -Courier_New.ttf 20 c 26.6529 26.1840 31 “ -10.0890 24.6392 15.1932 -Courier_New.ttf 20 c 26.6529 26.1840 32 % -10.2901 24.3664 36.5505 -Courier_New.ttf 20 c 26.6529 26.1840 33 £ -8.2111 26.2840 33.8435 -Courier_New.ttf 20 c 26.6529 26.1840 34 . 18.2328 8.8232 7.9800 -Courier_New.ttf 20 c 26.6529 26.1840 35 2 -10.4663 23.1732 36.3838 -Courier_New.ttf 20 c 26.6529 26.1840 36 5 -10.4855 23.7437 36.3838 -Courier_New.ttf 20 c 26.6529 26.1840 37 m 0.1429 35.1594 25.6135 -Courier_New.ttf 20 c 26.6529 26.1840 38 V -7.9276 35.1140 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 39 6 -10.6786 23.7959 36.7876 -Courier_New.ttf 20 c 26.6529 26.1840 40 w 0.4142 32.7502 25.2097 -Courier_New.ttf 20 c 26.6529 26.1840 41 T -7.9628 26.8590 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 42 M -7.8173 34.5367 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 43 G -8.1303 29.5621 34.4140 -Courier_New.ttf 20 c 26.6529 26.1840 44 b -10.4739 29.8826 36.5505 -Courier_New.ttf 20 c 26.6529 26.1840 45 9 -10.8715 22.4193 36.7876 -Courier_New.ttf 20 c 26.6529 26.1840 46 ; 0.4440 12.8068 30.9570 -Courier_New.ttf 20 c 26.6529 26.1840 47 D -7.8896 28.4394 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 48 L -8.0327 28.2727 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 49 y 0.2500 29.3121 36.2527 -Courier_New.ttf 20 c 26.6529 26.1840 50 ‘ -10.5406 12.7529 17.2297 -Courier_New.ttf 20 c 26.6529 26.1840 51 \ -13.6091 24.6392 44.3865 -Courier_New.ttf 20 c 26.6529 26.1840 52 R -8.2505 30.7070 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 53 < -6.8689 28.0000 31.5797 -Courier_New.ttf 20 c 26.6529 26.1840 54 4 -10.4939 22.3232 35.9800 -Courier_New.ttf 20 c 26.6529 26.1840 55 8 -10.7917 21.3094 36.7876 -Courier_New.ttf 20 c 26.6529 26.1840 56 0 -10.9590 23.6959 36.7876 -Courier_New.ttf 20 c 26.6529 26.1840 57 A -7.7784 37.1505 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 58 E -8.3125 27.3234 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 59 B -7.9767 28.4167 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 60 v 0.4487 32.1252 25.2097 -Courier_New.ttf 20 c 26.6529 26.1840 61 k -10.5277 26.6529 35.9800 -Courier_New.ttf 20 c 26.6529 26.1840 62 J -7.7036 28.6766 34.1640 -Courier_New.ttf 20 c 26.6529 26.1840 63 U -8.0327 31.3964 34.1640 -Courier_New.ttf 20 c 26.6529 26.1840 64 j -11.8048 18.4230 48.2928 -Courier_New.ttf 20 c 26.6529 26.1840 65 ( -10.5148 8.4065 43.1932 -Courier_New.ttf 20 c 26.6529 26.1840 66 7 -10.0942 22.0027 35.9800 -Courier_New.ttf 20 c 26.6529 26.1840 67 § -10.3724 27.1696 39.8097 -Courier_New.ttf 20 c 26.6529 26.1840 68 $ -13.6270 21.8261 44.3865 -Courier_New.ttf 20 c 26.6529 26.1840 69 € -8.3184 31.2297 34.4140 -Courier_New.ttf 20 c 26.6529 26.1840 70 / -13.8712 24.6392 44.3865 -Courier_New.ttf 20 c 26.6529 26.1840 71 C -8.5414 28.2727 34.4140 -Courier_New.ttf 20 c 26.6529 26.1840 72 * -10.5487 22.0860 21.9800 -Courier_New.ttf 20 c 26.6529 26.1840 73 ” -10.4966 24.6392 15.1932 -Courier_New.ttf 20 c 26.6529 26.1840 74 ? -8.8474 21.0594 34.9406 -Courier_New.ttf 20 c 26.6529 26.1840 75 { -10.5472 11.7324 43.3121 -Courier_New.ttf 20 c 26.6529 26.1840 76 } -10.7139 11.7324 43.3121 -Courier_New.ttf 20 c 26.6529 26.1840 77 , 16.9169 11.5597 17.2297 -Courier_New.ttf 20 c 26.6529 26.1840 78 I -7.8246 22.0860 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 79 ° -16.7278 15.7638 15.7638 -Courier_New.ttf 20 c 26.6529 26.1840 80 K -8.0139 31.2297 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 81 H -8.0844 28.4333 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 82 q -0.0500 29.1932 36.6565 -Courier_New.ttf 20 c 26.6529 26.1840 83 & -4.8767 21.9800 31.2070 -Courier_New.ttf 20 c 26.6529 26.1840 84 ’ -10.5301 12.7529 17.2297 -Courier_New.ttf 20 c 26.6529 26.1840 85 [ -10.5873 9.5998 43.1932 -Courier_New.ttf 20 c 26.6529 26.1840 86 - 7.3949 24.8892 3.2297 -Courier_New.ttf 20 c 26.6529 26.1840 87 Y -8.1541 29.3410 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 88 Q -8.0631 30.3865 40.7840 -Courier_New.ttf 20 c 26.6529 26.1840 89 " -10.7305 19.6995 16.0365 -Courier_New.ttf 20 c 26.6529 26.1840 90 ! -10.5055 6.4594 36.5505 -Courier_New.ttf 20 c 26.6529 26.1840 91 x 0.4720 29.1932 25.2097 -Courier_New.ttf 20 c 26.6529 26.1840 92 ) -10.2293 8.4065 43.1932 -Courier_New.ttf 20 c 26.6529 26.1840 93 = 2.9445 29.1932 11.3097 -Courier_New.ttf 20 c 26.6529 26.1840 94 + -5.4100 26.8590 29.2455 -Courier_New.ttf 20 c 26.6529 26.1840 95 X -7.8228 30.9092 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 96 » 0.0166 29.5432 26.8068 -Courier_New.ttf 20 c 26.6529 26.1840 97 ' -10.2717 7.9027 17.2297 -Courier_New.ttf 20 c 26.6529 26.1840 98 ¢ -12.4103 20.7867 38.0998 -Courier_New.ttf 20 c 26.6529 26.1840 99 Z -8.0157 23.0959 33.5935 -Courier_New.ttf 20 c 26.6529 26.1840 100 > -6.7331 28.0000 31.5797 -Courier_New.ttf 20 c 26.6529 26.1840 101 ® -9.0308 34.7867 35.0594 -Courier_New.ttf 20 c 26.6529 26.1840 102 © -8.6398 35.0594 34.7867 -Courier_New.ttf 20 c 26.6529 26.1840 103 ] -10.2565 9.5998 43.1932 -Courier_New.ttf 20 c 26.6529 26.1840 104 é -12.3377 27.4295 38.4203 -Courier_New.ttf 20 c 26.6529 26.1840 105 z 0.2517 23.7959 25.2097 -Courier_New.ttf 20 c 26.6529 26.1840 106 _ 39.6108 35.0594 2.3865 -Courier_New.ttf 20 c 26.6529 26.1840 107 ¥ -8.0345 29.6744 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 1 t -8.7875 26.2362 34.6034 -Courier_New.ttf 21 u 29.6326 25.7802 2 h -10.8835 29.6326 35.9800 -Courier_New.ttf 21 u 29.6326 25.7802 3 a -0.0173 26.9256 26.1840 -Courier_New.ttf 21 u 29.6326 25.7802 4 n -0.3849 29.2061 25.6135 -Courier_New.ttf 21 u 29.6326 25.7802 5 P -8.2174 26.0529 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 6 o -0.6925 26.8068 26.1840 -Courier_New.ttf 21 u 29.6326 25.7802 7 e -0.5711 27.4295 26.1840 -Courier_New.ttf 21 u 29.6326 25.7802 8 : -0.3068 8.6565 25.7802 -Courier_New.ttf 21 u 29.6326 25.7802 9 r -0.3320 26.8295 25.6135 -Courier_New.ttf 21 u 29.6326 25.7802 10 l -10.8633 24.4725 35.9800 -Courier_New.ttf 21 u 29.6326 25.7802 11 i -11.9681 24.4725 37.2498 -Courier_New.ttf 21 u 29.6326 25.7802 12 1 -12.1816 22.8527 37.5770 -Courier_New.ttf 21 u 29.6326 25.7802 13 | -10.9903 2.3865 43.1932 -Courier_New.ttf 21 u 29.6326 25.7802 14 N -8.3311 31.3964 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 15 f -10.3931 25.4696 35.9800 -Courier_New.ttf 21 u 29.6326 25.7802 16 g -0.6584 27.8462 36.6565 -Courier_New.ttf 21 u 29.6326 25.7802 17 d -10.6317 30.1138 36.5505 -Courier_New.ttf 21 u 29.6326 25.7802 18 W -8.3156 32.5836 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 19 s -0.5387 23.0959 26.1840 -Courier_New.ttf 21 u 29.6326 25.7802 20 c -0.5663 26.6529 26.1840 -Courier_New.ttf 21 u 29.6326 25.7802 21 u -0.0909 29.6326 25.7802 -Courier_New.ttf 21 u 29.6326 25.7802 22 3 -11.0453 23.6959 36.7876 -Courier_New.ttf 21 u 29.6326 25.7802 23 ~ 4.1373 24.8892 8.5732 -Courier_New.ttf 21 u 29.6326 25.7802 24 # -13.2373 25.0657 42.1962 -Courier_New.ttf 21 u 29.6326 25.7802 25 O -8.5232 29.1932 34.4140 -Courier_New.ttf 21 u 29.6326 25.7802 26 ` -12.7393 9.8498 8.6565 -Courier_New.ttf 21 u 29.6326 25.7802 27 @ -12.0046 22.0800 40.4029 -Courier_New.ttf 21 u 29.6326 25.7802 28 F -8.8309 27.3234 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 29 S -8.2658 24.5392 34.4140 -Courier_New.ttf 21 u 29.6326 25.7802 30 p -0.7151 29.8826 36.6565 -Courier_New.ttf 21 u 29.6326 25.7802 31 “ -10.9673 24.6392 15.1932 -Courier_New.ttf 21 u 29.6326 25.7802 32 % -11.0173 24.3664 36.5505 -Courier_New.ttf 21 u 29.6326 25.7802 33 £ -8.8536 26.2840 33.8435 -Courier_New.ttf 21 u 29.6326 25.7802 34 . 17.9528 8.8232 7.9800 -Courier_New.ttf 21 u 29.6326 25.7802 35 2 -10.9824 23.1732 36.3838 -Courier_New.ttf 21 u 29.6326 25.7802 36 5 -10.7730 23.7437 36.3838 -Courier_New.ttf 21 u 29.6326 25.7802 37 m -0.1458 35.1594 25.6135 -Courier_New.ttf 21 u 29.6326 25.7802 38 V -8.3877 35.1140 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 39 6 -11.3591 23.7959 36.7876 -Courier_New.ttf 21 u 29.6326 25.7802 40 w -0.3048 32.7502 25.2097 -Courier_New.ttf 21 u 29.6326 25.7802 41 T -8.4300 26.8590 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 42 M -8.2898 34.5367 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 43 G -8.7839 29.5621 34.4140 -Courier_New.ttf 21 u 29.6326 25.7802 44 b -10.6997 29.8826 36.5505 -Courier_New.ttf 21 u 29.6326 25.7802 45 9 -11.0772 22.4193 36.7876 -Courier_New.ttf 21 u 29.6326 25.7802 46 ; -0.1354 12.8068 30.9570 -Courier_New.ttf 21 u 29.6326 25.7802 47 D -8.4723 28.4394 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 48 L -8.3449 28.2727 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 49 y 0.1637 29.3121 36.2527 -Courier_New.ttf 21 u 29.6326 25.7802 50 ‘ -10.9561 12.7529 17.2297 -Courier_New.ttf 21 u 29.6326 25.7802 51 \ -13.9968 24.6392 44.3865 -Courier_New.ttf 21 u 29.6326 25.7802 52 R -8.3437 30.7070 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 53 < -6.9131 28.0000 31.5797 -Courier_New.ttf 21 u 29.6326 25.7802 54 4 -10.5149 22.3232 35.9800 -Courier_New.ttf 21 u 29.6326 25.7802 55 8 -11.1384 21.3094 36.7876 -Courier_New.ttf 21 u 29.6326 25.7802 56 0 -10.9583 23.6959 36.7876 -Courier_New.ttf 21 u 29.6326 25.7802 57 A -8.3026 37.1505 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 58 E -8.4008 27.3234 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 59 B -8.3835 28.4167 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 60 v 0.2032 32.1252 25.2097 -Courier_New.ttf 21 u 29.6326 25.7802 61 k -10.7171 26.6529 35.9800 -Courier_New.ttf 21 u 29.6326 25.7802 62 J -8.6463 28.6766 34.1640 -Courier_New.ttf 21 u 29.6326 25.7802 63 U -8.4593 31.3964 34.1640 -Courier_New.ttf 21 u 29.6326 25.7802 64 j -12.2552 18.4230 48.2928 -Courier_New.ttf 21 u 29.6326 25.7802 65 ( -11.0029 8.4065 43.1932 -Courier_New.ttf 21 u 29.6326 25.7802 66 7 -10.6178 22.0027 35.9800 -Courier_New.ttf 21 u 29.6326 25.7802 67 § -10.3871 27.1696 39.8097 -Courier_New.ttf 21 u 29.6326 25.7802 68 $ -13.9476 21.8261 44.3865 -Courier_New.ttf 21 u 29.6326 25.7802 69 € -8.6557 31.2297 34.4140 -Courier_New.ttf 21 u 29.6326 25.7802 70 / -14.5274 24.6392 44.3865 -Courier_New.ttf 21 u 29.6326 25.7802 71 C -8.7737 28.2727 34.4140 -Courier_New.ttf 21 u 29.6326 25.7802 72 * -11.3111 22.0860 21.9800 -Courier_New.ttf 21 u 29.6326 25.7802 73 ” -11.0855 24.6392 15.1932 -Courier_New.ttf 21 u 29.6326 25.7802 74 ? -8.9526 21.0594 34.9406 -Courier_New.ttf 21 u 29.6326 25.7802 75 { -11.3116 11.7324 43.3121 -Courier_New.ttf 21 u 29.6326 25.7802 76 } -10.9130 11.7324 43.3121 -Courier_New.ttf 21 u 29.6326 25.7802 77 , 16.9134 11.5597 17.2297 -Courier_New.ttf 21 u 29.6326 25.7802 78 I -8.5905 22.0860 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 79 ° -17.4750 15.7638 15.7638 -Courier_New.ttf 21 u 29.6326 25.7802 80 K -8.5171 31.2297 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 81 H -8.6256 28.4333 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 82 q -0.3417 29.1932 36.6565 -Courier_New.ttf 21 u 29.6326 25.7802 83 & -5.5390 21.9800 31.2070 -Courier_New.ttf 21 u 29.6326 25.7802 84 ’ -10.8522 12.7529 17.2297 -Courier_New.ttf 21 u 29.6326 25.7802 85 [ -11.0038 9.5998 43.1932 -Courier_New.ttf 21 u 29.6326 25.7802 86 - 6.7440 24.8892 3.2297 -Courier_New.ttf 21 u 29.6326 25.7802 87 Y -8.1822 29.3410 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 88 Q -8.7037 30.3865 40.7840 -Courier_New.ttf 21 u 29.6326 25.7802 89 " -11.0543 19.6995 16.0365 -Courier_New.ttf 21 u 29.6326 25.7802 90 ! -10.5669 6.4594 36.5505 -Courier_New.ttf 21 u 29.6326 25.7802 91 x -0.1256 29.1932 25.2097 -Courier_New.ttf 21 u 29.6326 25.7802 92 ) -10.4421 8.4065 43.1932 -Courier_New.ttf 21 u 29.6326 25.7802 93 = 2.9614 29.1932 11.3097 -Courier_New.ttf 21 u 29.6326 25.7802 94 + -6.0980 26.8590 29.2455 -Courier_New.ttf 21 u 29.6326 25.7802 95 X -8.2295 30.9092 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 96 » -0.1971 29.5432 26.8068 -Courier_New.ttf 21 u 29.6326 25.7802 97 ' -11.2551 7.9027 17.2297 -Courier_New.ttf 21 u 29.6326 25.7802 98 ¢ -12.7385 20.7867 38.0998 -Courier_New.ttf 21 u 29.6326 25.7802 99 Z -8.5507 23.0959 33.5935 -Courier_New.ttf 21 u 29.6326 25.7802 100 > -7.4959 28.0000 31.5797 -Courier_New.ttf 21 u 29.6326 25.7802 101 ® -9.1911 34.7867 35.0594 -Courier_New.ttf 21 u 29.6326 25.7802 102 © -9.2873 35.0594 34.7867 -Courier_New.ttf 21 u 29.6326 25.7802 103 ] -10.9890 9.5998 43.1932 -Courier_New.ttf 21 u 29.6326 25.7802 104 é -12.7315 27.4295 38.4203 -Courier_New.ttf 21 u 29.6326 25.7802 105 z -0.0932 23.7959 25.2097 -Courier_New.ttf 21 u 29.6326 25.7802 106 _ 39.1680 35.0594 2.3865 -Courier_New.ttf 21 u 29.6326 25.7802 107 ¥ -8.1803 29.6744 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 1 t 2.3009 26.2362 34.6034 -Courier_New.ttf 22 3 23.6959 36.7876 2 h 0.3108 29.6326 35.9800 -Courier_New.ttf 22 3 23.6959 36.7876 3 a 10.5649 26.9256 26.1840 -Courier_New.ttf 22 3 23.6959 36.7876 4 n 10.9119 29.2061 25.6135 -Courier_New.ttf 22 3 23.6959 36.7876 5 P 2.8630 26.0529 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 6 o 10.4407 26.8068 26.1840 -Courier_New.ttf 22 3 23.6959 36.7876 7 e 11.0030 27.4295 26.1840 -Courier_New.ttf 22 3 23.6959 36.7876 8 : 11.0888 8.6565 25.7802 -Courier_New.ttf 22 3 23.6959 36.7876 9 r 10.8931 26.8295 25.6135 -Courier_New.ttf 22 3 23.6959 36.7876 10 l 0.2439 24.4725 35.9800 -Courier_New.ttf 22 3 23.6959 36.7876 11 i -1.0915 24.4725 37.2498 -Courier_New.ttf 22 3 23.6959 36.7876 12 1 -1.2592 22.8527 37.5770 -Courier_New.ttf 22 3 23.6959 36.7876 13 | 0.3629 2.3865 43.1932 -Courier_New.ttf 22 3 23.6959 36.7876 14 N 2.8552 31.3964 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 15 f 0.5455 25.4696 35.9800 -Courier_New.ttf 22 3 23.6959 36.7876 16 g 10.4608 27.8462 36.6565 -Courier_New.ttf 22 3 23.6959 36.7876 17 d 0.5256 30.1138 36.5505 -Courier_New.ttf 22 3 23.6959 36.7876 18 W 2.7389 32.5836 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 19 s 11.0848 23.0959 26.1840 -Courier_New.ttf 22 3 23.6959 36.7876 20 c 10.7332 26.6529 26.1840 -Courier_New.ttf 22 3 23.6959 36.7876 21 u 11.3567 29.6326 25.7802 -Courier_New.ttf 22 3 23.6959 36.7876 22 3 -0.2432 23.6959 36.7876 -Courier_New.ttf 22 3 23.6959 36.7876 23 ~ 15.2938 24.8892 8.5732 -Courier_New.ttf 22 3 23.6959 36.7876 24 # -1.8942 25.0657 42.1962 -Courier_New.ttf 22 3 23.6959 36.7876 25 O 2.6788 29.1932 34.4140 -Courier_New.ttf 22 3 23.6959 36.7876 26 ` -1.8294 9.8498 8.6565 -Courier_New.ttf 22 3 23.6959 36.7876 27 @ -0.8008 22.0800 40.4029 -Courier_New.ttf 22 3 23.6959 36.7876 28 F 2.8403 27.3234 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 29 S 2.5578 24.5392 34.4140 -Courier_New.ttf 22 3 23.6959 36.7876 30 p 10.9616 29.8826 36.6565 -Courier_New.ttf 22 3 23.6959 36.7876 31 “ 0.7106 24.6392 15.1932 -Courier_New.ttf 22 3 23.6959 36.7876 32 % 0.2810 24.3664 36.5505 -Courier_New.ttf 22 3 23.6959 36.7876 33 £ 2.4963 26.2840 33.8435 -Courier_New.ttf 22 3 23.6959 36.7876 34 . 28.5377 8.8232 7.9800 -Courier_New.ttf 22 3 23.6959 36.7876 35 2 -0.0917 23.1732 36.3838 -Courier_New.ttf 22 3 23.6959 36.7876 36 5 0.3508 23.7437 36.3838 -Courier_New.ttf 22 3 23.6959 36.7876 37 m 10.9497 35.1594 25.6135 -Courier_New.ttf 22 3 23.6959 36.7876 38 V 2.4173 35.1140 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 39 6 -0.3118 23.7959 36.7876 -Courier_New.ttf 22 3 23.6959 36.7876 40 w 11.0332 32.7502 25.2097 -Courier_New.ttf 22 3 23.6959 36.7876 41 T 2.7865 26.8590 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 42 M 2.9943 34.5367 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 43 G 2.5298 29.5621 34.4140 -Courier_New.ttf 22 3 23.6959 36.7876 44 b 0.3321 29.8826 36.5505 -Courier_New.ttf 22 3 23.6959 36.7876 45 9 0.0473 22.4193 36.7876 -Courier_New.ttf 22 3 23.6959 36.7876 46 ; 11.3348 12.8068 30.9570 -Courier_New.ttf 22 3 23.6959 36.7876 47 D 2.7403 28.4394 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 48 L 2.7890 28.2727 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 49 y 11.2228 29.3121 36.2527 -Courier_New.ttf 22 3 23.6959 36.7876 50 ‘ 0.3681 12.7529 17.2297 -Courier_New.ttf 22 3 23.6959 36.7876 51 \ -2.5003 24.6392 44.3865 -Courier_New.ttf 22 3 23.6959 36.7876 52 R 2.7078 30.7070 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 53 < 3.6202 28.0000 31.5797 -Courier_New.ttf 22 3 23.6959 36.7876 54 4 0.3297 22.3232 35.9800 -Courier_New.ttf 22 3 23.6959 36.7876 55 8 -0.1269 21.3094 36.7876 -Courier_New.ttf 22 3 23.6959 36.7876 56 0 -0.0284 23.6959 36.7876 -Courier_New.ttf 22 3 23.6959 36.7876 57 A 2.7903 37.1505 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 58 E 2.6654 27.3234 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 59 B 2.8774 28.4167 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 60 v 11.4949 32.1252 25.2097 -Courier_New.ttf 22 3 23.6959 36.7876 61 k 0.4624 26.6529 35.9800 -Courier_New.ttf 22 3 23.6959 36.7876 62 J 2.5563 28.6766 34.1640 -Courier_New.ttf 22 3 23.6959 36.7876 63 U 2.7064 31.3964 34.1640 -Courier_New.ttf 22 3 23.6959 36.7876 64 j -0.7698 18.4230 48.2928 -Courier_New.ttf 22 3 23.6959 36.7876 65 ( 0.3566 8.4065 43.1932 -Courier_New.ttf 22 3 23.6959 36.7876 66 7 0.5829 22.0027 35.9800 -Courier_New.ttf 22 3 23.6959 36.7876 67 § 0.5826 27.1696 39.8097 -Courier_New.ttf 22 3 23.6959 36.7876 68 $ -2.6592 21.8261 44.3865 -Courier_New.ttf 22 3 23.6959 36.7876 69 € 2.1346 31.2297 34.4140 -Courier_New.ttf 22 3 23.6959 36.7876 70 / -3.1464 24.6392 44.3865 -Courier_New.ttf 22 3 23.6959 36.7876 71 C 2.7411 28.2727 34.4140 -Courier_New.ttf 22 3 23.6959 36.7876 72 * 0.4420 22.0860 21.9800 -Courier_New.ttf 22 3 23.6959 36.7876 73 ” 0.2792 24.6392 15.1932 -Courier_New.ttf 22 3 23.6959 36.7876 74 ? 2.0253 21.0594 34.9406 -Courier_New.ttf 22 3 23.6959 36.7876 75 { 0.1377 11.7324 43.3121 -Courier_New.ttf 22 3 23.6959 36.7876 76 } 0.1785 11.7324 43.3121 -Courier_New.ttf 22 3 23.6959 36.7876 77 , 27.9529 11.5597 17.2297 -Courier_New.ttf 22 3 23.6959 36.7876 78 I 2.7306 22.0860 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 79 ° -6.1285 15.7638 15.7638 -Courier_New.ttf 22 3 23.6959 36.7876 80 K 2.8610 31.2297 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 81 H 2.6172 28.4333 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 82 q 10.7611 29.1932 36.6565 -Courier_New.ttf 22 3 23.6959 36.7876 83 & 5.7516 21.9800 31.2070 -Courier_New.ttf 22 3 23.6959 36.7876 84 ’ 0.3727 12.7529 17.2297 -Courier_New.ttf 22 3 23.6959 36.7876 85 [ 0.5903 9.5998 43.1932 -Courier_New.ttf 22 3 23.6959 36.7876 86 - 18.0396 24.8892 3.2297 -Courier_New.ttf 22 3 23.6959 36.7876 87 Y 2.6143 29.3410 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 88 Q 2.3350 30.3865 40.7840 -Courier_New.ttf 22 3 23.6959 36.7876 89 " 0.3779 19.6995 16.0365 -Courier_New.ttf 22 3 23.6959 36.7876 90 ! 0.5624 6.4594 36.5505 -Courier_New.ttf 22 3 23.6959 36.7876 91 x 11.2009 29.1932 25.2097 -Courier_New.ttf 22 3 23.6959 36.7876 92 ) 0.4862 8.4065 43.1932 -Courier_New.ttf 22 3 23.6959 36.7876 93 = 13.8655 29.1932 11.3097 -Courier_New.ttf 22 3 23.6959 36.7876 94 + 5.4708 26.8590 29.2455 -Courier_New.ttf 22 3 23.6959 36.7876 95 X 2.8742 30.9092 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 96 » 10.8248 28.7766 26.8068 -Courier_New.ttf 22 3 23.6959 36.7876 97 ' 0.5852 7.9027 17.2297 -Courier_New.ttf 22 3 23.6959 36.7876 98 ¢ -1.6673 20.7867 38.0998 -Courier_New.ttf 22 3 23.6959 36.7876 99 Z 2.6319 23.0959 33.5935 -Courier_New.ttf 22 3 23.6959 36.7876 100 > 4.2071 28.0000 31.5797 -Courier_New.ttf 22 3 23.6959 36.7876 101 ® 1.7108 34.7867 35.0594 -Courier_New.ttf 22 3 23.6959 36.7876 102 © 2.1605 35.0594 34.7867 -Courier_New.ttf 22 3 23.6959 36.7876 103 ] 0.6694 9.5998 43.1932 -Courier_New.ttf 22 3 23.6959 36.7876 104 é -1.3775 27.4295 38.4203 -Courier_New.ttf 22 3 23.6959 36.7876 105 z 11.3554 23.7959 25.2097 -Courier_New.ttf 22 3 23.6959 36.7876 106 _ 50.2953 35.0594 2.3865 -Courier_New.ttf 22 3 23.6959 36.7876 107 ¥ 2.9527 29.6744 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 1 t -12.9707 26.2362 34.6034 -Courier_New.ttf 23 ~ 24.8892 8.5732 2 h -14.9230 29.6326 35.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 3 a -4.4600 26.9256 26.1840 -Courier_New.ttf 23 ~ 24.8892 8.5732 4 n -4.6126 29.2061 25.6135 -Courier_New.ttf 23 ~ 24.8892 8.5732 5 P -12.5901 26.0529 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 6 o -4.4340 26.8068 26.1840 -Courier_New.ttf 23 ~ 24.8892 8.5732 7 e -4.3914 27.4295 26.1840 -Courier_New.ttf 23 ~ 24.8892 8.5732 8 : -4.1244 8.6565 25.7802 -Courier_New.ttf 23 ~ 24.8892 8.5732 9 r -4.1759 26.8295 25.6135 -Courier_New.ttf 23 ~ 24.8892 8.5732 10 l -15.3630 24.4725 35.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 11 i -16.1606 24.4725 37.2498 -Courier_New.ttf 23 ~ 24.8892 8.5732 12 1 -16.7687 22.8527 37.5770 -Courier_New.ttf 23 ~ 24.8892 8.5732 13 | -14.8533 2.3865 43.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 14 N -12.6354 31.3964 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 15 f -14.7806 25.4696 35.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 16 g -4.3344 27.8462 36.6565 -Courier_New.ttf 23 ~ 24.8892 8.5732 17 d -14.4689 30.1138 36.5505 -Courier_New.ttf 23 ~ 24.8892 8.5732 18 W -12.3840 32.5836 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 19 s -4.4664 23.0959 26.1840 -Courier_New.ttf 23 ~ 24.8892 8.5732 20 c -4.8387 26.6529 26.1840 -Courier_New.ttf 23 ~ 24.8892 8.5732 21 u -4.6908 29.6326 25.7802 -Courier_New.ttf 23 ~ 24.8892 8.5732 22 3 -15.5089 23.6959 36.7876 -Courier_New.ttf 23 ~ 24.8892 8.5732 23 ~ -0.1774 24.8892 8.5732 -Courier_New.ttf 23 ~ 24.8892 8.5732 24 # -17.3687 25.0657 42.1962 -Courier_New.ttf 23 ~ 24.8892 8.5732 25 O -12.9079 29.1932 34.4140 -Courier_New.ttf 23 ~ 24.8892 8.5732 26 ` -16.8593 9.8498 8.6565 -Courier_New.ttf 23 ~ 24.8892 8.5732 27 @ -16.2976 22.0800 40.4029 -Courier_New.ttf 23 ~ 24.8892 8.5732 28 F -12.6101 27.3234 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 29 S -12.9283 24.5392 34.4140 -Courier_New.ttf 23 ~ 24.8892 8.5732 30 p -4.3882 29.8826 36.6565 -Courier_New.ttf 23 ~ 24.8892 8.5732 31 “ -15.1712 24.6392 15.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 32 % -14.9587 24.3664 36.5505 -Courier_New.ttf 23 ~ 24.8892 8.5732 33 £ -12.5706 26.2840 33.8435 -Courier_New.ttf 23 ~ 24.8892 8.5732 34 . 13.3683 8.8232 7.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 35 2 -15.3817 23.1732 36.3838 -Courier_New.ttf 23 ~ 24.8892 8.5732 36 5 -15.1650 23.7437 36.3838 -Courier_New.ttf 23 ~ 24.8892 8.5732 37 m -4.6541 35.1594 25.6135 -Courier_New.ttf 23 ~ 24.8892 8.5732 38 V -12.4567 35.1140 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 39 6 -15.3206 23.7959 36.7876 -Courier_New.ttf 23 ~ 24.8892 8.5732 40 w -4.2752 32.7502 25.2097 -Courier_New.ttf 23 ~ 24.8892 8.5732 41 T -12.4218 26.8590 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 42 M -12.7093 34.5367 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 43 G -12.8378 29.5621 34.4140 -Courier_New.ttf 23 ~ 24.8892 8.5732 44 b -14.9695 29.8826 36.5505 -Courier_New.ttf 23 ~ 24.8892 8.5732 45 9 -15.6703 22.4193 36.7876 -Courier_New.ttf 23 ~ 24.8892 8.5732 46 ; -4.0568 12.8068 30.9570 -Courier_New.ttf 23 ~ 24.8892 8.5732 47 D -12.0908 28.4394 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 48 L -12.3969 28.2727 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 49 y -3.9175 29.3121 36.2527 -Courier_New.ttf 23 ~ 24.8892 8.5732 50 ‘ -14.8925 12.7529 17.2297 -Courier_New.ttf 23 ~ 24.8892 8.5732 51 \ -18.1502 24.6392 44.3865 -Courier_New.ttf 23 ~ 24.8892 8.5732 52 R -12.1624 30.7070 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 53 < -11.3062 28.0000 31.5797 -Courier_New.ttf 23 ~ 24.8892 8.5732 54 4 -14.8283 22.3232 35.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 55 8 -15.5825 21.3094 36.7876 -Courier_New.ttf 23 ~ 24.8892 8.5732 56 0 -15.4433 23.6959 36.7876 -Courier_New.ttf 23 ~ 24.8892 8.5732 57 A -12.6692 37.1505 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 58 E -12.3852 27.3234 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 59 B -12.4322 28.4167 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 60 v -4.1131 32.1252 25.2097 -Courier_New.ttf 23 ~ 24.8892 8.5732 61 k -14.8925 26.6529 35.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 62 J -12.2717 28.6766 34.1640 -Courier_New.ttf 23 ~ 24.8892 8.5732 63 U -12.5015 31.3964 34.1640 -Courier_New.ttf 23 ~ 24.8892 8.5732 64 j -16.2760 18.4230 48.2928 -Courier_New.ttf 23 ~ 24.8892 8.5732 65 ( -15.1858 8.4065 43.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 66 7 -14.6592 22.0027 35.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 67 § -14.8173 27.1696 39.8097 -Courier_New.ttf 23 ~ 24.8892 8.5732 68 $ -17.7102 21.8261 44.3865 -Courier_New.ttf 23 ~ 24.8892 8.5732 69 € -12.6743 31.2297 34.4140 -Courier_New.ttf 23 ~ 24.8892 8.5732 70 / -18.5110 24.6392 44.3865 -Courier_New.ttf 23 ~ 24.8892 8.5732 71 C -13.0168 28.2727 34.4140 -Courier_New.ttf 23 ~ 24.8892 8.5732 72 * -14.5613 22.0860 21.9800 -Courier_New.ttf 23 ~ 24.8892 8.5732 73 ” -14.7931 24.6392 15.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 74 ? -13.5117 21.0594 34.9406 -Courier_New.ttf 23 ~ 24.8892 8.5732 75 { -15.1787 11.7324 43.3121 -Courier_New.ttf 23 ~ 24.8892 8.5732 76 } -15.3903 11.7324 43.3121 -Courier_New.ttf 23 ~ 24.8892 8.5732 77 , 12.8027 11.5597 17.2297 -Courier_New.ttf 23 ~ 24.8892 8.5732 78 I -12.4099 22.0860 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 79 ° -21.6300 15.7638 15.7638 -Courier_New.ttf 23 ~ 24.8892 8.5732 80 K -12.5342 31.2297 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 81 H -12.6439 28.4333 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 82 q -4.6867 29.1932 36.6565 -Courier_New.ttf 23 ~ 24.8892 8.5732 83 & -9.4886 21.9800 31.2070 -Courier_New.ttf 23 ~ 24.8892 8.5732 84 ’ -14.9538 12.7529 17.2297 -Courier_New.ttf 23 ~ 24.8892 8.5732 85 [ -14.6417 9.5998 43.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 86 - 2.5766 24.8892 3.2297 -Courier_New.ttf 23 ~ 24.8892 8.5732 87 Y -12.4756 29.3410 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 88 Q -12.5801 30.3865 40.7840 -Courier_New.ttf 23 ~ 24.8892 8.5732 89 " -14.7704 19.6995 16.0365 -Courier_New.ttf 23 ~ 24.8892 8.5732 90 ! -15.0777 6.4594 36.5505 -Courier_New.ttf 23 ~ 24.8892 8.5732 91 x -4.3945 29.1932 25.2097 -Courier_New.ttf 23 ~ 24.8892 8.5732 92 ) -15.0330 8.4065 43.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 93 = -1.9339 29.1932 11.3097 -Courier_New.ttf 23 ~ 24.8892 8.5732 94 + -9.9740 26.8590 29.2455 -Courier_New.ttf 23 ~ 24.8892 8.5732 95 X -12.4658 30.9092 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 96 » -4.3136 28.7766 26.8068 -Courier_New.ttf 23 ~ 24.8892 8.5732 97 ' -14.8289 7.9027 17.2297 -Courier_New.ttf 23 ~ 24.8892 8.5732 98 ¢ -16.9332 20.7867 38.0998 -Courier_New.ttf 23 ~ 24.8892 8.5732 99 Z -12.6225 23.0959 33.5935 -Courier_New.ttf 23 ~ 24.8892 8.5732 100 > -11.3492 28.0000 31.5797 -Courier_New.ttf 23 ~ 24.8892 8.5732 101 ® -13.7409 34.7867 35.0594 -Courier_New.ttf 23 ~ 24.8892 8.5732 102 © -13.2095 35.0594 34.7867 -Courier_New.ttf 23 ~ 24.8892 8.5732 103 ] -14.8435 9.5998 43.1932 -Courier_New.ttf 23 ~ 24.8892 8.5732 104 é -16.8034 27.4295 38.4203 -Courier_New.ttf 23 ~ 24.8892 8.5732 105 z -4.5271 23.7959 25.2097 -Courier_New.ttf 23 ~ 24.8892 8.5732 106 _ 34.7215 35.0594 2.3865 -Courier_New.ttf 23 ~ 24.8892 8.5732 107 ¥ -12.7662 29.6744 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 1 t 4.3349 26.2362 34.6034 -Courier_New.ttf 24 # 25.0657 42.1962 2 h 2.5653 29.6326 35.9800 -Courier_New.ttf 24 # 25.0657 42.1962 3 a 12.9349 26.9256 26.1840 -Courier_New.ttf 24 # 25.0657 42.1962 4 n 12.7529 29.2061 25.6135 -Courier_New.ttf 24 # 25.0657 42.1962 5 P 4.9596 26.0529 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 6 o 12.8075 26.8068 26.1840 -Courier_New.ttf 24 # 25.0657 42.1962 7 e 12.5448 27.4295 26.1840 -Courier_New.ttf 24 # 25.0657 42.1962 8 : 13.2385 8.6565 25.7802 -Courier_New.ttf 24 # 25.0657 42.1962 9 r 12.8029 26.8295 25.6135 -Courier_New.ttf 24 # 25.0657 42.1962 10 l 2.6335 24.4725 35.9800 -Courier_New.ttf 24 # 25.0657 42.1962 11 i 1.3280 24.4725 37.2498 -Courier_New.ttf 24 # 25.0657 42.1962 12 1 0.7624 22.8527 37.5770 -Courier_New.ttf 24 # 25.0657 42.1962 13 | 2.3434 2.3865 43.1932 -Courier_New.ttf 24 # 25.0657 42.1962 14 N 4.6803 31.3964 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 15 f 2.4906 25.4696 35.9800 -Courier_New.ttf 24 # 25.0657 42.1962 16 g 12.9940 27.8462 36.6565 -Courier_New.ttf 24 # 25.0657 42.1962 17 d 2.2151 30.1138 36.5505 -Courier_New.ttf 24 # 25.0657 42.1962 18 W 4.8503 32.5836 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 19 s 12.5717 23.0959 26.1840 -Courier_New.ttf 24 # 25.0657 42.1962 20 c 12.5801 26.6529 26.1840 -Courier_New.ttf 24 # 25.0657 42.1962 21 u 13.1197 29.6326 25.7802 -Courier_New.ttf 24 # 25.0657 42.1962 22 3 2.0503 23.6959 36.7876 -Courier_New.ttf 24 # 25.0657 42.1962 23 ~ 17.4839 24.8892 8.5732 -Courier_New.ttf 24 # 25.0657 42.1962 24 # 0.0675 25.0657 42.1962 -Courier_New.ttf 24 # 25.0657 42.1962 25 O 4.7343 29.1932 34.4140 -Courier_New.ttf 24 # 25.0657 42.1962 26 ` 0.2607 9.8498 8.6565 -Courier_New.ttf 24 # 25.0657 42.1962 27 @ 1.3513 22.0800 40.4029 -Courier_New.ttf 24 # 25.0657 42.1962 28 F 4.7230 27.3234 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 29 S 4.6628 24.5392 34.4140 -Courier_New.ttf 24 # 25.0657 42.1962 30 p 12.4840 29.8826 36.6565 -Courier_New.ttf 24 # 25.0657 42.1962 31 “ 2.5283 24.6392 15.1932 -Courier_New.ttf 24 # 25.0657 42.1962 32 % 2.0759 24.3664 36.5505 -Courier_New.ttf 24 # 25.0657 42.1962 33 £ 4.6177 26.2840 33.8435 -Courier_New.ttf 24 # 25.0657 42.1962 34 . 30.9308 8.8232 7.9800 -Courier_New.ttf 24 # 25.0657 42.1962 35 2 1.9288 23.1732 36.3838 -Courier_New.ttf 24 # 25.0657 42.1962 36 5 2.3091 23.7437 36.3838 -Courier_New.ttf 24 # 25.0657 42.1962 37 m 12.9129 35.1594 25.6135 -Courier_New.ttf 24 # 25.0657 42.1962 38 V 5.0440 35.1140 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 39 6 1.8241 23.7959 36.7876 -Courier_New.ttf 24 # 25.0657 42.1962 40 w 12.9525 32.7502 25.2097 -Courier_New.ttf 24 # 25.0657 42.1962 41 T 4.3147 26.8590 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 42 M 4.6956 34.5367 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 43 G 4.4905 29.5621 34.4140 -Courier_New.ttf 24 # 25.0657 42.1962 44 b 2.7757 29.8826 36.5505 -Courier_New.ttf 24 # 25.0657 42.1962 45 9 2.2125 22.4193 36.7876 -Courier_New.ttf 24 # 25.0657 42.1962 46 ; 13.0651 12.8068 30.9570 -Courier_New.ttf 24 # 25.0657 42.1962 47 D 4.6676 28.4394 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 48 L 4.7660 28.2727 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 49 y 13.1460 29.3121 36.2527 -Courier_New.ttf 24 # 25.0657 42.1962 50 ‘ 2.7571 12.7529 17.2297 -Courier_New.ttf 24 # 25.0657 42.1962 51 \ -0.7172 24.6392 44.3865 -Courier_New.ttf 24 # 25.0657 42.1962 52 R 4.5325 30.7070 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 53 < 6.0344 28.0000 31.5797 -Courier_New.ttf 24 # 25.0657 42.1962 54 4 2.3064 22.3232 35.9800 -Courier_New.ttf 24 # 25.0657 42.1962 55 8 2.0210 21.3094 36.7876 -Courier_New.ttf 24 # 25.0657 42.1962 56 0 2.0869 23.6959 36.7876 -Courier_New.ttf 24 # 25.0657 42.1962 57 A 4.5719 37.1505 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 58 E 4.5483 27.3234 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 59 B 4.9796 28.4167 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 60 v 13.2203 32.1252 25.2097 -Courier_New.ttf 24 # 25.0657 42.1962 61 k 2.2227 26.6529 35.9800 -Courier_New.ttf 24 # 25.0657 42.1962 62 J 4.7073 28.6766 34.1640 -Courier_New.ttf 24 # 25.0657 42.1962 63 U 4.7629 31.3964 34.1640 -Courier_New.ttf 24 # 25.0657 42.1962 64 j 1.1723 18.4230 48.2928 -Courier_New.ttf 24 # 25.0657 42.1962 65 ( 2.4879 8.4065 43.1932 -Courier_New.ttf 24 # 25.0657 42.1962 66 7 2.1531 22.0027 35.9800 -Courier_New.ttf 24 # 25.0657 42.1962 67 § 2.3053 27.1696 39.8097 -Courier_New.ttf 24 # 25.0657 42.1962 68 $ -0.5427 21.8261 44.3865 -Courier_New.ttf 24 # 25.0657 42.1962 69 € 4.5874 31.2297 34.4140 -Courier_New.ttf 24 # 25.0657 42.1962 70 / -1.3100 24.6392 44.3865 -Courier_New.ttf 24 # 25.0657 42.1962 71 C 4.6213 28.2727 34.4140 -Courier_New.ttf 24 # 25.0657 42.1962 72 * 2.0951 22.0860 21.9800 -Courier_New.ttf 24 # 25.0657 42.1962 73 ” 2.6779 24.6392 15.1932 -Courier_New.ttf 24 # 25.0657 42.1962 74 ? 4.0472 21.0594 34.9406 -Courier_New.ttf 24 # 25.0657 42.1962 75 { 2.2484 11.7324 43.3121 -Courier_New.ttf 24 # 25.0657 42.1962 76 } 2.1411 11.7324 43.3121 -Courier_New.ttf 24 # 25.0657 42.1962 77 , 29.6022 11.5597 17.2297 -Courier_New.ttf 24 # 25.0657 42.1962 78 I 4.5751 22.0860 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 79 ° -3.9966 15.7638 15.7638 -Courier_New.ttf 24 # 25.0657 42.1962 80 K 4.6377 31.2297 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 81 H 4.8099 28.4333 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 82 q 12.8311 29.1932 36.6565 -Courier_New.ttf 24 # 25.0657 42.1962 83 & 7.7541 21.9800 31.2070 -Courier_New.ttf 24 # 25.0657 42.1962 84 ’ 2.4506 12.7529 17.2297 -Courier_New.ttf 24 # 25.0657 42.1962 85 [ 2.3031 9.5998 43.1932 -Courier_New.ttf 24 # 25.0657 42.1962 86 - 19.9607 24.8892 3.2297 -Courier_New.ttf 24 # 25.0657 42.1962 87 Y 4.5319 29.3410 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 88 Q 4.6059 30.3865 40.7840 -Courier_New.ttf 24 # 25.0657 42.1962 89 " 2.5653 19.6995 16.0365 -Courier_New.ttf 24 # 25.0657 42.1962 90 ! 2.4857 6.4594 36.5505 -Courier_New.ttf 24 # 25.0657 42.1962 91 x 13.1952 29.1932 25.2097 -Courier_New.ttf 24 # 25.0657 42.1962 92 ) 2.5220 8.4065 43.1932 -Courier_New.ttf 24 # 25.0657 42.1962 93 = 16.1496 29.1932 11.3097 -Courier_New.ttf 24 # 25.0657 42.1962 94 + 7.4703 26.8590 29.2455 -Courier_New.ttf 24 # 25.0657 42.1962 95 X 4.4875 30.9092 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 96 » 12.5910 28.7766 26.8068 -Courier_New.ttf 24 # 25.0657 42.1962 97 ' 2.1773 7.9027 17.2297 -Courier_New.ttf 24 # 25.0657 42.1962 98 ¢ 0.3329 20.7867 38.0998 -Courier_New.ttf 24 # 25.0657 42.1962 99 Z 4.7175 23.0959 33.5935 -Courier_New.ttf 24 # 25.0657 42.1962 100 > 6.0610 28.0000 31.5797 -Courier_New.ttf 24 # 25.0657 42.1962 101 ® 3.7111 34.7867 35.0594 -Courier_New.ttf 24 # 25.0657 42.1962 102 © 4.0554 35.0594 34.7867 -Courier_New.ttf 24 # 25.0657 42.1962 103 ] 2.1766 9.5998 43.1932 -Courier_New.ttf 24 # 25.0657 42.1962 104 é 0.4295 27.4295 38.4203 -Courier_New.ttf 24 # 25.0657 42.1962 105 z 12.9130 23.7959 25.2097 -Courier_New.ttf 24 # 25.0657 42.1962 106 _ 52.1434 35.0594 2.3865 -Courier_New.ttf 24 # 25.0657 42.1962 107 ¥ 4.7730 29.6744 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 1 t -0.1959 26.2362 34.6034 -Courier_New.ttf 25 O 29.1932 34.4140 2 h -2.3145 29.6326 35.9800 -Courier_New.ttf 25 O 29.1932 34.4140 3 a 8.4139 26.9256 26.1840 -Courier_New.ttf 25 O 29.1932 34.4140 4 n 8.1776 29.2061 25.6135 -Courier_New.ttf 25 O 29.1932 34.4140 5 P 0.5373 26.0529 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 6 o 8.2272 26.8068 26.1840 -Courier_New.ttf 25 O 29.1932 34.4140 7 e 8.3215 27.4295 26.1840 -Courier_New.ttf 25 O 29.1932 34.4140 8 : 8.5324 8.6565 25.7802 -Courier_New.ttf 25 O 29.1932 34.4140 9 r 8.3541 26.8295 25.6135 -Courier_New.ttf 25 O 29.1932 34.4140 10 l -2.0202 24.4725 35.9800 -Courier_New.ttf 25 O 29.1932 34.4140 11 i -3.4420 24.4725 37.2498 -Courier_New.ttf 25 O 29.1932 34.4140 12 1 -3.8207 22.8527 37.5770 -Courier_New.ttf 25 O 29.1932 34.4140 13 | -2.2750 2.3865 43.1932 -Courier_New.ttf 25 O 29.1932 34.4140 14 N 0.1016 31.3964 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 15 f -2.2117 25.4696 35.9800 -Courier_New.ttf 25 O 29.1932 34.4140 16 g 8.3361 27.8462 36.6565 -Courier_New.ttf 25 O 29.1932 34.4140 17 d -2.0683 30.1138 36.5505 -Courier_New.ttf 25 O 29.1932 34.4140 18 W 0.4724 32.5836 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 19 s 8.2326 23.0959 26.1840 -Courier_New.ttf 25 O 29.1932 34.4140 20 c 8.0303 26.6529 26.1840 -Courier_New.ttf 25 O 29.1932 34.4140 21 u 8.2746 29.6326 25.7802 -Courier_New.ttf 25 O 29.1932 34.4140 22 3 -2.5137 23.6959 36.7876 -Courier_New.ttf 25 O 29.1932 34.4140 23 ~ 12.9959 24.8892 8.5732 -Courier_New.ttf 25 O 29.1932 34.4140 24 # -4.7028 25.0657 42.1962 -Courier_New.ttf 25 O 29.1932 34.4140 25 O -0.0584 29.1932 34.4140 -Courier_New.ttf 25 O 29.1932 34.4140 26 ` -3.8829 9.8498 8.6565 -Courier_New.ttf 25 O 29.1932 34.4140 27 @ -3.6181 22.0800 40.4029 -Courier_New.ttf 25 O 29.1932 34.4140 28 F 0.5977 27.3234 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 29 S -0.0903 24.5392 34.4140 -Courier_New.ttf 25 O 29.1932 34.4140 30 p 8.0843 29.8826 36.6565 -Courier_New.ttf 25 O 29.1932 34.4140 31 “ -2.1749 24.6392 15.1932 -Courier_New.ttf 25 O 29.1932 34.4140 32 % -1.9784 24.3664 36.5505 -Courier_New.ttf 25 O 29.1932 34.4140 33 £ -0.0585 26.2840 33.8435 -Courier_New.ttf 25 O 29.1932 34.4140 34 . 26.6453 8.8232 7.9800 -Courier_New.ttf 25 O 29.1932 34.4140 35 2 -2.5788 23.1732 36.3838 -Courier_New.ttf 25 O 29.1932 34.4140 36 5 -1.9492 23.7437 36.3838 -Courier_New.ttf 25 O 29.1932 34.4140 37 m 8.0460 35.1594 25.6135 -Courier_New.ttf 25 O 29.1932 34.4140 38 V 0.2583 35.1140 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 39 6 -2.3999 23.7959 36.7876 -Courier_New.ttf 25 O 29.1932 34.4140 40 w 8.6241 32.7502 25.2097 -Courier_New.ttf 25 O 29.1932 34.4140 41 T 0.2454 26.8590 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 42 M 0.2114 34.5367 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 43 G -0.2845 29.5621 34.4140 -Courier_New.ttf 25 O 29.1932 34.4140 44 b -2.0578 29.8826 36.5505 -Courier_New.ttf 25 O 29.1932 34.4140 45 9 -2.9271 22.4193 36.7876 -Courier_New.ttf 25 O 29.1932 34.4140 46 ; 8.6227 12.8068 30.9570 -Courier_New.ttf 25 O 29.1932 34.4140 47 D 0.3769 28.4394 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 48 L 0.4443 28.2727 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 49 y 8.4090 29.3121 36.2527 -Courier_New.ttf 25 O 29.1932 34.4140 50 ‘ -2.1398 12.7529 17.2297 -Courier_New.ttf 25 O 29.1932 34.4140 51 \ -5.8860 24.6392 44.3865 -Courier_New.ttf 25 O 29.1932 34.4140 52 R 0.2760 30.7070 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 53 < 1.1910 28.0000 31.5797 -Courier_New.ttf 25 O 29.1932 34.4140 54 4 -2.1678 22.3232 35.9800 -Courier_New.ttf 25 O 29.1932 34.4140 55 8 -2.5774 21.3094 36.7876 -Courier_New.ttf 25 O 29.1932 34.4140 56 0 -2.5686 23.6959 36.7876 -Courier_New.ttf 25 O 29.1932 34.4140 57 A 0.2068 37.1505 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 58 E 0.1688 27.3234 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 59 B 0.3357 28.4167 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 60 v 8.5338 32.1252 25.2097 -Courier_New.ttf 25 O 29.1932 34.4140 61 k -1.9270 26.6529 35.9800 -Courier_New.ttf 25 O 29.1932 34.4140 62 J 0.2532 28.6766 34.1640 -Courier_New.ttf 25 O 29.1932 34.4140 63 U 0.2156 31.3964 34.1640 -Courier_New.ttf 25 O 29.1932 34.4140 64 j -3.3667 18.4230 48.2928 -Courier_New.ttf 25 O 29.1932 34.4140 65 ( -2.1403 8.4065 43.1932 -Courier_New.ttf 25 O 29.1932 34.4140 66 7 -2.2634 22.0027 35.9800 -Courier_New.ttf 25 O 29.1932 34.4140 67 § -1.9837 27.1696 39.8097 -Courier_New.ttf 25 O 29.1932 34.4140 68 $ -5.0483 21.8261 44.3865 -Courier_New.ttf 25 O 29.1932 34.4140 69 € -0.1371 31.2297 34.4140 -Courier_New.ttf 25 O 29.1932 34.4140 70 / -6.1101 24.6392 44.3865 -Courier_New.ttf 25 O 29.1932 34.4140 71 C -0.0516 28.2727 34.4140 -Courier_New.ttf 25 O 29.1932 34.4140 72 * -1.9766 22.0860 21.9800 -Courier_New.ttf 25 O 29.1932 34.4140 73 ” -1.9077 24.6392 15.1932 -Courier_New.ttf 25 O 29.1932 34.4140 74 ? -0.2508 21.0594 34.9406 -Courier_New.ttf 25 O 29.1932 34.4140 75 { -2.3519 11.7324 43.3121 -Courier_New.ttf 25 O 29.1932 34.4140 76 } -2.2993 11.7324 43.3121 -Courier_New.ttf 25 O 29.1932 34.4140 77 , 25.4325 11.5597 17.2297 -Courier_New.ttf 25 O 29.1932 34.4140 78 I 0.3364 22.0860 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 79 ° -8.5020 15.7638 15.7638 -Courier_New.ttf 25 O 29.1932 34.4140 80 K 0.1885 31.2297 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 81 H -0.0212 28.4333 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 82 q 8.1377 29.1932 36.6565 -Courier_New.ttf 25 O 29.1932 34.4140 83 & 3.1258 21.9800 31.2070 -Courier_New.ttf 25 O 29.1932 34.4140 84 ’ -2.2464 12.7529 17.2297 -Courier_New.ttf 25 O 29.1932 34.4140 85 [ -2.1678 9.5998 43.1932 -Courier_New.ttf 25 O 29.1932 34.4140 86 - 15.7154 24.8892 3.2297 -Courier_New.ttf 25 O 29.1932 34.4140 87 Y 0.2500 29.3410 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 88 Q -0.0248 30.3865 40.7840 -Courier_New.ttf 25 O 29.1932 34.4140 89 " -2.3389 19.6995 16.0365 -Courier_New.ttf 25 O 29.1932 34.4140 90 ! -1.8237 6.4594 36.5505 -Courier_New.ttf 25 O 29.1932 34.4140 91 x 8.5610 29.1932 25.2097 -Courier_New.ttf 25 O 29.1932 34.4140 92 ) -2.0413 8.4065 43.1932 -Courier_New.ttf 25 O 29.1932 34.4140 93 = 11.3983 29.1932 11.3097 -Courier_New.ttf 25 O 29.1932 34.4140 94 + 2.7410 26.8590 29.2455 -Courier_New.ttf 25 O 29.1932 34.4140 95 X 0.2734 30.9092 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 96 » 8.1771 29.5432 26.8068 -Courier_New.ttf 25 O 29.1932 34.4140 97 ' -2.0749 7.9027 17.2297 -Courier_New.ttf 25 O 29.1932 34.4140 98 ¢ -4.4638 20.7867 38.0998 -Courier_New.ttf 25 O 29.1932 34.4140 99 Z 0.2513 23.0959 33.5935 -Courier_New.ttf 25 O 29.1932 34.4140 100 > 1.2737 28.0000 31.5797 -Courier_New.ttf 25 O 29.1932 34.4140 101 ® -0.9949 34.7867 35.0594 -Courier_New.ttf 25 O 29.1932 34.4140 102 © -0.3384 35.0594 34.7867 -Courier_New.ttf 25 O 29.1932 34.4140 103 ] -2.2118 9.5998 43.1932 -Courier_New.ttf 25 O 29.1932 34.4140 104 é -4.3144 27.4295 38.4203 -Courier_New.ttf 25 O 29.1932 34.4140 105 z 8.7223 23.7959 25.2097 -Courier_New.ttf 25 O 29.1932 34.4140 106 _ 47.6313 35.0594 2.3865 -Courier_New.ttf 25 O 29.1932 34.4140 107 ¥ 0.3752 29.6744 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 1 t 3.7322 26.2362 34.6034 -Courier_New.ttf 26 ` 9.8498 8.6565 2 h 1.7111 29.6326 35.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 3 a 12.0801 26.9256 26.1840 -Courier_New.ttf 26 ` 9.8498 8.6565 4 n 12.6060 29.2061 25.6135 -Courier_New.ttf 26 ` 9.8498 8.6565 5 P 4.3662 26.0529 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 6 o 12.2016 26.8068 26.1840 -Courier_New.ttf 26 ` 9.8498 8.6565 7 e 12.3083 27.4295 26.1840 -Courier_New.ttf 26 ` 9.8498 8.6565 8 : 12.5270 8.6565 25.7802 -Courier_New.ttf 26 ` 9.8498 8.6565 9 r 12.3223 26.8295 25.6135 -Courier_New.ttf 26 ` 9.8498 8.6565 10 l 1.8321 24.4725 35.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 11 i 0.4251 24.4725 37.2498 -Courier_New.ttf 26 ` 9.8498 8.6565 12 1 0.4609 22.8527 37.5770 -Courier_New.ttf 26 ` 9.8498 8.6565 13 | 2.1358 2.3865 43.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 14 N 4.2577 31.3964 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 15 f 1.7171 25.4696 35.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 16 g 12.0037 27.8462 36.6565 -Courier_New.ttf 26 ` 9.8498 8.6565 17 d 1.7681 30.1138 36.5505 -Courier_New.ttf 26 ` 9.8498 8.6565 18 W 4.1192 32.5836 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 19 s 12.4378 23.0959 26.1840 -Courier_New.ttf 26 ` 9.8498 8.6565 20 c 12.2349 26.6529 26.1840 -Courier_New.ttf 26 ` 9.8498 8.6565 21 u 12.4946 29.6326 25.7802 -Courier_New.ttf 26 ` 9.8498 8.6565 22 3 1.4985 23.6959 36.7876 -Courier_New.ttf 26 ` 9.8498 8.6565 23 ~ 17.0481 24.8892 8.5732 -Courier_New.ttf 26 ` 9.8498 8.6565 24 # -0.4635 25.0657 42.1962 -Courier_New.ttf 26 ` 9.8498 8.6565 25 O 4.1173 29.1932 34.4140 -Courier_New.ttf 26 ` 9.8498 8.6565 26 ` 0.0097 9.8498 8.6565 -Courier_New.ttf 26 ` 9.8498 8.6565 27 @ 0.3364 22.0800 40.4029 -Courier_New.ttf 26 ` 9.8498 8.6565 28 F 4.2466 27.3234 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 29 S 4.2338 24.5392 34.4140 -Courier_New.ttf 26 ` 9.8498 8.6565 30 p 12.2505 29.8826 36.6565 -Courier_New.ttf 26 ` 9.8498 8.6565 31 “ 1.7984 24.6392 15.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 32 % 1.8503 24.3664 36.5505 -Courier_New.ttf 26 ` 9.8498 8.6565 33 £ 3.6507 26.2840 33.8435 -Courier_New.ttf 26 ` 9.8498 8.6565 34 . 30.5084 8.8232 7.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 35 2 1.4600 23.1732 36.3838 -Courier_New.ttf 26 ` 9.8498 8.6565 36 5 1.8950 23.7437 36.3838 -Courier_New.ttf 26 ` 9.8498 8.6565 37 m 12.0778 35.1594 25.6135 -Courier_New.ttf 26 ` 9.8498 8.6565 38 V 4.3291 35.1140 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 39 6 1.0767 23.7959 36.7876 -Courier_New.ttf 26 ` 9.8498 8.6565 40 w 12.6187 32.7502 25.2097 -Courier_New.ttf 26 ` 9.8498 8.6565 41 T 4.4703 26.8590 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 42 M 3.9943 34.5367 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 43 G 3.9289 29.5621 34.4140 -Courier_New.ttf 26 ` 9.8498 8.6565 44 b 1.7204 29.8826 36.5505 -Courier_New.ttf 26 ` 9.8498 8.6565 45 9 1.5892 22.4193 36.7876 -Courier_New.ttf 26 ` 9.8498 8.6565 46 ; 12.2560 12.8068 30.9570 -Courier_New.ttf 26 ` 9.8498 8.6565 47 D 4.1646 28.4394 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 48 L 4.2730 28.2727 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 49 y 12.5075 29.3121 36.2527 -Courier_New.ttf 26 ` 9.8498 8.6565 50 ‘ 1.6692 12.7529 17.2297 -Courier_New.ttf 26 ` 9.8498 8.6565 51 \ -1.2066 24.6392 44.3865 -Courier_New.ttf 26 ` 9.8498 8.6565 52 R 4.6456 30.7070 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 53 < 5.4923 28.0000 31.5797 -Courier_New.ttf 26 ` 9.8498 8.6565 54 4 1.8555 22.3232 35.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 55 8 1.5330 21.3094 36.7876 -Courier_New.ttf 26 ` 9.8498 8.6565 56 0 1.4517 23.6959 36.7876 -Courier_New.ttf 26 ` 9.8498 8.6565 57 A 4.1160 37.1505 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 58 E 4.2980 27.3234 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 59 B 4.3277 28.4167 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 60 v 12.6661 32.1252 25.2097 -Courier_New.ttf 26 ` 9.8498 8.6565 61 k 1.6619 26.6529 35.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 62 J 4.3329 28.6766 34.1640 -Courier_New.ttf 26 ` 9.8498 8.6565 63 U 4.3136 31.3964 34.1640 -Courier_New.ttf 26 ` 9.8498 8.6565 64 j 0.3986 18.4230 48.2928 -Courier_New.ttf 26 ` 9.8498 8.6565 65 ( 1.7601 8.4065 43.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 66 7 1.6755 22.0027 35.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 67 § 1.7974 27.1696 39.8097 -Courier_New.ttf 26 ` 9.8498 8.6565 68 $ -1.2316 21.8261 44.3865 -Courier_New.ttf 26 ` 9.8498 8.6565 69 € 4.0972 31.2297 34.4140 -Courier_New.ttf 26 ` 9.8498 8.6565 70 / -1.7882 24.6392 44.3865 -Courier_New.ttf 26 ` 9.8498 8.6565 71 C 3.8932 28.2727 34.4140 -Courier_New.ttf 26 ` 9.8498 8.6565 72 * 1.7225 22.0860 21.9800 -Courier_New.ttf 26 ` 9.8498 8.6565 73 ” 2.1200 24.6392 15.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 74 ? 3.6650 21.0594 34.9406 -Courier_New.ttf 26 ` 9.8498 8.6565 75 { 1.7583 11.7324 43.3121 -Courier_New.ttf 26 ` 9.8498 8.6565 76 } 1.4153 11.7324 43.3121 -Courier_New.ttf 26 ` 9.8498 8.6565 77 , 29.2714 11.5597 17.2297 -Courier_New.ttf 26 ` 9.8498 8.6565 78 I 4.2393 22.0860 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 79 ° -4.4548 15.7638 15.7638 -Courier_New.ttf 26 ` 9.8498 8.6565 80 K 4.1464 31.2297 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 81 H 4.1456 28.4333 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 82 q 11.9750 29.1932 36.6565 -Courier_New.ttf 26 ` 9.8498 8.6565 83 & 7.2945 21.9800 31.2070 -Courier_New.ttf 26 ` 9.8498 8.6565 84 ’ 1.8040 12.7529 17.2297 -Courier_New.ttf 26 ` 9.8498 8.6565 85 [ 1.9517 9.5998 43.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 86 - 19.3397 24.8892 3.2297 -Courier_New.ttf 26 ` 9.8498 8.6565 87 Y 4.2668 29.3410 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 88 Q 3.7495 30.3865 40.7840 -Courier_New.ttf 26 ` 9.8498 8.6565 89 " 1.6488 19.6995 16.0365 -Courier_New.ttf 26 ` 9.8498 8.6565 90 ! 1.8996 6.4594 36.5505 -Courier_New.ttf 26 ` 9.8498 8.6565 91 x 12.6720 29.1932 25.2097 -Courier_New.ttf 26 ` 9.8498 8.6565 92 ) 1.9712 8.4065 43.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 93 = 15.4221 29.1932 11.3097 -Courier_New.ttf 26 ` 9.8498 8.6565 94 + 6.3452 26.8590 29.2455 -Courier_New.ttf 26 ` 9.8498 8.6565 95 X 4.2601 30.9092 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 96 » 12.2890 28.7766 26.8068 -Courier_New.ttf 26 ` 9.8498 8.6565 97 ' 1.7314 7.9027 17.2297 -Courier_New.ttf 26 ` 9.8498 8.6565 98 ¢ -0.0589 20.7867 38.0998 -Courier_New.ttf 26 ` 9.8498 8.6565 99 Z 4.3601 23.0959 33.5935 -Courier_New.ttf 26 ` 9.8498 8.6565 100 > 5.3040 28.0000 31.5797 -Courier_New.ttf 26 ` 9.8498 8.6565 101 ® 3.1126 34.7867 35.0594 -Courier_New.ttf 26 ` 9.8498 8.6565 102 © 3.4880 35.0594 34.7867 -Courier_New.ttf 26 ` 9.8498 8.6565 103 ] 1.8996 9.5998 43.1932 -Courier_New.ttf 26 ` 9.8498 8.6565 104 é 0.0000 27.4295 38.4203 -Courier_New.ttf 26 ` 9.8498 8.6565 105 z 12.6231 23.7959 25.2097 -Courier_New.ttf 26 ` 9.8498 8.6565 106 _ 51.9030 35.0594 2.3865 -Courier_New.ttf 26 ` 9.8498 8.6565 107 ¥ 4.5364 29.6744 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 1 t 3.8075 26.2362 34.6034 -Courier_New.ttf 27 @ 22.0800 40.4029 2 h 1.3730 29.6326 35.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 3 a 11.7271 26.9256 26.1840 -Courier_New.ttf 27 @ 22.0800 40.4029 4 n 11.8552 29.2061 25.6135 -Courier_New.ttf 27 @ 22.0800 40.4029 5 P 3.6699 26.0529 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 6 o 11.4500 26.8068 26.1840 -Courier_New.ttf 27 @ 22.0800 40.4029 7 e 11.5399 27.4295 26.1840 -Courier_New.ttf 27 @ 22.0800 40.4029 8 : 12.1362 8.6565 25.7802 -Courier_New.ttf 27 @ 22.0800 40.4029 9 r 11.8203 26.8295 25.6135 -Courier_New.ttf 27 @ 22.0800 40.4029 10 l 1.4814 24.4725 35.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 11 i 0.2819 24.4725 37.2498 -Courier_New.ttf 27 @ 22.0800 40.4029 12 1 0.0218 22.8527 37.5770 -Courier_New.ttf 27 @ 22.0800 40.4029 13 | 1.7732 2.3865 43.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 14 N 3.7895 31.3964 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 15 f 1.1031 25.4696 35.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 16 g 11.5679 27.8462 36.6565 -Courier_New.ttf 27 @ 22.0800 40.4029 17 d 1.5471 30.1138 36.5505 -Courier_New.ttf 27 @ 22.0800 40.4029 18 W 3.9610 32.5836 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 19 s 11.9233 23.0959 26.1840 -Courier_New.ttf 27 @ 22.0800 40.4029 20 c 11.9792 26.6529 26.1840 -Courier_New.ttf 27 @ 22.0800 40.4029 21 u 12.0464 29.6326 25.7802 -Courier_New.ttf 27 @ 22.0800 40.4029 22 3 1.1934 23.6959 36.7876 -Courier_New.ttf 27 @ 22.0800 40.4029 23 ~ 16.4176 24.8892 8.5732 -Courier_New.ttf 27 @ 22.0800 40.4029 24 # -1.3197 25.0657 42.1962 -Courier_New.ttf 27 @ 22.0800 40.4029 25 O 3.5473 29.1932 34.4140 -Courier_New.ttf 27 @ 22.0800 40.4029 26 ` -0.5416 9.8498 8.6565 -Courier_New.ttf 27 @ 22.0800 40.4029 27 @ -0.1146 22.0800 40.4029 -Courier_New.ttf 27 @ 22.0800 40.4029 28 F 3.9824 27.3234 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 29 S 3.3226 24.5392 34.4140 -Courier_New.ttf 27 @ 22.0800 40.4029 30 p 11.5399 29.8826 36.6565 -Courier_New.ttf 27 @ 22.0800 40.4029 31 “ 1.3945 24.6392 15.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 32 % 1.4268 24.3664 36.5505 -Courier_New.ttf 27 @ 22.0800 40.4029 33 £ 3.5552 26.2840 33.8435 -Courier_New.ttf 27 @ 22.0800 40.4029 34 . 29.9696 8.8232 7.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 35 2 0.9750 23.1732 36.3838 -Courier_New.ttf 27 @ 22.0800 40.4029 36 5 1.5939 23.7437 36.3838 -Courier_New.ttf 27 @ 22.0800 40.4029 37 m 11.9681 35.1594 25.6135 -Courier_New.ttf 27 @ 22.0800 40.4029 38 V 3.8751 35.1140 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 39 6 1.1741 23.7959 36.7876 -Courier_New.ttf 27 @ 22.0800 40.4029 40 w 12.1519 32.7502 25.2097 -Courier_New.ttf 27 @ 22.0800 40.4029 41 T 3.7258 26.8590 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 42 M 4.0078 34.5367 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 43 G 3.7696 29.5621 34.4140 -Courier_New.ttf 27 @ 22.0800 40.4029 44 b 1.3001 29.8826 36.5505 -Courier_New.ttf 27 @ 22.0800 40.4029 45 9 0.9802 22.4193 36.7876 -Courier_New.ttf 27 @ 22.0800 40.4029 46 ; 12.2417 12.8068 30.9570 -Courier_New.ttf 27 @ 22.0800 40.4029 47 D 3.8500 28.4394 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 48 L 3.9479 28.2727 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 49 y 12.2051 29.3121 36.2527 -Courier_New.ttf 27 @ 22.0800 40.4029 50 ‘ 1.8660 12.7529 17.2297 -Courier_New.ttf 27 @ 22.0800 40.4029 51 \ -1.7707 24.6392 44.3865 -Courier_New.ttf 27 @ 22.0800 40.4029 52 R 3.7070 30.7070 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 53 < 5.0114 28.0000 31.5797 -Courier_New.ttf 27 @ 22.0800 40.4029 54 4 1.3229 22.3232 35.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 55 8 1.0062 21.3094 36.7876 -Courier_New.ttf 27 @ 22.0800 40.4029 56 0 0.9470 23.6959 36.7876 -Courier_New.ttf 27 @ 22.0800 40.4029 57 A 4.0935 37.1505 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 58 E 3.9460 27.3234 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 59 B 3.8640 28.4167 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 60 v 12.4684 32.1252 25.2097 -Courier_New.ttf 27 @ 22.0800 40.4029 61 k 1.5646 26.6529 35.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 62 J 3.5013 28.6766 34.1640 -Courier_New.ttf 27 @ 22.0800 40.4029 63 U 4.0454 31.3964 34.1640 -Courier_New.ttf 27 @ 22.0800 40.4029 64 j 0.4597 18.4230 48.2928 -Courier_New.ttf 27 @ 22.0800 40.4029 65 ( 1.2022 8.4065 43.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 66 7 1.6471 22.0027 35.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 67 § 1.5908 27.1696 39.8097 -Courier_New.ttf 27 @ 22.0800 40.4029 68 $ -1.2480 21.8261 44.3865 -Courier_New.ttf 27 @ 22.0800 40.4029 69 € 3.6751 31.2297 34.4140 -Courier_New.ttf 27 @ 22.0800 40.4029 70 / -2.5970 24.6392 44.3865 -Courier_New.ttf 27 @ 22.0800 40.4029 71 C 3.2340 28.2727 34.4140 -Courier_New.ttf 27 @ 22.0800 40.4029 72 * 1.2702 22.0860 21.9800 -Courier_New.ttf 27 @ 22.0800 40.4029 73 ” 1.4601 24.6392 15.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 74 ? 3.3620 21.0594 34.9406 -Courier_New.ttf 27 @ 22.0800 40.4029 75 { 0.7758 11.7324 43.3121 -Courier_New.ttf 27 @ 22.0800 40.4029 76 } 1.2174 11.7324 43.3121 -Courier_New.ttf 27 @ 22.0800 40.4029 77 , 29.0872 11.5597 17.2297 -Courier_New.ttf 27 @ 22.0800 40.4029 78 I 3.6769 22.0860 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 79 ° -5.0358 15.7638 15.7638 -Courier_New.ttf 27 @ 22.0800 40.4029 80 K 3.6879 31.2297 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 81 H 3.7608 28.4333 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 82 q 11.7731 29.1932 36.6565 -Courier_New.ttf 27 @ 22.0800 40.4029 83 & 6.9503 21.9800 31.2070 -Courier_New.ttf 27 @ 22.0800 40.4029 84 ’ 1.3079 12.7529 17.2297 -Courier_New.ttf 27 @ 22.0800 40.4029 85 [ 1.7474 9.5998 43.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 86 - 18.9585 24.8892 3.2297 -Courier_New.ttf 27 @ 22.0800 40.4029 87 Y 3.9070 29.3410 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 88 Q 3.4356 30.3865 40.7840 -Courier_New.ttf 27 @ 22.0800 40.4029 89 " 1.5933 19.6995 16.0365 -Courier_New.ttf 27 @ 22.0800 40.4029 90 ! 1.3817 6.4594 36.5505 -Courier_New.ttf 27 @ 22.0800 40.4029 91 x 12.0596 29.1932 25.2097 -Courier_New.ttf 27 @ 22.0800 40.4029 92 ) 1.5815 8.4065 43.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 93 = 14.6516 29.1932 11.3097 -Courier_New.ttf 27 @ 22.0800 40.4029 94 + 6.3366 26.8590 29.2455 -Courier_New.ttf 27 @ 22.0800 40.4029 95 X 3.7471 30.9092 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 96 » 11.7400 28.7766 26.8068 -Courier_New.ttf 27 @ 22.0800 40.4029 97 ' 1.3581 7.9027 17.2297 -Courier_New.ttf 27 @ 22.0800 40.4029 98 ¢ -0.6024 20.7867 38.0998 -Courier_New.ttf 27 @ 22.0800 40.4029 99 Z 3.3729 23.0959 33.5935 -Courier_New.ttf 27 @ 22.0800 40.4029 100 > 5.0001 28.0000 31.5797 -Courier_New.ttf 27 @ 22.0800 40.4029 101 ® 2.8282 34.7867 35.0594 -Courier_New.ttf 27 @ 22.0800 40.4029 102 © 3.1958 35.0594 34.7867 -Courier_New.ttf 27 @ 22.0800 40.4029 103 ] 1.7729 9.5998 43.1932 -Courier_New.ttf 27 @ 22.0800 40.4029 104 é -0.4122 27.4295 38.4203 -Courier_New.ttf 27 @ 22.0800 40.4029 105 z 12.1946 23.7959 25.2097 -Courier_New.ttf 27 @ 22.0800 40.4029 106 _ 51.1930 35.0594 2.3865 -Courier_New.ttf 27 @ 22.0800 40.4029 107 ¥ 3.8562 29.6744 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 1 t -0.1659 26.2362 34.6034 -Courier_New.ttf 28 F 27.3234 33.5935 2 h -2.3305 29.6326 35.9800 -Courier_New.ttf 28 F 27.3234 33.5935 3 a 7.7486 26.9256 26.1840 -Courier_New.ttf 28 F 27.3234 33.5935 4 n 8.2367 29.2061 25.6135 -Courier_New.ttf 28 F 27.3234 33.5935 5 P 0.1839 26.0529 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 6 o 7.9536 26.8068 26.1840 -Courier_New.ttf 28 F 27.3234 33.5935 7 e 8.0915 27.4295 26.1840 -Courier_New.ttf 28 F 27.3234 33.5935 8 : 8.4311 8.6565 25.7802 -Courier_New.ttf 28 F 27.3234 33.5935 9 r 7.8734 26.8295 25.6135 -Courier_New.ttf 28 F 27.3234 33.5935 10 l -2.4230 24.4725 35.9800 -Courier_New.ttf 28 F 27.3234 33.5935 11 i -3.5841 24.4725 37.2498 -Courier_New.ttf 28 F 27.3234 33.5935 12 1 -4.0972 22.8527 37.5770 -Courier_New.ttf 28 F 27.3234 33.5935 13 | -2.1811 2.3865 43.1932 -Courier_New.ttf 28 F 27.3234 33.5935 14 N -0.1071 31.3964 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 15 f -2.2858 25.4696 35.9800 -Courier_New.ttf 28 F 27.3234 33.5935 16 g 8.0332 27.8462 36.6565 -Courier_New.ttf 28 F 27.3234 33.5935 17 d -2.1136 30.1138 36.5505 -Courier_New.ttf 28 F 27.3234 33.5935 18 W -0.2696 32.5836 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 19 s 7.9762 23.0959 26.1840 -Courier_New.ttf 28 F 27.3234 33.5935 20 c 8.2503 26.6529 26.1840 -Courier_New.ttf 28 F 27.3234 33.5935 21 u 8.5604 29.6326 25.7802 -Courier_New.ttf 28 F 27.3234 33.5935 22 3 -2.7037 23.6959 36.7876 -Courier_New.ttf 28 F 27.3234 33.5935 23 ~ 12.5340 24.8892 8.5732 -Courier_New.ttf 28 F 27.3234 33.5935 24 # -4.7158 25.0657 42.1962 -Courier_New.ttf 28 F 27.3234 33.5935 25 O -0.0618 29.1932 34.4140 -Courier_New.ttf 28 F 27.3234 33.5935 26 ` -4.4857 9.8498 8.6565 -Courier_New.ttf 28 F 27.3234 33.5935 27 @ -3.7344 22.0800 40.4029 -Courier_New.ttf 28 F 27.3234 33.5935 28 F 0.1385 27.3234 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 29 S -0.1583 24.5392 34.4140 -Courier_New.ttf 28 F 27.3234 33.5935 30 p 8.0601 29.8826 36.6565 -Courier_New.ttf 28 F 27.3234 33.5935 31 “ -2.4023 24.6392 15.1932 -Courier_New.ttf 28 F 27.3234 33.5935 32 % -2.3637 24.3664 36.5505 -Courier_New.ttf 28 F 27.3234 33.5935 33 £ -0.3278 26.2840 33.8435 -Courier_New.ttf 28 F 27.3234 33.5935 34 . 26.2497 8.8232 7.9800 -Courier_New.ttf 28 F 27.3234 33.5935 35 2 -2.9247 23.1732 36.3838 -Courier_New.ttf 28 F 27.3234 33.5935 36 5 -2.7569 23.7437 36.3838 -Courier_New.ttf 28 F 27.3234 33.5935 37 m 7.9800 35.1594 25.6135 -Courier_New.ttf 28 F 27.3234 33.5935 38 V 0.2016 35.1140 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 39 6 -2.5924 23.7959 36.7876 -Courier_New.ttf 28 F 27.3234 33.5935 40 w 8.5302 32.7502 25.2097 -Courier_New.ttf 28 F 27.3234 33.5935 41 T -0.0287 26.8590 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 42 M -0.1789 34.5367 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 43 G -0.3643 29.5621 34.4140 -Courier_New.ttf 28 F 27.3234 33.5935 44 b -2.1940 29.8826 36.5505 -Courier_New.ttf 28 F 27.3234 33.5935 45 9 -2.5932 22.4193 36.7876 -Courier_New.ttf 28 F 27.3234 33.5935 46 ; 8.4478 12.8068 30.9570 -Courier_New.ttf 28 F 27.3234 33.5935 47 D -0.2651 28.4394 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 48 L 0.0877 28.2727 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 49 y 8.3032 29.3121 36.2527 -Courier_New.ttf 28 F 27.3234 33.5935 50 ‘ -2.2531 12.7529 17.2297 -Courier_New.ttf 28 F 27.3234 33.5935 51 \ -5.4656 24.6392 44.3865 -Courier_New.ttf 28 F 27.3234 33.5935 52 R 0.0389 30.7070 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 53 < 1.5596 28.0000 31.5797 -Courier_New.ttf 28 F 27.3234 33.5935 54 4 -2.5080 22.3232 35.9800 -Courier_New.ttf 28 F 27.3234 33.5935 55 8 -2.6804 21.3094 36.7876 -Courier_New.ttf 28 F 27.3234 33.5935 56 0 -2.7806 23.6959 36.7876 -Courier_New.ttf 28 F 27.3234 33.5935 57 A -0.0032 37.1505 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 58 E 0.1371 27.3234 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 59 B 0.2678 28.4167 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 60 v 8.5132 32.1252 25.2097 -Courier_New.ttf 28 F 27.3234 33.5935 61 k -2.1422 26.6529 35.9800 -Courier_New.ttf 28 F 27.3234 33.5935 62 J 0.1787 28.6766 34.1640 -Courier_New.ttf 28 F 27.3234 33.5935 63 U -0.1266 31.3964 34.1640 -Courier_New.ttf 28 F 27.3234 33.5935 64 j -3.6550 18.4230 48.2928 -Courier_New.ttf 28 F 27.3234 33.5935 65 ( -2.1443 8.4065 43.1932 -Courier_New.ttf 28 F 27.3234 33.5935 66 7 -2.4879 22.0027 35.9800 -Courier_New.ttf 28 F 27.3234 33.5935 67 § -2.3649 27.1696 39.8097 -Courier_New.ttf 28 F 27.3234 33.5935 68 $ -5.3686 21.8261 44.3865 -Courier_New.ttf 28 F 27.3234 33.5935 69 € -0.3506 31.2297 34.4140 -Courier_New.ttf 28 F 27.3234 33.5935 70 / -6.1006 24.6392 44.3865 -Courier_New.ttf 28 F 27.3234 33.5935 71 C -0.0918 28.2727 34.4140 -Courier_New.ttf 28 F 27.3234 33.5935 72 * -2.3049 22.0860 21.9800 -Courier_New.ttf 28 F 27.3234 33.5935 73 ” -2.3805 24.6392 15.1932 -Courier_New.ttf 28 F 27.3234 33.5935 74 ? -0.7498 21.0594 34.9406 -Courier_New.ttf 28 F 27.3234 33.5935 75 { -2.8380 11.7324 43.3121 -Courier_New.ttf 28 F 27.3234 33.5935 76 } -2.9881 11.7324 43.3121 -Courier_New.ttf 28 F 27.3234 33.5935 77 , 25.1421 11.5597 17.2297 -Courier_New.ttf 28 F 27.3234 33.5935 78 I -0.1801 22.0860 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 79 ° -8.7500 15.7638 15.7638 -Courier_New.ttf 28 F 27.3234 33.5935 80 K -0.0847 31.2297 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 81 H -0.0167 28.4333 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 82 q 7.8384 29.1932 36.6565 -Courier_New.ttf 28 F 27.3234 33.5935 83 & 2.9487 21.9800 31.2070 -Courier_New.ttf 28 F 27.3234 33.5935 84 ’ -2.5522 12.7529 17.2297 -Courier_New.ttf 28 F 27.3234 33.5935 85 [ -2.3527 9.5998 43.1932 -Courier_New.ttf 28 F 27.3234 33.5935 86 - 15.0178 24.8892 3.2297 -Courier_New.ttf 28 F 27.3234 33.5935 87 Y -0.1100 29.3410 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 88 Q -0.3798 30.3865 40.7840 -Courier_New.ttf 28 F 27.3234 33.5935 89 " -2.3924 19.6995 16.0365 -Courier_New.ttf 28 F 27.3234 33.5935 90 ! -2.3722 6.4594 36.5505 -Courier_New.ttf 28 F 27.3234 33.5935 91 x 8.1895 29.1932 25.2097 -Courier_New.ttf 28 F 27.3234 33.5935 92 ) -2.6464 8.4065 43.1932 -Courier_New.ttf 28 F 27.3234 33.5935 93 = 10.8558 29.1932 11.3097 -Courier_New.ttf 28 F 27.3234 33.5935 94 + 2.5727 26.8590 29.2455 -Courier_New.ttf 28 F 27.3234 33.5935 95 X 0.1504 30.9092 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 96 » 7.9622 29.5432 26.8068 -Courier_New.ttf 28 F 27.3234 33.5935 97 ' -2.3601 7.9027 17.2297 -Courier_New.ttf 28 F 27.3234 33.5935 98 ¢ -4.9222 20.7867 38.0998 -Courier_New.ttf 28 F 27.3234 33.5935 99 Z -0.0854 23.0959 33.5935 -Courier_New.ttf 28 F 27.3234 33.5935 100 > 1.1950 28.0000 31.5797 -Courier_New.ttf 28 F 27.3234 33.5935 101 ® -1.0805 34.7867 35.0594 -Courier_New.ttf 28 F 27.3234 33.5935 102 © -0.5343 35.0594 34.7867 -Courier_New.ttf 28 F 27.3234 33.5935 103 ] -2.2578 9.5998 43.1932 -Courier_New.ttf 28 F 27.3234 33.5935 104 é -3.9118 27.4295 38.4203 -Courier_New.ttf 28 F 27.3234 33.5935 105 z 8.3083 23.7959 25.2097 -Courier_New.ttf 28 F 27.3234 33.5935 106 _ 47.5078 35.0594 2.3865 -Courier_New.ttf 28 F 27.3234 33.5935 107 ¥ 0.0189 29.6744 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 1 t -0.3927 26.2362 34.6034 -Courier_New.ttf 29 S 24.5392 34.4140 2 h -2.1683 29.6326 35.9800 -Courier_New.ttf 29 S 24.5392 34.4140 3 a 8.4982 26.9256 26.1840 -Courier_New.ttf 29 S 24.5392 34.4140 4 n 8.2584 29.2061 25.6135 -Courier_New.ttf 29 S 24.5392 34.4140 5 P 0.2141 26.0529 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 6 o 8.2167 26.8068 26.1840 -Courier_New.ttf 29 S 24.5392 34.4140 7 e 8.4735 27.4295 26.1840 -Courier_New.ttf 29 S 24.5392 34.4140 8 : 8.6320 8.6565 25.7802 -Courier_New.ttf 29 S 24.5392 34.4140 9 r 7.8861 26.8295 25.6135 -Courier_New.ttf 29 S 24.5392 34.4140 10 l -2.4133 24.4725 35.9800 -Courier_New.ttf 29 S 24.5392 34.4140 11 i -3.4480 24.4725 37.2498 -Courier_New.ttf 29 S 24.5392 34.4140 12 1 -3.7336 22.8527 37.5770 -Courier_New.ttf 29 S 24.5392 34.4140 13 | -2.1554 2.3865 43.1932 -Courier_New.ttf 29 S 24.5392 34.4140 14 N 0.3909 31.3964 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 15 f -2.0779 25.4696 35.9800 -Courier_New.ttf 29 S 24.5392 34.4140 16 g 8.3122 27.8462 36.6565 -Courier_New.ttf 29 S 24.5392 34.4140 17 d -2.4460 30.1138 36.5505 -Courier_New.ttf 29 S 24.5392 34.4140 18 W 0.2115 32.5836 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 19 s 8.3852 23.0959 26.1840 -Courier_New.ttf 29 S 24.5392 34.4140 20 c 8.2096 26.6529 26.1840 -Courier_New.ttf 29 S 24.5392 34.4140 21 u 8.7223 29.6326 25.7802 -Courier_New.ttf 29 S 24.5392 34.4140 22 3 -2.4987 23.6959 36.7876 -Courier_New.ttf 29 S 24.5392 34.4140 23 ~ 12.6144 24.8892 8.5732 -Courier_New.ttf 29 S 24.5392 34.4140 24 # -4.6401 25.0657 42.1962 -Courier_New.ttf 29 S 24.5392 34.4140 25 O 0.0097 29.1932 34.4140 -Courier_New.ttf 29 S 24.5392 34.4140 26 ` -4.1050 9.8498 8.6565 -Courier_New.ttf 29 S 24.5392 34.4140 27 @ -3.5927 22.0800 40.4029 -Courier_New.ttf 29 S 24.5392 34.4140 28 F 0.1661 27.3234 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 29 S 0.0909 24.5392 34.4140 -Courier_New.ttf 29 S 24.5392 34.4140 30 p 8.3619 29.8826 36.6565 -Courier_New.ttf 29 S 24.5392 34.4140 31 “ -2.0105 24.6392 15.1932 -Courier_New.ttf 29 S 24.5392 34.4140 32 % -2.1365 24.3664 36.5505 -Courier_New.ttf 29 S 24.5392 34.4140 33 £ -0.1243 26.2840 33.8435 -Courier_New.ttf 29 S 24.5392 34.4140 34 . 26.5197 8.8232 7.9800 -Courier_New.ttf 29 S 24.5392 34.4140 35 2 -2.5820 23.1732 36.3838 -Courier_New.ttf 29 S 24.5392 34.4140 36 5 -2.3931 23.7437 36.3838 -Courier_New.ttf 29 S 24.5392 34.4140 37 m 8.1405 35.1594 25.6135 -Courier_New.ttf 29 S 24.5392 34.4140 38 V 0.4903 35.1140 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 39 6 -2.7685 23.7959 36.7876 -Courier_New.ttf 29 S 24.5392 34.4140 40 w 8.6481 32.7502 25.2097 -Courier_New.ttf 29 S 24.5392 34.4140 41 T 0.3124 26.8590 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 42 M 0.1740 34.5367 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 43 G 0.0027 29.5621 34.4140 -Courier_New.ttf 29 S 24.5392 34.4140 44 b -2.4855 29.8826 36.5505 -Courier_New.ttf 29 S 24.5392 34.4140 45 9 -2.2472 22.4193 36.7876 -Courier_New.ttf 29 S 24.5392 34.4140 46 ; 8.8906 12.8068 30.9570 -Courier_New.ttf 29 S 24.5392 34.4140 47 D 0.1126 28.4394 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 48 L 0.1615 28.2727 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 49 y 8.5439 29.3121 36.2527 -Courier_New.ttf 29 S 24.5392 34.4140 50 ‘ -2.1500 12.7529 17.2297 -Courier_New.ttf 29 S 24.5392 34.4140 51 \ -5.5404 24.6392 44.3865 -Courier_New.ttf 29 S 24.5392 34.4140 52 R 0.1786 30.7070 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 53 < 1.3646 28.0000 31.5797 -Courier_New.ttf 29 S 24.5392 34.4140 54 4 -2.0864 22.3232 35.9800 -Courier_New.ttf 29 S 24.5392 34.4140 55 8 -2.5462 21.3094 36.7876 -Courier_New.ttf 29 S 24.5392 34.4140 56 0 -2.4306 23.6959 36.7876 -Courier_New.ttf 29 S 24.5392 34.4140 57 A -0.0030 37.1505 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 58 E 0.3560 27.3234 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 59 B 0.3550 28.4167 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 60 v 8.4540 32.1252 25.2097 -Courier_New.ttf 29 S 24.5392 34.4140 61 k -1.9813 26.6529 35.9800 -Courier_New.ttf 29 S 24.5392 34.4140 62 J 0.1310 28.6766 34.1640 -Courier_New.ttf 29 S 24.5392 34.4140 63 U 0.3001 31.3964 34.1640 -Courier_New.ttf 29 S 24.5392 34.4140 64 j -3.8321 18.4230 48.2928 -Courier_New.ttf 29 S 24.5392 34.4140 65 ( -2.3932 8.4065 43.1932 -Courier_New.ttf 29 S 24.5392 34.4140 66 7 -2.0059 22.0027 35.9800 -Courier_New.ttf 29 S 24.5392 34.4140 67 § -2.1773 27.1696 39.8097 -Courier_New.ttf 29 S 24.5392 34.4140 68 $ -5.3230 21.8261 44.3865 -Courier_New.ttf 29 S 24.5392 34.4140 69 € -0.0280 31.2297 34.4140 -Courier_New.ttf 29 S 24.5392 34.4140 70 / -5.3942 24.6392 44.3865 -Courier_New.ttf 29 S 24.5392 34.4140 71 C -0.2925 28.2727 34.4140 -Courier_New.ttf 29 S 24.5392 34.4140 72 * -2.0792 22.0860 21.9800 -Courier_New.ttf 29 S 24.5392 34.4140 73 ” -2.3575 24.6392 15.1932 -Courier_New.ttf 29 S 24.5392 34.4140 74 ? -0.4663 21.0594 34.9406 -Courier_New.ttf 29 S 24.5392 34.4140 75 { -2.3967 11.7324 43.3121 -Courier_New.ttf 29 S 24.5392 34.4140 76 } -2.5943 11.7324 43.3121 -Courier_New.ttf 29 S 24.5392 34.4140 77 , 25.2273 11.5597 17.2297 -Courier_New.ttf 29 S 24.5392 34.4140 78 I 0.4626 22.0860 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 79 ° -8.6146 15.7638 15.7638 -Courier_New.ttf 29 S 24.5392 34.4140 80 K 0.6725 31.2297 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 81 H 0.0998 28.4333 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 82 q 8.4223 29.1932 36.6565 -Courier_New.ttf 29 S 24.5392 34.4140 83 & 3.4111 21.9800 31.2070 -Courier_New.ttf 29 S 24.5392 34.4140 84 ’ -1.9182 12.7529 17.2297 -Courier_New.ttf 29 S 24.5392 34.4140 85 [ -1.7958 9.5998 43.1932 -Courier_New.ttf 29 S 24.5392 34.4140 86 - 15.2365 24.8892 3.2297 -Courier_New.ttf 29 S 24.5392 34.4140 87 Y -0.1823 29.3410 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 88 Q 0.0251 30.3865 40.7840 -Courier_New.ttf 29 S 24.5392 34.4140 89 " -2.2093 19.6995 16.0365 -Courier_New.ttf 29 S 24.5392 34.4140 90 ! -1.9427 6.4594 36.5505 -Courier_New.ttf 29 S 24.5392 34.4140 91 x 8.5564 29.1932 25.2097 -Courier_New.ttf 29 S 24.5392 34.4140 92 ) -2.2012 8.4065 43.1932 -Courier_New.ttf 29 S 24.5392 34.4140 93 = 10.9053 29.1932 11.3097 -Courier_New.ttf 29 S 24.5392 34.4140 94 + 2.9858 26.8590 29.2455 -Courier_New.ttf 29 S 24.5392 34.4140 95 X 0.2060 30.9092 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 96 » 8.1456 29.5432 26.8068 -Courier_New.ttf 29 S 24.5392 34.4140 97 ' -1.7798 7.9027 17.2297 -Courier_New.ttf 29 S 24.5392 34.4140 98 ¢ -4.3373 20.7867 38.0998 -Courier_New.ttf 29 S 24.5392 34.4140 99 Z 0.1174 23.0959 33.5935 -Courier_New.ttf 29 S 24.5392 34.4140 100 > 1.4223 28.0000 31.5797 -Courier_New.ttf 29 S 24.5392 34.4140 101 ® -0.9009 34.7867 35.0594 -Courier_New.ttf 29 S 24.5392 34.4140 102 © -0.5529 35.0594 34.7867 -Courier_New.ttf 29 S 24.5392 34.4140 103 ] -2.0480 9.5998 43.1932 -Courier_New.ttf 29 S 24.5392 34.4140 104 é -3.9920 27.4295 38.4203 -Courier_New.ttf 29 S 24.5392 34.4140 105 z 8.8150 23.7959 25.2097 -Courier_New.ttf 29 S 24.5392 34.4140 106 _ 47.7193 35.0594 2.3865 -Courier_New.ttf 29 S 24.5392 34.4140 107 ¥ 0.4967 29.6744 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 1 t -8.3374 26.2362 34.6034 -Courier_New.ttf 30 p 29.8826 36.6565 2 h -10.3456 29.6326 35.9800 -Courier_New.ttf 30 p 29.8826 36.6565 3 a -0.3823 26.9256 26.1840 -Courier_New.ttf 30 p 29.8826 36.6565 4 n 0.0464 29.2061 25.6135 -Courier_New.ttf 30 p 29.8826 36.6565 5 P -7.9418 26.0529 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 6 o -0.0306 26.8068 26.1840 -Courier_New.ttf 30 p 29.8826 36.6565 7 e 0.0686 27.4295 26.1840 -Courier_New.ttf 30 p 29.8826 36.6565 8 : 0.5969 8.6565 25.7802 -Courier_New.ttf 30 p 29.8826 36.6565 9 r 0.0214 26.8295 25.6135 -Courier_New.ttf 30 p 29.8826 36.6565 10 l -10.0492 24.4725 35.9800 -Courier_New.ttf 30 p 29.8826 36.6565 11 i -11.7365 24.4725 37.2498 -Courier_New.ttf 30 p 29.8826 36.6565 12 1 -11.8393 22.8527 37.5770 -Courier_New.ttf 30 p 29.8826 36.6565 13 | -10.1793 2.3865 43.1932 -Courier_New.ttf 30 p 29.8826 36.6565 14 N -8.2641 31.3964 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 15 f -10.0862 25.4696 35.9800 -Courier_New.ttf 30 p 29.8826 36.6565 16 g 0.0492 27.8462 36.6565 -Courier_New.ttf 30 p 29.8826 36.6565 17 d -10.3748 30.1138 36.5505 -Courier_New.ttf 30 p 29.8826 36.6565 18 W -8.2367 32.5836 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 19 s 0.2127 23.0959 26.1840 -Courier_New.ttf 30 p 29.8826 36.6565 20 c 0.0051 26.6529 26.1840 -Courier_New.ttf 30 p 29.8826 36.6565 21 u 0.3800 29.6326 25.7802 -Courier_New.ttf 30 p 29.8826 36.6565 22 3 -10.9203 23.6959 36.7876 -Courier_New.ttf 30 p 29.8826 36.6565 23 ~ 4.5916 24.8892 8.5732 -Courier_New.ttf 30 p 29.8826 36.6565 24 # -12.4801 25.0657 42.1962 -Courier_New.ttf 30 p 29.8826 36.6565 25 O -8.0855 29.1932 34.4140 -Courier_New.ttf 30 p 29.8826 36.6565 26 ` -12.4462 9.8498 8.6565 -Courier_New.ttf 30 p 29.8826 36.6565 27 @ -11.5969 22.0800 40.4029 -Courier_New.ttf 30 p 29.8826 36.6565 28 F -8.1861 27.3234 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 29 S -8.4186 24.5392 34.4140 -Courier_New.ttf 30 p 29.8826 36.6565 30 p -0.2423 29.8826 36.6565 -Courier_New.ttf 30 p 29.8826 36.6565 31 “ -10.3637 24.6392 15.1932 -Courier_New.ttf 30 p 29.8826 36.6565 32 % -10.5492 24.3664 36.5505 -Courier_New.ttf 30 p 29.8826 36.6565 33 £ -7.9583 26.2840 33.8435 -Courier_New.ttf 30 p 29.8826 36.6565 34 . 17.9557 8.8232 7.9800 -Courier_New.ttf 30 p 29.8826 36.6565 35 2 -10.8736 23.1732 36.3838 -Courier_New.ttf 30 p 29.8826 36.6565 36 5 -10.4730 23.7437 36.3838 -Courier_New.ttf 30 p 29.8826 36.6565 37 m -0.0643 35.1594 25.6135 -Courier_New.ttf 30 p 29.8826 36.6565 38 V -8.1413 35.1140 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 39 6 -10.7643 23.7959 36.7876 -Courier_New.ttf 30 p 29.8826 36.6565 40 w 0.2341 32.7502 25.2097 -Courier_New.ttf 30 p 29.8826 36.6565 41 T -7.8558 26.8590 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 42 M -8.1146 34.5367 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 43 G -8.2930 29.5621 34.4140 -Courier_New.ttf 30 p 29.8826 36.6565 44 b -10.2891 29.8826 36.5505 -Courier_New.ttf 30 p 29.8826 36.6565 45 9 -10.4042 22.4193 36.7876 -Courier_New.ttf 30 p 29.8826 36.6565 46 ; 0.4253 12.8068 30.9570 -Courier_New.ttf 30 p 29.8826 36.6565 47 D -7.6722 28.4394 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 48 L -8.0677 28.2727 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 49 y 0.3654 29.3121 36.2527 -Courier_New.ttf 30 p 29.8826 36.6565 50 ‘ -10.3979 12.7529 17.2297 -Courier_New.ttf 30 p 29.8826 36.6565 51 \ -13.8742 24.6392 44.3865 -Courier_New.ttf 30 p 29.8826 36.6565 52 R -8.1314 30.7070 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 53 < -6.6581 28.0000 31.5797 -Courier_New.ttf 30 p 29.8826 36.6565 54 4 -10.6063 22.3232 35.9800 -Courier_New.ttf 30 p 29.8826 36.6565 55 8 -10.6719 21.3094 36.7876 -Courier_New.ttf 30 p 29.8826 36.6565 56 0 -10.7949 23.6959 36.7876 -Courier_New.ttf 30 p 29.8826 36.6565 57 A -7.7267 37.1505 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 58 E -8.0619 27.3234 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 59 B -7.8173 28.4167 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 60 v 0.4224 32.1252 25.2097 -Courier_New.ttf 30 p 29.8826 36.6565 61 k -10.2611 26.6529 35.9800 -Courier_New.ttf 30 p 29.8826 36.6565 62 J -7.9073 28.6766 34.1640 -Courier_New.ttf 30 p 29.8826 36.6565 63 U -7.6887 31.3964 34.1640 -Courier_New.ttf 30 p 29.8826 36.6565 64 j -11.6987 18.4230 48.2928 -Courier_New.ttf 30 p 29.8826 36.6565 65 ( -10.3600 8.4065 43.1932 -Courier_New.ttf 30 p 29.8826 36.6565 66 7 -10.2208 22.0027 35.9800 -Courier_New.ttf 30 p 29.8826 36.6565 67 § -10.5081 27.1696 39.8097 -Courier_New.ttf 30 p 29.8826 36.6565 68 $ -13.4091 21.8261 44.3865 -Courier_New.ttf 30 p 29.8826 36.6565 69 € -8.1988 31.2297 34.4140 -Courier_New.ttf 30 p 29.8826 36.6565 70 / -13.7037 24.6392 44.3865 -Courier_New.ttf 30 p 29.8826 36.6565 71 C -8.2313 28.2727 34.4140 -Courier_New.ttf 30 p 29.8826 36.6565 72 * -10.2898 22.0860 21.9800 -Courier_New.ttf 30 p 29.8826 36.6565 73 ” -10.3184 24.6392 15.1932 -Courier_New.ttf 30 p 29.8826 36.6565 74 ? -8.7000 21.0594 34.9406 -Courier_New.ttf 30 p 29.8826 36.6565 75 { -10.4925 11.7324 43.3121 -Courier_New.ttf 30 p 29.8826 36.6565 76 } -10.1424 11.7324 43.3121 -Courier_New.ttf 30 p 29.8826 36.6565 77 , 16.9508 11.5597 17.2297 -Courier_New.ttf 30 p 29.8826 36.6565 78 I -7.9387 22.0860 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 79 ° -16.2030 15.7638 15.7638 -Courier_New.ttf 30 p 29.8826 36.6565 80 K -8.0874 31.2297 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 81 H -7.9610 28.4333 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 82 q 0.1524 29.1932 36.6565 -Courier_New.ttf 30 p 29.8826 36.6565 83 & -4.8857 21.9800 31.2070 -Courier_New.ttf 30 p 29.8826 36.6565 84 ’ -10.6177 12.7529 17.2297 -Courier_New.ttf 30 p 29.8826 36.6565 85 [ -10.3442 9.5998 43.1932 -Courier_New.ttf 30 p 29.8826 36.6565 86 - 7.2574 24.8892 3.2297 -Courier_New.ttf 30 p 29.8826 36.6565 87 Y -8.1568 29.3410 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 88 Q -8.1460 30.3865 40.7840 -Courier_New.ttf 30 p 29.8826 36.6565 89 " -10.1240 19.6995 16.0365 -Courier_New.ttf 30 p 29.8826 36.6565 90 ! -10.5561 6.4594 36.5505 -Courier_New.ttf 30 p 29.8826 36.6565 91 x 0.4368 29.1932 25.2097 -Courier_New.ttf 30 p 29.8826 36.6565 92 ) -10.2579 8.4065 43.1932 -Courier_New.ttf 30 p 29.8826 36.6565 93 = 2.8759 29.1932 11.3097 -Courier_New.ttf 30 p 29.8826 36.6565 94 + -5.1078 26.8590 29.2455 -Courier_New.ttf 30 p 29.8826 36.6565 95 X -8.0027 30.9092 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 96 » -0.0240 29.5432 26.8068 -Courier_New.ttf 30 p 29.8826 36.6565 97 ' -10.4844 7.9027 17.2297 -Courier_New.ttf 30 p 29.8826 36.6565 98 ¢ -12.5699 20.7867 38.0998 -Courier_New.ttf 30 p 29.8826 36.6565 99 Z -7.7636 23.0959 33.5935 -Courier_New.ttf 30 p 29.8826 36.6565 100 > -6.7015 28.0000 31.5797 -Courier_New.ttf 30 p 29.8826 36.6565 101 ® -9.0482 34.7867 35.0594 -Courier_New.ttf 30 p 29.8826 36.6565 102 © -8.7301 35.0594 34.7867 -Courier_New.ttf 30 p 29.8826 36.6565 103 ] -10.5910 9.5998 43.1932 -Courier_New.ttf 30 p 29.8826 36.6565 104 é -12.1120 27.4295 38.4203 -Courier_New.ttf 30 p 29.8826 36.6565 105 z 0.3492 23.7959 25.2097 -Courier_New.ttf 30 p 29.8826 36.6565 106 _ 39.7566 35.0594 2.3865 -Courier_New.ttf 30 p 29.8826 36.6565 107 ¥ -7.7603 29.6744 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 1 t 1.8554 26.2362 34.6034 -Courier_New.ttf 31 “ 24.6392 15.1932 2 h -0.2103 29.6326 35.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 3 a 10.7006 26.9256 26.1840 -Courier_New.ttf 31 “ 24.6392 15.1932 4 n 10.6480 29.2061 25.6135 -Courier_New.ttf 31 “ 24.6392 15.1932 5 P 2.3708 26.0529 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 6 o 10.4011 26.8068 26.1840 -Courier_New.ttf 31 “ 24.6392 15.1932 7 e 10.1051 27.4295 26.1840 -Courier_New.ttf 31 “ 24.6392 15.1932 8 : 11.0152 8.6565 25.7802 -Courier_New.ttf 31 “ 24.6392 15.1932 9 r 10.2353 26.8295 25.6135 -Courier_New.ttf 31 “ 24.6392 15.1932 10 l 0.0742 24.4725 35.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 11 i -1.2011 24.4725 37.2498 -Courier_New.ttf 31 “ 24.6392 15.1932 12 1 -1.2607 22.8527 37.5770 -Courier_New.ttf 31 “ 24.6392 15.1932 13 | -0.0514 2.3865 43.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 14 N 2.2038 31.3964 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 15 f 0.1508 25.4696 35.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 16 g 10.2452 27.8462 36.6565 -Courier_New.ttf 31 “ 24.6392 15.1932 17 d -0.3265 30.1138 36.5505 -Courier_New.ttf 31 “ 24.6392 15.1932 18 W 2.4424 32.5836 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 19 s 10.4938 23.0959 26.1840 -Courier_New.ttf 31 “ 24.6392 15.1932 20 c 10.4536 26.6529 26.1840 -Courier_New.ttf 31 “ 24.6392 15.1932 21 u 10.7227 29.6326 25.7802 -Courier_New.ttf 31 “ 24.6392 15.1932 22 3 -0.3769 23.6959 36.7876 -Courier_New.ttf 31 “ 24.6392 15.1932 23 ~ 14.8061 24.8892 8.5732 -Courier_New.ttf 31 “ 24.6392 15.1932 24 # -2.3652 25.0657 42.1962 -Courier_New.ttf 31 “ 24.6392 15.1932 25 O 1.9552 29.1932 34.4140 -Courier_New.ttf 31 “ 24.6392 15.1932 26 ` -1.5701 9.8498 8.6565 -Courier_New.ttf 31 “ 24.6392 15.1932 27 @ -1.5744 22.0800 40.4029 -Courier_New.ttf 31 “ 24.6392 15.1932 28 F 2.4509 27.3234 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 29 S 1.9325 24.5392 34.4140 -Courier_New.ttf 31 “ 24.6392 15.1932 30 p 10.3164 29.8826 36.6565 -Courier_New.ttf 31 “ 24.6392 15.1932 31 “ 0.1839 24.6392 15.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 32 % 0.3082 24.3664 36.5505 -Courier_New.ttf 31 “ 24.6392 15.1932 33 £ 1.8320 26.2840 33.8435 -Courier_New.ttf 31 “ 24.6392 15.1932 34 . 28.5737 8.8232 7.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 35 2 -0.5438 23.1732 36.3838 -Courier_New.ttf 31 “ 24.6392 15.1932 36 5 -0.0045 23.7437 36.3838 -Courier_New.ttf 31 “ 24.6392 15.1932 37 m 10.2678 35.1594 25.6135 -Courier_New.ttf 31 “ 24.6392 15.1932 38 V 2.6093 35.1140 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 39 6 -0.1132 23.7959 36.7876 -Courier_New.ttf 31 “ 24.6392 15.1932 40 w 10.6623 32.7502 25.2097 -Courier_New.ttf 31 “ 24.6392 15.1932 41 T 2.1980 26.8590 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 42 M 2.3231 34.5367 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 43 G 2.2327 29.5621 34.4140 -Courier_New.ttf 31 “ 24.6392 15.1932 44 b -0.1016 29.8826 36.5505 -Courier_New.ttf 31 “ 24.6392 15.1932 45 9 -0.2081 22.4193 36.7876 -Courier_New.ttf 31 “ 24.6392 15.1932 46 ; 10.6169 12.8068 30.9570 -Courier_New.ttf 31 “ 24.6392 15.1932 47 D 2.4357 28.4394 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 48 L 2.4573 28.2727 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 49 y 11.1173 29.3121 36.2527 -Courier_New.ttf 31 “ 24.6392 15.1932 50 ‘ -0.5240 12.7529 17.2297 -Courier_New.ttf 31 “ 24.6392 15.1932 51 \ -3.3992 24.6392 44.3865 -Courier_New.ttf 31 “ 24.6392 15.1932 52 R 2.4351 30.7070 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 53 < 3.5868 28.0000 31.5797 -Courier_New.ttf 31 “ 24.6392 15.1932 54 4 0.0754 22.3232 35.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 55 8 -0.2608 21.3094 36.7876 -Courier_New.ttf 31 “ 24.6392 15.1932 56 0 -0.7046 23.6959 36.7876 -Courier_New.ttf 31 “ 24.6392 15.1932 57 A 2.4691 37.1505 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 58 E 2.3778 27.3234 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 59 B 2.2609 28.4167 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 60 v 10.9275 32.1252 25.2097 -Courier_New.ttf 31 “ 24.6392 15.1932 61 k 0.0486 26.6529 35.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 62 J 2.4709 28.6766 34.1640 -Courier_New.ttf 31 “ 24.6392 15.1932 63 U 2.2571 31.3964 34.1640 -Courier_New.ttf 31 “ 24.6392 15.1932 64 j -1.6798 18.4230 48.2928 -Courier_New.ttf 31 “ 24.6392 15.1932 65 ( -0.2267 8.4065 43.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 66 7 -0.1774 22.0027 35.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 67 § 0.0966 27.1696 39.8097 -Courier_New.ttf 31 “ 24.6392 15.1932 68 $ -3.0658 21.8261 44.3865 -Courier_New.ttf 31 “ 24.6392 15.1932 69 € 2.0826 31.2297 34.4140 -Courier_New.ttf 31 “ 24.6392 15.1932 70 / -3.5653 24.6392 44.3865 -Courier_New.ttf 31 “ 24.6392 15.1932 71 C 2.3114 28.2727 34.4140 -Courier_New.ttf 31 “ 24.6392 15.1932 72 * -0.1269 22.0860 21.9800 -Courier_New.ttf 31 “ 24.6392 15.1932 73 ” -0.2317 24.6392 15.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 74 ? 1.6714 21.0594 34.9406 -Courier_New.ttf 31 “ 24.6392 15.1932 75 { -0.4357 11.7324 43.3121 -Courier_New.ttf 31 “ 24.6392 15.1932 76 } -0.2727 11.7324 43.3121 -Courier_New.ttf 31 “ 24.6392 15.1932 77 , 27.5334 11.5597 17.2297 -Courier_New.ttf 31 “ 24.6392 15.1932 78 I 2.5523 22.0860 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 79 ° -6.2070 15.7638 15.7638 -Courier_New.ttf 31 “ 24.6392 15.1932 80 K 2.2924 31.2297 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 81 H 2.3607 28.4333 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 82 q 10.1667 29.1932 36.6565 -Courier_New.ttf 31 “ 24.6392 15.1932 83 & 5.4982 21.9800 31.2070 -Courier_New.ttf 31 “ 24.6392 15.1932 84 ’ -0.0010 12.7529 17.2297 -Courier_New.ttf 31 “ 24.6392 15.1932 85 [ 0.0417 9.5998 43.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 86 - 17.4868 24.8892 3.2297 -Courier_New.ttf 31 “ 24.6392 15.1932 87 Y 2.4438 29.3410 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 88 Q 2.3166 30.3865 40.7840 -Courier_New.ttf 31 “ 24.6392 15.1932 89 " -0.1385 19.6995 16.0365 -Courier_New.ttf 31 “ 24.6392 15.1932 90 ! -0.1027 6.4594 36.5505 -Courier_New.ttf 31 “ 24.6392 15.1932 91 x 10.7105 29.1932 25.2097 -Courier_New.ttf 31 “ 24.6392 15.1932 92 ) 0.3113 8.4065 43.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 93 = 13.5677 29.1932 11.3097 -Courier_New.ttf 31 “ 24.6392 15.1932 94 + 5.1259 26.8590 29.2455 -Courier_New.ttf 31 “ 24.6392 15.1932 95 X 2.3851 30.9092 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 96 » 10.1778 28.7766 26.8068 -Courier_New.ttf 31 “ 24.6392 15.1932 97 ' 0.0608 7.9027 17.2297 -Courier_New.ttf 31 “ 24.6392 15.1932 98 ¢ -1.9872 20.7867 38.0998 -Courier_New.ttf 31 “ 24.6392 15.1932 99 Z 2.4541 23.0959 33.5935 -Courier_New.ttf 31 “ 24.6392 15.1932 100 > 3.6306 28.0000 31.5797 -Courier_New.ttf 31 “ 24.6392 15.1932 101 ® 1.6089 34.7867 35.0594 -Courier_New.ttf 31 “ 24.6392 15.1932 102 © 1.7221 35.0594 34.7867 -Courier_New.ttf 31 “ 24.6392 15.1932 103 ] 0.3379 9.5998 43.1932 -Courier_New.ttf 31 “ 24.6392 15.1932 104 é -2.1297 27.4295 38.4203 -Courier_New.ttf 31 “ 24.6392 15.1932 105 z 10.7216 23.7959 25.2097 -Courier_New.ttf 31 “ 24.6392 15.1932 106 _ 50.2009 35.0594 2.3865 -Courier_New.ttf 31 “ 24.6392 15.1932 107 ¥ 2.5561 29.6744 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 1 t 1.9202 26.2362 34.6034 -Courier_New.ttf 32 % 24.3664 36.5505 2 h 0.1371 29.6326 35.9800 -Courier_New.ttf 32 % 24.3664 36.5505 3 a 10.4791 26.9256 26.1840 -Courier_New.ttf 32 % 24.3664 36.5505 4 n 10.4333 29.2061 25.6135 -Courier_New.ttf 32 % 24.3664 36.5505 5 P 2.6937 26.0529 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 6 o 10.3210 26.8068 26.1840 -Courier_New.ttf 32 % 24.3664 36.5505 7 e 10.4693 27.4295 26.1840 -Courier_New.ttf 32 % 24.3664 36.5505 8 : 10.7293 8.6565 25.7802 -Courier_New.ttf 32 % 24.3664 36.5505 9 r 10.3858 26.8295 25.6135 -Courier_New.ttf 32 % 24.3664 36.5505 10 l 0.2753 24.4725 35.9800 -Courier_New.ttf 32 % 24.3664 36.5505 11 i -1.4044 24.4725 37.2498 -Courier_New.ttf 32 % 24.3664 36.5505 12 1 -1.5842 22.8527 37.5770 -Courier_New.ttf 32 % 24.3664 36.5505 13 | 0.3611 2.3865 43.1932 -Courier_New.ttf 32 % 24.3664 36.5505 14 N 2.4366 31.3964 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 15 f 0.0719 25.4696 35.9800 -Courier_New.ttf 32 % 24.3664 36.5505 16 g 10.4021 27.8462 36.6565 -Courier_New.ttf 32 % 24.3664 36.5505 17 d 0.0774 30.1138 36.5505 -Courier_New.ttf 32 % 24.3664 36.5505 18 W 2.4048 32.5836 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 19 s 10.4016 23.0959 26.1840 -Courier_New.ttf 32 % 24.3664 36.5505 20 c 10.3675 26.6529 26.1840 -Courier_New.ttf 32 % 24.3664 36.5505 21 u 10.9529 29.6326 25.7802 -Courier_New.ttf 32 % 24.3664 36.5505 22 3 -0.4122 23.6959 36.7876 -Courier_New.ttf 32 % 24.3664 36.5505 23 ~ 14.7020 24.8892 8.5732 -Courier_New.ttf 32 % 24.3664 36.5505 24 # -2.5633 25.0657 42.1962 -Courier_New.ttf 32 % 24.3664 36.5505 25 O 2.2079 29.1932 34.4140 -Courier_New.ttf 32 % 24.3664 36.5505 26 ` -1.7480 9.8498 8.6565 -Courier_New.ttf 32 % 24.3664 36.5505 27 @ -0.9836 22.0800 40.4029 -Courier_New.ttf 32 % 24.3664 36.5505 28 F 2.6384 27.3234 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 29 S 1.9603 24.5392 34.4140 -Courier_New.ttf 32 % 24.3664 36.5505 30 p 10.4678 29.8826 36.6565 -Courier_New.ttf 32 % 24.3664 36.5505 31 “ -0.1513 24.6392 15.1932 -Courier_New.ttf 32 % 24.3664 36.5505 32 % -0.1217 24.3664 36.5505 -Courier_New.ttf 32 % 24.3664 36.5505 33 £ 2.0508 26.2840 33.8435 -Courier_New.ttf 32 % 24.3664 36.5505 34 . 28.5489 8.8232 7.9800 -Courier_New.ttf 32 % 24.3664 36.5505 35 2 -0.3979 23.1732 36.3838 -Courier_New.ttf 32 % 24.3664 36.5505 36 5 -0.3599 23.7437 36.3838 -Courier_New.ttf 32 % 24.3664 36.5505 37 m 10.4152 35.1594 25.6135 -Courier_New.ttf 32 % 24.3664 36.5505 38 V 2.1370 35.1140 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 39 6 -0.3297 23.7959 36.7876 -Courier_New.ttf 32 % 24.3664 36.5505 40 w 10.8819 32.7502 25.2097 -Courier_New.ttf 32 % 24.3664 36.5505 41 T 2.4828 26.8590 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 42 M 2.5105 34.5367 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 43 G 2.3169 29.5621 34.4140 -Courier_New.ttf 32 % 24.3664 36.5505 44 b 0.0260 29.8826 36.5505 -Courier_New.ttf 32 % 24.3664 36.5505 45 9 -0.2213 22.4193 36.7876 -Courier_New.ttf 32 % 24.3664 36.5505 46 ; 10.7314 12.8068 30.9570 -Courier_New.ttf 32 % 24.3664 36.5505 47 D 2.5324 28.4394 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 48 L 2.4984 28.2727 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 49 y 10.9542 29.3121 36.2527 -Courier_New.ttf 32 % 24.3664 36.5505 50 ‘ 0.1474 12.7529 17.2297 -Courier_New.ttf 32 % 24.3664 36.5505 51 \ -3.1139 24.6392 44.3865 -Courier_New.ttf 32 % 24.3664 36.5505 52 R 2.4509 30.7070 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 53 < 3.3953 28.0000 31.5797 -Courier_New.ttf 32 % 24.3664 36.5505 54 4 -0.2919 22.3232 35.9800 -Courier_New.ttf 32 % 24.3664 36.5505 55 8 -0.2582 21.3094 36.7876 -Courier_New.ttf 32 % 24.3664 36.5505 56 0 -0.4514 23.6959 36.7876 -Courier_New.ttf 32 % 24.3664 36.5505 57 A 2.3623 37.1505 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 58 E 2.3593 27.3234 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 59 B 2.4785 28.4167 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 60 v 10.7130 32.1252 25.2097 -Courier_New.ttf 32 % 24.3664 36.5505 61 k -0.0629 26.6529 35.9800 -Courier_New.ttf 32 % 24.3664 36.5505 62 J 2.3938 28.6766 34.1640 -Courier_New.ttf 32 % 24.3664 36.5505 63 U 2.4008 31.3964 34.1640 -Courier_New.ttf 32 % 24.3664 36.5505 64 j -1.3069 18.4230 48.2928 -Courier_New.ttf 32 % 24.3664 36.5505 65 ( 0.1091 8.4065 43.1932 -Courier_New.ttf 32 % 24.3664 36.5505 66 7 -0.0385 22.0027 35.9800 -Courier_New.ttf 32 % 24.3664 36.5505 67 § -0.0038 27.1696 39.8097 -Courier_New.ttf 32 % 24.3664 36.5505 68 $ -2.7416 21.8261 44.3865 -Courier_New.ttf 32 % 24.3664 36.5505 69 € 1.9623 31.2297 34.4140 -Courier_New.ttf 32 % 24.3664 36.5505 70 / -3.4889 24.6392 44.3865 -Courier_New.ttf 32 % 24.3664 36.5505 71 C 2.2236 28.2727 34.4140 -Courier_New.ttf 32 % 24.3664 36.5505 72 * 0.1957 22.0860 21.9800 -Courier_New.ttf 32 % 24.3664 36.5505 73 ” -0.2381 24.6392 15.1932 -Courier_New.ttf 32 % 24.3664 36.5505 74 ? 1.7757 21.0594 34.9406 -Courier_New.ttf 32 % 24.3664 36.5505 75 { -0.0055 11.7324 43.3121 -Courier_New.ttf 32 % 24.3664 36.5505 76 } -0.0939 11.7324 43.3121 -Courier_New.ttf 32 % 24.3664 36.5505 77 , 27.4556 11.5597 17.2297 -Courier_New.ttf 32 % 24.3664 36.5505 78 I 2.3005 22.0860 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 79 ° -6.5837 15.7638 15.7638 -Courier_New.ttf 32 % 24.3664 36.5505 80 K 2.2456 31.2297 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 81 H 2.2250 28.4333 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 82 q 10.2825 29.1932 36.6565 -Courier_New.ttf 32 % 24.3664 36.5505 83 & 5.5214 21.9800 31.2070 -Courier_New.ttf 32 % 24.3664 36.5505 84 ’ -0.0952 12.7529 17.2297 -Courier_New.ttf 32 % 24.3664 36.5505 85 [ 0.2140 9.5998 43.1932 -Courier_New.ttf 32 % 24.3664 36.5505 86 - 17.6344 24.8892 3.2297 -Courier_New.ttf 32 % 24.3664 36.5505 87 Y 2.3220 29.3410 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 88 Q 2.3204 30.3865 40.7840 -Courier_New.ttf 32 % 24.3664 36.5505 89 " -0.0097 19.6995 16.0365 -Courier_New.ttf 32 % 24.3664 36.5505 90 ! -0.0430 6.4594 36.5505 -Courier_New.ttf 32 % 24.3664 36.5505 91 x 10.6046 29.1932 25.2097 -Courier_New.ttf 32 % 24.3664 36.5505 92 ) -0.1871 8.4065 43.1932 -Courier_New.ttf 32 % 24.3664 36.5505 93 = 12.9458 29.1932 11.3097 -Courier_New.ttf 32 % 24.3664 36.5505 94 + 5.1215 26.8590 29.2455 -Courier_New.ttf 32 % 24.3664 36.5505 95 X 2.4424 30.9092 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 96 » 10.4859 28.7766 26.8068 -Courier_New.ttf 32 % 24.3664 36.5505 97 ' -0.1534 7.9027 17.2297 -Courier_New.ttf 32 % 24.3664 36.5505 98 ¢ -2.4980 20.7867 38.0998 -Courier_New.ttf 32 % 24.3664 36.5505 99 Z 2.3137 23.0959 33.5935 -Courier_New.ttf 32 % 24.3664 36.5505 100 > 3.4653 28.0000 31.5797 -Courier_New.ttf 32 % 24.3664 36.5505 101 ® 1.3298 34.7867 35.0594 -Courier_New.ttf 32 % 24.3664 36.5505 102 © 1.8341 35.0594 34.7867 -Courier_New.ttf 32 % 24.3664 36.5505 103 ] 0.1377 9.5998 43.1932 -Courier_New.ttf 32 % 24.3664 36.5505 104 é -1.9504 27.4295 38.4203 -Courier_New.ttf 32 % 24.3664 36.5505 105 z 10.3220 23.7959 25.2097 -Courier_New.ttf 32 % 24.3664 36.5505 106 _ 50.0041 35.0594 2.3865 -Courier_New.ttf 32 % 24.3664 36.5505 107 ¥ 2.6575 29.6744 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 1 t -0.1128 26.2362 34.6034 -Courier_New.ttf 33 £ 26.2840 33.8435 2 h -2.2885 29.6326 35.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 3 a 7.8452 26.9256 26.1840 -Courier_New.ttf 33 £ 26.2840 33.8435 4 n 8.1284 29.2061 25.6135 -Courier_New.ttf 33 £ 26.2840 33.8435 5 P 0.4543 26.0529 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 6 o 8.1629 26.8068 26.1840 -Courier_New.ttf 33 £ 26.2840 33.8435 7 e 7.8635 27.4295 26.1840 -Courier_New.ttf 33 £ 26.2840 33.8435 8 : 8.4725 8.6565 25.7802 -Courier_New.ttf 33 £ 26.2840 33.8435 9 r 8.1928 26.8295 25.6135 -Courier_New.ttf 33 £ 26.2840 33.8435 10 l -2.3505 24.4725 35.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 11 i -3.2680 24.4725 37.2498 -Courier_New.ttf 33 £ 26.2840 33.8435 12 1 -3.7024 22.8527 37.5770 -Courier_New.ttf 33 £ 26.2840 33.8435 13 | -2.0813 2.3865 43.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 14 N 0.3560 31.3964 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 15 f -2.3436 25.4696 35.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 16 g 8.0673 27.8462 36.6565 -Courier_New.ttf 33 £ 26.2840 33.8435 17 d -1.9206 30.1138 36.5505 -Courier_New.ttf 33 £ 26.2840 33.8435 18 W 0.2112 32.5836 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 19 s 8.2458 23.0959 26.1840 -Courier_New.ttf 33 £ 26.2840 33.8435 20 c 7.9992 26.6529 26.1840 -Courier_New.ttf 33 £ 26.2840 33.8435 21 u 8.4617 29.6326 25.7802 -Courier_New.ttf 33 £ 26.2840 33.8435 22 3 -2.5621 23.6959 36.7876 -Courier_New.ttf 33 £ 26.2840 33.8435 23 ~ 12.9225 24.8892 8.5732 -Courier_New.ttf 33 £ 26.2840 33.8435 24 # -4.3835 25.0657 42.1962 -Courier_New.ttf 33 £ 26.2840 33.8435 25 O 0.0119 29.1932 34.4140 -Courier_New.ttf 33 £ 26.2840 33.8435 26 ` -4.2214 9.8498 8.6565 -Courier_New.ttf 33 £ 26.2840 33.8435 27 @ -3.7597 22.0800 40.4029 -Courier_New.ttf 33 £ 26.2840 33.8435 28 F -0.0794 27.3234 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 29 S -0.1950 24.5392 34.4140 -Courier_New.ttf 33 £ 26.2840 33.8435 30 p 8.2310 29.8826 36.6565 -Courier_New.ttf 33 £ 26.2840 33.8435 31 “ -1.9962 24.6392 15.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 32 % -2.1659 24.3664 36.5505 -Courier_New.ttf 33 £ 26.2840 33.8435 33 £ -0.0990 26.2840 33.8435 -Courier_New.ttf 33 £ 26.2840 33.8435 34 . 26.5999 8.8232 7.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 35 2 -2.8185 23.1732 36.3838 -Courier_New.ttf 33 £ 26.2840 33.8435 36 5 -2.3453 23.7437 36.3838 -Courier_New.ttf 33 £ 26.2840 33.8435 37 m 8.1450 35.1594 25.6135 -Courier_New.ttf 33 £ 26.2840 33.8435 38 V 0.5256 35.1140 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 39 6 -2.3207 23.7959 36.7876 -Courier_New.ttf 33 £ 26.2840 33.8435 40 w 8.8709 32.7502 25.2097 -Courier_New.ttf 33 £ 26.2840 33.8435 41 T 0.3105 26.8590 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 42 M 0.3599 34.5367 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 43 G 0.1097 29.5621 34.4140 -Courier_New.ttf 33 £ 26.2840 33.8435 44 b -2.4731 29.8826 36.5505 -Courier_New.ttf 33 £ 26.2840 33.8435 45 9 -2.5572 22.4193 36.7876 -Courier_New.ttf 33 £ 26.2840 33.8435 46 ; 8.6493 12.8068 30.9570 -Courier_New.ttf 33 £ 26.2840 33.8435 47 D 0.4310 28.4394 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 48 L 0.0554 28.2727 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 49 y 8.8789 29.3121 36.2527 -Courier_New.ttf 33 £ 26.2840 33.8435 50 ‘ -1.9597 12.7529 17.2297 -Courier_New.ttf 33 £ 26.2840 33.8435 51 \ -5.3662 24.6392 44.3865 -Courier_New.ttf 33 £ 26.2840 33.8435 52 R 0.1304 30.7070 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 53 < 1.1457 28.0000 31.5797 -Courier_New.ttf 33 £ 26.2840 33.8435 54 4 -2.0850 22.3232 35.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 55 8 -2.5540 21.3094 36.7876 -Courier_New.ttf 33 £ 26.2840 33.8435 56 0 -2.0944 23.6959 36.7876 -Courier_New.ttf 33 £ 26.2840 33.8435 57 A 0.2213 37.1505 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 58 E 0.4996 27.3234 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 59 B 0.2371 28.4167 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 60 v 8.2340 32.1252 25.2097 -Courier_New.ttf 33 £ 26.2840 33.8435 61 k -1.9925 26.6529 35.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 62 J 0.2105 28.6766 34.1640 -Courier_New.ttf 33 £ 26.2840 33.8435 63 U 0.2083 31.3964 34.1640 -Courier_New.ttf 33 £ 26.2840 33.8435 64 j -3.4025 18.4230 48.2928 -Courier_New.ttf 33 £ 26.2840 33.8435 65 ( -1.9480 8.4065 43.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 66 7 -1.8010 22.0027 35.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 67 § -2.4422 27.1696 39.8097 -Courier_New.ttf 33 £ 26.2840 33.8435 68 $ -5.1898 21.8261 44.3865 -Courier_New.ttf 33 £ 26.2840 33.8435 69 € -0.1553 31.2297 34.4140 -Courier_New.ttf 33 £ 26.2840 33.8435 70 / -5.8246 24.6392 44.3865 -Courier_New.ttf 33 £ 26.2840 33.8435 71 C 0.1357 28.2727 34.4140 -Courier_New.ttf 33 £ 26.2840 33.8435 72 * -2.3847 22.0860 21.9800 -Courier_New.ttf 33 £ 26.2840 33.8435 73 ” -2.3496 24.6392 15.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 74 ? -0.3692 21.0594 34.9406 -Courier_New.ttf 33 £ 26.2840 33.8435 75 { -2.4092 11.7324 43.3121 -Courier_New.ttf 33 £ 26.2840 33.8435 76 } -2.2298 11.7324 43.3121 -Courier_New.ttf 33 £ 26.2840 33.8435 77 , 25.0705 11.5597 17.2297 -Courier_New.ttf 33 £ 26.2840 33.8435 78 I 0.2644 22.0860 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 79 ° -8.8849 15.7638 15.7638 -Courier_New.ttf 33 £ 26.2840 33.8435 80 K 0.4944 31.2297 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 81 H 0.0674 28.4333 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 82 q 8.4508 29.1932 36.6565 -Courier_New.ttf 33 £ 26.2840 33.8435 83 & 3.2955 21.9800 31.2070 -Courier_New.ttf 33 £ 26.2840 33.8435 84 ’ -2.2279 12.7529 17.2297 -Courier_New.ttf 33 £ 26.2840 33.8435 85 [ -1.9890 9.5998 43.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 86 - 15.6189 24.8892 3.2297 -Courier_New.ttf 33 £ 26.2840 33.8435 87 Y 0.4603 29.3410 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 88 Q 0.1260 30.3865 40.7840 -Courier_New.ttf 33 £ 26.2840 33.8435 89 " -2.3835 19.6995 16.0365 -Courier_New.ttf 33 £ 26.2840 33.8435 90 ! -2.2972 6.4594 36.5505 -Courier_New.ttf 33 £ 26.2840 33.8435 91 x 8.7255 29.1932 25.2097 -Courier_New.ttf 33 £ 26.2840 33.8435 92 ) -2.1646 8.4065 43.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 93 = 11.0844 29.1932 11.3097 -Courier_New.ttf 33 £ 26.2840 33.8435 94 + 2.8878 26.8590 29.2455 -Courier_New.ttf 33 £ 26.2840 33.8435 95 X 0.2629 30.9092 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 96 » 8.5080 28.7766 26.8068 -Courier_New.ttf 33 £ 26.2840 33.8435 97 ' -2.3775 7.9027 17.2297 -Courier_New.ttf 33 £ 26.2840 33.8435 98 ¢ -4.0769 20.7867 38.0998 -Courier_New.ttf 33 £ 26.2840 33.8435 99 Z 0.0922 23.0959 33.5935 -Courier_New.ttf 33 £ 26.2840 33.8435 100 > 1.3529 28.0000 31.5797 -Courier_New.ttf 33 £ 26.2840 33.8435 101 ® -0.6974 34.7867 35.0594 -Courier_New.ttf 33 £ 26.2840 33.8435 102 © -0.0316 35.0594 34.7867 -Courier_New.ttf 33 £ 26.2840 33.8435 103 ] -1.8117 9.5998 43.1932 -Courier_New.ttf 33 £ 26.2840 33.8435 104 é -4.3377 27.4295 38.4203 -Courier_New.ttf 33 £ 26.2840 33.8435 105 z 8.7223 23.7959 25.2097 -Courier_New.ttf 33 £ 26.2840 33.8435 106 _ 47.8319 35.0594 2.3865 -Courier_New.ttf 33 £ 26.2840 33.8435 107 ¥ 0.2871 29.6744 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 1 t -26.3764 26.2362 34.6034 -Courier_New.ttf 34 . 8.8232 7.9800 2 h -28.7318 29.6326 35.9800 -Courier_New.ttf 34 . 8.8232 7.9800 3 a -17.9441 26.9256 26.1840 -Courier_New.ttf 34 . 8.8232 7.9800 4 n -18.2550 29.2061 25.6135 -Courier_New.ttf 34 . 8.8232 7.9800 5 P -26.4926 26.0529 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 6 o -18.5875 26.8068 26.1840 -Courier_New.ttf 34 . 8.8232 7.9800 7 e -17.7745 27.4295 26.1840 -Courier_New.ttf 34 . 8.8232 7.9800 8 : -17.6831 8.6565 25.7802 -Courier_New.ttf 34 . 8.8232 7.9800 9 r -18.1228 26.8295 25.6135 -Courier_New.ttf 34 . 8.8232 7.9800 10 l -28.4274 24.4725 35.9800 -Courier_New.ttf 34 . 8.8232 7.9800 11 i -29.7914 24.4725 37.2498 -Courier_New.ttf 34 . 8.8232 7.9800 12 1 -30.1105 22.8527 37.5770 -Courier_New.ttf 34 . 8.8232 7.9800 13 | -28.5006 2.3865 43.1932 -Courier_New.ttf 34 . 8.8232 7.9800 14 N -26.4835 31.3964 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 15 f -28.2183 25.4696 35.9800 -Courier_New.ttf 34 . 8.8232 7.9800 16 g -18.0190 27.8462 36.6565 -Courier_New.ttf 34 . 8.8232 7.9800 17 d -28.6419 30.1138 36.5505 -Courier_New.ttf 34 . 8.8232 7.9800 18 W -26.2582 32.5836 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 19 s -18.1369 23.0959 26.1840 -Courier_New.ttf 34 . 8.8232 7.9800 20 c -17.9712 26.6529 26.1840 -Courier_New.ttf 34 . 8.8232 7.9800 21 u -17.9150 29.6326 25.7802 -Courier_New.ttf 34 . 8.8232 7.9800 22 3 -28.8410 23.6959 36.7876 -Courier_New.ttf 34 . 8.8232 7.9800 23 ~ -13.6135 24.8892 8.5732 -Courier_New.ttf 34 . 8.8232 7.9800 24 # -31.0382 25.0657 42.1962 -Courier_New.ttf 34 . 8.8232 7.9800 25 O -26.3372 29.1932 34.4140 -Courier_New.ttf 34 . 8.8232 7.9800 26 ` -30.5659 9.8498 8.6565 -Courier_New.ttf 34 . 8.8232 7.9800 27 @ -29.8714 22.0800 40.4029 -Courier_New.ttf 34 . 8.8232 7.9800 28 F -26.0956 27.3234 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 29 S -26.4712 24.5392 34.4140 -Courier_New.ttf 34 . 8.8232 7.9800 30 p -18.3074 29.8826 36.6565 -Courier_New.ttf 34 . 8.8232 7.9800 31 “ -28.4056 24.6392 15.1932 -Courier_New.ttf 34 . 8.8232 7.9800 32 % -28.6576 24.3664 36.5505 -Courier_New.ttf 34 . 8.8232 7.9800 33 £ -26.4128 26.2840 33.8435 -Courier_New.ttf 34 . 8.8232 7.9800 34 . 0.0020 8.8232 7.9800 -Courier_New.ttf 34 . 8.8232 7.9800 35 2 -29.0548 23.1732 36.3838 -Courier_New.ttf 34 . 8.8232 7.9800 36 5 -28.4977 23.7437 36.3838 -Courier_New.ttf 34 . 8.8232 7.9800 37 m -17.9724 35.1594 25.6135 -Courier_New.ttf 34 . 8.8232 7.9800 38 V -26.0872 35.1140 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 39 6 -28.8815 23.7959 36.7876 -Courier_New.ttf 34 . 8.8232 7.9800 40 w -17.6758 32.7502 25.2097 -Courier_New.ttf 34 . 8.8232 7.9800 41 T -26.4278 26.8590 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 42 M -26.1614 34.5367 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 43 G -26.4757 29.5621 34.4140 -Courier_New.ttf 34 . 8.8232 7.9800 44 b -28.3828 29.8826 36.5505 -Courier_New.ttf 34 . 8.8232 7.9800 45 9 -28.9739 22.4193 36.7876 -Courier_New.ttf 34 . 8.8232 7.9800 46 ; -17.9671 12.8068 30.9570 -Courier_New.ttf 34 . 8.8232 7.9800 47 D -26.3894 28.4394 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 48 L -25.8968 28.2727 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 49 y -17.7100 29.3121 36.2527 -Courier_New.ttf 34 . 8.8232 7.9800 50 ‘ -28.5561 12.7529 17.2297 -Courier_New.ttf 34 . 8.8232 7.9800 51 \ -31.7892 24.6392 44.3865 -Courier_New.ttf 34 . 8.8232 7.9800 52 R -26.0969 30.7070 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 53 < -25.2038 28.0000 31.5797 -Courier_New.ttf 34 . 8.8232 7.9800 54 4 -28.5716 22.3232 35.9800 -Courier_New.ttf 34 . 8.8232 7.9800 55 8 -28.7977 21.3094 36.7876 -Courier_New.ttf 34 . 8.8232 7.9800 56 0 -29.1408 23.6959 36.7876 -Courier_New.ttf 34 . 8.8232 7.9800 57 A -26.4349 37.1505 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 58 E -26.2197 27.3234 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 59 B -26.1372 28.4167 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 60 v -17.9776 32.1252 25.2097 -Courier_New.ttf 34 . 8.8232 7.9800 61 k -28.7719 26.6529 35.9800 -Courier_New.ttf 34 . 8.8232 7.9800 62 J -25.9800 28.6766 34.1640 -Courier_New.ttf 34 . 8.8232 7.9800 63 U -25.9490 31.3964 34.1640 -Courier_New.ttf 34 . 8.8232 7.9800 64 j -29.8620 18.4230 48.2928 -Courier_New.ttf 34 . 8.8232 7.9800 65 ( -28.3597 8.4065 43.1932 -Courier_New.ttf 34 . 8.8232 7.9800 66 7 -28.7447 22.0027 35.9800 -Courier_New.ttf 34 . 8.8232 7.9800 67 § -28.4751 27.1696 39.8097 -Courier_New.ttf 34 . 8.8232 7.9800 68 $ -31.2671 21.8261 44.3865 -Courier_New.ttf 34 . 8.8232 7.9800 69 € -26.3521 31.2297 34.4140 -Courier_New.ttf 34 . 8.8232 7.9800 70 / -32.3867 24.6392 44.3865 -Courier_New.ttf 34 . 8.8232 7.9800 71 C -26.4483 28.2727 34.4140 -Courier_New.ttf 34 . 8.8232 7.9800 72 * -28.7332 22.0860 21.9800 -Courier_New.ttf 34 . 8.8232 7.9800 73 ” -28.7916 24.6392 15.1932 -Courier_New.ttf 34 . 8.8232 7.9800 74 ? -26.7037 21.0594 34.9406 -Courier_New.ttf 34 . 8.8232 7.9800 75 { -28.7259 11.7324 43.3121 -Courier_New.ttf 34 . 8.8232 7.9800 76 } -29.0903 11.7324 43.3121 -Courier_New.ttf 34 . 8.8232 7.9800 77 , -1.1592 11.5597 17.2297 -Courier_New.ttf 34 . 8.8232 7.9800 78 I -26.0599 22.0860 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 79 ° -34.8374 15.7638 15.7638 -Courier_New.ttf 34 . 8.8232 7.9800 80 K -26.0345 31.2297 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 81 H -26.0854 28.4333 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 82 q -18.0719 29.1932 36.6565 -Courier_New.ttf 34 . 8.8232 7.9800 83 & -23.2361 21.9800 31.2070 -Courier_New.ttf 34 . 8.8232 7.9800 84 ’ -28.8864 12.7529 17.2297 -Courier_New.ttf 34 . 8.8232 7.9800 85 [ -28.4931 9.5998 43.1932 -Courier_New.ttf 34 . 8.8232 7.9800 86 - -10.9393 24.8892 3.2297 -Courier_New.ttf 34 . 8.8232 7.9800 87 Y -25.9486 29.3410 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 88 Q -26.7095 30.3865 40.7840 -Courier_New.ttf 34 . 8.8232 7.9800 89 " -28.5474 19.6995 16.0365 -Courier_New.ttf 34 . 8.8232 7.9800 90 ! -28.5237 6.4594 36.5505 -Courier_New.ttf 34 . 8.8232 7.9800 91 x -17.8604 29.1932 25.2097 -Courier_New.ttf 34 . 8.8232 7.9800 92 ) -28.8860 8.4065 43.1932 -Courier_New.ttf 34 . 8.8232 7.9800 93 = -14.7485 29.1932 11.3097 -Courier_New.ttf 34 . 8.8232 7.9800 94 + -23.6141 26.8590 29.2455 -Courier_New.ttf 34 . 8.8232 7.9800 95 X -26.3271 30.9092 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 96 » -18.3315 28.7766 26.8068 -Courier_New.ttf 34 . 8.8232 7.9800 97 ' -28.8522 7.9027 17.2297 -Courier_New.ttf 34 . 8.8232 7.9800 98 ¢ -30.5806 20.7867 38.0998 -Courier_New.ttf 34 . 8.8232 7.9800 99 Z -26.1261 23.0959 33.5935 -Courier_New.ttf 34 . 8.8232 7.9800 100 > -24.9708 28.0000 31.5797 -Courier_New.ttf 34 . 8.8232 7.9800 101 ® -27.1523 34.7867 35.0594 -Courier_New.ttf 34 . 8.8232 7.9800 102 © -26.8852 35.0594 34.7867 -Courier_New.ttf 34 . 8.8232 7.9800 103 ] -28.6348 9.5998 43.1932 -Courier_New.ttf 34 . 8.8232 7.9800 104 é -30.4431 27.4295 38.4203 -Courier_New.ttf 34 . 8.8232 7.9800 105 z -17.8814 23.7959 25.2097 -Courier_New.ttf 34 . 8.8232 7.9800 106 _ 21.1831 35.0594 2.3865 -Courier_New.ttf 34 . 8.8232 7.9800 107 ¥ -26.1697 29.6744 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 1 t 2.3719 26.2362 34.6034 -Courier_New.ttf 35 2 23.1732 36.3838 2 h 0.6197 29.6326 35.9800 -Courier_New.ttf 35 2 23.1732 36.3838 3 a 10.5915 26.9256 26.1840 -Courier_New.ttf 35 2 23.1732 36.3838 4 n 10.5292 29.2061 25.6135 -Courier_New.ttf 35 2 23.1732 36.3838 5 P 2.8173 26.0529 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 6 o 10.9924 26.8068 26.1840 -Courier_New.ttf 35 2 23.1732 36.3838 7 e 10.8861 27.4295 26.1840 -Courier_New.ttf 35 2 23.1732 36.3838 8 : 11.3414 8.6565 25.7802 -Courier_New.ttf 35 2 23.1732 36.3838 9 r 10.7713 26.8295 25.6135 -Courier_New.ttf 35 2 23.1732 36.3838 10 l 0.8177 24.4725 35.9800 -Courier_New.ttf 35 2 23.1732 36.3838 11 i -0.8387 24.4725 37.2498 -Courier_New.ttf 35 2 23.1732 36.3838 12 1 -1.3805 22.8527 37.5770 -Courier_New.ttf 35 2 23.1732 36.3838 13 | 0.2248 2.3865 43.1932 -Courier_New.ttf 35 2 23.1732 36.3838 14 N 2.8812 31.3964 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 15 f 0.1870 25.4696 35.9800 -Courier_New.ttf 35 2 23.1732 36.3838 16 g 10.7072 27.8462 36.6565 -Courier_New.ttf 35 2 23.1732 36.3838 17 d 0.1891 30.1138 36.5505 -Courier_New.ttf 35 2 23.1732 36.3838 18 W 2.9636 32.5836 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 19 s 10.8703 23.0959 26.1840 -Courier_New.ttf 35 2 23.1732 36.3838 20 c 10.7703 26.6529 26.1840 -Courier_New.ttf 35 2 23.1732 36.3838 21 u 11.1100 29.6326 25.7802 -Courier_New.ttf 35 2 23.1732 36.3838 22 3 -0.1801 23.6959 36.7876 -Courier_New.ttf 35 2 23.1732 36.3838 23 ~ 15.2172 24.8892 8.5732 -Courier_New.ttf 35 2 23.1732 36.3838 24 # -2.0554 25.0657 42.1962 -Courier_New.ttf 35 2 23.1732 36.3838 25 O 2.3147 29.1932 34.4140 -Courier_New.ttf 35 2 23.1732 36.3838 26 ` -1.3061 9.8498 8.6565 -Courier_New.ttf 35 2 23.1732 36.3838 27 @ -1.1608 22.0800 40.4029 -Courier_New.ttf 35 2 23.1732 36.3838 28 F 2.7162 27.3234 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 29 S 2.4666 24.5392 34.4140 -Courier_New.ttf 35 2 23.1732 36.3838 30 p 10.9186 29.8826 36.6565 -Courier_New.ttf 35 2 23.1732 36.3838 31 “ 0.2279 24.6392 15.1932 -Courier_New.ttf 35 2 23.1732 36.3838 32 % 0.2995 24.3664 36.5505 -Courier_New.ttf 35 2 23.1732 36.3838 33 £ 2.8713 26.2840 33.8435 -Courier_New.ttf 35 2 23.1732 36.3838 34 . 28.8053 8.8232 7.9800 -Courier_New.ttf 35 2 23.1732 36.3838 35 2 -0.1728 23.1732 36.3838 -Courier_New.ttf 35 2 23.1732 36.3838 36 5 0.5096 23.7437 36.3838 -Courier_New.ttf 35 2 23.1732 36.3838 37 m 10.6645 35.1594 25.6135 -Courier_New.ttf 35 2 23.1732 36.3838 38 V 2.7519 35.1140 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 39 6 -0.1788 23.7959 36.7876 -Courier_New.ttf 35 2 23.1732 36.3838 40 w 11.1045 32.7502 25.2097 -Courier_New.ttf 35 2 23.1732 36.3838 41 T 2.8107 26.8590 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 42 M 2.6903 34.5367 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 43 G 2.5764 29.5621 34.4140 -Courier_New.ttf 35 2 23.1732 36.3838 44 b 0.4554 29.8826 36.5505 -Courier_New.ttf 35 2 23.1732 36.3838 45 9 0.0206 22.4193 36.7876 -Courier_New.ttf 35 2 23.1732 36.3838 46 ; 11.0165 12.8068 30.9570 -Courier_New.ttf 35 2 23.1732 36.3838 47 D 2.7709 28.4394 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 48 L 2.4021 28.2727 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 49 y 11.1221 29.3121 36.2527 -Courier_New.ttf 35 2 23.1732 36.3838 50 ‘ 0.4203 12.7529 17.2297 -Courier_New.ttf 35 2 23.1732 36.3838 51 \ -2.7899 24.6392 44.3865 -Courier_New.ttf 35 2 23.1732 36.3838 52 R 2.7421 30.7070 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 53 < 3.7807 28.0000 31.5797 -Courier_New.ttf 35 2 23.1732 36.3838 54 4 0.3497 22.3232 35.9800 -Courier_New.ttf 35 2 23.1732 36.3838 55 8 0.0240 21.3094 36.7876 -Courier_New.ttf 35 2 23.1732 36.3838 56 0 0.1067 23.6959 36.7876 -Courier_New.ttf 35 2 23.1732 36.3838 57 A 3.0210 37.1505 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 58 E 2.6463 27.3234 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 59 B 2.6702 28.4167 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 60 v 11.3827 32.1252 25.2097 -Courier_New.ttf 35 2 23.1732 36.3838 61 k 0.4409 26.6529 35.9800 -Courier_New.ttf 35 2 23.1732 36.3838 62 J 2.9288 28.6766 34.1640 -Courier_New.ttf 35 2 23.1732 36.3838 63 U 2.8840 31.3964 34.1640 -Courier_New.ttf 35 2 23.1732 36.3838 64 j -1.0286 18.4230 48.2928 -Courier_New.ttf 35 2 23.1732 36.3838 65 ( 0.4773 8.4065 43.1932 -Courier_New.ttf 35 2 23.1732 36.3838 66 7 0.4759 22.0027 35.9800 -Courier_New.ttf 35 2 23.1732 36.3838 67 § 0.4213 27.1696 39.8097 -Courier_New.ttf 35 2 23.1732 36.3838 68 $ -2.6922 21.8261 44.3865 -Courier_New.ttf 35 2 23.1732 36.3838 69 € 2.5396 31.2297 34.4140 -Courier_New.ttf 35 2 23.1732 36.3838 70 / -3.1745 24.6392 44.3865 -Courier_New.ttf 35 2 23.1732 36.3838 71 C 2.4991 28.2727 34.4140 -Courier_New.ttf 35 2 23.1732 36.3838 72 * 0.3215 22.0860 21.9800 -Courier_New.ttf 35 2 23.1732 36.3838 73 ” 0.4826 24.6392 15.1932 -Courier_New.ttf 35 2 23.1732 36.3838 74 ? 1.8813 21.0594 34.9406 -Courier_New.ttf 35 2 23.1732 36.3838 75 { 0.1441 11.7324 43.3121 -Courier_New.ttf 35 2 23.1732 36.3838 76 } 0.6681 11.7324 43.3121 -Courier_New.ttf 35 2 23.1732 36.3838 77 , 27.7790 11.5597 17.2297 -Courier_New.ttf 35 2 23.1732 36.3838 78 I 3.1183 22.0860 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 79 ° -6.0701 15.7638 15.7638 -Courier_New.ttf 35 2 23.1732 36.3838 80 K 2.6441 31.2297 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 81 H 2.5374 28.4333 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 82 q 10.5271 29.1932 36.6565 -Courier_New.ttf 35 2 23.1732 36.3838 83 & 5.5804 21.9800 31.2070 -Courier_New.ttf 35 2 23.1732 36.3838 84 ’ 0.3856 12.7529 17.2297 -Courier_New.ttf 35 2 23.1732 36.3838 85 [ 0.2251 9.5998 43.1932 -Courier_New.ttf 35 2 23.1732 36.3838 86 - 17.9023 24.8892 3.2297 -Courier_New.ttf 35 2 23.1732 36.3838 87 Y 2.7728 29.3410 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 88 Q 2.6776 30.3865 40.7840 -Courier_New.ttf 35 2 23.1732 36.3838 89 " 0.8334 19.6995 16.0365 -Courier_New.ttf 35 2 23.1732 36.3838 90 ! 0.4495 6.4594 36.5505 -Courier_New.ttf 35 2 23.1732 36.3838 91 x 10.9726 29.1932 25.2097 -Courier_New.ttf 35 2 23.1732 36.3838 92 ) 0.1498 8.4065 43.1932 -Courier_New.ttf 35 2 23.1732 36.3838 93 = 14.0196 29.1932 11.3097 -Courier_New.ttf 35 2 23.1732 36.3838 94 + 5.1421 26.8590 29.2455 -Courier_New.ttf 35 2 23.1732 36.3838 95 X 2.4409 30.9092 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 96 » 10.6493 28.7766 26.8068 -Courier_New.ttf 35 2 23.1732 36.3838 97 ' 0.2803 7.9027 17.2297 -Courier_New.ttf 35 2 23.1732 36.3838 98 ¢ -1.8017 20.7867 38.0998 -Courier_New.ttf 35 2 23.1732 36.3838 99 Z 2.5435 23.0959 33.5935 -Courier_New.ttf 35 2 23.1732 36.3838 100 > 4.0480 28.0000 31.5797 -Courier_New.ttf 35 2 23.1732 36.3838 101 ® 1.6350 34.7867 35.0594 -Courier_New.ttf 35 2 23.1732 36.3838 102 © 2.2747 35.0594 34.7867 -Courier_New.ttf 35 2 23.1732 36.3838 103 ] 0.4854 9.5998 43.1932 -Courier_New.ttf 35 2 23.1732 36.3838 104 é -1.3352 27.4295 38.4203 -Courier_New.ttf 35 2 23.1732 36.3838 105 z 11.1482 23.7959 25.2097 -Courier_New.ttf 35 2 23.1732 36.3838 106 _ 50.3898 35.0594 2.3865 -Courier_New.ttf 35 2 23.1732 36.3838 107 ¥ 3.0001 29.6744 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 1 t 1.8350 26.2362 34.6034 -Courier_New.ttf 36 5 23.7437 36.3838 2 h -0.1319 29.6326 35.9800 -Courier_New.ttf 36 5 23.7437 36.3838 3 a 10.6316 26.9256 26.1840 -Courier_New.ttf 36 5 23.7437 36.3838 4 n 10.0811 29.2061 25.6135 -Courier_New.ttf 36 5 23.7437 36.3838 5 P 2.2494 26.0529 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 6 o 10.5563 26.8068 26.1840 -Courier_New.ttf 36 5 23.7437 36.3838 7 e 10.2211 27.4295 26.1840 -Courier_New.ttf 36 5 23.7437 36.3838 8 : 10.5663 8.6565 25.7802 -Courier_New.ttf 36 5 23.7437 36.3838 9 r 10.6602 26.8295 25.6135 -Courier_New.ttf 36 5 23.7437 36.3838 10 l -0.0014 24.4725 35.9800 -Courier_New.ttf 36 5 23.7437 36.3838 11 i -1.0339 24.4725 37.2498 -Courier_New.ttf 36 5 23.7437 36.3838 12 1 -1.5066 22.8527 37.5770 -Courier_New.ttf 36 5 23.7437 36.3838 13 | 0.0270 2.3865 43.1932 -Courier_New.ttf 36 5 23.7437 36.3838 14 N 2.0542 31.3964 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 15 f -0.1402 25.4696 35.9800 -Courier_New.ttf 36 5 23.7437 36.3838 16 g 10.3777 27.8462 36.6565 -Courier_New.ttf 36 5 23.7437 36.3838 17 d -0.1501 30.1138 36.5505 -Courier_New.ttf 36 5 23.7437 36.3838 18 W 2.2706 32.5836 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 19 s 10.5249 23.0959 26.1840 -Courier_New.ttf 36 5 23.7437 36.3838 20 c 10.3664 26.6529 26.1840 -Courier_New.ttf 36 5 23.7437 36.3838 21 u 10.7748 29.6326 25.7802 -Courier_New.ttf 36 5 23.7437 36.3838 22 3 -0.4780 23.6959 36.7876 -Courier_New.ttf 36 5 23.7437 36.3838 23 ~ 14.9237 24.8892 8.5732 -Courier_New.ttf 36 5 23.7437 36.3838 24 # -2.6887 25.0657 42.1962 -Courier_New.ttf 36 5 23.7437 36.3838 25 O 2.1795 29.1932 34.4140 -Courier_New.ttf 36 5 23.7437 36.3838 26 ` -1.7029 9.8498 8.6565 -Courier_New.ttf 36 5 23.7437 36.3838 27 @ -1.4192 22.0800 40.4029 -Courier_New.ttf 36 5 23.7437 36.3838 28 F 2.5342 27.3234 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 29 S 1.9636 24.5392 34.4140 -Courier_New.ttf 36 5 23.7437 36.3838 30 p 10.4768 29.8826 36.6565 -Courier_New.ttf 36 5 23.7437 36.3838 31 “ 0.1535 24.6392 15.1932 -Courier_New.ttf 36 5 23.7437 36.3838 32 % -0.0468 24.3664 36.5505 -Courier_New.ttf 36 5 23.7437 36.3838 33 £ 1.8902 26.2840 33.8435 -Courier_New.ttf 36 5 23.7437 36.3838 34 . 28.4723 8.8232 7.9800 -Courier_New.ttf 36 5 23.7437 36.3838 35 2 -0.3195 23.1732 36.3838 -Courier_New.ttf 36 5 23.7437 36.3838 36 5 0.2658 23.7437 36.3838 -Courier_New.ttf 36 5 23.7437 36.3838 37 m 10.0167 35.1594 25.6135 -Courier_New.ttf 36 5 23.7437 36.3838 38 V 2.4547 35.1140 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 39 6 -0.3617 23.7959 36.7876 -Courier_New.ttf 36 5 23.7437 36.3838 40 w 10.8657 32.7502 25.2097 -Courier_New.ttf 36 5 23.7437 36.3838 41 T 2.2136 26.8590 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 42 M 2.1153 34.5367 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 43 G 2.4586 29.5621 34.4140 -Courier_New.ttf 36 5 23.7437 36.3838 44 b -0.1145 29.8826 36.5505 -Courier_New.ttf 36 5 23.7437 36.3838 45 9 -0.6834 22.4193 36.7876 -Courier_New.ttf 36 5 23.7437 36.3838 46 ; 10.6279 12.8068 30.9570 -Courier_New.ttf 36 5 23.7437 36.3838 47 D 2.5418 28.4394 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 48 L 2.2535 28.2727 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 49 y 10.6884 29.3121 36.2527 -Courier_New.ttf 36 5 23.7437 36.3838 50 ‘ -0.0499 12.7529 17.2297 -Courier_New.ttf 36 5 23.7437 36.3838 51 \ -3.1283 24.6392 44.3865 -Courier_New.ttf 36 5 23.7437 36.3838 52 R 2.5081 30.7070 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 53 < 3.7001 28.0000 31.5797 -Courier_New.ttf 36 5 23.7437 36.3838 54 4 -0.3367 22.3232 35.9800 -Courier_New.ttf 36 5 23.7437 36.3838 55 8 -0.0892 21.3094 36.7876 -Courier_New.ttf 36 5 23.7437 36.3838 56 0 -0.3882 23.6959 36.7876 -Courier_New.ttf 36 5 23.7437 36.3838 57 A 2.4605 37.1505 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 58 E 2.3299 27.3234 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 59 B 2.3324 28.4167 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 60 v 10.9407 32.1252 25.2097 -Courier_New.ttf 36 5 23.7437 36.3838 61 k -0.2169 26.6529 35.9800 -Courier_New.ttf 36 5 23.7437 36.3838 62 J 2.2234 28.6766 34.1640 -Courier_New.ttf 36 5 23.7437 36.3838 63 U 2.2872 31.3964 34.1640 -Courier_New.ttf 36 5 23.7437 36.3838 64 j -1.5164 18.4230 48.2928 -Courier_New.ttf 36 5 23.7437 36.3838 65 ( -0.2710 8.4065 43.1932 -Courier_New.ttf 36 5 23.7437 36.3838 66 7 0.4083 22.0027 35.9800 -Courier_New.ttf 36 5 23.7437 36.3838 67 § 0.0566 27.1696 39.8097 -Courier_New.ttf 36 5 23.7437 36.3838 68 $ -2.9147 21.8261 44.3865 -Courier_New.ttf 36 5 23.7437 36.3838 69 € 2.2321 31.2297 34.4140 -Courier_New.ttf 36 5 23.7437 36.3838 70 / -3.6322 24.6392 44.3865 -Courier_New.ttf 36 5 23.7437 36.3838 71 C 1.9752 28.2727 34.4140 -Courier_New.ttf 36 5 23.7437 36.3838 72 * 0.0242 22.0860 21.9800 -Courier_New.ttf 36 5 23.7437 36.3838 73 ” -0.0059 24.6392 15.1932 -Courier_New.ttf 36 5 23.7437 36.3838 74 ? 1.7580 21.0594 34.9406 -Courier_New.ttf 36 5 23.7437 36.3838 75 { -0.1513 11.7324 43.3121 -Courier_New.ttf 36 5 23.7437 36.3838 76 } -0.3060 11.7324 43.3121 -Courier_New.ttf 36 5 23.7437 36.3838 77 , 27.5686 11.5597 17.2297 -Courier_New.ttf 36 5 23.7437 36.3838 78 I 2.2311 22.0860 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 79 ° -6.3305 15.7638 15.7638 -Courier_New.ttf 36 5 23.7437 36.3838 80 K 2.3151 31.2297 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 81 H 2.7647 28.4333 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 82 q 10.3593 29.1932 36.6565 -Courier_New.ttf 36 5 23.7437 36.3838 83 & 5.4768 21.9800 31.2070 -Courier_New.ttf 36 5 23.7437 36.3838 84 ’ -0.3531 12.7529 17.2297 -Courier_New.ttf 36 5 23.7437 36.3838 85 [ -0.1048 9.5998 43.1932 -Courier_New.ttf 36 5 23.7437 36.3838 86 - 17.4702 24.8892 3.2297 -Courier_New.ttf 36 5 23.7437 36.3838 87 Y 2.4847 29.3410 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 88 Q 2.0448 30.3865 40.7840 -Courier_New.ttf 36 5 23.7437 36.3838 89 " -0.0839 19.6995 16.0365 -Courier_New.ttf 36 5 23.7437 36.3838 90 ! -0.2984 6.4594 36.5505 -Courier_New.ttf 36 5 23.7437 36.3838 91 x 10.6006 29.1932 25.2097 -Courier_New.ttf 36 5 23.7437 36.3838 92 ) -0.0385 8.4065 43.1932 -Courier_New.ttf 36 5 23.7437 36.3838 93 = 13.7818 29.1932 11.3097 -Courier_New.ttf 36 5 23.7437 36.3838 94 + 5.0509 26.8590 29.2455 -Courier_New.ttf 36 5 23.7437 36.3838 95 X 2.4809 30.9092 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 96 » 10.1143 28.7766 26.8068 -Courier_New.ttf 36 5 23.7437 36.3838 97 ' -0.0153 7.9027 17.2297 -Courier_New.ttf 36 5 23.7437 36.3838 98 ¢ -2.1374 20.7867 38.0998 -Courier_New.ttf 36 5 23.7437 36.3838 99 Z 2.3092 23.0959 33.5935 -Courier_New.ttf 36 5 23.7437 36.3838 100 > 3.3716 28.0000 31.5797 -Courier_New.ttf 36 5 23.7437 36.3838 101 ® 1.2015 34.7867 35.0594 -Courier_New.ttf 36 5 23.7437 36.3838 102 © 2.0322 35.0594 34.7867 -Courier_New.ttf 36 5 23.7437 36.3838 103 ] -0.1087 9.5998 43.1932 -Courier_New.ttf 36 5 23.7437 36.3838 104 é -1.8697 27.4295 38.4203 -Courier_New.ttf 36 5 23.7437 36.3838 105 z 10.7240 23.7959 25.2097 -Courier_New.ttf 36 5 23.7437 36.3838 106 _ 49.9716 35.0594 2.3865 -Courier_New.ttf 36 5 23.7437 36.3838 107 ¥ 2.1407 29.6744 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 1 t -8.5695 26.2362 34.6034 -Courier_New.ttf 37 m 35.1594 25.6135 2 h -10.4217 29.6326 35.9800 -Courier_New.ttf 37 m 35.1594 25.6135 3 a 0.0357 26.9256 26.1840 -Courier_New.ttf 37 m 35.1594 25.6135 4 n -0.0008 29.2061 25.6135 -Courier_New.ttf 37 m 35.1594 25.6135 5 P -8.0854 26.0529 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 6 o -0.0106 26.8068 26.1840 -Courier_New.ttf 37 m 35.1594 25.6135 7 e 0.0459 27.4295 26.1840 -Courier_New.ttf 37 m 35.1594 25.6135 8 : 0.1041 8.6565 25.7802 -Courier_New.ttf 37 m 35.1594 25.6135 9 r -0.3187 26.8295 25.6135 -Courier_New.ttf 37 m 35.1594 25.6135 10 l -10.5932 24.4725 35.9800 -Courier_New.ttf 37 m 35.1594 25.6135 11 i -11.7664 24.4725 37.2498 -Courier_New.ttf 37 m 35.1594 25.6135 12 1 -12.1544 22.8527 37.5770 -Courier_New.ttf 37 m 35.1594 25.6135 13 | -10.3795 2.3865 43.1932 -Courier_New.ttf 37 m 35.1594 25.6135 14 N -7.8657 31.3964 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 15 f -10.3440 25.4696 35.9800 -Courier_New.ttf 37 m 35.1594 25.6135 16 g -0.0625 27.8462 36.6565 -Courier_New.ttf 37 m 35.1594 25.6135 17 d -10.6134 30.1138 36.5505 -Courier_New.ttf 37 m 35.1594 25.6135 18 W -8.0384 32.5836 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 19 s 0.1002 23.0959 26.1840 -Courier_New.ttf 37 m 35.1594 25.6135 20 c -0.0521 26.6529 26.1840 -Courier_New.ttf 37 m 35.1594 25.6135 21 u 0.6082 29.6326 25.7802 -Courier_New.ttf 37 m 35.1594 25.6135 22 3 -10.6864 23.6959 36.7876 -Courier_New.ttf 37 m 35.1594 25.6135 23 ~ 4.5170 24.8892 8.5732 -Courier_New.ttf 37 m 35.1594 25.6135 24 # -12.8918 25.0657 42.1962 -Courier_New.ttf 37 m 35.1594 25.6135 25 O -7.8712 29.1932 34.4140 -Courier_New.ttf 37 m 35.1594 25.6135 26 ` -12.4500 9.8498 8.6565 -Courier_New.ttf 37 m 35.1594 25.6135 27 @ -11.5530 22.0800 40.4029 -Courier_New.ttf 37 m 35.1594 25.6135 28 F -8.0111 27.3234 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 29 S -8.0023 24.5392 34.4140 -Courier_New.ttf 37 m 35.1594 25.6135 30 p -0.0755 29.8826 36.6565 -Courier_New.ttf 37 m 35.1594 25.6135 31 “ -10.3065 24.6392 15.1932 -Courier_New.ttf 37 m 35.1594 25.6135 32 % -10.1162 24.3664 36.5505 -Courier_New.ttf 37 m 35.1594 25.6135 33 £ -8.2087 26.2840 33.8435 -Courier_New.ttf 37 m 35.1594 25.6135 34 . 18.0832 8.8232 7.9800 -Courier_New.ttf 37 m 35.1594 25.6135 35 2 -10.9164 23.1732 36.3838 -Courier_New.ttf 37 m 35.1594 25.6135 36 5 -10.4021 23.7437 36.3838 -Courier_New.ttf 37 m 35.1594 25.6135 37 m -0.0439 35.1594 25.6135 -Courier_New.ttf 37 m 35.1594 25.6135 38 V -7.9869 35.1140 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 39 6 -10.7645 23.7959 36.7876 -Courier_New.ttf 37 m 35.1594 25.6135 40 w 0.6966 32.7502 25.2097 -Courier_New.ttf 37 m 35.1594 25.6135 41 T -8.4351 26.8590 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 42 M -8.1612 34.5367 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 43 G -8.0498 29.5621 34.4140 -Courier_New.ttf 37 m 35.1594 25.6135 44 b -10.4563 29.8826 36.5505 -Courier_New.ttf 37 m 35.1594 25.6135 45 9 -10.6160 22.4193 36.7876 -Courier_New.ttf 37 m 35.1594 25.6135 46 ; 0.0944 12.8068 30.9570 -Courier_New.ttf 37 m 35.1594 25.6135 47 D -7.9259 28.4394 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 48 L -7.6528 28.2727 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 49 y 0.3979 29.3121 36.2527 -Courier_New.ttf 37 m 35.1594 25.6135 50 ‘ -10.2722 12.7529 17.2297 -Courier_New.ttf 37 m 35.1594 25.6135 51 \ -13.8112 24.6392 44.3865 -Courier_New.ttf 37 m 35.1594 25.6135 52 R -7.8284 30.7070 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 53 < -7.1987 28.0000 31.5797 -Courier_New.ttf 37 m 35.1594 25.6135 54 4 -10.5381 22.3232 35.9800 -Courier_New.ttf 37 m 35.1594 25.6135 55 8 -10.8061 21.3094 36.7876 -Courier_New.ttf 37 m 35.1594 25.6135 56 0 -10.9800 23.6959 36.7876 -Courier_New.ttf 37 m 35.1594 25.6135 57 A -7.6783 37.1505 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 58 E -8.1098 27.3234 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 59 B -7.9358 28.4167 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 60 v 0.4729 32.1252 25.2097 -Courier_New.ttf 37 m 35.1594 25.6135 61 k -10.2675 26.6529 35.9800 -Courier_New.ttf 37 m 35.1594 25.6135 62 J -8.0335 28.6766 34.1640 -Courier_New.ttf 37 m 35.1594 25.6135 63 U -7.9450 31.3964 34.1640 -Courier_New.ttf 37 m 35.1594 25.6135 64 j -11.7604 18.4230 48.2928 -Courier_New.ttf 37 m 35.1594 25.6135 65 ( -10.3865 8.4065 43.1932 -Courier_New.ttf 37 m 35.1594 25.6135 66 7 -10.2539 22.0027 35.9800 -Courier_New.ttf 37 m 35.1594 25.6135 67 § -10.3149 27.1696 39.8097 -Courier_New.ttf 37 m 35.1594 25.6135 68 $ -13.1556 21.8261 44.3865 -Courier_New.ttf 37 m 35.1594 25.6135 69 € -8.3839 31.2297 34.4140 -Courier_New.ttf 37 m 35.1594 25.6135 70 / -14.0147 24.6392 44.3865 -Courier_New.ttf 37 m 35.1594 25.6135 71 C -8.1942 28.2727 34.4140 -Courier_New.ttf 37 m 35.1594 25.6135 72 * -10.3196 22.0860 21.9800 -Courier_New.ttf 37 m 35.1594 25.6135 73 ” -10.5518 24.6392 15.1932 -Courier_New.ttf 37 m 35.1594 25.6135 74 ? -8.4839 21.0594 34.9406 -Courier_New.ttf 37 m 35.1594 25.6135 75 { -10.9751 11.7324 43.3121 -Courier_New.ttf 37 m 35.1594 25.6135 76 } -10.4151 11.7324 43.3121 -Courier_New.ttf 37 m 35.1594 25.6135 77 , 17.0447 11.5597 17.2297 -Courier_New.ttf 37 m 35.1594 25.6135 78 I -8.1867 22.0860 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 79 ° -16.6305 15.7638 15.7638 -Courier_New.ttf 37 m 35.1594 25.6135 80 K -7.9740 31.2297 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 81 H -7.8222 28.4333 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 82 q -0.1658 29.1932 36.6565 -Courier_New.ttf 37 m 35.1594 25.6135 83 & -5.4313 21.9800 31.2070 -Courier_New.ttf 37 m 35.1594 25.6135 84 ’ -9.9472 12.7529 17.2297 -Courier_New.ttf 37 m 35.1594 25.6135 85 [ -10.2516 9.5998 43.1932 -Courier_New.ttf 37 m 35.1594 25.6135 86 - 7.2742 24.8892 3.2297 -Courier_New.ttf 37 m 35.1594 25.6135 87 Y -7.9988 29.3410 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 88 Q -8.2397 30.3865 40.7840 -Courier_New.ttf 37 m 35.1594 25.6135 89 " -10.3427 19.6995 16.0365 -Courier_New.ttf 37 m 35.1594 25.6135 90 ! -10.5030 6.4594 36.5505 -Courier_New.ttf 37 m 35.1594 25.6135 91 x 0.7246 29.1932 25.2097 -Courier_New.ttf 37 m 35.1594 25.6135 92 ) -10.4515 8.4065 43.1932 -Courier_New.ttf 37 m 35.1594 25.6135 93 = 3.2428 29.1932 11.3097 -Courier_New.ttf 37 m 35.1594 25.6135 94 + -5.4717 26.8590 29.2455 -Courier_New.ttf 37 m 35.1594 25.6135 95 X -7.9321 30.9092 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 96 » 0.1399 29.5432 26.8068 -Courier_New.ttf 37 m 35.1594 25.6135 97 ' -10.3280 7.9027 17.2297 -Courier_New.ttf 37 m 35.1594 25.6135 98 ¢ -12.2023 20.7867 38.0998 -Courier_New.ttf 37 m 35.1594 25.6135 99 Z -8.0841 23.0959 33.5935 -Courier_New.ttf 37 m 35.1594 25.6135 100 > -6.7541 28.0000 31.5797 -Courier_New.ttf 37 m 35.1594 25.6135 101 ® -8.9125 34.7867 35.0594 -Courier_New.ttf 37 m 35.1594 25.6135 102 © -8.5253 35.0594 34.7867 -Courier_New.ttf 37 m 35.1594 25.6135 103 ] -10.4579 9.5998 43.1932 -Courier_New.ttf 37 m 35.1594 25.6135 104 é -12.4293 27.4295 38.4203 -Courier_New.ttf 37 m 35.1594 25.6135 105 z 0.0646 23.7959 25.2097 -Courier_New.ttf 37 m 35.1594 25.6135 106 _ 39.5649 35.0594 2.3865 -Courier_New.ttf 37 m 35.1594 25.6135 107 ¥ -8.0043 29.6744 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 1 t -0.7741 26.2362 34.6034 -Courier_New.ttf 38 V 35.1140 33.5935 2 h -2.6058 29.6326 35.9800 -Courier_New.ttf 38 V 35.1140 33.5935 3 a 7.9416 26.9256 26.1840 -Courier_New.ttf 38 V 35.1140 33.5935 4 n 7.8590 29.2061 25.6135 -Courier_New.ttf 38 V 35.1140 33.5935 5 P -0.1190 26.0529 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 6 o 7.9327 26.8068 26.1840 -Courier_New.ttf 38 V 35.1140 33.5935 7 e 8.2363 27.4295 26.1840 -Courier_New.ttf 38 V 35.1140 33.5935 8 : 8.4492 8.6565 25.7802 -Courier_New.ttf 38 V 35.1140 33.5935 9 r 7.8518 26.8295 25.6135 -Courier_New.ttf 38 V 35.1140 33.5935 10 l -2.3168 24.4725 35.9800 -Courier_New.ttf 38 V 35.1140 33.5935 11 i -3.9975 24.4725 37.2498 -Courier_New.ttf 38 V 35.1140 33.5935 12 1 -3.9919 22.8527 37.5770 -Courier_New.ttf 38 V 35.1140 33.5935 13 | -2.1585 2.3865 43.1932 -Courier_New.ttf 38 V 35.1140 33.5935 14 N 0.0350 31.3964 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 15 f -2.7674 25.4696 35.9800 -Courier_New.ttf 38 V 35.1140 33.5935 16 g 7.9728 27.8462 36.6565 -Courier_New.ttf 38 V 35.1140 33.5935 17 d -2.6335 30.1138 36.5505 -Courier_New.ttf 38 V 35.1140 33.5935 18 W -0.2232 32.5836 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 19 s 8.1017 23.0959 26.1840 -Courier_New.ttf 38 V 35.1140 33.5935 20 c 8.2145 26.6529 26.1840 -Courier_New.ttf 38 V 35.1140 33.5935 21 u 8.3663 29.6326 25.7802 -Courier_New.ttf 38 V 35.1140 33.5935 22 3 -2.6201 23.6959 36.7876 -Courier_New.ttf 38 V 35.1140 33.5935 23 ~ 12.2188 24.8892 8.5732 -Courier_New.ttf 38 V 35.1140 33.5935 24 # -4.5631 25.0657 42.1962 -Courier_New.ttf 38 V 35.1140 33.5935 25 O -0.1155 29.1932 34.4140 -Courier_New.ttf 38 V 35.1140 33.5935 26 ` -4.0079 9.8498 8.6565 -Courier_New.ttf 38 V 35.1140 33.5935 27 @ -3.9780 22.0800 40.4029 -Courier_New.ttf 38 V 35.1140 33.5935 28 F 0.1040 27.3234 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 29 S -0.2908 24.5392 34.4140 -Courier_New.ttf 38 V 35.1140 33.5935 30 p 7.9145 29.8826 36.6565 -Courier_New.ttf 38 V 35.1140 33.5935 31 “ -2.3269 24.6392 15.1932 -Courier_New.ttf 38 V 35.1140 33.5935 32 % -2.1594 24.3664 36.5505 -Courier_New.ttf 38 V 35.1140 33.5935 33 £ -0.2780 26.2840 33.8435 -Courier_New.ttf 38 V 35.1140 33.5935 34 . 26.2059 8.8232 7.9800 -Courier_New.ttf 38 V 35.1140 33.5935 35 2 -2.9764 23.1732 36.3838 -Courier_New.ttf 38 V 35.1140 33.5935 36 5 -2.3906 23.7437 36.3838 -Courier_New.ttf 38 V 35.1140 33.5935 37 m 7.9767 35.1594 25.6135 -Courier_New.ttf 38 V 35.1140 33.5935 38 V -0.0506 35.1140 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 39 6 -2.5850 23.7959 36.7876 -Courier_New.ttf 38 V 35.1140 33.5935 40 w 8.1967 32.7502 25.2097 -Courier_New.ttf 38 V 35.1140 33.5935 41 T 0.2100 26.8590 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 42 M -0.2266 34.5367 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 43 G -0.3181 29.5621 34.4140 -Courier_New.ttf 38 V 35.1140 33.5935 44 b -2.4942 29.8826 36.5505 -Courier_New.ttf 38 V 35.1140 33.5935 45 9 -2.6304 22.4193 36.7876 -Courier_New.ttf 38 V 35.1140 33.5935 46 ; 8.3955 12.8068 30.9570 -Courier_New.ttf 38 V 35.1140 33.5935 47 D -0.0430 28.4394 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 48 L -0.1865 28.2727 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 49 y 8.4189 29.3121 36.2527 -Courier_New.ttf 38 V 35.1140 33.5935 50 ‘ -2.4095 12.7529 17.2297 -Courier_New.ttf 38 V 35.1140 33.5935 51 \ -5.5259 24.6392 44.3865 -Courier_New.ttf 38 V 35.1140 33.5935 52 R -0.0865 30.7070 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 53 < 1.0793 28.0000 31.5797 -Courier_New.ttf 38 V 35.1140 33.5935 54 4 -2.3403 22.3232 35.9800 -Courier_New.ttf 38 V 35.1140 33.5935 55 8 -2.6166 21.3094 36.7876 -Courier_New.ttf 38 V 35.1140 33.5935 56 0 -2.8124 23.6959 36.7876 -Courier_New.ttf 38 V 35.1140 33.5935 57 A -0.0857 37.1505 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 58 E -0.1169 27.3234 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 59 B 0.1741 28.4167 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 60 v 8.3908 32.1252 25.2097 -Courier_New.ttf 38 V 35.1140 33.5935 61 k -2.3129 26.6529 35.9800 -Courier_New.ttf 38 V 35.1140 33.5935 62 J -0.2231 28.6766 34.1640 -Courier_New.ttf 38 V 35.1140 33.5935 63 U 0.0115 31.3964 34.1640 -Courier_New.ttf 38 V 35.1140 33.5935 64 j -3.7578 18.4230 48.2928 -Courier_New.ttf 38 V 35.1140 33.5935 65 ( -2.6333 8.4065 43.1932 -Courier_New.ttf 38 V 35.1140 33.5935 66 7 -2.2980 22.0027 35.9800 -Courier_New.ttf 38 V 35.1140 33.5935 67 § -2.5561 27.1696 39.8097 -Courier_New.ttf 38 V 35.1140 33.5935 68 $ -5.4815 21.8261 44.3865 -Courier_New.ttf 38 V 35.1140 33.5935 69 € -0.1986 31.2297 34.4140 -Courier_New.ttf 38 V 35.1140 33.5935 70 / -6.0528 24.6392 44.3865 -Courier_New.ttf 38 V 35.1140 33.5935 71 C -0.6484 28.2727 34.4140 -Courier_New.ttf 38 V 35.1140 33.5935 72 * -2.3494 22.0860 21.9800 -Courier_New.ttf 38 V 35.1140 33.5935 73 ” -2.2807 24.6392 15.1932 -Courier_New.ttf 38 V 35.1140 33.5935 74 ? -0.7688 21.0594 34.9406 -Courier_New.ttf 38 V 35.1140 33.5935 75 { -2.1869 11.7324 43.3121 -Courier_New.ttf 38 V 35.1140 33.5935 76 } -2.9195 11.7324 43.3121 -Courier_New.ttf 38 V 35.1140 33.5935 77 , 25.3635 11.5597 17.2297 -Courier_New.ttf 38 V 35.1140 33.5935 78 I 0.1202 22.0860 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 79 ° -8.8047 15.7638 15.7638 -Courier_New.ttf 38 V 35.1140 33.5935 80 K -0.0780 31.2297 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 81 H 0.2574 28.4333 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 82 q 7.7947 29.1932 36.6565 -Courier_New.ttf 38 V 35.1140 33.5935 83 & 2.6431 21.9800 31.2070 -Courier_New.ttf 38 V 35.1140 33.5935 84 ’ -2.2613 12.7529 17.2297 -Courier_New.ttf 38 V 35.1140 33.5935 85 [ -2.4242 9.5998 43.1932 -Courier_New.ttf 38 V 35.1140 33.5935 86 - 15.2788 24.8892 3.2297 -Courier_New.ttf 38 V 35.1140 33.5935 87 Y -0.1516 29.3410 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 88 Q -0.0285 30.3865 40.7840 -Courier_New.ttf 38 V 35.1140 33.5935 89 " -2.1650 19.6995 16.0365 -Courier_New.ttf 38 V 35.1140 33.5935 90 ! -2.2531 6.4594 36.5505 -Courier_New.ttf 38 V 35.1140 33.5935 91 x 8.4517 29.1932 25.2097 -Courier_New.ttf 38 V 35.1140 33.5935 92 ) -2.7087 8.4065 43.1932 -Courier_New.ttf 38 V 35.1140 33.5935 93 = 11.2728 29.1932 11.3097 -Courier_New.ttf 38 V 35.1140 33.5935 94 + 2.4759 26.8590 29.2455 -Courier_New.ttf 38 V 35.1140 33.5935 95 X -0.0045 30.9092 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 96 » 7.9117 29.5432 26.8068 -Courier_New.ttf 38 V 35.1140 33.5935 97 ' -2.4681 7.9027 17.2297 -Courier_New.ttf 38 V 35.1140 33.5935 98 ¢ -4.5805 20.7867 38.0998 -Courier_New.ttf 38 V 35.1140 33.5935 99 Z 0.2660 23.0959 33.5935 -Courier_New.ttf 38 V 35.1140 33.5935 100 > 1.2160 28.0000 31.5797 -Courier_New.ttf 38 V 35.1140 33.5935 101 ® -1.0716 34.7867 35.0594 -Courier_New.ttf 38 V 35.1140 33.5935 102 © -0.7497 35.0594 34.7867 -Courier_New.ttf 38 V 35.1140 33.5935 103 ] -2.4566 9.5998 43.1932 -Courier_New.ttf 38 V 35.1140 33.5935 104 é -3.8651 27.4295 38.4203 -Courier_New.ttf 38 V 35.1140 33.5935 105 z 8.5868 23.7959 25.2097 -Courier_New.ttf 38 V 35.1140 33.5935 106 _ 47.4383 35.0594 2.3865 -Courier_New.ttf 38 V 35.1140 33.5935 107 ¥ 0.2571 29.6744 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 1 t 2.0585 26.2362 34.6034 -Courier_New.ttf 39 6 23.7959 36.7876 2 h 0.3798 29.6326 35.9800 -Courier_New.ttf 39 6 23.7959 36.7876 3 a 10.7786 26.9256 26.1840 -Courier_New.ttf 39 6 23.7959 36.7876 4 n 10.8287 29.2061 25.6135 -Courier_New.ttf 39 6 23.7959 36.7876 5 P 2.8229 26.0529 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 6 o 10.8937 26.8068 26.1840 -Courier_New.ttf 39 6 23.7959 36.7876 7 e 10.8802 27.4295 26.1840 -Courier_New.ttf 39 6 23.7959 36.7876 8 : 11.1501 8.6565 25.7802 -Courier_New.ttf 39 6 23.7959 36.7876 9 r 10.3695 26.8295 25.6135 -Courier_New.ttf 39 6 23.7959 36.7876 10 l 0.3336 24.4725 35.9800 -Courier_New.ttf 39 6 23.7959 36.7876 11 i -0.5925 24.4725 37.2498 -Courier_New.ttf 39 6 23.7959 36.7876 12 1 -1.3244 22.8527 37.5770 -Courier_New.ttf 39 6 23.7959 36.7876 13 | 0.3667 2.3865 43.1932 -Courier_New.ttf 39 6 23.7959 36.7876 14 N 2.9516 31.3964 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 15 f 0.4741 25.4696 35.9800 -Courier_New.ttf 39 6 23.7959 36.7876 16 g 10.8157 27.8462 36.6565 -Courier_New.ttf 39 6 23.7959 36.7876 17 d 0.2440 30.1138 36.5505 -Courier_New.ttf 39 6 23.7959 36.7876 18 W 2.6864 32.5836 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 19 s 11.2239 23.0959 26.1840 -Courier_New.ttf 39 6 23.7959 36.7876 20 c 10.6633 26.6529 26.1840 -Courier_New.ttf 39 6 23.7959 36.7876 21 u 11.0513 29.6326 25.7802 -Courier_New.ttf 39 6 23.7959 36.7876 22 3 -0.0570 23.6959 36.7876 -Courier_New.ttf 39 6 23.7959 36.7876 23 ~ 15.5465 24.8892 8.5732 -Courier_New.ttf 39 6 23.7959 36.7876 24 # -2.0023 25.0657 42.1962 -Courier_New.ttf 39 6 23.7959 36.7876 25 O 2.7132 29.1932 34.4140 -Courier_New.ttf 39 6 23.7959 36.7876 26 ` -1.6648 9.8498 8.6565 -Courier_New.ttf 39 6 23.7959 36.7876 27 @ -1.1465 22.0800 40.4029 -Courier_New.ttf 39 6 23.7959 36.7876 28 F 2.8449 27.3234 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 29 S 2.5780 24.5392 34.4140 -Courier_New.ttf 39 6 23.7959 36.7876 30 p 10.8445 29.8826 36.6565 -Courier_New.ttf 39 6 23.7959 36.7876 31 “ 0.4001 24.6392 15.1932 -Courier_New.ttf 39 6 23.7959 36.7876 32 % 0.5253 24.3664 36.5505 -Courier_New.ttf 39 6 23.7959 36.7876 33 £ 2.6116 26.2840 33.8435 -Courier_New.ttf 39 6 23.7959 36.7876 34 . 28.7691 8.8232 7.9800 -Courier_New.ttf 39 6 23.7959 36.7876 35 2 -0.1613 23.1732 36.3838 -Courier_New.ttf 39 6 23.7959 36.7876 36 5 0.3888 23.7437 36.3838 -Courier_New.ttf 39 6 23.7959 36.7876 37 m 10.6948 35.1594 25.6135 -Courier_New.ttf 39 6 23.7959 36.7876 38 V 2.7325 35.1140 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 39 6 -0.0085 23.7959 36.7876 -Courier_New.ttf 39 6 23.7959 36.7876 40 w 11.2865 32.7502 25.2097 -Courier_New.ttf 39 6 23.7959 36.7876 41 T 2.3894 26.8590 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 42 M 2.9844 34.5367 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 43 G 2.6495 29.5621 34.4140 -Courier_New.ttf 39 6 23.7959 36.7876 44 b 0.2870 29.8826 36.5505 -Courier_New.ttf 39 6 23.7959 36.7876 45 9 0.1632 22.4193 36.7876 -Courier_New.ttf 39 6 23.7959 36.7876 46 ; 11.1199 12.8068 30.9570 -Courier_New.ttf 39 6 23.7959 36.7876 47 D 2.8669 28.4394 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 48 L 2.7274 28.2727 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 49 y 11.1054 29.3121 36.2527 -Courier_New.ttf 39 6 23.7959 36.7876 50 ‘ 0.4850 12.7529 17.2297 -Courier_New.ttf 39 6 23.7959 36.7876 51 \ -2.9216 24.6392 44.3865 -Courier_New.ttf 39 6 23.7959 36.7876 52 R 2.6234 30.7070 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 53 < 3.9503 28.0000 31.5797 -Courier_New.ttf 39 6 23.7959 36.7876 54 4 0.3167 22.3232 35.9800 -Courier_New.ttf 39 6 23.7959 36.7876 55 8 0.0032 21.3094 36.7876 -Courier_New.ttf 39 6 23.7959 36.7876 56 0 -0.0789 23.6959 36.7876 -Courier_New.ttf 39 6 23.7959 36.7876 57 A 2.9371 37.1505 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 58 E 2.5161 27.3234 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 59 B 2.5623 28.4167 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 60 v 11.4211 32.1252 25.2097 -Courier_New.ttf 39 6 23.7959 36.7876 61 k 0.7235 26.6529 35.9800 -Courier_New.ttf 39 6 23.7959 36.7876 62 J 2.6147 28.6766 34.1640 -Courier_New.ttf 39 6 23.7959 36.7876 63 U 2.9288 31.3964 34.1640 -Courier_New.ttf 39 6 23.7959 36.7876 64 j -0.9275 18.4230 48.2928 -Courier_New.ttf 39 6 23.7959 36.7876 65 ( 0.5355 8.4065 43.1932 -Courier_New.ttf 39 6 23.7959 36.7876 66 7 0.2783 22.0027 35.9800 -Courier_New.ttf 39 6 23.7959 36.7876 67 § 0.7904 27.1696 39.8097 -Courier_New.ttf 39 6 23.7959 36.7876 68 $ -2.4205 21.8261 44.3865 -Courier_New.ttf 39 6 23.7959 36.7876 69 € 2.5379 31.2297 34.4140 -Courier_New.ttf 39 6 23.7959 36.7876 70 / -3.1754 24.6392 44.3865 -Courier_New.ttf 39 6 23.7959 36.7876 71 C 2.5333 28.2727 34.4140 -Courier_New.ttf 39 6 23.7959 36.7876 72 * 0.5209 22.0860 21.9800 -Courier_New.ttf 39 6 23.7959 36.7876 73 ” 0.6092 24.6392 15.1932 -Courier_New.ttf 39 6 23.7959 36.7876 74 ? 2.0457 21.0594 34.9406 -Courier_New.ttf 39 6 23.7959 36.7876 75 { 0.4014 11.7324 43.3121 -Courier_New.ttf 39 6 23.7959 36.7876 76 } -0.0419 11.7324 43.3121 -Courier_New.ttf 39 6 23.7959 36.7876 77 , 27.9992 11.5597 17.2297 -Courier_New.ttf 39 6 23.7959 36.7876 78 I 2.5395 22.0860 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 79 ° -5.8946 15.7638 15.7638 -Courier_New.ttf 39 6 23.7959 36.7876 80 K 2.6258 31.2297 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 81 H 2.8742 28.4333 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 82 q 10.8858 29.1932 36.6565 -Courier_New.ttf 39 6 23.7959 36.7876 83 & 5.5898 21.9800 31.2070 -Courier_New.ttf 39 6 23.7959 36.7876 84 ’ 0.6593 12.7529 17.2297 -Courier_New.ttf 39 6 23.7959 36.7876 85 [ 0.6546 9.5998 43.1932 -Courier_New.ttf 39 6 23.7959 36.7876 86 - 17.6852 24.8892 3.2297 -Courier_New.ttf 39 6 23.7959 36.7876 87 Y 2.8046 29.3410 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 88 Q 2.7933 30.3865 40.7840 -Courier_New.ttf 39 6 23.7959 36.7876 89 " 0.4707 19.6995 16.0365 -Courier_New.ttf 39 6 23.7959 36.7876 90 ! 0.1321 6.4594 36.5505 -Courier_New.ttf 39 6 23.7959 36.7876 91 x 11.2626 29.1932 25.2097 -Courier_New.ttf 39 6 23.7959 36.7876 92 ) 0.5215 8.4065 43.1932 -Courier_New.ttf 39 6 23.7959 36.7876 93 = 14.0730 29.1932 11.3097 -Courier_New.ttf 39 6 23.7959 36.7876 94 + 5.3039 26.8590 29.2455 -Courier_New.ttf 39 6 23.7959 36.7876 95 X 2.9323 30.9092 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 96 » 10.7391 28.7766 26.8068 -Courier_New.ttf 39 6 23.7959 36.7876 97 ' 0.0483 7.9027 17.2297 -Courier_New.ttf 39 6 23.7959 36.7876 98 ¢ -1.7479 20.7867 38.0998 -Courier_New.ttf 39 6 23.7959 36.7876 99 Z 2.7820 23.0959 33.5935 -Courier_New.ttf 39 6 23.7959 36.7876 100 > 4.0283 28.0000 31.5797 -Courier_New.ttf 39 6 23.7959 36.7876 101 ® 1.9104 34.7867 35.0594 -Courier_New.ttf 39 6 23.7959 36.7876 102 © 2.4827 35.0594 34.7867 -Courier_New.ttf 39 6 23.7959 36.7876 103 ] 0.1439 9.5998 43.1932 -Courier_New.ttf 39 6 23.7959 36.7876 104 é -1.6142 27.4295 38.4203 -Courier_New.ttf 39 6 23.7959 36.7876 105 z 11.3572 23.7959 25.2097 -Courier_New.ttf 39 6 23.7959 36.7876 106 _ 50.3908 35.0594 2.3865 -Courier_New.ttf 39 6 23.7959 36.7876 107 ¥ 2.7522 29.6744 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 1 t -8.7445 26.2362 34.6034 -Courier_New.ttf 40 w 32.7502 25.2097 2 h -10.7308 29.6326 35.9800 -Courier_New.ttf 40 w 32.7502 25.2097 3 a -0.4181 26.9256 26.1840 -Courier_New.ttf 40 w 32.7502 25.2097 4 n -0.2680 29.2061 25.6135 -Courier_New.ttf 40 w 32.7502 25.2097 5 P -8.3898 26.0529 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 6 o -0.3657 26.8068 26.1840 -Courier_New.ttf 40 w 32.7502 25.2097 7 e -0.1685 27.4295 26.1840 -Courier_New.ttf 40 w 32.7502 25.2097 8 : -0.2651 8.6565 25.7802 -Courier_New.ttf 40 w 32.7502 25.2097 9 r -0.1836 26.8295 25.6135 -Courier_New.ttf 40 w 32.7502 25.2097 10 l -10.9802 24.4725 35.9800 -Courier_New.ttf 40 w 32.7502 25.2097 11 i -12.1837 24.4725 37.2498 -Courier_New.ttf 40 w 32.7502 25.2097 12 1 -12.5342 22.8527 37.5770 -Courier_New.ttf 40 w 32.7502 25.2097 13 | -10.8331 2.3865 43.1932 -Courier_New.ttf 40 w 32.7502 25.2097 14 N -8.1322 31.3964 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 15 f -11.2689 25.4696 35.9800 -Courier_New.ttf 40 w 32.7502 25.2097 16 g -0.2857 27.8462 36.6565 -Courier_New.ttf 40 w 32.7502 25.2097 17 d -11.0648 30.1138 36.5505 -Courier_New.ttf 40 w 32.7502 25.2097 18 W -8.3593 32.5836 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 19 s -0.5481 23.0959 26.1840 -Courier_New.ttf 40 w 32.7502 25.2097 20 c -0.4117 26.6529 26.1840 -Courier_New.ttf 40 w 32.7502 25.2097 21 u -0.0000 29.6326 25.7802 -Courier_New.ttf 40 w 32.7502 25.2097 22 3 -11.0943 23.6959 36.7876 -Courier_New.ttf 40 w 32.7502 25.2097 23 ~ 4.1925 24.8892 8.5732 -Courier_New.ttf 40 w 32.7502 25.2097 24 # -12.8528 25.0657 42.1962 -Courier_New.ttf 40 w 32.7502 25.2097 25 O -8.5090 29.1932 34.4140 -Courier_New.ttf 40 w 32.7502 25.2097 26 ` -12.7172 9.8498 8.6565 -Courier_New.ttf 40 w 32.7502 25.2097 27 @ -12.2848 22.0800 40.4029 -Courier_New.ttf 40 w 32.7502 25.2097 28 F -8.3695 27.3234 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 29 S -8.5197 24.5392 34.4140 -Courier_New.ttf 40 w 32.7502 25.2097 30 p -0.2594 29.8826 36.6565 -Courier_New.ttf 40 w 32.7502 25.2097 31 “ -10.4530 24.6392 15.1932 -Courier_New.ttf 40 w 32.7502 25.2097 32 % -11.0456 24.3664 36.5505 -Courier_New.ttf 40 w 32.7502 25.2097 33 £ -8.7455 26.2840 33.8435 -Courier_New.ttf 40 w 32.7502 25.2097 34 . 18.0280 8.8232 7.9800 -Courier_New.ttf 40 w 32.7502 25.2097 35 2 -11.1741 23.1732 36.3838 -Courier_New.ttf 40 w 32.7502 25.2097 36 5 -10.8917 23.7437 36.3838 -Courier_New.ttf 40 w 32.7502 25.2097 37 m -0.1575 35.1594 25.6135 -Courier_New.ttf 40 w 32.7502 25.2097 38 V -8.6647 35.1140 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 39 6 -11.2553 23.7959 36.7876 -Courier_New.ttf 40 w 32.7502 25.2097 40 w 0.0363 32.7502 25.2097 -Courier_New.ttf 40 w 32.7502 25.2097 41 T -8.1777 26.8590 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 42 M -8.3676 34.5367 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 43 G -8.5383 29.5621 34.4140 -Courier_New.ttf 40 w 32.7502 25.2097 44 b -10.9641 29.8826 36.5505 -Courier_New.ttf 40 w 32.7502 25.2097 45 9 -10.9858 22.4193 36.7876 -Courier_New.ttf 40 w 32.7502 25.2097 46 ; 0.2481 12.8068 30.9570 -Courier_New.ttf 40 w 32.7502 25.2097 47 D -8.5632 28.4394 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 48 L -8.4548 28.2727 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 49 y -0.0347 29.3121 36.2527 -Courier_New.ttf 40 w 32.7502 25.2097 50 ‘ -10.5633 12.7529 17.2297 -Courier_New.ttf 40 w 32.7502 25.2097 51 \ -13.8817 24.6392 44.3865 -Courier_New.ttf 40 w 32.7502 25.2097 52 R -8.5065 30.7070 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 53 < -6.8950 28.0000 31.5797 -Courier_New.ttf 40 w 32.7502 25.2097 54 4 -10.8860 22.3232 35.9800 -Courier_New.ttf 40 w 32.7502 25.2097 55 8 -11.4606 21.3094 36.7876 -Courier_New.ttf 40 w 32.7502 25.2097 56 0 -10.7817 23.6959 36.7876 -Courier_New.ttf 40 w 32.7502 25.2097 57 A -8.6553 37.1505 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 58 E -8.0729 27.3234 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 59 B -8.1798 28.4167 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 60 v -0.0296 32.1252 25.2097 -Courier_New.ttf 40 w 32.7502 25.2097 61 k -10.8316 26.6529 35.9800 -Courier_New.ttf 40 w 32.7502 25.2097 62 J -8.3828 28.6766 34.1640 -Courier_New.ttf 40 w 32.7502 25.2097 63 U -8.4209 31.3964 34.1640 -Courier_New.ttf 40 w 32.7502 25.2097 64 j -12.1696 18.4230 48.2928 -Courier_New.ttf 40 w 32.7502 25.2097 65 ( -11.0511 8.4065 43.1932 -Courier_New.ttf 40 w 32.7502 25.2097 66 7 -10.6578 22.0027 35.9800 -Courier_New.ttf 40 w 32.7502 25.2097 67 § -10.8937 27.1696 39.8097 -Courier_New.ttf 40 w 32.7502 25.2097 68 $ -13.7475 21.8261 44.3865 -Courier_New.ttf 40 w 32.7502 25.2097 69 € -8.6081 31.2297 34.4140 -Courier_New.ttf 40 w 32.7502 25.2097 70 / -14.4193 24.6392 44.3865 -Courier_New.ttf 40 w 32.7502 25.2097 71 C -8.4332 28.2727 34.4140 -Courier_New.ttf 40 w 32.7502 25.2097 72 * -10.4824 22.0860 21.9800 -Courier_New.ttf 40 w 32.7502 25.2097 73 ” -10.9609 24.6392 15.1932 -Courier_New.ttf 40 w 32.7502 25.2097 74 ? -9.1385 21.0594 34.9406 -Courier_New.ttf 40 w 32.7502 25.2097 75 { -11.0762 11.7324 43.3121 -Courier_New.ttf 40 w 32.7502 25.2097 76 } -11.4407 11.7324 43.3121 -Courier_New.ttf 40 w 32.7502 25.2097 77 , 16.7179 11.5597 17.2297 -Courier_New.ttf 40 w 32.7502 25.2097 78 I -8.2400 22.0860 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 79 ° -16.8304 15.7638 15.7638 -Courier_New.ttf 40 w 32.7502 25.2097 80 K -8.2272 31.2297 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 81 H -8.5597 28.4333 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 82 q -0.2997 29.1932 36.6565 -Courier_New.ttf 40 w 32.7502 25.2097 83 & -5.3984 21.9800 31.2070 -Courier_New.ttf 40 w 32.7502 25.2097 84 ’ -10.7185 12.7529 17.2297 -Courier_New.ttf 40 w 32.7502 25.2097 85 [ -10.2814 9.5998 43.1932 -Courier_New.ttf 40 w 32.7502 25.2097 86 - 6.6931 24.8892 3.2297 -Courier_New.ttf 40 w 32.7502 25.2097 87 Y -8.4555 29.3410 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 88 Q -8.6922 30.3865 40.7840 -Courier_New.ttf 40 w 32.7502 25.2097 89 " -10.8847 19.6995 16.0365 -Courier_New.ttf 40 w 32.7502 25.2097 90 ! -10.7759 6.4594 36.5505 -Courier_New.ttf 40 w 32.7502 25.2097 91 x -0.0019 29.1932 25.2097 -Courier_New.ttf 40 w 32.7502 25.2097 92 ) -10.8990 8.4065 43.1932 -Courier_New.ttf 40 w 32.7502 25.2097 93 = 2.6092 29.1932 11.3097 -Courier_New.ttf 40 w 32.7502 25.2097 94 + -5.6711 26.8590 29.2455 -Courier_New.ttf 40 w 32.7502 25.2097 95 X -8.3663 30.9092 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 96 » -0.3923 29.5432 26.8068 -Courier_New.ttf 40 w 32.7502 25.2097 97 ' -10.5911 7.9027 17.2297 -Courier_New.ttf 40 w 32.7502 25.2097 98 ¢ -13.1358 20.7867 38.0998 -Courier_New.ttf 40 w 32.7502 25.2097 99 Z -8.6679 23.0959 33.5935 -Courier_New.ttf 40 w 32.7502 25.2097 100 > -7.1262 28.0000 31.5797 -Courier_New.ttf 40 w 32.7502 25.2097 101 ® -9.4021 34.7867 35.0594 -Courier_New.ttf 40 w 32.7502 25.2097 102 © -8.9649 35.0594 34.7867 -Courier_New.ttf 40 w 32.7502 25.2097 103 ] -10.9126 9.5998 43.1932 -Courier_New.ttf 40 w 32.7502 25.2097 104 é -12.8143 27.4295 38.4203 -Courier_New.ttf 40 w 32.7502 25.2097 105 z 0.0909 23.7959 25.2097 -Courier_New.ttf 40 w 32.7502 25.2097 106 _ 39.2635 35.0594 2.3865 -Courier_New.ttf 40 w 32.7502 25.2097 107 ¥ -8.4885 29.6744 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 1 t -0.4224 26.2362 34.6034 -Courier_New.ttf 41 T 26.8590 33.5935 2 h -2.3767 29.6326 35.9800 -Courier_New.ttf 41 T 26.8590 33.5935 3 a 8.0806 26.9256 26.1840 -Courier_New.ttf 41 T 26.8590 33.5935 4 n 8.0146 29.2061 25.6135 -Courier_New.ttf 41 T 26.8590 33.5935 5 P -0.2160 26.0529 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 6 o 7.7700 26.8068 26.1840 -Courier_New.ttf 41 T 26.8590 33.5935 7 e 8.0327 27.4295 26.1840 -Courier_New.ttf 41 T 26.8590 33.5935 8 : 8.4328 8.6565 25.7802 -Courier_New.ttf 41 T 26.8590 33.5935 9 r 8.1268 26.8295 25.6135 -Courier_New.ttf 41 T 26.8590 33.5935 10 l -2.5032 24.4725 35.9800 -Courier_New.ttf 41 T 26.8590 33.5935 11 i -3.8235 24.4725 37.2498 -Courier_New.ttf 41 T 26.8590 33.5935 12 1 -4.0056 22.8527 37.5770 -Courier_New.ttf 41 T 26.8590 33.5935 13 | -2.3555 2.3865 43.1932 -Courier_New.ttf 41 T 26.8590 33.5935 14 N 0.0891 31.3964 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 15 f -2.3721 25.4696 35.9800 -Courier_New.ttf 41 T 26.8590 33.5935 16 g 8.0327 27.8462 36.6565 -Courier_New.ttf 41 T 26.8590 33.5935 17 d -2.2266 30.1138 36.5505 -Courier_New.ttf 41 T 26.8590 33.5935 18 W 0.2495 32.5836 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 19 s 8.1037 23.0959 26.1840 -Courier_New.ttf 41 T 26.8590 33.5935 20 c 7.9216 26.6529 26.1840 -Courier_New.ttf 41 T 26.8590 33.5935 21 u 8.3227 29.6326 25.7802 -Courier_New.ttf 41 T 26.8590 33.5935 22 3 -2.9060 23.6959 36.7876 -Courier_New.ttf 41 T 26.8590 33.5935 23 ~ 12.4613 24.8892 8.5732 -Courier_New.ttf 41 T 26.8590 33.5935 24 # -4.8366 25.0657 42.1962 -Courier_New.ttf 41 T 26.8590 33.5935 25 O -0.0556 29.1932 34.4140 -Courier_New.ttf 41 T 26.8590 33.5935 26 ` -3.9829 9.8498 8.6565 -Courier_New.ttf 41 T 26.8590 33.5935 27 @ -4.0256 22.0800 40.4029 -Courier_New.ttf 41 T 26.8590 33.5935 28 F 0.0879 27.3234 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 29 S -0.0692 24.5392 34.4140 -Courier_New.ttf 41 T 26.8590 33.5935 30 p 7.8192 29.8826 36.6565 -Courier_New.ttf 41 T 26.8590 33.5935 31 “ -2.7674 24.6392 15.1932 -Courier_New.ttf 41 T 26.8590 33.5935 32 % -2.2709 24.3664 36.5505 -Courier_New.ttf 41 T 26.8590 33.5935 33 £ -0.2441 26.2840 33.8435 -Courier_New.ttf 41 T 26.8590 33.5935 34 . 26.0227 8.8232 7.9800 -Courier_New.ttf 41 T 26.8590 33.5935 35 2 -2.7876 23.1732 36.3838 -Courier_New.ttf 41 T 26.8590 33.5935 36 5 -2.4976 23.7437 36.3838 -Courier_New.ttf 41 T 26.8590 33.5935 37 m 8.0129 35.1594 25.6135 -Courier_New.ttf 41 T 26.8590 33.5935 38 V -0.0917 35.1140 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 39 6 -2.6575 23.7959 36.7876 -Courier_New.ttf 41 T 26.8590 33.5935 40 w 8.4657 32.7502 25.2097 -Courier_New.ttf 41 T 26.8590 33.5935 41 T -0.0162 26.8590 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 42 M -0.2689 34.5367 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 43 G -0.1342 29.5621 34.4140 -Courier_New.ttf 41 T 26.8590 33.5935 44 b -2.3661 29.8826 36.5505 -Courier_New.ttf 41 T 26.8590 33.5935 45 9 -2.7078 22.4193 36.7876 -Courier_New.ttf 41 T 26.8590 33.5935 46 ; 8.5763 12.8068 30.9570 -Courier_New.ttf 41 T 26.8590 33.5935 47 D -0.1770 28.4394 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 48 L 0.2405 28.2727 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 49 y 8.2207 29.3121 36.2527 -Courier_New.ttf 41 T 26.8590 33.5935 50 ‘ -2.2296 12.7529 17.2297 -Courier_New.ttf 41 T 26.8590 33.5935 51 \ -5.8606 24.6392 44.3865 -Courier_New.ttf 41 T 26.8590 33.5935 52 R 0.0885 30.7070 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 53 < 1.1445 28.0000 31.5797 -Courier_New.ttf 41 T 26.8590 33.5935 54 4 -2.4781 22.3232 35.9800 -Courier_New.ttf 41 T 26.8590 33.5935 55 8 -3.0957 21.3094 36.7876 -Courier_New.ttf 41 T 26.8590 33.5935 56 0 -2.6917 23.6959 36.7876 -Courier_New.ttf 41 T 26.8590 33.5935 57 A -0.1339 37.1505 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 58 E 0.2106 27.3234 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 59 B -0.0000 28.4167 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 60 v 8.3383 32.1252 25.2097 -Courier_New.ttf 41 T 26.8590 33.5935 61 k -2.3980 26.6529 35.9800 -Courier_New.ttf 41 T 26.8590 33.5935 62 J -0.0532 28.6766 34.1640 -Courier_New.ttf 41 T 26.8590 33.5935 63 U -0.0742 31.3964 34.1640 -Courier_New.ttf 41 T 26.8590 33.5935 64 j -3.9093 18.4230 48.2928 -Courier_New.ttf 41 T 26.8590 33.5935 65 ( -2.4678 8.4065 43.1932 -Courier_New.ttf 41 T 26.8590 33.5935 66 7 -2.2136 22.0027 35.9800 -Courier_New.ttf 41 T 26.8590 33.5935 67 § -2.2470 27.1696 39.8097 -Courier_New.ttf 41 T 26.8590 33.5935 68 $ -5.2542 21.8261 44.3865 -Courier_New.ttf 41 T 26.8590 33.5935 69 € 0.0355 31.2297 34.4140 -Courier_New.ttf 41 T 26.8590 33.5935 70 / -6.2310 24.6392 44.3865 -Courier_New.ttf 41 T 26.8590 33.5935 71 C -0.0622 28.2727 34.4140 -Courier_New.ttf 41 T 26.8590 33.5935 72 * -2.5890 22.0860 21.9800 -Courier_New.ttf 41 T 26.8590 33.5935 73 ” -2.3379 24.6392 15.1932 -Courier_New.ttf 41 T 26.8590 33.5935 74 ? -0.9605 21.0594 34.9406 -Courier_New.ttf 41 T 26.8590 33.5935 75 { -2.7840 11.7324 43.3121 -Courier_New.ttf 41 T 26.8590 33.5935 76 } -2.3286 11.7324 43.3121 -Courier_New.ttf 41 T 26.8590 33.5935 77 , 25.1527 11.5597 17.2297 -Courier_New.ttf 41 T 26.8590 33.5935 78 I 0.0755 22.0860 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 79 ° -8.4347 15.7638 15.7638 -Courier_New.ttf 41 T 26.8590 33.5935 80 K -0.0143 31.2297 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 81 H 0.0629 28.4333 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 82 q 8.3043 29.1932 36.6565 -Courier_New.ttf 41 T 26.8590 33.5935 83 & 3.1183 21.9800 31.2070 -Courier_New.ttf 41 T 26.8590 33.5935 84 ’ -2.2206 12.7529 17.2297 -Courier_New.ttf 41 T 26.8590 33.5935 85 [ -2.1466 9.5998 43.1932 -Courier_New.ttf 41 T 26.8590 33.5935 86 - 15.0348 24.8892 3.2297 -Courier_New.ttf 41 T 26.8590 33.5935 87 Y -0.2852 29.3410 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 88 Q 0.0011 30.3865 40.7840 -Courier_New.ttf 41 T 26.8590 33.5935 89 " -2.3115 19.6995 16.0365 -Courier_New.ttf 41 T 26.8590 33.5935 90 ! -2.3333 6.4594 36.5505 -Courier_New.ttf 41 T 26.8590 33.5935 91 x 8.3312 29.1932 25.2097 -Courier_New.ttf 41 T 26.8590 33.5935 92 ) -2.2184 8.4065 43.1932 -Courier_New.ttf 41 T 26.8590 33.5935 93 = 11.4642 29.1932 11.3097 -Courier_New.ttf 41 T 26.8590 33.5935 94 + 2.7337 26.8590 29.2455 -Courier_New.ttf 41 T 26.8590 33.5935 95 X 0.1339 30.9092 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 96 » 7.7734 29.5432 26.8068 -Courier_New.ttf 41 T 26.8590 33.5935 97 ' -2.6549 7.9027 17.2297 -Courier_New.ttf 41 T 26.8590 33.5935 98 ¢ -4.7130 20.7867 38.0998 -Courier_New.ttf 41 T 26.8590 33.5935 99 Z -0.0468 23.0959 33.5935 -Courier_New.ttf 41 T 26.8590 33.5935 100 > 0.9434 28.0000 31.5797 -Courier_New.ttf 41 T 26.8590 33.5935 101 ® -0.7412 34.7867 35.0594 -Courier_New.ttf 41 T 26.8590 33.5935 102 © -0.5582 35.0594 34.7867 -Courier_New.ttf 41 T 26.8590 33.5935 103 ] -2.3624 9.5998 43.1932 -Courier_New.ttf 41 T 26.8590 33.5935 104 é -4.3472 27.4295 38.4203 -Courier_New.ttf 41 T 26.8590 33.5935 105 z 8.3365 23.7959 25.2097 -Courier_New.ttf 41 T 26.8590 33.5935 106 _ 47.3762 35.0594 2.3865 -Courier_New.ttf 41 T 26.8590 33.5935 107 ¥ 0.2113 29.6744 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 1 t -0.4154 26.2362 34.6034 -Courier_New.ttf 42 M 34.5367 33.5935 2 h -2.5945 29.6326 35.9800 -Courier_New.ttf 42 M 34.5367 33.5935 3 a 8.0212 26.9256 26.1840 -Courier_New.ttf 42 M 34.5367 33.5935 4 n 7.8284 29.2061 25.6135 -Courier_New.ttf 42 M 34.5367 33.5935 5 P 0.1626 26.0529 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 6 o 8.0046 26.8068 26.1840 -Courier_New.ttf 42 M 34.5367 33.5935 7 e 7.9096 27.4295 26.1840 -Courier_New.ttf 42 M 34.5367 33.5935 8 : 8.7754 8.6565 25.7802 -Courier_New.ttf 42 M 34.5367 33.5935 9 r 8.0361 26.8295 25.6135 -Courier_New.ttf 42 M 34.5367 33.5935 10 l -2.3071 24.4725 35.9800 -Courier_New.ttf 42 M 34.5367 33.5935 11 i -3.4405 24.4725 37.2498 -Courier_New.ttf 42 M 34.5367 33.5935 12 1 -4.0322 22.8527 37.5770 -Courier_New.ttf 42 M 34.5367 33.5935 13 | -2.1790 2.3865 43.1932 -Courier_New.ttf 42 M 34.5367 33.5935 14 N -0.1769 31.3964 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 15 f -2.6093 25.4696 35.9800 -Courier_New.ttf 42 M 34.5367 33.5935 16 g 8.0157 27.8462 36.6565 -Courier_New.ttf 42 M 34.5367 33.5935 17 d -2.3760 30.1138 36.5505 -Courier_New.ttf 42 M 34.5367 33.5935 18 W -0.2494 32.5836 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 19 s 8.0527 23.0959 26.1840 -Courier_New.ttf 42 M 34.5367 33.5935 20 c 7.7855 26.6529 26.1840 -Courier_New.ttf 42 M 34.5367 33.5935 21 u 8.3694 29.6326 25.7802 -Courier_New.ttf 42 M 34.5367 33.5935 22 3 -2.8534 23.6959 36.7876 -Courier_New.ttf 42 M 34.5367 33.5935 23 ~ 12.4956 24.8892 8.5732 -Courier_New.ttf 42 M 34.5367 33.5935 24 # -4.6932 25.0657 42.1962 -Courier_New.ttf 42 M 34.5367 33.5935 25 O -0.4280 29.1932 34.4140 -Courier_New.ttf 42 M 34.5367 33.5935 26 ` -4.0450 9.8498 8.6565 -Courier_New.ttf 42 M 34.5367 33.5935 27 @ -3.7466 22.0800 40.4029 -Courier_New.ttf 42 M 34.5367 33.5935 28 F 0.1020 27.3234 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 29 S -0.2891 24.5392 34.4140 -Courier_New.ttf 42 M 34.5367 33.5935 30 p 8.0864 29.8826 36.6565 -Courier_New.ttf 42 M 34.5367 33.5935 31 “ -2.2131 24.6392 15.1932 -Courier_New.ttf 42 M 34.5367 33.5935 32 % -2.0895 24.3664 36.5505 -Courier_New.ttf 42 M 34.5367 33.5935 33 £ -0.1818 26.2840 33.8435 -Courier_New.ttf 42 M 34.5367 33.5935 34 . 26.4168 8.8232 7.9800 -Courier_New.ttf 42 M 34.5367 33.5935 35 2 -2.9946 23.1732 36.3838 -Courier_New.ttf 42 M 34.5367 33.5935 36 5 -2.4534 23.7437 36.3838 -Courier_New.ttf 42 M 34.5367 33.5935 37 m 8.2255 35.1594 25.6135 -Courier_New.ttf 42 M 34.5367 33.5935 38 V 0.3674 35.1140 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 39 6 -2.3705 23.7959 36.7876 -Courier_New.ttf 42 M 34.5367 33.5935 40 w 8.0854 32.7502 25.2097 -Courier_New.ttf 42 M 34.5367 33.5935 41 T -0.3068 26.8590 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 42 M -0.1634 34.5367 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 43 G -0.0010 29.5621 34.4140 -Courier_New.ttf 42 M 34.5367 33.5935 44 b -2.1531 29.8826 36.5505 -Courier_New.ttf 42 M 34.5367 33.5935 45 9 -3.0029 22.4193 36.7876 -Courier_New.ttf 42 M 34.5367 33.5935 46 ; 8.5571 12.8068 30.9570 -Courier_New.ttf 42 M 34.5367 33.5935 47 D 0.0806 28.4394 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 48 L 0.0903 28.2727 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 49 y 8.1230 29.3121 36.2527 -Courier_New.ttf 42 M 34.5367 33.5935 50 ‘ -2.1247 12.7529 17.2297 -Courier_New.ttf 42 M 34.5367 33.5935 51 \ -5.9240 24.6392 44.3865 -Courier_New.ttf 42 M 34.5367 33.5935 52 R -0.1039 30.7070 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 53 < 0.8090 28.0000 31.5797 -Courier_New.ttf 42 M 34.5367 33.5935 54 4 -2.6575 22.3232 35.9800 -Courier_New.ttf 42 M 34.5367 33.5935 55 8 -3.1296 21.3094 36.7876 -Courier_New.ttf 42 M 34.5367 33.5935 56 0 -2.8403 23.6959 36.7876 -Courier_New.ttf 42 M 34.5367 33.5935 57 A -0.0417 37.1505 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 58 E 0.0897 27.3234 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 59 B 0.0570 28.4167 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 60 v 8.6191 32.1252 25.2097 -Courier_New.ttf 42 M 34.5367 33.5935 61 k -2.5385 26.6529 35.9800 -Courier_New.ttf 42 M 34.5367 33.5935 62 J -0.1780 28.6766 34.1640 -Courier_New.ttf 42 M 34.5367 33.5935 63 U 0.0658 31.3964 34.1640 -Courier_New.ttf 42 M 34.5367 33.5935 64 j -3.8326 18.4230 48.2928 -Courier_New.ttf 42 M 34.5367 33.5935 65 ( -2.2877 8.4065 43.1932 -Courier_New.ttf 42 M 34.5367 33.5935 66 7 -2.3572 22.0027 35.9800 -Courier_New.ttf 42 M 34.5367 33.5935 67 § -2.4938 27.1696 39.8097 -Courier_New.ttf 42 M 34.5367 33.5935 68 $ -5.1831 21.8261 44.3865 -Courier_New.ttf 42 M 34.5367 33.5935 69 € -0.2745 31.2297 34.4140 -Courier_New.ttf 42 M 34.5367 33.5935 70 / -6.2837 24.6392 44.3865 -Courier_New.ttf 42 M 34.5367 33.5935 71 C -0.2391 28.2727 34.4140 -Courier_New.ttf 42 M 34.5367 33.5935 72 * -2.5472 22.0860 21.9800 -Courier_New.ttf 42 M 34.5367 33.5935 73 ” -2.5178 24.6392 15.1932 -Courier_New.ttf 42 M 34.5367 33.5935 74 ? -0.3387 21.0594 34.9406 -Courier_New.ttf 42 M 34.5367 33.5935 75 { -2.6823 11.7324 43.3121 -Courier_New.ttf 42 M 34.5367 33.5935 76 } -2.5060 11.7324 43.3121 -Courier_New.ttf 42 M 34.5367 33.5935 77 , 25.0405 11.5597 17.2297 -Courier_New.ttf 42 M 34.5367 33.5935 78 I -0.5765 22.0860 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 79 ° -8.9476 15.7638 15.7638 -Courier_New.ttf 42 M 34.5367 33.5935 80 K 0.4198 31.2297 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 81 H -0.0214 28.4333 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 82 q 7.8120 29.1932 36.6565 -Courier_New.ttf 42 M 34.5367 33.5935 83 & 2.7030 21.9800 31.2070 -Courier_New.ttf 42 M 34.5367 33.5935 84 ’ -2.2252 12.7529 17.2297 -Courier_New.ttf 42 M 34.5367 33.5935 85 [ -2.2078 9.5998 43.1932 -Courier_New.ttf 42 M 34.5367 33.5935 86 - 15.0919 24.8892 3.2297 -Courier_New.ttf 42 M 34.5367 33.5935 87 Y -0.1070 29.3410 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 88 Q -0.2357 30.3865 40.7840 -Courier_New.ttf 42 M 34.5367 33.5935 89 " -2.5799 19.6995 16.0365 -Courier_New.ttf 42 M 34.5367 33.5935 90 ! -2.4987 6.4594 36.5505 -Courier_New.ttf 42 M 34.5367 33.5935 91 x 8.4916 29.1932 25.2097 -Courier_New.ttf 42 M 34.5367 33.5935 92 ) -2.4009 8.4065 43.1932 -Courier_New.ttf 42 M 34.5367 33.5935 93 = 10.8967 29.1932 11.3097 -Courier_New.ttf 42 M 34.5367 33.5935 94 + 2.5551 26.8590 29.2455 -Courier_New.ttf 42 M 34.5367 33.5935 95 X 0.1201 30.9092 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 96 » 8.1996 29.5432 26.8068 -Courier_New.ttf 42 M 34.5367 33.5935 97 ' -2.2997 7.9027 17.2297 -Courier_New.ttf 42 M 34.5367 33.5935 98 ¢ -4.4477 20.7867 38.0998 -Courier_New.ttf 42 M 34.5367 33.5935 99 Z 0.1728 23.0959 33.5935 -Courier_New.ttf 42 M 34.5367 33.5935 100 > 1.3707 28.0000 31.5797 -Courier_New.ttf 42 M 34.5367 33.5935 101 ® -1.0100 34.7867 35.0594 -Courier_New.ttf 42 M 34.5367 33.5935 102 © -0.6584 35.0594 34.7867 -Courier_New.ttf 42 M 34.5367 33.5935 103 ] -2.1097 9.5998 43.1932 -Courier_New.ttf 42 M 34.5367 33.5935 104 é -4.1826 27.4295 38.4203 -Courier_New.ttf 42 M 34.5367 33.5935 105 z 8.2252 23.7959 25.2097 -Courier_New.ttf 42 M 34.5367 33.5935 106 _ 47.4276 35.0594 2.3865 -Courier_New.ttf 42 M 34.5367 33.5935 107 ¥ -0.1998 29.6744 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 1 t -0.2421 26.2362 34.6034 -Courier_New.ttf 43 G 29.5621 34.4140 2 h -2.4154 29.6326 35.9800 -Courier_New.ttf 43 G 29.5621 34.4140 3 a 8.4775 26.9256 26.1840 -Courier_New.ttf 43 G 29.5621 34.4140 4 n 8.0530 29.2061 25.6135 -Courier_New.ttf 43 G 29.5621 34.4140 5 P -0.0269 26.0529 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 6 o 8.3306 26.8068 26.1840 -Courier_New.ttf 43 G 29.5621 34.4140 7 e 8.3157 27.4295 26.1840 -Courier_New.ttf 43 G 29.5621 34.4140 8 : 8.7659 8.6565 25.7802 -Courier_New.ttf 43 G 29.5621 34.4140 9 r 8.1387 26.8295 25.6135 -Courier_New.ttf 43 G 29.5621 34.4140 10 l -2.1482 24.4725 35.9800 -Courier_New.ttf 43 G 29.5621 34.4140 11 i -3.4248 24.4725 37.2498 -Courier_New.ttf 43 G 29.5621 34.4140 12 1 -3.4982 22.8527 37.5770 -Courier_New.ttf 43 G 29.5621 34.4140 13 | -2.0706 2.3865 43.1932 -Courier_New.ttf 43 G 29.5621 34.4140 14 N 0.0473 31.3964 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 15 f -2.4335 25.4696 35.9800 -Courier_New.ttf 43 G 29.5621 34.4140 16 g 8.2321 27.8462 36.6565 -Courier_New.ttf 43 G 29.5621 34.4140 17 d -1.9026 30.1138 36.5505 -Courier_New.ttf 43 G 29.5621 34.4140 18 W 0.2143 32.5836 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 19 s 8.0117 23.0959 26.1840 -Courier_New.ttf 43 G 29.5621 34.4140 20 c 8.1829 26.6529 26.1840 -Courier_New.ttf 43 G 29.5621 34.4140 21 u 8.7293 29.6326 25.7802 -Courier_New.ttf 43 G 29.5621 34.4140 22 3 -2.6455 23.6959 36.7876 -Courier_New.ttf 43 G 29.5621 34.4140 23 ~ 13.0082 24.8892 8.5732 -Courier_New.ttf 43 G 29.5621 34.4140 24 # -4.6142 25.0657 42.1962 -Courier_New.ttf 43 G 29.5621 34.4140 25 O -0.1169 29.1932 34.4140 -Courier_New.ttf 43 G 29.5621 34.4140 26 ` -3.6879 9.8498 8.6565 -Courier_New.ttf 43 G 29.5621 34.4140 27 @ -3.5532 22.0800 40.4029 -Courier_New.ttf 43 G 29.5621 34.4140 28 F -0.1588 27.3234 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 29 S -0.2113 24.5392 34.4140 -Courier_New.ttf 43 G 29.5621 34.4140 30 p 8.2456 29.8826 36.6565 -Courier_New.ttf 43 G 29.5621 34.4140 31 “ -2.5373 24.6392 15.1932 -Courier_New.ttf 43 G 29.5621 34.4140 32 % -1.8654 24.3664 36.5505 -Courier_New.ttf 43 G 29.5621 34.4140 33 £ 0.0726 26.2840 33.8435 -Courier_New.ttf 43 G 29.5621 34.4140 34 . 26.5003 8.8232 7.9800 -Courier_New.ttf 43 G 29.5621 34.4140 35 2 -2.5849 23.1732 36.3838 -Courier_New.ttf 43 G 29.5621 34.4140 36 5 -2.0021 23.7437 36.3838 -Courier_New.ttf 43 G 29.5621 34.4140 37 m 8.3569 35.1594 25.6135 -Courier_New.ttf 43 G 29.5621 34.4140 38 V 0.3527 35.1140 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 39 6 -2.7802 23.7959 36.7876 -Courier_New.ttf 43 G 29.5621 34.4140 40 w 8.6991 32.7502 25.2097 -Courier_New.ttf 43 G 29.5621 34.4140 41 T 0.3946 26.8590 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 42 M 0.0059 34.5367 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 43 G 0.0102 29.5621 34.4140 -Courier_New.ttf 43 G 29.5621 34.4140 44 b -2.2593 29.8826 36.5505 -Courier_New.ttf 43 G 29.5621 34.4140 45 9 -2.2290 22.4193 36.7876 -Courier_New.ttf 43 G 29.5621 34.4140 46 ; 8.7244 12.8068 30.9570 -Courier_New.ttf 43 G 29.5621 34.4140 47 D 0.3350 28.4394 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 48 L 0.4839 28.2727 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 49 y 8.8056 29.3121 36.2527 -Courier_New.ttf 43 G 29.5621 34.4140 50 ‘ -2.0133 12.7529 17.2297 -Courier_New.ttf 43 G 29.5621 34.4140 51 \ -5.4565 24.6392 44.3865 -Courier_New.ttf 43 G 29.5621 34.4140 52 R 0.2618 30.7070 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 53 < 1.6741 28.0000 31.5797 -Courier_New.ttf 43 G 29.5621 34.4140 54 4 -1.8109 22.3232 35.9800 -Courier_New.ttf 43 G 29.5621 34.4140 55 8 -2.6586 21.3094 36.7876 -Courier_New.ttf 43 G 29.5621 34.4140 56 0 -2.5462 23.6959 36.7876 -Courier_New.ttf 43 G 29.5621 34.4140 57 A 0.1513 37.1505 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 58 E 0.1796 27.3234 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 59 B 0.2129 28.4167 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 60 v 8.8906 32.1252 25.2097 -Courier_New.ttf 43 G 29.5621 34.4140 61 k -2.2953 26.6529 35.9800 -Courier_New.ttf 43 G 29.5621 34.4140 62 J 0.3704 28.6766 34.1640 -Courier_New.ttf 43 G 29.5621 34.4140 63 U 0.3300 31.3964 34.1640 -Courier_New.ttf 43 G 29.5621 34.4140 64 j -3.2881 18.4230 48.2928 -Courier_New.ttf 43 G 29.5621 34.4140 65 ( -2.0649 8.4065 43.1932 -Courier_New.ttf 43 G 29.5621 34.4140 66 7 -2.0540 22.0027 35.9800 -Courier_New.ttf 43 G 29.5621 34.4140 67 § -2.0816 27.1696 39.8097 -Courier_New.ttf 43 G 29.5621 34.4140 68 $ -5.4133 21.8261 44.3865 -Courier_New.ttf 43 G 29.5621 34.4140 69 € -0.4484 31.2297 34.4140 -Courier_New.ttf 43 G 29.5621 34.4140 70 / -5.9246 24.6392 44.3865 -Courier_New.ttf 43 G 29.5621 34.4140 71 C -0.0313 28.2727 34.4140 -Courier_New.ttf 43 G 29.5621 34.4140 72 * -2.1738 22.0860 21.9800 -Courier_New.ttf 43 G 29.5621 34.4140 73 ” -2.0889 24.6392 15.1932 -Courier_New.ttf 43 G 29.5621 34.4140 74 ? -0.5598 21.0594 34.9406 -Courier_New.ttf 43 G 29.5621 34.4140 75 { -2.5515 11.7324 43.3121 -Courier_New.ttf 43 G 29.5621 34.4140 76 } -2.3388 11.7324 43.3121 -Courier_New.ttf 43 G 29.5621 34.4140 77 , 25.5129 11.5597 17.2297 -Courier_New.ttf 43 G 29.5621 34.4140 78 I 0.1879 22.0860 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 79 ° -8.4934 15.7638 15.7638 -Courier_New.ttf 43 G 29.5621 34.4140 80 K 0.1830 31.2297 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 81 H 0.1468 28.4333 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 82 q 8.0280 29.1932 36.6565 -Courier_New.ttf 43 G 29.5621 34.4140 83 & 3.4228 21.9800 31.2070 -Courier_New.ttf 43 G 29.5621 34.4140 84 ’ -2.0345 12.7529 17.2297 -Courier_New.ttf 43 G 29.5621 34.4140 85 [ -1.9779 9.5998 43.1932 -Courier_New.ttf 43 G 29.5621 34.4140 86 - 15.4991 24.8892 3.2297 -Courier_New.ttf 43 G 29.5621 34.4140 87 Y 0.1188 29.3410 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 88 Q 0.0500 30.3865 40.7840 -Courier_New.ttf 43 G 29.5621 34.4140 89 " -2.2805 19.6995 16.0365 -Courier_New.ttf 43 G 29.5621 34.4140 90 ! -2.2567 6.4594 36.5505 -Courier_New.ttf 43 G 29.5621 34.4140 91 x 8.6297 29.1932 25.2097 -Courier_New.ttf 43 G 29.5621 34.4140 92 ) -2.0012 8.4065 43.1932 -Courier_New.ttf 43 G 29.5621 34.4140 93 = 11.2657 29.1932 11.3097 -Courier_New.ttf 43 G 29.5621 34.4140 94 + 2.9799 26.8590 29.2455 -Courier_New.ttf 43 G 29.5621 34.4140 95 X 0.1769 30.9092 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 96 » 8.0585 29.5432 26.8068 -Courier_New.ttf 43 G 29.5621 34.4140 97 ' -2.2426 7.9027 17.2297 -Courier_New.ttf 43 G 29.5621 34.4140 98 ¢ -4.4311 20.7867 38.0998 -Courier_New.ttf 43 G 29.5621 34.4140 99 Z 0.1199 23.0959 33.5935 -Courier_New.ttf 43 G 29.5621 34.4140 100 > 1.3816 28.0000 31.5797 -Courier_New.ttf 43 G 29.5621 34.4140 101 ® -0.7696 34.7867 35.0594 -Courier_New.ttf 43 G 29.5621 34.4140 102 © -0.6735 35.0594 34.7867 -Courier_New.ttf 43 G 29.5621 34.4140 103 ] -2.0991 9.5998 43.1932 -Courier_New.ttf 43 G 29.5621 34.4140 104 é -4.0239 27.4295 38.4203 -Courier_New.ttf 43 G 29.5621 34.4140 105 z 8.7112 23.7959 25.2097 -Courier_New.ttf 43 G 29.5621 34.4140 106 _ 47.7224 35.0594 2.3865 -Courier_New.ttf 43 G 29.5621 34.4140 107 ¥ 0.1337 29.6744 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 1 t 1.8805 26.2362 34.6034 -Courier_New.ttf 44 b 29.8826 36.5505 2 h 0.0829 29.6326 35.9800 -Courier_New.ttf 44 b 29.8826 36.5505 3 a 10.4224 26.9256 26.1840 -Courier_New.ttf 44 b 29.8826 36.5505 4 n 10.3626 29.2061 25.6135 -Courier_New.ttf 44 b 29.8826 36.5505 5 P 2.2091 26.0529 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 6 o 10.8772 26.8068 26.1840 -Courier_New.ttf 44 b 29.8826 36.5505 7 e 10.1508 27.4295 26.1840 -Courier_New.ttf 44 b 29.8826 36.5505 8 : 10.7978 8.6565 25.7802 -Courier_New.ttf 44 b 29.8826 36.5505 9 r 10.4132 26.8295 25.6135 -Courier_New.ttf 44 b 29.8826 36.5505 10 l 0.2196 24.4725 35.9800 -Courier_New.ttf 44 b 29.8826 36.5505 11 i -1.3258 24.4725 37.2498 -Courier_New.ttf 44 b 29.8826 36.5505 12 1 -1.5451 22.8527 37.5770 -Courier_New.ttf 44 b 29.8826 36.5505 13 | 0.3155 2.3865 43.1932 -Courier_New.ttf 44 b 29.8826 36.5505 14 N 2.3798 31.3964 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 15 f -0.1274 25.4696 35.9800 -Courier_New.ttf 44 b 29.8826 36.5505 16 g 10.0410 27.8462 36.6565 -Courier_New.ttf 44 b 29.8826 36.5505 17 d 0.2236 30.1138 36.5505 -Courier_New.ttf 44 b 29.8826 36.5505 18 W 2.4508 32.5836 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 19 s 9.8658 23.0959 26.1840 -Courier_New.ttf 44 b 29.8826 36.5505 20 c 10.4736 26.6529 26.1840 -Courier_New.ttf 44 b 29.8826 36.5505 21 u 10.7748 29.6326 25.7802 -Courier_New.ttf 44 b 29.8826 36.5505 22 3 -0.4837 23.6959 36.7876 -Courier_New.ttf 44 b 29.8826 36.5505 23 ~ 15.1323 24.8892 8.5732 -Courier_New.ttf 44 b 29.8826 36.5505 24 # -1.9008 25.0657 42.1962 -Courier_New.ttf 44 b 29.8826 36.5505 25 O 2.0441 29.1932 34.4140 -Courier_New.ttf 44 b 29.8826 36.5505 26 ` -2.2083 9.8498 8.6565 -Courier_New.ttf 44 b 29.8826 36.5505 27 @ -1.2321 22.0800 40.4029 -Courier_New.ttf 44 b 29.8826 36.5505 28 F 2.3822 27.3234 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 29 S 2.4400 24.5392 34.4140 -Courier_New.ttf 44 b 29.8826 36.5505 30 p 10.1579 29.8826 36.6565 -Courier_New.ttf 44 b 29.8826 36.5505 31 “ 0.1780 24.6392 15.1932 -Courier_New.ttf 44 b 29.8826 36.5505 32 % -0.1689 24.3664 36.5505 -Courier_New.ttf 44 b 29.8826 36.5505 33 £ 2.0703 26.2840 33.8435 -Courier_New.ttf 44 b 29.8826 36.5505 34 . 28.7271 8.8232 7.9800 -Courier_New.ttf 44 b 29.8826 36.5505 35 2 -0.4469 23.1732 36.3838 -Courier_New.ttf 44 b 29.8826 36.5505 36 5 -0.0286 23.7437 36.3838 -Courier_New.ttf 44 b 29.8826 36.5505 37 m 10.5119 35.1594 25.6135 -Courier_New.ttf 44 b 29.8826 36.5505 38 V 2.2715 35.1140 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 39 6 -0.3265 23.7959 36.7876 -Courier_New.ttf 44 b 29.8826 36.5505 40 w 10.4941 32.7502 25.2097 -Courier_New.ttf 44 b 29.8826 36.5505 41 T 2.4222 26.8590 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 42 M 2.1148 34.5367 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 43 G 2.0435 29.5621 34.4140 -Courier_New.ttf 44 b 29.8826 36.5505 44 b -0.0597 29.8826 36.5505 -Courier_New.ttf 44 b 29.8826 36.5505 45 9 -0.4818 22.4193 36.7876 -Courier_New.ttf 44 b 29.8826 36.5505 46 ; 10.5960 12.8068 30.9570 -Courier_New.ttf 44 b 29.8826 36.5505 47 D 2.5394 28.4394 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 48 L 2.3131 28.2727 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 49 y 10.6294 29.3121 36.2527 -Courier_New.ttf 44 b 29.8826 36.5505 50 ‘ -0.2429 12.7529 17.2297 -Courier_New.ttf 44 b 29.8826 36.5505 51 \ -3.2871 24.6392 44.3865 -Courier_New.ttf 44 b 29.8826 36.5505 52 R 2.5666 30.7070 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 53 < 3.6000 28.0000 31.5797 -Courier_New.ttf 44 b 29.8826 36.5505 54 4 -0.0226 22.3232 35.9800 -Courier_New.ttf 44 b 29.8826 36.5505 55 8 -0.1971 21.3094 36.7876 -Courier_New.ttf 44 b 29.8826 36.5505 56 0 -0.4031 23.6959 36.7876 -Courier_New.ttf 44 b 29.8826 36.5505 57 A 2.4837 37.1505 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 58 E 2.3018 27.3234 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 59 B 2.0451 28.4167 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 60 v 10.6713 32.1252 25.2097 -Courier_New.ttf 44 b 29.8826 36.5505 61 k -0.0658 26.6529 35.9800 -Courier_New.ttf 44 b 29.8826 36.5505 62 J 2.4851 28.6766 34.1640 -Courier_New.ttf 44 b 29.8826 36.5505 63 U 2.1654 31.3964 34.1640 -Courier_New.ttf 44 b 29.8826 36.5505 64 j -1.0250 18.4230 48.2928 -Courier_New.ttf 44 b 29.8826 36.5505 65 ( -0.1242 8.4065 43.1932 -Courier_New.ttf 44 b 29.8826 36.5505 66 7 -0.0143 22.0027 35.9800 -Courier_New.ttf 44 b 29.8826 36.5505 67 § -0.0046 27.1696 39.8097 -Courier_New.ttf 44 b 29.8826 36.5505 68 $ -3.3341 21.8261 44.3865 -Courier_New.ttf 44 b 29.8826 36.5505 69 € 2.2932 31.2297 34.4140 -Courier_New.ttf 44 b 29.8826 36.5505 70 / -3.5380 24.6392 44.3865 -Courier_New.ttf 44 b 29.8826 36.5505 71 C 2.0865 28.2727 34.4140 -Courier_New.ttf 44 b 29.8826 36.5505 72 * -0.2330 22.0860 21.9800 -Courier_New.ttf 44 b 29.8826 36.5505 73 ” -0.0956 24.6392 15.1932 -Courier_New.ttf 44 b 29.8826 36.5505 74 ? 1.3032 21.0594 34.9406 -Courier_New.ttf 44 b 29.8826 36.5505 75 { -0.0327 11.7324 43.3121 -Courier_New.ttf 44 b 29.8826 36.5505 76 } -0.2584 11.7324 43.3121 -Courier_New.ttf 44 b 29.8826 36.5505 77 , 27.2917 11.5597 17.2297 -Courier_New.ttf 44 b 29.8826 36.5505 78 I 2.3573 22.0860 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 79 ° -6.2672 15.7638 15.7638 -Courier_New.ttf 44 b 29.8826 36.5505 80 K 2.3473 31.2297 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 81 H 2.1752 28.4333 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 82 q 10.4370 29.1932 36.6565 -Courier_New.ttf 44 b 29.8826 36.5505 83 & 5.0191 21.9800 31.2070 -Courier_New.ttf 44 b 29.8826 36.5505 84 ’ -0.3028 12.7529 17.2297 -Courier_New.ttf 44 b 29.8826 36.5505 85 [ 0.1057 9.5998 43.1932 -Courier_New.ttf 44 b 29.8826 36.5505 86 - 17.3012 24.8892 3.2297 -Courier_New.ttf 44 b 29.8826 36.5505 87 Y 2.4852 29.3410 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 88 Q 2.3159 30.3865 40.7840 -Courier_New.ttf 44 b 29.8826 36.5505 89 " -0.0622 19.6995 16.0365 -Courier_New.ttf 44 b 29.8826 36.5505 90 ! -0.2353 6.4594 36.5505 -Courier_New.ttf 44 b 29.8826 36.5505 91 x 10.5651 29.1932 25.2097 -Courier_New.ttf 44 b 29.8826 36.5505 92 ) 0.3053 8.4065 43.1932 -Courier_New.ttf 44 b 29.8826 36.5505 93 = 13.4558 29.1932 11.3097 -Courier_New.ttf 44 b 29.8826 36.5505 94 + 4.6328 26.8590 29.2455 -Courier_New.ttf 44 b 29.8826 36.5505 95 X 2.3267 30.9092 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 96 » 10.3007 29.5432 26.8068 -Courier_New.ttf 44 b 29.8826 36.5505 97 ' 0.1588 7.9027 17.2297 -Courier_New.ttf 44 b 29.8826 36.5505 98 ¢ -2.3836 20.7867 38.0998 -Courier_New.ttf 44 b 29.8826 36.5505 99 Z 2.2410 23.0959 33.5935 -Courier_New.ttf 44 b 29.8826 36.5505 100 > 3.8137 28.0000 31.5797 -Courier_New.ttf 44 b 29.8826 36.5505 101 ® 1.2241 34.7867 35.0594 -Courier_New.ttf 44 b 29.8826 36.5505 102 © 1.8320 35.0594 34.7867 -Courier_New.ttf 44 b 29.8826 36.5505 103 ] -0.3180 9.5998 43.1932 -Courier_New.ttf 44 b 29.8826 36.5505 104 é -2.0823 27.4295 38.4203 -Courier_New.ttf 44 b 29.8826 36.5505 105 z 11.0471 23.7959 25.2097 -Courier_New.ttf 44 b 29.8826 36.5505 106 _ 49.8954 35.0594 2.3865 -Courier_New.ttf 44 b 29.8826 36.5505 107 ¥ 2.4403 29.6744 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 1 t 2.3706 26.2362 34.6034 -Courier_New.ttf 45 9 22.4193 36.7876 2 h 0.3689 29.6326 35.9800 -Courier_New.ttf 45 9 22.4193 36.7876 3 a 10.7703 26.9256 26.1840 -Courier_New.ttf 45 9 22.4193 36.7876 4 n 11.0050 29.2061 25.6135 -Courier_New.ttf 45 9 22.4193 36.7876 5 P 2.8070 26.0529 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 6 o 10.7703 26.8068 26.1840 -Courier_New.ttf 45 9 22.4193 36.7876 7 e 10.4673 27.4295 26.1840 -Courier_New.ttf 45 9 22.4193 36.7876 8 : 10.8015 8.6565 25.7802 -Courier_New.ttf 45 9 22.4193 36.7876 9 r 10.9848 26.8295 25.6135 -Courier_New.ttf 45 9 22.4193 36.7876 10 l 0.1908 24.4725 35.9800 -Courier_New.ttf 45 9 22.4193 36.7876 11 i -0.7041 24.4725 37.2498 -Courier_New.ttf 45 9 22.4193 36.7876 12 1 -1.1946 22.8527 37.5770 -Courier_New.ttf 45 9 22.4193 36.7876 13 | 0.4577 2.3865 43.1932 -Courier_New.ttf 45 9 22.4193 36.7876 14 N 2.9196 31.3964 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 15 f 0.4721 25.4696 35.9800 -Courier_New.ttf 45 9 22.4193 36.7876 16 g 10.7611 27.8462 36.6565 -Courier_New.ttf 45 9 22.4193 36.7876 17 d 0.6637 30.1138 36.5505 -Courier_New.ttf 45 9 22.4193 36.7876 18 W 2.8118 32.5836 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 19 s 10.5332 23.0959 26.1840 -Courier_New.ttf 45 9 22.4193 36.7876 20 c 10.6716 26.6529 26.1840 -Courier_New.ttf 45 9 22.4193 36.7876 21 u 11.3424 29.6326 25.7802 -Courier_New.ttf 45 9 22.4193 36.7876 22 3 0.2750 23.6959 36.7876 -Courier_New.ttf 45 9 22.4193 36.7876 23 ~ 15.4310 24.8892 8.5732 -Courier_New.ttf 45 9 22.4193 36.7876 24 # -2.2738 25.0657 42.1962 -Courier_New.ttf 45 9 22.4193 36.7876 25 O 2.6410 29.1932 34.4140 -Courier_New.ttf 45 9 22.4193 36.7876 26 ` -1.4912 9.8498 8.6565 -Courier_New.ttf 45 9 22.4193 36.7876 27 @ -1.4496 22.0800 40.4029 -Courier_New.ttf 45 9 22.4193 36.7876 28 F 2.5556 27.3234 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 29 S 2.8220 24.5392 34.4140 -Courier_New.ttf 45 9 22.4193 36.7876 30 p 10.7605 29.8826 36.6565 -Courier_New.ttf 45 9 22.4193 36.7876 31 “ 0.6484 24.6392 15.1932 -Courier_New.ttf 45 9 22.4193 36.7876 32 % 0.2852 24.3664 36.5505 -Courier_New.ttf 45 9 22.4193 36.7876 33 £ 2.5255 26.2840 33.8435 -Courier_New.ttf 45 9 22.4193 36.7876 34 . 29.0255 8.8232 7.9800 -Courier_New.ttf 45 9 22.4193 36.7876 35 2 0.1357 23.1732 36.3838 -Courier_New.ttf 45 9 22.4193 36.7876 36 5 0.1437 23.7437 36.3838 -Courier_New.ttf 45 9 22.4193 36.7876 37 m 10.8191 35.1594 25.6135 -Courier_New.ttf 45 9 22.4193 36.7876 38 V 3.0705 35.1140 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 39 6 0.0885 23.7959 36.7876 -Courier_New.ttf 45 9 22.4193 36.7876 40 w 11.0086 32.7502 25.2097 -Courier_New.ttf 45 9 22.4193 36.7876 41 T 2.6193 26.8590 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 42 M 2.9312 34.5367 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 43 G 2.4648 29.5621 34.4140 -Courier_New.ttf 45 9 22.4193 36.7876 44 b 0.2894 29.8826 36.5505 -Courier_New.ttf 45 9 22.4193 36.7876 45 9 -0.0707 22.4193 36.7876 -Courier_New.ttf 45 9 22.4193 36.7876 46 ; 10.9118 12.8068 30.9570 -Courier_New.ttf 45 9 22.4193 36.7876 47 D 2.5727 28.4394 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 48 L 2.7574 28.2727 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 49 y 11.2346 29.3121 36.2527 -Courier_New.ttf 45 9 22.4193 36.7876 50 ‘ 0.2309 12.7529 17.2297 -Courier_New.ttf 45 9 22.4193 36.7876 51 \ -2.8596 24.6392 44.3865 -Courier_New.ttf 45 9 22.4193 36.7876 52 R 2.6889 30.7070 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 53 < 4.0823 28.0000 31.5797 -Courier_New.ttf 45 9 22.4193 36.7876 54 4 0.1582 22.3232 35.9800 -Courier_New.ttf 45 9 22.4193 36.7876 55 8 -0.0871 21.3094 36.7876 -Courier_New.ttf 45 9 22.4193 36.7876 56 0 -0.0015 23.6959 36.7876 -Courier_New.ttf 45 9 22.4193 36.7876 57 A 2.8760 37.1505 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 58 E 2.5290 27.3234 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 59 B 2.9607 28.4167 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 60 v 11.2626 32.1252 25.2097 -Courier_New.ttf 45 9 22.4193 36.7876 61 k 0.1374 26.6529 35.9800 -Courier_New.ttf 45 9 22.4193 36.7876 62 J 2.5219 28.6766 34.1640 -Courier_New.ttf 45 9 22.4193 36.7876 63 U 2.9600 31.3964 34.1640 -Courier_New.ttf 45 9 22.4193 36.7876 64 j -0.9090 18.4230 48.2928 -Courier_New.ttf 45 9 22.4193 36.7876 65 ( 0.5767 8.4065 43.1932 -Courier_New.ttf 45 9 22.4193 36.7876 66 7 0.0993 22.0027 35.9800 -Courier_New.ttf 45 9 22.4193 36.7876 67 § 0.6448 27.1696 39.8097 -Courier_New.ttf 45 9 22.4193 36.7876 68 $ -2.6981 21.8261 44.3865 -Courier_New.ttf 45 9 22.4193 36.7876 69 € 2.6460 31.2297 34.4140 -Courier_New.ttf 45 9 22.4193 36.7876 70 / -3.6736 24.6392 44.3865 -Courier_New.ttf 45 9 22.4193 36.7876 71 C 2.7901 28.2727 34.4140 -Courier_New.ttf 45 9 22.4193 36.7876 72 * 0.3992 22.0860 21.9800 -Courier_New.ttf 45 9 22.4193 36.7876 73 ” 0.2856 24.6392 15.1932 -Courier_New.ttf 45 9 22.4193 36.7876 74 ? 1.9780 21.0594 34.9406 -Courier_New.ttf 45 9 22.4193 36.7876 75 { 0.5313 11.7324 43.3121 -Courier_New.ttf 45 9 22.4193 36.7876 76 } 0.0157 11.7324 43.3121 -Courier_New.ttf 45 9 22.4193 36.7876 77 , 28.0108 11.5597 17.2297 -Courier_New.ttf 45 9 22.4193 36.7876 78 I 2.7487 22.0860 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 79 ° -5.7993 15.7638 15.7638 -Courier_New.ttf 45 9 22.4193 36.7876 80 K 2.7426 31.2297 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 81 H 2.6083 28.4333 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 82 q 10.6675 29.1932 36.6565 -Courier_New.ttf 45 9 22.4193 36.7876 83 & 6.1951 21.9800 31.2070 -Courier_New.ttf 45 9 22.4193 36.7876 84 ’ 0.5038 12.7529 17.2297 -Courier_New.ttf 45 9 22.4193 36.7876 85 [ 0.3251 9.5998 43.1932 -Courier_New.ttf 45 9 22.4193 36.7876 86 - 18.2843 24.8892 3.2297 -Courier_New.ttf 45 9 22.4193 36.7876 87 Y 2.7097 29.3410 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 88 Q 2.3564 30.3865 40.7840 -Courier_New.ttf 45 9 22.4193 36.7876 89 " 0.2463 19.6995 16.0365 -Courier_New.ttf 45 9 22.4193 36.7876 90 ! 0.2993 6.4594 36.5505 -Courier_New.ttf 45 9 22.4193 36.7876 91 x 11.3637 29.1932 25.2097 -Courier_New.ttf 45 9 22.4193 36.7876 92 ) 0.2571 8.4065 43.1932 -Courier_New.ttf 45 9 22.4193 36.7876 93 = 13.8312 29.1932 11.3097 -Courier_New.ttf 45 9 22.4193 36.7876 94 + 5.3115 26.8590 29.2455 -Courier_New.ttf 45 9 22.4193 36.7876 95 X 2.7473 30.9092 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 96 » 10.8550 28.7766 26.8068 -Courier_New.ttf 45 9 22.4193 36.7876 97 ' 0.3461 7.9027 17.2297 -Courier_New.ttf 45 9 22.4193 36.7876 98 ¢ -2.0232 20.7867 38.0998 -Courier_New.ttf 45 9 22.4193 36.7876 99 Z 2.7046 23.0959 33.5935 -Courier_New.ttf 45 9 22.4193 36.7876 100 > 3.9480 28.0000 31.5797 -Courier_New.ttf 45 9 22.4193 36.7876 101 ® 1.9358 34.7867 35.0594 -Courier_New.ttf 45 9 22.4193 36.7876 102 © 2.0500 35.0594 34.7867 -Courier_New.ttf 45 9 22.4193 36.7876 103 ] 0.3300 9.5998 43.1932 -Courier_New.ttf 45 9 22.4193 36.7876 104 é -1.1923 27.4295 38.4203 -Courier_New.ttf 45 9 22.4193 36.7876 105 z 11.4400 23.7959 25.2097 -Courier_New.ttf 45 9 22.4193 36.7876 106 _ 50.4838 35.0594 2.3865 -Courier_New.ttf 45 9 22.4193 36.7876 107 ¥ 2.8189 29.6744 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 1 t -8.9576 26.2362 34.6034 -Courier_New.ttf 46 ; 12.8068 30.9570 2 h -10.9770 29.6326 35.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 3 a -0.1309 26.9256 26.1840 -Courier_New.ttf 46 ; 12.8068 30.9570 4 n -0.1351 29.2061 25.6135 -Courier_New.ttf 46 ; 12.8068 30.9570 5 P -8.2441 26.0529 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 6 o -0.2135 26.8068 26.1840 -Courier_New.ttf 46 ; 12.8068 30.9570 7 e -0.3901 27.4295 26.1840 -Courier_New.ttf 46 ; 12.8068 30.9570 8 : -0.0931 8.6565 25.7802 -Courier_New.ttf 46 ; 12.8068 30.9570 9 r -0.2058 26.8295 25.6135 -Courier_New.ttf 46 ; 12.8068 30.9570 10 l -11.0797 24.4725 35.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 11 i -12.0675 24.4725 37.2498 -Courier_New.ttf 46 ; 12.8068 30.9570 12 1 -12.5415 22.8527 37.5770 -Courier_New.ttf 46 ; 12.8068 30.9570 13 | -10.8913 2.3865 43.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 14 N -8.2252 31.3964 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 15 f -10.7021 25.4696 35.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 16 g -0.3919 27.8462 36.6565 -Courier_New.ttf 46 ; 12.8068 30.9570 17 d -10.8393 30.1138 36.5505 -Courier_New.ttf 46 ; 12.8068 30.9570 18 W -8.4423 32.5836 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 19 s -0.5767 23.0959 26.1840 -Courier_New.ttf 46 ; 12.8068 30.9570 20 c -0.4531 26.6529 26.1840 -Courier_New.ttf 46 ; 12.8068 30.9570 21 u -0.0032 29.6326 25.7802 -Courier_New.ttf 46 ; 12.8068 30.9570 22 3 -11.2556 23.6959 36.7876 -Courier_New.ttf 46 ; 12.8068 30.9570 23 ~ 3.8345 24.8892 8.5732 -Courier_New.ttf 46 ; 12.8068 30.9570 24 # -13.4395 25.0657 42.1962 -Courier_New.ttf 46 ; 12.8068 30.9570 25 O -8.6207 29.1932 34.4140 -Courier_New.ttf 46 ; 12.8068 30.9570 26 ` -12.6237 9.8498 8.6565 -Courier_New.ttf 46 ; 12.8068 30.9570 27 @ -12.3422 22.0800 40.4029 -Courier_New.ttf 46 ; 12.8068 30.9570 28 F -8.1421 27.3234 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 29 S -8.6650 24.5392 34.4140 -Courier_New.ttf 46 ; 12.8068 30.9570 30 p -0.3955 29.8826 36.6565 -Courier_New.ttf 46 ; 12.8068 30.9570 31 “ -10.7819 24.6392 15.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 32 % -11.1313 24.3664 36.5505 -Courier_New.ttf 46 ; 12.8068 30.9570 33 £ -8.7352 26.2840 33.8435 -Courier_New.ttf 46 ; 12.8068 30.9570 34 . 17.9287 8.8232 7.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 35 2 -10.9946 23.1732 36.3838 -Courier_New.ttf 46 ; 12.8068 30.9570 36 5 -10.8917 23.7437 36.3838 -Courier_New.ttf 46 ; 12.8068 30.9570 37 m -0.4780 35.1594 25.6135 -Courier_New.ttf 46 ; 12.8068 30.9570 38 V -8.1312 35.1140 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 39 6 -11.1773 23.7959 36.7876 -Courier_New.ttf 46 ; 12.8068 30.9570 40 w -0.0440 32.7502 25.2097 -Courier_New.ttf 46 ; 12.8068 30.9570 41 T -8.3610 26.8590 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 42 M -8.4241 34.5367 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 43 G -8.8706 29.5621 34.4140 -Courier_New.ttf 46 ; 12.8068 30.9570 44 b -10.6520 29.8826 36.5505 -Courier_New.ttf 46 ; 12.8068 30.9570 45 9 -11.4142 22.4193 36.7876 -Courier_New.ttf 46 ; 12.8068 30.9570 46 ; 0.1651 12.8068 30.9570 -Courier_New.ttf 46 ; 12.8068 30.9570 47 D -8.4862 28.4394 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 48 L -8.0660 28.2727 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 49 y -0.0319 29.3121 36.2527 -Courier_New.ttf 46 ; 12.8068 30.9570 50 ‘ -10.9887 12.7529 17.2297 -Courier_New.ttf 46 ; 12.8068 30.9570 51 \ -13.9036 24.6392 44.3865 -Courier_New.ttf 46 ; 12.8068 30.9570 52 R -8.5077 30.7070 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 53 < -7.0391 28.0000 31.5797 -Courier_New.ttf 46 ; 12.8068 30.9570 54 4 -10.6748 22.3232 35.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 55 8 -11.2098 21.3094 36.7876 -Courier_New.ttf 46 ; 12.8068 30.9570 56 0 -11.1816 23.6959 36.7876 -Courier_New.ttf 46 ; 12.8068 30.9570 57 A -8.1012 37.1505 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 58 E -8.5612 27.3234 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 59 B -8.3168 28.4167 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 60 v 0.0263 32.1252 25.2097 -Courier_New.ttf 46 ; 12.8068 30.9570 61 k -10.8574 26.6529 35.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 62 J -8.4820 28.6766 34.1640 -Courier_New.ttf 46 ; 12.8068 30.9570 63 U -8.1101 31.3964 34.1640 -Courier_New.ttf 46 ; 12.8068 30.9570 64 j -12.0757 18.4230 48.2928 -Courier_New.ttf 46 ; 12.8068 30.9570 65 ( -10.8431 8.4065 43.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 66 7 -10.8417 22.0027 35.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 67 § -10.8288 27.1696 39.8097 -Courier_New.ttf 46 ; 12.8068 30.9570 68 $ -13.4725 21.8261 44.3865 -Courier_New.ttf 46 ; 12.8068 30.9570 69 € -8.7247 31.2297 34.4140 -Courier_New.ttf 46 ; 12.8068 30.9570 70 / -14.5066 24.6392 44.3865 -Courier_New.ttf 46 ; 12.8068 30.9570 71 C -8.6416 28.2727 34.4140 -Courier_New.ttf 46 ; 12.8068 30.9570 72 * -11.0749 22.0860 21.9800 -Courier_New.ttf 46 ; 12.8068 30.9570 73 ” -10.6544 24.6392 15.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 74 ? -9.1378 21.0594 34.9406 -Courier_New.ttf 46 ; 12.8068 30.9570 75 { -11.3186 11.7324 43.3121 -Courier_New.ttf 46 ; 12.8068 30.9570 76 } -10.8247 11.7324 43.3121 -Courier_New.ttf 46 ; 12.8068 30.9570 77 , 16.7652 11.5597 17.2297 -Courier_New.ttf 46 ; 12.8068 30.9570 78 I -8.7515 22.0860 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 79 ° -17.1074 15.7638 15.7638 -Courier_New.ttf 46 ; 12.8068 30.9570 80 K -8.4542 31.2297 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 81 H -8.4612 28.4333 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 82 q -0.3024 29.1932 36.6565 -Courier_New.ttf 46 ; 12.8068 30.9570 83 & -5.4032 21.9800 31.2070 -Courier_New.ttf 46 ; 12.8068 30.9570 84 ’ -10.7619 12.7529 17.2297 -Courier_New.ttf 46 ; 12.8068 30.9570 85 [ -10.8035 9.5998 43.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 86 - 6.7431 24.8892 3.2297 -Courier_New.ttf 46 ; 12.8068 30.9570 87 Y -8.3009 29.3410 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 88 Q -8.8112 30.3865 40.7840 -Courier_New.ttf 46 ; 12.8068 30.9570 89 " -10.4383 19.6995 16.0365 -Courier_New.ttf 46 ; 12.8068 30.9570 90 ! -10.5043 6.4594 36.5505 -Courier_New.ttf 46 ; 12.8068 30.9570 91 x 0.0059 29.1932 25.2097 -Courier_New.ttf 46 ; 12.8068 30.9570 92 ) -10.7821 8.4065 43.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 93 = 2.7835 29.1932 11.3097 -Courier_New.ttf 46 ; 12.8068 30.9570 94 + -5.7995 26.8590 29.2455 -Courier_New.ttf 46 ; 12.8068 30.9570 95 X -8.5066 30.9092 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 96 » -0.4681 28.7766 26.8068 -Courier_New.ttf 46 ; 12.8068 30.9570 97 ' -10.9347 7.9027 17.2297 -Courier_New.ttf 46 ; 12.8068 30.9570 98 ¢ -12.7139 20.7867 38.0998 -Courier_New.ttf 46 ; 12.8068 30.9570 99 Z -8.3943 23.0959 33.5935 -Courier_New.ttf 46 ; 12.8068 30.9570 100 > -7.1901 28.0000 31.5797 -Courier_New.ttf 46 ; 12.8068 30.9570 101 ® -9.3822 34.7867 35.0594 -Courier_New.ttf 46 ; 12.8068 30.9570 102 © -8.8240 35.0594 34.7867 -Courier_New.ttf 46 ; 12.8068 30.9570 103 ] -11.1486 9.5998 43.1932 -Courier_New.ttf 46 ; 12.8068 30.9570 104 é -12.6980 27.4295 38.4203 -Courier_New.ttf 46 ; 12.8068 30.9570 105 z -0.1988 23.7959 25.2097 -Courier_New.ttf 46 ; 12.8068 30.9570 106 _ 39.1618 35.0594 2.3865 -Courier_New.ttf 46 ; 12.8068 30.9570 107 ¥ -8.2882 29.6744 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 1 t -0.5689 26.2362 34.6034 -Courier_New.ttf 47 D 28.4394 33.5935 2 h -2.5406 29.6326 35.9800 -Courier_New.ttf 47 D 28.4394 33.5935 3 a 7.9099 26.9256 26.1840 -Courier_New.ttf 47 D 28.4394 33.5935 4 n 7.8300 29.2061 25.6135 -Courier_New.ttf 47 D 28.4394 33.5935 5 P -0.1221 26.0529 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 6 o 7.8865 26.8068 26.1840 -Courier_New.ttf 47 D 28.4394 33.5935 7 e 8.1256 27.4295 26.1840 -Courier_New.ttf 47 D 28.4394 33.5935 8 : 8.4351 8.6565 25.7802 -Courier_New.ttf 47 D 28.4394 33.5935 9 r 7.9929 26.8295 25.6135 -Courier_New.ttf 47 D 28.4394 33.5935 10 l -2.2526 24.4725 35.9800 -Courier_New.ttf 47 D 28.4394 33.5935 11 i -3.5343 24.4725 37.2498 -Courier_New.ttf 47 D 28.4394 33.5935 12 1 -4.1850 22.8527 37.5770 -Courier_New.ttf 47 D 28.4394 33.5935 13 | -2.2521 2.3865 43.1932 -Courier_New.ttf 47 D 28.4394 33.5935 14 N -0.1865 31.3964 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 15 f -2.4266 25.4696 35.9800 -Courier_New.ttf 47 D 28.4394 33.5935 16 g 8.2343 27.8462 36.6565 -Courier_New.ttf 47 D 28.4394 33.5935 17 d -2.3161 30.1138 36.5505 -Courier_New.ttf 47 D 28.4394 33.5935 18 W -0.1189 32.5836 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 19 s 8.1714 23.0959 26.1840 -Courier_New.ttf 47 D 28.4394 33.5935 20 c 7.7609 26.6529 26.1840 -Courier_New.ttf 47 D 28.4394 33.5935 21 u 8.1523 29.6326 25.7802 -Courier_New.ttf 47 D 28.4394 33.5935 22 3 -2.7768 23.6959 36.7876 -Courier_New.ttf 47 D 28.4394 33.5935 23 ~ 12.5248 24.8892 8.5732 -Courier_New.ttf 47 D 28.4394 33.5935 24 # -4.7087 25.0657 42.1962 -Courier_New.ttf 47 D 28.4394 33.5935 25 O -0.2292 29.1932 34.4140 -Courier_New.ttf 47 D 28.4394 33.5935 26 ` -4.3491 9.8498 8.6565 -Courier_New.ttf 47 D 28.4394 33.5935 27 @ -4.0903 22.0800 40.4029 -Courier_New.ttf 47 D 28.4394 33.5935 28 F 0.2637 27.3234 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 29 S -0.5487 24.5392 34.4140 -Courier_New.ttf 47 D 28.4394 33.5935 30 p 8.4732 29.8826 36.6565 -Courier_New.ttf 47 D 28.4394 33.5935 31 “ -2.3053 24.6392 15.1932 -Courier_New.ttf 47 D 28.4394 33.5935 32 % -2.4683 24.3664 36.5505 -Courier_New.ttf 47 D 28.4394 33.5935 33 £ -0.1212 26.2840 33.8435 -Courier_New.ttf 47 D 28.4394 33.5935 34 . 26.0442 8.8232 7.9800 -Courier_New.ttf 47 D 28.4394 33.5935 35 2 -2.8618 23.1732 36.3838 -Courier_New.ttf 47 D 28.4394 33.5935 36 5 -2.5561 23.7437 36.3838 -Courier_New.ttf 47 D 28.4394 33.5935 37 m 7.7117 35.1594 25.6135 -Courier_New.ttf 47 D 28.4394 33.5935 38 V -0.1042 35.1140 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 39 6 -2.7651 23.7959 36.7876 -Courier_New.ttf 47 D 28.4394 33.5935 40 w 8.3074 32.7502 25.2097 -Courier_New.ttf 47 D 28.4394 33.5935 41 T 0.1891 26.8590 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 42 M -0.0714 34.5367 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 43 G -0.2091 29.5621 34.4140 -Courier_New.ttf 47 D 28.4394 33.5935 44 b -2.3164 29.8826 36.5505 -Courier_New.ttf 47 D 28.4394 33.5935 45 9 -2.7323 22.4193 36.7876 -Courier_New.ttf 47 D 28.4394 33.5935 46 ; 8.5989 12.8068 30.9570 -Courier_New.ttf 47 D 28.4394 33.5935 47 D 0.0690 28.4394 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 48 L 0.1956 28.2727 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 49 y 8.6319 29.3121 36.2527 -Courier_New.ttf 47 D 28.4394 33.5935 50 ‘ -2.3131 12.7529 17.2297 -Courier_New.ttf 47 D 28.4394 33.5935 51 \ -5.5083 24.6392 44.3865 -Courier_New.ttf 47 D 28.4394 33.5935 52 R 0.0385 30.7070 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 53 < 1.2330 28.0000 31.5797 -Courier_New.ttf 47 D 28.4394 33.5935 54 4 -2.4833 22.3232 35.9800 -Courier_New.ttf 47 D 28.4394 33.5935 55 8 -2.7253 21.3094 36.7876 -Courier_New.ttf 47 D 28.4394 33.5935 56 0 -2.9458 23.6959 36.7876 -Courier_New.ttf 47 D 28.4394 33.5935 57 A -0.1000 37.1505 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 58 E 0.2970 27.3234 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 59 B -0.0406 28.4167 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 60 v 8.4464 32.1252 25.2097 -Courier_New.ttf 47 D 28.4394 33.5935 61 k -2.0745 26.6529 35.9800 -Courier_New.ttf 47 D 28.4394 33.5935 62 J 0.1423 28.6766 34.1640 -Courier_New.ttf 47 D 28.4394 33.5935 63 U 0.1437 31.3964 34.1640 -Courier_New.ttf 47 D 28.4394 33.5935 64 j -3.7851 18.4230 48.2928 -Courier_New.ttf 47 D 28.4394 33.5935 65 ( -2.1212 8.4065 43.1932 -Courier_New.ttf 47 D 28.4394 33.5935 66 7 -2.6715 22.0027 35.9800 -Courier_New.ttf 47 D 28.4394 33.5935 67 § -2.3924 27.1696 39.8097 -Courier_New.ttf 47 D 28.4394 33.5935 68 $ -5.4991 21.8261 44.3865 -Courier_New.ttf 47 D 28.4394 33.5935 69 € -0.3988 31.2297 34.4140 -Courier_New.ttf 47 D 28.4394 33.5935 70 / -6.1357 24.6392 44.3865 -Courier_New.ttf 47 D 28.4394 33.5935 71 C -0.2234 28.2727 34.4140 -Courier_New.ttf 47 D 28.4394 33.5935 72 * -2.5311 22.0860 21.9800 -Courier_New.ttf 47 D 28.4394 33.5935 73 ” -2.2779 24.6392 15.1932 -Courier_New.ttf 47 D 28.4394 33.5935 74 ? -0.8980 21.0594 34.9406 -Courier_New.ttf 47 D 28.4394 33.5935 75 { -2.7682 11.7324 43.3121 -Courier_New.ttf 47 D 28.4394 33.5935 76 } -2.4146 11.7324 43.3121 -Courier_New.ttf 47 D 28.4394 33.5935 77 , 24.9935 11.5597 17.2297 -Courier_New.ttf 47 D 28.4394 33.5935 78 I -0.1162 22.0860 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 79 ° -8.8989 15.7638 15.7638 -Courier_New.ttf 47 D 28.4394 33.5935 80 K -0.0644 31.2297 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 81 H 0.0468 28.4333 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 82 q 8.1014 29.1932 36.6565 -Courier_New.ttf 47 D 28.4394 33.5935 83 & 2.9147 21.9800 31.2070 -Courier_New.ttf 47 D 28.4394 33.5935 84 ’ -2.2626 12.7529 17.2297 -Courier_New.ttf 47 D 28.4394 33.5935 85 [ -2.3392 9.5998 43.1932 -Courier_New.ttf 47 D 28.4394 33.5935 86 - 15.2433 24.8892 3.2297 -Courier_New.ttf 47 D 28.4394 33.5935 87 Y -0.1937 29.3410 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 88 Q -0.3487 30.3865 40.7840 -Courier_New.ttf 47 D 28.4394 33.5935 89 " -2.3770 19.6995 16.0365 -Courier_New.ttf 47 D 28.4394 33.5935 90 ! -2.2909 6.4594 36.5505 -Courier_New.ttf 47 D 28.4394 33.5935 91 x 8.6407 29.1932 25.2097 -Courier_New.ttf 47 D 28.4394 33.5935 92 ) -2.4990 8.4065 43.1932 -Courier_New.ttf 47 D 28.4394 33.5935 93 = 11.1372 29.1932 11.3097 -Courier_New.ttf 47 D 28.4394 33.5935 94 + 2.6671 26.8590 29.2455 -Courier_New.ttf 47 D 28.4394 33.5935 95 X 0.2183 30.9092 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 96 » 8.1925 29.5432 26.8068 -Courier_New.ttf 47 D 28.4394 33.5935 97 ' -2.3651 7.9027 17.2297 -Courier_New.ttf 47 D 28.4394 33.5935 98 ¢ -4.4289 20.7867 38.0998 -Courier_New.ttf 47 D 28.4394 33.5935 99 Z 0.1464 23.0959 33.5935 -Courier_New.ttf 47 D 28.4394 33.5935 100 > 1.3409 28.0000 31.5797 -Courier_New.ttf 47 D 28.4394 33.5935 101 ® -0.9196 34.7867 35.0594 -Courier_New.ttf 47 D 28.4394 33.5935 102 © -0.5453 35.0594 34.7867 -Courier_New.ttf 47 D 28.4394 33.5935 103 ] -2.4436 9.5998 43.1932 -Courier_New.ttf 47 D 28.4394 33.5935 104 é -4.3445 27.4295 38.4203 -Courier_New.ttf 47 D 28.4394 33.5935 105 z 8.1906 23.7959 25.2097 -Courier_New.ttf 47 D 28.4394 33.5935 106 _ 47.6935 35.0594 2.3865 -Courier_New.ttf 47 D 28.4394 33.5935 107 ¥ 0.0904 29.6744 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 1 t -0.3921 26.2362 34.6034 -Courier_New.ttf 48 L 28.2727 33.5935 2 h -2.3653 29.6326 35.9800 -Courier_New.ttf 48 L 28.2727 33.5935 3 a 7.8845 26.9256 26.1840 -Courier_New.ttf 48 L 28.2727 33.5935 4 n 7.6284 29.2061 25.6135 -Courier_New.ttf 48 L 28.2727 33.5935 5 P -0.0731 26.0529 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 6 o 7.8361 26.8068 26.1840 -Courier_New.ttf 48 L 28.2727 33.5935 7 e 7.8340 27.4295 26.1840 -Courier_New.ttf 48 L 28.2727 33.5935 8 : 8.1285 8.6565 25.7802 -Courier_New.ttf 48 L 28.2727 33.5935 9 r 8.0398 26.8295 25.6135 -Courier_New.ttf 48 L 28.2727 33.5935 10 l -2.5438 24.4725 35.9800 -Courier_New.ttf 48 L 28.2727 33.5935 11 i -3.6347 24.4725 37.2498 -Courier_New.ttf 48 L 28.2727 33.5935 12 1 -3.9464 22.8527 37.5770 -Courier_New.ttf 48 L 28.2727 33.5935 13 | -2.3098 2.3865 43.1932 -Courier_New.ttf 48 L 28.2727 33.5935 14 N 0.0060 31.3964 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 15 f -2.5450 25.4696 35.9800 -Courier_New.ttf 48 L 28.2727 33.5935 16 g 8.2125 27.8462 36.6565 -Courier_New.ttf 48 L 28.2727 33.5935 17 d -2.2793 30.1138 36.5505 -Courier_New.ttf 48 L 28.2727 33.5935 18 W -0.0100 32.5836 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 19 s 7.9813 23.0959 26.1840 -Courier_New.ttf 48 L 28.2727 33.5935 20 c 8.2453 26.6529 26.1840 -Courier_New.ttf 48 L 28.2727 33.5935 21 u 8.2012 29.6326 25.7802 -Courier_New.ttf 48 L 28.2727 33.5935 22 3 -2.6234 23.6959 36.7876 -Courier_New.ttf 48 L 28.2727 33.5935 23 ~ 12.5082 24.8892 8.5732 -Courier_New.ttf 48 L 28.2727 33.5935 24 # -4.7754 25.0657 42.1962 -Courier_New.ttf 48 L 28.2727 33.5935 25 O -0.0915 29.1932 34.4140 -Courier_New.ttf 48 L 28.2727 33.5935 26 ` -4.3791 9.8498 8.6565 -Courier_New.ttf 48 L 28.2727 33.5935 27 @ -3.9683 22.0800 40.4029 -Courier_New.ttf 48 L 28.2727 33.5935 28 F -0.2085 27.3234 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 29 S -0.1454 24.5392 34.4140 -Courier_New.ttf 48 L 28.2727 33.5935 30 p 8.1402 29.8826 36.6565 -Courier_New.ttf 48 L 28.2727 33.5935 31 “ -2.5663 24.6392 15.1932 -Courier_New.ttf 48 L 28.2727 33.5935 32 % -2.1284 24.3664 36.5505 -Courier_New.ttf 48 L 28.2727 33.5935 33 £ 0.1939 26.2840 33.8435 -Courier_New.ttf 48 L 28.2727 33.5935 34 . 26.2270 8.8232 7.9800 -Courier_New.ttf 48 L 28.2727 33.5935 35 2 -2.9562 23.1732 36.3838 -Courier_New.ttf 48 L 28.2727 33.5935 36 5 -2.1715 23.7437 36.3838 -Courier_New.ttf 48 L 28.2727 33.5935 37 m 7.7627 35.1594 25.6135 -Courier_New.ttf 48 L 28.2727 33.5935 38 V 0.0567 35.1140 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 39 6 -2.7903 23.7959 36.7876 -Courier_New.ttf 48 L 28.2727 33.5935 40 w 8.2777 32.7502 25.2097 -Courier_New.ttf 48 L 28.2727 33.5935 41 T 0.1742 26.8590 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 42 M -0.0005 34.5367 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 43 G -0.4144 29.5621 34.4140 -Courier_New.ttf 48 L 28.2727 33.5935 44 b -2.5089 29.8826 36.5505 -Courier_New.ttf 48 L 28.2727 33.5935 45 9 -2.9435 22.4193 36.7876 -Courier_New.ttf 48 L 28.2727 33.5935 46 ; 8.5891 12.8068 30.9570 -Courier_New.ttf 48 L 28.2727 33.5935 47 D 0.1228 28.4394 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 48 L -0.0524 28.2727 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 49 y 8.2096 29.3121 36.2527 -Courier_New.ttf 48 L 28.2727 33.5935 50 ‘ -2.5575 12.7529 17.2297 -Courier_New.ttf 48 L 28.2727 33.5935 51 \ -5.8019 24.6392 44.3865 -Courier_New.ttf 48 L 28.2727 33.5935 52 R 0.0734 30.7070 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 53 < 1.0054 28.0000 31.5797 -Courier_New.ttf 48 L 28.2727 33.5935 54 4 -2.3833 22.3232 35.9800 -Courier_New.ttf 48 L 28.2727 33.5935 55 8 -2.8677 21.3094 36.7876 -Courier_New.ttf 48 L 28.2727 33.5935 56 0 -2.7830 23.6959 36.7876 -Courier_New.ttf 48 L 28.2727 33.5935 57 A -0.2911 37.1505 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 58 E 0.0035 27.3234 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 59 B -0.1900 28.4167 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 60 v 8.3741 32.1252 25.2097 -Courier_New.ttf 48 L 28.2727 33.5935 61 k -2.5061 26.6529 35.9800 -Courier_New.ttf 48 L 28.2727 33.5935 62 J 0.1298 28.6766 34.1640 -Courier_New.ttf 48 L 28.2727 33.5935 63 U -0.0395 31.3964 34.1640 -Courier_New.ttf 48 L 28.2727 33.5935 64 j -3.9617 18.4230 48.2928 -Courier_New.ttf 48 L 28.2727 33.5935 65 ( -2.2907 8.4065 43.1932 -Courier_New.ttf 48 L 28.2727 33.5935 66 7 -2.4847 22.0027 35.9800 -Courier_New.ttf 48 L 28.2727 33.5935 67 § -2.5653 27.1696 39.8097 -Courier_New.ttf 48 L 28.2727 33.5935 68 $ -5.7321 21.8261 44.3865 -Courier_New.ttf 48 L 28.2727 33.5935 69 € -0.2324 31.2297 34.4140 -Courier_New.ttf 48 L 28.2727 33.5935 70 / -6.0056 24.6392 44.3865 -Courier_New.ttf 48 L 28.2727 33.5935 71 C -0.5271 28.2727 34.4140 -Courier_New.ttf 48 L 28.2727 33.5935 72 * -2.0890 22.0860 21.9800 -Courier_New.ttf 48 L 28.2727 33.5935 73 ” -2.1607 24.6392 15.1932 -Courier_New.ttf 48 L 28.2727 33.5935 74 ? -0.7510 21.0594 34.9406 -Courier_New.ttf 48 L 28.2727 33.5935 75 { -2.6092 11.7324 43.3121 -Courier_New.ttf 48 L 28.2727 33.5935 76 } -2.5336 11.7324 43.3121 -Courier_New.ttf 48 L 28.2727 33.5935 77 , 25.0685 11.5597 17.2297 -Courier_New.ttf 48 L 28.2727 33.5935 78 I 0.1016 22.0860 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 79 ° -8.8409 15.7638 15.7638 -Courier_New.ttf 48 L 28.2727 33.5935 80 K -0.3782 31.2297 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 81 H -0.0437 28.4333 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 82 q 7.9754 29.1932 36.6565 -Courier_New.ttf 48 L 28.2727 33.5935 83 & 3.3540 21.9800 31.2070 -Courier_New.ttf 48 L 28.2727 33.5935 84 ’ -2.5807 12.7529 17.2297 -Courier_New.ttf 48 L 28.2727 33.5935 85 [ -2.2924 9.5998 43.1932 -Courier_New.ttf 48 L 28.2727 33.5935 86 - 15.1512 24.8892 3.2297 -Courier_New.ttf 48 L 28.2727 33.5935 87 Y -0.0654 29.3410 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 88 Q -0.2086 30.3865 40.7840 -Courier_New.ttf 48 L 28.2727 33.5935 89 " -2.1780 19.6995 16.0365 -Courier_New.ttf 48 L 28.2727 33.5935 90 ! -2.2766 6.4594 36.5505 -Courier_New.ttf 48 L 28.2727 33.5935 91 x 8.2860 29.1932 25.2097 -Courier_New.ttf 48 L 28.2727 33.5935 92 ) -2.4548 8.4065 43.1932 -Courier_New.ttf 48 L 28.2727 33.5935 93 = 10.6712 29.1932 11.3097 -Courier_New.ttf 48 L 28.2727 33.5935 94 + 2.9043 26.8590 29.2455 -Courier_New.ttf 48 L 28.2727 33.5935 95 X -0.1736 30.9092 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 96 » 8.3232 29.5432 26.8068 -Courier_New.ttf 48 L 28.2727 33.5935 97 ' -2.2676 7.9027 17.2297 -Courier_New.ttf 48 L 28.2727 33.5935 98 ¢ -4.4660 20.7867 38.0998 -Courier_New.ttf 48 L 28.2727 33.5935 99 Z -0.0655 23.0959 33.5935 -Courier_New.ttf 48 L 28.2727 33.5935 100 > 1.0796 28.0000 31.5797 -Courier_New.ttf 48 L 28.2727 33.5935 101 ® -0.8927 34.7867 35.0594 -Courier_New.ttf 48 L 28.2727 33.5935 102 © -0.5703 35.0594 34.7867 -Courier_New.ttf 48 L 28.2727 33.5935 103 ] -2.4144 9.5998 43.1932 -Courier_New.ttf 48 L 28.2727 33.5935 104 é -3.9657 27.4295 38.4203 -Courier_New.ttf 48 L 28.2727 33.5935 105 z 8.1642 23.7959 25.2097 -Courier_New.ttf 48 L 28.2727 33.5935 106 _ 47.9425 35.0594 2.3865 -Courier_New.ttf 48 L 28.2727 33.5935 107 ¥ 0.2581 29.6744 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 1 t -8.8501 26.2362 34.6034 -Courier_New.ttf 49 y 29.3121 36.2527 2 h -10.5018 29.6326 35.9800 -Courier_New.ttf 49 y 29.3121 36.2527 3 a -0.2918 26.9256 26.1840 -Courier_New.ttf 49 y 29.3121 36.2527 4 n -0.3949 29.2061 25.6135 -Courier_New.ttf 49 y 29.3121 36.2527 5 P -8.3869 26.0529 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 6 o -0.4120 26.8068 26.1840 -Courier_New.ttf 49 y 29.3121 36.2527 7 e -0.4590 27.4295 26.1840 -Courier_New.ttf 49 y 29.3121 36.2527 8 : 0.1014 8.6565 25.7802 -Courier_New.ttf 49 y 29.3121 36.2527 9 r -0.4451 26.8295 25.6135 -Courier_New.ttf 49 y 29.3121 36.2527 10 l -10.9969 24.4725 35.9800 -Courier_New.ttf 49 y 29.3121 36.2527 11 i -12.0538 24.4725 37.2498 -Courier_New.ttf 49 y 29.3121 36.2527 12 1 -12.3669 22.8527 37.5770 -Courier_New.ttf 49 y 29.3121 36.2527 13 | -10.2731 2.3865 43.1932 -Courier_New.ttf 49 y 29.3121 36.2527 14 N -8.1943 31.3964 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 15 f -10.6463 25.4696 35.9800 -Courier_New.ttf 49 y 29.3121 36.2527 16 g -0.5145 27.8462 36.6565 -Courier_New.ttf 49 y 29.3121 36.2527 17 d -10.8802 30.1138 36.5505 -Courier_New.ttf 49 y 29.3121 36.2527 18 W -8.5025 32.5836 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 19 s -0.1648 23.0959 26.1840 -Courier_New.ttf 49 y 29.3121 36.2527 20 c -0.3934 26.6529 26.1840 -Courier_New.ttf 49 y 29.3121 36.2527 21 u -0.1669 29.6326 25.7802 -Courier_New.ttf 49 y 29.3121 36.2527 22 3 -11.1801 23.6959 36.7876 -Courier_New.ttf 49 y 29.3121 36.2527 23 ~ 3.9962 24.8892 8.5732 -Courier_New.ttf 49 y 29.3121 36.2527 24 # -13.2723 25.0657 42.1962 -Courier_New.ttf 49 y 29.3121 36.2527 25 O -8.7440 29.1932 34.4140 -Courier_New.ttf 49 y 29.3121 36.2527 26 ` -12.5589 9.8498 8.6565 -Courier_New.ttf 49 y 29.3121 36.2527 27 @ -12.4139 22.0800 40.4029 -Courier_New.ttf 49 y 29.3121 36.2527 28 F -8.1666 27.3234 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 29 S -8.7111 24.5392 34.4140 -Courier_New.ttf 49 y 29.3121 36.2527 30 p -0.4155 29.8826 36.6565 -Courier_New.ttf 49 y 29.3121 36.2527 31 “ -10.5460 24.6392 15.1932 -Courier_New.ttf 49 y 29.3121 36.2527 32 % -10.9687 24.3664 36.5505 -Courier_New.ttf 49 y 29.3121 36.2527 33 £ -8.5207 26.2840 33.8435 -Courier_New.ttf 49 y 29.3121 36.2527 34 . 17.7404 8.8232 7.9800 -Courier_New.ttf 49 y 29.3121 36.2527 35 2 -10.8142 23.1732 36.3838 -Courier_New.ttf 49 y 29.3121 36.2527 36 5 -10.7458 23.7437 36.3838 -Courier_New.ttf 49 y 29.3121 36.2527 37 m -0.1422 35.1594 25.6135 -Courier_New.ttf 49 y 29.3121 36.2527 38 V -8.4607 35.1140 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 39 6 -11.0430 23.7959 36.7876 -Courier_New.ttf 49 y 29.3121 36.2527 40 w -0.1172 32.7502 25.2097 -Courier_New.ttf 49 y 29.3121 36.2527 41 T -8.2692 26.8590 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 42 M -8.2239 34.5367 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 43 G -8.3725 29.5621 34.4140 -Courier_New.ttf 49 y 29.3121 36.2527 44 b -10.6189 29.8826 36.5505 -Courier_New.ttf 49 y 29.3121 36.2527 45 9 -11.1787 22.4193 36.7876 -Courier_New.ttf 49 y 29.3121 36.2527 46 ; 0.1074 12.8068 30.9570 -Courier_New.ttf 49 y 29.3121 36.2527 47 D -8.2745 28.4394 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 48 L -8.3045 28.2727 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 49 y 0.1731 29.3121 36.2527 -Courier_New.ttf 49 y 29.3121 36.2527 50 ‘ -10.5843 12.7529 17.2297 -Courier_New.ttf 49 y 29.3121 36.2527 51 \ -13.6586 24.6392 44.3865 -Courier_New.ttf 49 y 29.3121 36.2527 52 R -8.2180 30.7070 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 53 < -7.1948 28.0000 31.5797 -Courier_New.ttf 49 y 29.3121 36.2527 54 4 -10.7663 22.3232 35.9800 -Courier_New.ttf 49 y 29.3121 36.2527 55 8 -11.0259 21.3094 36.7876 -Courier_New.ttf 49 y 29.3121 36.2527 56 0 -11.1051 23.6959 36.7876 -Courier_New.ttf 49 y 29.3121 36.2527 57 A -8.3752 37.1505 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 58 E -8.1700 27.3234 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 59 B -8.2411 28.4167 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 60 v -0.1955 32.1252 25.2097 -Courier_New.ttf 49 y 29.3121 36.2527 61 k -11.0997 26.6529 35.9800 -Courier_New.ttf 49 y 29.3121 36.2527 62 J -8.2404 28.6766 34.1640 -Courier_New.ttf 49 y 29.3121 36.2527 63 U -8.5677 31.3964 34.1640 -Courier_New.ttf 49 y 29.3121 36.2527 64 j -12.2132 18.4230 48.2928 -Courier_New.ttf 49 y 29.3121 36.2527 65 ( -10.8531 8.4065 43.1932 -Courier_New.ttf 49 y 29.3121 36.2527 66 7 -10.7498 22.0027 35.9800 -Courier_New.ttf 49 y 29.3121 36.2527 67 § -10.7689 27.1696 39.8097 -Courier_New.ttf 49 y 29.3121 36.2527 68 $ -14.0814 21.8261 44.3865 -Courier_New.ttf 49 y 29.3121 36.2527 69 € -8.6086 31.2297 34.4140 -Courier_New.ttf 49 y 29.3121 36.2527 70 / -14.4090 24.6392 44.3865 -Courier_New.ttf 49 y 29.3121 36.2527 71 C -8.7684 28.2727 34.4140 -Courier_New.ttf 49 y 29.3121 36.2527 72 * -10.7696 22.0860 21.9800 -Courier_New.ttf 49 y 29.3121 36.2527 73 ” -10.7780 24.6392 15.1932 -Courier_New.ttf 49 y 29.3121 36.2527 74 ? -9.0726 21.0594 34.9406 -Courier_New.ttf 49 y 29.3121 36.2527 75 { -11.0051 11.7324 43.3121 -Courier_New.ttf 49 y 29.3121 36.2527 76 } -10.8480 11.7324 43.3121 -Courier_New.ttf 49 y 29.3121 36.2527 77 , 16.4150 11.5597 17.2297 -Courier_New.ttf 49 y 29.3121 36.2527 78 I -8.4090 22.0860 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 79 ° -17.1534 15.7638 15.7638 -Courier_New.ttf 49 y 29.3121 36.2527 80 K -8.1725 31.2297 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 81 H -8.2895 28.4333 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 82 q -0.5554 29.1932 36.6565 -Courier_New.ttf 49 y 29.3121 36.2527 83 & -5.1113 21.9800 31.2070 -Courier_New.ttf 49 y 29.3121 36.2527 84 ’ -10.6703 12.7529 17.2297 -Courier_New.ttf 49 y 29.3121 36.2527 85 [ -10.8463 9.5998 43.1932 -Courier_New.ttf 49 y 29.3121 36.2527 86 - 6.9118 24.8892 3.2297 -Courier_New.ttf 49 y 29.3121 36.2527 87 Y -8.0757 29.3410 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 88 Q -8.4117 30.3865 40.7840 -Courier_New.ttf 49 y 29.3121 36.2527 89 " -10.4947 19.6995 16.0365 -Courier_New.ttf 49 y 29.3121 36.2527 90 ! -10.7879 6.4594 36.5505 -Courier_New.ttf 49 y 29.3121 36.2527 91 x -0.1312 29.1932 25.2097 -Courier_New.ttf 49 y 29.3121 36.2527 92 ) -10.8770 8.4065 43.1932 -Courier_New.ttf 49 y 29.3121 36.2527 93 = 2.8085 29.1932 11.3097 -Courier_New.ttf 49 y 29.3121 36.2527 94 + -5.7236 26.8590 29.2455 -Courier_New.ttf 49 y 29.3121 36.2527 95 X -8.3134 30.9092 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 96 » -0.7907 29.5432 26.8068 -Courier_New.ttf 49 y 29.3121 36.2527 97 ' -10.5917 7.9027 17.2297 -Courier_New.ttf 49 y 29.3121 36.2527 98 ¢ -12.7301 20.7867 38.0998 -Courier_New.ttf 49 y 29.3121 36.2527 99 Z -8.5677 23.0959 33.5935 -Courier_New.ttf 49 y 29.3121 36.2527 100 > -7.2815 28.0000 31.5797 -Courier_New.ttf 49 y 29.3121 36.2527 101 ® -9.3446 34.7867 35.0594 -Courier_New.ttf 49 y 29.3121 36.2527 102 © -8.8141 35.0594 34.7867 -Courier_New.ttf 49 y 29.3121 36.2527 103 ] -10.4316 9.5998 43.1932 -Courier_New.ttf 49 y 29.3121 36.2527 104 é -12.6044 27.4295 38.4203 -Courier_New.ttf 49 y 29.3121 36.2527 105 z 0.1437 23.7959 25.2097 -Courier_New.ttf 49 y 29.3121 36.2527 106 _ 39.3818 35.0594 2.3865 -Courier_New.ttf 49 y 29.3121 36.2527 107 ¥ -8.3134 29.6744 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 1 t 1.9576 26.2362 34.6034 -Courier_New.ttf 50 ‘ 12.7529 17.2297 2 h -0.1998 29.6326 35.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 3 a 10.4597 26.9256 26.1840 -Courier_New.ttf 50 ‘ 12.7529 17.2297 4 n 10.2475 29.2061 25.6135 -Courier_New.ttf 50 ‘ 12.7529 17.2297 5 P 2.4704 26.0529 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 6 o 10.2234 26.8068 26.1840 -Courier_New.ttf 50 ‘ 12.7529 17.2297 7 e 10.3664 27.4295 26.1840 -Courier_New.ttf 50 ‘ 12.7529 17.2297 8 : 10.7703 8.6565 25.7802 -Courier_New.ttf 50 ‘ 12.7529 17.2297 9 r 10.5288 26.8295 25.6135 -Courier_New.ttf 50 ‘ 12.7529 17.2297 10 l -0.2522 24.4725 35.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 11 i -1.1266 24.4725 37.2498 -Courier_New.ttf 50 ‘ 12.7529 17.2297 12 1 -1.2933 22.8527 37.5770 -Courier_New.ttf 50 ‘ 12.7529 17.2297 13 | 0.1123 2.3865 43.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 14 N 2.2623 31.3964 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 15 f -0.0871 25.4696 35.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 16 g 10.5770 27.8462 36.6565 -Courier_New.ttf 50 ‘ 12.7529 17.2297 17 d 0.0014 30.1138 36.5505 -Courier_New.ttf 50 ‘ 12.7529 17.2297 18 W 2.3730 32.5836 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 19 s 10.4294 23.0959 26.1840 -Courier_New.ttf 50 ‘ 12.7529 17.2297 20 c 10.5528 26.6529 26.1840 -Courier_New.ttf 50 ‘ 12.7529 17.2297 21 u 10.5864 29.6326 25.7802 -Courier_New.ttf 50 ‘ 12.7529 17.2297 22 3 -0.3885 23.6959 36.7876 -Courier_New.ttf 50 ‘ 12.7529 17.2297 23 ~ 14.8536 24.8892 8.5732 -Courier_New.ttf 50 ‘ 12.7529 17.2297 24 # -2.1335 25.0657 42.1962 -Courier_New.ttf 50 ‘ 12.7529 17.2297 25 O 2.1865 29.1932 34.4140 -Courier_New.ttf 50 ‘ 12.7529 17.2297 26 ` -2.0467 9.8498 8.6565 -Courier_New.ttf 50 ‘ 12.7529 17.2297 27 @ -1.3719 22.0800 40.4029 -Courier_New.ttf 50 ‘ 12.7529 17.2297 28 F 2.4305 27.3234 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 29 S 2.1232 24.5392 34.4140 -Courier_New.ttf 50 ‘ 12.7529 17.2297 30 p 10.3335 29.8826 36.6565 -Courier_New.ttf 50 ‘ 12.7529 17.2297 31 “ -0.2140 24.6392 15.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 32 % -0.2113 24.3664 36.5505 -Courier_New.ttf 50 ‘ 12.7529 17.2297 33 £ 2.0938 26.2840 33.8435 -Courier_New.ttf 50 ‘ 12.7529 17.2297 34 . 28.3838 8.8232 7.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 35 2 -0.4434 23.1732 36.3838 -Courier_New.ttf 50 ‘ 12.7529 17.2297 36 5 0.1658 23.7437 36.3838 -Courier_New.ttf 50 ‘ 12.7529 17.2297 37 m 10.5815 35.1594 25.6135 -Courier_New.ttf 50 ‘ 12.7529 17.2297 38 V 2.4515 35.1140 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 39 6 -0.3335 23.7959 36.7876 -Courier_New.ttf 50 ‘ 12.7529 17.2297 40 w 10.8716 32.7502 25.2097 -Courier_New.ttf 50 ‘ 12.7529 17.2297 41 T 2.4996 26.8590 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 42 M 2.3553 34.5367 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 43 G 2.3236 29.5621 34.4140 -Courier_New.ttf 50 ‘ 12.7529 17.2297 44 b -0.0105 29.8826 36.5505 -Courier_New.ttf 50 ‘ 12.7529 17.2297 45 9 -0.3472 22.4193 36.7876 -Courier_New.ttf 50 ‘ 12.7529 17.2297 46 ; 10.9113 12.8068 30.9570 -Courier_New.ttf 50 ‘ 12.7529 17.2297 47 D 2.4726 28.4394 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 48 L 2.3410 28.2727 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 49 y 10.8904 29.3121 36.2527 -Courier_New.ttf 50 ‘ 12.7529 17.2297 50 ‘ 0.0513 12.7529 17.2297 -Courier_New.ttf 50 ‘ 12.7529 17.2297 51 \ -3.0457 24.6392 44.3865 -Courier_New.ttf 50 ‘ 12.7529 17.2297 52 R 2.6171 30.7070 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 53 < 3.7103 28.0000 31.5797 -Courier_New.ttf 50 ‘ 12.7529 17.2297 54 4 -0.0774 22.3232 35.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 55 8 -0.4985 21.3094 36.7876 -Courier_New.ttf 50 ‘ 12.7529 17.2297 56 0 -0.5448 23.6959 36.7876 -Courier_New.ttf 50 ‘ 12.7529 17.2297 57 A 2.4978 37.1505 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 58 E 2.2754 27.3234 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 59 B 2.3225 28.4167 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 60 v 10.8592 32.1252 25.2097 -Courier_New.ttf 50 ‘ 12.7529 17.2297 61 k 0.1001 26.6529 35.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 62 J 2.5277 28.6766 34.1640 -Courier_New.ttf 50 ‘ 12.7529 17.2297 63 U 2.1849 31.3964 34.1640 -Courier_New.ttf 50 ‘ 12.7529 17.2297 64 j -1.2085 18.4230 48.2928 -Courier_New.ttf 50 ‘ 12.7529 17.2297 65 ( 0.0885 8.4065 43.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 66 7 0.2470 22.0027 35.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 67 § 0.0129 27.1696 39.8097 -Courier_New.ttf 50 ‘ 12.7529 17.2297 68 $ -3.1932 21.8261 44.3865 -Courier_New.ttf 50 ‘ 12.7529 17.2297 69 € 2.3023 31.2297 34.4140 -Courier_New.ttf 50 ‘ 12.7529 17.2297 70 / -4.0669 24.6392 44.3865 -Courier_New.ttf 50 ‘ 12.7529 17.2297 71 C 2.0448 28.2727 34.4140 -Courier_New.ttf 50 ‘ 12.7529 17.2297 72 * -0.1172 22.0860 21.9800 -Courier_New.ttf 50 ‘ 12.7529 17.2297 73 ” 0.0538 24.6392 15.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 74 ? 1.3357 21.0594 34.9406 -Courier_New.ttf 50 ‘ 12.7529 17.2297 75 { -0.0744 11.7324 43.3121 -Courier_New.ttf 50 ‘ 12.7529 17.2297 76 } -0.3157 11.7324 43.3121 -Courier_New.ttf 50 ‘ 12.7529 17.2297 77 , 27.6291 11.5597 17.2297 -Courier_New.ttf 50 ‘ 12.7529 17.2297 78 I 2.3325 22.0860 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 79 ° -6.3558 15.7638 15.7638 -Courier_New.ttf 50 ‘ 12.7529 17.2297 80 K 2.6775 31.2297 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 81 H 2.5631 28.4333 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 82 q 10.5180 29.1932 36.6565 -Courier_New.ttf 50 ‘ 12.7529 17.2297 83 & 5.4748 21.9800 31.2070 -Courier_New.ttf 50 ‘ 12.7529 17.2297 84 ’ -0.1658 12.7529 17.2297 -Courier_New.ttf 50 ‘ 12.7529 17.2297 85 [ -0.1626 9.5998 43.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 86 - 17.7742 24.8892 3.2297 -Courier_New.ttf 50 ‘ 12.7529 17.2297 87 Y 2.4592 29.3410 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 88 Q 2.2107 30.3865 40.7840 -Courier_New.ttf 50 ‘ 12.7529 17.2297 89 " -0.1329 19.6995 16.0365 -Courier_New.ttf 50 ‘ 12.7529 17.2297 90 ! -0.0532 6.4594 36.5505 -Courier_New.ttf 50 ‘ 12.7529 17.2297 91 x 10.8329 29.1932 25.2097 -Courier_New.ttf 50 ‘ 12.7529 17.2297 92 ) 0.0695 8.4065 43.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 93 = 13.7003 29.1932 11.3097 -Courier_New.ttf 50 ‘ 12.7529 17.2297 94 + 4.8441 26.8590 29.2455 -Courier_New.ttf 50 ‘ 12.7529 17.2297 95 X 2.2099 30.9092 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 96 » 9.9858 28.7766 26.8068 -Courier_New.ttf 50 ‘ 12.7529 17.2297 97 ' 0.1669 7.9027 17.2297 -Courier_New.ttf 50 ‘ 12.7529 17.2297 98 ¢ -2.2210 20.7867 38.0998 -Courier_New.ttf 50 ‘ 12.7529 17.2297 99 Z 2.2665 23.0959 33.5935 -Courier_New.ttf 50 ‘ 12.7529 17.2297 100 > 3.3874 28.0000 31.5797 -Courier_New.ttf 50 ‘ 12.7529 17.2297 101 ® 1.4698 34.7867 35.0594 -Courier_New.ttf 50 ‘ 12.7529 17.2297 102 © 1.7183 35.0594 34.7867 -Courier_New.ttf 50 ‘ 12.7529 17.2297 103 ] 0.2470 9.5998 43.1932 -Courier_New.ttf 50 ‘ 12.7529 17.2297 104 é -1.6071 27.4295 38.4203 -Courier_New.ttf 50 ‘ 12.7529 17.2297 105 z 10.9854 23.7959 25.2097 -Courier_New.ttf 50 ‘ 12.7529 17.2297 106 _ 49.9800 35.0594 2.3865 -Courier_New.ttf 50 ‘ 12.7529 17.2297 107 ¥ 2.6597 29.6744 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 1 t 5.2505 26.2362 34.6034 -Courier_New.ttf 51 \ 24.6392 44.3865 2 h 3.3097 29.6326 35.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 3 a 13.5325 26.9256 26.1840 -Courier_New.ttf 51 \ 24.6392 44.3865 4 n 13.3408 29.2061 25.6135 -Courier_New.ttf 51 \ 24.6392 44.3865 5 P 5.6866 26.0529 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 6 o 13.7315 26.8068 26.1840 -Courier_New.ttf 51 \ 24.6392 44.3865 7 e 13.5962 27.4295 26.1840 -Courier_New.ttf 51 \ 24.6392 44.3865 8 : 13.9597 8.6565 25.7802 -Courier_New.ttf 51 \ 24.6392 44.3865 9 r 13.6825 26.8295 25.6135 -Courier_New.ttf 51 \ 24.6392 44.3865 10 l 3.1642 24.4725 35.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 11 i 1.8145 24.4725 37.2498 -Courier_New.ttf 51 \ 24.6392 44.3865 12 1 1.6886 22.8527 37.5770 -Courier_New.ttf 51 \ 24.6392 44.3865 13 | 3.0853 2.3865 43.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 14 N 5.2751 31.3964 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 15 f 3.2353 25.4696 35.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 16 g 13.7885 27.8462 36.6565 -Courier_New.ttf 51 \ 24.6392 44.3865 17 d 3.3566 30.1138 36.5505 -Courier_New.ttf 51 \ 24.6392 44.3865 18 W 5.4646 32.5836 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 19 s 13.5676 23.0959 26.1840 -Courier_New.ttf 51 \ 24.6392 44.3865 20 c 13.4446 26.6529 26.1840 -Courier_New.ttf 51 \ 24.6392 44.3865 21 u 14.0000 29.6326 25.7802 -Courier_New.ttf 51 \ 24.6392 44.3865 22 3 2.6993 23.6959 36.7876 -Courier_New.ttf 51 \ 24.6392 44.3865 23 ~ 18.2094 24.8892 8.5732 -Courier_New.ttf 51 \ 24.6392 44.3865 24 # 0.5256 25.0657 42.1962 -Courier_New.ttf 51 \ 24.6392 44.3865 25 O 5.2109 29.1932 34.4140 -Courier_New.ttf 51 \ 24.6392 44.3865 26 ` 1.1371 9.8498 8.6565 -Courier_New.ttf 51 \ 24.6392 44.3865 27 @ 1.3847 22.0800 40.4029 -Courier_New.ttf 51 \ 24.6392 44.3865 28 F 5.8191 27.3234 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 29 S 5.3314 24.5392 34.4140 -Courier_New.ttf 51 \ 24.6392 44.3865 30 p 13.7757 29.8826 36.6565 -Courier_New.ttf 51 \ 24.6392 44.3865 31 “ 3.3480 24.6392 15.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 32 % 3.2200 24.3664 36.5505 -Courier_New.ttf 51 \ 24.6392 44.3865 33 £ 5.3449 26.2840 33.8435 -Courier_New.ttf 51 \ 24.6392 44.3865 34 . 31.9457 8.8232 7.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 35 2 3.0752 23.1732 36.3838 -Courier_New.ttf 51 \ 24.6392 44.3865 36 5 3.0879 23.7437 36.3838 -Courier_New.ttf 51 \ 24.6392 44.3865 37 m 13.4390 35.1594 25.6135 -Courier_New.ttf 51 \ 24.6392 44.3865 38 V 5.6649 35.1140 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 39 6 2.8941 23.7959 36.7876 -Courier_New.ttf 51 \ 24.6392 44.3865 40 w 14.0083 32.7502 25.2097 -Courier_New.ttf 51 \ 24.6392 44.3865 41 T 5.3243 26.8590 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 42 M 5.8457 34.5367 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 43 G 5.2823 29.5621 34.4140 -Courier_New.ttf 51 \ 24.6392 44.3865 44 b 3.2849 29.8826 36.5505 -Courier_New.ttf 51 \ 24.6392 44.3865 45 9 2.9928 22.4193 36.7876 -Courier_New.ttf 51 \ 24.6392 44.3865 46 ; 14.1788 12.8068 30.9570 -Courier_New.ttf 51 \ 24.6392 44.3865 47 D 5.6936 28.4394 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 48 L 5.4368 28.2727 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 49 y 14.0856 29.3121 36.2527 -Courier_New.ttf 51 \ 24.6392 44.3865 50 ‘ 3.1207 12.7529 17.2297 -Courier_New.ttf 51 \ 24.6392 44.3865 51 \ -0.0251 24.6392 44.3865 -Courier_New.ttf 51 \ 24.6392 44.3865 52 R 5.7202 30.7070 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 53 < 7.0267 28.0000 31.5797 -Courier_New.ttf 51 \ 24.6392 44.3865 54 4 3.0958 22.3232 35.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 55 8 2.8234 21.3094 36.7876 -Courier_New.ttf 51 \ 24.6392 44.3865 56 0 2.8616 23.6959 36.7876 -Courier_New.ttf 51 \ 24.6392 44.3865 57 A 5.6579 37.1505 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 58 E 5.5920 27.3234 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 59 B 5.3755 28.4167 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 60 v 14.3585 32.1252 25.2097 -Courier_New.ttf 51 \ 24.6392 44.3865 61 k 3.3772 26.6529 35.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 62 J 5.7204 28.6766 34.1640 -Courier_New.ttf 51 \ 24.6392 44.3865 63 U 5.4281 31.3964 34.1640 -Courier_New.ttf 51 \ 24.6392 44.3865 64 j 1.8028 18.4230 48.2928 -Courier_New.ttf 51 \ 24.6392 44.3865 65 ( 3.2631 8.4065 43.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 66 7 3.1226 22.0027 35.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 67 § 3.3679 27.1696 39.8097 -Courier_New.ttf 51 \ 24.6392 44.3865 68 $ 0.3196 21.8261 44.3865 -Courier_New.ttf 51 \ 24.6392 44.3865 69 € 5.4376 31.2297 34.4140 -Courier_New.ttf 51 \ 24.6392 44.3865 70 / -0.3608 24.6392 44.3865 -Courier_New.ttf 51 \ 24.6392 44.3865 71 C 5.6989 28.2727 34.4140 -Courier_New.ttf 51 \ 24.6392 44.3865 72 * 3.3371 22.0860 21.9800 -Courier_New.ttf 51 \ 24.6392 44.3865 73 ” 3.2622 24.6392 15.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 74 ? 4.8001 21.0594 34.9406 -Courier_New.ttf 51 \ 24.6392 44.3865 75 { 2.6001 11.7324 43.3121 -Courier_New.ttf 51 \ 24.6392 44.3865 76 } 2.9153 11.7324 43.3121 -Courier_New.ttf 51 \ 24.6392 44.3865 77 , 30.5609 11.5597 17.2297 -Courier_New.ttf 51 \ 24.6392 44.3865 78 I 5.9178 22.0860 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 79 ° -3.4114 15.7638 15.7638 -Courier_New.ttf 51 \ 24.6392 44.3865 80 K 5.5446 31.2297 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 81 H 5.6745 28.4333 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 82 q 13.9039 29.1932 36.6565 -Courier_New.ttf 51 \ 24.6392 44.3865 83 & 8.2803 21.9800 31.2070 -Courier_New.ttf 51 \ 24.6392 44.3865 84 ’ 3.4470 12.7529 17.2297 -Courier_New.ttf 51 \ 24.6392 44.3865 85 [ 3.3519 9.5998 43.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 86 - 20.9941 24.8892 3.2297 -Courier_New.ttf 51 \ 24.6392 44.3865 87 Y 5.4004 29.3410 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 88 Q 5.4595 30.3865 40.7840 -Courier_New.ttf 51 \ 24.6392 44.3865 89 " 3.4228 19.6995 16.0365 -Courier_New.ttf 51 \ 24.6392 44.3865 90 ! 3.3927 6.4594 36.5505 -Courier_New.ttf 51 \ 24.6392 44.3865 91 x 14.0108 29.1932 25.2097 -Courier_New.ttf 51 \ 24.6392 44.3865 92 ) 3.5340 8.4065 43.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 93 = 16.7964 29.1932 11.3097 -Courier_New.ttf 51 \ 24.6392 44.3865 94 + 8.1936 26.8590 29.2455 -Courier_New.ttf 51 \ 24.6392 44.3865 95 X 5.4661 30.9092 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 96 » 13.5007 28.7766 26.8068 -Courier_New.ttf 51 \ 24.6392 44.3865 97 ' 3.0527 7.9027 17.2297 -Courier_New.ttf 51 \ 24.6392 44.3865 98 ¢ 0.9778 20.7867 38.0998 -Courier_New.ttf 51 \ 24.6392 44.3865 99 Z 5.6519 23.0959 33.5935 -Courier_New.ttf 51 \ 24.6392 44.3865 100 > 6.6540 28.0000 31.5797 -Courier_New.ttf 51 \ 24.6392 44.3865 101 ® 5.0254 34.7867 35.0594 -Courier_New.ttf 51 \ 24.6392 44.3865 102 © 5.0292 35.0594 34.7867 -Courier_New.ttf 51 \ 24.6392 44.3865 103 ] 3.2974 9.5998 43.1932 -Courier_New.ttf 51 \ 24.6392 44.3865 104 é 1.2889 27.4295 38.4203 -Courier_New.ttf 51 \ 24.6392 44.3865 105 z 14.1204 23.7959 25.2097 -Courier_New.ttf 51 \ 24.6392 44.3865 106 _ 53.2819 35.0594 2.3865 -Courier_New.ttf 51 \ 24.6392 44.3865 107 ¥ 5.3789 29.6744 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 1 t -0.5759 26.2362 34.6034 -Courier_New.ttf 52 R 30.7070 33.5935 2 h -2.6275 29.6326 35.9800 -Courier_New.ttf 52 R 30.7070 33.5935 3 a 7.8345 26.9256 26.1840 -Courier_New.ttf 52 R 30.7070 33.5935 4 n 8.0468 29.2061 25.6135 -Courier_New.ttf 52 R 30.7070 33.5935 5 P -0.0246 26.0529 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 6 o 8.0555 26.8068 26.1840 -Courier_New.ttf 52 R 30.7070 33.5935 7 e 7.9629 27.4295 26.1840 -Courier_New.ttf 52 R 30.7070 33.5935 8 : 8.5209 8.6565 25.7802 -Courier_New.ttf 52 R 30.7070 33.5935 9 r 8.0087 26.8295 25.6135 -Courier_New.ttf 52 R 30.7070 33.5935 10 l -2.4351 24.4725 35.9800 -Courier_New.ttf 52 R 30.7070 33.5935 11 i -3.6730 24.4725 37.2498 -Courier_New.ttf 52 R 30.7070 33.5935 12 1 -4.1546 22.8527 37.5770 -Courier_New.ttf 52 R 30.7070 33.5935 13 | -2.5212 2.3865 43.1932 -Courier_New.ttf 52 R 30.7070 33.5935 14 N -0.0336 31.3964 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 15 f -2.3754 25.4696 35.9800 -Courier_New.ttf 52 R 30.7070 33.5935 16 g 7.8960 27.8462 36.6565 -Courier_New.ttf 52 R 30.7070 33.5935 17 d -2.5879 30.1138 36.5505 -Courier_New.ttf 52 R 30.7070 33.5935 18 W 0.0969 32.5836 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 19 s 8.0806 23.0959 26.1840 -Courier_New.ttf 52 R 30.7070 33.5935 20 c 7.9442 26.6529 26.1840 -Courier_New.ttf 52 R 30.7070 33.5935 21 u 8.1452 29.6326 25.7802 -Courier_New.ttf 52 R 30.7070 33.5935 22 3 -2.4719 23.6959 36.7876 -Courier_New.ttf 52 R 30.7070 33.5935 23 ~ 12.5614 24.8892 8.5732 -Courier_New.ttf 52 R 30.7070 33.5935 24 # -4.8933 25.0657 42.1962 -Courier_New.ttf 52 R 30.7070 33.5935 25 O -0.1305 29.1932 34.4140 -Courier_New.ttf 52 R 30.7070 33.5935 26 ` -4.5747 9.8498 8.6565 -Courier_New.ttf 52 R 30.7070 33.5935 27 @ -4.0221 22.0800 40.4029 -Courier_New.ttf 52 R 30.7070 33.5935 28 F -0.2516 27.3234 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 29 S -0.5608 24.5392 34.4140 -Courier_New.ttf 52 R 30.7070 33.5935 30 p 7.8376 29.8826 36.6565 -Courier_New.ttf 52 R 30.7070 33.5935 31 “ -2.5593 24.6392 15.1932 -Courier_New.ttf 52 R 30.7070 33.5935 32 % -2.3008 24.3664 36.5505 -Courier_New.ttf 52 R 30.7070 33.5935 33 £ -0.1605 26.2840 33.8435 -Courier_New.ttf 52 R 30.7070 33.5935 34 . 26.2652 8.8232 7.9800 -Courier_New.ttf 52 R 30.7070 33.5935 35 2 -2.6115 23.1732 36.3838 -Courier_New.ttf 52 R 30.7070 33.5935 36 5 -2.3046 23.7437 36.3838 -Courier_New.ttf 52 R 30.7070 33.5935 37 m 7.9230 35.1594 25.6135 -Courier_New.ttf 52 R 30.7070 33.5935 38 V 0.1600 35.1140 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 39 6 -2.9684 23.7959 36.7876 -Courier_New.ttf 52 R 30.7070 33.5935 40 w 8.4951 32.7502 25.2097 -Courier_New.ttf 52 R 30.7070 33.5935 41 T -0.1427 26.8590 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 42 M -0.0000 34.5367 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 43 G -0.2440 29.5621 34.4140 -Courier_New.ttf 52 R 30.7070 33.5935 44 b -2.1343 29.8826 36.5505 -Courier_New.ttf 52 R 30.7070 33.5935 45 9 -2.6578 22.4193 36.7876 -Courier_New.ttf 52 R 30.7070 33.5935 46 ; 8.3605 12.8068 30.9570 -Courier_New.ttf 52 R 30.7070 33.5935 47 D 0.0982 28.4394 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 48 L -0.0927 28.2727 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 49 y 8.4028 29.3121 36.2527 -Courier_New.ttf 52 R 30.7070 33.5935 50 ‘ -2.5026 12.7529 17.2297 -Courier_New.ttf 52 R 30.7070 33.5935 51 \ -5.5890 24.6392 44.3865 -Courier_New.ttf 52 R 30.7070 33.5935 52 R 0.0903 30.7070 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 53 < 1.1537 28.0000 31.5797 -Courier_New.ttf 52 R 30.7070 33.5935 54 4 -2.5991 22.3232 35.9800 -Courier_New.ttf 52 R 30.7070 33.5935 55 8 -2.8135 21.3094 36.7876 -Courier_New.ttf 52 R 30.7070 33.5935 56 0 -2.5901 23.6959 36.7876 -Courier_New.ttf 52 R 30.7070 33.5935 57 A 0.1295 37.1505 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 58 E -0.3201 27.3234 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 59 B 0.0000 28.4167 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 60 v 8.6661 32.1252 25.2097 -Courier_New.ttf 52 R 30.7070 33.5935 61 k -2.7211 26.6529 35.9800 -Courier_New.ttf 52 R 30.7070 33.5935 62 J 0.5486 28.6766 34.1640 -Courier_New.ttf 52 R 30.7070 33.5935 63 U -0.1516 31.3964 34.1640 -Courier_New.ttf 52 R 30.7070 33.5935 64 j -3.2364 18.4230 48.2928 -Courier_New.ttf 52 R 30.7070 33.5935 65 ( -2.2968 8.4065 43.1932 -Courier_New.ttf 52 R 30.7070 33.5935 66 7 -2.2994 22.0027 35.9800 -Courier_New.ttf 52 R 30.7070 33.5935 67 § -2.7402 27.1696 39.8097 -Courier_New.ttf 52 R 30.7070 33.5935 68 $ -5.4125 21.8261 44.3865 -Courier_New.ttf 52 R 30.7070 33.5935 69 € -0.1667 31.2297 34.4140 -Courier_New.ttf 52 R 30.7070 33.5935 70 / -6.3838 24.6392 44.3865 -Courier_New.ttf 52 R 30.7070 33.5935 71 C -0.2844 28.2727 34.4140 -Courier_New.ttf 52 R 30.7070 33.5935 72 * -2.4644 22.0860 21.9800 -Courier_New.ttf 52 R 30.7070 33.5935 73 ” -2.6862 24.6392 15.1932 -Courier_New.ttf 52 R 30.7070 33.5935 74 ? -1.2960 21.0594 34.9406 -Courier_New.ttf 52 R 30.7070 33.5935 75 { -2.6398 11.7324 43.3121 -Courier_New.ttf 52 R 30.7070 33.5935 76 } -2.8288 11.7324 43.3121 -Courier_New.ttf 52 R 30.7070 33.5935 77 , 24.8458 11.5597 17.2297 -Courier_New.ttf 52 R 30.7070 33.5935 78 I -0.2144 22.0860 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 79 ° -9.1119 15.7638 15.7638 -Courier_New.ttf 52 R 30.7070 33.5935 80 K 0.0124 31.2297 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 81 H -0.3495 28.4333 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 82 q 8.0337 29.1932 36.6565 -Courier_New.ttf 52 R 30.7070 33.5935 83 & 2.9330 21.9800 31.2070 -Courier_New.ttf 52 R 30.7070 33.5935 84 ’ -2.1486 12.7529 17.2297 -Courier_New.ttf 52 R 30.7070 33.5935 85 [ -2.6205 9.5998 43.1932 -Courier_New.ttf 52 R 30.7070 33.5935 86 - 15.2195 24.8892 3.2297 -Courier_New.ttf 52 R 30.7070 33.5935 87 Y -0.0073 29.3410 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 88 Q -0.0805 30.3865 40.7840 -Courier_New.ttf 52 R 30.7070 33.5935 89 " -2.4304 19.6995 16.0365 -Courier_New.ttf 52 R 30.7070 33.5935 90 ! -2.2583 6.4594 36.5505 -Courier_New.ttf 52 R 30.7070 33.5935 91 x 8.3464 29.1932 25.2097 -Courier_New.ttf 52 R 30.7070 33.5935 92 ) -2.2697 8.4065 43.1932 -Courier_New.ttf 52 R 30.7070 33.5935 93 = 11.0912 29.1932 11.3097 -Courier_New.ttf 52 R 30.7070 33.5935 94 + 2.4251 26.8590 29.2455 -Courier_New.ttf 52 R 30.7070 33.5935 95 X 0.2228 30.9092 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 96 » 7.7784 29.5432 26.8068 -Courier_New.ttf 52 R 30.7070 33.5935 97 ' -2.7603 7.9027 17.2297 -Courier_New.ttf 52 R 30.7070 33.5935 98 ¢ -4.6045 20.7867 38.0998 -Courier_New.ttf 52 R 30.7070 33.5935 99 Z -0.2242 23.0959 33.5935 -Courier_New.ttf 52 R 30.7070 33.5935 100 > 1.0463 28.0000 31.5797 -Courier_New.ttf 52 R 30.7070 33.5935 101 ® -0.9539 34.7867 35.0594 -Courier_New.ttf 52 R 30.7070 33.5935 102 © -0.2899 35.0594 34.7867 -Courier_New.ttf 52 R 30.7070 33.5935 103 ] -2.7157 9.5998 43.1932 -Courier_New.ttf 52 R 30.7070 33.5935 104 é -4.2561 27.4295 38.4203 -Courier_New.ttf 52 R 30.7070 33.5935 105 z 8.3446 23.7959 25.2097 -Courier_New.ttf 52 R 30.7070 33.5935 106 _ 47.2704 35.0594 2.3865 -Courier_New.ttf 52 R 30.7070 33.5935 107 ¥ 0.0417 29.6744 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 1 t -1.7438 26.2362 34.6034 -Courier_New.ttf 53 < 28.0000 31.5797 2 h -3.6316 29.6326 35.9800 -Courier_New.ttf 53 < 28.0000 31.5797 3 a 6.8769 26.9256 26.1840 -Courier_New.ttf 53 < 28.0000 31.5797 4 n 6.9225 29.2061 25.6135 -Courier_New.ttf 53 < 28.0000 31.5797 5 P -1.3364 26.0529 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 6 o 7.0096 26.8068 26.1840 -Courier_New.ttf 53 < 28.0000 31.5797 7 e 6.6260 27.4295 26.1840 -Courier_New.ttf 53 < 28.0000 31.5797 8 : 7.3534 8.6565 25.7802 -Courier_New.ttf 53 < 28.0000 31.5797 9 r 7.1684 26.8295 25.6135 -Courier_New.ttf 53 < 28.0000 31.5797 10 l -3.5283 24.4725 35.9800 -Courier_New.ttf 53 < 28.0000 31.5797 11 i -4.7909 24.4725 37.2498 -Courier_New.ttf 53 < 28.0000 31.5797 12 1 -5.2267 22.8527 37.5770 -Courier_New.ttf 53 < 28.0000 31.5797 13 | -3.3392 2.3865 43.1932 -Courier_New.ttf 53 < 28.0000 31.5797 14 N -1.2608 31.3964 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 15 f -3.7123 25.4696 35.9800 -Courier_New.ttf 53 < 28.0000 31.5797 16 g 6.6035 27.8462 36.6565 -Courier_New.ttf 53 < 28.0000 31.5797 17 d -3.5070 30.1138 36.5505 -Courier_New.ttf 53 < 28.0000 31.5797 18 W -1.0079 32.5836 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 19 s 6.9771 23.0959 26.1840 -Courier_New.ttf 53 < 28.0000 31.5797 20 c 6.7723 26.6529 26.1840 -Courier_New.ttf 53 < 28.0000 31.5797 21 u 7.0455 29.6326 25.7802 -Courier_New.ttf 53 < 28.0000 31.5797 22 3 -4.1861 23.6959 36.7876 -Courier_New.ttf 53 < 28.0000 31.5797 23 ~ 11.2096 24.8892 8.5732 -Courier_New.ttf 53 < 28.0000 31.5797 24 # -5.7512 25.0657 42.1962 -Courier_New.ttf 53 < 28.0000 31.5797 25 O -1.2547 29.1932 34.4140 -Courier_New.ttf 53 < 28.0000 31.5797 26 ` -5.5020 9.8498 8.6565 -Courier_New.ttf 53 < 28.0000 31.5797 27 @ -5.3370 22.0800 40.4029 -Courier_New.ttf 53 < 28.0000 31.5797 28 F -1.2409 27.3234 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 29 S -1.5136 24.5392 34.4140 -Courier_New.ttf 53 < 28.0000 31.5797 30 p 6.9011 29.8826 36.6565 -Courier_New.ttf 53 < 28.0000 31.5797 31 “ -3.5440 24.6392 15.1932 -Courier_New.ttf 53 < 28.0000 31.5797 32 % -3.2957 24.3664 36.5505 -Courier_New.ttf 53 < 28.0000 31.5797 33 £ -1.7116 26.2840 33.8435 -Courier_New.ttf 53 < 28.0000 31.5797 34 . 25.1378 8.8232 7.9800 -Courier_New.ttf 53 < 28.0000 31.5797 35 2 -4.3418 23.1732 36.3838 -Courier_New.ttf 53 < 28.0000 31.5797 36 5 -3.6199 23.7437 36.3838 -Courier_New.ttf 53 < 28.0000 31.5797 37 m 6.7394 35.1594 25.6135 -Courier_New.ttf 53 < 28.0000 31.5797 38 V -1.1649 35.1140 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 39 6 -3.9492 23.7959 36.7876 -Courier_New.ttf 53 < 28.0000 31.5797 40 w 7.0320 32.7502 25.2097 -Courier_New.ttf 53 < 28.0000 31.5797 41 T -1.1796 26.8590 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 42 M -0.9475 34.5367 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 43 G -1.3798 29.5621 34.4140 -Courier_New.ttf 53 < 28.0000 31.5797 44 b -3.6450 29.8826 36.5505 -Courier_New.ttf 53 < 28.0000 31.5797 45 9 -4.0648 22.4193 36.7876 -Courier_New.ttf 53 < 28.0000 31.5797 46 ; 7.0733 12.8068 30.9570 -Courier_New.ttf 53 < 28.0000 31.5797 47 D -0.9991 28.4394 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 48 L -1.0281 28.2727 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 49 y 7.3032 29.3121 36.2527 -Courier_New.ttf 53 < 28.0000 31.5797 50 ‘ -3.4491 12.7529 17.2297 -Courier_New.ttf 53 < 28.0000 31.5797 51 \ -6.4845 24.6392 44.3865 -Courier_New.ttf 53 < 28.0000 31.5797 52 R -1.4078 30.7070 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 53 < 0.0205 28.0000 31.5797 -Courier_New.ttf 53 < 28.0000 31.5797 54 4 -3.4713 22.3232 35.9800 -Courier_New.ttf 53 < 28.0000 31.5797 55 8 -3.9735 21.3094 36.7876 -Courier_New.ttf 53 < 28.0000 31.5797 56 0 -3.8064 23.6959 36.7876 -Courier_New.ttf 53 < 28.0000 31.5797 57 A -1.3948 37.1505 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 58 E -1.1278 27.3234 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 59 B -1.0816 28.4167 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 60 v 7.2504 32.1252 25.2097 -Courier_New.ttf 53 < 28.0000 31.5797 61 k -3.6336 26.6529 35.9800 -Courier_New.ttf 53 < 28.0000 31.5797 62 J -1.3114 28.6766 34.1640 -Courier_New.ttf 53 < 28.0000 31.5797 63 U -1.4619 31.3964 34.1640 -Courier_New.ttf 53 < 28.0000 31.5797 64 j -4.7262 18.4230 48.2928 -Courier_New.ttf 53 < 28.0000 31.5797 65 ( -3.6958 8.4065 43.1932 -Courier_New.ttf 53 < 28.0000 31.5797 66 7 -3.3527 22.0027 35.9800 -Courier_New.ttf 53 < 28.0000 31.5797 67 § -3.3243 27.1696 39.8097 -Courier_New.ttf 53 < 28.0000 31.5797 68 $ -6.8286 21.8261 44.3865 -Courier_New.ttf 53 < 28.0000 31.5797 69 € -1.3186 31.2297 34.4140 -Courier_New.ttf 53 < 28.0000 31.5797 70 / -7.3962 24.6392 44.3865 -Courier_New.ttf 53 < 28.0000 31.5797 71 C -1.6633 28.2727 34.4140 -Courier_New.ttf 53 < 28.0000 31.5797 72 * -3.6403 22.0860 21.9800 -Courier_New.ttf 53 < 28.0000 31.5797 73 ” -3.8780 24.6392 15.1932 -Courier_New.ttf 53 < 28.0000 31.5797 74 ? -2.0593 21.0594 34.9406 -Courier_New.ttf 53 < 28.0000 31.5797 75 { -4.0253 11.7324 43.3121 -Courier_New.ttf 53 < 28.0000 31.5797 76 } -3.6416 11.7324 43.3121 -Courier_New.ttf 53 < 28.0000 31.5797 77 , 23.9837 11.5597 17.2297 -Courier_New.ttf 53 < 28.0000 31.5797 78 I -0.8378 22.0860 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 79 ° -9.9202 15.7638 15.7638 -Courier_New.ttf 53 < 28.0000 31.5797 80 K -1.0477 31.2297 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 81 H -1.1745 28.4333 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 82 q 6.8438 29.1932 36.6565 -Courier_New.ttf 53 < 28.0000 31.5797 83 & 1.7532 21.9800 31.2070 -Courier_New.ttf 53 < 28.0000 31.5797 84 ’ -3.6736 12.7529 17.2297 -Courier_New.ttf 53 < 28.0000 31.5797 85 [ -3.7812 9.5998 43.1932 -Courier_New.ttf 53 < 28.0000 31.5797 86 - 14.0076 24.8892 3.2297 -Courier_New.ttf 53 < 28.0000 31.5797 87 Y -1.1288 29.3410 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 88 Q -1.5971 30.3865 40.7840 -Courier_New.ttf 53 < 28.0000 31.5797 89 " -3.4915 19.6995 16.0365 -Courier_New.ttf 53 < 28.0000 31.5797 90 ! -3.5252 6.4594 36.5505 -Courier_New.ttf 53 < 28.0000 31.5797 91 x 7.1438 29.1932 25.2097 -Courier_New.ttf 53 < 28.0000 31.5797 92 ) -3.3484 8.4065 43.1932 -Courier_New.ttf 53 < 28.0000 31.5797 93 = 9.7930 29.1932 11.3097 -Courier_New.ttf 53 < 28.0000 31.5797 94 + 1.4616 26.8590 29.2455 -Courier_New.ttf 53 < 28.0000 31.5797 95 X -1.1390 30.9092 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 96 » 6.8505 28.7766 26.8068 -Courier_New.ttf 53 < 28.0000 31.5797 97 ' -3.2976 7.9027 17.2297 -Courier_New.ttf 53 < 28.0000 31.5797 98 ¢ -5.9105 20.7867 38.0998 -Courier_New.ttf 53 < 28.0000 31.5797 99 Z -1.0866 23.0959 33.5935 -Courier_New.ttf 53 < 28.0000 31.5797 100 > 0.0684 28.0000 31.5797 -Courier_New.ttf 53 < 28.0000 31.5797 101 ® -2.1329 34.7867 35.0594 -Courier_New.ttf 53 < 28.0000 31.5797 102 © -1.8290 35.0594 34.7867 -Courier_New.ttf 53 < 28.0000 31.5797 103 ] -3.6895 9.5998 43.1932 -Courier_New.ttf 53 < 28.0000 31.5797 104 é -5.4964 27.4295 38.4203 -Courier_New.ttf 53 < 28.0000 31.5797 105 z 7.2791 23.7959 25.2097 -Courier_New.ttf 53 < 28.0000 31.5797 106 _ 46.6686 35.0594 2.3865 -Courier_New.ttf 53 < 28.0000 31.5797 107 ¥ -1.2832 29.6744 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 1 t 1.6260 26.2362 34.6034 -Courier_New.ttf 54 4 22.3232 35.9800 2 h 0.1196 29.6326 35.9800 -Courier_New.ttf 54 4 22.3232 35.9800 3 a 10.1635 26.9256 26.1840 -Courier_New.ttf 54 4 22.3232 35.9800 4 n 10.0398 29.2061 25.6135 -Courier_New.ttf 54 4 22.3232 35.9800 5 P 2.3767 26.0529 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 6 o 10.0968 26.8068 26.1840 -Courier_New.ttf 54 4 22.3232 35.9800 7 e 10.3718 27.4295 26.1840 -Courier_New.ttf 54 4 22.3232 35.9800 8 : 10.7578 8.6565 25.7802 -Courier_New.ttf 54 4 22.3232 35.9800 9 r 10.4626 26.8295 25.6135 -Courier_New.ttf 54 4 22.3232 35.9800 10 l -0.0144 24.4725 35.9800 -Courier_New.ttf 54 4 22.3232 35.9800 11 i -1.4030 24.4725 37.2498 -Courier_New.ttf 54 4 22.3232 35.9800 12 1 -1.4568 22.8527 37.5770 -Courier_New.ttf 54 4 22.3232 35.9800 13 | -0.1434 2.3865 43.1932 -Courier_New.ttf 54 4 22.3232 35.9800 14 N 2.2506 31.3964 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 15 f -0.0474 25.4696 35.9800 -Courier_New.ttf 54 4 22.3232 35.9800 16 g 10.5634 27.8462 36.6565 -Courier_New.ttf 54 4 22.3232 35.9800 17 d -0.2248 30.1138 36.5505 -Courier_New.ttf 54 4 22.3232 35.9800 18 W 2.3032 32.5836 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 19 s 10.4021 23.0959 26.1840 -Courier_New.ttf 54 4 22.3232 35.9800 20 c 10.3813 26.6529 26.1840 -Courier_New.ttf 54 4 22.3232 35.9800 21 u 10.7560 29.6326 25.7802 -Courier_New.ttf 54 4 22.3232 35.9800 22 3 -0.5378 23.6959 36.7876 -Courier_New.ttf 54 4 22.3232 35.9800 23 ~ 14.7022 24.8892 8.5732 -Courier_New.ttf 54 4 22.3232 35.9800 24 # -2.3909 25.0657 42.1962 -Courier_New.ttf 54 4 22.3232 35.9800 25 O 2.1378 29.1932 34.4140 -Courier_New.ttf 54 4 22.3232 35.9800 26 ` -1.8545 9.8498 8.6565 -Courier_New.ttf 54 4 22.3232 35.9800 27 @ -1.4047 22.0800 40.4029 -Courier_New.ttf 54 4 22.3232 35.9800 28 F 2.2994 27.3234 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 29 S 2.1866 24.5392 34.4140 -Courier_New.ttf 54 4 22.3232 35.9800 30 p 10.1793 29.8826 36.6565 -Courier_New.ttf 54 4 22.3232 35.9800 31 “ -0.1756 24.6392 15.1932 -Courier_New.ttf 54 4 22.3232 35.9800 32 % -0.2228 24.3664 36.5505 -Courier_New.ttf 54 4 22.3232 35.9800 33 £ 1.7907 26.2840 33.8435 -Courier_New.ttf 54 4 22.3232 35.9800 34 . 28.3040 8.8232 7.9800 -Courier_New.ttf 54 4 22.3232 35.9800 35 2 -0.5085 23.1732 36.3838 -Courier_New.ttf 54 4 22.3232 35.9800 36 5 0.0170 23.7437 36.3838 -Courier_New.ttf 54 4 22.3232 35.9800 37 m 10.1159 35.1594 25.6135 -Courier_New.ttf 54 4 22.3232 35.9800 38 V 2.1825 35.1140 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 39 6 -0.3689 23.7959 36.7876 -Courier_New.ttf 54 4 22.3232 35.9800 40 w 10.9459 32.7502 25.2097 -Courier_New.ttf 54 4 22.3232 35.9800 41 T 2.6621 26.8590 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 42 M 2.4549 34.5367 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 43 G 1.6991 29.5621 34.4140 -Courier_New.ttf 54 4 22.3232 35.9800 44 b 0.0885 29.8826 36.5505 -Courier_New.ttf 54 4 22.3232 35.9800 45 9 -0.6677 22.4193 36.7876 -Courier_New.ttf 54 4 22.3232 35.9800 46 ; 10.6832 12.8068 30.9570 -Courier_New.ttf 54 4 22.3232 35.9800 47 D 2.3064 28.4394 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 48 L 2.4236 28.2727 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 49 y 10.8808 29.3121 36.2527 -Courier_New.ttf 54 4 22.3232 35.9800 50 ‘ -0.2540 12.7529 17.2297 -Courier_New.ttf 54 4 22.3232 35.9800 51 \ -3.3317 24.6392 44.3865 -Courier_New.ttf 54 4 22.3232 35.9800 52 R 2.3709 30.7070 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 53 < 3.8032 28.0000 31.5797 -Courier_New.ttf 54 4 22.3232 35.9800 54 4 -0.3437 22.3232 35.9800 -Courier_New.ttf 54 4 22.3232 35.9800 55 8 -0.3681 21.3094 36.7876 -Courier_New.ttf 54 4 22.3232 35.9800 56 0 -0.1146 23.6959 36.7876 -Courier_New.ttf 54 4 22.3232 35.9800 57 A 2.4743 37.1505 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 58 E 2.6024 27.3234 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 59 B 2.2071 28.4167 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 60 v 10.7703 32.1252 25.2097 -Courier_New.ttf 54 4 22.3232 35.9800 61 k -0.0389 26.6529 35.9800 -Courier_New.ttf 54 4 22.3232 35.9800 62 J 2.3893 28.6766 34.1640 -Courier_New.ttf 54 4 22.3232 35.9800 63 U 2.5274 31.3964 34.1640 -Courier_New.ttf 54 4 22.3232 35.9800 64 j -1.2498 18.4230 48.2928 -Courier_New.ttf 54 4 22.3232 35.9800 65 ( 0.0818 8.4065 43.1932 -Courier_New.ttf 54 4 22.3232 35.9800 66 7 -0.1626 22.0027 35.9800 -Courier_New.ttf 54 4 22.3232 35.9800 67 § -0.3113 27.1696 39.8097 -Courier_New.ttf 54 4 22.3232 35.9800 68 $ -3.1072 21.8261 44.3865 -Courier_New.ttf 54 4 22.3232 35.9800 69 € 2.0980 31.2297 34.4140 -Courier_New.ttf 54 4 22.3232 35.9800 70 / -3.7719 24.6392 44.3865 -Courier_New.ttf 54 4 22.3232 35.9800 71 C 2.0480 28.2727 34.4140 -Courier_New.ttf 54 4 22.3232 35.9800 72 * -0.2891 22.0860 21.9800 -Courier_New.ttf 54 4 22.3232 35.9800 73 ” 0.0714 24.6392 15.1932 -Courier_New.ttf 54 4 22.3232 35.9800 74 ? 1.7304 21.0594 34.9406 -Courier_New.ttf 54 4 22.3232 35.9800 75 { -0.1448 11.7324 43.3121 -Courier_New.ttf 54 4 22.3232 35.9800 76 } -0.1948 11.7324 43.3121 -Courier_New.ttf 54 4 22.3232 35.9800 77 , 27.5512 11.5597 17.2297 -Courier_New.ttf 54 4 22.3232 35.9800 78 I 2.1868 22.0860 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 79 ° -6.5061 15.7638 15.7638 -Courier_New.ttf 54 4 22.3232 35.9800 80 K 2.2597 31.2297 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 81 H 2.4214 28.4333 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 82 q 10.6169 29.1932 36.6565 -Courier_New.ttf 54 4 22.3232 35.9800 83 & 5.2823 21.9800 31.2070 -Courier_New.ttf 54 4 22.3232 35.9800 84 ’ 0.0170 12.7529 17.2297 -Courier_New.ttf 54 4 22.3232 35.9800 85 [ -0.0865 9.5998 43.1932 -Courier_New.ttf 54 4 22.3232 35.9800 86 - 17.3925 24.8892 3.2297 -Courier_New.ttf 54 4 22.3232 35.9800 87 Y 2.4889 29.3410 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 88 Q 1.9039 30.3865 40.7840 -Courier_New.ttf 54 4 22.3232 35.9800 89 " -0.0741 19.6995 16.0365 -Courier_New.ttf 54 4 22.3232 35.9800 90 ! -0.0422 6.4594 36.5505 -Courier_New.ttf 54 4 22.3232 35.9800 91 x 10.9218 29.1932 25.2097 -Courier_New.ttf 54 4 22.3232 35.9800 92 ) 0.1297 8.4065 43.1932 -Courier_New.ttf 54 4 22.3232 35.9800 93 = 13.6289 29.1932 11.3097 -Courier_New.ttf 54 4 22.3232 35.9800 94 + 4.6580 26.8590 29.2455 -Courier_New.ttf 54 4 22.3232 35.9800 95 X 2.2039 30.9092 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 96 » 10.2481 28.7766 26.8068 -Courier_New.ttf 54 4 22.3232 35.9800 97 ' -0.1447 7.9027 17.2297 -Courier_New.ttf 54 4 22.3232 35.9800 98 ¢ -1.9599 20.7867 38.0998 -Courier_New.ttf 54 4 22.3232 35.9800 99 Z 1.9782 23.0959 33.5935 -Courier_New.ttf 54 4 22.3232 35.9800 100 > 3.4369 28.0000 31.5797 -Courier_New.ttf 54 4 22.3232 35.9800 101 ® 1.2198 34.7867 35.0594 -Courier_New.ttf 54 4 22.3232 35.9800 102 © 1.9279 35.0594 34.7867 -Courier_New.ttf 54 4 22.3232 35.9800 103 ] 0.2144 9.5998 43.1932 -Courier_New.ttf 54 4 22.3232 35.9800 104 é -1.7685 27.4295 38.4203 -Courier_New.ttf 54 4 22.3232 35.9800 105 z 10.6297 23.7959 25.2097 -Courier_New.ttf 54 4 22.3232 35.9800 106 _ 49.9014 35.0594 2.3865 -Courier_New.ttf 54 4 22.3232 35.9800 107 ¥ 2.2123 29.6744 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 1 t 2.4783 26.2362 34.6034 -Courier_New.ttf 55 8 21.3094 36.7876 2 h 0.2265 29.6326 35.9800 -Courier_New.ttf 55 8 21.3094 36.7876 3 a 10.5953 26.9256 26.1840 -Courier_New.ttf 55 8 21.3094 36.7876 4 n 10.6878 29.2061 25.6135 -Courier_New.ttf 55 8 21.3094 36.7876 5 P 2.7163 26.0529 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 6 o 10.7289 26.8068 26.1840 -Courier_New.ttf 55 8 21.3094 36.7876 7 e 10.6402 27.4295 26.1840 -Courier_New.ttf 55 8 21.3094 36.7876 8 : 11.1586 8.6565 25.7802 -Courier_New.ttf 55 8 21.3094 36.7876 9 r 10.5450 26.8295 25.6135 -Courier_New.ttf 55 8 21.3094 36.7876 10 l -0.0873 24.4725 35.9800 -Courier_New.ttf 55 8 21.3094 36.7876 11 i -0.9985 24.4725 37.2498 -Courier_New.ttf 55 8 21.3094 36.7876 12 1 -1.2747 22.8527 37.5770 -Courier_New.ttf 55 8 21.3094 36.7876 13 | 0.2549 2.3865 43.1932 -Courier_New.ttf 55 8 21.3094 36.7876 14 N 2.8208 31.3964 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 15 f 0.0152 25.4696 35.9800 -Courier_New.ttf 55 8 21.3094 36.7876 16 g 10.9153 27.8462 36.6565 -Courier_New.ttf 55 8 21.3094 36.7876 17 d 0.3941 30.1138 36.5505 -Courier_New.ttf 55 8 21.3094 36.7876 18 W 2.9085 32.5836 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 19 s 10.7911 23.0959 26.1840 -Courier_New.ttf 55 8 21.3094 36.7876 20 c 10.6160 26.6529 26.1840 -Courier_New.ttf 55 8 21.3094 36.7876 21 u 10.7588 29.6326 25.7802 -Courier_New.ttf 55 8 21.3094 36.7876 22 3 0.1585 23.6959 36.7876 -Courier_New.ttf 55 8 21.3094 36.7876 23 ~ 14.8945 24.8892 8.5732 -Courier_New.ttf 55 8 21.3094 36.7876 24 # -1.8158 25.0657 42.1962 -Courier_New.ttf 55 8 21.3094 36.7876 25 O 2.6471 29.1932 34.4140 -Courier_New.ttf 55 8 21.3094 36.7876 26 ` -1.4105 9.8498 8.6565 -Courier_New.ttf 55 8 21.3094 36.7876 27 @ -1.2734 22.0800 40.4029 -Courier_New.ttf 55 8 21.3094 36.7876 28 F 2.8417 27.3234 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 29 S 2.7638 24.5392 34.4140 -Courier_New.ttf 55 8 21.3094 36.7876 30 p 10.7713 29.8826 36.6565 -Courier_New.ttf 55 8 21.3094 36.7876 31 “ 0.2740 24.6392 15.1932 -Courier_New.ttf 55 8 21.3094 36.7876 32 % 0.2537 24.3664 36.5505 -Courier_New.ttf 55 8 21.3094 36.7876 33 £ 2.6910 26.2840 33.8435 -Courier_New.ttf 55 8 21.3094 36.7876 34 . 29.2641 8.8232 7.9800 -Courier_New.ttf 55 8 21.3094 36.7876 35 2 0.2085 23.1732 36.3838 -Courier_New.ttf 55 8 21.3094 36.7876 36 5 0.7282 23.7437 36.3838 -Courier_New.ttf 55 8 21.3094 36.7876 37 m 10.6044 35.1594 25.6135 -Courier_New.ttf 55 8 21.3094 36.7876 38 V 2.6701 35.1140 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 39 6 -0.2600 23.7959 36.7876 -Courier_New.ttf 55 8 21.3094 36.7876 40 w 11.2594 32.7502 25.2097 -Courier_New.ttf 55 8 21.3094 36.7876 41 T 2.8903 26.8590 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 42 M 2.5946 34.5367 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 43 G 2.4467 29.5621 34.4140 -Courier_New.ttf 55 8 21.3094 36.7876 44 b 0.3706 29.8826 36.5505 -Courier_New.ttf 55 8 21.3094 36.7876 45 9 -0.0740 22.4193 36.7876 -Courier_New.ttf 55 8 21.3094 36.7876 46 ; 11.1982 12.8068 30.9570 -Courier_New.ttf 55 8 21.3094 36.7876 47 D 2.8358 28.4394 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 48 L 3.0457 28.2727 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 49 y 10.8797 29.3121 36.2527 -Courier_New.ttf 55 8 21.3094 36.7876 50 ‘ 0.1999 12.7529 17.2297 -Courier_New.ttf 55 8 21.3094 36.7876 51 \ -2.8116 24.6392 44.3865 -Courier_New.ttf 55 8 21.3094 36.7876 52 R 2.8487 30.7070 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 53 < 4.0251 28.0000 31.5797 -Courier_New.ttf 55 8 21.3094 36.7876 54 4 0.3779 22.3232 35.9800 -Courier_New.ttf 55 8 21.3094 36.7876 55 8 0.2769 21.3094 36.7876 -Courier_New.ttf 55 8 21.3094 36.7876 56 0 -0.2522 23.6959 36.7876 -Courier_New.ttf 55 8 21.3094 36.7876 57 A 3.1003 37.1505 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 58 E 2.8227 27.3234 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 59 B 2.6465 28.4167 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 60 v 11.0677 32.1252 25.2097 -Courier_New.ttf 55 8 21.3094 36.7876 61 k 0.4108 26.6529 35.9800 -Courier_New.ttf 55 8 21.3094 36.7876 62 J 2.8403 28.6766 34.1640 -Courier_New.ttf 55 8 21.3094 36.7876 63 U 2.7012 31.3964 34.1640 -Courier_New.ttf 55 8 21.3094 36.7876 64 j -0.8265 18.4230 48.2928 -Courier_New.ttf 55 8 21.3094 36.7876 65 ( 0.4451 8.4065 43.1932 -Courier_New.ttf 55 8 21.3094 36.7876 66 7 0.6517 22.0027 35.9800 -Courier_New.ttf 55 8 21.3094 36.7876 67 § 0.4136 27.1696 39.8097 -Courier_New.ttf 55 8 21.3094 36.7876 68 $ -2.6922 21.8261 44.3865 -Courier_New.ttf 55 8 21.3094 36.7876 69 € 2.5774 31.2297 34.4140 -Courier_New.ttf 55 8 21.3094 36.7876 70 / -3.2096 24.6392 44.3865 -Courier_New.ttf 55 8 21.3094 36.7876 71 C 2.5162 28.2727 34.4140 -Courier_New.ttf 55 8 21.3094 36.7876 72 * 0.4581 22.0860 21.9800 -Courier_New.ttf 55 8 21.3094 36.7876 73 ” 0.4006 24.6392 15.1932 -Courier_New.ttf 55 8 21.3094 36.7876 74 ? 2.3024 21.0594 34.9406 -Courier_New.ttf 55 8 21.3094 36.7876 75 { 0.4966 11.7324 43.3121 -Courier_New.ttf 55 8 21.3094 36.7876 76 } 0.3167 11.7324 43.3121 -Courier_New.ttf 55 8 21.3094 36.7876 77 , 27.6808 11.5597 17.2297 -Courier_New.ttf 55 8 21.3094 36.7876 78 I 2.9621 22.0860 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 79 ° -5.9928 15.7638 15.7638 -Courier_New.ttf 55 8 21.3094 36.7876 80 K 2.8728 31.2297 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 81 H 2.8102 28.4333 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 82 q 10.6850 29.1932 36.6565 -Courier_New.ttf 55 8 21.3094 36.7876 83 & 5.8187 21.9800 31.2070 -Courier_New.ttf 55 8 21.3094 36.7876 84 ’ 0.5599 12.7529 17.2297 -Courier_New.ttf 55 8 21.3094 36.7876 85 [ 0.3122 9.5998 43.1932 -Courier_New.ttf 55 8 21.3094 36.7876 86 - 17.8473 24.8892 3.2297 -Courier_New.ttf 55 8 21.3094 36.7876 87 Y 2.8677 29.3410 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 88 Q 2.9175 30.3865 40.7840 -Courier_New.ttf 55 8 21.3094 36.7876 89 " 0.3584 19.6995 16.0365 -Courier_New.ttf 55 8 21.3094 36.7876 90 ! 0.2667 6.4594 36.5505 -Courier_New.ttf 55 8 21.3094 36.7876 91 x 11.4366 29.1932 25.2097 -Courier_New.ttf 55 8 21.3094 36.7876 92 ) 0.1883 8.4065 43.1932 -Courier_New.ttf 55 8 21.3094 36.7876 93 = 13.6893 29.1932 11.3097 -Courier_New.ttf 55 8 21.3094 36.7876 94 + 5.3115 26.8590 29.2455 -Courier_New.ttf 55 8 21.3094 36.7876 95 X 2.8215 30.9092 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 96 » 10.8509 28.7766 26.8068 -Courier_New.ttf 55 8 21.3094 36.7876 97 ' 0.6067 7.9027 17.2297 -Courier_New.ttf 55 8 21.3094 36.7876 98 ¢ -2.0046 20.7867 38.0998 -Courier_New.ttf 55 8 21.3094 36.7876 99 Z 2.8876 23.0959 33.5935 -Courier_New.ttf 55 8 21.3094 36.7876 100 > 4.1232 28.0000 31.5797 -Courier_New.ttf 55 8 21.3094 36.7876 101 ® 1.9736 34.7867 35.0594 -Courier_New.ttf 55 8 21.3094 36.7876 102 © 2.1949 35.0594 34.7867 -Courier_New.ttf 55 8 21.3094 36.7876 103 ] 0.5492 9.5998 43.1932 -Courier_New.ttf 55 8 21.3094 36.7876 104 é -1.4918 27.4295 38.4203 -Courier_New.ttf 55 8 21.3094 36.7876 105 z 11.0852 23.7959 25.2097 -Courier_New.ttf 55 8 21.3094 36.7876 106 _ 50.4333 35.0594 2.3865 -Courier_New.ttf 55 8 21.3094 36.7876 107 ¥ 2.4694 29.6744 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 1 t 2.5452 26.2362 34.6034 -Courier_New.ttf 56 0 23.6959 36.7876 2 h 0.2480 29.6326 35.9800 -Courier_New.ttf 56 0 23.6959 36.7876 3 a 10.4504 26.9256 26.1840 -Courier_New.ttf 56 0 23.6959 36.7876 4 n 10.8393 29.2061 25.6135 -Courier_New.ttf 56 0 23.6959 36.7876 5 P 3.1364 26.0529 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 6 o 10.5058 26.8068 26.1840 -Courier_New.ttf 56 0 23.6959 36.7876 7 e 10.4778 27.4295 26.1840 -Courier_New.ttf 56 0 23.6959 36.7876 8 : 11.0741 8.6565 25.7802 -Courier_New.ttf 56 0 23.6959 36.7876 9 r 10.8657 26.8295 25.6135 -Courier_New.ttf 56 0 23.6959 36.7876 10 l 0.4330 24.4725 35.9800 -Courier_New.ttf 56 0 23.6959 36.7876 11 i -1.0116 24.4725 37.2498 -Courier_New.ttf 56 0 23.6959 36.7876 12 1 -1.4260 22.8527 37.5770 -Courier_New.ttf 56 0 23.6959 36.7876 13 | 0.5840 2.3865 43.1932 -Courier_New.ttf 56 0 23.6959 36.7876 14 N 2.7903 31.3964 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 15 f 0.3649 25.4696 35.9800 -Courier_New.ttf 56 0 23.6959 36.7876 16 g 10.9113 27.8462 36.6565 -Courier_New.ttf 56 0 23.6959 36.7876 17 d 0.0879 30.1138 36.5505 -Courier_New.ttf 56 0 23.6959 36.7876 18 W 2.5447 32.5836 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 19 s 11.2485 23.0959 26.1840 -Courier_New.ttf 56 0 23.6959 36.7876 20 c 10.8125 26.6529 26.1840 -Courier_New.ttf 56 0 23.6959 36.7876 21 u 11.2328 29.6326 25.7802 -Courier_New.ttf 56 0 23.6959 36.7876 22 3 -0.1655 23.6959 36.7876 -Courier_New.ttf 56 0 23.6959 36.7876 23 ~ 15.4727 24.8892 8.5732 -Courier_New.ttf 56 0 23.6959 36.7876 24 # -1.8071 25.0657 42.1962 -Courier_New.ttf 56 0 23.6959 36.7876 25 O 2.3159 29.1932 34.4140 -Courier_New.ttf 56 0 23.6959 36.7876 26 ` -1.4023 9.8498 8.6565 -Courier_New.ttf 56 0 23.6959 36.7876 27 @ -0.8990 22.0800 40.4029 -Courier_New.ttf 56 0 23.6959 36.7876 28 F 2.8717 27.3234 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 29 S 2.6574 24.5392 34.4140 -Courier_New.ttf 56 0 23.6959 36.7876 30 p 10.7474 29.8826 36.6565 -Courier_New.ttf 56 0 23.6959 36.7876 31 “ 0.4498 24.6392 15.1932 -Courier_New.ttf 56 0 23.6959 36.7876 32 % 0.9018 24.3664 36.5505 -Courier_New.ttf 56 0 23.6959 36.7876 33 £ 2.3979 26.2840 33.8435 -Courier_New.ttf 56 0 23.6959 36.7876 34 . 29.0017 8.8232 7.9800 -Courier_New.ttf 56 0 23.6959 36.7876 35 2 -0.0125 23.1732 36.3838 -Courier_New.ttf 56 0 23.6959 36.7876 36 5 0.4418 23.7437 36.3838 -Courier_New.ttf 56 0 23.6959 36.7876 37 m 10.6377 35.1594 25.6135 -Courier_New.ttf 56 0 23.6959 36.7876 38 V 2.8260 35.1140 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 39 6 -0.2757 23.7959 36.7876 -Courier_New.ttf 56 0 23.6959 36.7876 40 w 11.2074 32.7502 25.2097 -Courier_New.ttf 56 0 23.6959 36.7876 41 T 2.9274 26.8590 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 42 M 2.7176 34.5367 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 43 G 2.8268 29.5621 34.4140 -Courier_New.ttf 56 0 23.6959 36.7876 44 b 0.1985 29.8826 36.5505 -Courier_New.ttf 56 0 23.6959 36.7876 45 9 -0.1176 22.4193 36.7876 -Courier_New.ttf 56 0 23.6959 36.7876 46 ; 11.4659 12.8068 30.9570 -Courier_New.ttf 56 0 23.6959 36.7876 47 D 2.9150 28.4394 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 48 L 2.7847 28.2727 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 49 y 11.1749 29.3121 36.2527 -Courier_New.ttf 56 0 23.6959 36.7876 50 ‘ 0.1373 12.7529 17.2297 -Courier_New.ttf 56 0 23.6959 36.7876 51 \ -2.6237 24.6392 44.3865 -Courier_New.ttf 56 0 23.6959 36.7876 52 R 2.7871 30.7070 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 53 < 3.9706 28.0000 31.5797 -Courier_New.ttf 56 0 23.6959 36.7876 54 4 0.2076 22.3232 35.9800 -Courier_New.ttf 56 0 23.6959 36.7876 55 8 0.0469 21.3094 36.7876 -Courier_New.ttf 56 0 23.6959 36.7876 56 0 -0.2327 23.6959 36.7876 -Courier_New.ttf 56 0 23.6959 36.7876 57 A 2.8260 37.1505 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 58 E 2.8227 27.3234 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 59 B 2.7403 28.4167 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 60 v 11.0467 32.1252 25.2097 -Courier_New.ttf 56 0 23.6959 36.7876 61 k 0.2751 26.6529 35.9800 -Courier_New.ttf 56 0 23.6959 36.7876 62 J 2.6973 28.6766 34.1640 -Courier_New.ttf 56 0 23.6959 36.7876 63 U 3.1198 31.3964 34.1640 -Courier_New.ttf 56 0 23.6959 36.7876 64 j -0.9256 18.4230 48.2928 -Courier_New.ttf 56 0 23.6959 36.7876 65 ( 0.0573 8.4065 43.1932 -Courier_New.ttf 56 0 23.6959 36.7876 66 7 0.3546 22.0027 35.9800 -Courier_New.ttf 56 0 23.6959 36.7876 67 § 0.4781 27.1696 39.8097 -Courier_New.ttf 56 0 23.6959 36.7876 68 $ -2.8380 21.8261 44.3865 -Courier_New.ttf 56 0 23.6959 36.7876 69 € 2.4171 31.2297 34.4140 -Courier_New.ttf 56 0 23.6959 36.7876 70 / -3.3772 24.6392 44.3865 -Courier_New.ttf 56 0 23.6959 36.7876 71 C 2.6919 28.2727 34.4140 -Courier_New.ttf 56 0 23.6959 36.7876 72 * 0.4955 22.0860 21.9800 -Courier_New.ttf 56 0 23.6959 36.7876 73 ” 0.8223 24.6392 15.1932 -Courier_New.ttf 56 0 23.6959 36.7876 74 ? 2.0963 21.0594 34.9406 -Courier_New.ttf 56 0 23.6959 36.7876 75 { 0.1299 11.7324 43.3121 -Courier_New.ttf 56 0 23.6959 36.7876 76 } 0.0878 11.7324 43.3121 -Courier_New.ttf 56 0 23.6959 36.7876 77 , 28.0192 11.5597 17.2297 -Courier_New.ttf 56 0 23.6959 36.7876 78 I 2.6485 22.0860 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 79 ° -5.8434 15.7638 15.7638 -Courier_New.ttf 56 0 23.6959 36.7876 80 K 2.6526 31.2297 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 81 H 2.8461 28.4333 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 82 q 10.9315 29.1932 36.6565 -Courier_New.ttf 56 0 23.6959 36.7876 83 & 5.8762 21.9800 31.2070 -Courier_New.ttf 56 0 23.6959 36.7876 84 ’ 0.3741 12.7529 17.2297 -Courier_New.ttf 56 0 23.6959 36.7876 85 [ 0.8232 9.5998 43.1932 -Courier_New.ttf 56 0 23.6959 36.7876 86 - 18.0114 24.8892 3.2297 -Courier_New.ttf 56 0 23.6959 36.7876 87 Y 2.7519 29.3410 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 88 Q 2.7863 30.3865 40.7840 -Courier_New.ttf 56 0 23.6959 36.7876 89 " 0.2992 19.6995 16.0365 -Courier_New.ttf 56 0 23.6959 36.7876 90 ! 0.4590 6.4594 36.5505 -Courier_New.ttf 56 0 23.6959 36.7876 91 x 11.2640 29.1932 25.2097 -Courier_New.ttf 56 0 23.6959 36.7876 92 ) -0.1133 8.4065 43.1932 -Courier_New.ttf 56 0 23.6959 36.7876 93 = 14.0061 29.1932 11.3097 -Courier_New.ttf 56 0 23.6959 36.7876 94 + 5.3791 26.8590 29.2455 -Courier_New.ttf 56 0 23.6959 36.7876 95 X 3.0086 30.9092 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 96 » 10.9389 28.7766 26.8068 -Courier_New.ttf 56 0 23.6959 36.7876 97 ' 0.5062 7.9027 17.2297 -Courier_New.ttf 56 0 23.6959 36.7876 98 ¢ -1.6614 20.7867 38.0998 -Courier_New.ttf 56 0 23.6959 36.7876 99 Z 3.0322 23.0959 33.5935 -Courier_New.ttf 56 0 23.6959 36.7876 100 > 4.0481 28.0000 31.5797 -Courier_New.ttf 56 0 23.6959 36.7876 101 ® 1.8086 34.7867 35.0594 -Courier_New.ttf 56 0 23.6959 36.7876 102 © 2.2849 35.0594 34.7867 -Courier_New.ttf 56 0 23.6959 36.7876 103 ] 0.4608 9.5998 43.1932 -Courier_New.ttf 56 0 23.6959 36.7876 104 é -1.5044 27.4295 38.4203 -Courier_New.ttf 56 0 23.6959 36.7876 105 z 11.3659 23.7959 25.2097 -Courier_New.ttf 56 0 23.6959 36.7876 106 _ 50.3741 35.0594 2.3865 -Courier_New.ttf 56 0 23.6959 36.7876 107 ¥ 2.6914 29.6744 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 1 t -0.3311 26.2362 34.6034 -Courier_New.ttf 57 A 37.1505 33.5935 2 h -2.2396 29.6326 35.9800 -Courier_New.ttf 57 A 37.1505 33.5935 3 a 8.4407 26.9256 26.1840 -Courier_New.ttf 57 A 37.1505 33.5935 4 n 7.9333 29.2061 25.6135 -Courier_New.ttf 57 A 37.1505 33.5935 5 P 0.1426 26.0529 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 6 o 7.9579 26.8068 26.1840 -Courier_New.ttf 57 A 37.1505 33.5935 7 e 8.2032 27.4295 26.1840 -Courier_New.ttf 57 A 37.1505 33.5935 8 : 8.4192 8.6565 25.7802 -Courier_New.ttf 57 A 37.1505 33.5935 9 r 7.6972 26.8295 25.6135 -Courier_New.ttf 57 A 37.1505 33.5935 10 l -2.1524 24.4725 35.9800 -Courier_New.ttf 57 A 37.1505 33.5935 11 i -3.6160 24.4725 37.2498 -Courier_New.ttf 57 A 37.1505 33.5935 12 1 -4.0370 22.8527 37.5770 -Courier_New.ttf 57 A 37.1505 33.5935 13 | -2.2349 2.3865 43.1932 -Courier_New.ttf 57 A 37.1505 33.5935 14 N -0.1417 31.3964 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 15 f -2.2053 25.4696 35.9800 -Courier_New.ttf 57 A 37.1505 33.5935 16 g 7.8492 27.8462 36.6565 -Courier_New.ttf 57 A 37.1505 33.5935 17 d -2.2026 30.1138 36.5505 -Courier_New.ttf 57 A 37.1505 33.5935 18 W -0.0274 32.5836 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 19 s 7.7330 23.0959 26.1840 -Courier_New.ttf 57 A 37.1505 33.5935 20 c 8.2584 26.6529 26.1840 -Courier_New.ttf 57 A 37.1505 33.5935 21 u 8.5577 29.6326 25.7802 -Courier_New.ttf 57 A 37.1505 33.5935 22 3 -2.9124 23.6959 36.7876 -Courier_New.ttf 57 A 37.1505 33.5935 23 ~ 12.5553 24.8892 8.5732 -Courier_New.ttf 57 A 37.1505 33.5935 24 # -4.5311 25.0657 42.1962 -Courier_New.ttf 57 A 37.1505 33.5935 25 O 0.0268 29.1932 34.4140 -Courier_New.ttf 57 A 37.1505 33.5935 26 ` -4.4259 9.8498 8.6565 -Courier_New.ttf 57 A 37.1505 33.5935 27 @ -4.0221 22.0800 40.4029 -Courier_New.ttf 57 A 37.1505 33.5935 28 F 0.2844 27.3234 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 29 S -0.0415 24.5392 34.4140 -Courier_New.ttf 57 A 37.1505 33.5935 30 p 8.0023 29.8826 36.6565 -Courier_New.ttf 57 A 37.1505 33.5935 31 “ -2.5458 24.6392 15.1932 -Courier_New.ttf 57 A 37.1505 33.5935 32 % -2.5420 24.3664 36.5505 -Courier_New.ttf 57 A 37.1505 33.5935 33 £ -0.1226 26.2840 33.8435 -Courier_New.ttf 57 A 37.1505 33.5935 34 . 25.9700 8.8232 7.9800 -Courier_New.ttf 57 A 37.1505 33.5935 35 2 -2.8028 23.1732 36.3838 -Courier_New.ttf 57 A 37.1505 33.5935 36 5 -2.4002 23.7437 36.3838 -Courier_New.ttf 57 A 37.1505 33.5935 37 m 8.1761 35.1594 25.6135 -Courier_New.ttf 57 A 37.1505 33.5935 38 V 0.3009 35.1140 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 39 6 -2.8469 23.7959 36.7876 -Courier_New.ttf 57 A 37.1505 33.5935 40 w 8.3481 32.7502 25.2097 -Courier_New.ttf 57 A 37.1505 33.5935 41 T -0.1027 26.8590 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 42 M -0.0347 34.5367 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 43 G -0.1865 29.5621 34.4140 -Courier_New.ttf 57 A 37.1505 33.5935 44 b -2.2115 29.8826 36.5505 -Courier_New.ttf 57 A 37.1505 33.5935 45 9 -2.7083 22.4193 36.7876 -Courier_New.ttf 57 A 37.1505 33.5935 46 ; 8.4650 12.8068 30.9570 -Courier_New.ttf 57 A 37.1505 33.5935 47 D 0.2502 28.4394 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 48 L 0.0338 28.2727 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 49 y 8.8225 29.3121 36.2527 -Courier_New.ttf 57 A 37.1505 33.5935 50 ‘ -2.3034 12.7529 17.2297 -Courier_New.ttf 57 A 37.1505 33.5935 51 \ -5.3763 24.6392 44.3865 -Courier_New.ttf 57 A 37.1505 33.5935 52 R 0.0389 30.7070 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 53 < 1.0821 28.0000 31.5797 -Courier_New.ttf 57 A 37.1505 33.5935 54 4 -2.6882 22.3232 35.9800 -Courier_New.ttf 57 A 37.1505 33.5935 55 8 -2.5147 21.3094 36.7876 -Courier_New.ttf 57 A 37.1505 33.5935 56 0 -2.7861 23.6959 36.7876 -Courier_New.ttf 57 A 37.1505 33.5935 57 A 0.2925 37.1505 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 58 E -0.0644 27.3234 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 59 B 0.2827 28.4167 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 60 v 8.2929 32.1252 25.2097 -Courier_New.ttf 57 A 37.1505 33.5935 61 k -2.6156 26.6529 35.9800 -Courier_New.ttf 57 A 37.1505 33.5935 62 J -0.1385 28.6766 34.1640 -Courier_New.ttf 57 A 37.1505 33.5935 63 U -0.1079 31.3964 34.1640 -Courier_New.ttf 57 A 37.1505 33.5935 64 j -3.6196 18.4230 48.2928 -Courier_New.ttf 57 A 37.1505 33.5935 65 ( -2.1507 8.4065 43.1932 -Courier_New.ttf 57 A 37.1505 33.5935 66 7 -2.1881 22.0027 35.9800 -Courier_New.ttf 57 A 37.1505 33.5935 67 § -2.2818 27.1696 39.8097 -Courier_New.ttf 57 A 37.1505 33.5935 68 $ -5.7045 21.8261 44.3865 -Courier_New.ttf 57 A 37.1505 33.5935 69 € -0.2301 31.2297 34.4140 -Courier_New.ttf 57 A 37.1505 33.5935 70 / -6.2645 24.6392 44.3865 -Courier_New.ttf 57 A 37.1505 33.5935 71 C -0.3767 28.2727 34.4140 -Courier_New.ttf 57 A 37.1505 33.5935 72 * -2.0088 22.0860 21.9800 -Courier_New.ttf 57 A 37.1505 33.5935 73 ” -2.3176 24.6392 15.1932 -Courier_New.ttf 57 A 37.1505 33.5935 74 ? -0.7251 21.0594 34.9406 -Courier_New.ttf 57 A 37.1505 33.5935 75 { -2.5336 11.7324 43.3121 -Courier_New.ttf 57 A 37.1505 33.5935 76 } -2.4798 11.7324 43.3121 -Courier_New.ttf 57 A 37.1505 33.5935 77 , 24.8953 11.5597 17.2297 -Courier_New.ttf 57 A 37.1505 33.5935 78 I -0.1781 22.0860 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 79 ° -8.6574 15.7638 15.7638 -Courier_New.ttf 57 A 37.1505 33.5935 80 K 0.2214 31.2297 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 81 H -0.2082 28.4333 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 82 q 7.8001 29.1932 36.6565 -Courier_New.ttf 57 A 37.1505 33.5935 83 & 3.0728 21.9800 31.2070 -Courier_New.ttf 57 A 37.1505 33.5935 84 ’ -2.5131 12.7529 17.2297 -Courier_New.ttf 57 A 37.1505 33.5935 85 [ -2.5516 9.5998 43.1932 -Courier_New.ttf 57 A 37.1505 33.5935 86 - 15.2849 24.8892 3.2297 -Courier_New.ttf 57 A 37.1505 33.5935 87 Y 0.1599 29.3410 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 88 Q -0.4182 30.3865 40.7840 -Courier_New.ttf 57 A 37.1505 33.5935 89 " -2.5735 19.6995 16.0365 -Courier_New.ttf 57 A 37.1505 33.5935 90 ! -2.3930 6.4594 36.5505 -Courier_New.ttf 57 A 37.1505 33.5935 91 x 8.4750 29.1932 25.2097 -Courier_New.ttf 57 A 37.1505 33.5935 92 ) -2.1585 8.4065 43.1932 -Courier_New.ttf 57 A 37.1505 33.5935 93 = 11.2900 29.1932 11.3097 -Courier_New.ttf 57 A 37.1505 33.5935 94 + 2.7158 26.8590 29.2455 -Courier_New.ttf 57 A 37.1505 33.5935 95 X 0.3335 30.9092 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 96 » 7.8800 29.5432 26.8068 -Courier_New.ttf 57 A 37.1505 33.5935 97 ' -2.1102 7.9027 17.2297 -Courier_New.ttf 57 A 37.1505 33.5935 98 ¢ -4.1643 20.7867 38.0998 -Courier_New.ttf 57 A 37.1505 33.5935 99 Z -0.1448 23.0959 33.5935 -Courier_New.ttf 57 A 37.1505 33.5935 100 > 1.1882 28.0000 31.5797 -Courier_New.ttf 57 A 37.1505 33.5935 101 ® -0.8917 34.7867 35.0594 -Courier_New.ttf 57 A 37.1505 33.5935 102 © -0.8142 35.0594 34.7867 -Courier_New.ttf 57 A 37.1505 33.5935 103 ] -2.4666 9.5998 43.1932 -Courier_New.ttf 57 A 37.1505 33.5935 104 é -4.4153 27.4295 38.4203 -Courier_New.ttf 57 A 37.1505 33.5935 105 z 8.5021 23.7959 25.2097 -Courier_New.ttf 57 A 37.1505 33.5935 106 _ 47.4508 35.0594 2.3865 -Courier_New.ttf 57 A 37.1505 33.5935 107 ¥ 0.1014 29.6744 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 1 t -0.4025 26.2362 34.6034 -Courier_New.ttf 58 E 27.3234 33.5935 2 h -2.0646 29.6326 35.9800 -Courier_New.ttf 58 E 27.3234 33.5935 3 a 8.0754 26.9256 26.1840 -Courier_New.ttf 58 E 27.3234 33.5935 4 n 7.8239 29.2061 25.6135 -Courier_New.ttf 58 E 27.3234 33.5935 5 P 0.2557 26.0529 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 6 o 8.0898 26.8068 26.1840 -Courier_New.ttf 58 E 27.3234 33.5935 7 e 7.9948 27.4295 26.1840 -Courier_New.ttf 58 E 27.3234 33.5935 8 : 8.3765 8.6565 25.7802 -Courier_New.ttf 58 E 27.3234 33.5935 9 r 7.6004 26.8295 25.6135 -Courier_New.ttf 58 E 27.3234 33.5935 10 l -2.4000 24.4725 35.9800 -Courier_New.ttf 58 E 27.3234 33.5935 11 i -3.9415 24.4725 37.2498 -Courier_New.ttf 58 E 27.3234 33.5935 12 1 -3.7964 22.8527 37.5770 -Courier_New.ttf 58 E 27.3234 33.5935 13 | -2.1455 2.3865 43.1932 -Courier_New.ttf 58 E 27.3234 33.5935 14 N 0.0628 31.3964 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 15 f -2.1494 25.4696 35.9800 -Courier_New.ttf 58 E 27.3234 33.5935 16 g 8.0499 27.8462 36.6565 -Courier_New.ttf 58 E 27.3234 33.5935 17 d -2.2952 30.1138 36.5505 -Courier_New.ttf 58 E 27.3234 33.5935 18 W -0.2938 32.5836 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 19 s 7.8387 23.0959 26.1840 -Courier_New.ttf 58 E 27.3234 33.5935 20 c 7.9230 26.6529 26.1840 -Courier_New.ttf 58 E 27.3234 33.5935 21 u 8.3508 29.6326 25.7802 -Courier_New.ttf 58 E 27.3234 33.5935 22 3 -2.7844 23.6959 36.7876 -Courier_New.ttf 58 E 27.3234 33.5935 23 ~ 12.2391 24.8892 8.5732 -Courier_New.ttf 58 E 27.3234 33.5935 24 # -4.8938 25.0657 42.1962 -Courier_New.ttf 58 E 27.3234 33.5935 25 O -0.5879 29.1932 34.4140 -Courier_New.ttf 58 E 27.3234 33.5935 26 ` -3.9091 9.8498 8.6565 -Courier_New.ttf 58 E 27.3234 33.5935 27 @ -4.2320 22.0800 40.4029 -Courier_New.ttf 58 E 27.3234 33.5935 28 F 0.0027 27.3234 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 29 S 0.0730 24.5392 34.4140 -Courier_New.ttf 58 E 27.3234 33.5935 30 p 7.7428 29.8826 36.6565 -Courier_New.ttf 58 E 27.3234 33.5935 31 “ -2.2879 24.6392 15.1932 -Courier_New.ttf 58 E 27.3234 33.5935 32 % -2.3809 24.3664 36.5505 -Courier_New.ttf 58 E 27.3234 33.5935 33 £ -0.0516 26.2840 33.8435 -Courier_New.ttf 58 E 27.3234 33.5935 34 . 26.3047 8.8232 7.9800 -Courier_New.ttf 58 E 27.3234 33.5935 35 2 -2.8040 23.1732 36.3838 -Courier_New.ttf 58 E 27.3234 33.5935 36 5 -2.5023 23.7437 36.3838 -Courier_New.ttf 58 E 27.3234 33.5935 37 m 7.7942 35.1594 25.6135 -Courier_New.ttf 58 E 27.3234 33.5935 38 V -0.0857 35.1140 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 39 6 -3.1115 23.7959 36.7876 -Courier_New.ttf 58 E 27.3234 33.5935 40 w 8.2825 32.7502 25.2097 -Courier_New.ttf 58 E 27.3234 33.5935 41 T -0.2110 26.8590 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 42 M 0.0904 34.5367 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 43 G -0.4984 29.5621 34.4140 -Courier_New.ttf 58 E 27.3234 33.5935 44 b -2.3629 29.8826 36.5505 -Courier_New.ttf 58 E 27.3234 33.5935 45 9 -2.7564 22.4193 36.7876 -Courier_New.ttf 58 E 27.3234 33.5935 46 ; 8.5475 12.8068 30.9570 -Courier_New.ttf 58 E 27.3234 33.5935 47 D 0.1325 28.4394 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 48 L -0.0106 28.2727 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 49 y 8.2943 29.3121 36.2527 -Courier_New.ttf 58 E 27.3234 33.5935 50 ‘ -2.3339 12.7529 17.2297 -Courier_New.ttf 58 E 27.3234 33.5935 51 \ -5.5732 24.6392 44.3865 -Courier_New.ttf 58 E 27.3234 33.5935 52 R -0.0100 30.7070 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 53 < 1.2947 28.0000 31.5797 -Courier_New.ttf 58 E 27.3234 33.5935 54 4 -2.1311 22.3232 35.9800 -Courier_New.ttf 58 E 27.3234 33.5935 55 8 -2.6777 21.3094 36.7876 -Courier_New.ttf 58 E 27.3234 33.5935 56 0 -2.7292 23.6959 36.7876 -Courier_New.ttf 58 E 27.3234 33.5935 57 A 0.1812 37.1505 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 58 E 0.1885 27.3234 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 59 B 0.4851 28.4167 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 60 v 8.6560 32.1252 25.2097 -Courier_New.ttf 58 E 27.3234 33.5935 61 k -2.4184 26.6529 35.9800 -Courier_New.ttf 58 E 27.3234 33.5935 62 J -0.1186 28.6766 34.1640 -Courier_New.ttf 58 E 27.3234 33.5935 63 U -0.0045 31.3964 34.1640 -Courier_New.ttf 58 E 27.3234 33.5935 64 j -3.5775 18.4230 48.2928 -Courier_New.ttf 58 E 27.3234 33.5935 65 ( -2.1052 8.4065 43.1932 -Courier_New.ttf 58 E 27.3234 33.5935 66 7 -2.2125 22.0027 35.9800 -Courier_New.ttf 58 E 27.3234 33.5935 67 § -2.6563 27.1696 39.8097 -Courier_New.ttf 58 E 27.3234 33.5935 68 $ -5.5964 21.8261 44.3865 -Courier_New.ttf 58 E 27.3234 33.5935 69 € -0.2178 31.2297 34.4140 -Courier_New.ttf 58 E 27.3234 33.5935 70 / -6.3215 24.6392 44.3865 -Courier_New.ttf 58 E 27.3234 33.5935 71 C -0.1139 28.2727 34.4140 -Courier_New.ttf 58 E 27.3234 33.5935 72 * -2.2154 22.0860 21.9800 -Courier_New.ttf 58 E 27.3234 33.5935 73 ” -2.4064 24.6392 15.1932 -Courier_New.ttf 58 E 27.3234 33.5935 74 ? -0.7024 21.0594 34.9406 -Courier_New.ttf 58 E 27.3234 33.5935 75 { -2.7253 11.7324 43.3121 -Courier_New.ttf 58 E 27.3234 33.5935 76 } -2.7491 11.7324 43.3121 -Courier_New.ttf 58 E 27.3234 33.5935 77 , 24.9104 11.5597 17.2297 -Courier_New.ttf 58 E 27.3234 33.5935 78 I 0.0188 22.0860 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 79 ° -8.8117 15.7638 15.7638 -Courier_New.ttf 58 E 27.3234 33.5935 80 K -0.1996 31.2297 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 81 H 0.0438 28.4333 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 82 q 7.9225 29.1932 36.6565 -Courier_New.ttf 58 E 27.3234 33.5935 83 & 3.0676 21.9800 31.2070 -Courier_New.ttf 58 E 27.3234 33.5935 84 ’ -2.1157 12.7529 17.2297 -Courier_New.ttf 58 E 27.3234 33.5935 85 [ -2.2252 9.5998 43.1932 -Courier_New.ttf 58 E 27.3234 33.5935 86 - 15.1055 24.8892 3.2297 -Courier_New.ttf 58 E 27.3234 33.5935 87 Y 0.0749 29.3410 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 88 Q -0.3249 30.3865 40.7840 -Courier_New.ttf 58 E 27.3234 33.5935 89 " -2.5222 19.6995 16.0365 -Courier_New.ttf 58 E 27.3234 33.5935 90 ! -2.5575 6.4594 36.5505 -Courier_New.ttf 58 E 27.3234 33.5935 91 x 8.3362 29.1932 25.2097 -Courier_New.ttf 58 E 27.3234 33.5935 92 ) -2.5107 8.4065 43.1932 -Courier_New.ttf 58 E 27.3234 33.5935 93 = 11.2627 29.1932 11.3097 -Courier_New.ttf 58 E 27.3234 33.5935 94 + 2.5532 26.8590 29.2455 -Courier_New.ttf 58 E 27.3234 33.5935 95 X 0.1613 30.9092 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 96 » 8.0430 29.5432 26.8068 -Courier_New.ttf 58 E 27.3234 33.5935 97 ' -2.5418 7.9027 17.2297 -Courier_New.ttf 58 E 27.3234 33.5935 98 ¢ -4.4178 20.7867 38.0998 -Courier_New.ttf 58 E 27.3234 33.5935 99 Z 0.1099 23.0959 33.5935 -Courier_New.ttf 58 E 27.3234 33.5935 100 > 1.1308 28.0000 31.5797 -Courier_New.ttf 58 E 27.3234 33.5935 101 ® -0.7097 34.7867 35.0594 -Courier_New.ttf 58 E 27.3234 33.5935 102 © -0.8273 35.0594 34.7867 -Courier_New.ttf 58 E 27.3234 33.5935 103 ] -2.4673 9.5998 43.1932 -Courier_New.ttf 58 E 27.3234 33.5935 104 é -4.2289 27.4295 38.4203 -Courier_New.ttf 58 E 27.3234 33.5935 105 z 8.3435 23.7959 25.2097 -Courier_New.ttf 58 E 27.3234 33.5935 106 _ 47.4842 35.0594 2.3865 -Courier_New.ttf 58 E 27.3234 33.5935 107 ¥ 0.1943 29.6744 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 1 t -0.4421 26.2362 34.6034 -Courier_New.ttf 59 B 28.4167 33.5935 2 h -2.3049 29.6326 35.9800 -Courier_New.ttf 59 B 28.4167 33.5935 3 a 7.8631 26.9256 26.1840 -Courier_New.ttf 59 B 28.4167 33.5935 4 n 8.0184 29.2061 25.6135 -Courier_New.ttf 59 B 28.4167 33.5935 5 P -0.1441 26.0529 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 6 o 8.1385 26.8068 26.1840 -Courier_New.ttf 59 B 28.4167 33.5935 7 e 8.0792 27.4295 26.1840 -Courier_New.ttf 59 B 28.4167 33.5935 8 : 8.1435 8.6565 25.7802 -Courier_New.ttf 59 B 28.4167 33.5935 9 r 7.9907 26.8295 25.6135 -Courier_New.ttf 59 B 28.4167 33.5935 10 l -2.7460 24.4725 35.9800 -Courier_New.ttf 59 B 28.4167 33.5935 11 i -3.4084 24.4725 37.2498 -Courier_New.ttf 59 B 28.4167 33.5935 12 1 -3.6893 22.8527 37.5770 -Courier_New.ttf 59 B 28.4167 33.5935 13 | -2.5079 2.3865 43.1932 -Courier_New.ttf 59 B 28.4167 33.5935 14 N 0.0871 31.3964 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 15 f -2.2754 25.4696 35.9800 -Courier_New.ttf 59 B 28.4167 33.5935 16 g 7.8201 27.8462 36.6565 -Courier_New.ttf 59 B 28.4167 33.5935 17 d -2.4631 30.1138 36.5505 -Courier_New.ttf 59 B 28.4167 33.5935 18 W 0.1527 32.5836 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 19 s 8.0638 23.0959 26.1840 -Courier_New.ttf 59 B 28.4167 33.5935 20 c 7.9898 26.6529 26.1840 -Courier_New.ttf 59 B 28.4167 33.5935 21 u 8.2096 29.6326 25.7802 -Courier_New.ttf 59 B 28.4167 33.5935 22 3 -2.6475 23.6959 36.7876 -Courier_New.ttf 59 B 28.4167 33.5935 23 ~ 12.7723 24.8892 8.5732 -Courier_New.ttf 59 B 28.4167 33.5935 24 # -4.9198 25.0657 42.1962 -Courier_New.ttf 59 B 28.4167 33.5935 25 O 0.1667 29.1932 34.4140 -Courier_New.ttf 59 B 28.4167 33.5935 26 ` -4.2290 9.8498 8.6565 -Courier_New.ttf 59 B 28.4167 33.5935 27 @ -3.8882 22.0800 40.4029 -Courier_New.ttf 59 B 28.4167 33.5935 28 F 0.1068 27.3234 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 29 S -0.1831 24.5392 34.4140 -Courier_New.ttf 59 B 28.4167 33.5935 30 p 7.5823 29.8826 36.6565 -Courier_New.ttf 59 B 28.4167 33.5935 31 “ -2.7771 24.6392 15.1932 -Courier_New.ttf 59 B 28.4167 33.5935 32 % -2.2311 24.3664 36.5505 -Courier_New.ttf 59 B 28.4167 33.5935 33 £ -0.2885 26.2840 33.8435 -Courier_New.ttf 59 B 28.4167 33.5935 34 . 25.9618 8.8232 7.9800 -Courier_New.ttf 59 B 28.4167 33.5935 35 2 -2.9159 23.1732 36.3838 -Courier_New.ttf 59 B 28.4167 33.5935 36 5 -2.2898 23.7437 36.3838 -Courier_New.ttf 59 B 28.4167 33.5935 37 m 8.3258 35.1594 25.6135 -Courier_New.ttf 59 B 28.4167 33.5935 38 V 0.0083 35.1140 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 39 6 -2.9600 23.7959 36.7876 -Courier_New.ttf 59 B 28.4167 33.5935 40 w 8.4631 32.7502 25.2097 -Courier_New.ttf 59 B 28.4167 33.5935 41 T -0.0214 26.8590 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 42 M 0.1476 34.5367 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 43 G -0.3742 29.5621 34.4140 -Courier_New.ttf 59 B 28.4167 33.5935 44 b -2.4662 29.8826 36.5505 -Courier_New.ttf 59 B 28.4167 33.5935 45 9 -2.6447 22.4193 36.7876 -Courier_New.ttf 59 B 28.4167 33.5935 46 ; 8.2733 12.8068 30.9570 -Courier_New.ttf 59 B 28.4167 33.5935 47 D -0.1474 28.4394 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 48 L 0.1683 28.2727 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 49 y 8.3459 29.3121 36.2527 -Courier_New.ttf 59 B 28.4167 33.5935 50 ‘ -2.3167 12.7529 17.2297 -Courier_New.ttf 59 B 28.4167 33.5935 51 \ -5.7201 24.6392 44.3865 -Courier_New.ttf 59 B 28.4167 33.5935 52 R 0.0016 30.7070 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 53 < 1.1062 28.0000 31.5797 -Courier_New.ttf 59 B 28.4167 33.5935 54 4 -2.2827 22.3232 35.9800 -Courier_New.ttf 59 B 28.4167 33.5935 55 8 -2.6741 21.3094 36.7876 -Courier_New.ttf 59 B 28.4167 33.5935 56 0 -3.0455 23.6959 36.7876 -Courier_New.ttf 59 B 28.4167 33.5935 57 A -0.2841 37.1505 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 58 E -0.0830 27.3234 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 59 B 0.3113 28.4167 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 60 v 8.4338 32.1252 25.2097 -Courier_New.ttf 59 B 28.4167 33.5935 61 k -2.1758 26.6529 35.9800 -Courier_New.ttf 59 B 28.4167 33.5935 62 J -0.0511 28.6766 34.1640 -Courier_New.ttf 59 B 28.4167 33.5935 63 U -0.1169 31.3964 34.1640 -Courier_New.ttf 59 B 28.4167 33.5935 64 j -3.7644 18.4230 48.2928 -Courier_New.ttf 59 B 28.4167 33.5935 65 ( -2.0115 8.4065 43.1932 -Courier_New.ttf 59 B 28.4167 33.5935 66 7 -2.6271 22.0027 35.9800 -Courier_New.ttf 59 B 28.4167 33.5935 67 § -2.4397 27.1696 39.8097 -Courier_New.ttf 59 B 28.4167 33.5935 68 $ -5.3806 21.8261 44.3865 -Courier_New.ttf 59 B 28.4167 33.5935 69 € -0.3917 31.2297 34.4140 -Courier_New.ttf 59 B 28.4167 33.5935 70 / -6.1200 24.6392 44.3865 -Courier_New.ttf 59 B 28.4167 33.5935 71 C -0.3274 28.2727 34.4140 -Courier_New.ttf 59 B 28.4167 33.5935 72 * -2.4704 22.0860 21.9800 -Courier_New.ttf 59 B 28.4167 33.5935 73 ” -2.4964 24.6392 15.1932 -Courier_New.ttf 59 B 28.4167 33.5935 74 ? -0.8877 21.0594 34.9406 -Courier_New.ttf 59 B 28.4167 33.5935 75 { -2.8451 11.7324 43.3121 -Courier_New.ttf 59 B 28.4167 33.5935 76 } -2.7942 11.7324 43.3121 -Courier_New.ttf 59 B 28.4167 33.5935 77 , 25.2185 11.5597 17.2297 -Courier_New.ttf 59 B 28.4167 33.5935 78 I -0.1520 22.0860 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 79 ° -8.5400 15.7638 15.7638 -Courier_New.ttf 59 B 28.4167 33.5935 80 K -0.3841 31.2297 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 81 H -0.2043 28.4333 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 82 q 8.1127 29.1932 36.6565 -Courier_New.ttf 59 B 28.4167 33.5935 83 & 2.9095 21.9800 31.2070 -Courier_New.ttf 59 B 28.4167 33.5935 84 ’ -2.6335 12.7529 17.2297 -Courier_New.ttf 59 B 28.4167 33.5935 85 [ -2.5145 9.5998 43.1932 -Courier_New.ttf 59 B 28.4167 33.5935 86 - 15.1605 24.8892 3.2297 -Courier_New.ttf 59 B 28.4167 33.5935 87 Y -0.2616 29.3410 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 88 Q -0.4883 30.3865 40.7840 -Courier_New.ttf 59 B 28.4167 33.5935 89 " -2.6303 19.6995 16.0365 -Courier_New.ttf 59 B 28.4167 33.5935 90 ! -2.7315 6.4594 36.5505 -Courier_New.ttf 59 B 28.4167 33.5935 91 x 8.4682 29.1932 25.2097 -Courier_New.ttf 59 B 28.4167 33.5935 92 ) -2.0863 8.4065 43.1932 -Courier_New.ttf 59 B 28.4167 33.5935 93 = 11.2599 29.1932 11.3097 -Courier_New.ttf 59 B 28.4167 33.5935 94 + 2.3170 26.8590 29.2455 -Courier_New.ttf 59 B 28.4167 33.5935 95 X 0.0871 30.9092 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 96 » 8.1060 29.5432 26.8068 -Courier_New.ttf 59 B 28.4167 33.5935 97 ' -2.2235 7.9027 17.2297 -Courier_New.ttf 59 B 28.4167 33.5935 98 ¢ -4.6410 20.7867 38.0998 -Courier_New.ttf 59 B 28.4167 33.5935 99 Z -0.2595 23.0959 33.5935 -Courier_New.ttf 59 B 28.4167 33.5935 100 > 1.1029 28.0000 31.5797 -Courier_New.ttf 59 B 28.4167 33.5935 101 ® -0.7559 34.7867 35.0594 -Courier_New.ttf 59 B 28.4167 33.5935 102 © -0.5630 35.0594 34.7867 -Courier_New.ttf 59 B 28.4167 33.5935 103 ] -2.0712 9.5998 43.1932 -Courier_New.ttf 59 B 28.4167 33.5935 104 é -4.0546 27.4295 38.4203 -Courier_New.ttf 59 B 28.4167 33.5935 105 z 8.2142 23.7959 25.2097 -Courier_New.ttf 59 B 28.4167 33.5935 106 _ 47.7080 35.0594 2.3865 -Courier_New.ttf 59 B 28.4167 33.5935 107 ¥ -0.1594 29.6744 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 1 t -8.9271 26.2362 34.6034 -Courier_New.ttf 60 v 32.1252 25.2097 2 h -10.8730 29.6326 35.9800 -Courier_New.ttf 60 v 32.1252 25.2097 3 a -0.3584 26.9256 26.1840 -Courier_New.ttf 60 v 32.1252 25.2097 4 n -0.6005 29.2061 25.6135 -Courier_New.ttf 60 v 32.1252 25.2097 5 P -8.6042 26.0529 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 6 o -0.4686 26.8068 26.1840 -Courier_New.ttf 60 v 32.1252 25.2097 7 e -0.6810 27.4295 26.1840 -Courier_New.ttf 60 v 32.1252 25.2097 8 : 0.1038 8.6565 25.7802 -Courier_New.ttf 60 v 32.1252 25.2097 9 r -0.5690 26.8295 25.6135 -Courier_New.ttf 60 v 32.1252 25.2097 10 l -10.5890 24.4725 35.9800 -Courier_New.ttf 60 v 32.1252 25.2097 11 i -11.7809 24.4725 37.2498 -Courier_New.ttf 60 v 32.1252 25.2097 12 1 -12.3456 22.8527 37.5770 -Courier_New.ttf 60 v 32.1252 25.2097 13 | -10.6573 2.3865 43.1932 -Courier_New.ttf 60 v 32.1252 25.2097 14 N -8.4418 31.3964 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 15 f -10.5922 25.4696 35.9800 -Courier_New.ttf 60 v 32.1252 25.2097 16 g -0.2321 27.8462 36.6565 -Courier_New.ttf 60 v 32.1252 25.2097 17 d -10.7163 30.1138 36.5505 -Courier_New.ttf 60 v 32.1252 25.2097 18 W -8.5534 32.5836 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 19 s -0.6638 23.0959 26.1840 -Courier_New.ttf 60 v 32.1252 25.2097 20 c -0.7840 26.6529 26.1840 -Courier_New.ttf 60 v 32.1252 25.2097 21 u -0.2113 29.6326 25.7802 -Courier_New.ttf 60 v 32.1252 25.2097 22 3 -11.1228 23.6959 36.7876 -Courier_New.ttf 60 v 32.1252 25.2097 23 ~ 4.0929 24.8892 8.5732 -Courier_New.ttf 60 v 32.1252 25.2097 24 # -13.3024 25.0657 42.1962 -Courier_New.ttf 60 v 32.1252 25.2097 25 O -8.6909 29.1932 34.4140 -Courier_New.ttf 60 v 32.1252 25.2097 26 ` -12.6414 9.8498 8.6565 -Courier_New.ttf 60 v 32.1252 25.2097 27 @ -12.1648 22.0800 40.4029 -Courier_New.ttf 60 v 32.1252 25.2097 28 F -8.5566 27.3234 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 29 S -8.6221 24.5392 34.4140 -Courier_New.ttf 60 v 32.1252 25.2097 30 p -0.4241 29.8826 36.6565 -Courier_New.ttf 60 v 32.1252 25.2097 31 “ -10.5604 24.6392 15.1932 -Courier_New.ttf 60 v 32.1252 25.2097 32 % -10.8764 24.3664 36.5505 -Courier_New.ttf 60 v 32.1252 25.2097 33 £ -8.8118 26.2840 33.8435 -Courier_New.ttf 60 v 32.1252 25.2097 34 . 17.7186 8.8232 7.9800 -Courier_New.ttf 60 v 32.1252 25.2097 35 2 -11.0448 23.1732 36.3838 -Courier_New.ttf 60 v 32.1252 25.2097 36 5 -10.9264 23.7437 36.3838 -Courier_New.ttf 60 v 32.1252 25.2097 37 m -0.3265 35.1594 25.6135 -Courier_New.ttf 60 v 32.1252 25.2097 38 V -8.5066 35.1140 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 39 6 -11.0738 23.7959 36.7876 -Courier_New.ttf 60 v 32.1252 25.2097 40 w -0.1169 32.7502 25.2097 -Courier_New.ttf 60 v 32.1252 25.2097 41 T -8.3832 26.8590 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 42 M -8.3163 34.5367 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 43 G -8.6816 29.5621 34.4140 -Courier_New.ttf 60 v 32.1252 25.2097 44 b -10.9029 29.8826 36.5505 -Courier_New.ttf 60 v 32.1252 25.2097 45 9 -11.2795 22.4193 36.7876 -Courier_New.ttf 60 v 32.1252 25.2097 46 ; 0.4115 12.8068 30.9570 -Courier_New.ttf 60 v 32.1252 25.2097 47 D -8.1770 28.4394 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 48 L -8.4124 28.2727 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 49 y -0.1450 29.3121 36.2527 -Courier_New.ttf 60 v 32.1252 25.2097 50 ‘ -10.6277 12.7529 17.2297 -Courier_New.ttf 60 v 32.1252 25.2097 51 \ -13.9129 24.6392 44.3865 -Courier_New.ttf 60 v 32.1252 25.2097 52 R -8.1752 30.7070 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 53 < -7.7000 28.0000 31.5797 -Courier_New.ttf 60 v 32.1252 25.2097 54 4 -10.7953 22.3232 35.9800 -Courier_New.ttf 60 v 32.1252 25.2097 55 8 -11.0156 21.3094 36.7876 -Courier_New.ttf 60 v 32.1252 25.2097 56 0 -11.0182 23.6959 36.7876 -Courier_New.ttf 60 v 32.1252 25.2097 57 A -8.2050 37.1505 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 58 E -8.4639 27.3234 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 59 B -8.0974 28.4167 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 60 v 0.1420 32.1252 25.2097 -Courier_New.ttf 60 v 32.1252 25.2097 61 k -10.8144 26.6529 35.9800 -Courier_New.ttf 60 v 32.1252 25.2097 62 J -8.5317 28.6766 34.1640 -Courier_New.ttf 60 v 32.1252 25.2097 63 U -8.7331 31.3964 34.1640 -Courier_New.ttf 60 v 32.1252 25.2097 64 j -12.2000 18.4230 48.2928 -Courier_New.ttf 60 v 32.1252 25.2097 65 ( -11.2537 8.4065 43.1932 -Courier_New.ttf 60 v 32.1252 25.2097 66 7 -10.8682 22.0027 35.9800 -Courier_New.ttf 60 v 32.1252 25.2097 67 § -11.2310 27.1696 39.8097 -Courier_New.ttf 60 v 32.1252 25.2097 68 $ -13.5479 21.8261 44.3865 -Courier_New.ttf 60 v 32.1252 25.2097 69 € -8.7007 31.2297 34.4140 -Courier_New.ttf 60 v 32.1252 25.2097 70 / -14.4493 24.6392 44.3865 -Courier_New.ttf 60 v 32.1252 25.2097 71 C -8.6403 28.2727 34.4140 -Courier_New.ttf 60 v 32.1252 25.2097 72 * -10.9779 22.0860 21.9800 -Courier_New.ttf 60 v 32.1252 25.2097 73 ” -10.6058 24.6392 15.1932 -Courier_New.ttf 60 v 32.1252 25.2097 74 ? -8.8675 21.0594 34.9406 -Courier_New.ttf 60 v 32.1252 25.2097 75 { -11.1888 11.7324 43.3121 -Courier_New.ttf 60 v 32.1252 25.2097 76 } -11.2630 11.7324 43.3121 -Courier_New.ttf 60 v 32.1252 25.2097 77 , 16.5553 11.5597 17.2297 -Courier_New.ttf 60 v 32.1252 25.2097 78 I -8.2889 22.0860 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 79 ° -17.1351 15.7638 15.7638 -Courier_New.ttf 60 v 32.1252 25.2097 80 K -8.2856 31.2297 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 81 H -8.3203 28.4333 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 82 q -0.2594 29.1932 36.6565 -Courier_New.ttf 60 v 32.1252 25.2097 83 & -5.3990 21.9800 31.2070 -Courier_New.ttf 60 v 32.1252 25.2097 84 ’ -10.8556 12.7529 17.2297 -Courier_New.ttf 60 v 32.1252 25.2097 85 [ -10.5233 9.5998 43.1932 -Courier_New.ttf 60 v 32.1252 25.2097 86 - 7.1264 24.8892 3.2297 -Courier_New.ttf 60 v 32.1252 25.2097 87 Y -8.6560 29.3410 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 88 Q -8.4480 30.3865 40.7840 -Courier_New.ttf 60 v 32.1252 25.2097 89 " -10.4466 19.6995 16.0365 -Courier_New.ttf 60 v 32.1252 25.2097 90 ! -10.8050 6.4594 36.5505 -Courier_New.ttf 60 v 32.1252 25.2097 91 x 0.0702 29.1932 25.2097 -Courier_New.ttf 60 v 32.1252 25.2097 92 ) -10.6618 8.4065 43.1932 -Courier_New.ttf 60 v 32.1252 25.2097 93 = 2.8187 29.1932 11.3097 -Courier_New.ttf 60 v 32.1252 25.2097 94 + -6.0168 26.8590 29.2455 -Courier_New.ttf 60 v 32.1252 25.2097 95 X -8.2694 30.9092 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 96 » -0.4136 29.5432 26.8068 -Courier_New.ttf 60 v 32.1252 25.2097 97 ' -11.1330 7.9027 17.2297 -Courier_New.ttf 60 v 32.1252 25.2097 98 ¢ -12.7288 20.7867 38.0998 -Courier_New.ttf 60 v 32.1252 25.2097 99 Z -7.9969 23.0959 33.5935 -Courier_New.ttf 60 v 32.1252 25.2097 100 > -6.9996 28.0000 31.5797 -Courier_New.ttf 60 v 32.1252 25.2097 101 ® -9.4709 34.7867 35.0594 -Courier_New.ttf 60 v 32.1252 25.2097 102 © -9.1857 35.0594 34.7867 -Courier_New.ttf 60 v 32.1252 25.2097 103 ] -10.5587 9.5998 43.1932 -Courier_New.ttf 60 v 32.1252 25.2097 104 é -12.7583 27.4295 38.4203 -Courier_New.ttf 60 v 32.1252 25.2097 105 z -0.0000 23.7959 25.2097 -Courier_New.ttf 60 v 32.1252 25.2097 106 _ 39.1767 35.0594 2.3865 -Courier_New.ttf 60 v 32.1252 25.2097 107 ¥ -8.5279 29.6744 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 1 t 2.0373 26.2362 34.6034 -Courier_New.ttf 61 k 26.6529 35.9800 2 h 0.2052 29.6326 35.9800 -Courier_New.ttf 61 k 26.6529 35.9800 3 a 10.3835 26.9256 26.1840 -Courier_New.ttf 61 k 26.6529 35.9800 4 n 10.1898 29.2061 25.6135 -Courier_New.ttf 61 k 26.6529 35.9800 5 P 2.5055 26.0529 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 6 o 10.4610 26.8068 26.1840 -Courier_New.ttf 61 k 26.6529 35.9800 7 e 10.4323 27.4295 26.1840 -Courier_New.ttf 61 k 26.6529 35.9800 8 : 10.5141 8.6565 25.7802 -Courier_New.ttf 61 k 26.6529 35.9800 9 r 10.5807 26.8295 25.6135 -Courier_New.ttf 61 k 26.6529 35.9800 10 l 0.1516 24.4725 35.9800 -Courier_New.ttf 61 k 26.6529 35.9800 11 i -1.4394 24.4725 37.2498 -Courier_New.ttf 61 k 26.6529 35.9800 12 1 -1.2490 22.8527 37.5770 -Courier_New.ttf 61 k 26.6529 35.9800 13 | 0.1039 2.3865 43.1932 -Courier_New.ttf 61 k 26.6529 35.9800 14 N 2.2813 31.3964 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 15 f -0.0813 25.4696 35.9800 -Courier_New.ttf 61 k 26.6529 35.9800 16 g 10.1339 27.8462 36.6565 -Courier_New.ttf 61 k 26.6529 35.9800 17 d -0.1122 30.1138 36.5505 -Courier_New.ttf 61 k 26.6529 35.9800 18 W 2.6256 32.5836 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 19 s 10.8701 23.0959 26.1840 -Courier_New.ttf 61 k 26.6529 35.9800 20 c 10.0476 26.6529 26.1840 -Courier_New.ttf 61 k 26.6529 35.9800 21 u 10.6058 29.6326 25.7802 -Courier_New.ttf 61 k 26.6529 35.9800 22 3 -0.4001 23.6959 36.7876 -Courier_New.ttf 61 k 26.6529 35.9800 23 ~ 15.0933 24.8892 8.5732 -Courier_New.ttf 61 k 26.6529 35.9800 24 # -2.7615 25.0657 42.1962 -Courier_New.ttf 61 k 26.6529 35.9800 25 O 2.1662 29.1932 34.4140 -Courier_New.ttf 61 k 26.6529 35.9800 26 ` -1.9593 9.8498 8.6565 -Courier_New.ttf 61 k 26.6529 35.9800 27 @ -1.5346 22.0800 40.4029 -Courier_New.ttf 61 k 26.6529 35.9800 28 F 2.5426 27.3234 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 29 S 2.3153 24.5392 34.4140 -Courier_New.ttf 61 k 26.6529 35.9800 30 p 10.4652 29.8826 36.6565 -Courier_New.ttf 61 k 26.6529 35.9800 31 “ 0.0024 24.6392 15.1932 -Courier_New.ttf 61 k 26.6529 35.9800 32 % 0.1345 24.3664 36.5505 -Courier_New.ttf 61 k 26.6529 35.9800 33 £ 2.1404 26.2840 33.8435 -Courier_New.ttf 61 k 26.6529 35.9800 34 . 28.3521 8.8232 7.9800 -Courier_New.ttf 61 k 26.6529 35.9800 35 2 -0.6600 23.1732 36.3838 -Courier_New.ttf 61 k 26.6529 35.9800 36 5 -0.3698 23.7437 36.3838 -Courier_New.ttf 61 k 26.6529 35.9800 37 m 10.3759 35.1594 25.6135 -Courier_New.ttf 61 k 26.6529 35.9800 38 V 2.3833 35.1140 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 39 6 -0.5638 23.7959 36.7876 -Courier_New.ttf 61 k 26.6529 35.9800 40 w 10.8542 32.7502 25.2097 -Courier_New.ttf 61 k 26.6529 35.9800 41 T 2.3123 26.8590 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 42 M 2.4184 34.5367 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 43 G 1.9366 29.5621 34.4140 -Courier_New.ttf 61 k 26.6529 35.9800 44 b -0.1943 29.8826 36.5505 -Courier_New.ttf 61 k 26.6529 35.9800 45 9 -0.4098 22.4193 36.7876 -Courier_New.ttf 61 k 26.6529 35.9800 46 ; 10.6621 12.8068 30.9570 -Courier_New.ttf 61 k 26.6529 35.9800 47 D 2.1922 28.4394 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 48 L 2.3059 28.2727 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 49 y 10.5864 29.3121 36.2527 -Courier_New.ttf 61 k 26.6529 35.9800 50 ‘ 0.0635 12.7529 17.2297 -Courier_New.ttf 61 k 26.6529 35.9800 51 \ -2.8870 24.6392 44.3865 -Courier_New.ttf 61 k 26.6529 35.9800 52 R 2.7920 30.7070 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 53 < 3.2197 28.0000 31.5797 -Courier_New.ttf 61 k 26.6529 35.9800 54 4 -0.2645 22.3232 35.9800 -Courier_New.ttf 61 k 26.6529 35.9800 55 8 -0.1223 21.3094 36.7876 -Courier_New.ttf 61 k 26.6529 35.9800 56 0 -0.4788 23.6959 36.7876 -Courier_New.ttf 61 k 26.6529 35.9800 57 A 2.4499 37.1505 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 58 E 2.3754 27.3234 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 59 B 2.4830 28.4167 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 60 v 11.0094 32.1252 25.2097 -Courier_New.ttf 61 k 26.6529 35.9800 61 k 0.1301 26.6529 35.9800 -Courier_New.ttf 61 k 26.6529 35.9800 62 J 2.6093 28.6766 34.1640 -Courier_New.ttf 61 k 26.6529 35.9800 63 U 2.2026 31.3964 34.1640 -Courier_New.ttf 61 k 26.6529 35.9800 64 j -1.5836 18.4230 48.2928 -Courier_New.ttf 61 k 26.6529 35.9800 65 ( 0.0373 8.4065 43.1932 -Courier_New.ttf 61 k 26.6529 35.9800 66 7 -0.1304 22.0027 35.9800 -Courier_New.ttf 61 k 26.6529 35.9800 67 § 0.1774 27.1696 39.8097 -Courier_New.ttf 61 k 26.6529 35.9800 68 $ -3.0862 21.8261 44.3865 -Courier_New.ttf 61 k 26.6529 35.9800 69 € 2.3411 31.2297 34.4140 -Courier_New.ttf 61 k 26.6529 35.9800 70 / -3.6790 24.6392 44.3865 -Courier_New.ttf 61 k 26.6529 35.9800 71 C 2.0837 28.2727 34.4140 -Courier_New.ttf 61 k 26.6529 35.9800 72 * -0.2326 22.0860 21.9800 -Courier_New.ttf 61 k 26.6529 35.9800 73 ” -0.0286 24.6392 15.1932 -Courier_New.ttf 61 k 26.6529 35.9800 74 ? 1.6234 21.0594 34.9406 -Courier_New.ttf 61 k 26.6529 35.9800 75 { -0.1332 11.7324 43.3121 -Courier_New.ttf 61 k 26.6529 35.9800 76 } -0.4354 11.7324 43.3121 -Courier_New.ttf 61 k 26.6529 35.9800 77 , 27.3151 11.5597 17.2297 -Courier_New.ttf 61 k 26.6529 35.9800 78 I 2.5173 22.0860 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 79 ° -6.3631 15.7638 15.7638 -Courier_New.ttf 61 k 26.6529 35.9800 80 K 2.5532 31.2297 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 81 H 2.3103 28.4333 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 82 q 10.1202 29.1932 36.6565 -Courier_New.ttf 61 k 26.6529 35.9800 83 & 5.5246 21.9800 31.2070 -Courier_New.ttf 61 k 26.6529 35.9800 84 ’ -0.2806 12.7529 17.2297 -Courier_New.ttf 61 k 26.6529 35.9800 85 [ -0.1084 9.5998 43.1932 -Courier_New.ttf 61 k 26.6529 35.9800 86 - 17.3294 24.8892 3.2297 -Courier_New.ttf 61 k 26.6529 35.9800 87 Y 2.3847 29.3410 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 88 Q 2.0886 30.3865 40.7840 -Courier_New.ttf 61 k 26.6529 35.9800 89 " 0.0228 19.6995 16.0365 -Courier_New.ttf 61 k 26.6529 35.9800 90 ! 0.2728 6.4594 36.5505 -Courier_New.ttf 61 k 26.6529 35.9800 91 x 10.2548 29.1932 25.2097 -Courier_New.ttf 61 k 26.6529 35.9800 92 ) -0.0228 8.4065 43.1932 -Courier_New.ttf 61 k 26.6529 35.9800 93 = 13.4471 29.1932 11.3097 -Courier_New.ttf 61 k 26.6529 35.9800 94 + 4.7900 26.8590 29.2455 -Courier_New.ttf 61 k 26.6529 35.9800 95 X 2.4022 30.9092 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 96 » 10.4126 29.5432 26.8068 -Courier_New.ttf 61 k 26.6529 35.9800 97 ' 0.2387 7.9027 17.2297 -Courier_New.ttf 61 k 26.6529 35.9800 98 ¢ -1.9456 20.7867 38.0998 -Courier_New.ttf 61 k 26.6529 35.9800 99 Z 2.3480 23.0959 33.5935 -Courier_New.ttf 61 k 26.6529 35.9800 100 > 3.4706 28.0000 31.5797 -Courier_New.ttf 61 k 26.6529 35.9800 101 ® 1.4123 34.7867 35.0594 -Courier_New.ttf 61 k 26.6529 35.9800 102 © 2.0322 35.0594 34.7867 -Courier_New.ttf 61 k 26.6529 35.9800 103 ] 0.0319 9.5998 43.1932 -Courier_New.ttf 61 k 26.6529 35.9800 104 é -1.9119 27.4295 38.4203 -Courier_New.ttf 61 k 26.6529 35.9800 105 z 10.8889 23.7959 25.2097 -Courier_New.ttf 61 k 26.6529 35.9800 106 _ 50.0227 35.0594 2.3865 -Courier_New.ttf 61 k 26.6529 35.9800 107 ¥ 2.6087 29.6744 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 1 t -0.6025 26.2362 34.6034 -Courier_New.ttf 62 J 28.6766 34.1640 2 h -2.4333 29.6326 35.9800 -Courier_New.ttf 62 J 28.6766 34.1640 3 a 8.0198 26.9256 26.1840 -Courier_New.ttf 62 J 28.6766 34.1640 4 n 7.9324 29.2061 25.6135 -Courier_New.ttf 62 J 28.6766 34.1640 5 P -0.1430 26.0529 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 6 o 7.7694 26.8068 26.1840 -Courier_New.ttf 62 J 28.6766 34.1640 7 e 7.9214 27.4295 26.1840 -Courier_New.ttf 62 J 28.6766 34.1640 8 : 8.5171 8.6565 25.7802 -Courier_New.ttf 62 J 28.6766 34.1640 9 r 7.8842 26.8295 25.6135 -Courier_New.ttf 62 J 28.6766 34.1640 10 l -2.6418 24.4725 35.9800 -Courier_New.ttf 62 J 28.6766 34.1640 11 i -3.8676 24.4725 37.2498 -Courier_New.ttf 62 J 28.6766 34.1640 12 1 -4.0772 22.8527 37.5770 -Courier_New.ttf 62 J 28.6766 34.1640 13 | -2.2923 2.3865 43.1932 -Courier_New.ttf 62 J 28.6766 34.1640 14 N -0.1683 31.3964 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 15 f -2.3851 25.4696 35.9800 -Courier_New.ttf 62 J 28.6766 34.1640 16 g 7.8044 27.8462 36.6565 -Courier_New.ttf 62 J 28.6766 34.1640 17 d -2.6037 30.1138 36.5505 -Courier_New.ttf 62 J 28.6766 34.1640 18 W 0.0357 32.5836 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 19 s 8.1625 23.0959 26.1840 -Courier_New.ttf 62 J 28.6766 34.1640 20 c 8.3367 26.6529 26.1840 -Courier_New.ttf 62 J 28.6766 34.1640 21 u 8.3134 29.6326 25.7802 -Courier_New.ttf 62 J 28.6766 34.1640 22 3 -3.0457 23.6959 36.7876 -Courier_New.ttf 62 J 28.6766 34.1640 23 ~ 12.4697 24.8892 8.5732 -Courier_New.ttf 62 J 28.6766 34.1640 24 # -4.8978 25.0657 42.1962 -Courier_New.ttf 62 J 28.6766 34.1640 25 O -0.4294 29.1932 34.4140 -Courier_New.ttf 62 J 28.6766 34.1640 26 ` -4.5746 9.8498 8.6565 -Courier_New.ttf 62 J 28.6766 34.1640 27 @ -3.9588 22.0800 40.4029 -Courier_New.ttf 62 J 28.6766 34.1640 28 F -0.0532 27.3234 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 29 S -0.2195 24.5392 34.4140 -Courier_New.ttf 62 J 28.6766 34.1640 30 p 8.0092 29.8826 36.6565 -Courier_New.ttf 62 J 28.6766 34.1640 31 “ -2.4021 24.6392 15.1932 -Courier_New.ttf 62 J 28.6766 34.1640 32 % -2.2636 24.3664 36.5505 -Courier_New.ttf 62 J 28.6766 34.1640 33 £ 0.0184 26.2840 33.8435 -Courier_New.ttf 62 J 28.6766 34.1640 34 . 26.0053 8.8232 7.9800 -Courier_New.ttf 62 J 28.6766 34.1640 35 2 -2.9215 23.1732 36.3838 -Courier_New.ttf 62 J 28.6766 34.1640 36 5 -2.6275 23.7437 36.3838 -Courier_New.ttf 62 J 28.6766 34.1640 37 m 7.9428 35.1594 25.6135 -Courier_New.ttf 62 J 28.6766 34.1640 38 V 0.0357 35.1140 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 39 6 -2.9925 23.7959 36.7876 -Courier_New.ttf 62 J 28.6766 34.1640 40 w 8.4338 32.7502 25.2097 -Courier_New.ttf 62 J 28.6766 34.1640 41 T 0.0850 26.8590 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 42 M -0.1853 34.5367 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 43 G -0.3399 29.5621 34.4140 -Courier_New.ttf 62 J 28.6766 34.1640 44 b -2.4049 29.8826 36.5505 -Courier_New.ttf 62 J 28.6766 34.1640 45 9 -2.6902 22.4193 36.7876 -Courier_New.ttf 62 J 28.6766 34.1640 46 ; 8.6000 12.8068 30.9570 -Courier_New.ttf 62 J 28.6766 34.1640 47 D 0.0553 28.4394 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 48 L -0.2127 28.2727 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 49 y 8.6776 29.3121 36.2527 -Courier_New.ttf 62 J 28.6766 34.1640 50 ‘ -2.1758 12.7529 17.2297 -Courier_New.ttf 62 J 28.6766 34.1640 51 \ -5.7358 24.6392 44.3865 -Courier_New.ttf 62 J 28.6766 34.1640 52 R 0.2123 30.7070 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 53 < 1.0816 28.0000 31.5797 -Courier_New.ttf 62 J 28.6766 34.1640 54 4 -2.4020 22.3232 35.9800 -Courier_New.ttf 62 J 28.6766 34.1640 55 8 -2.9223 21.3094 36.7876 -Courier_New.ttf 62 J 28.6766 34.1640 56 0 -2.3594 23.6959 36.7876 -Courier_New.ttf 62 J 28.6766 34.1640 57 A 0.0613 37.1505 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 58 E 0.1883 27.3234 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 59 B -0.0091 28.4167 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 60 v 7.9861 32.1252 25.2097 -Courier_New.ttf 62 J 28.6766 34.1640 61 k -2.4201 26.6529 35.9800 -Courier_New.ttf 62 J 28.6766 34.1640 62 J 0.1818 28.6766 34.1640 -Courier_New.ttf 62 J 28.6766 34.1640 63 U 0.0629 31.3964 34.1640 -Courier_New.ttf 62 J 28.6766 34.1640 64 j -3.4807 18.4230 48.2928 -Courier_New.ttf 62 J 28.6766 34.1640 65 ( -2.4356 8.4065 43.1932 -Courier_New.ttf 62 J 28.6766 34.1640 66 7 -2.6036 22.0027 35.9800 -Courier_New.ttf 62 J 28.6766 34.1640 67 § -2.4274 27.1696 39.8097 -Courier_New.ttf 62 J 28.6766 34.1640 68 $ -5.7239 21.8261 44.3865 -Courier_New.ttf 62 J 28.6766 34.1640 69 € -0.3027 31.2297 34.4140 -Courier_New.ttf 62 J 28.6766 34.1640 70 / -5.9686 24.6392 44.3865 -Courier_New.ttf 62 J 28.6766 34.1640 71 C -0.0901 28.2727 34.4140 -Courier_New.ttf 62 J 28.6766 34.1640 72 * -2.2313 22.0860 21.9800 -Courier_New.ttf 62 J 28.6766 34.1640 73 ” -2.4137 24.6392 15.1932 -Courier_New.ttf 62 J 28.6766 34.1640 74 ? -0.8464 21.0594 34.9406 -Courier_New.ttf 62 J 28.6766 34.1640 75 { -2.9746 11.7324 43.3121 -Courier_New.ttf 62 J 28.6766 34.1640 76 } -2.6595 11.7324 43.3121 -Courier_New.ttf 62 J 28.6766 34.1640 77 , 24.7471 11.5597 17.2297 -Courier_New.ttf 62 J 28.6766 34.1640 78 I -0.3224 22.0860 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 79 ° -8.6254 15.7638 15.7638 -Courier_New.ttf 62 J 28.6766 34.1640 80 K 0.1210 31.2297 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 81 H -0.0611 28.4333 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 82 q 7.9453 29.1932 36.6565 -Courier_New.ttf 62 J 28.6766 34.1640 83 & 3.0298 21.9800 31.2070 -Courier_New.ttf 62 J 28.6766 34.1640 84 ’ -2.3184 12.7529 17.2297 -Courier_New.ttf 62 J 28.6766 34.1640 85 [ -2.2831 9.5998 43.1932 -Courier_New.ttf 62 J 28.6766 34.1640 86 - 15.0691 24.8892 3.2297 -Courier_New.ttf 62 J 28.6766 34.1640 87 Y -0.1400 29.3410 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 88 Q -0.1484 30.3865 40.7840 -Courier_New.ttf 62 J 28.6766 34.1640 89 " -2.1953 19.6995 16.0365 -Courier_New.ttf 62 J 28.6766 34.1640 90 ! -2.2299 6.4594 36.5505 -Courier_New.ttf 62 J 28.6766 34.1640 91 x 8.2610 29.1932 25.2097 -Courier_New.ttf 62 J 28.6766 34.1640 92 ) -2.4345 8.4065 43.1932 -Courier_New.ttf 62 J 28.6766 34.1640 93 = 11.0839 29.1932 11.3097 -Courier_New.ttf 62 J 28.6766 34.1640 94 + 2.7325 26.8590 29.2455 -Courier_New.ttf 62 J 28.6766 34.1640 95 X 0.0357 30.9092 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 96 » 7.4966 29.5432 26.8068 -Courier_New.ttf 62 J 28.6766 34.1640 97 ' -2.3529 7.9027 17.2297 -Courier_New.ttf 62 J 28.6766 34.1640 98 ¢ -4.1861 20.7867 38.0998 -Courier_New.ttf 62 J 28.6766 34.1640 99 Z -0.1841 23.0959 33.5935 -Courier_New.ttf 62 J 28.6766 34.1640 100 > 1.3321 28.0000 31.5797 -Courier_New.ttf 62 J 28.6766 34.1640 101 ® -0.9734 34.7867 35.0594 -Courier_New.ttf 62 J 28.6766 34.1640 102 © -0.6554 35.0594 34.7867 -Courier_New.ttf 62 J 28.6766 34.1640 103 ] -2.2797 9.5998 43.1932 -Courier_New.ttf 62 J 28.6766 34.1640 104 é -4.0321 27.4295 38.4203 -Courier_New.ttf 62 J 28.6766 34.1640 105 z 8.4521 23.7959 25.2097 -Courier_New.ttf 62 J 28.6766 34.1640 106 _ 47.7093 35.0594 2.3865 -Courier_New.ttf 62 J 28.6766 34.1640 107 ¥ -0.1045 29.6744 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 1 t -0.4932 26.2362 34.6034 -Courier_New.ttf 63 U 31.3964 34.1640 2 h -2.5848 29.6326 35.9800 -Courier_New.ttf 63 U 31.3964 34.1640 3 a 7.7872 26.9256 26.1840 -Courier_New.ttf 63 U 31.3964 34.1640 4 n 7.8415 29.2061 25.6135 -Courier_New.ttf 63 U 31.3964 34.1640 5 P 0.1495 26.0529 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 6 o 8.1047 26.8068 26.1840 -Courier_New.ttf 63 U 31.3964 34.1640 7 e 8.2528 27.4295 26.1840 -Courier_New.ttf 63 U 31.3964 34.1640 8 : 8.4593 8.6565 25.7802 -Courier_New.ttf 63 U 31.3964 34.1640 9 r 7.9840 26.8295 25.6135 -Courier_New.ttf 63 U 31.3964 34.1640 10 l -2.2489 24.4725 35.9800 -Courier_New.ttf 63 U 31.3964 34.1640 11 i -3.2936 24.4725 37.2498 -Courier_New.ttf 63 U 31.3964 34.1640 12 1 -3.8861 22.8527 37.5770 -Courier_New.ttf 63 U 31.3964 34.1640 13 | -2.3236 2.3865 43.1932 -Courier_New.ttf 63 U 31.3964 34.1640 14 N 0.1937 31.3964 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 15 f -2.2515 25.4696 35.9800 -Courier_New.ttf 63 U 31.3964 34.1640 16 g 8.0942 27.8462 36.6565 -Courier_New.ttf 63 U 31.3964 34.1640 17 d -2.4854 30.1138 36.5505 -Courier_New.ttf 63 U 31.3964 34.1640 18 W 0.0882 32.5836 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 19 s 8.0629 23.0959 26.1840 -Courier_New.ttf 63 U 31.3964 34.1640 20 c 7.8716 26.6529 26.1840 -Courier_New.ttf 63 U 31.3964 34.1640 21 u 8.5601 29.6326 25.7802 -Courier_New.ttf 63 U 31.3964 34.1640 22 3 -3.0954 23.6959 36.7876 -Courier_New.ttf 63 U 31.3964 34.1640 23 ~ 12.2799 24.8892 8.5732 -Courier_New.ttf 63 U 31.3964 34.1640 24 # -4.6092 25.0657 42.1962 -Courier_New.ttf 63 U 31.3964 34.1640 25 O -0.4841 29.1932 34.4140 -Courier_New.ttf 63 U 31.3964 34.1640 26 ` -4.3148 9.8498 8.6565 -Courier_New.ttf 63 U 31.3964 34.1640 27 @ -4.0460 22.0800 40.4029 -Courier_New.ttf 63 U 31.3964 34.1640 28 F -0.0473 27.3234 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 29 S -0.4085 24.5392 34.4140 -Courier_New.ttf 63 U 31.3964 34.1640 30 p 8.1958 29.8826 36.6565 -Courier_New.ttf 63 U 31.3964 34.1640 31 “ -2.3220 24.6392 15.1932 -Courier_New.ttf 63 U 31.3964 34.1640 32 % -2.2928 24.3664 36.5505 -Courier_New.ttf 63 U 31.3964 34.1640 33 £ -0.1916 26.2840 33.8435 -Courier_New.ttf 63 U 31.3964 34.1640 34 . 26.3576 8.8232 7.9800 -Courier_New.ttf 63 U 31.3964 34.1640 35 2 -2.2814 23.1732 36.3838 -Courier_New.ttf 63 U 31.3964 34.1640 36 5 -2.5324 23.7437 36.3838 -Courier_New.ttf 63 U 31.3964 34.1640 37 m 8.2445 35.1594 25.6135 -Courier_New.ttf 63 U 31.3964 34.1640 38 V 0.0608 35.1140 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 39 6 -2.5949 23.7959 36.7876 -Courier_New.ttf 63 U 31.3964 34.1640 40 w 8.2031 32.7502 25.2097 -Courier_New.ttf 63 U 31.3964 34.1640 41 T -0.1721 26.8590 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 42 M -0.0766 34.5367 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 43 G -0.3873 29.5621 34.4140 -Courier_New.ttf 63 U 31.3964 34.1640 44 b -2.6260 29.8826 36.5505 -Courier_New.ttf 63 U 31.3964 34.1640 45 9 -2.8410 22.4193 36.7876 -Courier_New.ttf 63 U 31.3964 34.1640 46 ; 8.3625 12.8068 30.9570 -Courier_New.ttf 63 U 31.3964 34.1640 47 D 0.0000 28.4394 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 48 L 0.1655 28.2727 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 49 y 8.4300 29.3121 36.2527 -Courier_New.ttf 63 U 31.3964 34.1640 50 ‘ -2.3637 12.7529 17.2297 -Courier_New.ttf 63 U 31.3964 34.1640 51 \ -5.8992 24.6392 44.3865 -Courier_New.ttf 63 U 31.3964 34.1640 52 R 0.0083 30.7070 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 53 < 1.0594 28.0000 31.5797 -Courier_New.ttf 63 U 31.3964 34.1640 54 4 -2.5121 22.3232 35.9800 -Courier_New.ttf 63 U 31.3964 34.1640 55 8 -3.0169 21.3094 36.7876 -Courier_New.ttf 63 U 31.3964 34.1640 56 0 -2.8760 23.6959 36.7876 -Courier_New.ttf 63 U 31.3964 34.1640 57 A -0.3629 37.1505 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 58 E 0.2158 27.3234 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 59 B -0.0647 28.4167 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 60 v 8.3786 32.1252 25.2097 -Courier_New.ttf 63 U 31.3964 34.1640 61 k -2.3942 26.6529 35.9800 -Courier_New.ttf 63 U 31.3964 34.1640 62 J 0.0727 28.6766 34.1640 -Courier_New.ttf 63 U 31.3964 34.1640 63 U -0.0830 31.3964 34.1640 -Courier_New.ttf 63 U 31.3964 34.1640 64 j -3.7017 18.4230 48.2928 -Courier_New.ttf 63 U 31.3964 34.1640 65 ( -1.9569 8.4065 43.1932 -Courier_New.ttf 63 U 31.3964 34.1640 66 7 -2.5392 22.0027 35.9800 -Courier_New.ttf 63 U 31.3964 34.1640 67 § -2.3325 27.1696 39.8097 -Courier_New.ttf 63 U 31.3964 34.1640 68 $ -5.2798 21.8261 44.3865 -Courier_New.ttf 63 U 31.3964 34.1640 69 € -0.0088 31.2297 34.4140 -Courier_New.ttf 63 U 31.3964 34.1640 70 / -6.2182 24.6392 44.3865 -Courier_New.ttf 63 U 31.3964 34.1640 71 C 0.0782 28.2727 34.4140 -Courier_New.ttf 63 U 31.3964 34.1640 72 * -2.3827 22.0860 21.9800 -Courier_New.ttf 63 U 31.3964 34.1640 73 ” -2.7575 24.6392 15.1932 -Courier_New.ttf 63 U 31.3964 34.1640 74 ? -0.5880 21.0594 34.9406 -Courier_New.ttf 63 U 31.3964 34.1640 75 { -2.8191 11.7324 43.3121 -Courier_New.ttf 63 U 31.3964 34.1640 76 } -2.3570 11.7324 43.3121 -Courier_New.ttf 63 U 31.3964 34.1640 77 , 24.9859 11.5597 17.2297 -Courier_New.ttf 63 U 31.3964 34.1640 78 I 0.1298 22.0860 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 79 ° -8.6895 15.7638 15.7638 -Courier_New.ttf 63 U 31.3964 34.1640 80 K 0.2449 31.2297 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 81 H -0.2001 28.4333 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 82 q 7.8480 29.1932 36.6565 -Courier_New.ttf 63 U 31.3964 34.1640 83 & 3.2760 21.9800 31.2070 -Courier_New.ttf 63 U 31.3964 34.1640 84 ’ -2.3137 12.7529 17.2297 -Courier_New.ttf 63 U 31.3964 34.1640 85 [ -2.2301 9.5998 43.1932 -Courier_New.ttf 63 U 31.3964 34.1640 86 - 15.2517 24.8892 3.2297 -Courier_New.ttf 63 U 31.3964 34.1640 87 Y -0.0042 29.3410 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 88 Q -0.3242 30.3865 40.7840 -Courier_New.ttf 63 U 31.3964 34.1640 89 " -2.3456 19.6995 16.0365 -Courier_New.ttf 63 U 31.3964 34.1640 90 ! -2.8258 6.4594 36.5505 -Courier_New.ttf 63 U 31.3964 34.1640 91 x 8.6513 29.1932 25.2097 -Courier_New.ttf 63 U 31.3964 34.1640 92 ) -2.6523 8.4065 43.1932 -Courier_New.ttf 63 U 31.3964 34.1640 93 = 11.0445 29.1932 11.3097 -Courier_New.ttf 63 U 31.3964 34.1640 94 + 2.8039 26.8590 29.2455 -Courier_New.ttf 63 U 31.3964 34.1640 95 X -0.1057 30.9092 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 96 » 8.1456 29.5432 26.8068 -Courier_New.ttf 63 U 31.3964 34.1640 97 ' -2.5139 7.9027 17.2297 -Courier_New.ttf 63 U 31.3964 34.1640 98 ¢ -4.2974 20.7867 38.0998 -Courier_New.ttf 63 U 31.3964 34.1640 99 Z 0.2099 23.0959 33.5935 -Courier_New.ttf 63 U 31.3964 34.1640 100 > 0.9337 28.0000 31.5797 -Courier_New.ttf 63 U 31.3964 34.1640 101 ® -0.8822 34.7867 35.0594 -Courier_New.ttf 63 U 31.3964 34.1640 102 © -0.8476 35.0594 34.7867 -Courier_New.ttf 63 U 31.3964 34.1640 103 ] -2.3865 9.5998 43.1932 -Courier_New.ttf 63 U 31.3964 34.1640 104 é -4.3420 27.4295 38.4203 -Courier_New.ttf 63 U 31.3964 34.1640 105 z 8.5837 23.7959 25.2097 -Courier_New.ttf 63 U 31.3964 34.1640 106 _ 47.6389 35.0594 2.3865 -Courier_New.ttf 63 U 31.3964 34.1640 107 ¥ 0.0115 29.6744 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 1 t 2.9486 26.2362 34.6034 -Courier_New.ttf 64 j 18.4230 48.2928 2 h 1.3226 29.6326 35.9800 -Courier_New.ttf 64 j 18.4230 48.2928 3 a 11.5975 26.9256 26.1840 -Courier_New.ttf 64 j 18.4230 48.2928 4 n 11.5636 29.2061 25.6135 -Courier_New.ttf 64 j 18.4230 48.2928 5 P 3.6863 26.0529 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 6 o 11.5756 26.8068 26.1840 -Courier_New.ttf 64 j 18.4230 48.2928 7 e 11.5621 27.4295 26.1840 -Courier_New.ttf 64 j 18.4230 48.2928 8 : 11.9459 8.6565 25.7802 -Courier_New.ttf 64 j 18.4230 48.2928 9 r 11.4902 26.8295 25.6135 -Courier_New.ttf 64 j 18.4230 48.2928 10 l 1.3055 24.4725 35.9800 -Courier_New.ttf 64 j 18.4230 48.2928 11 i 0.3600 24.4725 37.2498 -Courier_New.ttf 64 j 18.4230 48.2928 12 1 -0.3974 22.8527 37.5770 -Courier_New.ttf 64 j 18.4230 48.2928 13 | 1.2529 2.3865 43.1932 -Courier_New.ttf 64 j 18.4230 48.2928 14 N 3.6434 31.3964 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 15 f 1.2607 25.4696 35.9800 -Courier_New.ttf 64 j 18.4230 48.2928 16 g 11.8329 27.8462 36.6565 -Courier_New.ttf 64 j 18.4230 48.2928 17 d 1.3174 30.1138 36.5505 -Courier_New.ttf 64 j 18.4230 48.2928 18 W 3.7634 32.5836 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 19 s 11.6115 23.0959 26.1840 -Courier_New.ttf 64 j 18.4230 48.2928 20 c 11.8589 26.6529 26.1840 -Courier_New.ttf 64 j 18.4230 48.2928 21 u 11.8705 29.6326 25.7802 -Courier_New.ttf 64 j 18.4230 48.2928 22 3 0.7893 23.6959 36.7876 -Courier_New.ttf 64 j 18.4230 48.2928 23 ~ 16.3188 24.8892 8.5732 -Courier_New.ttf 64 j 18.4230 48.2928 24 # -1.2748 25.0657 42.1962 -Courier_New.ttf 64 j 18.4230 48.2928 25 O 3.6291 29.1932 34.4140 -Courier_New.ttf 64 j 18.4230 48.2928 26 ` -0.1218 9.8498 8.6565 -Courier_New.ttf 64 j 18.4230 48.2928 27 @ -0.1052 22.0800 40.4029 -Courier_New.ttf 64 j 18.4230 48.2928 28 F 3.7204 27.3234 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 29 S 3.1295 24.5392 34.4140 -Courier_New.ttf 64 j 18.4230 48.2928 30 p 11.3625 29.8826 36.6565 -Courier_New.ttf 64 j 18.4230 48.2928 31 “ 1.1369 24.6392 15.1932 -Courier_New.ttf 64 j 18.4230 48.2928 32 % 1.3724 24.3664 36.5505 -Courier_New.ttf 64 j 18.4230 48.2928 33 £ 3.5301 26.2840 33.8435 -Courier_New.ttf 64 j 18.4230 48.2928 34 . 29.5719 8.8232 7.9800 -Courier_New.ttf 64 j 18.4230 48.2928 35 2 1.0901 23.1732 36.3838 -Courier_New.ttf 64 j 18.4230 48.2928 36 5 1.2698 23.7437 36.3838 -Courier_New.ttf 64 j 18.4230 48.2928 37 m 11.5479 35.1594 25.6135 -Courier_New.ttf 64 j 18.4230 48.2928 38 V 3.7350 35.1140 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 39 6 0.5579 23.7959 36.7876 -Courier_New.ttf 64 j 18.4230 48.2928 40 w 12.1705 32.7502 25.2097 -Courier_New.ttf 64 j 18.4230 48.2928 41 T 3.9176 26.8590 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 42 M 3.9071 34.5367 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 43 G 3.4527 29.5621 34.4140 -Courier_New.ttf 64 j 18.4230 48.2928 44 b 1.1511 29.8826 36.5505 -Courier_New.ttf 64 j 18.4230 48.2928 45 9 0.9129 22.4193 36.7876 -Courier_New.ttf 64 j 18.4230 48.2928 46 ; 12.0930 12.8068 30.9570 -Courier_New.ttf 64 j 18.4230 48.2928 47 D 3.5251 28.4394 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 48 L 3.4868 28.2727 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 49 y 12.2216 29.3121 36.2527 -Courier_New.ttf 64 j 18.4230 48.2928 50 ‘ 1.1653 12.7529 17.2297 -Courier_New.ttf 64 j 18.4230 48.2928 51 \ -2.0631 24.6392 44.3865 -Courier_New.ttf 64 j 18.4230 48.2928 52 R 3.7090 30.7070 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 53 < 4.8352 28.0000 31.5797 -Courier_New.ttf 64 j 18.4230 48.2928 54 4 1.2643 22.3232 35.9800 -Courier_New.ttf 64 j 18.4230 48.2928 55 8 0.8342 21.3094 36.7876 -Courier_New.ttf 64 j 18.4230 48.2928 56 0 0.5936 23.6959 36.7876 -Courier_New.ttf 64 j 18.4230 48.2928 57 A 3.7392 37.1505 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 58 E 3.5751 27.3234 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 59 B 3.8402 28.4167 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 60 v 12.3312 32.1252 25.2097 -Courier_New.ttf 64 j 18.4230 48.2928 61 k 1.3080 26.6529 35.9800 -Courier_New.ttf 64 j 18.4230 48.2928 62 J 3.4681 28.6766 34.1640 -Courier_New.ttf 64 j 18.4230 48.2928 63 U 3.6505 31.3964 34.1640 -Courier_New.ttf 64 j 18.4230 48.2928 64 j -0.1696 18.4230 48.2928 -Courier_New.ttf 64 j 18.4230 48.2928 65 ( 1.4072 8.4065 43.1932 -Courier_New.ttf 64 j 18.4230 48.2928 66 7 1.3583 22.0027 35.9800 -Courier_New.ttf 64 j 18.4230 48.2928 67 § 1.1254 27.1696 39.8097 -Courier_New.ttf 64 j 18.4230 48.2928 68 $ -1.9261 21.8261 44.3865 -Courier_New.ttf 64 j 18.4230 48.2928 69 € 3.3706 31.2297 34.4140 -Courier_New.ttf 64 j 18.4230 48.2928 70 / -2.5796 24.6392 44.3865 -Courier_New.ttf 64 j 18.4230 48.2928 71 C 3.3738 28.2727 34.4140 -Courier_New.ttf 64 j 18.4230 48.2928 72 * 1.4993 22.0860 21.9800 -Courier_New.ttf 64 j 18.4230 48.2928 73 ” 1.5024 24.6392 15.1932 -Courier_New.ttf 64 j 18.4230 48.2928 74 ? 3.0313 21.0594 34.9406 -Courier_New.ttf 64 j 18.4230 48.2928 75 { 1.0495 11.7324 43.3121 -Courier_New.ttf 64 j 18.4230 48.2928 76 } 0.8536 11.7324 43.3121 -Courier_New.ttf 64 j 18.4230 48.2928 77 , 28.6507 11.5597 17.2297 -Courier_New.ttf 64 j 18.4230 48.2928 78 I 3.5136 22.0860 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 79 ° -5.0893 15.7638 15.7638 -Courier_New.ttf 64 j 18.4230 48.2928 80 K 3.2902 31.2297 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 81 H 3.7875 28.4333 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 82 q 11.6045 29.1932 36.6565 -Courier_New.ttf 64 j 18.4230 48.2928 83 & 6.6484 21.9800 31.2070 -Courier_New.ttf 64 j 18.4230 48.2928 84 ’ 1.3758 12.7529 17.2297 -Courier_New.ttf 64 j 18.4230 48.2928 85 [ 0.9661 9.5998 43.1932 -Courier_New.ttf 64 j 18.4230 48.2928 86 - 18.8911 24.8892 3.2297 -Courier_New.ttf 64 j 18.4230 48.2928 87 Y 3.6221 29.3410 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 88 Q 3.3251 30.3865 40.7840 -Courier_New.ttf 64 j 18.4230 48.2928 89 " 1.4042 19.6995 16.0365 -Courier_New.ttf 64 j 18.4230 48.2928 90 ! 1.4941 6.4594 36.5505 -Courier_New.ttf 64 j 18.4230 48.2928 91 x 11.9432 29.1932 25.2097 -Courier_New.ttf 64 j 18.4230 48.2928 92 ) 1.4002 8.4065 43.1932 -Courier_New.ttf 64 j 18.4230 48.2928 93 = 14.9631 29.1932 11.3097 -Courier_New.ttf 64 j 18.4230 48.2928 94 + 6.1979 26.8590 29.2455 -Courier_New.ttf 64 j 18.4230 48.2928 95 X 3.8579 30.9092 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 96 » 11.6849 29.5432 26.8068 -Courier_New.ttf 64 j 18.4230 48.2928 97 ' 1.4237 7.9027 17.2297 -Courier_New.ttf 64 j 18.4230 48.2928 98 ¢ -0.9070 20.7867 38.0998 -Courier_New.ttf 64 j 18.4230 48.2928 99 Z 3.6061 23.0959 33.5935 -Courier_New.ttf 64 j 18.4230 48.2928 100 > 4.8411 28.0000 31.5797 -Courier_New.ttf 64 j 18.4230 48.2928 101 ® 2.8141 34.7867 35.0594 -Courier_New.ttf 64 j 18.4230 48.2928 102 © 2.9653 35.0594 34.7867 -Courier_New.ttf 64 j 18.4230 48.2928 103 ] 1.2203 9.5998 43.1932 -Courier_New.ttf 64 j 18.4230 48.2928 104 é -0.3250 27.4295 38.4203 -Courier_New.ttf 64 j 18.4230 48.2928 105 z 12.0044 23.7959 25.2097 -Courier_New.ttf 64 j 18.4230 48.2928 106 _ 51.3025 35.0594 2.3865 -Courier_New.ttf 64 j 18.4230 48.2928 107 ¥ 3.7791 29.6744 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 1 t 1.9614 26.2362 34.6034 -Courier_New.ttf 65 ( 8.4065 43.1932 2 h -0.2248 29.6326 35.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 3 a 10.1706 26.9256 26.1840 -Courier_New.ttf 65 ( 8.4065 43.1932 4 n 10.2471 29.2061 25.6135 -Courier_New.ttf 65 ( 8.4065 43.1932 5 P 2.5548 26.0529 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 6 o 10.4931 26.8068 26.1840 -Courier_New.ttf 65 ( 8.4065 43.1932 7 e 10.6180 27.4295 26.1840 -Courier_New.ttf 65 ( 8.4065 43.1932 8 : 10.5181 8.6565 25.7802 -Courier_New.ttf 65 ( 8.4065 43.1932 9 r 10.2371 26.8295 25.6135 -Courier_New.ttf 65 ( 8.4065 43.1932 10 l 0.0756 24.4725 35.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 11 i -1.2956 24.4725 37.2498 -Courier_New.ttf 65 ( 8.4065 43.1932 12 1 -1.5880 22.8527 37.5770 -Courier_New.ttf 65 ( 8.4065 43.1932 13 | 0.4161 2.3865 43.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 14 N 2.3351 31.3964 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 15 f -0.0051 25.4696 35.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 16 g 10.3533 27.8462 36.6565 -Courier_New.ttf 65 ( 8.4065 43.1932 17 d -0.0500 30.1138 36.5505 -Courier_New.ttf 65 ( 8.4065 43.1932 18 W 2.2410 32.5836 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 19 s 10.2950 23.0959 26.1840 -Courier_New.ttf 65 ( 8.4065 43.1932 20 c 10.2807 26.6529 26.1840 -Courier_New.ttf 65 ( 8.4065 43.1932 21 u 10.8945 29.6326 25.7802 -Courier_New.ttf 65 ( 8.4065 43.1932 22 3 -0.5358 23.6959 36.7876 -Courier_New.ttf 65 ( 8.4065 43.1932 23 ~ 14.8334 24.8892 8.5732 -Courier_New.ttf 65 ( 8.4065 43.1932 24 # -2.0128 25.0657 42.1962 -Courier_New.ttf 65 ( 8.4065 43.1932 25 O 2.1879 29.1932 34.4140 -Courier_New.ttf 65 ( 8.4065 43.1932 26 ` -1.7648 9.8498 8.6565 -Courier_New.ttf 65 ( 8.4065 43.1932 27 @ -1.4517 22.0800 40.4029 -Courier_New.ttf 65 ( 8.4065 43.1932 28 F 2.1752 27.3234 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 29 S 2.2139 24.5392 34.4140 -Courier_New.ttf 65 ( 8.4065 43.1932 30 p 9.9995 29.8826 36.6565 -Courier_New.ttf 65 ( 8.4065 43.1932 31 “ -0.2418 24.6392 15.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 32 % 0.2371 24.3664 36.5505 -Courier_New.ttf 65 ( 8.4065 43.1932 33 £ 2.1319 26.2840 33.8435 -Courier_New.ttf 65 ( 8.4065 43.1932 34 . 28.4550 8.8232 7.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 35 2 -0.0377 23.1732 36.3838 -Courier_New.ttf 65 ( 8.4065 43.1932 36 5 0.0255 23.7437 36.3838 -Courier_New.ttf 65 ( 8.4065 43.1932 37 m 10.4560 35.1594 25.6135 -Courier_New.ttf 65 ( 8.4065 43.1932 38 V 2.6609 35.1140 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 39 6 -0.5006 23.7959 36.7876 -Courier_New.ttf 65 ( 8.4065 43.1932 40 w 10.6681 32.7502 25.2097 -Courier_New.ttf 65 ( 8.4065 43.1932 41 T 2.5127 26.8590 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 42 M 2.2071 34.5367 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 43 G 1.8042 29.5621 34.4140 -Courier_New.ttf 65 ( 8.4065 43.1932 44 b 0.0326 29.8826 36.5505 -Courier_New.ttf 65 ( 8.4065 43.1932 45 9 -0.3324 22.4193 36.7876 -Courier_New.ttf 65 ( 8.4065 43.1932 46 ; 10.9700 12.8068 30.9570 -Courier_New.ttf 65 ( 8.4065 43.1932 47 D 2.1030 28.4394 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 48 L 2.2214 28.2727 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 49 y 10.7925 29.3121 36.2527 -Courier_New.ttf 65 ( 8.4065 43.1932 50 ‘ -0.2183 12.7529 17.2297 -Courier_New.ttf 65 ( 8.4065 43.1932 51 \ -3.1548 24.6392 44.3865 -Courier_New.ttf 65 ( 8.4065 43.1932 52 R 2.5849 30.7070 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 53 < 3.9873 28.0000 31.5797 -Courier_New.ttf 65 ( 8.4065 43.1932 54 4 0.0742 22.3232 35.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 55 8 -0.2509 21.3094 36.7876 -Courier_New.ttf 65 ( 8.4065 43.1932 56 0 -0.6546 23.6959 36.7876 -Courier_New.ttf 65 ( 8.4065 43.1932 57 A 2.2571 37.1505 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 58 E 2.5020 27.3234 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 59 B 2.2883 28.4167 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 60 v 10.8000 32.1252 25.2097 -Courier_New.ttf 65 ( 8.4065 43.1932 61 k -0.0786 26.6529 35.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 62 J 2.2381 28.6766 34.1640 -Courier_New.ttf 65 ( 8.4065 43.1932 63 U 2.4964 31.3964 34.1640 -Courier_New.ttf 65 ( 8.4065 43.1932 64 j -1.3185 18.4230 48.2928 -Courier_New.ttf 65 ( 8.4065 43.1932 65 ( 0.1516 8.4065 43.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 66 7 -0.2728 22.0027 35.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 67 § 0.0573 27.1696 39.8097 -Courier_New.ttf 65 ( 8.4065 43.1932 68 $ -3.0371 21.8261 44.3865 -Courier_New.ttf 65 ( 8.4065 43.1932 69 € 2.0743 31.2297 34.4140 -Courier_New.ttf 65 ( 8.4065 43.1932 70 / -4.1066 24.6392 44.3865 -Courier_New.ttf 65 ( 8.4065 43.1932 71 C 2.1509 28.2727 34.4140 -Courier_New.ttf 65 ( 8.4065 43.1932 72 * -0.0097 22.0860 21.9800 -Courier_New.ttf 65 ( 8.4065 43.1932 73 ” -0.0330 24.6392 15.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 74 ? 1.4967 21.0594 34.9406 -Courier_New.ttf 65 ( 8.4065 43.1932 75 { -0.1096 11.7324 43.3121 -Courier_New.ttf 65 ( 8.4065 43.1932 76 } -0.1213 11.7324 43.3121 -Courier_New.ttf 65 ( 8.4065 43.1932 77 , 27.3284 11.5597 17.2297 -Courier_New.ttf 65 ( 8.4065 43.1932 78 I 2.3660 22.0860 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 79 ° -6.0542 15.7638 15.7638 -Courier_New.ttf 65 ( 8.4065 43.1932 80 K 2.3021 31.2297 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 81 H 2.5509 28.4333 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 82 q 10.5990 29.1932 36.6565 -Courier_New.ttf 65 ( 8.4065 43.1932 83 & 5.3610 21.9800 31.2070 -Courier_New.ttf 65 ( 8.4065 43.1932 84 ’ 0.3288 12.7529 17.2297 -Courier_New.ttf 65 ( 8.4065 43.1932 85 [ -0.0304 9.5998 43.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 86 - 17.6455 24.8892 3.2297 -Courier_New.ttf 65 ( 8.4065 43.1932 87 Y 2.3473 29.3410 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 88 Q 2.1948 30.3865 40.7840 -Courier_New.ttf 65 ( 8.4065 43.1932 89 " -0.0246 19.6995 16.0365 -Courier_New.ttf 65 ( 8.4065 43.1932 90 ! -0.1228 6.4594 36.5505 -Courier_New.ttf 65 ( 8.4065 43.1932 91 x 10.9431 29.1932 25.2097 -Courier_New.ttf 65 ( 8.4065 43.1932 92 ) -0.2016 8.4065 43.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 93 = 13.2405 29.1932 11.3097 -Courier_New.ttf 65 ( 8.4065 43.1932 94 + 4.9257 26.8590 29.2455 -Courier_New.ttf 65 ( 8.4065 43.1932 95 X 2.4037 30.9092 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 96 » 10.6130 28.7766 26.8068 -Courier_New.ttf 65 ( 8.4065 43.1932 97 ' 0.0786 7.9027 17.2297 -Courier_New.ttf 65 ( 8.4065 43.1932 98 ¢ -2.2665 20.7867 38.0998 -Courier_New.ttf 65 ( 8.4065 43.1932 99 Z 2.5510 23.0959 33.5935 -Courier_New.ttf 65 ( 8.4065 43.1932 100 > 3.7201 28.0000 31.5797 -Courier_New.ttf 65 ( 8.4065 43.1932 101 ® 1.4646 34.7867 35.0594 -Courier_New.ttf 65 ( 8.4065 43.1932 102 © 1.6077 35.0594 34.7867 -Courier_New.ttf 65 ( 8.4065 43.1932 103 ] -0.1177 9.5998 43.1932 -Courier_New.ttf 65 ( 8.4065 43.1932 104 é -1.9426 27.4295 38.4203 -Courier_New.ttf 65 ( 8.4065 43.1932 105 z 10.8151 23.7959 25.2097 -Courier_New.ttf 65 ( 8.4065 43.1932 106 _ 49.9846 35.0594 2.3865 -Courier_New.ttf 65 ( 8.4065 43.1932 107 ¥ 2.5516 29.6744 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 1 t 2.0330 26.2362 34.6034 -Courier_New.ttf 66 7 22.0027 35.9800 2 h -0.1900 29.6326 35.9800 -Courier_New.ttf 66 7 22.0027 35.9800 3 a 10.3769 26.9256 26.1840 -Courier_New.ttf 66 7 22.0027 35.9800 4 n 10.5922 29.2061 25.6135 -Courier_New.ttf 66 7 22.0027 35.9800 5 P 2.7275 26.0529 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 6 o 10.5379 26.8068 26.1840 -Courier_New.ttf 66 7 22.0027 35.9800 7 e 10.3541 27.4295 26.1840 -Courier_New.ttf 66 7 22.0027 35.9800 8 : 10.8816 8.6565 25.7802 -Courier_New.ttf 66 7 22.0027 35.9800 9 r 10.5420 26.8295 25.6135 -Courier_New.ttf 66 7 22.0027 35.9800 10 l -0.0357 24.4725 35.9800 -Courier_New.ttf 66 7 22.0027 35.9800 11 i -1.1169 24.4725 37.2498 -Courier_New.ttf 66 7 22.0027 35.9800 12 1 -1.4028 22.8527 37.5770 -Courier_New.ttf 66 7 22.0027 35.9800 13 | -0.1626 2.3865 43.1932 -Courier_New.ttf 66 7 22.0027 35.9800 14 N 2.5625 31.3964 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 15 f 0.2399 25.4696 35.9800 -Courier_New.ttf 66 7 22.0027 35.9800 16 g 10.4917 27.8462 36.6565 -Courier_New.ttf 66 7 22.0027 35.9800 17 d -0.1158 30.1138 36.5505 -Courier_New.ttf 66 7 22.0027 35.9800 18 W 2.2860 32.5836 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 19 s 10.6218 23.0959 26.1840 -Courier_New.ttf 66 7 22.0027 35.9800 20 c 10.2237 26.6529 26.1840 -Courier_New.ttf 66 7 22.0027 35.9800 21 u 10.5307 29.6326 25.7802 -Courier_New.ttf 66 7 22.0027 35.9800 22 3 -0.3766 23.6959 36.7876 -Courier_New.ttf 66 7 22.0027 35.9800 23 ~ 14.8561 24.8892 8.5732 -Courier_New.ttf 66 7 22.0027 35.9800 24 # -2.4865 25.0657 42.1962 -Courier_New.ttf 66 7 22.0027 35.9800 25 O 1.9623 29.1932 34.4140 -Courier_New.ttf 66 7 22.0027 35.9800 26 ` -1.8929 9.8498 8.6565 -Courier_New.ttf 66 7 22.0027 35.9800 27 @ -1.4535 22.0800 40.4029 -Courier_New.ttf 66 7 22.0027 35.9800 28 F 2.3234 27.3234 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 29 S 2.3080 24.5392 34.4140 -Courier_New.ttf 66 7 22.0027 35.9800 30 p 10.1930 29.8826 36.6565 -Courier_New.ttf 66 7 22.0027 35.9800 31 “ -0.2954 24.6392 15.1932 -Courier_New.ttf 66 7 22.0027 35.9800 32 % -0.2045 24.3664 36.5505 -Courier_New.ttf 66 7 22.0027 35.9800 33 £ 2.1091 26.2840 33.8435 -Courier_New.ttf 66 7 22.0027 35.9800 34 . 28.6418 8.8232 7.9800 -Courier_New.ttf 66 7 22.0027 35.9800 35 2 -0.4727 23.1732 36.3838 -Courier_New.ttf 66 7 22.0027 35.9800 36 5 0.0637 23.7437 36.3838 -Courier_New.ttf 66 7 22.0027 35.9800 37 m 10.5049 35.1594 25.6135 -Courier_New.ttf 66 7 22.0027 35.9800 38 V 2.4787 35.1140 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 39 6 -0.5820 23.7959 36.7876 -Courier_New.ttf 66 7 22.0027 35.9800 40 w 10.6528 32.7502 25.2097 -Courier_New.ttf 66 7 22.0027 35.9800 41 T 2.4787 26.8590 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 42 M 2.6491 34.5367 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 43 G 1.9734 29.5621 34.4140 -Courier_New.ttf 66 7 22.0027 35.9800 44 b 0.1942 29.8826 36.5505 -Courier_New.ttf 66 7 22.0027 35.9800 45 9 0.0037 22.4193 36.7876 -Courier_New.ttf 66 7 22.0027 35.9800 46 ; 10.6701 12.8068 30.9570 -Courier_New.ttf 66 7 22.0027 35.9800 47 D 2.3824 28.4394 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 48 L 2.3865 28.2727 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 49 y 10.6733 29.3121 36.2527 -Courier_New.ttf 66 7 22.0027 35.9800 50 ‘ 0.1998 12.7529 17.2297 -Courier_New.ttf 66 7 22.0027 35.9800 51 \ -3.1268 24.6392 44.3865 -Courier_New.ttf 66 7 22.0027 35.9800 52 R 2.3516 30.7070 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 53 < 3.6057 28.0000 31.5797 -Courier_New.ttf 66 7 22.0027 35.9800 54 4 0.1788 22.3232 35.9800 -Courier_New.ttf 66 7 22.0027 35.9800 55 8 -0.4038 21.3094 36.7876 -Courier_New.ttf 66 7 22.0027 35.9800 56 0 -0.3100 23.6959 36.7876 -Courier_New.ttf 66 7 22.0027 35.9800 57 A 2.4819 37.1505 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 58 E 2.5723 27.3234 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 59 B 2.4365 28.4167 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 60 v 10.7703 32.1252 25.2097 -Courier_New.ttf 66 7 22.0027 35.9800 61 k 0.0073 26.6529 35.9800 -Courier_New.ttf 66 7 22.0027 35.9800 62 J 2.4806 28.6766 34.1640 -Courier_New.ttf 66 7 22.0027 35.9800 63 U 2.3948 31.3964 34.1640 -Courier_New.ttf 66 7 22.0027 35.9800 64 j -1.2726 18.4230 48.2928 -Courier_New.ttf 66 7 22.0027 35.9800 65 ( -0.1321 8.4065 43.1932 -Courier_New.ttf 66 7 22.0027 35.9800 66 7 -0.0204 22.0027 35.9800 -Courier_New.ttf 66 7 22.0027 35.9800 67 § -0.0714 27.1696 39.8097 -Courier_New.ttf 66 7 22.0027 35.9800 68 $ -3.2639 21.8261 44.3865 -Courier_New.ttf 66 7 22.0027 35.9800 69 € 2.2273 31.2297 34.4140 -Courier_New.ttf 66 7 22.0027 35.9800 70 / -3.7737 24.6392 44.3865 -Courier_New.ttf 66 7 22.0027 35.9800 71 C 2.4561 28.2727 34.4140 -Courier_New.ttf 66 7 22.0027 35.9800 72 * 0.1443 22.0860 21.9800 -Courier_New.ttf 66 7 22.0027 35.9800 73 ” 0.1508 24.6392 15.1932 -Courier_New.ttf 66 7 22.0027 35.9800 74 ? 1.4041 21.0594 34.9406 -Courier_New.ttf 66 7 22.0027 35.9800 75 { -0.4880 11.7324 43.3121 -Courier_New.ttf 66 7 22.0027 35.9800 76 } -0.4288 11.7324 43.3121 -Courier_New.ttf 66 7 22.0027 35.9800 77 , 27.3458 11.5597 17.2297 -Courier_New.ttf 66 7 22.0027 35.9800 78 I 2.5833 22.0860 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 79 ° -6.4442 15.7638 15.7638 -Courier_New.ttf 66 7 22.0027 35.9800 80 K 2.4806 31.2297 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 81 H 2.3378 28.4333 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 82 q 10.2664 29.1932 36.6565 -Courier_New.ttf 66 7 22.0027 35.9800 83 & 5.3980 21.9800 31.2070 -Courier_New.ttf 66 7 22.0027 35.9800 84 ’ 0.0871 12.7529 17.2297 -Courier_New.ttf 66 7 22.0027 35.9800 85 [ 0.1294 9.5998 43.1932 -Courier_New.ttf 66 7 22.0027 35.9800 86 - 17.4885 24.8892 3.2297 -Courier_New.ttf 66 7 22.0027 35.9800 87 Y 2.5666 29.3410 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 88 Q 2.1162 30.3865 40.7840 -Courier_New.ttf 66 7 22.0027 35.9800 89 " 0.1871 19.6995 16.0365 -Courier_New.ttf 66 7 22.0027 35.9800 90 ! 0.1716 6.4594 36.5505 -Courier_New.ttf 66 7 22.0027 35.9800 91 x 10.8445 29.1932 25.2097 -Courier_New.ttf 66 7 22.0027 35.9800 92 ) 0.0917 8.4065 43.1932 -Courier_New.ttf 66 7 22.0027 35.9800 93 = 13.2669 29.1932 11.3097 -Courier_New.ttf 66 7 22.0027 35.9800 94 + 4.9740 26.8590 29.2455 -Courier_New.ttf 66 7 22.0027 35.9800 95 X 2.3833 30.9092 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 96 » 10.5180 28.7766 26.8068 -Courier_New.ttf 66 7 22.0027 35.9800 97 ' 0.2381 7.9027 17.2297 -Courier_New.ttf 66 7 22.0027 35.9800 98 ¢ -2.1415 20.7867 38.0998 -Courier_New.ttf 66 7 22.0027 35.9800 99 Z 2.4105 23.0959 33.5935 -Courier_New.ttf 66 7 22.0027 35.9800 100 > 3.7963 28.0000 31.5797 -Courier_New.ttf 66 7 22.0027 35.9800 101 ® 1.5643 34.7867 35.0594 -Courier_New.ttf 66 7 22.0027 35.9800 102 © 1.6857 35.0594 34.7867 -Courier_New.ttf 66 7 22.0027 35.9800 103 ] -0.2171 9.5998 43.1932 -Courier_New.ttf 66 7 22.0027 35.9800 104 é -1.7484 27.4295 38.4203 -Courier_New.ttf 66 7 22.0027 35.9800 105 z 10.9834 23.7959 25.2097 -Courier_New.ttf 66 7 22.0027 35.9800 106 _ 49.9818 35.0594 2.3865 -Courier_New.ttf 66 7 22.0027 35.9800 107 ¥ 2.3383 29.6744 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 1 t 1.9516 26.2362 34.6034 -Courier_New.ttf 67 § 27.1696 39.8097 2 h 0.0473 29.6326 35.9800 -Courier_New.ttf 67 § 27.1696 39.8097 3 a 10.3710 26.9256 26.1840 -Courier_New.ttf 67 § 27.1696 39.8097 4 n 10.0837 29.2061 25.6135 -Courier_New.ttf 67 § 27.1696 39.8097 5 P 2.4935 26.0529 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 6 o 10.3126 26.8068 26.1840 -Courier_New.ttf 67 § 27.1696 39.8097 7 e 10.2611 27.4295 26.1840 -Courier_New.ttf 67 § 27.1696 39.8097 8 : 10.9648 8.6565 25.7802 -Courier_New.ttf 67 § 27.1696 39.8097 9 r 10.5353 26.8295 25.6135 -Courier_New.ttf 67 § 27.1696 39.8097 10 l 0.0060 24.4725 35.9800 -Courier_New.ttf 67 § 27.1696 39.8097 11 i -1.4153 24.4725 37.2498 -Courier_New.ttf 67 § 27.1696 39.8097 12 1 -1.4507 22.8527 37.5770 -Courier_New.ttf 67 § 27.1696 39.8097 13 | -0.3312 2.3865 43.1932 -Courier_New.ttf 67 § 27.1696 39.8097 14 N 2.6205 31.3964 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 15 f -0.0052 25.4696 35.9800 -Courier_New.ttf 67 § 27.1696 39.8097 16 g 10.0273 27.8462 36.6565 -Courier_New.ttf 67 § 27.1696 39.8097 17 d -0.1032 30.1138 36.5505 -Courier_New.ttf 67 § 27.1696 39.8097 18 W 2.3077 32.5836 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 19 s 10.8567 23.0959 26.1840 -Courier_New.ttf 67 § 27.1696 39.8097 20 c 10.2488 26.6529 26.1840 -Courier_New.ttf 67 § 27.1696 39.8097 21 u 10.7532 29.6326 25.7802 -Courier_New.ttf 67 § 27.1696 39.8097 22 3 -0.2796 23.6959 36.7876 -Courier_New.ttf 67 § 27.1696 39.8097 23 ~ 14.8632 24.8892 8.5732 -Courier_New.ttf 67 § 27.1696 39.8097 24 # -2.1908 25.0657 42.1962 -Courier_New.ttf 67 § 27.1696 39.8097 25 O 2.1064 29.1932 34.4140 -Courier_New.ttf 67 § 27.1696 39.8097 26 ` -1.8642 9.8498 8.6565 -Courier_New.ttf 67 § 27.1696 39.8097 27 @ -1.2389 22.0800 40.4029 -Courier_New.ttf 67 § 27.1696 39.8097 28 F 2.0344 27.3234 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 29 S 2.0813 24.5392 34.4140 -Courier_New.ttf 67 § 27.1696 39.8097 30 p 10.4536 29.8826 36.6565 -Courier_New.ttf 67 § 27.1696 39.8097 31 “ 0.1151 24.6392 15.1932 -Courier_New.ttf 67 § 27.1696 39.8097 32 % -0.1006 24.3664 36.5505 -Courier_New.ttf 67 § 27.1696 39.8097 33 £ 2.0787 26.2840 33.8435 -Courier_New.ttf 67 § 27.1696 39.8097 34 . 28.6826 8.8232 7.9800 -Courier_New.ttf 67 § 27.1696 39.8097 35 2 -0.5558 23.1732 36.3838 -Courier_New.ttf 67 § 27.1696 39.8097 36 5 -0.2476 23.7437 36.3838 -Courier_New.ttf 67 § 27.1696 39.8097 37 m 10.3867 35.1594 25.6135 -Courier_New.ttf 67 § 27.1696 39.8097 38 V 2.4626 35.1140 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 39 6 -0.3100 23.7959 36.7876 -Courier_New.ttf 67 § 27.1696 39.8097 40 w 10.6771 32.7502 25.2097 -Courier_New.ttf 67 § 27.1696 39.8097 41 T 2.2728 26.8590 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 42 M 2.3267 34.5367 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 43 G 2.0994 29.5621 34.4140 -Courier_New.ttf 67 § 27.1696 39.8097 44 b 0.1385 29.8826 36.5505 -Courier_New.ttf 67 § 27.1696 39.8097 45 9 -0.1745 22.4193 36.7876 -Courier_New.ttf 67 § 27.1696 39.8097 46 ; 10.9205 12.8068 30.9570 -Courier_New.ttf 67 § 27.1696 39.8097 47 D 2.2980 28.4394 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 48 L 2.3605 28.2727 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 49 y 10.5856 29.3121 36.2527 -Courier_New.ttf 67 § 27.1696 39.8097 50 ‘ 0.2875 12.7529 17.2297 -Courier_New.ttf 67 § 27.1696 39.8097 51 \ -3.0983 24.6392 44.3865 -Courier_New.ttf 67 § 27.1696 39.8097 52 R 2.5169 30.7070 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 53 < 3.5818 28.0000 31.5797 -Courier_New.ttf 67 § 27.1696 39.8097 54 4 0.0111 22.3232 35.9800 -Courier_New.ttf 67 § 27.1696 39.8097 55 8 -0.4479 21.3094 36.7876 -Courier_New.ttf 67 § 27.1696 39.8097 56 0 -0.3511 23.6959 36.7876 -Courier_New.ttf 67 § 27.1696 39.8097 57 A 2.2109 37.1505 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 58 E 2.3865 27.3234 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 59 B 2.3270 28.4167 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 60 v 10.7917 32.1252 25.2097 -Courier_New.ttf 67 § 27.1696 39.8097 61 k 0.2508 26.6529 35.9800 -Courier_New.ttf 67 § 27.1696 39.8097 62 J 2.3220 28.6766 34.1640 -Courier_New.ttf 67 § 27.1696 39.8097 63 U 2.2220 31.3964 34.1640 -Courier_New.ttf 67 § 27.1696 39.8097 64 j -1.0259 18.4230 48.2928 -Courier_New.ttf 67 § 27.1696 39.8097 65 ( 0.0889 8.4065 43.1932 -Courier_New.ttf 67 § 27.1696 39.8097 66 7 0.2971 22.0027 35.9800 -Courier_New.ttf 67 § 27.1696 39.8097 67 § 0.1359 27.1696 39.8097 -Courier_New.ttf 67 § 27.1696 39.8097 68 $ -2.8960 21.8261 44.3865 -Courier_New.ttf 67 § 27.1696 39.8097 69 € 2.0938 31.2297 34.4140 -Courier_New.ttf 67 § 27.1696 39.8097 70 / -4.0261 24.6392 44.3865 -Courier_New.ttf 67 § 27.1696 39.8097 71 C 2.2055 28.2727 34.4140 -Courier_New.ttf 67 § 27.1696 39.8097 72 * 0.1911 22.0860 21.9800 -Courier_New.ttf 67 § 27.1696 39.8097 73 ” 0.1690 24.6392 15.1932 -Courier_New.ttf 67 § 27.1696 39.8097 74 ? 1.7234 21.0594 34.9406 -Courier_New.ttf 67 § 27.1696 39.8097 75 { -0.2714 11.7324 43.3121 -Courier_New.ttf 67 § 27.1696 39.8097 76 } -0.2227 11.7324 43.3121 -Courier_New.ttf 67 § 27.1696 39.8097 77 , 27.4536 11.5597 17.2297 -Courier_New.ttf 67 § 27.1696 39.8097 78 I 2.3219 22.0860 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 79 ° -6.5803 15.7638 15.7638 -Courier_New.ttf 67 § 27.1696 39.8097 80 K 2.4040 31.2297 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 81 H 2.4879 28.4333 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 82 q 10.3696 29.1932 36.6565 -Courier_New.ttf 67 § 27.1696 39.8097 83 & 5.3000 21.9800 31.2070 -Courier_New.ttf 67 § 27.1696 39.8097 84 ’ 0.1488 12.7529 17.2297 -Courier_New.ttf 67 § 27.1696 39.8097 85 [ 0.2131 9.5998 43.1932 -Courier_New.ttf 67 § 27.1696 39.8097 86 - 17.4828 24.8892 3.2297 -Courier_New.ttf 67 § 27.1696 39.8097 87 Y 2.5023 29.3410 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 88 Q 2.1305 30.3865 40.7840 -Courier_New.ttf 67 § 27.1696 39.8097 89 " -0.0367 19.6995 16.0365 -Courier_New.ttf 67 § 27.1696 39.8097 90 ! 0.2919 6.4594 36.5505 -Courier_New.ttf 67 § 27.1696 39.8097 91 x 10.6989 29.1932 25.2097 -Courier_New.ttf 67 § 27.1696 39.8097 92 ) -0.4925 8.4065 43.1932 -Courier_New.ttf 67 § 27.1696 39.8097 93 = 13.2475 29.1932 11.3097 -Courier_New.ttf 67 § 27.1696 39.8097 94 + 4.9291 26.8590 29.2455 -Courier_New.ttf 67 § 27.1696 39.8097 95 X 2.4526 30.9092 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 96 » 10.4463 28.7766 26.8068 -Courier_New.ttf 67 § 27.1696 39.8097 97 ' -0.0338 7.9027 17.2297 -Courier_New.ttf 67 § 27.1696 39.8097 98 ¢ -1.9712 20.7867 38.0998 -Courier_New.ttf 67 § 27.1696 39.8097 99 Z 2.5002 23.0959 33.5935 -Courier_New.ttf 67 § 27.1696 39.8097 100 > 3.6596 28.0000 31.5797 -Courier_New.ttf 67 § 27.1696 39.8097 101 ® 1.2878 34.7867 35.0594 -Courier_New.ttf 67 § 27.1696 39.8097 102 © 1.9358 35.0594 34.7867 -Courier_New.ttf 67 § 27.1696 39.8097 103 ] -0.0397 9.5998 43.1932 -Courier_New.ttf 67 § 27.1696 39.8097 104 é -1.8093 27.4295 38.4203 -Courier_New.ttf 67 § 27.1696 39.8097 105 z 10.7300 23.7959 25.2097 -Courier_New.ttf 67 § 27.1696 39.8097 106 _ 50.0692 35.0594 2.3865 -Courier_New.ttf 67 § 27.1696 39.8097 107 ¥ 2.3808 29.6744 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 1 t 5.2811 26.2362 34.6034 -Courier_New.ttf 68 $ 21.8261 44.3865 2 h 3.1515 29.6326 35.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 3 a 13.3140 26.9256 26.1840 -Courier_New.ttf 68 $ 21.8261 44.3865 4 n 13.4139 29.2061 25.6135 -Courier_New.ttf 68 $ 21.8261 44.3865 5 P 5.7791 26.0529 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 6 o 13.3313 26.8068 26.1840 -Courier_New.ttf 68 $ 21.8261 44.3865 7 e 13.4317 27.4295 26.1840 -Courier_New.ttf 68 $ 21.8261 44.3865 8 : 13.6496 8.6565 25.7802 -Courier_New.ttf 68 $ 21.8261 44.3865 9 r 13.3424 26.8295 25.6135 -Courier_New.ttf 68 $ 21.8261 44.3865 10 l 2.9778 24.4725 35.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 11 i 1.7374 24.4725 37.2498 -Courier_New.ttf 68 $ 21.8261 44.3865 12 1 1.6114 22.8527 37.5770 -Courier_New.ttf 68 $ 21.8261 44.3865 13 | 2.9703 2.3865 43.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 14 N 5.0269 31.3964 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 15 f 2.9445 25.4696 35.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 16 g 13.3489 27.8462 36.6565 -Courier_New.ttf 68 $ 21.8261 44.3865 17 d 2.9004 30.1138 36.5505 -Courier_New.ttf 68 $ 21.8261 44.3865 18 W 5.3481 32.5836 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 19 s 13.2906 23.0959 26.1840 -Courier_New.ttf 68 $ 21.8261 44.3865 20 c 13.1694 26.6529 26.1840 -Courier_New.ttf 68 $ 21.8261 44.3865 21 u 13.7806 29.6326 25.7802 -Courier_New.ttf 68 $ 21.8261 44.3865 22 3 2.7431 23.6959 36.7876 -Courier_New.ttf 68 $ 21.8261 44.3865 23 ~ 18.0728 24.8892 8.5732 -Courier_New.ttf 68 $ 21.8261 44.3865 24 # 0.4820 25.0657 42.1962 -Courier_New.ttf 68 $ 21.8261 44.3865 25 O 5.4716 29.1932 34.4140 -Courier_New.ttf 68 $ 21.8261 44.3865 26 ` 1.3713 9.8498 8.6565 -Courier_New.ttf 68 $ 21.8261 44.3865 27 @ 1.9996 22.0800 40.4029 -Courier_New.ttf 68 $ 21.8261 44.3865 28 F 5.2612 27.3234 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 29 S 5.1449 24.5392 34.4140 -Courier_New.ttf 68 $ 21.8261 44.3865 30 p 13.5841 29.8826 36.6565 -Courier_New.ttf 68 $ 21.8261 44.3865 31 “ 3.1585 24.6392 15.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 32 % 3.3226 24.3664 36.5505 -Courier_New.ttf 68 $ 21.8261 44.3865 33 £ 5.3783 26.2840 33.8435 -Courier_New.ttf 68 $ 21.8261 44.3865 34 . 31.4384 8.8232 7.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 35 2 2.3272 23.1732 36.3838 -Courier_New.ttf 68 $ 21.8261 44.3865 36 5 3.0520 23.7437 36.3838 -Courier_New.ttf 68 $ 21.8261 44.3865 37 m 13.5537 35.1594 25.6135 -Courier_New.ttf 68 $ 21.8261 44.3865 38 V 5.2467 35.1140 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 39 6 2.6138 23.7959 36.7876 -Courier_New.ttf 68 $ 21.8261 44.3865 40 w 13.9113 32.7502 25.2097 -Courier_New.ttf 68 $ 21.8261 44.3865 41 T 5.4366 26.8590 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 42 M 5.1960 34.5367 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 43 G 5.6278 29.5621 34.4140 -Courier_New.ttf 68 $ 21.8261 44.3865 44 b 3.2628 29.8826 36.5505 -Courier_New.ttf 68 $ 21.8261 44.3865 45 9 2.4052 22.4193 36.7876 -Courier_New.ttf 68 $ 21.8261 44.3865 46 ; 13.5650 12.8068 30.9570 -Courier_New.ttf 68 $ 21.8261 44.3865 47 D 5.5105 28.4394 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 48 L 5.5832 28.2727 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 49 y 13.6105 29.3121 36.2527 -Courier_New.ttf 68 $ 21.8261 44.3865 50 ‘ 3.0346 12.7529 17.2297 -Courier_New.ttf 68 $ 21.8261 44.3865 51 \ -0.1842 24.6392 44.3865 -Courier_New.ttf 68 $ 21.8261 44.3865 52 R 5.7619 30.7070 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 53 < 6.5270 28.0000 31.5797 -Courier_New.ttf 68 $ 21.8261 44.3865 54 4 3.1515 22.3232 35.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 55 8 2.5422 21.3094 36.7876 -Courier_New.ttf 68 $ 21.8261 44.3865 56 0 2.6791 23.6959 36.7876 -Courier_New.ttf 68 $ 21.8261 44.3865 57 A 5.1525 37.1505 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 58 E 5.3943 27.3234 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 59 B 5.3754 28.4167 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 60 v 13.5758 32.1252 25.2097 -Courier_New.ttf 68 $ 21.8261 44.3865 61 k 3.2331 26.6529 35.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 62 J 5.6154 28.6766 34.1640 -Courier_New.ttf 68 $ 21.8261 44.3865 63 U 5.3073 31.3964 34.1640 -Courier_New.ttf 68 $ 21.8261 44.3865 64 j 1.6634 18.4230 48.2928 -Courier_New.ttf 68 $ 21.8261 44.3865 65 ( 3.0928 8.4065 43.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 66 7 3.0084 22.0027 35.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 67 § 2.7314 27.1696 39.8097 -Courier_New.ttf 68 $ 21.8261 44.3865 68 $ -0.4656 21.8261 44.3865 -Courier_New.ttf 68 $ 21.8261 44.3865 69 € 5.3000 31.2297 34.4140 -Courier_New.ttf 68 $ 21.8261 44.3865 70 / -0.5463 24.6392 44.3865 -Courier_New.ttf 68 $ 21.8261 44.3865 71 C 5.2055 28.2727 34.4140 -Courier_New.ttf 68 $ 21.8261 44.3865 72 * 3.1634 22.0860 21.9800 -Courier_New.ttf 68 $ 21.8261 44.3865 73 ” 2.7347 24.6392 15.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 74 ? 4.8130 21.0594 34.9406 -Courier_New.ttf 68 $ 21.8261 44.3865 75 { 2.7203 11.7324 43.3121 -Courier_New.ttf 68 $ 21.8261 44.3865 76 } 2.3454 11.7324 43.3121 -Courier_New.ttf 68 $ 21.8261 44.3865 77 , 30.3222 11.5597 17.2297 -Courier_New.ttf 68 $ 21.8261 44.3865 78 I 5.5464 22.0860 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 79 ° -3.2314 15.7638 15.7638 -Courier_New.ttf 68 $ 21.8261 44.3865 80 K 5.1019 31.2297 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 81 H 5.5118 28.4333 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 82 q 13.7113 29.1932 36.6565 -Courier_New.ttf 68 $ 21.8261 44.3865 83 & 8.5067 21.9800 31.2070 -Courier_New.ttf 68 $ 21.8261 44.3865 84 ’ 3.1502 12.7529 17.2297 -Courier_New.ttf 68 $ 21.8261 44.3865 85 [ 3.1581 9.5998 43.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 86 - 20.8456 24.8892 3.2297 -Courier_New.ttf 68 $ 21.8261 44.3865 87 Y 5.5023 29.3410 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 88 Q 5.0039 30.3865 40.7840 -Courier_New.ttf 68 $ 21.8261 44.3865 89 " 3.2754 19.6995 16.0365 -Courier_New.ttf 68 $ 21.8261 44.3865 90 ! 3.0848 6.4594 36.5505 -Courier_New.ttf 68 $ 21.8261 44.3865 91 x 13.7438 29.1932 25.2097 -Courier_New.ttf 68 $ 21.8261 44.3865 92 ) 2.9375 8.4065 43.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 93 = 16.6162 29.1932 11.3097 -Courier_New.ttf 68 $ 21.8261 44.3865 94 + 8.0175 26.8590 29.2455 -Courier_New.ttf 68 $ 21.8261 44.3865 95 X 5.2767 30.9092 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 96 » 13.4292 28.7766 26.8068 -Courier_New.ttf 68 $ 21.8261 44.3865 97 ' 2.8407 7.9027 17.2297 -Courier_New.ttf 68 $ 21.8261 44.3865 98 ¢ 0.8900 20.7867 38.0998 -Courier_New.ttf 68 $ 21.8261 44.3865 99 Z 5.3611 23.0959 33.5935 -Courier_New.ttf 68 $ 21.8261 44.3865 100 > 6.5922 28.0000 31.5797 -Courier_New.ttf 68 $ 21.8261 44.3865 101 ® 4.6914 34.7867 35.0594 -Courier_New.ttf 68 $ 21.8261 44.3865 102 © 4.9115 35.0594 34.7867 -Courier_New.ttf 68 $ 21.8261 44.3865 103 ] 2.8864 9.5998 43.1932 -Courier_New.ttf 68 $ 21.8261 44.3865 104 é 1.3305 27.4295 38.4203 -Courier_New.ttf 68 $ 21.8261 44.3865 105 z 13.8481 23.7959 25.2097 -Courier_New.ttf 68 $ 21.8261 44.3865 106 _ 52.9448 35.0594 2.3865 -Courier_New.ttf 68 $ 21.8261 44.3865 107 ¥ 5.5352 29.6744 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 1 t -0.4552 26.2362 34.6034 -Courier_New.ttf 69 € 31.2297 34.4140 2 h -2.1436 29.6326 35.9800 -Courier_New.ttf 69 € 31.2297 34.4140 3 a 8.2285 26.9256 26.1840 -Courier_New.ttf 69 € 31.2297 34.4140 4 n 8.1929 29.2061 25.6135 -Courier_New.ttf 69 € 31.2297 34.4140 5 P 0.3462 26.0529 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 6 o 8.1688 26.8068 26.1840 -Courier_New.ttf 69 € 31.2297 34.4140 7 e 8.5452 27.4295 26.1840 -Courier_New.ttf 69 € 31.2297 34.4140 8 : 8.5911 8.6565 25.7802 -Courier_New.ttf 69 € 31.2297 34.4140 9 r 8.1187 26.8295 25.6135 -Courier_New.ttf 69 € 31.2297 34.4140 10 l -2.1403 24.4725 35.9800 -Courier_New.ttf 69 € 31.2297 34.4140 11 i -3.3136 24.4725 37.2498 -Courier_New.ttf 69 € 31.2297 34.4140 12 1 -3.6808 22.8527 37.5770 -Courier_New.ttf 69 € 31.2297 34.4140 13 | -2.0767 2.3865 43.1932 -Courier_New.ttf 69 € 31.2297 34.4140 14 N 0.2917 31.3964 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 15 f -2.1565 25.4696 35.9800 -Courier_New.ttf 69 € 31.2297 34.4140 16 g 8.1687 27.8462 36.6565 -Courier_New.ttf 69 € 31.2297 34.4140 17 d -2.0099 30.1138 36.5505 -Courier_New.ttf 69 € 31.2297 34.4140 18 W 0.5092 32.5836 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 19 s 8.4067 23.0959 26.1840 -Courier_New.ttf 69 € 31.2297 34.4140 20 c 8.4829 26.6529 26.1840 -Courier_New.ttf 69 € 31.2297 34.4140 21 u 8.6083 29.6326 25.7802 -Courier_New.ttf 69 € 31.2297 34.4140 22 3 -2.5318 23.6959 36.7876 -Courier_New.ttf 69 € 31.2297 34.4140 23 ~ 12.9620 24.8892 8.5732 -Courier_New.ttf 69 € 31.2297 34.4140 24 # -4.5075 25.0657 42.1962 -Courier_New.ttf 69 € 31.2297 34.4140 25 O 0.1532 29.1932 34.4140 -Courier_New.ttf 69 € 31.2297 34.4140 26 ` -4.2176 9.8498 8.6565 -Courier_New.ttf 69 € 31.2297 34.4140 27 @ -3.5713 22.0800 40.4029 -Courier_New.ttf 69 € 31.2297 34.4140 28 F 0.3412 27.3234 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 29 S 0.0564 24.5392 34.4140 -Courier_New.ttf 69 € 31.2297 34.4140 30 p 8.1748 29.8826 36.6565 -Courier_New.ttf 69 € 31.2297 34.4140 31 “ -2.2955 24.6392 15.1932 -Courier_New.ttf 69 € 31.2297 34.4140 32 % -2.3205 24.3664 36.5505 -Courier_New.ttf 69 € 31.2297 34.4140 33 £ -0.1288 26.2840 33.8435 -Courier_New.ttf 69 € 31.2297 34.4140 34 . 26.1618 8.8232 7.9800 -Courier_New.ttf 69 € 31.2297 34.4140 35 2 -2.6560 23.1732 36.3838 -Courier_New.ttf 69 € 31.2297 34.4140 36 5 -2.1312 23.7437 36.3838 -Courier_New.ttf 69 € 31.2297 34.4140 37 m 8.4216 35.1594 25.6135 -Courier_New.ttf 69 € 31.2297 34.4140 38 V 0.3644 35.1140 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 39 6 -2.5606 23.7959 36.7876 -Courier_New.ttf 69 € 31.2297 34.4140 40 w 8.6858 32.7502 25.2097 -Courier_New.ttf 69 € 31.2297 34.4140 41 T 0.0685 26.8590 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 42 M 0.2115 34.5367 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 43 G -0.0774 29.5621 34.4140 -Courier_New.ttf 69 € 31.2297 34.4140 44 b -2.1351 29.8826 36.5505 -Courier_New.ttf 69 € 31.2297 34.4140 45 9 -2.5347 22.4193 36.7876 -Courier_New.ttf 69 € 31.2297 34.4140 46 ; 8.7989 12.8068 30.9570 -Courier_New.ttf 69 € 31.2297 34.4140 47 D 0.3571 28.4394 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 48 L 0.3196 28.2727 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 49 y 8.6939 29.3121 36.2527 -Courier_New.ttf 69 € 31.2297 34.4140 50 ‘ -2.0546 12.7529 17.2297 -Courier_New.ttf 69 € 31.2297 34.4140 51 \ -5.2237 24.6392 44.3865 -Courier_New.ttf 69 € 31.2297 34.4140 52 R 0.4291 30.7070 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 53 < 1.4660 28.0000 31.5797 -Courier_New.ttf 69 € 31.2297 34.4140 54 4 -1.9149 22.3232 35.9800 -Courier_New.ttf 69 € 31.2297 34.4140 55 8 -2.6723 21.3094 36.7876 -Courier_New.ttf 69 € 31.2297 34.4140 56 0 -2.8828 23.6959 36.7876 -Courier_New.ttf 69 € 31.2297 34.4140 57 A 0.2994 37.1505 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 58 E 0.0067 27.3234 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 59 B 0.4052 28.4167 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 60 v 8.8316 32.1252 25.2097 -Courier_New.ttf 69 € 31.2297 34.4140 61 k -2.0623 26.6529 35.9800 -Courier_New.ttf 69 € 31.2297 34.4140 62 J 0.1926 28.6766 34.1640 -Courier_New.ttf 69 € 31.2297 34.4140 63 U 0.4321 31.3964 34.1640 -Courier_New.ttf 69 € 31.2297 34.4140 64 j -3.5644 18.4230 48.2928 -Courier_New.ttf 69 € 31.2297 34.4140 65 ( -2.4280 8.4065 43.1932 -Courier_New.ttf 69 € 31.2297 34.4140 66 7 -1.9442 22.0027 35.9800 -Courier_New.ttf 69 € 31.2297 34.4140 67 § -2.2964 27.1696 39.8097 -Courier_New.ttf 69 € 31.2297 34.4140 68 $ -4.7832 21.8261 44.3865 -Courier_New.ttf 69 € 31.2297 34.4140 69 € 0.1144 31.2297 34.4140 -Courier_New.ttf 69 € 31.2297 34.4140 70 / -5.8603 24.6392 44.3865 -Courier_New.ttf 69 € 31.2297 34.4140 71 C 0.1971 28.2727 34.4140 -Courier_New.ttf 69 € 31.2297 34.4140 72 * -2.0894 22.0860 21.9800 -Courier_New.ttf 69 € 31.2297 34.4140 73 ” -1.7968 24.6392 15.1932 -Courier_New.ttf 69 € 31.2297 34.4140 74 ? -0.5147 21.0594 34.9406 -Courier_New.ttf 69 € 31.2297 34.4140 75 { -2.4065 11.7324 43.3121 -Courier_New.ttf 69 € 31.2297 34.4140 76 } -2.4117 11.7324 43.3121 -Courier_New.ttf 69 € 31.2297 34.4140 77 , 25.4706 11.5597 17.2297 -Courier_New.ttf 69 € 31.2297 34.4140 78 I -0.0236 22.0860 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 79 ° -8.6038 15.7638 15.7638 -Courier_New.ttf 69 € 31.2297 34.4140 80 K 0.5827 31.2297 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 81 H 0.4016 28.4333 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 82 q 8.3171 29.1932 36.6565 -Courier_New.ttf 69 € 31.2297 34.4140 83 & 3.4780 21.9800 31.2070 -Courier_New.ttf 69 € 31.2297 34.4140 84 ’ -2.2607 12.7529 17.2297 -Courier_New.ttf 69 € 31.2297 34.4140 85 [ -2.1031 9.5998 43.1932 -Courier_New.ttf 69 € 31.2297 34.4140 86 - 15.2338 24.8892 3.2297 -Courier_New.ttf 69 € 31.2297 34.4140 87 Y 0.2013 29.3410 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 88 Q -0.0845 30.3865 40.7840 -Courier_New.ttf 69 € 31.2297 34.4140 89 " -2.1699 19.6995 16.0365 -Courier_New.ttf 69 € 31.2297 34.4140 90 ! -2.2653 6.4594 36.5505 -Courier_New.ttf 69 € 31.2297 34.4140 91 x 8.7996 29.1932 25.2097 -Courier_New.ttf 69 € 31.2297 34.4140 92 ) -2.1719 8.4065 43.1932 -Courier_New.ttf 69 € 31.2297 34.4140 93 = 11.5080 29.1932 11.3097 -Courier_New.ttf 69 € 31.2297 34.4140 94 + 2.7986 26.8590 29.2455 -Courier_New.ttf 69 € 31.2297 34.4140 95 X 0.2917 30.9092 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 96 » 8.5268 28.7766 26.8068 -Courier_New.ttf 69 € 31.2297 34.4140 97 ' -2.0506 7.9027 17.2297 -Courier_New.ttf 69 € 31.2297 34.4140 98 ¢ -4.1364 20.7867 38.0998 -Courier_New.ttf 69 € 31.2297 34.4140 99 Z 0.3371 23.0959 33.5935 -Courier_New.ttf 69 € 31.2297 34.4140 100 > 1.7031 28.0000 31.5797 -Courier_New.ttf 69 € 31.2297 34.4140 101 ® -0.6325 34.7867 35.0594 -Courier_New.ttf 69 € 31.2297 34.4140 102 © -0.1687 35.0594 34.7867 -Courier_New.ttf 69 € 31.2297 34.4140 103 ] -2.2182 9.5998 43.1932 -Courier_New.ttf 69 € 31.2297 34.4140 104 é -3.9660 27.4295 38.4203 -Courier_New.ttf 69 € 31.2297 34.4140 105 z 8.5725 23.7959 25.2097 -Courier_New.ttf 69 € 31.2297 34.4140 106 _ 47.8278 35.0594 2.3865 -Courier_New.ttf 69 € 31.2297 34.4140 107 ¥ -0.0341 29.6744 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 1 t 5.5801 26.2362 34.6034 -Courier_New.ttf 70 / 24.6392 44.3865 2 h 3.8088 29.6326 35.9800 -Courier_New.ttf 70 / 24.6392 44.3865 3 a 14.2861 26.9256 26.1840 -Courier_New.ttf 70 / 24.6392 44.3865 4 n 14.1000 29.2061 25.6135 -Courier_New.ttf 70 / 24.6392 44.3865 5 P 5.7887 26.0529 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 6 o 14.4484 26.8068 26.1840 -Courier_New.ttf 70 / 24.6392 44.3865 7 e 14.1000 27.4295 26.1840 -Courier_New.ttf 70 / 24.6392 44.3865 8 : 14.5567 8.6565 25.7802 -Courier_New.ttf 70 / 24.6392 44.3865 9 r 14.0375 26.8295 25.6135 -Courier_New.ttf 70 / 24.6392 44.3865 10 l 3.7576 24.4725 35.9800 -Courier_New.ttf 70 / 24.6392 44.3865 11 i 2.5796 24.4725 37.2498 -Courier_New.ttf 70 / 24.6392 44.3865 12 1 2.1549 22.8527 37.5770 -Courier_New.ttf 70 / 24.6392 44.3865 13 | 3.4061 2.3865 43.1932 -Courier_New.ttf 70 / 24.6392 44.3865 14 N 6.1872 31.3964 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 15 f 3.1909 25.4696 35.9800 -Courier_New.ttf 70 / 24.6392 44.3865 16 g 14.1210 27.8462 36.6565 -Courier_New.ttf 70 / 24.6392 44.3865 17 d 3.7738 30.1138 36.5505 -Courier_New.ttf 70 / 24.6392 44.3865 18 W 6.3481 32.5836 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 19 s 14.1032 23.0959 26.1840 -Courier_New.ttf 70 / 24.6392 44.3865 20 c 13.8310 26.6529 26.1840 -Courier_New.ttf 70 / 24.6392 44.3865 21 u 14.5697 29.6326 25.7802 -Courier_New.ttf 70 / 24.6392 44.3865 22 3 3.2840 23.6959 36.7876 -Courier_New.ttf 70 / 24.6392 44.3865 23 ~ 18.6748 24.8892 8.5732 -Courier_New.ttf 70 / 24.6392 44.3865 24 # 1.3723 25.0657 42.1962 -Courier_New.ttf 70 / 24.6392 44.3865 25 O 5.9851 29.1932 34.4140 -Courier_New.ttf 70 / 24.6392 44.3865 26 ` 1.9352 9.8498 8.6565 -Courier_New.ttf 70 / 24.6392 44.3865 27 @ 2.5581 22.0800 40.4029 -Courier_New.ttf 70 / 24.6392 44.3865 28 F 5.8361 27.3234 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 29 S 5.9558 24.5392 34.4140 -Courier_New.ttf 70 / 24.6392 44.3865 30 p 13.9595 29.8826 36.6565 -Courier_New.ttf 70 / 24.6392 44.3865 31 “ 3.5691 24.6392 15.1932 -Courier_New.ttf 70 / 24.6392 44.3865 32 % 3.8409 24.3664 36.5505 -Courier_New.ttf 70 / 24.6392 44.3865 33 £ 6.1072 26.2840 33.8435 -Courier_New.ttf 70 / 24.6392 44.3865 34 . 32.6169 8.8232 7.9800 -Courier_New.ttf 70 / 24.6392 44.3865 35 2 3.3127 23.1732 36.3838 -Courier_New.ttf 70 / 24.6392 44.3865 36 5 3.2862 23.7437 36.3838 -Courier_New.ttf 70 / 24.6392 44.3865 37 m 14.3373 35.1594 25.6135 -Courier_New.ttf 70 / 24.6392 44.3865 38 V 6.0649 35.1140 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 39 6 3.2300 23.7959 36.7876 -Courier_New.ttf 70 / 24.6392 44.3865 40 w 14.7364 32.7502 25.2097 -Courier_New.ttf 70 / 24.6392 44.3865 41 T 6.1913 26.8590 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 42 M 5.7510 34.5367 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 43 G 5.6497 29.5621 34.4140 -Courier_New.ttf 70 / 24.6392 44.3865 44 b 3.9994 29.8826 36.5505 -Courier_New.ttf 70 / 24.6392 44.3865 45 9 3.2353 22.4193 36.7876 -Courier_New.ttf 70 / 24.6392 44.3865 46 ; 14.4774 12.8068 30.9570 -Courier_New.ttf 70 / 24.6392 44.3865 47 D 6.1233 28.4394 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 48 L 6.0284 28.2727 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 49 y 14.3838 29.3121 36.2527 -Courier_New.ttf 70 / 24.6392 44.3865 50 ‘ 3.6971 12.7529 17.2297 -Courier_New.ttf 70 / 24.6392 44.3865 51 \ 0.6818 24.6392 44.3865 -Courier_New.ttf 70 / 24.6392 44.3865 52 R 6.3064 30.7070 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 53 < 7.1020 28.0000 31.5797 -Courier_New.ttf 70 / 24.6392 44.3865 54 4 3.6264 22.3232 35.9800 -Courier_New.ttf 70 / 24.6392 44.3865 55 8 3.2055 21.3094 36.7876 -Courier_New.ttf 70 / 24.6392 44.3865 56 0 3.2440 23.6959 36.7876 -Courier_New.ttf 70 / 24.6392 44.3865 57 A 6.1967 37.1505 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 58 E 6.1260 27.3234 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 59 B 6.1728 28.4167 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 60 v 14.6136 32.1252 25.2097 -Courier_New.ttf 70 / 24.6392 44.3865 61 k 3.6905 26.6529 35.9800 -Courier_New.ttf 70 / 24.6392 44.3865 62 J 6.1647 28.6766 34.1640 -Courier_New.ttf 70 / 24.6392 44.3865 63 U 6.5426 31.3964 34.1640 -Courier_New.ttf 70 / 24.6392 44.3865 64 j 2.4792 18.4230 48.2928 -Courier_New.ttf 70 / 24.6392 44.3865 65 ( 3.9453 8.4065 43.1932 -Courier_New.ttf 70 / 24.6392 44.3865 66 7 3.8928 22.0027 35.9800 -Courier_New.ttf 70 / 24.6392 44.3865 67 § 4.0338 27.1696 39.8097 -Courier_New.ttf 70 / 24.6392 44.3865 68 $ 0.8461 21.8261 44.3865 -Courier_New.ttf 70 / 24.6392 44.3865 69 € 5.9299 31.2297 34.4140 -Courier_New.ttf 70 / 24.6392 44.3865 70 / -0.2502 24.6392 44.3865 -Courier_New.ttf 70 / 24.6392 44.3865 71 C 6.0741 28.2727 34.4140 -Courier_New.ttf 70 / 24.6392 44.3865 72 * 3.8780 22.0860 21.9800 -Courier_New.ttf 70 / 24.6392 44.3865 73 ” 3.7231 24.6392 15.1932 -Courier_New.ttf 70 / 24.6392 44.3865 74 ? 5.4639 21.0594 34.9406 -Courier_New.ttf 70 / 24.6392 44.3865 75 { 3.1708 11.7324 43.3121 -Courier_New.ttf 70 / 24.6392 44.3865 76 } 3.4954 11.7324 43.3121 -Courier_New.ttf 70 / 24.6392 44.3865 77 , 31.2282 11.5597 17.2297 -Courier_New.ttf 70 / 24.6392 44.3865 78 I 6.1700 22.0860 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 79 ° -2.6258 15.7638 15.7638 -Courier_New.ttf 70 / 24.6392 44.3865 80 K 6.1285 31.2297 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 81 H 6.0933 28.4333 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 82 q 13.9761 29.1932 36.6565 -Courier_New.ttf 70 / 24.6392 44.3865 83 & 9.0711 21.9800 31.2070 -Courier_New.ttf 70 / 24.6392 44.3865 84 ’ 3.8407 12.7529 17.2297 -Courier_New.ttf 70 / 24.6392 44.3865 85 [ 3.5709 9.5998 43.1932 -Courier_New.ttf 70 / 24.6392 44.3865 86 - 21.0903 24.8892 3.2297 -Courier_New.ttf 70 / 24.6392 44.3865 87 Y 6.2200 29.3410 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 88 Q 5.7857 30.3865 40.7840 -Courier_New.ttf 70 / 24.6392 44.3865 89 " 3.9865 19.6995 16.0365 -Courier_New.ttf 70 / 24.6392 44.3865 90 ! 3.4992 6.4594 36.5505 -Courier_New.ttf 70 / 24.6392 44.3865 91 x 14.5213 29.1932 25.2097 -Courier_New.ttf 70 / 24.6392 44.3865 92 ) 3.7146 8.4065 43.1932 -Courier_New.ttf 70 / 24.6392 44.3865 93 = 17.1612 29.1932 11.3097 -Courier_New.ttf 70 / 24.6392 44.3865 94 + 8.7525 26.8590 29.2455 -Courier_New.ttf 70 / 24.6392 44.3865 95 X 6.1961 30.9092 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 96 » 14.1545 28.7766 26.8068 -Courier_New.ttf 70 / 24.6392 44.3865 97 ' 3.8545 7.9027 17.2297 -Courier_New.ttf 70 / 24.6392 44.3865 98 ¢ 1.7424 20.7867 38.0998 -Courier_New.ttf 70 / 24.6392 44.3865 99 Z 6.1885 23.0959 33.5935 -Courier_New.ttf 70 / 24.6392 44.3865 100 > 7.3270 28.0000 31.5797 -Courier_New.ttf 70 / 24.6392 44.3865 101 ® 5.4330 34.7867 35.0594 -Courier_New.ttf 70 / 24.6392 44.3865 102 © 5.4616 35.0594 34.7867 -Courier_New.ttf 70 / 24.6392 44.3865 103 ] 3.8459 9.5998 43.1932 -Courier_New.ttf 70 / 24.6392 44.3865 104 é 1.8670 27.4295 38.4203 -Courier_New.ttf 70 / 24.6392 44.3865 105 z 14.4798 23.7959 25.2097 -Courier_New.ttf 70 / 24.6392 44.3865 106 _ 53.6985 35.0594 2.3865 -Courier_New.ttf 70 / 24.6392 44.3865 107 ¥ 5.9986 29.6744 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 1 t -0.5633 26.2362 34.6034 -Courier_New.ttf 71 C 28.2727 34.4140 2 h -2.2569 29.6326 35.9800 -Courier_New.ttf 71 C 28.2727 34.4140 3 a 8.1258 26.9256 26.1840 -Courier_New.ttf 71 C 28.2727 34.4140 4 n 8.1998 29.2061 25.6135 -Courier_New.ttf 71 C 28.2727 34.4140 5 P 0.4937 26.0529 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 6 o 8.2242 26.8068 26.1840 -Courier_New.ttf 71 C 28.2727 34.4140 7 e 8.3835 27.4295 26.1840 -Courier_New.ttf 71 C 28.2727 34.4140 8 : 8.2558 8.6565 25.7802 -Courier_New.ttf 71 C 28.2727 34.4140 9 r 8.5142 26.8295 25.6135 -Courier_New.ttf 71 C 28.2727 34.4140 10 l -2.0928 24.4725 35.9800 -Courier_New.ttf 71 C 28.2727 34.4140 11 i -3.2905 24.4725 37.2498 -Courier_New.ttf 71 C 28.2727 34.4140 12 1 -3.6895 22.8527 37.5770 -Courier_New.ttf 71 C 28.2727 34.4140 13 | -2.3048 2.3865 43.1932 -Courier_New.ttf 71 C 28.2727 34.4140 14 N 0.3538 31.3964 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 15 f -1.9377 25.4696 35.9800 -Courier_New.ttf 71 C 28.2727 34.4140 16 g 8.2097 27.8462 36.6565 -Courier_New.ttf 71 C 28.2727 34.4140 17 d -1.8364 30.1138 36.5505 -Courier_New.ttf 71 C 28.2727 34.4140 18 W 0.3170 32.5836 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 19 s 8.2355 23.0959 26.1840 -Courier_New.ttf 71 C 28.2727 34.4140 20 c 8.0724 26.6529 26.1840 -Courier_New.ttf 71 C 28.2727 34.4140 21 u 8.6241 29.6326 25.7802 -Courier_New.ttf 71 C 28.2727 34.4140 22 3 -2.2731 23.6959 36.7876 -Courier_New.ttf 71 C 28.2727 34.4140 23 ~ 12.6039 24.8892 8.5732 -Courier_New.ttf 71 C 28.2727 34.4140 24 # -4.5444 25.0657 42.1962 -Courier_New.ttf 71 C 28.2727 34.4140 25 O -0.0484 29.1932 34.4140 -Courier_New.ttf 71 C 28.2727 34.4140 26 ` -3.8023 9.8498 8.6565 -Courier_New.ttf 71 C 28.2727 34.4140 27 @ -3.4854 22.0800 40.4029 -Courier_New.ttf 71 C 28.2727 34.4140 28 F 0.4957 27.3234 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 29 S 0.0038 24.5392 34.4140 -Courier_New.ttf 71 C 28.2727 34.4140 30 p 8.2227 29.8826 36.6565 -Courier_New.ttf 71 C 28.2727 34.4140 31 “ -2.0656 24.6392 15.1932 -Courier_New.ttf 71 C 28.2727 34.4140 32 % -2.2321 24.3664 36.5505 -Courier_New.ttf 71 C 28.2727 34.4140 33 £ -0.1099 26.2840 33.8435 -Courier_New.ttf 71 C 28.2727 34.4140 34 . 26.5235 8.8232 7.9800 -Courier_New.ttf 71 C 28.2727 34.4140 35 2 -2.4113 23.1732 36.3838 -Courier_New.ttf 71 C 28.2727 34.4140 36 5 -1.9571 23.7437 36.3838 -Courier_New.ttf 71 C 28.2727 34.4140 37 m 8.3774 35.1594 25.6135 -Courier_New.ttf 71 C 28.2727 34.4140 38 V 0.1740 35.1140 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 39 6 -2.3781 23.7959 36.7876 -Courier_New.ttf 71 C 28.2727 34.4140 40 w 8.9171 32.7502 25.2097 -Courier_New.ttf 71 C 28.2727 34.4140 41 T 0.3000 26.8590 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 42 M 0.2149 34.5367 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 43 G 0.0885 29.5621 34.4140 -Courier_New.ttf 71 C 28.2727 34.4140 44 b -2.2096 29.8826 36.5505 -Courier_New.ttf 71 C 28.2727 34.4140 45 9 -2.5208 22.4193 36.7876 -Courier_New.ttf 71 C 28.2727 34.4140 46 ; 8.7793 12.8068 30.9570 -Courier_New.ttf 71 C 28.2727 34.4140 47 D 0.1443 28.4394 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 48 L -0.0296 28.2727 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 49 y 8.2193 29.3121 36.2527 -Courier_New.ttf 71 C 28.2727 34.4140 50 ‘ -1.9864 12.7529 17.2297 -Courier_New.ttf 71 C 28.2727 34.4140 51 \ -5.0368 24.6392 44.3865 -Courier_New.ttf 71 C 28.2727 34.4140 52 R -0.0517 30.7070 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 53 < 1.5555 28.0000 31.5797 -Courier_New.ttf 71 C 28.2727 34.4140 54 4 -2.4443 22.3232 35.9800 -Courier_New.ttf 71 C 28.2727 34.4140 55 8 -2.5715 21.3094 36.7876 -Courier_New.ttf 71 C 28.2727 34.4140 56 0 -2.7489 23.6959 36.7876 -Courier_New.ttf 71 C 28.2727 34.4140 57 A 0.3871 37.1505 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 58 E 0.2091 27.3234 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 59 B 0.1138 28.4167 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 60 v 8.5596 32.1252 25.2097 -Courier_New.ttf 71 C 28.2727 34.4140 61 k -1.9869 26.6529 35.9800 -Courier_New.ttf 71 C 28.2727 34.4140 62 J 0.1167 28.6766 34.1640 -Courier_New.ttf 71 C 28.2727 34.4140 63 U 0.2708 31.3964 34.1640 -Courier_New.ttf 71 C 28.2727 34.4140 64 j -3.4694 18.4230 48.2928 -Courier_New.ttf 71 C 28.2727 34.4140 65 ( -2.0466 8.4065 43.1932 -Courier_New.ttf 71 C 28.2727 34.4140 66 7 -2.3405 22.0027 35.9800 -Courier_New.ttf 71 C 28.2727 34.4140 67 § -1.9589 27.1696 39.8097 -Courier_New.ttf 71 C 28.2727 34.4140 68 $ -5.4043 21.8261 44.3865 -Courier_New.ttf 71 C 28.2727 34.4140 69 € 0.0084 31.2297 34.4140 -Courier_New.ttf 71 C 28.2727 34.4140 70 / -5.7718 24.6392 44.3865 -Courier_New.ttf 71 C 28.2727 34.4140 71 C -0.0631 28.2727 34.4140 -Courier_New.ttf 71 C 28.2727 34.4140 72 * -2.1865 22.0860 21.9800 -Courier_New.ttf 71 C 28.2727 34.4140 73 ” -2.1985 24.6392 15.1932 -Courier_New.ttf 71 C 28.2727 34.4140 74 ? -0.3514 21.0594 34.9406 -Courier_New.ttf 71 C 28.2727 34.4140 75 { -2.3207 11.7324 43.3121 -Courier_New.ttf 71 C 28.2727 34.4140 76 } -2.2693 11.7324 43.3121 -Courier_New.ttf 71 C 28.2727 34.4140 77 , 24.8786 11.5597 17.2297 -Courier_New.ttf 71 C 28.2727 34.4140 78 I 0.3143 22.0860 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 79 ° -8.6983 15.7638 15.7638 -Courier_New.ttf 71 C 28.2727 34.4140 80 K 0.3950 31.2297 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 81 H 0.2001 28.4333 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 82 q 8.2702 29.1932 36.6565 -Courier_New.ttf 71 C 28.2727 34.4140 83 & 3.0569 21.9800 31.2070 -Courier_New.ttf 71 C 28.2727 34.4140 84 ’ -2.1515 12.7529 17.2297 -Courier_New.ttf 71 C 28.2727 34.4140 85 [ -2.2893 9.5998 43.1932 -Courier_New.ttf 71 C 28.2727 34.4140 86 - 15.5184 24.8892 3.2297 -Courier_New.ttf 71 C 28.2727 34.4140 87 Y 0.0516 29.3410 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 88 Q 0.2065 30.3865 40.7840 -Courier_New.ttf 71 C 28.2727 34.4140 89 " -2.2241 19.6995 16.0365 -Courier_New.ttf 71 C 28.2727 34.4140 90 ! -2.1535 6.4594 36.5505 -Courier_New.ttf 71 C 28.2727 34.4140 91 x 8.5657 29.1932 25.2097 -Courier_New.ttf 71 C 28.2727 34.4140 92 ) -2.2670 8.4065 43.1932 -Courier_New.ttf 71 C 28.2727 34.4140 93 = 11.1045 29.1932 11.3097 -Courier_New.ttf 71 C 28.2727 34.4140 94 + 3.0683 26.8590 29.2455 -Courier_New.ttf 71 C 28.2727 34.4140 95 X 0.5165 30.9092 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 96 » 8.2262 29.5432 26.8068 -Courier_New.ttf 71 C 28.2727 34.4140 97 ' -2.0337 7.9027 17.2297 -Courier_New.ttf 71 C 28.2727 34.4140 98 ¢ -4.4869 20.7867 38.0998 -Courier_New.ttf 71 C 28.2727 34.4140 99 Z 0.2570 23.0959 33.5935 -Courier_New.ttf 71 C 28.2727 34.4140 100 > 1.5216 28.0000 31.5797 -Courier_New.ttf 71 C 28.2727 34.4140 101 ® -0.5296 34.7867 35.0594 -Courier_New.ttf 71 C 28.2727 34.4140 102 © -0.4858 35.0594 34.7867 -Courier_New.ttf 71 C 28.2727 34.4140 103 ] -1.9825 9.5998 43.1932 -Courier_New.ttf 71 C 28.2727 34.4140 104 é -3.7582 27.4295 38.4203 -Courier_New.ttf 71 C 28.2727 34.4140 105 z 8.7983 23.7959 25.2097 -Courier_New.ttf 71 C 28.2727 34.4140 106 _ 48.0437 35.0594 2.3865 -Courier_New.ttf 71 C 28.2727 34.4140 107 ¥ -0.0736 29.6744 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 1 t 1.8466 26.2362 34.6034 -Courier_New.ttf 72 * 22.0860 21.9800 2 h -0.0079 29.6326 35.9800 -Courier_New.ttf 72 * 22.0860 21.9800 3 a 10.4036 26.9256 26.1840 -Courier_New.ttf 72 * 22.0860 21.9800 4 n 10.5610 29.2061 25.6135 -Courier_New.ttf 72 * 22.0860 21.9800 5 P 2.3044 26.0529 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 6 o 10.5899 26.8068 26.1840 -Courier_New.ttf 72 * 22.0860 21.9800 7 e 10.2793 27.4295 26.1840 -Courier_New.ttf 72 * 22.0860 21.9800 8 : 10.8850 8.6565 25.7802 -Courier_New.ttf 72 * 22.0860 21.9800 9 r 10.2580 26.8295 25.6135 -Courier_New.ttf 72 * 22.0860 21.9800 10 l -0.1060 24.4725 35.9800 -Courier_New.ttf 72 * 22.0860 21.9800 11 i -1.1197 24.4725 37.2498 -Courier_New.ttf 72 * 22.0860 21.9800 12 1 -1.7297 22.8527 37.5770 -Courier_New.ttf 72 * 22.0860 21.9800 13 | -0.3303 2.3865 43.1932 -Courier_New.ttf 72 * 22.0860 21.9800 14 N 2.5104 31.3964 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 15 f 0.0903 25.4696 35.9800 -Courier_New.ttf 72 * 22.0860 21.9800 16 g 10.3091 27.8462 36.6565 -Courier_New.ttf 72 * 22.0860 21.9800 17 d 0.3271 30.1138 36.5505 -Courier_New.ttf 72 * 22.0860 21.9800 18 W 2.4459 32.5836 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 19 s 10.2891 23.0959 26.1840 -Courier_New.ttf 72 * 22.0860 21.9800 20 c 10.7376 26.6529 26.1840 -Courier_New.ttf 72 * 22.0860 21.9800 21 u 10.6448 29.6326 25.7802 -Courier_New.ttf 72 * 22.0860 21.9800 22 3 -0.4265 23.6959 36.7876 -Courier_New.ttf 72 * 22.0860 21.9800 23 ~ 15.0900 24.8892 8.5732 -Courier_New.ttf 72 * 22.0860 21.9800 24 # -2.3532 25.0657 42.1962 -Courier_New.ttf 72 * 22.0860 21.9800 25 O 2.2260 29.1932 34.4140 -Courier_New.ttf 72 * 22.0860 21.9800 26 ` -1.7841 9.8498 8.6565 -Courier_New.ttf 72 * 22.0860 21.9800 27 @ -1.4064 22.0800 40.4029 -Courier_New.ttf 72 * 22.0860 21.9800 28 F 2.3281 27.3234 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 29 S 1.8252 24.5392 34.4140 -Courier_New.ttf 72 * 22.0860 21.9800 30 p 10.4788 29.8826 36.6565 -Courier_New.ttf 72 * 22.0860 21.9800 31 “ 0.2365 24.6392 15.1932 -Courier_New.ttf 72 * 22.0860 21.9800 32 % -0.2249 24.3664 36.5505 -Courier_New.ttf 72 * 22.0860 21.9800 33 £ 1.9512 26.2840 33.8435 -Courier_New.ttf 72 * 22.0860 21.9800 34 . 28.6134 8.8232 7.9800 -Courier_New.ttf 72 * 22.0860 21.9800 35 2 -0.3980 23.1732 36.3838 -Courier_New.ttf 72 * 22.0860 21.9800 36 5 0.0749 23.7437 36.3838 -Courier_New.ttf 72 * 22.0860 21.9800 37 m 10.2787 35.1594 25.6135 -Courier_New.ttf 72 * 22.0860 21.9800 38 V 2.5359 35.1140 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 39 6 -0.5090 23.7959 36.7876 -Courier_New.ttf 72 * 22.0860 21.9800 40 w 10.9737 32.7502 25.2097 -Courier_New.ttf 72 * 22.0860 21.9800 41 T 2.2059 26.8590 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 42 M 2.1636 34.5367 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 43 G 2.1851 29.5621 34.4140 -Courier_New.ttf 72 * 22.0860 21.9800 44 b 0.0073 29.8826 36.5505 -Courier_New.ttf 72 * 22.0860 21.9800 45 9 -0.2069 22.4193 36.7876 -Courier_New.ttf 72 * 22.0860 21.9800 46 ; 10.7566 12.8068 30.9570 -Courier_New.ttf 72 * 22.0860 21.9800 47 D 2.5182 28.4394 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 48 L 2.1686 28.2727 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 49 y 10.9004 29.3121 36.2527 -Courier_New.ttf 72 * 22.0860 21.9800 50 ‘ -0.1689 12.7529 17.2297 -Courier_New.ttf 72 * 22.0860 21.9800 51 \ -3.3071 24.6392 44.3865 -Courier_New.ttf 72 * 22.0860 21.9800 52 R 2.3183 30.7070 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 53 < 3.5935 28.0000 31.5797 -Courier_New.ttf 72 * 22.0860 21.9800 54 4 -0.0222 22.3232 35.9800 -Courier_New.ttf 72 * 22.0860 21.9800 55 8 -0.4697 21.3094 36.7876 -Courier_New.ttf 72 * 22.0860 21.9800 56 0 -0.3310 23.6959 36.7876 -Courier_New.ttf 72 * 22.0860 21.9800 57 A 2.4958 37.1505 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 58 E 2.5509 27.3234 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 59 B 2.5274 28.4167 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 60 v 10.5649 32.1252 25.2097 -Courier_New.ttf 72 * 22.0860 21.9800 61 k -0.1169 26.6529 35.9800 -Courier_New.ttf 72 * 22.0860 21.9800 62 J 2.1811 28.6766 34.1640 -Courier_New.ttf 72 * 22.0860 21.9800 63 U 2.3126 31.3964 34.1640 -Courier_New.ttf 72 * 22.0860 21.9800 64 j -0.9500 18.4230 48.2928 -Courier_New.ttf 72 * 22.0860 21.9800 65 ( -0.0442 8.4065 43.1932 -Courier_New.ttf 72 * 22.0860 21.9800 66 7 -0.0487 22.0027 35.9800 -Courier_New.ttf 72 * 22.0860 21.9800 67 § 0.0115 27.1696 39.8097 -Courier_New.ttf 72 * 22.0860 21.9800 68 $ -3.0432 21.8261 44.3865 -Courier_New.ttf 72 * 22.0860 21.9800 69 € 2.0623 31.2297 34.4140 -Courier_New.ttf 72 * 22.0860 21.9800 70 / -3.7223 24.6392 44.3865 -Courier_New.ttf 72 * 22.0860 21.9800 71 C 2.0208 28.2727 34.4140 -Courier_New.ttf 72 * 22.0860 21.9800 72 * -0.1946 22.0860 21.9800 -Courier_New.ttf 72 * 22.0860 21.9800 73 ” 0.1826 24.6392 15.1932 -Courier_New.ttf 72 * 22.0860 21.9800 74 ? 1.7087 21.0594 34.9406 -Courier_New.ttf 72 * 22.0860 21.9800 75 { -0.4560 11.7324 43.3121 -Courier_New.ttf 72 * 22.0860 21.9800 76 } -0.3469 11.7324 43.3121 -Courier_New.ttf 72 * 22.0860 21.9800 77 , 27.3479 11.5597 17.2297 -Courier_New.ttf 72 * 22.0860 21.9800 78 I 2.4725 22.0860 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 79 ° -6.3371 15.7638 15.7638 -Courier_New.ttf 72 * 22.0860 21.9800 80 K 2.5859 31.2297 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 81 H 2.1825 28.4333 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 82 q 10.4862 29.1932 36.6565 -Courier_New.ttf 72 * 22.0860 21.9800 83 & 5.3421 21.9800 31.2070 -Courier_New.ttf 72 * 22.0860 21.9800 84 ’ 0.0325 12.7529 17.2297 -Courier_New.ttf 72 * 22.0860 21.9800 85 [ 0.0914 9.5998 43.1932 -Courier_New.ttf 72 * 22.0860 21.9800 86 - 17.5487 24.8892 3.2297 -Courier_New.ttf 72 * 22.0860 21.9800 87 Y 2.4389 29.3410 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 88 Q 2.2717 30.3865 40.7840 -Courier_New.ttf 72 * 22.0860 21.9800 89 " -0.0962 19.6995 16.0365 -Courier_New.ttf 72 * 22.0860 21.9800 90 ! 0.1530 6.4594 36.5505 -Courier_New.ttf 72 * 22.0860 21.9800 91 x 10.6506 29.1932 25.2097 -Courier_New.ttf 72 * 22.0860 21.9800 92 ) 0.1556 8.4065 43.1932 -Courier_New.ttf 72 * 22.0860 21.9800 93 = 13.5477 29.1932 11.3097 -Courier_New.ttf 72 * 22.0860 21.9800 94 + 4.9882 26.8590 29.2455 -Courier_New.ttf 72 * 22.0860 21.9800 95 X 2.2311 30.9092 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 96 » 10.4164 28.7766 26.8068 -Courier_New.ttf 72 * 22.0860 21.9800 97 ' -0.0504 7.9027 17.2297 -Courier_New.ttf 72 * 22.0860 21.9800 98 ¢ -2.3557 20.7867 38.0998 -Courier_New.ttf 72 * 22.0860 21.9800 99 Z 2.3827 23.0959 33.5935 -Courier_New.ttf 72 * 22.0860 21.9800 100 > 3.4003 28.0000 31.5797 -Courier_New.ttf 72 * 22.0860 21.9800 101 ® 1.4678 34.7867 35.0594 -Courier_New.ttf 72 * 22.0860 21.9800 102 © 1.8578 35.0594 34.7867 -Courier_New.ttf 72 * 22.0860 21.9800 103 ] 0.3134 9.5998 43.1932 -Courier_New.ttf 72 * 22.0860 21.9800 104 é -1.8853 27.4295 38.4203 -Courier_New.ttf 72 * 22.0860 21.9800 105 z 10.9659 23.7959 25.2097 -Courier_New.ttf 72 * 22.0860 21.9800 106 _ 49.6504 35.0594 2.3865 -Courier_New.ttf 72 * 22.0860 21.9800 107 ¥ 2.4795 29.6744 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 1 t 1.8484 26.2362 34.6034 -Courier_New.ttf 73 ” 24.6392 15.1932 2 h -0.3306 29.6326 35.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 3 a 10.4406 26.9256 26.1840 -Courier_New.ttf 73 ” 24.6392 15.1932 4 n 10.5379 29.2061 25.6135 -Courier_New.ttf 73 ” 24.6392 15.1932 5 P 2.2261 26.0529 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 6 o 10.4786 26.8068 26.1840 -Courier_New.ttf 73 ” 24.6392 15.1932 7 e 10.5180 27.4295 26.1840 -Courier_New.ttf 73 ” 24.6392 15.1932 8 : 10.9358 8.6565 25.7802 -Courier_New.ttf 73 ” 24.6392 15.1932 9 r 10.5277 26.8295 25.6135 -Courier_New.ttf 73 ” 24.6392 15.1932 10 l 0.0545 24.4725 35.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 11 i -1.1868 24.4725 37.2498 -Courier_New.ttf 73 ” 24.6392 15.1932 12 1 -1.4819 22.8527 37.5770 -Courier_New.ttf 73 ” 24.6392 15.1932 13 | -0.0076 2.3865 43.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 14 N 2.6362 31.3964 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 15 f -0.0310 25.4696 35.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 16 g 10.2938 27.8462 36.6565 -Courier_New.ttf 73 ” 24.6392 15.1932 17 d 0.1753 30.1138 36.5505 -Courier_New.ttf 73 ” 24.6392 15.1932 18 W 2.5439 32.5836 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 19 s 10.2542 23.0959 26.1840 -Courier_New.ttf 73 ” 24.6392 15.1932 20 c 10.3405 26.6529 26.1840 -Courier_New.ttf 73 ” 24.6392 15.1932 21 u 10.5982 29.6326 25.7802 -Courier_New.ttf 73 ” 24.6392 15.1932 22 3 -0.6703 23.6959 36.7876 -Courier_New.ttf 73 ” 24.6392 15.1932 23 ~ 14.9024 24.8892 8.5732 -Courier_New.ttf 73 ” 24.6392 15.1932 24 # -2.2623 25.0657 42.1962 -Courier_New.ttf 73 ” 24.6392 15.1932 25 O 1.9279 29.1932 34.4140 -Courier_New.ttf 73 ” 24.6392 15.1932 26 ` -1.8194 9.8498 8.6565 -Courier_New.ttf 73 ” 24.6392 15.1932 27 @ -1.1690 22.0800 40.4029 -Courier_New.ttf 73 ” 24.6392 15.1932 28 F 2.1265 27.3234 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 29 S 2.0623 24.5392 34.4140 -Courier_New.ttf 73 ” 24.6392 15.1932 30 p 10.5393 29.8826 36.6565 -Courier_New.ttf 73 ” 24.6392 15.1932 31 “ -0.0032 24.6392 15.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 32 % 0.0108 24.3664 36.5505 -Courier_New.ttf 73 ” 24.6392 15.1932 33 £ 1.9325 26.2840 33.8435 -Courier_New.ttf 73 ” 24.6392 15.1932 34 . 28.4361 8.8232 7.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 35 2 -0.5983 23.1732 36.3838 -Courier_New.ttf 73 ” 24.6392 15.1932 36 5 0.0115 23.7437 36.3838 -Courier_New.ttf 73 ” 24.6392 15.1932 37 m 10.2853 35.1594 25.6135 -Courier_New.ttf 73 ” 24.6392 15.1932 38 V 2.4260 35.1140 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 39 6 -0.5572 23.7959 36.7876 -Courier_New.ttf 73 ” 24.6392 15.1932 40 w 11.1012 32.7502 25.2097 -Courier_New.ttf 73 ” 24.6392 15.1932 41 T 2.2819 26.8590 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 42 M 2.2122 34.5367 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 43 G 1.8144 29.5621 34.4140 -Courier_New.ttf 73 ” 24.6392 15.1932 44 b 0.1074 29.8826 36.5505 -Courier_New.ttf 73 ” 24.6392 15.1932 45 9 -0.4805 22.4193 36.7876 -Courier_New.ttf 73 ” 24.6392 15.1932 46 ; 10.5044 12.8068 30.9570 -Courier_New.ttf 73 ” 24.6392 15.1932 47 D 2.4222 28.4394 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 48 L 2.0556 28.2727 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 49 y 10.5982 29.3121 36.2527 -Courier_New.ttf 73 ” 24.6392 15.1932 50 ‘ 0.1312 12.7529 17.2297 -Courier_New.ttf 73 ” 24.6392 15.1932 51 \ -3.5569 24.6392 44.3865 -Courier_New.ttf 73 ” 24.6392 15.1932 52 R 2.3123 30.7070 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 53 < 3.5597 28.0000 31.5797 -Courier_New.ttf 73 ” 24.6392 15.1932 54 4 -0.0672 22.3232 35.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 55 8 -0.2625 21.3094 36.7876 -Courier_New.ttf 73 ” 24.6392 15.1932 56 0 -0.5911 23.6959 36.7876 -Courier_New.ttf 73 ” 24.6392 15.1932 57 A 2.2792 37.1505 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 58 E 2.3220 27.3234 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 59 B 2.4844 28.4167 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 60 v 10.8560 32.1252 25.2097 -Courier_New.ttf 73 ” 24.6392 15.1932 61 k 0.0083 26.6529 35.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 62 J 2.4157 28.6766 34.1640 -Courier_New.ttf 73 ” 24.6392 15.1932 63 U 2.2241 31.3964 34.1640 -Courier_New.ttf 73 ” 24.6392 15.1932 64 j -1.0561 18.4230 48.2928 -Courier_New.ttf 73 ” 24.6392 15.1932 65 ( -0.2309 8.4065 43.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 66 7 0.0403 22.0027 35.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 67 § 0.2637 27.1696 39.8097 -Courier_New.ttf 73 ” 24.6392 15.1932 68 $ -3.2813 21.8261 44.3865 -Courier_New.ttf 73 ” 24.6392 15.1932 69 € 2.2009 31.2297 34.4140 -Courier_New.ttf 73 ” 24.6392 15.1932 70 / -4.0514 24.6392 44.3865 -Courier_New.ttf 73 ” 24.6392 15.1932 71 C 2.1179 28.2727 34.4140 -Courier_New.ttf 73 ” 24.6392 15.1932 72 * -0.2330 22.0860 21.9800 -Courier_New.ttf 73 ” 24.6392 15.1932 73 ” -0.0526 24.6392 15.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 74 ? 1.6172 21.0594 34.9406 -Courier_New.ttf 73 ” 24.6392 15.1932 75 { -0.4186 11.7324 43.3121 -Courier_New.ttf 73 ” 24.6392 15.1932 76 } -0.4695 11.7324 43.3121 -Courier_New.ttf 73 ” 24.6392 15.1932 77 , 27.0688 11.5597 17.2297 -Courier_New.ttf 73 ” 24.6392 15.1932 78 I 2.7724 22.0860 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 79 ° -6.5886 15.7638 15.7638 -Courier_New.ttf 73 ” 24.6392 15.1932 80 K 2.3009 31.2297 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 81 H 2.4970 28.4333 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 82 q 10.6649 29.1932 36.6565 -Courier_New.ttf 73 ” 24.6392 15.1932 83 & 5.5357 21.9800 31.2070 -Courier_New.ttf 73 ” 24.6392 15.1932 84 ’ -0.0930 12.7529 17.2297 -Courier_New.ttf 73 ” 24.6392 15.1932 85 [ -0.0367 9.5998 43.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 86 - 17.3488 24.8892 3.2297 -Courier_New.ttf 73 ” 24.6392 15.1932 87 Y 2.3806 29.3410 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 88 Q 2.3048 30.3865 40.7840 -Courier_New.ttf 73 ” 24.6392 15.1932 89 " 0.0097 19.6995 16.0365 -Courier_New.ttf 73 ” 24.6392 15.1932 90 ! 0.0220 6.4594 36.5505 -Courier_New.ttf 73 ” 24.6392 15.1932 91 x 10.4421 29.1932 25.2097 -Courier_New.ttf 73 ” 24.6392 15.1932 92 ) 0.1539 8.4065 43.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 93 = 13.5334 29.1932 11.3097 -Courier_New.ttf 73 ” 24.6392 15.1932 94 + 4.5485 26.8590 29.2455 -Courier_New.ttf 73 ” 24.6392 15.1932 95 X 2.4436 30.9092 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 96 » 10.1904 28.7766 26.8068 -Courier_New.ttf 73 ” 24.6392 15.1932 97 ' -0.2530 7.9027 17.2297 -Courier_New.ttf 73 ” 24.6392 15.1932 98 ¢ -2.0701 20.7867 38.0998 -Courier_New.ttf 73 ” 24.6392 15.1932 99 Z 2.0156 23.0959 33.5935 -Courier_New.ttf 73 ” 24.6392 15.1932 100 > 3.4374 28.0000 31.5797 -Courier_New.ttf 73 ” 24.6392 15.1932 101 ® 1.5781 34.7867 35.0594 -Courier_New.ttf 73 ” 24.6392 15.1932 102 © 1.8241 35.0594 34.7867 -Courier_New.ttf 73 ” 24.6392 15.1932 103 ] -0.2321 9.5998 43.1932 -Courier_New.ttf 73 ” 24.6392 15.1932 104 é -1.9470 27.4295 38.4203 -Courier_New.ttf 73 ” 24.6392 15.1932 105 z 10.9302 23.7959 25.2097 -Courier_New.ttf 73 ” 24.6392 15.1932 106 _ 50.0184 35.0594 2.3865 -Courier_New.ttf 73 ” 24.6392 15.1932 107 ¥ 2.2136 29.6744 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 1 t 0.4197 26.2362 34.6034 -Courier_New.ttf 74 ? 21.0594 34.9406 2 h -1.6061 29.6326 35.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 3 a 8.7307 26.9256 26.1840 -Courier_New.ttf 74 ? 21.0594 34.9406 4 n 8.9751 29.2061 25.6135 -Courier_New.ttf 74 ? 21.0594 34.9406 5 P 1.1046 26.0529 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 6 o 8.5525 26.8068 26.1840 -Courier_New.ttf 74 ? 21.0594 34.9406 7 e 8.9735 27.4295 26.1840 -Courier_New.ttf 74 ? 21.0594 34.9406 8 : 9.0581 8.6565 25.7802 -Courier_New.ttf 74 ? 21.0594 34.9406 9 r 8.9821 26.8295 25.6135 -Courier_New.ttf 74 ? 21.0594 34.9406 10 l -1.9361 24.4725 35.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 11 i -2.8483 24.4725 37.2498 -Courier_New.ttf 74 ? 21.0594 34.9406 12 1 -3.5031 22.8527 37.5770 -Courier_New.ttf 74 ? 21.0594 34.9406 13 | -1.5548 2.3865 43.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 14 N 0.5587 31.3964 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 15 f -1.6269 25.4696 35.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 16 g 8.8188 27.8462 36.6565 -Courier_New.ttf 74 ? 21.0594 34.9406 17 d -1.7469 30.1138 36.5505 -Courier_New.ttf 74 ? 21.0594 34.9406 18 W 0.7563 32.5836 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 19 s 8.9579 23.0959 26.1840 -Courier_New.ttf 74 ? 21.0594 34.9406 20 c 8.5439 26.6529 26.1840 -Courier_New.ttf 74 ? 21.0594 34.9406 21 u 9.3227 29.6326 25.7802 -Courier_New.ttf 74 ? 21.0594 34.9406 22 3 -2.0063 23.6959 36.7876 -Courier_New.ttf 74 ? 21.0594 34.9406 23 ~ 13.3561 24.8892 8.5732 -Courier_New.ttf 74 ? 21.0594 34.9406 24 # -3.9932 25.0657 42.1962 -Courier_New.ttf 74 ? 21.0594 34.9406 25 O 0.5098 29.1932 34.4140 -Courier_New.ttf 74 ? 21.0594 34.9406 26 ` -3.7136 9.8498 8.6565 -Courier_New.ttf 74 ? 21.0594 34.9406 27 @ -3.2382 22.0800 40.4029 -Courier_New.ttf 74 ? 21.0594 34.9406 28 F 0.5083 27.3234 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 29 S 0.3317 24.5392 34.4140 -Courier_New.ttf 74 ? 21.0594 34.9406 30 p 8.5194 29.8826 36.6565 -Courier_New.ttf 74 ? 21.0594 34.9406 31 “ -1.5158 24.6392 15.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 32 % -1.6099 24.3664 36.5505 -Courier_New.ttf 74 ? 21.0594 34.9406 33 £ 0.6281 26.2840 33.8435 -Courier_New.ttf 74 ? 21.0594 34.9406 34 . 26.7910 8.8232 7.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 35 2 -2.0949 23.1732 36.3838 -Courier_New.ttf 74 ? 21.0594 34.9406 36 5 -1.2532 23.7437 36.3838 -Courier_New.ttf 74 ? 21.0594 34.9406 37 m 8.6082 35.1594 25.6135 -Courier_New.ttf 74 ? 21.0594 34.9406 38 V 0.8137 35.1140 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 39 6 -1.8154 23.7959 36.7876 -Courier_New.ttf 74 ? 21.0594 34.9406 40 w 9.0959 32.7502 25.2097 -Courier_New.ttf 74 ? 21.0594 34.9406 41 T 0.5706 26.8590 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 42 M 0.5680 34.5367 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 43 G 0.4505 29.5621 34.4140 -Courier_New.ttf 74 ? 21.0594 34.9406 44 b -1.5184 29.8826 36.5505 -Courier_New.ttf 74 ? 21.0594 34.9406 45 9 -2.3406 22.4193 36.7876 -Courier_New.ttf 74 ? 21.0594 34.9406 46 ; 9.5017 12.8068 30.9570 -Courier_New.ttf 74 ? 21.0594 34.9406 47 D 0.8226 28.4394 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 48 L 0.8637 28.2727 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 49 y 9.5112 29.3121 36.2527 -Courier_New.ttf 74 ? 21.0594 34.9406 50 ‘ -1.7615 12.7529 17.2297 -Courier_New.ttf 74 ? 21.0594 34.9406 51 \ -4.9866 24.6392 44.3865 -Courier_New.ttf 74 ? 21.0594 34.9406 52 R 0.5668 30.7070 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 53 < 1.9115 28.0000 31.5797 -Courier_New.ttf 74 ? 21.0594 34.9406 54 4 -1.6040 22.3232 35.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 55 8 -1.9458 21.3094 36.7876 -Courier_New.ttf 74 ? 21.0594 34.9406 56 0 -2.1390 23.6959 36.7876 -Courier_New.ttf 74 ? 21.0594 34.9406 57 A 0.5139 37.1505 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 58 E 0.8150 27.3234 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 59 B 0.9067 28.4167 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 60 v 9.2358 32.1252 25.2097 -Courier_New.ttf 74 ? 21.0594 34.9406 61 k -1.7699 26.6529 35.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 62 J 0.7266 28.6766 34.1640 -Courier_New.ttf 74 ? 21.0594 34.9406 63 U 1.1437 31.3964 34.1640 -Courier_New.ttf 74 ? 21.0594 34.9406 64 j -2.8899 18.4230 48.2928 -Courier_New.ttf 74 ? 21.0594 34.9406 65 ( -1.7688 8.4065 43.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 66 7 -1.5066 22.0027 35.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 67 § -1.3468 27.1696 39.8097 -Courier_New.ttf 74 ? 21.0594 34.9406 68 $ -4.6880 21.8261 44.3865 -Courier_New.ttf 74 ? 21.0594 34.9406 69 € 0.3478 31.2297 34.4140 -Courier_New.ttf 74 ? 21.0594 34.9406 70 / -5.2981 24.6392 44.3865 -Courier_New.ttf 74 ? 21.0594 34.9406 71 C 0.5280 28.2727 34.4140 -Courier_New.ttf 74 ? 21.0594 34.9406 72 * -1.6002 22.0860 21.9800 -Courier_New.ttf 74 ? 21.0594 34.9406 73 ” -1.5853 24.6392 15.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 74 ? 0.1742 21.0594 34.9406 -Courier_New.ttf 74 ? 21.0594 34.9406 75 { -1.7721 11.7324 43.3121 -Courier_New.ttf 74 ? 21.0594 34.9406 76 } -1.7980 11.7324 43.3121 -Courier_New.ttf 74 ? 21.0594 34.9406 77 , 25.9326 11.5597 17.2297 -Courier_New.ttf 74 ? 21.0594 34.9406 78 I 0.5704 22.0860 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 79 ° -8.0100 15.7638 15.7638 -Courier_New.ttf 74 ? 21.0594 34.9406 80 K 0.6667 31.2297 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 81 H 0.8924 28.4333 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 82 q 8.8891 29.1932 36.6565 -Courier_New.ttf 74 ? 21.0594 34.9406 83 & 3.3935 21.9800 31.2070 -Courier_New.ttf 74 ? 21.0594 34.9406 84 ’ -1.4203 12.7529 17.2297 -Courier_New.ttf 74 ? 21.0594 34.9406 85 [ -1.4381 9.5998 43.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 86 - 16.0342 24.8892 3.2297 -Courier_New.ttf 74 ? 21.0594 34.9406 87 Y 0.5205 29.3410 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 88 Q 0.2137 30.3865 40.7840 -Courier_New.ttf 74 ? 21.0594 34.9406 89 " -1.4623 19.6995 16.0365 -Courier_New.ttf 74 ? 21.0594 34.9406 90 ! -1.6130 6.4594 36.5505 -Courier_New.ttf 74 ? 21.0594 34.9406 91 x 9.2150 29.1932 25.2097 -Courier_New.ttf 74 ? 21.0594 34.9406 92 ) -1.6534 8.4065 43.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 93 = 11.4447 29.1932 11.3097 -Courier_New.ttf 74 ? 21.0594 34.9406 94 + 3.4564 26.8590 29.2455 -Courier_New.ttf 74 ? 21.0594 34.9406 95 X 1.1579 30.9092 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 96 » 8.5253 28.7766 26.8068 -Courier_New.ttf 74 ? 21.0594 34.9406 97 ' -2.0298 7.9027 17.2297 -Courier_New.ttf 74 ? 21.0594 34.9406 98 ¢ -3.7389 20.7867 38.0998 -Courier_New.ttf 74 ? 21.0594 34.9406 99 Z 0.5407 23.0959 33.5935 -Courier_New.ttf 74 ? 21.0594 34.9406 100 > 2.2336 28.0000 31.5797 -Courier_New.ttf 74 ? 21.0594 34.9406 101 ® 0.0532 34.7867 35.0594 -Courier_New.ttf 74 ? 21.0594 34.9406 102 © 0.2396 35.0594 34.7867 -Courier_New.ttf 74 ? 21.0594 34.9406 103 ] -1.8250 9.5998 43.1932 -Courier_New.ttf 74 ? 21.0594 34.9406 104 é -3.3426 27.4295 38.4203 -Courier_New.ttf 74 ? 21.0594 34.9406 105 z 9.2488 23.7959 25.2097 -Courier_New.ttf 74 ? 21.0594 34.9406 106 _ 48.4956 35.0594 2.3865 -Courier_New.ttf 74 ? 21.0594 34.9406 107 ¥ 0.7650 29.6744 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 1 t 2.1417 26.2362 34.6034 -Courier_New.ttf 75 { 11.7324 43.3121 2 h 0.3424 29.6326 35.9800 -Courier_New.ttf 75 { 11.7324 43.3121 3 a 10.6320 26.9256 26.1840 -Courier_New.ttf 75 { 11.7324 43.3121 4 n 10.5957 29.2061 25.6135 -Courier_New.ttf 75 { 11.7324 43.3121 5 P 2.6727 26.0529 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 6 o 10.5817 26.8068 26.1840 -Courier_New.ttf 75 { 11.7324 43.3121 7 e 10.7255 27.4295 26.1840 -Courier_New.ttf 75 { 11.7324 43.3121 8 : 11.0307 8.6565 25.7802 -Courier_New.ttf 75 { 11.7324 43.3121 9 r 10.8659 26.8295 25.6135 -Courier_New.ttf 75 { 11.7324 43.3121 10 l 0.0122 24.4725 35.9800 -Courier_New.ttf 75 { 11.7324 43.3121 11 i -0.9457 24.4725 37.2498 -Courier_New.ttf 75 { 11.7324 43.3121 12 1 -1.0559 22.8527 37.5770 -Courier_New.ttf 75 { 11.7324 43.3121 13 | 0.3382 2.3865 43.1932 -Courier_New.ttf 75 { 11.7324 43.3121 14 N 2.6068 31.3964 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 15 f 0.2832 25.4696 35.9800 -Courier_New.ttf 75 { 11.7324 43.3121 16 g 10.4715 27.8462 36.6565 -Courier_New.ttf 75 { 11.7324 43.3121 17 d 0.1408 30.1138 36.5505 -Courier_New.ttf 75 { 11.7324 43.3121 18 W 2.8979 32.5836 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 19 s 10.5150 23.0959 26.1840 -Courier_New.ttf 75 { 11.7324 43.3121 20 c 10.5124 26.6529 26.1840 -Courier_New.ttf 75 { 11.7324 43.3121 21 u 11.1345 29.6326 25.7802 -Courier_New.ttf 75 { 11.7324 43.3121 22 3 -0.2304 23.6959 36.7876 -Courier_New.ttf 75 { 11.7324 43.3121 23 ~ 14.8748 24.8892 8.5732 -Courier_New.ttf 75 { 11.7324 43.3121 24 # -2.2793 25.0657 42.1962 -Courier_New.ttf 75 { 11.7324 43.3121 25 O 2.2707 29.1932 34.4140 -Courier_New.ttf 75 { 11.7324 43.3121 26 ` -1.8052 9.8498 8.6565 -Courier_New.ttf 75 { 11.7324 43.3121 27 @ -1.2887 22.0800 40.4029 -Courier_New.ttf 75 { 11.7324 43.3121 28 F 2.8016 27.3234 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 29 S 2.5820 24.5392 34.4140 -Courier_New.ttf 75 { 11.7324 43.3121 30 p 10.5924 29.8826 36.6565 -Courier_New.ttf 75 { 11.7324 43.3121 31 “ 0.5263 24.6392 15.1932 -Courier_New.ttf 75 { 11.7324 43.3121 32 % 0.0601 24.3664 36.5505 -Courier_New.ttf 75 { 11.7324 43.3121 33 £ 2.3180 26.2840 33.8435 -Courier_New.ttf 75 { 11.7324 43.3121 34 . 28.9252 8.8232 7.9800 -Courier_New.ttf 75 { 11.7324 43.3121 35 2 -0.2468 23.1732 36.3838 -Courier_New.ttf 75 { 11.7324 43.3121 36 5 0.4021 23.7437 36.3838 -Courier_New.ttf 75 { 11.7324 43.3121 37 m 10.6854 35.1594 25.6135 -Courier_New.ttf 75 { 11.7324 43.3121 38 V 2.6666 35.1140 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 39 6 -0.2053 23.7959 36.7876 -Courier_New.ttf 75 { 11.7324 43.3121 40 w 11.2199 32.7502 25.2097 -Courier_New.ttf 75 { 11.7324 43.3121 41 T 2.5521 26.8590 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 42 M 2.2836 34.5367 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 43 G 2.3164 29.5621 34.4140 -Courier_New.ttf 75 { 11.7324 43.3121 44 b 0.3840 29.8826 36.5505 -Courier_New.ttf 75 { 11.7324 43.3121 45 9 -0.3234 22.4193 36.7876 -Courier_New.ttf 75 { 11.7324 43.3121 46 ; 11.1204 12.8068 30.9570 -Courier_New.ttf 75 { 11.7324 43.3121 47 D 2.5300 28.4394 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 48 L 2.7117 28.2727 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 49 y 10.9417 29.3121 36.2527 -Courier_New.ttf 75 { 11.7324 43.3121 50 ‘ 0.3276 12.7529 17.2297 -Courier_New.ttf 75 { 11.7324 43.3121 51 \ -2.7498 24.6392 44.3865 -Courier_New.ttf 75 { 11.7324 43.3121 52 R 3.0103 30.7070 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 53 < 4.0956 28.0000 31.5797 -Courier_New.ttf 75 { 11.7324 43.3121 54 4 0.3182 22.3232 35.9800 -Courier_New.ttf 75 { 11.7324 43.3121 55 8 0.1218 21.3094 36.7876 -Courier_New.ttf 75 { 11.7324 43.3121 56 0 -0.1214 23.6959 36.7876 -Courier_New.ttf 75 { 11.7324 43.3121 57 A 2.7547 37.1505 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 58 E 2.6977 27.3234 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 59 B 2.5870 28.4167 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 60 v 11.4369 32.1252 25.2097 -Courier_New.ttf 75 { 11.7324 43.3121 61 k 0.4110 26.6529 35.9800 -Courier_New.ttf 75 { 11.7324 43.3121 62 J 2.4753 28.6766 34.1640 -Courier_New.ttf 75 { 11.7324 43.3121 63 U 2.9817 31.3964 34.1640 -Courier_New.ttf 75 { 11.7324 43.3121 64 j -0.7603 18.4230 48.2928 -Courier_New.ttf 75 { 11.7324 43.3121 65 ( 0.3084 8.4065 43.1932 -Courier_New.ttf 75 { 11.7324 43.3121 66 7 0.4150 22.0027 35.9800 -Courier_New.ttf 75 { 11.7324 43.3121 67 § 0.1194 27.1696 39.8097 -Courier_New.ttf 75 { 11.7324 43.3121 68 $ -2.6748 21.8261 44.3865 -Courier_New.ttf 75 { 11.7324 43.3121 69 € 2.0933 31.2297 34.4140 -Courier_New.ttf 75 { 11.7324 43.3121 70 / -3.3367 24.6392 44.3865 -Courier_New.ttf 75 { 11.7324 43.3121 71 C 2.4820 28.2727 34.4140 -Courier_New.ttf 75 { 11.7324 43.3121 72 * 0.0974 22.0860 21.9800 -Courier_New.ttf 75 { 11.7324 43.3121 73 ” 0.6210 24.6392 15.1932 -Courier_New.ttf 75 { 11.7324 43.3121 74 ? 2.1518 21.0594 34.9406 -Courier_New.ttf 75 { 11.7324 43.3121 75 { 0.0926 11.7324 43.3121 -Courier_New.ttf 75 { 11.7324 43.3121 76 } -0.1145 11.7324 43.3121 -Courier_New.ttf 75 { 11.7324 43.3121 77 , 27.7726 11.5597 17.2297 -Courier_New.ttf 75 { 11.7324 43.3121 78 I 2.7320 22.0860 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 79 ° -6.2027 15.7638 15.7638 -Courier_New.ttf 75 { 11.7324 43.3121 80 K 2.6262 31.2297 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 81 H 2.7261 28.4333 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 82 q 10.5560 29.1932 36.6565 -Courier_New.ttf 75 { 11.7324 43.3121 83 & 5.6662 21.9800 31.2070 -Courier_New.ttf 75 { 11.7324 43.3121 84 ’ 0.0336 12.7529 17.2297 -Courier_New.ttf 75 { 11.7324 43.3121 85 [ 0.2823 9.5998 43.1932 -Courier_New.ttf 75 { 11.7324 43.3121 86 - 18.0754 24.8892 3.2297 -Courier_New.ttf 75 { 11.7324 43.3121 87 Y 2.5207 29.3410 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 88 Q 2.2511 30.3865 40.7840 -Courier_New.ttf 75 { 11.7324 43.3121 89 " 0.2318 19.6995 16.0365 -Courier_New.ttf 75 { 11.7324 43.3121 90 ! 0.3200 6.4594 36.5505 -Courier_New.ttf 75 { 11.7324 43.3121 91 x 10.9019 29.1932 25.2097 -Courier_New.ttf 75 { 11.7324 43.3121 92 ) -0.0365 8.4065 43.1932 -Courier_New.ttf 75 { 11.7324 43.3121 93 = 13.4615 29.1932 11.3097 -Courier_New.ttf 75 { 11.7324 43.3121 94 + 5.5384 26.8590 29.2455 -Courier_New.ttf 75 { 11.7324 43.3121 95 X 2.6387 30.9092 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 96 » 10.5520 28.7766 26.8068 -Courier_New.ttf 75 { 11.7324 43.3121 97 ' 0.3514 7.9027 17.2297 -Courier_New.ttf 75 { 11.7324 43.3121 98 ¢ -1.5092 20.7867 38.0998 -Courier_New.ttf 75 { 11.7324 43.3121 99 Z 2.7509 23.0959 33.5935 -Courier_New.ttf 75 { 11.7324 43.3121 100 > 3.7329 28.0000 31.5797 -Courier_New.ttf 75 { 11.7324 43.3121 101 ® 1.6725 34.7867 35.0594 -Courier_New.ttf 75 { 11.7324 43.3121 102 © 1.8840 35.0594 34.7867 -Courier_New.ttf 75 { 11.7324 43.3121 103 ] 0.1953 9.5998 43.1932 -Courier_New.ttf 75 { 11.7324 43.3121 104 é -1.7185 27.4295 38.4203 -Courier_New.ttf 75 { 11.7324 43.3121 105 z 11.2595 23.7959 25.2097 -Courier_New.ttf 75 { 11.7324 43.3121 106 _ 50.3769 35.0594 2.3865 -Courier_New.ttf 75 { 11.7324 43.3121 107 ¥ 2.2919 29.6744 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 1 t 2.3447 26.2362 34.6034 -Courier_New.ttf 76 } 11.7324 43.3121 2 h 0.4808 29.6326 35.9800 -Courier_New.ttf 76 } 11.7324 43.3121 3 a 10.5975 26.9256 26.1840 -Courier_New.ttf 76 } 11.7324 43.3121 4 n 10.8579 29.2061 25.6135 -Courier_New.ttf 76 } 11.7324 43.3121 5 P 2.7334 26.0529 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 6 o 10.7179 26.8068 26.1840 -Courier_New.ttf 76 } 11.7324 43.3121 7 e 10.3537 27.4295 26.1840 -Courier_New.ttf 76 } 11.7324 43.3121 8 : 11.3674 8.6565 25.7802 -Courier_New.ttf 76 } 11.7324 43.3121 9 r 10.5636 26.8295 25.6135 -Courier_New.ttf 76 } 11.7324 43.3121 10 l 0.1544 24.4725 35.9800 -Courier_New.ttf 76 } 11.7324 43.3121 11 i -1.0626 24.4725 37.2498 -Courier_New.ttf 76 } 11.7324 43.3121 12 1 -1.1334 22.8527 37.5770 -Courier_New.ttf 76 } 11.7324 43.3121 13 | 0.4396 2.3865 43.1932 -Courier_New.ttf 76 } 11.7324 43.3121 14 N 2.6981 31.3964 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 15 f 0.1129 25.4696 35.9800 -Courier_New.ttf 76 } 11.7324 43.3121 16 g 10.8477 27.8462 36.6565 -Courier_New.ttf 76 } 11.7324 43.3121 17 d 0.1343 30.1138 36.5505 -Courier_New.ttf 76 } 11.7324 43.3121 18 W 2.5463 32.5836 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 19 s 10.6507 23.0959 26.1840 -Courier_New.ttf 76 } 11.7324 43.3121 20 c 10.3089 26.6529 26.1840 -Courier_New.ttf 76 } 11.7324 43.3121 21 u 11.0255 29.6326 25.7802 -Courier_New.ttf 76 } 11.7324 43.3121 22 3 0.0288 23.6959 36.7876 -Courier_New.ttf 76 } 11.7324 43.3121 23 ~ 15.2054 24.8892 8.5732 -Courier_New.ttf 76 } 11.7324 43.3121 24 # -1.9298 25.0657 42.1962 -Courier_New.ttf 76 } 11.7324 43.3121 25 O 2.3714 29.1932 34.4140 -Courier_New.ttf 76 } 11.7324 43.3121 26 ` -1.2911 9.8498 8.6565 -Courier_New.ttf 76 } 11.7324 43.3121 27 @ -1.2304 22.0800 40.4029 -Courier_New.ttf 76 } 11.7324 43.3121 28 F 2.5410 27.3234 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 29 S 2.3890 24.5392 34.4140 -Courier_New.ttf 76 } 11.7324 43.3121 30 p 10.7112 29.8826 36.6565 -Courier_New.ttf 76 } 11.7324 43.3121 31 “ 0.1114 24.6392 15.1932 -Courier_New.ttf 76 } 11.7324 43.3121 32 % 0.2514 24.3664 36.5505 -Courier_New.ttf 76 } 11.7324 43.3121 33 £ 2.4222 26.2840 33.8435 -Courier_New.ttf 76 } 11.7324 43.3121 34 . 28.8488 8.8232 7.9800 -Courier_New.ttf 76 } 11.7324 43.3121 35 2 -0.1000 23.1732 36.3838 -Courier_New.ttf 76 } 11.7324 43.3121 36 5 0.3756 23.7437 36.3838 -Courier_New.ttf 76 } 11.7324 43.3121 37 m 10.7685 35.1594 25.6135 -Courier_New.ttf 76 } 11.7324 43.3121 38 V 2.6221 35.1140 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 39 6 0.1308 23.7959 36.7876 -Courier_New.ttf 76 } 11.7324 43.3121 40 w 10.9643 32.7502 25.2097 -Courier_New.ttf 76 } 11.7324 43.3121 41 T 2.6092 26.8590 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 42 M 2.5376 34.5367 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 43 G 2.1693 29.5621 34.4140 -Courier_New.ttf 76 } 11.7324 43.3121 44 b 0.1309 29.8826 36.5505 -Courier_New.ttf 76 } 11.7324 43.3121 45 9 -0.0874 22.4193 36.7876 -Courier_New.ttf 76 } 11.7324 43.3121 46 ; 11.0682 12.8068 30.9570 -Courier_New.ttf 76 } 11.7324 43.3121 47 D 2.4479 28.4394 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 48 L 2.6986 28.2727 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 49 y 10.8734 29.3121 36.2527 -Courier_New.ttf 76 } 11.7324 43.3121 50 ‘ 0.1394 12.7529 17.2297 -Courier_New.ttf 76 } 11.7324 43.3121 51 \ -2.6494 24.6392 44.3865 -Courier_New.ttf 76 } 11.7324 43.3121 52 R 2.5007 30.7070 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 53 < 3.8839 28.0000 31.5797 -Courier_New.ttf 76 } 11.7324 43.3121 54 4 0.2857 22.3232 35.9800 -Courier_New.ttf 76 } 11.7324 43.3121 55 8 -0.0013 21.3094 36.7876 -Courier_New.ttf 76 } 11.7324 43.3121 56 0 -0.2456 23.6959 36.7876 -Courier_New.ttf 76 } 11.7324 43.3121 57 A 2.6676 37.1505 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 58 E 2.7736 27.3234 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 59 B 2.5007 28.4167 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 60 v 11.0587 32.1252 25.2097 -Courier_New.ttf 76 } 11.7324 43.3121 61 k 0.4683 26.6529 35.9800 -Courier_New.ttf 76 } 11.7324 43.3121 62 J 2.6624 28.6766 34.1640 -Courier_New.ttf 76 } 11.7324 43.3121 63 U 2.7404 31.3964 34.1640 -Courier_New.ttf 76 } 11.7324 43.3121 64 j -0.9159 18.4230 48.2928 -Courier_New.ttf 76 } 11.7324 43.3121 65 ( 0.0137 8.4065 43.1932 -Courier_New.ttf 76 } 11.7324 43.3121 66 7 0.0864 22.0027 35.9800 -Courier_New.ttf 76 } 11.7324 43.3121 67 § 0.2787 27.1696 39.8097 -Courier_New.ttf 76 } 11.7324 43.3121 68 $ -2.6959 21.8261 44.3865 -Courier_New.ttf 76 } 11.7324 43.3121 69 € 2.2007 31.2297 34.4140 -Courier_New.ttf 76 } 11.7324 43.3121 70 / -3.4279 24.6392 44.3865 -Courier_New.ttf 76 } 11.7324 43.3121 71 C 2.1380 28.2727 34.4140 -Courier_New.ttf 76 } 11.7324 43.3121 72 * 0.4156 22.0860 21.9800 -Courier_New.ttf 76 } 11.7324 43.3121 73 ” 0.1154 24.6392 15.1932 -Courier_New.ttf 76 } 11.7324 43.3121 74 ? 1.8656 21.0594 34.9406 -Courier_New.ttf 76 } 11.7324 43.3121 75 { 0.2957 11.7324 43.3121 -Courier_New.ttf 76 } 11.7324 43.3121 76 } -0.0409 11.7324 43.3121 -Courier_New.ttf 76 } 11.7324 43.3121 77 , 27.9380 11.5597 17.2297 -Courier_New.ttf 76 } 11.7324 43.3121 78 I 2.4861 22.0860 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 79 ° -6.0543 15.7638 15.7638 -Courier_New.ttf 76 } 11.7324 43.3121 80 K 2.7065 31.2297 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 81 H 2.9527 28.4333 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 82 q 10.4005 29.1932 36.6565 -Courier_New.ttf 76 } 11.7324 43.3121 83 & 5.5597 21.9800 31.2070 -Courier_New.ttf 76 } 11.7324 43.3121 84 ’ 0.4775 12.7529 17.2297 -Courier_New.ttf 76 } 11.7324 43.3121 85 [ 0.4039 9.5998 43.1932 -Courier_New.ttf 76 } 11.7324 43.3121 86 - 17.6986 24.8892 3.2297 -Courier_New.ttf 76 } 11.7324 43.3121 87 Y 2.6461 29.3410 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 88 Q 2.4162 30.3865 40.7840 -Courier_New.ttf 76 } 11.7324 43.3121 89 " 0.5267 19.6995 16.0365 -Courier_New.ttf 76 } 11.7324 43.3121 90 ! 0.3080 6.4594 36.5505 -Courier_New.ttf 76 } 11.7324 43.3121 91 x 10.8188 29.1932 25.2097 -Courier_New.ttf 76 } 11.7324 43.3121 92 ) 0.4415 8.4065 43.1932 -Courier_New.ttf 76 } 11.7324 43.3121 93 = 13.7313 29.1932 11.3097 -Courier_New.ttf 76 } 11.7324 43.3121 94 + 5.0048 26.8590 29.2455 -Courier_New.ttf 76 } 11.7324 43.3121 95 X 2.9750 30.9092 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 96 » 10.5794 28.7766 26.8068 -Courier_New.ttf 76 } 11.7324 43.3121 97 ' 0.5001 7.9027 17.2297 -Courier_New.ttf 76 } 11.7324 43.3121 98 ¢ -1.7184 20.7867 38.0998 -Courier_New.ttf 76 } 11.7324 43.3121 99 Z 2.8036 23.0959 33.5935 -Courier_New.ttf 76 } 11.7324 43.3121 100 > 3.6335 28.0000 31.5797 -Courier_New.ttf 76 } 11.7324 43.3121 101 ® 1.6071 34.7867 35.0594 -Courier_New.ttf 76 } 11.7324 43.3121 102 © 2.1859 35.0594 34.7867 -Courier_New.ttf 76 } 11.7324 43.3121 103 ] 0.3521 9.5998 43.1932 -Courier_New.ttf 76 } 11.7324 43.3121 104 é -1.8122 27.4295 38.4203 -Courier_New.ttf 76 } 11.7324 43.3121 105 z 10.9734 23.7959 25.2097 -Courier_New.ttf 76 } 11.7324 43.3121 106 _ 50.3237 35.0594 2.3865 -Courier_New.ttf 76 } 11.7324 43.3121 107 ¥ 2.7120 29.6744 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 1 t -25.2941 26.2362 34.6034 -Courier_New.ttf 77 , 11.5597 17.2297 2 h -27.7181 29.6326 35.9800 -Courier_New.ttf 77 , 11.5597 17.2297 3 a -17.0392 26.9256 26.1840 -Courier_New.ttf 77 , 11.5597 17.2297 4 n -16.8494 29.2061 25.6135 -Courier_New.ttf 77 , 11.5597 17.2297 5 P -25.0899 26.0529 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 6 o -17.4325 26.8068 26.1840 -Courier_New.ttf 77 , 11.5597 17.2297 7 e -17.3124 27.4295 26.1840 -Courier_New.ttf 77 , 11.5597 17.2297 8 : -16.7047 8.6565 25.7802 -Courier_New.ttf 77 , 11.5597 17.2297 9 r -17.2775 26.8295 25.6135 -Courier_New.ttf 77 , 11.5597 17.2297 10 l -27.3765 24.4725 35.9800 -Courier_New.ttf 77 , 11.5597 17.2297 11 i -28.7293 24.4725 37.2498 -Courier_New.ttf 77 , 11.5597 17.2297 12 1 -29.3625 22.8527 37.5770 -Courier_New.ttf 77 , 11.5597 17.2297 13 | -27.4722 2.3865 43.1932 -Courier_New.ttf 77 , 11.5597 17.2297 14 N -25.0332 31.3964 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 15 f -27.1657 25.4696 35.9800 -Courier_New.ttf 77 , 11.5597 17.2297 16 g -17.1121 27.8462 36.6565 -Courier_New.ttf 77 , 11.5597 17.2297 17 d -27.6083 30.1138 36.5505 -Courier_New.ttf 77 , 11.5597 17.2297 18 W -25.0618 32.5836 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 19 s -16.9017 23.0959 26.1840 -Courier_New.ttf 77 , 11.5597 17.2297 20 c -16.7828 26.6529 26.1840 -Courier_New.ttf 77 , 11.5597 17.2297 21 u -16.6795 29.6326 25.7802 -Courier_New.ttf 77 , 11.5597 17.2297 22 3 -28.0497 23.6959 36.7876 -Courier_New.ttf 77 , 11.5597 17.2297 23 ~ -12.2333 24.8892 8.5732 -Courier_New.ttf 77 , 11.5597 17.2297 24 # -29.8648 25.0657 42.1962 -Courier_New.ttf 77 , 11.5597 17.2297 25 O -25.1773 29.1932 34.4140 -Courier_New.ttf 77 , 11.5597 17.2297 26 ` -29.4609 9.8498 8.6565 -Courier_New.ttf 77 , 11.5597 17.2297 27 @ -28.7999 22.0800 40.4029 -Courier_New.ttf 77 , 11.5597 17.2297 28 F -24.7868 27.3234 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 29 S -25.0974 24.5392 34.4140 -Courier_New.ttf 77 , 11.5597 17.2297 30 p -17.3932 29.8826 36.6565 -Courier_New.ttf 77 , 11.5597 17.2297 31 “ -27.5347 24.6392 15.1932 -Courier_New.ttf 77 , 11.5597 17.2297 32 % -27.4919 24.3664 36.5505 -Courier_New.ttf 77 , 11.5597 17.2297 33 £ -25.4497 26.2840 33.8435 -Courier_New.ttf 77 , 11.5597 17.2297 34 . 1.3834 8.8232 7.9800 -Courier_New.ttf 77 , 11.5597 17.2297 35 2 -27.6949 23.1732 36.3838 -Courier_New.ttf 77 , 11.5597 17.2297 36 5 -27.3536 23.7437 36.3838 -Courier_New.ttf 77 , 11.5597 17.2297 37 m -17.3387 35.1594 25.6135 -Courier_New.ttf 77 , 11.5597 17.2297 38 V -25.2886 35.1140 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 39 6 -27.7175 23.7959 36.7876 -Courier_New.ttf 77 , 11.5597 17.2297 40 w -16.6977 32.7502 25.2097 -Courier_New.ttf 77 , 11.5597 17.2297 41 T -24.9615 26.8590 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 42 M -24.9021 34.5367 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 43 G -25.3417 29.5621 34.4140 -Courier_New.ttf 77 , 11.5597 17.2297 44 b -27.6194 29.8826 36.5505 -Courier_New.ttf 77 , 11.5597 17.2297 45 9 -28.0789 22.4193 36.7876 -Courier_New.ttf 77 , 11.5597 17.2297 46 ; -16.5826 12.8068 30.9570 -Courier_New.ttf 77 , 11.5597 17.2297 47 D -25.1053 28.4394 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 48 L -25.1211 28.2727 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 49 y -16.5539 29.3121 36.2527 -Courier_New.ttf 77 , 11.5597 17.2297 50 ‘ -27.2371 12.7529 17.2297 -Courier_New.ttf 77 , 11.5597 17.2297 51 \ -30.6365 24.6392 44.3865 -Courier_New.ttf 77 , 11.5597 17.2297 52 R -25.0982 30.7070 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 53 < -23.6867 28.0000 31.5797 -Courier_New.ttf 77 , 11.5597 17.2297 54 4 -27.5127 22.3232 35.9800 -Courier_New.ttf 77 , 11.5597 17.2297 55 8 -28.1219 21.3094 36.7876 -Courier_New.ttf 77 , 11.5597 17.2297 56 0 -28.0751 23.6959 36.7876 -Courier_New.ttf 77 , 11.5597 17.2297 57 A -25.2081 37.1505 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 58 E -25.0425 27.3234 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 59 B -24.9604 28.4167 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 60 v -16.7827 32.1252 25.2097 -Courier_New.ttf 77 , 11.5597 17.2297 61 k -27.4495 26.6529 35.9800 -Courier_New.ttf 77 , 11.5597 17.2297 62 J -24.9489 28.6766 34.1640 -Courier_New.ttf 77 , 11.5597 17.2297 63 U -24.8291 31.3964 34.1640 -Courier_New.ttf 77 , 11.5597 17.2297 64 j -28.5585 18.4230 48.2928 -Courier_New.ttf 77 , 11.5597 17.2297 65 ( -27.4922 8.4065 43.1932 -Courier_New.ttf 77 , 11.5597 17.2297 66 7 -27.4216 22.0027 35.9800 -Courier_New.ttf 77 , 11.5597 17.2297 67 § -27.4760 27.1696 39.8097 -Courier_New.ttf 77 , 11.5597 17.2297 68 $ -30.3997 21.8261 44.3865 -Courier_New.ttf 77 , 11.5597 17.2297 69 € -25.5145 31.2297 34.4140 -Courier_New.ttf 77 , 11.5597 17.2297 70 / -31.0856 24.6392 44.3865 -Courier_New.ttf 77 , 11.5597 17.2297 71 C -25.0544 28.2727 34.4140 -Courier_New.ttf 77 , 11.5597 17.2297 72 * -27.4659 22.0860 21.9800 -Courier_New.ttf 77 , 11.5597 17.2297 73 ” -27.5167 24.6392 15.1932 -Courier_New.ttf 77 , 11.5597 17.2297 74 ? -25.7084 21.0594 34.9406 -Courier_New.ttf 77 , 11.5597 17.2297 75 { -27.7464 11.7324 43.3121 -Courier_New.ttf 77 , 11.5597 17.2297 76 } -27.2955 11.7324 43.3121 -Courier_New.ttf 77 , 11.5597 17.2297 77 , 0.2242 11.5597 17.2297 -Courier_New.ttf 77 , 11.5597 17.2297 78 I -25.1255 22.0860 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 79 ° -33.7244 15.7638 15.7638 -Courier_New.ttf 77 , 11.5597 17.2297 80 K -25.0221 31.2297 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 81 H -24.9526 28.4333 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 82 q -16.8433 29.1932 36.6565 -Courier_New.ttf 77 , 11.5597 17.2297 83 & -22.1590 21.9800 31.2070 -Courier_New.ttf 77 , 11.5597 17.2297 84 ’ -27.3899 12.7529 17.2297 -Courier_New.ttf 77 , 11.5597 17.2297 85 [ -27.5341 9.5998 43.1932 -Courier_New.ttf 77 , 11.5597 17.2297 86 - -9.5839 24.8892 3.2297 -Courier_New.ttf 77 , 11.5597 17.2297 87 Y -25.0703 29.3410 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 88 Q -25.1859 30.3865 40.7840 -Courier_New.ttf 77 , 11.5597 17.2297 89 " -27.4841 19.6995 16.0365 -Courier_New.ttf 77 , 11.5597 17.2297 90 ! -27.4197 6.4594 36.5505 -Courier_New.ttf 77 , 11.5597 17.2297 91 x -16.7066 29.1932 25.2097 -Courier_New.ttf 77 , 11.5597 17.2297 92 ) -27.2493 8.4065 43.1932 -Courier_New.ttf 77 , 11.5597 17.2297 93 = -14.0273 29.1932 11.3097 -Courier_New.ttf 77 , 11.5597 17.2297 94 + -22.5074 26.8590 29.2455 -Courier_New.ttf 77 , 11.5597 17.2297 95 X -24.9267 30.9092 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 96 » -17.0403 28.7766 26.8068 -Courier_New.ttf 77 , 11.5597 17.2297 97 ' -27.2756 7.9027 17.2297 -Courier_New.ttf 77 , 11.5597 17.2297 98 ¢ -29.4653 20.7867 38.0998 -Courier_New.ttf 77 , 11.5597 17.2297 99 Z -24.7520 23.0959 33.5935 -Courier_New.ttf 77 , 11.5597 17.2297 100 > -24.0323 28.0000 31.5797 -Courier_New.ttf 77 , 11.5597 17.2297 101 ® -25.7846 34.7867 35.0594 -Courier_New.ttf 77 , 11.5597 17.2297 102 © -25.7301 35.0594 34.7867 -Courier_New.ttf 77 , 11.5597 17.2297 103 ] -27.5560 9.5998 43.1932 -Courier_New.ttf 77 , 11.5597 17.2297 104 é -29.3480 27.4295 38.4203 -Courier_New.ttf 77 , 11.5597 17.2297 105 z -16.6032 23.7959 25.2097 -Courier_New.ttf 77 , 11.5597 17.2297 106 _ 22.6672 35.0594 2.3865 -Courier_New.ttf 77 , 11.5597 17.2297 107 ¥ -24.7876 29.6744 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 1 t -0.3125 26.2362 34.6034 -Courier_New.ttf 78 I 22.0860 33.5935 2 h -2.5023 29.6326 35.9800 -Courier_New.ttf 78 I 22.0860 33.5935 3 a 7.7714 26.9256 26.1840 -Courier_New.ttf 78 I 22.0860 33.5935 4 n 7.8428 29.2061 25.6135 -Courier_New.ttf 78 I 22.0860 33.5935 5 P 0.0417 26.0529 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 6 o 7.9085 26.8068 26.1840 -Courier_New.ttf 78 I 22.0860 33.5935 7 e 7.9814 27.4295 26.1840 -Courier_New.ttf 78 I 22.0860 33.5935 8 : 8.4807 8.6565 25.7802 -Courier_New.ttf 78 I 22.0860 33.5935 9 r 7.8643 26.8295 25.6135 -Courier_New.ttf 78 I 22.0860 33.5935 10 l -2.3983 24.4725 35.9800 -Courier_New.ttf 78 I 22.0860 33.5935 11 i -3.6948 24.4725 37.2498 -Courier_New.ttf 78 I 22.0860 33.5935 12 1 -4.1679 22.8527 37.5770 -Courier_New.ttf 78 I 22.0860 33.5935 13 | -2.3241 2.3865 43.1932 -Courier_New.ttf 78 I 22.0860 33.5935 14 N -0.3952 31.3964 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 15 f -2.3983 25.4696 35.9800 -Courier_New.ttf 78 I 22.0860 33.5935 16 g 7.8589 27.8462 36.6565 -Courier_New.ttf 78 I 22.0860 33.5935 17 d -2.3012 30.1138 36.5505 -Courier_New.ttf 78 I 22.0860 33.5935 18 W 0.0669 32.5836 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 19 s 8.4141 23.0959 26.1840 -Courier_New.ttf 78 I 22.0860 33.5935 20 c 7.7915 26.6529 26.1840 -Courier_New.ttf 78 I 22.0860 33.5935 21 u 8.3827 29.6326 25.7802 -Courier_New.ttf 78 I 22.0860 33.5935 22 3 -2.6217 23.6959 36.7876 -Courier_New.ttf 78 I 22.0860 33.5935 23 ~ 12.7277 24.8892 8.5732 -Courier_New.ttf 78 I 22.0860 33.5935 24 # -4.8996 25.0657 42.1962 -Courier_New.ttf 78 I 22.0860 33.5935 25 O -0.3560 29.1932 34.4140 -Courier_New.ttf 78 I 22.0860 33.5935 26 ` -4.4064 9.8498 8.6565 -Courier_New.ttf 78 I 22.0860 33.5935 27 @ -3.6066 22.0800 40.4029 -Courier_New.ttf 78 I 22.0860 33.5935 28 F -0.0714 27.3234 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 29 S 0.1484 24.5392 34.4140 -Courier_New.ttf 78 I 22.0860 33.5935 30 p 7.9962 29.8826 36.6565 -Courier_New.ttf 78 I 22.0860 33.5935 31 “ -2.4023 24.6392 15.1932 -Courier_New.ttf 78 I 22.0860 33.5935 32 % -2.3365 24.3664 36.5505 -Courier_New.ttf 78 I 22.0860 33.5935 33 £ -0.2045 26.2840 33.8435 -Courier_New.ttf 78 I 22.0860 33.5935 34 . 26.4894 8.8232 7.9800 -Courier_New.ttf 78 I 22.0860 33.5935 35 2 -3.0646 23.1732 36.3838 -Courier_New.ttf 78 I 22.0860 33.5935 36 5 -2.4666 23.7437 36.3838 -Courier_New.ttf 78 I 22.0860 33.5935 37 m 7.9980 35.1594 25.6135 -Courier_New.ttf 78 I 22.0860 33.5935 38 V 0.1626 35.1140 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 39 6 -2.2411 23.7959 36.7876 -Courier_New.ttf 78 I 22.0860 33.5935 40 w 8.3093 32.7502 25.2097 -Courier_New.ttf 78 I 22.0860 33.5935 41 T -0.1801 26.8590 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 42 M 0.0787 34.5367 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 43 G -0.1518 29.5621 34.4140 -Courier_New.ttf 78 I 22.0860 33.5935 44 b -2.3031 29.8826 36.5505 -Courier_New.ttf 78 I 22.0860 33.5935 45 9 -2.6167 22.4193 36.7876 -Courier_New.ttf 78 I 22.0860 33.5935 46 ; 8.5683 12.8068 30.9570 -Courier_New.ttf 78 I 22.0860 33.5935 47 D 0.1131 28.4394 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 48 L -0.2750 28.2727 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 49 y 8.4779 29.3121 36.2527 -Courier_New.ttf 78 I 22.0860 33.5935 50 ‘ -2.4263 12.7529 17.2297 -Courier_New.ttf 78 I 22.0860 33.5935 51 \ -5.5761 24.6392 44.3865 -Courier_New.ttf 78 I 22.0860 33.5935 52 R 0.0553 30.7070 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 53 < 1.3499 28.0000 31.5797 -Courier_New.ttf 78 I 22.0860 33.5935 54 4 -2.2994 22.3232 35.9800 -Courier_New.ttf 78 I 22.0860 33.5935 55 8 -2.5655 21.3094 36.7876 -Courier_New.ttf 78 I 22.0860 33.5935 56 0 -2.5675 23.6959 36.7876 -Courier_New.ttf 78 I 22.0860 33.5935 57 A -0.1844 37.1505 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 58 E 0.0357 27.3234 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 59 B 0.0097 28.4167 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 60 v 8.3727 32.1252 25.2097 -Courier_New.ttf 78 I 22.0860 33.5935 61 k -2.3662 26.6529 35.9800 -Courier_New.ttf 78 I 22.0860 33.5935 62 J -0.2868 28.6766 34.1640 -Courier_New.ttf 78 I 22.0860 33.5935 63 U -0.2730 31.3964 34.1640 -Courier_New.ttf 78 I 22.0860 33.5935 64 j -3.7616 18.4230 48.2928 -Courier_New.ttf 78 I 22.0860 33.5935 65 ( -2.2462 8.4065 43.1932 -Courier_New.ttf 78 I 22.0860 33.5935 66 7 -2.5079 22.0027 35.9800 -Courier_New.ttf 78 I 22.0860 33.5935 67 § -2.4281 27.1696 39.8097 -Courier_New.ttf 78 I 22.0860 33.5935 68 $ -5.5912 21.8261 44.3865 -Courier_New.ttf 78 I 22.0860 33.5935 69 € -0.3788 31.2297 34.4140 -Courier_New.ttf 78 I 22.0860 33.5935 70 / -6.3723 24.6392 44.3865 -Courier_New.ttf 78 I 22.0860 33.5935 71 C -0.3154 28.2727 34.4140 -Courier_New.ttf 78 I 22.0860 33.5935 72 * -2.3924 22.0860 21.9800 -Courier_New.ttf 78 I 22.0860 33.5935 73 ” -2.2168 24.6392 15.1932 -Courier_New.ttf 78 I 22.0860 33.5935 74 ? -0.5153 21.0594 34.9406 -Courier_New.ttf 78 I 22.0860 33.5935 75 { -3.1116 11.7324 43.3121 -Courier_New.ttf 78 I 22.0860 33.5935 76 } -2.6630 11.7324 43.3121 -Courier_New.ttf 78 I 22.0860 33.5935 77 , 25.1767 11.5597 17.2297 -Courier_New.ttf 78 I 22.0860 33.5935 78 I -0.0246 22.0860 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 79 ° -8.8372 15.7638 15.7638 -Courier_New.ttf 78 I 22.0860 33.5935 80 K -0.1853 31.2297 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 81 H 0.1224 28.4333 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 82 q 8.0030 29.1932 36.6565 -Courier_New.ttf 78 I 22.0860 33.5935 83 & 2.7731 21.9800 31.2070 -Courier_New.ttf 78 I 22.0860 33.5935 84 ’ -2.5964 12.7529 17.2297 -Courier_New.ttf 78 I 22.0860 33.5935 85 [ -2.5836 9.5998 43.1932 -Courier_New.ttf 78 I 22.0860 33.5935 86 - 14.9463 24.8892 3.2297 -Courier_New.ttf 78 I 22.0860 33.5935 87 Y 0.0365 29.3410 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 88 Q -0.3955 30.3865 40.7840 -Courier_New.ttf 78 I 22.0860 33.5935 89 " -2.4274 19.6995 16.0365 -Courier_New.ttf 78 I 22.0860 33.5935 90 ! -2.5386 6.4594 36.5505 -Courier_New.ttf 78 I 22.0860 33.5935 91 x 8.3278 29.1932 25.2097 -Courier_New.ttf 78 I 22.0860 33.5935 92 ) -2.2421 8.4065 43.1932 -Courier_New.ttf 78 I 22.0860 33.5935 93 = 10.8011 29.1932 11.3097 -Courier_New.ttf 78 I 22.0860 33.5935 94 + 2.3762 26.8590 29.2455 -Courier_New.ttf 78 I 22.0860 33.5935 95 X 0.1242 30.9092 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 96 » 7.8982 29.5432 26.8068 -Courier_New.ttf 78 I 22.0860 33.5935 97 ' -2.4735 7.9027 17.2297 -Courier_New.ttf 78 I 22.0860 33.5935 98 ¢ -4.6017 20.7867 38.0998 -Courier_New.ttf 78 I 22.0860 33.5935 99 Z 0.1815 23.0959 33.5935 -Courier_New.ttf 78 I 22.0860 33.5935 100 > 1.2466 28.0000 31.5797 -Courier_New.ttf 78 I 22.0860 33.5935 101 ® -0.8857 34.7867 35.0594 -Courier_New.ttf 78 I 22.0860 33.5935 102 © -0.5870 35.0594 34.7867 -Courier_New.ttf 78 I 22.0860 33.5935 103 ] -2.2521 9.5998 43.1932 -Courier_New.ttf 78 I 22.0860 33.5935 104 é -4.2853 27.4295 38.4203 -Courier_New.ttf 78 I 22.0860 33.5935 105 z 8.3096 23.7959 25.2097 -Courier_New.ttf 78 I 22.0860 33.5935 106 _ 47.4337 35.0594 2.3865 -Courier_New.ttf 78 I 22.0860 33.5935 107 ¥ 0.0974 29.6744 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 1 t 8.2514 26.2362 34.6034 -Courier_New.ttf 79 ° 15.7638 15.7638 2 h 6.2220 29.6326 35.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 3 a 16.6585 26.9256 26.1840 -Courier_New.ttf 79 ° 15.7638 15.7638 4 n 16.7879 29.2061 25.6135 -Courier_New.ttf 79 ° 15.7638 15.7638 5 P 8.5237 26.0529 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 6 o 16.3765 26.8068 26.1840 -Courier_New.ttf 79 ° 15.7638 15.7638 7 e 16.5766 27.4295 26.1840 -Courier_New.ttf 79 ° 15.7638 15.7638 8 : 17.0890 8.6565 25.7802 -Courier_New.ttf 79 ° 15.7638 15.7638 9 r 16.4965 26.8295 25.6135 -Courier_New.ttf 79 ° 15.7638 15.7638 10 l 6.3649 24.4725 35.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 11 i 5.1050 24.4725 37.2498 -Courier_New.ttf 79 ° 15.7638 15.7638 12 1 4.7087 22.8527 37.5770 -Courier_New.ttf 79 ° 15.7638 15.7638 13 | 6.2805 2.3865 43.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 14 N 8.7251 31.3964 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 15 f 6.2816 25.4696 35.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 16 g 16.6921 27.8462 36.6565 -Courier_New.ttf 79 ° 15.7638 15.7638 17 d 6.3805 30.1138 36.5505 -Courier_New.ttf 79 ° 15.7638 15.7638 18 W 8.8390 32.5836 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 19 s 16.6878 23.0959 26.1840 -Courier_New.ttf 79 ° 15.7638 15.7638 20 c 16.5220 26.6529 26.1840 -Courier_New.ttf 79 ° 15.7638 15.7638 21 u 17.0371 29.6326 25.7802 -Courier_New.ttf 79 ° 15.7638 15.7638 22 3 6.0175 23.6959 36.7876 -Courier_New.ttf 79 ° 15.7638 15.7638 23 ~ 21.4360 24.8892 8.5732 -Courier_New.ttf 79 ° 15.7638 15.7638 24 # 3.9310 25.0657 42.1962 -Courier_New.ttf 79 ° 15.7638 15.7638 25 O 8.5750 29.1932 34.4140 -Courier_New.ttf 79 ° 15.7638 15.7638 26 ` 4.4730 9.8498 8.6565 -Courier_New.ttf 79 ° 15.7638 15.7638 27 @ 4.9009 22.0800 40.4029 -Courier_New.ttf 79 ° 15.7638 15.7638 28 F 8.7579 27.3234 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 29 S 8.6757 24.5392 34.4140 -Courier_New.ttf 79 ° 15.7638 15.7638 30 p 16.8067 29.8826 36.6565 -Courier_New.ttf 79 ° 15.7638 15.7638 31 “ 6.4149 24.6392 15.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 32 % 6.5085 24.3664 36.5505 -Courier_New.ttf 79 ° 15.7638 15.7638 33 £ 8.4369 26.2840 33.8435 -Courier_New.ttf 79 ° 15.7638 15.7638 34 . 35.1204 8.8232 7.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 35 2 5.8119 23.1732 36.3838 -Courier_New.ttf 79 ° 15.7638 15.7638 36 5 6.4629 23.7437 36.3838 -Courier_New.ttf 79 ° 15.7638 15.7638 37 m 16.7064 35.1594 25.6135 -Courier_New.ttf 79 ° 15.7638 15.7638 38 V 8.8326 35.1140 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 39 6 5.9686 23.7959 36.7876 -Courier_New.ttf 79 ° 15.7638 15.7638 40 w 17.5953 32.7502 25.2097 -Courier_New.ttf 79 ° 15.7638 15.7638 41 T 8.7939 26.8590 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 42 M 8.8286 34.5367 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 43 G 8.7322 29.5621 34.4140 -Courier_New.ttf 79 ° 15.7638 15.7638 44 b 6.4085 29.8826 36.5505 -Courier_New.ttf 79 ° 15.7638 15.7638 45 9 5.8484 22.4193 36.7876 -Courier_New.ttf 79 ° 15.7638 15.7638 46 ; 17.3671 12.8068 30.9570 -Courier_New.ttf 79 ° 15.7638 15.7638 47 D 8.5655 28.4394 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 48 L 8.6557 28.2727 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 49 y 17.1931 29.3121 36.2527 -Courier_New.ttf 79 ° 15.7638 15.7638 50 ‘ 6.3138 12.7529 17.2297 -Courier_New.ttf 79 ° 15.7638 15.7638 51 \ 3.1338 24.6392 44.3865 -Courier_New.ttf 79 ° 15.7638 15.7638 52 R 8.6778 30.7070 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 53 < 10.0298 28.0000 31.5797 -Courier_New.ttf 79 ° 15.7638 15.7638 54 4 6.2594 22.3232 35.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 55 8 6.0981 21.3094 36.7876 -Courier_New.ttf 79 ° 15.7638 15.7638 56 0 5.8878 23.6959 36.7876 -Courier_New.ttf 79 ° 15.7638 15.7638 57 A 8.8768 37.1505 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 58 E 8.7255 27.3234 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 59 B 8.6649 28.4167 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 60 v 17.1865 32.1252 25.2097 -Courier_New.ttf 79 ° 15.7638 15.7638 61 k 6.5410 26.6529 35.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 62 J 8.9079 28.6766 34.1640 -Courier_New.ttf 79 ° 15.7638 15.7638 63 U 8.7565 31.3964 34.1640 -Courier_New.ttf 79 ° 15.7638 15.7638 64 j 4.9247 18.4230 48.2928 -Courier_New.ttf 79 ° 15.7638 15.7638 65 ( 6.0119 8.4065 43.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 66 7 6.1296 22.0027 35.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 67 § 6.4410 27.1696 39.8097 -Courier_New.ttf 79 ° 15.7638 15.7638 68 $ 3.4455 21.8261 44.3865 -Courier_New.ttf 79 ° 15.7638 15.7638 69 € 8.2550 31.2297 34.4140 -Courier_New.ttf 79 ° 15.7638 15.7638 70 / 2.8728 24.6392 44.3865 -Courier_New.ttf 79 ° 15.7638 15.7638 71 C 8.4448 28.2727 34.4140 -Courier_New.ttf 79 ° 15.7638 15.7638 72 * 6.4095 22.0860 21.9800 -Courier_New.ttf 79 ° 15.7638 15.7638 73 ” 6.2776 24.6392 15.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 74 ? 7.6998 21.0594 34.9406 -Courier_New.ttf 79 ° 15.7638 15.7638 75 { 6.1942 11.7324 43.3121 -Courier_New.ttf 79 ° 15.7638 15.7638 76 } 6.2674 11.7324 43.3121 -Courier_New.ttf 79 ° 15.7638 15.7638 77 , 33.8191 11.5597 17.2297 -Courier_New.ttf 79 ° 15.7638 15.7638 78 I 8.9151 22.0860 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 79 ° 0.0686 15.7638 15.7638 -Courier_New.ttf 79 ° 15.7638 15.7638 80 K 9.0789 31.2297 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 81 H 8.6370 28.4333 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 82 q 16.7702 29.1932 36.6565 -Courier_New.ttf 79 ° 15.7638 15.7638 83 & 11.5367 21.9800 31.2070 -Courier_New.ttf 79 ° 15.7638 15.7638 84 ’ 6.2837 12.7529 17.2297 -Courier_New.ttf 79 ° 15.7638 15.7638 85 [ 6.7056 9.5998 43.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 86 - 23.9642 24.8892 3.2297 -Courier_New.ttf 79 ° 15.7638 15.7638 87 Y 9.0976 29.3410 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 88 Q 8.4149 30.3865 40.7840 -Courier_New.ttf 79 ° 15.7638 15.7638 89 " 6.4760 19.6995 16.0365 -Courier_New.ttf 79 ° 15.7638 15.7638 90 ! 6.0905 6.4594 36.5505 -Courier_New.ttf 79 ° 15.7638 15.7638 91 x 17.1085 29.1932 25.2097 -Courier_New.ttf 79 ° 15.7638 15.7638 92 ) 6.4664 8.4065 43.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 93 = 19.6610 29.1932 11.3097 -Courier_New.ttf 79 ° 15.7638 15.7638 94 + 11.4993 26.8590 29.2455 -Courier_New.ttf 79 ° 15.7638 15.7638 95 X 8.8638 30.9092 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 96 » 16.4738 28.7766 26.8068 -Courier_New.ttf 79 ° 15.7638 15.7638 97 ' 6.3623 7.9027 17.2297 -Courier_New.ttf 79 ° 15.7638 15.7638 98 ¢ 4.3769 20.7867 38.0998 -Courier_New.ttf 79 ° 15.7638 15.7638 99 Z 8.9224 23.0959 33.5935 -Courier_New.ttf 79 ° 15.7638 15.7638 100 > 9.6860 28.0000 31.5797 -Courier_New.ttf 79 ° 15.7638 15.7638 101 ® 7.7527 34.7867 35.0594 -Courier_New.ttf 79 ° 15.7638 15.7638 102 © 8.2639 35.0594 34.7867 -Courier_New.ttf 79 ° 15.7638 15.7638 103 ] 6.2112 9.5998 43.1932 -Courier_New.ttf 79 ° 15.7638 15.7638 104 é 4.7102 27.4295 38.4203 -Courier_New.ttf 79 ° 15.7638 15.7638 105 z 17.4782 23.7959 25.2097 -Courier_New.ttf 79 ° 15.7638 15.7638 106 _ 56.4704 35.0594 2.3865 -Courier_New.ttf 79 ° 15.7638 15.7638 107 ¥ 9.0294 29.6744 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 1 t -0.3319 26.2362 34.6034 -Courier_New.ttf 80 K 31.2297 33.5935 2 h -2.4203 29.6326 35.9800 -Courier_New.ttf 80 K 31.2297 33.5935 3 a 7.7030 26.9256 26.1840 -Courier_New.ttf 80 K 31.2297 33.5935 4 n 8.2619 29.2061 25.6135 -Courier_New.ttf 80 K 31.2297 33.5935 5 P 0.1506 26.0529 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 6 o 8.0981 26.8068 26.1840 -Courier_New.ttf 80 K 31.2297 33.5935 7 e 7.7367 27.4295 26.1840 -Courier_New.ttf 80 K 31.2297 33.5935 8 : 8.1939 8.6565 25.7802 -Courier_New.ttf 80 K 31.2297 33.5935 9 r 8.1190 26.8295 25.6135 -Courier_New.ttf 80 K 31.2297 33.5935 10 l -2.5172 24.4725 35.9800 -Courier_New.ttf 80 K 31.2297 33.5935 11 i -3.8663 24.4725 37.2498 -Courier_New.ttf 80 K 31.2297 33.5935 12 1 -4.0395 22.8527 37.5770 -Courier_New.ttf 80 K 31.2297 33.5935 13 | -2.3008 2.3865 43.1932 -Courier_New.ttf 80 K 31.2297 33.5935 14 N -0.1193 31.3964 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 15 f -2.1979 25.4696 35.9800 -Courier_New.ttf 80 K 31.2297 33.5935 16 g 7.8883 27.8462 36.6565 -Courier_New.ttf 80 K 31.2297 33.5935 17 d -2.4104 30.1138 36.5505 -Courier_New.ttf 80 K 31.2297 33.5935 18 W 0.0083 32.5836 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 19 s 7.9953 23.0959 26.1840 -Courier_New.ttf 80 K 31.2297 33.5935 20 c 8.1020 26.6529 26.1840 -Courier_New.ttf 80 K 31.2297 33.5935 21 u 8.3421 29.6326 25.7802 -Courier_New.ttf 80 K 31.2297 33.5935 22 3 -2.9113 23.6959 36.7876 -Courier_New.ttf 80 K 31.2297 33.5935 23 ~ 12.3052 24.8892 8.5732 -Courier_New.ttf 80 K 31.2297 33.5935 24 # -4.6807 25.0657 42.1962 -Courier_New.ttf 80 K 31.2297 33.5935 25 O -0.4145 29.1932 34.4140 -Courier_New.ttf 80 K 31.2297 33.5935 26 ` -4.5355 9.8498 8.6565 -Courier_New.ttf 80 K 31.2297 33.5935 27 @ -3.6496 22.0800 40.4029 -Courier_New.ttf 80 K 31.2297 33.5935 28 F -0.0422 27.3234 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 29 S -0.3255 24.5392 34.4140 -Courier_New.ttf 80 K 31.2297 33.5935 30 p 8.0657 29.8826 36.6565 -Courier_New.ttf 80 K 31.2297 33.5935 31 “ -2.4176 24.6392 15.1932 -Courier_New.ttf 80 K 31.2297 33.5935 32 % -2.5069 24.3664 36.5505 -Courier_New.ttf 80 K 31.2297 33.5935 33 £ -0.1500 26.2840 33.8435 -Courier_New.ttf 80 K 31.2297 33.5935 34 . 26.4678 8.8232 7.9800 -Courier_New.ttf 80 K 31.2297 33.5935 35 2 -3.1541 23.1732 36.3838 -Courier_New.ttf 80 K 31.2297 33.5935 36 5 -2.5586 23.7437 36.3838 -Courier_New.ttf 80 K 31.2297 33.5935 37 m 7.8345 35.1594 25.6135 -Courier_New.ttf 80 K 31.2297 33.5935 38 V -0.0086 35.1140 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 39 6 -2.6423 23.7959 36.7876 -Courier_New.ttf 80 K 31.2297 33.5935 40 w 8.2735 32.7502 25.2097 -Courier_New.ttf 80 K 31.2297 33.5935 41 T -0.2562 26.8590 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 42 M 0.0111 34.5367 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 43 G -0.3599 29.5621 34.4140 -Courier_New.ttf 80 K 31.2297 33.5935 44 b -2.2849 29.8826 36.5505 -Courier_New.ttf 80 K 31.2297 33.5935 45 9 -2.8502 22.4193 36.7876 -Courier_New.ttf 80 K 31.2297 33.5935 46 ; 8.2072 12.8068 30.9570 -Courier_New.ttf 80 K 31.2297 33.5935 47 D -0.2054 28.4394 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 48 L 0.1669 28.2727 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 49 y 8.5451 29.3121 36.2527 -Courier_New.ttf 80 K 31.2297 33.5935 50 ‘ -2.6549 12.7529 17.2297 -Courier_New.ttf 80 K 31.2297 33.5935 51 \ -5.6375 24.6392 44.3865 -Courier_New.ttf 80 K 31.2297 33.5935 52 R 0.2678 30.7070 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 53 < 0.8748 28.0000 31.5797 -Courier_New.ttf 80 K 31.2297 33.5935 54 4 -2.1440 22.3232 35.9800 -Courier_New.ttf 80 K 31.2297 33.5935 55 8 -2.5620 21.3094 36.7876 -Courier_New.ttf 80 K 31.2297 33.5935 56 0 -2.9431 23.6959 36.7876 -Courier_New.ttf 80 K 31.2297 33.5935 57 A -0.0573 37.1505 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 58 E 0.0385 27.3234 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 59 B -0.0065 28.4167 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 60 v 8.7120 32.1252 25.2097 -Courier_New.ttf 80 K 31.2297 33.5935 61 k -2.4319 26.6529 35.9800 -Courier_New.ttf 80 K 31.2297 33.5935 62 J 0.0689 28.6766 34.1640 -Courier_New.ttf 80 K 31.2297 33.5935 63 U -0.0027 31.3964 34.1640 -Courier_New.ttf 80 K 31.2297 33.5935 64 j -3.7878 18.4230 48.2928 -Courier_New.ttf 80 K 31.2297 33.5935 65 ( -2.3255 8.4065 43.1932 -Courier_New.ttf 80 K 31.2297 33.5935 66 7 -2.2784 22.0027 35.9800 -Courier_New.ttf 80 K 31.2297 33.5935 67 § -2.1445 27.1696 39.8097 -Courier_New.ttf 80 K 31.2297 33.5935 68 $ -5.7077 21.8261 44.3865 -Courier_New.ttf 80 K 31.2297 33.5935 69 € -0.3271 31.2297 34.4140 -Courier_New.ttf 80 K 31.2297 33.5935 70 / -6.2060 24.6392 44.3865 -Courier_New.ttf 80 K 31.2297 33.5935 71 C -0.0512 28.2727 34.4140 -Courier_New.ttf 80 K 31.2297 33.5935 72 * -2.2369 22.0860 21.9800 -Courier_New.ttf 80 K 31.2297 33.5935 73 ” -2.1241 24.6392 15.1932 -Courier_New.ttf 80 K 31.2297 33.5935 74 ? -0.7357 21.0594 34.9406 -Courier_New.ttf 80 K 31.2297 33.5935 75 { -2.7826 11.7324 43.3121 -Courier_New.ttf 80 K 31.2297 33.5935 76 } -2.2523 11.7324 43.3121 -Courier_New.ttf 80 K 31.2297 33.5935 77 , 25.0598 11.5597 17.2297 -Courier_New.ttf 80 K 31.2297 33.5935 78 I 0.1326 22.0860 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 79 ° -8.7351 15.7638 15.7638 -Courier_New.ttf 80 K 31.2297 33.5935 80 K 0.3257 31.2297 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 81 H 0.5407 28.4333 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 82 q 8.0082 29.1932 36.6565 -Courier_New.ttf 80 K 31.2297 33.5935 83 & 2.9644 21.9800 31.2070 -Courier_New.ttf 80 K 31.2297 33.5935 84 ’ -2.6684 12.7529 17.2297 -Courier_New.ttf 80 K 31.2297 33.5935 85 [ -2.4499 9.5998 43.1932 -Courier_New.ttf 80 K 31.2297 33.5935 86 - 15.2675 24.8892 3.2297 -Courier_New.ttf 80 K 31.2297 33.5935 87 Y -0.2665 29.3410 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 88 Q -0.2728 30.3865 40.7840 -Courier_New.ttf 80 K 31.2297 33.5935 89 " -2.6738 19.6995 16.0365 -Courier_New.ttf 80 K 31.2297 33.5935 90 ! -2.2676 6.4594 36.5505 -Courier_New.ttf 80 K 31.2297 33.5935 91 x 8.4215 29.1932 25.2097 -Courier_New.ttf 80 K 31.2297 33.5935 92 ) -2.2234 8.4065 43.1932 -Courier_New.ttf 80 K 31.2297 33.5935 93 = 11.1256 29.1932 11.3097 -Courier_New.ttf 80 K 31.2297 33.5935 94 + 2.6286 26.8590 29.2455 -Courier_New.ttf 80 K 31.2297 33.5935 95 X 0.0565 30.9092 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 96 » 7.8355 29.5432 26.8068 -Courier_New.ttf 80 K 31.2297 33.5935 97 ' -2.2160 7.9027 17.2297 -Courier_New.ttf 80 K 31.2297 33.5935 98 ¢ -4.5346 20.7867 38.0998 -Courier_New.ttf 80 K 31.2297 33.5935 99 Z -0.0045 23.0959 33.5935 -Courier_New.ttf 80 K 31.2297 33.5935 100 > 1.2933 28.0000 31.5797 -Courier_New.ttf 80 K 31.2297 33.5935 101 ® -0.8798 34.7867 35.0594 -Courier_New.ttf 80 K 31.2297 33.5935 102 © -0.7918 35.0594 34.7867 -Courier_New.ttf 80 K 31.2297 33.5935 103 ] -2.4494 9.5998 43.1932 -Courier_New.ttf 80 K 31.2297 33.5935 104 é -4.2311 27.4295 38.4203 -Courier_New.ttf 80 K 31.2297 33.5935 105 z 8.4689 23.7959 25.2097 -Courier_New.ttf 80 K 31.2297 33.5935 106 _ 47.5909 35.0594 2.3865 -Courier_New.ttf 80 K 31.2297 33.5935 107 ¥ 0.0597 29.6744 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 1 t -0.0599 26.2362 34.6034 -Courier_New.ttf 81 H 28.4333 33.5935 2 h -2.4566 29.6326 35.9800 -Courier_New.ttf 81 H 28.4333 33.5935 3 a 8.1111 26.9256 26.1840 -Courier_New.ttf 81 H 28.4333 33.5935 4 n 7.9905 29.2061 25.6135 -Courier_New.ttf 81 H 28.4333 33.5935 5 P -0.0083 26.0529 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 6 o 8.0451 26.8068 26.1840 -Courier_New.ttf 81 H 28.4333 33.5935 7 e 7.9318 27.4295 26.1840 -Courier_New.ttf 81 H 28.4333 33.5935 8 : 8.5886 8.6565 25.7802 -Courier_New.ttf 81 H 28.4333 33.5935 9 r 8.0072 26.8295 25.6135 -Courier_New.ttf 81 H 28.4333 33.5935 10 l -2.0066 24.4725 35.9800 -Courier_New.ttf 81 H 28.4333 33.5935 11 i -3.7866 24.4725 37.2498 -Courier_New.ttf 81 H 28.4333 33.5935 12 1 -3.9220 22.8527 37.5770 -Courier_New.ttf 81 H 28.4333 33.5935 13 | -2.5639 2.3865 43.1932 -Courier_New.ttf 81 H 28.4333 33.5935 14 N 0.0527 31.3964 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 15 f -2.4417 25.4696 35.9800 -Courier_New.ttf 81 H 28.4333 33.5935 16 g 7.8830 27.8462 36.6565 -Courier_New.ttf 81 H 28.4333 33.5935 17 d -2.4484 30.1138 36.5505 -Courier_New.ttf 81 H 28.4333 33.5935 18 W -0.0629 32.5836 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 19 s 8.0161 23.0959 26.1840 -Courier_New.ttf 81 H 28.4333 33.5935 20 c 8.2749 26.6529 26.1840 -Courier_New.ttf 81 H 28.4333 33.5935 21 u 8.2578 29.6326 25.7802 -Courier_New.ttf 81 H 28.4333 33.5935 22 3 -2.8362 23.6959 36.7876 -Courier_New.ttf 81 H 28.4333 33.5935 23 ~ 12.6322 24.8892 8.5732 -Courier_New.ttf 81 H 28.4333 33.5935 24 # -4.8198 25.0657 42.1962 -Courier_New.ttf 81 H 28.4333 33.5935 25 O -0.3780 29.1932 34.4140 -Courier_New.ttf 81 H 28.4333 33.5935 26 ` -4.0015 9.8498 8.6565 -Courier_New.ttf 81 H 28.4333 33.5935 27 @ -4.1320 22.0800 40.4029 -Courier_New.ttf 81 H 28.4333 33.5935 28 F 0.4250 27.3234 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 29 S -0.0905 24.5392 34.4140 -Courier_New.ttf 81 H 28.4333 33.5935 30 p 7.9428 29.8826 36.6565 -Courier_New.ttf 81 H 28.4333 33.5935 31 “ -2.1457 24.6392 15.1932 -Courier_New.ttf 81 H 28.4333 33.5935 32 % -2.5774 24.3664 36.5505 -Courier_New.ttf 81 H 28.4333 33.5935 33 £ 0.0671 26.2840 33.8435 -Courier_New.ttf 81 H 28.4333 33.5935 34 . 26.1451 8.8232 7.9800 -Courier_New.ttf 81 H 28.4333 33.5935 35 2 -2.9135 23.1732 36.3838 -Courier_New.ttf 81 H 28.4333 33.5935 36 5 -2.2678 23.7437 36.3838 -Courier_New.ttf 81 H 28.4333 33.5935 37 m 8.0285 35.1594 25.6135 -Courier_New.ttf 81 H 28.4333 33.5935 38 V 0.2110 35.1140 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 39 6 -2.4944 23.7959 36.7876 -Courier_New.ttf 81 H 28.4333 33.5935 40 w 8.4104 32.7502 25.2097 -Courier_New.ttf 81 H 28.4333 33.5935 41 T 0.4095 26.8590 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 42 M -0.1046 34.5367 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 43 G -0.3774 29.5621 34.4140 -Courier_New.ttf 81 H 28.4333 33.5935 44 b -2.3883 29.8826 36.5505 -Courier_New.ttf 81 H 28.4333 33.5935 45 9 -2.6374 22.4193 36.7876 -Courier_New.ttf 81 H 28.4333 33.5935 46 ; 8.6693 12.8068 30.9570 -Courier_New.ttf 81 H 28.4333 33.5935 47 D -0.0676 28.4394 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 48 L 0.0917 28.2727 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 49 y 8.5664 29.3121 36.2527 -Courier_New.ttf 81 H 28.4333 33.5935 50 ‘ -2.5120 12.7529 17.2297 -Courier_New.ttf 81 H 28.4333 33.5935 51 \ -5.6148 24.6392 44.3865 -Courier_New.ttf 81 H 28.4333 33.5935 52 R 0.2498 30.7070 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 53 < 1.2489 28.0000 31.5797 -Courier_New.ttf 81 H 28.4333 33.5935 54 4 -2.3501 22.3232 35.9800 -Courier_New.ttf 81 H 28.4333 33.5935 55 8 -2.8163 21.3094 36.7876 -Courier_New.ttf 81 H 28.4333 33.5935 56 0 -2.8871 23.6959 36.7876 -Courier_New.ttf 81 H 28.4333 33.5935 57 A 0.0313 37.1505 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 58 E 0.2118 27.3234 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 59 B -0.4425 28.4167 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 60 v 8.6729 32.1252 25.2097 -Courier_New.ttf 81 H 28.4333 33.5935 61 k -2.2944 26.6529 35.9800 -Courier_New.ttf 81 H 28.4333 33.5935 62 J -0.0350 28.6766 34.1640 -Courier_New.ttf 81 H 28.4333 33.5935 63 U -0.2728 31.3964 34.1640 -Courier_New.ttf 81 H 28.4333 33.5935 64 j -3.5181 18.4230 48.2928 -Courier_New.ttf 81 H 28.4333 33.5935 65 ( -2.2109 8.4065 43.1932 -Courier_New.ttf 81 H 28.4333 33.5935 66 7 -2.3662 22.0027 35.9800 -Courier_New.ttf 81 H 28.4333 33.5935 67 § -2.4676 27.1696 39.8097 -Courier_New.ttf 81 H 28.4333 33.5935 68 $ -5.4222 21.8261 44.3865 -Courier_New.ttf 81 H 28.4333 33.5935 69 € 0.0178 31.2297 34.4140 -Courier_New.ttf 81 H 28.4333 33.5935 70 / -6.3281 24.6392 44.3865 -Courier_New.ttf 81 H 28.4333 33.5935 71 C -0.5438 28.2727 34.4140 -Courier_New.ttf 81 H 28.4333 33.5935 72 * -2.3581 22.0860 21.9800 -Courier_New.ttf 81 H 28.4333 33.5935 73 ” -1.9952 24.6392 15.1932 -Courier_New.ttf 81 H 28.4333 33.5935 74 ? -0.8240 21.0594 34.9406 -Courier_New.ttf 81 H 28.4333 33.5935 75 { -2.9463 11.7324 43.3121 -Courier_New.ttf 81 H 28.4333 33.5935 76 } -2.4080 11.7324 43.3121 -Courier_New.ttf 81 H 28.4333 33.5935 77 , 25.0477 11.5597 17.2297 -Courier_New.ttf 81 H 28.4333 33.5935 78 I -0.0208 22.0860 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 79 ° -8.9692 15.7638 15.7638 -Courier_New.ttf 81 H 28.4333 33.5935 80 K -0.0553 31.2297 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 81 H -0.1095 28.4333 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 82 q 8.0230 29.1932 36.6565 -Courier_New.ttf 81 H 28.4333 33.5935 83 & 3.1026 21.9800 31.2070 -Courier_New.ttf 81 H 28.4333 33.5935 84 ’ -2.4114 12.7529 17.2297 -Courier_New.ttf 81 H 28.4333 33.5935 85 [ -2.2934 9.5998 43.1932 -Courier_New.ttf 81 H 28.4333 33.5935 86 - 15.2642 24.8892 3.2297 -Courier_New.ttf 81 H 28.4333 33.5935 87 Y -0.1696 29.3410 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 88 Q -0.3979 30.3865 40.7840 -Courier_New.ttf 81 H 28.4333 33.5935 89 " -2.5923 19.6995 16.0365 -Courier_New.ttf 81 H 28.4333 33.5935 90 ! -2.3299 6.4594 36.5505 -Courier_New.ttf 81 H 28.4333 33.5935 91 x 8.4506 29.1932 25.2097 -Courier_New.ttf 81 H 28.4333 33.5935 92 ) -2.3865 8.4065 43.1932 -Courier_New.ttf 81 H 28.4333 33.5935 93 = 10.8854 29.1932 11.3097 -Courier_New.ttf 81 H 28.4333 33.5935 94 + 2.4160 26.8590 29.2455 -Courier_New.ttf 81 H 28.4333 33.5935 95 X -0.1357 30.9092 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 96 » 8.0646 29.5432 26.8068 -Courier_New.ttf 81 H 28.4333 33.5935 97 ' -2.4032 7.9027 17.2297 -Courier_New.ttf 81 H 28.4333 33.5935 98 ¢ -4.3652 20.7867 38.0998 -Courier_New.ttf 81 H 28.4333 33.5935 99 Z 0.0214 23.0959 33.5935 -Courier_New.ttf 81 H 28.4333 33.5935 100 > 1.3076 28.0000 31.5797 -Courier_New.ttf 81 H 28.4333 33.5935 101 ® -1.1785 34.7867 35.0594 -Courier_New.ttf 81 H 28.4333 33.5935 102 © -0.5630 35.0594 34.7867 -Courier_New.ttf 81 H 28.4333 33.5935 103 ] -2.5062 9.5998 43.1932 -Courier_New.ttf 81 H 28.4333 33.5935 104 é -4.5247 27.4295 38.4203 -Courier_New.ttf 81 H 28.4333 33.5935 105 z 8.3814 23.7959 25.2097 -Courier_New.ttf 81 H 28.4333 33.5935 106 _ 47.6819 35.0594 2.3865 -Courier_New.ttf 81 H 28.4333 33.5935 107 ¥ 0.0774 29.6744 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 1 t -8.4055 26.2362 34.6034 -Courier_New.ttf 82 q 29.1932 36.6565 2 h -10.2758 29.6326 35.9800 -Courier_New.ttf 82 q 29.1932 36.6565 3 a 0.4085 26.9256 26.1840 -Courier_New.ttf 82 q 29.1932 36.6565 4 n 0.0357 29.2061 25.6135 -Courier_New.ttf 82 q 29.1932 36.6565 5 P -7.8602 26.0529 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 6 o -0.1975 26.8068 26.1840 -Courier_New.ttf 82 q 29.1932 36.6565 7 e -0.0909 27.4295 26.1840 -Courier_New.ttf 82 q 29.1932 36.6565 8 : 0.4993 8.6565 25.7802 -Courier_New.ttf 82 q 29.1932 36.6565 9 r 0.1885 26.8295 25.6135 -Courier_New.ttf 82 q 29.1932 36.6565 10 l -10.3520 24.4725 35.9800 -Courier_New.ttf 82 q 29.1932 36.6565 11 i -11.6891 24.4725 37.2498 -Courier_New.ttf 82 q 29.1932 36.6565 12 1 -12.1069 22.8527 37.5770 -Courier_New.ttf 82 q 29.1932 36.6565 13 | -10.3219 2.3865 43.1932 -Courier_New.ttf 82 q 29.1932 36.6565 14 N -7.6532 31.3964 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 15 f -10.5180 25.4696 35.9800 -Courier_New.ttf 82 q 29.1932 36.6565 16 g -0.0830 27.8462 36.6565 -Courier_New.ttf 82 q 29.1932 36.6565 17 d -10.2727 30.1138 36.5505 -Courier_New.ttf 82 q 29.1932 36.6565 18 W -8.0230 32.5836 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 19 s -0.3256 23.0959 26.1840 -Courier_New.ttf 82 q 29.1932 36.6565 20 c 0.1385 26.6529 26.1840 -Courier_New.ttf 82 q 29.1932 36.6565 21 u 0.3429 29.6326 25.7802 -Courier_New.ttf 82 q 29.1932 36.6565 22 3 -10.8248 23.6959 36.7876 -Courier_New.ttf 82 q 29.1932 36.6565 23 ~ 4.2134 24.8892 8.5732 -Courier_New.ttf 82 q 29.1932 36.6565 24 # -12.7515 25.0657 42.1962 -Courier_New.ttf 82 q 29.1932 36.6565 25 O -7.9302 29.1932 34.4140 -Courier_New.ttf 82 q 29.1932 36.6565 26 ` -12.2817 9.8498 8.6565 -Courier_New.ttf 82 q 29.1932 36.6565 27 @ -11.9525 22.0800 40.4029 -Courier_New.ttf 82 q 29.1932 36.6565 28 F -7.4916 27.3234 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 29 S -8.0381 24.5392 34.4140 -Courier_New.ttf 82 q 29.1932 36.6565 30 p -0.3782 29.8826 36.6565 -Courier_New.ttf 82 q 29.1932 36.6565 31 “ -10.6413 24.6392 15.1932 -Courier_New.ttf 82 q 29.1932 36.6565 32 % -10.8436 24.3664 36.5505 -Courier_New.ttf 82 q 29.1932 36.6565 33 £ -7.8629 26.2840 33.8435 -Courier_New.ttf 82 q 29.1932 36.6565 34 . 18.0971 8.8232 7.9800 -Courier_New.ttf 82 q 29.1932 36.6565 35 2 -10.4199 23.1732 36.3838 -Courier_New.ttf 82 q 29.1932 36.6565 36 5 -10.6073 23.7437 36.3838 -Courier_New.ttf 82 q 29.1932 36.6565 37 m 0.2900 35.1594 25.6135 -Courier_New.ttf 82 q 29.1932 36.6565 38 V -7.8474 35.1140 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 39 6 -11.0945 23.7959 36.7876 -Courier_New.ttf 82 q 29.1932 36.6565 40 w 0.5826 32.7502 25.2097 -Courier_New.ttf 82 q 29.1932 36.6565 41 T -8.1297 26.8590 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 42 M -7.8745 34.5367 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 43 G -8.2442 29.5621 34.4140 -Courier_New.ttf 82 q 29.1932 36.6565 44 b -10.3734 29.8826 36.5505 -Courier_New.ttf 82 q 29.1932 36.6565 45 9 -10.5448 22.4193 36.7876 -Courier_New.ttf 82 q 29.1932 36.6565 46 ; 0.1465 12.8068 30.9570 -Courier_New.ttf 82 q 29.1932 36.6565 47 D -7.7673 28.4394 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 48 L -7.8416 28.2727 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 49 y 0.2894 29.3121 36.2527 -Courier_New.ttf 82 q 29.1932 36.6565 50 ‘ -10.0649 12.7529 17.2297 -Courier_New.ttf 82 q 29.1932 36.6565 51 \ -13.7773 24.6392 44.3865 -Courier_New.ttf 82 q 29.1932 36.6565 52 R -8.1908 30.7070 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 53 < -6.8873 28.0000 31.5797 -Courier_New.ttf 82 q 29.1932 36.6565 54 4 -10.1345 22.3232 35.9800 -Courier_New.ttf 82 q 29.1932 36.6565 55 8 -10.9258 21.3094 36.7876 -Courier_New.ttf 82 q 29.1932 36.6565 56 0 -10.8825 23.6959 36.7876 -Courier_New.ttf 82 q 29.1932 36.6565 57 A -8.3030 37.1505 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 58 E -8.0276 27.3234 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 59 B -7.8988 28.4167 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 60 v 0.3461 32.1252 25.2097 -Courier_New.ttf 82 q 29.1932 36.6565 61 k -10.3305 26.6529 35.9800 -Courier_New.ttf 82 q 29.1932 36.6565 62 J -8.2084 28.6766 34.1640 -Courier_New.ttf 82 q 29.1932 36.6565 63 U -7.9804 31.3964 34.1640 -Courier_New.ttf 82 q 29.1932 36.6565 64 j -11.3854 18.4230 48.2928 -Courier_New.ttf 82 q 29.1932 36.6565 65 ( -10.3762 8.4065 43.1932 -Courier_New.ttf 82 q 29.1932 36.6565 66 7 -10.2850 22.0027 35.9800 -Courier_New.ttf 82 q 29.1932 36.6565 67 § -10.2242 27.1696 39.8097 -Courier_New.ttf 82 q 29.1932 36.6565 68 $ -13.4299 21.8261 44.3865 -Courier_New.ttf 82 q 29.1932 36.6565 69 € -7.7777 31.2297 34.4140 -Courier_New.ttf 82 q 29.1932 36.6565 70 / -13.9772 24.6392 44.3865 -Courier_New.ttf 82 q 29.1932 36.6565 71 C -8.4964 28.2727 34.4140 -Courier_New.ttf 82 q 29.1932 36.6565 72 * -10.7128 22.0860 21.9800 -Courier_New.ttf 82 q 29.1932 36.6565 73 ” -10.0519 24.6392 15.1932 -Courier_New.ttf 82 q 29.1932 36.6565 74 ? -8.7950 21.0594 34.9406 -Courier_New.ttf 82 q 29.1932 36.6565 75 { -10.9548 11.7324 43.3121 -Courier_New.ttf 82 q 29.1932 36.6565 76 } -10.6981 11.7324 43.3121 -Courier_New.ttf 82 q 29.1932 36.6565 77 , 17.0975 11.5597 17.2297 -Courier_New.ttf 82 q 29.1932 36.6565 78 I -8.1794 22.0860 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 79 ° -16.3849 15.7638 15.7638 -Courier_New.ttf 82 q 29.1932 36.6565 80 K -7.9758 31.2297 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 81 H -7.9800 28.4333 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 82 q 0.0298 29.1932 36.6565 -Courier_New.ttf 82 q 29.1932 36.6565 83 & -4.8228 21.9800 31.2070 -Courier_New.ttf 82 q 29.1932 36.6565 84 ’ -10.4823 12.7529 17.2297 -Courier_New.ttf 82 q 29.1932 36.6565 85 [ -10.2249 9.5998 43.1932 -Courier_New.ttf 82 q 29.1932 36.6565 86 - 7.2994 24.8892 3.2297 -Courier_New.ttf 82 q 29.1932 36.6565 87 Y -8.1581 29.3410 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 88 Q -8.4634 30.3865 40.7840 -Courier_New.ttf 82 q 29.1932 36.6565 89 " -10.3442 19.6995 16.0365 -Courier_New.ttf 82 q 29.1932 36.6565 90 ! -10.4079 6.4594 36.5505 -Courier_New.ttf 82 q 29.1932 36.6565 91 x 0.4098 29.1932 25.2097 -Courier_New.ttf 82 q 29.1932 36.6565 92 ) -10.4616 8.4065 43.1932 -Courier_New.ttf 82 q 29.1932 36.6565 93 = 3.0896 29.1932 11.3097 -Courier_New.ttf 82 q 29.1932 36.6565 94 + -5.5540 26.8590 29.2455 -Courier_New.ttf 82 q 29.1932 36.6565 95 X -7.8840 30.9092 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 96 » -0.0427 29.5432 26.8068 -Courier_New.ttf 82 q 29.1932 36.6565 97 ' -10.4536 7.9027 17.2297 -Courier_New.ttf 82 q 29.1932 36.6565 98 ¢ -12.3662 20.7867 38.0998 -Courier_New.ttf 82 q 29.1932 36.6565 99 Z -7.8977 23.0959 33.5935 -Courier_New.ttf 82 q 29.1932 36.6565 100 > -6.9637 28.0000 31.5797 -Courier_New.ttf 82 q 29.1932 36.6565 101 ® -8.7540 34.7867 35.0594 -Courier_New.ttf 82 q 29.1932 36.6565 102 © -8.8699 35.0594 34.7867 -Courier_New.ttf 82 q 29.1932 36.6565 103 ] -10.3079 9.5998 43.1932 -Courier_New.ttf 82 q 29.1932 36.6565 104 é -12.2233 27.4295 38.4203 -Courier_New.ttf 82 q 29.1932 36.6565 105 z 0.2853 23.7959 25.2097 -Courier_New.ttf 82 q 29.1932 36.6565 106 _ 39.7280 35.0594 2.3865 -Courier_New.ttf 82 q 29.1932 36.6565 107 ¥ -7.9152 29.6744 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 1 t -3.4386 26.2362 34.6034 -Courier_New.ttf 83 & 21.9800 31.2070 2 h -5.1214 29.6326 35.9800 -Courier_New.ttf 83 & 21.9800 31.2070 3 a 4.9103 26.9256 26.1840 -Courier_New.ttf 83 & 21.9800 31.2070 4 n 5.0383 29.2061 25.6135 -Courier_New.ttf 83 & 21.9800 31.2070 5 P -2.9699 26.0529 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 6 o 5.1531 26.8068 26.1840 -Courier_New.ttf 83 & 21.9800 31.2070 7 e 5.0880 27.4295 26.1840 -Courier_New.ttf 83 & 21.9800 31.2070 8 : 5.6258 8.6565 25.7802 -Courier_New.ttf 83 & 21.9800 31.2070 9 r 5.3093 26.8295 25.6135 -Courier_New.ttf 83 & 21.9800 31.2070 10 l -5.2907 24.4725 35.9800 -Courier_New.ttf 83 & 21.9800 31.2070 11 i -6.4549 24.4725 37.2498 -Courier_New.ttf 83 & 21.9800 31.2070 12 1 -6.7720 22.8527 37.5770 -Courier_New.ttf 83 & 21.9800 31.2070 13 | -5.1636 2.3865 43.1932 -Courier_New.ttf 83 & 21.9800 31.2070 14 N -2.9213 31.3964 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 15 f -5.3280 25.4696 35.9800 -Courier_New.ttf 83 & 21.9800 31.2070 16 g 4.8775 27.8462 36.6565 -Courier_New.ttf 83 & 21.9800 31.2070 17 d -5.5575 30.1138 36.5505 -Courier_New.ttf 83 & 21.9800 31.2070 18 W -2.8758 32.5836 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 19 s 4.9887 23.0959 26.1840 -Courier_New.ttf 83 & 21.9800 31.2070 20 c 5.0429 26.6529 26.1840 -Courier_New.ttf 83 & 21.9800 31.2070 21 u 5.6779 29.6326 25.7802 -Courier_New.ttf 83 & 21.9800 31.2070 22 3 -5.7874 23.6959 36.7876 -Courier_New.ttf 83 & 21.9800 31.2070 23 ~ 9.3671 24.8892 8.5732 -Courier_New.ttf 83 & 21.9800 31.2070 24 # -7.8117 25.0657 42.1962 -Courier_New.ttf 83 & 21.9800 31.2070 25 O -3.2057 29.1932 34.4140 -Courier_New.ttf 83 & 21.9800 31.2070 26 ` -7.2814 9.8498 8.6565 -Courier_New.ttf 83 & 21.9800 31.2070 27 @ -6.6853 22.0800 40.4029 -Courier_New.ttf 83 & 21.9800 31.2070 28 F -3.0298 27.3234 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 29 S -3.3145 24.5392 34.4140 -Courier_New.ttf 83 & 21.9800 31.2070 30 p 5.2646 29.8826 36.6565 -Courier_New.ttf 83 & 21.9800 31.2070 31 “ -5.4449 24.6392 15.1932 -Courier_New.ttf 83 & 21.9800 31.2070 32 % -5.1720 24.3664 36.5505 -Courier_New.ttf 83 & 21.9800 31.2070 33 £ -3.1985 26.2840 33.8435 -Courier_New.ttf 83 & 21.9800 31.2070 34 . 23.3325 8.8232 7.9800 -Courier_New.ttf 83 & 21.9800 31.2070 35 2 -5.6707 23.1732 36.3838 -Courier_New.ttf 83 & 21.9800 31.2070 36 5 -5.0648 23.7437 36.3838 -Courier_New.ttf 83 & 21.9800 31.2070 37 m 4.8515 35.1594 25.6135 -Courier_New.ttf 83 & 21.9800 31.2070 38 V -2.9927 35.1140 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 39 6 -5.6890 23.7959 36.7876 -Courier_New.ttf 83 & 21.9800 31.2070 40 w 5.2451 32.7502 25.2097 -Courier_New.ttf 83 & 21.9800 31.2070 41 T -2.9844 26.8590 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 42 M -2.8685 34.5367 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 43 G -3.4201 29.5621 34.4140 -Courier_New.ttf 83 & 21.9800 31.2070 44 b -5.2609 29.8826 36.5505 -Courier_New.ttf 83 & 21.9800 31.2070 45 9 -5.7829 22.4193 36.7876 -Courier_New.ttf 83 & 21.9800 31.2070 46 ; 5.0556 12.8068 30.9570 -Courier_New.ttf 83 & 21.9800 31.2070 47 D -2.8518 28.4394 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 48 L -3.0687 28.2727 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 49 y 5.1631 29.3121 36.2527 -Courier_New.ttf 83 & 21.9800 31.2070 50 ‘ -4.9815 12.7529 17.2297 -Courier_New.ttf 83 & 21.9800 31.2070 51 \ -8.8526 24.6392 44.3865 -Courier_New.ttf 83 & 21.9800 31.2070 52 R -2.7419 30.7070 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 53 < -2.0534 28.0000 31.5797 -Courier_New.ttf 83 & 21.9800 31.2070 54 4 -5.3363 22.3232 35.9800 -Courier_New.ttf 83 & 21.9800 31.2070 55 8 -5.6838 21.3094 36.7876 -Courier_New.ttf 83 & 21.9800 31.2070 56 0 -5.8441 23.6959 36.7876 -Courier_New.ttf 83 & 21.9800 31.2070 57 A -2.9328 37.1505 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 58 E -2.7893 27.3234 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 59 B -2.9453 28.4167 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 60 v 5.3357 32.1252 25.2097 -Courier_New.ttf 83 & 21.9800 31.2070 61 k -5.0957 26.6529 35.9800 -Courier_New.ttf 83 & 21.9800 31.2070 62 J -3.1853 28.6766 34.1640 -Courier_New.ttf 83 & 21.9800 31.2070 63 U -2.8114 31.3964 34.1640 -Courier_New.ttf 83 & 21.9800 31.2070 64 j -6.7494 18.4230 48.2928 -Courier_New.ttf 83 & 21.9800 31.2070 65 ( -5.3784 8.4065 43.1932 -Courier_New.ttf 83 & 21.9800 31.2070 66 7 -5.5415 22.0027 35.9800 -Courier_New.ttf 83 & 21.9800 31.2070 67 § -5.3278 27.1696 39.8097 -Courier_New.ttf 83 & 21.9800 31.2070 68 $ -8.2995 21.8261 44.3865 -Courier_New.ttf 83 & 21.9800 31.2070 69 € -3.4780 31.2297 34.4140 -Courier_New.ttf 83 & 21.9800 31.2070 70 / -9.1044 24.6392 44.3865 -Courier_New.ttf 83 & 21.9800 31.2070 71 C -3.5443 28.2727 34.4140 -Courier_New.ttf 83 & 21.9800 31.2070 72 * -5.3564 22.0860 21.9800 -Courier_New.ttf 83 & 21.9800 31.2070 73 ” -5.4244 24.6392 15.1932 -Courier_New.ttf 83 & 21.9800 31.2070 74 ? -3.9167 21.0594 34.9406 -Courier_New.ttf 83 & 21.9800 31.2070 75 { -5.6382 11.7324 43.3121 -Courier_New.ttf 83 & 21.9800 31.2070 76 } -5.5967 11.7324 43.3121 -Courier_New.ttf 83 & 21.9800 31.2070 77 , 22.2192 11.5597 17.2297 -Courier_New.ttf 83 & 21.9800 31.2070 78 I -3.1239 22.0860 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 79 ° -11.6980 15.7638 15.7638 -Courier_New.ttf 83 & 21.9800 31.2070 80 K -2.9115 31.2297 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 81 H -2.9667 28.4333 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 82 q 5.1924 29.1932 36.6565 -Courier_New.ttf 83 & 21.9800 31.2070 83 & -0.0752 21.9800 31.2070 -Courier_New.ttf 83 & 21.9800 31.2070 84 ’ -5.3204 12.7529 17.2297 -Courier_New.ttf 83 & 21.9800 31.2070 85 [ -5.3649 9.5998 43.1932 -Courier_New.ttf 83 & 21.9800 31.2070 86 - 11.9697 24.8892 3.2297 -Courier_New.ttf 83 & 21.9800 31.2070 87 Y -3.0524 29.3410 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 88 Q -3.1485 30.3865 40.7840 -Courier_New.ttf 83 & 21.9800 31.2070 89 " -5.3424 19.6995 16.0365 -Courier_New.ttf 83 & 21.9800 31.2070 90 ! -5.3500 6.4594 36.5505 -Courier_New.ttf 83 & 21.9800 31.2070 91 x 5.7237 29.1932 25.2097 -Courier_New.ttf 83 & 21.9800 31.2070 92 ) -5.1938 8.4065 43.1932 -Courier_New.ttf 83 & 21.9800 31.2070 93 = 8.1034 29.1932 11.3097 -Courier_New.ttf 83 & 21.9800 31.2070 94 + -0.5671 26.8590 29.2455 -Courier_New.ttf 83 & 21.9800 31.2070 95 X -2.9570 30.9092 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 96 » 4.6577 28.7766 26.8068 -Courier_New.ttf 83 & 21.9800 31.2070 97 ' -5.4649 7.9027 17.2297 -Courier_New.ttf 83 & 21.9800 31.2070 98 ¢ -7.7953 20.7867 38.0998 -Courier_New.ttf 83 & 21.9800 31.2070 99 Z -2.8783 23.0959 33.5935 -Courier_New.ttf 83 & 21.9800 31.2070 100 > -2.2231 28.0000 31.5797 -Courier_New.ttf 83 & 21.9800 31.2070 101 ® -4.0116 34.7867 35.0594 -Courier_New.ttf 83 & 21.9800 31.2070 102 © -3.5647 35.0594 34.7867 -Courier_New.ttf 83 & 21.9800 31.2070 103 ] -5.2683 9.5998 43.1932 -Courier_New.ttf 83 & 21.9800 31.2070 104 é -7.3518 27.4295 38.4203 -Courier_New.ttf 83 & 21.9800 31.2070 105 z 5.3911 23.7959 25.2097 -Courier_New.ttf 83 & 21.9800 31.2070 106 _ 44.6816 35.0594 2.3865 -Courier_New.ttf 83 & 21.9800 31.2070 107 ¥ -2.9542 29.6744 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 1 t 1.8112 26.2362 34.6034 -Courier_New.ttf 84 ’ 12.7529 17.2297 2 h 0.1456 29.6326 35.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 3 a 10.2493 26.9256 26.1840 -Courier_New.ttf 84 ’ 12.7529 17.2297 4 n 10.3307 29.2061 25.6135 -Courier_New.ttf 84 ’ 12.7529 17.2297 5 P 2.4120 26.0529 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 6 o 10.2793 26.8068 26.1840 -Courier_New.ttf 84 ’ 12.7529 17.2297 7 e 10.6464 27.4295 26.1840 -Courier_New.ttf 84 ’ 12.7529 17.2297 8 : 10.9587 8.6565 25.7802 -Courier_New.ttf 84 ’ 12.7529 17.2297 9 r 10.6536 26.8295 25.6135 -Courier_New.ttf 84 ’ 12.7529 17.2297 10 l 0.0319 24.4725 35.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 11 i -1.4436 24.4725 37.2498 -Courier_New.ttf 84 ’ 12.7529 17.2297 12 1 -1.6407 22.8527 37.5770 -Courier_New.ttf 84 ’ 12.7529 17.2297 13 | -0.1853 2.3865 43.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 14 N 2.6275 31.3964 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 15 f -0.3911 25.4696 35.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 16 g 10.3664 27.8462 36.6565 -Courier_New.ttf 84 ’ 12.7529 17.2297 17 d -0.2710 30.1138 36.5505 -Courier_New.ttf 84 ’ 12.7529 17.2297 18 W 2.3722 32.5836 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 19 s 10.4163 23.0959 26.1840 -Courier_New.ttf 84 ’ 12.7529 17.2297 20 c 10.0199 26.6529 26.1840 -Courier_New.ttf 84 ’ 12.7529 17.2297 21 u 10.7619 29.6326 25.7802 -Courier_New.ttf 84 ’ 12.7529 17.2297 22 3 -0.2170 23.6959 36.7876 -Courier_New.ttf 84 ’ 12.7529 17.2297 23 ~ 14.8678 24.8892 8.5732 -Courier_New.ttf 84 ’ 12.7529 17.2297 24 # -2.2636 25.0657 42.1962 -Courier_New.ttf 84 ’ 12.7529 17.2297 25 O 2.0588 29.1932 34.4140 -Courier_New.ttf 84 ’ 12.7529 17.2297 26 ` -1.8726 9.8498 8.6565 -Courier_New.ttf 84 ’ 12.7529 17.2297 27 @ -1.2463 22.0800 40.4029 -Courier_New.ttf 84 ’ 12.7529 17.2297 28 F 2.4166 27.3234 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 29 S 2.1424 24.5392 34.4140 -Courier_New.ttf 84 ’ 12.7529 17.2297 30 p 10.2793 29.8826 36.6565 -Courier_New.ttf 84 ’ 12.7529 17.2297 31 “ -0.0742 24.6392 15.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 32 % -0.0167 24.3664 36.5505 -Courier_New.ttf 84 ’ 12.7529 17.2297 33 £ 2.2255 26.2840 33.8435 -Courier_New.ttf 84 ’ 12.7529 17.2297 34 . 28.8028 8.8232 7.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 35 2 -0.4466 23.1732 36.3838 -Courier_New.ttf 84 ’ 12.7529 17.2297 36 5 0.1540 23.7437 36.3838 -Courier_New.ttf 84 ’ 12.7529 17.2297 37 m 10.5753 35.1594 25.6135 -Courier_New.ttf 84 ’ 12.7529 17.2297 38 V 2.1914 35.1140 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 39 6 -0.5197 23.7959 36.7876 -Courier_New.ttf 84 ’ 12.7529 17.2297 40 w 10.7776 32.7502 25.2097 -Courier_New.ttf 84 ’ 12.7529 17.2297 41 T 2.4723 26.8590 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 42 M 2.3851 34.5367 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 43 G 2.1235 29.5621 34.4140 -Courier_New.ttf 84 ’ 12.7529 17.2297 44 b 0.1794 29.8826 36.5505 -Courier_New.ttf 84 ’ 12.7529 17.2297 45 9 -0.5742 22.4193 36.7876 -Courier_New.ttf 84 ’ 12.7529 17.2297 46 ; 10.8492 12.8068 30.9570 -Courier_New.ttf 84 ’ 12.7529 17.2297 47 D 2.0732 28.4394 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 48 L 2.5426 28.2727 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 49 y 10.7735 29.3121 36.2527 -Courier_New.ttf 84 ’ 12.7529 17.2297 50 ‘ -0.1047 12.7529 17.2297 -Courier_New.ttf 84 ’ 12.7529 17.2297 51 \ -3.1282 24.6392 44.3865 -Courier_New.ttf 84 ’ 12.7529 17.2297 52 R 2.2039 30.7070 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 53 < 3.5548 28.0000 31.5797 -Courier_New.ttf 84 ’ 12.7529 17.2297 54 4 0.0616 22.3232 35.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 55 8 -0.4910 21.3094 36.7876 -Courier_New.ttf 84 ’ 12.7529 17.2297 56 0 -0.0507 23.6959 36.7876 -Courier_New.ttf 84 ’ 12.7529 17.2297 57 A 2.1635 37.1505 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 58 E 2.2182 27.3234 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 59 B 2.1940 28.4167 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 60 v 10.9685 32.1252 25.2097 -Courier_New.ttf 84 ’ 12.7529 17.2297 61 k 0.1873 26.6529 35.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 62 J 2.2266 28.6766 34.1640 -Courier_New.ttf 84 ’ 12.7529 17.2297 63 U 2.5260 31.3964 34.1640 -Courier_New.ttf 84 ’ 12.7529 17.2297 64 j -1.6193 18.4230 48.2928 -Courier_New.ttf 84 ’ 12.7529 17.2297 65 ( -0.0266 8.4065 43.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 66 7 0.1195 22.0027 35.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 67 § 0.2068 27.1696 39.8097 -Courier_New.ttf 84 ’ 12.7529 17.2297 68 $ -2.8308 21.8261 44.3865 -Courier_New.ttf 84 ’ 12.7529 17.2297 69 € 2.0910 31.2297 34.4140 -Courier_New.ttf 84 ’ 12.7529 17.2297 70 / -4.1664 24.6392 44.3865 -Courier_New.ttf 84 ’ 12.7529 17.2297 71 C 2.3042 28.2727 34.4140 -Courier_New.ttf 84 ’ 12.7529 17.2297 72 * 0.1988 22.0860 21.9800 -Courier_New.ttf 84 ’ 12.7529 17.2297 73 ” -0.0298 24.6392 15.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 74 ? 1.3944 21.0594 34.9406 -Courier_New.ttf 84 ’ 12.7529 17.2297 75 { -0.1271 11.7324 43.3121 -Courier_New.ttf 84 ’ 12.7529 17.2297 76 } -0.3209 11.7324 43.3121 -Courier_New.ttf 84 ’ 12.7529 17.2297 77 , 27.2339 11.5597 17.2297 -Courier_New.ttf 84 ’ 12.7529 17.2297 78 I 2.5179 22.0860 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 79 ° -6.6000 15.7638 15.7638 -Courier_New.ttf 84 ’ 12.7529 17.2297 80 K 2.0471 31.2297 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 81 H 2.3722 28.4333 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 82 q 10.4119 29.1932 36.6565 -Courier_New.ttf 84 ’ 12.7529 17.2297 83 & 5.2389 21.9800 31.2070 -Courier_New.ttf 84 ’ 12.7529 17.2297 84 ’ -0.0126 12.7529 17.2297 -Courier_New.ttf 84 ’ 12.7529 17.2297 85 [ -0.0542 9.5998 43.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 86 - 17.3750 24.8892 3.2297 -Courier_New.ttf 84 ’ 12.7529 17.2297 87 Y 2.7831 29.3410 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 88 Q 1.7895 30.3865 40.7840 -Courier_New.ttf 84 ’ 12.7529 17.2297 89 " -0.0857 19.6995 16.0365 -Courier_New.ttf 84 ’ 12.7529 17.2297 90 ! -0.1717 6.4594 36.5505 -Courier_New.ttf 84 ’ 12.7529 17.2297 91 x 10.8703 29.1932 25.2097 -Courier_New.ttf 84 ’ 12.7529 17.2297 92 ) 0.0045 8.4065 43.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 93 = 13.6047 29.1932 11.3097 -Courier_New.ttf 84 ’ 12.7529 17.2297 94 + 5.0924 26.8590 29.2455 -Courier_New.ttf 84 ’ 12.7529 17.2297 95 X 2.3775 30.9092 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 96 » 10.4771 28.7766 26.8068 -Courier_New.ttf 84 ’ 12.7529 17.2297 97 ' -0.1400 7.9027 17.2297 -Courier_New.ttf 84 ’ 12.7529 17.2297 98 ¢ -2.2510 20.7867 38.0998 -Courier_New.ttf 84 ’ 12.7529 17.2297 99 Z 2.4547 23.0959 33.5935 -Courier_New.ttf 84 ’ 12.7529 17.2297 100 > 3.4153 28.0000 31.5797 -Courier_New.ttf 84 ’ 12.7529 17.2297 101 ® 1.3109 34.7867 35.0594 -Courier_New.ttf 84 ’ 12.7529 17.2297 102 © 2.0012 35.0594 34.7867 -Courier_New.ttf 84 ’ 12.7529 17.2297 103 ] 0.1381 9.5998 43.1932 -Courier_New.ttf 84 ’ 12.7529 17.2297 104 é -1.8382 27.4295 38.4203 -Courier_New.ttf 84 ’ 12.7529 17.2297 105 z 10.8437 23.7959 25.2097 -Courier_New.ttf 84 ’ 12.7529 17.2297 106 _ 49.9422 35.0594 2.3865 -Courier_New.ttf 84 ’ 12.7529 17.2297 107 ¥ 2.2748 29.6744 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 1 t 1.8847 26.2362 34.6034 -Courier_New.ttf 85 [ 9.5998 43.1932 2 h 0.0065 29.6326 35.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 3 a 10.3196 26.9256 26.1840 -Courier_New.ttf 85 [ 9.5998 43.1932 4 n 10.5922 29.2061 25.6135 -Courier_New.ttf 85 [ 9.5998 43.1932 5 P 2.6743 26.0529 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 6 o 10.1936 26.8068 26.1840 -Courier_New.ttf 85 [ 9.5998 43.1932 7 e 10.1337 27.4295 26.1840 -Courier_New.ttf 85 [ 9.5998 43.1932 8 : 11.0250 8.6565 25.7802 -Courier_New.ttf 85 [ 9.5998 43.1932 9 r 10.2853 26.8295 25.6135 -Courier_New.ttf 85 [ 9.5998 43.1932 10 l -0.2551 24.4725 35.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 11 i -1.5682 24.4725 37.2498 -Courier_New.ttf 85 [ 9.5998 43.1932 12 1 -1.7464 22.8527 37.5770 -Courier_New.ttf 85 [ 9.5998 43.1932 13 | 0.1728 2.3865 43.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 14 N 2.1192 31.3964 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 15 f 0.0885 25.4696 35.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 16 g 10.5178 27.8462 36.6565 -Courier_New.ttf 85 [ 9.5998 43.1932 17 d -0.2411 30.1138 36.5505 -Courier_New.ttf 85 [ 9.5998 43.1932 18 W 2.6978 32.5836 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 19 s 10.6075 23.0959 26.1840 -Courier_New.ttf 85 [ 9.5998 43.1932 20 c 10.3272 26.6529 26.1840 -Courier_New.ttf 85 [ 9.5998 43.1932 21 u 10.9118 29.6326 25.7802 -Courier_New.ttf 85 [ 9.5998 43.1932 22 3 -0.1225 23.6959 36.7876 -Courier_New.ttf 85 [ 9.5998 43.1932 23 ~ 15.1910 24.8892 8.5732 -Courier_New.ttf 85 [ 9.5998 43.1932 24 # -2.2910 25.0657 42.1962 -Courier_New.ttf 85 [ 9.5998 43.1932 25 O 2.0260 29.1932 34.4140 -Courier_New.ttf 85 [ 9.5998 43.1932 26 ` -1.9964 9.8498 8.6565 -Courier_New.ttf 85 [ 9.5998 43.1932 27 @ -1.5822 22.0800 40.4029 -Courier_New.ttf 85 [ 9.5998 43.1932 28 F 2.2992 27.3234 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 29 S 1.8584 24.5392 34.4140 -Courier_New.ttf 85 [ 9.5998 43.1932 30 p 10.3091 29.8826 36.6565 -Courier_New.ttf 85 [ 9.5998 43.1932 31 “ 0.0292 24.6392 15.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 32 % 0.3762 24.3664 36.5505 -Courier_New.ttf 85 [ 9.5998 43.1932 33 £ 2.1354 26.2840 33.8435 -Courier_New.ttf 85 [ 9.5998 43.1932 34 . 28.4571 8.8232 7.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 35 2 -0.3129 23.1732 36.3838 -Courier_New.ttf 85 [ 9.5998 43.1932 36 5 0.0780 23.7437 36.3838 -Courier_New.ttf 85 [ 9.5998 43.1932 37 m 10.3807 35.1594 25.6135 -Courier_New.ttf 85 [ 9.5998 43.1932 38 V 2.5107 35.1140 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 39 6 -0.5951 23.7959 36.7876 -Courier_New.ttf 85 [ 9.5998 43.1932 40 w 10.8315 32.7502 25.2097 -Courier_New.ttf 85 [ 9.5998 43.1932 41 T 2.1759 26.8590 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 42 M 2.3851 34.5367 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 43 G 2.2978 29.5621 34.4140 -Courier_New.ttf 85 [ 9.5998 43.1932 44 b 0.0070 29.8826 36.5505 -Courier_New.ttf 85 [ 9.5998 43.1932 45 9 -0.2459 22.4193 36.7876 -Courier_New.ttf 85 [ 9.5998 43.1932 46 ; 10.7388 12.8068 30.9570 -Courier_New.ttf 85 [ 9.5998 43.1932 47 D 2.6666 28.4394 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 48 L 2.5932 28.2727 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 49 y 10.7489 29.3121 36.2527 -Courier_New.ttf 85 [ 9.5998 43.1932 50 ‘ 0.0299 12.7529 17.2297 -Courier_New.ttf 85 [ 9.5998 43.1932 51 \ -3.2422 24.6392 44.3865 -Courier_New.ttf 85 [ 9.5998 43.1932 52 R 2.3865 30.7070 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 53 < 3.6973 28.0000 31.5797 -Courier_New.ttf 85 [ 9.5998 43.1932 54 4 -0.0774 22.3232 35.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 55 8 -0.3840 21.3094 36.7876 -Courier_New.ttf 85 [ 9.5998 43.1932 56 0 -0.1356 23.6959 36.7876 -Courier_New.ttf 85 [ 9.5998 43.1932 57 A 2.2365 37.1505 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 58 E 2.5139 27.3234 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 59 B 2.0968 28.4167 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 60 v 10.8689 32.1252 25.2097 -Courier_New.ttf 85 [ 9.5998 43.1932 61 k -0.1539 26.6529 35.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 62 J 2.5159 28.6766 34.1640 -Courier_New.ttf 85 [ 9.5998 43.1932 63 U 2.5510 31.3964 34.1640 -Courier_New.ttf 85 [ 9.5998 43.1932 64 j -1.2768 18.4230 48.2928 -Courier_New.ttf 85 [ 9.5998 43.1932 65 ( -0.0179 8.4065 43.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 66 7 0.0988 22.0027 35.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 67 § -0.3187 27.1696 39.8097 -Courier_New.ttf 85 [ 9.5998 43.1932 68 $ -3.1456 21.8261 44.3865 -Courier_New.ttf 85 [ 9.5998 43.1932 69 € 1.6981 31.2297 34.4140 -Courier_New.ttf 85 [ 9.5998 43.1932 70 / -3.8322 24.6392 44.3865 -Courier_New.ttf 85 [ 9.5998 43.1932 71 C 2.3236 28.2727 34.4140 -Courier_New.ttf 85 [ 9.5998 43.1932 72 * -0.1631 22.0860 21.9800 -Courier_New.ttf 85 [ 9.5998 43.1932 73 ” 0.0161 24.6392 15.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 74 ? 1.5993 21.0594 34.9406 -Courier_New.ttf 85 [ 9.5998 43.1932 75 { -0.6184 11.7324 43.3121 -Courier_New.ttf 85 [ 9.5998 43.1932 76 } -0.3800 11.7324 43.3121 -Courier_New.ttf 85 [ 9.5998 43.1932 77 , 27.2528 11.5597 17.2297 -Courier_New.ttf 85 [ 9.5998 43.1932 78 I 2.5296 22.0860 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 79 ° -6.2389 15.7638 15.7638 -Courier_New.ttf 85 [ 9.5998 43.1932 80 K 2.2738 31.2297 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 81 H 2.4593 28.4333 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 82 q 10.3580 29.1932 36.6565 -Courier_New.ttf 85 [ 9.5998 43.1932 83 & 5.0217 21.9800 31.2070 -Courier_New.ttf 85 [ 9.5998 43.1932 84 ’ -0.1169 12.7529 17.2297 -Courier_New.ttf 85 [ 9.5998 43.1932 85 [ 0.0793 9.5998 43.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 86 - 17.7050 24.8892 3.2297 -Courier_New.ttf 85 [ 9.5998 43.1932 87 Y 2.4260 29.3410 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 88 Q 2.1365 30.3865 40.7840 -Courier_New.ttf 85 [ 9.5998 43.1932 89 " -0.0487 19.6995 16.0365 -Courier_New.ttf 85 [ 9.5998 43.1932 90 ! -0.3254 6.4594 36.5505 -Courier_New.ttf 85 [ 9.5998 43.1932 91 x 10.6020 29.1932 25.2097 -Courier_New.ttf 85 [ 9.5998 43.1932 92 ) -0.1899 8.4065 43.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 93 = 13.5249 29.1932 11.3097 -Courier_New.ttf 85 [ 9.5998 43.1932 94 + 5.2944 26.8590 29.2455 -Courier_New.ttf 85 [ 9.5998 43.1932 95 X 2.3651 30.9092 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 96 » 10.2811 28.7766 26.8068 -Courier_New.ttf 85 [ 9.5998 43.1932 97 ' 0.0931 7.9027 17.2297 -Courier_New.ttf 85 [ 9.5998 43.1932 98 ¢ -1.9633 20.7867 38.0998 -Courier_New.ttf 85 [ 9.5998 43.1932 99 Z 2.5347 23.0959 33.5935 -Courier_New.ttf 85 [ 9.5998 43.1932 100 > 3.4908 28.0000 31.5797 -Courier_New.ttf 85 [ 9.5998 43.1932 101 ® 1.5197 34.7867 35.0594 -Courier_New.ttf 85 [ 9.5998 43.1932 102 © 1.9094 35.0594 34.7867 -Courier_New.ttf 85 [ 9.5998 43.1932 103 ] 0.3127 9.5998 43.1932 -Courier_New.ttf 85 [ 9.5998 43.1932 104 é -1.8342 27.4295 38.4203 -Courier_New.ttf 85 [ 9.5998 43.1932 105 z 10.8227 23.7959 25.2097 -Courier_New.ttf 85 [ 9.5998 43.1932 106 _ 50.0359 35.0594 2.3865 -Courier_New.ttf 85 [ 9.5998 43.1932 107 ¥ 2.2456 29.6744 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 1 t -15.7054 26.2362 34.6034 -Courier_New.ttf 86 - 24.8892 3.2297 2 h -17.5968 29.6326 35.9800 -Courier_New.ttf 86 - 24.8892 3.2297 3 a -7.2447 26.9256 26.1840 -Courier_New.ttf 86 - 24.8892 3.2297 4 n -7.1757 29.2061 25.6135 -Courier_New.ttf 86 - 24.8892 3.2297 5 P -15.1803 26.0529 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 6 o -7.4874 26.8068 26.1840 -Courier_New.ttf 86 - 24.8892 3.2297 7 e -7.2464 27.4295 26.1840 -Courier_New.ttf 86 - 24.8892 3.2297 8 : -6.7427 8.6565 25.7802 -Courier_New.ttf 86 - 24.8892 3.2297 9 r -7.0636 26.8295 25.6135 -Courier_New.ttf 86 - 24.8892 3.2297 10 l -17.5310 24.4725 35.9800 -Courier_New.ttf 86 - 24.8892 3.2297 11 i -18.7639 24.4725 37.2498 -Courier_New.ttf 86 - 24.8892 3.2297 12 1 -19.0272 22.8527 37.5770 -Courier_New.ttf 86 - 24.8892 3.2297 13 | -17.5783 2.3865 43.1932 -Courier_New.ttf 86 - 24.8892 3.2297 14 N -14.9842 31.3964 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 15 f -17.6309 25.4696 35.9800 -Courier_New.ttf 86 - 24.8892 3.2297 16 g -7.4759 27.8462 36.6565 -Courier_New.ttf 86 - 24.8892 3.2297 17 d -17.6714 30.1138 36.5505 -Courier_New.ttf 86 - 24.8892 3.2297 18 W -15.0861 32.5836 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 19 s -6.9450 23.0959 26.1840 -Courier_New.ttf 86 - 24.8892 3.2297 20 c -7.3621 26.6529 26.1840 -Courier_New.ttf 86 - 24.8892 3.2297 21 u -6.8270 29.6326 25.7802 -Courier_New.ttf 86 - 24.8892 3.2297 22 3 -17.9396 23.6959 36.7876 -Courier_New.ttf 86 - 24.8892 3.2297 23 ~ -2.7464 24.8892 8.5732 -Courier_New.ttf 86 - 24.8892 3.2297 24 # -19.8036 25.0657 42.1962 -Courier_New.ttf 86 - 24.8892 3.2297 25 O -15.4919 29.1932 34.4140 -Courier_New.ttf 86 - 24.8892 3.2297 26 ` -19.6537 9.8498 8.6565 -Courier_New.ttf 86 - 24.8892 3.2297 27 @ -19.1201 22.0800 40.4029 -Courier_New.ttf 86 - 24.8892 3.2297 28 F -14.9777 27.3234 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 29 S -15.5092 24.5392 34.4140 -Courier_New.ttf 86 - 24.8892 3.2297 30 p -7.3529 29.8826 36.6565 -Courier_New.ttf 86 - 24.8892 3.2297 31 “ -17.4509 24.6392 15.1932 -Courier_New.ttf 86 - 24.8892 3.2297 32 % -17.6929 24.3664 36.5505 -Courier_New.ttf 86 - 24.8892 3.2297 33 £ -15.7149 26.2840 33.8435 -Courier_New.ttf 86 - 24.8892 3.2297 34 . 11.0389 8.8232 7.9800 -Courier_New.ttf 86 - 24.8892 3.2297 35 2 -18.0829 23.1732 36.3838 -Courier_New.ttf 86 - 24.8892 3.2297 36 5 -17.5783 23.7437 36.3838 -Courier_New.ttf 86 - 24.8892 3.2297 37 m -7.1906 35.1594 25.6135 -Courier_New.ttf 86 - 24.8892 3.2297 38 V -15.0536 35.1140 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 39 6 -18.0907 23.7959 36.7876 -Courier_New.ttf 86 - 24.8892 3.2297 40 w -6.9935 32.7502 25.2097 -Courier_New.ttf 86 - 24.8892 3.2297 41 T -15.0722 26.8590 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 42 M -15.4936 34.5367 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 43 G -15.2491 29.5621 34.4140 -Courier_New.ttf 86 - 24.8892 3.2297 44 b -17.4223 29.8826 36.5505 -Courier_New.ttf 86 - 24.8892 3.2297 45 9 -17.9598 22.4193 36.7876 -Courier_New.ttf 86 - 24.8892 3.2297 46 ; -7.0137 12.8068 30.9570 -Courier_New.ttf 86 - 24.8892 3.2297 47 D -15.0073 28.4394 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 48 L -15.3265 28.2727 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 49 y -7.0012 29.3121 36.2527 -Courier_New.ttf 86 - 24.8892 3.2297 50 ‘ -17.3439 12.7529 17.2297 -Courier_New.ttf 86 - 24.8892 3.2297 51 \ -20.7923 24.6392 44.3865 -Courier_New.ttf 86 - 24.8892 3.2297 52 R -14.9237 30.7070 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 53 < -13.9083 28.0000 31.5797 -Courier_New.ttf 86 - 24.8892 3.2297 54 4 -17.6081 22.3232 35.9800 -Courier_New.ttf 86 - 24.8892 3.2297 55 8 -17.9856 21.3094 36.7876 -Courier_New.ttf 86 - 24.8892 3.2297 56 0 -18.1183 23.6959 36.7876 -Courier_New.ttf 86 - 24.8892 3.2297 57 A -15.2530 37.1505 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 58 E -15.1520 27.3234 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 59 B -15.4774 28.4167 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 60 v -6.9284 32.1252 25.2097 -Courier_New.ttf 86 - 24.8892 3.2297 61 k -17.4713 26.6529 35.9800 -Courier_New.ttf 86 - 24.8892 3.2297 62 J -14.9009 28.6766 34.1640 -Courier_New.ttf 86 - 24.8892 3.2297 63 U -15.2090 31.3964 34.1640 -Courier_New.ttf 86 - 24.8892 3.2297 64 j -18.4811 18.4230 48.2928 -Courier_New.ttf 86 - 24.8892 3.2297 65 ( -17.2990 8.4065 43.1932 -Courier_New.ttf 86 - 24.8892 3.2297 66 7 -17.7228 22.0027 35.9800 -Courier_New.ttf 86 - 24.8892 3.2297 67 § -17.5643 27.1696 39.8097 -Courier_New.ttf 86 - 24.8892 3.2297 68 $ -20.8886 21.8261 44.3865 -Courier_New.ttf 86 - 24.8892 3.2297 69 € -15.5257 31.2297 34.4140 -Courier_New.ttf 86 - 24.8892 3.2297 70 / -21.0120 24.6392 44.3865 -Courier_New.ttf 86 - 24.8892 3.2297 71 C -15.5122 28.2727 34.4140 -Courier_New.ttf 86 - 24.8892 3.2297 72 * -17.2352 22.0860 21.9800 -Courier_New.ttf 86 - 24.8892 3.2297 73 ” -17.6129 24.6392 15.1932 -Courier_New.ttf 86 - 24.8892 3.2297 74 ? -15.8004 21.0594 34.9406 -Courier_New.ttf 86 - 24.8892 3.2297 75 { -17.9961 11.7324 43.3121 -Courier_New.ttf 86 - 24.8892 3.2297 76 } -17.7732 11.7324 43.3121 -Courier_New.ttf 86 - 24.8892 3.2297 77 , 9.9221 11.5597 17.2297 -Courier_New.ttf 86 - 24.8892 3.2297 78 I -15.3064 22.0860 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 79 ° -23.9544 15.7638 15.7638 -Courier_New.ttf 86 - 24.8892 3.2297 80 K -15.0705 31.2297 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 81 H -15.0834 28.4333 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 82 q -7.1476 29.1932 36.6565 -Courier_New.ttf 86 - 24.8892 3.2297 83 & -12.1492 21.9800 31.2070 -Courier_New.ttf 86 - 24.8892 3.2297 84 ’ -17.7339 12.7529 17.2297 -Courier_New.ttf 86 - 24.8892 3.2297 85 [ -17.4653 9.5998 43.1932 -Courier_New.ttf 86 - 24.8892 3.2297 86 - 0.0541 24.8892 3.2297 -Courier_New.ttf 86 - 24.8892 3.2297 87 Y -15.4713 29.3410 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 88 Q -15.3711 30.3865 40.7840 -Courier_New.ttf 86 - 24.8892 3.2297 89 " -17.9259 19.6995 16.0365 -Courier_New.ttf 86 - 24.8892 3.2297 90 ! -17.5629 6.4594 36.5505 -Courier_New.ttf 86 - 24.8892 3.2297 91 x -6.6065 29.1932 25.2097 -Courier_New.ttf 86 - 24.8892 3.2297 92 ) -17.6746 8.4065 43.1932 -Courier_New.ttf 86 - 24.8892 3.2297 93 = -3.9137 29.1932 11.3097 -Courier_New.ttf 86 - 24.8892 3.2297 94 + -12.5932 26.8590 29.2455 -Courier_New.ttf 86 - 24.8892 3.2297 95 X -15.3318 30.9092 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 96 » -7.1476 28.7766 26.8068 -Courier_New.ttf 86 - 24.8892 3.2297 97 ' -17.5758 7.9027 17.2297 -Courier_New.ttf 86 - 24.8892 3.2297 98 ¢ -20.1054 20.7867 38.0998 -Courier_New.ttf 86 - 24.8892 3.2297 99 Z -15.2887 23.0959 33.5935 -Courier_New.ttf 86 - 24.8892 3.2297 100 > -13.9000 28.0000 31.5797 -Courier_New.ttf 86 - 24.8892 3.2297 101 ® -16.3811 34.7867 35.0594 -Courier_New.ttf 86 - 24.8892 3.2297 102 © -15.7920 35.0594 34.7867 -Courier_New.ttf 86 - 24.8892 3.2297 103 ] -17.2981 9.5998 43.1932 -Courier_New.ttf 86 - 24.8892 3.2297 104 é -19.3086 27.4295 38.4203 -Courier_New.ttf 86 - 24.8892 3.2297 105 z -7.0095 23.7959 25.2097 -Courier_New.ttf 86 - 24.8892 3.2297 106 _ 32.3158 35.0594 2.3865 -Courier_New.ttf 86 - 24.8892 3.2297 107 ¥ -15.4203 29.6744 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 1 t -0.5107 26.2362 34.6034 -Courier_New.ttf 87 Y 29.3410 33.5935 2 h -2.3403 29.6326 35.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 3 a 8.2361 26.9256 26.1840 -Courier_New.ttf 87 Y 29.3410 33.5935 4 n 7.8629 29.2061 25.6135 -Courier_New.ttf 87 Y 29.3410 33.5935 5 P -0.1853 26.0529 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 6 o 7.9843 26.8068 26.1840 -Courier_New.ttf 87 Y 29.3410 33.5935 7 e 7.8655 27.4295 26.1840 -Courier_New.ttf 87 Y 29.3410 33.5935 8 : 8.0217 8.6565 25.7802 -Courier_New.ttf 87 Y 29.3410 33.5935 9 r 7.7329 26.8295 25.6135 -Courier_New.ttf 87 Y 29.3410 33.5935 10 l -2.1863 24.4725 35.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 11 i -3.5315 24.4725 37.2498 -Courier_New.ttf 87 Y 29.3410 33.5935 12 1 -3.8205 22.8527 37.5770 -Courier_New.ttf 87 Y 29.3410 33.5935 13 | -2.0241 2.3865 43.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 14 N -0.1599 31.3964 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 15 f -1.9368 25.4696 35.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 16 g 8.1181 27.8462 36.6565 -Courier_New.ttf 87 Y 29.3410 33.5935 17 d -2.7024 30.1138 36.5505 -Courier_New.ttf 87 Y 29.3410 33.5935 18 W 0.2365 32.5836 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 19 s 7.8285 23.0959 26.1840 -Courier_New.ttf 87 Y 29.3410 33.5935 20 c 7.7829 26.6529 26.1840 -Courier_New.ttf 87 Y 29.3410 33.5935 21 u 8.3983 29.6326 25.7802 -Courier_New.ttf 87 Y 29.3410 33.5935 22 3 -2.9113 23.6959 36.7876 -Courier_New.ttf 87 Y 29.3410 33.5935 23 ~ 12.3372 24.8892 8.5732 -Courier_New.ttf 87 Y 29.3410 33.5935 24 # -4.8365 25.0657 42.1962 -Courier_New.ttf 87 Y 29.3410 33.5935 25 O -0.0244 29.1932 34.4140 -Courier_New.ttf 87 Y 29.3410 33.5935 26 ` -4.3818 9.8498 8.6565 -Courier_New.ttf 87 Y 29.3410 33.5935 27 @ -3.8602 22.0800 40.4029 -Courier_New.ttf 87 Y 29.3410 33.5935 28 F -0.2521 27.3234 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 29 S -0.0934 24.5392 34.4140 -Courier_New.ttf 87 Y 29.3410 33.5935 30 p 7.8485 29.8826 36.6565 -Courier_New.ttf 87 Y 29.3410 33.5935 31 “ -2.4652 24.6392 15.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 32 % -2.5510 24.3664 36.5505 -Courier_New.ttf 87 Y 29.3410 33.5935 33 £ -0.0667 26.2840 33.8435 -Courier_New.ttf 87 Y 29.3410 33.5935 34 . 26.2281 8.8232 7.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 35 2 -2.6433 23.1732 36.3838 -Courier_New.ttf 87 Y 29.3410 33.5935 36 5 -2.4081 23.7437 36.3838 -Courier_New.ttf 87 Y 29.3410 33.5935 37 m 8.1242 35.1594 25.6135 -Courier_New.ttf 87 Y 29.3410 33.5935 38 V 0.1228 35.1140 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 39 6 -2.9344 23.7959 36.7876 -Courier_New.ttf 87 Y 29.3410 33.5935 40 w 8.2883 32.7502 25.2097 -Courier_New.ttf 87 Y 29.3410 33.5935 41 T -0.0832 26.8590 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 42 M -0.1376 34.5367 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 43 G -0.7834 29.5621 34.4140 -Courier_New.ttf 87 Y 29.3410 33.5935 44 b -2.2988 29.8826 36.5505 -Courier_New.ttf 87 Y 29.3410 33.5935 45 9 -2.6402 22.4193 36.7876 -Courier_New.ttf 87 Y 29.3410 33.5935 46 ; 8.5007 12.8068 30.9570 -Courier_New.ttf 87 Y 29.3410 33.5935 47 D 0.1879 28.4394 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 48 L -0.1016 28.2727 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 49 y 8.4747 29.3121 36.2527 -Courier_New.ttf 87 Y 29.3410 33.5935 50 ‘ -2.4269 12.7529 17.2297 -Courier_New.ttf 87 Y 29.3410 33.5935 51 \ -5.6866 24.6392 44.3865 -Courier_New.ttf 87 Y 29.3410 33.5935 52 R 0.1396 30.7070 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 53 < 0.9620 28.0000 31.5797 -Courier_New.ttf 87 Y 29.3410 33.5935 54 4 -2.4078 22.3232 35.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 55 8 -2.8403 21.3094 36.7876 -Courier_New.ttf 87 Y 29.3410 33.5935 56 0 -2.8215 23.6959 36.7876 -Courier_New.ttf 87 Y 29.3410 33.5935 57 A -0.0052 37.1505 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 58 E 0.1769 27.3234 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 59 B 0.2192 28.4167 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 60 v 8.1971 32.1252 25.2097 -Courier_New.ttf 87 Y 29.3410 33.5935 61 k -2.4819 26.6529 35.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 62 J 0.1984 28.6766 34.1640 -Courier_New.ttf 87 Y 29.3410 33.5935 63 U -0.0270 31.3964 34.1640 -Courier_New.ttf 87 Y 29.3410 33.5935 64 j -3.5464 18.4230 48.2928 -Courier_New.ttf 87 Y 29.3410 33.5935 65 ( -2.7068 8.4065 43.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 66 7 -2.4971 22.0027 35.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 67 § -2.6502 27.1696 39.8097 -Courier_New.ttf 87 Y 29.3410 33.5935 68 $ -5.3508 21.8261 44.3865 -Courier_New.ttf 87 Y 29.3410 33.5935 69 € -0.2004 31.2297 34.4140 -Courier_New.ttf 87 Y 29.3410 33.5935 70 / -6.7060 24.6392 44.3865 -Courier_New.ttf 87 Y 29.3410 33.5935 71 C -0.3969 28.2727 34.4140 -Courier_New.ttf 87 Y 29.3410 33.5935 72 * -2.4690 22.0860 21.9800 -Courier_New.ttf 87 Y 29.3410 33.5935 73 ” -2.4305 24.6392 15.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 74 ? -0.6667 21.0594 34.9406 -Courier_New.ttf 87 Y 29.3410 33.5935 75 { -3.0080 11.7324 43.3121 -Courier_New.ttf 87 Y 29.3410 33.5935 76 } -2.8218 11.7324 43.3121 -Courier_New.ttf 87 Y 29.3410 33.5935 77 , 24.6439 11.5597 17.2297 -Courier_New.ttf 87 Y 29.3410 33.5935 78 I -0.3411 22.0860 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 79 ° -8.7922 15.7638 15.7638 -Courier_New.ttf 87 Y 29.3410 33.5935 80 K 0.0947 31.2297 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 81 H -0.1332 28.4333 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 82 q 7.9702 29.1932 36.6565 -Courier_New.ttf 87 Y 29.3410 33.5935 83 & 2.9080 21.9800 31.2070 -Courier_New.ttf 87 Y 29.3410 33.5935 84 ’ -2.6400 12.7529 17.2297 -Courier_New.ttf 87 Y 29.3410 33.5935 85 [ -2.5048 9.5998 43.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 86 - 15.0953 24.8892 3.2297 -Courier_New.ttf 87 Y 29.3410 33.5935 87 Y 0.1400 29.3410 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 88 Q -0.0304 30.3865 40.7840 -Courier_New.ttf 87 Y 29.3410 33.5935 89 " -2.2326 19.6995 16.0365 -Courier_New.ttf 87 Y 29.3410 33.5935 90 ! -2.2591 6.4594 36.5505 -Courier_New.ttf 87 Y 29.3410 33.5935 91 x 8.4209 29.1932 25.2097 -Courier_New.ttf 87 Y 29.3410 33.5935 92 ) -2.5756 8.4065 43.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 93 = 11.0527 29.1932 11.3097 -Courier_New.ttf 87 Y 29.3410 33.5935 94 + 2.4282 26.8590 29.2455 -Courier_New.ttf 87 Y 29.3410 33.5935 95 X 0.0447 30.9092 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 96 » 7.7920 29.5432 26.8068 -Courier_New.ttf 87 Y 29.3410 33.5935 97 ' -2.2988 7.9027 17.2297 -Courier_New.ttf 87 Y 29.3410 33.5935 98 ¢ -4.2390 20.7867 38.0998 -Courier_New.ttf 87 Y 29.3410 33.5935 99 Z 0.2371 23.0959 33.5935 -Courier_New.ttf 87 Y 29.3410 33.5935 100 > 1.1618 28.0000 31.5797 -Courier_New.ttf 87 Y 29.3410 33.5935 101 ® -0.8602 34.7867 35.0594 -Courier_New.ttf 87 Y 29.3410 33.5935 102 © -0.8061 35.0594 34.7867 -Courier_New.ttf 87 Y 29.3410 33.5935 103 ] -2.3210 9.5998 43.1932 -Courier_New.ttf 87 Y 29.3410 33.5935 104 é -4.4403 27.4295 38.4203 -Courier_New.ttf 87 Y 29.3410 33.5935 105 z 8.2929 23.7959 25.2097 -Courier_New.ttf 87 Y 29.3410 33.5935 106 _ 47.3934 35.0594 2.3865 -Courier_New.ttf 87 Y 29.3410 33.5935 107 ¥ 0.0333 29.6744 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 1 t -0.0819 26.2362 34.6034 -Courier_New.ttf 88 Q 30.3865 40.7840 2 h -1.7922 29.6326 35.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 3 a 8.1586 26.9256 26.1840 -Courier_New.ttf 88 Q 30.3865 40.7840 4 n 8.1877 29.2061 25.6135 -Courier_New.ttf 88 Q 30.3865 40.7840 5 P 0.3357 26.0529 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 6 o 8.1214 26.8068 26.1840 -Courier_New.ttf 88 Q 30.3865 40.7840 7 e 8.1077 27.4295 26.1840 -Courier_New.ttf 88 Q 30.3865 40.7840 8 : 8.4166 8.6565 25.7802 -Courier_New.ttf 88 Q 30.3865 40.7840 9 r 8.2208 26.8295 25.6135 -Courier_New.ttf 88 Q 30.3865 40.7840 10 l -1.9194 24.4725 35.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 11 i -3.3131 24.4725 37.2498 -Courier_New.ttf 88 Q 30.3865 40.7840 12 1 -3.8277 22.8527 37.5770 -Courier_New.ttf 88 Q 30.3865 40.7840 13 | -2.0141 2.3865 43.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 14 N 0.0425 31.3964 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 15 f -2.0448 25.4696 35.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 16 g 8.1544 27.8462 36.6565 -Courier_New.ttf 88 Q 30.3865 40.7840 17 d -2.2307 30.1138 36.5505 -Courier_New.ttf 88 Q 30.3865 40.7840 18 W 0.4798 32.5836 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 19 s 8.2985 23.0959 26.1840 -Courier_New.ttf 88 Q 30.3865 40.7840 20 c 8.0599 26.6529 26.1840 -Courier_New.ttf 88 Q 30.3865 40.7840 21 u 8.4438 29.6326 25.7802 -Courier_New.ttf 88 Q 30.3865 40.7840 22 3 -2.5288 23.6959 36.7876 -Courier_New.ttf 88 Q 30.3865 40.7840 23 ~ 12.7989 24.8892 8.5732 -Courier_New.ttf 88 Q 30.3865 40.7840 24 # -4.7528 25.0657 42.1962 -Courier_New.ttf 88 Q 30.3865 40.7840 25 O -0.2085 29.1932 34.4140 -Courier_New.ttf 88 Q 30.3865 40.7840 26 ` -3.9478 9.8498 8.6565 -Courier_New.ttf 88 Q 30.3865 40.7840 27 @ -3.6167 22.0800 40.4029 -Courier_New.ttf 88 Q 30.3865 40.7840 28 F 0.2333 27.3234 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 29 S 0.1078 24.5392 34.4140 -Courier_New.ttf 88 Q 30.3865 40.7840 30 p 8.1131 29.8826 36.6565 -Courier_New.ttf 88 Q 30.3865 40.7840 31 “ -2.2534 24.6392 15.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 32 % -2.0392 24.3664 36.5505 -Courier_New.ttf 88 Q 30.3865 40.7840 33 £ -0.0487 26.2840 33.8435 -Courier_New.ttf 88 Q 30.3865 40.7840 34 . 26.7233 8.8232 7.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 35 2 -2.4662 23.1732 36.3838 -Courier_New.ttf 88 Q 30.3865 40.7840 36 5 -1.9825 23.7437 36.3838 -Courier_New.ttf 88 Q 30.3865 40.7840 37 m 8.3514 35.1594 25.6135 -Courier_New.ttf 88 Q 30.3865 40.7840 38 V 0.4026 35.1140 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 39 6 -2.6411 23.7959 36.7876 -Courier_New.ttf 88 Q 30.3865 40.7840 40 w 8.4523 32.7502 25.2097 -Courier_New.ttf 88 Q 30.3865 40.7840 41 T -0.0498 26.8590 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 42 M 0.1901 34.5367 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 43 G -0.1651 29.5621 34.4140 -Courier_New.ttf 88 Q 30.3865 40.7840 44 b -2.0819 29.8826 36.5505 -Courier_New.ttf 88 Q 30.3865 40.7840 45 9 -2.7132 22.4193 36.7876 -Courier_New.ttf 88 Q 30.3865 40.7840 46 ; 8.4869 12.8068 30.9570 -Courier_New.ttf 88 Q 30.3865 40.7840 47 D 0.2248 28.4394 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 48 L 0.2156 28.2727 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 49 y 8.5069 29.3121 36.2527 -Courier_New.ttf 88 Q 30.3865 40.7840 50 ‘ -2.0371 12.7529 17.2297 -Courier_New.ttf 88 Q 30.3865 40.7840 51 \ -5.4149 24.6392 44.3865 -Courier_New.ttf 88 Q 30.3865 40.7840 52 R 0.3284 30.7070 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 53 < 1.2913 28.0000 31.5797 -Courier_New.ttf 88 Q 30.3865 40.7840 54 4 -2.3102 22.3232 35.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 55 8 -2.3467 21.3094 36.7876 -Courier_New.ttf 88 Q 30.3865 40.7840 56 0 -2.6645 23.6959 36.7876 -Courier_New.ttf 88 Q 30.3865 40.7840 57 A 0.1901 37.1505 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 58 E 0.3070 27.3234 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 59 B 0.2676 28.4167 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 60 v 8.6185 32.1252 25.2097 -Courier_New.ttf 88 Q 30.3865 40.7840 61 k -2.0577 26.6529 35.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 62 J 0.1714 28.6766 34.1640 -Courier_New.ttf 88 Q 30.3865 40.7840 63 U 0.4190 31.3964 34.1640 -Courier_New.ttf 88 Q 30.3865 40.7840 64 j -3.7214 18.4230 48.2928 -Courier_New.ttf 88 Q 30.3865 40.7840 65 ( -2.2605 8.4065 43.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 66 7 -2.0537 22.0027 35.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 67 § -2.1878 27.1696 39.8097 -Courier_New.ttf 88 Q 30.3865 40.7840 68 $ -5.6235 21.8261 44.3865 -Courier_New.ttf 88 Q 30.3865 40.7840 69 € 0.3125 31.2297 34.4140 -Courier_New.ttf 88 Q 30.3865 40.7840 70 / -5.8102 24.6392 44.3865 -Courier_New.ttf 88 Q 30.3865 40.7840 71 C 0.3627 28.2727 34.4140 -Courier_New.ttf 88 Q 30.3865 40.7840 72 * -2.3417 22.0860 21.9800 -Courier_New.ttf 88 Q 30.3865 40.7840 73 ” -2.3176 24.6392 15.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 74 ? -0.6976 21.0594 34.9406 -Courier_New.ttf 88 Q 30.3865 40.7840 75 { -2.4235 11.7324 43.3121 -Courier_New.ttf 88 Q 30.3865 40.7840 76 } -2.2707 11.7324 43.3121 -Courier_New.ttf 88 Q 30.3865 40.7840 77 , 25.1793 11.5597 17.2297 -Courier_New.ttf 88 Q 30.3865 40.7840 78 I 0.3534 22.0860 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 79 ° -8.7720 15.7638 15.7638 -Courier_New.ttf 88 Q 30.3865 40.7840 80 K 0.2260 31.2297 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 81 H 0.2325 28.4333 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 82 q 8.3709 29.1932 36.6565 -Courier_New.ttf 88 Q 30.3865 40.7840 83 & 2.8913 21.9800 31.2070 -Courier_New.ttf 88 Q 30.3865 40.7840 84 ’ -2.0480 12.7529 17.2297 -Courier_New.ttf 88 Q 30.3865 40.7840 85 [ -1.8644 9.5998 43.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 86 - 15.7598 24.8892 3.2297 -Courier_New.ttf 88 Q 30.3865 40.7840 87 Y 0.2905 29.3410 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 88 Q -0.1169 30.3865 40.7840 -Courier_New.ttf 88 Q 30.3865 40.7840 89 " -1.9349 19.6995 16.0365 -Courier_New.ttf 88 Q 30.3865 40.7840 90 ! -2.0118 6.4594 36.5505 -Courier_New.ttf 88 Q 30.3865 40.7840 91 x 8.5616 29.1932 25.2097 -Courier_New.ttf 88 Q 30.3865 40.7840 92 ) -2.4432 8.4065 43.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 93 = 11.4456 29.1932 11.3097 -Courier_New.ttf 88 Q 30.3865 40.7840 94 + 2.7200 26.8590 29.2455 -Courier_New.ttf 88 Q 30.3865 40.7840 95 X 0.3028 30.9092 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 96 » 8.1345 29.5432 26.8068 -Courier_New.ttf 88 Q 30.3865 40.7840 97 ' -2.0854 7.9027 17.2297 -Courier_New.ttf 88 Q 30.3865 40.7840 98 ¢ -4.1547 20.7867 38.0998 -Courier_New.ttf 88 Q 30.3865 40.7840 99 Z 0.4055 23.0959 33.5935 -Courier_New.ttf 88 Q 30.3865 40.7840 100 > 1.4586 28.0000 31.5797 -Courier_New.ttf 88 Q 30.3865 40.7840 101 ® -0.7396 34.7867 35.0594 -Courier_New.ttf 88 Q 30.3865 40.7840 102 © -0.7139 35.0594 34.7867 -Courier_New.ttf 88 Q 30.3865 40.7840 103 ] -1.7783 9.5998 43.1932 -Courier_New.ttf 88 Q 30.3865 40.7840 104 é -4.3890 27.4295 38.4203 -Courier_New.ttf 88 Q 30.3865 40.7840 105 z 8.6551 23.7959 25.2097 -Courier_New.ttf 88 Q 30.3865 40.7840 106 _ 47.9487 35.0594 2.3865 -Courier_New.ttf 88 Q 30.3865 40.7840 107 ¥ 0.3751 29.6744 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 1 t 1.9082 26.2362 34.6034 -Courier_New.ttf 89 " 19.6995 16.0365 2 h -0.3538 29.6326 35.9800 -Courier_New.ttf 89 " 19.6995 16.0365 3 a 10.5466 26.9256 26.1840 -Courier_New.ttf 89 " 19.6995 16.0365 4 n 10.2970 29.2061 25.6135 -Courier_New.ttf 89 " 19.6995 16.0365 5 P 2.2021 26.0529 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 6 o 10.0642 26.8068 26.1840 -Courier_New.ttf 89 " 19.6995 16.0365 7 e 10.3040 27.4295 26.1840 -Courier_New.ttf 89 " 19.6995 16.0365 8 : 10.6909 8.6565 25.7802 -Courier_New.ttf 89 " 19.6995 16.0365 9 r 10.3543 26.8295 25.6135 -Courier_New.ttf 89 " 19.6995 16.0365 10 l 0.1213 24.4725 35.9800 -Courier_New.ttf 89 " 19.6995 16.0365 11 i -1.0742 24.4725 37.2498 -Courier_New.ttf 89 " 19.6995 16.0365 12 1 -1.4540 22.8527 37.5770 -Courier_New.ttf 89 " 19.6995 16.0365 13 | -0.2463 2.3865 43.1932 -Courier_New.ttf 89 " 19.6995 16.0365 14 N 2.5749 31.3964 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 15 f 0.4872 25.4696 35.9800 -Courier_New.ttf 89 " 19.6995 16.0365 16 g 10.4367 27.8462 36.6565 -Courier_New.ttf 89 " 19.6995 16.0365 17 d -0.0774 30.1138 36.5505 -Courier_New.ttf 89 " 19.6995 16.0365 18 W 2.5885 32.5836 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 19 s 10.3593 23.0959 26.1840 -Courier_New.ttf 89 " 19.6995 16.0365 20 c 10.4703 26.6529 26.1840 -Courier_New.ttf 89 " 19.6995 16.0365 21 u 10.8774 29.6326 25.7802 -Courier_New.ttf 89 " 19.6995 16.0365 22 3 -0.3524 23.6959 36.7876 -Courier_New.ttf 89 " 19.6995 16.0365 23 ~ 15.0090 24.8892 8.5732 -Courier_New.ttf 89 " 19.6995 16.0365 24 # -2.5432 25.0657 42.1962 -Courier_New.ttf 89 " 19.6995 16.0365 25 O 2.2982 29.1932 34.4140 -Courier_New.ttf 89 " 19.6995 16.0365 26 ` -1.8222 9.8498 8.6565 -Courier_New.ttf 89 " 19.6995 16.0365 27 @ -1.6023 22.0800 40.4029 -Courier_New.ttf 89 " 19.6995 16.0365 28 F 1.8301 27.3234 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 29 S 2.1819 24.5392 34.4140 -Courier_New.ttf 89 " 19.6995 16.0365 30 p 9.9850 29.8826 36.6565 -Courier_New.ttf 89 " 19.6995 16.0365 31 “ -0.3470 24.6392 15.1932 -Courier_New.ttf 89 " 19.6995 16.0365 32 % -0.0181 24.3664 36.5505 -Courier_New.ttf 89 " 19.6995 16.0365 33 £ 1.8610 26.2840 33.8435 -Courier_New.ttf 89 " 19.6995 16.0365 34 . 28.8408 8.8232 7.9800 -Courier_New.ttf 89 " 19.6995 16.0365 35 2 -0.2629 23.1732 36.3838 -Courier_New.ttf 89 " 19.6995 16.0365 36 5 0.0357 23.7437 36.3838 -Courier_New.ttf 89 " 19.6995 16.0365 37 m 10.1057 35.1594 25.6135 -Courier_New.ttf 89 " 19.6995 16.0365 38 V 2.3311 35.1140 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 39 6 -0.2523 23.7959 36.7876 -Courier_New.ttf 89 " 19.6995 16.0365 40 w 10.6924 32.7502 25.2097 -Courier_New.ttf 89 " 19.6995 16.0365 41 T 2.5853 26.8590 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 42 M 2.4198 34.5367 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 43 G 2.4422 29.5621 34.4140 -Courier_New.ttf 89 " 19.6995 16.0365 44 b 0.0383 29.8826 36.5505 -Courier_New.ttf 89 " 19.6995 16.0365 45 9 -0.5462 22.4193 36.7876 -Courier_New.ttf 89 " 19.6995 16.0365 46 ; 10.4802 12.8068 30.9570 -Courier_New.ttf 89 " 19.6995 16.0365 47 D 2.5809 28.4394 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 48 L 2.5069 28.2727 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 49 y 10.5947 29.3121 36.2527 -Courier_New.ttf 89 " 19.6995 16.0365 50 ‘ 0.0458 12.7529 17.2297 -Courier_New.ttf 89 " 19.6995 16.0365 51 \ -3.1101 24.6392 44.3865 -Courier_New.ttf 89 " 19.6995 16.0365 52 R 2.3456 30.7070 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 53 < 3.2975 28.0000 31.5797 -Courier_New.ttf 89 " 19.6995 16.0365 54 4 0.0853 22.3232 35.9800 -Courier_New.ttf 89 " 19.6995 16.0365 55 8 -0.7006 21.3094 36.7876 -Courier_New.ttf 89 " 19.6995 16.0365 56 0 -0.5201 23.6959 36.7876 -Courier_New.ttf 89 " 19.6995 16.0365 57 A 2.2526 37.1505 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 58 E 2.3579 27.3234 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 59 B 2.4435 28.4167 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 60 v 10.5512 32.1252 25.2097 -Courier_New.ttf 89 " 19.6995 16.0365 61 k 0.0721 26.6529 35.9800 -Courier_New.ttf 89 " 19.6995 16.0365 62 J 2.6900 28.6766 34.1640 -Courier_New.ttf 89 " 19.6995 16.0365 63 U 2.2994 31.3964 34.1640 -Courier_New.ttf 89 " 19.6995 16.0365 64 j -1.1680 18.4230 48.2928 -Courier_New.ttf 89 " 19.6995 16.0365 65 ( 0.1263 8.4065 43.1932 -Courier_New.ttf 89 " 19.6995 16.0365 66 7 -0.1559 22.0027 35.9800 -Courier_New.ttf 89 " 19.6995 16.0365 67 § 0.1470 27.1696 39.8097 -Courier_New.ttf 89 " 19.6995 16.0365 68 $ -3.1509 21.8261 44.3865 -Courier_New.ttf 89 " 19.6995 16.0365 69 € 2.1476 31.2297 34.4140 -Courier_New.ttf 89 " 19.6995 16.0365 70 / -3.7815 24.6392 44.3865 -Courier_New.ttf 89 " 19.6995 16.0365 71 C 2.3173 28.2727 34.4140 -Courier_New.ttf 89 " 19.6995 16.0365 72 * 0.1844 22.0860 21.9800 -Courier_New.ttf 89 " 19.6995 16.0365 73 ” -0.1751 24.6392 15.1932 -Courier_New.ttf 89 " 19.6995 16.0365 74 ? 1.5722 21.0594 34.9406 -Courier_New.ttf 89 " 19.6995 16.0365 75 { 0.2046 11.7324 43.3121 -Courier_New.ttf 89 " 19.6995 16.0365 76 } -0.6036 11.7324 43.3121 -Courier_New.ttf 89 " 19.6995 16.0365 77 , 27.4665 11.5597 17.2297 -Courier_New.ttf 89 " 19.6995 16.0365 78 I 2.2451 22.0860 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 79 ° -6.3700 15.7638 15.7638 -Courier_New.ttf 89 " 19.6995 16.0365 80 K 2.4249 31.2297 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 81 H 2.2421 28.4333 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 82 q 10.2061 29.1932 36.6565 -Courier_New.ttf 89 " 19.6995 16.0365 83 & 5.5023 21.9800 31.2070 -Courier_New.ttf 89 " 19.6995 16.0365 84 ’ -0.0769 12.7529 17.2297 -Courier_New.ttf 89 " 19.6995 16.0365 85 [ -0.0153 9.5998 43.1932 -Courier_New.ttf 89 " 19.6995 16.0365 86 - 17.5499 24.8892 3.2297 -Courier_New.ttf 89 " 19.6995 16.0365 87 Y 2.6593 29.3410 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 88 Q 2.3270 30.3865 40.7840 -Courier_New.ttf 89 " 19.6995 16.0365 89 " -0.0634 19.6995 16.0365 -Courier_New.ttf 89 " 19.6995 16.0365 90 ! -0.1426 6.4594 36.5505 -Courier_New.ttf 89 " 19.6995 16.0365 91 x 10.6233 29.1932 25.2097 -Courier_New.ttf 89 " 19.6995 16.0365 92 ) 0.4684 8.4065 43.1932 -Courier_New.ttf 89 " 19.6995 16.0365 93 = 13.2288 29.1932 11.3097 -Courier_New.ttf 89 " 19.6995 16.0365 94 + 5.1306 26.8590 29.2455 -Courier_New.ttf 89 " 19.6995 16.0365 95 X 2.4473 30.9092 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 96 » 10.1519 28.7766 26.8068 -Courier_New.ttf 89 " 19.6995 16.0365 97 ' -0.2814 7.9027 17.2297 -Courier_New.ttf 89 " 19.6995 16.0365 98 ¢ -1.9924 20.7867 38.0998 -Courier_New.ttf 89 " 19.6995 16.0365 99 Z 2.4865 23.0959 33.5935 -Courier_New.ttf 89 " 19.6995 16.0365 100 > 3.4054 28.0000 31.5797 -Courier_New.ttf 89 " 19.6995 16.0365 101 ® 1.6235 34.7867 35.0594 -Courier_New.ttf 89 " 19.6995 16.0365 102 © 1.6109 35.0594 34.7867 -Courier_New.ttf 89 " 19.6995 16.0365 103 ] 0.0144 9.5998 43.1932 -Courier_New.ttf 89 " 19.6995 16.0365 104 é -1.9142 27.4295 38.4203 -Courier_New.ttf 89 " 19.6995 16.0365 105 z 10.7500 23.7959 25.2097 -Courier_New.ttf 89 " 19.6995 16.0365 106 _ 49.9119 35.0594 2.3865 -Courier_New.ttf 89 " 19.6995 16.0365 107 ¥ 2.2252 29.6744 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 1 t 2.1423 26.2362 34.6034 -Courier_New.ttf 90 ! 6.4594 36.5505 2 h -0.1014 29.6326 35.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 3 a 10.5704 26.9256 26.1840 -Courier_New.ttf 90 ! 6.4594 36.5505 4 n 10.1398 29.2061 25.6135 -Courier_New.ttf 90 ! 6.4594 36.5505 5 P 2.3208 26.0529 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 6 o 10.5320 26.8068 26.1840 -Courier_New.ttf 90 ! 6.4594 36.5505 7 e 10.4855 27.4295 26.1840 -Courier_New.ttf 90 ! 6.4594 36.5505 8 : 10.5937 8.6565 25.7802 -Courier_New.ttf 90 ! 6.4594 36.5505 9 r 10.4633 26.8295 25.6135 -Courier_New.ttf 90 ! 6.4594 36.5505 10 l 0.1644 24.4725 35.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 11 i -1.3101 24.4725 37.2498 -Courier_New.ttf 90 ! 6.4594 36.5505 12 1 -1.5939 22.8527 37.5770 -Courier_New.ttf 90 ! 6.4594 36.5505 13 | 0.1950 2.3865 43.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 14 N 2.3114 31.3964 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 15 f -0.0917 25.4696 35.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 16 g 10.4791 27.8462 36.6565 -Courier_New.ttf 90 ! 6.4594 36.5505 17 d 0.0144 30.1138 36.5505 -Courier_New.ttf 90 ! 6.4594 36.5505 18 W 2.1128 32.5836 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 19 s 10.1857 23.0959 26.1840 -Courier_New.ttf 90 ! 6.4594 36.5505 20 c 10.7511 26.6529 26.1840 -Courier_New.ttf 90 ! 6.4594 36.5505 21 u 10.9746 29.6326 25.7802 -Courier_New.ttf 90 ! 6.4594 36.5505 22 3 -0.5819 23.6959 36.7876 -Courier_New.ttf 90 ! 6.4594 36.5505 23 ~ 14.8660 24.8892 8.5732 -Courier_New.ttf 90 ! 6.4594 36.5505 24 # -2.3123 25.0657 42.1962 -Courier_New.ttf 90 ! 6.4594 36.5505 25 O 2.4016 29.1932 34.4140 -Courier_New.ttf 90 ! 6.4594 36.5505 26 ` -1.8111 9.8498 8.6565 -Courier_New.ttf 90 ! 6.4594 36.5505 27 @ -1.5285 22.0800 40.4029 -Courier_New.ttf 90 ! 6.4594 36.5505 28 F 2.4125 27.3234 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 29 S 2.3131 24.5392 34.4140 -Courier_New.ttf 90 ! 6.4594 36.5505 30 p 10.2208 29.8826 36.6565 -Courier_New.ttf 90 ! 6.4594 36.5505 31 “ 0.1143 24.6392 15.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 32 % 0.0357 24.3664 36.5505 -Courier_New.ttf 90 ! 6.4594 36.5505 33 £ 2.1333 26.2840 33.8435 -Courier_New.ttf 90 ! 6.4594 36.5505 34 . 28.4917 8.8232 7.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 35 2 -0.4962 23.1732 36.3838 -Courier_New.ttf 90 ! 6.4594 36.5505 36 5 -0.0979 23.7437 36.3838 -Courier_New.ttf 90 ! 6.4594 36.5505 37 m 10.5751 35.1594 25.6135 -Courier_New.ttf 90 ! 6.4594 36.5505 38 V 2.4936 35.1140 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 39 6 -0.4506 23.7959 36.7876 -Courier_New.ttf 90 ! 6.4594 36.5505 40 w 10.7003 32.7502 25.2097 -Courier_New.ttf 90 ! 6.4594 36.5505 41 T 2.5333 26.8590 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 42 M 2.3053 34.5367 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 43 G 2.2537 29.5621 34.4140 -Courier_New.ttf 90 ! 6.4594 36.5505 44 b 0.0097 29.8826 36.5505 -Courier_New.ttf 90 ! 6.4594 36.5505 45 9 -0.3227 22.4193 36.7876 -Courier_New.ttf 90 ! 6.4594 36.5505 46 ; 10.9347 12.8068 30.9570 -Courier_New.ttf 90 ! 6.4594 36.5505 47 D 2.5184 28.4394 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 48 L 2.2206 28.2727 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 49 y 10.4988 29.3121 36.2527 -Courier_New.ttf 90 ! 6.4594 36.5505 50 ‘ -0.0662 12.7529 17.2297 -Courier_New.ttf 90 ! 6.4594 36.5505 51 \ -3.0899 24.6392 44.3865 -Courier_New.ttf 90 ! 6.4594 36.5505 52 R 2.2636 30.7070 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 53 < 3.4879 28.0000 31.5797 -Courier_New.ttf 90 ! 6.4594 36.5505 54 4 0.2742 22.3232 35.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 55 8 -0.3969 21.3094 36.7876 -Courier_New.ttf 90 ! 6.4594 36.5505 56 0 -0.4753 23.6959 36.7876 -Courier_New.ttf 90 ! 6.4594 36.5505 57 A 2.4222 37.1505 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 58 E 2.3578 27.3234 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 59 B 2.4774 28.4167 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 60 v 10.9724 32.1252 25.2097 -Courier_New.ttf 90 ! 6.4594 36.5505 61 k -0.0882 26.6529 35.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 62 J 2.3810 28.6766 34.1640 -Courier_New.ttf 90 ! 6.4594 36.5505 63 U 2.2369 31.3964 34.1640 -Courier_New.ttf 90 ! 6.4594 36.5505 64 j -1.2393 18.4230 48.2928 -Courier_New.ttf 90 ! 6.4594 36.5505 65 ( -0.0440 8.4065 43.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 66 7 -0.0696 22.0027 35.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 67 § -0.0871 27.1696 39.8097 -Courier_New.ttf 90 ! 6.4594 36.5505 68 $ -3.2706 21.8261 44.3865 -Courier_New.ttf 90 ! 6.4594 36.5505 69 € 2.0693 31.2297 34.4140 -Courier_New.ttf 90 ! 6.4594 36.5505 70 / -3.5296 24.6392 44.3865 -Courier_New.ttf 90 ! 6.4594 36.5505 71 C 1.9532 28.2727 34.4140 -Courier_New.ttf 90 ! 6.4594 36.5505 72 * 0.0514 22.0860 21.9800 -Courier_New.ttf 90 ! 6.4594 36.5505 73 ” -0.0357 24.6392 15.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 74 ? 1.5145 21.0594 34.9406 -Courier_New.ttf 90 ! 6.4594 36.5505 75 { -0.2500 11.7324 43.3121 -Courier_New.ttf 90 ! 6.4594 36.5505 76 } -0.2787 11.7324 43.3121 -Courier_New.ttf 90 ! 6.4594 36.5505 77 , 27.6240 11.5597 17.2297 -Courier_New.ttf 90 ! 6.4594 36.5505 78 I 2.1115 22.0860 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 79 ° -6.4474 15.7638 15.7638 -Courier_New.ttf 90 ! 6.4594 36.5505 80 K 2.3064 31.2297 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 81 H 2.4365 28.4333 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 82 q 10.1742 29.1932 36.6565 -Courier_New.ttf 90 ! 6.4594 36.5505 83 & 5.3740 21.9800 31.2070 -Courier_New.ttf 90 ! 6.4594 36.5505 84 ’ -0.5564 12.7529 17.2297 -Courier_New.ttf 90 ! 6.4594 36.5505 85 [ 0.0060 9.5998 43.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 86 - 17.4342 24.8892 3.2297 -Courier_New.ttf 90 ! 6.4594 36.5505 87 Y 2.3351 29.3410 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 88 Q 2.1480 30.3865 40.7840 -Courier_New.ttf 90 ! 6.4594 36.5505 89 " 0.1272 19.6995 16.0365 -Courier_New.ttf 90 ! 6.4594 36.5505 90 ! -0.2998 6.4594 36.5505 -Courier_New.ttf 90 ! 6.4594 36.5505 91 x 11.0508 29.1932 25.2097 -Courier_New.ttf 90 ! 6.4594 36.5505 92 ) -0.1553 8.4065 43.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 93 = 13.5203 29.1932 11.3097 -Courier_New.ttf 90 ! 6.4594 36.5505 94 + 4.9438 26.8590 29.2455 -Courier_New.ttf 90 ! 6.4594 36.5505 95 X 2.5516 30.9092 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 96 » 10.2208 28.7766 26.8068 -Courier_New.ttf 90 ! 6.4594 36.5505 97 ' 0.1367 7.9027 17.2297 -Courier_New.ttf 90 ! 6.4594 36.5505 98 ¢ -2.0906 20.7867 38.0998 -Courier_New.ttf 90 ! 6.4594 36.5505 99 Z 2.4222 23.0959 33.5935 -Courier_New.ttf 90 ! 6.4594 36.5505 100 > 3.5640 28.0000 31.5797 -Courier_New.ttf 90 ! 6.4594 36.5505 101 ® 1.5799 34.7867 35.0594 -Courier_New.ttf 90 ! 6.4594 36.5505 102 © 1.9236 35.0594 34.7867 -Courier_New.ttf 90 ! 6.4594 36.5505 103 ] 0.3554 9.5998 43.1932 -Courier_New.ttf 90 ! 6.4594 36.5505 104 é -1.7085 27.4295 38.4203 -Courier_New.ttf 90 ! 6.4594 36.5505 105 z 10.7834 23.7959 25.2097 -Courier_New.ttf 90 ! 6.4594 36.5505 106 _ 49.8176 35.0594 2.3865 -Courier_New.ttf 90 ! 6.4594 36.5505 107 ¥ 2.5418 29.6744 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 1 t -8.4694 26.2362 34.6034 -Courier_New.ttf 91 x 29.1932 25.2097 2 h -10.5794 29.6326 35.9800 -Courier_New.ttf 91 x 29.1932 25.2097 3 a -0.4038 26.9256 26.1840 -Courier_New.ttf 91 x 29.1932 25.2097 4 n -0.3823 29.2061 25.6135 -Courier_New.ttf 91 x 29.1932 25.2097 5 P -8.2901 26.0529 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 6 o -0.5651 26.8068 26.1840 -Courier_New.ttf 91 x 29.1932 25.2097 7 e -0.4878 27.4295 26.1840 -Courier_New.ttf 91 x 29.1932 25.2097 8 : -0.0839 8.6565 25.7802 -Courier_New.ttf 91 x 29.1932 25.2097 9 r -0.3237 26.8295 25.6135 -Courier_New.ttf 91 x 29.1932 25.2097 10 l -10.7002 24.4725 35.9800 -Courier_New.ttf 91 x 29.1932 25.2097 11 i -11.6734 24.4725 37.2498 -Courier_New.ttf 91 x 29.1932 25.2097 12 1 -12.6513 22.8527 37.5770 -Courier_New.ttf 91 x 29.1932 25.2097 13 | -10.5116 2.3865 43.1932 -Courier_New.ttf 91 x 29.1932 25.2097 14 N -8.4449 31.3964 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 15 f -10.4492 25.4696 35.9800 -Courier_New.ttf 91 x 29.1932 25.2097 16 g -0.7690 27.8462 36.6565 -Courier_New.ttf 91 x 29.1932 25.2097 17 d -11.0415 30.1138 36.5505 -Courier_New.ttf 91 x 29.1932 25.2097 18 W -8.3838 32.5836 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 19 s -0.4520 23.0959 26.1840 -Courier_New.ttf 91 x 29.1932 25.2097 20 c -0.5267 26.6529 26.1840 -Courier_New.ttf 91 x 29.1932 25.2097 21 u -0.0670 29.6326 25.7802 -Courier_New.ttf 91 x 29.1932 25.2097 22 3 -11.2710 23.6959 36.7876 -Courier_New.ttf 91 x 29.1932 25.2097 23 ~ 3.8889 24.8892 8.5732 -Courier_New.ttf 91 x 29.1932 25.2097 24 # -13.3483 25.0657 42.1962 -Courier_New.ttf 91 x 29.1932 25.2097 25 O -8.6171 29.1932 34.4140 -Courier_New.ttf 91 x 29.1932 25.2097 26 ` -12.6044 9.8498 8.6565 -Courier_New.ttf 91 x 29.1932 25.2097 27 @ -12.1648 22.0800 40.4029 -Courier_New.ttf 91 x 29.1932 25.2097 28 F -8.3825 27.3234 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 29 S -8.8209 24.5392 34.4140 -Courier_New.ttf 91 x 29.1932 25.2097 30 p -0.2290 29.8826 36.6565 -Courier_New.ttf 91 x 29.1932 25.2097 31 “ -10.4717 24.6392 15.1932 -Courier_New.ttf 91 x 29.1932 25.2097 32 % -10.7332 24.3664 36.5505 -Courier_New.ttf 91 x 29.1932 25.2097 33 £ -8.3713 26.2840 33.8435 -Courier_New.ttf 91 x 29.1932 25.2097 34 . 17.6970 8.8232 7.9800 -Courier_New.ttf 91 x 29.1932 25.2097 35 2 -11.4984 23.1732 36.3838 -Courier_New.ttf 91 x 29.1932 25.2097 36 5 -10.5163 23.7437 36.3838 -Courier_New.ttf 91 x 29.1932 25.2097 37 m -0.3428 35.1594 25.6135 -Courier_New.ttf 91 x 29.1932 25.2097 38 V -8.1725 35.1140 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 39 6 -11.3895 23.7959 36.7876 -Courier_New.ttf 91 x 29.1932 25.2097 40 w 0.1274 32.7502 25.2097 -Courier_New.ttf 91 x 29.1932 25.2097 41 T -8.7249 26.8590 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 42 M -8.2564 34.5367 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 43 G -8.6170 29.5621 34.4140 -Courier_New.ttf 91 x 29.1932 25.2097 44 b -10.6447 29.8826 36.5505 -Courier_New.ttf 91 x 29.1932 25.2097 45 9 -11.2266 22.4193 36.7876 -Courier_New.ttf 91 x 29.1932 25.2097 46 ; 0.1417 12.8068 30.9570 -Courier_New.ttf 91 x 29.1932 25.2097 47 D -8.4223 28.4394 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 48 L -8.2194 28.2727 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 49 y -0.1481 29.3121 36.2527 -Courier_New.ttf 91 x 29.1932 25.2097 50 ‘ -10.6760 12.7529 17.2297 -Courier_New.ttf 91 x 29.1932 25.2097 51 \ -13.9397 24.6392 44.3865 -Courier_New.ttf 91 x 29.1932 25.2097 52 R -8.1733 30.7070 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 53 < -6.8494 28.0000 31.5797 -Courier_New.ttf 91 x 29.1932 25.2097 54 4 -10.8423 22.3232 35.9800 -Courier_New.ttf 91 x 29.1932 25.2097 55 8 -11.0440 21.3094 36.7876 -Courier_New.ttf 91 x 29.1932 25.2097 56 0 -11.1196 23.6959 36.7876 -Courier_New.ttf 91 x 29.1932 25.2097 57 A -8.4552 37.1505 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 58 E -8.4372 27.3234 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 59 B -8.3652 28.4167 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 60 v -0.2613 32.1252 25.2097 -Courier_New.ttf 91 x 29.1932 25.2097 61 k -11.0062 26.6529 35.9800 -Courier_New.ttf 91 x 29.1932 25.2097 62 J -8.4464 28.6766 34.1640 -Courier_New.ttf 91 x 29.1932 25.2097 63 U -8.4319 31.3964 34.1640 -Courier_New.ttf 91 x 29.1932 25.2097 64 j -12.1310 18.4230 48.2928 -Courier_New.ttf 91 x 29.1932 25.2097 65 ( -10.9302 8.4065 43.1932 -Courier_New.ttf 91 x 29.1932 25.2097 66 7 -10.9598 22.0027 35.9800 -Courier_New.ttf 91 x 29.1932 25.2097 67 § -10.8463 27.1696 39.8097 -Courier_New.ttf 91 x 29.1932 25.2097 68 $ -13.7370 21.8261 44.3865 -Courier_New.ttf 91 x 29.1932 25.2097 69 € -8.7078 31.2297 34.4140 -Courier_New.ttf 91 x 29.1932 25.2097 70 / -14.2810 24.6392 44.3865 -Courier_New.ttf 91 x 29.1932 25.2097 71 C -8.5082 28.2727 34.4140 -Courier_New.ttf 91 x 29.1932 25.2097 72 * -10.5409 22.0860 21.9800 -Courier_New.ttf 91 x 29.1932 25.2097 73 ” -10.9159 24.6392 15.1932 -Courier_New.ttf 91 x 29.1932 25.2097 74 ? -9.2691 21.0594 34.9406 -Courier_New.ttf 91 x 29.1932 25.2097 75 { -11.4194 11.7324 43.3121 -Courier_New.ttf 91 x 29.1932 25.2097 76 } -11.1456 11.7324 43.3121 -Courier_New.ttf 91 x 29.1932 25.2097 77 , 16.6130 11.5597 17.2297 -Courier_New.ttf 91 x 29.1932 25.2097 78 I -8.3762 22.0860 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 79 ° -17.0973 15.7638 15.7638 -Courier_New.ttf 91 x 29.1932 25.2097 80 K -8.5260 31.2297 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 81 H -8.5524 28.4333 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 82 q -0.5233 29.1932 36.6565 -Courier_New.ttf 91 x 29.1932 25.2097 83 & -5.5893 21.9800 31.2070 -Courier_New.ttf 91 x 29.1932 25.2097 84 ’ -10.7262 12.7529 17.2297 -Courier_New.ttf 91 x 29.1932 25.2097 85 [ -10.6085 9.5998 43.1932 -Courier_New.ttf 91 x 29.1932 25.2097 86 - 6.8594 24.8892 3.2297 -Courier_New.ttf 91 x 29.1932 25.2097 87 Y -8.3640 29.3410 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 88 Q -8.6143 30.3865 40.7840 -Courier_New.ttf 91 x 29.1932 25.2097 89 " -10.7929 19.6995 16.0365 -Courier_New.ttf 91 x 29.1932 25.2097 90 ! -10.5368 6.4594 36.5505 -Courier_New.ttf 91 x 29.1932 25.2097 91 x 0.0611 29.1932 25.2097 -Courier_New.ttf 91 x 29.1932 25.2097 92 ) -10.7514 8.4065 43.1932 -Courier_New.ttf 91 x 29.1932 25.2097 93 = 2.5758 29.1932 11.3097 -Courier_New.ttf 91 x 29.1932 25.2097 94 + -5.8352 26.8590 29.2455 -Courier_New.ttf 91 x 29.1932 25.2097 95 X -8.1128 30.9092 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 96 » -0.9420 29.5432 26.8068 -Courier_New.ttf 91 x 29.1932 25.2097 97 ' -10.4926 7.9027 17.2297 -Courier_New.ttf 91 x 29.1932 25.2097 98 ¢ -12.9480 20.7867 38.0998 -Courier_New.ttf 91 x 29.1932 25.2097 99 Z -8.3926 23.0959 33.5935 -Courier_New.ttf 91 x 29.1932 25.2097 100 > -7.4460 28.0000 31.5797 -Courier_New.ttf 91 x 29.1932 25.2097 101 ® -9.3007 34.7867 35.0594 -Courier_New.ttf 91 x 29.1932 25.2097 102 © -8.9125 35.0594 34.7867 -Courier_New.ttf 91 x 29.1932 25.2097 103 ] -10.6512 9.5998 43.1932 -Courier_New.ttf 91 x 29.1932 25.2097 104 é -12.8192 27.4295 38.4203 -Courier_New.ttf 91 x 29.1932 25.2097 105 z -0.1686 23.7959 25.2097 -Courier_New.ttf 91 x 29.1932 25.2097 106 _ 39.3384 35.0594 2.3865 -Courier_New.ttf 91 x 29.1932 25.2097 107 ¥ -8.2767 29.6744 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 1 t 1.6543 26.2362 34.6034 -Courier_New.ttf 92 ) 8.4065 43.1932 2 h -0.3712 29.6326 35.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 3 a 9.9557 26.9256 26.1840 -Courier_New.ttf 92 ) 8.4065 43.1932 4 n 10.3132 29.2061 25.6135 -Courier_New.ttf 92 ) 8.4065 43.1932 5 P 2.3248 26.0529 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 6 o 9.9354 26.8068 26.1840 -Courier_New.ttf 92 ) 8.4065 43.1932 7 e 10.3119 27.4295 26.1840 -Courier_New.ttf 92 ) 8.4065 43.1932 8 : 10.9501 8.6565 25.7802 -Courier_New.ttf 92 ) 8.4065 43.1932 9 r 10.5402 26.8295 25.6135 -Courier_New.ttf 92 ) 8.4065 43.1932 10 l 0.0182 24.4725 35.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 11 i -1.4881 24.4725 37.2498 -Courier_New.ttf 92 ) 8.4065 43.1932 12 1 -1.5530 22.8527 37.5770 -Courier_New.ttf 92 ) 8.4065 43.1932 13 | 0.0115 2.3865 43.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 14 N 2.3693 31.3964 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 15 f 0.1405 25.4696 35.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 16 g 10.4508 27.8462 36.6565 -Courier_New.ttf 92 ) 8.4065 43.1932 17 d 0.0917 30.1138 36.5505 -Courier_New.ttf 92 ) 8.4065 43.1932 18 W 2.5600 32.5836 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 19 s 10.4718 23.0959 26.1840 -Courier_New.ttf 92 ) 8.4065 43.1932 20 c 10.3626 26.6529 26.1840 -Courier_New.ttf 92 ) 8.4065 43.1932 21 u 11.1897 29.6326 25.7802 -Courier_New.ttf 92 ) 8.4065 43.1932 22 3 -0.3681 23.6959 36.7876 -Courier_New.ttf 92 ) 8.4065 43.1932 23 ~ 14.8810 24.8892 8.5732 -Courier_New.ttf 92 ) 8.4065 43.1932 24 # -2.5508 25.0657 42.1962 -Courier_New.ttf 92 ) 8.4065 43.1932 25 O 2.1396 29.1932 34.4140 -Courier_New.ttf 92 ) 8.4065 43.1932 26 ` -2.0440 9.8498 8.6565 -Courier_New.ttf 92 ) 8.4065 43.1932 27 @ -1.3061 22.0800 40.4029 -Courier_New.ttf 92 ) 8.4065 43.1932 28 F 2.4093 27.3234 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 29 S 2.2041 24.5392 34.4140 -Courier_New.ttf 92 ) 8.4065 43.1932 30 p 10.3265 29.8826 36.6565 -Courier_New.ttf 92 ) 8.4065 43.1932 31 “ 0.1478 24.6392 15.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 32 % -0.1690 24.3664 36.5505 -Courier_New.ttf 92 ) 8.4065 43.1932 33 £ 2.0091 26.2840 33.8435 -Courier_New.ttf 92 ) 8.4065 43.1932 34 . 28.5992 8.8232 7.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 35 2 -0.4799 23.1732 36.3838 -Courier_New.ttf 92 ) 8.4065 43.1932 36 5 -0.0143 23.7437 36.3838 -Courier_New.ttf 92 ) 8.4065 43.1932 37 m 10.2137 35.1594 25.6135 -Courier_New.ttf 92 ) 8.4065 43.1932 38 V 2.3078 35.1140 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 39 6 -0.4553 23.7959 36.7876 -Courier_New.ttf 92 ) 8.4065 43.1932 40 w 10.7976 32.7502 25.2097 -Courier_New.ttf 92 ) 8.4065 43.1932 41 T 2.2494 26.8590 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 42 M 2.0653 34.5367 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 43 G 2.0365 29.5621 34.4140 -Courier_New.ttf 92 ) 8.4065 43.1932 44 b 0.0115 29.8826 36.5505 -Courier_New.ttf 92 ) 8.4065 43.1932 45 9 -0.2023 22.4193 36.7876 -Courier_New.ttf 92 ) 8.4065 43.1932 46 ; 10.9989 12.8068 30.9570 -Courier_New.ttf 92 ) 8.4065 43.1932 47 D 2.5724 28.4394 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 48 L 2.4196 28.2727 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 49 y 10.7028 29.3121 36.2527 -Courier_New.ttf 92 ) 8.4065 43.1932 50 ‘ 0.0486 12.7529 17.2297 -Courier_New.ttf 92 ) 8.4065 43.1932 51 \ -3.3053 24.6392 44.3865 -Courier_New.ttf 92 ) 8.4065 43.1932 52 R 2.4077 30.7070 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 53 < 3.3094 28.0000 31.5797 -Courier_New.ttf 92 ) 8.4065 43.1932 54 4 -0.1937 22.3232 35.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 55 8 -0.3552 21.3094 36.7876 -Courier_New.ttf 92 ) 8.4065 43.1932 56 0 -0.5099 23.6959 36.7876 -Courier_New.ttf 92 ) 8.4065 43.1932 57 A 2.3865 37.1505 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 58 E 2.5678 27.3234 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 59 B 2.4684 28.4167 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 60 v 10.8203 32.1252 25.2097 -Courier_New.ttf 92 ) 8.4065 43.1932 61 k 0.0315 26.6529 35.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 62 J 2.4749 28.6766 34.1640 -Courier_New.ttf 92 ) 8.4065 43.1932 63 U 2.3684 31.3964 34.1640 -Courier_New.ttf 92 ) 8.4065 43.1932 64 j -1.5804 18.4230 48.2928 -Courier_New.ttf 92 ) 8.4065 43.1932 65 ( 0.1611 8.4065 43.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 66 7 -0.1284 22.0027 35.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 67 § 0.0909 27.1696 39.8097 -Courier_New.ttf 92 ) 8.4065 43.1932 68 $ -2.9378 21.8261 44.3865 -Courier_New.ttf 92 ) 8.4065 43.1932 69 € 2.2079 31.2297 34.4140 -Courier_New.ttf 92 ) 8.4065 43.1932 70 / -3.6298 24.6392 44.3865 -Courier_New.ttf 92 ) 8.4065 43.1932 71 C 1.8539 28.2727 34.4140 -Courier_New.ttf 92 ) 8.4065 43.1932 72 * 0.0070 22.0860 21.9800 -Courier_New.ttf 92 ) 8.4065 43.1932 73 ” -0.1532 24.6392 15.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 74 ? 1.5416 21.0594 34.9406 -Courier_New.ttf 92 ) 8.4065 43.1932 75 { -0.8114 11.7324 43.3121 -Courier_New.ttf 92 ) 8.4065 43.1932 76 } -0.1714 11.7324 43.3121 -Courier_New.ttf 92 ) 8.4065 43.1932 77 , 27.3987 11.5597 17.2297 -Courier_New.ttf 92 ) 8.4065 43.1932 78 I 2.4404 22.0860 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 79 ° -6.2026 15.7638 15.7638 -Courier_New.ttf 92 ) 8.4065 43.1932 80 K 2.4254 31.2297 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 81 H 2.4929 28.4333 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 82 q 10.3265 29.1932 36.6565 -Courier_New.ttf 92 ) 8.4065 43.1932 83 & 5.5169 21.9800 31.2070 -Courier_New.ttf 92 ) 8.4065 43.1932 84 ’ -0.0899 12.7529 17.2297 -Courier_New.ttf 92 ) 8.4065 43.1932 85 [ -0.0046 9.5998 43.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 86 - 17.5032 24.8892 3.2297 -Courier_New.ttf 92 ) 8.4065 43.1932 87 Y 2.1409 29.3410 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 88 Q 2.2523 30.3865 40.7840 -Courier_New.ttf 92 ) 8.4065 43.1932 89 " 0.0013 19.6995 16.0365 -Courier_New.ttf 92 ) 8.4065 43.1932 90 ! -0.1782 6.4594 36.5505 -Courier_New.ttf 92 ) 8.4065 43.1932 91 x 11.0030 29.1932 25.2097 -Courier_New.ttf 92 ) 8.4065 43.1932 92 ) 0.2042 8.4065 43.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 93 = 13.5211 29.1932 11.3097 -Courier_New.ttf 92 ) 8.4065 43.1932 94 + 4.6261 26.8590 29.2455 -Courier_New.ttf 92 ) 8.4065 43.1932 95 X 2.5809 30.9092 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 96 » 10.3321 28.7766 26.8068 -Courier_New.ttf 92 ) 8.4065 43.1932 97 ' 0.0970 7.9027 17.2297 -Courier_New.ttf 92 ) 8.4065 43.1932 98 ¢ -1.9645 20.7867 38.0998 -Courier_New.ttf 92 ) 8.4065 43.1932 99 Z 2.4032 23.0959 33.5935 -Courier_New.ttf 92 ) 8.4065 43.1932 100 > 3.1072 28.0000 31.5797 -Courier_New.ttf 92 ) 8.4065 43.1932 101 ® 1.5767 34.7867 35.0594 -Courier_New.ttf 92 ) 8.4065 43.1932 102 © 1.7138 35.0594 34.7867 -Courier_New.ttf 92 ) 8.4065 43.1932 103 ] -0.2509 9.5998 43.1932 -Courier_New.ttf 92 ) 8.4065 43.1932 104 é -2.0037 27.4295 38.4203 -Courier_New.ttf 92 ) 8.4065 43.1932 105 z 10.7776 23.7959 25.2097 -Courier_New.ttf 92 ) 8.4065 43.1932 106 _ 49.7173 35.0594 2.3865 -Courier_New.ttf 92 ) 8.4065 43.1932 107 ¥ 2.5184 29.6744 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 1 t -11.6480 26.2362 34.6034 -Courier_New.ttf 93 = 29.1932 11.3097 2 h -13.3053 29.6326 35.9800 -Courier_New.ttf 93 = 29.1932 11.3097 3 a -3.1270 26.9256 26.1840 -Courier_New.ttf 93 = 29.1932 11.3097 4 n -2.9858 29.2061 25.6135 -Courier_New.ttf 93 = 29.1932 11.3097 5 P -11.3156 26.0529 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 6 o -2.8004 26.8068 26.1840 -Courier_New.ttf 93 = 29.1932 11.3097 7 e -3.5108 27.4295 26.1840 -Courier_New.ttf 93 = 29.1932 11.3097 8 : -2.5304 8.6565 25.7802 -Courier_New.ttf 93 = 29.1932 11.3097 9 r -3.0888 26.8295 25.6135 -Courier_New.ttf 93 = 29.1932 11.3097 10 l -13.3210 24.4725 35.9800 -Courier_New.ttf 93 = 29.1932 11.3097 11 i -14.8202 24.4725 37.2498 -Courier_New.ttf 93 = 29.1932 11.3097 12 1 -15.0049 22.8527 37.5770 -Courier_New.ttf 93 = 29.1932 11.3097 13 | -13.3281 2.3865 43.1932 -Courier_New.ttf 93 = 29.1932 11.3097 14 N -10.8771 31.3964 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 15 f -13.6003 25.4696 35.9800 -Courier_New.ttf 93 = 29.1932 11.3097 16 g -2.8365 27.8462 36.6565 -Courier_New.ttf 93 = 29.1932 11.3097 17 d -13.7206 30.1138 36.5505 -Courier_New.ttf 93 = 29.1932 11.3097 18 W -11.2152 32.5836 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 19 s -3.1674 23.0959 26.1840 -Courier_New.ttf 93 = 29.1932 11.3097 20 c -3.4074 26.6529 26.1840 -Courier_New.ttf 93 = 29.1932 11.3097 21 u -2.7393 29.6326 25.7802 -Courier_New.ttf 93 = 29.1932 11.3097 22 3 -14.1212 23.6959 36.7876 -Courier_New.ttf 93 = 29.1932 11.3097 23 ~ 1.8062 24.8892 8.5732 -Courier_New.ttf 93 = 29.1932 11.3097 24 # -15.4304 25.0657 42.1962 -Courier_New.ttf 93 = 29.1932 11.3097 25 O -11.7940 29.1932 34.4140 -Courier_New.ttf 93 = 29.1932 11.3097 26 ` -15.5677 9.8498 8.6565 -Courier_New.ttf 93 = 29.1932 11.3097 27 @ -15.0928 22.0800 40.4029 -Courier_New.ttf 93 = 29.1932 11.3097 28 F -11.1535 27.3234 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 29 S -11.7295 24.5392 34.4140 -Courier_New.ttf 93 = 29.1932 11.3097 30 p -3.0060 29.8826 36.6565 -Courier_New.ttf 93 = 29.1932 11.3097 31 “ -13.1792 24.6392 15.1932 -Courier_New.ttf 93 = 29.1932 11.3097 32 % -13.4079 24.3664 36.5505 -Courier_New.ttf 93 = 29.1932 11.3097 33 £ -11.3970 26.2840 33.8435 -Courier_New.ttf 93 = 29.1932 11.3097 34 . 15.0881 8.8232 7.9800 -Courier_New.ttf 93 = 29.1932 11.3097 35 2 -13.7611 23.1732 36.3838 -Courier_New.ttf 93 = 29.1932 11.3097 36 5 -13.4418 23.7437 36.3838 -Courier_New.ttf 93 = 29.1932 11.3097 37 m -3.0574 35.1594 25.6135 -Courier_New.ttf 93 = 29.1932 11.3097 38 V -11.2120 35.1140 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 39 6 -14.0270 23.7959 36.7876 -Courier_New.ttf 93 = 29.1932 11.3097 40 w -2.5245 32.7502 25.2097 -Courier_New.ttf 93 = 29.1932 11.3097 41 T -11.1457 26.8590 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 42 M -11.0203 34.5367 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 43 G -11.0624 29.5621 34.4140 -Courier_New.ttf 93 = 29.1932 11.3097 44 b -13.5491 29.8826 36.5505 -Courier_New.ttf 93 = 29.1932 11.3097 45 9 -14.3583 22.4193 36.7876 -Courier_New.ttf 93 = 29.1932 11.3097 46 ; -2.9886 12.8068 30.9570 -Courier_New.ttf 93 = 29.1932 11.3097 47 D -11.0217 28.4394 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 48 L -11.1622 28.2727 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 49 y -2.6651 29.3121 36.2527 -Courier_New.ttf 93 = 29.1932 11.3097 50 ‘ -13.6289 12.7529 17.2297 -Courier_New.ttf 93 = 29.1932 11.3097 51 \ -16.7301 24.6392 44.3865 -Courier_New.ttf 93 = 29.1932 11.3097 52 R -11.0203 30.7070 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 53 < -9.9945 28.0000 31.5797 -Courier_New.ttf 93 = 29.1932 11.3097 54 4 -13.5464 22.3232 35.9800 -Courier_New.ttf 93 = 29.1932 11.3097 55 8 -13.8944 21.3094 36.7876 -Courier_New.ttf 93 = 29.1932 11.3097 56 0 -14.1555 23.6959 36.7876 -Courier_New.ttf 93 = 29.1932 11.3097 57 A -11.0370 37.1505 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 58 E -10.8785 27.3234 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 59 B -11.3036 28.4167 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 60 v -2.5862 32.1252 25.2097 -Courier_New.ttf 93 = 29.1932 11.3097 61 k -13.5453 26.6529 35.9800 -Courier_New.ttf 93 = 29.1932 11.3097 62 J -11.1723 28.6766 34.1640 -Courier_New.ttf 93 = 29.1932 11.3097 63 U -10.7829 31.3964 34.1640 -Courier_New.ttf 93 = 29.1932 11.3097 64 j -14.6510 18.4230 48.2928 -Courier_New.ttf 93 = 29.1932 11.3097 65 ( -13.5398 8.4065 43.1932 -Courier_New.ttf 93 = 29.1932 11.3097 66 7 -13.1894 22.0027 35.9800 -Courier_New.ttf 93 = 29.1932 11.3097 67 § -13.4889 27.1696 39.8097 -Courier_New.ttf 93 = 29.1932 11.3097 68 $ -16.7609 21.8261 44.3865 -Courier_New.ttf 93 = 29.1932 11.3097 69 € -11.2540 31.2297 34.4140 -Courier_New.ttf 93 = 29.1932 11.3097 70 / -17.3709 24.6392 44.3865 -Courier_New.ttf 93 = 29.1932 11.3097 71 C -11.1916 28.2727 34.4140 -Courier_New.ttf 93 = 29.1932 11.3097 72 * -13.6987 22.0860 21.9800 -Courier_New.ttf 93 = 29.1932 11.3097 73 ” -13.3162 24.6392 15.1932 -Courier_New.ttf 93 = 29.1932 11.3097 74 ? -11.6870 21.0594 34.9406 -Courier_New.ttf 93 = 29.1932 11.3097 75 { -13.8062 11.7324 43.3121 -Courier_New.ttf 93 = 29.1932 11.3097 76 } -13.9637 11.7324 43.3121 -Courier_New.ttf 93 = 29.1932 11.3097 77 , 13.8829 11.5597 17.2297 -Courier_New.ttf 93 = 29.1932 11.3097 78 I -11.2514 22.0860 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 79 ° -19.8061 15.7638 15.7638 -Courier_New.ttf 93 = 29.1932 11.3097 80 K -11.0962 31.2297 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 81 H -10.9600 28.4333 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 82 q -3.1564 29.1932 36.6565 -Courier_New.ttf 93 = 29.1932 11.3097 83 & -7.9311 21.9800 31.2070 -Courier_New.ttf 93 = 29.1932 11.3097 84 ’ -13.3852 12.7529 17.2297 -Courier_New.ttf 93 = 29.1932 11.3097 85 [ -13.4217 9.5998 43.1932 -Courier_New.ttf 93 = 29.1932 11.3097 86 - 4.2420 24.8892 3.2297 -Courier_New.ttf 93 = 29.1932 11.3097 87 Y -10.8654 29.3410 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 88 Q -11.4386 30.3865 40.7840 -Courier_New.ttf 93 = 29.1932 11.3097 89 " -13.4358 19.6995 16.0365 -Courier_New.ttf 93 = 29.1932 11.3097 90 ! -13.5805 6.4594 36.5505 -Courier_New.ttf 93 = 29.1932 11.3097 91 x -2.9211 29.1932 25.2097 -Courier_New.ttf 93 = 29.1932 11.3097 92 ) -13.3491 8.4065 43.1932 -Courier_New.ttf 93 = 29.1932 11.3097 93 = -0.2358 29.1932 11.3097 -Courier_New.ttf 93 = 29.1932 11.3097 94 + -8.4361 26.8590 29.2455 -Courier_New.ttf 93 = 29.1932 11.3097 95 X -11.1185 30.9092 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 96 » -3.3880 28.7766 26.8068 -Courier_New.ttf 93 = 29.1932 11.3097 97 ' -13.8654 7.9027 17.2297 -Courier_New.ttf 93 = 29.1932 11.3097 98 ¢ -15.6137 20.7867 38.0998 -Courier_New.ttf 93 = 29.1932 11.3097 99 Z -10.9860 23.0959 33.5935 -Courier_New.ttf 93 = 29.1932 11.3097 100 > -9.9991 28.0000 31.5797 -Courier_New.ttf 93 = 29.1932 11.3097 101 ® -11.9293 34.7867 35.0594 -Courier_New.ttf 93 = 29.1932 11.3097 102 © -11.6108 35.0594 34.7867 -Courier_New.ttf 93 = 29.1932 11.3097 103 ] -13.2840 9.5998 43.1932 -Courier_New.ttf 93 = 29.1932 11.3097 104 é -15.3412 27.4295 38.4203 -Courier_New.ttf 93 = 29.1932 11.3097 105 z -2.6708 23.7959 25.2097 -Courier_New.ttf 93 = 29.1932 11.3097 106 _ 36.2821 35.0594 2.3865 -Courier_New.ttf 93 = 29.1932 11.3097 107 ¥ -10.9811 29.6744 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 1 t -3.0244 26.2362 34.6034 -Courier_New.ttf 94 + 26.8590 29.2455 2 h -5.0838 29.6326 35.9800 -Courier_New.ttf 94 + 26.8590 29.2455 3 a 5.5340 26.9256 26.1840 -Courier_New.ttf 94 + 26.8590 29.2455 4 n 5.1245 29.2061 25.6135 -Courier_New.ttf 94 + 26.8590 29.2455 5 P -2.4370 26.0529 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 6 o 5.2775 26.8068 26.1840 -Courier_New.ttf 94 + 26.8590 29.2455 7 e 5.2923 27.4295 26.1840 -Courier_New.ttf 94 + 26.8590 29.2455 8 : 5.7302 8.6565 25.7802 -Courier_New.ttf 94 + 26.8590 29.2455 9 r 5.2040 26.8295 25.6135 -Courier_New.ttf 94 + 26.8590 29.2455 10 l -5.2723 24.4725 35.9800 -Courier_New.ttf 94 + 26.8590 29.2455 11 i -6.3120 24.4725 37.2498 -Courier_New.ttf 94 + 26.8590 29.2455 12 1 -6.5125 22.8527 37.5770 -Courier_New.ttf 94 + 26.8590 29.2455 13 | -5.0642 2.3865 43.1932 -Courier_New.ttf 94 + 26.8590 29.2455 14 N -2.9295 31.3964 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 15 f -4.8701 25.4696 35.9800 -Courier_New.ttf 94 + 26.8590 29.2455 16 g 5.4199 27.8462 36.6565 -Courier_New.ttf 94 + 26.8590 29.2455 17 d -5.2495 30.1138 36.5505 -Courier_New.ttf 94 + 26.8590 29.2455 18 W -2.6430 32.5836 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 19 s 5.1949 23.0959 26.1840 -Courier_New.ttf 94 + 26.8590 29.2455 20 c 5.5874 26.6529 26.1840 -Courier_New.ttf 94 + 26.8590 29.2455 21 u 5.8922 29.6326 25.7802 -Courier_New.ttf 94 + 26.8590 29.2455 22 3 -5.2271 23.6959 36.7876 -Courier_New.ttf 94 + 26.8590 29.2455 23 ~ 9.6158 24.8892 8.5732 -Courier_New.ttf 94 + 26.8590 29.2455 24 # -7.3087 25.0657 42.1962 -Courier_New.ttf 94 + 26.8590 29.2455 25 O -2.8927 29.1932 34.4140 -Courier_New.ttf 94 + 26.8590 29.2455 26 ` -6.8301 9.8498 8.6565 -Courier_New.ttf 94 + 26.8590 29.2455 27 @ -6.6738 22.0800 40.4029 -Courier_New.ttf 94 + 26.8590 29.2455 28 F -2.7214 27.3234 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 29 S -2.9869 24.5392 34.4140 -Courier_New.ttf 94 + 26.8590 29.2455 30 p 5.4484 29.8826 36.6565 -Courier_New.ttf 94 + 26.8590 29.2455 31 “ -4.7979 24.6392 15.1932 -Courier_New.ttf 94 + 26.8590 29.2455 32 % -5.0200 24.3664 36.5505 -Courier_New.ttf 94 + 26.8590 29.2455 33 £ -2.6670 26.2840 33.8435 -Courier_New.ttf 94 + 26.8590 29.2455 34 . 23.7156 8.8232 7.9800 -Courier_New.ttf 94 + 26.8590 29.2455 35 2 -5.6215 23.1732 36.3838 -Courier_New.ttf 94 + 26.8590 29.2455 36 5 -5.0449 23.7437 36.3838 -Courier_New.ttf 94 + 26.8590 29.2455 37 m 5.4653 35.1594 25.6135 -Courier_New.ttf 94 + 26.8590 29.2455 38 V -2.4073 35.1140 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 39 6 -5.3649 23.7959 36.7876 -Courier_New.ttf 94 + 26.8590 29.2455 40 w 5.8964 32.7502 25.2097 -Courier_New.ttf 94 + 26.8590 29.2455 41 T -2.4537 26.8590 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 42 M -2.6346 34.5367 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 43 G -2.8101 29.5621 34.4140 -Courier_New.ttf 94 + 26.8590 29.2455 44 b -4.9740 29.8826 36.5505 -Courier_New.ttf 94 + 26.8590 29.2455 45 9 -5.3889 22.4193 36.7876 -Courier_New.ttf 94 + 26.8590 29.2455 46 ; 5.8398 12.8068 30.9570 -Courier_New.ttf 94 + 26.8590 29.2455 47 D -2.4178 28.4394 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 48 L -2.7299 28.2727 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 49 y 5.9425 29.3121 36.2527 -Courier_New.ttf 94 + 26.8590 29.2455 50 ‘ -5.0592 12.7529 17.2297 -Courier_New.ttf 94 + 26.8590 29.2455 51 \ -7.8989 24.6392 44.3865 -Courier_New.ttf 94 + 26.8590 29.2455 52 R -2.3646 30.7070 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 53 < -1.3767 28.0000 31.5797 -Courier_New.ttf 94 + 26.8590 29.2455 54 4 -4.7140 22.3232 35.9800 -Courier_New.ttf 94 + 26.8590 29.2455 55 8 -5.3902 21.3094 36.7876 -Courier_New.ttf 94 + 26.8590 29.2455 56 0 -5.1776 23.6959 36.7876 -Courier_New.ttf 94 + 26.8590 29.2455 57 A -2.4244 37.1505 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 58 E -2.3020 27.3234 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 59 B -2.5899 28.4167 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 60 v 5.6194 32.1252 25.2097 -Courier_New.ttf 94 + 26.8590 29.2455 61 k -4.8654 26.6529 35.9800 -Courier_New.ttf 94 + 26.8590 29.2455 62 J -2.5961 28.6766 34.1640 -Courier_New.ttf 94 + 26.8590 29.2455 63 U -2.5654 31.3964 34.1640 -Courier_New.ttf 94 + 26.8590 29.2455 64 j -6.2576 18.4230 48.2928 -Courier_New.ttf 94 + 26.8590 29.2455 65 ( -5.0617 8.4065 43.1932 -Courier_New.ttf 94 + 26.8590 29.2455 66 7 -5.1091 22.0027 35.9800 -Courier_New.ttf 94 + 26.8590 29.2455 67 § -5.0110 27.1696 39.8097 -Courier_New.ttf 94 + 26.8590 29.2455 68 $ -7.9838 21.8261 44.3865 -Courier_New.ttf 94 + 26.8590 29.2455 69 € -2.9075 31.2297 34.4140 -Courier_New.ttf 94 + 26.8590 29.2455 70 / -8.6213 24.6392 44.3865 -Courier_New.ttf 94 + 26.8590 29.2455 71 C -2.8628 28.2727 34.4140 -Courier_New.ttf 94 + 26.8590 29.2455 72 * -5.0449 22.0860 21.9800 -Courier_New.ttf 94 + 26.8590 29.2455 73 ” -5.0078 24.6392 15.1932 -Courier_New.ttf 94 + 26.8590 29.2455 74 ? -3.2912 21.0594 34.9406 -Courier_New.ttf 94 + 26.8590 29.2455 75 { -5.2435 11.7324 43.3121 -Courier_New.ttf 94 + 26.8590 29.2455 76 } -5.0244 11.7324 43.3121 -Courier_New.ttf 94 + 26.8590 29.2455 77 , 22.4588 11.5597 17.2297 -Courier_New.ttf 94 + 26.8590 29.2455 78 I -3.0561 22.0860 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 79 ° -11.4162 15.7638 15.7638 -Courier_New.ttf 94 + 26.8590 29.2455 80 K -2.7709 31.2297 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 81 H -2.9266 28.4333 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 82 q 5.4484 29.1932 36.6565 -Courier_New.ttf 94 + 26.8590 29.2455 83 & 0.2541 21.9800 31.2070 -Courier_New.ttf 94 + 26.8590 29.2455 84 ’ -5.0422 12.7529 17.2297 -Courier_New.ttf 94 + 26.8590 29.2455 85 [ -4.7108 9.5998 43.1932 -Courier_New.ttf 94 + 26.8590 29.2455 86 - 12.7919 24.8892 3.2297 -Courier_New.ttf 94 + 26.8590 29.2455 87 Y -2.6370 29.3410 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 88 Q -3.1389 30.3865 40.7840 -Courier_New.ttf 94 + 26.8590 29.2455 89 " -5.2334 19.6995 16.0365 -Courier_New.ttf 94 + 26.8590 29.2455 90 ! -4.9431 6.4594 36.5505 -Courier_New.ttf 94 + 26.8590 29.2455 91 x 5.8167 29.1932 25.2097 -Courier_New.ttf 94 + 26.8590 29.2455 92 ) -4.8198 8.4065 43.1932 -Courier_New.ttf 94 + 26.8590 29.2455 93 = 8.1845 29.1932 11.3097 -Courier_New.ttf 94 + 26.8590 29.2455 94 + -0.1204 26.8590 29.2455 -Courier_New.ttf 94 + 26.8590 29.2455 95 X -2.6523 30.9092 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 96 » 5.3308 28.7766 26.8068 -Courier_New.ttf 94 + 26.8590 29.2455 97 ' -5.1402 7.9027 17.2297 -Courier_New.ttf 94 + 26.8590 29.2455 98 ¢ -6.8265 20.7867 38.0998 -Courier_New.ttf 94 + 26.8590 29.2455 99 Z -2.4409 23.0959 33.5935 -Courier_New.ttf 94 + 26.8590 29.2455 100 > -1.4879 28.0000 31.5797 -Courier_New.ttf 94 + 26.8590 29.2455 101 ® -3.5460 34.7867 35.0594 -Courier_New.ttf 94 + 26.8590 29.2455 102 © -3.1692 35.0594 34.7867 -Courier_New.ttf 94 + 26.8590 29.2455 103 ] -4.6841 9.5998 43.1932 -Courier_New.ttf 94 + 26.8590 29.2455 104 é -7.1033 27.4295 38.4203 -Courier_New.ttf 94 + 26.8590 29.2455 105 z 5.8187 23.7959 25.2097 -Courier_New.ttf 94 + 26.8590 29.2455 106 _ 44.8476 35.0594 2.3865 -Courier_New.ttf 94 + 26.8590 29.2455 107 ¥ -2.4587 29.6744 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 1 t -0.4464 26.2362 34.6034 -Courier_New.ttf 95 X 30.9092 33.5935 2 h -2.3768 29.6326 35.9800 -Courier_New.ttf 95 X 30.9092 33.5935 3 a 8.0267 26.9256 26.1840 -Courier_New.ttf 95 X 30.9092 33.5935 4 n 8.2095 29.2061 25.6135 -Courier_New.ttf 95 X 30.9092 33.5935 5 P 0.2591 26.0529 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 6 o 8.0968 26.8068 26.1840 -Courier_New.ttf 95 X 30.9092 33.5935 7 e 7.9558 27.4295 26.1840 -Courier_New.ttf 95 X 30.9092 33.5935 8 : 8.3338 8.6565 25.7802 -Courier_New.ttf 95 X 30.9092 33.5935 9 r 7.9448 26.8295 25.6135 -Courier_New.ttf 95 X 30.9092 33.5935 10 l -2.2734 24.4725 35.9800 -Courier_New.ttf 95 X 30.9092 33.5935 11 i -3.6250 24.4725 37.2498 -Courier_New.ttf 95 X 30.9092 33.5935 12 1 -4.0863 22.8527 37.5770 -Courier_New.ttf 95 X 30.9092 33.5935 13 | -2.0150 2.3865 43.1932 -Courier_New.ttf 95 X 30.9092 33.5935 14 N 0.2068 31.3964 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 15 f -2.3631 25.4696 35.9800 -Courier_New.ttf 95 X 30.9092 33.5935 16 g 8.2641 27.8462 36.6565 -Courier_New.ttf 95 X 30.9092 33.5935 17 d -2.3518 30.1138 36.5505 -Courier_New.ttf 95 X 30.9092 33.5935 18 W 0.0274 32.5836 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 19 s 8.1247 23.0959 26.1840 -Courier_New.ttf 95 X 30.9092 33.5935 20 c 8.3252 26.6529 26.1840 -Courier_New.ttf 95 X 30.9092 33.5935 21 u 8.4830 29.6326 25.7802 -Courier_New.ttf 95 X 30.9092 33.5935 22 3 -3.0082 23.6959 36.7876 -Courier_New.ttf 95 X 30.9092 33.5935 23 ~ 12.2169 24.8892 8.5732 -Courier_New.ttf 95 X 30.9092 33.5935 24 # -4.5044 25.0657 42.1962 -Courier_New.ttf 95 X 30.9092 33.5935 25 O -0.3546 29.1932 34.4140 -Courier_New.ttf 95 X 30.9092 33.5935 26 ` -4.6047 9.8498 8.6565 -Courier_New.ttf 95 X 30.9092 33.5935 27 @ -4.0180 22.0800 40.4029 -Courier_New.ttf 95 X 30.9092 33.5935 28 F -0.0603 27.3234 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 29 S -0.1621 24.5392 34.4140 -Courier_New.ttf 95 X 30.9092 33.5935 30 p 7.6680 29.8826 36.6565 -Courier_New.ttf 95 X 30.9092 33.5935 31 “ -2.2948 24.6392 15.1932 -Courier_New.ttf 95 X 30.9092 33.5935 32 % -2.4022 24.3664 36.5505 -Courier_New.ttf 95 X 30.9092 33.5935 33 £ -0.2246 26.2840 33.8435 -Courier_New.ttf 95 X 30.9092 33.5935 34 . 26.0358 8.8232 7.9800 -Courier_New.ttf 95 X 30.9092 33.5935 35 2 -2.8622 23.1732 36.3838 -Courier_New.ttf 95 X 30.9092 33.5935 36 5 -2.5260 23.7437 36.3838 -Courier_New.ttf 95 X 30.9092 33.5935 37 m 8.0494 35.1594 25.6135 -Courier_New.ttf 95 X 30.9092 33.5935 38 V -0.1153 35.1140 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 39 6 -2.4752 23.7959 36.7876 -Courier_New.ttf 95 X 30.9092 33.5935 40 w 8.1649 32.7502 25.2097 -Courier_New.ttf 95 X 30.9092 33.5935 41 T -0.0003 26.8590 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 42 M -0.1137 34.5367 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 43 G -0.2196 29.5621 34.4140 -Courier_New.ttf 95 X 30.9092 33.5935 44 b -2.4235 29.8826 36.5505 -Courier_New.ttf 95 X 30.9092 33.5935 45 9 -2.7874 22.4193 36.7876 -Courier_New.ttf 95 X 30.9092 33.5935 46 ; 8.2732 12.8068 30.9570 -Courier_New.ttf 95 X 30.9092 33.5935 47 D -0.0312 28.4394 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 48 L 0.1385 28.2727 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 49 y 8.3156 29.3121 36.2527 -Courier_New.ttf 95 X 30.9092 33.5935 50 ‘ -2.5761 12.7529 17.2297 -Courier_New.ttf 95 X 30.9092 33.5935 51 \ -5.6852 24.6392 44.3865 -Courier_New.ttf 95 X 30.9092 33.5935 52 R 0.0462 30.7070 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 53 < 1.1106 28.0000 31.5797 -Courier_New.ttf 95 X 30.9092 33.5935 54 4 -2.2935 22.3232 35.9800 -Courier_New.ttf 95 X 30.9092 33.5935 55 8 -2.9075 21.3094 36.7876 -Courier_New.ttf 95 X 30.9092 33.5935 56 0 -2.7000 23.6959 36.7876 -Courier_New.ttf 95 X 30.9092 33.5935 57 A -0.2145 37.1505 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 58 E -0.1734 27.3234 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 59 B 0.0065 28.4167 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 60 v 8.1276 32.1252 25.2097 -Courier_New.ttf 95 X 30.9092 33.5935 61 k -2.4878 26.6529 35.9800 -Courier_New.ttf 95 X 30.9092 33.5935 62 J 0.0338 28.6766 34.1640 -Courier_New.ttf 95 X 30.9092 33.5935 63 U 0.0931 31.3964 34.1640 -Courier_New.ttf 95 X 30.9092 33.5935 64 j -3.6049 18.4230 48.2928 -Courier_New.ttf 95 X 30.9092 33.5935 65 ( -2.7583 8.4065 43.1932 -Courier_New.ttf 95 X 30.9092 33.5935 66 7 -2.4054 22.0027 35.9800 -Courier_New.ttf 95 X 30.9092 33.5935 67 § -2.2859 27.1696 39.8097 -Courier_New.ttf 95 X 30.9092 33.5935 68 $ -5.4950 21.8261 44.3865 -Courier_New.ttf 95 X 30.9092 33.5935 69 € -0.2240 31.2297 34.4140 -Courier_New.ttf 95 X 30.9092 33.5935 70 / -5.8500 24.6392 44.3865 -Courier_New.ttf 95 X 30.9092 33.5935 71 C -0.3487 28.2727 34.4140 -Courier_New.ttf 95 X 30.9092 33.5935 72 * -2.2077 22.0860 21.9800 -Courier_New.ttf 95 X 30.9092 33.5935 73 ” -2.3123 24.6392 15.1932 -Courier_New.ttf 95 X 30.9092 33.5935 74 ? -0.7524 21.0594 34.9406 -Courier_New.ttf 95 X 30.9092 33.5935 75 { -2.3965 11.7324 43.3121 -Courier_New.ttf 95 X 30.9092 33.5935 76 } -2.6911 11.7324 43.3121 -Courier_New.ttf 95 X 30.9092 33.5935 77 , 24.6894 11.5597 17.2297 -Courier_New.ttf 95 X 30.9092 33.5935 78 I -0.2621 22.0860 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 79 ° -8.8769 15.7638 15.7638 -Courier_New.ttf 95 X 30.9092 33.5935 80 K -0.0357 31.2297 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 81 H -0.4114 28.4333 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 82 q 8.0540 29.1932 36.6565 -Courier_New.ttf 95 X 30.9092 33.5935 83 & 2.8801 21.9800 31.2070 -Courier_New.ttf 95 X 30.9092 33.5935 84 ’ -2.5851 12.7529 17.2297 -Courier_New.ttf 95 X 30.9092 33.5935 85 [ -2.3234 9.5998 43.1932 -Courier_New.ttf 95 X 30.9092 33.5935 86 - 15.0009 24.8892 3.2297 -Courier_New.ttf 95 X 30.9092 33.5935 87 Y -0.2126 29.3410 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 88 Q 0.0285 30.3865 40.7840 -Courier_New.ttf 95 X 30.9092 33.5935 89 " -2.2732 19.6995 16.0365 -Courier_New.ttf 95 X 30.9092 33.5935 90 ! -2.1338 6.4594 36.5505 -Courier_New.ttf 95 X 30.9092 33.5935 91 x 8.3505 29.1932 25.2097 -Courier_New.ttf 95 X 30.9092 33.5935 92 ) -2.3968 8.4065 43.1932 -Courier_New.ttf 95 X 30.9092 33.5935 93 = 11.4725 29.1932 11.3097 -Courier_New.ttf 95 X 30.9092 33.5935 94 + 2.8756 26.8590 29.2455 -Courier_New.ttf 95 X 30.9092 33.5935 95 X 0.0684 30.9092 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 96 » 8.0898 29.5432 26.8068 -Courier_New.ttf 95 X 30.9092 33.5935 97 ' -2.3950 7.9027 17.2297 -Courier_New.ttf 95 X 30.9092 33.5935 98 ¢ -4.5550 20.7867 38.0998 -Courier_New.ttf 95 X 30.9092 33.5935 99 Z 0.0044 23.0959 33.5935 -Courier_New.ttf 95 X 30.9092 33.5935 100 > 1.1334 28.0000 31.5797 -Courier_New.ttf 95 X 30.9092 33.5935 101 ® -1.2477 34.7867 35.0594 -Courier_New.ttf 95 X 30.9092 33.5935 102 © -0.6894 35.0594 34.7867 -Courier_New.ttf 95 X 30.9092 33.5935 103 ] -2.4768 9.5998 43.1932 -Courier_New.ttf 95 X 30.9092 33.5935 104 é -4.0737 27.4295 38.4203 -Courier_New.ttf 95 X 30.9092 33.5935 105 z 8.2859 23.7959 25.2097 -Courier_New.ttf 95 X 30.9092 33.5935 106 _ 47.3445 35.0594 2.3865 -Courier_New.ttf 95 X 30.9092 33.5935 107 ¥ 0.0125 29.6744 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 1 t -8.3522 26.2362 34.6034 -Courier_New.ttf 96 » 29.5432 26.8068 2 h -10.2640 29.6326 35.9800 -Courier_New.ttf 96 » 29.5432 26.8068 3 a 0.1780 26.9256 26.1840 -Courier_New.ttf 96 » 29.5432 26.8068 4 n -0.0787 29.2061 25.6135 -Courier_New.ttf 96 » 29.5432 26.8068 5 P -8.1982 26.0529 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 6 o -0.0637 26.8068 26.1840 -Courier_New.ttf 96 » 29.5432 26.8068 7 e -0.0742 27.4295 26.1840 -Courier_New.ttf 96 » 28.7766 26.8068 8 : 0.2699 8.6565 25.7802 -Courier_New.ttf 96 » 29.5432 26.8068 9 r -0.0385 26.8295 25.6135 -Courier_New.ttf 96 » 29.5432 26.8068 10 l -10.3488 24.4725 35.9800 -Courier_New.ttf 96 » 29.5432 26.8068 11 i -11.6031 24.4725 37.2498 -Courier_New.ttf 96 » 28.7766 26.8068 12 1 -11.8588 22.8527 37.5770 -Courier_New.ttf 96 » 28.7766 26.8068 13 | -10.3275 2.3865 43.1932 -Courier_New.ttf 96 » 29.5432 26.8068 14 N -7.9555 31.3964 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 15 f -10.5543 25.4696 35.9800 -Courier_New.ttf 96 » 29.5432 26.8068 16 g 0.2855 27.8462 36.6565 -Courier_New.ttf 96 » 29.5432 26.8068 17 d -10.4119 30.1138 36.5505 -Courier_New.ttf 96 » 29.5432 26.8068 18 W -8.1377 32.5836 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 19 s -0.0780 23.0959 26.1840 -Courier_New.ttf 96 » 29.5432 26.8068 20 c 0.1493 26.6529 26.1840 -Courier_New.ttf 96 » 29.5432 26.8068 21 u 0.6493 29.6326 25.7802 -Courier_New.ttf 96 » 28.7766 26.8068 22 3 -10.7735 23.6959 36.7876 -Courier_New.ttf 96 » 28.7766 26.8068 23 ~ 4.6170 24.8892 8.5732 -Courier_New.ttf 96 » 28.7766 26.8068 24 # -12.5215 25.0657 42.1962 -Courier_New.ttf 96 » 29.5432 26.8068 25 O -8.1447 29.1932 34.4140 -Courier_New.ttf 96 » 28.7766 26.8068 26 ` -12.1873 9.8498 8.6565 -Courier_New.ttf 96 » 28.7766 26.8068 27 @ -11.7193 22.0800 40.4029 -Courier_New.ttf 96 » 29.5432 26.8068 28 F -8.0300 27.3234 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 29 S -8.1956 24.5392 34.4140 -Courier_New.ttf 96 » 29.5432 26.8068 30 p 0.0357 29.8826 36.6565 -Courier_New.ttf 96 » 28.7766 26.8068 31 “ -10.4954 24.6392 15.1932 -Courier_New.ttf 96 » 28.7766 26.8068 32 % -10.2994 24.3664 36.5505 -Courier_New.ttf 96 » 28.7766 26.8068 33 £ -8.2044 26.2840 33.8435 -Courier_New.ttf 96 » 28.7766 26.8068 34 . 18.3902 8.8232 7.9800 -Courier_New.ttf 96 » 28.7766 26.8068 35 2 -10.8253 23.1732 36.3838 -Courier_New.ttf 96 » 28.7766 26.8068 36 5 -10.5253 23.7437 36.3838 -Courier_New.ttf 96 » 29.5432 26.8068 37 m 0.2887 35.1594 25.6135 -Courier_New.ttf 96 » 29.5432 26.8068 38 V -7.7883 35.1140 33.5935 -Courier_New.ttf 96 » 28.7766 26.8068 39 6 -10.6989 23.7959 36.7876 -Courier_New.ttf 96 » 29.5432 26.8068 40 w 0.4538 32.7502 25.2097 -Courier_New.ttf 96 » 29.5432 26.8068 41 T -7.9845 26.8590 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 42 M -8.0194 34.5367 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 43 G -8.4640 29.5621 34.4140 -Courier_New.ttf 96 » 29.5432 26.8068 44 b -10.5003 29.8826 36.5505 -Courier_New.ttf 96 » 28.7766 26.8068 45 9 -10.6862 22.4193 36.7876 -Courier_New.ttf 96 » 28.7766 26.8068 46 ; 0.3823 12.8068 30.9570 -Courier_New.ttf 96 » 29.5432 26.8068 47 D -8.0598 28.4394 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 48 L -7.6565 28.2727 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 49 y 0.6936 29.3121 36.2527 -Courier_New.ttf 96 » 28.7766 26.8068 50 ‘ -10.6063 12.7529 17.2297 -Courier_New.ttf 96 » 28.7766 26.8068 51 \ -13.4872 24.6392 44.3865 -Courier_New.ttf 96 » 29.5432 26.8068 52 R -8.3210 30.7070 33.5935 -Courier_New.ttf 96 » 28.7766 26.8068 53 < -6.4085 28.0000 31.5797 -Courier_New.ttf 96 » 28.7766 26.8068 54 4 -10.2863 22.3232 35.9800 -Courier_New.ttf 96 » 28.7766 26.8068 55 8 -10.9352 21.3094 36.7876 -Courier_New.ttf 96 » 28.7766 26.8068 56 0 -10.8334 23.6959 36.7876 -Courier_New.ttf 96 » 29.5432 26.8068 57 A -7.9202 37.1505 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 58 E -7.5619 27.3234 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 59 B -7.8442 28.4167 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 60 v 0.6235 32.1252 25.2097 -Courier_New.ttf 96 » 29.5432 26.8068 61 k -10.6277 26.6529 35.9800 -Courier_New.ttf 96 » 29.5432 26.8068 62 J -8.1811 28.6766 34.1640 -Courier_New.ttf 96 » 29.5432 26.8068 63 U -8.0932 31.3964 34.1640 -Courier_New.ttf 96 » 29.5432 26.8068 64 j -11.6823 18.4230 48.2928 -Courier_New.ttf 96 » 28.7766 26.8068 65 ( -10.3851 8.4065 43.1932 -Courier_New.ttf 96 » 28.7766 26.8068 66 7 -10.4444 22.0027 35.9800 -Courier_New.ttf 96 » 28.7766 26.8068 67 § -10.5518 27.1696 39.8097 -Courier_New.ttf 96 » 28.7766 26.8068 68 $ -13.4581 21.8261 44.3865 -Courier_New.ttf 96 » 28.7766 26.8068 69 € -8.1785 31.2297 34.4140 -Courier_New.ttf 96 » 28.7766 26.8068 70 / -14.0593 24.6392 44.3865 -Courier_New.ttf 96 » 29.5432 26.8068 71 C -7.7770 28.2727 34.4140 -Courier_New.ttf 96 » 28.7766 26.8068 72 * -10.4979 22.0860 21.9800 -Courier_New.ttf 96 » 28.7766 26.8068 73 ” -10.3549 24.6392 15.1932 -Courier_New.ttf 96 » 28.7766 26.8068 74 ? -8.7653 21.0594 34.9406 -Courier_New.ttf 96 » 28.7766 26.8068 75 { -10.6360 11.7324 43.3121 -Courier_New.ttf 96 » 28.7766 26.8068 76 } -10.9075 11.7324 43.3121 -Courier_New.ttf 96 » 28.7766 26.8068 77 , 16.9429 11.5597 17.2297 -Courier_New.ttf 96 » 29.5432 26.8068 78 I -8.1742 22.0860 33.5935 -Courier_New.ttf 96 » 28.7766 26.8068 79 ° -16.6818 15.7638 15.7638 -Courier_New.ttf 96 » 29.5432 26.8068 80 K -7.8019 31.2297 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 81 H -8.1602 28.4333 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 82 q 0.0865 29.1932 36.6565 -Courier_New.ttf 96 » 28.7766 26.8068 83 & -5.0392 21.9800 31.2070 -Courier_New.ttf 96 » 28.7766 26.8068 84 ’ -10.2348 12.7529 17.2297 -Courier_New.ttf 96 » 28.7766 26.8068 85 [ -10.3650 9.5998 43.1932 -Courier_New.ttf 96 » 28.7766 26.8068 86 - 7.1237 24.8892 3.2297 -Courier_New.ttf 96 » 29.5432 26.8068 87 Y -8.1224 29.3410 33.5935 -Courier_New.ttf 96 » 29.5432 26.8068 88 Q -8.3041 30.3865 40.7840 -Courier_New.ttf 96 » 28.7766 26.8068 89 " -10.2321 19.6995 16.0365 -Courier_New.ttf 96 » 28.7766 26.8068 90 ! -10.4686 6.4594 36.5505 -Courier_New.ttf 96 » 29.5432 26.8068 91 x 0.5365 29.1932 25.2097 -Courier_New.ttf 96 » 28.7766 26.8068 92 ) -10.3252 8.4065 43.1932 -Courier_New.ttf 96 » 28.7766 26.8068 93 = 3.1483 29.1932 11.3097 -Courier_New.ttf 96 » 28.7766 26.8068 94 + -5.4263 26.8590 29.2455 -Courier_New.ttf 96 » 29.5432 26.8068 95 X -7.8558 30.9092 33.5935 -Courier_New.ttf 96 » 28.7766 26.8068 96 » -0.0157 28.7766 26.8068 -Courier_New.ttf 96 » 28.7766 26.8068 97 ' -10.0802 7.9027 17.2297 -Courier_New.ttf 96 » 28.7766 26.8068 98 ¢ -12.6706 20.7867 38.0998 -Courier_New.ttf 96 » 29.5432 26.8068 99 Z -7.9129 23.0959 33.5935 -Courier_New.ttf 96 » 28.7766 26.8068 100 > -6.5786 28.0000 31.5797 -Courier_New.ttf 96 » 28.7766 26.8068 101 ® -9.0125 34.7867 35.0594 -Courier_New.ttf 96 » 28.7766 26.8068 102 © -8.8724 35.0594 34.7867 -Courier_New.ttf 96 » 28.7766 26.8068 103 ] -10.4906 9.5998 43.1932 -Courier_New.ttf 96 » 29.5432 26.8068 104 é -12.5079 27.4295 38.4203 -Courier_New.ttf 96 » 29.5432 26.8068 105 z 0.3062 23.7959 25.2097 -Courier_New.ttf 96 » 28.7766 26.8068 106 _ 39.5465 35.0594 2.3865 -Courier_New.ttf 96 » 28.7766 26.8068 107 ¥ -7.7853 29.6744 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 1 t 1.9541 26.2362 34.6034 -Courier_New.ttf 97 ' 7.9027 17.2297 2 h -0.1172 29.6326 35.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 3 a 10.3772 26.9256 26.1840 -Courier_New.ttf 97 ' 7.9027 17.2297 4 n 10.4068 29.2061 25.6135 -Courier_New.ttf 97 ' 7.9027 17.2297 5 P 2.2326 26.0529 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 6 o 10.5309 26.8068 26.1840 -Courier_New.ttf 97 ' 7.9027 17.2297 7 e 10.3594 27.4295 26.1840 -Courier_New.ttf 97 ' 7.9027 17.2297 8 : 10.4480 8.6565 25.7802 -Courier_New.ttf 97 ' 7.9027 17.2297 9 r 10.1996 26.8295 25.6135 -Courier_New.ttf 97 ' 7.9027 17.2297 10 l -0.0455 24.4725 35.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 11 i -1.3096 24.4725 37.2498 -Courier_New.ttf 97 ' 7.9027 17.2297 12 1 -1.5471 22.8527 37.5770 -Courier_New.ttf 97 ' 7.9027 17.2297 13 | 0.1857 2.3865 43.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 14 N 2.3085 31.3964 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 15 f -0.0603 25.4696 35.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 16 g 10.2704 27.8462 36.6565 -Courier_New.ttf 97 ' 7.9027 17.2297 17 d 0.0000 30.1138 36.5505 -Courier_New.ttf 97 ' 7.9027 17.2297 18 W 2.5607 32.5836 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 19 s 10.3631 23.0959 26.1840 -Courier_New.ttf 97 ' 7.9027 17.2297 20 c 10.1481 26.6529 26.1840 -Courier_New.ttf 97 ' 7.9027 17.2297 21 u 10.6818 29.6326 25.7802 -Courier_New.ttf 97 ' 7.9027 17.2297 22 3 -0.3467 23.6959 36.7876 -Courier_New.ttf 97 ' 7.9027 17.2297 23 ~ 14.9848 24.8892 8.5732 -Courier_New.ttf 97 ' 7.9027 17.2297 24 # -2.7304 25.0657 42.1962 -Courier_New.ttf 97 ' 7.9027 17.2297 25 O 2.1540 29.1932 34.4140 -Courier_New.ttf 97 ' 7.9027 17.2297 26 ` -1.6273 9.8498 8.6565 -Courier_New.ttf 97 ' 7.9027 17.2297 27 @ -1.2428 22.0800 40.4029 -Courier_New.ttf 97 ' 7.9027 17.2297 28 F 2.3379 27.3234 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 29 S 2.2107 24.5392 34.4140 -Courier_New.ttf 97 ' 7.9027 17.2297 30 p 10.4536 29.8826 36.6565 -Courier_New.ttf 97 ' 7.9027 17.2297 31 “ -0.1256 24.6392 15.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 32 % -0.0170 24.3664 36.5505 -Courier_New.ttf 97 ' 7.9027 17.2297 33 £ 2.0008 26.2840 33.8435 -Courier_New.ttf 97 ' 7.9027 17.2297 34 . 28.3609 8.8232 7.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 35 2 -0.7880 23.1732 36.3838 -Courier_New.ttf 97 ' 7.9027 17.2297 36 5 -0.3210 23.7437 36.3838 -Courier_New.ttf 97 ' 7.9027 17.2297 37 m 10.3161 35.1594 25.6135 -Courier_New.ttf 97 ' 7.9027 17.2297 38 V 2.2994 35.1140 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 39 6 -0.4038 23.7959 36.7876 -Courier_New.ttf 97 ' 7.9027 17.2297 40 w 10.8060 32.7502 25.2097 -Courier_New.ttf 97 ' 7.9027 17.2297 41 T 2.1284 26.8590 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 42 M 2.3363 34.5367 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 43 G 2.2509 29.5621 34.4140 -Courier_New.ttf 97 ' 7.9027 17.2297 44 b 0.1769 29.8826 36.5505 -Courier_New.ttf 97 ' 7.9027 17.2297 45 9 -0.2412 22.4193 36.7876 -Courier_New.ttf 97 ' 7.9027 17.2297 46 ; 10.5416 12.8068 30.9570 -Courier_New.ttf 97 ' 7.9027 17.2297 47 D 2.3298 28.4394 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 48 L 2.7791 28.2727 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 49 y 10.8372 29.3121 36.2527 -Courier_New.ttf 97 ' 7.9027 17.2297 50 ‘ 0.2113 12.7529 17.2297 -Courier_New.ttf 97 ' 7.9027 17.2297 51 \ -3.3182 24.6392 44.3865 -Courier_New.ttf 97 ' 7.9027 17.2297 52 R 2.2422 30.7070 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 53 < 3.6455 28.0000 31.5797 -Courier_New.ttf 97 ' 7.9027 17.2297 54 4 -0.0882 22.3232 35.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 55 8 -0.3000 21.3094 36.7876 -Courier_New.ttf 97 ' 7.9027 17.2297 56 0 -0.6443 23.6959 36.7876 -Courier_New.ttf 97 ' 7.9027 17.2297 57 A 2.2349 37.1505 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 58 E 2.2980 27.3234 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 59 B 2.4292 28.4167 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 60 v 10.6678 32.1252 25.2097 -Courier_New.ttf 97 ' 7.9027 17.2297 61 k 0.0071 26.6529 35.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 62 J 2.4476 28.6766 34.1640 -Courier_New.ttf 97 ' 7.9027 17.2297 63 U 2.3720 31.3964 34.1640 -Courier_New.ttf 97 ' 7.9027 17.2297 64 j -1.3055 18.4230 48.2928 -Courier_New.ttf 97 ' 7.9027 17.2297 65 ( 0.1333 8.4065 43.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 66 7 -0.3030 22.0027 35.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 67 § 0.0313 27.1696 39.8097 -Courier_New.ttf 97 ' 7.9027 17.2297 68 $ -3.2671 21.8261 44.3865 -Courier_New.ttf 97 ' 7.9027 17.2297 69 € 2.2281 31.2297 34.4140 -Courier_New.ttf 97 ' 7.9027 17.2297 70 / -3.9435 24.6392 44.3865 -Courier_New.ttf 97 ' 7.9027 17.2297 71 C 2.1968 28.2727 34.4140 -Courier_New.ttf 97 ' 7.9027 17.2297 72 * 0.0941 22.0860 21.9800 -Courier_New.ttf 97 ' 7.9027 17.2297 73 ” 0.1465 24.6392 15.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 74 ? 1.4609 21.0594 34.9406 -Courier_New.ttf 97 ' 7.9027 17.2297 75 { -0.4970 11.7324 43.3121 -Courier_New.ttf 97 ' 7.9027 17.2297 76 } -0.5162 11.7324 43.3121 -Courier_New.ttf 97 ' 7.9027 17.2297 77 , 27.6389 11.5597 17.2297 -Courier_New.ttf 97 ' 7.9027 17.2297 78 I 2.4144 22.0860 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 79 ° -6.6639 15.7638 15.7638 -Courier_New.ttf 97 ' 7.9027 17.2297 80 K 2.2508 31.2297 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 81 H 2.3980 28.4333 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 82 q 10.3664 29.1932 36.6565 -Courier_New.ttf 97 ' 7.9027 17.2297 83 & 5.1056 21.9800 31.2070 -Courier_New.ttf 97 ' 7.9027 17.2297 84 ’ -0.1943 12.7529 17.2297 -Courier_New.ttf 97 ' 7.9027 17.2297 85 [ 0.1423 9.5998 43.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 86 - 17.7611 24.8892 3.2297 -Courier_New.ttf 97 ' 7.9027 17.2297 87 Y 2.5055 29.3410 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 88 Q 2.2512 30.3865 40.7840 -Courier_New.ttf 97 ' 7.9027 17.2297 89 " -0.0245 19.6995 16.0365 -Courier_New.ttf 97 ' 7.9027 17.2297 90 ! -0.2411 6.4594 36.5505 -Courier_New.ttf 97 ' 7.9027 17.2297 91 x 10.8130 29.1932 25.2097 -Courier_New.ttf 97 ' 7.9027 17.2297 92 ) -0.0527 8.4065 43.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 93 = 13.6160 29.1932 11.3097 -Courier_New.ttf 97 ' 7.9027 17.2297 94 + 4.9441 26.8590 29.2455 -Courier_New.ttf 97 ' 7.9027 17.2297 95 X 2.5692 30.9092 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 96 » 10.3724 28.7766 26.8068 -Courier_New.ttf 97 ' 7.9027 17.2297 97 ' 0.1871 7.9027 17.2297 -Courier_New.ttf 97 ' 7.9027 17.2297 98 ¢ -2.0397 20.7867 38.0998 -Courier_New.ttf 97 ' 7.9027 17.2297 99 Z 2.3851 23.0959 33.5935 -Courier_New.ttf 97 ' 7.9027 17.2297 100 > 3.6466 28.0000 31.5797 -Courier_New.ttf 97 ' 7.9027 17.2297 101 ® 1.5760 34.7867 35.0594 -Courier_New.ttf 97 ' 7.9027 17.2297 102 © 1.7539 35.0594 34.7867 -Courier_New.ttf 97 ' 7.9027 17.2297 103 ] 0.0357 9.5998 43.1932 -Courier_New.ttf 97 ' 7.9027 17.2297 104 é -2.1200 27.4295 38.4203 -Courier_New.ttf 97 ' 7.9027 17.2297 105 z 10.5890 23.7959 25.2097 -Courier_New.ttf 97 ' 7.9027 17.2297 106 _ 49.7159 35.0594 2.3865 -Courier_New.ttf 97 ' 7.9027 17.2297 107 ¥ 2.4365 29.6744 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 1 t 4.1019 26.2362 34.6034 -Courier_New.ttf 98 ¢ 20.7867 38.0998 2 h 1.9677 29.6326 35.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 3 a 12.1856 26.9256 26.1840 -Courier_New.ttf 98 ¢ 20.7867 38.0998 4 n 12.4477 29.2061 25.6135 -Courier_New.ttf 98 ¢ 20.7867 38.0998 5 P 4.4867 26.0529 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 6 o 12.7487 26.8068 26.1840 -Courier_New.ttf 98 ¢ 20.7867 38.0998 7 e 12.7069 27.4295 26.1840 -Courier_New.ttf 98 ¢ 20.7867 38.0998 8 : 12.8485 8.6565 25.7802 -Courier_New.ttf 98 ¢ 20.7867 38.0998 9 r 12.7249 26.8295 25.6135 -Courier_New.ttf 98 ¢ 20.7867 38.0998 10 l 2.2700 24.4725 35.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 11 i 1.0113 24.4725 37.2498 -Courier_New.ttf 98 ¢ 20.7867 38.0998 12 1 0.3537 22.8527 37.5770 -Courier_New.ttf 98 ¢ 20.7867 38.0998 13 | 1.9618 2.3865 43.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 14 N 4.3833 31.3964 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 15 f 2.1698 25.4696 35.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 16 g 12.5066 27.8462 36.6565 -Courier_New.ttf 98 ¢ 20.7867 38.0998 17 d 2.0897 30.1138 36.5505 -Courier_New.ttf 98 ¢ 20.7867 38.0998 18 W 4.4678 32.5836 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 19 s 12.3432 23.0959 26.1840 -Courier_New.ttf 98 ¢ 20.7867 38.0998 20 c 12.6319 26.6529 26.1840 -Courier_New.ttf 98 ¢ 20.7867 38.0998 21 u 12.8998 29.6326 25.7802 -Courier_New.ttf 98 ¢ 20.7867 38.0998 22 3 1.9168 23.6959 36.7876 -Courier_New.ttf 98 ¢ 20.7867 38.0998 23 ~ 17.1085 24.8892 8.5732 -Courier_New.ttf 98 ¢ 20.7867 38.0998 24 # -0.3680 25.0657 42.1962 -Courier_New.ttf 98 ¢ 20.7867 38.0998 25 O 4.4358 29.1932 34.4140 -Courier_New.ttf 98 ¢ 20.7867 38.0998 26 ` 0.3479 9.8498 8.6565 -Courier_New.ttf 98 ¢ 20.7867 38.0998 27 @ 0.6283 22.0800 40.4029 -Courier_New.ttf 98 ¢ 20.7867 38.0998 28 F 4.5767 27.3234 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 29 S 4.3239 24.5392 34.4140 -Courier_New.ttf 98 ¢ 20.7867 38.0998 30 p 12.5507 29.8826 36.6565 -Courier_New.ttf 98 ¢ 20.7867 38.0998 31 “ 1.9033 24.6392 15.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 32 % 2.0642 24.3664 36.5505 -Courier_New.ttf 98 ¢ 20.7867 38.0998 33 £ 4.0566 26.2840 33.8435 -Courier_New.ttf 98 ¢ 20.7867 38.0998 34 . 30.5462 8.8232 7.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 35 2 1.7237 23.1732 36.3838 -Courier_New.ttf 98 ¢ 20.7867 38.0998 36 5 2.1174 23.7437 36.3838 -Courier_New.ttf 98 ¢ 20.7867 38.0998 37 m 12.8287 35.1594 25.6135 -Courier_New.ttf 98 ¢ 20.7867 38.0998 38 V 4.4733 35.1140 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 39 6 1.6925 23.7959 36.7876 -Courier_New.ttf 98 ¢ 20.7867 38.0998 40 w 12.8603 32.7502 25.2097 -Courier_New.ttf 98 ¢ 20.7867 38.0998 41 T 4.5420 26.8590 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 42 M 4.6042 34.5367 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 43 G 4.2748 29.5621 34.4140 -Courier_New.ttf 98 ¢ 20.7867 38.0998 44 b 2.0334 29.8826 36.5505 -Courier_New.ttf 98 ¢ 20.7867 38.0998 45 9 1.9017 22.4193 36.7876 -Courier_New.ttf 98 ¢ 20.7867 38.0998 46 ; 13.0213 12.8068 30.9570 -Courier_New.ttf 98 ¢ 20.7867 38.0998 47 D 4.3744 28.4394 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 48 L 4.8502 28.2727 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 49 y 12.8101 29.3121 36.2527 -Courier_New.ttf 98 ¢ 20.7867 38.0998 50 ‘ 2.1055 12.7529 17.2297 -Courier_New.ttf 98 ¢ 20.7867 38.0998 51 \ -0.9343 24.6392 44.3865 -Courier_New.ttf 98 ¢ 20.7867 38.0998 52 R 4.9684 30.7070 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 53 < 5.5585 28.0000 31.5797 -Courier_New.ttf 98 ¢ 20.7867 38.0998 54 4 2.2115 22.3232 35.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 55 8 1.5660 21.3094 36.7876 -Courier_New.ttf 98 ¢ 20.7867 38.0998 56 0 1.6358 23.6959 36.7876 -Courier_New.ttf 98 ¢ 20.7867 38.0998 57 A 3.9525 37.1505 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 58 E 4.4356 27.3234 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 59 B 4.5972 28.4167 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 60 v 12.8687 32.1252 25.2097 -Courier_New.ttf 98 ¢ 20.7867 38.0998 61 k 1.9561 26.6529 35.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 62 J 4.2964 28.6766 34.1640 -Courier_New.ttf 98 ¢ 20.7867 38.0998 63 U 4.4146 31.3964 34.1640 -Courier_New.ttf 98 ¢ 20.7867 38.0998 64 j 0.8073 18.4230 48.2928 -Courier_New.ttf 98 ¢ 20.7867 38.0998 65 ( 1.8942 8.4065 43.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 66 7 2.0915 22.0027 35.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 67 § 2.0168 27.1696 39.8097 -Courier_New.ttf 98 ¢ 20.7867 38.0998 68 $ -0.8424 21.8261 44.3865 -Courier_New.ttf 98 ¢ 20.7867 38.0998 69 € 4.1563 31.2297 34.4140 -Courier_New.ttf 98 ¢ 20.7867 38.0998 70 / -1.5291 24.6392 44.3865 -Courier_New.ttf 98 ¢ 20.7867 38.0998 71 C 4.2317 28.2727 34.4140 -Courier_New.ttf 98 ¢ 20.7867 38.0998 72 * 2.3937 22.0860 21.9800 -Courier_New.ttf 98 ¢ 20.7867 38.0998 73 ” 2.2916 24.6392 15.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 74 ? 3.7627 21.0594 34.9406 -Courier_New.ttf 98 ¢ 20.7867 38.0998 75 { 1.7229 11.7324 43.3121 -Courier_New.ttf 98 ¢ 20.7867 38.0998 76 } 1.9342 11.7324 43.3121 -Courier_New.ttf 98 ¢ 20.7867 38.0998 77 , 29.8098 11.5597 17.2297 -Courier_New.ttf 98 ¢ 20.7867 38.0998 78 I 4.7090 22.0860 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 79 ° -4.0805 15.7638 15.7638 -Courier_New.ttf 98 ¢ 20.7867 38.0998 80 K 4.7006 31.2297 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 81 H 4.2327 28.4333 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 82 q 12.5220 29.1932 36.6565 -Courier_New.ttf 98 ¢ 20.7867 38.0998 83 & 7.3272 21.9800 31.2070 -Courier_New.ttf 98 ¢ 20.7867 38.0998 84 ’ 2.1739 12.7529 17.2297 -Courier_New.ttf 98 ¢ 20.7867 38.0998 85 [ 1.9599 9.5998 43.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 86 - 19.6223 24.8892 3.2297 -Courier_New.ttf 98 ¢ 20.7867 38.0998 87 Y 4.5035 29.3410 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 88 Q 4.0541 30.3865 40.7840 -Courier_New.ttf 98 ¢ 20.7867 38.0998 89 " 2.1341 19.6995 16.0365 -Courier_New.ttf 98 ¢ 20.7867 38.0998 90 ! 2.2537 6.4594 36.5505 -Courier_New.ttf 98 ¢ 20.7867 38.0998 91 x 13.1084 29.1932 25.2097 -Courier_New.ttf 98 ¢ 20.7867 38.0998 92 ) 2.2361 8.4065 43.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 93 = 15.5187 29.1932 11.3097 -Courier_New.ttf 98 ¢ 20.7867 38.0998 94 + 7.1420 26.8590 29.2455 -Courier_New.ttf 98 ¢ 20.7867 38.0998 95 X 4.4980 30.9092 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 96 » 12.4855 28.7766 26.8068 -Courier_New.ttf 98 ¢ 20.7867 38.0998 97 ' 2.0099 7.9027 17.2297 -Courier_New.ttf 98 ¢ 20.7867 38.0998 98 ¢ -0.1841 20.7867 38.0998 -Courier_New.ttf 98 ¢ 20.7867 38.0998 99 Z 4.7129 23.0959 33.5935 -Courier_New.ttf 98 ¢ 20.7867 38.0998 100 > 5.8010 28.0000 31.5797 -Courier_New.ttf 98 ¢ 20.7867 38.0998 101 ® 3.6896 34.7867 35.0594 -Courier_New.ttf 98 ¢ 20.7867 38.0998 102 © 3.8252 35.0594 34.7867 -Courier_New.ttf 98 ¢ 20.7867 38.0998 103 ] 2.1616 9.5998 43.1932 -Courier_New.ttf 98 ¢ 20.7867 38.0998 104 é 0.2339 27.4295 38.4203 -Courier_New.ttf 98 ¢ 20.7867 38.0998 105 z 13.2242 23.7959 25.2097 -Courier_New.ttf 98 ¢ 20.7867 38.0998 106 _ 52.1317 35.0594 2.3865 -Courier_New.ttf 98 ¢ 20.7867 38.0998 107 ¥ 4.3807 29.6744 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 1 t -0.3204 26.2362 34.6034 -Courier_New.ttf 99 Z 23.0959 33.5935 2 h -2.3448 29.6326 35.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 3 a 8.0786 26.9256 26.1840 -Courier_New.ttf 99 Z 23.0959 33.5935 4 n 8.2385 29.2061 25.6135 -Courier_New.ttf 99 Z 23.0959 33.5935 5 P -0.2163 26.0529 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 6 o 8.0968 26.8068 26.1840 -Courier_New.ttf 99 Z 23.0959 33.5935 7 e 7.9669 27.4295 26.1840 -Courier_New.ttf 99 Z 23.0959 33.5935 8 : 8.0882 8.6565 25.7802 -Courier_New.ttf 99 Z 23.0959 33.5935 9 r 7.8883 26.8295 25.6135 -Courier_New.ttf 99 Z 23.0959 33.5935 10 l -2.5988 24.4725 35.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 11 i -3.9013 24.4725 37.2498 -Courier_New.ttf 99 Z 23.0959 33.5935 12 1 -3.9048 22.8527 37.5770 -Courier_New.ttf 99 Z 23.0959 33.5935 13 | -2.0146 2.3865 43.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 14 N 0.2613 31.3964 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 15 f -2.5153 25.4696 35.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 16 g 7.9648 27.8462 36.6565 -Courier_New.ttf 99 Z 23.0959 33.5935 17 d -2.3438 30.1138 36.5505 -Courier_New.ttf 99 Z 23.0959 33.5935 18 W -0.1013 32.5836 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 19 s 7.8092 23.0959 26.1840 -Courier_New.ttf 99 Z 23.0959 33.5935 20 c 8.0994 26.6529 26.1840 -Courier_New.ttf 99 Z 23.0959 33.5935 21 u 8.3513 29.6326 25.7802 -Courier_New.ttf 99 Z 23.0959 33.5935 22 3 -2.5354 23.6959 36.7876 -Courier_New.ttf 99 Z 23.0959 33.5935 23 ~ 12.3709 24.8892 8.5732 -Courier_New.ttf 99 Z 23.0959 33.5935 24 # -4.9831 25.0657 42.1962 -Courier_New.ttf 99 Z 23.0959 33.5935 25 O -0.4911 29.1932 34.4140 -Courier_New.ttf 99 Z 23.0959 33.5935 26 ` -4.0091 9.8498 8.6565 -Courier_New.ttf 99 Z 23.0959 33.5935 27 @ -3.7830 22.0800 40.4029 -Courier_New.ttf 99 Z 23.0959 33.5935 28 F 0.2548 27.3234 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 29 S -0.3500 24.5392 34.4140 -Courier_New.ttf 99 Z 23.0959 33.5935 30 p 7.8147 29.8826 36.6565 -Courier_New.ttf 99 Z 23.0959 33.5935 31 “ -1.9296 24.6392 15.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 32 % -2.4162 24.3664 36.5505 -Courier_New.ttf 99 Z 23.0959 33.5935 33 £ -0.2787 26.2840 33.8435 -Courier_New.ttf 99 Z 23.0959 33.5935 34 . 26.1189 8.8232 7.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 35 2 -2.7125 23.1732 36.3838 -Courier_New.ttf 99 Z 23.0959 33.5935 36 5 -2.2170 23.7437 36.3838 -Courier_New.ttf 99 Z 23.0959 33.5935 37 m 7.8128 35.1594 25.6135 -Courier_New.ttf 99 Z 23.0959 33.5935 38 V -0.1371 35.1140 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 39 6 -3.0604 23.7959 36.7876 -Courier_New.ttf 99 Z 23.0959 33.5935 40 w 8.6354 32.7502 25.2097 -Courier_New.ttf 99 Z 23.0959 33.5935 41 T -0.2672 26.8590 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 42 M 0.0676 34.5367 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 43 G 0.0169 29.5621 34.4140 -Courier_New.ttf 99 Z 23.0959 33.5935 44 b -2.1988 29.8826 36.5505 -Courier_New.ttf 99 Z 23.0959 33.5935 45 9 -2.6123 22.4193 36.7876 -Courier_New.ttf 99 Z 23.0959 33.5935 46 ; 8.2765 12.8068 30.9570 -Courier_New.ttf 99 Z 23.0959 33.5935 47 D -0.1366 28.4394 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 48 L 0.0109 28.2727 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 49 y 7.9430 29.3121 36.2527 -Courier_New.ttf 99 Z 23.0959 33.5935 50 ‘ -2.3768 12.7529 17.2297 -Courier_New.ttf 99 Z 23.0959 33.5935 51 \ -5.7750 24.6392 44.3865 -Courier_New.ttf 99 Z 23.0959 33.5935 52 R 0.1508 30.7070 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 53 < 1.2023 28.0000 31.5797 -Courier_New.ttf 99 Z 23.0959 33.5935 54 4 -2.3781 22.3232 35.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 55 8 -2.7727 21.3094 36.7876 -Courier_New.ttf 99 Z 23.0959 33.5935 56 0 -2.7816 23.6959 36.7876 -Courier_New.ttf 99 Z 23.0959 33.5935 57 A -0.2664 37.1505 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 58 E -0.1207 27.3234 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 59 B -0.0019 28.4167 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 60 v 8.3377 32.1252 25.2097 -Courier_New.ttf 99 Z 23.0959 33.5935 61 k -2.2206 26.6529 35.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 62 J -0.0909 28.6766 34.1640 -Courier_New.ttf 99 Z 23.0959 33.5935 63 U 0.0038 31.3964 34.1640 -Courier_New.ttf 99 Z 23.0959 33.5935 64 j -3.7706 18.4230 48.2928 -Courier_New.ttf 99 Z 23.0959 33.5935 65 ( -2.4837 8.4065 43.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 66 7 -2.1925 22.0027 35.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 67 § -2.4426 27.1696 39.8097 -Courier_New.ttf 99 Z 23.0959 33.5935 68 $ -5.6140 21.8261 44.3865 -Courier_New.ttf 99 Z 23.0959 33.5935 69 € -0.2722 31.2297 34.4140 -Courier_New.ttf 99 Z 23.0959 33.5935 70 / -6.1792 24.6392 44.3865 -Courier_New.ttf 99 Z 23.0959 33.5935 71 C -0.2644 28.2727 34.4140 -Courier_New.ttf 99 Z 23.0959 33.5935 72 * -2.3708 22.0860 21.9800 -Courier_New.ttf 99 Z 23.0959 33.5935 73 ” -2.3651 24.6392 15.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 74 ? -0.7863 21.0594 34.9406 -Courier_New.ttf 99 Z 23.0959 33.5935 75 { -2.8211 11.7324 43.3121 -Courier_New.ttf 99 Z 23.0959 33.5935 76 } -2.5875 11.7324 43.3121 -Courier_New.ttf 99 Z 23.0959 33.5935 77 , 25.2627 11.5597 17.2297 -Courier_New.ttf 99 Z 23.0959 33.5935 78 I 0.2006 22.0860 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 79 ° -8.4196 15.7638 15.7638 -Courier_New.ttf 99 Z 23.0959 33.5935 80 K -0.0115 31.2297 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 81 H -0.3841 28.4333 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 82 q 7.8587 29.1932 36.6565 -Courier_New.ttf 99 Z 23.0959 33.5935 83 & 2.8640 21.9800 31.2070 -Courier_New.ttf 99 Z 23.0959 33.5935 84 ’ -2.1823 12.7529 17.2297 -Courier_New.ttf 99 Z 23.0959 33.5935 85 [ -2.2375 9.5998 43.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 86 - 15.0620 24.8892 3.2297 -Courier_New.ttf 99 Z 23.0959 33.5935 87 Y 0.0903 29.3410 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 88 Q -0.0386 30.3865 40.7840 -Courier_New.ttf 99 Z 23.0959 33.5935 89 " -2.7451 19.6995 16.0365 -Courier_New.ttf 99 Z 23.0959 33.5935 90 ! -2.1845 6.4594 36.5505 -Courier_New.ttf 99 Z 23.0959 33.5935 91 x 8.5781 29.1932 25.2097 -Courier_New.ttf 99 Z 23.0959 33.5935 92 ) -2.2010 8.4065 43.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 93 = 11.2456 29.1932 11.3097 -Courier_New.ttf 99 Z 23.0959 33.5935 94 + 2.4939 26.8590 29.2455 -Courier_New.ttf 99 Z 23.0959 33.5935 95 X 0.0513 30.9092 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 96 » 7.8334 29.5432 26.8068 -Courier_New.ttf 99 Z 23.0959 33.5935 97 ' -2.4898 7.9027 17.2297 -Courier_New.ttf 99 Z 23.0959 33.5935 98 ¢ -4.8166 20.7867 38.0998 -Courier_New.ttf 99 Z 23.0959 33.5935 99 Z -0.1097 23.0959 33.5935 -Courier_New.ttf 99 Z 23.0959 33.5935 100 > 1.4811 28.0000 31.5797 -Courier_New.ttf 99 Z 23.0959 33.5935 101 ® -0.8213 34.7867 35.0594 -Courier_New.ttf 99 Z 23.0959 33.5935 102 © -0.3257 35.0594 34.7867 -Courier_New.ttf 99 Z 23.0959 33.5935 103 ] -2.2238 9.5998 43.1932 -Courier_New.ttf 99 Z 23.0959 33.5935 104 é -4.5721 27.4295 38.4203 -Courier_New.ttf 99 Z 23.0959 33.5935 105 z 8.4451 23.7959 25.2097 -Courier_New.ttf 99 Z 23.0959 33.5935 106 _ 47.5735 35.0594 2.3865 -Courier_New.ttf 99 Z 23.0959 33.5935 107 ¥ -0.0749 29.6744 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 1 t -1.9330 26.2362 34.6034 -Courier_New.ttf 100 > 28.0000 31.5797 2 h -3.6441 29.6326 35.9800 -Courier_New.ttf 100 > 28.0000 31.5797 3 a 6.7154 26.9256 26.1840 -Courier_New.ttf 100 > 28.0000 31.5797 4 n 6.9017 29.2061 25.6135 -Courier_New.ttf 100 > 28.0000 31.5797 5 P -1.1673 26.0529 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 6 o 6.9445 26.8068 26.1840 -Courier_New.ttf 100 > 28.0000 31.5797 7 e 6.6635 27.4295 26.1840 -Courier_New.ttf 100 > 28.0000 31.5797 8 : 7.5278 8.6565 25.7802 -Courier_New.ttf 100 > 28.0000 31.5797 9 r 6.6963 26.8295 25.6135 -Courier_New.ttf 100 > 28.0000 31.5797 10 l -3.6858 24.4725 35.9800 -Courier_New.ttf 100 > 28.0000 31.5797 11 i -4.8255 24.4725 37.2498 -Courier_New.ttf 100 > 28.0000 31.5797 12 1 -5.1541 22.8527 37.5770 -Courier_New.ttf 100 > 28.0000 31.5797 13 | -3.6070 2.3865 43.1932 -Courier_New.ttf 100 > 28.0000 31.5797 14 N -1.1463 31.3964 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 15 f -3.2912 25.4696 35.9800 -Courier_New.ttf 100 > 28.0000 31.5797 16 g 6.9540 27.8462 36.6565 -Courier_New.ttf 100 > 28.0000 31.5797 17 d -3.7239 30.1138 36.5505 -Courier_New.ttf 100 > 28.0000 31.5797 18 W -1.0298 32.5836 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 19 s 6.6815 23.0959 26.1840 -Courier_New.ttf 100 > 28.0000 31.5797 20 c 6.9277 26.6529 26.1840 -Courier_New.ttf 100 > 28.0000 31.5797 21 u 7.0962 29.6326 25.7802 -Courier_New.ttf 100 > 28.0000 31.5797 22 3 -4.0524 23.6959 36.7876 -Courier_New.ttf 100 > 28.0000 31.5797 23 ~ 11.1120 24.8892 8.5732 -Courier_New.ttf 100 > 28.0000 31.5797 24 # -6.2665 25.0657 42.1962 -Courier_New.ttf 100 > 28.0000 31.5797 25 O -1.6175 29.1932 34.4140 -Courier_New.ttf 100 > 28.0000 31.5797 26 ` -5.3165 9.8498 8.6565 -Courier_New.ttf 100 > 28.0000 31.5797 27 @ -5.2313 22.0800 40.4029 -Courier_New.ttf 100 > 28.0000 31.5797 28 F -1.3576 27.3234 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 29 S -1.0989 24.5392 34.4140 -Courier_New.ttf 100 > 28.0000 31.5797 30 p 6.8192 29.8826 36.6565 -Courier_New.ttf 100 > 28.0000 31.5797 31 “ -3.6798 24.6392 15.1932 -Courier_New.ttf 100 > 28.0000 31.5797 32 % -3.3732 24.3664 36.5505 -Courier_New.ttf 100 > 28.0000 31.5797 33 £ -1.5503 26.2840 33.8435 -Courier_New.ttf 100 > 28.0000 31.5797 34 . 24.7693 8.8232 7.9800 -Courier_New.ttf 100 > 28.0000 31.5797 35 2 -4.0108 23.1732 36.3838 -Courier_New.ttf 100 > 28.0000 31.5797 36 5 -3.6683 23.7437 36.3838 -Courier_New.ttf 100 > 28.0000 31.5797 37 m 6.9150 35.1594 25.6135 -Courier_New.ttf 100 > 28.0000 31.5797 38 V -1.0737 35.1140 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 39 6 -4.2363 23.7959 36.7876 -Courier_New.ttf 100 > 28.0000 31.5797 40 w 7.2590 32.7502 25.2097 -Courier_New.ttf 100 > 28.0000 31.5797 41 T -0.9376 26.8590 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 42 M -1.3114 34.5367 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 43 G -1.4269 29.5621 34.4140 -Courier_New.ttf 100 > 28.0000 31.5797 44 b -3.5354 29.8826 36.5505 -Courier_New.ttf 100 > 28.0000 31.5797 45 9 -4.0076 22.4193 36.7876 -Courier_New.ttf 100 > 28.0000 31.5797 46 ; 7.1691 12.8068 30.9570 -Courier_New.ttf 100 > 28.0000 31.5797 47 D -1.2090 28.4394 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 48 L -1.1003 28.2727 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 49 y 7.1230 29.3121 36.2527 -Courier_New.ttf 100 > 28.0000 31.5797 50 ‘ -3.4973 12.7529 17.2297 -Courier_New.ttf 100 > 28.0000 31.5797 51 \ -6.9393 24.6392 44.3865 -Courier_New.ttf 100 > 28.0000 31.5797 52 R -1.2974 30.7070 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 53 < 0.3808 28.0000 31.5797 -Courier_New.ttf 100 > 28.0000 31.5797 54 4 -3.5605 22.3232 35.9800 -Courier_New.ttf 100 > 28.0000 31.5797 55 8 -4.1192 21.3094 36.7876 -Courier_New.ttf 100 > 28.0000 31.5797 56 0 -3.9636 23.6959 36.7876 -Courier_New.ttf 100 > 28.0000 31.5797 57 A -1.2974 37.1505 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 58 E -1.2622 27.3234 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 59 B -1.4259 28.4167 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 60 v 7.1786 32.1252 25.2097 -Courier_New.ttf 100 > 28.0000 31.5797 61 k -3.7397 26.6529 35.9800 -Courier_New.ttf 100 > 28.0000 31.5797 62 J -1.3426 28.6766 34.1640 -Courier_New.ttf 100 > 28.0000 31.5797 63 U -0.9474 31.3964 34.1640 -Courier_New.ttf 100 > 28.0000 31.5797 64 j -5.0294 18.4230 48.2928 -Courier_New.ttf 100 > 28.0000 31.5797 65 ( -3.6756 8.4065 43.1932 -Courier_New.ttf 100 > 28.0000 31.5797 66 7 -3.7038 22.0027 35.9800 -Courier_New.ttf 100 > 28.0000 31.5797 67 § -3.7747 27.1696 39.8097 -Courier_New.ttf 100 > 28.0000 31.5797 68 $ -6.5375 21.8261 44.3865 -Courier_New.ttf 100 > 28.0000 31.5797 69 € -1.1931 31.2297 34.4140 -Courier_New.ttf 100 > 28.0000 31.5797 70 / -7.3842 24.6392 44.3865 -Courier_New.ttf 100 > 28.0000 31.5797 71 C -1.3969 28.2727 34.4140 -Courier_New.ttf 100 > 28.0000 31.5797 72 * -3.7271 22.0860 21.9800 -Courier_New.ttf 100 > 28.0000 31.5797 73 ” -3.6144 24.6392 15.1932 -Courier_New.ttf 100 > 28.0000 31.5797 74 ? -1.9886 21.0594 34.9406 -Courier_New.ttf 100 > 28.0000 31.5797 75 { -3.8329 11.7324 43.3121 -Courier_New.ttf 100 > 28.0000 31.5797 76 } -4.0778 11.7324 43.3121 -Courier_New.ttf 100 > 28.0000 31.5797 77 , 23.8511 11.5597 17.2297 -Courier_New.ttf 100 > 28.0000 31.5797 78 I -1.3181 22.0860 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 79 ° -9.8651 15.7638 15.7638 -Courier_New.ttf 100 > 28.0000 31.5797 80 K -1.2705 31.2297 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 81 H -1.2132 28.4333 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 82 q 6.7594 29.1932 36.6565 -Courier_New.ttf 100 > 28.0000 31.5797 83 & 1.6368 21.9800 31.2070 -Courier_New.ttf 100 > 28.0000 31.5797 84 ’ -3.5531 12.7529 17.2297 -Courier_New.ttf 100 > 28.0000 31.5797 85 [ -3.6524 9.5998 43.1932 -Courier_New.ttf 100 > 28.0000 31.5797 86 - 14.1982 24.8892 3.2297 -Courier_New.ttf 100 > 28.0000 31.5797 87 Y -1.3318 29.3410 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 88 Q -1.7098 30.3865 40.7840 -Courier_New.ttf 100 > 28.0000 31.5797 89 " -3.7818 19.6995 16.0365 -Courier_New.ttf 100 > 28.0000 31.5797 90 ! -3.5017 6.4594 36.5505 -Courier_New.ttf 100 > 28.0000 31.5797 91 x 7.2589 29.1932 25.2097 -Courier_New.ttf 100 > 28.0000 31.5797 92 ) -3.2799 8.4065 43.1932 -Courier_New.ttf 100 > 28.0000 31.5797 93 = 9.9004 29.1932 11.3097 -Courier_New.ttf 100 > 28.0000 31.5797 94 + 1.5818 26.8590 29.2455 -Courier_New.ttf 100 > 28.0000 31.5797 95 X -1.1963 30.9092 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 96 » 7.0934 28.7766 26.8068 -Courier_New.ttf 100 > 28.0000 31.5797 97 ' -3.8027 7.9027 17.2297 -Courier_New.ttf 100 > 28.0000 31.5797 98 ¢ -5.6411 20.7867 38.0998 -Courier_New.ttf 100 > 28.0000 31.5797 99 Z -1.1094 23.0959 33.5935 -Courier_New.ttf 100 > 28.0000 31.5797 100 > 0.0678 28.0000 31.5797 -Courier_New.ttf 100 > 28.0000 31.5797 101 ® -2.1744 34.7867 35.0594 -Courier_New.ttf 100 > 28.0000 31.5797 102 © -1.5379 35.0594 34.7867 -Courier_New.ttf 100 > 28.0000 31.5797 103 ] -3.3915 9.5998 43.1932 -Courier_New.ttf 100 > 28.0000 31.5797 104 é -5.5932 27.4295 38.4203 -Courier_New.ttf 100 > 28.0000 31.5797 105 z 7.1792 23.7959 25.2097 -Courier_New.ttf 100 > 28.0000 31.5797 106 _ 46.6440 35.0594 2.3865 -Courier_New.ttf 100 > 28.0000 31.5797 107 ¥ -1.1488 29.6744 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 1 t 0.4217 26.2362 34.6034 -Courier_New.ttf 101 ® 34.7867 35.0594 2 h -1.5722 29.6326 35.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 3 a 8.5445 26.9256 26.1840 -Courier_New.ttf 101 ® 34.7867 35.0594 4 n 8.7453 29.2061 25.6135 -Courier_New.ttf 101 ® 34.7867 35.0594 5 P 0.8245 26.0529 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 6 o 9.0755 26.8068 26.1840 -Courier_New.ttf 101 ® 34.7867 35.0594 7 e 8.7155 27.4295 26.1840 -Courier_New.ttf 101 ® 34.7867 35.0594 8 : 9.3636 8.6565 25.7802 -Courier_New.ttf 101 ® 34.7867 35.0594 9 r 8.8332 26.8295 25.6135 -Courier_New.ttf 101 ® 34.7867 35.0594 10 l -1.6749 24.4725 35.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 11 i -2.8090 24.4725 37.2498 -Courier_New.ttf 101 ® 34.7867 35.0594 12 1 -2.9340 22.8527 37.5770 -Courier_New.ttf 101 ® 34.7867 35.0594 13 | -1.2596 2.3865 43.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 14 N 0.8395 31.3964 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 15 f -1.4866 25.4696 35.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 16 g 9.3348 27.8462 36.6565 -Courier_New.ttf 101 ® 34.7867 35.0594 17 d -1.7912 30.1138 36.5505 -Courier_New.ttf 101 ® 34.7867 35.0594 18 W 0.6028 32.5836 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 19 s 8.7661 23.0959 26.1840 -Courier_New.ttf 101 ® 34.7867 35.0594 20 c 8.8232 26.6529 26.1840 -Courier_New.ttf 101 ® 34.7867 35.0594 21 u 8.9830 29.6326 25.7802 -Courier_New.ttf 101 ® 34.7867 35.0594 22 3 -1.7838 23.6959 36.7876 -Courier_New.ttf 101 ® 34.7867 35.0594 23 ~ 13.5114 24.8892 8.5732 -Courier_New.ttf 101 ® 34.7867 35.0594 24 # -3.9829 25.0657 42.1962 -Courier_New.ttf 101 ® 34.7867 35.0594 25 O 0.7177 29.1932 34.4140 -Courier_New.ttf 101 ® 34.7867 35.0594 26 ` -3.1208 9.8498 8.6565 -Courier_New.ttf 101 ® 34.7867 35.0594 27 @ -3.0414 22.0800 40.4029 -Courier_New.ttf 101 ® 34.7867 35.0594 28 F 0.9312 27.3234 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 29 S 0.4363 24.5392 34.4140 -Courier_New.ttf 101 ® 34.7867 35.0594 30 p 8.4802 29.8826 36.6565 -Courier_New.ttf 101 ® 34.7867 35.0594 31 “ -1.8530 24.6392 15.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 32 % -1.4910 24.3664 36.5505 -Courier_New.ttf 101 ® 34.7867 35.0594 33 £ 0.3950 26.2840 33.8435 -Courier_New.ttf 101 ® 34.7867 35.0594 34 . 27.0378 8.8232 7.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 35 2 -1.9481 23.1732 36.3838 -Courier_New.ttf 101 ® 34.7867 35.0594 36 5 -1.4706 23.7437 36.3838 -Courier_New.ttf 101 ® 34.7867 35.0594 37 m 9.1309 35.1594 25.6135 -Courier_New.ttf 101 ® 34.7867 35.0594 38 V 0.6734 35.1140 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 39 6 -1.8120 23.7959 36.7876 -Courier_New.ttf 101 ® 34.7867 35.0594 40 w 9.0263 32.7502 25.2097 -Courier_New.ttf 101 ® 34.7867 35.0594 41 T 0.8196 26.8590 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 42 M 0.8370 34.5367 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 43 G 0.6914 29.5621 34.4140 -Courier_New.ttf 101 ® 34.7867 35.0594 44 b -1.7464 29.8826 36.5505 -Courier_New.ttf 101 ® 34.7867 35.0594 45 9 -1.7290 22.4193 36.7876 -Courier_New.ttf 101 ® 34.7867 35.0594 46 ; 9.1252 12.8068 30.9570 -Courier_New.ttf 101 ® 34.7867 35.0594 47 D 1.2004 28.4394 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 48 L 0.9981 28.2727 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 49 y 9.6902 29.3121 36.2527 -Courier_New.ttf 101 ® 34.7867 35.0594 50 ‘ -1.3686 12.7529 17.2297 -Courier_New.ttf 101 ® 34.7867 35.0594 51 \ -4.5955 24.6392 44.3865 -Courier_New.ttf 101 ® 34.7867 35.0594 52 R 0.6770 30.7070 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 53 < 1.9600 28.0000 31.5797 -Courier_New.ttf 101 ® 34.7867 35.0594 54 4 -1.5041 22.3232 35.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 55 8 -1.9208 21.3094 36.7876 -Courier_New.ttf 101 ® 34.7867 35.0594 56 0 -2.1749 23.6959 36.7876 -Courier_New.ttf 101 ® 34.7867 35.0594 57 A 0.9760 37.1505 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 58 E 1.0530 27.3234 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 59 B 0.7798 28.4167 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 60 v 9.4866 32.1252 25.2097 -Courier_New.ttf 101 ® 34.7867 35.0594 61 k -1.6418 26.6529 35.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 62 J 0.7922 28.6766 34.1640 -Courier_New.ttf 101 ® 34.7867 35.0594 63 U 0.9826 31.3964 34.1640 -Courier_New.ttf 101 ® 34.7867 35.0594 64 j -2.7829 18.4230 48.2928 -Courier_New.ttf 101 ® 34.7867 35.0594 65 ( -1.3273 8.4065 43.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 66 7 -1.6079 22.0027 35.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 67 § -1.3947 27.1696 39.8097 -Courier_New.ttf 101 ® 34.7867 35.0594 68 $ -5.0980 21.8261 44.3865 -Courier_New.ttf 101 ® 34.7867 35.0594 69 € 0.7765 31.2297 34.4140 -Courier_New.ttf 101 ® 34.7867 35.0594 70 / -4.6774 24.6392 44.3865 -Courier_New.ttf 101 ® 34.7867 35.0594 71 C 0.7060 28.2727 34.4140 -Courier_New.ttf 101 ® 34.7867 35.0594 72 * -1.5952 22.0860 21.9800 -Courier_New.ttf 101 ® 34.7867 35.0594 73 ” -1.4007 24.6392 15.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 74 ? 0.4265 21.0594 34.9406 -Courier_New.ttf 101 ® 34.7867 35.0594 75 { -1.5922 11.7324 43.3121 -Courier_New.ttf 101 ® 34.7867 35.0594 76 } -1.7869 11.7324 43.3121 -Courier_New.ttf 101 ® 34.7867 35.0594 77 , 25.9443 11.5597 17.2297 -Courier_New.ttf 101 ® 34.7867 35.0594 78 I 0.7569 22.0860 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 79 ° -7.9852 15.7638 15.7638 -Courier_New.ttf 101 ® 34.7867 35.0594 80 K 0.7393 31.2297 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 81 H 0.8427 28.4333 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 82 q 9.1068 29.1932 36.6565 -Courier_New.ttf 101 ® 34.7867 35.0594 83 & 4.2009 21.9800 31.2070 -Courier_New.ttf 101 ® 34.7867 35.0594 84 ’ -1.4871 12.7529 17.2297 -Courier_New.ttf 101 ® 34.7867 35.0594 85 [ -1.4556 9.5998 43.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 86 - 15.9593 24.8892 3.2297 -Courier_New.ttf 101 ® 34.7867 35.0594 87 Y 0.8248 29.3410 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 88 Q 0.3849 30.3865 40.7840 -Courier_New.ttf 101 ® 34.7867 35.0594 89 " -1.2023 19.6995 16.0365 -Courier_New.ttf 101 ® 34.7867 35.0594 90 ! -1.6047 6.4594 36.5505 -Courier_New.ttf 101 ® 34.7867 35.0594 91 x 9.2935 29.1932 25.2097 -Courier_New.ttf 101 ® 34.7867 35.0594 92 ) -0.9957 8.4065 43.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 93 = 12.2712 29.1932 11.3097 -Courier_New.ttf 101 ® 34.7867 35.0594 94 + 3.7066 26.8590 29.2455 -Courier_New.ttf 101 ® 34.7867 35.0594 95 X 0.7805 30.9092 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 96 » 8.8826 28.7766 26.8068 -Courier_New.ttf 101 ® 34.7867 35.0594 97 ' -1.4203 7.9027 17.2297 -Courier_New.ttf 101 ® 34.7867 35.0594 98 ¢ -3.5265 20.7867 38.0998 -Courier_New.ttf 101 ® 34.7867 35.0594 99 Z 0.9513 23.0959 33.5935 -Courier_New.ttf 101 ® 34.7867 35.0594 100 > 2.1003 28.0000 31.5797 -Courier_New.ttf 101 ® 34.7867 35.0594 101 ® 0.1216 34.7867 35.0594 -Courier_New.ttf 101 ® 34.7867 35.0594 102 © 0.3858 35.0594 34.7867 -Courier_New.ttf 101 ® 34.7867 35.0594 103 ] -1.4547 9.5998 43.1932 -Courier_New.ttf 101 ® 34.7867 35.0594 104 é -3.4003 27.4295 38.4203 -Courier_New.ttf 101 ® 34.7867 35.0594 105 z 9.2154 23.7959 25.2097 -Courier_New.ttf 101 ® 34.7867 35.0594 106 _ 48.2336 35.0594 2.3865 -Courier_New.ttf 101 ® 34.7867 35.0594 107 ¥ 0.6349 29.6744 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 1 t -0.0559 26.2362 34.6034 -Courier_New.ttf 102 © 35.0594 34.7867 2 h -1.7193 29.6326 35.9800 -Courier_New.ttf 102 © 35.0594 34.7867 3 a 8.6361 26.9256 26.1840 -Courier_New.ttf 102 © 35.0594 34.7867 4 n 8.7068 29.2061 25.6135 -Courier_New.ttf 102 © 35.0594 34.7867 5 P 0.7668 26.0529 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 6 o 8.3427 26.8068 26.1840 -Courier_New.ttf 102 © 35.0594 34.7867 7 e 8.7481 27.4295 26.1840 -Courier_New.ttf 102 © 35.0594 34.7867 8 : 9.1460 8.6565 25.7802 -Courier_New.ttf 102 © 35.0594 34.7867 9 r 8.4628 26.8295 25.6135 -Courier_New.ttf 102 © 35.0594 34.7867 10 l -2.0213 24.4725 35.9800 -Courier_New.ttf 102 © 35.0594 34.7867 11 i -2.9494 24.4725 37.2498 -Courier_New.ttf 102 © 35.0594 34.7867 12 1 -3.4622 22.8527 37.5770 -Courier_New.ttf 102 © 35.0594 34.7867 13 | -2.0688 2.3865 43.1932 -Courier_New.ttf 102 © 35.0594 34.7867 14 N 0.5180 31.3964 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 15 f -1.6417 25.4696 35.9800 -Courier_New.ttf 102 © 35.0594 34.7867 16 g 8.8245 27.8462 36.6565 -Courier_New.ttf 102 © 35.0594 34.7867 17 d -1.9658 30.1138 36.5505 -Courier_New.ttf 102 © 35.0594 34.7867 18 W 0.6329 32.5836 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 19 s 8.5622 23.0959 26.1840 -Courier_New.ttf 102 © 35.0594 34.7867 20 c 8.4520 26.6529 26.1840 -Courier_New.ttf 102 © 35.0594 34.7867 21 u 8.9056 29.6326 25.7802 -Courier_New.ttf 102 © 35.0594 34.7867 22 3 -2.1644 23.6959 36.7876 -Courier_New.ttf 102 © 35.0594 34.7867 23 ~ 12.9626 24.8892 8.5732 -Courier_New.ttf 102 © 35.0594 34.7867 24 # -4.3037 25.0657 42.1962 -Courier_New.ttf 102 © 35.0594 34.7867 25 O 0.3370 29.1932 34.4140 -Courier_New.ttf 102 © 35.0594 34.7867 26 ` -3.2835 9.8498 8.6565 -Courier_New.ttf 102 © 35.0594 34.7867 27 @ -3.3801 22.0800 40.4029 -Courier_New.ttf 102 © 35.0594 34.7867 28 F 0.6625 27.3234 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 29 S 0.2429 24.5392 34.4140 -Courier_New.ttf 102 © 35.0594 34.7867 30 p 8.7477 29.8826 36.6565 -Courier_New.ttf 102 © 35.0594 34.7867 31 “ -1.7884 24.6392 15.1932 -Courier_New.ttf 102 © 35.0594 34.7867 32 % -1.8710 24.3664 36.5505 -Courier_New.ttf 102 © 35.0594 34.7867 33 £ 0.4084 26.2840 33.8435 -Courier_New.ttf 102 © 35.0594 34.7867 34 . 26.9097 8.8232 7.9800 -Courier_New.ttf 102 © 35.0594 34.7867 35 2 -2.2418 23.1732 36.3838 -Courier_New.ttf 102 © 35.0594 34.7867 36 5 -1.9848 23.7437 36.3838 -Courier_New.ttf 102 © 35.0594 34.7867 37 m 8.6086 35.1594 25.6135 -Courier_New.ttf 102 © 35.0594 34.7867 38 V 0.6001 35.1140 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 39 6 -2.4517 23.7959 36.7876 -Courier_New.ttf 102 © 35.0594 34.7867 40 w 9.0097 32.7502 25.2097 -Courier_New.ttf 102 © 35.0594 34.7867 41 T 1.0378 26.8590 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 42 M 0.7026 34.5367 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 43 G 0.4769 29.5621 34.4140 -Courier_New.ttf 102 © 35.0594 34.7867 44 b -2.0121 29.8826 36.5505 -Courier_New.ttf 102 © 35.0594 34.7867 45 9 -1.8275 22.4193 36.7876 -Courier_New.ttf 102 © 35.0594 34.7867 46 ; 8.8934 12.8068 30.9570 -Courier_New.ttf 102 © 35.0594 34.7867 47 D 1.0978 28.4394 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 48 L 0.8489 28.2727 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 49 y 8.9838 29.3121 36.2527 -Courier_New.ttf 102 © 35.0594 34.7867 50 ‘ -1.8130 12.7529 17.2297 -Courier_New.ttf 102 © 35.0594 34.7867 51 \ -4.9056 24.6392 44.3865 -Courier_New.ttf 102 © 35.0594 34.7867 52 R 0.8242 30.7070 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 53 < 1.8395 28.0000 31.5797 -Courier_New.ttf 102 © 35.0594 34.7867 54 4 -1.8473 22.3232 35.9800 -Courier_New.ttf 102 © 35.0594 34.7867 55 8 -2.2708 21.3094 36.7876 -Courier_New.ttf 102 © 35.0594 34.7867 56 0 -2.4251 23.6959 36.7876 -Courier_New.ttf 102 © 35.0594 34.7867 57 A 0.5826 37.1505 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 58 E 0.9369 27.3234 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 59 B 0.5378 28.4167 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 60 v 9.3665 32.1252 25.2097 -Courier_New.ttf 102 © 35.0594 34.7867 61 k -1.7824 26.6529 35.9800 -Courier_New.ttf 102 © 35.0594 34.7867 62 J 0.3486 28.6766 34.1640 -Courier_New.ttf 102 © 35.0594 34.7867 63 U 0.3692 31.3964 34.1640 -Courier_New.ttf 102 © 35.0594 34.7867 64 j -2.8674 18.4230 48.2928 -Courier_New.ttf 102 © 35.0594 34.7867 65 ( -1.7414 8.4065 43.1932 -Courier_New.ttf 102 © 35.0594 34.7867 66 7 -1.8126 22.0027 35.9800 -Courier_New.ttf 102 © 35.0594 34.7867 67 § -2.0944 27.1696 39.8097 -Courier_New.ttf 102 © 35.0594 34.7867 68 $ -4.6033 21.8261 44.3865 -Courier_New.ttf 102 © 35.0594 34.7867 69 € 0.6404 31.2297 34.4140 -Courier_New.ttf 102 © 35.0594 34.7867 70 / -5.5669 24.6392 44.3865 -Courier_New.ttf 102 © 35.0594 34.7867 71 C 0.1666 28.2727 34.4140 -Courier_New.ttf 102 © 35.0594 34.7867 72 * -1.7879 22.0860 21.9800 -Courier_New.ttf 102 © 35.0594 34.7867 73 ” -1.7638 24.6392 15.1932 -Courier_New.ttf 102 © 35.0594 34.7867 74 ? -0.3079 21.0594 34.9406 -Courier_New.ttf 102 © 35.0594 34.7867 75 { -2.0060 11.7324 43.3121 -Courier_New.ttf 102 © 35.0594 34.7867 76 } -2.2142 11.7324 43.3121 -Courier_New.ttf 102 © 35.0594 34.7867 77 , 25.6073 11.5597 17.2297 -Courier_New.ttf 102 © 35.0594 34.7867 78 I 0.9308 22.0860 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 79 ° -8.0884 15.7638 15.7638 -Courier_New.ttf 102 © 35.0594 34.7867 80 K 0.6858 31.2297 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 81 H 0.2631 28.4333 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 82 q 8.5316 29.1932 36.6565 -Courier_New.ttf 102 © 35.0594 34.7867 83 & 3.7526 21.9800 31.2070 -Courier_New.ttf 102 © 35.0594 34.7867 84 ’ -1.8481 12.7529 17.2297 -Courier_New.ttf 102 © 35.0594 34.7867 85 [ -1.6540 9.5998 43.1932 -Courier_New.ttf 102 © 35.0594 34.7867 86 - 15.9516 24.8892 3.2297 -Courier_New.ttf 102 © 35.0594 34.7867 87 Y 0.6018 29.3410 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 88 Q 0.2829 30.3865 40.7840 -Courier_New.ttf 102 © 35.0594 34.7867 89 " -1.8800 19.6995 16.0365 -Courier_New.ttf 102 © 35.0594 34.7867 90 ! -1.8411 6.4594 36.5505 -Courier_New.ttf 102 © 35.0594 34.7867 91 x 9.0848 29.1932 25.2097 -Courier_New.ttf 102 © 35.0594 34.7867 92 ) -1.5422 8.4065 43.1932 -Courier_New.ttf 102 © 35.0594 34.7867 93 = 11.9939 29.1932 11.3097 -Courier_New.ttf 102 © 35.0594 34.7867 94 + 3.5397 26.8590 29.2455 -Courier_New.ttf 102 © 35.0594 34.7867 95 X 0.7354 30.9092 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 96 » 8.5607 28.7766 26.8068 -Courier_New.ttf 102 © 35.0594 34.7867 97 ' -1.9554 7.9027 17.2297 -Courier_New.ttf 102 © 35.0594 34.7867 98 ¢ -3.7665 20.7867 38.0998 -Courier_New.ttf 102 © 35.0594 34.7867 99 Z 0.5555 23.0959 33.5935 -Courier_New.ttf 102 © 35.0594 34.7867 100 > 1.3599 28.0000 31.5797 -Courier_New.ttf 102 © 35.0594 34.7867 101 ® -0.4396 34.7867 35.0594 -Courier_New.ttf 102 © 35.0594 34.7867 102 © 0.1506 35.0594 34.7867 -Courier_New.ttf 102 © 35.0594 34.7867 103 ] -1.8181 9.5998 43.1932 -Courier_New.ttf 102 © 35.0594 34.7867 104 é -3.5159 27.4295 38.4203 -Courier_New.ttf 102 © 35.0594 34.7867 105 z 9.1565 23.7959 25.2097 -Courier_New.ttf 102 © 35.0594 34.7867 106 _ 48.4017 35.0594 2.3865 -Courier_New.ttf 102 © 35.0594 34.7867 107 ¥ 0.7631 29.6744 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 1 t 2.0283 26.2362 34.6034 -Courier_New.ttf 103 ] 9.5998 43.1932 2 h 0.0188 29.6326 35.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 3 a 10.4581 26.9256 26.1840 -Courier_New.ttf 103 ] 9.5998 43.1932 4 n 10.3521 29.2061 25.6135 -Courier_New.ttf 103 ] 9.5998 43.1932 5 P 2.2109 26.0529 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 6 o 10.5503 26.8068 26.1840 -Courier_New.ttf 103 ] 9.5998 43.1932 7 e 10.1681 27.4295 26.1840 -Courier_New.ttf 103 ] 9.5998 43.1932 8 : 10.7133 8.6565 25.7802 -Courier_New.ttf 103 ] 9.5998 43.1932 9 r 10.3262 26.8295 25.6135 -Courier_New.ttf 103 ] 9.5998 43.1932 10 l 0.2012 24.4725 35.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 11 i -1.2717 24.4725 37.2498 -Courier_New.ttf 103 ] 9.5998 43.1932 12 1 -1.8237 22.8527 37.5770 -Courier_New.ttf 103 ] 9.5998 43.1932 13 | -0.1988 2.3865 43.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 14 N 2.2631 31.3964 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 15 f -0.0742 25.4696 35.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 16 g 10.4662 27.8462 36.6565 -Courier_New.ttf 103 ] 9.5998 43.1932 17 d -0.1217 30.1138 36.5505 -Courier_New.ttf 103 ] 9.5998 43.1932 18 W 2.5607 32.5836 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 19 s 10.1311 23.0959 26.1840 -Courier_New.ttf 103 ] 9.5998 43.1932 20 c 10.0740 26.6529 26.1840 -Courier_New.ttf 103 ] 9.5998 43.1932 21 u 10.6088 29.6326 25.7802 -Courier_New.ttf 103 ] 9.5998 43.1932 22 3 -0.2818 23.6959 36.7876 -Courier_New.ttf 103 ] 9.5998 43.1932 23 ~ 14.8653 24.8892 8.5732 -Courier_New.ttf 103 ] 9.5998 43.1932 24 # -2.3625 25.0657 42.1962 -Courier_New.ttf 103 ] 9.5998 43.1932 25 O 2.2825 29.1932 34.4140 -Courier_New.ttf 103 ] 9.5998 43.1932 26 ` -2.0682 9.8498 8.6565 -Courier_New.ttf 103 ] 9.5998 43.1932 27 @ -1.5731 22.0800 40.4029 -Courier_New.ttf 103 ] 9.5998 43.1932 28 F 2.5832 27.3234 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 29 S 2.4103 24.5392 34.4140 -Courier_New.ttf 103 ] 9.5998 43.1932 30 p 10.6434 29.8826 36.6565 -Courier_New.ttf 103 ] 9.5998 43.1932 31 “ 0.0731 24.6392 15.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 32 % -0.0143 24.3664 36.5505 -Courier_New.ttf 103 ] 9.5998 43.1932 33 £ 2.0623 26.2840 33.8435 -Courier_New.ttf 103 ] 9.5998 43.1932 34 . 28.3670 8.8232 7.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 35 2 -0.5636 23.1732 36.3838 -Courier_New.ttf 103 ] 9.5998 43.1932 36 5 0.2001 23.7437 36.3838 -Courier_New.ttf 103 ] 9.5998 43.1932 37 m 10.4444 35.1594 25.6135 -Courier_New.ttf 103 ] 9.5998 43.1932 38 V 2.7238 35.1140 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 39 6 -0.7374 23.7959 36.7876 -Courier_New.ttf 103 ] 9.5998 43.1932 40 w 10.8119 32.7502 25.2097 -Courier_New.ttf 103 ] 9.5998 43.1932 41 T 2.4139 26.8590 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 42 M 2.4438 34.5367 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 43 G 2.3880 29.5621 34.4140 -Courier_New.ttf 103 ] 9.5998 43.1932 44 b 0.0955 29.8826 36.5505 -Courier_New.ttf 103 ] 9.5998 43.1932 45 9 -0.3259 22.4193 36.7876 -Courier_New.ttf 103 ] 9.5998 43.1932 46 ; 10.6474 12.8068 30.9570 -Courier_New.ttf 103 ] 9.5998 43.1932 47 D 2.3526 28.4394 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 48 L 2.3151 28.2727 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 49 y 10.8913 29.3121 36.2527 -Courier_New.ttf 103 ] 9.5998 43.1932 50 ‘ 0.0042 12.7529 17.2297 -Courier_New.ttf 103 ] 9.5998 43.1932 51 \ -3.1311 24.6392 44.3865 -Courier_New.ttf 103 ] 9.5998 43.1932 52 R 2.3339 30.7070 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 53 < 3.3328 28.0000 31.5797 -Courier_New.ttf 103 ] 9.5998 43.1932 54 4 -0.1430 22.3232 35.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 55 8 -0.3122 21.3094 36.7876 -Courier_New.ttf 103 ] 9.5998 43.1932 56 0 -0.3440 23.6959 36.7876 -Courier_New.ttf 103 ] 9.5998 43.1932 57 A 2.7238 37.1505 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 58 E 2.2045 27.3234 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 59 B 2.5320 28.4167 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 60 v 11.0530 32.1252 25.2097 -Courier_New.ttf 103 ] 9.5998 43.1932 61 k 0.1097 26.6529 35.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 62 J 2.3897 28.6766 34.1640 -Courier_New.ttf 103 ] 9.5998 43.1932 63 U 2.3897 31.3964 34.1640 -Courier_New.ttf 103 ] 9.5998 43.1932 64 j -1.3954 18.4230 48.2928 -Courier_New.ttf 103 ] 9.5998 43.1932 65 ( 0.0487 8.4065 43.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 66 7 0.2327 22.0027 35.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 67 § 0.1742 27.1696 39.8097 -Courier_New.ttf 103 ] 9.5998 43.1932 68 $ -3.1061 21.8261 44.3865 -Courier_New.ttf 103 ] 9.5998 43.1932 69 € 2.1046 31.2297 34.4140 -Courier_New.ttf 103 ] 9.5998 43.1932 70 / -3.6140 24.6392 44.3865 -Courier_New.ttf 103 ] 9.5998 43.1932 71 C 2.1008 28.2727 34.4140 -Courier_New.ttf 103 ] 9.5998 43.1932 72 * -0.0871 22.0860 21.9800 -Courier_New.ttf 103 ] 9.5998 43.1932 73 ” -0.2423 24.6392 15.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 74 ? 1.6109 21.0594 34.9406 -Courier_New.ttf 103 ] 9.5998 43.1932 75 { -0.6160 11.7324 43.3121 -Courier_New.ttf 103 ] 9.5998 43.1932 76 } -0.2962 11.7324 43.3121 -Courier_New.ttf 103 ] 9.5998 43.1932 77 , 27.2645 11.5597 17.2297 -Courier_New.ttf 103 ] 9.5998 43.1932 78 I 2.4299 22.0860 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 79 ° -6.3149 15.7638 15.7638 -Courier_New.ttf 103 ] 9.5998 43.1932 80 K 2.3032 31.2297 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 81 H 2.4593 28.4333 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 82 q 10.3839 29.1932 36.6565 -Courier_New.ttf 103 ] 9.5998 43.1932 83 & 5.5069 21.9800 31.2070 -Courier_New.ttf 103 ] 9.5998 43.1932 84 ’ 0.2400 12.7529 17.2297 -Courier_New.ttf 103 ] 9.5998 43.1932 85 [ -0.0804 9.5998 43.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 86 - 17.4018 24.8892 3.2297 -Courier_New.ttf 103 ] 9.5998 43.1932 87 Y 2.5463 29.3410 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 88 Q 1.9267 30.3865 40.7840 -Courier_New.ttf 103 ] 9.5998 43.1932 89 " -0.3042 19.6995 16.0365 -Courier_New.ttf 103 ] 9.5998 43.1932 90 ! -0.1047 6.4594 36.5505 -Courier_New.ttf 103 ] 9.5998 43.1932 91 x 10.8939 29.1932 25.2097 -Courier_New.ttf 103 ] 9.5998 43.1932 92 ) 0.0801 8.4065 43.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 93 = 13.3674 29.1932 11.3097 -Courier_New.ttf 103 ] 9.5998 43.1932 94 + 4.6730 26.8590 29.2455 -Courier_New.ttf 103 ] 9.5998 43.1932 95 X 2.1367 30.9092 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 96 » 10.4976 28.7766 26.8068 -Courier_New.ttf 103 ] 9.5998 43.1932 97 ' -0.0503 7.9027 17.2297 -Courier_New.ttf 103 ] 9.5998 43.1932 98 ¢ -2.1236 20.7867 38.0998 -Courier_New.ttf 103 ] 9.5998 43.1932 99 Z 2.1924 23.0959 33.5935 -Courier_New.ttf 103 ] 9.5998 43.1932 100 > 3.4407 28.0000 31.5797 -Courier_New.ttf 103 ] 9.5998 43.1932 101 ® 1.5582 34.7867 35.0594 -Courier_New.ttf 103 ] 9.5998 43.1932 102 © 1.5623 35.0594 34.7867 -Courier_New.ttf 103 ] 9.5998 43.1932 103 ] -0.1664 9.5998 43.1932 -Courier_New.ttf 103 ] 9.5998 43.1932 104 é -1.8327 27.4295 38.4203 -Courier_New.ttf 103 ] 9.5998 43.1932 105 z 10.8267 23.7959 25.2097 -Courier_New.ttf 103 ] 9.5998 43.1932 106 _ 50.0716 35.0594 2.3865 -Courier_New.ttf 103 ] 9.5998 43.1932 107 ¥ 2.3020 29.6744 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 1 t 3.9107 26.2362 34.6034 -Courier_New.ttf 104 é 27.4295 38.4203 2 h 1.8244 29.6326 35.9800 -Courier_New.ttf 104 é 27.4295 38.4203 3 a 12.2537 26.9256 26.1840 -Courier_New.ttf 104 é 27.4295 38.4203 4 n 12.5819 29.2061 25.6135 -Courier_New.ttf 104 é 27.4295 38.4203 5 P 4.1891 26.0529 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 6 o 12.2747 26.8068 26.1840 -Courier_New.ttf 104 é 27.4295 38.4203 7 e 12.0626 27.4295 26.1840 -Courier_New.ttf 104 é 27.4295 38.4203 8 : 12.9350 8.6565 25.7802 -Courier_New.ttf 104 é 27.4295 38.4203 9 r 12.2887 26.8295 25.6135 -Courier_New.ttf 104 é 27.4295 38.4203 10 l 1.6942 24.4725 35.9800 -Courier_New.ttf 104 é 27.4295 38.4203 11 i 0.8228 24.4725 37.2498 -Courier_New.ttf 104 é 27.4295 38.4203 12 1 0.2584 22.8527 37.5770 -Courier_New.ttf 104 é 27.4295 38.4203 13 | 1.9212 2.3865 43.1932 -Courier_New.ttf 104 é 27.4295 38.4203 14 N 4.0852 31.3964 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 15 f 1.7110 25.4696 35.9800 -Courier_New.ttf 104 é 27.4295 38.4203 16 g 12.1627 27.8462 36.6565 -Courier_New.ttf 104 é 27.4295 38.4203 17 d 1.9551 30.1138 36.5505 -Courier_New.ttf 104 é 27.4295 38.4203 18 W 4.3448 32.5836 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 19 s 12.3166 23.0959 26.1840 -Courier_New.ttf 104 é 27.4295 38.4203 20 c 12.1128 26.6529 26.1840 -Courier_New.ttf 104 é 27.4295 38.4203 21 u 12.5530 29.6326 25.7802 -Courier_New.ttf 104 é 27.4295 38.4203 22 3 1.5701 23.6959 36.7876 -Courier_New.ttf 104 é 27.4295 38.4203 23 ~ 17.0373 24.8892 8.5732 -Courier_New.ttf 104 é 27.4295 38.4203 24 # -0.6427 25.0657 42.1962 -Courier_New.ttf 104 é 27.4295 38.4203 25 O 3.8033 29.1932 34.4140 -Courier_New.ttf 104 é 27.4295 38.4203 26 ` -0.1297 9.8498 8.6565 -Courier_New.ttf 104 é 27.4295 38.4203 27 @ 0.5425 22.0800 40.4029 -Courier_New.ttf 104 é 27.4295 38.4203 28 F 4.6535 27.3234 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 29 S 4.1259 24.5392 34.4140 -Courier_New.ttf 104 é 27.4295 38.4203 30 p 12.3461 29.8826 36.6565 -Courier_New.ttf 104 é 27.4295 38.4203 31 “ 1.7802 24.6392 15.1932 -Courier_New.ttf 104 é 27.4295 38.4203 32 % 1.9322 24.3664 36.5505 -Courier_New.ttf 104 é 27.4295 38.4203 33 £ 4.0927 26.2840 33.8435 -Courier_New.ttf 104 é 27.4295 38.4203 34 . 30.5301 8.8232 7.9800 -Courier_New.ttf 104 é 27.4295 38.4203 35 2 1.7162 23.1732 36.3838 -Courier_New.ttf 104 é 27.4295 38.4203 36 5 2.0322 23.7437 36.3838 -Courier_New.ttf 104 é 27.4295 38.4203 37 m 12.0712 35.1594 25.6135 -Courier_New.ttf 104 é 27.4295 38.4203 38 V 3.8235 35.1140 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 39 6 1.5812 23.7959 36.7876 -Courier_New.ttf 104 é 27.4295 38.4203 40 w 12.6121 32.7502 25.2097 -Courier_New.ttf 104 é 27.4295 38.4203 41 T 4.4532 26.8590 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 42 M 4.1862 34.5367 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 43 G 3.8563 29.5621 34.4140 -Courier_New.ttf 104 é 27.4295 38.4203 44 b 1.7145 29.8826 36.5505 -Courier_New.ttf 104 é 27.4295 38.4203 45 9 1.5474 22.4193 36.7876 -Courier_New.ttf 104 é 27.4295 38.4203 46 ; 12.4081 12.8068 30.9570 -Courier_New.ttf 104 é 27.4295 38.4203 47 D 4.1107 28.4394 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 48 L 4.4129 28.2727 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 49 y 12.6975 29.3121 36.2527 -Courier_New.ttf 104 é 27.4295 38.4203 50 ‘ 2.0699 12.7529 17.2297 -Courier_New.ttf 104 é 27.4295 38.4203 51 \ -1.2645 24.6392 44.3865 -Courier_New.ttf 104 é 27.4295 38.4203 52 R 4.3805 30.7070 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 53 < 5.6358 28.0000 31.5797 -Courier_New.ttf 104 é 27.4295 38.4203 54 4 1.8569 22.3232 35.9800 -Courier_New.ttf 104 é 27.4295 38.4203 55 8 1.6154 21.3094 36.7876 -Courier_New.ttf 104 é 27.4295 38.4203 56 0 1.5375 23.6959 36.7876 -Courier_New.ttf 104 é 27.4295 38.4203 57 A 4.2469 37.1505 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 58 E 4.1692 27.3234 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 59 B 4.4180 28.4167 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 60 v 12.6205 32.1252 25.2097 -Courier_New.ttf 104 é 27.4295 38.4203 61 k 1.8801 26.6529 35.9800 -Courier_New.ttf 104 é 27.4295 38.4203 62 J 4.4302 28.6766 34.1640 -Courier_New.ttf 104 é 27.4295 38.4203 63 U 3.8759 31.3964 34.1640 -Courier_New.ttf 104 é 27.4295 38.4203 64 j 0.3478 18.4230 48.2928 -Courier_New.ttf 104 é 27.4295 38.4203 65 ( 1.9685 8.4065 43.1932 -Courier_New.ttf 104 é 27.4295 38.4203 66 7 1.6468 22.0027 35.9800 -Courier_New.ttf 104 é 27.4295 38.4203 67 § 2.0750 27.1696 39.8097 -Courier_New.ttf 104 é 27.4295 38.4203 68 $ -0.9637 21.8261 44.3865 -Courier_New.ttf 104 é 27.4295 38.4203 69 € 4.0776 31.2297 34.4140 -Courier_New.ttf 104 é 27.4295 38.4203 70 / -1.7566 24.6392 44.3865 -Courier_New.ttf 104 é 27.4295 38.4203 71 C 3.8192 28.2727 34.4140 -Courier_New.ttf 104 é 27.4295 38.4203 72 * 1.8443 22.0860 21.9800 -Courier_New.ttf 104 é 27.4295 38.4203 73 ” 1.9639 24.6392 15.1932 -Courier_New.ttf 104 é 27.4295 38.4203 74 ? 3.4829 21.0594 34.9406 -Courier_New.ttf 104 é 27.4295 38.4203 75 { 1.8473 11.7324 43.3121 -Courier_New.ttf 104 é 27.4295 38.4203 76 } 1.6874 11.7324 43.3121 -Courier_New.ttf 104 é 27.4295 38.4203 77 , 29.1010 11.5597 17.2297 -Courier_New.ttf 104 é 27.4295 38.4203 78 I 4.2003 22.0860 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 79 ° -4.3605 15.7638 15.7638 -Courier_New.ttf 104 é 27.4295 38.4203 80 K 4.3590 31.2297 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 81 H 4.1719 28.4333 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 82 q 12.1862 29.1932 36.6565 -Courier_New.ttf 104 é 27.4295 38.4203 83 & 7.4987 21.9800 31.2070 -Courier_New.ttf 104 é 27.4295 38.4203 84 ’ 2.0889 12.7529 17.2297 -Courier_New.ttf 104 é 27.4295 38.4203 85 [ 1.7333 9.5998 43.1932 -Courier_New.ttf 104 é 27.4295 38.4203 86 - 19.0371 24.8892 3.2297 -Courier_New.ttf 104 é 27.4295 38.4203 87 Y 4.3535 29.3410 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 88 Q 4.0942 30.3865 40.7840 -Courier_New.ttf 104 é 27.4295 38.4203 89 " 2.0857 19.6995 16.0365 -Courier_New.ttf 104 é 27.4295 38.4203 90 ! 1.7659 6.4594 36.5505 -Courier_New.ttf 104 é 27.4295 38.4203 91 x 12.9285 29.1932 25.2097 -Courier_New.ttf 104 é 27.4295 38.4203 92 ) 1.7849 8.4065 43.1932 -Courier_New.ttf 104 é 27.4295 38.4203 93 = 15.2062 29.1932 11.3097 -Courier_New.ttf 104 é 27.4295 38.4203 94 + 6.8122 26.8590 29.2455 -Courier_New.ttf 104 é 27.4295 38.4203 95 X 4.0573 30.9092 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 96 » 12.4032 29.5432 26.8068 -Courier_New.ttf 104 é 27.4295 38.4203 97 ' 1.7951 7.9027 17.2297 -Courier_New.ttf 104 é 27.4295 38.4203 98 ¢ -0.4228 20.7867 38.0998 -Courier_New.ttf 104 é 27.4295 38.4203 99 Z 4.0937 23.0959 33.5935 -Courier_New.ttf 104 é 27.4295 38.4203 100 > 5.5959 28.0000 31.5797 -Courier_New.ttf 104 é 27.4295 38.4203 101 ® 3.2042 34.7867 35.0594 -Courier_New.ttf 104 é 27.4295 38.4203 102 © 3.6088 35.0594 34.7867 -Courier_New.ttf 104 é 27.4295 38.4203 103 ] 1.4428 9.5998 43.1932 -Courier_New.ttf 104 é 27.4295 38.4203 104 é -0.1984 27.4295 38.4203 -Courier_New.ttf 104 é 27.4295 38.4203 105 z 12.9227 23.7959 25.2097 -Courier_New.ttf 104 é 27.4295 38.4203 106 _ 51.7646 35.0594 2.3865 -Courier_New.ttf 104 é 27.4295 38.4203 107 ¥ 4.5481 29.6744 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 1 t -8.9056 26.2362 34.6034 -Courier_New.ttf 105 z 23.7959 25.2097 2 h -11.1296 29.6326 35.9800 -Courier_New.ttf 105 z 23.7959 25.2097 3 a -0.6880 26.9256 26.1840 -Courier_New.ttf 105 z 23.7959 25.2097 4 n -0.6689 29.2061 25.6135 -Courier_New.ttf 105 z 23.7959 25.2097 5 P -7.9191 26.0529 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 6 o -0.5780 26.8068 26.1840 -Courier_New.ttf 105 z 23.7959 25.2097 7 e -0.4718 27.4295 26.1840 -Courier_New.ttf 105 z 23.7959 25.2097 8 : -0.0018 8.6565 25.7802 -Courier_New.ttf 105 z 23.7959 25.2097 9 r -0.6794 26.8295 25.6135 -Courier_New.ttf 105 z 23.7959 25.2097 10 l -10.8119 24.4725 35.9800 -Courier_New.ttf 105 z 23.7959 25.2097 11 i -11.8147 24.4725 37.2498 -Courier_New.ttf 105 z 23.7959 25.2097 12 1 -12.3270 22.8527 37.5770 -Courier_New.ttf 105 z 23.7959 25.2097 13 | -10.6456 2.3865 43.1932 -Courier_New.ttf 105 z 23.7959 25.2097 14 N -8.4989 31.3964 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 15 f -11.0302 25.4696 35.9800 -Courier_New.ttf 105 z 23.7959 25.2097 16 g -0.4983 27.8462 36.6565 -Courier_New.ttf 105 z 23.7959 25.2097 17 d -10.7276 30.1138 36.5505 -Courier_New.ttf 105 z 23.7959 25.2097 18 W -8.1596 32.5836 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 19 s -0.4231 23.0959 26.1840 -Courier_New.ttf 105 z 23.7959 25.2097 20 c -0.0726 26.6529 26.1840 -Courier_New.ttf 105 z 23.7959 25.2097 21 u 0.1001 29.6326 25.7802 -Courier_New.ttf 105 z 23.7959 25.2097 22 3 -11.1245 23.6959 36.7876 -Courier_New.ttf 105 z 23.7959 25.2097 23 ~ 4.2257 24.8892 8.5732 -Courier_New.ttf 105 z 23.7959 25.2097 24 # -12.9265 25.0657 42.1962 -Courier_New.ttf 105 z 23.7959 25.2097 25 O -8.8007 29.1932 34.4140 -Courier_New.ttf 105 z 23.7959 25.2097 26 ` -12.5326 9.8498 8.6565 -Courier_New.ttf 105 z 23.7959 25.2097 27 @ -11.9039 22.0800 40.4029 -Courier_New.ttf 105 z 23.7959 25.2097 28 F -8.3143 27.3234 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 29 S -8.7760 24.5392 34.4140 -Courier_New.ttf 105 z 23.7959 25.2097 30 p -0.5732 29.8826 36.6565 -Courier_New.ttf 105 z 23.7959 25.2097 31 “ -10.7689 24.6392 15.1932 -Courier_New.ttf 105 z 23.7959 25.2097 32 % -10.8671 24.3664 36.5505 -Courier_New.ttf 105 z 23.7959 25.2097 33 £ -8.9021 26.2840 33.8435 -Courier_New.ttf 105 z 23.7959 25.2097 34 . 18.0538 8.8232 7.9800 -Courier_New.ttf 105 z 23.7959 25.2097 35 2 -11.2848 23.1732 36.3838 -Courier_New.ttf 105 z 23.7959 25.2097 36 5 -10.9276 23.7437 36.3838 -Courier_New.ttf 105 z 23.7959 25.2097 37 m -0.2993 35.1594 25.6135 -Courier_New.ttf 105 z 23.7959 25.2097 38 V -8.6400 35.1140 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 39 6 -10.7970 23.7959 36.7876 -Courier_New.ttf 105 z 23.7959 25.2097 40 w -0.3054 32.7502 25.2097 -Courier_New.ttf 105 z 23.7959 25.2097 41 T -8.2804 26.8590 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 42 M -8.4060 34.5367 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 43 G -8.6890 29.5621 34.4140 -Courier_New.ttf 105 z 23.7959 25.2097 44 b -10.9491 29.8826 36.5505 -Courier_New.ttf 105 z 23.7959 25.2097 45 9 -11.2583 22.4193 36.7876 -Courier_New.ttf 105 z 23.7959 25.2097 46 ; -0.2438 12.8068 30.9570 -Courier_New.ttf 105 z 23.7959 25.2097 47 D -8.5395 28.4394 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 48 L -8.6595 28.2727 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 49 y -0.0060 29.3121 36.2527 -Courier_New.ttf 105 z 23.7959 25.2097 50 ‘ -10.5974 12.7529 17.2297 -Courier_New.ttf 105 z 23.7959 25.2097 51 \ -13.9774 24.6392 44.3865 -Courier_New.ttf 105 z 23.7959 25.2097 52 R -8.4664 30.7070 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 53 < -7.5947 28.0000 31.5797 -Courier_New.ttf 105 z 23.7959 25.2097 54 4 -10.8477 22.3232 35.9800 -Courier_New.ttf 105 z 23.7959 25.2097 55 8 -11.1150 21.3094 36.7876 -Courier_New.ttf 105 z 23.7959 25.2097 56 0 -10.7952 23.6959 36.7876 -Courier_New.ttf 105 z 23.7959 25.2097 57 A -8.0158 37.1505 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 58 E -8.5584 27.3234 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 59 B -8.2485 28.4167 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 60 v 0.1456 32.1252 25.2097 -Courier_New.ttf 105 z 23.7959 25.2097 61 k -10.7619 26.6529 35.9800 -Courier_New.ttf 105 z 23.7959 25.2097 62 J -8.4622 28.6766 34.1640 -Courier_New.ttf 105 z 23.7959 25.2097 63 U -8.0584 31.3964 34.1640 -Courier_New.ttf 105 z 23.7959 25.2097 64 j -11.7367 18.4230 48.2928 -Courier_New.ttf 105 z 23.7959 25.2097 65 ( -10.9529 8.4065 43.1932 -Courier_New.ttf 105 z 23.7959 25.2097 66 7 -10.6601 22.0027 35.9800 -Courier_New.ttf 105 z 23.7959 25.2097 67 § -10.8445 27.1696 39.8097 -Courier_New.ttf 105 z 23.7959 25.2097 68 $ -13.5877 21.8261 44.3865 -Courier_New.ttf 105 z 23.7959 25.2097 69 € -8.6925 31.2297 34.4140 -Courier_New.ttf 105 z 23.7959 25.2097 70 / -14.7162 24.6392 44.3865 -Courier_New.ttf 105 z 23.7959 25.2097 71 C -8.4980 28.2727 34.4140 -Courier_New.ttf 105 z 23.7959 25.2097 72 * -10.7636 22.0860 21.9800 -Courier_New.ttf 105 z 23.7959 25.2097 73 ” -10.7131 24.6392 15.1932 -Courier_New.ttf 105 z 23.7959 25.2097 74 ? -9.3042 21.0594 34.9406 -Courier_New.ttf 105 z 23.7959 25.2097 75 { -11.3196 11.7324 43.3121 -Courier_New.ttf 105 z 23.7959 25.2097 76 } -10.8813 11.7324 43.3121 -Courier_New.ttf 105 z 23.7959 25.2097 77 , 16.4648 11.5597 17.2297 -Courier_New.ttf 105 z 23.7959 25.2097 78 I -8.4092 22.0860 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 79 ° -17.3405 15.7638 15.7638 -Courier_New.ttf 105 z 23.7959 25.2097 80 K -8.3625 31.2297 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 81 H -8.4472 28.4333 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 82 q -0.5984 29.1932 36.6565 -Courier_New.ttf 105 z 23.7959 25.2097 83 & -5.3613 21.9800 31.2070 -Courier_New.ttf 105 z 23.7959 25.2097 84 ’ -10.9757 12.7529 17.2297 -Courier_New.ttf 105 z 23.7959 25.2097 85 [ -10.9001 9.5998 43.1932 -Courier_New.ttf 105 z 23.7959 25.2097 86 - 6.6566 24.8892 3.2297 -Courier_New.ttf 105 z 23.7959 25.2097 87 Y -8.5007 29.3410 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 88 Q -8.8580 30.3865 40.7840 -Courier_New.ttf 105 z 23.7959 25.2097 89 " -11.1228 19.6995 16.0365 -Courier_New.ttf 105 z 23.7959 25.2097 90 ! -11.0719 6.4594 36.5505 -Courier_New.ttf 105 z 23.7959 25.2097 91 x -0.0479 29.1932 25.2097 -Courier_New.ttf 105 z 23.7959 25.2097 92 ) -10.5534 8.4065 43.1932 -Courier_New.ttf 105 z 23.7959 25.2097 93 = 2.9076 29.1932 11.3097 -Courier_New.ttf 105 z 23.7959 25.2097 94 + -5.8867 26.8590 29.2455 -Courier_New.ttf 105 z 23.7959 25.2097 95 X -8.3230 30.9092 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 96 » -0.5470 29.5432 26.8068 -Courier_New.ttf 105 z 23.7959 25.2097 97 ' -10.8780 7.9027 17.2297 -Courier_New.ttf 105 z 23.7959 25.2097 98 ¢ -12.7784 20.7867 38.0998 -Courier_New.ttf 105 z 23.7959 25.2097 99 Z -8.2175 23.0959 33.5935 -Courier_New.ttf 105 z 23.7959 25.2097 100 > -7.3017 28.0000 31.5797 -Courier_New.ttf 105 z 23.7959 25.2097 101 ® -9.4136 34.7867 35.0594 -Courier_New.ttf 105 z 23.7959 25.2097 102 © -8.6738 35.0594 34.7867 -Courier_New.ttf 105 z 23.7959 25.2097 103 ] -10.8942 9.5998 43.1932 -Courier_New.ttf 105 z 23.7959 25.2097 104 é -12.4847 27.4295 38.4203 -Courier_New.ttf 105 z 23.7959 25.2097 105 z 0.2253 23.7959 25.2097 -Courier_New.ttf 105 z 23.7959 25.2097 106 _ 39.3937 35.0594 2.3865 -Courier_New.ttf 105 z 23.7959 25.2097 107 ¥ -8.5377 29.6744 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 1 t -47.8404 26.2362 34.6034 -Courier_New.ttf 106 _ 35.0594 2.3865 2 h -49.9727 29.6326 35.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 3 a -39.8361 26.9256 26.1840 -Courier_New.ttf 106 _ 35.0594 2.3865 4 n -39.5393 29.2061 25.6135 -Courier_New.ttf 106 _ 35.0594 2.3865 5 P -47.5930 26.0529 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 6 o -39.3879 26.8068 26.1840 -Courier_New.ttf 106 _ 35.0594 2.3865 7 e -39.9081 27.4295 26.1840 -Courier_New.ttf 106 _ 35.0594 2.3865 8 : -38.9809 8.6565 25.7802 -Courier_New.ttf 106 _ 35.0594 2.3865 9 r -39.4621 26.8295 25.6135 -Courier_New.ttf 106 _ 35.0594 2.3865 10 l -49.8245 24.4725 35.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 11 i -51.4954 24.4725 37.2498 -Courier_New.ttf 106 _ 35.0594 2.3865 12 1 -51.3665 22.8527 37.5770 -Courier_New.ttf 106 _ 35.0594 2.3865 13 | -49.8740 2.3865 43.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 14 N -47.4813 31.3964 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 15 f -50.0671 25.4696 35.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 16 g -39.4324 27.8462 36.6565 -Courier_New.ttf 106 _ 35.0594 2.3865 17 d -49.6949 30.1138 36.5505 -Courier_New.ttf 106 _ 35.0594 2.3865 18 W -47.4822 32.5836 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 19 s -39.7047 23.0959 26.1840 -Courier_New.ttf 106 _ 35.0594 2.3865 20 c -39.8608 26.6529 26.1840 -Courier_New.ttf 106 _ 35.0594 2.3865 21 u -39.3599 29.6326 25.7802 -Courier_New.ttf 106 _ 35.0594 2.3865 22 3 -50.7158 23.6959 36.7876 -Courier_New.ttf 106 _ 35.0594 2.3865 23 ~ -35.2323 24.8892 8.5732 -Courier_New.ttf 106 _ 35.0594 2.3865 24 # -52.6186 25.0657 42.1962 -Courier_New.ttf 106 _ 35.0594 2.3865 25 O -47.6633 29.1932 34.4140 -Courier_New.ttf 106 _ 35.0594 2.3865 26 ` -51.8901 9.8498 8.6565 -Courier_New.ttf 106 _ 35.0594 2.3865 27 @ -51.3047 22.0800 40.4029 -Courier_New.ttf 106 _ 35.0594 2.3865 28 F -47.5827 27.3234 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 29 S -47.9949 24.5392 34.4140 -Courier_New.ttf 106 _ 35.0594 2.3865 30 p -39.7734 29.8826 36.6565 -Courier_New.ttf 106 _ 35.0594 2.3865 31 “ -49.8512 24.6392 15.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 32 % -49.9526 24.3664 36.5505 -Courier_New.ttf 106 _ 35.0594 2.3865 33 £ -48.0827 26.2840 33.8435 -Courier_New.ttf 106 _ 35.0594 2.3865 34 . -21.4187 8.8232 7.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 35 2 -50.4793 23.1732 36.3838 -Courier_New.ttf 106 _ 35.0594 2.3865 36 5 -49.9748 23.7437 36.3838 -Courier_New.ttf 106 _ 35.0594 2.3865 37 m -39.4205 35.1594 25.6135 -Courier_New.ttf 106 _ 35.0594 2.3865 38 V -47.6541 35.1140 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 39 6 -50.4572 23.7959 36.7876 -Courier_New.ttf 106 _ 35.0594 2.3865 40 w -39.1811 32.7502 25.2097 -Courier_New.ttf 106 _ 35.0594 2.3865 41 T -47.4823 26.8590 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 42 M -47.9661 34.5367 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 43 G -47.1643 29.5621 34.4140 -Courier_New.ttf 106 _ 35.0594 2.3865 44 b -49.8231 29.8826 36.5505 -Courier_New.ttf 106 _ 35.0594 2.3865 45 9 -50.1604 22.4193 36.7876 -Courier_New.ttf 106 _ 35.0594 2.3865 46 ; -39.3149 12.8068 30.9570 -Courier_New.ttf 106 _ 35.0594 2.3865 47 D -48.0115 28.4394 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 48 L -47.8165 28.2727 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 49 y -39.6393 29.3121 36.2527 -Courier_New.ttf 106 _ 35.0594 2.3865 50 ‘ -50.1069 12.7529 17.2297 -Courier_New.ttf 106 _ 35.0594 2.3865 51 \ -53.2455 24.6392 44.3865 -Courier_New.ttf 106 _ 35.0594 2.3865 52 R -47.6394 30.7070 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 53 < -46.3488 28.0000 31.5797 -Courier_New.ttf 106 _ 35.0594 2.3865 54 4 -49.4524 22.3232 35.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 55 8 -50.2942 21.3094 36.7876 -Courier_New.ttf 106 _ 35.0594 2.3865 56 0 -50.3935 23.6959 36.7876 -Courier_New.ttf 106 _ 35.0594 2.3865 57 A -47.2621 37.1505 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 58 E -47.4767 27.3234 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 59 B -47.4666 28.4167 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 60 v -39.4507 32.1252 25.2097 -Courier_New.ttf 106 _ 35.0594 2.3865 61 k -50.0262 26.6529 35.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 62 J -47.9244 28.6766 34.1640 -Courier_New.ttf 106 _ 35.0594 2.3865 63 U -47.6175 31.3964 34.1640 -Courier_New.ttf 106 _ 35.0594 2.3865 64 j -51.2054 18.4230 48.2928 -Courier_New.ttf 106 _ 35.0594 2.3865 65 ( -49.7448 8.4065 43.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 66 7 -49.8284 22.0027 35.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 67 § -50.0503 27.1696 39.8097 -Courier_New.ttf 106 _ 35.0594 2.3865 68 $ -52.7145 21.8261 44.3865 -Courier_New.ttf 106 _ 35.0594 2.3865 69 € -48.0619 31.2297 34.4140 -Courier_New.ttf 106 _ 35.0594 2.3865 70 / -53.9164 24.6392 44.3865 -Courier_New.ttf 106 _ 35.0594 2.3865 71 C -48.0391 28.2727 34.4140 -Courier_New.ttf 106 _ 35.0594 2.3865 72 * -49.9483 22.0860 21.9800 -Courier_New.ttf 106 _ 35.0594 2.3865 73 ” -49.7759 24.6392 15.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 74 ? -48.5216 21.0594 34.9406 -Courier_New.ttf 106 _ 35.0594 2.3865 75 { -50.4899 11.7324 43.3121 -Courier_New.ttf 106 _ 35.0594 2.3865 76 } -50.2592 11.7324 43.3121 -Courier_New.ttf 106 _ 35.0594 2.3865 77 , -22.5537 11.5597 17.2297 -Courier_New.ttf 106 _ 35.0594 2.3865 78 I -47.5518 22.0860 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 79 ° -56.3889 15.7638 15.7638 -Courier_New.ttf 106 _ 35.0594 2.3865 80 K -47.6933 31.2297 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 81 H -47.2835 28.4333 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 82 q -39.4509 29.1932 36.6565 -Courier_New.ttf 106 _ 35.0594 2.3865 83 & -44.9458 21.9800 31.2070 -Courier_New.ttf 106 _ 35.0594 2.3865 84 ’ -50.0566 12.7529 17.2297 -Courier_New.ttf 106 _ 35.0594 2.3865 85 [ -49.9823 9.5998 43.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 86 - -32.6630 24.8892 3.2297 -Courier_New.ttf 106 _ 35.0594 2.3865 87 Y -47.5578 29.3410 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 88 Q -47.5478 30.3865 40.7840 -Courier_New.ttf 106 _ 35.0594 2.3865 89 " -50.1029 19.6995 16.0365 -Courier_New.ttf 106 _ 35.0594 2.3865 90 ! -50.0327 6.4594 36.5505 -Courier_New.ttf 106 _ 35.0594 2.3865 91 x -39.2285 29.1932 25.2097 -Courier_New.ttf 106 _ 35.0594 2.3865 92 ) -50.4182 8.4065 43.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 93 = -36.7519 29.1932 11.3097 -Courier_New.ttf 106 _ 35.0594 2.3865 94 + -45.1223 26.8590 29.2455 -Courier_New.ttf 106 _ 35.0594 2.3865 95 X -47.4331 30.9092 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 96 » -39.8961 28.7766 26.8068 -Courier_New.ttf 106 _ 35.0594 2.3865 97 ' -49.9706 7.9027 17.2297 -Courier_New.ttf 106 _ 35.0594 2.3865 98 ¢ -52.3454 20.7867 38.0998 -Courier_New.ttf 106 _ 35.0594 2.3865 99 Z -47.3990 23.0959 33.5935 -Courier_New.ttf 106 _ 35.0594 2.3865 100 > -46.1701 28.0000 31.5797 -Courier_New.ttf 106 _ 35.0594 2.3865 101 ® -48.4122 34.7867 35.0594 -Courier_New.ttf 106 _ 35.0594 2.3865 102 © -48.3189 35.0594 34.7867 -Courier_New.ttf 106 _ 35.0594 2.3865 103 ] -49.9641 9.5998 43.1932 -Courier_New.ttf 106 _ 35.0594 2.3865 104 é -51.8719 27.4295 38.4203 -Courier_New.ttf 106 _ 35.0594 2.3865 105 z -39.1291 23.7959 25.2097 -Courier_New.ttf 106 _ 35.0594 2.3865 106 _ -0.0406 35.0594 2.3865 -Courier_New.ttf 106 _ 35.0594 2.3865 107 ¥ -47.4929 29.6744 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 1 t -0.5023 26.2362 34.6034 -Courier_New.ttf 107 ¥ 29.6744 33.5935 2 h -1.7300 29.6326 35.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 3 a 7.8800 26.9256 26.1840 -Courier_New.ttf 107 ¥ 29.6744 33.5935 4 n 8.0951 29.2061 25.6135 -Courier_New.ttf 107 ¥ 29.6744 33.5935 5 P -0.1385 26.0529 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 6 o 7.9202 26.8068 26.1840 -Courier_New.ttf 107 ¥ 29.6744 33.5935 7 e 8.0671 27.4295 26.1840 -Courier_New.ttf 107 ¥ 29.6744 33.5935 8 : 8.6002 8.6565 25.7802 -Courier_New.ttf 107 ¥ 29.6744 33.5935 9 r 7.9343 26.8295 25.6135 -Courier_New.ttf 107 ¥ 29.6744 33.5935 10 l -2.2840 24.4725 35.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 11 i -3.9138 24.4725 37.2498 -Courier_New.ttf 107 ¥ 29.6744 33.5935 12 1 -4.1447 22.8527 37.5770 -Courier_New.ttf 107 ¥ 29.6744 33.5935 13 | -2.1863 2.3865 43.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 14 N 0.1721 31.3964 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 15 f -2.6357 25.4696 35.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 16 g 7.7117 27.8462 36.6565 -Courier_New.ttf 107 ¥ 29.6744 33.5935 17 d -2.3865 30.1138 36.5505 -Courier_New.ttf 107 ¥ 29.6744 33.5935 18 W -0.0552 32.5836 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 19 s 7.6754 23.0959 26.1840 -Courier_New.ttf 107 ¥ 29.6744 33.5935 20 c 8.0762 26.6529 26.1840 -Courier_New.ttf 107 ¥ 29.6744 33.5935 21 u 8.2967 29.6326 25.7802 -Courier_New.ttf 107 ¥ 29.6744 33.5935 22 3 -2.9445 23.6959 36.7876 -Courier_New.ttf 107 ¥ 29.6744 33.5935 23 ~ 12.6348 24.8892 8.5732 -Courier_New.ttf 107 ¥ 29.6744 33.5935 24 # -4.9244 25.0657 42.1962 -Courier_New.ttf 107 ¥ 29.6744 33.5935 25 O -0.1286 29.1932 34.4140 -Courier_New.ttf 107 ¥ 29.6744 33.5935 26 ` -4.3031 9.8498 8.6565 -Courier_New.ttf 107 ¥ 29.6744 33.5935 27 @ -4.0625 22.0800 40.4029 -Courier_New.ttf 107 ¥ 29.6744 33.5935 28 F 0.0570 27.3234 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 29 S -0.4161 24.5392 34.4140 -Courier_New.ttf 107 ¥ 29.6744 33.5935 30 p 7.8285 29.8826 36.6565 -Courier_New.ttf 107 ¥ 29.6744 33.5935 31 “ -2.4417 24.6392 15.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 32 % -2.0852 24.3664 36.5505 -Courier_New.ttf 107 ¥ 29.6744 33.5935 33 £ -0.1786 26.2840 33.8435 -Courier_New.ttf 107 ¥ 29.6744 33.5935 34 . 26.0682 8.8232 7.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 35 2 -3.0425 23.1732 36.3838 -Courier_New.ttf 107 ¥ 29.6744 33.5935 36 5 -2.4321 23.7437 36.3838 -Courier_New.ttf 107 ¥ 29.6744 33.5935 37 m 8.0619 35.1594 25.6135 -Courier_New.ttf 107 ¥ 29.6744 33.5935 38 V 0.0228 35.1140 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 39 6 -2.9051 23.7959 36.7876 -Courier_New.ttf 107 ¥ 29.6744 33.5935 40 w 8.6557 32.7502 25.2097 -Courier_New.ttf 107 ¥ 29.6744 33.5935 41 T -0.0798 26.8590 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 42 M 0.4212 34.5367 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 43 G -0.3371 29.5621 34.4140 -Courier_New.ttf 107 ¥ 29.6744 33.5935 44 b -2.5490 29.8826 36.5505 -Courier_New.ttf 107 ¥ 29.6744 33.5935 45 9 -2.8607 22.4193 36.7876 -Courier_New.ttf 107 ¥ 29.6744 33.5935 46 ; 8.4996 12.8068 30.9570 -Courier_New.ttf 107 ¥ 29.6744 33.5935 47 D 0.4092 28.4394 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 48 L -0.0570 28.2727 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 49 y 8.1388 29.3121 36.2527 -Courier_New.ttf 107 ¥ 29.6744 33.5935 50 ‘ -1.9722 12.7529 17.2297 -Courier_New.ttf 107 ¥ 29.6744 33.5935 51 \ -5.8503 24.6392 44.3865 -Courier_New.ttf 107 ¥ 29.6744 33.5935 52 R -0.3030 30.7070 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 53 < 1.2517 28.0000 31.5797 -Courier_New.ttf 107 ¥ 29.6744 33.5935 54 4 -2.2337 22.3232 35.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 55 8 -2.6441 21.3094 36.7876 -Courier_New.ttf 107 ¥ 29.6744 33.5935 56 0 -2.7630 23.6959 36.7876 -Courier_New.ttf 107 ¥ 29.6744 33.5935 57 A -0.0631 37.1505 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 58 E -0.0333 27.3234 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 59 B -0.2058 28.4167 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 60 v 8.7080 32.1252 25.2097 -Courier_New.ttf 107 ¥ 29.6744 33.5935 61 k -2.6107 26.6529 35.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 62 J -0.1632 28.6766 34.1640 -Courier_New.ttf 107 ¥ 29.6744 33.5935 63 U 0.2062 31.3964 34.1640 -Courier_New.ttf 107 ¥ 29.6744 33.5935 64 j -3.6063 18.4230 48.2928 -Courier_New.ttf 107 ¥ 29.6744 33.5935 65 ( -2.1835 8.4065 43.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 66 7 -2.4403 22.0027 35.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 67 § -2.4333 27.1696 39.8097 -Courier_New.ttf 107 ¥ 29.6744 33.5935 68 $ -5.6349 21.8261 44.3865 -Courier_New.ttf 107 ¥ 29.6744 33.5935 69 € -0.2246 31.2297 34.4140 -Courier_New.ttf 107 ¥ 29.6744 33.5935 70 / -5.9977 24.6392 44.3865 -Courier_New.ttf 107 ¥ 29.6744 33.5935 71 C -0.1685 28.2727 34.4140 -Courier_New.ttf 107 ¥ 29.6744 33.5935 72 * -2.0642 22.0860 21.9800 -Courier_New.ttf 107 ¥ 29.6744 33.5935 73 ” -2.2706 24.6392 15.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 74 ? -0.9143 21.0594 34.9406 -Courier_New.ttf 107 ¥ 29.6744 33.5935 75 { -2.7037 11.7324 43.3121 -Courier_New.ttf 107 ¥ 29.6744 33.5935 76 } -2.4266 11.7324 43.3121 -Courier_New.ttf 107 ¥ 29.6744 33.5935 77 , 24.8130 11.5597 17.2297 -Courier_New.ttf 107 ¥ 29.6744 33.5935 78 I -0.0222 22.0860 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 79 ° -8.9696 15.7638 15.7638 -Courier_New.ttf 107 ¥ 29.6744 33.5935 80 K 0.2100 31.2297 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 81 H -0.1090 28.4333 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 82 q 8.0800 29.1932 36.6565 -Courier_New.ttf 107 ¥ 29.6744 33.5935 83 & 2.9592 21.9800 31.2070 -Courier_New.ttf 107 ¥ 29.6744 33.5935 84 ’ -2.3805 12.7529 17.2297 -Courier_New.ttf 107 ¥ 29.6744 33.5935 85 [ -2.5978 9.5998 43.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 86 - 15.2346 24.8892 3.2297 -Courier_New.ttf 107 ¥ 29.6744 33.5935 87 Y 0.0000 29.3410 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 88 Q -0.0861 30.3865 40.7840 -Courier_New.ttf 107 ¥ 29.6744 33.5935 89 " -2.6825 19.6995 16.0365 -Courier_New.ttf 107 ¥ 29.6744 33.5935 90 ! -2.5593 6.4594 36.5505 -Courier_New.ttf 107 ¥ 29.6744 33.5935 91 x 8.2943 29.1932 25.2097 -Courier_New.ttf 107 ¥ 29.6744 33.5935 92 ) -2.5009 8.4065 43.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 93 = 10.7128 29.1932 11.3097 -Courier_New.ttf 107 ¥ 29.6744 33.5935 94 + 2.5116 26.8590 29.2455 -Courier_New.ttf 107 ¥ 29.6744 33.5935 95 X -0.0124 30.9092 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 96 » 8.1157 28.7766 26.8068 -Courier_New.ttf 107 ¥ 29.6744 33.5935 97 ' -2.7517 7.9027 17.2297 -Courier_New.ttf 107 ¥ 29.6744 33.5935 98 ¢ -4.4636 20.7867 38.0998 -Courier_New.ttf 107 ¥ 29.6744 33.5935 99 Z 0.0948 23.0959 33.5935 -Courier_New.ttf 107 ¥ 29.6744 33.5935 100 > 1.1361 28.0000 31.5797 -Courier_New.ttf 107 ¥ 29.6744 33.5935 101 ® -1.1477 34.7867 35.0594 -Courier_New.ttf 107 ¥ 29.6744 33.5935 102 © -0.3471 35.0594 34.7867 -Courier_New.ttf 107 ¥ 29.6744 33.5935 103 ] -1.8843 9.5998 43.1932 -Courier_New.ttf 107 ¥ 29.6744 33.5935 104 é -3.9774 27.4295 38.4203 -Courier_New.ttf 107 ¥ 29.6744 33.5935 105 z 8.2596 23.7959 25.2097 -Courier_New.ttf 107 ¥ 29.6744 33.5935 106 _ 47.6722 35.0594 2.3865 -Courier_New.ttf 107 ¥ 29.6744 33.5935 107 ¥ -0.1599 29.6744 33.5935 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 1 t 0.0634 29.3297 34.9636 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 2 h -1.6184 33.1226 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 3 a 8.3064 31.0352 26.4703 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 4 n 8.3611 31.9747 25.7043 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 5 P 0.4363 30.2957 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 6 o 8.6261 29.8457 26.4703 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 7 e 8.2198 30.7275 26.4703 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 8 : 8.8030 8.8509 25.1466 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 9 r 8.4292 30.0874 25.7043 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 10 l -1.6359 27.0256 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 11 i -1.3802 27.0256 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 12 1 -2.3536 24.7300 36.4608 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 13 | -1.9919 5.1491 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 14 N 0.2820 35.4864 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 15 f -1.7922 30.2957 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 16 g 8.7819 32.8149 36.6426 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 17 d -2.0985 33.9892 36.6691 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 18 W 0.4029 38.6293 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 19 s 8.3029 26.2679 26.4703 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 20 c 8.6620 29.6062 26.4703 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 21 u 8.8808 33.1226 25.9126 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 22 3 -2.4263 26.9346 37.0185 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 23 ~ 11.6123 27.6923 12.0861 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 24 # -6.0544 26.8256 41.5515 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 25 O 0.2303 32.6414 34.6234 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 26 ` -4.4559 11.1466 9.3586 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 27 @ -1.8284 21.9941 40.6703 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 28 F 0.5622 31.2852 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 29 S 0.0987 27.1846 34.6234 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 30 p 8.5887 34.2969 36.6426 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 31 “ 0.2952 23.8481 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 32 % -1.7765 26.0861 36.6691 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 33 £ 0.1149 29.3797 33.8574 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 34 . 27.2356 8.8509 7.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 35 2 -2.2409 26.5445 36.4608 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 36 5 -1.8121 27.0340 36.4608 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 37 m 8.5932 37.7404 25.7043 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 38 V 0.3215 38.4306 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 39 6 -2.4154 25.4543 37.0185 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 40 w 9.0955 33.3756 25.1466 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 41 T 0.6614 29.3213 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 42 M 0.3931 38.3481 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 43 G 0.1418 32.4596 34.6234 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 44 b -1.7959 34.2969 36.6691 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 45 9 -2.2952 25.4543 37.0185 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 46 ; 9.0977 14.2083 31.9019 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 47 D 0.5275 31.6670 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 48 L 0.9192 31.4253 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 49 y 9.0722 35.2713 36.0849 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 50 ‘ 0.6302 11.4543 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 51 \ -6.7772 25.9043 47.8074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 52 R 0.5689 34.9552 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 53 < 0.7217 33.3574 33.3392 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 54 4 -1.5818 25.2460 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 55 8 -2.3170 25.5784 37.0185 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 56 0 -2.1118 25.5784 37.0185 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 57 A 0.6671 38.2648 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 58 E 0.7028 30.3867 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 59 B 0.6210 32.8991 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 60 v 8.9049 35.0559 25.1466 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 61 k -2.0620 30.6450 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 62 J 0.7643 32.1830 34.3734 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 63 U 0.7134 34.9371 34.3734 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 64 j -1.7083 21.4448 46.8414 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 65 ( -1.5356 12.8522 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 66 7 -1.5030 24.9383 35.9031 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 67 § -1.7537 29.7880 41.0522 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 68 $ -6.0184 25.1466 47.5392 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 69 € 0.5227 32.2596 34.6234 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 70 / -6.9027 25.1466 47.8074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 71 C 0.2008 30.3457 34.6234 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 72 * -1.7166 23.8663 24.9466 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 73 ” 0.5885 23.8481 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 74 ? 0.2486 23.4828 34.6234 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 75 { -1.6548 14.7395 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 76 } -1.6570 14.7395 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 77 , 26.2102 11.4543 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 78 I 0.3394 24.7300 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 79 ° -7.8667 16.4380 16.4380 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 80 K 0.3872 34.4476 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 81 H 0.8047 30.7457 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 82 q 8.7223 33.9892 36.6426 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 83 & 1.5169 26.8522 33.1574 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 84 ’ 0.4657 11.4543 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 85 [ -1.7122 12.8438 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 86 - 15.1565 24.9383 5.1491 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 87 Y 0.7111 32.1337 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 88 Q 0.2474 32.6414 42.0682 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 89 " 0.6514 20.7160 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 90 ! -2.0510 9.3586 36.6691 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 91 x 9.0509 32.6414 25.1466 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 92 ) -1.8242 12.8522 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 93 = 10.3816 32.6414 14.9395 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 94 + 3.1646 29.3213 29.3213 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 95 X 0.9716 35.2448 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 96 » 11.2548 28.6895 23.2328 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 97 ' 0.8126 8.0373 17.2435 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 98 ¢ -6.2497 24.4306 43.2055 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 99 Z 0.7699 26.2945 33.6074 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 100 > 0.6895 33.3574 33.3392 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 101 ® 0.6012 34.9371 34.3734 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 102 © 0.7770 34.9371 34.3734 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 103 ] -1.6503 12.8438 43.1478 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 104 é -4.4020 30.7275 39.2725 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 105 z 9.0218 25.4543 25.1466 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 106 _ 46.5689 40.0861 5.1491 -Courier_New_Bold.ttf 1 t 29.3297 34.9636 107 ¥ 0.6879 31.2700 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 1 t 1.8543 29.3297 34.9636 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 2 h -0.4220 33.1226 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 3 a 10.0379 31.0352 26.4703 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 4 n 10.2904 31.9747 25.7043 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 5 P 2.2340 30.2957 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 6 o 10.2757 29.8457 26.4703 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 7 e 10.2827 30.7275 26.4703 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 8 : 10.7551 8.8509 25.1466 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 9 r 10.1273 30.0874 25.7043 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 10 l 0.3464 27.0256 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 11 i 0.0500 27.0256 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 12 1 -0.6802 24.7300 36.4608 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 13 | -0.3285 5.1491 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 14 N 2.2243 35.4864 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 15 f 0.2409 30.2957 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 16 g 10.1191 32.8149 36.6426 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 17 d 0.0060 33.9892 36.6691 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 18 W 2.4570 38.6293 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 19 s 10.1784 26.2679 26.4703 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 20 c 10.4087 29.6062 26.4703 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 21 u 10.5795 33.1226 25.9126 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 22 3 -0.6421 26.9346 37.0185 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 23 ~ 13.3100 27.6923 12.0861 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 24 # -4.3104 26.8256 41.5515 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 25 O 2.0001 32.6414 34.6234 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 26 ` -2.6006 11.1466 9.3586 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 27 @ 0.1484 21.9941 40.6703 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 28 F 2.2243 31.2852 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 29 S 2.0457 27.1846 34.6234 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 30 p 10.2248 34.2969 36.6426 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 31 “ 2.1020 23.8481 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 32 % 0.0400 26.0861 36.6691 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 33 £ 1.9376 29.3797 33.8574 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 34 . 28.5520 8.8509 7.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 35 2 -0.6390 26.5445 36.4608 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 36 5 0.1581 27.0340 36.4608 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 37 m 10.1956 37.7404 25.7043 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 38 V 2.3341 38.4306 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 39 6 -0.9326 25.4543 37.0185 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 40 w 10.4854 33.3756 25.1466 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 41 T 2.2688 29.3213 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 42 M 2.0261 38.3481 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 43 G 2.1016 32.4596 34.6234 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 44 b -0.0055 34.2969 36.6691 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 45 9 -0.3771 25.4543 37.0185 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 46 ; 10.8932 14.2083 31.9019 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 47 D 2.3773 31.6670 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 48 L 2.2664 31.4253 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 49 y 10.8691 35.2713 36.0849 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 50 ‘ 2.2333 11.4543 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 51 \ -4.9822 25.9043 47.8074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 52 R 2.0756 34.9552 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 53 < 2.2953 33.3574 33.3392 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 54 4 0.0476 25.2460 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 55 8 -0.3853 25.5784 37.0185 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 56 0 -0.3709 25.5784 37.0185 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 57 A 2.3341 38.2648 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 58 E 2.1460 30.3867 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 59 B 2.3863 32.8991 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 60 v 10.6768 35.0559 25.1466 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 61 k 0.1871 30.6450 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 62 J 2.2934 32.1830 34.3734 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 63 U 2.2530 34.9371 34.3734 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 64 j 0.0330 21.4448 46.8414 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 65 ( -0.2075 12.8522 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 66 7 -0.1197 24.9383 35.9031 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 67 § -0.0357 29.7880 41.0522 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 68 $ -3.9847 25.1466 47.5392 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 69 € 1.9814 32.2596 34.6234 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 70 / -4.8311 25.1466 47.8074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 71 C 2.0001 30.3457 34.6234 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 72 * 0.0188 23.8663 24.9466 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 73 ” 2.1008 23.8481 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 74 ? 2.4294 23.4828 34.6234 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 75 { -0.1819 14.7395 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 76 } -0.1528 14.7395 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 77 , 27.7938 11.4543 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 78 I 2.4538 24.7300 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 79 ° -6.3029 16.4380 16.4380 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 80 K 2.3531 34.4476 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 81 H 2.2086 30.7457 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 82 q 10.3930 33.9892 36.6426 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 83 & 3.5660 26.8522 33.1574 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 84 ’ 2.2083 11.4543 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 85 [ -0.0784 12.8438 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 86 - 16.8237 24.9383 5.1491 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 87 Y 2.4454 32.1337 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 88 Q 1.8015 32.6414 42.0682 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 89 " 2.2713 20.7160 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 90 ! -0.2662 9.3586 36.6691 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 91 x 10.6109 32.6414 25.1466 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 92 ) -0.0887 12.8522 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 93 = 12.1218 32.6414 14.9395 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 94 + 4.7861 29.3213 29.3213 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 95 X 2.2540 35.2448 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 96 » 12.6638 28.6895 23.2328 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 97 ' 2.6298 8.0373 17.2435 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 98 ¢ -4.6270 24.4306 43.2055 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 99 Z 2.1892 26.2945 33.6074 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 100 > 2.2954 33.3574 33.3392 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 101 ® 2.4888 34.9371 34.3734 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 102 © 2.1803 34.9371 34.3734 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 103 ] -0.2475 12.8438 43.1478 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 104 é -2.5677 30.7275 39.2725 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 105 z 10.9465 25.4543 25.1466 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 106 _ 48.4848 40.0861 5.1491 -Courier_New_Bold.ttf 2 h 33.1226 35.9031 107 ¥ 2.6834 31.2700 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 1 t -8.7513 29.3297 34.9636 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 2 h -10.2345 33.1226 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 3 a 0.0360 31.0352 26.4703 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 4 n -0.0821 31.9747 25.7043 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 5 P -7.7573 30.2957 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 6 o 0.2849 29.8457 26.4703 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 7 e 0.1631 30.7275 26.4703 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 8 : 0.3038 8.8509 25.1466 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 9 r -0.0777 30.0874 25.7043 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 10 l -10.2459 27.0256 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 11 i -10.2163 27.0256 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 12 1 -10.9492 24.7300 36.4608 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 13 | -10.1889 5.1491 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 14 N -7.7979 35.4864 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 15 f -10.3325 30.2957 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 16 g -0.1143 32.8149 36.6426 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 17 d -10.0050 33.9892 36.6691 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 18 W -7.9006 38.6293 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 19 s -0.1125 26.2679 26.4703 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 20 c -0.2771 29.6062 26.4703 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 21 u 0.4280 33.1226 25.9126 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 22 3 -10.8338 26.9346 37.0185 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 23 ~ 2.9848 27.6923 12.0861 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 24 # -14.3304 26.8256 41.5515 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 25 O -8.3314 32.6414 34.6234 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 26 ` -13.0124 11.1466 9.3586 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 27 @ -10.2942 21.9941 40.6703 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 28 F -7.7135 31.2852 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 29 S -8.2948 27.1846 34.6234 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 30 p -0.0513 34.2969 36.6426 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 31 “ -8.1461 23.8481 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 32 % -10.2603 26.0861 36.6691 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 33 £ -8.1716 29.3797 33.8574 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 34 . 18.4847 8.8509 7.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 35 2 -11.0906 26.5445 36.4608 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 36 5 -10.2970 27.0340 36.4608 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 37 m 0.2207 37.7404 25.7043 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 38 V -7.7877 38.4306 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 39 6 -10.5736 25.4543 37.0185 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 40 w 0.7763 33.3756 25.1466 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 41 T -7.8819 29.3213 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 42 M -7.9341 38.3481 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 43 G -8.1934 32.4596 34.6234 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 44 b -10.0621 34.2969 36.6691 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 45 9 -10.8283 25.4543 37.0185 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 46 ; 0.6154 14.2083 31.9019 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 47 D -7.7345 31.6670 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 48 L -8.0130 31.4253 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 49 y 0.2709 35.2713 36.0849 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 50 ‘ -8.3064 11.4543 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 51 \ -15.1578 25.9043 47.8074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 52 R -7.8776 34.9552 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 53 < -7.8457 33.3574 33.3392 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 54 4 -10.0410 25.2460 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 55 8 -10.9780 25.5784 37.0185 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 56 0 -10.9723 25.5784 37.0185 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 57 A -8.0644 38.2648 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 58 E -7.9644 30.3867 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 59 B -8.0625 32.8991 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 60 v 0.5577 35.0559 25.1466 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 61 k -10.1285 30.6450 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 62 J -8.0063 32.1830 34.3734 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 63 U -8.0616 34.9371 34.3734 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 64 j -9.9732 21.4448 46.8414 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 65 ( -10.0969 12.8522 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 66 7 -10.3651 24.9383 35.9031 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 67 § -10.2243 29.7880 41.0522 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 68 $ -14.5361 25.1466 47.5392 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 69 € -8.1782 32.2596 34.6234 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 70 / -15.5506 25.1466 47.8074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 71 C -8.2815 30.3457 34.6234 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 72 * -9.9783 23.8663 24.9466 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 73 ” -7.9973 23.8481 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 74 ? -8.2614 23.4828 34.6234 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 75 { -10.3392 14.7395 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 76 } -9.8734 14.7395 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 77 , 18.1516 11.4543 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 78 I -7.7163 24.7300 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 79 ° -16.5379 16.4380 16.4380 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 80 K -8.0346 34.4476 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 81 H -8.0116 30.7457 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 82 q -0.1177 33.9892 36.6426 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 83 & -6.9248 26.8522 33.1574 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 84 ’ -8.3300 11.4543 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 85 [ -10.2874 12.8438 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 86 - 6.5796 24.9383 5.1491 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 87 Y -7.9058 32.1337 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 88 Q -8.3227 32.6414 42.0682 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 89 " -7.8192 20.7160 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 90 ! -9.7850 9.3586 36.6691 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 91 x 0.4989 32.6414 25.1466 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 92 ) -10.2675 12.8522 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 93 = 1.7214 32.6414 14.9395 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 94 + -5.7812 29.3213 29.3213 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 95 X -8.0923 35.2448 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 96 » 2.7005 28.6895 23.2328 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 97 ' -7.9671 8.0373 17.2435 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 98 ¢ -14.9178 24.4306 43.2055 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 99 Z -7.6519 26.2945 33.6074 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 100 > -7.5505 33.3574 33.3392 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 101 ® -7.9712 34.9371 34.3734 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 102 © -7.9805 34.9371 34.3734 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 103 ] -10.3628 12.8438 43.1478 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 104 é -12.8119 30.7275 39.2725 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 105 z 0.5470 25.4543 25.1466 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 106 _ 37.7913 40.0861 5.1491 -Courier_New_Bold.ttf 3 a 31.0352 26.4703 107 ¥ -7.9953 31.2700 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 1 t -8.4854 29.3297 34.9636 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 2 h -10.2845 33.1226 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 3 a 0.1350 31.0352 26.4703 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 4 n 0.0597 31.9747 25.7043 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 5 P -7.9542 30.2957 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 6 o 0.2841 29.8457 26.4703 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 7 e -0.1728 30.7275 26.4703 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 8 : 0.7552 8.8509 25.1466 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 9 r -0.0283 30.0874 25.7043 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 10 l -9.9885 27.0256 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 11 i -10.2359 27.0256 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 12 1 -10.8930 24.7300 36.4608 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 13 | -10.1658 5.1491 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 14 N -7.9800 35.4864 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 15 f -10.1983 30.2957 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 16 g -0.1042 32.8149 36.6426 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 17 d -10.3758 33.9892 36.6691 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 18 W -7.8647 38.6293 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 19 s 0.2762 26.2679 26.4703 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 20 c 0.0532 29.6062 26.4703 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 21 u 0.5938 33.1226 25.9126 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 22 3 -10.7065 26.9346 37.0185 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 23 ~ 2.9927 27.6923 12.0861 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 24 # -14.2460 26.8256 41.5515 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 25 O -8.2402 32.6414 34.6234 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 26 ` -13.0303 11.1466 9.3586 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 27 @ -10.3846 21.9941 40.6703 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 28 F -7.6612 31.2852 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 29 S -8.4603 27.1846 34.6234 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 30 p -0.1186 34.2969 36.6426 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 31 “ -8.1770 23.8481 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 32 % -10.6029 26.0861 36.6691 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 33 £ -8.2133 29.3797 33.8574 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 34 . 18.4273 8.8509 7.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 35 2 -10.8106 26.5445 36.4608 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 36 5 -10.2280 27.0340 36.4608 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 37 m 0.4334 37.7404 25.7043 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 38 V -8.0619 38.4306 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 39 6 -10.7694 25.4543 37.0185 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 40 w 0.7927 33.3756 25.1466 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 41 T -7.8883 29.3213 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 42 M -7.9898 38.3481 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 43 G -8.0000 32.4596 34.6234 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 44 b -10.3601 34.2969 36.6691 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 45 9 -10.8825 25.4543 37.0185 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 46 ; 0.3550 14.2083 31.9019 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 47 D -8.0388 31.6670 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 48 L -7.7176 31.4253 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 49 y 0.4835 35.2713 36.0849 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 50 ‘ -7.9085 11.4543 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 51 \ -15.4413 25.9043 47.8074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 52 R -8.0411 34.9552 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 53 < -7.8091 33.3574 33.3392 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 54 4 -10.4723 25.2460 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 55 8 -10.9019 25.5784 37.0185 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 56 0 -10.7347 25.5784 37.0185 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 57 A -7.7827 38.2648 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 58 E -8.1070 30.3867 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 59 B -7.5491 32.8991 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 60 v 0.4984 35.0559 25.1466 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 61 k -10.0033 30.6450 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 62 J -7.8678 32.1830 34.3734 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 63 U -8.1208 34.9371 34.3734 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 64 j -10.2904 21.4448 46.8414 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 65 ( -10.0227 12.8522 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 66 7 -10.1733 24.9383 35.9031 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 67 § -10.4616 29.7880 41.0522 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 68 $ -14.3180 25.1466 47.5392 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 69 € -8.3227 32.2596 34.6234 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 70 / -15.4377 25.1466 47.8074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 71 C -8.0377 30.3457 34.6234 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 72 * -10.1214 23.8663 24.9466 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 73 ” -8.1280 23.8481 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 74 ? -7.8970 23.4828 34.6234 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 75 { -10.3302 14.7395 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 76 } -9.8961 14.7395 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 77 , 17.9009 11.4543 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 78 I -8.0773 24.7300 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 79 ° -16.3670 16.4380 16.4380 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 80 K -8.1139 34.4476 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 81 H -7.9579 30.7457 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 82 q -0.1484 33.9892 36.6426 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 83 & -7.0681 26.8522 33.1574 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 84 ’ -8.1136 11.4543 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 85 [ -10.2547 12.8438 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 86 - 6.7626 24.9383 5.1491 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 87 Y -7.8474 32.1337 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 88 Q -8.1837 32.6414 42.0682 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 89 " -8.1252 20.7160 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 90 ! -10.1932 9.3586 36.6691 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 91 x 0.7158 32.6414 25.1466 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 92 ) -10.5412 12.8522 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 93 = 2.0797 32.6414 14.9395 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 94 + -5.6161 29.3213 29.3213 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 95 X -7.8579 35.2448 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 96 » 2.5489 28.6895 23.2328 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 97 ' -7.8642 8.0373 17.2435 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 98 ¢ -14.8586 24.4306 43.2055 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 99 Z -7.8533 26.2945 33.6074 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 100 > -7.6878 33.3574 33.3392 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 101 ® -8.0744 34.9371 34.3734 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 102 © -8.0070 34.9371 34.3734 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 103 ] -10.0437 12.8438 43.1478 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 104 é -12.6933 30.7275 39.2725 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 105 z 0.5577 25.4543 25.1466 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 106 _ 38.0404 40.0861 5.1491 -Courier_New_Bold.ttf 4 n 31.9747 25.7043 107 ¥ -7.9003 31.2700 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 1 t -0.4216 29.3297 34.9636 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 2 h -2.5310 33.1226 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 3 a 7.8608 31.0352 26.4703 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 4 n 7.7288 31.9747 25.7043 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 5 P -0.0405 30.2957 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 6 o 7.7932 29.8457 26.4703 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 7 e 7.9586 30.7275 26.4703 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 8 : 8.3562 8.8509 25.1466 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 9 r 7.9570 30.0874 25.7043 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 10 l -2.4111 27.0256 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 11 i -2.2957 27.0256 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 12 1 -2.5939 24.7300 36.4608 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 13 | -1.9125 5.1491 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 14 N -0.1067 35.4864 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 15 f -2.2414 30.2957 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 16 g 8.1941 32.8149 36.6426 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 17 d -2.3071 33.9892 36.6691 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 18 W 0.1466 38.6293 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 19 s 7.6567 26.2679 26.4703 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 20 c 7.9902 29.6062 26.4703 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 21 u 8.1507 33.1226 25.9126 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 22 3 -2.7515 26.9346 37.0185 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 23 ~ 11.0630 27.6923 12.0861 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 24 # -6.4662 26.8256 41.5515 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 25 O -0.2142 32.6414 34.6234 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 26 ` -4.9951 11.1466 9.3586 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 27 @ -2.4416 21.9941 40.6703 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 28 F 0.1386 31.2852 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 29 S -0.1661 27.1846 34.6234 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 30 p 8.0031 34.2969 36.6426 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 31 “ -0.4113 23.8481 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 32 % -2.3619 26.0861 36.6691 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 33 £ -0.3038 29.3797 33.8574 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 34 . 26.5038 8.8509 7.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 35 2 -2.9391 26.5445 36.4608 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 36 5 -2.2009 27.0340 36.4608 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 37 m 7.8317 37.7404 25.7043 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 38 V -0.0468 38.4306 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 39 6 -3.0688 25.4543 37.0185 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 40 w 8.5427 33.3756 25.1466 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 41 T -0.0390 29.3213 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 42 M -0.2697 38.3481 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 43 G -0.1625 32.4596 34.6234 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 44 b -2.3114 34.2969 36.6691 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 45 9 -2.8292 25.4543 37.0185 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 46 ; 8.1656 14.2083 31.9019 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 47 D -0.3328 31.6670 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 48 L -0.0060 31.4253 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 49 y 8.3667 35.2713 36.0849 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 50 ‘ -0.1731 11.4543 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 51 \ -7.4546 25.9043 47.8074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 52 R 0.2037 34.9552 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 53 < 0.2160 33.3574 33.3392 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 54 4 -2.3145 25.2460 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 55 8 -3.0017 25.5784 37.0185 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 56 0 -2.7916 25.5784 37.0185 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 57 A 0.1368 38.2648 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 58 E -0.0088 30.3867 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 59 B -0.0374 32.8991 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 60 v 8.7107 35.0559 25.1466 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 61 k -2.2772 30.6450 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 62 J 0.2712 32.1830 34.3734 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 63 U -0.2371 34.9371 34.3734 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 64 j -2.0374 21.4448 46.8414 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 65 ( -2.1577 12.8522 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 66 7 -2.3516 24.9383 35.9031 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 67 § -2.3443 29.7880 41.0522 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 68 $ -6.7309 25.1466 47.5392 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 69 € -0.3269 32.2596 34.6234 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 70 / -7.2552 25.1466 47.8074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 71 C -0.2758 30.3457 34.6234 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 72 * -2.3290 23.8663 24.9466 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 73 ” -0.4145 23.8481 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 74 ? -0.1440 23.4828 34.6234 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 75 { -2.4504 14.7395 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 76 } -2.6578 14.7395 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 77 , 26.0716 11.4543 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 78 I -0.0298 24.7300 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 79 ° -8.6227 16.4380 16.4380 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 80 K -0.2502 34.4476 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 81 H 0.0979 30.7457 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 82 q 7.8748 33.9892 36.6426 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 83 & 1.5414 26.8522 33.1574 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 84 ’ -0.2783 11.4543 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 85 [ -2.2632 12.8438 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 86 - 14.5613 24.9383 5.1491 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 87 Y 0.2516 32.1337 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 88 Q -0.1824 32.6414 42.0682 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 89 " -0.0987 20.7160 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 90 ! -2.1466 9.3586 36.6691 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 91 x 8.4840 32.6414 25.1466 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 92 ) -2.5784 12.8522 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 93 = 9.8323 32.6414 14.9395 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 94 + 2.2310 29.3213 29.3213 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 95 X 0.0482 35.2448 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 96 » 10.1569 28.6895 23.2328 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 97 ' -0.2238 8.0373 17.2435 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 98 ¢ -7.1471 24.4306 43.2055 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 99 Z 0.1622 26.2945 33.6074 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 100 > 0.0184 33.3574 33.3392 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 101 ® -0.2140 34.9371 34.3734 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 102 © 0.1484 34.9371 34.3734 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 103 ] -2.4130 12.8438 43.1478 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 104 é -4.9830 30.7275 39.2725 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 105 z 8.4361 25.4543 25.1466 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 106 _ 45.7308 40.0861 5.1491 -Courier_New_Bold.ttf 5 P 30.2957 33.6074 107 ¥ 0.1535 31.2700 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 1 t -8.0951 29.3297 34.9636 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 2 h -10.2702 33.1226 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 3 a 0.0769 31.0352 26.4703 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 4 n 0.1052 31.9747 25.7043 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 5 P -8.0606 30.2957 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 6 o -0.1065 29.8457 26.4703 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 7 e 0.0375 30.7275 26.4703 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 8 : 0.3878 8.8509 25.1466 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 9 r 0.0347 30.0874 25.7043 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 10 l -10.3996 27.0256 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 11 i -10.1558 27.0256 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 12 1 -10.6385 24.7300 36.4608 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 13 | -9.8285 5.1491 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 14 N -7.8527 35.4864 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 15 f -10.2730 30.2957 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 16 g -0.2582 32.8149 36.6426 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 17 d -10.2372 33.9892 36.6691 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 18 W -7.7285 38.6293 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 19 s 0.1484 26.2679 26.4703 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 20 c 0.0342 29.6062 26.4703 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 21 u 0.5346 33.1226 25.9126 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 22 3 -10.9979 26.9346 37.0185 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 23 ~ 2.9120 27.6923 12.0861 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 24 # -14.2747 26.8256 41.5515 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 25 O -8.2457 32.6414 34.6234 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 26 ` -13.2719 11.1466 9.3586 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 27 @ -10.0102 21.9941 40.6703 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 28 F -8.0899 31.2852 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 29 S -8.1721 27.1846 34.6234 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 30 p -0.0839 34.2969 36.6426 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 31 “ -8.1660 23.8481 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 32 % -10.2890 26.0861 36.6691 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 33 £ -8.2793 29.3797 33.8574 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 34 . 18.5131 8.8509 7.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 35 2 -10.7509 26.5445 36.4608 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 36 5 -10.0840 27.0340 36.4608 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 37 m -0.2850 37.7404 25.7043 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 38 V -7.4926 38.4306 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 39 6 -10.7384 25.4543 37.0185 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 40 w 0.5615 33.3756 25.1466 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 41 T -8.1144 29.3213 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 42 M -7.7086 38.3481 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 43 G -8.0660 32.4596 34.6234 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 44 b -10.0857 34.2969 36.6691 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 45 9 -10.6741 25.4543 37.0185 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 46 ; 0.4165 14.2083 31.9019 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 47 D -7.8188 31.6670 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 48 L -7.8549 31.4253 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 49 y 0.3709 35.2713 36.0849 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 50 ‘ -8.1283 11.4543 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 51 \ -15.2380 25.9043 47.8074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 52 R -7.8246 34.9552 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 53 < -7.6107 33.3574 33.3392 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 54 4 -10.5828 25.2460 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 55 8 -11.2645 25.5784 37.0185 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 56 0 -10.9387 25.5784 37.0185 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 57 A -7.9805 38.2648 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 58 E -7.8372 30.3867 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 59 B -7.9268 32.8991 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 60 v 0.8005 35.0559 25.1466 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 61 k -10.1006 30.6450 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 62 J -7.9364 32.1830 34.3734 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 63 U -7.8219 34.9371 34.3734 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 64 j -9.9151 21.4448 46.8414 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 65 ( -10.4689 12.8522 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 66 7 -9.9846 24.9383 35.9031 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 67 § -10.2428 29.7880 41.0522 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 68 $ -14.5773 25.1466 47.5392 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 69 € -7.9738 32.2596 34.6234 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 70 / -15.1512 25.1466 47.8074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 71 C -8.2014 30.3457 34.6234 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 72 * -10.5190 23.8663 24.9466 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 73 ” -8.4840 23.8481 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 74 ? -8.2201 23.4828 34.6234 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 75 { -10.1971 14.7395 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 76 } -10.2274 14.7395 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 77 , 18.0598 11.4543 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 78 I -7.9416 24.7300 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 79 ° -16.7194 16.4380 16.4380 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 80 K -7.8317 34.4476 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 81 H -8.3971 30.7457 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 82 q -0.3194 33.9892 36.6426 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 83 & -6.7325 26.8522 33.1574 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 84 ’ -8.4325 11.4543 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 85 [ -10.2087 12.8438 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 86 - 6.4815 24.9383 5.1491 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 87 Y -7.9192 32.1337 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 88 Q -8.0247 32.6414 42.0682 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 89 " -8.2182 20.7160 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 90 ! -10.3299 9.3586 36.6691 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 91 x 0.6948 32.6414 25.1466 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 92 ) -10.2585 12.8522 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 93 = 2.2360 32.6414 14.9395 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 94 + -5.7922 29.3213 29.3213 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 95 X -7.8861 35.2448 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 96 » 2.2996 28.6895 23.2328 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 97 ' -7.6997 8.0373 17.2435 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 98 ¢ -14.9036 24.4306 43.2055 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 99 Z -7.9443 26.2945 33.6074 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 100 > -7.6831 33.3574 33.3392 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 101 ® -7.9157 34.9371 34.3734 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 102 © -7.9784 34.9371 34.3734 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 103 ] -10.3119 12.8438 43.1478 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 104 é -12.7850 30.7275 39.2725 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 105 z 0.6138 25.4543 25.1466 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 106 _ 37.8773 40.0861 5.1491 -Courier_New_Bold.ttf 6 o 29.8457 26.4703 107 ¥ -7.9485 31.2700 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 1 t -8.4320 29.3297 34.9636 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 2 h -10.1668 33.1226 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 3 a -0.0867 31.0352 26.4703 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 4 n 0.0181 31.9747 25.7043 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 5 P -7.8406 30.2957 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 6 o 0.1686 29.8457 26.4703 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 7 e -0.1280 30.7275 26.4703 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 8 : 0.6763 8.8509 25.1466 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 9 r -0.0877 30.0874 25.7043 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 10 l -10.0375 27.0256 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 11 i -10.2684 27.0256 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 12 1 -10.8436 24.7300 36.4608 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 13 | -10.2189 5.1491 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 14 N -7.8262 35.4864 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 15 f -10.2390 30.2957 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 16 g 0.2100 32.8149 36.6426 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 17 d -10.0088 33.9892 36.6691 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 18 W -7.7351 38.6293 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 19 s 0.0746 26.2679 26.4703 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 20 c -0.3995 29.6062 26.4703 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 21 u 0.9446 33.1226 25.9126 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 22 3 -10.6083 26.9346 37.0185 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 23 ~ 2.8921 27.6923 12.0861 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 24 # -14.2434 26.8256 41.5515 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 25 O -8.0966 32.6414 34.6234 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 26 ` -12.3600 11.1466 9.3586 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 27 @ -10.0889 21.9941 40.6703 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 28 F -8.1528 31.2852 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 29 S -8.0459 27.1846 34.6234 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 30 p -0.0181 34.2969 36.6426 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 31 “ -8.2364 23.8481 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 32 % -10.0291 26.0861 36.6691 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 33 £ -8.3561 29.3797 33.8574 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 34 . 18.4870 8.8509 7.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 35 2 -10.7779 26.5445 36.4608 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 36 5 -10.4383 27.0340 36.4608 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 37 m 0.0437 37.7404 25.7043 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 38 V -7.8632 38.4306 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 39 6 -10.6847 25.4543 37.0185 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 40 w 0.6959 33.3756 25.1466 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 41 T -7.8356 29.3213 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 42 M -8.0185 38.3481 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 43 G -8.2733 32.4596 34.6234 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 44 b -10.3479 34.2969 36.6691 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 45 9 -10.7972 25.4543 37.0185 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 46 ; 0.1836 14.2083 31.9019 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 47 D -8.1571 31.6670 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 48 L -7.9734 31.4253 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 49 y 0.7805 35.2713 36.0849 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 50 ‘ -8.1930 11.4543 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 51 \ -15.5658 25.9043 47.8074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 52 R -7.8969 34.9552 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 53 < -7.6427 33.3574 33.3392 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 54 4 -10.3043 25.2460 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 55 8 -10.9395 25.5784 37.0185 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 56 0 -10.8019 25.5784 37.0185 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 57 A -7.7237 38.2648 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 58 E -7.7596 30.3867 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 59 B -7.7751 32.8991 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 60 v 0.5832 35.0559 25.1466 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 61 k -10.2196 30.6450 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 62 J -8.0958 32.1830 34.3734 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 63 U -7.8678 34.9371 34.3734 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 64 j -10.2288 21.4448 46.8414 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 65 ( -10.2393 12.8522 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 66 7 -10.2994 24.9383 35.9031 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 67 § -10.1201 29.7880 41.0522 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 68 $ -14.3215 25.1466 47.5392 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 69 € -8.0719 32.2596 34.6234 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 70 / -15.4730 25.1466 47.8074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 71 C -8.3819 30.3457 34.6234 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 72 * -10.1447 23.8663 24.9466 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 73 ” -8.2291 23.8481 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 74 ? -8.3583 23.4828 34.6234 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 75 { -10.1371 14.7395 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 76 } -10.2886 14.7395 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 77 , 17.4800 11.4543 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 78 I -7.9263 24.7300 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 79 ° -16.6745 16.4380 16.4380 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 80 K -7.9972 34.4476 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 81 H -7.7477 30.7457 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 82 q 0.0009 33.9892 36.6426 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 83 & -6.5644 26.8522 33.1574 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 84 ’ -7.9770 11.4543 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 85 [ -10.4303 12.8438 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 86 - 6.5738 24.9383 5.1491 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 87 Y -7.7390 32.1337 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 88 Q -8.0702 32.6414 42.0682 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 89 " -7.9602 20.7160 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 90 ! -10.3499 9.3586 36.6691 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 91 x 0.5234 32.6414 25.1466 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 92 ) -10.3898 12.8522 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 93 = 2.0385 32.6414 14.9395 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 94 + -5.4924 29.3213 29.3213 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 95 X -8.1329 35.2448 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 96 » 2.3413 28.6895 23.2328 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 97 ' -7.9411 8.0373 17.2435 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 98 ¢ -14.8854 24.4306 43.2055 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 99 Z -7.9063 26.2945 33.6074 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 100 > -7.6645 33.3574 33.3392 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 101 ® -8.0542 34.9371 34.3734 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 102 © -7.9941 34.9371 34.3734 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 103 ] -10.2873 12.8438 43.1478 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 104 é -12.5037 30.7275 39.2725 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 105 z 0.7477 25.4543 25.1466 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 106 _ 37.7401 40.0861 5.1491 -Courier_New_Bold.ttf 7 e 30.7275 26.4703 107 ¥ -7.4910 31.2700 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 1 t -9.2692 29.3297 34.9636 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 2 h -10.9696 33.1226 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 3 a -0.6136 31.0352 26.4703 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 4 n -0.5347 31.9747 25.7043 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 5 P -8.2751 30.2957 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 6 o -0.5101 29.8457 26.4703 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 7 e -0.5364 30.7275 26.4703 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 8 : 0.2432 8.8509 25.1466 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 9 r -0.7371 30.0874 25.7043 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 10 l -10.8166 27.0256 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 11 i -10.6434 27.0256 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 12 1 -11.3582 24.7300 36.4608 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 13 | -11.0132 5.1491 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 14 N -8.4405 35.4864 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 15 f -10.8848 30.2957 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 16 g -0.5480 32.8149 36.6426 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 17 d -10.6949 33.9892 36.6691 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 18 W -8.2740 38.6293 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 19 s -0.4191 26.2679 26.4703 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 20 c -0.5790 29.6062 26.4703 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 21 u 0.2557 33.1226 25.9126 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 22 3 -11.2908 26.9346 37.0185 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 23 ~ 2.5720 27.6923 12.0861 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 24 # -14.7912 26.8256 41.5515 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 25 O -8.6171 32.6414 34.6234 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 26 ` -13.0716 11.1466 9.3586 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 27 @ -10.4441 21.9941 40.6703 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 28 F -8.6833 31.2852 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 29 S -8.7086 27.1846 34.6234 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 30 p -0.2977 34.2969 36.6426 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 31 “ -8.5001 23.8481 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 32 % -10.8234 26.0861 36.6691 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 33 £ -8.3714 29.3797 33.8574 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 34 . 17.8185 8.8509 7.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 35 2 -11.6144 26.5445 36.4608 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 36 5 -10.6484 27.0340 36.4608 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 37 m -0.6448 37.7404 25.7043 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 38 V -8.3737 38.4306 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 39 6 -10.9797 25.4543 37.0185 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 40 w -0.0630 33.3756 25.1466 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 41 T -8.6245 29.3213 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 42 M -8.3940 38.3481 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 43 G -8.4726 32.4596 34.6234 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 44 b -10.7088 34.2969 36.6691 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 45 9 -11.1288 25.4543 37.0185 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 46 ; -0.2887 14.2083 31.9019 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 47 D -8.5175 31.6670 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 48 L -8.3866 31.4253 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 49 y 0.0917 35.2713 36.0849 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 50 ‘ -8.5922 11.4543 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 51 \ -16.0811 25.9043 47.8074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 52 R -8.2081 34.9552 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 53 < -8.5152 33.3574 33.3392 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 54 4 -10.6588 25.2460 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 55 8 -11.5168 25.5784 37.0185 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 56 0 -11.0654 25.5784 37.0185 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 57 A -8.7050 38.2648 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 58 E -8.5479 30.3867 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 59 B -8.5167 32.8991 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 60 v -0.4138 35.0559 25.1466 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 61 k -10.7217 30.6450 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 62 J -8.4325 32.1830 34.3734 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 63 U -8.4755 34.9371 34.3734 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 64 j -10.7565 21.4448 46.8414 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 65 ( -10.7505 12.8522 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 66 7 -10.4635 24.9383 35.9031 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 67 § -10.8209 29.7880 41.0522 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 68 $ -14.7463 25.1466 47.5392 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 69 € -8.4606 32.2596 34.6234 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 70 / -15.4376 25.1466 47.8074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 71 C -8.8076 30.3457 34.6234 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 72 * -10.6708 23.8663 24.9466 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 73 ” -8.6255 23.8481 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 74 ? -8.7835 23.4828 34.6234 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 75 { -10.4378 14.7395 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 76 } -10.8501 14.7395 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 77 , 17.2388 11.4543 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 78 I -8.6035 24.7300 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 79 ° -17.1052 16.4380 16.4380 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 80 K -8.4635 34.4476 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 81 H -8.5882 30.7457 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 82 q -0.6521 33.9892 36.6426 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 83 & -7.2448 26.8522 33.1574 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 84 ’ -8.8332 11.4543 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 85 [ -10.9366 12.8438 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 86 - 5.8224 24.9383 5.1491 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 87 Y -8.6552 32.1337 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 88 Q -8.8266 32.6414 42.0682 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 89 " -8.5760 20.7160 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 90 ! -10.8646 9.3586 36.6691 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 91 x -0.0398 32.6414 25.1466 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 92 ) -11.0951 12.8522 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 93 = 1.1978 32.6414 14.9395 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 94 + -6.1742 29.3213 29.3213 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 95 X -8.6421 35.2448 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 96 » 1.8926 28.6895 23.2328 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 97 ' -8.1434 8.0373 17.2435 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 98 ¢ -15.6121 24.4306 43.2055 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 99 Z -8.5310 26.2945 33.6074 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 100 > -8.0800 33.3574 33.3392 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 101 ® -8.2814 34.9371 34.3734 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 102 © -8.6006 34.9371 34.3734 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 103 ] -10.7713 12.8438 43.1478 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 104 é -13.3116 30.7275 39.2725 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 105 z -0.1000 25.4543 25.1466 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 106 _ 37.5954 40.0861 5.1491 -Courier_New_Bold.ttf 8 : 8.8509 25.1466 107 ¥ -8.4479 31.2700 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 1 t -8.5588 29.3297 34.9636 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 2 h -10.7257 33.1226 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 3 a -0.0353 31.0352 26.4703 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 4 n -0.0959 31.9747 25.7043 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 5 P -8.0125 30.2957 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 6 o 0.0756 29.8457 26.4703 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 7 e -0.0732 30.7275 26.4703 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 8 : 0.6421 8.8509 25.1466 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 9 r 0.1949 30.0874 25.7043 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 10 l -10.2108 27.0256 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 11 i -10.3087 27.0256 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 12 1 -10.5386 24.7300 36.4608 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 13 | -9.7988 5.1491 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 14 N -7.9248 35.4864 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 15 f -10.1928 30.2957 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 16 g -0.1789 32.8149 36.6426 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 17 d -10.2340 33.9892 36.6691 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 18 W -7.8999 38.6293 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 19 s -0.1998 26.2679 26.4703 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 20 c 0.1669 29.6062 26.4703 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 21 u 0.7968 33.1226 25.9126 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 22 3 -10.7124 26.9346 37.0185 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 23 ~ 2.6824 27.6923 12.0861 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 24 # -14.4280 26.8256 41.5515 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 25 O -8.1990 32.6414 34.6234 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 26 ` -12.9967 11.1466 9.3586 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 27 @ -10.2649 21.9941 40.6703 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 28 F -7.8192 31.2852 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 29 S -8.2309 27.1846 34.6234 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 30 p 0.1456 34.2969 36.6426 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 31 “ -8.0002 23.8481 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 32 % -10.1992 26.0861 36.6691 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 33 £ -8.0222 29.3797 33.8574 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 34 . 18.5645 8.8509 7.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 35 2 -10.7560 26.5445 36.4608 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 36 5 -10.4412 27.0340 36.4608 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 37 m 0.1437 37.7404 25.7043 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 38 V -7.9541 38.4306 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 39 6 -10.7764 25.4543 37.0185 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 40 w 0.4560 33.3756 25.1466 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 41 T -7.9105 29.3213 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 42 M -7.9748 38.3481 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 43 G -7.8683 32.4596 34.6234 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 44 b -10.2988 34.2969 36.6691 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 45 9 -10.8821 25.4543 37.0185 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 46 ; 0.5989 14.2083 31.9019 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 47 D -7.6332 31.6670 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 48 L -7.8745 31.4253 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 49 y 0.5577 35.2713 36.0849 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 50 ‘ -8.2444 11.4543 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 51 \ -15.3275 25.9043 47.8074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 52 R -7.6983 34.9552 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 53 < -7.7974 33.3574 33.3392 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 54 4 -10.2076 25.2460 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 55 8 -10.6726 25.5784 37.0185 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 56 0 -10.8656 25.5784 37.0185 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 57 A -7.8887 38.2648 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 58 E -7.8262 30.3867 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 59 B -7.5236 32.8991 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 60 v 0.4960 35.0559 25.1466 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 61 k -10.0607 30.6450 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 62 J -8.2688 32.1830 34.3734 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 63 U -7.9124 34.9371 34.3734 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 64 j -10.0288 21.4448 46.8414 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 65 ( -10.3189 12.8522 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 66 7 -10.0032 24.9383 35.9031 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 67 § -10.0357 29.7880 41.0522 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 68 $ -14.2814 25.1466 47.5392 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 69 € -7.9803 32.2596 34.6234 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 70 / -15.0093 25.1466 47.8074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 71 C -8.2466 30.3457 34.6234 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 72 * -10.4111 23.8663 24.9466 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 73 ” -8.2803 23.8481 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 74 ? -8.0664 23.4828 34.6234 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 75 { -10.1924 14.7395 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 76 } -10.2171 14.7395 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 77 , 17.6604 11.4543 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 78 I -7.9601 24.7300 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 79 ° -16.4744 16.4380 16.4380 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 80 K -7.8517 34.4476 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 81 H -8.0096 30.7457 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 82 q 0.0362 33.9892 36.6426 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 83 & -6.4845 26.8522 33.1574 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 84 ’ -8.1499 11.4543 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 85 [ -10.2360 12.8438 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 86 - 6.4395 24.9383 5.1491 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 87 Y -7.9146 32.1337 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 88 Q -8.2156 32.6414 42.0682 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 89 " -7.8846 20.7160 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 90 ! -10.3583 9.3586 36.6691 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 91 x 0.5392 32.6414 25.1466 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 92 ) -10.2582 12.8522 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 93 = 1.8191 32.6414 14.9395 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 94 + -5.4325 29.3213 29.3213 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 95 X -7.9452 35.2448 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 96 » 2.4717 28.6895 23.2328 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 97 ' -8.2089 8.0373 17.2435 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 98 ¢ -14.7306 24.4306 43.2055 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 99 Z -7.8632 26.2945 33.6074 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 100 > -7.5449 33.3574 33.3392 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 101 ® -7.8646 34.9371 34.3734 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 102 © -7.8321 34.9371 34.3734 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 103 ] -10.5247 12.8438 43.1478 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 104 é -12.9940 30.7275 39.2725 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 105 z 0.4808 25.4543 25.1466 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 106 _ 38.0712 40.0861 5.1491 -Courier_New_Bold.ttf 9 r 30.0874 25.7043 107 ¥ -8.0800 31.2700 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 1 t 1.7017 29.3297 34.9636 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 2 h 0.0053 33.1226 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 3 a 10.2762 31.0352 26.4703 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 4 n 10.1316 31.9747 25.7043 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 5 P 2.3240 30.2957 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 6 o 10.1448 29.8457 26.4703 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 7 e 10.0259 30.7275 26.4703 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 8 : 10.7890 8.8509 25.1466 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 9 r 10.2201 30.0874 25.7043 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 10 l -0.0788 27.0256 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 11 i 0.1131 27.0256 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 12 1 -0.9037 24.7300 36.4608 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 13 | 0.0306 5.1491 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 14 N 2.3223 35.4864 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 15 f 0.0020 30.2957 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 16 g 9.7752 32.8149 36.6426 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 17 d -0.1558 33.9892 36.6691 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 18 W 2.1586 38.6293 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 19 s 10.1691 26.2679 26.4703 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 20 c 10.2029 29.6062 26.4703 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 21 u 10.4255 33.1226 25.9126 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 22 3 -0.2351 26.9346 37.0185 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 23 ~ 13.3619 27.6923 12.0861 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 24 # -4.1309 26.8256 41.5515 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 25 O 2.1706 32.6414 34.6234 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 26 ` -2.8332 11.1466 9.3586 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 27 @ 0.0000 21.9941 40.6703 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 28 F 2.3217 31.2852 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 29 S 2.1495 27.1846 34.6234 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 30 p 10.1316 34.2969 36.6426 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 31 “ 2.1226 23.8481 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 32 % 0.2118 26.0861 36.6691 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 33 £ 1.7978 29.3797 33.8574 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 34 . 28.2896 8.8509 7.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 35 2 -0.8208 26.5445 36.4608 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 36 5 0.2085 27.0340 36.4608 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 37 m 10.1456 37.7404 25.7043 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 38 V 2.3653 38.4306 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 39 6 -0.7214 25.4543 37.0185 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 40 w 10.8670 33.3756 25.1466 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 41 T 1.9787 29.3213 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 42 M 2.3827 38.3481 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 43 G 1.9183 32.4596 34.6234 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 44 b -0.0528 34.2969 36.6691 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 45 9 -0.5701 25.4543 37.0185 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 46 ; 10.4464 14.2083 31.9019 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 47 D 2.4699 31.6670 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 48 L 2.2392 31.4253 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 49 y 10.5911 35.2713 36.0849 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 50 ‘ 1.8405 11.4543 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 51 \ -5.1473 25.9043 47.8074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 52 R 1.8667 34.9552 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 53 < 2.2965 33.3574 33.3392 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 54 4 0.0385 25.2460 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 55 8 -0.5861 25.5784 37.0185 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 56 0 -0.4413 25.5784 37.0185 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 57 A 2.1978 38.2648 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 58 E 2.3884 30.3867 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 59 B 2.1239 32.8991 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 60 v 10.6726 35.0559 25.1466 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 61 k 0.1613 30.6450 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 62 J 2.2221 32.1830 34.3734 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 63 U 2.4214 34.9371 34.3734 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 64 j -0.0339 21.4448 46.8414 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 65 ( -0.0150 12.8522 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 66 7 0.2359 24.9383 35.9031 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 67 § -0.0626 29.7880 41.0522 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 68 $ -3.8944 25.1466 47.5392 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 69 € 2.0587 32.2596 34.6234 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 70 / -5.5667 25.1466 47.8074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 71 C 2.1314 30.3457 34.6234 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 72 * -0.1724 23.8663 24.9466 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 73 ” 2.1971 23.8481 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 74 ? 2.2395 23.4828 34.6234 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 75 { -0.3968 14.7395 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 76 } -0.3090 14.7395 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 77 , 27.9408 11.4543 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 78 I 2.3503 24.7300 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 79 ° -6.3506 16.4380 16.4380 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 80 K 2.1005 34.4476 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 81 H 2.2657 30.7457 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 82 q 10.2215 33.9892 36.6426 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 83 & 3.3217 26.8522 33.1574 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 84 ’ 2.4127 11.4543 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 85 [ 0.1350 12.8438 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 86 - 16.6467 24.9383 5.1491 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 87 Y 2.3785 32.1337 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 88 Q 2.0915 32.6414 42.0682 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 89 " 1.9426 20.7160 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 90 ! -0.2813 9.3586 36.6691 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 91 x 10.5490 32.6414 25.1466 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 92 ) 0.1301 12.8522 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 93 = 12.1159 32.6414 14.9395 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 94 + 4.5886 29.3213 29.3213 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 95 X 2.5143 35.2448 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 96 » 12.7792 28.6895 23.2328 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 97 ' 2.3406 8.0373 17.2435 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 98 ¢ -4.2935 24.4306 43.2055 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 99 Z 2.2183 26.2945 33.6074 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 100 > 2.3582 33.3574 33.3392 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 101 ® 2.3446 34.9371 34.3734 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 102 © 2.4217 34.9371 34.3734 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 103 ] 0.0277 12.8438 43.1478 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 104 é -2.7277 30.7275 39.2725 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 105 z 10.7740 25.4543 25.1466 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 106 _ 48.2947 40.0861 5.1491 -Courier_New_Bold.ttf 10 l 27.0256 35.9031 107 ¥ 2.3086 31.2700 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 1 t 1.5858 29.3297 34.9636 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 2 h 0.0943 33.1226 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 3 a 10.2091 31.0352 26.4703 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 4 n 9.9248 31.9747 25.7043 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 5 P 2.4457 30.2957 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 6 o 10.4464 29.8457 26.4703 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 7 e 10.1548 30.7275 26.4703 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 8 : 10.6229 8.8509 25.1466 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 9 r 10.0084 30.0874 25.7043 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 10 l 0.0487 27.0256 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 11 i -0.1094 27.0256 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 12 1 -0.4125 24.7300 36.4608 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 13 | -0.0313 5.1491 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 14 N 2.4245 35.4864 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 15 f -0.2585 30.2957 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 16 g 10.2600 32.8149 36.6426 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 17 d -0.0161 33.9892 36.6691 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 18 W 2.4143 38.6293 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 19 s 10.1593 26.2679 26.4703 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 20 c 9.8859 29.6062 26.4703 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 21 u 10.7737 33.1226 25.9126 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 22 3 -0.9555 26.9346 37.0185 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 23 ~ 13.1891 27.6923 12.0861 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 24 # -4.1051 26.8256 41.5515 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 25 O 2.1296 32.6414 34.6234 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 26 ` -2.5035 11.1466 9.3586 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 27 @ 0.3238 21.9941 40.6703 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 28 F 2.3337 31.2852 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 29 S 2.2111 27.1846 34.6234 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 30 p 10.1246 34.2969 36.6426 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 31 “ 1.9014 23.8481 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 32 % 0.0594 26.0861 36.6691 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 33 £ 2.0225 29.3797 33.8574 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 34 . 28.8918 8.8509 7.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 35 2 -0.2895 26.5445 36.4608 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 36 5 -0.2122 27.0340 36.4608 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 37 m 10.0759 37.7404 25.7043 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 38 V 2.3059 38.4306 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 39 6 -0.3864 25.4543 37.0185 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 40 w 10.6254 33.3756 25.1466 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 41 T 2.3685 29.3213 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 42 M 1.9318 38.3481 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 43 G 2.0390 32.4596 34.6234 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 44 b 0.1585 34.2969 36.6691 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 45 9 -0.5405 25.4543 37.0185 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 46 ; 10.3822 14.2083 31.9019 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 47 D 2.2776 31.6670 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 48 L 2.1669 31.4253 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 49 y 10.8292 35.2713 36.0849 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 50 ‘ 1.8044 11.4543 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 51 \ -5.0235 25.9043 47.8074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 52 R 2.7489 34.9552 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 53 < 2.1159 33.3574 33.3392 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 54 4 -0.0158 25.2460 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 55 8 -0.7903 25.5784 37.0185 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 56 0 -0.5555 25.5784 37.0185 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 57 A 2.3396 38.2648 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 58 E 2.4242 30.3867 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 59 B 1.9337 32.8991 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 60 v 10.5008 35.0559 25.1466 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 61 k 0.3142 30.6450 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 62 J 2.1326 32.1830 34.3734 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 63 U 2.5409 34.9371 34.3734 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 64 j 0.3758 21.4448 46.8414 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 65 ( 0.0357 12.8522 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 66 7 0.0612 24.9383 35.9031 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 67 § -0.1042 29.7880 41.0522 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 68 $ -4.3559 25.1466 47.5392 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 69 € 2.0068 32.2596 34.6234 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 70 / -5.1550 25.1466 47.8074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 71 C 2.0053 30.3457 34.6234 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 72 * 0.0505 23.8663 24.9466 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 73 ” 1.7120 23.8481 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 74 ? 1.9358 23.4828 34.6234 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 75 { -0.1094 14.7395 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 76 } -0.2063 14.7395 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 77 , 28.2918 11.4543 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 78 I 2.5641 24.7300 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 79 ° -6.0245 16.4380 16.4380 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 80 K 2.5367 34.4476 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 81 H 2.1109 30.7457 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 82 q 10.1273 33.9892 36.6426 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 83 & 3.1221 26.8522 33.1574 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 84 ’ 1.9475 11.4543 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 85 [ 0.0375 12.8438 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 86 - 17.0488 24.9383 5.1491 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 87 Y 2.1543 32.1337 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 88 Q 2.1301 32.6414 42.0682 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 89 " 2.1831 20.7160 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 90 ! 0.0376 9.3586 36.6691 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 91 x 10.7963 32.6414 25.1466 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 92 ) -0.1182 12.8522 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 93 = 12.1461 32.6414 14.9395 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 94 + 4.3842 29.3213 29.3213 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 95 X 2.5066 35.2448 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 96 » 12.5462 28.6895 23.2328 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 97 ' 2.1320 8.0373 17.2435 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 98 ¢ -4.6577 24.4306 43.2055 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 99 Z 2.4745 26.2945 33.6074 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 100 > 2.5028 33.3574 33.3392 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 101 ® 2.4217 34.9371 34.3734 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 102 © 2.3781 34.9371 34.3734 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 103 ] 0.1284 12.8438 43.1478 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 104 é -2.6621 30.7275 39.2725 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 105 z 10.4384 25.4543 25.1466 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 106 _ 48.3079 40.0861 5.1491 -Courier_New_Bold.ttf 11 i 27.0256 35.9031 107 ¥ 2.3554 31.2700 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 1 t 1.9217 29.3297 34.9636 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 2 h 0.6305 33.1226 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 3 a 10.9813 31.0352 26.4703 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 4 n 10.6370 31.9747 25.7043 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 5 P 2.9270 30.2957 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 6 o 10.8890 29.8457 26.4703 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 7 e 10.8951 30.7275 26.4703 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 8 : 11.2168 8.8509 25.1466 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 9 r 10.6168 30.0874 25.7043 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 10 l 0.2731 27.0256 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 11 i 0.4998 27.0256 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 12 1 -0.0312 24.7300 36.4608 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 13 | 0.5651 5.1491 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 14 N 2.6736 35.4864 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 15 f 0.8509 30.2957 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 16 g 10.5952 32.8149 36.6426 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 17 d 0.9293 33.9892 36.6691 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 18 W 2.8910 38.6293 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 19 s 10.8761 26.2679 26.4703 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 20 c 10.7694 29.6062 26.4703 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 21 u 11.2427 33.1226 25.9126 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 22 3 0.0038 26.9346 37.0185 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 23 ~ 13.9952 27.6923 12.0861 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 24 # -3.3047 26.8256 41.5515 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 25 O 2.4652 32.6414 34.6234 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 26 ` -2.1697 11.1466 9.3586 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 27 @ 0.4232 21.9941 40.6703 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 28 F 3.0276 31.2852 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 29 S 2.7432 27.1846 34.6234 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 30 p 10.6341 34.2969 36.6426 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 31 “ 2.6191 23.8481 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 32 % 0.3371 26.0861 36.6691 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 33 £ 2.5038 29.3797 33.8574 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 34 . 29.0507 8.8509 7.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 35 2 0.1581 26.5445 36.4608 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 36 5 0.3381 27.0340 36.4608 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 37 m 10.5127 37.7404 25.7043 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 38 V 2.5138 38.4306 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 39 6 0.0769 25.4543 37.0185 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 40 w 11.1301 33.3756 25.1466 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 41 T 2.9918 29.3213 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 42 M 2.8107 38.3481 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 43 G 2.7831 32.4596 34.6234 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 44 b 0.4706 34.2969 36.6691 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 45 9 -0.0573 25.4543 37.0185 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 46 ; 11.2333 14.2083 31.9019 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 47 D 2.7636 31.6670 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 48 L 2.6907 31.4253 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 49 y 11.2192 35.2713 36.0849 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 50 ‘ 2.7069 11.4543 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 51 \ -4.5186 25.9043 47.8074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 52 R 2.8754 34.9552 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 53 < 2.9432 33.3574 33.3392 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 54 4 0.7059 25.2460 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 55 8 -0.0175 25.5784 37.0185 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 56 0 0.4009 25.5784 37.0185 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 57 A 2.6152 38.2648 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 58 E 2.8593 30.3867 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 59 B 2.9405 32.8991 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 60 v 11.4040 35.0559 25.1466 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 61 k 0.4835 30.6450 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 62 J 2.6022 32.1830 34.3734 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 63 U 2.8075 34.9371 34.3734 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 64 j -0.0017 21.4448 46.8414 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 65 ( 0.4507 12.8522 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 66 7 0.6875 24.9383 35.9031 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 67 § 0.5994 29.7880 41.0522 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 68 $ -3.3562 25.1466 47.5392 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 69 € 2.5889 32.2596 34.6234 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 70 / -4.6358 25.1466 47.8074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 71 C 2.3428 30.3457 34.6234 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 72 * 0.7148 23.8663 24.9466 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 73 ” 2.7485 23.8481 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 74 ? 2.6978 23.4828 34.6234 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 75 { 0.5177 14.7395 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 76 } 0.6319 14.7395 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 77 , 28.4985 11.4543 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 78 I 2.8599 24.7300 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 79 ° -6.0559 16.4380 16.4380 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 80 K 2.4689 34.4476 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 81 H 3.0907 30.7457 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 82 q 10.6818 33.9892 36.6426 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 83 & 4.0922 26.8522 33.1574 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 84 ’ 2.6458 11.4543 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 85 [ 0.4501 12.8438 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 86 - 17.4178 24.9383 5.1491 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 87 Y 2.6147 32.1337 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 88 Q 2.5167 32.6414 42.0682 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 89 " 2.4904 20.7160 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 90 ! 0.8269 9.3586 36.6691 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 91 x 11.2455 32.6414 25.1466 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 92 ) 0.4471 12.8522 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 93 = 12.3445 32.6414 14.9395 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 94 + 5.1199 29.3213 29.3213 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 95 X 3.0104 35.2448 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 96 » 13.0409 28.6895 23.2328 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 97 ' 2.8209 8.0373 17.2435 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 98 ¢ -4.1371 24.4306 43.2055 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 99 Z 2.9248 26.2945 33.6074 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 100 > 2.8801 33.3574 33.3392 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 101 ® 2.5905 34.9371 34.3734 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 102 © 3.0504 34.9371 34.3734 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 103 ] 0.5214 12.8438 43.1478 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 104 é -2.1203 30.7275 39.2725 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 105 z 11.3870 25.4543 25.1466 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 106 _ 48.5069 40.0861 5.1491 -Courier_New_Bold.ttf 12 1 24.7300 36.4608 107 ¥ 3.0434 31.2700 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 1 t 1.7273 29.3297 34.9636 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 2 h -0.1449 33.1226 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 3 a 10.1506 31.0352 26.4703 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 4 n 10.2246 31.9747 25.7043 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 5 P 2.2162 30.2957 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 6 o 10.0997 29.8457 26.4703 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 7 e 10.3012 30.7275 26.4703 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 8 : 10.5339 8.8509 25.1466 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 9 r 10.2942 30.0874 25.7043 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 10 l 0.1251 27.0256 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 11 i -0.0083 27.0256 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 12 1 -0.7189 24.7300 36.4608 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 13 | -0.0635 5.1491 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 14 N 2.2215 35.4864 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 15 f -0.0769 30.2957 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 16 g 10.2942 32.8149 36.6426 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 17 d 0.0774 33.9892 36.6691 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 18 W 2.2627 38.6293 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 19 s 10.2432 26.2679 26.4703 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 20 c 10.2076 29.6062 26.4703 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 21 u 10.6838 33.1226 25.9126 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 22 3 -0.6063 26.9346 37.0185 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 23 ~ 13.2278 27.6923 12.0861 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 24 # -4.1473 26.8256 41.5515 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 25 O 1.9688 32.6414 34.6234 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 26 ` -2.6590 11.1466 9.3586 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 27 @ -0.1403 21.9941 40.6703 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 28 F 2.2600 31.2852 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 29 S 2.0827 27.1846 34.6234 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 30 p 10.2020 34.2969 36.6426 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 31 “ 2.1139 23.8481 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 32 % 0.0769 26.0861 36.6691 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 33 £ 2.0457 29.3797 33.8574 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 34 . 29.0013 8.8509 7.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 35 2 -0.8061 26.5445 36.4608 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 36 5 0.0917 27.0340 36.4608 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 37 m 10.1571 37.7404 25.7043 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 38 V 2.1418 38.4306 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 39 6 -0.5189 25.4543 37.0185 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 40 w 10.7390 33.3756 25.1466 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 41 T 2.4527 29.3213 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 42 M 2.5056 38.3481 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 43 G 1.8714 32.4596 34.6234 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 44 b -0.0027 34.2969 36.6691 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 45 9 -0.4561 25.4543 37.0185 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 46 ; 10.8696 14.2083 31.9019 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 47 D 2.1669 31.6670 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 48 L 2.2110 31.4253 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 49 y 11.0604 35.2713 36.0849 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 50 ‘ 1.6346 11.4543 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 51 \ -5.3131 25.9043 47.8074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 52 R 2.1782 34.9552 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 53 < 3.0253 33.3574 33.3392 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 54 4 0.1532 25.2460 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 55 8 -0.5577 25.5784 37.0185 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 56 0 -0.7245 25.5784 37.0185 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 57 A 2.4111 38.2648 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 58 E 2.3925 30.3867 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 59 B 2.2946 32.8991 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 60 v 10.8334 35.0559 25.1466 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 61 k 0.0417 30.6450 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 62 J 2.3874 32.1830 34.3734 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 63 U 2.4121 34.9371 34.3734 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 64 j 0.0331 21.4448 46.8414 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 65 ( -0.0542 12.8522 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 66 7 -0.0000 24.9383 35.9031 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 67 § -0.3481 29.7880 41.0522 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 68 $ -4.2627 25.1466 47.5392 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 69 € 1.8098 32.2596 34.6234 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 70 / -5.1101 25.1466 47.8074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 71 C 2.1588 30.3457 34.6234 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 72 * 0.0881 23.8663 24.9466 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 73 ” 2.0457 23.8481 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 74 ? 2.0874 23.4828 34.6234 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 75 { -0.0769 14.7395 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 76 } 0.0060 14.7395 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 77 , 27.7950 11.4543 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 78 I 2.2342 24.7300 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 79 ° -6.3036 16.4380 16.4380 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 80 K 2.3796 34.4476 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 81 H 2.4161 30.7457 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 82 q 10.1599 33.9892 36.6426 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 83 & 3.4807 26.8522 33.1574 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 84 ’ 2.1199 11.4543 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 85 [ 0.0570 12.8438 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 86 - 16.9278 24.9383 5.1491 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 87 Y 2.4828 32.1337 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 88 Q 2.0989 32.6414 42.0682 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 89 " 2.4857 20.7160 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 90 ! -0.0099 9.3586 36.6691 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 91 x 10.7592 32.6414 25.1466 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 92 ) -0.1274 12.8522 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 93 = 12.0646 32.6414 14.9395 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 94 + 4.5853 29.3213 29.3213 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 95 X 2.5284 35.2448 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 96 » 12.3826 28.6895 23.2328 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 97 ' 1.9871 8.0373 17.2435 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 98 ¢ -4.7073 24.4306 43.2055 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 99 Z 2.3056 26.2945 33.6074 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 100 > 2.5069 33.3574 33.3392 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 101 ® 1.9607 34.9371 34.3734 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 102 © 2.2902 34.9371 34.3734 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 103 ] -0.1728 12.8438 43.1478 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 104 é -2.5043 30.7275 39.2725 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 105 z 10.9080 25.4543 25.1466 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 106 _ 48.1086 40.0861 5.1491 -Courier_New_Bold.ttf 13 | 5.1491 43.1478 107 ¥ 2.2118 31.2700 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 1 t -0.7353 29.3297 34.9636 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 2 h -2.3801 33.1226 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 3 a 7.8178 31.0352 26.4703 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 4 n 7.6362 31.9747 25.7043 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 5 P -0.0668 30.2957 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 6 o 8.0185 29.8457 26.4703 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 7 e 7.8314 30.7275 26.4703 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 8 : 8.3069 8.8509 25.1466 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 9 r 7.9517 30.0874 25.7043 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 10 l -2.1432 27.0256 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 11 i -2.1473 27.0256 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 12 1 -2.6333 24.7300 36.4608 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 13 | -2.2221 5.1491 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 14 N 0.0330 35.4864 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 15 f -2.2482 30.2957 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 16 g 7.8780 32.8149 36.6426 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 17 d -1.7220 33.9892 36.6691 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 18 W -0.3179 38.6293 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 19 s 7.9648 26.2679 26.4703 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 20 c 7.9805 29.6062 26.4703 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 21 u 8.5568 33.1226 25.9126 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 22 3 -3.0940 26.9346 37.0185 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 23 ~ 10.9167 27.6923 12.0861 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 24 # -6.2845 26.8256 41.5515 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 25 O -0.4091 32.6414 34.6234 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 26 ` -4.7717 11.1466 9.3586 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 27 @ -1.9295 21.9941 40.6703 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 28 F -0.0904 31.2852 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 29 S -0.1573 27.1846 34.6234 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 30 p 7.8289 34.2969 36.6426 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 31 “ -0.0810 23.8481 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 32 % -2.7002 26.0861 36.6691 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 33 £ -0.3623 29.3797 33.8574 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 34 . 26.8784 8.8509 7.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 35 2 -2.6204 26.5445 36.4608 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 36 5 -2.1739 27.0340 36.4608 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 37 m 7.7233 37.7404 25.7043 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 38 V 0.0126 38.4306 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 39 6 -3.0073 25.4543 37.0185 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 40 w 8.4766 33.3756 25.1466 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 41 T -0.1359 29.3213 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 42 M -0.0632 38.3481 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 43 G -0.2714 32.4596 34.6234 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 44 b -2.3295 34.2969 36.6691 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 45 9 -2.9118 25.4543 37.0185 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 46 ; 8.3850 14.2083 31.9019 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 47 D 0.1718 31.6670 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 48 L 0.0987 31.4253 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 49 y 8.5549 35.2713 36.0849 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 50 ‘ -0.1462 11.4543 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 51 \ -7.5787 25.9043 47.8074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 52 R -0.0225 34.9552 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 53 < 0.2838 33.3574 33.3392 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 54 4 -2.2498 25.2460 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 55 8 -2.9423 25.5784 37.0185 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 56 0 -3.0994 25.5784 37.0185 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 57 A 0.1126 38.2648 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 58 E 0.1690 30.3867 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 59 B 0.1906 32.8991 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 60 v 8.3960 35.0559 25.1466 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 61 k -2.6853 30.6450 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 62 J -0.0158 32.1830 34.3734 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 63 U 0.1738 34.9371 34.3734 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 64 j -2.3824 21.4448 46.8414 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 65 ( -2.1004 12.8522 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 66 7 -2.0362 24.9383 35.9031 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 67 § -2.6081 29.7880 41.0522 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 68 $ -6.5676 25.1466 47.5392 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 69 € -0.3000 32.2596 34.6234 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 70 / -7.8131 25.1466 47.8074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 71 C -0.2207 30.3457 34.6234 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 72 * -2.2604 23.8663 24.9466 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 73 ” -0.3403 23.8481 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 74 ? -0.3242 23.4828 34.6234 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 75 { -2.1814 14.7395 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 76 } -2.7071 14.7395 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 77 , 25.4139 11.4543 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 78 I -0.1925 24.7300 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 79 ° -8.6000 16.4380 16.4380 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 80 K 0.1900 34.4476 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 81 H 0.2057 30.7457 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 82 q 7.6835 33.9892 36.6426 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 83 & 1.1721 26.8522 33.1574 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 84 ’ -0.6615 11.4543 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 85 [ -2.1269 12.8438 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 86 - 14.4184 24.9383 5.1491 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 87 Y -0.0487 32.1337 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 88 Q -0.1647 32.6414 42.0682 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 89 " 0.2969 20.7160 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 90 ! -2.1968 9.3586 36.6691 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 91 x 8.5864 32.6414 25.1466 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 92 ) -2.4310 12.8522 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 93 = 9.9815 32.6414 14.9395 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 94 + 2.2109 29.3213 29.3213 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 95 X -0.1728 35.2448 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 96 » 10.6179 28.6895 23.2328 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 97 ' 0.3916 8.0373 17.2435 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 98 ¢ -6.8692 24.4306 43.2055 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 99 Z -0.1816 26.2945 33.6074 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 100 > 0.3689 33.3574 33.3392 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 101 ® 0.2942 34.9371 34.3734 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 102 © -0.2571 34.9371 34.3734 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 103 ] -2.4111 12.8438 43.1478 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 104 é -4.8462 30.7275 39.2725 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 105 z 8.1559 25.4543 25.1466 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 106 _ 45.7091 40.0861 5.1491 -Courier_New_Bold.ttf 14 N 35.4864 33.6074 107 ¥ 0.0444 31.2700 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 1 t 1.8954 29.3297 34.9636 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 2 h -0.0714 33.1226 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 3 a 10.0506 31.0352 26.4703 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 4 n 10.1359 31.9747 25.7043 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 5 P 2.5839 30.2957 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 6 o 10.1431 29.8457 26.4703 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 7 e 10.2988 30.7275 26.4703 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 8 : 10.9763 8.8509 25.1466 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 9 r 9.8015 30.0874 25.7043 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 10 l 0.0258 27.0256 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 11 i -0.2158 27.0256 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 12 1 -0.2820 24.7300 36.4608 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 13 | 0.1210 5.1491 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 14 N 2.1956 35.4864 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 15 f 0.0742 30.2957 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 16 g 9.9445 32.8149 36.6426 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 17 d 0.0385 33.9892 36.6691 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 18 W 2.1826 38.6293 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 19 s 10.2334 26.2679 26.4703 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 20 c 10.2487 29.6062 26.4703 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 21 u 10.8201 33.1226 25.9126 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 22 3 -0.5779 26.9346 37.0185 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 23 ~ 13.3624 27.6923 12.0861 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 24 # -4.1943 26.8256 41.5515 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 25 O 1.9586 32.6414 34.6234 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 26 ` -2.5674 11.1466 9.3586 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 27 @ -0.0760 21.9941 40.6703 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 28 F 2.2809 31.2852 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 29 S 1.9660 27.1846 34.6234 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 30 p 10.1533 34.2969 36.6426 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 31 “ 2.1908 23.8481 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 32 % 0.0102 26.0861 36.6691 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 33 £ 2.1199 29.3797 33.8574 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 34 . 28.9098 8.8509 7.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 35 2 -0.8228 26.5445 36.4608 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 36 5 0.0696 27.0340 36.4608 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 37 m 10.4301 37.7404 25.7043 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 38 V 2.3801 38.4306 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 39 6 -0.5216 25.4543 37.0185 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 40 w 11.1588 33.3756 25.1466 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 41 T 2.2095 29.3213 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 42 M 2.2614 38.3481 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 43 G 1.9656 32.4596 34.6234 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 44 b -0.0482 34.2969 36.6691 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 45 9 -0.3473 25.4543 37.0185 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 46 ; 10.8474 14.2083 31.9019 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 47 D 2.1756 31.6670 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 48 L 2.2160 31.4253 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 49 y 10.8612 35.2713 36.0849 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 50 ‘ 2.0731 11.4543 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 51 \ -5.1875 25.9043 47.8074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 52 R 1.9648 34.9552 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 53 < 2.7150 33.3574 33.3392 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 54 4 -0.0350 25.2460 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 55 8 -0.3964 25.5784 37.0185 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 56 0 -0.6428 25.5784 37.0185 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 57 A 2.3416 38.2648 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 58 E 2.4172 30.3867 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 59 B 2.1955 32.8991 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 60 v 10.7499 35.0559 25.1466 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 61 k -0.0398 30.6450 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 62 J 2.2562 32.1830 34.3734 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 63 U 2.4312 34.9371 34.3734 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 64 j 0.1163 21.4448 46.8414 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 65 ( 0.2785 12.8522 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 66 7 -0.0380 24.9383 35.9031 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 67 § 0.1001 29.7880 41.0522 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 68 $ -4.1747 25.1466 47.5392 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 69 € 1.6403 32.2596 34.6234 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 70 / -5.3418 25.1466 47.8074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 71 C 2.0720 30.3457 34.6234 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 72 * -0.0131 23.8663 24.9466 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 73 ” 1.9400 23.8481 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 74 ? 2.0961 23.4828 34.6234 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 75 { -0.0672 14.7395 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 76 } -0.0955 14.7395 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 77 , 28.2640 11.4543 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 78 I 2.1902 24.7300 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 79 ° -6.5095 16.4380 16.4380 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 80 K 2.3100 34.4476 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 81 H 2.1771 30.7457 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 82 q 10.5691 33.9892 36.6426 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 83 & 3.7147 26.8522 33.1574 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 84 ’ 2.0809 11.4543 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 85 [ -0.0699 12.8438 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 86 - 16.8407 24.9383 5.1491 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 87 Y 1.9801 32.1337 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 88 Q 1.8941 32.6414 42.0682 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 89 " 2.0540 20.7160 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 90 ! -0.1617 9.3586 36.6691 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 91 x 10.8766 32.6414 25.1466 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 92 ) -0.0150 12.8522 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 93 = 12.0463 32.6414 14.9395 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 94 + 4.7504 29.3213 29.3213 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 95 X 2.1788 35.2448 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 96 » 12.6916 28.6895 23.2328 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 97 ' 2.2443 8.0373 17.2435 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 98 ¢ -4.7231 24.4306 43.2055 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 99 Z 2.2706 26.2945 33.6074 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 100 > 2.6145 33.3574 33.3392 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 101 ® 2.2275 34.9371 34.3734 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 102 © 2.2540 34.9371 34.3734 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 103 ] -0.0532 12.8438 43.1478 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 104 é -2.4935 30.7275 39.2725 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 105 z 10.9279 25.4543 25.1466 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 106 _ 48.1078 40.0861 5.1491 -Courier_New_Bold.ttf 15 f 30.2957 35.9031 107 ¥ 2.3215 31.2700 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 1 t -8.2787 29.3297 34.9636 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 2 h -10.1759 33.1226 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 3 a 0.0812 31.0352 26.4703 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 4 n -0.3614 31.9747 25.7043 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 5 P -8.0287 30.2957 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 6 o 0.1196 29.8457 26.4703 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 7 e -0.0919 30.7275 26.4703 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 8 : 0.4721 8.8509 25.1466 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 9 r 0.0315 30.0874 25.7043 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 10 l -10.4528 27.0256 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 11 i -10.4152 27.0256 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 12 1 -10.6758 24.7300 36.4608 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 13 | -10.5022 5.1491 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 14 N -7.7243 35.4864 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 15 f -10.1748 30.2957 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 16 g -0.0988 32.8149 36.6426 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 17 d -10.1071 33.9892 36.6691 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 18 W -7.8843 38.6293 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 19 s 0.0000 26.2679 26.4703 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 20 c 0.2145 29.6062 26.4703 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 21 u 0.4797 33.1226 25.9126 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 22 3 -10.6838 26.9346 37.0185 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 23 ~ 3.0004 27.6923 12.0861 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 24 # -14.4119 26.8256 41.5515 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 25 O -8.2305 32.6414 34.6234 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 26 ` -12.4443 11.1466 9.3586 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 27 @ -10.4224 21.9941 40.6703 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 28 F -7.8314 31.2852 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 29 S -8.3657 27.1846 34.6234 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 30 p -0.1228 34.2969 36.6426 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 31 “ -7.9918 23.8481 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 32 % -10.3921 26.0861 36.6691 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 33 £ -8.1861 29.3797 33.8574 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 34 . 18.5315 8.8509 7.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 35 2 -10.6291 26.5445 36.4608 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 36 5 -10.2307 27.0340 36.4608 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 37 m 0.0333 37.7404 25.7043 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 38 V -7.8213 38.4306 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 39 6 -10.7472 25.4543 37.0185 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 40 w 0.3222 33.3756 25.1466 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 41 T -7.9257 29.3213 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 42 M -7.9707 38.3481 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 43 G -8.3148 32.4596 34.6234 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 44 b -10.2117 34.2969 36.6691 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 45 9 -10.4627 25.4543 37.0185 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 46 ; 0.7907 14.2083 31.9019 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 47 D -7.9489 31.6670 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 48 L -7.7634 31.4253 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 49 y 0.2740 35.2713 36.0849 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 50 ‘ -8.2125 11.4543 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 51 \ -15.0870 25.9043 47.8074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 52 R -7.7450 34.9552 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 53 < -7.4978 33.3574 33.3392 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 54 4 -10.1615 25.2460 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 55 8 -10.8583 25.5784 37.0185 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 56 0 -11.0294 25.5784 37.0185 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 57 A -7.3990 38.2648 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 58 E -7.9003 30.3867 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 59 B -7.9448 32.8991 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 60 v 0.7067 35.0559 25.1466 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 61 k -10.3114 30.6450 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 62 J -7.9073 32.1830 34.3734 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 63 U -7.9383 34.9371 34.3734 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 64 j -10.1232 21.4448 46.8414 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 65 ( -10.3851 12.8522 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 66 7 -10.6548 24.9383 35.9031 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 67 § -10.1733 29.7880 41.0522 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 68 $ -14.3347 25.1466 47.5392 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 69 € -8.1933 32.2596 34.6234 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 70 / -15.1347 25.1466 47.8074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 71 C -8.2469 30.3457 34.6234 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 72 * -10.4528 23.8663 24.9466 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 73 ” -8.2148 23.8481 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 74 ? -8.0006 23.4828 34.6234 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 75 { -10.1366 14.7395 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 76 } -10.2729 14.7395 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 77 , 17.6024 11.4543 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 78 I -8.0314 24.7300 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 79 ° -16.4925 16.4380 16.4380 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 80 K -7.8492 34.4476 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 81 H -7.8377 30.7457 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 82 q -0.1178 33.9892 36.6426 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 83 & -6.5360 26.8522 33.1574 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 84 ’ -8.1646 11.4543 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 85 [ -9.8425 12.8438 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 86 - 6.6679 24.9383 5.1491 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 87 Y -7.7848 32.1337 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 88 Q -8.2592 32.6414 42.0682 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 89 " -7.8317 20.7160 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 90 ! -10.0050 9.3586 36.6691 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 91 x 0.5776 32.6414 25.1466 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 92 ) -10.0921 12.8522 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 93 = 1.6803 32.6414 14.9395 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 94 + -5.4155 29.3213 29.3213 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 95 X -7.7256 35.2448 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 96 » 2.7047 28.6895 23.2328 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 97 ' -7.8590 8.0373 17.2435 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 98 ¢ -15.2080 24.4306 43.2055 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 99 Z -7.8942 26.2945 33.6074 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 100 > -7.6100 33.3574 33.3392 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 101 ® -8.0287 34.9371 34.3734 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 102 © -8.1252 34.9371 34.3734 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 103 ] -10.2978 12.8438 43.1478 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 104 é -12.9607 30.7275 39.2725 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 105 z 0.4048 25.4543 25.1466 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 106 _ 37.8858 40.0861 5.1491 -Courier_New_Bold.ttf 16 g 32.8149 36.6426 107 ¥ -7.9063 31.2700 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 1 t 1.8247 29.3297 34.9636 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 2 h -0.0762 33.1226 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 3 a 10.2400 31.0352 26.4703 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 4 n 9.8068 31.9747 25.7043 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 5 P 1.9055 30.2957 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 6 o 10.1453 29.8457 26.4703 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 7 e 10.2317 30.7275 26.4703 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 8 : 10.6878 8.8509 25.1466 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 9 r 9.9893 30.0874 25.7043 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 10 l 0.0955 27.0256 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 11 i -0.2600 27.0256 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 12 1 -0.5989 24.7300 36.4608 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 13 | 0.1481 5.1491 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 14 N 2.2511 35.4864 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 15 f -0.0760 30.2957 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 16 g 10.2730 32.8149 36.6426 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 17 d -0.1130 33.9892 36.6691 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 18 W 2.3789 38.6293 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 19 s 10.2332 26.2679 26.4703 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 20 c 10.5168 29.6062 26.4703 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 21 u 10.9210 33.1226 25.9126 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 22 3 -0.5994 26.9346 37.0185 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 23 ~ 13.4295 27.6923 12.0861 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 24 # -4.2160 26.8256 41.5515 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 25 O 1.8701 32.6414 34.6234 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 26 ` -2.5392 11.1466 9.3586 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 27 @ -0.2686 21.9941 40.6703 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 28 F 2.2463 31.2852 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 29 S 1.7550 27.1846 34.6234 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 30 p 10.2291 34.2969 36.6426 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 31 “ 2.2467 23.8481 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 32 % 0.1000 26.0861 36.6691 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 33 £ 1.9271 29.3797 33.8574 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 34 . 28.6795 8.8509 7.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 35 2 -0.4706 26.5445 36.4608 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 36 5 -0.1449 27.0340 36.4608 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 37 m 10.4337 37.7404 25.7043 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 38 V 2.1890 38.4306 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 39 6 -0.6636 25.4543 37.0185 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 40 w 10.9758 33.3756 25.1466 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 41 T 2.1373 29.3213 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 42 M 2.3160 38.3481 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 43 G 2.3770 32.4596 34.6234 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 44 b -0.2228 34.2969 36.6691 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 45 9 -0.6263 25.4543 37.0185 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 46 ; 10.7222 14.2083 31.9019 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 47 D 2.3114 31.6670 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 48 L 2.4038 31.4253 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 49 y 10.7142 35.2713 36.0849 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 50 ‘ 2.3298 11.4543 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 51 \ -4.9941 25.9043 47.8074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 52 R 2.2665 34.9552 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 53 < 2.7537 33.3574 33.3392 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 54 4 -0.0353 25.2460 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 55 8 -0.9140 25.5784 37.0185 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 56 0 -0.4294 25.5784 37.0185 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 57 A 2.3757 38.2648 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 58 E 2.3234 30.3867 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 59 B 2.2897 32.8991 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 60 v 10.4522 35.0559 25.1466 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 61 k -0.0745 30.6450 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 62 J 2.1863 32.1830 34.3734 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 63 U 2.2772 34.9371 34.3734 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 64 j -0.1710 21.4448 46.8414 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 65 ( 0.4633 12.8522 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 66 7 0.3486 24.9383 35.9031 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 67 § -0.1516 29.7880 41.0522 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 68 $ -4.3620 25.1466 47.5392 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 69 € 2.3812 32.2596 34.6234 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 70 / -5.1166 25.1466 47.8074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 71 C 2.1249 30.3457 34.6234 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 72 * -0.3244 23.8663 24.9466 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 73 ” 1.8903 23.8481 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 74 ? 1.9849 23.4828 34.6234 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 75 { 0.1858 14.7395 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 76 } 0.0918 14.7395 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 77 , 28.2096 11.4543 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 78 I 2.6367 24.7300 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 79 ° -6.5302 16.4380 16.4380 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 80 K 2.0260 34.4476 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 81 H 2.4413 30.7457 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 82 q 9.9128 33.9892 36.6426 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 83 & 3.7258 26.8522 33.1574 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 84 ’ 2.0688 11.4543 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 85 [ -0.0249 12.8438 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 86 - 16.7996 24.9383 5.1491 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 87 Y 2.4857 32.1337 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 88 Q 2.0327 32.6414 42.0682 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 89 " 2.2340 20.7160 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 90 ! -0.0309 9.3586 36.6691 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 91 x 11.1134 32.6414 25.1466 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 92 ) -0.0449 12.8522 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 93 = 11.9000 32.6414 14.9395 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 94 + 4.7959 29.3213 29.3213 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 95 X 2.4143 35.2448 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 96 » 12.6889 28.6895 23.2328 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 97 ' 2.0522 8.0373 17.2435 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 98 ¢ -4.6366 24.4306 43.2055 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 99 Z 2.5599 26.2945 33.6074 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 100 > 2.6867 33.3574 33.3392 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 101 ® 2.2782 34.9371 34.3734 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 102 © 2.2984 34.9371 34.3734 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 103 ] -0.0269 12.8438 43.1478 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 104 é -2.5678 30.7275 39.2725 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 105 z 10.8110 25.4543 25.1466 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 106 _ 47.9148 40.0861 5.1491 -Courier_New_Bold.ttf 17 d 33.9892 36.6691 107 ¥ 2.4182 31.2700 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 1 t -1.0026 29.3297 34.9636 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 2 h -2.1800 33.1226 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 3 a 7.9108 31.0352 26.4703 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 4 n 8.0717 31.9747 25.7043 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 5 P -0.1371 30.2957 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 6 o 7.8914 29.8457 26.4703 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 7 e 7.8009 30.7275 26.4703 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 8 : 8.4482 8.8509 25.1466 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 9 r 7.8192 30.0874 25.7043 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 10 l -2.3986 27.0256 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 11 i -2.6228 27.0256 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 12 1 -2.5754 24.7300 36.4608 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 13 | -2.6443 5.1491 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 14 N -0.0640 35.4864 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 15 f -2.4104 30.2957 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 16 g 7.9393 32.8149 36.6426 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 17 d -2.2374 33.9892 36.6691 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 18 W 0.1502 38.6293 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 19 s 8.0250 26.2679 26.4703 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 20 c 7.8173 29.6062 26.4703 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 21 u 8.2763 33.1226 25.9126 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 22 3 -3.0024 26.9346 37.0185 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 23 ~ 10.8137 27.6923 12.0861 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 24 # -6.3364 26.8256 41.5515 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 25 O -0.2287 32.6414 34.6234 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 26 ` -5.2982 11.1466 9.3586 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 27 @ -2.6007 21.9941 40.6703 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 28 F 0.0928 31.2852 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 29 S -0.4140 27.1846 34.6234 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 30 p 7.6833 34.2969 36.6426 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 31 “ -0.2629 23.8481 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 32 % -2.5954 26.0861 36.6691 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 33 £ -0.0129 29.3797 33.8574 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 34 . 26.6812 8.8509 7.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 35 2 -2.9551 26.5445 36.4608 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 36 5 -2.7553 27.0340 36.4608 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 37 m 7.9846 37.7404 25.7043 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 38 V 0.0687 38.4306 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 39 6 -3.0475 25.4543 37.0185 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 40 w 8.2378 33.3756 25.1466 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 41 T 0.1696 29.3213 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 42 M 0.1546 38.3481 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 43 G -0.2532 32.4596 34.6234 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 44 b -2.3874 34.2969 36.6691 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 45 9 -3.1218 25.4543 37.0185 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 46 ; 8.6277 14.2083 31.9019 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 47 D 0.2400 31.6670 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 48 L -0.3285 31.4253 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 49 y 8.6990 35.2713 36.0849 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 50 ‘ -0.1708 11.4543 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 51 \ -7.3836 25.9043 47.8074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 52 R -0.0704 34.9552 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 53 < -0.2198 33.3574 33.3392 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 54 4 -2.1466 25.2460 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 55 8 -2.8498 25.5784 37.0185 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 56 0 -2.7070 25.5784 37.0185 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 57 A -0.0185 38.2648 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 58 E 0.1274 30.3867 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 59 B -0.0486 32.8991 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 60 v 8.3145 35.0559 25.1466 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 61 k -2.4343 30.6450 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 62 J 0.0681 32.1830 34.3734 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 63 U -0.2988 34.9371 34.3734 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 64 j -2.1957 21.4448 46.8414 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 65 ( -2.6030 12.8522 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 66 7 -2.3471 24.9383 35.9031 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 67 § -2.3121 29.7880 41.0522 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 68 $ -6.7841 25.1466 47.5392 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 69 € -0.1106 32.2596 34.6234 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 70 / -7.1260 25.1466 47.8074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 71 C -0.3382 30.3457 34.6234 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 72 * -2.1441 23.8663 24.9466 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 73 ” -0.2825 23.8481 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 74 ? -0.1199 23.4828 34.6234 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 75 { -2.3341 14.7395 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 76 } -2.2233 14.7395 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 77 , 26.0784 11.4543 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 78 I 0.1309 24.7300 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 79 ° -8.4073 16.4380 16.4380 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 80 K -0.2614 34.4476 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 81 H 0.2728 30.7457 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 82 q 7.6208 33.9892 36.6426 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 83 & 1.3448 26.8522 33.1574 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 84 ’ -0.1226 11.4543 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 85 [ -1.9298 12.8438 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 86 - 14.3403 24.9383 5.1491 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 87 Y -0.0501 32.1337 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 88 Q -0.0958 32.6414 42.0682 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 89 " 0.0294 20.7160 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 90 ! -2.2984 9.3586 36.6691 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 91 x 8.2935 32.6414 25.1466 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 92 ) -2.4612 12.8522 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 93 = 9.8452 32.6414 14.9395 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 94 + 2.5303 29.3213 29.3213 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 95 X 0.0626 35.2448 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 96 » 10.7602 28.6895 23.2328 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 97 ' -0.0486 8.0373 17.2435 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 98 ¢ -7.1323 24.4306 43.2055 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 99 Z 0.2040 26.2945 33.6074 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 100 > 0.4144 33.3574 33.3392 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 101 ® -0.1079 34.9371 34.3734 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 102 © -0.0042 34.9371 34.3734 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 103 ] -2.1646 12.8438 43.1478 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 104 é -5.1490 30.7275 39.2725 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 105 z 8.2026 25.4543 25.1466 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 106 _ 45.7295 40.0861 5.1491 -Courier_New_Bold.ttf 18 W 38.6293 33.6074 107 ¥ 0.0510 31.2700 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 1 t -8.3467 29.3297 34.9636 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 2 h -10.1456 33.1226 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 3 a 0.0042 31.0352 26.4703 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 4 n 0.4963 31.9747 25.7043 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 5 P -7.8688 30.2957 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 6 o -0.0242 29.8457 26.4703 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 7 e -0.2226 30.7275 26.4703 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 8 : 0.4946 8.8509 25.1466 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 9 r 0.1993 30.0874 25.7043 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 10 l -10.2786 27.0256 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 11 i -10.2619 27.0256 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 12 1 -10.7679 24.7300 36.4608 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 13 | -10.2989 5.1491 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 14 N -7.8372 35.4864 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 15 f -10.1071 30.2957 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 16 g -0.0050 32.8149 36.6426 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 17 d -10.2992 33.9892 36.6691 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 18 W -8.0704 38.6293 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 19 s 0.0545 26.2679 26.4703 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 20 c -0.1126 29.6062 26.4703 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 21 u 0.7862 33.1226 25.9126 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 22 3 -11.1555 26.9346 37.0185 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 23 ~ 2.7948 27.6923 12.0861 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 24 # -14.3939 26.8256 41.5515 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 25 O -8.3241 32.6414 34.6234 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 26 ` -12.7804 11.1466 9.3586 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 27 @ -10.1626 21.9941 40.6703 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 28 F -8.0982 31.2852 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 29 S -8.1531 27.1846 34.6234 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 30 p -0.3147 34.2969 36.6426 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 31 “ -8.2963 23.8481 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 32 % -10.3386 26.0861 36.6691 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 33 £ -8.0401 29.3797 33.8574 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 34 . 18.4291 8.8509 7.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 35 2 -10.5379 26.5445 36.4608 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 36 5 -10.2697 27.0340 36.4608 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 37 m -0.1000 37.7404 25.7043 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 38 V -7.8906 38.4306 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 39 6 -10.8306 25.4543 37.0185 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 40 w 0.3595 33.3756 25.1466 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 41 T -7.7942 29.3213 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 42 M -7.7422 38.3481 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 43 G -8.5354 32.4596 34.6234 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 44 b -10.2587 34.2969 36.6691 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 45 9 -10.5280 25.4543 37.0185 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 46 ; 0.2496 14.2083 31.9019 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 47 D -8.0876 31.6670 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 48 L -8.0383 31.4253 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 49 y 1.0772 35.2713 36.0849 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 50 ‘ -8.1047 11.4543 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 51 \ -15.0760 25.9043 47.8074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 52 R -7.5075 34.9552 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 53 < -7.5409 33.3574 33.3392 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 54 4 -10.3617 25.2460 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 55 8 -10.6675 25.5784 37.0185 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 56 0 -10.7939 25.5784 37.0185 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 57 A -8.1028 38.2648 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 58 E -7.7872 30.3867 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 59 B -7.9420 32.8991 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 60 v 0.5090 35.0559 25.1466 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 61 k -10.3674 30.6450 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 62 J -7.8614 32.1830 34.3734 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 63 U -7.7652 34.9371 34.3734 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 64 j -10.0472 21.4448 46.8414 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 65 ( -10.4218 12.8522 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 66 7 -10.1988 24.9383 35.9031 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 67 § -10.3429 29.7880 41.0522 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 68 $ -14.2876 25.1466 47.5392 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 69 € -8.1531 32.2596 34.6234 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 70 / -15.2737 25.1466 47.8074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 71 C -8.1183 30.3457 34.6234 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 72 * -10.0714 23.8663 24.9466 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 73 ” -8.0643 23.8481 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 74 ? -8.3389 23.4828 34.6234 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 75 { -9.8268 14.7395 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 76 } -10.2219 14.7395 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 77 , 17.5603 11.4543 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 78 I -7.7942 24.7300 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 79 ° -16.3827 16.4380 16.4380 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 80 K -7.9745 34.4476 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 81 H -7.6655 30.7457 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 82 q -0.1339 33.9892 36.6426 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 83 & -7.0089 26.8522 33.1574 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 84 ’ -8.0888 11.4543 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 85 [ -10.3646 12.8438 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 86 - 6.4960 24.9383 5.1491 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 87 Y -8.0262 32.1337 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 88 Q -8.1605 32.6414 42.0682 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 89 " -7.7687 20.7160 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 90 ! -10.4058 9.3586 36.6691 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 91 x 0.5604 32.6414 25.1466 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 92 ) -10.1576 12.8522 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 93 = 1.8954 32.6414 14.9395 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 94 + -5.5591 29.3213 29.3213 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 95 X -7.9013 35.2448 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 96 » 2.5383 28.6895 23.2328 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 97 ' -8.0774 8.0373 17.2435 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 98 ¢ -14.8895 24.4306 43.2055 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 99 Z -7.7570 26.2945 33.6074 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 100 > -7.1372 33.3574 33.3392 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 101 ® -7.6397 34.9371 34.3734 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 102 © -8.0517 34.9371 34.3734 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 103 ] -10.2942 12.8438 43.1478 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 104 é -12.4866 30.7275 39.2725 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 105 z 0.5805 25.4543 25.1466 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 106 _ 38.1789 40.0861 5.1491 -Courier_New_Bold.ttf 19 s 26.2679 26.4703 107 ¥ -7.8114 31.2700 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 1 t -8.3713 29.3297 34.9636 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 2 h -10.3119 33.1226 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 3 a -0.0417 31.0352 26.4703 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 4 n 0.0399 31.9747 25.7043 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 5 P -7.7128 30.2957 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 6 o -0.1347 29.8457 26.4703 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 7 e -0.2928 30.7275 26.4703 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 8 : 0.3778 8.8509 25.1466 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 9 r 0.0714 30.0874 25.7043 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 10 l -10.2859 27.0256 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 11 i -10.3596 27.0256 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 12 1 -10.7408 24.7300 36.4608 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 13 | -10.1635 5.1491 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 14 N -7.9361 35.4864 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 15 f -10.4158 30.2957 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 16 g 0.3229 32.8149 36.6426 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 17 d -10.1372 33.9892 36.6691 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 18 W -7.9290 38.6293 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 19 s -0.0245 26.2679 26.4703 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 20 c 0.0678 29.6062 26.4703 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 21 u 0.6042 33.1226 25.9126 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 22 3 -11.1014 26.9346 37.0185 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 23 ~ 3.1488 27.6923 12.0861 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 24 # -14.2429 26.8256 41.5515 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 25 O -8.3996 32.6414 34.6234 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 26 ` -12.6187 11.1466 9.3586 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 27 @ -10.0343 21.9941 40.6703 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 28 F -8.1483 31.2852 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 29 S -8.3399 27.1846 34.6234 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 30 p 0.0254 34.2969 36.6426 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 31 “ -8.3145 23.8481 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 32 % -10.2947 26.0861 36.6691 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 33 £ -8.0485 29.3797 33.8574 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 34 . 18.8000 8.8509 7.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 35 2 -10.7553 26.5445 36.4608 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 36 5 -10.3368 27.0340 36.4608 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 37 m -0.1570 37.7404 25.7043 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 38 V -7.9863 38.4306 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 39 6 -10.8831 25.4543 37.0185 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 40 w 1.0285 33.3756 25.1466 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 41 T -7.6456 29.3213 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 42 M -7.7219 38.3481 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 43 G -8.0985 32.4596 34.6234 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 44 b -10.3929 34.2969 36.6691 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 45 9 -10.8185 25.4543 37.0185 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 46 ; 0.5828 14.2083 31.9019 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 47 D -7.7422 31.6670 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 48 L -8.0140 31.4253 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 49 y 0.7445 35.2713 36.0849 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 50 ‘ -7.8379 11.4543 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 51 \ -15.1319 25.9043 47.8074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 52 R -7.7544 34.9552 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 53 < -7.7957 33.3574 33.3392 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 54 4 -10.2679 25.2460 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 55 8 -10.8747 25.5784 37.0185 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 56 0 -10.7435 25.5784 37.0185 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 57 A -8.0850 38.2648 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 58 E -7.7660 30.3867 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 59 B -7.9189 32.8991 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 60 v 0.5165 35.0559 25.1466 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 61 k -9.9902 30.6450 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 62 J -7.9668 32.1830 34.3734 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 63 U -7.9485 34.9371 34.3734 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 64 j -10.2198 21.4448 46.8414 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 65 ( -10.0654 12.8522 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 66 7 -9.8730 24.9383 35.9031 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 67 § -10.2516 29.7880 41.0522 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 68 $ -14.3916 25.1466 47.5392 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 69 € -8.4796 32.2596 34.6234 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 70 / -15.1194 25.1466 47.8074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 71 C -7.8638 30.3457 34.6234 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 72 * -10.3730 23.8663 24.9466 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 73 ” -8.3027 23.8481 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 74 ? -8.0719 23.4828 34.6234 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 75 { -10.3786 14.7395 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 76 } -9.8391 14.7395 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 77 , 17.9134 11.4543 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 78 I -8.0671 24.7300 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 79 ° -16.4390 16.4380 16.4380 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 80 K -7.8999 34.4476 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 81 H -7.8164 30.7457 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 82 q -0.2432 33.9892 36.6426 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 83 & -6.6583 26.8522 33.1574 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 84 ’ -7.9753 11.4543 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 85 [ -10.2072 12.8438 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 86 - 6.3811 24.9383 5.1491 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 87 Y -7.8744 32.1337 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 88 Q -7.6794 32.6414 42.0682 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 89 " -8.0514 20.7160 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 90 ! -10.3444 9.3586 36.6691 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 91 x 0.4651 32.6414 25.1466 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 92 ) -10.2191 12.8522 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 93 = 1.9332 32.6414 14.9395 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 94 + -5.6435 29.3213 29.3213 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 95 X -7.9104 35.2448 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 96 » 2.6768 28.6895 23.2328 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 97 ' -8.0014 8.0373 17.2435 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 98 ¢ -14.8400 24.4306 43.2055 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 99 Z -7.8414 26.2945 33.6074 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 100 > -7.5353 33.3574 33.3392 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 101 ® -7.8332 34.9371 34.3734 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 102 © -7.8824 34.9371 34.3734 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 103 ] -10.1339 12.8438 43.1478 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 104 é -12.5997 30.7275 39.2725 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 105 z 0.4704 25.4543 25.1466 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 106 _ 38.1327 40.0861 5.1491 -Courier_New_Bold.ttf 20 c 29.6062 26.4703 107 ¥ -7.9293 31.2700 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 1 t -8.9295 29.3297 34.9636 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 2 h -10.9178 33.1226 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 3 a -0.5506 31.0352 26.4703 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 4 n -0.7450 31.9747 25.7043 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 5 P -8.4670 30.2957 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 6 o -0.7432 29.8457 26.4703 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 7 e -0.5017 30.7275 26.4703 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 8 : 0.0812 8.8509 25.1466 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 9 r -0.3617 30.0874 25.7043 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 10 l -10.8773 27.0256 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 11 i -10.7945 27.0256 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 12 1 -11.6703 24.7300 36.4608 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 13 | -10.3939 5.1491 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 14 N -8.3737 35.4864 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 15 f -10.7408 30.2957 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 16 g -0.4317 32.8149 36.6426 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 17 d -10.7981 33.9892 36.6691 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 18 W -8.2949 38.6293 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 19 s -0.4423 26.2679 26.4703 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 20 c -0.5808 29.6062 26.4703 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 21 u -0.2103 33.1226 25.9126 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 22 3 -10.8454 26.9346 37.0185 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 23 ~ 2.3196 27.6923 12.0861 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 24 # -14.9868 26.8256 41.5515 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 25 O -8.5467 32.6414 34.6234 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 26 ` -13.1293 11.1466 9.3586 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 27 @ -10.6671 21.9941 40.6703 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 28 F -8.7815 31.2852 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 29 S -8.3776 27.1846 34.6234 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 30 p -0.5863 34.2969 36.6426 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 31 “ -8.9040 23.8481 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 32 % -10.9066 26.0861 36.6691 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 33 £ -8.6653 29.3797 33.8574 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 34 . 17.7481 8.8509 7.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 35 2 -11.2828 26.5445 36.4608 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 36 5 -10.7917 27.0340 36.4608 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 37 m -0.5418 37.7404 25.7043 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 38 V -8.5737 38.4306 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 39 6 -11.3318 25.4543 37.0185 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 40 w -0.0567 33.3756 25.1466 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 41 T -8.3451 29.3213 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 42 M -8.5848 38.3481 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 43 G -8.7652 32.4596 34.6234 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 44 b -10.7592 34.2969 36.6691 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 45 9 -11.2260 25.4543 37.0185 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 46 ; 0.0973 14.2083 31.9019 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 47 D -8.5540 31.6670 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 48 L -8.5564 31.4253 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 49 y -0.4056 35.2713 36.0849 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 50 ‘ -8.7075 11.4543 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 51 \ -15.9857 25.9043 47.8074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 52 R -8.7172 34.9552 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 53 < -8.1269 33.3574 33.3392 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 54 4 -10.5998 25.2460 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 55 8 -11.7927 25.5784 37.0185 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 56 0 -11.2586 25.5784 37.0185 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 57 A -8.5146 38.2648 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 58 E -8.5608 30.3867 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 59 B -8.4343 32.8991 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 60 v 0.2820 35.0559 25.1466 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 61 k -11.0358 30.6450 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 62 J -8.1236 32.1830 34.3734 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 63 U -8.4251 34.9371 34.3734 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 64 j -10.8639 21.4448 46.8414 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 65 ( -10.7712 12.8522 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 66 7 -10.5099 24.9383 35.9031 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 67 § -11.0196 29.7880 41.0522 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 68 $ -14.8713 25.1466 47.5392 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 69 € -8.7280 32.2596 34.6234 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 70 / -15.6061 25.1466 47.8074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 71 C -8.7108 30.3457 34.6234 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 72 * -10.6399 23.8663 24.9466 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 73 ” -8.8354 23.8481 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 74 ? -8.4750 23.4828 34.6234 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 75 { -10.6777 14.7395 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 76 } -10.9085 14.7395 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 77 , 17.1987 11.4543 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 78 I -8.7680 24.7300 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 79 ° -16.8653 16.4380 16.4380 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 80 K -8.4636 34.4476 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 81 H -8.2106 30.7457 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 82 q -0.7602 33.9892 36.6426 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 83 & -7.7176 26.8522 33.1574 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 84 ’ -8.7822 11.4543 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 85 [ -10.8979 12.8438 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 86 - 6.2523 24.9383 5.1491 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 87 Y -8.4156 32.1337 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 88 Q -8.9368 32.6414 42.0682 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 89 " -8.2598 20.7160 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 90 ! -10.8291 9.3586 36.6691 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 91 x -0.0676 32.6414 25.1466 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 92 ) -10.7434 12.8522 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 93 = 1.2421 32.6414 14.9395 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 94 + -6.2660 29.3213 29.3213 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 95 X -8.2281 35.2448 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 96 » 2.0084 28.6895 23.2328 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 97 ' -8.6947 8.0373 17.2435 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 98 ¢ -15.4610 24.4306 43.2055 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 99 Z -8.7657 26.2945 33.6074 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 100 > -8.1899 33.3574 33.3392 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 101 ® -8.3292 34.9371 34.3734 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 102 © -8.3664 34.9371 34.3734 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 103 ] -10.7013 12.8438 43.1478 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 104 é -13.5564 30.7275 39.2725 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 105 z 0.2493 25.4543 25.1466 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 106 _ 37.4041 40.0861 5.1491 -Courier_New_Bold.ttf 21 u 33.1226 25.9126 107 ¥ -8.3033 31.2700 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 1 t 2.1275 29.3297 34.9636 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 2 h 0.5462 33.1226 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 3 a 10.6322 31.0352 26.4703 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 4 n 10.8348 31.9747 25.7043 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 5 P 2.7584 30.2957 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 6 o 10.7603 29.8457 26.4703 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 7 e 10.6314 30.7275 26.4703 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 8 : 11.3856 8.8509 25.1466 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 9 r 10.3091 30.0874 25.7043 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 10 l 0.7088 27.0256 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 11 i 0.4787 27.0256 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 12 1 -0.3282 24.7300 36.4608 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 13 | 0.3942 5.1491 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 14 N 2.8506 35.4864 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 15 f 0.7866 30.2957 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 16 g 10.6984 32.8149 36.6426 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 17 d 0.7630 33.9892 36.6691 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 18 W 2.8181 38.6293 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 19 s 10.6782 26.2679 26.4703 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 20 c 10.7403 29.6062 26.4703 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 21 u 11.2772 33.1226 25.9126 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 22 3 0.1521 26.9346 37.0185 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 23 ~ 14.1106 27.6923 12.0861 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 24 # -3.6695 26.8256 41.5515 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 25 O 2.5695 32.6414 34.6234 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 26 ` -1.8334 11.1466 9.3586 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 27 @ 0.1208 21.9941 40.6703 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 28 F 2.9174 31.2852 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 29 S 2.6386 27.1846 34.6234 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 30 p 10.7411 34.2969 36.6426 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 31 “ 2.5830 23.8481 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 32 % 0.8217 26.0861 36.6691 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 33 £ 2.5310 29.3797 33.8574 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 34 . 29.3511 8.8509 7.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 35 2 -0.0769 26.5445 36.4608 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 36 5 0.3052 27.0340 36.4608 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 37 m 10.7597 37.7404 25.7043 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 38 V 3.0823 38.4306 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 39 6 -0.0468 25.4543 37.0185 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 40 w 10.9907 33.3756 25.1466 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 41 T 2.6906 29.3213 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 42 M 2.6536 38.3481 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 43 G 2.8115 32.4596 34.6234 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 44 b 0.5665 34.2969 36.6691 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 45 9 -0.2970 25.4543 37.0185 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 46 ; 11.4501 14.2083 31.9019 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 47 D 2.7009 31.6670 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 48 L 3.0197 31.4253 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 49 y 11.2257 35.2713 36.0849 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 50 ‘ 3.0759 11.4543 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 51 \ -4.5112 25.9043 47.8074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 52 R 2.6921 34.9552 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 53 < 3.4417 33.3574 33.3392 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 54 4 0.6521 25.2460 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 55 8 -0.0023 25.5784 37.0185 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 56 0 -0.3411 25.5784 37.0185 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 57 A 3.0802 38.2648 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 58 E 3.1176 30.3867 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 59 B 2.8137 32.8991 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 60 v 11.0843 35.0559 25.1466 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 61 k 0.7301 30.6450 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 62 J 3.1345 32.1830 34.3734 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 63 U 2.5249 34.9371 34.3734 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 64 j 0.3678 21.4448 46.8414 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 65 ( 0.6549 12.8522 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 66 7 0.6351 24.9383 35.9031 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 67 § 0.5706 29.7880 41.0522 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 68 $ -3.4512 25.1466 47.5392 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 69 € 2.3567 32.2596 34.6234 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 70 / -4.6428 25.1466 47.8074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 71 C 2.2173 30.3457 34.6234 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 72 * 0.7200 23.8663 24.9466 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 73 ” 2.5070 23.8481 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 74 ? 2.5135 23.4828 34.6234 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 75 { 0.4034 14.7395 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 76 } 0.5654 14.7395 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 77 , 28.5427 11.4543 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 78 I 2.9835 24.7300 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 79 ° -5.5247 16.4380 16.4380 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 80 K 2.9715 34.4476 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 81 H 3.1885 30.7457 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 82 q 10.6208 33.9892 36.6426 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 83 & 4.1533 26.8522 33.1574 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 84 ’ 2.6219 11.4543 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 85 [ 0.4776 12.8438 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 86 - 17.6031 24.9383 5.1491 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 87 Y 2.7050 32.1337 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 88 Q 2.7805 32.6414 42.0682 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 89 " 2.7221 20.7160 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 90 ! 0.5294 9.3586 36.6691 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 91 x 11.3070 32.6414 25.1466 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 92 ) 0.4475 12.8522 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 93 = 12.7057 32.6414 14.9395 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 94 + 5.4713 29.3213 29.3213 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 95 X 2.6375 35.2448 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 96 » 13.0108 28.6895 23.2328 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 97 ' 2.7023 8.0373 17.2435 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 98 ¢ -4.0107 24.4306 43.2055 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 99 Z 2.5822 26.2945 33.6074 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 100 > 3.3324 33.3574 33.3392 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 101 ® 3.0100 34.9371 34.3734 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 102 © 2.6976 34.9371 34.3734 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 103 ] 0.6813 12.8438 43.1478 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 104 é -2.0374 30.7275 39.2725 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 105 z 11.6574 25.4543 25.1466 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 106 _ 48.8501 40.0861 5.1491 -Courier_New_Bold.ttf 22 3 26.9346 37.0185 107 ¥ 2.9498 31.2700 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 1 t -11.4748 29.3297 34.9636 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 2 h -13.5204 33.1226 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 3 a -3.0428 31.0352 26.4703 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 4 n -2.9820 31.9747 25.7043 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 5 P -10.9588 30.2957 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 6 o -2.7990 29.8457 26.4703 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 7 e -3.3300 30.7275 26.4703 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 8 : -2.3043 8.8509 25.1466 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 9 r -2.7123 30.0874 25.7043 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 10 l -13.3535 27.0256 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 11 i -13.3879 27.0256 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 12 1 -13.6730 24.7300 36.4608 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 13 | -13.5102 5.1491 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 14 N -10.9931 35.4864 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 15 f -13.2702 30.2957 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 16 g -3.1214 32.8149 36.6426 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 17 d -13.3385 33.9892 36.6691 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 18 W -10.9648 38.6293 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 19 s -3.2287 26.2679 26.4703 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 20 c -2.9137 29.6062 26.4703 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 21 u -2.4641 33.1226 25.9126 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 22 3 -13.9868 26.9346 37.0185 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 23 ~ -0.2323 27.6923 12.0861 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 24 # -17.2140 26.8256 41.5515 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 25 O -11.2890 32.6414 34.6234 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 26 ` -15.7897 11.1466 9.3586 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 27 @ -13.2962 21.9941 40.6703 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 28 F -10.9721 31.2852 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 29 S -10.9766 27.1846 34.6234 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 30 p -3.1572 34.2969 36.6426 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 31 “ -11.3757 23.8481 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 32 % -12.9963 26.0861 36.6691 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 33 £ -11.2694 29.3797 33.8574 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 34 . 15.4722 8.8509 7.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 35 2 -13.6081 26.5445 36.4608 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 36 5 -13.3315 27.0340 36.4608 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 37 m -3.0421 37.7404 25.7043 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 38 V -11.0862 38.4306 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 39 6 -13.8408 25.4543 37.0185 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 40 w -2.3609 33.3756 25.1466 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 41 T -11.1779 29.3213 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 42 M -10.9037 38.3481 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 43 G -11.2690 32.4596 34.6234 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 44 b -13.0322 34.2969 36.6691 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 45 9 -13.9071 25.4543 37.0185 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 46 ; -2.5879 14.2083 31.9019 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 47 D -10.8990 31.6670 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 48 L -10.8137 31.4253 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 49 y -2.1389 35.2713 36.0849 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 50 ‘ -11.3586 11.4543 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 51 \ -18.4128 25.9043 47.8074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 52 R -10.7243 34.9552 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 53 < -10.8416 33.3574 33.3392 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 54 4 -12.9481 25.2460 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 55 8 -13.8970 25.5784 37.0185 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 56 0 -13.5160 25.5784 37.0185 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 57 A -11.3491 38.2648 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 58 E -10.7710 30.3867 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 59 B -10.9879 32.8991 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 60 v -2.3937 35.0559 25.1466 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 61 k -13.2791 30.6450 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 62 J -11.3917 32.1830 34.3734 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 63 U -10.8217 34.9371 34.3734 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 64 j -13.2173 21.4448 46.8414 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 65 ( -13.3374 12.8522 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 66 7 -13.1267 24.9383 35.9031 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 67 § -13.1790 29.7880 41.0522 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 68 $ -17.2906 25.1466 47.5392 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 69 € -11.1249 32.2596 34.6234 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 70 / -18.3284 25.1466 47.8074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 71 C -11.5173 30.3457 34.6234 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 72 * -13.0399 23.8663 24.9466 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 73 ” -11.1056 23.8481 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 74 ? -11.4559 23.4828 34.6234 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 75 { -13.2518 14.7395 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 76 } -13.3444 14.7395 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 77 , 14.8850 11.4543 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 78 I -11.0256 24.7300 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 79 ° -19.9805 16.4380 16.4380 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 80 K -11.1196 34.4476 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 81 H -10.8900 30.7457 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 82 q -3.0585 33.9892 36.6426 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 83 & -9.6191 26.8522 33.1574 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 84 ’ -11.1944 11.4543 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 85 [ -13.2568 12.8438 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 86 - 3.5651 24.9383 5.1491 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 87 Y -11.1015 32.1337 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 88 Q -11.1148 32.6414 42.0682 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 89 " -10.8600 20.7160 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 90 ! -13.3222 9.3586 36.6691 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 91 x -2.4455 32.6414 25.1466 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 92 ) -13.4098 12.8522 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 93 = -1.1248 32.6414 14.9395 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 94 + -8.5152 29.3213 29.3213 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 95 X -11.0092 35.2448 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 96 » -0.6361 28.6895 23.2328 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 97 ' -11.1516 8.0373 17.2435 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 98 ¢ -18.0295 24.4306 43.2055 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 99 Z -11.0902 26.2945 33.6074 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 100 > -10.6971 33.3574 33.3392 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 101 ® -10.9400 34.9371 34.3734 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 102 © -11.2114 34.9371 34.3734 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 103 ] -13.2484 12.8438 43.1478 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 104 é -15.8222 30.7275 39.2725 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 105 z -2.2518 25.4543 25.1466 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 106 _ 34.5799 40.0861 5.1491 -Courier_New_Bold.ttf 23 ~ 27.6923 12.0861 107 ¥ -10.7949 31.2700 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 1 t 6.0471 29.3297 34.9636 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 2 h 4.1877 33.1226 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 3 a 14.2660 31.0352 26.4703 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 4 n 14.4634 31.9747 25.7043 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 5 P 6.5473 30.2957 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 6 o 14.1491 29.8457 26.4703 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 7 e 14.5360 30.7275 26.4703 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 8 : 15.0478 8.8509 25.1466 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 9 r 14.4560 30.0874 25.7043 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 10 l 4.2572 27.0256 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 11 i 4.5237 27.0256 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 12 1 3.3046 24.7300 36.4608 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 13 | 4.1852 5.1491 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 14 N 6.4676 35.4864 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 15 f 4.3610 30.2957 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 16 g 14.0483 32.8149 36.6426 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 17 d 4.1631 33.9892 36.6691 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 18 W 6.4798 38.6293 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 19 s 14.2271 26.2679 26.4703 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 20 c 14.4949 29.6062 26.4703 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 21 u 15.1263 33.1226 25.9126 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 22 3 3.8637 26.9346 37.0185 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 23 ~ 17.4352 27.6923 12.0861 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 24 # 0.0162 26.8256 41.5515 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 25 O 6.1727 32.6414 34.6234 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 26 ` 1.9384 11.1466 9.3586 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 27 @ 4.1830 21.9941 40.6703 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 28 F 6.5061 31.2852 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 29 S 6.2134 27.1846 34.6234 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 30 p 14.1442 34.2969 36.6426 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 31 “ 6.1343 23.8481 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 32 % 4.1900 26.0861 36.6691 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 33 £ 6.4998 29.3797 33.8574 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 34 . 32.6619 8.8509 7.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 35 2 3.5400 26.5445 36.4608 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 36 5 3.7645 27.0340 36.4608 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 37 m 14.2947 37.7404 25.7043 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 38 V 6.3421 38.4306 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 39 6 3.3756 25.4543 37.0185 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 40 w 14.7508 33.3756 25.1466 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 41 T 6.2871 29.3213 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 42 M 6.4441 38.3481 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 43 G 6.4432 32.4596 34.6234 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 44 b 4.0571 34.2969 36.6691 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 45 9 3.3160 25.4543 37.0185 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 46 ; 14.8310 14.2083 31.9019 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 47 D 5.7647 31.6670 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 48 L 6.5737 31.4253 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 49 y 14.9682 35.2713 36.0849 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 50 ‘ 6.4753 11.4543 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 51 \ -0.8566 25.9043 47.8074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 52 R 6.6400 34.9552 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 53 < 6.7118 33.3574 33.3392 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 54 4 3.7562 25.2460 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 55 8 3.6837 25.5784 37.0185 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 56 0 3.5744 25.5784 37.0185 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 57 A 6.4046 38.2648 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 58 E 6.2685 30.3867 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 59 B 6.3791 32.8991 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 60 v 14.9605 35.0559 25.1466 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 61 k 4.3115 30.6450 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 62 J 6.3976 32.1830 34.3734 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 63 U 6.4448 34.9371 34.3734 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 64 j 3.8416 21.4448 46.8414 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 65 ( 4.0515 12.8522 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 66 7 4.2387 24.9383 35.9031 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 67 § 4.0107 29.7880 41.0522 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 68 $ 0.2305 25.1466 47.5392 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 69 € 6.0985 32.2596 34.6234 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 70 / -0.7435 25.1466 47.8074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 71 C 6.5569 30.3457 34.6234 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 72 * 3.8799 23.8663 24.9466 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 73 ” 6.1031 23.8481 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 74 ? 6.2699 23.4828 34.6234 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 75 { 4.4091 14.7395 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 76 } 4.2033 14.7395 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 77 , 31.8192 11.4543 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 78 I 6.4970 24.7300 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 79 ° -2.0456 16.4380 16.4380 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 80 K 6.3068 34.4476 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 81 H 6.4278 30.7457 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 82 q 14.0561 33.9892 36.6426 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 83 & 7.6163 26.8522 33.1574 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 84 ’ 6.2315 11.4543 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 85 [ 4.1970 12.8438 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 86 - 21.1823 24.9383 5.1491 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 87 Y 6.4755 32.1337 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 88 Q 6.2769 32.6414 42.0682 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 89 " 6.7061 20.7160 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 90 ! 4.0634 9.3586 36.6691 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 91 x 14.4382 32.6414 25.1466 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 92 ) 3.9384 12.8522 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 93 = 16.0500 32.6414 14.9395 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 94 + 8.9965 29.3213 29.3213 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 95 X 6.3564 35.2448 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 96 » 16.9946 28.6895 23.2328 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 97 ' 6.2308 8.0373 17.2435 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 98 ¢ -0.4359 24.4306 43.2055 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 99 Z 6.3861 26.2945 33.6074 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 100 > 7.1982 33.3574 33.3392 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 101 ® 6.2994 34.9371 34.3734 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 102 © 6.7068 34.9371 34.3734 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 103 ] 4.3101 12.8438 43.1478 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 104 é 1.5158 30.7275 39.2725 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 105 z 15.1669 25.4543 25.1466 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 106 _ 52.3208 40.0861 5.1491 -Courier_New_Bold.ttf 24 # 26.8256 41.5515 107 ¥ 6.2206 31.2700 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 1 t -0.4657 29.3297 34.9636 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 2 h -2.0217 33.1226 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 3 a 8.3580 31.0352 26.4703 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 4 n 8.3330 31.9747 25.7043 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 5 P 0.4844 30.2957 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 6 o 8.1184 29.8457 26.4703 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 7 e 8.1614 30.7275 26.4703 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 8 : 8.5366 8.8509 25.1466 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 9 r 8.1916 30.0874 25.7043 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 10 l -1.8459 27.0256 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 11 i -1.7695 27.0256 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 12 1 -2.4534 24.7300 36.4608 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 13 | -2.3307 5.1491 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 14 N 0.8307 35.4864 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 15 f -2.0188 30.2957 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 16 g 7.9663 32.8149 36.6426 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 17 d -2.1565 33.9892 36.6691 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 18 W 0.3988 38.6293 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 19 s 8.2413 26.2679 26.4703 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 20 c 8.2773 29.6062 26.4703 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 21 u 8.5215 33.1226 25.9126 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 22 3 -2.5038 26.9346 37.0185 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 23 ~ 11.2499 27.6923 12.0861 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 24 # -6.3771 26.8256 41.5515 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 25 O 0.2466 32.6414 34.6234 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 26 ` -4.9689 11.1466 9.3586 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 27 @ -2.3381 21.9941 40.6703 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 28 F 0.3097 31.2852 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 29 S 0.1099 27.1846 34.6234 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 30 p 8.4612 34.2969 36.6426 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 31 “ 0.2385 23.8481 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 32 % -2.2383 26.0861 36.6691 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 33 £ -0.0499 29.3797 33.8574 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 34 . 26.5703 8.8509 7.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 35 2 -2.6618 26.5445 36.4608 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 36 5 -1.9358 27.0340 36.4608 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 37 m 8.2721 37.7404 25.7043 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 38 V 0.2922 38.4306 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 39 6 -2.6808 25.4543 37.0185 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 40 w 8.5054 33.3756 25.1466 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 41 T 0.2500 29.3213 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 42 M 0.2545 38.3481 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 43 G 0.1353 32.4596 34.6234 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 44 b -2.0198 34.2969 36.6691 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 45 9 -2.6163 25.4543 37.0185 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 46 ; 8.3855 14.2083 31.9019 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 47 D 0.1299 31.6670 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 48 L 0.4219 31.4253 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 49 y 8.9495 35.2713 36.0849 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 50 ‘ 0.1071 11.4543 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 51 \ -7.2980 25.9043 47.8074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 52 R 0.5142 34.9552 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 53 < 0.3727 33.3574 33.3392 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 54 4 -1.8941 25.2460 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 55 8 -2.8958 25.5784 37.0185 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 56 0 -2.8389 25.5784 37.0185 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 57 A 0.1862 38.2648 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 58 E 0.3357 30.3867 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 59 B 0.5707 32.8991 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 60 v 8.7010 35.0559 25.1466 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 61 k -1.8586 30.6450 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 62 J 0.6194 32.1830 34.3734 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 63 U 0.2328 34.9371 34.3734 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 64 j -2.0170 21.4448 46.8414 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 65 ( -2.1056 12.8522 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 66 7 -2.0600 24.9383 35.9031 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 67 § -2.0160 29.7880 41.0522 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 68 $ -6.4655 25.1466 47.5392 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 69 € 0.1084 32.2596 34.6234 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 70 / -7.2064 25.1466 47.8074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 71 C 0.0033 30.3457 34.6234 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 72 * -2.1689 23.8663 24.9466 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 73 ” -0.0473 23.8481 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 74 ? 0.2498 23.4828 34.6234 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 75 { -1.7362 14.7395 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 76 } -1.8674 14.7395 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 77 , 25.8478 11.4543 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 78 I 0.1601 24.7300 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 79 ° -8.4030 16.4380 16.4380 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 80 K 0.3196 34.4476 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 81 H 0.5244 30.7457 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 82 q 8.1261 33.9892 36.6426 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 83 & 1.4902 26.8522 33.1574 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 84 ’ -0.1871 11.4543 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 85 [ -1.7366 12.8438 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 86 - 14.7468 24.9383 5.1491 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 87 Y 0.1758 32.1337 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 88 Q -0.2075 32.6414 42.0682 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 89 " 0.3669 20.7160 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 90 ! -1.9061 9.3586 36.6691 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 91 x 8.8459 32.6414 25.1466 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 92 ) -2.2538 12.8522 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 93 = 9.8955 32.6414 14.9395 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 94 + 2.6858 29.3213 29.3213 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 95 X 0.1518 35.2448 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 96 » 10.2668 28.6895 23.2328 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 97 ' 0.3704 8.0373 17.2435 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 98 ¢ -6.3934 24.4306 43.2055 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 99 Z 0.4681 26.2945 33.6074 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 100 > 0.6123 33.3574 33.3392 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 101 ® 0.2986 34.9371 34.3734 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 102 © 0.0937 34.9371 34.3734 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 103 ] -2.0764 12.8438 43.1478 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 104 é -4.6928 30.7275 39.2725 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 105 z 8.3897 25.4543 25.1466 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 106 _ 46.2753 40.0861 5.1491 -Courier_New_Bold.ttf 25 O 32.6414 34.6234 107 ¥ 0.0205 31.2700 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 1 t 4.1611 29.3297 34.9636 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 2 h 2.7972 33.1226 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 3 a 12.8333 31.0352 26.4703 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 4 n 12.7734 31.9747 25.7043 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 5 P 4.6553 30.2957 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 6 o 12.9425 29.8457 26.4703 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 7 e 12.8763 30.7275 26.4703 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 8 : 13.2654 8.8509 25.1466 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 9 r 12.7049 30.0874 25.7043 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 10 l 2.7706 27.0256 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 11 i 2.4310 27.0256 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 12 1 1.9327 24.7300 36.4608 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 13 | 2.6803 5.1491 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 14 N 4.5943 35.4864 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 15 f 2.7744 30.2957 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 16 g 12.8461 32.8149 36.6426 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 17 d 2.5291 33.9892 36.6691 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 18 W 4.8790 38.6293 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 19 s 12.6349 26.2679 26.4703 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 20 c 12.8327 29.6062 26.4703 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 21 u 13.2268 33.1226 25.9126 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 22 3 2.2167 26.9346 37.0185 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 23 ~ 15.8712 27.6923 12.0861 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 24 # -1.5502 26.8256 41.5515 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 25 O 4.5887 32.6414 34.6234 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 26 ` 0.1756 11.1466 9.3586 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 27 @ 2.5246 21.9941 40.6703 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 28 F 4.7879 31.2852 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 29 S 4.4265 27.1846 34.6234 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 30 p 12.6150 34.2969 36.6426 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 31 “ 4.5972 23.8481 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 32 % 2.9159 26.0861 36.6691 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 33 £ 4.7001 29.3797 33.8574 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 34 . 31.1321 8.8509 7.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 35 2 2.1590 26.5445 36.4608 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 36 5 2.6548 27.0340 36.4608 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 37 m 12.8379 37.7404 25.7043 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 38 V 5.0247 38.4306 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 39 6 2.1002 25.4543 37.0185 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 40 w 13.5225 33.3756 25.1466 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 41 T 4.7837 29.3213 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 42 M 4.9375 38.3481 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 43 G 4.6139 32.4596 34.6234 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 44 b 2.4565 34.2969 36.6691 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 45 9 2.0527 25.4543 37.0185 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 46 ; 13.2775 14.2083 31.9019 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 47 D 5.1275 31.6670 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 48 L 4.8547 31.4253 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 49 y 13.4308 35.2713 36.0849 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 50 ‘ 4.6480 11.4543 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 51 \ -2.3174 25.9043 47.8074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 52 R 5.1897 34.9552 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 53 < 5.1548 33.3574 33.3392 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 54 4 2.6133 25.2460 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 55 8 2.0660 25.5784 37.0185 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 56 0 2.2959 25.5784 37.0185 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 57 A 4.8336 38.2648 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 58 E 4.8862 30.3867 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 59 B 4.9582 32.8991 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 60 v 13.4343 35.0559 25.1466 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 61 k 2.7165 30.6450 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 62 J 4.7679 32.1830 34.3734 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 63 U 4.6636 34.9371 34.3734 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 64 j 2.6631 21.4448 46.8414 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 65 ( 2.5626 12.8522 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 66 7 2.4582 24.9383 35.9031 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 67 § 2.5750 29.7880 41.0522 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 68 $ -1.5981 25.1466 47.5392 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 69 € 4.7936 32.2596 34.6234 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 70 / -2.8172 25.1466 47.8074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 71 C 4.6250 30.3457 34.6234 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 72 * 2.6145 23.8663 24.9466 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 73 ” 4.6569 23.8481 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 74 ? 4.1861 23.4828 34.6234 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 75 { 2.5852 14.7395 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 76 } 2.5520 14.7395 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 77 , 30.2634 11.4543 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 78 I 4.8861 24.7300 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 79 ° -3.7078 16.4380 16.4380 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 80 K 4.5668 34.4476 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 81 H 4.9407 30.7457 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 82 q 12.8780 33.9892 36.6426 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 83 & 5.7972 26.8522 33.1574 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 84 ’ 4.5854 11.4543 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 85 [ 2.6674 12.8438 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 86 - 19.5219 24.9383 5.1491 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 87 Y 4.9268 32.1337 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 88 Q 4.5171 32.6414 42.0682 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 89 " 4.7382 20.7160 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 90 ! 2.6586 9.3586 36.6691 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 91 x 13.1248 32.6414 25.1466 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 92 ) 2.7460 12.8522 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 93 = 14.5002 32.6414 14.9395 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 94 + 7.2290 29.3213 29.3213 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 95 X 4.7619 35.2448 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 96 » 15.1495 28.6895 23.2328 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 97 ' 4.9819 8.0373 17.2435 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 98 ¢ -2.2862 24.4306 43.2055 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 99 Z 4.7867 26.2945 33.6074 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 100 > 5.2369 33.3574 33.3392 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 101 ® 4.6477 34.9371 34.3734 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 102 © 4.9273 34.9371 34.3734 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 103 ] 2.8054 12.8438 43.1478 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 104 é -0.1274 30.7275 39.2725 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 105 z 13.4168 25.4543 25.1466 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 106 _ 50.7370 40.0861 5.1491 -Courier_New_Bold.ttf 26 ` 11.1466 9.3586 107 ¥ 4.9857 31.2700 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 1 t 1.6055 29.3297 34.9636 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 2 h -0.1562 33.1226 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 3 a 9.9445 31.0352 26.4703 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 4 n 10.2668 31.9747 25.7043 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 5 P 2.1915 30.2957 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 6 o 10.2345 29.8457 26.4703 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 7 e 10.4950 30.7275 26.4703 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 8 : 10.8047 8.8509 25.1466 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 9 r 10.1284 30.0874 25.7043 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 10 l -0.1543 27.0256 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 11 i 0.1898 27.0256 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 12 1 -0.6977 24.7300 36.4608 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 13 | -0.0714 5.1491 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 14 N 2.1214 35.4864 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 15 f -0.0560 30.2957 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 16 g 9.9790 32.8149 36.6426 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 17 d -0.2486 33.9892 36.6691 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 18 W 2.0519 38.6293 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 19 s 10.4216 26.2679 26.4703 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 20 c 10.0414 29.6062 26.4703 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 21 u 10.5315 33.1226 25.9126 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 22 3 -0.4534 26.9346 37.0185 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 23 ~ 13.4059 27.6923 12.0861 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 24 # -4.2368 26.8256 41.5515 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 25 O 2.1226 32.6414 34.6234 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 26 ` -2.7087 11.1466 9.3586 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 27 @ -0.1686 21.9941 40.6703 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 28 F 2.1993 31.2852 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 29 S 2.3580 27.1846 34.6234 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 30 p 9.9300 34.2969 36.6426 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 31 “ 2.0214 23.8481 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 32 % -0.3259 26.0861 36.6691 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 33 £ 1.8089 29.3797 33.8574 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 34 . 28.5890 8.8509 7.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 35 2 -0.7125 26.5445 36.4608 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 36 5 0.1154 27.0340 36.4608 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 37 m 9.8193 37.7404 25.7043 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 38 V 2.2674 38.4306 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 39 6 -0.5277 25.4543 37.0185 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 40 w 10.9035 33.3756 25.1466 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 41 T 2.0493 29.3213 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 42 M 2.3601 38.3481 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 43 G 2.0002 32.4596 34.6234 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 44 b 0.0742 34.2969 36.6691 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 45 9 -0.7647 25.4543 37.0185 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 46 ; 10.7410 14.2083 31.9019 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 47 D 2.3468 31.6670 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 48 L 2.1284 31.4253 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 49 y 10.7148 35.2713 36.0849 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 50 ‘ 1.8546 11.4543 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 51 \ -5.1907 25.9043 47.8074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 52 R 2.1089 34.9552 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 53 < 2.6163 33.3574 33.3392 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 54 4 0.0357 25.2460 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 55 8 -0.2540 25.5784 37.0185 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 56 0 -0.6133 25.5784 37.0185 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 57 A 2.1526 38.2648 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 58 E 2.4490 30.3867 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 59 B 2.2715 32.8991 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 60 v 10.8821 35.0559 25.1466 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 61 k -0.1858 30.6450 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 62 J 2.4318 32.1830 34.3734 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 63 U 2.2892 34.9371 34.3734 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 64 j 0.0643 21.4448 46.8414 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 65 ( 0.0353 12.8522 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 66 7 -0.0385 24.9383 35.9031 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 67 § 0.1613 29.7880 41.0522 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 68 $ -4.1794 25.1466 47.5392 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 69 € 2.0764 32.2596 34.6234 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 70 / -5.2106 25.1466 47.8074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 71 C 2.2363 30.3457 34.6234 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 72 * 0.0774 23.8663 24.9466 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 73 ” 1.9743 23.8481 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 74 ? 2.1360 23.4828 34.6234 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 75 { 0.5404 14.7395 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 76 } -0.0385 14.7395 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 77 , 27.8470 11.4543 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 78 I 2.2905 24.7300 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 79 ° -6.2548 16.4380 16.4380 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 80 K 2.4129 34.4476 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 81 H 2.3769 30.7457 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 82 q 10.0579 33.9892 36.6426 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 83 & 3.7185 26.8522 33.1574 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 84 ’ 1.7733 11.4543 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 85 [ 0.1392 12.8438 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 86 - 16.5667 24.9383 5.1491 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 87 Y 2.5954 32.1337 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 88 Q 2.3382 32.6414 42.0682 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 89 " 2.5812 20.7160 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 90 ! -0.5269 9.3586 36.6691 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 91 x 10.7390 32.6414 25.1466 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 92 ) 0.1186 12.8522 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 93 = 11.7929 32.6414 14.9395 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 94 + 4.8579 29.3213 29.3213 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 95 X 2.3272 35.2448 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 96 » 13.0727 28.6895 23.2328 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 97 ' 1.8864 8.0373 17.2435 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 98 ¢ -4.7159 24.4306 43.2055 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 99 Z 2.3726 26.2945 33.6074 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 100 > 2.5611 33.3574 33.3392 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 101 ® 2.2957 34.9371 34.3734 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 102 © 2.3384 34.9371 34.3734 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 103 ] -0.3081 12.8438 43.1478 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 104 é -2.3421 30.7275 39.2725 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 105 z 10.6581 25.4543 25.1466 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 106 _ 47.8946 40.0861 5.1491 -Courier_New_Bold.ttf 27 @ 21.9941 40.6703 107 ¥ 2.2893 31.2700 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 1 t -1.0638 29.3297 34.9636 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 2 h -2.2406 33.1226 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 3 a 7.7135 31.0352 26.4703 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 4 n 7.7099 31.9747 25.7043 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 5 P 0.3593 30.2957 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 6 o 7.7571 29.8457 26.4703 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 7 e 7.8883 30.7275 26.4703 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 8 : 8.7347 8.8509 25.1466 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 9 r 7.7520 30.0874 25.7043 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 10 l -2.2882 27.0256 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 11 i -2.4027 27.0256 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 12 1 -2.9265 24.7300 36.4608 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 13 | -1.6797 5.1491 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 14 N 0.4898 35.4864 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 15 f -2.4695 30.2957 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 16 g 7.5376 32.8149 36.6426 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 17 d -2.0856 33.9892 36.6691 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 18 W -0.2131 38.6293 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 19 s 7.8447 26.2679 26.4703 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 20 c 8.0700 29.6062 26.4703 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 21 u 8.3097 33.1226 25.9126 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 22 3 -2.6634 26.9346 37.0185 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 23 ~ 11.1963 27.6923 12.0861 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 24 # -6.2136 26.8256 41.5515 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 25 O -0.7170 32.6414 34.6234 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 26 ` -4.6113 11.1466 9.3586 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 27 @ -2.2858 21.9941 40.6703 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 28 F 0.1738 31.2852 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 29 S -0.1973 27.1846 34.6234 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 30 p 7.7228 34.2969 36.6426 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 31 “ -0.3060 23.8481 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 32 % -2.7002 26.0861 36.6691 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 33 £ 0.0777 29.3797 33.8574 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 34 . 26.2368 8.8509 7.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 35 2 -2.7322 26.5445 36.4608 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 36 5 -2.1903 27.0340 36.4608 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 37 m 7.7872 37.7404 25.7043 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 38 V 0.0237 38.4306 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 39 6 -2.7078 25.4543 37.0185 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 40 w 8.6893 33.3756 25.1466 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 41 T 0.1113 29.3213 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 42 M -0.0242 38.3481 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 43 G -0.3571 32.4596 34.6234 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 44 b -2.4232 34.2969 36.6691 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 45 9 -3.0676 25.4543 37.0185 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 46 ; 8.2339 14.2083 31.9019 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 47 D 0.0861 31.6670 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 48 L 0.1608 31.4253 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 49 y 8.6779 35.2713 36.0849 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 50 ‘ -0.5006 11.4543 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 51 \ -7.2023 25.9043 47.8074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 52 R -0.0700 34.9552 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 53 < 0.5239 33.3574 33.3392 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 54 4 -2.3786 25.2460 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 55 8 -2.6204 25.5784 37.0185 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 56 0 -3.0165 25.5784 37.0185 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 57 A 0.0742 38.2648 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 58 E 0.0844 30.3867 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 59 B -0.0325 32.8991 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 60 v 8.3556 35.0559 25.1466 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 61 k -2.1261 30.6450 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 62 J -0.0551 32.1830 34.3734 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 63 U 0.2280 34.9371 34.3734 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 64 j -2.4416 21.4448 46.8414 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 65 ( -2.0667 12.8522 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 66 7 -2.2540 24.9383 35.9031 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 67 § -2.2869 29.7880 41.0522 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 68 $ -6.3875 25.1466 47.5392 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 69 € -0.3940 32.2596 34.6234 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 70 / -7.1465 25.1466 47.8074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 71 C -0.1401 30.3457 34.6234 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 72 * -2.4495 23.8663 24.9466 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 73 ” -0.3501 23.8481 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 74 ? -0.3426 23.4828 34.6234 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 75 { -2.4704 14.7395 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 76 } -2.5844 14.7395 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 77 , 25.4889 11.4543 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 78 I -0.2400 24.7300 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 79 ° -8.5844 16.4380 16.4380 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 80 K 0.1131 34.4476 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 81 H -0.2680 30.7457 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 82 q 7.8164 33.9892 36.6426 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 83 & 1.4959 26.8522 33.1574 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 84 ’ -0.2524 11.4543 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 85 [ -2.2219 12.8438 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 86 - 14.6651 24.9383 5.1491 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 87 Y 0.2198 32.1337 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 88 Q -0.2714 32.6414 42.0682 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 89 " 0.0714 20.7160 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 90 ! -2.5060 9.3586 36.6691 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 91 x 8.1781 32.6414 25.1466 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 92 ) -2.5059 12.8522 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 93 = 9.7160 32.6414 14.9395 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 94 + 2.3319 29.3213 29.3213 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 95 X -0.0658 35.2448 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 96 » 10.2096 28.6895 23.2328 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 97 ' -0.0578 8.0373 17.2435 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 98 ¢ -6.7670 24.4306 43.2055 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 99 Z 0.0769 26.2945 33.6074 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 100 > -0.0053 33.3574 33.3392 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 101 ® 0.0867 34.9371 34.3734 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 102 © 0.1099 34.9371 34.3734 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 103 ] -2.5877 12.8438 43.1478 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 104 é -4.8731 30.7275 39.2725 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 105 z 8.5255 25.4543 25.1466 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 106 _ 46.5214 40.0861 5.1491 -Courier_New_Bold.ttf 28 F 31.2852 33.6074 107 ¥ 0.1283 31.2700 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 1 t -0.7246 29.3297 34.9636 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 2 h -2.0068 33.1226 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 3 a 8.1829 31.0352 26.4703 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 4 n 8.1554 31.9747 25.7043 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 5 P 0.1933 30.2957 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 6 o 8.1273 29.8457 26.4703 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 7 e 8.2499 30.7275 26.4703 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 8 : 8.9295 8.8509 25.1466 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 9 r 8.0814 30.0874 25.7043 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 10 l -2.1203 27.0256 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 11 i -2.0110 27.0256 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 12 1 -2.6391 24.7300 36.4608 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 13 | -2.1648 5.1491 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 14 N 0.1665 35.4864 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 15 f -1.8914 30.2957 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 16 g 8.4914 32.8149 36.6426 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 17 d -2.3288 33.9892 36.6691 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 18 W 0.4224 38.6293 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 19 s 8.0174 26.2679 26.4703 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 20 c 8.0405 29.6062 26.4703 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 21 u 8.6876 33.1226 25.9126 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 22 3 -2.8402 26.9346 37.0185 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 23 ~ 10.8871 27.6923 12.0861 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 24 # -6.2319 26.8256 41.5515 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 25 O 0.1511 32.6414 34.6234 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 26 ` -4.8034 11.1466 9.3586 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 27 @ -1.8802 21.9941 40.6703 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 28 F 0.3678 31.2852 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 29 S 0.0969 27.1846 34.6234 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 30 p 8.1513 34.2969 36.6426 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 31 “ 0.0839 23.8481 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 32 % -1.9201 26.0861 36.6691 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 33 £ -0.2410 29.3797 33.8574 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 34 . 26.8302 8.8509 7.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 35 2 -2.5830 26.5445 36.4608 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 36 5 -2.2844 27.0340 36.4608 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 37 m 8.0660 37.7404 25.7043 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 38 V 0.2143 38.4306 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 39 6 -2.8930 25.4543 37.0185 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 40 w 8.6751 33.3756 25.1466 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 41 T 0.3083 29.3213 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 42 M -0.0114 38.3481 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 43 G 0.0867 32.4596 34.6234 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 44 b -2.0457 34.2969 36.6691 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 45 9 -2.6549 25.4543 37.0185 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 46 ; 8.7384 14.2083 31.9019 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 47 D 0.2500 31.6670 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 48 L 0.2170 31.4253 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 49 y 8.6366 35.2713 36.0849 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 50 ‘ -0.1792 11.4543 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 51 \ -7.0011 25.9043 47.8074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 52 R 0.0749 34.9552 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 53 < 0.6924 33.3574 33.3392 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 54 4 -2.1713 25.2460 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 55 8 -2.3830 25.5784 37.0185 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 56 0 -2.7332 25.5784 37.0185 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 57 A 0.1513 38.2648 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 58 E 0.1179 30.3867 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 59 B 0.2045 32.8991 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 60 v 8.6426 35.0559 25.1466 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 61 k -1.9425 30.6450 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 62 J 0.2783 32.1830 34.3734 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 63 U 0.2297 34.9371 34.3734 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 64 j -2.1583 21.4448 46.8414 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 65 ( -2.0112 12.8522 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 66 7 -2.0008 24.9383 35.9031 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 67 § -2.1324 29.7880 41.0522 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 68 $ -6.2110 25.1466 47.5392 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 69 € -0.1164 32.2596 34.6234 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 70 / -7.2076 25.1466 47.8074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 71 C -0.1655 30.3457 34.6234 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 72 * -1.9100 23.8663 24.9466 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 73 ” -0.0959 23.8481 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 74 ? -0.0839 23.4828 34.6234 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 75 { -1.8519 14.7395 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 76 } -2.0272 14.7395 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 77 , 25.6564 11.4543 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 78 I 0.0776 24.7300 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 79 ° -8.3244 16.4380 16.4380 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 80 K 0.2652 34.4476 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 81 H 0.1936 30.7457 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 82 q 7.9445 33.9892 36.6426 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 83 & 1.3892 26.8522 33.1574 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 84 ’ -0.0032 11.4543 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 85 [ -2.5651 12.8438 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 86 - 14.8742 24.9383 5.1491 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 87 Y 0.6106 32.1337 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 88 Q 0.2855 32.6414 42.0682 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 89 " 0.2889 20.7160 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 90 ! -1.9616 9.3586 36.6691 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 91 x 8.6386 32.6414 25.1466 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 92 ) -1.7469 12.8522 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 93 = 9.9298 32.6414 14.9395 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 94 + 2.6375 29.3213 29.3213 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 95 X 0.1156 35.2448 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 96 » 10.7303 28.6895 23.2328 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 97 ' 0.4288 8.0373 17.2435 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 98 ¢ -6.8232 24.4306 43.2055 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 99 Z 0.1524 26.2945 33.6074 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 100 > 0.7251 33.3574 33.3392 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 101 ® 0.1217 34.9371 34.3734 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 102 © 0.2565 34.9371 34.3734 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 103 ] -2.1064 12.8438 43.1478 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 104 é -4.4753 30.7275 39.2725 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 105 z 8.6284 25.4543 25.1466 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 106 _ 46.3190 40.0861 5.1491 -Courier_New_Bold.ttf 29 S 27.1846 34.6234 107 ¥ 0.3056 31.2700 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 1 t -8.3861 29.3297 34.9636 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 2 h -10.3652 33.1226 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 3 a -0.0772 31.0352 26.4703 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 4 n 0.2530 31.9747 25.7043 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 5 P -8.0695 30.2957 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 6 o 0.2849 29.8457 26.4703 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 7 e -0.1353 30.7275 26.4703 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 8 : 0.3454 8.8509 25.1466 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 9 r -0.1357 30.0874 25.7043 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 10 l -10.3002 27.0256 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 11 i -10.2114 27.0256 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 12 1 -10.9507 24.7300 36.4608 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 13 | -10.3726 5.1491 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 14 N -7.7692 35.4864 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 15 f -9.9817 30.2957 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 16 g 0.0157 32.8149 36.6426 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 17 d -9.7877 33.9892 36.6691 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 18 W -7.9595 38.6293 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 19 s -0.4968 26.2679 26.4703 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 20 c 0.0542 29.6062 26.4703 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 21 u 0.4293 33.1226 25.9126 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 22 3 -10.9646 26.9346 37.0185 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 23 ~ 2.8742 27.6923 12.0861 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 24 # -14.4245 26.8256 41.5515 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 25 O -8.0033 32.6414 34.6234 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 26 ` -12.8879 11.1466 9.3586 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 27 @ -10.0062 21.9941 40.6703 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 28 F -7.6658 31.2852 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 29 S -7.9158 27.1846 34.6234 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 30 p -0.1987 34.2969 36.6426 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 31 “ -8.2531 23.8481 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 32 % -10.1345 26.0861 36.6691 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 33 £ -8.1531 29.3797 33.8574 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 34 . 18.7761 8.8509 7.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 35 2 -10.4665 26.5445 36.4608 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 36 5 -10.4934 27.0340 36.4608 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 37 m 0.0162 37.7404 25.7043 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 38 V -7.8021 38.4306 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 39 6 -10.7949 25.4543 37.0185 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 40 w 0.8293 33.3756 25.1466 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 41 T -7.6806 29.3213 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 42 M -7.8803 38.3481 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 43 G -8.1877 32.4596 34.6234 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 44 b -10.2951 34.2969 36.6691 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 45 9 -10.8146 25.4543 37.0185 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 46 ; 0.8918 14.2083 31.9019 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 47 D -7.8773 31.6670 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 48 L -7.7079 31.4253 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 49 y 0.2713 35.2713 36.0849 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 50 ‘ -8.1146 11.4543 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 51 \ -15.3237 25.9043 47.8074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 52 R -7.9931 34.9552 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 53 < -7.7216 33.3574 33.3392 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 54 4 -9.9721 25.2460 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 55 8 -10.4270 25.5784 37.0185 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 56 0 -10.3972 25.5784 37.0185 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 57 A -7.8420 38.2648 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 58 E -8.0185 30.3867 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 59 B -8.0171 32.8991 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 60 v 0.8816 35.0559 25.1466 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 61 k -10.1801 30.6450 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 62 J -7.8967 32.1830 34.3734 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 63 U -7.8248 34.9371 34.3734 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 64 j -10.0736 21.4448 46.8414 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 65 ( -10.4288 12.8522 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 66 7 -10.3476 24.9383 35.9031 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 67 § -10.0960 29.7880 41.0522 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 68 $ -14.3374 25.1466 47.5392 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 69 € -7.9891 32.2596 34.6234 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 70 / -15.4573 25.1466 47.8074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 71 C -8.1017 30.3457 34.6234 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 72 * -10.2432 23.8663 24.9466 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 73 ” -8.3046 23.8481 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 74 ? -8.4118 23.4828 34.6234 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 75 { -9.9063 14.7395 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 76 } -10.4224 14.7395 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 77 , 17.7354 11.4543 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 78 I -8.0351 24.7300 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 79 ° -16.4271 16.4380 16.4380 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 80 K -7.7722 34.4476 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 81 H -7.6977 30.7457 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 82 q -0.0969 33.9892 36.6426 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 83 & -6.9067 26.8522 33.1574 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 84 ’ -8.4256 11.4543 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 85 [ -10.4286 12.8438 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 86 - 6.6549 24.9383 5.1491 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 87 Y -7.8230 32.1337 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 88 Q -8.2830 32.6414 42.0682 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 89 " -7.9416 20.7160 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 90 ! -10.0672 9.3586 36.6691 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 91 x 0.7862 32.6414 25.1466 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 92 ) -9.9829 12.8522 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 93 = 1.9584 32.6414 14.9395 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 94 + -5.4924 29.3213 29.3213 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 95 X -8.2095 35.2448 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 96 » 2.3946 28.6895 23.2328 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 97 ' -7.9091 8.0373 17.2435 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 98 ¢ -14.8205 24.4306 43.2055 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 99 Z -8.0844 26.2945 33.6074 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 100 > -7.7535 33.3574 33.3392 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 101 ® -7.9814 34.9371 34.3734 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 102 © -7.9884 34.9371 34.3734 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 103 ] -9.8964 12.8438 43.1478 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 104 é -12.6391 30.7275 39.2725 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 105 z 0.9789 25.4543 25.1466 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 106 _ 38.0521 40.0861 5.1491 -Courier_New_Bold.ttf 30 p 34.2969 36.6426 107 ¥ -8.1784 31.2700 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 1 t -0.3791 29.3297 34.9636 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 2 h -2.1226 33.1226 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 3 a 8.2896 31.0352 26.4703 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 4 n 8.1828 31.9747 25.7043 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 5 P 0.2710 30.2957 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 6 o 8.1550 29.8457 26.4703 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 7 e 7.7875 30.7275 26.4703 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 8 : 8.7763 8.8509 25.1466 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 9 r 8.0924 30.0874 25.7043 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 10 l -1.9915 27.0256 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 11 i -1.9321 27.0256 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 12 1 -2.8316 24.7300 36.4608 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 13 | -1.8612 5.1491 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 14 N -0.0113 35.4864 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 15 f -1.9911 30.2957 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 16 g 8.2058 32.8149 36.6426 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 17 d -2.0212 33.9892 36.6691 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 18 W 0.4224 38.6293 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 19 s 8.1757 26.2679 26.4703 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 20 c 8.0335 29.6062 26.4703 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 21 u 8.5624 33.1226 25.9126 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 22 3 -2.6978 26.9346 37.0185 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 23 ~ 11.3218 27.6923 12.0861 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 24 # -6.1046 26.8256 41.5515 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 25 O -0.3124 32.6414 34.6234 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 26 ` -4.7337 11.1466 9.3586 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 27 @ -2.0782 21.9941 40.6703 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 28 F 0.1916 31.2852 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 29 S -0.1129 27.1846 34.6234 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 30 p 8.1052 34.2969 36.6426 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 31 “ 0.0444 23.8481 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 32 % -1.7816 26.0861 36.6691 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 33 £ 0.0398 29.3797 33.8574 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 34 . 26.7913 8.8509 7.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 35 2 -2.7136 26.5445 36.4608 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 36 5 -1.8515 27.0340 36.4608 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 37 m 7.9333 37.7404 25.7043 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 38 V 0.2342 38.4306 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 39 6 -2.2952 25.4543 37.0185 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 40 w 8.5981 33.3756 25.1466 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 41 T 0.0674 29.3213 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 42 M 0.0744 38.3481 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 43 G -0.1521 32.4596 34.6234 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 44 b -2.0869 34.2969 36.6691 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 45 9 -2.5672 25.4543 37.0185 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 46 ; 8.7552 14.2083 31.9019 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 47 D 0.0516 31.6670 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 48 L -0.0085 31.4253 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 49 y 8.6808 35.2713 36.0849 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 50 ‘ -0.0745 11.4543 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 51 \ -7.3788 25.9043 47.8074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 52 R 0.4196 34.9552 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 53 < 0.5604 33.3574 33.3392 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 54 4 -2.1498 25.2460 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 55 8 -2.7229 25.5784 37.0185 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 56 0 -2.5450 25.5784 37.0185 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 57 A 0.4730 38.2648 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 58 E 0.1083 30.3867 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 59 B 0.0892 32.8991 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 60 v 8.5463 35.0559 25.1466 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 61 k -2.0429 30.6450 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 62 J 0.2115 32.1830 34.3734 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 63 U 0.2092 34.9371 34.3734 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 64 j -1.8871 21.4448 46.8414 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 65 ( -2.0512 12.8522 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 66 7 -2.2487 24.9383 35.9031 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 67 § -2.1254 29.7880 41.0522 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 68 $ -6.3589 25.1466 47.5392 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 69 € 0.0796 32.2596 34.6234 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 70 / -7.2491 25.1466 47.8074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 71 C -0.0351 30.3457 34.6234 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 72 * -1.8666 23.8663 24.9466 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 73 ” 0.1228 23.8481 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 74 ? -0.2613 23.4828 34.6234 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 75 { -2.1027 14.7395 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 76 } -1.9586 14.7395 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 77 , 25.8140 11.4543 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 78 I 0.1959 24.7300 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 79 ° -8.0679 16.4380 16.4380 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 80 K 0.0817 34.4476 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 81 H 0.4210 30.7457 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 82 q 8.1888 33.9892 36.6426 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 83 & 1.6853 26.8522 33.1574 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 84 ’ 0.2627 11.4543 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 85 [ -2.2778 12.8438 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 86 - 14.7184 24.9383 5.1491 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 87 Y 0.1304 32.1337 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 88 Q -0.0509 32.6414 42.0682 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 89 " 0.6079 20.7160 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 90 ! -2.2196 9.3586 36.6691 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 91 x 8.3470 32.6414 25.1466 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 92 ) -1.9583 12.8522 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 93 = 9.9218 32.6414 14.9395 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 94 + 2.7458 29.3213 29.3213 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 95 X 0.0118 35.2448 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 96 » 10.2767 28.6895 23.2328 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 97 ' 0.2560 8.0373 17.2435 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 98 ¢ -6.6595 24.4306 43.2055 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 99 Z 0.1016 26.2945 33.6074 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 100 > 0.5288 33.3574 33.3392 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 101 ® 0.0400 34.9371 34.3734 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 102 © 0.4912 34.9371 34.3734 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 103 ] -2.1945 12.8438 43.1478 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 104 é -4.6019 30.7275 39.2725 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 105 z 8.5336 25.4543 25.1466 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 106 _ 45.9290 40.0861 5.1491 -Courier_New_Bold.ttf 31 “ 23.8481 17.2435 107 ¥ 0.2198 31.2700 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 1 t 1.8863 29.3297 34.9636 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 2 h -0.1288 33.1226 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 3 a 10.0773 31.0352 26.4703 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 4 n 9.9893 31.9747 25.7043 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 5 P 2.6339 30.2957 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 6 o 10.5020 29.8457 26.4703 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 7 e 10.1858 30.7275 26.4703 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 8 : 10.8951 8.8509 25.1466 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 9 r 10.5969 30.0874 25.7043 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 10 l -0.0565 27.0256 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 11 i 0.0917 27.0256 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 12 1 -0.4251 24.7300 36.4608 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 13 | 0.2214 5.1491 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 14 N 2.2600 35.4864 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 15 f -0.3922 30.2957 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 16 g 10.0746 32.8149 36.6426 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 17 d -0.0515 33.9892 36.6691 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 18 W 2.0272 38.6293 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 19 s 10.1752 26.2679 26.4703 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 20 c 10.1474 29.6062 26.4703 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 21 u 11.0094 33.1226 25.9126 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 22 3 -0.7959 26.9346 37.0185 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 23 ~ 13.2863 27.6923 12.0861 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 24 # -4.2233 26.8256 41.5515 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 25 O 1.8227 32.6414 34.6234 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 26 ` -2.6363 11.1466 9.3586 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 27 @ 0.0455 21.9941 40.6703 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 28 F 2.3928 31.2852 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 29 S 1.8738 27.1846 34.6234 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 30 p 10.1988 34.2969 36.6426 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 31 “ 1.9917 23.8481 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 32 % 0.0727 26.0861 36.6691 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 33 £ 1.9298 29.3797 33.8574 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 34 . 29.0374 8.8509 7.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 35 2 -0.4940 26.5445 36.4608 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 36 5 -0.1640 27.0340 36.4608 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 37 m 10.0477 37.7404 25.7043 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 38 V 2.1975 38.4306 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 39 6 -0.7486 25.4543 37.0185 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 40 w 10.5627 33.3756 25.1466 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 41 T 2.3390 29.3213 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 42 M 2.3204 38.3481 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 43 G 1.9276 32.4596 34.6234 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 44 b -0.0330 34.2969 36.6691 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 45 9 -0.4863 25.4543 37.0185 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 46 ; 10.9024 14.2083 31.9019 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 47 D 2.6461 31.6670 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 48 L 2.4503 31.4253 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 49 y 10.8269 35.2713 36.0849 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 50 ‘ 2.3307 11.4543 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 51 \ -5.0192 25.9043 47.8074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 52 R 2.2358 34.9552 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 53 < 2.4730 33.3574 33.3392 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 54 4 0.1609 25.2460 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 55 8 -0.3432 25.5784 37.0185 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 56 0 -0.6735 25.5784 37.0185 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 57 A 2.0371 38.2648 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 58 E 2.3328 30.3867 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 59 B 2.3982 32.8991 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 60 v 10.6569 35.0559 25.1466 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 61 k 0.2201 30.6450 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 62 J 2.3174 32.1830 34.3734 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 63 U 2.5363 34.9371 34.3734 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 64 j -0.0200 21.4448 46.8414 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 65 ( 0.2011 12.8522 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 66 7 0.0565 24.9383 35.9031 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 67 § -0.0256 29.7880 41.0522 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 68 $ -4.5673 25.1466 47.5392 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 69 € 1.9062 32.2596 34.6234 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 70 / -5.1935 25.1466 47.8074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 71 C 1.8696 30.3457 34.6234 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 72 * 0.0204 23.8663 24.9466 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 73 ” 2.1995 23.8481 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 74 ? 2.0100 23.4828 34.6234 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 75 { -0.0853 14.7395 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 76 } 0.1312 14.7395 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 77 , 27.9432 11.4543 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 78 I 2.3670 24.7300 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 79 ° -6.1937 16.4380 16.4380 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 80 K 2.3086 34.4476 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 81 H 2.4744 30.7457 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 82 q 10.3781 33.9892 36.6426 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 83 & 3.6730 26.8522 33.1574 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 84 ’ 1.8006 11.4543 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 85 [ 0.0018 12.8438 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 86 - 16.6002 24.9383 5.1491 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 87 Y 2.3369 32.1337 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 88 Q 2.2574 32.6414 42.0682 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 89 " 2.3189 20.7160 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 90 ! -0.0417 9.3586 36.6691 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 91 x 10.7180 32.6414 25.1466 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 92 ) -0.3161 12.8522 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 93 = 11.9102 32.6414 14.9395 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 94 + 4.6332 29.3213 29.3213 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 95 X 2.1911 35.2448 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 96 » 12.7265 28.6895 23.2328 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 97 ' 2.0104 8.0373 17.2435 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 98 ¢ -4.6579 24.4306 43.2055 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 99 Z 2.1461 26.2945 33.6074 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 100 > 2.6625 33.3574 33.3392 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 101 ® 2.1435 34.9371 34.3734 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 102 © 2.2484 34.9371 34.3734 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 103 ] -0.0200 12.8438 43.1478 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 104 é -2.7691 30.7275 39.2725 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 105 z 10.8816 25.4543 25.1466 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 106 _ 48.1490 40.0861 5.1491 -Courier_New_Bold.ttf 32 % 26.0861 36.6691 107 ¥ 2.1229 31.2700 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 1 t -0.2526 29.3297 34.9636 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 2 h -2.0970 33.1226 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 3 a 8.1374 31.0352 26.4703 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 4 n 8.1459 31.9747 25.7043 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 5 P 0.0719 30.2957 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 6 o 8.2902 29.8457 26.4703 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 7 e 8.2759 30.7275 26.4703 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 8 : 8.7909 8.8509 25.1466 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 9 r 7.9389 30.0874 25.7043 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 10 l -1.8075 27.0256 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 11 i -1.7750 27.0256 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 12 1 -2.7388 24.7300 36.4608 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 13 | -2.0664 5.1491 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 14 N 0.0183 35.4864 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 15 f -2.2185 30.2957 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 16 g 8.5432 32.8149 36.6426 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 17 d -1.9688 33.9892 36.6691 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 18 W 0.1143 38.6293 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 19 s 8.2578 26.2679 26.4703 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 20 c 8.0260 29.6062 26.4703 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 21 u 9.0352 33.1226 25.9126 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 22 3 -2.8088 26.9346 37.0185 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 23 ~ 11.0150 27.6923 12.0861 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 24 # -6.3593 26.8256 41.5515 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 25 O -0.2683 32.6414 34.6234 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 26 ` -4.5139 11.1466 9.3586 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 27 @ -2.0054 21.9941 40.6703 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 28 F 0.1016 31.2852 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 29 S -0.1269 27.1846 34.6234 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 30 p 8.1311 34.2969 36.6426 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 31 “ 0.0769 23.8481 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 32 % -2.1097 26.0861 36.6691 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 33 £ 0.0520 29.3797 33.8574 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 34 . 26.6012 8.8509 7.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 35 2 -2.7203 26.5445 36.4608 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 36 5 -1.8330 27.0340 36.4608 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 37 m 7.9436 37.7404 25.7043 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 38 V 0.2240 38.4306 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 39 6 -2.6016 25.4543 37.0185 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 40 w 8.7747 33.3756 25.1466 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 41 T -0.0197 29.3213 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 42 M 0.1916 38.3481 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 43 G 0.0931 32.4596 34.6234 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 44 b -1.9385 34.2969 36.6691 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 45 9 -2.7567 25.4543 37.0185 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 46 ; 8.5833 14.2083 31.9019 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 47 D 0.3431 31.6670 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 48 L 0.2620 31.4253 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 49 y 8.7745 35.2713 36.0849 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 50 ‘ 0.2757 11.4543 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 51 \ -7.1689 25.9043 47.8074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 52 R 0.1281 34.9552 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 53 < 0.8862 33.3574 33.3392 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 54 4 -2.1263 25.2460 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 55 8 -2.7348 25.5784 37.0185 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 56 0 -2.5418 25.5784 37.0185 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 57 A 0.2926 38.2648 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 58 E 0.1276 30.3867 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 59 B 0.4009 32.8991 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 60 v 8.3768 35.0559 25.1466 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 61 k -2.1717 30.6450 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 62 J 0.2473 32.1830 34.3734 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 63 U 0.1202 34.9371 34.3734 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 64 j -1.9322 21.4448 46.8414 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 65 ( -2.1556 12.8522 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 66 7 -2.2307 24.9383 35.9031 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 67 § -2.1426 29.7880 41.0522 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 68 $ -6.1059 25.1466 47.5392 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 69 € 0.0351 32.2596 34.6234 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 70 / -7.2901 25.1466 47.8074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 71 C -0.1129 30.3457 34.6234 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 72 * -2.1231 23.8663 24.9466 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 73 ” -0.1016 23.8481 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 74 ? 0.3037 23.4828 34.6234 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 75 { -2.1364 14.7395 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 76 } -1.8838 14.7395 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 77 , 25.7394 11.4543 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 78 I 0.3047 24.7300 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 79 ° -8.5345 16.4380 16.4380 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 80 K 0.3472 34.4476 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 81 H 0.2629 30.7457 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 82 q 8.0270 33.9892 36.6426 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 83 & 1.2988 26.8522 33.1574 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 84 ’ -0.2498 11.4543 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 85 [ -1.9656 12.8438 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 86 - 14.7353 24.9383 5.1491 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 87 Y 0.4756 32.1337 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 88 Q -0.4239 32.6414 42.0682 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 89 " 0.3843 20.7160 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 90 ! -2.1399 9.3586 36.6691 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 91 x 8.9661 32.6414 25.1466 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 92 ) -2.3357 12.8522 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 93 = 10.3486 32.6414 14.9395 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 94 + 2.6065 29.3213 29.3213 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 95 X 0.4785 35.2448 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 96 » 10.4561 28.6895 23.2328 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 97 ' 0.3682 8.0373 17.2435 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 98 ¢ -6.6773 24.4306 43.2055 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 99 Z 0.2236 26.2945 33.6074 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 100 > 0.5419 33.3574 33.3392 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 101 ® 0.3473 34.9371 34.3734 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 102 © 0.0782 34.9371 34.3734 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 103 ] -2.0939 12.8438 43.1478 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 104 é -4.6144 30.7275 39.2725 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 105 z 8.5624 25.4543 25.1466 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 106 _ 46.2847 40.0861 5.1491 -Courier_New_Bold.ttf 33 £ 29.3797 33.8574 107 ¥ 0.3339 31.2700 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 1 t -27.0063 29.3297 34.9636 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 2 h -28.8676 33.1226 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 3 a -18.6085 31.0352 26.4703 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 4 n -18.5175 31.9747 25.7043 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 5 P -26.4666 30.2957 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 6 o -18.4476 29.8457 26.4703 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 7 e -18.3570 30.7275 26.4703 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 8 : -18.1314 8.8509 25.1466 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 9 r -18.4962 30.0874 25.7043 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 10 l -28.9603 27.0256 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 11 i -28.8622 27.0256 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 12 1 -29.2769 24.7300 36.4608 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 13 | -28.7303 5.1491 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 14 N -26.4784 35.4864 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 15 f -28.8287 30.2957 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 16 g -18.7285 32.8149 36.6426 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 17 d -28.5408 33.9892 36.6691 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 18 W -26.5126 38.6293 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 19 s -18.6239 26.2679 26.4703 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 20 c -18.4861 29.6062 26.4703 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 21 u -18.0994 33.1226 25.9126 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 22 3 -29.1267 26.9346 37.0185 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 23 ~ -15.7071 27.6923 12.0861 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 24 # -33.0709 26.8256 41.5515 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 25 O -26.7521 32.6414 34.6234 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 26 ` -31.3095 11.1466 9.3586 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 27 @ -28.8545 21.9941 40.6703 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 28 F -26.2882 31.2852 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 29 S -26.7725 27.1846 34.6234 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 30 p -18.6155 34.2969 36.6426 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 31 “ -26.9739 23.8481 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 32 % -28.6450 26.0861 36.6691 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 33 £ -26.6945 29.3797 33.8574 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 34 . -0.0937 8.8509 7.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 35 2 -29.2862 26.5445 36.4608 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 36 5 -28.8004 27.0340 36.4608 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 37 m -18.4631 37.7404 25.7043 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 38 V -26.4703 38.4306 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 39 6 -29.1135 25.4543 37.0185 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 40 w -18.1671 33.3756 25.1466 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 41 T -26.5685 29.3213 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 42 M -26.3247 38.3481 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 43 G -26.7003 32.4596 34.6234 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 44 b -28.5038 34.2969 36.6691 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 45 9 -29.0813 25.4543 37.0185 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 46 ; -17.8893 14.2083 31.9019 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 47 D -26.6117 31.6670 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 48 L -26.3902 31.4253 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 49 y -18.1397 35.2713 36.0849 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 50 ‘ -26.6212 11.4543 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 51 \ -33.8651 25.9043 47.8074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 52 R -26.3300 34.9552 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 53 < -25.9946 33.3574 33.3392 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 54 4 -28.7958 25.2460 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 55 8 -29.1805 25.5784 37.0185 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 56 0 -29.1551 25.5784 37.0185 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 57 A -26.6015 38.2648 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 58 E -26.5575 30.3867 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 59 B -26.7698 32.8991 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 60 v -18.0567 35.0559 25.1466 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 61 k -28.8531 30.6450 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 62 J -26.5985 32.1830 34.3734 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 63 U -26.6418 34.9371 34.3734 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 64 j -28.6279 21.4448 46.8414 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 65 ( -28.7289 12.8522 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 66 7 -29.0200 24.9383 35.9031 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 67 § -28.8202 29.7880 41.0522 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 68 $ -33.1149 25.1466 47.5392 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 69 € -26.7509 32.2596 34.6234 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 70 / -33.9993 25.1466 47.8074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 71 C -26.7328 30.3457 34.6234 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 72 * -28.9110 23.8663 24.9466 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 73 ” -27.0612 23.8481 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 74 ? -26.6846 23.4828 34.6234 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 75 { -28.9042 14.7395 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 76 } -28.9273 14.7395 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 77 , -0.7580 11.4543 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 78 I -26.3851 24.7300 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 79 ° -35.2023 16.4380 16.4380 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 80 K -26.3837 34.4476 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 81 H -26.6728 30.7457 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 82 q -18.4276 33.9892 36.6426 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 83 & -25.1645 26.8522 33.1574 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 84 ’ -26.4306 11.4543 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 85 [ -28.6020 12.8438 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 86 - -12.0908 24.9383 5.1491 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 87 Y -26.5991 32.1337 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 88 Q -26.9217 32.6414 42.0682 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 89 " -26.6432 20.7160 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 90 ! -28.8252 9.3586 36.6691 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 91 x -17.6440 32.6414 25.1466 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 92 ) -28.5547 12.8522 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 93 = -17.0635 32.6414 14.9395 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 94 + -24.0110 29.3213 29.3213 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 95 X -26.4088 35.2448 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 96 » -16.0897 28.6895 23.2328 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 97 ' -26.4816 8.0373 17.2435 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 98 ¢ -33.4879 24.4306 43.2055 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 99 Z -26.3475 26.2945 33.6074 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 100 > -26.2077 33.3574 33.3392 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 101 ® -26.9873 34.9371 34.3734 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 102 © -26.5477 34.9371 34.3734 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 103 ] -28.9021 12.8438 43.1478 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 104 é -31.3722 30.7275 39.2725 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 105 z -18.0351 25.4543 25.1466 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 106 _ 19.2591 40.0861 5.1491 -Courier_New_Bold.ttf 34 . 8.8509 7.9031 107 ¥ -26.4189 31.2700 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 1 t 2.1019 29.3297 34.9636 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 2 h 0.2140 33.1226 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 3 a 10.9788 31.0352 26.4703 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 4 n 10.8097 31.9747 25.7043 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 5 P 2.9277 30.2957 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 6 o 10.5610 29.8457 26.4703 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 7 e 10.8446 30.7275 26.4703 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 8 : 11.2762 8.8509 25.1466 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 9 r 10.7729 30.0874 25.7043 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 10 l 0.6104 27.0256 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 11 i 0.4396 27.0256 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 12 1 -0.1417 24.7300 36.4608 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 13 | 0.7637 5.1491 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 14 N 2.8455 35.4864 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 15 f 0.5392 30.2957 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 16 g 10.4879 32.8149 36.6426 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 17 d 0.7235 33.9892 36.6691 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 18 W 3.0115 38.6293 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 19 s 10.6955 26.2679 26.4703 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 20 c 10.4668 29.6062 26.4703 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 21 u 11.3069 33.1226 25.9126 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 22 3 -0.1998 26.9346 37.0185 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 23 ~ 13.6267 27.6923 12.0861 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 24 # -3.5007 26.8256 41.5515 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 25 O 2.5803 32.6414 34.6234 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 26 ` -2.1156 11.1466 9.3586 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 27 @ 0.5837 21.9941 40.6703 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 28 F 2.8937 31.2852 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 29 S 2.4421 27.1846 34.6234 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 30 p 10.9173 34.2969 36.6426 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 31 “ 2.1465 23.8481 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 32 % 0.6317 26.0861 36.6691 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 33 £ 2.5427 29.3797 33.8574 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 34 . 29.2195 8.8509 7.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 35 2 0.0922 26.5445 36.4608 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 36 5 0.7690 27.0340 36.4608 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 37 m 10.9905 37.7404 25.7043 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 38 V 3.2015 38.4306 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 39 6 0.1926 25.4543 37.0185 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 40 w 11.6181 33.3756 25.1466 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 41 T 2.9045 29.3213 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 42 M 3.1175 38.3481 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 43 G 2.5848 32.4596 34.6234 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 44 b 0.5962 34.2969 36.6691 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 45 9 0.3986 25.4543 37.0185 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 46 ; 10.7478 14.2083 31.9019 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 47 D 3.0434 31.6670 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 48 L 3.1393 31.4253 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 49 y 11.3354 35.2713 36.0849 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 50 ‘ 2.6447 11.4543 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 51 \ -4.3051 25.9043 47.8074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 52 R 2.9720 34.9552 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 53 < 3.1471 33.3574 33.3392 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 54 4 0.3636 25.2460 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 55 8 0.0658 25.5784 37.0185 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 56 0 0.1978 25.5784 37.0185 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 57 A 2.7407 38.2648 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 58 E 3.1463 30.3867 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 59 B 2.9030 32.8991 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 60 v 11.5277 35.0559 25.1466 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 61 k 0.7888 30.6450 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 62 J 2.8440 32.1830 34.3734 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 63 U 2.6921 34.9371 34.3734 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 64 j 0.4534 21.4448 46.8414 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 65 ( 0.4995 12.8522 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 66 7 0.9041 24.9383 35.9031 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 67 § 0.6486 29.7880 41.0522 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 68 $ -3.4437 25.1466 47.5392 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 69 € 2.7545 32.2596 34.6234 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 70 / -4.6710 25.1466 47.8074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 71 C 2.4778 30.3457 34.6234 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 72 * 0.5999 23.8663 24.9466 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 73 ” 2.8773 23.8481 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 74 ? 2.4471 23.4828 34.6234 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 75 { 0.7962 14.7395 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 76 } 0.6259 14.7395 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 77 , 28.4011 11.4543 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 78 I 3.3131 24.7300 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 79 ° -5.9023 16.4380 16.4380 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 80 K 2.6883 34.4476 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 81 H 2.7996 30.7457 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 82 q 10.5517 33.9892 36.6426 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 83 & 4.0018 26.8522 33.1574 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 84 ’ 3.0278 11.4543 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 85 [ 0.1934 12.8438 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 86 - 17.3663 24.9383 5.1491 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 87 Y 2.9034 32.1337 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 88 Q 2.5442 32.6414 42.0682 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 89 " 2.6449 20.7160 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 90 ! 0.5095 9.3586 36.6691 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 91 x 11.2799 32.6414 25.1466 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 92 ) 0.4947 12.8522 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 93 = 12.5734 32.6414 14.9395 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 94 + 5.3841 29.3213 29.3213 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 95 X 2.6509 35.2448 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 96 » 13.4663 28.6895 23.2328 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 97 ' 2.7666 8.0373 17.2435 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 98 ¢ -4.1946 24.4306 43.2055 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 99 Z 2.6843 26.2945 33.6074 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 100 > 3.0814 33.3574 33.3392 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 101 ® 3.0676 34.9371 34.3734 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 102 © 2.8663 34.9371 34.3734 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 103 ] 0.7430 12.8438 43.1478 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 104 é -2.0495 30.7275 39.2725 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 105 z 11.4453 25.4543 25.1466 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 106 _ 48.7405 40.0861 5.1491 -Courier_New_Bold.ttf 35 2 26.5445 36.4608 107 ¥ 2.8432 31.2700 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 1 t 1.7825 29.3297 34.9636 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 2 h 0.0841 33.1226 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 3 a 10.5265 31.0352 26.4703 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 4 n 10.1393 31.9747 25.7043 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 5 P 2.5727 30.2957 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 6 o 10.3961 29.8457 26.4703 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 7 e 10.3087 30.7275 26.4703 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 8 : 10.5360 8.8509 25.1466 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 9 r 9.9388 30.0874 25.7043 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 10 l 0.2151 27.0256 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 11 i -0.2745 27.0256 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 12 1 -0.2632 24.7300 36.4608 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 13 | 0.0088 5.1491 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 14 N 2.2156 35.4864 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 15 f 0.0506 30.2957 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 16 g 10.0089 32.8149 36.6426 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 17 d 0.0658 33.9892 36.6691 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 18 W 2.4472 38.6293 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 19 s 10.0876 26.2679 26.4703 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 20 c 10.1543 29.6062 26.4703 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 21 u 10.8463 33.1226 25.9126 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 22 3 -0.7625 26.9346 37.0185 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 23 ~ 12.7881 27.6923 12.0861 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 24 # -4.2600 26.8256 41.5515 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 25 O 1.7634 32.6414 34.6234 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 26 ` -2.2883 11.1466 9.3586 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 27 @ 0.0263 21.9941 40.6703 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 28 F 2.5883 31.2852 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 29 S 2.2579 27.1846 34.6234 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 30 p 10.0861 34.2969 36.6426 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 31 “ 2.0869 23.8481 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 32 % -0.0787 26.0861 36.6691 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 33 £ 2.0682 29.3797 33.8574 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 34 . 29.0897 8.8509 7.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 35 2 -0.5220 26.5445 36.4608 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 36 5 0.2452 27.0340 36.4608 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 37 m 10.3849 37.7404 25.7043 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 38 V 2.2832 38.4306 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 39 6 -0.5160 25.4543 37.0185 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 40 w 10.8918 33.3756 25.1466 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 41 T 2.4413 29.3213 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 42 M 2.7154 38.3481 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 43 G 1.7592 32.4596 34.6234 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 44 b 0.0351 34.2969 36.6691 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 45 9 -0.8145 25.4543 37.0185 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 46 ; 10.6910 14.2083 31.9019 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 47 D 2.0959 31.6670 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 48 L 2.5149 31.4253 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 49 y 10.7449 35.2713 36.0849 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 50 ‘ 2.3594 11.4543 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 51 \ -5.1185 25.9043 47.8074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 52 R 2.3602 34.9552 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 53 < 2.5069 33.3574 33.3392 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 54 4 0.2417 25.2460 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 55 8 -0.7371 25.5784 37.0185 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 56 0 -0.2309 25.5784 37.0185 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 57 A 2.3129 38.2648 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 58 E 2.1947 30.3867 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 59 B 2.3471 32.8991 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 60 v 10.9196 35.0559 25.1466 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 61 k -0.0784 30.6450 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 62 J 2.3731 32.1830 34.3734 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 63 U 2.1747 34.9371 34.3734 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 64 j 0.0175 21.4448 46.8414 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 65 ( 0.1301 12.8522 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 66 7 0.1521 24.9383 35.9031 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 67 § 0.0643 29.7880 41.0522 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 68 $ -4.2830 25.1466 47.5392 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 69 € 2.0202 32.2596 34.6234 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 70 / -5.1334 25.1466 47.8074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 71 C 2.0208 30.3457 34.6234 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 72 * -0.2841 23.8663 24.9466 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 73 ” 1.8696 23.8481 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 74 ? 2.3065 23.4828 34.6234 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 75 { -0.1297 14.7395 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 76 } -0.1613 14.7395 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 77 , 28.2429 11.4543 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 78 I 2.3045 24.7300 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 79 ° -6.2178 16.4380 16.4380 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 80 K 2.2856 34.4476 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 81 H 2.4013 30.7457 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 82 q 9.9703 33.9892 36.6426 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 83 & 3.4977 26.8522 33.1574 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 84 ’ 2.0240 11.4543 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 85 [ -0.0315 12.8438 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 86 - 17.0752 24.9383 5.1491 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 87 Y 2.0795 32.1337 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 88 Q 1.8441 32.6414 42.0682 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 89 " 2.2540 20.7160 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 90 ! 0.0510 9.3586 36.6691 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 91 x 10.8279 32.6414 25.1466 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 92 ) 0.0288 12.8522 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 93 = 12.2739 32.6414 14.9395 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 94 + 4.6229 29.3213 29.3213 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 95 X 2.2659 35.2448 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 96 » 12.6878 28.6895 23.2328 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 97 ' 2.4101 8.0373 17.2435 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 98 ¢ -4.4401 24.4306 43.2055 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 99 Z 2.5067 26.2945 33.6074 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 100 > 2.8682 33.3574 33.3392 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 101 ® 2.4510 34.9371 34.3734 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 102 © 2.0009 34.9371 34.3734 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 103 ] -0.1421 12.8438 43.1478 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 104 é -2.6867 30.7275 39.2725 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 105 z 10.9279 25.4543 25.1466 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 106 _ 48.1433 40.0861 5.1491 -Courier_New_Bold.ttf 36 5 27.0340 36.4608 107 ¥ 2.3940 31.2700 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 1 t -8.6301 29.3297 34.9636 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 2 h -10.6858 33.1226 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 3 a -0.3083 31.0352 26.4703 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 4 n 0.0283 31.9747 25.7043 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 5 P -7.8833 30.2957 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 6 o -0.0570 29.8457 26.4703 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 7 e 0.1543 30.7275 26.4703 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 8 : 0.6392 8.8509 25.1466 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 9 r -0.0156 30.0874 25.7043 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 10 l -10.2788 27.0256 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 11 i -10.1191 27.0256 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 12 1 -10.7449 24.7300 36.4608 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 13 | -10.1469 5.1491 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 14 N -7.9578 35.4864 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 15 f -10.1246 30.2957 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 16 g -0.0687 32.8149 36.6426 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 17 d -10.4087 33.9892 36.6691 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 18 W -7.9601 38.6293 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 19 s 0.2025 26.2679 26.4703 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 20 c 0.1420 29.6062 26.4703 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 21 u 0.7389 33.1226 25.9126 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 22 3 -10.6995 26.9346 37.0185 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 23 ~ 2.9773 27.6923 12.0861 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 24 # -14.3277 26.8256 41.5515 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 25 O -8.1372 32.6414 34.6234 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 26 ` -12.8996 11.1466 9.3586 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 27 @ -10.1992 21.9941 40.6703 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 28 F -7.9471 31.2852 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 29 S -8.4158 27.1846 34.6234 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 30 p -0.1511 34.2969 36.6426 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 31 “ -8.0625 23.8481 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 32 % -10.0749 26.0861 36.6691 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 33 £ -8.4015 29.3797 33.8574 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 34 . 18.5516 8.8509 7.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 35 2 -10.6791 26.5445 36.4608 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 36 5 -9.7409 27.0340 36.4608 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 37 m -0.0575 37.7404 25.7043 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 38 V -8.0264 38.4306 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 39 6 -10.9684 25.4543 37.0185 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 40 w 0.3488 33.3756 25.1466 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 41 T -7.7452 29.3213 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 42 M -7.7178 38.3481 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 43 G -8.1744 32.4596 34.6234 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 44 b -9.8591 34.2969 36.6691 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 45 9 -10.6741 25.4543 37.0185 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 46 ; 0.9941 14.2083 31.9019 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 47 D -7.8842 31.6670 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 48 L -7.9060 31.4253 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 49 y 0.5136 35.2713 36.0849 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 50 ‘ -8.1148 11.4543 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 51 \ -15.3769 25.9043 47.8074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 52 R -7.5649 34.9552 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 53 < -7.6446 33.3574 33.3392 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 54 4 -10.2177 25.2460 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 55 8 -10.8904 25.5784 37.0185 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 56 0 -10.8275 25.5784 37.0185 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 57 A -7.8219 38.2648 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 58 E -7.7329 30.3867 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 59 B -7.9119 32.8991 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 60 v 0.8029 35.0559 25.1466 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 61 k -10.2273 30.6450 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 62 J -8.0579 32.1830 34.3734 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 63 U -8.0612 34.9371 34.3734 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 64 j -10.1393 21.4448 46.8414 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 65 ( -10.2149 12.8522 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 66 7 -10.0637 24.9383 35.9031 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 67 § -9.8560 29.7880 41.0522 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 68 $ -14.3577 25.1466 47.5392 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 69 € -8.4807 32.2596 34.6234 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 70 / -15.4350 25.1466 47.8074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 71 C -8.2398 30.3457 34.6234 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 72 * -10.6330 23.8663 24.9466 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 73 ” -8.0485 23.8481 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 74 ? -8.1439 23.4828 34.6234 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 75 { -10.2021 14.7395 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 76 } -10.4264 14.7395 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 77 , 17.8314 11.4543 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 78 I -7.7097 24.7300 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 79 ° -16.6889 16.4380 16.4380 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 80 K -7.7920 34.4476 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 81 H -8.1425 30.7457 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 82 q -0.0629 33.9892 36.6426 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 83 & -6.6462 26.8522 33.1574 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 84 ’ -7.9705 11.4543 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 85 [ -10.0696 12.8438 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 86 - 6.5552 24.9383 5.1491 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 87 Y -7.9838 32.1337 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 88 Q -8.2648 32.6414 42.0682 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 89 " -7.9898 20.7160 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 90 ! -9.7230 9.3586 36.6691 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 91 x 0.2842 32.6414 25.1466 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 92 ) -10.0311 12.8522 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 93 = 2.0603 32.6414 14.9395 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 94 + -5.5109 29.3213 29.3213 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 95 X -7.8803 35.2448 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 96 » 2.5468 28.6895 23.2328 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 97 ' -8.1648 8.0373 17.2435 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 98 ¢ -14.9933 24.4306 43.2055 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 99 Z -7.7664 26.2945 33.6074 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 100 > -7.4443 33.3574 33.3392 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 101 ® -8.0217 34.9371 34.3734 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 102 © -8.0180 34.9371 34.3734 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 103 ] -10.0514 12.8438 43.1478 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 104 é -12.6924 30.7275 39.2725 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 105 z 0.4947 25.4543 25.1466 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 106 _ 38.1192 40.0861 5.1491 -Courier_New_Bold.ttf 37 m 37.7404 25.7043 107 ¥ -7.8916 31.2700 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 1 t -0.6114 29.3297 34.9636 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 2 h -2.4026 33.1226 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 3 a 8.1217 31.0352 26.4703 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 4 n 7.9448 31.9747 25.7043 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 5 P 0.3081 30.2957 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 6 o 7.7988 29.8457 26.4703 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 7 e 7.8953 30.7275 26.4703 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 8 : 8.1186 8.8509 25.1466 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 9 r 7.7552 30.0874 25.7043 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 10 l -2.2827 27.0256 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 11 i -2.1501 27.0256 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 12 1 -2.7152 24.7300 36.4608 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 13 | -2.6044 5.1491 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 14 N 0.0167 35.4864 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 15 f -2.1744 30.2957 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 16 g 8.0357 32.8149 36.6426 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 17 d -2.6053 33.9892 36.6691 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 18 W -0.0672 38.6293 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 19 s 7.6418 26.2679 26.4703 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 20 c 7.7999 29.6062 26.4703 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 21 u 8.3653 33.1226 25.9126 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 22 3 -2.6655 26.9346 37.0185 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 23 ~ 11.1372 27.6923 12.0861 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 24 # -6.5333 26.8256 41.5515 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 25 O -0.1083 32.6414 34.6234 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 26 ` -4.8868 11.1466 9.3586 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 27 @ -2.3341 21.9941 40.6703 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 28 F -0.2470 31.2852 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 29 S -0.5072 27.1846 34.6234 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 30 p 7.6264 34.2969 36.6426 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 31 “ -0.4075 23.8481 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 32 % -2.5582 26.0861 36.6691 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 33 £ -0.0226 29.3797 33.8574 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 34 . 26.1260 8.8509 7.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 35 2 -2.7792 26.5445 36.4608 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 36 5 -2.5266 27.0340 36.4608 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 37 m 7.9458 37.7404 25.7043 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 38 V -0.0082 38.4306 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 39 6 -2.6466 25.4543 37.0185 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 40 w 8.6590 33.3756 25.1466 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 41 T -0.0930 29.3213 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 42 M -0.1073 38.3481 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 43 G -0.2092 32.4596 34.6234 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 44 b -2.2743 34.2969 36.6691 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 45 9 -2.9817 25.4543 37.0185 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 46 ; 8.6865 14.2083 31.9019 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 47 D -0.2695 31.6670 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 48 L -0.4024 31.4253 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 49 y 8.3986 35.2713 36.0849 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 50 ‘ -0.2050 11.4543 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 51 \ -7.6700 25.9043 47.8074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 52 R 0.1353 34.9552 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 53 < 0.2280 33.3574 33.3392 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 54 4 -2.4148 25.2460 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 55 8 -3.0402 25.5784 37.0185 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 56 0 -2.9363 25.5784 37.0185 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 57 A -0.0629 38.2648 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 58 E 0.0312 30.3867 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 59 B 0.3912 32.8991 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 60 v 8.7046 35.0559 25.1466 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 61 k -2.1238 30.6450 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 62 J -0.0131 32.1830 34.3734 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 63 U -0.3169 34.9371 34.3734 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 64 j -2.3475 21.4448 46.8414 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 65 ( -2.3039 12.8522 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 66 7 -2.3438 24.9383 35.9031 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 67 § -2.0844 29.7880 41.0522 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 68 $ -6.4974 25.1466 47.5392 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 69 € -0.2083 32.2596 34.6234 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 70 / -7.3186 25.1466 47.8074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 71 C -0.1147 30.3457 34.6234 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 72 * -1.9659 23.8663 24.9466 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 73 ” -0.1421 23.8481 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 74 ? -0.1349 23.4828 34.6234 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 75 { -2.1747 14.7395 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 76 } -2.3665 14.7395 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 77 , 25.5008 11.4543 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 78 I 0.0670 24.7300 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 79 ° -8.5434 16.4380 16.4380 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 80 K -0.0175 34.4476 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 81 H -0.2354 30.7457 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 82 q 7.7604 33.9892 36.6426 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 83 & 1.0282 26.8522 33.1574 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 84 ’ -0.3210 11.4543 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 85 [ -2.2085 12.8438 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 86 - 14.4296 24.9383 5.1491 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 87 Y -0.1637 32.1337 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 88 Q -0.1244 32.6414 42.0682 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 89 " -0.1565 20.7160 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 90 ! -1.8860 9.3586 36.6691 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 91 x 8.4919 32.6414 25.1466 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 92 ) -1.9745 12.8522 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 93 = 10.0439 32.6414 14.9395 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 94 + 2.4195 29.3213 29.3213 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 95 X 0.0158 35.2448 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 96 » 10.5848 28.6895 23.2328 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 97 ' -0.1130 8.0373 17.2435 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 98 ¢ -6.8412 24.4306 43.2055 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 99 Z 0.3255 26.2945 33.6074 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 100 > 0.3837 33.3574 33.3392 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 101 ® -0.0561 34.9371 34.3734 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 102 © 0.1039 34.9371 34.3734 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 103 ] -2.3337 12.8438 43.1478 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 104 é -5.0009 30.7275 39.2725 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 105 z 8.5541 25.4543 25.1466 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 106 _ 45.8666 40.0861 5.1491 -Courier_New_Bold.ttf 38 V 38.4306 33.6074 107 ¥ 0.1192 31.2700 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 1 t 2.1331 29.3297 34.9636 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 2 h 0.4121 33.1226 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 3 a 10.6049 31.0352 26.4703 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 4 n 10.5847 31.9747 25.7043 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 5 P 2.7792 30.2957 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 6 o 10.4956 29.8457 26.4703 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 7 e 10.9016 30.7275 26.4703 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 8 : 11.2267 8.8509 25.1466 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 9 r 10.6967 30.0874 25.7043 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 10 l 0.4418 27.0256 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 11 i 0.3802 27.0256 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 12 1 0.1918 24.7300 36.4608 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 13 | 0.6283 5.1491 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 14 N 2.8859 35.4864 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 15 f 0.5058 30.2957 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 16 g 10.7459 32.8149 36.6426 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 17 d 0.5675 33.9892 36.6691 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 18 W 2.7872 38.6293 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 19 s 10.8436 26.2679 26.4703 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 20 c 10.5791 29.6062 26.4703 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 21 u 11.2142 33.1226 25.9126 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 22 3 0.2782 26.9346 37.0185 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 23 ~ 13.5866 27.6923 12.0861 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 24 # -3.6253 26.8256 41.5515 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 25 O 2.6535 32.6414 34.6234 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 26 ` -2.1384 11.1466 9.3586 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 27 @ 0.7013 21.9941 40.6703 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 28 F 2.9045 31.2852 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 29 S 2.6932 27.1846 34.6234 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 30 p 10.5105 34.2969 36.6426 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 31 “ 2.7670 23.8481 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 32 % 0.6299 26.0861 36.6691 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 33 £ 2.6339 29.3797 33.8574 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 34 . 29.3612 8.8509 7.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 35 2 -0.0629 26.5445 36.4608 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 36 5 0.5517 27.0340 36.4608 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 37 m 10.7438 37.7404 25.7043 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 38 V 2.6667 38.4306 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 39 6 0.0328 25.4543 37.0185 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 40 w 11.3526 33.3756 25.1466 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 41 T 2.9867 29.3213 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 42 M 2.7792 38.3481 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 43 G 2.6780 32.4596 34.6234 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 44 b 0.7361 34.2969 36.6691 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 45 9 -0.3384 25.4543 37.0185 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 46 ; 11.3660 14.2083 31.9019 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 47 D 2.6820 31.6670 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 48 L 2.6660 31.4253 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 49 y 11.3012 35.2713 36.0849 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 50 ‘ 2.6450 11.4543 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 51 \ -4.5318 25.9043 47.8074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 52 R 3.0262 34.9552 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 53 < 3.1446 33.3574 33.3392 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 54 4 0.7152 25.2460 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 55 8 -0.0388 25.5784 37.0185 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 56 0 -0.2095 25.5784 37.0185 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 57 A 2.9297 38.2648 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 58 E 2.6927 30.3867 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 59 B 2.8066 32.8991 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 60 v 11.1922 35.0559 25.1466 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 61 k 0.5252 30.6450 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 62 J 2.7176 32.1830 34.3734 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 63 U 2.9905 34.9371 34.3734 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 64 j 0.6994 21.4448 46.8414 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 65 ( 0.4107 12.8522 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 66 7 0.5920 24.9383 35.9031 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 67 § 0.3881 29.7880 41.0522 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 68 $ -3.7272 25.1466 47.5392 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 69 € 2.6460 32.2596 34.6234 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 70 / -4.7170 25.1466 47.8074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 71 C 2.7043 30.3457 34.6234 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 72 * 0.4238 23.8663 24.9466 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 73 ” 2.5104 23.8481 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 74 ? 2.6261 23.4828 34.6234 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 75 { 0.3789 14.7395 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 76 } 0.6064 14.7395 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 77 , 28.4349 11.4543 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 78 I 2.7116 24.7300 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 79 ° -5.8862 16.4380 16.4380 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 80 K 3.0489 34.4476 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 81 H 2.7006 30.7457 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 82 q 10.8153 33.9892 36.6426 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 83 & 4.1840 26.8522 33.1574 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 84 ’ 2.8795 11.4543 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 85 [ 0.5729 12.8438 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 86 - 17.1129 24.9383 5.1491 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 87 Y 2.7945 32.1337 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 88 Q 2.6446 32.6414 42.0682 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 89 " 2.9125 20.7160 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 90 ! 0.6389 9.3586 36.6691 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 91 x 11.6570 32.6414 25.1466 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 92 ) 0.5255 12.8522 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 93 = 12.3704 32.6414 14.9395 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 94 + 5.2716 29.3213 29.3213 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 95 X 3.0149 35.2448 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 96 » 13.3202 28.6895 23.2328 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 97 ' 2.6837 8.0373 17.2435 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 98 ¢ -4.1127 24.4306 43.2055 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 99 Z 3.1273 26.2945 33.6074 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 100 > 3.1055 33.3574 33.3392 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 101 ® 2.8538 34.9371 34.3734 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 102 © 2.8113 34.9371 34.3734 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 103 ] 0.3724 12.8438 43.1478 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 104 é -2.1471 30.7275 39.2725 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 105 z 11.3586 25.4543 25.1466 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 106 _ 48.6384 40.0861 5.1491 -Courier_New_Bold.ttf 39 6 25.4543 37.0185 107 ¥ 2.7663 31.2700 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 1 t -8.9276 29.3297 34.9636 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 2 h -10.8343 33.1226 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 3 a -0.3143 31.0352 26.4703 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 4 n -0.5804 31.9747 25.7043 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 5 P -8.1382 30.2957 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 6 o -0.3047 29.8457 26.4703 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 7 e -0.8575 30.7275 26.4703 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 8 : -0.0605 8.8509 25.1466 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 9 r -0.5901 30.0874 25.7043 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 10 l -10.5466 27.0256 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 11 i -10.9152 27.0256 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 12 1 -11.3911 24.7300 36.4608 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 13 | -10.9930 5.1491 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 14 N -8.2206 35.4864 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 15 f -10.4562 30.2957 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 16 g -0.7267 32.8149 36.6426 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 17 d -10.6726 33.9892 36.6691 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 18 W -8.3839 38.6293 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 19 s -0.4747 26.2679 26.4703 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 20 c -0.7276 29.6062 26.4703 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 21 u 0.1567 33.1226 25.9126 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 22 3 -11.1456 26.9346 37.0185 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 23 ~ 2.6231 27.6923 12.0861 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 24 # -14.7010 26.8256 41.5515 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 25 O -8.5162 32.6414 34.6234 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 26 ` -12.9498 11.1466 9.3586 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 27 @ -10.5766 21.9941 40.6703 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 28 F -8.5350 31.2852 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 29 S -8.8667 27.1846 34.6234 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 30 p -0.4104 34.2969 36.6426 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 31 “ -8.6646 23.8481 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 32 % -10.9875 26.0861 36.6691 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 33 £ -8.9278 29.3797 33.8574 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 34 . 18.1607 8.8509 7.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 35 2 -11.3531 26.5445 36.4608 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 36 5 -10.8274 27.0340 36.4608 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 37 m -0.4704 37.7404 25.7043 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 38 V -8.3796 38.4306 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 39 6 -11.3000 25.4543 37.0185 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 40 w -0.3443 33.3756 25.1466 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 41 T -8.4856 29.3213 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 42 M -8.6300 38.3481 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 43 G -8.5722 32.4596 34.6234 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 44 b -10.8835 34.2969 36.6691 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 45 9 -11.2729 25.4543 37.0185 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 46 ; -0.1608 14.2083 31.9019 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 47 D -8.4433 31.6670 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 48 L -8.5608 31.4253 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 49 y -0.1900 35.2713 36.0849 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 50 ‘ -8.7038 11.4543 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 51 \ -15.7794 25.9043 47.8074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 52 R -8.4076 34.9552 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 53 < -8.3206 33.3574 33.3392 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 54 4 -10.5171 25.2460 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 55 8 -10.9073 25.5784 37.0185 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 56 0 -11.2085 25.5784 37.0185 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 57 A -8.6479 38.2648 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 58 E -8.5405 30.3867 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 59 B -8.6172 32.8991 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 60 v -0.0202 35.0559 25.1466 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 61 k -10.9655 30.6450 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 62 J -8.0672 32.1830 34.3734 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 63 U -8.4126 34.9371 34.3734 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 64 j -10.6368 21.4448 46.8414 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 65 ( -10.5993 12.8522 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 66 7 -10.7422 24.9383 35.9031 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 67 § -10.7977 29.7880 41.0522 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 68 $ -15.0867 25.1466 47.5392 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 69 € -8.5833 32.2596 34.6234 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 70 / -15.5649 25.1466 47.8074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 71 C -8.8934 30.3457 34.6234 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 72 * -10.7033 23.8663 24.9466 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 73 ” -8.6672 23.8481 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 74 ? -8.7470 23.4828 34.6234 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 75 { -10.8222 14.7395 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 76 } -10.5291 14.7395 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 77 , 17.2917 11.4543 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 78 I -8.1180 24.7300 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 79 ° -17.3373 16.4380 16.4380 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 80 K -8.6806 34.4476 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 81 H -8.4646 30.7457 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 82 q -0.5934 33.9892 36.6426 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 83 & -7.3749 26.8522 33.1574 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 84 ’ -8.6139 11.4543 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 85 [ -10.6907 12.8438 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 86 - 5.9072 24.9383 5.1491 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 87 Y -8.5590 32.1337 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 88 Q -8.8762 32.6414 42.0682 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 89 " -8.6001 20.7160 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 90 ! -10.6379 9.3586 36.6691 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 91 x -0.0444 32.6414 25.1466 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 92 ) -10.7140 12.8522 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 93 = 1.2435 32.6414 14.9395 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 94 + -6.2939 29.3213 29.3213 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 95 X -8.6591 35.2448 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 96 » 2.0848 28.6895 23.2328 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 97 ' -8.7225 8.0373 17.2435 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 98 ¢ -15.5348 24.4306 43.2055 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 99 Z -8.0252 26.2945 33.6074 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 100 > -8.5039 33.3574 33.3392 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 101 ® -8.4955 34.9371 34.3734 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 102 © -8.2253 34.9371 34.3734 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 103 ] -10.6531 12.8438 43.1478 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 104 é -13.1660 30.7275 39.2725 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 105 z -0.1563 25.4543 25.1466 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 106 _ 37.4925 40.0861 5.1491 -Courier_New_Bold.ttf 40 w 33.3756 25.1466 107 ¥ -8.5622 31.2700 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 1 t -0.5821 29.3297 34.9636 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 2 h -2.3132 33.1226 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 3 a 7.8646 31.0352 26.4703 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 4 n 8.3854 31.9747 25.7043 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 5 P -0.1021 30.2957 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 6 o 7.8582 29.8457 26.4703 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 7 e 7.7890 30.7275 26.4703 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 8 : 8.3292 8.8509 25.1466 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 9 r 7.9889 30.0874 25.7043 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 10 l -2.1669 27.0256 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 11 i -1.9868 27.0256 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 12 1 -2.8391 24.7300 36.4608 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 13 | -2.3013 5.1491 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 14 N -0.0459 35.4864 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 15 f -2.2658 30.2957 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 16 g 7.9041 32.8149 36.6426 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 17 d -1.9241 33.9892 36.6691 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 18 W 0.2684 38.6293 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 19 s 7.8023 26.2679 26.4703 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 20 c 8.0185 29.6062 26.4703 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 21 u 8.5479 33.1226 25.9126 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 22 3 -2.8593 26.9346 37.0185 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 23 ~ 11.0216 27.6923 12.0861 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 24 # -6.4847 26.8256 41.5515 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 25 O -0.3274 32.6414 34.6234 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 26 ` -4.6149 11.1466 9.3586 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 27 @ -2.2929 21.9941 40.6703 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 28 F 0.0539 31.2852 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 29 S -0.3984 27.1846 34.6234 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 30 p 7.9949 34.2969 36.6426 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 31 “ -0.2325 23.8481 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 32 % -2.3796 26.0861 36.6691 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 33 £ -0.5735 29.3797 33.8574 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 34 . 26.4471 8.8509 7.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 35 2 -3.0443 26.5445 36.4608 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 36 5 -2.0826 27.0340 36.4608 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 37 m 7.8555 37.7404 25.7043 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 38 V -0.2049 38.4306 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 39 6 -2.5896 25.4543 37.0185 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 40 w 8.0710 33.3756 25.1466 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 41 T 0.1280 29.3213 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 42 M -0.2210 38.3481 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 43 G -0.0702 32.4596 34.6234 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 44 b -2.1403 34.2969 36.6691 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 45 9 -2.9525 25.4543 37.0185 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 46 ; 8.2320 14.2083 31.9019 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 47 D -0.0625 31.6670 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 48 L -0.0280 31.4253 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 49 y 8.6546 35.2713 36.0849 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 50 ‘ -0.1045 11.4543 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 51 \ -7.2607 25.9043 47.8074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 52 R 0.0769 34.9552 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 53 < 0.2384 33.3574 33.3392 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 54 4 -2.2980 25.2460 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 55 8 -3.0258 25.5784 37.0185 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 56 0 -2.8146 25.5784 37.0185 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 57 A 0.0519 38.2648 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 58 E -0.1613 30.3867 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 59 B -0.0153 32.8991 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 60 v 8.3709 35.0559 25.1466 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 61 k -2.2118 30.6450 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 62 J -0.0097 32.1830 34.3734 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 63 U 0.0129 34.9371 34.3734 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 64 j -2.4597 21.4448 46.8414 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 65 ( -2.2337 12.8522 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 66 7 -2.3159 24.9383 35.9031 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 67 § -2.2508 29.7880 41.0522 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 68 $ -6.5484 25.1466 47.5392 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 69 € 0.1313 32.2596 34.6234 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 70 / -7.2330 25.1466 47.8074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 71 C -0.3662 30.3457 34.6234 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 72 * -2.2176 23.8663 24.9466 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 73 ” -0.1147 23.8481 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 74 ? -0.1258 23.4828 34.6234 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 75 { -2.6012 14.7395 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 76 } -2.2879 14.7395 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 77 , 25.7729 11.4543 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 78 I -0.1727 24.7300 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 79 ° -8.4988 16.4380 16.4380 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 80 K 0.0078 34.4476 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 81 H 0.0769 30.7457 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 82 q 8.1218 33.9892 36.6426 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 83 & 1.3416 26.8522 33.1574 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 84 ’ -0.3201 11.4543 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 85 [ -2.0529 12.8438 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 86 - 14.5353 24.9383 5.1491 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 87 Y 0.1000 32.1337 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 88 Q -0.1758 32.6414 42.0682 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 89 " -0.2056 20.7160 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 90 ! -2.2697 9.3586 36.6691 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 91 x 8.2870 32.6414 25.1466 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 92 ) -2.3506 12.8522 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 93 = 9.9009 32.6414 14.9395 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 94 + 2.4069 29.3213 29.3213 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 95 X -0.0027 35.2448 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 96 » 10.7857 28.6895 23.2328 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 97 ' 0.0371 8.0373 17.2435 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 98 ¢ -7.2509 24.4306 43.2055 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 99 Z -0.1009 26.2945 33.6074 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 100 > 0.1069 33.3574 33.3392 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 101 ® -0.0714 34.9371 34.3734 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 102 © 0.0213 34.9371 34.3734 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 103 ] -2.3541 12.8438 43.1478 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 104 é -4.7911 30.7275 39.2725 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 105 z 8.6792 25.4543 25.1466 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 106 _ 45.8959 40.0861 5.1491 -Courier_New_Bold.ttf 41 T 29.3213 33.6074 107 ¥ 0.0825 31.2700 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 1 t -0.7569 29.3297 34.9636 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 2 h -2.4088 33.1226 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 3 a 7.7029 31.0352 26.4703 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 4 n 7.7033 31.9747 25.7043 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 5 P 0.2918 30.2957 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 6 o 7.8563 29.8457 26.4703 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 7 e 8.0223 30.7275 26.4703 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 8 : 8.2811 8.8509 25.1466 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 9 r 7.6617 30.0874 25.7043 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 10 l -2.3476 27.0256 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 11 i -2.5873 27.0256 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 12 1 -2.8143 24.7300 36.4608 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 13 | -2.3240 5.1491 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 14 N 0.0455 35.4864 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 15 f -2.4153 30.2957 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 16 g 7.7977 32.8149 36.6426 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 17 d -2.2408 33.9892 36.6691 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 18 W 0.2178 38.6293 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 19 s 8.1028 26.2679 26.4703 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 20 c 7.5492 29.6062 26.4703 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 21 u 8.5798 33.1226 25.9126 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 22 3 -2.7195 26.9346 37.0185 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 23 ~ 10.9336 27.6923 12.0861 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 24 # -6.2887 26.8256 41.5515 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 25 O -0.3052 32.6414 34.6234 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 26 ` -4.9939 11.1466 9.3586 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 27 @ -2.3638 21.9941 40.6703 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 28 F -0.2744 31.2852 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 29 S -0.3951 27.1846 34.6234 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 30 p 7.9494 34.2969 36.6426 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 31 “ 0.0359 23.8481 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 32 % -2.1497 26.0861 36.6691 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 33 £ -0.2758 29.3797 33.8574 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 34 . 26.2568 8.8509 7.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 35 2 -2.7195 26.5445 36.4608 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 36 5 -2.5163 27.0340 36.4608 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 37 m 8.1045 37.7404 25.7043 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 38 V -0.3813 38.4306 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 39 6 -2.7728 25.4543 37.0185 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 40 w 8.6990 33.3756 25.1466 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 41 T 0.0087 29.3213 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 42 M 0.0411 38.3481 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 43 G -0.2629 32.4596 34.6234 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 44 b -2.0987 34.2969 36.6691 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 45 9 -2.6965 25.4543 37.0185 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 46 ; 8.4117 14.2083 31.9019 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 47 D -0.0064 31.6670 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 48 L 0.0472 31.4253 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 49 y 8.4890 35.2713 36.0849 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 50 ‘ -0.5013 11.4543 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 51 \ -7.4122 25.9043 47.8074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 52 R 0.1007 34.9552 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 53 < 0.3150 33.3574 33.3392 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 54 4 -2.0727 25.2460 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 55 8 -2.8315 25.5784 37.0185 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 56 0 -3.2336 25.5784 37.0185 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 57 A -0.3291 38.2648 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 58 E 0.0055 30.3867 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 59 B 0.0371 32.8991 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 60 v 8.3635 35.0559 25.1466 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 61 k -2.4416 30.6450 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 62 J -0.0448 32.1830 34.3734 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 63 U -0.2897 34.9371 34.3734 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 64 j -2.4115 21.4448 46.8414 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 65 ( -2.2720 12.8522 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 66 7 -2.2740 24.9383 35.9031 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 67 § -2.0974 29.7880 41.0522 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 68 $ -6.2241 25.1466 47.5392 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 69 € -0.2819 32.2596 34.6234 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 70 / -7.3029 25.1466 47.8074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 71 C -0.2287 30.3457 34.6234 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 72 * -2.2671 23.8663 24.9466 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 73 ” -0.2175 23.8481 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 74 ? -0.4238 23.4828 34.6234 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 75 { -2.0839 14.7395 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 76 } -2.3369 14.7395 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 77 , 25.6167 11.4543 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 78 I -0.1027 24.7300 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 79 ° -8.6125 16.4380 16.4380 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 80 K 0.1214 34.4476 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 81 H -0.1018 30.7457 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 82 q 8.1593 33.9892 36.6426 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 83 & 1.3024 26.8522 33.1574 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 84 ’ -0.0600 11.4543 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 85 [ -2.4009 12.8438 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 86 - 14.4480 24.9383 5.1491 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 87 Y -0.0853 32.1337 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 88 Q -0.3724 32.6414 42.0682 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 89 " 0.1687 20.7160 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 90 ! -1.8826 9.3586 36.6691 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 91 x 8.4509 32.6414 25.1466 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 92 ) -2.4515 12.8522 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 93 = 9.5787 32.6414 14.9395 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 94 + 2.1452 29.3213 29.3213 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 95 X 0.1320 35.2448 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 96 » 10.4985 28.6895 23.2328 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 97 ' -0.0482 8.0373 17.2435 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 98 ¢ -7.1473 24.4306 43.2055 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 99 Z 0.1347 26.2945 33.6074 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 100 > 0.3182 33.3574 33.3392 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 101 ® -0.1185 34.9371 34.3734 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 102 © 0.1417 34.9371 34.3734 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 103 ] -2.1613 12.8438 43.1478 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 104 é -4.7951 30.7275 39.2725 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 105 z 8.6832 25.4543 25.1466 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 106 _ 45.8435 40.0861 5.1491 -Courier_New_Bold.ttf 42 M 38.3481 33.6074 107 ¥ -0.0903 31.2700 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 1 t -0.3532 29.3297 34.9636 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 2 h -1.5970 33.1226 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 3 a 8.2347 31.0352 26.4703 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 4 n 8.2002 31.9747 25.7043 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 5 P 0.5002 30.2957 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 6 o 8.1321 29.8457 26.4703 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 7 e 8.1517 30.7275 26.4703 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 8 : 8.8409 8.8509 25.1466 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 9 r 8.3069 30.0874 25.7043 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 10 l -2.1986 27.0256 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 11 i -1.8229 27.0256 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 12 1 -2.4159 24.7300 36.4608 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 13 | -2.0397 5.1491 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 14 N 0.1545 35.4864 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 15 f -2.2722 30.2957 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 16 g 8.1095 32.8149 36.6426 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 17 d -2.0548 33.9892 36.6691 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 18 W 0.5057 38.6293 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 19 s 7.9631 26.2679 26.4703 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 20 c 8.1313 29.6062 26.4703 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 21 u 8.8207 33.1226 25.9126 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 22 3 -2.6099 26.9346 37.0185 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 23 ~ 11.3306 27.6923 12.0861 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 24 # -6.4263 26.8256 41.5515 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 25 O 0.0560 32.6414 34.6234 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 26 ` -4.9762 11.1466 9.3586 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 27 @ -2.0456 21.9941 40.6703 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 28 F 0.3827 31.2852 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 29 S -0.0458 27.1846 34.6234 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 30 p 8.1201 34.2969 36.6426 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 31 “ -0.0158 23.8481 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 32 % -1.9224 26.0861 36.6691 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 33 £ 0.0056 29.3797 33.8574 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 34 . 26.7707 8.8509 7.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 35 2 -2.4843 26.5445 36.4608 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 36 5 -2.0690 27.0340 36.4608 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 37 m 7.9544 37.7404 25.7043 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 38 V 0.2097 38.4306 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 39 6 -2.5292 25.4543 37.0185 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 40 w 8.9189 33.3756 25.1466 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 41 T 0.1016 29.3213 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 42 M -0.0656 38.3481 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 43 G 0.1344 32.4596 34.6234 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 44 b -2.2500 34.2969 36.6691 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 45 9 -2.4351 25.4543 37.0185 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 46 ; 8.7136 14.2083 31.9019 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 47 D 0.3339 31.6670 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 48 L 0.2269 31.4253 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 49 y 8.6054 35.2713 36.0849 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 50 ‘ 0.1169 11.4543 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 51 \ -6.9055 25.9043 47.8074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 52 R 0.2500 34.9552 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 53 < 0.6071 33.3574 33.3392 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 54 4 -1.8271 25.2460 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 55 8 -2.2378 25.5784 37.0185 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 56 0 -2.6089 25.5784 37.0185 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 57 A 0.0044 38.2648 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 58 E 0.3339 30.3867 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 59 B 0.4173 32.8991 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 60 v 8.7492 35.0559 25.1466 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 61 k -2.2487 30.6450 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 62 J 0.2260 32.1830 34.3734 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 63 U 0.1319 34.9371 34.3734 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 64 j -2.2293 21.4448 46.8414 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 65 ( -2.3871 12.8522 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 66 7 -1.9998 24.9383 35.9031 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 67 § -2.0387 29.7880 41.0522 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 68 $ -6.2612 25.1466 47.5392 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 69 € -0.1014 32.2596 34.6234 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 70 / -7.3886 25.1466 47.8074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 71 C 0.2025 30.3457 34.6234 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 72 * -2.0764 23.8663 24.9466 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 73 ” 0.0444 23.8481 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 74 ? -0.1460 23.4828 34.6234 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 75 { -1.7543 14.7395 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 76 } -1.9702 14.7395 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 77 , 26.2036 11.4543 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 78 I 0.2068 24.7300 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 79 ° -8.5138 16.4380 16.4380 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 80 K 0.0300 34.4476 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 81 H 0.0921 30.7457 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 82 q 8.3431 33.9892 36.6426 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 83 & 1.5310 26.8522 33.1574 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 84 ’ 0.1322 11.4543 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 85 [ -1.9206 12.8438 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 86 - 14.5230 24.9383 5.1491 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 87 Y 0.2455 32.1337 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 88 Q -0.0190 32.6414 42.0682 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 89 " 0.4763 20.7160 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 90 ! -2.3367 9.3586 36.6691 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 91 x 8.6513 32.6414 25.1466 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 92 ) -2.1165 12.8522 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 93 = 10.2864 32.6414 14.9395 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 94 + 2.4954 29.3213 29.3213 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 95 X 0.1145 35.2448 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 96 » 10.4977 28.6895 23.2328 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 97 ' 0.2477 8.0373 17.2435 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 98 ¢ -6.6544 24.4306 43.2055 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 99 Z -0.0271 26.2945 33.6074 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 100 > 0.3726 33.3574 33.3392 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 101 ® 0.3210 34.9371 34.3734 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 102 © -0.0253 34.9371 34.3734 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 103 ] -2.4198 12.8438 43.1478 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 104 é -4.7705 30.7275 39.2725 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 105 z 9.0185 25.4543 25.1466 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 106 _ 46.3056 40.0861 5.1491 -Courier_New_Bold.ttf 43 G 32.4596 34.6234 107 ¥ 0.1572 31.2700 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 1 t 1.5262 29.3297 34.9636 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 2 h -0.0203 33.1226 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 3 a 9.9945 31.0352 26.4703 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 4 n 10.2495 31.9747 25.7043 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 5 P 2.4527 30.2957 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 6 o 10.3628 29.8457 26.4703 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 7 e 10.1474 30.7275 26.4703 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 8 : 10.5886 8.8509 25.1466 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 9 r 10.3689 30.0874 25.7043 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 10 l 0.1099 27.0256 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 11 i 0.4454 27.0256 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 12 1 -0.5654 24.7300 36.4608 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 13 | 0.0005 5.1491 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 14 N 2.3889 35.4864 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 15 f 0.1742 30.2957 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 16 g 10.3915 32.8149 36.6426 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 17 d -0.2323 33.9892 36.6691 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 18 W 2.2601 38.6293 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 19 s 10.2128 26.2679 26.4703 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 20 c 10.4513 29.6062 26.4703 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 21 u 10.7030 33.1226 25.9126 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 22 3 -0.8187 26.9346 37.0185 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 23 ~ 13.6100 27.6923 12.0861 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 24 # -3.8702 26.8256 41.5515 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 25 O 1.9660 32.6414 34.6234 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 26 ` -2.9524 11.1466 9.3586 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 27 @ -0.2303 21.9941 40.6703 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 28 F 2.2160 31.2852 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 29 S 1.7634 27.1846 34.6234 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 30 p 10.3055 34.2969 36.6426 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 31 “ 1.9238 23.8481 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 32 % 0.1498 26.0861 36.6691 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 33 £ 2.1681 29.3797 33.8574 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 34 . 28.5454 8.8509 7.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 35 2 -0.3751 26.5445 36.4608 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 36 5 0.1569 27.0340 36.4608 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 37 m 10.1988 37.7404 25.7043 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 38 V 2.3509 38.4306 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 39 6 -0.6319 25.4543 37.0185 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 40 w 10.8837 33.3756 25.1466 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 41 T 2.2984 29.3213 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 42 M 2.3882 38.3481 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 43 G 2.0254 32.4596 34.6234 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 44 b 0.2452 34.2969 36.6691 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 45 9 -0.4093 25.4543 37.0185 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 46 ; 11.0506 14.2083 31.9019 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 47 D 2.4083 31.6670 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 48 L 2.1452 31.4253 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 49 y 10.9021 35.2713 36.0849 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 50 ‘ 1.9855 11.4543 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 51 \ -5.1330 25.9043 47.8074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 52 R 2.3635 34.9552 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 53 < 2.4110 33.3574 33.3392 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 54 4 0.0444 25.2460 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 55 8 -0.3453 25.5784 37.0185 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 56 0 -0.5475 25.5784 37.0185 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 57 A 2.3737 38.2648 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 58 E 2.2568 30.3867 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 59 B 2.1701 32.8991 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 60 v 10.9876 35.0559 25.1466 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 61 k -0.1001 30.6450 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 62 J 1.9302 32.1830 34.3734 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 63 U 2.2341 34.9371 34.3734 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 64 j 0.0588 21.4448 46.8414 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 65 ( -0.0208 12.8522 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 66 7 -0.1256 24.9383 35.9031 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 67 § -0.0032 29.7880 41.0522 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 68 $ -3.8258 25.1466 47.5392 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 69 € 1.8976 32.2596 34.6234 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 70 / -5.3780 25.1466 47.8074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 71 C 1.9720 30.3457 34.6234 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 72 * 0.0746 23.8663 24.9466 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 73 ” 1.8338 23.8481 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 74 ? 2.1181 23.4828 34.6234 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 75 { -0.0830 14.7395 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 76 } 0.2225 14.7395 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 77 , 28.0571 11.4543 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 78 I 2.0005 24.7300 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 79 ° -6.1156 16.4380 16.4380 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 80 K 2.4086 34.4476 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 81 H 2.5085 30.7457 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 82 q 10.5032 33.9892 36.6426 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 83 & 3.6730 26.8522 33.1574 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 84 ’ 2.3233 11.4543 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 85 [ -0.2425 12.8438 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 86 - 16.7338 24.9383 5.1491 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 87 Y 2.3758 32.1337 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 88 Q 1.9941 32.6414 42.0682 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 89 " 2.3379 20.7160 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 90 ! 0.0833 9.3586 36.6691 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 91 x 11.1805 32.6414 25.1466 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 92 ) -0.2530 12.8522 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 93 = 12.3586 32.6414 14.9395 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 94 + 4.9191 29.3213 29.3213 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 95 X 2.2589 35.2448 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 96 » 12.7834 28.6895 23.2328 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 97 ' 2.4203 8.0373 17.2435 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 98 ¢ -4.5283 24.4306 43.2055 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 99 Z 2.2414 26.2945 33.6074 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 100 > 2.6440 33.3574 33.3392 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 101 ® 2.5625 34.9371 34.3734 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 102 © 2.1378 34.9371 34.3734 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 103 ] -0.0274 12.8438 43.1478 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 104 é -2.7967 30.7275 39.2725 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 105 z 10.7792 25.4543 25.1466 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 106 _ 48.1903 40.0861 5.1491 -Courier_New_Bold.ttf 44 b 34.2969 36.6691 107 ¥ 2.0803 31.2700 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 1 t 2.4631 29.3297 34.9636 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 2 h 0.4867 33.1226 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 3 a 10.9821 31.0352 26.4703 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 4 n 10.6952 31.9747 25.7043 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 5 P 2.8792 30.2957 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 6 o 10.6818 29.8457 26.4703 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 7 e 10.9237 30.7275 26.4703 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 8 : 11.5623 8.8509 25.1466 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 9 r 10.8719 30.0874 25.7043 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 10 l 0.7860 27.0256 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 11 i 0.2123 27.0256 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 12 1 0.2914 24.7300 36.4608 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 13 | 0.5674 5.1491 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 14 N 3.0776 35.4864 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 15 f 0.5517 30.2957 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 16 g 11.0766 32.8149 36.6426 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 17 d 0.4890 33.9892 36.6691 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 18 W 2.7078 38.6293 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 19 s 10.7203 26.2679 26.4703 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 20 c 10.8949 29.6062 26.4703 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 21 u 11.3883 33.1226 25.9126 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 22 3 -0.0667 26.9346 37.0185 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 23 ~ 13.8182 27.6923 12.0861 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 24 # -3.6823 26.8256 41.5515 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 25 O 2.2550 32.6414 34.6234 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 26 ` -2.0846 11.1466 9.3586 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 27 @ 0.4831 21.9941 40.6703 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 28 F 2.8502 31.2852 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 29 S 2.6404 27.1846 34.6234 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 30 p 10.7247 34.2969 36.6426 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 31 “ 2.6359 23.8481 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 32 % 0.6936 26.0861 36.6691 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 33 £ 2.5190 29.3797 33.8574 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 34 . 29.3530 8.8509 7.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 35 2 0.0484 26.5445 36.4608 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 36 5 0.1896 27.0340 36.4608 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 37 m 10.7740 37.7404 25.7043 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 38 V 2.9729 38.4306 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 39 6 -0.0339 25.4543 37.0185 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 40 w 11.4846 33.3756 25.1466 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 41 T 2.8177 29.3213 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 42 M 2.8350 38.3481 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 43 G 2.5959 32.4596 34.6234 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 44 b 0.3050 34.2969 36.6691 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 45 9 -0.1710 25.4543 37.0185 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 46 ; 11.3044 14.2083 31.9019 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 47 D 2.8491 31.6670 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 48 L 3.0685 31.4253 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 49 y 11.0515 35.2713 36.0849 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 50 ‘ 2.6227 11.4543 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 51 \ -4.5200 25.9043 47.8074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 52 R 3.0558 34.9552 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 53 < 3.2180 33.3574 33.3392 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 54 4 0.4143 25.2460 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 55 8 -0.0969 25.5784 37.0185 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 56 0 0.1538 25.5784 37.0185 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 57 A 2.4391 38.2648 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 58 E 2.5582 30.3867 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 59 B 2.9758 32.8991 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 60 v 11.5626 35.0559 25.1466 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 61 k 0.2778 30.6450 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 62 J 3.0049 32.1830 34.3734 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 63 U 2.9177 34.9371 34.3734 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 64 j 0.6642 21.4448 46.8414 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 65 ( 0.5429 12.8522 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 66 7 0.5919 24.9383 35.9031 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 67 § 0.5020 29.7880 41.0522 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 68 $ -3.7319 25.1466 47.5392 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 69 € 2.5125 32.2596 34.6234 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 70 / -4.7095 25.1466 47.8074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 71 C 2.4012 30.3457 34.6234 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 72 * 0.6865 23.8663 24.9466 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 73 ” 2.6019 23.8481 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 74 ? 2.7575 23.4828 34.6234 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 75 { 0.5604 14.7395 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 76 } 0.4548 14.7395 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 77 , 28.3802 11.4543 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 78 I 2.8330 24.7300 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 79 ° -5.4839 16.4380 16.4380 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 80 K 2.7645 34.4476 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 81 H 2.8865 30.7457 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 82 q 10.9164 33.9892 36.6426 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 83 & 3.9914 26.8522 33.1574 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 84 ’ 2.4536 11.4543 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 85 [ 0.4577 12.8438 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 86 - 17.3219 24.9383 5.1491 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 87 Y 3.0174 32.1337 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 88 Q 2.3743 32.6414 42.0682 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 89 " 2.7421 20.7160 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 90 ! 0.8222 9.3586 36.6691 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 91 x 11.4185 32.6414 25.1466 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 92 ) 0.4776 12.8522 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 93 = 12.9747 32.6414 14.9395 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 94 + 5.2827 29.3213 29.3213 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 95 X 2.6980 35.2448 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 96 » 13.5752 28.6895 23.2328 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 97 ' 2.7621 8.0373 17.2435 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 98 ¢ -4.3586 24.4306 43.2055 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 99 Z 2.9090 26.2945 33.6074 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 100 > 3.0164 33.3574 33.3392 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 101 ® 3.0432 34.9371 34.3734 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 102 © 2.9165 34.9371 34.3734 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 103 ] 0.5318 12.8438 43.1478 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 104 é -1.8007 30.7275 39.2725 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 105 z 11.3327 25.4543 25.1466 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 106 _ 48.4438 40.0861 5.1491 -Courier_New_Bold.ttf 45 9 25.4543 37.0185 107 ¥ 2.4636 31.2700 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 1 t -9.1269 29.3297 34.9636 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 2 h -10.5322 33.1226 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 3 a -0.5349 31.0352 26.4703 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 4 n -0.5349 31.9747 25.7043 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 5 P -8.5030 30.2957 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 6 o -0.7717 29.8457 26.4703 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 7 e -0.6174 30.7275 26.4703 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 8 : -0.0543 8.8509 25.1466 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 9 r -0.6221 30.0874 25.7043 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 10 l -10.7065 27.0256 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 11 i -10.9261 27.0256 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 12 1 -11.3557 24.7300 36.4608 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 13 | -10.9643 5.1491 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 14 N -8.5670 35.4864 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 15 f -10.5618 30.2957 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 16 g -0.5090 32.8149 36.6426 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 17 d -10.8159 33.9892 36.6691 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 18 W -8.6119 38.6293 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 19 s -0.4628 26.2679 26.4703 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 20 c -0.5220 29.6062 26.4703 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 21 u -0.1585 33.1226 25.9126 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 22 3 -11.2340 26.9346 37.0185 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 23 ~ 2.4400 27.6923 12.0861 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 24 # -15.0012 26.8256 41.5515 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 25 O -8.7947 32.6414 34.6234 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 26 ` -13.4729 11.1466 9.3586 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 27 @ -10.9048 21.9941 40.6703 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 28 F -8.7123 31.2852 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 29 S -8.5240 27.1846 34.6234 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 30 p -0.9015 34.2969 36.6426 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 31 “ -8.6521 23.8481 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 32 % -10.7161 26.0861 36.6691 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 33 £ -8.6384 29.3797 33.8574 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 34 . 17.8437 8.8509 7.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 35 2 -11.1501 26.5445 36.4608 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 36 5 -11.0191 27.0340 36.4608 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 37 m -0.6980 37.7404 25.7043 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 38 V -8.2894 38.4306 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 39 6 -11.4259 25.4543 37.0185 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 40 w -0.0315 33.3756 25.1466 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 41 T -9.0080 29.3213 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 42 M -8.3719 38.3481 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 43 G -8.7902 32.4596 34.6234 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 44 b -10.7017 34.2969 36.6691 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 45 9 -11.2219 25.4543 37.0185 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 46 ; -0.1432 14.2083 31.9019 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 47 D -8.4076 31.6670 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 48 L -8.6476 31.4253 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 49 y 0.0476 35.2713 36.0849 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 50 ‘ -9.0980 11.4543 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 51 \ -16.0504 25.9043 47.8074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 52 R -8.4780 34.9552 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 53 < -8.0373 33.3574 33.3392 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 54 4 -10.5952 25.2460 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 55 8 -11.3137 25.5784 37.0185 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 56 0 -11.3786 25.5784 37.0185 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 57 A -8.6336 38.2648 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 58 E -8.6190 30.3867 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 59 B -8.5646 32.8991 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 60 v -0.3739 35.0559 25.1466 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 61 k -10.8565 30.6450 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 62 J -8.2285 32.1830 34.3734 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 63 U -8.3839 34.9371 34.3734 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 64 j -10.7696 21.4448 46.8414 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 65 ( -10.6882 12.8522 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 66 7 -10.9103 24.9383 35.9031 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 67 § -10.6498 29.7880 41.0522 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 68 $ -15.1521 25.1466 47.5392 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 69 € -8.7895 32.2596 34.6234 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 70 / -15.6683 25.1466 47.8074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 71 C -8.4996 30.3457 34.6234 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 72 * -10.7449 23.8663 24.9466 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 73 ” -8.3207 23.8481 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 74 ? -8.9578 23.4828 34.6234 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 75 { -11.0007 14.7395 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 76 } -10.8024 14.7395 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 77 , 17.3412 11.4543 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 78 I -8.3339 24.7300 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 79 ° -17.0034 16.4380 16.4380 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 80 K -8.7018 34.4476 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 81 H -8.7133 30.7457 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 82 q -0.4966 33.9892 36.6426 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 83 & -7.1416 26.8522 33.1574 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 84 ’ -9.0643 11.4543 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 85 [ -10.7890 12.8438 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 86 - 5.9030 24.9383 5.1491 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 87 Y -8.3074 32.1337 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 88 Q -9.0137 32.6414 42.0682 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 89 " -8.2124 20.7160 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 90 ! -10.7894 9.3586 36.6691 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 91 x -0.0389 32.6414 25.1466 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 92 ) -10.8075 12.8522 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 93 = 1.3243 32.6414 14.9395 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 94 + -6.3212 29.3213 29.3213 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 95 X -8.6346 35.2448 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 96 » 2.2578 28.6895 23.2328 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 97 ' -8.8194 8.0373 17.2435 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 98 ¢ -15.3485 24.4306 43.2055 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 99 Z -8.5603 26.2945 33.6074 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 100 > -8.4313 33.3574 33.3392 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 101 ® -8.3719 34.9371 34.3734 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 102 © -8.6193 34.9371 34.3734 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 103 ] -10.9025 12.8438 43.1478 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 104 é -13.3571 30.7275 39.2725 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 105 z 0.1743 25.4543 25.1466 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 106 _ 37.4466 40.0861 5.1491 -Courier_New_Bold.ttf 46 ; 14.2083 31.9019 107 ¥ -8.5245 31.2700 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 1 t -0.8727 29.3297 34.9636 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 2 h -2.3665 33.1226 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 3 a 7.5554 31.0352 26.4703 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 4 n 8.3345 31.9747 25.7043 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 5 P -0.1397 30.2957 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 6 o 7.8924 29.8457 26.4703 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 7 e 7.6959 30.7275 26.4703 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 8 : 8.3305 8.8509 25.1466 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 9 r 8.2925 30.0874 25.7043 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 10 l -2.2712 27.0256 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 11 i -2.3372 27.0256 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 12 1 -2.8345 24.7300 36.4608 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 13 | -1.9059 5.1491 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 14 N 0.1585 35.4864 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 15 f -2.5374 30.2957 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 16 g 7.8697 32.8149 36.6426 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 17 d -2.3142 33.9892 36.6691 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 18 W 0.0107 38.6293 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 19 s 7.8971 26.2679 26.4703 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 20 c 7.7844 29.6062 26.4703 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 21 u 8.3668 33.1226 25.9126 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 22 3 -2.7352 26.9346 37.0185 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 23 ~ 10.9704 27.6923 12.0861 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 24 # -6.3273 26.8256 41.5515 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 25 O -0.5184 32.6414 34.6234 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 26 ` -4.6946 11.1466 9.3586 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 27 @ -2.4472 21.9941 40.6703 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 28 F -0.0070 31.2852 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 29 S -0.3473 27.1846 34.6234 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 30 p 7.8680 34.2969 36.6426 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 31 “ -0.2888 23.8481 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 32 % -2.0409 26.0861 36.6691 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 33 £ -0.1786 29.3797 33.8574 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 34 . 26.4716 8.8509 7.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 35 2 -2.8024 26.5445 36.4608 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 36 5 -2.4393 27.0340 36.4608 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 37 m 8.0943 37.7404 25.7043 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 38 V -0.1046 38.4306 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 39 6 -2.8339 25.4543 37.0185 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 40 w 8.7203 33.3756 25.1466 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 41 T 0.0307 29.3213 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 42 M -0.1362 38.3481 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 43 G -0.3260 32.4596 34.6234 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 44 b -2.5482 34.2969 36.6691 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 45 9 -2.7462 25.4543 37.0185 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 46 ; 8.4348 14.2083 31.9019 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 47 D 0.1703 31.6670 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 48 L -0.2581 31.4253 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 49 y 8.5146 35.2713 36.0849 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 50 ‘ 0.0282 11.4543 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 51 \ -7.2167 25.9043 47.8074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 52 R -0.1583 34.9552 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 53 < 0.3906 33.3574 33.3392 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 54 4 -2.1075 25.2460 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 55 8 -3.0944 25.5784 37.0185 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 56 0 -2.8432 25.5784 37.0185 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 57 A -0.1813 38.2648 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 58 E -0.0742 30.3867 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 59 B -0.2855 32.8991 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 60 v 8.7306 35.0559 25.1466 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 61 k -1.9476 30.6450 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 62 J 0.0769 32.1830 34.3734 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 63 U -0.0176 34.9371 34.3734 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 64 j -2.4425 21.4448 46.8414 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 65 ( -2.2744 12.8522 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 66 7 -2.6298 24.9383 35.9031 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 67 § -2.2183 29.7880 41.0522 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 68 $ -6.4573 25.1466 47.5392 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 69 € -0.5596 32.2596 34.6234 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 70 / -7.3905 25.1466 47.8074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 71 C -0.2435 30.3457 34.6234 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 72 * -2.4381 23.8663 24.9466 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 73 ” -0.2208 23.8481 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 74 ? -0.4683 23.4828 34.6234 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 75 { -2.3888 14.7395 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 76 } -2.2517 14.7395 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 77 , 25.6039 11.4543 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 78 I -0.0724 24.7300 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 79 ° -8.6848 16.4380 16.4380 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 80 K 0.3995 34.4476 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 81 H -0.1345 30.7457 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 82 q 7.8773 33.9892 36.6426 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 83 & 1.1378 26.8522 33.1574 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 84 ’ -0.0902 11.4543 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 85 [ -2.1318 12.8438 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 86 - 14.0993 24.9383 5.1491 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 87 Y 0.0477 32.1337 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 88 Q -0.3269 32.6414 42.0682 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 89 " 0.1131 20.7160 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 90 ! -2.5576 9.3586 36.6691 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 91 x 8.4405 32.6414 25.1466 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 92 ) -2.6053 12.8522 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 93 = 9.6613 32.6414 14.9395 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 94 + 2.2804 29.3213 29.3213 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 95 X 0.4045 35.2448 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 96 » 10.2064 28.6895 23.2328 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 97 ' -0.0112 8.0373 17.2435 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 98 ¢ -7.1580 24.4306 43.2055 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 99 Z -0.0362 26.2945 33.6074 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 100 > 0.2671 33.3574 33.3392 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 101 ® 0.2032 34.9371 34.3734 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 102 © -0.0506 34.9371 34.3734 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 103 ] -2.5389 12.8438 43.1478 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 104 é -4.8699 30.7275 39.2725 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 105 z 8.5905 25.4543 25.1466 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 106 _ 45.8935 40.0861 5.1491 -Courier_New_Bold.ttf 47 D 31.6670 33.6074 107 ¥ -0.0469 31.2700 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 1 t -0.7477 29.3297 34.9636 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 2 h -2.2809 33.1226 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 3 a 8.2375 31.0352 26.4703 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 4 n 7.9485 31.9747 25.7043 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 5 P -0.0756 30.2957 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 6 o 7.8485 29.8457 26.4703 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 7 e 7.9095 30.7275 26.4703 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 8 : 8.7834 8.8509 25.1466 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 9 r 8.0086 30.0874 25.7043 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 10 l -1.9801 27.0256 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 11 i -2.0572 27.0256 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 12 1 -3.0115 24.7300 36.4608 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 13 | -1.9990 5.1491 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 14 N 0.1750 35.4864 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 15 f -2.1371 30.2957 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 16 g 8.0316 32.8149 36.6426 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 17 d -2.4440 33.9892 36.6691 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 18 W 0.3997 38.6293 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 19 s 7.9364 26.2679 26.4703 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 20 c 8.1316 29.6062 26.4703 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 21 u 8.3866 33.1226 25.9126 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 22 3 -2.9436 26.9346 37.0185 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 23 ~ 10.9925 27.6923 12.0861 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 24 # -6.6005 26.8256 41.5515 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 25 O 0.0910 32.6414 34.6234 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 26 ` -5.0348 11.1466 9.3586 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 27 @ -2.3220 21.9941 40.6703 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 28 F 0.2901 31.2852 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 29 S -0.3394 27.1846 34.6234 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 30 p 7.7359 34.2969 36.6426 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 31 “ -0.4443 23.8481 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 32 % -2.3002 26.0861 36.6691 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 33 £ -0.3719 29.3797 33.8574 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 34 . 26.3822 8.8509 7.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 35 2 -2.8844 26.5445 36.4608 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 36 5 -2.0798 27.0340 36.4608 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 37 m 7.8392 37.7404 25.7043 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 38 V -0.0403 38.4306 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 39 6 -3.0759 25.4543 37.0185 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 40 w 8.2912 33.3756 25.1466 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 41 T 0.0449 29.3213 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 42 M 0.0812 38.3481 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 43 G -0.5212 32.4596 34.6234 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 44 b -2.2475 34.2969 36.6691 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 45 9 -2.5907 25.4543 37.0185 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 46 ; 8.5693 14.2083 31.9019 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 47 D 0.0710 31.6670 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 48 L -0.0202 31.4253 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 49 y 8.4051 35.2713 36.0849 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 50 ‘ -0.2830 11.4543 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 51 \ -7.6159 25.9043 47.8074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 52 R -0.0951 34.9552 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 53 < 0.5037 33.3574 33.3392 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 54 4 -2.4317 25.2460 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 55 8 -3.0002 25.5784 37.0185 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 56 0 -2.7547 25.5784 37.0185 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 57 A 0.0527 38.2648 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 58 E -0.0418 30.3867 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 59 B 0.2080 32.8991 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 60 v 8.2551 35.0559 25.1466 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 61 k -1.7807 30.6450 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 62 J 0.1386 32.1830 34.3734 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 63 U -0.0658 34.9371 34.3734 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 64 j -2.4126 21.4448 46.8414 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 65 ( -2.0803 12.8522 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 66 7 -2.4219 24.9383 35.9031 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 67 § -2.0519 29.7880 41.0522 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 68 $ -6.5389 25.1466 47.5392 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 69 € -0.0058 32.2596 34.6234 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 70 / -7.2771 25.1466 47.8074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 71 C -0.4658 30.3457 34.6234 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 72 * -2.3563 23.8663 24.9466 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 73 ” -0.3274 23.8481 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 74 ? -0.2898 23.4828 34.6234 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 75 { -2.0185 14.7395 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 76 } -2.1554 14.7395 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 77 , 25.3795 11.4543 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 78 I 0.0769 24.7300 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 79 ° -8.5467 16.4380 16.4380 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 80 K 0.2770 34.4476 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 81 H 0.2026 30.7457 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 82 q 8.0113 33.9892 36.6426 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 83 & 1.4500 26.8522 33.1574 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 84 ’ -0.4707 11.4543 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 85 [ -2.1086 12.8438 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 86 - 14.6196 24.9383 5.1491 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 87 Y 0.1228 32.1337 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 88 Q -0.4682 32.6414 42.0682 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 89 " -0.1029 20.7160 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 90 ! -2.2116 9.3586 36.6691 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 91 x 8.2610 32.6414 25.1466 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 92 ) -2.2353 12.8522 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 93 = 9.7987 32.6414 14.9395 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 94 + 2.0109 29.3213 29.3213 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 95 X -0.1844 35.2448 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 96 » 10.4089 28.6895 23.2328 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 97 ' 0.1769 8.0373 17.2435 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 98 ¢ -7.2028 24.4306 43.2055 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 99 Z -0.0184 26.2945 33.6074 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 100 > 0.1953 33.3574 33.3392 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 101 ® 0.3489 34.9371 34.3734 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 102 © -0.2332 34.9371 34.3734 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 103 ] -2.0886 12.8438 43.1478 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 104 é -4.6108 30.7275 39.2725 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 105 z 8.2240 25.4543 25.1466 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 106 _ 45.7309 40.0861 5.1491 -Courier_New_Bold.ttf 48 L 31.4253 33.6074 107 ¥ -0.2655 31.2700 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 1 t -8.9281 29.3297 34.9636 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 2 h -10.9334 33.1226 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 3 a -0.5692 31.0352 26.4703 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 4 n -0.4169 31.9747 25.7043 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 5 P -8.5294 30.2957 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 6 o -0.4289 29.8457 26.4703 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 7 e -0.5976 30.7275 26.4703 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 8 : -0.1806 8.8509 25.1466 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 9 r -0.5960 30.0874 25.7043 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 10 l -11.1209 27.0256 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 11 i -10.7001 27.0256 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 12 1 -10.8995 24.7300 36.4608 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 13 | -10.9117 5.1491 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 14 N -8.5494 35.4864 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 15 f -10.6852 30.2957 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 16 g -0.4505 32.8149 36.6426 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 17 d -10.7103 33.9892 36.6691 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 18 W -8.6151 38.6293 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 19 s -0.3677 26.2679 26.4703 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 20 c -0.5884 29.6062 26.4703 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 21 u 0.0520 33.1226 25.9126 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 22 3 -11.3702 26.9346 37.0185 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 23 ~ 2.5989 27.6923 12.0861 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 24 # -15.0091 26.8256 41.5515 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 25 O -8.8059 32.6414 34.6234 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 26 ` -13.0174 11.1466 9.3586 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 27 @ -10.5590 21.9941 40.6703 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 28 F -8.4181 31.2852 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 29 S -8.6127 27.1846 34.6234 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 30 p -0.4099 34.2969 36.6426 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 31 “ -8.4813 23.8481 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 32 % -10.7954 26.0861 36.6691 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 33 £ -8.9619 29.3797 33.8574 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 34 . 18.3781 8.8509 7.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 35 2 -11.3831 26.5445 36.4608 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 36 5 -10.6522 27.0340 36.4608 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 37 m -0.7208 37.7404 25.7043 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 38 V -8.0377 38.4306 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 39 6 -10.8559 25.4543 37.0185 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 40 w 0.0412 33.3756 25.1466 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 41 T -8.4879 29.3213 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 42 M -8.5557 38.3481 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 43 G -8.5106 32.4596 34.6234 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 44 b -10.7467 34.2969 36.6691 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 45 9 -11.2530 25.4543 37.0185 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 46 ; 0.0594 14.2083 31.9019 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 47 D -8.4722 31.6670 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 48 L -8.2740 31.4253 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 49 y 0.0742 35.2713 36.0849 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 50 ‘ -8.7645 11.4543 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 51 \ -16.0311 25.9043 47.8074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 52 R -8.1939 34.9552 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 53 < -8.0053 33.3574 33.3392 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 54 4 -10.7630 25.2460 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 55 8 -11.1858 25.5784 37.0185 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 56 0 -11.4013 25.5784 37.0185 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 57 A -8.4737 38.2648 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 58 E -8.3375 30.3867 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 59 B -8.5549 32.8991 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 60 v -0.0102 35.0559 25.1466 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 61 k -10.3982 30.6450 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 62 J -8.2139 32.1830 34.3734 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 63 U -8.5497 34.9371 34.3734 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 64 j -10.6185 21.4448 46.8414 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 65 ( -11.0777 12.8522 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 66 7 -10.4540 24.9383 35.9031 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 67 § -10.5109 29.7880 41.0522 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 68 $ -15.0478 25.1466 47.5392 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 69 € -8.8020 32.2596 34.6234 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 70 / -15.9074 25.1466 47.8074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 71 C -8.6028 30.3457 34.6234 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 72 * -10.7719 23.8663 24.9466 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 73 ” -8.5869 23.8481 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 74 ? -8.6793 23.4828 34.6234 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 75 { -10.9489 14.7395 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 76 } -10.5847 14.7395 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 77 , 17.1995 11.4543 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 78 I -8.3539 24.7300 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 79 ° -17.2307 16.4380 16.4380 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 80 K -8.3366 34.4476 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 81 H -8.5094 30.7457 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 82 q -0.5258 33.9892 36.6426 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 83 & -7.2182 26.8522 33.1574 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 84 ’ -8.9678 11.4543 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 85 [ -10.8980 12.8438 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 86 - 6.1023 24.9383 5.1491 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 87 Y -8.5979 32.1337 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 88 Q -8.6625 32.6414 42.0682 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 89 " -8.5294 20.7160 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 90 ! -11.1133 9.3586 36.6691 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 91 x 0.2225 32.6414 25.1466 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 92 ) -10.7848 12.8522 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 93 = 1.7073 32.6414 14.9395 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 94 + -5.9000 29.3213 29.3213 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 95 X -8.3390 35.2448 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 96 » 2.0396 28.6895 23.2328 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 97 ' -8.7352 8.0373 17.2435 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 98 ¢ -15.5497 24.4306 43.2055 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 99 Z -8.4576 26.2945 33.6074 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 100 > -8.0417 33.3574 33.3392 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 101 ® -8.5762 34.9371 34.3734 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 102 © -8.6666 34.9371 34.3734 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 103 ] -10.7041 12.8438 43.1478 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 104 é -13.1666 30.7275 39.2725 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 105 z 0.0844 25.4543 25.1466 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 106 _ 37.2298 40.0861 5.1491 -Courier_New_Bold.ttf 49 y 35.2713 36.0849 107 ¥ -8.5321 31.2700 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 1 t -0.5455 29.3297 34.9636 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 2 h -1.9499 33.1226 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 3 a 8.3496 31.0352 26.4703 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 4 n 8.0980 31.9747 25.7043 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 5 P 0.2220 30.2957 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 6 o 8.0075 29.8457 26.4703 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 7 e 8.1864 30.7275 26.4703 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 8 : 8.7667 8.8509 25.1466 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 9 r 8.1044 30.0874 25.7043 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 10 l -1.7847 27.0256 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 11 i -2.3553 27.0256 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 12 1 -2.6721 24.7300 36.4608 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 13 | -2.0522 5.1491 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 14 N 0.2681 35.4864 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 15 f -2.2181 30.2957 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 16 g 8.3773 32.8149 36.6426 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 17 d -1.7713 33.9892 36.6691 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 18 W 0.3269 38.6293 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 19 s 7.9149 26.2679 26.4703 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 20 c 8.2343 29.6062 26.4703 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 21 u 8.6394 33.1226 25.9126 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 22 3 -2.2553 26.9346 37.0185 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 23 ~ 11.0211 27.6923 12.0861 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 24 # -6.0279 26.8256 41.5515 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 25 O -0.1530 32.6414 34.6234 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 26 ` -4.4218 11.1466 9.3586 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 27 @ -1.9586 21.9941 40.6703 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 28 F 0.2527 31.2852 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 29 S -0.1511 27.1846 34.6234 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 30 p 8.0725 34.2969 36.6426 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 31 “ -0.0329 23.8481 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 32 % -1.9975 26.0861 36.6691 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 33 £ -0.0926 29.3797 33.8574 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 34 . 26.8316 8.8509 7.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 35 2 -2.5681 26.5445 36.4608 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 36 5 -1.8839 27.0340 36.4608 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 37 m 8.4144 37.7404 25.7043 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 38 V 0.4788 38.4306 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 39 6 -2.6178 25.4543 37.0185 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 40 w 9.2831 33.3756 25.1466 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 41 T 0.4812 29.3213 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 42 M 0.1277 38.3481 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 43 G -0.0987 32.4596 34.6234 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 44 b -1.8941 34.2969 36.6691 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 45 9 -2.9305 25.4543 37.0185 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 46 ; 8.7135 14.2083 31.9019 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 47 D 0.0786 31.6670 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 48 L 0.2657 31.4253 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 49 y 8.7108 35.2713 36.0849 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 50 ‘ -0.3624 11.4543 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 51 \ -7.0974 25.9043 47.8074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 52 R 0.1545 34.9552 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 53 < 0.3884 33.3574 33.3392 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 54 4 -2.2270 25.2460 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 55 8 -2.5622 25.5784 37.0185 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 56 0 -2.6853 25.5784 37.0185 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 57 A 0.1276 38.2648 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 58 E 0.1785 30.3867 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 59 B 0.2726 32.8991 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 60 v 8.5133 35.0559 25.1466 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 61 k -2.2519 30.6450 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 62 J 0.1244 32.1830 34.3734 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 63 U 0.3102 34.9371 34.3734 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 64 j -2.0327 21.4448 46.8414 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 65 ( -1.7973 12.8522 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 66 7 -2.0132 24.9383 35.9031 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 67 § -1.8256 29.7880 41.0522 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 68 $ -6.1287 25.1466 47.5392 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 69 € -0.0672 32.2596 34.6234 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 70 / -6.9365 25.1466 47.8074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 71 C 0.0009 30.3457 34.6234 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 72 * -1.9013 23.8663 24.9466 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 73 ” 0.2511 23.8481 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 74 ? -0.2859 23.4828 34.6234 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 75 { -2.2045 14.7395 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 76 } -2.1991 14.7395 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 77 , 25.7162 11.4543 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 78 I -0.0212 24.7300 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 79 ° -8.3399 16.4380 16.4380 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 80 K 0.2685 34.4476 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 81 H 0.5627 30.7457 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 82 q 8.1118 33.9892 36.6426 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 83 & 1.5429 26.8522 33.1574 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 84 ’ -0.0357 11.4543 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 85 [ -2.1392 12.8438 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 86 - 14.5627 24.9383 5.1491 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 87 Y 0.1986 32.1337 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 88 Q -0.0854 32.6414 42.0682 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 89 " 0.1763 20.7160 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 90 ! -1.7750 9.3586 36.6691 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 91 x 8.6339 32.6414 25.1466 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 92 ) -1.8180 12.8522 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 93 = 10.0131 32.6414 14.9395 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 94 + 2.6541 29.3213 29.3213 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 95 X 0.4038 35.2448 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 96 » 10.7324 28.6895 23.2328 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 97 ' 0.2570 8.0373 17.2435 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 98 ¢ -6.8291 24.4306 43.2055 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 99 Z 0.1731 26.2945 33.6074 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 100 > 0.3671 33.3574 33.3392 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 101 ® 0.0807 34.9371 34.3734 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 102 © 0.1935 34.9371 34.3734 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 103 ] -2.0958 12.8438 43.1478 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 104 é -4.8260 30.7275 39.2725 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 105 z 8.5694 25.4543 25.1466 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 106 _ 46.2709 40.0861 5.1491 -Courier_New_Bold.ttf 50 ‘ 11.4543 17.2435 107 ¥ 0.1479 31.2700 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 1 t 7.0458 29.3297 34.9636 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 2 h 5.0648 33.1226 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 3 a 15.6879 31.0352 26.4703 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 4 n 15.0712 31.9747 25.7043 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 5 P 7.5323 30.2957 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 6 o 15.2404 29.8457 26.4703 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 7 e 15.2347 30.7275 26.4703 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 8 : 15.9320 8.8509 25.1466 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 9 r 15.4507 30.0874 25.7043 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 10 l 5.1791 27.0256 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 11 i 4.9645 27.0256 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 12 1 4.4598 24.7300 36.4608 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 13 | 4.8367 5.1491 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 14 N 7.3321 35.4864 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 15 f 5.1309 30.2957 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 16 g 15.3775 32.8149 36.6426 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 17 d 5.1713 33.9892 36.6691 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 18 W 7.4939 38.6293 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 19 s 15.3441 26.2679 26.4703 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 20 c 15.3027 29.6062 26.4703 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 21 u 15.6600 33.1226 25.9126 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 22 3 4.2462 26.9346 37.0185 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 23 ~ 18.6748 27.6923 12.0861 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 24 # 1.1559 26.8256 41.5515 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 25 O 7.3918 32.6414 34.6234 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 26 ` 2.5846 11.1466 9.3586 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 27 @ 5.0776 21.9941 40.6703 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 28 F 7.4300 31.2852 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 29 S 6.9232 27.1846 34.6234 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 30 p 15.1768 34.2969 36.6426 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 31 “ 7.1461 23.8481 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 32 % 5.2425 26.0861 36.6691 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 33 £ 7.3504 29.3797 33.8574 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 34 . 33.9967 8.8509 7.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 35 2 4.5836 26.5445 36.4608 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 36 5 5.0726 27.0340 36.4608 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 37 m 15.0169 37.7404 25.7043 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 38 V 7.6162 38.4306 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 39 6 4.8301 25.4543 37.0185 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 40 w 15.6502 33.3756 25.1466 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 41 T 7.3888 29.3213 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 42 M 7.4860 38.3481 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 43 G 7.3805 32.4596 34.6234 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 44 b 5.2394 34.2969 36.6691 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 45 9 4.6627 25.4543 37.0185 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 46 ; 15.7040 14.2083 31.9019 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 47 D 7.3461 31.6670 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 48 L 7.2905 31.4253 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 49 y 16.0483 35.2713 36.0849 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 50 ‘ 7.4407 11.4543 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 51 \ -0.1815 25.9043 47.8074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 52 R 7.5162 34.9552 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 53 < 7.9512 33.3574 33.3392 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 54 4 5.1218 25.2460 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 55 8 4.4348 25.5784 37.0185 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 56 0 4.6239 25.5784 37.0185 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 57 A 7.6364 38.2648 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 58 E 7.4771 30.3867 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 59 B 7.5012 32.8991 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 60 v 16.1658 35.0559 25.1466 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 61 k 5.4680 30.6450 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 62 J 7.3993 32.1830 34.3734 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 63 U 7.1968 34.9371 34.3734 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 64 j 5.1334 21.4448 46.8414 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 65 ( 4.9192 12.8522 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 66 7 5.2942 24.9383 35.9031 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 67 § 5.1505 29.7880 41.0522 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 68 $ 1.3093 25.1466 47.5392 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 69 € 7.1674 32.2596 34.6234 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 70 / 0.0532 25.1466 47.8074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 71 C 7.1832 30.3457 34.6234 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 72 * 4.7877 23.8663 24.9466 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 73 ” 7.1860 23.8481 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 74 ? 7.1253 23.4828 34.6234 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 75 { 5.2407 14.7395 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 76 } 4.8836 14.7395 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 77 , 33.4790 11.4543 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 78 I 7.5157 24.7300 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 79 ° -1.0347 16.4380 16.4380 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 80 K 7.2674 34.4476 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 81 H 7.5550 30.7457 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 82 q 15.2190 33.9892 36.6426 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 83 & 8.5564 26.8522 33.1574 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 84 ’ 7.1563 11.4543 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 85 [ 5.1880 12.8438 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 86 - 21.9202 24.9383 5.1491 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 87 Y 7.5519 32.1337 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 88 Q 7.1765 32.6414 42.0682 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 89 " 7.5396 20.7160 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 90 ! 5.0326 9.3586 36.6691 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 91 x 15.9640 32.6414 25.1466 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 92 ) 5.0007 12.8522 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 93 = 17.1306 32.6414 14.9395 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 94 + 9.5783 29.3213 29.3213 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 95 X 7.1708 35.2448 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 96 » 18.0164 28.6895 23.2328 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 97 ' 7.5857 8.0373 17.2435 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 98 ¢ 0.2516 24.4306 43.2055 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 99 Z 7.3793 26.2945 33.6074 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 100 > 7.7213 33.3574 33.3392 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 101 ® 7.5151 34.9371 34.3734 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 102 © 7.4319 34.9371 34.3734 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 103 ] 5.4622 12.8438 43.1478 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 104 é 2.9192 30.7275 39.2725 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 105 z 15.6646 25.4543 25.1466 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 106 _ 53.4243 40.0861 5.1491 -Courier_New_Bold.ttf 51 \ 25.9043 47.8074 107 ¥ 7.7993 31.2700 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 1 t -0.7098 29.3297 34.9636 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 2 h -2.1339 33.1226 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 3 a 7.9878 31.0352 26.4703 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 4 n 8.0459 31.9747 25.7043 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 5 P -0.1353 30.2957 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 6 o 7.5948 29.8457 26.4703 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 7 e 7.9233 30.7275 26.4703 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 8 : 8.6730 8.8509 25.1466 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 9 r 8.1343 30.0874 25.7043 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 10 l -2.0714 27.0256 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 11 i -2.2814 27.0256 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 12 1 -2.8195 24.7300 36.4608 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 13 | -2.2264 5.1491 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 14 N 0.1498 35.4864 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 15 f -2.4158 30.2957 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 16 g 7.7177 32.8149 36.6426 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 17 d -2.4171 33.9892 36.6691 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 18 W 0.1645 38.6293 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 19 s 7.9420 26.2679 26.4703 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 20 c 7.8312 29.6062 26.4703 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 21 u 8.6044 33.1226 25.9126 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 22 3 -2.8543 26.9346 37.0185 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 23 ~ 11.3080 27.6923 12.0861 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 24 # -6.2206 26.8256 41.5515 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 25 O -0.5512 32.6414 34.6234 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 26 ` -5.3311 11.1466 9.3586 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 27 @ -2.2989 21.9941 40.6703 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 28 F 0.1099 31.2852 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 29 S -0.2573 27.1846 34.6234 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 30 p 7.8168 34.2969 36.6426 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 31 “ -0.2371 23.8481 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 32 % -2.1156 26.0861 36.6691 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 33 £ -0.3988 29.3797 33.8574 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 34 . 26.7348 8.8509 7.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 35 2 -2.9221 26.5445 36.4608 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 36 5 -1.9979 27.0340 36.4608 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 37 m 7.7547 37.7404 25.7043 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 38 V -0.0486 38.4306 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 39 6 -2.8488 25.4543 37.0185 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 40 w 8.2890 33.3756 25.1466 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 41 T 0.0006 29.3213 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 42 M -0.0917 38.3481 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 43 G -0.3111 32.4596 34.6234 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 44 b -2.4556 34.2969 36.6691 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 45 9 -2.8894 25.4543 37.0185 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 46 ; 8.4219 14.2083 31.9019 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 47 D -0.0871 31.6670 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 48 L 0.0060 31.4253 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 49 y 8.4366 35.2713 36.0849 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 50 ‘ -0.3932 11.4543 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 51 \ -7.2768 25.9043 47.8074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 52 R 0.1099 34.9552 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 53 < 0.2184 33.3574 33.3392 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 54 4 -2.0756 25.2460 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 55 8 -2.6737 25.5784 37.0185 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 56 0 -2.8534 25.5784 37.0185 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 57 A -0.1482 38.2648 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 58 E 0.0171 30.3867 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 59 B 0.0667 32.8991 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 60 v 8.4871 35.0559 25.1466 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 61 k -1.9914 30.6450 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 62 J -0.2100 32.1830 34.3734 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 63 U 0.0143 34.9371 34.3734 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 64 j -2.2952 21.4448 46.8414 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 65 ( -2.4060 12.8522 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 66 7 -2.3606 24.9383 35.9031 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 67 § -2.5312 29.7880 41.0522 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 68 $ -6.4819 25.1466 47.5392 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 69 € 0.0910 32.2596 34.6234 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 70 / -7.5966 25.1466 47.8074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 71 C -0.5048 30.3457 34.6234 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 72 * -1.9759 23.8663 24.9466 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 73 ” -0.1331 23.8481 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 74 ? -0.3896 23.4828 34.6234 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 75 { -2.1101 14.7395 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 76 } -2.0310 14.7395 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 77 , 25.8327 11.4543 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 78 I 0.0455 24.7300 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 79 ° -8.6226 16.4380 16.4380 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 80 K -0.1126 34.4476 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 81 H 0.2172 30.7457 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 82 q 7.9102 33.9892 36.6426 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 83 & 1.2972 26.8522 33.1574 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 84 ’ -0.2944 11.4543 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 85 [ -2.2601 12.8438 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 86 - 14.3749 24.9383 5.1491 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 87 Y -0.0685 32.1337 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 88 Q -0.4438 32.6414 42.0682 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 89 " 0.1905 20.7160 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 90 ! -2.5487 9.3586 36.6691 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 91 x 8.2939 32.6414 25.1466 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 92 ) -2.2424 12.8522 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 93 = 9.6756 32.6414 14.9395 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 94 + 2.4436 29.3213 29.3213 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 95 X 0.1705 35.2448 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 96 » 10.1730 28.6895 23.2328 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 97 ' 0.4498 8.0373 17.2435 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 98 ¢ -7.0456 24.4306 43.2055 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 99 Z -0.0334 26.2945 33.6074 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 100 > 0.3413 33.3574 33.3392 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 101 ® -0.0556 34.9371 34.3734 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 102 © 0.2068 34.9371 34.3734 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 103 ] -2.4103 12.8438 43.1478 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 104 é -4.7281 30.7275 39.2725 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 105 z 8.1846 25.4543 25.1466 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 106 _ 46.0890 40.0861 5.1491 -Courier_New_Bold.ttf 52 R 34.9552 33.6074 107 ¥ 0.2077 31.2700 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 1 t -0.9195 29.3297 34.9636 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 2 h -2.5584 33.1226 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 3 a 7.4520 31.0352 26.4703 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 4 n 7.6785 31.9747 25.7043 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 5 P -0.3234 30.2957 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 6 o 7.6856 29.8457 26.4703 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 7 e 7.5790 30.7275 26.4703 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 8 : 8.3984 8.8509 25.1466 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 9 r 7.5037 30.0874 25.7043 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 10 l -2.3597 27.0256 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 11 i -2.5271 27.0256 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 12 1 -3.2142 24.7300 36.4608 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 13 | -2.5634 5.1491 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 14 N -0.2970 35.4864 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 15 f -2.4429 30.2957 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 16 g 7.5937 32.8149 36.6426 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 17 d -2.4716 33.9892 36.6691 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 18 W -0.1426 38.6293 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 19 s 7.6692 26.2679 26.4703 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 20 c 7.5136 29.6062 26.4703 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 21 u 8.5721 33.1226 25.9126 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 22 3 -3.0925 26.9346 37.0185 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 23 ~ 10.5210 27.6923 12.0861 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 24 # -6.5958 26.8256 41.5515 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 25 O -0.4469 32.6414 34.6234 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 26 ` -4.8731 11.1466 9.3586 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 27 @ -2.6264 21.9941 40.6703 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 28 F -0.1207 31.2852 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 29 S -0.4697 27.1846 34.6234 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 30 p 7.5405 34.2969 36.6426 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 31 “ -0.6700 23.8481 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 32 % -2.6385 26.0861 36.6691 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 33 £ -0.2619 29.3797 33.8574 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 34 . 26.1994 8.8509 7.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 35 2 -3.2058 26.5445 36.4608 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 36 5 -2.7422 27.0340 36.4608 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 37 m 7.5607 37.7404 25.7043 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 38 V 0.0543 38.4306 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 39 6 -2.9862 25.4543 37.0185 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 40 w 8.1146 33.3756 25.1466 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 41 T -0.0712 29.3213 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 42 M -0.1136 38.3481 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 43 G -0.6668 32.4596 34.6234 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 44 b -2.5510 34.2969 36.6691 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 45 9 -2.9771 25.4543 37.0185 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 46 ; 8.3024 14.2083 31.9019 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 47 D -0.3766 31.6670 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 48 L -0.2537 31.4253 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 49 y 8.6287 35.2713 36.0849 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 50 ‘ -0.5753 11.4543 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 51 \ -7.5983 25.9043 47.8074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 52 R -0.3682 34.9552 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 53 < -0.2673 33.3574 33.3392 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 54 4 -2.7784 25.2460 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 55 8 -3.2626 25.5784 37.0185 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 56 0 -3.1456 25.5784 37.0185 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 57 A -0.2845 38.2648 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 58 E -0.2890 30.3867 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 59 B -0.2256 32.8991 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 60 v 8.3224 35.0559 25.1466 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 61 k -2.2006 30.6450 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 62 J -0.4697 32.1830 34.3734 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 63 U -0.3157 34.9371 34.3734 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 64 j -2.6387 21.4448 46.8414 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 65 ( -2.3585 12.8522 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 66 7 -2.9679 24.9383 35.9031 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 67 § -2.5078 29.7880 41.0522 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 68 $ -6.5629 25.1466 47.5392 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 69 € -0.5608 32.2596 34.6234 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 70 / -7.6205 25.1466 47.8074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 71 C -0.5978 30.3457 34.6234 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 72 * -2.5120 23.8663 24.9466 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 73 ” -0.3429 23.8481 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 74 ? -0.4765 23.4828 34.6234 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 75 { -2.3424 14.7395 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 76 } -2.6596 14.7395 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 77 , 25.7637 11.4543 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 78 I -0.0151 24.7300 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 79 ° -8.8727 16.4380 16.4380 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 80 K -0.2898 34.4476 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 81 H -0.3121 30.7457 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 82 q 7.5293 33.9892 36.6426 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 83 & 0.9891 26.8522 33.1574 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 84 ’ -0.5270 11.4543 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 85 [ -2.5693 12.8438 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 86 - 14.2279 24.9383 5.1491 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 87 Y -0.0870 32.1337 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 88 Q -0.5511 32.6414 42.0682 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 89 " -0.6408 20.7160 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 90 ! -2.6204 9.3586 36.6691 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 91 x 8.3767 32.6414 25.1466 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 92 ) -2.9039 12.8522 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 93 = 9.6266 32.6414 14.9395 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 94 + 2.2065 29.3213 29.3213 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 95 X -0.2691 35.2448 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 96 » 10.3322 28.6895 23.2328 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 97 ' -0.5249 8.0373 17.2435 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 98 ¢ -7.4589 24.4306 43.2055 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 99 Z -0.5163 26.2945 33.6074 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 100 > -0.0210 33.3574 33.3392 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 101 ® -0.4605 34.9371 34.3734 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 102 © -0.2116 34.9371 34.3734 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 103 ] -2.6663 12.8438 43.1478 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 104 é -5.5274 30.7275 39.2725 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 105 z 8.0275 25.4543 25.1466 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 106 _ 45.4613 40.0861 5.1491 -Courier_New_Bold.ttf 53 < 33.3574 33.3392 107 ¥ -0.1370 31.2700 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 1 t 1.4832 29.3297 34.9636 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 2 h 0.0589 33.1226 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 3 a 10.0320 31.0352 26.4703 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 4 n 10.4746 31.9747 25.7043 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 5 P 2.2340 30.2957 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 6 o 10.1199 29.8457 26.4703 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 7 e 10.1348 30.7275 26.4703 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 8 : 10.6235 8.8509 25.1466 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 9 r 10.1019 30.0874 25.7043 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 10 l -0.0102 27.0256 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 11 i 0.2132 27.0256 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 12 1 -0.7932 24.7300 36.4608 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 13 | -0.0640 5.1491 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 14 N 2.3509 35.4864 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 15 f -0.1187 30.2957 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 16 g 10.4700 32.8149 36.6426 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 17 d -0.1894 33.9892 36.6691 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 18 W 2.3159 38.6293 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 19 s 9.9193 26.2679 26.4703 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 20 c 9.9837 29.6062 26.4703 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 21 u 10.5154 33.1226 25.9126 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 22 3 -0.4808 26.9346 37.0185 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 23 ~ 13.2581 27.6923 12.0861 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 24 # -4.1278 26.8256 41.5515 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 25 O 1.9841 32.6414 34.6234 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 26 ` -2.5732 11.1466 9.3586 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 27 @ 0.0606 21.9941 40.6703 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 28 F 2.3086 31.2852 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 29 S 2.1990 27.1846 34.6234 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 30 p 10.1095 34.2969 36.6426 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 31 “ 1.9488 23.8481 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 32 % -0.0867 26.0861 36.6691 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 33 £ 1.7163 29.3797 33.8574 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 34 . 28.8175 8.8509 7.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 35 2 -0.4367 26.5445 36.4608 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 36 5 -0.1740 27.0340 36.4608 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 37 m 10.1988 37.7404 25.7043 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 38 V 2.2516 38.4306 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 39 6 -0.4413 25.4543 37.0185 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 40 w 10.7667 33.3756 25.1466 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 41 T 2.1820 29.3213 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 42 M 2.2340 38.3481 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 43 G 1.8174 32.4596 34.6234 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 44 b -0.0949 34.2969 36.6691 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 45 9 -0.4849 25.4543 37.0185 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 46 ; 10.7364 14.2083 31.9019 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 47 D 2.5059 31.6670 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 48 L 2.3239 31.4253 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 49 y 10.5280 35.2713 36.0849 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 50 ‘ 2.2982 11.4543 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 51 \ -5.0364 25.9043 47.8074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 52 R 2.1884 34.9552 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 53 < 2.7836 33.3574 33.3392 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 54 4 -0.1224 25.2460 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 55 8 -0.3491 25.5784 37.0185 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 56 0 -0.8470 25.5784 37.0185 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 57 A 1.9226 38.2648 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 58 E 2.3429 30.3867 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 59 B 2.3670 32.8991 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 60 v 10.8876 35.0559 25.1466 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 61 k 0.1148 30.6450 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 62 J 2.3638 32.1830 34.3734 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 63 U 2.0927 34.9371 34.3734 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 64 j 0.0570 21.4448 46.8414 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 65 ( 0.2562 12.8522 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 66 7 -0.0807 24.9383 35.9031 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 67 § -0.2071 29.7880 41.0522 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 68 $ -4.3493 25.1466 47.5392 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 69 € 2.0327 32.2596 34.6234 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 70 / -5.3011 25.1466 47.8074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 71 C 1.9475 30.3457 34.6234 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 72 * -0.1987 23.8663 24.9466 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 73 ” 2.2015 23.8481 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 74 ? 2.1296 23.4828 34.6234 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 75 { 0.1239 14.7395 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 76 } 0.2164 14.7395 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 77 , 27.9746 11.4543 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 78 I 2.3901 24.7300 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 79 ° -6.1116 16.4380 16.4380 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 80 K 2.5371 34.4476 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 81 H 2.4620 30.7457 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 82 q 10.0065 33.9892 36.6426 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 83 & 3.6805 26.8522 33.1574 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 84 ’ 1.7333 11.4543 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 85 [ -0.1484 12.8438 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 86 - 17.1137 24.9383 5.1491 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 87 Y 2.1468 32.1337 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 88 Q 2.2082 32.6414 42.0682 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 89 " 2.3846 20.7160 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 90 ! 0.0062 9.3586 36.6691 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 91 x 10.7310 32.6414 25.1466 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 92 ) -0.4096 12.8522 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 93 = 12.4027 32.6414 14.9395 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 94 + 4.6150 29.3213 29.3213 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 95 X 2.6751 35.2448 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 96 » 12.7302 28.6895 23.2328 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 97 ' 2.3512 8.0373 17.2435 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 98 ¢ -4.6217 24.4306 43.2055 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 99 Z 2.5422 26.2945 33.6074 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 100 > 2.4572 33.3574 33.3392 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 101 ® 2.3699 34.9371 34.3734 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 102 © 2.2718 34.9371 34.3734 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 103 ] -0.1520 12.8438 43.1478 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 104 é -2.6538 30.7275 39.2725 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 105 z 10.7701 25.4543 25.1466 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 106 _ 48.4344 40.0861 5.1491 -Courier_New_Bold.ttf 54 4 25.2460 35.9031 107 ¥ 2.4088 31.2700 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 1 t 2.0341 29.3297 34.9636 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 2 h 0.5618 33.1226 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 3 a 11.0821 31.0352 26.4703 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 4 n 10.7777 31.9747 25.7043 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 5 P 2.7377 30.2957 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 6 o 10.4775 29.8457 26.4703 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 7 e 10.8169 30.7275 26.4703 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 8 : 11.3397 8.8509 25.1466 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 9 r 10.4450 30.0874 25.7043 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 10 l 0.7810 27.0256 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 11 i 0.8973 27.0256 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 12 1 0.2113 24.7300 36.4608 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 13 | 0.3681 5.1491 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 14 N 3.1819 35.4864 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 15 f 0.7425 30.2957 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 16 g 10.8270 32.8149 36.6426 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 17 d 0.3451 33.9892 36.6691 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 18 W 2.6693 38.6293 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 19 s 10.5966 26.2679 26.4703 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 20 c 10.4512 29.6062 26.4703 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 21 u 11.1029 33.1226 25.9126 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 22 3 0.0690 26.9346 37.0185 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 23 ~ 13.6413 27.6923 12.0861 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 24 # -3.4901 26.8256 41.5515 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 25 O 2.5996 32.6414 34.6234 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 26 ` -2.0159 11.1466 9.3586 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 27 @ 0.7319 21.9941 40.6703 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 28 F 2.6439 31.2852 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 29 S 2.6828 27.1846 34.6234 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 30 p 10.7680 34.2969 36.6426 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 31 “ 2.6780 23.8481 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 32 % 0.4964 26.0861 36.6691 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 33 £ 2.4875 29.3797 33.8574 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 34 . 28.9998 8.8509 7.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 35 2 -0.3309 26.5445 36.4608 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 36 5 0.7120 27.0340 36.4608 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 37 m 10.5539 37.7404 25.7043 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 38 V 2.7547 38.4306 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 39 6 -0.0363 25.4543 37.0185 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 40 w 11.1182 33.3756 25.1466 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 41 T 2.7558 29.3213 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 42 M 2.6526 38.3481 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 43 G 2.5673 32.4596 34.6234 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 44 b 0.7193 34.2969 36.6691 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 45 9 0.0414 25.4543 37.0185 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 46 ; 11.3791 14.2083 31.9019 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 47 D 2.8450 31.6670 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 48 L 2.7857 31.4253 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 49 y 11.2142 35.2713 36.0849 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 50 ‘ 2.6534 11.4543 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 51 \ -4.5844 25.9043 47.8074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 52 R 2.7488 34.9552 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 53 < 2.9562 33.3574 33.3392 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 54 4 0.2745 25.2460 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 55 8 -0.0473 25.5784 37.0185 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 56 0 -0.1202 25.5784 37.0185 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 57 A 3.0391 38.2648 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 58 E 2.6612 30.3867 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 59 B 2.7878 32.8991 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 60 v 11.3897 35.0559 25.1466 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 61 k 0.7223 30.6450 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 62 J 2.8729 32.1830 34.3734 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 63 U 2.6921 34.9371 34.3734 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 64 j 0.0623 21.4448 46.8414 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 65 ( 0.5322 12.8522 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 66 7 0.4937 24.9383 35.9031 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 67 § 0.5934 29.7880 41.0522 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 68 $ -3.7129 25.1466 47.5392 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 69 € 2.7160 32.2596 34.6234 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 70 / -4.4185 25.1466 47.8074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 71 C 2.5677 30.3457 34.6234 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 72 * 0.4803 23.8663 24.9466 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 73 ” 2.4138 23.8481 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 74 ? 2.7674 23.4828 34.6234 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 75 { 0.6486 14.7395 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 76 } 0.3852 14.7395 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 77 , 28.6319 11.4543 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 78 I 2.7488 24.7300 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 79 ° -6.0436 16.4380 16.4380 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 80 K 2.9988 34.4476 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 81 H 2.9147 30.7457 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 82 q 10.7203 33.9892 36.6426 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 83 & 3.9744 26.8522 33.1574 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 84 ’ 2.3407 11.4543 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 85 [ 0.5236 12.8438 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 86 - 17.5587 24.9383 5.1491 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 87 Y 2.6305 32.1337 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 88 Q 2.8198 32.6414 42.0682 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 89 " 2.8149 20.7160 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 90 ! 0.5861 9.3586 36.6691 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 91 x 11.0483 32.6414 25.1466 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 92 ) 0.7435 12.8522 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 93 = 12.8043 32.6414 14.9395 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 94 + 5.2137 29.3213 29.3213 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 95 X 2.8561 35.2448 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 96 » 13.2637 28.6895 23.2328 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 97 ' 2.8886 8.0373 17.2435 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 98 ¢ -4.0672 24.4306 43.2055 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 99 Z 3.0174 26.2945 33.6074 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 100 > 3.1957 33.3574 33.3392 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 101 ® 2.8741 34.9371 34.3734 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 102 © 2.5050 34.9371 34.3734 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 103 ] 0.7222 12.8438 43.1478 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 104 é -2.2412 30.7275 39.2725 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 105 z 11.1755 25.4543 25.1466 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 106 _ 48.6096 40.0861 5.1491 -Courier_New_Bold.ttf 55 8 25.5784 37.0185 107 ¥ 3.1017 31.2700 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 1 t 2.0760 29.3297 34.9636 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 2 h 0.4706 33.1226 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 3 a 10.4335 31.0352 26.4703 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 4 n 10.8566 31.9747 25.7043 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 5 P 2.9448 30.2957 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 6 o 10.8376 29.8457 26.4703 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 7 e 10.9526 30.7275 26.4703 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 8 : 11.2508 8.8509 25.1466 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 9 r 10.8005 30.0874 25.7043 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 10 l 0.7986 27.0256 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 11 i 0.4402 27.0256 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 12 1 0.0303 24.7300 36.4608 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 13 | 0.6072 5.1491 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 14 N 3.0015 35.4864 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 15 f 0.3677 30.2957 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 16 g 10.6785 32.8149 36.6426 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 17 d 0.3894 33.9892 36.6691 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 18 W 2.6823 38.6293 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 19 s 10.6434 26.2679 26.4703 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 20 c 10.9985 29.6062 26.4703 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 21 u 11.0826 33.1226 25.9126 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 22 3 0.1597 26.9346 37.0185 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 23 ~ 14.0707 27.6923 12.0861 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 24 # -3.6226 26.8256 41.5515 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 25 O 2.4550 32.6414 34.6234 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 26 ` -2.4053 11.1466 9.3586 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 27 @ 0.4146 21.9941 40.6703 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 28 F 2.6634 31.2852 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 29 S 2.7596 27.1846 34.6234 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 30 p 10.6043 34.2969 36.6426 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 31 “ 2.4449 23.8481 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 32 % 0.2571 26.0861 36.6691 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 33 £ 2.8619 29.3797 33.8574 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 34 . 29.6861 8.8509 7.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 35 2 -0.1678 26.5445 36.4608 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 36 5 0.6323 27.0340 36.4608 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 37 m 10.9001 37.7404 25.7043 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 38 V 2.8502 38.4306 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 39 6 0.0455 25.4543 37.0185 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 40 w 11.3499 33.3756 25.1466 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 41 T 3.0985 29.3213 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 42 M 2.7635 38.3481 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 43 G 2.3518 32.4596 34.6234 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 44 b 0.6276 34.2969 36.6691 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 45 9 -0.0357 25.4543 37.0185 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 46 ; 11.2339 14.2083 31.9019 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 47 D 3.0443 31.6670 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 48 L 2.8401 31.4253 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 49 y 11.1438 35.2713 36.0849 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 50 ‘ 2.6236 11.4543 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 51 \ -4.3620 25.9043 47.8074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 52 R 3.0890 34.9552 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 53 < 3.2156 33.3574 33.3392 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 54 4 0.4753 25.2460 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 55 8 -0.1221 25.5784 37.0185 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 56 0 -0.1781 25.5784 37.0185 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 57 A 3.1371 38.2648 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 58 E 2.7794 30.3867 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 59 B 2.5647 32.8991 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 60 v 11.5714 35.0559 25.1466 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 61 k 0.6151 30.6450 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 62 J 3.1810 32.1830 34.3734 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 63 U 2.9062 34.9371 34.3734 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 64 j 0.4478 21.4448 46.8414 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 65 ( 0.7958 12.8522 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 66 7 0.6680 24.9383 35.9031 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 67 § 0.6609 29.7880 41.0522 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 68 $ -3.7839 25.1466 47.5392 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 69 € 2.5537 32.2596 34.6234 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 70 / -4.2381 25.1466 47.8074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 71 C 2.4291 30.3457 34.6234 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 72 * 0.4339 23.8663 24.9466 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 73 ” 2.2608 23.8481 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 74 ? 2.5228 23.4828 34.6234 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 75 { 0.7278 14.7395 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 76 } 0.8111 14.7395 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 77 , 28.2759 11.4543 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 78 I 2.8431 24.7300 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 79 ° -6.0034 16.4380 16.4380 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 80 K 2.8886 34.4476 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 81 H 2.7565 30.7457 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 82 q 10.8761 33.9892 36.6426 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 83 & 3.9498 26.8522 33.1574 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 84 ’ 2.4375 11.4543 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 85 [ 0.4701 12.8438 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 86 - 17.2756 24.9383 5.1491 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 87 Y 2.7998 32.1337 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 88 Q 2.3466 32.6414 42.0682 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 89 " 2.6109 20.7160 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 90 ! 0.6778 9.3586 36.6691 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 91 x 11.1839 32.6414 25.1466 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 92 ) 0.4598 12.8522 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 93 = 12.7938 32.6414 14.9395 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 94 + 5.5500 29.3213 29.3213 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 95 X 2.9817 35.2448 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 96 » 13.0209 28.6895 23.2328 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 97 ' 2.8090 8.0373 17.2435 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 98 ¢ -3.9930 24.4306 43.2055 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 99 Z 2.9762 26.2945 33.6074 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 100 > 2.7374 33.3574 33.3392 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 101 ® 2.9408 34.9371 34.3734 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 102 © 2.8663 34.9371 34.3734 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 103 ] 0.7342 12.8438 43.1478 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 104 é -1.9390 30.7275 39.2725 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 105 z 11.3470 25.4543 25.1466 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 106 _ 48.8243 40.0861 5.1491 -Courier_New_Bold.ttf 56 0 25.5784 37.0185 107 ¥ 3.0329 31.2700 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 1 t -0.8896 29.3297 34.9636 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 2 h -2.0284 33.1226 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 3 a 7.9630 31.0352 26.4703 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 4 n 7.9128 31.9747 25.7043 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 5 P 0.2127 30.2957 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 6 o 7.9843 29.8457 26.4703 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 7 e 7.8248 30.7275 26.4703 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 8 : 8.2252 8.8509 25.1466 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 9 r 7.6753 30.0874 25.7043 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 10 l -2.3232 27.0256 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 11 i -2.4828 27.0256 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 12 1 -2.9894 24.7300 36.4608 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 13 | -1.9957 5.1491 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 14 N 0.0238 35.4864 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 15 f -2.0331 30.2957 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 16 g 7.9105 32.8149 36.6426 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 17 d -1.9401 33.9892 36.6691 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 18 W -0.0588 38.6293 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 19 s 7.9550 26.2679 26.4703 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 20 c 8.0546 29.6062 26.4703 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 21 u 8.4809 33.1226 25.9126 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 22 3 -2.9464 26.9346 37.0185 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 23 ~ 10.8420 27.6923 12.0861 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 24 # -6.8123 26.8256 41.5515 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 25 O -0.3009 32.6414 34.6234 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 26 ` -5.1099 11.1466 9.3586 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 27 @ -2.3490 21.9941 40.6703 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 28 F -0.2062 31.2852 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 29 S -0.2740 27.1846 34.6234 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 30 p 7.8201 34.2969 36.6426 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 31 “ -0.0685 23.8481 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 32 % -2.1969 26.0861 36.6691 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 33 £ -0.1057 29.3797 33.8574 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 34 . 26.6932 8.8509 7.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 35 2 -2.8607 26.5445 36.4608 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 36 5 -2.1331 27.0340 36.4608 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 37 m 7.6292 37.7404 25.7043 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 38 V -0.2516 38.4306 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 39 6 -2.7837 25.4543 37.0185 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 40 w 8.5753 33.3756 25.1466 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 41 T -0.0553 29.3213 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 42 M 0.0806 38.3481 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 43 G -0.1533 32.4596 34.6234 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 44 b -2.3898 34.2969 36.6691 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 45 9 -2.8534 25.4543 37.0185 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 46 ; 8.6750 14.2083 31.9019 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 47 D -0.1455 31.6670 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 48 L 0.1344 31.4253 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 49 y 8.5373 35.2713 36.0849 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 50 ‘ -0.1241 11.4543 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 51 \ -7.5805 25.9043 47.8074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 52 R 0.4646 34.9552 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 53 < 0.2297 33.3574 33.3392 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 54 4 -2.3056 25.2460 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 55 8 -2.7033 25.5784 37.0185 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 56 0 -2.6608 25.5784 37.0185 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 57 A 0.0556 38.2648 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 58 E 0.1339 30.3867 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 59 B -0.1706 32.8991 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 60 v 8.1475 35.0559 25.1466 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 61 k -2.3082 30.6450 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 62 J -0.0015 32.1830 34.3734 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 63 U 0.0912 34.9371 34.3734 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 64 j -2.3149 21.4448 46.8414 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 65 ( -2.5150 12.8522 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 66 7 -1.9518 24.9383 35.9031 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 67 § -1.9634 29.7880 41.0522 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 68 $ -6.4235 25.1466 47.5392 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 69 € -0.1947 32.2596 34.6234 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 70 / -7.4674 25.1466 47.8074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 71 C -0.1401 30.3457 34.6234 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 72 * -2.7537 23.8663 24.9466 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 73 ” -0.2500 23.8481 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 74 ? -0.7265 23.4828 34.6234 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 75 { -2.5210 14.7395 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 76 } -2.6256 14.7395 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 77 , 25.7020 11.4543 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 78 I 0.0501 24.7300 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 79 ° -8.7366 16.4380 16.4380 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 80 K -0.1760 34.4476 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 81 H -0.1274 30.7457 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 82 q 7.7346 33.9892 36.6426 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 83 & 1.1163 26.8522 33.1574 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 84 ’ -0.2328 11.4543 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 85 [ -2.2867 12.8438 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 86 - 14.8280 24.9383 5.1491 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 87 Y 0.0383 32.1337 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 88 Q -0.2240 32.6414 42.0682 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 89 " 0.0400 20.7160 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 90 ! -2.3986 9.3586 36.6691 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 91 x 8.4696 32.6414 25.1466 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 92 ) -2.4959 12.8522 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 93 = 9.6914 32.6414 14.9395 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 94 + 2.1763 29.3213 29.3213 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 95 X 0.0189 35.2448 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 96 » 10.5145 28.6895 23.2328 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 97 ' 0.1051 8.0373 17.2435 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 98 ¢ -6.8961 24.4306 43.2055 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 99 Z -0.0237 26.2945 33.6074 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 100 > 0.3965 33.3574 33.3392 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 101 ® 0.1843 34.9371 34.3734 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 102 © 0.3054 34.9371 34.3734 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 103 ] -2.2744 12.8438 43.1478 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 104 é -5.0024 30.7275 39.2725 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 105 z 8.5560 25.4543 25.1466 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 106 _ 46.0292 40.0861 5.1491 -Courier_New_Bold.ttf 57 A 38.2648 33.6074 107 ¥ -0.2263 31.2700 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 1 t -0.5506 29.3297 34.9636 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 2 h -2.3276 33.1226 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 3 a 7.6292 31.0352 26.4703 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 4 n 7.8846 31.9747 25.7043 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 5 P -0.1141 30.2957 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 6 o 7.6792 29.8457 26.4703 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 7 e 8.0416 30.7275 26.4703 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 8 : 8.5772 8.8509 25.1466 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 9 r 8.1459 30.0874 25.7043 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 10 l -2.4742 27.0256 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 11 i -2.4758 27.0256 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 12 1 -2.8546 24.7300 36.4608 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 13 | -2.0284 5.1491 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 14 N 0.0931 35.4864 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 15 f -2.4078 30.2957 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 16 g 8.2159 32.8149 36.6426 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 17 d -2.3146 33.9892 36.6691 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 18 W 0.0431 38.6293 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 19 s 8.1311 26.2679 26.4703 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 20 c 7.9105 29.6062 26.4703 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 21 u 8.6221 33.1226 25.9126 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 22 3 -2.5685 26.9346 37.0185 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 23 ~ 10.8889 27.6923 12.0861 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 24 # -6.4161 26.8256 41.5515 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 25 O -0.3636 32.6414 34.6234 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 26 ` -4.8194 11.1466 9.3586 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 27 @ -2.4903 21.9941 40.6703 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 28 F -0.1645 31.2852 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 29 S -0.2863 27.1846 34.6234 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 30 p 7.7230 34.2969 36.6426 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 31 “ -0.2171 23.8481 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 32 % -2.0675 26.0861 36.6691 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 33 £ -0.4974 29.3797 33.8574 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 34 . 26.2492 8.8509 7.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 35 2 -2.6568 26.5445 36.4608 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 36 5 -2.3929 27.0340 36.4608 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 37 m 7.9095 37.7404 25.7043 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 38 V -0.1221 38.4306 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 39 6 -2.9888 25.4543 37.0185 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 40 w 8.2890 33.3756 25.1466 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 41 T -0.0097 29.3213 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 42 M -0.3484 38.3481 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 43 G 0.0425 32.4596 34.6234 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 44 b -2.2856 34.2969 36.6691 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 45 9 -2.6431 25.4543 37.0185 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 46 ; 8.2788 14.2083 31.9019 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 47 D -0.0129 31.6670 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 48 L -0.0912 31.4253 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 49 y 8.5734 35.2713 36.0849 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 50 ‘ -0.3845 11.4543 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 51 \ -7.5579 25.9043 47.8074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 52 R -0.0688 34.9552 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 53 < 0.0996 33.3574 33.3392 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 54 4 -2.2385 25.2460 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 55 8 -2.9962 25.5784 37.0185 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 56 0 -2.8547 25.5784 37.0185 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 57 A 0.1228 38.2648 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 58 E 0.2669 30.3867 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 59 B 0.3160 32.8991 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 60 v 8.4433 35.0559 25.1466 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 61 k -2.2188 30.6450 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 62 J -0.3285 32.1830 34.3734 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 63 U -0.1613 34.9371 34.3734 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 64 j -2.4287 21.4448 46.8414 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 65 ( -1.8944 12.8522 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 66 7 -2.0680 24.9383 35.9031 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 67 § -2.2632 29.7880 41.0522 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 68 $ -6.6353 25.1466 47.5392 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 69 € -0.1662 32.2596 34.6234 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 70 / -7.4888 25.1466 47.8074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 71 C -0.3594 30.3457 34.6234 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 72 * -2.2934 23.8663 24.9466 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 73 ” -0.2979 23.8481 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 74 ? -0.2412 23.4828 34.6234 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 75 { -2.1766 14.7395 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 76 } -2.2054 14.7395 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 77 , 25.3764 11.4543 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 78 I 0.0280 24.7300 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 79 ° -8.8383 16.4380 16.4380 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 80 K 0.0500 34.4476 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 81 H -0.1714 30.7457 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 82 q 7.9948 33.9892 36.6426 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 83 & 1.1192 26.8522 33.1574 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 84 ’ -0.3553 11.4543 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 85 [ -2.0213 12.8438 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 86 - 14.4818 24.9383 5.1491 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 87 Y -0.1649 32.1337 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 88 Q -0.2760 32.6414 42.0682 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 89 " -0.2131 20.7160 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 90 ! -2.1452 9.3586 36.6691 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 91 x 8.5339 32.6414 25.1466 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 92 ) -2.5001 12.8522 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 93 = 9.8891 32.6414 14.9395 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 94 + 2.6909 29.3213 29.3213 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 95 X 0.2049 35.2448 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 96 » 10.4142 28.6895 23.2328 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 97 ' 0.2469 8.0373 17.2435 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 98 ¢ -6.8783 24.4306 43.2055 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 99 Z -0.0955 26.2945 33.6074 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 100 > 0.1811 33.3574 33.3392 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 101 ® -0.1202 34.9371 34.3734 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 102 © -0.0801 34.9371 34.3734 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 103 ] -2.5080 12.8438 43.1478 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 104 é -5.0269 30.7275 39.2725 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 105 z 8.4108 25.4543 25.1466 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 106 _ 45.8139 40.0861 5.1491 -Courier_New_Bold.ttf 58 E 30.3867 33.6074 107 ¥ -0.1102 31.2700 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 1 t -0.6986 29.3297 34.9636 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 2 h -2.1188 33.1226 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 3 a 7.7807 31.0352 26.4703 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 4 n 7.7114 31.9747 25.7043 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 5 P 0.3596 30.2957 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 6 o 8.0437 29.8457 26.4703 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 7 e 8.3272 30.7275 26.4703 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 8 : 8.4223 8.8509 25.1466 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 9 r 8.2544 30.0874 25.7043 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 10 l -2.4930 27.0256 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 11 i -2.1239 27.0256 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 12 1 -2.9210 24.7300 36.4608 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 13 | -2.6938 5.1491 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 14 N -0.0969 35.4864 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 15 f -2.3801 30.2957 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 16 g 8.1632 32.8149 36.6426 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 17 d -2.2699 33.9892 36.6691 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 18 W -0.1581 38.6293 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 19 s 7.8114 26.2679 26.4703 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 20 c 7.6611 29.6062 26.4703 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 21 u 8.6277 33.1226 25.9126 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 22 3 -3.3152 26.9346 37.0185 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 23 ~ 11.1001 27.6923 12.0861 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 24 # -6.5734 26.8256 41.5515 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 25 O -0.2111 32.6414 34.6234 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 26 ` -4.7372 11.1466 9.3586 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 27 @ -2.4591 21.9941 40.6703 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 28 F 0.3318 31.2852 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 29 S -0.6805 27.1846 34.6234 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 30 p 8.0277 34.2969 36.6426 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 31 “ -0.1384 23.8481 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 32 % -2.2758 26.0861 36.6691 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 33 £ -0.1659 29.3797 33.8574 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 34 . 26.4519 8.8509 7.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 35 2 -2.6138 26.5445 36.4608 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 36 5 -2.3726 27.0340 36.4608 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 37 m 8.2127 37.7404 25.7043 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 38 V 0.1026 38.4306 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 39 6 -2.7820 25.4543 37.0185 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 40 w 8.7479 33.3756 25.1466 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 41 T 0.0290 29.3213 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 42 M 0.1425 38.3481 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 43 G -0.1740 32.4596 34.6234 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 44 b -2.2568 34.2969 36.6691 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 45 9 -2.8047 25.4543 37.0185 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 46 ; 8.6368 14.2083 31.9019 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 47 D -0.0613 31.6670 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 48 L -0.5083 31.4253 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 49 y 8.4696 35.2713 36.0849 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 50 ‘ -0.5148 11.4543 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 51 \ -7.6724 25.9043 47.8074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 52 R 0.0982 34.9552 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 53 < 0.0953 33.3574 33.3392 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 54 4 -2.2989 25.2460 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 55 8 -3.0810 25.5784 37.0185 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 56 0 -2.9790 25.5784 37.0185 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 57 A 0.3869 38.2648 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 58 E 0.1154 30.3867 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 59 B 0.1202 32.8991 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 60 v 8.5990 35.0559 25.1466 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 61 k -1.9459 30.6450 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 62 J -0.0076 32.1830 34.3734 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 63 U -0.2872 34.9371 34.3734 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 64 j -2.2188 21.4448 46.8414 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 65 ( -2.2585 12.8522 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 66 7 -2.3355 24.9383 35.9031 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 67 § -2.2667 29.7880 41.0522 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 68 $ -6.3278 25.1466 47.5392 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 69 € -0.3011 32.2596 34.6234 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 70 / -7.8225 25.1466 47.8074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 71 C -0.5068 30.3457 34.6234 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 72 * -2.4562 23.8663 24.9466 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 73 ” -0.1948 23.8481 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 74 ? -0.5368 23.4828 34.6234 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 75 { -2.6113 14.7395 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 76 } -2.4143 14.7395 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 77 , 25.4666 11.4543 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 78 I -0.1970 24.7300 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 79 ° -8.0913 16.4380 16.4380 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 80 K 0.0760 34.4476 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 81 H 0.3031 30.7457 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 82 q 7.7178 33.9892 36.6426 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 83 & 1.2375 26.8522 33.1574 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 84 ’ 0.1419 11.4543 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 85 [ -2.1104 12.8438 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 86 - 14.4491 24.9383 5.1491 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 87 Y 0.3132 32.1337 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 88 Q -0.5596 32.6414 42.0682 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 89 " -0.1200 20.7160 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 90 ! -2.3422 9.3586 36.6691 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 91 x 8.5373 32.6414 25.1466 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 92 ) -2.0736 12.8522 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 93 = 9.6743 32.6414 14.9395 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 94 + 2.1848 29.3213 29.3213 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 95 X -0.0644 35.2448 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 96 » 10.2593 28.6895 23.2328 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 97 ' 0.1390 8.0373 17.2435 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 98 ¢ -7.2047 24.4306 43.2055 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 99 Z 0.0105 26.2945 33.6074 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 100 > 0.0758 33.3574 33.3392 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 101 ® 0.0976 34.9371 34.3734 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 102 © -0.1877 34.9371 34.3734 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 103 ] -2.3706 12.8438 43.1478 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 104 é -4.8781 30.7275 39.2725 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 105 z 8.7197 25.4543 25.1466 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 106 _ 45.9462 40.0861 5.1491 -Courier_New_Bold.ttf 59 B 32.8991 33.6074 107 ¥ -0.0686 31.2700 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 1 t -9.0750 29.3297 34.9636 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 2 h -10.8208 33.1226 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 3 a -0.5787 31.0352 26.4703 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 4 n -0.4938 31.9747 25.7043 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 5 P -8.4140 30.2957 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 6 o -0.3824 29.8457 26.4703 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 7 e -0.4832 30.7275 26.4703 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 8 : 0.1070 8.8509 25.1466 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 9 r -0.4859 30.0874 25.7043 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 10 l -11.0007 27.0256 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 11 i -10.5776 27.0256 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 12 1 -11.1646 24.7300 36.4608 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 13 | -10.9516 5.1491 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 14 N -8.5557 35.4864 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 15 f -10.6693 30.2957 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 16 g -0.7448 32.8149 36.6426 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 17 d -10.8097 33.9892 36.6691 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 18 W -8.3357 38.6293 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 19 s -0.9247 26.2679 26.4703 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 20 c -0.6598 29.6062 26.4703 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 21 u -0.0400 33.1226 25.9126 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 22 3 -11.3307 26.9346 37.0185 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 23 ~ 2.4220 27.6923 12.0861 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 24 # -14.8733 26.8256 41.5515 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 25 O -8.8661 32.6414 34.6234 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 26 ` -13.2300 11.1466 9.3586 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 27 @ -10.7138 21.9941 40.6703 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 28 F -8.4255 31.2852 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 29 S -8.2965 27.1846 34.6234 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 30 p -0.5499 34.2969 36.6426 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 31 “ -8.6649 23.8481 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 32 % -10.5619 26.0861 36.6691 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 33 £ -8.6492 29.3797 33.8574 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 34 . 18.2617 8.8509 7.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 35 2 -11.4385 26.5445 36.4608 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 36 5 -10.7142 27.0340 36.4608 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 37 m -0.7060 37.7404 25.7043 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 38 V -8.4039 38.4306 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 39 6 -11.4977 25.4543 37.0185 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 40 w 0.2386 33.3756 25.1466 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 41 T -8.5377 29.3213 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 42 M -8.3059 38.3481 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 43 G -8.8812 32.4596 34.6234 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 44 b -10.6481 34.2969 36.6691 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 45 9 -10.9537 25.4543 37.0185 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 46 ; 0.0555 14.2083 31.9019 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 47 D -8.3732 31.6670 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 48 L -8.5766 31.4253 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 49 y -0.2111 35.2713 36.0849 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 50 ‘ -8.8956 11.4543 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 51 \ -15.6614 25.9043 47.8074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 52 R -8.4707 34.9552 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 53 < -8.1269 33.3574 33.3392 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 54 4 -10.8051 25.2460 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 55 8 -11.2590 25.5784 37.0185 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 56 0 -11.5353 25.5784 37.0185 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 57 A -8.6158 38.2648 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 58 E -8.5582 30.3867 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 59 B -8.5367 32.8991 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 60 v -0.1126 35.0559 25.1466 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 61 k -10.6368 30.6450 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 62 J -8.4965 32.1830 34.3734 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 63 U -8.2094 34.9371 34.3734 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 64 j -10.8208 21.4448 46.8414 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 65 ( -10.9960 12.8522 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 66 7 -10.7700 24.9383 35.9031 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 67 § -10.6231 29.7880 41.0522 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 68 $ -14.6453 25.1466 47.5392 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 69 € -8.9578 32.2596 34.6234 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 70 / -15.8314 25.1466 47.8074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 71 C -9.2316 30.3457 34.6234 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 72 * -10.4748 23.8663 24.9466 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 73 ” -8.7882 23.8481 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 74 ? -8.8006 23.4828 34.6234 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 75 { -10.9904 14.7395 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 76 } -10.9673 14.7395 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 77 , 16.9808 11.4543 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 78 I -8.2066 24.7300 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 79 ° -16.8360 16.4380 16.4380 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 80 K -8.4071 34.4476 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 81 H -8.2291 30.7457 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 82 q -0.4660 33.9892 36.6426 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 83 & -6.8565 26.8522 33.1574 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 84 ’ -8.6166 11.4543 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 85 [ -10.7987 12.8438 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 86 - 6.1347 24.9383 5.1491 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 87 Y -8.3509 32.1337 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 88 Q -8.5383 32.6414 42.0682 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 89 " -8.3538 20.7160 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 90 ! -10.6818 9.3586 36.6691 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 91 x 0.4125 32.6414 25.1466 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 92 ) -10.9979 12.8522 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 93 = 1.4646 32.6414 14.9395 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 94 + -6.2363 29.3213 29.3213 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 95 X -8.2110 35.2448 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 96 » 1.7368 28.6895 23.2328 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 97 ' -8.1197 8.0373 17.2435 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 98 ¢ -15.5779 24.4306 43.2055 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 99 Z -8.7011 26.2945 33.6074 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 100 > -8.1055 33.3574 33.3392 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 101 ® -8.3506 34.9371 34.3734 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 102 © -8.7809 34.9371 34.3734 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 103 ] -10.8255 12.8438 43.1478 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 104 é -13.3659 30.7275 39.2725 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 105 z 0.1823 25.4543 25.1466 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 106 _ 37.6051 40.0861 5.1491 -Courier_New_Bold.ttf 60 v 35.0559 25.1466 107 ¥ -8.0718 31.2700 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 1 t 1.6625 29.3297 34.9636 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 2 h -0.1774 33.1226 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 3 a 10.3860 31.0352 26.4703 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 4 n 10.2722 31.9747 25.7043 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 5 P 2.2989 30.2957 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 6 o 10.1501 29.8457 26.4703 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 7 e 10.2090 30.7275 26.4703 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 8 : 10.7336 8.8509 25.1466 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 9 r 10.3726 30.0874 25.7043 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 10 l -0.0571 27.0256 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 11 i 0.0330 27.0256 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 12 1 -0.2351 24.7300 36.4608 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 13 | -0.0130 5.1491 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 14 N 2.2201 35.4864 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 15 f 0.2585 30.2957 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 16 g 9.8765 32.8149 36.6426 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 17 d -0.0614 33.9892 36.6691 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 18 W 2.4161 38.6293 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 19 s 10.2567 26.2679 26.4703 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 20 c 10.2767 29.6062 26.4703 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 21 u 10.6077 33.1226 25.9126 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 22 3 -0.4128 26.9346 37.0185 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 23 ~ 13.1761 27.6923 12.0861 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 24 # -4.3320 26.8256 41.5515 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 25 O 2.0635 32.6414 34.6234 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 26 ` -2.8597 11.1466 9.3586 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 27 @ 0.3225 21.9941 40.6703 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 28 F 2.4111 31.2852 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 29 S 1.9331 27.1846 34.6234 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 30 p 10.1159 34.2969 36.6426 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 31 “ 1.9432 23.8481 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 32 % -0.1216 26.0861 36.6691 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 33 £ 2.1384 29.3797 33.8574 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 34 . 28.9013 8.8509 7.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 35 2 -0.6319 26.5445 36.4608 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 36 5 -0.1855 27.0340 36.4608 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 37 m 10.0800 37.7404 25.7043 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 38 V 2.0459 38.4306 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 39 6 -0.5973 25.4543 37.0185 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 40 w 10.8338 33.3756 25.1466 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 41 T 2.2300 29.3213 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 42 M 2.3796 38.3481 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 43 G 2.1416 32.4596 34.6234 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 44 b 0.0539 34.2969 36.6691 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 45 9 -0.0851 25.4543 37.0185 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 46 ; 10.6976 14.2083 31.9019 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 47 D 2.4436 31.6670 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 48 L 2.1316 31.4253 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 49 y 10.8987 35.2713 36.0849 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 50 ‘ 1.8729 11.4543 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 51 \ -5.2770 25.9043 47.8074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 52 R 2.4208 34.9552 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 53 < 2.2248 33.3574 33.3392 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 54 4 0.0338 25.2460 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 55 8 -0.4349 25.5784 37.0185 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 56 0 -0.5004 25.5784 37.0185 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 57 A 2.3225 38.2648 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 58 E 2.2197 30.3867 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 59 B 2.1376 32.8991 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 60 v 10.6453 35.0559 25.1466 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 61 k 0.1280 30.6450 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 62 J 2.2233 32.1830 34.3734 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 63 U 2.4175 34.9371 34.3734 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 64 j -0.2640 21.4448 46.8414 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 65 ( 0.0126 12.8522 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 66 7 -0.2937 24.9383 35.9031 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 67 § -0.0074 29.7880 41.0522 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 68 $ -4.3285 25.1466 47.5392 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 69 € 2.1199 32.2596 34.6234 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 70 / -5.2973 25.1466 47.8074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 71 C 1.9205 30.3457 34.6234 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 72 * 0.1613 23.8663 24.9466 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 73 ” 2.1852 23.8481 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 74 ? 1.8404 23.4828 34.6234 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 75 { 0.1603 14.7395 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 76 } -0.1210 14.7395 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 77 , 27.9888 11.4543 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 78 I 2.6270 24.7300 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 79 ° -6.3951 16.4380 16.4380 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 80 K 2.4777 34.4476 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 81 H 2.2527 30.7457 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 82 q 10.2951 33.9892 36.6426 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 83 & 3.3504 26.8522 33.1574 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 84 ’ 1.9651 11.4543 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 85 [ -0.0677 12.8438 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 86 - 16.7600 24.9383 5.1491 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 87 Y 2.2402 32.1337 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 88 Q 2.2065 32.6414 42.0682 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 89 " 2.2207 20.7160 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 90 ! 0.0783 9.3586 36.6691 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 91 x 10.7972 32.6414 25.1466 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 92 ) 0.2316 12.8522 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 93 = 12.1896 32.6414 14.9395 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 94 + 4.6192 29.3213 29.3213 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 95 X 2.4972 35.2448 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 96 » 12.8584 28.6895 23.2328 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 97 ' 2.0243 8.0373 17.2435 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 98 ¢ -4.3839 24.4306 43.2055 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 99 Z 2.0148 26.2945 33.6074 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 100 > 2.5384 33.3574 33.3392 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 101 ® 2.3194 34.9371 34.3734 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 102 © 2.3059 34.9371 34.3734 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 103 ] 0.2410 12.8438 43.1478 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 104 é -2.6664 30.7275 39.2725 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 105 z 11.0032 25.4543 25.1466 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 106 _ 48.1279 40.0861 5.1491 -Courier_New_Bold.ttf 61 k 30.6450 35.9031 107 ¥ 2.2409 31.2700 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 1 t -0.7034 29.3297 34.9636 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 2 h -2.2989 33.1226 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 3 a 7.8683 31.0352 26.4703 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 4 n 8.2419 31.9747 25.7043 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 5 P 0.4054 30.2957 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 6 o 7.6533 29.8457 26.4703 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 7 e 8.0227 30.7275 26.4703 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 8 : 8.4580 8.8509 25.1466 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 9 r 7.5994 30.0874 25.7043 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 10 l -2.4325 27.0256 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 11 i -2.1911 27.0256 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 12 1 -3.1500 24.7300 36.4608 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 13 | -2.3379 5.1491 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 14 N 0.0266 35.4864 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 15 f -1.9296 30.2957 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 16 g 8.2474 32.8149 36.6426 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 17 d -2.3314 33.9892 36.6691 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 18 W 0.0417 38.6293 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 19 s 7.8206 26.2679 26.4703 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 20 c 7.7520 29.6062 26.4703 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 21 u 8.4793 33.1226 25.9126 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 22 3 -3.1530 26.9346 37.0185 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 23 ~ 10.9323 27.6923 12.0861 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 24 # -6.6432 26.8256 41.5515 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 25 O -0.0068 32.6414 34.6234 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 26 ` -4.7536 11.1466 9.3586 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 27 @ -2.4088 21.9941 40.6703 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 28 F -0.2001 31.2852 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 29 S -0.4094 27.1846 34.6234 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 30 p 7.7132 34.2969 36.6426 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 31 “ -0.4594 23.8481 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 32 % -2.3671 26.0861 36.6691 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 33 £ -0.2032 29.3797 33.8574 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 34 . 26.6760 8.8509 7.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 35 2 -2.9125 26.5445 36.4608 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 36 5 -2.2929 27.0340 36.4608 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 37 m 7.9461 37.7404 25.7043 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 38 V -0.2355 38.4306 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 39 6 -2.9142 25.4543 37.0185 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 40 w 8.4484 33.3756 25.1466 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 41 T -0.0325 29.3213 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 42 M -0.0801 38.3481 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 43 G -0.3526 32.4596 34.6234 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 44 b -2.2470 34.2969 36.6691 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 45 9 -2.5827 25.4543 37.0185 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 46 ; 8.4591 14.2083 31.9019 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 47 D 0.0477 31.6670 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 48 L -0.1001 31.4253 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 49 y 8.5528 35.2713 36.0849 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 50 ‘ -0.3376 11.4543 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 51 \ -7.5463 25.9043 47.8074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 52 R 0.1126 34.9552 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 53 < 0.1277 33.3574 33.3392 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 54 4 -2.2040 25.2460 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 55 8 -2.6536 25.5784 37.0185 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 56 0 -3.0219 25.5784 37.0185 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 57 A 0.2928 38.2648 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 58 E -0.0157 30.3867 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 59 B -0.2062 32.8991 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 60 v 8.4492 35.0559 25.1466 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 61 k -1.9759 30.6450 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 62 J 0.1873 32.1830 34.3734 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 63 U 0.0885 34.9371 34.3734 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 64 j -1.9857 21.4448 46.8414 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 65 ( -2.3618 12.8522 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 66 7 -1.9708 24.9383 35.9031 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 67 § -2.0903 29.7880 41.0522 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 68 $ -6.5529 25.1466 47.5392 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 69 € -0.3266 32.2596 34.6234 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 70 / -7.5931 25.1466 47.8074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 71 C -0.2908 30.3457 34.6234 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 72 * -2.1116 23.8663 24.9466 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 73 ” -0.4839 23.8481 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 74 ? -0.2532 23.4828 34.6234 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 75 { -2.0075 14.7395 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 76 } -2.2136 14.7395 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 77 , 25.7960 11.4543 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 78 I 0.2085 24.7300 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 79 ° -8.5205 16.4380 16.4380 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 80 K -0.0514 34.4476 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 81 H 0.0097 30.7457 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 82 q 8.0273 33.9892 36.6426 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 83 & 1.2772 26.8522 33.1574 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 84 ’ -0.1903 11.4543 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 85 [ -1.7312 12.8438 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 86 - 14.5742 24.9383 5.1491 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 87 Y -0.3350 32.1337 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 88 Q -0.0726 32.6414 42.0682 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 89 " 0.0228 20.7160 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 90 ! -2.3496 9.3586 36.6691 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 91 x 8.3333 32.6414 25.1466 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 92 ) -2.3338 12.8522 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 93 = 9.8068 32.6414 14.9395 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 94 + 2.6983 29.3213 29.3213 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 95 X -0.1479 35.2448 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 96 » 10.6276 28.6895 23.2328 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 97 ' 0.3303 8.0373 17.2435 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 98 ¢ -6.9689 24.4306 43.2055 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 99 Z 0.0383 26.2945 33.6074 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 100 > 0.1579 33.3574 33.3392 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 101 ® 0.2156 34.9371 34.3734 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 102 © 0.1204 34.9371 34.3734 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 103 ] -2.3699 12.8438 43.1478 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 104 é -4.9477 30.7275 39.2725 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 105 z 8.3981 25.4543 25.1466 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 106 _ 46.1002 40.0861 5.1491 -Courier_New_Bold.ttf 62 J 32.1830 34.3734 107 ¥ 0.0899 31.2700 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 1 t -0.6426 29.3297 34.9636 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 2 h -1.9959 33.1226 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 3 a 7.9521 31.0352 26.4703 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 4 n 8.0157 31.9747 25.7043 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 5 P 0.1431 30.2957 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 6 o 7.5926 29.8457 26.4703 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 7 e 8.1612 30.7275 26.4703 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 8 : 8.3887 8.8509 25.1466 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 9 r 7.6644 30.0874 25.7043 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 10 l -2.2517 27.0256 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 11 i -2.4252 27.0256 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 12 1 -2.9450 24.7300 36.4608 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 13 | -2.2012 5.1491 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 14 N 0.0653 35.4864 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 15 f -2.5115 30.2957 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 16 g 8.1896 32.8149 36.6426 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 17 d -2.3331 33.9892 36.6691 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 18 W -0.0714 38.6293 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 19 s 7.8999 26.2679 26.4703 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 20 c 7.9657 29.6062 26.4703 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 21 u 8.4589 33.1226 25.9126 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 22 3 -2.6532 26.9346 37.0185 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 23 ~ 10.9236 27.6923 12.0861 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 24 # -6.4046 26.8256 41.5515 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 25 O -0.0849 32.6414 34.6234 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 26 ` -4.8298 11.1466 9.3586 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 27 @ -2.4538 21.9941 40.6703 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 28 F 0.0909 31.2852 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 29 S -0.6857 27.1846 34.6234 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 30 p 8.0546 34.2969 36.6426 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 31 “ -0.2629 23.8481 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 32 % -1.9003 26.0861 36.6691 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 33 £ -0.0860 29.3797 33.8574 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 34 . 26.8429 8.8509 7.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 35 2 -2.9418 26.5445 36.4608 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 36 5 -1.9991 27.0340 36.4608 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 37 m 7.7999 37.7404 25.7043 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 38 V 0.1871 38.4306 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 39 6 -2.8236 25.4543 37.0185 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 40 w 8.4533 33.3756 25.1466 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 41 T -0.0027 29.3213 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 42 M 0.0185 38.3481 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 43 G -0.4081 32.4596 34.6234 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 44 b -2.0882 34.2969 36.6691 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 45 9 -3.3255 25.4543 37.0185 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 46 ; 8.3709 14.2083 31.9019 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 47 D -0.2767 31.6670 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 48 L 0.1382 31.4253 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 49 y 8.5934 35.2713 36.0849 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 50 ‘ -0.6013 11.4543 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 51 \ -7.5217 25.9043 47.8074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 52 R 0.1915 34.9552 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 53 < 0.3039 33.3574 33.3392 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 54 4 -2.1727 25.2460 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 55 8 -2.7094 25.5784 37.0185 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 56 0 -2.8474 25.5784 37.0185 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 57 A -0.0330 38.2648 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 58 E -0.0714 30.3867 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 59 B 0.1431 32.8991 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 60 v 8.4094 35.0559 25.1466 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 61 k -2.3428 30.6450 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 62 J 0.1228 32.1830 34.3734 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 63 U -0.4177 34.9371 34.3734 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 64 j -2.3314 21.4448 46.8414 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 65 ( -2.4997 12.8522 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 66 7 -2.3336 24.9383 35.9031 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 67 § -2.3072 29.7880 41.0522 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 68 $ -6.4640 25.1466 47.5392 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 69 € -0.2570 32.2596 34.6234 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 70 / -7.3692 25.1466 47.8074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 71 C -0.1101 30.3457 34.6234 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 72 * -2.2363 23.8663 24.9466 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 73 ” -0.1953 23.8481 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 74 ? -0.2598 23.4828 34.6234 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 75 { -1.8177 14.7395 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 76 } -2.2970 14.7395 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 77 , 25.8878 11.4543 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 78 I 0.0000 24.7300 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 79 ° -8.7413 16.4380 16.4380 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 80 K -0.2054 34.4476 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 81 H 0.1970 30.7457 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 82 q 7.6194 33.9892 36.6426 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 83 & 1.0260 26.8522 33.1574 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 84 ’ -0.2143 11.4543 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 85 [ -2.2086 12.8438 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 86 - 14.4337 24.9383 5.1491 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 87 Y -0.1312 32.1337 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 88 Q -0.0919 32.6414 42.0682 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 89 " -0.3271 20.7160 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 90 ! -2.1587 9.3586 36.6691 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 91 x 8.4191 32.6414 25.1466 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 92 ) -2.3680 12.8522 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 93 = 9.8703 32.6414 14.9395 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 94 + 2.0770 29.3213 29.3213 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 95 X -0.0357 35.2448 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 96 » 10.2617 28.6895 23.2328 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 97 ' -0.0260 8.0373 17.2435 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 98 ¢ -7.3493 24.4306 43.2055 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 99 Z -0.0587 26.2945 33.6074 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 100 > 0.3872 33.3574 33.3392 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 101 ® 0.0175 34.9371 34.3734 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 102 © 0.1173 34.9371 34.3734 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 103 ] -2.5956 12.8438 43.1478 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 104 é -5.1170 30.7275 39.2725 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 105 z 8.4488 25.4543 25.1466 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 106 _ 45.9116 40.0861 5.1491 -Courier_New_Bold.ttf 63 U 34.9371 34.3734 107 ¥ -0.2488 31.2700 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 1 t 1.8308 29.3297 34.9636 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 2 h 0.1186 33.1226 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 3 a 10.1695 31.0352 26.4703 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 4 n 10.1084 31.9747 25.7043 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 5 P 2.2109 30.2957 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 6 o 10.5204 29.8457 26.4703 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 7 e 9.9206 30.7275 26.4703 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 8 : 10.8177 8.8509 25.1466 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 9 r 10.2804 30.0874 25.7043 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 10 l 0.0185 27.0256 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 11 i -0.0895 27.0256 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 12 1 -0.7217 24.7300 36.4608 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 13 | 0.2056 5.1491 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 14 N 2.3769 35.4864 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 15 f -0.0385 30.2957 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 16 g 10.0060 32.8149 36.6426 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 17 d 0.1645 33.9892 36.6691 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 18 W 2.2145 38.6293 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 19 s 9.9962 26.2679 26.4703 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 20 c 10.5501 29.6062 26.4703 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 21 u 10.8834 33.1226 25.9126 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 22 3 -0.5048 26.9346 37.0185 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 23 ~ 13.5932 27.6923 12.0861 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 24 # -4.1560 26.8256 41.5515 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 25 O 2.1667 32.6414 34.6234 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 26 ` -2.3626 11.1466 9.3586 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 27 @ 0.0570 21.9941 40.6703 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 28 F 2.0970 31.2852 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 29 S 1.9494 27.1846 34.6234 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 30 p 10.1042 34.2969 36.6426 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 31 “ 2.3599 23.8481 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 32 % 0.1571 26.0861 36.6691 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 33 £ 2.0901 29.3797 33.8574 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 34 . 28.9933 8.8509 7.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 35 2 -0.6448 26.5445 36.4608 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 36 5 0.0769 27.0340 36.4608 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 37 m 10.0434 37.7404 25.7043 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 38 V 2.1441 38.4306 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 39 6 -0.4780 25.4543 37.0185 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 40 w 10.4984 33.3756 25.1466 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 41 T 2.2115 29.3213 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 42 M 2.4367 38.3481 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 43 G 2.0874 32.4596 34.6234 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 44 b -0.0129 34.2969 36.6691 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 45 9 -0.7314 25.4543 37.0185 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 46 ; 10.8965 14.2083 31.9019 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 47 D 2.0511 31.6670 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 48 L 2.4083 31.4253 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 49 y 10.3927 35.2713 36.0849 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 50 ‘ 2.3377 11.4543 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 51 \ -5.3659 25.9043 47.8074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 52 R 2.2916 34.9552 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 53 < 2.7017 33.3574 33.3392 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 54 4 0.2484 25.2460 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 55 8 -0.6708 25.5784 37.0185 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 56 0 -0.7802 25.5784 37.0185 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 57 A 2.1631 38.2648 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 58 E 2.0831 30.3867 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 59 B 2.0505 32.8991 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 60 v 10.8223 35.0559 25.1466 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 61 k -0.1633 30.6450 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 62 J 2.5584 32.1830 34.3734 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 63 U 2.0090 34.9371 34.3734 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 64 j -0.3261 21.4448 46.8414 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 65 ( 0.1542 12.8522 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 66 7 -0.0937 24.9383 35.9031 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 67 § 0.1554 29.7880 41.0522 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 68 $ -4.3188 25.1466 47.5392 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 69 € 2.0809 32.2596 34.6234 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 70 / -5.3649 25.1466 47.8074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 71 C 2.2769 30.3457 34.6234 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 72 * 0.0682 23.8663 24.9466 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 73 ” 1.8544 23.8481 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 74 ? 1.8333 23.4828 34.6234 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 75 { 0.1455 14.7395 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 76 } 0.1479 14.7395 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 77 , 27.9503 11.4543 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 78 I 2.2030 24.7300 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 79 ° -6.2516 16.4380 16.4380 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 80 K 2.3523 34.4476 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 81 H 2.2072 30.7457 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 82 q 10.2775 33.9892 36.6426 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 83 & 3.5117 26.8522 33.1574 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 84 ’ 1.9720 11.4543 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 85 [ -0.2744 12.8438 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 86 - 16.5812 24.9383 5.1491 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 87 Y 2.4028 32.1337 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 88 Q 1.9502 32.6414 42.0682 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 89 " 2.1749 20.7160 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 90 ! -0.2103 9.3586 36.6691 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 91 x 10.5210 32.6414 25.1466 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 92 ) 0.0376 12.8522 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 93 = 11.9811 32.6414 14.9395 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 94 + 4.6179 29.3213 29.3213 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 95 X 2.1447 35.2448 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 96 » 12.5920 28.6895 23.2328 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 97 ' 2.1586 8.0373 17.2435 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 98 ¢ -4.3631 24.4306 43.2055 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 99 Z 2.3097 26.2945 33.6074 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 100 > 2.6964 33.3574 33.3392 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 101 ® 2.3644 34.9371 34.3734 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 102 © 2.5724 34.9371 34.3734 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 103 ] 0.0126 12.8438 43.1478 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 104 é -2.4810 30.7275 39.2725 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 105 z 10.9965 25.4543 25.1466 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 106 _ 48.1035 40.0861 5.1491 -Courier_New_Bold.ttf 64 j 21.4448 46.8414 107 ¥ 1.9652 31.2700 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 1 t 1.5474 29.3297 34.9636 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 2 h -0.0708 33.1226 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 3 a 10.2243 31.0352 26.4703 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 4 n 9.8327 31.9747 25.7043 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 5 P 2.2288 30.2957 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 6 o 10.1757 29.8457 26.4703 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 7 e 10.0472 30.7275 26.4703 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 8 : 10.8329 8.8509 25.1466 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 9 r 10.2725 30.0874 25.7043 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 10 l -0.1412 27.0256 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 11 i -0.0111 27.0256 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 12 1 -0.4660 24.7300 36.4608 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 13 | 0.1456 5.1491 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 14 N 2.3874 35.4864 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 15 f -0.3210 30.2957 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 16 g 10.2330 32.8149 36.6426 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 17 d 0.1571 33.9892 36.6691 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 18 W 2.5825 38.6293 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 19 s 10.1389 26.2679 26.4703 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 20 c 10.3096 29.6062 26.4703 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 21 u 11.0364 33.1226 25.9126 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 22 3 -0.3617 26.9346 37.0185 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 23 ~ 13.0580 27.6923 12.0861 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 24 # -4.0043 26.8256 41.5515 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 25 O 1.9971 32.6414 34.6234 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 26 ` -2.4801 11.1466 9.3586 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 27 @ -0.0585 21.9941 40.6703 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 28 F 2.1084 31.2852 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 29 S 1.8169 27.1846 34.6234 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 30 p 10.3442 34.2969 36.6426 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 31 “ 2.3427 23.8481 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 32 % 0.3470 26.0861 36.6691 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 33 £ 2.2400 29.3797 33.8574 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 34 . 28.7835 8.8509 7.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 35 2 -0.4994 26.5445 36.4608 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 36 5 -0.0004 27.0340 36.4608 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 37 m 10.1219 37.7404 25.7043 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 38 V 2.3874 38.4306 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 39 6 -0.6647 25.4543 37.0185 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 40 w 10.6740 33.3756 25.1466 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 41 T 2.2425 29.3213 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 42 M 2.2188 38.3481 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 43 G 1.9229 32.4596 34.6234 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 44 b 0.3350 34.2969 36.6691 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 45 9 -0.6714 25.4543 37.0185 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 46 ; 10.9997 14.2083 31.9019 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 47 D 2.1766 31.6670 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 48 L 2.0487 31.4253 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 49 y 10.7879 35.2713 36.0849 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 50 ‘ 1.9320 11.4543 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 51 \ -5.0090 25.9043 47.8074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 52 R 2.4328 34.9552 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 53 < 2.4897 33.3574 33.3392 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 54 4 -0.1658 25.2460 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 55 8 -0.5420 25.5784 37.0185 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 56 0 -0.4831 25.5784 37.0185 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 57 A 2.3782 38.2648 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 58 E 2.2215 30.3867 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 59 B 2.4408 32.8991 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 60 v 10.8223 35.0559 25.1466 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 61 k -0.0143 30.6450 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 62 J 2.3341 32.1830 34.3734 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 63 U 2.1029 34.9371 34.3734 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 64 j -0.1928 21.4448 46.8414 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 65 ( -0.3172 12.8522 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 66 7 -0.1692 24.9383 35.9031 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 67 § -0.0611 29.7880 41.0522 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 68 $ -4.5214 25.1466 47.5392 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 69 € 2.0254 32.2596 34.6234 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 70 / -5.0393 25.1466 47.8074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 71 C 1.9335 30.3457 34.6234 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 72 * 0.0094 23.8663 24.9466 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 73 ” 2.0595 23.8481 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 74 ? 2.1972 23.4828 34.6234 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 75 { -0.2148 14.7395 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 76 } 0.1760 14.7395 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 77 , 27.7764 11.4543 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 78 I 2.4977 24.7300 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 79 ° -6.2599 16.4380 16.4380 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 80 K 2.4213 34.4476 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 81 H 2.2925 30.7457 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 82 q 9.9857 33.9892 36.6426 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 83 & 3.8010 26.8522 33.1574 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 84 ’ 1.9012 11.4543 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 85 [ -0.2397 12.8438 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 86 - 16.7610 24.9383 5.1491 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 87 Y 2.3185 32.1337 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 88 Q 2.2009 32.6414 42.0682 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 89 " 2.2396 20.7160 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 90 ! 0.0260 9.3586 36.6691 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 91 x 10.6661 32.6414 25.1466 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 92 ) 0.0115 12.8522 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 93 = 12.0000 32.6414 14.9395 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 94 + 4.9576 29.3213 29.3213 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 95 X 2.2600 35.2448 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 96 » 12.6160 28.6895 23.2328 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 97 ' 2.6090 8.0373 17.2435 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 98 ¢ -4.7228 24.4306 43.2055 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 99 Z 2.2086 26.2945 33.6074 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 100 > 2.6282 33.3574 33.3392 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 101 ® 2.3290 34.9371 34.3734 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 102 © 2.1988 34.9371 34.3734 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 103 ] -0.0937 12.8438 43.1478 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 104 é -2.7128 30.7275 39.2725 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 105 z 10.7505 25.4543 25.1466 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 106 _ 48.0331 40.0861 5.1491 -Courier_New_Bold.ttf 65 ( 12.8522 43.1478 107 ¥ 2.3472 31.2700 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 1 t 1.8464 29.3297 34.9636 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 2 h 0.3350 33.1226 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 3 a 9.9513 31.0352 26.4703 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 4 n 10.3577 31.9747 25.7043 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 5 P 2.1981 30.2957 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 6 o 10.2087 29.8457 26.4703 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 7 e 10.1219 30.7275 26.4703 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 8 : 10.7926 8.8509 25.1466 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 9 r 9.9846 30.0874 25.7043 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 10 l -0.0260 27.0256 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 11 i -0.0643 27.0256 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 12 1 -0.5607 24.7300 36.4608 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 13 | 0.0581 5.1491 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 14 N 2.1137 35.4864 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 15 f 0.2425 30.2957 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 16 g 10.1343 32.8149 36.6426 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 17 d 0.1228 33.9892 36.6691 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 18 W 2.3559 38.6293 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 19 s 10.1512 26.2679 26.4703 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 20 c 10.1730 29.6062 26.4703 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 21 u 11.0363 33.1226 25.9126 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 22 3 -0.5787 26.9346 37.0185 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 23 ~ 13.1863 27.6923 12.0861 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 24 # -4.2943 26.8256 41.5515 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 25 O 1.7372 32.6414 34.6234 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 26 ` -2.5292 11.1466 9.3586 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 27 @ -0.0320 21.9941 40.6703 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 28 F 2.1130 31.2852 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 29 S 2.1306 27.1846 34.6234 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 30 p 10.1599 34.2969 36.6426 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 31 “ 2.2255 23.8481 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 32 % 0.0083 26.0861 36.6691 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 33 £ 2.0452 29.3797 33.8574 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 34 . 28.7505 8.8509 7.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 35 2 -0.9063 26.5445 36.4608 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 36 5 0.0126 27.0340 36.4608 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 37 m 10.0685 37.7404 25.7043 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 38 V 2.3777 38.4306 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 39 6 -0.7242 25.4543 37.0185 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 40 w 10.9146 33.3756 25.1466 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 41 T 2.0907 29.3213 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 42 M 2.3716 38.3481 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 43 G 2.0814 32.4596 34.6234 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 44 b -0.0360 34.2969 36.6691 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 45 9 -0.3282 25.4543 37.0185 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 46 ; 10.7161 14.2083 31.9019 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 47 D 2.2740 31.6670 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 48 L 2.2188 31.4253 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 49 y 10.8047 35.2713 36.0849 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 50 ‘ 1.9253 11.4543 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 51 \ -5.2357 25.9043 47.8074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 52 R 2.0478 34.9552 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 53 < 2.8456 33.3574 33.3392 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 54 4 0.2131 25.2460 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 55 8 -0.7936 25.5784 37.0185 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 56 0 -0.6549 25.5784 37.0185 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 57 A 2.4296 38.2648 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 58 E 2.2929 30.3867 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 59 B 2.2782 32.8991 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 60 v 10.9237 35.0559 25.1466 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 61 k 0.1742 30.6450 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 62 J 1.9959 32.1830 34.3734 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 63 U 2.2374 34.9371 34.3734 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 64 j 0.1016 21.4448 46.8414 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 65 ( -0.0801 12.8522 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 66 7 -0.2508 24.9383 35.9031 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 67 § -0.0050 29.7880 41.0522 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 68 $ -3.9508 25.1466 47.5392 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 69 € 2.0859 32.2596 34.6234 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 70 / -5.1843 25.1466 47.8074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 71 C 2.2333 30.3457 34.6234 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 72 * 0.1182 23.8663 24.9466 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 73 ” 2.1328 23.8481 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 74 ? 2.0112 23.4828 34.6234 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 75 { 0.0383 14.7395 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 76 } 0.2914 14.7395 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 77 , 27.7554 11.4543 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 78 I 2.4801 24.7300 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 79 ° -6.3561 16.4380 16.4380 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 80 K 1.9503 34.4476 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 81 H 2.3971 30.7457 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 82 q 10.0504 33.9892 36.6426 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 83 & 3.7105 26.8522 33.1574 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 84 ’ 1.6711 11.4543 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 85 [ -0.2142 12.8438 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 86 - 16.8314 24.9383 5.1491 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 87 Y 2.3282 32.1337 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 88 Q 1.7311 32.6414 42.0682 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 89 " 2.4818 20.7160 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 90 ! 0.1071 9.3586 36.6691 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 91 x 10.5437 32.6414 25.1466 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 92 ) -0.1071 12.8522 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 93 = 12.0664 32.6414 14.9395 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 94 + 4.5125 29.3213 29.3213 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 95 X 2.4750 35.2448 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 96 » 12.4890 28.6895 23.2328 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 97 ' 2.1646 8.0373 17.2435 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 98 ¢ -4.8474 24.4306 43.2055 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 99 Z 2.2177 26.2945 33.6074 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 100 > 2.7354 33.3574 33.3392 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 101 ® 2.2319 34.9371 34.3734 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 102 © 2.2040 34.9371 34.3734 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 103 ] -0.1389 12.8438 43.1478 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 104 é -2.6633 30.7275 39.2725 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 105 z 10.7285 25.4543 25.1466 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 106 _ 48.2074 40.0861 5.1491 -Courier_New_Bold.ttf 66 7 24.9383 35.9031 107 ¥ 2.3541 31.2700 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 1 t 1.7413 29.3297 34.9636 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 2 h -0.0529 33.1226 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 3 a 9.9661 31.0352 26.4703 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 4 n 10.3114 31.9747 25.7043 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 5 P 2.3925 30.2957 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 6 o 10.0227 29.8457 26.4703 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 7 e 10.3029 30.7275 26.4703 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 8 : 10.6581 8.8509 25.1466 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 9 r 10.4740 30.0874 25.7043 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 10 l -0.1540 27.0256 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 11 i -0.1099 27.0256 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 12 1 -0.6148 24.7300 36.4608 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 13 | 0.4639 5.1491 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 14 N 2.2016 35.4864 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 15 f -0.0045 30.2957 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 16 g 10.1112 32.8149 36.6426 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 17 d 0.1906 33.9892 36.6691 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 18 W 2.1650 38.6293 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 19 s 10.2011 26.2679 26.4703 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 20 c 10.0542 29.6062 26.4703 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 21 u 10.7208 33.1226 25.9126 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 22 3 -0.5340 26.9346 37.0185 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 23 ~ 13.4113 27.6923 12.0861 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 24 # -4.2388 26.8256 41.5515 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 25 O 2.0068 32.6414 34.6234 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 26 ` -2.8216 11.1466 9.3586 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 27 @ -0.0570 21.9941 40.6703 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 28 F 2.1869 31.2852 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 29 S 2.3742 27.1846 34.6234 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 30 p 10.2568 34.2969 36.6426 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 31 “ 2.0533 23.8481 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 32 % -0.0280 26.0861 36.6691 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 33 £ 1.8441 29.3797 33.8574 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 34 . 28.4281 8.8509 7.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 35 2 -0.7130 26.5445 36.4608 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 36 5 -0.0153 27.0340 36.4608 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 37 m 10.3025 37.7404 25.7043 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 38 V 2.3685 38.4306 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 39 6 -0.2751 25.4543 37.0185 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 40 w 10.7537 33.3756 25.1466 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 41 T 2.2047 29.3213 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 42 M 2.2403 38.3481 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 43 G 2.0958 32.4596 34.6234 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 44 b 0.0542 34.2969 36.6691 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 45 9 -0.3234 25.4543 37.0185 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 46 ; 10.6446 14.2083 31.9019 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 47 D 2.1473 31.6670 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 48 L 2.0560 31.4253 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 49 y 10.3269 35.2713 36.0849 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 50 ‘ 1.8394 11.4543 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 51 \ -5.4188 25.9043 47.8074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 52 R 2.2215 34.9552 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 53 < 2.8154 33.3574 33.3392 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 54 4 0.2275 25.2460 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 55 8 -0.7932 25.5784 37.0185 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 56 0 -0.5383 25.5784 37.0185 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 57 A 2.0473 38.2648 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 58 E 2.3287 30.3867 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 59 B 2.2331 32.8991 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 60 v 10.9433 35.0559 25.1466 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 61 k 0.4032 30.6450 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 62 J 2.5514 32.1830 34.3734 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 63 U 2.2554 34.9371 34.3734 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 64 j 0.0839 21.4448 46.8414 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 65 ( -0.1441 12.8522 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 66 7 -0.4866 24.9383 35.9031 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 67 § -0.0071 29.7880 41.0522 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 68 $ -4.0993 25.1466 47.5392 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 69 € 2.1203 32.2596 34.6234 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 70 / -5.0721 25.1466 47.8074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 71 C 2.1791 30.3457 34.6234 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 72 * -0.0406 23.8663 24.9466 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 73 ” 1.8474 23.8481 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 74 ? 2.1845 23.4828 34.6234 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 75 { -0.0871 14.7395 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 76 } 0.2470 14.7395 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 77 , 28.1742 11.4543 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 78 I 2.3319 24.7300 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 79 ° -6.1654 16.4380 16.4380 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 80 K 2.2493 34.4476 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 81 H 2.4425 30.7457 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 82 q 10.2918 33.9892 36.6426 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 83 & 3.6286 26.8522 33.1574 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 84 ’ 2.2238 11.4543 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 85 [ -0.3057 12.8438 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 86 - 16.8463 24.9383 5.1491 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 87 Y 2.2423 32.1337 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 88 Q 1.9812 32.6414 42.0682 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 89 " 2.1142 20.7160 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 90 ! 0.0287 9.3586 36.6691 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 91 x 10.6181 32.6414 25.1466 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 92 ) -0.1225 12.8522 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 93 = 11.9612 32.6414 14.9395 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 94 + 4.5035 29.3213 29.3213 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 95 X 2.1312 35.2448 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 96 » 12.8028 28.6895 23.2328 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 97 ' 2.3282 8.0373 17.2435 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 98 ¢ -4.9520 24.4306 43.2055 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 99 Z 2.3212 26.2945 33.6074 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 100 > 2.6335 33.3574 33.3392 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 101 ® 2.4556 34.9371 34.3734 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 102 © 2.2364 34.9371 34.3734 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 103 ] -0.0129 12.8438 43.1478 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 104 é -2.1881 30.7275 39.2725 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 105 z 10.7007 25.4543 25.1466 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 106 _ 48.4358 40.0861 5.1491 -Courier_New_Bold.ttf 67 § 29.7880 41.0522 107 ¥ 2.0674 31.2700 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 1 t 6.0295 29.3297 34.9636 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 2 h 4.3197 33.1226 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 3 a 14.4885 31.0352 26.4703 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 4 n 14.6068 31.9747 25.7043 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 5 P 6.2989 30.2957 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 6 o 14.2275 29.8457 26.4703 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 7 e 14.3932 30.7275 26.4703 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 8 : 14.9420 8.8509 25.1466 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 9 r 14.4414 30.0874 25.7043 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 10 l 4.2709 27.0256 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 11 i 4.4455 27.0256 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 12 1 3.5340 24.7300 36.4608 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 13 | 4.2753 5.1491 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 14 N 6.5705 35.4864 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 15 f 4.2933 30.2957 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 16 g 14.4619 32.8149 36.6426 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 17 d 4.2832 33.9892 36.6691 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 18 W 6.2659 38.6293 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 19 s 14.5042 26.2679 26.4703 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 20 c 14.4028 29.6062 26.4703 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 21 u 14.9090 33.1226 25.9126 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 22 3 3.8464 26.9346 37.0185 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 23 ~ 17.2872 27.6923 12.0861 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 24 # -0.2099 26.8256 41.5515 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 25 O 6.1476 32.6414 34.6234 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 26 ` 1.9109 11.1466 9.3586 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 27 @ 4.1260 21.9941 40.6703 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 28 F 6.6215 31.2852 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 29 S 6.2385 27.1846 34.6234 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 30 p 14.3013 34.2969 36.6426 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 31 “ 5.9706 23.8481 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 32 % 4.3379 26.0861 36.6691 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 33 £ 6.1494 29.3797 33.8574 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 34 . 33.1164 8.8509 7.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 35 2 3.6131 26.5445 36.4608 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 36 5 4.0324 27.0340 36.4608 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 37 m 14.3406 37.7404 25.7043 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 38 V 6.6575 38.4306 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 39 6 3.5388 25.4543 37.0185 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 40 w 14.8269 33.3756 25.1466 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 41 T 6.7342 29.3213 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 42 M 6.4515 38.3481 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 43 G 6.2371 32.4596 34.6234 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 44 b 4.1584 34.2969 36.6691 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 45 9 3.2385 25.4543 37.0185 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 46 ; 14.9240 14.2083 31.9019 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 47 D 6.5403 31.6670 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 48 L 6.6271 31.4253 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 49 y 15.2375 35.2713 36.0849 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 50 ‘ 6.4355 11.4543 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 51 \ -0.9531 25.9043 47.8074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 52 R 6.1580 34.9552 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 53 < 6.6595 33.3574 33.3392 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 54 4 3.9760 25.2460 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 55 8 3.5358 25.5784 37.0185 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 56 0 3.6503 25.5784 37.0185 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 57 A 6.4193 38.2648 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 58 E 6.4199 30.3867 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 59 B 6.1121 32.8991 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 60 v 14.7681 35.0559 25.1466 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 61 k 4.0190 30.6450 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 62 J 6.4813 32.1830 34.3734 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 63 U 6.5046 34.9371 34.3734 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 64 j 4.0057 21.4448 46.8414 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 65 ( 3.9865 12.8522 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 66 7 4.2928 24.9383 35.9031 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 67 § 4.1858 29.7880 41.0522 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 68 $ 0.0500 25.1466 47.5392 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 69 € 6.2301 32.2596 34.6234 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 70 / -1.2277 25.1466 47.8074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 71 C 6.1597 30.3457 34.6234 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 72 * 4.3263 23.8663 24.9466 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 73 ” 6.2330 23.8481 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 74 ? 6.1888 23.4828 34.6234 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 75 { 3.9728 14.7395 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 76 } 4.0414 14.7395 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 77 , 32.0874 11.4543 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 78 I 6.3009 24.7300 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 79 ° -1.6713 16.4380 16.4380 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 80 K 6.2762 34.4476 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 81 H 6.5917 30.7457 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 82 q 14.4203 33.9892 36.6426 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 83 & 7.9416 26.8522 33.1574 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 84 ’ 6.0443 11.4543 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 85 [ 4.2711 12.8438 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 86 - 21.0886 24.9383 5.1491 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 87 Y 6.3387 32.1337 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 88 Q 6.1220 32.6414 42.0682 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 89 " 6.5882 20.7160 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 90 ! 4.2595 9.3586 36.6691 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 91 x 14.9901 32.6414 25.1466 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 92 ) 4.0379 12.8522 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 93 = 16.2296 32.6414 14.9395 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 94 + 9.0130 29.3213 29.3213 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 95 X 6.3874 35.2448 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 96 » 16.6606 28.6895 23.2328 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 97 ' 6.7172 8.0373 17.2435 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 98 ¢ -0.3991 24.4306 43.2055 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 99 Z 6.4115 26.2945 33.6074 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 100 > 6.7881 33.3574 33.3392 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 101 ® 6.4965 34.9371 34.3734 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 102 © 6.3959 34.9371 34.3734 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 103 ] 4.6257 12.8438 43.1478 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 104 é 1.7340 30.7275 39.2725 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 105 z 15.0572 25.4543 25.1466 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 106 _ 52.2614 40.0861 5.1491 -Courier_New_Bold.ttf 68 $ 25.1466 47.5392 107 ¥ 6.3197 31.2700 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 1 t -0.0611 29.3297 34.9636 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 2 h -2.2670 33.1226 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 3 a 7.9835 31.0352 26.4703 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 4 n 8.0003 31.9747 25.7043 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 5 P 0.3798 30.2957 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 6 o 7.8688 29.8457 26.4703 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 7 e 7.9501 30.7275 26.4703 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 8 : 8.5797 8.8509 25.1466 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 9 r 7.9088 30.0874 25.7043 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 10 l -2.1756 27.0256 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 11 i -2.1952 27.0256 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 12 1 -2.5131 24.7300 36.4608 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 13 | -1.9554 5.1491 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 14 N 0.0886 35.4864 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 15 f -1.8607 30.2957 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 16 g 7.9945 32.8149 36.6426 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 17 d -2.3613 33.9892 36.6691 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 18 W 0.3175 38.6293 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 19 s 8.1245 26.2679 26.4703 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 20 c 8.3207 29.6062 26.4703 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 21 u 8.7524 33.1226 25.9126 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 22 3 -2.4402 26.9346 37.0185 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 23 ~ 11.2338 27.6923 12.0861 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 24 # -6.1494 26.8256 41.5515 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 25 O 0.3206 32.6414 34.6234 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 26 ` -4.5244 11.1466 9.3586 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 27 @ -1.8715 21.9941 40.6703 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 28 F 0.2403 31.2852 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 29 S 0.1785 27.1846 34.6234 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 30 p 8.2006 34.2969 36.6426 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 31 “ 0.0780 23.8481 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 32 % -2.0929 26.0861 36.6691 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 33 £ -0.0742 29.3797 33.8574 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 34 . 27.1233 8.8509 7.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 35 2 -2.8531 26.5445 36.4608 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 36 5 -1.9586 27.0340 36.4608 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 37 m 8.0304 37.7404 25.7043 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 38 V 0.2751 38.4306 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 39 6 -2.6910 25.4543 37.0185 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 40 w 8.8295 33.3756 25.1466 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 41 T 0.0020 29.3213 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 42 M 0.1574 38.3481 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 43 G 0.0312 32.4596 34.6234 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 44 b -1.8973 34.2969 36.6691 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 45 9 -2.7597 25.4543 37.0185 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 46 ; 8.8635 14.2083 31.9019 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 47 D 0.4443 31.6670 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 48 L 0.2944 31.4253 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 49 y 8.4768 35.2713 36.0849 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 50 ‘ 0.4688 11.4543 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 51 \ -7.1177 25.9043 47.8074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 52 R 0.8801 34.9552 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 53 < 0.7008 33.3574 33.3392 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 54 4 -2.4832 25.2460 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 55 8 -2.6794 25.5784 37.0185 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 56 0 -2.5649 25.5784 37.0185 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 57 A 0.0795 38.2648 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 58 E 0.2425 30.3867 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 59 B 0.1524 32.8991 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 60 v 8.8383 35.0559 25.1466 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 61 k -1.8973 30.6450 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 62 J 0.1403 32.1830 34.3734 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 63 U 0.3385 34.9371 34.3734 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 64 j -2.3776 21.4448 46.8414 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 65 ( -2.0104 12.8522 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 66 7 -1.9917 24.9383 35.9031 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 67 § -1.8558 29.7880 41.0522 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 68 $ -6.2811 25.1466 47.5392 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 69 € -0.1867 32.2596 34.6234 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 70 / -7.3584 25.1466 47.8074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 71 C -0.0594 30.3457 34.6234 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 72 * -1.7113 23.8663 24.9466 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 73 ” 0.0456 23.8481 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 74 ? -0.1575 23.4828 34.6234 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 75 { -1.8844 14.7395 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 76 } -2.0314 14.7395 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 77 , 25.6293 11.4543 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 78 I 0.4357 24.7300 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 79 ° -8.3269 16.4380 16.4380 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 80 K 0.7017 34.4476 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 81 H 0.3944 30.7457 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 82 q 8.0563 33.9892 36.6426 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 83 & 1.4675 26.8522 33.1574 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 84 ’ 0.1239 11.4543 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 85 [ -2.3446 12.8438 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 86 - 14.6973 24.9383 5.1491 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 87 Y 0.1885 32.1337 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 88 Q 0.1158 32.6414 42.0682 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 89 " 0.0436 20.7160 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 90 ! -2.4891 9.3586 36.6691 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 91 x 8.7335 32.6414 25.1466 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 92 ) -2.1764 12.8522 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 93 = 9.9266 32.6414 14.9395 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 94 + 2.7363 29.3213 29.3213 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 95 X 0.1071 35.2448 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 96 » 10.8045 28.6895 23.2328 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 97 ' 0.4757 8.0373 17.2435 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 98 ¢ -7.0330 24.4306 43.2055 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 99 Z 0.2936 26.2945 33.6074 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 100 > 0.1242 33.3574 33.3392 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 101 ® 0.2115 34.9371 34.3734 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 102 © 0.2857 34.9371 34.3734 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 103 ] -2.1690 12.8438 43.1478 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 104 é -4.7441 30.7275 39.2725 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 105 z 8.3095 25.4543 25.1466 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 106 _ 45.9777 40.0861 5.1491 -Courier_New_Bold.ttf 69 € 32.2596 34.6234 107 ¥ 0.2851 31.2700 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 1 t 6.8487 29.3297 34.9636 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 2 h 5.0306 33.1226 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 3 a 15.3778 31.0352 26.4703 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 4 n 15.3474 31.9747 25.7043 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 5 P 7.3076 30.2957 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 6 o 15.6342 29.8457 26.4703 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 7 e 15.7955 30.7275 26.4703 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 8 : 15.9729 8.8509 25.1466 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 9 r 15.3282 30.0874 25.7043 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 10 l 5.0781 27.0256 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 11 i 5.1823 27.0256 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 12 1 4.6243 24.7300 36.4608 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 13 | 5.0220 5.1491 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 14 N 7.3701 35.4864 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 15 f 4.8828 30.2957 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 16 g 15.3478 32.8149 36.6426 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 17 d 5.1553 33.9892 36.6691 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 18 W 7.4580 38.6293 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 19 s 15.7121 26.2679 26.4703 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 20 c 15.2457 29.6062 26.4703 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 21 u 16.0028 33.1226 25.9126 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 22 3 4.7397 26.9346 37.0185 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 23 ~ 18.1838 27.6923 12.0861 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 24 # 1.1305 26.8256 41.5515 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 25 O 7.1224 32.6414 34.6234 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 26 ` 2.4928 11.1466 9.3586 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 27 @ 5.3369 21.9941 40.6703 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 28 F 7.3789 31.2852 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 29 S 7.5015 27.1846 34.6234 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 30 p 15.3478 34.2969 36.6426 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 31 “ 7.1273 23.8481 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 32 % 5.3098 26.0861 36.6691 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 33 £ 7.1590 29.3797 33.8574 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 34 . 33.8969 8.8509 7.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 35 2 4.3986 26.5445 36.4608 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 36 5 5.1977 27.0340 36.4608 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 37 m 15.4263 37.7404 25.7043 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 38 V 7.4962 38.4306 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 39 6 4.6656 25.4543 37.0185 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 40 w 15.8814 33.3756 25.1466 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 41 T 7.3517 29.3213 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 42 M 7.2807 38.3481 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 43 G 7.0506 32.4596 34.6234 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 44 b 4.9163 34.2969 36.6691 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 45 9 4.4088 25.4543 37.0185 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 46 ; 15.8759 14.2083 31.9019 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 47 D 7.2626 31.6670 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 48 L 7.0768 31.4253 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 49 y 16.1168 35.2713 36.0849 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 50 ‘ 7.0459 11.4543 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 51 \ -0.0097 25.9043 47.8074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 52 R 7.4364 34.9552 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 53 < 7.5516 33.3574 33.3392 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 54 4 5.0624 25.2460 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 55 8 4.5663 25.5784 37.0185 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 56 0 4.4406 25.5784 37.0185 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 57 A 7.2776 38.2648 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 58 E 7.7330 30.3867 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 59 B 7.5185 32.8991 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 60 v 16.2169 35.0559 25.1466 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 61 k 5.1721 30.6450 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 62 J 7.5189 32.1830 34.3734 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 63 U 7.4553 34.9371 34.3734 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 64 j 5.3507 21.4448 46.8414 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 65 ( 5.0953 12.8522 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 66 7 4.9521 24.9383 35.9031 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 67 § 5.1703 29.7880 41.0522 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 68 $ 0.8420 25.1466 47.5392 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 69 € 7.1738 32.2596 34.6234 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 70 / -0.1949 25.1466 47.8074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 71 C 7.1749 30.3457 34.6234 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 72 * 5.4002 23.8663 24.9466 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 73 ” 7.3787 23.8481 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 74 ? 7.0692 23.4828 34.6234 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 75 { 5.2576 14.7395 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 76 } 5.1472 14.7395 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 77 , 33.2549 11.4543 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 78 I 7.4990 24.7300 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 79 ° -1.2864 16.4380 16.4380 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 80 K 7.8254 34.4476 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 81 H 7.3882 30.7457 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 82 q 15.1898 33.9892 36.6426 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 83 & 8.3766 26.8522 33.1574 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 84 ’ 7.0988 11.4543 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 85 [ 5.0536 12.8438 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 86 - 21.6729 24.9383 5.1491 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 87 Y 7.3628 32.1337 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 88 Q 7.0954 32.6414 42.0682 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 89 " 7.6106 20.7160 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 90 ! 4.9975 9.3586 36.6691 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 91 x 15.9770 32.6414 25.1466 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 92 ) 5.1278 12.8522 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 93 = 17.1246 32.6414 14.9395 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 94 + 10.1635 29.3213 29.3213 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 95 X 7.2268 35.2448 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 96 » 17.6966 28.6895 23.2328 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 97 ' 7.2515 8.0373 17.2435 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 98 ¢ 0.4287 24.4306 43.2055 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 99 Z 7.2918 26.2945 33.6074 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 100 > 7.7288 33.3574 33.3392 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 101 ® 7.3168 34.9371 34.3734 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 102 © 7.4020 34.9371 34.3734 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 103 ] 5.5104 12.8438 43.1478 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 104 é 2.4869 30.7275 39.2725 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 105 z 16.0055 25.4543 25.1466 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 106 _ 53.4690 40.0861 5.1491 -Courier_New_Bold.ttf 70 / 25.1466 47.8074 107 ¥ 7.4139 31.2700 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 1 t -0.2759 29.3297 34.9636 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 2 h -2.0128 33.1226 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 3 a 8.1017 31.0352 26.4703 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 4 n 8.0617 31.9747 25.7043 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 5 P 0.1527 30.2957 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 6 o 7.9767 29.8457 26.4703 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 7 e 8.2546 30.7275 26.4703 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 8 : 8.9722 8.8509 25.1466 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 9 r 8.1948 30.0874 25.7043 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 10 l -2.0841 27.0256 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 11 i -1.8604 27.0256 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 12 1 -2.4203 24.7300 36.4608 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 13 | -2.2325 5.1491 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 14 N 0.2450 35.4864 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 15 f -1.6515 30.2957 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 16 g 8.2350 32.8149 36.6426 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 17 d -2.0062 33.9892 36.6691 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 18 W 0.5401 38.6293 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 19 s 8.3455 26.2679 26.4703 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 20 c 8.1757 29.6062 26.4703 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 21 u 8.7157 33.1226 25.9126 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 22 3 -2.6848 26.9346 37.0185 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 23 ~ 11.1656 27.6923 12.0861 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 24 # -6.2684 26.8256 41.5515 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 25 O 0.0178 32.6414 34.6234 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 26 ` -4.1866 11.1466 9.3586 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 27 @ -1.9613 21.9941 40.6703 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 28 F 0.0833 31.2852 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 29 S -0.1867 27.1846 34.6234 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 30 p 8.0915 34.2969 36.6426 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 31 “ 0.0412 23.8481 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 32 % -2.0583 26.0861 36.6691 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 33 £ -0.0093 29.3797 33.8574 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 34 . 26.8782 8.8509 7.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 35 2 -2.6423 26.5445 36.4608 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 36 5 -2.2877 27.0340 36.4608 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 37 m 8.3171 37.7404 25.7043 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 38 V 0.3958 38.4306 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 39 6 -2.4434 25.4543 37.0185 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 40 w 8.5327 33.3756 25.1466 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 41 T 0.0683 29.3213 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 42 M 0.3742 38.3481 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 43 G -0.1301 32.4596 34.6234 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 44 b -2.3511 34.2969 36.6691 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 45 9 -2.6334 25.4543 37.0185 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 46 ; 8.5784 14.2083 31.9019 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 47 D 0.2707 31.6670 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 48 L 0.2949 31.4253 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 49 y 8.6963 35.2713 36.0849 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 50 ‘ 0.4013 11.4543 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 51 \ -7.2045 25.9043 47.8074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 52 R 0.1398 34.9552 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 53 < 0.2438 33.3574 33.3392 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 54 4 -2.3210 25.2460 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 55 8 -2.7276 25.5784 37.0185 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 56 0 -2.7706 25.5784 37.0185 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 57 A 0.5882 38.2648 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 58 E 0.0837 30.3867 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 59 B 0.0808 32.8991 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 60 v 8.7178 35.0559 25.1466 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 61 k -2.3989 30.6450 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 62 J 0.1982 32.1830 34.3734 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 63 U 0.0069 34.9371 34.3734 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 64 j -2.1714 21.4448 46.8414 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 65 ( -2.0050 12.8522 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 66 7 -1.9793 24.9383 35.9031 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 67 § -2.2472 29.7880 41.0522 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 68 $ -6.5613 25.1466 47.5392 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 69 € -0.0088 32.2596 34.6234 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 70 / -6.9024 25.1466 47.8074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 71 C 0.1223 30.3457 34.6234 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 72 * -1.9093 23.8663 24.9466 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 73 ” 0.1182 23.8481 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 74 ? -0.2334 23.4828 34.6234 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 75 { -2.1406 14.7395 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 76 } -2.1560 14.7395 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 77 , 25.6908 11.4543 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 78 I 0.3473 24.7300 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 79 ° -8.3069 16.4380 16.4380 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 80 K 0.1202 34.4476 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 81 H 0.4260 30.7457 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 82 q 8.3189 33.9892 36.6426 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 83 & 1.5216 26.8522 33.1574 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 84 ’ -0.0888 11.4543 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 85 [ -2.1415 12.8438 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 86 - 14.7324 24.9383 5.1491 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 87 Y 0.1143 32.1337 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 88 Q -0.0255 32.6414 42.0682 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 89 " 0.5545 20.7160 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 90 ! -1.9432 9.3586 36.6691 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 91 x 8.4511 32.6414 25.1466 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 92 ) -2.0943 12.8522 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 93 = 10.3292 32.6414 14.9395 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 94 + 2.5620 29.3213 29.3213 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 95 X 0.0513 35.2448 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 96 » 10.6427 28.6895 23.2328 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 97 ' 0.0868 8.0373 17.2435 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 98 ¢ -6.5937 24.4306 43.2055 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 99 Z 0.1684 26.2945 33.6074 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 100 > 0.1173 33.3574 33.3392 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 101 ® 0.2325 34.9371 34.3734 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 102 © 0.3319 34.9371 34.3734 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 103 ] -2.0754 12.8438 43.1478 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 104 é -4.9461 30.7275 39.2725 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 105 z 8.6618 25.4543 25.1466 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 106 _ 45.7397 40.0861 5.1491 -Courier_New_Bold.ttf 71 C 30.3457 34.6234 107 ¥ 0.2950 31.2700 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 1 t 1.8514 29.3297 34.9636 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 2 h -0.0060 33.1226 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 3 a 10.2273 31.0352 26.4703 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 4 n 10.3601 31.9747 25.7043 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 5 P 2.2446 30.2957 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 6 o 10.2006 29.8457 26.4703 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 7 e 10.1533 30.7275 26.4703 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 8 : 10.5923 8.8509 25.1466 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 9 r 10.3016 30.0874 25.7043 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 10 l -0.0611 27.0256 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 11 i -0.0389 27.0256 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 12 1 -0.8280 24.7300 36.4608 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 13 | 0.3417 5.1491 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 14 N 2.2670 35.4864 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 15 f -0.1225 30.2957 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 16 g 9.8945 32.8149 36.6426 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 17 d 0.3698 33.9892 36.6691 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 18 W 2.5669 38.6293 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 19 s 9.9189 26.2679 26.4703 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 20 c 10.4286 29.6062 26.4703 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 21 u 11.0538 33.1226 25.9126 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 22 3 -0.4860 26.9346 37.0185 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 23 ~ 13.2290 27.6923 12.0861 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 24 # -4.1771 26.8256 41.5515 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 25 O 1.8710 32.6414 34.6234 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 26 ` -2.6572 11.1466 9.3586 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 27 @ 0.0487 21.9941 40.6703 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 28 F 2.4769 31.2852 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 29 S 2.0407 27.1846 34.6234 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 30 p 9.9852 34.2969 36.6426 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 31 “ 2.2997 23.8481 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 32 % 0.2078 26.0861 36.6691 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 33 £ 2.0843 29.3797 33.8574 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 34 . 28.5055 8.8509 7.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 35 2 -0.7683 26.5445 36.4608 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 36 5 0.0759 27.0340 36.4608 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 37 m 10.2273 37.7404 25.7043 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 38 V 2.1084 38.4306 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 39 6 -0.4385 25.4543 37.0185 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 40 w 10.5692 33.3756 25.1466 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 41 T 2.3254 29.3213 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 42 M 2.4981 38.3481 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 43 G 2.3422 32.4596 34.6234 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 44 b -0.2562 34.2969 36.6691 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 45 9 -0.4006 25.4543 37.0185 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 46 ; 10.6657 14.2083 31.9019 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 47 D 2.3958 31.6670 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 48 L 2.3570 31.4253 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 49 y 10.8208 35.2713 36.0849 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 50 ‘ 2.0104 11.4543 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 51 \ -5.1682 25.9043 47.8074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 52 R 2.0554 34.9552 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 53 < 2.6510 33.3574 33.3392 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 54 4 -0.1315 25.2460 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 55 8 -0.4677 25.5784 37.0185 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 56 0 -0.3667 25.5784 37.0185 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 57 A 2.3065 38.2648 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 58 E 2.5079 30.3867 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 59 B 1.9588 32.8991 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 60 v 10.9205 35.0559 25.1466 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 61 k -0.1741 30.6450 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 62 J 2.4893 32.1830 34.3734 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 63 U 2.5685 34.9371 34.3734 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 64 j 0.0431 21.4448 46.8414 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 65 ( -0.0009 12.8522 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 66 7 -0.2794 24.9383 35.9031 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 67 § 0.0629 29.7880 41.0522 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 68 $ -4.3541 25.1466 47.5392 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 69 € 2.1101 32.2596 34.6234 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 70 / -5.2106 25.1466 47.8074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 71 C 2.1097 30.3457 34.6234 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 72 * -0.0657 23.8663 24.9466 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 73 ” 2.3167 23.8481 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 74 ? 1.7750 23.4828 34.6234 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 75 { 0.0301 14.7395 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 76 } 0.0919 14.7395 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 77 , 28.1325 11.4543 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 78 I 2.4280 24.7300 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 79 ° -5.9286 16.4380 16.4380 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 80 K 2.0477 34.4476 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 81 H 2.3082 30.7457 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 82 q 10.2377 33.9892 36.6426 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 83 & 3.5761 26.8522 33.1574 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 84 ’ 1.7172 11.4543 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 85 [ 0.0488 12.8438 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 86 - 16.7363 24.9383 5.1491 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 87 Y 2.0905 32.1337 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 88 Q 1.9900 32.6414 42.0682 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 89 " 2.2762 20.7160 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 90 ! -0.1737 9.3586 36.6691 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 91 x 10.6920 32.6414 25.1466 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 92 ) 0.0213 12.8522 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 93 = 12.1339 32.6414 14.9395 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 94 + 4.6290 29.3213 29.3213 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 95 X 2.1446 35.2448 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 96 » 12.7491 28.6895 23.2328 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 97 ' 2.4476 8.0373 17.2435 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 98 ¢ -4.5507 24.4306 43.2055 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 99 Z 2.0570 26.2945 33.6074 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 100 > 2.5967 33.3574 33.3392 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 101 ® 2.5024 34.9371 34.3734 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 102 © 2.3502 34.9371 34.3734 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 103 ] 0.3244 12.8438 43.1478 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 104 é -2.7790 30.7275 39.2725 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 105 z 10.5637 25.4543 25.1466 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 106 _ 48.0141 40.0861 5.1491 -Courier_New_Bold.ttf 72 * 23.8663 24.9466 107 ¥ 2.4513 31.2700 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 1 t -0.4473 29.3297 34.9636 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 2 h -2.1713 33.1226 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 3 a 8.2505 31.0352 26.4703 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 4 n 8.0970 31.9747 25.7043 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 5 P 0.1642 30.2957 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 6 o 8.2042 29.8457 26.4703 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 7 e 7.8102 30.7275 26.4703 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 8 : 8.8409 8.8509 25.1466 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 9 r 8.2305 30.0874 25.7043 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 10 l -2.2926 27.0256 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 11 i -1.7347 27.0256 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 12 1 -2.4247 24.7300 36.4608 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 13 | -2.2751 5.1491 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 14 N 0.2242 35.4864 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 15 f -2.3213 30.2957 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 16 g 7.9728 32.8149 36.6426 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 17 d -1.5076 33.9892 36.6691 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 18 W 0.1740 38.6293 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 19 s 7.7222 26.2679 26.4703 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 20 c 8.2402 29.6062 26.4703 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 21 u 8.7702 33.1226 25.9126 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 22 3 -2.6154 26.9346 37.0185 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 23 ~ 11.2421 27.6923 12.0861 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 24 # -6.5254 26.8256 41.5515 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 25 O -0.0129 32.6414 34.6234 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 26 ` -4.6047 11.1466 9.3586 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 27 @ -1.8863 21.9941 40.6703 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 28 F 0.0954 31.2852 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 29 S 0.2970 27.1846 34.6234 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 30 p 8.1174 34.2969 36.6426 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 31 “ 0.1655 23.8481 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 32 % -2.1124 26.0861 36.6691 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 33 £ -0.4129 29.3797 33.8574 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 34 . 26.7106 8.8509 7.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 35 2 -2.3744 26.5445 36.4608 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 36 5 -2.1667 27.0340 36.4608 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 37 m 8.2630 37.7404 25.7043 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 38 V 0.3631 38.4306 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 39 6 -2.5237 25.4543 37.0185 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 40 w 8.5176 33.3756 25.1466 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 41 T 0.1731 29.3213 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 42 M 0.2505 38.3481 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 43 G 0.1287 32.4596 34.6234 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 44 b -2.1327 34.2969 36.6691 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 45 9 -2.5317 25.4543 37.0185 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 46 ; 8.5541 14.2083 31.9019 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 47 D 0.2500 31.6670 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 48 L 0.1439 31.4253 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 49 y 8.6191 35.2713 36.0849 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 50 ‘ -0.3139 11.4543 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 51 \ -7.2354 25.9043 47.8074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 52 R 0.3045 34.9552 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 53 < 0.4112 33.3574 33.3392 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 54 4 -2.0077 25.2460 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 55 8 -2.5604 25.5784 37.0185 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 56 0 -2.3295 25.5784 37.0185 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 57 A 0.3855 38.2648 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 58 E 0.0860 30.3867 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 59 B -0.0734 32.8991 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 60 v 8.6658 35.0559 25.1466 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 61 k -1.8557 30.6450 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 62 J 0.0776 32.1830 34.3734 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 63 U -0.0656 34.9371 34.3734 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 64 j -1.9999 21.4448 46.8414 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 65 ( -1.7041 12.8522 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 66 7 -2.0392 24.9383 35.9031 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 67 § -1.9562 29.7880 41.0522 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 68 $ -6.2200 25.1466 47.5392 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 69 € -0.1873 32.2596 34.6234 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 70 / -7.3357 25.1466 47.8074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 71 C -0.0435 30.3457 34.6234 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 72 * -1.9481 23.8663 24.9466 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 73 ” -0.0173 23.8481 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 74 ? -0.1259 23.4828 34.6234 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 75 { -1.9973 14.7395 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 76 } -2.0457 14.7395 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 77 , 26.0920 11.4543 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 78 I 0.2602 24.7300 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 79 ° -8.0858 16.4380 16.4380 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 80 K -0.0345 34.4476 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 81 H 0.3399 30.7457 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 82 q 8.1993 33.9892 36.6426 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 83 & 1.4368 26.8522 33.1574 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 84 ’ -0.1446 11.4543 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 85 [ -1.8757 12.8438 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 86 - 14.5447 24.9383 5.1491 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 87 Y 0.1731 32.1337 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 88 Q 0.3826 32.6414 42.0682 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 89 " 0.4108 20.7160 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 90 ! -2.2389 9.3586 36.6691 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 91 x 8.8310 32.6414 25.1466 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 92 ) -2.2760 12.8522 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 93 = 10.1004 32.6414 14.9395 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 94 + 2.5578 29.3213 29.3213 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 95 X 0.2955 35.2448 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 96 » 10.5602 28.6895 23.2328 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 97 ' 0.3474 8.0373 17.2435 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 98 ¢ -6.8514 24.4306 43.2055 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 99 Z 0.3348 26.2945 33.6074 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 100 > 0.1924 33.3574 33.3392 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 101 ® 0.1272 34.9371 34.3734 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 102 © 0.3838 34.9371 34.3734 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 103 ] -1.9170 12.8438 43.1478 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 104 é -4.5804 30.7275 39.2725 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 105 z 8.7335 25.4543 25.1466 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 106 _ 45.9781 40.0861 5.1491 -Courier_New_Bold.ttf 73 ” 23.8481 17.2435 107 ¥ 0.3728 31.2700 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 1 t -0.1198 29.3297 34.9636 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 2 h -2.0377 33.1226 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 3 a 8.0586 31.0352 26.4703 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 4 n 8.2245 31.9747 25.7043 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 5 P 0.2260 30.2957 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 6 o 8.0789 29.8457 26.4703 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 7 e 8.0239 30.7275 26.4703 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 8 : 8.5934 8.8509 25.1466 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 9 r 7.9533 30.0874 25.7043 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 10 l -1.8331 27.0256 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 11 i -2.2158 27.0256 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 12 1 -2.3416 24.7300 36.4608 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 13 | -1.9787 5.1491 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 14 N 0.0034 35.4864 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 15 f -2.0016 30.2957 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 16 g 8.5604 32.8149 36.6426 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 17 d -2.1269 33.9892 36.6691 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 18 W -0.0359 38.6293 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 19 s 8.2110 26.2679 26.4703 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 20 c 7.9264 29.6062 26.4703 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 21 u 8.9435 33.1226 25.9126 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 22 3 -2.5175 26.9346 37.0185 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 23 ~ 10.8409 27.6923 12.0861 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 24 # -6.3002 26.8256 41.5515 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 25 O -0.0268 32.6414 34.6234 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 26 ` -4.6845 11.1466 9.3586 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 27 @ -2.1582 21.9941 40.6703 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 28 F 0.6096 31.2852 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 29 S 0.1903 27.1846 34.6234 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 30 p 8.0789 34.2969 36.6426 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 31 “ -0.0593 23.8481 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 32 % -2.0277 26.0861 36.6691 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 33 £ 0.3303 29.3797 33.8574 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 34 . 26.6730 8.8509 7.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 35 2 -2.7101 26.5445 36.4608 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 36 5 -2.1199 27.0340 36.4608 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 37 m 7.9418 37.7404 25.7043 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 38 V 0.3055 38.4306 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 39 6 -2.2735 25.4543 37.0185 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 40 w 8.8748 33.3756 25.1466 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 41 T 0.2500 29.3213 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 42 M 0.1055 38.3481 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 43 G 0.3884 32.4596 34.6234 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 44 b -2.3239 34.2969 36.6691 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 45 9 -2.6483 25.4543 37.0185 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 46 ; 8.8441 14.2083 31.9019 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 47 D 0.2463 31.6670 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 48 L 0.1549 31.4253 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 49 y 8.4319 35.2713 36.0849 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 50 ‘ 0.2298 11.4543 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 51 \ -7.3913 25.9043 47.8074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 52 R 0.4117 34.9552 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 53 < 0.4381 33.3574 33.3392 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 54 4 -1.8812 25.2460 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 55 8 -2.7335 25.5784 37.0185 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 56 0 -2.4721 25.5784 37.0185 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 57 A 0.1174 38.2648 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 58 E 0.2500 30.3867 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 59 B 0.2450 32.8991 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 60 v 8.8548 35.0559 25.1466 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 61 k -1.7944 30.6450 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 62 J 0.2217 32.1830 34.3734 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 63 U 0.2078 34.9371 34.3734 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 64 j -2.2532 21.4448 46.8414 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 65 ( -1.9645 12.8522 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 66 7 -2.0104 24.9383 35.9031 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 67 § -2.0586 29.7880 41.0522 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 68 $ -6.3292 25.1466 47.5392 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 69 € 0.0871 32.2596 34.6234 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 70 / -7.2035 25.1466 47.8074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 71 C -0.0482 30.3457 34.6234 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 72 * -2.1054 23.8663 24.9466 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 73 ” -0.1553 23.8481 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 74 ? 0.2030 23.4828 34.6234 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 75 { -2.1769 14.7395 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 76 } -2.1794 14.7395 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 77 , 25.9641 11.4543 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 78 I 0.3698 24.7300 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 79 ° -8.2712 16.4380 16.4380 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 80 K 0.2856 34.4476 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 81 H 0.2756 30.7457 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 82 q 7.9117 33.9892 36.6426 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 83 & 1.4628 26.8522 33.1574 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 84 ’ -0.1592 11.4543 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 85 [ -2.1337 12.8438 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 86 - 14.9196 24.9383 5.1491 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 87 Y 0.6539 32.1337 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 88 Q 0.6503 32.6414 42.0682 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 89 " 0.0957 20.7160 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 90 ! -2.1185 9.3586 36.6691 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 91 x 8.7667 32.6414 25.1466 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 92 ) -2.2472 12.8522 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 93 = 10.0115 32.6414 14.9395 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 94 + 2.5800 29.3213 29.3213 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 95 X 0.3597 35.2448 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 96 » 10.6324 28.6895 23.2328 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 97 ' 0.3867 8.0373 17.2435 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 98 ¢ -6.5224 24.4306 43.2055 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 99 Z 0.4739 26.2945 33.6074 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 100 > 0.4011 33.3574 33.3392 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 101 ® 0.2819 34.9371 34.3734 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 102 © 0.1832 34.9371 34.3734 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 103 ] -2.1328 12.8438 43.1478 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 104 é -4.6805 30.7275 39.2725 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 105 z 8.7249 25.4543 25.1466 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 106 _ 46.0003 40.0861 5.1491 -Courier_New_Bold.ttf 74 ? 23.4828 34.6234 107 ¥ 0.4855 31.2700 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 1 t 1.6216 29.3297 34.9636 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 2 h -0.0032 33.1226 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 3 a 10.3317 31.0352 26.4703 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 4 n 10.1635 31.9747 25.7043 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 5 P 2.3688 30.2957 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 6 o 10.0372 29.8457 26.4703 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 7 e 10.2432 30.7275 26.4703 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 8 : 10.8376 8.8509 25.1466 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 9 r 10.0291 30.0874 25.7043 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 10 l -0.1696 27.0256 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 11 i -0.0213 27.0256 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 12 1 -0.5860 24.7300 36.4608 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 13 | -0.0862 5.1491 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 14 N 2.1928 35.4864 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 15 f -0.0800 30.2957 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 16 g 10.1904 32.8149 36.6426 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 17 d -0.0422 33.9892 36.6691 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 18 W 2.3699 38.6293 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 19 s 9.9980 26.2679 26.4703 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 20 c 10.5128 29.6062 26.4703 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 21 u 10.4825 33.1226 25.9126 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 22 3 -0.5717 26.9346 37.0185 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 23 ~ 13.2085 27.6923 12.0861 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 24 # -4.3989 26.8256 41.5515 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 25 O 1.8969 32.6414 34.6234 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 26 ` -2.6391 11.1466 9.3586 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 27 @ 0.1432 21.9941 40.6703 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 28 F 2.0805 31.2852 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 29 S 2.1341 27.1846 34.6234 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 30 p 10.0928 34.2969 36.6426 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 31 “ 2.1570 23.8481 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 32 % -0.0871 26.0861 36.6691 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 33 £ 2.2213 29.3797 33.8574 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 34 . 28.8928 8.8509 7.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 35 2 -0.6531 26.5445 36.4608 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 36 5 -0.3309 27.0340 36.4608 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 37 m 9.8896 37.7404 25.7043 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 38 V 2.2999 38.4306 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 39 6 -0.3145 25.4543 37.0185 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 40 w 10.7115 33.3756 25.1466 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 41 T 2.2013 29.3213 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 42 M 2.2530 38.3481 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 43 G 2.2167 32.4596 34.6234 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 44 b 0.2563 34.2969 36.6691 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 45 9 -0.4451 25.4543 37.0185 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 46 ; 10.5341 14.2083 31.9019 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 47 D 2.4726 31.6670 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 48 L 2.2068 31.4253 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 49 y 10.9048 35.2713 36.0849 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 50 ‘ 2.0899 11.4543 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 51 \ -5.2479 25.9043 47.8074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 52 R 2.2449 34.9552 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 53 < 2.5607 33.3574 33.3392 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 54 4 0.0316 25.2460 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 55 8 -1.0415 25.5784 37.0185 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 56 0 -0.4125 25.5784 37.0185 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 57 A 2.0271 38.2648 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 58 E 2.2443 30.3867 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 59 B 2.1298 32.8991 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 60 v 10.4885 35.0559 25.1466 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 61 k -0.0871 30.6450 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 62 J 2.3741 32.1830 34.3734 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 63 U 2.2955 34.9371 34.3734 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 64 j 0.1089 21.4448 46.8414 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 65 ( 0.3156 12.8522 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 66 7 -0.0742 24.9383 35.9031 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 67 § 0.0742 29.7880 41.0522 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 68 $ -3.8933 25.1466 47.5392 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 69 € 2.1597 32.2596 34.6234 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 70 / -5.1096 25.1466 47.8074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 71 C 2.2330 30.3457 34.6234 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 72 * 0.0370 23.8663 24.9466 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 73 ” 2.0749 23.8481 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 74 ? 2.2100 23.4828 34.6234 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 75 { -0.0412 14.7395 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 76 } 0.1253 14.7395 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 77 , 28.1608 11.4543 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 78 I 2.2628 24.7300 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 79 ° -6.3256 16.4380 16.4380 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 80 K 2.0288 34.4476 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 81 H 2.0427 30.7457 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 82 q 10.4573 33.9892 36.6426 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 83 & 3.6601 26.8522 33.1574 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 84 ’ 2.3487 11.4543 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 85 [ -0.3226 12.8438 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 86 - 16.6651 24.9383 5.1491 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 87 Y 2.4551 32.1337 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 88 Q 1.9365 32.6414 42.0682 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 89 " 2.5658 20.7160 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 90 ! 0.0112 9.3586 36.6691 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 91 x 10.9111 32.6414 25.1466 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 92 ) -0.0319 12.8522 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 93 = 11.5404 32.6414 14.9395 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 94 + 4.6707 29.3213 29.3213 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 95 X 2.3948 35.2448 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 96 » 12.3948 28.6895 23.2328 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 97 ' 2.2473 8.0373 17.2435 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 98 ¢ -4.7986 24.4306 43.2055 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 99 Z 2.1801 26.2945 33.6074 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 100 > 2.5698 33.3574 33.3392 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 101 ® 2.2866 34.9371 34.3734 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 102 © 2.5626 34.9371 34.3734 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 103 ] 0.1361 12.8438 43.1478 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 104 é -2.9366 30.7275 39.2725 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 105 z 10.9380 25.4543 25.1466 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 106 _ 48.1136 40.0861 5.1491 -Courier_New_Bold.ttf 75 { 14.7395 43.1478 107 ¥ 2.2188 31.2700 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 1 t 1.6525 29.3297 34.9636 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 2 h -0.1329 33.1226 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 3 a 10.2799 31.0352 26.4703 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 4 n 10.3739 31.9747 25.7043 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 5 P 2.0427 30.2957 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 6 o 10.2233 29.8457 26.4703 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 7 e 10.2276 30.7275 26.4703 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 8 : 11.0915 8.8509 25.1466 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 9 r 10.5045 30.0874 25.7043 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 10 l -0.0322 27.0256 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 11 i -0.2809 27.0256 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 12 1 -0.7249 24.7300 36.4608 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 13 | 0.2225 5.1491 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 14 N 2.5822 35.4864 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 15 f -0.1278 30.2957 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 16 g 10.2275 32.8149 36.6426 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 17 d 0.1120 33.9892 36.6691 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 18 W 2.5794 38.6293 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 19 s 10.5084 26.2679 26.4703 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 20 c 10.0459 29.6062 26.4703 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 21 u 10.8565 33.1226 25.9126 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 22 3 -0.1760 26.9346 37.0185 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 23 ~ 13.3347 27.6923 12.0861 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 24 # -4.0778 26.8256 41.5515 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 25 O 2.2780 32.6414 34.6234 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 26 ` -2.8347 11.1466 9.3586 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 27 @ 0.1067 21.9941 40.6703 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 28 F 2.5422 31.2852 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 29 S 2.1263 27.1846 34.6234 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 30 p 10.3886 34.2969 36.6426 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 31 “ 1.9726 23.8481 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 32 % 0.0529 26.0861 36.6691 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 33 £ 2.0075 29.3797 33.8574 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 34 . 28.7583 8.8509 7.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 35 2 -0.5462 26.5445 36.4608 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 36 5 0.0000 27.0340 36.4608 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 37 m 10.1259 37.7404 25.7043 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 38 V 2.5195 38.4306 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 39 6 -0.4427 25.4543 37.0185 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 40 w 11.0301 33.3756 25.1466 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 41 T 2.4006 29.3213 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 42 M 2.2397 38.3481 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 43 G 2.2417 32.4596 34.6234 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 44 b -0.0125 34.2969 36.6691 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 45 9 -0.3493 25.4543 37.0185 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 46 ; 10.6466 14.2083 31.9019 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 47 D 2.3275 31.6670 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 48 L 2.1943 31.4253 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 49 y 10.5022 35.2713 36.0849 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 50 ‘ 2.0685 11.4543 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 51 \ -5.2103 25.9043 47.8074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 52 R 2.4054 34.9552 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 53 < 2.5964 33.3574 33.3392 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 54 4 -0.0330 25.2460 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 55 8 -0.2561 25.5784 37.0185 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 56 0 -0.4649 25.5784 37.0185 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 57 A 2.1469 38.2648 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 58 E 2.4445 30.3867 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 59 B 2.1155 32.8991 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 60 v 10.6721 35.0559 25.1466 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 61 k -0.1608 30.6450 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 62 J 2.4472 32.1830 34.3734 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 63 U 2.2911 34.9371 34.3734 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 64 j -0.1876 21.4448 46.8414 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 65 ( 0.1809 12.8522 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 66 7 -0.0793 24.9383 35.9031 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 67 § 0.2608 29.7880 41.0522 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 68 $ -4.1830 25.1466 47.5392 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 69 € 2.0429 32.2596 34.6234 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 70 / -4.8753 25.1466 47.8074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 71 C 1.9293 30.3457 34.6234 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 72 * -0.0937 23.8663 24.9466 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 73 ” 2.2404 23.8481 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 74 ? 2.1838 23.4828 34.6234 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 75 { -0.0599 14.7395 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 76 } -0.1696 14.7395 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 77 , 28.0950 11.4543 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 78 I 2.1188 24.7300 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 79 ° -6.2612 16.4380 16.4380 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 80 K 2.2387 34.4476 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 81 H 2.3054 30.7457 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 82 q 10.2502 33.9892 36.6426 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 83 & 3.8829 26.8522 33.1574 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 84 ’ 2.2301 11.4543 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 85 [ 0.2228 12.8438 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 86 - 17.1248 24.9383 5.1491 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 87 Y 2.1733 32.1337 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 88 Q 2.2707 32.6414 42.0682 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 89 " 2.2446 20.7160 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 90 ! -0.3747 9.3586 36.6691 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 91 x 10.6120 32.6414 25.1466 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 92 ) 0.1567 12.8522 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 93 = 12.1709 32.6414 14.9395 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 94 + 4.5553 29.3213 29.3213 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 95 X 2.0255 35.2448 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 96 » 12.7282 28.6895 23.2328 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 97 ' 2.3104 8.0373 17.2435 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 98 ¢ -4.7519 24.4306 43.2055 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 99 Z 2.3597 26.2945 33.6074 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 100 > 2.4628 33.3574 33.3392 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 101 ® 2.4740 34.9371 34.3734 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 102 © 2.2754 34.9371 34.3734 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 103 ] 0.0909 12.8438 43.1478 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 104 é -2.5974 30.7275 39.2725 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 105 z 10.9275 25.4543 25.1466 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 106 _ 48.2517 40.0861 5.1491 -Courier_New_Bold.ttf 76 } 14.7395 43.1478 107 ¥ 2.0700 31.2700 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 1 t -26.4590 29.3297 34.9636 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 2 h -27.9202 33.1226 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 3 a -17.8327 31.0352 26.4703 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 4 n -17.8298 31.9747 25.7043 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 5 P -25.6112 30.2957 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 6 o -17.7040 29.8457 26.4703 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 7 e -17.5523 30.7275 26.4703 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 8 : -17.1566 8.8509 25.1466 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 9 r -17.9681 30.0874 25.7043 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 10 l -27.9210 27.0256 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 11 i -28.0150 27.0256 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 12 1 -28.6364 24.7300 36.4608 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 13 | -28.0824 5.1491 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 14 N -25.7683 35.4864 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 15 f -28.0482 30.2957 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 16 g -17.9111 32.8149 36.6426 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 17 d -28.2053 33.9892 36.6691 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 18 W -25.4828 38.6293 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 19 s -17.8441 26.2679 26.4703 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 20 c -17.7575 29.6062 26.4703 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 21 u -17.3250 33.1226 25.9126 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 22 3 -28.6346 26.9346 37.0185 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 23 ~ -14.6518 27.6923 12.0861 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 24 # -32.5111 26.8256 41.5515 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 25 O -25.9200 32.6414 34.6234 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 26 ` -30.8934 11.1466 9.3586 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 27 @ -28.1922 21.9941 40.6703 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 28 F -25.7295 31.2852 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 29 S -25.9428 27.1846 34.6234 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 30 p -17.7980 34.2969 36.6426 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 31 “ -25.7879 23.8481 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 32 % -28.1158 26.0861 36.6691 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 33 £ -25.9548 29.3797 33.8574 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 34 . 0.3253 8.8509 7.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 35 2 -28.6630 26.5445 36.4608 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 36 5 -28.2432 27.0340 36.4608 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 37 m -17.5991 37.7404 25.7043 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 38 V -25.7626 38.4306 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 39 6 -28.6875 25.4543 37.0185 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 40 w -17.0952 33.3756 25.1466 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 41 T -25.5856 29.3213 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 42 M -25.9555 38.3481 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 43 G -25.9757 32.4596 34.6234 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 44 b -28.1658 34.2969 36.6691 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 45 9 -28.7842 25.4543 37.0185 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 46 ; -17.3821 14.2083 31.9019 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 47 D -25.5172 31.6670 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 48 L -25.7993 31.4253 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 49 y -17.4010 35.2713 36.0849 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 50 ‘ -26.1156 11.4543 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 51 \ -33.0305 25.9043 47.8074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 52 R -25.6686 34.9552 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 53 < -25.5380 33.3574 33.3392 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 54 4 -27.9076 25.2460 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 55 8 -28.5706 25.5784 37.0185 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 56 0 -28.7508 25.5784 37.0185 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 57 A -25.6756 38.2648 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 58 E -25.7283 30.3867 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 59 B -25.7932 32.8991 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 60 v -17.5637 35.0559 25.1466 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 61 k -27.9778 30.6450 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 62 J -25.8767 32.1830 34.3734 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 63 U -25.6604 34.9371 34.3734 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 64 j -27.7697 21.4448 46.8414 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 65 ( -27.8944 12.8522 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 66 7 -27.5261 24.9383 35.9031 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 67 § -27.9856 29.7880 41.0522 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 68 $ -32.1673 25.1466 47.5392 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 69 € -25.8385 32.2596 34.6234 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 70 / -33.3484 25.1466 47.8074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 71 C -26.2012 30.3457 34.6234 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 72 * -28.0385 23.8663 24.9466 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 73 ” -26.0160 23.8481 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 74 ? -26.1912 23.4828 34.6234 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 75 { -27.8461 14.7395 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 76 } -27.8842 14.7395 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 77 , 0.1801 11.4543 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 78 I -25.8147 24.7300 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 79 ° -34.2168 16.4380 16.4380 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 80 K -25.5815 34.4476 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 81 H -25.8624 30.7457 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 82 q -17.5870 33.9892 36.6426 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 83 & -24.2812 26.8522 33.1574 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 84 ’ -26.0544 11.4543 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 85 [ -28.2666 12.8438 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 86 - -11.4847 24.9383 5.1491 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 87 Y -25.7910 32.1337 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 88 Q -25.8050 32.6414 42.0682 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 89 " -25.8271 20.7160 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 90 ! -28.0422 9.3586 36.6691 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 91 x -17.4951 32.6414 25.1466 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 92 ) -27.7943 12.8522 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 93 = -16.2409 32.6414 14.9395 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 94 + -23.3136 29.3213 29.3213 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 95 X -25.9509 35.2448 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 96 » -15.2176 28.6895 23.2328 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 97 ' -25.7562 8.0373 17.2435 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 98 ¢ -32.7348 24.4306 43.2055 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 99 Z -25.9688 26.2945 33.6074 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 100 > -25.3262 33.3574 33.3392 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 101 ® -25.7016 34.9371 34.3734 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 102 © -25.5736 34.9371 34.3734 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 103 ] -28.2540 12.8438 43.1478 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 104 é -30.5950 30.7275 39.2725 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 105 z -17.3723 25.4543 25.1466 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 106 _ 20.1976 40.0861 5.1491 -Courier_New_Bold.ttf 77 , 11.4543 17.2435 107 ¥ -25.8460 31.2700 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 1 t -0.7023 29.3297 34.9636 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 2 h -2.2688 33.1226 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 3 a 7.9398 31.0352 26.4703 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 4 n 8.0178 31.9747 25.7043 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 5 P 0.0228 30.2957 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 6 o 7.5832 29.8457 26.4703 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 7 e 7.8461 30.7275 26.4703 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 8 : 8.2550 8.8509 25.1466 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 9 r 7.9975 30.0874 25.7043 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 10 l -2.2583 27.0256 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 11 i -2.2314 27.0256 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 12 1 -2.8579 24.7300 36.4608 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 13 | -2.1363 5.1491 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 14 N -0.0774 35.4864 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 15 f -2.5013 30.2957 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 16 g 7.8901 32.8149 36.6426 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 17 d -2.1284 33.9892 36.6691 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 18 W -0.0088 38.6293 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 19 s 7.8643 26.2679 26.4703 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 20 c 7.8701 29.6062 26.4703 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 21 u 8.4422 33.1226 25.9126 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 22 3 -2.9790 26.9346 37.0185 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 23 ~ 11.1460 27.6923 12.0861 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 24 # -6.6684 26.8256 41.5515 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 25 O -0.4084 32.6414 34.6234 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 26 ` -5.1146 11.1466 9.3586 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 27 @ -2.2600 21.9941 40.6703 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 28 F 0.2158 31.2852 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 29 S -0.4724 27.1846 34.6234 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 30 p 8.0899 34.2969 36.6426 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 31 “ -0.3885 23.8481 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 32 % -2.1546 26.0861 36.6691 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 33 £ -0.2371 29.3797 33.8574 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 34 . 26.2688 8.8509 7.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 35 2 -3.0536 26.5445 36.4608 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 36 5 -2.2229 27.0340 36.4608 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 37 m 7.7832 37.7404 25.7043 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 38 V 0.0473 38.4306 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 39 6 -3.1987 25.4543 37.0185 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 40 w 8.6151 33.3756 25.1466 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 41 T 0.1283 29.3213 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 42 M 0.1242 38.3481 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 43 G -0.1380 32.4596 34.6234 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 44 b -2.5166 34.2969 36.6691 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 45 9 -2.7195 25.4543 37.0185 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 46 ; 8.8376 14.2083 31.9019 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 47 D 0.0129 31.6670 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 48 L -0.1224 31.4253 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 49 y 8.9172 35.2713 36.0849 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 50 ‘ -0.2210 11.4543 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 51 \ -7.2088 25.9043 47.8074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 52 R 0.1538 34.9552 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 53 < 0.1927 33.3574 33.3392 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 54 4 -2.1859 25.2460 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 55 8 -2.5566 25.5784 37.0185 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 56 0 -2.7640 25.5784 37.0185 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 57 A 0.0027 38.2648 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 58 E 0.1556 30.3867 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 59 B 0.1053 32.8991 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 60 v 8.4261 35.0559 25.1466 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 61 k -2.2376 30.6450 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 62 J -0.1414 32.1830 34.3734 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 63 U -0.0005 34.9371 34.3734 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 64 j -2.2953 21.4448 46.8414 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 65 ( -2.3484 12.8522 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 66 7 -2.3212 24.9383 35.9031 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 67 § -2.2884 29.7880 41.0522 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 68 $ -6.3206 25.1466 47.5392 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 69 € -0.2885 32.2596 34.6234 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 70 / -7.2974 25.1466 47.8074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 71 C -0.2597 30.3457 34.6234 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 72 * -2.3086 23.8663 24.9466 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 73 ” -0.0915 23.8481 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 74 ? -0.3547 23.4828 34.6234 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 75 { -2.4963 14.7395 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 76 } -2.4269 14.7395 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 77 , 25.7608 11.4543 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 78 I 0.0032 24.7300 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 79 ° -8.6806 16.4380 16.4380 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 80 K -0.1339 34.4476 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 81 H 0.0028 30.7457 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 82 q 7.9549 33.9892 36.6426 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 83 & 1.1741 26.8522 33.1574 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 84 ’ -0.0187 11.4543 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 85 [ -2.4538 12.8438 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 86 - 14.4935 24.9383 5.1491 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 87 Y -0.0085 32.1337 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 88 Q -0.0629 32.6414 42.0682 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 89 " -0.0227 20.7160 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 90 ! -2.1706 9.3586 36.6691 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 91 x 8.3465 32.6414 25.1466 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 92 ) -2.5941 12.8522 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 93 = 9.7770 32.6414 14.9395 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 94 + 2.2239 29.3213 29.3213 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 95 X -0.1312 35.2448 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 96 » 10.5794 28.6895 23.2328 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 97 ' 0.1385 8.0373 17.2435 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 98 ¢ -6.8051 24.4306 43.2055 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 99 Z -0.1841 26.2945 33.6074 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 100 > 0.1940 33.3574 33.3392 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 101 ® -0.2285 34.9371 34.3734 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 102 © 0.1858 34.9371 34.3734 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 103 ] -2.5367 12.8438 43.1478 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 104 é -4.7443 30.7275 39.2725 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 105 z 8.2810 25.4543 25.1466 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 106 _ 45.5878 40.0861 5.1491 -Courier_New_Bold.ttf 78 I 24.7300 33.6074 107 ¥ 0.0333 31.2700 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 1 t 7.9070 29.3297 34.9636 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 2 h 6.2125 33.1226 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 3 a 16.4124 31.0352 26.4703 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 4 n 16.1273 31.9747 25.7043 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 5 P 8.5300 30.2957 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 6 o 16.3572 29.8457 26.4703 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 7 e 16.3214 30.7275 26.4703 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 8 : 16.8991 8.8509 25.1466 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 9 r 16.5986 30.0874 25.7043 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 10 l 6.0311 27.0256 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 11 i 6.3532 27.0256 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 12 1 5.6809 24.7300 36.4608 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 13 | 6.3568 5.1491 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 14 N 8.8396 35.4864 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 15 f 6.3413 30.2957 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 16 g 16.5114 32.8149 36.6426 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 17 d 6.2767 33.9892 36.6691 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 18 W 8.7886 38.6293 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 19 s 16.6101 26.2679 26.4703 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 20 c 16.5837 29.6062 26.4703 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 21 u 17.0918 33.1226 25.9126 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 22 3 5.6591 26.9346 37.0185 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 23 ~ 19.4095 27.6923 12.0861 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 24 # 2.0515 26.8256 41.5515 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 25 O 8.1781 32.6414 34.6234 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 26 ` 3.6046 11.1466 9.3586 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 27 @ 6.0917 21.9941 40.6703 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 28 F 8.5926 31.2852 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 29 S 8.3426 27.1846 34.6234 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 30 p 16.4855 34.2969 36.6426 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 31 “ 8.6194 23.8481 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 32 % 6.2015 26.0861 36.6691 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 33 £ 8.0647 29.3797 33.8574 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 34 . 35.2525 8.8509 7.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 35 2 5.7410 26.5445 36.4608 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 36 5 6.1273 27.0340 36.4608 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 37 m 16.5495 37.7404 25.7043 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 38 V 8.0267 38.4306 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 39 6 5.7164 25.4543 37.0185 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 40 w 17.1498 33.3756 25.1466 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 41 T 8.7919 29.3213 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 42 M 8.7052 38.3481 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 43 G 8.3107 32.4596 34.6234 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 44 b 6.5117 34.2969 36.6691 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 45 9 5.4723 25.4543 37.0185 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 46 ; 17.0187 14.2083 31.9019 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 47 D 8.2986 31.6670 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 48 L 8.7618 31.4253 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 49 y 17.3053 35.2713 36.0849 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 50 ‘ 8.4843 11.4543 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 51 \ 0.9407 25.9043 47.8074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 52 R 8.4971 34.9552 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 53 < 8.9863 33.3574 33.3392 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 54 4 6.6268 25.2460 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 55 8 5.6360 25.5784 37.0185 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 56 0 5.7476 25.5784 37.0185 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 57 A 8.2830 38.2648 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 58 E 8.3701 30.3867 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 59 B 8.7057 32.8991 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 60 v 17.1373 35.0559 25.1466 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 61 k 6.2813 30.6450 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 62 J 8.6668 32.1830 34.3734 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 63 U 8.5472 34.9371 34.3734 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 64 j 6.3337 21.4448 46.8414 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 65 ( 6.2227 12.8522 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 66 7 6.0939 24.9383 35.9031 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 67 § 6.4658 29.7880 41.0522 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 68 $ 2.0189 25.1466 47.5392 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 69 € 7.9599 32.2596 34.6234 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 70 / 1.1732 25.1466 47.8074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 71 C 8.4500 30.3457 34.6234 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 72 * 6.3052 23.8663 24.9466 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 73 ” 8.2684 23.8481 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 74 ? 8.1666 23.4828 34.6234 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 75 { 6.1937 14.7395 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 76 } 6.6394 14.7395 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 77 , 34.5894 11.4543 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 78 I 8.3468 24.7300 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 79 ° -0.1186 16.4380 16.4380 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 80 K 8.5008 34.4476 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 81 H 8.5059 30.7457 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 82 q 16.4288 33.9892 36.6426 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 83 & 9.6850 26.8522 33.1574 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 84 ’ 8.4325 11.4543 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 85 [ 6.2139 12.8438 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 86 - 23.2168 24.9383 5.1491 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 87 Y 8.5300 32.1337 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 88 Q 8.1482 32.6414 42.0682 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 89 " 8.3831 20.7160 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 90 ! 6.5786 9.3586 36.6691 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 91 x 17.1534 32.6414 25.1466 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 92 ) 6.2124 12.8522 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 93 = 18.8123 32.6414 14.9395 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 94 + 11.0635 29.3213 29.3213 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 95 X 8.5926 35.2448 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 96 » 18.9228 28.6895 23.2328 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 97 ' 8.2700 8.0373 17.2435 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 98 ¢ 1.8724 24.4306 43.2055 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 99 Z 8.4442 26.2945 33.6074 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 100 > 8.8366 33.3574 33.3392 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 101 ® 8.8299 34.9371 34.3734 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 102 © 8.5801 34.9371 34.3734 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 103 ] 5.9359 12.8438 43.1478 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 104 é 3.6981 30.7275 39.2725 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 105 z 17.0363 25.4543 25.1466 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 106 _ 54.2230 40.0861 5.1491 -Courier_New_Bold.ttf 79 ° 16.4380 16.4380 107 ¥ 8.5881 31.2700 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 1 t -0.7418 29.3297 34.9636 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 2 h -2.6280 33.1226 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 3 a 7.8544 31.0352 26.4703 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 4 n 7.8747 31.9747 25.7043 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 5 P 0.0264 30.2957 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 6 o 7.8433 29.8457 26.4703 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 7 e 7.6959 30.7275 26.4703 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 8 : 8.3554 8.8509 25.1466 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 9 r 7.7520 30.0874 25.7043 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 10 l -2.5756 27.0256 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 11 i -2.3884 27.0256 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 12 1 -2.8502 24.7300 36.4608 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 13 | -1.8982 5.1491 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 14 N 0.1339 35.4864 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 15 f -2.2086 30.2957 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 16 g 7.6329 32.8149 36.6426 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 17 d -2.1526 33.9892 36.6691 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 18 W -0.4445 38.6293 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 19 s 8.1515 26.2679 26.4703 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 20 c 7.6903 29.6062 26.4703 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 21 u 8.2092 33.1226 25.9126 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 22 3 -3.0884 26.9346 37.0185 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 23 ~ 10.7808 27.6923 12.0861 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 24 # -6.4732 26.8256 41.5515 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 25 O -0.2629 32.6414 34.6234 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 26 ` -5.0205 11.1466 9.3586 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 27 @ -2.2685 21.9941 40.6703 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 28 F 0.1879 31.2852 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 29 S -0.2505 27.1846 34.6234 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 30 p 7.7439 34.2969 36.6426 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 31 “ -0.4958 23.8481 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 32 % -2.1447 26.0861 36.6691 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 33 £ -0.2495 29.3797 33.8574 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 34 . 26.3753 8.8509 7.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 35 2 -2.7346 26.5445 36.4608 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 36 5 -2.2600 27.0340 36.4608 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 37 m 8.0121 37.7404 25.7043 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 38 V 0.1385 38.4306 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 39 6 -2.9386 25.4543 37.0185 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 40 w 8.4191 33.3756 25.1466 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 41 T 0.1126 29.3213 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 42 M 0.0581 38.3481 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 43 G -0.5530 32.4596 34.6234 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 44 b -2.1733 34.2969 36.6691 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 45 9 -2.5346 25.4543 37.0185 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 46 ; 8.3937 14.2083 31.9019 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 47 D 0.2159 31.6670 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 48 L 0.1099 31.4253 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 49 y 8.6359 35.2713 36.0849 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 50 ‘ -0.0113 11.4543 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 51 \ -7.3812 25.9043 47.8074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 52 R 0.2464 34.9552 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 53 < 0.2665 33.3574 33.3392 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 54 4 -2.5728 25.2460 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 55 8 -2.9794 25.5784 37.0185 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 56 0 -2.8177 25.5784 37.0185 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 57 A 0.0774 38.2648 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 58 E 0.0462 30.3867 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 59 B -0.0455 32.8991 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 60 v 8.6032 35.0559 25.1466 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 61 k -2.4051 30.6450 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 62 J 0.0734 32.1830 34.3734 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 63 U 0.1274 34.9371 34.3734 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 64 j -1.9616 21.4448 46.8414 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 65 ( -2.3377 12.8522 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 66 7 -2.0274 24.9383 35.9031 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 67 § -2.0176 29.7880 41.0522 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 68 $ -6.3633 25.1466 47.5392 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 69 € -0.2105 32.2596 34.6234 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 70 / -7.6641 25.1466 47.8074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 71 C -0.3143 30.3457 34.6234 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 72 * -2.3843 23.8663 24.9466 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 73 ” -0.4885 23.8481 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 74 ? -0.1524 23.4828 34.6234 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 75 { -2.3356 14.7395 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 76 } -2.3182 14.7395 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 77 , 25.6724 11.4543 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 78 I 0.2145 24.7300 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 79 ° -8.5861 16.4380 16.4380 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 80 K -0.0027 34.4476 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 81 H 0.0050 30.7457 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 82 q 7.6187 33.9892 36.6426 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 83 & 1.0099 26.8522 33.1574 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 84 ’ -0.1324 11.4543 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 85 [ -2.2753 12.8438 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 86 - 14.5436 24.9383 5.1491 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 87 Y 0.0899 32.1337 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 88 Q 0.2500 32.6414 42.0682 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 89 " 0.2687 20.7160 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 90 ! -2.4676 9.3586 36.6691 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 91 x 8.1846 32.6414 25.1466 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 92 ) -2.2868 12.8522 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 93 = 9.7428 32.6414 14.9395 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 94 + 2.3021 29.3213 29.3213 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 95 X 0.1841 35.2448 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 96 » 10.3802 28.6895 23.2328 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 97 ' 0.0280 8.0373 17.2435 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 98 ¢ -6.8751 24.4306 43.2055 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 99 Z 0.1870 26.2945 33.6074 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 100 > 0.2752 33.3574 33.3392 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 101 ® 0.0889 34.9371 34.3734 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 102 © -0.1228 34.9371 34.3734 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 103 ] -2.1106 12.8438 43.1478 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 104 é -4.9875 30.7275 39.2725 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 105 z 8.1756 25.4543 25.1466 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 106 _ 45.9658 40.0861 5.1491 -Courier_New_Bold.ttf 80 K 34.4476 33.6074 107 ¥ 0.1070 31.2700 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 1 t -0.6445 29.3297 34.9636 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 2 h -2.3501 33.1226 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 3 a 8.0383 31.0352 26.4703 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 4 n 8.0387 31.9747 25.7043 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 5 P -0.0876 30.2957 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 6 o 7.9448 29.8457 26.4703 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 7 e 8.2106 30.7275 26.4703 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 8 : 8.7532 8.8509 25.1466 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 9 r 8.0206 30.0874 25.7043 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 10 l -2.6436 27.0256 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 11 i -2.2951 27.0256 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 12 1 -2.7667 24.7300 36.4608 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 13 | -2.2882 5.1491 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 14 N 0.2990 35.4864 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 15 f -2.1233 30.2957 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 16 g 8.2238 32.8149 36.6426 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 17 d -2.2589 33.9892 36.6691 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 18 W 0.2509 38.6293 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 19 s 7.9146 26.2679 26.4703 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 20 c 7.8858 29.6062 26.4703 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 21 u 8.7658 33.1226 25.9126 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 22 3 -2.9691 26.9346 37.0185 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 23 ~ 10.7914 27.6923 12.0861 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 24 # -6.4083 26.8256 41.5515 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 25 O -0.1860 32.6414 34.6234 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 26 ` -4.8884 11.1466 9.3586 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 27 @ -2.1529 21.9941 40.6703 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 28 F -0.0987 31.2852 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 29 S -0.2258 27.1846 34.6234 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 30 p 7.8044 34.2969 36.6426 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 31 “ -0.1772 23.8481 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 32 % -2.1270 26.0861 36.6691 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 33 £ -0.0860 29.3797 33.8574 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 34 . 26.3697 8.8509 7.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 35 2 -2.5805 26.5445 36.4608 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 36 5 -2.0642 27.0340 36.4608 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 37 m 8.0561 37.7404 25.7043 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 38 V -0.0588 38.4306 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 39 6 -2.7357 25.4543 37.0185 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 40 w 8.4196 33.3756 25.1466 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 41 T 0.2187 29.3213 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 42 M -0.2734 38.3481 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 43 G -0.3371 32.4596 34.6234 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 44 b -2.4570 34.2969 36.6691 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 45 9 -2.8946 25.4543 37.0185 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 46 ; 8.5646 14.2083 31.9019 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 47 D 0.0010 31.6670 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 48 L -0.0807 31.4253 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 49 y 8.2937 35.2713 36.0849 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 50 ‘ -0.1337 11.4543 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 51 \ -7.5450 25.9043 47.8074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 52 R -0.0541 34.9552 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 53 < 0.0666 33.3574 33.3392 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 54 4 -2.4194 25.2460 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 55 8 -2.7760 25.5784 37.0185 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 56 0 -2.7389 25.5784 37.0185 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 57 A 0.0353 38.2648 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 58 E -0.2127 30.3867 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 59 B 0.1635 32.8991 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 60 v 8.2866 35.0559 25.1466 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 61 k -2.4149 30.6450 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 62 J -0.2660 32.1830 34.3734 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 63 U 0.0005 34.9371 34.3734 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 64 j -2.0547 21.4448 46.8414 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 65 ( -2.3010 12.8522 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 66 7 -2.3341 24.9383 35.9031 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 67 § -2.3986 29.7880 41.0522 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 68 $ -6.3107 25.1466 47.5392 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 69 € -0.1898 32.2596 34.6234 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 70 / -7.6028 25.1466 47.8074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 71 C -0.3192 30.3457 34.6234 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 72 * -2.5911 23.8663 24.9466 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 73 ” -0.1999 23.8481 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 74 ? -0.1235 23.4828 34.6234 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 75 { -2.2575 14.7395 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 76 } -2.4827 14.7395 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 77 , 25.7732 11.4543 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 78 I 0.1088 24.7300 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 79 ° -8.6511 16.4380 16.4380 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 80 K 0.0482 34.4476 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 81 H 0.3487 30.7457 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 82 q 7.4463 33.9892 36.6426 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 83 & 1.3929 26.8522 33.1574 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 84 ’ -0.1838 11.4543 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 85 [ -1.9231 12.8438 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 86 - 14.5824 24.9383 5.1491 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 87 Y 0.1655 32.1337 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 88 Q -0.3198 32.6414 42.0682 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 89 " -0.0347 20.7160 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 90 ! -1.8184 9.3586 36.6691 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 91 x 8.3817 32.6414 25.1466 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 92 ) -2.4930 12.8522 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 93 = 9.5505 32.6414 14.9395 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 94 + 2.7080 29.3213 29.3213 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 95 X 0.1076 35.2448 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 96 » 10.6185 28.6895 23.2328 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 97 ' 0.0714 8.0373 17.2435 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 98 ¢ -7.2056 24.4306 43.2055 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 99 Z 0.3201 26.2945 33.6074 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 100 > 0.7537 33.3574 33.3392 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 101 ® 0.1478 34.9371 34.3734 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 102 © 0.1016 34.9371 34.3734 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 103 ] -2.1970 12.8438 43.1478 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 104 é -5.0649 30.7275 39.2725 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 105 z 8.5734 25.4543 25.1466 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 106 _ 45.5516 40.0861 5.1491 -Courier_New_Bold.ttf 81 H 30.7457 33.6074 107 ¥ 0.0131 31.2700 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 1 t -8.4932 29.3297 34.9636 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 2 h -10.1845 33.1226 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 3 a 0.0768 31.0352 26.4703 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 4 n 0.0258 31.9747 25.7043 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 5 P -7.4916 30.2957 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 6 o 0.1201 29.8457 26.4703 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 7 e 0.0125 30.7275 26.4703 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 8 : 0.8070 8.8509 25.1466 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 9 r -0.2900 30.0874 25.7043 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 10 l -10.2151 27.0256 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 11 i -10.3114 27.0256 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 12 1 -10.5584 24.7300 36.4608 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 13 | -10.3716 5.1491 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 14 N -7.7266 35.4864 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 15 f -10.5616 30.2957 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 16 g 0.0570 32.8149 36.6426 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 17 d -10.2058 33.9892 36.6691 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 18 W -7.6400 38.6293 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 19 s -0.1794 26.2679 26.4703 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 20 c -0.0082 29.6062 26.4703 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 21 u 0.3134 33.1226 25.9126 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 22 3 -10.8279 26.9346 37.0185 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 23 ~ 3.4269 27.6923 12.0861 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 24 # -14.2902 26.8256 41.5515 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 25 O -8.3376 32.6414 34.6234 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 26 ` -12.8188 11.1466 9.3586 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 27 @ -10.0165 21.9941 40.6703 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 28 F -7.8614 31.2852 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 29 S -8.2805 27.1846 34.6234 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 30 p -0.0427 34.2969 36.6426 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 31 “ -8.0872 23.8481 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 32 % -10.3791 26.0861 36.6691 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 33 £ -8.0275 29.3797 33.8574 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 34 . 18.5673 8.8509 7.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 35 2 -10.6137 26.5445 36.4608 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 36 5 -10.1000 27.0340 36.4608 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 37 m -0.0886 37.7404 25.7043 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 38 V -7.9628 38.4306 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 39 6 -11.0338 25.4543 37.0185 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 40 w 0.5891 33.3756 25.1466 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 41 T -7.7377 29.3213 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 42 M -7.8592 38.3481 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 43 G -8.4014 32.4596 34.6234 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 44 b -10.4788 34.2969 36.6691 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 45 9 -10.4864 25.4543 37.0185 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 46 ; 0.3715 14.2083 31.9019 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 47 D -7.9660 31.6670 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 48 L -7.7195 31.4253 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 49 y 0.6996 35.2713 36.0849 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 50 ‘ -8.4897 11.4543 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 51 \ -15.2358 25.9043 47.8074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 52 R -7.9905 34.9552 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 53 < -7.6322 33.3574 33.3392 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 54 4 -10.1421 25.2460 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 55 8 -10.4665 25.5784 37.0185 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 56 0 -10.8340 25.5784 37.0185 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 57 A -7.6977 38.2648 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 58 E -7.9898 30.3867 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 59 B -7.8321 32.8991 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 60 v 0.6264 35.0559 25.1466 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 61 k -10.0487 30.6450 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 62 J -7.9031 32.1830 34.3734 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 63 U -7.6223 34.9371 34.3734 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 64 j -10.1696 21.4448 46.8414 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 65 ( -10.1460 12.8522 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 66 7 -10.6313 24.9383 35.9031 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 67 § -10.5118 29.7880 41.0522 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 68 $ -14.2394 25.1466 47.5392 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 69 € -8.3069 32.2596 34.6234 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 70 / -15.3912 25.1466 47.8074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 71 C -8.2972 30.3457 34.6234 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 72 * -10.3429 23.8663 24.9466 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 73 ” -7.9969 23.8481 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 74 ? -7.9431 23.4828 34.6234 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 75 { -10.4399 14.7395 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 76 } -10.3604 14.7395 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 77 , 17.8383 11.4543 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 78 I -7.7331 24.7300 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 79 ° -16.7821 16.4380 16.4380 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 80 K -7.8647 34.4476 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 81 H -7.8985 30.7457 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 82 q -0.1571 33.9892 36.6426 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 83 & -6.8516 26.8522 33.1574 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 84 ’ -7.8867 11.4543 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 85 [ -9.8458 12.8438 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 86 - 6.3698 24.9383 5.1491 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 87 Y -8.1386 32.1337 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 88 Q -8.2554 32.6414 42.0682 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 89 " -7.9517 20.7160 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 90 ! -10.1784 9.3586 36.6691 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 91 x 0.6244 32.6414 25.1466 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 92 ) -10.3184 12.8522 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 93 = 2.0732 32.6414 14.9395 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 94 + -5.6911 29.3213 29.3213 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 95 X -7.9351 35.2448 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 96 » 2.4526 28.6895 23.2328 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 97 ' -7.9912 8.0373 17.2435 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 98 ¢ -14.8849 24.4306 43.2055 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 99 Z -7.8856 26.2945 33.6074 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 100 > -7.9463 33.3574 33.3392 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 101 ® -7.8544 34.9371 34.3734 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 102 © -7.6816 34.9371 34.3734 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 103 ] -10.3318 12.8438 43.1478 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 104 é -12.4439 30.7275 39.2725 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 105 z 0.7319 25.4543 25.1466 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 106 _ 38.0527 40.0861 5.1491 -Courier_New_Bold.ttf 82 q 33.9892 36.6426 107 ¥ -7.9300 31.2700 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 1 t -1.7789 29.3297 34.9636 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 2 h -3.7671 33.1226 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 3 a 6.4846 31.0352 26.4703 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 4 n 6.6046 31.9747 25.7043 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 5 P -1.2720 30.2957 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 6 o 6.7454 29.8457 26.4703 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 7 e 6.6917 30.7275 26.4703 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 8 : 7.3531 8.8509 25.1466 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 9 r 6.7941 30.0874 25.7043 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 10 l -3.6534 27.0256 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 11 i -3.3414 27.0256 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 12 1 -4.1181 24.7300 36.4608 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 13 | -3.4223 5.1491 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 14 N -1.1163 35.4864 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 15 f -3.6703 30.2957 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 16 g 6.6871 32.8149 36.6426 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 17 d -3.0577 33.9892 36.6691 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 18 W -1.1515 38.6293 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 19 s 6.7039 26.2679 26.4703 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 20 c 6.4086 29.6062 26.4703 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 21 u 6.9188 33.1226 25.9126 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 22 3 -4.2649 26.9346 37.0185 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 23 ~ 9.9201 27.6923 12.0861 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 24 # -7.9464 26.8256 41.5515 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 25 O -1.7098 32.6414 34.6234 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 26 ` -6.0821 11.1466 9.3586 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 27 @ -3.3671 21.9941 40.6703 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 28 F -1.4676 31.2852 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 29 S -1.2709 27.1846 34.6234 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 30 p 6.4673 34.2969 36.6426 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 31 “ -1.5819 23.8481 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 32 % -3.6954 26.0861 36.6691 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 33 £ -1.6115 29.3797 33.8574 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 34 . 25.0643 8.8509 7.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 35 2 -4.1439 26.5445 36.4608 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 36 5 -3.5715 27.0340 36.4608 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 37 m 6.7408 37.7404 25.7043 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 38 V -1.1619 38.4306 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 39 6 -4.0353 25.4543 37.0185 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 40 w 7.3189 33.3756 25.1466 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 41 T -1.2291 29.3213 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 42 M -1.4203 38.3481 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 43 G -1.3730 32.4596 34.6234 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 44 b -3.6262 34.2969 36.6691 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 45 9 -4.1885 25.4543 37.0185 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 46 ; 7.1191 14.2083 31.9019 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 47 D -1.1285 31.6670 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 48 L -1.0642 31.4253 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 49 y 7.3996 35.2713 36.0849 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 50 ‘ -1.3665 11.4543 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 51 \ -8.5352 25.9043 47.8074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 52 R -1.1289 34.9552 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 53 < -1.0117 33.3574 33.3392 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 54 4 -3.7559 25.2460 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 55 8 -4.0764 25.5784 37.0185 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 56 0 -3.9017 25.5784 37.0185 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 57 A -1.2720 38.2648 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 58 E -0.9631 30.3867 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 59 B -0.9950 32.8991 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 60 v 7.1493 35.0559 25.1466 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 61 k -3.5149 30.6450 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 62 J -1.0859 32.1830 34.3734 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 63 U -1.2192 34.9371 34.3734 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 64 j -3.6271 21.4448 46.8414 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 65 ( -3.6671 12.8522 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 66 7 -3.5220 24.9383 35.9031 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 67 § -3.5914 29.7880 41.0522 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 68 $ -7.4711 25.1466 47.5392 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 69 € -1.3266 32.2596 34.6234 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 70 / -8.7451 25.1466 47.8074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 71 C -1.1806 30.3457 34.6234 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 72 * -3.4218 23.8663 24.9466 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 73 ” -1.3020 23.8481 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 74 ? -1.2079 23.4828 34.6234 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 75 { -3.4103 14.7395 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 76 } -3.3373 14.7395 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 77 , 24.4550 11.4543 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 78 I -1.4075 24.7300 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 79 ° -9.8220 16.4380 16.4380 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 80 K -1.0974 34.4476 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 81 H -1.3462 30.7457 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 82 q 6.7980 33.9892 36.6426 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 83 & 0.1841 26.8522 33.1574 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 84 ’ -1.4048 11.4543 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 85 [ -3.4585 12.8438 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 86 - 13.2248 24.9383 5.1491 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 87 Y -1.0849 32.1337 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 88 Q -1.5007 32.6414 42.0682 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 89 " -1.4158 20.7160 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 90 ! -3.7230 9.3586 36.6691 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 91 x 7.1854 32.6414 25.1466 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 92 ) -3.5218 12.8522 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 93 = 8.5152 32.6414 14.9395 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 94 + 1.0124 29.3213 29.3213 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 95 X -0.9399 35.2448 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 96 » 8.9511 28.6895 23.2328 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 97 ' -1.3536 8.0373 17.2435 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 98 ¢ -7.9477 24.4306 43.2055 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 99 Z -1.3842 26.2945 33.6074 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 100 > -0.8709 33.3574 33.3392 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 101 ® -1.3157 34.9371 34.3734 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 102 © -0.8495 34.9371 34.3734 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 103 ] -3.8760 12.8438 43.1478 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 104 é -6.0993 30.7275 39.2725 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 105 z 7.1604 25.4543 25.1466 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 106 _ 44.7668 40.0861 5.1491 -Courier_New_Bold.ttf 83 & 26.8522 33.1574 107 ¥ -1.2825 31.2700 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 1 t -0.4445 29.3297 34.9636 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 2 h -1.8271 33.1226 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 3 a 7.8686 31.0352 26.4703 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 4 n 8.4015 31.9747 25.7043 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 5 P 0.3015 30.2957 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 6 o 8.1184 29.8457 26.4703 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 7 e 8.3096 30.7275 26.4703 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 8 : 8.8993 8.8509 25.1466 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 9 r 8.1634 30.0874 25.7043 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 10 l -1.9356 27.0256 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 11 i -1.7809 27.0256 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 12 1 -2.5585 24.7300 36.4608 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 13 | -1.9747 5.1491 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 14 N 0.5030 35.4864 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 15 f -2.0658 30.2957 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 16 g 8.1531 32.8149 36.6426 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 17 d -1.9331 33.9892 36.6691 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 18 W 0.3237 38.6293 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 19 s 8.3626 26.2679 26.4703 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 20 c 8.1346 29.6062 26.4703 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 21 u 8.6209 33.1226 25.9126 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 22 3 -2.7133 26.9346 37.0185 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 23 ~ 11.0679 27.6923 12.0861 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 24 # -5.9634 26.8256 41.5515 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 25 O -0.0357 32.6414 34.6234 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 26 ` -4.6774 11.1466 9.3586 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 27 @ -1.9946 21.9941 40.6703 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 28 F 0.3237 31.2852 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 29 S 0.0389 27.1846 34.6234 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 30 p 8.1985 34.2969 36.6426 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 31 “ -0.1543 23.8481 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 32 % -1.7546 26.0861 36.6691 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 33 £ 0.1272 29.3797 33.8574 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 34 . 26.2838 8.8509 7.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 35 2 -2.6247 26.5445 36.4608 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 36 5 -2.0694 27.0340 36.4608 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 37 m 8.4130 37.7404 25.7043 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 38 V 0.3097 38.4306 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 39 6 -2.5315 25.4543 37.0185 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 40 w 8.5346 33.3756 25.1466 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 41 T 0.3367 29.3213 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 42 M 0.0887 38.3481 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 43 G 0.0147 32.4596 34.6234 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 44 b -2.2010 34.2969 36.6691 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 45 9 -2.6613 25.4543 37.0185 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 46 ; 8.6307 14.2083 31.9019 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 47 D 0.3333 31.6670 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 48 L 0.0604 31.4253 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 49 y 8.5350 35.2713 36.0849 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 50 ‘ -0.1484 11.4543 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 51 \ -7.3101 25.9043 47.8074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 52 R 0.1178 34.9552 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 53 < 0.8283 33.3574 33.3392 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 54 4 -2.2760 25.2460 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 55 8 -2.7837 25.5784 37.0185 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 56 0 -2.4965 25.5784 37.0185 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 57 A -0.0140 38.2648 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 58 E 0.1403 30.3867 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 59 B 0.3629 32.8991 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 60 v 8.5388 35.0559 25.1466 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 61 k -2.1332 30.6450 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 62 J 0.3027 32.1830 34.3734 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 63 U 0.0562 34.9371 34.3734 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 64 j -2.0892 21.4448 46.8414 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 65 ( -1.9104 12.8522 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 66 7 -1.9831 24.9383 35.9031 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 67 § -2.2909 29.7880 41.0522 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 68 $ -6.1421 25.1466 47.5392 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 69 € 0.0588 32.2596 34.6234 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 70 / -7.2536 25.1466 47.8074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 71 C 0.5772 30.3457 34.6234 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 72 * -2.1811 23.8663 24.9466 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 73 ” -0.2742 23.8481 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 74 ? -0.0027 23.4828 34.6234 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 75 { -2.0782 14.7395 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 76 } -2.4368 14.7395 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 77 , 26.1263 11.4543 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 78 I 0.2792 24.7300 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 79 ° -8.2132 16.4380 16.4380 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 80 K 0.4585 34.4476 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 81 H 0.2111 30.7457 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 82 q 8.1219 33.9892 36.6426 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 83 & 1.3317 26.8522 33.1574 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 84 ’ 0.0389 11.4543 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 85 [ -2.0341 12.8438 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 86 - 14.8909 24.9383 5.1491 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 87 Y 0.3482 32.1337 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 88 Q 0.0055 32.6414 42.0682 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 89 " 0.2065 20.7160 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 90 ! -1.9385 9.3586 36.6691 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 91 x 8.8048 32.6414 25.1466 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 92 ) -1.8714 12.8522 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 93 = 10.1366 32.6414 14.9395 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 94 + 2.6670 29.3213 29.3213 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 95 X 0.2570 35.2448 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 96 » 10.6973 28.6895 23.2328 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 97 ' 0.3844 8.0373 17.2435 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 98 ¢ -7.0561 24.4306 43.2055 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 99 Z 0.0262 26.2945 33.6074 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 100 > 0.5696 33.3574 33.3392 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 101 ® 0.4353 34.9371 34.3734 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 102 © 0.2958 34.9371 34.3734 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 103 ] -2.3116 12.8438 43.1478 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 104 é -4.7145 30.7275 39.2725 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 105 z 8.8776 25.4543 25.1466 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 106 _ 46.2552 40.0861 5.1491 -Courier_New_Bold.ttf 84 ’ 11.4543 17.2435 107 ¥ 0.4466 31.2700 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 1 t 1.6948 29.3297 34.9636 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 2 h -0.0742 33.1226 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 3 a 10.2599 31.0352 26.4703 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 4 n 10.2149 31.9747 25.7043 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 5 P 2.4532 30.2957 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 6 o 10.2201 29.8457 26.4703 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 7 e 10.3724 30.7275 26.4703 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 8 : 10.6624 8.8509 25.1466 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 9 r 10.2757 30.0874 25.7043 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 10 l -0.0347 27.0256 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 11 i -0.0260 27.0256 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 12 1 -0.6448 24.7300 36.4608 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 13 | -0.0955 5.1491 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 14 N 2.5807 35.4864 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 15 f 0.4287 30.2957 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 16 g 10.2065 32.8149 36.6426 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 17 d -0.0871 33.9892 36.6691 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 18 W 2.4315 38.6293 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 19 s 10.2168 26.2679 26.4703 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 20 c 10.2141 29.6062 26.4703 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 21 u 10.4668 33.1226 25.9126 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 22 3 -0.6963 26.9346 37.0185 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 23 ~ 12.9854 27.6923 12.0861 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 24 # -4.0028 26.8256 41.5515 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 25 O 2.3483 32.6414 34.6234 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 26 ` -2.6475 11.1466 9.3586 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 27 @ 0.0045 21.9941 40.6703 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 28 F 2.2215 31.2852 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 29 S 1.8584 27.1846 34.6234 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 30 p 10.1988 34.2969 36.6426 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 31 “ 1.8358 23.8481 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 32 % -0.1228 26.0861 36.6691 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 33 £ 2.0911 29.3797 33.8574 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 34 . 28.9901 8.8509 7.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 35 2 -0.6204 26.5445 36.4608 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 36 5 0.0389 27.0340 36.4608 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 37 m 10.2250 37.7404 25.7043 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 38 V 2.4769 38.4306 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 39 6 -0.6790 25.4543 37.0185 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 40 w 10.7208 33.3756 25.1466 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 41 T 2.3432 29.3213 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 42 M 2.3054 38.3481 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 43 G 2.2889 32.4596 34.6234 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 44 b -0.1312 34.2969 36.6691 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 45 9 -0.7217 25.4543 37.0185 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 46 ; 10.9437 14.2083 31.9019 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 47 D 2.3379 31.6670 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 48 L 2.2452 31.4253 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 49 y 10.6693 35.2713 36.0849 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 50 ‘ 2.0428 11.4543 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 51 \ -5.2450 25.9043 47.8074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 52 R 2.2914 34.9552 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 53 < 2.5596 33.3574 33.3392 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 54 4 -0.0412 25.2460 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 55 8 -0.5159 25.5784 37.0185 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 56 0 -0.3931 25.5784 37.0185 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 57 A 2.4088 38.2648 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 58 E 2.3065 30.3867 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 59 B 2.4653 32.8991 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 60 v 10.6693 35.0559 25.1466 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 61 k 0.1844 30.6450 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 62 J 2.1820 32.1830 34.3734 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 63 U 2.3699 34.9371 34.3734 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 64 j 0.2043 21.4448 46.8414 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 65 ( 0.0170 12.8522 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 66 7 -0.0213 24.9383 35.9031 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 67 § -0.0742 29.7880 41.0522 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 68 $ -4.4346 25.1466 47.5392 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 69 € 2.1908 32.2596 34.6234 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 70 / -4.8876 25.1466 47.8074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 71 C 2.0457 30.3457 34.6234 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 72 * -0.0514 23.8663 24.9466 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 73 ” 1.9590 23.8481 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 74 ? 2.3543 23.4828 34.6234 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 75 { -0.1655 14.7395 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 76 } -0.3516 14.7395 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 77 , 27.5671 11.4543 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 78 I 2.2118 24.7300 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 79 ° -6.2877 16.4380 16.4380 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 80 K 2.2669 34.4476 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 81 H 2.3643 30.7457 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 82 q 10.2762 33.9892 36.6426 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 83 & 3.2832 26.8522 33.1574 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 84 ’ 2.0425 11.4543 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 85 [ -0.0103 12.8438 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 86 - 16.6856 24.9383 5.1491 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 87 Y 2.2512 32.1337 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 88 Q 2.0008 32.6414 42.0682 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 89 " 1.9301 20.7160 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 90 ! -0.0468 9.3586 36.6691 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 91 x 10.5836 32.6414 25.1466 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 92 ) 0.0055 12.8522 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 93 = 12.1497 32.6414 14.9395 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 94 + 4.6299 29.3213 29.3213 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 95 X 2.2081 35.2448 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 96 » 12.7159 28.6895 23.2328 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 97 ' 2.4019 8.0373 17.2435 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 98 ¢ -4.6634 24.4306 43.2055 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 99 Z 2.0075 26.2945 33.6074 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 100 > 2.5362 33.3574 33.3392 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 101 ® 2.1015 34.9371 34.3734 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 102 © 2.5010 34.9371 34.3734 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 103 ] -0.2184 12.8438 43.1478 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 104 é -2.4297 30.7275 39.2725 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 105 z 10.9146 25.4543 25.1466 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 106 _ 48.3588 40.0861 5.1491 -Courier_New_Bold.ttf 85 [ 12.8438 43.1478 107 ¥ 2.5272 31.2700 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 1 t -15.0632 29.3297 34.9636 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 2 h -16.6476 33.1226 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 3 a -6.7151 31.0352 26.4703 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 4 n -6.5354 31.9747 25.7043 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 5 P -14.2034 30.2957 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 6 o -6.3739 29.8457 26.4703 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 7 e -6.7903 30.7275 26.4703 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 8 : -5.7389 8.8509 25.1466 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 9 r -6.3783 30.0874 25.7043 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 10 l -16.9201 27.0256 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 11 i -16.9788 27.0256 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 12 1 -17.2598 24.7300 36.4608 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 13 | -16.8196 5.1491 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 14 N -14.2842 35.4864 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 15 f -16.6210 30.2957 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 16 g -6.4707 32.8149 36.6426 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 17 d -16.7217 33.9892 36.6691 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 18 W -14.5357 38.6293 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 19 s -6.5552 26.2679 26.4703 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 20 c -6.6106 29.6062 26.4703 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 21 u -5.9828 33.1226 25.9126 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 22 3 -17.3421 26.9346 37.0185 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 23 ~ -3.7428 27.6923 12.0861 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 24 # -20.8536 26.8256 41.5515 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 25 O -14.7083 32.6414 34.6234 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 26 ` -19.5072 11.1466 9.3586 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 27 @ -16.7439 21.9941 40.6703 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 28 F -14.4268 31.2852 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 29 S -14.9421 27.1846 34.6234 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 30 p -6.6641 34.2969 36.6426 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 31 “ -14.5720 23.8481 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 32 % -16.7870 26.0861 36.6691 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 33 £ -14.4651 29.3797 33.8574 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 34 . 11.9763 8.8509 7.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 35 2 -17.4988 26.5445 36.4608 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 36 5 -16.8866 27.0340 36.4608 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 37 m -6.8161 37.7404 25.7043 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 38 V -14.3838 38.4306 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 39 6 -17.1431 25.4543 37.0185 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 40 w -6.0388 33.3756 25.1466 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 41 T -14.3795 29.3213 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 42 M -14.5741 38.3481 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 43 G -14.6342 32.4596 34.6234 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 44 b -16.8068 34.2969 36.6691 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 45 9 -17.0586 25.4543 37.0185 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 46 ; -6.1263 14.2083 31.9019 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 47 D -14.7105 31.6670 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 48 L -14.7906 31.4253 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 49 y -6.2233 35.2713 36.0849 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 50 ‘ -14.7136 11.4543 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 51 \ -21.8164 25.9043 47.8074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 52 R -14.6094 34.9552 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 53 < -14.3098 33.3574 33.3392 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 54 4 -16.5997 25.2460 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 55 8 -17.5031 25.5784 37.0185 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 56 0 -17.4072 25.5784 37.0185 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 57 A -14.6839 38.2648 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 58 E -14.4871 30.3867 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 59 B -14.5552 32.8991 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 60 v -6.2153 35.0559 25.1466 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 61 k -16.7540 30.6450 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 62 J -14.5293 32.1830 34.3734 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 63 U -14.5436 34.9371 34.3734 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 64 j -16.7331 21.4448 46.8414 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 65 ( -16.5070 12.8522 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 66 7 -16.7026 24.9383 35.9031 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 67 § -16.9798 29.7880 41.0522 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 68 $ -20.6345 25.1466 47.5392 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 69 € -15.0108 32.2596 34.6234 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 70 / -22.0972 25.1466 47.8074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 71 C -14.6086 30.3457 34.6234 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 72 * -17.0708 23.8663 24.9466 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 73 ” -14.8111 23.8481 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 74 ? -14.7297 23.4828 34.6234 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 75 { -16.6850 14.7395 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 76 } -16.9408 14.7395 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 77 , 11.1848 11.4543 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 78 I -14.5111 24.7300 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 79 ° -23.1626 16.4380 16.4380 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 80 K -14.6429 34.4476 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 81 H -14.6484 30.7457 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 82 q -6.6744 33.9892 36.6426 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 83 & -13.1762 26.8522 33.1574 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 84 ’ -14.7951 11.4543 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 85 [ -16.6543 12.8438 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 86 - 0.1692 24.9383 5.1491 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 87 Y -14.8753 32.1337 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 88 Q -14.7310 32.6414 42.0682 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 89 " -14.4887 20.7160 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 90 ! -16.6867 9.3586 36.6691 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 91 x -6.2361 32.6414 25.1466 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 92 ) -16.6211 12.8522 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 93 = -4.7844 32.6414 14.9395 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 94 + -12.1760 29.3213 29.3213 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 95 X -14.2489 35.2448 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 96 » -3.9123 28.6895 23.2328 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 97 ' -14.2688 8.0373 17.2435 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 98 ¢ -21.4387 24.4306 43.2055 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 99 Z -14.2651 26.2945 33.6074 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 100 > -14.3098 33.3574 33.3392 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 101 ® -14.4161 34.9371 34.3734 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 102 © -14.3929 34.9371 34.3734 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 103 ] -16.7693 12.8438 43.1478 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 104 é -19.2350 30.7275 39.2725 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 105 z -5.8276 25.4543 25.1466 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 106 _ 31.0688 40.0861 5.1491 -Courier_New_Bold.ttf 86 - 24.9383 5.1491 107 ¥ -14.3568 31.2700 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 1 t -0.4062 29.3297 34.9636 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 2 h -2.2069 33.1226 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 3 a 7.7543 31.0352 26.4703 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 4 n 7.8058 31.9747 25.7043 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 5 P -0.1158 30.2957 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 6 o 7.9305 29.8457 26.4703 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 7 e 7.8832 30.7275 26.4703 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 8 : 8.7626 8.8509 25.1466 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 9 r 7.8596 30.0874 25.7043 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 10 l -2.2100 27.0256 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 11 i -2.2341 27.0256 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 12 1 -2.4349 24.7300 36.4608 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 13 | -1.8637 5.1491 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 14 N -0.0056 35.4864 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 15 f -2.3926 30.2957 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 16 g 7.6938 32.8149 36.6426 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 17 d -2.0075 33.9892 36.6691 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 18 W -0.0699 38.6293 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 19 s 7.6606 26.2679 26.4703 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 20 c 8.1417 29.6062 26.4703 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 21 u 8.3991 33.1226 25.9126 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 22 3 -2.9833 26.9346 37.0185 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 23 ~ 10.7759 27.6923 12.0861 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 24 # -6.5362 26.8256 41.5515 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 25 O -0.0145 32.6414 34.6234 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 26 ` -4.8150 11.1466 9.3586 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 27 @ -2.1025 21.9941 40.6703 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 28 F -0.4090 31.2852 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 29 S -0.1545 27.1846 34.6234 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 30 p 8.0814 34.2969 36.6426 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 31 “ -0.6221 23.8481 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 32 % -2.4056 26.0861 36.6691 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 33 £ -0.0984 29.3797 33.8574 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 34 . 26.1986 8.8509 7.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 35 2 -2.9458 26.5445 36.4608 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 36 5 -2.4723 27.0340 36.4608 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 37 m 7.9462 37.7404 25.7043 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 38 V -0.1873 38.4306 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 39 6 -3.1045 25.4543 37.0185 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 40 w 8.4109 33.3756 25.1466 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 41 T -0.0286 29.3213 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 42 M -0.2002 38.3481 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 43 G -0.0638 32.4596 34.6234 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 44 b -2.1896 34.2969 36.6691 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 45 9 -3.0337 25.4543 37.0185 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 46 ; 8.5579 14.2083 31.9019 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 47 D 0.0643 31.6670 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 48 L -0.1391 31.4253 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 49 y 8.2162 35.2713 36.0849 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 50 ‘ -0.0897 11.4543 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 51 \ -7.2797 25.9043 47.8074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 52 R -0.1097 34.9552 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 53 < 0.1652 33.3574 33.3392 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 54 4 -2.4157 25.2460 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 55 8 -2.5887 25.5784 37.0185 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 56 0 -2.8918 25.5784 37.0185 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 57 A -0.3148 38.2648 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 58 E -0.2109 30.3867 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 59 B -0.1196 32.8991 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 60 v 8.7565 35.0559 25.1466 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 61 k -2.2457 30.6450 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 62 J 0.0029 32.1830 34.3734 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 63 U -0.0644 34.9371 34.3734 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 64 j -2.5488 21.4448 46.8414 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 65 ( -2.0491 12.8522 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 66 7 -2.4874 24.9383 35.9031 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 67 § -2.3411 29.7880 41.0522 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 68 $ -6.3168 25.1466 47.5392 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 69 € -0.4970 32.2596 34.6234 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 70 / -7.3987 25.1466 47.8074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 71 C -0.2527 30.3457 34.6234 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 72 * -2.1729 23.8663 24.9466 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 73 ” -0.3631 23.8481 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 74 ? -0.0409 23.4828 34.6234 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 75 { -2.3994 14.7395 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 76 } -2.3809 14.7395 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 77 , 25.6594 11.4543 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 78 I 0.0978 24.7300 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 79 ° -8.5008 16.4380 16.4380 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 80 K -0.2327 34.4476 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 81 H -0.0070 30.7457 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 82 q 7.9535 33.9892 36.6426 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 83 & 1.0678 26.8522 33.1574 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 84 ’ -0.5986 11.4543 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 85 [ -2.1831 12.8438 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 86 - 14.5009 24.9383 5.1491 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 87 Y -0.1014 32.1337 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 88 Q 0.0158 32.6414 42.0682 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 89 " -0.0547 20.7160 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 90 ! -2.3532 9.3586 36.6691 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 91 x 8.2579 32.6414 25.1466 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 92 ) -2.2046 12.8522 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 93 = 9.9810 32.6414 14.9395 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 94 + 2.1133 29.3213 29.3213 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 95 X -0.0280 35.2448 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 96 » 10.6555 28.6895 23.2328 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 97 ' -0.0919 8.0373 17.2435 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 98 ¢ -7.1018 24.4306 43.2055 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 99 Z -0.0347 26.2945 33.6074 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 100 > 0.2572 33.3574 33.3392 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 101 ® 0.0935 34.9371 34.3734 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 102 © -0.3394 34.9371 34.3734 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 103 ] -2.3077 12.8438 43.1478 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 104 é -4.7048 30.7275 39.2725 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 105 z 8.3274 25.4543 25.1466 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 106 _ 46.1223 40.0861 5.1491 -Courier_New_Bold.ttf 87 Y 32.1337 33.6074 107 ¥ 0.1079 31.2700 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 1 t -0.4668 29.3297 34.9636 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 2 h -1.8762 33.1226 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 3 a 8.2401 31.0352 26.4703 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 4 n 8.1757 31.9747 25.7043 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 5 P 0.1140 30.2957 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 6 o 8.3658 29.8457 26.4703 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 7 e 8.2273 30.7275 26.4703 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 8 : 8.7818 8.8509 25.1466 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 9 r 8.3598 30.0874 25.7043 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 10 l -2.1341 27.0256 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 11 i -2.1903 27.0256 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 12 1 -2.5681 24.7300 36.4608 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 13 | -1.8648 5.1491 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 14 N 0.3455 35.4864 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 15 f -2.1962 30.2957 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 16 g 7.8450 32.8149 36.6426 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 17 d -2.0656 33.9892 36.6691 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 18 W 0.0404 38.6293 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 19 s 8.0900 26.2679 26.4703 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 20 c 8.1142 29.6062 26.4703 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 21 u 8.5751 33.1226 25.9126 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 22 3 -2.4305 26.9346 37.0185 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 23 ~ 11.0947 27.6923 12.0861 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 24 # -5.9006 26.8256 41.5515 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 25 O -0.2062 32.6414 34.6234 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 26 ` -4.6820 11.1466 9.3586 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 27 @ -2.4409 21.9941 40.6703 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 28 F 0.3997 31.2852 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 29 S -0.0930 27.1846 34.6234 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 30 p 8.4098 34.2969 36.6426 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 31 “ -0.0935 23.8481 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 32 % -2.3794 26.0861 36.6691 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 33 £ -0.1009 29.3797 33.8574 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 34 . 26.5410 8.8509 7.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 35 2 -2.7431 26.5445 36.4608 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 36 5 -2.2867 27.0340 36.4608 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 37 m 7.9716 37.7404 25.7043 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 38 V 0.3997 38.4306 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 39 6 -3.0172 25.4543 37.0185 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 40 w 8.4502 33.3756 25.1466 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 41 T 0.3669 29.3213 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 42 M 0.2968 38.3481 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 43 G 0.2223 32.4596 34.6234 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 44 b -2.2687 34.2969 36.6691 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 45 9 -2.3202 25.4543 37.0185 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 46 ; 8.6905 14.2083 31.9019 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 47 D 0.3571 31.6670 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 48 L -0.0735 31.4253 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 49 y 8.6399 35.2713 36.0849 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 50 ‘ -0.1760 11.4543 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 51 \ -7.1303 25.9043 47.8074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 52 R 0.2263 34.9552 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 53 < 0.3458 33.3574 33.3392 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 54 4 -1.7616 25.2460 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 55 8 -2.5418 25.5784 37.0185 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 56 0 -2.4661 25.5784 37.0185 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 57 A 0.3984 38.2648 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 58 E 0.1850 30.3867 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 59 B 0.1600 32.8991 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 60 v 8.8078 35.0559 25.1466 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 61 k -2.0971 30.6450 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 62 J 0.3468 32.1830 34.3734 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 63 U 0.0979 34.9371 34.3734 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 64 j -2.2917 21.4448 46.8414 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 65 ( -2.0388 12.8522 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 66 7 -2.2913 24.9383 35.9031 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 67 § -2.1171 29.7880 41.0522 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 68 $ -6.2249 25.1466 47.5392 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 69 € -0.0696 32.2596 34.6234 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 70 / -7.2931 25.1466 47.8074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 71 C -0.0083 30.3457 34.6234 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 72 * -1.8918 23.8663 24.9466 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 73 ” -0.1015 23.8481 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 74 ? -0.1686 23.4828 34.6234 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 75 { -2.1156 14.7395 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 76 } -2.1707 14.7395 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 77 , 25.9534 11.4543 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 78 I 0.5694 24.7300 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 79 ° -8.6594 16.4380 16.4380 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 80 K 0.1786 34.4476 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 81 H 0.2191 30.7457 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 82 q 8.3088 33.9892 36.6426 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 83 & 1.8826 26.8522 33.1574 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 84 ’ -0.1319 11.4543 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 85 [ -1.9243 12.8438 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 86 - 14.8155 24.9383 5.1491 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 87 Y 0.2270 32.1337 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 88 Q 0.2795 32.6414 42.0682 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 89 " 0.2922 20.7160 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 90 ! -1.7898 9.3586 36.6691 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 91 x 8.8395 32.6414 25.1466 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 92 ) -2.1764 12.8522 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 93 = 10.3023 32.6414 14.9395 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 94 + 2.6163 29.3213 29.3213 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 95 X 0.2062 35.2448 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 96 » 10.6993 28.6895 23.2328 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 97 ' 0.3274 8.0373 17.2435 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 98 ¢ -6.7402 24.4306 43.2055 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 99 Z 0.6158 26.2945 33.6074 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 100 > 0.5706 33.3574 33.3392 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 101 ® 0.2830 34.9371 34.3734 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 102 © 0.3567 34.9371 34.3734 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 103 ] -2.0039 12.8438 43.1478 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 104 é -4.8122 30.7275 39.2725 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 105 z 8.5834 25.4543 25.1466 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 106 _ 46.3003 40.0861 5.1491 -Courier_New_Bold.ttf 88 Q 32.6414 42.0682 107 ¥ 0.3422 31.2700 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 1 t -0.5006 29.3297 34.9636 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 2 h -2.3411 33.1226 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 3 a 8.2770 31.0352 26.4703 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 4 n 7.8859 31.9747 25.7043 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 5 P 0.0237 30.2957 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 6 o 7.7901 29.8457 26.4703 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 7 e 7.6519 30.7275 26.4703 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 8 : 8.2078 8.8509 25.1466 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 9 r 8.0472 30.0874 25.7043 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 10 l -2.2109 27.0256 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 11 i -2.2044 27.0256 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 12 1 -2.6281 24.7300 36.4608 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 13 | -2.3165 5.1491 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 14 N -0.2530 35.4864 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 15 f -2.6956 30.2957 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 16 g 7.7734 32.8149 36.6426 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 17 d -2.3758 33.9892 36.6691 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 18 W -0.0516 38.6293 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 19 s 8.0800 26.2679 26.4703 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 20 c 7.9485 29.6062 26.4703 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 21 u 8.4933 33.1226 25.9126 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 22 3 -2.7207 26.9346 37.0185 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 23 ~ 10.8990 27.6923 12.0861 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 24 # -6.5718 26.8256 41.5515 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 25 O -0.2555 32.6414 34.6234 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 26 ` -4.7248 11.1466 9.3586 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 27 @ -2.4658 21.9941 40.6703 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 28 F 0.0083 31.2852 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 29 S -0.5805 27.1846 34.6234 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 30 p 8.0741 34.2969 36.6426 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 31 “ -0.1940 23.8481 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 32 % -2.2383 26.0861 36.6691 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 33 £ 0.0155 29.3797 33.8574 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 34 . 26.6640 8.8509 7.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 35 2 -2.6866 26.5445 36.4608 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 36 5 -2.0923 27.0340 36.4608 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 37 m 7.9188 37.7404 25.7043 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 38 V 0.0255 38.4306 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 39 6 -2.8247 25.4543 37.0185 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 40 w 8.3737 33.3756 25.1466 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 41 T 0.1896 29.3213 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 42 M -0.1444 38.3481 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 43 G -0.3274 32.4596 34.6234 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 44 b -2.1827 34.2969 36.6691 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 45 9 -2.6602 25.4543 37.0185 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 46 ; 8.3069 14.2083 31.9019 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 47 D 0.1516 31.6670 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 48 L -0.0357 31.4253 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 49 y 8.5804 35.2713 36.0849 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 50 ‘ -0.2834 11.4543 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 51 \ -7.2131 25.9043 47.8074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 52 R 0.2480 34.9552 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 53 < 0.1069 33.3574 33.3392 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 54 4 -2.5717 25.2460 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 55 8 -2.8996 25.5784 37.0185 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 56 0 -3.0067 25.5784 37.0185 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 57 A 0.2654 38.2648 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 58 E 0.1598 30.3867 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 59 B -0.0000 32.8991 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 60 v 8.7221 35.0559 25.1466 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 61 k -2.3002 30.6450 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 62 J 0.0060 32.1830 34.3734 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 63 U 0.0422 34.9371 34.3734 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 64 j -2.0844 21.4448 46.8414 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 65 ( -2.4217 12.8522 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 66 7 -2.3086 24.9383 35.9031 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 67 § -2.3533 29.7880 41.0522 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 68 $ -6.1075 25.1466 47.5392 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 69 € -0.2041 32.2596 34.6234 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 70 / -7.5837 25.1466 47.8074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 71 C -0.4032 30.3457 34.6234 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 72 * -2.3556 23.8663 24.9466 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 73 ” -0.1811 23.8481 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 74 ? -0.2793 23.4828 34.6234 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 75 { -2.5509 14.7395 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 76 } -2.1645 14.7395 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 77 , 25.5517 11.4543 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 78 I -0.2826 24.7300 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 79 ° -9.0096 16.4380 16.4380 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 80 K -0.1126 34.4476 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 81 H 0.2428 30.7457 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 82 q 7.9475 33.9892 36.6426 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 83 & 1.3499 26.8522 33.1574 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 84 ’ -0.4466 11.4543 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 85 [ -2.3612 12.8438 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 86 - 14.5780 24.9383 5.1491 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 87 Y 0.0727 32.1337 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 88 Q -0.4839 32.6414 42.0682 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 89 " 0.3557 20.7160 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 90 ! -2.1586 9.3586 36.6691 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 91 x 8.3919 32.6414 25.1466 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 92 ) -2.0876 12.8522 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 93 = 9.5028 32.6414 14.9395 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 94 + 2.3695 29.3213 29.3213 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 95 X -0.2768 35.2448 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 96 » 10.1746 28.6895 23.2328 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 97 ' 0.1274 8.0373 17.2435 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 98 ¢ -6.9777 24.4306 43.2055 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 99 Z -0.2080 26.2945 33.6074 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 100 > 0.5047 33.3574 33.3392 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 101 ® -0.1150 34.9371 34.3734 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 102 © -0.3661 34.9371 34.3734 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 103 ] -2.3761 12.8438 43.1478 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 104 é -4.8249 30.7275 39.2725 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 105 z 8.3444 25.4543 25.1466 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 106 _ 45.9358 40.0861 5.1491 -Courier_New_Bold.ttf 89 " 20.7160 17.2435 107 ¥ 0.3294 31.2700 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 1 t 1.6157 29.3297 34.9636 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 2 h 0.0260 33.1226 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 3 a 10.2135 31.0352 26.4703 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 4 n 10.2410 31.9747 25.7043 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 5 P 2.2699 30.2957 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 6 o 10.6546 29.8457 26.4703 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 7 e 10.3239 30.7275 26.4703 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 8 : 10.6513 8.8509 25.1466 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 9 r 10.0988 30.0874 25.7043 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 10 l -0.0027 27.0256 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 11 i -0.0385 27.0256 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 12 1 -0.1728 24.7300 36.4608 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 13 | -0.2099 5.1491 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 14 N 2.3629 35.4864 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 15 f -0.0353 30.2957 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 16 g 10.2033 32.8149 36.6426 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 17 d 0.3276 33.9892 36.6691 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 18 W 2.1932 38.6293 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 19 s 10.1992 26.2679 26.4703 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 20 c 10.3871 29.6062 26.4703 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 21 u 10.8621 33.1226 25.9126 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 22 3 -0.7964 26.9346 37.0185 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 23 ~ 13.2961 27.6923 12.0861 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 24 # -4.1344 26.8256 41.5515 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 25 O 1.9845 32.6414 34.6234 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 26 ` -2.7545 11.1466 9.3586 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 27 @ -0.1484 21.9941 40.6703 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 28 F 2.1733 31.2852 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 29 S 2.0151 27.1846 34.6234 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 30 p 10.5493 34.2969 36.6426 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 31 “ 1.9261 23.8481 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 32 % 0.0482 26.0861 36.6691 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 33 £ 1.9682 29.3797 33.8574 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 34 . 28.9040 8.8509 7.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 35 2 -0.3321 26.5445 36.4608 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 36 5 -0.1382 27.0340 36.4608 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 37 m 10.1033 37.7404 25.7043 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 38 V 2.3411 38.4306 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 39 6 -0.4710 25.4543 37.0185 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 40 w 10.7565 33.3756 25.1466 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 41 T 2.6403 29.3213 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 42 M 2.3170 38.3481 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 43 G 2.0358 32.4596 34.6234 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 44 b -0.2568 34.2969 36.6691 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 45 9 -0.5720 25.4543 37.0185 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 46 ; 11.0812 14.2083 31.9019 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 47 D 2.0991 31.6670 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 48 L 2.3104 31.4253 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 49 y 10.6795 35.2713 36.0849 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 50 ‘ 1.9196 11.4543 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 51 \ -5.1495 25.9043 47.8074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 52 R 2.3443 34.9552 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 53 < 2.3312 33.3574 33.3392 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 54 4 -0.0839 25.2460 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 55 8 -0.3652 25.5784 37.0185 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 56 0 -0.6688 25.5784 37.0185 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 57 A 2.2957 38.2648 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 58 E 2.1086 30.3867 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 59 B 2.3081 32.8991 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 60 v 10.5526 35.0559 25.1466 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 61 k -0.0839 30.6450 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 62 J 2.6739 32.1830 34.3734 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 63 U 2.3516 34.9371 34.3734 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 64 j 0.2414 21.4448 46.8414 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 65 ( -0.0603 12.8522 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 66 7 0.3831 24.9383 35.9031 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 67 § 0.0927 29.7880 41.0522 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 68 $ -4.1575 25.1466 47.5392 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 69 € 1.8354 32.2596 34.6234 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 70 / -5.2676 25.1466 47.8074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 71 C 1.9016 30.3457 34.6234 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 72 * -0.1951 23.8663 24.9466 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 73 ” 2.0215 23.8481 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 74 ? 2.4119 23.4828 34.6234 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 75 { 0.2212 14.7395 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 76 } -0.0129 14.7395 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 77 , 28.3221 11.4543 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 78 I 2.1794 24.7300 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 79 ° -6.1815 16.4380 16.4380 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 80 K 2.1155 34.4476 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 81 H 2.3304 30.7457 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 82 q 10.2915 33.9892 36.6426 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 83 & 3.3956 26.8522 33.1574 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 84 ’ 2.1128 11.4543 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 85 [ 0.0071 12.8438 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 86 - 16.4792 24.9383 5.1491 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 87 Y 2.3699 32.1337 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 88 Q 1.8806 32.6414 42.0682 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 89 " 2.3314 20.7160 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 90 ! -0.1604 9.3586 36.6691 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 91 x 10.7592 32.6414 25.1466 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 92 ) 0.2470 12.8522 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 93 = 12.0497 32.6414 14.9395 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 94 + 4.6549 29.3213 29.3213 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 95 X 2.4322 35.2448 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 96 » 12.5867 28.6895 23.2328 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 97 ' 2.2874 8.0373 17.2435 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 98 ¢ -4.4051 24.4306 43.2055 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 99 Z 2.2096 26.2945 33.6074 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 100 > 2.6236 33.3574 33.3392 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 101 ® 2.4191 34.9371 34.3734 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 102 © 2.2615 34.9371 34.3734 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 103 ] -0.2595 12.8438 43.1478 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 104 é -2.7243 30.7275 39.2725 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 105 z 10.7148 25.4543 25.1466 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 106 _ 47.9978 40.0861 5.1491 -Courier_New_Bold.ttf 90 ! 9.3586 36.6691 107 ¥ 2.1156 31.2700 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 1 t -9.0055 29.3297 34.9636 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 2 h -10.8449 33.1226 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 3 a -0.5577 31.0352 26.4703 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 4 n -0.4381 31.9747 25.7043 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 5 P -8.4728 30.2957 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 6 o -0.5031 29.8457 26.4703 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 7 e -0.7718 30.7275 26.4703 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 8 : 0.1966 8.8509 25.1466 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 9 r -0.6787 30.0874 25.7043 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 10 l -10.8653 27.0256 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 11 i -11.0118 27.0256 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 12 1 -11.3012 24.7300 36.4608 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 13 | -11.2306 5.1491 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 14 N -8.2939 35.4864 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 15 f -11.1148 30.2957 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 16 g -0.5531 32.8149 36.6426 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 17 d -10.8974 33.9892 36.6691 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 18 W -8.5933 38.6293 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 19 s -0.7266 26.2679 26.4703 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 20 c -0.6641 29.6062 26.4703 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 21 u 0.1785 33.1226 25.9126 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 22 3 -11.2730 26.9346 37.0185 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 23 ~ 2.4409 27.6923 12.0861 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 24 # -15.2911 26.8256 41.5515 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 25 O -8.5446 32.6414 34.6234 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 26 ` -13.2042 11.1466 9.3586 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 27 @ -11.0402 21.9941 40.6703 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 28 F -8.7856 31.2852 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 29 S -8.3923 27.1846 34.6234 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 30 p -0.5224 34.2969 36.6426 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 31 “ -8.6283 23.8481 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 32 % -10.6481 26.0861 36.6691 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 33 £ -8.8766 29.3797 33.8574 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 34 . 18.2514 8.8509 7.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 35 2 -10.9462 26.5445 36.4608 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 36 5 -11.0364 27.0340 36.4608 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 37 m -0.8289 37.7404 25.7043 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 38 V -8.5024 38.4306 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 39 6 -11.3114 25.4543 37.0185 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 40 w 0.0597 33.3756 25.1466 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 41 T -8.6221 29.3213 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 42 M -8.7174 38.3481 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 43 G -8.6259 32.4596 34.6234 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 44 b -10.9223 34.2969 36.6691 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 45 9 -11.3465 25.4543 37.0185 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 46 ; -0.1622 14.2083 31.9019 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 47 D -8.2087 31.6670 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 48 L -8.6766 31.4253 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 49 y -0.0871 35.2713 36.0849 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 50 ‘ -8.7859 11.4543 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 51 \ -16.0632 25.9043 47.8074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 52 R -8.4937 34.9552 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 53 < -8.3118 33.3574 33.3392 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 54 4 -10.8212 25.2460 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 55 8 -11.0473 25.5784 37.0185 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 56 0 -11.0912 25.5784 37.0185 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 57 A -8.3796 38.2648 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 58 E -8.5868 30.3867 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 59 B -8.7468 32.8991 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 60 v 0.1734 35.0559 25.1466 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 61 k -10.5172 30.6450 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 62 J -8.2708 32.1830 34.3734 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 63 U -8.5196 34.9371 34.3734 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 64 j -10.8626 21.4448 46.8414 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 65 ( -10.9048 12.8522 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 66 7 -10.9205 24.9383 35.9031 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 67 § -10.7691 29.7880 41.0522 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 68 $ -15.1358 25.1466 47.5392 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 69 € -8.7136 32.2596 34.6234 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 70 / -15.7994 25.1466 47.8074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 71 C -8.8793 30.3457 34.6234 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 72 * -10.7522 23.8663 24.9466 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 73 ” -8.8049 23.8481 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 74 ? -8.7429 23.4828 34.6234 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 75 { -10.8251 14.7395 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 76 } -10.8338 14.7395 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 77 , 17.1445 11.4543 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 78 I -8.5836 24.7300 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 79 ° -16.9520 16.4380 16.4380 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 80 K -8.3979 34.4476 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 81 H -8.2260 30.7457 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 82 q -0.7273 33.9892 36.6426 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 83 & -7.3194 26.8522 33.1574 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 84 ’ -8.8391 11.4543 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 85 [ -10.8349 12.8438 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 86 - 6.1494 24.9383 5.1491 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 87 Y -8.5602 32.1337 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 88 Q -8.4016 32.6414 42.0682 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 89 " -8.6442 20.7160 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 90 ! -10.5811 9.3586 36.6691 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 91 x -0.1374 32.6414 25.1466 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 92 ) -10.5961 12.8522 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 93 = 1.3663 32.6414 14.9395 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 94 + -5.8730 29.3213 29.3213 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 95 X -8.4965 35.2448 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 96 » 1.7905 28.6895 23.2328 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 97 ' -8.1152 8.0373 17.2435 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 98 ¢ -15.5783 24.4306 43.2055 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 99 Z -8.4453 26.2945 33.6074 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 100 > -8.3969 33.3574 33.3392 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 101 ® -8.3764 34.9371 34.3734 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 102 © -8.3839 34.9371 34.3734 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 103 ] -11.0192 12.8438 43.1478 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 104 é -13.1698 30.7275 39.2725 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 105 z -0.1714 25.4543 25.1466 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 106 _ 37.5342 40.0861 5.1491 -Courier_New_Bold.ttf 91 x 32.6414 25.1466 107 ¥ -8.5766 31.2700 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 1 t 1.6471 29.3297 34.9636 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 2 h 0.2425 33.1226 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 3 a 10.1533 31.0352 26.4703 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 4 n 10.2317 31.9747 25.7043 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 5 P 2.3976 30.2957 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 6 o 10.0759 29.8457 26.4703 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 7 e 10.0044 30.7275 26.4703 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 8 : 10.8344 8.8509 25.1466 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 9 r 10.3174 30.0874 25.7043 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 10 l 0.2088 27.0256 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 11 i -0.0210 27.0256 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 12 1 -0.5247 24.7300 36.4608 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 13 | -0.0231 5.1491 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 14 N 2.2215 35.4864 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 15 f 0.1046 30.2957 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 16 g 10.0449 32.8149 36.6426 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 17 d 0.2586 33.9892 36.6691 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 18 W 2.3582 38.6293 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 19 s 10.0588 26.2679 26.4703 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 20 c 10.2149 29.6062 26.4703 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 21 u 10.4371 33.1226 25.9126 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 22 3 -0.5934 26.9346 37.0185 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 23 ~ 13.1331 27.6923 12.0861 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 24 # -4.3271 26.8256 41.5515 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 25 O 2.1100 32.6414 34.6234 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 26 ` -2.5848 11.1466 9.3586 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 27 @ 0.0583 21.9941 40.6703 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 28 F 2.0946 31.2852 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 29 S 2.1860 27.1846 34.6234 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 30 p 10.3877 34.2969 36.6426 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 31 “ 1.8659 23.8481 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 32 % -0.1097 26.0861 36.6691 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 33 £ 1.9457 29.3797 33.8574 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 34 . 29.0644 8.8509 7.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 35 2 -0.4446 26.5445 36.4608 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 36 5 0.0686 27.0340 36.4608 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 37 m 10.3029 37.7404 25.7043 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 38 V 2.1473 38.4306 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 39 6 -0.3709 25.4543 37.0185 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 40 w 10.7495 33.3756 25.1466 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 41 T 2.2215 29.3213 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 42 M 2.1243 38.3481 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 43 G 2.0702 32.4596 34.6234 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 44 b -0.0500 34.2969 36.6691 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 45 9 -0.5545 25.4543 37.0185 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 46 ; 10.7922 14.2083 31.9019 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 47 D 2.2540 31.6670 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 48 L 2.2837 31.4253 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 49 y 10.7388 35.2713 36.0849 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 50 ‘ 1.8088 11.4543 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 51 \ -5.4044 25.9043 47.8074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 52 R 2.4828 34.9552 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 53 < 2.6084 33.3574 33.3392 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 54 4 -0.2285 25.2460 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 55 8 -0.8481 25.5784 37.0185 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 56 0 -0.4733 25.5784 37.0185 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 57 A 2.4695 38.2648 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 58 E 2.2801 30.3867 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 59 B 2.4741 32.8991 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 60 v 10.8440 35.0559 25.1466 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 61 k -0.1900 30.6450 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 62 J 2.2540 32.1830 34.3734 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 63 U 2.5395 34.9371 34.3734 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 64 j 0.0283 21.4448 46.8414 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 65 ( 0.0714 12.8522 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 66 7 -0.0070 24.9383 35.9031 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 67 § 0.0129 29.7880 41.0522 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 68 $ -4.1102 25.1466 47.5392 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 69 € 1.9540 32.2596 34.6234 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 70 / -5.0878 25.1466 47.8074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 71 C 1.9747 30.3457 34.6234 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 72 * -0.2174 23.8663 24.9466 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 73 ” 2.3283 23.8481 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 74 ? 2.0516 23.4828 34.6234 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 75 { -0.0083 14.7395 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 76 } -0.3749 14.7395 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 77 , 28.0612 11.4543 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 78 I 2.5597 24.7300 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 79 ° -6.4100 16.4380 16.4380 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 80 K 2.1160 34.4476 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 81 H 2.4699 30.7457 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 82 q 10.2234 33.9892 36.6426 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 83 & 3.3431 26.8522 33.1574 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 84 ’ 1.8946 11.4543 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 85 [ -0.1714 12.8438 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 86 - 16.6544 24.9383 5.1491 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 87 Y 2.3699 32.1337 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 88 Q 1.9431 32.6414 42.0682 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 89 " 2.0088 20.7160 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 90 ! 0.0129 9.3586 36.6691 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 91 x 10.6780 32.6414 25.1466 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 92 ) 0.0640 12.8522 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 93 = 12.2583 32.6414 14.9395 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 94 + 4.5268 29.3213 29.3213 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 95 X 2.2215 35.2448 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 96 » 12.5160 28.6895 23.2328 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 97 ' 2.0964 8.0373 17.2435 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 98 ¢ -4.7477 24.4306 43.2055 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 99 Z 2.3114 26.2945 33.6074 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 100 > 2.5286 33.3574 33.3392 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 101 ® 2.3374 34.9371 34.3734 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 102 © 2.4570 34.9371 34.3734 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 103 ] -0.2613 12.8438 43.1478 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 104 é -2.4690 30.7275 39.2725 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 105 z 10.9173 25.4543 25.1466 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 106 _ 48.1521 40.0861 5.1491 -Courier_New_Bold.ttf 92 ) 12.8522 43.1478 107 ¥ 2.3416 31.2700 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 1 t -10.4168 29.3297 34.9636 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 2 h -12.1154 33.1226 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 3 a -1.9625 31.0352 26.4703 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 4 n -1.7036 31.9747 25.7043 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 5 P -9.6529 30.2957 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 6 o -1.8272 29.8457 26.4703 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 7 e -1.9268 30.7275 26.4703 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 8 : -1.2663 8.8509 25.1466 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 9 r -1.9727 30.0874 25.7043 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 10 l -11.9865 27.0256 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 11 i -12.1036 27.0256 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 12 1 -12.5832 24.7300 36.4608 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 13 | -11.8007 5.1491 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 14 N -9.7785 35.4864 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 15 f -11.9194 30.2957 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 16 g -1.7953 32.8149 36.6426 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 17 d -12.0739 33.9892 36.6691 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 18 W -9.9890 38.6293 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 19 s -1.5241 26.2679 26.4703 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 20 c -2.1429 29.6062 26.4703 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 21 u -1.6476 33.1226 25.9126 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 22 3 -12.7900 26.9346 37.0185 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 23 ~ 1.4204 27.6923 12.0861 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 24 # -16.4524 26.8256 41.5515 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 25 O -10.1184 32.6414 34.6234 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 26 ` -14.3333 11.1466 9.3586 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 27 @ -12.0353 21.9941 40.6703 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 28 F -9.6043 31.2852 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 29 S -9.7717 27.1846 34.6234 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 30 p -2.2373 34.2969 36.6426 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 31 “ -9.6749 23.8481 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 32 % -11.8842 26.0861 36.6691 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 33 £ -9.9256 29.3797 33.8574 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 34 . 16.5404 8.8509 7.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 35 2 -12.8219 26.5445 36.4608 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 36 5 -12.1126 27.0340 36.4608 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 37 m -1.9032 37.7404 25.7043 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 38 V -9.6686 38.4306 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 39 6 -12.6843 25.4543 37.0185 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 40 w -1.4456 33.3756 25.1466 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 41 T -9.5912 29.3213 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 42 M -9.6830 38.3481 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 43 G -9.8140 32.4596 34.6234 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 44 b -12.4111 34.2969 36.6691 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 45 9 -12.6944 25.4543 37.0185 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 46 ; -1.5895 14.2083 31.9019 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 47 D -9.7614 31.6670 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 48 L -10.0156 31.4253 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 49 y -1.4143 35.2713 36.0849 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 50 ‘ -9.9491 11.4543 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 51 \ -17.2245 25.9043 47.8074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 52 R -9.8837 34.9552 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 53 < -9.4134 33.3574 33.3392 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 54 4 -12.1443 25.2460 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 55 8 -12.5735 25.5784 37.0185 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 56 0 -12.3622 25.5784 37.0185 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 57 A -9.8912 38.2648 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 58 E -9.8397 30.3867 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 59 B -9.7218 32.8991 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 60 v -1.3632 35.0559 25.1466 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 61 k -12.0011 30.6450 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 62 J -10.0293 32.1830 34.3734 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 63 U -9.8967 34.9371 34.3734 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 64 j -12.3536 21.4448 46.8414 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 65 ( -12.1067 12.8522 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 66 7 -12.5167 24.9383 35.9031 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 67 § -12.0065 29.7880 41.0522 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 68 $ -16.2090 25.1466 47.5392 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 69 € -10.0674 32.2596 34.6234 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 70 / -17.1968 25.1466 47.8074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 71 C -10.2685 30.3457 34.6234 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 72 * -11.8199 23.8663 24.9466 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 73 ” -10.3590 23.8481 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 74 ? -9.9885 23.4828 34.6234 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 75 { -12.0905 14.7395 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 76 } -11.9483 14.7395 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 77 , 15.6491 11.4543 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 78 I -9.7341 24.7300 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 79 ° -18.2071 16.4380 16.4380 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 80 K -10.2284 34.4476 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 81 H -9.6176 30.7457 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 82 q -1.9376 33.9892 36.6426 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 83 & -8.6107 26.8522 33.1574 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 84 ’ -10.5605 11.4543 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 85 [ -11.8416 12.8438 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 86 - 4.7870 24.9383 5.1491 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 87 Y -9.7016 32.1337 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 88 Q -9.9767 32.6414 42.0682 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 89 " -10.1044 20.7160 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 90 ! -11.7800 9.3586 36.6691 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 91 x -1.2607 32.6414 25.1466 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 92 ) -12.1353 12.8522 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 93 = 0.0981 32.6414 14.9395 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 94 + -7.4604 29.3213 29.3213 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 95 X -9.8299 35.2448 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 96 » 0.5165 28.6895 23.2328 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 97 ' -10.0293 8.0373 17.2435 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 98 ¢ -16.7614 24.4306 43.2055 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 99 Z -9.9653 26.2945 33.6074 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 100 > -9.5877 33.3574 33.3392 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 101 ® -9.7754 34.9371 34.3734 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 102 © -9.6526 34.9371 34.3734 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 103 ] -12.2583 12.8438 43.1478 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 104 é -14.8434 30.7275 39.2725 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 105 z -1.1322 25.4543 25.1466 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 106 _ 35.8311 40.0861 5.1491 -Courier_New_Bold.ttf 93 = 32.6414 14.9395 107 ¥ -9.8966 31.2700 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 1 t -2.8137 29.3297 34.9636 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 2 h -4.5840 33.1226 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 3 a 5.4504 31.0352 26.4703 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 4 n 5.8507 31.9747 25.7043 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 5 P -2.1784 30.2957 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 6 o 5.6078 29.8457 26.4703 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 7 e 5.6389 30.7275 26.4703 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 8 : 6.0946 8.8509 25.1466 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 9 r 5.5178 30.0874 25.7043 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 10 l -4.7592 27.0256 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 11 i -4.5195 27.0256 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 12 1 -5.2738 24.7300 36.4608 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 13 | -4.2414 5.1491 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 14 N -2.3722 35.4864 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 15 f -4.7639 30.2957 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 16 g 5.2142 32.8149 36.6426 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 17 d -4.8611 33.9892 36.6691 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 18 W -2.4806 38.6293 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 19 s 5.4781 26.2679 26.4703 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 20 c 5.7723 29.6062 26.4703 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 21 u 6.0089 33.1226 25.9126 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 22 3 -5.1745 26.9346 37.0185 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 23 ~ 8.3418 27.6923 12.0861 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 24 # -8.9634 26.8256 41.5515 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 25 O -2.6589 32.6414 34.6234 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 26 ` -7.3496 11.1466 9.3586 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 27 @ -4.6322 21.9941 40.6703 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 28 F -2.3379 31.2852 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 29 S -2.6904 27.1846 34.6234 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 30 p 5.5304 34.2969 36.6426 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 31 “ -2.2024 23.8481 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 32 % -4.4910 26.0861 36.6691 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 33 £ -2.6571 29.3797 33.8574 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 34 . 23.9680 8.8509 7.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 35 2 -5.3855 26.5445 36.4608 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 36 5 -5.1906 27.0340 36.4608 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 37 m 5.4767 37.7404 25.7043 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 38 V -2.4362 38.4306 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 39 6 -5.3915 25.4543 37.0185 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 40 w 5.9634 33.3756 25.1466 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 41 T -2.4538 29.3213 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 42 M -2.4645 38.3481 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 43 G -2.5903 32.4596 34.6234 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 44 b -4.5512 34.2969 36.6691 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 45 9 -5.0505 25.4543 37.0185 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 46 ; 6.0015 14.2083 31.9019 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 47 D -2.4475 31.6670 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 48 L -2.5265 31.4253 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 49 y 6.1840 35.2713 36.0849 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 50 ‘ -2.8724 11.4543 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 51 \ -9.8398 25.9043 47.8074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 52 R -2.3620 34.9552 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 53 < -2.2562 33.3574 33.3392 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 54 4 -4.9079 25.2460 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 55 8 -5.3124 25.5784 37.0185 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 56 0 -5.4129 25.5784 37.0185 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 57 A -2.3879 38.2648 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 58 E -2.3845 30.3867 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 59 B -2.3107 32.8991 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 60 v 5.9111 35.0559 25.1466 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 61 k -4.5171 30.6450 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 62 J -2.2878 32.1830 34.3734 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 63 U -2.2114 34.9371 34.3734 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 64 j -4.6002 21.4448 46.8414 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 65 ( -4.9799 12.8522 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 66 7 -4.8395 24.9383 35.9031 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 67 § -4.5983 29.7880 41.0522 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 68 $ -8.7740 25.1466 47.5392 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 69 € -2.8188 32.2596 34.6234 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 70 / -10.2802 25.1466 47.8074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 71 C -2.5509 30.3457 34.6234 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 72 * -4.7105 23.8663 24.9466 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 73 ” -2.9703 23.8481 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 74 ? -2.7440 23.4828 34.6234 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 75 { -4.6808 14.7395 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 76 } -4.9395 14.7395 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 77 , 23.4322 11.4543 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 78 I -2.2785 24.7300 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 79 ° -10.6296 16.4380 16.4380 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 80 K -2.4260 34.4476 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 81 H -2.3967 30.7457 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 82 q 5.3742 33.9892 36.6426 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 83 & -1.0601 26.8522 33.1574 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 84 ’ -2.6066 11.4543 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 85 [ -4.5748 12.8438 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 86 - 11.8090 24.9383 5.1491 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 87 Y -2.4305 32.1337 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 88 Q -2.5235 32.6414 42.0682 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 89 " -2.5656 20.7160 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 90 ! -4.4264 9.3586 36.6691 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 91 x 5.8946 32.6414 25.1466 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 92 ) -4.8936 12.8522 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 93 = 7.5058 32.6414 14.9395 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 94 + 0.0106 29.3213 29.3213 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 95 X -2.2980 35.2448 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 96 » 8.0322 28.6895 23.2328 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 97 ' -2.1623 8.0373 17.2435 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 98 ¢ -9.4126 24.4306 43.2055 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 99 Z -2.4041 26.2945 33.6074 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 100 > -1.8479 33.3574 33.3392 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 101 ® -2.4830 34.9371 34.3734 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 102 © -2.3180 34.9371 34.3734 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 103 ] -4.5546 12.8438 43.1478 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 104 é -7.3254 30.7275 39.2725 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 105 z 6.1555 25.4543 25.1466 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 106 _ 43.5329 40.0861 5.1491 -Courier_New_Bold.ttf 94 + 29.3213 29.3213 107 ¥ -2.0571 31.2700 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 1 t -0.3492 29.3297 34.9636 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 2 h -2.2443 33.1226 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 3 a 7.8508 31.0352 26.4703 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 4 n 7.6503 31.9747 25.7043 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 5 P -0.1096 30.2957 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 6 o 7.6085 29.8457 26.4703 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 7 e 7.9729 30.7275 26.4703 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 8 : 8.7034 8.8509 25.1466 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 9 r 7.9703 30.0874 25.7043 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 10 l -2.2150 27.0256 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 11 i -2.6344 27.0256 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 12 1 -3.0228 24.7300 36.4608 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 13 | -2.0695 5.1491 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 14 N 0.2387 35.4864 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 15 f -2.2518 30.2957 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 16 g 7.8382 32.8149 36.6426 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 17 d -2.3045 33.9892 36.6691 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 18 W 0.0821 38.6293 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 19 s 7.8257 26.2679 26.4703 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 20 c 8.0714 29.6062 26.4703 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 21 u 8.6596 33.1226 25.9126 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 22 3 -3.0429 26.9346 37.0185 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 23 ~ 10.9779 27.6923 12.0861 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 24 # -6.5368 26.8256 41.5515 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 25 O -0.2963 32.6414 34.6234 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 26 ` -4.9968 11.1466 9.3586 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 27 @ -2.2695 21.9941 40.6703 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 28 F 0.1385 31.2852 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 29 S -0.2990 27.1846 34.6234 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 30 p 8.0213 34.2969 36.6426 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 31 “ -0.0632 23.8481 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 32 % -2.0242 26.0861 36.6691 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 33 £ -0.3588 29.3797 33.8574 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 34 . 26.5900 8.8509 7.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 35 2 -2.9079 26.5445 36.4608 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 36 5 -2.2092 27.0340 36.4608 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 37 m 7.8587 37.7404 25.7043 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 38 V -0.1256 38.4306 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 39 6 -2.9790 25.4543 37.0185 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 40 w 8.4038 33.3756 25.1466 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 41 T 0.2771 29.3213 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 42 M -0.1071 38.3481 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 43 G -0.2734 32.4596 34.6234 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 44 b -2.1475 34.2969 36.6691 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 45 9 -3.0562 25.4543 37.0185 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 46 ; 8.1708 14.2083 31.9019 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 47 D 0.0182 31.6670 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 48 L -0.0232 31.4253 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 49 y 8.3325 35.2713 36.0849 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 50 ‘ -0.3651 11.4543 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 51 \ -7.6106 25.9043 47.8074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 52 R -0.1399 34.9552 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 53 < 0.1815 33.3574 33.3392 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 54 4 -2.4171 25.2460 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 55 8 -2.5497 25.5784 37.0185 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 56 0 -2.9165 25.5784 37.0185 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 57 A -0.0005 38.2648 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 58 E -0.3888 30.3867 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 59 B 0.0200 32.8991 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 60 v 8.5471 35.0559 25.1466 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 61 k -2.1057 30.6450 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 62 J 0.1382 32.1830 34.3734 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 63 U -0.2345 34.9371 34.3734 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 64 j -2.2986 21.4448 46.8414 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 65 ( -2.0572 12.8522 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 66 7 -2.3670 24.9383 35.9031 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 67 § -2.4309 29.7880 41.0522 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 68 $ -6.6019 25.1466 47.5392 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 69 € 0.1694 32.2596 34.6234 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 70 / -7.4448 25.1466 47.8074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 71 C -0.3692 30.3457 34.6234 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 72 * -2.2110 23.8663 24.9466 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 73 ” -0.1786 23.8481 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 74 ? -0.4108 23.4828 34.6234 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 75 { -2.7832 14.7395 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 76 } -2.6693 14.7395 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 77 , 25.9386 11.4543 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 78 I -0.3739 24.7300 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 79 ° -8.5801 16.4380 16.4380 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 80 K 0.0949 34.4476 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 81 H 0.0403 30.7457 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 82 q 7.9925 33.9892 36.6426 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 83 & 1.1326 26.8522 33.1574 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 84 ’ -0.4557 11.4543 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 85 [ -1.9962 12.8438 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 86 - 14.4071 24.9383 5.1491 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 87 Y -0.0844 32.1337 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 88 Q -0.1758 32.6414 42.0682 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 89 " 0.0955 20.7160 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 90 ! -2.3392 9.3586 36.6691 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 91 x 8.4733 32.6414 25.1466 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 92 ) -2.5892 12.8522 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 93 = 9.7425 32.6414 14.9395 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 94 + 2.6785 29.3213 29.3213 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 95 X 0.1970 35.2448 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 96 » 10.4312 28.6895 23.2328 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 97 ' -0.0047 8.0373 17.2435 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 98 ¢ -6.9178 24.4306 43.2055 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 99 Z -0.0032 26.2945 33.6074 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 100 > 0.3026 33.3574 33.3392 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 101 ® -0.0751 34.9371 34.3734 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 102 © 0.0181 34.9371 34.3734 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 103 ] -2.2859 12.8438 43.1478 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 104 é -4.8578 30.7275 39.2725 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 105 z 8.0710 25.4543 25.1466 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 106 _ 45.7509 40.0861 5.1491 -Courier_New_Bold.ttf 95 X 35.2448 33.6074 107 ¥ -0.0385 31.2700 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 1 t -11.0135 29.3297 34.9636 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 2 h -12.8289 33.1226 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 3 a -2.5457 31.0352 26.4703 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 4 n -2.6529 31.9747 25.7043 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 5 P -10.3622 30.2957 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 6 o -2.3246 29.8457 26.4703 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 7 e -2.7102 30.7275 26.4703 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 8 : -1.9908 8.8509 25.1466 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 9 r -2.4016 30.0874 25.7043 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 10 l -12.6157 27.0256 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 11 i -12.4573 27.0256 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 12 1 -13.4837 24.7300 36.4608 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 13 | -12.5828 5.1491 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 14 N -10.3195 35.4864 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 15 f -12.5560 30.2957 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 16 g -2.1581 32.8149 36.6426 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 17 d -12.7615 33.9892 36.6691 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 18 W -10.5912 38.6293 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 19 s -2.3974 26.2679 26.4703 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 20 c -2.6941 29.6062 26.4703 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 21 u -1.6883 33.1226 25.9126 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 22 3 -13.1332 26.9346 37.0185 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 23 ~ 0.6643 27.6923 12.0861 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 24 # -17.1917 26.8256 41.5515 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 25 O -10.6099 32.6414 34.6234 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 26 ` -15.1156 11.1466 9.3586 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 27 @ -12.5519 21.9941 40.6703 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 28 F -10.1197 31.2852 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 29 S -10.7757 27.1846 34.6234 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 30 p -2.3872 34.2969 36.6426 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 31 “ -10.5830 23.8481 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 32 % -12.8104 26.0861 36.6691 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 33 £ -10.5219 29.3797 33.8574 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 34 . 15.9798 8.8509 7.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 35 2 -13.0745 26.5445 36.4608 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 36 5 -12.7109 27.0340 36.4608 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 37 m -2.3891 37.7404 25.7043 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 38 V -10.5475 38.4306 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 39 6 -13.4394 25.4543 37.0185 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 40 w -2.0270 33.3756 25.1466 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 41 T -10.4488 29.3213 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 42 M -10.4808 38.3481 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 43 G -10.8101 32.4596 34.6234 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 44 b -12.4387 34.2969 36.6691 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 45 9 -13.1853 25.4543 37.0185 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 46 ; -1.7596 14.2083 31.9019 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 47 D -10.2987 31.6670 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 48 L -10.1050 31.4253 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 49 y -1.5302 35.2713 36.0849 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 50 ‘ -10.5441 11.4543 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 51 \ -17.8914 25.9043 47.8074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 52 R -10.4873 34.9552 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 53 < -9.9030 33.3574 33.3392 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 54 4 -12.3692 25.2460 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 55 8 -13.2276 25.5784 37.0185 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 56 0 -13.3551 25.5784 37.0185 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 57 A -10.2830 38.2648 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 58 E -10.2616 30.3867 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 59 B -10.3757 32.8991 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 60 v -2.0110 35.0559 25.1466 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 61 k -12.3894 30.6450 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 62 J -10.3617 32.1830 34.3734 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 63 U -10.3719 34.9371 34.3734 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 64 j -12.3608 21.4448 46.8414 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 65 ( -12.5747 12.8522 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 66 7 -12.8752 24.9383 35.9031 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 67 § -12.6647 29.7880 41.0522 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 68 $ -16.5182 25.1466 47.5392 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 69 € -10.6572 32.2596 34.6234 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 70 / -17.8194 25.1466 47.8074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 71 C -10.6636 30.3457 34.6234 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 72 * -12.6079 23.8663 24.9466 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 73 ” -10.3657 23.8481 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 74 ? -10.9528 23.4828 34.6234 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 75 { -12.9423 14.7395 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 76 } -12.8516 14.7395 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 77 , 15.1042 11.4543 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 78 I -10.4487 24.7300 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 79 ° -18.9802 16.4380 16.4380 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 80 K -10.4001 34.4476 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 81 H -10.4119 30.7457 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 82 q -2.2984 33.9892 36.6426 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 83 & -9.2685 26.8522 33.1574 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 84 ’ -10.5505 11.4543 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 85 [ -12.9586 12.8438 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 86 - 4.2167 24.9383 5.1491 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 87 Y -10.6164 32.1337 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 88 Q -10.8475 32.6414 42.0682 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 89 " -10.4131 20.7160 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 90 ! -12.4585 9.3586 36.6691 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 91 x -1.9876 32.6414 25.1466 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 92 ) -13.0049 12.8522 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 93 = -0.2631 32.6414 14.9395 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 94 + -7.9667 29.3213 29.3213 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 95 X -10.1562 35.2448 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 96 » 0.0737 28.6895 23.2328 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 97 ' -10.4576 8.0373 17.2435 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 98 ¢ -17.4565 24.4306 43.2055 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 99 Z -10.5601 26.2945 33.6074 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 100 > -9.9879 33.3574 33.3392 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 101 ® -10.4216 34.9371 34.3734 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 102 © -10.4216 34.9371 34.3734 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 103 ] -12.7533 12.8438 43.1478 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 104 é -15.2918 30.7275 39.2725 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 105 z -1.9139 25.4543 25.1466 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 106 _ 35.2576 40.0861 5.1491 -Courier_New_Bold.ttf 96 » 28.6895 23.2328 107 ¥ -10.1459 31.2700 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 1 t -0.6707 29.3297 34.9636 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 2 h -2.2183 33.1226 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 3 a 7.8961 31.0352 26.4703 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 4 n 8.1598 31.9747 25.7043 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 5 P -0.0158 30.2957 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 6 o 7.9003 29.8457 26.4703 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 7 e 7.8262 30.7275 26.4703 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 8 : 8.2767 8.8509 25.1466 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 9 r 7.9818 30.0874 25.7043 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 10 l -2.1188 27.0256 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 11 i -2.1344 27.0256 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 12 1 -2.7617 24.7300 36.4608 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 13 | -2.1174 5.1491 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 14 N -0.0640 35.4864 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 15 f -2.2925 30.2957 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 16 g 7.8684 32.8149 36.6426 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 17 d -2.1874 33.9892 36.6691 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 18 W -0.0097 38.6293 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 19 s 7.9207 26.2679 26.4703 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 20 c 8.0139 29.6062 26.4703 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 21 u 8.6731 33.1226 25.9126 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 22 3 -2.8956 26.9346 37.0185 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 23 ~ 10.9092 27.6923 12.0861 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 24 # -6.3690 26.8256 41.5515 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 25 O -0.0887 32.6414 34.6234 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 26 ` -4.9418 11.1466 9.3586 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 27 @ -2.2026 21.9941 40.6703 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 28 F 0.0597 31.2852 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 29 S 0.0082 27.1846 34.6234 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 30 p 7.7456 34.2969 36.6426 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 31 “ -0.0791 23.8481 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 32 % -2.4395 26.0861 36.6691 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 33 £ -0.1828 29.3797 33.8574 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 34 . 26.6210 8.8509 7.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 35 2 -2.9057 26.5445 36.4608 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 36 5 -2.2327 27.0340 36.4608 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 37 m 8.0402 37.7404 25.7043 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 38 V -0.0055 38.4306 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 39 6 -2.8125 25.4543 37.0185 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 40 w 8.5146 33.3756 25.1466 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 41 T 0.0204 29.3213 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 42 M -0.0972 38.3481 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 43 G -0.2147 32.4596 34.6234 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 44 b -2.5570 34.2969 36.6691 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 45 9 -2.7579 25.4543 37.0185 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 46 ; 8.7561 14.2083 31.9019 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 47 D 0.0873 31.6670 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 48 L -0.1999 31.4253 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 49 y 8.5654 35.2713 36.0849 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 50 ‘ -0.1435 11.4543 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 51 \ -7.3359 25.9043 47.8074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 52 R -0.1742 34.9552 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 53 < 0.0429 33.3574 33.3392 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 54 4 -2.4213 25.2460 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 55 8 -2.5816 25.5784 37.0185 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 56 0 -2.8149 25.5784 37.0185 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 57 A 0.0771 38.2648 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 58 E -0.0020 30.3867 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 59 B -0.0774 32.8991 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 60 v 8.3732 35.0559 25.1466 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 61 k -2.4312 30.6450 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 62 J 0.0106 32.1830 34.3734 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 63 U 0.0984 34.9371 34.3734 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 64 j -2.0477 21.4448 46.8414 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 65 ( -2.2188 12.8522 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 66 7 -2.3911 24.9383 35.9031 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 67 § -2.1761 29.7880 41.0522 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 68 $ -6.3849 25.1466 47.5392 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 69 € -0.3396 32.2596 34.6234 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 70 / -7.4355 25.1466 47.8074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 71 C -0.5012 30.3457 34.6234 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 72 * -2.2183 23.8663 24.9466 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 73 ” -0.2202 23.8481 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 74 ? -0.1369 23.4828 34.6234 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 75 { -2.3566 14.7395 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 76 } -2.3781 14.7395 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 77 , 25.6098 11.4543 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 78 I 0.2512 24.7300 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 79 ° -8.4041 16.4380 16.4380 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 80 K -0.0867 34.4476 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 81 H -0.0102 30.7457 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 82 q 7.9031 33.9892 36.6426 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 83 & 1.2063 26.8522 33.1574 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 84 ’ -0.2179 11.4543 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 85 [ -2.1841 12.8438 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 86 - 14.5455 24.9383 5.1491 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 87 Y -0.2107 32.1337 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 88 Q -0.3175 32.6414 42.0682 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 89 " -0.0839 20.7160 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 90 ! -2.0260 9.3586 36.6691 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 91 x 8.6034 32.6414 25.1466 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 92 ) -2.5151 12.8522 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 93 = 9.6188 32.6414 14.9395 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 94 + 2.7505 29.3213 29.3213 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 95 X 0.0000 35.2448 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 96 » 10.2777 28.6895 23.2328 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 97 ' -0.0325 8.0373 17.2435 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 98 ¢ -6.7751 24.4306 43.2055 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 99 Z 0.0833 26.2945 33.6074 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 100 > 0.0558 33.3574 33.3392 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 101 ® 0.0769 34.9371 34.3734 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 102 © -0.0500 34.9371 34.3734 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 103 ] -2.5271 12.8438 43.1478 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 104 é -4.9865 30.7275 39.2725 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 105 z 8.6416 25.4543 25.1466 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 106 _ 46.0317 40.0861 5.1491 -Courier_New_Bold.ttf 97 ' 8.0373 17.2435 107 ¥ -0.4111 31.2700 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 1 t 6.4148 29.3297 34.9636 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 2 h 4.8576 33.1226 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 3 a 15.0655 31.0352 26.4703 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 4 n 14.8135 31.9747 25.7043 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 5 P 7.0662 30.2957 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 6 o 15.0359 29.8457 26.4703 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 7 e 14.7093 30.7275 26.4703 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 8 : 15.1978 8.8509 25.1466 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 9 r 14.8649 30.0874 25.7043 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 10 l 4.7246 27.0256 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 11 i 4.8801 27.0256 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 12 1 4.1260 24.7300 36.4608 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 13 | 4.8967 5.1491 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 14 N 7.1690 35.4864 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 15 f 4.5623 30.2957 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 16 g 15.1291 32.8149 36.6426 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 17 d 4.9877 33.9892 36.6691 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 18 W 7.1430 38.6293 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 19 s 15.0146 26.2679 26.4703 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 20 c 14.8649 29.6062 26.4703 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 21 u 15.2090 33.1226 25.9126 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 22 3 4.0483 26.9346 37.0185 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 23 ~ 17.7056 27.6923 12.0861 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 24 # 0.4391 26.8256 41.5515 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 25 O 6.9163 32.6414 34.6234 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 26 ` 2.4715 11.1466 9.3586 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 27 @ 4.6267 21.9941 40.6703 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 28 F 6.9531 31.2852 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 29 S 6.6961 27.1846 34.6234 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 30 p 14.7482 34.2969 36.6426 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 31 “ 6.8028 23.8481 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 32 % 4.4678 26.0861 36.6691 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 33 £ 6.9302 29.3797 33.8574 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 34 . 34.1291 8.8509 7.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 35 2 4.1441 26.5445 36.4608 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 36 5 4.5864 27.0340 36.4608 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 37 m 14.8034 37.7404 25.7043 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 38 V 7.0305 38.4306 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 39 6 4.1628 25.4543 37.0185 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 40 w 15.5862 33.3756 25.1466 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 41 T 7.0057 29.3213 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 42 M 7.0433 38.3481 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 43 G 6.4945 32.4596 34.6234 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 44 b 4.5680 34.2969 36.6691 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 45 9 4.2123 25.4543 37.0185 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 46 ; 15.5464 14.2083 31.9019 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 47 D 6.9948 31.6670 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 48 L 7.0814 31.4253 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 49 y 15.5329 35.2713 36.0849 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 50 ‘ 6.9306 11.4543 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 51 \ -0.4833 25.9043 47.8074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 52 R 7.0019 34.9552 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 53 < 7.0615 33.3574 33.3392 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 54 4 4.4906 25.2460 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 55 8 3.9371 25.5784 37.0185 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 56 0 4.1826 25.5784 37.0185 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 57 A 6.5950 38.2648 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 58 E 6.7757 30.3867 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 59 B 7.0150 32.8991 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 60 v 15.6053 35.0559 25.1466 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 61 k 4.6591 30.6450 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 62 J 7.1404 32.1830 34.3734 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 63 U 6.6240 34.9371 34.3734 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 64 j 4.5698 21.4448 46.8414 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 65 ( 4.8733 12.8522 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 66 7 4.5623 24.9383 35.9031 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 67 § 4.6963 29.7880 41.0522 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 68 $ 0.6828 25.1466 47.5392 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 69 € 6.9194 32.2596 34.6234 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 70 / -0.3716 25.1466 47.8074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 71 C 6.8666 30.3457 34.6234 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 72 * 4.7880 23.8663 24.9466 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 73 ” 6.6544 23.8481 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 74 ? 6.5017 23.4828 34.6234 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 75 { 4.5049 14.7395 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 76 } 4.5372 14.7395 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 77 , 32.7766 11.4543 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 78 I 6.9520 24.7300 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 79 ° -1.2494 16.4380 16.4380 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 80 K 6.9601 34.4476 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 81 H 7.1014 30.7457 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 82 q 14.8065 33.9892 36.6426 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 83 & 8.0173 26.8522 33.1574 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 84 ’ 6.7981 11.4543 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 85 [ 4.7502 12.8438 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 86 - 21.7047 24.9383 5.1491 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 87 Y 7.1133 32.1337 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 88 Q 6.7550 32.6414 42.0682 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 89 " 7.3050 20.7160 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 90 ! 4.6858 9.3586 36.6691 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 91 x 15.1960 32.6414 25.1466 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 92 ) 4.5892 12.8522 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 93 = 16.9938 32.6414 14.9395 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 94 + 9.1532 29.3213 29.3213 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 95 X 7.1138 35.2448 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 96 » 17.4404 28.6895 23.2328 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 97 ' 6.8145 8.0373 17.2435 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 98 ¢ -0.0603 24.4306 43.2055 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 99 Z 6.9934 26.2945 33.6074 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 100 > 6.9973 33.3574 33.3392 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 101 ® 7.0118 34.9371 34.3734 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 102 © 7.0657 34.9371 34.3734 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 103 ] 4.7839 12.8438 43.1478 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 104 é 1.8172 30.7275 39.2725 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 105 z 15.2810 25.4543 25.1466 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 106 _ 52.8609 40.0861 5.1491 -Courier_New_Bold.ttf 98 ¢ 24.4306 43.2055 107 ¥ 6.8549 31.2700 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 1 t -0.2463 29.3297 34.9636 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 2 h -2.3769 33.1226 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 3 a 7.8771 31.0352 26.4703 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 4 n 8.1259 31.9747 25.7043 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 5 P 0.2005 30.2957 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 6 o 7.8120 29.8457 26.4703 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 7 e 7.7937 30.7275 26.4703 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 8 : 8.3769 8.8509 25.1466 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 9 r 7.8860 30.0874 25.7043 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 10 l -2.0826 27.0256 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 11 i -2.2911 27.0256 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 12 1 -2.9893 24.7300 36.4608 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 13 | -2.0089 5.1491 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 14 N 0.0516 35.4864 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 15 f -2.3685 30.2957 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 16 g 7.8907 32.8149 36.6426 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 17 d -1.9216 33.9892 36.6691 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 18 W -0.1672 38.6293 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 19 s 7.9253 26.2679 26.4703 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 20 c 7.6696 29.6062 26.4703 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 21 u 8.2253 33.1226 25.9126 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 22 3 -2.9038 26.9346 37.0185 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 23 ~ 10.8739 27.6923 12.0861 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 24 # -6.4096 26.8256 41.5515 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 25 O -0.4151 32.6414 34.6234 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 26 ` -5.0512 11.1466 9.3586 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 27 @ -2.1831 21.9941 40.6703 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 28 F -0.2670 31.2852 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 29 S -0.4368 27.1846 34.6234 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 30 p 7.7845 34.2969 36.6426 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 31 “ -0.0304 23.8481 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 32 % -2.3126 26.0861 36.6691 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 33 £ -0.0810 29.3797 33.8574 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 34 . 26.3994 8.8509 7.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 35 2 -3.1110 26.5445 36.4608 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 36 5 -2.4256 27.0340 36.4608 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 37 m 7.7867 37.7404 25.7043 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 38 V -0.2600 38.4306 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 39 6 -2.7279 25.4543 37.0185 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 40 w 8.6096 33.3756 25.1466 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 41 T -0.2585 29.3213 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 42 M 0.0412 38.3481 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 43 G -0.3242 32.4596 34.6234 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 44 b -2.1823 34.2969 36.6691 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 45 9 -2.6149 25.4543 37.0185 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 46 ; 8.4380 14.2083 31.9019 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 47 D 0.3486 31.6670 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 48 L -0.2859 31.4253 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 49 y 8.5339 35.2713 36.0849 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 50 ‘ -0.4876 11.4543 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 51 \ -7.1208 25.9043 47.8074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 52 R -0.1099 34.9552 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 53 < 0.2612 33.3574 33.3392 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 54 4 -2.2989 25.2460 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 55 8 -3.0354 25.5784 37.0185 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 56 0 -2.7992 25.5784 37.0185 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 57 A -0.0182 38.2648 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 58 E 0.0459 30.3867 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 59 B -0.1126 32.8991 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 60 v 8.2554 35.0559 25.1466 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 61 k -2.0672 30.6450 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 62 J -0.1145 32.1830 34.3734 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 63 U 0.2555 34.9371 34.3734 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 64 j -2.0900 21.4448 46.8414 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 65 ( -2.3040 12.8522 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 66 7 -2.2859 24.9383 35.9031 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 67 § -2.3212 29.7880 41.0522 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 68 $ -6.4144 25.1466 47.5392 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 69 € 0.0382 32.2596 34.6234 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 70 / -7.1237 25.1466 47.8074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 71 C -0.2514 30.3457 34.6234 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 72 * -2.1885 23.8663 24.9466 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 73 ” -0.3798 23.8481 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 74 ? -0.3835 23.4828 34.6234 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 75 { -2.2058 14.7395 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 76 } -2.0305 14.7395 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 77 , 26.0073 11.4543 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 78 I 0.2080 24.7300 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 79 ° -8.7112 16.4380 16.4380 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 80 K 0.0972 34.4476 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 81 H -0.0812 30.7457 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 82 q 8.1588 33.9892 36.6426 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 83 & 1.4158 26.8522 33.1574 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 84 ’ -0.6573 11.4543 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 85 [ -2.0497 12.8438 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 86 - 14.4080 24.9383 5.1491 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 87 Y -0.1182 32.1337 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 88 Q -0.0244 32.6414 42.0682 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 89 " 0.0344 20.7160 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 90 ! -2.2952 9.3586 36.6691 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 91 x 8.1571 32.6414 25.1466 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 92 ) -2.3107 12.8522 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 93 = 9.9643 32.6414 14.9395 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 94 + 2.1845 29.3213 29.3213 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 95 X 0.0987 35.2448 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 96 » 10.3130 28.6895 23.2328 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 97 ' -0.1900 8.0373 17.2435 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 98 ¢ -7.0195 24.4306 43.2055 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 99 Z 0.3044 26.2945 33.6074 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 100 > -0.0869 33.3574 33.3392 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 101 ® -0.0102 34.9371 34.3734 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 102 © 0.0844 34.9371 34.3734 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 103 ] -2.2026 12.8438 43.1478 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 104 é -4.8134 30.7275 39.2725 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 105 z 8.6405 25.4543 25.1466 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 106 _ 45.7860 40.0861 5.1491 -Courier_New_Bold.ttf 99 Z 26.2945 33.6074 107 ¥ -0.3148 31.2700 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 1 t -1.0538 29.3297 34.9636 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 2 h -2.4927 33.1226 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 3 a 7.6349 31.0352 26.4703 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 4 n 7.5840 31.9747 25.7043 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 5 P -0.3585 30.2957 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 6 o 7.8480 29.8457 26.4703 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 7 e 7.6153 30.7275 26.4703 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 8 : 8.0281 8.8509 25.1466 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 9 r 7.5530 30.0874 25.7043 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 10 l -2.5351 27.0256 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 11 i -2.5654 27.0256 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 12 1 -3.0705 24.7300 36.4608 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 13 | -2.7087 5.1491 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 14 N -0.4193 35.4864 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 15 f -2.5675 30.2957 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 16 g 7.5380 32.8149 36.6426 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 17 d -2.7010 33.9892 36.6691 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 18 W 0.0667 38.6293 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 19 s 7.8547 26.2679 26.4703 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 20 c 7.9403 29.6062 26.4703 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 21 u 8.3095 33.1226 25.9126 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 22 3 -3.1213 26.9346 37.0185 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 23 ~ 10.8474 27.6923 12.0861 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 24 # -6.7586 26.8256 41.5515 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 25 O -0.3408 32.6414 34.6234 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 26 ` -5.0162 11.1466 9.3586 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 27 @ -2.6297 21.9941 40.6703 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 28 F -0.5426 31.2852 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 29 S -0.5186 27.1846 34.6234 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 30 p 7.8549 34.2969 36.6426 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 31 “ -0.3694 23.8481 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 32 % -2.5392 26.0861 36.6691 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 33 £ -0.5848 29.3797 33.8574 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 34 . 26.0483 8.8509 7.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 35 2 -3.3356 26.5445 36.4608 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 36 5 -2.5824 27.0340 36.4608 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 37 m 7.7568 37.7404 25.7043 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 38 V -0.3521 38.4306 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 39 6 -3.1731 25.4543 37.0185 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 40 w 8.2486 33.3756 25.1466 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 41 T -0.1584 29.3213 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 42 M -0.5095 38.3481 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 43 G -0.8354 32.4596 34.6234 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 44 b -2.3526 34.2969 36.6691 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 45 9 -3.1985 25.4543 37.0185 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 46 ; 7.9670 14.2083 31.9019 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 47 D -0.0569 31.6670 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 48 L -0.4094 31.4253 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 49 y 8.2676 35.2713 36.0849 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 50 ‘ -0.6218 11.4543 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 51 \ -7.5933 25.9043 47.8074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 52 R -0.2055 34.9552 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 53 < 0.2777 33.3574 33.3392 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 54 4 -2.5476 25.2460 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 55 8 -2.9528 25.5784 37.0185 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 56 0 -2.9209 25.5784 37.0185 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 57 A -0.0939 38.2648 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 58 E -0.5628 30.3867 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 59 B -0.2339 32.8991 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 60 v 8.1953 35.0559 25.1466 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 61 k -2.3289 30.6450 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 62 J -0.2626 32.1830 34.3734 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 63 U -0.3424 34.9371 34.3734 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 64 j -2.4058 21.4448 46.8414 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 65 ( -2.3301 12.8522 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 66 7 -2.4563 24.9383 35.9031 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 67 § -2.3487 29.7880 41.0522 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 68 $ -6.8570 25.1466 47.5392 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 69 € -0.6057 32.2596 34.6234 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 70 / -7.8371 25.1466 47.8074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 71 C -0.6553 30.3457 34.6234 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 72 * -2.8989 23.8663 24.9466 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 73 ” -0.1201 23.8481 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 74 ? -0.7165 23.4828 34.6234 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 75 { -2.4513 14.7395 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 76 } -2.4743 14.7395 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 77 , 25.4740 11.4543 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 78 I -0.3276 24.7300 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 79 ° -8.8392 16.4380 16.4380 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 80 K -0.0062 34.4476 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 81 H -0.2332 30.7457 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 82 q 7.5380 33.9892 36.6426 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 83 & 1.2732 26.8522 33.1574 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 84 ’ -0.4537 11.4543 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 85 [ -2.4804 12.8438 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 86 - 14.3487 24.9383 5.1491 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 87 Y -0.0999 32.1337 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 88 Q -0.7124 32.6414 42.0682 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 89 " -0.3435 20.7160 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 90 ! -2.7901 9.3586 36.6691 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 91 x 7.9293 32.6414 25.1466 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 92 ) -2.4561 12.8522 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 93 = 9.6131 32.6414 14.9395 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 94 + 1.9508 29.3213 29.3213 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 95 X -0.2039 35.2448 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 96 » 9.8270 28.6895 23.2328 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 97 ' -0.1458 8.0373 17.2435 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 98 ¢ -7.6624 24.4306 43.2055 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 99 Z -0.2779 26.2945 33.6074 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 100 > -0.1690 33.3574 33.3392 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 101 ® -0.1471 34.9371 34.3734 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 102 © -0.1698 34.9371 34.3734 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 103 ] -2.9531 12.8438 43.1478 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 104 é -5.0088 30.7275 39.2725 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 105 z 8.4516 25.4543 25.1466 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 106 _ 45.5725 40.0861 5.1491 -Courier_New_Bold.ttf 100 > 33.3574 33.3392 107 ¥ -0.2784 31.2700 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 1 t -0.3255 29.3297 34.9636 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 2 h -2.3633 33.1226 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 3 a 7.8763 31.0352 26.4703 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 4 n 7.6372 31.9747 25.7043 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 5 P 0.0102 30.2957 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 6 o 7.8745 29.8457 26.4703 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 7 e 8.1032 30.7275 26.4703 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 8 : 8.5678 8.8509 25.1466 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 9 r 8.0667 30.0874 25.7043 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 10 l -2.0729 27.0256 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 11 i -2.3374 27.0256 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 12 1 -2.9276 24.7300 36.4608 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 13 | -2.2414 5.1491 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 14 N 0.1199 35.4864 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 15 f -1.9374 30.2957 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 16 g 8.0828 32.8149 36.6426 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 17 d -2.4830 33.9892 36.6691 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 18 W -0.0202 38.6293 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 19 s 7.8085 26.2679 26.4703 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 20 c 7.8467 29.6062 26.4703 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 21 u 8.6272 33.1226 25.9126 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 22 3 -2.7820 26.9346 37.0185 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 23 ~ 10.9093 27.6923 12.0861 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 24 # -6.3375 26.8256 41.5515 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 25 O -0.1776 32.6414 34.6234 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 26 ` -5.0626 11.1466 9.3586 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 27 @ -2.4856 21.9941 40.6703 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 28 F 0.2063 31.2852 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 29 S 0.0794 27.1846 34.6234 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 30 p 7.8591 34.2969 36.6426 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 31 “ -0.0495 23.8481 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 32 % -2.1473 26.0861 36.6691 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 33 £ -0.0804 29.3797 33.8574 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 34 . 26.6576 8.8509 7.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 35 2 -2.8821 26.5445 36.4608 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 36 5 -2.1557 27.0340 36.4608 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 37 m 8.2576 37.7404 25.7043 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 38 V -0.0389 38.4306 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 39 6 -2.6708 25.4543 37.0185 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 40 w 8.7623 33.3756 25.1466 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 41 T -0.1298 29.3213 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 42 M -0.0899 38.3481 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 43 G -0.0795 32.4596 34.6234 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 44 b -2.3726 34.2969 36.6691 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 45 9 -2.8456 25.4543 37.0185 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 46 ; 8.6280 14.2083 31.9019 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 47 D -0.1066 31.6670 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 48 L -0.0538 31.4253 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 49 y 8.5970 35.2713 36.0849 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 50 ‘ -0.3341 11.4543 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 51 \ -7.6069 25.9043 47.8074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 52 R -0.1686 34.9552 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 53 < 0.3364 33.3574 33.3392 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 54 4 -2.1729 25.2460 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 55 8 -2.8947 25.5784 37.0185 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 56 0 -2.8683 25.5784 37.0185 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 57 A -0.1479 38.2648 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 58 E -0.2140 30.3867 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 59 B -0.2689 32.8991 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 60 v 8.6248 35.0559 25.1466 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 61 k -2.3167 30.6450 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 62 J 0.0821 32.1830 34.3734 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 63 U 0.0714 34.9371 34.3734 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 64 j -2.1771 21.4448 46.8414 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 65 ( -2.4848 12.8522 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 66 7 -2.3925 24.9383 35.9031 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 67 § -2.2513 29.7880 41.0522 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 68 $ -6.5488 25.1466 47.5392 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 69 € -0.3626 32.2596 34.6234 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 70 / -7.8487 25.1466 47.8074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 71 C -0.4183 30.3457 34.6234 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 72 * -2.4635 23.8663 24.9466 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 73 ” -0.2208 23.8481 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 74 ? -0.4562 23.4828 34.6234 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 75 { -2.2116 14.7395 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 76 } -2.3499 14.7395 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 77 , 25.9267 11.4543 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 78 I -0.0070 24.7300 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 79 ° -8.5514 16.4380 16.4380 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 80 K 0.0757 34.4476 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 81 H 0.1950 30.7457 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 82 q 7.5333 33.9892 36.6426 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 83 & 1.2613 26.8522 33.1574 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 84 ’ -0.2388 11.4543 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 85 [ -2.1347 12.8438 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 86 - 14.3828 24.9383 5.1491 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 87 Y -0.2484 32.1337 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 88 Q 0.3468 32.6414 42.0682 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 89 " 0.0944 20.7160 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 90 ! -2.6064 9.3586 36.6691 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 91 x 8.4298 32.6414 25.1466 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 92 ) -2.0005 12.8522 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 93 = 9.8919 32.6414 14.9395 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 94 + 2.2585 29.3213 29.3213 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 95 X 0.1742 35.2448 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 96 » 10.2390 28.6895 23.2328 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 97 ' -0.1692 8.0373 17.2435 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 98 ¢ -6.7672 24.4306 43.2055 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 99 Z 0.1696 26.2945 33.6074 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 100 > 0.5022 33.3574 33.3392 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 101 ® -0.2257 34.9371 34.3734 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 102 © -0.0440 34.9371 34.3734 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 103 ] -2.2027 12.8438 43.1478 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 104 é -4.5649 30.7275 39.2725 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 105 z 8.6967 25.4543 25.1466 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 106 _ 45.9274 40.0861 5.1491 -Courier_New_Bold.ttf 101 ® 34.9371 34.3734 107 ¥ 0.0668 31.2700 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 1 t -0.6999 29.3297 34.9636 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 2 h -2.4647 33.1226 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 3 a 8.0291 31.0352 26.4703 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 4 n 8.1570 31.9747 25.7043 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 5 P 0.2460 30.2957 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 6 o 7.8391 29.8457 26.4703 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 7 e 7.9329 30.7275 26.4703 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 8 : 8.3764 8.8509 25.1466 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 9 r 8.1982 30.0874 25.7043 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 10 l -2.3966 27.0256 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 11 i -2.2327 27.0256 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 12 1 -2.6792 24.7300 36.4608 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 13 | -2.5043 5.1491 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 14 N -0.0754 35.4864 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 15 f -2.2656 30.2957 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 16 g 7.9544 32.8149 36.6426 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 17 d -2.3411 33.9892 36.6691 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 18 W 0.0615 38.6293 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 19 s 7.6074 26.2679 26.4703 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 20 c 7.9514 29.6062 26.4703 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 21 u 8.2410 33.1226 25.9126 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 22 3 -3.0262 26.9346 37.0185 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 23 ~ 10.8789 27.6923 12.0861 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 24 # -6.7850 26.8256 41.5515 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 25 O -0.3450 32.6414 34.6234 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 26 ` -5.3686 11.1466 9.3586 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 27 @ -2.6034 21.9941 40.6703 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 28 F -0.0643 31.2852 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 29 S -0.4438 27.1846 34.6234 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 30 p 7.9805 34.2969 36.6426 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 31 “ -0.5592 23.8481 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 32 % -2.3400 26.0861 36.6691 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 33 £ -0.0706 29.3797 33.8574 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 34 . 26.7508 8.8509 7.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 35 2 -2.7663 26.5445 36.4608 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 36 5 -2.3337 27.0340 36.4608 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 37 m 7.8398 37.7404 25.7043 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 38 V 0.1134 38.4306 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 39 6 -2.8468 25.4543 37.0185 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 40 w 8.3358 33.3756 25.1466 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 41 T -0.0769 29.3213 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 42 M 0.0064 38.3481 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 43 G -0.0233 32.4596 34.6234 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 44 b -2.1187 34.2969 36.6691 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 45 9 -3.1738 25.4543 37.0185 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 46 ; 8.3667 14.2083 31.9019 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 47 D 0.0539 31.6670 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 48 L -0.1043 31.4253 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 49 y 8.6368 35.2713 36.0849 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 50 ‘ 0.1622 11.4543 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 51 \ -7.2783 25.9043 47.8074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 52 R -0.0385 34.9552 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 53 < 0.2371 33.3574 33.3392 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 54 4 -2.7184 25.2460 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 55 8 -2.8052 25.5784 37.0185 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 56 0 -3.0994 25.5784 37.0185 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 57 A -0.0385 38.2648 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 58 E 0.0742 30.3867 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 59 B -0.0000 32.8991 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 60 v 8.4193 35.0559 25.1466 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 61 k -2.3605 30.6450 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 62 J 0.1742 32.1830 34.3734 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 63 U 0.2525 34.9371 34.3734 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 64 j -2.5988 21.4448 46.8414 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 65 ( -2.6540 12.8522 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 66 7 -2.0172 24.9383 35.9031 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 67 § -2.3194 29.7880 41.0522 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 68 $ -6.5470 25.1466 47.5392 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 69 € -0.3728 32.2596 34.6234 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 70 / -7.3466 25.1466 47.8074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 71 C -0.6189 30.3457 34.6234 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 72 * -2.1470 23.8663 24.9466 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 73 ” -0.4998 23.8481 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 74 ? -0.2304 23.4828 34.6234 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 75 { -2.2957 14.7395 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 76 } -2.1229 14.7395 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 77 , 25.3874 11.4543 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 78 I -0.1399 24.7300 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 79 ° -8.5704 16.4380 16.4380 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 80 K -0.1144 34.4476 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 81 H 0.1506 30.7457 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 82 q 7.8701 33.9892 36.6426 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 83 & 1.1344 26.8522 33.1574 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 84 ’ -0.4365 11.4543 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 85 [ -2.1045 12.8438 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 86 - 14.2428 24.9383 5.1491 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 87 Y 0.0143 32.1337 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 88 Q 0.0326 32.6414 42.0682 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 89 " -0.0353 20.7160 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 90 ! -2.4723 9.3586 36.6691 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 91 x 8.8653 32.6414 25.1466 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 92 ) -2.5507 12.8522 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 93 = 9.7215 32.6414 14.9395 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 94 + 2.2619 29.3213 29.3213 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 95 X -0.1098 35.2448 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 96 » 10.4723 28.6895 23.2328 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 97 ' 0.0342 8.0373 17.2435 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 98 ¢ -6.9353 24.4306 43.2055 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 99 Z 0.0625 26.2945 33.6074 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 100 > 0.1748 33.3574 33.3392 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 101 ® 0.0358 34.9371 34.3734 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 102 © -0.0199 34.9371 34.3734 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 103 ] -2.2757 12.8438 43.1478 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 104 é -5.0901 30.7275 39.2725 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 105 z 8.8161 25.4543 25.1466 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 106 _ 45.8651 40.0861 5.1491 -Courier_New_Bold.ttf 102 © 34.9371 34.3734 107 ¥ -0.0385 31.2700 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 1 t 1.6811 29.3297 34.9636 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 2 h -0.0871 33.1226 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 3 a 10.0699 31.0352 26.4703 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 4 n 9.9175 31.9747 25.7043 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 5 P 2.0382 30.2957 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 6 o 10.1631 29.8457 26.4703 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 7 e 9.9829 30.7275 26.4703 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 8 : 10.8751 8.8509 25.1466 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 9 r 10.3646 30.0874 25.7043 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 10 l 0.1157 27.0256 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 11 i -0.2610 27.0256 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 12 1 -0.5577 24.7300 36.4608 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 13 | 0.1186 5.1491 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 14 N 2.4828 35.4864 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 15 f 0.0165 30.2957 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 16 g 10.3789 32.8149 36.6426 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 17 d 0.1438 33.9892 36.6691 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 18 W 2.5826 38.6293 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 19 s 10.1778 26.2679 26.4703 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 20 c 10.1240 29.6062 26.4703 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 21 u 10.4108 33.1226 25.9126 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 22 3 -0.6708 26.9346 37.0185 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 23 ~ 13.3017 27.6923 12.0861 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 24 # -4.2515 26.8256 41.5515 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 25 O 2.2381 32.6414 34.6234 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 26 ` -2.8443 11.1466 9.3586 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 27 @ 0.0492 21.9941 40.6703 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 28 F 2.1858 31.2852 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 29 S 2.0660 27.1846 34.6234 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 30 p 10.2248 34.2969 36.6426 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 31 “ 2.1226 23.8481 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 32 % -0.0592 26.0861 36.6691 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 33 £ 2.2232 29.3797 33.8574 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 34 . 28.5202 8.8509 7.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 35 2 -0.7379 26.5445 36.4608 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 36 5 -0.0972 27.0340 36.4608 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 37 m 10.0770 37.7404 25.7043 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 38 V 2.3586 38.4306 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 39 6 -0.5447 25.4543 37.0185 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 40 w 10.7060 33.3756 25.1466 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 41 T 2.0532 29.3213 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 42 M 2.2772 38.3481 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 43 G 1.9331 32.4596 34.6234 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 44 b -0.2710 34.2969 36.6691 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 45 9 -0.5160 25.4543 37.0185 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 46 ; 11.0479 14.2083 31.9019 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 47 D 2.5196 31.6670 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 48 L 2.5399 31.4253 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 49 y 10.6616 35.2713 36.0849 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 50 ‘ 2.0068 11.4543 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 51 \ -5.1288 25.9043 47.8074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 52 R 2.3387 34.9552 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 53 < 2.5779 33.3574 33.3392 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 54 4 0.0560 25.2460 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 55 8 -0.6680 25.5784 37.0185 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 56 0 -0.5418 25.5784 37.0185 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 57 A 2.3841 38.2648 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 58 E 2.3287 30.3867 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 59 B 2.4838 32.8991 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 60 v 10.6924 35.0559 25.1466 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 61 k -0.2700 30.6450 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 62 J 2.3860 32.1830 34.3734 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 63 U 2.2244 34.9371 34.3734 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 64 j -0.1417 21.4448 46.8414 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 65 ( 0.0955 12.8522 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 66 7 -0.0097 24.9383 35.9031 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 67 § -0.0816 29.7880 41.0522 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 68 $ -4.1830 25.1466 47.5392 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 69 € 2.0874 32.2596 34.6234 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 70 / -5.2792 25.1466 47.8074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 71 C 2.1849 30.3457 34.6234 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 72 * 0.0742 23.8663 24.9466 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 73 ” 1.8130 23.8481 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 74 ? 2.0872 23.4828 34.6234 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 75 { 0.0737 14.7395 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 76 } -0.2826 14.7395 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 77 , 27.7415 11.4543 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 78 I 2.3313 24.7300 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 79 ° -6.3270 16.4380 16.4380 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 80 K 2.1586 34.4476 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 81 H 2.1201 30.7457 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 82 q 10.1200 33.9892 36.6426 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 83 & 3.3927 26.8522 33.1574 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 84 ’ 2.2172 11.4543 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 85 [ -0.0045 12.8438 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 86 - 16.6798 24.9383 5.1491 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 87 Y 2.4111 32.1337 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 88 Q 2.1291 32.6414 42.0682 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 89 " 2.2326 20.7160 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 90 ! 0.2301 9.3586 36.6691 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 91 x 10.6493 32.6414 25.1466 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 92 ) -0.2257 12.8522 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 93 = 11.8491 32.6414 14.9395 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 94 + 4.7480 29.3213 29.3213 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 95 X 2.3597 35.2448 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 96 » 12.7547 28.6895 23.2328 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 97 ' 2.1756 8.0373 17.2435 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 98 ¢ -4.9675 24.4306 43.2055 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 99 Z 2.3676 26.2945 33.6074 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 100 > 2.7668 33.3574 33.3392 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 101 ® 2.3072 34.9371 34.3734 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 102 © 2.0570 34.9371 34.3734 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 103 ] -0.0032 12.8438 43.1478 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 104 é -2.6136 30.7275 39.2725 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 105 z 10.6127 25.4543 25.1466 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 106 _ 48.0487 40.0861 5.1491 -Courier_New_Bold.ttf 103 ] 12.8438 43.1478 107 ¥ 2.2925 31.2700 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 1 t 3.9707 29.3297 34.9636 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 2 h 2.6450 33.1226 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 3 a 12.5491 31.0352 26.4703 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 4 n 13.1408 31.9747 25.7043 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 5 P 4.9337 30.2957 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 6 o 12.9537 29.8457 26.4703 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 7 e 12.8211 30.7275 26.4703 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 8 : 13.5442 8.8509 25.1466 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 9 r 12.6835 30.0874 25.7043 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 10 l 2.5552 27.0256 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 11 i 2.2939 27.0256 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 12 1 1.8903 24.7300 36.4608 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 13 | 2.5984 5.1491 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 14 N 4.5368 35.4864 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 15 f 2.6873 30.2957 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 16 g 12.6409 32.8149 36.6426 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 17 d 2.8151 33.9892 36.6691 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 18 W 4.9848 38.6293 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 19 s 12.9722 26.2679 26.4703 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 20 c 12.7210 29.6062 26.4703 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 21 u 13.4378 33.1226 25.9126 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 22 3 2.1950 26.9346 37.0185 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 23 ~ 15.9826 27.6923 12.0861 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 24 # -1.4258 26.8256 41.5515 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 25 O 4.6189 32.6414 34.6234 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 26 ` -0.0149 11.1466 9.3586 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 27 @ 2.8536 21.9941 40.6703 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 28 F 4.9588 31.2852 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 29 S 4.5364 27.1846 34.6234 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 30 p 12.7707 34.2969 36.6426 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 31 “ 4.8146 23.8481 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 32 % 2.6472 26.0861 36.6691 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 33 £ 4.4623 29.3797 33.8574 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 34 . 30.9759 8.8509 7.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 35 2 2.2309 26.5445 36.4608 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 36 5 2.3361 27.0340 36.4608 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 37 m 12.7414 37.7404 25.7043 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 38 V 4.9530 38.4306 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 39 6 1.9211 25.4543 37.0185 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 40 w 13.4113 33.3756 25.1466 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 41 T 4.7364 29.3213 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 42 M 4.9196 38.3481 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 43 G 4.7116 32.4596 34.6234 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 44 b 2.4979 34.2969 36.6691 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 45 9 1.9876 25.4543 37.0185 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 46 ; 13.3624 14.2083 31.9019 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 47 D 5.2010 31.6670 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 48 L 4.8308 31.4253 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 49 y 13.5601 35.2713 36.0849 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 50 ‘ 4.6848 11.4543 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 51 \ -2.6528 25.9043 47.8074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 52 R 4.9348 34.9552 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 53 < 5.0367 33.3574 33.3392 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 54 4 2.5881 25.2460 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 55 8 2.1795 25.5784 37.0185 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 56 0 1.8943 25.5784 37.0185 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 57 A 4.8989 38.2648 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 58 E 4.9491 30.3867 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 59 B 4.9585 32.8991 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 60 v 13.4693 35.0559 25.1466 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 61 k 2.6048 30.6450 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 62 J 5.0827 32.1830 34.3734 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 63 U 5.0316 34.9371 34.3734 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 64 j 2.5964 21.4448 46.8414 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 65 ( 2.7137 12.8522 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 66 7 2.4681 24.9383 35.9031 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 67 § 2.5877 29.7880 41.0522 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 68 $ -1.4211 25.1466 47.5392 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 69 € 4.6134 32.2596 34.6234 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 70 / -2.5508 25.1466 47.8074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 71 C 4.8786 30.3457 34.6234 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 72 * 2.4491 23.8663 24.9466 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 73 ” 4.8044 23.8481 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 74 ? 4.8706 23.4828 34.6234 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 75 { 2.3641 14.7395 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 76 } 2.6499 14.7395 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 77 , 30.5723 11.4543 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 78 I 4.6216 24.7300 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 79 ° -3.6157 16.4380 16.4380 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 80 K 5.0352 34.4476 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 81 H 4.6753 30.7457 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 82 q 12.7374 33.9892 36.6426 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 83 & 6.3812 26.8522 33.1574 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 84 ’ 4.5850 11.4543 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 85 [ 3.0148 12.8438 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 86 - 19.3762 24.9383 5.1491 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 87 Y 4.6239 32.1337 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 88 Q 4.6459 32.6414 42.0682 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 89 " 5.1152 20.7160 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 90 ! 2.6483 9.3586 36.6691 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 91 x 13.5439 32.6414 25.1466 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 92 ) 2.6450 12.8522 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 93 = 14.5803 32.6414 14.9395 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 94 + 7.4001 29.3213 29.3213 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 95 X 4.6761 35.2448 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 96 » 15.4966 28.6895 23.2328 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 97 ' 4.6884 8.0373 17.2435 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 98 ¢ -2.1129 24.4306 43.2055 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 99 Z 4.6094 26.2945 33.6074 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 100 > 5.0833 33.3574 33.3392 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 101 ® 5.0090 34.9371 34.3734 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 102 © 4.9977 34.9371 34.3734 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 103 ] 2.8090 12.8438 43.1478 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 104 é 0.2084 30.7275 39.2725 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 105 z 13.6429 25.4543 25.1466 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 106 _ 50.7541 40.0861 5.1491 -Courier_New_Bold.ttf 104 é 30.7275 39.2725 107 ¥ 4.8624 31.2700 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 1 t -9.3351 29.3297 34.9636 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 2 h -10.8856 33.1226 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 3 a -1.0683 31.0352 26.4703 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 4 n -0.5517 31.9747 25.7043 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 5 P -8.4562 30.2957 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 6 o -0.3200 29.8457 26.4703 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 7 e -0.7462 30.7275 26.4703 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 8 : -0.0490 8.8509 25.1466 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 9 r -0.9183 30.0874 25.7043 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 10 l -10.4452 27.0256 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 11 i -10.7235 27.0256 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 12 1 -11.0913 24.7300 36.4608 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 13 | -10.8604 5.1491 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 14 N -8.4306 35.4864 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 15 f -10.5205 30.2957 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 16 g -0.4516 32.8149 36.6426 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 17 d -10.6158 33.9892 36.6691 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 18 W -8.3866 38.6293 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 19 s -0.7685 26.2679 26.4703 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 20 c -0.7250 29.6062 26.4703 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 21 u 0.0769 33.1226 25.9126 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 22 3 -11.3499 26.9346 37.0185 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 23 ~ 2.5754 27.6923 12.0861 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 24 # -15.0581 26.8256 41.5515 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 25 O -8.6366 32.6414 34.6234 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 26 ` -13.5240 11.1466 9.3586 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 27 @ -10.9080 21.9941 40.6703 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 28 F -8.1406 31.2852 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 29 S -8.9432 27.1846 34.6234 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 30 p -0.3385 34.2969 36.6426 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 31 “ -8.8786 23.8481 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 32 % -11.3659 26.0861 36.6691 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 33 £ -8.7449 29.3797 33.8574 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 34 . 17.8527 8.8509 7.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 35 2 -11.0584 26.5445 36.4608 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 36 5 -11.1248 27.0340 36.4608 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 37 m -0.7235 37.7404 25.7043 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 38 V -8.3196 38.4306 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 39 6 -11.2040 25.4543 37.0185 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 40 w 0.1496 33.3756 25.1466 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 41 T -8.6550 29.3213 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 42 M -8.3789 38.3481 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 43 G -8.4074 32.4596 34.6234 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 44 b -10.6231 34.2969 36.6691 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 45 9 -11.3856 25.4543 37.0185 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 46 ; 0.2502 14.2083 31.9019 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 47 D -8.6706 31.6670 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 48 L -8.5896 31.4253 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 49 y -0.1579 35.2713 36.0849 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 50 ‘ -8.8441 11.4543 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 51 \ -15.6524 25.9043 47.8074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 52 R -8.4649 34.9552 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 53 < -7.7513 33.3574 33.3392 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 54 4 -10.5349 25.2460 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 55 8 -11.2382 25.5784 37.0185 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 56 0 -11.6112 25.5784 37.0185 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 57 A -8.4650 38.2648 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 58 E -8.2718 30.3867 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 59 B -8.3709 32.8991 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 60 v -0.1067 35.0559 25.1466 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 61 k -10.7486 30.6450 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 62 J -8.7323 32.1830 34.3734 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 63 U -8.6762 34.9371 34.3734 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 64 j -10.7384 21.4448 46.8414 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 65 ( -10.9943 12.8522 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 66 7 -11.0757 24.9383 35.9031 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 67 § -10.8079 29.7880 41.0522 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 68 $ -15.0179 25.1466 47.5392 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 69 € -8.5384 32.2596 34.6234 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 70 / -15.7827 25.1466 47.8074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 71 C -8.7316 30.3457 34.6234 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 72 * -10.6675 23.8663 24.9466 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 73 ” -8.5133 23.8481 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 74 ? -8.5834 23.4828 34.6234 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 75 { -10.6026 14.7395 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 76 } -11.0151 14.7395 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 77 , 17.3533 11.4543 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 78 I -8.6193 24.7300 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 79 ° -17.2769 16.4380 16.4380 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 80 K -8.3317 34.4476 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 81 H -8.3732 30.7457 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 82 q -0.3116 33.9892 36.6426 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 83 & -7.4880 26.8522 33.1574 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 84 ’ -8.6626 11.4543 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 85 [ -11.0754 12.8438 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 86 - 6.0731 24.9383 5.1491 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 87 Y -8.3292 32.1337 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 88 Q -8.6807 32.6414 42.0682 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 89 " -8.5452 20.7160 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 90 ! -10.8329 9.3586 36.6691 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 91 x -0.1032 32.6414 25.1466 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 92 ) -10.7920 12.8522 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 93 = 1.3639 32.6414 14.9395 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 94 + -6.1868 29.3213 29.3213 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 95 X -8.4553 35.2448 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 96 » 1.9009 28.6895 23.2328 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 97 ' -8.6382 8.0373 17.2435 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 98 ¢ -15.6709 24.4306 43.2055 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 99 Z -8.4781 26.2945 33.6074 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 100 > -7.9975 33.3574 33.3392 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 101 ® -8.5350 34.9371 34.3734 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 102 © -8.6780 34.9371 34.3734 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 103 ] -10.9001 12.8438 43.1478 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 104 é -13.2270 30.7275 39.2725 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 105 z -0.0284 25.4543 25.1466 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 106 _ 37.5565 40.0861 5.1491 -Courier_New_Bold.ttf 105 z 25.4543 25.1466 107 ¥ -8.1804 31.2700 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 1 t -46.3841 29.3297 34.9636 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 2 h -48.3964 33.1226 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 3 a -38.1145 31.0352 26.4703 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 4 n -37.6016 31.9747 25.7043 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 5 P -45.8647 30.2957 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 6 o -37.9730 29.8457 26.4703 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 7 e -38.2505 30.7275 26.4703 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 8 : -37.4940 8.8509 25.1466 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 9 r -37.8819 30.0874 25.7043 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 10 l -48.1869 27.0256 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 11 i -48.2073 27.0256 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 12 1 -48.7571 24.7300 36.4608 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 13 | -47.9565 5.1491 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 14 N -46.0265 35.4864 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 15 f -48.3903 30.2957 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 16 g -38.4202 32.8149 36.6426 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 17 d -48.1708 33.9892 36.6691 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 18 W -45.8035 38.6293 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 19 s -37.9570 26.2679 26.4703 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 20 c -37.8088 29.6062 26.4703 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 21 u -37.4749 33.1226 25.9126 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 22 3 -48.7507 26.9346 37.0185 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 23 ~ -34.7612 27.6923 12.0861 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 24 # -52.3499 26.8256 41.5515 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 25 O -46.1923 32.6414 34.6234 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 26 ` -50.7617 11.1466 9.3586 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 27 @ -48.3641 21.9941 40.6703 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 28 F -46.1752 31.2852 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 29 S -46.0536 27.1846 34.6234 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 30 p -38.1197 34.2969 36.6426 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 31 “ -45.9939 23.8481 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 32 % -48.4329 26.0861 36.6691 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 33 £ -46.1567 29.3797 33.8574 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 34 . -19.3861 8.8509 7.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 35 2 -48.7890 26.5445 36.4608 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 36 5 -47.8561 27.0340 36.4608 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 37 m -38.2624 37.7404 25.7043 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 38 V -45.8379 38.4306 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 39 6 -48.9491 25.4543 37.0185 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 40 w -37.5565 33.3756 25.1466 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 41 T -45.7991 29.3213 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 42 M -45.6231 38.3481 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 43 G -46.0819 32.4596 34.6234 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 44 b -48.3816 34.2969 36.6691 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 45 9 -48.8396 25.4543 37.0185 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 46 ; -37.6042 14.2083 31.9019 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 47 D -46.0659 31.6670 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 48 L -46.0885 31.4253 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 49 y -37.5666 35.2713 36.0849 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 50 ‘ -46.2867 11.4543 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 51 \ -53.4950 25.9043 47.8074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 52 R -45.9060 34.9552 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 53 < -45.3597 33.3574 33.3392 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 54 4 -48.1465 25.2460 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 55 8 -48.8651 25.5784 37.0185 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 56 0 -48.9410 25.5784 37.0185 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 57 A -45.7021 38.2648 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 58 E -45.7489 30.3867 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 59 B -46.0929 32.8991 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 60 v -37.3713 35.0559 25.1466 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 61 k -48.1623 30.6450 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 62 J -46.1177 32.1830 34.3734 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 63 U -45.7401 34.9371 34.3734 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 64 j -48.3464 21.4448 46.8414 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 65 ( -48.1999 12.8522 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 66 7 -48.1164 24.9383 35.9031 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 67 § -48.2717 29.7880 41.0522 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 68 $ -52.1038 25.1466 47.5392 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 69 € -46.3586 32.2596 34.6234 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 70 / -53.5880 25.1466 47.8074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 71 C -46.4209 30.3457 34.6234 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 72 * -48.0274 23.8663 24.9466 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 73 ” -46.3760 23.8481 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 74 ? -46.1648 23.4828 34.6234 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 75 { -48.5358 14.7395 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 76 } -48.1958 14.7395 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 77 , -19.7553 11.4543 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 78 I -45.9250 24.7300 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 79 ° -54.5810 16.4380 16.4380 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 80 K -45.5538 34.4476 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 81 H -45.6345 30.7457 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 82 q -38.1457 33.9892 36.6426 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 83 & -44.7442 26.8522 33.1574 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 84 ’ -46.0529 11.4543 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 85 [ -48.1860 12.8438 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 86 - -31.0427 24.9383 5.1491 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 87 Y -45.7910 32.1337 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 88 Q -46.1274 32.6414 42.0682 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 89 " -45.9092 20.7160 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 90 ! -48.2743 9.3586 36.6691 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 91 x -37.6463 32.6414 25.1466 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 92 ) -48.3473 12.8522 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 93 = -35.9395 32.6414 14.9395 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 94 + -43.4321 29.3213 29.3213 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 95 X -45.7073 35.2448 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 96 » -35.6444 28.6895 23.2328 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 97 ' -46.2810 8.0373 17.2435 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 98 ¢ -52.7288 24.4306 43.2055 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 99 Z -46.2033 26.2945 33.6074 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 100 > -45.8035 33.3574 33.3392 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 101 ® -45.8862 34.9371 34.3734 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 102 © -45.8164 34.9371 34.3734 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 103 ] -48.4423 12.8438 43.1478 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 104 é -50.6888 30.7275 39.2725 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 105 z -37.5992 25.4543 25.1466 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 106 _ 0.0242 40.0861 5.1491 -Courier_New_Bold.ttf 106 _ 40.0861 5.1491 107 ¥ -45.9005 31.2700 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 1 t -0.7551 29.3297 34.9636 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 2 h -2.1729 33.1226 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 3 a 7.8867 31.0352 26.4703 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 4 n 8.2998 31.9747 25.7043 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 5 P -0.1288 30.2957 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 6 o 7.8520 29.8457 26.4703 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 7 e 7.5875 30.7275 26.4703 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 8 : 8.4696 8.8509 25.1466 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 9 r 8.1848 30.0874 25.7043 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 10 l -2.4533 27.0256 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 11 i -2.4226 27.0256 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 12 1 -2.7704 24.7300 36.4608 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 13 | -2.4874 5.1491 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 14 N -0.0256 35.4864 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 15 f -2.0973 30.2957 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 16 g 8.0090 32.8149 36.6426 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 17 d -2.3828 33.9892 36.6691 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 18 W -0.0667 38.6293 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 19 s 7.4948 26.2679 26.4703 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 20 c 7.8674 29.6062 26.4703 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 21 u 9.0214 33.1226 25.9126 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 22 3 -2.7232 26.9346 37.0185 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 23 ~ 10.9513 27.6923 12.0861 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 24 # -6.5524 26.8256 41.5515 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 25 O -0.1726 32.6414 34.6234 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 26 ` -5.0311 11.1466 9.3586 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 27 @ -2.0732 21.9941 40.6703 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 28 F -0.1274 31.2852 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 29 S -0.3649 27.1846 34.6234 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 30 p 7.7208 34.2969 36.6426 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 31 “ -0.2268 23.8481 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 32 % -2.5514 26.0861 36.6691 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 33 £ -0.0405 29.3797 33.8574 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 34 . 26.2793 8.8509 7.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 35 2 -3.1230 26.5445 36.4608 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 36 5 -1.7507 27.0340 36.4608 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 37 m 7.8076 37.7404 25.7043 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 38 V 0.0161 38.4306 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 39 6 -3.0518 25.4543 37.0185 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 40 w 8.2560 33.3756 25.1466 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 41 T -0.1154 29.3213 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 42 M -0.1774 38.3481 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 43 G -0.2967 32.4596 34.6234 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 44 b -2.0857 34.2969 36.6691 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 45 9 -2.4864 25.4543 37.0185 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 46 ; 8.4419 14.2083 31.9019 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 47 D 0.1385 31.6670 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 48 L 0.1730 31.4253 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 49 y 8.4877 35.2713 36.0849 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 50 ‘ -0.2306 11.4543 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 51 \ -7.3780 25.9043 47.8074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 52 R -0.0055 34.9552 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 53 < 0.0666 33.3574 33.3392 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 54 4 -2.4216 25.2460 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 55 8 -2.9264 25.5784 37.0185 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 56 0 -2.6635 25.5784 37.0185 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 57 A 0.0097 38.2648 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 58 E 0.0839 30.3867 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 59 B 0.0105 32.8991 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 60 v 8.3262 35.0559 25.1466 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 61 k -2.2233 30.6450 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 62 J 0.0594 32.1830 34.3734 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 63 U -0.0027 34.9371 34.3734 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 64 j -2.2636 21.4448 46.8414 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 65 ( -2.3346 12.8522 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 66 7 -2.5070 24.9383 35.9031 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 67 § -2.3341 29.7880 41.0522 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 68 $ -6.3426 25.1466 47.5392 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 69 € -0.1884 32.2596 34.6234 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 70 / -7.7144 25.1466 47.8074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 71 C 0.0856 30.3457 34.6234 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 72 * -2.4149 23.8663 24.9466 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 73 ” -0.1531 23.8481 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 74 ? -0.2515 23.4828 34.6234 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 75 { -1.8938 14.7395 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 76 } -2.2600 14.7395 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 77 , 25.8782 11.4543 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 78 I 0.2512 24.7300 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 79 ° -8.6538 16.4380 16.4380 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 80 K 0.0886 34.4476 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 81 H -0.0125 30.7457 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 82 q 7.8614 33.9892 36.6426 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 83 & 1.2646 26.8522 33.1574 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 84 ’ -0.2731 11.4543 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 85 [ -2.5209 12.8438 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 86 - 14.4167 24.9383 5.1491 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 87 Y -0.0769 32.1337 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 88 Q -0.0892 32.6414 42.0682 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 89 " -0.1393 20.7160 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 90 ! -2.1408 9.3586 36.6691 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 91 x 8.5777 32.6414 25.1466 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 92 ) -2.1544 12.8522 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 93 = 9.6013 32.6414 14.9395 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 94 + 2.5992 29.3213 29.3213 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 95 X 0.0255 35.2448 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 96 » 10.1804 28.6895 23.2328 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 97 ' -0.2686 8.0373 17.2435 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 98 ¢ -7.0685 24.4306 43.2055 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 99 Z -0.0494 26.2945 33.6074 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 100 > 0.2131 33.3574 33.3392 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 101 ® -0.1414 34.9371 34.3734 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 102 © -0.1000 34.9371 34.3734 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 103 ] -2.0245 12.8438 43.1478 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 104 é -4.4523 30.7275 39.2725 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 105 z 8.3603 25.4543 25.1466 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 106 _ 46.0530 40.0861 5.1491 -Courier_New_Bold.ttf 107 ¥ 31.2700 33.6074 107 ¥ 0.0330 31.2700 33.6074 -Georgia.ttf 1 t 18.7851 38.0914 1 t -0.1668 18.7851 38.0914 -Georgia.ttf 1 t 18.7851 38.0914 2 h -7.6278 31.5237 44.3365 -Georgia.ttf 1 t 18.7851 38.0914 3 a 7.8009 25.6635 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 4 n 7.8921 31.5237 29.1682 -Georgia.ttf 1 t 18.7851 38.0914 5 P -3.3477 31.6236 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 6 o 7.7224 27.2318 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 7 e 7.8659 24.6953 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 8 : 8.9222 7.9550 28.4038 -Georgia.ttf 1 t 18.7851 38.0914 9 r 7.6975 21.9550 29.1682 -Georgia.ttf 1 t 18.7851 38.0914 10 l -6.8925 14.8955 44.3365 -Georgia.ttf 1 t 18.7851 38.0914 11 i -6.7422 14.3538 43.8448 -Georgia.ttf 1 t 18.7851 38.0914 12 1 5.4125 19.8912 31.5047 -Georgia.ttf 1 t 18.7851 38.0914 13 | -6.3285 3.7547 55.3045 -Georgia.ttf 1 t 18.7851 38.0914 14 N -3.6660 42.0727 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 15 f -7.3591 22.1088 44.3365 -Georgia.ttf 1 t 18.7851 38.0914 16 g 7.9398 27.2356 42.0000 -Georgia.ttf 1 t 18.7851 38.0914 17 d -7.5203 30.9403 45.5047 -Georgia.ttf 1 t 18.7851 38.0914 18 W -3.4866 58.3365 40.6779 -Georgia.ttf 1 t 18.7851 38.0914 19 s 7.6671 20.9867 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 20 c 7.3310 24.1536 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 21 u 7.7308 31.5237 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 22 3 5.6139 27.3045 41.7500 -Georgia.ttf 1 t 18.7851 38.0914 23 ~ 15.4185 30.0403 10.4453 -Georgia.ttf 1 t 18.7851 38.0914 24 # 1.6920 29.1872 35.0594 -Georgia.ttf 1 t 18.7851 38.0914 25 O -4.6730 38.4953 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 26 ` -6.9257 11.6635 12.1362 -Georgia.ttf 1 t 18.7851 38.0914 27 @ -2.2126 44.6903 47.8912 -Georgia.ttf 1 t 18.7851 38.0914 28 F -3.6248 31.6736 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 29 S -4.7231 28.0000 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 30 p 7.3554 30.2638 42.0000 -Georgia.ttf 1 t 18.7851 38.0914 31 “ -6.3609 18.8041 15.1682 -Georgia.ttf 1 t 18.7851 38.0914 32 % -4.7146 41.5772 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 33 £ -4.5515 30.0448 41.5962 -Georgia.ttf 1 t 18.7851 38.0914 34 . 29.2892 7.9550 7.9550 -Georgia.ttf 1 t 18.7851 38.0914 35 2 5.1348 26.4090 31.5047 -Georgia.ttf 1 t 18.7851 38.0914 36 5 6.5686 26.8318 40.5818 -Georgia.ttf 1 t 18.7851 38.0914 37 m 7.9552 48.0867 29.1682 -Georgia.ttf 1 t 18.7851 38.0914 38 V -3.3147 41.3045 40.6779 -Georgia.ttf 1 t 18.7851 38.0914 39 6 -4.3374 27.7083 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 40 w 8.9549 44.3365 28.0000 -Georgia.ttf 1 t 18.7851 38.0914 41 T -3.6174 36.3815 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 42 M -3.6271 49.8549 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 43 G -4.5664 39.4135 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 44 b -7.2891 31.0781 46.4730 -Georgia.ttf 1 t 18.7851 38.0914 45 9 5.5524 27.7083 41.9500 -Georgia.ttf 1 t 18.7851 38.0914 46 ; 9.2129 9.5498 38.2453 -Georgia.ttf 1 t 18.7851 38.0914 47 D -3.5047 38.0914 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 48 L -3.7220 32.4730 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 49 y 8.9077 30.7403 40.8318 -Georgia.ttf 1 t 18.7851 38.0914 50 ‘ -6.1538 8.3588 15.1682 -Georgia.ttf 1 t 18.7851 38.0914 51 \ -6.2848 23.2770 55.3045 -Georgia.ttf 1 t 18.7851 38.0914 52 R -3.2108 39.2597 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 53 < 5.6244 26.4279 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 54 4 5.6649 29.8448 41.7500 -Georgia.ttf 1 t 18.7851 38.0914 55 8 -4.7519 28.7227 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 56 0 5.3470 29.8910 32.6730 -Georgia.ttf 1 t 18.7851 38.0914 57 A -3.3329 41.5962 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 58 E -3.4488 34.7056 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 59 B -3.3101 32.7646 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 60 v 9.2115 30.7403 28.0000 -Georgia.ttf 1 t 18.7851 38.0914 61 k -7.4063 31.4820 44.3365 -Georgia.ttf 1 t 18.7851 38.0914 62 J -3.4547 29.0144 41.5962 -Georgia.ttf 1 t 18.7851 38.0914 63 U -3.7049 42.2189 41.5962 -Georgia.ttf 1 t 18.7851 38.0914 64 j -6.6498 16.3365 56.6766 -Georgia.ttf 1 t 18.7851 38.0914 65 ( -6.2913 16.5865 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 66 7 6.4465 26.5818 40.5818 -Georgia.ttf 1 t 18.7851 38.0914 67 § -4.5511 22.5588 48.8094 -Georgia.ttf 1 t 18.7851 38.0914 68 $ -7.1703 27.3045 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 69 € -4.4942 36.6315 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 70 / -6.2612 23.2770 55.3045 -Georgia.ttf 1 t 18.7851 38.0914 71 C -4.8478 34.2950 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 72 * -4.8259 22.6315 19.9723 -Georgia.ttf 1 t 18.7851 38.0914 73 ” -6.4008 18.8041 15.1682 -Georgia.ttf 1 t 18.7851 38.0914 74 ? -4.6695 22.2277 42.0000 -Georgia.ttf 1 t 18.7851 38.0914 75 { -6.0782 21.2133 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 76 } -6.2776 21.2133 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 77 , 29.7766 9.5498 17.3047 -Georgia.ttf 1 t 18.7851 38.0914 78 I -3.6381 18.1351 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 79 ° -4.7319 18.4730 18.4730 -Georgia.ttf 1 t 18.7851 38.0914 80 K -3.5009 39.2597 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 81 H -3.2980 41.8878 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 82 q 6.5330 30.8903 43.1682 -Georgia.ttf 1 t 18.7851 38.0914 83 & -4.5274 39.2597 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 84 ’ -6.1270 8.3588 15.1682 -Georgia.ttf 1 t 18.7851 38.0914 85 [ -6.2537 15.1682 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 86 - 19.1713 17.0320 4.4730 -Georgia.ttf 1 t 18.7851 38.0914 87 Y -3.3281 38.9680 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 88 Q -4.2923 38.4953 52.5642 -Georgia.ttf 1 t 18.7851 38.0914 89 " -6.1983 17.7547 16.3365 -Georgia.ttf 1 t 18.7851 38.0914 90 ! -4.6372 7.9550 42.7644 -Georgia.ttf 1 t 18.7851 38.0914 91 x 8.8323 29.1682 28.0000 -Georgia.ttf 1 t 18.7851 38.0914 92 ) -6.1215 16.5865 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 93 = 13.5562 29.1682 14.4500 -Georgia.ttf 1 t 18.7851 38.0914 94 + 6.5008 29.4182 29.4182 -Georgia.ttf 1 t 18.7851 38.0914 95 X -3.7313 41.5962 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 96 » 10.2443 23.9998 23.2770 -Georgia.ttf 1 t 18.7851 38.0914 97 ' -6.2867 6.7867 16.3365 -Georgia.ttf 1 t 18.7851 38.0914 98 ¢ 0.6498 25.8241 44.7403 -Georgia.ttf 1 t 18.7851 38.0914 99 Z -3.3694 33.6912 40.4279 -Georgia.ttf 1 t 18.7851 38.0914 100 > 5.4002 26.4279 30.3365 -Georgia.ttf 1 t 18.7851 38.0914 101 ® -4.9085 50.3815 50.3815 -Georgia.ttf 1 t 18.7851 38.0914 102 © -4.9040 50.3815 50.3815 -Georgia.ttf 1 t 18.7851 38.0914 103 ] -6.1597 15.1682 52.4453 -Georgia.ttf 1 t 18.7851 38.0914 104 é -6.7062 24.6953 44.8092 -Georgia.ttf 1 t 18.7851 38.0914 105 z 8.7674 23.0270 28.0000 -Georgia.ttf 1 t 18.7851 38.0914 106 _ 42.1271 37.5498 2.7403 -Georgia.ttf 1 t 18.7851 38.0914 107 ¥ -3.5464 37.0770 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 1 t 7.4647 18.7851 38.0914 -Georgia.ttf 2 h 31.5237 44.3365 2 h -0.0958 31.5237 44.3365 -Georgia.ttf 2 h 31.5237 44.3365 3 a 15.1164 25.6635 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 4 n 14.9702 31.5237 29.1682 -Georgia.ttf 2 h 31.5237 44.3365 5 P 3.8116 31.6236 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 6 o 15.1461 27.2318 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 7 e 15.2502 24.6953 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 8 : 16.4319 7.9550 28.4038 -Georgia.ttf 2 h 31.5237 44.3365 9 r 15.1409 21.9550 29.1682 -Georgia.ttf 2 h 31.5237 44.3365 10 l 0.0038 14.8955 44.3365 -Georgia.ttf 2 h 31.5237 44.3365 11 i 0.4981 14.3538 43.8448 -Georgia.ttf 2 h 31.5237 44.3365 12 1 12.7121 19.8912 31.5047 -Georgia.ttf 2 h 31.5237 44.3365 13 | 1.3109 3.7547 55.3045 -Georgia.ttf 2 h 31.5237 44.3365 14 N 4.1826 42.0727 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 15 f 0.2397 22.1088 44.3365 -Georgia.ttf 2 h 31.5237 44.3365 16 g 15.1385 27.2356 42.0000 -Georgia.ttf 2 h 31.5237 44.3365 17 d 0.0078 30.9403 45.5047 -Georgia.ttf 2 h 31.5237 44.3365 18 W 4.0314 58.3365 40.6779 -Georgia.ttf 2 h 31.5237 44.3365 19 s 15.2288 20.9867 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 20 c 15.1232 24.1536 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 21 u 15.1962 31.5237 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 22 3 12.8430 27.3045 41.7500 -Georgia.ttf 2 h 31.5237 44.3365 23 ~ 23.1324 30.0403 10.4453 -Georgia.ttf 2 h 31.5237 44.3365 24 # 8.6018 29.1872 35.0594 -Georgia.ttf 2 h 31.5237 44.3365 25 O 2.7853 38.4953 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 26 ` 0.5997 11.6635 12.1362 -Georgia.ttf 2 h 31.5237 44.3365 27 @ 5.3504 44.6903 47.8912 -Georgia.ttf 2 h 31.5237 44.3365 28 F 3.8960 31.6736 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 29 S 2.9146 28.0000 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 30 p 15.0968 30.2638 42.0000 -Georgia.ttf 2 h 31.5237 44.3365 31 “ 1.0621 18.8041 15.1682 -Georgia.ttf 2 h 31.5237 44.3365 32 % 2.8274 41.5772 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 33 £ 2.8617 30.0448 41.5962 -Georgia.ttf 2 h 31.5237 44.3365 34 . 36.8824 7.9550 7.9550 -Georgia.ttf 2 h 31.5237 44.3365 35 2 12.9664 26.4090 31.5047 -Georgia.ttf 2 h 31.5237 44.3365 36 5 13.7952 26.8318 40.5818 -Georgia.ttf 2 h 31.5237 44.3365 37 m 15.2873 48.0867 29.1682 -Georgia.ttf 2 h 31.5237 44.3365 38 V 3.6823 41.3045 40.6779 -Georgia.ttf 2 h 31.5237 44.3365 39 6 2.4170 27.7083 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 40 w 16.4143 44.3365 28.0000 -Georgia.ttf 2 h 31.5237 44.3365 41 T 3.6074 36.3815 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 42 M 3.9957 49.8549 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 43 G 2.8928 39.4135 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 44 b -0.1999 31.0781 46.4730 -Georgia.ttf 2 h 31.5237 44.3365 45 9 12.8707 27.7083 41.9500 -Georgia.ttf 2 h 31.5237 44.3365 46 ; 16.4428 9.5498 38.2453 -Georgia.ttf 2 h 31.5237 44.3365 47 D 3.8649 38.0914 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 48 L 3.9865 32.4730 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 49 y 16.1854 30.7403 40.8318 -Georgia.ttf 2 h 31.5237 44.3365 50 ‘ 1.0924 8.3588 15.1682 -Georgia.ttf 2 h 31.5237 44.3365 51 \ 1.2169 23.2770 55.3045 -Georgia.ttf 2 h 31.5237 44.3365 52 R 4.2395 39.2597 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 53 < 13.2560 26.4279 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 54 4 12.9774 29.8448 41.7500 -Georgia.ttf 2 h 31.5237 44.3365 55 8 2.5918 28.7227 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 56 0 12.8378 29.8910 32.6730 -Georgia.ttf 2 h 31.5237 44.3365 57 A 3.8362 41.5962 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 58 E 3.8294 34.7056 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 59 B 3.8650 32.7646 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 60 v 16.1384 30.7403 28.0000 -Georgia.ttf 2 h 31.5237 44.3365 61 k 0.0617 31.4820 44.3365 -Georgia.ttf 2 h 31.5237 44.3365 62 J 3.6486 29.0144 41.5962 -Georgia.ttf 2 h 31.5237 44.3365 63 U 3.4961 42.2189 41.5962 -Georgia.ttf 2 h 31.5237 44.3365 64 j 0.5663 16.3365 56.6766 -Georgia.ttf 2 h 31.5237 44.3365 65 ( 1.1553 16.5865 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 66 7 13.9348 26.5818 40.5818 -Georgia.ttf 2 h 31.5237 44.3365 67 § 2.8984 22.5588 48.8094 -Georgia.ttf 2 h 31.5237 44.3365 68 $ 0.1592 27.3045 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 69 € 2.7718 36.6315 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 70 / 1.1947 23.2770 55.3045 -Georgia.ttf 2 h 31.5237 44.3365 71 C 2.6487 34.2950 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 72 * 2.8274 22.6315 19.9723 -Georgia.ttf 2 h 31.5237 44.3365 73 ” 1.3250 18.8041 15.1682 -Georgia.ttf 2 h 31.5237 44.3365 74 ? 2.8558 22.2277 42.0000 -Georgia.ttf 2 h 31.5237 44.3365 75 { 1.2373 21.2133 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 76 } 1.0583 21.2133 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 77 , 37.2556 9.5498 17.3047 -Georgia.ttf 2 h 31.5237 44.3365 78 I 4.4446 18.1351 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 79 ° 2.4290 18.4730 18.4730 -Georgia.ttf 2 h 31.5237 44.3365 80 K 4.1556 39.2597 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 81 H 4.3026 41.8878 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 82 q 14.5102 30.8903 43.1682 -Georgia.ttf 2 h 31.5237 44.3365 83 & 2.5328 39.2597 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 84 ’ 1.1633 8.3588 15.1682 -Georgia.ttf 2 h 31.5237 44.3365 85 [ 1.0676 15.1682 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 86 - 26.5248 17.0320 4.4730 -Georgia.ttf 2 h 31.5237 44.3365 87 Y 3.8357 38.9680 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 88 Q 2.8664 38.4953 52.5642 -Georgia.ttf 2 h 31.5237 44.3365 89 " 1.0319 17.7547 16.3365 -Georgia.ttf 2 h 31.5237 44.3365 90 ! 2.6011 7.9550 42.7644 -Georgia.ttf 2 h 31.5237 44.3365 91 x 16.1099 29.1682 28.0000 -Georgia.ttf 2 h 31.5237 44.3365 92 ) 1.3098 16.5865 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 93 = 20.9570 29.1682 14.4500 -Georgia.ttf 2 h 31.5237 44.3365 94 + 13.7588 29.4182 29.4182 -Georgia.ttf 2 h 31.5237 44.3365 95 X 4.0841 41.5962 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 96 » 17.7071 23.9998 23.2770 -Georgia.ttf 2 h 31.5237 44.3365 97 ' 1.0773 6.7867 16.3365 -Georgia.ttf 2 h 31.5237 44.3365 98 ¢ 8.0264 25.8241 44.7403 -Georgia.ttf 2 h 31.5237 44.3365 99 Z 3.9058 33.6912 40.4279 -Georgia.ttf 2 h 31.5237 44.3365 100 > 13.0339 26.4279 30.3365 -Georgia.ttf 2 h 31.5237 44.3365 101 ® 2.3403 50.3815 50.3815 -Georgia.ttf 2 h 31.5237 44.3365 102 © 2.4639 50.3815 50.3815 -Georgia.ttf 2 h 31.5237 44.3365 103 ] 1.3036 15.1682 52.4453 -Georgia.ttf 2 h 31.5237 44.3365 104 é 0.8883 24.6953 44.8092 -Georgia.ttf 2 h 31.5237 44.3365 105 z 16.5857 23.0270 28.0000 -Georgia.ttf 2 h 31.5237 44.3365 106 _ 49.2740 37.5498 2.7403 -Georgia.ttf 2 h 31.5237 44.3365 107 ¥ 3.9142 37.0770 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 1 t -7.4476 18.7851 38.0914 -Georgia.ttf 3 a 25.6635 30.3365 2 h -15.3333 31.5237 44.3365 -Georgia.ttf 3 a 25.6635 30.3365 3 a -0.0371 25.6635 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 4 n -0.0065 31.5237 29.1682 -Georgia.ttf 3 a 25.6635 30.3365 5 P -11.0237 31.6236 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 6 o 0.0861 27.2318 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 7 e 0.1053 24.6953 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 8 : 0.8567 7.9550 28.4038 -Georgia.ttf 3 a 25.6635 30.3365 9 r 0.0871 21.9550 29.1682 -Georgia.ttf 3 a 25.6635 30.3365 10 l -15.2484 14.8955 44.3365 -Georgia.ttf 3 a 25.6635 30.3365 11 i -14.6798 14.3538 43.8448 -Georgia.ttf 3 a 25.6635 30.3365 12 1 -2.2448 19.8912 31.5047 -Georgia.ttf 3 a 25.6635 30.3365 13 | -13.9588 3.7547 55.3045 -Georgia.ttf 3 a 25.6635 30.3365 14 N -11.2542 42.0727 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 15 f -14.9542 22.1088 44.3365 -Georgia.ttf 3 a 25.6635 30.3365 16 g -0.0909 27.2356 42.0000 -Georgia.ttf 3 a 25.6635 30.3365 17 d -15.4861 30.9403 45.5047 -Georgia.ttf 3 a 25.6635 30.3365 18 W -11.1740 58.3365 40.6779 -Georgia.ttf 3 a 25.6635 30.3365 19 s 0.1059 20.9867 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 20 c -0.0213 24.1536 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 21 u -0.0417 31.5237 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 22 3 -2.3815 27.3045 41.7500 -Georgia.ttf 3 a 25.6635 30.3365 23 ~ 7.9309 30.0403 10.4453 -Georgia.ttf 3 a 25.6635 30.3365 24 # -5.6962 29.1872 35.0594 -Georgia.ttf 3 a 25.6635 30.3365 25 O -12.5522 38.4953 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 26 ` -14.9671 11.6635 12.1362 -Georgia.ttf 3 a 25.6635 30.3365 27 @ -9.6510 44.6903 47.8912 -Georgia.ttf 3 a 25.6635 30.3365 28 F -11.3583 31.6736 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 29 S -12.2551 28.0000 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 30 p 0.3002 30.2638 42.0000 -Georgia.ttf 3 a 25.6635 30.3365 31 “ -13.9653 18.8041 15.1682 -Georgia.ttf 3 a 25.6635 30.3365 32 % -12.5053 41.5772 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 33 £ -12.8005 30.0448 41.5962 -Georgia.ttf 3 a 25.6635 30.3365 34 . 21.4300 7.9550 7.9550 -Georgia.ttf 3 a 25.6635 30.3365 35 2 -2.4324 26.4090 31.5047 -Georgia.ttf 3 a 25.6635 30.3365 36 5 -1.2529 26.8318 40.5818 -Georgia.ttf 3 a 25.6635 30.3365 37 m 0.1339 48.0867 29.1682 -Georgia.ttf 3 a 25.6635 30.3365 38 V -11.3142 41.3045 40.6779 -Georgia.ttf 3 a 25.6635 30.3365 39 6 -12.1717 27.7083 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 40 w 1.2487 44.3365 28.0000 -Georgia.ttf 3 a 25.6635 30.3365 41 T -11.2106 36.3815 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 42 M -11.4577 49.8549 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 43 G -12.4344 39.4135 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 44 b -14.9746 31.0781 46.4730 -Georgia.ttf 3 a 25.6635 30.3365 45 9 -2.0986 27.7083 41.9500 -Georgia.ttf 3 a 25.6635 30.3365 46 ; 1.0784 9.5498 38.2453 -Georgia.ttf 3 a 25.6635 30.3365 47 D -11.2720 38.0914 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 48 L -11.1745 32.4730 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 49 y 1.0444 30.7403 40.8318 -Georgia.ttf 3 a 25.6635 30.3365 50 ‘ -13.8294 8.3588 15.1682 -Georgia.ttf 3 a 25.6635 30.3365 51 \ -13.8758 23.2770 55.3045 -Georgia.ttf 3 a 25.6635 30.3365 52 R -11.3682 39.2597 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 53 < -2.1392 26.4279 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 54 4 -2.2082 29.8448 41.7500 -Georgia.ttf 3 a 25.6635 30.3365 55 8 -12.3964 28.7227 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 56 0 -2.4801 29.8910 32.6730 -Georgia.ttf 3 a 25.6635 30.3365 57 A -11.1133 41.5962 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 58 E -11.2954 34.7056 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 59 B -11.2597 32.7646 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 60 v 0.9857 30.7403 28.0000 -Georgia.ttf 3 a 25.6635 30.3365 61 k -15.3300 31.4820 44.3365 -Georgia.ttf 3 a 25.6635 30.3365 62 J -11.5456 29.0144 41.5962 -Georgia.ttf 3 a 25.6635 30.3365 63 U -11.3857 42.2189 41.5962 -Georgia.ttf 3 a 25.6635 30.3365 64 j -14.6953 16.3365 56.6766 -Georgia.ttf 3 a 25.6635 30.3365 65 ( -13.6602 16.5865 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 66 7 -1.1956 26.5818 40.5818 -Georgia.ttf 3 a 25.6635 30.3365 67 § -12.6541 22.5588 48.8094 -Georgia.ttf 3 a 25.6635 30.3365 68 $ -15.0813 27.3045 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 69 € -12.4682 36.6315 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 70 / -13.7828 23.2770 55.3045 -Georgia.ttf 3 a 25.6635 30.3365 71 C -12.5427 34.2950 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 72 * -12.3648 22.6315 19.9723 -Georgia.ttf 3 a 25.6635 30.3365 73 ” -14.0292 18.8041 15.1682 -Georgia.ttf 3 a 25.6635 30.3365 74 ? -12.5850 22.2277 42.0000 -Georgia.ttf 3 a 25.6635 30.3365 75 { -14.0658 21.2133 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 76 } -13.9359 21.2133 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 77 , 22.0801 9.5498 17.3047 -Georgia.ttf 3 a 25.6635 30.3365 78 I -11.3398 18.1351 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 79 ° -12.1953 18.4730 18.4730 -Georgia.ttf 3 a 25.6635 30.3365 80 K -11.0626 39.2597 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 81 H -11.4390 41.8878 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 82 q -1.0014 30.8903 43.1682 -Georgia.ttf 3 a 25.6635 30.3365 83 & -12.1699 39.2597 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 84 ’ -13.9661 8.3588 15.1682 -Georgia.ttf 3 a 25.6635 30.3365 85 [ -13.8804 15.1682 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 86 - 11.6678 17.0320 4.4730 -Georgia.ttf 3 a 25.6635 30.3365 87 Y -11.0432 38.9680 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 88 Q -12.4191 38.4953 52.5642 -Georgia.ttf 3 a 25.6635 30.3365 89 " -14.0371 17.7547 16.3365 -Georgia.ttf 3 a 25.6635 30.3365 90 ! -12.5091 7.9550 42.7644 -Georgia.ttf 3 a 25.6635 30.3365 91 x 1.1679 29.1682 28.0000 -Georgia.ttf 3 a 25.6635 30.3365 92 ) -14.2423 16.5865 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 93 = 5.7681 29.1682 14.4500 -Georgia.ttf 3 a 25.6635 30.3365 94 + -1.7635 29.4182 29.4182 -Georgia.ttf 3 a 25.6635 30.3365 95 X -11.3997 41.5962 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 96 » 2.3922 23.9998 23.2770 -Georgia.ttf 3 a 25.6635 30.3365 97 ' -14.0325 6.7867 16.3365 -Georgia.ttf 3 a 25.6635 30.3365 98 ¢ -7.2192 25.8241 44.7403 -Georgia.ttf 3 a 25.6635 30.3365 99 Z -11.3184 33.6912 40.4279 -Georgia.ttf 3 a 25.6635 30.3365 100 > -2.0823 26.4279 30.3365 -Georgia.ttf 3 a 25.6635 30.3365 101 ® -12.8906 50.3815 50.3815 -Georgia.ttf 3 a 25.6635 30.3365 102 © -12.6677 50.3815 50.3815 -Georgia.ttf 3 a 25.6635 30.3365 103 ] -14.1451 15.1682 52.4453 -Georgia.ttf 3 a 25.6635 30.3365 104 é -14.6080 24.6953 44.8092 -Georgia.ttf 3 a 25.6635 30.3365 105 z 1.1525 23.0270 28.0000 -Georgia.ttf 3 a 25.6635 30.3365 106 _ 34.3762 37.5498 2.7403 -Georgia.ttf 3 a 25.6635 30.3365 107 ¥ -11.3513 37.0770 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 1 t -7.8144 18.7851 38.0914 -Georgia.ttf 4 n 31.5237 29.1682 2 h -14.9607 31.5237 44.3365 -Georgia.ttf 4 n 31.5237 29.1682 3 a 0.0374 25.6635 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 4 n 0.0895 31.5237 29.1682 -Georgia.ttf 4 n 31.5237 29.1682 5 P -11.3766 31.6236 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 6 o 0.1353 27.2318 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 7 e 0.2013 24.6953 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 8 : 1.1859 7.9550 28.4038 -Georgia.ttf 4 n 31.5237 29.1682 9 r 0.3363 21.9550 29.1682 -Georgia.ttf 4 n 31.5237 29.1682 10 l -14.9273 14.8955 44.3365 -Georgia.ttf 4 n 31.5237 29.1682 11 i -14.6392 14.3538 43.8448 -Georgia.ttf 4 n 31.5237 29.1682 12 1 -2.3438 19.8912 31.5047 -Georgia.ttf 4 n 31.5237 29.1682 13 | -14.0460 3.7547 55.3045 -Georgia.ttf 4 n 31.5237 29.1682 14 N -11.1290 42.0727 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 15 f -15.2619 22.1088 44.3365 -Georgia.ttf 4 n 31.5237 29.1682 16 g 0.0014 27.2356 42.0000 -Georgia.ttf 4 n 31.5237 29.1682 17 d -15.0062 30.9403 45.5047 -Georgia.ttf 4 n 31.5237 29.1682 18 W -11.1158 58.3365 40.6779 -Georgia.ttf 4 n 31.5237 29.1682 19 s -0.0976 20.9867 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 20 c -0.0032 24.1536 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 21 u -0.1196 31.5237 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 22 3 -2.4618 27.3045 41.7500 -Georgia.ttf 4 n 31.5237 29.1682 23 ~ 7.7579 30.0403 10.4453 -Georgia.ttf 4 n 31.5237 29.1682 24 # -5.9426 29.1872 35.0594 -Georgia.ttf 4 n 31.5237 29.1682 25 O -12.3664 38.4953 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 26 ` -14.5872 11.6635 12.1362 -Georgia.ttf 4 n 31.5237 29.1682 27 @ -9.7619 44.6903 47.8912 -Georgia.ttf 4 n 31.5237 29.1682 28 F -11.2428 31.6736 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 29 S -12.5248 28.0000 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 30 p 0.1047 30.2638 42.0000 -Georgia.ttf 4 n 31.5237 29.1682 31 “ -13.9894 18.8041 15.1682 -Georgia.ttf 4 n 31.5237 29.1682 32 % -12.6230 41.5772 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 33 £ -12.4455 30.0448 41.5962 -Georgia.ttf 4 n 31.5237 29.1682 34 . 21.6664 7.9550 7.9550 -Georgia.ttf 4 n 31.5237 29.1682 35 2 -2.3365 26.4090 31.5047 -Georgia.ttf 4 n 31.5237 29.1682 36 5 -1.2452 26.8318 40.5818 -Georgia.ttf 4 n 31.5237 29.1682 37 m -0.1357 48.0867 29.1682 -Georgia.ttf 4 n 31.5237 29.1682 38 V -11.0711 41.3045 40.6779 -Georgia.ttf 4 n 31.5237 29.1682 39 6 -12.2606 27.7083 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 40 w 1.2554 44.3365 28.0000 -Georgia.ttf 4 n 31.5237 29.1682 41 T -11.3041 36.3815 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 42 M -11.4658 49.8549 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 43 G -12.4293 39.4135 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 44 b -15.3720 31.0781 46.4730 -Georgia.ttf 4 n 31.5237 29.1682 45 9 -2.3779 27.7083 41.9500 -Georgia.ttf 4 n 31.5237 29.1682 46 ; 1.2716 9.5498 38.2453 -Georgia.ttf 4 n 31.5237 29.1682 47 D -11.4701 38.0914 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 48 L -11.1267 32.4730 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 49 y 1.0867 30.7403 40.8318 -Georgia.ttf 4 n 31.5237 29.1682 50 ‘ -14.1224 8.3588 15.1682 -Georgia.ttf 4 n 31.5237 29.1682 51 \ -13.9391 23.2770 55.3045 -Georgia.ttf 4 n 31.5237 29.1682 52 R -11.2610 39.2597 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 53 < -2.0241 26.4279 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 54 4 -2.4978 29.8448 41.7500 -Georgia.ttf 4 n 31.5237 29.1682 55 8 -12.2946 28.7227 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 56 0 -2.0454 29.8910 32.6730 -Georgia.ttf 4 n 31.5237 29.1682 57 A -11.4125 41.5962 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 58 E -11.2981 34.7056 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 59 B -11.2007 32.7646 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 60 v 1.0933 30.7403 28.0000 -Georgia.ttf 4 n 31.5237 29.1682 61 k -15.0674 31.4820 44.3365 -Georgia.ttf 4 n 31.5237 29.1682 62 J -11.2702 29.0144 41.5962 -Georgia.ttf 4 n 31.5237 29.1682 63 U -11.1109 42.2189 41.5962 -Georgia.ttf 4 n 31.5237 29.1682 64 j -14.5662 16.3365 56.6766 -Georgia.ttf 4 n 31.5237 29.1682 65 ( -13.7943 16.5865 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 66 7 -1.1056 26.5818 40.5818 -Georgia.ttf 4 n 31.5237 29.1682 67 § -12.2011 22.5588 48.8094 -Georgia.ttf 4 n 31.5237 29.1682 68 $ -14.6569 27.3045 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 69 € -12.4591 36.6315 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 70 / -14.0087 23.2770 55.3045 -Georgia.ttf 4 n 31.5237 29.1682 71 C -12.3189 34.2950 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 72 * -12.0573 22.6315 19.9723 -Georgia.ttf 4 n 31.5237 29.1682 73 ” -13.9545 18.8041 15.1682 -Georgia.ttf 4 n 31.5237 29.1682 74 ? -12.3624 22.2277 42.0000 -Georgia.ttf 4 n 31.5237 29.1682 75 { -13.9762 21.2133 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 76 } -14.1613 21.2133 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 77 , 22.0606 9.5498 17.3047 -Georgia.ttf 4 n 31.5237 29.1682 78 I -11.5692 18.1351 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 79 ° -12.4466 18.4730 18.4730 -Georgia.ttf 4 n 31.5237 29.1682 80 K -11.2415 39.2597 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 81 H -11.1621 41.8878 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 82 q -1.2962 30.8903 43.1682 -Georgia.ttf 4 n 31.5237 29.1682 83 & -12.4317 39.2597 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 84 ’ -13.9927 8.3588 15.1682 -Georgia.ttf 4 n 31.5237 29.1682 85 [ -14.0658 15.1682 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 86 - 11.3222 17.0320 4.4730 -Georgia.ttf 4 n 31.5237 29.1682 87 Y -11.2729 38.9680 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 88 Q -12.3206 38.4953 52.5642 -Georgia.ttf 4 n 31.5237 29.1682 89 " -13.9458 17.7547 16.3365 -Georgia.ttf 4 n 31.5237 29.1682 90 ! -12.6707 7.9550 42.7644 -Georgia.ttf 4 n 31.5237 29.1682 91 x 1.3268 29.1682 28.0000 -Georgia.ttf 4 n 31.5237 29.1682 92 ) -13.8804 16.5865 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 93 = 6.1145 29.1682 14.4500 -Georgia.ttf 4 n 31.5237 29.1682 94 + -1.4957 29.4182 29.4182 -Georgia.ttf 4 n 31.5237 29.1682 95 X -11.1680 41.5962 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 96 » 2.6473 23.9998 23.2770 -Georgia.ttf 4 n 31.5237 29.1682 97 ' -14.1766 6.7867 16.3365 -Georgia.ttf 4 n 31.5237 29.1682 98 ¢ -6.8337 25.8241 44.7403 -Georgia.ttf 4 n 31.5237 29.1682 99 Z -11.1680 33.6912 40.4279 -Georgia.ttf 4 n 31.5237 29.1682 100 > -2.0387 26.4279 30.3365 -Georgia.ttf 4 n 31.5237 29.1682 101 ® -12.8864 50.3815 50.3815 -Georgia.ttf 4 n 31.5237 29.1682 102 © -12.9058 50.3815 50.3815 -Georgia.ttf 4 n 31.5237 29.1682 103 ] -14.1691 15.1682 52.4453 -Georgia.ttf 4 n 31.5237 29.1682 104 é -14.3811 24.6953 44.8092 -Georgia.ttf 4 n 31.5237 29.1682 105 z 1.2099 23.0270 28.0000 -Georgia.ttf 4 n 31.5237 29.1682 106 _ 34.2450 37.5498 2.7403 -Georgia.ttf 4 n 31.5237 29.1682 107 ¥ -11.3287 37.0770 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 1 t 3.2456 18.7851 38.0914 -Georgia.ttf 5 P 31.6236 40.4279 2 h -4.0276 31.5237 44.3365 -Georgia.ttf 5 P 31.6236 40.4279 3 a 11.1004 25.6635 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 4 n 11.3122 31.5237 29.1682 -Georgia.ttf 5 P 31.6236 40.4279 5 P -0.1297 31.6236 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 6 o 11.4839 27.2318 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 7 e 11.3217 24.6953 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 8 : 12.4691 7.9550 28.4038 -Georgia.ttf 5 P 31.6236 40.4279 9 r 11.0906 21.9550 29.1682 -Georgia.ttf 5 P 31.6236 40.4279 10 l -3.7021 14.8955 44.3365 -Georgia.ttf 5 P 31.6236 40.4279 11 i -3.4642 14.3538 43.8448 -Georgia.ttf 5 P 31.6236 40.4279 12 1 8.8445 19.8912 31.5047 -Georgia.ttf 5 P 31.6236 40.4279 13 | -2.4953 3.7547 55.3045 -Georgia.ttf 5 P 31.6236 40.4279 14 N -0.0801 42.0727 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 15 f -3.9363 22.1088 44.3365 -Georgia.ttf 5 P 31.6236 40.4279 16 g 11.3963 27.2356 42.0000 -Georgia.ttf 5 P 31.6236 40.4279 17 d -3.9526 30.9403 45.5047 -Georgia.ttf 5 P 31.6236 40.4279 18 W -0.0899 58.3365 40.6779 -Georgia.ttf 5 P 31.6236 40.4279 19 s 10.9260 20.9867 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 20 c 11.0534 24.1536 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 21 u 11.1712 31.5237 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 22 3 8.8452 27.3045 41.7500 -Georgia.ttf 5 P 31.6236 40.4279 23 ~ 19.5006 30.0403 10.4453 -Georgia.ttf 5 P 31.6236 40.4279 24 # 5.3212 29.1872 35.0594 -Georgia.ttf 5 P 31.6236 40.4279 25 O -1.2676 38.4953 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 26 ` -3.3255 11.6635 12.1362 -Georgia.ttf 5 P 31.6236 40.4279 27 @ 1.3535 44.6903 47.8912 -Georgia.ttf 5 P 31.6236 40.4279 28 F 0.0023 31.6736 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 29 S -1.3925 28.0000 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 30 p 11.4529 30.2638 42.0000 -Georgia.ttf 5 P 31.6236 40.4279 31 “ -2.8098 18.8041 15.1682 -Georgia.ttf 5 P 31.6236 40.4279 32 % -1.2998 41.5772 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 33 £ -0.9432 30.0448 41.5962 -Georgia.ttf 5 P 31.6236 40.4279 34 . 32.8499 7.9550 7.9550 -Georgia.ttf 5 P 31.6236 40.4279 35 2 8.8300 26.4090 31.5047 -Georgia.ttf 5 P 31.6236 40.4279 36 5 10.2143 26.8318 40.5818 -Georgia.ttf 5 P 31.6236 40.4279 37 m 10.9625 48.0867 29.1682 -Georgia.ttf 5 P 31.6236 40.4279 38 V 0.0213 41.3045 40.6779 -Georgia.ttf 5 P 31.6236 40.4279 39 6 -1.2809 27.7083 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 40 w 12.2738 44.3365 28.0000 -Georgia.ttf 5 P 31.6236 40.4279 41 T 0.0812 36.3815 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 42 M -0.0812 49.8549 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 43 G -1.2696 39.4135 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 44 b -3.9814 31.0781 46.4730 -Georgia.ttf 5 P 31.6236 40.4279 45 9 9.0120 27.7083 41.9500 -Georgia.ttf 5 P 31.6236 40.4279 46 ; 12.1717 9.5498 38.2453 -Georgia.ttf 5 P 31.6236 40.4279 47 D 0.2201 38.0914 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 48 L 0.1237 32.4730 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 49 y 12.5924 30.7403 40.8318 -Georgia.ttf 5 P 31.6236 40.4279 50 ‘ -2.5356 8.3588 15.1682 -Georgia.ttf 5 P 31.6236 40.4279 51 \ -2.7306 23.2770 55.3045 -Georgia.ttf 5 P 31.6236 40.4279 52 R 0.0373 39.2597 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 53 < 9.2033 26.4279 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 54 4 8.8861 29.8448 41.7500 -Georgia.ttf 5 P 31.6236 40.4279 55 8 -1.1266 28.7227 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 56 0 8.7703 29.8910 32.6730 -Georgia.ttf 5 P 31.6236 40.4279 57 A 0.1871 41.5962 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 58 E -0.1526 34.7056 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 59 B -0.3425 32.7646 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 60 v 12.4599 30.7403 28.0000 -Georgia.ttf 5 P 31.6236 40.4279 61 k -4.0671 31.4820 44.3365 -Georgia.ttf 5 P 31.6236 40.4279 62 J 0.0548 29.0144 41.5962 -Georgia.ttf 5 P 31.6236 40.4279 63 U 0.0347 42.2189 41.5962 -Georgia.ttf 5 P 31.6236 40.4279 64 j -3.1881 16.3365 56.6766 -Georgia.ttf 5 P 31.6236 40.4279 65 ( -2.5377 16.5865 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 66 7 10.3055 26.5818 40.5818 -Georgia.ttf 5 P 31.6236 40.4279 67 § -1.0086 22.5588 48.8094 -Georgia.ttf 5 P 31.6236 40.4279 68 $ -3.6229 27.3045 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 69 € -1.3414 36.6315 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 70 / -2.9299 23.2770 55.3045 -Georgia.ttf 5 P 31.6236 40.4279 71 C -1.2889 34.2950 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 72 * -1.0959 22.6315 19.9723 -Georgia.ttf 5 P 31.6236 40.4279 73 ” -2.7371 18.8041 15.1682 -Georgia.ttf 5 P 31.6236 40.4279 74 ? -0.7869 22.2277 42.0000 -Georgia.ttf 5 P 31.6236 40.4279 75 { -2.7201 21.2133 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 76 } -3.0341 21.2133 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 77 , 33.1980 9.5498 17.3047 -Georgia.ttf 5 P 31.6236 40.4279 78 I 0.2127 18.1351 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 79 ° -1.1770 18.4730 18.4730 -Georgia.ttf 5 P 31.6236 40.4279 80 K -0.1433 39.2597 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 81 H 0.2683 41.8878 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 82 q 10.2500 30.8903 43.1682 -Georgia.ttf 5 P 31.6236 40.4279 83 & -1.4097 39.2597 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 84 ’ -2.7931 8.3588 15.1682 -Georgia.ttf 5 P 31.6236 40.4279 85 [ -2.7801 15.1682 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 86 - 22.8443 17.0320 4.4730 -Georgia.ttf 5 P 31.6236 40.4279 87 Y -0.1626 38.9680 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 88 Q -1.0496 38.4953 52.5642 -Georgia.ttf 5 P 31.6236 40.4279 89 " -2.8631 17.7547 16.3365 -Georgia.ttf 5 P 31.6236 40.4279 90 ! -0.9444 7.9550 42.7644 -Georgia.ttf 5 P 31.6236 40.4279 91 x 12.4404 29.1682 28.0000 -Georgia.ttf 5 P 31.6236 40.4279 92 ) -2.6844 16.5865 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 93 = 17.3634 29.1682 14.4500 -Georgia.ttf 5 P 31.6236 40.4279 94 + 9.7528 29.4182 29.4182 -Georgia.ttf 5 P 31.6236 40.4279 95 X -0.2414 41.5962 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 96 » 13.6733 23.9998 23.2770 -Georgia.ttf 5 P 31.6236 40.4279 97 ' -2.9521 6.7867 16.3365 -Georgia.ttf 5 P 31.6236 40.4279 98 ¢ 4.1035 25.8241 44.7403 -Georgia.ttf 5 P 31.6236 40.4279 99 Z -0.1672 33.6912 40.4279 -Georgia.ttf 5 P 31.6236 40.4279 100 > 9.0025 26.4279 30.3365 -Georgia.ttf 5 P 31.6236 40.4279 101 ® -1.4012 50.3815 50.3815 -Georgia.ttf 5 P 31.6236 40.4279 102 © -1.8167 50.3815 50.3815 -Georgia.ttf 5 P 31.6236 40.4279 103 ] -2.5879 15.1682 52.4453 -Georgia.ttf 5 P 31.6236 40.4279 104 é -3.0289 24.6953 44.8092 -Georgia.ttf 5 P 31.6236 40.4279 105 z 12.3927 23.0270 28.0000 -Georgia.ttf 5 P 31.6236 40.4279 106 _ 45.4682 37.5498 2.7403 -Georgia.ttf 5 P 31.6236 40.4279 107 ¥ -0.3040 37.0770 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 1 t -7.4881 18.7851 38.0914 -Georgia.ttf 6 o 27.2318 30.3365 2 h -15.3448 31.5237 44.3365 -Georgia.ttf 6 o 27.2318 30.3365 3 a 0.0285 25.6635 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 4 n 0.3713 31.5237 29.1682 -Georgia.ttf 6 o 27.2318 30.3365 5 P -11.4089 31.6236 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 6 o 0.2168 27.2318 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 7 e -0.0125 24.6953 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 8 : 1.0101 7.9550 28.4038 -Georgia.ttf 6 o 27.2318 30.3365 9 r 0.0105 21.9550 29.1682 -Georgia.ttf 6 o 27.2318 30.3365 10 l -15.2508 14.8955 44.3365 -Georgia.ttf 6 o 27.2318 30.3365 11 i -15.0277 14.3538 43.8448 -Georgia.ttf 6 o 27.2318 30.3365 12 1 -2.1939 19.8912 31.5047 -Georgia.ttf 6 o 27.2318 30.3365 13 | -13.8457 3.7547 55.3045 -Georgia.ttf 6 o 27.2318 30.3365 14 N -10.8763 42.0727 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 15 f -15.1173 22.1088 44.3365 -Georgia.ttf 6 o 27.2318 30.3365 16 g 0.0065 27.2356 42.0000 -Georgia.ttf 6 o 27.2318 30.3365 17 d -15.4681 30.9403 45.5047 -Georgia.ttf 6 o 27.2318 30.3365 18 W -11.3766 58.3365 40.6779 -Georgia.ttf 6 o 27.2318 30.3365 19 s 0.0010 20.9867 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 20 c -0.0819 24.1536 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 21 u -0.0931 31.5237 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 22 3 -2.2171 27.3045 41.7500 -Georgia.ttf 6 o 27.2318 30.3365 23 ~ 7.9127 30.0403 10.4453 -Georgia.ttf 6 o 27.2318 30.3365 24 # -5.8684 29.1872 35.0594 -Georgia.ttf 6 o 27.2318 30.3365 25 O -12.4072 38.4953 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 26 ` -14.3606 11.6635 12.1362 -Georgia.ttf 6 o 27.2318 30.3365 27 @ -9.8526 44.6903 47.8912 -Georgia.ttf 6 o 27.2318 30.3365 28 F -11.4642 31.6736 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 29 S -12.3590 28.0000 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 30 p 0.1060 30.2638 42.0000 -Georgia.ttf 6 o 27.2318 30.3365 31 “ -13.8986 18.8041 15.1682 -Georgia.ttf 6 o 27.2318 30.3365 32 % -12.3041 41.5772 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 33 £ -12.3960 30.0448 41.5962 -Georgia.ttf 6 o 27.2318 30.3365 34 . 21.5495 7.9550 7.9550 -Georgia.ttf 6 o 27.2318 30.3365 35 2 -2.4082 26.4090 31.5047 -Georgia.ttf 6 o 27.2318 30.3365 36 5 -1.3365 26.8318 40.5818 -Georgia.ttf 6 o 27.2318 30.3365 37 m 0.1306 48.0867 29.1682 -Georgia.ttf 6 o 27.2318 30.3365 38 V -11.3574 41.3045 40.6779 -Georgia.ttf 6 o 27.2318 30.3365 39 6 -12.5843 27.7083 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 40 w 1.1132 44.3365 28.0000 -Georgia.ttf 6 o 27.2318 30.3365 41 T -11.0331 36.3815 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 42 M -11.2319 49.8549 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 43 G -12.3940 39.4135 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 44 b -15.2155 31.0781 46.4730 -Georgia.ttf 6 o 27.2318 30.3365 45 9 -2.2504 27.7083 41.9500 -Georgia.ttf 6 o 27.2318 30.3365 46 ; 1.0682 9.5498 38.2453 -Georgia.ttf 6 o 27.2318 30.3365 47 D -11.0113 38.0914 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 48 L -10.9245 32.4730 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 49 y 1.1682 30.7403 40.8318 -Georgia.ttf 6 o 27.2318 30.3365 50 ‘ -14.1801 8.3588 15.1682 -Georgia.ttf 6 o 27.2318 30.3365 51 \ -14.1669 23.2770 55.3045 -Georgia.ttf 6 o 27.2318 30.3365 52 R -11.5503 39.2597 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 53 < -1.9863 26.4279 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 54 4 -2.1822 29.8448 41.7500 -Georgia.ttf 6 o 27.2318 30.3365 55 8 -12.5304 28.7227 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 56 0 -2.3508 29.8910 32.6730 -Georgia.ttf 6 o 27.2318 30.3365 57 A -11.2466 41.5962 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 58 E -11.3458 34.7056 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 59 B -11.2623 32.7646 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 60 v 1.3004 30.7403 28.0000 -Georgia.ttf 6 o 27.2318 30.3365 61 k -15.1629 31.4820 44.3365 -Georgia.ttf 6 o 27.2318 30.3365 62 J -11.3426 29.0144 41.5962 -Georgia.ttf 6 o 27.2318 30.3365 63 U -11.1326 42.2189 41.5962 -Georgia.ttf 6 o 27.2318 30.3365 64 j -14.7150 16.3365 56.6766 -Georgia.ttf 6 o 27.2318 30.3365 65 ( -13.8689 16.5865 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 66 7 -1.1801 26.5818 40.5818 -Georgia.ttf 6 o 27.2318 30.3365 67 § -12.2611 22.5588 48.8094 -Georgia.ttf 6 o 27.2318 30.3365 68 $ -14.6653 27.3045 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 69 € -12.3440 36.6315 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 70 / -14.1908 23.2770 55.3045 -Georgia.ttf 6 o 27.2318 30.3365 71 C -12.3612 34.2950 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 72 * -12.5650 22.6315 19.9723 -Georgia.ttf 6 o 27.2318 30.3365 73 ” -13.9126 18.8041 15.1682 -Georgia.ttf 6 o 27.2318 30.3365 74 ? -12.6328 22.2277 42.0000 -Georgia.ttf 6 o 27.2318 30.3365 75 { -14.1665 21.2133 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 76 } -13.9129 21.2133 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 77 , 22.4048 9.5498 17.3047 -Georgia.ttf 6 o 27.2318 30.3365 78 I -11.4900 18.1351 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 79 ° -12.4888 18.4730 18.4730 -Georgia.ttf 6 o 27.2318 30.3365 80 K -11.1456 39.2597 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 81 H -11.2037 41.8878 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 82 q -1.1897 30.8903 43.1682 -Georgia.ttf 6 o 27.2318 30.3365 83 & -12.2406 39.2597 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 84 ’ -13.6998 8.3588 15.1682 -Georgia.ttf 6 o 27.2318 30.3365 85 [ -14.0321 15.1682 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 86 - 11.4146 17.0320 4.4730 -Georgia.ttf 6 o 27.2318 30.3365 87 Y -10.9043 38.9680 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 88 Q -12.4065 38.4953 52.5642 -Georgia.ttf 6 o 27.2318 30.3365 89 " -14.2126 17.7547 16.3365 -Georgia.ttf 6 o 27.2318 30.3365 90 ! -12.8120 7.9550 42.7644 -Georgia.ttf 6 o 27.2318 30.3365 91 x 1.3153 29.1682 28.0000 -Georgia.ttf 6 o 27.2318 30.3365 92 ) -14.0769 16.5865 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 93 = 5.9646 29.1682 14.4500 -Georgia.ttf 6 o 27.2318 30.3365 94 + -1.3384 29.4182 29.4182 -Georgia.ttf 6 o 27.2318 30.3365 95 X -11.1400 41.5962 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 96 » 2.7255 23.9998 23.2770 -Georgia.ttf 6 o 27.2318 30.3365 97 ' -14.0720 6.7867 16.3365 -Georgia.ttf 6 o 27.2318 30.3365 98 ¢ -7.1061 25.8241 44.7403 -Georgia.ttf 6 o 27.2318 30.3365 99 Z -11.1193 33.6912 40.4279 -Georgia.ttf 6 o 27.2318 30.3365 100 > -1.9408 26.4279 30.3365 -Georgia.ttf 6 o 27.2318 30.3365 101 ® -12.8530 50.3815 50.3815 -Georgia.ttf 6 o 27.2318 30.3365 102 © -12.9088 50.3815 50.3815 -Georgia.ttf 6 o 27.2318 30.3365 103 ] -14.1395 15.1682 52.4453 -Georgia.ttf 6 o 27.2318 30.3365 104 é -14.5150 24.6953 44.8092 -Georgia.ttf 6 o 27.2318 30.3365 105 z 1.1608 23.0270 28.0000 -Georgia.ttf 6 o 27.2318 30.3365 106 _ 34.2604 37.5498 2.7403 -Georgia.ttf 6 o 27.2318 30.3365 107 ¥ -11.5460 37.0770 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 1 t -7.8361 18.7851 38.0914 -Georgia.ttf 7 e 24.6953 30.3365 2 h -15.3113 31.5237 44.3365 -Georgia.ttf 7 e 24.6953 30.3365 3 a 0.0391 25.6635 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 4 n 0.0287 31.5237 29.1682 -Georgia.ttf 7 e 24.6953 30.3365 5 P -11.3912 31.6236 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 6 o -0.0274 27.2318 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 7 e 0.2425 24.6953 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 8 : 1.3240 7.9550 28.4038 -Georgia.ttf 7 e 24.6953 30.3365 9 r -0.2224 21.9550 29.1682 -Georgia.ttf 7 e 24.6953 30.3365 10 l -15.0676 14.8955 44.3365 -Georgia.ttf 7 e 24.6953 30.3365 11 i -14.5895 14.3538 43.8448 -Georgia.ttf 7 e 24.6953 30.3365 12 1 -2.2008 19.8912 31.5047 -Georgia.ttf 7 e 24.6953 30.3365 13 | -14.0412 3.7547 55.3045 -Georgia.ttf 7 e 24.6953 30.3365 14 N -11.2795 42.0727 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 15 f -15.1126 22.1088 44.3365 -Georgia.ttf 7 e 24.6953 30.3365 16 g -0.1313 27.2356 42.0000 -Georgia.ttf 7 e 24.6953 30.3365 17 d -15.0311 30.9403 45.5047 -Georgia.ttf 7 e 24.6953 30.3365 18 W -11.4228 58.3365 40.6779 -Georgia.ttf 7 e 24.6953 30.3365 19 s -0.2645 20.9867 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 20 c -0.1526 24.1536 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 21 u 0.0111 31.5237 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 22 3 -2.5367 27.3045 41.7500 -Georgia.ttf 7 e 24.6953 30.3365 23 ~ 8.0202 30.0403 10.4453 -Georgia.ttf 7 e 24.6953 30.3365 24 # -5.8810 29.1872 35.0594 -Georgia.ttf 7 e 24.6953 30.3365 25 O -12.4636 38.4953 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 26 ` -14.3114 11.6635 12.1362 -Georgia.ttf 7 e 24.6953 30.3365 27 @ -9.7543 44.6903 47.8912 -Georgia.ttf 7 e 24.6953 30.3365 28 F -11.4538 31.6736 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 29 S -12.2217 28.0000 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 30 p -0.1826 30.2638 42.0000 -Georgia.ttf 7 e 24.6953 30.3365 31 “ -14.1228 18.8041 15.1682 -Georgia.ttf 7 e 24.6953 30.3365 32 % -12.5025 41.5772 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 33 £ -12.4325 30.0448 41.5962 -Georgia.ttf 7 e 24.6953 30.3365 34 . 21.4981 7.9550 7.9550 -Georgia.ttf 7 e 24.6953 30.3365 35 2 -2.5954 26.4090 31.5047 -Georgia.ttf 7 e 24.6953 30.3365 36 5 -1.2935 26.8318 40.5818 -Georgia.ttf 7 e 24.6953 30.3365 37 m 0.0070 48.0867 29.1682 -Georgia.ttf 7 e 24.6953 30.3365 38 V -11.3583 41.3045 40.6779 -Georgia.ttf 7 e 24.6953 30.3365 39 6 -12.2264 27.7083 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 40 w 0.9037 44.3365 28.0000 -Georgia.ttf 7 e 24.6953 30.3365 41 T -11.1373 36.3815 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 42 M -11.3371 49.8549 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 43 G -12.4002 39.4135 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 44 b -14.9191 31.0781 46.4730 -Georgia.ttf 7 e 24.6953 30.3365 45 9 -2.2099 27.7083 41.9500 -Georgia.ttf 7 e 24.6953 30.3365 46 ; 1.2594 9.5498 38.2453 -Georgia.ttf 7 e 24.6953 30.3365 47 D -11.4298 38.0914 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 48 L -11.3069 32.4730 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 49 y 1.0913 30.7403 40.8318 -Georgia.ttf 7 e 24.6953 30.3365 50 ‘ -14.3873 8.3588 15.1682 -Georgia.ttf 7 e 24.6953 30.3365 51 \ -13.9698 23.2770 55.3045 -Georgia.ttf 7 e 24.6953 30.3365 52 R -10.9886 39.2597 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 53 < -2.4402 26.4279 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 54 4 -2.4698 29.8448 41.7500 -Georgia.ttf 7 e 24.6953 30.3365 55 8 -12.4779 28.7227 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 56 0 -2.3722 29.8910 32.6730 -Georgia.ttf 7 e 24.6953 30.3365 57 A -11.3825 41.5962 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 58 E -11.3681 34.7056 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 59 B -11.1642 32.7646 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 60 v 1.3473 30.7403 28.0000 -Georgia.ttf 7 e 24.6953 30.3365 61 k -14.9240 31.4820 44.3365 -Georgia.ttf 7 e 24.6953 30.3365 62 J -11.1810 29.0144 41.5962 -Georgia.ttf 7 e 24.6953 30.3365 63 U -11.3547 42.2189 41.5962 -Georgia.ttf 7 e 24.6953 30.3365 64 j -14.9093 16.3365 56.6766 -Georgia.ttf 7 e 24.6953 30.3365 65 ( -13.9290 16.5865 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 66 7 -1.1612 26.5818 40.5818 -Georgia.ttf 7 e 24.6953 30.3365 67 § -12.6003 22.5588 48.8094 -Georgia.ttf 7 e 24.6953 30.3365 68 $ -15.0202 27.3045 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 69 € -12.1854 36.6315 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 70 / -14.2553 23.2770 55.3045 -Georgia.ttf 7 e 24.6953 30.3365 71 C -12.2959 34.2950 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 72 * -12.2374 22.6315 19.9723 -Georgia.ttf 7 e 24.6953 30.3365 73 ” -13.9538 18.8041 15.1682 -Georgia.ttf 7 e 24.6953 30.3365 74 ? -12.2561 22.2277 42.0000 -Georgia.ttf 7 e 24.6953 30.3365 75 { -14.1696 21.2133 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 76 } -13.9174 21.2133 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 77 , 22.0689 9.5498 17.3047 -Georgia.ttf 7 e 24.6953 30.3365 78 I -11.2551 18.1351 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 79 ° -12.2438 18.4730 18.4730 -Georgia.ttf 7 e 24.6953 30.3365 80 K -11.3273 39.2597 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 81 H -11.3617 41.8878 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 82 q -0.9770 30.8903 43.1682 -Georgia.ttf 7 e 24.6953 30.3365 83 & -12.2110 39.2597 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 84 ’ -14.0065 8.3588 15.1682 -Georgia.ttf 7 e 24.6953 30.3365 85 [ -13.9995 15.1682 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 86 - 11.4734 17.0320 4.4730 -Georgia.ttf 7 e 24.6953 30.3365 87 Y -11.3769 38.9680 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 88 Q -12.3394 38.4953 52.5642 -Georgia.ttf 7 e 24.6953 30.3365 89 " -14.0545 17.7547 16.3365 -Georgia.ttf 7 e 24.6953 30.3365 90 ! -12.4840 7.9550 42.7644 -Georgia.ttf 7 e 24.6953 30.3365 91 x 1.3376 29.1682 28.0000 -Georgia.ttf 7 e 24.6953 30.3365 92 ) -14.1966 16.5865 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 93 = 6.0191 29.1682 14.4500 -Georgia.ttf 7 e 24.6953 30.3365 94 + -1.3287 29.4182 29.4182 -Georgia.ttf 7 e 24.6953 30.3365 95 X -11.1772 41.5962 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 96 » 2.4983 23.9998 23.2770 -Georgia.ttf 7 e 24.6953 30.3365 97 ' -14.1274 6.7867 16.3365 -Georgia.ttf 7 e 24.6953 30.3365 98 ¢ -7.1678 25.8241 44.7403 -Georgia.ttf 7 e 24.6953 30.3365 99 Z -11.1480 33.6912 40.4279 -Georgia.ttf 7 e 24.6953 30.3365 100 > -2.0298 26.4279 30.3365 -Georgia.ttf 7 e 24.6953 30.3365 101 ® -12.5778 50.3815 50.3815 -Georgia.ttf 7 e 24.6953 30.3365 102 © -12.6960 50.3815 50.3815 -Georgia.ttf 7 e 24.6953 30.3365 103 ] -13.9225 15.1682 52.4453 -Georgia.ttf 7 e 24.6953 30.3365 104 é -14.4013 24.6953 44.8092 -Georgia.ttf 7 e 24.6953 30.3365 105 z 0.8796 23.0270 28.0000 -Georgia.ttf 7 e 24.6953 30.3365 106 _ 34.0603 37.5498 2.7403 -Georgia.ttf 7 e 24.6953 30.3365 107 ¥ -11.2240 37.0770 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 1 t -8.9161 18.7851 38.0914 -Georgia.ttf 8 : 7.9550 28.4038 2 h -16.2136 31.5237 44.3365 -Georgia.ttf 8 : 7.9550 28.4038 3 a -1.3317 25.6635 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 4 n -1.0156 31.5237 29.1682 -Georgia.ttf 8 : 7.9550 28.4038 5 P -12.3680 31.6236 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 6 o -1.0597 27.2318 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 7 e -1.0000 24.6953 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 8 : 0.0000 7.9550 28.4038 -Georgia.ttf 8 : 7.9550 28.4038 9 r -1.0180 21.9550 29.1682 -Georgia.ttf 8 : 7.9550 28.4038 10 l -16.4079 14.8955 44.3365 -Georgia.ttf 8 : 7.9550 28.4038 11 i -16.1692 14.3538 43.8448 -Georgia.ttf 8 : 7.9550 28.4038 12 1 -3.4089 19.8912 31.5047 -Georgia.ttf 8 : 7.9550 28.4038 13 | -15.0881 3.7547 55.3045 -Georgia.ttf 8 : 7.9550 28.4038 14 N -12.4636 42.0727 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 15 f -16.2910 22.1088 44.3365 -Georgia.ttf 8 : 7.9550 28.4038 16 g -0.9954 27.2356 42.0000 -Georgia.ttf 8 : 7.9550 28.4038 17 d -16.3351 30.9403 45.5047 -Georgia.ttf 8 : 7.9550 28.4038 18 W -12.2908 58.3365 40.6779 -Georgia.ttf 8 : 7.9550 28.4038 19 s -0.9954 20.9867 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 20 c -1.3970 24.1536 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 21 u -1.1897 31.5237 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 22 3 -3.2986 27.3045 41.7500 -Georgia.ttf 8 : 7.9550 28.4038 23 ~ 6.6436 30.0403 10.4453 -Georgia.ttf 8 : 7.9550 28.4038 24 # -7.1938 29.1872 35.0594 -Georgia.ttf 8 : 7.9550 28.4038 25 O -13.6416 38.4953 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 26 ` -15.6372 11.6635 12.1362 -Georgia.ttf 8 : 7.9550 28.4038 27 @ -10.8809 44.6903 47.8912 -Georgia.ttf 8 : 7.9550 28.4038 28 F -12.4014 31.6736 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 29 S -13.6346 28.0000 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 30 p -1.1714 30.2638 42.0000 -Georgia.ttf 8 : 7.9550 28.4038 31 “ -15.0111 18.8041 15.1682 -Georgia.ttf 8 : 7.9550 28.4038 32 % -13.7927 41.5772 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 33 £ -13.5962 30.0448 41.5962 -Georgia.ttf 8 : 7.9550 28.4038 34 . 20.6283 7.9550 7.9550 -Georgia.ttf 8 : 7.9550 28.4038 35 2 -3.2128 26.4090 31.5047 -Georgia.ttf 8 : 7.9550 28.4038 36 5 -2.2547 26.8318 40.5818 -Georgia.ttf 8 : 7.9550 28.4038 37 m -1.0941 48.0867 29.1682 -Georgia.ttf 8 : 7.9550 28.4038 38 V -12.4993 41.3045 40.6779 -Georgia.ttf 8 : 7.9550 28.4038 39 6 -13.6703 27.7083 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 40 w 0.2540 44.3365 28.0000 -Georgia.ttf 8 : 7.9550 28.4038 41 T -12.4034 36.3815 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 42 M -12.4196 49.8549 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 43 G -13.6735 39.4135 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 44 b -16.3113 31.0781 46.4730 -Georgia.ttf 8 : 7.9550 28.4038 45 9 -3.4631 27.7083 41.9500 -Georgia.ttf 8 : 7.9550 28.4038 46 ; -0.1218 9.5498 38.2453 -Georgia.ttf 8 : 7.9550 28.4038 47 D -12.4191 38.0914 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 48 L -12.2666 32.4730 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 49 y -0.1843 30.7403 40.8318 -Georgia.ttf 8 : 7.9550 28.4038 50 ‘ -15.3813 8.3588 15.1682 -Georgia.ttf 8 : 7.9550 28.4038 51 \ -15.1363 23.2770 55.3045 -Georgia.ttf 8 : 7.9550 28.4038 52 R -12.4098 39.2597 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 53 < -3.1889 26.4279 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 54 4 -3.3559 29.8448 41.7500 -Georgia.ttf 8 : 7.9550 28.4038 55 8 -13.6416 28.7227 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 56 0 -3.4273 29.8910 32.6730 -Georgia.ttf 8 : 7.9550 28.4038 57 A -12.3440 41.5962 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 58 E -12.5048 34.7056 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 59 B -12.3862 32.7646 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 60 v 0.0801 30.7403 28.0000 -Georgia.ttf 8 : 7.9550 28.4038 61 k -16.2158 31.4820 44.3365 -Georgia.ttf 8 : 7.9550 28.4038 62 J -12.4621 29.0144 41.5962 -Georgia.ttf 8 : 7.9550 28.4038 63 U -12.5970 42.2189 41.5962 -Georgia.ttf 8 : 7.9550 28.4038 64 j -15.8448 16.3365 56.6766 -Georgia.ttf 8 : 7.9550 28.4038 65 ( -15.1319 16.5865 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 66 7 -2.4227 26.5818 40.5818 -Georgia.ttf 8 : 7.9550 28.4038 67 § -13.7515 22.5588 48.8094 -Georgia.ttf 8 : 7.9550 28.4038 68 $ -16.1996 27.3045 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 69 € -13.4321 36.6315 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 70 / -15.3722 23.2770 55.3045 -Georgia.ttf 8 : 7.9550 28.4038 71 C -13.7214 34.2950 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 72 * -13.9687 22.6315 19.9723 -Georgia.ttf 8 : 7.9550 28.4038 73 ” -14.9829 18.8041 15.1682 -Georgia.ttf 8 : 7.9550 28.4038 74 ? -13.7672 22.2277 42.0000 -Georgia.ttf 8 : 7.9550 28.4038 75 { -15.1270 21.2133 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 76 } -15.2714 21.2133 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 77 , 20.8594 9.5498 17.3047 -Georgia.ttf 8 : 7.9550 28.4038 78 I -12.2453 18.1351 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 79 ° -13.6735 18.4730 18.4730 -Georgia.ttf 8 : 7.9550 28.4038 80 K -12.4636 39.2597 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 81 H -12.5053 41.8878 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 82 q -2.2147 30.8903 43.1682 -Georgia.ttf 8 : 7.9550 28.4038 83 & -13.7037 39.2597 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 84 ’ -15.0855 8.3588 15.1682 -Georgia.ttf 8 : 7.9550 28.4038 85 [ -14.9857 15.1682 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 86 - 10.3287 17.0320 4.4730 -Georgia.ttf 8 : 7.9550 28.4038 87 Y -12.5191 38.9680 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 88 Q -13.4244 38.4953 52.5642 -Georgia.ttf 8 : 7.9550 28.4038 89 " -15.1353 17.7547 16.3365 -Georgia.ttf 8 : 7.9550 28.4038 90 ! -13.6763 7.9550 42.7644 -Georgia.ttf 8 : 7.9550 28.4038 91 x 0.0060 29.1682 28.0000 -Georgia.ttf 8 : 7.9550 28.4038 92 ) -15.2127 16.5865 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 93 = 4.9723 29.1682 14.4500 -Georgia.ttf 8 : 7.9550 28.4038 94 + -2.4381 29.4182 29.4182 -Georgia.ttf 8 : 7.9550 28.4038 95 X -12.3895 41.5962 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 96 » 1.3298 23.9998 23.2770 -Georgia.ttf 8 : 7.9550 28.4038 97 ' -15.3032 6.7867 16.3365 -Georgia.ttf 8 : 7.9550 28.4038 98 ¢ -8.0182 25.8241 44.7403 -Georgia.ttf 8 : 7.9550 28.4038 99 Z -12.3912 33.6912 40.4279 -Georgia.ttf 8 : 7.9550 28.4038 100 > -3.3859 26.4279 30.3365 -Georgia.ttf 8 : 7.9550 28.4038 101 ® -14.0000 50.3815 50.3815 -Georgia.ttf 8 : 7.9550 28.4038 102 © -14.0575 50.3815 50.3815 -Georgia.ttf 8 : 7.9550 28.4038 103 ] -15.0787 15.1682 52.4453 -Georgia.ttf 8 : 7.9550 28.4038 104 é -15.6253 24.6953 44.8092 -Georgia.ttf 8 : 7.9550 28.4038 105 z 0.0316 23.0270 28.0000 -Georgia.ttf 8 : 7.9550 28.4038 106 _ 33.1180 37.5498 2.7403 -Georgia.ttf 8 : 7.9550 28.4038 107 ¥ -12.4279 37.0770 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 1 t -7.6776 18.7851 38.0914 -Georgia.ttf 9 r 21.9550 29.1682 2 h -14.9702 31.5237 44.3365 -Georgia.ttf 9 r 21.9550 29.1682 3 a 0.1690 25.6635 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 4 n -0.2400 31.5237 29.1682 -Georgia.ttf 9 r 21.9550 29.1682 5 P -11.1916 31.6236 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 6 o 0.1498 27.2318 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 7 e 0.0812 24.6953 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 8 : 0.9220 7.9550 28.4038 -Georgia.ttf 9 r 21.9550 29.1682 9 r 0.1190 21.9550 29.1682 -Georgia.ttf 9 r 21.9550 29.1682 10 l -15.0770 14.8955 44.3365 -Georgia.ttf 9 r 21.9550 29.1682 11 i -14.4555 14.3538 43.8448 -Georgia.ttf 9 r 21.9550 29.1682 12 1 -2.2606 19.8912 31.5047 -Georgia.ttf 9 r 21.9550 29.1682 13 | -14.0655 3.7547 55.3045 -Georgia.ttf 9 r 21.9550 29.1682 14 N -11.6243 42.0727 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 15 f -15.1795 22.1088 44.3365 -Georgia.ttf 9 r 21.9550 29.1682 16 g 0.0232 27.2356 42.0000 -Georgia.ttf 9 r 21.9550 29.1682 17 d -15.0871 30.9403 45.5047 -Georgia.ttf 9 r 21.9550 29.1682 18 W -11.2856 58.3365 40.6779 -Georgia.ttf 9 r 21.9550 29.1682 19 s -0.2526 20.9867 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 20 c -0.2218 24.1536 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 21 u 0.2502 31.5237 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 22 3 -2.4760 27.3045 41.7500 -Georgia.ttf 9 r 21.9550 29.1682 23 ~ 8.0861 30.0403 10.4453 -Georgia.ttf 9 r 21.9550 29.1682 24 # -5.7194 29.1872 35.0594 -Georgia.ttf 9 r 21.9550 29.1682 25 O -12.3682 38.4953 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 26 ` -14.6138 11.6635 12.1362 -Georgia.ttf 9 r 21.9550 29.1682 27 @ -9.5912 44.6903 47.8912 -Georgia.ttf 9 r 21.9550 29.1682 28 F -11.0911 31.6736 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 29 S -12.4202 28.0000 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 30 p -0.2250 30.2638 42.0000 -Georgia.ttf 9 r 21.9550 29.1682 31 “ -14.0704 18.8041 15.1682 -Georgia.ttf 9 r 21.9550 29.1682 32 % -12.4849 41.5772 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 33 £ -12.3208 30.0448 41.5962 -Georgia.ttf 9 r 21.9550 29.1682 34 . 21.7010 7.9550 7.9550 -Georgia.ttf 9 r 21.9550 29.1682 35 2 -2.3365 26.4090 31.5047 -Georgia.ttf 9 r 21.9550 29.1682 36 5 -1.0766 26.8318 40.5818 -Georgia.ttf 9 r 21.9550 29.1682 37 m 0.2288 48.0867 29.1682 -Georgia.ttf 9 r 21.9550 29.1682 38 V -11.2097 41.3045 40.6779 -Georgia.ttf 9 r 21.9550 29.1682 39 6 -12.2172 27.7083 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 40 w 1.3914 44.3365 28.0000 -Georgia.ttf 9 r 21.9550 29.1682 41 T -11.2642 36.3815 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 42 M -11.4130 49.8549 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 43 G -12.2633 39.4135 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 44 b -15.1797 31.0781 46.4730 -Georgia.ttf 9 r 21.9550 29.1682 45 9 -2.4204 27.7083 41.9500 -Georgia.ttf 9 r 21.9550 29.1682 46 ; 0.9236 9.5498 38.2453 -Georgia.ttf 9 r 21.9550 29.1682 47 D -11.3908 38.0914 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 48 L -11.2617 32.4730 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 49 y 1.3982 30.7403 40.8318 -Georgia.ttf 9 r 21.9550 29.1682 50 ‘ -14.1970 8.3588 15.1682 -Georgia.ttf 9 r 21.9550 29.1682 51 \ -13.8786 23.2770 55.3045 -Georgia.ttf 9 r 21.9550 29.1682 52 R -11.3686 39.2597 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 53 < -2.1781 26.4279 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 54 4 -2.1609 29.8448 41.7500 -Georgia.ttf 9 r 21.9550 29.1682 55 8 -12.2162 28.7227 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 56 0 -2.3627 29.8910 32.6730 -Georgia.ttf 9 r 21.9550 29.1682 57 A -11.5359 41.5962 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 58 E -11.1328 34.7056 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 59 B -11.3311 32.7646 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 60 v 1.1985 30.7403 28.0000 -Georgia.ttf 9 r 21.9550 29.1682 61 k -15.0454 31.4820 44.3365 -Georgia.ttf 9 r 21.9550 29.1682 62 J -11.2978 29.0144 41.5962 -Georgia.ttf 9 r 21.9550 29.1682 63 U -11.3315 42.2189 41.5962 -Georgia.ttf 9 r 21.9550 29.1682 64 j -14.5954 16.3365 56.6766 -Georgia.ttf 9 r 21.9550 29.1682 65 ( -13.9287 16.5865 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 66 7 -0.9979 26.5818 40.5818 -Georgia.ttf 9 r 21.9550 29.1682 67 § -12.4317 22.5588 48.8094 -Georgia.ttf 9 r 21.9550 29.1682 68 $ -14.9141 27.3045 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 69 € -12.5234 36.6315 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 70 / -14.2300 23.2770 55.3045 -Georgia.ttf 9 r 21.9550 29.1682 71 C -12.3601 34.2950 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 72 * -12.3779 22.6315 19.9723 -Georgia.ttf 9 r 21.9550 29.1682 73 ” -13.7400 18.8041 15.1682 -Georgia.ttf 9 r 21.9550 29.1682 74 ? -12.2670 22.2277 42.0000 -Georgia.ttf 9 r 21.9550 29.1682 75 { -13.8657 21.2133 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 76 } -14.2502 21.2133 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 77 , 22.1816 9.5498 17.3047 -Georgia.ttf 9 r 21.9550 29.1682 78 I -11.4293 18.1351 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 79 ° -12.5112 18.4730 18.4730 -Georgia.ttf 9 r 21.9550 29.1682 80 K -11.3468 39.2597 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 81 H -11.1406 41.8878 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 82 q -1.3153 30.8903 43.1682 -Georgia.ttf 9 r 21.9550 29.1682 83 & -12.2645 39.2597 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 84 ’ -14.0746 8.3588 15.1682 -Georgia.ttf 9 r 21.9550 29.1682 85 [ -14.0176 15.1682 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 86 - 11.4205 17.0320 4.4730 -Georgia.ttf 9 r 21.9550 29.1682 87 Y -11.4835 38.9680 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 88 Q -12.6559 38.4953 52.5642 -Georgia.ttf 9 r 21.9550 29.1682 89 " -13.9571 17.7547 16.3365 -Georgia.ttf 9 r 21.9550 29.1682 90 ! -12.4467 7.9550 42.7644 -Georgia.ttf 9 r 21.9550 29.1682 91 x 1.3768 29.1682 28.0000 -Georgia.ttf 9 r 21.9550 29.1682 92 ) -14.0000 16.5865 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 93 = 6.1230 29.1682 14.4500 -Georgia.ttf 9 r 21.9550 29.1682 94 + -1.7048 29.4182 29.4182 -Georgia.ttf 9 r 21.9550 29.1682 95 X -11.1392 41.5962 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 96 » 2.3863 23.9998 23.2770 -Georgia.ttf 9 r 21.9550 29.1682 97 ' -13.9310 6.7867 16.3365 -Georgia.ttf 9 r 21.9550 29.1682 98 ¢ -7.2758 25.8241 44.7403 -Georgia.ttf 9 r 21.9550 29.1682 99 Z -11.0879 33.6912 40.4279 -Georgia.ttf 9 r 21.9550 29.1682 100 > -2.3252 26.4279 30.3365 -Georgia.ttf 9 r 21.9550 29.1682 101 ® -13.0097 50.3815 50.3815 -Georgia.ttf 9 r 21.9550 29.1682 102 © -13.1312 50.3815 50.3815 -Georgia.ttf 9 r 21.9550 29.1682 103 ] -13.7502 15.1682 52.4453 -Georgia.ttf 9 r 21.9550 29.1682 104 é -14.3329 24.6953 44.8092 -Georgia.ttf 9 r 21.9550 29.1682 105 z 1.1585 23.0270 28.0000 -Georgia.ttf 9 r 21.9550 29.1682 106 _ 34.2003 37.5498 2.7403 -Georgia.ttf 9 r 21.9550 29.1682 107 ¥ -11.2299 37.0770 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 1 t 7.4230 18.7851 38.0914 -Georgia.ttf 10 l 14.8955 44.3365 2 h -0.1780 31.5237 44.3365 -Georgia.ttf 10 l 14.8955 44.3365 3 a 15.3639 25.6635 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 4 n 15.1391 31.5237 29.1682 -Georgia.ttf 10 l 14.8955 44.3365 5 P 4.0411 31.6236 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 6 o 15.3470 27.2318 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 7 e 15.1353 24.6953 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 8 : 16.2865 7.9550 28.4038 -Georgia.ttf 10 l 14.8955 44.3365 9 r 15.2734 21.9550 29.1682 -Georgia.ttf 10 l 14.8955 44.3365 10 l 0.2925 14.8955 44.3365 -Georgia.ttf 10 l 14.8955 44.3365 11 i 0.6096 14.3538 43.8448 -Georgia.ttf 10 l 14.8955 44.3365 12 1 13.0046 19.8912 31.5047 -Georgia.ttf 10 l 14.8955 44.3365 13 | 0.9395 3.7547 55.3045 -Georgia.ttf 10 l 14.8955 44.3365 14 N 3.8284 42.0727 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 15 f -0.3446 22.1088 44.3365 -Georgia.ttf 10 l 14.8955 44.3365 16 g 15.0395 27.2356 42.0000 -Georgia.ttf 10 l 14.8955 44.3365 17 d -0.0565 30.9403 45.5047 -Georgia.ttf 10 l 14.8955 44.3365 18 W 3.9892 58.3365 40.6779 -Georgia.ttf 10 l 14.8955 44.3365 19 s 15.2145 20.9867 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 20 c 15.3187 24.1536 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 21 u 15.2254 31.5237 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 22 3 12.9301 27.3045 41.7500 -Georgia.ttf 10 l 14.8955 44.3365 23 ~ 23.2071 30.0403 10.4453 -Georgia.ttf 10 l 14.8955 44.3365 24 # 9.2886 29.1872 35.0594 -Georgia.ttf 10 l 14.8955 44.3365 25 O 2.6903 38.4953 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 26 ` 0.5105 11.6635 12.1362 -Georgia.ttf 10 l 14.8955 44.3365 27 @ 5.3016 44.6903 47.8912 -Georgia.ttf 10 l 14.8955 44.3365 28 F 3.5766 31.6736 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 29 S 2.7830 28.0000 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 30 p 15.0199 30.2638 42.0000 -Georgia.ttf 10 l 14.8955 44.3365 31 “ 1.2196 18.8041 15.1682 -Georgia.ttf 10 l 14.8955 44.3365 32 % 2.8677 41.5772 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 33 £ 2.9272 30.0448 41.5962 -Georgia.ttf 10 l 14.8955 44.3365 34 . 36.8874 7.9550 7.9550 -Georgia.ttf 10 l 14.8955 44.3365 35 2 13.0826 26.4090 31.5047 -Georgia.ttf 10 l 14.8955 44.3365 36 5 13.9714 26.8318 40.5818 -Georgia.ttf 10 l 14.8955 44.3365 37 m 15.0895 48.0867 29.1682 -Georgia.ttf 10 l 14.8955 44.3365 38 V 4.0336 41.3045 40.6779 -Georgia.ttf 10 l 14.8955 44.3365 39 6 2.8215 27.7083 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 40 w 16.2851 44.3365 28.0000 -Georgia.ttf 10 l 14.8955 44.3365 41 T 3.8788 36.3815 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 42 M 3.7462 49.8549 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 43 G 2.6263 39.4135 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 44 b 0.0000 31.0781 46.4730 -Georgia.ttf 10 l 14.8955 44.3365 45 9 12.9591 27.7083 41.9500 -Georgia.ttf 10 l 14.8955 44.3365 46 ; 16.4023 9.5498 38.2453 -Georgia.ttf 10 l 14.8955 44.3365 47 D 3.9800 38.0914 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 48 L 3.5080 32.4730 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 49 y 16.3172 30.7403 40.8318 -Georgia.ttf 10 l 14.8955 44.3365 50 ‘ 1.1717 8.3588 15.1682 -Georgia.ttf 10 l 14.8955 44.3365 51 \ 1.0811 23.2770 55.3045 -Georgia.ttf 10 l 14.8955 44.3365 52 R 4.0712 39.2597 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 53 < 12.8562 26.4279 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 54 4 13.0567 29.8448 41.7500 -Georgia.ttf 10 l 14.8955 44.3365 55 8 2.7515 28.7227 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 56 0 13.0208 29.8910 32.6730 -Georgia.ttf 10 l 14.8955 44.3365 57 A 3.8270 41.5962 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 58 E 4.0040 34.7056 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 59 B 3.9031 32.7646 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 60 v 16.2158 30.7403 28.0000 -Georgia.ttf 10 l 14.8955 44.3365 61 k 0.0000 31.4820 44.3365 -Georgia.ttf 10 l 14.8955 44.3365 62 J 3.6688 29.0144 41.5962 -Georgia.ttf 10 l 14.8955 44.3365 63 U 4.0030 42.2189 41.5962 -Georgia.ttf 10 l 14.8955 44.3365 64 j 0.5829 16.3365 56.6766 -Georgia.ttf 10 l 14.8955 44.3365 65 ( 1.0936 16.5865 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 66 7 13.9082 26.5818 40.5818 -Georgia.ttf 10 l 14.8955 44.3365 67 § 2.9693 22.5588 48.8094 -Georgia.ttf 10 l 14.8955 44.3365 68 $ 0.2812 27.3045 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 69 € 2.4863 36.6315 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 70 / 1.1956 23.2770 55.3045 -Georgia.ttf 10 l 14.8955 44.3365 71 C 2.5772 34.2950 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 72 * 2.9251 22.6315 19.9723 -Georgia.ttf 10 l 14.8955 44.3365 73 ” 1.0389 18.8041 15.1682 -Georgia.ttf 10 l 14.8955 44.3365 74 ? 2.8330 22.2277 42.0000 -Georgia.ttf 10 l 14.8955 44.3365 75 { 1.0014 21.2133 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 76 } 1.2873 21.2133 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 77 , 36.9058 9.5498 17.3047 -Georgia.ttf 10 l 14.8955 44.3365 78 I 3.8205 18.1351 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 79 ° 2.7418 18.4730 18.4730 -Georgia.ttf 10 l 14.8955 44.3365 80 K 3.8214 39.2597 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 81 H 3.9586 41.8878 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 82 q 14.1052 30.8903 43.1682 -Georgia.ttf 10 l 14.8955 44.3365 83 & 2.5675 39.2597 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 84 ’ 1.0909 8.3588 15.1682 -Georgia.ttf 10 l 14.8955 44.3365 85 [ 1.2599 15.1682 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 86 - 26.7441 17.0320 4.4730 -Georgia.ttf 10 l 14.8955 44.3365 87 Y 3.9100 38.9680 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 88 Q 2.9397 38.4953 52.5642 -Georgia.ttf 10 l 14.8955 44.3365 89 " 1.3011 17.7547 16.3365 -Georgia.ttf 10 l 14.8955 44.3365 90 ! 2.9947 7.9550 42.7644 -Georgia.ttf 10 l 14.8955 44.3365 91 x 16.1220 29.1682 28.0000 -Georgia.ttf 10 l 14.8955 44.3365 92 ) 1.1612 16.5865 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 93 = 21.1332 29.1682 14.4500 -Georgia.ttf 10 l 14.8955 44.3365 94 + 13.6049 29.4182 29.4182 -Georgia.ttf 10 l 14.8955 44.3365 95 X 4.1440 41.5962 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 96 » 17.8275 23.9998 23.2770 -Georgia.ttf 10 l 14.8955 44.3365 97 ' 1.1780 6.7867 16.3365 -Georgia.ttf 10 l 14.8955 44.3365 98 ¢ 8.0564 25.8241 44.7403 -Georgia.ttf 10 l 14.8955 44.3365 99 Z 3.9897 33.6912 40.4279 -Georgia.ttf 10 l 14.8955 44.3365 100 > 13.3320 26.4279 30.3365 -Georgia.ttf 10 l 14.8955 44.3365 101 ® 2.4292 50.3815 50.3815 -Georgia.ttf 10 l 14.8955 44.3365 102 © 2.1779 50.3815 50.3815 -Georgia.ttf 10 l 14.8955 44.3365 103 ] 1.1863 15.1682 52.4453 -Georgia.ttf 10 l 14.8955 44.3365 104 é 0.8027 24.6953 44.8092 -Georgia.ttf 10 l 14.8955 44.3365 105 z 16.3522 23.0270 28.0000 -Georgia.ttf 10 l 14.8955 44.3365 106 _ 49.2932 37.5498 2.7403 -Georgia.ttf 10 l 14.8955 44.3365 107 ¥ 4.1115 37.0770 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 1 t 7.0035 18.7851 38.0914 -Georgia.ttf 11 i 14.3538 43.8448 2 h -0.3150 31.5237 44.3365 -Georgia.ttf 11 i 14.3538 43.8448 3 a 14.6919 25.6635 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 4 n 14.5900 31.5237 29.1682 -Georgia.ttf 11 i 14.3538 43.8448 5 P 3.1625 31.6236 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 6 o 14.8750 27.2318 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 7 e 14.6766 24.6953 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 8 : 15.7419 7.9550 28.4038 -Georgia.ttf 11 i 14.3538 43.8448 9 r 14.6766 21.9550 29.1682 -Georgia.ttf 11 i 14.3538 43.8448 10 l -0.5893 14.8955 44.3365 -Georgia.ttf 11 i 14.3538 43.8448 11 i -0.1283 14.3538 43.8448 -Georgia.ttf 11 i 14.3538 43.8448 12 1 12.3609 19.8912 31.5047 -Georgia.ttf 11 i 14.3538 43.8448 13 | 0.6047 3.7547 55.3045 -Georgia.ttf 11 i 14.3538 43.8448 14 N 3.4224 42.0727 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 15 f -0.6984 22.1088 44.3365 -Georgia.ttf 11 i 14.3538 43.8448 16 g 14.4511 27.2356 42.0000 -Georgia.ttf 11 i 14.3538 43.8448 17 d -0.5736 30.9403 45.5047 -Georgia.ttf 11 i 14.3538 43.8448 18 W 3.4054 58.3365 40.6779 -Georgia.ttf 11 i 14.3538 43.8448 19 s 14.5790 20.9867 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 20 c 14.5936 24.1536 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 21 u 14.4774 31.5237 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 22 3 12.4213 27.3045 41.7500 -Georgia.ttf 11 i 14.3538 43.8448 23 ~ 22.6791 30.0403 10.4453 -Georgia.ttf 11 i 14.3538 43.8448 24 # 8.9055 29.1872 35.0594 -Georgia.ttf 11 i 14.3538 43.8448 25 O 2.5152 38.4953 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 26 ` 0.3882 11.6635 12.1362 -Georgia.ttf 11 i 14.3538 43.8448 27 @ 4.8709 44.6903 47.8912 -Georgia.ttf 11 i 14.3538 43.8448 28 F 3.5352 31.6736 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 29 S 2.3760 28.0000 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 30 p 14.4121 30.2638 42.0000 -Georgia.ttf 11 i 14.3538 43.8448 31 “ 0.8917 18.8041 15.1682 -Georgia.ttf 11 i 14.3538 43.8448 32 % 2.2592 41.5772 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 33 £ 2.3585 30.0448 41.5962 -Georgia.ttf 11 i 14.3538 43.8448 34 . 36.3020 7.9550 7.9550 -Georgia.ttf 11 i 14.3538 43.8448 35 2 12.4707 26.4090 31.5047 -Georgia.ttf 11 i 14.3538 43.8448 36 5 13.4871 26.8318 40.5818 -Georgia.ttf 11 i 14.3538 43.8448 37 m 14.8202 48.0867 29.1682 -Georgia.ttf 11 i 14.3538 43.8448 38 V 3.4903 41.3045 40.6779 -Georgia.ttf 11 i 14.3538 43.8448 39 6 2.2449 27.7083 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 40 w 15.9097 44.3365 28.0000 -Georgia.ttf 11 i 14.3538 43.8448 41 T 3.3368 36.3815 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 42 M 3.6355 49.8549 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 43 G 2.2134 39.4135 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 44 b -0.3670 31.0781 46.4730 -Georgia.ttf 11 i 14.3538 43.8448 45 9 12.3893 27.7083 41.9500 -Georgia.ttf 11 i 14.3538 43.8448 46 ; 15.6618 9.5498 38.2453 -Georgia.ttf 11 i 14.3538 43.8448 47 D 3.1042 38.0914 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 48 L 3.5124 32.4730 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 49 y 16.0079 30.7403 40.8318 -Georgia.ttf 11 i 14.3538 43.8448 50 ‘ 0.4992 8.3588 15.1682 -Georgia.ttf 11 i 14.3538 43.8448 51 \ 0.7420 23.2770 55.3045 -Georgia.ttf 11 i 14.3538 43.8448 52 R 3.6110 39.2597 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 53 < 12.3858 26.4279 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 54 4 12.2030 29.8448 41.7500 -Georgia.ttf 11 i 14.3538 43.8448 55 8 2.1143 28.7227 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 56 0 12.4972 29.8910 32.6730 -Georgia.ttf 11 i 14.3538 43.8448 57 A 3.5212 41.5962 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 58 E 3.4179 34.7056 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 59 B 3.4371 32.7646 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 60 v 15.5894 30.7403 28.0000 -Georgia.ttf 11 i 14.3538 43.8448 61 k -0.4147 31.4820 44.3365 -Georgia.ttf 11 i 14.3538 43.8448 62 J 3.4169 29.0144 41.5962 -Georgia.ttf 11 i 14.3538 43.8448 63 U 3.4938 42.2189 41.5962 -Georgia.ttf 11 i 14.3538 43.8448 64 j -0.0714 16.3365 56.6766 -Georgia.ttf 11 i 14.3538 43.8448 65 ( 0.4978 16.5865 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 66 7 13.5087 26.5818 40.5818 -Georgia.ttf 11 i 14.3538 43.8448 67 § 2.3519 22.5588 48.8094 -Georgia.ttf 11 i 14.3538 43.8448 68 $ -0.1605 27.3045 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 69 € 2.1505 36.6315 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 70 / 0.6548 23.2770 55.3045 -Georgia.ttf 11 i 14.3538 43.8448 71 C 2.3215 34.2950 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 72 * 2.3672 22.6315 19.9723 -Georgia.ttf 11 i 14.3538 43.8448 73 ” 0.6149 18.8041 15.1682 -Georgia.ttf 11 i 14.3538 43.8448 74 ? 2.0513 22.2277 42.0000 -Georgia.ttf 11 i 14.3538 43.8448 75 { 0.7220 21.2133 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 76 } 0.3411 21.2133 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 77 , 36.8512 9.5498 17.3047 -Georgia.ttf 11 i 14.3538 43.8448 78 I 3.5874 18.1351 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 79 ° 2.2903 18.4730 18.4730 -Georgia.ttf 11 i 14.3538 43.8448 80 K 3.5754 39.2597 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 81 H 3.5124 41.8878 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 82 q 13.6087 30.8903 43.1682 -Georgia.ttf 11 i 14.3538 43.8448 83 & 2.1987 39.2597 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 84 ’ 0.5121 8.3588 15.1682 -Georgia.ttf 11 i 14.3538 43.8448 85 [ 0.5537 15.1682 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 86 - 26.2032 17.0320 4.4730 -Georgia.ttf 11 i 14.3538 43.8448 87 Y 3.4109 38.9680 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 88 Q 2.3099 38.4953 52.5642 -Georgia.ttf 11 i 14.3538 43.8448 89 " 0.9131 17.7547 16.3365 -Georgia.ttf 11 i 14.3538 43.8448 90 ! 2.3158 7.9550 42.7644 -Georgia.ttf 11 i 14.3538 43.8448 91 x 15.9140 29.1682 28.0000 -Georgia.ttf 11 i 14.3538 43.8448 92 ) 0.6831 16.5865 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 93 = 20.6219 29.1682 14.4500 -Georgia.ttf 11 i 14.3538 43.8448 94 + 13.2565 29.4182 29.4182 -Georgia.ttf 11 i 14.3538 43.8448 95 X 3.3455 41.5962 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 96 » 17.1021 23.9998 23.2770 -Georgia.ttf 11 i 14.3538 43.8448 97 ' 0.5811 6.7867 16.3365 -Georgia.ttf 11 i 14.3538 43.8448 98 ¢ 7.5068 25.8241 44.7403 -Georgia.ttf 11 i 14.3538 43.8448 99 Z 3.3933 33.6912 40.4279 -Georgia.ttf 11 i 14.3538 43.8448 100 > 12.7476 26.4279 30.3365 -Georgia.ttf 11 i 14.3538 43.8448 101 ® 1.9222 50.3815 50.3815 -Georgia.ttf 11 i 14.3538 43.8448 102 © 1.9991 50.3815 50.3815 -Georgia.ttf 11 i 14.3538 43.8448 103 ] 0.5657 15.1682 52.4453 -Georgia.ttf 11 i 14.3538 43.8448 104 é 0.1157 24.6953 44.8092 -Georgia.ttf 11 i 14.3538 43.8448 105 z 15.7460 23.0270 28.0000 -Georgia.ttf 11 i 14.3538 43.8448 106 _ 48.9369 37.5498 2.7403 -Georgia.ttf 11 i 14.3538 43.8448 107 ¥ 3.3711 37.0770 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 1 t -5.4601 18.7851 38.0914 -Georgia.ttf 12 1 19.8912 31.5047 2 h -12.6250 31.5237 44.3365 -Georgia.ttf 12 1 19.8912 31.5047 3 a 2.2610 25.6635 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 4 n 2.0464 31.5237 29.1682 -Georgia.ttf 12 1 19.8912 31.5047 5 P -8.6170 31.6236 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 6 o 2.1035 27.2318 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 7 e 2.2416 24.6953 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 8 : 3.1599 7.9550 28.4038 -Georgia.ttf 12 1 19.8912 31.5047 9 r 2.2878 21.9550 29.1682 -Georgia.ttf 12 1 19.8912 31.5047 10 l -12.7559 14.8955 44.3365 -Georgia.ttf 12 1 19.8912 31.5047 11 i -12.1662 14.3538 43.8448 -Georgia.ttf 12 1 19.8912 31.5047 12 1 -0.2085 19.8912 31.5047 -Georgia.ttf 12 1 19.8912 31.5047 13 | -11.6024 3.7547 55.3045 -Georgia.ttf 12 1 19.8912 31.5047 14 N -8.6740 42.0727 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 15 f -12.3161 22.1088 44.3365 -Georgia.ttf 12 1 19.8912 31.5047 16 g 2.2618 27.2356 42.0000 -Georgia.ttf 12 1 19.8912 31.5047 17 d -12.7493 30.9403 45.5047 -Georgia.ttf 12 1 19.8912 31.5047 18 W -8.7571 58.3365 40.6779 -Georgia.ttf 12 1 19.8912 31.5047 19 s 2.4796 20.9867 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 20 c 2.0983 24.1536 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 21 u 2.5881 31.5237 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 22 3 0.3296 27.3045 41.7500 -Georgia.ttf 12 1 19.8912 31.5047 23 ~ 10.1335 30.0403 10.4453 -Georgia.ttf 12 1 19.8912 31.5047 24 # -3.5585 29.1872 35.0594 -Georgia.ttf 12 1 19.8912 31.5047 25 O -10.2823 38.4953 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 26 ` -12.1876 11.6635 12.1362 -Georgia.ttf 12 1 19.8912 31.5047 27 @ -7.4601 44.6903 47.8912 -Georgia.ttf 12 1 19.8912 31.5047 28 F -8.5618 31.6736 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 29 S -10.1001 28.0000 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 30 p 2.4880 30.2638 42.0000 -Georgia.ttf 12 1 19.8912 31.5047 31 “ -11.4425 18.8041 15.1682 -Georgia.ttf 12 1 19.8912 31.5047 32 % -10.2681 41.5772 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 33 £ -10.2632 30.0448 41.5962 -Georgia.ttf 12 1 19.8912 31.5047 34 . 23.9665 7.9550 7.9550 -Georgia.ttf 12 1 19.8912 31.5047 35 2 0.0228 26.4090 31.5047 -Georgia.ttf 12 1 19.8912 31.5047 36 5 1.1645 26.8318 40.5818 -Georgia.ttf 12 1 19.8912 31.5047 37 m 2.3662 48.0867 29.1682 -Georgia.ttf 12 1 19.8912 31.5047 38 V -8.8361 41.3045 40.6779 -Georgia.ttf 12 1 19.8912 31.5047 39 6 -10.0760 27.7083 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 40 w 3.6590 44.3365 28.0000 -Georgia.ttf 12 1 19.8912 31.5047 41 T -9.2192 36.3815 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 42 M -8.9575 49.8549 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 43 G -10.0311 39.4135 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 44 b -12.6347 31.0781 46.4730 -Georgia.ttf 12 1 19.8912 31.5047 45 9 0.0871 27.7083 41.9500 -Georgia.ttf 12 1 19.8912 31.5047 46 ; 3.5918 9.5498 38.2453 -Georgia.ttf 12 1 19.8912 31.5047 47 D -9.1595 38.0914 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 48 L -9.0915 32.4730 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 49 y 3.3319 30.7403 40.8318 -Georgia.ttf 12 1 19.8912 31.5047 50 ‘ -11.7163 8.3588 15.1682 -Georgia.ttf 12 1 19.8912 31.5047 51 \ -11.6635 23.2770 55.3045 -Georgia.ttf 12 1 19.8912 31.5047 52 R -9.0775 39.2597 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 53 < 0.3687 26.4279 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 54 4 -0.1626 29.8448 41.7500 -Georgia.ttf 12 1 19.8912 31.5047 55 8 -10.2670 28.7227 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 56 0 0.0393 29.8910 32.6730 -Georgia.ttf 12 1 19.8912 31.5047 57 A -9.0127 41.5962 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 58 E -8.8091 34.7056 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 59 B -8.9204 32.7646 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 60 v 3.7115 30.7403 28.0000 -Georgia.ttf 12 1 19.8912 31.5047 61 k -12.9175 31.4820 44.3365 -Georgia.ttf 12 1 19.8912 31.5047 62 J -8.7771 29.0144 41.5962 -Georgia.ttf 12 1 19.8912 31.5047 63 U -9.0822 42.2189 41.5962 -Georgia.ttf 12 1 19.8912 31.5047 64 j -12.3379 16.3365 56.6766 -Georgia.ttf 12 1 19.8912 31.5047 65 ( -11.5296 16.5865 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 66 7 1.2976 26.5818 40.5818 -Georgia.ttf 12 1 19.8912 31.5047 67 § -10.1345 22.5588 48.8094 -Georgia.ttf 12 1 19.8912 31.5047 68 $ -12.9094 27.3045 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 69 € -10.1221 36.6315 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 70 / -11.4869 23.2770 55.3045 -Georgia.ttf 12 1 19.8912 31.5047 71 C -9.9263 34.2950 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 72 * -10.0887 22.6315 19.9723 -Georgia.ttf 12 1 19.8912 31.5047 73 ” -11.6038 18.8041 15.1682 -Georgia.ttf 12 1 19.8912 31.5047 74 ? -10.1363 22.2277 42.0000 -Georgia.ttf 12 1 19.8912 31.5047 75 { -11.5414 21.2133 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 76 } -11.4911 21.2133 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 77 , 24.2076 9.5498 17.3047 -Georgia.ttf 12 1 19.8912 31.5047 78 I -8.6793 18.1351 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 79 ° -10.2273 18.4730 18.4730 -Georgia.ttf 12 1 19.8912 31.5047 80 K -8.8361 39.2597 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 81 H -9.0103 41.8878 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 82 q 1.4264 30.8903 43.1682 -Georgia.ttf 12 1 19.8912 31.5047 83 & -10.1832 39.2597 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 84 ’ -11.9320 8.3588 15.1682 -Georgia.ttf 12 1 19.8912 31.5047 85 [ -11.6950 15.1682 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 86 - 13.6045 17.0320 4.4730 -Georgia.ttf 12 1 19.8912 31.5047 87 Y -9.1152 38.9680 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 88 Q -10.1304 38.4953 52.5642 -Georgia.ttf 12 1 19.8912 31.5047 89 " -11.4452 17.7547 16.3365 -Georgia.ttf 12 1 19.8912 31.5047 90 ! -10.0835 7.9550 42.7644 -Georgia.ttf 12 1 19.8912 31.5047 91 x 3.6776 29.1682 28.0000 -Georgia.ttf 12 1 19.8912 31.5047 92 ) -11.8882 16.5865 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 93 = 8.5232 29.1682 14.4500 -Georgia.ttf 12 1 19.8912 31.5047 94 + 0.9997 29.4182 29.4182 -Georgia.ttf 12 1 19.8912 31.5047 95 X -8.6839 41.5962 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 96 » 4.6426 23.9998 23.2770 -Georgia.ttf 12 1 19.8912 31.5047 97 ' -11.7149 6.7867 16.3365 -Georgia.ttf 12 1 19.8912 31.5047 98 ¢ -4.6725 25.8241 44.7403 -Georgia.ttf 12 1 19.8912 31.5047 99 Z -8.9575 33.6912 40.4279 -Georgia.ttf 12 1 19.8912 31.5047 100 > 0.1226 26.4279 30.3365 -Georgia.ttf 12 1 19.8912 31.5047 101 ® -10.5792 50.3815 50.3815 -Georgia.ttf 12 1 19.8912 31.5047 102 © -10.2489 50.3815 50.3815 -Georgia.ttf 12 1 19.8912 31.5047 103 ] -11.6816 15.1682 52.4453 -Georgia.ttf 12 1 19.8912 31.5047 104 é -12.2209 24.6953 44.8092 -Georgia.ttf 12 1 19.8912 31.5047 105 z 3.6979 23.0270 28.0000 -Georgia.ttf 12 1 19.8912 31.5047 106 _ 36.5821 37.5498 2.7403 -Georgia.ttf 12 1 19.8912 31.5047 107 ¥ -8.9145 37.0770 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 1 t 6.2248 18.7851 38.0914 -Georgia.ttf 13 | 3.7547 55.3045 2 h -1.0571 31.5237 44.3365 -Georgia.ttf 13 | 3.7547 55.3045 3 a 14.0000 25.6635 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 4 n 14.0816 31.5237 29.1682 -Georgia.ttf 13 | 3.7547 55.3045 5 P 2.7374 31.6236 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 6 o 13.8379 27.2318 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 7 e 14.0417 24.6953 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 8 : 15.1178 7.9550 28.4038 -Georgia.ttf 13 | 3.7547 55.3045 9 r 13.9143 21.9550 29.1682 -Georgia.ttf 13 | 3.7547 55.3045 10 l -1.1687 14.8955 44.3365 -Georgia.ttf 13 | 3.7547 55.3045 11 i -0.6913 14.3538 43.8448 -Georgia.ttf 13 | 3.7547 55.3045 12 1 11.7149 19.8912 31.5047 -Georgia.ttf 13 | 3.7547 55.3045 13 | -0.0102 3.7547 55.3045 -Georgia.ttf 13 | 3.7547 55.3045 14 N 2.6610 42.0727 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 15 f -1.1682 22.1088 44.3365 -Georgia.ttf 13 | 3.7547 55.3045 16 g 14.0801 27.2356 42.0000 -Georgia.ttf 13 | 3.7547 55.3045 17 d -0.9927 30.9403 45.5047 -Georgia.ttf 13 | 3.7547 55.3045 18 W 2.7046 58.3365 40.6779 -Georgia.ttf 13 | 3.7547 55.3045 19 s 13.9286 20.9867 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 20 c 13.9045 24.1536 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 21 u 14.2048 31.5237 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 22 3 11.6219 27.3045 41.7500 -Georgia.ttf 13 | 3.7547 55.3045 23 ~ 21.7377 30.0403 10.4453 -Georgia.ttf 13 | 3.7547 55.3045 24 # 8.0126 29.1872 35.0594 -Georgia.ttf 13 | 3.7547 55.3045 25 O 1.6861 38.4953 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 26 ` -0.5463 11.6635 12.1362 -Georgia.ttf 13 | 3.7547 55.3045 27 @ 4.1288 44.6903 47.8912 -Georgia.ttf 13 | 3.7547 55.3045 28 F 2.5461 31.6736 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 29 S 1.7361 28.0000 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 30 p 14.0055 30.2638 42.0000 -Georgia.ttf 13 | 3.7547 55.3045 31 “ -0.0826 18.8041 15.1682 -Georgia.ttf 13 | 3.7547 55.3045 32 % 1.6161 41.5772 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 33 £ 1.4822 30.0448 41.5962 -Georgia.ttf 13 | 3.7547 55.3045 34 . 35.7400 7.9550 7.9550 -Georgia.ttf 13 | 3.7547 55.3045 35 2 11.8006 26.4090 31.5047 -Georgia.ttf 13 | 3.7547 55.3045 36 5 12.8734 26.8318 40.5818 -Georgia.ttf 13 | 3.7547 55.3045 37 m 14.0000 48.0867 29.1682 -Georgia.ttf 13 | 3.7547 55.3045 38 V 2.6955 41.3045 40.6779 -Georgia.ttf 13 | 3.7547 55.3045 39 6 1.5221 27.7083 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 40 w 15.4055 44.3365 28.0000 -Georgia.ttf 13 | 3.7547 55.3045 41 T 2.8946 36.3815 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 42 M 2.6903 49.8549 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 43 G 1.7480 39.4135 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 44 b -1.1325 31.0781 46.4730 -Georgia.ttf 13 | 3.7547 55.3045 45 9 11.6135 27.7083 41.9500 -Georgia.ttf 13 | 3.7547 55.3045 46 ; 15.2554 9.5498 38.2453 -Georgia.ttf 13 | 3.7547 55.3045 47 D 2.7814 38.0914 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 48 L 2.6175 32.4730 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 49 y 15.2452 30.7403 40.8318 -Georgia.ttf 13 | 3.7547 55.3045 50 ‘ 0.0751 8.3588 15.1682 -Georgia.ttf 13 | 3.7547 55.3045 51 \ 0.0202 23.2770 55.3045 -Georgia.ttf 13 | 3.7547 55.3045 52 R 3.0080 39.2597 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 53 < 11.7417 26.4279 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 54 4 11.8326 29.8448 41.7500 -Georgia.ttf 13 | 3.7547 55.3045 55 8 1.4328 28.7227 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 56 0 11.6877 29.8910 32.6730 -Georgia.ttf 13 | 3.7547 55.3045 57 A 2.8475 41.5962 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 58 E 2.7403 34.7056 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 59 B 2.8667 32.7646 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 60 v 15.1682 30.7403 28.0000 -Georgia.ttf 13 | 3.7547 55.3045 61 k -1.0848 31.4820 44.3365 -Georgia.ttf 13 | 3.7547 55.3045 62 J 2.8946 29.0144 41.5962 -Georgia.ttf 13 | 3.7547 55.3045 63 U 2.8568 42.2189 41.5962 -Georgia.ttf 13 | 3.7547 55.3045 64 j -0.6311 16.3365 56.6766 -Georgia.ttf 13 | 3.7547 55.3045 65 ( 0.0819 16.5865 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 66 7 12.7446 26.5818 40.5818 -Georgia.ttf 13 | 3.7547 55.3045 67 § 1.3261 22.5588 48.8094 -Georgia.ttf 13 | 3.7547 55.3045 68 $ -0.8780 27.3045 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 69 € 1.6312 36.6315 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 70 / -0.1669 23.2770 55.3045 -Georgia.ttf 13 | 3.7547 55.3045 71 C 1.9094 34.2950 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 72 * 1.5995 22.6315 19.9723 -Georgia.ttf 13 | 3.7547 55.3045 73 ” 0.0240 18.8041 15.1682 -Georgia.ttf 13 | 3.7547 55.3045 74 ? 1.7844 22.2277 42.0000 -Georgia.ttf 13 | 3.7547 55.3045 75 { -0.1391 21.2133 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 76 } -0.0298 21.2133 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 77 , 36.1889 9.5498 17.3047 -Georgia.ttf 13 | 3.7547 55.3045 78 I 2.7487 18.1351 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 79 ° 1.4594 18.4730 18.4730 -Georgia.ttf 13 | 3.7547 55.3045 80 K 2.7858 39.2597 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 81 H 2.9544 41.8878 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 82 q 12.6385 30.8903 43.1682 -Georgia.ttf 13 | 3.7547 55.3045 83 & 1.4265 39.2597 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 84 ’ -0.0542 8.3588 15.1682 -Georgia.ttf 13 | 3.7547 55.3045 85 [ 0.3254 15.1682 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 86 - 25.4947 17.0320 4.4730 -Georgia.ttf 13 | 3.7547 55.3045 87 Y 2.7701 38.9680 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 88 Q 1.5766 38.4953 52.5642 -Georgia.ttf 13 | 3.7547 55.3045 89 " -0.0700 17.7547 16.3365 -Georgia.ttf 13 | 3.7547 55.3045 90 ! 1.4864 7.9550 42.7644 -Georgia.ttf 13 | 3.7547 55.3045 91 x 15.1780 29.1682 28.0000 -Georgia.ttf 13 | 3.7547 55.3045 92 ) 0.0000 16.5865 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 93 = 19.9163 29.1682 14.4500 -Georgia.ttf 13 | 3.7547 55.3045 94 + 12.6628 29.4182 29.4182 -Georgia.ttf 13 | 3.7547 55.3045 95 X 2.8177 41.5962 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 96 » 16.5962 23.9998 23.2770 -Georgia.ttf 13 | 3.7547 55.3045 97 ' 0.0714 6.7867 16.3365 -Georgia.ttf 13 | 3.7547 55.3045 98 ¢ 6.7867 25.8241 44.7403 -Georgia.ttf 13 | 3.7547 55.3045 99 Z 2.5752 33.6912 40.4279 -Georgia.ttf 13 | 3.7547 55.3045 100 > 11.7791 26.4279 30.3365 -Georgia.ttf 13 | 3.7547 55.3045 101 ® 1.2054 50.3815 50.3815 -Georgia.ttf 13 | 3.7547 55.3045 102 © 1.2048 50.3815 50.3815 -Georgia.ttf 13 | 3.7547 55.3045 103 ] 0.0871 15.1682 52.4453 -Georgia.ttf 13 | 3.7547 55.3045 104 é -0.3031 24.6953 44.8092 -Georgia.ttf 13 | 3.7547 55.3045 105 z 15.1710 23.0270 28.0000 -Georgia.ttf 13 | 3.7547 55.3045 106 _ 48.4101 37.5498 2.7403 -Georgia.ttf 13 | 3.7547 55.3045 107 ¥ 2.6629 37.0770 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 1 t 3.6671 18.7851 38.0914 -Georgia.ttf 14 N 42.0727 40.4279 2 h -3.8221 31.5237 44.3365 -Georgia.ttf 14 N 42.0727 40.4279 3 a 11.1132 25.6635 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 4 n 11.6634 31.5237 29.1682 -Georgia.ttf 14 N 42.0727 40.4279 5 P -0.1519 31.6236 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 6 o 11.8890 27.2318 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 7 e 11.4154 24.6953 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 8 : 12.3861 7.9550 28.4038 -Georgia.ttf 14 N 42.0727 40.4279 9 r 11.1008 21.9550 29.1682 -Georgia.ttf 14 N 42.0727 40.4279 10 l -3.7471 14.8955 44.3365 -Georgia.ttf 14 N 42.0727 40.4279 11 i -3.7464 14.3538 43.8448 -Georgia.ttf 14 N 42.0727 40.4279 12 1 8.7734 19.8912 31.5047 -Georgia.ttf 14 N 42.0727 40.4279 13 | -2.9373 3.7547 55.3045 -Georgia.ttf 14 N 42.0727 40.4279 14 N 0.0234 42.0727 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 15 f -3.8077 22.1088 44.3365 -Georgia.ttf 14 N 42.0727 40.4279 16 g 11.3751 27.2356 42.0000 -Georgia.ttf 14 N 42.0727 40.4279 17 d -4.1014 30.9403 45.5047 -Georgia.ttf 14 N 42.0727 40.4279 18 W 0.0032 58.3365 40.6779 -Georgia.ttf 14 N 42.0727 40.4279 19 s 11.3170 20.9867 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 20 c 11.1738 24.1536 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 21 u 11.6378 31.5237 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 22 3 8.7624 27.3045 41.7500 -Georgia.ttf 14 N 42.0727 40.4279 23 ~ 19.4880 30.0403 10.4453 -Georgia.ttf 14 N 42.0727 40.4279 24 # 5.4905 29.1872 35.0594 -Georgia.ttf 14 N 42.0727 40.4279 25 O -1.1950 38.4953 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 26 ` -3.1986 11.6635 12.1362 -Georgia.ttf 14 N 42.0727 40.4279 27 @ 1.5835 44.6903 47.8912 -Georgia.ttf 14 N 42.0727 40.4279 28 F 0.0301 31.6736 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 29 S -1.4183 28.0000 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 30 p 11.0029 30.2638 42.0000 -Georgia.ttf 14 N 42.0727 40.4279 31 “ -2.6802 18.8041 15.1682 -Georgia.ttf 14 N 42.0727 40.4279 32 % -0.9559 41.5772 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 33 £ -1.2875 30.0448 41.5962 -Georgia.ttf 14 N 42.0727 40.4279 34 . 32.6266 7.9550 7.9550 -Georgia.ttf 14 N 42.0727 40.4279 35 2 8.6786 26.4090 31.5047 -Georgia.ttf 14 N 42.0727 40.4279 36 5 9.8473 26.8318 40.5818 -Georgia.ttf 14 N 42.0727 40.4279 37 m 11.1698 48.0867 29.1682 -Georgia.ttf 14 N 42.0727 40.4279 38 V -0.1718 41.3045 40.6779 -Georgia.ttf 14 N 42.0727 40.4279 39 6 -1.1626 27.7083 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 40 w 12.5359 44.3365 28.0000 -Georgia.ttf 14 N 42.0727 40.4279 41 T -0.3329 36.3815 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 42 M 0.1822 49.8549 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 43 G -1.2178 39.4135 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 44 b -3.9254 31.0781 46.4730 -Georgia.ttf 14 N 42.0727 40.4279 45 9 9.1009 27.7083 41.9500 -Georgia.ttf 14 N 42.0727 40.4279 46 ; 12.3437 9.5498 38.2453 -Georgia.ttf 14 N 42.0727 40.4279 47 D -0.2013 38.0914 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 48 L 0.0527 32.4730 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 49 y 12.2628 30.7403 40.8318 -Georgia.ttf 14 N 42.0727 40.4279 50 ‘ -2.8247 8.3588 15.1682 -Georgia.ttf 14 N 42.0727 40.4279 51 \ -2.7158 23.2770 55.3045 -Georgia.ttf 14 N 42.0727 40.4279 52 R -0.0783 39.2597 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 53 < 9.3613 26.4279 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 54 4 9.0006 29.8448 41.7500 -Georgia.ttf 14 N 42.0727 40.4279 55 8 -0.9969 28.7227 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 56 0 9.1613 29.8910 32.6730 -Georgia.ttf 14 N 42.0727 40.4279 57 A -0.2595 41.5962 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 58 E 0.2727 34.7056 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 59 B -0.1590 32.7646 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 60 v 12.6050 30.7403 28.0000 -Georgia.ttf 14 N 42.0727 40.4279 61 k -3.8385 31.4820 44.3365 -Georgia.ttf 14 N 42.0727 40.4279 62 J 0.0492 29.0144 41.5962 -Georgia.ttf 14 N 42.0727 40.4279 63 U -0.0325 42.2189 41.5962 -Georgia.ttf 14 N 42.0727 40.4279 64 j -3.5169 16.3365 56.6766 -Georgia.ttf 14 N 42.0727 40.4279 65 ( -2.7292 16.5865 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 66 7 10.2300 26.5818 40.5818 -Georgia.ttf 14 N 42.0727 40.4279 67 § -1.5962 22.5588 48.8094 -Georgia.ttf 14 N 42.0727 40.4279 68 $ -3.8208 27.3045 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 69 € -0.9992 36.6315 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 70 / -2.9372 23.2770 55.3045 -Georgia.ttf 14 N 42.0727 40.4279 71 C -1.2785 34.2950 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 72 * -1.3804 22.6315 19.9723 -Georgia.ttf 14 N 42.0727 40.4279 73 ” -2.5392 18.8041 15.1682 -Georgia.ttf 14 N 42.0727 40.4279 74 ? -1.1668 22.2277 42.0000 -Georgia.ttf 14 N 42.0727 40.4279 75 { -2.6806 21.2133 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 76 } -2.7019 21.2133 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 77 , 33.1453 9.5498 17.3047 -Georgia.ttf 14 N 42.0727 40.4279 78 I -0.0117 18.1351 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 79 ° -1.1780 18.4730 18.4730 -Georgia.ttf 14 N 42.0727 40.4279 80 K -0.4997 39.2597 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 81 H 0.3758 41.8878 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 82 q 10.1981 30.8903 43.1682 -Georgia.ttf 14 N 42.0727 40.4279 83 & -1.3851 39.2597 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 84 ’ -2.6765 8.3588 15.1682 -Georgia.ttf 14 N 42.0727 40.4279 85 [ -3.0077 15.1682 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 86 - 22.5214 17.0320 4.4730 -Georgia.ttf 14 N 42.0727 40.4279 87 Y -0.0815 38.9680 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 88 Q -0.9913 38.4953 52.5642 -Georgia.ttf 14 N 42.0727 40.4279 89 " -2.5300 17.7547 16.3365 -Georgia.ttf 14 N 42.0727 40.4279 90 ! -1.1751 7.9550 42.7644 -Georgia.ttf 14 N 42.0727 40.4279 91 x 12.3505 29.1682 28.0000 -Georgia.ttf 14 N 42.0727 40.4279 92 ) -2.5430 16.5865 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 93 = 17.5005 29.1682 14.4500 -Georgia.ttf 14 N 42.0727 40.4279 94 + 9.8305 29.4182 29.4182 -Georgia.ttf 14 N 42.0727 40.4279 95 X 0.1686 41.5962 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 96 » 13.8794 23.9998 23.2770 -Georgia.ttf 14 N 42.0727 40.4279 97 ' -2.5328 6.7867 16.3365 -Georgia.ttf 14 N 42.0727 40.4279 98 ¢ 4.0761 25.8241 44.7403 -Georgia.ttf 14 N 42.0727 40.4279 99 Z 0.2329 33.6912 40.4279 -Georgia.ttf 14 N 42.0727 40.4279 100 > 9.1097 26.4279 30.3365 -Georgia.ttf 14 N 42.0727 40.4279 101 ® -1.6320 50.3815 50.3815 -Georgia.ttf 14 N 42.0727 40.4279 102 © -1.2817 50.3815 50.3815 -Georgia.ttf 14 N 42.0727 40.4279 103 ] -2.6780 15.1682 52.4453 -Georgia.ttf 14 N 42.0727 40.4279 104 é -3.4628 24.6953 44.8092 -Georgia.ttf 14 N 42.0727 40.4279 105 z 12.6166 23.0270 28.0000 -Georgia.ttf 14 N 42.0727 40.4279 106 _ 45.4561 37.5498 2.7403 -Georgia.ttf 14 N 42.0727 40.4279 107 ¥ 0.0158 37.0770 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 1 t 7.5756 18.7851 38.0914 -Georgia.ttf 15 f 22.1088 44.3365 2 h 0.0807 31.5237 44.3365 -Georgia.ttf 15 f 22.1088 44.3365 3 a 15.3722 25.6635 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 4 n 15.1693 31.5237 29.1682 -Georgia.ttf 15 f 22.1088 44.3365 5 P 4.0002 31.6236 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 6 o 15.0607 27.2318 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 7 e 15.0097 24.6953 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 8 : 16.3862 7.9550 28.4038 -Georgia.ttf 15 f 22.1088 44.3365 9 r 15.1710 21.9550 29.1682 -Georgia.ttf 15 f 22.1088 44.3365 10 l 0.1645 14.8955 44.3365 -Georgia.ttf 15 f 22.1088 44.3365 11 i 0.4207 14.3538 43.8448 -Georgia.ttf 15 f 22.1088 44.3365 12 1 12.6492 19.8912 31.5047 -Georgia.ttf 15 f 22.1088 44.3365 13 | 1.3577 3.7547 55.3045 -Georgia.ttf 15 f 22.1088 44.3365 14 N 3.9540 42.0727 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 15 f -0.0005 22.1088 44.3365 -Georgia.ttf 15 f 22.1088 44.3365 16 g 15.2022 27.2356 42.0000 -Georgia.ttf 15 f 22.1088 44.3365 17 d -0.1449 30.9403 45.5047 -Georgia.ttf 15 f 22.1088 44.3365 18 W 3.9897 58.3365 40.6779 -Georgia.ttf 15 f 22.1088 44.3365 19 s 15.0010 20.9867 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 20 c 15.1734 24.1536 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 21 u 15.2494 31.5237 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 22 3 12.9605 27.3045 41.7500 -Georgia.ttf 15 f 22.1088 44.3365 23 ~ 23.2006 30.0403 10.4453 -Georgia.ttf 15 f 22.1088 44.3365 24 # 9.2038 29.1872 35.0594 -Georgia.ttf 15 f 22.1088 44.3365 25 O 2.8989 38.4953 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 26 ` 0.6038 11.6635 12.1362 -Georgia.ttf 15 f 22.1088 44.3365 27 @ 5.1540 44.6903 47.8912 -Georgia.ttf 15 f 22.1088 44.3365 28 F 3.9957 31.6736 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 29 S 2.7393 28.0000 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 30 p 15.2456 30.2638 42.0000 -Georgia.ttf 15 f 22.1088 44.3365 31 “ 0.9997 18.8041 15.1682 -Georgia.ttf 15 f 22.1088 44.3365 32 % 2.7618 41.5772 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 33 £ 2.8237 30.0448 41.5962 -Georgia.ttf 15 f 22.1088 44.3365 34 . 36.7363 7.9550 7.9550 -Georgia.ttf 15 f 22.1088 44.3365 35 2 12.8790 26.4090 31.5047 -Georgia.ttf 15 f 22.1088 44.3365 36 5 14.3452 26.8318 40.5818 -Georgia.ttf 15 f 22.1088 44.3365 37 m 14.9337 48.0867 29.1682 -Georgia.ttf 15 f 22.1088 44.3365 38 V 3.9754 41.3045 40.6779 -Georgia.ttf 15 f 22.1088 44.3365 39 6 2.9044 27.7083 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 40 w 16.3684 44.3365 28.0000 -Georgia.ttf 15 f 22.1088 44.3365 41 T 4.0983 36.3815 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 42 M 3.8172 49.8549 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 43 G 2.8817 39.4135 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 44 b -0.1294 31.0781 46.4730 -Georgia.ttf 15 f 22.1088 44.3365 45 9 12.6775 27.7083 41.9500 -Georgia.ttf 15 f 22.1088 44.3365 46 ; 16.1609 9.5498 38.2453 -Georgia.ttf 15 f 22.1088 44.3365 47 D 3.6714 38.0914 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 48 L 3.9827 32.4730 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 49 y 16.2827 30.7403 40.8318 -Georgia.ttf 15 f 22.1088 44.3365 50 ‘ 1.0556 8.3588 15.1682 -Georgia.ttf 15 f 22.1088 44.3365 51 \ 1.2938 23.2770 55.3045 -Georgia.ttf 15 f 22.1088 44.3365 52 R 3.5191 39.2597 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 53 < 13.0882 26.4279 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 54 4 12.9893 29.8448 41.7500 -Georgia.ttf 15 f 22.1088 44.3365 55 8 2.9698 28.7227 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 56 0 12.6057 29.8910 32.6730 -Georgia.ttf 15 f 22.1088 44.3365 57 A 3.8187 41.5962 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 58 E 3.9604 34.7056 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 59 B 3.6407 32.7646 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 60 v 16.1647 30.7403 28.0000 -Georgia.ttf 15 f 22.1088 44.3365 61 k 0.0000 31.4820 44.3365 -Georgia.ttf 15 f 22.1088 44.3365 62 J 3.8526 29.0144 41.5962 -Georgia.ttf 15 f 22.1088 44.3365 63 U 3.9118 42.2189 41.5962 -Georgia.ttf 15 f 22.1088 44.3365 64 j 0.4147 16.3365 56.6766 -Georgia.ttf 15 f 22.1088 44.3365 65 ( 1.0769 16.5865 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 66 7 13.9468 26.5818 40.5818 -Georgia.ttf 15 f 22.1088 44.3365 67 § 2.7070 22.5588 48.8094 -Georgia.ttf 15 f 22.1088 44.3365 68 $ -0.0827 27.3045 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 69 € 2.6991 36.6315 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 70 / 1.2599 23.2770 55.3045 -Georgia.ttf 15 f 22.1088 44.3365 71 C 2.7589 34.2950 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 72 * 2.8326 22.6315 19.9723 -Georgia.ttf 15 f 22.1088 44.3365 73 ” 1.0083 18.8041 15.1682 -Georgia.ttf 15 f 22.1088 44.3365 74 ? 2.7613 22.2277 42.0000 -Georgia.ttf 15 f 22.1088 44.3365 75 { 1.3923 21.2133 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 76 } 1.2205 21.2133 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 77 , 37.1854 9.5498 17.3047 -Georgia.ttf 15 f 22.1088 44.3365 78 I 4.1866 18.1351 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 79 ° 2.7008 18.4730 18.4730 -Georgia.ttf 15 f 22.1088 44.3365 80 K 4.0671 39.2597 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 81 H 3.5480 41.8878 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 82 q 14.0769 30.8903 43.1682 -Georgia.ttf 15 f 22.1088 44.3365 83 & 2.5915 39.2597 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 84 ’ 1.3323 8.3588 15.1682 -Georgia.ttf 15 f 22.1088 44.3365 85 [ 1.0372 15.1682 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 86 - 26.5065 17.0320 4.4730 -Georgia.ttf 15 f 22.1088 44.3365 87 Y 4.2923 38.9680 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 88 Q 2.7306 38.4953 52.5642 -Georgia.ttf 15 f 22.1088 44.3365 89 " 1.4282 17.7547 16.3365 -Georgia.ttf 15 f 22.1088 44.3365 90 ! 2.8088 7.9550 42.7644 -Georgia.ttf 15 f 22.1088 44.3365 91 x 16.3354 29.1682 28.0000 -Georgia.ttf 15 f 22.1088 44.3365 92 ) 1.2225 16.5865 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 93 = 21.3028 29.1682 14.4500 -Georgia.ttf 15 f 22.1088 44.3365 94 + 13.6212 29.4182 29.4182 -Georgia.ttf 15 f 22.1088 44.3365 95 X 3.6436 41.5962 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 96 » 17.8089 23.9998 23.2770 -Georgia.ttf 15 f 22.1088 44.3365 97 ' 1.2613 6.7867 16.3365 -Georgia.ttf 15 f 22.1088 44.3365 98 ¢ 8.0106 25.8241 44.7403 -Georgia.ttf 15 f 22.1088 44.3365 99 Z 4.0183 33.6912 40.4279 -Georgia.ttf 15 f 22.1088 44.3365 100 > 12.7004 26.4279 30.3365 -Georgia.ttf 15 f 22.1088 44.3365 101 ® 1.9548 50.3815 50.3815 -Georgia.ttf 15 f 22.1088 44.3365 102 © 2.2045 50.3815 50.3815 -Georgia.ttf 15 f 22.1088 44.3365 103 ] 1.2641 15.1682 52.4453 -Georgia.ttf 15 f 22.1088 44.3365 104 é 0.3711 24.6953 44.8092 -Georgia.ttf 15 f 22.1088 44.3365 105 z 16.3448 23.0270 28.0000 -Georgia.ttf 15 f 22.1088 44.3365 106 _ 49.3826 37.5498 2.7403 -Georgia.ttf 15 f 22.1088 44.3365 107 ¥ 3.8376 37.0770 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 1 t -7.7147 18.7851 38.0914 -Georgia.ttf 16 g 27.2356 42.0000 2 h -15.1009 31.5237 44.3365 -Georgia.ttf 16 g 27.2356 42.0000 3 a 0.1131 25.6635 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 4 n -0.0430 31.5237 29.1682 -Georgia.ttf 16 g 27.2356 42.0000 5 P -11.0411 31.6236 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 6 o 0.1778 27.2318 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 7 e -0.1443 24.6953 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 8 : 1.3285 7.9550 28.4038 -Georgia.ttf 16 g 27.2356 42.0000 9 r -0.1626 21.9550 29.1682 -Georgia.ttf 16 g 27.2356 42.0000 10 l -15.1642 14.8955 44.3365 -Georgia.ttf 16 g 27.2356 42.0000 11 i -14.6553 14.3538 43.8448 -Georgia.ttf 16 g 27.2356 42.0000 12 1 -2.2613 19.8912 31.5047 -Georgia.ttf 16 g 27.2356 42.0000 13 | -14.2701 3.7547 55.3045 -Georgia.ttf 16 g 27.2356 42.0000 14 N -11.2684 42.0727 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 15 f -15.1266 22.1088 44.3365 -Georgia.ttf 16 g 27.2356 42.0000 16 g 0.0097 27.2356 42.0000 -Georgia.ttf 16 g 27.2356 42.0000 17 d -15.3067 30.9403 45.5047 -Georgia.ttf 16 g 27.2356 42.0000 18 W -11.2288 58.3365 40.6779 -Georgia.ttf 16 g 27.2356 42.0000 19 s -0.3073 20.9867 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 20 c 0.1806 24.1536 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 21 u 0.1034 31.5237 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 22 3 -2.5701 27.3045 41.7500 -Georgia.ttf 16 g 27.2356 42.0000 23 ~ 8.0143 30.0403 10.4453 -Georgia.ttf 16 g 27.2356 42.0000 24 # -5.6844 29.1872 35.0594 -Georgia.ttf 16 g 27.2356 42.0000 25 O -12.2967 38.4953 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 26 ` -14.3486 11.6635 12.1362 -Georgia.ttf 16 g 27.2356 42.0000 27 @ -9.6488 44.6903 47.8912 -Georgia.ttf 16 g 27.2356 42.0000 28 F -11.0599 31.6736 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 29 S -12.8005 28.0000 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 30 p -0.1683 30.2638 42.0000 -Georgia.ttf 16 g 27.2356 42.0000 31 “ -14.0655 18.8041 15.1682 -Georgia.ttf 16 g 27.2356 42.0000 32 % -12.5039 41.5772 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 33 £ -12.3115 30.0448 41.5962 -Georgia.ttf 16 g 27.2356 42.0000 34 . 21.4151 7.9550 7.9550 -Georgia.ttf 16 g 27.2356 42.0000 35 2 -2.3305 26.4090 31.5047 -Georgia.ttf 16 g 27.2356 42.0000 36 5 -1.0055 26.8318 40.5818 -Georgia.ttf 16 g 27.2356 42.0000 37 m -0.2442 48.0867 29.1682 -Georgia.ttf 16 g 27.2356 42.0000 38 V -11.4487 41.3045 40.6779 -Georgia.ttf 16 g 27.2356 42.0000 39 6 -12.3051 27.7083 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 40 w 1.0583 44.3365 28.0000 -Georgia.ttf 16 g 27.2356 42.0000 41 T -11.2734 36.3815 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 42 M -11.2694 49.8549 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 43 G -12.5854 39.4135 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 44 b -14.7567 31.0781 46.4730 -Georgia.ttf 16 g 27.2356 42.0000 45 9 -2.2799 27.7083 41.9500 -Georgia.ttf 16 g 27.2356 42.0000 46 ; 1.0881 9.5498 38.2453 -Georgia.ttf 16 g 27.2356 42.0000 47 D -11.4466 38.0914 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 48 L -11.0858 32.4730 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 49 y 1.2007 30.7403 40.8318 -Georgia.ttf 16 g 27.2356 42.0000 50 ‘ -14.3216 8.3588 15.1682 -Georgia.ttf 16 g 27.2356 42.0000 51 \ -13.8211 23.2770 55.3045 -Georgia.ttf 16 g 27.2356 42.0000 52 R -11.3536 39.2597 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 53 < -2.2398 26.4279 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 54 4 -2.4216 29.8448 41.7500 -Georgia.ttf 16 g 27.2356 42.0000 55 8 -12.3505 28.7227 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 56 0 -2.1839 29.8910 32.6730 -Georgia.ttf 16 g 27.2356 42.0000 57 A -11.2236 41.5962 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 58 E -11.3073 34.7056 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 59 B -11.1882 32.7646 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 60 v 1.3855 30.7403 28.0000 -Georgia.ttf 16 g 27.2356 42.0000 61 k -15.1645 31.4820 44.3365 -Georgia.ttf 16 g 27.2356 42.0000 62 J -11.3992 29.0144 41.5962 -Georgia.ttf 16 g 27.2356 42.0000 63 U -11.0935 42.2189 41.5962 -Georgia.ttf 16 g 27.2356 42.0000 64 j -14.6589 16.3365 56.6766 -Georgia.ttf 16 g 27.2356 42.0000 65 ( -14.0676 16.5865 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 66 7 -0.9883 26.5818 40.5818 -Georgia.ttf 16 g 27.2356 42.0000 67 § -12.4351 22.5588 48.8094 -Georgia.ttf 16 g 27.2356 42.0000 68 $ -14.8682 27.3045 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 69 € -12.6964 36.6315 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 70 / -14.1636 23.2770 55.3045 -Georgia.ttf 16 g 27.2356 42.0000 71 C -12.2853 34.2950 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 72 * -12.2685 22.6315 19.9723 -Georgia.ttf 16 g 27.2356 42.0000 73 ” -14.1752 18.8041 15.1682 -Georgia.ttf 16 g 27.2356 42.0000 74 ? -12.3905 22.2277 42.0000 -Georgia.ttf 16 g 27.2356 42.0000 75 { -14.0000 21.2133 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 76 } -13.9031 21.2133 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 77 , 22.2166 9.5498 17.3047 -Georgia.ttf 16 g 27.2356 42.0000 78 I -11.2376 18.1351 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 79 ° -12.3793 18.4730 18.4730 -Georgia.ttf 16 g 27.2356 42.0000 80 K -11.3111 39.2597 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 81 H -11.1697 41.8878 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 82 q -1.0634 30.8903 43.1682 -Georgia.ttf 16 g 27.2356 42.0000 83 & -12.4891 39.2597 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 84 ’ -14.2397 8.3588 15.1682 -Georgia.ttf 16 g 27.2356 42.0000 85 [ -14.0487 15.1682 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 86 - 11.4219 17.0320 4.4730 -Georgia.ttf 16 g 27.2356 42.0000 87 Y -11.4765 38.9680 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 88 Q -12.4598 38.4953 52.5642 -Georgia.ttf 16 g 27.2356 42.0000 89 " -13.8766 17.7547 16.3365 -Georgia.ttf 16 g 27.2356 42.0000 90 ! -12.4091 7.9550 42.7644 -Georgia.ttf 16 g 27.2356 42.0000 91 x 1.3841 29.1682 28.0000 -Georgia.ttf 16 g 27.2356 42.0000 92 ) -13.7363 16.5865 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 93 = 5.9601 29.1682 14.4500 -Georgia.ttf 16 g 27.2356 42.0000 94 + -1.5077 29.4182 29.4182 -Georgia.ttf 16 g 27.2356 42.0000 95 X -11.2712 41.5962 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 96 » 2.6799 23.9998 23.2770 -Georgia.ttf 16 g 27.2356 42.0000 97 ' -14.0780 6.7867 16.3365 -Georgia.ttf 16 g 27.2356 42.0000 98 ¢ -6.9971 25.8241 44.7403 -Georgia.ttf 16 g 27.2356 42.0000 99 Z -10.9353 33.6912 40.4279 -Georgia.ttf 16 g 27.2356 42.0000 100 > -2.3131 26.4279 30.3365 -Georgia.ttf 16 g 27.2356 42.0000 101 ® -12.5240 50.3815 50.3815 -Georgia.ttf 16 g 27.2356 42.0000 102 © -12.6858 50.3815 50.3815 -Georgia.ttf 16 g 27.2356 42.0000 103 ] -13.9699 15.1682 52.4453 -Georgia.ttf 16 g 27.2356 42.0000 104 é -14.4209 24.6953 44.8092 -Georgia.ttf 16 g 27.2356 42.0000 105 z 1.1438 23.0270 28.0000 -Georgia.ttf 16 g 27.2356 42.0000 106 _ 34.1929 37.5498 2.7403 -Georgia.ttf 16 g 27.2356 42.0000 107 ¥ -11.3041 37.0770 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 1 t 7.3280 18.7851 38.0914 -Georgia.ttf 17 d 30.9403 45.5047 2 h -0.0833 31.5237 44.3365 -Georgia.ttf 17 d 30.9403 45.5047 3 a 15.2424 25.6635 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 4 n 15.1572 31.5237 29.1682 -Georgia.ttf 17 d 30.9403 45.5047 5 P 3.7395 31.6236 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 6 o 15.1990 27.2318 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 7 e 14.9927 24.6953 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 8 : 16.3217 7.9550 28.4038 -Georgia.ttf 17 d 30.9403 45.5047 9 r 15.4069 21.9550 29.1682 -Georgia.ttf 17 d 30.9403 45.5047 10 l -0.2221 14.8955 44.3365 -Georgia.ttf 17 d 30.9403 45.5047 11 i 0.3199 14.3538 43.8448 -Georgia.ttf 17 d 30.9403 45.5047 12 1 12.7187 19.8912 31.5047 -Georgia.ttf 17 d 30.9403 45.5047 13 | 1.1238 3.7547 55.3045 -Georgia.ttf 17 d 30.9403 45.5047 14 N 3.9915 42.0727 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 15 f -0.1585 22.1088 44.3365 -Georgia.ttf 17 d 30.9403 45.5047 16 g 14.9597 27.2356 42.0000 -Georgia.ttf 17 d 30.9403 45.5047 17 d 0.1669 30.9403 45.5047 -Georgia.ttf 17 d 30.9403 45.5047 18 W 3.6074 58.3365 40.6779 -Georgia.ttf 17 d 30.9403 45.5047 19 s 15.3981 20.9867 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 20 c 15.2099 24.1536 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 21 u 15.3855 31.5237 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 22 3 12.6705 27.3045 41.7500 -Georgia.ttf 17 d 30.9403 45.5047 23 ~ 23.1259 30.0403 10.4453 -Georgia.ttf 17 d 30.9403 45.5047 24 # 8.9063 29.1872 35.0594 -Georgia.ttf 17 d 30.9403 45.5047 25 O 2.4433 38.4953 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 26 ` 0.9699 11.6635 12.1362 -Georgia.ttf 17 d 30.9403 45.5047 27 @ 5.3916 44.6903 47.8912 -Georgia.ttf 17 d 30.9403 45.5047 28 F 3.6538 31.6736 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 29 S 2.6749 28.0000 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 30 p 15.1306 30.2638 42.0000 -Georgia.ttf 17 d 30.9403 45.5047 31 “ 1.2868 18.8041 15.1682 -Georgia.ttf 17 d 30.9403 45.5047 32 % 2.8375 41.5772 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 33 £ 2.7803 30.0448 41.5962 -Georgia.ttf 17 d 30.9403 45.5047 34 . 36.9921 7.9550 7.9550 -Georgia.ttf 17 d 30.9403 45.5047 35 2 12.8989 26.4090 31.5047 -Georgia.ttf 17 d 30.9403 45.5047 36 5 14.1833 26.8318 40.5818 -Georgia.ttf 17 d 30.9403 45.5047 37 m 15.1994 48.0867 29.1682 -Georgia.ttf 17 d 30.9403 45.5047 38 V 3.4568 41.3045 40.6779 -Georgia.ttf 17 d 30.9403 45.5047 39 6 2.6217 27.7083 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 40 w 16.8319 44.3365 28.0000 -Georgia.ttf 17 d 30.9403 45.5047 41 T 3.6254 36.3815 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 42 M 3.8000 49.8549 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 43 G 2.8177 39.4135 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 44 b 0.1865 31.0781 46.4730 -Georgia.ttf 17 d 30.9403 45.5047 45 9 12.8934 27.7083 41.9500 -Georgia.ttf 17 d 30.9403 45.5047 46 ; 16.4152 9.5498 38.2453 -Georgia.ttf 17 d 30.9403 45.5047 47 D 3.8371 38.0914 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 48 L 4.0277 32.4730 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 49 y 16.3327 30.7403 40.8318 -Georgia.ttf 17 d 30.9403 45.5047 50 ‘ 1.1720 8.3588 15.1682 -Georgia.ttf 17 d 30.9403 45.5047 51 \ 1.2429 23.2770 55.3045 -Georgia.ttf 17 d 30.9403 45.5047 52 R 3.5810 39.2597 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 53 < 12.9325 26.4279 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 54 4 12.8874 29.8448 41.7500 -Georgia.ttf 17 d 30.9403 45.5047 55 8 2.7887 28.7227 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 56 0 12.6248 29.8910 32.6730 -Georgia.ttf 17 d 30.9403 45.5047 57 A 3.7844 41.5962 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 58 E 4.2927 34.7056 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 59 B 3.6948 32.7646 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 60 v 16.1845 30.7403 28.0000 -Georgia.ttf 17 d 30.9403 45.5047 61 k 0.0626 31.4820 44.3365 -Georgia.ttf 17 d 30.9403 45.5047 62 J 3.9749 29.0144 41.5962 -Georgia.ttf 17 d 30.9403 45.5047 63 U 3.6605 42.2189 41.5962 -Georgia.ttf 17 d 30.9403 45.5047 64 j 0.2530 16.3365 56.6766 -Georgia.ttf 17 d 30.9403 45.5047 65 ( 1.1266 16.5865 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 66 7 13.8763 26.5818 40.5818 -Georgia.ttf 17 d 30.9403 45.5047 67 § 2.7984 22.5588 48.8094 -Georgia.ttf 17 d 30.9403 45.5047 68 $ 0.3143 27.3045 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 69 € 2.6350 36.6315 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 70 / 1.2868 23.2770 55.3045 -Georgia.ttf 17 d 30.9403 45.5047 71 C 2.5108 34.2950 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 72 * 2.7755 22.6315 19.9723 -Georgia.ttf 17 d 30.9403 45.5047 73 ” 1.1336 18.8041 15.1682 -Georgia.ttf 17 d 30.9403 45.5047 74 ? 2.7820 22.2277 42.0000 -Georgia.ttf 17 d 30.9403 45.5047 75 { 1.1605 21.2133 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 76 } 1.0174 21.2133 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 77 , 37.0392 9.5498 17.3047 -Georgia.ttf 17 d 30.9403 45.5047 78 I 3.9568 18.1351 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 79 ° 2.6602 18.4730 18.4730 -Georgia.ttf 17 d 30.9403 45.5047 80 K 3.6597 39.2597 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 81 H 4.4359 41.8878 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 82 q 14.2809 30.8903 43.1682 -Georgia.ttf 17 d 30.9403 45.5047 83 & 2.5354 39.2597 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 84 ’ 1.1340 8.3588 15.1682 -Georgia.ttf 17 d 30.9403 45.5047 85 [ 0.8855 15.1682 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 86 - 26.5363 17.0320 4.4730 -Georgia.ttf 17 d 30.9403 45.5047 87 Y 3.8663 38.9680 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 88 Q 2.3632 38.4953 52.5642 -Georgia.ttf 17 d 30.9403 45.5047 89 " 0.9986 17.7547 16.3365 -Georgia.ttf 17 d 30.9403 45.5047 90 ! 3.0564 7.9550 42.7644 -Georgia.ttf 17 d 30.9403 45.5047 91 x 16.1682 29.1682 28.0000 -Georgia.ttf 17 d 30.9403 45.5047 92 ) 1.3693 16.5865 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 93 = 21.1990 29.1682 14.4500 -Georgia.ttf 17 d 30.9403 45.5047 94 + 13.6345 29.4182 29.4182 -Georgia.ttf 17 d 30.9403 45.5047 95 X 4.0776 41.5962 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 96 » 17.5581 23.9998 23.2770 -Georgia.ttf 17 d 30.9403 45.5047 97 ' 1.2348 6.7867 16.3365 -Georgia.ttf 17 d 30.9403 45.5047 98 ¢ 8.0959 25.8241 44.7403 -Georgia.ttf 17 d 30.9403 45.5047 99 Z 3.7853 33.6912 40.4279 -Georgia.ttf 17 d 30.9403 45.5047 100 > 12.9923 26.4279 30.3365 -Georgia.ttf 17 d 30.9403 45.5047 101 ® 2.2131 50.3815 50.3815 -Georgia.ttf 17 d 30.9403 45.5047 102 © 2.3605 50.3815 50.3815 -Georgia.ttf 17 d 30.9403 45.5047 103 ] 1.5051 15.1682 52.4453 -Georgia.ttf 17 d 30.9403 45.5047 104 é 0.5754 24.6953 44.8092 -Georgia.ttf 17 d 30.9403 45.5047 105 z 15.9811 23.0270 28.0000 -Georgia.ttf 17 d 30.9403 45.5047 106 _ 49.3358 37.5498 2.7403 -Georgia.ttf 17 d 30.9403 45.5047 107 ¥ 3.8427 37.0770 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 1 t 3.3349 18.7851 38.0914 -Georgia.ttf 18 W 58.3365 40.6779 2 h -3.6703 31.5237 44.3365 -Georgia.ttf 18 W 58.3365 40.6779 3 a 11.2864 25.6635 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 4 n 11.4122 31.5237 29.1682 -Georgia.ttf 18 W 58.3365 40.6779 5 P 0.3291 31.6236 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 6 o 11.0400 27.2318 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 7 e 10.8276 24.6953 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 8 : 12.7652 7.9550 28.4038 -Georgia.ttf 18 W 58.3365 40.6779 9 r 11.5567 21.9550 29.1682 -Georgia.ttf 18 W 58.3365 40.6779 10 l -3.7354 14.8955 44.3365 -Georgia.ttf 18 W 58.3365 40.6779 11 i -3.4386 14.3538 43.8448 -Georgia.ttf 18 W 58.3365 40.6779 12 1 8.5810 19.8912 31.5047 -Georgia.ttf 18 W 58.3365 40.6779 13 | -2.8653 3.7547 55.3045 -Georgia.ttf 18 W 58.3365 40.6779 14 N -0.2435 42.0727 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 15 f -3.9485 22.1088 44.3365 -Georgia.ttf 18 W 58.3365 40.6779 16 g 10.9794 27.2356 42.0000 -Georgia.ttf 18 W 58.3365 40.6779 17 d -3.8788 30.9403 45.5047 -Georgia.ttf 18 W 58.3365 40.6779 18 W 0.0358 58.3365 40.6779 -Georgia.ttf 18 W 58.3365 40.6779 19 s 11.3065 20.9867 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 20 c 11.2425 24.1536 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 21 u 11.2519 31.5237 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 22 3 9.0465 27.3045 41.7500 -Georgia.ttf 18 W 58.3365 40.6779 23 ~ 19.0270 30.0403 10.4453 -Georgia.ttf 18 W 58.3365 40.6779 24 # 5.3688 29.1872 35.0594 -Georgia.ttf 18 W 58.3365 40.6779 25 O -1.1159 38.4953 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 26 ` -2.8090 11.6635 12.1362 -Georgia.ttf 18 W 58.3365 40.6779 27 @ 1.0859 44.6903 47.8912 -Georgia.ttf 18 W 58.3365 40.6779 28 F 0.2951 31.6736 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 29 S -1.1780 28.0000 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 30 p 11.1281 30.2638 42.0000 -Georgia.ttf 18 W 58.3365 40.6779 31 “ -2.6249 18.8041 15.1682 -Georgia.ttf 18 W 58.3365 40.6779 32 % -1.5303 41.5772 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 33 £ -1.2740 30.0448 41.5962 -Georgia.ttf 18 W 58.3365 40.6779 34 . 33.2681 7.9550 7.9550 -Georgia.ttf 18 W 58.3365 40.6779 35 2 8.8754 26.4090 31.5047 -Georgia.ttf 18 W 58.3365 40.6779 36 5 9.9051 26.8318 40.5818 -Georgia.ttf 18 W 58.3365 40.6779 37 m 11.4879 48.0867 29.1682 -Georgia.ttf 18 W 58.3365 40.6779 38 V 0.0255 41.3045 40.6779 -Georgia.ttf 18 W 58.3365 40.6779 39 6 -0.9729 27.7083 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 40 w 12.5378 44.3365 28.0000 -Georgia.ttf 18 W 58.3365 40.6779 41 T -0.3559 36.3815 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 42 M 0.1516 49.8549 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 43 G -1.2460 39.4135 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 44 b -4.0066 31.0781 46.4730 -Georgia.ttf 18 W 58.3365 40.6779 45 9 8.6149 27.7083 41.9500 -Georgia.ttf 18 W 58.3365 40.6779 46 ; 13.0062 9.5498 38.2453 -Georgia.ttf 18 W 58.3365 40.6779 47 D 0.1918 38.0914 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 48 L 0.1738 32.4730 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 49 y 12.5315 30.7403 40.8318 -Georgia.ttf 18 W 58.3365 40.6779 50 ‘ -2.5538 8.3588 15.1682 -Georgia.ttf 18 W 58.3365 40.6779 51 \ -2.8743 23.2770 55.3045 -Georgia.ttf 18 W 58.3365 40.6779 52 R -0.0869 39.2597 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 53 < 9.2127 26.4279 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 54 4 8.9094 29.8448 41.7500 -Georgia.ttf 18 W 58.3365 40.6779 55 8 -1.1558 28.7227 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 56 0 9.0551 29.8910 32.6730 -Georgia.ttf 18 W 58.3365 40.6779 57 A -0.1078 41.5962 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 58 E 0.3225 34.7056 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 59 B 0.0954 32.7646 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 60 v 12.0257 30.7403 28.0000 -Georgia.ttf 18 W 58.3365 40.6779 61 k -3.9368 31.4820 44.3365 -Georgia.ttf 18 W 58.3365 40.6779 62 J -0.2495 29.0144 41.5962 -Georgia.ttf 18 W 58.3365 40.6779 63 U -0.2739 42.2189 41.5962 -Georgia.ttf 18 W 58.3365 40.6779 64 j -3.4113 16.3365 56.6766 -Georgia.ttf 18 W 58.3365 40.6779 65 ( -2.8362 16.5865 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 66 7 9.9005 26.5818 40.5818 -Georgia.ttf 18 W 58.3365 40.6779 67 § -0.7471 22.5588 48.8094 -Georgia.ttf 18 W 58.3365 40.6779 68 $ -3.9265 27.3045 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 69 € -1.1570 36.6315 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 70 / -2.7789 23.2770 55.3045 -Georgia.ttf 18 W 58.3365 40.6779 71 C -1.4891 34.2950 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 72 * -1.4440 22.6315 19.9723 -Georgia.ttf 18 W 58.3365 40.6779 73 ” -2.7425 18.8041 15.1682 -Georgia.ttf 18 W 58.3365 40.6779 74 ? -1.2577 22.2277 42.0000 -Georgia.ttf 18 W 58.3365 40.6779 75 { -2.7980 21.2133 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 76 } -2.5610 21.2133 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 77 , 33.4376 9.5498 17.3047 -Georgia.ttf 18 W 58.3365 40.6779 78 I 0.1497 18.1351 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 79 ° -1.0412 18.4730 18.4730 -Georgia.ttf 18 W 58.3365 40.6779 80 K -0.3922 39.2597 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 81 H -0.2127 41.8878 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 82 q 10.2059 30.8903 43.1682 -Georgia.ttf 18 W 58.3365 40.6779 83 & -1.2962 39.2597 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 84 ’ -2.8946 8.3588 15.1682 -Georgia.ttf 18 W 58.3365 40.6779 85 [ -3.1491 15.1682 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 86 - 22.3831 17.0320 4.4730 -Georgia.ttf 18 W 58.3365 40.6779 87 Y 0.1136 38.9680 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 88 Q -0.8950 38.4953 52.5642 -Georgia.ttf 18 W 58.3365 40.6779 89 " -2.8833 17.7547 16.3365 -Georgia.ttf 18 W 58.3365 40.6779 90 ! -1.2174 7.9550 42.7644 -Georgia.ttf 18 W 58.3365 40.6779 91 x 12.3572 29.1682 28.0000 -Georgia.ttf 18 W 58.3365 40.6779 92 ) -2.5465 16.5865 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 93 = 17.2523 29.1682 14.4500 -Georgia.ttf 18 W 58.3365 40.6779 94 + 10.0965 29.4182 29.4182 -Georgia.ttf 18 W 58.3365 40.6779 95 X -0.2141 41.5962 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 96 » 14.0519 23.9998 23.2770 -Georgia.ttf 18 W 58.3365 40.6779 97 ' -2.6502 6.7867 16.3365 -Georgia.ttf 18 W 58.3365 40.6779 98 ¢ 3.8189 25.8241 44.7403 -Georgia.ttf 18 W 58.3365 40.6779 99 Z -0.0165 33.6912 40.4279 -Georgia.ttf 18 W 58.3365 40.6779 100 > 9.3087 26.4279 30.3365 -Georgia.ttf 18 W 58.3365 40.6779 101 ® -1.7445 50.3815 50.3815 -Georgia.ttf 18 W 58.3365 40.6779 102 © -1.5122 50.3815 50.3815 -Georgia.ttf 18 W 58.3365 40.6779 103 ] -2.4021 15.1682 52.4453 -Georgia.ttf 18 W 58.3365 40.6779 104 é -3.1801 24.6953 44.8092 -Georgia.ttf 18 W 58.3365 40.6779 105 z 12.4652 23.0270 28.0000 -Georgia.ttf 18 W 58.3365 40.6779 106 _ 45.7483 37.5498 2.7403 -Georgia.ttf 18 W 58.3365 40.6779 107 ¥ 0.0296 37.0770 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 1 t -7.5381 18.7851 38.0914 -Georgia.ttf 19 s 20.9867 30.3365 2 h -15.1252 31.5237 44.3365 -Georgia.ttf 19 s 20.9867 30.3365 3 a -0.2585 25.6635 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 4 n -0.1371 31.5237 29.1682 -Georgia.ttf 19 s 20.9867 30.3365 5 P -11.4252 31.6236 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 6 o 0.0449 27.2318 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 7 e 0.0111 24.6953 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 8 : 1.2599 7.9550 28.4038 -Georgia.ttf 19 s 20.9867 30.3365 9 r -0.0909 21.9550 29.1682 -Georgia.ttf 19 s 20.9867 30.3365 10 l -15.4458 14.8955 44.3365 -Georgia.ttf 19 s 20.9867 30.3365 11 i -14.5895 14.3538 43.8448 -Georgia.ttf 19 s 20.9867 30.3365 12 1 -2.6835 19.8912 31.5047 -Georgia.ttf 19 s 20.9867 30.3365 13 | -13.8202 3.7547 55.3045 -Georgia.ttf 19 s 20.9867 30.3365 14 N -11.3010 42.0727 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 15 f -14.9712 22.1088 44.3365 -Georgia.ttf 19 s 20.9867 30.3365 16 g 0.0603 27.2356 42.0000 -Georgia.ttf 19 s 20.9867 30.3365 17 d -15.6020 30.9403 45.5047 -Georgia.ttf 19 s 20.9867 30.3365 18 W -11.2130 58.3365 40.6779 -Georgia.ttf 19 s 20.9867 30.3365 19 s 0.0340 20.9867 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 20 c -0.2914 24.1536 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 21 u 0.3536 31.5237 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 22 3 -2.3482 27.3045 41.7500 -Georgia.ttf 19 s 20.9867 30.3365 23 ~ 7.9637 30.0403 10.4453 -Georgia.ttf 19 s 20.9867 30.3365 24 # -5.9472 29.1872 35.0594 -Georgia.ttf 19 s 20.9867 30.3365 25 O -12.5112 38.4953 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 26 ` -14.3184 11.6635 12.1362 -Georgia.ttf 19 s 20.9867 30.3365 27 @ -9.9036 44.6903 47.8912 -Georgia.ttf 19 s 20.9867 30.3365 28 F -11.4140 31.6736 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 29 S -12.4650 28.0000 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 30 p 0.1645 30.2638 42.0000 -Georgia.ttf 19 s 20.9867 30.3365 31 “ -13.7037 18.8041 15.1682 -Georgia.ttf 19 s 20.9867 30.3365 32 % -12.3779 41.5772 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 33 £ -12.5515 30.0448 41.5962 -Georgia.ttf 19 s 20.9867 30.3365 34 . 21.5518 7.9550 7.9550 -Georgia.ttf 19 s 20.9867 30.3365 35 2 -2.1674 26.4090 31.5047 -Georgia.ttf 19 s 20.9867 30.3365 36 5 -1.3851 26.8318 40.5818 -Georgia.ttf 19 s 20.9867 30.3365 37 m -0.0721 48.0867 29.1682 -Georgia.ttf 19 s 20.9867 30.3365 38 V -11.0312 41.3045 40.6779 -Georgia.ttf 19 s 20.9867 30.3365 39 6 -12.5773 27.7083 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 40 w 1.1123 44.3365 28.0000 -Georgia.ttf 19 s 20.9867 30.3365 41 T -11.4227 36.3815 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 42 M -11.5021 49.8549 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 43 G -12.2505 39.4135 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 44 b -15.0789 31.0781 46.4730 -Georgia.ttf 19 s 20.9867 30.3365 45 9 -2.2399 27.7083 41.9500 -Georgia.ttf 19 s 20.9867 30.3365 46 ; 0.9517 9.5498 38.2453 -Georgia.ttf 19 s 20.9867 30.3365 47 D -11.2439 38.0914 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 48 L -11.3908 32.4730 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 49 y 1.2554 30.7403 40.8318 -Georgia.ttf 19 s 20.9867 30.3365 50 ‘ -14.0714 8.3588 15.1682 -Georgia.ttf 19 s 20.9867 30.3365 51 \ -13.8415 23.2770 55.3045 -Georgia.ttf 19 s 20.9867 30.3365 52 R -11.3871 39.2597 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 53 < -2.5038 26.4279 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 54 4 -2.3295 29.8448 41.7500 -Georgia.ttf 19 s 20.9867 30.3365 55 8 -12.2666 28.7227 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 56 0 -2.4771 29.8910 32.6730 -Georgia.ttf 19 s 20.9867 30.3365 57 A -11.5313 41.5962 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 58 E -11.1861 34.7056 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 59 B -11.1999 32.7646 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 60 v 1.1238 30.7403 28.0000 -Georgia.ttf 19 s 20.9867 30.3365 61 k -15.1780 31.4820 44.3365 -Georgia.ttf 19 s 20.9867 30.3365 62 J -11.2180 29.0144 41.5962 -Georgia.ttf 19 s 20.9867 30.3365 63 U -11.2722 42.2189 41.5962 -Georgia.ttf 19 s 20.9867 30.3365 64 j -14.8906 16.3365 56.6766 -Georgia.ttf 19 s 20.9867 30.3365 65 ( -13.9713 16.5865 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 66 7 -1.2265 26.5818 40.5818 -Georgia.ttf 19 s 20.9867 30.3365 67 § -12.3724 22.5588 48.8094 -Georgia.ttf 19 s 20.9867 30.3365 68 $ -15.1809 27.3045 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 69 € -12.5967 36.6315 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 70 / -14.1957 23.2770 55.3045 -Georgia.ttf 19 s 20.9867 30.3365 71 C -12.4478 34.2950 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 72 * -12.6109 22.6315 19.9723 -Georgia.ttf 19 s 20.9867 30.3365 73 ” -13.8688 18.8041 15.1682 -Georgia.ttf 19 s 20.9867 30.3365 74 ? -12.1116 22.2277 42.0000 -Georgia.ttf 19 s 20.9867 30.3365 75 { -13.9199 21.2133 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 76 } -14.1734 21.2133 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 77 , 22.2284 9.5498 17.3047 -Georgia.ttf 19 s 20.9867 30.3365 78 I -11.2912 18.1351 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 79 ° -12.2811 18.4730 18.4730 -Georgia.ttf 19 s 20.9867 30.3365 80 K -11.3668 39.2597 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 81 H -11.3335 41.8878 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 82 q -0.9052 30.8903 43.1682 -Georgia.ttf 19 s 20.9867 30.3365 83 & -12.3435 39.2597 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 84 ’ -14.0312 8.3588 15.1682 -Georgia.ttf 19 s 20.9867 30.3365 85 [ -14.0357 15.1682 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 86 - 11.3324 17.0320 4.4730 -Georgia.ttf 19 s 20.9867 30.3365 87 Y -11.4288 38.9680 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 88 Q -12.5483 38.4953 52.5642 -Georgia.ttf 19 s 20.9867 30.3365 89 " -14.1668 17.7547 16.3365 -Georgia.ttf 19 s 20.9867 30.3365 90 ! -12.6438 7.9550 42.7644 -Georgia.ttf 19 s 20.9867 30.3365 91 x 0.8793 29.1682 28.0000 -Georgia.ttf 19 s 20.9867 30.3365 92 ) -13.9261 16.5865 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 93 = 6.1549 29.1682 14.4500 -Georgia.ttf 19 s 20.9867 30.3365 94 + -1.5456 29.4182 29.4182 -Georgia.ttf 19 s 20.9867 30.3365 95 X -11.3199 41.5962 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 96 » 2.6583 23.9998 23.2770 -Georgia.ttf 19 s 20.9867 30.3365 97 ' -13.7999 6.7867 16.3365 -Georgia.ttf 19 s 20.9867 30.3365 98 ¢ -6.8264 25.8241 44.7403 -Georgia.ttf 19 s 20.9867 30.3365 99 Z -11.3492 33.6912 40.4279 -Georgia.ttf 19 s 20.9867 30.3365 100 > -2.3153 26.4279 30.3365 -Georgia.ttf 19 s 20.9867 30.3365 101 ® -12.6534 50.3815 50.3815 -Georgia.ttf 19 s 20.9867 30.3365 102 © -12.5963 50.3815 50.3815 -Georgia.ttf 19 s 20.9867 30.3365 103 ] -13.9720 15.1682 52.4453 -Georgia.ttf 19 s 20.9867 30.3365 104 é -14.7017 24.6953 44.8092 -Georgia.ttf 19 s 20.9867 30.3365 105 z 1.1228 23.0270 28.0000 -Georgia.ttf 19 s 20.9867 30.3365 106 _ 34.4375 37.5498 2.7403 -Georgia.ttf 19 s 20.9867 30.3365 107 ¥ -11.2821 37.0770 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 1 t -7.7050 18.7851 38.0914 -Georgia.ttf 20 c 24.1536 30.3365 2 h -14.7494 31.5237 44.3365 -Georgia.ttf 20 c 24.1536 30.3365 3 a 0.0045 25.6635 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 4 n -0.2484 31.5237 29.1682 -Georgia.ttf 20 c 24.1536 30.3365 5 P -11.3267 31.6236 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 6 o 0.0181 27.2318 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 7 e -0.2464 24.6953 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 8 : 1.3061 7.9550 28.4038 -Georgia.ttf 20 c 24.1536 30.3365 9 r -0.0500 21.9550 29.1682 -Georgia.ttf 20 c 24.1536 30.3365 10 l -15.2452 14.8955 44.3365 -Georgia.ttf 20 c 24.1536 30.3365 11 i -14.6942 14.3538 43.8448 -Georgia.ttf 20 c 24.1536 30.3365 12 1 -1.9736 19.8912 31.5047 -Georgia.ttf 20 c 24.1536 30.3365 13 | -14.1766 3.7547 55.3045 -Georgia.ttf 20 c 24.1536 30.3365 14 N -11.4284 42.0727 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 15 f -15.3772 22.1088 44.3365 -Georgia.ttf 20 c 24.1536 30.3365 16 g 0.2687 27.2356 42.0000 -Georgia.ttf 20 c 24.1536 30.3365 17 d -15.2914 30.9403 45.5047 -Georgia.ttf 20 c 24.1536 30.3365 18 W -11.0386 58.3365 40.6779 -Georgia.ttf 20 c 24.1536 30.3365 19 s 0.3439 20.9867 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 20 c -0.0885 24.1536 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 21 u -0.0815 31.5237 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 22 3 -2.3207 27.3045 41.7500 -Georgia.ttf 20 c 24.1536 30.3365 23 ~ 8.0119 30.0403 10.4453 -Georgia.ttf 20 c 24.1536 30.3365 24 # -5.7545 29.1872 35.0594 -Georgia.ttf 20 c 24.1536 30.3365 25 O -12.2204 38.4953 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 26 ` -14.3675 11.6635 12.1362 -Georgia.ttf 20 c 24.1536 30.3365 27 @ -9.7498 44.6903 47.8912 -Georgia.ttf 20 c 24.1536 30.3365 28 F -11.4450 31.6736 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 29 S -12.5822 28.0000 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 30 p -0.1014 30.2638 42.0000 -Georgia.ttf 20 c 24.1536 30.3365 31 “ -14.0422 18.8041 15.1682 -Georgia.ttf 20 c 24.1536 30.3365 32 % -12.3110 41.5772 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 33 £ -12.5982 30.0448 41.5962 -Georgia.ttf 20 c 24.1536 30.3365 34 . 21.8228 7.9550 7.9550 -Georgia.ttf 20 c 24.1536 30.3365 35 2 -2.5961 26.4090 31.5047 -Georgia.ttf 20 c 24.1536 30.3365 36 5 -0.9051 26.8318 40.5818 -Georgia.ttf 20 c 24.1536 30.3365 37 m -0.1011 48.0867 29.1682 -Georgia.ttf 20 c 24.1536 30.3365 38 V -11.4080 41.3045 40.6779 -Georgia.ttf 20 c 24.1536 30.3365 39 6 -12.3960 27.7083 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 40 w 1.0871 44.3365 28.0000 -Georgia.ttf 20 c 24.1536 30.3365 41 T -11.3334 36.3815 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 42 M -11.3492 49.8549 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 43 G -12.2611 39.4135 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 44 b -15.1199 31.0781 46.4730 -Georgia.ttf 20 c 24.1536 30.3365 45 9 -2.4079 27.7083 41.9500 -Georgia.ttf 20 c 24.1536 30.3365 46 ; 0.8639 9.5498 38.2453 -Georgia.ttf 20 c 24.1536 30.3365 47 D -11.0188 38.0914 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 48 L -11.1897 32.4730 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 49 y 1.1874 30.7403 40.8318 -Georgia.ttf 20 c 24.1536 30.3365 50 ‘ -14.0774 8.3588 15.1682 -Georgia.ttf 20 c 24.1536 30.3365 51 \ -13.9051 23.2770 55.3045 -Georgia.ttf 20 c 24.1536 30.3365 52 R -11.1081 39.2597 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 53 < -2.1771 26.4279 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 54 4 -2.1804 29.8448 41.7500 -Georgia.ttf 20 c 24.1536 30.3365 55 8 -12.5150 28.7227 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 56 0 -2.2755 29.8910 32.6730 -Georgia.ttf 20 c 24.1536 30.3365 57 A -11.0868 41.5962 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 58 E -11.0172 34.7056 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 59 B -11.2341 32.7646 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 60 v 1.0384 30.7403 28.0000 -Georgia.ttf 20 c 24.1536 30.3365 61 k -15.3438 31.4820 44.3365 -Georgia.ttf 20 c 24.1536 30.3365 62 J -11.1697 29.0144 41.5962 -Georgia.ttf 20 c 24.1536 30.3365 63 U -11.4664 42.2189 41.5962 -Georgia.ttf 20 c 24.1536 30.3365 64 j -14.6766 16.3365 56.6766 -Georgia.ttf 20 c 24.1536 30.3365 65 ( -14.2484 16.5865 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 66 7 -1.2981 26.5818 40.5818 -Georgia.ttf 20 c 24.1536 30.3365 67 § -12.6404 22.5588 48.8094 -Georgia.ttf 20 c 24.1536 30.3365 68 $ -15.0757 27.3045 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 69 € -12.2926 36.6315 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 70 / -13.8661 23.2770 55.3045 -Georgia.ttf 20 c 24.1536 30.3365 71 C -12.6342 34.2950 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 72 * -12.4348 22.6315 19.9723 -Georgia.ttf 20 c 24.1536 30.3365 73 ” -13.9296 18.8041 15.1682 -Georgia.ttf 20 c 24.1536 30.3365 74 ? -12.7416 22.2277 42.0000 -Georgia.ttf 20 c 24.1536 30.3365 75 { -13.8369 21.2133 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 76 } -14.3433 21.2133 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 77 , 21.8706 9.5498 17.3047 -Georgia.ttf 20 c 24.1536 30.3365 78 I -10.9423 18.1351 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 79 ° -12.5266 18.4730 18.4730 -Georgia.ttf 20 c 24.1536 30.3365 80 K -11.4363 39.2597 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 81 H -11.2226 41.8878 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 82 q -1.1518 30.8903 43.1682 -Georgia.ttf 20 c 24.1536 30.3365 83 & -12.5136 39.2597 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 84 ’ -13.7744 8.3588 15.1682 -Georgia.ttf 20 c 24.1536 30.3365 85 [ -13.8601 15.1682 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 86 - 11.4936 17.0320 4.4730 -Georgia.ttf 20 c 24.1536 30.3365 87 Y -11.2443 38.9680 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 88 Q -12.4293 38.4953 52.5642 -Georgia.ttf 20 c 24.1536 30.3365 89 " -13.9871 17.7547 16.3365 -Georgia.ttf 20 c 24.1536 30.3365 90 ! -12.6666 7.9550 42.7644 -Georgia.ttf 20 c 24.1536 30.3365 91 x 1.1488 29.1682 28.0000 -Georgia.ttf 20 c 24.1536 30.3365 92 ) -13.8279 16.5865 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 93 = 6.1322 29.1682 14.4500 -Georgia.ttf 20 c 24.1536 30.3365 94 + -1.5043 29.4182 29.4182 -Georgia.ttf 20 c 24.1536 30.3365 95 X -11.2509 41.5962 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 96 » 2.6287 23.9998 23.2770 -Georgia.ttf 20 c 24.1536 30.3365 97 ' -14.1919 6.7867 16.3365 -Georgia.ttf 20 c 24.1536 30.3365 98 ¢ -7.2921 25.8241 44.7403 -Georgia.ttf 20 c 24.1536 30.3365 99 Z -11.3097 33.6912 40.4279 -Georgia.ttf 20 c 24.1536 30.3365 100 > -2.3079 26.4279 30.3365 -Georgia.ttf 20 c 24.1536 30.3365 101 ® -13.0073 50.3815 50.3815 -Georgia.ttf 20 c 24.1536 30.3365 102 © -12.6737 50.3815 50.3815 -Georgia.ttf 20 c 24.1536 30.3365 103 ] -13.8299 15.1682 52.4453 -Georgia.ttf 20 c 24.1536 30.3365 104 é -14.6122 24.6953 44.8092 -Georgia.ttf 20 c 24.1536 30.3365 105 z 1.0732 23.0270 28.0000 -Georgia.ttf 20 c 24.1536 30.3365 106 _ 34.2653 37.5498 2.7403 -Georgia.ttf 20 c 24.1536 30.3365 107 ¥ -11.0424 37.0770 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 1 t -7.7582 18.7851 38.0914 -Georgia.ttf 21 u 31.5237 30.3365 2 h -15.2084 31.5237 44.3365 -Georgia.ttf 21 u 31.5237 30.3365 3 a 0.1155 25.6635 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 4 n -0.2562 31.5237 29.1682 -Georgia.ttf 21 u 31.5237 30.3365 5 P -11.2199 31.6236 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 6 o -0.1065 27.2318 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 7 e -0.0780 24.6953 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 8 : 1.0871 7.9550 28.4038 -Georgia.ttf 21 u 31.5237 30.3365 9 r -0.0335 21.9550 29.1682 -Georgia.ttf 21 u 31.5237 30.3365 10 l -15.0854 14.8955 44.3365 -Georgia.ttf 21 u 31.5237 30.3365 11 i -14.4424 14.3538 43.8448 -Georgia.ttf 21 u 31.5237 30.3365 12 1 -2.4315 19.8912 31.5047 -Georgia.ttf 21 u 31.5237 30.3365 13 | -13.8234 3.7547 55.3045 -Georgia.ttf 21 u 31.5237 30.3365 14 N -11.2565 42.0727 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 15 f -15.1315 22.1088 44.3365 -Georgia.ttf 21 u 31.5237 30.3365 16 g 0.0987 27.2356 42.0000 -Georgia.ttf 21 u 31.5237 30.3365 17 d -15.2392 30.9403 45.5047 -Georgia.ttf 21 u 31.5237 30.3365 18 W -11.2676 58.3365 40.6779 -Georgia.ttf 21 u 31.5237 30.3365 19 s -0.0867 20.9867 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 20 c 0.0013 24.1536 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 21 u -0.0255 31.5237 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 22 3 -2.0659 27.3045 41.7500 -Georgia.ttf 21 u 31.5237 30.3365 23 ~ 7.8985 30.0403 10.4453 -Georgia.ttf 21 u 31.5237 30.3365 24 # -5.6766 29.1872 35.0594 -Georgia.ttf 21 u 31.5237 30.3365 25 O -12.2314 38.4953 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 26 ` -13.9934 11.6635 12.1362 -Georgia.ttf 21 u 31.5237 30.3365 27 @ -10.0917 44.6903 47.8912 -Georgia.ttf 21 u 31.5237 30.3365 28 F -10.9598 31.6736 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 29 S -12.5920 28.0000 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 30 p 0.0362 30.2638 42.0000 -Georgia.ttf 21 u 31.5237 30.3365 31 “ -13.8595 18.8041 15.1682 -Georgia.ttf 21 u 31.5237 30.3365 32 % -12.2523 41.5772 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 33 £ -12.3866 30.0448 41.5962 -Georgia.ttf 21 u 31.5237 30.3365 34 . 21.3060 7.9550 7.9550 -Georgia.ttf 21 u 31.5237 30.3365 35 2 -2.3585 26.4090 31.5047 -Georgia.ttf 21 u 31.5237 30.3365 36 5 -1.0677 26.8318 40.5818 -Georgia.ttf 21 u 31.5237 30.3365 37 m -0.0105 48.0867 29.1682 -Georgia.ttf 21 u 31.5237 30.3365 38 V -11.5938 41.3045 40.6779 -Georgia.ttf 21 u 31.5237 30.3365 39 6 -12.3982 27.7083 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 40 w 1.0984 44.3365 28.0000 -Georgia.ttf 21 u 31.5237 30.3365 41 T -11.5081 36.3815 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 42 M -11.2559 49.8549 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 43 G -12.2991 39.4135 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 44 b -15.1868 31.0781 46.4730 -Georgia.ttf 21 u 31.5237 30.3365 45 9 -2.6804 27.7083 41.9500 -Georgia.ttf 21 u 31.5237 30.3365 46 ; 1.3392 9.5498 38.2453 -Georgia.ttf 21 u 31.5237 30.3365 47 D -11.2785 38.0914 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 48 L -11.2648 32.4730 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 49 y 1.0811 30.7403 40.8318 -Georgia.ttf 21 u 31.5237 30.3365 50 ‘ -13.8508 8.3588 15.1682 -Georgia.ttf 21 u 31.5237 30.3365 51 \ -13.8758 23.2770 55.3045 -Georgia.ttf 21 u 31.5237 30.3365 52 R -11.3783 39.2597 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 53 < -2.3786 26.4279 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 54 4 -1.9815 29.8448 41.7500 -Georgia.ttf 21 u 31.5237 30.3365 55 8 -12.3846 28.7227 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 56 0 -2.3174 29.8910 32.6730 -Georgia.ttf 21 u 31.5237 30.3365 57 A -11.3454 41.5962 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 58 E -11.1368 34.7056 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 59 B -11.3075 32.7646 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 60 v 1.6095 30.7403 28.0000 -Georgia.ttf 21 u 31.5237 30.3365 61 k -15.2096 31.4820 44.3365 -Georgia.ttf 21 u 31.5237 30.3365 62 J -11.3174 29.0144 41.5962 -Georgia.ttf 21 u 31.5237 30.3365 63 U -11.4182 42.2189 41.5962 -Georgia.ttf 21 u 31.5237 30.3365 64 j -14.8007 16.3365 56.6766 -Georgia.ttf 21 u 31.5237 30.3365 65 ( -14.1678 16.5865 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 66 7 -1.3768 26.5818 40.5818 -Georgia.ttf 21 u 31.5237 30.3365 67 § -12.3463 22.5588 48.8094 -Georgia.ttf 21 u 31.5237 30.3365 68 $ -14.7533 27.3045 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 69 € -12.4196 36.6315 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 70 / -14.0325 23.2770 55.3045 -Georgia.ttf 21 u 31.5237 30.3365 71 C -12.2645 34.2950 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 72 * -12.6827 22.6315 19.9723 -Georgia.ttf 21 u 31.5237 30.3365 73 ” -14.0871 18.8041 15.1682 -Georgia.ttf 21 u 31.5237 30.3365 74 ? -12.3505 22.2277 42.0000 -Georgia.ttf 21 u 31.5237 30.3365 75 { -14.1940 21.2133 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 76 } -13.7970 21.2133 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 77 , 22.2352 9.5498 17.3047 -Georgia.ttf 21 u 31.5237 30.3365 78 I -11.4357 18.1351 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 79 ° -12.5854 18.4730 18.4730 -Georgia.ttf 21 u 31.5237 30.3365 80 K -11.1942 39.2597 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 81 H -11.3124 41.8878 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 82 q -1.1984 30.8903 43.1682 -Georgia.ttf 21 u 31.5237 30.3365 83 & -12.4731 39.2597 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 84 ’ -13.7089 8.3588 15.1682 -Georgia.ttf 21 u 31.5237 30.3365 85 [ -14.2470 15.1682 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 86 - 11.5179 17.0320 4.4730 -Georgia.ttf 21 u 31.5237 30.3365 87 Y -11.2495 38.9680 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 88 Q -12.3803 38.4953 52.5642 -Georgia.ttf 21 u 31.5237 30.3365 89 " -13.6997 17.7547 16.3365 -Georgia.ttf 21 u 31.5237 30.3365 90 ! -12.1035 7.9550 42.7644 -Georgia.ttf 21 u 31.5237 30.3365 91 x 1.0569 29.1682 28.0000 -Georgia.ttf 21 u 31.5237 30.3365 92 ) -13.8891 16.5865 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 93 = 6.0877 29.1682 14.4500 -Georgia.ttf 21 u 31.5237 30.3365 94 + -1.5589 29.4182 29.4182 -Georgia.ttf 21 u 31.5237 30.3365 95 X -11.4484 41.5962 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 96 » 2.3720 23.9998 23.2770 -Georgia.ttf 21 u 31.5237 30.3365 97 ' -14.1071 6.7867 16.3365 -Georgia.ttf 21 u 31.5237 30.3365 98 ¢ -7.1114 25.8241 44.7403 -Georgia.ttf 21 u 31.5237 30.3365 99 Z -11.2198 33.6912 40.4279 -Georgia.ttf 21 u 31.5237 30.3365 100 > -2.3256 26.4279 30.3365 -Georgia.ttf 21 u 31.5237 30.3365 101 ® -13.0028 50.3815 50.3815 -Georgia.ttf 21 u 31.5237 30.3365 102 © -13.0980 50.3815 50.3815 -Georgia.ttf 21 u 31.5237 30.3365 103 ] -13.7817 15.1682 52.4453 -Georgia.ttf 21 u 31.5237 30.3365 104 é -14.3986 24.6953 44.8092 -Georgia.ttf 21 u 31.5237 30.3365 105 z 1.0194 23.0270 28.0000 -Georgia.ttf 21 u 31.5237 30.3365 106 _ 34.4848 37.5498 2.7403 -Georgia.ttf 21 u 31.5237 30.3365 107 ¥ -11.4217 37.0770 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 1 t -5.3318 18.7851 38.0914 -Georgia.ttf 22 3 27.3045 41.7500 2 h -12.8960 31.5237 44.3365 -Georgia.ttf 22 3 27.3045 41.7500 3 a 2.5166 25.6635 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 4 n 2.5066 31.5237 29.1682 -Georgia.ttf 22 3 27.3045 41.7500 5 P -9.1326 31.6236 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 6 o 2.3365 27.2318 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 7 e 2.5116 24.6953 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 8 : 3.6446 7.9550 28.4038 -Georgia.ttf 22 3 27.3045 41.7500 9 r 2.3152 21.9550 29.1682 -Georgia.ttf 22 3 27.3045 41.7500 10 l -12.7466 14.8955 44.3365 -Georgia.ttf 22 3 27.3045 41.7500 11 i -12.4175 14.3538 43.8448 -Georgia.ttf 22 3 27.3045 41.7500 12 1 0.0298 19.8912 31.5047 -Georgia.ttf 22 3 27.3045 41.7500 13 | -11.6237 3.7547 55.3045 -Georgia.ttf 22 3 27.3045 41.7500 14 N -8.7983 42.0727 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 15 f -12.9917 22.1088 44.3365 -Georgia.ttf 22 3 27.3045 41.7500 16 g 1.9881 27.2356 42.0000 -Georgia.ttf 22 3 27.3045 41.7500 17 d -12.5778 30.9403 45.5047 -Georgia.ttf 22 3 27.3045 41.7500 18 W -8.8102 58.3365 40.6779 -Georgia.ttf 22 3 27.3045 41.7500 19 s 2.3330 20.9867 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 20 c 2.2179 24.1536 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 21 u 2.5908 31.5237 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 22 3 0.1821 27.3045 41.7500 -Georgia.ttf 22 3 27.3045 41.7500 23 ~ 10.4091 30.0403 10.4453 -Georgia.ttf 22 3 27.3045 41.7500 24 # -3.4273 29.1872 35.0594 -Georgia.ttf 22 3 27.3045 41.7500 25 O -10.0655 38.4953 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 26 ` -12.1946 11.6635 12.1362 -Georgia.ttf 22 3 27.3045 41.7500 27 @ -7.6548 44.6903 47.8912 -Georgia.ttf 22 3 27.3045 41.7500 28 F -8.9291 31.6736 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 29 S -10.0480 28.0000 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 30 p 2.3225 30.2638 42.0000 -Georgia.ttf 22 3 27.3045 41.7500 31 “ -11.6208 18.8041 15.1682 -Georgia.ttf 22 3 27.3045 41.7500 32 % -10.0771 41.5772 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 33 £ -10.0761 30.0448 41.5962 -Georgia.ttf 22 3 27.3045 41.7500 34 . 24.2321 7.9550 7.9550 -Georgia.ttf 22 3 27.3045 41.7500 35 2 -0.1626 26.4090 31.5047 -Georgia.ttf 22 3 27.3045 41.7500 36 5 1.3772 26.8318 40.5818 -Georgia.ttf 22 3 27.3045 41.7500 37 m 1.8789 48.0867 29.1682 -Georgia.ttf 22 3 27.3045 41.7500 38 V -8.9960 41.3045 40.6779 -Georgia.ttf 22 3 27.3045 41.7500 39 6 -9.9998 27.7083 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 40 w 3.5848 44.3365 28.0000 -Georgia.ttf 22 3 27.3045 41.7500 41 T -8.9530 36.3815 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 42 M -9.0113 49.8549 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 43 G -10.2280 39.4135 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 44 b -12.8812 31.0781 46.4730 -Georgia.ttf 22 3 27.3045 41.7500 45 9 -0.3073 27.7083 41.9500 -Georgia.ttf 22 3 27.3045 41.7500 46 ; 3.4598 9.5498 38.2453 -Georgia.ttf 22 3 27.3045 41.7500 47 D -8.7704 38.0914 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 48 L -8.7805 32.4730 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 49 y 3.6178 30.7403 40.8318 -Georgia.ttf 22 3 27.3045 41.7500 50 ‘ -11.8238 8.3588 15.1682 -Georgia.ttf 22 3 27.3045 41.7500 51 \ -11.8294 23.2770 55.3045 -Georgia.ttf 22 3 27.3045 41.7500 52 R -8.8193 39.2597 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 53 < 0.0916 26.4279 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 54 4 -0.2442 29.8448 41.7500 -Georgia.ttf 22 3 27.3045 41.7500 55 8 -10.0709 28.7227 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 56 0 -0.0041 29.8910 32.6730 -Georgia.ttf 22 3 27.3045 41.7500 57 A -8.6835 41.5962 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 58 E -9.1696 34.7056 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 59 B -9.1460 32.7646 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 60 v 3.4695 30.7403 28.0000 -Georgia.ttf 22 3 27.3045 41.7500 61 k -12.8091 31.4820 44.3365 -Georgia.ttf 22 3 27.3045 41.7500 62 J -8.8277 29.0144 41.5962 -Georgia.ttf 22 3 27.3045 41.7500 63 U -9.1044 42.2189 41.5962 -Georgia.ttf 22 3 27.3045 41.7500 64 j -12.0756 16.3365 56.6766 -Georgia.ttf 22 3 27.3045 41.7500 65 ( -11.7929 16.5865 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 66 7 1.2181 26.5818 40.5818 -Georgia.ttf 22 3 27.3045 41.7500 67 § -10.1396 22.5588 48.8094 -Georgia.ttf 22 3 27.3045 41.7500 68 $ -12.5772 27.3045 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 69 € -10.2114 36.6315 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 70 / -11.5466 23.2770 55.3045 -Georgia.ttf 22 3 27.3045 41.7500 71 C -10.2323 34.2950 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 72 * -10.1823 22.6315 19.9723 -Georgia.ttf 22 3 27.3045 41.7500 73 ” -11.8748 18.8041 15.1682 -Georgia.ttf 22 3 27.3045 41.7500 74 ? -10.0525 22.2277 42.0000 -Georgia.ttf 22 3 27.3045 41.7500 75 { -11.4767 21.2133 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 76 } -11.4751 21.2133 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 77 , 24.7040 9.5498 17.3047 -Georgia.ttf 22 3 27.3045 41.7500 78 I -8.7332 18.1351 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 79 ° -9.9801 18.4730 18.4730 -Georgia.ttf 22 3 27.3045 41.7500 80 K -8.8800 39.2597 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 81 H -8.8221 41.8878 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 82 q 1.0958 30.8903 43.1682 -Georgia.ttf 22 3 27.3045 41.7500 83 & -10.2264 39.2597 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 84 ’ -11.7047 8.3588 15.1682 -Georgia.ttf 22 3 27.3045 41.7500 85 [ -11.7836 15.1682 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 86 - 14.0586 17.0320 4.4730 -Georgia.ttf 22 3 27.3045 41.7500 87 Y -9.1258 38.9680 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 88 Q -10.1376 38.4953 52.5642 -Georgia.ttf 22 3 27.3045 41.7500 89 " -11.8520 17.7547 16.3365 -Georgia.ttf 22 3 27.3045 41.7500 90 ! -10.0873 7.9550 42.7644 -Georgia.ttf 22 3 27.3045 41.7500 91 x 3.1748 29.1682 28.0000 -Georgia.ttf 22 3 27.3045 41.7500 92 ) -11.3752 16.5865 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 93 = 8.1962 29.1682 14.4500 -Georgia.ttf 22 3 27.3045 41.7500 94 + 0.7858 29.4182 29.4182 -Georgia.ttf 22 3 27.3045 41.7500 95 X -8.9277 41.5962 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 96 » 4.8827 23.9998 23.2770 -Georgia.ttf 22 3 27.3045 41.7500 97 ' -11.7278 6.7867 16.3365 -Georgia.ttf 22 3 27.3045 41.7500 98 ¢ -4.9347 25.8241 44.7403 -Georgia.ttf 22 3 27.3045 41.7500 99 Z -8.9681 33.6912 40.4279 -Georgia.ttf 22 3 27.3045 41.7500 100 > 0.3516 26.4279 30.3365 -Georgia.ttf 22 3 27.3045 41.7500 101 ® -10.5605 50.3815 50.3815 -Georgia.ttf 22 3 27.3045 41.7500 102 © -10.6524 50.3815 50.3815 -Georgia.ttf 22 3 27.3045 41.7500 103 ] -11.3934 15.1682 52.4453 -Georgia.ttf 22 3 27.3045 41.7500 104 é -12.1460 24.6953 44.8092 -Georgia.ttf 22 3 27.3045 41.7500 105 z 3.4246 23.0270 28.0000 -Georgia.ttf 22 3 27.3045 41.7500 106 _ 36.7108 37.5498 2.7403 -Georgia.ttf 22 3 27.3045 41.7500 107 ¥ -9.0762 37.0770 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 1 t -15.6704 18.7851 38.0914 -Georgia.ttf 23 ~ 30.0403 10.4453 2 h -23.2181 31.5237 44.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 3 a -8.0764 25.6635 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 4 n -8.2716 31.5237 29.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 5 P -19.3380 31.6236 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 6 o -8.1065 27.2318 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 7 e -7.6969 24.6953 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 8 : -6.7776 7.9550 28.4038 -Georgia.ttf 23 ~ 30.0403 10.4453 9 r -7.9587 21.9550 29.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 10 l -23.1481 14.8955 44.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 11 i -22.6700 14.3538 43.8448 -Georgia.ttf 23 ~ 30.0403 10.4453 12 1 -9.9740 19.8912 31.5047 -Georgia.ttf 23 ~ 30.0403 10.4453 13 | -21.8818 3.7547 55.3045 -Georgia.ttf 23 ~ 30.0403 10.4453 14 N -19.3590 42.0727 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 15 f -23.3299 22.1088 44.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 16 g -8.1622 27.2356 42.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 17 d -23.0777 30.9403 45.5047 -Georgia.ttf 23 ~ 30.0403 10.4453 18 W -19.4093 58.3365 40.6779 -Georgia.ttf 23 ~ 30.0403 10.4453 19 s -7.8262 20.9867 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 20 c -7.9826 24.1536 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 21 u -8.1530 31.5237 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 22 3 -10.2562 27.3045 41.7500 -Georgia.ttf 23 ~ 30.0403 10.4453 23 ~ 0.0895 30.0403 10.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 24 # -13.6436 29.1872 35.0594 -Georgia.ttf 23 ~ 30.0403 10.4453 25 O -20.3829 38.4953 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 26 ` -22.6239 11.6635 12.1362 -Georgia.ttf 23 ~ 30.0403 10.4453 27 @ -17.7690 44.6903 47.8912 -Georgia.ttf 23 ~ 30.0403 10.4453 28 F -18.9384 31.6736 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 29 S -20.1240 28.0000 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 30 p -8.2529 30.2638 42.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 31 “ -22.1900 18.8041 15.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 32 % -20.0335 41.5772 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 33 £ -20.4336 30.0448 41.5962 -Georgia.ttf 23 ~ 30.0403 10.4453 34 . 13.8356 7.9550 7.9550 -Georgia.ttf 23 ~ 30.0403 10.4453 35 2 -10.2919 26.4090 31.5047 -Georgia.ttf 23 ~ 30.0403 10.4453 36 5 -9.4299 26.8318 40.5818 -Georgia.ttf 23 ~ 30.0403 10.4453 37 m -8.1216 48.0867 29.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 38 V -19.6007 41.3045 40.6779 -Georgia.ttf 23 ~ 30.0403 10.4453 39 6 -20.1302 27.7083 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 40 w -6.7601 44.3365 28.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 41 T -19.3945 36.3815 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 42 M -19.1226 49.8549 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 43 G -20.2926 39.4135 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 44 b -23.5853 31.0781 46.4730 -Georgia.ttf 23 ~ 30.0403 10.4453 45 9 -10.3662 27.7083 41.9500 -Georgia.ttf 23 ~ 30.0403 10.4453 46 ; -6.7611 9.5498 38.2453 -Georgia.ttf 23 ~ 30.0403 10.4453 47 D -19.4611 38.0914 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 48 L -19.0745 32.4730 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 49 y -6.4771 30.7403 40.8318 -Georgia.ttf 23 ~ 30.0403 10.4453 50 ‘ -22.0988 8.3588 15.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 51 \ -22.0221 23.2770 55.3045 -Georgia.ttf 23 ~ 30.0403 10.4453 52 R -19.4357 39.2597 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 53 < -10.3074 26.4279 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 54 4 -10.3545 29.8448 41.7500 -Georgia.ttf 23 ~ 30.0403 10.4453 55 8 -20.4689 28.7227 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 56 0 -10.2518 29.8910 32.6730 -Georgia.ttf 23 ~ 30.0403 10.4453 57 A -19.2198 41.5962 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 58 E -19.0610 34.7056 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 59 B -19.0371 32.7646 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 60 v -6.8522 30.7403 28.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 61 k -23.1340 31.4820 44.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 62 J -19.1473 29.0144 41.5962 -Georgia.ttf 23 ~ 30.0403 10.4453 63 U -19.1275 42.2189 41.5962 -Georgia.ttf 23 ~ 30.0403 10.4453 64 j -23.0258 16.3365 56.6766 -Georgia.ttf 23 ~ 30.0403 10.4453 65 ( -22.0833 16.5865 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 66 7 -9.3651 26.5818 40.5818 -Georgia.ttf 23 ~ 30.0403 10.4453 67 § -20.3111 22.5588 48.8094 -Georgia.ttf 23 ~ 30.0403 10.4453 68 $ -22.6581 27.3045 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 69 € -20.7059 36.6315 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 70 / -21.7460 23.2770 55.3045 -Georgia.ttf 23 ~ 30.0403 10.4453 71 C -20.0687 34.2950 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 72 * -20.4537 22.6315 19.9723 -Georgia.ttf 23 ~ 30.0403 10.4453 73 ” -22.0127 18.8041 15.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 74 ? -20.3218 22.2277 42.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 75 { -21.9276 21.2133 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 76 } -21.9396 21.2133 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 77 , 14.0622 9.5498 17.3047 -Georgia.ttf 23 ~ 30.0403 10.4453 78 I -19.3007 18.1351 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 79 ° -20.3908 18.4730 18.4730 -Georgia.ttf 23 ~ 30.0403 10.4453 80 K -19.2590 39.2597 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 81 H -19.4071 41.8878 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 82 q -9.2303 30.8903 43.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 83 & -20.3444 39.2597 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 84 ’ -21.9504 8.3588 15.1682 -Georgia.ttf 23 ~ 30.0403 10.4453 85 [ -21.7292 15.1682 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 86 - 3.4279 17.0320 4.4730 -Georgia.ttf 23 ~ 30.0403 10.4453 87 Y -19.3063 38.9680 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 88 Q -20.3347 38.4953 52.5642 -Georgia.ttf 23 ~ 30.0403 10.4453 89 " -21.8640 17.7547 16.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 90 ! -20.7073 7.9550 42.7644 -Georgia.ttf 23 ~ 30.0403 10.4453 91 x -6.9312 29.1682 28.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 92 ) -22.0472 16.5865 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 93 = -1.8742 29.1682 14.4500 -Georgia.ttf 23 ~ 30.0403 10.4453 94 + -9.5876 29.4182 29.4182 -Georgia.ttf 23 ~ 30.0403 10.4453 95 X -18.8763 41.5962 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 96 » -5.5063 23.9998 23.2770 -Georgia.ttf 23 ~ 30.0403 10.4453 97 ' -22.1831 6.7867 16.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 98 ¢ -15.1312 25.8241 44.7403 -Georgia.ttf 23 ~ 30.0403 10.4453 99 Z -19.0705 33.6912 40.4279 -Georgia.ttf 23 ~ 30.0403 10.4453 100 > -9.8684 26.4279 30.3365 -Georgia.ttf 23 ~ 30.0403 10.4453 101 ® -20.7212 50.3815 50.3815 -Georgia.ttf 23 ~ 30.0403 10.4453 102 © -20.7580 50.3815 50.3815 -Georgia.ttf 23 ~ 30.0403 10.4453 103 ] -22.1167 15.1682 52.4453 -Georgia.ttf 23 ~ 30.0403 10.4453 104 é -22.1019 24.6953 44.8092 -Georgia.ttf 23 ~ 30.0403 10.4453 105 z -6.9518 23.0270 28.0000 -Georgia.ttf 23 ~ 30.0403 10.4453 106 _ 26.5084 37.5498 2.7403 -Georgia.ttf 23 ~ 30.0403 10.4453 107 ¥ -19.2934 37.0770 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 1 t -1.7105 18.7851 38.0914 -Georgia.ttf 24 # 29.1872 35.0594 2 h -9.4369 31.5237 44.3365 -Georgia.ttf 24 # 29.1872 35.0594 3 a 5.8727 25.6635 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 4 n 5.7202 31.5237 29.1682 -Georgia.ttf 24 # 29.1872 35.0594 5 P -5.4048 31.6236 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 6 o 5.9097 27.2318 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 7 e 5.8791 24.6953 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 8 : 6.9068 7.9550 28.4038 -Georgia.ttf 24 # 29.1872 35.0594 9 r 5.8243 21.9550 29.1682 -Georgia.ttf 24 # 29.1872 35.0594 10 l -9.1018 14.8955 44.3365 -Georgia.ttf 24 # 29.1872 35.0594 11 i -8.7584 14.3538 43.8448 -Georgia.ttf 24 # 29.1872 35.0594 12 1 3.7834 19.8912 31.5047 -Georgia.ttf 24 # 29.1872 35.0594 13 | -8.4042 3.7547 55.3045 -Georgia.ttf 24 # 29.1872 35.0594 14 N -5.0564 42.0727 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 15 f -9.2313 22.1088 44.3365 -Georgia.ttf 24 # 29.1872 35.0594 16 g 5.8949 27.2356 42.0000 -Georgia.ttf 24 # 29.1872 35.0594 17 d -9.2770 30.9403 45.5047 -Georgia.ttf 24 # 29.1872 35.0594 18 W -5.8324 58.3365 40.6779 -Georgia.ttf 24 # 29.1872 35.0594 19 s 5.9237 20.9867 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 20 c 5.8975 24.1536 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 21 u 6.1892 31.5237 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 22 3 3.6079 27.3045 41.7500 -Georgia.ttf 24 # 29.1872 35.0594 23 ~ 14.0262 30.0403 10.4453 -Georgia.ttf 24 # 29.1872 35.0594 24 # 0.0839 29.1872 35.0594 -Georgia.ttf 24 # 29.1872 35.0594 25 O -6.7272 38.4953 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 26 ` -8.6547 11.6635 12.1362 -Georgia.ttf 24 # 29.1872 35.0594 27 @ -3.5980 44.6903 47.8912 -Georgia.ttf 24 # 29.1872 35.0594 28 F -5.3042 31.6736 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 29 S -6.2924 28.0000 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 30 p 5.9418 30.2638 42.0000 -Georgia.ttf 24 # 29.1872 35.0594 31 “ -8.0249 18.8041 15.1682 -Georgia.ttf 24 # 29.1872 35.0594 32 % -6.4640 41.5772 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 33 £ -6.4908 30.0448 41.5962 -Georgia.ttf 24 # 29.1872 35.0594 34 . 27.6155 7.9550 7.9550 -Georgia.ttf 24 # 29.1872 35.0594 35 2 3.5196 26.4090 31.5047 -Georgia.ttf 24 # 29.1872 35.0594 36 5 4.5649 26.8318 40.5818 -Georgia.ttf 24 # 29.1872 35.0594 37 m 5.9686 48.0867 29.1682 -Georgia.ttf 24 # 29.1872 35.0594 38 V -5.5325 41.3045 40.6779 -Georgia.ttf 24 # 29.1872 35.0594 39 6 -6.5797 27.7083 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 40 w 6.8872 44.3365 28.0000 -Georgia.ttf 24 # 29.1872 35.0594 41 T -5.2290 36.3815 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 42 M -5.2544 49.8549 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 43 G -6.4219 39.4135 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 44 b -9.5037 31.0781 46.4730 -Georgia.ttf 24 # 29.1872 35.0594 45 9 3.4393 27.7083 41.9500 -Georgia.ttf 24 # 29.1872 35.0594 46 ; 7.2513 9.5498 38.2453 -Georgia.ttf 24 # 29.1872 35.0594 47 D -5.4486 38.0914 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 48 L -5.6544 32.4730 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 49 y 6.7802 30.7403 40.8318 -Georgia.ttf 24 # 29.1872 35.0594 50 ‘ -8.2383 8.3588 15.1682 -Georgia.ttf 24 # 29.1872 35.0594 51 \ -8.0471 23.2770 55.3045 -Georgia.ttf 24 # 29.1872 35.0594 52 R -5.4741 39.2597 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 53 < 3.7307 26.4279 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 54 4 3.6502 29.8448 41.7500 -Georgia.ttf 24 # 29.1872 35.0594 55 8 -6.4055 28.7227 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 56 0 3.6651 29.8910 32.6730 -Georgia.ttf 24 # 29.1872 35.0594 57 A -5.2494 41.5962 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 58 E -5.3802 34.7056 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 59 B -5.1955 32.7646 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 60 v 7.2495 30.7403 28.0000 -Georgia.ttf 24 # 29.1872 35.0594 61 k -9.2393 31.4820 44.3365 -Georgia.ttf 24 # 29.1872 35.0594 62 J -5.5994 29.0144 41.5962 -Georgia.ttf 24 # 29.1872 35.0594 63 U -5.7443 42.2189 41.5962 -Georgia.ttf 24 # 29.1872 35.0594 64 j -8.8784 16.3365 56.6766 -Georgia.ttf 24 # 29.1872 35.0594 65 ( -8.2595 16.5865 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 66 7 4.7138 26.5818 40.5818 -Georgia.ttf 24 # 29.1872 35.0594 67 § -6.7219 22.5588 48.8094 -Georgia.ttf 24 # 29.1872 35.0594 68 $ -9.0044 27.3045 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 69 € -6.5854 36.6315 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 70 / -8.3859 23.2770 55.3045 -Georgia.ttf 24 # 29.1872 35.0594 71 C -6.4227 34.2950 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 72 * -6.3560 22.6315 19.9723 -Georgia.ttf 24 # 29.1872 35.0594 73 ” -8.3540 18.8041 15.1682 -Georgia.ttf 24 # 29.1872 35.0594 74 ? -6.3639 22.2277 42.0000 -Georgia.ttf 24 # 29.1872 35.0594 75 { -8.0731 21.2133 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 76 } -8.2239 21.2133 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 77 , 28.1060 9.5498 17.3047 -Georgia.ttf 24 # 29.1872 35.0594 78 I -5.6127 18.1351 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 79 ° -6.4093 18.4730 18.4730 -Georgia.ttf 24 # 29.1872 35.0594 80 K -5.4936 39.2597 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 81 H -5.4639 41.8878 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 82 q 4.4843 30.8903 43.1682 -Georgia.ttf 24 # 29.1872 35.0594 83 & -6.7935 39.2597 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 84 ’ -8.1862 8.3588 15.1682 -Georgia.ttf 24 # 29.1872 35.0594 85 [ -8.0686 15.1682 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 86 - 17.2450 17.0320 4.4730 -Georgia.ttf 24 # 29.1872 35.0594 87 Y -5.4282 38.9680 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 88 Q -6.3654 38.4953 52.5642 -Georgia.ttf 24 # 29.1872 35.0594 89 " -8.1130 17.7547 16.3365 -Georgia.ttf 24 # 29.1872 35.0594 90 ! -6.2800 7.9550 42.7644 -Georgia.ttf 24 # 29.1872 35.0594 91 x 6.8807 29.1682 28.0000 -Georgia.ttf 24 # 29.1872 35.0594 92 ) -8.0569 16.5865 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 93 = 12.0900 29.1682 14.4500 -Georgia.ttf 24 # 29.1872 35.0594 94 + 4.8080 29.4182 29.4182 -Georgia.ttf 24 # 29.1872 35.0594 95 X -5.3383 41.5962 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 96 » 8.4540 23.9998 23.2770 -Georgia.ttf 24 # 29.1872 35.0594 97 ' -8.0767 6.7867 16.3365 -Georgia.ttf 24 # 29.1872 35.0594 98 ¢ -1.1923 25.8241 44.7403 -Georgia.ttf 24 # 29.1872 35.0594 99 Z -5.1002 33.6912 40.4279 -Georgia.ttf 24 # 29.1872 35.0594 100 > 3.6977 26.4279 30.3365 -Georgia.ttf 24 # 29.1872 35.0594 101 ® -6.4948 50.3815 50.3815 -Georgia.ttf 24 # 29.1872 35.0594 102 © -6.7151 50.3815 50.3815 -Georgia.ttf 24 # 29.1872 35.0594 103 ] -8.1348 15.1682 52.4453 -Georgia.ttf 24 # 29.1872 35.0594 104 é -8.6477 24.6953 44.8092 -Georgia.ttf 24 # 29.1872 35.0594 105 z 7.0440 23.0270 28.0000 -Georgia.ttf 24 # 29.1872 35.0594 106 _ 40.1575 37.5498 2.7403 -Georgia.ttf 24 # 29.1872 35.0594 107 ¥ -5.4903 37.0770 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 1 t 4.5286 18.7851 38.0914 -Georgia.ttf 25 O 38.4953 42.7644 2 h -2.9907 31.5237 44.3365 -Georgia.ttf 25 O 38.4953 42.7644 3 a 12.8069 25.6635 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 4 n 12.5150 31.5237 29.1682 -Georgia.ttf 25 O 38.4953 42.7644 5 P 1.0603 31.6236 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 6 o 12.5196 27.2318 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 7 e 12.2941 24.6953 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 8 : 13.6988 7.9550 28.4038 -Georgia.ttf 25 O 38.4953 42.7644 9 r 12.6122 21.9550 29.1682 -Georgia.ttf 25 O 38.4953 42.7644 10 l -2.6995 14.8955 44.3365 -Georgia.ttf 25 O 38.4953 42.7644 11 i -2.4527 14.3538 43.8448 -Georgia.ttf 25 O 38.4953 42.7644 12 1 10.1786 19.8912 31.5047 -Georgia.ttf 25 O 38.4953 42.7644 13 | -1.6630 3.7547 55.3045 -Georgia.ttf 25 O 38.4953 42.7644 14 N 1.0139 42.0727 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 15 f -2.6272 22.1088 44.3365 -Georgia.ttf 25 O 38.4953 42.7644 16 g 12.5962 27.2356 42.0000 -Georgia.ttf 25 O 38.4953 42.7644 17 d -2.7371 30.9403 45.5047 -Georgia.ttf 25 O 38.4953 42.7644 18 W 0.9986 58.3365 40.6779 -Georgia.ttf 25 O 38.4953 42.7644 19 s 12.5990 20.9867 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 20 c 12.4178 24.1536 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 21 u 12.4112 31.5237 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 22 3 9.9528 27.3045 41.7500 -Georgia.ttf 25 O 38.4953 42.7644 23 ~ 20.3213 30.0403 10.4453 -Georgia.ttf 25 O 38.4953 42.7644 24 # 6.6886 29.1872 35.0594 -Georgia.ttf 25 O 38.4953 42.7644 25 O 0.0330 38.4953 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 26 ` -2.0745 11.6635 12.1362 -Georgia.ttf 25 O 38.4953 42.7644 27 @ 2.7048 44.6903 47.8912 -Georgia.ttf 25 O 38.4953 42.7644 28 F 1.1892 31.6736 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 29 S -0.2224 28.0000 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 30 p 12.3166 30.2638 42.0000 -Georgia.ttf 25 O 38.4953 42.7644 31 “ -1.5693 18.8041 15.1682 -Georgia.ttf 25 O 38.4953 42.7644 32 % 0.1385 41.5772 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 33 £ 0.0308 30.0448 41.5962 -Georgia.ttf 25 O 38.4953 42.7644 34 . 34.1729 7.9550 7.9550 -Georgia.ttf 25 O 38.4953 42.7644 35 2 10.4431 26.4090 31.5047 -Georgia.ttf 25 O 38.4953 42.7644 36 5 11.1967 26.8318 40.5818 -Georgia.ttf 25 O 38.4953 42.7644 37 m 12.2309 48.0867 29.1682 -Georgia.ttf 25 O 38.4953 42.7644 38 V 1.3301 41.3045 40.6779 -Georgia.ttf 25 O 38.4953 42.7644 39 6 -0.0556 27.7083 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 40 w 13.5472 44.3365 28.0000 -Georgia.ttf 25 O 38.4953 42.7644 41 T 1.1234 36.3815 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 42 M 1.1224 49.8549 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 43 G -0.0447 39.4135 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 44 b -2.7481 31.0781 46.4730 -Georgia.ttf 25 O 38.4953 42.7644 45 9 10.0151 27.7083 41.9500 -Georgia.ttf 25 O 38.4953 42.7644 46 ; 13.6203 9.5498 38.2453 -Georgia.ttf 25 O 38.4953 42.7644 47 D 0.8169 38.0914 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 48 L 0.9867 32.4730 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 49 y 13.5425 30.7403 40.8318 -Georgia.ttf 25 O 38.4953 42.7644 50 ‘ -1.3588 8.3588 15.1682 -Georgia.ttf 25 O 38.4953 42.7644 51 \ -1.8542 23.2770 55.3045 -Georgia.ttf 25 O 38.4953 42.7644 52 R 1.2016 39.2597 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 53 < 9.9045 26.4279 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 54 4 10.1652 29.8448 41.7500 -Georgia.ttf 25 O 38.4953 42.7644 55 8 -0.0778 28.7227 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 56 0 10.2750 29.8910 32.6730 -Georgia.ttf 25 O 38.4953 42.7644 57 A 0.8797 41.5962 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 58 E 1.0712 34.7056 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 59 B 1.0328 32.7646 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 60 v 13.7982 30.7403 28.0000 -Georgia.ttf 25 O 38.4953 42.7644 61 k -2.6164 31.4820 44.3365 -Georgia.ttf 25 O 38.4953 42.7644 62 J 1.1325 29.0144 41.5962 -Georgia.ttf 25 O 38.4953 42.7644 63 U 1.1550 42.2189 41.5962 -Georgia.ttf 25 O 38.4953 42.7644 64 j -2.3270 16.3365 56.6766 -Georgia.ttf 25 O 38.4953 42.7644 65 ( -1.4201 16.5865 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 66 7 11.2387 26.5818 40.5818 -Georgia.ttf 25 O 38.4953 42.7644 67 § 0.2990 22.5588 48.8094 -Georgia.ttf 25 O 38.4953 42.7644 68 $ -2.6405 27.3045 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 69 € 0.1302 36.6315 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 70 / -1.6638 23.2770 55.3045 -Georgia.ttf 25 O 38.4953 42.7644 71 C -0.0894 34.2950 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 72 * -0.0955 22.6315 19.9723 -Georgia.ttf 25 O 38.4953 42.7644 73 ” -1.7024 18.8041 15.1682 -Georgia.ttf 25 O 38.4953 42.7644 74 ? 0.0495 22.2277 42.0000 -Georgia.ttf 25 O 38.4953 42.7644 75 { -1.5035 21.2133 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 76 } -1.5646 21.2133 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 77 , 34.7290 9.5498 17.3047 -Georgia.ttf 25 O 38.4953 42.7644 78 I 1.0881 18.1351 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 79 ° 0.0505 18.4730 18.4730 -Georgia.ttf 25 O 38.4953 42.7644 80 K 1.1675 39.2597 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 81 H 0.9250 41.8878 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 82 q 11.2824 30.8903 43.1682 -Georgia.ttf 25 O 38.4953 42.7644 83 & -0.1873 39.2597 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 84 ’ -1.4747 8.3588 15.1682 -Georgia.ttf 25 O 38.4953 42.7644 85 [ -1.5725 15.1682 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 86 - 23.8355 17.0320 4.4730 -Georgia.ttf 25 O 38.4953 42.7644 87 Y 1.0097 38.9680 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 88 Q 0.1169 38.4953 52.5642 -Georgia.ttf 25 O 38.4953 42.7644 89 " -1.6452 17.7547 16.3365 -Georgia.ttf 25 O 38.4953 42.7644 90 ! 0.6183 7.9550 42.7644 -Georgia.ttf 25 O 38.4953 42.7644 91 x 13.3627 29.1682 28.0000 -Georgia.ttf 25 O 38.4953 42.7644 92 ) -1.9836 16.5865 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 93 = 18.3033 29.1682 14.4500 -Georgia.ttf 25 O 38.4953 42.7644 94 + 10.7193 29.4182 29.4182 -Georgia.ttf 25 O 38.4953 42.7644 95 X 1.1302 41.5962 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 96 » 15.2267 23.9998 23.2770 -Georgia.ttf 25 O 38.4953 42.7644 97 ' -1.6840 6.7867 16.3365 -Georgia.ttf 25 O 38.4953 42.7644 98 ¢ 5.1692 25.8241 44.7403 -Georgia.ttf 25 O 38.4953 42.7644 99 Z 1.2159 33.6912 40.4279 -Georgia.ttf 25 O 38.4953 42.7644 100 > 10.4783 26.4279 30.3365 -Georgia.ttf 25 O 38.4953 42.7644 101 ® -0.9378 50.3815 50.3815 -Georgia.ttf 25 O 38.4953 42.7644 102 © -0.3933 50.3815 50.3815 -Georgia.ttf 25 O 38.4953 42.7644 103 ] -1.4026 15.1682 52.4453 -Georgia.ttf 25 O 38.4953 42.7644 104 é -2.0787 24.6953 44.8092 -Georgia.ttf 25 O 38.4953 42.7644 105 z 13.5933 23.0270 28.0000 -Georgia.ttf 25 O 38.4953 42.7644 106 _ 47.0813 37.5498 2.7403 -Georgia.ttf 25 O 38.4953 42.7644 107 ¥ 1.2786 37.0770 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 1 t 6.9229 18.7851 38.0914 -Georgia.ttf 26 ` 11.6635 12.1362 2 h -0.7832 31.5237 44.3365 -Georgia.ttf 26 ` 11.6635 12.1362 3 a 14.3110 25.6635 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 4 n 14.1919 31.5237 29.1682 -Georgia.ttf 26 ` 11.6635 12.1362 5 P 3.2547 31.6236 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 6 o 14.5524 27.2318 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 7 e 14.5255 24.6953 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 8 : 15.5983 7.9550 28.4038 -Georgia.ttf 26 ` 11.6635 12.1362 9 r 14.6372 21.9550 29.1682 -Georgia.ttf 26 ` 11.6635 12.1362 10 l -0.5231 14.8955 44.3365 -Georgia.ttf 26 ` 11.6635 12.1362 11 i -0.2693 14.3538 43.8448 -Georgia.ttf 26 ` 11.6635 12.1362 12 1 12.0520 19.8912 31.5047 -Georgia.ttf 26 ` 11.6635 12.1362 13 | 0.4227 3.7547 55.3045 -Georgia.ttf 26 ` 11.6635 12.1362 14 N 3.3873 42.0727 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 15 f -0.6896 22.1088 44.3365 -Georgia.ttf 26 ` 11.6635 12.1362 16 g 14.5216 27.2356 42.0000 -Georgia.ttf 26 ` 11.6635 12.1362 17 d -0.6129 30.9403 45.5047 -Georgia.ttf 26 ` 11.6635 12.1362 18 W 2.9744 58.3365 40.6779 -Georgia.ttf 26 ` 11.6635 12.1362 19 s 14.5739 20.9867 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 20 c 14.3916 24.1536 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 21 u 14.5430 31.5237 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 22 3 12.0659 27.3045 41.7500 -Georgia.ttf 26 ` 11.6635 12.1362 23 ~ 22.4551 30.0403 10.4453 -Georgia.ttf 26 ` 11.6635 12.1362 24 # 8.4139 29.1872 35.0594 -Georgia.ttf 26 ` 11.6635 12.1362 25 O 2.0693 38.4953 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 26 ` -0.0690 11.6635 12.1362 -Georgia.ttf 26 ` 11.6635 12.1362 27 @ 4.5858 44.6903 47.8912 -Georgia.ttf 26 ` 11.6635 12.1362 28 F 3.2149 31.6736 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 29 S 1.8519 28.0000 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 30 p 14.4311 30.2638 42.0000 -Georgia.ttf 26 ` 11.6635 12.1362 31 “ 0.3929 18.8041 15.1682 -Georgia.ttf 26 ` 11.6635 12.1362 32 % 2.2144 41.5772 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 33 £ 2.0910 30.0448 41.5962 -Georgia.ttf 26 ` 11.6635 12.1362 34 . 35.9730 7.9550 7.9550 -Georgia.ttf 26 ` 11.6635 12.1362 35 2 12.2174 26.4090 31.5047 -Georgia.ttf 26 ` 11.6635 12.1362 36 5 13.5140 26.8318 40.5818 -Georgia.ttf 26 ` 11.6635 12.1362 37 m 14.4765 48.0867 29.1682 -Georgia.ttf 26 ` 11.6635 12.1362 38 V 3.2224 41.3045 40.6779 -Georgia.ttf 26 ` 11.6635 12.1362 39 6 2.1065 27.7083 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 40 w 15.5826 44.3365 28.0000 -Georgia.ttf 26 ` 11.6635 12.1362 41 T 3.0124 36.3815 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 42 M 3.0902 49.8549 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 43 G 1.8752 39.4135 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 44 b -0.9869 31.0781 46.4730 -Georgia.ttf 26 ` 11.6635 12.1362 45 9 12.0551 27.7083 41.9500 -Georgia.ttf 26 ` 11.6635 12.1362 46 ; 15.6679 9.5498 38.2453 -Georgia.ttf 26 ` 11.6635 12.1362 47 D 3.4276 38.0914 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 48 L 3.0851 32.4730 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 49 y 15.6344 30.7403 40.8318 -Georgia.ttf 26 ` 11.6635 12.1362 50 ‘ 0.5311 8.3588 15.1682 -Georgia.ttf 26 ` 11.6635 12.1362 51 \ 0.3537 23.2770 55.3045 -Georgia.ttf 26 ` 11.6635 12.1362 52 R 3.1045 39.2597 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 53 < 12.1295 26.4279 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 54 4 12.2636 29.8448 41.7500 -Georgia.ttf 26 ` 11.6635 12.1362 55 8 1.7672 28.7227 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 56 0 12.3174 29.8910 32.6730 -Georgia.ttf 26 ` 11.6635 12.1362 57 A 3.0378 41.5962 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 58 E 3.1389 34.7056 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 59 B 3.2910 32.7646 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 60 v 15.6515 30.7403 28.0000 -Georgia.ttf 26 ` 11.6635 12.1362 61 k -0.6300 31.4820 44.3365 -Georgia.ttf 26 ` 11.6635 12.1362 62 J 3.1916 29.0144 41.5962 -Georgia.ttf 26 ` 11.6635 12.1362 63 U 3.0864 42.2189 41.5962 -Georgia.ttf 26 ` 11.6635 12.1362 64 j 0.0487 16.3365 56.6766 -Georgia.ttf 26 ` 11.6635 12.1362 65 ( 0.5469 16.5865 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 66 7 13.3843 26.5818 40.5818 -Georgia.ttf 26 ` 11.6635 12.1362 67 § 2.0194 22.5588 48.8094 -Georgia.ttf 26 ` 11.6635 12.1362 68 $ -0.2499 27.3045 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 69 € 1.9567 36.6315 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 70 / 0.5566 23.2770 55.3045 -Georgia.ttf 26 ` 11.6635 12.1362 71 C 1.9101 34.2950 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 72 * 1.9553 22.6315 19.9723 -Georgia.ttf 26 ` 11.6635 12.1362 73 ” 0.4997 18.8041 15.1682 -Georgia.ttf 26 ` 11.6635 12.1362 74 ? 2.5518 22.2277 42.0000 -Georgia.ttf 26 ` 11.6635 12.1362 75 { 0.5765 21.2133 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 76 } 0.6419 21.2133 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 77 , 36.6589 9.5498 17.3047 -Georgia.ttf 26 ` 11.6635 12.1362 78 I 3.3341 18.1351 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 79 ° 2.0787 18.4730 18.4730 -Georgia.ttf 26 ` 11.6635 12.1362 80 K 3.3827 39.2597 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 81 H 3.1875 41.8878 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 82 q 13.2233 30.8903 43.1682 -Georgia.ttf 26 ` 11.6635 12.1362 83 & 1.8951 39.2597 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 84 ’ 0.4672 8.3588 15.1682 -Georgia.ttf 26 ` 11.6635 12.1362 85 [ 0.2253 15.1682 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 86 - 25.7198 17.0320 4.4730 -Georgia.ttf 26 ` 11.6635 12.1362 87 Y 3.2558 38.9680 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 88 Q 1.8752 38.4953 52.5642 -Georgia.ttf 26 ` 11.6635 12.1362 89 " 0.5598 17.7547 16.3365 -Georgia.ttf 26 ` 11.6635 12.1362 90 ! 2.2766 7.9550 42.7644 -Georgia.ttf 26 ` 11.6635 12.1362 91 x 15.8398 29.1682 28.0000 -Georgia.ttf 26 ` 11.6635 12.1362 92 ) 0.3751 16.5865 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 93 = 20.5392 29.1682 14.4500 -Georgia.ttf 26 ` 11.6635 12.1362 94 + 12.8757 29.4182 29.4182 -Georgia.ttf 26 ` 11.6635 12.1362 95 X 2.9674 41.5962 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 96 » 17.1894 23.9998 23.2770 -Georgia.ttf 26 ` 11.6635 12.1362 97 ' 0.4185 6.7867 16.3365 -Georgia.ttf 26 ` 11.6635 12.1362 98 ¢ 7.3428 25.8241 44.7403 -Georgia.ttf 26 ` 11.6635 12.1362 99 Z 3.4912 33.6912 40.4279 -Georgia.ttf 26 ` 11.6635 12.1362 100 > 12.4665 26.4279 30.3365 -Georgia.ttf 26 ` 11.6635 12.1362 101 ® 1.7953 50.3815 50.3815 -Georgia.ttf 26 ` 11.6635 12.1362 102 © 1.4824 50.3815 50.3815 -Georgia.ttf 26 ` 11.6635 12.1362 103 ] 0.3926 15.1682 52.4453 -Georgia.ttf 26 ` 11.6635 12.1362 104 é -0.1502 24.6953 44.8092 -Georgia.ttf 26 ` 11.6635 12.1362 105 z 15.6679 23.0270 28.0000 -Georgia.ttf 26 ` 11.6635 12.1362 106 _ 48.6524 37.5498 2.7403 -Georgia.ttf 26 ` 11.6635 12.1362 107 ¥ 3.2131 37.0770 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 1 t 2.0834 18.7851 38.0914 -Georgia.ttf 27 @ 44.6903 47.8912 2 h -5.5028 31.5237 44.3365 -Georgia.ttf 27 @ 44.6903 47.8912 3 a 9.7492 25.6635 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 4 n 9.7791 31.5237 29.1682 -Georgia.ttf 27 @ 44.6903 47.8912 5 P -1.7199 31.6236 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 6 o 9.8757 27.2318 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 7 e 9.6225 24.6953 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 8 : 10.4940 7.9550 28.4038 -Georgia.ttf 27 @ 44.6903 47.8912 9 r 9.6320 21.9550 29.1682 -Georgia.ttf 27 @ 44.6903 47.8912 10 l -5.0811 14.8955 44.3365 -Georgia.ttf 27 @ 44.6903 47.8912 11 i -5.1325 14.3538 43.8448 -Georgia.ttf 27 @ 44.6903 47.8912 12 1 7.4799 19.8912 31.5047 -Georgia.ttf 27 @ 44.6903 47.8912 13 | -4.2558 3.7547 55.3045 -Georgia.ttf 27 @ 44.6903 47.8912 14 N -1.4172 42.0727 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 15 f -5.5113 22.1088 44.3365 -Georgia.ttf 27 @ 44.6903 47.8912 16 g 9.5338 27.2356 42.0000 -Georgia.ttf 27 @ 44.6903 47.8912 17 d -5.3698 30.9403 45.5047 -Georgia.ttf 27 @ 44.6903 47.8912 18 W -1.4150 58.3365 40.6779 -Georgia.ttf 27 @ 44.6903 47.8912 19 s 10.1973 20.9867 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 20 c 9.7221 24.1536 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 21 u 9.4702 31.5237 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 22 3 7.5945 27.3045 41.7500 -Georgia.ttf 27 @ 44.6903 47.8912 23 ~ 17.9896 30.0403 10.4453 -Georgia.ttf 27 @ 44.6903 47.8912 24 # 3.7371 29.1872 35.0594 -Georgia.ttf 27 @ 44.6903 47.8912 25 O -2.4769 38.4953 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 26 ` -4.8301 11.6635 12.1362 -Georgia.ttf 27 @ 44.6903 47.8912 27 @ 0.1623 44.6903 47.8912 -Georgia.ttf 27 @ 44.6903 47.8912 28 F -1.5109 31.6736 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 29 S -2.9344 28.0000 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 30 p 9.7526 30.2638 42.0000 -Georgia.ttf 27 @ 44.6903 47.8912 31 “ -4.0863 18.8041 15.1682 -Georgia.ttf 27 @ 44.6903 47.8912 32 % -2.5426 41.5772 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 33 £ -2.7075 30.0448 41.5962 -Georgia.ttf 27 @ 44.6903 47.8912 34 . 31.5425 7.9550 7.9550 -Georgia.ttf 27 @ 44.6903 47.8912 35 2 7.2941 26.4090 31.5047 -Georgia.ttf 27 @ 44.6903 47.8912 36 5 8.6732 26.8318 40.5818 -Georgia.ttf 27 @ 44.6903 47.8912 37 m 9.7522 48.0867 29.1682 -Georgia.ttf 27 @ 44.6903 47.8912 38 V -1.5905 41.3045 40.6779 -Georgia.ttf 27 @ 44.6903 47.8912 39 6 -2.4385 27.7083 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 40 w 11.4000 44.3365 28.0000 -Georgia.ttf 27 @ 44.6903 47.8912 41 T -1.3085 36.3815 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 42 M -1.6415 49.8549 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 43 G -2.2226 39.4135 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 44 b -4.9657 31.0781 46.4730 -Georgia.ttf 27 @ 44.6903 47.8912 45 9 7.5555 27.7083 41.9500 -Georgia.ttf 27 @ 44.6903 47.8912 46 ; 10.9698 9.5498 38.2453 -Georgia.ttf 27 @ 44.6903 47.8912 47 D -1.3014 38.0914 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 48 L -1.3267 32.4730 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 49 y 11.3309 30.7403 40.8318 -Georgia.ttf 27 @ 44.6903 47.8912 50 ‘ -4.1918 8.3588 15.1682 -Georgia.ttf 27 @ 44.6903 47.8912 51 \ -4.1753 23.2770 55.3045 -Georgia.ttf 27 @ 44.6903 47.8912 52 R -1.6207 39.2597 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 53 < 7.5521 26.4279 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 54 4 7.3946 29.8448 41.7500 -Georgia.ttf 27 @ 44.6903 47.8912 55 8 -2.4706 28.7227 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 56 0 7.3228 29.8910 32.6730 -Georgia.ttf 27 @ 44.6903 47.8912 57 A -1.6968 41.5962 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 58 E -1.1842 34.7056 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 59 B -1.1530 32.7646 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 60 v 11.2321 30.7403 28.0000 -Georgia.ttf 27 @ 44.6903 47.8912 61 k -5.3430 31.4820 44.3365 -Georgia.ttf 27 @ 44.6903 47.8912 62 J -1.6638 29.0144 41.5962 -Georgia.ttf 27 @ 44.6903 47.8912 63 U -1.7316 42.2189 41.5962 -Georgia.ttf 27 @ 44.6903 47.8912 64 j -5.1308 16.3365 56.6766 -Georgia.ttf 27 @ 44.6903 47.8912 65 ( -4.1877 16.5865 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 66 7 8.7337 26.5818 40.5818 -Georgia.ttf 27 @ 44.6903 47.8912 67 § -2.6486 22.5588 48.8094 -Georgia.ttf 27 @ 44.6903 47.8912 68 $ -4.9914 27.3045 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 69 € -2.3863 36.6315 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 70 / -4.2868 23.2770 55.3045 -Georgia.ttf 27 @ 44.6903 47.8912 71 C -2.5637 34.2950 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 72 * -2.7437 22.6315 19.9723 -Georgia.ttf 27 @ 44.6903 47.8912 73 ” -3.9598 18.8041 15.1682 -Georgia.ttf 27 @ 44.6903 47.8912 74 ? -2.3253 22.2277 42.0000 -Georgia.ttf 27 @ 44.6903 47.8912 75 { -4.1478 21.2133 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 76 } -4.0120 21.2133 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 77 , 31.8270 9.5498 17.3047 -Georgia.ttf 27 @ 44.6903 47.8912 78 I -1.8156 18.1351 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 79 ° -2.6698 18.4730 18.4730 -Georgia.ttf 27 @ 44.6903 47.8912 80 K -1.0863 39.2597 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 81 H -1.8232 41.8878 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 82 q 8.4838 30.8903 43.1682 -Georgia.ttf 27 @ 44.6903 47.8912 83 & -2.7191 39.2597 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 84 ’ -4.3549 8.3588 15.1682 -Georgia.ttf 27 @ 44.6903 47.8912 85 [ -3.8094 15.1682 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 86 - 20.9152 17.0320 4.4730 -Georgia.ttf 27 @ 44.6903 47.8912 87 Y -1.3921 38.9680 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 88 Q -2.8807 38.4953 52.5642 -Georgia.ttf 27 @ 44.6903 47.8912 89 " -4.0943 17.7547 16.3365 -Georgia.ttf 27 @ 44.6903 47.8912 90 ! -2.8349 7.9550 42.7644 -Georgia.ttf 27 @ 44.6903 47.8912 91 x 10.7167 29.1682 28.0000 -Georgia.ttf 27 @ 44.6903 47.8912 92 ) -4.2272 16.5865 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 93 = 15.9625 29.1682 14.4500 -Georgia.ttf 27 @ 44.6903 47.8912 94 + 8.4538 29.4182 29.4182 -Georgia.ttf 27 @ 44.6903 47.8912 95 X -1.4812 41.5962 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 96 » 12.2547 23.9998 23.2770 -Georgia.ttf 27 @ 44.6903 47.8912 97 ' -4.2743 6.7867 16.3365 -Georgia.ttf 27 @ 44.6903 47.8912 98 ¢ 2.6476 25.8241 44.7403 -Georgia.ttf 27 @ 44.6903 47.8912 99 Z -1.6403 33.6912 40.4279 -Georgia.ttf 27 @ 44.6903 47.8912 100 > 7.6203 26.4279 30.3365 -Georgia.ttf 27 @ 44.6903 47.8912 101 ® -2.9644 50.3815 50.3815 -Georgia.ttf 27 @ 44.6903 47.8912 102 © -3.0992 50.3815 50.3815 -Georgia.ttf 27 @ 44.6903 47.8912 103 ] -4.1137 15.1682 52.4453 -Georgia.ttf 27 @ 44.6903 47.8912 104 é -4.7728 24.6953 44.8092 -Georgia.ttf 27 @ 44.6903 47.8912 105 z 11.0037 23.0270 28.0000 -Georgia.ttf 27 @ 44.6903 47.8912 106 _ 44.1771 37.5498 2.7403 -Georgia.ttf 27 @ 44.6903 47.8912 107 ¥ -0.9123 37.0770 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 1 t 3.8937 18.7851 38.0914 -Georgia.ttf 28 F 31.6736 40.4279 2 h -3.9086 31.5237 44.3365 -Georgia.ttf 28 F 31.6736 40.4279 3 a 11.2481 25.6635 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 4 n 11.2580 31.5237 29.1682 -Georgia.ttf 28 F 31.6736 40.4279 5 P 0.1830 31.6236 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 6 o 11.1163 27.2318 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 7 e 11.1525 24.6953 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 8 : 12.7005 7.9550 28.4038 -Georgia.ttf 28 F 31.6736 40.4279 9 r 11.5049 21.9550 29.1682 -Georgia.ttf 28 F 31.6736 40.4279 10 l -3.8393 14.8955 44.3365 -Georgia.ttf 28 F 31.6736 40.4279 11 i -3.7021 14.3538 43.8448 -Georgia.ttf 28 F 31.6736 40.4279 12 1 8.9154 19.8912 31.5047 -Georgia.ttf 28 F 31.6736 40.4279 13 | -2.5531 3.7547 55.3045 -Georgia.ttf 28 F 31.6736 40.4279 14 N -0.0152 42.0727 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 15 f -4.0874 22.1088 44.3365 -Georgia.ttf 28 F 31.6736 40.4279 16 g 10.9585 27.2356 42.0000 -Georgia.ttf 28 F 31.6736 40.4279 17 d -3.9201 30.9403 45.5047 -Georgia.ttf 28 F 31.6736 40.4279 18 W -0.1736 58.3365 40.6779 -Georgia.ttf 28 F 31.6736 40.4279 19 s 11.1048 20.9867 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 20 c 11.1452 24.1536 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 21 u 11.0127 31.5237 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 22 3 9.1860 27.3045 41.7500 -Georgia.ttf 28 F 31.6736 40.4279 23 ~ 19.0644 30.0403 10.4453 -Georgia.ttf 28 F 31.6736 40.4279 24 # 5.0760 29.1872 35.0594 -Georgia.ttf 28 F 31.6736 40.4279 25 O -1.4577 38.4953 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 26 ` -3.3735 11.6635 12.1362 -Georgia.ttf 28 F 31.6736 40.4279 27 @ 1.4994 44.6903 47.8912 -Georgia.ttf 28 F 31.6736 40.4279 28 F 0.1103 31.6736 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 29 S -1.0630 28.0000 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 30 p 11.2115 30.2638 42.0000 -Georgia.ttf 28 F 31.6736 40.4279 31 “ -2.9661 18.8041 15.1682 -Georgia.ttf 28 F 31.6736 40.4279 32 % -1.1461 41.5772 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 33 £ -1.1594 30.0448 41.5962 -Georgia.ttf 28 F 31.6736 40.4279 34 . 32.8452 7.9550 7.9550 -Georgia.ttf 28 F 31.6736 40.4279 35 2 9.0720 26.4090 31.5047 -Georgia.ttf 28 F 31.6736 40.4279 36 5 10.4228 26.8318 40.5818 -Georgia.ttf 28 F 31.6736 40.4279 37 m 11.3551 48.0867 29.1682 -Georgia.ttf 28 F 31.6736 40.4279 38 V 0.0083 41.3045 40.6779 -Georgia.ttf 28 F 31.6736 40.4279 39 6 -1.0349 27.7083 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 40 w 12.3523 44.3365 28.0000 -Georgia.ttf 28 F 31.6736 40.4279 41 T 0.0813 36.3815 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 42 M 0.0487 49.8549 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 43 G -1.1006 39.4135 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 44 b -3.6286 31.0781 46.4730 -Georgia.ttf 28 F 31.6736 40.4279 45 9 8.9852 27.7083 41.9500 -Georgia.ttf 28 F 31.6736 40.4279 46 ; 12.2392 9.5498 38.2453 -Georgia.ttf 28 F 31.6736 40.4279 47 D 0.1306 38.0914 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 48 L 0.2405 32.4730 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 49 y 12.5646 30.7403 40.8318 -Georgia.ttf 28 F 31.6736 40.4279 50 ‘ -2.7519 8.3588 15.1682 -Georgia.ttf 28 F 31.6736 40.4279 51 \ -2.7292 23.2770 55.3045 -Georgia.ttf 28 F 31.6736 40.4279 52 R 0.2464 39.2597 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 53 < 9.2904 26.4279 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 54 4 8.7049 29.8448 41.7500 -Georgia.ttf 28 F 31.6736 40.4279 55 8 -1.1897 28.7227 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 56 0 8.8273 29.8910 32.6730 -Georgia.ttf 28 F 31.6736 40.4279 57 A -0.0422 41.5962 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 58 E -0.0064 34.7056 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 59 B 0.1826 32.7646 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 60 v 12.3311 30.7403 28.0000 -Georgia.ttf 28 F 31.6736 40.4279 61 k -3.9841 31.4820 44.3365 -Georgia.ttf 28 F 31.6736 40.4279 62 J -0.1548 29.0144 41.5962 -Georgia.ttf 28 F 31.6736 40.4279 63 U 0.0874 42.2189 41.5962 -Georgia.ttf 28 F 31.6736 40.4279 64 j -3.5095 16.3365 56.6766 -Georgia.ttf 28 F 31.6736 40.4279 65 ( -2.7260 16.5865 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 66 7 9.6891 26.5818 40.5818 -Georgia.ttf 28 F 31.6736 40.4279 67 § -1.2242 22.5588 48.8094 -Georgia.ttf 28 F 31.6736 40.4279 68 $ -3.5714 27.3045 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 69 € -1.2984 36.6315 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 70 / -2.8464 23.2770 55.3045 -Georgia.ttf 28 F 31.6736 40.4279 71 C -1.2522 34.2950 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 72 * -1.2599 22.6315 19.9723 -Georgia.ttf 28 F 31.6736 40.4279 73 ” -2.8963 18.8041 15.1682 -Georgia.ttf 28 F 31.6736 40.4279 74 ? -1.1868 22.2277 42.0000 -Georgia.ttf 28 F 31.6736 40.4279 75 { -2.7609 21.2133 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 76 } -2.5304 21.2133 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 77 , 33.0626 9.5498 17.3047 -Georgia.ttf 28 F 31.6736 40.4279 78 I 0.3244 18.1351 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 79 ° -1.5273 18.4730 18.4730 -Georgia.ttf 28 F 31.6736 40.4279 80 K -0.2288 39.2597 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 81 H 0.1316 41.8878 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 82 q 10.1771 30.8903 43.1682 -Georgia.ttf 28 F 31.6736 40.4279 83 & -1.3403 39.2597 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 84 ’ -2.8715 8.3588 15.1682 -Georgia.ttf 28 F 31.6736 40.4279 85 [ -2.8943 15.1682 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 86 - 22.8383 17.0320 4.4730 -Georgia.ttf 28 F 31.6736 40.4279 87 Y -0.1475 38.9680 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 88 Q -1.7266 38.4953 52.5642 -Georgia.ttf 28 F 31.6736 40.4279 89 " -2.7441 17.7547 16.3365 -Georgia.ttf 28 F 31.6736 40.4279 90 ! -0.9090 7.9550 42.7644 -Georgia.ttf 28 F 31.6736 40.4279 91 x 12.7680 29.1682 28.0000 -Georgia.ttf 28 F 31.6736 40.4279 92 ) -2.6033 16.5865 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 93 = 17.2221 29.1682 14.4500 -Georgia.ttf 28 F 31.6736 40.4279 94 + 9.7980 29.4182 29.4182 -Georgia.ttf 28 F 31.6736 40.4279 95 X 0.0181 41.5962 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 96 » 13.5912 23.9998 23.2770 -Georgia.ttf 28 F 31.6736 40.4279 97 ' -2.8220 6.7867 16.3365 -Georgia.ttf 28 F 31.6736 40.4279 98 ¢ 4.1140 25.8241 44.7403 -Georgia.ttf 28 F 31.6736 40.4279 99 Z -0.0889 33.6912 40.4279 -Georgia.ttf 28 F 31.6736 40.4279 100 > 9.4174 26.4279 30.3365 -Georgia.ttf 28 F 31.6736 40.4279 101 ® -1.5760 50.3815 50.3815 -Georgia.ttf 28 F 31.6736 40.4279 102 © -1.4733 50.3815 50.3815 -Georgia.ttf 28 F 31.6736 40.4279 103 ] -2.7505 15.1682 52.4453 -Georgia.ttf 28 F 31.6736 40.4279 104 é -3.4712 24.6953 44.8092 -Georgia.ttf 28 F 31.6736 40.4279 105 z 12.3463 23.0270 28.0000 -Georgia.ttf 28 F 31.6736 40.4279 106 _ 45.5794 37.5498 2.7403 -Georgia.ttf 28 F 31.6736 40.4279 107 ¥ -0.2163 37.0770 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 1 t 4.6730 18.7851 38.0914 -Georgia.ttf 29 S 28.0000 42.7644 2 h -2.7485 31.5237 44.3365 -Georgia.ttf 29 S 28.0000 42.7644 3 a 12.5853 25.6635 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 4 n 12.4983 31.5237 29.1682 -Georgia.ttf 29 S 28.0000 42.7644 5 P 1.1260 31.6236 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 6 o 12.4317 27.2318 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 7 e 12.2653 24.6953 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 8 : 13.5395 7.9550 28.4038 -Georgia.ttf 29 S 28.0000 42.7644 9 r 12.6235 21.9550 29.1682 -Georgia.ttf 29 S 28.0000 42.7644 10 l -2.8320 14.8955 44.3365 -Georgia.ttf 29 S 28.0000 42.7644 11 i -2.3618 14.3538 43.8448 -Georgia.ttf 29 S 28.0000 42.7644 12 1 10.0141 19.8912 31.5047 -Georgia.ttf 29 S 28.0000 42.7644 13 | -1.4421 3.7547 55.3045 -Georgia.ttf 29 S 28.0000 42.7644 14 N 1.0279 42.0727 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 15 f -2.5854 22.1088 44.3365 -Georgia.ttf 29 S 28.0000 42.7644 16 g 12.3162 27.2356 42.0000 -Georgia.ttf 29 S 28.0000 42.7644 17 d -2.8153 30.9403 45.5047 -Georgia.ttf 29 S 28.0000 42.7644 18 W 0.9604 58.3365 40.6779 -Georgia.ttf 29 S 28.0000 42.7644 19 s 12.7184 20.9867 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 20 c 12.3726 24.1536 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 21 u 12.3194 31.5237 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 22 3 9.9306 27.3045 41.7500 -Georgia.ttf 29 S 28.0000 42.7644 23 ~ 20.2527 30.0403 10.4453 -Georgia.ttf 29 S 28.0000 42.7644 24 # 6.5270 29.1872 35.0594 -Georgia.ttf 29 S 28.0000 42.7644 25 O -0.3374 38.4953 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 26 ` -2.1879 11.6635 12.1362 -Georgia.ttf 29 S 28.0000 42.7644 27 @ 2.5059 44.6903 47.8912 -Georgia.ttf 29 S 28.0000 42.7644 28 F 0.9867 31.6736 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 29 S -0.4483 28.0000 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 30 p 12.3055 30.2638 42.0000 -Georgia.ttf 29 S 28.0000 42.7644 31 “ -1.7033 18.8041 15.1682 -Georgia.ttf 29 S 28.0000 42.7644 32 % 0.1760 41.5772 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 33 £ -0.0885 30.0448 41.5962 -Georgia.ttf 29 S 28.0000 42.7644 34 . 33.6169 7.9550 7.9550 -Georgia.ttf 29 S 28.0000 42.7644 35 2 10.3291 26.4090 31.5047 -Georgia.ttf 29 S 28.0000 42.7644 36 5 11.2635 26.8318 40.5818 -Georgia.ttf 29 S 28.0000 42.7644 37 m 12.5080 48.0867 29.1682 -Georgia.ttf 29 S 28.0000 42.7644 38 V 1.3648 41.3045 40.6779 -Georgia.ttf 29 S 28.0000 42.7644 39 6 -0.1225 27.7083 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 40 w 13.5759 44.3365 28.0000 -Georgia.ttf 29 S 28.0000 42.7644 41 T 1.0801 36.3815 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 42 M 1.5062 49.8549 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 43 G 0.2446 39.4135 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 44 b -2.5333 31.0781 46.4730 -Georgia.ttf 29 S 28.0000 42.7644 45 9 9.9196 27.7083 41.9500 -Georgia.ttf 29 S 28.0000 42.7644 46 ; 13.5128 9.5498 38.2453 -Georgia.ttf 29 S 28.0000 42.7644 47 D 0.9282 38.0914 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 48 L 1.0909 32.4730 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 49 y 13.3817 30.7403 40.8318 -Georgia.ttf 29 S 28.0000 42.7644 50 ‘ -1.4240 8.3588 15.1682 -Georgia.ttf 29 S 28.0000 42.7644 51 \ -1.4882 23.2770 55.3045 -Georgia.ttf 29 S 28.0000 42.7644 52 R 1.0042 39.2597 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 53 < 10.3351 26.4279 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 54 4 10.1331 29.8448 41.7500 -Georgia.ttf 29 S 28.0000 42.7644 55 8 -0.3111 28.7227 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 56 0 9.9783 29.8910 32.6730 -Georgia.ttf 29 S 28.0000 42.7644 57 A 1.2187 41.5962 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 58 E 0.9135 34.7056 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 59 B 1.0115 32.7646 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 60 v 13.7582 30.7403 28.0000 -Georgia.ttf 29 S 28.0000 42.7644 61 k -2.7092 31.4820 44.3365 -Georgia.ttf 29 S 28.0000 42.7644 62 J 1.1952 29.0144 41.5962 -Georgia.ttf 29 S 28.0000 42.7644 63 U 0.9180 42.2189 41.5962 -Georgia.ttf 29 S 28.0000 42.7644 64 j -2.5810 16.3365 56.6766 -Georgia.ttf 29 S 28.0000 42.7644 65 ( -1.6175 16.5865 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 66 7 11.3551 26.5818 40.5818 -Georgia.ttf 29 S 28.0000 42.7644 67 § 0.0714 22.5588 48.8094 -Georgia.ttf 29 S 28.0000 42.7644 68 $ -2.3532 27.3045 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 69 € -0.1641 36.6315 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 70 / -1.4850 23.2770 55.3045 -Georgia.ttf 29 S 28.0000 42.7644 71 C 0.1260 34.2950 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 72 * 0.1269 22.6315 19.9723 -Georgia.ttf 29 S 28.0000 42.7644 73 ” -1.5286 18.8041 15.1682 -Georgia.ttf 29 S 28.0000 42.7644 74 ? -0.2040 22.2277 42.0000 -Georgia.ttf 29 S 28.0000 42.7644 75 { -1.4219 21.2133 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 76 } -1.7050 21.2133 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 77 , 34.4828 9.5498 17.3047 -Georgia.ttf 29 S 28.0000 42.7644 78 I 1.3236 18.1351 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 79 ° -0.2605 18.4730 18.4730 -Georgia.ttf 29 S 28.0000 42.7644 80 K 1.1589 39.2597 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 81 H 1.2759 41.8878 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 82 q 11.1026 30.8903 43.1682 -Georgia.ttf 29 S 28.0000 42.7644 83 & -0.2600 39.2597 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 84 ’ -1.5776 8.3588 15.1682 -Georgia.ttf 29 S 28.0000 42.7644 85 [ -1.4432 15.1682 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 86 - 23.8498 17.0320 4.4730 -Georgia.ttf 29 S 28.0000 42.7644 87 Y 1.1321 38.9680 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 88 Q 0.0102 38.4953 52.5642 -Georgia.ttf 29 S 28.0000 42.7644 89 " -1.4016 17.7547 16.3365 -Georgia.ttf 29 S 28.0000 42.7644 90 ! -0.2887 7.9550 42.7644 -Georgia.ttf 29 S 28.0000 42.7644 91 x 13.4233 29.1682 28.0000 -Georgia.ttf 29 S 28.0000 42.7644 92 ) -1.4678 16.5865 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 93 = 18.5882 29.1682 14.4500 -Georgia.ttf 29 S 28.0000 42.7644 94 + 10.8364 29.4182 29.4182 -Georgia.ttf 29 S 28.0000 42.7644 95 X 1.1007 41.5962 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 96 » 15.0116 23.9998 23.2770 -Georgia.ttf 29 S 28.0000 42.7644 97 ' -1.4979 6.7867 16.3365 -Georgia.ttf 29 S 28.0000 42.7644 98 ¢ 5.1559 25.8241 44.7403 -Georgia.ttf 29 S 28.0000 42.7644 99 Z 1.2696 33.6912 40.4279 -Georgia.ttf 29 S 28.0000 42.7644 100 > 10.2309 26.4279 30.3365 -Georgia.ttf 29 S 28.0000 42.7644 101 ® -0.4053 50.3815 50.3815 -Georgia.ttf 29 S 28.0000 42.7644 102 © -0.4441 50.3815 50.3815 -Georgia.ttf 29 S 28.0000 42.7644 103 ] -1.5120 15.1682 52.4453 -Georgia.ttf 29 S 28.0000 42.7644 104 é -2.0558 24.6953 44.8092 -Georgia.ttf 29 S 28.0000 42.7644 105 z 13.6394 23.0270 28.0000 -Georgia.ttf 29 S 28.0000 42.7644 106 _ 46.8458 37.5498 2.7403 -Georgia.ttf 29 S 28.0000 42.7644 107 ¥ 1.0252 37.0770 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 1 t -7.5821 18.7851 38.0914 -Georgia.ttf 30 p 30.2638 42.0000 2 h -15.1479 31.5237 44.3365 -Georgia.ttf 30 p 30.2638 42.0000 3 a -0.0057 25.6635 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 4 n 0.1490 31.5237 29.1682 -Georgia.ttf 30 p 30.2638 42.0000 5 P -11.0220 31.6236 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 6 o 0.1377 27.2318 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 7 e -0.1211 24.6953 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 8 : 1.1200 7.9550 28.4038 -Georgia.ttf 30 p 30.2638 42.0000 9 r 0.0924 21.9550 29.1682 -Georgia.ttf 30 p 30.2638 42.0000 10 l -15.1770 14.8955 44.3365 -Georgia.ttf 30 p 30.2638 42.0000 11 i -14.5954 14.3538 43.8448 -Georgia.ttf 30 p 30.2638 42.0000 12 1 -2.3260 19.8912 31.5047 -Georgia.ttf 30 p 30.2638 42.0000 13 | -13.7498 3.7547 55.3045 -Georgia.ttf 30 p 30.2638 42.0000 14 N -11.2138 42.0727 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 15 f -15.0964 22.1088 44.3365 -Georgia.ttf 30 p 30.2638 42.0000 16 g 0.0560 27.2356 42.0000 -Georgia.ttf 30 p 30.2638 42.0000 17 d -15.2642 30.9403 45.5047 -Georgia.ttf 30 p 30.2638 42.0000 18 W -10.9959 58.3365 40.6779 -Georgia.ttf 30 p 30.2638 42.0000 19 s -0.0783 20.9867 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 20 c -0.0832 24.1536 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 21 u 0.3834 31.5237 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 22 3 -2.3337 27.3045 41.7500 -Georgia.ttf 30 p 30.2638 42.0000 23 ~ 7.8595 30.0403 10.4453 -Georgia.ttf 30 p 30.2638 42.0000 24 # -5.9598 29.1872 35.0594 -Georgia.ttf 30 p 30.2638 42.0000 25 O -12.5970 38.4953 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 26 ` -14.4347 11.6635 12.1362 -Georgia.ttf 30 p 30.2638 42.0000 27 @ -9.7998 44.6903 47.8912 -Georgia.ttf 30 p 30.2638 42.0000 28 F -11.1382 31.6736 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 29 S -12.2134 28.0000 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 30 p -0.0969 30.2638 42.0000 -Georgia.ttf 30 p 30.2638 42.0000 31 “ -13.7206 18.8041 15.1682 -Georgia.ttf 30 p 30.2638 42.0000 32 % -12.2464 41.5772 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 33 £ -12.4964 30.0448 41.5962 -Georgia.ttf 30 p 30.2638 42.0000 34 . 21.8280 7.9550 7.9550 -Georgia.ttf 30 p 30.2638 42.0000 35 2 -2.3605 26.4090 31.5047 -Georgia.ttf 30 p 30.2638 42.0000 36 5 -1.1700 26.8318 40.5818 -Georgia.ttf 30 p 30.2638 42.0000 37 m -0.2026 48.0867 29.1682 -Georgia.ttf 30 p 30.2638 42.0000 38 V -11.3371 41.3045 40.6779 -Georgia.ttf 30 p 30.2638 42.0000 39 6 -12.4696 27.7083 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 40 w 0.7942 44.3365 28.0000 -Georgia.ttf 30 p 30.2638 42.0000 41 T -11.2040 36.3815 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 42 M -11.1933 49.8549 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 43 G -12.7138 39.4135 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 44 b -15.3744 31.0781 46.4730 -Georgia.ttf 30 p 30.2638 42.0000 45 9 -2.4754 27.7083 41.9500 -Georgia.ttf 30 p 30.2638 42.0000 46 ; 1.1200 9.5498 38.2453 -Georgia.ttf 30 p 30.2638 42.0000 47 D -11.3611 38.0914 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 48 L -11.3839 32.4730 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 49 y 1.2081 30.7403 40.8318 -Georgia.ttf 30 p 30.2638 42.0000 50 ‘ -13.8740 8.3588 15.1682 -Georgia.ttf 30 p 30.2638 42.0000 51 \ -14.1242 23.2770 55.3045 -Georgia.ttf 30 p 30.2638 42.0000 52 R -11.3260 39.2597 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 53 < -2.1255 26.4279 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 54 4 -2.2693 29.8448 41.7500 -Georgia.ttf 30 p 30.2638 42.0000 55 8 -12.5649 28.7227 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 56 0 -2.6220 29.8910 32.6730 -Georgia.ttf 30 p 30.2638 42.0000 57 A -11.5186 41.5962 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 58 E -11.0998 34.7056 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 59 B -11.1695 32.7646 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 60 v 1.0895 30.7403 28.0000 -Georgia.ttf 30 p 30.2638 42.0000 61 k -15.0711 31.4820 44.3365 -Georgia.ttf 30 p 30.2638 42.0000 62 J -11.3292 29.0144 41.5962 -Georgia.ttf 30 p 30.2638 42.0000 63 U -11.3031 42.2189 41.5962 -Georgia.ttf 30 p 30.2638 42.0000 64 j -14.8296 16.3365 56.6766 -Georgia.ttf 30 p 30.2638 42.0000 65 ( -14.1867 16.5865 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 66 7 -0.9986 26.5818 40.5818 -Georgia.ttf 30 p 30.2638 42.0000 67 § -12.6964 22.5588 48.8094 -Georgia.ttf 30 p 30.2638 42.0000 68 $ -14.8395 27.3045 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 69 € -12.2235 36.6315 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 70 / -13.9605 23.2770 55.3045 -Georgia.ttf 30 p 30.2638 42.0000 71 C -12.5702 34.2950 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 72 * -12.4553 22.6315 19.9723 -Georgia.ttf 30 p 30.2638 42.0000 73 ” -14.0620 18.8041 15.1682 -Georgia.ttf 30 p 30.2638 42.0000 74 ? -12.3757 22.2277 42.0000 -Georgia.ttf 30 p 30.2638 42.0000 75 { -13.9055 21.2133 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 76 } -14.1576 21.2133 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 77 , 22.3090 9.5498 17.3047 -Georgia.ttf 30 p 30.2638 42.0000 78 I -11.1828 18.1351 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 79 ° -12.3738 18.4730 18.4730 -Georgia.ttf 30 p 30.2638 42.0000 80 K -11.1319 39.2597 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 81 H -11.2110 41.8878 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 82 q -1.1668 30.8903 43.1682 -Georgia.ttf 30 p 30.2638 42.0000 83 & -12.2116 39.2597 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 84 ’ -13.7223 8.3588 15.1682 -Georgia.ttf 30 p 30.2638 42.0000 85 [ -13.7936 15.1682 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 86 - 11.3378 17.0320 4.4730 -Georgia.ttf 30 p 30.2638 42.0000 87 Y -11.4774 38.9680 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 88 Q -12.2537 38.4953 52.5642 -Georgia.ttf 30 p 30.2638 42.0000 89 " -14.1151 17.7547 16.3365 -Georgia.ttf 30 p 30.2638 42.0000 90 ! -12.3344 7.9550 42.7644 -Georgia.ttf 30 p 30.2638 42.0000 91 x 1.2182 29.1682 28.0000 -Georgia.ttf 30 p 30.2638 42.0000 92 ) -14.0251 16.5865 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 93 = 6.2868 29.1682 14.4500 -Georgia.ttf 30 p 30.2638 42.0000 94 + -1.7722 29.4182 29.4182 -Georgia.ttf 30 p 30.2638 42.0000 95 X -11.3190 41.5962 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 96 » 2.5762 23.9998 23.2770 -Georgia.ttf 30 p 30.2638 42.0000 97 ' -14.0202 6.7867 16.3365 -Georgia.ttf 30 p 30.2638 42.0000 98 ¢ -7.1076 25.8241 44.7403 -Georgia.ttf 30 p 30.2638 42.0000 99 Z -11.3849 33.6912 40.4279 -Georgia.ttf 30 p 30.2638 42.0000 100 > -1.8832 26.4279 30.3365 -Georgia.ttf 30 p 30.2638 42.0000 101 ® -12.7506 50.3815 50.3815 -Georgia.ttf 30 p 30.2638 42.0000 102 © -12.9486 50.3815 50.3815 -Georgia.ttf 30 p 30.2638 42.0000 103 ] -13.9258 15.1682 52.4453 -Georgia.ttf 30 p 30.2638 42.0000 104 é -14.5584 24.6953 44.8092 -Georgia.ttf 30 p 30.2638 42.0000 105 z 1.2670 23.0270 28.0000 -Georgia.ttf 30 p 30.2638 42.0000 106 _ 33.9753 37.5498 2.7403 -Georgia.ttf 30 p 30.2638 42.0000 107 ¥ -11.2811 37.0770 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 1 t 6.1667 18.7851 38.0914 -Georgia.ttf 31 “ 18.8041 15.1682 2 h -1.3855 31.5237 44.3365 -Georgia.ttf 31 “ 18.8041 15.1682 3 a 14.0806 25.6635 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 4 n 13.6085 31.5237 29.1682 -Georgia.ttf 31 “ 18.8041 15.1682 5 P 2.8580 31.6236 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 6 o 14.0019 27.2318 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 7 e 13.7400 24.6953 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 8 : 15.0123 7.9550 28.4038 -Georgia.ttf 31 “ 18.8041 15.1682 9 r 13.7617 21.9550 29.1682 -Georgia.ttf 31 “ 18.8041 15.1682 10 l -1.1047 14.8955 44.3365 -Georgia.ttf 31 “ 18.8041 15.1682 11 i -0.6284 14.3538 43.8448 -Georgia.ttf 31 “ 18.8041 15.1682 12 1 11.6608 19.8912 31.5047 -Georgia.ttf 31 “ 18.8041 15.1682 13 | 0.0769 3.7547 55.3045 -Georgia.ttf 31 “ 18.8041 15.1682 14 N 2.8113 42.0727 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 15 f -1.3851 22.1088 44.3365 -Georgia.ttf 31 “ 18.8041 15.1682 16 g 13.9583 27.2356 42.0000 -Georgia.ttf 31 “ 18.8041 15.1682 17 d -1.0187 30.9403 45.5047 -Georgia.ttf 31 “ 18.8041 15.1682 18 W 2.8381 58.3365 40.6779 -Georgia.ttf 31 “ 18.8041 15.1682 19 s 13.9532 20.9867 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 20 c 13.9129 24.1536 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 21 u 14.0825 31.5237 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 22 3 11.7312 27.3045 41.7500 -Georgia.ttf 31 “ 18.8041 15.1682 23 ~ 22.0305 30.0403 10.4453 -Georgia.ttf 31 “ 18.8041 15.1682 24 # 8.1043 29.1872 35.0594 -Georgia.ttf 31 “ 18.8041 15.1682 25 O 1.7487 38.4953 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 26 ` -0.5157 11.6635 12.1362 -Georgia.ttf 31 “ 18.8041 15.1682 27 @ 4.0177 44.6903 47.8912 -Georgia.ttf 31 “ 18.8041 15.1682 28 F 2.8600 31.6736 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 29 S 1.8215 28.0000 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 30 p 14.3809 30.2638 42.0000 -Georgia.ttf 31 “ 18.8041 15.1682 31 “ -0.1875 18.8041 15.1682 -Georgia.ttf 31 “ 18.8041 15.1682 32 % 1.3667 41.5772 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 33 £ 1.3996 30.0448 41.5962 -Georgia.ttf 31 “ 18.8041 15.1682 34 . 35.5574 7.9550 7.9550 -Georgia.ttf 31 “ 18.8041 15.1682 35 2 11.7566 26.4090 31.5047 -Georgia.ttf 31 “ 18.8041 15.1682 36 5 13.0139 26.8318 40.5818 -Georgia.ttf 31 “ 18.8041 15.1682 37 m 13.8677 48.0867 29.1682 -Georgia.ttf 31 “ 18.8041 15.1682 38 V 2.9184 41.3045 40.6779 -Georgia.ttf 31 “ 18.8041 15.1682 39 6 1.5777 27.7083 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 40 w 15.2220 44.3365 28.0000 -Georgia.ttf 31 “ 18.8041 15.1682 41 T 2.7903 36.3815 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 42 M 2.8155 49.8549 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 43 G 1.4920 39.4135 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 44 b -1.0556 31.0781 46.4730 -Georgia.ttf 31 “ 18.8041 15.1682 45 9 11.6135 27.7083 41.9500 -Georgia.ttf 31 “ 18.8041 15.1682 46 ; 15.0556 9.5498 38.2453 -Georgia.ttf 31 “ 18.8041 15.1682 47 D 2.8891 38.0914 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 48 L 2.8665 32.4730 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 49 y 15.3365 30.7403 40.8318 -Georgia.ttf 31 “ 18.8041 15.1682 50 ‘ 0.0386 8.3588 15.1682 -Georgia.ttf 31 “ 18.8041 15.1682 51 \ -0.0534 23.2770 55.3045 -Georgia.ttf 31 “ 18.8041 15.1682 52 R 2.9289 39.2597 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 53 < 11.8534 26.4279 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 54 4 11.5649 29.8448 41.7500 -Georgia.ttf 31 “ 18.8041 15.1682 55 8 1.7152 28.7227 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 56 0 11.4208 29.8910 32.6730 -Georgia.ttf 31 “ 18.8041 15.1682 57 A 2.8122 41.5962 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 58 E 2.8887 34.7056 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 59 B 2.8215 32.7646 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 60 v 15.0903 30.7403 28.0000 -Georgia.ttf 31 “ 18.8041 15.1682 61 k -1.3216 31.4820 44.3365 -Georgia.ttf 31 “ 18.8041 15.1682 62 J 2.5531 29.0144 41.5962 -Georgia.ttf 31 “ 18.8041 15.1682 63 U 2.8330 42.2189 41.5962 -Georgia.ttf 31 “ 18.8041 15.1682 64 j -0.4978 16.3365 56.6766 -Georgia.ttf 31 “ 18.8041 15.1682 65 ( -0.0482 16.5865 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 66 7 12.7443 26.5818 40.5818 -Georgia.ttf 31 “ 18.8041 15.1682 67 § 1.7783 22.5588 48.8094 -Georgia.ttf 31 “ 18.8041 15.1682 68 $ -0.7453 27.3045 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 69 € 1.5646 36.6315 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 70 / -0.0351 23.2770 55.3045 -Georgia.ttf 31 “ 18.8041 15.1682 71 C 1.4443 34.2950 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 72 * 1.9906 22.6315 19.9723 -Georgia.ttf 31 “ 18.8041 15.1682 73 ” 0.0357 18.8041 15.1682 -Georgia.ttf 31 “ 18.8041 15.1682 74 ? 1.3205 22.2277 42.0000 -Georgia.ttf 31 “ 18.8041 15.1682 75 { 0.1053 21.2133 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 76 } 0.0189 21.2133 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 77 , 36.1148 9.5498 17.3047 -Georgia.ttf 31 “ 18.8041 15.1682 78 I 2.6481 18.1351 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 79 ° 1.6902 18.4730 18.4730 -Georgia.ttf 31 “ 18.8041 15.1682 80 K 2.7820 39.2597 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 81 H 2.7903 41.8878 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 82 q 12.6347 30.8903 43.1682 -Georgia.ttf 31 “ 18.8041 15.1682 83 & 1.4353 39.2597 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 84 ’ -0.0097 8.3588 15.1682 -Georgia.ttf 31 “ 18.8041 15.1682 85 [ 0.0018 15.1682 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 86 - 25.3927 17.0320 4.4730 -Georgia.ttf 31 “ 18.8041 15.1682 87 Y 2.8205 38.9680 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 88 Q 1.2735 38.4953 52.5642 -Georgia.ttf 31 “ 18.8041 15.1682 89 " 0.0263 17.7547 16.3365 -Georgia.ttf 31 “ 18.8041 15.1682 90 ! 1.6623 7.9550 42.7644 -Georgia.ttf 31 “ 18.8041 15.1682 91 x 14.9971 29.1682 28.0000 -Georgia.ttf 31 “ 18.8041 15.1682 92 ) 0.1131 16.5865 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 93 = 19.6580 29.1682 14.4500 -Georgia.ttf 31 “ 18.8041 15.1682 94 + 12.4845 29.4182 29.4182 -Georgia.ttf 31 “ 18.8041 15.1682 95 X 2.6801 41.5962 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 96 » 16.9062 23.9998 23.2770 -Georgia.ttf 31 “ 18.8041 15.1682 97 ' 0.0728 6.7867 16.3365 -Georgia.ttf 31 “ 18.8041 15.1682 98 ¢ 6.6968 25.8241 44.7403 -Georgia.ttf 31 “ 18.8041 15.1682 99 Z 2.5605 33.6912 40.4279 -Georgia.ttf 31 “ 18.8041 15.1682 100 > 11.9020 26.4279 30.3365 -Georgia.ttf 31 “ 18.8041 15.1682 101 ® 1.3295 50.3815 50.3815 -Georgia.ttf 31 “ 18.8041 15.1682 102 © 1.2438 50.3815 50.3815 -Georgia.ttf 31 “ 18.8041 15.1682 103 ] -0.1675 15.1682 52.4453 -Georgia.ttf 31 “ 18.8041 15.1682 104 é -0.1862 24.6953 44.8092 -Georgia.ttf 31 “ 18.8041 15.1682 105 z 15.1769 23.0270 28.0000 -Georgia.ttf 31 “ 18.8041 15.1682 106 _ 48.0508 37.5498 2.7403 -Georgia.ttf 31 “ 18.8041 15.1682 107 ¥ 2.5949 37.0770 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 1 t 4.7625 18.7851 38.0914 -Georgia.ttf 32 % 41.5772 42.7644 2 h -3.1594 31.5237 44.3365 -Georgia.ttf 32 % 41.5772 42.7644 3 a 12.3402 25.6635 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 4 n 12.8321 31.5237 29.1682 -Georgia.ttf 32 % 41.5772 42.7644 5 P 0.9982 31.6236 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 6 o 12.6767 27.2318 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 7 e 12.2226 24.6953 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 8 : 13.7243 7.9550 28.4038 -Georgia.ttf 32 % 41.5772 42.7644 9 r 12.1652 21.9550 29.1682 -Georgia.ttf 32 % 41.5772 42.7644 10 l -2.5763 14.8955 44.3365 -Georgia.ttf 32 % 41.5772 42.7644 11 i -2.4981 14.3538 43.8448 -Georgia.ttf 32 % 41.5772 42.7644 12 1 10.1918 19.8912 31.5047 -Georgia.ttf 32 % 41.5772 42.7644 13 | -1.3283 3.7547 55.3045 -Georgia.ttf 32 % 41.5772 42.7644 14 N 0.9842 42.0727 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 15 f -2.5342 22.1088 44.3365 -Georgia.ttf 32 % 41.5772 42.7644 16 g 12.6804 27.2356 42.0000 -Georgia.ttf 32 % 41.5772 42.7644 17 d -2.6362 30.9403 45.5047 -Georgia.ttf 32 % 41.5772 42.7644 18 W 0.7631 58.3365 40.6779 -Georgia.ttf 32 % 41.5772 42.7644 19 s 12.4336 20.9867 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 20 c 12.5837 24.1536 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 21 u 12.3727 31.5237 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 22 3 9.8148 27.3045 41.7500 -Georgia.ttf 32 % 41.5772 42.7644 23 ~ 20.3013 30.0403 10.4453 -Georgia.ttf 32 % 41.5772 42.7644 24 # 6.1351 29.1872 35.0594 -Georgia.ttf 32 % 41.5772 42.7644 25 O -0.1096 38.4953 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 26 ` -2.2305 11.6635 12.1362 -Georgia.ttf 32 % 41.5772 42.7644 27 @ 2.5285 44.6903 47.8912 -Georgia.ttf 32 % 41.5772 42.7644 28 F 1.2295 31.6736 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 29 S -0.3784 28.0000 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 30 p 12.4909 30.2638 42.0000 -Georgia.ttf 32 % 41.5772 42.7644 31 “ -1.0967 18.8041 15.1682 -Georgia.ttf 32 % 41.5772 42.7644 32 % 0.2651 41.5772 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 33 £ -0.1029 30.0448 41.5962 -Georgia.ttf 32 % 41.5772 42.7644 34 . 34.1427 7.9550 7.9550 -Georgia.ttf 32 % 41.5772 42.7644 35 2 9.7861 26.4090 31.5047 -Georgia.ttf 32 % 41.5772 42.7644 36 5 11.0438 26.8318 40.5818 -Georgia.ttf 32 % 41.5772 42.7644 37 m 12.2764 48.0867 29.1682 -Georgia.ttf 32 % 41.5772 42.7644 38 V 1.2040 41.3045 40.6779 -Georgia.ttf 32 % 41.5772 42.7644 39 6 0.0155 27.7083 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 40 w 13.6675 44.3365 28.0000 -Georgia.ttf 32 % 41.5772 42.7644 41 T 1.2169 36.3815 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 42 M 1.1366 49.8549 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 43 G -0.2132 39.4135 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 44 b -2.7495 31.0781 46.4730 -Georgia.ttf 32 % 41.5772 42.7644 45 9 10.0371 27.7083 41.9500 -Georgia.ttf 32 % 41.5772 42.7644 46 ; 13.8348 9.5498 38.2453 -Georgia.ttf 32 % 41.5772 42.7644 47 D 1.1213 38.0914 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 48 L 1.2122 32.4730 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 49 y 13.7033 30.7403 40.8318 -Georgia.ttf 32 % 41.5772 42.7644 50 ‘ -1.6463 8.3588 15.1682 -Georgia.ttf 32 % 41.5772 42.7644 51 \ -1.4947 23.2770 55.3045 -Georgia.ttf 32 % 41.5772 42.7644 52 R 0.9857 39.2597 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 53 < 10.0367 26.4279 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 54 4 10.2492 29.8448 41.7500 -Georgia.ttf 32 % 41.5772 42.7644 55 8 0.1928 28.7227 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 56 0 10.0074 29.8910 32.6730 -Georgia.ttf 32 % 41.5772 42.7644 57 A 1.0839 41.5962 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 58 E 1.3097 34.7056 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 59 B 1.0316 32.7646 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 60 v 13.8265 30.7403 28.0000 -Georgia.ttf 32 % 41.5772 42.7644 61 k -2.5832 31.4820 44.3365 -Georgia.ttf 32 % 41.5772 42.7644 62 J 1.4496 29.0144 41.5962 -Georgia.ttf 32 % 41.5772 42.7644 63 U 1.2123 42.2189 41.5962 -Georgia.ttf 32 % 41.5772 42.7644 64 j -2.1483 16.3365 56.6766 -Georgia.ttf 32 % 41.5772 42.7644 65 ( -1.8885 16.5865 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 66 7 11.4429 26.5818 40.5818 -Georgia.ttf 32 % 41.5772 42.7644 67 § -0.1807 22.5588 48.8094 -Georgia.ttf 32 % 41.5772 42.7644 68 $ -2.3205 27.3045 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 69 € 0.1879 36.6315 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 70 / -1.5786 23.2770 55.3045 -Georgia.ttf 32 % 41.5772 42.7644 71 C 0.0162 34.2950 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 72 * -0.0932 22.6315 19.9723 -Georgia.ttf 32 % 41.5772 42.7644 73 ” -1.6053 18.8041 15.1682 -Georgia.ttf 32 % 41.5772 42.7644 74 ? 0.3464 22.2277 42.0000 -Georgia.ttf 32 % 41.5772 42.7644 75 { -1.6147 21.2133 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 76 } -1.4125 21.2133 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 77 , 34.4416 9.5498 17.3047 -Georgia.ttf 32 % 41.5772 42.7644 78 I 1.1850 18.1351 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 79 ° -0.0042 18.4730 18.4730 -Georgia.ttf 32 % 41.5772 42.7644 80 K 1.3002 39.2597 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 81 H 1.3917 41.8878 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 82 q 11.0769 30.8903 43.1682 -Georgia.ttf 32 % 41.5772 42.7644 83 & 0.0677 39.2597 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 84 ’ -1.5981 8.3588 15.1682 -Georgia.ttf 32 % 41.5772 42.7644 85 [ -1.8209 15.1682 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 86 - 23.5427 17.0320 4.4730 -Georgia.ttf 32 % 41.5772 42.7644 87 Y 1.2976 38.9680 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 88 Q -0.2046 38.4953 52.5642 -Georgia.ttf 32 % 41.5772 42.7644 89 " -1.6788 17.7547 16.3365 -Georgia.ttf 32 % 41.5772 42.7644 90 ! -0.0790 7.9550 42.7644 -Georgia.ttf 32 % 41.5772 42.7644 91 x 13.3876 29.1682 28.0000 -Georgia.ttf 32 % 41.5772 42.7644 92 ) -2.1148 16.5865 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 93 = 18.4734 29.1682 14.4500 -Georgia.ttf 32 % 41.5772 42.7644 94 + 11.1927 29.4182 29.4182 -Georgia.ttf 32 % 41.5772 42.7644 95 X 0.6658 41.5962 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 96 » 15.0063 23.9998 23.2770 -Georgia.ttf 32 % 41.5772 42.7644 97 ' -1.3659 6.7867 16.3365 -Georgia.ttf 32 % 41.5772 42.7644 98 ¢ 5.2833 25.8241 44.7403 -Georgia.ttf 32 % 41.5772 42.7644 99 Z 1.0538 33.6912 40.4279 -Georgia.ttf 32 % 41.5772 42.7644 100 > 10.2904 26.4279 30.3365 -Georgia.ttf 32 % 41.5772 42.7644 101 ® -0.5864 50.3815 50.3815 -Georgia.ttf 32 % 41.5772 42.7644 102 © -0.1661 50.3815 50.3815 -Georgia.ttf 32 % 41.5772 42.7644 103 ] -1.5628 15.1682 52.4453 -Georgia.ttf 32 % 41.5772 42.7644 104 é -1.9477 24.6953 44.8092 -Georgia.ttf 32 % 41.5772 42.7644 105 z 13.4978 23.0270 28.0000 -Georgia.ttf 32 % 41.5772 42.7644 106 _ 46.6698 37.5498 2.7403 -Georgia.ttf 32 % 41.5772 42.7644 107 ¥ 1.2325 37.0770 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 1 t 4.7573 18.7851 38.0914 -Georgia.ttf 33 £ 30.0448 41.5962 2 h -2.6301 31.5237 44.3365 -Georgia.ttf 33 £ 30.0448 41.5962 3 a 12.5031 25.6635 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 4 n 12.5924 31.5237 29.1682 -Georgia.ttf 33 £ 30.0448 41.5962 5 P 1.2040 31.6236 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 6 o 12.4367 27.2318 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 7 e 12.2803 24.6953 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 8 : 13.8687 7.9550 28.4038 -Georgia.ttf 33 £ 30.0448 41.5962 9 r 12.4598 21.9550 29.1682 -Georgia.ttf 33 £ 30.0448 41.5962 10 l -2.9571 14.8955 44.3365 -Georgia.ttf 33 £ 30.0448 41.5962 11 i -2.4274 14.3538 43.8448 -Georgia.ttf 33 £ 30.0448 41.5962 12 1 10.3418 19.8912 31.5047 -Georgia.ttf 33 £ 30.0448 41.5962 13 | -2.2130 3.7547 55.3045 -Georgia.ttf 33 £ 30.0448 41.5962 14 N 1.4225 42.0727 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 15 f -2.5018 22.1088 44.3365 -Georgia.ttf 33 £ 30.0448 41.5962 16 g 12.0479 27.2356 42.0000 -Georgia.ttf 33 £ 30.0448 41.5962 17 d -2.8820 30.9403 45.5047 -Georgia.ttf 33 £ 30.0448 41.5962 18 W 0.9285 58.3365 40.6779 -Georgia.ttf 33 £ 30.0448 41.5962 19 s 12.4238 20.9867 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 20 c 12.5725 24.1536 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 21 u 12.3092 31.5237 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 22 3 10.1600 27.3045 41.7500 -Georgia.ttf 33 £ 30.0448 41.5962 23 ~ 20.2217 30.0403 10.4453 -Georgia.ttf 33 £ 30.0448 41.5962 24 # 6.6798 29.1872 35.0594 -Georgia.ttf 33 £ 30.0448 41.5962 25 O 0.0812 38.4953 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 26 ` -2.1865 11.6635 12.1362 -Georgia.ttf 33 £ 30.0448 41.5962 27 @ 2.3829 44.6903 47.8912 -Georgia.ttf 33 £ 30.0448 41.5962 28 F 1.2627 31.6736 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 29 S 0.0292 28.0000 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 30 p 12.2344 30.2638 42.0000 -Georgia.ttf 33 £ 30.0448 41.5962 31 “ -1.5382 18.8041 15.1682 -Georgia.ttf 33 £ 30.0448 41.5962 32 % 0.1533 41.5772 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 33 £ -0.0620 30.0448 41.5962 -Georgia.ttf 33 £ 30.0448 41.5962 34 . 34.2891 7.9550 7.9550 -Georgia.ttf 33 £ 30.0448 41.5962 35 2 9.8874 26.4090 31.5047 -Georgia.ttf 33 £ 30.0448 41.5962 36 5 11.2708 26.8318 40.5818 -Georgia.ttf 33 £ 30.0448 41.5962 37 m 12.6260 48.0867 29.1682 -Georgia.ttf 33 £ 30.0448 41.5962 38 V 1.5630 41.3045 40.6779 -Georgia.ttf 33 £ 30.0448 41.5962 39 6 0.1265 27.7083 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 40 w 13.4335 44.3365 28.0000 -Georgia.ttf 33 £ 30.0448 41.5962 41 T 1.3295 36.3815 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 42 M 1.3282 49.8549 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 43 G 0.1645 39.4135 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 44 b -2.9149 31.0781 46.4730 -Georgia.ttf 33 £ 30.0448 41.5962 45 9 9.8625 27.7083 41.9500 -Georgia.ttf 33 £ 30.0448 41.5962 46 ; 13.4320 9.5498 38.2453 -Georgia.ttf 33 £ 30.0448 41.5962 47 D 1.3218 38.0914 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 48 L 1.1450 32.4730 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 49 y 13.4365 30.7403 40.8318 -Georgia.ttf 33 £ 30.0448 41.5962 50 ‘ -1.7574 8.3588 15.1682 -Georgia.ttf 33 £ 30.0448 41.5962 51 \ -1.5371 23.2770 55.3045 -Georgia.ttf 33 £ 30.0448 41.5962 52 R 0.9120 39.2597 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 53 < 10.4565 26.4279 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 54 4 9.9382 29.8448 41.7500 -Georgia.ttf 33 £ 30.0448 41.5962 55 8 -0.2021 28.7227 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 56 0 9.8143 29.8910 32.6730 -Georgia.ttf 33 £ 30.0448 41.5962 57 A 1.2242 41.5962 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 58 E 1.0787 34.7056 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 59 B 1.2193 32.7646 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 60 v 13.5668 30.7403 28.0000 -Georgia.ttf 33 £ 30.0448 41.5962 61 k -2.8076 31.4820 44.3365 -Georgia.ttf 33 £ 30.0448 41.5962 62 J 0.9537 29.0144 41.5962 -Georgia.ttf 33 £ 30.0448 41.5962 63 U 1.0825 42.2189 41.5962 -Georgia.ttf 33 £ 30.0448 41.5962 64 j -1.9520 16.3365 56.6766 -Georgia.ttf 33 £ 30.0448 41.5962 65 ( -1.3636 16.5865 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 66 7 11.1215 26.5818 40.5818 -Georgia.ttf 33 £ 30.0448 41.5962 67 § -0.0990 22.5588 48.8094 -Georgia.ttf 33 £ 30.0448 41.5962 68 $ -2.5326 27.3045 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 69 € 0.0500 36.6315 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 70 / -1.5661 23.2770 55.3045 -Georgia.ttf 33 £ 30.0448 41.5962 71 C -0.0032 34.2950 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 72 * 0.1911 22.6315 19.9723 -Georgia.ttf 33 £ 30.0448 41.5962 73 ” -1.5259 18.8041 15.1682 -Georgia.ttf 33 £ 30.0448 41.5962 74 ? -0.2414 22.2277 42.0000 -Georgia.ttf 33 £ 30.0448 41.5962 75 { -1.4996 21.2133 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 76 } -1.4947 21.2133 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 77 , 34.4496 9.5498 17.3047 -Georgia.ttf 33 £ 30.0448 41.5962 78 I 1.1678 18.1351 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 79 ° 0.1888 18.4730 18.4730 -Georgia.ttf 33 £ 30.0448 41.5962 80 K 1.0921 39.2597 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 81 H 1.1502 41.8878 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 82 q 11.2387 30.8903 43.1682 -Georgia.ttf 33 £ 30.0448 41.5962 83 & 0.3620 39.2597 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 84 ’ -1.5266 8.3588 15.1682 -Georgia.ttf 33 £ 30.0448 41.5962 85 [ -1.6437 15.1682 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 86 - 23.7554 17.0320 4.4730 -Georgia.ttf 33 £ 30.0448 41.5962 87 Y 0.7634 38.9680 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 88 Q -0.0774 38.4953 52.5642 -Georgia.ttf 33 £ 30.0448 41.5962 89 " -1.4854 17.7547 16.3365 -Georgia.ttf 33 £ 30.0448 41.5962 90 ! -0.0301 7.9550 42.7644 -Georgia.ttf 33 £ 30.0448 41.5962 91 x 13.3114 29.1682 28.0000 -Georgia.ttf 33 £ 30.0448 41.5962 92 ) -1.6110 16.5865 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 93 = 18.2267 29.1682 14.4500 -Georgia.ttf 33 £ 30.0448 41.5962 94 + 10.9670 29.4182 29.4182 -Georgia.ttf 33 £ 30.0448 41.5962 95 X 1.3188 41.5962 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 96 » 14.9959 23.9998 23.2770 -Georgia.ttf 33 £ 30.0448 41.5962 97 ' -1.5841 6.7867 16.3365 -Georgia.ttf 33 £ 30.0448 41.5962 98 ¢ 5.2049 25.8241 44.7403 -Georgia.ttf 33 £ 30.0448 41.5962 99 Z 1.1927 33.6912 40.4279 -Georgia.ttf 33 £ 30.0448 41.5962 100 > 10.3869 26.4279 30.3365 -Georgia.ttf 33 £ 30.0448 41.5962 101 ® -0.6445 50.3815 50.3815 -Georgia.ttf 33 £ 30.0448 41.5962 102 © -0.1599 50.3815 50.3815 -Georgia.ttf 33 £ 30.0448 41.5962 103 ] -1.3728 15.1682 52.4453 -Georgia.ttf 33 £ 30.0448 41.5962 104 é -2.2845 24.6953 44.8092 -Georgia.ttf 33 £ 30.0448 41.5962 105 z 13.4033 23.0270 28.0000 -Georgia.ttf 33 £ 30.0448 41.5962 106 _ 46.5840 37.5498 2.7403 -Georgia.ttf 33 £ 30.0448 41.5962 107 ¥ 0.9653 37.0770 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 1 t -29.2850 18.7851 38.0914 -Georgia.ttf 34 . 7.9550 7.9550 2 h -36.7042 31.5237 44.3365 -Georgia.ttf 34 . 7.9550 7.9550 3 a -21.5392 25.6635 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 4 n -21.8025 31.5237 29.1682 -Georgia.ttf 34 . 7.9550 7.9550 5 P -32.8671 31.6236 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 6 o -21.7167 27.2318 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 7 e -21.6556 24.6953 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 8 : -20.2607 7.9550 28.4038 -Georgia.ttf 34 . 7.9550 7.9550 9 r -21.6588 21.9550 29.1682 -Georgia.ttf 34 . 7.9550 7.9550 10 l -36.6273 14.8955 44.3365 -Georgia.ttf 34 . 7.9550 7.9550 11 i -36.2762 14.3538 43.8448 -Georgia.ttf 34 . 7.9550 7.9550 12 1 -23.8346 19.8912 31.5047 -Georgia.ttf 34 . 7.9550 7.9550 13 | -35.7847 3.7547 55.3045 -Georgia.ttf 34 . 7.9550 7.9550 14 N -32.9625 42.0727 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 15 f -36.6997 22.1088 44.3365 -Georgia.ttf 34 . 7.9550 7.9550 16 g -21.6886 27.2356 42.0000 -Georgia.ttf 34 . 7.9550 7.9550 17 d -36.7951 30.9403 45.5047 -Georgia.ttf 34 . 7.9550 7.9550 18 W -32.7572 58.3365 40.6779 -Georgia.ttf 34 . 7.9550 7.9550 19 s -21.6171 20.9867 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 20 c -21.4822 24.1536 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 21 u -21.5443 31.5237 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 22 3 -23.8622 27.3045 41.7500 -Georgia.ttf 34 . 7.9550 7.9550 23 ~ -13.6205 30.0403 10.4453 -Georgia.ttf 34 . 7.9550 7.9550 24 # -27.2826 29.1872 35.0594 -Georgia.ttf 34 . 7.9550 7.9550 25 O -33.8722 38.4953 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 26 ` -36.0482 11.6635 12.1362 -Georgia.ttf 34 . 7.9550 7.9550 27 @ -31.4127 44.6903 47.8912 -Georgia.ttf 34 . 7.9550 7.9550 28 F -33.0594 31.6736 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 29 S -34.1581 28.0000 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 30 p -21.6171 30.2638 42.0000 -Georgia.ttf 34 . 7.9550 7.9550 31 “ -35.6648 18.8041 15.1682 -Georgia.ttf 34 . 7.9550 7.9550 32 % -33.8050 41.5772 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 33 £ -33.9703 30.0448 41.5962 -Georgia.ttf 34 . 7.9550 7.9550 34 . 0.0357 7.9550 7.9550 -Georgia.ttf 34 . 7.9550 7.9550 35 2 -23.9953 26.4090 31.5047 -Georgia.ttf 34 . 7.9550 7.9550 36 5 -22.7721 26.8318 40.5818 -Georgia.ttf 34 . 7.9550 7.9550 37 m -21.7812 48.0867 29.1682 -Georgia.ttf 34 . 7.9550 7.9550 38 V -32.9964 41.3045 40.6779 -Georgia.ttf 34 . 7.9550 7.9550 39 6 -33.9649 27.7083 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 40 w -20.4856 44.3365 28.0000 -Georgia.ttf 34 . 7.9550 7.9550 41 T -33.0094 36.3815 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 42 M -32.9580 49.8549 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 43 G -34.1262 39.4135 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 44 b -36.8868 31.0781 46.4730 -Georgia.ttf 34 . 7.9550 7.9550 45 9 -23.7593 27.7083 41.9500 -Georgia.ttf 34 . 7.9550 7.9550 46 ; -20.6917 9.5498 38.2453 -Georgia.ttf 34 . 7.9550 7.9550 47 D -32.8050 38.0914 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 48 L -33.0629 32.4730 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 49 y -20.3775 30.7403 40.8318 -Georgia.ttf 34 . 7.9550 7.9550 50 ‘ -35.6133 8.3588 15.1682 -Georgia.ttf 34 . 7.9550 7.9550 51 \ -35.6538 23.2770 55.3045 -Georgia.ttf 34 . 7.9550 7.9550 52 R -32.9098 39.2597 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 53 < -24.0136 26.4279 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 54 4 -24.0695 29.8448 41.7500 -Georgia.ttf 34 . 7.9550 7.9550 55 8 -34.1258 28.7227 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 56 0 -23.6282 29.8910 32.6730 -Georgia.ttf 34 . 7.9550 7.9550 57 A -32.8865 41.5962 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 58 E -33.0871 34.7056 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 59 B -32.7480 32.7646 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 60 v -20.4554 30.7403 28.0000 -Georgia.ttf 34 . 7.9550 7.9550 61 k -36.6213 31.4820 44.3365 -Georgia.ttf 34 . 7.9550 7.9550 62 J -33.0492 29.0144 41.5962 -Georgia.ttf 34 . 7.9550 7.9550 63 U -32.8887 42.2189 41.5962 -Georgia.ttf 34 . 7.9550 7.9550 64 j -36.1407 16.3365 56.6766 -Georgia.ttf 34 . 7.9550 7.9550 65 ( -35.8182 16.5865 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 66 7 -22.7454 26.5818 40.5818 -Georgia.ttf 34 . 7.9550 7.9550 67 § -33.9222 22.5588 48.8094 -Georgia.ttf 34 . 7.9550 7.9550 68 $ -36.5354 27.3045 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 69 € -33.9681 36.6315 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 70 / -35.4733 23.2770 55.3045 -Georgia.ttf 34 . 7.9550 7.9550 71 C -34.1405 34.2950 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 72 * -34.0450 22.6315 19.9723 -Georgia.ttf 34 . 7.9550 7.9550 73 ” -35.5935 18.8041 15.1682 -Georgia.ttf 34 . 7.9550 7.9550 74 ? -34.0840 22.2277 42.0000 -Georgia.ttf 34 . 7.9550 7.9550 75 { -35.7844 21.2133 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 76 } -35.6685 21.2133 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 77 , 0.4449 9.5498 17.3047 -Georgia.ttf 34 . 7.9550 7.9550 78 I -32.8554 18.1351 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 79 ° -34.0845 18.4730 18.4730 -Georgia.ttf 34 . 7.9550 7.9550 80 K -32.7532 39.2597 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 81 H -32.8566 41.8878 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 82 q -22.9165 30.8903 43.1682 -Georgia.ttf 34 . 7.9550 7.9550 83 & -33.7058 39.2597 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 84 ’ -35.5717 8.3588 15.1682 -Georgia.ttf 34 . 7.9550 7.9550 85 [ -35.7389 15.1682 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 86 - -9.7931 17.0320 4.4730 -Georgia.ttf 34 . 7.9550 7.9550 87 Y -32.8768 38.9680 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 88 Q -34.0867 38.4953 52.5642 -Georgia.ttf 34 . 7.9550 7.9550 89 " -35.4826 17.7547 16.3365 -Georgia.ttf 34 . 7.9550 7.9550 90 ! -33.8161 7.9550 42.7644 -Georgia.ttf 34 . 7.9550 7.9550 91 x -20.4136 29.1682 28.0000 -Georgia.ttf 34 . 7.9550 7.9550 92 ) -35.3876 16.5865 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 93 = -15.3576 29.1682 14.4500 -Georgia.ttf 34 . 7.9550 7.9550 94 + -23.3125 29.4182 29.4182 -Georgia.ttf 34 . 7.9550 7.9550 95 X -32.9723 41.5962 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 96 » -19.0307 23.9998 23.2770 -Georgia.ttf 34 . 7.9550 7.9550 97 ' -35.5481 6.7867 16.3365 -Georgia.ttf 34 . 7.9550 7.9550 98 ¢ -28.7433 25.8241 44.7403 -Georgia.ttf 34 . 7.9550 7.9550 99 Z -32.8397 33.6912 40.4279 -Georgia.ttf 34 . 7.9550 7.9550 100 > -23.6679 26.4279 30.3365 -Georgia.ttf 34 . 7.9550 7.9550 101 ® -34.4489 50.3815 50.3815 -Georgia.ttf 34 . 7.9550 7.9550 102 © -34.3026 50.3815 50.3815 -Georgia.ttf 34 . 7.9550 7.9550 103 ] -35.7028 15.1682 52.4453 -Georgia.ttf 34 . 7.9550 7.9550 104 é -36.0454 24.6953 44.8092 -Georgia.ttf 34 . 7.9550 7.9550 105 z -20.6217 23.0270 28.0000 -Georgia.ttf 34 . 7.9550 7.9550 106 _ 12.7059 37.5498 2.7403 -Georgia.ttf 34 . 7.9550 7.9550 107 ¥ -32.9580 37.0770 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 1 t -5.3712 18.7851 38.0914 -Georgia.ttf 35 2 26.4090 31.5047 2 h -13.1191 31.5237 44.3365 -Georgia.ttf 35 2 26.4090 31.5047 3 a 2.3639 25.6635 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 4 n 2.3008 31.5237 29.1682 -Georgia.ttf 35 2 26.4090 31.5047 5 P -8.8945 31.6236 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 6 o 2.3675 27.2318 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 7 e 2.2008 24.6953 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 8 : 3.4268 7.9550 28.4038 -Georgia.ttf 35 2 26.4090 31.5047 9 r 2.1627 21.9550 29.1682 -Georgia.ttf 35 2 26.4090 31.5047 10 l -12.7589 14.8955 44.3365 -Georgia.ttf 35 2 26.4090 31.5047 11 i -12.3544 14.3538 43.8448 -Georgia.ttf 35 2 26.4090 31.5047 12 1 0.2956 19.8912 31.5047 -Georgia.ttf 35 2 26.4090 31.5047 13 | -11.8724 3.7547 55.3045 -Georgia.ttf 35 2 26.4090 31.5047 14 N -8.9246 42.0727 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 15 f -12.8001 22.1088 44.3365 -Georgia.ttf 35 2 26.4090 31.5047 16 g 2.2448 27.2356 42.0000 -Georgia.ttf 35 2 26.4090 31.5047 17 d -12.6279 30.9403 45.5047 -Georgia.ttf 35 2 26.4090 31.5047 18 W -8.9680 58.3365 40.6779 -Georgia.ttf 35 2 26.4090 31.5047 19 s 2.4742 20.9867 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 20 c 2.5228 24.1536 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 21 u 2.2365 31.5237 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 22 3 -0.0816 27.3045 41.7500 -Georgia.ttf 35 2 26.4090 31.5047 23 ~ 10.3626 30.0403 10.4453 -Georgia.ttf 35 2 26.4090 31.5047 24 # -3.6404 29.1872 35.0594 -Georgia.ttf 35 2 26.4090 31.5047 25 O -10.1328 38.4953 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 26 ` -12.2519 11.6635 12.1362 -Georgia.ttf 35 2 26.4090 31.5047 27 @ -7.4321 44.6903 47.8912 -Georgia.ttf 35 2 26.4090 31.5047 28 F -9.0780 31.6736 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 29 S -9.9378 28.0000 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 30 p 2.3410 30.2638 42.0000 -Georgia.ttf 35 2 26.4090 31.5047 31 “ -11.7584 18.8041 15.1682 -Georgia.ttf 35 2 26.4090 31.5047 32 % -10.0572 41.5772 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 33 £ -9.7708 30.0448 41.5962 -Georgia.ttf 35 2 26.4090 31.5047 34 . 24.1510 7.9550 7.9550 -Georgia.ttf 35 2 26.4090 31.5047 35 2 -0.3216 26.4090 31.5047 -Georgia.ttf 35 2 26.4090 31.5047 36 5 0.8557 26.8318 40.5818 -Georgia.ttf 35 2 26.4090 31.5047 37 m 2.2907 48.0867 29.1682 -Georgia.ttf 35 2 26.4090 31.5047 38 V -9.1569 41.3045 40.6779 -Georgia.ttf 35 2 26.4090 31.5047 39 6 -10.0960 27.7083 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 40 w 3.3346 44.3365 28.0000 -Georgia.ttf 35 2 26.4090 31.5047 41 T -9.0103 36.3815 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 42 M -8.8677 49.8549 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 43 G -10.2954 39.4135 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 44 b -12.6442 31.0781 46.4730 -Georgia.ttf 35 2 26.4090 31.5047 45 9 0.1635 27.7083 41.9500 -Georgia.ttf 35 2 26.4090 31.5047 46 ; 3.4821 9.5498 38.2453 -Georgia.ttf 35 2 26.4090 31.5047 47 D -8.5380 38.0914 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 48 L -8.9248 32.4730 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 49 y 3.6520 30.7403 40.8318 -Georgia.ttf 35 2 26.4090 31.5047 50 ‘ -11.7367 8.3588 15.1682 -Georgia.ttf 35 2 26.4090 31.5047 51 \ -11.5978 23.2770 55.3045 -Georgia.ttf 35 2 26.4090 31.5047 52 R -8.9547 39.2597 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 53 < 0.0141 26.4279 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 54 4 0.1040 29.8448 41.7500 -Georgia.ttf 35 2 26.4090 31.5047 55 8 -10.0438 28.7227 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 56 0 0.1148 29.8910 32.6730 -Georgia.ttf 35 2 26.4090 31.5047 57 A -8.9614 41.5962 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 58 E -9.1712 34.7056 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 59 B -9.1123 32.7646 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 60 v 3.6762 30.7403 28.0000 -Georgia.ttf 35 2 26.4090 31.5047 61 k -12.7960 31.4820 44.3365 -Georgia.ttf 35 2 26.4090 31.5047 62 J -8.6262 29.0144 41.5962 -Georgia.ttf 35 2 26.4090 31.5047 63 U -8.5863 42.2189 41.5962 -Georgia.ttf 35 2 26.4090 31.5047 64 j -12.5486 16.3365 56.6766 -Georgia.ttf 35 2 26.4090 31.5047 65 ( -11.9022 16.5865 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 66 7 1.1682 26.5818 40.5818 -Georgia.ttf 35 2 26.4090 31.5047 67 § -10.1688 22.5588 48.8094 -Georgia.ttf 35 2 26.4090 31.5047 68 $ -12.3888 27.3045 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 69 € -10.2061 36.6315 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 70 / -11.6316 23.2770 55.3045 -Georgia.ttf 35 2 26.4090 31.5047 71 C -10.0057 34.2950 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 72 * -10.0932 22.6315 19.9723 -Georgia.ttf 35 2 26.4090 31.5047 73 ” -11.6794 18.8041 15.1682 -Georgia.ttf 35 2 26.4090 31.5047 74 ? -10.3032 22.2277 42.0000 -Georgia.ttf 35 2 26.4090 31.5047 75 { -11.5193 21.2133 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 76 } -11.5893 21.2133 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 77 , 24.4939 9.5498 17.3047 -Georgia.ttf 35 2 26.4090 31.5047 78 I -9.0890 18.1351 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 79 ° -10.0003 18.4730 18.4730 -Georgia.ttf 35 2 26.4090 31.5047 80 K -8.9232 39.2597 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 81 H -9.0775 41.8878 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 82 q 1.2377 30.8903 43.1682 -Georgia.ttf 35 2 26.4090 31.5047 83 & -10.0844 39.2597 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 84 ’ -11.6106 8.3588 15.1682 -Georgia.ttf 35 2 26.4090 31.5047 85 [ -11.7534 15.1682 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 86 - 13.7202 17.0320 4.4730 -Georgia.ttf 35 2 26.4090 31.5047 87 Y -9.0953 38.9680 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 88 Q -10.2143 38.4953 52.5642 -Georgia.ttf 35 2 26.4090 31.5047 89 " -11.7605 17.7547 16.3365 -Georgia.ttf 35 2 26.4090 31.5047 90 ! -10.1864 7.9550 42.7644 -Georgia.ttf 35 2 26.4090 31.5047 91 x 3.6920 29.1682 28.0000 -Georgia.ttf 35 2 26.4090 31.5047 92 ) -11.4963 16.5865 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 93 = 8.5303 29.1682 14.4500 -Georgia.ttf 35 2 26.4090 31.5047 94 + 0.7083 29.4182 29.4182 -Georgia.ttf 35 2 26.4090 31.5047 95 X -8.8476 41.5962 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 96 » 4.6410 23.9998 23.2770 -Georgia.ttf 35 2 26.4090 31.5047 97 ' -11.6821 6.7867 16.3365 -Georgia.ttf 35 2 26.4090 31.5047 98 ¢ -4.5701 25.8241 44.7403 -Georgia.ttf 35 2 26.4090 31.5047 99 Z -9.0439 33.6912 40.4279 -Georgia.ttf 35 2 26.4090 31.5047 100 > 0.3224 26.4279 30.3365 -Georgia.ttf 35 2 26.4090 31.5047 101 ® -10.5310 50.3815 50.3815 -Georgia.ttf 35 2 26.4090 31.5047 102 © -10.4705 50.3815 50.3815 -Georgia.ttf 35 2 26.4090 31.5047 103 ] -11.4545 15.1682 52.4453 -Georgia.ttf 35 2 26.4090 31.5047 104 é -12.1408 24.6953 44.8092 -Georgia.ttf 35 2 26.4090 31.5047 105 z 3.5766 23.0270 28.0000 -Georgia.ttf 35 2 26.4090 31.5047 106 _ 36.6732 37.5498 2.7403 -Georgia.ttf 35 2 26.4090 31.5047 107 ¥ -8.7689 37.0770 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 1 t -6.2337 18.7851 38.0914 -Georgia.ttf 36 5 26.8318 40.5818 2 h -13.8465 31.5237 44.3365 -Georgia.ttf 36 5 26.8318 40.5818 3 a 1.0366 25.6635 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 4 n 1.0811 31.5237 29.1682 -Georgia.ttf 36 5 26.8318 40.5818 5 P -10.2188 31.6236 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 6 o 1.1538 27.2318 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 7 e 1.0611 24.6953 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 8 : 2.1339 7.9550 28.4038 -Georgia.ttf 36 5 26.8318 40.5818 9 r 1.0359 21.9550 29.1682 -Georgia.ttf 36 5 26.8318 40.5818 10 l -13.6961 14.8955 44.3365 -Georgia.ttf 36 5 26.8318 40.5818 11 i -13.6826 14.3538 43.8448 -Georgia.ttf 36 5 26.8318 40.5818 12 1 -1.2006 19.8912 31.5047 -Georgia.ttf 36 5 26.8318 40.5818 13 | -12.8700 3.7547 55.3045 -Georgia.ttf 36 5 26.8318 40.5818 14 N -9.8038 42.0727 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 15 f -14.0324 22.1088 44.3365 -Georgia.ttf 36 5 26.8318 40.5818 16 g 0.7410 27.2356 42.0000 -Georgia.ttf 36 5 26.8318 40.5818 17 d -14.2215 30.9403 45.5047 -Georgia.ttf 36 5 26.8318 40.5818 18 W -10.0914 58.3365 40.6779 -Georgia.ttf 36 5 26.8318 40.5818 19 s 1.3424 20.9867 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 20 c 1.1353 24.1536 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 21 u 1.2271 31.5237 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 22 3 -1.2897 27.3045 41.7500 -Georgia.ttf 36 5 26.8318 40.5818 23 ~ 9.0504 30.0403 10.4453 -Georgia.ttf 36 5 26.8318 40.5818 24 # -4.7971 29.1872 35.0594 -Georgia.ttf 36 5 26.8318 40.5818 25 O -11.4397 38.4953 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 26 ` -13.1789 11.6635 12.1362 -Georgia.ttf 36 5 26.8318 40.5818 27 @ -8.8082 44.6903 47.8912 -Georgia.ttf 36 5 26.8318 40.5818 28 F -10.2614 31.6736 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 29 S -11.2537 28.0000 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 30 p 0.8601 30.2638 42.0000 -Georgia.ttf 36 5 26.8318 40.5818 31 “ -12.8280 18.8041 15.1682 -Georgia.ttf 36 5 26.8318 40.5818 32 % -11.3570 41.5772 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 33 £ -11.2542 30.0448 41.5962 -Georgia.ttf 36 5 26.8318 40.5818 34 . 22.7937 7.9550 7.9550 -Georgia.ttf 36 5 26.8318 40.5818 35 2 -0.8911 26.4090 31.5047 -Georgia.ttf 36 5 26.8318 40.5818 36 5 -0.0812 26.8318 40.5818 -Georgia.ttf 36 5 26.8318 40.5818 37 m 1.3225 48.0867 29.1682 -Georgia.ttf 36 5 26.8318 40.5818 38 V -10.0984 41.3045 40.6779 -Georgia.ttf 36 5 26.8318 40.5818 39 6 -11.2463 27.7083 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 40 w 2.0253 44.3365 28.0000 -Georgia.ttf 36 5 26.8318 40.5818 41 T -9.9817 36.3815 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 42 M -9.9286 49.8549 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 43 G -11.5021 39.4135 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 44 b -13.8415 31.0781 46.4730 -Georgia.ttf 36 5 26.8318 40.5818 45 9 -1.0454 27.7083 41.9500 -Georgia.ttf 36 5 26.8318 40.5818 46 ; 2.3924 9.5498 38.2453 -Georgia.ttf 36 5 26.8318 40.5818 47 D -10.2143 38.0914 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 48 L -9.8073 32.4730 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 49 y 2.2906 30.7403 40.8318 -Georgia.ttf 36 5 26.8318 40.5818 50 ‘ -12.7706 8.3588 15.1682 -Georgia.ttf 36 5 26.8318 40.5818 51 \ -12.5770 23.2770 55.3045 -Georgia.ttf 36 5 26.8318 40.5818 52 R -10.1726 39.2597 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 53 < -0.7768 26.4279 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 54 4 -1.2456 29.8448 41.7500 -Georgia.ttf 36 5 26.8318 40.5818 55 8 -11.5427 28.7227 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 56 0 -0.9837 29.8910 32.6730 -Georgia.ttf 36 5 26.8318 40.5818 57 A -9.6807 41.5962 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 58 E -9.8797 34.7056 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 59 B -10.2643 32.7646 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 60 v 2.4496 30.7403 28.0000 -Georgia.ttf 36 5 26.8318 40.5818 61 k -13.8772 31.4820 44.3365 -Georgia.ttf 36 5 26.8318 40.5818 62 J -9.8133 29.0144 41.5962 -Georgia.ttf 36 5 26.8318 40.5818 63 U -9.9305 42.2189 41.5962 -Georgia.ttf 36 5 26.8318 40.5818 64 j -13.7280 16.3365 56.6766 -Georgia.ttf 36 5 26.8318 40.5818 65 ( -12.8730 16.5865 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 66 7 0.0812 26.5818 40.5818 -Georgia.ttf 36 5 26.8318 40.5818 67 § -11.0868 22.5588 48.8094 -Georgia.ttf 36 5 26.8318 40.5818 68 $ -13.6785 27.3045 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 69 € -11.3510 36.6315 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 70 / -12.9175 23.2770 55.3045 -Georgia.ttf 36 5 26.8318 40.5818 71 C -11.0213 34.2950 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 72 * -11.2481 22.6315 19.9723 -Georgia.ttf 36 5 26.8318 40.5818 73 ” -12.7516 18.8041 15.1682 -Georgia.ttf 36 5 26.8318 40.5818 74 ? -11.2291 22.2277 42.0000 -Georgia.ttf 36 5 26.8318 40.5818 75 { -12.9482 21.2133 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 76 } -13.0500 21.2133 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 77 , 23.3734 9.5498 17.3047 -Georgia.ttf 36 5 26.8318 40.5818 78 I -9.8538 18.1351 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 79 ° -11.4105 18.4730 18.4730 -Georgia.ttf 36 5 26.8318 40.5818 80 K -10.3477 39.2597 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 81 H -10.1323 41.8878 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 82 q -0.0643 30.8903 43.1682 -Georgia.ttf 36 5 26.8318 40.5818 83 & -11.4742 39.2597 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 84 ’ -12.9272 8.3588 15.1682 -Georgia.ttf 36 5 26.8318 40.5818 85 [ -12.8573 15.1682 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 86 - 12.6077 17.0320 4.4730 -Georgia.ttf 36 5 26.8318 40.5818 87 Y -10.0659 38.9680 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 88 Q -11.5269 38.4953 52.5642 -Georgia.ttf 36 5 26.8318 40.5818 89 " -12.9175 17.7547 16.3365 -Georgia.ttf 36 5 26.8318 40.5818 90 ! -11.3335 7.9550 42.7644 -Georgia.ttf 36 5 26.8318 40.5818 91 x 2.0347 29.1682 28.0000 -Georgia.ttf 36 5 26.8318 40.5818 92 ) -12.8947 16.5865 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 93 = 6.9573 29.1682 14.4500 -Georgia.ttf 36 5 26.8318 40.5818 94 + -0.4228 29.4182 29.4182 -Georgia.ttf 36 5 26.8318 40.5818 95 X -10.0890 41.5962 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 96 » 3.6134 23.9998 23.2770 -Georgia.ttf 36 5 26.8318 40.5818 97 ' -12.9102 6.7867 16.3365 -Georgia.ttf 36 5 26.8318 40.5818 98 ¢ -5.8067 25.8241 44.7403 -Georgia.ttf 36 5 26.8318 40.5818 99 Z -10.2199 33.6912 40.4279 -Georgia.ttf 36 5 26.8318 40.5818 100 > -1.1508 26.4279 30.3365 -Georgia.ttf 36 5 26.8318 40.5818 101 ® -11.4917 50.3815 50.3815 -Georgia.ttf 36 5 26.8318 40.5818 102 © -11.7808 50.3815 50.3815 -Georgia.ttf 36 5 26.8318 40.5818 103 ] -13.0936 15.1682 52.4453 -Georgia.ttf 36 5 26.8318 40.5818 104 é -13.4130 24.6953 44.8092 -Georgia.ttf 36 5 26.8318 40.5818 105 z 2.4107 23.0270 28.0000 -Georgia.ttf 36 5 26.8318 40.5818 106 _ 35.4095 37.5498 2.7403 -Georgia.ttf 36 5 26.8318 40.5818 107 ¥ -10.1453 37.0770 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 1 t -8.0580 18.7851 38.0914 -Georgia.ttf 37 m 48.0867 29.1682 2 h -15.5354 31.5237 44.3365 -Georgia.ttf 37 m 48.0867 29.1682 3 a -0.1202 25.6635 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 4 n 0.0307 31.5237 29.1682 -Georgia.ttf 37 m 48.0867 29.1682 5 P -11.3503 31.6236 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 6 o 0.0125 27.2318 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 7 e 0.4986 24.6953 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 8 : 1.1100 7.9550 28.4038 -Georgia.ttf 37 m 48.0867 29.1682 9 r -0.0658 21.9550 29.1682 -Georgia.ttf 37 m 48.0867 29.1682 10 l -14.9337 14.8955 44.3365 -Georgia.ttf 37 m 48.0867 29.1682 11 i -14.6045 14.3538 43.8448 -Georgia.ttf 37 m 48.0867 29.1682 12 1 -2.2512 19.8912 31.5047 -Georgia.ttf 37 m 48.0867 29.1682 13 | -13.8031 3.7547 55.3045 -Georgia.ttf 37 m 48.0867 29.1682 14 N -11.0137 42.0727 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 15 f -15.1812 22.1088 44.3365 -Georgia.ttf 37 m 48.0867 29.1682 16 g 0.1195 27.2356 42.0000 -Georgia.ttf 37 m 48.0867 29.1682 17 d -14.8104 30.9403 45.5047 -Georgia.ttf 37 m 48.0867 29.1682 18 W -11.2236 58.3365 40.6779 -Georgia.ttf 37 m 48.0867 29.1682 19 s -0.3059 20.9867 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 20 c 0.1429 24.1536 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 21 u 0.0399 31.5237 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 22 3 -2.2147 27.3045 41.7500 -Georgia.ttf 37 m 48.0867 29.1682 23 ~ 7.8714 30.0403 10.4453 -Georgia.ttf 37 m 48.0867 29.1682 24 # -6.0845 29.1872 35.0594 -Georgia.ttf 37 m 48.0867 29.1682 25 O -12.5278 38.4953 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 26 ` -14.2921 11.6635 12.1362 -Georgia.ttf 37 m 48.0867 29.1682 27 @ -9.8408 44.6903 47.8912 -Georgia.ttf 37 m 48.0867 29.1682 28 F -11.2281 31.6736 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 29 S -12.2347 28.0000 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 30 p -0.2062 30.2638 42.0000 -Georgia.ttf 37 m 48.0867 29.1682 31 “ -13.9554 18.8041 15.1682 -Georgia.ttf 37 m 48.0867 29.1682 32 % -12.8287 41.5772 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 33 £ -12.3659 30.0448 41.5962 -Georgia.ttf 37 m 48.0867 29.1682 34 . 21.6749 7.9550 7.9550 -Georgia.ttf 37 m 48.0867 29.1682 35 2 -2.2264 26.4090 31.5047 -Georgia.ttf 37 m 48.0867 29.1682 36 5 -1.3827 26.8318 40.5818 -Georgia.ttf 37 m 48.0867 29.1682 37 m -0.1081 48.0867 29.1682 -Georgia.ttf 37 m 48.0867 29.1682 38 V -11.5137 41.3045 40.6779 -Georgia.ttf 37 m 48.0867 29.1682 39 6 -12.3817 27.7083 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 40 w 0.9864 44.3365 28.0000 -Georgia.ttf 37 m 48.0867 29.1682 41 T -11.3377 36.3815 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 42 M -11.5747 49.8549 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 43 G -12.6707 39.4135 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 44 b -15.1626 31.0781 46.4730 -Georgia.ttf 37 m 48.0867 29.1682 45 9 -2.5449 27.7083 41.9500 -Georgia.ttf 37 m 48.0867 29.1682 46 ; 0.9797 9.5498 38.2453 -Georgia.ttf 37 m 48.0867 29.1682 47 D -11.4609 38.0914 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 48 L -11.1542 32.4730 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 49 y 0.9860 30.7403 40.8318 -Georgia.ttf 37 m 48.0867 29.1682 50 ‘ -14.0623 8.3588 15.1682 -Georgia.ttf 37 m 48.0867 29.1682 51 \ -13.8563 23.2770 55.3045 -Georgia.ttf 37 m 48.0867 29.1682 52 R -11.3553 39.2597 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 53 < -2.0027 26.4279 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 54 4 -2.7144 29.8448 41.7500 -Georgia.ttf 37 m 48.0867 29.1682 55 8 -12.4835 28.7227 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 56 0 -2.2522 29.8910 32.6730 -Georgia.ttf 37 m 48.0867 29.1682 57 A -11.5020 41.5962 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 58 E -11.1662 34.7056 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 59 B -11.1865 32.7646 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 60 v 0.8833 30.7403 28.0000 -Georgia.ttf 37 m 48.0867 29.1682 61 k -15.1734 31.4820 44.3365 -Georgia.ttf 37 m 48.0867 29.1682 62 J -11.2429 29.0144 41.5962 -Georgia.ttf 37 m 48.0867 29.1682 63 U -11.2142 42.2189 41.5962 -Georgia.ttf 37 m 48.0867 29.1682 64 j -14.5804 16.3365 56.6766 -Georgia.ttf 37 m 48.0867 29.1682 65 ( -13.8182 16.5865 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 66 7 -0.9830 26.5818 40.5818 -Georgia.ttf 37 m 48.0867 29.1682 67 § -12.4252 22.5588 48.8094 -Georgia.ttf 37 m 48.0867 29.1682 68 $ -14.6823 27.3045 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 69 € -12.6478 36.6315 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 70 / -13.9676 23.2770 55.3045 -Georgia.ttf 37 m 48.0867 29.1682 71 C -12.5696 34.2950 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 72 * -12.7111 22.6315 19.9723 -Georgia.ttf 37 m 48.0867 29.1682 73 ” -13.8040 18.8041 15.1682 -Georgia.ttf 37 m 48.0867 29.1682 74 ? -12.6229 22.2277 42.0000 -Georgia.ttf 37 m 48.0867 29.1682 75 { -14.1383 21.2133 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 76 } -14.0783 21.2133 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 77 , 21.8706 9.5498 17.3047 -Georgia.ttf 37 m 48.0867 29.1682 78 I -11.4166 18.1351 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 79 ° -12.3186 18.4730 18.4730 -Georgia.ttf 37 m 48.0867 29.1682 80 K -11.7027 39.2597 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 81 H -11.3871 41.8878 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 82 q -1.1944 30.8903 43.1682 -Georgia.ttf 37 m 48.0867 29.1682 83 & -12.4679 39.2597 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 84 ’ -13.7397 8.3588 15.1682 -Georgia.ttf 37 m 48.0867 29.1682 85 [ -13.9123 15.1682 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 86 - 11.3102 17.0320 4.4730 -Georgia.ttf 37 m 48.0867 29.1682 87 Y -10.9538 38.9680 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 88 Q -12.3253 38.4953 52.5642 -Georgia.ttf 37 m 48.0867 29.1682 89 " -14.1962 17.7547 16.3365 -Georgia.ttf 37 m 48.0867 29.1682 90 ! -12.4975 7.9550 42.7644 -Georgia.ttf 37 m 48.0867 29.1682 91 x 0.9982 29.1682 28.0000 -Georgia.ttf 37 m 48.0867 29.1682 92 ) -13.9346 16.5865 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 93 = 6.3964 29.1682 14.4500 -Georgia.ttf 37 m 48.0867 29.1682 94 + -1.6216 29.4182 29.4182 -Georgia.ttf 37 m 48.0867 29.1682 95 X -11.1715 41.5962 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 96 » 2.3358 23.9998 23.2770 -Georgia.ttf 37 m 48.0867 29.1682 97 ' -13.8887 6.7867 16.3365 -Georgia.ttf 37 m 48.0867 29.1682 98 ¢ -7.2283 25.8241 44.7403 -Georgia.ttf 37 m 48.0867 29.1682 99 Z -11.4407 33.6912 40.4279 -Georgia.ttf 37 m 48.0867 29.1682 100 > -1.6174 26.4279 30.3365 -Georgia.ttf 37 m 48.0867 29.1682 101 ® -12.5965 50.3815 50.3815 -Georgia.ttf 37 m 48.0867 29.1682 102 © -12.7412 50.3815 50.3815 -Georgia.ttf 37 m 48.0867 29.1682 103 ] -13.9903 15.1682 52.4453 -Georgia.ttf 37 m 48.0867 29.1682 104 é -14.0787 24.6953 44.8092 -Georgia.ttf 37 m 48.0867 29.1682 105 z 1.3911 23.0270 28.0000 -Georgia.ttf 37 m 48.0867 29.1682 106 _ 34.1414 37.5498 2.7403 -Georgia.ttf 37 m 48.0867 29.1682 107 ¥ -10.9070 37.0770 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 1 t 3.3137 18.7851 38.0914 -Georgia.ttf 38 V 41.3045 40.6779 2 h -4.0827 31.5237 44.3365 -Georgia.ttf 38 V 41.3045 40.6779 3 a 11.0595 25.6635 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 4 n 11.2010 31.5237 29.1682 -Georgia.ttf 38 V 41.3045 40.6779 5 P -0.1298 31.6236 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 6 o 11.4294 27.2318 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 7 e 11.2770 24.6953 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 8 : 12.5767 7.9550 28.4038 -Georgia.ttf 38 V 41.3045 40.6779 9 r 11.0533 21.9550 29.1682 -Georgia.ttf 38 V 41.3045 40.6779 10 l -4.0606 14.8955 44.3365 -Georgia.ttf 38 V 41.3045 40.6779 11 i -3.5115 14.3538 43.8448 -Georgia.ttf 38 V 41.3045 40.6779 12 1 8.8993 19.8912 31.5047 -Georgia.ttf 38 V 41.3045 40.6779 13 | -2.6949 3.7547 55.3045 -Georgia.ttf 38 V 41.3045 40.6779 14 N -0.0482 42.0727 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 15 f -3.7732 22.1088 44.3365 -Georgia.ttf 38 V 41.3045 40.6779 16 g 11.2972 27.2356 42.0000 -Georgia.ttf 38 V 41.3045 40.6779 17 d -3.9239 30.9403 45.5047 -Georgia.ttf 38 V 41.3045 40.6779 18 W -0.1297 58.3365 40.6779 -Georgia.ttf 38 V 41.3045 40.6779 19 s 11.4274 20.9867 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 20 c 11.6687 24.1536 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 21 u 11.0670 31.5237 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 22 3 9.1637 27.3045 41.7500 -Georgia.ttf 38 V 41.3045 40.6779 23 ~ 19.0956 30.0403 10.4453 -Georgia.ttf 38 V 41.3045 40.6779 24 # 5.2520 29.1872 35.0594 -Georgia.ttf 38 V 41.3045 40.6779 25 O -1.1066 38.4953 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 26 ` -3.1189 11.6635 12.1362 -Georgia.ttf 38 V 41.3045 40.6779 27 @ 1.5453 44.6903 47.8912 -Georgia.ttf 38 V 41.3045 40.6779 28 F -0.2060 31.6736 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 29 S -1.3911 28.0000 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 30 p 11.0162 30.2638 42.0000 -Georgia.ttf 38 V 41.3045 40.6779 31 “ -2.0878 18.8041 15.1682 -Georgia.ttf 38 V 41.3045 40.6779 32 % -1.0641 41.5772 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 33 £ -1.1688 30.0448 41.5962 -Georgia.ttf 38 V 41.3045 40.6779 34 . 32.9709 7.9550 7.9550 -Georgia.ttf 38 V 41.3045 40.6779 35 2 8.8994 26.4090 31.5047 -Georgia.ttf 38 V 41.3045 40.6779 36 5 10.2902 26.8318 40.5818 -Georgia.ttf 38 V 41.3045 40.6779 37 m 11.2018 48.0867 29.1682 -Georgia.ttf 38 V 41.3045 40.6779 38 V 0.0298 41.3045 40.6779 -Georgia.ttf 38 V 41.3045 40.6779 39 6 -1.3323 27.7083 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 40 w 12.1238 44.3365 28.0000 -Georgia.ttf 38 V 41.3045 40.6779 41 T -0.4884 36.3815 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 42 M -0.1046 49.8549 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 43 G -0.9909 39.4135 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 44 b -3.7000 31.0781 46.4730 -Georgia.ttf 38 V 41.3045 40.6779 45 9 8.8458 27.7083 41.9500 -Georgia.ttf 38 V 41.3045 40.6779 46 ; 12.2940 9.5498 38.2453 -Georgia.ttf 38 V 41.3045 40.6779 47 D -0.2178 38.0914 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 48 L 0.0759 32.4730 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 49 y 12.4644 30.7403 40.8318 -Georgia.ttf 38 V 41.3045 40.6779 50 ‘ -2.3635 8.3588 15.1682 -Georgia.ttf 38 V 41.3045 40.6779 51 \ -2.6634 23.2770 55.3045 -Georgia.ttf 38 V 41.3045 40.6779 52 R -0.1260 39.2597 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 53 < 9.0870 26.4279 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 54 4 8.9704 29.8448 41.7500 -Georgia.ttf 38 V 41.3045 40.6779 55 8 -1.0859 28.7227 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 56 0 8.9706 29.8910 32.6730 -Georgia.ttf 38 V 41.3045 40.6779 57 A 0.0303 41.5962 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 58 E 0.2800 34.7056 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 59 B 0.0435 32.7646 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 60 v 12.3984 30.7403 28.0000 -Georgia.ttf 38 V 41.3045 40.6779 61 k -4.0170 31.4820 44.3365 -Georgia.ttf 38 V 41.3045 40.6779 62 J -0.0856 29.0144 41.5962 -Georgia.ttf 38 V 41.3045 40.6779 63 U -0.0325 42.2189 41.5962 -Georgia.ttf 38 V 41.3045 40.6779 64 j -3.2601 16.3365 56.6766 -Georgia.ttf 38 V 41.3045 40.6779 65 ( -2.5749 16.5865 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 66 7 10.4117 26.5818 40.5818 -Georgia.ttf 38 V 41.3045 40.6779 67 § -0.9333 22.5588 48.8094 -Georgia.ttf 38 V 41.3045 40.6779 68 $ -3.4876 27.3045 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 69 € -1.0051 36.6315 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 70 / -2.5726 23.2770 55.3045 -Georgia.ttf 38 V 41.3045 40.6779 71 C -0.9425 34.2950 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 72 * -1.1276 22.6315 19.9723 -Georgia.ttf 38 V 41.3045 40.6779 73 ” -2.8502 18.8041 15.1682 -Georgia.ttf 38 V 41.3045 40.6779 74 ? -1.0276 22.2277 42.0000 -Georgia.ttf 38 V 41.3045 40.6779 75 { -2.9303 21.2133 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 76 } -3.1297 21.2133 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 77 , 33.4682 9.5498 17.3047 -Georgia.ttf 38 V 41.3045 40.6779 78 I 0.1268 18.1351 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 79 ° -1.3109 18.4730 18.4730 -Georgia.ttf 38 V 41.3045 40.6779 80 K -0.1228 39.2597 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 81 H 0.1423 41.8878 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 82 q 10.1710 30.8903 43.1682 -Georgia.ttf 38 V 41.3045 40.6779 83 & -1.0051 39.2597 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 84 ’ -2.7266 8.3588 15.1682 -Georgia.ttf 38 V 41.3045 40.6779 85 [ -2.9768 15.1682 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 86 - 22.4897 17.0320 4.4730 -Georgia.ttf 38 V 41.3045 40.6779 87 Y -0.2484 38.9680 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 88 Q -1.3809 38.4953 52.5642 -Georgia.ttf 38 V 41.3045 40.6779 89 " -2.6995 17.7547 16.3365 -Georgia.ttf 38 V 41.3045 40.6779 90 ! -1.0514 7.9550 42.7644 -Georgia.ttf 38 V 41.3045 40.6779 91 x 12.5793 29.1682 28.0000 -Georgia.ttf 38 V 41.3045 40.6779 92 ) -2.7798 16.5865 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 93 = 17.5964 29.1682 14.4500 -Georgia.ttf 38 V 41.3045 40.6779 94 + 10.0468 29.4182 29.4182 -Georgia.ttf 38 V 41.3045 40.6779 95 X 0.0395 41.5962 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 96 » 13.8915 23.9998 23.2770 -Georgia.ttf 38 V 41.3045 40.6779 97 ' -2.9479 6.7867 16.3365 -Georgia.ttf 38 V 41.3045 40.6779 98 ¢ 4.3240 25.8241 44.7403 -Georgia.ttf 38 V 41.3045 40.6779 99 Z 0.1353 33.6912 40.4279 -Georgia.ttf 38 V 41.3045 40.6779 100 > 9.0764 26.4279 30.3365 -Georgia.ttf 38 V 41.3045 40.6779 101 ® -1.1785 50.3815 50.3815 -Georgia.ttf 38 V 41.3045 40.6779 102 © -1.6486 50.3815 50.3815 -Georgia.ttf 38 V 41.3045 40.6779 103 ] -2.6565 15.1682 52.4453 -Georgia.ttf 38 V 41.3045 40.6779 104 é -3.2793 24.6953 44.8092 -Georgia.ttf 38 V 41.3045 40.6779 105 z 12.3820 23.0270 28.0000 -Georgia.ttf 38 V 41.3045 40.6779 106 _ 45.4924 37.5498 2.7403 -Georgia.ttf 38 V 41.3045 40.6779 107 ¥ 0.0704 37.0770 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 1 t 4.5358 18.7851 38.0914 -Georgia.ttf 39 6 27.7083 42.7644 2 h -2.6546 31.5237 44.3365 -Georgia.ttf 39 6 27.7083 42.7644 3 a 12.4381 25.6635 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 4 n 12.3430 31.5237 29.1682 -Georgia.ttf 39 6 27.7083 42.7644 5 P 1.3406 31.6236 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 6 o 12.2564 27.2318 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 7 e 12.7870 24.6953 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 8 : 13.5924 7.9550 28.4038 -Georgia.ttf 39 6 27.7083 42.7644 9 r 12.2676 21.9550 29.1682 -Georgia.ttf 39 6 27.7083 42.7644 10 l -2.8974 14.8955 44.3365 -Georgia.ttf 39 6 27.7083 42.7644 11 i -2.2871 14.3538 43.8448 -Georgia.ttf 39 6 27.7083 42.7644 12 1 9.9358 19.8912 31.5047 -Georgia.ttf 39 6 27.7083 42.7644 13 | -1.7314 3.7547 55.3045 -Georgia.ttf 39 6 27.7083 42.7644 14 N 1.1549 42.0727 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 15 f -2.8501 22.1088 44.3365 -Georgia.ttf 39 6 27.7083 42.7644 16 g 12.4548 27.2356 42.0000 -Georgia.ttf 39 6 27.7083 42.7644 17 d -2.8107 30.9403 45.5047 -Georgia.ttf 39 6 27.7083 42.7644 18 W 1.1819 58.3365 40.6779 -Georgia.ttf 39 6 27.7083 42.7644 19 s 12.2791 20.9867 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 20 c 12.4100 24.1536 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 21 u 12.3029 31.5237 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 22 3 9.9148 27.3045 41.7500 -Georgia.ttf 39 6 27.7083 42.7644 23 ~ 20.5952 30.0403 10.4453 -Georgia.ttf 39 6 27.7083 42.7644 24 # 6.5899 29.1872 35.0594 -Georgia.ttf 39 6 27.7083 42.7644 25 O 0.1774 38.4953 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 26 ` -2.0798 11.6635 12.1362 -Georgia.ttf 39 6 27.7083 42.7644 27 @ 2.9057 44.6903 47.8912 -Georgia.ttf 39 6 27.7083 42.7644 28 F 1.1279 31.6736 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 29 S -0.1607 28.0000 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 30 p 12.1015 30.2638 42.0000 -Georgia.ttf 39 6 27.7083 42.7644 31 “ -1.5490 18.8041 15.1682 -Georgia.ttf 39 6 27.7083 42.7644 32 % 0.1470 41.5772 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 33 £ 0.0330 30.0448 41.5962 -Georgia.ttf 39 6 27.7083 42.7644 34 . 34.0478 7.9550 7.9550 -Georgia.ttf 39 6 27.7083 42.7644 35 2 10.2643 26.4090 31.5047 -Georgia.ttf 39 6 27.7083 42.7644 36 5 11.3742 26.8318 40.5818 -Georgia.ttf 39 6 27.7083 42.7644 37 m 12.4836 48.0867 29.1682 -Georgia.ttf 39 6 27.7083 42.7644 38 V 1.2990 41.3045 40.6779 -Georgia.ttf 39 6 27.7083 42.7644 39 6 -0.0051 27.7083 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 40 w 13.4590 44.3365 28.0000 -Georgia.ttf 39 6 27.7083 42.7644 41 T 0.6285 36.3815 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 42 M 1.2970 49.8549 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 43 G 0.0078 39.4135 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 44 b -2.5818 31.0781 46.4730 -Georgia.ttf 39 6 27.7083 42.7644 45 9 10.0279 27.7083 41.9500 -Georgia.ttf 39 6 27.7083 42.7644 46 ; 13.7649 9.5498 38.2453 -Georgia.ttf 39 6 27.7083 42.7644 47 D 0.9119 38.0914 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 48 L 1.1266 32.4730 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 49 y 13.5523 30.7403 40.8318 -Georgia.ttf 39 6 27.7083 42.7644 50 ‘ -1.6630 8.3588 15.1682 -Georgia.ttf 39 6 27.7083 42.7644 51 \ -1.4900 23.2770 55.3045 -Georgia.ttf 39 6 27.7083 42.7644 52 R 0.9436 39.2597 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 53 < 10.1333 26.4279 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 54 4 9.9074 29.8448 41.7500 -Georgia.ttf 39 6 27.7083 42.7644 55 8 0.0149 28.7227 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 56 0 10.0705 29.8910 32.6730 -Georgia.ttf 39 6 27.7083 42.7644 57 A 1.0583 41.5962 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 58 E 1.5024 34.7056 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 59 B 1.3806 32.7646 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 60 v 13.6565 30.7403 28.0000 -Georgia.ttf 39 6 27.7083 42.7644 61 k -2.9384 31.4820 44.3365 -Georgia.ttf 39 6 27.7083 42.7644 62 J 1.1705 29.0144 41.5962 -Georgia.ttf 39 6 27.7083 42.7644 63 U 1.3476 42.2189 41.5962 -Georgia.ttf 39 6 27.7083 42.7644 64 j -2.4054 16.3365 56.6766 -Georgia.ttf 39 6 27.7083 42.7644 65 ( -1.6009 16.5865 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 66 7 10.9997 26.5818 40.5818 -Georgia.ttf 39 6 27.7083 42.7644 67 § -0.0437 22.5588 48.8094 -Georgia.ttf 39 6 27.7083 42.7644 68 $ -2.3351 27.3045 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 69 € 0.1750 36.6315 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 70 / -1.4153 23.2770 55.3045 -Georgia.ttf 39 6 27.7083 42.7644 71 C -0.0431 34.2950 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 72 * -0.2175 22.6315 19.9723 -Georgia.ttf 39 6 27.7083 42.7644 73 ” -1.4807 18.8041 15.1682 -Georgia.ttf 39 6 27.7083 42.7644 74 ? 0.2568 22.2277 42.0000 -Georgia.ttf 39 6 27.7083 42.7644 75 { -1.7943 21.2133 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 76 } -1.5818 21.2133 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 77 , 34.6234 9.5498 17.3047 -Georgia.ttf 39 6 27.7083 42.7644 78 I 1.0496 18.1351 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 79 ° -0.2169 18.4730 18.4730 -Georgia.ttf 39 6 27.7083 42.7644 80 K 1.0180 39.2597 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 81 H 0.8171 41.8878 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 82 q 11.0582 30.8903 43.1682 -Georgia.ttf 39 6 27.7083 42.7644 83 & 0.0370 39.2597 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 84 ’ -1.3289 8.3588 15.1682 -Georgia.ttf 39 6 27.7083 42.7644 85 [ -1.4402 15.1682 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 86 - 23.7692 17.0320 4.4730 -Georgia.ttf 39 6 27.7083 42.7644 87 Y 1.4829 38.9680 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 88 Q -0.1093 38.4953 52.5642 -Georgia.ttf 39 6 27.7083 42.7644 89 " -1.5696 17.7547 16.3365 -Georgia.ttf 39 6 27.7083 42.7644 90 ! -0.2103 7.9550 42.7644 -Georgia.ttf 39 6 27.7083 42.7644 91 x 13.4192 29.1682 28.0000 -Georgia.ttf 39 6 27.7083 42.7644 92 ) -1.5249 16.5865 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 93 = 18.4426 29.1682 14.4500 -Georgia.ttf 39 6 27.7083 42.7644 94 + 11.1766 29.4182 29.4182 -Georgia.ttf 39 6 27.7083 42.7644 95 X 1.0080 41.5962 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 96 » 15.0479 23.9998 23.2770 -Georgia.ttf 39 6 27.7083 42.7644 97 ' -1.3707 6.7867 16.3365 -Georgia.ttf 39 6 27.7083 42.7644 98 ¢ 5.1154 25.8241 44.7403 -Georgia.ttf 39 6 27.7083 42.7644 99 Z 1.0951 33.6912 40.4279 -Georgia.ttf 39 6 27.7083 42.7644 100 > 10.1052 26.4279 30.3365 -Georgia.ttf 39 6 27.7083 42.7644 101 ® -0.0185 50.3815 50.3815 -Georgia.ttf 39 6 27.7083 42.7644 102 © -0.5849 50.3815 50.3815 -Georgia.ttf 39 6 27.7083 42.7644 103 ] -1.5958 15.1682 52.4453 -Georgia.ttf 39 6 27.7083 42.7644 104 é -1.8720 24.6953 44.8092 -Georgia.ttf 39 6 27.7083 42.7644 105 z 13.4572 23.0270 28.0000 -Georgia.ttf 39 6 27.7083 42.7644 106 _ 46.5644 37.5498 2.7403 -Georgia.ttf 39 6 27.7083 42.7644 107 ¥ 1.0909 37.0770 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 1 t -9.0103 18.7851 38.0914 -Georgia.ttf 40 w 44.3365 28.0000 2 h -16.4418 31.5237 44.3365 -Georgia.ttf 40 w 44.3365 28.0000 3 a -1.2507 25.6635 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 4 n -1.0703 31.5237 29.1682 -Georgia.ttf 40 w 44.3365 28.0000 5 P -12.5225 31.6236 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 6 o -1.3900 27.2318 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 7 e -1.0701 24.6953 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 8 : -0.0178 7.9550 28.4038 -Georgia.ttf 40 w 44.3365 28.0000 9 r -1.0274 21.9550 29.1682 -Georgia.ttf 40 w 44.3365 28.0000 10 l -16.5859 14.8955 44.3365 -Georgia.ttf 40 w 44.3365 28.0000 11 i -15.9859 14.3538 43.8448 -Georgia.ttf 40 w 44.3365 28.0000 12 1 -3.5767 19.8912 31.5047 -Georgia.ttf 40 w 44.3365 28.0000 13 | -15.0212 3.7547 55.3045 -Georgia.ttf 40 w 44.3365 28.0000 14 N -12.7225 42.0727 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 15 f -16.5446 22.1088 44.3365 -Georgia.ttf 40 w 44.3365 28.0000 16 g -1.1636 27.2356 42.0000 -Georgia.ttf 40 w 44.3365 28.0000 17 d -16.4464 30.9403 45.5047 -Georgia.ttf 40 w 44.3365 28.0000 18 W -12.0967 58.3365 40.6779 -Georgia.ttf 40 w 44.3365 28.0000 19 s -1.0000 20.9867 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 20 c -0.9459 24.1536 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 21 u -1.0019 31.5237 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 22 3 -3.5002 27.3045 41.7500 -Georgia.ttf 40 w 44.3365 28.0000 23 ~ 6.8822 30.0403 10.4453 -Georgia.ttf 40 w 44.3365 28.0000 24 # -7.3606 29.1872 35.0594 -Georgia.ttf 40 w 44.3365 28.0000 25 O -13.7510 38.4953 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 26 ` -16.0099 11.6635 12.1362 -Georgia.ttf 40 w 44.3365 28.0000 27 @ -11.4425 44.6903 47.8912 -Georgia.ttf 40 w 44.3365 28.0000 28 F -12.5442 31.6736 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 29 S -14.0164 28.0000 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 30 p -1.2360 30.2638 42.0000 -Georgia.ttf 40 w 44.3365 28.0000 31 “ -15.1248 18.8041 15.1682 -Georgia.ttf 40 w 44.3365 28.0000 32 % -13.6340 41.5772 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 33 £ -13.3126 30.0448 41.5962 -Georgia.ttf 40 w 44.3365 28.0000 34 . 20.2955 7.9550 7.9550 -Georgia.ttf 40 w 44.3365 28.0000 35 2 -3.3583 26.4090 31.5047 -Georgia.ttf 40 w 44.3365 28.0000 36 5 -2.4810 26.8318 40.5818 -Georgia.ttf 40 w 44.3365 28.0000 37 m -0.9671 48.0867 29.1682 -Georgia.ttf 40 w 44.3365 28.0000 38 V -12.1535 41.3045 40.6779 -Georgia.ttf 40 w 44.3365 28.0000 39 6 -13.4820 27.7083 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 40 w -0.0602 44.3365 28.0000 -Georgia.ttf 40 w 44.3365 28.0000 41 T -12.5952 36.3815 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 42 M -12.4220 49.8549 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 43 G -13.5360 39.4135 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 44 b -16.2581 31.0781 46.4730 -Georgia.ttf 40 w 44.3365 28.0000 45 9 -3.4959 27.7083 41.9500 -Georgia.ttf 40 w 44.3365 28.0000 46 ; 0.1071 9.5498 38.2453 -Georgia.ttf 40 w 44.3365 28.0000 47 D -12.2306 38.0914 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 48 L -12.5094 32.4730 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 49 y 0.1416 30.7403 40.8318 -Georgia.ttf 40 w 44.3365 28.0000 50 ‘ -14.8428 8.3588 15.1682 -Georgia.ttf 40 w 44.3365 28.0000 51 \ -15.0525 23.2770 55.3045 -Georgia.ttf 40 w 44.3365 28.0000 52 R -12.4965 39.2597 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 53 < -3.3383 26.4279 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 54 4 -3.4427 29.8448 41.7500 -Georgia.ttf 40 w 44.3365 28.0000 55 8 -13.5998 28.7227 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 56 0 -3.4950 29.8910 32.6730 -Georgia.ttf 40 w 44.3365 28.0000 57 A -12.6319 41.5962 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 58 E -12.2821 34.7056 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 59 B -12.3667 32.7646 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 60 v 0.2289 30.7403 28.0000 -Georgia.ttf 40 w 44.3365 28.0000 61 k -16.2679 31.4820 44.3365 -Georgia.ttf 40 w 44.3365 28.0000 62 J -12.6448 29.0144 41.5962 -Georgia.ttf 40 w 44.3365 28.0000 63 U -12.5553 42.2189 41.5962 -Georgia.ttf 40 w 44.3365 28.0000 64 j -15.8351 16.3365 56.6766 -Georgia.ttf 40 w 44.3365 28.0000 65 ( -15.1401 16.5865 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 66 7 -2.2480 26.5818 40.5818 -Georgia.ttf 40 w 44.3365 28.0000 67 § -13.7329 22.5588 48.8094 -Georgia.ttf 40 w 44.3365 28.0000 68 $ -15.9441 27.3045 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 69 € -13.7439 36.6315 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 70 / -14.9157 23.2770 55.3045 -Georgia.ttf 40 w 44.3365 28.0000 71 C -13.8809 34.2950 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 72 * -13.6685 22.6315 19.9723 -Georgia.ttf 40 w 44.3365 28.0000 73 ” -15.0849 18.8041 15.1682 -Georgia.ttf 40 w 44.3365 28.0000 74 ? -13.6926 22.2277 42.0000 -Georgia.ttf 40 w 44.3365 28.0000 75 { -15.5611 21.2133 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 76 } -15.1345 21.2133 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 77 , 20.9281 9.5498 17.3047 -Georgia.ttf 40 w 44.3365 28.0000 78 I -12.5191 18.1351 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 79 ° -13.4744 18.4730 18.4730 -Georgia.ttf 40 w 44.3365 28.0000 80 K -12.4132 39.2597 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 81 H -12.7676 41.8878 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 82 q -2.3996 30.8903 43.1682 -Georgia.ttf 40 w 44.3365 28.0000 83 & -13.9218 39.2597 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 84 ’ -15.2529 8.3588 15.1682 -Georgia.ttf 40 w 44.3365 28.0000 85 [ -14.8659 15.1682 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 86 - 10.0937 17.0320 4.4730 -Georgia.ttf 40 w 44.3365 28.0000 87 Y -12.7114 38.9680 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 88 Q -13.4957 38.4953 52.5642 -Georgia.ttf 40 w 44.3365 28.0000 89 " -15.0238 17.7547 16.3365 -Georgia.ttf 40 w 44.3365 28.0000 90 ! -13.3738 7.9550 42.7644 -Georgia.ttf 40 w 44.3365 28.0000 91 x 0.4214 29.1682 28.0000 -Georgia.ttf 40 w 44.3365 28.0000 92 ) -15.3308 16.5865 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 93 = 4.5120 29.1682 14.4500 -Georgia.ttf 40 w 44.3365 28.0000 94 + -2.3766 29.4182 29.4182 -Georgia.ttf 40 w 44.3365 28.0000 95 X -12.4322 41.5962 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 96 » 1.4798 23.9998 23.2770 -Georgia.ttf 40 w 44.3365 28.0000 97 ' -15.2539 6.7867 16.3365 -Georgia.ttf 40 w 44.3365 28.0000 98 ¢ -8.1100 25.8241 44.7403 -Georgia.ttf 40 w 44.3365 28.0000 99 Z -12.5420 33.6912 40.4279 -Georgia.ttf 40 w 44.3365 28.0000 100 > -3.5510 26.4279 30.3365 -Georgia.ttf 40 w 44.3365 28.0000 101 ® -13.8799 50.3815 50.3815 -Georgia.ttf 40 w 44.3365 28.0000 102 © -14.0242 50.3815 50.3815 -Georgia.ttf 40 w 44.3365 28.0000 103 ] -15.3091 15.1682 52.4453 -Georgia.ttf 40 w 44.3365 28.0000 104 é -15.6967 24.6953 44.8092 -Georgia.ttf 40 w 44.3365 28.0000 105 z 0.1893 23.0270 28.0000 -Georgia.ttf 40 w 44.3365 28.0000 106 _ 32.8774 37.5498 2.7403 -Georgia.ttf 40 w 44.3365 28.0000 107 ¥ -12.2982 37.0770 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 1 t 3.3878 18.7851 38.0914 -Georgia.ttf 41 T 36.3815 40.4279 2 h -3.8284 31.5237 44.3365 -Georgia.ttf 41 T 36.3815 40.4279 3 a 11.0362 25.6635 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 4 n 11.0196 31.5237 29.1682 -Georgia.ttf 41 T 36.3815 40.4279 5 P 0.0042 31.6236 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 6 o 10.9269 27.2318 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 7 e 11.4060 24.6953 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 8 : 12.6801 7.9550 28.4038 -Georgia.ttf 41 T 36.3815 40.4279 9 r 11.2722 21.9550 29.1682 -Georgia.ttf 41 T 36.3815 40.4279 10 l -3.8790 14.8955 44.3365 -Georgia.ttf 41 T 36.3815 40.4279 11 i -3.3543 14.3538 43.8448 -Georgia.ttf 41 T 36.3815 40.4279 12 1 8.7938 19.8912 31.5047 -Georgia.ttf 41 T 36.3815 40.4279 13 | -3.0351 3.7547 55.3045 -Georgia.ttf 41 T 36.3815 40.4279 14 N 0.0427 42.0727 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 15 f -3.6240 22.1088 44.3365 -Georgia.ttf 41 T 36.3815 40.4279 16 g 11.1063 27.2356 42.0000 -Georgia.ttf 41 T 36.3815 40.4279 17 d -4.0107 30.9403 45.5047 -Georgia.ttf 41 T 36.3815 40.4279 18 W -0.1621 58.3365 40.6779 -Georgia.ttf 41 T 36.3815 40.4279 19 s 11.3696 20.9867 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 20 c 11.0817 24.1536 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 21 u 11.2223 31.5237 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 22 3 8.9667 27.3045 41.7500 -Georgia.ttf 41 T 36.3815 40.4279 23 ~ 19.3393 30.0403 10.4453 -Georgia.ttf 41 T 36.3815 40.4279 24 # 5.1034 29.1872 35.0594 -Georgia.ttf 41 T 36.3815 40.4279 25 O -1.0112 38.4953 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 26 ` -3.0758 11.6635 12.1362 -Georgia.ttf 41 T 36.3815 40.4279 27 @ 1.2232 44.6903 47.8912 -Georgia.ttf 41 T 36.3815 40.4279 28 F -0.1274 31.6736 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 29 S -1.1700 28.0000 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 30 p 11.1954 30.2638 42.0000 -Georgia.ttf 41 T 36.3815 40.4279 31 “ -2.5505 18.8041 15.1682 -Georgia.ttf 41 T 36.3815 40.4279 32 % -1.4488 41.5772 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 33 £ -1.1540 30.0448 41.5962 -Georgia.ttf 41 T 36.3815 40.4279 34 . 33.0139 7.9550 7.9550 -Georgia.ttf 41 T 36.3815 40.4279 35 2 8.9737 26.4090 31.5047 -Georgia.ttf 41 T 36.3815 40.4279 36 5 10.1883 26.8318 40.5818 -Georgia.ttf 41 T 36.3815 40.4279 37 m 11.0501 48.0867 29.1682 -Georgia.ttf 41 T 36.3815 40.4279 38 V -0.0836 41.3045 40.6779 -Georgia.ttf 41 T 36.3815 40.4279 39 6 -1.2035 27.7083 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 40 w 12.3255 44.3365 28.0000 -Georgia.ttf 41 T 36.3815 40.4279 41 T -0.1762 36.3815 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 42 M -0.3187 49.8549 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 43 G -0.8948 39.4135 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 44 b -3.8886 31.0781 46.4730 -Georgia.ttf 41 T 36.3815 40.4279 45 9 8.9417 27.7083 41.9500 -Georgia.ttf 41 T 36.3815 40.4279 46 ; 12.3838 9.5498 38.2453 -Georgia.ttf 41 T 36.3815 40.4279 47 D 0.1746 38.0914 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 48 L -0.2562 32.4730 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 49 y 12.1122 30.7403 40.8318 -Georgia.ttf 41 T 36.3815 40.4279 50 ‘ -2.9072 8.3588 15.1682 -Georgia.ttf 41 T 36.3815 40.4279 51 \ -2.9516 23.2770 55.3045 -Georgia.ttf 41 T 36.3815 40.4279 52 R 0.1427 39.2597 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 53 < 9.0982 26.4279 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 54 4 8.7161 29.8448 41.7500 -Georgia.ttf 41 T 36.3815 40.4279 55 8 -1.0454 28.7227 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 56 0 8.8843 29.8910 32.6730 -Georgia.ttf 41 T 36.3815 40.4279 57 A -0.0850 41.5962 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 58 E 0.0766 34.7056 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 59 B -0.0435 32.7646 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 60 v 12.4223 30.7403 28.0000 -Georgia.ttf 41 T 36.3815 40.4279 61 k -3.8642 31.4820 44.3365 -Georgia.ttf 41 T 36.3815 40.4279 62 J -0.1145 29.0144 41.5962 -Georgia.ttf 41 T 36.3815 40.4279 63 U 0.0500 42.2189 41.5962 -Georgia.ttf 41 T 36.3815 40.4279 64 j -3.4159 16.3365 56.6766 -Georgia.ttf 41 T 36.3815 40.4279 65 ( -2.9748 16.5865 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 66 7 10.2317 26.5818 40.5818 -Georgia.ttf 41 T 36.3815 40.4279 67 § -0.8291 22.5588 48.8094 -Georgia.ttf 41 T 36.3815 40.4279 68 $ -4.0094 27.3045 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 69 € -1.1479 36.6315 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 70 / -2.3890 23.2770 55.3045 -Georgia.ttf 41 T 36.3815 40.4279 71 C -1.4306 34.2950 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 72 * -0.9157 22.6315 19.9723 -Georgia.ttf 41 T 36.3815 40.4279 73 ” -3.0548 18.8041 15.1682 -Georgia.ttf 41 T 36.3815 40.4279 74 ? -1.0083 22.2277 42.0000 -Georgia.ttf 41 T 36.3815 40.4279 75 { -2.7723 21.2133 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 76 } -2.4780 21.2133 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 77 , 33.3647 9.5498 17.3047 -Georgia.ttf 41 T 36.3815 40.4279 78 I 0.0889 18.1351 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 79 ° -1.2924 18.4730 18.4730 -Georgia.ttf 41 T 36.3815 40.4279 80 K -0.1530 39.2597 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 81 H 0.0637 41.8878 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 82 q 10.1891 30.8903 43.1682 -Georgia.ttf 41 T 36.3815 40.4279 83 & -1.0430 39.2597 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 84 ’ -2.7907 8.3588 15.1682 -Georgia.ttf 41 T 36.3815 40.4279 85 [ -2.4360 15.1682 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 86 - 22.8661 17.0320 4.4730 -Georgia.ttf 41 T 36.3815 40.4279 87 Y 0.0941 38.9680 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 88 Q -1.3540 38.4953 52.5642 -Georgia.ttf 41 T 36.3815 40.4279 89 " -2.5328 17.7547 16.3365 -Georgia.ttf 41 T 36.3815 40.4279 90 ! -1.0645 7.9550 42.7644 -Georgia.ttf 41 T 36.3815 40.4279 91 x 12.3830 29.1682 28.0000 -Georgia.ttf 41 T 36.3815 40.4279 92 ) -2.7618 16.5865 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 93 = 17.1676 29.1682 14.4500 -Georgia.ttf 41 T 36.3815 40.4279 94 + 10.0035 29.4182 29.4182 -Georgia.ttf 41 T 36.3815 40.4279 95 X -0.1915 41.5962 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 96 » 13.9898 23.9998 23.2770 -Georgia.ttf 41 T 36.3815 40.4279 97 ' -2.6266 6.7867 16.3365 -Georgia.ttf 41 T 36.3815 40.4279 98 ¢ 4.1414 25.8241 44.7403 -Georgia.ttf 41 T 36.3815 40.4279 99 Z 0.2698 33.6912 40.4279 -Georgia.ttf 41 T 36.3815 40.4279 100 > 9.1908 26.4279 30.3365 -Georgia.ttf 41 T 36.3815 40.4279 101 ® -1.3906 50.3815 50.3815 -Georgia.ttf 41 T 36.3815 40.4279 102 © -1.7015 50.3815 50.3815 -Georgia.ttf 41 T 36.3815 40.4279 103 ] -2.8774 15.1682 52.4453 -Georgia.ttf 41 T 36.3815 40.4279 104 é -3.3761 24.6953 44.8092 -Georgia.ttf 41 T 36.3815 40.4279 105 z 12.5664 23.0270 28.0000 -Georgia.ttf 41 T 36.3815 40.4279 106 _ 45.6363 37.5498 2.7403 -Georgia.ttf 41 T 36.3815 40.4279 107 ¥ -0.1623 37.0770 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 1 t 3.3411 18.7851 38.0914 -Georgia.ttf 42 M 49.8549 40.4279 2 h -3.6371 31.5237 44.3365 -Georgia.ttf 42 M 49.8549 40.4279 3 a 10.9820 25.6635 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 4 n 11.0859 31.5237 29.1682 -Georgia.ttf 42 M 49.8549 40.4279 5 P -0.3331 31.6236 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 6 o 11.3265 27.2318 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 7 e 11.4553 24.6953 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 8 : 12.2117 7.9550 28.4038 -Georgia.ttf 42 M 49.8549 40.4279 9 r 10.9959 21.9550 29.1682 -Georgia.ttf 42 M 49.8549 40.4279 10 l -3.9359 14.8955 44.3365 -Georgia.ttf 42 M 49.8549 40.4279 11 i -3.3256 14.3538 43.8448 -Georgia.ttf 42 M 49.8549 40.4279 12 1 9.0537 19.8912 31.5047 -Georgia.ttf 42 M 49.8549 40.4279 13 | -2.8793 3.7547 55.3045 -Georgia.ttf 42 M 49.8549 40.4279 14 N -0.2180 42.0727 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 15 f -4.0150 22.1088 44.3365 -Georgia.ttf 42 M 49.8549 40.4279 16 g 11.4563 27.2356 42.0000 -Georgia.ttf 42 M 49.8549 40.4279 17 d -3.7839 30.9403 45.5047 -Georgia.ttf 42 M 49.8549 40.4279 18 W 0.2297 58.3365 40.6779 -Georgia.ttf 42 M 49.8549 40.4279 19 s 10.9775 20.9867 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 20 c 11.3995 24.1536 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 21 u 11.4696 31.5237 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 22 3 8.8644 27.3045 41.7500 -Georgia.ttf 42 M 49.8549 40.4279 23 ~ 19.2661 30.0403 10.4453 -Georgia.ttf 42 M 49.8549 40.4279 24 # 5.5209 29.1872 35.0594 -Georgia.ttf 42 M 49.8549 40.4279 25 O -1.2159 38.4953 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 26 ` -3.2224 11.6635 12.1362 -Georgia.ttf 42 M 49.8549 40.4279 27 @ 1.0674 44.6903 47.8912 -Georgia.ttf 42 M 49.8549 40.4279 28 F 0.0245 31.6736 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 29 S -1.2860 28.0000 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 30 p 11.6862 30.2638 42.0000 -Georgia.ttf 42 M 49.8549 40.4279 31 “ -2.7306 18.8041 15.1682 -Georgia.ttf 42 M 49.8549 40.4279 32 % -0.9087 41.5772 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 33 £ -1.1307 30.0448 41.5962 -Georgia.ttf 42 M 49.8549 40.4279 34 . 32.9182 7.9550 7.9550 -Georgia.ttf 42 M 49.8549 40.4279 35 2 8.9384 26.4090 31.5047 -Georgia.ttf 42 M 49.8549 40.4279 36 5 9.9373 26.8318 40.5818 -Georgia.ttf 42 M 49.8549 40.4279 37 m 11.3352 48.0867 29.1682 -Georgia.ttf 42 M 49.8549 40.4279 38 V 0.0100 41.3045 40.6779 -Georgia.ttf 42 M 49.8549 40.4279 39 6 -1.2178 27.7083 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 40 w 12.6382 44.3365 28.0000 -Georgia.ttf 42 M 49.8549 40.4279 41 T 0.1164 36.3815 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 42 M -0.2572 49.8549 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 43 G -1.1767 39.4135 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 44 b -3.9040 31.0781 46.4730 -Georgia.ttf 42 M 49.8549 40.4279 45 9 9.1619 27.7083 41.9500 -Georgia.ttf 42 M 49.8549 40.4279 46 ; 12.4682 9.5498 38.2453 -Georgia.ttf 42 M 49.8549 40.4279 47 D -0.1918 38.0914 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 48 L 0.2427 32.4730 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 49 y 12.4321 30.7403 40.8318 -Georgia.ttf 42 M 49.8549 40.4279 50 ‘ -2.9695 8.3588 15.1682 -Georgia.ttf 42 M 49.8549 40.4279 51 \ -2.5462 23.2770 55.3045 -Georgia.ttf 42 M 49.8549 40.4279 52 R 0.0155 39.2597 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 53 < 9.2614 26.4279 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 54 4 8.9776 29.8448 41.7500 -Georgia.ttf 42 M 49.8549 40.4279 55 8 -0.8628 28.7227 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 56 0 8.7241 29.8910 32.6730 -Georgia.ttf 42 M 49.8549 40.4279 57 A -0.0179 41.5962 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 58 E 0.1284 34.7056 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 59 B 0.1561 32.7646 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 60 v 12.4604 30.7403 28.0000 -Georgia.ttf 42 M 49.8549 40.4279 61 k -4.1755 31.4820 44.3365 -Georgia.ttf 42 M 49.8549 40.4279 62 J 0.1632 29.0144 41.5962 -Georgia.ttf 42 M 49.8549 40.4279 63 U -0.0199 42.2189 41.5962 -Georgia.ttf 42 M 49.8549 40.4279 64 j -3.4582 16.3365 56.6766 -Georgia.ttf 42 M 49.8549 40.4279 65 ( -2.8135 16.5865 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 66 7 10.4394 26.5818 40.5818 -Georgia.ttf 42 M 49.8549 40.4279 67 § -1.1456 22.5588 48.8094 -Georgia.ttf 42 M 49.8549 40.4279 68 $ -3.7182 27.3045 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 69 € -1.4986 36.6315 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 70 / -2.7039 23.2770 55.3045 -Georgia.ttf 42 M 49.8549 40.4279 71 C -0.9931 34.2950 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 72 * -1.5777 22.6315 19.9723 -Georgia.ttf 42 M 49.8549 40.4279 73 ” -2.4079 18.8041 15.1682 -Georgia.ttf 42 M 49.8549 40.4279 74 ? -1.2507 22.2277 42.0000 -Georgia.ttf 42 M 49.8549 40.4279 75 { -2.7975 21.2133 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 76 } -2.4965 21.2133 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 77 , 33.2012 9.5498 17.3047 -Georgia.ttf 42 M 49.8549 40.4279 78 I 0.2650 18.1351 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 79 ° -1.0427 18.4730 18.4730 -Georgia.ttf 42 M 49.8549 40.4279 80 K -0.1435 39.2597 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 81 H -0.0599 41.8878 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 82 q 10.2565 30.8903 43.1682 -Georgia.ttf 42 M 49.8549 40.4279 83 & -1.3462 39.2597 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 84 ’ -2.7946 8.3588 15.1682 -Georgia.ttf 42 M 49.8549 40.4279 85 [ -2.6882 15.1682 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 86 - 23.0677 17.0320 4.4730 -Georgia.ttf 42 M 49.8549 40.4279 87 Y 0.0949 38.9680 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 88 Q -1.3956 38.4953 52.5642 -Georgia.ttf 42 M 49.8549 40.4279 89 " -2.4600 17.7547 16.3365 -Georgia.ttf 42 M 49.8549 40.4279 90 ! -0.8807 7.9550 42.7644 -Georgia.ttf 42 M 49.8549 40.4279 91 x 12.6250 29.1682 28.0000 -Georgia.ttf 42 M 49.8549 40.4279 92 ) -2.4346 16.5865 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 93 = 17.3889 29.1682 14.4500 -Georgia.ttf 42 M 49.8549 40.4279 94 + 9.6342 29.4182 29.4182 -Georgia.ttf 42 M 49.8549 40.4279 95 X 0.3197 41.5962 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 96 » 13.7875 23.9998 23.2770 -Georgia.ttf 42 M 49.8549 40.4279 97 ' -2.8577 6.7867 16.3365 -Georgia.ttf 42 M 49.8549 40.4279 98 ¢ 4.1411 25.8241 44.7403 -Georgia.ttf 42 M 49.8549 40.4279 99 Z -0.0115 33.6912 40.4279 -Georgia.ttf 42 M 49.8549 40.4279 100 > 8.7465 26.4279 30.3365 -Georgia.ttf 42 M 49.8549 40.4279 101 ® -2.0674 50.3815 50.3815 -Georgia.ttf 42 M 49.8549 40.4279 102 © -1.0906 50.3815 50.3815 -Georgia.ttf 42 M 49.8549 40.4279 103 ] -2.4924 15.1682 52.4453 -Georgia.ttf 42 M 49.8549 40.4279 104 é -3.0462 24.6953 44.8092 -Georgia.ttf 42 M 49.8549 40.4279 105 z 12.2369 23.0270 28.0000 -Georgia.ttf 42 M 49.8549 40.4279 106 _ 45.8017 37.5498 2.7403 -Georgia.ttf 42 M 49.8549 40.4279 107 ¥ -0.1587 37.0770 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 1 t 4.7958 18.7851 38.0914 -Georgia.ttf 43 G 39.4135 42.7644 2 h -2.3705 31.5237 44.3365 -Georgia.ttf 43 G 39.4135 42.7644 3 a 12.5910 25.6635 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 4 n 12.6077 31.5237 29.1682 -Georgia.ttf 43 G 39.4135 42.7644 5 P 0.7773 31.6236 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 6 o 12.6676 27.2318 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 7 e 12.3978 24.6953 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 8 : 13.7654 7.9550 28.4038 -Georgia.ttf 43 G 39.4135 42.7644 9 r 12.0196 21.9550 29.1682 -Georgia.ttf 43 G 39.4135 42.7644 10 l -2.5808 14.8955 44.3365 -Georgia.ttf 43 G 39.4135 42.7644 11 i -2.1959 14.3538 43.8448 -Georgia.ttf 43 G 39.4135 42.7644 12 1 10.0137 19.8912 31.5047 -Georgia.ttf 43 G 39.4135 42.7644 13 | -1.6765 3.7547 55.3045 -Georgia.ttf 43 G 39.4135 42.7644 14 N 1.3111 42.0727 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 15 f -2.5320 22.1088 44.3365 -Georgia.ttf 43 G 39.4135 42.7644 16 g 12.3811 27.2356 42.0000 -Georgia.ttf 43 G 39.4135 42.7644 17 d -2.6906 30.9403 45.5047 -Georgia.ttf 43 G 39.4135 42.7644 18 W 1.0066 58.3365 40.6779 -Georgia.ttf 43 G 39.4135 42.7644 19 s 12.2222 20.9867 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 20 c 12.5130 24.1536 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 21 u 12.5224 31.5237 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 22 3 10.0530 27.3045 41.7500 -Georgia.ttf 43 G 39.4135 42.7644 23 ~ 20.3925 30.0403 10.4453 -Georgia.ttf 43 G 39.4135 42.7644 24 # 6.4923 29.1872 35.0594 -Georgia.ttf 43 G 39.4135 42.7644 25 O -0.0525 38.4953 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 26 ` -2.0185 11.6635 12.1362 -Georgia.ttf 43 G 39.4135 42.7644 27 @ 2.9529 44.6903 47.8912 -Georgia.ttf 43 G 39.4135 42.7644 28 F 1.0811 31.6736 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 29 S -0.2295 28.0000 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 30 p 12.4234 30.2638 42.0000 -Georgia.ttf 43 G 39.4135 42.7644 31 “ -1.4126 18.8041 15.1682 -Georgia.ttf 43 G 39.4135 42.7644 32 % 0.1186 41.5772 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 33 £ -0.0531 30.0448 41.5962 -Georgia.ttf 43 G 39.4135 42.7644 34 . 33.9598 7.9550 7.9550 -Georgia.ttf 43 G 39.4135 42.7644 35 2 10.0585 26.4090 31.5047 -Georgia.ttf 43 G 39.4135 42.7644 36 5 11.3835 26.8318 40.5818 -Georgia.ttf 43 G 39.4135 42.7644 37 m 12.2005 48.0867 29.1682 -Georgia.ttf 43 G 39.4135 42.7644 38 V 1.0619 41.3045 40.6779 -Georgia.ttf 43 G 39.4135 42.7644 39 6 -0.1079 27.7083 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 40 w 13.4592 44.3365 28.0000 -Georgia.ttf 43 G 39.4135 42.7644 41 T 1.1664 36.3815 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 42 M 1.3676 49.8549 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 43 G 0.2169 39.4135 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 44 b -2.6860 31.0781 46.4730 -Georgia.ttf 43 G 39.4135 42.7644 45 9 9.9811 27.7083 41.9500 -Georgia.ttf 43 G 39.4135 42.7644 46 ; 13.7630 9.5498 38.2453 -Georgia.ttf 43 G 39.4135 42.7644 47 D 1.0006 38.0914 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 48 L 1.2182 32.4730 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 49 y 13.2662 30.7403 40.8318 -Georgia.ttf 43 G 39.4135 42.7644 50 ‘ -1.8372 8.3588 15.1682 -Georgia.ttf 43 G 39.4135 42.7644 51 \ -1.0846 23.2770 55.3045 -Georgia.ttf 43 G 39.4135 42.7644 52 R 1.0891 39.2597 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 53 < 10.0829 26.4279 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 54 4 9.9075 29.8448 41.7500 -Georgia.ttf 43 G 39.4135 42.7644 55 8 0.1459 28.7227 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 56 0 10.1474 29.8910 32.6730 -Georgia.ttf 43 G 39.4135 42.7644 57 A 1.0182 41.5962 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 58 E 1.2280 34.7056 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 59 B 1.2656 32.7646 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 60 v 13.2690 30.7403 28.0000 -Georgia.ttf 43 G 39.4135 42.7644 61 k -2.6359 31.4820 44.3365 -Georgia.ttf 43 G 39.4135 42.7644 62 J 0.7693 29.0144 41.5962 -Georgia.ttf 43 G 39.4135 42.7644 63 U 1.3365 42.2189 41.5962 -Georgia.ttf 43 G 39.4135 42.7644 64 j -2.3148 16.3365 56.6766 -Georgia.ttf 43 G 39.4135 42.7644 65 ( -1.6934 16.5865 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 66 7 11.0066 26.5818 40.5818 -Georgia.ttf 43 G 39.4135 42.7644 67 § 0.3915 22.5588 48.8094 -Georgia.ttf 43 G 39.4135 42.7644 68 $ -2.3814 27.3045 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 69 € -0.0374 36.6315 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 70 / -1.3743 23.2770 55.3045 -Georgia.ttf 43 G 39.4135 42.7644 71 C -0.2960 34.2950 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 72 * -0.0961 22.6315 19.9723 -Georgia.ttf 43 G 39.4135 42.7644 73 ” -1.5697 18.8041 15.1682 -Georgia.ttf 43 G 39.4135 42.7644 74 ? 0.0202 22.2277 42.0000 -Georgia.ttf 43 G 39.4135 42.7644 75 { -2.0453 21.2133 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 76 } -1.7340 21.2133 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 77 , 34.7223 9.5498 17.3047 -Georgia.ttf 43 G 39.4135 42.7644 78 I 0.9959 18.1351 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 79 ° 0.0826 18.4730 18.4730 -Georgia.ttf 43 G 39.4135 42.7644 80 K 0.9875 39.2597 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 81 H 1.1336 41.8878 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 82 q 11.1713 30.8903 43.1682 -Georgia.ttf 43 G 39.4135 42.7644 83 & -0.0143 39.2597 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 84 ’ -1.8387 8.3588 15.1682 -Georgia.ttf 43 G 39.4135 42.7644 85 [ -1.7131 15.1682 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 86 - 23.7862 17.0320 4.4730 -Georgia.ttf 43 G 39.4135 42.7644 87 Y 1.3785 38.9680 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 88 Q -0.0126 38.4953 52.5642 -Georgia.ttf 43 G 39.4135 42.7644 89 " -1.5605 17.7547 16.3365 -Georgia.ttf 43 G 39.4135 42.7644 90 ! 0.0857 7.9550 42.7644 -Georgia.ttf 43 G 39.4135 42.7644 91 x 13.7127 29.1682 28.0000 -Georgia.ttf 43 G 39.4135 42.7644 92 ) -1.3857 16.5865 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 93 = 18.5041 29.1682 14.4500 -Georgia.ttf 43 G 39.4135 42.7644 94 + 10.6464 29.4182 29.4182 -Georgia.ttf 43 G 39.4135 42.7644 95 X 1.1325 41.5962 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 96 » 15.1747 23.9998 23.2770 -Georgia.ttf 43 G 39.4135 42.7644 97 ' -1.5735 6.7867 16.3365 -Georgia.ttf 43 G 39.4135 42.7644 98 ¢ 5.2608 25.8241 44.7403 -Georgia.ttf 43 G 39.4135 42.7644 99 Z 1.1655 33.6912 40.4279 -Georgia.ttf 43 G 39.4135 42.7644 100 > 10.2102 26.4279 30.3365 -Georgia.ttf 43 G 39.4135 42.7644 101 ® -0.4923 50.3815 50.3815 -Georgia.ttf 43 G 39.4135 42.7644 102 © -0.7023 50.3815 50.3815 -Georgia.ttf 43 G 39.4135 42.7644 103 ] -1.4635 15.1682 52.4453 -Georgia.ttf 43 G 39.4135 42.7644 104 é -2.0110 24.6953 44.8092 -Georgia.ttf 43 G 39.4135 42.7644 105 z 13.5555 23.0270 28.0000 -Georgia.ttf 43 G 39.4135 42.7644 106 _ 46.6800 37.5498 2.7403 -Georgia.ttf 43 G 39.4135 42.7644 107 ¥ 1.0728 37.0770 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 1 t 7.3915 18.7851 38.0914 -Georgia.ttf 44 b 31.0781 46.4730 2 h 0.0510 31.5237 44.3365 -Georgia.ttf 44 b 31.0781 46.4730 3 a 15.1496 25.6635 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 4 n 15.1728 31.5237 29.1682 -Georgia.ttf 44 b 31.0781 46.4730 5 P 3.8116 31.6236 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 6 o 15.2391 27.2318 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 7 e 14.8985 24.6953 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 8 : 16.2970 7.9550 28.4038 -Georgia.ttf 44 b 31.0781 46.4730 9 r 15.3829 21.9550 29.1682 -Georgia.ttf 44 b 31.0781 46.4730 10 l 0.0188 14.8955 44.3365 -Georgia.ttf 44 b 31.0781 46.4730 11 i 0.3971 14.3538 43.8448 -Georgia.ttf 44 b 31.0781 46.4730 12 1 12.8675 19.8912 31.5047 -Georgia.ttf 44 b 31.0781 46.4730 13 | 1.2786 3.7547 55.3045 -Georgia.ttf 44 b 31.0781 46.4730 14 N 3.9169 42.0727 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 15 f 0.1186 22.1088 44.3365 -Georgia.ttf 44 b 31.0781 46.4730 16 g 14.9240 27.2356 42.0000 -Georgia.ttf 44 b 31.0781 46.4730 17 d 0.2887 30.9403 45.5047 -Georgia.ttf 44 b 31.0781 46.4730 18 W 3.8659 58.3365 40.6779 -Georgia.ttf 44 b 31.0781 46.4730 19 s 15.1699 20.9867 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 20 c 15.0074 24.1536 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 21 u 14.7981 31.5237 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 22 3 12.9894 27.3045 41.7500 -Georgia.ttf 44 b 31.0781 46.4730 23 ~ 23.4091 30.0403 10.4453 -Georgia.ttf 44 b 31.0781 46.4730 24 # 9.0373 29.1872 35.0594 -Georgia.ttf 44 b 31.0781 46.4730 25 O 2.4891 38.4953 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 26 ` 0.8229 11.6635 12.1362 -Georgia.ttf 44 b 31.0781 46.4730 27 @ 5.1774 44.6903 47.8912 -Georgia.ttf 44 b 31.0781 46.4730 28 F 4.1542 31.6736 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 29 S 2.8242 28.0000 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 30 p 14.9976 30.2638 42.0000 -Georgia.ttf 44 b 31.0781 46.4730 31 “ 1.0816 18.8041 15.1682 -Georgia.ttf 44 b 31.0781 46.4730 32 % 3.0290 41.5772 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 33 £ 2.5700 30.0448 41.5962 -Georgia.ttf 44 b 31.0781 46.4730 34 . 37.2122 7.9550 7.9550 -Georgia.ttf 44 b 31.0781 46.4730 35 2 12.8707 26.4090 31.5047 -Georgia.ttf 44 b 31.0781 46.4730 36 5 14.2442 26.8318 40.5818 -Georgia.ttf 44 b 31.0781 46.4730 37 m 15.1112 48.0867 29.1682 -Georgia.ttf 44 b 31.0781 46.4730 38 V 3.8329 41.3045 40.6779 -Georgia.ttf 44 b 31.0781 46.4730 39 6 2.7316 27.7083 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 40 w 16.2735 44.3365 28.0000 -Georgia.ttf 44 b 31.0781 46.4730 41 T 3.8093 36.3815 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 42 M 3.9324 49.8549 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 43 G 2.6921 39.4135 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 44 b 0.1766 31.0781 46.4730 -Georgia.ttf 44 b 31.0781 46.4730 45 9 12.7933 27.7083 41.9500 -Georgia.ttf 44 b 31.0781 46.4730 46 ; 16.5002 9.5498 38.2453 -Georgia.ttf 44 b 31.0781 46.4730 47 D 3.9340 38.0914 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 48 L 4.1556 32.4730 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 49 y 15.9457 30.7403 40.8318 -Georgia.ttf 44 b 31.0781 46.4730 50 ‘ 1.1000 8.3588 15.1682 -Georgia.ttf 44 b 31.0781 46.4730 51 \ 1.3011 23.2770 55.3045 -Georgia.ttf 44 b 31.0781 46.4730 52 R 3.9744 39.2597 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 53 < 12.8595 26.4279 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 54 4 12.8986 29.8448 41.7500 -Georgia.ttf 44 b 31.0781 46.4730 55 8 2.5883 28.7227 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 56 0 13.0449 29.8910 32.6730 -Georgia.ttf 44 b 31.0781 46.4730 57 A 3.8260 41.5962 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 58 E 3.6945 34.7056 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 59 B 3.9183 32.7646 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 60 v 16.3354 30.7403 28.0000 -Georgia.ttf 44 b 31.0781 46.4730 61 k 0.1721 31.4820 44.3365 -Georgia.ttf 44 b 31.0781 46.4730 62 J 3.7987 29.0144 41.5962 -Georgia.ttf 44 b 31.0781 46.4730 63 U 3.7691 42.2189 41.5962 -Georgia.ttf 44 b 31.0781 46.4730 64 j 0.8651 16.3365 56.6766 -Georgia.ttf 44 b 31.0781 46.4730 65 ( 1.0825 16.5865 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 66 7 14.1218 26.5818 40.5818 -Georgia.ttf 44 b 31.0781 46.4730 67 § 2.8876 22.5588 48.8094 -Georgia.ttf 44 b 31.0781 46.4730 68 $ 0.2161 27.3045 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 69 € 2.6619 36.6315 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 70 / 0.9230 23.2770 55.3045 -Georgia.ttf 44 b 31.0781 46.4730 71 C 2.6634 34.2950 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 72 * 3.2116 22.6315 19.9723 -Georgia.ttf 44 b 31.0781 46.4730 73 ” 1.2535 18.8041 15.1682 -Georgia.ttf 44 b 31.0781 46.4730 74 ? 2.8002 22.2277 42.0000 -Georgia.ttf 44 b 31.0781 46.4730 75 { 1.1006 21.2133 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 76 } 1.1632 21.2133 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 77 , 37.3837 9.5498 17.3047 -Georgia.ttf 44 b 31.0781 46.4730 78 I 4.1944 18.1351 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 79 ° 2.7051 18.4730 18.4730 -Georgia.ttf 44 b 31.0781 46.4730 80 K 3.9970 39.2597 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 81 H 4.0953 41.8878 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 82 q 14.1312 30.8903 43.1682 -Georgia.ttf 44 b 31.0781 46.4730 83 & 2.8489 39.2597 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 84 ’ 1.4619 8.3588 15.1682 -Georgia.ttf 44 b 31.0781 46.4730 85 [ 1.3024 15.1682 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 86 - 26.7486 17.0320 4.4730 -Georgia.ttf 44 b 31.0781 46.4730 87 Y 3.8316 38.9680 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 88 Q 2.9901 38.4953 52.5642 -Georgia.ttf 44 b 31.0781 46.4730 89 " 1.2164 17.7547 16.3365 -Georgia.ttf 44 b 31.0781 46.4730 90 ! 2.6227 7.9550 42.7644 -Georgia.ttf 44 b 31.0781 46.4730 91 x 16.2270 29.1682 28.0000 -Georgia.ttf 44 b 31.0781 46.4730 92 ) 1.1732 16.5865 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 93 = 21.3609 29.1682 14.4500 -Georgia.ttf 44 b 31.0781 46.4730 94 + 13.7462 29.4182 29.4182 -Georgia.ttf 44 b 31.0781 46.4730 95 X 3.6147 41.5962 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 96 » 17.9647 23.9998 23.2770 -Georgia.ttf 44 b 31.0781 46.4730 97 ' 1.0636 6.7867 16.3365 -Georgia.ttf 44 b 31.0781 46.4730 98 ¢ 8.1394 25.8241 44.7403 -Georgia.ttf 44 b 31.0781 46.4730 99 Z 4.0257 33.6912 40.4279 -Georgia.ttf 44 b 31.0781 46.4730 100 > 13.1132 26.4279 30.3365 -Georgia.ttf 44 b 31.0781 46.4730 101 ® 2.3661 50.3815 50.3815 -Georgia.ttf 44 b 31.0781 46.4730 102 © 2.3333 50.3815 50.3815 -Georgia.ttf 44 b 31.0781 46.4730 103 ] 0.9198 15.1682 52.4453 -Georgia.ttf 44 b 31.0781 46.4730 104 é 0.5013 24.6953 44.8092 -Georgia.ttf 44 b 31.0781 46.4730 105 z 16.7761 23.0270 28.0000 -Georgia.ttf 44 b 31.0781 46.4730 106 _ 49.2844 37.5498 2.7403 -Georgia.ttf 44 b 31.0781 46.4730 107 ¥ 4.0139 37.0770 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 1 t -5.8007 18.7851 38.0914 -Georgia.ttf 45 9 27.7083 41.9500 2 h -12.9587 31.5237 44.3365 -Georgia.ttf 45 9 27.7083 41.9500 3 a 2.4932 25.6635 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 4 n 2.4596 31.5237 29.1682 -Georgia.ttf 45 9 27.7083 41.9500 5 P -8.8116 31.6236 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 6 o 2.4593 27.2318 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 7 e 2.2494 24.6953 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 8 : 3.5330 7.9550 28.4038 -Georgia.ttf 45 9 27.7083 41.9500 9 r 2.3357 21.9550 29.1682 -Georgia.ttf 45 9 27.7083 41.9500 10 l -12.7089 14.8955 44.3365 -Georgia.ttf 45 9 27.7083 41.9500 11 i -12.1700 14.3538 43.8448 -Georgia.ttf 45 9 27.7083 41.9500 12 1 0.3225 19.8912 31.5047 -Georgia.ttf 45 9 27.7083 41.9500 13 | -11.5699 3.7547 55.3045 -Georgia.ttf 45 9 27.7083 41.9500 14 N -8.9401 42.0727 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 15 f -12.8155 22.1088 44.3365 -Georgia.ttf 45 9 27.7083 41.9500 16 g 2.0951 27.2356 42.0000 -Georgia.ttf 45 9 27.7083 41.9500 17 d -12.9054 30.9403 45.5047 -Georgia.ttf 45 9 27.7083 41.9500 18 W -9.0998 58.3365 40.6779 -Georgia.ttf 45 9 27.7083 41.9500 19 s 2.3008 20.9867 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 20 c 2.6362 24.1536 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 21 u 2.1802 31.5237 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 22 3 -0.0678 27.3045 41.7500 -Georgia.ttf 45 9 27.7083 41.9500 23 ~ 10.1181 30.0403 10.4453 -Georgia.ttf 45 9 27.7083 41.9500 24 # -3.3766 29.1872 35.0594 -Georgia.ttf 45 9 27.7083 41.9500 25 O -10.0785 38.4953 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 26 ` -12.1037 11.6635 12.1362 -Georgia.ttf 45 9 27.7083 41.9500 27 @ -7.4009 44.6903 47.8912 -Georgia.ttf 45 9 27.7083 41.9500 28 F -8.8256 31.6736 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 29 S -10.0650 28.0000 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 30 p 2.2202 30.2638 42.0000 -Georgia.ttf 45 9 27.7083 41.9500 31 “ -11.9788 18.8041 15.1682 -Georgia.ttf 45 9 27.7083 41.9500 32 % -10.2625 41.5772 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 33 £ -9.7616 30.0448 41.5962 -Georgia.ttf 45 9 27.7083 41.9500 34 . 23.9124 7.9550 7.9550 -Georgia.ttf 45 9 27.7083 41.9500 35 2 -0.3132 26.4090 31.5047 -Georgia.ttf 45 9 27.7083 41.9500 36 5 1.2956 26.8318 40.5818 -Georgia.ttf 45 9 27.7083 41.9500 37 m 1.9849 48.0867 29.1682 -Georgia.ttf 45 9 27.7083 41.9500 38 V -8.9232 41.3045 40.6779 -Georgia.ttf 45 9 27.7083 41.9500 39 6 -10.1478 27.7083 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 40 w 3.4593 44.3365 28.0000 -Georgia.ttf 45 9 27.7083 41.9500 41 T -8.6286 36.3815 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 42 M -8.6661 49.8549 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 43 G -9.8959 39.4135 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 44 b -12.6513 31.0781 46.4730 -Georgia.ttf 45 9 27.7083 41.9500 45 9 0.2227 27.7083 41.9500 -Georgia.ttf 45 9 27.7083 41.9500 46 ; 3.6727 9.5498 38.2453 -Georgia.ttf 45 9 27.7083 41.9500 47 D -8.7546 38.0914 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 48 L -8.9968 32.4730 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 49 y 3.3606 30.7403 40.8318 -Georgia.ttf 45 9 27.7083 41.9500 50 ‘ -11.6615 8.3588 15.1682 -Georgia.ttf 45 9 27.7083 41.9500 51 \ -11.6705 23.2770 55.3045 -Georgia.ttf 45 9 27.7083 41.9500 52 R -8.7361 39.2597 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 53 < -0.0057 26.4279 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 54 4 -0.0955 29.8448 41.7500 -Georgia.ttf 45 9 27.7083 41.9500 55 8 -9.9370 28.7227 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 56 0 -0.1686 29.8910 32.6730 -Georgia.ttf 45 9 27.7083 41.9500 57 A -8.8327 41.5962 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 58 E -8.7219 34.7056 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 59 B -8.9240 32.7646 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 60 v 3.7723 30.7403 28.0000 -Georgia.ttf 45 9 27.7083 41.9500 61 k -13.2224 31.4820 44.3365 -Georgia.ttf 45 9 27.7083 41.9500 62 J -9.1971 29.0144 41.5962 -Georgia.ttf 45 9 27.7083 41.9500 63 U -8.9013 42.2189 41.5962 -Georgia.ttf 45 9 27.7083 41.9500 64 j -12.2289 16.3365 56.6766 -Georgia.ttf 45 9 27.7083 41.9500 65 ( -11.7766 16.5865 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 66 7 1.0825 26.5818 40.5818 -Georgia.ttf 45 9 27.7083 41.9500 67 § -9.9811 22.5588 48.8094 -Georgia.ttf 45 9 27.7083 41.9500 68 $ -12.6874 27.3045 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 69 € -10.1457 36.6315 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 70 / -11.6792 23.2770 55.3045 -Georgia.ttf 45 9 27.7083 41.9500 71 C -10.0145 34.2950 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 72 * -10.4110 22.6315 19.9723 -Georgia.ttf 45 9 27.7083 41.9500 73 ” -11.6963 18.8041 15.1682 -Georgia.ttf 45 9 27.7083 41.9500 74 ? -10.2384 22.2277 42.0000 -Georgia.ttf 45 9 27.7083 41.9500 75 { -11.5463 21.2133 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 76 } -11.6635 21.2133 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 77 , 24.4750 9.5498 17.3047 -Georgia.ttf 45 9 27.7083 41.9500 78 I -9.0390 18.1351 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 79 ° -10.0400 18.4730 18.4730 -Georgia.ttf 45 9 27.7083 41.9500 80 K -8.8885 39.2597 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 81 H -9.0090 41.8878 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 82 q 1.2994 30.8903 43.1682 -Georgia.ttf 45 9 27.7083 41.9500 83 & -9.7430 39.2597 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 84 ’ -11.8228 8.3588 15.1682 -Georgia.ttf 45 9 27.7083 41.9500 85 [ -11.7178 15.1682 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 86 - 13.9068 17.0320 4.4730 -Georgia.ttf 45 9 27.7083 41.9500 87 Y -8.8879 38.9680 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 88 Q -10.0015 38.4953 52.5642 -Georgia.ttf 45 9 27.7083 41.9500 89 " -11.4907 17.7547 16.3365 -Georgia.ttf 45 9 27.7083 41.9500 90 ! -10.0942 7.9550 42.7644 -Georgia.ttf 45 9 27.7083 41.9500 91 x 3.4152 29.1682 28.0000 -Georgia.ttf 45 9 27.7083 41.9500 92 ) -11.3277 16.5865 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 93 = 8.4001 29.1682 14.4500 -Georgia.ttf 45 9 27.7083 41.9500 94 + 0.9420 29.4182 29.4182 -Georgia.ttf 45 9 27.7083 41.9500 95 X -8.7549 41.5962 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 96 » 4.7963 23.9998 23.2770 -Georgia.ttf 45 9 27.7083 41.9500 97 ' -11.7479 6.7867 16.3365 -Georgia.ttf 45 9 27.7083 41.9500 98 ¢ -4.7146 25.8241 44.7403 -Georgia.ttf 45 9 27.7083 41.9500 99 Z -9.0121 33.6912 40.4279 -Georgia.ttf 45 9 27.7083 41.9500 100 > 0.2455 26.4279 30.3365 -Georgia.ttf 45 9 27.7083 41.9500 101 ® -10.5815 50.3815 50.3815 -Georgia.ttf 45 9 27.7083 41.9500 102 © -10.8192 50.3815 50.3815 -Georgia.ttf 45 9 27.7083 41.9500 103 ] -11.4074 15.1682 52.4453 -Georgia.ttf 45 9 27.7083 41.9500 104 é -12.1960 24.6953 44.8092 -Georgia.ttf 45 9 27.7083 41.9500 105 z 3.5464 23.0270 28.0000 -Georgia.ttf 45 9 27.7083 41.9500 106 _ 36.6544 37.5498 2.7403 -Georgia.ttf 45 9 27.7083 41.9500 107 ¥ -8.9158 37.0770 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 1 t -8.9825 18.7851 38.0914 -Georgia.ttf 46 ; 9.5498 38.2453 2 h -16.2453 31.5237 44.3365 -Georgia.ttf 46 ; 9.5498 38.2453 3 a -1.2182 25.6635 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 4 n -1.1682 31.5237 29.1682 -Georgia.ttf 46 ; 9.5498 38.2453 5 P -12.2610 31.6236 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 6 o -1.1853 27.2318 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 7 e -1.2318 24.6953 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 8 : -0.1885 7.9550 28.4038 -Georgia.ttf 46 ; 9.5498 38.2453 9 r -1.2911 21.9550 29.1682 -Georgia.ttf 46 ; 9.5498 38.2453 10 l -16.3281 14.8955 44.3365 -Georgia.ttf 46 ; 9.5498 38.2453 11 i -15.9622 14.3538 43.8448 -Georgia.ttf 46 ; 9.5498 38.2453 12 1 -3.7587 19.8912 31.5047 -Georgia.ttf 46 ; 9.5498 38.2453 13 | -15.2484 3.7547 55.3045 -Georgia.ttf 46 ; 9.5498 38.2453 14 N -12.5383 42.0727 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 15 f -16.3749 22.1088 44.3365 -Georgia.ttf 46 ; 9.5498 38.2453 16 g -1.3982 27.2356 42.0000 -Georgia.ttf 46 ; 9.5498 38.2453 17 d -16.2651 30.9403 45.5047 -Georgia.ttf 46 ; 9.5498 38.2453 18 W -12.5535 58.3365 40.6779 -Georgia.ttf 46 ; 9.5498 38.2453 19 s -1.2911 20.9867 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 20 c -1.4524 24.1536 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 21 u -1.2029 31.5237 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 22 3 -3.2595 27.3045 41.7500 -Georgia.ttf 46 ; 9.5498 38.2453 23 ~ 6.9498 30.0403 10.4453 -Georgia.ttf 46 ; 9.5498 38.2453 24 # -7.2006 29.1872 35.0594 -Georgia.ttf 46 ; 9.5498 38.2453 25 O -13.6846 38.4953 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 26 ` -15.6112 11.6635 12.1362 -Georgia.ttf 46 ; 9.5498 38.2453 27 @ -10.7757 44.6903 47.8912 -Georgia.ttf 46 ; 9.5498 38.2453 28 F -12.3895 31.6736 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 29 S -13.6416 28.0000 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 30 p -1.1924 30.2638 42.0000 -Georgia.ttf 46 ; 9.5498 38.2453 31 “ -15.2938 18.8041 15.1682 -Georgia.ttf 46 ; 9.5498 38.2453 32 % -13.6314 41.5772 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 33 £ -13.6059 30.0448 41.5962 -Georgia.ttf 46 ; 9.5498 38.2453 34 . 20.6973 7.9550 7.9550 -Georgia.ttf 46 ; 9.5498 38.2453 35 2 -3.7604 26.4090 31.5047 -Georgia.ttf 46 ; 9.5498 38.2453 36 5 -2.4075 26.8318 40.5818 -Georgia.ttf 46 ; 9.5498 38.2453 37 m -1.1168 48.0867 29.1682 -Georgia.ttf 46 ; 9.5498 38.2453 38 V -12.3565 41.3045 40.6779 -Georgia.ttf 46 ; 9.5498 38.2453 39 6 -13.5247 27.7083 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 40 w 0.0885 44.3365 28.0000 -Georgia.ttf 46 ; 9.5498 38.2453 41 T -12.4192 36.3815 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 42 M -12.2732 49.8549 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 43 G -13.6531 39.4135 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 44 b -16.3365 31.0781 46.4730 -Georgia.ttf 46 ; 9.5498 38.2453 45 9 -3.5289 27.7083 41.9500 -Georgia.ttf 46 ; 9.5498 38.2453 46 ; 0.0105 9.5498 38.2453 -Georgia.ttf 46 ; 9.5498 38.2453 47 D -12.5910 38.0914 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 48 L -12.5196 32.4730 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 49 y 0.0395 30.7403 40.8318 -Georgia.ttf 46 ; 9.5498 38.2453 50 ‘ -15.0871 8.3588 15.1682 -Georgia.ttf 46 ; 9.5498 38.2453 51 \ -15.3411 23.2770 55.3045 -Georgia.ttf 46 ; 9.5498 38.2453 52 R -12.2967 39.2597 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 53 < -3.3956 26.4279 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 54 4 -3.6577 29.8448 41.7500 -Georgia.ttf 46 ; 9.5498 38.2453 55 8 -13.5007 28.7227 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 56 0 -3.6835 29.8910 32.6730 -Georgia.ttf 46 ; 9.5498 38.2453 57 A -12.5462 41.5962 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 58 E -12.4279 34.7056 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 59 B -12.2513 32.7646 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 60 v -0.0774 30.7403 28.0000 -Georgia.ttf 46 ; 9.5498 38.2453 61 k -16.4236 31.4820 44.3365 -Georgia.ttf 46 ; 9.5498 38.2453 62 J -12.3467 29.0144 41.5962 -Georgia.ttf 46 ; 9.5498 38.2453 63 U -12.5475 42.2189 41.5962 -Georgia.ttf 46 ; 9.5498 38.2453 64 j -15.8091 16.3365 56.6766 -Georgia.ttf 46 ; 9.5498 38.2453 65 ( -15.1585 16.5865 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 66 7 -2.2494 26.5818 40.5818 -Georgia.ttf 46 ; 9.5498 38.2453 67 § -13.4404 22.5588 48.8094 -Georgia.ttf 46 ; 9.5498 38.2453 68 $ -16.0801 27.3045 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 69 € -13.7476 36.6315 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 70 / -14.8796 23.2770 55.3045 -Georgia.ttf 46 ; 9.5498 38.2453 71 C -13.7134 34.2950 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 72 * -13.2763 22.6315 19.9723 -Georgia.ttf 46 ; 9.5498 38.2453 73 ” -15.3196 18.8041 15.1682 -Georgia.ttf 46 ; 9.5498 38.2453 74 ? -13.6920 22.2277 42.0000 -Georgia.ttf 46 ; 9.5498 38.2453 75 { -15.3268 21.2133 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 76 } -15.2686 21.2133 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 77 , 21.2697 9.5498 17.3047 -Georgia.ttf 46 ; 9.5498 38.2453 78 I -12.3775 18.1351 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 79 ° -13.7644 18.4730 18.4730 -Georgia.ttf 46 ; 9.5498 38.2453 80 K -12.2736 39.2597 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 81 H -12.2491 41.8878 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 82 q -2.3924 30.8903 43.1682 -Georgia.ttf 46 ; 9.5498 38.2453 83 & -13.6406 39.2597 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 84 ’ -15.0398 8.3588 15.1682 -Georgia.ttf 46 ; 9.5498 38.2453 85 [ -15.0825 15.1682 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 86 - 10.1836 17.0320 4.4730 -Georgia.ttf 46 ; 9.5498 38.2453 87 Y -12.3811 38.9680 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 88 Q -13.5545 38.4953 52.5642 -Georgia.ttf 46 ; 9.5498 38.2453 89 " -15.2670 17.7547 16.3365 -Georgia.ttf 46 ; 9.5498 38.2453 90 ! -13.7575 7.9550 42.7644 -Georgia.ttf 46 ; 9.5498 38.2453 91 x -0.1088 29.1682 28.0000 -Georgia.ttf 46 ; 9.5498 38.2453 92 ) -15.1645 16.5865 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 93 = 4.9685 29.1682 14.4500 -Georgia.ttf 46 ; 9.5498 38.2453 94 + -2.5953 29.4182 29.4182 -Georgia.ttf 46 ; 9.5498 38.2453 95 X -12.6874 41.5962 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 96 » 1.7190 23.9998 23.2770 -Georgia.ttf 46 ; 9.5498 38.2453 97 ' -15.1311 6.7867 16.3365 -Georgia.ttf 46 ; 9.5498 38.2453 98 ¢ -8.5424 25.8241 44.7403 -Georgia.ttf 46 ; 9.5498 38.2453 99 Z -12.3116 33.6912 40.4279 -Georgia.ttf 46 ; 9.5498 38.2453 100 > -3.4146 26.4279 30.3365 -Georgia.ttf 46 ; 9.5498 38.2453 101 ® -14.0597 50.3815 50.3815 -Georgia.ttf 46 ; 9.5498 38.2453 102 © -14.0000 50.3815 50.3815 -Georgia.ttf 46 ; 9.5498 38.2453 103 ] -15.0256 15.1682 52.4453 -Georgia.ttf 46 ; 9.5498 38.2453 104 é -15.7541 24.6953 44.8092 -Georgia.ttf 46 ; 9.5498 38.2453 105 z -0.2627 23.0270 28.0000 -Georgia.ttf 46 ; 9.5498 38.2453 106 _ 33.1028 37.5498 2.7403 -Georgia.ttf 46 ; 9.5498 38.2453 107 ¥ -12.3884 37.0770 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 1 t 3.6849 18.7851 38.0914 -Georgia.ttf 47 D 38.0914 40.4279 2 h -4.0191 31.5237 44.3365 -Georgia.ttf 47 D 38.0914 40.4279 3 a 11.1309 25.6635 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 4 n 11.3727 31.5237 29.1682 -Georgia.ttf 47 D 38.0914 40.4279 5 P -0.0400 31.6236 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 6 o 11.1549 27.2318 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 7 e 11.4867 24.6953 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 8 : 12.7379 7.9550 28.4038 -Georgia.ttf 47 D 38.0914 40.4279 9 r 11.1702 21.9550 29.1682 -Georgia.ttf 47 D 38.0914 40.4279 10 l -3.7413 14.8955 44.3365 -Georgia.ttf 47 D 38.0914 40.4279 11 i -3.3950 14.3538 43.8448 -Georgia.ttf 47 D 38.0914 40.4279 12 1 9.1087 19.8912 31.5047 -Georgia.ttf 47 D 38.0914 40.4279 13 | -2.9203 3.7547 55.3045 -Georgia.ttf 47 D 38.0914 40.4279 14 N -0.1259 42.0727 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 15 f -3.7981 22.1088 44.3365 -Georgia.ttf 47 D 38.0914 40.4279 16 g 11.1656 27.2356 42.0000 -Georgia.ttf 47 D 38.0914 40.4279 17 d -3.6561 30.9403 45.5047 -Georgia.ttf 47 D 38.0914 40.4279 18 W 0.2859 58.3365 40.6779 -Georgia.ttf 47 D 38.0914 40.4279 19 s 10.9106 20.9867 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 20 c 11.3486 24.1536 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 21 u 11.0998 31.5237 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 22 3 8.9803 27.3045 41.7500 -Georgia.ttf 47 D 38.0914 40.4279 23 ~ 19.2818 30.0403 10.4453 -Georgia.ttf 47 D 38.0914 40.4279 24 # 5.4248 29.1872 35.0594 -Georgia.ttf 47 D 38.0914 40.4279 25 O -1.1869 38.4953 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 26 ` -3.2970 11.6635 12.1362 -Georgia.ttf 47 D 38.0914 40.4279 27 @ 1.1604 44.6903 47.8912 -Georgia.ttf 47 D 38.0914 40.4279 28 F 0.0325 31.6736 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 29 S -0.8314 28.0000 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 30 p 10.9665 30.2638 42.0000 -Georgia.ttf 47 D 38.0914 40.4279 31 “ -2.3909 18.8041 15.1682 -Georgia.ttf 47 D 38.0914 40.4279 32 % -0.8208 41.5772 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 33 £ -1.3906 30.0448 41.5962 -Georgia.ttf 47 D 38.0914 40.4279 34 . 33.0398 7.9550 7.9550 -Georgia.ttf 47 D 38.0914 40.4279 35 2 9.2087 26.4090 31.5047 -Georgia.ttf 47 D 38.0914 40.4279 36 5 10.2097 26.8318 40.5818 -Georgia.ttf 47 D 38.0914 40.4279 37 m 11.0269 48.0867 29.1682 -Georgia.ttf 47 D 38.0914 40.4279 38 V 0.0597 41.3045 40.6779 -Georgia.ttf 47 D 38.0914 40.4279 39 6 -1.3095 27.7083 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 40 w 12.7718 44.3365 28.0000 -Georgia.ttf 47 D 38.0914 40.4279 41 T 0.1683 36.3815 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 42 M -0.2758 49.8549 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 43 G -1.2813 39.4135 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 44 b -4.0563 31.0781 46.4730 -Georgia.ttf 47 D 38.0914 40.4279 45 9 9.1154 27.7083 41.9500 -Georgia.ttf 47 D 38.0914 40.4279 46 ; 12.4545 9.5498 38.2453 -Georgia.ttf 47 D 38.0914 40.4279 47 D -0.0487 38.0914 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 48 L 0.0356 32.4730 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 49 y 12.4279 30.7403 40.8318 -Georgia.ttf 47 D 38.0914 40.4279 50 ‘ -2.6142 8.3588 15.1682 -Georgia.ttf 47 D 38.0914 40.4279 51 \ -2.8632 23.2770 55.3045 -Georgia.ttf 47 D 38.0914 40.4279 52 R 0.2257 39.2597 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 53 < 9.3164 26.4279 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 54 4 8.9060 29.8448 41.7500 -Georgia.ttf 47 D 38.0914 40.4279 55 8 -1.2979 28.7227 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 56 0 8.5885 29.8910 32.6730 -Georgia.ttf 47 D 38.0914 40.4279 57 A -0.3477 41.5962 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 58 E -0.1233 34.7056 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 59 B 0.1631 32.7646 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 60 v 12.1577 30.7403 28.0000 -Georgia.ttf 47 D 38.0914 40.4279 61 k -3.8774 31.4820 44.3365 -Georgia.ttf 47 D 38.0914 40.4279 62 J 0.3758 29.0144 41.5962 -Georgia.ttf 47 D 38.0914 40.4279 63 U 0.1050 42.2189 41.5962 -Georgia.ttf 47 D 38.0914 40.4279 64 j -3.4883 16.3365 56.6766 -Georgia.ttf 47 D 38.0914 40.4279 65 ( -2.8409 16.5865 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 66 7 10.0734 26.5818 40.5818 -Georgia.ttf 47 D 38.0914 40.4279 67 § -1.2596 22.5588 48.8094 -Georgia.ttf 47 D 38.0914 40.4279 68 $ -3.7939 27.3045 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 69 € -1.1244 36.6315 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 70 / -2.7014 23.2770 55.3045 -Georgia.ttf 47 D 38.0914 40.4279 71 C -1.2456 34.2950 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 72 * -1.1228 22.6315 19.9723 -Georgia.ttf 47 D 38.0914 40.4279 73 ” -2.8974 18.8041 15.1682 -Georgia.ttf 47 D 38.0914 40.4279 74 ? -1.4218 22.2277 42.0000 -Georgia.ttf 47 D 38.0914 40.4279 75 { -2.7051 21.2133 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 76 } -2.4234 21.2133 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 77 , 33.2328 9.5498 17.3047 -Georgia.ttf 47 D 38.0914 40.4279 78 I 0.1809 18.1351 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 79 ° -0.9784 18.4730 18.4730 -Georgia.ttf 47 D 38.0914 40.4279 80 K 0.1260 39.2597 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 81 H 0.1046 41.8878 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 82 q 10.0113 30.8903 43.1682 -Georgia.ttf 47 D 38.0914 40.4279 83 & -1.0137 39.2597 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 84 ’ -2.6189 8.3588 15.1682 -Georgia.ttf 47 D 38.0914 40.4279 85 [ -2.7186 15.1682 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 86 - 22.5411 17.0320 4.4730 -Georgia.ttf 47 D 38.0914 40.4279 87 Y -0.0847 38.9680 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 88 Q -1.1315 38.4953 52.5642 -Georgia.ttf 47 D 38.0914 40.4279 89 " -2.8774 17.7547 16.3365 -Georgia.ttf 47 D 38.0914 40.4279 90 ! -1.4265 7.9550 42.7644 -Georgia.ttf 47 D 38.0914 40.4279 91 x 12.2726 29.1682 28.0000 -Georgia.ttf 47 D 38.0914 40.4279 92 ) -2.4930 16.5865 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 93 = 17.0080 29.1682 14.4500 -Georgia.ttf 47 D 38.0914 40.4279 94 + 9.6746 29.4182 29.4182 -Georgia.ttf 47 D 38.0914 40.4279 95 X -0.1201 41.5962 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 96 » 14.0172 23.9998 23.2770 -Georgia.ttf 47 D 38.0914 40.4279 97 ' -2.6926 6.7867 16.3365 -Georgia.ttf 47 D 38.0914 40.4279 98 ¢ 3.6062 25.8241 44.7403 -Georgia.ttf 47 D 38.0914 40.4279 99 Z -0.0407 33.6912 40.4279 -Georgia.ttf 47 D 38.0914 40.4279 100 > 9.2549 26.4279 30.3365 -Georgia.ttf 47 D 38.0914 40.4279 101 ® -1.9015 50.3815 50.3815 -Georgia.ttf 47 D 38.0914 40.4279 102 © -1.5731 50.3815 50.3815 -Georgia.ttf 47 D 38.0914 40.4279 103 ] -3.0675 15.1682 52.4453 -Georgia.ttf 47 D 38.0914 40.4279 104 é -3.0179 24.6953 44.8092 -Georgia.ttf 47 D 38.0914 40.4279 105 z 12.6679 23.0270 28.0000 -Georgia.ttf 47 D 38.0914 40.4279 106 _ 45.2128 37.5498 2.7403 -Georgia.ttf 47 D 38.0914 40.4279 107 ¥ -0.0844 37.0770 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 1 t 3.3916 18.7851 38.0914 -Georgia.ttf 48 L 32.4730 40.4279 2 h -4.2400 31.5237 44.3365 -Georgia.ttf 48 L 32.4730 40.4279 3 a 11.1911 25.6635 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 4 n 11.0229 31.5237 29.1682 -Georgia.ttf 48 L 32.4730 40.4279 5 P 0.0931 31.6236 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 6 o 11.2635 27.2318 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 7 e 11.1586 24.6953 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 8 : 12.7387 7.9550 28.4038 -Georgia.ttf 48 L 32.4730 40.4279 9 r 11.3506 21.9550 29.1682 -Georgia.ttf 48 L 32.4730 40.4279 10 l -3.8784 14.8955 44.3365 -Georgia.ttf 48 L 32.4730 40.4279 11 i -3.4034 14.3538 43.8448 -Georgia.ttf 48 L 32.4730 40.4279 12 1 8.9869 19.8912 31.5047 -Georgia.ttf 48 L 32.4730 40.4279 13 | -2.7876 3.7547 55.3045 -Georgia.ttf 48 L 32.4730 40.4279 14 N 0.0631 42.0727 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 15 f -3.9113 22.1088 44.3365 -Georgia.ttf 48 L 32.4730 40.4279 16 g 11.7162 27.2356 42.0000 -Georgia.ttf 48 L 32.4730 40.4279 17 d -4.1083 30.9403 45.5047 -Georgia.ttf 48 L 32.4730 40.4279 18 W 0.1377 58.3365 40.6779 -Georgia.ttf 48 L 32.4730 40.4279 19 s 11.4144 20.9867 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 20 c 11.1180 24.1536 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 21 u 11.0744 31.5237 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 22 3 9.0103 27.3045 41.7500 -Georgia.ttf 48 L 32.4730 40.4279 23 ~ 19.1932 30.0403 10.4453 -Georgia.ttf 48 L 32.4730 40.4279 24 # 5.5711 29.1872 35.0594 -Georgia.ttf 48 L 32.4730 40.4279 25 O -1.0636 38.4953 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 26 ` -3.1946 11.6635 12.1362 -Georgia.ttf 48 L 32.4730 40.4279 27 @ 1.6385 44.6903 47.8912 -Georgia.ttf 48 L 32.4730 40.4279 28 F -0.1301 31.6736 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 29 S -1.1996 28.0000 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 30 p 11.1785 30.2638 42.0000 -Georgia.ttf 48 L 32.4730 40.4279 31 “ -2.7610 18.8041 15.1682 -Georgia.ttf 48 L 32.4730 40.4279 32 % -1.1458 41.5772 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 33 £ -1.0913 30.0448 41.5962 -Georgia.ttf 48 L 32.4730 40.4279 34 . 32.6518 7.9550 7.9550 -Georgia.ttf 48 L 32.4730 40.4279 35 2 8.9631 26.4090 31.5047 -Georgia.ttf 48 L 32.4730 40.4279 36 5 9.9204 26.8318 40.5818 -Georgia.ttf 48 L 32.4730 40.4279 37 m 11.0312 48.0867 29.1682 -Georgia.ttf 48 L 32.4730 40.4279 38 V 0.2242 41.3045 40.6779 -Georgia.ttf 48 L 32.4730 40.4279 39 6 -0.9188 27.7083 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 40 w 12.3638 44.3365 28.0000 -Georgia.ttf 48 L 32.4730 40.4279 41 T 0.0385 36.3815 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 42 M 0.0045 49.8549 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 43 G -1.1923 39.4135 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 44 b -4.0897 31.0781 46.4730 -Georgia.ttf 48 L 32.4730 40.4279 45 9 8.9357 27.7083 41.9500 -Georgia.ttf 48 L 32.4730 40.4279 46 ; 12.3814 9.5498 38.2453 -Georgia.ttf 48 L 32.4730 40.4279 47 D -0.1429 38.0914 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 48 L -0.2300 32.4730 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 49 y 12.3055 30.7403 40.8318 -Georgia.ttf 48 L 32.4730 40.4279 50 ‘ -2.8407 8.3588 15.1682 -Georgia.ttf 48 L 32.4730 40.4279 51 \ -2.5886 23.2770 55.3045 -Georgia.ttf 48 L 32.4730 40.4279 52 R -0.1846 39.2597 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 53 < 9.2593 26.4279 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 54 4 9.1202 29.8448 41.7500 -Georgia.ttf 48 L 32.4730 40.4279 55 8 -1.0700 28.7227 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 56 0 9.1128 29.8910 32.6730 -Georgia.ttf 48 L 32.4730 40.4279 57 A 0.0877 41.5962 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 58 E 0.1701 34.7056 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 59 B 0.1455 32.7646 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 60 v 12.4685 30.7403 28.0000 -Georgia.ttf 48 L 32.4730 40.4279 61 k -3.6986 31.4820 44.3365 -Georgia.ttf 48 L 32.4730 40.4279 62 J -0.1669 29.0144 41.5962 -Georgia.ttf 48 L 32.4730 40.4279 63 U -0.2210 42.2189 41.5962 -Georgia.ttf 48 L 32.4730 40.4279 64 j -3.4225 16.3365 56.6766 -Georgia.ttf 48 L 32.4730 40.4279 65 ( -2.7365 16.5865 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 66 7 10.1128 26.5818 40.5818 -Georgia.ttf 48 L 32.4730 40.4279 67 § -1.2943 22.5588 48.8094 -Georgia.ttf 48 L 32.4730 40.4279 68 $ -3.7160 27.3045 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 69 € -1.0046 36.6315 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 70 / -2.5856 23.2770 55.3045 -Georgia.ttf 48 L 32.4730 40.4279 71 C -1.1617 34.2950 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 72 * -1.1980 22.6315 19.9723 -Georgia.ttf 48 L 32.4730 40.4279 73 ” -2.6137 18.8041 15.1682 -Georgia.ttf 48 L 32.4730 40.4279 74 ? -1.1451 22.2277 42.0000 -Georgia.ttf 48 L 32.4730 40.4279 75 { -2.8196 21.2133 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 76 } -2.5772 21.2133 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 77 , 33.5213 9.5498 17.3047 -Georgia.ttf 48 L 32.4730 40.4279 78 I -0.1891 18.1351 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 79 ° -1.2337 18.4730 18.4730 -Georgia.ttf 48 L 32.4730 40.4279 80 K -0.1169 39.2597 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 81 H 0.0592 41.8878 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 82 q 10.4011 30.8903 43.1682 -Georgia.ttf 48 L 32.4730 40.4279 83 & -1.2002 39.2597 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 84 ’ -2.7635 8.3588 15.1682 -Georgia.ttf 48 L 32.4730 40.4279 85 [ -2.8107 15.1682 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 86 - 22.8355 17.0320 4.4730 -Georgia.ttf 48 L 32.4730 40.4279 87 Y -0.1669 38.9680 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 88 Q -1.0913 38.4953 52.5642 -Georgia.ttf 48 L 32.4730 40.4279 89 " -2.8510 17.7547 16.3365 -Georgia.ttf 48 L 32.4730 40.4279 90 ! -1.3883 7.9550 42.7644 -Georgia.ttf 48 L 32.4730 40.4279 91 x 12.2402 29.1682 28.0000 -Georgia.ttf 48 L 32.4730 40.4279 92 ) -2.6606 16.5865 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 93 = 17.0899 29.1682 14.4500 -Georgia.ttf 48 L 32.4730 40.4279 94 + 9.9768 29.4182 29.4182 -Georgia.ttf 48 L 32.4730 40.4279 95 X -0.1672 41.5962 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 96 » 13.9212 23.9998 23.2770 -Georgia.ttf 48 L 32.4730 40.4279 97 ' -2.8650 6.7867 16.3365 -Georgia.ttf 48 L 32.4730 40.4279 98 ¢ 4.0184 25.8241 44.7403 -Georgia.ttf 48 L 32.4730 40.4279 99 Z 0.1593 33.6912 40.4279 -Georgia.ttf 48 L 32.4730 40.4279 100 > 9.0694 26.4279 30.3365 -Georgia.ttf 48 L 32.4730 40.4279 101 ® -1.6165 50.3815 50.3815 -Georgia.ttf 48 L 32.4730 40.4279 102 © -1.5304 50.3815 50.3815 -Georgia.ttf 48 L 32.4730 40.4279 103 ] -2.8400 15.1682 52.4453 -Georgia.ttf 48 L 32.4730 40.4279 104 é -3.0954 24.6953 44.8092 -Georgia.ttf 48 L 32.4730 40.4279 105 z 12.5615 23.0270 28.0000 -Georgia.ttf 48 L 32.4730 40.4279 106 _ 45.5872 37.5498 2.7403 -Georgia.ttf 48 L 32.4730 40.4279 107 ¥ -0.0952 37.0770 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 1 t -8.8777 18.7851 38.0914 -Georgia.ttf 49 y 30.7403 40.8318 2 h -16.3249 31.5237 44.3365 -Georgia.ttf 49 y 30.7403 40.8318 3 a -1.0129 25.6635 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 4 n -1.1869 31.5237 29.1682 -Georgia.ttf 49 y 30.7403 40.8318 5 P -12.4594 31.6236 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 6 o -1.6554 27.2318 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 7 e -0.9170 24.6953 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 8 : -0.0857 7.9550 28.4038 -Georgia.ttf 49 y 30.7403 40.8318 9 r -1.2452 21.9550 29.1682 -Georgia.ttf 49 y 30.7403 40.8318 10 l -16.2728 14.8955 44.3365 -Georgia.ttf 49 y 30.7403 40.8318 11 i -16.2063 14.3538 43.8448 -Georgia.ttf 49 y 30.7403 40.8318 12 1 -3.5678 19.8912 31.5047 -Georgia.ttf 49 y 30.7403 40.8318 13 | -15.3565 3.7547 55.3045 -Georgia.ttf 49 y 30.7403 40.8318 14 N -12.5109 42.0727 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 15 f -16.4829 22.1088 44.3365 -Georgia.ttf 49 y 30.7403 40.8318 16 g -1.1099 27.2356 42.0000 -Georgia.ttf 49 y 30.7403 40.8318 17 d -16.4149 30.9403 45.5047 -Georgia.ttf 49 y 30.7403 40.8318 18 W -12.6447 58.3365 40.6779 -Georgia.ttf 49 y 30.7403 40.8318 19 s -1.2387 20.9867 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 20 c -0.9413 24.1536 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 21 u -1.2456 31.5237 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 22 3 -3.3878 27.3045 41.7500 -Georgia.ttf 49 y 30.7403 40.8318 23 ~ 6.8338 30.0403 10.4453 -Georgia.ttf 49 y 30.7403 40.8318 24 # -6.7313 29.1872 35.0594 -Georgia.ttf 49 y 30.7403 40.8318 25 O -13.9225 38.4953 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 26 ` -15.6424 11.6635 12.1362 -Georgia.ttf 49 y 30.7403 40.8318 27 @ -11.1463 44.6903 47.8912 -Georgia.ttf 49 y 30.7403 40.8318 28 F -12.6347 31.6736 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 29 S -13.6976 28.0000 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 30 p -1.3827 30.2638 42.0000 -Georgia.ttf 49 y 30.7403 40.8318 31 “ -14.9895 18.8041 15.1682 -Georgia.ttf 49 y 30.7403 40.8318 32 % -13.7629 41.5772 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 33 £ -13.5787 30.0448 41.5962 -Georgia.ttf 49 y 30.7403 40.8318 34 . 20.1829 7.9550 7.9550 -Georgia.ttf 49 y 30.7403 40.8318 35 2 -3.5386 26.4090 31.5047 -Georgia.ttf 49 y 30.7403 40.8318 36 5 -2.2067 26.8318 40.5818 -Georgia.ttf 49 y 30.7403 40.8318 37 m -1.2897 48.0867 29.1682 -Georgia.ttf 49 y 30.7403 40.8318 38 V -12.3869 41.3045 40.6779 -Georgia.ttf 49 y 30.7403 40.8318 39 6 -13.3777 27.7083 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 40 w -0.0853 44.3365 28.0000 -Georgia.ttf 49 y 30.7403 40.8318 41 T -12.7023 36.3815 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 42 M -12.5017 49.8549 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 43 G -13.5393 39.4135 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 44 b -16.2508 31.0781 46.4730 -Georgia.ttf 49 y 30.7403 40.8318 45 9 -3.6828 27.7083 41.9500 -Georgia.ttf 49 y 30.7403 40.8318 46 ; 0.0917 9.5498 38.2453 -Georgia.ttf 49 y 30.7403 40.8318 47 D -12.2133 38.0914 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 48 L -12.5521 32.4730 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 49 y -0.1621 30.7403 40.8318 -Georgia.ttf 49 y 30.7403 40.8318 50 ‘ -15.2216 8.3588 15.1682 -Georgia.ttf 49 y 30.7403 40.8318 51 \ -15.0215 23.2770 55.3045 -Georgia.ttf 49 y 30.7403 40.8318 52 R -12.5179 39.2597 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 53 < -3.1504 26.4279 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 54 4 -3.5482 29.8448 41.7500 -Georgia.ttf 49 y 30.7403 40.8318 55 8 -13.8491 28.7227 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 56 0 -3.3059 29.8910 32.6730 -Georgia.ttf 49 y 30.7403 40.8318 57 A -12.3935 41.5962 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 58 E -12.1750 34.7056 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 59 B -12.1438 32.7646 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 60 v 0.0060 30.7403 28.0000 -Georgia.ttf 49 y 30.7403 40.8318 61 k -15.9968 31.4820 44.3365 -Georgia.ttf 49 y 30.7403 40.8318 62 J -12.3974 29.0144 41.5962 -Georgia.ttf 49 y 30.7403 40.8318 63 U -12.5325 42.2189 41.5962 -Georgia.ttf 49 y 30.7403 40.8318 64 j -15.8077 16.3365 56.6766 -Georgia.ttf 49 y 30.7403 40.8318 65 ( -15.1714 16.5865 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 66 7 -2.4153 26.5818 40.5818 -Georgia.ttf 49 y 30.7403 40.8318 67 § -13.5285 22.5588 48.8094 -Georgia.ttf 49 y 30.7403 40.8318 68 $ -15.8520 27.3045 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 69 € -13.7630 36.6315 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 70 / -15.1760 23.2770 55.3045 -Georgia.ttf 49 y 30.7403 40.8318 71 C -13.9674 34.2950 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 72 * -13.5583 22.6315 19.9723 -Georgia.ttf 49 y 30.7403 40.8318 73 ” -15.1063 18.8041 15.1682 -Georgia.ttf 49 y 30.7403 40.8318 74 ? -13.5539 22.2277 42.0000 -Georgia.ttf 49 y 30.7403 40.8318 75 { -15.1687 21.2133 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 76 } -15.2127 21.2133 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 77 , 20.6914 9.5498 17.3047 -Georgia.ttf 49 y 30.7403 40.8318 78 I -12.5010 18.1351 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 79 ° -13.3995 18.4730 18.4730 -Georgia.ttf 49 y 30.7403 40.8318 80 K -12.1871 39.2597 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 81 H -12.2267 41.8878 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 82 q -2.1614 30.8903 43.1682 -Georgia.ttf 49 y 30.7403 40.8318 83 & -13.3079 39.2597 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 84 ’ -15.1325 8.3588 15.1682 -Georgia.ttf 49 y 30.7403 40.8318 85 [ -15.4207 15.1682 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 86 - 10.1641 17.0320 4.4730 -Georgia.ttf 49 y 30.7403 40.8318 87 Y -12.5650 38.9680 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 88 Q -13.6795 38.4953 52.5642 -Georgia.ttf 49 y 30.7403 40.8318 89 " -15.3785 17.7547 16.3365 -Georgia.ttf 49 y 30.7403 40.8318 90 ! -13.4793 7.9550 42.7644 -Georgia.ttf 49 y 30.7403 40.8318 91 x -0.0774 29.1682 28.0000 -Georgia.ttf 49 y 30.7403 40.8318 92 ) -15.1330 16.5865 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 93 = 4.7350 29.1682 14.4500 -Georgia.ttf 49 y 30.7403 40.8318 94 + -2.7209 29.4182 29.4182 -Georgia.ttf 49 y 30.7403 40.8318 95 X -12.2491 41.5962 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 96 » 1.4714 23.9998 23.2770 -Georgia.ttf 49 y 30.7403 40.8318 97 ' -15.2430 6.7867 16.3365 -Georgia.ttf 49 y 30.7403 40.8318 98 ¢ -8.1262 25.8241 44.7403 -Georgia.ttf 49 y 30.7403 40.8318 99 Z -12.1145 33.6912 40.4279 -Georgia.ttf 49 y 30.7403 40.8318 100 > -3.3942 26.4279 30.3365 -Georgia.ttf 49 y 30.7403 40.8318 101 ® -13.9629 50.3815 50.3815 -Georgia.ttf 49 y 30.7403 40.8318 102 © -14.0736 50.3815 50.3815 -Georgia.ttf 49 y 30.7403 40.8318 103 ] -15.1540 15.1682 52.4453 -Georgia.ttf 49 y 30.7403 40.8318 104 é -15.5668 24.6953 44.8092 -Georgia.ttf 49 y 30.7403 40.8318 105 z -0.2062 23.0270 28.0000 -Georgia.ttf 49 y 30.7403 40.8318 106 _ 32.8021 37.5498 2.7403 -Georgia.ttf 49 y 30.7403 40.8318 107 ¥ -12.1782 37.0770 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 1 t 6.2093 18.7851 38.0914 -Georgia.ttf 50 ‘ 8.3588 15.1682 2 h -1.1737 31.5237 44.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 3 a 13.8290 25.6635 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 4 n 13.8057 31.5237 29.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 5 P 2.7820 31.6236 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 6 o 14.0155 27.2318 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 7 e 14.2040 24.6953 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 8 : 15.3610 7.9550 28.4038 -Georgia.ttf 50 ‘ 8.3588 15.1682 9 r 13.9661 21.9550 29.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 10 l -1.0871 14.8955 44.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 11 i -0.8347 14.3538 43.8448 -Georgia.ttf 50 ‘ 8.3588 15.1682 12 1 11.6076 19.8912 31.5047 -Georgia.ttf 50 ‘ 8.3588 15.1682 13 | 0.0242 3.7547 55.3045 -Georgia.ttf 50 ‘ 8.3588 15.1682 14 N 2.8274 42.0727 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 15 f -1.1645 22.1088 44.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 16 g 14.1371 27.2356 42.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 17 d -1.3653 30.9403 45.5047 -Georgia.ttf 50 ‘ 8.3588 15.1682 18 W 2.7417 58.3365 40.6779 -Georgia.ttf 50 ‘ 8.3588 15.1682 19 s 14.1721 20.9867 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 20 c 13.8355 24.1536 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 21 u 14.0829 31.5237 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 22 3 11.8780 27.3045 41.7500 -Georgia.ttf 50 ‘ 8.3588 15.1682 23 ~ 21.9258 30.0403 10.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 24 # 8.0606 29.1872 35.0594 -Georgia.ttf 50 ‘ 8.3588 15.1682 25 O 1.7393 38.4953 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 26 ` -0.4203 11.6635 12.1362 -Georgia.ttf 50 ‘ 8.3588 15.1682 27 @ 4.2717 44.6903 47.8912 -Georgia.ttf 50 ‘ 8.3588 15.1682 28 F 2.7408 31.6736 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 29 S 1.6522 28.0000 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 30 p 13.9542 30.2638 42.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 31 “ 0.1658 18.8041 15.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 32 % 1.5623 41.5772 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 33 £ 1.5721 30.0448 41.5962 -Georgia.ttf 50 ‘ 8.3588 15.1682 34 . 35.6480 7.9550 7.9550 -Georgia.ttf 50 ‘ 8.3588 15.1682 35 2 11.7590 26.4090 31.5047 -Georgia.ttf 50 ‘ 8.3588 15.1682 36 5 12.8175 26.8318 40.5818 -Georgia.ttf 50 ‘ 8.3588 15.1682 37 m 13.9041 48.0867 29.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 38 V 2.6592 41.3045 40.6779 -Georgia.ttf 50 ‘ 8.3588 15.1682 39 6 1.2235 27.7083 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 40 w 15.1714 44.3365 28.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 41 T 2.7403 36.3815 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 42 M 2.6498 49.8549 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 43 G 1.5420 39.4135 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 44 b -1.1742 31.0781 46.4730 -Georgia.ttf 50 ‘ 8.3588 15.1682 45 9 11.8335 27.7083 41.9500 -Georgia.ttf 50 ‘ 8.3588 15.1682 46 ; 15.1655 9.5498 38.2453 -Georgia.ttf 50 ‘ 8.3588 15.1682 47 D 2.4979 38.0914 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 48 L 2.7469 32.4730 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 49 y 15.0968 30.7403 40.8318 -Georgia.ttf 50 ‘ 8.3588 15.1682 50 ‘ 0.1696 8.3588 15.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 51 \ 0.0944 23.2770 55.3045 -Georgia.ttf 50 ‘ 8.3588 15.1682 52 R 2.8697 39.2597 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 53 < 12.0990 26.4279 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 54 4 11.8518 29.8448 41.7500 -Georgia.ttf 50 ‘ 8.3588 15.1682 55 8 1.6105 28.7227 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 56 0 11.7469 29.8910 32.6730 -Georgia.ttf 50 ‘ 8.3588 15.1682 57 A 2.6546 41.5962 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 58 E 2.8302 34.7056 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 59 B 2.7941 32.7646 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 60 v 15.1769 30.7403 28.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 61 k -1.1682 31.4820 44.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 62 J 2.7589 29.0144 41.5962 -Georgia.ttf 50 ‘ 8.3588 15.1682 63 U 2.8895 42.2189 41.5962 -Georgia.ttf 50 ‘ 8.3588 15.1682 64 j -0.6766 16.3365 56.6766 -Georgia.ttf 50 ‘ 8.3588 15.1682 65 ( -0.2107 16.5865 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 66 7 12.6489 26.5818 40.5818 -Georgia.ttf 50 ‘ 8.3588 15.1682 67 § 1.4590 22.5588 48.8094 -Georgia.ttf 50 ‘ 8.3588 15.1682 68 $ -1.0099 27.3045 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 69 € 1.5409 36.6315 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 70 / 0.0417 23.2770 55.3045 -Georgia.ttf 50 ‘ 8.3588 15.1682 71 C 1.8146 34.2950 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 72 * 1.6735 22.6315 19.9723 -Georgia.ttf 50 ‘ 8.3588 15.1682 73 ” -0.0812 18.8041 15.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 74 ? 1.7306 22.2277 42.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 75 { 0.0000 21.2133 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 76 } -0.0185 21.2133 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 77 , 36.0957 9.5498 17.3047 -Georgia.ttf 50 ‘ 8.3588 15.1682 78 I 2.6532 18.1351 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 79 ° 1.4350 18.4730 18.4730 -Georgia.ttf 50 ‘ 8.3588 15.1682 80 K 2.8205 39.2597 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 81 H 2.6560 41.8878 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 82 q 12.8020 30.8903 43.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 83 & 1.5447 39.2597 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 84 ’ 0.1585 8.3588 15.1682 -Georgia.ttf 50 ‘ 8.3588 15.1682 85 [ -0.0774 15.1682 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 86 - 25.3296 17.0320 4.4730 -Georgia.ttf 50 ‘ 8.3588 15.1682 87 Y 2.7316 38.9680 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 88 Q 1.5780 38.4953 52.5642 -Georgia.ttf 50 ‘ 8.3588 15.1682 89 " 0.0774 17.7547 16.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 90 ! 1.6508 7.9550 42.7644 -Georgia.ttf 50 ‘ 8.3588 15.1682 91 x 15.2359 29.1682 28.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 92 ) 0.0027 16.5865 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 93 = 19.9621 29.1682 14.4500 -Georgia.ttf 50 ‘ 8.3588 15.1682 94 + 12.7407 29.4182 29.4182 -Georgia.ttf 50 ‘ 8.3588 15.1682 95 X 2.8118 41.5962 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 96 » 16.6403 23.9998 23.2770 -Georgia.ttf 50 ‘ 8.3588 15.1682 97 ' -0.2512 6.7867 16.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 98 ¢ 6.8536 25.8241 44.7403 -Georgia.ttf 50 ‘ 8.3588 15.1682 99 Z 2.5888 33.6912 40.4279 -Georgia.ttf 50 ‘ 8.3588 15.1682 100 > 11.7977 26.4279 30.3365 -Georgia.ttf 50 ‘ 8.3588 15.1682 101 ® 1.3833 50.3815 50.3815 -Georgia.ttf 50 ‘ 8.3588 15.1682 102 © 1.1682 50.3815 50.3815 -Georgia.ttf 50 ‘ 8.3588 15.1682 103 ] -0.1613 15.1682 52.4453 -Georgia.ttf 50 ‘ 8.3588 15.1682 104 é -0.4727 24.6953 44.8092 -Georgia.ttf 50 ‘ 8.3588 15.1682 105 z 15.1325 23.0270 28.0000 -Georgia.ttf 50 ‘ 8.3588 15.1682 106 _ 48.3322 37.5498 2.7403 -Georgia.ttf 50 ‘ 8.3588 15.1682 107 ¥ 2.8302 37.0770 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 1 t 6.3235 18.7851 38.0914 -Georgia.ttf 51 \ 23.2770 55.3045 2 h -1.2012 31.5237 44.3365 -Georgia.ttf 51 \ 23.2770 55.3045 3 a 13.7895 25.6635 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 4 n 14.4093 31.5237 29.1682 -Georgia.ttf 51 \ 23.2770 55.3045 5 P 2.9332 31.6236 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 6 o 14.1630 27.2318 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 7 e 14.1228 24.6953 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 8 : 15.0375 7.9550 28.4038 -Georgia.ttf 51 \ 23.2770 55.3045 9 r 13.7473 21.9550 29.1682 -Georgia.ttf 51 \ 23.2770 55.3045 10 l -1.2781 14.8955 44.3365 -Georgia.ttf 51 \ 23.2770 55.3045 11 i -0.8851 14.3538 43.8448 -Georgia.ttf 51 \ 23.2770 55.3045 12 1 11.5856 19.8912 31.5047 -Georgia.ttf 51 \ 23.2770 55.3045 13 | 0.1672 3.7547 55.3045 -Georgia.ttf 51 \ 23.2770 55.3045 14 N 2.6360 42.0727 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 15 f -0.8336 22.1088 44.3365 -Georgia.ttf 51 \ 23.2770 55.3045 16 g 13.7915 27.2356 42.0000 -Georgia.ttf 51 \ 23.2770 55.3045 17 d -1.1210 30.9403 45.5047 -Georgia.ttf 51 \ 23.2770 55.3045 18 W 2.8118 58.3365 40.6779 -Georgia.ttf 51 \ 23.2770 55.3045 19 s 13.9545 20.9867 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 20 c 14.1762 24.1536 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 21 u 14.0760 31.5237 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 22 3 11.6635 27.3045 41.7500 -Georgia.ttf 51 \ 23.2770 55.3045 23 ~ 21.9452 30.0403 10.4453 -Georgia.ttf 51 \ 23.2770 55.3045 24 # 8.2403 29.1872 35.0594 -Georgia.ttf 51 \ 23.2770 55.3045 25 O 1.7826 38.4953 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 26 ` -0.2055 11.6635 12.1362 -Georgia.ttf 51 \ 23.2770 55.3045 27 @ 4.2619 44.6903 47.8912 -Georgia.ttf 51 \ 23.2770 55.3045 28 F 2.8863 31.6736 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 29 S 1.5864 28.0000 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 30 p 13.9675 30.2638 42.0000 -Georgia.ttf 51 \ 23.2770 55.3045 31 “ 0.1079 18.8041 15.1682 -Georgia.ttf 51 \ 23.2770 55.3045 32 % 1.3556 41.5772 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 33 £ 1.6939 30.0448 41.5962 -Georgia.ttf 51 \ 23.2770 55.3045 34 . 35.8429 7.9550 7.9550 -Georgia.ttf 51 \ 23.2770 55.3045 35 2 11.5551 26.4090 31.5047 -Georgia.ttf 51 \ 23.2770 55.3045 36 5 12.8460 26.8318 40.5818 -Georgia.ttf 51 \ 23.2770 55.3045 37 m 13.8044 48.0867 29.1682 -Georgia.ttf 51 \ 23.2770 55.3045 38 V 2.8190 41.3045 40.6779 -Georgia.ttf 51 \ 23.2770 55.3045 39 6 1.3488 27.7083 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 40 w 15.3151 44.3365 28.0000 -Georgia.ttf 51 \ 23.2770 55.3045 41 T 2.9127 36.3815 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 42 M 2.7403 49.8549 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 43 G 1.5122 39.4135 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 44 b -1.2474 31.0781 46.4730 -Georgia.ttf 51 \ 23.2770 55.3045 45 9 11.7038 27.7083 41.9500 -Georgia.ttf 51 \ 23.2770 55.3045 46 ; 15.1014 9.5498 38.2453 -Georgia.ttf 51 \ 23.2770 55.3045 47 D 2.6115 38.0914 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 48 L 2.7533 32.4730 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 49 y 15.1623 30.7403 40.8318 -Georgia.ttf 51 \ 23.2770 55.3045 50 ‘ -0.1875 8.3588 15.1682 -Georgia.ttf 51 \ 23.2770 55.3045 51 \ -0.0017 23.2770 55.3045 -Georgia.ttf 51 \ 23.2770 55.3045 52 R 2.7756 39.2597 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 53 < 11.8135 26.4279 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 54 4 11.9977 29.8448 41.7500 -Georgia.ttf 51 \ 23.2770 55.3045 55 8 1.6183 28.7227 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 56 0 11.7135 29.8910 32.6730 -Georgia.ttf 51 \ 23.2770 55.3045 57 A 2.7677 41.5962 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 58 E 2.5902 34.7056 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 59 B 2.6315 32.7646 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 60 v 15.2633 30.7403 28.0000 -Georgia.ttf 51 \ 23.2770 55.3045 61 k -1.1371 31.4820 44.3365 -Georgia.ttf 51 \ 23.2770 55.3045 62 J 2.3580 29.0144 41.5962 -Georgia.ttf 51 \ 23.2770 55.3045 63 U 2.8705 42.2189 41.5962 -Georgia.ttf 51 \ 23.2770 55.3045 64 j -0.6492 16.3365 56.6766 -Georgia.ttf 51 \ 23.2770 55.3045 65 ( -0.1484 16.5865 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 66 7 12.8460 26.5818 40.5818 -Georgia.ttf 51 \ 23.2770 55.3045 67 § 1.6249 22.5588 48.8094 -Georgia.ttf 51 \ 23.2770 55.3045 68 $ -0.9897 27.3045 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 69 € 1.4888 36.6315 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 70 / 0.0347 23.2770 55.3045 -Georgia.ttf 51 \ 23.2770 55.3045 71 C 1.5304 34.2950 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 72 * 1.7750 22.6315 19.9723 -Georgia.ttf 51 \ 23.2770 55.3045 73 ” -0.0766 18.8041 15.1682 -Georgia.ttf 51 \ 23.2770 55.3045 74 ? 1.5592 22.2277 42.0000 -Georgia.ttf 51 \ 23.2770 55.3045 75 { -0.3312 21.2133 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 76 } -0.0903 21.2133 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 77 , 36.0276 9.5498 17.3047 -Georgia.ttf 51 \ 23.2770 55.3045 78 I 2.9933 18.1351 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 79 ° 1.4304 18.4730 18.4730 -Georgia.ttf 51 \ 23.2770 55.3045 80 K 2.3834 39.2597 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 81 H 2.9104 41.8878 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 82 q 12.8369 30.8903 43.1682 -Georgia.ttf 51 \ 23.2770 55.3045 83 & 1.8085 39.2597 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 84 ’ -0.0060 8.3588 15.1682 -Georgia.ttf 51 \ 23.2770 55.3045 85 [ -0.0214 15.1682 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 86 - 25.4135 17.0320 4.4730 -Georgia.ttf 51 \ 23.2770 55.3045 87 Y 2.7941 38.9680 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 88 Q 1.7306 38.4953 52.5642 -Georgia.ttf 51 \ 23.2770 55.3045 89 " -0.1719 17.7547 16.3365 -Georgia.ttf 51 \ 23.2770 55.3045 90 ! 1.5596 7.9550 42.7644 -Georgia.ttf 51 \ 23.2770 55.3045 91 x 15.1627 29.1682 28.0000 -Georgia.ttf 51 \ 23.2770 55.3045 92 ) 0.0157 16.5865 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 93 = 19.9593 29.1682 14.4500 -Georgia.ttf 51 \ 23.2770 55.3045 94 + 12.4544 29.4182 29.4182 -Georgia.ttf 51 \ 23.2770 55.3045 95 X 2.9562 41.5962 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 96 » 16.5211 23.9998 23.2770 -Georgia.ttf 51 \ 23.2770 55.3045 97 ' -0.0158 6.7867 16.3365 -Georgia.ttf 51 \ 23.2770 55.3045 98 ¢ 6.7153 25.8241 44.7403 -Georgia.ttf 51 \ 23.2770 55.3045 99 Z 2.7838 33.6912 40.4279 -Georgia.ttf 51 \ 23.2770 55.3045 100 > 11.6375 26.4279 30.3365 -Georgia.ttf 51 \ 23.2770 55.3045 101 ® 1.2594 50.3815 50.3815 -Georgia.ttf 51 \ 23.2770 55.3045 102 © 1.0042 50.3815 50.3815 -Georgia.ttf 51 \ 23.2770 55.3045 103 ] 0.1853 15.1682 52.4453 -Georgia.ttf 51 \ 23.2770 55.3045 104 é -0.6396 24.6953 44.8092 -Georgia.ttf 51 \ 23.2770 55.3045 105 z 15.4075 23.0270 28.0000 -Georgia.ttf 51 \ 23.2770 55.3045 106 _ 48.5250 37.5498 2.7403 -Georgia.ttf 51 \ 23.2770 55.3045 107 ¥ 2.8163 37.0770 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 1 t 3.4093 18.7851 38.0914 -Georgia.ttf 52 R 39.2597 40.4279 2 h -4.0292 31.5237 44.3365 -Georgia.ttf 52 R 39.2597 40.4279 3 a 11.3539 25.6635 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 4 n 11.3682 31.5237 29.1682 -Georgia.ttf 52 R 39.2597 40.4279 5 P 0.0631 31.6236 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 6 o 11.2559 27.2318 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 7 e 11.4539 24.6953 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 8 : 12.2194 7.9550 28.4038 -Georgia.ttf 52 R 39.2597 40.4279 9 r 11.5411 21.9550 29.1682 -Georgia.ttf 52 R 39.2597 40.4279 10 l -4.1703 14.8955 44.3365 -Georgia.ttf 52 R 39.2597 40.4279 11 i -3.1799 14.3538 43.8448 -Georgia.ttf 52 R 39.2597 40.4279 12 1 8.7944 19.8912 31.5047 -Georgia.ttf 52 R 39.2597 40.4279 13 | -2.8696 3.7547 55.3045 -Georgia.ttf 52 R 39.2597 40.4279 14 N 0.3024 42.0727 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 15 f -3.8932 22.1088 44.3365 -Georgia.ttf 52 R 39.2597 40.4279 16 g 10.9381 27.2356 42.0000 -Georgia.ttf 52 R 39.2597 40.4279 17 d -3.8098 30.9403 45.5047 -Georgia.ttf 52 R 39.2597 40.4279 18 W 0.0129 58.3365 40.6779 -Georgia.ttf 52 R 39.2597 40.4279 19 s 11.2041 20.9867 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 20 c 11.0539 24.1536 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 21 u 11.0400 31.5237 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 22 3 8.9579 27.3045 41.7500 -Georgia.ttf 52 R 39.2597 40.4279 23 ~ 19.2160 30.0403 10.4453 -Georgia.ttf 52 R 39.2597 40.4279 24 # 5.4361 29.1872 35.0594 -Georgia.ttf 52 R 39.2597 40.4279 25 O -1.3170 38.4953 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 26 ` -3.4555 11.6635 12.1362 -Georgia.ttf 52 R 39.2597 40.4279 27 @ 1.7125 44.6903 47.8912 -Georgia.ttf 52 R 39.2597 40.4279 28 F 0.0204 31.6736 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 29 S -1.3275 28.0000 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 30 p 11.3601 30.2638 42.0000 -Georgia.ttf 52 R 39.2597 40.4279 31 “ -2.6520 18.8041 15.1682 -Georgia.ttf 52 R 39.2597 40.4279 32 % -1.2976 41.5772 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 33 £ -1.5051 30.0448 41.5962 -Georgia.ttf 52 R 39.2597 40.4279 34 . 32.7951 7.9550 7.9550 -Georgia.ttf 52 R 39.2597 40.4279 35 2 8.9432 26.4090 31.5047 -Georgia.ttf 52 R 39.2597 40.4279 36 5 9.7973 26.8318 40.5818 -Georgia.ttf 52 R 39.2597 40.4279 37 m 11.1708 48.0867 29.1682 -Georgia.ttf 52 R 39.2597 40.4279 38 V -0.0389 41.3045 40.6779 -Georgia.ttf 52 R 39.2597 40.4279 39 6 -1.1561 27.7083 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 40 w 12.4849 44.3365 28.0000 -Georgia.ttf 52 R 39.2597 40.4279 41 T 0.0449 36.3815 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 42 M 0.1502 49.8549 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 43 G -1.2061 39.4135 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 44 b -3.8517 31.0781 46.4730 -Georgia.ttf 52 R 39.2597 40.4279 45 9 9.1508 27.7083 41.9500 -Georgia.ttf 52 R 39.2597 40.4279 46 ; 12.3341 9.5498 38.2453 -Georgia.ttf 52 R 39.2597 40.4279 47 D 0.2351 38.0914 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 48 L 0.0812 32.4730 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 49 y 12.4539 30.7403 40.8318 -Georgia.ttf 52 R 39.2597 40.4279 50 ‘ -2.9384 8.3588 15.1682 -Georgia.ttf 52 R 39.2597 40.4279 51 \ -3.0323 23.2770 55.3045 -Georgia.ttf 52 R 39.2597 40.4279 52 R -0.1669 39.2597 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 53 < 9.0106 26.4279 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 54 4 8.9841 29.8448 41.7500 -Georgia.ttf 52 R 39.2597 40.4279 55 8 -1.1196 28.7227 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 56 0 8.8686 29.8910 32.6730 -Georgia.ttf 52 R 39.2597 40.4279 57 A -0.0707 41.5962 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 58 E 0.3257 34.7056 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 59 B -0.1175 32.7646 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 60 v 12.3589 30.7403 28.0000 -Georgia.ttf 52 R 39.2597 40.4279 61 k -3.9530 31.4820 44.3365 -Georgia.ttf 52 R 39.2597 40.4279 62 J -0.0105 29.0144 41.5962 -Georgia.ttf 52 R 39.2597 40.4279 63 U -0.2184 42.2189 41.5962 -Georgia.ttf 52 R 39.2597 40.4279 64 j -3.5810 16.3365 56.6766 -Georgia.ttf 52 R 39.2597 40.4279 65 ( -2.6501 16.5865 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 66 7 10.1054 26.5818 40.5818 -Georgia.ttf 52 R 39.2597 40.4279 67 § -1.2109 22.5588 48.8094 -Georgia.ttf 52 R 39.2597 40.4279 68 $ -3.7124 27.3045 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 69 € -1.1147 36.6315 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 70 / -2.8891 23.2770 55.3045 -Georgia.ttf 52 R 39.2597 40.4279 71 C -0.9944 34.2950 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 72 * -1.6594 22.6315 19.9723 -Georgia.ttf 52 R 39.2597 40.4279 73 ” -2.5850 18.8041 15.1682 -Georgia.ttf 52 R 39.2597 40.4279 74 ? -1.2744 22.2277 42.0000 -Georgia.ttf 52 R 39.2597 40.4279 75 { -2.8747 21.2133 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 76 } -2.9346 21.2133 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 77 , 33.4586 9.5498 17.3047 -Georgia.ttf 52 R 39.2597 40.4279 78 I -0.0003 18.1351 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 79 ° -1.3124 18.4730 18.4730 -Georgia.ttf 52 R 39.2597 40.4279 80 K 0.1126 39.2597 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 81 H 0.0702 41.8878 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 82 q 9.9710 30.8903 43.1682 -Georgia.ttf 52 R 39.2597 40.4279 83 & -0.8163 39.2597 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 84 ’ -2.4887 8.3588 15.1682 -Georgia.ttf 52 R 39.2597 40.4279 85 [ -2.8715 15.1682 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 86 - 22.9257 17.0320 4.4730 -Georgia.ttf 52 R 39.2597 40.4279 87 Y -0.2159 38.9680 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 88 Q -1.4080 38.4953 52.5642 -Georgia.ttf 52 R 39.2597 40.4279 89 " -3.1504 17.7547 16.3365 -Georgia.ttf 52 R 39.2597 40.4279 90 ! -1.3298 7.9550 42.7644 -Georgia.ttf 52 R 39.2597 40.4279 91 x 12.5822 29.1682 28.0000 -Georgia.ttf 52 R 39.2597 40.4279 92 ) -2.9244 16.5865 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 93 = 17.5206 29.1682 14.4500 -Georgia.ttf 52 R 39.2597 40.4279 94 + 9.6811 29.4182 29.4182 -Georgia.ttf 52 R 39.2597 40.4279 95 X 0.0240 41.5962 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 96 » 13.7192 23.9998 23.2770 -Georgia.ttf 52 R 39.2597 40.4279 97 ' -2.8150 6.7867 16.3365 -Georgia.ttf 52 R 39.2597 40.4279 98 ¢ 4.1604 25.8241 44.7403 -Georgia.ttf 52 R 39.2597 40.4279 99 Z 0.0325 33.6912 40.4279 -Georgia.ttf 52 R 39.2597 40.4279 100 > 9.0111 26.4279 30.3365 -Georgia.ttf 52 R 39.2597 40.4279 101 ® -1.1946 50.3815 50.3815 -Georgia.ttf 52 R 39.2597 40.4279 102 © -1.5916 50.3815 50.3815 -Georgia.ttf 52 R 39.2597 40.4279 103 ] -2.6444 15.1682 52.4453 -Georgia.ttf 52 R 39.2597 40.4279 104 é -3.1167 24.6953 44.8092 -Georgia.ttf 52 R 39.2597 40.4279 105 z 12.5957 23.0270 28.0000 -Georgia.ttf 52 R 39.2597 40.4279 106 _ 45.4635 37.5498 2.7403 -Georgia.ttf 52 R 39.2597 40.4279 107 ¥ -0.0987 37.0770 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 1 t -5.6756 18.7851 38.0914 -Georgia.ttf 53 < 26.4279 30.3365 2 h -12.8302 31.5237 44.3365 -Georgia.ttf 53 < 26.4279 30.3365 3 a 1.9516 25.6635 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 4 n 2.0571 31.5237 29.1682 -Georgia.ttf 53 < 26.4279 30.3365 5 P -9.2454 31.6236 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 6 o 2.2038 27.2318 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 7 e 2.0448 24.6953 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 8 : 3.3145 7.9550 28.4038 -Georgia.ttf 53 < 26.4279 30.3365 9 r 2.1249 21.9550 29.1682 -Georgia.ttf 53 < 26.4279 30.3365 10 l -13.1865 14.8955 44.3365 -Georgia.ttf 53 < 26.4279 30.3365 11 i -12.3311 14.3538 43.8448 -Georgia.ttf 53 < 26.4279 30.3365 12 1 -0.0545 19.8912 31.5047 -Georgia.ttf 53 < 26.4279 30.3365 13 | -11.6472 3.7547 55.3045 -Georgia.ttf 53 < 26.4279 30.3365 14 N -9.0216 42.0727 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 15 f -13.0650 22.1088 44.3365 -Georgia.ttf 53 < 26.4279 30.3365 16 g 2.2005 27.2356 42.0000 -Georgia.ttf 53 < 26.4279 30.3365 17 d -12.9414 30.9403 45.5047 -Georgia.ttf 53 < 26.4279 30.3365 18 W -9.1611 58.3365 40.6779 -Georgia.ttf 53 < 26.4279 30.3365 19 s 2.2124 20.9867 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 20 c 2.4639 24.1536 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 21 u 2.2801 31.5237 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 22 3 -0.3028 27.3045 41.7500 -Georgia.ttf 53 < 26.4279 30.3365 23 ~ 10.0603 30.0403 10.4453 -Georgia.ttf 53 < 26.4279 30.3365 24 # -4.0878 29.1872 35.0594 -Georgia.ttf 53 < 26.4279 30.3365 25 O -10.0912 38.4953 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 26 ` -12.4104 11.6635 12.1362 -Georgia.ttf 53 < 26.4279 30.3365 27 @ -7.4597 44.6903 47.8912 -Georgia.ttf 53 < 26.4279 30.3365 28 F -9.2009 31.6736 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 29 S -10.2707 28.0000 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 30 p 2.1633 30.2638 42.0000 -Georgia.ttf 53 < 26.4279 30.3365 31 “ -11.9488 18.8041 15.1682 -Georgia.ttf 53 < 26.4279 30.3365 32 % -10.1741 41.5772 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 33 £ -10.1246 30.0448 41.5962 -Georgia.ttf 53 < 26.4279 30.3365 34 . 23.7114 7.9550 7.9550 -Georgia.ttf 53 < 26.4279 30.3365 35 2 -0.3131 26.4090 31.5047 -Georgia.ttf 53 < 26.4279 30.3365 36 5 1.2057 26.8318 40.5818 -Georgia.ttf 53 < 26.4279 30.3365 37 m 2.3159 48.0867 29.1682 -Georgia.ttf 53 < 26.4279 30.3365 38 V -9.1232 41.3045 40.6779 -Georgia.ttf 53 < 26.4279 30.3365 39 6 -10.1560 27.7083 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 40 w 3.3696 44.3365 28.0000 -Georgia.ttf 53 < 26.4279 30.3365 41 T -9.1148 36.3815 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 42 M -9.0361 49.8549 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 43 G -10.3358 39.4135 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 44 b -13.3172 31.0781 46.4730 -Georgia.ttf 53 < 26.4279 30.3365 45 9 -0.5197 27.7083 41.9500 -Georgia.ttf 53 < 26.4279 30.3365 46 ; 3.4121 9.5498 38.2453 -Georgia.ttf 53 < 26.4279 30.3365 47 D -9.0913 38.0914 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 48 L -9.3799 32.4730 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 49 y 3.1281 30.7403 40.8318 -Georgia.ttf 53 < 26.4279 30.3365 50 ‘ -11.9506 8.3588 15.1682 -Georgia.ttf 53 < 26.4279 30.3365 51 \ -11.6504 23.2770 55.3045 -Georgia.ttf 53 < 26.4279 30.3365 52 R -8.9386 39.2597 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 53 < 0.0745 26.4279 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 54 4 -0.2412 29.8448 41.7500 -Georgia.ttf 53 < 26.4279 30.3365 55 8 -10.1843 28.7227 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 56 0 -0.1601 29.8910 32.6730 -Georgia.ttf 53 < 26.4279 30.3365 57 A -9.2829 41.5962 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 58 E -9.1186 34.7056 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 59 B -9.0620 32.7646 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 60 v 3.0928 30.7403 28.0000 -Georgia.ttf 53 < 26.4279 30.3365 61 k -12.7575 31.4820 44.3365 -Georgia.ttf 53 < 26.4279 30.3365 62 J -9.0411 29.0144 41.5962 -Georgia.ttf 53 < 26.4279 30.3365 63 U -8.7769 42.2189 41.5962 -Georgia.ttf 53 < 26.4279 30.3365 64 j -12.5804 16.3365 56.6766 -Georgia.ttf 53 < 26.4279 30.3365 65 ( -11.6515 16.5865 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 66 7 0.7607 26.5818 40.5818 -Georgia.ttf 53 < 26.4279 30.3365 67 § -10.1724 22.5588 48.8094 -Georgia.ttf 53 < 26.4279 30.3365 68 $ -12.9021 27.3045 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 69 € -10.1594 36.6315 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 70 / -11.9052 23.2770 55.3045 -Georgia.ttf 53 < 26.4279 30.3365 71 C -10.1344 34.2950 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 72 * -10.1099 22.6315 19.9723 -Georgia.ttf 53 < 26.4279 30.3365 73 ” -11.8407 18.8041 15.1682 -Georgia.ttf 53 < 26.4279 30.3365 74 ? -10.4559 22.2277 42.0000 -Georgia.ttf 53 < 26.4279 30.3365 75 { -12.0678 21.2133 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 76 } -11.8804 21.2133 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 77 , 24.0867 9.5498 17.3047 -Georgia.ttf 53 < 26.4279 30.3365 78 I -9.3730 18.1351 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 79 ° -10.2617 18.4730 18.4730 -Georgia.ttf 53 < 26.4279 30.3365 80 K -9.0419 39.2597 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 81 H -8.9206 41.8878 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 82 q 0.9627 30.8903 43.1682 -Georgia.ttf 53 < 26.4279 30.3365 83 & -10.2141 39.2597 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 84 ’ -11.4552 8.3588 15.1682 -Georgia.ttf 53 < 26.4279 30.3365 85 [ -11.9062 15.1682 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 86 - 13.6053 17.0320 4.4730 -Georgia.ttf 53 < 26.4279 30.3365 87 Y -8.9834 38.9680 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 88 Q -10.3117 38.4953 52.5642 -Georgia.ttf 53 < 26.4279 30.3365 89 " -11.7559 17.7547 16.3365 -Georgia.ttf 53 < 26.4279 30.3365 90 ! -10.3141 7.9550 42.7644 -Georgia.ttf 53 < 26.4279 30.3365 91 x 3.2103 29.1682 28.0000 -Georgia.ttf 53 < 26.4279 30.3365 92 ) -11.5510 16.5865 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 93 = 7.9887 29.1682 14.4500 -Georgia.ttf 53 < 26.4279 30.3365 94 + 0.5281 29.4182 29.4182 -Georgia.ttf 53 < 26.4279 30.3365 95 X -9.1259 41.5962 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 96 » 4.6725 23.9998 23.2770 -Georgia.ttf 53 < 26.4279 30.3365 97 ' -12.0139 6.7867 16.3365 -Georgia.ttf 53 < 26.4279 30.3365 98 ¢ -4.9225 25.8241 44.7403 -Georgia.ttf 53 < 26.4279 30.3365 99 Z -9.2668 33.6912 40.4279 -Georgia.ttf 53 < 26.4279 30.3365 100 > 0.0857 26.4279 30.3365 -Georgia.ttf 53 < 26.4279 30.3365 101 ® -10.5762 50.3815 50.3815 -Georgia.ttf 53 < 26.4279 30.3365 102 © -10.5071 50.3815 50.3815 -Georgia.ttf 53 < 26.4279 30.3365 103 ] -11.6939 15.1682 52.4453 -Georgia.ttf 53 < 26.4279 30.3365 104 é -12.6249 24.6953 44.8092 -Georgia.ttf 53 < 26.4279 30.3365 105 z 3.0050 23.0270 28.0000 -Georgia.ttf 53 < 26.4279 30.3365 106 _ 36.3536 37.5498 2.7403 -Georgia.ttf 53 < 26.4279 30.3365 107 ¥ -9.0063 37.0770 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 1 t -4.9685 18.7851 38.0914 -Georgia.ttf 54 4 29.8448 41.7500 2 h -13.0403 31.5237 44.3365 -Georgia.ttf 54 4 29.8448 41.7500 3 a 2.1817 25.6635 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 4 n 2.5199 31.5237 29.1682 -Georgia.ttf 54 4 29.8448 41.7500 5 P -9.1277 31.6236 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 6 o 2.3526 27.2318 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 7 e 2.3833 24.6953 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 8 : 3.5866 7.9550 28.4038 -Georgia.ttf 54 4 29.8448 41.7500 9 r 2.4551 21.9550 29.1682 -Georgia.ttf 54 4 29.8448 41.7500 10 l -13.0116 14.8955 44.3365 -Georgia.ttf 54 4 29.8448 41.7500 11 i -12.2302 14.3538 43.8448 -Georgia.ttf 54 4 29.8448 41.7500 12 1 -0.1312 19.8912 31.5047 -Georgia.ttf 54 4 29.8448 41.7500 13 | -11.5779 3.7547 55.3045 -Georgia.ttf 54 4 29.8448 41.7500 14 N -8.9361 42.0727 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 15 f -12.9748 22.1088 44.3365 -Georgia.ttf 54 4 29.8448 41.7500 16 g 1.9643 27.2356 42.0000 -Georgia.ttf 54 4 29.8448 41.7500 17 d -12.9514 30.9403 45.5047 -Georgia.ttf 54 4 29.8448 41.7500 18 W -8.9732 58.3365 40.6779 -Georgia.ttf 54 4 29.8448 41.7500 19 s 2.6966 20.9867 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 20 c 2.3652 24.1536 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 21 u 2.5051 31.5237 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 22 3 -0.1329 27.3045 41.7500 -Georgia.ttf 54 4 29.8448 41.7500 23 ~ 10.3966 30.0403 10.4453 -Georgia.ttf 54 4 29.8448 41.7500 24 # -3.4718 29.1872 35.0594 -Georgia.ttf 54 4 29.8448 41.7500 25 O -9.9913 38.4953 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 26 ` -12.1298 11.6635 12.1362 -Georgia.ttf 54 4 29.8448 41.7500 27 @ -7.3762 44.6903 47.8912 -Georgia.ttf 54 4 29.8448 41.7500 28 F -8.9908 31.6736 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 29 S -9.9484 28.0000 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 30 p 2.5859 30.2638 42.0000 -Georgia.ttf 54 4 29.8448 41.7500 31 “ -11.7066 18.8041 15.1682 -Georgia.ttf 54 4 29.8448 41.7500 32 % -9.7610 41.5772 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 33 £ -10.0720 30.0448 41.5962 -Georgia.ttf 54 4 29.8448 41.7500 34 . 24.0681 7.9550 7.9550 -Georgia.ttf 54 4 29.8448 41.7500 35 2 0.0514 26.4090 31.5047 -Georgia.ttf 54 4 29.8448 41.7500 36 5 1.1859 26.8318 40.5818 -Georgia.ttf 54 4 29.8448 41.7500 37 m 2.4139 48.0867 29.1682 -Georgia.ttf 54 4 29.8448 41.7500 38 V -8.9809 41.3045 40.6779 -Georgia.ttf 54 4 29.8448 41.7500 39 6 -9.8274 27.7083 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 40 w 3.6979 44.3365 28.0000 -Georgia.ttf 54 4 29.8448 41.7500 41 T -8.9450 36.3815 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 42 M -8.9732 49.8549 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 43 G -10.2495 39.4135 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 44 b -12.5758 31.0781 46.4730 -Georgia.ttf 54 4 29.8448 41.7500 45 9 -0.1113 27.7083 41.9500 -Georgia.ttf 54 4 29.8448 41.7500 46 ; 3.5436 9.5498 38.2453 -Georgia.ttf 54 4 29.8448 41.7500 47 D -8.8246 38.0914 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 48 L -8.7801 32.4730 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 49 y 3.4488 30.7403 40.8318 -Georgia.ttf 54 4 29.8448 41.7500 50 ‘ -11.5106 8.3588 15.1682 -Georgia.ttf 54 4 29.8448 41.7500 51 \ -11.2909 23.2770 55.3045 -Georgia.ttf 54 4 29.8448 41.7500 52 R -8.7748 39.2597 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 53 < -0.0085 26.4279 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 54 4 -0.0473 29.8448 41.7500 -Georgia.ttf 54 4 29.8448 41.7500 55 8 -9.9251 28.7227 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 56 0 0.2506 29.8910 32.6730 -Georgia.ttf 54 4 29.8448 41.7500 57 A -8.9672 41.5962 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 58 E -8.7966 34.7056 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 59 B -9.0284 32.7646 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 60 v 3.4533 30.7403 28.0000 -Georgia.ttf 54 4 29.8448 41.7500 61 k -13.0018 31.4820 44.3365 -Georgia.ttf 54 4 29.8448 41.7500 62 J -9.0163 29.0144 41.5962 -Georgia.ttf 54 4 29.8448 41.7500 63 U -9.2689 42.2189 41.5962 -Georgia.ttf 54 4 29.8448 41.7500 64 j -12.3466 16.3365 56.6766 -Georgia.ttf 54 4 29.8448 41.7500 65 ( -11.7590 16.5865 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 66 7 1.1623 26.5818 40.5818 -Georgia.ttf 54 4 29.8448 41.7500 67 § -10.0914 22.5588 48.8094 -Georgia.ttf 54 4 29.8448 41.7500 68 $ -12.7505 27.3045 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 69 € -10.3279 36.6315 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 70 / -11.6736 23.2770 55.3045 -Georgia.ttf 54 4 29.8448 41.7500 71 C -10.0732 34.2950 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 72 * -10.3180 22.6315 19.9723 -Georgia.ttf 54 4 29.8448 41.7500 73 ” -11.6705 18.8041 15.1682 -Georgia.ttf 54 4 29.8448 41.7500 74 ? -10.0549 22.2277 42.0000 -Georgia.ttf 54 4 29.8448 41.7500 75 { -11.5027 21.2133 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 76 } -11.3290 21.2133 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 77 , 24.3403 9.5498 17.3047 -Georgia.ttf 54 4 29.8448 41.7500 78 I -9.1707 18.1351 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 79 ° -9.9686 18.4730 18.4730 -Georgia.ttf 54 4 29.8448 41.7500 80 K -8.7282 39.2597 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 81 H -8.8931 41.8878 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 82 q 1.1002 30.8903 43.1682 -Georgia.ttf 54 4 29.8448 41.7500 83 & -9.9014 39.2597 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 84 ’ -11.6643 8.3588 15.1682 -Georgia.ttf 54 4 29.8448 41.7500 85 [ -11.7310 15.1682 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 86 - 13.8252 17.0320 4.4730 -Georgia.ttf 54 4 29.8448 41.7500 87 Y -8.9741 38.9680 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 88 Q -10.3620 38.4953 52.5642 -Georgia.ttf 54 4 29.8448 41.7500 89 " -11.6770 17.7547 16.3365 -Georgia.ttf 54 4 29.8448 41.7500 90 ! -9.9446 7.9550 42.7644 -Georgia.ttf 54 4 29.8448 41.7500 91 x 3.5620 29.1682 28.0000 -Georgia.ttf 54 4 29.8448 41.7500 92 ) -11.6324 16.5865 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 93 = 8.1210 29.1682 14.4500 -Georgia.ttf 54 4 29.8448 41.7500 94 + 0.9080 29.4182 29.4182 -Georgia.ttf 54 4 29.8448 41.7500 95 X -8.8263 41.5962 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 96 » 4.6297 23.9998 23.2770 -Georgia.ttf 54 4 29.8448 41.7500 97 ' -11.8349 6.7867 16.3365 -Georgia.ttf 54 4 29.8448 41.7500 98 ¢ -5.0798 25.8241 44.7403 -Georgia.ttf 54 4 29.8448 41.7500 99 Z -9.0065 33.6912 40.4279 -Georgia.ttf 54 4 29.8448 41.7500 100 > 0.1013 26.4279 30.3365 -Georgia.ttf 54 4 29.8448 41.7500 101 ® -10.4014 50.3815 50.3815 -Georgia.ttf 54 4 29.8448 41.7500 102 © -10.4206 50.3815 50.3815 -Georgia.ttf 54 4 29.8448 41.7500 103 ] -11.6608 15.1682 52.4453 -Georgia.ttf 54 4 29.8448 41.7500 104 é -12.0543 24.6953 44.8092 -Georgia.ttf 54 4 29.8448 41.7500 105 z 3.6408 23.0270 28.0000 -Georgia.ttf 54 4 29.8448 41.7500 106 _ 36.8591 37.5498 2.7403 -Georgia.ttf 54 4 29.8448 41.7500 107 ¥ -8.7399 37.0770 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 1 t 4.8348 18.7851 38.0914 -Georgia.ttf 55 8 28.7227 42.7644 2 h -2.5610 31.5237 44.3365 -Georgia.ttf 55 8 28.7227 42.7644 3 a 12.2666 25.6635 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 4 n 12.1979 31.5237 29.1682 -Georgia.ttf 55 8 28.7227 42.7644 5 P 1.1997 31.6236 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 6 o 12.2985 27.2318 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 7 e 12.4112 24.6953 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 8 : 13.3278 7.9550 28.4038 -Georgia.ttf 55 8 28.7227 42.7644 9 r 12.3862 21.9550 29.1682 -Georgia.ttf 55 8 28.7227 42.7644 10 l -2.6487 14.8955 44.3365 -Georgia.ttf 55 8 28.7227 42.7644 11 i -2.3266 14.3538 43.8448 -Georgia.ttf 55 8 28.7227 42.7644 12 1 10.2954 19.8912 31.5047 -Georgia.ttf 55 8 28.7227 42.7644 13 | -1.4181 3.7547 55.3045 -Georgia.ttf 55 8 28.7227 42.7644 14 N 1.2470 42.0727 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 15 f -2.6078 22.1088 44.3365 -Georgia.ttf 55 8 28.7227 42.7644 16 g 12.0917 27.2356 42.0000 -Georgia.ttf 55 8 28.7227 42.7644 17 d -2.6532 30.9403 45.5047 -Georgia.ttf 55 8 28.7227 42.7644 18 W 1.1339 58.3365 40.6779 -Georgia.ttf 55 8 28.7227 42.7644 19 s 12.2820 20.9867 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 20 c 12.0833 24.1536 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 21 u 12.3779 31.5237 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 22 3 9.9873 27.3045 41.7500 -Georgia.ttf 55 8 28.7227 42.7644 23 ~ 20.4073 30.0403 10.4453 -Georgia.ttf 55 8 28.7227 42.7644 24 # 6.6530 29.1872 35.0594 -Georgia.ttf 55 8 28.7227 42.7644 25 O 0.1422 38.4953 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 26 ` -2.2404 11.6635 12.1362 -Georgia.ttf 55 8 28.7227 42.7644 27 @ 2.7081 44.6903 47.8912 -Georgia.ttf 55 8 28.7227 42.7644 28 F 1.3096 31.6736 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 29 S 0.1651 28.0000 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 30 p 12.3097 30.2638 42.0000 -Georgia.ttf 55 8 28.7227 42.7644 31 “ -1.7092 18.8041 15.1682 -Georgia.ttf 55 8 28.7227 42.7644 32 % -0.2082 41.5772 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 33 £ 0.1811 30.0448 41.5962 -Georgia.ttf 55 8 28.7227 42.7644 34 . 33.9291 7.9550 7.9550 -Georgia.ttf 55 8 28.7227 42.7644 35 2 10.3504 26.4090 31.5047 -Georgia.ttf 55 8 28.7227 42.7644 36 5 11.3240 26.8318 40.5818 -Georgia.ttf 55 8 28.7227 42.7644 37 m 12.4122 48.0867 29.1682 -Georgia.ttf 55 8 28.7227 42.7644 38 V 1.1217 41.3045 40.6779 -Georgia.ttf 55 8 28.7227 42.7644 39 6 -0.1228 27.7083 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 40 w 13.8729 44.3365 28.0000 -Georgia.ttf 55 8 28.7227 42.7644 41 T 1.3685 36.3815 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 42 M 0.9671 49.8549 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 43 G -0.2193 39.4135 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 44 b -2.4484 31.0781 46.4730 -Georgia.ttf 55 8 28.7227 42.7644 45 9 9.9126 27.7083 41.9500 -Georgia.ttf 55 8 28.7227 42.7644 46 ; 13.6822 9.5498 38.2453 -Georgia.ttf 55 8 28.7227 42.7644 47 D 1.1658 38.0914 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 48 L 1.2040 32.4730 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 49 y 13.3023 30.7403 40.8318 -Georgia.ttf 55 8 28.7227 42.7644 50 ‘ -1.5675 8.3588 15.1682 -Georgia.ttf 55 8 28.7227 42.7644 51 \ -1.5384 23.2770 55.3045 -Georgia.ttf 55 8 28.7227 42.7644 52 R 1.1827 39.2597 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 53 < 10.3994 26.4279 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 54 4 9.9613 29.8448 41.7500 -Georgia.ttf 55 8 28.7227 42.7644 55 8 0.2145 28.7227 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 56 0 10.1809 29.8910 32.6730 -Georgia.ttf 55 8 28.7227 42.7644 57 A 1.1515 41.5962 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 58 E 0.9909 34.7056 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 59 B 1.1623 32.7646 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 60 v 13.7281 30.7403 28.0000 -Georgia.ttf 55 8 28.7227 42.7644 61 k -2.7449 31.4820 44.3365 -Georgia.ttf 55 8 28.7227 42.7644 62 J 1.0024 29.0144 41.5962 -Georgia.ttf 55 8 28.7227 42.7644 63 U 1.0913 42.2189 41.5962 -Georgia.ttf 55 8 28.7227 42.7644 64 j -2.2435 16.3365 56.6766 -Georgia.ttf 55 8 28.7227 42.7644 65 ( -1.9006 16.5865 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 66 7 11.5827 26.5818 40.5818 -Georgia.ttf 55 8 28.7227 42.7644 67 § 0.0362 22.5588 48.8094 -Georgia.ttf 55 8 28.7227 42.7644 68 $ -2.5753 27.3045 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 69 € 0.1505 36.6315 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 70 / -1.5592 23.2770 55.3045 -Georgia.ttf 55 8 28.7227 42.7644 71 C 0.1034 34.2950 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 72 * 0.1599 22.6315 19.9723 -Georgia.ttf 55 8 28.7227 42.7644 73 ” -1.4745 18.8041 15.1682 -Georgia.ttf 55 8 28.7227 42.7644 74 ? 0.0204 22.2277 42.0000 -Georgia.ttf 55 8 28.7227 42.7644 75 { -1.5342 21.2133 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 76 } -1.3919 21.2133 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 77 , 34.6395 9.5498 17.3047 -Georgia.ttf 55 8 28.7227 42.7644 78 I 1.1623 18.1351 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 79 ° -0.1020 18.4730 18.4730 -Georgia.ttf 55 8 28.7227 42.7644 80 K 1.0252 39.2597 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 81 H 0.8516 41.8878 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 82 q 11.4825 30.8903 43.1682 -Georgia.ttf 55 8 28.7227 42.7644 83 & 0.1771 39.2597 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 84 ’ -1.7496 8.3588 15.1682 -Georgia.ttf 55 8 28.7227 42.7644 85 [ -1.6166 15.1682 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 86 - 23.7568 17.0320 4.4730 -Georgia.ttf 55 8 28.7227 42.7644 87 Y 1.0734 38.9680 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 88 Q -0.2792 38.4953 52.5642 -Georgia.ttf 55 8 28.7227 42.7644 89 " -1.5925 17.7547 16.3365 -Georgia.ttf 55 8 28.7227 42.7644 90 ! -0.0635 7.9550 42.7644 -Georgia.ttf 55 8 28.7227 42.7644 91 x 13.6546 29.1682 28.0000 -Georgia.ttf 55 8 28.7227 42.7644 92 ) -1.6792 16.5865 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 93 = 18.1902 29.1682 14.4500 -Georgia.ttf 55 8 28.7227 42.7644 94 + 10.8119 29.4182 29.4182 -Georgia.ttf 55 8 28.7227 42.7644 95 X 1.0954 41.5962 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 96 » 15.1729 23.9998 23.2770 -Georgia.ttf 55 8 28.7227 42.7644 97 ' -1.1078 6.7867 16.3365 -Georgia.ttf 55 8 28.7227 42.7644 98 ¢ 5.2335 25.8241 44.7403 -Georgia.ttf 55 8 28.7227 42.7644 99 Z 1.1923 33.6912 40.4279 -Georgia.ttf 55 8 28.7227 42.7644 100 > 10.6315 26.4279 30.3365 -Georgia.ttf 55 8 28.7227 42.7644 101 ® -0.6211 50.3815 50.3815 -Georgia.ttf 55 8 28.7227 42.7644 102 © -0.3447 50.3815 50.3815 -Georgia.ttf 55 8 28.7227 42.7644 103 ] -1.4937 15.1682 52.4453 -Georgia.ttf 55 8 28.7227 42.7644 104 é -1.9410 24.6953 44.8092 -Georgia.ttf 55 8 28.7227 42.7644 105 z 13.8731 23.0270 28.0000 -Georgia.ttf 55 8 28.7227 42.7644 106 _ 46.3975 37.5498 2.7403 -Georgia.ttf 55 8 28.7227 42.7644 107 ¥ 1.4894 37.0770 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 1 t -5.5042 18.7851 38.0914 -Georgia.ttf 56 0 29.8910 32.6730 2 h -12.8369 31.5237 44.3365 -Georgia.ttf 56 0 29.8910 32.6730 3 a 2.4450 25.6635 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 4 n 2.5807 31.5237 29.1682 -Georgia.ttf 56 0 29.8910 32.6730 5 P -9.2199 31.6236 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 6 o 2.3480 27.2318 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 7 e 2.3063 24.6953 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 8 : 3.5547 7.9550 28.4038 -Georgia.ttf 56 0 29.8910 32.6730 9 r 2.3053 21.9550 29.1682 -Georgia.ttf 56 0 29.8910 32.6730 10 l -12.9858 14.8955 44.3365 -Georgia.ttf 56 0 29.8910 32.6730 11 i -11.9772 14.3538 43.8448 -Georgia.ttf 56 0 29.8910 32.6730 12 1 0.1218 19.8912 31.5047 -Georgia.ttf 56 0 29.8910 32.6730 13 | -11.3651 3.7547 55.3045 -Georgia.ttf 56 0 29.8910 32.6730 14 N -8.9922 42.0727 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 15 f -12.7401 22.1088 44.3365 -Georgia.ttf 56 0 29.8910 32.6730 16 g 2.5093 27.2356 42.0000 -Georgia.ttf 56 0 29.8910 32.6730 17 d -12.7030 30.9403 45.5047 -Georgia.ttf 56 0 29.8910 32.6730 18 W -8.9057 58.3365 40.6779 -Georgia.ttf 56 0 29.8910 32.6730 19 s 2.1140 20.9867 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 20 c 2.3968 24.1536 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 21 u 1.9873 31.5237 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 22 3 0.3887 27.3045 41.7500 -Georgia.ttf 56 0 29.8910 32.6730 23 ~ 10.1900 30.0403 10.4453 -Georgia.ttf 56 0 29.8910 32.6730 24 # -3.1875 29.1872 35.0594 -Georgia.ttf 56 0 29.8910 32.6730 25 O -9.9581 38.4953 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 26 ` -12.1395 11.6635 12.1362 -Georgia.ttf 56 0 29.8910 32.6730 27 @ -7.4807 44.6903 47.8912 -Georgia.ttf 56 0 29.8910 32.6730 28 F -8.8425 31.6736 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 29 S -10.0956 28.0000 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 30 p 2.6322 30.2638 42.0000 -Georgia.ttf 56 0 29.8910 32.6730 31 “ -11.7006 18.8041 15.1682 -Georgia.ttf 56 0 29.8910 32.6730 32 % -10.0809 41.5772 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 33 £ -10.2143 30.0448 41.5962 -Georgia.ttf 56 0 29.8910 32.6730 34 . 24.1181 7.9550 7.9550 -Georgia.ttf 56 0 29.8910 32.6730 35 2 -0.3040 26.4090 31.5047 -Georgia.ttf 56 0 29.8910 32.6730 36 5 1.2786 26.8318 40.5818 -Georgia.ttf 56 0 29.8910 32.6730 37 m 1.9254 48.0867 29.1682 -Georgia.ttf 56 0 29.8910 32.6730 38 V -8.7616 41.3045 40.6779 -Georgia.ttf 56 0 29.8910 32.6730 39 6 -10.3989 27.7083 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 40 w 3.6671 44.3365 28.0000 -Georgia.ttf 56 0 29.8910 32.6730 41 T -8.9676 36.3815 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 42 M -9.0039 49.8549 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 43 G -9.9855 39.4135 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 44 b -12.8178 31.0781 46.4730 -Georgia.ttf 56 0 29.8910 32.6730 45 9 0.1722 27.7083 41.9500 -Georgia.ttf 56 0 29.8910 32.6730 46 ; 3.7998 9.5498 38.2453 -Georgia.ttf 56 0 29.8910 32.6730 47 D -9.0544 38.0914 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 48 L -9.0229 32.4730 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 49 y 3.4273 30.7403 40.8318 -Georgia.ttf 56 0 29.8910 32.6730 50 ‘ -11.4308 8.3588 15.1682 -Georgia.ttf 56 0 29.8910 32.6730 51 \ -11.5992 23.2770 55.3045 -Georgia.ttf 56 0 29.8910 32.6730 52 R -8.8504 39.2597 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 53 < 0.1745 26.4279 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 54 4 0.2826 29.8448 41.7500 -Georgia.ttf 56 0 29.8910 32.6730 55 8 -10.0757 28.7227 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 56 0 0.0100 29.8910 32.6730 -Georgia.ttf 56 0 29.8910 32.6730 57 A -8.7689 41.5962 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 58 E -9.1299 34.7056 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 59 B -9.2398 32.7646 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 60 v 3.4203 30.7403 28.0000 -Georgia.ttf 56 0 29.8910 32.6730 61 k -13.0041 31.4820 44.3365 -Georgia.ttf 56 0 29.8910 32.6730 62 J -8.6038 29.0144 41.5962 -Georgia.ttf 56 0 29.8910 32.6730 63 U -8.7837 42.2189 41.5962 -Georgia.ttf 56 0 29.8910 32.6730 64 j -12.4971 16.3365 56.6766 -Georgia.ttf 56 0 29.8910 32.6730 65 ( -11.6186 16.5865 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 66 7 1.2029 26.5818 40.5818 -Georgia.ttf 56 0 29.8910 32.6730 67 § -10.2091 22.5588 48.8094 -Georgia.ttf 56 0 29.8910 32.6730 68 $ -12.5212 27.3045 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 69 € -10.1539 36.6315 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 70 / -11.7262 23.2770 55.3045 -Georgia.ttf 56 0 29.8910 32.6730 71 C -10.0998 34.2950 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 72 * -10.1044 22.6315 19.9723 -Georgia.ttf 56 0 29.8910 32.6730 73 ” -11.5796 18.8041 15.1682 -Georgia.ttf 56 0 29.8910 32.6730 74 ? -10.0278 22.2277 42.0000 -Georgia.ttf 56 0 29.8910 32.6730 75 { -11.6653 21.2133 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 76 } -11.7882 21.2133 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 77 , 24.2326 9.5498 17.3047 -Georgia.ttf 56 0 29.8910 32.6730 78 I -8.6488 18.1351 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 79 ° -10.0372 18.4730 18.4730 -Georgia.ttf 56 0 29.8910 32.6730 80 K -8.8974 39.2597 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 81 H -8.9358 41.8878 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 82 q 1.2497 30.8903 43.1682 -Georgia.ttf 56 0 29.8910 32.6730 83 & -10.2866 39.2597 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 84 ’ -11.4952 8.3588 15.1682 -Georgia.ttf 56 0 29.8910 32.6730 85 [ -11.7280 15.1682 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 86 - 13.8871 17.0320 4.4730 -Georgia.ttf 56 0 29.8910 32.6730 87 Y -8.9781 38.9680 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 88 Q -10.2650 38.4953 52.5642 -Georgia.ttf 56 0 29.8910 32.6730 89 " -11.5552 17.7547 16.3365 -Georgia.ttf 56 0 29.8910 32.6730 90 ! -9.7178 7.9550 42.7644 -Georgia.ttf 56 0 29.8910 32.6730 91 x 3.8573 29.1682 28.0000 -Georgia.ttf 56 0 29.8910 32.6730 92 ) -11.5379 16.5865 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 93 = 8.5347 29.1682 14.4500 -Georgia.ttf 56 0 29.8910 32.6730 94 + 0.6656 29.4182 29.4182 -Georgia.ttf 56 0 29.8910 32.6730 95 X -9.2614 41.5962 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 96 » 4.9684 23.9998 23.2770 -Georgia.ttf 56 0 29.8910 32.6730 97 ' -11.5347 6.7867 16.3365 -Georgia.ttf 56 0 29.8910 32.6730 98 ¢ -4.8300 25.8241 44.7403 -Georgia.ttf 56 0 29.8910 32.6730 99 Z -8.9270 33.6912 40.4279 -Georgia.ttf 56 0 29.8910 32.6730 100 > 0.2506 26.4279 30.3365 -Georgia.ttf 56 0 29.8910 32.6730 101 ® -10.6626 50.3815 50.3815 -Georgia.ttf 56 0 29.8910 32.6730 102 © -10.5407 50.3815 50.3815 -Georgia.ttf 56 0 29.8910 32.6730 103 ] -11.5076 15.1682 52.4453 -Georgia.ttf 56 0 29.8910 32.6730 104 é -12.4490 24.6953 44.8092 -Georgia.ttf 56 0 29.8910 32.6730 105 z 3.4871 23.0270 28.0000 -Georgia.ttf 56 0 29.8910 32.6730 106 _ 36.6502 37.5498 2.7403 -Georgia.ttf 56 0 29.8910 32.6730 107 ¥ -8.8315 37.0770 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 1 t 3.2125 18.7851 38.0914 -Georgia.ttf 57 A 41.5962 40.4279 2 h -3.5299 31.5237 44.3365 -Georgia.ttf 57 A 41.5962 40.4279 3 a 11.2698 25.6635 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 4 n 11.3282 31.5237 29.1682 -Georgia.ttf 57 A 41.5962 40.4279 5 P -0.2053 31.6236 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 6 o 11.5345 27.2318 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 7 e 11.3279 24.6953 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 8 : 12.5367 7.9550 28.4038 -Georgia.ttf 57 A 41.5962 40.4279 9 r 11.4700 21.9550 29.1682 -Georgia.ttf 57 A 41.5962 40.4279 10 l -4.0457 14.8955 44.3365 -Georgia.ttf 57 A 41.5962 40.4279 11 i -3.4532 14.3538 43.8448 -Georgia.ttf 57 A 41.5962 40.4279 12 1 8.9704 19.8912 31.5047 -Georgia.ttf 57 A 41.5962 40.4279 13 | -2.8223 3.7547 55.3045 -Georgia.ttf 57 A 41.5962 40.4279 14 N -0.2147 42.0727 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 15 f -3.7473 22.1088 44.3365 -Georgia.ttf 57 A 41.5962 40.4279 16 g 11.0883 27.2356 42.0000 -Georgia.ttf 57 A 41.5962 40.4279 17 d -3.9074 30.9403 45.5047 -Georgia.ttf 57 A 41.5962 40.4279 18 W 0.0732 58.3365 40.6779 -Georgia.ttf 57 A 41.5962 40.4279 19 s 11.3813 20.9867 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 20 c 11.1224 24.1536 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 21 u 11.2188 31.5237 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 22 3 8.9630 27.3045 41.7500 -Georgia.ttf 57 A 41.5962 40.4279 23 ~ 19.2928 30.0403 10.4453 -Georgia.ttf 57 A 41.5962 40.4279 24 # 5.2424 29.1872 35.0594 -Georgia.ttf 57 A 41.5962 40.4279 25 O -1.7128 38.4953 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 26 ` -3.1926 11.6635 12.1362 -Georgia.ttf 57 A 41.5962 40.4279 27 @ 1.3720 44.6903 47.8912 -Georgia.ttf 57 A 41.5962 40.4279 28 F 0.2581 31.6736 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 29 S -1.3397 28.0000 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 30 p 11.3615 30.2638 42.0000 -Georgia.ttf 57 A 41.5962 40.4279 31 “ -2.6931 18.8041 15.1682 -Georgia.ttf 57 A 41.5962 40.4279 32 % -1.4891 41.5772 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 33 £ -1.3444 30.0448 41.5962 -Georgia.ttf 57 A 41.5962 40.4279 34 . 32.8604 7.9550 7.9550 -Georgia.ttf 57 A 41.5962 40.4279 35 2 8.9571 26.4090 31.5047 -Georgia.ttf 57 A 41.5962 40.4279 36 5 9.9700 26.8318 40.5818 -Georgia.ttf 57 A 41.5962 40.4279 37 m 11.0740 48.0867 29.1682 -Georgia.ttf 57 A 41.5962 40.4279 38 V 0.0430 41.3045 40.6779 -Georgia.ttf 57 A 41.5962 40.4279 39 6 -1.1476 27.7083 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 40 w 12.2166 44.3365 28.0000 -Georgia.ttf 57 A 41.5962 40.4279 41 T -0.2279 36.3815 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 42 M 0.0626 49.8549 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 43 G -1.0868 39.4135 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 44 b -3.9623 31.0781 46.4730 -Georgia.ttf 57 A 41.5962 40.4279 45 9 8.9986 27.7083 41.9500 -Georgia.ttf 57 A 41.5962 40.4279 46 ; 12.4869 9.5498 38.2453 -Georgia.ttf 57 A 41.5962 40.4279 47 D 0.1130 38.0914 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 48 L 0.0005 32.4730 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 49 y 12.5185 30.7403 40.8318 -Georgia.ttf 57 A 41.5962 40.4279 50 ‘ -2.6754 8.3588 15.1682 -Georgia.ttf 57 A 41.5962 40.4279 51 \ -2.7129 23.2770 55.3045 -Georgia.ttf 57 A 41.5962 40.4279 52 R 0.0734 39.2597 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 53 < 9.3087 26.4279 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 54 4 8.9544 29.8448 41.7500 -Georgia.ttf 57 A 41.5962 40.4279 55 8 -0.9188 28.7227 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 56 0 9.0446 29.8910 32.6730 -Georgia.ttf 57 A 41.5962 40.4279 57 A 0.2460 41.5962 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 58 E -0.1956 34.7056 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 59 B -0.0601 32.7646 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 60 v 12.2301 30.7403 28.0000 -Georgia.ttf 57 A 41.5962 40.4279 61 k -4.3096 31.4820 44.3365 -Georgia.ttf 57 A 41.5962 40.4279 62 J -0.0708 29.0144 41.5962 -Georgia.ttf 57 A 41.5962 40.4279 63 U 0.0531 42.2189 41.5962 -Georgia.ttf 57 A 41.5962 40.4279 64 j -3.5495 16.3365 56.6766 -Georgia.ttf 57 A 41.5962 40.4279 65 ( -2.6893 16.5865 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 66 7 10.2655 26.5818 40.5818 -Georgia.ttf 57 A 41.5962 40.4279 67 § -1.0224 22.5588 48.8094 -Georgia.ttf 57 A 41.5962 40.4279 68 $ -4.2499 27.3045 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 69 € -1.5760 36.6315 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 70 / -2.5615 23.2770 55.3045 -Georgia.ttf 57 A 41.5962 40.4279 71 C -1.3438 34.2950 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 72 * -1.3508 22.6315 19.9723 -Georgia.ttf 57 A 41.5962 40.4279 73 ” -3.0234 18.8041 15.1682 -Georgia.ttf 57 A 41.5962 40.4279 74 ? -1.3718 22.2277 42.0000 -Georgia.ttf 57 A 41.5962 40.4279 75 { -2.7722 21.2133 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 76 } -2.6356 21.2133 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 77 , 33.3772 9.5498 17.3047 -Georgia.ttf 57 A 41.5962 40.4279 78 I 0.0260 18.1351 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 79 ° -1.1325 18.4730 18.4730 -Georgia.ttf 57 A 41.5962 40.4279 80 K -0.4207 39.2597 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 81 H 0.1005 41.8878 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 82 q 10.1506 30.8903 43.1682 -Georgia.ttf 57 A 41.5962 40.4279 83 & -1.5353 39.2597 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 84 ’ -2.6931 8.3588 15.1682 -Georgia.ttf 57 A 41.5962 40.4279 85 [ -2.5643 15.1682 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 86 - 22.6023 17.0320 4.4730 -Georgia.ttf 57 A 41.5962 40.4279 87 Y 0.1450 38.9680 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 88 Q -1.3587 38.4953 52.5642 -Georgia.ttf 57 A 41.5962 40.4279 89 " -2.3145 17.7547 16.3365 -Georgia.ttf 57 A 41.5962 40.4279 90 ! -1.0705 7.9550 42.7644 -Georgia.ttf 57 A 41.5962 40.4279 91 x 12.6208 29.1682 28.0000 -Georgia.ttf 57 A 41.5962 40.4279 92 ) -2.7668 16.5865 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 93 = 17.2509 29.1682 14.4500 -Georgia.ttf 57 A 41.5962 40.4279 94 + 9.8322 29.4182 29.4182 -Georgia.ttf 57 A 41.5962 40.4279 95 X -0.3267 41.5962 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 96 » 13.5616 23.9998 23.2770 -Georgia.ttf 57 A 41.5962 40.4279 97 ' -2.6976 6.7867 16.3365 -Georgia.ttf 57 A 41.5962 40.4279 98 ¢ 4.0991 25.8241 44.7403 -Georgia.ttf 57 A 41.5962 40.4279 99 Z 0.1794 33.6912 40.4279 -Georgia.ttf 57 A 41.5962 40.4279 100 > 9.0958 26.4279 30.3365 -Georgia.ttf 57 A 41.5962 40.4279 101 ® -1.8164 50.3815 50.3815 -Georgia.ttf 57 A 41.5962 40.4279 102 © -1.7783 50.3815 50.3815 -Georgia.ttf 57 A 41.5962 40.4279 103 ] -2.6991 15.1682 52.4453 -Georgia.ttf 57 A 41.5962 40.4279 104 é -3.1784 24.6953 44.8092 -Georgia.ttf 57 A 41.5962 40.4279 105 z 12.2250 23.0270 28.0000 -Georgia.ttf 57 A 41.5962 40.4279 106 _ 45.7315 37.5498 2.7403 -Georgia.ttf 57 A 41.5962 40.4279 107 ¥ -0.1571 37.0770 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 1 t 3.3545 18.7851 38.0914 -Georgia.ttf 58 E 34.7056 40.4279 2 h -3.7046 31.5237 44.3365 -Georgia.ttf 58 E 34.7056 40.4279 3 a 11.3495 25.6635 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 4 n 11.2751 31.5237 29.1682 -Georgia.ttf 58 E 34.7056 40.4279 5 P -0.0129 31.6236 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 6 o 11.2537 27.2318 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 7 e 11.0418 24.6953 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 8 : 12.2861 7.9550 28.4038 -Georgia.ttf 58 E 34.7056 40.4279 9 r 11.1666 21.9550 29.1682 -Georgia.ttf 58 E 34.7056 40.4279 10 l -3.9224 14.8955 44.3365 -Georgia.ttf 58 E 34.7056 40.4279 11 i -3.3714 14.3538 43.8448 -Georgia.ttf 58 E 34.7056 40.4279 12 1 8.8777 19.8912 31.5047 -Georgia.ttf 58 E 34.7056 40.4279 13 | -2.5961 3.7547 55.3045 -Georgia.ttf 58 E 34.7056 40.4279 14 N -0.1762 42.0727 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 15 f -3.6830 22.1088 44.3365 -Georgia.ttf 58 E 34.7056 40.4279 16 g 11.1531 27.2356 42.0000 -Georgia.ttf 58 E 34.7056 40.4279 17 d -3.7260 30.9403 45.5047 -Georgia.ttf 58 E 34.7056 40.4279 18 W 0.0469 58.3365 40.6779 -Georgia.ttf 58 E 34.7056 40.4279 19 s 11.2180 20.9867 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 20 c 11.1954 24.1536 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 21 u 11.3704 31.5237 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 22 3 8.8458 27.3045 41.7500 -Georgia.ttf 58 E 34.7056 40.4279 23 ~ 18.9319 30.0403 10.4453 -Georgia.ttf 58 E 34.7056 40.4279 24 # 5.5343 29.1872 35.0594 -Georgia.ttf 58 E 34.7056 40.4279 25 O -1.3508 38.4953 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 26 ` -3.2353 11.6635 12.1362 -Georgia.ttf 58 E 34.7056 40.4279 27 @ 1.5870 44.6903 47.8912 -Georgia.ttf 58 E 34.7056 40.4279 28 F 0.1705 31.6736 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 29 S -1.1867 28.0000 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 30 p 11.2285 30.2638 42.0000 -Georgia.ttf 58 E 34.7056 40.4279 31 “ -2.9401 18.8041 15.1682 -Georgia.ttf 58 E 34.7056 40.4279 32 % -1.0815 41.5772 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 33 £ -1.2094 30.0448 41.5962 -Georgia.ttf 58 E 34.7056 40.4279 34 . 32.8982 7.9550 7.9550 -Georgia.ttf 58 E 34.7056 40.4279 35 2 8.8788 26.4090 31.5047 -Georgia.ttf 58 E 34.7056 40.4279 36 5 10.1915 26.8318 40.5818 -Georgia.ttf 58 E 34.7056 40.4279 37 m 10.9047 48.0867 29.1682 -Georgia.ttf 58 E 34.7056 40.4279 38 V 0.0550 41.3045 40.6779 -Georgia.ttf 58 E 34.7056 40.4279 39 6 -1.0910 27.7083 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 40 w 12.4045 44.3365 28.0000 -Georgia.ttf 58 E 34.7056 40.4279 41 T -0.0413 36.3815 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 42 M 0.1658 49.8549 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 43 G -1.1909 39.4135 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 44 b -3.9733 31.0781 46.4730 -Georgia.ttf 58 E 34.7056 40.4279 45 9 8.8732 27.7083 41.9500 -Georgia.ttf 58 E 34.7056 40.4279 46 ; 12.4110 9.5498 38.2453 -Georgia.ttf 58 E 34.7056 40.4279 47 D 0.2485 38.0914 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 48 L -0.1088 32.4730 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 49 y 12.5475 30.7403 40.8318 -Georgia.ttf 58 E 34.7056 40.4279 50 ‘ -2.5513 8.3588 15.1682 -Georgia.ttf 58 E 34.7056 40.4279 51 \ -2.8165 23.2770 55.3045 -Georgia.ttf 58 E 34.7056 40.4279 52 R -0.1756 39.2597 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 53 < 9.0189 26.4279 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 54 4 8.6646 29.8448 41.7500 -Georgia.ttf 58 E 34.7056 40.4279 55 8 -1.4922 28.7227 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 56 0 8.6692 29.8910 32.6730 -Georgia.ttf 58 E 34.7056 40.4279 57 A -0.3254 41.5962 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 58 E 0.1964 34.7056 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 59 B -0.1163 32.7646 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 60 v 12.4460 30.7403 28.0000 -Georgia.ttf 58 E 34.7056 40.4279 61 k -4.0370 31.4820 44.3365 -Georgia.ttf 58 E 34.7056 40.4279 62 J -0.0903 29.0144 41.5962 -Georgia.ttf 58 E 34.7056 40.4279 63 U -0.2030 42.2189 41.5962 -Georgia.ttf 58 E 34.7056 40.4279 64 j -3.4251 16.3365 56.6766 -Georgia.ttf 58 E 34.7056 40.4279 65 ( -2.7590 16.5865 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 66 7 9.6688 26.5818 40.5818 -Georgia.ttf 58 E 34.7056 40.4279 67 § -1.1837 22.5588 48.8094 -Georgia.ttf 58 E 34.7056 40.4279 68 $ -3.7046 27.3045 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 69 € -1.0161 36.6315 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 70 / -2.7593 23.2770 55.3045 -Georgia.ttf 58 E 34.7056 40.4279 71 C -1.1452 34.2950 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 72 * -1.1573 22.6315 19.9723 -Georgia.ttf 58 E 34.7056 40.4279 73 ” -2.6231 18.8041 15.1682 -Georgia.ttf 58 E 34.7056 40.4279 74 ? -1.1091 22.2277 42.0000 -Georgia.ttf 58 E 34.7056 40.4279 75 { -2.2862 21.2133 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 76 } -3.0684 21.2133 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 77 , 33.4718 9.5498 17.3047 -Georgia.ttf 58 E 34.7056 40.4279 78 I 0.0028 18.1351 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 79 ° -0.8285 18.4730 18.4730 -Georgia.ttf 58 E 34.7056 40.4279 80 K -0.0945 39.2597 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 81 H 0.2400 41.8878 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 82 q 9.9201 30.8903 43.1682 -Georgia.ttf 58 E 34.7056 40.4279 83 & -1.5006 39.2597 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 84 ’ -2.5332 8.3588 15.1682 -Georgia.ttf 58 E 34.7056 40.4279 85 [ -2.7403 15.1682 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 86 - 22.3582 17.0320 4.4730 -Georgia.ttf 58 E 34.7056 40.4279 87 Y -0.1347 38.9680 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 88 Q -1.1173 38.4953 52.5642 -Georgia.ttf 58 E 34.7056 40.4279 89 " -2.8702 17.7547 16.3365 -Georgia.ttf 58 E 34.7056 40.4279 90 ! -1.1246 7.9550 42.7644 -Georgia.ttf 58 E 34.7056 40.4279 91 x 12.4279 29.1682 28.0000 -Georgia.ttf 58 E 34.7056 40.4279 92 ) -2.1830 16.5865 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 93 = 17.5115 29.1682 14.4500 -Georgia.ttf 58 E 34.7056 40.4279 94 + 9.8299 29.4182 29.4182 -Georgia.ttf 58 E 34.7056 40.4279 95 X -0.2475 41.5962 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 96 » 14.1516 23.9998 23.2770 -Georgia.ttf 58 E 34.7056 40.4279 97 ' -2.6731 6.7867 16.3365 -Georgia.ttf 58 E 34.7056 40.4279 98 ¢ 4.1418 25.8241 44.7403 -Georgia.ttf 58 E 34.7056 40.4279 99 Z 0.0833 33.6912 40.4279 -Georgia.ttf 58 E 34.7056 40.4279 100 > 9.1347 26.4279 30.3365 -Georgia.ttf 58 E 34.7056 40.4279 101 ® -1.4985 50.3815 50.3815 -Georgia.ttf 58 E 34.7056 40.4279 102 © -1.4953 50.3815 50.3815 -Georgia.ttf 58 E 34.7056 40.4279 103 ] -2.4738 15.1682 52.4453 -Georgia.ttf 58 E 34.7056 40.4279 104 é -3.3674 24.6953 44.8092 -Georgia.ttf 58 E 34.7056 40.4279 105 z 12.0567 23.0270 28.0000 -Georgia.ttf 58 E 34.7056 40.4279 106 _ 45.4712 37.5498 2.7403 -Georgia.ttf 58 E 34.7056 40.4279 107 ¥ 0.0676 37.0770 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 1 t 3.6091 18.7851 38.0914 -Georgia.ttf 59 B 32.7646 40.4279 2 h -3.9827 31.5237 44.3365 -Georgia.ttf 59 B 32.7646 40.4279 3 a 11.3091 25.6635 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 4 n 11.2250 31.5237 29.1682 -Georgia.ttf 59 B 32.7646 40.4279 5 P 0.0621 31.6236 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 6 o 11.2978 27.2318 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 7 e 11.1188 24.6953 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 8 : 12.2906 7.9550 28.4038 -Georgia.ttf 59 B 32.7646 40.4279 9 r 11.2673 21.9550 29.1682 -Georgia.ttf 59 B 32.7646 40.4279 10 l -3.9798 14.8955 44.3365 -Georgia.ttf 59 B 32.7646 40.4279 11 i -3.4953 14.3538 43.8448 -Georgia.ttf 59 B 32.7646 40.4279 12 1 8.8814 19.8912 31.5047 -Georgia.ttf 59 B 32.7646 40.4279 13 | -2.5618 3.7547 55.3045 -Georgia.ttf 59 B 32.7646 40.4279 14 N -0.0465 42.0727 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 15 f -3.7148 22.1088 44.3365 -Georgia.ttf 59 B 32.7646 40.4279 16 g 11.0950 27.2356 42.0000 -Georgia.ttf 59 B 32.7646 40.4279 17 d -3.9286 30.9403 45.5047 -Georgia.ttf 59 B 32.7646 40.4279 18 W 0.1988 58.3365 40.6779 -Georgia.ttf 59 B 32.7646 40.4279 19 s 11.3481 20.9867 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 20 c 11.4237 24.1536 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 21 u 11.2319 31.5237 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 22 3 8.9187 27.3045 41.7500 -Georgia.ttf 59 B 32.7646 40.4279 23 ~ 19.2891 30.0403 10.4453 -Georgia.ttf 59 B 32.7646 40.4279 24 # 5.1736 29.1872 35.0594 -Georgia.ttf 59 B 32.7646 40.4279 25 O -1.2581 38.4953 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 26 ` -3.1589 11.6635 12.1362 -Georgia.ttf 59 B 32.7646 40.4279 27 @ 1.2895 44.6903 47.8912 -Georgia.ttf 59 B 32.7646 40.4279 28 F 0.3813 31.6736 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 29 S -1.2609 28.0000 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 30 p 11.2782 30.2638 42.0000 -Georgia.ttf 59 B 32.7646 40.4279 31 “ -2.8028 18.8041 15.1682 -Georgia.ttf 59 B 32.7646 40.4279 32 % -1.1672 41.5772 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 33 £ -1.1856 30.0448 41.5962 -Georgia.ttf 59 B 32.7646 40.4279 34 . 32.8209 7.9550 7.9550 -Georgia.ttf 59 B 32.7646 40.4279 35 2 9.0520 26.4090 31.5047 -Georgia.ttf 59 B 32.7646 40.4279 36 5 10.0242 26.8318 40.5818 -Georgia.ttf 59 B 32.7646 40.4279 37 m 11.2653 48.0867 29.1682 -Georgia.ttf 59 B 32.7646 40.4279 38 V 0.0038 41.3045 40.6779 -Georgia.ttf 59 B 32.7646 40.4279 39 6 -0.8782 27.7083 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 40 w 12.2127 44.3365 28.0000 -Georgia.ttf 59 B 32.7646 40.4279 41 T 0.0937 36.3815 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 42 M 0.1551 49.8549 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 43 G -1.0565 39.4135 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 44 b -4.3998 31.0781 46.4730 -Georgia.ttf 59 B 32.7646 40.4279 45 9 8.9325 27.7083 41.9500 -Georgia.ttf 59 B 32.7646 40.4279 46 ; 12.5952 9.5498 38.2453 -Georgia.ttf 59 B 32.7646 40.4279 47 D -0.1548 38.0914 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 48 L 0.0844 32.4730 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 49 y 12.4048 30.7403 40.8318 -Georgia.ttf 59 B 32.7646 40.4279 50 ‘ -2.5499 8.3588 15.1682 -Georgia.ttf 59 B 32.7646 40.4279 51 \ -2.9516 23.2770 55.3045 -Georgia.ttf 59 B 32.7646 40.4279 52 R 0.0871 39.2597 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 53 < 8.9087 26.4279 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 54 4 8.9339 29.8448 41.7500 -Georgia.ttf 59 B 32.7646 40.4279 55 8 -1.5608 28.7227 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 56 0 9.0076 29.8910 32.6730 -Georgia.ttf 59 B 32.7646 40.4279 57 A 0.0083 41.5962 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 58 E 0.1079 34.7056 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 59 B 0.1353 32.7646 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 60 v 12.3440 30.7403 28.0000 -Georgia.ttf 59 B 32.7646 40.4279 61 k -3.8652 31.4820 44.3365 -Georgia.ttf 59 B 32.7646 40.4279 62 J 0.1558 29.0144 41.5962 -Georgia.ttf 59 B 32.7646 40.4279 63 U -0.0056 42.2189 41.5962 -Georgia.ttf 59 B 32.7646 40.4279 64 j -3.6696 16.3365 56.6766 -Georgia.ttf 59 B 32.7646 40.4279 65 ( -2.3212 16.5865 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 66 7 10.3625 26.5818 40.5818 -Georgia.ttf 59 B 32.7646 40.4279 67 § -0.9601 22.5588 48.8094 -Georgia.ttf 59 B 32.7646 40.4279 68 $ -3.7169 27.3045 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 69 € -1.0014 36.6315 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 70 / -2.8848 23.2770 55.3045 -Georgia.ttf 59 B 32.7646 40.4279 71 C -1.2084 34.2950 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 72 * -1.4092 22.6315 19.9723 -Georgia.ttf 59 B 32.7646 40.4279 73 ” -2.7122 18.8041 15.1682 -Georgia.ttf 59 B 32.7646 40.4279 74 ? -1.1223 22.2277 42.0000 -Georgia.ttf 59 B 32.7646 40.4279 75 { -2.5377 21.2133 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 76 } -2.6596 21.2133 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 77 , 33.5225 9.5498 17.3047 -Georgia.ttf 59 B 32.7646 40.4279 78 I 0.1579 18.1351 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 79 ° -0.9676 18.4730 18.4730 -Georgia.ttf 59 B 32.7646 40.4279 80 K 0.0710 39.2597 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 81 H 0.1548 41.8878 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 82 q 10.0422 30.8903 43.1682 -Georgia.ttf 59 B 32.7646 40.4279 83 & -1.2437 39.2597 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 84 ’ -2.7093 8.3588 15.1682 -Georgia.ttf 59 B 32.7646 40.4279 85 [ -2.9785 15.1682 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 86 - 22.8312 17.0320 4.4730 -Georgia.ttf 59 B 32.7646 40.4279 87 Y 0.0728 38.9680 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 88 Q -1.2337 38.4953 52.5642 -Georgia.ttf 59 B 32.7646 40.4279 89 " -2.7531 17.7547 16.3365 -Georgia.ttf 59 B 32.7646 40.4279 90 ! -1.2539 7.9550 42.7644 -Georgia.ttf 59 B 32.7646 40.4279 91 x 12.4009 29.1682 28.0000 -Georgia.ttf 59 B 32.7646 40.4279 92 ) -2.7148 16.5865 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 93 = 17.2487 29.1682 14.4500 -Georgia.ttf 59 B 32.7646 40.4279 94 + 9.8984 29.4182 29.4182 -Georgia.ttf 59 B 32.7646 40.4279 95 X 0.1645 41.5962 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 96 » 13.7885 23.9998 23.2770 -Georgia.ttf 59 B 32.7646 40.4279 97 ' -2.6504 6.7867 16.3365 -Georgia.ttf 59 B 32.7646 40.4279 98 ¢ 4.2636 25.8241 44.7403 -Georgia.ttf 59 B 32.7646 40.4279 99 Z -0.1381 33.6912 40.4279 -Georgia.ttf 59 B 32.7646 40.4279 100 > 8.7336 26.4279 30.3365 -Georgia.ttf 59 B 32.7646 40.4279 101 ® -1.8288 50.3815 50.3815 -Georgia.ttf 59 B 32.7646 40.4279 102 © -1.6495 50.3815 50.3815 -Georgia.ttf 59 B 32.7646 40.4279 103 ] -2.7987 15.1682 52.4453 -Georgia.ttf 59 B 32.7646 40.4279 104 é -3.2547 24.6953 44.8092 -Georgia.ttf 59 B 32.7646 40.4279 105 z 12.8107 23.0270 28.0000 -Georgia.ttf 59 B 32.7646 40.4279 106 _ 45.2545 37.5498 2.7403 -Georgia.ttf 59 B 32.7646 40.4279 107 ¥ -0.0724 37.0770 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 1 t -9.0044 18.7851 38.0914 -Georgia.ttf 60 v 30.7403 28.0000 2 h -16.4950 31.5237 44.3365 -Georgia.ttf 60 v 30.7403 28.0000 3 a -1.1953 25.6635 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 4 n -1.4537 31.5237 29.1682 -Georgia.ttf 60 v 30.7403 28.0000 5 P -12.7222 31.6236 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 6 o -1.0658 27.2318 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 7 e -1.0041 24.6953 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 8 : -0.2645 7.9550 28.4038 -Georgia.ttf 60 v 30.7403 28.0000 9 r -1.2841 21.9550 29.1682 -Georgia.ttf 60 v 30.7403 28.0000 10 l -16.1383 14.8955 44.3365 -Georgia.ttf 60 v 30.7403 28.0000 11 i -15.6148 14.3538 43.8448 -Georgia.ttf 60 v 30.7403 28.0000 12 1 -3.5517 19.8912 31.5047 -Georgia.ttf 60 v 30.7403 28.0000 13 | -14.9972 3.7547 55.3045 -Georgia.ttf 60 v 30.7403 28.0000 14 N -12.5452 42.0727 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 15 f -16.3667 22.1088 44.3365 -Georgia.ttf 60 v 30.7403 28.0000 16 g -1.2329 27.2356 42.0000 -Georgia.ttf 60 v 30.7403 28.0000 17 d -16.3690 30.9403 45.5047 -Georgia.ttf 60 v 30.7403 28.0000 18 W -12.6438 58.3365 40.6779 -Georgia.ttf 60 v 30.7403 28.0000 19 s -0.9167 20.9867 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 20 c -1.1617 24.1536 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 21 u -1.0833 31.5237 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 22 3 -3.5446 27.3045 41.7500 -Georgia.ttf 60 v 30.7403 28.0000 23 ~ 6.9851 30.0403 10.4453 -Georgia.ttf 60 v 30.7403 28.0000 24 # -7.3634 29.1872 35.0594 -Georgia.ttf 60 v 30.7403 28.0000 25 O -13.6120 38.4953 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 26 ` -15.8814 11.6635 12.1362 -Georgia.ttf 60 v 30.7403 28.0000 27 @ -10.7380 44.6903 47.8912 -Georgia.ttf 60 v 30.7403 28.0000 28 F -12.2672 31.6736 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 29 S -13.6980 28.0000 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 30 p -1.0793 30.2638 42.0000 -Georgia.ttf 60 v 30.7403 28.0000 31 “ -15.1287 18.8041 15.1682 -Georgia.ttf 60 v 30.7403 28.0000 32 % -13.7690 41.5772 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 33 £ -13.5192 30.0448 41.5962 -Georgia.ttf 60 v 30.7403 28.0000 34 . 20.5429 7.9550 7.9550 -Georgia.ttf 60 v 30.7403 28.0000 35 2 -3.5145 26.4090 31.5047 -Georgia.ttf 60 v 30.7403 28.0000 36 5 -2.4212 26.8318 40.5818 -Georgia.ttf 60 v 30.7403 28.0000 37 m -1.3379 48.0867 29.1682 -Georgia.ttf 60 v 30.7403 28.0000 38 V -12.2485 41.3045 40.6779 -Georgia.ttf 60 v 30.7403 28.0000 39 6 -13.6633 27.7083 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 40 w 0.0115 44.3365 28.0000 -Georgia.ttf 60 v 30.7403 28.0000 41 T -12.3352 36.3815 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 42 M -12.4869 49.8549 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 43 G -13.5999 39.4135 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 44 b -16.4157 31.0781 46.4730 -Georgia.ttf 60 v 30.7403 28.0000 45 9 -3.6321 27.7083 41.9500 -Georgia.ttf 60 v 30.7403 28.0000 46 ; -0.3166 9.5498 38.2453 -Georgia.ttf 60 v 30.7403 28.0000 47 D -12.5703 38.0914 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 48 L -12.3482 32.4730 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 49 y -0.0032 30.7403 40.8318 -Georgia.ttf 60 v 30.7403 28.0000 50 ‘ -14.9300 8.3588 15.1682 -Georgia.ttf 60 v 30.7403 28.0000 51 \ -15.0014 23.2770 55.3045 -Georgia.ttf 60 v 30.7403 28.0000 52 R -12.5456 39.2597 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 53 < -3.3502 26.4279 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 54 4 -3.4631 29.8448 41.7500 -Georgia.ttf 60 v 30.7403 28.0000 55 8 -13.6795 28.7227 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 56 0 -3.7202 29.8910 32.6730 -Georgia.ttf 60 v 30.7403 28.0000 57 A -12.4202 41.5962 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 58 E -12.4279 34.7056 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 59 B -12.2198 32.7646 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 60 v -0.1679 30.7403 28.0000 -Georgia.ttf 60 v 30.7403 28.0000 61 k -16.2267 31.4820 44.3365 -Georgia.ttf 60 v 30.7403 28.0000 62 J -12.4039 29.0144 41.5962 -Georgia.ttf 60 v 30.7403 28.0000 63 U -12.6763 42.2189 41.5962 -Georgia.ttf 60 v 30.7403 28.0000 64 j -16.0176 16.3365 56.6766 -Georgia.ttf 60 v 30.7403 28.0000 65 ( -15.0416 16.5865 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 66 7 -2.1170 26.5818 40.5818 -Georgia.ttf 60 v 30.7403 28.0000 67 § -13.7717 22.5588 48.8094 -Georgia.ttf 60 v 30.7403 28.0000 68 $ -16.0193 27.3045 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 69 € -13.5545 36.6315 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 70 / -15.1650 23.2770 55.3045 -Georgia.ttf 60 v 30.7403 28.0000 71 C -13.9133 34.2950 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 72 * -13.7670 22.6315 19.9723 -Georgia.ttf 60 v 30.7403 28.0000 73 ” -15.1765 18.8041 15.1682 -Georgia.ttf 60 v 30.7403 28.0000 74 ? -13.4349 22.2277 42.0000 -Georgia.ttf 60 v 30.7403 28.0000 75 { -15.3623 21.2133 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 76 } -15.2623 21.2133 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 77 , 20.8906 9.5498 17.3047 -Georgia.ttf 60 v 30.7403 28.0000 78 I -12.3083 18.1351 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 79 ° -13.3719 18.4730 18.4730 -Georgia.ttf 60 v 30.7403 28.0000 80 K -12.5942 39.2597 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 81 H -12.5411 41.8878 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 82 q -2.3875 30.8903 43.1682 -Georgia.ttf 60 v 30.7403 28.0000 83 & -13.4980 39.2597 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 84 ’ -15.3740 8.3588 15.1682 -Georgia.ttf 60 v 30.7403 28.0000 85 [ -15.2494 15.1682 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 86 - 10.0683 17.0320 4.4730 -Georgia.ttf 60 v 30.7403 28.0000 87 Y -12.3097 38.9680 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 88 Q -13.5160 38.4953 52.5642 -Georgia.ttf 60 v 30.7403 28.0000 89 " -15.3319 17.7547 16.3365 -Georgia.ttf 60 v 30.7403 28.0000 90 ! -13.4849 7.9550 42.7644 -Georgia.ttf 60 v 30.7403 28.0000 91 x -0.0060 29.1682 28.0000 -Georgia.ttf 60 v 30.7403 28.0000 92 ) -15.2577 16.5865 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 93 = 4.8032 29.1682 14.4500 -Georgia.ttf 60 v 30.7403 28.0000 94 + -2.6357 29.4182 29.4182 -Georgia.ttf 60 v 30.7403 28.0000 95 X -12.4283 41.5962 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 96 » 1.1583 23.9998 23.2770 -Georgia.ttf 60 v 30.7403 28.0000 97 ' -15.1769 6.7867 16.3365 -Georgia.ttf 60 v 30.7403 28.0000 98 ¢ -8.5117 25.8241 44.7403 -Georgia.ttf 60 v 30.7403 28.0000 99 Z -12.3069 33.6912 40.4279 -Georgia.ttf 60 v 30.7403 28.0000 100 > -3.5224 26.4279 30.3365 -Georgia.ttf 60 v 30.7403 28.0000 101 ® -13.9587 50.3815 50.3815 -Georgia.ttf 60 v 30.7403 28.0000 102 © -14.0570 50.3815 50.3815 -Georgia.ttf 60 v 30.7403 28.0000 103 ] -15.0936 15.1682 52.4453 -Georgia.ttf 60 v 30.7403 28.0000 104 é -15.7666 24.6953 44.8092 -Georgia.ttf 60 v 30.7403 28.0000 105 z 0.1158 23.0270 28.0000 -Georgia.ttf 60 v 30.7403 28.0000 106 _ 33.2013 37.5498 2.7403 -Georgia.ttf 60 v 30.7403 28.0000 107 ¥ -12.2291 37.0770 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 1 t 7.4314 18.7851 38.0914 -Georgia.ttf 61 k 31.4820 44.3365 2 h 0.0853 31.5237 44.3365 -Georgia.ttf 61 k 31.4820 44.3365 3 a 15.1290 25.6635 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 4 n 14.7729 31.5237 29.1682 -Georgia.ttf 61 k 31.4820 44.3365 5 P 3.6199 31.6236 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 6 o 15.2377 27.2318 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 7 e 15.2324 24.6953 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 8 : 16.3799 7.9550 28.4038 -Georgia.ttf 61 k 31.4820 44.3365 9 r 15.2622 21.9550 29.1682 -Georgia.ttf 61 k 31.4820 44.3365 10 l 0.0742 14.8955 44.3365 -Georgia.ttf 61 k 31.4820 44.3365 11 i 0.6075 14.3538 43.8448 -Georgia.ttf 61 k 31.4820 44.3365 12 1 12.6732 19.8912 31.5047 -Georgia.ttf 61 k 31.4820 44.3365 13 | 1.0668 3.7547 55.3045 -Georgia.ttf 61 k 31.4820 44.3365 14 N 3.8798 42.0727 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 15 f -0.1631 22.1088 44.3365 -Georgia.ttf 61 k 31.4820 44.3365 16 g 15.4891 27.2356 42.0000 -Georgia.ttf 61 k 31.4820 44.3365 17 d 0.1362 30.9403 45.5047 -Georgia.ttf 61 k 31.4820 44.3365 18 W 3.8117 58.3365 40.6779 -Georgia.ttf 61 k 31.4820 44.3365 19 s 15.2952 20.9867 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 20 c 15.2554 24.1536 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 21 u 14.9989 31.5237 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 22 3 12.7275 27.3045 41.7500 -Georgia.ttf 61 k 31.4820 44.3365 23 ~ 22.9196 30.0403 10.4453 -Georgia.ttf 61 k 31.4820 44.3365 24 # 9.2270 29.1872 35.0594 -Georgia.ttf 61 k 31.4820 44.3365 25 O 2.5078 38.4953 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 26 ` 0.6789 11.6635 12.1362 -Georgia.ttf 61 k 31.4820 44.3365 27 @ 5.3027 44.6903 47.8912 -Georgia.ttf 61 k 31.4820 44.3365 28 F 3.8806 31.6736 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 29 S 2.8292 28.0000 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 30 p 15.1066 30.2638 42.0000 -Georgia.ttf 61 k 31.4820 44.3365 31 “ 0.7984 18.8041 15.1682 -Georgia.ttf 61 k 31.4820 44.3365 32 % 2.5409 41.5772 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 33 £ 3.0434 30.0448 41.5962 -Georgia.ttf 61 k 31.4820 44.3365 34 . 36.7381 7.9550 7.9550 -Georgia.ttf 61 k 31.4820 44.3365 35 2 12.8836 26.4090 31.5047 -Georgia.ttf 61 k 31.4820 44.3365 36 5 13.9143 26.8318 40.5818 -Georgia.ttf 61 k 31.4820 44.3365 37 m 15.4699 48.0867 29.1682 -Georgia.ttf 61 k 31.4820 44.3365 38 V 3.8748 41.3045 40.6779 -Georgia.ttf 61 k 31.4820 44.3365 39 6 2.8256 27.7083 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 40 w 16.3670 44.3365 28.0000 -Georgia.ttf 61 k 31.4820 44.3365 41 T 3.7825 36.3815 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 42 M 4.0416 49.8549 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 43 G 2.4822 39.4135 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 44 b -0.2771 31.0781 46.4730 -Georgia.ttf 61 k 31.4820 44.3365 45 9 12.6709 27.7083 41.9500 -Georgia.ttf 61 k 31.4820 44.3365 46 ; 16.3603 9.5498 38.2453 -Georgia.ttf 61 k 31.4820 44.3365 47 D 3.6310 38.0914 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 48 L 3.8136 32.4730 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 49 y 16.0796 30.7403 40.8318 -Georgia.ttf 61 k 31.4820 44.3365 50 ‘ 1.3827 8.3588 15.1682 -Georgia.ttf 61 k 31.4820 44.3365 51 \ 1.3434 23.2770 55.3045 -Georgia.ttf 61 k 31.4820 44.3365 52 R 3.7532 39.2597 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 53 < 12.9615 26.4279 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 54 4 12.7220 29.8448 41.7500 -Georgia.ttf 61 k 31.4820 44.3365 55 8 2.7830 28.7227 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 56 0 12.7062 29.8910 32.6730 -Georgia.ttf 61 k 31.4820 44.3365 57 A 3.9809 41.5962 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 58 E 3.9495 34.7056 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 59 B 4.2400 32.7646 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 60 v 16.5037 30.7403 28.0000 -Georgia.ttf 61 k 31.4820 44.3365 61 k 0.1288 31.4820 44.3365 -Georgia.ttf 61 k 31.4820 44.3365 62 J 3.9897 29.0144 41.5962 -Georgia.ttf 61 k 31.4820 44.3365 63 U 3.8691 42.2189 41.5962 -Georgia.ttf 61 k 31.4820 44.3365 64 j 0.1258 16.3365 56.6766 -Georgia.ttf 61 k 31.4820 44.3365 65 ( 0.9167 16.5865 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 66 7 13.8113 26.5818 40.5818 -Georgia.ttf 61 k 31.4820 44.3365 67 § 2.6245 22.5588 48.8094 -Georgia.ttf 61 k 31.4820 44.3365 68 $ 0.1563 27.3045 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 69 € 2.9530 36.6315 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 70 / 1.2351 23.2770 55.3045 -Georgia.ttf 61 k 31.4820 44.3365 71 C 2.6560 34.2950 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 72 * 2.5590 22.6315 19.9723 -Georgia.ttf 61 k 31.4820 44.3365 73 ” 1.2456 18.8041 15.1682 -Georgia.ttf 61 k 31.4820 44.3365 74 ? 2.3831 22.2277 42.0000 -Georgia.ttf 61 k 31.4820 44.3365 75 { 1.2494 21.2133 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 76 } 0.8599 21.2133 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 77 , 37.4248 9.5498 17.3047 -Georgia.ttf 61 k 31.4820 44.3365 78 I 3.6611 18.1351 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 79 ° 2.6610 18.4730 18.4730 -Georgia.ttf 61 k 31.4820 44.3365 80 K 4.3135 39.2597 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 81 H 3.9604 41.8878 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 82 q 14.1645 30.8903 43.1682 -Georgia.ttf 61 k 31.4820 44.3365 83 & 2.6126 39.2597 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 84 ’ 1.3163 8.3588 15.1682 -Georgia.ttf 61 k 31.4820 44.3365 85 [ 1.0048 15.1682 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 86 - 26.6532 17.0320 4.4730 -Georgia.ttf 61 k 31.4820 44.3365 87 Y 3.8272 38.9680 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 88 Q 2.6533 38.4953 52.5642 -Georgia.ttf 61 k 31.4820 44.3365 89 " 1.2054 17.7547 16.3365 -Georgia.ttf 61 k 31.4820 44.3365 90 ! 2.9763 7.9550 42.7644 -Georgia.ttf 61 k 31.4820 44.3365 91 x 16.4023 29.1682 28.0000 -Georgia.ttf 61 k 31.4820 44.3365 92 ) 1.1427 16.5865 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 93 = 21.3847 29.1682 14.4500 -Georgia.ttf 61 k 31.4820 44.3365 94 + 13.8347 29.4182 29.4182 -Georgia.ttf 61 k 31.4820 44.3365 95 X 3.6752 41.5962 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 96 » 17.7076 23.9998 23.2770 -Georgia.ttf 61 k 31.4820 44.3365 97 ' 1.2093 6.7867 16.3365 -Georgia.ttf 61 k 31.4820 44.3365 98 ¢ 8.1611 25.8241 44.7403 -Georgia.ttf 61 k 31.4820 44.3365 99 Z 4.1486 33.6912 40.4279 -Georgia.ttf 61 k 31.4820 44.3365 100 > 12.7815 26.4279 30.3365 -Georgia.ttf 61 k 31.4820 44.3365 101 ® 2.2515 50.3815 50.3815 -Georgia.ttf 61 k 31.4820 44.3365 102 © 2.3267 50.3815 50.3815 -Georgia.ttf 61 k 31.4820 44.3365 103 ] 0.9976 15.1682 52.4453 -Georgia.ttf 61 k 31.4820 44.3365 104 é 0.4128 24.6953 44.8092 -Georgia.ttf 61 k 31.4820 44.3365 105 z 16.7123 23.0270 28.0000 -Georgia.ttf 61 k 31.4820 44.3365 106 _ 49.3706 37.5498 2.7403 -Georgia.ttf 61 k 31.4820 44.3365 107 ¥ 3.9002 37.0770 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 1 t 3.2735 18.7851 38.0914 -Georgia.ttf 62 J 29.0144 41.5962 2 h -3.8642 31.5237 44.3365 -Georgia.ttf 62 J 29.0144 41.5962 3 a 11.5053 25.6635 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 4 n 11.3551 31.5237 29.1682 -Georgia.ttf 62 J 29.0144 41.5962 5 P 0.0720 31.6236 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 6 o 11.1845 27.2318 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 7 e 11.2446 24.6953 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 8 : 12.4237 7.9550 28.4038 -Georgia.ttf 62 J 29.0144 41.5962 9 r 11.4710 21.9550 29.1682 -Georgia.ttf 62 J 29.0144 41.5962 10 l -3.8981 14.8955 44.3365 -Georgia.ttf 62 J 29.0144 41.5962 11 i -3.3395 14.3538 43.8448 -Georgia.ttf 62 J 29.0144 41.5962 12 1 8.9389 19.8912 31.5047 -Georgia.ttf 62 J 29.0144 41.5962 13 | -2.5693 3.7547 55.3045 -Georgia.ttf 62 J 29.0144 41.5962 14 N 0.1092 42.0727 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 15 f -3.7912 22.1088 44.3365 -Georgia.ttf 62 J 29.0144 41.5962 16 g 11.3092 27.2356 42.0000 -Georgia.ttf 62 J 29.0144 41.5962 17 d -3.9359 30.9403 45.5047 -Georgia.ttf 62 J 29.0144 41.5962 18 W 0.0417 58.3365 40.6779 -Georgia.ttf 62 J 29.0144 41.5962 19 s 11.1043 20.9867 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 20 c 11.5144 24.1536 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 21 u 11.3311 31.5237 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 22 3 9.0265 27.3045 41.7500 -Georgia.ttf 62 J 29.0144 41.5962 23 ~ 18.9460 30.0403 10.4453 -Georgia.ttf 62 J 29.0144 41.5962 24 # 5.5507 29.1872 35.0594 -Georgia.ttf 62 J 29.0144 41.5962 25 O -1.1155 38.4953 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 26 ` -3.0962 11.6635 12.1362 -Georgia.ttf 62 J 29.0144 41.5962 27 @ 1.5651 44.6903 47.8912 -Georgia.ttf 62 J 29.0144 41.5962 28 F 0.0611 31.6736 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 29 S -1.1728 28.0000 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 30 p 11.2253 30.2638 42.0000 -Georgia.ttf 62 J 29.0144 41.5962 31 “ -2.9688 18.8041 15.1682 -Georgia.ttf 62 J 29.0144 41.5962 32 % -1.3087 41.5772 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 33 £ -1.0854 30.0448 41.5962 -Georgia.ttf 62 J 29.0144 41.5962 34 . 33.2183 7.9550 7.9550 -Georgia.ttf 62 J 29.0144 41.5962 35 2 9.1671 26.4090 31.5047 -Georgia.ttf 62 J 29.0144 41.5962 36 5 10.2515 26.8318 40.5818 -Georgia.ttf 62 J 29.0144 41.5962 37 m 11.0826 48.0867 29.1682 -Georgia.ttf 62 J 29.0144 41.5962 38 V 0.0962 41.3045 40.6779 -Georgia.ttf 62 J 29.0144 41.5962 39 6 -1.0240 27.7083 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 40 w 12.3089 44.3365 28.0000 -Georgia.ttf 62 J 29.0144 41.5962 41 T -0.1057 36.3815 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 42 M -0.0208 49.8549 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 43 G -1.4100 39.4135 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 44 b -4.0475 31.0781 46.4730 -Georgia.ttf 62 J 29.0144 41.5962 45 9 8.6752 27.7083 41.9500 -Georgia.ttf 62 J 29.0144 41.5962 46 ; 12.3008 9.5498 38.2453 -Georgia.ttf 62 J 29.0144 41.5962 47 D -0.0000 38.0914 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 48 L -0.1371 32.4730 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 49 y 12.4539 30.7403 40.8318 -Georgia.ttf 62 J 29.0144 41.5962 50 ‘ -2.7441 8.3588 15.1682 -Georgia.ttf 62 J 29.0144 41.5962 51 \ -2.7825 23.2770 55.3045 -Georgia.ttf 62 J 29.0144 41.5962 52 R 0.1683 39.2597 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 53 < 8.7218 26.4279 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 54 4 8.8938 29.8448 41.7500 -Georgia.ttf 62 J 29.0144 41.5962 55 8 -1.1585 28.7227 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 56 0 9.0547 29.8910 32.6730 -Georgia.ttf 62 J 29.0144 41.5962 57 A -0.2900 41.5962 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 58 E 0.0125 34.7056 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 59 B -0.4111 32.7646 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 60 v 12.2835 30.7403 28.0000 -Georgia.ttf 62 J 29.0144 41.5962 61 k -3.9998 31.4820 44.3365 -Georgia.ttf 62 J 29.0144 41.5962 62 J 0.3828 29.0144 41.5962 -Georgia.ttf 62 J 29.0144 41.5962 63 U -0.2673 42.2189 41.5962 -Georgia.ttf 62 J 29.0144 41.5962 64 j -3.3956 16.3365 56.6766 -Georgia.ttf 62 J 29.0144 41.5962 65 ( -2.5395 16.5865 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 66 7 10.1089 26.5818 40.5818 -Georgia.ttf 62 J 29.0144 41.5962 67 § -1.3498 22.5588 48.8094 -Georgia.ttf 62 J 29.0144 41.5962 68 $ -3.9245 27.3045 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 69 € -1.1117 36.6315 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 70 / -2.5470 23.2770 55.3045 -Georgia.ttf 62 J 29.0144 41.5962 71 C -1.0652 34.2950 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 72 * -1.1321 22.6315 19.9723 -Georgia.ttf 62 J 29.0144 41.5962 73 ” -2.6344 18.8041 15.1682 -Georgia.ttf 62 J 29.0144 41.5962 74 ? -1.1474 22.2277 42.0000 -Georgia.ttf 62 J 29.0144 41.5962 75 { -2.7132 21.2133 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 76 } -2.6935 21.2133 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 77 , 33.3513 9.5498 17.3047 -Georgia.ttf 62 J 29.0144 41.5962 78 I -0.0801 18.1351 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 79 ° -1.2531 18.4730 18.4730 -Georgia.ttf 62 J 29.0144 41.5962 80 K -0.0153 39.2597 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 81 H 0.0005 41.8878 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 82 q 9.9896 30.8903 43.1682 -Georgia.ttf 62 J 29.0144 41.5962 83 & -1.4290 39.2597 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 84 ’ -2.7014 8.3588 15.1682 -Georgia.ttf 62 J 29.0144 41.5962 85 [ -2.7075 15.1682 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 86 - 22.4617 17.0320 4.4730 -Georgia.ttf 62 J 29.0144 41.5962 87 Y -0.0014 38.9680 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 88 Q -1.2670 38.4953 52.5642 -Georgia.ttf 62 J 29.0144 41.5962 89 " -2.7546 17.7547 16.3365 -Georgia.ttf 62 J 29.0144 41.5962 90 ! -1.3208 7.9550 42.7644 -Georgia.ttf 62 J 29.0144 41.5962 91 x 12.3034 29.1682 28.0000 -Georgia.ttf 62 J 29.0144 41.5962 92 ) -2.5794 16.5865 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 93 = 17.3617 29.1682 14.4500 -Georgia.ttf 62 J 29.0144 41.5962 94 + 10.2756 29.4182 29.4182 -Georgia.ttf 62 J 29.0144 41.5962 95 X -0.1636 41.5962 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 96 » 13.6864 23.9998 23.2770 -Georgia.ttf 62 J 29.0144 41.5962 97 ' -2.5758 6.7867 16.3365 -Georgia.ttf 62 J 29.0144 41.5962 98 ¢ 3.8236 25.8241 44.7403 -Georgia.ttf 62 J 29.0144 41.5962 99 Z 0.0060 33.6912 40.4279 -Georgia.ttf 62 J 29.0144 41.5962 100 > 9.1190 26.4279 30.3365 -Georgia.ttf 62 J 29.0144 41.5962 101 ® -1.5131 50.3815 50.3815 -Georgia.ttf 62 J 29.0144 41.5962 102 © -1.6495 50.3815 50.3815 -Georgia.ttf 62 J 29.0144 41.5962 103 ] -3.1693 15.1682 52.4453 -Georgia.ttf 62 J 29.0144 41.5962 104 é -3.1570 24.6953 44.8092 -Georgia.ttf 62 J 29.0144 41.5962 105 z 12.6662 23.0270 28.0000 -Georgia.ttf 62 J 29.0144 41.5962 106 _ 45.3625 37.5498 2.7403 -Georgia.ttf 62 J 29.0144 41.5962 107 ¥ -0.0514 37.0770 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 1 t 3.4690 18.7851 38.0914 -Georgia.ttf 63 U 42.2189 41.5962 2 h -4.0717 31.5237 44.3365 -Georgia.ttf 63 U 42.2189 41.5962 3 a 10.8907 25.6635 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 4 n 11.2593 31.5237 29.1682 -Georgia.ttf 63 U 42.2189 41.5962 5 P 0.3536 31.6236 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 6 o 11.0809 27.2318 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 7 e 11.2371 24.6953 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 8 : 12.5990 7.9550 28.4038 -Georgia.ttf 63 U 42.2189 41.5962 9 r 11.2355 21.9550 29.1682 -Georgia.ttf 63 U 42.2189 41.5962 10 l -4.0414 14.8955 44.3365 -Georgia.ttf 63 U 42.2189 41.5962 11 i -3.1836 14.3538 43.8448 -Georgia.ttf 63 U 42.2189 41.5962 12 1 8.8155 19.8912 31.5047 -Georgia.ttf 63 U 42.2189 41.5962 13 | -2.7265 3.7547 55.3045 -Georgia.ttf 63 U 42.2189 41.5962 14 N -0.3209 42.0727 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 15 f -4.1074 22.1088 44.3365 -Georgia.ttf 63 U 42.2189 41.5962 16 g 11.1323 27.2356 42.0000 -Georgia.ttf 63 U 42.2189 41.5962 17 d -3.6658 30.9403 45.5047 -Georgia.ttf 63 U 42.2189 41.5962 18 W -0.1187 58.3365 40.6779 -Georgia.ttf 63 U 42.2189 41.5962 19 s 11.3509 20.9867 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 20 c 10.7628 24.1536 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 21 u 11.2295 31.5237 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 22 3 9.1039 27.3045 41.7500 -Georgia.ttf 63 U 42.2189 41.5962 23 ~ 18.9502 30.0403 10.4453 -Georgia.ttf 63 U 42.2189 41.5962 24 # 5.5655 29.1872 35.0594 -Georgia.ttf 63 U 42.2189 41.5962 25 O -1.2795 38.4953 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 26 ` -2.8002 11.6635 12.1362 -Georgia.ttf 63 U 42.2189 41.5962 27 @ 1.3138 44.6903 47.8912 -Georgia.ttf 63 U 42.2189 41.5962 28 F -0.0000 31.6736 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 29 S -1.4371 28.0000 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 30 p 11.2811 30.2638 42.0000 -Georgia.ttf 63 U 42.2189 41.5962 31 “ -2.5684 18.8041 15.1682 -Georgia.ttf 63 U 42.2189 41.5962 32 % -1.3806 41.5772 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 33 £ -0.9790 30.0448 41.5962 -Georgia.ttf 63 U 42.2189 41.5962 34 . 32.9112 7.9550 7.9550 -Georgia.ttf 63 U 42.2189 41.5962 35 2 8.9250 26.4090 31.5047 -Georgia.ttf 63 U 42.2189 41.5962 36 5 9.8036 26.8318 40.5818 -Georgia.ttf 63 U 42.2189 41.5962 37 m 11.4199 48.0867 29.1682 -Georgia.ttf 63 U 42.2189 41.5962 38 V -0.2498 41.3045 40.6779 -Georgia.ttf 63 U 42.2189 41.5962 39 6 -1.2708 27.7083 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 40 w 12.4661 44.3365 28.0000 -Georgia.ttf 63 U 42.2189 41.5962 41 T 0.0301 36.3815 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 42 M -0.0514 49.8549 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 43 G -1.0881 39.4135 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 44 b -3.7126 31.0781 46.4730 -Georgia.ttf 63 U 42.2189 41.5962 45 9 8.8682 27.7083 41.9500 -Georgia.ttf 63 U 42.2189 41.5962 46 ; 12.7902 9.5498 38.2453 -Georgia.ttf 63 U 42.2189 41.5962 47 D 0.0371 38.0914 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 48 L 0.2981 32.4730 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 49 y 12.5531 30.7403 40.8318 -Georgia.ttf 63 U 42.2189 41.5962 50 ‘ -2.7454 8.3588 15.1682 -Georgia.ttf 63 U 42.2189 41.5962 51 \ -2.7277 23.2770 55.3045 -Georgia.ttf 63 U 42.2189 41.5962 52 R -0.0538 39.2597 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 53 < 9.2780 26.4279 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 54 4 9.2699 29.8448 41.7500 -Georgia.ttf 63 U 42.2189 41.5962 55 8 -0.8346 28.7227 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 56 0 9.1238 29.8910 32.6730 -Georgia.ttf 63 U 42.2189 41.5962 57 A 0.0051 41.5962 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 58 E -0.2411 34.7056 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 59 B 0.1946 32.7646 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 60 v 12.2596 30.7403 28.0000 -Georgia.ttf 63 U 42.2189 41.5962 61 k -3.7960 31.4820 44.3365 -Georgia.ttf 63 U 42.2189 41.5962 62 J 0.0283 29.0144 41.5962 -Georgia.ttf 63 U 42.2189 41.5962 63 U 0.5742 42.2189 41.5962 -Georgia.ttf 63 U 42.2189 41.5962 64 j -3.5008 16.3365 56.6766 -Georgia.ttf 63 U 42.2189 41.5962 65 ( -3.0235 16.5865 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 66 7 10.3274 26.5818 40.5818 -Georgia.ttf 63 U 42.2189 41.5962 67 § -1.1965 22.5588 48.8094 -Georgia.ttf 63 U 42.2189 41.5962 68 $ -3.6376 27.3045 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 69 € -1.2447 36.6315 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 70 / -2.8600 23.2770 55.3045 -Georgia.ttf 63 U 42.2189 41.5962 71 C -1.1842 34.2950 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 72 * -1.1349 22.6315 19.9723 -Georgia.ttf 63 U 42.2189 41.5962 73 ” -2.8049 18.8041 15.1682 -Georgia.ttf 63 U 42.2189 41.5962 74 ? -1.0389 22.2277 42.0000 -Georgia.ttf 63 U 42.2189 41.5962 75 { -2.5457 21.2133 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 76 } -3.0147 21.2133 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 77 , 33.6169 9.5498 17.3047 -Georgia.ttf 63 U 42.2189 41.5962 78 I 0.2139 18.1351 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 79 ° -1.1847 18.4730 18.4730 -Georgia.ttf 63 U 42.2189 41.5962 80 K -0.1307 39.2597 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 81 H 0.0542 41.8878 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 82 q 10.2836 30.8903 43.1682 -Georgia.ttf 63 U 42.2189 41.5962 83 & -0.8498 39.2597 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 84 ’ -3.2444 8.3588 15.1682 -Georgia.ttf 63 U 42.2189 41.5962 85 [ -2.7759 15.1682 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 86 - 22.6518 17.0320 4.4730 -Georgia.ttf 63 U 42.2189 41.5962 87 Y 0.1664 38.9680 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 88 Q -1.1900 38.4953 52.5642 -Georgia.ttf 63 U 42.2189 41.5962 89 " -2.5846 17.7547 16.3365 -Georgia.ttf 63 U 42.2189 41.5962 90 ! -1.0342 7.9550 42.7644 -Georgia.ttf 63 U 42.2189 41.5962 91 x 12.5553 29.1682 28.0000 -Georgia.ttf 63 U 42.2189 41.5962 92 ) -2.9516 16.5865 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 93 = 17.1563 29.1682 14.4500 -Georgia.ttf 63 U 42.2189 41.5962 94 + 9.8379 29.4182 29.4182 -Georgia.ttf 63 U 42.2189 41.5962 95 X -0.3530 41.5962 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 96 » 13.7814 23.9998 23.2770 -Georgia.ttf 63 U 42.2189 41.5962 97 ' -2.9340 6.7867 16.3365 -Georgia.ttf 63 U 42.2189 41.5962 98 ¢ 3.7882 25.8241 44.7403 -Georgia.ttf 63 U 42.2189 41.5962 99 Z 0.0631 33.6912 40.4279 -Georgia.ttf 63 U 42.2189 41.5962 100 > 9.0620 26.4279 30.3365 -Georgia.ttf 63 U 42.2189 41.5962 101 ® -1.7264 50.3815 50.3815 -Georgia.ttf 63 U 42.2189 41.5962 102 © -1.3710 50.3815 50.3815 -Georgia.ttf 63 U 42.2189 41.5962 103 ] -2.6532 15.1682 52.4453 -Georgia.ttf 63 U 42.2189 41.5962 104 é -3.0031 24.6953 44.8092 -Georgia.ttf 63 U 42.2189 41.5962 105 z 12.2264 23.0270 28.0000 -Georgia.ttf 63 U 42.2189 41.5962 106 _ 45.5970 37.5498 2.7403 -Georgia.ttf 63 U 42.2189 41.5962 107 ¥ 0.0403 37.0770 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 1 t 6.7988 18.7851 38.0914 -Georgia.ttf 64 j 16.3365 56.6766 2 h -0.5510 31.5237 44.3365 -Georgia.ttf 64 j 16.3365 56.6766 3 a 14.6349 25.6635 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 4 n 14.4992 31.5237 29.1682 -Georgia.ttf 64 j 16.3365 56.6766 5 P 3.4774 31.6236 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 6 o 14.7599 27.2318 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 7 e 15.0037 24.6953 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 8 : 16.0029 7.9550 28.4038 -Georgia.ttf 64 j 16.3365 56.6766 9 r 14.6811 21.9550 29.1682 -Georgia.ttf 64 j 16.3365 56.6766 10 l -0.5783 14.8955 44.3365 -Georgia.ttf 64 j 16.3365 56.6766 11 i -0.0669 14.3538 43.8448 -Georgia.ttf 64 j 16.3365 56.6766 12 1 12.3220 19.8912 31.5047 -Georgia.ttf 64 j 16.3365 56.6766 13 | 0.8022 3.7547 55.3045 -Georgia.ttf 64 j 16.3365 56.6766 14 N 3.0306 42.0727 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 15 f -0.3091 22.1088 44.3365 -Georgia.ttf 64 j 16.3365 56.6766 16 g 14.6168 27.2356 42.0000 -Georgia.ttf 64 j 16.3365 56.6766 17 d -0.5516 30.9403 45.5047 -Georgia.ttf 64 j 16.3365 56.6766 18 W 3.1486 58.3365 40.6779 -Georgia.ttf 64 j 16.3365 56.6766 19 s 14.6585 20.9867 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 20 c 14.9306 24.1536 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 21 u 14.6693 31.5237 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 22 3 12.3234 27.3045 41.7500 -Georgia.ttf 64 j 16.3365 56.6766 23 ~ 22.5146 30.0403 10.4453 -Georgia.ttf 64 j 16.3365 56.6766 24 # 8.7223 29.1872 35.0594 -Georgia.ttf 64 j 16.3365 56.6766 25 O 2.2941 38.4953 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 26 ` 0.3826 11.6635 12.1362 -Georgia.ttf 64 j 16.3365 56.6766 27 @ 4.7624 44.6903 47.8912 -Georgia.ttf 64 j 16.3365 56.6766 28 F 3.5327 31.6736 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 29 S 2.5626 28.0000 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 30 p 15.0544 30.2638 42.0000 -Georgia.ttf 64 j 16.3365 56.6766 31 “ 0.6024 18.8041 15.1682 -Georgia.ttf 64 j 16.3365 56.6766 32 % 1.8061 41.5772 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 33 £ 2.5027 30.0448 41.5962 -Georgia.ttf 64 j 16.3365 56.6766 34 . 36.2241 7.9550 7.9550 -Georgia.ttf 64 j 16.3365 56.6766 35 2 12.4027 26.4090 31.5047 -Georgia.ttf 64 j 16.3365 56.6766 36 5 13.4194 26.8318 40.5818 -Georgia.ttf 64 j 16.3365 56.6766 37 m 14.9268 48.0867 29.1682 -Georgia.ttf 64 j 16.3365 56.6766 38 V 3.2840 41.3045 40.6779 -Georgia.ttf 64 j 16.3365 56.6766 39 6 2.3333 27.7083 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 40 w 15.9605 44.3365 28.0000 -Georgia.ttf 64 j 16.3365 56.6766 41 T 3.3385 36.3815 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 42 M 3.2941 49.8549 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 43 G 2.4589 39.4135 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 44 b -0.7889 31.0781 46.4730 -Georgia.ttf 64 j 16.3365 56.6766 45 9 12.5175 27.7083 41.9500 -Georgia.ttf 64 j 16.3365 56.6766 46 ; 16.0176 9.5498 38.2453 -Georgia.ttf 64 j 16.3365 56.6766 47 D 3.5897 38.0914 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 48 L 3.3385 32.4730 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 49 y 15.7644 30.7403 40.8318 -Georgia.ttf 64 j 16.3365 56.6766 50 ‘ 0.7182 8.3588 15.1682 -Georgia.ttf 64 j 16.3365 56.6766 51 \ 0.7190 23.2770 55.3045 -Georgia.ttf 64 j 16.3365 56.6766 52 R 3.2079 39.2597 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 53 < 12.6953 26.4279 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 54 4 12.2641 29.8448 41.7500 -Georgia.ttf 64 j 16.3365 56.6766 55 8 2.3326 28.7227 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 56 0 12.3901 29.8910 32.6730 -Georgia.ttf 64 j 16.3365 56.6766 57 A 3.5435 41.5962 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 58 E 3.5414 34.7056 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 59 B 3.4467 32.7646 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 60 v 15.8623 30.7403 28.0000 -Georgia.ttf 64 j 16.3365 56.6766 61 k -0.2877 31.4820 44.3365 -Georgia.ttf 64 j 16.3365 56.6766 62 J 3.4841 29.0144 41.5962 -Georgia.ttf 64 j 16.3365 56.6766 63 U 3.4266 42.2189 41.5962 -Georgia.ttf 64 j 16.3365 56.6766 64 j 0.0774 16.3365 56.6766 -Georgia.ttf 64 j 16.3365 56.6766 65 ( 0.5597 16.5865 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 66 7 13.5083 26.5818 40.5818 -Georgia.ttf 64 j 16.3365 56.6766 67 § 2.1685 22.5588 48.8094 -Georgia.ttf 64 j 16.3365 56.6766 68 $ -0.2444 27.3045 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 69 € 2.0217 36.6315 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 70 / 0.5752 23.2770 55.3045 -Georgia.ttf 64 j 16.3365 56.6766 71 C 2.3301 34.2950 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 72 * 2.3941 22.6315 19.9723 -Georgia.ttf 64 j 16.3365 56.6766 73 ” 0.9575 18.8041 15.1682 -Georgia.ttf 64 j 16.3365 56.6766 74 ? 2.3019 22.2277 42.0000 -Georgia.ttf 64 j 16.3365 56.6766 75 { 0.7266 21.2133 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 76 } 0.5083 21.2133 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 77 , 36.7358 9.5498 17.3047 -Georgia.ttf 64 j 16.3365 56.6766 78 I 3.3395 18.1351 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 79 ° 2.4215 18.4730 18.4730 -Georgia.ttf 64 j 16.3365 56.6766 80 K 3.4469 39.2597 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 81 H 3.2209 41.8878 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 82 q 13.5500 30.8903 43.1682 -Georgia.ttf 64 j 16.3365 56.6766 83 & 2.1467 39.2597 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 84 ’ 0.5718 8.3588 15.1682 -Georgia.ttf 64 j 16.3365 56.6766 85 [ 0.6748 15.1682 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 86 - 26.0998 17.0320 4.4730 -Georgia.ttf 64 j 16.3365 56.6766 87 Y 3.5086 38.9680 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 88 Q 2.1248 38.4953 52.5642 -Georgia.ttf 64 j 16.3365 56.6766 89 " 0.8262 17.7547 16.3365 -Georgia.ttf 64 j 16.3365 56.6766 90 ! 2.0939 7.9550 42.7644 -Georgia.ttf 64 j 16.3365 56.6766 91 x 15.9167 29.1682 28.0000 -Georgia.ttf 64 j 16.3365 56.6766 92 ) 0.6357 16.5865 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 93 = 20.3449 29.1682 14.4500 -Georgia.ttf 64 j 16.3365 56.6766 94 + 13.4728 29.4182 29.4182 -Georgia.ttf 64 j 16.3365 56.6766 95 X 3.4169 41.5962 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 96 » 17.2396 23.9998 23.2770 -Georgia.ttf 64 j 16.3365 56.6766 97 ' 1.0080 6.7867 16.3365 -Georgia.ttf 64 j 16.3365 56.6766 98 ¢ 7.3559 25.8241 44.7403 -Georgia.ttf 64 j 16.3365 56.6766 99 Z 3.2583 33.6912 40.4279 -Georgia.ttf 64 j 16.3365 56.6766 100 > 12.5376 26.4279 30.3365 -Georgia.ttf 64 j 16.3365 56.6766 101 ® 1.9778 50.3815 50.3815 -Georgia.ttf 64 j 16.3365 56.6766 102 © 1.8343 50.3815 50.3815 -Georgia.ttf 64 j 16.3365 56.6766 103 ] 0.6623 15.1682 52.4453 -Georgia.ttf 64 j 16.3365 56.6766 104 é 0.2056 24.6953 44.8092 -Georgia.ttf 64 j 16.3365 56.6766 105 z 15.7395 23.0270 28.0000 -Georgia.ttf 64 j 16.3365 56.6766 106 _ 49.0416 37.5498 2.7403 -Georgia.ttf 64 j 16.3365 56.6766 107 ¥ 3.2287 37.0770 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 1 t 6.3720 18.7851 38.0914 -Georgia.ttf 65 ( 16.5865 52.4453 2 h -1.1595 31.5237 44.3365 -Georgia.ttf 65 ( 16.5865 52.4453 3 a 13.9532 25.6635 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 4 n 13.7411 31.5237 29.1682 -Georgia.ttf 65 ( 16.5865 52.4453 5 P 2.6431 31.6236 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 6 o 14.0214 27.2318 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 7 e 13.9857 24.6953 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 8 : 15.0287 7.9550 28.4038 -Georgia.ttf 65 ( 16.5865 52.4453 9 r 14.2943 21.9550 29.1682 -Georgia.ttf 65 ( 16.5865 52.4453 10 l -1.3254 14.8955 44.3365 -Georgia.ttf 65 ( 16.5865 52.4453 11 i -0.8351 14.3538 43.8448 -Georgia.ttf 65 ( 16.5865 52.4453 12 1 11.7284 19.8912 31.5047 -Georgia.ttf 65 ( 16.5865 52.4453 13 | 0.1581 3.7547 55.3045 -Georgia.ttf 65 ( 16.5865 52.4453 14 N 2.7760 42.0727 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 15 f -1.0551 22.1088 44.3365 -Georgia.ttf 65 ( 16.5865 52.4453 16 g 13.8272 27.2356 42.0000 -Georgia.ttf 65 ( 16.5865 52.4453 17 d -1.2115 30.9403 45.5047 -Georgia.ttf 65 ( 16.5865 52.4453 18 W 2.7615 58.3365 40.6779 -Georgia.ttf 65 ( 16.5865 52.4453 19 s 13.9199 20.9867 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 20 c 14.0560 24.1536 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 21 u 13.8524 31.5237 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 22 3 11.6201 27.3045 41.7500 -Georgia.ttf 65 ( 16.5865 52.4453 23 ~ 21.9747 30.0403 10.4453 -Georgia.ttf 65 ( 16.5865 52.4453 24 # 7.9145 29.1872 35.0594 -Georgia.ttf 65 ( 16.5865 52.4453 25 O 1.2751 38.4953 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 26 ` -0.3864 11.6635 12.1362 -Georgia.ttf 65 ( 16.5865 52.4453 27 @ 4.3930 44.6903 47.8912 -Georgia.ttf 65 ( 16.5865 52.4453 28 F 2.8220 31.6736 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 29 S 1.6570 28.0000 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 30 p 14.0045 30.2638 42.0000 -Georgia.ttf 65 ( 16.5865 52.4453 31 “ 0.0807 18.8041 15.1682 -Georgia.ttf 65 ( 16.5865 52.4453 32 % 1.5656 41.5772 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 33 £ 1.6468 30.0448 41.5962 -Georgia.ttf 65 ( 16.5865 52.4453 34 . 35.6913 7.9550 7.9550 -Georgia.ttf 65 ( 16.5865 52.4453 35 2 11.6278 26.4090 31.5047 -Georgia.ttf 65 ( 16.5865 52.4453 36 5 12.8184 26.8318 40.5818 -Georgia.ttf 65 ( 16.5865 52.4453 37 m 14.0514 48.0867 29.1682 -Georgia.ttf 65 ( 16.5865 52.4453 38 V 2.7250 41.3045 40.6779 -Georgia.ttf 65 ( 16.5865 52.4453 39 6 1.5656 27.7083 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 40 w 15.2879 44.3365 28.0000 -Georgia.ttf 65 ( 16.5865 52.4453 41 T 2.6245 36.3815 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 42 M 2.8330 49.8549 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 43 G 1.6992 39.4135 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 44 b -1.0811 31.0781 46.4730 -Georgia.ttf 65 ( 16.5865 52.4453 45 9 11.5681 27.7083 41.9500 -Georgia.ttf 65 ( 16.5865 52.4453 46 ; 15.2567 9.5498 38.2453 -Georgia.ttf 65 ( 16.5865 52.4453 47 D 2.9048 38.0914 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 48 L 2.9268 32.4730 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 49 y 15.2836 30.7403 40.8318 -Georgia.ttf 65 ( 16.5865 52.4453 50 ‘ 0.1623 8.3588 15.1682 -Georgia.ttf 65 ( 16.5865 52.4453 51 \ 0.1417 23.2770 55.3045 -Georgia.ttf 65 ( 16.5865 52.4453 52 R 2.8400 39.2597 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 53 < 12.0161 26.4279 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 54 4 11.7328 29.8448 41.7500 -Georgia.ttf 65 ( 16.5865 52.4453 55 8 1.6592 28.7227 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 56 0 11.4824 29.8910 32.6730 -Georgia.ttf 65 ( 16.5865 52.4453 57 A 2.7806 41.5962 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 58 E 2.6959 34.7056 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 59 B 2.9576 32.7646 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 60 v 15.0464 30.7403 28.0000 -Georgia.ttf 65 ( 16.5865 52.4453 61 k -1.0430 31.4820 44.3365 -Georgia.ttf 65 ( 16.5865 52.4453 62 J 2.8215 29.0144 41.5962 -Georgia.ttf 65 ( 16.5865 52.4453 63 U 2.8302 42.2189 41.5962 -Georgia.ttf 65 ( 16.5865 52.4453 64 j -0.7637 16.3365 56.6766 -Georgia.ttf 65 ( 16.5865 52.4453 65 ( -0.1526 16.5865 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 66 7 12.6728 26.5818 40.5818 -Georgia.ttf 65 ( 16.5865 52.4453 67 § 1.3885 22.5588 48.8094 -Georgia.ttf 65 ( 16.5865 52.4453 68 $ -0.8032 27.3045 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 69 € 1.3097 36.6315 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 70 / 0.1061 23.2770 55.3045 -Georgia.ttf 65 ( 16.5865 52.4453 71 C 1.3993 34.2950 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 72 * 1.8200 22.6315 19.9723 -Georgia.ttf 65 ( 16.5865 52.4453 73 ” 0.2734 18.8041 15.1682 -Georgia.ttf 65 ( 16.5865 52.4453 74 ? 1.7449 22.2277 42.0000 -Georgia.ttf 65 ( 16.5865 52.4453 75 { 0.1687 21.2133 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 76 } 0.1111 21.2133 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 77 , 36.2400 9.5498 17.3047 -Georgia.ttf 65 ( 16.5865 52.4453 78 I 2.6629 18.1351 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 79 ° 1.2884 18.4730 18.4730 -Georgia.ttf 65 ( 16.5865 52.4453 80 K 2.8669 39.2597 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 81 H 2.5877 41.8878 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 82 q 13.0409 30.8903 43.1682 -Georgia.ttf 65 ( 16.5865 52.4453 83 & 1.7449 39.2597 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 84 ’ 0.0672 8.3588 15.1682 -Georgia.ttf 65 ( 16.5865 52.4453 85 [ 0.2603 15.1682 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 86 - 25.5710 17.0320 4.4730 -Georgia.ttf 65 ( 16.5865 52.4453 87 Y 2.7408 38.9680 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 88 Q 1.2226 38.4953 52.5642 -Georgia.ttf 65 ( 16.5865 52.4453 89 " 0.1388 17.7547 16.3365 -Georgia.ttf 65 ( 16.5865 52.4453 90 ! 1.3807 7.9550 42.7644 -Georgia.ttf 65 ( 16.5865 52.4453 91 x 15.3931 29.1682 28.0000 -Georgia.ttf 65 ( 16.5865 52.4453 92 ) 0.2026 16.5865 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 93 = 19.8222 29.1682 14.4500 -Georgia.ttf 65 ( 16.5865 52.4453 94 + 12.6182 29.4182 29.4182 -Georgia.ttf 65 ( 16.5865 52.4453 95 X 2.5977 41.5962 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 96 » 16.5403 23.9998 23.2770 -Georgia.ttf 65 ( 16.5865 52.4453 97 ' -0.0157 6.7867 16.3365 -Georgia.ttf 65 ( 16.5865 52.4453 98 ¢ 7.0540 25.8241 44.7403 -Georgia.ttf 65 ( 16.5865 52.4453 99 Z 2.9027 33.6912 40.4279 -Georgia.ttf 65 ( 16.5865 52.4453 100 > 12.0766 26.4279 30.3365 -Georgia.ttf 65 ( 16.5865 52.4453 101 ® 1.3470 50.3815 50.3815 -Georgia.ttf 65 ( 16.5865 52.4453 102 © 1.1682 50.3815 50.3815 -Georgia.ttf 65 ( 16.5865 52.4453 103 ] 0.0065 15.1682 52.4453 -Georgia.ttf 65 ( 16.5865 52.4453 104 é -0.7122 24.6953 44.8092 -Georgia.ttf 65 ( 16.5865 52.4453 105 z 15.0903 23.0270 28.0000 -Georgia.ttf 65 ( 16.5865 52.4453 106 _ 48.1572 37.5498 2.7403 -Georgia.ttf 65 ( 16.5865 52.4453 107 ¥ 2.5828 37.0770 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 1 t -6.3598 18.7851 38.0914 -Georgia.ttf 66 7 26.5818 40.5818 2 h -13.9226 31.5237 44.3365 -Georgia.ttf 66 7 26.5818 40.5818 3 a 1.0683 25.6635 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 4 n 1.2604 31.5237 29.1682 -Georgia.ttf 66 7 26.5818 40.5818 5 P -10.1159 31.6236 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 6 o 0.9453 27.2318 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 7 e 1.1028 24.6953 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 8 : 2.3764 7.9550 28.4038 -Georgia.ttf 66 7 26.5818 40.5818 9 r 1.4149 21.9550 29.1682 -Georgia.ttf 66 7 26.5818 40.5818 10 l -14.0403 14.8955 44.3365 -Georgia.ttf 66 7 26.5818 40.5818 11 i -13.4940 14.3538 43.8448 -Georgia.ttf 66 7 26.5818 40.5818 12 1 -1.2137 19.8912 31.5047 -Georgia.ttf 66 7 26.5818 40.5818 13 | -13.0403 3.7547 55.3045 -Georgia.ttf 66 7 26.5818 40.5818 14 N -10.0394 42.0727 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 15 f -13.9774 22.1088 44.3365 -Georgia.ttf 66 7 26.5818 40.5818 16 g 1.1389 27.2356 42.0000 -Georgia.ttf 66 7 26.5818 40.5818 17 d -13.9269 30.9403 45.5047 -Georgia.ttf 66 7 26.5818 40.5818 18 W -9.9422 58.3365 40.6779 -Georgia.ttf 66 7 26.5818 40.5818 19 s 1.3091 20.9867 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 20 c 1.2412 24.1536 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 21 u 0.8479 31.5237 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 22 3 -1.2517 27.3045 41.7500 -Georgia.ttf 66 7 26.5818 40.5818 23 ~ 9.0194 30.0403 10.4453 -Georgia.ttf 66 7 26.5818 40.5818 24 # -4.6657 29.1872 35.0594 -Georgia.ttf 66 7 26.5818 40.5818 25 O -11.2597 38.4953 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 26 ` -13.4658 11.6635 12.1362 -Georgia.ttf 66 7 26.5818 40.5818 27 @ -8.7006 44.6903 47.8912 -Georgia.ttf 66 7 26.5818 40.5818 28 F -10.1786 31.6736 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 29 S -11.3468 28.0000 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 30 p 1.3554 30.2638 42.0000 -Georgia.ttf 66 7 26.5818 40.5818 31 “ -12.7326 18.8041 15.1682 -Georgia.ttf 66 7 26.5818 40.5818 32 % -11.0224 41.5772 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 33 £ -10.9732 30.0448 41.5962 -Georgia.ttf 66 7 26.5818 40.5818 34 . 22.7316 7.9550 7.9550 -Georgia.ttf 66 7 26.5818 40.5818 35 2 -1.4453 26.4090 31.5047 -Georgia.ttf 66 7 26.5818 40.5818 36 5 -0.0005 26.8318 40.5818 -Georgia.ttf 66 7 26.5818 40.5818 37 m 1.2976 48.0867 29.1682 -Georgia.ttf 66 7 26.5818 40.5818 38 V -9.9942 41.3045 40.6779 -Georgia.ttf 66 7 26.5818 40.5818 39 6 -11.1414 27.7083 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 40 w 2.4973 44.3365 28.0000 -Georgia.ttf 66 7 26.5818 40.5818 41 T -10.1629 36.3815 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 42 M -10.1688 49.8549 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 43 G -11.3771 39.4135 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 44 b -13.8008 31.0781 46.4730 -Georgia.ttf 66 7 26.5818 40.5818 45 9 -1.2054 27.7083 41.9500 -Georgia.ttf 66 7 26.5818 40.5818 46 ; 2.2494 9.5498 38.2453 -Georgia.ttf 66 7 26.5818 40.5818 47 D -10.0946 38.0914 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 48 L -10.2559 32.4730 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 49 y 2.5523 30.7403 40.8318 -Georgia.ttf 66 7 26.5818 40.5818 50 ‘ -12.7906 8.3588 15.1682 -Georgia.ttf 66 7 26.5818 40.5818 51 \ -12.7558 23.2770 55.3045 -Georgia.ttf 66 7 26.5818 40.5818 52 R -10.0180 39.2597 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 53 < -0.7649 26.4279 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 54 4 -1.1274 29.8448 41.7500 -Georgia.ttf 66 7 26.5818 40.5818 55 8 -11.2118 28.7227 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 56 0 -1.1214 29.8910 32.6730 -Georgia.ttf 66 7 26.5818 40.5818 57 A -10.0946 41.5962 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 58 E -10.0068 34.7056 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 59 B -10.3555 32.7646 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 60 v 2.2710 30.7403 28.0000 -Georgia.ttf 66 7 26.5818 40.5818 61 k -13.9755 31.4820 44.3365 -Georgia.ttf 66 7 26.5818 40.5818 62 J -10.3982 29.0144 41.5962 -Georgia.ttf 66 7 26.5818 40.5818 63 U -10.1744 42.2189 41.5962 -Georgia.ttf 66 7 26.5818 40.5818 64 j -13.6027 16.3365 56.6766 -Georgia.ttf 66 7 26.5818 40.5818 65 ( -12.9091 16.5865 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 66 7 0.1603 26.5818 40.5818 -Georgia.ttf 66 7 26.5818 40.5818 67 § -11.2055 22.5588 48.8094 -Georgia.ttf 66 7 26.5818 40.5818 68 $ -13.6790 27.3045 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 69 € -11.3838 36.6315 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 70 / -12.7720 23.2770 55.3045 -Georgia.ttf 66 7 26.5818 40.5818 71 C -11.4567 34.2950 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 72 * -11.4737 22.6315 19.9723 -Georgia.ttf 66 7 26.5818 40.5818 73 ” -12.9670 18.8041 15.1682 -Georgia.ttf 66 7 26.5818 40.5818 74 ? -11.2954 22.2277 42.0000 -Georgia.ttf 66 7 26.5818 40.5818 75 { -12.7661 21.2133 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 76 } -13.0008 21.2133 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 77 , 23.4076 9.5498 17.3047 -Georgia.ttf 66 7 26.5818 40.5818 78 I -9.9848 18.1351 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 79 ° -11.3330 18.4730 18.4730 -Georgia.ttf 66 7 26.5818 40.5818 80 K -10.1286 39.2597 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 81 H -10.1054 41.8878 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 82 q 0.1446 30.8903 43.1682 -Georgia.ttf 66 7 26.5818 40.5818 83 & -11.3755 39.2597 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 84 ’ -12.9948 8.3588 15.1682 -Georgia.ttf 66 7 26.5818 40.5818 85 [ -13.0063 15.1682 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 86 - 12.6833 17.0320 4.4730 -Georgia.ttf 66 7 26.5818 40.5818 87 Y -10.1684 38.9680 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 88 Q -11.3311 38.4953 52.5642 -Georgia.ttf 66 7 26.5818 40.5818 89 " -12.8193 17.7547 16.3365 -Georgia.ttf 66 7 26.5818 40.5818 90 ! -11.4539 7.9550 42.7644 -Georgia.ttf 66 7 26.5818 40.5818 91 x 2.1812 29.1682 28.0000 -Georgia.ttf 66 7 26.5818 40.5818 92 ) -12.8327 16.5865 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 93 = 7.2911 29.1682 14.4500 -Georgia.ttf 66 7 26.5818 40.5818 94 + 0.0335 29.4182 29.4182 -Georgia.ttf 66 7 26.5818 40.5818 95 X -9.9766 41.5962 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 96 » 3.8678 23.9998 23.2770 -Georgia.ttf 66 7 26.5818 40.5818 97 ' -12.9147 6.7867 16.3365 -Georgia.ttf 66 7 26.5818 40.5818 98 ¢ -6.2276 25.8241 44.7403 -Georgia.ttf 66 7 26.5818 40.5818 99 Z -10.0771 33.6912 40.4279 -Georgia.ttf 66 7 26.5818 40.5818 100 > -1.1030 26.4279 30.3365 -Georgia.ttf 66 7 26.5818 40.5818 101 ® -11.8665 50.3815 50.3815 -Georgia.ttf 66 7 26.5818 40.5818 102 © -11.4091 50.3815 50.3815 -Georgia.ttf 66 7 26.5818 40.5818 103 ] -12.8525 15.1682 52.4453 -Georgia.ttf 66 7 26.5818 40.5818 104 é -13.5116 24.6953 44.8092 -Georgia.ttf 66 7 26.5818 40.5818 105 z 2.4722 23.0270 28.0000 -Georgia.ttf 66 7 26.5818 40.5818 106 _ 35.3016 37.5498 2.7403 -Georgia.ttf 66 7 26.5818 40.5818 107 ¥ -10.1940 37.0770 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 1 t 4.4347 18.7851 38.0914 -Georgia.ttf 67 § 22.5588 48.8094 2 h -2.7173 31.5237 44.3365 -Georgia.ttf 67 § 22.5588 48.8094 3 a 12.2764 25.6635 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 4 n 12.5465 31.5237 29.1682 -Georgia.ttf 67 § 22.5588 48.8094 5 P 1.0273 31.6236 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 6 o 12.3522 27.2318 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 7 e 12.5545 24.6953 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 8 : 13.4317 7.9550 28.4038 -Georgia.ttf 67 § 22.5588 48.8094 9 r 12.3783 21.9550 29.1682 -Georgia.ttf 67 § 22.5588 48.8094 10 l -2.7481 14.8955 44.3365 -Georgia.ttf 67 § 22.5588 48.8094 11 i -2.1615 14.3538 43.8448 -Georgia.ttf 67 § 22.5588 48.8094 12 1 10.1530 19.8912 31.5047 -Georgia.ttf 67 § 22.5588 48.8094 13 | -1.4185 3.7547 55.3045 -Georgia.ttf 67 § 22.5588 48.8094 14 N 1.2424 42.0727 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 15 f -2.5258 22.1088 44.3365 -Georgia.ttf 67 § 22.5588 48.8094 16 g 12.5126 27.2356 42.0000 -Georgia.ttf 67 § 22.5588 48.8094 17 d -2.3983 30.9403 45.5047 -Georgia.ttf 67 § 22.5588 48.8094 18 W 1.2990 58.3365 40.6779 -Georgia.ttf 67 § 22.5588 48.8094 19 s 12.7260 20.9867 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 20 c 12.2217 24.1536 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 21 u 12.5897 31.5237 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 22 3 10.1376 27.3045 41.7500 -Georgia.ttf 67 § 22.5588 48.8094 23 ~ 20.2345 30.0403 10.4453 -Georgia.ttf 67 § 22.5588 48.8094 24 # 6.6372 29.1872 35.0594 -Georgia.ttf 67 § 22.5588 48.8094 25 O -0.1256 38.4953 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 26 ` -2.1508 11.6635 12.1362 -Georgia.ttf 67 § 22.5588 48.8094 27 @ 2.7089 44.6903 47.8912 -Georgia.ttf 67 § 22.5588 48.8094 28 F 1.4492 31.6736 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 29 S 0.2257 28.0000 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 30 p 12.3467 30.2638 42.0000 -Georgia.ttf 67 § 22.5588 48.8094 31 “ -1.5616 18.8041 15.1682 -Georgia.ttf 67 § 22.5588 48.8094 32 % -0.1992 41.5772 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 33 £ -0.2216 30.0448 41.5962 -Georgia.ttf 67 § 22.5588 48.8094 34 . 34.2144 7.9550 7.9550 -Georgia.ttf 67 § 22.5588 48.8094 35 2 9.7661 26.4090 31.5047 -Georgia.ttf 67 § 22.5588 48.8094 36 5 11.4104 26.8318 40.5818 -Georgia.ttf 67 § 22.5588 48.8094 37 m 12.3005 48.0867 29.1682 -Georgia.ttf 67 § 22.5588 48.8094 38 V 1.2845 41.3045 40.6779 -Georgia.ttf 67 § 22.5588 48.8094 39 6 0.1603 27.7083 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 40 w 13.4799 44.3365 28.0000 -Georgia.ttf 67 § 22.5588 48.8094 41 T 1.0811 36.3815 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 42 M 1.5048 49.8549 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 43 G 0.2228 39.4135 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 44 b -2.8947 31.0781 46.4730 -Georgia.ttf 67 § 22.5588 48.8094 45 9 10.4394 27.7083 41.9500 -Georgia.ttf 67 § 22.5588 48.8094 46 ; 13.3977 9.5498 38.2453 -Georgia.ttf 67 § 22.5588 48.8094 47 D 1.1468 38.0914 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 48 L 1.0395 32.4730 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 49 y 13.6503 30.7403 40.8318 -Georgia.ttf 67 § 22.5588 48.8094 50 ‘ -1.5336 8.3588 15.1682 -Georgia.ttf 67 § 22.5588 48.8094 51 \ -1.6540 23.2770 55.3045 -Georgia.ttf 67 § 22.5588 48.8094 52 R 1.3327 39.2597 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 53 < 10.2450 26.4279 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 54 4 10.0817 29.8448 41.7500 -Georgia.ttf 67 § 22.5588 48.8094 55 8 -0.1655 28.7227 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 56 0 10.0305 29.8910 32.6730 -Georgia.ttf 67 § 22.5588 48.8094 57 A 1.0773 41.5962 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 58 E 1.0766 34.7056 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 59 B 1.0955 32.7646 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 60 v 13.7699 30.7403 28.0000 -Georgia.ttf 67 § 22.5588 48.8094 61 k -2.7723 31.4820 44.3365 -Georgia.ttf 67 § 22.5588 48.8094 62 J 1.1725 29.0144 41.5962 -Georgia.ttf 67 § 22.5588 48.8094 63 U 1.1135 42.2189 41.5962 -Georgia.ttf 67 § 22.5588 48.8094 64 j -2.2129 16.3365 56.6766 -Georgia.ttf 67 § 22.5588 48.8094 65 ( -1.4759 16.5865 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 66 7 11.4167 26.5818 40.5818 -Georgia.ttf 67 § 22.5588 48.8094 67 § -0.0422 22.5588 48.8094 -Georgia.ttf 67 § 22.5588 48.8094 68 $ -2.3862 27.3045 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 69 € -0.0482 36.6315 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 70 / -1.4683 23.2770 55.3045 -Georgia.ttf 67 § 22.5588 48.8094 71 C 0.0208 34.2950 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 72 * -0.0979 22.6315 19.9723 -Georgia.ttf 67 § 22.5588 48.8094 73 ” -1.6193 18.8041 15.1682 -Georgia.ttf 67 § 22.5588 48.8094 74 ? 0.0143 22.2277 42.0000 -Georgia.ttf 67 § 22.5588 48.8094 75 { -1.6543 21.2133 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 76 } -1.2583 21.2133 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 77 , 34.6304 9.5498 17.3047 -Georgia.ttf 67 § 22.5588 48.8094 78 I 1.4101 18.1351 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 79 ° 0.0004 18.4730 18.4730 -Georgia.ttf 67 § 22.5588 48.8094 80 K 1.2484 39.2597 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 81 H 1.1353 41.8878 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 82 q 11.4231 30.8903 43.1682 -Georgia.ttf 67 § 22.5588 48.8094 83 & -0.0871 39.2597 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 84 ’ -1.5804 8.3588 15.1682 -Georgia.ttf 67 § 22.5588 48.8094 85 [ -1.6088 15.1682 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 86 - 23.7823 17.0320 4.4730 -Georgia.ttf 67 § 22.5588 48.8094 87 Y 1.2494 38.9680 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 88 Q -0.1060 38.4953 52.5642 -Georgia.ttf 67 § 22.5588 48.8094 89 " -1.6949 17.7547 16.3365 -Georgia.ttf 67 § 22.5588 48.8094 90 ! -0.0185 7.9550 42.7644 -Georgia.ttf 67 § 22.5588 48.8094 91 x 13.7276 29.1682 28.0000 -Georgia.ttf 67 § 22.5588 48.8094 92 ) -1.3978 16.5865 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 93 = 18.1749 29.1682 14.4500 -Georgia.ttf 67 § 22.5588 48.8094 94 + 10.9828 29.4182 29.4182 -Georgia.ttf 67 § 22.5588 48.8094 95 X 1.2554 41.5962 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 96 » 14.9704 23.9998 23.2770 -Georgia.ttf 67 § 22.5588 48.8094 97 ' -1.7309 6.7867 16.3365 -Georgia.ttf 67 § 22.5588 48.8094 98 ¢ 5.1920 25.8241 44.7403 -Georgia.ttf 67 § 22.5588 48.8094 99 Z 1.1830 33.6912 40.4279 -Georgia.ttf 67 § 22.5588 48.8094 100 > 10.3073 26.4279 30.3365 -Georgia.ttf 67 § 22.5588 48.8094 101 ® -0.7412 50.3815 50.3815 -Georgia.ttf 67 § 22.5588 48.8094 102 © -0.4955 50.3815 50.3815 -Georgia.ttf 67 § 22.5588 48.8094 103 ] -1.5701 15.1682 52.4453 -Georgia.ttf 67 § 22.5588 48.8094 104 é -2.4160 24.6953 44.8092 -Georgia.ttf 67 § 22.5588 48.8094 105 z 13.7927 23.0270 28.0000 -Georgia.ttf 67 § 22.5588 48.8094 106 _ 46.8017 37.5498 2.7403 -Georgia.ttf 67 § 22.5588 48.8094 107 ¥ 0.9612 37.0770 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 1 t 7.2939 18.7851 38.0914 -Georgia.ttf 68 $ 27.3045 52.4453 2 h -0.4463 31.5237 44.3365 -Georgia.ttf 68 $ 27.3045 52.4453 3 a 14.9579 25.6635 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 4 n 14.9099 31.5237 29.1682 -Georgia.ttf 68 $ 27.3045 52.4453 5 P 3.4913 31.6236 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 6 o 14.7671 27.2318 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 7 e 14.8997 24.6953 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 8 : 16.3287 7.9550 28.4038 -Georgia.ttf 68 $ 27.3045 52.4453 9 r 14.8409 21.9550 29.1682 -Georgia.ttf 68 $ 27.3045 52.4453 10 l -0.2045 14.8955 44.3365 -Georgia.ttf 68 $ 27.3045 52.4453 11 i 0.2214 14.3538 43.8448 -Georgia.ttf 68 $ 27.3045 52.4453 12 1 12.8125 19.8912 31.5047 -Georgia.ttf 68 $ 27.3045 52.4453 13 | 1.0685 3.7547 55.3045 -Georgia.ttf 68 $ 27.3045 52.4453 14 N 3.3314 42.0727 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 15 f -0.2204 22.1088 44.3365 -Georgia.ttf 68 $ 27.3045 52.4453 16 g 14.9645 27.2356 42.0000 -Georgia.ttf 68 $ 27.3045 52.4453 17 d -0.1551 30.9403 45.5047 -Georgia.ttf 68 $ 27.3045 52.4453 18 W 3.7089 58.3365 40.6779 -Georgia.ttf 68 $ 27.3045 52.4453 19 s 14.7500 20.9867 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 20 c 14.9187 24.1536 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 21 u 14.8682 31.5237 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 22 3 12.5456 27.3045 41.7500 -Georgia.ttf 68 $ 27.3045 52.4453 23 ~ 23.2726 30.0403 10.4453 -Georgia.ttf 68 $ 27.3045 52.4453 24 # 8.9404 29.1872 35.0594 -Georgia.ttf 68 $ 27.3045 52.4453 25 O 2.4788 38.4953 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 26 ` 0.4071 11.6635 12.1362 -Georgia.ttf 68 $ 27.3045 52.4453 27 @ 4.8788 44.6903 47.8912 -Georgia.ttf 68 $ 27.3045 52.4453 28 F 3.8193 31.6736 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 29 S 2.2725 28.0000 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 30 p 14.6577 30.2638 42.0000 -Georgia.ttf 68 $ 27.3045 52.4453 31 “ 0.5184 18.8041 15.1682 -Georgia.ttf 68 $ 27.3045 52.4453 32 % 2.4820 41.5772 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 33 £ 2.5983 30.0448 41.5962 -Georgia.ttf 68 $ 27.3045 52.4453 34 . 36.9821 7.9550 7.9550 -Georgia.ttf 68 $ 27.3045 52.4453 35 2 12.5016 26.4090 31.5047 -Georgia.ttf 68 $ 27.3045 52.4453 36 5 13.5877 26.8318 40.5818 -Georgia.ttf 68 $ 27.3045 52.4453 37 m 14.9040 48.0867 29.1682 -Georgia.ttf 68 $ 27.3045 52.4453 38 V 3.8527 41.3045 40.6779 -Georgia.ttf 68 $ 27.3045 52.4453 39 6 2.7517 27.7083 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 40 w 15.9483 44.3365 28.0000 -Georgia.ttf 68 $ 27.3045 52.4453 41 T 3.5060 36.3815 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 42 M 3.5949 49.8549 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 43 G 2.5932 39.4135 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 44 b -0.3000 31.0781 46.4730 -Georgia.ttf 68 $ 27.3045 52.4453 45 9 12.5121 27.7083 41.9500 -Georgia.ttf 68 $ 27.3045 52.4453 46 ; 16.2394 9.5498 38.2453 -Georgia.ttf 68 $ 27.3045 52.4453 47 D 3.6470 38.0914 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 48 L 3.9644 32.4730 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 49 y 16.0105 30.7403 40.8318 -Georgia.ttf 68 $ 27.3045 52.4453 50 ‘ 0.9915 8.3588 15.1682 -Georgia.ttf 68 $ 27.3045 52.4453 51 \ 0.8571 23.2770 55.3045 -Georgia.ttf 68 $ 27.3045 52.4453 52 R 3.8940 39.2597 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 53 < 12.5250 26.4279 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 54 4 12.5850 29.8448 41.7500 -Georgia.ttf 68 $ 27.3045 52.4453 55 8 2.4315 28.7227 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 56 0 12.5786 29.8910 32.6730 -Georgia.ttf 68 $ 27.3045 52.4453 57 A 3.5319 41.5962 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 58 E 3.7392 34.7056 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 59 B 3.7957 32.7646 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 60 v 15.8609 30.7403 28.0000 -Georgia.ttf 68 $ 27.3045 52.4453 61 k 0.3224 31.4820 44.3365 -Georgia.ttf 68 $ 27.3045 52.4453 62 J 3.3652 29.0144 41.5962 -Georgia.ttf 68 $ 27.3045 52.4453 63 U 3.5806 42.2189 41.5962 -Georgia.ttf 68 $ 27.3045 52.4453 64 j 0.2386 16.3365 56.6766 -Georgia.ttf 68 $ 27.3045 52.4453 65 ( 0.6026 16.5865 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 66 7 13.9400 26.5818 40.5818 -Georgia.ttf 68 $ 27.3045 52.4453 67 § 2.6100 22.5588 48.8094 -Georgia.ttf 68 $ 27.3045 52.4453 68 $ -0.0857 27.3045 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 69 € 2.7405 36.6315 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 70 / 0.8514 23.2770 55.3045 -Georgia.ttf 68 $ 27.3045 52.4453 71 C 2.4917 34.2950 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 72 * 2.4914 22.6315 19.9723 -Georgia.ttf 68 $ 27.3045 52.4453 73 ” 0.8891 18.8041 15.1682 -Georgia.ttf 68 $ 27.3045 52.4453 74 ? 2.4602 22.2277 42.0000 -Georgia.ttf 68 $ 27.3045 52.4453 75 { 0.8055 21.2133 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 76 } 0.9077 21.2133 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 77 , 37.1142 9.5498 17.3047 -Georgia.ttf 68 $ 27.3045 52.4453 78 I 3.7300 18.1351 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 79 ° 2.5039 18.4730 18.4730 -Georgia.ttf 68 $ 27.3045 52.4453 80 K 3.5554 39.2597 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 81 H 3.7842 41.8878 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 82 q 13.8450 30.8903 43.1682 -Georgia.ttf 68 $ 27.3045 52.4453 83 & 2.7387 39.2597 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 84 ’ 0.8728 8.3588 15.1682 -Georgia.ttf 68 $ 27.3045 52.4453 85 [ 0.5628 15.1682 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 86 - 26.3702 17.0320 4.4730 -Georgia.ttf 68 $ 27.3045 52.4453 87 Y 3.7185 38.9680 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 88 Q 2.3286 38.4953 52.5642 -Georgia.ttf 68 $ 27.3045 52.4453 89 " 0.6959 17.7547 16.3365 -Georgia.ttf 68 $ 27.3045 52.4453 90 ! 2.2187 7.9550 42.7644 -Georgia.ttf 68 $ 27.3045 52.4453 91 x 16.0986 29.1682 28.0000 -Georgia.ttf 68 $ 27.3045 52.4453 92 ) 0.6837 16.5865 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 93 = 21.1927 29.1682 14.4500 -Georgia.ttf 68 $ 27.3045 52.4453 94 + 13.5955 29.4182 29.4182 -Georgia.ttf 68 $ 27.3045 52.4453 95 X 3.7788 41.5962 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 96 » 17.5610 23.9998 23.2770 -Georgia.ttf 68 $ 27.3045 52.4453 97 ' 0.8287 6.7867 16.3365 -Georgia.ttf 68 $ 27.3045 52.4453 98 ¢ 7.7823 25.8241 44.7403 -Georgia.ttf 68 $ 27.3045 52.4453 99 Z 3.8885 33.6912 40.4279 -Georgia.ttf 68 $ 27.3045 52.4453 100 > 12.8542 26.4279 30.3365 -Georgia.ttf 68 $ 27.3045 52.4453 101 ® 2.5196 50.3815 50.3815 -Georgia.ttf 68 $ 27.3045 52.4453 102 © 1.8765 50.3815 50.3815 -Georgia.ttf 68 $ 27.3045 52.4453 103 ] 0.9956 15.1682 52.4453 -Georgia.ttf 68 $ 27.3045 52.4453 104 é 0.7439 24.6953 44.8092 -Georgia.ttf 68 $ 27.3045 52.4453 105 z 15.8901 23.0270 28.0000 -Georgia.ttf 68 $ 27.3045 52.4453 106 _ 49.1397 37.5498 2.7403 -Georgia.ttf 68 $ 27.3045 52.4453 107 ¥ 3.7869 37.0770 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 1 t 4.5775 18.7851 38.0914 -Georgia.ttf 69 € 36.6315 42.7644 2 h -2.7478 31.5237 44.3365 -Georgia.ttf 69 € 36.6315 42.7644 3 a 12.1864 25.6635 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 4 n 12.4366 31.5237 29.1682 -Georgia.ttf 69 € 36.6315 42.7644 5 P 0.9819 31.6236 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 6 o 12.6473 27.2318 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 7 e 12.3482 24.6953 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 8 : 13.8289 7.9550 28.4038 -Georgia.ttf 69 € 36.6315 42.7644 9 r 12.3473 21.9550 29.1682 -Georgia.ttf 69 € 36.6315 42.7644 10 l -3.0834 14.8955 44.3365 -Georgia.ttf 69 € 36.6315 42.7644 11 i -2.1245 14.3538 43.8448 -Georgia.ttf 69 € 36.6315 42.7644 12 1 9.9203 19.8912 31.5047 -Georgia.ttf 69 € 36.6315 42.7644 13 | -1.6602 3.7547 55.3045 -Georgia.ttf 69 € 36.6315 42.7644 14 N 1.0087 42.0727 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 15 f -3.0401 22.1088 44.3365 -Georgia.ttf 69 € 36.6315 42.7644 16 g 12.3482 27.2356 42.0000 -Georgia.ttf 69 € 36.6315 42.7644 17 d -2.6941 30.9403 45.5047 -Georgia.ttf 69 € 36.6315 42.7644 18 W 1.1603 58.3365 40.6779 -Georgia.ttf 69 € 36.6315 42.7644 19 s 12.4632 20.9867 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 20 c 12.6012 24.1536 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 21 u 12.2246 31.5237 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 22 3 9.7952 27.3045 41.7500 -Georgia.ttf 69 € 36.6315 42.7644 23 ~ 20.7257 30.0403 10.4453 -Georgia.ttf 69 € 36.6315 42.7644 24 # 6.7002 29.1872 35.0594 -Georgia.ttf 69 € 36.6315 42.7644 25 O -0.0017 38.4953 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 26 ` -2.0865 11.6635 12.1362 -Georgia.ttf 69 € 36.6315 42.7644 27 @ 2.4432 44.6903 47.8912 -Georgia.ttf 69 € 36.6315 42.7644 28 F 1.3499 31.6736 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 29 S -0.3174 28.0000 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 30 p 12.3943 30.2638 42.0000 -Georgia.ttf 69 € 36.6315 42.7644 31 “ -1.2139 18.8041 15.1682 -Georgia.ttf 69 € 36.6315 42.7644 32 % 0.2145 41.5772 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 33 £ -0.0357 30.0448 41.5962 -Georgia.ttf 69 € 36.6315 42.7644 34 . 33.9139 7.9550 7.9550 -Georgia.ttf 69 € 36.6315 42.7644 35 2 10.2375 26.4090 31.5047 -Georgia.ttf 69 € 36.6315 42.7644 36 5 11.0327 26.8318 40.5818 -Georgia.ttf 69 € 36.6315 42.7644 37 m 12.3478 48.0867 29.1682 -Georgia.ttf 69 € 36.6315 42.7644 38 V 1.1255 41.3045 40.6779 -Georgia.ttf 69 € 36.6315 42.7644 39 6 0.1061 27.7083 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 40 w 13.6179 44.3365 28.0000 -Georgia.ttf 69 € 36.6315 42.7644 41 T 1.1538 36.3815 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 42 M 1.3253 49.8549 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 43 G 0.2303 39.4135 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 44 b -2.6806 31.0781 46.4730 -Georgia.ttf 69 € 36.6315 42.7644 45 9 10.1960 27.7083 41.9500 -Georgia.ttf 69 € 36.6315 42.7644 46 ; 13.8204 9.5498 38.2453 -Georgia.ttf 69 € 36.6315 42.7644 47 D 1.2295 38.0914 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 48 L 1.2812 32.4730 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 49 y 13.5084 30.7403 40.8318 -Georgia.ttf 69 € 36.6315 42.7644 50 ‘ -1.7255 8.3588 15.1682 -Georgia.ttf 69 € 36.6315 42.7644 51 \ -1.5883 23.2770 55.3045 -Georgia.ttf 69 € 36.6315 42.7644 52 R 1.0738 39.2597 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 53 < 10.3150 26.4279 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 54 4 9.8933 29.8448 41.7500 -Georgia.ttf 69 € 36.6315 42.7644 55 8 -0.0917 28.7227 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 56 0 10.0370 29.8910 32.6730 -Georgia.ttf 69 € 36.6315 42.7644 57 A 1.1609 41.5962 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 58 E 0.8962 34.7056 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 59 B 1.3134 32.7646 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 60 v 13.8942 30.7403 28.0000 -Georgia.ttf 69 € 36.6315 42.7644 61 k -2.5374 31.4820 44.3365 -Georgia.ttf 69 € 36.6315 42.7644 62 J 1.2627 29.0144 41.5962 -Georgia.ttf 69 € 36.6315 42.7644 63 U 0.8391 42.2189 41.5962 -Georgia.ttf 69 € 36.6315 42.7644 64 j -2.2903 16.3365 56.6766 -Georgia.ttf 69 € 36.6315 42.7644 65 ( -1.3233 16.5865 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 66 7 11.3180 26.5818 40.5818 -Georgia.ttf 69 € 36.6315 42.7644 67 § 0.3253 22.5588 48.8094 -Georgia.ttf 69 € 36.6315 42.7644 68 $ -2.5443 27.3045 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 69 € 0.3666 36.6315 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 70 / -1.7802 23.2770 55.3045 -Georgia.ttf 69 € 36.6315 42.7644 71 C 0.2574 34.2950 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 72 * 0.0006 22.6315 19.9723 -Georgia.ttf 69 € 36.6315 42.7644 73 ” -1.6379 18.8041 15.1682 -Georgia.ttf 69 € 36.6315 42.7644 74 ? 0.0605 22.2277 42.0000 -Georgia.ttf 69 € 36.6315 42.7644 75 { -1.5062 21.2133 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 76 } -1.3643 21.2133 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 77 , 34.7026 9.5498 17.3047 -Georgia.ttf 69 € 36.6315 42.7644 78 I 1.3091 18.1351 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 79 ° -0.3188 18.4730 18.4730 -Georgia.ttf 69 € 36.6315 42.7644 80 K 1.0337 39.2597 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 81 H 1.1336 41.8878 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 82 q 11.2267 30.8903 43.1682 -Georgia.ttf 69 € 36.6315 42.7644 83 & 0.0763 39.2597 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 84 ’ -1.7866 8.3588 15.1682 -Georgia.ttf 69 € 36.6315 42.7644 85 [ -1.6861 15.1682 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 86 - 23.9486 17.0320 4.4730 -Georgia.ttf 69 € 36.6315 42.7644 87 Y 0.9383 38.9680 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 88 Q 0.2411 38.4953 52.5642 -Georgia.ttf 69 € 36.6315 42.7644 89 " -1.4938 17.7547 16.3365 -Georgia.ttf 69 € 36.6315 42.7644 90 ! -0.0214 7.9550 42.7644 -Georgia.ttf 69 € 36.6315 42.7644 91 x 13.4271 29.1682 28.0000 -Georgia.ttf 69 € 36.6315 42.7644 92 ) -1.6358 16.5865 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 93 = 18.5509 29.1682 14.4500 -Georgia.ttf 69 € 36.6315 42.7644 94 + 10.9337 29.4182 29.4182 -Georgia.ttf 69 € 36.6315 42.7644 95 X 1.0028 41.5962 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 96 » 15.2253 23.9998 23.2770 -Georgia.ttf 69 € 36.6315 42.7644 97 ' -1.7816 6.7867 16.3365 -Georgia.ttf 69 € 36.6315 42.7644 98 ¢ 5.2168 25.8241 44.7403 -Georgia.ttf 69 € 36.6315 42.7644 99 Z 1.1691 33.6912 40.4279 -Georgia.ttf 69 € 36.6315 42.7644 100 > 10.5242 26.4279 30.3365 -Georgia.ttf 69 € 36.6315 42.7644 101 ® -0.2835 50.3815 50.3815 -Georgia.ttf 69 € 36.6315 42.7644 102 © -0.4098 50.3815 50.3815 -Georgia.ttf 69 € 36.6315 42.7644 103 ] -1.3126 15.1682 52.4453 -Georgia.ttf 69 € 36.6315 42.7644 104 é -2.1617 24.6953 44.8092 -Georgia.ttf 69 € 36.6315 42.7644 105 z 13.8827 23.0270 28.0000 -Georgia.ttf 69 € 36.6315 42.7644 106 _ 46.7800 37.5498 2.7403 -Georgia.ttf 69 € 36.6315 42.7644 107 ¥ 1.4188 37.0770 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 1 t 6.0805 18.7851 38.0914 -Georgia.ttf 70 / 23.2770 55.3045 2 h -1.2494 31.5237 44.3365 -Georgia.ttf 70 / 23.2770 55.3045 3 a 13.7371 25.6635 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 4 n 14.0570 31.5237 29.1682 -Georgia.ttf 70 / 23.2770 55.3045 5 P 2.8548 31.6236 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 6 o 13.7214 27.2318 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 7 e 13.8054 24.6953 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 8 : 15.0714 7.9550 28.4038 -Georgia.ttf 70 / 23.2770 55.3045 9 r 14.1956 21.9550 29.1682 -Georgia.ttf 70 / 23.2770 55.3045 10 l -1.1468 14.8955 44.3365 -Georgia.ttf 70 / 23.2770 55.3045 11 i -0.8091 14.3538 43.8448 -Georgia.ttf 70 / 23.2770 55.3045 12 1 11.5050 19.8912 31.5047 -Georgia.ttf 70 / 23.2770 55.3045 13 | -0.0969 3.7547 55.3045 -Georgia.ttf 70 / 23.2770 55.3045 14 N 2.7921 42.0727 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 15 f -1.2397 22.1088 44.3365 -Georgia.ttf 70 / 23.2770 55.3045 16 g 14.0409 27.2356 42.0000 -Georgia.ttf 70 / 23.2770 55.3045 17 d -1.1752 30.9403 45.5047 -Georgia.ttf 70 / 23.2770 55.3045 18 W 2.7575 58.3365 40.6779 -Georgia.ttf 70 / 23.2770 55.3045 19 s 13.7570 20.9867 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 20 c 13.8879 24.1536 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 21 u 13.8776 31.5237 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 22 3 11.7135 27.3045 41.7500 -Georgia.ttf 70 / 23.2770 55.3045 23 ~ 22.0591 30.0403 10.4453 -Georgia.ttf 70 / 23.2770 55.3045 24 # 7.8780 29.1872 35.0594 -Georgia.ttf 70 / 23.2770 55.3045 25 O 1.7442 38.4953 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 26 ` 0.0342 11.6635 12.1362 -Georgia.ttf 70 / 23.2770 55.3045 27 @ 4.1478 44.6903 47.8912 -Georgia.ttf 70 / 23.2770 55.3045 28 F 2.5877 31.6736 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 29 S 1.7264 28.0000 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 30 p 14.1405 30.2638 42.0000 -Georgia.ttf 70 / 23.2770 55.3045 31 “ -0.1441 18.8041 15.1682 -Georgia.ttf 70 / 23.2770 55.3045 32 % 1.2124 41.5772 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 33 £ 1.4286 30.0448 41.5962 -Georgia.ttf 70 / 23.2770 55.3045 34 . 35.8733 7.9550 7.9550 -Georgia.ttf 70 / 23.2770 55.3045 35 2 11.9958 26.4090 31.5047 -Georgia.ttf 70 / 23.2770 55.3045 36 5 12.9865 26.8318 40.5818 -Georgia.ttf 70 / 23.2770 55.3045 37 m 14.0707 48.0867 29.1682 -Georgia.ttf 70 / 23.2770 55.3045 38 V 2.5328 41.3045 40.6779 -Georgia.ttf 70 / 23.2770 55.3045 39 6 1.2264 27.7083 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 40 w 15.2442 44.3365 28.0000 -Georgia.ttf 70 / 23.2770 55.3045 41 T 2.5185 36.3815 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 42 M 2.8145 49.8549 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 43 G 1.4576 39.4135 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 44 b -1.1699 31.0781 46.4730 -Georgia.ttf 70 / 23.2770 55.3045 45 9 11.7789 27.7083 41.9500 -Georgia.ttf 70 / 23.2770 55.3045 46 ; 15.0742 9.5498 38.2453 -Georgia.ttf 70 / 23.2770 55.3045 47 D 2.5865 38.0914 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 48 L 2.5778 32.4730 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 49 y 15.0936 30.7403 40.8318 -Georgia.ttf 70 / 23.2770 55.3045 50 ‘ -0.0143 8.3588 15.1682 -Georgia.ttf 70 / 23.2770 55.3045 51 \ -0.2418 23.2770 55.3045 -Georgia.ttf 70 / 23.2770 55.3045 52 R 2.6487 39.2597 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 53 < 11.8937 26.4279 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 54 4 11.6205 29.8448 41.7500 -Georgia.ttf 70 / 23.2770 55.3045 55 8 1.4792 28.7227 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 56 0 11.7135 29.8910 32.6730 -Georgia.ttf 70 / 23.2770 55.3045 57 A 2.7903 41.5962 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 58 E 2.5915 34.7056 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 59 B 2.8270 32.7646 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 60 v 15.1603 30.7403 28.0000 -Georgia.ttf 70 / 23.2770 55.3045 61 k -1.0909 31.4820 44.3365 -Georgia.ttf 70 / 23.2770 55.3045 62 J 2.7817 29.0144 41.5962 -Georgia.ttf 70 / 23.2770 55.3045 63 U 2.8512 42.2189 41.5962 -Georgia.ttf 70 / 23.2770 55.3045 64 j -0.6946 16.3365 56.6766 -Georgia.ttf 70 / 23.2770 55.3045 65 ( 0.0758 16.5865 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 66 7 12.8562 26.5818 40.5818 -Georgia.ttf 70 / 23.2770 55.3045 67 § 1.4103 22.5588 48.8094 -Georgia.ttf 70 / 23.2770 55.3045 68 $ -0.7153 27.3045 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 69 € 1.7574 36.6315 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 70 / -0.2107 23.2770 55.3045 -Georgia.ttf 70 / 23.2770 55.3045 71 C 1.3003 34.2950 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 72 * 1.4041 22.6315 19.9723 -Georgia.ttf 70 / 23.2770 55.3045 73 ” -0.1593 18.8041 15.1682 -Georgia.ttf 70 / 23.2770 55.3045 74 ? 1.6500 22.2277 42.0000 -Georgia.ttf 70 / 23.2770 55.3045 75 { 0.2952 21.2133 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 76 } -0.2327 21.2133 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 77 , 36.0221 9.5498 17.3047 -Georgia.ttf 70 / 23.2770 55.3045 78 I 2.9172 18.1351 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 79 ° 1.4900 18.4730 18.4730 -Georgia.ttf 70 / 23.2770 55.3045 80 K 2.4293 39.2597 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 81 H 2.5115 41.8878 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 82 q 12.9871 30.8903 43.1682 -Georgia.ttf 70 / 23.2770 55.3045 83 & 1.4121 39.2597 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 84 ’ 0.2639 8.3588 15.1682 -Georgia.ttf 70 / 23.2770 55.3045 85 [ -0.0178 15.1682 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 86 - 25.4027 17.0320 4.4730 -Georgia.ttf 70 / 23.2770 55.3045 87 Y 2.8256 38.9680 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 88 Q 1.7312 38.4953 52.5642 -Georgia.ttf 70 / 23.2770 55.3045 89 " -0.1528 17.7547 16.3365 -Georgia.ttf 70 / 23.2770 55.3045 90 ! 1.6880 7.9550 42.7644 -Georgia.ttf 70 / 23.2770 55.3045 91 x 15.2137 29.1682 28.0000 -Georgia.ttf 70 / 23.2770 55.3045 92 ) -0.1774 16.5865 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 93 = 20.0268 29.1682 14.4500 -Georgia.ttf 70 / 23.2770 55.3045 94 + 12.4144 29.4182 29.4182 -Georgia.ttf 70 / 23.2770 55.3045 95 X 2.4924 41.5962 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 96 » 16.3592 23.9998 23.2770 -Georgia.ttf 70 / 23.2770 55.3045 97 ' 0.2578 6.7867 16.3365 -Georgia.ttf 70 / 23.2770 55.3045 98 ¢ 6.9206 25.8241 44.7403 -Georgia.ttf 70 / 23.2770 55.3045 99 Z 2.7820 33.6912 40.4279 -Georgia.ttf 70 / 23.2770 55.3045 100 > 11.9149 26.4279 30.3365 -Georgia.ttf 70 / 23.2770 55.3045 101 ® 1.6626 50.3815 50.3815 -Georgia.ttf 70 / 23.2770 55.3045 102 © 1.3643 50.3815 50.3815 -Georgia.ttf 70 / 23.2770 55.3045 103 ] 0.1186 15.1682 52.4453 -Georgia.ttf 70 / 23.2770 55.3045 104 é -0.3120 24.6953 44.8092 -Georgia.ttf 70 / 23.2770 55.3045 105 z 15.0941 23.0270 28.0000 -Georgia.ttf 70 / 23.2770 55.3045 106 _ 48.1353 37.5498 2.7403 -Georgia.ttf 70 / 23.2770 55.3045 107 ¥ 2.9030 37.0770 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 1 t 4.7906 18.7851 38.0914 -Georgia.ttf 71 C 34.2950 42.7644 2 h -2.6592 31.5237 44.3365 -Georgia.ttf 71 C 34.2950 42.7644 3 a 12.6440 25.6635 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 4 n 12.2467 31.5237 29.1682 -Georgia.ttf 71 C 34.2950 42.7644 5 P 0.9589 31.6236 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 6 o 12.6819 27.2318 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 7 e 12.7553 24.6953 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 8 : 13.3645 7.9550 28.4038 -Georgia.ttf 71 C 34.2950 42.7644 9 r 12.5553 21.9550 29.1682 -Georgia.ttf 71 C 34.2950 42.7644 10 l -2.6417 14.8955 44.3365 -Georgia.ttf 71 C 34.2950 42.7644 11 i -2.0643 14.3538 43.8448 -Georgia.ttf 71 C 34.2950 42.7644 12 1 10.1933 19.8912 31.5047 -Georgia.ttf 71 C 34.2950 42.7644 13 | -1.5080 3.7547 55.3045 -Georgia.ttf 71 C 34.2950 42.7644 14 N 1.2816 42.0727 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 15 f -2.7403 22.1088 44.3365 -Georgia.ttf 71 C 34.2950 42.7644 16 g 12.1892 27.2356 42.0000 -Georgia.ttf 71 C 34.2950 42.7644 17 d -2.8274 30.9403 45.5047 -Georgia.ttf 71 C 34.2950 42.7644 18 W 1.1525 58.3365 40.6779 -Georgia.ttf 71 C 34.2950 42.7644 19 s 12.6679 20.9867 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 20 c 12.1256 24.1536 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 21 u 12.2809 31.5237 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 22 3 9.7646 27.3045 41.7500 -Georgia.ttf 71 C 34.2950 42.7644 23 ~ 20.1943 30.0403 10.4453 -Georgia.ttf 71 C 34.2950 42.7644 24 # 6.7160 29.1872 35.0594 -Georgia.ttf 71 C 34.2950 42.7644 25 O -0.1511 38.4953 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 26 ` -2.2052 11.6635 12.1362 -Georgia.ttf 71 C 34.2950 42.7644 27 @ 2.8019 44.6903 47.8912 -Georgia.ttf 71 C 34.2950 42.7644 28 F 1.2549 31.6736 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 29 S 0.0917 28.0000 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 30 p 12.6781 30.2638 42.0000 -Georgia.ttf 71 C 34.2950 42.7644 31 “ -1.5963 18.8041 15.1682 -Georgia.ttf 71 C 34.2950 42.7644 32 % -0.0097 41.5772 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 33 £ -0.0138 30.0448 41.5962 -Georgia.ttf 71 C 34.2950 42.7644 34 . 34.2954 7.9550 7.9550 -Georgia.ttf 71 C 34.2950 42.7644 35 2 10.0460 26.4090 31.5047 -Georgia.ttf 71 C 34.2950 42.7644 36 5 11.2513 26.8318 40.5818 -Georgia.ttf 71 C 34.2950 42.7644 37 m 12.2985 48.0867 29.1682 -Georgia.ttf 71 C 34.2950 42.7644 38 V 1.3642 41.3045 40.6779 -Georgia.ttf 71 C 34.2950 42.7644 39 6 -0.0333 27.7083 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 40 w 13.5364 44.3365 28.0000 -Georgia.ttf 71 C 34.2950 42.7644 41 T 1.0417 36.3815 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 42 M 1.5390 49.8549 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 43 G 0.1827 39.4135 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 44 b -3.0236 31.0781 46.4730 -Georgia.ttf 71 C 34.2950 42.7644 45 9 10.0734 27.7083 41.9500 -Georgia.ttf 71 C 34.2950 42.7644 46 ; 13.4305 9.5498 38.2453 -Georgia.ttf 71 C 34.2950 42.7644 47 D 1.2781 38.0914 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 48 L 1.1558 32.4730 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 49 y 13.6833 30.7403 40.8318 -Georgia.ttf 71 C 34.2950 42.7644 50 ‘ -1.5171 8.3588 15.1682 -Georgia.ttf 71 C 34.2950 42.7644 51 \ -1.9026 23.2770 55.3045 -Georgia.ttf 71 C 34.2950 42.7644 52 R 1.2260 39.2597 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 53 < 10.3823 26.4279 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 54 4 10.0525 29.8448 41.7500 -Georgia.ttf 71 C 34.2950 42.7644 55 8 -0.2897 28.7227 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 56 0 10.1825 29.8910 32.6730 -Georgia.ttf 71 C 34.2950 42.7644 57 A 1.1217 41.5962 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 58 E 0.7397 34.7056 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 59 B 1.1107 32.7646 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 60 v 13.7235 30.7403 28.0000 -Georgia.ttf 71 C 34.2950 42.7644 61 k -2.5193 31.4820 44.3365 -Georgia.ttf 71 C 34.2950 42.7644 62 J 1.2886 29.0144 41.5962 -Georgia.ttf 71 C 34.2950 42.7644 63 U 1.3730 42.2189 41.5962 -Georgia.ttf 71 C 34.2950 42.7644 64 j -2.1505 16.3365 56.6766 -Georgia.ttf 71 C 34.2950 42.7644 65 ( -1.8076 16.5865 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 66 7 11.3065 26.5818 40.5818 -Georgia.ttf 71 C 34.2950 42.7644 67 § 0.1900 22.5588 48.8094 -Georgia.ttf 71 C 34.2950 42.7644 68 $ -2.5891 27.3045 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 69 € -0.3244 36.6315 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 70 / -1.3758 23.2770 55.3045 -Georgia.ttf 71 C 34.2950 42.7644 71 C 0.1695 34.2950 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 72 * 0.0917 22.6315 19.9723 -Georgia.ttf 71 C 34.2950 42.7644 73 ” -1.1592 18.8041 15.1682 -Georgia.ttf 71 C 34.2950 42.7644 74 ? -0.0830 22.2277 42.0000 -Georgia.ttf 71 C 34.2950 42.7644 75 { -1.4675 21.2133 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 76 } -1.5780 21.2133 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 77 , 34.4657 9.5498 17.3047 -Georgia.ttf 71 C 34.2950 42.7644 78 I 1.2323 18.1351 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 79 ° -0.0833 18.4730 18.4730 -Georgia.ttf 71 C 34.2950 42.7644 80 K 0.7627 39.2597 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 81 H 1.0924 41.8878 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 82 q 11.3009 30.8903 43.1682 -Georgia.ttf 71 C 34.2950 42.7644 83 & -0.0468 39.2597 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 84 ’ -1.5916 8.3588 15.1682 -Georgia.ttf 71 C 34.2950 42.7644 85 [ -1.6042 15.1682 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 86 - 23.8844 17.0320 4.4730 -Georgia.ttf 71 C 34.2950 42.7644 87 Y 1.2841 38.9680 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 88 Q -0.1460 38.4953 52.5642 -Georgia.ttf 71 C 34.2950 42.7644 89 " -1.5836 17.7547 16.3365 -Georgia.ttf 71 C 34.2950 42.7644 90 ! 0.2063 7.9550 42.7644 -Georgia.ttf 71 C 34.2950 42.7644 91 x 13.5534 29.1682 28.0000 -Georgia.ttf 71 C 34.2950 42.7644 92 ) -1.3662 16.5865 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 93 = 18.4743 29.1682 14.4500 -Georgia.ttf 71 C 34.2950 42.7644 94 + 10.7946 29.4182 29.4182 -Georgia.ttf 71 C 34.2950 42.7644 95 X 0.9737 41.5962 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 96 » 14.9036 23.9998 23.2770 -Georgia.ttf 71 C 34.2950 42.7644 97 ' -1.4891 6.7867 16.3365 -Georgia.ttf 71 C 34.2950 42.7644 98 ¢ 5.3527 25.8241 44.7403 -Georgia.ttf 71 C 34.2950 42.7644 99 Z 1.1354 33.6912 40.4279 -Georgia.ttf 71 C 34.2950 42.7644 100 > 10.4014 26.4279 30.3365 -Georgia.ttf 71 C 34.2950 42.7644 101 ® -0.3844 50.3815 50.3815 -Georgia.ttf 71 C 34.2950 42.7644 102 © -0.3745 50.3815 50.3815 -Georgia.ttf 71 C 34.2950 42.7644 103 ] -1.9095 15.1682 52.4453 -Georgia.ttf 71 C 34.2950 42.7644 104 é -2.0546 24.6953 44.8092 -Georgia.ttf 71 C 34.2950 42.7644 105 z 13.1977 23.0270 28.0000 -Georgia.ttf 71 C 34.2950 42.7644 106 _ 46.8972 37.5498 2.7403 -Georgia.ttf 71 C 34.2950 42.7644 107 ¥ 0.9895 37.0770 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 1 t 4.5872 18.7851 38.0914 -Georgia.ttf 72 * 22.6315 19.9723 2 h -2.7396 31.5237 44.3365 -Georgia.ttf 72 * 22.6315 19.9723 3 a 12.3096 25.6635 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 4 n 12.4202 31.5237 29.1682 -Georgia.ttf 72 * 22.6315 19.9723 5 P 1.2220 31.6236 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 6 o 12.1194 27.2318 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 7 e 12.6975 24.6953 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 8 : 13.8441 7.9550 28.4038 -Georgia.ttf 72 * 22.6315 19.9723 9 r 12.2337 21.9550 29.1682 -Georgia.ttf 72 * 22.6315 19.9723 10 l -2.8001 14.8955 44.3365 -Georgia.ttf 72 * 22.6315 19.9723 11 i -2.2108 14.3538 43.8448 -Georgia.ttf 72 * 22.6315 19.9723 12 1 10.1471 19.8912 31.5047 -Georgia.ttf 72 * 22.6315 19.9723 13 | -1.4552 3.7547 55.3045 -Georgia.ttf 72 * 22.6315 19.9723 14 N 1.0474 42.0727 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 15 f -2.8215 22.1088 44.3365 -Georgia.ttf 72 * 22.6315 19.9723 16 g 12.5136 27.2356 42.0000 -Georgia.ttf 72 * 22.6315 19.9723 17 d -2.7358 30.9403 45.5047 -Georgia.ttf 72 * 22.6315 19.9723 18 W 1.0825 58.3365 40.6779 -Georgia.ttf 72 * 22.6315 19.9723 19 s 12.4024 20.9867 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 20 c 12.0997 24.1536 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 21 u 12.3939 31.5237 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 22 3 10.2323 27.3045 41.7500 -Georgia.ttf 72 * 22.6315 19.9723 23 ~ 20.4630 30.0403 10.4453 -Georgia.ttf 72 * 22.6315 19.9723 24 # 6.5030 29.1872 35.0594 -Georgia.ttf 72 * 22.6315 19.9723 25 O -0.2675 38.4953 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 26 ` -1.9531 11.6635 12.1362 -Georgia.ttf 72 * 22.6315 19.9723 27 @ 2.7583 44.6903 47.8912 -Georgia.ttf 72 * 22.6315 19.9723 28 F 0.9278 31.6736 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 29 S -0.1669 28.0000 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 30 p 12.3551 30.2638 42.0000 -Georgia.ttf 72 * 22.6315 19.9723 31 “ -1.6665 18.8041 15.1682 -Georgia.ttf 72 * 22.6315 19.9723 32 % -0.0421 41.5772 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 33 £ -0.0857 30.0448 41.5962 -Georgia.ttf 72 * 22.6315 19.9723 34 . 33.9418 7.9550 7.9550 -Georgia.ttf 72 * 22.6315 19.9723 35 2 10.2957 26.4090 31.5047 -Georgia.ttf 72 * 22.6315 19.9723 36 5 11.1813 26.8318 40.5818 -Georgia.ttf 72 * 22.6315 19.9723 37 m 12.3741 48.0867 29.1682 -Georgia.ttf 72 * 22.6315 19.9723 38 V 1.2868 41.3045 40.6779 -Georgia.ttf 72 * 22.6315 19.9723 39 6 -0.1631 27.7083 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 40 w 13.6968 44.3365 28.0000 -Georgia.ttf 72 * 22.6315 19.9723 41 T 1.2609 36.3815 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 42 M 1.1792 49.8549 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 43 G -0.1158 39.4135 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 44 b -2.6932 31.0781 46.4730 -Georgia.ttf 72 * 22.6315 19.9723 45 9 9.9162 27.7083 41.9500 -Georgia.ttf 72 * 22.6315 19.9723 46 ; 13.5507 9.5498 38.2453 -Georgia.ttf 72 * 22.6315 19.9723 47 D 0.9268 38.0914 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 48 L 1.3323 32.4730 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 49 y 13.8908 30.7403 40.8318 -Georgia.ttf 72 * 22.6315 19.9723 50 ‘ -1.6638 8.3588 15.1682 -Georgia.ttf 72 * 22.6315 19.9723 51 \ -1.7207 23.2770 55.3045 -Georgia.ttf 72 * 22.6315 19.9723 52 R 0.9454 39.2597 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 53 < 10.3771 26.4279 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 54 4 10.2402 29.8448 41.7500 -Georgia.ttf 72 * 22.6315 19.9723 55 8 0.0696 28.7227 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 56 0 10.0812 29.8910 32.6730 -Georgia.ttf 72 * 22.6315 19.9723 57 A 1.2956 41.5962 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 58 E 1.4867 34.7056 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 59 B 1.2599 32.7646 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 60 v 13.3473 30.7403 28.0000 -Georgia.ttf 72 * 22.6315 19.9723 61 k -2.6787 31.4820 44.3365 -Georgia.ttf 72 * 22.6315 19.9723 62 J 1.0597 29.0144 41.5962 -Georgia.ttf 72 * 22.6315 19.9723 63 U 1.0728 42.2189 41.5962 -Georgia.ttf 72 * 22.6315 19.9723 64 j -2.1717 16.3365 56.6766 -Georgia.ttf 72 * 22.6315 19.9723 65 ( -1.8223 16.5865 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 66 7 11.4339 26.5818 40.5818 -Georgia.ttf 72 * 22.6315 19.9723 67 § 0.1488 22.5588 48.8094 -Georgia.ttf 72 * 22.6315 19.9723 68 $ -2.4616 27.3045 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 69 € 0.0714 36.6315 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 70 / -1.5221 23.2770 55.3045 -Georgia.ttf 72 * 22.6315 19.9723 71 C 0.1052 34.2950 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 72 * 0.0045 22.6315 19.9723 -Georgia.ttf 72 * 22.6315 19.9723 73 ” -1.5955 18.8041 15.1682 -Georgia.ttf 72 * 22.6315 19.9723 74 ? -0.2665 22.2277 42.0000 -Georgia.ttf 72 * 22.6315 19.9723 75 { -1.2491 21.2133 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 76 } -1.5074 21.2133 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 77 , 34.3754 9.5498 17.3047 -Georgia.ttf 72 * 22.6315 19.9723 78 I 1.2232 18.1351 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 79 ° -0.0497 18.4730 18.4730 -Georgia.ttf 72 * 22.6315 19.9723 80 K 1.1497 39.2597 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 81 H 1.4974 41.8878 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 82 q 11.4946 30.8903 43.1682 -Georgia.ttf 72 * 22.6315 19.9723 83 & 0.1871 39.2597 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 84 ’ -1.4955 8.3588 15.1682 -Georgia.ttf 72 * 22.6315 19.9723 85 [ -1.6291 15.1682 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 86 - 23.8266 17.0320 4.4730 -Georgia.ttf 72 * 22.6315 19.9723 87 Y 1.0441 38.9680 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 88 Q 0.1728 38.4953 52.5642 -Georgia.ttf 72 * 22.6315 19.9723 89 " -1.8427 17.7547 16.3365 -Georgia.ttf 72 * 22.6315 19.9723 90 ! 0.2887 7.9550 42.7644 -Georgia.ttf 72 * 22.6315 19.9723 91 x 13.5025 29.1682 28.0000 -Georgia.ttf 72 * 22.6315 19.9723 92 ) -1.4879 16.5865 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 93 = 18.4047 29.1682 14.4500 -Georgia.ttf 72 * 22.6315 19.9723 94 + 10.9995 29.4182 29.4182 -Georgia.ttf 72 * 22.6315 19.9723 95 X 1.3911 41.5962 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 96 » 15.1281 23.9998 23.2770 -Georgia.ttf 72 * 22.6315 19.9723 97 ' -1.7314 6.7867 16.3365 -Georgia.ttf 72 * 22.6315 19.9723 98 ¢ 5.2739 25.8241 44.7403 -Georgia.ttf 72 * 22.6315 19.9723 99 Z 1.1599 33.6912 40.4279 -Georgia.ttf 72 * 22.6315 19.9723 100 > 10.3057 26.4279 30.3365 -Georgia.ttf 72 * 22.6315 19.9723 101 ® -0.6561 50.3815 50.3815 -Georgia.ttf 72 * 22.6315 19.9723 102 © -0.5844 50.3815 50.3815 -Georgia.ttf 72 * 22.6315 19.9723 103 ] -1.5791 15.1682 52.4453 -Georgia.ttf 72 * 22.6315 19.9723 104 é -2.2748 24.6953 44.8092 -Georgia.ttf 72 * 22.6315 19.9723 105 z 13.5604 23.0270 28.0000 -Georgia.ttf 72 * 22.6315 19.9723 106 _ 46.6730 37.5498 2.7403 -Georgia.ttf 72 * 22.6315 19.9723 107 ¥ 0.8101 37.0770 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 1 t 6.4536 18.7851 38.0914 -Georgia.ttf 73 ” 18.8041 15.1682 2 h -1.0891 31.5237 44.3365 -Georgia.ttf 73 ” 18.8041 15.1682 3 a 14.1214 25.6635 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 4 n 14.0055 31.5237 29.1682 -Georgia.ttf 73 ” 18.8041 15.1682 5 P 2.6833 31.6236 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 6 o 13.6087 27.2318 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 7 e 14.1769 24.6953 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 8 : 15.1500 7.9550 28.4038 -Georgia.ttf 73 ” 18.8041 15.1682 9 r 13.9583 21.9550 29.1682 -Georgia.ttf 73 ” 18.8041 15.1682 10 l -1.2411 14.8955 44.3365 -Georgia.ttf 73 ” 18.8041 15.1682 11 i -0.7999 14.3538 43.8448 -Georgia.ttf 73 ” 18.8041 15.1682 12 1 11.7079 19.8912 31.5047 -Georgia.ttf 73 ” 18.8041 15.1682 13 | 0.1733 3.7547 55.3045 -Georgia.ttf 73 ” 18.8041 15.1682 14 N 2.8858 42.0727 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 15 f -1.0766 22.1088 44.3365 -Georgia.ttf 73 ” 18.8041 15.1682 16 g 14.1718 27.2356 42.0000 -Georgia.ttf 73 ” 18.8041 15.1682 17 d -1.1466 30.9403 45.5047 -Georgia.ttf 73 ” 18.8041 15.1682 18 W 2.1834 58.3365 40.6779 -Georgia.ttf 73 ” 18.8041 15.1682 19 s 14.0895 20.9867 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 20 c 13.8036 24.1536 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 21 u 13.9688 31.5237 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 22 3 11.4113 27.3045 41.7500 -Georgia.ttf 73 ” 18.8041 15.1682 23 ~ 22.1071 30.0403 10.4453 -Georgia.ttf 73 ” 18.8041 15.1682 24 # 8.2487 29.1872 35.0594 -Georgia.ttf 73 ” 18.8041 15.1682 25 O 1.8460 38.4953 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 26 ` -0.2999 11.6635 12.1362 -Georgia.ttf 73 ” 18.8041 15.1682 27 @ 4.2831 44.6903 47.8912 -Georgia.ttf 73 ” 18.8041 15.1682 28 F 2.9975 31.6736 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 29 S 1.5540 28.0000 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 30 p 14.0395 30.2638 42.0000 -Georgia.ttf 73 ” 18.8041 15.1682 31 “ -0.1288 18.8041 15.1682 -Georgia.ttf 73 ” 18.8041 15.1682 32 % 1.4705 41.5772 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 33 £ 1.5595 30.0448 41.5962 -Georgia.ttf 73 ” 18.8041 15.1682 34 . 35.4456 7.9550 7.9550 -Georgia.ttf 73 ” 18.8041 15.1682 35 2 11.5663 26.4090 31.5047 -Georgia.ttf 73 ” 18.8041 15.1682 36 5 12.5747 26.8318 40.5818 -Georgia.ttf 73 ” 18.8041 15.1682 37 m 14.0115 48.0867 29.1682 -Georgia.ttf 73 ” 18.8041 15.1682 38 V 3.0972 41.3045 40.6779 -Georgia.ttf 73 ” 18.8041 15.1682 39 6 1.7449 27.7083 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 40 w 15.2029 44.3365 28.0000 -Georgia.ttf 73 ” 18.8041 15.1682 41 T 2.8680 36.3815 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 42 M 2.8320 49.8549 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 43 G 1.3784 39.4135 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 44 b -1.1609 31.0781 46.4730 -Georgia.ttf 73 ” 18.8041 15.1682 45 9 11.7285 27.7083 41.9500 -Georgia.ttf 73 ” 18.8041 15.1682 46 ; 15.1668 9.5498 38.2453 -Georgia.ttf 73 ” 18.8041 15.1682 47 D 3.0405 38.0914 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 48 L 2.7677 32.4730 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 49 y 15.0913 30.7403 40.8318 -Georgia.ttf 73 ” 18.8041 15.1682 50 ‘ -0.0896 8.3588 15.1682 -Georgia.ttf 73 ” 18.8041 15.1682 51 \ -0.0969 23.2770 55.3045 -Georgia.ttf 73 ” 18.8041 15.1682 52 R 2.4966 39.2597 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 53 < 11.8909 26.4279 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 54 4 11.6223 29.8448 41.7500 -Georgia.ttf 73 ” 18.8041 15.1682 55 8 1.5591 28.7227 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 56 0 11.4481 29.8910 32.6730 -Georgia.ttf 73 ” 18.8041 15.1682 57 A 2.6532 41.5962 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 58 E 2.6592 34.7056 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 59 B 2.9015 32.7646 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 60 v 15.3433 30.7403 28.0000 -Georgia.ttf 73 ” 18.8041 15.1682 61 k -1.3484 31.4820 44.3365 -Georgia.ttf 73 ” 18.8041 15.1682 62 J 2.4627 29.0144 41.5962 -Georgia.ttf 73 ” 18.8041 15.1682 63 U 2.6717 42.2189 41.5962 -Georgia.ttf 73 ” 18.8041 15.1682 64 j -0.8054 16.3365 56.6766 -Georgia.ttf 73 ” 18.8041 15.1682 65 ( -0.1677 16.5865 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 66 7 13.0555 26.5818 40.5818 -Georgia.ttf 73 ” 18.8041 15.1682 67 § 1.5808 22.5588 48.8094 -Georgia.ttf 73 ” 18.8041 15.1682 68 $ -0.7782 27.3045 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 69 € 1.7320 36.6315 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 70 / 0.2706 23.2770 55.3045 -Georgia.ttf 73 ” 18.8041 15.1682 71 C 1.5326 34.2950 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 72 * 1.4864 22.6315 19.9723 -Georgia.ttf 73 ” 18.8041 15.1682 73 ” 0.2295 18.8041 15.1682 -Georgia.ttf 73 ” 18.8041 15.1682 74 ? 1.6852 22.2277 42.0000 -Georgia.ttf 73 ” 18.8041 15.1682 75 { -0.1526 21.2133 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 76 } -0.4752 21.2133 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 77 , 36.1889 9.5498 17.3047 -Georgia.ttf 73 ” 18.8041 15.1682 78 I 2.8911 18.1351 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 79 ° 1.6263 18.4730 18.4730 -Georgia.ttf 73 ” 18.8041 15.1682 80 K 2.5615 39.2597 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 81 H 2.8989 41.8878 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 82 q 12.5865 30.8903 43.1682 -Georgia.ttf 73 ” 18.8041 15.1682 83 & 1.6473 39.2597 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 84 ’ -0.0746 8.3588 15.1682 -Georgia.ttf 73 ” 18.8041 15.1682 85 [ 0.0950 15.1682 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 86 - 25.3451 17.0320 4.4730 -Georgia.ttf 73 ” 18.8041 15.1682 87 Y 2.6546 38.9680 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 88 Q 0.9997 38.4953 52.5642 -Georgia.ttf 73 ” 18.8041 15.1682 89 " -0.0927 17.7547 16.3365 -Georgia.ttf 73 ” 18.8041 15.1682 90 ! 1.5221 7.9550 42.7644 -Georgia.ttf 73 ” 18.8041 15.1682 91 x 15.2530 29.1682 28.0000 -Georgia.ttf 73 ” 18.8041 15.1682 92 ) -0.0774 16.5865 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 93 = 19.9996 29.1682 14.4500 -Georgia.ttf 73 ” 18.8041 15.1682 94 + 12.6414 29.4182 29.4182 -Georgia.ttf 73 ” 18.8041 15.1682 95 X 2.7826 41.5962 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 96 » 16.6722 23.9998 23.2770 -Georgia.ttf 73 ” 18.8041 15.1682 97 ' -0.0013 6.7867 16.3365 -Georgia.ttf 73 ” 18.8041 15.1682 98 ¢ 6.8256 25.8241 44.7403 -Georgia.ttf 73 ” 18.8041 15.1682 99 Z 2.5381 33.6912 40.4279 -Georgia.ttf 73 ” 18.8041 15.1682 100 > 11.7018 26.4279 30.3365 -Georgia.ttf 73 ” 18.8041 15.1682 101 ® 1.0690 50.3815 50.3815 -Georgia.ttf 73 ” 18.8041 15.1682 102 © 0.8972 50.3815 50.3815 -Georgia.ttf 73 ” 18.8041 15.1682 103 ] -0.0494 15.1682 52.4453 -Georgia.ttf 73 ” 18.8041 15.1682 104 é -0.4195 24.6953 44.8092 -Georgia.ttf 73 ” 18.8041 15.1682 105 z 15.3170 23.0270 28.0000 -Georgia.ttf 73 ” 18.8041 15.1682 106 _ 48.2604 37.5498 2.7403 -Georgia.ttf 73 ” 18.8041 15.1682 107 ¥ 2.8572 37.0770 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 1 t 4.6730 18.7851 38.0914 -Georgia.ttf 74 ? 22.2277 42.0000 2 h -2.6903 31.5237 44.3365 -Georgia.ttf 74 ? 22.2277 42.0000 3 a 12.3835 25.6635 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 4 n 12.3370 31.5237 29.1682 -Georgia.ttf 74 ? 22.2277 42.0000 5 P 1.1304 31.6236 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 6 o 12.4983 27.2318 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 7 e 12.3560 24.6953 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 8 : 13.0374 7.9550 28.4038 -Georgia.ttf 74 ? 22.2277 42.0000 9 r 12.5331 21.9550 29.1682 -Georgia.ttf 74 ? 22.2277 42.0000 10 l -2.4044 14.8955 44.3365 -Georgia.ttf 74 ? 22.2277 42.0000 11 i -2.2389 14.3538 43.8448 -Georgia.ttf 74 ? 22.2277 42.0000 12 1 10.0228 19.8912 31.5047 -Georgia.ttf 74 ? 22.2277 42.0000 13 | -1.7477 3.7547 55.3045 -Georgia.ttf 74 ? 22.2277 42.0000 14 N 1.2589 42.0727 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 15 f -2.4549 22.1088 44.3365 -Georgia.ttf 74 ? 22.2277 42.0000 16 g 12.4622 27.2356 42.0000 -Georgia.ttf 74 ? 22.2277 42.0000 17 d -2.9922 30.9403 45.5047 -Georgia.ttf 74 ? 22.2277 42.0000 18 W 1.1334 58.3365 40.6779 -Georgia.ttf 74 ? 22.2277 42.0000 19 s 12.1795 20.9867 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 20 c 12.5015 24.1536 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 21 u 12.3565 31.5237 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 22 3 10.2129 27.3045 41.7500 -Georgia.ttf 74 ? 22.2277 42.0000 23 ~ 20.5914 30.0403 10.4453 -Georgia.ttf 74 ? 22.2277 42.0000 24 # 6.6916 29.1872 35.0594 -Georgia.ttf 74 ? 22.2277 42.0000 25 O 0.0178 38.4953 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 26 ` -2.2149 11.6635 12.1362 -Georgia.ttf 74 ? 22.2277 42.0000 27 @ 2.8811 44.6903 47.8912 -Georgia.ttf 74 ? 22.2277 42.0000 28 F 1.4565 31.6736 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 29 S 0.0795 28.0000 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 30 p 12.4572 30.2638 42.0000 -Georgia.ttf 74 ? 22.2277 42.0000 31 “ -1.5298 18.8041 15.1682 -Georgia.ttf 74 ? 22.2277 42.0000 32 % 0.0437 41.5772 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 33 £ -0.0079 30.0448 41.5962 -Georgia.ttf 74 ? 22.2277 42.0000 34 . 33.9291 7.9550 7.9550 -Georgia.ttf 74 ? 22.2277 42.0000 35 2 10.1721 26.4090 31.5047 -Georgia.ttf 74 ? 22.2277 42.0000 36 5 11.1365 26.8318 40.5818 -Georgia.ttf 74 ? 22.2277 42.0000 37 m 12.1704 48.0867 29.1682 -Georgia.ttf 74 ? 22.2277 42.0000 38 V 1.0913 41.3045 40.6779 -Georgia.ttf 74 ? 22.2277 42.0000 39 6 -0.0097 27.7083 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 40 w 13.5692 44.3365 28.0000 -Georgia.ttf 74 ? 22.2277 42.0000 41 T 0.9416 36.3815 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 42 M 0.9397 49.8549 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 43 G -0.0959 39.4135 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 44 b -2.8260 31.0781 46.4730 -Georgia.ttf 74 ? 22.2277 42.0000 45 9 10.3003 27.7083 41.9500 -Georgia.ttf 74 ? 22.2277 42.0000 46 ; 13.6773 9.5498 38.2453 -Georgia.ttf 74 ? 22.2277 42.0000 47 D 1.1051 38.0914 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 48 L 1.2452 32.4730 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 49 y 13.5590 30.7403 40.8318 -Georgia.ttf 74 ? 22.2277 42.0000 50 ‘ -1.4827 8.3588 15.1682 -Georgia.ttf 74 ? 22.2277 42.0000 51 \ -1.6490 23.2770 55.3045 -Georgia.ttf 74 ? 22.2277 42.0000 52 R 0.9744 39.2597 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 53 < 10.2283 26.4279 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 54 4 9.8434 29.8448 41.7500 -Georgia.ttf 74 ? 22.2277 42.0000 55 8 -0.1424 28.7227 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 56 0 10.1869 29.8910 32.6730 -Georgia.ttf 74 ? 22.2277 42.0000 57 A 0.9420 41.5962 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 58 E 1.2661 34.7056 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 59 B 1.2397 32.7646 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 60 v 13.3961 30.7403 28.0000 -Georgia.ttf 74 ? 22.2277 42.0000 61 k -2.8358 31.4820 44.3365 -Georgia.ttf 74 ? 22.2277 42.0000 62 J 1.2554 29.0144 41.5962 -Georgia.ttf 74 ? 22.2277 42.0000 63 U 1.2137 42.2189 41.5962 -Georgia.ttf 74 ? 22.2277 42.0000 64 j -2.1421 16.3365 56.6766 -Georgia.ttf 74 ? 22.2277 42.0000 65 ( -1.4850 16.5865 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 66 7 11.4632 26.5818 40.5818 -Georgia.ttf 74 ? 22.2277 42.0000 67 § 0.1061 22.5588 48.8094 -Georgia.ttf 74 ? 22.2277 42.0000 68 $ -2.6691 27.3045 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 69 € 0.0403 36.6315 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 70 / -1.5215 23.2770 55.3045 -Georgia.ttf 74 ? 22.2277 42.0000 71 C 0.0071 34.2950 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 72 * -0.2169 22.6315 19.9723 -Georgia.ttf 74 ? 22.2277 42.0000 73 ” -1.6731 18.8041 15.1682 -Georgia.ttf 74 ? 22.2277 42.0000 74 ? -0.1158 22.2277 42.0000 -Georgia.ttf 74 ? 22.2277 42.0000 75 { -1.3474 21.2133 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 76 } -1.4460 21.2133 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 77 , 34.6331 9.5498 17.3047 -Georgia.ttf 74 ? 22.2277 42.0000 78 I 1.1210 18.1351 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 79 ° -0.1511 18.4730 18.4730 -Georgia.ttf 74 ? 22.2277 42.0000 80 K 1.2374 39.2597 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 81 H 1.2627 41.8878 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 82 q 11.3728 30.8903 43.1682 -Georgia.ttf 74 ? 22.2277 42.0000 83 & 0.0444 39.2597 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 84 ’ -1.3761 8.3588 15.1682 -Georgia.ttf 74 ? 22.2277 42.0000 85 [ -1.2705 15.1682 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 86 - 23.9124 17.0320 4.4730 -Georgia.ttf 74 ? 22.2277 42.0000 87 Y 1.4437 38.9680 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 88 Q 0.3641 38.4953 52.5642 -Georgia.ttf 74 ? 22.2277 42.0000 89 " -1.5973 17.7547 16.3365 -Georgia.ttf 74 ? 22.2277 42.0000 90 ! -0.2813 7.9550 42.7644 -Georgia.ttf 74 ? 22.2277 42.0000 91 x 13.7575 29.1682 28.0000 -Georgia.ttf 74 ? 22.2277 42.0000 92 ) -1.6913 16.5865 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 93 = 18.7116 29.1682 14.4500 -Georgia.ttf 74 ? 22.2277 42.0000 94 + 11.2426 29.4182 29.4182 -Georgia.ttf 74 ? 22.2277 42.0000 95 X 1.1923 41.5962 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 96 » 15.1622 23.9998 23.2770 -Georgia.ttf 74 ? 22.2277 42.0000 97 ' -1.5105 6.7867 16.3365 -Georgia.ttf 74 ? 22.2277 42.0000 98 ¢ 5.1614 25.8241 44.7403 -Georgia.ttf 74 ? 22.2277 42.0000 99 Z 0.9982 33.6912 40.4279 -Georgia.ttf 74 ? 22.2277 42.0000 100 > 10.0379 26.4279 30.3365 -Georgia.ttf 74 ? 22.2277 42.0000 101 ® -0.4896 50.3815 50.3815 -Georgia.ttf 74 ? 22.2277 42.0000 102 © -0.4312 50.3815 50.3815 -Georgia.ttf 74 ? 22.2277 42.0000 103 ] -1.8316 15.1682 52.4453 -Georgia.ttf 74 ? 22.2277 42.0000 104 é -1.8279 24.6953 44.8092 -Georgia.ttf 74 ? 22.2277 42.0000 105 z 13.5209 23.0270 28.0000 -Georgia.ttf 74 ? 22.2277 42.0000 106 _ 46.7946 37.5498 2.7403 -Georgia.ttf 74 ? 22.2277 42.0000 107 ¥ 1.0314 37.0770 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 1 t 6.2552 18.7851 38.0914 -Georgia.ttf 75 { 21.2133 52.4453 2 h -1.2970 31.5237 44.3365 -Georgia.ttf 75 { 21.2133 52.4453 3 a 13.9513 25.6635 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 4 n 13.9968 31.5237 29.1682 -Georgia.ttf 75 { 21.2133 52.4453 5 P 2.8502 31.6236 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 6 o 13.7215 27.2318 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 7 e 14.0737 24.6953 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 8 : 15.1409 7.9550 28.4038 -Georgia.ttf 75 { 21.2133 52.4453 9 r 13.9226 21.9550 29.1682 -Georgia.ttf 75 { 21.2133 52.4453 10 l -1.1742 14.8955 44.3365 -Georgia.ttf 75 { 21.2133 52.4453 11 i -0.3652 14.3538 43.8448 -Georgia.ttf 75 { 21.2133 52.4453 12 1 11.7292 19.8912 31.5047 -Georgia.ttf 75 { 21.2133 52.4453 13 | 0.1850 3.7547 55.3045 -Georgia.ttf 75 { 21.2133 52.4453 14 N 2.7463 42.0727 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 15 f -1.1585 22.1088 44.3365 -Georgia.ttf 75 { 21.2133 52.4453 16 g 14.0649 27.2356 42.0000 -Georgia.ttf 75 { 21.2133 52.4453 17 d -1.3522 30.9403 45.5047 -Georgia.ttf 75 { 21.2133 52.4453 18 W 2.7394 58.3365 40.6779 -Georgia.ttf 75 { 21.2133 52.4453 19 s 13.9188 20.9867 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 20 c 14.0412 24.1536 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 21 u 14.1658 31.5237 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 22 3 11.7492 27.3045 41.7500 -Georgia.ttf 75 { 21.2133 52.4453 23 ~ 21.8873 30.0403 10.4453 -Georgia.ttf 75 { 21.2133 52.4453 24 # 7.9734 29.1872 35.0594 -Georgia.ttf 75 { 21.2133 52.4453 25 O 1.4873 38.4953 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 26 ` -0.5404 11.6635 12.1362 -Georgia.ttf 75 { 21.2133 52.4453 27 @ 4.1029 44.6903 47.8912 -Georgia.ttf 75 { 21.2133 52.4453 28 F 2.6290 31.6736 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 29 S 1.7550 28.0000 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 30 p 13.8156 30.2638 42.0000 -Georgia.ttf 75 { 21.2133 52.4453 31 “ 0.0204 18.8041 15.1682 -Georgia.ttf 75 { 21.2133 52.4453 32 % 1.6500 41.5772 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 33 £ 1.3447 30.0448 41.5962 -Georgia.ttf 75 { 21.2133 52.4453 34 . 35.7597 7.9550 7.9550 -Georgia.ttf 75 { 21.2133 52.4453 35 2 11.5713 26.4090 31.5047 -Georgia.ttf 75 { 21.2133 52.4453 36 5 12.8503 26.8318 40.5818 -Georgia.ttf 75 { 21.2133 52.4453 37 m 14.0000 48.0867 29.1682 -Georgia.ttf 75 { 21.2133 52.4453 38 V 2.7232 41.3045 40.6779 -Georgia.ttf 75 { 21.2133 52.4453 39 6 1.3621 27.7083 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 40 w 15.1825 44.3365 28.0000 -Georgia.ttf 75 { 21.2133 52.4453 41 T 2.7871 36.3815 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 42 M 2.7441 49.8549 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 43 G 1.2670 39.4135 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 44 b -1.4327 31.0781 46.4730 -Georgia.ttf 75 { 21.2133 52.4453 45 9 11.5417 27.7083 41.9500 -Georgia.ttf 75 { 21.2133 52.4453 46 ; 15.4482 9.5498 38.2453 -Georgia.ttf 75 { 21.2133 52.4453 47 D 2.7234 38.0914 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 48 L 2.7680 32.4730 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 49 y 15.2229 30.7403 40.8318 -Georgia.ttf 75 { 21.2133 52.4453 50 ‘ -0.0482 8.3588 15.1682 -Georgia.ttf 75 { 21.2133 52.4453 51 \ 0.1000 23.2770 55.3045 -Georgia.ttf 75 { 21.2133 52.4453 52 R 2.5620 39.2597 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 53 < 11.6879 26.4279 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 54 4 11.7447 29.8448 41.7500 -Georgia.ttf 75 { 21.2133 52.4453 55 8 1.3302 28.7227 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 56 0 11.9540 29.8910 32.6730 -Georgia.ttf 75 { 21.2133 52.4453 57 A 2.6522 41.5962 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 58 E 2.6625 34.7056 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 59 B 2.8970 32.7646 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 60 v 15.3663 30.7403 28.0000 -Georgia.ttf 75 { 21.2133 52.4453 61 k -1.1911 31.4820 44.3365 -Georgia.ttf 75 { 21.2133 52.4453 62 J 2.6165 29.0144 41.5962 -Georgia.ttf 75 { 21.2133 52.4453 63 U 2.7223 42.2189 41.5962 -Georgia.ttf 75 { 21.2133 52.4453 64 j -0.7304 16.3365 56.6766 -Georgia.ttf 75 { 21.2133 52.4453 65 ( -0.1591 16.5865 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 66 7 12.7194 26.5818 40.5818 -Georgia.ttf 75 { 21.2133 52.4453 67 § 1.5804 22.5588 48.8094 -Georgia.ttf 75 { 21.2133 52.4453 68 $ -0.9164 27.3045 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 69 € 1.5660 36.6315 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 70 / 0.1669 23.2770 55.3045 -Georgia.ttf 75 { 21.2133 52.4453 71 C 1.5573 34.2950 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 72 * 1.4885 22.6315 19.9723 -Georgia.ttf 75 { 21.2133 52.4453 73 ” -0.2300 18.8041 15.1682 -Georgia.ttf 75 { 21.2133 52.4453 74 ? 1.4452 22.2277 42.0000 -Georgia.ttf 75 { 21.2133 52.4453 75 { -0.0022 21.2133 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 76 } 0.0647 21.2133 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 77 , 36.0100 9.5498 17.3047 -Georgia.ttf 75 { 21.2133 52.4453 78 I 2.7705 18.1351 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 79 ° 1.4167 18.4730 18.4730 -Georgia.ttf 75 { 21.2133 52.4453 80 K 2.5318 39.2597 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 81 H 2.7463 41.8878 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 82 q 13.0476 30.8903 43.1682 -Georgia.ttf 75 { 21.2133 52.4453 83 & 1.6196 39.2597 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 84 ’ -0.1645 8.3588 15.1682 -Georgia.ttf 75 { 21.2133 52.4453 85 [ -0.3314 15.1682 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 86 - 25.5506 17.0320 4.4730 -Georgia.ttf 75 { 21.2133 52.4453 87 Y 2.5076 38.9680 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 88 Q 1.6834 38.4953 52.5642 -Georgia.ttf 75 { 21.2133 52.4453 89 " 0.2575 17.7547 16.3365 -Georgia.ttf 75 { 21.2133 52.4453 90 ! 1.5780 7.9550 42.7644 -Georgia.ttf 75 { 21.2133 52.4453 91 x 15.3016 29.1682 28.0000 -Georgia.ttf 75 { 21.2133 52.4453 92 ) -0.0476 16.5865 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 93 = 20.0413 29.1682 14.4500 -Georgia.ttf 75 { 21.2133 52.4453 94 + 12.7605 29.4182 29.4182 -Georgia.ttf 75 { 21.2133 52.4453 95 X 2.7245 41.5962 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 96 » 16.4494 23.9998 23.2770 -Georgia.ttf 75 { 21.2133 52.4453 97 ' -0.0307 6.7867 16.3365 -Georgia.ttf 75 { 21.2133 52.4453 98 ¢ 6.9494 25.8241 44.7403 -Georgia.ttf 75 { 21.2133 52.4453 99 Z 2.8368 33.6912 40.4279 -Georgia.ttf 75 { 21.2133 52.4453 100 > 11.8278 26.4279 30.3365 -Georgia.ttf 75 { 21.2133 52.4453 101 ® 1.2516 50.3815 50.3815 -Georgia.ttf 75 { 21.2133 52.4453 102 © 1.0909 50.3815 50.3815 -Georgia.ttf 75 { 21.2133 52.4453 103 ] -0.0450 15.1682 52.4453 -Georgia.ttf 75 { 21.2133 52.4453 104 é -0.4776 24.6953 44.8092 -Georgia.ttf 75 { 21.2133 52.4453 105 z 15.0903 23.0270 28.0000 -Georgia.ttf 75 { 21.2133 52.4453 106 _ 48.2149 37.5498 2.7403 -Georgia.ttf 75 { 21.2133 52.4453 107 ¥ 2.7689 37.0770 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 1 t 6.2470 18.7851 38.0914 -Georgia.ttf 76 } 21.2133 52.4453 2 h -1.0077 31.5237 44.3365 -Georgia.ttf 76 } 21.2133 52.4453 3 a 14.0000 25.6635 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 4 n 14.0500 31.5237 29.1682 -Georgia.ttf 76 } 21.2133 52.4453 5 P 3.1147 31.6236 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 6 o 14.1107 27.2318 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 7 e 13.8702 24.6953 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 8 : 15.1640 7.9550 28.4038 -Georgia.ttf 76 } 21.2133 52.4453 9 r 13.9473 21.9550 29.1682 -Georgia.ttf 76 } 21.2133 52.4453 10 l -1.6150 14.8955 44.3365 -Georgia.ttf 76 } 21.2133 52.4453 11 i -0.6766 14.3538 43.8448 -Georgia.ttf 76 } 21.2133 52.4453 12 1 11.7062 19.8912 31.5047 -Georgia.ttf 76 } 21.2133 52.4453 13 | 0.2995 3.7547 55.3045 -Georgia.ttf 76 } 21.2133 52.4453 14 N 2.7353 42.0727 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 15 f -1.2016 22.1088 44.3365 -Georgia.ttf 76 } 21.2133 52.4453 16 g 14.0070 27.2356 42.0000 -Georgia.ttf 76 } 21.2133 52.4453 17 d -1.2411 30.9403 45.5047 -Georgia.ttf 76 } 21.2133 52.4453 18 W 2.8548 58.3365 40.6779 -Georgia.ttf 76 } 21.2133 52.4453 19 s 14.1316 20.9867 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 20 c 13.9532 24.1536 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 21 u 13.9526 31.5237 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 22 3 11.6520 27.3045 41.7500 -Georgia.ttf 76 } 21.2133 52.4453 23 ~ 22.1155 30.0403 10.4453 -Georgia.ttf 76 } 21.2133 52.4453 24 # 7.9434 29.1872 35.0594 -Georgia.ttf 76 } 21.2133 52.4453 25 O 1.7929 38.4953 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 26 ` -0.6354 11.6635 12.1362 -Georgia.ttf 76 } 21.2133 52.4453 27 @ 4.1586 44.6903 47.8912 -Georgia.ttf 76 } 21.2133 52.4453 28 F 2.6277 31.6736 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 29 S 1.7126 28.0000 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 30 p 13.8068 30.2638 42.0000 -Georgia.ttf 76 } 21.2133 52.4453 31 “ 0.0955 18.8041 15.1682 -Georgia.ttf 76 } 21.2133 52.4453 32 % 1.4378 41.5772 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 33 £ 1.5304 30.0448 41.5962 -Georgia.ttf 76 } 21.2133 52.4453 34 . 35.6101 7.9550 7.9550 -Georgia.ttf 76 } 21.2133 52.4453 35 2 11.8259 26.4090 31.5047 -Georgia.ttf 76 } 21.2133 52.4453 36 5 12.8280 26.8318 40.5818 -Georgia.ttf 76 } 21.2133 52.4453 37 m 13.9112 48.0867 29.1682 -Georgia.ttf 76 } 21.2133 52.4453 38 V 2.7712 41.3045 40.6779 -Georgia.ttf 76 } 21.2133 52.4453 39 6 1.7978 27.7083 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 40 w 15.0951 44.3365 28.0000 -Georgia.ttf 76 } 21.2133 52.4453 41 T 2.7189 36.3815 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 42 M 2.4947 49.8549 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 43 G 1.4461 39.4135 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 44 b -1.2035 31.0781 46.4730 -Georgia.ttf 76 } 21.2133 52.4453 45 9 11.2756 27.7083 41.9500 -Georgia.ttf 76 } 21.2133 52.4453 46 ; 15.2112 9.5498 38.2453 -Georgia.ttf 76 } 21.2133 52.4453 47 D 2.8256 38.0914 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 48 L 2.7421 32.4730 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 49 y 15.3306 30.7403 40.8318 -Georgia.ttf 76 } 21.2133 52.4453 50 ‘ 0.2952 8.3588 15.1682 -Georgia.ttf 76 } 21.2133 52.4453 51 \ -0.1085 23.2770 55.3045 -Georgia.ttf 76 } 21.2133 52.4453 52 R 2.6992 39.2597 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 53 < 11.6992 26.4279 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 54 4 11.7321 29.8448 41.7500 -Georgia.ttf 76 } 21.2133 52.4453 55 8 1.5638 28.7227 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 56 0 11.9504 29.8910 32.6730 -Georgia.ttf 76 } 21.2133 52.4453 57 A 2.5699 41.5962 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 58 E 2.7565 34.7056 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 59 B 2.5720 32.7646 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 60 v 15.0825 30.7403 28.0000 -Georgia.ttf 76 } 21.2133 52.4453 61 k -0.9898 31.4820 44.3365 -Georgia.ttf 76 } 21.2133 52.4453 62 J 2.6987 29.0144 41.5962 -Georgia.ttf 76 } 21.2133 52.4453 63 U 2.6107 42.2189 41.5962 -Georgia.ttf 76 } 21.2133 52.4453 64 j -0.8574 16.3365 56.6766 -Georgia.ttf 76 } 21.2133 52.4453 65 ( 0.0681 16.5865 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 66 7 12.7760 26.5818 40.5818 -Georgia.ttf 76 } 21.2133 52.4453 67 § 1.6768 22.5588 48.8094 -Georgia.ttf 76 } 21.2133 52.4453 68 $ -1.0768 27.3045 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 69 € 1.4924 36.6315 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 70 / 0.2562 23.2770 55.3045 -Georgia.ttf 76 } 21.2133 52.4453 71 C 1.6116 34.2950 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 72 * 1.6806 22.6315 19.9723 -Georgia.ttf 76 } 21.2133 52.4453 73 ” 0.1312 18.8041 15.1682 -Georgia.ttf 76 } 21.2133 52.4453 74 ? 1.7519 22.2277 42.0000 -Georgia.ttf 76 } 21.2133 52.4453 75 { 0.1774 21.2133 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 76 } -0.0010 21.2133 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 77 , 36.1863 9.5498 17.3047 -Georgia.ttf 76 } 21.2133 52.4453 78 I 2.7650 18.1351 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 79 ° 1.3584 18.4730 18.4730 -Georgia.ttf 76 } 21.2133 52.4453 80 K 2.6574 39.2597 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 81 H 2.8870 41.8878 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 82 q 12.8976 30.8903 43.1682 -Georgia.ttf 76 } 21.2133 52.4453 83 & 1.7471 39.2597 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 84 ’ 0.2540 8.3588 15.1682 -Georgia.ttf 76 } 21.2133 52.4453 85 [ -0.0756 15.1682 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 86 - 25.5808 17.0320 4.4730 -Georgia.ttf 76 } 21.2133 52.4453 87 Y 2.6801 38.9680 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 88 Q 1.4957 38.4953 52.5642 -Georgia.ttf 76 } 21.2133 52.4453 89 " 0.0766 17.7547 16.3365 -Georgia.ttf 76 } 21.2133 52.4453 90 ! 1.3664 7.9550 42.7644 -Georgia.ttf 76 } 21.2133 52.4453 91 x 15.2757 29.1682 28.0000 -Georgia.ttf 76 } 21.2133 52.4453 92 ) 0.0895 16.5865 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 93 = 20.1165 29.1682 14.4500 -Georgia.ttf 76 } 21.2133 52.4453 94 + 12.3205 29.4182 29.4182 -Georgia.ttf 76 } 21.2133 52.4453 95 X 2.7791 41.5962 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 96 » 16.4381 23.9998 23.2770 -Georgia.ttf 76 } 21.2133 52.4453 97 ' -0.1214 6.7867 16.3365 -Georgia.ttf 76 } 21.2133 52.4453 98 ¢ 6.6853 25.8241 44.7403 -Georgia.ttf 76 } 21.2133 52.4453 99 Z 2.4892 33.6912 40.4279 -Georgia.ttf 76 } 21.2133 52.4453 100 > 12.0633 26.4279 30.3365 -Georgia.ttf 76 } 21.2133 52.4453 101 ® 1.1784 50.3815 50.3815 -Georgia.ttf 76 } 21.2133 52.4453 102 © 1.2845 50.3815 50.3815 -Georgia.ttf 76 } 21.2133 52.4453 103 ] -0.0126 15.1682 52.4453 -Georgia.ttf 76 } 21.2133 52.4453 104 é -0.5039 24.6953 44.8092 -Georgia.ttf 76 } 21.2133 52.4453 105 z 15.3788 23.0270 28.0000 -Georgia.ttf 76 } 21.2133 52.4453 106 _ 47.9253 37.5498 2.7403 -Georgia.ttf 76 } 21.2133 52.4453 107 ¥ 2.5833 37.0770 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 1 t -29.9527 18.7851 38.0914 -Georgia.ttf 77 , 9.5498 17.3047 2 h -37.3540 31.5237 44.3365 -Georgia.ttf 77 , 9.5498 17.3047 3 a -22.1148 25.6635 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 4 n -22.1588 31.5237 29.1682 -Georgia.ttf 77 , 9.5498 17.3047 5 P -33.1649 31.6236 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 6 o -22.0486 27.2318 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 7 e -22.2914 24.6953 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 8 : -21.2686 7.9550 28.4038 -Georgia.ttf 77 , 9.5498 17.3047 9 r -22.1505 21.9550 29.1682 -Georgia.ttf 77 , 9.5498 17.3047 10 l -37.3844 14.8955 44.3365 -Georgia.ttf 77 , 9.5498 17.3047 11 i -36.7195 14.3538 43.8448 -Georgia.ttf 77 , 9.5498 17.3047 12 1 -24.4792 19.8912 31.5047 -Georgia.ttf 77 , 9.5498 17.3047 13 | -36.0459 3.7547 55.3045 -Georgia.ttf 77 , 9.5498 17.3047 14 N -33.4116 42.0727 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 15 f -37.1997 22.1088 44.3365 -Georgia.ttf 77 , 9.5498 17.3047 16 g -22.0319 27.2356 42.0000 -Georgia.ttf 77 , 9.5498 17.3047 17 d -37.2913 30.9403 45.5047 -Georgia.ttf 77 , 9.5498 17.3047 18 W -33.3657 58.3365 40.6779 -Georgia.ttf 77 , 9.5498 17.3047 19 s -22.1185 20.9867 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 20 c -22.1126 24.1536 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 21 u -22.1245 31.5237 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 22 3 -24.3679 27.3045 41.7500 -Georgia.ttf 77 , 9.5498 17.3047 23 ~ -14.2312 30.0403 10.4453 -Georgia.ttf 77 , 9.5498 17.3047 24 # -28.0746 29.1872 35.0594 -Georgia.ttf 77 , 9.5498 17.3047 25 O -34.5724 38.4953 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 26 ` -36.7984 11.6635 12.1362 -Georgia.ttf 77 , 9.5498 17.3047 27 @ -31.8312 44.6903 47.8912 -Georgia.ttf 77 , 9.5498 17.3047 28 F -33.4042 31.6736 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 29 S -34.7827 28.0000 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 30 p -22.0662 30.2638 42.0000 -Georgia.ttf 77 , 9.5498 17.3047 31 “ -35.9090 18.8041 15.1682 -Georgia.ttf 77 , 9.5498 17.3047 32 % -34.4259 41.5772 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 33 £ -34.7443 30.0448 41.5962 -Georgia.ttf 77 , 9.5498 17.3047 34 . -0.2984 7.9550 7.9550 -Georgia.ttf 77 , 9.5498 17.3047 35 2 -24.3162 26.4090 31.5047 -Georgia.ttf 77 , 9.5498 17.3047 36 5 -23.0279 26.8318 40.5818 -Georgia.ttf 77 , 9.5498 17.3047 37 m -22.1148 48.0867 29.1682 -Georgia.ttf 77 , 9.5498 17.3047 38 V -33.4854 41.3045 40.6779 -Georgia.ttf 77 , 9.5498 17.3047 39 6 -34.6136 27.7083 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 40 w -20.9406 44.3365 28.0000 -Georgia.ttf 77 , 9.5498 17.3047 41 T -33.4496 36.3815 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 42 M -33.2961 49.8549 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 43 G -34.6165 39.4135 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 44 b -37.1647 31.0781 46.4730 -Georgia.ttf 77 , 9.5498 17.3047 45 9 -24.6932 27.7083 41.9500 -Georgia.ttf 77 , 9.5498 17.3047 46 ; -20.9489 9.5498 38.2453 -Georgia.ttf 77 , 9.5498 17.3047 47 D -33.2488 38.0914 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 48 L -33.1874 32.4730 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 49 y -20.9471 30.7403 40.8318 -Georgia.ttf 77 , 9.5498 17.3047 50 ‘ -36.1889 8.3588 15.1682 -Georgia.ttf 77 , 9.5498 17.3047 51 \ -36.2085 23.2770 55.3045 -Georgia.ttf 77 , 9.5498 17.3047 52 R -33.3383 39.2597 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 53 < -24.2264 26.4279 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 54 4 -24.4568 29.8448 41.7500 -Georgia.ttf 77 , 9.5498 17.3047 55 8 -34.6279 28.7227 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 56 0 -24.5134 29.8910 32.6730 -Georgia.ttf 77 , 9.5498 17.3047 57 A -33.3328 41.5962 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 58 E -33.3314 34.7056 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 59 B -33.2137 32.7646 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 60 v -20.9406 30.7403 28.0000 -Georgia.ttf 77 , 9.5498 17.3047 61 k -37.3967 31.4820 44.3365 -Georgia.ttf 77 , 9.5498 17.3047 62 J -33.2970 29.0144 41.5962 -Georgia.ttf 77 , 9.5498 17.3047 63 U -33.3185 42.2189 41.5962 -Georgia.ttf 77 , 9.5498 17.3047 64 j -36.7854 16.3365 56.6766 -Georgia.ttf 77 , 9.5498 17.3047 65 ( -36.2801 16.5865 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 66 7 -22.8824 26.5818 40.5818 -Georgia.ttf 77 , 9.5498 17.3047 67 § -34.4593 22.5588 48.8094 -Georgia.ttf 77 , 9.5498 17.3047 68 $ -36.9204 27.3045 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 69 € -34.5450 36.6315 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 70 / -36.0574 23.2770 55.3045 -Georgia.ttf 77 , 9.5498 17.3047 71 C -34.4236 34.2950 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 72 * -34.3555 22.6315 19.9723 -Georgia.ttf 77 , 9.5498 17.3047 73 ” -35.9860 18.8041 15.1682 -Georgia.ttf 77 , 9.5498 17.3047 74 ? -34.4653 22.2277 42.0000 -Georgia.ttf 77 , 9.5498 17.3047 75 { -35.9368 21.2133 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 76 } -36.1188 21.2133 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 77 , 0.1585 9.5498 17.3047 -Georgia.ttf 77 , 9.5498 17.3047 78 I -33.3685 18.1351 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 79 ° -34.6921 18.4730 18.4730 -Georgia.ttf 77 , 9.5498 17.3047 80 K -33.2502 39.2597 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 81 H -33.3421 41.8878 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 82 q -23.1552 30.8903 43.1682 -Georgia.ttf 77 , 9.5498 17.3047 83 & -34.4209 39.2597 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 84 ’ -36.0325 8.3588 15.1682 -Georgia.ttf 77 , 9.5498 17.3047 85 [ -36.0753 15.1682 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 86 - -10.6953 17.0320 4.4730 -Georgia.ttf 77 , 9.5498 17.3047 87 Y -33.4898 38.9680 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 88 Q -34.3509 38.4953 52.5642 -Georgia.ttf 77 , 9.5498 17.3047 89 " -36.2746 17.7547 16.3365 -Georgia.ttf 77 , 9.5498 17.3047 90 ! -34.7467 7.9550 42.7644 -Georgia.ttf 77 , 9.5498 17.3047 91 x -20.8906 29.1682 28.0000 -Georgia.ttf 77 , 9.5498 17.3047 92 ) -35.9574 16.5865 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 93 = -15.7009 29.1682 14.4500 -Georgia.ttf 77 , 9.5498 17.3047 94 + -23.5687 29.4182 29.4182 -Georgia.ttf 77 , 9.5498 17.3047 95 X -33.5238 41.5962 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 96 » -19.2595 23.9998 23.2770 -Georgia.ttf 77 , 9.5498 17.3047 97 ' -35.9711 6.7867 16.3365 -Georgia.ttf 77 , 9.5498 17.3047 98 ¢ -29.2135 25.8241 44.7403 -Georgia.ttf 77 , 9.5498 17.3047 99 Z -33.3373 33.6912 40.4279 -Georgia.ttf 77 , 9.5498 17.3047 100 > -24.2536 26.4279 30.3365 -Georgia.ttf 77 , 9.5498 17.3047 101 ® -34.7162 50.3815 50.3815 -Georgia.ttf 77 , 9.5498 17.3047 102 © -35.1816 50.3815 50.3815 -Georgia.ttf 77 , 9.5498 17.3047 103 ] -36.0973 15.1682 52.4453 -Georgia.ttf 77 , 9.5498 17.3047 104 é -36.6375 24.6953 44.8092 -Georgia.ttf 77 , 9.5498 17.3047 105 z -20.9003 23.0270 28.0000 -Georgia.ttf 77 , 9.5498 17.3047 106 _ 12.0148 37.5498 2.7403 -Georgia.ttf 77 , 9.5498 17.3047 107 ¥ -33.2916 37.0770 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 1 t 3.3229 18.7851 38.0914 -Georgia.ttf 78 I 18.1351 40.4279 2 h -4.2427 31.5237 44.3365 -Georgia.ttf 78 I 18.1351 40.4279 3 a 11.0256 25.6635 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 4 n 11.0979 31.5237 29.1682 -Georgia.ttf 78 I 18.1351 40.4279 5 P -0.0921 31.6236 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 6 o 11.2751 27.2318 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 7 e 11.2194 24.6953 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 8 : 12.2953 7.9550 28.4038 -Georgia.ttf 78 I 18.1351 40.4279 9 r 11.4418 21.9550 29.1682 -Georgia.ttf 78 I 18.1351 40.4279 10 l -3.9432 14.8955 44.3365 -Georgia.ttf 78 I 18.1351 40.4279 11 i -3.3214 14.3538 43.8448 -Georgia.ttf 78 I 18.1351 40.4279 12 1 8.8672 19.8912 31.5047 -Georgia.ttf 78 I 18.1351 40.4279 13 | -2.5675 3.7547 55.3045 -Georgia.ttf 78 I 18.1351 40.4279 14 N -0.1774 42.0727 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 15 f -3.9645 22.1088 44.3365 -Georgia.ttf 78 I 18.1351 40.4279 16 g 11.4248 27.2356 42.0000 -Georgia.ttf 78 I 18.1351 40.4279 17 d -3.6310 30.9403 45.5047 -Georgia.ttf 78 I 18.1351 40.4279 18 W -0.2026 58.3365 40.6779 -Georgia.ttf 78 I 18.1351 40.4279 19 s 11.0460 20.9867 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 20 c 11.3419 24.1536 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 21 u 11.5873 31.5237 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 22 3 8.9270 27.3045 41.7500 -Georgia.ttf 78 I 18.1351 40.4279 23 ~ 19.3555 30.0403 10.4453 -Georgia.ttf 78 I 18.1351 40.4279 24 # 5.5557 29.1872 35.0594 -Georgia.ttf 78 I 18.1351 40.4279 25 O -1.2007 38.4953 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 26 ` -3.3020 11.6635 12.1362 -Georgia.ttf 78 I 18.1351 40.4279 27 @ 1.3682 44.6903 47.8912 -Georgia.ttf 78 I 18.1351 40.4279 28 F 0.0885 31.6736 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 29 S -1.4534 28.0000 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 30 p 11.4182 30.2638 42.0000 -Georgia.ttf 78 I 18.1351 40.4279 31 “ -2.5234 18.8041 15.1682 -Georgia.ttf 78 I 18.1351 40.4279 32 % -1.3268 41.5772 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 33 £ -1.0101 30.0448 41.5962 -Georgia.ttf 78 I 18.1351 40.4279 34 . 33.0339 7.9550 7.9550 -Georgia.ttf 78 I 18.1351 40.4279 35 2 8.9375 26.4090 31.5047 -Georgia.ttf 78 I 18.1351 40.4279 36 5 10.2939 26.8318 40.5818 -Georgia.ttf 78 I 18.1351 40.4279 37 m 11.1680 48.0867 29.1682 -Georgia.ttf 78 I 18.1351 40.4279 38 V -0.2404 41.3045 40.6779 -Georgia.ttf 78 I 18.1351 40.4279 39 6 -1.0761 27.7083 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 40 w 12.4956 44.3365 28.0000 -Georgia.ttf 78 I 18.1351 40.4279 41 T -0.0702 36.3815 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 42 M -0.0937 49.8549 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 43 G -1.1964 39.4135 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 44 b -3.9124 31.0781 46.4730 -Georgia.ttf 78 I 18.1351 40.4279 45 9 8.8218 27.7083 41.9500 -Georgia.ttf 78 I 18.1351 40.4279 46 ; 12.4257 9.5498 38.2453 -Georgia.ttf 78 I 18.1351 40.4279 47 D 0.1496 38.0914 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 48 L 0.0172 32.4730 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 49 y 12.5104 30.7403 40.8318 -Georgia.ttf 78 I 18.1351 40.4279 50 ‘ -3.0465 8.3588 15.1682 -Georgia.ttf 78 I 18.1351 40.4279 51 \ -2.5589 23.2770 55.3045 -Georgia.ttf 78 I 18.1351 40.4279 52 R -0.1371 39.2597 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 53 < 9.2331 26.4279 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 54 4 9.1197 29.8448 41.7500 -Georgia.ttf 78 I 18.1351 40.4279 55 8 -1.0112 28.7227 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 56 0 8.6353 29.8910 32.6730 -Georgia.ttf 78 I 18.1351 40.4279 57 A -0.1672 41.5962 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 58 E -0.1710 34.7056 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 59 B 0.2789 32.7646 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 60 v 12.1095 30.7403 28.0000 -Georgia.ttf 78 I 18.1351 40.4279 61 k -3.8376 31.4820 44.3365 -Georgia.ttf 78 I 18.1351 40.4279 62 J 0.0435 29.0144 41.5962 -Georgia.ttf 78 I 18.1351 40.4279 63 U 0.1581 42.2189 41.5962 -Georgia.ttf 78 I 18.1351 40.4279 64 j -3.3590 16.3365 56.6766 -Georgia.ttf 78 I 18.1351 40.4279 65 ( -2.6564 16.5865 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 66 7 10.2643 26.5818 40.5818 -Georgia.ttf 78 I 18.1351 40.4279 67 § -0.9500 22.5588 48.8094 -Georgia.ttf 78 I 18.1351 40.4279 68 $ -3.5669 27.3045 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 69 € -1.1266 36.6315 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 70 / -3.2134 23.2770 55.3045 -Georgia.ttf 78 I 18.1351 40.4279 71 C -1.1672 34.2950 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 72 * -1.1595 22.6315 19.9723 -Georgia.ttf 78 I 18.1351 40.4279 73 ” -2.6629 18.8041 15.1682 -Georgia.ttf 78 I 18.1351 40.4279 74 ? -1.3005 22.2277 42.0000 -Georgia.ttf 78 I 18.1351 40.4279 75 { -2.6662 21.2133 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 76 } -2.5387 21.2133 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 77 , 33.3324 9.5498 17.3047 -Georgia.ttf 78 I 18.1351 40.4279 78 I -0.2610 18.1351 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 79 ° -1.0871 18.4730 18.4730 -Georgia.ttf 78 I 18.1351 40.4279 80 K -0.0731 39.2597 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 81 H 0.1499 41.8878 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 82 q 9.9539 30.8903 43.1682 -Georgia.ttf 78 I 18.1351 40.4279 83 & -0.7543 39.2597 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 84 ’ -2.8001 8.3588 15.1682 -Georgia.ttf 78 I 18.1351 40.4279 85 [ -2.8504 15.1682 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 86 - 22.9678 17.0320 4.4730 -Georgia.ttf 78 I 18.1351 40.4279 87 Y -0.2397 38.9680 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 88 Q -1.3944 38.4953 52.5642 -Georgia.ttf 78 I 18.1351 40.4279 89 " -2.8623 17.7547 16.3365 -Georgia.ttf 78 I 18.1351 40.4279 90 ! -1.1780 7.9550 42.7644 -Georgia.ttf 78 I 18.1351 40.4279 91 x 12.3829 29.1682 28.0000 -Georgia.ttf 78 I 18.1351 40.4279 92 ) -2.8242 16.5865 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 93 = 17.3848 29.1682 14.4500 -Georgia.ttf 78 I 18.1351 40.4279 94 + 9.8452 29.4182 29.4182 -Georgia.ttf 78 I 18.1351 40.4279 95 X -0.0801 41.5962 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 96 » 13.8647 23.9998 23.2770 -Georgia.ttf 78 I 18.1351 40.4279 97 ' -2.7446 6.7867 16.3365 -Georgia.ttf 78 I 18.1351 40.4279 98 ¢ 3.9802 25.8241 44.7403 -Georgia.ttf 78 I 18.1351 40.4279 99 Z -0.1228 33.6912 40.4279 -Georgia.ttf 78 I 18.1351 40.4279 100 > 9.4178 26.4279 30.3365 -Georgia.ttf 78 I 18.1351 40.4279 101 ® -1.9320 50.3815 50.3815 -Georgia.ttf 78 I 18.1351 40.4279 102 © -1.6225 50.3815 50.3815 -Georgia.ttf 78 I 18.1351 40.4279 103 ] -2.7658 15.1682 52.4453 -Georgia.ttf 78 I 18.1351 40.4279 104 é -3.0704 24.6953 44.8092 -Georgia.ttf 78 I 18.1351 40.4279 105 z 12.4334 23.0270 28.0000 -Georgia.ttf 78 I 18.1351 40.4279 106 _ 45.7356 37.5498 2.7403 -Georgia.ttf 78 I 18.1351 40.4279 107 ¥ 0.2512 37.0770 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 1 t 4.6757 18.7851 38.0914 -Georgia.ttf 79 ° 18.4730 18.4730 2 h -2.6032 31.5237 44.3365 -Georgia.ttf 79 ° 18.4730 18.4730 3 a 12.3825 25.6635 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 4 n 12.5420 31.5237 29.1682 -Georgia.ttf 79 ° 18.4730 18.4730 5 P 1.1594 31.6236 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 6 o 12.3862 27.2318 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 7 e 12.4362 24.6953 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 8 : 13.3733 7.9550 28.4038 -Georgia.ttf 79 ° 18.4730 18.4730 9 r 12.1285 21.9550 29.1682 -Georgia.ttf 79 ° 18.4730 18.4730 10 l -2.8329 14.8955 44.3365 -Georgia.ttf 79 ° 18.4730 18.4730 11 i -2.2010 14.3538 43.8448 -Georgia.ttf 79 ° 18.4730 18.4730 12 1 10.0089 19.8912 31.5047 -Georgia.ttf 79 ° 18.4730 18.4730 13 | -1.4270 3.7547 55.3045 -Georgia.ttf 79 ° 18.4730 18.4730 14 N 1.0877 42.0727 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 15 f -2.4447 22.1088 44.3365 -Georgia.ttf 79 ° 18.4730 18.4730 16 g 12.5423 27.2356 42.0000 -Georgia.ttf 79 ° 18.4730 18.4730 17 d -2.7403 30.9403 45.5047 -Georgia.ttf 79 ° 18.4730 18.4730 18 W 1.3206 58.3365 40.6779 -Georgia.ttf 79 ° 18.4730 18.4730 19 s 12.0581 20.9867 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 20 c 12.3370 24.1536 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 21 u 12.2876 31.5237 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 22 3 10.1968 27.3045 41.7500 -Georgia.ttf 79 ° 18.4730 18.4730 23 ~ 20.3336 30.0403 10.4453 -Georgia.ttf 79 ° 18.4730 18.4730 24 # 6.5465 29.1872 35.0594 -Georgia.ttf 79 ° 18.4730 18.4730 25 O 0.1121 38.4953 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 26 ` -1.7529 11.6635 12.1362 -Georgia.ttf 79 ° 18.4730 18.4730 27 @ 2.6087 44.6903 47.8912 -Georgia.ttf 79 ° 18.4730 18.4730 28 F 0.9884 31.6736 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 29 S 0.1190 28.0000 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 30 p 12.1799 30.2638 42.0000 -Georgia.ttf 79 ° 18.4730 18.4730 31 “ -1.6735 18.8041 15.1682 -Georgia.ttf 79 ° 18.4730 18.4730 32 % 0.2442 41.5772 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 33 £ -0.2585 30.0448 41.5962 -Georgia.ttf 79 ° 18.4730 18.4730 34 . 34.2054 7.9550 7.9550 -Georgia.ttf 79 ° 18.4730 18.4730 35 2 10.2527 26.4090 31.5047 -Georgia.ttf 79 ° 18.4730 18.4730 36 5 11.2310 26.8318 40.5818 -Georgia.ttf 79 ° 18.4730 18.4730 37 m 12.1854 48.0867 29.1682 -Georgia.ttf 79 ° 18.4730 18.4730 38 V 1.2099 41.3045 40.6779 -Georgia.ttf 79 ° 18.4730 18.4730 39 6 0.1488 27.7083 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 40 w 13.6735 44.3365 28.0000 -Georgia.ttf 79 ° 18.4730 18.4730 41 T 1.1567 36.3815 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 42 M 1.3972 49.8549 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 43 G 0.2502 39.4135 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 44 b -2.8320 31.0781 46.4730 -Georgia.ttf 79 ° 18.4730 18.4730 45 9 10.0081 27.7083 41.9500 -Georgia.ttf 79 ° 18.4730 18.4730 46 ; 13.6360 9.5498 38.2453 -Georgia.ttf 79 ° 18.4730 18.4730 47 D 1.2281 38.0914 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 48 L 1.1668 32.4730 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 49 y 13.5567 30.7403 40.8318 -Georgia.ttf 79 ° 18.4730 18.4730 50 ‘ -1.7635 8.3588 15.1682 -Georgia.ttf 79 ° 18.4730 18.4730 51 \ -1.6652 23.2770 55.3045 -Georgia.ttf 79 ° 18.4730 18.4730 52 R 0.9778 39.2597 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 53 < 10.3418 26.4279 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 54 4 9.9992 29.8448 41.7500 -Georgia.ttf 79 ° 18.4730 18.4730 55 8 0.0774 28.7227 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 56 0 9.9307 29.8910 32.6730 -Georgia.ttf 79 ° 18.4730 18.4730 57 A 1.1540 41.5962 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 58 E 1.1776 34.7056 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 59 B 1.2540 32.7646 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 60 v 13.6801 30.7403 28.0000 -Georgia.ttf 79 ° 18.4730 18.4730 61 k -2.7806 31.4820 44.3365 -Georgia.ttf 79 ° 18.4730 18.4730 62 J 1.1280 29.0144 41.5962 -Georgia.ttf 79 ° 18.4730 18.4730 63 U 1.2806 42.2189 41.5962 -Georgia.ttf 79 ° 18.4730 18.4730 64 j -2.3365 16.3365 56.6766 -Georgia.ttf 79 ° 18.4730 18.4730 65 ( -1.6417 16.5865 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 66 7 11.4210 26.5818 40.5818 -Georgia.ttf 79 ° 18.4730 18.4730 67 § -0.1613 22.5588 48.8094 -Georgia.ttf 79 ° 18.4730 18.4730 68 $ -2.5858 27.3045 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 69 € -0.0363 36.6315 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 70 / -1.3366 23.2770 55.3045 -Georgia.ttf 79 ° 18.4730 18.4730 71 C -0.0038 34.2950 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 72 * -0.0097 22.6315 19.9723 -Georgia.ttf 79 ° 18.4730 18.4730 73 ” -1.4108 18.8041 15.1682 -Georgia.ttf 79 ° 18.4730 18.4730 74 ? -0.0389 22.2277 42.0000 -Georgia.ttf 79 ° 18.4730 18.4730 75 { -1.5707 21.2133 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 76 } -1.7323 21.2133 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 77 , 34.7240 9.5498 17.3047 -Georgia.ttf 79 ° 18.4730 18.4730 78 I 1.4514 18.1351 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 79 ° -0.2236 18.4730 18.4730 -Georgia.ttf 79 ° 18.4730 18.4730 80 K 1.3373 39.2597 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 81 H 1.1480 41.8878 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 82 q 11.2642 30.8903 43.1682 -Georgia.ttf 79 ° 18.4730 18.4730 83 & -0.0756 39.2597 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 84 ’ -1.4728 8.3588 15.1682 -Georgia.ttf 79 ° 18.4730 18.4730 85 [ -1.6468 15.1682 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 86 - 23.6686 17.0320 4.4730 -Georgia.ttf 79 ° 18.4730 18.4730 87 Y 1.3791 38.9680 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 88 Q 0.0899 38.4953 52.5642 -Georgia.ttf 79 ° 18.4730 18.4730 89 " -1.5748 17.7547 16.3365 -Georgia.ttf 79 ° 18.4730 18.4730 90 ! 0.0385 7.9550 42.7644 -Georgia.ttf 79 ° 18.4730 18.4730 91 x 13.5902 29.1682 28.0000 -Georgia.ttf 79 ° 18.4730 18.4730 92 ) -1.4832 16.5865 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 93 = 18.3785 29.1682 14.4500 -Georgia.ttf 79 ° 18.4730 18.4730 94 + 10.9372 29.4182 29.4182 -Georgia.ttf 79 ° 18.4730 18.4730 95 X 1.1325 41.5962 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 96 » 15.1697 23.9998 23.2770 -Georgia.ttf 79 ° 18.4730 18.4730 97 ' -1.5842 6.7867 16.3365 -Georgia.ttf 79 ° 18.4730 18.4730 98 ¢ 5.2221 25.8241 44.7403 -Georgia.ttf 79 ° 18.4730 18.4730 99 Z 1.4194 33.6912 40.4279 -Georgia.ttf 79 ° 18.4730 18.4730 100 > 10.3355 26.4279 30.3365 -Georgia.ttf 79 ° 18.4730 18.4730 101 ® -0.4853 50.3815 50.3815 -Georgia.ttf 79 ° 18.4730 18.4730 102 © -0.4104 50.3815 50.3815 -Georgia.ttf 79 ° 18.4730 18.4730 103 ] -1.4225 15.1682 52.4453 -Georgia.ttf 79 ° 18.4730 18.4730 104 é -2.0542 24.6953 44.8092 -Georgia.ttf 79 ° 18.4730 18.4730 105 z 13.6427 23.0270 28.0000 -Georgia.ttf 79 ° 18.4730 18.4730 106 _ 46.8003 37.5498 2.7403 -Georgia.ttf 79 ° 18.4730 18.4730 107 ¥ 1.0793 37.0770 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 1 t 3.1905 18.7851 38.0914 -Georgia.ttf 80 K 39.2597 40.4279 2 h -3.7987 31.5237 44.3365 -Georgia.ttf 80 K 39.2597 40.4279 3 a 11.1746 25.6635 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 4 n 10.9677 31.5237 29.1682 -Georgia.ttf 80 K 39.2597 40.4279 5 P 0.0413 31.6236 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 6 o 11.4182 27.2318 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 7 e 11.1660 24.6953 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 8 : 12.4822 7.9550 28.4038 -Georgia.ttf 80 K 39.2597 40.4279 9 r 11.3871 21.9550 29.1682 -Georgia.ttf 80 K 39.2597 40.4279 10 l -3.8624 14.8955 44.3365 -Georgia.ttf 80 K 39.2597 40.4279 11 i -3.2445 14.3538 43.8448 -Georgia.ttf 80 K 39.2597 40.4279 12 1 9.0387 19.8912 31.5047 -Georgia.ttf 80 K 39.2597 40.4279 13 | -3.0815 3.7547 55.3045 -Georgia.ttf 80 K 39.2597 40.4279 14 N -0.2776 42.0727 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 15 f -3.9114 22.1088 44.3365 -Georgia.ttf 80 K 39.2597 40.4279 16 g 11.0928 27.2356 42.0000 -Georgia.ttf 80 K 39.2597 40.4279 17 d -3.5173 30.9403 45.5047 -Georgia.ttf 80 K 39.2597 40.4279 18 W 0.2528 58.3365 40.6779 -Georgia.ttf 80 K 39.2597 40.4279 19 s 11.6212 20.9867 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 20 c 11.3195 24.1536 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 21 u 11.2811 31.5237 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 22 3 8.9954 27.3045 41.7500 -Georgia.ttf 80 K 39.2597 40.4279 23 ~ 19.5577 30.0403 10.4453 -Georgia.ttf 80 K 39.2597 40.4279 24 # 5.5091 29.1872 35.0594 -Georgia.ttf 80 K 39.2597 40.4279 25 O -1.2988 38.4953 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 26 ` -3.4299 11.6635 12.1362 -Georgia.ttf 80 K 39.2597 40.4279 27 @ 1.6646 44.6903 47.8912 -Georgia.ttf 80 K 39.2597 40.4279 28 F 0.0847 31.6736 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 29 S -0.9125 28.0000 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 30 p 10.9825 30.2638 42.0000 -Georgia.ttf 80 K 39.2597 40.4279 31 “ -2.7815 18.8041 15.1682 -Georgia.ttf 80 K 39.2597 40.4279 32 % -1.0843 41.5772 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 33 £ -1.1808 30.0448 41.5962 -Georgia.ttf 80 K 39.2597 40.4279 34 . 32.7215 7.9550 7.9550 -Georgia.ttf 80 K 39.2597 40.4279 35 2 8.9135 26.4090 31.5047 -Georgia.ttf 80 K 39.2597 40.4279 36 5 9.7296 26.8318 40.5818 -Georgia.ttf 80 K 39.2597 40.4279 37 m 11.0438 48.0867 29.1682 -Georgia.ttf 80 K 39.2597 40.4279 38 V -0.0389 41.3045 40.6779 -Georgia.ttf 80 K 39.2597 40.4279 39 6 -1.1359 27.7083 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 40 w 12.3958 44.3365 28.0000 -Georgia.ttf 80 K 39.2597 40.4279 41 T 0.0615 36.3815 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 42 M -0.7453 49.8549 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 43 G -1.2002 39.4135 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 44 b -4.0244 31.0781 46.4730 -Georgia.ttf 80 K 39.2597 40.4279 45 9 8.6813 27.7083 41.9500 -Georgia.ttf 80 K 39.2597 40.4279 46 ; 12.4419 9.5498 38.2453 -Georgia.ttf 80 K 39.2597 40.4279 47 D -0.3250 38.0914 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 48 L -0.0710 32.4730 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 49 y 12.7211 30.7403 40.8318 -Georgia.ttf 80 K 39.2597 40.4279 50 ‘ -2.6632 8.3588 15.1682 -Georgia.ttf 80 K 39.2597 40.4279 51 \ -2.8640 23.2770 55.3045 -Georgia.ttf 80 K 39.2597 40.4279 52 R -0.2744 39.2597 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 53 < 9.0283 26.4279 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 54 4 8.9246 29.8448 41.7500 -Georgia.ttf 80 K 39.2597 40.4279 55 8 -1.4170 28.7227 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 56 0 8.5321 29.8910 32.6730 -Georgia.ttf 80 K 39.2597 40.4279 57 A 0.1121 41.5962 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 58 E 0.4569 34.7056 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 59 B 0.2068 32.7646 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 60 v 12.3862 30.7403 28.0000 -Georgia.ttf 80 K 39.2597 40.4279 61 k -3.8574 31.4820 44.3365 -Georgia.ttf 80 K 39.2597 40.4279 62 J -0.0857 29.0144 41.5962 -Georgia.ttf 80 K 39.2597 40.4279 63 U -0.3171 42.2189 41.5962 -Georgia.ttf 80 K 39.2597 40.4279 64 j -3.3214 16.3365 56.6766 -Georgia.ttf 80 K 39.2597 40.4279 65 ( -2.6982 16.5865 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 66 7 10.0016 26.5818 40.5818 -Georgia.ttf 80 K 39.2597 40.4279 67 § -1.0885 22.5588 48.8094 -Georgia.ttf 80 K 39.2597 40.4279 68 $ -3.7777 27.3045 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 69 € -1.0431 36.6315 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 70 / -2.5875 23.2770 55.3045 -Georgia.ttf 80 K 39.2597 40.4279 71 C -0.9485 34.2950 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 72 * -1.0203 22.6315 19.9723 -Georgia.ttf 80 K 39.2597 40.4279 73 ” -2.8489 18.8041 15.1682 -Georgia.ttf 80 K 39.2597 40.4279 74 ? -1.2044 22.2277 42.0000 -Georgia.ttf 80 K 39.2597 40.4279 75 { -3.0217 21.2133 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 76 } -2.8548 21.2133 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 77 , 33.3444 9.5498 17.3047 -Georgia.ttf 80 K 39.2597 40.4279 78 I 0.0988 18.1351 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 79 ° -1.3319 18.4730 18.4730 -Georgia.ttf 80 K 39.2597 40.4279 80 K -0.1998 39.2597 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 81 H -0.0009 41.8878 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 82 q 10.1688 30.8903 43.1682 -Georgia.ttf 80 K 39.2597 40.4279 83 & -1.1123 39.2597 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 84 ’ -2.7861 8.3588 15.1682 -Georgia.ttf 80 K 39.2597 40.4279 85 [ -2.9159 15.1682 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 86 - 22.5651 17.0320 4.4730 -Georgia.ttf 80 K 39.2597 40.4279 87 Y -0.0032 38.9680 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 88 Q -0.9387 38.4953 52.5642 -Georgia.ttf 80 K 39.2597 40.4279 89 " -2.6092 17.7547 16.3365 -Georgia.ttf 80 K 39.2597 40.4279 90 ! -1.3087 7.9550 42.7644 -Georgia.ttf 80 K 39.2597 40.4279 91 x 12.6769 29.1682 28.0000 -Georgia.ttf 80 K 39.2597 40.4279 92 ) -2.6306 16.5865 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 93 = 16.9656 29.1682 14.4500 -Georgia.ttf 80 K 39.2597 40.4279 94 + 10.2585 29.4182 29.4182 -Georgia.ttf 80 K 39.2597 40.4279 95 X 0.1820 41.5962 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 96 » 13.6432 23.9998 23.2770 -Georgia.ttf 80 K 39.2597 40.4279 97 ' -2.8107 6.7867 16.3365 -Georgia.ttf 80 K 39.2597 40.4279 98 ¢ 4.3346 25.8241 44.7403 -Georgia.ttf 80 K 39.2597 40.4279 99 Z 0.0532 33.6912 40.4279 -Georgia.ttf 80 K 39.2597 40.4279 100 > 8.7928 26.4279 30.3365 -Georgia.ttf 80 K 39.2597 40.4279 101 ® -1.2851 50.3815 50.3815 -Georgia.ttf 80 K 39.2597 40.4279 102 © -1.4038 50.3815 50.3815 -Georgia.ttf 80 K 39.2597 40.4279 103 ] -2.8145 15.1682 52.4453 -Georgia.ttf 80 K 39.2597 40.4279 104 é -3.2959 24.6953 44.8092 -Georgia.ttf 80 K 39.2597 40.4279 105 z 12.6221 23.0270 28.0000 -Georgia.ttf 80 K 39.2597 40.4279 106 _ 45.5932 37.5498 2.7403 -Georgia.ttf 80 K 39.2597 40.4279 107 ¥ 0.2904 37.0770 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 1 t 3.4756 18.7851 38.0914 -Georgia.ttf 81 H 41.8878 40.4279 2 h -3.9522 31.5237 44.3365 -Georgia.ttf 81 H 41.8878 40.4279 3 a 11.2476 25.6635 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 4 n 11.1636 31.5237 29.1682 -Georgia.ttf 81 H 41.8878 40.4279 5 P -0.0281 31.6236 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 6 o 11.2190 27.2318 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 7 e 11.2949 24.6953 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 8 : 12.4543 7.9550 28.4038 -Georgia.ttf 81 H 41.8878 40.4279 9 r 11.1378 21.9550 29.1682 -Georgia.ttf 81 H 41.8878 40.4279 10 l -3.5199 14.8955 44.3365 -Georgia.ttf 81 H 41.8878 40.4279 11 i -3.4270 14.3538 43.8448 -Georgia.ttf 81 H 41.8878 40.4279 12 1 8.7973 19.8912 31.5047 -Georgia.ttf 81 H 41.8878 40.4279 13 | -2.8101 3.7547 55.3045 -Georgia.ttf 81 H 41.8878 40.4279 14 N 0.1809 42.0727 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 15 f -3.8838 22.1088 44.3365 -Georgia.ttf 81 H 41.8878 40.4279 16 g 11.2871 27.2356 42.0000 -Georgia.ttf 81 H 41.8878 40.4279 17 d -3.6887 30.9403 45.5047 -Georgia.ttf 81 H 41.8878 40.4279 18 W 0.0307 58.3365 40.6779 -Georgia.ttf 81 H 41.8878 40.4279 19 s 11.3394 20.9867 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 20 c 11.0932 24.1536 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 21 u 11.4172 31.5237 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 22 3 8.6428 27.3045 41.7500 -Georgia.ttf 81 H 41.8878 40.4279 23 ~ 19.1081 30.0403 10.4453 -Georgia.ttf 81 H 41.8878 40.4279 24 # 5.2272 29.1872 35.0594 -Georgia.ttf 81 H 41.8878 40.4279 25 O -1.3554 38.4953 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 26 ` -3.2502 11.6635 12.1362 -Georgia.ttf 81 H 41.8878 40.4279 27 @ 1.2868 44.6903 47.8912 -Georgia.ttf 81 H 41.8878 40.4279 28 F 0.1855 31.6736 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 29 S -1.0553 28.0000 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 30 p 11.5512 30.2638 42.0000 -Georgia.ttf 81 H 41.8878 40.4279 31 “ -3.0542 18.8041 15.1682 -Georgia.ttf 81 H 41.8878 40.4279 32 % -1.2680 41.5772 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 33 £ -1.4440 30.0448 41.5962 -Georgia.ttf 81 H 41.8878 40.4279 34 . 33.0516 7.9550 7.9550 -Georgia.ttf 81 H 41.8878 40.4279 35 2 9.3364 26.4090 31.5047 -Georgia.ttf 81 H 41.8878 40.4279 36 5 9.8265 26.8318 40.5818 -Georgia.ttf 81 H 41.8878 40.4279 37 m 11.1350 48.0867 29.1682 -Georgia.ttf 81 H 41.8878 40.4279 38 V -0.0516 41.3045 40.6779 -Georgia.ttf 81 H 41.8878 40.4279 39 6 -0.7671 27.7083 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 40 w 12.5483 44.3365 28.0000 -Georgia.ttf 81 H 41.8878 40.4279 41 T -0.0121 36.3815 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 42 M -0.0749 49.8549 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 43 G -1.2025 39.4135 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 44 b -3.7130 31.0781 46.4730 -Georgia.ttf 81 H 41.8878 40.4279 45 9 8.9018 27.7083 41.9500 -Georgia.ttf 81 H 41.8878 40.4279 46 ; 12.5287 9.5498 38.2453 -Georgia.ttf 81 H 41.8878 40.4279 47 D -0.1511 38.0914 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 48 L -0.1252 32.4730 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 49 y 12.1917 30.7403 40.8318 -Georgia.ttf 81 H 41.8878 40.4279 50 ‘ -2.6651 8.3588 15.1682 -Georgia.ttf 81 H 41.8878 40.4279 51 \ -3.0193 23.2770 55.3045 -Georgia.ttf 81 H 41.8878 40.4279 52 R 0.2876 39.2597 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 53 < 9.0710 26.4279 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 54 4 8.7643 29.8448 41.7500 -Georgia.ttf 81 H 41.8878 40.4279 55 8 -1.1536 28.7227 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 56 0 8.9977 29.8910 32.6730 -Georgia.ttf 81 H 41.8878 40.4279 57 A 0.1742 41.5962 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 58 E 0.2233 34.7056 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 59 B -0.2030 32.7646 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 60 v 12.3309 30.7403 28.0000 -Georgia.ttf 81 H 41.8878 40.4279 61 k -3.9572 31.4820 44.3365 -Georgia.ttf 81 H 41.8878 40.4279 62 J 0.1060 29.0144 41.5962 -Georgia.ttf 81 H 41.8878 40.4279 63 U -0.0230 42.2189 41.5962 -Georgia.ttf 81 H 41.8878 40.4279 64 j -3.6256 16.3365 56.6766 -Georgia.ttf 81 H 41.8878 40.4279 65 ( -2.5197 16.5865 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 66 7 9.7026 26.5818 40.5818 -Georgia.ttf 81 H 41.8878 40.4279 67 § -1.3351 22.5588 48.8094 -Georgia.ttf 81 H 41.8878 40.4279 68 $ -3.4732 27.3045 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 69 € -1.3313 36.6315 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 70 / -2.7324 23.2770 55.3045 -Georgia.ttf 81 H 41.8878 40.4279 71 C -1.2476 34.2950 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 72 * -1.1525 22.6315 19.9723 -Georgia.ttf 81 H 41.8878 40.4279 73 ” -2.8594 18.8041 15.1682 -Georgia.ttf 81 H 41.8878 40.4279 74 ? -1.0775 22.2277 42.0000 -Georgia.ttf 81 H 41.8878 40.4279 75 { -2.9691 21.2133 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 76 } -2.8943 21.2133 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 77 , 32.8633 9.5498 17.3047 -Georgia.ttf 81 H 41.8878 40.4279 78 I -0.0539 18.1351 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 79 ° -1.5635 18.4730 18.4730 -Georgia.ttf 81 H 41.8878 40.4279 80 K 0.0430 39.2597 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 81 H 0.0876 41.8878 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 82 q 9.7841 30.8903 43.1682 -Georgia.ttf 81 H 41.8878 40.4279 83 & -1.0607 39.2597 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 84 ’ -2.6273 8.3588 15.1682 -Georgia.ttf 81 H 41.8878 40.4279 85 [ -2.7209 15.1682 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 86 - 22.9299 17.0320 4.4730 -Georgia.ttf 81 H 41.8878 40.4279 87 Y 0.1590 38.9680 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 88 Q -0.7127 38.4953 52.5642 -Georgia.ttf 81 H 41.8878 40.4279 89 " -2.8552 17.7547 16.3365 -Georgia.ttf 81 H 41.8878 40.4279 90 ! -1.3656 7.9550 42.7644 -Georgia.ttf 81 H 41.8878 40.4279 91 x 12.2648 29.1682 28.0000 -Georgia.ttf 81 H 41.8878 40.4279 92 ) -2.6861 16.5865 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 93 = 17.3372 29.1682 14.4500 -Georgia.ttf 81 H 41.8878 40.4279 94 + 9.7628 29.4182 29.4182 -Georgia.ttf 81 H 41.8878 40.4279 95 X -0.0153 41.5962 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 96 » 13.6809 23.9998 23.2770 -Georgia.ttf 81 H 41.8878 40.4279 97 ' -2.7245 6.7867 16.3365 -Georgia.ttf 81 H 41.8878 40.4279 98 ¢ 4.2091 25.8241 44.7403 -Georgia.ttf 81 H 41.8878 40.4279 99 Z 0.1943 33.6912 40.4279 -Georgia.ttf 81 H 41.8878 40.4279 100 > 9.1901 26.4279 30.3365 -Georgia.ttf 81 H 41.8878 40.4279 101 ® -1.6249 50.3815 50.3815 -Georgia.ttf 81 H 41.8878 40.4279 102 © -1.5094 50.3815 50.3815 -Georgia.ttf 81 H 41.8878 40.4279 103 ] -2.8386 15.1682 52.4453 -Georgia.ttf 81 H 41.8878 40.4279 104 é -2.8047 24.6953 44.8092 -Georgia.ttf 81 H 41.8878 40.4279 105 z 12.4117 23.0270 28.0000 -Georgia.ttf 81 H 41.8878 40.4279 106 _ 45.5932 37.5498 2.7403 -Georgia.ttf 81 H 41.8878 40.4279 107 ¥ 0.0372 37.0770 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 1 t -6.7128 18.7851 38.0914 -Georgia.ttf 82 q 30.8903 43.1682 2 h -14.1511 31.5237 44.3365 -Georgia.ttf 82 q 30.8903 43.1682 3 a 1.2395 25.6635 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 4 n 1.3601 31.5237 29.1682 -Georgia.ttf 82 q 30.8903 43.1682 5 P -9.6947 31.6236 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 6 o 0.9982 27.2318 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 7 e 1.3054 24.6953 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 8 : 2.6822 7.9550 28.4038 -Georgia.ttf 82 q 30.8903 43.1682 9 r 1.1994 21.9550 29.1682 -Georgia.ttf 82 q 30.8903 43.1682 10 l -14.1957 14.8955 44.3365 -Georgia.ttf 82 q 30.8903 43.1682 11 i -13.3494 14.3538 43.8448 -Georgia.ttf 82 q 30.8903 43.1682 12 1 -1.2309 19.8912 31.5047 -Georgia.ttf 82 q 30.8903 43.1682 13 | -12.8164 3.7547 55.3045 -Georgia.ttf 82 q 30.8903 43.1682 14 N -10.0369 42.0727 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 15 f -14.0927 22.1088 44.3365 -Georgia.ttf 82 q 30.8903 43.1682 16 g 1.4327 27.2356 42.0000 -Georgia.ttf 82 q 30.8903 43.1682 17 d -13.7000 30.9403 45.5047 -Georgia.ttf 82 q 30.8903 43.1682 18 W -10.3871 58.3365 40.6779 -Georgia.ttf 82 q 30.8903 43.1682 19 s 1.1033 20.9867 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 20 c 1.1494 24.1536 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 21 u 1.3988 31.5237 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 22 3 -1.0880 27.3045 41.7500 -Georgia.ttf 82 q 30.8903 43.1682 23 ~ 9.2244 30.0403 10.4453 -Georgia.ttf 82 q 30.8903 43.1682 24 # -4.5599 29.1872 35.0594 -Georgia.ttf 82 q 30.8903 43.1682 25 O -11.3028 38.4953 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 26 ` -13.0334 11.6635 12.1362 -Georgia.ttf 82 q 30.8903 43.1682 27 @ -8.7419 44.6903 47.8912 -Georgia.ttf 82 q 30.8903 43.1682 28 F -10.0057 31.6736 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 29 S -11.2499 28.0000 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 30 p 1.0304 30.2638 42.0000 -Georgia.ttf 82 q 30.8903 43.1682 31 “ -12.6887 18.8041 15.1682 -Georgia.ttf 82 q 30.8903 43.1682 32 % -11.2416 41.5772 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 33 £ -11.2524 30.0448 41.5962 -Georgia.ttf 82 q 30.8903 43.1682 34 . 22.7455 7.9550 7.9550 -Georgia.ttf 82 q 30.8903 43.1682 35 2 -1.2104 26.4090 31.5047 -Georgia.ttf 82 q 30.8903 43.1682 36 5 0.0766 26.8318 40.5818 -Georgia.ttf 82 q 30.8903 43.1682 37 m 1.0237 48.0867 29.1682 -Georgia.ttf 82 q 30.8903 43.1682 38 V -10.1336 41.3045 40.6779 -Georgia.ttf 82 q 30.8903 43.1682 39 6 -11.0127 27.7083 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 40 w 2.5803 44.3365 28.0000 -Georgia.ttf 82 q 30.8903 43.1682 41 T -10.0200 36.3815 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 42 M -9.9575 49.8549 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 43 G -11.1142 39.4135 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 44 b -14.4427 31.0781 46.4730 -Georgia.ttf 82 q 30.8903 43.1682 45 9 -1.2784 27.7083 41.9500 -Georgia.ttf 82 q 30.8903 43.1682 46 ; 2.3607 9.5498 38.2453 -Georgia.ttf 82 q 30.8903 43.1682 47 D -9.9213 38.0914 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 48 L -10.4840 32.4730 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 49 y 2.2980 30.7403 40.8318 -Georgia.ttf 82 q 30.8903 43.1682 50 ‘ -13.0518 8.3588 15.1682 -Georgia.ttf 82 q 30.8903 43.1682 51 \ -12.4500 23.2770 55.3045 -Georgia.ttf 82 q 30.8903 43.1682 52 R -9.8742 39.2597 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 53 < -0.9150 26.4279 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 54 4 -1.2248 29.8448 41.7500 -Georgia.ttf 82 q 30.8903 43.1682 55 8 -11.2142 28.7227 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 56 0 -1.1011 29.8910 32.6730 -Georgia.ttf 82 q 30.8903 43.1682 57 A -10.1012 41.5962 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 58 E -10.3111 34.7056 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 59 B -10.0050 32.7646 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 60 v 2.1279 30.7403 28.0000 -Georgia.ttf 82 q 30.8903 43.1682 61 k -14.0547 31.4820 44.3365 -Georgia.ttf 82 q 30.8903 43.1682 62 J -10.1869 29.0144 41.5962 -Georgia.ttf 82 q 30.8903 43.1682 63 U -10.1105 42.2189 41.5962 -Georgia.ttf 82 q 30.8903 43.1682 64 j -13.2449 16.3365 56.6766 -Georgia.ttf 82 q 30.8903 43.1682 65 ( -12.8418 16.5865 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 66 7 0.1386 26.5818 40.5818 -Georgia.ttf 82 q 30.8903 43.1682 67 § -11.3885 22.5588 48.8094 -Georgia.ttf 82 q 30.8903 43.1682 68 $ -13.5893 27.3045 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 69 € -11.2976 36.6315 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 70 / -12.8220 23.2770 55.3045 -Georgia.ttf 82 q 30.8903 43.1682 71 C -11.0344 34.2950 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 72 * -11.3754 22.6315 19.9723 -Georgia.ttf 82 q 30.8903 43.1682 73 ” -12.7719 18.8041 15.1682 -Georgia.ttf 82 q 30.8903 43.1682 74 ? -11.1840 22.2277 42.0000 -Georgia.ttf 82 q 30.8903 43.1682 75 { -13.1417 21.2133 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 76 } -12.7544 21.2133 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 77 , 23.4768 9.5498 17.3047 -Georgia.ttf 82 q 30.8903 43.1682 78 I -9.9089 18.1351 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 79 ° -11.2922 18.4730 18.4730 -Georgia.ttf 82 q 30.8903 43.1682 80 K -10.2308 39.2597 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 81 H -10.2912 41.8878 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 82 q -0.3124 30.8903 43.1682 -Georgia.ttf 82 q 30.8903 43.1682 83 & -11.2849 39.2597 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 84 ’ -12.6862 8.3588 15.1682 -Georgia.ttf 82 q 30.8903 43.1682 85 [ -12.5296 15.1682 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 86 - 12.8111 17.0320 4.4730 -Georgia.ttf 82 q 30.8903 43.1682 87 Y -10.2764 38.9680 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 88 Q -11.2597 38.4953 52.5642 -Georgia.ttf 82 q 30.8903 43.1682 89 " -12.8175 17.7547 16.3365 -Georgia.ttf 82 q 30.8903 43.1682 90 ! -11.2797 7.9550 42.7644 -Georgia.ttf 82 q 30.8903 43.1682 91 x 2.2267 29.1682 28.0000 -Georgia.ttf 82 q 30.8903 43.1682 92 ) -12.7510 16.5865 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 93 = 7.1985 29.1682 14.4500 -Georgia.ttf 82 q 30.8903 43.1682 94 + -0.2435 29.4182 29.4182 -Georgia.ttf 82 q 30.8903 43.1682 95 X -10.1377 41.5962 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 96 » 3.4601 23.9998 23.2770 -Georgia.ttf 82 q 30.8903 43.1682 97 ' -12.8318 6.7867 16.3365 -Georgia.ttf 82 q 30.8903 43.1682 98 ¢ -6.0983 25.8241 44.7403 -Georgia.ttf 82 q 30.8903 43.1682 99 Z -10.3065 33.6912 40.4279 -Georgia.ttf 82 q 30.8903 43.1682 100 > -0.8376 26.4279 30.3365 -Georgia.ttf 82 q 30.8903 43.1682 101 ® -11.8461 50.3815 50.3815 -Georgia.ttf 82 q 30.8903 43.1682 102 © -11.7968 50.3815 50.3815 -Georgia.ttf 82 q 30.8903 43.1682 103 ] -12.8263 15.1682 52.4453 -Georgia.ttf 82 q 30.8903 43.1682 104 é -12.8325 24.6953 44.8092 -Georgia.ttf 82 q 30.8903 43.1682 105 z 2.5316 23.0270 28.0000 -Georgia.ttf 82 q 30.8903 43.1682 106 _ 35.3478 37.5498 2.7403 -Georgia.ttf 82 q 30.8903 43.1682 107 ¥ -10.0145 37.0770 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 1 t 4.4353 18.7851 38.0914 -Georgia.ttf 83 & 39.2597 42.7644 2 h -2.8421 31.5237 44.3365 -Georgia.ttf 83 & 39.2597 42.7644 3 a 12.4034 25.6635 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 4 n 12.4779 31.5237 29.1682 -Georgia.ttf 83 & 39.2597 42.7644 5 P 1.2784 31.6236 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 6 o 12.5425 27.2318 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 7 e 12.7458 24.6953 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 8 : 13.6727 7.9550 28.4038 -Georgia.ttf 83 & 39.2597 42.7644 9 r 12.2536 21.9550 29.1682 -Georgia.ttf 83 & 39.2597 42.7644 10 l -2.6828 14.8955 44.3365 -Georgia.ttf 83 & 39.2597 42.7644 11 i -2.2439 14.3538 43.8448 -Georgia.ttf 83 & 39.2597 42.7644 12 1 9.9159 19.8912 31.5047 -Georgia.ttf 83 & 39.2597 42.7644 13 | -1.5391 3.7547 55.3045 -Georgia.ttf 83 & 39.2597 42.7644 14 N 1.4157 42.0727 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 15 f -2.3890 22.1088 44.3365 -Georgia.ttf 83 & 39.2597 42.7644 16 g 12.4761 27.2356 42.0000 -Georgia.ttf 83 & 39.2597 42.7644 17 d -2.7046 30.9403 45.5047 -Georgia.ttf 83 & 39.2597 42.7644 18 W 1.2610 58.3365 40.6779 -Georgia.ttf 83 & 39.2597 42.7644 19 s 12.4241 20.9867 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 20 c 12.1428 24.1536 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 21 u 12.4010 31.5237 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 22 3 10.4192 27.3045 41.7500 -Georgia.ttf 83 & 39.2597 42.7644 23 ~ 20.5364 30.0403 10.4453 -Georgia.ttf 83 & 39.2597 42.7644 24 # 6.2892 29.1872 35.0594 -Georgia.ttf 83 & 39.2597 42.7644 25 O 0.0325 38.4953 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 26 ` -2.1482 11.6635 12.1362 -Georgia.ttf 83 & 39.2597 42.7644 27 @ 2.9609 44.6903 47.8912 -Georgia.ttf 83 & 39.2597 42.7644 28 F 1.2054 31.6736 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 29 S 0.1031 28.0000 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 30 p 12.3543 30.2638 42.0000 -Georgia.ttf 83 & 39.2597 42.7644 31 “ -1.7449 18.8041 15.1682 -Georgia.ttf 83 & 39.2597 42.7644 32 % -0.0387 41.5772 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 33 £ 0.0962 30.0448 41.5962 -Georgia.ttf 83 & 39.2597 42.7644 34 . 34.1504 7.9550 7.9550 -Georgia.ttf 83 & 39.2597 42.7644 35 2 9.9470 26.4090 31.5047 -Georgia.ttf 83 & 39.2597 42.7644 36 5 11.3977 26.8318 40.5818 -Georgia.ttf 83 & 39.2597 42.7644 37 m 12.4490 48.0867 29.1682 -Georgia.ttf 83 & 39.2597 42.7644 38 V 1.2599 41.3045 40.6779 -Georgia.ttf 83 & 39.2597 42.7644 39 6 0.1274 27.7083 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 40 w 13.3978 44.3365 28.0000 -Georgia.ttf 83 & 39.2597 42.7644 41 T 1.0551 36.3815 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 42 M 1.4037 49.8549 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 43 G 0.1590 39.4135 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 44 b -2.7948 31.0781 46.4730 -Georgia.ttf 83 & 39.2597 42.7644 45 9 10.0563 27.7083 41.9500 -Georgia.ttf 83 & 39.2597 42.7644 46 ; 13.5485 9.5498 38.2453 -Georgia.ttf 83 & 39.2597 42.7644 47 D 1.2861 38.0914 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 48 L 1.1103 32.4730 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 49 y 13.5944 30.7403 40.8318 -Georgia.ttf 83 & 39.2597 42.7644 50 ‘ -1.5088 8.3588 15.1682 -Georgia.ttf 83 & 39.2597 42.7644 51 \ -1.8186 23.2770 55.3045 -Georgia.ttf 83 & 39.2597 42.7644 52 R 1.4443 39.2597 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 53 < 10.6313 26.4279 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 54 4 9.8432 29.8448 41.7500 -Georgia.ttf 83 & 39.2597 42.7644 55 8 0.1911 28.7227 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 56 0 10.0100 29.8910 32.6730 -Georgia.ttf 83 & 39.2597 42.7644 57 A 1.2499 41.5962 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 58 E 1.1368 34.7056 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 59 B 0.9337 32.7646 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 60 v 13.7542 30.7403 28.0000 -Georgia.ttf 83 & 39.2597 42.7644 61 k -2.6064 31.4820 44.3365 -Georgia.ttf 83 & 39.2597 42.7644 62 J 1.4291 29.0144 41.5962 -Georgia.ttf 83 & 39.2597 42.7644 63 U 1.0454 42.2189 41.5962 -Georgia.ttf 83 & 39.2597 42.7644 64 j -2.2181 16.3365 56.6766 -Georgia.ttf 83 & 39.2597 42.7644 65 ( -1.3450 16.5865 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 66 7 11.3705 26.5818 40.5818 -Georgia.ttf 83 & 39.2597 42.7644 67 § 0.3101 22.5588 48.8094 -Georgia.ttf 83 & 39.2597 42.7644 68 $ -2.4459 27.3045 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 69 € 0.1131 36.6315 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 70 / -1.6051 23.2770 55.3045 -Georgia.ttf 83 & 39.2597 42.7644 71 C -0.0405 34.2950 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 72 * 0.1774 22.6315 19.9723 -Georgia.ttf 83 & 39.2597 42.7644 73 ” -1.2691 18.8041 15.1682 -Georgia.ttf 83 & 39.2597 42.7644 74 ? 0.0830 22.2277 42.0000 -Georgia.ttf 83 & 39.2597 42.7644 75 { -1.6058 21.2133 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 76 } -1.4978 21.2133 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 77 , 34.3407 9.5498 17.3047 -Georgia.ttf 83 & 39.2597 42.7644 78 I 1.3513 18.1351 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 79 ° 0.2113 18.4730 18.4730 -Georgia.ttf 83 & 39.2597 42.7644 80 K 1.0583 39.2597 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 81 H 1.0206 41.8878 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 82 q 11.1537 30.8903 43.1682 -Georgia.ttf 83 & 39.2597 42.7644 83 & -0.2397 39.2597 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 84 ’ -1.6161 8.3588 15.1682 -Georgia.ttf 83 & 39.2597 42.7644 85 [ -1.7872 15.1682 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 86 - 23.6681 17.0320 4.4730 -Georgia.ttf 83 & 39.2597 42.7644 87 Y 1.1211 38.9680 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 88 Q 0.0353 38.4953 52.5642 -Georgia.ttf 83 & 39.2597 42.7644 89 " -1.9160 17.7547 16.3365 -Georgia.ttf 83 & 39.2597 42.7644 90 ! 0.1128 7.9550 42.7644 -Georgia.ttf 83 & 39.2597 42.7644 91 x 13.6970 29.1682 28.0000 -Georgia.ttf 83 & 39.2597 42.7644 92 ) -1.5149 16.5865 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 93 = 18.4270 29.1682 14.4500 -Georgia.ttf 83 & 39.2597 42.7644 94 + 11.0399 29.4182 29.4182 -Georgia.ttf 83 & 39.2597 42.7644 95 X 1.3105 41.5962 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 96 » 14.6202 23.9998 23.2770 -Georgia.ttf 83 & 39.2597 42.7644 97 ' -1.4448 6.7867 16.3365 -Georgia.ttf 83 & 39.2597 42.7644 98 ¢ 5.2517 25.8241 44.7403 -Georgia.ttf 83 & 39.2597 42.7644 99 Z 1.0097 33.6912 40.4279 -Georgia.ttf 83 & 39.2597 42.7644 100 > 10.6726 26.4279 30.3365 -Georgia.ttf 83 & 39.2597 42.7644 101 ® -0.4517 50.3815 50.3815 -Georgia.ttf 83 & 39.2597 42.7644 102 © -0.6253 50.3815 50.3815 -Georgia.ttf 83 & 39.2597 42.7644 103 ] -1.4708 15.1682 52.4453 -Georgia.ttf 83 & 39.2597 42.7644 104 é -2.0653 24.6953 44.8092 -Georgia.ttf 83 & 39.2597 42.7644 105 z 13.4172 23.0270 28.0000 -Georgia.ttf 83 & 39.2597 42.7644 106 _ 46.8402 37.5498 2.7403 -Georgia.ttf 83 & 39.2597 42.7644 107 ¥ 1.0881 37.0770 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 1 t 6.4903 18.7851 38.0914 -Georgia.ttf 84 ’ 8.3588 15.1682 2 h -1.0588 31.5237 44.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 3 a 14.2256 25.6635 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 4 n 14.0839 31.5237 29.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 5 P 2.7728 31.6236 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 6 o 14.0000 27.2318 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 7 e 14.0000 24.6953 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 8 : 15.2178 7.9550 28.4038 -Georgia.ttf 84 ’ 8.3588 15.1682 9 r 14.0000 21.9550 29.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 10 l -1.2540 14.8955 44.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 11 i -0.6766 14.3538 43.8448 -Georgia.ttf 84 ’ 8.3588 15.1682 12 1 11.7409 19.8912 31.5047 -Georgia.ttf 84 ’ 8.3588 15.1682 13 | -0.0769 3.7547 55.3045 -Georgia.ttf 84 ’ 8.3588 15.1682 14 N 2.6487 42.0727 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 15 f -0.8460 22.1088 44.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 16 g 14.0070 27.2356 42.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 17 d -1.1540 30.9403 45.5047 -Georgia.ttf 84 ’ 8.3588 15.1682 18 W 2.7403 58.3365 40.6779 -Georgia.ttf 84 ’ 8.3588 15.1682 19 s 14.0032 20.9867 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 20 c 14.0000 24.1536 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 21 u 14.1214 31.5237 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 22 3 11.6538 27.3045 41.7500 -Georgia.ttf 84 ’ 8.3588 15.1682 23 ~ 21.9137 30.0403 10.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 24 # 8.1175 29.1872 35.0594 -Georgia.ttf 84 ’ 8.3588 15.1682 25 O 1.5721 38.4953 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 26 ` -0.3239 11.6635 12.1362 -Georgia.ttf 84 ’ 8.3588 15.1682 27 @ 4.2332 44.6903 47.8912 -Georgia.ttf 84 ’ 8.3588 15.1682 28 F 2.6959 31.6736 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 29 S 1.5683 28.0000 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 30 p 13.8744 30.2638 42.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 31 “ 0.0499 18.8041 15.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 32 % 1.7509 41.5772 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 33 £ 1.7863 30.0448 41.5962 -Georgia.ttf 84 ’ 8.3588 15.1682 34 . 35.4174 7.9550 7.9550 -Georgia.ttf 84 ’ 8.3588 15.1682 35 2 11.7409 26.4090 31.5047 -Georgia.ttf 84 ’ 8.3588 15.1682 36 5 12.9179 26.8318 40.5818 -Georgia.ttf 84 ’ 8.3588 15.1682 37 m 14.1431 48.0867 29.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 38 V 2.8177 41.3045 40.6779 -Georgia.ttf 84 ’ 8.3588 15.1682 39 6 1.3850 27.7083 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 40 w 15.2040 44.3365 28.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 41 T 2.7903 36.3815 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 42 M 2.5465 49.8549 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 43 G 1.6054 39.4135 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 44 b -1.1116 31.0781 46.4730 -Georgia.ttf 84 ’ 8.3588 15.1682 45 9 11.9017 27.7083 41.9500 -Georgia.ttf 84 ’ 8.3588 15.1682 46 ; 14.9927 9.5498 38.2453 -Georgia.ttf 84 ’ 8.3588 15.1682 47 D 2.9845 38.0914 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 48 L 2.7903 32.4730 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 49 y 15.1682 30.7403 40.8318 -Georgia.ttf 84 ’ 8.3588 15.1682 50 ‘ 0.0500 8.3588 15.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 51 \ 0.0774 23.2770 55.3045 -Georgia.ttf 84 ’ 8.3588 15.1682 52 R 2.7452 39.2597 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 53 < 11.7334 26.4279 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 54 4 11.5796 29.8448 41.7500 -Georgia.ttf 84 ’ 8.3588 15.1682 55 8 1.6291 28.7227 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 56 0 11.5838 29.8910 32.6730 -Georgia.ttf 84 ’ 8.3588 15.1682 57 A 2.6806 41.5962 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 58 E 2.8177 34.7056 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 59 B 2.6046 32.7646 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 60 v 15.2341 30.7403 28.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 61 k -1.1028 31.4820 44.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 62 J 2.6931 29.0144 41.5962 -Georgia.ttf 84 ’ 8.3588 15.1682 63 U 2.6883 42.2189 41.5962 -Georgia.ttf 84 ’ 8.3588 15.1682 64 j -0.7605 16.3365 56.6766 -Georgia.ttf 84 ’ 8.3588 15.1682 65 ( 0.0557 16.5865 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 66 7 12.8318 26.5818 40.5818 -Georgia.ttf 84 ’ 8.3588 15.1682 67 § 1.5364 22.5588 48.8094 -Georgia.ttf 84 ’ 8.3588 15.1682 68 $ -0.7601 27.3045 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 69 € 1.5689 36.6315 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 70 / 0.1669 23.2770 55.3045 -Georgia.ttf 84 ’ 8.3588 15.1682 71 C 1.5721 34.2950 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 72 * 1.6078 22.6315 19.9723 -Georgia.ttf 84 ’ 8.3588 15.1682 73 ” -0.1742 18.8041 15.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 74 ? 1.7604 22.2277 42.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 75 { -0.0038 21.2133 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 76 } 0.0357 21.2133 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 77 , 36.0676 9.5498 17.3047 -Georgia.ttf 84 ’ 8.3588 15.1682 78 I 2.7376 18.1351 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 79 ° 1.6165 18.4730 18.4730 -Georgia.ttf 84 ’ 8.3588 15.1682 80 K 2.9650 39.2597 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 81 H 2.9114 41.8878 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 82 q 12.9102 30.8903 43.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 83 & 1.4952 39.2597 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 84 ’ -0.1020 8.3588 15.1682 -Georgia.ttf 84 ’ 8.3588 15.1682 85 [ 0.0010 15.1682 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 86 - 25.3334 17.0320 4.4730 -Georgia.ttf 84 ’ 8.3588 15.1682 87 Y 2.7760 38.9680 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 88 Q 1.6138 38.4953 52.5642 -Georgia.ttf 84 ’ 8.3588 15.1682 89 " -0.0500 17.7547 16.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 90 ! 1.6235 7.9550 42.7644 -Georgia.ttf 84 ’ 8.3588 15.1682 91 x 15.4541 29.1682 28.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 92 ) 0.1274 16.5865 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 93 = 20.3435 29.1682 14.4500 -Georgia.ttf 84 ’ 8.3588 15.1682 94 + 12.5258 29.4182 29.4182 -Georgia.ttf 84 ’ 8.3588 15.1682 95 X 2.6578 41.5962 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 96 » 16.6365 23.9998 23.2770 -Georgia.ttf 84 ’ 8.3588 15.1682 97 ' 0.0482 6.7867 16.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 98 ¢ 6.8284 25.8241 44.7403 -Georgia.ttf 84 ’ 8.3588 15.1682 99 Z 2.7376 33.6912 40.4279 -Georgia.ttf 84 ’ 8.3588 15.1682 100 > 11.8520 26.4279 30.3365 -Georgia.ttf 84 ’ 8.3588 15.1682 101 ® 1.5135 50.3815 50.3815 -Georgia.ttf 84 ’ 8.3588 15.1682 102 © 1.3666 50.3815 50.3815 -Georgia.ttf 84 ’ 8.3588 15.1682 103 ] 0.0000 15.1682 52.4453 -Georgia.ttf 84 ’ 8.3588 15.1682 104 é -0.6688 24.6953 44.8092 -Georgia.ttf 84 ’ 8.3588 15.1682 105 z 15.2411 23.0270 28.0000 -Georgia.ttf 84 ’ 8.3588 15.1682 106 _ 48.3502 37.5498 2.7403 -Georgia.ttf 84 ’ 8.3588 15.1682 107 ¥ 2.5479 37.0770 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 1 t 6.1649 18.7851 38.0914 -Georgia.ttf 85 [ 15.1682 52.4453 2 h -1.2554 31.5237 44.3365 -Georgia.ttf 85 [ 15.1682 52.4453 3 a 14.0422 25.6635 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 4 n 14.5198 31.5237 29.1682 -Georgia.ttf 85 [ 15.1682 52.4453 5 P 2.4520 31.6236 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 6 o 14.0899 27.2318 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 7 e 13.9813 24.6953 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 8 : 15.0032 7.9550 28.4038 -Georgia.ttf 85 [ 15.1682 52.4453 9 r 13.9538 21.9550 29.1682 -Georgia.ttf 85 [ 15.1682 52.4453 10 l -1.1529 14.8955 44.3365 -Georgia.ttf 85 [ 15.1682 52.4453 11 i -0.6734 14.3538 43.8448 -Georgia.ttf 85 [ 15.1682 52.4453 12 1 11.7544 19.8912 31.5047 -Georgia.ttf 85 [ 15.1682 52.4453 13 | 0.1487 3.7547 55.3045 -Georgia.ttf 85 [ 15.1682 52.4453 14 N 2.7645 42.0727 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 15 f -1.0409 22.1088 44.3365 -Georgia.ttf 85 [ 15.1682 52.4453 16 g 14.0157 27.2356 42.0000 -Georgia.ttf 85 [ 15.1682 52.4453 17 d -1.3127 30.9403 45.5047 -Georgia.ttf 85 [ 15.1682 52.4453 18 W 2.8172 58.3365 40.6779 -Georgia.ttf 85 [ 15.1682 52.4453 19 s 13.9188 20.9867 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 20 c 13.8554 24.1536 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 21 u 13.9786 31.5237 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 22 3 11.6341 27.3045 41.7500 -Georgia.ttf 85 [ 15.1682 52.4453 23 ~ 21.8858 30.0403 10.4453 -Georgia.ttf 85 [ 15.1682 52.4453 24 # 8.2441 29.1872 35.0594 -Georgia.ttf 85 [ 15.1682 52.4453 25 O 1.7594 38.4953 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 26 ` -0.6547 11.6635 12.1362 -Georgia.ttf 85 [ 15.1682 52.4453 27 @ 4.1218 44.6903 47.8912 -Georgia.ttf 85 [ 15.1682 52.4453 28 F 2.7232 31.6736 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 29 S 1.4853 28.0000 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 30 p 14.0696 30.2638 42.0000 -Georgia.ttf 85 [ 15.1682 52.4453 31 “ -0.0105 18.8041 15.1682 -Georgia.ttf 85 [ 15.1682 52.4453 32 % 1.7306 41.5772 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 33 £ 1.6533 30.0448 41.5962 -Georgia.ttf 85 [ 15.1682 52.4453 34 . 35.5836 7.9550 7.9550 -Georgia.ttf 85 [ 15.1682 52.4453 35 2 11.6324 26.4090 31.5047 -Georgia.ttf 85 [ 15.1682 52.4453 36 5 12.7831 26.8318 40.5818 -Georgia.ttf 85 [ 15.1682 52.4453 37 m 14.0769 48.0867 29.1682 -Georgia.ttf 85 [ 15.1682 52.4453 38 V 2.6010 41.3045 40.6779 -Georgia.ttf 85 [ 15.1682 52.4453 39 6 1.6287 27.7083 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 40 w 15.1336 44.3365 28.0000 -Georgia.ttf 85 [ 15.1682 52.4453 41 T 2.8274 36.3815 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 42 M 3.0477 49.8549 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 43 G 1.7806 39.4135 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 44 b -1.0467 31.0781 46.4730 -Georgia.ttf 85 [ 15.1682 52.4453 45 9 11.3970 27.7083 41.9500 -Georgia.ttf 85 [ 15.1682 52.4453 46 ; 15.1690 9.5498 38.2453 -Georgia.ttf 85 [ 15.1682 52.4453 47 D 2.8292 38.0914 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 48 L 2.8172 32.4730 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 49 y 15.1266 30.7403 40.8318 -Georgia.ttf 85 [ 15.1682 52.4453 50 ‘ 0.0377 8.3588 15.1682 -Georgia.ttf 85 [ 15.1682 52.4453 51 \ -0.0274 23.2770 55.3045 -Georgia.ttf 85 [ 15.1682 52.4453 52 R 2.5845 39.2597 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 53 < 11.9969 26.4279 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 54 4 11.6705 29.8448 41.7500 -Georgia.ttf 85 [ 15.1682 52.4453 55 8 1.4915 28.7227 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 56 0 11.5719 29.8910 32.6730 -Georgia.ttf 85 [ 15.1682 52.4453 57 A 2.7788 41.5962 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 58 E 2.6584 34.7056 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 59 B 2.4997 32.7646 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 60 v 15.1014 30.7403 28.0000 -Georgia.ttf 85 [ 15.1682 52.4453 61 k -1.3694 31.4820 44.3365 -Georgia.ttf 85 [ 15.1682 52.4453 62 J 2.9153 29.0144 41.5962 -Georgia.ttf 85 [ 15.1682 52.4453 63 U 2.9136 42.2189 41.5962 -Georgia.ttf 85 [ 15.1682 52.4453 64 j -0.5954 16.3365 56.6766 -Georgia.ttf 85 [ 15.1682 52.4453 65 ( 0.0976 16.5865 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 66 7 12.6914 26.5818 40.5818 -Georgia.ttf 85 [ 15.1682 52.4453 67 § 1.4553 22.5588 48.8094 -Georgia.ttf 85 [ 15.1682 52.4453 68 $ -0.8413 27.3045 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 69 € 1.5892 36.6315 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 70 / 0.0839 23.2770 55.3045 -Georgia.ttf 85 [ 15.1682 52.4453 71 C 1.7306 34.2950 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 72 * 1.2978 22.6315 19.9723 -Georgia.ttf 85 [ 15.1682 52.4453 73 ” 0.0315 18.8041 15.1682 -Georgia.ttf 85 [ 15.1682 52.4453 74 ? 1.6481 22.2277 42.0000 -Georgia.ttf 85 [ 15.1682 52.4453 75 { -0.0175 21.2133 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 76 } -0.0061 21.2133 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 77 , 36.2932 9.5498 17.3047 -Georgia.ttf 85 [ 15.1682 52.4453 78 I 2.5447 18.1351 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 79 ° 1.4409 18.4730 18.4730 -Georgia.ttf 85 [ 15.1682 52.4453 80 K 2.6134 39.2597 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 81 H 2.7774 41.8878 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 82 q 12.4379 30.8903 43.1682 -Georgia.ttf 85 [ 15.1682 52.4453 83 & 1.4251 39.2597 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 84 ’ 0.0339 8.3588 15.1682 -Georgia.ttf 85 [ 15.1682 52.4453 85 [ 0.0357 15.1682 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 86 - 25.1234 17.0320 4.4730 -Georgia.ttf 85 [ 15.1682 52.4453 87 Y 2.8891 38.9680 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 88 Q 1.3965 38.4953 52.5642 -Georgia.ttf 85 [ 15.1682 52.4453 89 " -0.0579 17.7547 16.3365 -Georgia.ttf 85 [ 15.1682 52.4453 90 ! 1.6207 7.9550 42.7644 -Georgia.ttf 85 [ 15.1682 52.4453 91 x 15.0083 29.1682 28.0000 -Georgia.ttf 85 [ 15.1682 52.4453 92 ) 0.0871 16.5865 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 93 = 20.2165 29.1682 14.4500 -Georgia.ttf 85 [ 15.1682 52.4453 94 + 12.4484 29.4182 29.4182 -Georgia.ttf 85 [ 15.1682 52.4453 95 X 2.6505 41.5962 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 96 » 16.1894 23.9998 23.2770 -Georgia.ttf 85 [ 15.1682 52.4453 97 ' -0.0260 6.7867 16.3365 -Georgia.ttf 85 [ 15.1682 52.4453 98 ¢ 6.5512 25.8241 44.7403 -Georgia.ttf 85 [ 15.1682 52.4453 99 Z 2.9589 33.6912 40.4279 -Georgia.ttf 85 [ 15.1682 52.4453 100 > 11.8246 26.4279 30.3365 -Georgia.ttf 85 [ 15.1682 52.4453 101 ® 0.9185 50.3815 50.3815 -Georgia.ttf 85 [ 15.1682 52.4453 102 © 1.0811 50.3815 50.3815 -Georgia.ttf 85 [ 15.1682 52.4453 103 ] -0.2028 15.1682 52.4453 -Georgia.ttf 85 [ 15.1682 52.4453 104 é -0.4329 24.6953 44.8092 -Georgia.ttf 85 [ 15.1682 52.4453 105 z 15.2508 23.0270 28.0000 -Georgia.ttf 85 [ 15.1682 52.4453 106 _ 48.1677 37.5498 2.7403 -Georgia.ttf 85 [ 15.1682 52.4453 107 ¥ 2.4104 37.0770 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 1 t -19.2454 18.7851 38.0914 -Georgia.ttf 86 - 17.0320 4.4730 2 h -26.5949 31.5237 44.3365 -Georgia.ttf 86 - 17.0320 4.4730 3 a -11.5075 25.6635 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 4 n -11.5044 31.5237 29.1682 -Georgia.ttf 86 - 17.0320 4.4730 5 P -22.5277 31.6236 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 6 o -11.4097 27.2318 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 7 e -11.2720 24.6953 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 8 : -9.9000 7.9550 28.4038 -Georgia.ttf 86 - 17.0320 4.4730 9 r -11.7347 21.9550 29.1682 -Georgia.ttf 86 - 17.0320 4.4730 10 l -26.6587 14.8955 44.3365 -Georgia.ttf 86 - 17.0320 4.4730 11 i -26.0582 14.3538 43.8448 -Georgia.ttf 86 - 17.0320 4.4730 12 1 -13.7357 19.8912 31.5047 -Georgia.ttf 86 - 17.0320 4.4730 13 | -25.5134 3.7547 55.3045 -Georgia.ttf 86 - 17.0320 4.4730 14 N -22.9521 42.0727 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 15 f -26.7008 22.1088 44.3365 -Georgia.ttf 86 - 17.0320 4.4730 16 g -11.0178 27.2356 42.0000 -Georgia.ttf 86 - 17.0320 4.4730 17 d -26.6675 30.9403 45.5047 -Georgia.ttf 86 - 17.0320 4.4730 18 W -22.7065 58.3365 40.6779 -Georgia.ttf 86 - 17.0320 4.4730 19 s -11.5052 20.9867 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 20 c -11.6657 24.1536 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 21 u -11.4974 31.5237 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 22 3 -13.7945 27.3045 41.7500 -Georgia.ttf 86 - 17.0320 4.4730 23 ~ -3.3899 30.0403 10.4453 -Georgia.ttf 86 - 17.0320 4.4730 24 # -17.1375 29.1872 35.0594 -Georgia.ttf 86 - 17.0320 4.4730 25 O -23.7399 38.4953 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 26 ` -26.1351 11.6635 12.1362 -Georgia.ttf 86 - 17.0320 4.4730 27 @ -21.2847 44.6903 47.8912 -Georgia.ttf 86 - 17.0320 4.4730 28 F -22.5958 31.6736 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 29 S -23.7420 28.0000 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 30 p -11.2264 30.2638 42.0000 -Georgia.ttf 86 - 17.0320 4.4730 31 “ -25.4447 18.8041 15.1682 -Georgia.ttf 86 - 17.0320 4.4730 32 % -23.8869 41.5772 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 33 £ -23.7594 30.0448 41.5962 -Georgia.ttf 86 - 17.0320 4.4730 34 . 10.2138 7.9550 7.9550 -Georgia.ttf 86 - 17.0320 4.4730 35 2 -13.7032 26.4090 31.5047 -Georgia.ttf 86 - 17.0320 4.4730 36 5 -12.4863 26.8318 40.5818 -Georgia.ttf 86 - 17.0320 4.4730 37 m -11.4992 48.0867 29.1682 -Georgia.ttf 86 - 17.0320 4.4730 38 V -22.7571 41.3045 40.6779 -Georgia.ttf 86 - 17.0320 4.4730 39 6 -23.9913 27.7083 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 40 w -10.3272 44.3365 28.0000 -Georgia.ttf 86 - 17.0320 4.4730 41 T -22.7051 36.3815 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 42 M -22.8912 49.8549 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 43 G -23.8078 39.4135 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 44 b -26.7441 31.0781 46.4730 -Georgia.ttf 86 - 17.0320 4.4730 45 9 -13.6304 27.7083 41.9500 -Georgia.ttf 86 - 17.0320 4.4730 46 ; -10.1949 9.5498 38.2453 -Georgia.ttf 86 - 17.0320 4.4730 47 D -22.9129 38.0914 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 48 L -22.5963 32.4730 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 49 y -10.2894 30.7403 40.8318 -Georgia.ttf 86 - 17.0320 4.4730 50 ‘ -25.3009 8.3588 15.1682 -Georgia.ttf 86 - 17.0320 4.4730 51 \ -25.3316 23.2770 55.3045 -Georgia.ttf 86 - 17.0320 4.4730 52 R -22.5786 39.2597 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 53 < -13.6988 26.4279 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 54 4 -13.9266 29.8448 41.7500 -Georgia.ttf 86 - 17.0320 4.4730 55 8 -23.6274 28.7227 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 56 0 -13.6188 29.8910 32.6730 -Georgia.ttf 86 - 17.0320 4.4730 57 A -22.5391 41.5962 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 58 E -22.5931 34.7056 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 59 B -22.3248 32.7646 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 60 v -10.3207 30.7403 28.0000 -Georgia.ttf 86 - 17.0320 4.4730 61 k -26.7301 31.4820 44.3365 -Georgia.ttf 86 - 17.0320 4.4730 62 J -22.6722 29.0144 41.5962 -Georgia.ttf 86 - 17.0320 4.4730 63 U -22.9202 42.2189 41.5962 -Georgia.ttf 86 - 17.0320 4.4730 64 j -26.0796 16.3365 56.6766 -Georgia.ttf 86 - 17.0320 4.4730 65 ( -25.5937 16.5865 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 66 7 -12.6213 26.5818 40.5818 -Georgia.ttf 86 - 17.0320 4.4730 67 § -23.6956 22.5588 48.8094 -Georgia.ttf 86 - 17.0320 4.4730 68 $ -26.5950 27.3045 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 69 € -24.0027 36.6315 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 70 / -25.5830 23.2770 55.3045 -Georgia.ttf 86 - 17.0320 4.4730 71 C -23.8855 34.2950 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 72 * -23.6569 22.6315 19.9723 -Georgia.ttf 86 - 17.0320 4.4730 73 ” -25.5205 18.8041 15.1682 -Georgia.ttf 86 - 17.0320 4.4730 74 ? -23.7218 22.2277 42.0000 -Georgia.ttf 86 - 17.0320 4.4730 75 { -25.3453 21.2133 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 76 } -25.3361 21.2133 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 77 , 10.8441 9.5498 17.3047 -Georgia.ttf 86 - 17.0320 4.4730 78 I -22.0833 18.1351 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 79 ° -23.9331 18.4730 18.4730 -Georgia.ttf 86 - 17.0320 4.4730 80 K -22.9282 39.2597 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 81 H -22.6777 41.8878 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 82 q -12.3858 30.8903 43.1682 -Georgia.ttf 86 - 17.0320 4.4730 83 & -23.8448 39.2597 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 84 ’ -25.2921 8.3588 15.1682 -Georgia.ttf 86 - 17.0320 4.4730 85 [ -25.4072 15.1682 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 86 - -0.1613 17.0320 4.4730 -Georgia.ttf 86 - 17.0320 4.4730 87 Y -22.8377 38.9680 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 88 Q -23.8519 38.4953 52.5642 -Georgia.ttf 86 - 17.0320 4.4730 89 " -25.2425 17.7547 16.3365 -Georgia.ttf 86 - 17.0320 4.4730 90 ! -23.6249 7.9550 42.7644 -Georgia.ttf 86 - 17.0320 4.4730 91 x -10.2907 29.1682 28.0000 -Georgia.ttf 86 - 17.0320 4.4730 92 ) -25.1703 16.5865 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 93 = -5.4653 29.1682 14.4500 -Georgia.ttf 86 - 17.0320 4.4730 94 + -12.8917 29.4182 29.4182 -Georgia.ttf 86 - 17.0320 4.4730 95 X -22.6936 41.5962 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 96 » -8.7112 23.9998 23.2770 -Georgia.ttf 86 - 17.0320 4.4730 97 ' -25.2907 6.7867 16.3365 -Georgia.ttf 86 - 17.0320 4.4730 98 ¢ -18.5592 25.8241 44.7403 -Georgia.ttf 86 - 17.0320 4.4730 99 Z -22.8387 33.6912 40.4279 -Georgia.ttf 86 - 17.0320 4.4730 100 > -13.7242 26.4279 30.3365 -Georgia.ttf 86 - 17.0320 4.4730 101 ® -24.4797 50.3815 50.3815 -Georgia.ttf 86 - 17.0320 4.4730 102 © -24.2588 50.3815 50.3815 -Georgia.ttf 86 - 17.0320 4.4730 103 ] -25.2713 15.1682 52.4453 -Georgia.ttf 86 - 17.0320 4.4730 104 é -26.1795 24.6953 44.8092 -Georgia.ttf 86 - 17.0320 4.4730 105 z -10.1294 23.0270 28.0000 -Georgia.ttf 86 - 17.0320 4.4730 106 _ 23.0680 37.5498 2.7403 -Georgia.ttf 86 - 17.0320 4.4730 107 ¥ -22.5431 37.0770 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 1 t 3.5345 18.7851 38.0914 -Georgia.ttf 87 Y 38.9680 40.4279 2 h -4.1808 31.5237 44.3365 -Georgia.ttf 87 Y 38.9680 40.4279 3 a 11.3784 25.6635 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 4 n 11.0470 31.5237 29.1682 -Georgia.ttf 87 Y 38.9680 40.4279 5 P -0.1417 31.6236 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 6 o 11.0293 27.2318 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 7 e 11.0923 24.6953 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 8 : 12.4284 7.9550 28.4038 -Georgia.ttf 87 Y 38.9680 40.4279 9 r 11.1833 21.9550 29.1682 -Georgia.ttf 87 Y 38.9680 40.4279 10 l -3.7953 14.8955 44.3365 -Georgia.ttf 87 Y 38.9680 40.4279 11 i -3.1869 14.3538 43.8448 -Georgia.ttf 87 Y 38.9680 40.4279 12 1 8.6769 19.8912 31.5047 -Georgia.ttf 87 Y 38.9680 40.4279 13 | -2.6703 3.7547 55.3045 -Georgia.ttf 87 Y 38.9680 40.4279 14 N -0.0490 42.0727 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 15 f -4.0544 22.1088 44.3365 -Georgia.ttf 87 Y 38.9680 40.4279 16 g 11.0336 27.2356 42.0000 -Georgia.ttf 87 Y 38.9680 40.4279 17 d -3.9651 30.9403 45.5047 -Georgia.ttf 87 Y 38.9680 40.4279 18 W 0.0184 58.3365 40.6779 -Georgia.ttf 87 Y 38.9680 40.4279 19 s 11.1313 20.9867 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 20 c 11.3547 24.1536 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 21 u 11.5038 31.5237 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 22 3 8.9974 27.3045 41.7500 -Georgia.ttf 87 Y 38.9680 40.4279 23 ~ 19.2146 30.0403 10.4453 -Georgia.ttf 87 Y 38.9680 40.4279 24 # 5.7690 29.1872 35.0594 -Georgia.ttf 87 Y 38.9680 40.4279 25 O -1.1368 38.4953 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 26 ` -3.1010 11.6635 12.1362 -Georgia.ttf 87 Y 38.9680 40.4279 27 @ 1.6369 44.6903 47.8912 -Georgia.ttf 87 Y 38.9680 40.4279 28 F 0.1516 31.6736 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 29 S -1.1635 28.0000 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 30 p 11.4354 30.2638 42.0000 -Georgia.ttf 87 Y 38.9680 40.4279 31 “ -2.6000 18.8041 15.1682 -Georgia.ttf 87 Y 38.9680 40.4279 32 % -1.4926 41.5772 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 33 £ -1.1633 30.0448 41.5962 -Georgia.ttf 87 Y 38.9680 40.4279 34 . 32.8873 7.9550 7.9550 -Georgia.ttf 87 Y 38.9680 40.4279 35 2 8.9232 26.4090 31.5047 -Georgia.ttf 87 Y 38.9680 40.4279 36 5 9.9918 26.8318 40.5818 -Georgia.ttf 87 Y 38.9680 40.4279 37 m 11.5768 48.0867 29.1682 -Georgia.ttf 87 Y 38.9680 40.4279 38 V 0.1826 41.3045 40.6779 -Georgia.ttf 87 Y 38.9680 40.4279 39 6 -1.0787 27.7083 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 40 w 12.1561 44.3365 28.0000 -Georgia.ttf 87 Y 38.9680 40.4279 41 T 0.0070 36.3815 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 42 M 0.1728 49.8549 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 43 G -0.9656 39.4135 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 44 b -4.0737 31.0781 46.4730 -Georgia.ttf 87 Y 38.9680 40.4279 45 9 8.5896 27.7083 41.9500 -Georgia.ttf 87 Y 38.9680 40.4279 46 ; 12.2286 9.5498 38.2453 -Georgia.ttf 87 Y 38.9680 40.4279 47 D 0.2152 38.0914 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 48 L -0.4065 32.4730 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 49 y 12.5903 30.7403 40.8318 -Georgia.ttf 87 Y 38.9680 40.4279 50 ‘ -2.3479 8.3588 15.1682 -Georgia.ttf 87 Y 38.9680 40.4279 51 \ -2.7578 23.2770 55.3045 -Georgia.ttf 87 Y 38.9680 40.4279 52 R -0.1582 39.2597 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 53 < 9.4360 26.4279 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 54 4 8.7367 29.8448 41.7500 -Georgia.ttf 87 Y 38.9680 40.4279 55 8 -1.4458 28.7227 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 56 0 8.9095 29.8910 32.6730 -Georgia.ttf 87 Y 38.9680 40.4279 57 A -0.0514 41.5962 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 58 E -0.0050 34.7056 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 59 B -0.2614 32.7646 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 60 v 12.5827 30.7403 28.0000 -Georgia.ttf 87 Y 38.9680 40.4279 61 k -3.9577 31.4820 44.3365 -Georgia.ttf 87 Y 38.9680 40.4279 62 J -0.0246 29.0144 41.5962 -Georgia.ttf 87 Y 38.9680 40.4279 63 U 0.1232 42.2189 41.5962 -Georgia.ttf 87 Y 38.9680 40.4279 64 j -3.5536 16.3365 56.6766 -Georgia.ttf 87 Y 38.9680 40.4279 65 ( -2.6119 16.5865 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 66 7 10.1127 26.5818 40.5818 -Georgia.ttf 87 Y 38.9680 40.4279 67 § -1.2554 22.5588 48.8094 -Georgia.ttf 87 Y 38.9680 40.4279 68 $ -3.7856 27.3045 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 69 € -1.2067 36.6315 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 70 / -2.6854 23.2770 55.3045 -Georgia.ttf 87 Y 38.9680 40.4279 71 C -1.1438 34.2950 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 72 * -0.8331 22.6315 19.9723 -Georgia.ttf 87 Y 38.9680 40.4279 73 ” -2.7278 18.8041 15.1682 -Georgia.ttf 87 Y 38.9680 40.4279 74 ? -0.9115 22.2277 42.0000 -Georgia.ttf 87 Y 38.9680 40.4279 75 { -2.8618 21.2133 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 76 } -2.5966 21.2133 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 77 , 33.6005 9.5498 17.3047 -Georgia.ttf 87 Y 38.9680 40.4279 78 I -0.0111 18.1351 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 79 ° -1.2206 18.4730 18.4730 -Georgia.ttf 87 Y 38.9680 40.4279 80 K 0.2045 39.2597 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 81 H 0.1756 41.8878 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 82 q 10.1188 30.8903 43.1682 -Georgia.ttf 87 Y 38.9680 40.4279 83 & -1.3071 39.2597 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 84 ’ -2.8107 8.3588 15.1682 -Georgia.ttf 87 Y 38.9680 40.4279 85 [ -2.5734 15.1682 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 86 - 22.8290 17.0320 4.4730 -Georgia.ttf 87 Y 38.9680 40.4279 87 Y 0.2148 38.9680 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 88 Q -1.0059 38.4953 52.5642 -Georgia.ttf 87 Y 38.9680 40.4279 89 " -2.6846 17.7547 16.3365 -Georgia.ttf 87 Y 38.9680 40.4279 90 ! -1.2952 7.9550 42.7644 -Georgia.ttf 87 Y 38.9680 40.4279 91 x 12.4773 29.1682 28.0000 -Georgia.ttf 87 Y 38.9680 40.4279 92 ) -2.6789 16.5865 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 93 = 17.4061 29.1682 14.4500 -Georgia.ttf 87 Y 38.9680 40.4279 94 + 9.6181 29.4182 29.4182 -Georgia.ttf 87 Y 38.9680 40.4279 95 X 0.0424 41.5962 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 96 » 13.6793 23.9998 23.2770 -Georgia.ttf 87 Y 38.9680 40.4279 97 ' -3.2645 6.7867 16.3365 -Georgia.ttf 87 Y 38.9680 40.4279 98 ¢ 3.9569 25.8241 44.7403 -Georgia.ttf 87 Y 38.9680 40.4279 99 Z -0.2545 33.6912 40.4279 -Georgia.ttf 87 Y 38.9680 40.4279 100 > 9.5102 26.4279 30.3365 -Georgia.ttf 87 Y 38.9680 40.4279 101 ® -1.6693 50.3815 50.3815 -Georgia.ttf 87 Y 38.9680 40.4279 102 © -1.5689 50.3815 50.3815 -Georgia.ttf 87 Y 38.9680 40.4279 103 ] -2.6865 15.1682 52.4453 -Georgia.ttf 87 Y 38.9680 40.4279 104 é -2.8776 24.6953 44.8092 -Georgia.ttf 87 Y 38.9680 40.4279 105 z 12.4196 23.0270 28.0000 -Georgia.ttf 87 Y 38.9680 40.4279 106 _ 45.3067 37.5498 2.7403 -Georgia.ttf 87 Y 38.9680 40.4279 107 ¥ -0.0353 37.0770 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 1 t 4.7216 18.7851 38.0914 -Georgia.ttf 88 Q 38.4953 52.5642 2 h -3.1042 31.5237 44.3365 -Georgia.ttf 88 Q 38.4953 52.5642 3 a 12.1663 25.6635 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 4 n 12.2477 31.5237 29.1682 -Georgia.ttf 88 Q 38.4953 52.5642 5 P 1.0881 31.6236 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 6 o 12.3303 27.2318 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 7 e 12.4027 24.6953 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 8 : 13.7959 7.9550 28.4038 -Georgia.ttf 88 Q 38.4953 52.5642 9 r 12.6140 21.9550 29.1682 -Georgia.ttf 88 Q 38.4953 52.5642 10 l -2.4578 14.8955 44.3365 -Georgia.ttf 88 Q 38.4953 52.5642 11 i -2.3441 14.3538 43.8448 -Georgia.ttf 88 Q 38.4953 52.5642 12 1 9.9472 19.8912 31.5047 -Georgia.ttf 88 Q 38.4953 52.5642 13 | -1.4497 3.7547 55.3045 -Georgia.ttf 88 Q 38.4953 52.5642 14 N 1.5321 42.0727 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 15 f -2.4179 22.1088 44.3365 -Georgia.ttf 88 Q 38.4953 52.5642 16 g 12.2412 27.2356 42.0000 -Georgia.ttf 88 Q 38.4953 52.5642 17 d -3.0180 30.9403 45.5047 -Georgia.ttf 88 Q 38.4953 52.5642 18 W 1.2137 58.3365 40.6779 -Georgia.ttf 88 Q 38.4953 52.5642 19 s 12.4194 20.9867 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 20 c 12.5331 24.1536 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 21 u 12.0608 31.5237 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 22 3 9.9896 27.3045 41.7500 -Georgia.ttf 88 Q 38.4953 52.5642 23 ~ 20.2861 30.0403 10.4453 -Georgia.ttf 88 Q 38.4953 52.5642 24 # 6.5340 29.1872 35.0594 -Georgia.ttf 88 Q 38.4953 52.5642 25 O 0.0488 38.4953 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 26 ` -1.8363 11.6635 12.1362 -Georgia.ttf 88 Q 38.4953 52.5642 27 @ 2.8381 44.6903 47.8912 -Georgia.ttf 88 Q 38.4953 52.5642 28 F 1.0464 31.6736 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 29 S -0.1672 28.0000 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 30 p 12.5734 30.2638 42.0000 -Georgia.ttf 88 Q 38.4953 52.5642 31 “ -1.6852 18.8041 15.1682 -Georgia.ttf 88 Q 38.4953 52.5642 32 % -0.2404 41.5772 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 33 £ 0.0584 30.0448 41.5962 -Georgia.ttf 88 Q 38.4953 52.5642 34 . 33.7822 7.9550 7.9550 -Georgia.ttf 88 Q 38.4953 52.5642 35 2 9.7439 26.4090 31.5047 -Georgia.ttf 88 Q 38.4953 52.5642 36 5 11.5067 26.8318 40.5818 -Georgia.ttf 88 Q 38.4953 52.5642 37 m 12.6007 48.0867 29.1682 -Georgia.ttf 88 Q 38.4953 52.5642 38 V 1.5825 41.3045 40.6779 -Georgia.ttf 88 Q 38.4953 52.5642 39 6 0.0321 27.7083 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 40 w 13.9961 44.3365 28.0000 -Georgia.ttf 88 Q 38.4953 52.5642 41 T 1.2994 36.3815 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 42 M 1.2503 49.8549 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 43 G 0.0532 39.4135 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 44 b -2.8812 31.0781 46.4730 -Georgia.ttf 88 Q 38.4953 52.5642 45 9 10.1632 27.7083 41.9500 -Georgia.ttf 88 Q 38.4953 52.5642 46 ; 13.5545 9.5498 38.2453 -Georgia.ttf 88 Q 38.4953 52.5642 47 D 1.5674 38.0914 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 48 L 1.0000 32.4730 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 49 y 13.4251 30.7403 40.8318 -Georgia.ttf 88 Q 38.4953 52.5642 50 ‘ -1.4208 8.3588 15.1682 -Georgia.ttf 88 Q 38.4953 52.5642 51 \ -1.7087 23.2770 55.3045 -Georgia.ttf 88 Q 38.4953 52.5642 52 R 1.2178 39.2597 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 53 < 10.0868 26.4279 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 54 4 9.8212 29.8448 41.7500 -Georgia.ttf 88 Q 38.4953 52.5642 55 8 -0.1416 28.7227 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 56 0 10.0702 29.8910 32.6730 -Georgia.ttf 88 Q 38.4953 52.5642 57 A 1.4083 41.5962 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 58 E 1.2099 34.7056 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 59 B 0.8753 32.7646 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 60 v 13.8147 30.7403 28.0000 -Georgia.ttf 88 Q 38.4953 52.5642 61 k -2.7060 31.4820 44.3365 -Georgia.ttf 88 Q 38.4953 52.5642 62 J 0.9766 29.0144 41.5962 -Georgia.ttf 88 Q 38.4953 52.5642 63 U 1.4978 42.2189 41.5962 -Georgia.ttf 88 Q 38.4953 52.5642 64 j -2.3260 16.3365 56.6766 -Georgia.ttf 88 Q 38.4953 52.5642 65 ( -1.4702 16.5865 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 66 7 11.1988 26.5818 40.5818 -Georgia.ttf 88 Q 38.4953 52.5642 67 § -0.0501 22.5588 48.8094 -Georgia.ttf 88 Q 38.4953 52.5642 68 $ -2.4984 27.3045 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 69 € -0.0609 36.6315 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 70 / -1.6807 23.2770 55.3045 -Georgia.ttf 88 Q 38.4953 52.5642 71 C 0.2099 34.2950 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 72 * 0.0874 22.6315 19.9723 -Georgia.ttf 88 Q 38.4953 52.5642 73 ” -1.6392 18.8041 15.1682 -Georgia.ttf 88 Q 38.4953 52.5642 74 ? 0.2103 22.2277 42.0000 -Georgia.ttf 88 Q 38.4953 52.5642 75 { -1.4423 21.2133 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 76 } -1.5739 21.2133 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 77 , 34.4584 9.5498 17.3047 -Georgia.ttf 88 Q 38.4953 52.5642 78 I 1.2517 18.1351 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 79 ° 0.1867 18.4730 18.4730 -Georgia.ttf 88 Q 38.4953 52.5642 80 K 1.1742 39.2597 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 81 H 1.1924 41.8878 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 82 q 11.3027 30.8903 43.1682 -Georgia.ttf 88 Q 38.4953 52.5642 83 & -0.2452 39.2597 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 84 ’ -1.5248 8.3588 15.1682 -Georgia.ttf 88 Q 38.4953 52.5642 85 [ -1.6350 15.1682 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 86 - 23.7283 17.0320 4.4730 -Georgia.ttf 88 Q 38.4953 52.5642 87 Y 1.0310 38.9680 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 88 Q -0.3379 38.4953 52.5642 -Georgia.ttf 88 Q 38.4953 52.5642 89 " -1.7379 17.7547 16.3365 -Georgia.ttf 88 Q 38.4953 52.5642 90 ! 0.1792 7.9550 42.7644 -Georgia.ttf 88 Q 38.4953 52.5642 91 x 13.3482 29.1682 28.0000 -Georgia.ttf 88 Q 38.4953 52.5642 92 ) -1.6782 16.5865 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 93 = 18.3966 29.1682 14.4500 -Georgia.ttf 88 Q 38.4953 52.5642 94 + 10.9128 29.4182 29.4182 -Georgia.ttf 88 Q 38.4953 52.5642 95 X 0.9662 41.5962 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 96 » 15.0607 23.9998 23.2770 -Georgia.ttf 88 Q 38.4953 52.5642 97 ' -1.6054 6.7867 16.3365 -Georgia.ttf 88 Q 38.4953 52.5642 98 ¢ 5.2034 25.8241 44.7403 -Georgia.ttf 88 Q 38.4953 52.5642 99 Z 1.1724 33.6912 40.4279 -Georgia.ttf 88 Q 38.4953 52.5642 100 > 10.5227 26.4279 30.3365 -Georgia.ttf 88 Q 38.4953 52.5642 101 ® -0.3435 50.3815 50.3815 -Georgia.ttf 88 Q 38.4953 52.5642 102 © -0.9114 50.3815 50.3815 -Georgia.ttf 88 Q 38.4953 52.5642 103 ] -1.4791 15.1682 52.4453 -Georgia.ttf 88 Q 38.4953 52.5642 104 é -1.9980 24.6953 44.8092 -Georgia.ttf 88 Q 38.4953 52.5642 105 z 13.5437 23.0270 28.0000 -Georgia.ttf 88 Q 38.4953 52.5642 106 _ 46.9380 37.5498 2.7403 -Georgia.ttf 88 Q 38.4953 52.5642 107 ¥ 1.2361 37.0770 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 1 t 6.4950 18.7851 38.0914 -Georgia.ttf 89 " 17.7547 16.3365 2 h -1.6725 31.5237 44.3365 -Georgia.ttf 89 " 17.7547 16.3365 3 a 13.9685 25.6635 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 4 n 14.0070 31.5237 29.1682 -Georgia.ttf 89 " 17.7547 16.3365 5 P 2.6092 31.6236 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 6 o 14.2553 27.2318 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 7 e 13.8671 24.6953 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 8 : 14.7047 7.9550 28.4038 -Georgia.ttf 89 " 17.7547 16.3365 9 r 14.0038 21.9550 29.1682 -Georgia.ttf 89 " 17.7547 16.3365 10 l -1.3004 14.8955 44.3365 -Georgia.ttf 89 " 17.7547 16.3365 11 i -0.7637 14.3538 43.8448 -Georgia.ttf 89 " 17.7547 16.3365 12 1 11.8017 19.8912 31.5047 -Georgia.ttf 89 " 17.7547 16.3365 13 | -0.0290 3.7547 55.3045 -Georgia.ttf 89 " 17.7547 16.3365 14 N 2.3992 42.0727 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 15 f -1.1655 22.1088 44.3365 -Georgia.ttf 89 " 17.7547 16.3365 16 g 13.9617 27.2356 42.0000 -Georgia.ttf 89 " 17.7547 16.3365 17 d -1.3486 30.9403 45.5047 -Georgia.ttf 89 " 17.7547 16.3365 18 W 2.5772 58.3365 40.6779 -Georgia.ttf 89 " 17.7547 16.3365 19 s 13.9973 20.9867 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 20 c 13.8577 24.1536 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 21 u 14.0000 31.5237 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 22 3 11.5746 27.3045 41.7500 -Georgia.ttf 89 " 17.7547 16.3365 23 ~ 21.9837 30.0403 10.4453 -Georgia.ttf 89 " 17.7547 16.3365 24 # 7.8858 29.1872 35.0594 -Georgia.ttf 89 " 17.7547 16.3365 25 O 1.5429 38.4953 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 26 ` -0.3429 11.6635 12.1362 -Georgia.ttf 89 " 17.7547 16.3365 27 @ 4.5269 44.6903 47.8912 -Georgia.ttf 89 " 17.7547 16.3365 28 F 2.8274 31.6736 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 29 S 1.5978 28.0000 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 30 p 13.9556 30.2638 42.0000 -Georgia.ttf 89 " 17.7547 16.3365 31 “ -0.1766 18.8041 15.1682 -Georgia.ttf 89 " 17.7547 16.3365 32 % 1.5007 41.5772 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 33 £ 1.5623 30.0448 41.5962 -Georgia.ttf 89 " 17.7547 16.3365 34 . 35.7780 7.9550 7.9550 -Georgia.ttf 89 " 17.7547 16.3365 35 2 11.6296 26.4090 31.5047 -Georgia.ttf 89 " 17.7547 16.3365 36 5 12.9681 26.8318 40.5818 -Georgia.ttf 89 " 17.7547 16.3365 37 m 14.1543 48.0867 29.1682 -Georgia.ttf 89 " 17.7547 16.3365 38 V 2.7320 41.3045 40.6779 -Georgia.ttf 89 " 17.7547 16.3365 39 6 1.2356 27.7083 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 40 w 15.0877 44.3365 28.0000 -Georgia.ttf 89 " 17.7547 16.3365 41 T 2.6844 36.3815 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 42 M 2.8177 49.8549 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 43 G 1.7268 39.4135 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 44 b -1.0569 31.0781 46.4730 -Georgia.ttf 89 " 17.7547 16.3365 45 9 11.4638 27.7083 41.9500 -Georgia.ttf 89 " 17.7547 16.3365 46 ; 15.4454 9.5498 38.2453 -Georgia.ttf 89 " 17.7547 16.3365 47 D 2.7079 38.0914 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 48 L 2.7039 32.4730 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 49 y 15.0843 30.7403 40.8318 -Georgia.ttf 89 " 17.7547 16.3365 50 ‘ 0.2172 8.3588 15.1682 -Georgia.ttf 89 " 17.7547 16.3365 51 \ -0.0931 23.2770 55.3045 -Georgia.ttf 89 " 17.7547 16.3365 52 R 2.4923 39.2597 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 53 < 12.1049 26.4279 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 54 4 11.7447 29.8448 41.7500 -Georgia.ttf 89 " 17.7547 16.3365 55 8 1.9647 28.7227 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 56 0 11.5472 29.8910 32.6730 -Georgia.ttf 89 " 17.7547 16.3365 57 A 2.8177 41.5962 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 58 E 2.6903 34.7056 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 59 B 2.5920 32.7646 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 60 v 15.2456 30.7403 28.0000 -Georgia.ttf 89 " 17.7547 16.3365 61 k -1.1748 31.4820 44.3365 -Georgia.ttf 89 " 17.7547 16.3365 62 J 2.6806 29.0144 41.5962 -Georgia.ttf 89 " 17.7547 16.3365 63 U 2.7110 42.2189 41.5962 -Georgia.ttf 89 " 17.7547 16.3365 64 j -0.7220 16.3365 56.6766 -Georgia.ttf 89 " 17.7547 16.3365 65 ( 0.1877 16.5865 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 66 7 12.6569 26.5818 40.5818 -Georgia.ttf 89 " 17.7547 16.3365 67 § 1.5161 22.5588 48.8094 -Georgia.ttf 89 " 17.7547 16.3365 68 $ -0.9632 27.3045 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 69 € 1.6310 36.6315 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 70 / -0.1154 23.2770 55.3045 -Georgia.ttf 89 " 17.7547 16.3365 71 C 1.6072 34.2950 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 72 * 1.6522 22.6315 19.9723 -Georgia.ttf 89 " 17.7547 16.3365 73 ” 0.1190 18.8041 15.1682 -Georgia.ttf 89 " 17.7547 16.3365 74 ? 1.4181 22.2277 42.0000 -Georgia.ttf 89 " 17.7547 16.3365 75 { 0.0045 21.2133 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 76 } 0.1333 21.2133 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 77 , 36.0249 9.5498 17.3047 -Georgia.ttf 89 " 17.7547 16.3365 78 I 2.6147 18.1351 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 79 ° 1.7659 18.4730 18.4730 -Georgia.ttf 89 " 17.7547 16.3365 80 K 2.4226 39.2597 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 81 H 2.4534 41.8878 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 82 q 12.8345 30.8903 43.1682 -Georgia.ttf 89 " 17.7547 16.3365 83 & 1.7495 39.2597 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 84 ’ 0.2317 8.3588 15.1682 -Georgia.ttf 89 " 17.7547 16.3365 85 [ -0.0574 15.1682 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 86 - 25.3254 17.0320 4.4730 -Georgia.ttf 89 " 17.7547 16.3365 87 Y 2.8715 38.9680 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 88 Q 1.4293 38.4953 52.5642 -Georgia.ttf 89 " 17.7547 16.3365 89 " -0.1186 17.7547 16.3365 -Georgia.ttf 89 " 17.7547 16.3365 90 ! 1.7806 7.9550 42.7644 -Georgia.ttf 89 " 17.7547 16.3365 91 x 15.3295 29.1682 28.0000 -Georgia.ttf 89 " 17.7547 16.3365 92 ) 0.1043 16.5865 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 93 = 20.0450 29.1682 14.4500 -Georgia.ttf 89 " 17.7547 16.3365 94 + 12.6944 29.4182 29.4182 -Georgia.ttf 89 " 17.7547 16.3365 95 X 2.8594 41.5962 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 96 » 16.5567 23.9998 23.2770 -Georgia.ttf 89 " 17.7547 16.3365 97 ' 0.0341 6.7867 16.3365 -Georgia.ttf 89 " 17.7547 16.3365 98 ¢ 6.8636 25.8241 44.7403 -Georgia.ttf 89 " 17.7547 16.3365 99 Z 2.9169 33.6912 40.4279 -Georgia.ttf 89 " 17.7547 16.3365 100 > 11.6764 26.4279 30.3365 -Georgia.ttf 89 " 17.7547 16.3365 101 ® 1.2164 50.3815 50.3815 -Georgia.ttf 89 " 17.7547 16.3365 102 © 1.0497 50.3815 50.3815 -Georgia.ttf 89 " 17.7547 16.3365 103 ] -0.0412 15.1682 52.4453 -Georgia.ttf 89 " 17.7547 16.3365 104 é -0.4727 24.6953 44.8092 -Georgia.ttf 89 " 17.7547 16.3365 105 z 15.3651 23.0270 28.0000 -Georgia.ttf 89 " 17.7547 16.3365 106 _ 48.1496 37.5498 2.7403 -Georgia.ttf 89 " 17.7547 16.3365 107 ¥ 2.7907 37.0770 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 1 t 4.6489 18.7851 38.0914 -Georgia.ttf 90 ! 7.9550 42.7644 2 h -2.7365 31.5237 44.3365 -Georgia.ttf 90 ! 7.9550 42.7644 3 a 12.5234 25.6635 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 4 n 12.4307 31.5237 29.1682 -Georgia.ttf 90 ! 7.9550 42.7644 5 P 1.1863 31.6236 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 6 o 12.5470 27.2318 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 7 e 12.2940 24.6953 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 8 : 13.5642 7.9550 28.4038 -Georgia.ttf 90 ! 7.9550 42.7644 9 r 12.4279 21.9550 29.1682 -Georgia.ttf 90 ! 7.9550 42.7644 10 l -2.7288 14.8955 44.3365 -Georgia.ttf 90 ! 7.9550 42.7644 11 i -2.3826 14.3538 43.8448 -Georgia.ttf 90 ! 7.9550 42.7644 12 1 10.1531 19.8912 31.5047 -Georgia.ttf 90 ! 7.9550 42.7644 13 | -1.7820 3.7547 55.3045 -Georgia.ttf 90 ! 7.9550 42.7644 14 N 1.1035 42.0727 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 15 f -2.8242 22.1088 44.3365 -Georgia.ttf 90 ! 7.9550 42.7644 16 g 12.4279 27.2356 42.0000 -Georgia.ttf 90 ! 7.9550 42.7644 17 d -2.8030 30.9403 45.5047 -Georgia.ttf 90 ! 7.9550 42.7644 18 W 1.1742 58.3365 40.6779 -Georgia.ttf 90 ! 7.9550 42.7644 19 s 12.5059 20.9867 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 20 c 12.7236 24.1536 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 21 u 12.1674 31.5237 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 22 3 10.1117 27.3045 41.7500 -Georgia.ttf 90 ! 7.9550 42.7644 23 ~ 20.6012 30.0403 10.4453 -Georgia.ttf 90 ! 7.9550 42.7644 24 # 6.3516 29.1872 35.0594 -Georgia.ttf 90 ! 7.9550 42.7644 25 O 0.0000 38.4953 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 26 ` -2.0683 11.6635 12.1362 -Georgia.ttf 90 ! 7.9550 42.7644 27 @ 2.8167 44.6903 47.8912 -Georgia.ttf 90 ! 7.9550 42.7644 28 F 1.2164 31.6736 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 29 S -0.2238 28.0000 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 30 p 12.4888 30.2638 42.0000 -Georgia.ttf 90 ! 7.9550 42.7644 31 “ -1.6440 18.8041 15.1682 -Georgia.ttf 90 ! 7.9550 42.7644 32 % 0.1774 41.5772 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 33 £ 0.1263 30.0448 41.5962 -Georgia.ttf 90 ! 7.9550 42.7644 34 . 34.0428 7.9550 7.9550 -Georgia.ttf 90 ! 7.9550 42.7644 35 2 9.9932 26.4090 31.5047 -Georgia.ttf 90 ! 7.9550 42.7644 36 5 11.2527 26.8318 40.5818 -Georgia.ttf 90 ! 7.9550 42.7644 37 m 12.5874 48.0867 29.1682 -Georgia.ttf 90 ! 7.9550 42.7644 38 V 1.4042 41.3045 40.6779 -Georgia.ttf 90 ! 7.9550 42.7644 39 6 -0.1228 27.7083 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 40 w 13.4831 44.3365 28.0000 -Georgia.ttf 90 ! 7.9550 42.7644 41 T 1.0871 36.3815 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 42 M 1.2040 49.8549 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 43 G 0.0455 39.4135 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 44 b -2.8568 31.0781 46.4730 -Georgia.ttf 90 ! 7.9550 42.7644 45 9 10.2188 27.7083 41.9500 -Georgia.ttf 90 ! 7.9550 42.7644 46 ; 13.6223 9.5498 38.2453 -Georgia.ttf 90 ! 7.9550 42.7644 47 D 1.0909 38.0914 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 48 L 1.1395 32.4730 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 49 y 13.4733 30.7403 40.8318 -Georgia.ttf 90 ! 7.9550 42.7644 50 ‘ -1.4441 8.3588 15.1682 -Georgia.ttf 90 ! 7.9550 42.7644 51 \ -1.6138 23.2770 55.3045 -Georgia.ttf 90 ! 7.9550 42.7644 52 R 1.2911 39.2597 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 53 < 10.1283 26.4279 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 54 4 10.1095 29.8448 41.7500 -Georgia.ttf 90 ! 7.9550 42.7644 55 8 0.1553 28.7227 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 56 0 10.0498 29.8910 32.6730 -Georgia.ttf 90 ! 7.9550 42.7644 57 A 1.2452 41.5962 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 58 E 0.9121 34.7056 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 59 B 1.1028 32.7646 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 60 v 13.5462 30.7403 28.0000 -Georgia.ttf 90 ! 7.9550 42.7644 61 k -2.6861 31.4820 44.3365 -Georgia.ttf 90 ! 7.9550 42.7644 62 J 0.9142 29.0144 41.5962 -Georgia.ttf 90 ! 7.9550 42.7644 63 U 0.9997 42.2189 41.5962 -Georgia.ttf 90 ! 7.9550 42.7644 64 j -2.2487 16.3365 56.6766 -Georgia.ttf 90 ! 7.9550 42.7644 65 ( -1.7431 16.5865 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 66 7 11.0324 26.5818 40.5818 -Georgia.ttf 90 ! 7.9550 42.7644 67 § 0.2230 22.5588 48.8094 -Georgia.ttf 90 ! 7.9550 42.7644 68 $ -2.2720 27.3045 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 69 € -0.1488 36.6315 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 70 / -1.6638 23.2770 55.3045 -Georgia.ttf 90 ! 7.9550 42.7644 71 C -0.0357 34.2950 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 72 * -0.0286 22.6315 19.9723 -Georgia.ttf 90 ! 7.9550 42.7644 73 ” -1.4920 18.8041 15.1682 -Georgia.ttf 90 ! 7.9550 42.7644 74 ? -0.0812 22.2277 42.0000 -Georgia.ttf 90 ! 7.9550 42.7644 75 { -1.5231 21.2133 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 76 } -2.0006 21.2133 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 77 , 34.6179 9.5498 17.3047 -Georgia.ttf 90 ! 7.9550 42.7644 78 I 1.0486 18.1351 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 79 ° 0.0045 18.4730 18.4730 -Georgia.ttf 90 ! 7.9550 42.7644 80 K 1.3362 39.2597 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 81 H 1.1859 41.8878 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 82 q 11.2597 30.8903 43.1682 -Georgia.ttf 90 ! 7.9550 42.7644 83 & -0.0138 39.2597 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 84 ’ -1.4993 8.3588 15.1682 -Georgia.ttf 90 ! 7.9550 42.7644 85 [ -1.6533 15.1682 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 86 - 23.8043 17.0320 4.4730 -Georgia.ttf 90 ! 7.9550 42.7644 87 Y 1.1242 38.9680 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 88 Q -0.1131 38.4953 52.5642 -Georgia.ttf 90 ! 7.9550 42.7644 89 " -1.4826 17.7547 16.3365 -Georgia.ttf 90 ! 7.9550 42.7644 90 ! 0.0500 7.9550 42.7644 -Georgia.ttf 90 ! 7.9550 42.7644 91 x 13.5192 29.1682 28.0000 -Georgia.ttf 90 ! 7.9550 42.7644 92 ) -1.7152 16.5865 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 93 = 18.2866 29.1682 14.4500 -Georgia.ttf 90 ! 7.9550 42.7644 94 + 10.6672 29.4182 29.4182 -Georgia.ttf 90 ! 7.9550 42.7644 95 X 1.2452 41.5962 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 96 » 14.9644 23.9998 23.2770 -Georgia.ttf 90 ! 7.9550 42.7644 97 ' -1.6592 6.7867 16.3365 -Georgia.ttf 90 ! 7.9550 42.7644 98 ¢ 5.1335 25.8241 44.7403 -Georgia.ttf 90 ! 7.9550 42.7644 99 Z 1.1682 33.6912 40.4279 -Georgia.ttf 90 ! 7.9550 42.7644 100 > 10.3694 26.4279 30.3365 -Georgia.ttf 90 ! 7.9550 42.7644 101 ® -0.4038 50.3815 50.3815 -Georgia.ttf 90 ! 7.9550 42.7644 102 © -0.4753 50.3815 50.3815 -Georgia.ttf 90 ! 7.9550 42.7644 103 ] -1.7376 15.1682 52.4453 -Georgia.ttf 90 ! 7.9550 42.7644 104 é -2.2868 24.6953 44.8092 -Georgia.ttf 90 ! 7.9550 42.7644 105 z 13.4758 23.0270 28.0000 -Georgia.ttf 90 ! 7.9550 42.7644 106 _ 46.5567 37.5498 2.7403 -Georgia.ttf 90 ! 7.9550 42.7644 107 ¥ 1.1682 37.0770 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 1 t -8.9311 18.7851 38.0914 -Georgia.ttf 91 x 29.1682 28.0000 2 h -16.3456 31.5237 44.3365 -Georgia.ttf 91 x 29.1682 28.0000 3 a -1.3800 25.6635 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 4 n -0.8828 31.5237 29.1682 -Georgia.ttf 91 x 29.1682 28.0000 5 P -12.5343 31.6236 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 6 o -0.6336 27.2318 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 7 e -1.3740 24.6953 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 8 : 0.0861 7.9550 28.4038 -Georgia.ttf 91 x 29.1682 28.0000 9 r -0.9916 21.9550 29.1682 -Georgia.ttf 91 x 29.1682 28.0000 10 l -16.2966 14.8955 44.3365 -Georgia.ttf 91 x 29.1682 28.0000 11 i -15.8129 14.3538 43.8448 -Georgia.ttf 91 x 29.1682 28.0000 12 1 -3.6201 19.8912 31.5047 -Georgia.ttf 91 x 29.1682 28.0000 13 | -15.2897 3.7547 55.3045 -Georgia.ttf 91 x 29.1682 28.0000 14 N -12.4255 42.0727 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 15 f -16.2284 22.1088 44.3365 -Georgia.ttf 91 x 29.1682 28.0000 16 g -1.2494 27.2356 42.0000 -Georgia.ttf 91 x 29.1682 28.0000 17 d -16.5460 30.9403 45.5047 -Georgia.ttf 91 x 29.1682 28.0000 18 W -12.3418 58.3365 40.6779 -Georgia.ttf 91 x 29.1682 28.0000 19 s -1.2536 20.9867 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 20 c -1.2441 24.1536 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 21 u -1.0732 31.5237 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 22 3 -3.4736 27.3045 41.7500 -Georgia.ttf 91 x 29.1682 28.0000 23 ~ 6.5442 30.0403 10.4453 -Georgia.ttf 91 x 29.1682 28.0000 24 # -7.4618 29.1872 35.0594 -Georgia.ttf 91 x 29.1682 28.0000 25 O -13.3645 38.4953 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 26 ` -16.0520 11.6635 12.1362 -Georgia.ttf 91 x 29.1682 28.0000 27 @ -10.8688 44.6903 47.8912 -Georgia.ttf 91 x 29.1682 28.0000 28 F -12.5688 31.6736 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 29 S -13.5402 28.0000 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 30 p -0.9423 30.2638 42.0000 -Georgia.ttf 91 x 29.1682 28.0000 31 “ -14.9849 18.8041 15.1682 -Georgia.ttf 91 x 29.1682 28.0000 32 % -13.6801 41.5772 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 33 £ -13.6313 30.0448 41.5962 -Georgia.ttf 91 x 29.1682 28.0000 34 . 20.4132 7.9550 7.9550 -Georgia.ttf 91 x 29.1682 28.0000 35 2 -3.5103 26.4090 31.5047 -Georgia.ttf 91 x 29.1682 28.0000 36 5 -2.1508 26.8318 40.5818 -Georgia.ttf 91 x 29.1682 28.0000 37 m -1.2470 48.0867 29.1682 -Georgia.ttf 91 x 29.1682 28.0000 38 V -12.5623 41.3045 40.6779 -Georgia.ttf 91 x 29.1682 28.0000 39 6 -13.6031 27.7083 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 40 w -0.1071 44.3365 28.0000 -Georgia.ttf 91 x 29.1682 28.0000 41 T -12.4395 36.3815 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 42 M -12.6754 49.8549 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 43 G -13.5063 39.4135 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 44 b -16.4212 31.0781 46.4730 -Georgia.ttf 91 x 29.1682 28.0000 45 9 -3.7553 27.7083 41.9500 -Georgia.ttf 91 x 29.1682 28.0000 46 ; -0.0319 9.5498 38.2453 -Georgia.ttf 91 x 29.1682 28.0000 47 D -12.5053 38.0914 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 48 L -12.4275 32.4730 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 49 y -0.0500 30.7403 40.8318 -Georgia.ttf 91 x 29.1682 28.0000 50 ‘ -15.0968 8.3588 15.1682 -Georgia.ttf 91 x 29.1682 28.0000 51 \ -14.8146 23.2770 55.3045 -Georgia.ttf 91 x 29.1682 28.0000 52 R -12.0938 39.2597 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 53 < -3.3404 26.4279 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 54 4 -3.6758 29.8448 41.7500 -Georgia.ttf 91 x 29.1682 28.0000 55 8 -13.4436 28.7227 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 56 0 -3.4855 29.8910 32.6730 -Georgia.ttf 91 x 29.1682 28.0000 57 A -12.3467 41.5962 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 58 E -12.2208 34.7056 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 59 B -12.4664 32.7646 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 60 v -0.4302 30.7403 28.0000 -Georgia.ttf 91 x 29.1682 28.0000 61 k -16.3520 31.4820 44.3365 -Georgia.ttf 91 x 29.1682 28.0000 62 J -12.3760 29.0144 41.5962 -Georgia.ttf 91 x 29.1682 28.0000 63 U -12.4279 42.2189 41.5962 -Georgia.ttf 91 x 29.1682 28.0000 64 j -15.7596 16.3365 56.6766 -Georgia.ttf 91 x 29.1682 28.0000 65 ( -14.9363 16.5865 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 66 7 -2.0551 26.5818 40.5818 -Georgia.ttf 91 x 29.1682 28.0000 67 § -13.6953 22.5588 48.8094 -Georgia.ttf 91 x 29.1682 28.0000 68 $ -16.1194 27.3045 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 69 € -13.8289 36.6315 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 70 / -15.3091 23.2770 55.3045 -Georgia.ttf 91 x 29.1682 28.0000 71 C -13.3148 34.2950 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 72 * -13.6031 22.6315 19.9723 -Georgia.ttf 91 x 29.1682 28.0000 73 ” -14.8869 18.8041 15.1682 -Georgia.ttf 91 x 29.1682 28.0000 74 ? -13.9900 22.2277 42.0000 -Georgia.ttf 91 x 29.1682 28.0000 75 { -15.3438 21.2133 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 76 } -14.9545 21.2133 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 77 , 20.8279 9.5498 17.3047 -Georgia.ttf 91 x 29.1682 28.0000 78 I -12.6944 18.1351 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 79 ° -13.6699 18.4730 18.4730 -Georgia.ttf 91 x 29.1682 28.0000 80 K -12.3051 39.2597 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 81 H -12.4811 41.8878 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 82 q -2.4631 30.8903 43.1682 -Georgia.ttf 91 x 29.1682 28.0000 83 & -13.5833 39.2597 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 84 ’ -15.0473 8.3588 15.1682 -Georgia.ttf 91 x 29.1682 28.0000 85 [ -15.0486 15.1682 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 86 - 10.1184 17.0320 4.4730 -Georgia.ttf 91 x 29.1682 28.0000 87 Y -12.5336 38.9680 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 88 Q -13.4157 38.4953 52.5642 -Georgia.ttf 91 x 29.1682 28.0000 89 " -14.9642 17.7547 16.3365 -Georgia.ttf 91 x 29.1682 28.0000 90 ! -13.6269 7.9550 42.7644 -Georgia.ttf 91 x 29.1682 28.0000 91 x -0.1010 29.1682 28.0000 -Georgia.ttf 91 x 29.1682 28.0000 92 ) -15.2855 16.5865 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 93 = 4.7971 29.1682 14.4500 -Georgia.ttf 91 x 29.1682 28.0000 94 + -2.4369 29.4182 29.4182 -Georgia.ttf 91 x 29.1682 28.0000 95 X -12.4622 41.5962 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 96 » 1.3343 23.9998 23.2770 -Georgia.ttf 91 x 29.1682 28.0000 97 ' -14.9492 6.7867 16.3365 -Georgia.ttf 91 x 29.1682 28.0000 98 ¢ -8.3323 25.8241 44.7403 -Georgia.ttf 91 x 29.1682 28.0000 99 Z -12.2471 33.6912 40.4279 -Georgia.ttf 91 x 29.1682 28.0000 100 > -3.1313 26.4279 30.3365 -Georgia.ttf 91 x 29.1682 28.0000 101 ® -14.3289 50.3815 50.3815 -Georgia.ttf 91 x 29.1682 28.0000 102 © -13.6229 50.3815 50.3815 -Georgia.ttf 91 x 29.1682 28.0000 103 ] -15.1612 15.1682 52.4453 -Georgia.ttf 91 x 29.1682 28.0000 104 é -15.6767 24.6953 44.8092 -Georgia.ttf 91 x 29.1682 28.0000 105 z 0.2123 23.0270 28.0000 -Georgia.ttf 91 x 29.1682 28.0000 106 _ 32.9365 37.5498 2.7403 -Georgia.ttf 91 x 29.1682 28.0000 107 ¥ -12.6144 37.0770 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 1 t 6.2802 18.7851 38.0914 -Georgia.ttf 92 ) 16.5865 52.4453 2 h -1.2025 31.5237 44.3365 -Georgia.ttf 92 ) 16.5865 52.4453 3 a 14.3309 25.6635 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 4 n 13.9857 31.5237 29.1682 -Georgia.ttf 92 ) 16.5865 52.4453 5 P 2.9405 31.6236 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 6 o 13.8717 27.2318 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 7 e 14.0163 24.6953 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 8 : 15.0385 7.9550 28.4038 -Georgia.ttf 92 ) 16.5865 52.4453 9 r 14.0379 21.9550 29.1682 -Georgia.ttf 92 ) 16.5865 52.4453 10 l -1.2123 14.8955 44.3365 -Georgia.ttf 92 ) 16.5865 52.4453 11 i -0.6395 14.3538 43.8448 -Georgia.ttf 92 ) 16.5865 52.4453 12 1 11.5050 19.8912 31.5047 -Georgia.ttf 92 ) 16.5865 52.4453 13 | 0.2512 3.7547 55.3045 -Georgia.ttf 92 ) 16.5865 52.4453 14 N 2.5725 42.0727 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 15 f -1.1682 22.1088 44.3365 -Georgia.ttf 92 ) 16.5865 52.4453 16 g 13.9496 27.2356 42.0000 -Georgia.ttf 92 ) 16.5865 52.4453 17 d -1.3324 30.9403 45.5047 -Georgia.ttf 92 ) 16.5865 52.4453 18 W 2.7403 58.3365 40.6779 -Georgia.ttf 92 ) 16.5865 52.4453 19 s 14.1525 20.9867 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 20 c 14.0175 24.1536 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 21 u 14.2443 31.5237 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 22 3 11.6960 27.3045 41.7500 -Georgia.ttf 92 ) 16.5865 52.4453 23 ~ 21.8155 30.0403 10.4453 -Georgia.ttf 92 ) 16.5865 52.4453 24 # 7.9048 29.1872 35.0594 -Georgia.ttf 92 ) 16.5865 52.4453 25 O 1.7505 38.4953 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 26 ` -0.6197 11.6635 12.1362 -Georgia.ttf 92 ) 16.5865 52.4453 27 @ 4.1586 44.6903 47.8912 -Georgia.ttf 92 ) 16.5865 52.4453 28 F 2.7951 31.6736 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 29 S 1.5878 28.0000 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 30 p 14.0000 30.2638 42.0000 -Georgia.ttf 92 ) 16.5865 52.4453 31 “ 0.0144 18.8041 15.1682 -Georgia.ttf 92 ) 16.5865 52.4453 32 % 1.4979 41.5772 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 33 £ 1.8667 30.0448 41.5962 -Georgia.ttf 92 ) 16.5865 52.4453 34 . 35.6945 7.9550 7.9550 -Georgia.ttf 92 ) 16.5865 52.4453 35 2 11.4057 26.4090 31.5047 -Georgia.ttf 92 ) 16.5865 52.4453 36 5 13.0046 26.8318 40.5818 -Georgia.ttf 92 ) 16.5865 52.4453 37 m 14.0381 48.0867 29.1682 -Georgia.ttf 92 ) 16.5865 52.4453 38 V 2.6501 41.3045 40.6779 -Georgia.ttf 92 ) 16.5865 52.4453 39 6 1.3121 27.7083 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 40 w 15.0714 44.3365 28.0000 -Georgia.ttf 92 ) 16.5865 52.4453 41 T 2.8187 36.3815 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 42 M 2.5544 49.8549 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 43 G 1.5721 39.4135 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 44 b -1.0804 31.0781 46.4730 -Georgia.ttf 92 ) 16.5865 52.4453 45 9 11.6219 27.7083 41.9500 -Georgia.ttf 92 ) 16.5865 52.4453 46 ; 15.0909 9.5498 38.2453 -Georgia.ttf 92 ) 16.5865 52.4453 47 D 2.5444 38.0914 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 48 L 2.7134 32.4730 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 49 y 15.1776 30.7403 40.8318 -Georgia.ttf 92 ) 16.5865 52.4453 50 ‘ 0.1014 8.3588 15.1682 -Georgia.ttf 92 ) 16.5865 52.4453 51 \ -0.2048 23.2770 55.3045 -Georgia.ttf 92 ) 16.5865 52.4453 52 R 2.8891 39.2597 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 53 < 11.8548 26.4279 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 54 4 11.1833 29.8448 41.7500 -Georgia.ttf 92 ) 16.5865 52.4453 55 8 1.6689 28.7227 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 56 0 11.7482 29.8910 32.6730 -Georgia.ttf 92 ) 16.5865 52.4453 57 A 2.6915 41.5962 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 58 E 2.6546 34.7056 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 59 B 2.7134 32.7646 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 60 v 15.1612 30.7403 28.0000 -Georgia.ttf 92 ) 16.5865 52.4453 61 k -1.3725 31.4820 44.3365 -Georgia.ttf 92 ) 16.5865 52.4453 62 J 2.4507 29.0144 41.5962 -Georgia.ttf 92 ) 16.5865 52.4453 63 U 2.7260 42.2189 41.5962 -Georgia.ttf 92 ) 16.5865 52.4453 64 j -0.5986 16.3365 56.6766 -Georgia.ttf 92 ) 16.5865 52.4453 65 ( 0.0417 16.5865 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 66 7 12.7923 26.5818 40.5818 -Georgia.ttf 92 ) 16.5865 52.4453 67 § 1.2737 22.5588 48.8094 -Georgia.ttf 92 ) 16.5865 52.4453 68 $ -1.0099 27.3045 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 69 € 1.5221 36.6315 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 70 / -0.0889 23.2770 55.3045 -Georgia.ttf 92 ) 16.5865 52.4453 71 C 1.6638 34.2950 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 72 * 1.8461 22.6315 19.9723 -Georgia.ttf 92 ) 16.5865 52.4453 73 ” 0.0774 18.8041 15.1682 -Georgia.ttf 92 ) 16.5865 52.4453 74 ? 1.4447 22.2277 42.0000 -Georgia.ttf 92 ) 16.5865 52.4453 75 { -0.2210 21.2133 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 76 } 0.0301 21.2133 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 77 , 36.0266 9.5498 17.3047 -Georgia.ttf 92 ) 16.5865 52.4453 78 I 2.6304 18.1351 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 79 ° 1.5002 18.4730 18.4730 -Georgia.ttf 92 ) 16.5865 52.4453 80 K 2.6917 39.2597 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 81 H 2.8646 41.8878 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 82 q 12.7465 30.8903 43.1682 -Georgia.ttf 92 ) 16.5865 52.4453 83 & 1.4094 39.2597 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 84 ’ 0.1619 8.3588 15.1682 -Georgia.ttf 92 ) 16.5865 52.4453 85 [ -0.0357 15.1682 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 86 - 25.4278 17.0320 4.4730 -Georgia.ttf 92 ) 16.5865 52.4453 87 Y 2.6689 38.9680 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 88 Q 1.4380 38.4953 52.5642 -Georgia.ttf 92 ) 16.5865 52.4453 89 " 0.0955 17.7547 16.3365 -Georgia.ttf 92 ) 16.5865 52.4453 90 ! 1.4348 7.9550 42.7644 -Georgia.ttf 92 ) 16.5865 52.4453 91 x 15.1637 29.1682 28.0000 -Georgia.ttf 92 ) 16.5865 52.4453 92 ) -0.0083 16.5865 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 93 = 20.0665 29.1682 14.4500 -Georgia.ttf 92 ) 16.5865 52.4453 94 + 12.3393 29.4182 29.4182 -Georgia.ttf 92 ) 16.5865 52.4453 95 X 2.7403 41.5962 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 96 » 16.7093 23.9998 23.2770 -Georgia.ttf 92 ) 16.5865 52.4453 97 ' -0.0422 6.7867 16.3365 -Georgia.ttf 92 ) 16.5865 52.4453 98 ¢ 6.7497 25.8241 44.7403 -Georgia.ttf 92 ) 16.5865 52.4453 99 Z 2.4447 33.6912 40.4279 -Georgia.ttf 92 ) 16.5865 52.4453 100 > 11.7948 26.4279 30.3365 -Georgia.ttf 92 ) 16.5865 52.4453 101 ® 0.9212 50.3815 50.3815 -Georgia.ttf 92 ) 16.5865 52.4453 102 © 1.1650 50.3815 50.3815 -Georgia.ttf 92 ) 16.5865 52.4453 103 ] -0.0102 15.1682 52.4453 -Georgia.ttf 92 ) 16.5865 52.4453 104 é -0.2823 24.6953 44.8092 -Georgia.ttf 92 ) 16.5865 52.4453 105 z 15.0973 23.0270 28.0000 -Georgia.ttf 92 ) 16.5865 52.4453 106 _ 48.2859 37.5498 2.7403 -Georgia.ttf 92 ) 16.5865 52.4453 107 ¥ 2.9237 37.0770 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 1 t -13.5005 18.7851 38.0914 -Georgia.ttf 93 = 29.1682 14.4500 2 h -20.9448 31.5237 44.3365 -Georgia.ttf 93 = 29.1682 14.4500 3 a -5.9782 25.6635 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 4 n -6.0944 31.5237 29.1682 -Georgia.ttf 93 = 29.1682 14.4500 5 P -16.9620 31.6236 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 6 o -6.0996 27.2318 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 7 e -6.1728 24.6953 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 8 : -4.7487 7.9550 28.4038 -Georgia.ttf 93 = 29.1682 14.4500 9 r -5.9983 21.9550 29.1682 -Georgia.ttf 93 = 29.1682 14.4500 10 l -21.0330 14.8955 44.3365 -Georgia.ttf 93 = 29.1682 14.4500 11 i -21.0700 14.3538 43.8448 -Georgia.ttf 93 = 29.1682 14.4500 12 1 -8.3864 19.8912 31.5047 -Georgia.ttf 93 = 29.1682 14.4500 13 | -19.8771 3.7547 55.3045 -Georgia.ttf 93 = 29.1682 14.4500 14 N -17.1077 42.0727 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 15 f -21.2717 22.1088 44.3365 -Georgia.ttf 93 = 29.1682 14.4500 16 g -5.8967 27.2356 42.0000 -Georgia.ttf 93 = 29.1682 14.4500 17 d -21.5236 30.9403 45.5047 -Georgia.ttf 93 = 29.1682 14.4500 18 W -16.7436 58.3365 40.6779 -Georgia.ttf 93 = 29.1682 14.4500 19 s -6.1217 20.9867 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 20 c -5.7570 24.1536 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 21 u -5.9528 31.5237 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 22 3 -8.3074 27.3045 41.7500 -Georgia.ttf 93 = 29.1682 14.4500 23 ~ 1.7454 30.0403 10.4453 -Georgia.ttf 93 = 29.1682 14.4500 24 # -11.8523 29.1872 35.0594 -Georgia.ttf 93 = 29.1682 14.4500 25 O -18.6042 38.4953 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 26 ` -20.4576 11.6635 12.1362 -Georgia.ttf 93 = 29.1682 14.4500 27 @ -16.1555 44.6903 47.8912 -Georgia.ttf 93 = 29.1682 14.4500 28 F -17.2588 31.6736 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 29 S -18.2722 28.0000 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 30 p -5.8512 30.2638 42.0000 -Georgia.ttf 93 = 29.1682 14.4500 31 “ -19.9736 18.8041 15.1682 -Georgia.ttf 93 = 29.1682 14.4500 32 % -18.5079 41.5772 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 33 £ -18.7154 30.0448 41.5962 -Georgia.ttf 93 = 29.1682 14.4500 34 . 15.6990 7.9550 7.9550 -Georgia.ttf 93 = 29.1682 14.4500 35 2 -8.2944 26.4090 31.5047 -Georgia.ttf 93 = 29.1682 14.4500 36 5 -7.3819 26.8318 40.5818 -Georgia.ttf 93 = 29.1682 14.4500 37 m -5.9917 48.0867 29.1682 -Georgia.ttf 93 = 29.1682 14.4500 38 V -17.5049 41.3045 40.6779 -Georgia.ttf 93 = 29.1682 14.4500 39 6 -18.7270 27.7083 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 40 w -5.1112 44.3365 28.0000 -Georgia.ttf 93 = 29.1682 14.4500 41 T -17.1203 36.3815 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 42 M -17.3881 49.8549 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 43 G -18.3863 39.4135 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 44 b -21.3921 31.0781 46.4730 -Georgia.ttf 93 = 29.1682 14.4500 45 9 -8.3069 27.7083 41.9500 -Georgia.ttf 93 = 29.1682 14.4500 46 ; -5.0042 9.5498 38.2453 -Georgia.ttf 93 = 29.1682 14.4500 47 D -17.5874 38.0914 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 48 L -17.4150 32.4730 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 49 y -4.8096 30.7403 40.8318 -Georgia.ttf 93 = 29.1682 14.4500 50 ‘ -20.3671 8.3588 15.1682 -Georgia.ttf 93 = 29.1682 14.4500 51 \ -19.9935 23.2770 55.3045 -Georgia.ttf 93 = 29.1682 14.4500 52 R -17.5388 39.2597 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 53 < -8.1783 26.4279 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 54 4 -8.6439 29.8448 41.7500 -Georgia.ttf 93 = 29.1682 14.4500 55 8 -18.4275 28.7227 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 56 0 -8.1643 29.8910 32.6730 -Georgia.ttf 93 = 29.1682 14.4500 57 A -17.0063 41.5962 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 58 E -17.3145 34.7056 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 59 B -17.4341 32.7646 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 60 v -5.2292 30.7403 28.0000 -Georgia.ttf 93 = 29.1682 14.4500 61 k -21.2284 31.4820 44.3365 -Georgia.ttf 93 = 29.1682 14.4500 62 J -17.2254 29.0144 41.5962 -Georgia.ttf 93 = 29.1682 14.4500 63 U -17.1100 42.2189 41.5962 -Georgia.ttf 93 = 29.1682 14.4500 64 j -20.7758 16.3365 56.6766 -Georgia.ttf 93 = 29.1682 14.4500 65 ( -19.9684 16.5865 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 66 7 -7.1970 26.5818 40.5818 -Georgia.ttf 93 = 29.1682 14.4500 67 § -18.6640 22.5588 48.8094 -Georgia.ttf 93 = 29.1682 14.4500 68 $ -21.2784 27.3045 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 69 € -18.5811 36.6315 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 70 / -20.2095 23.2770 55.3045 -Georgia.ttf 93 = 29.1682 14.4500 71 C -18.3001 34.2950 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 72 * -18.7709 22.6315 19.9723 -Georgia.ttf 93 = 29.1682 14.4500 73 ” -20.2387 18.8041 15.1682 -Georgia.ttf 93 = 29.1682 14.4500 74 ? -18.9003 22.2277 42.0000 -Georgia.ttf 93 = 29.1682 14.4500 75 { -20.0867 21.2133 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 76 } -20.0432 21.2133 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 77 , 16.1411 9.5498 17.3047 -Georgia.ttf 93 = 29.1682 14.4500 78 I -17.3932 18.1351 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 79 ° -18.2787 18.4730 18.4730 -Georgia.ttf 93 = 29.1682 14.4500 80 K -17.2837 39.2597 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 81 H -17.3149 41.8878 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 82 q -7.4718 30.8903 43.1682 -Georgia.ttf 93 = 29.1682 14.4500 83 & -18.6574 39.2597 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 84 ’ -19.7050 8.3588 15.1682 -Georgia.ttf 93 = 29.1682 14.4500 85 [ -20.2637 15.1682 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 86 - 5.2050 17.0320 4.4730 -Georgia.ttf 93 = 29.1682 14.4500 87 Y -17.2491 38.9680 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 88 Q -18.6815 38.4953 52.5642 -Georgia.ttf 93 = 29.1682 14.4500 89 " -19.6637 17.7547 16.3365 -Georgia.ttf 93 = 29.1682 14.4500 90 ! -18.6902 7.9550 42.7644 -Georgia.ttf 93 = 29.1682 14.4500 91 x -4.7578 29.1682 28.0000 -Georgia.ttf 93 = 29.1682 14.4500 92 ) -19.7651 16.5865 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 93 = 0.1672 29.1682 14.4500 -Georgia.ttf 93 = 29.1682 14.4500 94 + -7.3321 29.4182 29.4182 -Georgia.ttf 93 = 29.1682 14.4500 95 X -17.4358 41.5962 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 96 » -3.2996 23.9998 23.2770 -Georgia.ttf 93 = 29.1682 14.4500 97 ' -20.1192 6.7867 16.3365 -Georgia.ttf 93 = 29.1682 14.4500 98 ¢ -13.0761 25.8241 44.7403 -Georgia.ttf 93 = 29.1682 14.4500 99 Z -17.2448 33.6912 40.4279 -Georgia.ttf 93 = 29.1682 14.4500 100 > -7.9807 26.4279 30.3365 -Georgia.ttf 93 = 29.1682 14.4500 101 ® -18.8660 50.3815 50.3815 -Georgia.ttf 93 = 29.1682 14.4500 102 © -19.1007 50.3815 50.3815 -Georgia.ttf 93 = 29.1682 14.4500 103 ] -20.2958 15.1682 52.4453 -Georgia.ttf 93 = 29.1682 14.4500 104 é -20.6666 24.6953 44.8092 -Georgia.ttf 93 = 29.1682 14.4500 105 z -4.7085 23.0270 28.0000 -Georgia.ttf 93 = 29.1682 14.4500 106 _ 28.2195 37.5498 2.7403 -Georgia.ttf 93 = 29.1682 14.4500 107 ¥ -17.3976 37.0770 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 1 t -6.4119 18.7851 38.0914 -Georgia.ttf 94 + 29.4182 29.4182 2 h -14.0724 31.5237 44.3365 -Georgia.ttf 94 + 29.4182 29.4182 3 a 1.3728 25.6635 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 4 n 1.5512 31.5237 29.1682 -Georgia.ttf 94 + 29.4182 29.4182 5 P -9.8841 31.6236 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 6 o 1.5164 27.2318 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 7 e 1.4938 24.6953 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 8 : 2.6360 7.9550 28.4038 -Georgia.ttf 94 + 29.4182 29.4182 9 r 1.5368 21.9550 29.1682 -Georgia.ttf 94 + 29.4182 29.4182 10 l -13.8941 14.8955 44.3365 -Georgia.ttf 94 + 29.4182 29.4182 11 i -13.0168 14.3538 43.8448 -Georgia.ttf 94 + 29.4182 29.4182 12 1 -1.1282 19.8912 31.5047 -Georgia.ttf 94 + 29.4182 29.4182 13 | -12.8879 3.7547 55.3045 -Georgia.ttf 94 + 29.4182 29.4182 14 N -9.6126 42.0727 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 15 f -13.8766 22.1088 44.3365 -Georgia.ttf 94 + 29.4182 29.4182 16 g 1.3863 27.2356 42.0000 -Georgia.ttf 94 + 29.4182 29.4182 17 d -13.8368 30.9403 45.5047 -Georgia.ttf 94 + 29.4182 29.4182 18 W -9.7589 58.3365 40.6779 -Georgia.ttf 94 + 29.4182 29.4182 19 s 1.3802 20.9867 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 20 c 1.2255 24.1536 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 21 u 1.5725 31.5237 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 22 3 -0.8170 27.3045 41.7500 -Georgia.ttf 94 + 29.4182 29.4182 23 ~ 9.4439 30.0403 10.4453 -Georgia.ttf 94 + 29.4182 29.4182 24 # -4.3933 29.1872 35.0594 -Georgia.ttf 94 + 29.4182 29.4182 25 O -11.0331 38.4953 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 26 ` -12.8794 11.6635 12.1362 -Georgia.ttf 94 + 29.4182 29.4182 27 @ -8.7633 44.6903 47.8912 -Georgia.ttf 94 + 29.4182 29.4182 28 F -9.7718 31.6736 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 29 S -10.8966 28.0000 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 30 p 1.4961 30.2638 42.0000 -Georgia.ttf 94 + 29.4182 29.4182 31 “ -12.6759 18.8041 15.1682 -Georgia.ttf 94 + 29.4182 29.4182 32 % -10.8666 41.5772 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 33 £ -11.1875 30.0448 41.5962 -Georgia.ttf 94 + 29.4182 29.4182 34 . 23.0167 7.9550 7.9550 -Georgia.ttf 94 + 29.4182 29.4182 35 2 -1.0064 26.4090 31.5047 -Georgia.ttf 94 + 29.4182 29.4182 36 5 -0.1147 26.8318 40.5818 -Georgia.ttf 94 + 29.4182 29.4182 37 m 1.3866 48.0867 29.1682 -Georgia.ttf 94 + 29.4182 29.4182 38 V -9.7960 41.3045 40.6779 -Georgia.ttf 94 + 29.4182 29.4182 39 6 -10.9109 27.7083 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 40 w 2.6236 44.3365 28.0000 -Georgia.ttf 94 + 29.4182 29.4182 41 T -10.0360 36.3815 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 42 M -9.4776 49.8549 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 43 G -11.0129 39.4135 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 44 b -13.9306 31.0781 46.4730 -Georgia.ttf 94 + 29.4182 29.4182 45 9 -1.0116 27.7083 41.9500 -Georgia.ttf 94 + 29.4182 29.4182 46 ; 2.6593 9.5498 38.2453 -Georgia.ttf 94 + 29.4182 29.4182 47 D -9.7890 38.0914 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 48 L -9.9689 32.4730 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 49 y 2.2486 30.7403 40.8318 -Georgia.ttf 94 + 29.4182 29.4182 50 ‘ -12.4010 8.3588 15.1682 -Georgia.ttf 94 + 29.4182 29.4182 51 \ -12.7757 23.2770 55.3045 -Georgia.ttf 94 + 29.4182 29.4182 52 R -9.4903 39.2597 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 53 < -0.8897 26.4279 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 54 4 -0.9140 29.8448 41.7500 -Georgia.ttf 94 + 29.4182 29.4182 55 8 -11.0662 28.7227 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 56 0 -0.6142 29.8910 32.6730 -Georgia.ttf 94 + 29.4182 29.4182 57 A -9.6060 41.5962 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 58 E -9.9365 34.7056 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 59 B -9.8106 32.7646 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 60 v 2.4206 30.7403 28.0000 -Georgia.ttf 94 + 29.4182 29.4182 61 k -13.7500 31.4820 44.3365 -Georgia.ttf 94 + 29.4182 29.4182 62 J -9.8457 29.0144 41.5962 -Georgia.ttf 94 + 29.4182 29.4182 63 U -9.8931 42.2189 41.5962 -Georgia.ttf 94 + 29.4182 29.4182 64 j -13.1849 16.3365 56.6766 -Georgia.ttf 94 + 29.4182 29.4182 65 ( -12.7060 16.5865 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 66 7 0.2226 26.5818 40.5818 -Georgia.ttf 94 + 29.4182 29.4182 67 § -10.8470 22.5588 48.8094 -Georgia.ttf 94 + 29.4182 29.4182 68 $ -13.1746 27.3045 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 69 € -11.2077 36.6315 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 70 / -12.7826 23.2770 55.3045 -Georgia.ttf 94 + 29.4182 29.4182 71 C -11.0541 34.2950 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 72 * -11.0871 22.6315 19.9723 -Georgia.ttf 94 + 29.4182 29.4182 73 ” -12.6514 18.8041 15.1682 -Georgia.ttf 94 + 29.4182 29.4182 74 ? -10.9680 22.2277 42.0000 -Georgia.ttf 94 + 29.4182 29.4182 75 { -12.7032 21.2133 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 76 } -12.5383 21.2133 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 77 , 23.6604 9.5498 17.3047 -Georgia.ttf 94 + 29.4182 29.4182 78 I -9.6055 18.1351 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 79 ° -11.0182 18.4730 18.4730 -Georgia.ttf 94 + 29.4182 29.4182 80 K -9.8135 39.2597 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 81 H -9.7502 41.8878 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 82 q 0.1219 30.8903 43.1682 -Georgia.ttf 94 + 29.4182 29.4182 83 & -11.0866 39.2597 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 84 ’ -12.4188 8.3588 15.1682 -Georgia.ttf 94 + 29.4182 29.4182 85 [ -12.6216 15.1682 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 86 - 12.7363 17.0320 4.4730 -Georgia.ttf 94 + 29.4182 29.4182 87 Y -9.9261 38.9680 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 88 Q -11.1371 38.4953 52.5642 -Georgia.ttf 94 + 29.4182 29.4182 89 " -12.2383 17.7547 16.3365 -Georgia.ttf 94 + 29.4182 29.4182 90 ! -10.8494 7.9550 42.7644 -Georgia.ttf 94 + 29.4182 29.4182 91 x 2.5805 29.1682 28.0000 -Georgia.ttf 94 + 29.4182 29.4182 92 ) -12.7091 16.5865 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 93 = 7.3474 29.1682 14.4500 -Georgia.ttf 94 + 29.4182 29.4182 94 + -0.1303 29.4182 29.4182 -Georgia.ttf 94 + 29.4182 29.4182 95 X -9.7347 41.5962 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 96 » 4.1459 23.9998 23.2770 -Georgia.ttf 94 + 29.4182 29.4182 97 ' -12.2982 6.7867 16.3365 -Georgia.ttf 94 + 29.4182 29.4182 98 ¢ -5.9826 25.8241 44.7403 -Georgia.ttf 94 + 29.4182 29.4182 99 Z -9.9331 33.6912 40.4279 -Georgia.ttf 94 + 29.4182 29.4182 100 > -0.8313 26.4279 30.3365 -Georgia.ttf 94 + 29.4182 29.4182 101 ® -11.3347 50.3815 50.3815 -Georgia.ttf 94 + 29.4182 29.4182 102 © -11.6003 50.3815 50.3815 -Georgia.ttf 94 + 29.4182 29.4182 103 ] -12.4846 15.1682 52.4453 -Georgia.ttf 94 + 29.4182 29.4182 104 é -13.2214 24.6953 44.8092 -Georgia.ttf 94 + 29.4182 29.4182 105 z 2.4181 23.0270 28.0000 -Georgia.ttf 94 + 29.4182 29.4182 106 _ 35.9853 37.5498 2.7403 -Georgia.ttf 94 + 29.4182 29.4182 107 ¥ -9.7575 37.0770 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 1 t 3.5704 18.7851 38.0914 -Georgia.ttf 95 X 41.5962 40.4279 2 h -3.6850 31.5237 44.3365 -Georgia.ttf 95 X 41.5962 40.4279 3 a 11.2240 25.6635 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 4 n 11.1703 31.5237 29.1682 -Georgia.ttf 95 X 41.5962 40.4279 5 P -0.0296 31.6236 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 6 o 11.3950 27.2318 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 7 e 10.9691 24.6953 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 8 : 12.3236 7.9550 28.4038 -Georgia.ttf 95 X 41.5962 40.4279 9 r 11.3547 21.9550 29.1682 -Georgia.ttf 95 X 41.5962 40.4279 10 l -3.8685 14.8955 44.3365 -Georgia.ttf 95 X 41.5962 40.4279 11 i -3.8165 14.3538 43.8448 -Georgia.ttf 95 X 41.5962 40.4279 12 1 8.9488 19.8912 31.5047 -Georgia.ttf 95 X 41.5962 40.4279 13 | -2.4786 3.7547 55.3045 -Georgia.ttf 95 X 41.5962 40.4279 14 N 0.1636 42.0727 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 15 f -3.6580 22.1088 44.3365 -Georgia.ttf 95 X 41.5962 40.4279 16 g 11.4224 27.2356 42.0000 -Georgia.ttf 95 X 41.5962 40.4279 17 d -4.0195 30.9403 45.5047 -Georgia.ttf 95 X 41.5962 40.4279 18 W 0.4769 58.3365 40.6779 -Georgia.ttf 95 X 41.5962 40.4279 19 s 11.1764 20.9867 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 20 c 11.3300 24.1536 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 21 u 11.3513 31.5237 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 22 3 8.8434 27.3045 41.7500 -Georgia.ttf 95 X 41.5962 40.4279 23 ~ 19.5355 30.0403 10.4453 -Georgia.ttf 95 X 41.5962 40.4279 24 # 5.3314 29.1872 35.0594 -Georgia.ttf 95 X 41.5962 40.4279 25 O -1.2645 38.4953 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 26 ` -3.4026 11.6635 12.1362 -Georgia.ttf 95 X 41.5962 40.4279 27 @ 1.2923 44.6903 47.8912 -Georgia.ttf 95 X 41.5962 40.4279 28 F -0.0784 31.6736 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 29 S -1.3888 28.0000 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 30 p 11.1998 30.2638 42.0000 -Georgia.ttf 95 X 41.5962 40.4279 31 “ -2.8551 18.8041 15.1682 -Georgia.ttf 95 X 41.5962 40.4279 32 % -1.0839 41.5772 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 33 £ -1.0454 30.0448 41.5962 -Georgia.ttf 95 X 41.5962 40.4279 34 . 32.8657 7.9550 7.9550 -Georgia.ttf 95 X 41.5962 40.4279 35 2 8.7174 26.4090 31.5047 -Georgia.ttf 95 X 41.5962 40.4279 36 5 10.2315 26.8318 40.5818 -Georgia.ttf 95 X 41.5962 40.4279 37 m 11.2620 48.0867 29.1682 -Georgia.ttf 95 X 41.5962 40.4279 38 V -0.1210 41.3045 40.6779 -Georgia.ttf 95 X 41.5962 40.4279 39 6 -1.3268 27.7083 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 40 w 12.0391 44.3365 28.0000 -Georgia.ttf 95 X 41.5962 40.4279 41 T 0.0426 36.3815 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 42 M -0.3100 49.8549 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 43 G -1.2148 39.4135 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 44 b -3.7621 31.0781 46.4730 -Georgia.ttf 95 X 41.5962 40.4279 45 9 8.9162 27.7083 41.9500 -Georgia.ttf 95 X 41.5962 40.4279 46 ; 12.5664 9.5498 38.2453 -Georgia.ttf 95 X 41.5962 40.4279 47 D -0.0482 38.0914 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 48 L -0.1149 32.4730 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 49 y 12.3449 30.7403 40.8318 -Georgia.ttf 95 X 41.5962 40.4279 50 ‘ -2.6370 8.3588 15.1682 -Georgia.ttf 95 X 41.5962 40.4279 51 \ -2.7723 23.2770 55.3045 -Georgia.ttf 95 X 41.5962 40.4279 52 R -0.0942 39.2597 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 53 < 8.9687 26.4279 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 54 4 8.9806 29.8448 41.7500 -Georgia.ttf 95 X 41.5962 40.4279 55 8 -1.3542 28.7227 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 56 0 8.9741 29.8910 32.6730 -Georgia.ttf 95 X 41.5962 40.4279 57 A -0.0126 41.5962 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 58 E -0.1776 34.7056 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 59 B -0.3030 32.7646 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 60 v 12.5123 30.7403 28.0000 -Georgia.ttf 95 X 41.5962 40.4279 61 k -4.3099 31.4820 44.3365 -Georgia.ttf 95 X 41.5962 40.4279 62 J 0.1640 29.0144 41.5962 -Georgia.ttf 95 X 41.5962 40.4279 63 U 0.5381 42.2189 41.5962 -Georgia.ttf 95 X 41.5962 40.4279 64 j -3.4322 16.3365 56.6766 -Georgia.ttf 95 X 41.5962 40.4279 65 ( -2.6266 16.5865 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 66 7 9.8881 26.5818 40.5818 -Georgia.ttf 95 X 41.5962 40.4279 67 § -0.9478 22.5588 48.8094 -Georgia.ttf 95 X 41.5962 40.4279 68 $ -3.2600 27.3045 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 69 € -1.0941 36.6315 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 70 / -2.5252 23.2770 55.3045 -Georgia.ttf 95 X 41.5962 40.4279 71 C -1.4524 34.2950 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 72 * -1.0371 22.6315 19.9723 -Georgia.ttf 95 X 41.5962 40.4279 73 ” -2.7805 18.8041 15.1682 -Georgia.ttf 95 X 41.5962 40.4279 74 ? -1.1970 22.2277 42.0000 -Georgia.ttf 95 X 41.5962 40.4279 75 { -2.7306 21.2133 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 76 } -3.0105 21.2133 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 77 , 33.2242 9.5498 17.3047 -Georgia.ttf 95 X 41.5962 40.4279 78 I 0.0982 18.1351 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 79 ° -1.1720 18.4730 18.4730 -Georgia.ttf 95 X 41.5962 40.4279 80 K -0.1005 39.2597 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 81 H 0.1199 41.8878 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 82 q 9.9399 30.8903 43.1682 -Georgia.ttf 95 X 41.5962 40.4279 83 & -1.3338 39.2597 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 84 ’ -2.9929 8.3588 15.1682 -Georgia.ttf 95 X 41.5962 40.4279 85 [ -2.5845 15.1682 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 86 - 22.5335 17.0320 4.4730 -Georgia.ttf 95 X 41.5962 40.4279 87 Y -0.0871 38.9680 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 88 Q -0.9119 38.4953 52.5642 -Georgia.ttf 95 X 41.5962 40.4279 89 " -2.7491 17.7547 16.3365 -Georgia.ttf 95 X 41.5962 40.4279 90 ! -1.3252 7.9550 42.7644 -Georgia.ttf 95 X 41.5962 40.4279 91 x 12.7638 29.1682 28.0000 -Georgia.ttf 95 X 41.5962 40.4279 92 ) -2.5161 16.5865 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 93 = 16.8617 29.1682 14.4500 -Georgia.ttf 95 X 41.5962 40.4279 94 + 9.6021 29.4182 29.4182 -Georgia.ttf 95 X 41.5962 40.4279 95 X -0.0184 41.5962 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 96 » 13.8722 23.9998 23.2770 -Georgia.ttf 95 X 41.5962 40.4279 97 ' -2.9548 6.7867 16.3365 -Georgia.ttf 95 X 41.5962 40.4279 98 ¢ 3.9093 25.8241 44.7403 -Georgia.ttf 95 X 41.5962 40.4279 99 Z 0.0835 33.6912 40.4279 -Georgia.ttf 95 X 41.5962 40.4279 100 > 9.0619 26.4279 30.3365 -Georgia.ttf 95 X 41.5962 40.4279 101 ® -1.5314 50.3815 50.3815 -Georgia.ttf 95 X 41.5962 40.4279 102 © -1.6495 50.3815 50.3815 -Georgia.ttf 95 X 41.5962 40.4279 103 ] -2.6395 15.1682 52.4453 -Georgia.ttf 95 X 41.5962 40.4279 104 é -2.9671 24.6953 44.8092 -Georgia.ttf 95 X 41.5962 40.4279 105 z 12.3005 23.0270 28.0000 -Georgia.ttf 95 X 41.5962 40.4279 106 _ 45.3760 37.5498 2.7403 -Georgia.ttf 95 X 41.5962 40.4279 107 ¥ -0.2368 37.0770 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 1 t -10.1287 18.7851 38.0914 -Georgia.ttf 96 » 23.9998 23.2770 2 h -17.7613 31.5237 44.3365 -Georgia.ttf 96 » 23.9998 23.2770 3 a -2.6778 25.6635 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 4 n -2.4565 31.5237 29.1682 -Georgia.ttf 96 » 23.9998 23.2770 5 P -13.6552 31.6236 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 6 o -2.8749 27.2318 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 7 e -2.7639 24.6953 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 8 : -1.3029 7.9550 28.4038 -Georgia.ttf 96 » 23.9998 23.2770 9 r -2.6313 21.9550 29.1682 -Georgia.ttf 96 » 23.9998 23.2770 10 l -17.6176 14.8955 44.3365 -Georgia.ttf 96 » 23.9998 23.2770 11 i -17.1402 14.3538 43.8448 -Georgia.ttf 96 » 23.9998 23.2770 12 1 -4.7849 19.8912 31.5047 -Georgia.ttf 96 » 23.9998 23.2770 13 | -16.7288 3.7547 55.3045 -Georgia.ttf 96 » 23.9998 23.2770 14 N -14.1585 42.0727 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 15 f -17.9730 22.1088 44.3365 -Georgia.ttf 96 » 23.9998 23.2770 16 g -2.5162 27.2356 42.0000 -Georgia.ttf 96 » 23.9998 23.2770 17 d -17.5115 30.9403 45.5047 -Georgia.ttf 96 » 23.9998 23.2770 18 W -13.9383 58.3365 40.6779 -Georgia.ttf 96 » 23.9998 23.2770 19 s -2.7403 20.9867 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 20 c -2.5555 24.1536 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 21 u -2.6107 31.5237 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 22 3 -4.9846 27.3045 41.7500 -Georgia.ttf 96 » 23.9998 23.2770 23 ~ 5.5004 30.0403 10.4453 -Georgia.ttf 96 » 23.9998 23.2770 24 # -8.5207 29.1872 35.0594 -Georgia.ttf 96 » 23.9998 23.2770 25 O -15.1590 38.4953 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 26 ` -17.3292 11.6635 12.1362 -Georgia.ttf 96 » 23.9998 23.2770 27 @ -12.3856 44.6903 47.8912 -Georgia.ttf 96 » 23.9998 23.2770 28 F -13.9948 31.6736 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 29 S -14.8986 28.0000 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 30 p -2.3454 30.2638 42.0000 -Georgia.ttf 96 » 23.9998 23.2770 31 “ -16.5847 18.8041 15.1682 -Georgia.ttf 96 » 23.9998 23.2770 32 % -14.8118 41.5772 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 33 £ -15.2296 30.0448 41.5962 -Georgia.ttf 96 » 23.9998 23.2770 34 . 19.2892 7.9550 7.9550 -Georgia.ttf 96 » 23.9998 23.2770 35 2 -4.7985 26.4090 31.5047 -Georgia.ttf 96 » 23.9998 23.2770 36 5 -4.0583 26.8318 40.5818 -Georgia.ttf 96 » 23.9998 23.2770 37 m -2.3311 48.0867 29.1682 -Georgia.ttf 96 » 23.9998 23.2770 38 V -13.9713 41.3045 40.6779 -Georgia.ttf 96 » 23.9998 23.2770 39 6 -14.7544 27.7083 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 40 w -1.4522 44.3365 28.0000 -Georgia.ttf 96 » 23.9998 23.2770 41 T -13.7276 36.3815 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 42 M -13.8031 49.8549 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 43 G -14.7386 39.4135 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 44 b -17.4792 31.0781 46.4730 -Georgia.ttf 96 » 23.9998 23.2770 45 9 -4.5815 27.7083 41.9500 -Georgia.ttf 96 » 23.9998 23.2770 46 ; -1.4956 9.5498 38.2453 -Georgia.ttf 96 » 23.9998 23.2770 47 D -13.9616 38.0914 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 48 L -14.1009 32.4730 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 49 y -1.3591 30.7403 40.8318 -Georgia.ttf 96 » 23.9998 23.2770 50 ‘ -16.4472 8.3588 15.1682 -Georgia.ttf 96 » 23.9998 23.2770 51 \ -16.5778 23.2770 55.3045 -Georgia.ttf 96 » 23.9998 23.2770 52 R -13.9171 39.2597 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 53 < -4.6614 26.4279 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 54 4 -4.8692 29.8448 41.7500 -Georgia.ttf 96 » 23.9998 23.2770 55 8 -15.0547 28.7227 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 56 0 -4.6773 29.8910 32.6730 -Georgia.ttf 96 » 23.9998 23.2770 57 A -13.9749 41.5962 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 58 E -13.9235 34.7056 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 59 B -13.6589 32.7646 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 60 v -1.3603 30.7403 28.0000 -Georgia.ttf 96 » 23.9998 23.2770 61 k -17.6402 31.4820 44.3365 -Georgia.ttf 96 » 23.9998 23.2770 62 J -14.1016 29.0144 41.5962 -Georgia.ttf 96 » 23.9998 23.2770 63 U -14.0464 42.2189 41.5962 -Georgia.ttf 96 » 23.9998 23.2770 64 j -17.1916 16.3365 56.6766 -Georgia.ttf 96 » 23.9998 23.2770 65 ( -16.8405 16.5865 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 66 7 -3.8289 26.5818 40.5818 -Georgia.ttf 96 » 23.9998 23.2770 67 § -14.8986 22.5588 48.8094 -Georgia.ttf 96 » 23.9998 23.2770 68 $ -17.4148 27.3045 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 69 € -15.1591 36.6315 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 70 / -16.5865 23.2770 55.3045 -Georgia.ttf 96 » 23.9998 23.2770 71 C -15.3457 34.2950 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 72 * -15.1789 22.6315 19.9723 -Georgia.ttf 96 » 23.9998 23.2770 73 ” -16.5722 18.8041 15.1682 -Georgia.ttf 96 » 23.9998 23.2770 74 ? -14.7887 22.2277 42.0000 -Georgia.ttf 96 » 23.9998 23.2770 75 { -16.8766 21.2133 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 76 } -16.5924 21.2133 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 77 , 19.3037 9.5498 17.3047 -Georgia.ttf 96 » 23.9998 23.2770 78 I -13.9384 18.1351 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 79 ° -15.1070 18.4730 18.4730 -Georgia.ttf 96 » 23.9998 23.2770 80 K -13.8424 39.2597 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 81 H -13.9564 41.8878 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 82 q -3.6823 30.8903 43.1682 -Georgia.ttf 96 » 23.9998 23.2770 83 & -14.7338 39.2597 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 84 ’ -16.6537 8.3588 15.1682 -Georgia.ttf 96 » 23.9998 23.2770 85 [ -16.5508 15.1682 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 86 - 8.7120 17.0320 4.4730 -Georgia.ttf 96 » 23.9998 23.2770 87 Y -13.7776 38.9680 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 88 Q -14.9755 38.4953 52.5642 -Georgia.ttf 96 » 23.9998 23.2770 89 " -16.6704 17.7547 16.3365 -Georgia.ttf 96 » 23.9998 23.2770 90 ! -14.9844 7.9550 42.7644 -Georgia.ttf 96 » 23.9998 23.2770 91 x -1.6268 29.1682 28.0000 -Georgia.ttf 96 » 23.9998 23.2770 92 ) -16.6137 16.5865 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 93 = 3.5498 29.1682 14.4500 -Georgia.ttf 96 » 23.9998 23.2770 94 + -4.0793 29.4182 29.4182 -Georgia.ttf 96 » 23.9998 23.2770 95 X -13.7128 41.5962 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 96 » -0.1771 23.9998 23.2770 -Georgia.ttf 96 » 23.9998 23.2770 97 ' -16.4189 6.7867 16.3365 -Georgia.ttf 96 » 23.9998 23.2770 98 ¢ -10.1474 25.8241 44.7403 -Georgia.ttf 96 » 23.9998 23.2770 99 Z -14.0464 33.6912 40.4279 -Georgia.ttf 96 » 23.9998 23.2770 100 > -4.6928 26.4279 30.3365 -Georgia.ttf 96 » 23.9998 23.2770 101 ® -15.4381 50.3815 50.3815 -Georgia.ttf 96 » 23.9998 23.2770 102 © -15.1030 50.3815 50.3815 -Georgia.ttf 96 » 23.9998 23.2770 103 ] -16.6305 15.1682 52.4453 -Georgia.ttf 96 » 23.9998 23.2770 104 é -17.0133 24.6953 44.8092 -Georgia.ttf 96 » 23.9998 23.2770 105 z -1.4234 23.0270 28.0000 -Georgia.ttf 96 » 23.9998 23.2770 106 _ 31.6915 37.5498 2.7403 -Georgia.ttf 96 » 23.9998 23.2770 107 ¥ -13.4431 37.0770 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 1 t 6.4095 18.7851 38.0914 -Georgia.ttf 97 ' 6.7867 16.3365 2 h -1.3494 31.5237 44.3365 -Georgia.ttf 97 ' 6.7867 16.3365 3 a 14.0839 25.6635 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 4 n 13.7540 31.5237 29.1682 -Georgia.ttf 97 ' 6.7867 16.3365 5 P 2.5915 31.6236 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 6 o 14.1228 27.2318 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 7 e 14.0871 24.6953 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 8 : 15.1612 7.9550 28.4038 -Georgia.ttf 97 ' 6.7867 16.3365 9 r 13.9129 21.9550 29.1682 -Georgia.ttf 97 ' 6.7867 16.3365 10 l -1.1682 14.8955 44.3365 -Georgia.ttf 97 ' 6.7867 16.3365 11 i -0.7540 14.3538 43.8448 -Georgia.ttf 97 ' 6.7867 16.3365 12 1 11.5722 19.8912 31.5047 -Georgia.ttf 97 ' 6.7867 16.3365 13 | 0.2034 3.7547 55.3045 -Georgia.ttf 97 ' 6.7867 16.3365 14 N 2.8320 42.0727 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 15 f -1.1682 22.1088 44.3365 -Georgia.ttf 97 ' 6.7867 16.3365 16 g 14.0013 27.2356 42.0000 -Georgia.ttf 97 ' 6.7867 16.3365 17 d -1.1682 30.9403 45.5047 -Georgia.ttf 97 ' 6.7867 16.3365 18 W 2.7403 58.3365 40.6779 -Georgia.ttf 97 ' 6.7867 16.3365 19 s 14.0871 20.9867 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 20 c 14.0774 24.1536 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 21 u 13.9903 31.5237 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 22 3 11.6992 27.3045 41.7500 -Georgia.ttf 97 ' 6.7867 16.3365 23 ~ 21.8692 30.0403 10.4453 -Georgia.ttf 97 ' 6.7867 16.3365 24 # 8.0276 29.1872 35.0594 -Georgia.ttf 97 ' 6.7867 16.3365 25 O 1.4140 38.4953 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 26 ` -0.5552 11.6635 12.1362 -Georgia.ttf 97 ' 6.7867 16.3365 27 @ 4.2661 44.6903 47.8912 -Georgia.ttf 97 ' 6.7867 16.3365 28 F 2.7371 31.6736 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 29 S 1.8218 28.0000 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 30 p 13.9310 30.2638 42.0000 -Georgia.ttf 97 ' 6.7867 16.3365 31 “ 0.0000 18.8041 15.1682 -Georgia.ttf 97 ' 6.7867 16.3365 32 % 1.7653 41.5772 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 33 £ 1.5007 30.0448 41.5962 -Georgia.ttf 97 ' 6.7867 16.3365 34 . 35.4916 7.9550 7.9550 -Georgia.ttf 97 ' 6.7867 16.3365 35 2 11.7974 26.4090 31.5047 -Georgia.ttf 97 ' 6.7867 16.3365 36 5 12.6627 26.8318 40.5818 -Georgia.ttf 97 ' 6.7867 16.3365 37 m 14.0742 48.0867 29.1682 -Georgia.ttf 97 ' 6.7867 16.3365 38 V 2.7163 41.3045 40.6779 -Georgia.ttf 97 ' 6.7867 16.3365 39 6 1.5721 27.7083 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 40 w 15.2484 44.3365 28.0000 -Georgia.ttf 97 ' 6.7867 16.3365 41 T 2.5758 36.3815 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 42 M 2.9038 49.8549 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 43 G 1.6143 39.4135 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 44 b -1.1682 31.0781 46.4730 -Georgia.ttf 97 ' 6.7867 16.3365 45 9 11.5723 27.7083 41.9500 -Georgia.ttf 97 ' 6.7867 16.3365 46 ; 15.0059 9.5498 38.2453 -Georgia.ttf 97 ' 6.7867 16.3365 47 D 2.5758 38.0914 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 48 L 2.9698 32.4730 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 49 y 15.3166 30.7403 40.8318 -Georgia.ttf 97 ' 6.7867 16.3365 50 ‘ -0.0644 8.3588 15.1682 -Georgia.ttf 97 ' 6.7867 16.3365 51 \ 0.1526 23.2770 55.3045 -Georgia.ttf 97 ' 6.7867 16.3365 52 R 2.5465 39.2597 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 53 < 11.5990 26.4279 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 54 4 11.5921 29.8448 41.7500 -Georgia.ttf 97 ' 6.7867 16.3365 55 8 1.3734 28.7227 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 56 0 11.5764 29.8910 32.6730 -Georgia.ttf 97 ' 6.7867 16.3365 57 A 2.9823 41.5962 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 58 E 2.7788 34.7056 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 59 B 2.9966 32.7646 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 60 v 15.1682 30.7403 28.0000 -Georgia.ttf 97 ' 6.7867 16.3365 61 k -1.1760 31.4820 44.3365 -Georgia.ttf 97 ' 6.7867 16.3365 62 J 2.8320 29.0144 41.5962 -Georgia.ttf 97 ' 6.7867 16.3365 63 U 2.8274 42.2189 41.5962 -Georgia.ttf 97 ' 6.7867 16.3365 64 j -0.5954 16.3365 56.6766 -Georgia.ttf 97 ' 6.7867 16.3365 65 ( 0.0017 16.5865 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 66 7 12.8275 26.5818 40.5818 -Georgia.ttf 97 ' 6.7867 16.3365 67 § 1.4947 22.5588 48.8094 -Georgia.ttf 97 ' 6.7867 16.3365 68 $ -0.9298 27.3045 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 69 € 1.5721 36.6315 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 70 / 0.0801 23.2770 55.3045 -Georgia.ttf 97 ' 6.7867 16.3365 71 C 1.5224 34.2950 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 72 * 1.6587 22.6315 19.9723 -Georgia.ttf 97 ' 6.7867 16.3365 73 ” 0.0060 18.8041 15.1682 -Georgia.ttf 97 ' 6.7867 16.3365 74 ? 1.4048 22.2277 42.0000 -Georgia.ttf 97 ' 6.7867 16.3365 75 { 0.0560 21.2133 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 76 } -0.0449 21.2133 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 77 , 35.9443 9.5498 17.3047 -Georgia.ttf 97 ' 6.7867 16.3365 78 I 2.7458 18.1351 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 79 ° 1.7404 18.4730 18.4730 -Georgia.ttf 97 ' 6.7867 16.3365 80 K 2.7858 39.2597 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 81 H 2.7858 41.8878 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 82 q 12.7489 30.8903 43.1682 -Georgia.ttf 97 ' 6.7867 16.3365 83 & 1.6318 39.2597 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 84 ’ 0.0000 8.3588 15.1682 -Georgia.ttf 97 ' 6.7867 16.3365 85 [ -0.0042 15.1682 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 86 - 25.4947 17.0320 4.4730 -Georgia.ttf 97 ' 6.7867 16.3365 87 Y 2.7403 38.9680 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 88 Q 1.4679 38.4953 52.5642 -Georgia.ttf 97 ' 6.7867 16.3365 89 " 0.0000 17.7547 16.3365 -Georgia.ttf 97 ' 6.7867 16.3365 90 ! 1.5868 7.9550 42.7644 -Georgia.ttf 97 ' 6.7867 16.3365 91 x 15.0843 29.1682 28.0000 -Georgia.ttf 97 ' 6.7867 16.3365 92 ) 0.0027 16.5865 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 93 = 19.9913 29.1682 14.4500 -Georgia.ttf 97 ' 6.7867 16.3365 94 + 12.4946 29.4182 29.4182 -Georgia.ttf 97 ' 6.7867 16.3365 95 X 2.7403 41.5962 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 96 » 16.6162 23.9998 23.2770 -Georgia.ttf 97 ' 6.7867 16.3365 97 ' -0.1728 6.7867 16.3365 -Georgia.ttf 97 ' 6.7867 16.3365 98 ¢ 6.7765 25.8241 44.7403 -Georgia.ttf 97 ' 6.7867 16.3365 99 Z 2.7501 33.6912 40.4279 -Georgia.ttf 97 ' 6.7867 16.3365 100 > 11.8960 26.4279 30.3365 -Georgia.ttf 97 ' 6.7867 16.3365 101 ® 1.1682 50.3815 50.3815 -Georgia.ttf 97 ' 6.7867 16.3365 102 © 1.2484 50.3815 50.3815 -Georgia.ttf 97 ' 6.7867 16.3365 103 ] 0.1311 15.1682 52.4453 -Georgia.ttf 97 ' 6.7867 16.3365 104 é -0.4689 24.6953 44.8092 -Georgia.ttf 97 ' 6.7867 16.3365 105 z 15.4087 23.0270 28.0000 -Georgia.ttf 97 ' 6.7867 16.3365 106 _ 48.2867 37.5498 2.7403 -Georgia.ttf 97 ' 6.7867 16.3365 107 ¥ 2.7408 37.0770 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 1 t -0.4921 18.7851 38.0914 -Georgia.ttf 98 ¢ 25.8241 44.7403 2 h -8.0485 31.5237 44.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 3 a 7.0747 25.6635 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 4 n 7.2133 31.5237 29.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 5 P -4.4438 31.6236 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 6 o 6.9890 27.2318 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 7 e 7.1289 24.6953 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 8 : 8.4887 7.9550 28.4038 -Georgia.ttf 98 ¢ 25.8241 44.7403 9 r 7.1133 21.9550 29.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 10 l -8.2006 14.8955 44.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 11 i -7.3989 14.3538 43.8448 -Georgia.ttf 98 ¢ 25.8241 44.7403 12 1 4.7924 19.8912 31.5047 -Georgia.ttf 98 ¢ 25.8241 44.7403 13 | -6.5203 3.7547 55.3045 -Georgia.ttf 98 ¢ 25.8241 44.7403 14 N -3.9569 42.0727 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 15 f -8.0848 22.1088 44.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 16 g 7.1905 27.2356 42.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 17 d -7.9986 30.9403 45.5047 -Georgia.ttf 98 ¢ 25.8241 44.7403 18 W -4.0325 58.3365 40.6779 -Georgia.ttf 98 ¢ 25.8241 44.7403 19 s 7.1865 20.9867 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 20 c 6.8954 24.1536 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 21 u 7.1721 31.5237 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 22 3 5.1706 27.3045 41.7500 -Georgia.ttf 98 ¢ 25.8241 44.7403 23 ~ 14.8128 30.0403 10.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 24 # 1.1427 29.1872 35.0594 -Georgia.ttf 98 ¢ 25.8241 44.7403 25 O -5.1976 38.4953 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 26 ` -7.3833 11.6635 12.1362 -Georgia.ttf 98 ¢ 25.8241 44.7403 27 @ -2.5575 44.6903 47.8912 -Georgia.ttf 98 ¢ 25.8241 44.7403 28 F -4.0848 31.6736 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 29 S -5.1337 28.0000 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 30 p 7.3849 30.2638 42.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 31 “ -6.8636 18.8041 15.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 32 % -5.2664 41.5772 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 33 £ -5.1335 30.0448 41.5962 -Georgia.ttf 98 ¢ 25.8241 44.7403 34 . 28.7132 7.9550 7.9550 -Georgia.ttf 98 ¢ 25.8241 44.7403 35 2 4.4977 26.4090 31.5047 -Georgia.ttf 98 ¢ 25.8241 44.7403 36 5 6.1885 26.8318 40.5818 -Georgia.ttf 98 ¢ 25.8241 44.7403 37 m 7.3855 48.0867 29.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 38 V -3.8921 41.3045 40.6779 -Georgia.ttf 98 ¢ 25.8241 44.7403 39 6 -5.4658 27.7083 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 40 w 8.1428 44.3365 28.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 41 T -4.0998 36.3815 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 42 M -3.9635 49.8549 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 43 G -5.2294 39.4135 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 44 b -7.8595 31.0781 46.4730 -Georgia.ttf 98 ¢ 25.8241 44.7403 45 9 4.8879 27.7083 41.9500 -Georgia.ttf 98 ¢ 25.8241 44.7403 46 ; 8.2327 9.5498 38.2453 -Georgia.ttf 98 ¢ 25.8241 44.7403 47 D -4.0534 38.0914 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 48 L -4.1654 32.4730 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 49 y 7.9966 30.7403 40.8318 -Georgia.ttf 98 ¢ 25.8241 44.7403 50 ‘ -6.4434 8.3588 15.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 51 \ -6.9044 23.2770 55.3045 -Georgia.ttf 98 ¢ 25.8241 44.7403 52 R -3.9593 39.2597 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 53 < 5.2094 26.4279 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 54 4 4.8614 29.8448 41.7500 -Georgia.ttf 98 ¢ 25.8241 44.7403 55 8 -5.0733 28.7227 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 56 0 4.9371 29.8910 32.6730 -Georgia.ttf 98 ¢ 25.8241 44.7403 57 A -3.9964 41.5962 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 58 E -4.2090 34.7056 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 59 B -4.2504 32.7646 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 60 v 8.5808 30.7403 28.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 61 k -7.9753 31.4820 44.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 62 J -4.0411 29.0144 41.5962 -Georgia.ttf 98 ¢ 25.8241 44.7403 63 U -4.0316 42.2189 41.5962 -Georgia.ttf 98 ¢ 25.8241 44.7403 64 j -7.3216 16.3365 56.6766 -Georgia.ttf 98 ¢ 25.8241 44.7403 65 ( -6.7142 16.5865 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 66 7 5.7655 26.5818 40.5818 -Georgia.ttf 98 ¢ 25.8241 44.7403 67 § -5.3416 22.5588 48.8094 -Georgia.ttf 98 ¢ 25.8241 44.7403 68 $ -8.0853 27.3045 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 69 € -5.0331 36.6315 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 70 / -6.9359 23.2770 55.3045 -Georgia.ttf 98 ¢ 25.8241 44.7403 71 C -5.2893 34.2950 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 72 * -5.3787 22.6315 19.9723 -Georgia.ttf 98 ¢ 25.8241 44.7403 73 ” -6.7500 18.8041 15.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 74 ? -4.8591 22.2277 42.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 75 { -6.7422 21.2133 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 76 } -6.7198 21.2133 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 77 , 29.1414 9.5498 17.3047 -Georgia.ttf 98 ¢ 25.8241 44.7403 78 I -4.1238 18.1351 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 79 ° -5.3934 18.4730 18.4730 -Georgia.ttf 98 ¢ 25.8241 44.7403 80 K -4.2393 39.2597 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 81 H -3.9695 41.8878 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 82 q 5.7337 30.8903 43.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 83 & -5.1751 39.2597 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 84 ’ -6.7523 8.3588 15.1682 -Georgia.ttf 98 ¢ 25.8241 44.7403 85 [ -6.8734 15.1682 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 86 - 18.6723 17.0320 4.4730 -Georgia.ttf 98 ¢ 25.8241 44.7403 87 Y -4.2805 38.9680 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 88 Q -5.3672 38.4953 52.5642 -Georgia.ttf 98 ¢ 25.8241 44.7403 89 " -6.8024 17.7547 16.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 90 ! -5.2952 7.9550 42.7644 -Georgia.ttf 98 ¢ 25.8241 44.7403 91 x 8.1873 29.1682 28.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 92 ) -7.1630 16.5865 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 93 = 13.3905 29.1682 14.4500 -Georgia.ttf 98 ¢ 25.8241 44.7403 94 + 5.9609 29.4182 29.4182 -Georgia.ttf 98 ¢ 25.8241 44.7403 95 X -4.1720 41.5962 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 96 » 9.8805 23.9998 23.2770 -Georgia.ttf 98 ¢ 25.8241 44.7403 97 ' -6.5837 6.7867 16.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 98 ¢ 0.0774 25.8241 44.7403 -Georgia.ttf 98 ¢ 25.8241 44.7403 99 Z -4.0502 33.6912 40.4279 -Georgia.ttf 98 ¢ 25.8241 44.7403 100 > 4.8742 26.4279 30.3365 -Georgia.ttf 98 ¢ 25.8241 44.7403 101 ® -5.5638 50.3815 50.3815 -Georgia.ttf 98 ¢ 25.8241 44.7403 102 © -5.6982 50.3815 50.3815 -Georgia.ttf 98 ¢ 25.8241 44.7403 103 ] -7.0278 15.1682 52.4453 -Georgia.ttf 98 ¢ 25.8241 44.7403 104 é -7.2237 24.6953 44.8092 -Georgia.ttf 98 ¢ 25.8241 44.7403 105 z 8.3114 23.0270 28.0000 -Georgia.ttf 98 ¢ 25.8241 44.7403 106 _ 41.4272 37.5498 2.7403 -Georgia.ttf 98 ¢ 25.8241 44.7403 107 ¥ -3.7873 37.0770 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 1 t 3.5710 18.7851 38.0914 -Georgia.ttf 99 Z 33.6912 40.4279 2 h -3.9300 31.5237 44.3365 -Georgia.ttf 99 Z 33.6912 40.4279 3 a 11.0634 25.6635 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 4 n 11.3694 31.5237 29.1682 -Georgia.ttf 99 Z 33.6912 40.4279 5 P -0.2105 31.6236 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 6 o 11.7082 27.2318 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 7 e 11.4436 24.6953 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 8 : 12.5211 7.9550 28.4038 -Georgia.ttf 99 Z 33.6912 40.4279 9 r 11.5045 21.9550 29.1682 -Georgia.ttf 99 Z 33.6912 40.4279 10 l -3.8497 14.8955 44.3365 -Georgia.ttf 99 Z 33.6912 40.4279 11 i -3.6885 14.3538 43.8448 -Georgia.ttf 99 Z 33.6912 40.4279 12 1 8.9627 19.8912 31.5047 -Georgia.ttf 99 Z 33.6912 40.4279 13 | -2.6213 3.7547 55.3045 -Georgia.ttf 99 Z 33.6912 40.4279 14 N -0.0438 42.0727 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 15 f -4.0971 22.1088 44.3365 -Georgia.ttf 99 Z 33.6912 40.4279 16 g 11.0131 27.2356 42.0000 -Georgia.ttf 99 Z 33.6912 40.4279 17 d -4.1056 30.9403 45.5047 -Georgia.ttf 99 Z 33.6912 40.4279 18 W 0.0422 58.3365 40.6779 -Georgia.ttf 99 Z 33.6912 40.4279 19 s 11.1809 20.9867 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 20 c 11.0951 24.1536 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 21 u 10.8815 31.5237 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 22 3 9.0758 27.3045 41.7500 -Georgia.ttf 99 Z 33.6912 40.4279 23 ~ 19.2184 30.0403 10.4453 -Georgia.ttf 99 Z 33.6912 40.4279 24 # 5.1411 29.1872 35.0594 -Georgia.ttf 99 Z 33.6912 40.4279 25 O -1.0381 38.4953 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 26 ` -3.1081 11.6635 12.1362 -Georgia.ttf 99 Z 33.6912 40.4279 27 @ 1.3936 44.6903 47.8912 -Georgia.ttf 99 Z 33.6912 40.4279 28 F 0.1906 31.6736 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 29 S -1.0915 28.0000 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 30 p 11.3638 30.2638 42.0000 -Georgia.ttf 99 Z 33.6912 40.4279 31 “ -2.7361 18.8041 15.1682 -Georgia.ttf 99 Z 33.6912 40.4279 32 % -0.8022 41.5772 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 33 £ -1.1492 30.0448 41.5962 -Georgia.ttf 99 Z 33.6912 40.4279 34 . 32.9607 7.9550 7.9550 -Georgia.ttf 99 Z 33.6912 40.4279 35 2 9.3447 26.4090 31.5047 -Georgia.ttf 99 Z 33.6912 40.4279 36 5 9.7846 26.8318 40.5818 -Georgia.ttf 99 Z 33.6912 40.4279 37 m 11.3115 48.0867 29.1682 -Georgia.ttf 99 Z 33.6912 40.4279 38 V 0.1102 41.3045 40.6779 -Georgia.ttf 99 Z 33.6912 40.4279 39 6 -1.2325 27.7083 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 40 w 12.5567 44.3365 28.0000 -Georgia.ttf 99 Z 33.6912 40.4279 41 T 0.0718 36.3815 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 42 M -0.0812 49.8549 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 43 G -1.3602 39.4135 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 44 b -3.8219 31.0781 46.4730 -Georgia.ttf 99 Z 33.6912 40.4279 45 9 9.0205 27.7083 41.9500 -Georgia.ttf 99 Z 33.6912 40.4279 46 ; 12.5766 9.5498 38.2453 -Georgia.ttf 99 Z 33.6912 40.4279 47 D -0.2543 38.0914 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 48 L 0.2621 32.4730 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 49 y 12.6160 30.7403 40.8318 -Georgia.ttf 99 Z 33.6912 40.4279 50 ‘ -2.7129 8.3588 15.1682 -Georgia.ttf 99 Z 33.6912 40.4279 51 \ -2.7760 23.2770 55.3045 -Georgia.ttf 99 Z 33.6912 40.4279 52 R -0.0582 39.2597 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 53 < 8.9504 26.4279 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 54 4 8.9329 29.8448 41.7500 -Georgia.ttf 99 Z 33.6912 40.4279 55 8 -0.8718 28.7227 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 56 0 8.9016 29.8910 32.6730 -Georgia.ttf 99 Z 33.6912 40.4279 57 A -0.0893 41.5962 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 58 E 0.3310 34.7056 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 59 B 0.1131 32.7646 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 60 v 12.5378 30.7403 28.0000 -Georgia.ttf 99 Z 33.6912 40.4279 61 k -4.0671 31.4820 44.3365 -Georgia.ttf 99 Z 33.6912 40.4279 62 J 0.1553 29.0144 41.5962 -Georgia.ttf 99 Z 33.6912 40.4279 63 U -0.0312 42.2189 41.5962 -Georgia.ttf 99 Z 33.6912 40.4279 64 j -3.4201 16.3365 56.6766 -Georgia.ttf 99 Z 33.6912 40.4279 65 ( -2.8270 16.5865 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 66 7 10.0543 26.5818 40.5818 -Georgia.ttf 99 Z 33.6912 40.4279 67 § -1.2337 22.5588 48.8094 -Georgia.ttf 99 Z 33.6912 40.4279 68 $ -3.4501 27.3045 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 69 € -1.0913 36.6315 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 70 / -2.6727 23.2770 55.3045 -Georgia.ttf 99 Z 33.6912 40.4279 71 C -1.2567 34.2950 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 72 * -1.2956 22.6315 19.9723 -Georgia.ttf 99 Z 33.6912 40.4279 73 ” -2.6266 18.8041 15.1682 -Georgia.ttf 99 Z 33.6912 40.4279 74 ? -0.9482 22.2277 42.0000 -Georgia.ttf 99 Z 33.6912 40.4279 75 { -2.7129 21.2133 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 76 } -2.7431 21.2133 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 77 , 33.1869 9.5498 17.3047 -Georgia.ttf 99 Z 33.6912 40.4279 78 I -0.1164 18.1351 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 79 ° -1.4125 18.4730 18.4730 -Georgia.ttf 99 Z 33.6912 40.4279 80 K -0.0038 39.2597 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 81 H -0.2785 41.8878 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 82 q 10.4704 30.8903 43.1682 -Georgia.ttf 99 Z 33.6912 40.4279 83 & -1.3083 39.2597 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 84 ’ -2.7865 8.3588 15.1682 -Georgia.ttf 99 Z 33.6912 40.4279 85 [ -2.4786 15.1682 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 86 - 22.6829 17.0320 4.4730 -Georgia.ttf 99 Z 33.6912 40.4279 87 Y -0.2484 38.9680 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 88 Q -1.1038 38.4953 52.5642 -Georgia.ttf 99 Z 33.6912 40.4279 89 " -3.1620 17.7547 16.3365 -Georgia.ttf 99 Z 33.6912 40.4279 90 ! -1.1720 7.9550 42.7644 -Georgia.ttf 99 Z 33.6912 40.4279 91 x 12.6757 29.1682 28.0000 -Georgia.ttf 99 Z 33.6912 40.4279 92 ) -2.8841 16.5865 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 93 = 17.3546 29.1682 14.4500 -Georgia.ttf 99 Z 33.6912 40.4279 94 + 10.0347 29.4182 29.4182 -Georgia.ttf 99 Z 33.6912 40.4279 95 X -0.1714 41.5962 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 96 » 13.9597 23.9998 23.2770 -Georgia.ttf 99 Z 33.6912 40.4279 97 ' -2.6404 6.7867 16.3365 -Georgia.ttf 99 Z 33.6912 40.4279 98 ¢ 4.1183 25.8241 44.7403 -Georgia.ttf 99 Z 33.6912 40.4279 99 Z 0.0000 33.6912 40.4279 -Georgia.ttf 99 Z 33.6912 40.4279 100 > 9.1145 26.4279 30.3365 -Georgia.ttf 99 Z 33.6912 40.4279 101 ® -1.6284 50.3815 50.3815 -Georgia.ttf 99 Z 33.6912 40.4279 102 © -1.7729 50.3815 50.3815 -Georgia.ttf 99 Z 33.6912 40.4279 103 ] -2.8891 15.1682 52.4453 -Georgia.ttf 99 Z 33.6912 40.4279 104 é -3.2857 24.6953 44.8092 -Georgia.ttf 99 Z 33.6912 40.4279 105 z 12.6472 23.0270 28.0000 -Georgia.ttf 99 Z 33.6912 40.4279 106 _ 45.3319 37.5498 2.7403 -Georgia.ttf 99 Z 33.6912 40.4279 107 ¥ 0.0045 37.0770 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 1 t -5.9007 18.7851 38.0914 -Georgia.ttf 100 > 26.4279 30.3365 2 h -13.0465 31.5237 44.3365 -Georgia.ttf 100 > 26.4279 30.3365 3 a 1.9399 25.6635 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 4 n 2.1596 31.5237 29.1682 -Georgia.ttf 100 > 26.4279 30.3365 5 P -8.9170 31.6236 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 6 o 1.9223 27.2318 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 7 e 2.0843 24.6953 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 8 : 3.2185 7.9550 28.4038 -Georgia.ttf 100 > 26.4279 30.3365 9 r 2.1676 21.9550 29.1682 -Georgia.ttf 100 > 26.4279 30.3365 10 l -12.8650 14.8955 44.3365 -Georgia.ttf 100 > 26.4279 30.3365 11 i -12.3737 14.3538 43.8448 -Georgia.ttf 100 > 26.4279 30.3365 12 1 -0.1835 19.8912 31.5047 -Georgia.ttf 100 > 26.4279 30.3365 13 | -12.0730 3.7547 55.3045 -Georgia.ttf 100 > 26.4279 30.3365 14 N -9.1760 42.0727 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 15 f -12.9181 22.1088 44.3365 -Georgia.ttf 100 > 26.4279 30.3365 16 g 2.3093 27.2356 42.0000 -Georgia.ttf 100 > 26.4279 30.3365 17 d -13.1114 30.9403 45.5047 -Georgia.ttf 100 > 26.4279 30.3365 18 W -9.1571 58.3365 40.6779 -Georgia.ttf 100 > 26.4279 30.3365 19 s 1.9156 20.9867 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 20 c 2.3149 24.1536 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 21 u 2.3872 31.5237 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 22 3 -0.2774 27.3045 41.7500 -Georgia.ttf 100 > 26.4279 30.3365 23 ~ 9.9998 30.0403 10.4453 -Georgia.ttf 100 > 26.4279 30.3365 24 # -3.9513 29.1872 35.0594 -Georgia.ttf 100 > 26.4279 30.3365 25 O -10.5546 38.4953 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 26 ` -12.4133 11.6635 12.1362 -Georgia.ttf 100 > 26.4279 30.3365 27 @ -7.8843 44.6903 47.8912 -Georgia.ttf 100 > 26.4279 30.3365 28 F -9.0545 31.6736 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 29 S -10.1495 28.0000 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 30 p 1.9790 30.2638 42.0000 -Georgia.ttf 100 > 26.4279 30.3365 31 “ -11.7828 18.8041 15.1682 -Georgia.ttf 100 > 26.4279 30.3365 32 % -10.2195 41.5772 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 33 £ -10.5565 30.0448 41.5962 -Georgia.ttf 100 > 26.4279 30.3365 34 . 23.8626 7.9550 7.9550 -Georgia.ttf 100 > 26.4279 30.3365 35 2 0.0495 26.4090 31.5047 -Georgia.ttf 100 > 26.4279 30.3365 36 5 0.7996 26.8318 40.5818 -Georgia.ttf 100 > 26.4279 30.3365 37 m 2.0865 48.0867 29.1682 -Georgia.ttf 100 > 26.4279 30.3365 38 V -9.2719 41.3045 40.6779 -Georgia.ttf 100 > 26.4279 30.3365 39 6 -10.4384 27.7083 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 40 w 3.1211 44.3365 28.0000 -Georgia.ttf 100 > 26.4279 30.3365 41 T -9.2734 36.3815 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 42 M -9.3442 49.8549 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 43 G -10.4323 39.4135 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 44 b -13.2660 31.0781 46.4730 -Georgia.ttf 100 > 26.4279 30.3365 45 9 -0.2097 27.7083 41.9500 -Georgia.ttf 100 > 26.4279 30.3365 46 ; 3.3362 9.5498 38.2453 -Georgia.ttf 100 > 26.4279 30.3365 47 D -9.1987 38.0914 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 48 L -9.0218 32.4730 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 49 y 3.2300 30.7403 40.8318 -Georgia.ttf 100 > 26.4279 30.3365 50 ‘ -11.8047 8.3588 15.1682 -Georgia.ttf 100 > 26.4279 30.3365 51 \ -11.9234 23.2770 55.3045 -Georgia.ttf 100 > 26.4279 30.3365 52 R -9.2001 39.2597 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 53 < 0.0081 26.4279 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 54 4 -0.1527 29.8448 41.7500 -Georgia.ttf 100 > 26.4279 30.3365 55 8 -10.5417 28.7227 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 56 0 -0.1105 29.8910 32.6730 -Georgia.ttf 100 > 26.4279 30.3365 57 A -9.1263 41.5962 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 58 E -9.2141 34.7056 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 59 B -9.1608 32.7646 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 60 v 3.1226 30.7403 28.0000 -Georgia.ttf 100 > 26.4279 30.3365 61 k -12.8607 31.4820 44.3365 -Georgia.ttf 100 > 26.4279 30.3365 62 J -8.7793 29.0144 41.5962 -Georgia.ttf 100 > 26.4279 30.3365 63 U -9.0411 42.2189 41.5962 -Georgia.ttf 100 > 26.4279 30.3365 64 j -12.4618 16.3365 56.6766 -Georgia.ttf 100 > 26.4279 30.3365 65 ( -11.6512 16.5865 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 66 7 1.2373 26.5818 40.5818 -Georgia.ttf 100 > 26.4279 30.3365 67 § -10.5351 22.5588 48.8094 -Georgia.ttf 100 > 26.4279 30.3365 68 $ -12.8639 27.3045 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 69 € -10.1297 36.6315 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 70 / -11.9835 23.2770 55.3045 -Georgia.ttf 100 > 26.4279 30.3365 71 C -10.3216 34.2950 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 72 * -10.1371 22.6315 19.9723 -Georgia.ttf 100 > 26.4279 30.3365 73 ” -11.8565 18.8041 15.1682 -Georgia.ttf 100 > 26.4279 30.3365 74 ? -10.3541 22.2277 42.0000 -Georgia.ttf 100 > 26.4279 30.3365 75 { -11.8649 21.2133 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 76 } -11.8480 21.2133 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 77 , 24.4836 9.5498 17.3047 -Georgia.ttf 100 > 26.4279 30.3365 78 I -9.3506 18.1351 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 79 ° -9.8632 18.4730 18.4730 -Georgia.ttf 100 > 26.4279 30.3365 80 K -9.4465 39.2597 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 81 H -9.1851 41.8878 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 82 q 1.0099 30.8903 43.1682 -Georgia.ttf 100 > 26.4279 30.3365 83 & -10.2580 39.2597 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 84 ’ -11.9010 8.3588 15.1682 -Georgia.ttf 100 > 26.4279 30.3365 85 [ -12.0359 15.1682 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 86 - 13.5343 17.0320 4.4730 -Georgia.ttf 100 > 26.4279 30.3365 87 Y -8.9184 38.9680 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 88 Q -10.7011 38.4953 52.5642 -Georgia.ttf 100 > 26.4279 30.3365 89 " -12.0439 17.7547 16.3365 -Georgia.ttf 100 > 26.4279 30.3365 90 ! -10.0592 7.9550 42.7644 -Georgia.ttf 100 > 26.4279 30.3365 91 x 3.4441 29.1682 28.0000 -Georgia.ttf 100 > 26.4279 30.3365 92 ) -12.0921 16.5865 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 93 = 8.3396 29.1682 14.4500 -Georgia.ttf 100 > 26.4279 30.3365 94 + 0.6661 29.4182 29.4182 -Georgia.ttf 100 > 26.4279 30.3365 95 X -9.1256 41.5962 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 96 » 4.4063 23.9998 23.2770 -Georgia.ttf 100 > 26.4279 30.3365 97 ' -11.6647 6.7867 16.3365 -Georgia.ttf 100 > 26.4279 30.3365 98 ¢ -5.0796 25.8241 44.7403 -Georgia.ttf 100 > 26.4279 30.3365 99 Z -9.1274 33.6912 40.4279 -Georgia.ttf 100 > 26.4279 30.3365 100 > 0.2314 26.4279 30.3365 -Georgia.ttf 100 > 26.4279 30.3365 101 ® -10.4812 50.3815 50.3815 -Georgia.ttf 100 > 26.4279 30.3365 102 © -10.7991 50.3815 50.3815 -Georgia.ttf 100 > 26.4279 30.3365 103 ] -11.8153 15.1682 52.4453 -Georgia.ttf 100 > 26.4279 30.3365 104 é -12.6138 24.6953 44.8092 -Georgia.ttf 100 > 26.4279 30.3365 105 z 3.2565 23.0270 28.0000 -Georgia.ttf 100 > 26.4279 30.3365 106 _ 36.6047 37.5498 2.7403 -Georgia.ttf 100 > 26.4279 30.3365 107 ¥ -9.2419 37.0770 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 1 t 5.3410 18.7851 38.0914 -Georgia.ttf 101 ® 50.3815 50.3815 2 h -2.0793 31.5237 44.3365 -Georgia.ttf 101 ® 50.3815 50.3815 3 a 12.7057 25.6635 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 4 n 12.7828 31.5237 29.1682 -Georgia.ttf 101 ® 50.3815 50.3815 5 P 1.2806 31.6236 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 6 o 12.6701 27.2318 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 7 e 12.8565 24.6953 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 8 : 14.3669 7.9550 28.4038 -Georgia.ttf 101 ® 50.3815 50.3815 9 r 12.5497 21.9550 29.1682 -Georgia.ttf 101 ® 50.3815 50.3815 10 l -2.2061 14.8955 44.3365 -Georgia.ttf 101 ® 50.3815 50.3815 11 i -1.8512 14.3538 43.8448 -Georgia.ttf 101 ® 50.3815 50.3815 12 1 10.7032 19.8912 31.5047 -Georgia.ttf 101 ® 50.3815 50.3815 13 | -1.2286 3.7547 55.3045 -Georgia.ttf 101 ® 50.3815 50.3815 14 N 1.8794 42.0727 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 15 f -2.4552 22.1088 44.3365 -Georgia.ttf 101 ® 50.3815 50.3815 16 g 13.0820 27.2356 42.0000 -Georgia.ttf 101 ® 50.3815 50.3815 17 d -2.5960 30.9403 45.5047 -Georgia.ttf 101 ® 50.3815 50.3815 18 W 1.8526 58.3365 40.6779 -Georgia.ttf 101 ® 50.3815 50.3815 19 s 12.7146 20.9867 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 20 c 12.8163 24.1536 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 21 u 12.6802 31.5237 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 22 3 10.4097 27.3045 41.7500 -Georgia.ttf 101 ® 50.3815 50.3815 23 ~ 20.9039 30.0403 10.4453 -Georgia.ttf 101 ® 50.3815 50.3815 24 # 7.0906 29.1872 35.0594 -Georgia.ttf 101 ® 50.3815 50.3815 25 O 0.1838 38.4953 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 26 ` -1.6025 11.6635 12.1362 -Georgia.ttf 101 ® 50.3815 50.3815 27 @ 2.9268 44.6903 47.8912 -Georgia.ttf 101 ® 50.3815 50.3815 28 F 1.3118 31.6736 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 29 S 0.2347 28.0000 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 30 p 12.9093 30.2638 42.0000 -Georgia.ttf 101 ® 50.3815 50.3815 31 “ -1.4208 18.8041 15.1682 -Georgia.ttf 101 ® 50.3815 50.3815 32 % 0.6487 41.5772 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 33 £ 0.2745 30.0448 41.5962 -Georgia.ttf 101 ® 50.3815 50.3815 34 . 34.3765 7.9550 7.9550 -Georgia.ttf 101 ® 50.3815 50.3815 35 2 10.5971 26.4090 31.5047 -Georgia.ttf 101 ® 50.3815 50.3815 36 5 11.7985 26.8318 40.5818 -Georgia.ttf 101 ® 50.3815 50.3815 37 m 12.9633 48.0867 29.1682 -Georgia.ttf 101 ® 50.3815 50.3815 38 V 1.6959 41.3045 40.6779 -Georgia.ttf 101 ® 50.3815 50.3815 39 6 0.0943 27.7083 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 40 w 14.0275 44.3365 28.0000 -Georgia.ttf 101 ® 50.3815 50.3815 41 T 1.4364 36.3815 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 42 M 1.4451 49.8549 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 43 G 0.3909 39.4135 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 44 b -2.4538 31.0781 46.4730 -Georgia.ttf 101 ® 50.3815 50.3815 45 9 10.7999 27.7083 41.9500 -Georgia.ttf 101 ® 50.3815 50.3815 46 ; 14.1085 9.5498 38.2453 -Georgia.ttf 101 ® 50.3815 50.3815 47 D 1.6291 38.0914 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 48 L 0.9420 32.4730 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 49 y 14.0657 30.7403 40.8318 -Georgia.ttf 101 ® 50.3815 50.3815 50 ‘ -1.0624 8.3588 15.1682 -Georgia.ttf 101 ® 50.3815 50.3815 51 \ -0.9667 23.2770 55.3045 -Georgia.ttf 101 ® 50.3815 50.3815 52 R 1.9998 39.2597 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 53 < 10.7663 26.4279 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 54 4 10.8655 29.8448 41.7500 -Georgia.ttf 101 ® 50.3815 50.3815 55 8 0.5614 28.7227 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 56 0 10.3889 29.8910 32.6730 -Georgia.ttf 101 ® 50.3815 50.3815 57 A 1.3970 41.5962 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 58 E 1.8430 34.7056 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 59 B 1.5196 32.7646 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 60 v 13.9829 30.7403 28.0000 -Georgia.ttf 101 ® 50.3815 50.3815 61 k -2.1493 31.4820 44.3365 -Georgia.ttf 101 ® 50.3815 50.3815 62 J 1.3768 29.0144 41.5962 -Georgia.ttf 101 ® 50.3815 50.3815 63 U 1.0409 42.2189 41.5962 -Georgia.ttf 101 ® 50.3815 50.3815 64 j -1.7881 16.3365 56.6766 -Georgia.ttf 101 ® 50.3815 50.3815 65 ( -1.4625 16.5865 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 66 7 11.6646 26.5818 40.5818 -Georgia.ttf 101 ® 50.3815 50.3815 67 § 0.2836 22.5588 48.8094 -Georgia.ttf 101 ® 50.3815 50.3815 68 $ -1.9706 27.3045 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 69 € 0.4899 36.6315 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 70 / -1.2419 23.2770 55.3045 -Georgia.ttf 101 ® 50.3815 50.3815 71 C 0.9257 34.2950 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 72 * 0.2618 22.6315 19.9723 -Georgia.ttf 101 ® 50.3815 50.3815 73 ” -1.1906 18.8041 15.1682 -Georgia.ttf 101 ® 50.3815 50.3815 74 ? 0.4121 22.2277 42.0000 -Georgia.ttf 101 ® 50.3815 50.3815 75 { -1.3359 21.2133 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 76 } -1.0854 21.2133 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 77 , 35.3516 9.5498 17.3047 -Georgia.ttf 101 ® 50.3815 50.3815 78 I 1.7628 18.1351 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 79 ° 0.6100 18.4730 18.4730 -Georgia.ttf 101 ® 50.3815 50.3815 80 K 1.6518 39.2597 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 81 H 1.7322 41.8878 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 82 q 11.7571 30.8903 43.1682 -Georgia.ttf 101 ® 50.3815 50.3815 83 & 0.2537 39.2597 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 84 ’ -1.0468 8.3588 15.1682 -Georgia.ttf 101 ® 50.3815 50.3815 85 [ -1.2796 15.1682 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 86 - 24.2266 17.0320 4.4730 -Georgia.ttf 101 ® 50.3815 50.3815 87 Y 1.4328 38.9680 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 88 Q 0.1232 38.4953 52.5642 -Georgia.ttf 101 ® 50.3815 50.3815 89 " -1.0204 17.7547 16.3365 -Georgia.ttf 101 ® 50.3815 50.3815 90 ! 0.3969 7.9550 42.7644 -Georgia.ttf 101 ® 50.3815 50.3815 91 x 13.9454 29.1682 28.0000 -Georgia.ttf 101 ® 50.3815 50.3815 92 ) -1.0212 16.5865 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 93 = 18.5033 29.1682 14.4500 -Georgia.ttf 101 ® 50.3815 50.3815 94 + 11.5930 29.4182 29.4182 -Georgia.ttf 101 ® 50.3815 50.3815 95 X 1.5634 41.5962 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 96 » 15.5280 23.9998 23.2770 -Georgia.ttf 101 ® 50.3815 50.3815 97 ' -1.0542 6.7867 16.3365 -Georgia.ttf 101 ® 50.3815 50.3815 98 ¢ 5.4485 25.8241 44.7403 -Georgia.ttf 101 ® 50.3815 50.3815 99 Z 1.9215 33.6912 40.4279 -Georgia.ttf 101 ® 50.3815 50.3815 100 > 10.5095 26.4279 30.3365 -Georgia.ttf 101 ® 50.3815 50.3815 101 ® 0.0585 50.3815 50.3815 -Georgia.ttf 101 ® 50.3815 50.3815 102 © -0.1827 50.3815 50.3815 -Georgia.ttf 101 ® 50.3815 50.3815 103 ] -1.0690 15.1682 52.4453 -Georgia.ttf 101 ® 50.3815 50.3815 104 é -1.4087 24.6953 44.8092 -Georgia.ttf 101 ® 50.3815 50.3815 105 z 13.9012 23.0270 28.0000 -Georgia.ttf 101 ® 50.3815 50.3815 106 _ 46.9849 37.5498 2.7403 -Georgia.ttf 101 ® 50.3815 50.3815 107 ¥ 1.5551 37.0770 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 1 t 4.9785 18.7851 38.0914 -Georgia.ttf 102 © 50.3815 50.3815 2 h -2.5544 31.5237 44.3365 -Georgia.ttf 102 © 50.3815 50.3815 3 a 13.0492 25.6635 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 4 n 12.8646 31.5237 29.1682 -Georgia.ttf 102 © 50.3815 50.3815 5 P 1.4406 31.6236 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 6 o 12.5101 27.2318 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 7 e 12.7869 24.6953 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 8 : 14.2252 7.9550 28.4038 -Georgia.ttf 102 © 50.3815 50.3815 9 r 12.7818 21.9550 29.1682 -Georgia.ttf 102 © 50.3815 50.3815 10 l -2.3875 14.8955 44.3365 -Georgia.ttf 102 © 50.3815 50.3815 11 i -1.8508 14.3538 43.8448 -Georgia.ttf 102 © 50.3815 50.3815 12 1 10.2322 19.8912 31.5047 -Georgia.ttf 102 © 50.3815 50.3815 13 | -1.1423 3.7547 55.3045 -Georgia.ttf 102 © 50.3815 50.3815 14 N 1.5405 42.0727 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 15 f -2.5412 22.1088 44.3365 -Georgia.ttf 102 © 50.3815 50.3815 16 g 12.6256 27.2356 42.0000 -Georgia.ttf 102 © 50.3815 50.3815 17 d -2.0946 30.9403 45.5047 -Georgia.ttf 102 © 50.3815 50.3815 18 W 1.4634 58.3365 40.6779 -Georgia.ttf 102 © 50.3815 50.3815 19 s 12.9811 20.9867 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 20 c 12.5648 24.1536 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 21 u 13.2230 31.5237 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 22 3 10.3965 27.3045 41.7500 -Georgia.ttf 102 © 50.3815 50.3815 23 ~ 20.6213 30.0403 10.4453 -Georgia.ttf 102 © 50.3815 50.3815 24 # 6.5694 29.1872 35.0594 -Georgia.ttf 102 © 50.3815 50.3815 25 O 0.5469 38.4953 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 26 ` -1.6564 11.6635 12.1362 -Georgia.ttf 102 © 50.3815 50.3815 27 @ 2.9484 44.6903 47.8912 -Georgia.ttf 102 © 50.3815 50.3815 28 F 1.7723 31.6736 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 29 S 0.7445 28.0000 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 30 p 12.8068 30.2638 42.0000 -Georgia.ttf 102 © 50.3815 50.3815 31 “ -1.1558 18.8041 15.1682 -Georgia.ttf 102 © 50.3815 50.3815 32 % 0.2598 41.5772 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 33 £ 0.7764 30.0448 41.5962 -Georgia.ttf 102 © 50.3815 50.3815 34 . 34.2882 7.9550 7.9550 -Georgia.ttf 102 © 50.3815 50.3815 35 2 10.1356 26.4090 31.5047 -Georgia.ttf 102 © 50.3815 50.3815 36 5 11.5121 26.8318 40.5818 -Georgia.ttf 102 © 50.3815 50.3815 37 m 12.7873 48.0867 29.1682 -Georgia.ttf 102 © 50.3815 50.3815 38 V 1.4032 41.3045 40.6779 -Georgia.ttf 102 © 50.3815 50.3815 39 6 0.5846 27.7083 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 40 w 13.8228 44.3365 28.0000 -Georgia.ttf 102 © 50.3815 50.3815 41 T 1.3159 36.3815 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 42 M 1.8742 49.8549 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 43 G 0.2990 39.4135 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 44 b -2.4371 31.0781 46.4730 -Georgia.ttf 102 © 50.3815 50.3815 45 9 10.4201 27.7083 41.9500 -Georgia.ttf 102 © 50.3815 50.3815 46 ; 13.8720 9.5498 38.2453 -Georgia.ttf 102 © 50.3815 50.3815 47 D 1.6440 38.0914 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 48 L 1.4731 32.4730 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 49 y 13.9194 30.7403 40.8318 -Georgia.ttf 102 © 50.3815 50.3815 50 ‘ -1.3517 8.3588 15.1682 -Georgia.ttf 102 © 50.3815 50.3815 51 \ -1.5737 23.2770 55.3045 -Georgia.ttf 102 © 50.3815 50.3815 52 R 1.7037 39.2597 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 53 < 10.9875 26.4279 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 54 4 10.5156 29.8448 41.7500 -Georgia.ttf 102 © 50.3815 50.3815 55 8 0.2954 28.7227 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 56 0 10.7711 29.8910 32.6730 -Georgia.ttf 102 © 50.3815 50.3815 57 A 1.4219 41.5962 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 58 E 1.4303 34.7056 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 59 B 1.3547 32.7646 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 60 v 13.8542 30.7403 28.0000 -Georgia.ttf 102 © 50.3815 50.3815 61 k -2.3351 31.4820 44.3365 -Georgia.ttf 102 © 50.3815 50.3815 62 J 1.3130 29.0144 41.5962 -Georgia.ttf 102 © 50.3815 50.3815 63 U 1.4099 42.2189 41.5962 -Georgia.ttf 102 © 50.3815 50.3815 64 j -1.9467 16.3365 56.6766 -Georgia.ttf 102 © 50.3815 50.3815 65 ( -1.0924 16.5865 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 66 7 12.0861 26.5818 40.5818 -Georgia.ttf 102 © 50.3815 50.3815 67 § 0.2338 22.5588 48.8094 -Georgia.ttf 102 © 50.3815 50.3815 68 $ -2.1934 27.3045 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 69 € 0.8451 36.6315 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 70 / -1.1140 23.2770 55.3045 -Georgia.ttf 102 © 50.3815 50.3815 71 C 0.3344 34.2950 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 72 * 0.8167 22.6315 19.9723 -Georgia.ttf 102 © 50.3815 50.3815 73 ” -1.3882 18.8041 15.1682 -Georgia.ttf 102 © 50.3815 50.3815 74 ? 0.4566 22.2277 42.0000 -Georgia.ttf 102 © 50.3815 50.3815 75 { -1.1460 21.2133 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 76 } -1.0735 21.2133 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 77 , 35.0279 9.5498 17.3047 -Georgia.ttf 102 © 50.3815 50.3815 78 I 2.0707 18.1351 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 79 ° 0.7687 18.4730 18.4730 -Georgia.ttf 102 © 50.3815 50.3815 80 K 1.6213 39.2597 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 81 H 1.6911 41.8878 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 82 q 11.8033 30.8903 43.1682 -Georgia.ttf 102 © 50.3815 50.3815 83 & 0.7409 39.2597 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 84 ’ -1.2465 8.3588 15.1682 -Georgia.ttf 102 © 50.3815 50.3815 85 [ -1.2085 15.1682 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 86 - 24.3871 17.0320 4.4730 -Georgia.ttf 102 © 50.3815 50.3815 87 Y 1.7341 38.9680 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 88 Q 0.3510 38.4953 52.5642 -Georgia.ttf 102 © 50.3815 50.3815 89 " -1.0988 17.7547 16.3365 -Georgia.ttf 102 © 50.3815 50.3815 90 ! 0.7557 7.9550 42.7644 -Georgia.ttf 102 © 50.3815 50.3815 91 x 13.8702 29.1682 28.0000 -Georgia.ttf 102 © 50.3815 50.3815 92 ) -1.2001 16.5865 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 93 = 18.9951 29.1682 14.4500 -Georgia.ttf 102 © 50.3815 50.3815 94 + 11.3977 29.4182 29.4182 -Georgia.ttf 102 © 50.3815 50.3815 95 X 1.3819 41.5962 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 96 » 15.1179 23.9998 23.2770 -Georgia.ttf 102 © 50.3815 50.3815 97 ' -1.2581 6.7867 16.3365 -Georgia.ttf 102 © 50.3815 50.3815 98 ¢ 6.0045 25.8241 44.7403 -Georgia.ttf 102 © 50.3815 50.3815 99 Z 1.6879 33.6912 40.4279 -Georgia.ttf 102 © 50.3815 50.3815 100 > 10.7651 26.4279 30.3365 -Georgia.ttf 102 © 50.3815 50.3815 101 ® 0.1733 50.3815 50.3815 -Georgia.ttf 102 © 50.3815 50.3815 102 © 0.0774 50.3815 50.3815 -Georgia.ttf 102 © 50.3815 50.3815 103 ] -1.2813 15.1682 52.4453 -Georgia.ttf 102 © 50.3815 50.3815 104 é -1.6225 24.6953 44.8092 -Georgia.ttf 102 © 50.3815 50.3815 105 z 14.1960 23.0270 28.0000 -Georgia.ttf 102 © 50.3815 50.3815 106 _ 46.9434 37.5498 2.7403 -Georgia.ttf 102 © 50.3815 50.3815 107 ¥ 1.1054 37.0770 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 1 t 6.1663 18.7851 38.0914 -Georgia.ttf 103 ] 15.1682 52.4453 2 h -1.1567 31.5237 44.3365 -Georgia.ttf 103 ] 15.1682 52.4453 3 a 14.2957 25.6635 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 4 n 14.2327 31.5237 29.1682 -Georgia.ttf 103 ] 15.1682 52.4453 5 P 2.7459 31.6236 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 6 o 14.0964 27.2318 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 7 e 14.0260 24.6953 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 8 : 15.1742 7.9550 28.4038 -Georgia.ttf 103 ] 15.1682 52.4453 9 r 14.1613 21.9550 29.1682 -Georgia.ttf 103 ] 15.1682 52.4453 10 l -1.2040 14.8955 44.3365 -Georgia.ttf 103 ] 15.1682 52.4453 11 i -0.7280 14.3538 43.8448 -Georgia.ttf 103 ] 15.1682 52.4453 12 1 11.9633 19.8912 31.5047 -Georgia.ttf 103 ] 15.1682 52.4453 13 | 0.1417 3.7547 55.3045 -Georgia.ttf 103 ] 15.1682 52.4453 14 N 2.7348 42.0727 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 15 f -1.1837 22.1088 44.3365 -Georgia.ttf 103 ] 15.1682 52.4453 16 g 14.0838 27.2356 42.0000 -Georgia.ttf 103 ] 15.1682 52.4453 17 d -1.0010 30.9403 45.5047 -Georgia.ttf 103 ] 15.1682 52.4453 18 W 2.9132 58.3365 40.6779 -Georgia.ttf 103 ] 15.1682 52.4453 19 s 13.8387 20.9867 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 20 c 13.9207 24.1536 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 21 u 14.1658 31.5237 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 22 3 11.7832 27.3045 41.7500 -Georgia.ttf 103 ] 15.1682 52.4453 23 ~ 22.0833 30.0403 10.4453 -Georgia.ttf 103 ] 15.1682 52.4453 24 # 8.1927 29.1872 35.0594 -Georgia.ttf 103 ] 15.1682 52.4453 25 O 1.4007 38.4953 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 26 ` -0.4306 11.6635 12.1362 -Georgia.ttf 103 ] 15.1682 52.4453 27 @ 4.2400 44.6903 47.8912 -Georgia.ttf 103 ] 15.1682 52.4453 28 F 2.6308 31.6736 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 29 S 1.3159 28.0000 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 30 p 13.7095 30.2638 42.0000 -Georgia.ttf 103 ] 15.1682 52.4453 31 “ -0.0822 18.8041 15.1682 -Georgia.ttf 103 ] 15.1682 52.4453 32 % 1.5309 41.5772 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 33 £ 1.7662 30.0448 41.5962 -Georgia.ttf 103 ] 15.1682 52.4453 34 . 35.5671 7.9550 7.9550 -Georgia.ttf 103 ] 15.1682 52.4453 35 2 11.4735 26.4090 31.5047 -Georgia.ttf 103 ] 15.1682 52.4453 36 5 12.7873 26.8318 40.5818 -Georgia.ttf 103 ] 15.1682 52.4453 37 m 14.2408 48.0867 29.1682 -Georgia.ttf 103 ] 15.1682 52.4453 38 V 2.4037 41.3045 40.6779 -Georgia.ttf 103 ] 15.1682 52.4453 39 6 1.5864 27.7083 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 40 w 15.0497 44.3365 28.0000 -Georgia.ttf 103 ] 15.1682 52.4453 41 T 2.3237 36.3815 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 42 M 2.7403 49.8549 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 43 G 1.5578 39.4135 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 44 b -0.9909 31.0781 46.4730 -Georgia.ttf 103 ] 15.1682 52.4453 45 9 12.1110 27.7083 41.9500 -Georgia.ttf 103 ] 15.1682 52.4453 46 ; 14.9699 9.5498 38.2453 -Georgia.ttf 103 ] 15.1682 52.4453 47 D 2.7487 38.0914 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 48 L 2.4836 32.4730 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 49 y 15.0843 30.7403 40.8318 -Georgia.ttf 103 ] 15.1682 52.4453 50 ‘ 0.0000 8.3588 15.1682 -Georgia.ttf 103 ] 15.1682 52.4453 51 \ -0.0070 23.2770 55.3045 -Georgia.ttf 103 ] 15.1682 52.4453 52 R 2.7672 39.2597 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 53 < 12.0294 26.4279 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 54 4 11.5264 29.8448 41.7500 -Georgia.ttf 103 ] 15.1682 52.4453 55 8 1.5253 28.7227 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 56 0 11.4681 29.8910 32.6730 -Georgia.ttf 103 ] 15.1682 52.4453 57 A 2.8205 41.5962 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 58 E 2.7046 34.7056 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 59 B 2.8594 32.7646 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 60 v 15.1623 30.7403 28.0000 -Georgia.ttf 103 ] 15.1682 52.4453 61 k -1.3309 31.4820 44.3365 -Georgia.ttf 103 ] 15.1682 52.4453 62 J 3.0062 29.0144 41.5962 -Georgia.ttf 103 ] 15.1682 52.4453 63 U 2.7695 42.2189 41.5962 -Georgia.ttf 103 ] 15.1682 52.4453 64 j -0.6843 16.3365 56.6766 -Georgia.ttf 103 ] 15.1682 52.4453 65 ( -0.2254 16.5865 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 66 7 12.7355 26.5818 40.5818 -Georgia.ttf 103 ] 15.1682 52.4453 67 § 1.6630 22.5588 48.8094 -Georgia.ttf 103 ] 15.1682 52.4453 68 $ -0.9781 27.3045 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 69 € 1.6638 36.6315 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 70 / 0.1010 23.2770 55.3045 -Georgia.ttf 103 ] 15.1682 52.4453 71 C 1.6814 34.2950 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 72 * 1.4003 22.6315 19.9723 -Georgia.ttf 103 ] 15.1682 52.4453 73 ” 0.2674 18.8041 15.1682 -Georgia.ttf 103 ] 15.1682 52.4453 74 ? 1.4766 22.2277 42.0000 -Georgia.ttf 103 ] 15.1682 52.4453 75 { 0.0774 21.2133 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 76 } 0.0000 21.2133 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 77 , 36.1392 9.5498 17.3047 -Georgia.ttf 103 ] 15.1682 52.4453 78 I 2.8100 18.1351 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 79 ° 1.5623 18.4730 18.4730 -Georgia.ttf 103 ] 15.1682 52.4453 80 K 2.6592 39.2597 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 81 H 3.0667 41.8878 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 82 q 12.7661 30.8903 43.1682 -Georgia.ttf 103 ] 15.1682 52.4453 83 & 1.7279 39.2597 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 84 ’ -0.0520 8.3588 15.1682 -Georgia.ttf 103 ] 15.1682 52.4453 85 [ -0.0065 15.1682 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 86 - 25.4860 17.0320 4.4730 -Georgia.ttf 103 ] 15.1682 52.4453 87 Y 2.8320 38.9680 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 88 Q 1.7942 38.4953 52.5642 -Georgia.ttf 103 ] 15.1682 52.4453 89 " 0.0597 17.7547 16.3365 -Georgia.ttf 103 ] 15.1682 52.4453 90 ! 1.3778 7.9550 42.7644 -Georgia.ttf 103 ] 15.1682 52.4453 91 x 15.0490 29.1682 28.0000 -Georgia.ttf 103 ] 15.1682 52.4453 92 ) 0.0424 16.5865 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 93 = 19.8870 29.1682 14.4500 -Georgia.ttf 103 ] 15.1682 52.4453 94 + 12.6667 29.4182 29.4182 -Georgia.ttf 103 ] 15.1682 52.4453 95 X 2.5615 41.5962 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 96 » 16.5897 23.9998 23.2770 -Georgia.ttf 103 ] 15.1682 52.4453 97 ' -0.0812 6.7867 16.3365 -Georgia.ttf 103 ] 15.1682 52.4453 98 ¢ 6.7200 25.8241 44.7403 -Georgia.ttf 103 ] 15.1682 52.4453 99 Z 2.8215 33.6912 40.4279 -Georgia.ttf 103 ] 15.1682 52.4453 100 > 11.9791 26.4279 30.3365 -Georgia.ttf 103 ] 15.1682 52.4453 101 ® 1.1682 50.3815 50.3815 -Georgia.ttf 103 ] 15.1682 52.4453 102 © 1.3421 50.3815 50.3815 -Georgia.ttf 103 ] 15.1682 52.4453 103 ] 0.1683 15.1682 52.4453 -Georgia.ttf 103 ] 15.1682 52.4453 104 é -0.5134 24.6953 44.8092 -Georgia.ttf 103 ] 15.1682 52.4453 105 z 15.2274 23.0270 28.0000 -Georgia.ttf 103 ] 15.1682 52.4453 106 _ 48.3220 37.5498 2.7403 -Georgia.ttf 103 ] 15.1682 52.4453 107 ¥ 2.7298 37.0770 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 1 t 6.5492 18.7851 38.0914 -Georgia.ttf 104 é 24.6953 44.8092 2 h -0.7711 31.5237 44.3365 -Georgia.ttf 104 é 24.6953 44.8092 3 a 14.5418 25.6635 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 4 n 14.4212 31.5237 29.1682 -Georgia.ttf 104 é 24.6953 44.8092 5 P 3.1445 31.6236 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 6 o 14.4832 27.2318 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 7 e 14.3416 24.6953 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 8 : 15.9761 7.9550 28.4038 -Georgia.ttf 104 é 24.6953 44.8092 9 r 14.2114 21.9550 29.1682 -Georgia.ttf 104 é 24.6953 44.8092 10 l -0.7559 14.8955 44.3365 -Georgia.ttf 104 é 24.6953 44.8092 11 i -0.0304 14.3538 43.8448 -Georgia.ttf 104 é 24.6953 44.8092 12 1 12.2132 19.8912 31.5047 -Georgia.ttf 104 é 24.6953 44.8092 13 | 0.2521 3.7547 55.3045 -Georgia.ttf 104 é 24.6953 44.8092 14 N 3.2997 42.0727 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 15 f -0.7659 22.1088 44.3365 -Georgia.ttf 104 é 24.6953 44.8092 16 g 14.3184 27.2356 42.0000 -Georgia.ttf 104 é 24.6953 44.8092 17 d -0.6181 30.9403 45.5047 -Georgia.ttf 104 é 24.6953 44.8092 18 W 3.2076 58.3365 40.6779 -Georgia.ttf 104 é 24.6953 44.8092 19 s 14.4843 20.9867 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 20 c 14.6714 24.1536 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 21 u 14.6386 31.5237 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 22 3 12.2531 27.3045 41.7500 -Georgia.ttf 104 é 24.6953 44.8092 23 ~ 22.1935 30.0403 10.4453 -Georgia.ttf 104 é 24.6953 44.8092 24 # 8.5952 29.1872 35.0594 -Georgia.ttf 104 é 24.6953 44.8092 25 O 1.9747 38.4953 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 26 ` 0.0736 11.6635 12.1362 -Georgia.ttf 104 é 24.6953 44.8092 27 @ 4.6308 44.6903 47.8912 -Georgia.ttf 104 é 24.6953 44.8092 28 F 3.1928 31.6736 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 29 S 1.9907 28.0000 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 30 p 14.2278 30.2638 42.0000 -Georgia.ttf 104 é 24.6953 44.8092 31 “ 0.2198 18.8041 15.1682 -Georgia.ttf 104 é 24.6953 44.8092 32 % 2.0910 41.5772 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 33 £ 2.1738 30.0448 41.5962 -Georgia.ttf 104 é 24.6953 44.8092 34 . 36.0381 7.9550 7.9550 -Georgia.ttf 104 é 24.6953 44.8092 35 2 11.8722 26.4090 31.5047 -Georgia.ttf 104 é 24.6953 44.8092 36 5 13.4027 26.8318 40.5818 -Georgia.ttf 104 é 24.6953 44.8092 37 m 14.4403 48.0867 29.1682 -Georgia.ttf 104 é 24.6953 44.8092 38 V 3.3002 41.3045 40.6779 -Georgia.ttf 104 é 24.6953 44.8092 39 6 1.8343 27.7083 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 40 w 15.7323 44.3365 28.0000 -Georgia.ttf 104 é 24.6953 44.8092 41 T 3.0944 36.3815 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 42 M 2.9018 49.8549 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 43 G 2.1157 39.4135 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 44 b -0.8541 31.0781 46.4730 -Georgia.ttf 104 é 24.6953 44.8092 45 9 12.2875 27.7083 41.9500 -Georgia.ttf 104 é 24.6953 44.8092 46 ; 15.6902 9.5498 38.2453 -Georgia.ttf 104 é 24.6953 44.8092 47 D 3.2581 38.0914 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 48 L 3.2571 32.4730 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 49 y 15.5571 30.7403 40.8318 -Georgia.ttf 104 é 24.6953 44.8092 50 ‘ 0.5626 8.3588 15.1682 -Georgia.ttf 104 é 24.6953 44.8092 51 \ 0.3332 23.2770 55.3045 -Georgia.ttf 104 é 24.6953 44.8092 52 R 3.2460 39.2597 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 53 < 12.2589 26.4279 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 54 4 12.1320 29.8448 41.7500 -Georgia.ttf 104 é 24.6953 44.8092 55 8 1.9531 28.7227 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 56 0 12.2138 29.8910 32.6730 -Georgia.ttf 104 é 24.6953 44.8092 57 A 2.9789 41.5962 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 58 E 3.1259 34.7056 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 59 B 3.1732 32.7646 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 60 v 15.6437 30.7403 28.0000 -Georgia.ttf 104 é 24.6953 44.8092 61 k -0.7112 31.4820 44.3365 -Georgia.ttf 104 é 24.6953 44.8092 62 J 3.2743 29.0144 41.5962 -Georgia.ttf 104 é 24.6953 44.8092 63 U 3.1686 42.2189 41.5962 -Georgia.ttf 104 é 24.6953 44.8092 64 j -0.2955 16.3365 56.6766 -Georgia.ttf 104 é 24.6953 44.8092 65 ( 0.1654 16.5865 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 66 7 13.1359 26.5818 40.5818 -Georgia.ttf 104 é 24.6953 44.8092 67 § 1.7811 22.5588 48.8094 -Georgia.ttf 104 é 24.6953 44.8092 68 $ -0.3362 27.3045 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 69 € 2.0389 36.6315 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 70 / 0.4689 23.2770 55.3045 -Georgia.ttf 104 é 24.6953 44.8092 71 C 1.9220 34.2950 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 72 * 1.9179 22.6315 19.9723 -Georgia.ttf 104 é 24.6953 44.8092 73 ” 0.6575 18.8041 15.1682 -Georgia.ttf 104 é 24.6953 44.8092 74 ? 2.2797 22.2277 42.0000 -Georgia.ttf 104 é 24.6953 44.8092 75 { 0.0918 21.2133 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 76 } 0.4268 21.2133 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 77 , 36.7960 9.5498 17.3047 -Georgia.ttf 104 é 24.6953 44.8092 78 I 3.2607 18.1351 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 79 ° 2.0563 18.4730 18.4730 -Georgia.ttf 104 é 24.6953 44.8092 80 K 3.1343 39.2597 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 81 H 3.0518 41.8878 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 82 q 13.0037 30.8903 43.1682 -Georgia.ttf 104 é 24.6953 44.8092 83 & 1.8297 39.2597 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 84 ’ 0.5211 8.3588 15.1682 -Georgia.ttf 104 é 24.6953 44.8092 85 [ 0.3694 15.1682 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 86 - 25.9779 17.0320 4.4730 -Georgia.ttf 104 é 24.6953 44.8092 87 Y 3.2547 38.9680 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 88 Q 2.3426 38.4953 52.5642 -Georgia.ttf 104 é 24.6953 44.8092 89 " 0.2152 17.7547 16.3365 -Georgia.ttf 104 é 24.6953 44.8092 90 ! 2.1735 7.9550 42.7644 -Georgia.ttf 104 é 24.6953 44.8092 91 x 15.4622 29.1682 28.0000 -Georgia.ttf 104 é 24.6953 44.8092 92 ) 0.3259 16.5865 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 93 = 20.3019 29.1682 14.4500 -Georgia.ttf 104 é 24.6953 44.8092 94 + 12.7982 29.4182 29.4182 -Georgia.ttf 104 é 24.6953 44.8092 95 X 3.2831 41.5962 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 96 » 17.1783 23.9998 23.2770 -Georgia.ttf 104 é 24.6953 44.8092 97 ' 0.4727 6.7867 16.3365 -Georgia.ttf 104 é 24.6953 44.8092 98 ¢ 7.1858 25.8241 44.7403 -Georgia.ttf 104 é 24.6953 44.8092 99 Z 3.2520 33.6912 40.4279 -Georgia.ttf 104 é 24.6953 44.8092 100 > 12.4164 26.4279 30.3365 -Georgia.ttf 104 é 24.6953 44.8092 101 ® 1.6743 50.3815 50.3815 -Georgia.ttf 104 é 24.6953 44.8092 102 © 1.5507 50.3815 50.3815 -Georgia.ttf 104 é 24.6953 44.8092 103 ] 0.5529 15.1682 52.4453 -Georgia.ttf 104 é 24.6953 44.8092 104 é -0.0792 24.6953 44.8092 -Georgia.ttf 104 é 24.6953 44.8092 105 z 15.7541 23.0270 28.0000 -Georgia.ttf 104 é 24.6953 44.8092 106 _ 48.5801 37.5498 2.7403 -Georgia.ttf 104 é 24.6953 44.8092 107 ¥ 3.2093 37.0770 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 1 t -8.5941 18.7851 38.0914 -Georgia.ttf 105 z 23.0270 28.0000 2 h -16.2651 31.5237 44.3365 -Georgia.ttf 105 z 23.0270 28.0000 3 a -1.0199 25.6635 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 4 n -1.3690 31.5237 29.1682 -Georgia.ttf 105 z 23.0270 28.0000 5 P -12.2110 31.6236 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 6 o -1.4237 27.2318 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 7 e -1.2554 24.6953 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 8 : 0.0220 7.9550 28.4038 -Georgia.ttf 105 z 23.0270 28.0000 9 r -1.2407 21.9550 29.1682 -Georgia.ttf 105 z 23.0270 28.0000 10 l -16.4823 14.8955 44.3365 -Georgia.ttf 105 z 23.0270 28.0000 11 i -16.1093 14.3538 43.8448 -Georgia.ttf 105 z 23.0270 28.0000 12 1 -3.4988 19.8912 31.5047 -Georgia.ttf 105 z 23.0270 28.0000 13 | -15.2147 3.7547 55.3045 -Georgia.ttf 105 z 23.0270 28.0000 14 N -12.5438 42.0727 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 15 f -15.8373 22.1088 44.3365 -Georgia.ttf 105 z 23.0270 28.0000 16 g -1.1932 27.2356 42.0000 -Georgia.ttf 105 z 23.0270 28.0000 17 d -16.3874 30.9403 45.5047 -Georgia.ttf 105 z 23.0270 28.0000 18 W -12.4335 58.3365 40.6779 -Georgia.ttf 105 z 23.0270 28.0000 19 s -1.2484 20.9867 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 20 c -1.0357 24.1536 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 21 u -1.2897 31.5237 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 22 3 -3.3500 27.3045 41.7500 -Georgia.ttf 105 z 23.0270 28.0000 23 ~ 6.4466 30.0403 10.4453 -Georgia.ttf 105 z 23.0270 28.0000 24 # -7.1461 29.1872 35.0594 -Georgia.ttf 105 z 23.0270 28.0000 25 O -13.4590 38.4953 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 26 ` -15.6738 11.6635 12.1362 -Georgia.ttf 105 z 23.0270 28.0000 27 @ -11.4774 44.6903 47.8912 -Georgia.ttf 105 z 23.0270 28.0000 28 F -12.5085 31.6736 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 29 S -13.5677 28.0000 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 30 p -1.1750 30.2638 42.0000 -Georgia.ttf 105 z 23.0270 28.0000 31 “ -15.1738 18.8041 15.1682 -Georgia.ttf 105 z 23.0270 28.0000 32 % -13.5962 41.5772 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 33 £ -13.5962 30.0448 41.5962 -Georgia.ttf 105 z 23.0270 28.0000 34 . 20.6316 7.9550 7.9550 -Georgia.ttf 105 z 23.0270 28.0000 35 2 -3.5047 26.4090 31.5047 -Georgia.ttf 105 z 23.0270 28.0000 36 5 -2.4557 26.8318 40.5818 -Georgia.ttf 105 z 23.0270 28.0000 37 m -1.3809 48.0867 29.1682 -Georgia.ttf 105 z 23.0270 28.0000 38 V -12.1358 41.3045 40.6779 -Georgia.ttf 105 z 23.0270 28.0000 39 6 -13.5402 27.7083 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 40 w -0.0682 44.3365 28.0000 -Georgia.ttf 105 z 23.0270 28.0000 41 T -12.5062 36.3815 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 42 M -12.4630 49.8549 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 43 G -13.7795 39.4135 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 44 b -16.3063 31.0781 46.4730 -Georgia.ttf 105 z 23.0270 28.0000 45 9 -3.4603 27.7083 41.9500 -Georgia.ttf 105 z 23.0270 28.0000 46 ; 0.0912 9.5498 38.2453 -Georgia.ttf 105 z 23.0270 28.0000 47 D -12.3478 38.0914 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 48 L -12.4441 32.4730 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 49 y -0.0999 30.7403 40.8318 -Georgia.ttf 105 z 23.0270 28.0000 50 ‘ -15.2873 8.3588 15.1682 -Georgia.ttf 105 z 23.0270 28.0000 51 \ -14.9450 23.2770 55.3045 -Georgia.ttf 105 z 23.0270 28.0000 52 R -12.4057 39.2597 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 53 < -3.2375 26.4279 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 54 4 -3.5061 29.8448 41.7500 -Georgia.ttf 105 z 23.0270 28.0000 55 8 -13.4646 28.7227 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 56 0 -3.3921 29.8910 32.6730 -Georgia.ttf 105 z 23.0270 28.0000 57 A -12.5827 41.5962 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 58 E -12.0728 34.7056 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 59 B -12.4626 32.7646 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 60 v 0.1640 30.7403 28.0000 -Georgia.ttf 105 z 23.0270 28.0000 61 k -16.3939 31.4820 44.3365 -Georgia.ttf 105 z 23.0270 28.0000 62 J -12.4182 29.0144 41.5962 -Georgia.ttf 105 z 23.0270 28.0000 63 U -12.5112 42.2189 41.5962 -Georgia.ttf 105 z 23.0270 28.0000 64 j -15.7642 16.3365 56.6766 -Georgia.ttf 105 z 23.0270 28.0000 65 ( -15.3792 16.5865 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 66 7 -2.2508 26.5818 40.5818 -Georgia.ttf 105 z 23.0270 28.0000 67 § -13.3820 22.5588 48.8094 -Georgia.ttf 105 z 23.0270 28.0000 68 $ -16.1704 27.3045 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 69 € -13.6819 36.6315 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 70 / -15.2040 23.2770 55.3045 -Georgia.ttf 105 z 23.0270 28.0000 71 C -13.6578 34.2950 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 72 * -13.6199 22.6315 19.9723 -Georgia.ttf 105 z 23.0270 28.0000 73 ” -15.4978 18.8041 15.1682 -Georgia.ttf 105 z 23.0270 28.0000 74 ? -13.5261 22.2277 42.0000 -Georgia.ttf 105 z 23.0270 28.0000 75 { -15.1836 21.2133 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 76 } -15.2220 21.2133 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 77 , 20.9059 9.5498 17.3047 -Georgia.ttf 105 z 23.0270 28.0000 78 I -12.7533 18.1351 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 79 ° -13.5857 18.4730 18.4730 -Georgia.ttf 105 z 23.0270 28.0000 80 K -12.3370 39.2597 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 81 H -12.4769 41.8878 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 82 q -2.1273 30.8903 43.1682 -Georgia.ttf 105 z 23.0270 28.0000 83 & -13.5188 39.2597 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 84 ’ -14.9051 8.3588 15.1682 -Georgia.ttf 105 z 23.0270 28.0000 85 [ -15.2306 15.1682 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 86 - 10.2573 17.0320 4.4730 -Georgia.ttf 105 z 23.0270 28.0000 87 Y -12.4344 38.9680 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 88 Q -13.5058 38.4953 52.5642 -Georgia.ttf 105 z 23.0270 28.0000 89 " -15.2637 17.7547 16.3365 -Georgia.ttf 105 z 23.0270 28.0000 90 ! -13.5191 7.9550 42.7644 -Georgia.ttf 105 z 23.0270 28.0000 91 x -0.2053 29.1682 28.0000 -Georgia.ttf 105 z 23.0270 28.0000 92 ) -15.1474 16.5865 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 93 = 5.0462 29.1682 14.4500 -Georgia.ttf 105 z 23.0270 28.0000 94 + -2.7093 29.4182 29.4182 -Georgia.ttf 105 z 23.0270 28.0000 95 X -12.6406 41.5962 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 96 » 1.3228 23.9998 23.2770 -Georgia.ttf 105 z 23.0270 28.0000 97 ' -15.1923 6.7867 16.3365 -Georgia.ttf 105 z 23.0270 28.0000 98 ¢ -8.3049 25.8241 44.7403 -Georgia.ttf 105 z 23.0270 28.0000 99 Z -12.2898 33.6912 40.4279 -Georgia.ttf 105 z 23.0270 28.0000 100 > -3.7891 26.4279 30.3365 -Georgia.ttf 105 z 23.0270 28.0000 101 ® -14.1626 50.3815 50.3815 -Georgia.ttf 105 z 23.0270 28.0000 102 © -14.1052 50.3815 50.3815 -Georgia.ttf 105 z 23.0270 28.0000 103 ] -15.2613 15.1682 52.4453 -Georgia.ttf 105 z 23.0270 28.0000 104 é -15.7764 24.6953 44.8092 -Georgia.ttf 105 z 23.0270 28.0000 105 z 0.2169 23.0270 28.0000 -Georgia.ttf 105 z 23.0270 28.0000 106 _ 33.1080 37.5498 2.7403 -Georgia.ttf 105 z 23.0270 28.0000 107 ¥ -12.4860 37.0770 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 1 t -41.8513 18.7851 38.0914 -Georgia.ttf 106 _ 37.5498 2.7403 2 h -49.3461 31.5237 44.3365 -Georgia.ttf 106 _ 37.5498 2.7403 3 a -34.4095 25.6635 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 4 n -34.5052 31.5237 29.1682 -Georgia.ttf 106 _ 37.5498 2.7403 5 P -45.1876 31.6236 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 6 o -34.5435 27.2318 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 7 e -34.1490 24.6953 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 8 : -33.1600 7.9550 28.4038 -Georgia.ttf 106 _ 37.5498 2.7403 9 r -34.2296 21.9550 29.1682 -Georgia.ttf 106 _ 37.5498 2.7403 10 l -49.2804 14.8955 44.3365 -Georgia.ttf 106 _ 37.5498 2.7403 11 i -48.9753 14.3538 43.8448 -Georgia.ttf 106 _ 37.5498 2.7403 12 1 -36.4272 19.8912 31.5047 -Georgia.ttf 106 _ 37.5498 2.7403 13 | -48.3135 3.7547 55.3045 -Georgia.ttf 106 _ 37.5498 2.7403 14 N -45.5376 42.0727 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 15 f -49.2544 22.1088 44.3365 -Georgia.ttf 106 _ 37.5498 2.7403 16 g -33.9573 27.2356 42.0000 -Georgia.ttf 106 _ 37.5498 2.7403 17 d -49.3720 30.9403 45.5047 -Georgia.ttf 106 _ 37.5498 2.7403 18 W -45.6586 58.3365 40.6779 -Georgia.ttf 106 _ 37.5498 2.7403 19 s -34.0355 20.9867 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 20 c -34.4458 24.1536 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 21 u -34.3377 31.5237 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 22 3 -36.5545 27.3045 41.7500 -Georgia.ttf 106 _ 37.5498 2.7403 23 ~ -26.1600 30.0403 10.4453 -Georgia.ttf 106 _ 37.5498 2.7403 24 # -40.3138 29.1872 35.0594 -Georgia.ttf 106 _ 37.5498 2.7403 25 O -46.6594 38.4953 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 26 ` -48.9287 11.6635 12.1362 -Georgia.ttf 106 _ 37.5498 2.7403 27 @ -43.9126 44.6903 47.8912 -Georgia.ttf 106 _ 37.5498 2.7403 28 F -45.4167 31.6736 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 29 S -46.7958 28.0000 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 30 p -34.2238 30.2638 42.0000 -Georgia.ttf 106 _ 37.5498 2.7403 31 “ -48.0302 18.8041 15.1682 -Georgia.ttf 106 _ 37.5498 2.7403 32 % -46.8274 41.5772 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 33 £ -46.7193 30.0448 41.5962 -Georgia.ttf 106 _ 37.5498 2.7403 34 . -12.4991 7.9550 7.9550 -Georgia.ttf 106 _ 37.5498 2.7403 35 2 -36.8170 26.4090 31.5047 -Georgia.ttf 106 _ 37.5498 2.7403 36 5 -35.2849 26.8318 40.5818 -Georgia.ttf 106 _ 37.5498 2.7403 37 m -34.3647 48.0867 29.1682 -Georgia.ttf 106 _ 37.5498 2.7403 38 V -45.4361 41.3045 40.6779 -Georgia.ttf 106 _ 37.5498 2.7403 39 6 -47.0001 27.7083 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 40 w -32.9137 44.3365 28.0000 -Georgia.ttf 106 _ 37.5498 2.7403 41 T -45.4343 36.3815 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 42 M -45.5015 49.8549 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 43 G -46.5748 39.4135 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 44 b -49.2954 31.0781 46.4730 -Georgia.ttf 106 _ 37.5498 2.7403 45 9 -36.5815 27.7083 41.9500 -Georgia.ttf 106 _ 37.5498 2.7403 46 ; -33.1258 9.5498 38.2453 -Georgia.ttf 106 _ 37.5498 2.7403 47 D -45.6075 38.0914 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 48 L -45.3319 32.4730 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 49 y -33.1472 30.7403 40.8318 -Georgia.ttf 106 _ 37.5498 2.7403 50 ‘ -48.1518 8.3588 15.1682 -Georgia.ttf 106 _ 37.5498 2.7403 51 \ -48.1808 23.2770 55.3045 -Georgia.ttf 106 _ 37.5498 2.7403 52 R -45.3721 39.2597 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 53 < -36.5067 26.4279 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 54 4 -36.8415 29.8448 41.7500 -Georgia.ttf 106 _ 37.5498 2.7403 55 8 -46.5652 28.7227 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 56 0 -36.4514 29.8910 32.6730 -Georgia.ttf 106 _ 37.5498 2.7403 57 A -45.4509 41.5962 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 58 E -45.4785 34.7056 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 59 B -45.4043 32.7646 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 60 v -33.0723 30.7403 28.0000 -Georgia.ttf 106 _ 37.5498 2.7403 61 k -49.3887 31.4820 44.3365 -Georgia.ttf 106 _ 37.5498 2.7403 62 J -45.5463 29.0144 41.5962 -Georgia.ttf 106 _ 37.5498 2.7403 63 U -45.7374 42.2189 41.5962 -Georgia.ttf 106 _ 37.5498 2.7403 64 j -48.9573 16.3365 56.6766 -Georgia.ttf 106 _ 37.5498 2.7403 65 ( -48.0096 16.5865 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 66 7 -35.1058 26.5818 40.5818 -Georgia.ttf 106 _ 37.5498 2.7403 67 § -46.7888 22.5588 48.8094 -Georgia.ttf 106 _ 37.5498 2.7403 68 $ -49.3472 27.3045 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 69 € -46.5927 36.6315 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 70 / -48.4859 23.2770 55.3045 -Georgia.ttf 106 _ 37.5498 2.7403 71 C -46.5795 34.2950 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 72 * -46.6487 22.6315 19.9723 -Georgia.ttf 106 _ 37.5498 2.7403 73 ” -48.6228 18.8041 15.1682 -Georgia.ttf 106 _ 37.5498 2.7403 74 ? -46.4918 22.2277 42.0000 -Georgia.ttf 106 _ 37.5498 2.7403 75 { -48.3980 21.2133 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 76 } -48.3832 21.2133 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 77 , -12.3392 9.5498 17.3047 -Georgia.ttf 106 _ 37.5498 2.7403 78 I -45.6878 18.1351 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 79 ° -46.7646 18.4730 18.4730 -Georgia.ttf 106 _ 37.5498 2.7403 80 K -45.5188 39.2597 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 81 H -45.2800 41.8878 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 82 q -35.2163 30.8903 43.1682 -Georgia.ttf 106 _ 37.5498 2.7403 83 & -46.8278 39.2597 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 84 ’ -48.6345 8.3588 15.1682 -Georgia.ttf 106 _ 37.5498 2.7403 85 [ -48.2306 15.1682 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 86 - -22.9044 17.0320 4.4730 -Georgia.ttf 106 _ 37.5498 2.7403 87 Y -45.3634 38.9680 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 88 Q -46.3286 38.4953 52.5642 -Georgia.ttf 106 _ 37.5498 2.7403 89 " -47.9758 17.7547 16.3365 -Georgia.ttf 106 _ 37.5498 2.7403 90 ! -46.7741 7.9550 42.7644 -Georgia.ttf 106 _ 37.5498 2.7403 91 x -32.7921 29.1682 28.0000 -Georgia.ttf 106 _ 37.5498 2.7403 92 ) -48.4439 16.5865 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 93 = -28.3187 29.1682 14.4500 -Georgia.ttf 106 _ 37.5498 2.7403 94 + -35.5009 29.4182 29.4182 -Georgia.ttf 106 _ 37.5498 2.7403 95 X -45.5485 41.5962 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 96 » -31.6280 23.9998 23.2770 -Georgia.ttf 106 _ 37.5498 2.7403 97 ' -48.0924 6.7867 16.3365 -Georgia.ttf 106 _ 37.5498 2.7403 98 ¢ -41.4958 25.8241 44.7403 -Georgia.ttf 106 _ 37.5498 2.7403 99 Z -45.3820 33.6912 40.4279 -Georgia.ttf 106 _ 37.5498 2.7403 100 > -36.3337 26.4279 30.3365 -Georgia.ttf 106 _ 37.5498 2.7403 101 ® -47.2046 50.3815 50.3815 -Georgia.ttf 106 _ 37.5498 2.7403 102 © -47.0828 50.3815 50.3815 -Georgia.ttf 106 _ 37.5498 2.7403 103 ] -48.1070 15.1682 52.4453 -Georgia.ttf 106 _ 37.5498 2.7403 104 é -48.6543 24.6953 44.8092 -Georgia.ttf 106 _ 37.5498 2.7403 105 z -33.0008 23.0270 28.0000 -Georgia.ttf 106 _ 37.5498 2.7403 106 _ -0.0339 37.5498 2.7403 -Georgia.ttf 106 _ 37.5498 2.7403 107 ¥ -45.6256 37.0770 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 1 t 3.3730 18.7851 38.0914 -Georgia.ttf 107 ¥ 37.0770 40.4279 2 h -4.2400 31.5237 44.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 3 a 11.2360 25.6635 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 4 n 11.1379 31.5237 29.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 5 P 0.2992 31.6236 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 6 o 11.3321 27.2318 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 7 e 11.4933 24.6953 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 8 : 12.4700 7.9550 28.4038 -Georgia.ttf 107 ¥ 37.0770 40.4279 9 r 11.3367 21.9550 29.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 10 l -3.9373 14.8955 44.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 11 i -3.4883 14.3538 43.8448 -Georgia.ttf 107 ¥ 37.0770 40.4279 12 1 8.6210 19.8912 31.5047 -Georgia.ttf 107 ¥ 37.0770 40.4279 13 | -2.7365 3.7547 55.3045 -Georgia.ttf 107 ¥ 37.0770 40.4279 14 N -0.2581 42.0727 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 15 f -3.9865 22.1088 44.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 16 g 11.1381 27.2356 42.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 17 d -4.1637 30.9403 45.5047 -Georgia.ttf 107 ¥ 37.0770 40.4279 18 W -0.2502 58.3365 40.6779 -Georgia.ttf 107 ¥ 37.0770 40.4279 19 s 11.1920 20.9867 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 20 c 11.4539 24.1536 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 21 u 11.1141 31.5237 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 22 3 9.2703 27.3045 41.7500 -Georgia.ttf 107 ¥ 37.0770 40.4279 23 ~ 19.3571 30.0403 10.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 24 # 5.3346 29.1872 35.0594 -Georgia.ttf 107 ¥ 37.0770 40.4279 25 O -1.2634 38.4953 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 26 ` -2.8807 11.6635 12.1362 -Georgia.ttf 107 ¥ 37.0770 40.4279 27 @ 1.3528 44.6903 47.8912 -Georgia.ttf 107 ¥ 37.0770 40.4279 28 F 0.0696 31.6736 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 29 S -1.5106 28.0000 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 30 p 11.2569 30.2638 42.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 31 “ -2.7441 18.8041 15.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 32 % -1.0877 41.5772 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 33 £ -1.1425 30.0448 41.5962 -Georgia.ttf 107 ¥ 37.0770 40.4279 34 . 32.9346 7.9550 7.9550 -Georgia.ttf 107 ¥ 37.0770 40.4279 35 2 8.9617 26.4090 31.5047 -Georgia.ttf 107 ¥ 37.0770 40.4279 36 5 9.9958 26.8318 40.5818 -Georgia.ttf 107 ¥ 37.0770 40.4279 37 m 11.2582 48.0867 29.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 38 V 0.0867 41.3045 40.6779 -Georgia.ttf 107 ¥ 37.0770 40.4279 39 6 -0.9399 27.7083 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 40 w 12.4691 44.3365 28.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 41 T 0.5532 36.3815 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 42 M -0.0403 49.8549 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 43 G -1.2739 39.4135 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 44 b -3.7858 31.0781 46.4730 -Georgia.ttf 107 ¥ 37.0770 40.4279 45 9 8.9627 27.7083 41.9500 -Georgia.ttf 107 ¥ 37.0770 40.4279 46 ; 12.3891 9.5498 38.2453 -Georgia.ttf 107 ¥ 37.0770 40.4279 47 D 0.0312 38.0914 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 48 L -0.0185 32.4730 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 49 y 12.1295 30.7403 40.8318 -Georgia.ttf 107 ¥ 37.0770 40.4279 50 ‘ -2.4804 8.3588 15.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 51 \ -3.1234 23.2770 55.3045 -Georgia.ttf 107 ¥ 37.0770 40.4279 52 R 0.0143 39.2597 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 53 < 8.8796 26.4279 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 54 4 8.9273 29.8448 41.7500 -Georgia.ttf 107 ¥ 37.0770 40.4279 55 8 -1.3004 28.7227 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 56 0 8.9732 29.8910 32.6730 -Georgia.ttf 107 ¥ 37.0770 40.4279 57 A 0.1361 41.5962 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 58 E -0.0473 34.7056 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 59 B 0.1218 32.7646 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 60 v 12.3460 30.7403 28.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 61 k -3.7983 31.4820 44.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 62 J 0.0075 29.0144 41.5962 -Georgia.ttf 107 ¥ 37.0770 40.4279 63 U -0.0500 42.2189 41.5962 -Georgia.ttf 107 ¥ 37.0770 40.4279 64 j -3.5820 16.3365 56.6766 -Georgia.ttf 107 ¥ 37.0770 40.4279 65 ( -2.8284 16.5865 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 66 7 10.0830 26.5818 40.5818 -Georgia.ttf 107 ¥ 37.0770 40.4279 67 § -1.0868 22.5588 48.8094 -Georgia.ttf 107 ¥ 37.0770 40.4279 68 $ -3.7261 27.3045 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 69 € -1.3184 36.6315 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 70 / -2.5627 23.2770 55.3045 -Georgia.ttf 107 ¥ 37.0770 40.4279 71 C -1.0930 34.2950 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 72 * -1.1141 22.6315 19.9723 -Georgia.ttf 107 ¥ 37.0770 40.4279 73 ” -3.0919 18.8041 15.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 74 ? -1.2868 22.2277 42.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 75 { -2.6991 21.2133 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 76 } -2.4819 21.2133 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 77 , 33.5078 9.5498 17.3047 -Georgia.ttf 107 ¥ 37.0770 40.4279 78 I 0.1820 18.1351 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 79 ° -0.7353 18.4730 18.4730 -Georgia.ttf 107 ¥ 37.0770 40.4279 80 K 0.1603 39.2597 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 81 H 0.1575 41.8878 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 82 q 10.0776 30.8903 43.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 83 & -1.0005 39.2597 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 84 ’ -2.7759 8.3588 15.1682 -Georgia.ttf 107 ¥ 37.0770 40.4279 85 [ -2.6611 15.1682 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 86 - 22.4335 17.0320 4.4730 -Georgia.ttf 107 ¥ 37.0770 40.4279 87 Y -0.0757 38.9680 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 88 Q -1.1956 38.4953 52.5642 -Georgia.ttf 107 ¥ 37.0770 40.4279 89 " -2.3465 17.7547 16.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 90 ! -1.1118 7.9550 42.7644 -Georgia.ttf 107 ¥ 37.0770 40.4279 91 x 12.4027 29.1682 28.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 92 ) -2.5028 16.5865 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 93 = 17.5157 29.1682 14.4500 -Georgia.ttf 107 ¥ 37.0770 40.4279 94 + 9.9443 29.4182 29.4182 -Georgia.ttf 107 ¥ 37.0770 40.4279 95 X 0.1932 41.5962 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 96 » 13.7572 23.9998 23.2770 -Georgia.ttf 107 ¥ 37.0770 40.4279 97 ' -2.5258 6.7867 16.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 98 ¢ 4.0604 25.8241 44.7403 -Georgia.ttf 107 ¥ 37.0770 40.4279 99 Z -0.1905 33.6912 40.4279 -Georgia.ttf 107 ¥ 37.0770 40.4279 100 > 9.2867 26.4279 30.3365 -Georgia.ttf 107 ¥ 37.0770 40.4279 101 ® -1.5850 50.3815 50.3815 -Georgia.ttf 107 ¥ 37.0770 40.4279 102 © -1.4140 50.3815 50.3815 -Georgia.ttf 107 ¥ 37.0770 40.4279 103 ] -2.6794 15.1682 52.4453 -Georgia.ttf 107 ¥ 37.0770 40.4279 104 é -3.4443 24.6953 44.8092 -Georgia.ttf 107 ¥ 37.0770 40.4279 105 z 12.2877 23.0270 28.0000 -Georgia.ttf 107 ¥ 37.0770 40.4279 106 _ 45.4477 37.5498 2.7403 -Georgia.ttf 107 ¥ 37.0770 40.4279 107 ¥ 0.0819 37.0770 40.4279 -Georgia_Bold.ttf 1 t 22.8029 37.7468 1 t 0.1836 22.8029 37.7468 -Georgia_Bold.ttf 1 t 22.8029 37.7468 2 h -7.9329 38.3109 44.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 3 a 7.2960 31.8795 30.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 4 n 7.4371 38.5434 29.1940 -Georgia_Bold.ttf 1 t 22.8029 37.7468 5 P -4.0492 37.4968 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 6 o 7.1779 32.6103 30.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 7 e 7.1035 30.1152 30.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 8 : 8.3878 11.2741 29.1940 -Georgia_Bold.ttf 1 t 22.8029 37.7468 9 r 7.4234 29.1940 29.1940 -Georgia_Bold.ttf 1 t 22.8029 37.7468 10 l -7.4937 18.7339 44.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 11 i -8.0922 18.7339 44.8687 -Georgia_Bold.ttf 1 t 22.8029 37.7468 12 1 4.8369 23.6397 31.6891 -Georgia_Bold.ttf 1 t 22.8029 37.7468 13 | -7.8163 4.6330 56.5227 -Georgia_Bold.ttf 1 t 22.8029 37.7468 14 N -3.8730 47.1785 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 15 f -7.9093 28.2500 44.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 16 g 7.4261 32.5497 42.0000 -Georgia_Bold.ttf 1 t 22.8029 37.7468 17 d -7.8660 36.4457 45.5819 -Georgia_Bold.ttf 1 t 22.8029 37.7468 18 W -3.7353 68.0276 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 19 s 7.3777 25.8621 30.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 20 c 7.3764 28.9212 30.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 21 u 7.5415 38.2100 30.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 22 3 5.0302 32.5259 42.2500 -Georgia_Bold.ttf 1 t 22.8029 37.7468 23 ~ 14.1077 32.5497 12.2181 -Georgia_Bold.ttf 1 t 22.8029 37.7468 24 # 0.1085 32.2532 36.4457 -Georgia_Bold.ttf 1 t 22.8029 37.7468 25 O -5.4066 43.5511 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 26 ` -7.8351 15.1940 12.8060 -Georgia_Bold.ttf 1 t 22.8029 37.7468 27 @ -3.1015 47.4709 48.6411 -Georgia_Bold.ttf 1 t 22.8029 37.7468 28 F -3.9290 35.9650 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 29 S -5.0436 33.7437 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 30 p 7.2659 35.8397 42.0000 -Georgia_Bold.ttf 1 t 22.8029 37.7468 31 “ -6.7368 25.5049 20.0578 -Georgia_Bold.ttf 1 t 22.8029 37.7468 32 % -5.1394 46.1460 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 33 £ -5.2047 33.4471 41.6621 -Georgia_Bold.ttf 1 t 22.8029 37.7468 34 . 26.3190 11.2741 11.2741 -Georgia_Bold.ttf 1 t 22.8029 37.7468 35 2 5.1324 30.6653 31.6891 -Georgia_Bold.ttf 1 t 22.8029 37.7468 36 5 4.5971 31.3319 42.2500 -Georgia_Bold.ttf 1 t 22.8029 37.7468 37 m 7.2145 57.1474 29.1940 -Georgia_Bold.ttf 1 t 22.8029 37.7468 38 V -4.0251 47.4471 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 39 6 -5.1144 32.2997 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 40 w 8.4634 50.4457 28.0000 -Georgia_Bold.ttf 1 t 22.8029 37.7468 41 T -3.7456 38.0802 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 42 M -3.6706 56.5455 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 43 G -5.1176 45.5865 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 44 b -7.8361 35.7325 45.9198 -Georgia_Bold.ttf 1 t 22.8029 37.7468 45 9 4.8240 32.6330 42.3571 -Georgia_Bold.ttf 1 t 22.8029 37.7468 46 ; 8.0418 11.5049 39.3813 -Georgia_Bold.ttf 1 t 22.8029 37.7468 47 D -3.8257 44.3879 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 48 L -3.9510 38.0196 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 49 y 8.6378 35.2710 40.8060 -Georgia_Bold.ttf 1 t 22.8029 37.7468 50 ‘ -6.6078 11.5049 20.0578 -Georgia_Bold.ttf 1 t 22.8029 37.7468 51 \ -6.5411 24.9408 55.3288 -Georgia_Bold.ttf 1 t 22.8029 37.7468 52 R -3.9125 46.2759 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 53 < 3.8482 28.2500 32.5259 -Georgia_Bold.ttf 1 t 22.8029 37.7468 54 4 4.5888 34.6684 42.2500 -Georgia_Bold.ttf 1 t 22.8029 37.7468 55 8 -4.9638 33.3865 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 56 0 4.8638 34.6876 32.8830 -Georgia_Bold.ttf 1 t 22.8029 37.7468 57 A -4.0289 46.9902 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 58 E -3.8351 38.6908 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 59 B -3.6744 40.1348 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 60 v 8.6151 35.5017 28.0000 -Georgia_Bold.ttf 1 t 22.8029 37.7468 61 k -7.5835 37.9968 44.3879 -Georgia_Bold.ttf 1 t 22.8029 37.7468 62 J -3.8313 33.3235 41.6621 -Georgia_Bold.ttf 1 t 22.8029 37.7468 63 U -4.0733 46.9856 41.6621 -Georgia_Bold.ttf 1 t 22.8029 37.7468 64 j -8.3306 22.1730 57.6747 -Georgia_Bold.ttf 1 t 22.8029 37.7468 65 ( -6.3720 20.7483 52.5609 -Georgia_Bold.ttf 1 t 22.8029 37.7468 66 7 6.0005 30.0308 41.0560 -Georgia_Bold.ttf 1 t 22.8029 37.7468 67 § -5.0313 26.2192 48.4103 -Georgia_Bold.ttf 1 t 22.8029 37.7468 68 $ -7.0621 31.2486 51.7468 -Georgia_Bold.ttf 1 t 22.8029 37.7468 69 € -5.1124 41.2868 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 70 / -6.8654 24.9408 55.3288 -Georgia_Bold.ttf 1 t 22.8029 37.7468 71 C -5.2904 39.1489 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 72 * -5.0466 23.6397 21.2290 -Georgia_Bold.ttf 1 t 22.8029 37.7468 73 ” -6.7411 25.5049 20.0578 -Georgia_Bold.ttf 1 t 22.8029 37.7468 74 ? -5.1904 26.4727 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 75 { -6.5715 25.1716 52.5609 -Georgia_Bold.ttf 1 t 22.8029 37.7468 76 } -6.6852 25.1716 52.5609 -Georgia_Bold.ttf 1 t 22.8029 37.7468 77 , 27.3153 11.5049 20.7483 -Georgia_Bold.ttf 1 t 22.8029 37.7468 78 I -3.9685 21.7342 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 79 ° -5.1208 19.4471 18.8830 -Georgia_Bold.ttf 1 t 22.8029 37.7468 80 K -4.0160 47.4699 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 81 H -3.8961 49.0437 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 82 q 6.1225 36.1968 43.1940 -Georgia_Bold.ttf 1 t 22.8029 37.7468 83 & -5.2509 44.6379 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 84 ’ -6.7570 11.5049 20.0578 -Georgia_Bold.ttf 1 t 22.8029 37.7468 85 [ -6.9430 18.8830 52.5609 -Georgia_Bold.ttf 1 t 22.8029 37.7468 86 - 17.8260 17.3319 6.3078 -Georgia_Bold.ttf 1 t 22.8029 37.7468 87 Y -4.0954 46.5865 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 88 Q -5.2092 43.5511 53.5241 -Georgia_Bold.ttf 1 t 22.8029 37.7468 89 " -6.5539 23.0291 20.0578 -Georgia_Bold.ttf 1 t 22.8029 37.7468 90 ! -5.0735 10.9408 42.8561 -Georgia_Bold.ttf 1 t 22.8029 37.7468 91 x 8.6270 34.3078 28.0000 -Georgia_Bold.ttf 1 t 22.8029 37.7468 92 ) -6.5548 20.7483 52.5609 -Georgia_Bold.ttf 1 t 22.8029 37.7468 93 = 11.7645 30.3879 16.2451 -Georgia_Bold.ttf 1 t 22.8029 37.7468 94 + 4.4266 31.9572 31.9572 -Georgia_Bold.ttf 1 t 22.8029 37.7468 95 X -3.8502 47.1138 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 96 » 8.2020 28.0000 25.5049 -Georgia_Bold.ttf 1 t 22.8029 37.7468 97 ' -6.6866 9.3670 20.0578 -Georgia_Bold.ttf 1 t 22.8029 37.7468 98 ¢ 0.2373 29.6975 45.0592 -Georgia_Bold.ttf 1 t 22.8029 37.7468 99 Z -4.0835 40.1348 40.4681 -Georgia_Bold.ttf 1 t 22.8029 37.7468 100 > 4.0746 28.2500 32.5259 -Georgia_Bold.ttf 1 t 22.8029 37.7468 101 ® -5.3829 50.4457 50.4457 -Georgia_Bold.ttf 1 t 22.8029 37.7468 102 © -5.6203 50.4457 50.4457 -Georgia_Bold.ttf 1 t 22.8029 37.7468 103 ] -6.4336 18.8830 52.5609 -Georgia_Bold.ttf 1 t 22.8029 37.7468 104 é -7.9230 30.1152 45.5819 -Georgia_Bold.ttf 1 t 22.8029 37.7468 105 z 8.5270 28.0000 28.0000 -Georgia_Bold.ttf 1 t 22.8029 37.7468 106 _ 41.5183 41.0560 2.7259 -Georgia_Bold.ttf 1 t 22.8029 37.7468 107 ¥ -4.0145 44.1379 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 1 t 7.9267 22.8029 37.7468 -Georgia_Bold.ttf 2 h 38.3109 44.3879 2 h -0.0175 38.3109 44.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 3 a 14.8086 31.8795 30.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 4 n 15.0523 38.5434 29.1940 -Georgia_Bold.ttf 2 h 38.3109 44.3879 5 P 3.9950 37.4968 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 6 o 15.1759 32.6103 30.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 7 e 15.1230 30.1152 30.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 8 : 16.6149 11.2741 29.1940 -Georgia_Bold.ttf 2 h 38.3109 44.3879 9 r 15.2801 29.1940 29.1940 -Georgia_Bold.ttf 2 h 38.3109 44.3879 10 l -0.2038 18.7339 44.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 11 i -0.6466 18.7339 44.8687 -Georgia_Bold.ttf 2 h 38.3109 44.3879 12 1 12.7298 23.6397 31.6891 -Georgia_Bold.ttf 2 h 38.3109 44.3879 13 | -0.1175 4.6330 56.5227 -Georgia_Bold.ttf 2 h 38.3109 44.3879 14 N 4.0475 47.1785 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 15 f -0.0546 28.2500 44.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 16 g 15.1934 32.5497 42.0000 -Georgia_Bold.ttf 2 h 38.3109 44.3879 17 d 0.2068 36.4457 45.5819 -Georgia_Bold.ttf 2 h 38.3109 44.3879 18 W 3.9685 68.0276 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 19 s 14.9903 25.8621 30.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 20 c 15.1246 28.9212 30.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 21 u 15.2730 38.2100 30.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 22 3 12.6225 32.5259 42.2500 -Georgia_Bold.ttf 2 h 38.3109 44.3879 23 ~ 21.9065 32.5497 12.2181 -Georgia_Bold.ttf 2 h 38.3109 44.3879 24 # 7.5763 32.2532 36.4457 -Georgia_Bold.ttf 2 h 38.3109 44.3879 25 O 3.0554 43.5511 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 26 ` -0.0199 15.1940 12.8060 -Georgia_Bold.ttf 2 h 38.3109 44.3879 27 @ 5.0009 47.4709 48.6411 -Georgia_Bold.ttf 2 h 38.3109 44.3879 28 F 3.8692 35.9650 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 29 S 2.9178 33.7437 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 30 p 14.9485 35.8397 42.0000 -Georgia_Bold.ttf 2 h 38.3109 44.3879 31 “ 1.1079 25.5049 20.0578 -Georgia_Bold.ttf 2 h 38.3109 44.3879 32 % 2.7329 46.1460 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 33 £ 2.5777 33.4471 41.6621 -Georgia_Bold.ttf 2 h 38.3109 44.3879 34 . 34.1661 11.2741 11.2741 -Georgia_Bold.ttf 2 h 38.3109 44.3879 35 2 12.7898 30.6653 31.6891 -Georgia_Bold.ttf 2 h 38.3109 44.3879 36 5 12.4330 31.3319 42.2500 -Georgia_Bold.ttf 2 h 38.3109 44.3879 37 m 15.0645 57.1474 29.1940 -Georgia_Bold.ttf 2 h 38.3109 44.3879 38 V 4.0548 47.4471 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 39 6 2.8595 32.2997 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 40 w 16.2995 50.4457 28.0000 -Georgia_Bold.ttf 2 h 38.3109 44.3879 41 T 4.3325 38.0802 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 42 M 3.8594 56.5455 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 43 G 2.6893 45.5865 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 44 b -0.3392 35.7325 45.9198 -Georgia_Bold.ttf 2 h 38.3109 44.3879 45 9 12.7484 32.6330 42.3571 -Georgia_Bold.ttf 2 h 38.3109 44.3879 46 ; 16.4907 11.5049 39.3813 -Georgia_Bold.ttf 2 h 38.3109 44.3879 47 D 3.9723 44.3879 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 48 L 3.9290 38.0196 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 49 y 16.2920 35.2710 40.8060 -Georgia_Bold.ttf 2 h 38.3109 44.3879 50 ‘ 1.2598 11.5049 20.0578 -Georgia_Bold.ttf 2 h 38.3109 44.3879 51 \ 1.2781 24.9408 55.3288 -Georgia_Bold.ttf 2 h 38.3109 44.3879 52 R 3.8337 46.2759 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 53 < 11.9685 28.2500 32.5259 -Georgia_Bold.ttf 2 h 38.3109 44.3879 54 4 12.6231 34.6684 42.2500 -Georgia_Bold.ttf 2 h 38.3109 44.3879 55 8 2.6213 33.3865 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 56 0 13.0511 34.6876 32.8830 -Georgia_Bold.ttf 2 h 38.3109 44.3879 57 A 3.7907 46.9902 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 58 E 4.1604 38.6908 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 59 B 4.0668 40.1348 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 60 v 16.3858 35.5017 28.0000 -Georgia_Bold.ttf 2 h 38.3109 44.3879 61 k 0.1487 37.9968 44.3879 -Georgia_Bold.ttf 2 h 38.3109 44.3879 62 J 4.2441 33.3235 41.6621 -Georgia_Bold.ttf 2 h 38.3109 44.3879 63 U 3.6123 46.9856 41.6621 -Georgia_Bold.ttf 2 h 38.3109 44.3879 64 j -0.3195 22.1730 57.6747 -Georgia_Bold.ttf 2 h 38.3109 44.3879 65 ( 1.3255 20.7483 52.5609 -Georgia_Bold.ttf 2 h 38.3109 44.3879 66 7 13.7539 30.0308 41.0560 -Georgia_Bold.ttf 2 h 38.3109 44.3879 67 § 2.8402 26.2192 48.4103 -Georgia_Bold.ttf 2 h 38.3109 44.3879 68 $ 0.6784 31.2486 51.7468 -Georgia_Bold.ttf 2 h 38.3109 44.3879 69 € 2.6874 41.2868 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 70 / 1.1972 24.9408 55.3288 -Georgia_Bold.ttf 2 h 38.3109 44.3879 71 C 3.0296 39.1489 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 72 * 2.6183 23.6397 21.2290 -Georgia_Bold.ttf 2 h 38.3109 44.3879 73 ” 1.4612 25.5049 20.0578 -Georgia_Bold.ttf 2 h 38.3109 44.3879 74 ? 2.5774 26.4727 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 75 { 1.6507 25.1716 52.5609 -Georgia_Bold.ttf 2 h 38.3109 44.3879 76 } 0.6557 25.1716 52.5609 -Georgia_Bold.ttf 2 h 38.3109 44.3879 77 , 34.7854 11.5049 20.7483 -Georgia_Bold.ttf 2 h 38.3109 44.3879 78 I 3.4570 21.7342 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 79 ° 2.5772 19.4471 18.8830 -Georgia_Bold.ttf 2 h 38.3109 44.3879 80 K 4.0852 47.4699 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 81 H 3.9256 49.0437 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 82 q 13.8115 36.1968 43.1940 -Georgia_Bold.ttf 2 h 38.3109 44.3879 83 & 2.7882 44.6379 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 84 ’ 1.1569 11.5049 20.0578 -Georgia_Bold.ttf 2 h 38.3109 44.3879 85 [ 0.8938 18.8830 52.5609 -Georgia_Bold.ttf 2 h 38.3109 44.3879 86 - 25.7763 17.3319 6.3078 -Georgia_Bold.ttf 2 h 38.3109 44.3879 87 Y 3.8911 46.5865 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 88 Q 2.8213 43.5511 53.5241 -Georgia_Bold.ttf 2 h 38.3109 44.3879 89 " 1.0644 23.0291 20.0578 -Georgia_Bold.ttf 2 h 38.3109 44.3879 90 ! 2.6587 10.9408 42.8561 -Georgia_Bold.ttf 2 h 38.3109 44.3879 91 x 16.4181 34.3078 28.0000 -Georgia_Bold.ttf 2 h 38.3109 44.3879 92 ) 1.1626 20.7483 52.5609 -Georgia_Bold.ttf 2 h 38.3109 44.3879 93 = 19.5439 30.3879 16.2451 -Georgia_Bold.ttf 2 h 38.3109 44.3879 94 + 12.1606 31.9572 31.9572 -Georgia_Bold.ttf 2 h 38.3109 44.3879 95 X 4.3554 47.1138 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 96 » 15.7861 28.0000 25.5049 -Georgia_Bold.ttf 2 h 38.3109 44.3879 97 ' 1.2741 9.3670 20.0578 -Georgia_Bold.ttf 2 h 38.3109 44.3879 98 ¢ 7.8718 29.6975 45.0592 -Georgia_Bold.ttf 2 h 38.3109 44.3879 99 Z 3.9198 40.1348 40.4681 -Georgia_Bold.ttf 2 h 38.3109 44.3879 100 > 11.8574 28.2500 32.5259 -Georgia_Bold.ttf 2 h 38.3109 44.3879 101 ® 2.4605 50.4457 50.4457 -Georgia_Bold.ttf 2 h 38.3109 44.3879 102 © 2.4415 50.4457 50.4457 -Georgia_Bold.ttf 2 h 38.3109 44.3879 103 ] 1.4675 18.8830 52.5609 -Georgia_Bold.ttf 2 h 38.3109 44.3879 104 é -0.2466 30.1152 45.5819 -Georgia_Bold.ttf 2 h 38.3109 44.3879 105 z 16.5745 28.0000 28.0000 -Georgia_Bold.ttf 2 h 38.3109 44.3879 106 _ 49.7053 41.0560 2.7259 -Georgia_Bold.ttf 2 h 38.3109 44.3879 107 ¥ 3.8833 44.1379 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 1 t -7.4613 22.8029 37.7468 -Georgia_Bold.ttf 3 a 31.8795 30.3879 2 h -15.2609 38.3109 44.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 3 a -0.1591 31.8795 30.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 4 n 0.0922 38.5434 29.1940 -Georgia_Bold.ttf 3 a 31.8795 30.3879 5 P -11.6201 37.4968 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 6 o -0.0005 32.6103 30.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 7 e 0.4541 30.1152 30.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 8 : 1.1426 11.2741 29.1940 -Georgia_Bold.ttf 3 a 31.8795 30.3879 9 r 0.1332 29.1940 29.1940 -Georgia_Bold.ttf 3 a 31.8795 30.3879 10 l -15.2472 18.7339 44.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 11 i -15.5037 18.7339 44.8687 -Georgia_Bold.ttf 3 a 31.8795 30.3879 12 1 -2.3166 23.6397 31.6891 -Georgia_Bold.ttf 3 a 31.8795 30.3879 13 | -14.9305 4.6330 56.5227 -Georgia_Bold.ttf 3 a 31.8795 30.3879 14 N -11.5160 47.1785 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 15 f -14.9679 28.2500 44.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 16 g -0.0022 32.5497 42.0000 -Georgia_Bold.ttf 3 a 31.8795 30.3879 17 d -15.2712 36.4457 45.5819 -Georgia_Bold.ttf 3 a 31.8795 30.3879 18 W -11.5258 68.0276 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 19 s 0.2382 25.8621 30.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 20 c -0.0958 28.9212 30.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 21 u 0.0873 38.2100 30.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 22 3 -2.5800 32.5259 42.2500 -Georgia_Bold.ttf 3 a 31.8795 30.3879 23 ~ 6.7373 32.5497 12.2181 -Georgia_Bold.ttf 3 a 31.8795 30.3879 24 # -6.8593 32.2532 36.4457 -Georgia_Bold.ttf 3 a 31.8795 30.3879 25 O -12.3221 43.5511 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 26 ` -14.9533 15.1940 12.8060 -Georgia_Bold.ttf 3 a 31.8795 30.3879 27 @ -10.0756 47.4709 48.6411 -Georgia_Bold.ttf 3 a 31.8795 30.3879 28 F -11.2741 35.9650 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 29 S -12.5066 33.7437 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 30 p -0.0876 35.8397 42.0000 -Georgia_Bold.ttf 3 a 31.8795 30.3879 31 “ -13.9060 25.5049 20.0578 -Georgia_Bold.ttf 3 a 31.8795 30.3879 32 % -12.4824 46.1460 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 33 £ -12.6437 33.4471 41.6621 -Georgia_Bold.ttf 3 a 31.8795 30.3879 34 . 19.1457 11.2741 11.2741 -Georgia_Bold.ttf 3 a 31.8795 30.3879 35 2 -2.2596 30.6653 31.6891 -Georgia_Bold.ttf 3 a 31.8795 30.3879 36 5 -2.3534 31.3319 42.2500 -Georgia_Bold.ttf 3 a 31.8795 30.3879 37 m 0.0801 57.1474 29.1940 -Georgia_Bold.ttf 3 a 31.8795 30.3879 38 V -11.3204 47.4471 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 39 6 -12.4570 32.2997 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 40 w 1.4771 50.4457 28.0000 -Georgia_Bold.ttf 3 a 31.8795 30.3879 41 T -11.4599 38.0802 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 42 M -11.5567 56.5455 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 43 G -12.3976 45.5865 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 44 b -15.2074 35.7325 45.9198 -Georgia_Bold.ttf 3 a 31.8795 30.3879 45 9 -2.6707 32.6330 42.3571 -Georgia_Bold.ttf 3 a 31.8795 30.3879 46 ; 1.5497 11.5049 39.3813 -Georgia_Bold.ttf 3 a 31.8795 30.3879 47 D -11.5124 44.3879 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 48 L -11.1125 38.0196 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 49 y 1.0190 35.2710 40.8060 -Georgia_Bold.ttf 3 a 31.8795 30.3879 50 ‘ -14.0863 11.5049 20.0578 -Georgia_Bold.ttf 3 a 31.8795 30.3879 51 \ -14.0108 24.9408 55.3288 -Georgia_Bold.ttf 3 a 31.8795 30.3879 52 R -10.8120 46.2759 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 53 < -3.1724 28.2500 32.5259 -Georgia_Bold.ttf 3 a 31.8795 30.3879 54 4 -2.4848 34.6684 42.2500 -Georgia_Bold.ttf 3 a 31.8795 30.3879 55 8 -12.1879 33.3865 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 56 0 -2.5335 34.6876 32.8830 -Georgia_Bold.ttf 3 a 31.8795 30.3879 57 A -11.2588 46.9902 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 58 E -11.5118 38.6908 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 59 B -11.1695 40.1348 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 60 v 1.3233 35.5017 28.0000 -Georgia_Bold.ttf 3 a 31.8795 30.3879 61 k -15.2951 37.9968 44.3879 -Georgia_Bold.ttf 3 a 31.8795 30.3879 62 J -11.3678 33.3235 41.6621 -Georgia_Bold.ttf 3 a 31.8795 30.3879 63 U -11.1680 46.9856 41.6621 -Georgia_Bold.ttf 3 a 31.8795 30.3879 64 j -15.8105 22.1730 57.6747 -Georgia_Bold.ttf 3 a 31.8795 30.3879 65 ( -14.2960 20.7483 52.5609 -Georgia_Bold.ttf 3 a 31.8795 30.3879 66 7 -1.1944 30.0308 41.0560 -Georgia_Bold.ttf 3 a 31.8795 30.3879 67 § -12.7846 26.2192 48.4103 -Georgia_Bold.ttf 3 a 31.8795 30.3879 68 $ -14.4755 31.2486 51.7468 -Georgia_Bold.ttf 3 a 31.8795 30.3879 69 € -12.5788 41.2868 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 70 / -13.9457 24.9408 55.3288 -Georgia_Bold.ttf 3 a 31.8795 30.3879 71 C -12.6308 39.1489 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 72 * -12.3593 23.6397 21.2290 -Georgia_Bold.ttf 3 a 31.8795 30.3879 73 ” -14.0666 25.5049 20.0578 -Georgia_Bold.ttf 3 a 31.8795 30.3879 74 ? -12.5022 26.4727 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 75 { -14.1960 25.1716 52.5609 -Georgia_Bold.ttf 3 a 31.8795 30.3879 76 } -14.1365 25.1716 52.5609 -Georgia_Bold.ttf 3 a 31.8795 30.3879 77 , 19.9883 11.5049 20.7483 -Georgia_Bold.ttf 3 a 31.8795 30.3879 78 I -11.2574 21.7342 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 79 ° -12.6045 19.4471 18.8830 -Georgia_Bold.ttf 3 a 31.8795 30.3879 80 K -11.2249 47.4699 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 81 H -10.7405 49.0437 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 82 q -0.9982 36.1968 43.1940 -Georgia_Bold.ttf 3 a 31.8795 30.3879 83 & -12.2471 44.6379 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 84 ’ -14.0930 11.5049 20.0578 -Georgia_Bold.ttf 3 a 31.8795 30.3879 85 [ -13.9325 18.8830 52.5609 -Georgia_Bold.ttf 3 a 31.8795 30.3879 86 - 10.8704 17.3319 6.3078 -Georgia_Bold.ttf 3 a 31.8795 30.3879 87 Y -10.9814 46.5865 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 88 Q -12.3880 43.5511 53.5241 -Georgia_Bold.ttf 3 a 31.8795 30.3879 89 " -14.1589 23.0291 20.0578 -Georgia_Bold.ttf 3 a 31.8795 30.3879 90 ! -12.6534 10.9408 42.8561 -Georgia_Bold.ttf 3 a 31.8795 30.3879 91 x 1.1303 34.3078 28.0000 -Georgia_Bold.ttf 3 a 31.8795 30.3879 92 ) -13.9496 20.7483 52.5609 -Georgia_Bold.ttf 3 a 31.8795 30.3879 93 = 4.4664 30.3879 16.2451 -Georgia_Bold.ttf 3 a 31.8795 30.3879 94 + -3.0928 31.9572 31.9572 -Georgia_Bold.ttf 3 a 31.8795 30.3879 95 X -11.1612 47.1138 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 96 » 1.0009 28.0000 25.5049 -Georgia_Bold.ttf 3 a 31.8795 30.3879 97 ' -14.0322 9.3670 20.0578 -Georgia_Bold.ttf 3 a 31.8795 30.3879 98 ¢ -7.1996 29.6975 45.0592 -Georgia_Bold.ttf 3 a 31.8795 30.3879 99 Z -11.2314 40.1348 40.4681 -Georgia_Bold.ttf 3 a 31.8795 30.3879 100 > -3.2422 28.2500 32.5259 -Georgia_Bold.ttf 3 a 31.8795 30.3879 101 ® -12.5575 50.4457 50.4457 -Georgia_Bold.ttf 3 a 31.8795 30.3879 102 © -12.8830 50.4457 50.4457 -Georgia_Bold.ttf 3 a 31.8795 30.3879 103 ] -14.1737 18.8830 52.5609 -Georgia_Bold.ttf 3 a 31.8795 30.3879 104 é -15.0771 30.1152 45.5819 -Georgia_Bold.ttf 3 a 31.8795 30.3879 105 z 1.1507 28.0000 28.0000 -Georgia_Bold.ttf 3 a 31.8795 30.3879 106 _ 34.2323 41.0560 2.7259 -Georgia_Bold.ttf 3 a 31.8795 30.3879 107 ¥ -11.2279 44.1379 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 1 t -7.3514 22.8029 37.7468 -Georgia_Bold.ttf 4 n 38.5434 29.1940 2 h -15.2351 38.3109 44.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 3 a -0.1426 31.8795 30.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 4 n 0.1202 38.5434 29.1940 -Georgia_Bold.ttf 4 n 38.5434 29.1940 5 P -11.0537 37.4968 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 6 o -0.1158 32.6103 30.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 7 e -0.0930 30.1152 30.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 8 : 1.1469 11.2741 29.1940 -Georgia_Bold.ttf 4 n 38.5434 29.1940 9 r -0.0083 29.1940 29.1940 -Georgia_Bold.ttf 4 n 38.5434 29.1940 10 l -15.2584 18.7339 44.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 11 i -15.6293 18.7339 44.8687 -Georgia_Bold.ttf 4 n 38.5434 29.1940 12 1 -2.6245 23.6397 31.6891 -Georgia_Bold.ttf 4 n 38.5434 29.1940 13 | -15.2170 4.6330 56.5227 -Georgia_Bold.ttf 4 n 38.5434 29.1940 14 N -11.1126 47.1785 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 15 f -14.9711 28.2500 44.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 16 g -0.0368 32.5497 42.0000 -Georgia_Bold.ttf 4 n 38.5434 29.1940 17 d -15.0335 36.4457 45.5819 -Georgia_Bold.ttf 4 n 38.5434 29.1940 18 W -11.4470 68.0276 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 19 s -0.0658 25.8621 30.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 20 c 0.2960 28.9212 30.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 21 u 0.2677 38.2100 30.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 22 3 -2.5298 32.5259 42.2500 -Georgia_Bold.ttf 4 n 38.5434 29.1940 23 ~ 6.6891 32.5497 12.2181 -Georgia_Bold.ttf 4 n 38.5434 29.1940 24 # -7.4036 32.2532 36.4457 -Georgia_Bold.ttf 4 n 38.5434 29.1940 25 O -12.3070 43.5511 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 26 ` -15.1888 15.1940 12.8060 -Georgia_Bold.ttf 4 n 38.5434 29.1940 27 @ -10.3772 47.4709 48.6411 -Georgia_Bold.ttf 4 n 38.5434 29.1940 28 F -11.1675 35.9650 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 29 S -12.2105 33.7437 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 30 p 0.0718 35.8397 42.0000 -Georgia_Bold.ttf 4 n 38.5434 29.1940 31 “ -14.0417 25.5049 20.0578 -Georgia_Bold.ttf 4 n 38.5434 29.1940 32 % -12.5991 46.1460 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 33 £ -12.3090 33.4471 41.6621 -Georgia_Bold.ttf 4 n 38.5434 29.1940 34 . 19.3330 11.2741 11.2741 -Georgia_Bold.ttf 4 n 38.5434 29.1940 35 2 -2.6344 30.6653 31.6891 -Georgia_Bold.ttf 4 n 38.5434 29.1940 36 5 -2.1897 31.3319 42.2500 -Georgia_Bold.ttf 4 n 38.5434 29.1940 37 m -0.0917 57.1474 29.1940 -Georgia_Bold.ttf 4 n 38.5434 29.1940 38 V -11.0448 47.4471 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 39 6 -12.6636 32.2997 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 40 w 1.2004 50.4457 28.0000 -Georgia_Bold.ttf 4 n 38.5434 29.1940 41 T -11.2822 38.0802 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 42 M -11.6096 56.5455 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 43 G -12.5482 45.5865 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 44 b -15.2176 35.7325 45.9198 -Georgia_Bold.ttf 4 n 38.5434 29.1940 45 9 -2.1676 32.6330 42.3571 -Georgia_Bold.ttf 4 n 38.5434 29.1940 46 ; 1.2821 11.5049 39.3813 -Georgia_Bold.ttf 4 n 38.5434 29.1940 47 D -10.9321 44.3879 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 48 L -11.4406 38.0196 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 49 y 1.1170 35.2710 40.8060 -Georgia_Bold.ttf 4 n 38.5434 29.1940 50 ‘ -14.2248 11.5049 20.0578 -Georgia_Bold.ttf 4 n 38.5434 29.1940 51 \ -13.9545 24.9408 55.3288 -Georgia_Bold.ttf 4 n 38.5434 29.1940 52 R -10.9747 46.2759 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 53 < -3.2365 28.2500 32.5259 -Georgia_Bold.ttf 4 n 38.5434 29.1940 54 4 -2.3453 34.6684 42.2500 -Georgia_Bold.ttf 4 n 38.5434 29.1940 55 8 -12.2971 33.3865 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 56 0 -2.6432 34.6876 32.8830 -Georgia_Bold.ttf 4 n 38.5434 29.1940 57 A -11.1230 46.9902 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 58 E -11.4327 38.6908 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 59 B -11.3217 40.1348 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 60 v 1.2408 35.5017 28.0000 -Georgia_Bold.ttf 4 n 38.5434 29.1940 61 k -15.2531 37.9968 44.3879 -Georgia_Bold.ttf 4 n 38.5434 29.1940 62 J -11.2863 33.3235 41.6621 -Georgia_Bold.ttf 4 n 38.5434 29.1940 63 U -11.1825 46.9856 41.6621 -Georgia_Bold.ttf 4 n 38.5434 29.1940 64 j -15.6992 22.1730 57.6747 -Georgia_Bold.ttf 4 n 38.5434 29.1940 65 ( -13.7952 20.7483 52.5609 -Georgia_Bold.ttf 4 n 38.5434 29.1940 66 7 -1.3859 30.0308 41.0560 -Georgia_Bold.ttf 4 n 38.5434 29.1940 67 § -12.3894 26.2192 48.4103 -Georgia_Bold.ttf 4 n 38.5434 29.1940 68 $ -14.5100 31.2486 51.7468 -Georgia_Bold.ttf 4 n 38.5434 29.1940 69 € -12.4328 41.2868 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 70 / -14.2659 24.9408 55.3288 -Georgia_Bold.ttf 4 n 38.5434 29.1940 71 C -12.4703 39.1489 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 72 * -12.4764 23.6397 21.2290 -Georgia_Bold.ttf 4 n 38.5434 29.1940 73 ” -14.1971 25.5049 20.0578 -Georgia_Bold.ttf 4 n 38.5434 29.1940 74 ? -12.5526 26.4727 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 75 { -13.9610 25.1716 52.5609 -Georgia_Bold.ttf 4 n 38.5434 29.1940 76 } -13.9898 25.1716 52.5609 -Georgia_Bold.ttf 4 n 38.5434 29.1940 77 , 19.8104 11.5049 20.7483 -Georgia_Bold.ttf 4 n 38.5434 29.1940 78 I -11.2642 21.7342 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 79 ° -12.5681 19.4471 18.8830 -Georgia_Bold.ttf 4 n 38.5434 29.1940 80 K -11.5274 47.4699 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 81 H -11.1220 49.0437 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 82 q -1.5226 36.1968 43.1940 -Georgia_Bold.ttf 4 n 38.5434 29.1940 83 & -12.4402 44.6379 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 84 ’ -13.5637 11.5049 20.0578 -Georgia_Bold.ttf 4 n 38.5434 29.1940 85 [ -13.7502 18.8830 52.5609 -Georgia_Bold.ttf 4 n 38.5434 29.1940 86 - 10.6260 17.3319 6.3078 -Georgia_Bold.ttf 4 n 38.5434 29.1940 87 Y -11.0539 46.5865 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 88 Q -12.3096 43.5511 53.5241 -Georgia_Bold.ttf 4 n 38.5434 29.1940 89 " -14.0693 23.0291 20.0578 -Georgia_Bold.ttf 4 n 38.5434 29.1940 90 ! -12.1558 10.9408 42.8561 -Georgia_Bold.ttf 4 n 38.5434 29.1940 91 x 1.2138 34.3078 28.0000 -Georgia_Bold.ttf 4 n 38.5434 29.1940 92 ) -14.0158 20.7483 52.5609 -Georgia_Bold.ttf 4 n 38.5434 29.1940 93 = 4.8638 30.3879 16.2451 -Georgia_Bold.ttf 4 n 38.5434 29.1940 94 + -3.1089 31.9572 31.9572 -Georgia_Bold.ttf 4 n 38.5434 29.1940 95 X -11.1838 47.1138 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 96 » 1.0426 28.0000 25.5049 -Georgia_Bold.ttf 4 n 38.5434 29.1940 97 ' -14.0610 9.3670 20.0578 -Georgia_Bold.ttf 4 n 38.5434 29.1940 98 ¢ -7.1993 29.6975 45.0592 -Georgia_Bold.ttf 4 n 38.5434 29.1940 99 Z -11.3290 40.1348 40.4681 -Georgia_Bold.ttf 4 n 38.5434 29.1940 100 > -2.9639 28.2500 32.5259 -Georgia_Bold.ttf 4 n 38.5434 29.1940 101 ® -13.0021 50.4457 50.4457 -Georgia_Bold.ttf 4 n 38.5434 29.1940 102 © -13.0891 50.4457 50.4457 -Georgia_Bold.ttf 4 n 38.5434 29.1940 103 ] -14.0982 18.8830 52.5609 -Georgia_Bold.ttf 4 n 38.5434 29.1940 104 é -14.8493 30.1152 45.5819 -Georgia_Bold.ttf 4 n 38.5434 29.1940 105 z 1.2400 28.0000 28.0000 -Georgia_Bold.ttf 4 n 38.5434 29.1940 106 _ 34.2686 41.0560 2.7259 -Georgia_Bold.ttf 4 n 38.5434 29.1940 107 ¥ -11.1726 44.1379 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 1 t 3.8341 22.8029 37.7468 -Georgia_Bold.ttf 5 P 37.4968 40.4681 2 h -3.8827 38.3109 44.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 3 a 11.2185 31.8795 30.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 4 n 11.5277 38.5434 29.1940 -Georgia_Bold.ttf 5 P 37.4968 40.4681 5 P 0.1815 37.4968 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 6 o 11.4378 32.6103 30.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 7 e 11.5034 30.1152 30.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 8 : 12.3942 11.2741 29.1940 -Georgia_Bold.ttf 5 P 37.4968 40.4681 9 r 11.2769 29.1940 29.1940 -Georgia_Bold.ttf 5 P 37.4968 40.4681 10 l -3.9230 18.7339 44.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 11 i -4.6317 18.7339 44.8687 -Georgia_Bold.ttf 5 P 37.4968 40.4681 12 1 8.8305 23.6397 31.6891 -Georgia_Bold.ttf 5 P 37.4968 40.4681 13 | -3.8397 4.6330 56.5227 -Georgia_Bold.ttf 5 P 37.4968 40.4681 14 N -0.1569 47.1785 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 15 f -3.6631 28.2500 44.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 16 g 11.1046 32.5497 42.0000 -Georgia_Bold.ttf 5 P 37.4968 40.4681 17 d -3.6873 36.4457 45.5819 -Georgia_Bold.ttf 5 P 37.4968 40.4681 18 W -0.3140 68.0276 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 19 s 11.7054 25.8621 30.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 20 c 11.1615 28.9212 30.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 21 u 11.0177 38.2100 30.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 22 3 8.9644 32.5259 42.2500 -Georgia_Bold.ttf 5 P 37.4968 40.4681 23 ~ 18.2772 32.5497 12.2181 -Georgia_Bold.ttf 5 P 37.4968 40.4681 24 # 3.9662 32.2532 36.4457 -Georgia_Bold.ttf 5 P 37.4968 40.4681 25 O -1.0184 43.5511 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 26 ` -3.9551 15.1940 12.8060 -Georgia_Bold.ttf 5 P 37.4968 40.4681 27 @ 1.3461 47.4709 48.6411 -Georgia_Bold.ttf 5 P 37.4968 40.4681 28 F -0.1882 35.9650 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 29 S -1.1946 33.7437 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 30 p 11.0468 35.8397 42.0000 -Georgia_Bold.ttf 5 P 37.4968 40.4681 31 “ -2.7829 25.5049 20.0578 -Georgia_Bold.ttf 5 P 37.4968 40.4681 32 % -1.0229 46.1460 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 33 £ -1.2099 33.4471 41.6621 -Georgia_Bold.ttf 5 P 37.4968 40.4681 34 . 30.4041 11.2741 11.2741 -Georgia_Bold.ttf 5 P 37.4968 40.4681 35 2 8.7599 30.6653 31.6891 -Georgia_Bold.ttf 5 P 37.4968 40.4681 36 5 8.7549 31.3319 42.2500 -Georgia_Bold.ttf 5 P 37.4968 40.4681 37 m 11.3116 57.1474 29.1940 -Georgia_Bold.ttf 5 P 37.4968 40.4681 38 V 0.0632 47.4471 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 39 6 -1.1324 32.2997 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 40 w 12.4450 50.4457 28.0000 -Georgia_Bold.ttf 5 P 37.4968 40.4681 41 T -0.0306 38.0802 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 42 M -0.1234 56.5455 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 43 G -1.0275 45.5865 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 44 b -3.7402 35.7325 45.9198 -Georgia_Bold.ttf 5 P 37.4968 40.4681 45 9 8.8426 32.6330 42.3571 -Georgia_Bold.ttf 5 P 37.4968 40.4681 46 ; 12.3547 11.5049 39.3813 -Georgia_Bold.ttf 5 P 37.4968 40.4681 47 D -0.0499 44.3879 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 48 L -0.1409 38.0196 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 49 y 12.5738 35.2710 40.8060 -Georgia_Bold.ttf 5 P 37.4968 40.4681 50 ‘ -2.7113 11.5049 20.0578 -Georgia_Bold.ttf 5 P 37.4968 40.4681 51 \ -2.4414 24.9408 55.3288 -Georgia_Bold.ttf 5 P 37.4968 40.4681 52 R -0.1826 46.2759 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 53 < 8.0256 28.2500 32.5259 -Georgia_Bold.ttf 5 P 37.4968 40.4681 54 4 8.6909 34.6684 42.2500 -Georgia_Bold.ttf 5 P 37.4968 40.4681 55 8 -1.2507 33.3865 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 56 0 8.7094 34.6876 32.8830 -Georgia_Bold.ttf 5 P 37.4968 40.4681 57 A -0.1742 46.9902 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 58 E -0.1336 38.6908 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 59 B -0.3939 40.1348 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 60 v 12.3297 35.5017 28.0000 -Georgia_Bold.ttf 5 P 37.4968 40.4681 61 k -4.0161 37.9968 44.3879 -Georgia_Bold.ttf 5 P 37.4968 40.4681 62 J 0.1768 33.3235 41.6621 -Georgia_Bold.ttf 5 P 37.4968 40.4681 63 U 0.0220 46.9856 41.6621 -Georgia_Bold.ttf 5 P 37.4968 40.4681 64 j -4.0564 22.1730 57.6747 -Georgia_Bold.ttf 5 P 37.4968 40.4681 65 ( -2.4002 20.7483 52.5609 -Georgia_Bold.ttf 5 P 37.4968 40.4681 66 7 9.9511 30.0308 41.0560 -Georgia_Bold.ttf 5 P 37.4968 40.4681 67 § -1.0003 26.2192 48.4103 -Georgia_Bold.ttf 5 P 37.4968 40.4681 68 $ -3.0889 31.2486 51.7468 -Georgia_Bold.ttf 5 P 37.4968 40.4681 69 € -1.2922 41.2868 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 70 / -2.9450 24.9408 55.3288 -Georgia_Bold.ttf 5 P 37.4968 40.4681 71 C -1.0322 39.1489 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 72 * -1.2492 23.6397 21.2290 -Georgia_Bold.ttf 5 P 37.4968 40.4681 73 ” -2.8941 25.5049 20.0578 -Georgia_Bold.ttf 5 P 37.4968 40.4681 74 ? -1.1947 26.4727 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 75 { -2.9334 25.1716 52.5609 -Georgia_Bold.ttf 5 P 37.4968 40.4681 76 } -2.9046 25.1716 52.5609 -Georgia_Bold.ttf 5 P 37.4968 40.4681 77 , 31.2291 11.5049 20.7483 -Georgia_Bold.ttf 5 P 37.4968 40.4681 78 I -0.1690 21.7342 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 79 ° -0.8916 19.4471 18.8830 -Georgia_Bold.ttf 5 P 37.4968 40.4681 80 K -0.0679 47.4699 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 81 H -0.1600 49.0437 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 82 q 10.1358 36.1968 43.1940 -Georgia_Bold.ttf 5 P 37.4968 40.4681 83 & -1.0173 44.6379 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 84 ’ -2.6044 11.5049 20.0578 -Georgia_Bold.ttf 5 P 37.4968 40.4681 85 [ -2.4580 18.8830 52.5609 -Georgia_Bold.ttf 5 P 37.4968 40.4681 86 - 21.5269 17.3319 6.3078 -Georgia_Bold.ttf 5 P 37.4968 40.4681 87 Y -0.1879 46.5865 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 88 Q -0.9439 43.5511 53.5241 -Georgia_Bold.ttf 5 P 37.4968 40.4681 89 " -2.4576 23.0291 20.0578 -Georgia_Bold.ttf 5 P 37.4968 40.4681 90 ! -1.3779 10.9408 42.8561 -Georgia_Bold.ttf 5 P 37.4968 40.4681 91 x 12.6359 34.3078 28.0000 -Georgia_Bold.ttf 5 P 37.4968 40.4681 92 ) -2.9977 20.7483 52.5609 -Georgia_Bold.ttf 5 P 37.4968 40.4681 93 = 16.0002 30.3879 16.2451 -Georgia_Bold.ttf 5 P 37.4968 40.4681 94 + 8.1210 31.9572 31.9572 -Georgia_Bold.ttf 5 P 37.4968 40.4681 95 X 0.0728 47.1138 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 96 » 12.3518 28.0000 25.5049 -Georgia_Bold.ttf 5 P 37.4968 40.4681 97 ' -2.5530 9.3670 20.0578 -Georgia_Bold.ttf 5 P 37.4968 40.4681 98 ¢ 3.8918 29.6975 45.0592 -Georgia_Bold.ttf 5 P 37.4968 40.4681 99 Z -0.0643 40.1348 40.4681 -Georgia_Bold.ttf 5 P 37.4968 40.4681 100 > 7.8551 28.2500 32.5259 -Georgia_Bold.ttf 5 P 37.4968 40.4681 101 ® -1.8478 50.4457 50.4457 -Georgia_Bold.ttf 5 P 37.4968 40.4681 102 © -1.5373 50.4457 50.4457 -Georgia_Bold.ttf 5 P 37.4968 40.4681 103 ] -2.9106 18.8830 52.5609 -Georgia_Bold.ttf 5 P 37.4968 40.4681 104 é -3.8359 30.1152 45.5819 -Georgia_Bold.ttf 5 P 37.4968 40.4681 105 z 12.3179 28.0000 28.0000 -Georgia_Bold.ttf 5 P 37.4968 40.4681 106 _ 45.6555 41.0560 2.7259 -Georgia_Bold.ttf 5 P 37.4968 40.4681 107 ¥ -0.0508 44.1379 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 1 t -7.4779 22.8029 37.7468 -Georgia_Bold.ttf 6 o 32.6103 30.3879 2 h -15.3528 38.3109 44.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 3 a -0.0056 31.8795 30.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 4 n -0.0833 38.5434 29.1940 -Georgia_Bold.ttf 6 o 32.6103 30.3879 5 P -11.2766 37.4968 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 6 o -0.1998 32.6103 30.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 7 e -0.0710 30.1152 30.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 8 : 1.1017 11.2741 29.1940 -Georgia_Bold.ttf 6 o 32.6103 30.3879 9 r -0.0968 29.1940 29.1940 -Georgia_Bold.ttf 6 o 32.6103 30.3879 10 l -15.3356 18.7339 44.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 11 i -15.8757 18.7339 44.8687 -Georgia_Bold.ttf 6 o 32.6103 30.3879 12 1 -2.5246 23.6397 31.6891 -Georgia_Bold.ttf 6 o 32.6103 30.3879 13 | -15.0461 4.6330 56.5227 -Georgia_Bold.ttf 6 o 32.6103 30.3879 14 N -11.0930 47.1785 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 15 f -15.1593 28.2500 44.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 16 g 0.1339 32.5497 42.0000 -Georgia_Bold.ttf 6 o 32.6103 30.3879 17 d -15.6632 36.4457 45.5819 -Georgia_Bold.ttf 6 o 32.6103 30.3879 18 W -11.1156 68.0276 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 19 s 0.0538 25.8621 30.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 20 c 0.2312 28.9212 30.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 21 u 0.0440 38.2100 30.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 22 3 -2.5387 32.5259 42.2500 -Georgia_Bold.ttf 6 o 32.6103 30.3879 23 ~ 6.7367 32.5497 12.2181 -Georgia_Bold.ttf 6 o 32.6103 30.3879 24 # -7.3224 32.2532 36.4457 -Georgia_Bold.ttf 6 o 32.6103 30.3879 25 O -12.2146 43.5511 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 26 ` -15.1687 15.1940 12.8060 -Georgia_Bold.ttf 6 o 32.6103 30.3879 27 @ -10.2485 47.4709 48.6411 -Georgia_Bold.ttf 6 o 32.6103 30.3879 28 F -11.4696 35.9650 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 29 S -12.3523 33.7437 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 30 p -0.0812 35.8397 42.0000 -Georgia_Bold.ttf 6 o 32.6103 30.3879 31 “ -14.0919 25.5049 20.0578 -Georgia_Bold.ttf 6 o 32.6103 30.3879 32 % -12.6581 46.1460 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 33 £ -12.4418 33.4471 41.6621 -Georgia_Bold.ttf 6 o 32.6103 30.3879 34 . 19.1763 11.2741 11.2741 -Georgia_Bold.ttf 6 o 32.6103 30.3879 35 2 -2.5298 30.6653 31.6891 -Georgia_Bold.ttf 6 o 32.6103 30.3879 36 5 -2.6456 31.3319 42.2500 -Georgia_Bold.ttf 6 o 32.6103 30.3879 37 m 0.1196 57.1474 29.1940 -Georgia_Bold.ttf 6 o 32.6103 30.3879 38 V -11.3126 47.4471 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 39 6 -12.3467 32.2997 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 40 w 1.1596 50.4457 28.0000 -Georgia_Bold.ttf 6 o 32.6103 30.3879 41 T -11.1171 38.0802 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 42 M -11.4642 56.5455 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 43 G -12.5695 45.5865 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 44 b -15.0910 35.7325 45.9198 -Georgia_Bold.ttf 6 o 32.6103 30.3879 45 9 -2.8137 32.6330 42.3571 -Georgia_Bold.ttf 6 o 32.6103 30.3879 46 ; 1.1660 11.5049 39.3813 -Georgia_Bold.ttf 6 o 32.6103 30.3879 47 D -11.0721 44.3879 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 48 L -11.3483 38.0196 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 49 y 1.3483 35.2710 40.8060 -Georgia_Bold.ttf 6 o 32.6103 30.3879 50 ‘ -13.8994 11.5049 20.0578 -Georgia_Bold.ttf 6 o 32.6103 30.3879 51 \ -14.2027 24.9408 55.3288 -Georgia_Bold.ttf 6 o 32.6103 30.3879 52 R -11.1968 46.2759 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 53 < -3.3915 28.2500 32.5259 -Georgia_Bold.ttf 6 o 32.6103 30.3879 54 4 -2.7043 34.6684 42.2500 -Georgia_Bold.ttf 6 o 32.6103 30.3879 55 8 -12.5052 33.3865 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 56 0 -2.1690 34.6876 32.8830 -Georgia_Bold.ttf 6 o 32.6103 30.3879 57 A -10.9526 46.9902 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 58 E -10.9443 38.6908 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 59 B -11.5217 40.1348 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 60 v 1.1166 35.5017 28.0000 -Georgia_Bold.ttf 6 o 32.6103 30.3879 61 k -15.3783 37.9968 44.3879 -Georgia_Bold.ttf 6 o 32.6103 30.3879 62 J -11.2500 33.3235 41.6621 -Georgia_Bold.ttf 6 o 32.6103 30.3879 63 U -11.2941 46.9856 41.6621 -Georgia_Bold.ttf 6 o 32.6103 30.3879 64 j -15.5134 22.1730 57.6747 -Georgia_Bold.ttf 6 o 32.6103 30.3879 65 ( -13.8768 20.7483 52.5609 -Georgia_Bold.ttf 6 o 32.6103 30.3879 66 7 -0.9019 30.0308 41.0560 -Georgia_Bold.ttf 6 o 32.6103 30.3879 67 § -12.5127 26.2192 48.4103 -Georgia_Bold.ttf 6 o 32.6103 30.3879 68 $ -14.5688 31.2486 51.7468 -Georgia_Bold.ttf 6 o 32.6103 30.3879 69 € -12.2764 41.2868 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 70 / -14.5073 24.9408 55.3288 -Georgia_Bold.ttf 6 o 32.6103 30.3879 71 C -12.6080 39.1489 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 72 * -12.2609 23.6397 21.2290 -Georgia_Bold.ttf 6 o 32.6103 30.3879 73 ” -13.9903 25.5049 20.0578 -Georgia_Bold.ttf 6 o 32.6103 30.3879 74 ? -12.6862 26.4727 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 75 { -13.9199 25.1716 52.5609 -Georgia_Bold.ttf 6 o 32.6103 30.3879 76 } -13.8486 25.1716 52.5609 -Georgia_Bold.ttf 6 o 32.6103 30.3879 77 , 19.6983 11.5049 20.7483 -Georgia_Bold.ttf 6 o 32.6103 30.3879 78 I -11.3715 21.7342 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 79 ° -12.8165 19.4471 18.8830 -Georgia_Bold.ttf 6 o 32.6103 30.3879 80 K -11.1249 47.4699 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 81 H -11.3306 49.0437 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 82 q -1.3771 36.1968 43.1940 -Georgia_Bold.ttf 6 o 32.6103 30.3879 83 & -12.5377 44.6379 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 84 ’ -13.9962 11.5049 20.0578 -Georgia_Bold.ttf 6 o 32.6103 30.3879 85 [ -13.9940 18.8830 52.5609 -Georgia_Bold.ttf 6 o 32.6103 30.3879 86 - 10.4048 17.3319 6.3078 -Georgia_Bold.ttf 6 o 32.6103 30.3879 87 Y -11.1513 46.5865 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 88 Q -12.3138 43.5511 53.5241 -Georgia_Bold.ttf 6 o 32.6103 30.3879 89 " -14.1686 23.0291 20.0578 -Georgia_Bold.ttf 6 o 32.6103 30.3879 90 ! -12.4767 10.9408 42.8561 -Georgia_Bold.ttf 6 o 32.6103 30.3879 91 x 1.0593 34.3078 28.0000 -Georgia_Bold.ttf 6 o 32.6103 30.3879 92 ) -13.7940 20.7483 52.5609 -Georgia_Bold.ttf 6 o 32.6103 30.3879 93 = 4.7132 30.3879 16.2451 -Georgia_Bold.ttf 6 o 32.6103 30.3879 94 + -2.9952 31.9572 31.9572 -Georgia_Bold.ttf 6 o 32.6103 30.3879 95 X -10.9800 47.1138 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 96 » 1.2522 28.0000 25.5049 -Georgia_Bold.ttf 6 o 32.6103 30.3879 97 ' -13.9076 9.3670 20.0578 -Georgia_Bold.ttf 6 o 32.6103 30.3879 98 ¢ -7.2653 29.6975 45.0592 -Georgia_Bold.ttf 6 o 32.6103 30.3879 99 Z -11.2367 40.1348 40.4681 -Georgia_Bold.ttf 6 o 32.6103 30.3879 100 > -3.7125 28.2500 32.5259 -Georgia_Bold.ttf 6 o 32.6103 30.3879 101 ® -12.7508 50.4457 50.4457 -Georgia_Bold.ttf 6 o 32.6103 30.3879 102 © -12.8025 50.4457 50.4457 -Georgia_Bold.ttf 6 o 32.6103 30.3879 103 ] -13.9851 18.8830 52.5609 -Georgia_Bold.ttf 6 o 32.6103 30.3879 104 é -15.0275 30.1152 45.5819 -Georgia_Bold.ttf 6 o 32.6103 30.3879 105 z 1.0802 28.0000 28.0000 -Georgia_Bold.ttf 6 o 32.6103 30.3879 106 _ 34.2722 41.0560 2.7259 -Georgia_Bold.ttf 6 o 32.6103 30.3879 107 ¥ -11.3465 44.1379 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 1 t -7.4551 22.8029 37.7468 -Georgia_Bold.ttf 7 e 30.1152 30.3879 2 h -15.4219 38.3109 44.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 3 a 0.0150 31.8795 30.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 4 n -0.2178 38.5434 29.1940 -Georgia_Bold.ttf 7 e 30.1152 30.3879 5 P -11.4634 37.4968 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 6 o 0.2649 32.6103 30.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 7 e 0.0955 30.1152 30.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 8 : 1.3483 11.2741 29.1940 -Georgia_Bold.ttf 7 e 30.1152 30.3879 9 r -0.2035 29.1940 29.1940 -Georgia_Bold.ttf 7 e 30.1152 30.3879 10 l -14.8502 18.7339 44.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 11 i -15.8055 18.7339 44.8687 -Georgia_Bold.ttf 7 e 30.1152 30.3879 12 1 -2.3596 23.6397 31.6891 -Georgia_Bold.ttf 7 e 30.1152 30.3879 13 | -15.3800 4.6330 56.5227 -Georgia_Bold.ttf 7 e 30.1152 30.3879 14 N -11.3608 47.1785 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 15 f -14.8246 28.2500 44.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 16 g -0.3702 32.5497 42.0000 -Georgia_Bold.ttf 7 e 30.1152 30.3879 17 d -15.4080 36.4457 45.5819 -Georgia_Bold.ttf 7 e 30.1152 30.3879 18 W -11.3959 68.0276 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 19 s 0.0536 25.8621 30.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 20 c -0.0406 28.9212 30.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 21 u 0.2068 38.2100 30.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 22 3 -2.4626 32.5259 42.2500 -Georgia_Bold.ttf 7 e 30.1152 30.3879 23 ~ 6.4378 32.5497 12.2181 -Georgia_Bold.ttf 7 e 30.1152 30.3879 24 # -6.5925 32.2532 36.4457 -Georgia_Bold.ttf 7 e 30.1152 30.3879 25 O -12.5581 43.5511 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 26 ` -15.2335 15.1940 12.8060 -Georgia_Bold.ttf 7 e 30.1152 30.3879 27 @ -10.0449 47.4709 48.6411 -Georgia_Bold.ttf 7 e 30.1152 30.3879 28 F -11.7966 35.9650 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 29 S -12.4455 33.7437 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 30 p -0.0780 35.8397 42.0000 -Georgia_Bold.ttf 7 e 30.1152 30.3879 31 “ -14.0143 25.5049 20.0578 -Georgia_Bold.ttf 7 e 30.1152 30.3879 32 % -12.6310 46.1460 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 33 £ -12.1619 33.4471 41.6621 -Georgia_Bold.ttf 7 e 30.1152 30.3879 34 . 19.2084 11.2741 11.2741 -Georgia_Bold.ttf 7 e 30.1152 30.3879 35 2 -2.7172 30.6653 31.6891 -Georgia_Bold.ttf 7 e 30.1152 30.3879 36 5 -2.2292 31.3319 42.2500 -Georgia_Bold.ttf 7 e 30.1152 30.3879 37 m 0.2498 57.1474 29.1940 -Georgia_Bold.ttf 7 e 30.1152 30.3879 38 V -11.0698 47.4471 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 39 6 -12.3523 32.2997 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 40 w 1.0685 50.4457 28.0000 -Georgia_Bold.ttf 7 e 30.1152 30.3879 41 T -10.8629 38.0802 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 42 M -11.2411 56.5455 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 43 G -12.2159 45.5865 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 44 b -15.1940 35.7325 45.9198 -Georgia_Bold.ttf 7 e 30.1152 30.3879 45 9 -2.4007 32.6330 42.3571 -Georgia_Bold.ttf 7 e 30.1152 30.3879 46 ; 1.3219 11.5049 39.3813 -Georgia_Bold.ttf 7 e 30.1152 30.3879 47 D -11.2357 44.3879 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 48 L -11.1034 38.0196 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 49 y 1.1453 35.2710 40.8060 -Georgia_Bold.ttf 7 e 30.1152 30.3879 50 ‘ -14.0006 11.5049 20.0578 -Georgia_Bold.ttf 7 e 30.1152 30.3879 51 \ -13.7381 24.9408 55.3288 -Georgia_Bold.ttf 7 e 30.1152 30.3879 52 R -11.4605 46.2759 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 53 < -3.1970 28.2500 32.5259 -Georgia_Bold.ttf 7 e 30.1152 30.3879 54 4 -2.4609 34.6684 42.2500 -Georgia_Bold.ttf 7 e 30.1152 30.3879 55 8 -12.6151 33.3865 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 56 0 -2.3464 34.6876 32.8830 -Georgia_Bold.ttf 7 e 30.1152 30.3879 57 A -11.1825 46.9902 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 58 E -11.3688 38.6908 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 59 B -11.0614 40.1348 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 60 v 1.4585 35.5017 28.0000 -Georgia_Bold.ttf 7 e 30.1152 30.3879 61 k -15.2053 37.9968 44.3879 -Georgia_Bold.ttf 7 e 30.1152 30.3879 62 J -11.0564 33.3235 41.6621 -Georgia_Bold.ttf 7 e 30.1152 30.3879 63 U -11.4327 46.9856 41.6621 -Georgia_Bold.ttf 7 e 30.1152 30.3879 64 j -15.7121 22.1730 57.6747 -Georgia_Bold.ttf 7 e 30.1152 30.3879 65 ( -14.2946 20.7483 52.5609 -Georgia_Bold.ttf 7 e 30.1152 30.3879 66 7 -1.2094 30.0308 41.0560 -Georgia_Bold.ttf 7 e 30.1152 30.3879 67 § -12.3971 26.2192 48.4103 -Georgia_Bold.ttf 7 e 30.1152 30.3879 68 $ -14.4196 31.2486 51.7468 -Georgia_Bold.ttf 7 e 30.1152 30.3879 69 € -12.6155 41.2868 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 70 / -14.1696 24.9408 55.3288 -Georgia_Bold.ttf 7 e 30.1152 30.3879 71 C -12.4968 39.1489 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 72 * -12.5853 23.6397 21.2290 -Georgia_Bold.ttf 7 e 30.1152 30.3879 73 ” -13.9290 25.5049 20.0578 -Georgia_Bold.ttf 7 e 30.1152 30.3879 74 ? -12.4773 26.4727 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 75 { -13.9626 25.1716 52.5609 -Georgia_Bold.ttf 7 e 30.1152 30.3879 76 } -14.0105 25.1716 52.5609 -Georgia_Bold.ttf 7 e 30.1152 30.3879 77 , 19.9071 11.5049 20.7483 -Georgia_Bold.ttf 7 e 30.1152 30.3879 78 I -11.2000 21.7342 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 79 ° -12.4687 19.4471 18.8830 -Georgia_Bold.ttf 7 e 30.1152 30.3879 80 K -11.2537 47.4699 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 81 H -11.5771 49.0437 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 82 q -1.3286 36.1968 43.1940 -Georgia_Bold.ttf 7 e 30.1152 30.3879 83 & -12.3559 44.6379 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 84 ’ -14.2158 11.5049 20.0578 -Georgia_Bold.ttf 7 e 30.1152 30.3879 85 [ -14.0274 18.8830 52.5609 -Georgia_Bold.ttf 7 e 30.1152 30.3879 86 - 10.7801 17.3319 6.3078 -Georgia_Bold.ttf 7 e 30.1152 30.3879 87 Y -11.1940 46.5865 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 88 Q -12.4548 43.5511 53.5241 -Georgia_Bold.ttf 7 e 30.1152 30.3879 89 " -13.8505 23.0291 20.0578 -Georgia_Bold.ttf 7 e 30.1152 30.3879 90 ! -12.5971 10.9408 42.8561 -Georgia_Bold.ttf 7 e 30.1152 30.3879 91 x 1.3983 34.3078 28.0000 -Georgia_Bold.ttf 7 e 30.1152 30.3879 92 ) -14.2506 20.7483 52.5609 -Georgia_Bold.ttf 7 e 30.1152 30.3879 93 = 4.4755 30.3879 16.2451 -Georgia_Bold.ttf 7 e 30.1152 30.3879 94 + -2.9423 31.9572 31.9572 -Georgia_Bold.ttf 7 e 30.1152 30.3879 95 X -11.1424 47.1138 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 96 » 0.7237 28.0000 25.5049 -Georgia_Bold.ttf 7 e 30.1152 30.3879 97 ' -14.0752 9.3670 20.0578 -Georgia_Bold.ttf 7 e 30.1152 30.3879 98 ¢ -7.3395 29.6975 45.0592 -Georgia_Bold.ttf 7 e 30.1152 30.3879 99 Z -11.3306 40.1348 40.4681 -Georgia_Bold.ttf 7 e 30.1152 30.3879 100 > -3.2416 28.2500 32.5259 -Georgia_Bold.ttf 7 e 30.1152 30.3879 101 ® -12.7606 50.4457 50.4457 -Georgia_Bold.ttf 7 e 30.1152 30.3879 102 © -12.8907 50.4457 50.4457 -Georgia_Bold.ttf 7 e 30.1152 30.3879 103 ] -13.8607 18.8830 52.5609 -Georgia_Bold.ttf 7 e 30.1152 30.3879 104 é -15.3174 30.1152 45.5819 -Georgia_Bold.ttf 7 e 30.1152 30.3879 105 z 1.2940 28.0000 28.0000 -Georgia_Bold.ttf 7 e 30.1152 30.3879 106 _ 34.4802 41.0560 2.7259 -Georgia_Bold.ttf 7 e 30.1152 30.3879 107 ¥ -11.1752 44.1379 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 1 t -8.5542 22.8029 37.7468 -Georgia_Bold.ttf 8 : 11.2741 29.1940 2 h -16.4366 38.3109 44.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 3 a -1.0743 31.8795 30.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 4 n -1.2055 38.5434 29.1940 -Georgia_Bold.ttf 8 : 11.2741 29.1940 5 P -12.4573 37.4968 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 6 o -1.2259 32.6103 30.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 7 e -1.2811 30.1152 30.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 8 : 0.0476 11.2741 29.1940 -Georgia_Bold.ttf 8 : 11.2741 29.1940 9 r -1.1069 29.1940 29.1940 -Georgia_Bold.ttf 8 : 11.2741 29.1940 10 l -16.3431 18.7339 44.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 11 i -16.8929 18.7339 44.8687 -Georgia_Bold.ttf 8 : 11.2741 29.1940 12 1 -3.6063 23.6397 31.6891 -Georgia_Bold.ttf 8 : 11.2741 29.1940 13 | -16.3151 4.6330 56.5227 -Georgia_Bold.ttf 8 : 11.2741 29.1940 14 N -12.5538 47.1785 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 15 f -16.0723 28.2500 44.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 16 g -1.2388 32.5497 42.0000 -Georgia_Bold.ttf 8 : 11.2741 29.1940 17 d -16.5589 36.4457 45.5819 -Georgia_Bold.ttf 8 : 11.2741 29.1940 18 W -12.4030 68.0276 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 19 s -1.2821 25.8621 30.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 20 c -0.9071 28.9212 30.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 21 u -1.3370 38.2100 30.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 22 3 -3.5877 32.5259 42.2500 -Georgia_Bold.ttf 8 : 11.2741 29.1940 23 ~ 5.5543 32.5497 12.2181 -Georgia_Bold.ttf 8 : 11.2741 29.1940 24 # -8.6621 32.2532 36.4457 -Georgia_Bold.ttf 8 : 11.2741 29.1940 25 O -13.6796 43.5511 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 26 ` -16.1938 15.1940 12.8060 -Georgia_Bold.ttf 8 : 11.2741 29.1940 27 @ -11.5629 47.4709 48.6411 -Georgia_Bold.ttf 8 : 11.2741 29.1940 28 F -12.4056 35.9650 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 29 S -13.5788 33.7437 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 30 p -1.1504 35.8397 42.0000 -Georgia_Bold.ttf 8 : 11.2741 29.1940 31 “ -15.0229 25.5049 20.0578 -Georgia_Bold.ttf 8 : 11.2741 29.1940 32 % -13.5487 46.1460 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 33 £ -13.6621 33.4471 41.6621 -Georgia_Bold.ttf 8 : 11.2741 29.1940 34 . 17.8742 11.2741 11.2741 -Georgia_Bold.ttf 8 : 11.2741 29.1940 35 2 -3.6966 30.6653 31.6891 -Georgia_Bold.ttf 8 : 11.2741 29.1940 36 5 -3.7775 31.3319 42.2500 -Georgia_Bold.ttf 8 : 11.2741 29.1940 37 m -1.4190 57.1474 29.1940 -Georgia_Bold.ttf 8 : 11.2741 29.1940 38 V -12.5192 47.4471 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 39 6 -13.5890 32.2997 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 40 w 0.0000 50.4457 28.0000 -Georgia_Bold.ttf 8 : 11.2741 29.1940 41 T -12.3387 38.0802 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 42 M -12.5211 56.5455 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 43 G -13.5327 45.5865 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 44 b -16.3692 35.7325 45.9198 -Georgia_Bold.ttf 8 : 11.2741 29.1940 45 9 -4.0222 32.6330 42.3571 -Georgia_Bold.ttf 8 : 11.2741 29.1940 46 ; -0.0022 11.5049 39.3813 -Georgia_Bold.ttf 8 : 11.2741 29.1940 47 D -12.5413 44.3879 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 48 L -12.7342 38.0196 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 49 y 0.0060 35.2710 40.8060 -Georgia_Bold.ttf 8 : 11.2741 29.1940 50 ‘ -15.2265 11.5049 20.0578 -Georgia_Bold.ttf 8 : 11.2741 29.1940 51 \ -15.4886 24.9408 55.3288 -Georgia_Bold.ttf 8 : 11.2741 29.1940 52 R -12.2471 46.2759 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 53 < -4.5221 28.2500 32.5259 -Georgia_Bold.ttf 8 : 11.2741 29.1940 54 4 -3.4603 34.6684 42.2500 -Georgia_Bold.ttf 8 : 11.2741 29.1940 55 8 -13.5320 33.3865 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 56 0 -3.6603 34.6876 32.8830 -Georgia_Bold.ttf 8 : 11.2741 29.1940 57 A -12.3469 46.9902 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 58 E -12.7316 38.6908 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 59 B -12.3907 40.1348 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 60 v -0.1409 35.5017 28.0000 -Georgia_Bold.ttf 8 : 11.2741 29.1940 61 k -16.4256 37.9968 44.3879 -Georgia_Bold.ttf 8 : 11.2741 29.1940 62 J -12.3842 33.3235 41.6621 -Georgia_Bold.ttf 8 : 11.2741 29.1940 63 U -12.5006 46.9856 41.6621 -Georgia_Bold.ttf 8 : 11.2741 29.1940 64 j -17.0481 22.1730 57.6747 -Georgia_Bold.ttf 8 : 11.2741 29.1940 65 ( -15.1934 20.7483 52.5609 -Georgia_Bold.ttf 8 : 11.2741 29.1940 66 7 -2.7513 30.0308 41.0560 -Georgia_Bold.ttf 8 : 11.2741 29.1940 67 § -13.5462 26.2192 48.4103 -Georgia_Bold.ttf 8 : 11.2741 29.1940 68 $ -15.6233 31.2486 51.7468 -Georgia_Bold.ttf 8 : 11.2741 29.1940 69 € -13.3615 41.2868 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 70 / -15.3843 24.9408 55.3288 -Georgia_Bold.ttf 8 : 11.2741 29.1940 71 C -14.0304 39.1489 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 72 * -13.7741 23.6397 21.2290 -Georgia_Bold.ttf 8 : 11.2741 29.1940 73 ” -15.0218 25.5049 20.0578 -Georgia_Bold.ttf 8 : 11.2741 29.1940 74 ? -13.7538 26.4727 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 75 { -15.0722 25.1716 52.5609 -Georgia_Bold.ttf 8 : 11.2741 29.1940 76 } -15.2940 25.1716 52.5609 -Georgia_Bold.ttf 8 : 11.2741 29.1940 77 , 18.6725 11.5049 20.7483 -Georgia_Bold.ttf 8 : 11.2741 29.1940 78 I -12.5544 21.7342 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 79 ° -13.5788 19.4471 18.8830 -Georgia_Bold.ttf 8 : 11.2741 29.1940 80 K -12.1267 47.4699 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 81 H -12.4292 49.0437 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 82 q -2.2272 36.1968 43.1940 -Georgia_Bold.ttf 8 : 11.2741 29.1940 83 & -13.6230 44.6379 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 84 ’ -15.2751 11.5049 20.0578 -Georgia_Bold.ttf 8 : 11.2741 29.1940 85 [ -15.0577 18.8830 52.5609 -Georgia_Bold.ttf 8 : 11.2741 29.1940 86 - 9.4971 17.3319 6.3078 -Georgia_Bold.ttf 8 : 11.2741 29.1940 87 Y -12.4856 46.5865 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 88 Q -13.7823 43.5511 53.5241 -Georgia_Bold.ttf 8 : 11.2741 29.1940 89 " -15.0569 23.0291 20.0578 -Georgia_Bold.ttf 8 : 11.2741 29.1940 90 ! -13.5462 10.9408 42.8561 -Georgia_Bold.ttf 8 : 11.2741 29.1940 91 x 0.0000 34.3078 28.0000 -Georgia_Bold.ttf 8 : 11.2741 29.1940 92 ) -15.3196 20.7483 52.5609 -Georgia_Bold.ttf 8 : 11.2741 29.1940 93 = 3.4775 30.3879 16.2451 -Georgia_Bold.ttf 8 : 11.2741 29.1940 94 + -4.2892 31.9572 31.9572 -Georgia_Bold.ttf 8 : 11.2741 29.1940 95 X -12.3449 47.1138 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 96 » 0.1207 28.0000 25.5049 -Georgia_Bold.ttf 8 : 11.2741 29.1940 97 ' -15.1899 9.3670 20.0578 -Georgia_Bold.ttf 8 : 11.2741 29.1940 98 ¢ -8.5994 29.6975 45.0592 -Georgia_Bold.ttf 8 : 11.2741 29.1940 99 Z -12.4264 40.1348 40.4681 -Georgia_Bold.ttf 8 : 11.2741 29.1940 100 > -4.4727 28.2500 32.5259 -Georgia_Bold.ttf 8 : 11.2741 29.1940 101 ® -14.0137 50.4457 50.4457 -Georgia_Bold.ttf 8 : 11.2741 29.1940 102 © -14.1987 50.4457 50.4457 -Georgia_Bold.ttf 8 : 11.2741 29.1940 103 ] -15.2537 18.8830 52.5609 -Georgia_Bold.ttf 8 : 11.2741 29.1940 104 é -16.5167 30.1152 45.5819 -Georgia_Bold.ttf 8 : 11.2741 29.1940 105 z 0.3340 28.0000 28.0000 -Georgia_Bold.ttf 8 : 11.2741 29.1940 106 _ 33.3796 41.0560 2.7259 -Georgia_Bold.ttf 8 : 11.2741 29.1940 107 ¥ -12.3695 44.1379 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 1 t -7.1406 22.8029 37.7468 -Georgia_Bold.ttf 9 r 29.1940 29.1940 2 h -15.2735 38.3109 44.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 3 a -0.3194 31.8795 30.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 4 n -0.0955 38.5434 29.1940 -Georgia_Bold.ttf 9 r 29.1940 29.1940 5 P -11.3171 37.4968 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 6 o 0.0438 32.6103 30.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 7 e -0.0076 30.1152 30.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 8 : 1.2746 11.2741 29.1940 -Georgia_Bold.ttf 9 r 29.1940 29.1940 9 r -0.0365 29.1940 29.1940 -Georgia_Bold.ttf 9 r 29.1940 29.1940 10 l -14.9795 18.7339 44.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 11 i -15.4167 18.7339 44.8687 -Georgia_Bold.ttf 9 r 29.1940 29.1940 12 1 -2.5618 23.6397 31.6891 -Georgia_Bold.ttf 9 r 29.1940 29.1940 13 | -15.5749 4.6330 56.5227 -Georgia_Bold.ttf 9 r 29.1940 29.1940 14 N -11.2741 47.1785 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 15 f -15.2894 28.2500 44.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 16 g -0.1161 32.5497 42.0000 -Georgia_Bold.ttf 9 r 29.1940 29.1940 17 d -15.1940 36.4457 45.5819 -Georgia_Bold.ttf 9 r 29.1940 29.1940 18 W -11.2575 68.0276 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 19 s -0.0255 25.8621 30.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 20 c 0.2070 28.9212 30.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 21 u -0.0070 38.2100 30.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 22 3 -2.3208 32.5259 42.2500 -Georgia_Bold.ttf 9 r 29.1940 29.1940 23 ~ 6.8756 32.5497 12.2181 -Georgia_Bold.ttf 9 r 29.1940 29.1940 24 # -7.1493 32.2532 36.4457 -Georgia_Bold.ttf 9 r 29.1940 29.1940 25 O -12.4275 43.5511 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 26 ` -15.4688 15.1940 12.8060 -Georgia_Bold.ttf 9 r 29.1940 29.1940 27 @ -9.9393 47.4709 48.6411 -Georgia_Bold.ttf 9 r 29.1940 29.1940 28 F -11.4581 35.9650 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 29 S -12.3173 33.7437 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 30 p -0.2739 35.8397 42.0000 -Georgia_Bold.ttf 9 r 29.1940 29.1940 31 “ -13.9318 25.5049 20.0578 -Georgia_Bold.ttf 9 r 29.1940 29.1940 32 % -12.4651 46.1460 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 33 £ -12.5251 33.4471 41.6621 -Georgia_Bold.ttf 9 r 29.1940 29.1940 34 . 18.9146 11.2741 11.2741 -Georgia_Bold.ttf 9 r 29.1940 29.1940 35 2 -2.5986 30.6653 31.6891 -Georgia_Bold.ttf 9 r 29.1940 29.1940 36 5 -2.3929 31.3319 42.2500 -Georgia_Bold.ttf 9 r 29.1940 29.1940 37 m -0.0213 57.1474 29.1940 -Georgia_Bold.ttf 9 r 29.1940 29.1940 38 V -11.2870 47.4471 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 39 6 -12.7043 32.2997 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 40 w 1.1666 50.4457 28.0000 -Georgia_Bold.ttf 9 r 29.1940 29.1940 41 T -11.4299 38.0802 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 42 M -11.3241 56.5455 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 43 G -12.7095 45.5865 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 44 b -15.0711 35.7325 45.9198 -Georgia_Bold.ttf 9 r 29.1940 29.1940 45 9 -2.3348 32.6330 42.3571 -Georgia_Bold.ttf 9 r 29.1940 29.1940 46 ; 1.1257 11.5049 39.3813 -Georgia_Bold.ttf 9 r 29.1940 29.1940 47 D -11.5233 44.3879 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 48 L -11.6115 38.0196 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 49 y 1.0810 35.2710 40.8060 -Georgia_Bold.ttf 9 r 29.1940 29.1940 50 ‘ -13.9981 11.5049 20.0578 -Georgia_Bold.ttf 9 r 29.1940 29.1940 51 \ -14.1976 24.9408 55.3288 -Georgia_Bold.ttf 9 r 29.1940 29.1940 52 R -11.2607 46.2759 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 53 < -3.1069 28.2500 32.5259 -Georgia_Bold.ttf 9 r 29.1940 29.1940 54 4 -2.5510 34.6684 42.2500 -Georgia_Bold.ttf 9 r 29.1940 29.1940 55 8 -12.3948 33.3865 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 56 0 -2.0660 34.6876 32.8830 -Georgia_Bold.ttf 9 r 29.1940 29.1940 57 A -10.9911 46.9902 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 58 E -11.5081 38.6908 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 59 B -11.4127 40.1348 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 60 v 1.1902 35.5017 28.0000 -Georgia_Bold.ttf 9 r 29.1940 29.1940 61 k -15.1870 37.9968 44.3879 -Georgia_Bold.ttf 9 r 29.1940 29.1940 62 J -11.4102 33.3235 41.6621 -Georgia_Bold.ttf 9 r 29.1940 29.1940 63 U -11.5118 46.9856 41.6621 -Georgia_Bold.ttf 9 r 29.1940 29.1940 64 j -15.6390 22.1730 57.6747 -Georgia_Bold.ttf 9 r 29.1940 29.1940 65 ( -14.1218 20.7483 52.5609 -Georgia_Bold.ttf 9 r 29.1940 29.1940 66 7 -1.4457 30.0308 41.0560 -Georgia_Bold.ttf 9 r 29.1940 29.1940 67 § -12.4692 26.2192 48.4103 -Georgia_Bold.ttf 9 r 29.1940 29.1940 68 $ -14.4339 31.2486 51.7468 -Georgia_Bold.ttf 9 r 29.1940 29.1940 69 € -12.5500 41.2868 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 70 / -13.5943 24.9408 55.3288 -Georgia_Bold.ttf 9 r 29.1940 29.1940 71 C -12.3240 39.1489 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 72 * -12.2592 23.6397 21.2290 -Georgia_Bold.ttf 9 r 29.1940 29.1940 73 ” -13.6988 25.5049 20.0578 -Georgia_Bold.ttf 9 r 29.1940 29.1940 74 ? -12.5493 26.4727 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 75 { -13.8040 25.1716 52.5609 -Georgia_Bold.ttf 9 r 29.1940 29.1940 76 } -13.8693 25.1716 52.5609 -Georgia_Bold.ttf 9 r 29.1940 29.1940 77 , 19.7052 11.5049 20.7483 -Georgia_Bold.ttf 9 r 29.1940 29.1940 78 I -11.2645 21.7342 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 79 ° -12.4312 19.4471 18.8830 -Georgia_Bold.ttf 9 r 29.1940 29.1940 80 K -11.1688 47.4699 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 81 H -11.1916 49.0437 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 82 q -0.8404 36.1968 43.1940 -Georgia_Bold.ttf 9 r 29.1940 29.1940 83 & -12.4393 44.6379 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 84 ’ -14.0313 11.5049 20.0578 -Georgia_Bold.ttf 9 r 29.1940 29.1940 85 [ -14.0167 18.8830 52.5609 -Georgia_Bold.ttf 9 r 29.1940 29.1940 86 - 10.2566 17.3319 6.3078 -Georgia_Bold.ttf 9 r 29.1940 29.1940 87 Y -11.2107 46.5865 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 88 Q -12.6377 43.5511 53.5241 -Georgia_Bold.ttf 9 r 29.1940 29.1940 89 " -13.9116 23.0291 20.0578 -Georgia_Bold.ttf 9 r 29.1940 29.1940 90 ! -12.3939 10.9408 42.8561 -Georgia_Bold.ttf 9 r 29.1940 29.1940 91 x 1.1722 34.3078 28.0000 -Georgia_Bold.ttf 9 r 29.1940 29.1940 92 ) -14.1019 20.7483 52.5609 -Georgia_Bold.ttf 9 r 29.1940 29.1940 93 = 4.5226 30.3879 16.2451 -Georgia_Bold.ttf 9 r 29.1940 29.1940 94 + -3.0442 31.9572 31.9572 -Georgia_Bold.ttf 9 r 29.1940 29.1940 95 X -11.2723 47.1138 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 96 » 0.9747 28.0000 25.5049 -Georgia_Bold.ttf 9 r 29.1940 29.1940 97 ' -14.0449 9.3670 20.0578 -Georgia_Bold.ttf 9 r 29.1940 29.1940 98 ¢ -7.5133 29.6975 45.0592 -Georgia_Bold.ttf 9 r 29.1940 29.1940 99 Z -11.2741 40.1348 40.4681 -Georgia_Bold.ttf 9 r 29.1940 29.1940 100 > -3.4351 28.2500 32.5259 -Georgia_Bold.ttf 9 r 29.1940 29.1940 101 ® -12.7380 50.4457 50.4457 -Georgia_Bold.ttf 9 r 29.1940 29.1940 102 © -12.7084 50.4457 50.4457 -Georgia_Bold.ttf 9 r 29.1940 29.1940 103 ] -14.0000 18.8830 52.5609 -Georgia_Bold.ttf 9 r 29.1940 29.1940 104 é -15.0628 30.1152 45.5819 -Georgia_Bold.ttf 9 r 29.1940 29.1940 105 z 1.0961 28.0000 28.0000 -Georgia_Bold.ttf 9 r 29.1940 29.1940 106 _ 34.3602 41.0560 2.7259 -Georgia_Bold.ttf 9 r 29.1940 29.1940 107 ¥ -11.1153 44.1379 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 1 t 7.9267 22.8029 37.7468 -Georgia_Bold.ttf 10 l 18.7339 44.3879 2 h 0.1626 38.3109 44.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 3 a 15.4265 31.8795 30.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 4 n 15.1523 38.5434 29.1940 -Georgia_Bold.ttf 10 l 18.7339 44.3879 5 P 4.0773 37.4968 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 6 o 15.1523 32.6103 30.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 7 e 14.9841 30.1152 30.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 8 : 16.2040 11.2741 29.1940 -Georgia_Bold.ttf 10 l 18.7339 44.3879 9 r 15.1620 29.1940 29.1940 -Georgia_Bold.ttf 10 l 18.7339 44.3879 10 l -0.0153 18.7339 44.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 11 i -0.6442 18.7339 44.8687 -Georgia_Bold.ttf 10 l 18.7339 44.3879 12 1 12.6072 23.6397 31.6891 -Georgia_Bold.ttf 10 l 18.7339 44.3879 13 | 0.2635 4.6330 56.5227 -Georgia_Bold.ttf 10 l 18.7339 44.3879 14 N 3.7938 47.1785 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 15 f 0.0357 28.2500 44.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 16 g 15.1880 32.5497 42.0000 -Georgia_Bold.ttf 10 l 18.7339 44.3879 17 d -0.0455 36.4457 45.5819 -Georgia_Bold.ttf 10 l 18.7339 44.3879 18 W 4.0494 68.0276 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 19 s 15.0243 25.8621 30.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 20 c 15.0536 28.9212 30.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 21 u 15.1880 38.2100 30.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 22 3 12.9549 32.5259 42.2500 -Georgia_Bold.ttf 10 l 18.7339 44.3879 23 ~ 21.9363 32.5497 12.2181 -Georgia_Bold.ttf 10 l 18.7339 44.3879 24 # 7.8027 32.2532 36.4457 -Georgia_Bold.ttf 10 l 18.7339 44.3879 25 O 2.8175 43.5511 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 26 ` 0.2530 15.1940 12.8060 -Georgia_Bold.ttf 10 l 18.7339 44.3879 27 @ 5.1079 47.4709 48.6411 -Georgia_Bold.ttf 10 l 18.7339 44.3879 28 F 3.8518 35.9650 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 29 S 2.8885 33.7437 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 30 p 15.3446 35.8397 42.0000 -Georgia_Bold.ttf 10 l 18.7339 44.3879 31 “ 1.0897 25.5049 20.0578 -Georgia_Bold.ttf 10 l 18.7339 44.3879 32 % 2.5927 46.1460 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 33 £ 2.8514 33.4471 41.6621 -Georgia_Bold.ttf 10 l 18.7339 44.3879 34 . 34.4302 11.2741 11.2741 -Georgia_Bold.ttf 10 l 18.7339 44.3879 35 2 12.6978 30.6653 31.6891 -Georgia_Bold.ttf 10 l 18.7339 44.3879 36 5 12.5683 31.3319 42.2500 -Georgia_Bold.ttf 10 l 18.7339 44.3879 37 m 15.0074 57.1474 29.1940 -Georgia_Bold.ttf 10 l 18.7339 44.3879 38 V 3.5367 47.4471 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 39 6 2.9764 32.2997 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 40 w 16.5369 50.4457 28.0000 -Georgia_Bold.ttf 10 l 18.7339 44.3879 41 T 3.8327 38.0802 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 42 M 4.0154 56.5455 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 43 G 3.1845 45.5865 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 44 b -0.3866 35.7325 45.9198 -Georgia_Bold.ttf 10 l 18.7339 44.3879 45 9 12.7272 32.6330 42.3571 -Georgia_Bold.ttf 10 l 18.7339 44.3879 46 ; 16.3872 11.5049 39.3813 -Georgia_Bold.ttf 10 l 18.7339 44.3879 47 D 3.9395 44.3879 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 48 L 3.9523 38.0196 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 49 y 16.7213 35.2710 40.8060 -Georgia_Bold.ttf 10 l 18.7339 44.3879 50 ‘ 1.0191 11.5049 20.0578 -Georgia_Bold.ttf 10 l 18.7339 44.3879 51 \ 1.1128 24.9408 55.3288 -Georgia_Bold.ttf 10 l 18.7339 44.3879 52 R 3.8588 46.2759 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 53 < 11.8960 28.2500 32.5259 -Georgia_Bold.ttf 10 l 18.7339 44.3879 54 4 12.5246 34.6684 42.2500 -Georgia_Bold.ttf 10 l 18.7339 44.3879 55 8 2.4701 33.3865 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 56 0 12.6720 34.6876 32.8830 -Georgia_Bold.ttf 10 l 18.7339 44.3879 57 A 3.7540 46.9902 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 58 E 3.9698 38.6908 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 59 B 4.0960 40.1348 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 60 v 16.4621 35.5017 28.0000 -Georgia_Bold.ttf 10 l 18.7339 44.3879 61 k 0.1696 37.9968 44.3879 -Georgia_Bold.ttf 10 l 18.7339 44.3879 62 J 3.9198 33.3235 41.6621 -Georgia_Bold.ttf 10 l 18.7339 44.3879 63 U 4.0709 46.9856 41.6621 -Georgia_Bold.ttf 10 l 18.7339 44.3879 64 j -0.4283 22.1730 57.6747 -Georgia_Bold.ttf 10 l 18.7339 44.3879 65 ( 1.0690 20.7483 52.5609 -Georgia_Bold.ttf 10 l 18.7339 44.3879 66 7 13.8230 30.0308 41.0560 -Georgia_Bold.ttf 10 l 18.7339 44.3879 67 § 2.7713 26.2192 48.4103 -Georgia_Bold.ttf 10 l 18.7339 44.3879 68 $ 0.7706 31.2486 51.7468 -Georgia_Bold.ttf 10 l 18.7339 44.3879 69 € 2.6229 41.2868 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 70 / 1.2437 24.9408 55.3288 -Georgia_Bold.ttf 10 l 18.7339 44.3879 71 C 2.9969 39.1489 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 72 * 2.9810 23.6397 21.2290 -Georgia_Bold.ttf 10 l 18.7339 44.3879 73 ” 0.9095 25.5049 20.0578 -Georgia_Bold.ttf 10 l 18.7339 44.3879 74 ? 2.8624 26.4727 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 75 { 1.0184 25.1716 52.5609 -Georgia_Bold.ttf 10 l 18.7339 44.3879 76 } 1.3728 25.1716 52.5609 -Georgia_Bold.ttf 10 l 18.7339 44.3879 77 , 34.8596 11.5049 20.7483 -Georgia_Bold.ttf 10 l 18.7339 44.3879 78 I 3.9730 21.7342 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 79 ° 2.5785 19.4471 18.8830 -Georgia_Bold.ttf 10 l 18.7339 44.3879 80 K 3.8236 47.4699 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 81 H 3.9174 49.0437 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 82 q 13.9564 36.1968 43.1940 -Georgia_Bold.ttf 10 l 18.7339 44.3879 83 & 2.8939 44.6379 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 84 ’ 1.0531 11.5049 20.0578 -Georgia_Bold.ttf 10 l 18.7339 44.3879 85 [ 1.2626 18.8830 52.5609 -Georgia_Bold.ttf 10 l 18.7339 44.3879 86 - 25.7593 17.3319 6.3078 -Georgia_Bold.ttf 10 l 18.7339 44.3879 87 Y 3.9303 46.5865 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 88 Q 2.5509 43.5511 53.5241 -Georgia_Bold.ttf 10 l 18.7339 44.3879 89 " 1.0902 23.0291 20.0578 -Georgia_Bold.ttf 10 l 18.7339 44.3879 90 ! 2.9001 10.9408 42.8561 -Georgia_Bold.ttf 10 l 18.7339 44.3879 91 x 16.3295 34.3078 28.0000 -Georgia_Bold.ttf 10 l 18.7339 44.3879 92 ) 1.2862 20.7483 52.5609 -Georgia_Bold.ttf 10 l 18.7339 44.3879 93 = 19.8410 30.3879 16.2451 -Georgia_Bold.ttf 10 l 18.7339 44.3879 94 + 12.0014 31.9572 31.9572 -Georgia_Bold.ttf 10 l 18.7339 44.3879 95 X 3.9236 47.1138 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 96 » 16.3055 28.0000 25.5049 -Georgia_Bold.ttf 10 l 18.7339 44.3879 97 ' 1.2947 9.3670 20.0578 -Georgia_Bold.ttf 10 l 18.7339 44.3879 98 ¢ 7.6653 29.6975 45.0592 -Georgia_Bold.ttf 10 l 18.7339 44.3879 99 Z 4.0570 40.1348 40.4681 -Georgia_Bold.ttf 10 l 18.7339 44.3879 100 > 11.8978 28.2500 32.5259 -Georgia_Bold.ttf 10 l 18.7339 44.3879 101 ® 2.3064 50.4457 50.4457 -Georgia_Bold.ttf 10 l 18.7339 44.3879 102 © 2.4653 50.4457 50.4457 -Georgia_Bold.ttf 10 l 18.7339 44.3879 103 ] 1.1940 18.8830 52.5609 -Georgia_Bold.ttf 10 l 18.7339 44.3879 104 é -0.0924 30.1152 45.5819 -Georgia_Bold.ttf 10 l 18.7339 44.3879 105 z 16.1802 28.0000 28.0000 -Georgia_Bold.ttf 10 l 18.7339 44.3879 106 _ 49.5787 41.0560 2.7259 -Georgia_Bold.ttf 10 l 18.7339 44.3879 107 ¥ 3.9764 44.1379 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 1 t 8.3406 22.8029 37.7468 -Georgia_Bold.ttf 11 i 18.7339 44.8687 2 h 0.6133 38.3109 44.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 3 a 15.5658 31.8795 30.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 4 n 15.6006 38.5434 29.1940 -Georgia_Bold.ttf 11 i 18.7339 44.8687 5 P 4.5377 37.4968 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 6 o 15.8360 32.6103 30.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 7 e 15.9137 30.1152 30.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 8 : 16.6787 11.2741 29.1940 -Georgia_Bold.ttf 11 i 18.7339 44.8687 9 r 15.7689 29.1940 29.1940 -Georgia_Bold.ttf 11 i 18.7339 44.8687 10 l 0.9281 18.7339 44.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 11 i -0.0045 18.7339 44.8687 -Georgia_Bold.ttf 11 i 18.7339 44.8687 12 1 13.1038 23.6397 31.6891 -Georgia_Bold.ttf 11 i 18.7339 44.8687 13 | 0.2559 4.6330 56.5227 -Georgia_Bold.ttf 11 i 18.7339 44.8687 14 N 4.1938 47.1785 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 15 f 0.5880 28.2500 44.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 16 g 15.7619 32.5497 42.0000 -Georgia_Bold.ttf 11 i 18.7339 44.8687 17 d 0.5558 36.4457 45.5819 -Georgia_Bold.ttf 11 i 18.7339 44.8687 18 W 4.3946 68.0276 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 19 s 15.9342 25.8621 30.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 20 c 15.8837 28.9212 30.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 21 u 15.8675 38.2100 30.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 22 3 13.4683 32.5259 42.2500 -Georgia_Bold.ttf 11 i 18.7339 44.8687 23 ~ 22.3380 32.5497 12.2181 -Georgia_Bold.ttf 11 i 18.7339 44.8687 24 # 8.5693 32.2532 36.4457 -Georgia_Bold.ttf 11 i 18.7339 44.8687 25 O 3.1545 43.5511 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 26 ` 0.4665 15.1940 12.8060 -Georgia_Bold.ttf 11 i 18.7339 44.8687 27 @ 5.6418 47.4709 48.6411 -Georgia_Bold.ttf 11 i 18.7339 44.8687 28 F 4.5756 35.9650 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 29 S 3.2007 33.7437 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 30 p 15.5519 35.8397 42.0000 -Georgia_Bold.ttf 11 i 18.7339 44.8687 31 “ 1.9371 25.5049 20.0578 -Georgia_Bold.ttf 11 i 18.7339 44.8687 32 % 3.2104 46.1460 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 33 £ 3.0391 33.4471 41.6621 -Georgia_Bold.ttf 11 i 18.7339 44.8687 34 . 34.7735 11.2741 11.2741 -Georgia_Bold.ttf 11 i 18.7339 44.8687 35 2 13.2713 30.6653 31.6891 -Georgia_Bold.ttf 11 i 18.7339 44.8687 36 5 12.9880 31.3319 42.2500 -Georgia_Bold.ttf 11 i 18.7339 44.8687 37 m 15.6650 57.1474 29.1940 -Georgia_Bold.ttf 11 i 18.7339 44.8687 38 V 4.3901 47.4471 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 39 6 3.2598 32.2997 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 40 w 17.2371 50.4457 28.0000 -Georgia_Bold.ttf 11 i 18.7339 44.8687 41 T 4.4076 38.0802 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 42 M 4.0124 56.5455 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 43 G 3.1709 45.5865 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 44 b 0.4242 35.7325 45.9198 -Georgia_Bold.ttf 11 i 18.7339 44.8687 45 9 12.7024 32.6330 42.3571 -Georgia_Bold.ttf 11 i 18.7339 44.8687 46 ; 17.0014 11.5049 39.3813 -Georgia_Bold.ttf 11 i 18.7339 44.8687 47 D 4.3310 44.3879 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 48 L 4.7522 38.0196 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 49 y 16.8738 35.2710 40.8060 -Georgia_Bold.ttf 11 i 18.7339 44.8687 50 ‘ 1.8194 11.5049 20.0578 -Georgia_Bold.ttf 11 i 18.7339 44.8687 51 \ 1.6632 24.9408 55.3288 -Georgia_Bold.ttf 11 i 18.7339 44.8687 52 R 4.5993 46.2759 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 53 < 12.2934 28.2500 32.5259 -Georgia_Bold.ttf 11 i 18.7339 44.8687 54 4 13.2200 34.6684 42.2500 -Georgia_Bold.ttf 11 i 18.7339 44.8687 55 8 3.2300 33.3865 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 56 0 13.1797 34.6876 32.8830 -Georgia_Bold.ttf 11 i 18.7339 44.8687 57 A 4.2339 46.9902 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 58 E 4.6843 38.6908 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 59 B 4.4786 40.1348 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 60 v 16.7544 35.5017 28.0000 -Georgia_Bold.ttf 11 i 18.7339 44.8687 61 k 0.3135 37.9968 44.3879 -Georgia_Bold.ttf 11 i 18.7339 44.8687 62 J 4.3205 33.3235 41.6621 -Georgia_Bold.ttf 11 i 18.7339 44.8687 63 U 4.2334 46.9856 41.6621 -Georgia_Bold.ttf 11 i 18.7339 44.8687 64 j -0.0774 22.1730 57.6747 -Georgia_Bold.ttf 11 i 18.7339 44.8687 65 ( 1.5876 20.7483 52.5609 -Georgia_Bold.ttf 11 i 18.7339 44.8687 66 7 14.1489 30.0308 41.0560 -Georgia_Bold.ttf 11 i 18.7339 44.8687 67 § 3.0485 26.2192 48.4103 -Georgia_Bold.ttf 11 i 18.7339 44.8687 68 $ 1.1992 31.2486 51.7468 -Georgia_Bold.ttf 11 i 18.7339 44.8687 69 € 3.1112 41.2868 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 70 / 1.9944 24.9408 55.3288 -Georgia_Bold.ttf 11 i 18.7339 44.8687 71 C 3.1528 39.1489 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 72 * 3.2620 23.6397 21.2290 -Georgia_Bold.ttf 11 i 18.7339 44.8687 73 ” 1.6038 25.5049 20.0578 -Georgia_Bold.ttf 11 i 18.7339 44.8687 74 ? 3.4623 26.4727 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 75 { 1.6484 25.1716 52.5609 -Georgia_Bold.ttf 11 i 18.7339 44.8687 76 } 1.8871 25.1716 52.5609 -Georgia_Bold.ttf 11 i 18.7339 44.8687 77 , 35.6399 11.5049 20.7483 -Georgia_Bold.ttf 11 i 18.7339 44.8687 78 I 4.1823 21.7342 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 79 ° 3.0859 19.4471 18.8830 -Georgia_Bold.ttf 11 i 18.7339 44.8687 80 K 4.4159 47.4699 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 81 H 4.2206 49.0437 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 82 q 14.3974 36.1968 43.1940 -Georgia_Bold.ttf 11 i 18.7339 44.8687 83 & 3.1521 44.6379 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 84 ’ 1.6285 11.5049 20.0578 -Georgia_Bold.ttf 11 i 18.7339 44.8687 85 [ 1.5884 18.8830 52.5609 -Georgia_Bold.ttf 11 i 18.7339 44.8687 86 - 26.1736 17.3319 6.3078 -Georgia_Bold.ttf 11 i 18.7339 44.8687 87 Y 4.2775 46.5865 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 88 Q 3.3328 43.5511 53.5241 -Georgia_Bold.ttf 11 i 18.7339 44.8687 89 " 1.4083 23.0291 20.0578 -Georgia_Bold.ttf 11 i 18.7339 44.8687 90 ! 3.1058 10.9408 42.8561 -Georgia_Bold.ttf 11 i 18.7339 44.8687 91 x 16.8677 34.3078 28.0000 -Georgia_Bold.ttf 11 i 18.7339 44.8687 92 ) 1.3750 20.7483 52.5609 -Georgia_Bold.ttf 11 i 18.7339 44.8687 93 = 20.5645 30.3879 16.2451 -Georgia_Bold.ttf 11 i 18.7339 44.8687 94 + 12.7389 31.9572 31.9572 -Georgia_Bold.ttf 11 i 18.7339 44.8687 95 X 4.4258 47.1138 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 96 » 16.5931 28.0000 25.5049 -Georgia_Bold.ttf 11 i 18.7339 44.8687 97 ' 1.5863 9.3670 20.0578 -Georgia_Bold.ttf 11 i 18.7339 44.8687 98 ¢ 8.6728 29.6975 45.0592 -Georgia_Bold.ttf 11 i 18.7339 44.8687 99 Z 4.1632 40.1348 40.4681 -Georgia_Bold.ttf 11 i 18.7339 44.8687 100 > 12.4837 28.2500 32.5259 -Georgia_Bold.ttf 11 i 18.7339 44.8687 101 ® 2.9362 50.4457 50.4457 -Georgia_Bold.ttf 11 i 18.7339 44.8687 102 © 2.9519 50.4457 50.4457 -Georgia_Bold.ttf 11 i 18.7339 44.8687 103 ] 1.5869 18.8830 52.5609 -Georgia_Bold.ttf 11 i 18.7339 44.8687 104 é 0.5601 30.1152 45.5819 -Georgia_Bold.ttf 11 i 18.7339 44.8687 105 z 16.7354 28.0000 28.0000 -Georgia_Bold.ttf 11 i 18.7339 44.8687 106 _ 49.9871 41.0560 2.7259 -Georgia_Bold.ttf 11 i 18.7339 44.8687 107 ¥ 4.2659 44.1379 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 1 t -4.5654 22.8029 37.7468 -Georgia_Bold.ttf 12 1 23.6397 31.6891 2 h -12.8217 38.3109 44.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 3 a 2.5335 31.8795 30.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 4 n 2.6803 38.5434 29.1940 -Georgia_Bold.ttf 12 1 23.6397 31.6891 5 P -8.7888 37.4968 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 6 o 2.7177 32.6103 30.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 7 e 2.2862 30.1152 30.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 8 : 3.4452 11.2741 29.1940 -Georgia_Bold.ttf 12 1 23.6397 31.6891 9 r 2.6653 29.1940 29.1940 -Georgia_Bold.ttf 12 1 23.6397 31.6891 10 l -12.7790 18.7339 44.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 11 i -13.0957 18.7339 44.8687 -Georgia_Bold.ttf 12 1 23.6397 31.6891 12 1 0.0000 23.6397 31.6891 -Georgia_Bold.ttf 12 1 23.6397 31.6891 13 | -12.5854 4.6330 56.5227 -Georgia_Bold.ttf 12 1 23.6397 31.6891 14 N -8.9707 47.1785 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 15 f -12.6989 28.2500 44.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 16 g 2.5720 32.5497 42.0000 -Georgia_Bold.ttf 12 1 23.6397 31.6891 17 d -12.9161 36.4457 45.5819 -Georgia_Bold.ttf 12 1 23.6397 31.6891 18 W -8.7532 68.0276 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 19 s 2.2844 25.8621 30.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 20 c 2.3626 28.9212 30.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 21 u 2.4437 38.2100 30.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 22 3 -0.0667 32.5259 42.2500 -Georgia_Bold.ttf 12 1 23.6397 31.6891 23 ~ 8.8929 32.5497 12.2181 -Georgia_Bold.ttf 12 1 23.6397 31.6891 24 # -4.6884 32.2532 36.4457 -Georgia_Bold.ttf 12 1 23.6397 31.6891 25 O -10.0510 43.5511 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 26 ` -12.7336 15.1940 12.8060 -Georgia_Bold.ttf 12 1 23.6397 31.6891 27 @ -7.2056 47.4709 48.6411 -Georgia_Bold.ttf 12 1 23.6397 31.6891 28 F -8.5787 35.9650 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 29 S -9.8104 33.7437 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 30 p 2.5556 35.8397 42.0000 -Georgia_Bold.ttf 12 1 23.6397 31.6891 31 “ -11.6022 25.5049 20.0578 -Georgia_Bold.ttf 12 1 23.6397 31.6891 32 % -9.7669 46.1460 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 33 £ -10.2236 33.4471 41.6621 -Georgia_Bold.ttf 12 1 23.6397 31.6891 34 . 21.4829 11.2741 11.2741 -Georgia_Bold.ttf 12 1 23.6397 31.6891 35 2 -0.0922 30.6653 31.6891 -Georgia_Bold.ttf 12 1 23.6397 31.6891 36 5 -0.1710 31.3319 42.2500 -Georgia_Bold.ttf 12 1 23.6397 31.6891 37 m 2.5269 57.1474 29.1940 -Georgia_Bold.ttf 12 1 23.6397 31.6891 38 V -8.5631 47.4471 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 39 6 -9.8811 32.2997 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 40 w 3.6353 50.4457 28.0000 -Georgia_Bold.ttf 12 1 23.6397 31.6891 41 T -8.9232 38.0802 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 42 M -9.0293 56.5455 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 43 G -9.8155 45.5865 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 44 b -12.8467 35.7325 45.9198 -Georgia_Bold.ttf 12 1 23.6397 31.6891 45 9 0.0341 32.6330 42.3571 -Georgia_Bold.ttf 12 1 23.6397 31.6891 46 ; 3.5250 11.5049 39.3813 -Georgia_Bold.ttf 12 1 23.6397 31.6891 47 D -8.9886 44.3879 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 48 L -8.8297 38.0196 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 49 y 3.6079 35.2710 40.8060 -Georgia_Bold.ttf 12 1 23.6397 31.6891 50 ‘ -11.4632 11.5049 20.0578 -Georgia_Bold.ttf 12 1 23.6397 31.6891 51 \ -11.5299 24.9408 55.3288 -Georgia_Bold.ttf 12 1 23.6397 31.6891 52 R -8.8500 46.2759 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 53 < -0.8400 28.2500 32.5259 -Georgia_Bold.ttf 12 1 23.6397 31.6891 54 4 -0.0198 34.6684 42.2500 -Georgia_Bold.ttf 12 1 23.6397 31.6891 55 8 -10.0497 33.3865 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 56 0 -0.1608 34.6876 32.8830 -Georgia_Bold.ttf 12 1 23.6397 31.6891 57 A -8.5602 46.9902 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 58 E -8.9041 38.6908 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 59 B -8.5414 40.1348 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 60 v 4.0222 35.5017 28.0000 -Georgia_Bold.ttf 12 1 23.6397 31.6891 61 k -12.6604 37.9968 44.3879 -Georgia_Bold.ttf 12 1 23.6397 31.6891 62 J -8.8052 33.3235 41.6621 -Georgia_Bold.ttf 12 1 23.6397 31.6891 63 U -8.6508 46.9856 41.6621 -Georgia_Bold.ttf 12 1 23.6397 31.6891 64 j -13.1955 22.1730 57.6747 -Georgia_Bold.ttf 12 1 23.6397 31.6891 65 ( -11.5256 20.7483 52.5609 -Georgia_Bold.ttf 12 1 23.6397 31.6891 66 7 1.0918 30.0308 41.0560 -Georgia_Bold.ttf 12 1 23.6397 31.6891 67 § -9.9835 26.2192 48.4103 -Georgia_Bold.ttf 12 1 23.6397 31.6891 68 $ -12.0463 31.2486 51.7468 -Georgia_Bold.ttf 12 1 23.6397 31.6891 69 € -10.0615 41.2868 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 70 / -11.5815 24.9408 55.3288 -Georgia_Bold.ttf 12 1 23.6397 31.6891 71 C -10.2335 39.1489 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 72 * -10.1301 23.6397 21.2290 -Georgia_Bold.ttf 12 1 23.6397 31.6891 73 ” -11.3835 25.5049 20.0578 -Georgia_Bold.ttf 12 1 23.6397 31.6891 74 ? -10.0349 26.4727 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 75 { -11.3627 25.1716 52.5609 -Georgia_Bold.ttf 12 1 23.6397 31.6891 76 } -11.2915 25.1716 52.5609 -Georgia_Bold.ttf 12 1 23.6397 31.6891 77 , 22.5267 11.5049 20.7483 -Georgia_Bold.ttf 12 1 23.6397 31.6891 78 I -8.5303 21.7342 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 79 ° -9.9238 19.4471 18.8830 -Georgia_Bold.ttf 12 1 23.6397 31.6891 80 K -8.9449 47.4699 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 81 H -8.6854 49.0437 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 82 q 1.1217 36.1968 43.1940 -Georgia_Bold.ttf 12 1 23.6397 31.6891 83 & -9.8956 44.6379 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 84 ’ -11.8170 11.5049 20.0578 -Georgia_Bold.ttf 12 1 23.6397 31.6891 85 [ -11.5399 18.8830 52.5609 -Georgia_Bold.ttf 12 1 23.6397 31.6891 86 - 13.2644 17.3319 6.3078 -Georgia_Bold.ttf 12 1 23.6397 31.6891 87 Y -8.8616 46.5865 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 88 Q -9.7737 43.5511 53.5241 -Georgia_Bold.ttf 12 1 23.6397 31.6891 89 " -11.6511 23.0291 20.0578 -Georgia_Bold.ttf 12 1 23.6397 31.6891 90 ! -10.1479 10.9408 42.8561 -Georgia_Bold.ttf 12 1 23.6397 31.6891 91 x 3.6869 34.3078 28.0000 -Georgia_Bold.ttf 12 1 23.6397 31.6891 92 ) -11.4140 20.7483 52.5609 -Georgia_Bold.ttf 12 1 23.6397 31.6891 93 = 7.0359 30.3879 16.2451 -Georgia_Bold.ttf 12 1 23.6397 31.6891 94 + -0.7372 31.9572 31.9572 -Georgia_Bold.ttf 12 1 23.6397 31.6891 95 X -8.9366 47.1138 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 96 » 3.4424 28.0000 25.5049 -Georgia_Bold.ttf 12 1 23.6397 31.6891 97 ' -11.7620 9.3670 20.0578 -Georgia_Bold.ttf 12 1 23.6397 31.6891 98 ¢ -4.7626 29.6975 45.0592 -Georgia_Bold.ttf 12 1 23.6397 31.6891 99 Z -8.8675 40.1348 40.4681 -Georgia_Bold.ttf 12 1 23.6397 31.6891 100 > -1.0449 28.2500 32.5259 -Georgia_Bold.ttf 12 1 23.6397 31.6891 101 ® -10.3276 50.4457 50.4457 -Georgia_Bold.ttf 12 1 23.6397 31.6891 102 © -10.0507 50.4457 50.4457 -Georgia_Bold.ttf 12 1 23.6397 31.6891 103 ] -11.4114 18.8830 52.5609 -Georgia_Bold.ttf 12 1 23.6397 31.6891 104 é -12.5688 30.1152 45.5819 -Georgia_Bold.ttf 12 1 23.6397 31.6891 105 z 3.9198 28.0000 28.0000 -Georgia_Bold.ttf 12 1 23.6397 31.6891 106 _ 36.6501 41.0560 2.7259 -Georgia_Bold.ttf 12 1 23.6397 31.6891 107 ¥ -8.7586 44.1379 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 1 t 7.7819 22.8029 37.7468 -Georgia_Bold.ttf 13 | 4.6330 56.5227 2 h -0.0578 38.3109 44.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 3 a 15.3849 31.8795 30.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 4 n 15.1176 38.5434 29.1940 -Georgia_Bold.ttf 13 | 4.6330 56.5227 5 P 3.9271 37.4968 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 6 o 15.3803 32.6103 30.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 7 e 15.0813 30.1152 30.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 8 : 16.2779 11.2741 29.1940 -Georgia_Bold.ttf 13 | 4.6330 56.5227 9 r 15.1940 29.1940 29.1940 -Georgia_Bold.ttf 13 | 4.6330 56.5227 10 l 0.0885 18.7339 44.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 11 i -0.5165 18.7339 44.8687 -Georgia_Bold.ttf 13 | 4.6330 56.5227 12 1 12.6989 23.6397 31.6891 -Georgia_Bold.ttf 13 | 4.6330 56.5227 13 | 0.1213 4.6330 56.5227 -Georgia_Bold.ttf 13 | 4.6330 56.5227 14 N 3.9101 47.1785 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 15 f 0.1543 28.2500 44.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 16 g 15.1902 32.5497 42.0000 -Georgia_Bold.ttf 13 | 4.6330 56.5227 17 d 0.0032 36.4457 45.5819 -Georgia_Bold.ttf 13 | 4.6330 56.5227 18 W 3.9198 68.0276 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 19 s 15.5354 25.8621 30.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 20 c 15.1198 28.9212 30.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 21 u 15.0708 38.2100 30.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 22 3 12.7059 32.5259 42.2500 -Georgia_Bold.ttf 13 | 4.6330 56.5227 23 ~ 21.7613 32.5497 12.2181 -Georgia_Bold.ttf 13 | 4.6330 56.5227 24 # 7.9422 32.2532 36.4457 -Georgia_Bold.ttf 13 | 4.6330 56.5227 25 O 2.9052 43.5511 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 26 ` -0.1718 15.1940 12.8060 -Georgia_Bold.ttf 13 | 4.6330 56.5227 27 @ 5.3434 47.4709 48.6411 -Georgia_Bold.ttf 13 | 4.6330 56.5227 28 F 3.8397 35.9650 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 29 S 2.6527 33.7437 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 30 p 15.0985 35.8397 42.0000 -Georgia_Bold.ttf 13 | 4.6330 56.5227 31 “ 1.4123 25.5049 20.0578 -Georgia_Bold.ttf 13 | 4.6330 56.5227 32 % 2.8509 46.1460 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 33 £ 2.8054 33.4471 41.6621 -Georgia_Bold.ttf 13 | 4.6330 56.5227 34 . 34.1322 11.2741 11.2741 -Georgia_Bold.ttf 13 | 4.6330 56.5227 35 2 12.7930 30.6653 31.6891 -Georgia_Bold.ttf 13 | 4.6330 56.5227 36 5 12.8822 31.3319 42.2500 -Georgia_Bold.ttf 13 | 4.6330 56.5227 37 m 15.2824 57.1474 29.1940 -Georgia_Bold.ttf 13 | 4.6330 56.5227 38 V 4.0075 47.4471 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 39 6 2.5011 32.2997 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 40 w 16.1963 50.4457 28.0000 -Georgia_Bold.ttf 13 | 4.6330 56.5227 41 T 3.8782 38.0802 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 42 M 4.0895 56.5455 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 43 G 2.7318 45.5865 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 44 b -0.0325 35.7325 45.9198 -Georgia_Bold.ttf 13 | 4.6330 56.5227 45 9 12.5604 32.6330 42.3571 -Georgia_Bold.ttf 13 | 4.6330 56.5227 46 ; 16.3008 11.5049 39.3813 -Georgia_Bold.ttf 13 | 4.6330 56.5227 47 D 4.0107 44.3879 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 48 L 4.0274 38.0196 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 49 y 16.4879 35.2710 40.8060 -Georgia_Bold.ttf 13 | 4.6330 56.5227 50 ‘ 1.2367 11.5049 20.0578 -Georgia_Bold.ttf 13 | 4.6330 56.5227 51 \ 1.3319 24.9408 55.3288 -Georgia_Bold.ttf 13 | 4.6330 56.5227 52 R 3.7542 46.2759 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 53 < 11.9371 28.2500 32.5259 -Georgia_Bold.ttf 13 | 4.6330 56.5227 54 4 12.6289 34.6684 42.2500 -Georgia_Bold.ttf 13 | 4.6330 56.5227 55 8 2.6944 33.3865 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 56 0 12.6540 34.6876 32.8830 -Georgia_Bold.ttf 13 | 4.6330 56.5227 57 A 3.8244 46.9902 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 58 E 4.0940 38.6908 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 59 B 3.7534 40.1348 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 60 v 16.2629 35.5017 28.0000 -Georgia_Bold.ttf 13 | 4.6330 56.5227 61 k 0.2062 37.9968 44.3879 -Georgia_Bold.ttf 13 | 4.6330 56.5227 62 J 3.9940 33.3235 41.6621 -Georgia_Bold.ttf 13 | 4.6330 56.5227 63 U 3.8198 46.9856 41.6621 -Georgia_Bold.ttf 13 | 4.6330 56.5227 64 j -0.5647 22.1730 57.6747 -Georgia_Bold.ttf 13 | 4.6330 56.5227 65 ( 1.3793 20.7483 52.5609 -Georgia_Bold.ttf 13 | 4.6330 56.5227 66 7 13.9670 30.0308 41.0560 -Georgia_Bold.ttf 13 | 4.6330 56.5227 67 § 2.7990 26.2192 48.4103 -Georgia_Bold.ttf 13 | 4.6330 56.5227 68 $ 0.5857 31.2486 51.7468 -Georgia_Bold.ttf 13 | 4.6330 56.5227 69 € 2.6387 41.2868 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 70 / 1.2940 24.9408 55.3288 -Georgia_Bold.ttf 13 | 4.6330 56.5227 71 C 2.6489 39.1489 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 72 * 2.4221 23.6397 21.2290 -Georgia_Bold.ttf 13 | 4.6330 56.5227 73 ” 1.0985 25.5049 20.0578 -Georgia_Bold.ttf 13 | 4.6330 56.5227 74 ? 2.7213 26.4727 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 75 { 1.2811 25.1716 52.5609 -Georgia_Bold.ttf 13 | 4.6330 56.5227 76 } 1.3894 25.1716 52.5609 -Georgia_Bold.ttf 13 | 4.6330 56.5227 77 , 34.7572 11.5049 20.7483 -Georgia_Bold.ttf 13 | 4.6330 56.5227 78 I 4.0607 21.7342 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 79 ° 2.6901 19.4471 18.8830 -Georgia_Bold.ttf 13 | 4.6330 56.5227 80 K 3.8327 47.4699 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 81 H 4.0524 49.0437 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 82 q 13.9615 36.1968 43.1940 -Georgia_Bold.ttf 13 | 4.6330 56.5227 83 & 2.6030 44.6379 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 84 ’ 1.2649 11.5049 20.0578 -Georgia_Bold.ttf 13 | 4.6330 56.5227 85 [ 1.0638 18.8830 52.5609 -Georgia_Bold.ttf 13 | 4.6330 56.5227 86 - 25.6517 17.3319 6.3078 -Georgia_Bold.ttf 13 | 4.6330 56.5227 87 Y 4.0198 46.5865 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 88 Q 2.7181 43.5511 53.5241 -Georgia_Bold.ttf 13 | 4.6330 56.5227 89 " 0.8805 23.0291 20.0578 -Georgia_Bold.ttf 13 | 4.6330 56.5227 90 ! 2.5216 10.9408 42.8561 -Georgia_Bold.ttf 13 | 4.6330 56.5227 91 x 16.3713 34.3078 28.0000 -Georgia_Bold.ttf 13 | 4.6330 56.5227 92 ) 0.9390 20.7483 52.5609 -Georgia_Bold.ttf 13 | 4.6330 56.5227 93 = 19.8301 30.3879 16.2451 -Georgia_Bold.ttf 13 | 4.6330 56.5227 94 + 12.0998 31.9572 31.9572 -Georgia_Bold.ttf 13 | 4.6330 56.5227 95 X 4.0500 47.1138 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 96 » 16.2443 28.0000 25.5049 -Georgia_Bold.ttf 13 | 4.6330 56.5227 97 ' 1.2585 9.3670 20.0578 -Georgia_Bold.ttf 13 | 4.6330 56.5227 98 ¢ 8.0148 29.6975 45.0592 -Georgia_Bold.ttf 13 | 4.6330 56.5227 99 Z 3.9101 40.1348 40.4681 -Georgia_Bold.ttf 13 | 4.6330 56.5227 100 > 11.8236 28.2500 32.5259 -Georgia_Bold.ttf 13 | 4.6330 56.5227 101 ® 2.7521 50.4457 50.4457 -Georgia_Bold.ttf 13 | 4.6330 56.5227 102 © 2.3001 50.4457 50.4457 -Georgia_Bold.ttf 13 | 4.6330 56.5227 103 ] 1.1926 18.8830 52.5609 -Georgia_Bold.ttf 13 | 4.6330 56.5227 104 é 0.0000 30.1152 45.5819 -Georgia_Bold.ttf 13 | 4.6330 56.5227 105 z 16.4264 28.0000 28.0000 -Georgia_Bold.ttf 13 | 4.6330 56.5227 106 _ 49.3716 41.0560 2.7259 -Georgia_Bold.ttf 13 | 4.6330 56.5227 107 ¥ 3.9070 44.1379 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 1 t 3.9435 22.8029 37.7468 -Georgia_Bold.ttf 14 N 47.1785 40.4681 2 h -4.2766 38.3109 44.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 3 a 10.9775 31.8795 30.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 4 n 11.4659 38.5434 29.1940 -Georgia_Bold.ttf 14 N 47.1785 40.4681 5 P -0.3331 37.4968 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 6 o 11.6275 32.6103 30.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 7 e 11.0349 30.1152 30.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 8 : 12.3521 11.2741 29.1940 -Georgia_Bold.ttf 14 N 47.1785 40.4681 9 r 11.4938 29.1940 29.1940 -Georgia_Bold.ttf 14 N 47.1785 40.4681 10 l -3.9784 18.7339 44.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 11 i -4.4635 18.7339 44.8687 -Georgia_Bold.ttf 14 N 47.1785 40.4681 12 1 9.0415 23.6397 31.6891 -Georgia_Bold.ttf 14 N 47.1785 40.4681 13 | -3.7378 4.6330 56.5227 -Georgia_Bold.ttf 14 N 47.1785 40.4681 14 N -0.1045 47.1785 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 15 f -4.1384 28.2500 44.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 16 g 11.4322 32.5497 42.0000 -Georgia_Bold.ttf 14 N 47.1785 40.4681 17 d -4.0741 36.4457 45.5819 -Georgia_Bold.ttf 14 N 47.1785 40.4681 18 W -0.3702 68.0276 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 19 s 11.3801 25.8621 30.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 20 c 11.1018 28.9212 30.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 21 u 11.1521 38.2100 30.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 22 3 8.8606 32.5259 42.2500 -Georgia_Bold.ttf 14 N 47.1785 40.4681 23 ~ 18.2906 32.5497 12.2181 -Georgia_Bold.ttf 14 N 47.1785 40.4681 24 # 4.0431 32.2532 36.4457 -Georgia_Bold.ttf 14 N 47.1785 40.4681 25 O -1.4752 43.5511 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 26 ` -4.4193 15.1940 12.8060 -Georgia_Bold.ttf 14 N 47.1785 40.4681 27 @ 0.7834 47.4709 48.6411 -Georgia_Bold.ttf 14 N 47.1785 40.4681 28 F -0.0333 35.9650 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 29 S -1.2888 33.7437 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 30 p 11.3727 35.8397 42.0000 -Georgia_Bold.ttf 14 N 47.1785 40.4681 31 “ -3.0613 25.5049 20.0578 -Georgia_Bold.ttf 14 N 47.1785 40.4681 32 % -1.0324 46.1460 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 33 £ -1.2856 33.4471 41.6621 -Georgia_Bold.ttf 14 N 47.1785 40.4681 34 . 30.4589 11.2741 11.2741 -Georgia_Bold.ttf 14 N 47.1785 40.4681 35 2 8.7939 30.6653 31.6891 -Georgia_Bold.ttf 14 N 47.1785 40.4681 36 5 8.9205 31.3319 42.2500 -Georgia_Bold.ttf 14 N 47.1785 40.4681 37 m 11.2190 57.1474 29.1940 -Georgia_Bold.ttf 14 N 47.1785 40.4681 38 V -0.1780 47.4471 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 39 6 -1.1085 32.2997 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 40 w 12.3866 50.4457 28.0000 -Georgia_Bold.ttf 14 N 47.1785 40.4681 41 T 0.2511 38.0802 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 42 M 0.1207 56.5455 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 43 G -1.0169 45.5865 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 44 b -3.7260 35.7325 45.9198 -Georgia_Bold.ttf 14 N 47.1785 40.4681 45 9 9.1542 32.6330 42.3571 -Georgia_Bold.ttf 14 N 47.1785 40.4681 46 ; 12.5947 11.5049 39.3813 -Georgia_Bold.ttf 14 N 47.1785 40.4681 47 D -0.0455 44.3879 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 48 L -0.2865 38.0196 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 49 y 12.4056 35.2710 40.8060 -Georgia_Bold.ttf 14 N 47.1785 40.4681 50 ‘ -2.5904 11.5049 20.0578 -Georgia_Bold.ttf 14 N 47.1785 40.4681 51 \ -2.5875 24.9408 55.3288 -Georgia_Bold.ttf 14 N 47.1785 40.4681 52 R -0.1059 46.2759 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 53 < 8.3323 28.2500 32.5259 -Georgia_Bold.ttf 14 N 47.1785 40.4681 54 4 8.2013 34.6684 42.2500 -Georgia_Bold.ttf 14 N 47.1785 40.4681 55 8 -1.1587 33.3865 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 56 0 9.1987 34.6876 32.8830 -Georgia_Bold.ttf 14 N 47.1785 40.4681 57 A -0.0122 46.9902 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 58 E -0.0353 38.6908 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 59 B 0.1840 40.1348 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 60 v 12.5073 35.5017 28.0000 -Georgia_Bold.ttf 14 N 47.1785 40.4681 61 k -3.5921 37.9968 44.3879 -Georgia_Bold.ttf 14 N 47.1785 40.4681 62 J 0.1339 33.3235 41.6621 -Georgia_Bold.ttf 14 N 47.1785 40.4681 63 U 0.0102 46.9856 41.6621 -Georgia_Bold.ttf 14 N 47.1785 40.4681 64 j -4.1743 22.1730 57.6747 -Georgia_Bold.ttf 14 N 47.1785 40.4681 65 ( -2.7824 20.7483 52.5609 -Georgia_Bold.ttf 14 N 47.1785 40.4681 66 7 10.2209 30.0308 41.0560 -Georgia_Bold.ttf 14 N 47.1785 40.4681 67 § -0.7607 26.2192 48.4103 -Georgia_Bold.ttf 14 N 47.1785 40.4681 68 $ -3.2000 31.2486 51.7468 -Georgia_Bold.ttf 14 N 47.1785 40.4681 69 € -1.3644 41.2868 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 70 / -2.6909 24.9408 55.3288 -Georgia_Bold.ttf 14 N 47.1785 40.4681 71 C -1.1019 39.1489 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 72 * -1.2751 23.6397 21.2290 -Georgia_Bold.ttf 14 N 47.1785 40.4681 73 ” -2.3467 25.5049 20.0578 -Georgia_Bold.ttf 14 N 47.1785 40.4681 74 ? -1.3066 26.4727 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 75 { -2.5469 25.1716 52.5609 -Georgia_Bold.ttf 14 N 47.1785 40.4681 76 } -2.9781 25.1716 52.5609 -Georgia_Bold.ttf 14 N 47.1785 40.4681 77 , 30.9866 11.5049 20.7483 -Georgia_Bold.ttf 14 N 47.1785 40.4681 78 I -0.1523 21.7342 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 79 ° -0.9248 19.4471 18.8830 -Georgia_Bold.ttf 14 N 47.1785 40.4681 80 K 0.2544 47.4699 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 81 H 0.0406 49.0437 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 82 q 10.6260 36.1968 43.1940 -Georgia_Bold.ttf 14 N 47.1785 40.4681 83 & -1.1838 44.6379 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 84 ’ -2.5927 11.5049 20.0578 -Georgia_Bold.ttf 14 N 47.1785 40.4681 85 [ -2.4870 18.8830 52.5609 -Georgia_Bold.ttf 14 N 47.1785 40.4681 86 - 21.6687 17.3319 6.3078 -Georgia_Bold.ttf 14 N 47.1785 40.4681 87 Y -0.0000 46.5865 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 88 Q -1.2887 43.5511 53.5241 -Georgia_Bold.ttf 14 N 47.1785 40.4681 89 " -2.4385 23.0291 20.0578 -Georgia_Bold.ttf 14 N 47.1785 40.4681 90 ! -1.3439 10.9408 42.8561 -Georgia_Bold.ttf 14 N 47.1785 40.4681 91 x 12.6820 34.3078 28.0000 -Georgia_Bold.ttf 14 N 47.1785 40.4681 92 ) -2.8686 20.7483 52.5609 -Georgia_Bold.ttf 14 N 47.1785 40.4681 93 = 15.7347 30.3879 16.2451 -Georgia_Bold.ttf 14 N 47.1785 40.4681 94 + 7.9859 31.9572 31.9572 -Georgia_Bold.ttf 14 N 47.1785 40.4681 95 X 0.1260 47.1138 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 96 » 11.9660 28.0000 25.5049 -Georgia_Bold.ttf 14 N 47.1785 40.4681 97 ' -2.7423 9.3670 20.0578 -Georgia_Bold.ttf 14 N 47.1785 40.4681 98 ¢ 3.7356 29.6975 45.0592 -Georgia_Bold.ttf 14 N 47.1785 40.4681 99 Z 0.2037 40.1348 40.4681 -Georgia_Bold.ttf 14 N 47.1785 40.4681 100 > 8.0777 28.2500 32.5259 -Georgia_Bold.ttf 14 N 47.1785 40.4681 101 ® -1.9285 50.4457 50.4457 -Georgia_Bold.ttf 14 N 47.1785 40.4681 102 © -1.4228 50.4457 50.4457 -Georgia_Bold.ttf 14 N 47.1785 40.4681 103 ] -2.7296 18.8830 52.5609 -Georgia_Bold.ttf 14 N 47.1785 40.4681 104 é -3.7992 30.1152 45.5819 -Georgia_Bold.ttf 14 N 47.1785 40.4681 105 z 12.6140 28.0000 28.0000 -Georgia_Bold.ttf 14 N 47.1785 40.4681 106 _ 45.8220 41.0560 2.7259 -Georgia_Bold.ttf 14 N 47.1785 40.4681 107 ¥ 0.0403 44.1379 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 1 t 7.7063 22.8029 37.7468 -Georgia_Bold.ttf 15 f 28.2500 44.3879 2 h 0.0455 38.3109 44.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 3 a 15.2857 31.8795 30.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 4 n 15.1101 38.5434 29.1940 -Georgia_Bold.ttf 15 f 28.2500 44.3879 5 P 4.0948 37.4968 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 6 o 14.9630 32.6103 30.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 7 e 15.0908 30.1152 30.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 8 : 16.3106 11.2741 29.1940 -Georgia_Bold.ttf 15 f 28.2500 44.3879 9 r 15.2247 29.1940 29.1940 -Georgia_Bold.ttf 15 f 28.2500 44.3879 10 l -0.1748 18.7339 44.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 11 i -0.2966 18.7339 44.8687 -Georgia_Bold.ttf 15 f 28.2500 44.3879 12 1 12.9116 23.6397 31.6891 -Georgia_Bold.ttf 15 f 28.2500 44.3879 13 | -0.0441 4.6330 56.5227 -Georgia_Bold.ttf 15 f 28.2500 44.3879 14 N 4.0115 47.1785 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 15 f -0.0473 28.2500 44.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 16 g 15.0684 32.5497 42.0000 -Georgia_Bold.ttf 15 f 28.2500 44.3879 17 d 0.0022 36.4457 45.5819 -Georgia_Bold.ttf 15 f 28.2500 44.3879 18 W 4.2874 68.0276 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 19 s 15.1332 25.8621 30.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 20 c 15.4658 28.9212 30.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 21 u 15.2365 38.2100 30.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 22 3 12.9444 32.5259 42.2500 -Georgia_Bold.ttf 15 f 28.2500 44.3879 23 ~ 22.1446 32.5497 12.2181 -Georgia_Bold.ttf 15 f 28.2500 44.3879 24 # 7.5403 32.2532 36.4457 -Georgia_Bold.ttf 15 f 28.2500 44.3879 25 O 2.8570 43.5511 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 26 ` -0.0804 15.1940 12.8060 -Georgia_Bold.ttf 15 f 28.2500 44.3879 27 @ 5.0509 47.4709 48.6411 -Georgia_Bold.ttf 15 f 28.2500 44.3879 28 F 3.8502 35.9650 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 29 S 2.6957 33.7437 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 30 p 15.3577 35.8397 42.0000 -Georgia_Bold.ttf 15 f 28.2500 44.3879 31 “ 1.1940 25.5049 20.0578 -Georgia_Bold.ttf 15 f 28.2500 44.3879 32 % 2.7654 46.1460 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 33 £ 2.7259 33.4471 41.6621 -Georgia_Bold.ttf 15 f 28.2500 44.3879 34 . 33.7610 11.2741 11.2741 -Georgia_Bold.ttf 15 f 28.2500 44.3879 35 2 12.8714 30.6653 31.6891 -Georgia_Bold.ttf 15 f 28.2500 44.3879 36 5 12.9213 31.3319 42.2500 -Georgia_Bold.ttf 15 f 28.2500 44.3879 37 m 15.0837 57.1474 29.1940 -Georgia_Bold.ttf 15 f 28.2500 44.3879 38 V 3.9948 47.4471 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 39 6 2.9945 32.2997 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 40 w 16.3008 50.4457 28.0000 -Georgia_Bold.ttf 15 f 28.2500 44.3879 41 T 3.8438 38.0802 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 42 M 3.9198 56.5455 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 43 G 2.5411 45.5865 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 44 b -0.1756 35.7325 45.9198 -Georgia_Bold.ttf 15 f 28.2500 44.3879 45 9 12.6822 32.6330 42.3571 -Georgia_Bold.ttf 15 f 28.2500 44.3879 46 ; 16.6423 11.5049 39.3813 -Georgia_Bold.ttf 15 f 28.2500 44.3879 47 D 4.0468 44.3879 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 48 L 3.9265 38.0196 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 49 y 16.3796 35.2710 40.8060 -Georgia_Bold.ttf 15 f 28.2500 44.3879 50 ‘ 1.1268 11.5049 20.0578 -Georgia_Bold.ttf 15 f 28.2500 44.3879 51 \ 1.0842 24.9408 55.3288 -Georgia_Bold.ttf 15 f 28.2500 44.3879 52 R 3.9320 46.2759 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 53 < 11.6916 28.2500 32.5259 -Georgia_Bold.ttf 15 f 28.2500 44.3879 54 4 12.6951 34.6684 42.2500 -Georgia_Bold.ttf 15 f 28.2500 44.3879 55 8 2.8200 33.3865 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 56 0 12.7073 34.6876 32.8830 -Georgia_Bold.ttf 15 f 28.2500 44.3879 57 A 3.6539 46.9902 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 58 E 4.0115 38.6908 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 59 B 3.6276 40.1348 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 60 v 16.1151 35.5017 28.0000 -Georgia_Bold.ttf 15 f 28.2500 44.3879 61 k 0.2053 37.9968 44.3879 -Georgia_Bold.ttf 15 f 28.2500 44.3879 62 J 3.9768 33.3235 41.6621 -Georgia_Bold.ttf 15 f 28.2500 44.3879 63 U 3.9395 46.9856 41.6621 -Georgia_Bold.ttf 15 f 28.2500 44.3879 64 j -0.4149 22.1730 57.6747 -Georgia_Bold.ttf 15 f 28.2500 44.3879 65 ( 1.1838 20.7483 52.5609 -Georgia_Bold.ttf 15 f 28.2500 44.3879 66 7 13.7974 30.0308 41.0560 -Georgia_Bold.ttf 15 f 28.2500 44.3879 67 § 2.9060 26.2192 48.4103 -Georgia_Bold.ttf 15 f 28.2500 44.3879 68 $ 0.7937 31.2486 51.7468 -Georgia_Bold.ttf 15 f 28.2500 44.3879 69 € 2.5957 41.2868 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 70 / 1.3098 24.9408 55.3288 -Georgia_Bold.ttf 15 f 28.2500 44.3879 71 C 2.5833 39.1489 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 72 * 2.6314 23.6397 21.2290 -Georgia_Bold.ttf 15 f 28.2500 44.3879 73 ” 0.9539 25.5049 20.0578 -Georgia_Bold.ttf 15 f 28.2500 44.3879 74 ? 2.6349 26.4727 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 75 { 1.2946 25.1716 52.5609 -Georgia_Bold.ttf 15 f 28.2500 44.3879 76 } 1.3975 25.1716 52.5609 -Georgia_Bold.ttf 15 f 28.2500 44.3879 77 , 35.0521 11.5049 20.7483 -Georgia_Bold.ttf 15 f 28.2500 44.3879 78 I 3.6805 21.7342 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 79 ° 3.0781 19.4471 18.8830 -Georgia_Bold.ttf 15 f 28.2500 44.3879 80 K 4.0188 47.4699 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 81 H 3.6806 49.0437 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 82 q 13.9898 36.1968 43.1940 -Georgia_Bold.ttf 15 f 28.2500 44.3879 83 & 2.9098 44.6379 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 84 ’ 1.4749 11.5049 20.0578 -Georgia_Bold.ttf 15 f 28.2500 44.3879 85 [ 1.2041 18.8830 52.5609 -Georgia_Bold.ttf 15 f 28.2500 44.3879 86 - 25.9759 17.3319 6.3078 -Georgia_Bold.ttf 15 f 28.2500 44.3879 87 Y 3.5862 46.5865 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 88 Q 2.7180 43.5511 53.5241 -Georgia_Bold.ttf 15 f 28.2500 44.3879 89 " 1.0775 23.0291 20.0578 -Georgia_Bold.ttf 15 f 28.2500 44.3879 90 ! 2.6812 10.9408 42.8561 -Georgia_Bold.ttf 15 f 28.2500 44.3879 91 x 16.3470 34.3078 28.0000 -Georgia_Bold.ttf 15 f 28.2500 44.3879 92 ) 1.1531 20.7483 52.5609 -Georgia_Bold.ttf 15 f 28.2500 44.3879 93 = 19.7740 30.3879 16.2451 -Georgia_Bold.ttf 15 f 28.2500 44.3879 94 + 12.0627 31.9572 31.9572 -Georgia_Bold.ttf 15 f 28.2500 44.3879 95 X 3.7585 47.1138 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 96 » 15.9927 28.0000 25.5049 -Georgia_Bold.ttf 15 f 28.2500 44.3879 97 ' 1.1953 9.3670 20.0578 -Georgia_Bold.ttf 15 f 28.2500 44.3879 98 ¢ 8.1127 29.6975 45.0592 -Georgia_Bold.ttf 15 f 28.2500 44.3879 99 Z 3.8359 40.1348 40.4681 -Georgia_Bold.ttf 15 f 28.2500 44.3879 100 > 11.7443 28.2500 32.5259 -Georgia_Bold.ttf 15 f 28.2500 44.3879 101 ® 2.3358 50.4457 50.4457 -Georgia_Bold.ttf 15 f 28.2500 44.3879 102 © 2.5628 50.4457 50.4457 -Georgia_Bold.ttf 15 f 28.2500 44.3879 103 ] 1.2227 18.8830 52.5609 -Georgia_Bold.ttf 15 f 28.2500 44.3879 104 é 0.1191 30.1152 45.5819 -Georgia_Bold.ttf 15 f 28.2500 44.3879 105 z 16.6460 28.0000 28.0000 -Georgia_Bold.ttf 15 f 28.2500 44.3879 106 _ 49.6241 41.0560 2.7259 -Georgia_Bold.ttf 15 f 28.2500 44.3879 107 ¥ 3.9346 44.1379 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 1 t -7.5430 22.8029 37.7468 -Georgia_Bold.ttf 16 g 32.5497 42.0000 2 h -15.2028 38.3109 44.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 3 a 0.1487 31.8795 30.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 4 n -0.0656 38.5434 29.1940 -Georgia_Bold.ttf 16 g 32.5497 42.0000 5 P -11.2287 37.4968 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 6 o 0.1158 32.6103 30.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 7 e -0.1060 30.1152 30.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 8 : 1.3158 11.2741 29.1940 -Georgia_Bold.ttf 16 g 32.5497 42.0000 9 r 0.0385 29.1940 29.1940 -Georgia_Bold.ttf 16 g 32.5497 42.0000 10 l -15.1555 18.7339 44.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 11 i -15.6242 18.7339 44.8687 -Georgia_Bold.ttf 16 g 32.5497 42.0000 12 1 -2.4961 23.6397 31.6891 -Georgia_Bold.ttf 16 g 32.5497 42.0000 13 | -15.4972 4.6330 56.5227 -Georgia_Bold.ttf 16 g 32.5497 42.0000 14 N -11.1908 47.1785 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 15 f -15.2492 28.2500 44.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 16 g -0.0417 32.5497 42.0000 -Georgia_Bold.ttf 16 g 32.5497 42.0000 17 d -15.3321 36.4457 45.5819 -Georgia_Bold.ttf 16 g 32.5497 42.0000 18 W -11.4569 68.0276 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 19 s -0.0287 25.8621 30.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 20 c 0.0115 28.9212 30.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 21 u -0.0447 38.2100 30.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 22 3 -2.5405 32.5259 42.2500 -Georgia_Bold.ttf 16 g 32.5497 42.0000 23 ~ 6.6005 32.5497 12.2181 -Georgia_Bold.ttf 16 g 32.5497 42.0000 24 # -7.3270 32.2532 36.4457 -Georgia_Bold.ttf 16 g 32.5497 42.0000 25 O -12.6609 43.5511 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 26 ` -15.5189 15.1940 12.8060 -Georgia_Bold.ttf 16 g 32.5497 42.0000 27 @ -10.2761 47.4709 48.6411 -Georgia_Bold.ttf 16 g 32.5497 42.0000 28 F -11.2029 35.9650 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 29 S -12.4824 33.7437 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 30 p -0.2306 35.8397 42.0000 -Georgia_Bold.ttf 16 g 32.5497 42.0000 31 “ -14.0825 25.5049 20.0578 -Georgia_Bold.ttf 16 g 32.5497 42.0000 32 % -12.3772 46.1460 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 33 £ -12.7619 33.4471 41.6621 -Georgia_Bold.ttf 16 g 32.5497 42.0000 34 . 19.2964 11.2741 11.2741 -Georgia_Bold.ttf 16 g 32.5497 42.0000 35 2 -2.6252 30.6653 31.6891 -Georgia_Bold.ttf 16 g 32.5497 42.0000 36 5 -2.5822 31.3319 42.2500 -Georgia_Bold.ttf 16 g 32.5497 42.0000 37 m -0.0551 57.1474 29.1940 -Georgia_Bold.ttf 16 g 32.5497 42.0000 38 V -11.4403 47.4471 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 39 6 -12.0849 32.2997 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 40 w 1.3612 50.4457 28.0000 -Georgia_Bold.ttf 16 g 32.5497 42.0000 41 T -11.2198 38.0802 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 42 M -11.2241 56.5455 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 43 G -12.2971 45.5865 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 44 b -15.1370 35.7325 45.9198 -Georgia_Bold.ttf 16 g 32.5497 42.0000 45 9 -2.5623 32.6330 42.3571 -Georgia_Bold.ttf 16 g 32.5497 42.0000 46 ; 0.8323 11.5049 39.3813 -Georgia_Bold.ttf 16 g 32.5497 42.0000 47 D -11.1865 44.3879 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 48 L -11.1472 38.0196 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 49 y 1.2841 35.2710 40.8060 -Georgia_Bold.ttf 16 g 32.5497 42.0000 50 ‘ -13.9772 11.5049 20.0578 -Georgia_Bold.ttf 16 g 32.5497 42.0000 51 \ -14.0777 24.9408 55.3288 -Georgia_Bold.ttf 16 g 32.5497 42.0000 52 R -11.5258 46.2759 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 53 < -3.4631 28.2500 32.5259 -Georgia_Bold.ttf 16 g 32.5497 42.0000 54 4 -2.5860 34.6684 42.2500 -Georgia_Bold.ttf 16 g 32.5497 42.0000 55 8 -12.7243 33.3865 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 56 0 -2.6782 34.6876 32.8830 -Georgia_Bold.ttf 16 g 32.5497 42.0000 57 A -11.1933 46.9902 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 58 E -10.9513 38.6908 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 59 B -11.4946 40.1348 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 60 v 1.5141 35.5017 28.0000 -Georgia_Bold.ttf 16 g 32.5497 42.0000 61 k -15.1109 37.9968 44.3879 -Georgia_Bold.ttf 16 g 32.5497 42.0000 62 J -10.9972 33.3235 41.6621 -Georgia_Bold.ttf 16 g 32.5497 42.0000 63 U -11.5434 46.9856 41.6621 -Georgia_Bold.ttf 16 g 32.5497 42.0000 64 j -15.6605 22.1730 57.6747 -Georgia_Bold.ttf 16 g 32.5497 42.0000 65 ( -13.8244 20.7483 52.5609 -Georgia_Bold.ttf 16 g 32.5497 42.0000 66 7 -1.2721 30.0308 41.0560 -Georgia_Bold.ttf 16 g 32.5497 42.0000 67 § -12.2826 26.2192 48.4103 -Georgia_Bold.ttf 16 g 32.5497 42.0000 68 $ -14.3325 31.2486 51.7468 -Georgia_Bold.ttf 16 g 32.5497 42.0000 69 € -12.7302 41.2868 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 70 / -14.0922 24.9408 55.3288 -Georgia_Bold.ttf 16 g 32.5497 42.0000 71 C -12.4955 39.1489 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 72 * -12.2204 23.6397 21.2290 -Georgia_Bold.ttf 16 g 32.5497 42.0000 73 ” -13.9820 25.5049 20.0578 -Georgia_Bold.ttf 16 g 32.5497 42.0000 74 ? -12.4348 26.4727 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 75 { -14.0143 25.1716 52.5609 -Georgia_Bold.ttf 16 g 32.5497 42.0000 76 } -14.0281 25.1716 52.5609 -Georgia_Bold.ttf 16 g 32.5497 42.0000 77 , 19.8795 11.5049 20.7483 -Georgia_Bold.ttf 16 g 32.5497 42.0000 78 I -10.9712 21.7342 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 79 ° -12.5235 19.4471 18.8830 -Georgia_Bold.ttf 16 g 32.5497 42.0000 80 K -11.5358 47.4699 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 81 H -11.2682 49.0437 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 82 q -1.1464 36.1968 43.1940 -Georgia_Bold.ttf 16 g 32.5497 42.0000 83 & -12.5931 44.6379 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 84 ’ -13.7243 11.5049 20.0578 -Georgia_Bold.ttf 16 g 32.5497 42.0000 85 [ -13.8365 18.8830 52.5609 -Georgia_Bold.ttf 16 g 32.5497 42.0000 86 - 10.5626 17.3319 6.3078 -Georgia_Bold.ttf 16 g 32.5497 42.0000 87 Y -11.0921 46.5865 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 88 Q -12.4552 43.5511 53.5241 -Georgia_Bold.ttf 16 g 32.5497 42.0000 89 " -13.6843 23.0291 20.0578 -Georgia_Bold.ttf 16 g 32.5497 42.0000 90 ! -12.5552 10.9408 42.8561 -Georgia_Bold.ttf 16 g 32.5497 42.0000 91 x 1.2510 34.3078 28.0000 -Georgia_Bold.ttf 16 g 32.5497 42.0000 92 ) -13.8820 20.7483 52.5609 -Georgia_Bold.ttf 16 g 32.5497 42.0000 93 = 4.7793 30.3879 16.2451 -Georgia_Bold.ttf 16 g 32.5497 42.0000 94 + -3.2875 31.9572 31.9572 -Georgia_Bold.ttf 16 g 32.5497 42.0000 95 X -11.2799 47.1138 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 96 » 1.1726 28.0000 25.5049 -Georgia_Bold.ttf 16 g 32.5497 42.0000 97 ' -14.1833 9.3670 20.0578 -Georgia_Bold.ttf 16 g 32.5497 42.0000 98 ¢ -7.3900 29.6975 45.0592 -Georgia_Bold.ttf 16 g 32.5497 42.0000 99 Z -11.3190 40.1348 40.4681 -Georgia_Bold.ttf 16 g 32.5497 42.0000 100 > -2.9875 28.2500 32.5259 -Georgia_Bold.ttf 16 g 32.5497 42.0000 101 ® -12.3866 50.4457 50.4457 -Georgia_Bold.ttf 16 g 32.5497 42.0000 102 © -12.9917 50.4457 50.4457 -Georgia_Bold.ttf 16 g 32.5497 42.0000 103 ] -13.9758 18.8830 52.5609 -Georgia_Bold.ttf 16 g 32.5497 42.0000 104 é -15.2544 30.1152 45.5819 -Georgia_Bold.ttf 16 g 32.5497 42.0000 105 z 1.1173 28.0000 28.0000 -Georgia_Bold.ttf 16 g 32.5497 42.0000 106 _ 34.1976 41.0560 2.7259 -Georgia_Bold.ttf 16 g 32.5497 42.0000 107 ¥ -11.1448 44.1379 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 1 t 7.6665 22.8029 37.7468 -Georgia_Bold.ttf 17 d 36.4457 45.5819 2 h 0.3901 38.3109 44.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 3 a 14.7998 31.8795 30.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 4 n 14.9872 38.5434 29.1940 -Georgia_Bold.ttf 17 d 36.4457 45.5819 5 P 3.9123 37.4968 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 6 o 15.1198 32.6103 30.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 7 e 15.3001 30.1152 30.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 8 : 16.3170 11.2741 29.1940 -Georgia_Bold.ttf 17 d 36.4457 45.5819 9 r 15.7898 29.1940 29.1940 -Georgia_Bold.ttf 17 d 36.4457 45.5819 10 l -0.0969 18.7339 44.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 11 i -0.5033 18.7339 44.8687 -Georgia_Bold.ttf 17 d 36.4457 45.5819 12 1 13.0213 23.6397 31.6891 -Georgia_Bold.ttf 17 d 36.4457 45.5819 13 | -0.1333 4.6330 56.5227 -Georgia_Bold.ttf 17 d 36.4457 45.5819 14 N 3.9607 47.1785 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 15 f -0.1823 28.2500 44.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 16 g 15.1940 32.5497 42.0000 -Georgia_Bold.ttf 17 d 36.4457 45.5819 17 d -0.2330 36.4457 45.5819 -Georgia_Bold.ttf 17 d 36.4457 45.5819 18 W 3.6725 68.0276 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 19 s 15.3741 25.8621 30.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 20 c 15.1216 28.9212 30.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 21 u 15.0295 38.2100 30.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 22 3 12.7612 32.5259 42.2500 -Georgia_Bold.ttf 17 d 36.4457 45.5819 23 ~ 22.1874 32.5497 12.2181 -Georgia_Bold.ttf 17 d 36.4457 45.5819 24 # 7.6416 32.2532 36.4457 -Georgia_Bold.ttf 17 d 36.4457 45.5819 25 O 2.8546 43.5511 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 26 ` 0.0108 15.1940 12.8060 -Georgia_Bold.ttf 17 d 36.4457 45.5819 27 @ 5.0114 47.4709 48.6411 -Georgia_Bold.ttf 17 d 36.4457 45.5819 28 F 3.9070 35.9650 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 29 S 3.0386 33.7437 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 30 p 15.0856 35.8397 42.0000 -Georgia_Bold.ttf 17 d 36.4457 45.5819 31 “ 0.9735 25.5049 20.0578 -Georgia_Bold.ttf 17 d 36.4457 45.5819 32 % 2.4135 46.1460 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 33 £ 2.7000 33.4471 41.6621 -Georgia_Bold.ttf 17 d 36.4457 45.5819 34 . 34.4734 11.2741 11.2741 -Georgia_Bold.ttf 17 d 36.4457 45.5819 35 2 12.7059 30.6653 31.6891 -Georgia_Bold.ttf 17 d 36.4457 45.5819 36 5 13.0916 31.3319 42.2500 -Georgia_Bold.ttf 17 d 36.4457 45.5819 37 m 15.0348 57.1474 29.1940 -Georgia_Bold.ttf 17 d 36.4457 45.5819 38 V 3.7892 47.4471 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 39 6 2.8124 32.2997 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 40 w 16.5524 50.4457 28.0000 -Georgia_Bold.ttf 17 d 36.4457 45.5819 41 T 4.1381 38.0802 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 42 M 3.9948 56.5455 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 43 G 3.1345 45.5865 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 44 b 0.0266 35.7325 45.9198 -Georgia_Bold.ttf 17 d 36.4457 45.5819 45 9 12.6697 32.6330 42.3571 -Georgia_Bold.ttf 17 d 36.4457 45.5819 46 ; 16.5006 11.5049 39.3813 -Georgia_Bold.ttf 17 d 36.4457 45.5819 47 D 3.8294 44.3879 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 48 L 3.8314 38.0196 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 49 y 16.4719 35.2710 40.8060 -Georgia_Bold.ttf 17 d 36.4457 45.5819 50 ‘ 1.1459 11.5049 20.0578 -Georgia_Bold.ttf 17 d 36.4457 45.5819 51 \ 0.9622 24.9408 55.3288 -Georgia_Bold.ttf 17 d 36.4457 45.5819 52 R 4.1209 46.2759 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 53 < 11.5196 28.2500 32.5259 -Georgia_Bold.ttf 17 d 36.4457 45.5819 54 4 12.7965 34.6684 42.2500 -Georgia_Bold.ttf 17 d 36.4457 45.5819 55 8 2.8600 33.3865 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 56 0 12.9549 34.6876 32.8830 -Georgia_Bold.ttf 17 d 36.4457 45.5819 57 A 4.1134 46.9902 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 58 E 4.1196 38.6908 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 59 B 3.6880 40.1348 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 60 v 16.2283 35.5017 28.0000 -Georgia_Bold.ttf 17 d 36.4457 45.5819 61 k 0.1976 37.9968 44.3879 -Georgia_Bold.ttf 17 d 36.4457 45.5819 62 J 3.7438 33.3235 41.6621 -Georgia_Bold.ttf 17 d 36.4457 45.5819 63 U 3.4875 46.9856 41.6621 -Georgia_Bold.ttf 17 d 36.4457 45.5819 64 j -0.2530 22.1730 57.6747 -Georgia_Bold.ttf 17 d 36.4457 45.5819 65 ( 0.8966 20.7483 52.5609 -Georgia_Bold.ttf 17 d 36.4457 45.5819 66 7 14.1060 30.0308 41.0560 -Georgia_Bold.ttf 17 d 36.4457 45.5819 67 § 2.8078 26.2192 48.4103 -Georgia_Bold.ttf 17 d 36.4457 45.5819 68 $ 0.3834 31.2486 51.7468 -Georgia_Bold.ttf 17 d 36.4457 45.5819 69 € 2.3774 41.2868 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 70 / 1.0690 24.9408 55.3288 -Georgia_Bold.ttf 17 d 36.4457 45.5819 71 C 2.6801 39.1489 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 72 * 2.9271 23.6397 21.2290 -Georgia_Bold.ttf 17 d 36.4457 45.5819 73 ” 1.1222 25.5049 20.0578 -Georgia_Bold.ttf 17 d 36.4457 45.5819 74 ? 2.7070 26.4727 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 75 { 1.1055 25.1716 52.5609 -Georgia_Bold.ttf 17 d 36.4457 45.5819 76 } 1.2666 25.1716 52.5609 -Georgia_Bold.ttf 17 d 36.4457 45.5819 77 , 35.0185 11.5049 20.7483 -Georgia_Bold.ttf 17 d 36.4457 45.5819 78 I 3.8648 21.7342 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 79 ° 2.6473 19.4471 18.8830 -Georgia_Bold.ttf 17 d 36.4457 45.5819 80 K 4.3298 47.4699 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 81 H 3.6994 49.0437 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 82 q 13.9540 36.1968 43.1940 -Georgia_Bold.ttf 17 d 36.4457 45.5819 83 & 2.7253 44.6379 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 84 ’ 1.1176 11.5049 20.0578 -Georgia_Bold.ttf 17 d 36.4457 45.5819 85 [ 1.3901 18.8830 52.5609 -Georgia_Bold.ttf 17 d 36.4457 45.5819 86 - 26.0124 17.3319 6.3078 -Georgia_Bold.ttf 17 d 36.4457 45.5819 87 Y 3.7814 46.5865 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 88 Q 2.5530 43.5511 53.5241 -Georgia_Bold.ttf 17 d 36.4457 45.5819 89 " 1.3387 23.0291 20.0578 -Georgia_Bold.ttf 17 d 36.4457 45.5819 90 ! 3.0660 10.9408 42.8561 -Georgia_Bold.ttf 17 d 36.4457 45.5819 91 x 16.1427 34.3078 28.0000 -Georgia_Bold.ttf 17 d 36.4457 45.5819 92 ) 1.1263 20.7483 52.5609 -Georgia_Bold.ttf 17 d 36.4457 45.5819 93 = 20.1370 30.3879 16.2451 -Georgia_Bold.ttf 17 d 36.4457 45.5819 94 + 11.8871 31.9572 31.9572 -Georgia_Bold.ttf 17 d 36.4457 45.5819 95 X 4.0500 47.1138 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 96 » 15.9093 28.0000 25.5049 -Georgia_Bold.ttf 17 d 36.4457 45.5819 97 ' 0.8525 9.3670 20.0578 -Georgia_Bold.ttf 17 d 36.4457 45.5819 98 ¢ 7.7043 29.6975 45.0592 -Georgia_Bold.ttf 17 d 36.4457 45.5819 99 Z 3.7438 40.1348 40.4681 -Georgia_Bold.ttf 17 d 36.4457 45.5819 100 > 11.8516 28.2500 32.5259 -Georgia_Bold.ttf 17 d 36.4457 45.5819 101 ® 2.3290 50.4457 50.4457 -Georgia_Bold.ttf 17 d 36.4457 45.5819 102 © 2.2745 50.4457 50.4457 -Georgia_Bold.ttf 17 d 36.4457 45.5819 103 ] 1.3158 18.8830 52.5609 -Georgia_Bold.ttf 17 d 36.4457 45.5819 104 é -0.0073 30.1152 45.5819 -Georgia_Bold.ttf 17 d 36.4457 45.5819 105 z 16.5875 28.0000 28.0000 -Georgia_Bold.ttf 17 d 36.4457 45.5819 106 _ 49.5525 41.0560 2.7259 -Georgia_Bold.ttf 17 d 36.4457 45.5819 107 ¥ 3.7400 44.1379 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 1 t 3.9735 22.8029 37.7468 -Georgia_Bold.ttf 18 W 68.0276 40.4681 2 h -4.1252 38.3109 44.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 3 a 11.5067 31.8795 30.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 4 n 11.2488 38.5434 29.1940 -Georgia_Bold.ttf 18 W 68.0276 40.4681 5 P 0.1227 37.4968 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 6 o 11.1878 32.6103 30.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 7 e 11.1164 30.1152 30.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 8 : 12.1016 11.2741 29.1940 -Georgia_Bold.ttf 18 W 68.0276 40.4681 9 r 10.9303 29.1940 29.1940 -Georgia_Bold.ttf 18 W 68.0276 40.4681 10 l -3.9722 18.7339 44.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 11 i -4.3732 18.7339 44.8687 -Georgia_Bold.ttf 18 W 68.0276 40.4681 12 1 8.7173 23.6397 31.6891 -Georgia_Bold.ttf 18 W 68.0276 40.4681 13 | -3.5513 4.6330 56.5227 -Georgia_Bold.ttf 18 W 68.0276 40.4681 14 N -0.0105 47.1785 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 15 f -3.8729 28.2500 44.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 16 g 10.8733 32.5497 42.0000 -Georgia_Bold.ttf 18 W 68.0276 40.4681 17 d -4.0345 36.4457 45.5819 -Georgia_Bold.ttf 18 W 68.0276 40.4681 18 W 0.0385 68.0276 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 19 s 11.3328 25.8621 30.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 20 c 11.2358 28.9212 30.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 21 u 11.0984 38.2100 30.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 22 3 9.2801 32.5259 42.2500 -Georgia_Bold.ttf 18 W 68.0276 40.4681 23 ~ 18.4444 32.5497 12.2181 -Georgia_Bold.ttf 18 W 68.0276 40.4681 24 # 3.6302 32.2532 36.4457 -Georgia_Bold.ttf 18 W 68.0276 40.4681 25 O -1.6573 43.5511 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 26 ` -4.4135 15.1940 12.8060 -Georgia_Bold.ttf 18 W 68.0276 40.4681 27 @ 1.1756 47.4709 48.6411 -Georgia_Bold.ttf 18 W 68.0276 40.4681 28 F -0.0850 35.9650 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 29 S -0.9425 33.7437 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 30 p 11.5529 35.8397 42.0000 -Georgia_Bold.ttf 18 W 68.0276 40.4681 31 “ -2.6477 25.5049 20.0578 -Georgia_Bold.ttf 18 W 68.0276 40.4681 32 % -1.1580 46.1460 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 33 £ -0.9730 33.4471 41.6621 -Georgia_Bold.ttf 18 W 68.0276 40.4681 34 . 30.2569 11.2741 11.2741 -Georgia_Bold.ttf 18 W 68.0276 40.4681 35 2 8.1308 30.6653 31.6891 -Georgia_Bold.ttf 18 W 68.0276 40.4681 36 5 8.9825 31.3319 42.2500 -Georgia_Bold.ttf 18 W 68.0276 40.4681 37 m 11.2341 57.1474 29.1940 -Georgia_Bold.ttf 18 W 68.0276 40.4681 38 V -0.1182 47.4471 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 39 6 -1.2078 32.2997 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 40 w 12.8663 50.4457 28.0000 -Georgia_Bold.ttf 18 W 68.0276 40.4681 41 T 0.6739 38.0802 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 42 M 0.1543 56.5455 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 43 G -1.5250 45.5865 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 44 b -3.7527 35.7325 45.9198 -Georgia_Bold.ttf 18 W 68.0276 40.4681 45 9 8.6750 32.6330 42.3571 -Georgia_Bold.ttf 18 W 68.0276 40.4681 46 ; 12.7218 11.5049 39.3813 -Georgia_Bold.ttf 18 W 68.0276 40.4681 47 D -0.5055 44.3879 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 48 L 0.4169 38.0196 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 49 y 12.7613 35.2710 40.8060 -Georgia_Bold.ttf 18 W 68.0276 40.4681 50 ‘ -2.5066 11.5049 20.0578 -Georgia_Bold.ttf 18 W 68.0276 40.4681 51 \ -2.1479 24.9408 55.3288 -Georgia_Bold.ttf 18 W 68.0276 40.4681 52 R 0.1462 46.2759 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 53 < 8.1846 28.2500 32.5259 -Georgia_Bold.ttf 18 W 68.0276 40.4681 54 4 8.4022 34.6684 42.2500 -Georgia_Bold.ttf 18 W 68.0276 40.4681 55 8 -1.4736 33.3865 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 56 0 8.9000 34.6876 32.8830 -Georgia_Bold.ttf 18 W 68.0276 40.4681 57 A -0.0481 46.9902 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 58 E -0.1315 38.6908 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 59 B -0.1615 40.1348 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 60 v 12.3759 35.5017 28.0000 -Georgia_Bold.ttf 18 W 68.0276 40.4681 61 k -3.8146 37.9968 44.3879 -Georgia_Bold.ttf 18 W 68.0276 40.4681 62 J -0.0516 33.3235 41.6621 -Georgia_Bold.ttf 18 W 68.0276 40.4681 63 U 0.0392 46.9856 41.6621 -Georgia_Bold.ttf 18 W 68.0276 40.4681 64 j -4.8463 22.1730 57.6747 -Georgia_Bold.ttf 18 W 68.0276 40.4681 65 ( -2.7686 20.7483 52.5609 -Georgia_Bold.ttf 18 W 68.0276 40.4681 66 7 9.7861 30.0308 41.0560 -Georgia_Bold.ttf 18 W 68.0276 40.4681 67 § -1.3870 26.2192 48.4103 -Georgia_Bold.ttf 18 W 68.0276 40.4681 68 $ -3.2341 31.2486 51.7468 -Georgia_Bold.ttf 18 W 68.0276 40.4681 69 € -1.2862 41.2868 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 70 / -2.3672 24.9408 55.3288 -Georgia_Bold.ttf 18 W 68.0276 40.4681 71 C -1.3812 39.1489 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 72 * -1.4077 23.6397 21.2290 -Georgia_Bold.ttf 18 W 68.0276 40.4681 73 ” -2.3420 25.5049 20.0578 -Georgia_Bold.ttf 18 W 68.0276 40.4681 74 ? -1.1262 26.4727 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 75 { -2.6221 25.1716 52.5609 -Georgia_Bold.ttf 18 W 68.0276 40.4681 76 } -2.3376 25.1716 52.5609 -Georgia_Bold.ttf 18 W 68.0276 40.4681 77 , 31.4183 11.5049 20.7483 -Georgia_Bold.ttf 18 W 68.0276 40.4681 78 I 0.0810 21.7342 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 79 ° -1.1704 19.4471 18.8830 -Georgia_Bold.ttf 18 W 68.0276 40.4681 80 K -0.0474 47.4699 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 81 H 0.5116 49.0437 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 82 q 10.3354 36.1968 43.1940 -Georgia_Bold.ttf 18 W 68.0276 40.4681 83 & -0.6646 44.6379 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 84 ’ -3.1406 11.5049 20.0578 -Georgia_Bold.ttf 18 W 68.0276 40.4681 85 [ -2.4489 18.8830 52.5609 -Georgia_Bold.ttf 18 W 68.0276 40.4681 86 - 21.7455 17.3319 6.3078 -Georgia_Bold.ttf 18 W 68.0276 40.4681 87 Y -0.2124 46.5865 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 88 Q -1.5225 43.5511 53.5241 -Georgia_Bold.ttf 18 W 68.0276 40.4681 89 " -3.1388 23.0291 20.0578 -Georgia_Bold.ttf 18 W 68.0276 40.4681 90 ! -1.1676 10.9408 42.8561 -Georgia_Bold.ttf 18 W 68.0276 40.4681 91 x 12.4466 34.3078 28.0000 -Georgia_Bold.ttf 18 W 68.0276 40.4681 92 ) -2.8171 20.7483 52.5609 -Georgia_Bold.ttf 18 W 68.0276 40.4681 93 = 15.4911 30.3879 16.2451 -Georgia_Bold.ttf 18 W 68.0276 40.4681 94 + 8.1697 31.9572 31.9572 -Georgia_Bold.ttf 18 W 68.0276 40.4681 95 X -0.0780 47.1138 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 96 » 12.3164 28.0000 25.5049 -Georgia_Bold.ttf 18 W 68.0276 40.4681 97 ' -3.2536 9.3670 20.0578 -Georgia_Bold.ttf 18 W 68.0276 40.4681 98 ¢ 4.1780 29.6975 45.0592 -Georgia_Bold.ttf 18 W 68.0276 40.4681 99 Z 0.5941 40.1348 40.4681 -Georgia_Bold.ttf 18 W 68.0276 40.4681 100 > 8.1738 28.2500 32.5259 -Georgia_Bold.ttf 18 W 68.0276 40.4681 101 ® -0.9700 50.4457 50.4457 -Georgia_Bold.ttf 18 W 68.0276 40.4681 102 © -1.3809 50.4457 50.4457 -Georgia_Bold.ttf 18 W 68.0276 40.4681 103 ] -2.9878 18.8830 52.5609 -Georgia_Bold.ttf 18 W 68.0276 40.4681 104 é -3.4986 30.1152 45.5819 -Georgia_Bold.ttf 18 W 68.0276 40.4681 105 z 12.0151 28.0000 28.0000 -Georgia_Bold.ttf 18 W 68.0276 40.4681 106 _ 45.1875 41.0560 2.7259 -Georgia_Bold.ttf 18 W 68.0276 40.4681 107 ¥ 0.2635 44.1379 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 1 t -7.6275 22.8029 37.7468 -Georgia_Bold.ttf 19 s 25.8621 30.3879 2 h -14.9729 38.3109 44.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 3 a -0.0960 31.8795 30.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 4 n -0.0045 38.5434 29.1940 -Georgia_Bold.ttf 19 s 25.8621 30.3879 5 P -11.5128 37.4968 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 6 o -0.2508 32.6103 30.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 7 e 0.0704 30.1152 30.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 8 : 1.3773 11.2741 29.1940 -Georgia_Bold.ttf 19 s 25.8621 30.3879 9 r 0.1581 29.1940 29.1940 -Georgia_Bold.ttf 19 s 25.8621 30.3879 10 l -15.3015 18.7339 44.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 11 i -15.3347 18.7339 44.8687 -Georgia_Bold.ttf 19 s 25.8621 30.3879 12 1 -2.4265 23.6397 31.6891 -Georgia_Bold.ttf 19 s 25.8621 30.3879 13 | -15.0670 4.6330 56.5227 -Georgia_Bold.ttf 19 s 25.8621 30.3879 14 N -11.0940 47.1785 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 15 f -15.1685 28.2500 44.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 16 g -0.1339 32.5497 42.0000 -Georgia_Bold.ttf 19 s 25.8621 30.3879 17 d -15.2765 36.4457 45.5819 -Georgia_Bold.ttf 19 s 25.8621 30.3879 18 W -10.9480 68.0276 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 19 s -0.1231 25.8621 30.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 20 c -0.0385 28.9212 30.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 21 u -0.1955 38.2100 30.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 22 3 -2.3894 32.5259 42.2500 -Georgia_Bold.ttf 19 s 25.8621 30.3879 23 ~ 6.7566 32.5497 12.2181 -Georgia_Bold.ttf 19 s 25.8621 30.3879 24 # -7.4252 32.2532 36.4457 -Georgia_Bold.ttf 19 s 25.8621 30.3879 25 O -12.4635 43.5511 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 26 ` -15.0424 15.1940 12.8060 -Georgia_Bold.ttf 19 s 25.8621 30.3879 27 @ -9.7882 47.4709 48.6411 -Georgia_Bold.ttf 19 s 25.8621 30.3879 28 F -11.3575 35.9650 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 29 S -12.4538 33.7437 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 30 p -0.1083 35.8397 42.0000 -Georgia_Bold.ttf 19 s 25.8621 30.3879 31 “ -13.8565 25.5049 20.0578 -Georgia_Bold.ttf 19 s 25.8621 30.3879 32 % -12.1141 46.1460 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 33 £ -12.7687 33.4471 41.6621 -Georgia_Bold.ttf 19 s 25.8621 30.3879 34 . 19.1216 11.2741 11.2741 -Georgia_Bold.ttf 19 s 25.8621 30.3879 35 2 -2.5647 30.6653 31.6891 -Georgia_Bold.ttf 19 s 25.8621 30.3879 36 5 -2.6201 31.3319 42.2500 -Georgia_Bold.ttf 19 s 25.8621 30.3879 37 m -0.0060 57.1474 29.1940 -Georgia_Bold.ttf 19 s 25.8621 30.3879 38 V -11.5142 47.4471 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 39 6 -12.2939 32.2997 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 40 w 1.4080 50.4457 28.0000 -Georgia_Bold.ttf 19 s 25.8621 30.3879 41 T -11.1305 38.0802 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 42 M -11.3686 56.5455 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 43 G -12.2902 45.5865 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 44 b -15.1160 35.7325 45.9198 -Georgia_Bold.ttf 19 s 25.8621 30.3879 45 9 -2.9099 32.6330 42.3571 -Georgia_Bold.ttf 19 s 25.8621 30.3879 46 ; 0.9947 11.5049 39.3813 -Georgia_Bold.ttf 19 s 25.8621 30.3879 47 D -11.3602 44.3879 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 48 L -11.4704 38.0196 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 49 y 1.2324 35.2710 40.8060 -Georgia_Bold.ttf 19 s 25.8621 30.3879 50 ‘ -13.9083 11.5049 20.0578 -Georgia_Bold.ttf 19 s 25.8621 30.3879 51 \ -14.2068 24.9408 55.3288 -Georgia_Bold.ttf 19 s 25.8621 30.3879 52 R -11.4123 46.2759 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 53 < -3.3833 28.2500 32.5259 -Georgia_Bold.ttf 19 s 25.8621 30.3879 54 4 -2.3825 34.6684 42.2500 -Georgia_Bold.ttf 19 s 25.8621 30.3879 55 8 -12.7953 33.3865 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 56 0 -2.2727 34.6876 32.8830 -Georgia_Bold.ttf 19 s 25.8621 30.3879 57 A -11.4728 46.9902 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 58 E -11.3325 38.6908 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 59 B -11.5771 40.1348 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 60 v 1.3728 35.5017 28.0000 -Georgia_Bold.ttf 19 s 25.8621 30.3879 61 k -15.1584 37.9968 44.3879 -Georgia_Bold.ttf 19 s 25.8621 30.3879 62 J -11.0222 33.3235 41.6621 -Georgia_Bold.ttf 19 s 25.8621 30.3879 63 U -11.2639 46.9856 41.6621 -Georgia_Bold.ttf 19 s 25.8621 30.3879 64 j -15.7119 22.1730 57.6747 -Georgia_Bold.ttf 19 s 25.8621 30.3879 65 ( -13.8726 20.7483 52.5609 -Georgia_Bold.ttf 19 s 25.8621 30.3879 66 7 -1.3205 30.0308 41.0560 -Georgia_Bold.ttf 19 s 25.8621 30.3879 67 § -12.5498 26.2192 48.4103 -Georgia_Bold.ttf 19 s 25.8621 30.3879 68 $ -14.5874 31.2486 51.7468 -Georgia_Bold.ttf 19 s 25.8621 30.3879 69 € -12.1215 41.2868 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 70 / -14.0890 24.9408 55.3288 -Georgia_Bold.ttf 19 s 25.8621 30.3879 71 C -12.6232 39.1489 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 72 * -12.4324 23.6397 21.2290 -Georgia_Bold.ttf 19 s 25.8621 30.3879 73 ” -14.0858 25.5049 20.0578 -Georgia_Bold.ttf 19 s 25.8621 30.3879 74 ? -12.5622 26.4727 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 75 { -14.3226 25.1716 52.5609 -Georgia_Bold.ttf 19 s 25.8621 30.3879 76 } -14.1390 25.1716 52.5609 -Georgia_Bold.ttf 19 s 25.8621 30.3879 77 , 19.7458 11.5049 20.7483 -Georgia_Bold.ttf 19 s 25.8621 30.3879 78 I -10.9786 21.7342 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 79 ° -12.5643 19.4471 18.8830 -Georgia_Bold.ttf 19 s 25.8621 30.3879 80 K -11.3325 47.4699 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 81 H -11.1940 49.0437 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 82 q -1.0615 36.1968 43.1940 -Georgia_Bold.ttf 19 s 25.8621 30.3879 83 & -12.3718 44.6379 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 84 ’ -13.9903 11.5049 20.0578 -Georgia_Bold.ttf 19 s 25.8621 30.3879 85 [ -13.9213 18.8830 52.5609 -Georgia_Bold.ttf 19 s 25.8621 30.3879 86 - 10.2660 17.3319 6.3078 -Georgia_Bold.ttf 19 s 25.8621 30.3879 87 Y -11.3081 46.5865 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 88 Q -12.6826 43.5511 53.5241 -Georgia_Bold.ttf 19 s 25.8621 30.3879 89 " -14.0710 23.0291 20.0578 -Georgia_Bold.ttf 19 s 25.8621 30.3879 90 ! -12.5598 10.9408 42.8561 -Georgia_Bold.ttf 19 s 25.8621 30.3879 91 x 1.3190 34.3078 28.0000 -Georgia_Bold.ttf 19 s 25.8621 30.3879 92 ) -14.0994 20.7483 52.5609 -Georgia_Bold.ttf 19 s 25.8621 30.3879 93 = 4.4599 30.3879 16.2451 -Georgia_Bold.ttf 19 s 25.8621 30.3879 94 + -3.0997 31.9572 31.9572 -Georgia_Bold.ttf 19 s 25.8621 30.3879 95 X -11.1741 47.1138 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 96 » 0.8989 28.0000 25.5049 -Georgia_Bold.ttf 19 s 25.8621 30.3879 97 ' -13.9051 9.3670 20.0578 -Georgia_Bold.ttf 19 s 25.8621 30.3879 98 ¢ -7.1874 29.6975 45.0592 -Georgia_Bold.ttf 19 s 25.8621 30.3879 99 Z -11.2863 40.1348 40.4681 -Georgia_Bold.ttf 19 s 25.8621 30.3879 100 > -3.2045 28.2500 32.5259 -Georgia_Bold.ttf 19 s 25.8621 30.3879 101 ® -13.0209 50.4457 50.4457 -Georgia_Bold.ttf 19 s 25.8621 30.3879 102 © -12.6735 50.4457 50.4457 -Georgia_Bold.ttf 19 s 25.8621 30.3879 103 ] -14.3146 18.8830 52.5609 -Georgia_Bold.ttf 19 s 25.8621 30.3879 104 é -15.3066 30.1152 45.5819 -Georgia_Bold.ttf 19 s 25.8621 30.3879 105 z 1.3849 28.0000 28.0000 -Georgia_Bold.ttf 19 s 25.8621 30.3879 106 _ 33.9405 41.0560 2.7259 -Georgia_Bold.ttf 19 s 25.8621 30.3879 107 ¥ -11.3190 44.1379 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 1 t -7.3743 22.8029 37.7468 -Georgia_Bold.ttf 20 c 28.9212 30.3879 2 h -15.1972 38.3109 44.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 3 a 0.1409 31.8795 30.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 4 n -0.1371 38.5434 29.1940 -Georgia_Bold.ttf 20 c 28.9212 30.3879 5 P -11.0569 37.4968 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 6 o -0.2853 32.6103 30.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 7 e -0.2043 30.1152 30.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 8 : 1.1940 11.2741 29.1940 -Georgia_Bold.ttf 20 c 28.9212 30.3879 9 r -0.1637 29.1940 29.1940 -Georgia_Bold.ttf 20 c 28.9212 30.3879 10 l -15.0985 18.7339 44.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 11 i -15.6928 18.7339 44.8687 -Georgia_Bold.ttf 20 c 28.9212 30.3879 12 1 -2.2362 23.6397 31.6891 -Georgia_Bold.ttf 20 c 28.9212 30.3879 13 | -15.5553 4.6330 56.5227 -Georgia_Bold.ttf 20 c 28.9212 30.3879 14 N -11.4273 47.1785 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 15 f -14.9614 28.2500 44.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 16 g -0.1256 32.5497 42.0000 -Georgia_Bold.ttf 20 c 28.9212 30.3879 17 d -15.4362 36.4457 45.5819 -Georgia_Bold.ttf 20 c 28.9212 30.3879 18 W -11.2811 68.0276 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 19 s -0.0126 25.8621 30.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 20 c 0.2573 28.9212 30.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 21 u -0.1788 38.2100 30.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 22 3 -2.5451 32.5259 42.2500 -Georgia_Bold.ttf 20 c 28.9212 30.3879 23 ~ 6.8197 32.5497 12.2181 -Georgia_Bold.ttf 20 c 28.9212 30.3879 24 # -6.8824 32.2532 36.4457 -Georgia_Bold.ttf 20 c 28.9212 30.3879 25 O -12.8096 43.5511 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 26 ` -15.3445 15.1940 12.8060 -Georgia_Bold.ttf 20 c 28.9212 30.3879 27 @ -9.9129 47.4709 48.6411 -Georgia_Bold.ttf 20 c 28.9212 30.3879 28 F -11.4476 35.9650 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 29 S -12.2619 33.7437 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 30 p 0.1863 35.8397 42.0000 -Georgia_Bold.ttf 20 c 28.9212 30.3879 31 “ -14.0220 25.5049 20.0578 -Georgia_Bold.ttf 20 c 28.9212 30.3879 32 % -12.2197 46.1460 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 33 £ -12.2879 33.4471 41.6621 -Georgia_Bold.ttf 20 c 28.9212 30.3879 34 . 19.1471 11.2741 11.2741 -Georgia_Bold.ttf 20 c 28.9212 30.3879 35 2 -2.8292 30.6653 31.6891 -Georgia_Bold.ttf 20 c 28.9212 30.3879 36 5 -2.4052 31.3319 42.2500 -Georgia_Bold.ttf 20 c 28.9212 30.3879 37 m -0.2030 57.1474 29.1940 -Georgia_Bold.ttf 20 c 28.9212 30.3879 38 V -11.3433 47.4471 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 39 6 -12.3842 32.2997 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 40 w 1.1083 50.4457 28.0000 -Georgia_Bold.ttf 20 c 28.9212 30.3879 41 T -11.0128 38.0802 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 42 M -11.1364 56.5455 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 43 G -12.7891 45.5865 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 44 b -15.1153 35.7325 45.9198 -Georgia_Bold.ttf 20 c 28.9212 30.3879 45 9 -2.6663 32.6330 42.3571 -Georgia_Bold.ttf 20 c 28.9212 30.3879 46 ; 1.2125 11.5049 39.3813 -Georgia_Bold.ttf 20 c 28.9212 30.3879 47 D -11.3801 44.3879 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 48 L -10.9053 38.0196 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 49 y 1.0335 35.2710 40.8060 -Georgia_Bold.ttf 20 c 28.9212 30.3879 50 ‘ -14.2057 11.5049 20.0578 -Georgia_Bold.ttf 20 c 28.9212 30.3879 51 \ -13.8559 24.9408 55.3288 -Georgia_Bold.ttf 20 c 28.9212 30.3879 52 R -11.2182 46.2759 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 53 < -3.3365 28.2500 32.5259 -Georgia_Bold.ttf 20 c 28.9212 30.3879 54 4 -2.4889 34.6684 42.2500 -Georgia_Bold.ttf 20 c 28.9212 30.3879 55 8 -12.6343 33.3865 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 56 0 -2.5011 34.6876 32.8830 -Georgia_Bold.ttf 20 c 28.9212 30.3879 57 A -11.2384 46.9902 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 58 E -11.3570 38.6908 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 59 B -11.5638 40.1348 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 60 v 1.0749 35.5017 28.0000 -Georgia_Bold.ttf 20 c 28.9212 30.3879 61 k -15.2478 37.9968 44.3879 -Georgia_Bold.ttf 20 c 28.9212 30.3879 62 J -11.2077 33.3235 41.6621 -Georgia_Bold.ttf 20 c 28.9212 30.3879 63 U -11.4049 46.9856 41.6621 -Georgia_Bold.ttf 20 c 28.9212 30.3879 64 j -15.4763 22.1730 57.6747 -Georgia_Bold.ttf 20 c 28.9212 30.3879 65 ( -14.0449 20.7483 52.5609 -Georgia_Bold.ttf 20 c 28.9212 30.3879 66 7 -1.5657 30.0308 41.0560 -Georgia_Bold.ttf 20 c 28.9212 30.3879 67 § -12.7020 26.2192 48.4103 -Georgia_Bold.ttf 20 c 28.9212 30.3879 68 $ -14.6455 31.2486 51.7468 -Georgia_Bold.ttf 20 c 28.9212 30.3879 69 € -12.2942 41.2868 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 70 / -14.0519 24.9408 55.3288 -Georgia_Bold.ttf 20 c 28.9212 30.3879 71 C -12.4278 39.1489 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 72 * -12.5509 23.6397 21.2290 -Georgia_Bold.ttf 20 c 28.9212 30.3879 73 ” -14.0199 25.5049 20.0578 -Georgia_Bold.ttf 20 c 28.9212 30.3879 74 ? -12.4968 26.4727 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 75 { -13.7279 25.1716 52.5609 -Georgia_Bold.ttf 20 c 28.9212 30.3879 76 } -14.1121 25.1716 52.5609 -Georgia_Bold.ttf 20 c 28.9212 30.3879 77 , 19.8665 11.5049 20.7483 -Georgia_Bold.ttf 20 c 28.9212 30.3879 78 I -11.2265 21.7342 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 79 ° -12.7363 19.4471 18.8830 -Georgia_Bold.ttf 20 c 28.9212 30.3879 80 K -11.1589 47.4699 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 81 H -11.2893 49.0437 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 82 q -1.3604 36.1968 43.1940 -Georgia_Bold.ttf 20 c 28.9212 30.3879 83 & -12.4168 44.6379 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 84 ’ -13.9906 11.5049 20.0578 -Georgia_Bold.ttf 20 c 28.9212 30.3879 85 [ -14.1619 18.8830 52.5609 -Georgia_Bold.ttf 20 c 28.9212 30.3879 86 - 10.9171 17.3319 6.3078 -Georgia_Bold.ttf 20 c 28.9212 30.3879 87 Y -11.4250 46.5865 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 88 Q -12.3745 43.5511 53.5241 -Georgia_Bold.ttf 20 c 28.9212 30.3879 89 " -13.9661 23.0291 20.0578 -Georgia_Bold.ttf 20 c 28.9212 30.3879 90 ! -12.3673 10.9408 42.8561 -Georgia_Bold.ttf 20 c 28.9212 30.3879 91 x 1.1935 34.3078 28.0000 -Georgia_Bold.ttf 20 c 28.9212 30.3879 92 ) -13.5540 20.7483 52.5609 -Georgia_Bold.ttf 20 c 28.9212 30.3879 93 = 4.6887 30.3879 16.2451 -Georgia_Bold.ttf 20 c 28.9212 30.3879 94 + -2.8815 31.9572 31.9572 -Georgia_Bold.ttf 20 c 28.9212 30.3879 95 X -11.2682 47.1138 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 96 » 1.1819 28.0000 25.5049 -Georgia_Bold.ttf 20 c 28.9212 30.3879 97 ' -13.8068 9.3670 20.0578 -Georgia_Bold.ttf 20 c 28.9212 30.3879 98 ¢ -7.3698 29.6975 45.0592 -Georgia_Bold.ttf 20 c 28.9212 30.3879 99 Z -11.4099 40.1348 40.4681 -Georgia_Bold.ttf 20 c 28.9212 30.3879 100 > -3.1752 28.2500 32.5259 -Georgia_Bold.ttf 20 c 28.9212 30.3879 101 ® -12.8031 50.4457 50.4457 -Georgia_Bold.ttf 20 c 28.9212 30.3879 102 © -12.9552 50.4457 50.4457 -Georgia_Bold.ttf 20 c 28.9212 30.3879 103 ] -13.9476 18.8830 52.5609 -Georgia_Bold.ttf 20 c 28.9212 30.3879 104 é -15.1819 30.1152 45.5819 -Georgia_Bold.ttf 20 c 28.9212 30.3879 105 z 1.2824 28.0000 28.0000 -Georgia_Bold.ttf 20 c 28.9212 30.3879 106 _ 34.1306 41.0560 2.7259 -Georgia_Bold.ttf 20 c 28.9212 30.3879 107 ¥ -10.9744 44.1379 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 1 t -7.3704 22.8029 37.7468 -Georgia_Bold.ttf 21 u 38.2100 30.3879 2 h -15.0865 38.3109 44.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 3 a -0.2082 31.8795 30.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 4 n 0.0115 38.5434 29.1940 -Georgia_Bold.ttf 21 u 38.2100 30.3879 5 P -11.4749 37.4968 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 6 o 0.0474 32.6103 30.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 7 e 0.0035 30.1152 30.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 8 : 1.0193 11.2741 29.1940 -Georgia_Bold.ttf 21 u 38.2100 30.3879 9 r 0.0546 29.1940 29.1940 -Georgia_Bold.ttf 21 u 38.2100 30.3879 10 l -15.1708 18.7339 44.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 11 i -15.4680 18.7339 44.8687 -Georgia_Bold.ttf 21 u 38.2100 30.3879 12 1 -2.5714 23.6397 31.6891 -Georgia_Bold.ttf 21 u 38.2100 30.3879 13 | -15.2044 4.6330 56.5227 -Georgia_Bold.ttf 21 u 38.2100 30.3879 14 N -11.2567 47.1785 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 15 f -14.9009 28.2500 44.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 16 g -0.0167 32.5497 42.0000 -Georgia_Bold.ttf 21 u 38.2100 30.3879 17 d -15.1606 36.4457 45.5819 -Georgia_Bold.ttf 21 u 38.2100 30.3879 18 W -11.6081 68.0276 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 19 s -0.1455 25.8621 30.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 20 c -0.0731 28.9212 30.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 21 u -0.0690 38.2100 30.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 22 3 -2.3300 32.5259 42.2500 -Georgia_Bold.ttf 21 u 38.2100 30.3879 23 ~ 6.8732 32.5497 12.2181 -Georgia_Bold.ttf 21 u 38.2100 30.3879 24 # -7.1576 32.2532 36.4457 -Georgia_Bold.ttf 21 u 38.2100 30.3879 25 O -12.4425 43.5511 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 26 ` -15.2434 15.1940 12.8060 -Georgia_Bold.ttf 21 u 38.2100 30.3879 27 @ -10.3065 47.4709 48.6411 -Georgia_Bold.ttf 21 u 38.2100 30.3879 28 F -11.4874 35.9650 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 29 S -12.5098 33.7437 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 30 p -0.0038 35.8397 42.0000 -Georgia_Bold.ttf 21 u 38.2100 30.3879 31 “ -14.0678 25.5049 20.0578 -Georgia_Bold.ttf 21 u 38.2100 30.3879 32 % -12.5525 46.1460 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 33 £ -12.4671 33.4471 41.6621 -Georgia_Bold.ttf 21 u 38.2100 30.3879 34 . 18.7654 11.2741 11.2741 -Georgia_Bold.ttf 21 u 38.2100 30.3879 35 2 -2.3195 30.6653 31.6891 -Georgia_Bold.ttf 21 u 38.2100 30.3879 36 5 -2.5846 31.3319 42.2500 -Georgia_Bold.ttf 21 u 38.2100 30.3879 37 m 0.0172 57.1474 29.1940 -Georgia_Bold.ttf 21 u 38.2100 30.3879 38 V -11.4341 47.4471 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 39 6 -12.4250 32.2997 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 40 w 0.8404 50.4457 28.0000 -Georgia_Bold.ttf 21 u 38.2100 30.3879 41 T -11.5336 38.0802 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 42 M -11.4693 56.5455 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 43 G -12.5203 45.5865 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 44 b -15.0652 35.7325 45.9198 -Georgia_Bold.ttf 21 u 38.2100 30.3879 45 9 -2.2765 32.6330 42.3571 -Georgia_Bold.ttf 21 u 38.2100 30.3879 46 ; 1.2359 11.5049 39.3813 -Georgia_Bold.ttf 21 u 38.2100 30.3879 47 D -11.1013 44.3879 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 48 L -11.3400 38.0196 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 49 y 1.3636 35.2710 40.8060 -Georgia_Bold.ttf 21 u 38.2100 30.3879 50 ‘ -13.6397 11.5049 20.0578 -Georgia_Bold.ttf 21 u 38.2100 30.3879 51 \ -14.1304 24.9408 55.3288 -Georgia_Bold.ttf 21 u 38.2100 30.3879 52 R -11.0230 46.2759 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 53 < -3.3722 28.2500 32.5259 -Georgia_Bold.ttf 21 u 38.2100 30.3879 54 4 -2.2052 34.6684 42.2500 -Georgia_Bold.ttf 21 u 38.2100 30.3879 55 8 -12.6256 33.3865 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 56 0 -2.6763 34.6876 32.8830 -Georgia_Bold.ttf 21 u 38.2100 30.3879 57 A -11.1643 46.9902 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 58 E -11.3671 38.6908 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 59 B -11.1174 40.1348 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 60 v 1.4643 35.5017 28.0000 -Georgia_Bold.ttf 21 u 38.2100 30.3879 61 k -15.2493 37.9968 44.3879 -Georgia_Bold.ttf 21 u 38.2100 30.3879 62 J -11.4421 33.3235 41.6621 -Georgia_Bold.ttf 21 u 38.2100 30.3879 63 U -11.4045 46.9856 41.6621 -Georgia_Bold.ttf 21 u 38.2100 30.3879 64 j -15.6011 22.1730 57.6747 -Georgia_Bold.ttf 21 u 38.2100 30.3879 65 ( -14.1820 20.7483 52.5609 -Georgia_Bold.ttf 21 u 38.2100 30.3879 66 7 -1.3753 30.0308 41.0560 -Georgia_Bold.ttf 21 u 38.2100 30.3879 67 § -12.5098 26.2192 48.4103 -Georgia_Bold.ttf 21 u 38.2100 30.3879 68 $ -14.1973 31.2486 51.7468 -Georgia_Bold.ttf 21 u 38.2100 30.3879 69 € -12.6482 41.2868 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 70 / -14.0032 24.9408 55.3288 -Georgia_Bold.ttf 21 u 38.2100 30.3879 71 C -12.2667 39.1489 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 72 * -12.2541 23.6397 21.2290 -Georgia_Bold.ttf 21 u 38.2100 30.3879 73 ” -14.0584 25.5049 20.0578 -Georgia_Bold.ttf 21 u 38.2100 30.3879 74 ? -12.6410 26.4727 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 75 { -13.9531 25.1716 52.5609 -Georgia_Bold.ttf 21 u 38.2100 30.3879 76 } -14.0560 25.1716 52.5609 -Georgia_Bold.ttf 21 u 38.2100 30.3879 77 , 19.8678 11.5049 20.7483 -Georgia_Bold.ttf 21 u 38.2100 30.3879 78 I -11.1878 21.7342 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 79 ° -12.3552 19.4471 18.8830 -Georgia_Bold.ttf 21 u 38.2100 30.3879 80 K -11.2023 47.4699 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 81 H -10.9867 49.0437 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 82 q -1.0136 36.1968 43.1940 -Georgia_Bold.ttf 21 u 38.2100 30.3879 83 & -12.5692 44.6379 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 84 ’ -14.1158 11.5049 20.0578 -Georgia_Bold.ttf 21 u 38.2100 30.3879 85 [ -13.9782 18.8830 52.5609 -Georgia_Bold.ttf 21 u 38.2100 30.3879 86 - 10.4295 17.3319 6.3078 -Georgia_Bold.ttf 21 u 38.2100 30.3879 87 Y -11.4066 46.5865 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 88 Q -12.0780 43.5511 53.5241 -Georgia_Bold.ttf 21 u 38.2100 30.3879 89 " -14.2113 23.0291 20.0578 -Georgia_Bold.ttf 21 u 38.2100 30.3879 90 ! -12.7340 10.9408 42.8561 -Georgia_Bold.ttf 21 u 38.2100 30.3879 91 x 1.3761 34.3078 28.0000 -Georgia_Bold.ttf 21 u 38.2100 30.3879 92 ) -13.7363 20.7483 52.5609 -Georgia_Bold.ttf 21 u 38.2100 30.3879 93 = 4.7757 30.3879 16.2451 -Georgia_Bold.ttf 21 u 38.2100 30.3879 94 + -3.1904 31.9572 31.9572 -Georgia_Bold.ttf 21 u 38.2100 30.3879 95 X -11.1685 47.1138 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 96 » 0.9510 28.0000 25.5049 -Georgia_Bold.ttf 21 u 38.2100 30.3879 97 ' -14.1116 9.3670 20.0578 -Georgia_Bold.ttf 21 u 38.2100 30.3879 98 ¢ -7.2413 29.6975 45.0592 -Georgia_Bold.ttf 21 u 38.2100 30.3879 99 Z -11.4594 40.1348 40.4681 -Georgia_Bold.ttf 21 u 38.2100 30.3879 100 > -3.2577 28.2500 32.5259 -Georgia_Bold.ttf 21 u 38.2100 30.3879 101 ® -13.0826 50.4457 50.4457 -Georgia_Bold.ttf 21 u 38.2100 30.3879 102 © -12.8347 50.4457 50.4457 -Georgia_Bold.ttf 21 u 38.2100 30.3879 103 ] -14.0008 18.8830 52.5609 -Georgia_Bold.ttf 21 u 38.2100 30.3879 104 é -14.8648 30.1152 45.5819 -Georgia_Bold.ttf 21 u 38.2100 30.3879 105 z 1.3057 28.0000 28.0000 -Georgia_Bold.ttf 21 u 38.2100 30.3879 106 _ 34.5568 41.0560 2.7259 -Georgia_Bold.ttf 21 u 38.2100 30.3879 107 ¥ -11.0739 44.1379 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 1 t -4.8519 22.8029 37.7468 -Georgia_Bold.ttf 22 3 32.5259 42.2500 2 h -12.6850 38.3109 44.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 3 a 2.5387 31.8795 30.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 4 n 2.5368 38.5434 29.1940 -Georgia_Bold.ttf 22 3 32.5259 42.2500 5 P -8.9570 37.4968 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 6 o 2.5903 32.6103 30.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 7 e 2.5059 30.1152 30.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 8 : 3.4726 11.2741 29.1940 -Georgia_Bold.ttf 22 3 32.5259 42.2500 9 r 2.5179 29.1940 29.1940 -Georgia_Bold.ttf 22 3 32.5259 42.2500 10 l -12.6989 18.7339 44.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 11 i -13.1017 18.7339 44.8687 -Georgia_Bold.ttf 22 3 32.5259 42.2500 12 1 -0.3278 23.6397 31.6891 -Georgia_Bold.ttf 22 3 32.5259 42.2500 13 | -12.9530 4.6330 56.5227 -Georgia_Bold.ttf 22 3 32.5259 42.2500 14 N -8.8962 47.1785 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 15 f -12.7059 28.2500 44.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 16 g 2.5094 32.5497 42.0000 -Georgia_Bold.ttf 22 3 32.5259 42.2500 17 d -12.4212 36.4457 45.5819 -Georgia_Bold.ttf 22 3 32.5259 42.2500 18 W -8.7880 68.0276 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 19 s 2.4007 25.8621 30.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 20 c 2.1225 28.9212 30.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 21 u 2.5675 38.2100 30.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 22 3 -0.0067 32.5259 42.2500 -Georgia_Bold.ttf 22 3 32.5259 42.2500 23 ~ 9.5404 32.5497 12.2181 -Georgia_Bold.ttf 22 3 32.5259 42.2500 24 # -5.0457 32.2532 36.4457 -Georgia_Bold.ttf 22 3 32.5259 42.2500 25 O -9.9819 43.5511 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 26 ` -12.8336 15.1940 12.8060 -Georgia_Bold.ttf 22 3 32.5259 42.2500 27 @ -7.6091 47.4709 48.6411 -Georgia_Bold.ttf 22 3 32.5259 42.2500 28 F -8.8148 35.9650 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 29 S -9.7989 33.7437 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 30 p 2.3042 35.8397 42.0000 -Georgia_Bold.ttf 22 3 32.5259 42.2500 31 “ -11.8307 25.5049 20.0578 -Georgia_Bold.ttf 22 3 32.5259 42.2500 32 % -10.0857 46.1460 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 33 £ -9.5329 33.4471 41.6621 -Georgia_Bold.ttf 22 3 32.5259 42.2500 34 . 21.4833 11.2741 11.2741 -Georgia_Bold.ttf 22 3 32.5259 42.2500 35 2 0.1530 30.6653 31.6891 -Georgia_Bold.ttf 22 3 32.5259 42.2500 36 5 -0.1102 31.3319 42.2500 -Georgia_Bold.ttf 22 3 32.5259 42.2500 37 m 2.4821 57.1474 29.1940 -Georgia_Bold.ttf 22 3 32.5259 42.2500 38 V -8.7624 47.4471 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 39 6 -9.9462 32.2997 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 40 w 3.3554 50.4457 28.0000 -Georgia_Bold.ttf 22 3 32.5259 42.2500 41 T -8.4890 38.0802 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 42 M -8.8675 56.5455 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 43 G -9.9814 45.5865 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 44 b -12.6562 35.7325 45.9198 -Georgia_Bold.ttf 22 3 32.5259 42.2500 45 9 -0.0917 32.6330 42.3571 -Georgia_Bold.ttf 22 3 32.5259 42.2500 46 ; 3.6993 11.5049 39.3813 -Georgia_Bold.ttf 22 3 32.5259 42.2500 47 D -8.4736 44.3879 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 48 L -8.7374 38.0196 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 49 y 3.5075 35.2710 40.8060 -Georgia_Bold.ttf 22 3 32.5259 42.2500 50 ‘ -11.5422 11.5049 20.0578 -Georgia_Bold.ttf 22 3 32.5259 42.2500 51 \ -11.6869 24.9408 55.3288 -Georgia_Bold.ttf 22 3 32.5259 42.2500 52 R -8.7179 46.2759 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 53 < -0.8998 28.2500 32.5259 -Georgia_Bold.ttf 22 3 32.5259 42.2500 54 4 -0.1486 34.6684 42.2500 -Georgia_Bold.ttf 22 3 32.5259 42.2500 55 8 -9.9706 33.3865 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 56 0 -0.1078 34.6876 32.8830 -Georgia_Bold.ttf 22 3 32.5259 42.2500 57 A -8.8494 46.9902 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 58 E -8.5285 38.6908 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 59 B -8.8332 40.1348 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 60 v 3.8888 35.5017 28.0000 -Georgia_Bold.ttf 22 3 32.5259 42.2500 61 k -12.4884 37.9968 44.3879 -Georgia_Bold.ttf 22 3 32.5259 42.2500 62 J -8.5825 33.3235 41.6621 -Georgia_Bold.ttf 22 3 32.5259 42.2500 63 U -8.5734 46.9856 41.6621 -Georgia_Bold.ttf 22 3 32.5259 42.2500 64 j -13.0100 22.1730 57.6747 -Georgia_Bold.ttf 22 3 32.5259 42.2500 65 ( -11.6649 20.7483 52.5609 -Georgia_Bold.ttf 22 3 32.5259 42.2500 66 7 1.3005 30.0308 41.0560 -Georgia_Bold.ttf 22 3 32.5259 42.2500 67 § -10.2728 26.2192 48.4103 -Georgia_Bold.ttf 22 3 32.5259 42.2500 68 $ -11.7501 31.2486 51.7468 -Georgia_Bold.ttf 22 3 32.5259 42.2500 69 € -9.8897 41.2868 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 70 / -11.6662 24.9408 55.3288 -Georgia_Bold.ttf 22 3 32.5259 42.2500 71 C -9.7134 39.1489 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 72 * -9.9769 23.6397 21.2290 -Georgia_Bold.ttf 22 3 32.5259 42.2500 73 ” -11.3632 25.5049 20.0578 -Georgia_Bold.ttf 22 3 32.5259 42.2500 74 ? -10.0639 26.4727 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 75 { -11.8625 25.1716 52.5609 -Georgia_Bold.ttf 22 3 32.5259 42.2500 76 } -11.2325 25.1716 52.5609 -Georgia_Bold.ttf 22 3 32.5259 42.2500 77 , 22.4614 11.5049 20.7483 -Georgia_Bold.ttf 22 3 32.5259 42.2500 78 I -8.8054 21.7342 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 79 ° -9.9290 19.4471 18.8830 -Georgia_Bold.ttf 22 3 32.5259 42.2500 80 K -8.8067 47.4699 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 81 H -8.7842 49.0437 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 82 q 1.1722 36.1968 43.1940 -Georgia_Bold.ttf 22 3 32.5259 42.2500 83 & -10.0865 44.6379 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 84 ’ -11.6563 11.5049 20.0578 -Georgia_Bold.ttf 22 3 32.5259 42.2500 85 [ -11.6085 18.8830 52.5609 -Georgia_Bold.ttf 22 3 32.5259 42.2500 86 - 13.1794 17.3319 6.3078 -Georgia_Bold.ttf 22 3 32.5259 42.2500 87 Y -8.9455 46.5865 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 88 Q -10.0147 43.5511 53.5241 -Georgia_Bold.ttf 22 3 32.5259 42.2500 89 " -11.3965 23.0291 20.0578 -Georgia_Bold.ttf 22 3 32.5259 42.2500 90 ! -9.7152 10.9408 42.8561 -Georgia_Bold.ttf 22 3 32.5259 42.2500 91 x 3.4250 34.3078 28.0000 -Georgia_Bold.ttf 22 3 32.5259 42.2500 92 ) -11.4428 20.7483 52.5609 -Georgia_Bold.ttf 22 3 32.5259 42.2500 93 = 7.1991 30.3879 16.2451 -Georgia_Bold.ttf 22 3 32.5259 42.2500 94 + -0.5797 31.9572 31.9572 -Georgia_Bold.ttf 22 3 32.5259 42.2500 95 X -8.9127 47.1138 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 96 » 3.2674 28.0000 25.5049 -Georgia_Bold.ttf 22 3 32.5259 42.2500 97 ' -11.4979 9.3670 20.0578 -Georgia_Bold.ttf 22 3 32.5259 42.2500 98 ¢ -4.7220 29.6975 45.0592 -Georgia_Bold.ttf 22 3 32.5259 42.2500 99 Z -8.7401 40.1348 40.4681 -Georgia_Bold.ttf 22 3 32.5259 42.2500 100 > -0.9123 28.2500 32.5259 -Georgia_Bold.ttf 22 3 32.5259 42.2500 101 ® -10.4040 50.4457 50.4457 -Georgia_Bold.ttf 22 3 32.5259 42.2500 102 © -10.2574 50.4457 50.4457 -Georgia_Bold.ttf 22 3 32.5259 42.2500 103 ] -11.6222 18.8830 52.5609 -Georgia_Bold.ttf 22 3 32.5259 42.2500 104 é -12.5752 30.1152 45.5819 -Georgia_Bold.ttf 22 3 32.5259 42.2500 105 z 3.7426 28.0000 28.0000 -Georgia_Bold.ttf 22 3 32.5259 42.2500 106 _ 36.8779 41.0560 2.7259 -Georgia_Bold.ttf 22 3 32.5259 42.2500 107 ¥ -8.4247 44.1379 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 1 t -14.0929 22.8029 37.7468 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 2 h -22.0852 38.3109 44.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 3 a -6.8641 31.8795 30.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 4 n -6.7036 38.5434 29.1940 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 5 P -18.1232 37.4968 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 6 o -6.6467 32.6103 30.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 7 e -6.5461 30.1152 30.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 8 : -5.8627 11.2741 29.1940 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 9 r -6.5026 29.1940 29.1940 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 10 l -22.0336 18.7339 44.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 11 i -22.1903 18.7339 44.8687 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 12 1 -9.1887 23.6397 31.6891 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 13 | -21.7992 4.6330 56.5227 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 14 N -17.8867 47.1785 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 15 f -21.9196 28.2500 44.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 16 g -6.5415 32.5497 42.0000 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 17 d -21.7666 36.4457 45.5819 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 18 W -18.2464 68.0276 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 19 s -6.5079 25.8621 30.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 20 c -6.7665 28.9212 30.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 21 u -6.6219 38.2100 30.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 22 3 -9.2049 32.5259 42.2500 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 23 ~ -0.0059 32.5497 12.2181 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 24 # -14.0696 32.2532 36.4457 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 25 O -19.2234 43.5511 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 26 ` -22.0146 15.1940 12.8060 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 27 @ -16.8343 47.4709 48.6411 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 28 F -17.9143 35.9650 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 29 S -19.2636 33.7437 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 30 p -6.7685 35.8397 42.0000 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 31 “ -20.6233 25.5049 20.0578 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 32 % -19.3777 46.1460 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 33 £ -19.2835 33.4471 41.6621 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 34 . 12.6503 11.2741 11.2741 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 35 2 -8.6846 30.6653 31.6891 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 36 5 -9.4007 31.3319 42.2500 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 37 m -6.5832 57.1474 29.1940 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 38 V -17.9461 47.4471 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 39 6 -19.2109 32.2997 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 40 w -5.5842 50.4457 28.0000 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 41 T -17.7589 38.0802 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 42 M -17.9993 56.5455 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 43 G -19.0876 45.5865 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 44 b -21.9839 35.7325 45.9198 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 45 9 -9.2095 32.6330 42.3571 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 46 ; -5.6248 11.5049 39.3813 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 47 D -18.1775 44.3879 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 48 L -18.3186 38.0196 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 49 y -5.9021 35.2710 40.8060 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 50 ‘ -21.1308 11.5049 20.0578 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 51 \ -20.7280 24.9408 55.3288 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 52 R -17.7410 46.2759 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 53 < -9.9930 28.2500 32.5259 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 54 4 -9.0904 34.6684 42.2500 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 55 8 -19.1505 33.3865 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 56 0 -9.0640 34.6876 32.8830 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 57 A -18.3125 46.9902 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 58 E -17.9915 38.6908 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 59 B -17.7310 40.1348 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 60 v -5.7072 35.5017 28.0000 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 61 k -21.9089 37.9968 44.3879 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 62 J -18.1714 33.3235 41.6621 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 63 U -18.1388 46.9856 41.6621 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 64 j -22.5881 22.1730 57.6747 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 65 ( -20.5848 20.7483 52.5609 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 66 7 -7.7829 30.0308 41.0560 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 67 § -19.2094 26.2192 48.4103 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 68 $ -21.4418 31.2486 51.7468 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 69 € -18.9242 41.2868 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 70 / -20.7538 24.9408 55.3288 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 71 C -19.3854 39.1489 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 72 * -19.1269 23.6397 21.2290 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 73 ” -20.7030 25.5049 20.0578 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 74 ? -19.5169 26.4727 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 75 { -20.8726 25.1716 52.5609 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 76 } -20.9157 25.1716 52.5609 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 77 , 12.8314 11.5049 20.7483 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 78 I -18.2114 21.7342 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 79 ° -19.1807 19.4471 18.8830 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 80 K -18.0283 47.4699 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 81 H -18.2786 49.0437 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 82 q -7.6721 36.1968 43.1940 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 83 & -19.5473 44.6379 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 84 ’ -21.0080 11.5049 20.0578 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 85 [ -20.7931 18.8830 52.5609 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 86 - 3.7113 17.3319 6.3078 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 87 Y -18.2632 46.5865 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 88 Q -19.5390 43.5511 53.5241 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 89 " -20.6974 23.0291 20.0578 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 90 ! -19.0478 10.9408 42.8561 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 91 x -5.5372 34.3078 28.0000 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 92 ) -20.5727 20.7483 52.5609 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 93 = -1.9026 30.3879 16.2451 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 94 + -10.0134 31.9572 31.9572 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 95 X -18.0473 47.1138 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 96 » -5.9501 28.0000 25.5049 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 97 ' -20.8959 9.3670 20.0578 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 98 ¢ -14.1788 29.6975 45.0592 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 99 Z -18.2043 40.1348 40.4681 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 100 > -9.9996 28.2500 32.5259 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 101 ® -19.4682 50.4457 50.4457 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 102 © -19.4699 50.4457 50.4457 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 103 ] -20.8154 18.8830 52.5609 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 104 é -21.7441 30.1152 45.5819 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 105 z -5.6519 28.0000 28.0000 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 106 _ 27.6889 41.0560 2.7259 -Georgia_Bold.ttf 23 ~ 32.5497 12.2181 107 ¥ -17.7514 44.1379 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 1 t -0.2411 22.8029 37.7468 -Georgia_Bold.ttf 24 # 32.2532 36.4457 2 h -8.0058 38.3109 44.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 3 a 6.9509 31.8795 30.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 4 n 7.6547 38.5434 29.1940 -Georgia_Bold.ttf 24 # 32.2532 36.4457 5 P -4.0482 37.4968 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 6 o 7.3813 32.6103 30.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 7 e 7.1424 30.1152 30.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 8 : 8.2390 11.2741 29.1940 -Georgia_Bold.ttf 24 # 32.2532 36.4457 9 r 7.4310 29.1940 29.1940 -Georgia_Bold.ttf 24 # 32.2532 36.4457 10 l -8.0656 18.7339 44.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 11 i -8.0256 18.7339 44.8687 -Georgia_Bold.ttf 24 # 32.2532 36.4457 12 1 4.6563 23.6397 31.6891 -Georgia_Bold.ttf 24 # 32.2532 36.4457 13 | -7.8978 4.6330 56.5227 -Georgia_Bold.ttf 24 # 32.2532 36.4457 14 N -4.1270 47.1785 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 15 f -7.9811 28.2500 44.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 16 g 7.0767 32.5497 42.0000 -Georgia_Bold.ttf 24 # 32.2532 36.4457 17 d -7.7285 36.4457 45.5819 -Georgia_Bold.ttf 24 # 32.2532 36.4457 18 W -4.3485 68.0276 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 19 s 6.9649 25.8621 30.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 20 c 7.4298 28.9212 30.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 21 u 7.2948 38.2100 30.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 22 3 4.5184 32.5259 42.2500 -Georgia_Bold.ttf 24 # 32.2532 36.4457 23 ~ 13.9334 32.5497 12.2181 -Georgia_Bold.ttf 24 # 32.2532 36.4457 24 # 0.2224 32.2532 36.4457 -Georgia_Bold.ttf 24 # 32.2532 36.4457 25 O -5.2748 43.5511 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 26 ` -7.8898 15.1940 12.8060 -Georgia_Bold.ttf 24 # 32.2532 36.4457 27 @ -3.0792 47.4709 48.6411 -Georgia_Bold.ttf 24 # 32.2532 36.4457 28 F -3.9839 35.9650 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 29 S -5.4902 33.7437 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 30 p 7.5607 35.8397 42.0000 -Georgia_Bold.ttf 24 # 32.2532 36.4457 31 “ -6.4823 25.5049 20.0578 -Georgia_Bold.ttf 24 # 32.2532 36.4457 32 % -4.9397 46.1460 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 33 £ -5.3027 33.4471 41.6621 -Georgia_Bold.ttf 24 # 32.2532 36.4457 34 . 26.2674 11.2741 11.2741 -Georgia_Bold.ttf 24 # 32.2532 36.4457 35 2 4.7507 30.6653 31.6891 -Georgia_Bold.ttf 24 # 32.2532 36.4457 36 5 4.5620 31.3319 42.2500 -Georgia_Bold.ttf 24 # 32.2532 36.4457 37 m 7.0664 57.1474 29.1940 -Georgia_Bold.ttf 24 # 32.2532 36.4457 38 V -4.0237 47.4471 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 39 6 -5.2502 32.2997 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 40 w 8.4901 50.4457 28.0000 -Georgia_Bold.ttf 24 # 32.2532 36.4457 41 T -4.2305 38.0802 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 42 M -3.9716 56.5455 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 43 G -5.5084 45.5865 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 44 b -8.5568 35.7325 45.9198 -Georgia_Bold.ttf 24 # 32.2532 36.4457 45 9 4.7068 32.6330 42.3571 -Georgia_Bold.ttf 24 # 32.2532 36.4457 46 ; 8.5852 11.5049 39.3813 -Georgia_Bold.ttf 24 # 32.2532 36.4457 47 D -3.9845 44.3879 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 48 L -4.0020 38.0196 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 49 y 8.4199 35.2710 40.8060 -Georgia_Bold.ttf 24 # 32.2532 36.4457 50 ‘ -6.5611 11.5049 20.0578 -Georgia_Bold.ttf 24 # 32.2532 36.4457 51 \ -6.5657 24.9408 55.3288 -Georgia_Bold.ttf 24 # 32.2532 36.4457 52 R -4.0770 46.2759 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 53 < 3.8363 28.2500 32.5259 -Georgia_Bold.ttf 24 # 32.2532 36.4457 54 4 4.7451 34.6684 42.2500 -Georgia_Bold.ttf 24 # 32.2532 36.4457 55 8 -5.2335 33.3865 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 56 0 4.9378 34.6876 32.8830 -Georgia_Bold.ttf 24 # 32.2532 36.4457 57 A -3.5882 46.9902 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 58 E -4.3676 38.6908 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 59 B -4.0519 40.1348 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 60 v 8.2454 35.5017 28.0000 -Georgia_Bold.ttf 24 # 32.2532 36.4457 61 k -7.8360 37.9968 44.3879 -Georgia_Bold.ttf 24 # 32.2532 36.4457 62 J -4.1272 33.3235 41.6621 -Georgia_Bold.ttf 24 # 32.2532 36.4457 63 U -4.2319 46.9856 41.6621 -Georgia_Bold.ttf 24 # 32.2532 36.4457 64 j -8.3474 22.1730 57.6747 -Georgia_Bold.ttf 24 # 32.2532 36.4457 65 ( -6.9942 20.7483 52.5609 -Georgia_Bold.ttf 24 # 32.2532 36.4457 66 7 5.8522 30.0308 41.0560 -Georgia_Bold.ttf 24 # 32.2532 36.4457 67 § -5.5277 26.2192 48.4103 -Georgia_Bold.ttf 24 # 32.2532 36.4457 68 $ -7.2580 31.2486 51.7468 -Georgia_Bold.ttf 24 # 32.2532 36.4457 69 € -5.2696 41.2868 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 70 / -7.0050 24.9408 55.3288 -Georgia_Bold.ttf 24 # 32.2532 36.4457 71 C -4.9828 39.1489 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 72 * -5.4245 23.6397 21.2290 -Georgia_Bold.ttf 24 # 32.2532 36.4457 73 ” -7.0115 25.5049 20.0578 -Georgia_Bold.ttf 24 # 32.2532 36.4457 74 ? -5.1873 26.4727 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 75 { -6.8769 25.1716 52.5609 -Georgia_Bold.ttf 24 # 32.2532 36.4457 76 } -6.4433 25.1716 52.5609 -Georgia_Bold.ttf 24 # 32.2532 36.4457 77 , 27.1166 11.5049 20.7483 -Georgia_Bold.ttf 24 # 32.2532 36.4457 78 I -3.7888 21.7342 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 79 ° -4.7680 19.4471 18.8830 -Georgia_Bold.ttf 24 # 32.2532 36.4457 80 K -3.8307 47.4699 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 81 H -4.0747 49.0437 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 82 q 5.9258 36.1968 43.1940 -Georgia_Bold.ttf 24 # 32.2532 36.4457 83 & -4.9704 44.6379 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 84 ’ -6.9831 11.5049 20.0578 -Georgia_Bold.ttf 24 # 32.2532 36.4457 85 [ -6.6965 18.8830 52.5609 -Georgia_Bold.ttf 24 # 32.2532 36.4457 86 - 17.7353 17.3319 6.3078 -Georgia_Bold.ttf 24 # 32.2532 36.4457 87 Y -4.1171 46.5865 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 88 Q -5.1626 43.5511 53.5241 -Georgia_Bold.ttf 24 # 32.2532 36.4457 89 " -6.7566 23.0291 20.0578 -Georgia_Bold.ttf 24 # 32.2532 36.4457 90 ! -5.1594 10.9408 42.8561 -Georgia_Bold.ttf 24 # 32.2532 36.4457 91 x 8.3723 34.3078 28.0000 -Georgia_Bold.ttf 24 # 32.2532 36.4457 92 ) -6.6009 20.7483 52.5609 -Georgia_Bold.ttf 24 # 32.2532 36.4457 93 = 11.7286 30.3879 16.2451 -Georgia_Bold.ttf 24 # 32.2532 36.4457 94 + 4.0872 31.9572 31.9572 -Georgia_Bold.ttf 24 # 32.2532 36.4457 95 X -3.9103 47.1138 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 96 » 8.2534 28.0000 25.5049 -Georgia_Bold.ttf 24 # 32.2532 36.4457 97 ' -6.5826 9.3670 20.0578 -Georgia_Bold.ttf 24 # 32.2532 36.4457 98 ¢ -0.0024 29.6975 45.0592 -Georgia_Bold.ttf 24 # 32.2532 36.4457 99 Z -3.7436 40.1348 40.4681 -Georgia_Bold.ttf 24 # 32.2532 36.4457 100 > 3.8786 28.2500 32.5259 -Georgia_Bold.ttf 24 # 32.2532 36.4457 101 ® -5.7075 50.4457 50.4457 -Georgia_Bold.ttf 24 # 32.2532 36.4457 102 © -5.5949 50.4457 50.4457 -Georgia_Bold.ttf 24 # 32.2532 36.4457 103 ] -7.1429 18.8830 52.5609 -Georgia_Bold.ttf 24 # 32.2532 36.4457 104 é -7.8422 30.1152 45.5819 -Georgia_Bold.ttf 24 # 32.2532 36.4457 105 z 8.2726 28.0000 28.0000 -Georgia_Bold.ttf 24 # 32.2532 36.4457 106 _ 41.5691 41.0560 2.7259 -Georgia_Bold.ttf 24 # 32.2532 36.4457 107 ¥ -4.1423 44.1379 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 1 t 4.7936 22.8029 37.7468 -Georgia_Bold.ttf 25 O 43.5511 42.8561 2 h -2.8041 38.3109 44.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 3 a 12.5718 31.8795 30.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 4 n 12.7717 38.5434 29.1940 -Georgia_Bold.ttf 25 O 43.5511 42.8561 5 P 0.8904 37.4968 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 6 o 12.3421 32.6103 30.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 7 e 12.4558 30.1152 30.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 8 : 13.5327 11.2741 29.1940 -Georgia_Bold.ttf 25 O 43.5511 42.8561 9 r 12.3806 29.1940 29.1940 -Georgia_Bold.ttf 25 O 43.5511 42.8561 10 l -2.6355 18.7339 44.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 11 i -3.0335 18.7339 44.8687 -Georgia_Bold.ttf 25 O 43.5511 42.8561 12 1 10.0387 23.6397 31.6891 -Georgia_Bold.ttf 25 O 43.5511 42.8561 13 | -2.5725 4.6330 56.5227 -Georgia_Bold.ttf 25 O 43.5511 42.8561 14 N 1.1219 47.1785 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 15 f -2.9463 28.2500 44.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 16 g 12.7760 32.5497 42.0000 -Georgia_Bold.ttf 25 O 43.5511 42.8561 17 d -2.3739 36.4457 45.5819 -Georgia_Bold.ttf 25 O 43.5511 42.8561 18 W 1.1069 68.0276 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 19 s 12.6125 25.8621 30.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 20 c 12.4157 28.9212 30.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 21 u 12.2509 38.2100 30.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 22 3 9.8214 32.5259 42.2500 -Georgia_Bold.ttf 25 O 43.5511 42.8561 23 ~ 19.5829 32.5497 12.2181 -Georgia_Bold.ttf 25 O 43.5511 42.8561 24 # 5.3864 32.2532 36.4457 -Georgia_Bold.ttf 25 O 43.5511 42.8561 25 O 0.0699 43.5511 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 26 ` -2.6680 15.1940 12.8060 -Georgia_Bold.ttf 25 O 43.5511 42.8561 27 @ 1.9081 47.4709 48.6411 -Georgia_Bold.ttf 25 O 43.5511 42.8561 28 F 1.3169 35.9650 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 29 S -0.1634 33.7437 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 30 p 12.4880 35.8397 42.0000 -Georgia_Bold.ttf 25 O 43.5511 42.8561 31 “ -1.3332 25.5049 20.0578 -Georgia_Bold.ttf 25 O 43.5511 42.8561 32 % -0.2148 46.1460 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 33 £ -0.1849 33.4471 41.6621 -Georgia_Bold.ttf 25 O 43.5511 42.8561 34 . 31.7478 11.2741 11.2741 -Georgia_Bold.ttf 25 O 43.5511 42.8561 35 2 10.4120 30.6653 31.6891 -Georgia_Bold.ttf 25 O 43.5511 42.8561 36 5 9.9369 31.3319 42.2500 -Georgia_Bold.ttf 25 O 43.5511 42.8561 37 m 12.4881 57.1474 29.1940 -Georgia_Bold.ttf 25 O 43.5511 42.8561 38 V 1.0254 47.4471 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 39 6 -0.2140 32.2997 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 40 w 13.4643 50.4457 28.0000 -Georgia_Bold.ttf 25 O 43.5511 42.8561 41 T 1.1867 38.0802 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 42 M 1.1804 56.5455 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 43 G -0.2873 45.5865 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 44 b -2.3890 35.7325 45.9198 -Georgia_Bold.ttf 25 O 43.5511 42.8561 45 9 9.8840 32.6330 42.3571 -Georgia_Bold.ttf 25 O 43.5511 42.8561 46 ; 13.2440 11.5049 39.3813 -Georgia_Bold.ttf 25 O 43.5511 42.8561 47 D 0.7835 44.3879 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 48 L 1.1142 38.0196 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 49 y 13.7038 35.2710 40.8060 -Georgia_Bold.ttf 25 O 43.5511 42.8561 50 ‘ -1.2757 11.5049 20.0578 -Georgia_Bold.ttf 25 O 43.5511 42.8561 51 \ -1.3563 24.9408 55.3288 -Georgia_Bold.ttf 25 O 43.5511 42.8561 52 R 1.2238 46.2759 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 53 < 9.0691 28.2500 32.5259 -Georgia_Bold.ttf 25 O 43.5511 42.8561 54 4 9.9698 34.6684 42.2500 -Georgia_Bold.ttf 25 O 43.5511 42.8561 55 8 -0.0274 33.3865 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 56 0 9.9192 34.6876 32.8830 -Georgia_Bold.ttf 25 O 43.5511 42.8561 57 A 1.2784 46.9902 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 58 E 1.0092 38.6908 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 59 B 1.4400 40.1348 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 60 v 13.8091 35.5017 28.0000 -Georgia_Bold.ttf 25 O 43.5511 42.8561 61 k -2.3669 37.9968 44.3879 -Georgia_Bold.ttf 25 O 43.5511 42.8561 62 J 1.0343 33.3235 41.6621 -Georgia_Bold.ttf 25 O 43.5511 42.8561 63 U 1.0684 46.9856 41.6621 -Georgia_Bold.ttf 25 O 43.5511 42.8561 64 j -3.5887 22.1730 57.6747 -Georgia_Bold.ttf 25 O 43.5511 42.8561 65 ( -1.8763 20.7483 52.5609 -Georgia_Bold.ttf 25 O 43.5511 42.8561 66 7 11.3245 30.0308 41.0560 -Georgia_Bold.ttf 25 O 43.5511 42.8561 67 § 0.2737 26.2192 48.4103 -Georgia_Bold.ttf 25 O 43.5511 42.8561 68 $ -2.3322 31.2486 51.7468 -Georgia_Bold.ttf 25 O 43.5511 42.8561 69 € -0.3393 41.2868 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 70 / -1.6077 24.9408 55.3288 -Georgia_Bold.ttf 25 O 43.5511 42.8561 71 C 0.0560 39.1489 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 72 * -0.1817 23.6397 21.2290 -Georgia_Bold.ttf 25 O 43.5511 42.8561 73 ” -1.5208 25.5049 20.0578 -Georgia_Bold.ttf 25 O 43.5511 42.8561 74 ? -0.0045 26.4727 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 75 { -1.2482 25.1716 52.5609 -Georgia_Bold.ttf 25 O 43.5511 42.8561 76 } -1.5592 25.1716 52.5609 -Georgia_Bold.ttf 25 O 43.5511 42.8561 77 , 32.5718 11.5049 20.7483 -Georgia_Bold.ttf 25 O 43.5511 42.8561 78 I 1.2055 21.7342 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 79 ° 0.1071 19.4471 18.8830 -Georgia_Bold.ttf 25 O 43.5511 42.8561 80 K 1.2418 47.4699 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 81 H 1.1969 49.0437 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 82 q 11.1064 36.1968 43.1940 -Georgia_Bold.ttf 25 O 43.5511 42.8561 83 & -0.0476 44.6379 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 84 ’ -1.3971 11.5049 20.0578 -Georgia_Bold.ttf 25 O 43.5511 42.8561 85 [ -1.4689 18.8830 52.5609 -Georgia_Bold.ttf 25 O 43.5511 42.8561 86 - 22.6384 17.3319 6.3078 -Georgia_Bold.ttf 25 O 43.5511 42.8561 87 Y 1.0190 46.5865 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 88 Q -0.0157 43.5511 53.5241 -Georgia_Bold.ttf 25 O 43.5511 42.8561 89 " -1.8432 23.0291 20.0578 -Georgia_Bold.ttf 25 O 43.5511 42.8561 90 ! -0.0325 10.9408 42.8561 -Georgia_Bold.ttf 25 O 43.5511 42.8561 91 x 13.4974 34.3078 28.0000 -Georgia_Bold.ttf 25 O 43.5511 42.8561 92 ) -1.3835 20.7483 52.5609 -Georgia_Bold.ttf 25 O 43.5511 42.8561 93 = 16.8686 30.3879 16.2451 -Georgia_Bold.ttf 25 O 43.5511 42.8561 94 + 9.2689 31.9572 31.9572 -Georgia_Bold.ttf 25 O 43.5511 42.8561 95 X 1.0359 47.1138 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 96 » 13.5265 28.0000 25.5049 -Georgia_Bold.ttf 25 O 43.5511 42.8561 97 ' -1.7715 9.3670 20.0578 -Georgia_Bold.ttf 25 O 43.5511 42.8561 98 ¢ 5.2437 29.6975 45.0592 -Georgia_Bold.ttf 25 O 43.5511 42.8561 99 Z 1.2409 40.1348 40.4681 -Georgia_Bold.ttf 25 O 43.5511 42.8561 100 > 9.4485 28.2500 32.5259 -Georgia_Bold.ttf 25 O 43.5511 42.8561 101 ® -0.4310 50.4457 50.4457 -Georgia_Bold.ttf 25 O 43.5511 42.8561 102 © -0.2235 50.4457 50.4457 -Georgia_Bold.ttf 25 O 43.5511 42.8561 103 ] -1.5436 18.8830 52.5609 -Georgia_Bold.ttf 25 O 43.5511 42.8561 104 é -2.6731 30.1152 45.5819 -Georgia_Bold.ttf 25 O 43.5511 42.8561 105 z 13.4718 28.0000 28.0000 -Georgia_Bold.ttf 25 O 43.5511 42.8561 106 _ 46.8820 41.0560 2.7259 -Georgia_Bold.ttf 25 O 43.5511 42.8561 107 ¥ 1.6680 44.1379 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 1 t 7.8300 22.8029 37.7468 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 2 h -0.1801 38.3109 44.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 3 a 15.3878 31.8795 30.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 4 n 15.1166 38.5434 29.1940 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 5 P 3.6865 37.4968 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 6 o 14.8144 32.6103 30.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 7 e 15.0440 30.1152 30.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 8 : 16.1175 11.2741 29.1940 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 9 r 15.0152 29.1940 29.1940 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 10 l -0.0038 18.7339 44.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 11 i -0.3983 18.7339 44.8687 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 12 1 12.7822 23.6397 31.6891 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 13 | 0.0086 4.6330 56.5227 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 14 N 4.0532 47.1785 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 15 f 0.0027 28.2500 44.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 16 g 15.0652 32.5497 42.0000 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 17 d -0.3331 36.4457 45.5819 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 18 W 4.1153 68.0276 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 19 s 15.1856 25.8621 30.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 20 c 15.2612 28.9212 30.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 21 u 15.3585 38.2100 30.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 22 3 12.8815 32.5259 42.2500 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 23 ~ 21.8384 32.5497 12.2181 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 24 # 7.9530 32.2532 36.4457 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 25 O 2.4197 43.5511 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 26 ` -0.1062 15.1940 12.8060 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 27 @ 5.0614 47.4709 48.6411 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 28 F 4.2312 35.9650 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 29 S 3.0391 33.7437 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 30 p 15.2454 35.8397 42.0000 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 31 “ 0.8148 25.5049 20.0578 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 32 % 2.4957 46.1460 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 33 £ 2.9127 33.4471 41.6621 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 34 . 34.5197 11.2741 11.2741 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 35 2 12.7083 30.6653 31.6891 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 36 5 12.6110 31.3319 42.2500 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 37 m 15.0704 57.1474 29.1940 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 38 V 3.7980 47.4471 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 39 6 2.7181 32.2997 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 40 w 16.3879 50.4457 28.0000 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 41 T 3.9274 38.0802 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 42 M 3.7169 56.5455 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 43 G 2.7713 45.5865 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 44 b -0.0126 35.7325 45.9198 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 45 9 12.5747 32.6330 42.3571 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 46 ; 16.6265 11.5049 39.3813 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 47 D 3.9220 44.3879 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 48 L 3.7335 38.0196 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 49 y 16.1952 35.2710 40.8060 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 50 ‘ 1.3001 11.5049 20.0578 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 51 \ 1.4037 24.9408 55.3288 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 52 R 3.8212 46.2759 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 53 < 12.0513 28.2500 32.5259 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 54 4 12.5386 34.6684 42.2500 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 55 8 2.6447 33.3865 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 56 0 12.7080 34.6876 32.8830 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 57 A 3.5802 46.9902 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 58 E 4.0584 38.6908 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 59 B 3.9691 40.1348 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 60 v 16.3852 35.5017 28.0000 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 61 k -0.0801 37.9968 44.3879 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 62 J 4.0631 33.3235 41.6621 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 63 U 4.1024 46.9856 41.6621 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 64 j -0.4391 22.1730 57.6747 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 65 ( 1.0576 20.7483 52.5609 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 66 7 13.9050 30.0308 41.0560 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 67 § 2.7017 26.2192 48.4103 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 68 $ 0.8897 31.2486 51.7468 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 69 € 2.6489 41.2868 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 70 / 1.0991 24.9408 55.3288 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 71 C 2.7025 39.1489 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 72 * 2.9471 23.6397 21.2290 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 73 ” 1.3171 25.5049 20.0578 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 74 ? 2.6842 26.4727 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 75 { 1.0292 25.1716 52.5609 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 76 } 1.5211 25.1716 52.5609 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 77 , 34.9500 11.5049 20.7483 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 78 I 3.9502 21.7342 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 79 ° 2.4882 19.4471 18.8830 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 80 K 3.9691 47.4699 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 81 H 3.6676 49.0437 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 82 q 14.0613 36.1968 43.1940 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 83 & 2.6447 44.6379 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 84 ’ 1.0092 11.5049 20.0578 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 85 [ 0.8176 18.8830 52.5609 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 86 - 25.7054 17.3319 6.3078 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 87 Y 3.7655 46.5865 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 88 Q 2.6296 43.5511 53.5241 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 89 " 1.2819 23.0291 20.0578 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 90 ! 3.0952 10.9408 42.8561 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 91 x 16.3726 34.3078 28.0000 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 92 ) 1.3566 20.7483 52.5609 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 93 = 19.6469 30.3879 16.2451 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 94 + 12.1004 31.9572 31.9572 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 95 X 4.1677 47.1138 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 96 » 16.0477 28.0000 25.5049 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 97 ' 1.5967 9.3670 20.0578 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 98 ¢ 8.2035 29.6975 45.0592 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 99 Z 3.9115 40.1348 40.4681 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 100 > 11.7491 28.2500 32.5259 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 101 ® 2.2075 50.4457 50.4457 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 102 © 2.3737 50.4457 50.4457 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 103 ] 1.4472 18.8830 52.5609 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 104 é -0.0417 30.1152 45.5819 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 105 z 16.5482 28.0000 28.0000 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 106 _ 49.4563 41.0560 2.7259 -Georgia_Bold.ttf 26 ` 15.1940 12.8060 107 ¥ 3.7515 44.1379 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 1 t 2.4396 22.8029 37.7468 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 2 h -5.2059 38.3109 44.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 3 a 10.1395 31.8795 30.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 4 n 10.1103 38.5434 29.1940 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 5 P -1.4296 37.4968 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 6 o 10.3391 32.6103 30.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 7 e 10.0630 30.1152 30.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 8 : 11.1342 11.2741 29.1940 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 9 r 10.1711 29.1940 29.1940 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 10 l -4.9655 18.7339 44.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 11 i -5.2787 18.7339 44.8687 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 12 1 8.0149 23.6397 31.6891 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 13 | -5.3522 4.6330 56.5227 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 14 N -1.2824 47.1785 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 15 f -5.2795 28.2500 44.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 16 g 10.2011 32.5497 42.0000 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 17 d -5.1444 36.4457 45.5819 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 18 W -1.3536 68.0276 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 19 s 10.4052 25.8621 30.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 20 c 9.9468 28.9212 30.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 21 u 9.8804 38.2100 30.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 22 3 7.1899 32.5259 42.2500 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 23 ~ 16.5986 32.5497 12.2181 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 24 # 3.0058 32.2532 36.4457 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 25 O -2.5699 43.5511 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 26 ` -4.7315 15.1940 12.8060 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 27 @ 0.0720 47.4709 48.6411 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 28 F -1.3309 35.9650 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 29 S -2.6979 33.7437 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 30 p 9.8019 35.8397 42.0000 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 31 “ -3.9826 25.5049 20.0578 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 32 % -2.5727 46.1460 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 33 £ -2.2409 33.4471 41.6621 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 34 . 29.4521 11.2741 11.2741 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 35 2 7.9996 30.6653 31.6891 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 36 5 7.3821 31.3319 42.2500 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 37 m 10.0987 57.1474 29.1940 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 38 V -1.1779 47.4471 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 39 6 -2.4167 32.2997 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 40 w 11.1620 50.4457 28.0000 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 41 T -1.2630 38.0802 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 42 M -1.4114 56.5455 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 43 G -2.5826 45.5865 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 44 b -4.9217 35.7325 45.9198 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 45 9 7.5276 32.6330 42.3571 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 46 ; 11.1419 11.5049 39.3813 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 47 D -1.2478 44.3879 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 48 L -1.3219 38.0196 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 49 y 11.5354 35.2710 40.8060 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 50 ‘ -3.7443 11.5049 20.0578 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 51 \ -3.6015 24.9408 55.3288 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 52 R -1.0160 46.2759 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 53 < 6.7515 28.2500 32.5259 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 54 4 7.3709 34.6684 42.2500 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 55 8 -2.2522 33.3865 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 56 0 7.5059 34.6876 32.8830 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 57 A -1.0670 46.9902 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 58 E -1.3426 38.6908 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 59 B -1.1880 40.1348 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 60 v 11.5999 35.5017 28.0000 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 61 k -5.2929 37.9968 44.3879 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 62 J -1.0715 33.3235 41.6621 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 63 U -1.3236 46.9856 41.6621 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 64 j -5.4069 22.1730 57.6747 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 65 ( -3.8857 20.7483 52.5609 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 66 7 8.8542 30.0308 41.0560 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 67 § -2.5078 26.2192 48.4103 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 68 $ -4.1246 31.2486 51.7468 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 69 € -2.4008 41.2868 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 70 / -3.7822 24.9408 55.3288 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 71 C -2.6169 39.1489 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 72 * -2.2784 23.6397 21.2290 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 73 ” -4.0434 25.5049 20.0578 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 74 ? -2.2441 26.4727 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 75 { -4.3959 25.1716 52.5609 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 76 } -4.1364 25.1716 52.5609 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 77 , 29.8892 11.5049 20.7483 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 78 I -1.3458 21.7342 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 79 ° -2.5926 19.4471 18.8830 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 80 K -1.1428 47.4699 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 81 H -1.0912 49.0437 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 82 q 9.0602 36.1968 43.1940 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 83 & -2.1508 44.6379 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 84 ’ -3.7268 11.5049 20.0578 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 85 [ -4.0220 18.8830 52.5609 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 86 - 20.4731 17.3319 6.3078 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 87 Y -1.1601 46.5865 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 88 Q -1.9842 43.5511 53.5241 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 89 " -3.4788 23.0291 20.0578 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 90 ! -2.4695 10.9408 42.8561 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 91 x 11.2506 34.3078 28.0000 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 92 ) -3.9134 20.7483 52.5609 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 93 = 14.8246 30.3879 16.2451 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 94 + 6.7733 31.9572 31.9572 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 95 X -1.1106 47.1138 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 96 » 10.5053 28.0000 25.5049 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 97 ' -4.0934 9.3670 20.0578 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 98 ¢ 2.6461 29.6975 45.0592 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 99 Z -1.4431 40.1348 40.4681 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 100 > 6.8311 28.2500 32.5259 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 101 ® -2.7245 50.4457 50.4457 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 102 © -2.7307 50.4457 50.4457 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 103 ] -3.8593 18.8830 52.5609 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 104 é -5.1001 30.1152 45.5819 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 105 z 11.3648 28.0000 28.0000 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 106 _ 44.4567 41.0560 2.7259 -Georgia_Bold.ttf 27 @ 47.4709 48.6411 107 ¥ -1.1037 44.1379 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 1 t 3.9291 22.8029 37.7468 -Georgia_Bold.ttf 28 F 35.9650 40.4681 2 h -3.6402 38.3109 44.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 3 a 11.1903 31.8795 30.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 4 n 11.2585 38.5434 29.1940 -Georgia_Bold.ttf 28 F 35.9650 40.4681 5 P 0.1613 37.4968 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 6 o 11.1796 32.6103 30.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 7 e 11.3043 30.1152 30.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 8 : 12.0939 11.2741 29.1940 -Georgia_Bold.ttf 28 F 35.9650 40.4681 9 r 11.5207 29.1940 29.1940 -Georgia_Bold.ttf 28 F 35.9650 40.4681 10 l -4.0476 18.7339 44.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 11 i -4.4234 18.7339 44.8687 -Georgia_Bold.ttf 28 F 35.9650 40.4681 12 1 9.0910 23.6397 31.6891 -Georgia_Bold.ttf 28 F 35.9650 40.4681 13 | -4.0941 4.6330 56.5227 -Georgia_Bold.ttf 28 F 35.9650 40.4681 14 N -0.0371 47.1785 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 15 f -3.9583 28.2500 44.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 16 g 11.2424 32.5497 42.0000 -Georgia_Bold.ttf 28 F 35.9650 40.4681 17 d -3.7849 36.4457 45.5819 -Georgia_Bold.ttf 28 F 35.9650 40.4681 18 W 0.1288 68.0276 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 19 s 11.2373 25.8621 30.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 20 c 11.1444 28.9212 30.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 21 u 11.2968 38.2100 30.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 22 3 8.7791 32.5259 42.2500 -Georgia_Bold.ttf 28 F 35.9650 40.4681 23 ~ 18.3877 32.5497 12.2181 -Georgia_Bold.ttf 28 F 35.9650 40.4681 24 # 3.8135 32.2532 36.4457 -Georgia_Bold.ttf 28 F 35.9650 40.4681 25 O -1.2335 43.5511 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 26 ` -3.8244 15.1940 12.8060 -Georgia_Bold.ttf 28 F 35.9650 40.4681 27 @ 1.4860 47.4709 48.6411 -Georgia_Bold.ttf 28 F 35.9650 40.4681 28 F 0.0669 35.9650 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 29 S -1.2510 33.7437 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 30 p 11.7557 35.8397 42.0000 -Georgia_Bold.ttf 28 F 35.9650 40.4681 31 “ -2.7314 25.5049 20.0578 -Georgia_Bold.ttf 28 F 35.9650 40.4681 32 % -1.0551 46.1460 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 33 £ -0.9878 33.4471 41.6621 -Georgia_Bold.ttf 28 F 35.9650 40.4681 34 . 30.3138 11.2741 11.2741 -Georgia_Bold.ttf 28 F 35.9650 40.4681 35 2 8.8602 30.6653 31.6891 -Georgia_Bold.ttf 28 F 35.9650 40.4681 36 5 8.9654 31.3319 42.2500 -Georgia_Bold.ttf 28 F 35.9650 40.4681 37 m 11.4317 57.1474 29.1940 -Georgia_Bold.ttf 28 F 35.9650 40.4681 38 V 0.0508 47.4471 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 39 6 -1.3352 32.2997 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 40 w 12.5630 50.4457 28.0000 -Georgia_Bold.ttf 28 F 35.9650 40.4681 41 T -0.1565 38.0802 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 42 M 0.3484 56.5455 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 43 G -1.2010 45.5865 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 44 b -3.8320 35.7325 45.9198 -Georgia_Bold.ttf 28 F 35.9650 40.4681 45 9 8.3037 32.6330 42.3571 -Georgia_Bold.ttf 28 F 35.9650 40.4681 46 ; 12.5076 11.5049 39.3813 -Georgia_Bold.ttf 28 F 35.9650 40.4681 47 D -0.3908 44.3879 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 48 L -0.1627 38.0196 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 49 y 12.4192 35.2710 40.8060 -Georgia_Bold.ttf 28 F 35.9650 40.4681 50 ‘ -2.9603 11.5049 20.0578 -Georgia_Bold.ttf 28 F 35.9650 40.4681 51 \ -2.7476 24.9408 55.3288 -Georgia_Bold.ttf 28 F 35.9650 40.4681 52 R -0.0032 46.2759 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 53 < 7.9311 28.2500 32.5259 -Georgia_Bold.ttf 28 F 35.9650 40.4681 54 4 8.6156 34.6684 42.2500 -Georgia_Bold.ttf 28 F 35.9650 40.4681 55 8 -1.2412 33.3865 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 56 0 8.9950 34.6876 32.8830 -Georgia_Bold.ttf 28 F 35.9650 40.4681 57 A -0.0557 46.9902 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 58 E -0.0490 38.6908 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 59 B 0.1180 40.1348 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 60 v 12.6530 35.5017 28.0000 -Georgia_Bold.ttf 28 F 35.9650 40.4681 61 k -3.8917 37.9968 44.3879 -Georgia_Bold.ttf 28 F 35.9650 40.4681 62 J 0.1282 33.3235 41.6621 -Georgia_Bold.ttf 28 F 35.9650 40.4681 63 U -0.1350 46.9856 41.6621 -Georgia_Bold.ttf 28 F 35.9650 40.4681 64 j -4.6622 22.1730 57.6747 -Georgia_Bold.ttf 28 F 35.9650 40.4681 65 ( -2.6638 20.7483 52.5609 -Georgia_Bold.ttf 28 F 35.9650 40.4681 66 7 9.9959 30.0308 41.0560 -Georgia_Bold.ttf 28 F 35.9650 40.4681 67 § -0.9531 26.2192 48.4103 -Georgia_Bold.ttf 28 F 35.9650 40.4681 68 $ -2.9680 31.2486 51.7468 -Georgia_Bold.ttf 28 F 35.9650 40.4681 69 € -1.6257 41.2868 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 70 / -3.0995 24.9408 55.3288 -Georgia_Bold.ttf 28 F 35.9650 40.4681 71 C -1.2396 39.1489 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 72 * -1.1045 23.6397 21.2290 -Georgia_Bold.ttf 28 F 35.9650 40.4681 73 ” -3.1177 25.5049 20.0578 -Georgia_Bold.ttf 28 F 35.9650 40.4681 74 ? -1.5488 26.4727 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 75 { -2.5646 25.1716 52.5609 -Georgia_Bold.ttf 28 F 35.9650 40.4681 76 } -2.7296 25.1716 52.5609 -Georgia_Bold.ttf 28 F 35.9650 40.4681 77 , 31.0540 11.5049 20.7483 -Georgia_Bold.ttf 28 F 35.9650 40.4681 78 I 0.0287 21.7342 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 79 ° -1.3773 19.4471 18.8830 -Georgia_Bold.ttf 28 F 35.9650 40.4681 80 K 0.2696 47.4699 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 81 H 0.0468 49.0437 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 82 q 9.6893 36.1968 43.1940 -Georgia_Bold.ttf 28 F 35.9650 40.4681 83 & -1.2048 44.6379 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 84 ’ -2.9399 11.5049 20.0578 -Georgia_Bold.ttf 28 F 35.9650 40.4681 85 [ -2.6592 18.8830 52.5609 -Georgia_Bold.ttf 28 F 35.9650 40.4681 86 - 22.0154 17.3319 6.3078 -Georgia_Bold.ttf 28 F 35.9650 40.4681 87 Y -0.2144 46.5865 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 88 Q -1.3696 43.5511 53.5241 -Georgia_Bold.ttf 28 F 35.9650 40.4681 89 " -2.5471 23.0291 20.0578 -Georgia_Bold.ttf 28 F 35.9650 40.4681 90 ! -1.2254 10.9408 42.8561 -Georgia_Bold.ttf 28 F 35.9650 40.4681 91 x 12.2452 34.3078 28.0000 -Georgia_Bold.ttf 28 F 35.9650 40.4681 92 ) -2.7053 20.7483 52.5609 -Georgia_Bold.ttf 28 F 35.9650 40.4681 93 = 15.9349 30.3879 16.2451 -Georgia_Bold.ttf 28 F 35.9650 40.4681 94 + 8.0600 31.9572 31.9572 -Georgia_Bold.ttf 28 F 35.9650 40.4681 95 X 0.3977 47.1138 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 96 » 12.0593 28.0000 25.5049 -Georgia_Bold.ttf 28 F 35.9650 40.4681 97 ' -2.4677 9.3670 20.0578 -Georgia_Bold.ttf 28 F 35.9650 40.4681 98 ¢ 3.9937 29.6975 45.0592 -Georgia_Bold.ttf 28 F 35.9650 40.4681 99 Z 0.2382 40.1348 40.4681 -Georgia_Bold.ttf 28 F 35.9650 40.4681 100 > 7.7666 28.2500 32.5259 -Georgia_Bold.ttf 28 F 35.9650 40.4681 101 ® -1.5846 50.4457 50.4457 -Georgia_Bold.ttf 28 F 35.9650 40.4681 102 © -1.1853 50.4457 50.4457 -Georgia_Bold.ttf 28 F 35.9650 40.4681 103 ] -2.6962 18.8830 52.5609 -Georgia_Bold.ttf 28 F 35.9650 40.4681 104 é -4.0403 30.1152 45.5819 -Georgia_Bold.ttf 28 F 35.9650 40.4681 105 z 12.1326 28.0000 28.0000 -Georgia_Bold.ttf 28 F 35.9650 40.4681 106 _ 45.2873 41.0560 2.7259 -Georgia_Bold.ttf 28 F 35.9650 40.4681 107 ¥ -0.1686 44.1379 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 1 t 5.0874 22.8029 37.7468 -Georgia_Bold.ttf 29 S 33.7437 42.8561 2 h -2.8130 38.3109 44.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 3 a 12.3573 31.8795 30.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 4 n 12.3993 38.5434 29.1940 -Georgia_Bold.ttf 29 S 33.7437 42.8561 5 P 1.1555 37.4968 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 6 o 12.3883 32.6103 30.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 7 e 12.7485 30.1152 30.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 8 : 13.6390 11.2741 29.1940 -Georgia_Bold.ttf 29 S 33.7437 42.8561 9 r 12.5405 29.1940 29.1940 -Georgia_Bold.ttf 29 S 33.7437 42.8561 10 l -2.8886 18.7339 44.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 11 i -3.2158 18.7339 44.8687 -Georgia_Bold.ttf 29 S 33.7437 42.8561 12 1 9.7572 23.6397 31.6891 -Georgia_Bold.ttf 29 S 33.7437 42.8561 13 | -2.8393 4.6330 56.5227 -Georgia_Bold.ttf 29 S 33.7437 42.8561 14 N 1.1575 47.1785 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 15 f -2.6146 28.2500 44.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 16 g 12.3741 32.5497 42.0000 -Georgia_Bold.ttf 29 S 33.7437 42.8561 17 d -2.9084 36.4457 45.5819 -Georgia_Bold.ttf 29 S 33.7437 42.8561 18 W 1.2083 68.0276 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 19 s 12.7813 25.8621 30.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 20 c 12.8537 28.9212 30.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 21 u 12.5531 38.2100 30.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 22 3 9.8982 32.5259 42.2500 -Georgia_Bold.ttf 29 S 33.7437 42.8561 23 ~ 18.9159 32.5497 12.2181 -Georgia_Bold.ttf 29 S 33.7437 42.8561 24 # 5.0779 32.2532 36.4457 -Georgia_Bold.ttf 29 S 33.7437 42.8561 25 O -0.0500 43.5511 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 26 ` -2.6342 15.1940 12.8060 -Georgia_Bold.ttf 29 S 33.7437 42.8561 27 @ 2.6899 47.4709 48.6411 -Georgia_Bold.ttf 29 S 33.7437 42.8561 28 F 1.0856 35.9650 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 29 S 0.3434 33.7437 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 30 p 11.9993 35.8397 42.0000 -Georgia_Bold.ttf 29 S 33.7437 42.8561 31 “ -1.0977 25.5049 20.0578 -Georgia_Bold.ttf 29 S 33.7437 42.8561 32 % 0.1993 46.1460 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 33 £ 0.0877 33.4471 41.6621 -Georgia_Bold.ttf 29 S 33.7437 42.8561 34 . 31.5365 11.2741 11.2741 -Georgia_Bold.ttf 29 S 33.7437 42.8561 35 2 9.7558 30.6653 31.6891 -Georgia_Bold.ttf 29 S 33.7437 42.8561 36 5 9.8499 31.3319 42.2500 -Georgia_Bold.ttf 29 S 33.7437 42.8561 37 m 12.7485 57.1474 29.1940 -Georgia_Bold.ttf 29 S 33.7437 42.8561 38 V 1.1347 47.4471 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 39 6 -0.1798 32.2997 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 40 w 13.2972 50.4457 28.0000 -Georgia_Bold.ttf 29 S 33.7437 42.8561 41 T 1.5047 38.0802 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 42 M 1.2241 56.5455 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 43 G -0.0032 45.5865 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 44 b -2.4177 35.7325 45.9198 -Georgia_Bold.ttf 29 S 33.7437 42.8561 45 9 9.7567 32.6330 42.3571 -Georgia_Bold.ttf 29 S 33.7437 42.8561 46 ; 13.6834 11.5049 39.3813 -Georgia_Bold.ttf 29 S 33.7437 42.8561 47 D 1.2735 44.3879 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 48 L 1.2932 38.0196 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 49 y 13.4059 35.2710 40.8060 -Georgia_Bold.ttf 29 S 33.7437 42.8561 50 ‘ -1.4179 11.5049 20.0578 -Georgia_Bold.ttf 29 S 33.7437 42.8561 51 \ -1.6746 24.9408 55.3288 -Georgia_Bold.ttf 29 S 33.7437 42.8561 52 R 1.2289 46.2759 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 53 < 9.1897 28.2500 32.5259 -Georgia_Bold.ttf 29 S 33.7437 42.8561 54 4 9.9959 34.6684 42.2500 -Georgia_Bold.ttf 29 S 33.7437 42.8561 55 8 -0.0591 33.3865 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 56 0 9.6602 34.6876 32.8830 -Georgia_Bold.ttf 29 S 33.7437 42.8561 57 A 1.3924 46.9902 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 58 E 1.1346 38.6908 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 59 B 1.2862 40.1348 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 60 v 13.8852 35.5017 28.0000 -Georgia_Bold.ttf 29 S 33.7437 42.8561 61 k -2.8525 37.9968 44.3879 -Georgia_Bold.ttf 29 S 33.7437 42.8561 62 J 1.2248 33.3235 41.6621 -Georgia_Bold.ttf 29 S 33.7437 42.8561 63 U 1.2948 46.9856 41.6621 -Georgia_Bold.ttf 29 S 33.7437 42.8561 64 j -3.6236 22.1730 57.6747 -Georgia_Bold.ttf 29 S 33.7437 42.8561 65 ( -1.4840 20.7483 52.5609 -Georgia_Bold.ttf 29 S 33.7437 42.8561 66 7 11.1979 30.0308 41.0560 -Georgia_Bold.ttf 29 S 33.7437 42.8561 67 § 0.2581 26.2192 48.4103 -Georgia_Bold.ttf 29 S 33.7437 42.8561 68 $ -2.1166 31.2486 51.7468 -Georgia_Bold.ttf 29 S 33.7437 42.8561 69 € -0.0592 41.2868 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 70 / -1.8989 24.9408 55.3288 -Georgia_Bold.ttf 29 S 33.7437 42.8561 71 C -0.1364 39.1489 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 72 * -0.1742 23.6397 21.2290 -Georgia_Bold.ttf 29 S 33.7437 42.8561 73 ” -1.5494 25.5049 20.0578 -Georgia_Bold.ttf 29 S 33.7437 42.8561 74 ? -0.0217 26.4727 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 75 { -1.4268 25.1716 52.5609 -Georgia_Bold.ttf 29 S 33.7437 42.8561 76 } -1.4896 25.1716 52.5609 -Georgia_Bold.ttf 29 S 33.7437 42.8561 77 , 32.1524 11.5049 20.7483 -Georgia_Bold.ttf 29 S 33.7437 42.8561 78 I 1.1615 21.7342 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 79 ° -0.1137 19.4471 18.8830 -Georgia_Bold.ttf 29 S 33.7437 42.8561 80 K 1.4251 47.4699 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 81 H 1.2446 49.0437 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 82 q 11.2747 36.1968 43.1940 -Georgia_Bold.ttf 29 S 33.7437 42.8561 83 & 0.0992 44.6379 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 84 ’ -1.3348 11.5049 20.0578 -Georgia_Bold.ttf 29 S 33.7437 42.8561 85 [ -1.8793 18.8830 52.5609 -Georgia_Bold.ttf 29 S 33.7437 42.8561 86 - 22.9333 17.3319 6.3078 -Georgia_Bold.ttf 29 S 33.7437 42.8561 87 Y 1.4303 46.5865 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 88 Q 0.0188 43.5511 53.5241 -Georgia_Bold.ttf 29 S 33.7437 42.8561 89 " -1.4023 23.0291 20.0578 -Georgia_Bold.ttf 29 S 33.7437 42.8561 90 ! 0.0469 10.9408 42.8561 -Georgia_Bold.ttf 29 S 33.7437 42.8561 91 x 13.5341 34.3078 28.0000 -Georgia_Bold.ttf 29 S 33.7437 42.8561 92 ) -1.4708 20.7483 52.5609 -Georgia_Bold.ttf 29 S 33.7437 42.8561 93 = 17.1519 30.3879 16.2451 -Georgia_Bold.ttf 29 S 33.7437 42.8561 94 + 9.3393 31.9572 31.9572 -Georgia_Bold.ttf 29 S 33.7437 42.8561 95 X 1.0066 47.1138 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 96 » 13.2084 28.0000 25.5049 -Georgia_Bold.ttf 29 S 33.7437 42.8561 97 ' -1.4241 9.3670 20.0578 -Georgia_Bold.ttf 29 S 33.7437 42.8561 98 ¢ 4.7991 29.6975 45.0592 -Georgia_Bold.ttf 29 S 33.7437 42.8561 99 Z 1.0303 40.1348 40.4681 -Georgia_Bold.ttf 29 S 33.7437 42.8561 100 > 9.0279 28.2500 32.5259 -Georgia_Bold.ttf 29 S 33.7437 42.8561 101 ® -0.3785 50.4457 50.4457 -Georgia_Bold.ttf 29 S 33.7437 42.8561 102 © -0.4922 50.4457 50.4457 -Georgia_Bold.ttf 29 S 33.7437 42.8561 103 ] -1.5755 18.8830 52.5609 -Georgia_Bold.ttf 29 S 33.7437 42.8561 104 é -2.5447 30.1152 45.5819 -Georgia_Bold.ttf 29 S 33.7437 42.8561 105 z 13.2182 28.0000 28.0000 -Georgia_Bold.ttf 29 S 33.7437 42.8561 106 _ 46.9501 41.0560 2.7259 -Georgia_Bold.ttf 29 S 33.7437 42.8561 107 ¥ 1.2069 44.1379 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 1 t -7.5506 22.8029 37.7468 -Georgia_Bold.ttf 30 p 35.8397 42.0000 2 h -15.2297 38.3109 44.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 3 a -0.0798 31.8795 30.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 4 n -0.0282 38.5434 29.1940 -Georgia_Bold.ttf 30 p 35.8397 42.0000 5 P -11.0154 37.4968 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 6 o 0.1182 32.6103 30.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 7 e -0.1282 30.1152 30.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 8 : 1.4004 11.2741 29.1940 -Georgia_Bold.ttf 30 p 35.8397 42.0000 9 r -0.2607 29.1940 29.1940 -Georgia_Bold.ttf 30 p 35.8397 42.0000 10 l -15.3658 18.7339 44.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 11 i -15.8490 18.7339 44.8687 -Georgia_Bold.ttf 30 p 35.8397 42.0000 12 1 -2.8810 23.6397 31.6891 -Georgia_Bold.ttf 30 p 35.8397 42.0000 13 | -15.1524 4.6330 56.5227 -Georgia_Bold.ttf 30 p 35.8397 42.0000 14 N -11.2623 47.1785 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 15 f -15.2835 28.2500 44.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 16 g 0.3506 32.5497 42.0000 -Georgia_Bold.ttf 30 p 35.8397 42.0000 17 d -14.9442 36.4457 45.5819 -Georgia_Bold.ttf 30 p 35.8397 42.0000 18 W -11.5244 68.0276 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 19 s 0.0955 25.8621 30.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 20 c 0.1960 28.9212 30.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 21 u -0.0193 38.2100 30.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 22 3 -2.2641 32.5259 42.2500 -Georgia_Bold.ttf 30 p 35.8397 42.0000 23 ~ 6.7171 32.5497 12.2181 -Georgia_Bold.ttf 30 p 35.8397 42.0000 24 # -6.9175 32.2532 36.4457 -Georgia_Bold.ttf 30 p 35.8397 42.0000 25 O -12.6413 43.5511 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 26 ` -15.2074 15.1940 12.8060 -Georgia_Bold.ttf 30 p 35.8397 42.0000 27 @ -10.2218 47.4709 48.6411 -Georgia_Bold.ttf 30 p 35.8397 42.0000 28 F -11.4134 35.9650 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 29 S -12.5339 33.7437 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 30 p -0.0124 35.8397 42.0000 -Georgia_Bold.ttf 30 p 35.8397 42.0000 31 “ -13.8346 25.5049 20.0578 -Georgia_Bold.ttf 30 p 35.8397 42.0000 32 % -12.4342 46.1460 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 33 £ -12.4713 33.4471 41.6621 -Georgia_Bold.ttf 30 p 35.8397 42.0000 34 . 19.3531 11.2741 11.2741 -Georgia_Bold.ttf 30 p 35.8397 42.0000 35 2 -2.1340 30.6653 31.6891 -Georgia_Bold.ttf 30 p 35.8397 42.0000 36 5 -2.7046 31.3319 42.2500 -Georgia_Bold.ttf 30 p 35.8397 42.0000 37 m -0.2293 57.1474 29.1940 -Georgia_Bold.ttf 30 p 35.8397 42.0000 38 V -11.3543 47.4471 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 39 6 -12.4148 32.2997 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 40 w 0.7168 50.4457 28.0000 -Georgia_Bold.ttf 30 p 35.8397 42.0000 41 T -11.2959 38.0802 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 42 M -11.3736 56.5455 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 43 G -12.6104 45.5865 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 44 b -15.3862 35.7325 45.9198 -Georgia_Bold.ttf 30 p 35.8397 42.0000 45 9 -2.3400 32.6330 42.3571 -Georgia_Bold.ttf 30 p 35.8397 42.0000 46 ; 1.1365 11.5049 39.3813 -Georgia_Bold.ttf 30 p 35.8397 42.0000 47 D -11.4127 44.3879 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 48 L -10.8905 38.0196 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 49 y 0.8824 35.2710 40.8060 -Georgia_Bold.ttf 30 p 35.8397 42.0000 50 ‘ -14.0508 11.5049 20.0578 -Georgia_Bold.ttf 30 p 35.8397 42.0000 51 \ -13.8271 24.9408 55.3288 -Georgia_Bold.ttf 30 p 35.8397 42.0000 52 R -11.2075 46.2759 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 53 < -3.3698 28.2500 32.5259 -Georgia_Bold.ttf 30 p 35.8397 42.0000 54 4 -2.6594 34.6684 42.2500 -Georgia_Bold.ttf 30 p 35.8397 42.0000 55 8 -12.2498 33.3865 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 56 0 -2.3618 34.6876 32.8830 -Georgia_Bold.ttf 30 p 35.8397 42.0000 57 A -11.1832 46.9902 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 58 E -11.2884 38.6908 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 59 B -11.4446 40.1348 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 60 v 1.1575 35.5017 28.0000 -Georgia_Bold.ttf 30 p 35.8397 42.0000 61 k -15.0569 37.9968 44.3879 -Georgia_Bold.ttf 30 p 35.8397 42.0000 62 J -11.4067 33.3235 41.6621 -Georgia_Bold.ttf 30 p 35.8397 42.0000 63 U -11.4559 46.9856 41.6621 -Georgia_Bold.ttf 30 p 35.8397 42.0000 64 j -15.6401 22.1730 57.6747 -Georgia_Bold.ttf 30 p 35.8397 42.0000 65 ( -14.0645 20.7483 52.5609 -Georgia_Bold.ttf 30 p 35.8397 42.0000 66 7 -0.9747 30.0308 41.0560 -Georgia_Bold.ttf 30 p 35.8397 42.0000 67 § -12.6377 26.2192 48.4103 -Georgia_Bold.ttf 30 p 35.8397 42.0000 68 $ -14.5860 31.2486 51.7468 -Georgia_Bold.ttf 30 p 35.8397 42.0000 69 € -12.5302 41.2868 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 70 / -14.0568 24.9408 55.3288 -Georgia_Bold.ttf 30 p 35.8397 42.0000 71 C -12.3245 39.1489 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 72 * -12.5929 23.6397 21.2290 -Georgia_Bold.ttf 30 p 35.8397 42.0000 73 ” -13.7690 25.5049 20.0578 -Georgia_Bold.ttf 30 p 35.8397 42.0000 74 ? -12.3797 26.4727 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 75 { -14.0917 25.1716 52.5609 -Georgia_Bold.ttf 30 p 35.8397 42.0000 76 } -13.7443 25.1716 52.5609 -Georgia_Bold.ttf 30 p 35.8397 42.0000 77 , 19.9044 11.5049 20.7483 -Georgia_Bold.ttf 30 p 35.8397 42.0000 78 I -11.3123 21.7342 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 79 ° -12.4302 19.4471 18.8830 -Georgia_Bold.ttf 30 p 35.8397 42.0000 80 K -10.8029 47.4699 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 81 H -11.0327 49.0437 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 82 q -1.2638 36.1968 43.1940 -Georgia_Bold.ttf 30 p 35.8397 42.0000 83 & -12.6531 44.6379 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 84 ’ -13.8336 11.5049 20.0578 -Georgia_Bold.ttf 30 p 35.8397 42.0000 85 [ -13.5704 18.8830 52.5609 -Georgia_Bold.ttf 30 p 35.8397 42.0000 86 - 10.8231 17.3319 6.3078 -Georgia_Bold.ttf 30 p 35.8397 42.0000 87 Y -11.4613 46.5865 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 88 Q -12.0734 43.5511 53.5241 -Georgia_Bold.ttf 30 p 35.8397 42.0000 89 " -14.0433 23.0291 20.0578 -Georgia_Bold.ttf 30 p 35.8397 42.0000 90 ! -12.5552 10.9408 42.8561 -Georgia_Bold.ttf 30 p 35.8397 42.0000 91 x 1.4937 34.3078 28.0000 -Georgia_Bold.ttf 30 p 35.8397 42.0000 92 ) -13.7887 20.7483 52.5609 -Georgia_Bold.ttf 30 p 35.8397 42.0000 93 = 4.7548 30.3879 16.2451 -Georgia_Bold.ttf 30 p 35.8397 42.0000 94 + -2.6239 31.9572 31.9572 -Georgia_Bold.ttf 30 p 35.8397 42.0000 95 X -11.3683 47.1138 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 96 » 0.9925 28.0000 25.5049 -Georgia_Bold.ttf 30 p 35.8397 42.0000 97 ' -13.9847 9.3670 20.0578 -Georgia_Bold.ttf 30 p 35.8397 42.0000 98 ¢ -7.0108 29.6975 45.0592 -Georgia_Bold.ttf 30 p 35.8397 42.0000 99 Z -11.5452 40.1348 40.4681 -Georgia_Bold.ttf 30 p 35.8397 42.0000 100 > -3.2468 28.2500 32.5259 -Georgia_Bold.ttf 30 p 35.8397 42.0000 101 ® -12.5976 50.4457 50.4457 -Georgia_Bold.ttf 30 p 35.8397 42.0000 102 © -12.5064 50.4457 50.4457 -Georgia_Bold.ttf 30 p 35.8397 42.0000 103 ] -13.9699 18.8830 52.5609 -Georgia_Bold.ttf 30 p 35.8397 42.0000 104 é -15.5196 30.1152 45.5819 -Georgia_Bold.ttf 30 p 35.8397 42.0000 105 z 1.3130 28.0000 28.0000 -Georgia_Bold.ttf 30 p 35.8397 42.0000 106 _ 34.3616 41.0560 2.7259 -Georgia_Bold.ttf 30 p 35.8397 42.0000 107 ¥ -11.0034 44.1379 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 1 t 6.5341 22.8029 37.7468 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 2 h -1.3706 38.3109 44.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 3 a 13.8749 31.8795 30.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 4 n 13.7016 38.5434 29.1940 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 5 P 2.8636 37.4968 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 6 o 13.8328 32.6103 30.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 7 e 14.2126 30.1152 30.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 8 : 15.5994 11.2741 29.1940 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 9 r 13.7911 29.1940 29.1940 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 10 l -1.1741 18.7339 44.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 11 i -1.7124 18.7339 44.8687 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 12 1 11.3780 23.6397 31.6891 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 13 | -1.3879 4.6330 56.5227 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 14 N 2.8713 47.1785 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 15 f -1.2856 28.2500 44.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 16 g 13.8659 32.5497 42.0000 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 17 d -1.1647 36.4457 45.5819 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 18 W 2.5654 68.0276 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 19 s 13.8365 25.8621 30.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 20 c 13.8744 28.9212 30.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 21 u 14.0277 38.2100 30.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 22 3 11.6700 32.5259 42.2500 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 23 ~ 20.9362 32.5497 12.2181 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 24 # 6.9231 32.2532 36.4457 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 25 O 1.5902 43.5511 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 26 ` -1.1268 15.1940 12.8060 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 27 @ 3.6980 47.4709 48.6411 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 28 F 2.8146 35.9650 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 29 S 1.7872 33.7437 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 30 p 14.0742 35.8397 42.0000 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 31 “ 0.1350 25.5049 20.0578 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 32 % 1.4705 46.1460 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 33 £ 1.6568 33.4471 41.6621 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 34 . 32.9479 11.2741 11.2741 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 35 2 11.6277 30.6653 31.6891 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 36 5 11.4345 31.3319 42.2500 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 37 m 13.8054 57.1474 29.1940 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 38 V 2.7186 47.4471 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 39 6 1.5676 32.2997 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 40 w 15.1874 50.4457 28.0000 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 41 T 2.6517 38.0802 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 42 M 2.5919 56.5455 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 43 G 1.5469 45.5865 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 44 b -0.8577 35.7325 45.9198 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 45 9 11.5829 32.6330 42.3571 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 46 ; 15.2862 11.5049 39.3813 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 47 D 2.8060 44.3879 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 48 L 2.7259 38.0196 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 49 y 15.3617 35.2710 40.8060 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 50 ‘ 0.1371 11.5049 20.0578 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 51 \ 0.0045 24.9408 55.3288 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 52 R 2.9456 46.2759 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 53 < 10.5388 28.2500 32.5259 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 54 4 11.6923 34.6684 42.2500 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 55 8 1.3835 33.3865 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 56 0 11.4197 34.6876 32.8830 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 57 A 2.7651 46.9902 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 58 E 2.7987 38.6908 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 59 B 2.5306 40.1348 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 60 v 15.0058 35.5017 28.0000 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 61 k -1.3139 37.9968 44.3879 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 62 J 2.8441 33.3235 41.6621 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 63 U 3.0189 46.9856 41.6621 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 64 j -1.5799 22.1730 57.6747 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 65 ( -0.1484 20.7483 52.5609 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 66 7 12.8457 30.0308 41.0560 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 67 § 1.2289 26.2192 48.4103 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 68 $ -0.3863 31.2486 51.7468 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 69 € 1.6445 41.2868 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 70 / -0.1952 24.9408 55.3288 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 71 C 1.4805 39.1489 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 72 * 1.7316 23.6397 21.2290 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 73 ” -0.1653 25.5049 20.0578 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 74 ? 1.4211 26.4727 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 75 { -0.7186 25.1716 52.5609 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 76 } -0.0955 25.1716 52.5609 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 77 , 33.9141 11.5049 20.7483 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 78 I 2.5197 21.7342 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 79 ° 1.6547 19.4471 18.8830 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 80 K 2.6457 47.4699 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 81 H 2.8896 49.0437 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 82 q 12.6917 36.1968 43.1940 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 83 & 1.8642 44.6379 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 84 ’ -0.1868 11.5049 20.0578 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 85 [ -0.0032 18.8830 52.5609 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 86 - 24.4808 17.3319 6.3078 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 87 Y 2.6734 46.5865 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 88 Q 1.2733 43.5511 53.5241 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 89 " 0.0769 23.0291 20.0578 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 90 ! 1.6076 10.9408 42.8561 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 91 x 15.1536 34.3078 28.0000 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 92 ) 0.3057 20.7483 52.5609 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 93 = 18.7975 30.3879 16.2451 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 94 + 10.9660 31.9572 31.9572 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 95 X 2.5775 47.1138 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 96 » 15.1342 28.0000 25.5049 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 97 ' 0.1826 9.3670 20.0578 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 98 ¢ 6.6560 29.6975 45.0592 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 99 Z 3.1482 40.1348 40.4681 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 100 > 10.8283 28.2500 32.5259 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 101 ® 1.2741 50.4457 50.4457 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 102 © 1.3233 50.4457 50.4457 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 103 ] 0.0804 18.8830 52.5609 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 104 é -0.8773 30.1152 45.5819 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 105 z 15.2203 28.0000 28.0000 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 106 _ 48.1297 41.0560 2.7259 -Georgia_Bold.ttf 31 “ 25.5049 20.0578 107 ¥ 2.6364 44.1379 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 1 t 5.1449 22.8029 37.7468 -Georgia_Bold.ttf 32 % 46.1460 42.8561 2 h -2.7490 38.3109 44.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 3 a 11.8759 31.8795 30.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 4 n 12.5189 38.5434 29.1940 -Georgia_Bold.ttf 32 % 46.1460 42.8561 5 P 1.4398 37.4968 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 6 o 12.9111 32.6103 30.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 7 e 12.7135 30.1152 30.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 8 : 13.8474 11.2741 29.1940 -Georgia_Bold.ttf 32 % 46.1460 42.8561 9 r 12.5065 29.1940 29.1940 -Georgia_Bold.ttf 32 % 46.1460 42.8561 10 l -2.9471 18.7339 44.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 11 i -3.4650 18.7339 44.8687 -Georgia_Bold.ttf 32 % 46.1460 42.8561 12 1 10.0389 23.6397 31.6891 -Georgia_Bold.ttf 32 % 46.1460 42.8561 13 | -2.5129 4.6330 56.5227 -Georgia_Bold.ttf 32 % 46.1460 42.8561 14 N 1.0518 47.1785 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 15 f -2.8885 28.2500 44.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 16 g 12.3751 32.5497 42.0000 -Georgia_Bold.ttf 32 % 46.1460 42.8561 17 d -2.6223 36.4457 45.5819 -Georgia_Bold.ttf 32 % 46.1460 42.8561 18 W 1.4217 68.0276 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 19 s 12.4606 25.8621 30.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 20 c 11.9549 28.9212 30.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 21 u 12.1721 38.2100 30.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 22 3 9.9886 32.5259 42.2500 -Georgia_Bold.ttf 32 % 46.1460 42.8561 23 ~ 19.4151 32.5497 12.2181 -Georgia_Bold.ttf 32 % 46.1460 42.8561 24 # 5.1279 32.2532 36.4457 -Georgia_Bold.ttf 32 % 46.1460 42.8561 25 O -0.0915 43.5511 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 26 ` -2.9947 15.1940 12.8060 -Georgia_Bold.ttf 32 % 46.1460 42.8561 27 @ 2.0976 47.4709 48.6411 -Georgia_Bold.ttf 32 % 46.1460 42.8561 28 F 1.1065 35.9650 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 29 S -0.2133 33.7437 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 30 p 12.4660 35.8397 42.0000 -Georgia_Bold.ttf 32 % 46.1460 42.8561 31 “ -1.4975 25.5049 20.0578 -Georgia_Bold.ttf 32 % 46.1460 42.8561 32 % 0.2568 46.1460 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 33 £ 0.0256 33.4471 41.6621 -Georgia_Bold.ttf 32 % 46.1460 42.8561 34 . 31.1907 11.2741 11.2741 -Georgia_Bold.ttf 32 % 46.1460 42.8561 35 2 9.9762 30.6653 31.6891 -Georgia_Bold.ttf 32 % 46.1460 42.8561 36 5 9.9117 31.3319 42.2500 -Georgia_Bold.ttf 32 % 46.1460 42.8561 37 m 12.2827 57.1474 29.1940 -Georgia_Bold.ttf 32 % 46.1460 42.8561 38 V 1.3612 47.4471 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 39 6 -0.2228 32.2997 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 40 w 13.7027 50.4457 28.0000 -Georgia_Bold.ttf 32 % 46.1460 42.8561 41 T 1.3741 38.0802 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 42 M 1.2496 56.5455 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 43 G -0.1912 45.5865 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 44 b -2.4633 35.7325 45.9198 -Georgia_Bold.ttf 32 % 46.1460 42.8561 45 9 9.9603 32.6330 42.3571 -Georgia_Bold.ttf 32 % 46.1460 42.8561 46 ; 13.8390 11.5049 39.3813 -Georgia_Bold.ttf 32 % 46.1460 42.8561 47 D 1.3381 44.3879 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 48 L 1.1674 38.0196 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 49 y 13.2983 35.2710 40.8060 -Georgia_Bold.ttf 32 % 46.1460 42.8561 50 ‘ -1.6319 11.5049 20.0578 -Georgia_Bold.ttf 32 % 46.1460 42.8561 51 \ -1.8724 24.9408 55.3288 -Georgia_Bold.ttf 32 % 46.1460 42.8561 52 R 1.5071 46.2759 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 53 < 9.2080 28.2500 32.5259 -Georgia_Bold.ttf 32 % 46.1460 42.8561 54 4 9.7271 34.6684 42.2500 -Georgia_Bold.ttf 32 % 46.1460 42.8561 55 8 0.3118 33.3865 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 56 0 9.5927 34.6876 32.8830 -Georgia_Bold.ttf 32 % 46.1460 42.8561 57 A 1.0440 46.9902 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 58 E 1.3809 38.6908 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 59 B 1.1728 40.1348 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 60 v 13.7855 35.5017 28.0000 -Georgia_Bold.ttf 32 % 46.1460 42.8561 61 k -2.6417 37.9968 44.3879 -Georgia_Bold.ttf 32 % 46.1460 42.8561 62 J 1.3279 33.3235 41.6621 -Georgia_Bold.ttf 32 % 46.1460 42.8561 63 U 1.3168 46.9856 41.6621 -Georgia_Bold.ttf 32 % 46.1460 42.8561 64 j -3.4347 22.1730 57.6747 -Georgia_Bold.ttf 32 % 46.1460 42.8561 65 ( -1.7706 20.7483 52.5609 -Georgia_Bold.ttf 32 % 46.1460 42.8561 66 7 11.2982 30.0308 41.0560 -Georgia_Bold.ttf 32 % 46.1460 42.8561 67 § -0.2336 26.2192 48.4103 -Georgia_Bold.ttf 32 % 46.1460 42.8561 68 $ -1.6304 31.2486 51.7468 -Georgia_Bold.ttf 32 % 46.1460 42.8561 69 € -0.0277 41.2868 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 70 / -1.5160 24.9408 55.3288 -Georgia_Bold.ttf 32 % 46.1460 42.8561 71 C 0.0893 39.1489 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 72 * -0.0864 23.6397 21.2290 -Georgia_Bold.ttf 32 % 46.1460 42.8561 73 ” -1.5422 25.5049 20.0578 -Georgia_Bold.ttf 32 % 46.1460 42.8561 74 ? -0.0161 26.4727 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 75 { -1.5339 25.1716 52.5609 -Georgia_Bold.ttf 32 % 46.1460 42.8561 76 } -1.5050 25.1716 52.5609 -Georgia_Bold.ttf 32 % 46.1460 42.8561 77 , 32.5546 11.5049 20.7483 -Georgia_Bold.ttf 32 % 46.1460 42.8561 78 I 1.2658 21.7342 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 79 ° -0.1022 19.4471 18.8830 -Georgia_Bold.ttf 32 % 46.1460 42.8561 80 K 1.0333 47.4699 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 81 H 1.3483 49.0437 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 82 q 11.2456 36.1968 43.1940 -Georgia_Bold.ttf 32 % 46.1460 42.8561 83 & -0.0231 44.6379 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 84 ’ -1.2005 11.5049 20.0578 -Georgia_Bold.ttf 32 % 46.1460 42.8561 85 [ -2.0368 18.8830 52.5609 -Georgia_Bold.ttf 32 % 46.1460 42.8561 86 - 22.9491 17.3319 6.3078 -Georgia_Bold.ttf 32 % 46.1460 42.8561 87 Y 1.1367 46.5865 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 88 Q 0.2129 43.5511 53.5241 -Georgia_Bold.ttf 32 % 46.1460 42.8561 89 " -1.4174 23.0291 20.0578 -Georgia_Bold.ttf 32 % 46.1460 42.8561 90 ! 0.0427 10.9408 42.8561 -Georgia_Bold.ttf 32 % 46.1460 42.8561 91 x 13.7565 34.3078 28.0000 -Georgia_Bold.ttf 32 % 46.1460 42.8561 92 ) -1.3524 20.7483 52.5609 -Georgia_Bold.ttf 32 % 46.1460 42.8561 93 = 17.1697 30.3879 16.2451 -Georgia_Bold.ttf 32 % 46.1460 42.8561 94 + 9.3630 31.9572 31.9572 -Georgia_Bold.ttf 32 % 46.1460 42.8561 95 X 1.2787 47.1138 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 96 » 13.3057 28.0000 25.5049 -Georgia_Bold.ttf 32 % 46.1460 42.8561 97 ' -1.4577 9.3670 20.0578 -Georgia_Bold.ttf 32 % 46.1460 42.8561 98 ¢ 5.1884 29.6975 45.0592 -Georgia_Bold.ttf 32 % 46.1460 42.8561 99 Z 1.3849 40.1348 40.4681 -Georgia_Bold.ttf 32 % 46.1460 42.8561 100 > 9.1599 28.2500 32.5259 -Georgia_Bold.ttf 32 % 46.1460 42.8561 101 ® -0.4196 50.4457 50.4457 -Georgia_Bold.ttf 32 % 46.1460 42.8561 102 © -0.2838 50.4457 50.4457 -Georgia_Bold.ttf 32 % 46.1460 42.8561 103 ] -1.5267 18.8830 52.5609 -Georgia_Bold.ttf 32 % 46.1460 42.8561 104 é -3.1620 30.1152 45.5819 -Georgia_Bold.ttf 32 % 46.1460 42.8561 105 z 13.5902 28.0000 28.0000 -Georgia_Bold.ttf 32 % 46.1460 42.8561 106 _ 46.7087 41.0560 2.7259 -Georgia_Bold.ttf 32 % 46.1460 42.8561 107 ¥ 1.2297 44.1379 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 1 t 5.3544 22.8029 37.7468 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 2 h -2.6433 38.3109 44.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 3 a 12.4073 31.8795 30.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 4 n 12.6308 38.5434 29.1940 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 5 P 1.3688 37.4968 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 6 o 12.5201 32.6103 30.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 7 e 12.4974 30.1152 30.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 8 : 13.7342 11.2741 29.1940 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 9 r 12.5189 29.1940 29.1940 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 10 l -2.6342 18.7339 44.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 11 i -3.4499 18.7339 44.8687 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 12 1 9.9919 23.6397 31.6891 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 13 | -2.8070 4.6330 56.5227 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 14 N 0.9789 47.1785 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 15 f -2.5882 28.2500 44.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 16 g 12.1789 32.5497 42.0000 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 17 d -3.0173 36.4457 45.5819 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 18 W 1.1832 68.0276 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 19 s 12.3881 25.8621 30.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 20 c 12.1963 28.9212 30.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 21 u 12.5711 38.2100 30.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 22 3 9.9286 32.5259 42.2500 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 23 ~ 19.4172 32.5497 12.2181 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 24 # 5.2671 32.2532 36.4457 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 25 O -0.1177 43.5511 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 26 ` -2.6643 15.1940 12.8060 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 27 @ 2.4237 47.4709 48.6411 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 28 F 1.2995 35.9650 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 29 S 0.0690 33.7437 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 30 p 12.4461 35.8397 42.0000 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 31 “ -1.4840 25.5049 20.0578 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 32 % -0.0231 46.1460 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 33 £ -0.0178 33.4471 41.6621 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 34 . 31.5126 11.2741 11.2741 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 35 2 10.1784 30.6653 31.6891 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 36 5 10.0279 31.3319 42.2500 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 37 m 12.5354 57.1474 29.1940 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 38 V 1.1981 47.4471 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 39 6 0.1315 32.2997 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 40 w 13.8030 50.4457 28.0000 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 41 T 1.0610 38.0802 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 42 M 1.1886 56.5455 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 43 G 0.1635 45.5865 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 44 b -2.8552 35.7325 45.9198 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 45 9 9.9951 32.6330 42.3571 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 46 ; 13.4970 11.5049 39.3813 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 47 D 1.4899 44.3879 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 48 L 1.1351 38.0196 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 49 y 13.6599 35.2710 40.8060 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 50 ‘ -1.8552 11.5049 20.0578 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 51 \ -1.4857 24.9408 55.3288 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 52 R 1.2638 46.2759 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 53 < 9.1093 28.2500 32.5259 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 54 4 9.9720 34.6684 42.2500 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 55 8 -0.0921 33.3865 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 56 0 9.9078 34.6876 32.8830 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 57 A 1.1810 46.9902 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 58 E 1.1888 38.6908 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 59 B 1.3219 40.1348 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 60 v 13.6930 35.5017 28.0000 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 61 k -2.6608 37.9968 44.3879 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 62 J 0.9372 33.3235 41.6621 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 63 U 1.0308 46.9856 41.6621 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 64 j -3.0951 22.1730 57.6747 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 65 ( -1.6543 20.7483 52.5609 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 66 7 10.9799 30.0308 41.0560 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 67 § -0.0175 26.2192 48.4103 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 68 $ -2.3111 31.2486 51.7468 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 69 € 0.1051 41.2868 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 70 / -1.3727 24.9408 55.3288 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 71 C 0.0162 39.1489 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 72 * -0.2132 23.6397 21.2290 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 73 ” -1.3758 25.5049 20.0578 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 74 ? 0.0716 26.4727 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 75 { -1.5896 25.1716 52.5609 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 76 } -1.7771 25.1716 52.5609 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 77 , 32.0492 11.5049 20.7483 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 78 I 1.2332 21.7342 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 79 ° 0.3057 19.4471 18.8830 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 80 K 1.0827 47.4699 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 81 H 1.1496 49.0437 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 82 q 11.4432 36.1968 43.1940 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 83 & -0.0592 44.6379 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 84 ’ -1.4448 11.5049 20.0578 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 85 [ -1.6983 18.8830 52.5609 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 86 - 22.9874 17.3319 6.3078 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 87 Y 1.0636 46.5865 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 88 Q -0.1607 43.5511 53.5241 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 89 " -1.2994 23.0291 20.0578 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 90 ! 0.0556 10.9408 42.8561 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 91 x 13.5078 34.3078 28.0000 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 92 ) -1.5286 20.7483 52.5609 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 93 = 17.3069 30.3879 16.2451 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 94 + 9.2584 31.9572 31.9572 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 95 X 1.1076 47.1138 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 96 » 13.5888 28.0000 25.5049 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 97 ' -1.7946 9.3670 20.0578 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 98 ¢ 5.0180 29.6975 45.0592 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 99 Z 1.3152 40.1348 40.4681 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 100 > 9.1636 28.2500 32.5259 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 101 ® -0.5500 50.4457 50.4457 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 102 © -0.5962 50.4457 50.4457 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 103 ] -1.3896 18.8830 52.5609 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 104 é -2.4671 30.1152 45.5819 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 105 z 13.5166 28.0000 28.0000 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 106 _ 46.5863 41.0560 2.7259 -Georgia_Bold.ttf 33 £ 33.4471 41.6621 107 ¥ 1.1408 44.1379 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 1 t -26.5171 22.8029 37.7468 -Georgia_Bold.ttf 34 . 11.2741 11.2741 2 h -34.3927 38.3109 44.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 3 a -18.9974 31.8795 30.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 4 n -19.4162 38.5434 29.1940 -Georgia_Bold.ttf 34 . 11.2741 11.2741 5 P -30.5103 37.4968 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 6 o -19.0169 32.6103 30.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 7 e -19.0221 30.1152 30.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 8 : -18.1895 11.2741 29.1940 -Georgia_Bold.ttf 34 . 11.2741 11.2741 9 r -19.0299 29.1940 29.1940 -Georgia_Bold.ttf 34 . 11.2741 11.2741 10 l -34.6052 18.7339 44.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 11 i -35.0808 18.7339 44.8687 -Georgia_Bold.ttf 34 . 11.2741 11.2741 12 1 -21.6627 23.6397 31.6891 -Georgia_Bold.ttf 34 . 11.2741 11.2741 13 | -34.2161 4.6330 56.5227 -Georgia_Bold.ttf 34 . 11.2741 11.2741 14 N -30.3522 47.1785 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 15 f -34.2820 28.2500 44.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 16 g -19.1894 32.5497 42.0000 -Georgia_Bold.ttf 34 . 11.2741 11.2741 17 d -34.2175 36.4457 45.5819 -Georgia_Bold.ttf 34 . 11.2741 11.2741 18 W -30.5584 68.0276 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 19 s -19.3775 25.8621 30.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 20 c -19.1138 28.9212 30.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 21 u -19.2044 38.2100 30.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 22 3 -21.5466 32.5259 42.2500 -Georgia_Bold.ttf 34 . 11.2741 11.2741 23 ~ -12.4463 32.5497 12.2181 -Georgia_Bold.ttf 34 . 11.2741 11.2741 24 # -26.4457 32.2532 36.4457 -Georgia_Bold.ttf 34 . 11.2741 11.2741 25 O -31.6263 43.5511 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 26 ` -34.4366 15.1940 12.8060 -Georgia_Bold.ttf 34 . 11.2741 11.2741 27 @ -29.0233 47.4709 48.6411 -Georgia_Bold.ttf 34 . 11.2741 11.2741 28 F -30.5713 35.9650 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 29 S -31.4528 33.7437 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 30 p -19.1925 35.8397 42.0000 -Georgia_Bold.ttf 34 . 11.2741 11.2741 31 “ -32.9206 25.5049 20.0578 -Georgia_Bold.ttf 34 . 11.2741 11.2741 32 % -31.6556 46.1460 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 33 £ -31.7440 33.4471 41.6621 -Georgia_Bold.ttf 34 . 11.2741 11.2741 34 . -0.1347 11.2741 11.2741 -Georgia_Bold.ttf 34 . 11.2741 11.2741 35 2 -21.6785 30.6653 31.6891 -Georgia_Bold.ttf 34 . 11.2741 11.2741 36 5 -21.6089 31.3319 42.2500 -Georgia_Bold.ttf 34 . 11.2741 11.2741 37 m -18.9878 57.1474 29.1940 -Georgia_Bold.ttf 34 . 11.2741 11.2741 38 V -30.4621 47.4471 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 39 6 -31.3692 32.2997 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 40 w -17.9282 50.4457 28.0000 -Georgia_Bold.ttf 34 . 11.2741 11.2741 41 T -30.5492 38.0802 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 42 M -30.6597 56.5455 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 43 G -31.5119 45.5865 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 44 b -34.2137 35.7325 45.9198 -Georgia_Bold.ttf 34 . 11.2741 11.2741 45 9 -21.4777 32.6330 42.3571 -Georgia_Bold.ttf 34 . 11.2741 11.2741 46 ; -17.9932 11.5049 39.3813 -Georgia_Bold.ttf 34 . 11.2741 11.2741 47 D -30.3417 44.3879 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 48 L -30.3365 38.0196 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 49 y -17.9940 35.2710 40.8060 -Georgia_Bold.ttf 34 . 11.2741 11.2741 50 ‘ -32.9442 11.5049 20.0578 -Georgia_Bold.ttf 34 . 11.2741 11.2741 51 \ -33.1106 24.9408 55.3288 -Georgia_Bold.ttf 34 . 11.2741 11.2741 52 R -30.2078 46.2759 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 53 < -22.3387 28.2500 32.5259 -Georgia_Bold.ttf 34 . 11.2741 11.2741 54 4 -21.8586 34.6684 42.2500 -Georgia_Bold.ttf 34 . 11.2741 11.2741 55 8 -31.8016 33.3865 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 56 0 -21.7761 34.6876 32.8830 -Georgia_Bold.ttf 34 . 11.2741 11.2741 57 A -30.4431 46.9902 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 58 E -30.4879 38.6908 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 59 B -30.2989 40.1348 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 60 v -17.9198 35.5017 28.0000 -Georgia_Bold.ttf 34 . 11.2741 11.2741 61 k -34.3333 37.9968 44.3879 -Georgia_Bold.ttf 34 . 11.2741 11.2741 62 J -30.4789 33.3235 41.6621 -Georgia_Bold.ttf 34 . 11.2741 11.2741 63 U -30.3855 46.9856 41.6621 -Georgia_Bold.ttf 34 . 11.2741 11.2741 64 j -34.7084 22.1730 57.6747 -Georgia_Bold.ttf 34 . 11.2741 11.2741 65 ( -33.0213 20.7483 52.5609 -Georgia_Bold.ttf 34 . 11.2741 11.2741 66 7 -20.3797 30.0308 41.0560 -Georgia_Bold.ttf 34 . 11.2741 11.2741 67 § -31.4857 26.2192 48.4103 -Georgia_Bold.ttf 34 . 11.2741 11.2741 68 $ -33.4369 31.2486 51.7468 -Georgia_Bold.ttf 34 . 11.2741 11.2741 69 € -31.4098 41.2868 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 70 / -33.1253 24.9408 55.3288 -Georgia_Bold.ttf 34 . 11.2741 11.2741 71 C -31.7954 39.1489 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 72 * -31.5606 23.6397 21.2290 -Georgia_Bold.ttf 34 . 11.2741 11.2741 73 ” -33.1957 25.5049 20.0578 -Georgia_Bold.ttf 34 . 11.2741 11.2741 74 ? -31.6561 26.4727 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 75 { -33.1495 25.1716 52.5609 -Georgia_Bold.ttf 34 . 11.2741 11.2741 76 } -33.2264 25.1716 52.5609 -Georgia_Bold.ttf 34 . 11.2741 11.2741 77 , 0.3513 11.5049 20.7483 -Georgia_Bold.ttf 34 . 11.2741 11.2741 78 I -30.3987 21.7342 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 79 ° -31.5819 19.4471 18.8830 -Georgia_Bold.ttf 34 . 11.2741 11.2741 80 K -30.3484 47.4699 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 81 H -30.3264 49.0437 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 82 q -20.1742 36.1968 43.1940 -Georgia_Bold.ttf 34 . 11.2741 11.2741 83 & -31.7373 44.6379 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 84 ’ -33.2009 11.5049 20.0578 -Georgia_Bold.ttf 34 . 11.2741 11.2741 85 [ -32.9980 18.8830 52.5609 -Georgia_Bold.ttf 34 . 11.2741 11.2741 86 - -8.5074 17.3319 6.3078 -Georgia_Bold.ttf 34 . 11.2741 11.2741 87 Y -30.2952 46.5865 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 88 Q -31.4512 43.5511 53.5241 -Georgia_Bold.ttf 34 . 11.2741 11.2741 89 " -32.9455 23.0291 20.0578 -Georgia_Bold.ttf 34 . 11.2741 11.2741 90 ! -31.5167 10.9408 42.8561 -Georgia_Bold.ttf 34 . 11.2741 11.2741 91 x -18.0409 34.3078 28.0000 -Georgia_Bold.ttf 34 . 11.2741 11.2741 92 ) -33.0012 20.7483 52.5609 -Georgia_Bold.ttf 34 . 11.2741 11.2741 93 = -14.4859 30.3879 16.2451 -Georgia_Bold.ttf 34 . 11.2741 11.2741 94 + -22.2951 31.9572 31.9572 -Georgia_Bold.ttf 34 . 11.2741 11.2741 95 X -30.4910 47.1138 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 96 » -18.0839 28.0000 25.5049 -Georgia_Bold.ttf 34 . 11.2741 11.2741 97 ' -33.0267 9.3670 20.0578 -Georgia_Bold.ttf 34 . 11.2741 11.2741 98 ¢ -26.2656 29.6975 45.0592 -Georgia_Bold.ttf 34 . 11.2741 11.2741 99 Z -30.4302 40.1348 40.4681 -Georgia_Bold.ttf 34 . 11.2741 11.2741 100 > -22.3299 28.2500 32.5259 -Georgia_Bold.ttf 34 . 11.2741 11.2741 101 ® -31.9575 50.4457 50.4457 -Georgia_Bold.ttf 34 . 11.2741 11.2741 102 © -31.8314 50.4457 50.4457 -Georgia_Bold.ttf 34 . 11.2741 11.2741 103 ] -33.2412 18.8830 52.5609 -Georgia_Bold.ttf 34 . 11.2741 11.2741 104 é -34.3078 30.1152 45.5819 -Georgia_Bold.ttf 34 . 11.2741 11.2741 105 z -17.9978 28.0000 28.0000 -Georgia_Bold.ttf 34 . 11.2741 11.2741 106 _ 15.0596 41.0560 2.7259 -Georgia_Bold.ttf 34 . 11.2741 11.2741 107 ¥ -30.3106 44.1379 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 1 t -4.7311 22.8029 37.7468 -Georgia_Bold.ttf 35 2 30.6653 31.6891 2 h -12.6997 38.3109 44.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 3 a 2.3329 31.8795 30.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 4 n 2.4824 38.5434 29.1940 -Georgia_Bold.ttf 35 2 30.6653 31.6891 5 P -8.7336 37.4968 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 6 o 2.3246 32.6103 30.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 7 e 2.5225 30.1152 30.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 8 : 3.7012 11.2741 29.1940 -Georgia_Bold.ttf 35 2 30.6653 31.6891 9 r 2.4451 29.1940 29.1940 -Georgia_Bold.ttf 35 2 30.6653 31.6891 10 l -12.6677 18.7339 44.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 11 i -13.3381 18.7339 44.8687 -Georgia_Bold.ttf 35 2 30.6653 31.6891 12 1 -0.1422 23.6397 31.6891 -Georgia_Bold.ttf 35 2 30.6653 31.6891 13 | -12.7591 4.6330 56.5227 -Georgia_Bold.ttf 35 2 30.6653 31.6891 14 N -8.8924 47.1785 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 15 f -13.0100 28.2500 44.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 16 g 2.6244 32.5497 42.0000 -Georgia_Bold.ttf 35 2 30.6653 31.6891 17 d -12.9336 36.4457 45.5819 -Georgia_Bold.ttf 35 2 30.6653 31.6891 18 W -8.5726 68.0276 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 19 s 2.7722 25.8621 30.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 20 c 2.1768 28.9212 30.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 21 u 2.2929 38.2100 30.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 22 3 0.2562 32.5259 42.2500 -Georgia_Bold.ttf 35 2 30.6653 31.6891 23 ~ 9.5106 32.5497 12.2181 -Georgia_Bold.ttf 35 2 30.6653 31.6891 24 # -4.7198 32.2532 36.4457 -Georgia_Bold.ttf 35 2 30.6653 31.6891 25 O -9.9692 43.5511 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 26 ` -12.8003 15.1940 12.8060 -Georgia_Bold.ttf 35 2 30.6653 31.6891 27 @ -7.6811 47.4709 48.6411 -Georgia_Bold.ttf 35 2 30.6653 31.6891 28 F -8.5059 35.9650 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 29 S -9.9477 33.7437 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 30 p 2.4553 35.8397 42.0000 -Georgia_Bold.ttf 35 2 30.6653 31.6891 31 “ -11.5769 25.5049 20.0578 -Georgia_Bold.ttf 35 2 30.6653 31.6891 32 % -9.5560 46.1460 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 33 £ -9.9710 33.4471 41.6621 -Georgia_Bold.ttf 35 2 30.6653 31.6891 34 . 21.8154 11.2741 11.2741 -Georgia_Bold.ttf 35 2 30.6653 31.6891 35 2 -0.0801 30.6653 31.6891 -Georgia_Bold.ttf 35 2 30.6653 31.6891 36 5 -0.0149 31.3319 42.2500 -Georgia_Bold.ttf 35 2 30.6653 31.6891 37 m 2.4951 57.1474 29.1940 -Georgia_Bold.ttf 35 2 30.6653 31.6891 38 V -8.6967 47.4471 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 39 6 -9.9921 32.2997 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 40 w 3.4022 50.4457 28.0000 -Georgia_Bold.ttf 35 2 30.6653 31.6891 41 T -8.5010 38.0802 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 42 M -8.5223 56.5455 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 43 G -9.9267 45.5865 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 44 b -12.5354 35.7325 45.9198 -Georgia_Bold.ttf 35 2 30.6653 31.6891 45 9 -0.0890 32.6330 42.3571 -Georgia_Bold.ttf 35 2 30.6653 31.6891 46 ; 3.4680 11.5049 39.3813 -Georgia_Bold.ttf 35 2 30.6653 31.6891 47 D -8.8060 44.3879 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 48 L -8.8291 38.0196 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 49 y 3.9301 35.2710 40.8060 -Georgia_Bold.ttf 35 2 30.6653 31.6891 50 ‘ -11.5861 11.5049 20.0578 -Georgia_Bold.ttf 35 2 30.6653 31.6891 51 \ -11.4654 24.9408 55.3288 -Georgia_Bold.ttf 35 2 30.6653 31.6891 52 R -9.0027 46.2759 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 53 < -0.6535 28.2500 32.5259 -Georgia_Bold.ttf 35 2 30.6653 31.6891 54 4 0.0513 34.6684 42.2500 -Georgia_Bold.ttf 35 2 30.6653 31.6891 55 8 -10.0717 33.3865 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 56 0 0.2368 34.6876 32.8830 -Georgia_Bold.ttf 35 2 30.6653 31.6891 57 A -8.3664 46.9902 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 58 E -8.6573 38.6908 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 59 B -8.8073 40.1348 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 60 v 3.7509 35.5017 28.0000 -Georgia_Bold.ttf 35 2 30.6653 31.6891 61 k -12.6247 37.9968 44.3879 -Georgia_Bold.ttf 35 2 30.6653 31.6891 62 J -8.8751 33.3235 41.6621 -Georgia_Bold.ttf 35 2 30.6653 31.6891 63 U -8.8769 46.9856 41.6621 -Georgia_Bold.ttf 35 2 30.6653 31.6891 64 j -13.1418 22.1730 57.6747 -Georgia_Bold.ttf 35 2 30.6653 31.6891 65 ( -11.5168 20.7483 52.5609 -Georgia_Bold.ttf 35 2 30.6653 31.6891 66 7 1.3298 30.0308 41.0560 -Georgia_Bold.ttf 35 2 30.6653 31.6891 67 § -10.1523 26.2192 48.4103 -Georgia_Bold.ttf 35 2 30.6653 31.6891 68 $ -12.2851 31.2486 51.7468 -Georgia_Bold.ttf 35 2 30.6653 31.6891 69 € -10.2047 41.2868 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 70 / -11.5859 24.9408 55.3288 -Georgia_Bold.ttf 35 2 30.6653 31.6891 71 C -10.0590 39.1489 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 72 * -9.8633 23.6397 21.2290 -Georgia_Bold.ttf 35 2 30.6653 31.6891 73 ” -11.5579 25.5049 20.0578 -Georgia_Bold.ttf 35 2 30.6653 31.6891 74 ? -10.0346 26.4727 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 75 { -11.9190 25.1716 52.5609 -Georgia_Bold.ttf 35 2 30.6653 31.6891 76 } -11.4318 25.1716 52.5609 -Georgia_Bold.ttf 35 2 30.6653 31.6891 77 , 22.4009 11.5049 20.7483 -Georgia_Bold.ttf 35 2 30.6653 31.6891 78 I -8.6814 21.7342 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 79 ° -10.0699 19.4471 18.8830 -Georgia_Bold.ttf 35 2 30.6653 31.6891 80 K -8.9449 47.4699 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 81 H -8.5331 49.0437 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 82 q 1.4522 36.1968 43.1940 -Georgia_Bold.ttf 35 2 30.6653 31.6891 83 & -9.8079 44.6379 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 84 ’ -11.4409 11.5049 20.0578 -Georgia_Bold.ttf 35 2 30.6653 31.6891 85 [ -11.7170 18.8830 52.5609 -Georgia_Bold.ttf 35 2 30.6653 31.6891 86 - 13.0560 17.3319 6.3078 -Georgia_Bold.ttf 35 2 30.6653 31.6891 87 Y -8.5733 46.5865 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 88 Q -10.0973 43.5511 53.5241 -Georgia_Bold.ttf 35 2 30.6653 31.6891 89 " -11.4974 23.0291 20.0578 -Georgia_Bold.ttf 35 2 30.6653 31.6891 90 ! -9.9668 10.9408 42.8561 -Georgia_Bold.ttf 35 2 30.6653 31.6891 91 x 3.6474 34.3078 28.0000 -Georgia_Bold.ttf 35 2 30.6653 31.6891 92 ) -11.3442 20.7483 52.5609 -Georgia_Bold.ttf 35 2 30.6653 31.6891 93 = 7.0246 30.3879 16.2451 -Georgia_Bold.ttf 35 2 30.6653 31.6891 94 + -0.6410 31.9572 31.9572 -Georgia_Bold.ttf 35 2 30.6653 31.6891 95 X -8.8651 47.1138 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 96 » 2.9690 28.0000 25.5049 -Georgia_Bold.ttf 35 2 30.6653 31.6891 97 ' -11.6514 9.3670 20.0578 -Georgia_Bold.ttf 35 2 30.6653 31.6891 98 ¢ -4.4894 29.6975 45.0592 -Georgia_Bold.ttf 35 2 30.6653 31.6891 99 Z -8.5169 40.1348 40.4681 -Georgia_Bold.ttf 35 2 30.6653 31.6891 100 > -0.5626 28.2500 32.5259 -Georgia_Bold.ttf 35 2 30.6653 31.6891 101 ® -10.4054 50.4457 50.4457 -Georgia_Bold.ttf 35 2 30.6653 31.6891 102 © -10.1556 50.4457 50.4457 -Georgia_Bold.ttf 35 2 30.6653 31.6891 103 ] -11.6829 18.8830 52.5609 -Georgia_Bold.ttf 35 2 30.6653 31.6891 104 é -12.6051 30.1152 45.5819 -Georgia_Bold.ttf 35 2 30.6653 31.6891 105 z 3.8132 28.0000 28.0000 -Georgia_Bold.ttf 35 2 30.6653 31.6891 106 _ 36.8913 41.0560 2.7259 -Georgia_Bold.ttf 35 2 30.6653 31.6891 107 ¥ -8.6301 44.1379 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 1 t -4.9848 22.8029 37.7468 -Georgia_Bold.ttf 36 5 31.3319 42.2500 2 h -12.6803 38.3109 44.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 3 a 2.6057 31.8795 30.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 4 n 2.7225 38.5434 29.1940 -Georgia_Bold.ttf 36 5 31.3319 42.2500 5 P -8.7087 37.4968 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 6 o 2.4209 32.6103 30.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 7 e 2.0606 30.1152 30.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 8 : 3.3963 11.2741 29.1940 -Georgia_Bold.ttf 36 5 31.3319 42.2500 9 r 2.4308 29.1940 29.1940 -Georgia_Bold.ttf 36 5 31.3319 42.2500 10 l -12.8358 18.7339 44.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 11 i -12.9632 18.7339 44.8687 -Georgia_Bold.ttf 36 5 31.3319 42.2500 12 1 0.0325 23.6397 31.6891 -Georgia_Bold.ttf 36 5 31.3319 42.2500 13 | -12.6183 4.6330 56.5227 -Georgia_Bold.ttf 36 5 31.3319 42.2500 14 N -8.6123 47.1785 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 15 f -12.7147 28.2500 44.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 16 g 2.5368 32.5497 42.0000 -Georgia_Bold.ttf 36 5 31.3319 42.2500 17 d -12.5862 36.4457 45.5819 -Georgia_Bold.ttf 36 5 31.3319 42.2500 18 W -9.0852 68.0276 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 19 s 2.5405 25.8621 30.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 20 c 2.2806 28.9212 30.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 21 u 2.7841 38.2100 30.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 22 3 0.0841 32.5259 42.2500 -Georgia_Bold.ttf 36 5 31.3319 42.2500 23 ~ 9.1804 32.5497 12.2181 -Georgia_Bold.ttf 36 5 31.3319 42.2500 24 # -4.7067 32.2532 36.4457 -Georgia_Bold.ttf 36 5 31.3319 42.2500 25 O -9.9884 43.5511 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 26 ` -12.7852 15.1940 12.8060 -Georgia_Bold.ttf 36 5 31.3319 42.2500 27 @ -7.6436 47.4709 48.6411 -Georgia_Bold.ttf 36 5 31.3319 42.2500 28 F -8.6062 35.9650 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 29 S -9.8792 33.7437 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 30 p 2.6252 35.8397 42.0000 -Georgia_Bold.ttf 36 5 31.3319 42.2500 31 “ -11.3511 25.5049 20.0578 -Georgia_Bold.ttf 36 5 31.3319 42.2500 32 % -9.8544 46.1460 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 33 £ -10.0577 33.4471 41.6621 -Georgia_Bold.ttf 36 5 31.3319 42.2500 34 . 21.2507 11.2741 11.2741 -Georgia_Bold.ttf 36 5 31.3319 42.2500 35 2 0.0740 30.6653 31.6891 -Georgia_Bold.ttf 36 5 31.3319 42.2500 36 5 0.1683 31.3319 42.2500 -Georgia_Bold.ttf 36 5 31.3319 42.2500 37 m 2.6700 57.1474 29.1940 -Georgia_Bold.ttf 36 5 31.3319 42.2500 38 V -8.6632 47.4471 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 39 6 -10.2840 32.2997 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 40 w 3.6522 50.4457 28.0000 -Georgia_Bold.ttf 36 5 31.3319 42.2500 41 T -9.0597 38.0802 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 42 M -8.6610 56.5455 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 43 G -9.8378 45.5865 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 44 b -12.5176 35.7325 45.9198 -Georgia_Bold.ttf 36 5 31.3319 42.2500 45 9 -0.0685 32.6330 42.3571 -Georgia_Bold.ttf 36 5 31.3319 42.2500 46 ; 3.6159 11.5049 39.3813 -Georgia_Bold.ttf 36 5 31.3319 42.2500 47 D -8.3344 44.3879 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 48 L -8.2172 38.0196 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 49 y 3.5001 35.2710 40.8060 -Georgia_Bold.ttf 36 5 31.3319 42.2500 50 ‘ -11.3793 11.5049 20.0578 -Georgia_Bold.ttf 36 5 31.3319 42.2500 51 \ -11.4102 24.9408 55.3288 -Georgia_Bold.ttf 36 5 31.3319 42.2500 52 R -8.6120 46.2759 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 53 < -0.9664 28.2500 32.5259 -Georgia_Bold.ttf 36 5 31.3319 42.2500 54 4 0.0022 34.6684 42.2500 -Georgia_Bold.ttf 36 5 31.3319 42.2500 55 8 -10.0671 33.3865 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 56 0 0.0667 34.6876 32.8830 -Georgia_Bold.ttf 36 5 31.3319 42.2500 57 A -8.9551 46.9902 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 58 E -8.8874 38.6908 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 59 B -8.8118 40.1348 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 60 v 3.5877 35.5017 28.0000 -Georgia_Bold.ttf 36 5 31.3319 42.2500 61 k -12.6604 37.9968 44.3879 -Georgia_Bold.ttf 36 5 31.3319 42.2500 62 J -9.0028 33.3235 41.6621 -Georgia_Bold.ttf 36 5 31.3319 42.2500 63 U -9.0046 46.9856 41.6621 -Georgia_Bold.ttf 36 5 31.3319 42.2500 64 j -13.0644 22.1730 57.6747 -Georgia_Bold.ttf 36 5 31.3319 42.2500 65 ( -11.1992 20.7483 52.5609 -Georgia_Bold.ttf 36 5 31.3319 42.2500 66 7 0.8603 30.0308 41.0560 -Georgia_Bold.ttf 36 5 31.3319 42.2500 67 § -9.7846 26.2192 48.4103 -Georgia_Bold.ttf 36 5 31.3319 42.2500 68 $ -11.9842 31.2486 51.7468 -Georgia_Bold.ttf 36 5 31.3319 42.2500 69 € -9.6994 41.2868 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 70 / -11.6391 24.9408 55.3288 -Georgia_Bold.ttf 36 5 31.3319 42.2500 71 C -9.6950 39.1489 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 72 * -9.9401 23.6397 21.2290 -Georgia_Bold.ttf 36 5 31.3319 42.2500 73 ” -11.4079 25.5049 20.0578 -Georgia_Bold.ttf 36 5 31.3319 42.2500 74 ? -10.0147 26.4727 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 75 { -11.3202 25.1716 52.5609 -Georgia_Bold.ttf 36 5 31.3319 42.2500 76 } -11.5261 25.1716 52.5609 -Georgia_Bold.ttf 36 5 31.3319 42.2500 77 , 22.0853 11.5049 20.7483 -Georgia_Bold.ttf 36 5 31.3319 42.2500 78 I -8.7266 21.7342 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 79 ° -10.0488 19.4471 18.8830 -Georgia_Bold.ttf 36 5 31.3319 42.2500 80 K -8.5612 47.4699 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 81 H -8.8654 49.0437 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 82 q 1.3130 36.1968 43.1940 -Georgia_Bold.ttf 36 5 31.3319 42.2500 83 & -10.0703 44.6379 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 84 ’ -11.3210 11.5049 20.0578 -Georgia_Bold.ttf 36 5 31.3319 42.2500 85 [ -11.6745 18.8830 52.5609 -Georgia_Bold.ttf 36 5 31.3319 42.2500 86 - 13.1824 17.3319 6.3078 -Georgia_Bold.ttf 36 5 31.3319 42.2500 87 Y -8.4312 46.5865 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 88 Q -10.2923 43.5511 53.5241 -Georgia_Bold.ttf 36 5 31.3319 42.2500 89 " -11.8894 23.0291 20.0578 -Georgia_Bold.ttf 36 5 31.3319 42.2500 90 ! -9.8776 10.9408 42.8561 -Georgia_Bold.ttf 36 5 31.3319 42.2500 91 x 3.8511 34.3078 28.0000 -Georgia_Bold.ttf 36 5 31.3319 42.2500 92 ) -11.6111 20.7483 52.5609 -Georgia_Bold.ttf 36 5 31.3319 42.2500 93 = 7.2107 30.3879 16.2451 -Georgia_Bold.ttf 36 5 31.3319 42.2500 94 + -0.5227 31.9572 31.9572 -Georgia_Bold.ttf 36 5 31.3319 42.2500 95 X -9.0281 47.1138 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 96 » 3.6978 28.0000 25.5049 -Georgia_Bold.ttf 36 5 31.3319 42.2500 97 ' -11.2696 9.3670 20.0578 -Georgia_Bold.ttf 36 5 31.3319 42.2500 98 ¢ -4.6747 29.6975 45.0592 -Georgia_Bold.ttf 36 5 31.3319 42.2500 99 Z -8.8180 40.1348 40.4681 -Georgia_Bold.ttf 36 5 31.3319 42.2500 100 > -1.0597 28.2500 32.5259 -Georgia_Bold.ttf 36 5 31.3319 42.2500 101 ® -10.3096 50.4457 50.4457 -Georgia_Bold.ttf 36 5 31.3319 42.2500 102 © -10.5670 50.4457 50.4457 -Georgia_Bold.ttf 36 5 31.3319 42.2500 103 ] -11.6375 18.8830 52.5609 -Georgia_Bold.ttf 36 5 31.3319 42.2500 104 é -12.7333 30.1152 45.5819 -Georgia_Bold.ttf 36 5 31.3319 42.2500 105 z 3.6627 28.0000 28.0000 -Georgia_Bold.ttf 36 5 31.3319 42.2500 106 _ 36.6311 41.0560 2.7259 -Georgia_Bold.ttf 36 5 31.3319 42.2500 107 ¥ -8.5747 44.1379 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 1 t -7.4266 22.8029 37.7468 -Georgia_Bold.ttf 37 m 57.1474 29.1940 2 h -15.4140 38.3109 44.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 3 a -0.0422 31.8795 30.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 4 n 0.1592 38.5434 29.1940 -Georgia_Bold.ttf 37 m 57.1474 29.1940 5 P -11.1835 37.4968 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 6 o 0.2716 32.6103 30.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 7 e -0.5639 30.1152 30.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 8 : 1.1120 11.2741 29.1940 -Georgia_Bold.ttf 37 m 57.1474 29.1940 9 r 0.2687 29.1940 29.1940 -Georgia_Bold.ttf 37 m 57.1474 29.1940 10 l -15.2240 18.7339 44.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 11 i -16.2095 18.7339 44.8687 -Georgia_Bold.ttf 37 m 57.1474 29.1940 12 1 -2.6687 23.6397 31.6891 -Georgia_Bold.ttf 37 m 57.1474 29.1940 13 | -15.1394 4.6330 56.5227 -Georgia_Bold.ttf 37 m 57.1474 29.1940 14 N -11.1317 47.1785 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 15 f -15.4461 28.2500 44.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 16 g -0.3358 32.5497 42.0000 -Georgia_Bold.ttf 37 m 57.1474 29.1940 17 d -15.2426 36.4457 45.5819 -Georgia_Bold.ttf 37 m 57.1474 29.1940 18 W -10.8716 68.0276 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 19 s 0.2836 25.8621 30.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 20 c 0.1449 28.9212 30.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 21 u 0.2516 38.2100 30.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 22 3 -2.5007 32.5259 42.2500 -Georgia_Bold.ttf 37 m 57.1474 29.1940 23 ~ 7.3335 32.5497 12.2181 -Georgia_Bold.ttf 37 m 57.1474 29.1940 24 # -7.0762 32.2532 36.4457 -Georgia_Bold.ttf 37 m 57.1474 29.1940 25 O -12.9260 43.5511 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 26 ` -15.3875 15.1940 12.8060 -Georgia_Bold.ttf 37 m 57.1474 29.1940 27 @ -9.7392 47.4709 48.6411 -Georgia_Bold.ttf 37 m 57.1474 29.1940 28 F -11.2011 35.9650 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 29 S -12.4678 33.7437 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 30 p -0.0431 35.8397 42.0000 -Georgia_Bold.ttf 37 m 57.1474 29.1940 31 “ -14.3540 25.5049 20.0578 -Georgia_Bold.ttf 37 m 57.1474 29.1940 32 % -12.3686 46.1460 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 33 £ -12.3695 33.4471 41.6621 -Georgia_Bold.ttf 37 m 57.1474 29.1940 34 . 18.9651 11.2741 11.2741 -Georgia_Bold.ttf 37 m 57.1474 29.1940 35 2 -3.0546 30.6653 31.6891 -Georgia_Bold.ttf 37 m 57.1474 29.1940 36 5 -2.2063 31.3319 42.2500 -Georgia_Bold.ttf 37 m 57.1474 29.1940 37 m -0.2487 57.1474 29.1940 -Georgia_Bold.ttf 37 m 57.1474 29.1940 38 V -11.2438 47.4471 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 39 6 -12.5709 32.2997 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 40 w 1.0787 50.4457 28.0000 -Georgia_Bold.ttf 37 m 57.1474 29.1940 41 T -11.2736 38.0802 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 42 M -11.5451 56.5455 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 43 G -12.2764 45.5865 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 44 b -14.9564 35.7325 45.9198 -Georgia_Bold.ttf 37 m 57.1474 29.1940 45 9 -2.5889 32.6330 42.3571 -Georgia_Bold.ttf 37 m 57.1474 29.1940 46 ; 1.5254 11.5049 39.3813 -Georgia_Bold.ttf 37 m 57.1474 29.1940 47 D -11.1047 44.3879 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 48 L -11.2776 38.0196 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 49 y 1.1190 35.2710 40.8060 -Georgia_Bold.ttf 37 m 57.1474 29.1940 50 ‘ -14.4928 11.5049 20.0578 -Georgia_Bold.ttf 37 m 57.1474 29.1940 51 \ -13.7932 24.9408 55.3288 -Georgia_Bold.ttf 37 m 57.1474 29.1940 52 R -11.4779 46.2759 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 53 < -3.7693 28.2500 32.5259 -Georgia_Bold.ttf 37 m 57.1474 29.1940 54 4 -2.4321 34.6684 42.2500 -Georgia_Bold.ttf 37 m 57.1474 29.1940 55 8 -12.2690 33.3865 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 56 0 -2.4559 34.6876 32.8830 -Georgia_Bold.ttf 37 m 57.1474 29.1940 57 A -11.3037 46.9902 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 58 E -11.4248 38.6908 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 59 B -11.3320 40.1348 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 60 v 1.1058 35.5017 28.0000 -Georgia_Bold.ttf 37 m 57.1474 29.1940 61 k -15.3233 37.9968 44.3879 -Georgia_Bold.ttf 37 m 57.1474 29.1940 62 J -10.9249 33.3235 41.6621 -Georgia_Bold.ttf 37 m 57.1474 29.1940 63 U -11.2802 46.9856 41.6621 -Georgia_Bold.ttf 37 m 57.1474 29.1940 64 j -15.4376 22.1730 57.6747 -Georgia_Bold.ttf 37 m 57.1474 29.1940 65 ( -14.4786 20.7483 52.5609 -Georgia_Bold.ttf 37 m 57.1474 29.1940 66 7 -1.1010 30.0308 41.0560 -Georgia_Bold.ttf 37 m 57.1474 29.1940 67 § -12.7738 26.2192 48.4103 -Georgia_Bold.ttf 37 m 57.1474 29.1940 68 $ -14.4874 31.2486 51.7468 -Georgia_Bold.ttf 37 m 57.1474 29.1940 69 € -12.2667 41.2868 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 70 / -14.4083 24.9408 55.3288 -Georgia_Bold.ttf 37 m 57.1474 29.1940 71 C -12.6522 39.1489 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 72 * -12.4154 23.6397 21.2290 -Georgia_Bold.ttf 37 m 57.1474 29.1940 73 ” -13.8966 25.5049 20.0578 -Georgia_Bold.ttf 37 m 57.1474 29.1940 74 ? -12.2674 26.4727 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 75 { -14.0297 25.1716 52.5609 -Georgia_Bold.ttf 37 m 57.1474 29.1940 76 } -14.4360 25.1716 52.5609 -Georgia_Bold.ttf 37 m 57.1474 29.1940 77 , 19.3393 11.5049 20.7483 -Georgia_Bold.ttf 37 m 57.1474 29.1940 78 I -11.3778 21.7342 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 79 ° -12.0896 19.4471 18.8830 -Georgia_Bold.ttf 37 m 57.1474 29.1940 80 K -10.9846 47.4699 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 81 H -11.1895 49.0437 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 82 q -1.1584 36.1968 43.1940 -Georgia_Bold.ttf 37 m 57.1474 29.1940 83 & -12.4283 44.6379 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 84 ’ -14.1417 11.5049 20.0578 -Georgia_Bold.ttf 37 m 57.1474 29.1940 85 [ -14.3407 18.8830 52.5609 -Georgia_Bold.ttf 37 m 57.1474 29.1940 86 - 10.9970 17.3319 6.3078 -Georgia_Bold.ttf 37 m 57.1474 29.1940 87 Y -11.3696 46.5865 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 88 Q -12.5939 43.5511 53.5241 -Georgia_Bold.ttf 37 m 57.1474 29.1940 89 " -13.3387 23.0291 20.0578 -Georgia_Bold.ttf 37 m 57.1474 29.1940 90 ! -12.5420 10.9408 42.8561 -Georgia_Bold.ttf 37 m 57.1474 29.1940 91 x 1.4414 34.3078 28.0000 -Georgia_Bold.ttf 37 m 57.1474 29.1940 92 ) -14.1004 20.7483 52.5609 -Georgia_Bold.ttf 37 m 57.1474 29.1940 93 = 4.7413 30.3879 16.2451 -Georgia_Bold.ttf 37 m 57.1474 29.1940 94 + -2.9381 31.9572 31.9572 -Georgia_Bold.ttf 37 m 57.1474 29.1940 95 X -11.0596 47.1138 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 96 » 0.5581 28.0000 25.5049 -Georgia_Bold.ttf 37 m 57.1474 29.1940 97 ' -14.1137 9.3670 20.0578 -Georgia_Bold.ttf 37 m 57.1474 29.1940 98 ¢ -6.9179 29.6975 45.0592 -Georgia_Bold.ttf 37 m 57.1474 29.1940 99 Z -11.7118 40.1348 40.4681 -Georgia_Bold.ttf 37 m 57.1474 29.1940 100 > -3.3678 28.2500 32.5259 -Georgia_Bold.ttf 37 m 57.1474 29.1940 101 ® -12.6164 50.4457 50.4457 -Georgia_Bold.ttf 37 m 57.1474 29.1940 102 © -12.5487 50.4457 50.4457 -Georgia_Bold.ttf 37 m 57.1474 29.1940 103 ] -13.3375 18.8830 52.5609 -Georgia_Bold.ttf 37 m 57.1474 29.1940 104 é -15.1894 30.1152 45.5819 -Georgia_Bold.ttf 37 m 57.1474 29.1940 105 z 1.3547 28.0000 28.0000 -Georgia_Bold.ttf 37 m 57.1474 29.1940 106 _ 34.7279 41.0560 2.7259 -Georgia_Bold.ttf 37 m 57.1474 29.1940 107 ¥ -11.1075 44.1379 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 1 t 3.9129 22.8029 37.7468 -Georgia_Bold.ttf 38 V 47.4471 40.4681 2 h -3.8746 38.3109 44.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 3 a 11.1602 31.8795 30.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 4 n 11.0827 38.5434 29.1940 -Georgia_Bold.ttf 38 V 47.4471 40.4681 5 P 0.1116 37.4968 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 6 o 11.3139 32.6103 30.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 7 e 11.4726 30.1152 30.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 8 : 12.5469 11.2741 29.1940 -Georgia_Bold.ttf 38 V 47.4471 40.4681 9 r 11.0023 29.1940 29.1940 -Georgia_Bold.ttf 38 V 47.4471 40.4681 10 l -4.1018 18.7339 44.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 11 i -4.1011 18.7339 44.8687 -Georgia_Bold.ttf 38 V 47.4471 40.4681 12 1 8.7199 23.6397 31.6891 -Georgia_Bold.ttf 38 V 47.4471 40.4681 13 | -4.3739 4.6330 56.5227 -Georgia_Bold.ttf 38 V 47.4471 40.4681 14 N -0.1750 47.1785 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 15 f -3.9790 28.2500 44.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 16 g 11.1180 32.5497 42.0000 -Georgia_Bold.ttf 38 V 47.4471 40.4681 17 d -3.8557 36.4457 45.5819 -Georgia_Bold.ttf 38 V 47.4471 40.4681 18 W -0.2341 68.0276 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 19 s 11.1514 25.8621 30.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 20 c 10.9190 28.9212 30.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 21 u 11.1198 38.2100 30.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 22 3 9.0449 32.5259 42.2500 -Georgia_Bold.ttf 38 V 47.4471 40.4681 23 ~ 18.2015 32.5497 12.2181 -Georgia_Bold.ttf 38 V 47.4471 40.4681 24 # 4.1859 32.2532 36.4457 -Georgia_Bold.ttf 38 V 47.4471 40.4681 25 O -0.9197 43.5511 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 26 ` -4.5452 15.1940 12.8060 -Georgia_Bold.ttf 38 V 47.4471 40.4681 27 @ 1.4303 47.4709 48.6411 -Georgia_Bold.ttf 38 V 47.4471 40.4681 28 F 0.1487 35.9650 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 29 S -1.0961 33.7437 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 30 p 11.4151 35.8397 42.0000 -Georgia_Bold.ttf 38 V 47.4471 40.4681 31 “ -2.9488 25.5049 20.0578 -Georgia_Bold.ttf 38 V 47.4471 40.4681 32 % -1.4816 46.1460 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 33 £ -1.0966 33.4471 41.6621 -Georgia_Bold.ttf 38 V 47.4471 40.4681 34 . 30.7276 11.2741 11.2741 -Georgia_Bold.ttf 38 V 47.4471 40.4681 35 2 8.9912 30.6653 31.6891 -Georgia_Bold.ttf 38 V 47.4471 40.4681 36 5 8.7639 31.3319 42.2500 -Georgia_Bold.ttf 38 V 47.4471 40.4681 37 m 11.3855 57.1474 29.1940 -Georgia_Bold.ttf 38 V 47.4471 40.4681 38 V -0.2900 47.4471 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 39 6 -1.1464 32.2997 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 40 w 12.4681 50.4457 28.0000 -Georgia_Bold.ttf 38 V 47.4471 40.4681 41 T -0.1158 38.0802 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 42 M 0.1879 56.5455 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 43 G -1.4233 45.5865 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 44 b -4.1273 35.7325 45.9198 -Georgia_Bold.ttf 38 V 47.4471 40.4681 45 9 8.6389 32.6330 42.3571 -Georgia_Bold.ttf 38 V 47.4471 40.4681 46 ; 12.6770 11.5049 39.3813 -Georgia_Bold.ttf 38 V 47.4471 40.4681 47 D 0.2696 44.3879 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 48 L -0.0110 38.0196 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 49 y 12.8246 35.2710 40.8060 -Georgia_Bold.ttf 38 V 47.4471 40.4681 50 ‘ -2.9673 11.5049 20.0578 -Georgia_Bold.ttf 38 V 47.4471 40.4681 51 \ -2.6306 24.9408 55.3288 -Georgia_Bold.ttf 38 V 47.4471 40.4681 52 R -0.0970 46.2759 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 53 < 8.0426 28.2500 32.5259 -Georgia_Bold.ttf 38 V 47.4471 40.4681 54 4 8.7473 34.6684 42.2500 -Georgia_Bold.ttf 38 V 47.4471 40.4681 55 8 -1.0870 33.3865 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 56 0 8.7372 34.6876 32.8830 -Georgia_Bold.ttf 38 V 47.4471 40.4681 57 A -0.1705 46.9902 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 58 E 0.0809 38.6908 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 59 B 0.0418 40.1348 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 60 v 12.2584 35.5017 28.0000 -Georgia_Bold.ttf 38 V 47.4471 40.4681 61 k -3.9591 37.9968 44.3879 -Georgia_Bold.ttf 38 V 47.4471 40.4681 62 J 0.0938 33.3235 41.6621 -Georgia_Bold.ttf 38 V 47.4471 40.4681 63 U -0.0755 46.9856 41.6621 -Georgia_Bold.ttf 38 V 47.4471 40.4681 64 j -4.4869 22.1730 57.6747 -Georgia_Bold.ttf 38 V 47.4471 40.4681 65 ( -2.9033 20.7483 52.5609 -Georgia_Bold.ttf 38 V 47.4471 40.4681 66 7 9.7568 30.0308 41.0560 -Georgia_Bold.ttf 38 V 47.4471 40.4681 67 § -1.3937 26.2192 48.4103 -Georgia_Bold.ttf 38 V 47.4471 40.4681 68 $ -3.1374 31.2486 51.7468 -Georgia_Bold.ttf 38 V 47.4471 40.4681 69 € -1.2598 41.2868 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 70 / -2.8707 24.9408 55.3288 -Georgia_Bold.ttf 38 V 47.4471 40.4681 71 C -1.3701 39.1489 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 72 * -1.4364 23.6397 21.2290 -Georgia_Bold.ttf 38 V 47.4471 40.4681 73 ” -2.5782 25.5049 20.0578 -Georgia_Bold.ttf 38 V 47.4471 40.4681 74 ? -1.0268 26.4727 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 75 { -2.9613 25.1716 52.5609 -Georgia_Bold.ttf 38 V 47.4471 40.4681 76 } -2.4108 25.1716 52.5609 -Georgia_Bold.ttf 38 V 47.4471 40.4681 77 , 31.3563 11.5049 20.7483 -Georgia_Bold.ttf 38 V 47.4471 40.4681 78 I 0.1908 21.7342 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 79 ° -1.0220 19.4471 18.8830 -Georgia_Bold.ttf 38 V 47.4471 40.4681 80 K -0.0731 47.4699 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 81 H -0.0769 49.0437 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 82 q 9.7788 36.1968 43.1940 -Georgia_Bold.ttf 38 V 47.4471 40.4681 83 & -1.4112 44.6379 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 84 ’ -2.8441 11.5049 20.0578 -Georgia_Bold.ttf 38 V 47.4471 40.4681 85 [ -2.7267 18.8830 52.5609 -Georgia_Bold.ttf 38 V 47.4471 40.4681 86 - 21.5345 17.3319 6.3078 -Georgia_Bold.ttf 38 V 47.4471 40.4681 87 Y 0.1347 46.5865 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 88 Q -1.4013 43.5511 53.5241 -Georgia_Bold.ttf 38 V 47.4471 40.4681 89 " -2.8361 23.0291 20.0578 -Georgia_Bold.ttf 38 V 47.4471 40.4681 90 ! -1.3809 10.9408 42.8561 -Georgia_Bold.ttf 38 V 47.4471 40.4681 91 x 12.5289 34.3078 28.0000 -Georgia_Bold.ttf 38 V 47.4471 40.4681 92 ) -2.6618 20.7483 52.5609 -Georgia_Bold.ttf 38 V 47.4471 40.4681 93 = 15.5636 30.3879 16.2451 -Georgia_Bold.ttf 38 V 47.4471 40.4681 94 + 8.1074 31.9572 31.9572 -Georgia_Bold.ttf 38 V 47.4471 40.4681 95 X -0.0293 47.1138 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 96 » 12.0102 28.0000 25.5049 -Georgia_Bold.ttf 38 V 47.4471 40.4681 97 ' -2.7235 9.3670 20.0578 -Georgia_Bold.ttf 38 V 47.4471 40.4681 98 ¢ 4.1662 29.6975 45.0592 -Georgia_Bold.ttf 38 V 47.4471 40.4681 99 Z -0.1941 40.1348 40.4681 -Georgia_Bold.ttf 38 V 47.4471 40.4681 100 > 7.9450 28.2500 32.5259 -Georgia_Bold.ttf 38 V 47.4471 40.4681 101 ® -0.8399 50.4457 50.4457 -Georgia_Bold.ttf 38 V 47.4471 40.4681 102 © -1.7439 50.4457 50.4457 -Georgia_Bold.ttf 38 V 47.4471 40.4681 103 ] -2.4132 18.8830 52.5609 -Georgia_Bold.ttf 38 V 47.4471 40.4681 104 é -4.1465 30.1152 45.5819 -Georgia_Bold.ttf 38 V 47.4471 40.4681 105 z 12.4237 28.0000 28.0000 -Georgia_Bold.ttf 38 V 47.4471 40.4681 106 _ 45.4920 41.0560 2.7259 -Georgia_Bold.ttf 38 V 47.4471 40.4681 107 ¥ 0.2118 44.1379 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 1 t 4.7626 22.8029 37.7468 -Georgia_Bold.ttf 39 6 32.2997 42.8561 2 h -2.7843 38.3109 44.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 3 a 12.5447 31.8795 30.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 4 n 12.1632 38.5434 29.1940 -Georgia_Bold.ttf 39 6 32.2997 42.8561 5 P 1.0996 37.4968 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 6 o 12.5528 32.6103 30.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 7 e 12.6715 30.1152 30.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 8 : 13.5379 11.2741 29.1940 -Georgia_Bold.ttf 39 6 32.2997 42.8561 9 r 12.6194 29.1940 29.1940 -Georgia_Bold.ttf 39 6 32.2997 42.8561 10 l -2.6966 18.7339 44.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 11 i -3.2800 18.7339 44.8687 -Georgia_Bold.ttf 39 6 32.2997 42.8561 12 1 9.9185 23.6397 31.6891 -Georgia_Bold.ttf 39 6 32.2997 42.8561 13 | -2.7565 4.6330 56.5227 -Georgia_Bold.ttf 39 6 32.2997 42.8561 14 N 1.3566 47.1785 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 15 f -2.7657 28.2500 44.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 16 g 12.4579 32.5497 42.0000 -Georgia_Bold.ttf 39 6 32.2997 42.8561 17 d -2.7622 36.4457 45.5819 -Georgia_Bold.ttf 39 6 32.2997 42.8561 18 W 1.1848 68.0276 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 19 s 12.6856 25.8621 30.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 20 c 12.3324 28.9212 30.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 21 u 12.7189 38.2100 30.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 22 3 10.0986 32.5259 42.2500 -Georgia_Bold.ttf 39 6 32.2997 42.8561 23 ~ 19.2965 32.5497 12.2181 -Georgia_Bold.ttf 39 6 32.2997 42.8561 24 # 5.3656 32.2532 36.4457 -Georgia_Bold.ttf 39 6 32.2997 42.8561 25 O -0.0895 43.5511 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 26 ` -2.3146 15.1940 12.8060 -Georgia_Bold.ttf 39 6 32.2997 42.8561 27 @ 2.4687 47.4709 48.6411 -Georgia_Bold.ttf 39 6 32.2997 42.8561 28 F 1.1402 35.9650 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 29 S -0.2826 33.7437 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 30 p 12.1890 35.8397 42.0000 -Georgia_Bold.ttf 39 6 32.2997 42.8561 31 “ -1.8101 25.5049 20.0578 -Georgia_Bold.ttf 39 6 32.2997 42.8561 32 % -0.1252 46.1460 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 33 £ 0.0296 33.4471 41.6621 -Georgia_Bold.ttf 39 6 32.2997 42.8561 34 . 31.6317 11.2741 11.2741 -Georgia_Bold.ttf 39 6 32.2997 42.8561 35 2 10.0357 30.6653 31.6891 -Georgia_Bold.ttf 39 6 32.2997 42.8561 36 5 9.7423 31.3319 42.2500 -Georgia_Bold.ttf 39 6 32.2997 42.8561 37 m 12.2309 57.1474 29.1940 -Georgia_Bold.ttf 39 6 32.2997 42.8561 38 V 1.2362 47.4471 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 39 6 0.0242 32.2997 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 40 w 13.9734 50.4457 28.0000 -Georgia_Bold.ttf 39 6 32.2997 42.8561 41 T 1.1464 38.0802 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 42 M 1.1902 56.5455 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 43 G 0.0207 45.5865 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 44 b -2.6457 35.7325 45.9198 -Georgia_Bold.ttf 39 6 32.2997 42.8561 45 9 10.0730 32.6330 42.3571 -Georgia_Bold.ttf 39 6 32.2997 42.8561 46 ; 13.8706 11.5049 39.3813 -Georgia_Bold.ttf 39 6 32.2997 42.8561 47 D 1.1017 44.3879 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 48 L 1.0883 38.0196 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 49 y 13.6810 35.2710 40.8060 -Georgia_Bold.ttf 39 6 32.2997 42.8561 50 ‘ -1.5741 11.5049 20.0578 -Georgia_Bold.ttf 39 6 32.2997 42.8561 51 \ -1.3937 24.9408 55.3288 -Georgia_Bold.ttf 39 6 32.2997 42.8561 52 R 1.2200 46.2759 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 53 < 9.3397 28.2500 32.5259 -Georgia_Bold.ttf 39 6 32.2997 42.8561 54 4 10.0800 34.6684 42.2500 -Georgia_Bold.ttf 39 6 32.2997 42.8561 55 8 -0.1088 33.3865 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 56 0 10.0569 34.6876 32.8830 -Georgia_Bold.ttf 39 6 32.2997 42.8561 57 A 1.3112 46.9902 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 58 E 1.1268 38.6908 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 59 B 0.9985 40.1348 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 60 v 13.6968 35.5017 28.0000 -Georgia_Bold.ttf 39 6 32.2997 42.8561 61 k -2.7259 37.9968 44.3879 -Georgia_Bold.ttf 39 6 32.2997 42.8561 62 J 1.1380 33.3235 41.6621 -Georgia_Bold.ttf 39 6 32.2997 42.8561 63 U 0.7525 46.9856 41.6621 -Georgia_Bold.ttf 39 6 32.2997 42.8561 64 j -3.1664 22.1730 57.6747 -Georgia_Bold.ttf 39 6 32.2997 42.8561 65 ( -1.6456 20.7483 52.5609 -Georgia_Bold.ttf 39 6 32.2997 42.8561 66 7 11.1613 30.0308 41.0560 -Georgia_Bold.ttf 39 6 32.2997 42.8561 67 § 0.3571 26.2192 48.4103 -Georgia_Bold.ttf 39 6 32.2997 42.8561 68 $ -1.9227 31.2486 51.7468 -Georgia_Bold.ttf 39 6 32.2997 42.8561 69 € 0.2412 41.2868 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 70 / -1.7376 24.9408 55.3288 -Georgia_Bold.ttf 39 6 32.2997 42.8561 71 C 0.0158 39.1489 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 72 * -0.1326 23.6397 21.2290 -Georgia_Bold.ttf 39 6 32.2997 42.8561 73 ” -1.6110 25.5049 20.0578 -Georgia_Bold.ttf 39 6 32.2997 42.8561 74 ? -0.2470 26.4727 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 75 { -1.5268 25.1716 52.5609 -Georgia_Bold.ttf 39 6 32.2997 42.8561 76 } -1.6603 25.1716 52.5609 -Georgia_Bold.ttf 39 6 32.2997 42.8561 77 , 32.3974 11.5049 20.7483 -Georgia_Bold.ttf 39 6 32.2997 42.8561 78 I 1.0055 21.7342 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 79 ° 0.1396 19.4471 18.8830 -Georgia_Bold.ttf 39 6 32.2997 42.8561 80 K 1.3346 47.4699 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 81 H 1.3605 49.0437 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 82 q 11.3091 36.1968 43.1940 -Georgia_Bold.ttf 39 6 32.2997 42.8561 83 & -0.2788 44.6379 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 84 ’ -1.6198 11.5049 20.0578 -Georgia_Bold.ttf 39 6 32.2997 42.8561 85 [ -1.8317 18.8830 52.5609 -Georgia_Bold.ttf 39 6 32.2997 42.8561 86 - 23.3353 17.3319 6.3078 -Georgia_Bold.ttf 39 6 32.2997 42.8561 87 Y 1.1803 46.5865 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 88 Q -0.1728 43.5511 53.5241 -Georgia_Bold.ttf 39 6 32.2997 42.8561 89 " -1.7172 23.0291 20.0578 -Georgia_Bold.ttf 39 6 32.2997 42.8561 90 ! 0.1645 10.9408 42.8561 -Georgia_Bold.ttf 39 6 32.2997 42.8561 91 x 13.4672 34.3078 28.0000 -Georgia_Bold.ttf 39 6 32.2997 42.8561 92 ) -1.6152 20.7483 52.5609 -Georgia_Bold.ttf 39 6 32.2997 42.8561 93 = 16.8038 30.3879 16.2451 -Georgia_Bold.ttf 39 6 32.2997 42.8561 94 + 9.4059 31.9572 31.9572 -Georgia_Bold.ttf 39 6 32.2997 42.8561 95 X 1.3840 47.1138 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 96 » 13.5795 28.0000 25.5049 -Georgia_Bold.ttf 39 6 32.2997 42.8561 97 ' -1.6733 9.3670 20.0578 -Georgia_Bold.ttf 39 6 32.2997 42.8561 98 ¢ 5.2952 29.6975 45.0592 -Georgia_Bold.ttf 39 6 32.2997 42.8561 99 Z 1.0638 40.1348 40.4681 -Georgia_Bold.ttf 39 6 32.2997 42.8561 100 > 8.9634 28.2500 32.5259 -Georgia_Bold.ttf 39 6 32.2997 42.8561 101 ® -0.4191 50.4457 50.4457 -Georgia_Bold.ttf 39 6 32.2997 42.8561 102 © -0.1419 50.4457 50.4457 -Georgia_Bold.ttf 39 6 32.2997 42.8561 103 ] -1.6476 18.8830 52.5609 -Georgia_Bold.ttf 39 6 32.2997 42.8561 104 é -2.8416 30.1152 45.5819 -Georgia_Bold.ttf 39 6 32.2997 42.8561 105 z 13.4773 28.0000 28.0000 -Georgia_Bold.ttf 39 6 32.2997 42.8561 106 _ 46.8152 41.0560 2.7259 -Georgia_Bold.ttf 39 6 32.2997 42.8561 107 ¥ 1.1947 44.1379 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 1 t -8.4238 22.8029 37.7468 -Georgia_Bold.ttf 40 w 50.4457 28.0000 2 h -16.5463 38.3109 44.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 3 a -0.8857 31.8795 30.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 4 n -0.9783 38.5434 29.1940 -Georgia_Bold.ttf 40 w 50.4457 28.0000 5 P -12.4366 37.4968 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 6 o -1.3941 32.6103 30.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 7 e -1.4297 30.1152 30.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 8 : -0.0121 11.2741 29.1940 -Georgia_Bold.ttf 40 w 50.4457 28.0000 9 r -1.0656 29.1940 29.1940 -Georgia_Bold.ttf 40 w 50.4457 28.0000 10 l -16.4150 18.7339 44.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 11 i -16.4596 18.7339 44.8687 -Georgia_Bold.ttf 40 w 50.4457 28.0000 12 1 -3.7632 23.6397 31.6891 -Georgia_Bold.ttf 40 w 50.4457 28.0000 13 | -16.3880 4.6330 56.5227 -Georgia_Bold.ttf 40 w 50.4457 28.0000 14 N -12.2980 47.1785 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 15 f -16.2870 28.2500 44.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 16 g -1.1278 32.5497 42.0000 -Georgia_Bold.ttf 40 w 50.4457 28.0000 17 d -16.5038 36.4457 45.5819 -Georgia_Bold.ttf 40 w 50.4457 28.0000 18 W -12.5713 68.0276 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 19 s -1.3756 25.8621 30.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 20 c -0.9133 28.9212 30.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 21 u -1.3330 38.2100 30.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 22 3 -3.6962 32.5259 42.2500 -Georgia_Bold.ttf 40 w 50.4457 28.0000 23 ~ 5.4405 32.5497 12.2181 -Georgia_Bold.ttf 40 w 50.4457 28.0000 24 # -8.0897 32.2532 36.4457 -Georgia_Bold.ttf 40 w 50.4457 28.0000 25 O -13.8627 43.5511 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 26 ` -16.1172 15.1940 12.8060 -Georgia_Bold.ttf 40 w 50.4457 28.0000 27 @ -10.9890 47.4709 48.6411 -Georgia_Bold.ttf 40 w 50.4457 28.0000 28 F -12.3498 35.9650 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 29 S -13.6987 33.7437 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 30 p -1.3265 35.8397 42.0000 -Georgia_Bold.ttf 40 w 50.4457 28.0000 31 “ -15.0732 25.5049 20.0578 -Georgia_Bold.ttf 40 w 50.4457 28.0000 32 % -13.7183 46.1460 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 33 £ -13.4265 33.4471 41.6621 -Georgia_Bold.ttf 40 w 50.4457 28.0000 34 . 18.0860 11.2741 11.2741 -Georgia_Bold.ttf 40 w 50.4457 28.0000 35 2 -3.5111 30.6653 31.6891 -Georgia_Bold.ttf 40 w 50.4457 28.0000 36 5 -3.6200 31.3319 42.2500 -Georgia_Bold.ttf 40 w 50.4457 28.0000 37 m -0.8738 57.1474 29.1940 -Georgia_Bold.ttf 40 w 50.4457 28.0000 38 V -12.4463 47.4471 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 39 6 -13.6497 32.2997 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 40 w -0.0495 50.4457 28.0000 -Georgia_Bold.ttf 40 w 50.4457 28.0000 41 T -12.3705 38.0802 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 42 M -12.2852 56.5455 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 43 G -13.4342 45.5865 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 44 b -16.3737 35.7325 45.9198 -Georgia_Bold.ttf 40 w 50.4457 28.0000 45 9 -3.9326 32.6330 42.3571 -Georgia_Bold.ttf 40 w 50.4457 28.0000 46 ; 0.0524 11.5049 39.3813 -Georgia_Bold.ttf 40 w 50.4457 28.0000 47 D -12.5168 44.3879 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 48 L -12.7224 38.0196 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 49 y -0.3155 35.2710 40.8060 -Georgia_Bold.ttf 40 w 50.4457 28.0000 50 ‘ -14.9754 11.5049 20.0578 -Georgia_Bold.ttf 40 w 50.4457 28.0000 51 \ -14.9717 24.9408 55.3288 -Georgia_Bold.ttf 40 w 50.4457 28.0000 52 R -12.2802 46.2759 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 53 < -4.8394 28.2500 32.5259 -Georgia_Bold.ttf 40 w 50.4457 28.0000 54 4 -3.7587 34.6684 42.2500 -Georgia_Bold.ttf 40 w 50.4457 28.0000 55 8 -13.6807 33.3865 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 56 0 -3.6587 34.6876 32.8830 -Georgia_Bold.ttf 40 w 50.4457 28.0000 57 A -12.4622 46.9902 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 58 E -12.2500 38.6908 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 59 B -12.7673 40.1348 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 60 v -0.0634 35.5017 28.0000 -Georgia_Bold.ttf 40 w 50.4457 28.0000 61 k -16.6882 37.9968 44.3879 -Georgia_Bold.ttf 40 w 50.4457 28.0000 62 J -12.5511 33.3235 41.6621 -Georgia_Bold.ttf 40 w 50.4457 28.0000 63 U -12.3210 46.9856 41.6621 -Georgia_Bold.ttf 40 w 50.4457 28.0000 64 j -17.0332 22.1730 57.6747 -Georgia_Bold.ttf 40 w 50.4457 28.0000 65 ( -14.9826 20.7483 52.5609 -Georgia_Bold.ttf 40 w 50.4457 28.0000 66 7 -2.8198 30.0308 41.0560 -Georgia_Bold.ttf 40 w 50.4457 28.0000 67 § -13.2486 26.2192 48.4103 -Georgia_Bold.ttf 40 w 50.4457 28.0000 68 $ -15.4515 31.2486 51.7468 -Georgia_Bold.ttf 40 w 50.4457 28.0000 69 € -13.5944 41.2868 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 70 / -15.3857 24.9408 55.3288 -Georgia_Bold.ttf 40 w 50.4457 28.0000 71 C -13.4689 39.1489 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 72 * -13.7494 23.6397 21.2290 -Georgia_Bold.ttf 40 w 50.4457 28.0000 73 ” -14.7493 25.5049 20.0578 -Georgia_Bold.ttf 40 w 50.4457 28.0000 74 ? -14.0293 26.4727 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 75 { -15.0429 25.1716 52.5609 -Georgia_Bold.ttf 40 w 50.4457 28.0000 76 } -15.3697 25.1716 52.5609 -Georgia_Bold.ttf 40 w 50.4457 28.0000 77 , 18.6769 11.5049 20.7483 -Georgia_Bold.ttf 40 w 50.4457 28.0000 78 I -12.5606 21.7342 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 79 ° -13.7092 19.4471 18.8830 -Georgia_Bold.ttf 40 w 50.4457 28.0000 80 K -12.1550 47.4699 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 81 H -12.5345 49.0437 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 82 q -2.1054 36.1968 43.1940 -Georgia_Bold.ttf 40 w 50.4457 28.0000 83 & -13.8971 44.6379 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 84 ’ -15.2157 11.5049 20.0578 -Georgia_Bold.ttf 40 w 50.4457 28.0000 85 [ -15.1749 18.8830 52.5609 -Georgia_Bold.ttf 40 w 50.4457 28.0000 86 - 9.4411 17.3319 6.3078 -Georgia_Bold.ttf 40 w 50.4457 28.0000 87 Y -12.3449 46.5865 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 88 Q -13.4564 43.5511 53.5241 -Georgia_Bold.ttf 40 w 50.4457 28.0000 89 " -15.4696 23.0291 20.0578 -Georgia_Bold.ttf 40 w 50.4457 28.0000 90 ! -13.3661 10.9408 42.8561 -Georgia_Bold.ttf 40 w 50.4457 28.0000 91 x 0.2274 34.3078 28.0000 -Georgia_Bold.ttf 40 w 50.4457 28.0000 92 ) -15.1120 20.7483 52.5609 -Georgia_Bold.ttf 40 w 50.4457 28.0000 93 = 3.1667 30.3879 16.2451 -Georgia_Bold.ttf 40 w 50.4457 28.0000 94 + -4.2590 31.9572 31.9572 -Georgia_Bold.ttf 40 w 50.4457 28.0000 95 X -12.3256 47.1138 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 96 » -0.4767 28.0000 25.5049 -Georgia_Bold.ttf 40 w 50.4457 28.0000 97 ' -15.2923 9.3670 20.0578 -Georgia_Bold.ttf 40 w 50.4457 28.0000 98 ¢ -8.2688 29.6975 45.0592 -Georgia_Bold.ttf 40 w 50.4457 28.0000 99 Z -12.3103 40.1348 40.4681 -Georgia_Bold.ttf 40 w 50.4457 28.0000 100 > -4.4926 28.2500 32.5259 -Georgia_Bold.ttf 40 w 50.4457 28.0000 101 ® -13.9876 50.4457 50.4457 -Georgia_Bold.ttf 40 w 50.4457 28.0000 102 © -14.1170 50.4457 50.4457 -Georgia_Bold.ttf 40 w 50.4457 28.0000 103 ] -15.3878 18.8830 52.5609 -Georgia_Bold.ttf 40 w 50.4457 28.0000 104 é -16.3310 30.1152 45.5819 -Georgia_Bold.ttf 40 w 50.4457 28.0000 105 z 0.2853 28.0000 28.0000 -Georgia_Bold.ttf 40 w 50.4457 28.0000 106 _ 33.1785 41.0560 2.7259 -Georgia_Bold.ttf 40 w 50.4457 28.0000 107 ¥ -12.6340 44.1379 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 1 t 3.9460 22.8029 37.7468 -Georgia_Bold.ttf 41 T 38.0802 40.4681 2 h -4.0903 38.3109 44.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 3 a 11.3489 31.8795 30.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 4 n 11.4051 38.5434 29.1940 -Georgia_Bold.ttf 41 T 38.0802 40.4681 5 P 0.2512 37.4968 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 6 o 11.2898 32.6103 30.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 7 e 11.3413 30.1152 30.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 8 : 12.3206 11.2741 29.1940 -Georgia_Bold.ttf 41 T 38.0802 40.4681 9 r 11.4651 29.1940 29.1940 -Georgia_Bold.ttf 41 T 38.0802 40.4681 10 l -3.9978 18.7339 44.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 11 i -4.2333 18.7339 44.8687 -Georgia_Bold.ttf 41 T 38.0802 40.4681 12 1 8.7384 23.6397 31.6891 -Georgia_Bold.ttf 41 T 38.0802 40.4681 13 | -4.0834 4.6330 56.5227 -Georgia_Bold.ttf 41 T 38.0802 40.4681 14 N 0.0097 47.1785 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 15 f -3.6881 28.2500 44.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 16 g 11.2751 32.5497 42.0000 -Georgia_Bold.ttf 41 T 38.0802 40.4681 17 d -3.7827 36.4457 45.5819 -Georgia_Bold.ttf 41 T 38.0802 40.4681 18 W -0.0573 68.0276 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 19 s 11.2045 25.8621 30.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 20 c 11.1257 28.9212 30.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 21 u 11.2908 38.2100 30.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 22 3 8.5503 32.5259 42.2500 -Georgia_Bold.ttf 41 T 38.0802 40.4681 23 ~ 18.0315 32.5497 12.2181 -Georgia_Bold.ttf 41 T 38.0802 40.4681 24 # 3.8839 32.2532 36.4457 -Georgia_Bold.ttf 41 T 38.0802 40.4681 25 O -0.9711 43.5511 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 26 ` -4.0169 15.1940 12.8060 -Georgia_Bold.ttf 41 T 38.0802 40.4681 27 @ 1.1251 47.4709 48.6411 -Georgia_Bold.ttf 41 T 38.0802 40.4681 28 F 0.3030 35.9650 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 29 S -0.9517 33.7437 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 30 p 11.3784 35.8397 42.0000 -Georgia_Bold.ttf 41 T 38.0802 40.4681 31 “ -2.9098 25.5049 20.0578 -Georgia_Bold.ttf 41 T 38.0802 40.4681 32 % -1.2458 46.1460 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 33 £ -0.7692 33.4471 41.6621 -Georgia_Bold.ttf 41 T 38.0802 40.4681 34 . 30.4699 11.2741 11.2741 -Georgia_Bold.ttf 41 T 38.0802 40.4681 35 2 8.9297 30.6653 31.6891 -Georgia_Bold.ttf 41 T 38.0802 40.4681 36 5 8.7597 31.3319 42.2500 -Georgia_Bold.ttf 41 T 38.0802 40.4681 37 m 11.3483 57.1474 29.1940 -Georgia_Bold.ttf 41 T 38.0802 40.4681 38 V -0.1960 47.4471 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 39 6 -1.2136 32.2997 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 40 w 12.2158 50.4457 28.0000 -Georgia_Bold.ttf 41 T 38.0802 40.4681 41 T -0.0774 38.0802 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 42 M 0.1437 56.5455 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 43 G -1.1902 45.5865 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 44 b -3.8887 35.7325 45.9198 -Georgia_Bold.ttf 41 T 38.0802 40.4681 45 9 9.0025 32.6330 42.3571 -Georgia_Bold.ttf 41 T 38.0802 40.4681 46 ; 12.3923 11.5049 39.3813 -Georgia_Bold.ttf 41 T 38.0802 40.4681 47 D 0.0403 44.3879 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 48 L -0.1734 38.0196 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 49 y 12.0375 35.2710 40.8060 -Georgia_Bold.ttf 41 T 38.0802 40.4681 50 ‘ -2.8060 11.5049 20.0578 -Georgia_Bold.ttf 41 T 38.0802 40.4681 51 \ -2.6235 24.9408 55.3288 -Georgia_Bold.ttf 41 T 38.0802 40.4681 52 R 0.0909 46.2759 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 53 < 7.9543 28.2500 32.5259 -Georgia_Bold.ttf 41 T 38.0802 40.4681 54 4 8.7952 34.6684 42.2500 -Georgia_Bold.ttf 41 T 38.0802 40.4681 55 8 -1.1779 33.3865 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 56 0 8.5199 34.6876 32.8830 -Georgia_Bold.ttf 41 T 38.0802 40.4681 57 A -0.0309 46.9902 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 58 E 0.1804 38.6908 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 59 B 0.3487 40.1348 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 60 v 12.2366 35.5017 28.0000 -Georgia_Bold.ttf 41 T 38.0802 40.4681 61 k -3.8572 37.9968 44.3879 -Georgia_Bold.ttf 41 T 38.0802 40.4681 62 J -0.3407 33.3235 41.6621 -Georgia_Bold.ttf 41 T 38.0802 40.4681 63 U -0.2145 46.9856 41.6621 -Georgia_Bold.ttf 41 T 38.0802 40.4681 64 j -4.5307 22.1730 57.6747 -Georgia_Bold.ttf 41 T 38.0802 40.4681 65 ( -3.0982 20.7483 52.5609 -Georgia_Bold.ttf 41 T 38.0802 40.4681 66 7 9.6859 30.0308 41.0560 -Georgia_Bold.ttf 41 T 38.0802 40.4681 67 § -1.4529 26.2192 48.4103 -Georgia_Bold.ttf 41 T 38.0802 40.4681 68 $ -3.1893 31.2486 51.7468 -Georgia_Bold.ttf 41 T 38.0802 40.4681 69 € -1.3626 41.2868 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 70 / -2.6342 24.9408 55.3288 -Georgia_Bold.ttf 41 T 38.0802 40.4681 71 C -1.2405 39.1489 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 72 * -1.0971 23.6397 21.2290 -Georgia_Bold.ttf 41 T 38.0802 40.4681 73 ” -2.7681 25.5049 20.0578 -Georgia_Bold.ttf 41 T 38.0802 40.4681 74 ? -1.3720 26.4727 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 75 { -2.9807 25.1716 52.5609 -Georgia_Bold.ttf 41 T 38.0802 40.4681 76 } -2.9039 25.1716 52.5609 -Georgia_Bold.ttf 41 T 38.0802 40.4681 77 , 31.3149 11.5049 20.7483 -Georgia_Bold.ttf 41 T 38.0802 40.4681 78 I -0.2554 21.7342 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 79 ° -1.0160 19.4471 18.8830 -Georgia_Bold.ttf 41 T 38.0802 40.4681 80 K -0.0172 47.4699 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 81 H -0.0992 49.0437 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 82 q 9.9078 36.1968 43.1940 -Georgia_Bold.ttf 41 T 38.0802 40.4681 83 & -1.1195 44.6379 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 84 ’ -2.7869 11.5049 20.0578 -Georgia_Bold.ttf 41 T 38.0802 40.4681 85 [ -2.7564 18.8830 52.5609 -Georgia_Bold.ttf 41 T 38.0802 40.4681 86 - 21.9897 17.3319 6.3078 -Georgia_Bold.ttf 41 T 38.0802 40.4681 87 Y 0.0766 46.5865 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 88 Q -0.9313 43.5511 53.5241 -Georgia_Bold.ttf 41 T 38.0802 40.4681 89 " -2.6877 23.0291 20.0578 -Georgia_Bold.ttf 41 T 38.0802 40.4681 90 ! -1.0805 10.9408 42.8561 -Georgia_Bold.ttf 41 T 38.0802 40.4681 91 x 12.2054 34.3078 28.0000 -Georgia_Bold.ttf 41 T 38.0802 40.4681 92 ) -2.7923 20.7483 52.5609 -Georgia_Bold.ttf 41 T 38.0802 40.4681 93 = 15.9534 30.3879 16.2451 -Georgia_Bold.ttf 41 T 38.0802 40.4681 94 + 7.9918 31.9572 31.9572 -Georgia_Bold.ttf 41 T 38.0802 40.4681 95 X 0.2022 47.1138 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 96 » 12.5029 28.0000 25.5049 -Georgia_Bold.ttf 41 T 38.0802 40.4681 97 ' -2.6492 9.3670 20.0578 -Georgia_Bold.ttf 41 T 38.0802 40.4681 98 ¢ 4.0671 29.6975 45.0592 -Georgia_Bold.ttf 41 T 38.0802 40.4681 99 Z 0.0538 40.1348 40.4681 -Georgia_Bold.ttf 41 T 38.0802 40.4681 100 > 8.0388 28.2500 32.5259 -Georgia_Bold.ttf 41 T 38.0802 40.4681 101 ® -1.8593 50.4457 50.4457 -Georgia_Bold.ttf 41 T 38.0802 40.4681 102 © -1.4318 50.4457 50.4457 -Georgia_Bold.ttf 41 T 38.0802 40.4681 103 ] -2.7578 18.8830 52.5609 -Georgia_Bold.ttf 41 T 38.0802 40.4681 104 é -3.8109 30.1152 45.5819 -Georgia_Bold.ttf 41 T 38.0802 40.4681 105 z 12.4085 28.0000 28.0000 -Georgia_Bold.ttf 41 T 38.0802 40.4681 106 _ 45.5158 41.0560 2.7259 -Georgia_Bold.ttf 41 T 38.0802 40.4681 107 ¥ -0.1164 44.1379 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 1 t 3.6502 22.8029 37.7468 -Georgia_Bold.ttf 42 M 56.5455 40.4681 2 h -3.8795 38.3109 44.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 3 a 11.1213 31.8795 30.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 4 n 10.9569 38.5434 29.1940 -Georgia_Bold.ttf 42 M 56.5455 40.4681 5 P 0.2282 37.4968 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 6 o 11.4442 32.6103 30.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 7 e 11.4643 30.1152 30.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 8 : 12.4459 11.2741 29.1940 -Georgia_Bold.ttf 42 M 56.5455 40.4681 9 r 11.1507 29.1940 29.1940 -Georgia_Bold.ttf 42 M 56.5455 40.4681 10 l -4.0347 18.7339 44.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 11 i -4.0105 18.7339 44.8687 -Georgia_Bold.ttf 42 M 56.5455 40.4681 12 1 8.3112 23.6397 31.6891 -Georgia_Bold.ttf 42 M 56.5455 40.4681 13 | -3.4548 4.6330 56.5227 -Georgia_Bold.ttf 42 M 56.5455 40.4681 14 N 0.0263 47.1785 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 15 f -4.3053 28.2500 44.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 16 g 11.2131 32.5497 42.0000 -Georgia_Bold.ttf 42 M 56.5455 40.4681 17 d -3.7836 36.4457 45.5819 -Georgia_Bold.ttf 42 M 56.5455 40.4681 18 W -0.0105 68.0276 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 19 s 11.3983 25.8621 30.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 20 c 11.4806 28.9212 30.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 21 u 11.2511 38.2100 30.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 22 3 8.8296 32.5259 42.2500 -Georgia_Bold.ttf 42 M 56.5455 40.4681 23 ~ 17.9408 32.5497 12.2181 -Georgia_Bold.ttf 42 M 56.5455 40.4681 24 # 4.4136 32.2532 36.4457 -Georgia_Bold.ttf 42 M 56.5455 40.4681 25 O -1.4247 43.5511 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 26 ` -3.4285 15.1940 12.8060 -Georgia_Bold.ttf 42 M 56.5455 40.4681 27 @ 1.3827 47.4709 48.6411 -Georgia_Bold.ttf 42 M 56.5455 40.4681 28 F -0.4269 35.9650 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 29 S -1.4042 33.7437 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 30 p 11.4987 35.8397 42.0000 -Georgia_Bold.ttf 42 M 56.5455 40.4681 31 “ -2.9961 25.5049 20.0578 -Georgia_Bold.ttf 42 M 56.5455 40.4681 32 % -1.2730 46.1460 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 33 £ -1.3542 33.4471 41.6621 -Georgia_Bold.ttf 42 M 56.5455 40.4681 34 . 30.4225 11.2741 11.2741 -Georgia_Bold.ttf 42 M 56.5455 40.4681 35 2 8.8394 30.6653 31.6891 -Georgia_Bold.ttf 42 M 56.5455 40.4681 36 5 8.8110 31.3319 42.2500 -Georgia_Bold.ttf 42 M 56.5455 40.4681 37 m 11.3470 57.1474 29.1940 -Georgia_Bold.ttf 42 M 56.5455 40.4681 38 V -0.1205 47.4471 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 39 6 -1.1464 32.2997 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 40 w 12.7536 50.4457 28.0000 -Georgia_Bold.ttf 42 M 56.5455 40.4681 41 T -0.5027 38.0802 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 42 M 0.0573 56.5455 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 43 G -1.3612 45.5865 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 44 b -3.5702 35.7325 45.9198 -Georgia_Bold.ttf 42 M 56.5455 40.4681 45 9 8.8483 32.6330 42.3571 -Georgia_Bold.ttf 42 M 56.5455 40.4681 46 ; 12.6569 11.5049 39.3813 -Georgia_Bold.ttf 42 M 56.5455 40.4681 47 D 0.0184 44.3879 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 48 L 0.6003 38.0196 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 49 y 12.6052 35.2710 40.8060 -Georgia_Bold.ttf 42 M 56.5455 40.4681 50 ‘ -2.8593 11.5049 20.0578 -Georgia_Bold.ttf 42 M 56.5455 40.4681 51 \ -2.8981 24.9408 55.3288 -Georgia_Bold.ttf 42 M 56.5455 40.4681 52 R 0.2266 46.2759 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 53 < 7.9156 28.2500 32.5259 -Georgia_Bold.ttf 42 M 56.5455 40.4681 54 4 8.7531 34.6684 42.2500 -Georgia_Bold.ttf 42 M 56.5455 40.4681 55 8 -1.1011 33.3865 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 56 0 9.2909 34.6876 32.8830 -Georgia_Bold.ttf 42 M 56.5455 40.4681 57 A -0.4740 46.9902 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 58 E 0.4759 38.6908 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 59 B 0.1690 40.1348 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 60 v 12.6343 35.5017 28.0000 -Georgia_Bold.ttf 42 M 56.5455 40.4681 61 k -3.6328 37.9968 44.3879 -Georgia_Bold.ttf 42 M 56.5455 40.4681 62 J 0.0806 33.3235 41.6621 -Georgia_Bold.ttf 42 M 56.5455 40.4681 63 U 0.0110 46.9856 41.6621 -Georgia_Bold.ttf 42 M 56.5455 40.4681 64 j -4.3844 22.1730 57.6747 -Georgia_Bold.ttf 42 M 56.5455 40.4681 65 ( -3.0250 20.7483 52.5609 -Georgia_Bold.ttf 42 M 56.5455 40.4681 66 7 10.0892 30.0308 41.0560 -Georgia_Bold.ttf 42 M 56.5455 40.4681 67 § -1.1014 26.2192 48.4103 -Georgia_Bold.ttf 42 M 56.5455 40.4681 68 $ -3.8241 31.2486 51.7468 -Georgia_Bold.ttf 42 M 56.5455 40.4681 69 € -1.3013 41.2868 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 70 / -2.7838 24.9408 55.3288 -Georgia_Bold.ttf 42 M 56.5455 40.4681 71 C -0.9497 39.1489 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 72 * -0.9977 23.6397 21.2290 -Georgia_Bold.ttf 42 M 56.5455 40.4681 73 ” -2.9096 25.5049 20.0578 -Georgia_Bold.ttf 42 M 56.5455 40.4681 74 ? -1.1706 26.4727 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 75 { -3.0044 25.1716 52.5609 -Georgia_Bold.ttf 42 M 56.5455 40.4681 76 } -2.7212 25.1716 52.5609 -Georgia_Bold.ttf 42 M 56.5455 40.4681 77 , 31.1627 11.5049 20.7483 -Georgia_Bold.ttf 42 M 56.5455 40.4681 78 I -0.4065 21.7342 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 79 ° -1.1190 19.4471 18.8830 -Georgia_Bold.ttf 42 M 56.5455 40.4681 80 K -0.2377 47.4699 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 81 H -0.2949 49.0437 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 82 q 10.2468 36.1968 43.1940 -Georgia_Bold.ttf 42 M 56.5455 40.4681 83 & -0.6977 44.6379 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 84 ’ -2.7194 11.5049 20.0578 -Georgia_Bold.ttf 42 M 56.5455 40.4681 85 [ -2.7600 18.8830 52.5609 -Georgia_Bold.ttf 42 M 56.5455 40.4681 86 - 21.7580 17.3319 6.3078 -Georgia_Bold.ttf 42 M 56.5455 40.4681 87 Y 0.2955 46.5865 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 88 Q -1.4739 43.5511 53.5241 -Georgia_Bold.ttf 42 M 56.5455 40.4681 89 " -2.6581 23.0291 20.0578 -Georgia_Bold.ttf 42 M 56.5455 40.4681 90 ! -1.1487 10.9408 42.8561 -Georgia_Bold.ttf 42 M 56.5455 40.4681 91 x 12.4719 34.3078 28.0000 -Georgia_Bold.ttf 42 M 56.5455 40.4681 92 ) -2.8686 20.7483 52.5609 -Georgia_Bold.ttf 42 M 56.5455 40.4681 93 = 15.9044 30.3879 16.2451 -Georgia_Bold.ttf 42 M 56.5455 40.4681 94 + 8.1542 31.9572 31.9572 -Georgia_Bold.ttf 42 M 56.5455 40.4681 95 X 0.0388 47.1138 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 96 » 12.1975 28.0000 25.5049 -Georgia_Bold.ttf 42 M 56.5455 40.4681 97 ' -2.7766 9.3670 20.0578 -Georgia_Bold.ttf 42 M 56.5455 40.4681 98 ¢ 3.9996 29.6975 45.0592 -Georgia_Bold.ttf 42 M 56.5455 40.4681 99 Z 0.0821 40.1348 40.4681 -Georgia_Bold.ttf 42 M 56.5455 40.4681 100 > 7.4241 28.2500 32.5259 -Georgia_Bold.ttf 42 M 56.5455 40.4681 101 ® -1.4749 50.4457 50.4457 -Georgia_Bold.ttf 42 M 56.5455 40.4681 102 © -1.2858 50.4457 50.4457 -Georgia_Bold.ttf 42 M 56.5455 40.4681 103 ] -2.7954 18.8830 52.5609 -Georgia_Bold.ttf 42 M 56.5455 40.4681 104 é -3.8486 30.1152 45.5819 -Georgia_Bold.ttf 42 M 56.5455 40.4681 105 z 12.7832 28.0000 28.0000 -Georgia_Bold.ttf 42 M 56.5455 40.4681 106 _ 45.4357 41.0560 2.7259 -Georgia_Bold.ttf 42 M 56.5455 40.4681 107 ¥ -0.1651 44.1379 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 1 t 5.0702 22.8029 37.7468 -Georgia_Bold.ttf 43 G 45.5865 42.8561 2 h -2.9415 38.3109 44.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 3 a 12.8410 31.8795 30.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 4 n 12.3847 38.5434 29.1940 -Georgia_Bold.ttf 43 G 45.5865 42.8561 5 P 1.0108 37.4968 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 6 o 12.4316 32.6103 30.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 7 e 12.3390 30.1152 30.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 8 : 13.5527 11.2741 29.1940 -Georgia_Bold.ttf 43 G 45.5865 42.8561 9 r 12.6975 29.1940 29.1940 -Georgia_Bold.ttf 43 G 45.5865 42.8561 10 l -2.6349 18.7339 44.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 11 i -2.9757 18.7339 44.8687 -Georgia_Bold.ttf 43 G 45.5865 42.8561 12 1 10.0261 23.6397 31.6891 -Georgia_Bold.ttf 43 G 45.5865 42.8561 13 | -2.8727 4.6330 56.5227 -Georgia_Bold.ttf 43 G 45.5865 42.8561 14 N 1.2257 47.1785 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 15 f -2.6632 28.2500 44.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 16 g 12.4498 32.5497 42.0000 -Georgia_Bold.ttf 43 G 45.5865 42.8561 17 d -2.6985 36.4457 45.5819 -Georgia_Bold.ttf 43 G 45.5865 42.8561 18 W 0.9464 68.0276 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 19 s 12.2294 25.8621 30.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 20 c 12.3337 28.9212 30.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 21 u 12.0944 38.2100 30.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 22 3 9.9760 32.5259 42.2500 -Georgia_Bold.ttf 43 G 45.5865 42.8561 23 ~ 19.4038 32.5497 12.2181 -Georgia_Bold.ttf 43 G 45.5865 42.8561 24 # 5.2423 32.2532 36.4457 -Georgia_Bold.ttf 43 G 45.5865 42.8561 25 O 0.2039 43.5511 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 26 ` -2.6577 15.1940 12.8060 -Georgia_Bold.ttf 43 G 45.5865 42.8561 27 @ 2.3001 47.4709 48.6411 -Georgia_Bold.ttf 43 G 45.5865 42.8561 28 F 1.1740 35.9650 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 29 S -0.1900 33.7437 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 30 p 12.7489 35.8397 42.0000 -Georgia_Bold.ttf 43 G 45.5865 42.8561 31 “ -1.4969 25.5049 20.0578 -Georgia_Bold.ttf 43 G 45.5865 42.8561 32 % 0.3264 46.1460 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 33 £ -0.0070 33.4471 41.6621 -Georgia_Bold.ttf 43 G 45.5865 42.8561 34 . 31.7378 11.2741 11.2741 -Georgia_Bold.ttf 43 G 45.5865 42.8561 35 2 10.0179 30.6653 31.6891 -Georgia_Bold.ttf 43 G 45.5865 42.8561 36 5 10.0986 31.3319 42.2500 -Georgia_Bold.ttf 43 G 45.5865 42.8561 37 m 12.3802 57.1474 29.1940 -Georgia_Bold.ttf 43 G 45.5865 42.8561 38 V 1.0821 47.4471 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 39 6 0.0175 32.2997 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 40 w 13.4602 50.4457 28.0000 -Georgia_Bold.ttf 43 G 45.5865 42.8561 41 T 1.2352 38.0802 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 42 M 1.1842 56.5455 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 43 G -0.0051 45.5865 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 44 b -2.5843 35.7325 45.9198 -Georgia_Bold.ttf 43 G 45.5865 42.8561 45 9 9.8066 32.6330 42.3571 -Georgia_Bold.ttf 43 G 45.5865 42.8561 46 ; 13.7610 11.5049 39.3813 -Georgia_Bold.ttf 43 G 45.5865 42.8561 47 D 0.8284 44.3879 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 48 L 1.0749 38.0196 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 49 y 13.7016 35.2710 40.8060 -Georgia_Bold.ttf 43 G 45.5865 42.8561 50 ‘ -1.5209 11.5049 20.0578 -Georgia_Bold.ttf 43 G 45.5865 42.8561 51 \ -1.5733 24.9408 55.3288 -Georgia_Bold.ttf 43 G 45.5865 42.8561 52 R 1.5029 46.2759 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 53 < 9.3513 28.2500 32.5259 -Georgia_Bold.ttf 43 G 45.5865 42.8561 54 4 10.0595 34.6684 42.2500 -Georgia_Bold.ttf 43 G 45.5865 42.8561 55 8 -0.0336 33.3865 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 56 0 9.7701 34.6876 32.8830 -Georgia_Bold.ttf 43 G 45.5865 42.8561 57 A 1.2461 46.9902 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 58 E 0.7221 38.6908 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 59 B 1.1999 40.1348 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 60 v 13.4131 35.5017 28.0000 -Georgia_Bold.ttf 43 G 45.5865 42.8561 61 k -3.0721 37.9968 44.3879 -Georgia_Bold.ttf 43 G 45.5865 42.8561 62 J 1.1349 33.3235 41.6621 -Georgia_Bold.ttf 43 G 45.5865 42.8561 63 U 1.0730 46.9856 41.6621 -Georgia_Bold.ttf 43 G 45.5865 42.8561 64 j -3.0314 22.1730 57.6747 -Georgia_Bold.ttf 43 G 45.5865 42.8561 65 ( -1.6416 20.7483 52.5609 -Georgia_Bold.ttf 43 G 45.5865 42.8561 66 7 10.9672 30.0308 41.0560 -Georgia_Bold.ttf 43 G 45.5865 42.8561 67 § -0.1158 26.2192 48.4103 -Georgia_Bold.ttf 43 G 45.5865 42.8561 68 $ -2.3115 31.2486 51.7468 -Georgia_Bold.ttf 43 G 45.5865 42.8561 69 € -0.1630 41.2868 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 70 / -1.3047 24.9408 55.3288 -Georgia_Bold.ttf 43 G 45.5865 42.8561 71 C -0.2544 39.1489 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 72 * 0.1595 23.6397 21.2290 -Georgia_Bold.ttf 43 G 45.5865 42.8561 73 ” -1.5966 25.5049 20.0578 -Georgia_Bold.ttf 43 G 45.5865 42.8561 74 ? 0.1626 26.4727 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 75 { -1.2724 25.1716 52.5609 -Georgia_Bold.ttf 43 G 45.5865 42.8561 76 } -1.4711 25.1716 52.5609 -Georgia_Bold.ttf 43 G 45.5865 42.8561 77 , 31.9918 11.5049 20.7483 -Georgia_Bold.ttf 43 G 45.5865 42.8561 78 I 1.4803 21.7342 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 79 ° -0.0704 19.4471 18.8830 -Georgia_Bold.ttf 43 G 45.5865 42.8561 80 K 1.1198 47.4699 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 81 H 1.3755 49.0437 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 82 q 11.2434 36.1968 43.1940 -Georgia_Bold.ttf 43 G 45.5865 42.8561 83 & -0.0399 44.6379 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 84 ’ -1.3566 11.5049 20.0578 -Georgia_Bold.ttf 43 G 45.5865 42.8561 85 [ -1.3246 18.8830 52.5609 -Georgia_Bold.ttf 43 G 45.5865 42.8561 86 - 22.7942 17.3319 6.3078 -Georgia_Bold.ttf 43 G 45.5865 42.8561 87 Y 1.1041 46.5865 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 88 Q 0.3401 43.5511 53.5241 -Georgia_Bold.ttf 43 G 45.5865 42.8561 89 " -1.3439 23.0291 20.0578 -Georgia_Bold.ttf 43 G 45.5865 42.8561 90 ! -0.1425 10.9408 42.8561 -Georgia_Bold.ttf 43 G 45.5865 42.8561 91 x 13.4540 34.3078 28.0000 -Georgia_Bold.ttf 43 G 45.5865 42.8561 92 ) -1.6255 20.7483 52.5609 -Georgia_Bold.ttf 43 G 45.5865 42.8561 93 = 16.8430 30.3879 16.2451 -Georgia_Bold.ttf 43 G 45.5865 42.8561 94 + 9.3387 31.9572 31.9572 -Georgia_Bold.ttf 43 G 45.5865 42.8561 95 X 1.0555 47.1138 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 96 » 13.0660 28.0000 25.5049 -Georgia_Bold.ttf 43 G 45.5865 42.8561 97 ' -1.5762 9.3670 20.0578 -Georgia_Bold.ttf 43 G 45.5865 42.8561 98 ¢ 5.3678 29.6975 45.0592 -Georgia_Bold.ttf 43 G 45.5865 42.8561 99 Z 1.0689 40.1348 40.4681 -Georgia_Bold.ttf 43 G 45.5865 42.8561 100 > 8.9384 28.2500 32.5259 -Georgia_Bold.ttf 43 G 45.5865 42.8561 101 ® -0.3750 50.4457 50.4457 -Georgia_Bold.ttf 43 G 45.5865 42.8561 102 © -0.6449 50.4457 50.4457 -Georgia_Bold.ttf 43 G 45.5865 42.8561 103 ] -1.5325 18.8830 52.5609 -Georgia_Bold.ttf 43 G 45.5865 42.8561 104 é -2.4597 30.1152 45.5819 -Georgia_Bold.ttf 43 G 45.5865 42.8561 105 z 13.6029 28.0000 28.0000 -Georgia_Bold.ttf 43 G 45.5865 42.8561 106 _ 47.0132 41.0560 2.7259 -Georgia_Bold.ttf 43 G 45.5865 42.8561 107 ¥ 1.0964 44.1379 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 1 t 7.4087 22.8029 37.7468 -Georgia_Bold.ttf 44 b 35.7325 45.9198 2 h 0.0602 38.3109 44.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 3 a 14.9859 31.8795 30.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 4 n 15.3521 38.5434 29.1940 -Georgia_Bold.ttf 44 b 35.7325 45.9198 5 P 3.6988 37.4968 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 6 o 15.3628 32.6103 30.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 7 e 15.2289 30.1152 30.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 8 : 15.9460 11.2741 29.1940 -Georgia_Bold.ttf 44 b 35.7325 45.9198 9 r 15.1141 29.1940 29.1940 -Georgia_Bold.ttf 44 b 35.7325 45.9198 10 l 0.3275 18.7339 44.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 11 i -0.5488 18.7339 44.8687 -Georgia_Bold.ttf 44 b 35.7325 45.9198 12 1 12.3235 23.6397 31.6891 -Georgia_Bold.ttf 44 b 35.7325 45.9198 13 | 0.1250 4.6330 56.5227 -Georgia_Bold.ttf 44 b 35.7325 45.9198 14 N 3.7803 47.1785 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 15 f 0.0139 28.2500 44.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 16 g 15.3279 32.5497 42.0000 -Georgia_Bold.ttf 44 b 35.7325 45.9198 17 d 0.1164 36.4457 45.5819 -Georgia_Bold.ttf 44 b 35.7325 45.9198 18 W 3.6934 68.0276 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 19 s 15.2531 25.8621 30.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 20 c 15.0754 28.9212 30.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 21 u 15.3152 38.2100 30.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 22 3 12.5908 32.5259 42.2500 -Georgia_Bold.ttf 44 b 35.7325 45.9198 23 ~ 21.7122 32.5497 12.2181 -Georgia_Bold.ttf 44 b 35.7325 45.9198 24 # 7.7452 32.2532 36.4457 -Georgia_Bold.ttf 44 b 35.7325 45.9198 25 O 2.7786 43.5511 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 26 ` 0.0219 15.1940 12.8060 -Georgia_Bold.ttf 44 b 35.7325 45.9198 27 @ 5.0055 47.4709 48.6411 -Georgia_Bold.ttf 44 b 35.7325 45.9198 28 F 3.8680 35.9650 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 29 S 2.7985 33.7437 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 30 p 15.1212 35.8397 42.0000 -Georgia_Bold.ttf 44 b 35.7325 45.9198 31 “ 1.3187 25.5049 20.0578 -Georgia_Bold.ttf 44 b 35.7325 45.9198 32 % 2.7917 46.1460 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 33 £ 2.6304 33.4471 41.6621 -Georgia_Bold.ttf 44 b 35.7325 45.9198 34 . 33.7704 11.2741 11.2741 -Georgia_Bold.ttf 44 b 35.7325 45.9198 35 2 13.1643 30.6653 31.6891 -Georgia_Bold.ttf 44 b 35.7325 45.9198 36 5 12.6406 31.3319 42.2500 -Georgia_Bold.ttf 44 b 35.7325 45.9198 37 m 15.4997 57.1474 29.1940 -Georgia_Bold.ttf 44 b 35.7325 45.9198 38 V 3.5464 47.4471 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 39 6 2.8114 32.2997 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 40 w 16.5135 50.4457 28.0000 -Georgia_Bold.ttf 44 b 35.7325 45.9198 41 T 3.9897 38.0802 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 42 M 4.0689 56.5455 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 43 G 2.9941 45.5865 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 44 b -0.1262 35.7325 45.9198 -Georgia_Bold.ttf 44 b 35.7325 45.9198 45 9 12.6429 32.6330 42.3571 -Georgia_Bold.ttf 44 b 35.7325 45.9198 46 ; 16.3259 11.5049 39.3813 -Georgia_Bold.ttf 44 b 35.7325 45.9198 47 D 3.6896 44.3879 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 48 L 4.0468 38.0196 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 49 y 16.2202 35.2710 40.8060 -Georgia_Bold.ttf 44 b 35.7325 45.9198 50 ‘ 1.0786 11.5049 20.0578 -Georgia_Bold.ttf 44 b 35.7325 45.9198 51 \ 1.0289 24.9408 55.3288 -Georgia_Bold.ttf 44 b 35.7325 45.9198 52 R 3.6982 46.2759 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 53 < 11.7462 28.2500 32.5259 -Georgia_Bold.ttf 44 b 35.7325 45.9198 54 4 12.8825 34.6684 42.2500 -Georgia_Bold.ttf 44 b 35.7325 45.9198 55 8 2.9878 33.3865 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 56 0 12.8737 34.6876 32.8830 -Georgia_Bold.ttf 44 b 35.7325 45.9198 57 A 3.7158 46.9902 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 58 E 3.9442 38.6908 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 59 B 4.0450 40.1348 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 60 v 16.7431 35.5017 28.0000 -Georgia_Bold.ttf 44 b 35.7325 45.9198 61 k 0.3345 37.9968 44.3879 -Georgia_Bold.ttf 44 b 35.7325 45.9198 62 J 4.0772 33.3235 41.6621 -Georgia_Bold.ttf 44 b 35.7325 45.9198 63 U 3.9972 46.9856 41.6621 -Georgia_Bold.ttf 44 b 35.7325 45.9198 64 j -0.6361 22.1730 57.6747 -Georgia_Bold.ttf 44 b 35.7325 45.9198 65 ( 1.1106 20.7483 52.5609 -Georgia_Bold.ttf 44 b 35.7325 45.9198 66 7 13.7103 30.0308 41.0560 -Georgia_Bold.ttf 44 b 35.7325 45.9198 67 § 2.7839 26.2192 48.4103 -Georgia_Bold.ttf 44 b 35.7325 45.9198 68 $ 0.5687 31.2486 51.7468 -Georgia_Bold.ttf 44 b 35.7325 45.9198 69 € 2.8168 41.2868 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 70 / 1.4504 24.9408 55.3288 -Georgia_Bold.ttf 44 b 35.7325 45.9198 71 C 2.5390 39.1489 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 72 * 2.8991 23.6397 21.2290 -Georgia_Bold.ttf 44 b 35.7325 45.9198 73 ” 1.0014 25.5049 20.0578 -Georgia_Bold.ttf 44 b 35.7325 45.9198 74 ? 2.7598 26.4727 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 75 { 1.2811 25.1716 52.5609 -Georgia_Bold.ttf 44 b 35.7325 45.9198 76 } 1.1940 25.1716 52.5609 -Georgia_Bold.ttf 44 b 35.7325 45.9198 77 , 35.1855 11.5049 20.7483 -Georgia_Bold.ttf 44 b 35.7325 45.9198 78 I 3.4835 21.7342 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 79 ° 2.6573 19.4471 18.8830 -Georgia_Bold.ttf 44 b 35.7325 45.9198 80 K 4.2374 47.4699 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 81 H 3.6373 49.0437 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 82 q 14.1581 36.1968 43.1940 -Georgia_Bold.ttf 44 b 35.7325 45.9198 83 & 2.6079 44.6379 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 84 ’ 1.2598 11.5049 20.0578 -Georgia_Bold.ttf 44 b 35.7325 45.9198 85 [ 1.7497 18.8830 52.5609 -Georgia_Bold.ttf 44 b 35.7325 45.9198 86 - 25.6428 17.3319 6.3078 -Georgia_Bold.ttf 44 b 35.7325 45.9198 87 Y 3.4587 46.5865 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 88 Q 2.7829 43.5511 53.5241 -Georgia_Bold.ttf 44 b 35.7325 45.9198 89 " 1.1206 23.0291 20.0578 -Georgia_Bold.ttf 44 b 35.7325 45.9198 90 ! 3.1057 10.9408 42.8561 -Georgia_Bold.ttf 44 b 35.7325 45.9198 91 x 16.6724 34.3078 28.0000 -Georgia_Bold.ttf 44 b 35.7325 45.9198 92 ) 1.2774 20.7483 52.5609 -Georgia_Bold.ttf 44 b 35.7325 45.9198 93 = 19.4380 30.3879 16.2451 -Georgia_Bold.ttf 44 b 35.7325 45.9198 94 + 12.0730 31.9572 31.9572 -Georgia_Bold.ttf 44 b 35.7325 45.9198 95 X 3.8666 47.1138 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 96 » 16.5088 28.0000 25.5049 -Georgia_Bold.ttf 44 b 35.7325 45.9198 97 ' 1.2991 9.3670 20.0578 -Georgia_Bold.ttf 44 b 35.7325 45.9198 98 ¢ 7.8293 29.6975 45.0592 -Georgia_Bold.ttf 44 b 35.7325 45.9198 99 Z 4.0922 40.1348 40.4681 -Georgia_Bold.ttf 44 b 35.7325 45.9198 100 > 11.9142 28.2500 32.5259 -Georgia_Bold.ttf 44 b 35.7325 45.9198 101 ® 2.2490 50.4457 50.4457 -Georgia_Bold.ttf 44 b 35.7325 45.9198 102 © 2.3581 50.4457 50.4457 -Georgia_Bold.ttf 44 b 35.7325 45.9198 103 ] 1.4253 18.8830 52.5609 -Georgia_Bold.ttf 44 b 35.7325 45.9198 104 é -0.3969 30.1152 45.5819 -Georgia_Bold.ttf 44 b 35.7325 45.9198 105 z 15.9997 28.0000 28.0000 -Georgia_Bold.ttf 44 b 35.7325 45.9198 106 _ 49.4496 41.0560 2.7259 -Georgia_Bold.ttf 44 b 35.7325 45.9198 107 ¥ 3.9653 44.1379 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 1 t -5.1334 22.8029 37.7468 -Georgia_Bold.ttf 45 9 32.6330 42.3571 2 h -12.3801 38.3109 44.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 3 a 2.4118 31.8795 30.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 4 n 2.6220 38.5434 29.1940 -Georgia_Bold.ttf 45 9 32.6330 42.3571 5 P -8.9721 37.4968 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 6 o 2.4534 32.6103 30.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 7 e 2.3450 30.1152 30.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 8 : 3.7526 11.2741 29.1940 -Georgia_Bold.ttf 45 9 32.6330 42.3571 9 r 2.6169 29.1940 29.1940 -Georgia_Bold.ttf 45 9 32.6330 42.3571 10 l -12.7059 18.7339 44.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 11 i -13.2732 18.7339 44.8687 -Georgia_Bold.ttf 45 9 32.6330 42.3571 12 1 -0.0078 23.6397 31.6891 -Georgia_Bold.ttf 45 9 32.6330 42.3571 13 | -12.5887 4.6330 56.5227 -Georgia_Bold.ttf 45 9 32.6330 42.3571 14 N -8.4919 47.1785 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 15 f -13.0562 28.2500 44.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 16 g 2.4187 32.5497 42.0000 -Georgia_Bold.ttf 45 9 32.6330 42.3571 17 d -12.9380 36.4457 45.5819 -Georgia_Bold.ttf 45 9 32.6330 42.3571 18 W -8.9481 68.0276 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 19 s 2.5359 25.8621 30.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 20 c 2.5580 28.9212 30.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 21 u 2.2636 38.2100 30.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 22 3 0.0083 32.5259 42.2500 -Georgia_Bold.ttf 45 9 32.6330 42.3571 23 ~ 9.2266 32.5497 12.2181 -Georgia_Bold.ttf 45 9 32.6330 42.3571 24 # -4.8491 32.2532 36.4457 -Georgia_Bold.ttf 45 9 32.6330 42.3571 25 O -10.1561 43.5511 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 26 ` -12.4865 15.1940 12.8060 -Georgia_Bold.ttf 45 9 32.6330 42.3571 27 @ -7.7543 47.4709 48.6411 -Georgia_Bold.ttf 45 9 32.6330 42.3571 28 F -9.2484 35.9650 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 29 S -9.8815 33.7437 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 30 p 2.5089 35.8397 42.0000 -Georgia_Bold.ttf 45 9 32.6330 42.3571 31 “ -11.5823 25.5049 20.0578 -Georgia_Bold.ttf 45 9 32.6330 42.3571 32 % -9.9296 46.1460 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 33 £ -9.8814 33.4471 41.6621 -Georgia_Bold.ttf 45 9 32.6330 42.3571 34 . 21.2820 11.2741 11.2741 -Georgia_Bold.ttf 45 9 32.6330 42.3571 35 2 -0.1061 30.6653 31.6891 -Georgia_Bold.ttf 45 9 32.6330 42.3571 36 5 0.0866 31.3319 42.2500 -Georgia_Bold.ttf 45 9 32.6330 42.3571 37 m 2.2590 57.1474 29.1940 -Georgia_Bold.ttf 45 9 32.6330 42.3571 38 V -8.5949 47.4471 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 39 6 -9.9195 32.2997 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 40 w 3.5573 50.4457 28.0000 -Georgia_Bold.ttf 45 9 32.6330 42.3571 41 T -8.8415 38.0802 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 42 M -9.0915 56.5455 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 43 G -9.5265 45.5865 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 44 b -12.7241 35.7325 45.9198 -Georgia_Bold.ttf 45 9 32.6330 42.3571 45 9 -0.1471 32.6330 42.3571 -Georgia_Bold.ttf 45 9 32.6330 42.3571 46 ; 3.5525 11.5049 39.3813 -Georgia_Bold.ttf 45 9 32.6330 42.3571 47 D -8.7830 44.3879 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 48 L -8.7450 38.0196 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 49 y 3.7955 35.2710 40.8060 -Georgia_Bold.ttf 45 9 32.6330 42.3571 50 ‘ -11.4759 11.5049 20.0578 -Georgia_Bold.ttf 45 9 32.6330 42.3571 51 \ -11.6907 24.9408 55.3288 -Georgia_Bold.ttf 45 9 32.6330 42.3571 52 R -8.9584 46.2759 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 53 < -0.7214 28.2500 32.5259 -Georgia_Bold.ttf 45 9 32.6330 42.3571 54 4 -0.1382 34.6684 42.2500 -Georgia_Bold.ttf 45 9 32.6330 42.3571 55 8 -9.9160 33.3865 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 56 0 -0.1742 34.6876 32.8830 -Georgia_Bold.ttf 45 9 32.6330 42.3571 57 A -8.8412 46.9902 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 58 E -8.8232 38.6908 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 59 B -8.5164 40.1348 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 60 v 3.4166 35.5017 28.0000 -Georgia_Bold.ttf 45 9 32.6330 42.3571 61 k -12.5816 37.9968 44.3879 -Georgia_Bold.ttf 45 9 32.6330 42.3571 62 J -8.9501 33.3235 41.6621 -Georgia_Bold.ttf 45 9 32.6330 42.3571 63 U -8.5873 46.9856 41.6621 -Georgia_Bold.ttf 45 9 32.6330 42.3571 64 j -13.0957 22.1730 57.6747 -Georgia_Bold.ttf 45 9 32.6330 42.3571 65 ( -11.4973 20.7483 52.5609 -Georgia_Bold.ttf 45 9 32.6330 42.3571 66 7 1.1485 30.0308 41.0560 -Georgia_Bold.ttf 45 9 32.6330 42.3571 67 § -9.9146 26.2192 48.4103 -Georgia_Bold.ttf 45 9 32.6330 42.3571 68 $ -12.2044 31.2486 51.7468 -Georgia_Bold.ttf 45 9 32.6330 42.3571 69 € -9.8846 41.2868 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 70 / -11.3667 24.9408 55.3288 -Georgia_Bold.ttf 45 9 32.6330 42.3571 71 C -9.7169 39.1489 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 72 * -9.9778 23.6397 21.2290 -Georgia_Bold.ttf 45 9 32.6330 42.3571 73 ” -11.5412 25.5049 20.0578 -Georgia_Bold.ttf 45 9 32.6330 42.3571 74 ? -9.9262 26.4727 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 75 { -11.3404 25.1716 52.5609 -Georgia_Bold.ttf 45 9 32.6330 42.3571 76 } -11.6093 25.1716 52.5609 -Georgia_Bold.ttf 45 9 32.6330 42.3571 77 , 22.2629 11.5049 20.7483 -Georgia_Bold.ttf 45 9 32.6330 42.3571 78 I -8.8718 21.7342 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 79 ° -10.1725 19.4471 18.8830 -Georgia_Bold.ttf 45 9 32.6330 42.3571 80 K -8.8637 47.4699 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 81 H -8.8067 49.0437 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 82 q 1.1777 36.1968 43.1940 -Georgia_Bold.ttf 45 9 32.6330 42.3571 83 & -10.0147 44.6379 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 84 ’ -11.3766 11.5049 20.0578 -Georgia_Bold.ttf 45 9 32.6330 42.3571 85 [ -11.3415 18.8830 52.5609 -Georgia_Bold.ttf 45 9 32.6330 42.3571 86 - 12.8455 17.3319 6.3078 -Georgia_Bold.ttf 45 9 32.6330 42.3571 87 Y -8.6424 46.5865 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 88 Q -10.0597 43.5511 53.5241 -Georgia_Bold.ttf 45 9 32.6330 42.3571 89 " -11.5218 23.0291 20.0578 -Georgia_Bold.ttf 45 9 32.6330 42.3571 90 ! -9.8853 10.9408 42.8561 -Georgia_Bold.ttf 45 9 32.6330 42.3571 91 x 3.9025 34.3078 28.0000 -Georgia_Bold.ttf 45 9 32.6330 42.3571 92 ) -11.6600 20.7483 52.5609 -Georgia_Bold.ttf 45 9 32.6330 42.3571 93 = 7.2213 30.3879 16.2451 -Georgia_Bold.ttf 45 9 32.6330 42.3571 94 + -0.6573 31.9572 31.9572 -Georgia_Bold.ttf 45 9 32.6330 42.3571 95 X -8.8570 47.1138 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 96 » 3.5065 28.0000 25.5049 -Georgia_Bold.ttf 45 9 32.6330 42.3571 97 ' -11.2930 9.3670 20.0578 -Georgia_Bold.ttf 45 9 32.6330 42.3571 98 ¢ -4.7532 29.6975 45.0592 -Georgia_Bold.ttf 45 9 32.6330 42.3571 99 Z -9.0320 40.1348 40.4681 -Georgia_Bold.ttf 45 9 32.6330 42.3571 100 > -0.8400 28.2500 32.5259 -Georgia_Bold.ttf 45 9 32.6330 42.3571 101 ® -10.3645 50.4457 50.4457 -Georgia_Bold.ttf 45 9 32.6330 42.3571 102 © -10.5365 50.4457 50.4457 -Georgia_Bold.ttf 45 9 32.6330 42.3571 103 ] -11.9418 18.8830 52.5609 -Georgia_Bold.ttf 45 9 32.6330 42.3571 104 é -12.3536 30.1152 45.5819 -Georgia_Bold.ttf 45 9 32.6330 42.3571 105 z 3.6863 28.0000 28.0000 -Georgia_Bold.ttf 45 9 32.6330 42.3571 106 _ 36.8577 41.0560 2.7259 -Georgia_Bold.ttf 45 9 32.6330 42.3571 107 ¥ -8.6495 44.1379 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 1 t -8.6393 22.8029 37.7468 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 2 h -16.2592 38.3109 44.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 3 a -1.7023 31.8795 30.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 4 n -1.3196 38.5434 29.1940 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 5 P -12.7929 37.4968 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 6 o -1.3910 32.6103 30.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 7 e -1.0748 30.1152 30.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 8 : 0.0333 11.2741 29.1940 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 9 r -1.2055 29.1940 29.1940 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 10 l -16.5181 18.7339 44.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 11 i -16.9701 18.7339 44.8687 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 12 1 -3.7702 23.6397 31.6891 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 13 | -16.5386 4.6330 56.5227 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 14 N -12.3593 47.1785 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 15 f -16.4974 28.2500 44.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 16 g -1.3158 32.5497 42.0000 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 17 d -16.1836 36.4457 45.5819 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 18 W -12.5611 68.0276 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 19 s -1.4677 25.8621 30.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 20 c -1.0305 28.9212 30.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 21 u -1.1491 38.2100 30.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 22 3 -3.5757 32.5259 42.2500 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 23 ~ 5.3360 32.5497 12.2181 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 24 # -8.4387 32.2532 36.4457 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 25 O -13.6551 43.5511 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 26 ` -16.5834 15.1940 12.8060 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 27 @ -11.4627 47.4709 48.6411 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 28 F -12.3887 35.9650 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 29 S -13.8371 33.7437 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 30 p -1.0940 35.8397 42.0000 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 31 “ -14.9900 25.5049 20.0578 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 32 % -13.6296 46.1460 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 33 £ -13.7538 33.4471 41.6621 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 34 . 18.0454 11.2741 11.2741 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 35 2 -3.8216 30.6653 31.6891 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 36 5 -3.7670 31.3319 42.2500 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 37 m -1.4215 57.1474 29.1940 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 38 V -12.3342 47.4471 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 39 6 -13.6204 32.2997 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 40 w 0.0385 50.4457 28.0000 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 41 T -12.3431 38.0802 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 42 M -12.6529 56.5455 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 43 G -13.8793 45.5865 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 44 b -16.4621 35.7325 45.9198 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 45 9 -3.4791 32.6330 42.3571 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 46 ; 0.0487 11.5049 39.3813 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 47 D -12.4703 44.3879 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 48 L -12.3152 38.0196 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 49 y 0.2068 35.2710 40.8060 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 50 ‘ -15.1106 11.5049 20.0578 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 51 \ -15.0711 24.9408 55.3288 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 52 R -12.3396 46.2759 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 53 < -4.6060 28.2500 32.5259 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 54 4 -3.8980 34.6684 42.2500 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 55 8 -13.7370 33.3865 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 56 0 -3.6657 34.6876 32.8830 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 57 A -12.4681 46.9902 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 58 E -12.5915 38.6908 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 59 B -12.6281 40.1348 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 60 v 0.1231 35.5017 28.0000 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 61 k -16.3578 37.9968 44.3879 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 62 J -12.6424 33.3235 41.6621 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 63 U -12.5122 46.9856 41.6621 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 64 j -17.0513 22.1730 57.6747 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 65 ( -15.1842 20.7483 52.5609 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 66 7 -2.4696 30.0308 41.0560 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 67 § -13.7726 26.2192 48.4103 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 68 $ -15.5848 31.2486 51.7468 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 69 € -13.6530 41.2868 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 70 / -15.2692 24.9408 55.3288 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 71 C -13.6306 39.1489 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 72 * -13.6454 23.6397 21.2290 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 73 ” -15.3515 25.5049 20.0578 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 74 ? -13.8755 26.4727 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 75 { -15.2010 25.1716 52.5609 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 76 } -15.1479 25.1716 52.5609 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 77 , 18.6981 11.5049 20.7483 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 78 I -12.5233 21.7342 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 79 ° -13.7454 19.4471 18.8830 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 80 K -12.6673 47.4699 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 81 H -12.5997 49.0437 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 82 q -2.7560 36.1968 43.1940 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 83 & -13.9220 44.6379 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 84 ’ -15.1501 11.5049 20.0578 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 85 [ -15.1842 18.8830 52.5609 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 86 - 9.4503 17.3319 6.3078 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 87 Y -12.5779 46.5865 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 88 Q -14.0420 43.5511 53.5241 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 89 " -15.2771 23.0291 20.0578 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 90 ! -13.6538 10.9408 42.8561 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 91 x -0.0885 34.3078 28.0000 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 92 ) -15.2692 20.7483 52.5609 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 93 = 3.2646 30.3879 16.2451 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 94 + -4.3763 31.9572 31.9572 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 95 X -12.2955 47.1138 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 96 » -0.2238 28.0000 25.5049 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 97 ' -15.3937 9.3670 20.0578 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 98 ¢ -8.3850 29.6975 45.0592 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 99 Z -12.4625 40.1348 40.4681 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 100 > -4.2734 28.2500 32.5259 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 101 ® -13.9468 50.4457 50.4457 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 102 © -13.9024 50.4457 50.4457 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 103 ] -15.3591 18.8830 52.5609 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 104 é -16.4111 30.1152 45.5819 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 105 z 0.1339 28.0000 28.0000 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 106 _ 33.0299 41.0560 2.7259 -Georgia_Bold.ttf 46 ; 11.5049 39.3813 107 ¥ -12.3036 44.1379 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 1 t 3.8243 22.8029 37.7468 -Georgia_Bold.ttf 47 D 44.3879 40.4681 2 h -3.8982 38.3109 44.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 3 a 11.1405 31.8795 30.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 4 n 11.3808 38.5434 29.1940 -Georgia_Bold.ttf 47 D 44.3879 40.4681 5 P -0.0476 37.4968 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 6 o 11.5860 32.6103 30.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 7 e 11.2570 30.1152 30.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 8 : 12.5942 11.2741 29.1940 -Georgia_Bold.ttf 47 D 44.3879 40.4681 9 r 11.3429 29.1940 29.1940 -Georgia_Bold.ttf 47 D 44.3879 40.4681 10 l -4.1403 18.7339 44.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 11 i -4.3623 18.7339 44.8687 -Georgia_Bold.ttf 47 D 44.3879 40.4681 12 1 8.7839 23.6397 31.6891 -Georgia_Bold.ttf 47 D 44.3879 40.4681 13 | -3.8405 4.6330 56.5227 -Georgia_Bold.ttf 47 D 44.3879 40.4681 14 N 0.2355 47.1785 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 15 f -3.6639 28.2500 44.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 16 g 11.5322 32.5497 42.0000 -Georgia_Bold.ttf 47 D 44.3879 40.4681 17 d -4.0378 36.4457 45.5819 -Georgia_Bold.ttf 47 D 44.3879 40.4681 18 W -0.2315 68.0276 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 19 s 11.2546 25.8621 30.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 20 c 11.2635 28.9212 30.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 21 u 11.4484 38.2100 30.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 22 3 8.4844 32.5259 42.2500 -Georgia_Bold.ttf 47 D 44.3879 40.4681 23 ~ 18.1327 32.5497 12.2181 -Georgia_Bold.ttf 47 D 44.3879 40.4681 24 # 4.1186 32.2532 36.4457 -Georgia_Bold.ttf 47 D 44.3879 40.4681 25 O -1.5715 43.5511 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 26 ` -4.3801 15.1940 12.8060 -Georgia_Bold.ttf 47 D 44.3879 40.4681 27 @ 1.0229 47.4709 48.6411 -Georgia_Bold.ttf 47 D 44.3879 40.4681 28 F 0.0913 35.9650 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 29 S -0.8154 33.7437 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 30 p 11.3507 35.8397 42.0000 -Georgia_Bold.ttf 47 D 44.3879 40.4681 31 “ -2.8598 25.5049 20.0578 -Georgia_Bold.ttf 47 D 44.3879 40.4681 32 % -1.5588 46.1460 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 33 £ -1.2077 33.4471 41.6621 -Georgia_Bold.ttf 47 D 44.3879 40.4681 34 . 30.4356 11.2741 11.2741 -Georgia_Bold.ttf 47 D 44.3879 40.4681 35 2 8.4685 30.6653 31.6891 -Georgia_Bold.ttf 47 D 44.3879 40.4681 36 5 8.7207 31.3319 42.2500 -Georgia_Bold.ttf 47 D 44.3879 40.4681 37 m 11.1486 57.1474 29.1940 -Georgia_Bold.ttf 47 D 44.3879 40.4681 38 V 0.0987 47.4471 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 39 6 -1.5896 32.2997 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 40 w 12.3842 50.4457 28.0000 -Georgia_Bold.ttf 47 D 44.3879 40.4681 41 T 0.1347 38.0802 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 42 M -0.0210 56.5455 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 43 G -1.1617 45.5865 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 44 b -3.9642 35.7325 45.9198 -Georgia_Bold.ttf 47 D 44.3879 40.4681 45 9 8.5543 32.6330 42.3571 -Georgia_Bold.ttf 47 D 44.3879 40.4681 46 ; 12.3366 11.5049 39.3813 -Georgia_Bold.ttf 47 D 44.3879 40.4681 47 D 0.3615 44.3879 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 48 L 0.1746 38.0196 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 49 y 12.1995 35.2710 40.8060 -Georgia_Bold.ttf 47 D 44.3879 40.4681 50 ‘ -2.7503 11.5049 20.0578 -Georgia_Bold.ttf 47 D 44.3879 40.4681 51 \ -3.0851 24.9408 55.3288 -Georgia_Bold.ttf 47 D 44.3879 40.4681 52 R -0.1054 46.2759 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 53 < 8.0204 28.2500 32.5259 -Georgia_Bold.ttf 47 D 44.3879 40.4681 54 4 8.6686 34.6684 42.2500 -Georgia_Bold.ttf 47 D 44.3879 40.4681 55 8 -0.8369 33.3865 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 56 0 8.8546 34.6876 32.8830 -Georgia_Bold.ttf 47 D 44.3879 40.4681 57 A 0.1788 46.9902 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 58 E 0.2954 38.6908 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 59 B 0.2121 40.1348 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 60 v 12.3547 35.5017 28.0000 -Georgia_Bold.ttf 47 D 44.3879 40.4681 61 k -3.8466 37.9968 44.3879 -Georgia_Bold.ttf 47 D 44.3879 40.4681 62 J -0.2662 33.3235 41.6621 -Georgia_Bold.ttf 47 D 44.3879 40.4681 63 U -0.0780 46.9856 41.6621 -Georgia_Bold.ttf 47 D 44.3879 40.4681 64 j -4.4765 22.1730 57.6747 -Georgia_Bold.ttf 47 D 44.3879 40.4681 65 ( -2.8035 20.7483 52.5609 -Georgia_Bold.ttf 47 D 44.3879 40.4681 66 7 10.0736 30.0308 41.0560 -Georgia_Bold.ttf 47 D 44.3879 40.4681 67 § -0.9006 26.2192 48.4103 -Georgia_Bold.ttf 47 D 44.3879 40.4681 68 $ -3.3175 31.2486 51.7468 -Georgia_Bold.ttf 47 D 44.3879 40.4681 69 € -1.0666 41.2868 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 70 / -2.6090 24.9408 55.3288 -Georgia_Bold.ttf 47 D 44.3879 40.4681 71 C -1.4130 39.1489 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 72 * -0.9743 23.6397 21.2290 -Georgia_Bold.ttf 47 D 44.3879 40.4681 73 ” -3.1534 25.5049 20.0578 -Georgia_Bold.ttf 47 D 44.3879 40.4681 74 ? -0.9864 26.4727 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 75 { -2.7379 25.1716 52.5609 -Georgia_Bold.ttf 47 D 44.3879 40.4681 76 } -2.7087 25.1716 52.5609 -Georgia_Bold.ttf 47 D 44.3879 40.4681 77 , 31.0427 11.5049 20.7483 -Georgia_Bold.ttf 47 D 44.3879 40.4681 78 I -0.2637 21.7342 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 79 ° -1.3580 19.4471 18.8830 -Georgia_Bold.ttf 47 D 44.3879 40.4681 80 K 0.2296 47.4699 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 81 H 0.0508 49.0437 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 82 q 10.0130 36.1968 43.1940 -Georgia_Bold.ttf 47 D 44.3879 40.4681 83 & -1.2063 44.6379 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 84 ’ -2.8431 11.5049 20.0578 -Georgia_Bold.ttf 47 D 44.3879 40.4681 85 [ -2.6361 18.8830 52.5609 -Georgia_Bold.ttf 47 D 44.3879 40.4681 86 - 21.6896 17.3319 6.3078 -Georgia_Bold.ttf 47 D 44.3879 40.4681 87 Y 0.3044 46.5865 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 88 Q -1.1290 43.5511 53.5241 -Georgia_Bold.ttf 47 D 44.3879 40.4681 89 " -2.7421 23.0291 20.0578 -Georgia_Bold.ttf 47 D 44.3879 40.4681 90 ! -1.1449 10.9408 42.8561 -Georgia_Bold.ttf 47 D 44.3879 40.4681 91 x 12.4687 34.3078 28.0000 -Georgia_Bold.ttf 47 D 44.3879 40.4681 92 ) -2.9291 20.7483 52.5609 -Georgia_Bold.ttf 47 D 44.3879 40.4681 93 = 15.7582 30.3879 16.2451 -Georgia_Bold.ttf 47 D 44.3879 40.4681 94 + 8.0345 31.9572 31.9572 -Georgia_Bold.ttf 47 D 44.3879 40.4681 95 X 0.2247 47.1138 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 96 » 11.9736 28.0000 25.5049 -Georgia_Bold.ttf 47 D 44.3879 40.4681 97 ' -2.5105 9.3670 20.0578 -Georgia_Bold.ttf 47 D 44.3879 40.4681 98 ¢ 4.0789 29.6975 45.0592 -Georgia_Bold.ttf 47 D 44.3879 40.4681 99 Z -0.0643 40.1348 40.4681 -Georgia_Bold.ttf 47 D 44.3879 40.4681 100 > 7.9517 28.2500 32.5259 -Georgia_Bold.ttf 47 D 44.3879 40.4681 101 ® -1.9084 50.4457 50.4457 -Georgia_Bold.ttf 47 D 44.3879 40.4681 102 © -1.5921 50.4457 50.4457 -Georgia_Bold.ttf 47 D 44.3879 40.4681 103 ] -2.6229 18.8830 52.5609 -Georgia_Bold.ttf 47 D 44.3879 40.4681 104 é -4.1099 30.1152 45.5819 -Georgia_Bold.ttf 47 D 44.3879 40.4681 105 z 12.3877 28.0000 28.0000 -Georgia_Bold.ttf 47 D 44.3879 40.4681 106 _ 45.7259 41.0560 2.7259 -Georgia_Bold.ttf 47 D 44.3879 40.4681 107 ¥ 0.2100 44.1379 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 1 t 3.7892 22.8029 37.7468 -Georgia_Bold.ttf 48 L 38.0196 40.4681 2 h -3.8541 38.3109 44.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 3 a 11.0706 31.8795 30.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 4 n 11.1311 38.5434 29.1940 -Georgia_Bold.ttf 48 L 38.0196 40.4681 5 P -0.0825 37.4968 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 6 o 11.5927 32.6103 30.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 7 e 11.3741 30.1152 30.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 8 : 12.2781 11.2741 29.1940 -Georgia_Bold.ttf 48 L 38.0196 40.4681 9 r 11.3567 29.1940 29.1940 -Georgia_Bold.ttf 48 L 38.0196 40.4681 10 l -3.5351 18.7339 44.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 11 i -4.6445 18.7339 44.8687 -Georgia_Bold.ttf 48 L 38.0196 40.4681 12 1 8.9201 23.6397 31.6891 -Georgia_Bold.ttf 48 L 38.0196 40.4681 13 | -4.0174 4.6330 56.5227 -Georgia_Bold.ttf 48 L 38.0196 40.4681 14 N 0.1037 47.1785 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 15 f -3.7494 28.2500 44.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 16 g 10.9335 32.5497 42.0000 -Georgia_Bold.ttf 48 L 38.0196 40.4681 17 d -3.9373 36.4457 45.5819 -Georgia_Bold.ttf 48 L 38.0196 40.4681 18 W 0.1100 68.0276 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 19 s 11.3471 25.8621 30.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 20 c 11.3511 28.9212 30.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 21 u 11.5745 38.2100 30.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 22 3 8.6989 32.5259 42.2500 -Georgia_Bold.ttf 48 L 38.0196 40.4681 23 ~ 18.0559 32.5497 12.2181 -Georgia_Bold.ttf 48 L 38.0196 40.4681 24 # 3.9821 32.2532 36.4457 -Georgia_Bold.ttf 48 L 38.0196 40.4681 25 O -1.2569 43.5511 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 26 ` -3.7327 15.1940 12.8060 -Georgia_Bold.ttf 48 L 38.0196 40.4681 27 @ 1.3751 47.4709 48.6411 -Georgia_Bold.ttf 48 L 38.0196 40.4681 28 F -0.1302 35.9650 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 29 S -1.0197 33.7437 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 30 p 11.2255 35.8397 42.0000 -Georgia_Bold.ttf 48 L 38.0196 40.4681 31 “ -2.5436 25.5049 20.0578 -Georgia_Bold.ttf 48 L 38.0196 40.4681 32 % -0.8856 46.1460 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 33 £ -1.2520 33.4471 41.6621 -Georgia_Bold.ttf 48 L 38.0196 40.4681 34 . 30.6697 11.2741 11.2741 -Georgia_Bold.ttf 48 L 38.0196 40.4681 35 2 8.8707 30.6653 31.6891 -Georgia_Bold.ttf 48 L 38.0196 40.4681 36 5 8.8592 31.3319 42.2500 -Georgia_Bold.ttf 48 L 38.0196 40.4681 37 m 11.4142 57.1474 29.1940 -Georgia_Bold.ttf 48 L 38.0196 40.4681 38 V 0.1832 47.4471 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 39 6 -1.2406 32.2997 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 40 w 12.3230 50.4457 28.0000 -Georgia_Bold.ttf 48 L 38.0196 40.4681 41 T -0.2145 38.0802 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 42 M 0.0105 56.5455 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 43 G -1.2423 45.5865 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 44 b -3.8762 35.7325 45.9198 -Georgia_Bold.ttf 48 L 38.0196 40.4681 45 9 8.9371 32.6330 42.3571 -Georgia_Bold.ttf 48 L 38.0196 40.4681 46 ; 12.3719 11.5049 39.3813 -Georgia_Bold.ttf 48 L 38.0196 40.4681 47 D -0.1537 44.3879 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 48 L -0.1438 38.0196 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 49 y 12.5547 35.2710 40.8060 -Georgia_Bold.ttf 48 L 38.0196 40.4681 50 ‘ -2.4326 11.5049 20.0578 -Georgia_Bold.ttf 48 L 38.0196 40.4681 51 \ -2.4646 24.9408 55.3288 -Georgia_Bold.ttf 48 L 38.0196 40.4681 52 R -0.2053 46.2759 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 53 < 7.9756 28.2500 32.5259 -Georgia_Bold.ttf 48 L 38.0196 40.4681 54 4 8.7393 34.6684 42.2500 -Georgia_Bold.ttf 48 L 38.0196 40.4681 55 8 -1.2798 33.3865 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 56 0 8.7008 34.6876 32.8830 -Georgia_Bold.ttf 48 L 38.0196 40.4681 57 A 0.2140 46.9902 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 58 E -0.0070 38.6908 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 59 B -0.0619 40.1348 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 60 v 12.3061 35.5017 28.0000 -Georgia_Bold.ttf 48 L 38.0196 40.4681 61 k -4.0268 37.9968 44.3879 -Georgia_Bold.ttf 48 L 38.0196 40.4681 62 J -0.1553 33.3235 41.6621 -Georgia_Bold.ttf 48 L 38.0196 40.4681 63 U -0.0558 46.9856 41.6621 -Georgia_Bold.ttf 48 L 38.0196 40.4681 64 j -4.3051 22.1730 57.6747 -Georgia_Bold.ttf 48 L 38.0196 40.4681 65 ( -2.7912 20.7483 52.5609 -Georgia_Bold.ttf 48 L 38.0196 40.4681 66 7 10.1096 30.0308 41.0560 -Georgia_Bold.ttf 48 L 38.0196 40.4681 67 § -1.2461 26.2192 48.4103 -Georgia_Bold.ttf 48 L 38.0196 40.4681 68 $ -3.4127 31.2486 51.7468 -Georgia_Bold.ttf 48 L 38.0196 40.4681 69 € -1.0536 41.2868 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 70 / -2.5223 24.9408 55.3288 -Georgia_Bold.ttf 48 L 38.0196 40.4681 71 C -1.3478 39.1489 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 72 * -1.2233 23.6397 21.2290 -Georgia_Bold.ttf 48 L 38.0196 40.4681 73 ” -2.9952 25.5049 20.0578 -Georgia_Bold.ttf 48 L 38.0196 40.4681 74 ? -1.4091 26.4727 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 75 { -2.8098 25.1716 52.5609 -Georgia_Bold.ttf 48 L 38.0196 40.4681 76 } -2.4802 25.1716 52.5609 -Georgia_Bold.ttf 48 L 38.0196 40.4681 77 , 31.0522 11.5049 20.7483 -Georgia_Bold.ttf 48 L 38.0196 40.4681 78 I -0.0881 21.7342 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 79 ° -1.1418 19.4471 18.8830 -Georgia_Bold.ttf 48 L 38.0196 40.4681 80 K 0.0190 47.4699 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 81 H 0.2438 49.0437 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 82 q 10.2904 36.1968 43.1940 -Georgia_Bold.ttf 48 L 38.0196 40.4681 83 & -0.9865 44.6379 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 84 ’ -2.5775 11.5049 20.0578 -Georgia_Bold.ttf 48 L 38.0196 40.4681 85 [ -2.8720 18.8830 52.5609 -Georgia_Bold.ttf 48 L 38.0196 40.4681 86 - 21.8709 17.3319 6.3078 -Georgia_Bold.ttf 48 L 38.0196 40.4681 87 Y 0.1484 46.5865 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 88 Q -1.3109 43.5511 53.5241 -Georgia_Bold.ttf 48 L 38.0196 40.4681 89 " -2.6051 23.0291 20.0578 -Georgia_Bold.ttf 48 L 38.0196 40.4681 90 ! -1.4117 10.9408 42.8561 -Georgia_Bold.ttf 48 L 38.0196 40.4681 91 x 12.1767 34.3078 28.0000 -Georgia_Bold.ttf 48 L 38.0196 40.4681 92 ) -3.0084 20.7483 52.5609 -Georgia_Bold.ttf 48 L 38.0196 40.4681 93 = 15.8773 30.3879 16.2451 -Georgia_Bold.ttf 48 L 38.0196 40.4681 94 + 7.9547 31.9572 31.9572 -Georgia_Bold.ttf 48 L 38.0196 40.4681 95 X -0.1283 47.1138 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 96 » 12.0394 28.0000 25.5049 -Georgia_Bold.ttf 48 L 38.0196 40.4681 97 ' -2.8890 9.3670 20.0578 -Georgia_Bold.ttf 48 L 38.0196 40.4681 98 ¢ 3.8815 29.6975 45.0592 -Georgia_Bold.ttf 48 L 38.0196 40.4681 99 Z -0.1932 40.1348 40.4681 -Georgia_Bold.ttf 48 L 38.0196 40.4681 100 > 7.9218 28.2500 32.5259 -Georgia_Bold.ttf 48 L 38.0196 40.4681 101 ® -1.2488 50.4457 50.4457 -Georgia_Bold.ttf 48 L 38.0196 40.4681 102 © -1.5723 50.4457 50.4457 -Georgia_Bold.ttf 48 L 38.0196 40.4681 103 ] -2.7844 18.8830 52.5609 -Georgia_Bold.ttf 48 L 38.0196 40.4681 104 é -3.9978 30.1152 45.5819 -Georgia_Bold.ttf 48 L 38.0196 40.4681 105 z 12.6354 28.0000 28.0000 -Georgia_Bold.ttf 48 L 38.0196 40.4681 106 _ 45.6886 41.0560 2.7259 -Georgia_Bold.ttf 48 L 38.0196 40.4681 107 ¥ -0.0065 44.1379 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 1 t -8.6001 22.8029 37.7468 -Georgia_Bold.ttf 49 y 35.2710 40.8060 2 h -16.5909 38.3109 44.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 3 a -1.3658 31.8795 30.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 4 n -1.1268 38.5434 29.1940 -Georgia_Bold.ttf 49 y 35.2710 40.8060 5 P -12.4173 37.4968 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 6 o -1.1268 32.6103 30.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 7 e -1.1281 30.1152 30.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 8 : 0.0731 11.2741 29.1940 -Georgia_Bold.ttf 49 y 35.2710 40.8060 9 r -0.9926 29.1940 29.1940 -Georgia_Bold.ttf 49 y 35.2710 40.8060 10 l -16.4834 18.7339 44.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 11 i -16.7798 18.7339 44.8687 -Georgia_Bold.ttf 49 y 35.2710 40.8060 12 1 -3.7905 23.6397 31.6891 -Georgia_Bold.ttf 49 y 35.2710 40.8060 13 | -16.2538 4.6330 56.5227 -Georgia_Bold.ttf 49 y 35.2710 40.8060 14 N -12.8420 47.1785 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 15 f -16.3981 28.2500 44.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 16 g -0.9152 32.5497 42.0000 -Georgia_Bold.ttf 49 y 35.2710 40.8060 17 d -16.3106 36.4457 45.5819 -Georgia_Bold.ttf 49 y 35.2710 40.8060 18 W -12.2235 68.0276 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 19 s -1.1440 25.8621 30.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 20 c -1.2311 28.9212 30.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 21 u -1.5219 38.2100 30.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 22 3 -3.6468 32.5259 42.2500 -Georgia_Bold.ttf 49 y 35.2710 40.8060 23 ~ 5.5769 32.5497 12.2181 -Georgia_Bold.ttf 49 y 35.2710 40.8060 24 # -8.5598 32.2532 36.4457 -Georgia_Bold.ttf 49 y 35.2710 40.8060 25 O -13.6718 43.5511 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 26 ` -16.6332 15.1940 12.8060 -Georgia_Bold.ttf 49 y 35.2710 40.8060 27 @ -10.8237 47.4709 48.6411 -Georgia_Bold.ttf 49 y 35.2710 40.8060 28 F -12.8068 35.9650 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 29 S -13.8196 33.7437 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 30 p -1.1204 35.8397 42.0000 -Georgia_Bold.ttf 49 y 35.2710 40.8060 31 “ -15.1751 25.5049 20.0578 -Georgia_Bold.ttf 49 y 35.2710 40.8060 32 % -13.5627 46.1460 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 33 £ -13.4970 33.4471 41.6621 -Georgia_Bold.ttf 49 y 35.2710 40.8060 34 . 17.8746 11.2741 11.2741 -Georgia_Bold.ttf 49 y 35.2710 40.8060 35 2 -3.6974 30.6653 31.6891 -Georgia_Bold.ttf 49 y 35.2710 40.8060 36 5 -3.5845 31.3319 42.2500 -Georgia_Bold.ttf 49 y 35.2710 40.8060 37 m -1.1606 57.1474 29.1940 -Georgia_Bold.ttf 49 y 35.2710 40.8060 38 V -12.3240 47.4471 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 39 6 -13.8075 32.2997 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 40 w -0.2794 50.4457 28.0000 -Georgia_Bold.ttf 49 y 35.2710 40.8060 41 T -12.4297 38.0802 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 42 M -12.5636 56.5455 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 43 G -13.6677 45.5865 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 44 b -16.3145 35.7325 45.9198 -Georgia_Bold.ttf 49 y 35.2710 40.8060 45 9 -3.5278 32.6330 42.3571 -Georgia_Bold.ttf 49 y 35.2710 40.8060 46 ; 0.0287 11.5049 39.3813 -Georgia_Bold.ttf 49 y 35.2710 40.8060 47 D -12.1530 44.3879 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 48 L -12.8386 38.0196 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 49 y 0.2508 35.2710 40.8060 -Georgia_Bold.ttf 49 y 35.2710 40.8060 50 ‘ -15.3695 11.5049 20.0578 -Georgia_Bold.ttf 49 y 35.2710 40.8060 51 \ -15.0690 24.9408 55.3288 -Georgia_Bold.ttf 49 y 35.2710 40.8060 52 R -12.4014 46.2759 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 53 < -4.5955 28.2500 32.5259 -Georgia_Bold.ttf 49 y 35.2710 40.8060 54 4 -3.4657 34.6684 42.2500 -Georgia_Bold.ttf 49 y 35.2710 40.8060 55 8 -13.5516 33.3865 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 56 0 -3.5877 34.6876 32.8830 -Georgia_Bold.ttf 49 y 35.2710 40.8060 57 A -12.0912 46.9902 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 58 E -12.5558 38.6908 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 59 B -12.3290 40.1348 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 60 v 0.2678 35.5017 28.0000 -Georgia_Bold.ttf 49 y 35.2710 40.8060 61 k -16.2463 37.9968 44.3879 -Georgia_Bold.ttf 49 y 35.2710 40.8060 62 J -12.3138 33.3235 41.6621 -Georgia_Bold.ttf 49 y 35.2710 40.8060 63 U -12.5598 46.9856 41.6621 -Georgia_Bold.ttf 49 y 35.2710 40.8060 64 j -16.8257 22.1730 57.6747 -Georgia_Bold.ttf 49 y 35.2710 40.8060 65 ( -15.3177 20.7483 52.5609 -Georgia_Bold.ttf 49 y 35.2710 40.8060 66 7 -2.7600 30.0308 41.0560 -Georgia_Bold.ttf 49 y 35.2710 40.8060 67 § -13.7363 26.2192 48.4103 -Georgia_Bold.ttf 49 y 35.2710 40.8060 68 $ -15.9007 31.2486 51.7468 -Georgia_Bold.ttf 49 y 35.2710 40.8060 69 € -14.1000 41.2868 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 70 / -15.0541 24.9408 55.3288 -Georgia_Bold.ttf 49 y 35.2710 40.8060 71 C -13.6561 39.1489 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 72 * -13.5820 23.6397 21.2290 -Georgia_Bold.ttf 49 y 35.2710 40.8060 73 ” -15.2227 25.5049 20.0578 -Georgia_Bold.ttf 49 y 35.2710 40.8060 74 ? -13.9898 26.4727 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 75 { -15.1426 25.1716 52.5609 -Georgia_Bold.ttf 49 y 35.2710 40.8060 76 } -15.2356 25.1716 52.5609 -Georgia_Bold.ttf 49 y 35.2710 40.8060 77 , 18.5010 11.5049 20.7483 -Georgia_Bold.ttf 49 y 35.2710 40.8060 78 I -12.1963 21.7342 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 79 ° -13.3609 19.4471 18.8830 -Georgia_Bold.ttf 49 y 35.2710 40.8060 80 K -12.4308 47.4699 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 81 H -12.6295 49.0437 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 82 q -2.5251 36.1968 43.1940 -Georgia_Bold.ttf 49 y 35.2710 40.8060 83 & -13.7498 44.6379 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 84 ’ -15.2115 11.5049 20.0578 -Georgia_Bold.ttf 49 y 35.2710 40.8060 85 [ -15.1587 18.8830 52.5609 -Georgia_Bold.ttf 49 y 35.2710 40.8060 86 - 9.2107 17.3319 6.3078 -Georgia_Bold.ttf 49 y 35.2710 40.8060 87 Y -12.5663 46.5865 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 88 Q -13.7529 43.5511 53.5241 -Georgia_Bold.ttf 49 y 35.2710 40.8060 89 " -14.8186 23.0291 20.0578 -Georgia_Bold.ttf 49 y 35.2710 40.8060 90 ! -13.6374 10.9408 42.8561 -Georgia_Bold.ttf 49 y 35.2710 40.8060 91 x 0.1118 34.3078 28.0000 -Georgia_Bold.ttf 49 y 35.2710 40.8060 92 ) -15.0869 20.7483 52.5609 -Georgia_Bold.ttf 49 y 35.2710 40.8060 93 = 3.3974 30.3879 16.2451 -Georgia_Bold.ttf 49 y 35.2710 40.8060 94 + -4.2102 31.9572 31.9572 -Georgia_Bold.ttf 49 y 35.2710 40.8060 95 X -12.2579 47.1138 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 96 » -0.2267 28.0000 25.5049 -Georgia_Bold.ttf 49 y 35.2710 40.8060 97 ' -15.4518 9.3670 20.0578 -Georgia_Bold.ttf 49 y 35.2710 40.8060 98 ¢ -8.4874 29.6975 45.0592 -Georgia_Bold.ttf 49 y 35.2710 40.8060 99 Z -12.0409 40.1348 40.4681 -Georgia_Bold.ttf 49 y 35.2710 40.8060 100 > -4.9096 28.2500 32.5259 -Georgia_Bold.ttf 49 y 35.2710 40.8060 101 ® -14.1350 50.4457 50.4457 -Georgia_Bold.ttf 49 y 35.2710 40.8060 102 © -14.1167 50.4457 50.4457 -Georgia_Bold.ttf 49 y 35.2710 40.8060 103 ] -15.6032 18.8830 52.5609 -Georgia_Bold.ttf 49 y 35.2710 40.8060 104 é -16.4302 30.1152 45.5819 -Georgia_Bold.ttf 49 y 35.2710 40.8060 105 z -0.1403 28.0000 28.0000 -Georgia_Bold.ttf 49 y 35.2710 40.8060 106 _ 32.9931 41.0560 2.7259 -Georgia_Bold.ttf 49 y 35.2710 40.8060 107 ¥ -12.3439 44.1379 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 1 t 6.5994 22.8029 37.7468 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 2 h -1.1220 38.3109 44.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 3 a 14.0417 31.8795 30.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 4 n 14.0065 38.5434 29.1940 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 5 P 2.6517 37.4968 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 6 o 13.8136 32.6103 30.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 7 e 14.0955 30.1152 30.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 8 : 15.3246 11.2741 29.1940 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 9 r 14.1704 29.1940 29.1940 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 10 l -1.3658 18.7339 44.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 11 i -1.8314 18.7339 44.8687 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 12 1 11.5458 23.6397 31.6891 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 13 | -1.1810 4.6330 56.5227 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 14 N 2.7259 47.1785 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 15 f -1.1870 28.2500 44.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 16 g 14.0167 32.5497 42.0000 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 17 d -1.0327 36.4457 45.5819 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 18 W 2.8000 68.0276 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 19 s 14.1788 25.8621 30.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 20 c 14.1567 28.9212 30.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 21 u 13.9643 38.2100 30.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 22 3 11.3339 32.5259 42.2500 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 23 ~ 20.9875 32.5497 12.2181 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 24 # 6.7840 32.2532 36.4457 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 25 O 1.4364 43.5511 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 26 ` -1.2650 15.1940 12.8060 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 27 @ 4.3526 47.4709 48.6411 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 28 F 2.8487 35.9650 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 29 S 1.3410 33.7437 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 30 p 13.9810 35.8397 42.0000 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 31 “ -0.0038 25.5049 20.0578 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 32 % 1.5319 46.1460 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 33 £ 1.4507 33.4471 41.6621 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 34 . 33.0313 11.2741 11.2741 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 35 2 11.5791 30.6653 31.6891 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 36 5 11.3685 31.3319 42.2500 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 37 m 13.9264 57.1474 29.1940 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 38 V 2.7643 47.4471 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 39 6 1.4486 32.2997 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 40 w 15.2300 50.4457 28.0000 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 41 T 2.8455 38.0802 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 42 M 2.7259 56.5455 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 43 G 1.4539 45.5865 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 44 b -1.2083 35.7325 45.9198 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 45 9 11.3320 32.6330 42.3571 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 46 ; 15.2055 11.5049 39.3813 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 47 D 2.9019 44.3879 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 48 L 2.8213 38.0196 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 49 y 15.3703 35.2710 40.8060 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 50 ‘ 0.1269 11.5049 20.0578 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 51 \ -0.0246 24.9408 55.3288 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 52 R 2.6734 46.2759 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 53 < 10.5872 28.2500 32.5259 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 54 4 11.5221 34.6684 42.2500 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 55 8 1.5004 33.3865 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 56 0 11.2557 34.6876 32.8830 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 57 A 2.8904 46.9902 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 58 E 3.1733 38.6908 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 59 B 2.8509 40.1348 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 60 v 15.1074 35.5017 28.0000 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 61 k -1.1523 37.9968 44.3879 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 62 J 2.8000 33.3235 41.6621 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 63 U 2.7189 46.9856 41.6621 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 64 j -1.5876 22.1730 57.6747 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 65 ( 0.0710 20.7483 52.5609 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 66 7 12.9000 30.0308 41.0560 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 67 § 1.7910 26.2192 48.4103 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 68 $ -0.4952 31.2486 51.7468 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 69 € 1.3993 41.2868 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 70 / 0.0000 24.9408 55.3288 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 71 C 1.3213 39.1489 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 72 * 1.4515 23.6397 21.2290 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 73 ” 0.0742 25.5049 20.0578 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 74 ? 1.2932 26.4727 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 75 { 0.0038 25.1716 52.5609 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 76 } -0.0258 25.1716 52.5609 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 77 , 33.8603 11.5049 20.7483 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 78 I 2.7605 21.7342 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 79 ° 1.4486 19.4471 18.8830 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 80 K 2.6100 47.4699 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 81 H 2.6796 49.0437 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 82 q 12.8060 36.1968 43.1940 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 83 & 1.4962 44.6379 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 84 ’ 0.0543 11.5049 20.0578 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 85 [ 0.0651 18.8830 52.5609 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 86 - 24.5609 17.3319 6.3078 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 87 Y 2.8000 46.5865 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 88 Q 1.4133 43.5511 53.5241 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 89 " -0.2505 23.0291 20.0578 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 90 ! 1.4903 10.9408 42.8561 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 91 x 15.2824 34.3078 28.0000 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 92 ) -0.1238 20.7483 52.5609 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 93 = 18.7066 30.3879 16.2451 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 94 + 10.8687 31.9572 31.9572 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 95 X 2.7259 47.1138 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 96 » 15.0003 28.0000 25.5049 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 97 ' -0.2135 9.3670 20.0578 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 98 ¢ 6.5415 29.6975 45.0592 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 99 Z 2.6689 40.1348 40.4681 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 100 > 10.7786 28.2500 32.5259 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 101 ® 1.3696 50.4457 50.4457 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 102 © 1.3671 50.4457 50.4457 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 103 ] 0.1333 18.8830 52.5609 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 104 é -1.2846 30.1152 45.5819 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 105 z 15.0971 28.0000 28.0000 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 106 _ 48.1284 41.0560 2.7259 -Georgia_Bold.ttf 50 ‘ 11.5049 20.0578 107 ¥ 2.6842 44.1379 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 1 t 6.7366 22.8029 37.7468 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 2 h -1.2236 38.3109 44.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 3 a 14.0968 31.8795 30.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 4 n 13.6584 38.5434 29.1940 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 5 P 2.3648 37.4968 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 6 o 13.7311 32.6103 30.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 7 e 14.2621 30.1152 30.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 8 : 14.7802 11.2741 29.1940 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 9 r 13.9272 29.1940 29.1940 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 10 l -1.4007 18.7339 44.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 11 i -1.8242 18.7339 44.8687 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 12 1 11.3442 23.6397 31.6891 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 13 | -1.1216 4.6330 56.5227 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 14 N 2.9538 47.1785 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 15 f -1.0451 28.2500 44.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 16 g 13.8917 32.5497 42.0000 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 17 d -1.4126 36.4457 45.5819 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 18 W 2.8750 68.0276 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 19 s 14.3095 25.8621 30.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 20 c 13.9629 28.9212 30.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 21 u 13.7342 38.2100 30.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 22 3 11.4536 32.5259 42.2500 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 23 ~ 21.0717 32.5497 12.2181 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 24 # 6.6483 32.2532 36.4457 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 25 O 1.4669 43.5511 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 26 ` -1.1138 15.1940 12.8060 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 27 @ 3.8765 47.4709 48.6411 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 28 F 2.7259 35.9650 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 29 S 1.6498 33.7437 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 30 p 13.9425 35.8397 42.0000 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 31 “ -0.1801 25.5049 20.0578 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 32 % 1.4448 46.1460 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 33 £ 1.6680 33.4471 41.6621 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 34 . 32.9326 11.2741 11.2741 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 35 2 11.6299 30.6653 31.6891 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 36 5 11.2537 31.3319 42.2500 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 37 m 14.0129 57.1474 29.1940 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 38 V 2.3788 47.4471 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 39 6 1.3531 32.2997 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 40 w 15.1128 50.4457 28.0000 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 41 T 2.6477 38.0802 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 42 M 2.7637 56.5455 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 43 G 1.5195 45.5865 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 44 b -1.1324 35.7325 45.9198 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 45 9 11.2409 32.6330 42.3571 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 46 ; 15.3283 11.5049 39.3813 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 47 D 2.7189 44.3879 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 48 L 2.4707 38.0196 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 49 y 15.1583 35.2710 40.8060 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 50 ‘ 0.0357 11.5049 20.0578 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 51 \ -0.1365 24.9408 55.3288 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 52 R 3.0275 46.2759 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 53 < 10.5713 28.2500 32.5259 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 54 4 11.4958 34.6684 42.2500 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 55 8 1.4644 33.3865 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 56 0 11.6280 34.6876 32.8830 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 57 A 2.6349 46.9902 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 58 E 2.8847 38.6908 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 59 B 2.6003 40.1348 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 60 v 15.4454 35.5017 28.0000 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 61 k -1.1751 37.9968 44.3879 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 62 J 2.8605 33.3235 41.6621 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 63 U 2.6041 46.9856 41.6621 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 64 j -1.4371 22.1730 57.6747 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 65 ( 0.0710 20.7483 52.5609 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 66 7 12.9577 30.0308 41.0560 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 67 § 1.5442 26.2192 48.4103 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 68 $ -0.5231 31.2486 51.7468 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 69 € 1.3450 41.2868 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 70 / 0.0000 24.9408 55.3288 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 71 C 1.6075 39.1489 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 72 * 1.5654 23.6397 21.2290 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 73 ” 0.0455 25.5049 20.0578 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 74 ? 1.5279 26.4727 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 75 { 0.3071 25.1716 52.5609 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 76 } 0.0468 25.1716 52.5609 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 77 , 33.7655 11.5049 20.7483 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 78 I 2.8886 21.7342 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 79 ° 1.2265 19.4471 18.8830 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 80 K 2.6030 47.4699 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 81 H 2.8602 49.0437 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 82 q 12.5062 36.1968 43.1940 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 83 & 1.3531 44.6379 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 84 ’ -0.0417 11.5049 20.0578 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 85 [ -0.2030 18.8830 52.5609 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 86 - 24.4735 17.3319 6.3078 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 87 Y 2.7259 46.5865 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 88 Q 1.5494 43.5511 53.5241 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 89 " -0.0455 23.0291 20.0578 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 90 ! 1.3573 10.9408 42.8561 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 91 x 15.2048 34.3078 28.0000 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 92 ) -0.0930 20.7483 52.5609 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 93 = 18.6715 30.3879 16.2451 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 94 + 10.9905 31.9572 31.9572 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 95 X 2.4092 47.1138 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 96 » 14.6277 28.0000 25.5049 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 97 ' -0.0844 9.3670 20.0578 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 98 ¢ 7.0470 29.6975 45.0592 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 99 Z 2.6463 40.1348 40.4681 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 100 > 10.9197 28.2500 32.5259 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 101 ® 1.0128 50.4457 50.4457 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 102 © 0.9912 50.4457 50.4457 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 103 ] -0.1062 18.8830 52.5609 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 104 é -1.2612 30.1152 45.5819 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 105 z 14.8801 28.0000 28.0000 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 106 _ 48.5885 41.0560 2.7259 -Georgia_Bold.ttf 51 \ 24.9408 55.3288 107 ¥ 2.8052 44.1379 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 1 t 3.8615 22.8029 37.7468 -Georgia_Bold.ttf 52 R 46.2759 40.4681 2 h -3.9820 38.3109 44.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 3 a 11.4719 31.8795 30.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 4 n 11.6890 38.5434 29.1940 -Georgia_Bold.ttf 52 R 46.2759 40.4681 5 P -0.2425 37.4968 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 6 o 11.3696 32.6103 30.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 7 e 11.2779 30.1152 30.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 8 : 12.2221 11.2741 29.1940 -Georgia_Bold.ttf 52 R 46.2759 40.4681 9 r 11.2976 29.1940 29.1940 -Georgia_Bold.ttf 52 R 46.2759 40.4681 10 l -4.1357 18.7339 44.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 11 i -4.1167 18.7339 44.8687 -Georgia_Bold.ttf 52 R 46.2759 40.4681 12 1 8.7775 23.6397 31.6891 -Georgia_Bold.ttf 52 R 46.2759 40.4681 13 | -4.0875 4.6330 56.5227 -Georgia_Bold.ttf 52 R 46.2759 40.4681 14 N -0.2844 47.1785 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 15 f -4.2483 28.2500 44.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 16 g 11.3751 32.5497 42.0000 -Georgia_Bold.ttf 52 R 46.2759 40.4681 17 d -4.1715 36.4457 45.5819 -Georgia_Bold.ttf 52 R 46.2759 40.4681 18 W 0.1732 68.0276 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 19 s 11.4547 25.8621 30.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 20 c 11.5771 28.9212 30.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 21 u 11.1324 38.2100 30.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 22 3 8.5204 32.5259 42.2500 -Georgia_Bold.ttf 52 R 46.2759 40.4681 23 ~ 17.9452 32.5497 12.2181 -Georgia_Bold.ttf 52 R 46.2759 40.4681 24 # 3.6605 32.2532 36.4457 -Georgia_Bold.ttf 52 R 46.2759 40.4681 25 O -0.9077 43.5511 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 26 ` -3.9905 15.1940 12.8060 -Georgia_Bold.ttf 52 R 46.2759 40.4681 27 @ 1.1666 47.4709 48.6411 -Georgia_Bold.ttf 52 R 46.2759 40.4681 28 F 0.0908 35.9650 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 29 S -1.0054 33.7437 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 30 p 11.3704 35.8397 42.0000 -Georgia_Bold.ttf 52 R 46.2759 40.4681 31 “ -2.7151 25.5049 20.0578 -Georgia_Bold.ttf 52 R 46.2759 40.4681 32 % -1.1958 46.1460 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 33 £ -1.0351 33.4471 41.6621 -Georgia_Bold.ttf 52 R 46.2759 40.4681 34 . 30.3885 11.2741 11.2741 -Georgia_Bold.ttf 52 R 46.2759 40.4681 35 2 8.7296 30.6653 31.6891 -Georgia_Bold.ttf 52 R 46.2759 40.4681 36 5 9.0731 31.3319 42.2500 -Georgia_Bold.ttf 52 R 46.2759 40.4681 37 m 11.4551 57.1474 29.1940 -Georgia_Bold.ttf 52 R 46.2759 40.4681 38 V -0.0699 47.4471 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 39 6 -1.4204 32.2997 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 40 w 12.8063 50.4457 28.0000 -Georgia_Bold.ttf 52 R 46.2759 40.4681 41 T 0.2191 38.0802 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 42 M 0.0937 56.5455 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 43 G -1.0545 45.5865 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 44 b -3.9328 35.7325 45.9198 -Georgia_Bold.ttf 52 R 46.2759 40.4681 45 9 8.8755 32.6330 42.3571 -Georgia_Bold.ttf 52 R 46.2759 40.4681 46 ; 12.3269 11.5049 39.3813 -Georgia_Bold.ttf 52 R 46.2759 40.4681 47 D -0.0795 44.3879 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 48 L -0.1969 38.0196 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 49 y 12.6614 35.2710 40.8060 -Georgia_Bold.ttf 52 R 46.2759 40.4681 50 ‘ -2.5465 11.5049 20.0578 -Georgia_Bold.ttf 52 R 46.2759 40.4681 51 \ -2.4774 24.9408 55.3288 -Georgia_Bold.ttf 52 R 46.2759 40.4681 52 R 0.2642 46.2759 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 53 < 8.2511 28.2500 32.5259 -Georgia_Bold.ttf 52 R 46.2759 40.4681 54 4 8.8634 34.6684 42.2500 -Georgia_Bold.ttf 52 R 46.2759 40.4681 55 8 -0.8571 33.3865 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 56 0 8.8513 34.6876 32.8830 -Georgia_Bold.ttf 52 R 46.2759 40.4681 57 A -0.3791 46.9902 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 58 E 0.0820 38.6908 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 59 B -0.1237 40.1348 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 60 v 12.3728 35.5017 28.0000 -Georgia_Bold.ttf 52 R 46.2759 40.4681 61 k -3.8287 37.9968 44.3879 -Georgia_Bold.ttf 52 R 46.2759 40.4681 62 J 0.0051 33.3235 41.6621 -Georgia_Bold.ttf 52 R 46.2759 40.4681 63 U 0.1184 46.9856 41.6621 -Georgia_Bold.ttf 52 R 46.2759 40.4681 64 j -4.5216 22.1730 57.6747 -Georgia_Bold.ttf 52 R 46.2759 40.4681 65 ( -2.7175 20.7483 52.5609 -Georgia_Bold.ttf 52 R 46.2759 40.4681 66 7 9.6997 30.0308 41.0560 -Georgia_Bold.ttf 52 R 46.2759 40.4681 67 § -0.9232 26.2192 48.4103 -Georgia_Bold.ttf 52 R 46.2759 40.4681 68 $ -3.0884 31.2486 51.7468 -Georgia_Bold.ttf 52 R 46.2759 40.4681 69 € -1.0679 41.2868 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 70 / -2.9737 24.9408 55.3288 -Georgia_Bold.ttf 52 R 46.2759 40.4681 71 C -1.1953 39.1489 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 72 * -1.0278 23.6397 21.2290 -Georgia_Bold.ttf 52 R 46.2759 40.4681 73 ” -2.7616 25.5049 20.0578 -Georgia_Bold.ttf 52 R 46.2759 40.4681 74 ? -1.0730 26.4727 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 75 { -2.6119 25.1716 52.5609 -Georgia_Bold.ttf 52 R 46.2759 40.4681 76 } -2.6039 25.1716 52.5609 -Georgia_Bold.ttf 52 R 46.2759 40.4681 77 , 30.9307 11.5049 20.7483 -Georgia_Bold.ttf 52 R 46.2759 40.4681 78 I -0.1194 21.7342 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 79 ° -0.9883 19.4471 18.8830 -Georgia_Bold.ttf 52 R 46.2759 40.4681 80 K 0.0801 47.4699 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 81 H 0.2043 49.0437 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 82 q 10.2498 36.1968 43.1940 -Georgia_Bold.ttf 52 R 46.2759 40.4681 83 & -1.0289 44.6379 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 84 ’ -2.3954 11.5049 20.0578 -Georgia_Bold.ttf 52 R 46.2759 40.4681 85 [ -2.9902 18.8830 52.5609 -Georgia_Bold.ttf 52 R 46.2759 40.4681 86 - 21.9529 17.3319 6.3078 -Georgia_Bold.ttf 52 R 46.2759 40.4681 87 Y 0.0110 46.5865 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 88 Q -1.3649 43.5511 53.5241 -Georgia_Bold.ttf 52 R 46.2759 40.4681 89 " -2.6355 23.0291 20.0578 -Georgia_Bold.ttf 52 R 46.2759 40.4681 90 ! -1.2716 10.9408 42.8561 -Georgia_Bold.ttf 52 R 46.2759 40.4681 91 x 12.6080 34.3078 28.0000 -Georgia_Bold.ttf 52 R 46.2759 40.4681 92 ) -2.3812 20.7483 52.5609 -Georgia_Bold.ttf 52 R 46.2759 40.4681 93 = 15.9658 30.3879 16.2451 -Georgia_Bold.ttf 52 R 46.2759 40.4681 94 + 8.1859 31.9572 31.9572 -Georgia_Bold.ttf 52 R 46.2759 40.4681 95 X 0.1892 47.1138 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 96 » 12.1325 28.0000 25.5049 -Georgia_Bold.ttf 52 R 46.2759 40.4681 97 ' -2.6334 9.3670 20.0578 -Georgia_Bold.ttf 52 R 46.2759 40.4681 98 ¢ 4.4192 29.6975 45.0592 -Georgia_Bold.ttf 52 R 46.2759 40.4681 99 Z -0.0398 40.1348 40.4681 -Georgia_Bold.ttf 52 R 46.2759 40.4681 100 > 7.8058 28.2500 32.5259 -Georgia_Bold.ttf 52 R 46.2759 40.4681 101 ® -1.4955 50.4457 50.4457 -Georgia_Bold.ttf 52 R 46.2759 40.4681 102 © -1.5316 50.4457 50.4457 -Georgia_Bold.ttf 52 R 46.2759 40.4681 103 ] -2.4083 18.8830 52.5609 -Georgia_Bold.ttf 52 R 46.2759 40.4681 104 é -3.7865 30.1152 45.5819 -Georgia_Bold.ttf 52 R 46.2759 40.4681 105 z 12.4703 28.0000 28.0000 -Georgia_Bold.ttf 52 R 46.2759 40.4681 106 _ 45.6537 41.0560 2.7259 -Georgia_Bold.ttf 52 R 46.2759 40.4681 107 ¥ 0.0214 44.1379 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 1 t -3.5855 22.8029 37.7468 -Georgia_Bold.ttf 53 < 28.2500 32.5259 2 h -11.7621 38.3109 44.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 3 a 3.4126 31.8795 30.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 4 n 3.3583 38.5434 29.1940 -Georgia_Bold.ttf 53 < 28.2500 32.5259 5 P -8.0021 37.4968 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 6 o 3.4997 32.6103 30.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 7 e 3.6475 30.1152 30.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 8 : 4.4366 11.2741 29.1940 -Georgia_Bold.ttf 53 < 28.2500 32.5259 9 r 3.2696 29.1940 29.1940 -Georgia_Bold.ttf 53 < 28.2500 32.5259 10 l -11.8960 18.7339 44.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 11 i -12.3243 18.7339 44.8687 -Georgia_Bold.ttf 53 < 28.2500 32.5259 12 1 0.7922 23.6397 31.6891 -Georgia_Bold.ttf 53 < 28.2500 32.5259 13 | -11.7310 4.6330 56.5227 -Georgia_Bold.ttf 53 < 28.2500 32.5259 14 N -8.1175 47.1785 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 15 f -11.7781 28.2500 44.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 16 g 3.4855 32.5497 42.0000 -Georgia_Bold.ttf 53 < 28.2500 32.5259 17 d -11.6970 36.4457 45.5819 -Georgia_Bold.ttf 53 < 28.2500 32.5259 18 W -7.9740 68.0276 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 19 s 3.3029 25.8621 30.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 20 c 3.2161 28.9212 30.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 21 u 3.1262 38.2100 30.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 22 3 0.7672 32.5259 42.2500 -Georgia_Bold.ttf 53 < 28.2500 32.5259 23 ~ 10.2736 32.5497 12.2181 -Georgia_Bold.ttf 53 < 28.2500 32.5259 24 # -3.9855 32.2532 36.4457 -Georgia_Bold.ttf 53 < 28.2500 32.5259 25 O -9.0238 43.5511 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 26 ` -11.5585 15.1940 12.8060 -Georgia_Bold.ttf 53 < 28.2500 32.5259 27 @ -6.5254 47.4709 48.6411 -Georgia_Bold.ttf 53 < 28.2500 32.5259 28 F -7.7398 35.9650 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 29 S -8.9267 33.7437 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 30 p 3.5857 35.8397 42.0000 -Georgia_Bold.ttf 53 < 28.2500 32.5259 31 “ -10.4683 25.5049 20.0578 -Georgia_Bold.ttf 53 < 28.2500 32.5259 32 % -9.2352 46.1460 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 33 £ -9.3534 33.4471 41.6621 -Georgia_Bold.ttf 53 < 28.2500 32.5259 34 . 22.7130 11.2741 11.2741 -Georgia_Bold.ttf 53 < 28.2500 32.5259 35 2 0.8472 30.6653 31.6891 -Georgia_Bold.ttf 53 < 28.2500 32.5259 36 5 1.1288 31.3319 42.2500 -Georgia_Bold.ttf 53 < 28.2500 32.5259 37 m 3.3487 57.1474 29.1940 -Georgia_Bold.ttf 53 < 28.2500 32.5259 38 V -8.1275 47.4471 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 39 6 -9.1362 32.2997 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 40 w 4.5767 50.4457 28.0000 -Georgia_Bold.ttf 53 < 28.2500 32.5259 41 T -7.5794 38.0802 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 42 M -8.0716 56.5455 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 43 G -9.2988 45.5865 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 44 b -11.8569 35.7325 45.9198 -Georgia_Bold.ttf 53 < 28.2500 32.5259 45 9 0.9298 32.6330 42.3571 -Georgia_Bold.ttf 53 < 28.2500 32.5259 46 ; 4.2383 11.5049 39.3813 -Georgia_Bold.ttf 53 < 28.2500 32.5259 47 D -7.8288 44.3879 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 48 L -8.1698 38.0196 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 49 y 4.6861 35.2710 40.8060 -Georgia_Bold.ttf 53 < 28.2500 32.5259 50 ‘ -10.4533 11.5049 20.0578 -Georgia_Bold.ttf 53 < 28.2500 32.5259 51 \ -10.3623 24.9408 55.3288 -Georgia_Bold.ttf 53 < 28.2500 32.5259 52 R -8.0640 46.2759 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 53 < 0.3415 28.2500 32.5259 -Georgia_Bold.ttf 53 < 28.2500 32.5259 54 4 0.7182 34.6684 42.2500 -Georgia_Bold.ttf 53 < 28.2500 32.5259 55 8 -9.2488 33.3865 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 56 0 0.6612 34.6876 32.8830 -Georgia_Bold.ttf 53 < 28.2500 32.5259 57 A -8.0067 46.9902 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 58 E -7.9303 38.6908 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 59 B -7.8183 40.1348 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 60 v 4.5074 35.5017 28.0000 -Georgia_Bold.ttf 53 < 28.2500 32.5259 61 k -11.8166 37.9968 44.3879 -Georgia_Bold.ttf 53 < 28.2500 32.5259 62 J -8.0158 33.3235 41.6621 -Georgia_Bold.ttf 53 < 28.2500 32.5259 63 U -7.9391 46.9856 41.6621 -Georgia_Bold.ttf 53 < 28.2500 32.5259 64 j -12.5646 22.1730 57.6747 -Georgia_Bold.ttf 53 < 28.2500 32.5259 65 ( -10.4304 20.7483 52.5609 -Georgia_Bold.ttf 53 < 28.2500 32.5259 66 7 1.6997 30.0308 41.0560 -Georgia_Bold.ttf 53 < 28.2500 32.5259 67 § -9.5911 26.2192 48.4103 -Georgia_Bold.ttf 53 < 28.2500 32.5259 68 $ -11.2566 31.2486 51.7468 -Georgia_Bold.ttf 53 < 28.2500 32.5259 69 € -9.2185 41.2868 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 70 / -10.4427 24.9408 55.3288 -Georgia_Bold.ttf 53 < 28.2500 32.5259 71 C -9.1376 39.1489 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 72 * -9.0878 23.6397 21.2290 -Georgia_Bold.ttf 53 < 28.2500 32.5259 73 ” -10.7562 25.5049 20.0578 -Georgia_Bold.ttf 53 < 28.2500 32.5259 74 ? -9.2402 26.4727 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 75 { -10.7140 25.1716 52.5609 -Georgia_Bold.ttf 53 < 28.2500 32.5259 76 } -10.7189 25.1716 52.5609 -Georgia_Bold.ttf 53 < 28.2500 32.5259 77 , 23.1710 11.5049 20.7483 -Georgia_Bold.ttf 53 < 28.2500 32.5259 78 I -8.1186 21.7342 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 79 ° -9.1601 19.4471 18.8830 -Georgia_Bold.ttf 53 < 28.2500 32.5259 80 K -7.9166 47.4699 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 81 H -7.9734 49.0437 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 82 q 2.3006 36.1968 43.1940 -Georgia_Bold.ttf 53 < 28.2500 32.5259 83 & -8.8611 44.6379 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 84 ’ -10.6165 11.5049 20.0578 -Georgia_Bold.ttf 53 < 28.2500 32.5259 85 [ -10.5796 18.8830 52.5609 -Georgia_Bold.ttf 53 < 28.2500 32.5259 86 - 13.5718 17.3319 6.3078 -Georgia_Bold.ttf 53 < 28.2500 32.5259 87 Y -7.8352 46.5865 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 88 Q -8.9536 43.5511 53.5241 -Georgia_Bold.ttf 53 < 28.2500 32.5259 89 " -10.8237 23.0291 20.0578 -Georgia_Bold.ttf 53 < 28.2500 32.5259 90 ! -8.8689 10.9408 42.8561 -Georgia_Bold.ttf 53 < 28.2500 32.5259 91 x 4.6377 34.3078 28.0000 -Georgia_Bold.ttf 53 < 28.2500 32.5259 92 ) -10.6947 20.7483 52.5609 -Georgia_Bold.ttf 53 < 28.2500 32.5259 93 = 7.8284 30.3879 16.2451 -Georgia_Bold.ttf 53 < 28.2500 32.5259 94 + 0.2859 31.9572 31.9572 -Georgia_Bold.ttf 53 < 28.2500 32.5259 95 X -7.9279 47.1138 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 96 » 4.4806 28.0000 25.5049 -Georgia_Bold.ttf 53 < 28.2500 32.5259 97 ' -10.8007 9.3670 20.0578 -Georgia_Bold.ttf 53 < 28.2500 32.5259 98 ¢ -4.0516 29.6975 45.0592 -Georgia_Bold.ttf 53 < 28.2500 32.5259 99 Z -8.0799 40.1348 40.4681 -Georgia_Bold.ttf 53 < 28.2500 32.5259 100 > 0.2089 28.2500 32.5259 -Georgia_Bold.ttf 53 < 28.2500 32.5259 101 ® -9.4579 50.4457 50.4457 -Georgia_Bold.ttf 53 < 28.2500 32.5259 102 © -9.7117 50.4457 50.4457 -Georgia_Bold.ttf 53 < 28.2500 32.5259 103 ] -10.6493 18.8830 52.5609 -Georgia_Bold.ttf 53 < 28.2500 32.5259 104 é -11.7376 30.1152 45.5819 -Georgia_Bold.ttf 53 < 28.2500 32.5259 105 z 4.4753 28.0000 28.0000 -Georgia_Bold.ttf 53 < 28.2500 32.5259 106 _ 37.6752 41.0560 2.7259 -Georgia_Bold.ttf 53 < 28.2500 32.5259 107 ¥ -8.0061 44.1379 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 1 t -4.6192 22.8029 37.7468 -Georgia_Bold.ttf 54 4 34.6684 42.2500 2 h -13.1613 38.3109 44.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 3 a 2.3682 31.8795 30.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 4 n 2.4325 38.5434 29.1940 -Georgia_Bold.ttf 54 4 34.6684 42.2500 5 P -8.7791 37.4968 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 6 o 2.4594 32.6103 30.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 7 e 2.5132 30.1152 30.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 8 : 3.8273 11.2741 29.1940 -Georgia_Bold.ttf 54 4 34.6684 42.2500 9 r 2.7316 29.1940 29.1940 -Georgia_Bold.ttf 54 4 34.6684 42.2500 10 l -13.0774 18.7339 44.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 11 i -13.0568 18.7339 44.8687 -Georgia_Bold.ttf 54 4 34.6684 42.2500 12 1 0.0182 23.6397 31.6891 -Georgia_Bold.ttf 54 4 34.6684 42.2500 13 | -12.4301 4.6330 56.5227 -Georgia_Bold.ttf 54 4 34.6684 42.2500 14 N -8.9239 47.1785 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 15 f -12.7156 28.2500 44.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 16 g 2.3289 32.5497 42.0000 -Georgia_Bold.ttf 54 4 34.6684 42.2500 17 d -12.6528 36.4457 45.5819 -Georgia_Bold.ttf 54 4 34.6684 42.2500 18 W -8.7700 68.0276 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 19 s 2.3233 25.8621 30.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 20 c 2.5459 28.9212 30.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 21 u 2.3625 38.2100 30.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 22 3 0.0256 32.5259 42.2500 -Georgia_Bold.ttf 54 4 34.6684 42.2500 23 ~ 8.9866 32.5497 12.2181 -Georgia_Bold.ttf 54 4 34.6684 42.2500 24 # -4.8878 32.2532 36.4457 -Georgia_Bold.ttf 54 4 34.6684 42.2500 25 O -9.6518 43.5511 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 26 ` -12.5983 15.1940 12.8060 -Georgia_Bold.ttf 54 4 34.6684 42.2500 27 @ -7.6829 47.4709 48.6411 -Georgia_Bold.ttf 54 4 34.6684 42.2500 28 F -8.6457 35.9650 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 29 S -9.9587 33.7437 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 30 p 2.5923 35.8397 42.0000 -Georgia_Bold.ttf 54 4 34.6684 42.2500 31 “ -11.5867 25.5049 20.0578 -Georgia_Bold.ttf 54 4 34.6684 42.2500 32 % -9.8919 46.1460 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 33 £ -10.3002 33.4471 41.6621 -Georgia_Bold.ttf 54 4 34.6684 42.2500 34 . 21.8916 11.2741 11.2741 -Georgia_Bold.ttf 54 4 34.6684 42.2500 35 2 -0.0385 30.6653 31.6891 -Georgia_Bold.ttf 54 4 34.6684 42.2500 36 5 -0.1242 31.3319 42.2500 -Georgia_Bold.ttf 54 4 34.6684 42.2500 37 m 2.2894 57.1474 29.1940 -Georgia_Bold.ttf 54 4 34.6684 42.2500 38 V -8.3728 47.4471 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 39 6 -9.8300 32.2997 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 40 w 3.7488 50.4457 28.0000 -Georgia_Bold.ttf 54 4 34.6684 42.2500 41 T -8.8745 38.0802 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 42 M -8.6508 56.5455 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 43 G -9.8891 45.5865 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 44 b -12.5446 35.7325 45.9198 -Georgia_Bold.ttf 54 4 34.6684 42.2500 45 9 0.1295 32.6330 42.3571 -Georgia_Bold.ttf 54 4 34.6684 42.2500 46 ; 3.6269 11.5049 39.3813 -Georgia_Bold.ttf 54 4 34.6684 42.2500 47 D -8.8820 44.3879 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 48 L -8.9987 38.0196 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 49 y 3.7530 35.2710 40.8060 -Georgia_Bold.ttf 54 4 34.6684 42.2500 50 ‘ -11.3033 11.5049 20.0578 -Georgia_Bold.ttf 54 4 34.6684 42.2500 51 \ -11.5542 24.9408 55.3288 -Georgia_Bold.ttf 54 4 34.6684 42.2500 52 R -8.7492 46.2759 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 53 < -0.8942 28.2500 32.5259 -Georgia_Bold.ttf 54 4 34.6684 42.2500 54 4 -0.0982 34.6684 42.2500 -Georgia_Bold.ttf 54 4 34.6684 42.2500 55 8 -9.8337 33.3865 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 56 0 -0.1683 34.6876 32.8830 -Georgia_Bold.ttf 54 4 34.6684 42.2500 57 A -8.9866 46.9902 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 58 E -8.8078 38.6908 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 59 B -8.7213 40.1348 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 60 v 3.5789 35.5017 28.0000 -Georgia_Bold.ttf 54 4 34.6684 42.2500 61 k -12.6859 37.9968 44.3879 -Georgia_Bold.ttf 54 4 34.6684 42.2500 62 J -8.7483 33.3235 41.6621 -Georgia_Bold.ttf 54 4 34.6684 42.2500 63 U -8.8155 46.9856 41.6621 -Georgia_Bold.ttf 54 4 34.6684 42.2500 64 j -13.1713 22.1730 57.6747 -Georgia_Bold.ttf 54 4 34.6684 42.2500 65 ( -11.6600 20.7483 52.5609 -Georgia_Bold.ttf 54 4 34.6684 42.2500 66 7 1.0036 30.0308 41.0560 -Georgia_Bold.ttf 54 4 34.6684 42.2500 67 § -9.8785 26.2192 48.4103 -Georgia_Bold.ttf 54 4 34.6684 42.2500 68 $ -11.8778 31.2486 51.7468 -Georgia_Bold.ttf 54 4 34.6684 42.2500 69 € -10.1273 41.2868 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 70 / -11.6184 24.9408 55.3288 -Georgia_Bold.ttf 54 4 34.6684 42.2500 71 C -9.7137 39.1489 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 72 * -9.9303 23.6397 21.2290 -Georgia_Bold.ttf 54 4 34.6684 42.2500 73 ” -11.6652 25.5049 20.0578 -Georgia_Bold.ttf 54 4 34.6684 42.2500 74 ? -10.0073 26.4727 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 75 { -11.1118 25.1716 52.5609 -Georgia_Bold.ttf 54 4 34.6684 42.2500 76 } -11.4791 25.1716 52.5609 -Georgia_Bold.ttf 54 4 34.6684 42.2500 77 , 22.4560 11.5049 20.7483 -Georgia_Bold.ttf 54 4 34.6684 42.2500 78 I -8.8218 21.7342 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 79 ° -9.7960 19.4471 18.8830 -Georgia_Bold.ttf 54 4 34.6684 42.2500 80 K -8.7587 47.4699 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 81 H -8.7850 49.0437 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 82 q 1.3791 36.1968 43.1940 -Georgia_Bold.ttf 54 4 34.6684 42.2500 83 & -10.0351 44.6379 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 84 ’ -11.4121 11.5049 20.0578 -Georgia_Bold.ttf 54 4 34.6684 42.2500 85 [ -11.4557 18.8830 52.5609 -Georgia_Bold.ttf 54 4 34.6684 42.2500 86 - 13.2515 17.3319 6.3078 -Georgia_Bold.ttf 54 4 34.6684 42.2500 87 Y -8.6898 46.5865 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 88 Q -10.0500 43.5511 53.5241 -Georgia_Bold.ttf 54 4 34.6684 42.2500 89 " -11.4425 23.0291 20.0578 -Georgia_Bold.ttf 54 4 34.6684 42.2500 90 ! -10.1101 10.9408 42.8561 -Georgia_Bold.ttf 54 4 34.6684 42.2500 91 x 3.8049 34.3078 28.0000 -Georgia_Bold.ttf 54 4 34.6684 42.2500 92 ) -11.5510 20.7483 52.5609 -Georgia_Bold.ttf 54 4 34.6684 42.2500 93 = 7.0781 30.3879 16.2451 -Georgia_Bold.ttf 54 4 34.6684 42.2500 94 + -0.4287 31.9572 31.9572 -Georgia_Bold.ttf 54 4 34.6684 42.2500 95 X -8.5299 47.1138 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 96 » 3.7182 28.0000 25.5049 -Georgia_Bold.ttf 54 4 34.6684 42.2500 97 ' -11.6234 9.3670 20.0578 -Georgia_Bold.ttf 54 4 34.6684 42.2500 98 ¢ -4.9558 29.6975 45.0592 -Georgia_Bold.ttf 54 4 34.6684 42.2500 99 Z -8.6919 40.1348 40.4681 -Georgia_Bold.ttf 54 4 34.6684 42.2500 100 > -0.9312 28.2500 32.5259 -Georgia_Bold.ttf 54 4 34.6684 42.2500 101 ® -10.2244 50.4457 50.4457 -Georgia_Bold.ttf 54 4 34.6684 42.2500 102 © -10.3988 50.4457 50.4457 -Georgia_Bold.ttf 54 4 34.6684 42.2500 103 ] -11.6215 18.8830 52.5609 -Georgia_Bold.ttf 54 4 34.6684 42.2500 104 é -12.6734 30.1152 45.5819 -Georgia_Bold.ttf 54 4 34.6684 42.2500 105 z 3.8477 28.0000 28.0000 -Georgia_Bold.ttf 54 4 34.6684 42.2500 106 _ 36.7905 41.0560 2.7259 -Georgia_Bold.ttf 54 4 34.6684 42.2500 107 ¥ -8.9608 44.1379 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 1 t 4.8336 22.8029 37.7468 -Georgia_Bold.ttf 55 8 33.3865 42.8561 2 h -2.8564 38.3109 44.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 3 a 12.5187 31.8795 30.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 4 n 12.5812 38.5434 29.1940 -Georgia_Bold.ttf 55 8 33.3865 42.8561 5 P 1.2924 37.4968 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 6 o 12.4840 32.6103 30.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 7 e 12.7372 30.1152 30.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 8 : 13.9222 11.2741 29.1940 -Georgia_Bold.ttf 55 8 33.3865 42.8561 9 r 12.4955 29.1940 29.1940 -Georgia_Bold.ttf 55 8 33.3865 42.8561 10 l -2.3285 18.7339 44.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 11 i -3.3868 18.7339 44.8687 -Georgia_Bold.ttf 55 8 33.3865 42.8561 12 1 9.6959 23.6397 31.6891 -Georgia_Bold.ttf 55 8 33.3865 42.8561 13 | -2.8227 4.6330 56.5227 -Georgia_Bold.ttf 55 8 33.3865 42.8561 14 N 1.2033 47.1785 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 15 f -2.6041 28.2500 44.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 16 g 12.4792 32.5497 42.0000 -Georgia_Bold.ttf 55 8 33.3865 42.8561 17 d -2.7699 36.4457 45.5819 -Georgia_Bold.ttf 55 8 33.3865 42.8561 18 W 1.3560 68.0276 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 19 s 12.4834 25.8621 30.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 20 c 12.4098 28.9212 30.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 21 u 12.2119 38.2100 30.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 22 3 9.8292 32.5259 42.2500 -Georgia_Bold.ttf 55 8 33.3865 42.8561 23 ~ 19.3347 32.5497 12.2181 -Georgia_Bold.ttf 55 8 33.3865 42.8561 24 # 5.6191 32.2532 36.4457 -Georgia_Bold.ttf 55 8 33.3865 42.8561 25 O -0.2490 43.5511 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 26 ` -2.5457 15.1940 12.8060 -Georgia_Bold.ttf 55 8 33.3865 42.8561 27 @ 1.8965 47.4709 48.6411 -Georgia_Bold.ttf 55 8 33.3865 42.8561 28 F 1.2645 35.9650 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 29 S -0.0105 33.7437 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 30 p 12.7980 35.8397 42.0000 -Georgia_Bold.ttf 55 8 33.3865 42.8561 31 “ -1.5273 25.5049 20.0578 -Georgia_Bold.ttf 55 8 33.3865 42.8561 32 % -0.0408 46.1460 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 33 £ -0.0973 33.4471 41.6621 -Georgia_Bold.ttf 55 8 33.3865 42.8561 34 . 31.8271 11.2741 11.2741 -Georgia_Bold.ttf 55 8 33.3865 42.8561 35 2 10.0943 30.6653 31.6891 -Georgia_Bold.ttf 55 8 33.3865 42.8561 36 5 10.0994 31.3319 42.2500 -Georgia_Bold.ttf 55 8 33.3865 42.8561 37 m 12.6461 57.1474 29.1940 -Georgia_Bold.ttf 55 8 33.3865 42.8561 38 V 1.1160 47.4471 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 39 6 -0.2998 32.2997 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 40 w 13.6264 50.4457 28.0000 -Georgia_Bold.ttf 55 8 33.3865 42.8561 41 T 1.3604 38.0802 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 42 M 0.9192 56.5455 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 43 G -0.1659 45.5865 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 44 b -2.8395 35.7325 45.9198 -Georgia_Bold.ttf 55 8 33.3865 42.8561 45 9 9.9720 32.6330 42.3571 -Georgia_Bold.ttf 55 8 33.3865 42.8561 46 ; 14.0017 11.5049 39.3813 -Georgia_Bold.ttf 55 8 33.3865 42.8561 47 D 1.2275 44.3879 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 48 L 1.1730 38.0196 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 49 y 13.6870 35.2710 40.8060 -Georgia_Bold.ttf 55 8 33.3865 42.8561 50 ‘ -1.7453 11.5049 20.0578 -Georgia_Bold.ttf 55 8 33.3865 42.8561 51 \ -1.6477 24.9408 55.3288 -Georgia_Bold.ttf 55 8 33.3865 42.8561 52 R 1.0434 46.2759 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 53 < 9.0222 28.2500 32.5259 -Georgia_Bold.ttf 55 8 33.3865 42.8561 54 4 9.9846 34.6684 42.2500 -Georgia_Bold.ttf 55 8 33.3865 42.8561 55 8 -0.0696 33.3865 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 56 0 9.8655 34.6876 32.8830 -Georgia_Bold.ttf 55 8 33.3865 42.8561 57 A 1.1069 46.9902 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 58 E 1.4606 38.6908 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 59 B 1.2830 40.1348 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 60 v 13.4795 35.5017 28.0000 -Georgia_Bold.ttf 55 8 33.3865 42.8561 61 k -2.5748 37.9968 44.3879 -Georgia_Bold.ttf 55 8 33.3865 42.8561 62 J 1.4658 33.3235 41.6621 -Georgia_Bold.ttf 55 8 33.3865 42.8561 63 U 1.1991 46.9856 41.6621 -Georgia_Bold.ttf 55 8 33.3865 42.8561 64 j -3.1249 22.1730 57.6747 -Georgia_Bold.ttf 55 8 33.3865 42.8561 65 ( -1.5039 20.7483 52.5609 -Georgia_Bold.ttf 55 8 33.3865 42.8561 66 7 10.9678 30.0308 41.0560 -Georgia_Bold.ttf 55 8 33.3865 42.8561 67 § 0.0838 26.2192 48.4103 -Georgia_Bold.ttf 55 8 33.3865 42.8561 68 $ -2.0490 31.2486 51.7468 -Georgia_Bold.ttf 55 8 33.3865 42.8561 69 € 0.1304 41.2868 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 70 / -1.6023 24.9408 55.3288 -Georgia_Bold.ttf 55 8 33.3865 42.8561 71 C 0.2984 39.1489 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 72 * 0.2885 23.6397 21.2290 -Georgia_Bold.ttf 55 8 33.3865 42.8561 73 ” -1.5252 25.5049 20.0578 -Georgia_Bold.ttf 55 8 33.3865 42.8561 74 ? 0.2605 26.4727 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 75 { -1.0753 25.1716 52.5609 -Georgia_Bold.ttf 55 8 33.3865 42.8561 76 } -1.5176 25.1716 52.5609 -Georgia_Bold.ttf 55 8 33.3865 42.8561 77 , 32.2112 11.5049 20.7483 -Georgia_Bold.ttf 55 8 33.3865 42.8561 78 I 1.3200 21.7342 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 79 ° -0.1455 19.4471 18.8830 -Georgia_Bold.ttf 55 8 33.3865 42.8561 80 K 1.3819 47.4699 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 81 H 1.1348 49.0437 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 82 q 11.2370 36.1968 43.1940 -Georgia_Bold.ttf 55 8 33.3865 42.8561 83 & -0.0750 44.6379 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 84 ’ -1.4607 11.5049 20.0578 -Georgia_Bold.ttf 55 8 33.3865 42.8561 85 [ -1.3614 18.8830 52.5609 -Georgia_Bold.ttf 55 8 33.3865 42.8561 86 - 23.0909 17.3319 6.3078 -Georgia_Bold.ttf 55 8 33.3865 42.8561 87 Y 1.2553 46.5865 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 88 Q -0.1423 43.5511 53.5241 -Georgia_Bold.ttf 55 8 33.3865 42.8561 89 " -1.9136 23.0291 20.0578 -Georgia_Bold.ttf 55 8 33.3865 42.8561 90 ! -0.0839 10.9408 42.8561 -Georgia_Bold.ttf 55 8 33.3865 42.8561 91 x 13.4446 34.3078 28.0000 -Georgia_Bold.ttf 55 8 33.3865 42.8561 92 ) -1.7946 20.7483 52.5609 -Georgia_Bold.ttf 55 8 33.3865 42.8561 93 = 16.6992 30.3879 16.2451 -Georgia_Bold.ttf 55 8 33.3865 42.8561 94 + 9.2708 31.9572 31.9572 -Georgia_Bold.ttf 55 8 33.3865 42.8561 95 X 0.9147 47.1138 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 96 » 13.5125 28.0000 25.5049 -Georgia_Bold.ttf 55 8 33.3865 42.8561 97 ' -1.8672 9.3670 20.0578 -Georgia_Bold.ttf 55 8 33.3865 42.8561 98 ¢ 5.1062 29.6975 45.0592 -Georgia_Bold.ttf 55 8 33.3865 42.8561 99 Z 1.5392 40.1348 40.4681 -Georgia_Bold.ttf 55 8 33.3865 42.8561 100 > 9.0688 28.2500 32.5259 -Georgia_Bold.ttf 55 8 33.3865 42.8561 101 ® 0.0769 50.4457 50.4457 -Georgia_Bold.ttf 55 8 33.3865 42.8561 102 © -0.1710 50.4457 50.4457 -Georgia_Bold.ttf 55 8 33.3865 42.8561 103 ] -1.7525 18.8830 52.5609 -Georgia_Bold.ttf 55 8 33.3865 42.8561 104 é -2.7713 30.1152 45.5819 -Georgia_Bold.ttf 55 8 33.3865 42.8561 105 z 13.3546 28.0000 28.0000 -Georgia_Bold.ttf 55 8 33.3865 42.8561 106 _ 47.0483 41.0560 2.7259 -Georgia_Bold.ttf 55 8 33.3865 42.8561 107 ¥ 1.1342 44.1379 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 1 t -4.6466 22.8029 37.7468 -Georgia_Bold.ttf 56 0 34.6876 32.8830 2 h -12.5174 38.3109 44.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 3 a 2.6094 31.8795 30.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 4 n 2.2519 38.5434 29.1940 -Georgia_Bold.ttf 56 0 34.6876 32.8830 5 P -8.6193 37.4968 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 6 o 2.6198 32.6103 30.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 7 e 2.2482 30.1152 30.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 8 : 3.6942 11.2741 29.1940 -Georgia_Bold.ttf 56 0 34.6876 32.8830 9 r 2.6328 29.1940 29.1940 -Georgia_Bold.ttf 56 0 34.6876 32.8830 10 l -12.8185 18.7339 44.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 11 i -13.0530 18.7339 44.8687 -Georgia_Bold.ttf 56 0 34.6876 32.8830 12 1 0.2009 23.6397 31.6891 -Georgia_Bold.ttf 56 0 34.6876 32.8830 13 | -13.1519 4.6330 56.5227 -Georgia_Bold.ttf 56 0 34.6876 32.8830 14 N -8.7471 47.1785 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 15 f -12.7104 28.2500 44.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 16 g 2.4053 32.5497 42.0000 -Georgia_Bold.ttf 56 0 34.6876 32.8830 17 d -12.6873 36.4457 45.5819 -Georgia_Bold.ttf 56 0 34.6876 32.8830 18 W -9.1124 68.0276 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 19 s 2.3899 25.8621 30.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 20 c 2.7532 28.9212 30.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 21 u 2.1193 38.2100 30.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 22 3 -0.0341 32.5259 42.2500 -Georgia_Bold.ttf 56 0 34.6876 32.8830 23 ~ 9.0844 32.5497 12.2181 -Georgia_Bold.ttf 56 0 34.6876 32.8830 24 # -5.3927 32.2532 36.4457 -Georgia_Bold.ttf 56 0 34.6876 32.8830 25 O -10.2032 43.5511 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 26 ` -12.5612 15.1940 12.8060 -Georgia_Bold.ttf 56 0 34.6876 32.8830 27 @ -7.6857 47.4709 48.6411 -Georgia_Bold.ttf 56 0 34.6876 32.8830 28 F -8.9239 35.9650 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 29 S -10.4172 33.7437 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 30 p 2.6136 35.8397 42.0000 -Georgia_Bold.ttf 56 0 34.6876 32.8830 31 “ -11.4600 25.5049 20.0578 -Georgia_Bold.ttf 56 0 34.6876 32.8830 32 % -10.1864 46.1460 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 33 £ -9.7942 33.4471 41.6621 -Georgia_Bold.ttf 56 0 34.6876 32.8830 34 . 21.7691 11.2741 11.2741 -Georgia_Bold.ttf 56 0 34.6876 32.8830 35 2 -0.0169 30.6653 31.6891 -Georgia_Bold.ttf 56 0 34.6876 32.8830 36 5 -0.3224 31.3319 42.2500 -Georgia_Bold.ttf 56 0 34.6876 32.8830 37 m 2.7782 57.1474 29.1940 -Georgia_Bold.ttf 56 0 34.6876 32.8830 38 V -8.7420 47.4471 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 39 6 -10.0407 32.2997 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 40 w 3.8557 50.4457 28.0000 -Georgia_Bold.ttf 56 0 34.6876 32.8830 41 T -8.5338 38.0802 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 42 M -8.5460 56.5455 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 43 G -9.9619 45.5865 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 44 b -12.5246 35.7325 45.9198 -Georgia_Bold.ttf 56 0 34.6876 32.8830 45 9 -0.3417 32.6330 42.3571 -Georgia_Bold.ttf 56 0 34.6876 32.8830 46 ; 3.8865 11.5049 39.3813 -Georgia_Bold.ttf 56 0 34.6876 32.8830 47 D -8.9064 44.3879 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 48 L -8.6678 38.0196 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 49 y 3.8609 35.2710 40.8060 -Georgia_Bold.ttf 56 0 34.6876 32.8830 50 ‘ -11.5235 11.5049 20.0578 -Georgia_Bold.ttf 56 0 34.6876 32.8830 51 \ -11.1662 24.9408 55.3288 -Georgia_Bold.ttf 56 0 34.6876 32.8830 52 R -8.6529 46.2759 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 53 < -0.6852 28.2500 32.5259 -Georgia_Bold.ttf 56 0 34.6876 32.8830 54 4 0.0175 34.6684 42.2500 -Georgia_Bold.ttf 56 0 34.6876 32.8830 55 8 -9.8878 33.3865 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 56 0 0.1575 34.6876 32.8830 -Georgia_Bold.ttf 56 0 34.6876 32.8830 57 A -8.6126 46.9902 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 58 E -8.9560 38.6908 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 59 B -8.6998 40.1348 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 60 v 3.9295 35.5017 28.0000 -Georgia_Bold.ttf 56 0 34.6876 32.8830 61 k -12.6610 37.9968 44.3879 -Georgia_Bold.ttf 56 0 34.6876 32.8830 62 J -8.6646 33.3235 41.6621 -Georgia_Bold.ttf 56 0 34.6876 32.8830 63 U -8.5845 46.9856 41.6621 -Georgia_Bold.ttf 56 0 34.6876 32.8830 64 j -13.0797 22.1730 57.6747 -Georgia_Bold.ttf 56 0 34.6876 32.8830 65 ( -11.3831 20.7483 52.5609 -Georgia_Bold.ttf 56 0 34.6876 32.8830 66 7 1.5914 30.0308 41.0560 -Georgia_Bold.ttf 56 0 34.6876 32.8830 67 § -9.8489 26.2192 48.4103 -Georgia_Bold.ttf 56 0 34.6876 32.8830 68 $ -11.8991 31.2486 51.7468 -Georgia_Bold.ttf 56 0 34.6876 32.8830 69 € -10.2046 41.2868 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 70 / -11.2595 24.9408 55.3288 -Georgia_Bold.ttf 56 0 34.6876 32.8830 71 C -9.6517 39.1489 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 72 * -10.1642 23.6397 21.2290 -Georgia_Bold.ttf 56 0 34.6876 32.8830 73 ” -11.5248 25.5049 20.0578 -Georgia_Bold.ttf 56 0 34.6876 32.8830 74 ? -9.8660 26.4727 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 75 { -11.7010 25.1716 52.5609 -Georgia_Bold.ttf 56 0 34.6876 32.8830 76 } -11.7105 25.1716 52.5609 -Georgia_Bold.ttf 56 0 34.6876 32.8830 77 , 22.0581 11.5049 20.7483 -Georgia_Bold.ttf 56 0 34.6876 32.8830 78 I -8.5815 21.7342 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 79 ° -10.1933 19.4471 18.8830 -Georgia_Bold.ttf 56 0 34.6876 32.8830 80 K -8.8662 47.4699 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 81 H -8.8187 49.0437 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 82 q 1.0610 36.1968 43.1940 -Georgia_Bold.ttf 56 0 34.6876 32.8830 83 & -10.0462 44.6379 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 84 ’ -11.4339 11.5049 20.0578 -Georgia_Bold.ttf 56 0 34.6876 32.8830 85 [ -11.5011 18.8830 52.5609 -Georgia_Bold.ttf 56 0 34.6876 32.8830 86 - 12.8961 17.3319 6.3078 -Georgia_Bold.ttf 56 0 34.6876 32.8830 87 Y -8.7741 46.5865 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 88 Q -9.7542 43.5511 53.5241 -Georgia_Bold.ttf 56 0 34.6876 32.8830 89 " -11.3298 23.0291 20.0578 -Georgia_Bold.ttf 56 0 34.6876 32.8830 90 ! -9.8721 10.9408 42.8561 -Georgia_Bold.ttf 56 0 34.6876 32.8830 91 x 3.8086 34.3078 28.0000 -Georgia_Bold.ttf 56 0 34.6876 32.8830 92 ) -11.6897 20.7483 52.5609 -Georgia_Bold.ttf 56 0 34.6876 32.8830 93 = 7.2166 30.3879 16.2451 -Georgia_Bold.ttf 56 0 34.6876 32.8830 94 + -0.9969 31.9572 31.9572 -Georgia_Bold.ttf 56 0 34.6876 32.8830 95 X -9.2877 47.1138 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 96 » 3.5674 28.0000 25.5049 -Georgia_Bold.ttf 56 0 34.6876 32.8830 97 ' -11.8269 9.3670 20.0578 -Georgia_Bold.ttf 56 0 34.6876 32.8830 98 ¢ -4.7545 29.6975 45.0592 -Georgia_Bold.ttf 56 0 34.6876 32.8830 99 Z -8.8363 40.1348 40.4681 -Georgia_Bold.ttf 56 0 34.6876 32.8830 100 > -1.0734 28.2500 32.5259 -Georgia_Bold.ttf 56 0 34.6876 32.8830 101 ® -9.9475 50.4457 50.4457 -Georgia_Bold.ttf 56 0 34.6876 32.8830 102 © -10.2836 50.4457 50.4457 -Georgia_Bold.ttf 56 0 34.6876 32.8830 103 ] -11.4307 18.8830 52.5609 -Georgia_Bold.ttf 56 0 34.6876 32.8830 104 é -12.9070 30.1152 45.5819 -Georgia_Bold.ttf 56 0 34.6876 32.8830 105 z 3.6464 28.0000 28.0000 -Georgia_Bold.ttf 56 0 34.6876 32.8830 106 _ 37.0838 41.0560 2.7259 -Georgia_Bold.ttf 56 0 34.6876 32.8830 107 ¥ -8.6881 44.1379 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 1 t 4.0226 22.8029 37.7468 -Georgia_Bold.ttf 57 A 46.9902 40.4681 2 h -4.1636 38.3109 44.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 3 a 11.2217 31.8795 30.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 4 n 11.1250 38.5434 29.1940 -Georgia_Bold.ttf 57 A 46.9902 40.4681 5 P -0.1764 37.4968 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 6 o 11.2346 32.6103 30.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 7 e 11.2303 30.1152 30.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 8 : 12.8113 11.2741 29.1940 -Georgia_Bold.ttf 57 A 46.9902 40.4681 9 r 11.4252 29.1940 29.1940 -Georgia_Bold.ttf 57 A 46.9902 40.4681 10 l -4.3621 18.7339 44.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 11 i -3.9766 18.7339 44.8687 -Georgia_Bold.ttf 57 A 46.9902 40.4681 12 1 8.4070 23.6397 31.6891 -Georgia_Bold.ttf 57 A 46.9902 40.4681 13 | -3.8518 4.6330 56.5227 -Georgia_Bold.ttf 57 A 46.9902 40.4681 14 N -0.0231 47.1785 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 15 f -3.9347 28.2500 44.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 16 g 11.3707 32.5497 42.0000 -Georgia_Bold.ttf 57 A 46.9902 40.4681 17 d -4.2204 36.4457 45.5819 -Georgia_Bold.ttf 57 A 46.9902 40.4681 18 W -0.0476 68.0276 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 19 s 11.1949 25.8621 30.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 20 c 10.9341 28.9212 30.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 21 u 11.6547 38.2100 30.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 22 3 8.8984 32.5259 42.2500 -Georgia_Bold.ttf 57 A 46.9902 40.4681 23 ~ 18.1361 32.5497 12.2181 -Georgia_Bold.ttf 57 A 46.9902 40.4681 24 # 3.7914 32.2532 36.4457 -Georgia_Bold.ttf 57 A 46.9902 40.4681 25 O -1.0926 43.5511 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 26 ` -4.0307 15.1940 12.8060 -Georgia_Bold.ttf 57 A 46.9902 40.4681 27 @ 1.0103 47.4709 48.6411 -Georgia_Bold.ttf 57 A 46.9902 40.4681 28 F 0.2995 35.9650 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 29 S -0.9841 33.7437 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 30 p 11.4503 35.8397 42.0000 -Georgia_Bold.ttf 57 A 46.9902 40.4681 31 “ -2.6753 25.5049 20.0578 -Georgia_Bold.ttf 57 A 46.9902 40.4681 32 % -1.2978 46.1460 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 33 £ -1.1436 33.4471 41.6621 -Georgia_Bold.ttf 57 A 46.9902 40.4681 34 . 30.2234 11.2741 11.2741 -Georgia_Bold.ttf 57 A 46.9902 40.4681 35 2 8.7678 30.6653 31.6891 -Georgia_Bold.ttf 57 A 46.9902 40.4681 36 5 9.0180 31.3319 42.2500 -Georgia_Bold.ttf 57 A 46.9902 40.4681 37 m 11.1209 57.1474 29.1940 -Georgia_Bold.ttf 57 A 46.9902 40.4681 38 V 0.0909 47.4471 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 39 6 -1.1746 32.2997 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 40 w 12.7435 50.4457 28.0000 -Georgia_Bold.ttf 57 A 46.9902 40.4681 41 T -0.4059 38.0802 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 42 M -0.0384 56.5455 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 43 G -1.2286 45.5865 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 44 b -3.7023 35.7325 45.9198 -Georgia_Bold.ttf 57 A 46.9902 40.4681 45 9 8.8676 32.6330 42.3571 -Georgia_Bold.ttf 57 A 46.9902 40.4681 46 ; 12.3850 11.5049 39.3813 -Georgia_Bold.ttf 57 A 46.9902 40.4681 47 D -0.2312 44.3879 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 48 L 0.1992 38.0196 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 49 y 12.3786 35.2710 40.8060 -Georgia_Bold.ttf 57 A 46.9902 40.4681 50 ‘ -2.7759 11.5049 20.0578 -Georgia_Bold.ttf 57 A 46.9902 40.4681 51 \ -2.5893 24.9408 55.3288 -Georgia_Bold.ttf 57 A 46.9902 40.4681 52 R 0.2541 46.2759 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 53 < 8.0728 28.2500 32.5259 -Georgia_Bold.ttf 57 A 46.9902 40.4681 54 4 8.8971 34.6684 42.2500 -Georgia_Bold.ttf 57 A 46.9902 40.4681 55 8 -1.1550 33.3865 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 56 0 8.2999 34.6876 32.8830 -Georgia_Bold.ttf 57 A 46.9902 40.4681 57 A 0.1922 46.9902 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 58 E -0.6713 38.6908 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 59 B 0.0187 40.1348 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 60 v 12.3582 35.5017 28.0000 -Georgia_Bold.ttf 57 A 46.9902 40.4681 61 k -4.3473 37.9968 44.3879 -Georgia_Bold.ttf 57 A 46.9902 40.4681 62 J 0.0500 33.3235 41.6621 -Georgia_Bold.ttf 57 A 46.9902 40.4681 63 U 0.1089 46.9856 41.6621 -Georgia_Bold.ttf 57 A 46.9902 40.4681 64 j -4.7240 22.1730 57.6747 -Georgia_Bold.ttf 57 A 46.9902 40.4681 65 ( -2.5683 20.7483 52.5609 -Georgia_Bold.ttf 57 A 46.9902 40.4681 66 7 9.8579 30.0308 41.0560 -Georgia_Bold.ttf 57 A 46.9902 40.4681 67 § -1.0890 26.2192 48.4103 -Georgia_Bold.ttf 57 A 46.9902 40.4681 68 $ -3.1417 31.2486 51.7468 -Georgia_Bold.ttf 57 A 46.9902 40.4681 69 € -1.2612 41.2868 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 70 / -2.4685 24.9408 55.3288 -Georgia_Bold.ttf 57 A 46.9902 40.4681 71 C -1.3251 39.1489 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 72 * -1.0271 23.6397 21.2290 -Georgia_Bold.ttf 57 A 46.9902 40.4681 73 ” -2.7885 25.5049 20.0578 -Georgia_Bold.ttf 57 A 46.9902 40.4681 74 ? -1.2894 26.4727 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 75 { -2.6035 25.1716 52.5609 -Georgia_Bold.ttf 57 A 46.9902 40.4681 76 } -2.6828 25.1716 52.5609 -Georgia_Bold.ttf 57 A 46.9902 40.4681 77 , 30.9125 11.5049 20.7483 -Georgia_Bold.ttf 57 A 46.9902 40.4681 78 I -0.2396 21.7342 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 79 ° -1.2521 19.4471 18.8830 -Georgia_Bold.ttf 57 A 46.9902 40.4681 80 K -0.1705 47.4699 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 81 H -0.0545 49.0437 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 82 q 9.7148 36.1968 43.1940 -Georgia_Bold.ttf 57 A 46.9902 40.4681 83 & -1.3219 44.6379 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 84 ’ -2.6866 11.5049 20.0578 -Georgia_Bold.ttf 57 A 46.9902 40.4681 85 [ -2.8455 18.8830 52.5609 -Georgia_Bold.ttf 57 A 46.9902 40.4681 86 - 21.8781 17.3319 6.3078 -Georgia_Bold.ttf 57 A 46.9902 40.4681 87 Y -0.1982 46.5865 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 88 Q -1.2808 43.5511 53.5241 -Georgia_Bold.ttf 57 A 46.9902 40.4681 89 " -2.6803 23.0291 20.0578 -Georgia_Bold.ttf 57 A 46.9902 40.4681 90 ! -1.3257 10.9408 42.8561 -Georgia_Bold.ttf 57 A 46.9902 40.4681 91 x 12.2880 34.3078 28.0000 -Georgia_Bold.ttf 57 A 46.9902 40.4681 92 ) -2.6766 20.7483 52.5609 -Georgia_Bold.ttf 57 A 46.9902 40.4681 93 = 15.5308 30.3879 16.2451 -Georgia_Bold.ttf 57 A 46.9902 40.4681 94 + 8.6107 31.9572 31.9572 -Georgia_Bold.ttf 57 A 46.9902 40.4681 95 X 0.0917 47.1138 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 96 » 12.3844 28.0000 25.5049 -Georgia_Bold.ttf 57 A 46.9902 40.4681 97 ' -2.9770 9.3670 20.0578 -Georgia_Bold.ttf 57 A 46.9902 40.4681 98 ¢ 4.0125 29.6975 45.0592 -Georgia_Bold.ttf 57 A 46.9902 40.4681 99 Z -0.3583 40.1348 40.4681 -Georgia_Bold.ttf 57 A 46.9902 40.4681 100 > 7.5094 28.2500 32.5259 -Georgia_Bold.ttf 57 A 46.9902 40.4681 101 ® -1.1531 50.4457 50.4457 -Georgia_Bold.ttf 57 A 46.9902 40.4681 102 © -1.3940 50.4457 50.4457 -Georgia_Bold.ttf 57 A 46.9902 40.4681 103 ] -3.1726 18.8830 52.5609 -Georgia_Bold.ttf 57 A 46.9902 40.4681 104 é -3.9570 30.1152 45.5819 -Georgia_Bold.ttf 57 A 46.9902 40.4681 105 z 12.3950 28.0000 28.0000 -Georgia_Bold.ttf 57 A 46.9902 40.4681 106 _ 45.8349 41.0560 2.7259 -Georgia_Bold.ttf 57 A 46.9902 40.4681 107 ¥ 0.0611 44.1379 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 1 t 4.0610 22.8029 37.7468 -Georgia_Bold.ttf 58 E 38.6908 40.4681 2 h -3.9198 38.3109 44.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 3 a 11.2349 31.8795 30.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 4 n 11.3634 38.5434 29.1940 -Georgia_Bold.ttf 58 E 38.6908 40.4681 5 P -0.0565 37.4968 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 6 o 11.6116 32.6103 30.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 7 e 11.2811 30.1152 30.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 8 : 12.4015 11.2741 29.1940 -Georgia_Bold.ttf 58 E 38.6908 40.4681 9 r 11.1758 29.1940 29.1940 -Georgia_Bold.ttf 58 E 38.6908 40.4681 10 l -4.0052 18.7339 44.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 11 i -4.3075 18.7339 44.8687 -Georgia_Bold.ttf 58 E 38.6908 40.4681 12 1 8.7833 23.6397 31.6891 -Georgia_Bold.ttf 58 E 38.6908 40.4681 13 | -3.8486 4.6330 56.5227 -Georgia_Bold.ttf 58 E 38.6908 40.4681 14 N 0.0427 47.1785 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 15 f -4.1630 28.2500 44.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 16 g 10.9464 32.5497 42.0000 -Georgia_Bold.ttf 58 E 38.6908 40.4681 17 d -4.1432 36.4457 45.5819 -Georgia_Bold.ttf 58 E 38.6908 40.4681 18 W 0.0032 68.0276 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 19 s 11.0216 25.8621 30.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 20 c 11.1727 28.9212 30.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 21 u 11.1045 38.2100 30.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 22 3 8.7121 32.5259 42.2500 -Georgia_Bold.ttf 58 E 38.6908 40.4681 23 ~ 17.8377 32.5497 12.2181 -Georgia_Bold.ttf 58 E 38.6908 40.4681 24 # 4.2816 32.2532 36.4457 -Georgia_Bold.ttf 58 E 38.6908 40.4681 25 O -0.9220 43.5511 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 26 ` -4.2984 15.1940 12.8060 -Georgia_Bold.ttf 58 E 38.6908 40.4681 27 @ 0.9515 47.4709 48.6411 -Georgia_Bold.ttf 58 E 38.6908 40.4681 28 F 0.0925 35.9650 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 29 S -1.5763 33.7437 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 30 p 11.1559 35.8397 42.0000 -Georgia_Bold.ttf 58 E 38.6908 40.4681 31 “ -2.9077 25.5049 20.0578 -Georgia_Bold.ttf 58 E 38.6908 40.4681 32 % -0.9934 46.1460 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 33 £ -1.0743 33.4471 41.6621 -Georgia_Bold.ttf 58 E 38.6908 40.4681 34 . 30.4834 11.2741 11.2741 -Georgia_Bold.ttf 58 E 38.6908 40.4681 35 2 8.4097 30.6653 31.6891 -Georgia_Bold.ttf 58 E 38.6908 40.4681 36 5 8.5358 31.3319 42.2500 -Georgia_Bold.ttf 58 E 38.6908 40.4681 37 m 11.4914 57.1474 29.1940 -Georgia_Bold.ttf 58 E 38.6908 40.4681 38 V -0.2627 47.4471 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 39 6 -1.0410 32.2997 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 40 w 12.4509 50.4457 28.0000 -Georgia_Bold.ttf 58 E 38.6908 40.4681 41 T 0.1610 38.0802 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 42 M -0.0019 56.5455 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 43 G -1.1496 45.5865 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 44 b -4.0000 35.7325 45.9198 -Georgia_Bold.ttf 58 E 38.6908 40.4681 45 9 8.7368 32.6330 42.3571 -Georgia_Bold.ttf 58 E 38.6908 40.4681 46 ; 12.3562 11.5049 39.3813 -Georgia_Bold.ttf 58 E 38.6908 40.4681 47 D 0.0041 44.3879 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 48 L -0.0312 38.0196 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 49 y 12.3296 35.2710 40.8060 -Georgia_Bold.ttf 58 E 38.6908 40.4681 50 ‘ -3.0023 11.5049 20.0578 -Georgia_Bold.ttf 58 E 38.6908 40.4681 51 \ -2.7705 24.9408 55.3288 -Georgia_Bold.ttf 58 E 38.6908 40.4681 52 R -0.0702 46.2759 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 53 < 7.9819 28.2500 32.5259 -Georgia_Bold.ttf 58 E 38.6908 40.4681 54 4 8.4460 34.6684 42.2500 -Georgia_Bold.ttf 58 E 38.6908 40.4681 55 8 -1.3351 33.3865 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 56 0 8.8532 34.6876 32.8830 -Georgia_Bold.ttf 58 E 38.6908 40.4681 57 A 0.3393 46.9902 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 58 E -0.2659 38.6908 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 59 B -0.2331 40.1348 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 60 v 12.0116 35.5017 28.0000 -Georgia_Bold.ttf 58 E 38.6908 40.4681 61 k -4.0416 37.9968 44.3879 -Georgia_Bold.ttf 58 E 38.6908 40.4681 62 J 0.0097 33.3235 41.6621 -Georgia_Bold.ttf 58 E 38.6908 40.4681 63 U 0.1183 46.9856 41.6621 -Georgia_Bold.ttf 58 E 38.6908 40.4681 64 j -4.2468 22.1730 57.6747 -Georgia_Bold.ttf 58 E 38.6908 40.4681 65 ( -2.6689 20.7483 52.5609 -Georgia_Bold.ttf 58 E 38.6908 40.4681 66 7 9.8822 30.0308 41.0560 -Georgia_Bold.ttf 58 E 38.6908 40.4681 67 § -1.4333 26.2192 48.4103 -Georgia_Bold.ttf 58 E 38.6908 40.4681 68 $ -3.3882 31.2486 51.7468 -Georgia_Bold.ttf 58 E 38.6908 40.4681 69 € -1.0031 41.2868 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 70 / -2.8343 24.9408 55.3288 -Georgia_Bold.ttf 58 E 38.6908 40.4681 71 C -1.0327 39.1489 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 72 * -1.3071 23.6397 21.2290 -Georgia_Bold.ttf 58 E 38.6908 40.4681 73 ” -2.7866 25.5049 20.0578 -Georgia_Bold.ttf 58 E 38.6908 40.4681 74 ? -1.2553 26.4727 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 75 { -2.8262 25.1716 52.5609 -Georgia_Bold.ttf 58 E 38.6908 40.4681 76 } -2.4855 25.1716 52.5609 -Georgia_Bold.ttf 58 E 38.6908 40.4681 77 , 30.9728 11.5049 20.7483 -Georgia_Bold.ttf 58 E 38.6908 40.4681 78 I -0.1010 21.7342 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 79 ° -1.4878 19.4471 18.8830 -Georgia_Bold.ttf 58 E 38.6908 40.4681 80 K 0.1009 47.4699 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 81 H -0.1948 49.0437 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 82 q 10.1154 36.1968 43.1940 -Georgia_Bold.ttf 58 E 38.6908 40.4681 83 & -1.0009 44.6379 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 84 ’ -2.8000 11.5049 20.0578 -Georgia_Bold.ttf 58 E 38.6908 40.4681 85 [ -2.6995 18.8830 52.5609 -Georgia_Bold.ttf 58 E 38.6908 40.4681 86 - 21.8015 17.3319 6.3078 -Georgia_Bold.ttf 58 E 38.6908 40.4681 87 Y 0.1250 46.5865 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 88 Q -1.2461 43.5511 53.5241 -Georgia_Bold.ttf 58 E 38.6908 40.4681 89 " -2.3221 23.0291 20.0578 -Georgia_Bold.ttf 58 E 38.6908 40.4681 90 ! -1.0504 10.9408 42.8561 -Georgia_Bold.ttf 58 E 38.6908 40.4681 91 x 12.2421 34.3078 28.0000 -Georgia_Bold.ttf 58 E 38.6908 40.4681 92 ) -2.8092 20.7483 52.5609 -Georgia_Bold.ttf 58 E 38.6908 40.4681 93 = 15.6036 30.3879 16.2451 -Georgia_Bold.ttf 58 E 38.6908 40.4681 94 + 8.2597 31.9572 31.9572 -Georgia_Bold.ttf 58 E 38.6908 40.4681 95 X -0.1431 47.1138 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 96 » 11.9801 28.0000 25.5049 -Georgia_Bold.ttf 58 E 38.6908 40.4681 97 ' -2.7901 9.3670 20.0578 -Georgia_Bold.ttf 58 E 38.6908 40.4681 98 ¢ 4.0246 29.6975 45.0592 -Georgia_Bold.ttf 58 E 38.6908 40.4681 99 Z -0.3156 40.1348 40.4681 -Georgia_Bold.ttf 58 E 38.6908 40.4681 100 > 7.5435 28.2500 32.5259 -Georgia_Bold.ttf 58 E 38.6908 40.4681 101 ® -1.4413 50.4457 50.4457 -Georgia_Bold.ttf 58 E 38.6908 40.4681 102 © -1.4018 50.4457 50.4457 -Georgia_Bold.ttf 58 E 38.6908 40.4681 103 ] -2.6728 18.8830 52.5609 -Georgia_Bold.ttf 58 E 38.6908 40.4681 104 é -3.9564 30.1152 45.5819 -Georgia_Bold.ttf 58 E 38.6908 40.4681 105 z 12.3079 28.0000 28.0000 -Georgia_Bold.ttf 58 E 38.6908 40.4681 106 _ 45.6106 41.0560 2.7259 -Georgia_Bold.ttf 58 E 38.6908 40.4681 107 ¥ 0.1371 44.1379 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 1 t 3.5808 22.8029 37.7468 -Georgia_Bold.ttf 59 B 40.1348 40.4681 2 h -3.7897 38.3109 44.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 3 a 11.2362 31.8795 30.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 4 n 11.3666 38.5434 29.1940 -Georgia_Bold.ttf 59 B 40.1348 40.4681 5 P -0.0790 37.4968 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 6 o 11.1329 32.6103 30.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 7 e 11.2000 30.1152 30.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 8 : 12.6020 11.2741 29.1940 -Georgia_Bold.ttf 59 B 40.1348 40.4681 9 r 11.2042 29.1940 29.1940 -Georgia_Bold.ttf 59 B 40.1348 40.4681 10 l -3.8330 18.7339 44.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 11 i -4.4742 18.7339 44.8687 -Georgia_Bold.ttf 59 B 40.1348 40.4681 12 1 8.5660 23.6397 31.6891 -Georgia_Bold.ttf 59 B 40.1348 40.4681 13 | -3.7163 4.6330 56.5227 -Georgia_Bold.ttf 59 B 40.1348 40.4681 14 N -0.1220 47.1785 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 15 f -4.1884 28.2500 44.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 16 g 11.1875 32.5497 42.0000 -Georgia_Bold.ttf 59 B 40.1348 40.4681 17 d -3.7547 36.4457 45.5819 -Georgia_Bold.ttf 59 B 40.1348 40.4681 18 W -0.0129 68.0276 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 19 s 11.0999 25.8621 30.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 20 c 11.1806 28.9212 30.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 21 u 11.3567 38.2100 30.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 22 3 8.8987 32.5259 42.2500 -Georgia_Bold.ttf 59 B 40.1348 40.4681 23 ~ 18.2188 32.5497 12.2181 -Georgia_Bold.ttf 59 B 40.1348 40.4681 24 # 3.8019 32.2532 36.4457 -Georgia_Bold.ttf 59 B 40.1348 40.4681 25 O -1.4637 43.5511 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 26 ` -3.8320 15.1940 12.8060 -Georgia_Bold.ttf 59 B 40.1348 40.4681 27 @ 1.2084 47.4709 48.6411 -Georgia_Bold.ttf 59 B 40.1348 40.4681 28 F -0.4702 35.9650 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 29 S -1.0365 33.7437 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 30 p 10.7225 35.8397 42.0000 -Georgia_Bold.ttf 59 B 40.1348 40.4681 31 “ -2.8941 25.5049 20.0578 -Georgia_Bold.ttf 59 B 40.1348 40.4681 32 % -1.3007 46.1460 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 33 £ -1.2773 33.4471 41.6621 -Georgia_Bold.ttf 59 B 40.1348 40.4681 34 . 30.6553 11.2741 11.2741 -Georgia_Bold.ttf 59 B 40.1348 40.4681 35 2 8.9041 30.6653 31.6891 -Georgia_Bold.ttf 59 B 40.1348 40.4681 36 5 9.0463 31.3319 42.2500 -Georgia_Bold.ttf 59 B 40.1348 40.4681 37 m 10.8590 57.1474 29.1940 -Georgia_Bold.ttf 59 B 40.1348 40.4681 38 V 0.1070 47.4471 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 39 6 -1.0319 32.2997 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 40 w 12.2421 50.4457 28.0000 -Georgia_Bold.ttf 59 B 40.1348 40.4681 41 T 0.2522 38.0802 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 42 M -0.0213 56.5455 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 43 G -1.1299 45.5865 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 44 b -4.0055 35.7325 45.9198 -Georgia_Bold.ttf 59 B 40.1348 40.4681 45 9 8.6380 32.6330 42.3571 -Georgia_Bold.ttf 59 B 40.1348 40.4681 46 ; 12.8115 11.5049 39.3813 -Georgia_Bold.ttf 59 B 40.1348 40.4681 47 D 0.0417 44.3879 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 48 L -0.1537 38.0196 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 49 y 12.5595 35.2710 40.8060 -Georgia_Bold.ttf 59 B 40.1348 40.4681 50 ‘ -2.5947 11.5049 20.0578 -Georgia_Bold.ttf 59 B 40.1348 40.4681 51 \ -2.8347 24.9408 55.3288 -Georgia_Bold.ttf 59 B 40.1348 40.4681 52 R 0.0008 46.2759 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 53 < 8.3897 28.2500 32.5259 -Georgia_Bold.ttf 59 B 40.1348 40.4681 54 4 9.0358 34.6684 42.2500 -Georgia_Bold.ttf 59 B 40.1348 40.4681 55 8 -1.3620 33.3865 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 56 0 9.0130 34.6876 32.8830 -Georgia_Bold.ttf 59 B 40.1348 40.4681 57 A -0.1960 46.9902 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 58 E -0.1640 38.6908 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 59 B -0.1067 40.1348 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 60 v 12.3432 35.5017 28.0000 -Georgia_Bold.ttf 59 B 40.1348 40.4681 61 k -3.9191 37.9968 44.3879 -Georgia_Bold.ttf 59 B 40.1348 40.4681 62 J 0.0433 33.3235 41.6621 -Georgia_Bold.ttf 59 B 40.1348 40.4681 63 U -0.1038 46.9856 41.6621 -Georgia_Bold.ttf 59 B 40.1348 40.4681 64 j -4.3792 22.1730 57.6747 -Georgia_Bold.ttf 59 B 40.1348 40.4681 65 ( -2.6995 20.7483 52.5609 -Georgia_Bold.ttf 59 B 40.1348 40.4681 66 7 10.0996 30.0308 41.0560 -Georgia_Bold.ttf 59 B 40.1348 40.4681 67 § -1.2601 26.2192 48.4103 -Georgia_Bold.ttf 59 B 40.1348 40.4681 68 $ -3.0083 31.2486 51.7468 -Georgia_Bold.ttf 59 B 40.1348 40.4681 69 € -1.3021 41.2868 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 70 / -2.5016 24.9408 55.3288 -Georgia_Bold.ttf 59 B 40.1348 40.4681 71 C -1.1408 39.1489 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 72 * -1.4688 23.6397 21.2290 -Georgia_Bold.ttf 59 B 40.1348 40.4681 73 ” -2.8977 25.5049 20.0578 -Georgia_Bold.ttf 59 B 40.1348 40.4681 74 ? -1.2792 26.4727 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 75 { -2.9950 25.1716 52.5609 -Georgia_Bold.ttf 59 B 40.1348 40.4681 76 } -3.0302 25.1716 52.5609 -Georgia_Bold.ttf 59 B 40.1348 40.4681 77 , 30.9009 11.5049 20.7483 -Georgia_Bold.ttf 59 B 40.1348 40.4681 78 I -0.0175 21.7342 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 79 ° -1.3293 19.4471 18.8830 -Georgia_Bold.ttf 59 B 40.1348 40.4681 80 K 0.1761 47.4699 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 81 H 0.0226 49.0437 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 82 q 9.9925 36.1968 43.1940 -Georgia_Bold.ttf 59 B 40.1348 40.4681 83 & -1.6965 44.6379 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 84 ’ -2.7496 11.5049 20.0578 -Georgia_Bold.ttf 59 B 40.1348 40.4681 85 [ -2.9979 18.8830 52.5609 -Georgia_Bold.ttf 59 B 40.1348 40.4681 86 - 21.7858 17.3319 6.3078 -Georgia_Bold.ttf 59 B 40.1348 40.4681 87 Y -0.3724 46.5865 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 88 Q -1.2940 43.5511 53.5241 -Georgia_Bold.ttf 59 B 40.1348 40.4681 89 " -2.9347 23.0291 20.0578 -Georgia_Bold.ttf 59 B 40.1348 40.4681 90 ! -1.0341 10.9408 42.8561 -Georgia_Bold.ttf 59 B 40.1348 40.4681 91 x 12.4356 34.3078 28.0000 -Georgia_Bold.ttf 59 B 40.1348 40.4681 92 ) -2.4678 20.7483 52.5609 -Georgia_Bold.ttf 59 B 40.1348 40.4681 93 = 15.8064 30.3879 16.2451 -Georgia_Bold.ttf 59 B 40.1348 40.4681 94 + 7.8864 31.9572 31.9572 -Georgia_Bold.ttf 59 B 40.1348 40.4681 95 X 0.0045 47.1138 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 96 » 12.4422 28.0000 25.5049 -Georgia_Bold.ttf 59 B 40.1348 40.4681 97 ' -2.4488 9.3670 20.0578 -Georgia_Bold.ttf 59 B 40.1348 40.4681 98 ¢ 4.2056 29.6975 45.0592 -Georgia_Bold.ttf 59 B 40.1348 40.4681 99 Z 0.1178 40.1348 40.4681 -Georgia_Bold.ttf 59 B 40.1348 40.4681 100 > 7.8659 28.2500 32.5259 -Georgia_Bold.ttf 59 B 40.1348 40.4681 101 ® -1.6459 50.4457 50.4457 -Georgia_Bold.ttf 59 B 40.1348 40.4681 102 © -1.4805 50.4457 50.4457 -Georgia_Bold.ttf 59 B 40.1348 40.4681 103 ] -3.0304 18.8830 52.5609 -Georgia_Bold.ttf 59 B 40.1348 40.4681 104 é -3.7427 30.1152 45.5819 -Georgia_Bold.ttf 59 B 40.1348 40.4681 105 z 12.3509 28.0000 28.0000 -Georgia_Bold.ttf 59 B 40.1348 40.4681 106 _ 45.4730 41.0560 2.7259 -Georgia_Bold.ttf 59 B 40.1348 40.4681 107 ¥ -0.2010 44.1379 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 1 t -8.5071 22.8029 37.7468 -Georgia_Bold.ttf 60 v 35.5017 28.0000 2 h -16.1371 38.3109 44.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 3 a -1.1947 31.8795 30.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 4 n -1.2083 38.5434 29.1940 -Georgia_Bold.ttf 60 v 35.5017 28.0000 5 P -12.3304 37.4968 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 6 o -1.3620 32.6103 30.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 7 e -1.2536 30.1152 30.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 8 : -0.2253 11.2741 29.1940 -Georgia_Bold.ttf 60 v 35.5017 28.0000 9 r -1.1142 29.1940 29.1940 -Georgia_Bold.ttf 60 v 35.5017 28.0000 10 l -16.8203 18.7339 44.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 11 i -16.8615 18.7339 44.8687 -Georgia_Bold.ttf 60 v 35.5017 28.0000 12 1 -3.8472 23.6397 31.6891 -Georgia_Bold.ttf 60 v 35.5017 28.0000 13 | -16.4473 4.6330 56.5227 -Georgia_Bold.ttf 60 v 35.5017 28.0000 14 N -12.3138 47.1785 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 15 f -16.1780 28.2500 44.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 16 g -1.1649 32.5497 42.0000 -Georgia_Bold.ttf 60 v 35.5017 28.0000 17 d -16.6350 36.4457 45.5819 -Georgia_Bold.ttf 60 v 35.5017 28.0000 18 W -12.3579 68.0276 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 19 s -1.3878 25.8621 30.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 20 c -0.9865 28.9212 30.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 21 u -0.9225 38.2100 30.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 22 3 -3.5155 32.5259 42.2500 -Georgia_Bold.ttf 60 v 35.5017 28.0000 23 ~ 5.6119 32.5497 12.2181 -Georgia_Bold.ttf 60 v 35.5017 28.0000 24 # -8.5154 32.2532 36.4457 -Georgia_Bold.ttf 60 v 35.5017 28.0000 25 O -13.7600 43.5511 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 26 ` -16.4937 15.1940 12.8060 -Georgia_Bold.ttf 60 v 35.5017 28.0000 27 @ -11.0201 47.4709 48.6411 -Georgia_Bold.ttf 60 v 35.5017 28.0000 28 F -12.4550 35.9650 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 29 S -13.9815 33.7437 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 30 p -1.0743 35.8397 42.0000 -Georgia_Bold.ttf 60 v 35.5017 28.0000 31 “ -15.3510 25.5049 20.0578 -Georgia_Bold.ttf 60 v 35.5017 28.0000 32 % -13.7691 46.1460 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 33 £ -13.4378 33.4471 41.6621 -Georgia_Bold.ttf 60 v 35.5017 28.0000 34 . 18.0218 11.2741 11.2741 -Georgia_Bold.ttf 60 v 35.5017 28.0000 35 2 -3.6993 30.6653 31.6891 -Georgia_Bold.ttf 60 v 35.5017 28.0000 36 5 -3.5246 31.3319 42.2500 -Georgia_Bold.ttf 60 v 35.5017 28.0000 37 m -1.0813 57.1474 29.1940 -Georgia_Bold.ttf 60 v 35.5017 28.0000 38 V -12.2963 47.4471 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 39 6 -13.4292 32.2997 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 40 w -0.2842 50.4457 28.0000 -Georgia_Bold.ttf 60 v 35.5017 28.0000 41 T -12.8127 38.0802 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 42 M -12.6429 56.5455 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 43 G -13.5968 45.5865 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 44 b -16.5498 35.7325 45.9198 -Georgia_Bold.ttf 60 v 35.5017 28.0000 45 9 -3.9036 32.6330 42.3571 -Georgia_Bold.ttf 60 v 35.5017 28.0000 46 ; 0.1809 11.5049 39.3813 -Georgia_Bold.ttf 60 v 35.5017 28.0000 47 D -12.7267 44.3879 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 48 L -12.3125 38.0196 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 49 y 0.0500 35.2710 40.8060 -Georgia_Bold.ttf 60 v 35.5017 28.0000 50 ‘ -14.9351 11.5049 20.0578 -Georgia_Bold.ttf 60 v 35.5017 28.0000 51 \ -14.7480 24.9408 55.3288 -Georgia_Bold.ttf 60 v 35.5017 28.0000 52 R -12.4275 46.2759 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 53 < -4.3003 28.2500 32.5259 -Georgia_Bold.ttf 60 v 35.5017 28.0000 54 4 -3.8754 34.6684 42.2500 -Georgia_Bold.ttf 60 v 35.5017 28.0000 55 8 -13.7422 33.3865 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 56 0 -3.8338 34.6876 32.8830 -Georgia_Bold.ttf 60 v 35.5017 28.0000 57 A -12.4412 46.9902 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 58 E -12.5254 38.6908 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 59 B -12.3596 40.1348 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 60 v 0.0536 35.5017 28.0000 -Georgia_Bold.ttf 60 v 35.5017 28.0000 61 k -16.5422 37.9968 44.3879 -Georgia_Bold.ttf 60 v 35.5017 28.0000 62 J -12.7939 33.3235 41.6621 -Georgia_Bold.ttf 60 v 35.5017 28.0000 63 U -12.4877 46.9856 41.6621 -Georgia_Bold.ttf 60 v 35.5017 28.0000 64 j -16.9891 22.1730 57.6747 -Georgia_Bold.ttf 60 v 35.5017 28.0000 65 ( -15.1964 20.7483 52.5609 -Georgia_Bold.ttf 60 v 35.5017 28.0000 66 7 -2.5398 30.0308 41.0560 -Georgia_Bold.ttf 60 v 35.5017 28.0000 67 § -13.7271 26.2192 48.4103 -Georgia_Bold.ttf 60 v 35.5017 28.0000 68 $ -15.6771 31.2486 51.7468 -Georgia_Bold.ttf 60 v 35.5017 28.0000 69 € -13.7543 41.2868 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 70 / -15.1222 24.9408 55.3288 -Georgia_Bold.ttf 60 v 35.5017 28.0000 71 C -13.5139 39.1489 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 72 * -13.7460 23.6397 21.2290 -Georgia_Bold.ttf 60 v 35.5017 28.0000 73 ” -15.1855 25.5049 20.0578 -Georgia_Bold.ttf 60 v 35.5017 28.0000 74 ? -13.7836 26.4727 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 75 { -14.9789 25.1716 52.5609 -Georgia_Bold.ttf 60 v 35.5017 28.0000 76 } -15.3688 25.1716 52.5609 -Georgia_Bold.ttf 60 v 35.5017 28.0000 77 , 18.5852 11.5049 20.7483 -Georgia_Bold.ttf 60 v 35.5017 28.0000 78 I -12.2219 21.7342 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 79 ° -13.4753 19.4471 18.8830 -Georgia_Bold.ttf 60 v 35.5017 28.0000 80 K -12.4412 47.4699 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 81 H -12.3090 49.0437 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 82 q -2.4740 36.1968 43.1940 -Georgia_Bold.ttf 60 v 35.5017 28.0000 83 & -13.5416 44.6379 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 84 ’ -14.8773 11.5049 20.0578 -Georgia_Bold.ttf 60 v 35.5017 28.0000 85 [ -14.9799 18.8830 52.5609 -Georgia_Bold.ttf 60 v 35.5017 28.0000 86 - 9.2858 17.3319 6.3078 -Georgia_Bold.ttf 60 v 35.5017 28.0000 87 Y -12.5006 46.5865 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 88 Q -13.8444 43.5511 53.5241 -Georgia_Bold.ttf 60 v 35.5017 28.0000 89 " -15.1106 23.0291 20.0578 -Georgia_Bold.ttf 60 v 35.5017 28.0000 90 ! -13.8618 10.9408 42.8561 -Georgia_Bold.ttf 60 v 35.5017 28.0000 91 x -0.1682 34.3078 28.0000 -Georgia_Bold.ttf 60 v 35.5017 28.0000 92 ) -15.3951 20.7483 52.5609 -Georgia_Bold.ttf 60 v 35.5017 28.0000 93 = 3.5230 30.3879 16.2451 -Georgia_Bold.ttf 60 v 35.5017 28.0000 94 + -4.5568 31.9572 31.9572 -Georgia_Bold.ttf 60 v 35.5017 28.0000 95 X -12.7383 47.1138 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 96 » -0.3808 28.0000 25.5049 -Georgia_Bold.ttf 60 v 35.5017 28.0000 97 ' -15.3343 9.3670 20.0578 -Georgia_Bold.ttf 60 v 35.5017 28.0000 98 ¢ -8.1306 29.6975 45.0592 -Georgia_Bold.ttf 60 v 35.5017 28.0000 99 Z -12.4234 40.1348 40.4681 -Georgia_Bold.ttf 60 v 35.5017 28.0000 100 > -4.5842 28.2500 32.5259 -Georgia_Bold.ttf 60 v 35.5017 28.0000 101 ® -14.1395 50.4457 50.4457 -Georgia_Bold.ttf 60 v 35.5017 28.0000 102 © -13.8734 50.4457 50.4457 -Georgia_Bold.ttf 60 v 35.5017 28.0000 103 ] -15.1555 18.8830 52.5609 -Georgia_Bold.ttf 60 v 35.5017 28.0000 104 é -16.4463 30.1152 45.5819 -Georgia_Bold.ttf 60 v 35.5017 28.0000 105 z -0.1724 28.0000 28.0000 -Georgia_Bold.ttf 60 v 35.5017 28.0000 106 _ 33.0238 41.0560 2.7259 -Georgia_Bold.ttf 60 v 35.5017 28.0000 107 ¥ -12.6670 44.1379 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 1 t 7.9910 22.8029 37.7468 -Georgia_Bold.ttf 61 k 37.9968 44.3879 2 h 0.3618 38.3109 44.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 3 a 15.1981 31.8795 30.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 4 n 15.2833 38.5434 29.1940 -Georgia_Bold.ttf 61 k 37.9968 44.3879 5 P 3.6338 37.4968 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 6 o 15.0040 32.6103 30.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 7 e 15.2535 30.1152 30.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 8 : 16.2231 11.2741 29.1940 -Georgia_Bold.ttf 61 k 37.9968 44.3879 9 r 14.7509 29.1940 29.1940 -Georgia_Bold.ttf 61 k 37.9968 44.3879 10 l 0.1234 18.7339 44.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 11 i -0.6848 18.7339 44.8687 -Georgia_Bold.ttf 61 k 37.9968 44.3879 12 1 12.5408 23.6397 31.6891 -Georgia_Bold.ttf 61 k 37.9968 44.3879 13 | -0.3369 4.6330 56.5227 -Georgia_Bold.ttf 61 k 37.9968 44.3879 14 N 3.8607 47.1785 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 15 f -0.0264 28.2500 44.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 16 g 15.0934 32.5497 42.0000 -Georgia_Bold.ttf 61 k 37.9968 44.3879 17 d -0.1857 36.4457 45.5819 -Georgia_Bold.ttf 61 k 37.9968 44.3879 18 W 3.9733 68.0276 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 19 s 14.9474 25.8621 30.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 20 c 15.3333 28.9212 30.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 21 u 15.2112 38.2100 30.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 22 3 12.6322 32.5259 42.2500 -Georgia_Bold.ttf 61 k 37.9968 44.3879 23 ~ 21.8153 32.5497 12.2181 -Georgia_Bold.ttf 61 k 37.9968 44.3879 24 # 8.3299 32.2532 36.4457 -Georgia_Bold.ttf 61 k 37.9968 44.3879 25 O 3.0399 43.5511 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 26 ` 0.2674 15.1940 12.8060 -Georgia_Bold.ttf 61 k 37.9968 44.3879 27 @ 5.1795 47.4709 48.6411 -Georgia_Bold.ttf 61 k 37.9968 44.3879 28 F 4.0129 35.9650 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 29 S 2.4573 33.7437 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 30 p 15.1862 35.8397 42.0000 -Georgia_Bold.ttf 61 k 37.9968 44.3879 31 “ 1.4117 25.5049 20.0578 -Georgia_Bold.ttf 61 k 37.9968 44.3879 32 % 2.6756 46.1460 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 33 £ 2.5027 33.4471 41.6621 -Georgia_Bold.ttf 61 k 37.9968 44.3879 34 . 34.5949 11.2741 11.2741 -Georgia_Bold.ttf 61 k 37.9968 44.3879 35 2 12.6957 30.6653 31.6891 -Georgia_Bold.ttf 61 k 37.9968 44.3879 36 5 12.4816 31.3319 42.2500 -Georgia_Bold.ttf 61 k 37.9968 44.3879 37 m 15.5416 57.1474 29.1940 -Georgia_Bold.ttf 61 k 37.9968 44.3879 38 V 4.2567 47.4471 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 39 6 2.9250 32.2997 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 40 w 16.7035 50.4457 28.0000 -Georgia_Bold.ttf 61 k 37.9968 44.3879 41 T 4.0979 38.0802 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 42 M 3.9206 56.5455 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 43 G 2.8662 45.5865 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 44 b 0.0603 35.7325 45.9198 -Georgia_Bold.ttf 61 k 37.9968 44.3879 45 9 12.5518 32.6330 42.3571 -Georgia_Bold.ttf 61 k 37.9968 44.3879 46 ; 16.2508 11.5049 39.3813 -Georgia_Bold.ttf 61 k 37.9968 44.3879 47 D 3.8150 44.3879 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 48 L 3.9523 38.0196 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 49 y 16.5673 35.2710 40.8060 -Georgia_Bold.ttf 61 k 37.9968 44.3879 50 ‘ 1.2681 11.5049 20.0578 -Georgia_Bold.ttf 61 k 37.9968 44.3879 51 \ 1.4844 24.9408 55.3288 -Georgia_Bold.ttf 61 k 37.9968 44.3879 52 R 3.7921 46.2759 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 53 < 11.7435 28.2500 32.5259 -Georgia_Bold.ttf 61 k 37.9968 44.3879 54 4 12.9973 34.6684 42.2500 -Georgia_Bold.ttf 61 k 37.9968 44.3879 55 8 2.6439 33.3865 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 56 0 12.8500 34.6876 32.8830 -Georgia_Bold.ttf 61 k 37.9968 44.3879 57 A 4.3780 46.9902 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 58 E 3.5617 38.6908 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 59 B 3.7948 40.1348 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 60 v 16.5062 35.5017 28.0000 -Georgia_Bold.ttf 61 k 37.9968 44.3879 61 k -0.1417 37.9968 44.3879 -Georgia_Bold.ttf 61 k 37.9968 44.3879 62 J 3.8365 33.3235 41.6621 -Georgia_Bold.ttf 61 k 37.9968 44.3879 63 U 4.0010 46.9856 41.6621 -Georgia_Bold.ttf 61 k 37.9968 44.3879 64 j -0.3090 22.1730 57.6747 -Georgia_Bold.ttf 61 k 37.9968 44.3879 65 ( 0.9081 20.7483 52.5609 -Georgia_Bold.ttf 61 k 37.9968 44.3879 66 7 14.2714 30.0308 41.0560 -Georgia_Bold.ttf 61 k 37.9968 44.3879 67 § 2.8713 26.2192 48.4103 -Georgia_Bold.ttf 61 k 37.9968 44.3879 68 $ 0.5450 31.2486 51.7468 -Georgia_Bold.ttf 61 k 37.9968 44.3879 69 € 2.8136 41.2868 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 70 / 1.2324 24.9408 55.3288 -Georgia_Bold.ttf 61 k 37.9968 44.3879 71 C 2.4118 39.1489 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 72 * 2.8022 23.6397 21.2290 -Georgia_Bold.ttf 61 k 37.9968 44.3879 73 ” 1.2523 25.5049 20.0578 -Georgia_Bold.ttf 61 k 37.9968 44.3879 74 ? 2.6753 26.4727 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 75 { 1.3206 25.1716 52.5609 -Georgia_Bold.ttf 61 k 37.9968 44.3879 76 } 1.1838 25.1716 52.5609 -Georgia_Bold.ttf 61 k 37.9968 44.3879 77 , 35.1298 11.5049 20.7483 -Georgia_Bold.ttf 61 k 37.9968 44.3879 78 I 4.0159 21.7342 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 79 ° 2.8487 19.4471 18.8830 -Georgia_Bold.ttf 61 k 37.9968 44.3879 80 K 3.5717 47.4699 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 81 H 4.1984 49.0437 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 82 q 14.0252 36.1968 43.1940 -Georgia_Bold.ttf 61 k 37.9968 44.3879 83 & 2.7791 44.6379 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 84 ’ 1.5469 11.5049 20.0578 -Georgia_Bold.ttf 61 k 37.9968 44.3879 85 [ 1.4455 18.8830 52.5609 -Georgia_Bold.ttf 61 k 37.9968 44.3879 86 - 25.7192 17.3319 6.3078 -Georgia_Bold.ttf 61 k 37.9968 44.3879 87 Y 3.9083 46.5865 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 88 Q 2.5433 43.5511 53.5241 -Georgia_Bold.ttf 61 k 37.9968 44.3879 89 " 1.4164 23.0291 20.0578 -Georgia_Bold.ttf 61 k 37.9968 44.3879 90 ! 2.8379 10.9408 42.8561 -Georgia_Bold.ttf 61 k 37.9968 44.3879 91 x 16.4621 34.3078 28.0000 -Georgia_Bold.ttf 61 k 37.9968 44.3879 92 ) 0.9222 20.7483 52.5609 -Georgia_Bold.ttf 61 k 37.9968 44.3879 93 = 19.7598 30.3879 16.2451 -Georgia_Bold.ttf 61 k 37.9968 44.3879 94 + 12.0154 31.9572 31.9572 -Georgia_Bold.ttf 61 k 37.9968 44.3879 95 X 3.9570 47.1138 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 96 » 16.5268 28.0000 25.5049 -Georgia_Bold.ttf 61 k 37.9968 44.3879 97 ' 1.4899 9.3670 20.0578 -Georgia_Bold.ttf 61 k 37.9968 44.3879 98 ¢ 7.8538 29.6975 45.0592 -Georgia_Bold.ttf 61 k 37.9968 44.3879 99 Z 4.4142 40.1348 40.4681 -Georgia_Bold.ttf 61 k 37.9968 44.3879 100 > 11.8763 28.2500 32.5259 -Georgia_Bold.ttf 61 k 37.9968 44.3879 101 ® 2.5009 50.4457 50.4457 -Georgia_Bold.ttf 61 k 37.9968 44.3879 102 © 2.2508 50.4457 50.4457 -Georgia_Bold.ttf 61 k 37.9968 44.3879 103 ] 1.0370 18.8830 52.5609 -Georgia_Bold.ttf 61 k 37.9968 44.3879 104 é 0.1190 30.1152 45.5819 -Georgia_Bold.ttf 61 k 37.9968 44.3879 105 z 16.4501 28.0000 28.0000 -Georgia_Bold.ttf 61 k 37.9968 44.3879 106 _ 49.5585 41.0560 2.7259 -Georgia_Bold.ttf 61 k 37.9968 44.3879 107 ¥ 4.1150 44.1379 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 1 t 3.5155 22.8029 37.7468 -Georgia_Bold.ttf 62 J 33.3235 41.6621 2 h -4.0761 38.3109 44.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 3 a 11.2913 31.8795 30.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 4 n 11.2502 38.5434 29.1940 -Georgia_Bold.ttf 62 J 33.3235 41.6621 5 P 0.1035 37.4968 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 6 o 11.0468 32.6103 30.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 7 e 11.2857 30.1152 30.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 8 : 12.5227 11.2741 29.1940 -Georgia_Bold.ttf 62 J 33.3235 41.6621 9 r 11.3218 29.1940 29.1940 -Georgia_Bold.ttf 62 J 33.3235 41.6621 10 l -3.8768 18.7339 44.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 11 i -4.3103 18.7339 44.8687 -Georgia_Bold.ttf 62 J 33.3235 41.6621 12 1 8.9917 23.6397 31.6891 -Georgia_Bold.ttf 62 J 33.3235 41.6621 13 | -4.1287 4.6330 56.5227 -Georgia_Bold.ttf 62 J 33.3235 41.6621 14 N -0.0417 47.1785 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 15 f -3.9300 28.2500 44.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 16 g 11.3394 32.5497 42.0000 -Georgia_Bold.ttf 62 J 33.3235 41.6621 17 d -3.7859 36.4457 45.5819 -Georgia_Bold.ttf 62 J 33.3235 41.6621 18 W -0.0949 68.0276 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 19 s 10.9776 25.8621 30.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 20 c 11.2401 28.9212 30.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 21 u 11.0668 38.2100 30.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 22 3 8.6234 32.5259 42.2500 -Georgia_Bold.ttf 62 J 33.3235 41.6621 23 ~ 17.9066 32.5497 12.2181 -Georgia_Bold.ttf 62 J 33.3235 41.6621 24 # 3.9296 32.2532 36.4457 -Georgia_Bold.ttf 62 J 33.3235 41.6621 25 O -1.2408 43.5511 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 26 ` -3.8889 15.1940 12.8060 -Georgia_Bold.ttf 62 J 33.3235 41.6621 27 @ 1.0678 47.4709 48.6411 -Georgia_Bold.ttf 62 J 33.3235 41.6621 28 F -0.4214 35.9650 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 29 S -1.1278 33.7437 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 30 p 11.4652 35.8397 42.0000 -Georgia_Bold.ttf 62 J 33.3235 41.6621 31 “ -2.5245 25.5049 20.0578 -Georgia_Bold.ttf 62 J 33.3235 41.6621 32 % -1.4637 46.1460 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 33 £ -0.9512 33.4471 41.6621 -Georgia_Bold.ttf 62 J 33.3235 41.6621 34 . 30.3476 11.2741 11.2741 -Georgia_Bold.ttf 62 J 33.3235 41.6621 35 2 8.7155 30.6653 31.6891 -Georgia_Bold.ttf 62 J 33.3235 41.6621 36 5 8.6903 31.3319 42.2500 -Georgia_Bold.ttf 62 J 33.3235 41.6621 37 m 11.4126 57.1474 29.1940 -Georgia_Bold.ttf 62 J 33.3235 41.6621 38 V -0.0497 47.4471 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 39 6 -1.0652 32.2997 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 40 w 12.6218 50.4457 28.0000 -Georgia_Bold.ttf 62 J 33.3235 41.6621 41 T 0.0961 38.0802 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 42 M 0.0339 56.5455 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 43 G -1.3335 45.5865 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 44 b -3.7265 35.7325 45.9198 -Georgia_Bold.ttf 62 J 33.3235 41.6621 45 9 8.5021 32.6330 42.3571 -Georgia_Bold.ttf 62 J 33.3235 41.6621 46 ; 12.1169 11.5049 39.3813 -Georgia_Bold.ttf 62 J 33.3235 41.6621 47 D -0.2140 44.3879 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 48 L -0.1148 38.0196 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 49 y 12.3558 35.2710 40.8060 -Georgia_Bold.ttf 62 J 33.3235 41.6621 50 ‘ -2.3979 11.5049 20.0578 -Georgia_Bold.ttf 62 J 33.3235 41.6621 51 \ -2.7990 24.9408 55.3288 -Georgia_Bold.ttf 62 J 33.3235 41.6621 52 R 0.1575 46.2759 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 53 < 7.8861 28.2500 32.5259 -Georgia_Bold.ttf 62 J 33.3235 41.6621 54 4 8.9412 34.6684 42.2500 -Georgia_Bold.ttf 62 J 33.3235 41.6621 55 8 -1.3251 33.3865 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 56 0 8.7587 34.6876 32.8830 -Georgia_Bold.ttf 62 J 33.3235 41.6621 57 A -0.2788 46.9902 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 58 E -0.1223 38.6908 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 59 B -0.0583 40.1348 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 60 v 12.3754 35.5017 28.0000 -Georgia_Bold.ttf 62 J 33.3235 41.6621 61 k -4.0577 37.9968 44.3879 -Georgia_Bold.ttf 62 J 33.3235 41.6621 62 J -0.0828 33.3235 41.6621 -Georgia_Bold.ttf 62 J 33.3235 41.6621 63 U 0.0044 46.9856 41.6621 -Georgia_Bold.ttf 62 J 33.3235 41.6621 64 j -4.2000 22.1730 57.6747 -Georgia_Bold.ttf 62 J 33.3235 41.6621 65 ( -2.7856 20.7483 52.5609 -Georgia_Bold.ttf 62 J 33.3235 41.6621 66 7 9.9905 30.0308 41.0560 -Georgia_Bold.ttf 62 J 33.3235 41.6621 67 § -1.4366 26.2192 48.4103 -Georgia_Bold.ttf 62 J 33.3235 41.6621 68 $ -3.1619 31.2486 51.7468 -Georgia_Bold.ttf 62 J 33.3235 41.6621 69 € -1.1633 41.2868 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 70 / -2.9665 24.9408 55.3288 -Georgia_Bold.ttf 62 J 33.3235 41.6621 71 C -1.5626 39.1489 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 72 * -1.3492 23.6397 21.2290 -Georgia_Bold.ttf 62 J 33.3235 41.6621 73 ” -2.4177 25.5049 20.0578 -Georgia_Bold.ttf 62 J 33.3235 41.6621 74 ? -1.5149 26.4727 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 75 { -2.8598 25.1716 52.5609 -Georgia_Bold.ttf 62 J 33.3235 41.6621 76 } -2.6874 25.1716 52.5609 -Georgia_Bold.ttf 62 J 33.3235 41.6621 77 , 31.1049 11.5049 20.7483 -Georgia_Bold.ttf 62 J 33.3235 41.6621 78 I -0.3341 21.7342 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 79 ° -1.5309 19.4471 18.8830 -Georgia_Bold.ttf 62 J 33.3235 41.6621 80 K 0.0218 47.4699 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 81 H -0.0430 49.0437 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 82 q 9.8448 36.1968 43.1940 -Georgia_Bold.ttf 62 J 33.3235 41.6621 83 & -1.3529 44.6379 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 84 ’ -2.5568 11.5049 20.0578 -Georgia_Bold.ttf 62 J 33.3235 41.6621 85 [ -2.6622 18.8830 52.5609 -Georgia_Bold.ttf 62 J 33.3235 41.6621 86 - 21.6789 17.3319 6.3078 -Georgia_Bold.ttf 62 J 33.3235 41.6621 87 Y -0.4038 46.5865 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 88 Q -1.2486 43.5511 53.5241 -Georgia_Bold.ttf 62 J 33.3235 41.6621 89 " -2.6144 23.0291 20.0578 -Georgia_Bold.ttf 62 J 33.3235 41.6621 90 ! -1.1394 10.9408 42.8561 -Georgia_Bold.ttf 62 J 33.3235 41.6621 91 x 12.3713 34.3078 28.0000 -Georgia_Bold.ttf 62 J 33.3235 41.6621 92 ) -2.9006 20.7483 52.5609 -Georgia_Bold.ttf 62 J 33.3235 41.6621 93 = 15.9994 30.3879 16.2451 -Georgia_Bold.ttf 62 J 33.3235 41.6621 94 + 8.3268 31.9572 31.9572 -Georgia_Bold.ttf 62 J 33.3235 41.6621 95 X -0.0984 47.1138 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 96 » 12.4137 28.0000 25.5049 -Georgia_Bold.ttf 62 J 33.3235 41.6621 97 ' -2.7199 9.3670 20.0578 -Georgia_Bold.ttf 62 J 33.3235 41.6621 98 ¢ 4.1756 29.6975 45.0592 -Georgia_Bold.ttf 62 J 33.3235 41.6621 99 Z -0.0102 40.1348 40.4681 -Georgia_Bold.ttf 62 J 33.3235 41.6621 100 > 7.8733 28.2500 32.5259 -Georgia_Bold.ttf 62 J 33.3235 41.6621 101 ® -1.7747 50.4457 50.4457 -Georgia_Bold.ttf 62 J 33.3235 41.6621 102 © -1.5676 50.4457 50.4457 -Georgia_Bold.ttf 62 J 33.3235 41.6621 103 ] -2.6388 18.8830 52.5609 -Georgia_Bold.ttf 62 J 33.3235 41.6621 104 é -3.6961 30.1152 45.5819 -Georgia_Bold.ttf 62 J 33.3235 41.6621 105 z 12.6735 28.0000 28.0000 -Georgia_Bold.ttf 62 J 33.3235 41.6621 106 _ 45.4488 41.0560 2.7259 -Georgia_Bold.ttf 62 J 33.3235 41.6621 107 ¥ -0.0704 44.1379 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 1 t 3.8954 22.8029 37.7468 -Georgia_Bold.ttf 63 U 46.9856 41.6621 2 h -3.7641 38.3109 44.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 3 a 11.0726 31.8795 30.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 4 n 11.2246 38.5434 29.1940 -Georgia_Bold.ttf 63 U 46.9856 41.6621 5 P 0.2871 37.4968 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 6 o 11.3000 32.6103 30.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 7 e 11.1916 30.1152 30.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 8 : 12.1697 11.2741 29.1940 -Georgia_Bold.ttf 63 U 46.9856 41.6621 9 r 11.4683 29.1940 29.1940 -Georgia_Bold.ttf 63 U 46.9856 41.6621 10 l -3.9725 18.7339 44.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 11 i -4.3818 18.7339 44.8687 -Georgia_Bold.ttf 63 U 46.9856 41.6621 12 1 8.5992 23.6397 31.6891 -Georgia_Bold.ttf 63 U 46.9856 41.6621 13 | -3.8954 4.6330 56.5227 -Georgia_Bold.ttf 63 U 46.9856 41.6621 14 N 0.0198 47.1785 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 15 f -4.0510 28.2500 44.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 16 g 10.9849 32.5497 42.0000 -Georgia_Bold.ttf 63 U 46.9856 41.6621 17 d -3.9717 36.4457 45.5819 -Georgia_Bold.ttf 63 U 46.9856 41.6621 18 W -0.1105 68.0276 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 19 s 11.4228 25.8621 30.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 20 c 11.2804 28.9212 30.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 21 u 11.3038 38.2100 30.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 22 3 8.8287 32.5259 42.2500 -Georgia_Bold.ttf 63 U 46.9856 41.6621 23 ~ 18.0668 32.5497 12.2181 -Georgia_Bold.ttf 63 U 46.9856 41.6621 24 # 3.9417 32.2532 36.4457 -Georgia_Bold.ttf 63 U 46.9856 41.6621 25 O -1.0222 43.5511 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 26 ` -3.9152 15.1940 12.8060 -Georgia_Bold.ttf 63 U 46.9856 41.6621 27 @ 1.3904 47.4709 48.6411 -Georgia_Bold.ttf 63 U 46.9856 41.6621 28 F -0.0880 35.9650 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 29 S -1.1303 33.7437 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 30 p 11.0596 35.8397 42.0000 -Georgia_Bold.ttf 63 U 46.9856 41.6621 31 “ -2.7874 25.5049 20.0578 -Georgia_Bold.ttf 63 U 46.9856 41.6621 32 % -1.0865 46.1460 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 33 £ -1.1192 33.4471 41.6621 -Georgia_Bold.ttf 63 U 46.9856 41.6621 34 . 30.2457 11.2741 11.2741 -Georgia_Bold.ttf 63 U 46.9856 41.6621 35 2 8.9207 30.6653 31.6891 -Georgia_Bold.ttf 63 U 46.9856 41.6621 36 5 8.9296 31.3319 42.2500 -Georgia_Bold.ttf 63 U 46.9856 41.6621 37 m 11.1825 57.1474 29.1940 -Georgia_Bold.ttf 63 U 46.9856 41.6621 38 V 0.5234 47.4471 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 39 6 -0.8697 32.2997 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 40 w 12.6364 50.4457 28.0000 -Georgia_Bold.ttf 63 U 46.9856 41.6621 41 T -0.2595 38.0802 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 42 M 0.2175 56.5455 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 43 G -0.7528 45.5865 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 44 b -3.9959 35.7325 45.9198 -Georgia_Bold.ttf 63 U 46.9856 41.6621 45 9 9.1023 32.6330 42.3571 -Georgia_Bold.ttf 63 U 46.9856 41.6621 46 ; 12.2642 11.5049 39.3813 -Georgia_Bold.ttf 63 U 46.9856 41.6621 47 D -0.1323 44.3879 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 48 L 0.0997 38.0196 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 49 y 12.3199 35.2710 40.8060 -Georgia_Bold.ttf 63 U 46.9856 41.6621 50 ‘ -2.8896 11.5049 20.0578 -Georgia_Bold.ttf 63 U 46.9856 41.6621 51 \ -2.5372 24.9408 55.3288 -Georgia_Bold.ttf 63 U 46.9856 41.6621 52 R -0.0919 46.2759 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 53 < 8.0497 28.2500 32.5259 -Georgia_Bold.ttf 63 U 46.9856 41.6621 54 4 8.7635 34.6684 42.2500 -Georgia_Bold.ttf 63 U 46.9856 41.6621 55 8 -1.2055 33.3865 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 56 0 8.4038 34.6876 32.8830 -Georgia_Bold.ttf 63 U 46.9856 41.6621 57 A 0.0906 46.9902 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 58 E -0.1825 38.6908 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 59 B 0.1568 40.1348 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 60 v 12.7066 35.5017 28.0000 -Georgia_Bold.ttf 63 U 46.9856 41.6621 61 k -3.8701 37.9968 44.3879 -Georgia_Bold.ttf 63 U 46.9856 41.6621 62 J 0.2008 33.3235 41.6621 -Georgia_Bold.ttf 63 U 46.9856 41.6621 63 U 0.2581 46.9856 41.6621 -Georgia_Bold.ttf 63 U 46.9856 41.6621 64 j -4.3181 22.1730 57.6747 -Georgia_Bold.ttf 63 U 46.9856 41.6621 65 ( -2.7560 20.7483 52.5609 -Georgia_Bold.ttf 63 U 46.9856 41.6621 66 7 9.9836 30.0308 41.0560 -Georgia_Bold.ttf 63 U 46.9856 41.6621 67 § -1.4034 26.2192 48.4103 -Georgia_Bold.ttf 63 U 46.9856 41.6621 68 $ -3.4116 31.2486 51.7468 -Georgia_Bold.ttf 63 U 46.9856 41.6621 69 € -0.8218 41.2868 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 70 / -2.8025 24.9408 55.3288 -Georgia_Bold.ttf 63 U 46.9856 41.6621 71 C -0.9967 39.1489 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 72 * -1.0614 23.6397 21.2290 -Georgia_Bold.ttf 63 U 46.9856 41.6621 73 ” -2.7044 25.5049 20.0578 -Georgia_Bold.ttf 63 U 46.9856 41.6621 74 ? -1.4251 26.4727 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 75 { -2.8063 25.1716 52.5609 -Georgia_Bold.ttf 63 U 46.9856 41.6621 76 } -2.5006 25.1716 52.5609 -Georgia_Bold.ttf 63 U 46.9856 41.6621 77 , 30.7903 11.5049 20.7483 -Georgia_Bold.ttf 63 U 46.9856 41.6621 78 I -0.1151 21.7342 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 79 ° -1.1202 19.4471 18.8830 -Georgia_Bold.ttf 63 U 46.9856 41.6621 80 K -0.2936 47.4699 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 81 H 0.0774 49.0437 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 82 q 10.3652 36.1968 43.1940 -Georgia_Bold.ttf 63 U 46.9856 41.6621 83 & -0.8340 44.6379 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 84 ’ -2.7958 11.5049 20.0578 -Georgia_Bold.ttf 63 U 46.9856 41.6621 85 [ -2.4248 18.8830 52.5609 -Georgia_Bold.ttf 63 U 46.9856 41.6621 86 - 21.7679 17.3319 6.3078 -Georgia_Bold.ttf 63 U 46.9856 41.6621 87 Y -0.0186 46.5865 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 88 Q -1.3735 43.5511 53.5241 -Georgia_Bold.ttf 63 U 46.9856 41.6621 89 " -2.8124 23.0291 20.0578 -Georgia_Bold.ttf 63 U 46.9856 41.6621 90 ! -1.3281 10.9408 42.8561 -Georgia_Bold.ttf 63 U 46.9856 41.6621 91 x 12.5531 34.3078 28.0000 -Georgia_Bold.ttf 63 U 46.9856 41.6621 92 ) -2.9124 20.7483 52.5609 -Georgia_Bold.ttf 63 U 46.9856 41.6621 93 = 15.7247 30.3879 16.2451 -Georgia_Bold.ttf 63 U 46.9856 41.6621 94 + 8.2607 31.9572 31.9572 -Georgia_Bold.ttf 63 U 46.9856 41.6621 95 X 0.2976 47.1138 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 96 » 12.1304 28.0000 25.5049 -Georgia_Bold.ttf 63 U 46.9856 41.6621 97 ' -2.8584 9.3670 20.0578 -Georgia_Bold.ttf 63 U 46.9856 41.6621 98 ¢ 4.3974 29.6975 45.0592 -Georgia_Bold.ttf 63 U 46.9856 41.6621 99 Z -0.0737 40.1348 40.4681 -Georgia_Bold.ttf 63 U 46.9856 41.6621 100 > 7.9982 28.2500 32.5259 -Georgia_Bold.ttf 63 U 46.9856 41.6621 101 ® -1.3948 50.4457 50.4457 -Georgia_Bold.ttf 63 U 46.9856 41.6621 102 © -1.4615 50.4457 50.4457 -Georgia_Bold.ttf 63 U 46.9856 41.6621 103 ] -2.4253 18.8830 52.5609 -Georgia_Bold.ttf 63 U 46.9856 41.6621 104 é -3.7428 30.1152 45.5819 -Georgia_Bold.ttf 63 U 46.9856 41.6621 105 z 12.2751 28.0000 28.0000 -Georgia_Bold.ttf 63 U 46.9856 41.6621 106 _ 45.4274 41.0560 2.7259 -Georgia_Bold.ttf 63 U 46.9856 41.6621 107 ¥ 0.2710 44.1379 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 1 t 8.5282 22.8029 37.7468 -Georgia_Bold.ttf 64 j 22.1730 57.6747 2 h 0.4748 38.3109 44.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 3 a 15.6476 31.8795 30.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 4 n 15.6506 38.5434 29.1940 -Georgia_Bold.ttf 64 j 22.1730 57.6747 5 P 4.2180 37.4968 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 6 o 15.4443 32.6103 30.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 7 e 15.6051 30.1152 30.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 8 : 17.0846 11.2741 29.1940 -Georgia_Bold.ttf 64 j 22.1730 57.6747 9 r 15.6586 29.1940 29.1940 -Georgia_Bold.ttf 64 j 22.1730 57.6747 10 l 0.2552 18.7339 44.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 11 i 0.0330 18.7339 44.8687 -Georgia_Bold.ttf 64 j 22.1730 57.6747 12 1 13.2727 23.6397 31.6891 -Georgia_Bold.ttf 64 j 22.1730 57.6747 13 | 0.2695 4.6330 56.5227 -Georgia_Bold.ttf 64 j 22.1730 57.6747 14 N 4.5850 47.1785 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 15 f 0.4294 28.2500 44.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 16 g 15.8360 32.5497 42.0000 -Georgia_Bold.ttf 64 j 22.1730 57.6747 17 d 0.3853 36.4457 45.5819 -Georgia_Bold.ttf 64 j 22.1730 57.6747 18 W 4.5202 68.0276 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 19 s 15.6677 25.8621 30.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 20 c 15.5615 28.9212 30.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 21 u 15.7427 38.2100 30.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 22 3 13.2502 32.5259 42.2500 -Georgia_Bold.ttf 64 j 22.1730 57.6747 23 ~ 22.4115 32.5497 12.2181 -Georgia_Bold.ttf 64 j 22.1730 57.6747 24 # 8.4115 32.2532 36.4457 -Georgia_Bold.ttf 64 j 22.1730 57.6747 25 O 3.2028 43.5511 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 26 ` 0.6921 15.1940 12.8060 -Georgia_Bold.ttf 64 j 22.1730 57.6747 27 @ 5.6368 47.4709 48.6411 -Georgia_Bold.ttf 64 j 22.1730 57.6747 28 F 4.5234 35.9650 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 29 S 3.2507 33.7437 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 30 p 15.7747 35.8397 42.0000 -Georgia_Bold.ttf 64 j 22.1730 57.6747 31 “ 1.5863 25.5049 20.0578 -Georgia_Bold.ttf 64 j 22.1730 57.6747 32 % 3.0983 46.1460 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 33 £ 2.9792 33.4471 41.6621 -Georgia_Bold.ttf 64 j 22.1730 57.6747 34 . 34.5870 11.2741 11.2741 -Georgia_Bold.ttf 64 j 22.1730 57.6747 35 2 13.2264 30.6653 31.6891 -Georgia_Bold.ttf 64 j 22.1730 57.6747 36 5 13.2093 31.3319 42.2500 -Georgia_Bold.ttf 64 j 22.1730 57.6747 37 m 15.7127 57.1474 29.1940 -Georgia_Bold.ttf 64 j 22.1730 57.6747 38 V 4.3524 47.4471 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 39 6 3.2288 32.2997 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 40 w 16.6342 50.4457 28.0000 -Georgia_Bold.ttf 64 j 22.1730 57.6747 41 T 4.4423 38.0802 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 42 M 4.0165 56.5455 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 43 G 3.1802 45.5865 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 44 b 0.4891 35.7325 45.9198 -Georgia_Bold.ttf 64 j 22.1730 57.6747 45 9 13.2390 32.6330 42.3571 -Georgia_Bold.ttf 64 j 22.1730 57.6747 46 ; 16.8770 11.5049 39.3813 -Georgia_Bold.ttf 64 j 22.1730 57.6747 47 D 4.4961 44.3879 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 48 L 4.4264 38.0196 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 49 y 16.8247 35.2710 40.8060 -Georgia_Bold.ttf 64 j 22.1730 57.6747 50 ‘ 1.5519 11.5049 20.0578 -Georgia_Bold.ttf 64 j 22.1730 57.6747 51 \ 1.8871 24.9408 55.3288 -Georgia_Bold.ttf 64 j 22.1730 57.6747 52 R 4.4210 46.2759 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 53 < 12.2498 28.2500 32.5259 -Georgia_Bold.ttf 64 j 22.1730 57.6747 54 4 13.1616 34.6684 42.2500 -Georgia_Bold.ttf 64 j 22.1730 57.6747 55 8 2.9480 33.3865 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 56 0 13.2907 34.6876 32.8830 -Georgia_Bold.ttf 64 j 22.1730 57.6747 57 A 4.6132 46.9902 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 58 E 4.3333 38.6908 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 59 B 4.5613 40.1348 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 60 v 16.6644 35.5017 28.0000 -Georgia_Bold.ttf 64 j 22.1730 57.6747 61 k 0.3572 37.9968 44.3879 -Georgia_Bold.ttf 64 j 22.1730 57.6747 62 J 4.4621 33.3235 41.6621 -Georgia_Bold.ttf 64 j 22.1730 57.6747 63 U 4.3834 46.9856 41.6621 -Georgia_Bold.ttf 64 j 22.1730 57.6747 64 j -0.0455 22.1730 57.6747 -Georgia_Bold.ttf 64 j 22.1730 57.6747 65 ( 1.7247 20.7483 52.5609 -Georgia_Bold.ttf 64 j 22.1730 57.6747 66 7 14.6293 30.0308 41.0560 -Georgia_Bold.ttf 64 j 22.1730 57.6747 67 § 2.8206 26.2192 48.4103 -Georgia_Bold.ttf 64 j 22.1730 57.6747 68 $ 0.8053 31.2486 51.7468 -Georgia_Bold.ttf 64 j 22.1730 57.6747 69 € 3.1182 41.2868 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 70 / 1.7489 24.9408 55.3288 -Georgia_Bold.ttf 64 j 22.1730 57.6747 71 C 3.1090 39.1489 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 72 * 3.1405 23.6397 21.2290 -Georgia_Bold.ttf 64 j 22.1730 57.6747 73 ” 1.4939 25.5049 20.0578 -Georgia_Bold.ttf 64 j 22.1730 57.6747 74 ? 3.1723 26.4727 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 75 { 1.5742 25.1716 52.5609 -Georgia_Bold.ttf 64 j 22.1730 57.6747 76 } 1.6663 25.1716 52.5609 -Georgia_Bold.ttf 64 j 22.1730 57.6747 77 , 35.3851 11.5049 20.7483 -Georgia_Bold.ttf 64 j 22.1730 57.6747 78 I 4.6501 21.7342 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 79 ° 3.1227 19.4471 18.8830 -Georgia_Bold.ttf 64 j 22.1730 57.6747 80 K 4.4234 47.4699 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 81 H 4.3559 49.0437 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 82 q 14.3147 36.1968 43.1940 -Georgia_Bold.ttf 64 j 22.1730 57.6747 83 & 3.1118 44.6379 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 84 ’ 1.4454 11.5049 20.0578 -Georgia_Bold.ttf 64 j 22.1730 57.6747 85 [ 1.7555 18.8830 52.5609 -Georgia_Bold.ttf 64 j 22.1730 57.6747 86 - 26.4908 17.3319 6.3078 -Georgia_Bold.ttf 64 j 22.1730 57.6747 87 Y 4.3962 46.5865 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 88 Q 3.2891 43.5511 53.5241 -Georgia_Bold.ttf 64 j 22.1730 57.6747 89 " 1.5814 23.0291 20.0578 -Georgia_Bold.ttf 64 j 22.1730 57.6747 90 ! 3.0075 10.9408 42.8561 -Georgia_Bold.ttf 64 j 22.1730 57.6747 91 x 16.5546 34.3078 28.0000 -Georgia_Bold.ttf 64 j 22.1730 57.6747 92 ) 1.5445 20.7483 52.5609 -Georgia_Bold.ttf 64 j 22.1730 57.6747 93 = 20.1483 30.3879 16.2451 -Georgia_Bold.ttf 64 j 22.1730 57.6747 94 + 12.5897 31.9572 31.9572 -Georgia_Bold.ttf 64 j 22.1730 57.6747 95 X 4.4109 47.1138 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 96 » 16.4221 28.0000 25.5049 -Georgia_Bold.ttf 64 j 22.1730 57.6747 97 ' 1.3605 9.3670 20.0578 -Georgia_Bold.ttf 64 j 22.1730 57.6747 98 ¢ 8.2391 29.6975 45.0592 -Georgia_Bold.ttf 64 j 22.1730 57.6747 99 Z 4.3019 40.1348 40.4681 -Georgia_Bold.ttf 64 j 22.1730 57.6747 100 > 12.2089 28.2500 32.5259 -Georgia_Bold.ttf 64 j 22.1730 57.6747 101 ® 2.8715 50.4457 50.4457 -Georgia_Bold.ttf 64 j 22.1730 57.6747 102 © 2.8967 50.4457 50.4457 -Georgia_Bold.ttf 64 j 22.1730 57.6747 103 ] 1.6204 18.8830 52.5609 -Georgia_Bold.ttf 64 j 22.1730 57.6747 104 é 0.3951 30.1152 45.5819 -Georgia_Bold.ttf 64 j 22.1730 57.6747 105 z 17.1199 28.0000 28.0000 -Georgia_Bold.ttf 64 j 22.1730 57.6747 106 _ 49.6736 41.0560 2.7259 -Georgia_Bold.ttf 64 j 22.1730 57.6747 107 ¥ 4.2453 44.1379 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 1 t 6.8932 22.8029 37.7468 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 2 h -1.2524 38.3109 44.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 3 a 14.2799 31.8795 30.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 4 n 13.9392 38.5434 29.1940 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 5 P 2.6817 37.4968 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 6 o 13.7526 32.6103 30.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 7 e 13.7134 30.1152 30.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 8 : 14.9935 11.2741 29.1940 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 9 r 13.9264 29.1940 29.1940 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 10 l -1.0985 18.7339 44.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 11 i -1.8041 18.7339 44.8687 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 12 1 11.6329 23.6397 31.6891 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 13 | -1.3906 4.6330 56.5227 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 14 N 2.9404 47.1785 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 15 f -1.1964 28.2500 44.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 16 g 13.9333 32.5497 42.0000 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 17 d -1.3978 36.4457 45.5819 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 18 W 2.6073 68.0276 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 19 s 14.0449 25.8621 30.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 20 c 14.1256 28.9212 30.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 21 u 14.3019 38.2100 30.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 22 3 11.6423 32.5259 42.2500 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 23 ~ 20.7845 32.5497 12.2181 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 24 # 7.1157 32.2532 36.4457 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 25 O 1.9408 43.5511 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 26 ` -1.1625 15.1940 12.8060 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 27 @ 4.0476 47.4709 48.6411 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 28 F 2.9106 35.9650 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 29 S 1.7946 33.7437 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 30 p 13.7670 35.8397 42.0000 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 31 “ -0.1893 25.5049 20.0578 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 32 % 1.4819 46.1460 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 33 £ 1.6093 33.4471 41.6621 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 34 . 33.0593 11.2741 11.2741 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 35 2 11.5699 30.6653 31.6891 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 36 5 11.5170 31.3319 42.2500 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 37 m 13.7852 57.1474 29.1940 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 38 V 2.7783 47.4471 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 39 6 1.3585 32.2997 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 40 w 14.8986 50.4457 28.0000 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 41 T 2.5927 38.0802 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 42 M 2.7592 56.5455 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 43 G 1.8779 45.5865 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 44 b -1.3650 35.7325 45.9198 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 45 9 11.3906 32.6330 42.3571 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 46 ; 15.1894 11.5049 39.3813 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 47 D 2.8463 44.3879 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 48 L 2.4585 38.0196 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 49 y 15.0775 35.2710 40.8060 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 50 ‘ 0.0030 11.5049 20.0578 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 51 \ 0.0731 24.9408 55.3288 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 52 R 2.8289 46.2759 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 53 < 10.5694 28.2500 32.5259 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 54 4 11.5368 34.6684 42.2500 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 55 8 1.5606 33.3865 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 56 0 11.5928 34.6876 32.8830 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 57 A 3.2272 46.9902 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 58 E 2.4548 38.6908 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 59 B 2.7205 40.1348 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 60 v 15.2765 35.5017 28.0000 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 61 k -0.9819 37.9968 44.3879 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 62 J 2.5425 33.3235 41.6621 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 63 U 2.4710 46.9856 41.6621 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 64 j -1.6006 22.1730 57.6747 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 65 ( -0.0422 20.7483 52.5609 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 66 7 12.5618 30.0308 41.0560 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 67 § 1.4206 26.2192 48.4103 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 68 $ -0.5118 31.2486 51.7468 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 69 € 1.5396 41.2868 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 70 / 0.1196 24.9408 55.3288 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 71 C 1.6645 39.1489 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 72 * 1.5811 23.6397 21.2290 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 73 ” -0.1839 25.5049 20.0578 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 74 ? 1.8357 26.4727 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 75 { 0.0704 25.1716 52.5609 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 76 } -0.2474 25.1716 52.5609 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 77 , 33.9867 11.5049 20.7483 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 78 I 2.7084 21.7342 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 79 ° 1.6160 19.4471 18.8830 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 80 K 2.8259 47.4699 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 81 H 2.7105 49.0437 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 82 q 12.6815 36.1968 43.1940 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 83 & 1.5281 44.6379 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 84 ’ -0.0619 11.5049 20.0578 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 85 [ -0.0422 18.8830 52.5609 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 86 - 24.5518 17.3319 6.3078 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 87 Y 2.8592 46.5865 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 88 Q 1.4486 43.5511 53.5241 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 89 " 0.2619 23.0291 20.0578 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 90 ! 1.3174 10.9408 42.8561 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 91 x 15.0592 34.3078 28.0000 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 92 ) 0.0653 20.7483 52.5609 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 93 = 18.8198 30.3879 16.2451 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 94 + 10.5590 31.9572 31.9572 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 95 X 2.4785 47.1138 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 96 » 14.9717 28.0000 25.5049 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 97 ' -0.0057 9.3670 20.0578 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 98 ¢ 6.7284 29.6975 45.0592 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 99 Z 3.1127 40.1348 40.4681 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 100 > 10.7867 28.2500 32.5259 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 101 ® 1.2013 50.4457 50.4457 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 102 © 1.1023 50.4457 50.4457 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 103 ] 0.2675 18.8830 52.5609 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 104 é -0.8533 30.1152 45.5819 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 105 z 15.1870 28.0000 28.0000 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 106 _ 48.2304 41.0560 2.7259 -Georgia_Bold.ttf 65 ( 20.7483 52.5609 107 ¥ 3.0165 44.1379 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 1 t -6.1161 22.8029 37.7468 -Georgia_Bold.ttf 66 7 30.0308 41.0560 2 h -13.9700 38.3109 44.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 3 a 1.3406 31.8795 30.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 4 n 1.5600 38.5434 29.1940 -Georgia_Bold.ttf 66 7 30.0308 41.0560 5 P -10.0870 37.4968 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 6 o 1.2275 32.6103 30.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 7 e 1.6208 30.1152 30.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 8 : 2.3862 11.2741 29.1940 -Georgia_Bold.ttf 66 7 30.0308 41.0560 9 r 1.3562 29.1940 29.1940 -Georgia_Bold.ttf 66 7 30.0308 41.0560 10 l -13.9313 18.7339 44.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 11 i -14.4936 18.7339 44.8687 -Georgia_Bold.ttf 66 7 30.0308 41.0560 12 1 -1.3892 23.6397 31.6891 -Georgia_Bold.ttf 66 7 30.0308 41.0560 13 | -13.8270 4.6330 56.5227 -Georgia_Bold.ttf 66 7 30.0308 41.0560 14 N -10.2457 47.1785 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 15 f -14.1219 28.2500 44.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 16 g 1.2057 32.5497 42.0000 -Georgia_Bold.ttf 66 7 30.0308 41.0560 17 d -13.9813 36.4457 45.5819 -Georgia_Bold.ttf 66 7 30.0308 41.0560 18 W -9.8679 68.0276 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 19 s 0.8166 25.8621 30.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 20 c 1.4755 28.9212 30.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 21 u 1.2844 38.2100 30.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 22 3 -1.3951 32.5259 42.2500 -Georgia_Bold.ttf 66 7 30.0308 41.0560 23 ~ 8.0751 32.5497 12.2181 -Georgia_Bold.ttf 66 7 30.0308 41.0560 24 # -5.7288 32.2532 36.4457 -Georgia_Bold.ttf 66 7 30.0308 41.0560 25 O -11.4528 43.5511 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 26 ` -13.6589 15.1940 12.8060 -Georgia_Bold.ttf 66 7 30.0308 41.0560 27 @ -8.7253 47.4709 48.6411 -Georgia_Bold.ttf 66 7 30.0308 41.0560 28 F -9.7173 35.9650 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 29 S -11.3832 33.7437 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 30 p 1.2624 35.8397 42.0000 -Georgia_Bold.ttf 66 7 30.0308 41.0560 31 “ -12.7801 25.5049 20.0578 -Georgia_Bold.ttf 66 7 30.0308 41.0560 32 % -11.3412 46.1460 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 33 £ -11.2208 33.4471 41.6621 -Georgia_Bold.ttf 66 7 30.0308 41.0560 34 . 20.2574 11.2741 11.2741 -Georgia_Bold.ttf 66 7 30.0308 41.0560 35 2 -1.1765 30.6653 31.6891 -Georgia_Bold.ttf 66 7 30.0308 41.0560 36 5 -1.1023 31.3319 42.2500 -Georgia_Bold.ttf 66 7 30.0308 41.0560 37 m 1.4025 57.1474 29.1940 -Georgia_Bold.ttf 66 7 30.0308 41.0560 38 V -9.8082 47.4471 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 39 6 -11.1928 32.2997 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 40 w 2.6494 50.4457 28.0000 -Georgia_Bold.ttf 66 7 30.0308 41.0560 41 T -9.9609 38.0802 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 42 M -9.9387 56.5455 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 43 G -11.2573 45.5865 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 44 b -13.7673 35.7325 45.9198 -Georgia_Bold.ttf 66 7 30.0308 41.0560 45 9 -1.0176 32.6330 42.3571 -Georgia_Bold.ttf 66 7 30.0308 41.0560 46 ; 2.7175 11.5049 39.3813 -Georgia_Bold.ttf 66 7 30.0308 41.0560 47 D -9.8730 44.3879 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 48 L -9.7747 38.0196 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 49 y 2.4507 35.2710 40.8060 -Georgia_Bold.ttf 66 7 30.0308 41.0560 50 ‘ -12.6499 11.5049 20.0578 -Georgia_Bold.ttf 66 7 30.0308 41.0560 51 \ -12.6507 24.9408 55.3288 -Georgia_Bold.ttf 66 7 30.0308 41.0560 52 R -9.9053 46.2759 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 53 < -1.9800 28.2500 32.5259 -Georgia_Bold.ttf 66 7 30.0308 41.0560 54 4 -1.0563 34.6684 42.2500 -Georgia_Bold.ttf 66 7 30.0308 41.0560 55 8 -11.4633 33.3865 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 56 0 -1.3733 34.6876 32.8830 -Georgia_Bold.ttf 66 7 30.0308 41.0560 57 A -9.8236 46.9902 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 58 E -9.9827 38.6908 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 59 B -9.8671 40.1348 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 60 v 2.4996 35.5017 28.0000 -Georgia_Bold.ttf 66 7 30.0308 41.0560 61 k -13.8929 37.9968 44.3879 -Georgia_Bold.ttf 66 7 30.0308 41.0560 62 J -9.9846 33.3235 41.6621 -Georgia_Bold.ttf 66 7 30.0308 41.0560 63 U -10.0566 46.9856 41.6621 -Georgia_Bold.ttf 66 7 30.0308 41.0560 64 j -14.6145 22.1730 57.6747 -Georgia_Bold.ttf 66 7 30.0308 41.0560 65 ( -12.8994 20.7483 52.5609 -Georgia_Bold.ttf 66 7 30.0308 41.0560 66 7 0.0982 30.0308 41.0560 -Georgia_Bold.ttf 66 7 30.0308 41.0560 67 § -11.0137 26.2192 48.4103 -Georgia_Bold.ttf 66 7 30.0308 41.0560 68 $ -13.0666 31.2486 51.7468 -Georgia_Bold.ttf 66 7 30.0308 41.0560 69 € -11.0956 41.2868 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 70 / -12.5083 24.9408 55.3288 -Georgia_Bold.ttf 66 7 30.0308 41.0560 71 C -11.3432 39.1489 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 72 * -11.0323 23.6397 21.2290 -Georgia_Bold.ttf 66 7 30.0308 41.0560 73 ” -12.6068 25.5049 20.0578 -Georgia_Bold.ttf 66 7 30.0308 41.0560 74 ? -11.1619 26.4727 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 75 { -12.5663 25.1716 52.5609 -Georgia_Bold.ttf 66 7 30.0308 41.0560 76 } -12.3900 25.1716 52.5609 -Georgia_Bold.ttf 66 7 30.0308 41.0560 77 , 21.4660 11.5049 20.7483 -Georgia_Bold.ttf 66 7 30.0308 41.0560 78 I -9.9806 21.7342 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 79 ° -11.1317 19.4471 18.8830 -Georgia_Bold.ttf 66 7 30.0308 41.0560 80 K -10.1177 47.4699 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 81 H -9.8526 49.0437 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 82 q 0.1939 36.1968 43.1940 -Georgia_Bold.ttf 66 7 30.0308 41.0560 83 & -11.0202 44.6379 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 84 ’ -12.5779 11.5049 20.0578 -Georgia_Bold.ttf 66 7 30.0308 41.0560 85 [ -12.7713 18.8830 52.5609 -Georgia_Bold.ttf 66 7 30.0308 41.0560 86 - 11.9635 17.3319 6.3078 -Georgia_Bold.ttf 66 7 30.0308 41.0560 87 Y -10.1913 46.5865 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 88 Q -11.2520 43.5511 53.5241 -Georgia_Bold.ttf 66 7 30.0308 41.0560 89 " -12.5755 23.0291 20.0578 -Georgia_Bold.ttf 66 7 30.0308 41.0560 90 ! -11.2778 10.9408 42.8561 -Georgia_Bold.ttf 66 7 30.0308 41.0560 91 x 2.5850 34.3078 28.0000 -Georgia_Bold.ttf 66 7 30.0308 41.0560 92 ) -12.7790 20.7483 52.5609 -Georgia_Bold.ttf 66 7 30.0308 41.0560 93 = 6.1037 30.3879 16.2451 -Georgia_Bold.ttf 66 7 30.0308 41.0560 94 + -1.6212 31.9572 31.9572 -Georgia_Bold.ttf 66 7 30.0308 41.0560 95 X -10.1025 47.1138 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 96 » 2.5760 28.0000 25.5049 -Georgia_Bold.ttf 66 7 30.0308 41.0560 97 ' -12.7938 9.3670 20.0578 -Georgia_Bold.ttf 66 7 30.0308 41.0560 98 ¢ -5.9528 29.6975 45.0592 -Georgia_Bold.ttf 66 7 30.0308 41.0560 99 Z -10.1430 40.1348 40.4681 -Georgia_Bold.ttf 66 7 30.0308 41.0560 100 > -1.8705 28.2500 32.5259 -Georgia_Bold.ttf 66 7 30.0308 41.0560 101 ® -11.7085 50.4457 50.4457 -Georgia_Bold.ttf 66 7 30.0308 41.0560 102 © -11.7305 50.4457 50.4457 -Georgia_Bold.ttf 66 7 30.0308 41.0560 103 ] -12.7249 18.8830 52.5609 -Georgia_Bold.ttf 66 7 30.0308 41.0560 104 é -13.8918 30.1152 45.5819 -Georgia_Bold.ttf 66 7 30.0308 41.0560 105 z 2.7725 28.0000 28.0000 -Georgia_Bold.ttf 66 7 30.0308 41.0560 106 _ 35.7740 41.0560 2.7259 -Georgia_Bold.ttf 66 7 30.0308 41.0560 107 ¥ -9.8709 44.1379 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 1 t 5.0162 22.8029 37.7468 -Georgia_Bold.ttf 67 § 26.2192 48.4103 2 h -2.8697 38.3109 44.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 3 a 12.4592 31.8795 30.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 4 n 12.3421 38.5434 29.1940 -Georgia_Bold.ttf 67 § 26.2192 48.4103 5 P 1.0833 37.4968 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 6 o 12.4764 32.6103 30.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 7 e 12.4439 30.1152 30.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 8 : 13.5645 11.2741 29.1940 -Georgia_Bold.ttf 67 § 26.2192 48.4103 9 r 12.6717 29.1940 29.1940 -Georgia_Bold.ttf 67 § 26.2192 48.4103 10 l -2.9764 18.7339 44.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 11 i -3.1182 18.7339 44.8687 -Georgia_Bold.ttf 67 § 26.2192 48.4103 12 1 9.9408 23.6397 31.6891 -Georgia_Bold.ttf 67 § 26.2192 48.4103 13 | -2.4756 4.6330 56.5227 -Georgia_Bold.ttf 67 § 26.2192 48.4103 14 N 1.2461 47.1785 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 15 f -2.8708 28.2500 44.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 16 g 12.4338 32.5497 42.0000 -Georgia_Bold.ttf 67 § 26.2192 48.4103 17 d -2.6668 36.4457 45.5819 -Georgia_Bold.ttf 67 § 26.2192 48.4103 18 W 1.2598 68.0276 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 19 s 12.1509 25.8621 30.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 20 c 12.3772 28.9212 30.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 21 u 12.2198 38.2100 30.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 22 3 10.3424 32.5259 42.2500 -Georgia_Bold.ttf 67 § 26.2192 48.4103 23 ~ 19.0551 32.5497 12.2181 -Georgia_Bold.ttf 67 § 26.2192 48.4103 24 # 4.9707 32.2532 36.4457 -Georgia_Bold.ttf 67 § 26.2192 48.4103 25 O -0.0115 43.5511 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 26 ` -2.7804 15.1940 12.8060 -Georgia_Bold.ttf 67 § 26.2192 48.4103 27 @ 2.5117 47.4709 48.6411 -Georgia_Bold.ttf 67 § 26.2192 48.4103 28 F 1.3174 35.9650 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 29 S -0.4498 33.7437 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 30 p 12.5514 35.8397 42.0000 -Georgia_Bold.ttf 67 § 26.2192 48.4103 31 “ -1.5319 25.5049 20.0578 -Georgia_Bold.ttf 67 § 26.2192 48.4103 32 % 0.0506 46.1460 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 33 £ 0.1508 33.4471 41.6621 -Georgia_Bold.ttf 67 § 26.2192 48.4103 34 . 31.7611 11.2741 11.2741 -Georgia_Bold.ttf 67 § 26.2192 48.4103 35 2 10.0268 30.6653 31.6891 -Georgia_Bold.ttf 67 § 26.2192 48.4103 36 5 9.9566 31.3319 42.2500 -Georgia_Bold.ttf 67 § 26.2192 48.4103 37 m 12.3062 57.1474 29.1940 -Georgia_Bold.ttf 67 § 26.2192 48.4103 38 V 1.2113 47.4471 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 39 6 0.2910 32.2997 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 40 w 13.6683 50.4457 28.0000 -Georgia_Bold.ttf 67 § 26.2192 48.4103 41 T 0.8084 38.0802 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 42 M 1.2388 56.5455 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 43 G -0.3969 45.5865 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 44 b -2.6562 35.7325 45.9198 -Georgia_Bold.ttf 67 § 26.2192 48.4103 45 9 10.0230 32.6330 42.3571 -Georgia_Bold.ttf 67 § 26.2192 48.4103 46 ; 13.5282 11.5049 39.3813 -Georgia_Bold.ttf 67 § 26.2192 48.4103 47 D 1.3376 44.3879 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 48 L 1.1014 38.0196 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 49 y 13.6736 35.2710 40.8060 -Georgia_Bold.ttf 67 § 26.2192 48.4103 50 ‘ -1.4864 11.5049 20.0578 -Georgia_Bold.ttf 67 § 26.2192 48.4103 51 \ -1.2608 24.9408 55.3288 -Georgia_Bold.ttf 67 § 26.2192 48.4103 52 R 0.9795 46.2759 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 53 < 9.1792 28.2500 32.5259 -Georgia_Bold.ttf 67 § 26.2192 48.4103 54 4 10.0928 34.6684 42.2500 -Georgia_Bold.ttf 67 § 26.2192 48.4103 55 8 -0.1307 33.3865 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 56 0 9.8989 34.6876 32.8830 -Georgia_Bold.ttf 67 § 26.2192 48.4103 57 A 1.2612 46.9902 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 58 E 1.0964 38.6908 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 59 B 1.2237 40.1348 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 60 v 13.4693 35.5017 28.0000 -Georgia_Bold.ttf 67 § 26.2192 48.4103 61 k -3.0073 37.9968 44.3879 -Georgia_Bold.ttf 67 § 26.2192 48.4103 62 J 0.9840 33.3235 41.6621 -Georgia_Bold.ttf 67 § 26.2192 48.4103 63 U 1.0248 46.9856 41.6621 -Georgia_Bold.ttf 67 § 26.2192 48.4103 64 j -3.1733 22.1730 57.6747 -Georgia_Bold.ttf 67 § 26.2192 48.4103 65 ( -1.3614 20.7483 52.5609 -Georgia_Bold.ttf 67 § 26.2192 48.4103 66 7 10.9099 30.0308 41.0560 -Georgia_Bold.ttf 67 § 26.2192 48.4103 67 § -0.1543 26.2192 48.4103 -Georgia_Bold.ttf 67 § 26.2192 48.4103 68 $ -2.0202 31.2486 51.7468 -Georgia_Bold.ttf 67 § 26.2192 48.4103 69 € -0.2014 41.2868 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 70 / -1.4518 24.9408 55.3288 -Georgia_Bold.ttf 67 § 26.2192 48.4103 71 C -0.0044 39.1489 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 72 * 0.1864 23.6397 21.2290 -Georgia_Bold.ttf 67 § 26.2192 48.4103 73 ” -1.5410 25.5049 20.0578 -Georgia_Bold.ttf 67 § 26.2192 48.4103 74 ? 0.0549 26.4727 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 75 { -1.4823 25.1716 52.5609 -Georgia_Bold.ttf 67 § 26.2192 48.4103 76 } -1.6523 25.1716 52.5609 -Georgia_Bold.ttf 67 § 26.2192 48.4103 77 , 32.3169 11.5049 20.7483 -Georgia_Bold.ttf 67 § 26.2192 48.4103 78 I 1.0574 21.7342 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 79 ° 0.0223 19.4471 18.8830 -Georgia_Bold.ttf 67 § 26.2192 48.4103 80 K 0.9103 47.4699 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 81 H 1.4467 49.0437 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 82 q 11.2227 36.1968 43.1940 -Georgia_Bold.ttf 67 § 26.2192 48.4103 83 & 0.0860 44.6379 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 84 ’ -1.8034 11.5049 20.0578 -Georgia_Bold.ttf 67 § 26.2192 48.4103 85 [ -1.7168 18.8830 52.5609 -Georgia_Bold.ttf 67 § 26.2192 48.4103 86 - 22.9712 17.3319 6.3078 -Georgia_Bold.ttf 67 § 26.2192 48.4103 87 Y 0.9840 46.5865 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 88 Q 0.1228 43.5511 53.5241 -Georgia_Bold.ttf 67 § 26.2192 48.4103 89 " -1.4889 23.0291 20.0578 -Georgia_Bold.ttf 67 § 26.2192 48.4103 90 ! -0.1274 10.9408 42.8561 -Georgia_Bold.ttf 67 § 26.2192 48.4103 91 x 13.6490 34.3078 28.0000 -Georgia_Bold.ttf 67 § 26.2192 48.4103 92 ) -1.5749 20.7483 52.5609 -Georgia_Bold.ttf 67 § 26.2192 48.4103 93 = 16.9294 30.3879 16.2451 -Georgia_Bold.ttf 67 § 26.2192 48.4103 94 + 9.2619 31.9572 31.9572 -Georgia_Bold.ttf 67 § 26.2192 48.4103 95 X 1.2859 47.1138 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 96 » 13.5537 28.0000 25.5049 -Georgia_Bold.ttf 67 § 26.2192 48.4103 97 ' -1.5523 9.3670 20.0578 -Georgia_Bold.ttf 67 § 26.2192 48.4103 98 ¢ 5.3542 29.6975 45.0592 -Georgia_Bold.ttf 67 § 26.2192 48.4103 99 Z 1.2765 40.1348 40.4681 -Georgia_Bold.ttf 67 § 26.2192 48.4103 100 > 9.2279 28.2500 32.5259 -Georgia_Bold.ttf 67 § 26.2192 48.4103 101 ® -0.6544 50.4457 50.4457 -Georgia_Bold.ttf 67 § 26.2192 48.4103 102 © -0.5099 50.4457 50.4457 -Georgia_Bold.ttf 67 § 26.2192 48.4103 103 ] -1.6246 18.8830 52.5609 -Georgia_Bold.ttf 67 § 26.2192 48.4103 104 é -2.8888 30.1152 45.5819 -Georgia_Bold.ttf 67 § 26.2192 48.4103 105 z 13.4161 28.0000 28.0000 -Georgia_Bold.ttf 67 § 26.2192 48.4103 106 _ 46.6449 41.0560 2.7259 -Georgia_Bold.ttf 67 § 26.2192 48.4103 107 ¥ 1.4553 44.1379 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 1 t 6.9108 22.8029 37.7468 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 2 h -1.2576 38.3109 44.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 3 a 14.5725 31.8795 30.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 4 n 14.4938 38.5434 29.1940 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 5 P 3.2369 37.4968 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 6 o 14.4882 32.6103 30.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 7 e 14.3173 30.1152 30.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 8 : 15.3371 11.2741 29.1940 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 9 r 14.6743 29.1940 29.1940 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 10 l -0.9972 18.7339 44.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 11 i -1.1925 18.7339 44.8687 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 12 1 11.9896 23.6397 31.6891 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 13 | -0.8132 4.6330 56.5227 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 14 N 3.0154 47.1785 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 15 f -0.7829 28.2500 44.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 16 g 14.4158 32.5497 42.0000 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 17 d -1.0239 36.4457 45.5819 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 18 W 2.9468 68.0276 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 19 s 14.7202 25.8621 30.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 20 c 14.7358 28.9212 30.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 21 u 14.2339 38.2100 30.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 22 3 11.8912 32.5259 42.2500 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 23 ~ 21.2837 32.5497 12.2181 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 24 # 7.1379 32.2532 36.4457 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 25 O 1.9636 43.5511 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 26 ` -0.5650 15.1940 12.8060 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 27 @ 4.2251 47.4709 48.6411 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 28 F 3.5175 35.9650 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 29 S 2.0614 33.7437 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 30 p 14.2876 35.8397 42.0000 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 31 “ 0.5212 25.5049 20.0578 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 32 % 1.8824 46.1460 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 33 £ 2.0563 33.4471 41.6621 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 34 . 33.5726 11.2741 11.2741 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 35 2 12.2184 30.6653 31.6891 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 36 5 11.8719 31.3319 42.2500 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 37 m 14.6347 57.1474 29.1940 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 38 V 2.9917 47.4471 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 39 6 2.3147 32.2997 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 40 w 15.7359 50.4457 28.0000 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 41 T 3.1807 38.0802 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 42 M 3.4347 56.5455 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 43 G 1.9520 45.5865 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 44 b -0.7794 35.7325 45.9198 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 45 9 11.6559 32.6330 42.3571 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 46 ; 15.1472 11.5049 39.3813 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 47 D 3.2202 44.3879 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 48 L 3.2831 38.0196 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 49 y 15.6125 35.2710 40.8060 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 50 ‘ 0.5484 11.5049 20.0578 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 51 \ 0.6328 24.9408 55.3288 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 52 R 2.8142 46.2759 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 53 < 11.0684 28.2500 32.5259 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 54 4 11.8509 34.6684 42.2500 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 55 8 1.8563 33.3865 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 56 0 12.0340 34.6876 32.8830 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 57 A 3.1801 46.9902 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 58 E 3.1423 38.6908 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 59 B 3.1393 40.1348 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 60 v 16.0346 35.5017 28.0000 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 61 k -0.5622 37.9968 44.3879 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 62 J 3.5792 33.3235 41.6621 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 63 U 3.2294 46.9856 41.6621 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 64 j -1.2807 22.1730 57.6747 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 65 ( 0.4516 20.7483 52.5609 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 66 7 13.5022 30.0308 41.0560 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 67 § 2.0976 26.2192 48.4103 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 68 $ 0.2575 31.2486 51.7468 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 69 € 2.1138 41.2868 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 70 / 0.4043 24.9408 55.3288 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 71 C 2.0477 39.1489 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 72 * 1.8475 23.6397 21.2290 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 73 ” 0.3460 25.5049 20.0578 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 74 ? 2.1470 26.4727 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 75 { 0.6100 25.1716 52.5609 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 76 } 0.2946 25.1716 52.5609 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 77 , 34.3372 11.5049 20.7483 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 78 I 3.0545 21.7342 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 79 ° 2.1596 19.4471 18.8830 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 80 K 3.3000 47.4699 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 81 H 3.3127 49.0437 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 82 q 13.3934 36.1968 43.1940 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 83 & 2.2456 44.6379 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 84 ’ 0.3377 11.5049 20.0578 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 85 [ 0.5623 18.8830 52.5609 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 86 - 25.1015 17.3319 6.3078 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 87 Y 3.1255 46.5865 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 88 Q 1.9463 43.5511 53.5241 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 89 " 0.5382 23.0291 20.0578 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 90 ! 2.0648 10.9408 42.8561 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 91 x 15.8545 34.3078 28.0000 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 92 ) 0.5446 20.7483 52.5609 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 93 = 19.1320 30.3879 16.2451 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 94 + 11.6069 31.9572 31.9572 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 95 X 3.2840 47.1138 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 96 » 15.4759 28.0000 25.5049 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 97 ' 0.5809 9.3670 20.0578 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 98 ¢ 7.1652 29.6975 45.0592 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 99 Z 3.0116 40.1348 40.4681 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 100 > 10.9698 28.2500 32.5259 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 101 ® 1.5128 50.4457 50.4457 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 102 © 1.6726 50.4457 50.4457 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 103 ] 0.6804 18.8830 52.5609 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 104 é -0.6991 30.1152 45.5819 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 105 z 15.8241 28.0000 28.0000 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 106 _ 48.8378 41.0560 2.7259 -Georgia_Bold.ttf 68 $ 31.2486 51.7468 107 ¥ 3.0172 44.1379 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 1 t 5.0011 22.8029 37.7468 -Georgia_Bold.ttf 69 € 41.2868 42.8561 2 h -2.7837 38.3109 44.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 3 a 12.5271 31.8795 30.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 4 n 12.5655 38.5434 29.1940 -Georgia_Bold.ttf 69 € 41.2868 42.8561 5 P 1.3736 37.4968 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 6 o 12.3842 32.6103 30.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 7 e 12.4983 30.1152 30.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 8 : 13.8836 11.2741 29.1940 -Georgia_Bold.ttf 69 € 41.2868 42.8561 9 r 12.4636 29.1940 29.1940 -Georgia_Bold.ttf 69 € 41.2868 42.8561 10 l -2.6394 18.7339 44.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 11 i -2.9782 18.7339 44.8687 -Georgia_Bold.ttf 69 € 41.2868 42.8561 12 1 9.9230 23.6397 31.6891 -Georgia_Bold.ttf 69 € 41.2868 42.8561 13 | -2.7286 4.6330 56.5227 -Georgia_Bold.ttf 69 € 41.2868 42.8561 14 N 1.0365 47.1785 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 15 f -2.8415 28.2500 44.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 16 g 12.4455 32.5497 42.0000 -Georgia_Bold.ttf 69 € 41.2868 42.8561 17 d -2.8382 36.4457 45.5819 -Georgia_Bold.ttf 69 € 41.2868 42.8561 18 W 1.1584 68.0276 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 19 s 12.5070 25.8621 30.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 20 c 12.5279 28.9212 30.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 21 u 12.4930 38.2100 30.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 22 3 9.7076 32.5259 42.2500 -Georgia_Bold.ttf 69 € 41.2868 42.8561 23 ~ 19.0755 32.5497 12.2181 -Georgia_Bold.ttf 69 € 41.2868 42.8561 24 # 5.3284 32.2532 36.4457 -Georgia_Bold.ttf 69 € 41.2868 42.8561 25 O 0.0718 43.5511 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 26 ` -2.5349 15.1940 12.8060 -Georgia_Bold.ttf 69 € 41.2868 42.8561 27 @ 2.2577 47.4709 48.6411 -Georgia_Bold.ttf 69 € 41.2868 42.8561 28 F 1.4333 35.9650 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 29 S 0.0280 33.7437 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 30 p 12.3800 35.8397 42.0000 -Georgia_Bold.ttf 69 € 41.2868 42.8561 31 “ -1.2821 25.5049 20.0578 -Georgia_Bold.ttf 69 € 41.2868 42.8561 32 % 0.2331 46.1460 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 33 £ -0.2785 33.4471 41.6621 -Georgia_Bold.ttf 69 € 41.2868 42.8561 34 . 31.7499 11.2741 11.2741 -Georgia_Bold.ttf 69 € 41.2868 42.8561 35 2 10.1979 30.6653 31.6891 -Georgia_Bold.ttf 69 € 41.2868 42.8561 36 5 9.9814 31.3319 42.2500 -Georgia_Bold.ttf 69 € 41.2868 42.8561 37 m 12.9488 57.1474 29.1940 -Georgia_Bold.ttf 69 € 41.2868 42.8561 38 V 1.3407 47.4471 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 39 6 0.3667 32.2997 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 40 w 13.7016 50.4457 28.0000 -Georgia_Bold.ttf 69 € 41.2868 42.8561 41 T 1.3408 38.0802 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 42 M 1.2275 56.5455 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 43 G 0.1764 45.5865 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 44 b -2.8850 35.7325 45.9198 -Georgia_Bold.ttf 69 € 41.2868 42.8561 45 9 9.6816 32.6330 42.3571 -Georgia_Bold.ttf 69 € 41.2868 42.8561 46 ; 13.4524 11.5049 39.3813 -Georgia_Bold.ttf 69 € 41.2868 42.8561 47 D 1.1940 44.3879 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 48 L 1.1786 38.0196 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 49 y 13.4462 35.2710 40.8060 -Georgia_Bold.ttf 69 € 41.2868 42.8561 50 ‘ -1.5700 11.5049 20.0578 -Georgia_Bold.ttf 69 € 41.2868 42.8561 51 \ -1.3174 24.9408 55.3288 -Georgia_Bold.ttf 69 € 41.2868 42.8561 52 R 0.9493 46.2759 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 53 < 9.3825 28.2500 32.5259 -Georgia_Bold.ttf 69 € 41.2868 42.8561 54 4 10.0748 34.6684 42.2500 -Georgia_Bold.ttf 69 € 41.2868 42.8561 55 8 -0.2057 33.3865 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 56 0 10.1667 34.6876 32.8830 -Georgia_Bold.ttf 69 € 41.2868 42.8561 57 A 1.2170 46.9902 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 58 E 0.7519 38.6908 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 59 B 1.1415 40.1348 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 60 v 13.6209 35.5017 28.0000 -Georgia_Bold.ttf 69 € 41.2868 42.8561 61 k -2.9173 37.9968 44.3879 -Georgia_Bold.ttf 69 € 41.2868 42.8561 62 J 1.0563 33.3235 41.6621 -Georgia_Bold.ttf 69 € 41.2868 42.8561 63 U 1.0813 46.9856 41.6621 -Georgia_Bold.ttf 69 € 41.2868 42.8561 64 j -3.4679 22.1730 57.6747 -Georgia_Bold.ttf 69 € 41.2868 42.8561 65 ( -1.4160 20.7483 52.5609 -Georgia_Bold.ttf 69 € 41.2868 42.8561 66 7 10.8393 30.0308 41.0560 -Georgia_Bold.ttf 69 € 41.2868 42.8561 67 § -0.1385 26.2192 48.4103 -Georgia_Bold.ttf 69 € 41.2868 42.8561 68 $ -1.7582 31.2486 51.7468 -Georgia_Bold.ttf 69 € 41.2868 42.8561 69 € -0.1333 41.2868 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 70 / -1.5542 24.9408 55.3288 -Georgia_Bold.ttf 69 € 41.2868 42.8561 71 C -0.1330 39.1489 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 72 * -0.0269 23.6397 21.2290 -Georgia_Bold.ttf 69 € 41.2868 42.8561 73 ” -1.5971 25.5049 20.0578 -Georgia_Bold.ttf 69 € 41.2868 42.8561 74 ? -0.2941 26.4727 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 75 { -1.5248 25.1716 52.5609 -Georgia_Bold.ttf 69 € 41.2868 42.8561 76 } -1.8475 25.1716 52.5609 -Georgia_Bold.ttf 69 € 41.2868 42.8561 77 , 32.5376 11.5049 20.7483 -Georgia_Bold.ttf 69 € 41.2868 42.8561 78 I 1.1015 21.7342 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 79 ° -0.0177 19.4471 18.8830 -Georgia_Bold.ttf 69 € 41.2868 42.8561 80 K 1.1894 47.4699 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 81 H 1.1862 49.0437 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 82 q 11.0715 36.1968 43.1940 -Georgia_Bold.ttf 69 € 41.2868 42.8561 83 & -0.0165 44.6379 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 84 ’ -1.8040 11.5049 20.0578 -Georgia_Bold.ttf 69 € 41.2868 42.8561 85 [ -1.6613 18.8830 52.5609 -Georgia_Bold.ttf 69 € 41.2868 42.8561 86 - 22.8651 17.3319 6.3078 -Georgia_Bold.ttf 69 € 41.2868 42.8561 87 Y 1.2837 46.5865 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 88 Q -0.0124 43.5511 53.5241 -Georgia_Bold.ttf 69 € 41.2868 42.8561 89 " -1.4558 23.0291 20.0578 -Georgia_Bold.ttf 69 € 41.2868 42.8561 90 ! -0.4124 10.9408 42.8561 -Georgia_Bold.ttf 69 € 41.2868 42.8561 91 x 13.7123 34.3078 28.0000 -Georgia_Bold.ttf 69 € 41.2868 42.8561 92 ) -1.6619 20.7483 52.5609 -Georgia_Bold.ttf 69 € 41.2868 42.8561 93 = 16.9827 30.3879 16.2451 -Georgia_Bold.ttf 69 € 41.2868 42.8561 94 + 9.0196 31.9572 31.9572 -Georgia_Bold.ttf 69 € 41.2868 42.8561 95 X 1.4187 47.1138 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 96 » 13.5472 28.0000 25.5049 -Georgia_Bold.ttf 69 € 41.2868 42.8561 97 ' -1.7440 9.3670 20.0578 -Georgia_Bold.ttf 69 € 41.2868 42.8561 98 ¢ 5.3295 29.6975 45.0592 -Georgia_Bold.ttf 69 € 41.2868 42.8561 99 Z 1.2251 40.1348 40.4681 -Georgia_Bold.ttf 69 € 41.2868 42.8561 100 > 8.7212 28.2500 32.5259 -Georgia_Bold.ttf 69 € 41.2868 42.8561 101 ® 0.3321 50.4457 50.4457 -Georgia_Bold.ttf 69 € 41.2868 42.8561 102 © -0.1682 50.4457 50.4457 -Georgia_Bold.ttf 69 € 41.2868 42.8561 103 ] -1.2767 18.8830 52.5609 -Georgia_Bold.ttf 69 € 41.2868 42.8561 104 é -2.6750 30.1152 45.5819 -Georgia_Bold.ttf 69 € 41.2868 42.8561 105 z 13.4972 28.0000 28.0000 -Georgia_Bold.ttf 69 € 41.2868 42.8561 106 _ 46.6541 41.0560 2.7259 -Georgia_Bold.ttf 69 € 41.2868 42.8561 107 ¥ 1.1093 44.1379 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 1 t 6.8506 22.8029 37.7468 -Georgia_Bold.ttf 70 / 24.9408 55.3288 2 h -1.3362 38.3109 44.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 3 a 13.8661 31.8795 30.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 4 n 14.0271 38.5434 29.1940 -Georgia_Bold.ttf 70 / 24.9408 55.3288 5 P 2.8054 37.4968 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 6 o 14.0536 32.6103 30.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 7 e 13.7092 30.1152 30.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 8 : 15.1585 11.2741 29.1940 -Georgia_Bold.ttf 70 / 24.9408 55.3288 9 r 13.6534 29.1940 29.1940 -Georgia_Bold.ttf 70 / 24.9408 55.3288 10 l -1.1300 18.7339 44.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 11 i -2.0057 18.7339 44.8687 -Georgia_Bold.ttf 70 / 24.9408 55.3288 12 1 11.8599 23.6397 31.6891 -Georgia_Bold.ttf 70 / 24.9408 55.3288 13 | -1.1559 4.6330 56.5227 -Georgia_Bold.ttf 70 / 24.9408 55.3288 14 N 2.7259 47.1785 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 15 f -1.1254 28.2500 44.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 16 g 13.9497 32.5497 42.0000 -Georgia_Bold.ttf 70 / 24.9408 55.3288 17 d -1.0257 36.4457 45.5819 -Georgia_Bold.ttf 70 / 24.9408 55.3288 18 W 2.9500 68.0276 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 19 s 13.7628 25.8621 30.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 20 c 14.1557 28.9212 30.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 21 u 13.9968 38.2100 30.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 22 3 11.5251 32.5259 42.2500 -Georgia_Bold.ttf 70 / 24.9408 55.3288 23 ~ 20.4696 32.5497 12.2181 -Georgia_Bold.ttf 70 / 24.9408 55.3288 24 # 6.8491 32.2532 36.4457 -Georgia_Bold.ttf 70 / 24.9408 55.3288 25 O 1.4601 43.5511 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 26 ` -1.3066 15.1940 12.8060 -Georgia_Bold.ttf 70 / 24.9408 55.3288 27 @ 3.6405 47.4709 48.6411 -Georgia_Bold.ttf 70 / 24.9408 55.3288 28 F 2.9396 35.9650 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 29 S 1.6718 33.7437 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 30 p 13.9118 35.8397 42.0000 -Georgia_Bold.ttf 70 / 24.9408 55.3288 31 “ 0.1492 25.5049 20.0578 -Georgia_Bold.ttf 70 / 24.9408 55.3288 32 % 1.6131 46.1460 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 33 £ 1.5037 33.4471 41.6621 -Georgia_Bold.ttf 70 / 24.9408 55.3288 34 . 33.1582 11.2741 11.2741 -Georgia_Bold.ttf 70 / 24.9408 55.3288 35 2 11.4995 30.6653 31.6891 -Georgia_Bold.ttf 70 / 24.9408 55.3288 36 5 11.3216 31.3319 42.2500 -Georgia_Bold.ttf 70 / 24.9408 55.3288 37 m 14.0696 57.1474 29.1940 -Georgia_Bold.ttf 70 / 24.9408 55.3288 38 V 2.7850 47.4471 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 39 6 1.3706 32.2997 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 40 w 15.2681 50.4457 28.0000 -Georgia_Bold.ttf 70 / 24.9408 55.3288 41 T 2.8466 38.0802 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 42 M 2.6828 56.5455 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 43 G 1.6061 45.5865 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 44 b -1.4910 35.7325 45.9198 -Georgia_Bold.ttf 70 / 24.9408 55.3288 45 9 11.5368 32.6330 42.3571 -Georgia_Bold.ttf 70 / 24.9408 55.3288 46 ; 15.2058 11.5049 39.3813 -Georgia_Bold.ttf 70 / 24.9408 55.3288 47 D 2.7130 44.3879 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 48 L 2.9355 38.0196 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 49 y 15.0152 35.2710 40.8060 -Georgia_Bold.ttf 70 / 24.9408 55.3288 50 ‘ 0.1435 11.5049 20.0578 -Georgia_Bold.ttf 70 / 24.9408 55.3288 51 \ 0.0879 24.9408 55.3288 -Georgia_Bold.ttf 70 / 24.9408 55.3288 52 R 2.9194 46.2759 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 53 < 10.5036 28.2500 32.5259 -Georgia_Bold.ttf 70 / 24.9408 55.3288 54 4 11.7057 34.6684 42.2500 -Georgia_Bold.ttf 70 / 24.9408 55.3288 55 8 1.4236 33.3865 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 56 0 11.2496 34.6876 32.8830 -Georgia_Bold.ttf 70 / 24.9408 55.3288 57 A 2.6517 46.9902 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 58 E 2.7471 38.6908 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 59 B 2.5178 40.1348 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 60 v 15.1881 35.5017 28.0000 -Georgia_Bold.ttf 70 / 24.9408 55.3288 61 k -1.1365 37.9968 44.3879 -Georgia_Bold.ttf 70 / 24.9408 55.3288 62 J 2.5064 33.3235 41.6621 -Georgia_Bold.ttf 70 / 24.9408 55.3288 63 U 2.7269 46.9856 41.6621 -Georgia_Bold.ttf 70 / 24.9408 55.3288 64 j -1.5901 22.1730 57.6747 -Georgia_Bold.ttf 70 / 24.9408 55.3288 65 ( 0.2127 20.7483 52.5609 -Georgia_Bold.ttf 70 / 24.9408 55.3288 66 7 12.8411 30.0308 41.0560 -Georgia_Bold.ttf 70 / 24.9408 55.3288 67 § 1.7481 26.2192 48.4103 -Georgia_Bold.ttf 70 / 24.9408 55.3288 68 $ -0.8565 31.2486 51.7468 -Georgia_Bold.ttf 70 / 24.9408 55.3288 69 € 1.3192 41.2868 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 70 / 0.0016 24.9408 55.3288 -Georgia_Bold.ttf 70 / 24.9408 55.3288 71 C 1.6273 39.1489 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 72 * 1.6575 23.6397 21.2290 -Georgia_Bold.ttf 70 / 24.9408 55.3288 73 ” -0.1363 25.5049 20.0578 -Georgia_Bold.ttf 70 / 24.9408 55.3288 74 ? 1.5327 26.4727 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 75 { 0.1441 25.1716 52.5609 -Georgia_Bold.ttf 70 / 24.9408 55.3288 76 } -0.1875 25.1716 52.5609 -Georgia_Bold.ttf 70 / 24.9408 55.3288 77 , 34.2561 11.5049 20.7483 -Georgia_Bold.ttf 70 / 24.9408 55.3288 78 I 2.7199 21.7342 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 79 ° 1.6509 19.4471 18.8830 -Georgia_Bold.ttf 70 / 24.9408 55.3288 80 K 2.6517 47.4699 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 81 H 2.8148 49.0437 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 82 q 13.0469 36.1968 43.1940 -Georgia_Bold.ttf 70 / 24.9408 55.3288 83 & 1.3660 44.6379 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 84 ’ 0.1992 11.5049 20.0578 -Georgia_Bold.ttf 70 / 24.9408 55.3288 85 [ 0.0917 18.8830 52.5609 -Georgia_Bold.ttf 70 / 24.9408 55.3288 86 - 24.4094 17.3319 6.3078 -Georgia_Bold.ttf 70 / 24.9408 55.3288 87 Y 2.6259 46.5865 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 88 Q 1.6383 43.5511 53.5241 -Georgia_Bold.ttf 70 / 24.9408 55.3288 89 " -0.1083 23.0291 20.0578 -Georgia_Bold.ttf 70 / 24.9408 55.3288 90 ! 1.5884 10.9408 42.8561 -Georgia_Bold.ttf 70 / 24.9408 55.3288 91 x 15.2513 34.3078 28.0000 -Georgia_Bold.ttf 70 / 24.9408 55.3288 92 ) -0.1364 20.7483 52.5609 -Georgia_Bold.ttf 70 / 24.9408 55.3288 93 = 18.5583 30.3879 16.2451 -Georgia_Bold.ttf 70 / 24.9408 55.3288 94 + 11.4062 31.9572 31.9572 -Georgia_Bold.ttf 70 / 24.9408 55.3288 95 X 2.7480 47.1138 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 96 » 14.9632 28.0000 25.5049 -Georgia_Bold.ttf 70 / 24.9408 55.3288 97 ' -0.2568 9.3670 20.0578 -Georgia_Bold.ttf 70 / 24.9408 55.3288 98 ¢ 6.7808 29.6975 45.0592 -Georgia_Bold.ttf 70 / 24.9408 55.3288 99 Z 2.5414 40.1348 40.4681 -Georgia_Bold.ttf 70 / 24.9408 55.3288 100 > 10.7877 28.2500 32.5259 -Georgia_Bold.ttf 70 / 24.9408 55.3288 101 ® 0.9985 50.4457 50.4457 -Georgia_Bold.ttf 70 / 24.9408 55.3288 102 © 1.0327 50.4457 50.4457 -Georgia_Bold.ttf 70 / 24.9408 55.3288 103 ] -0.2522 18.8830 52.5609 -Georgia_Bold.ttf 70 / 24.9408 55.3288 104 é -1.1940 30.1152 45.5819 -Georgia_Bold.ttf 70 / 24.9408 55.3288 105 z 14.9644 28.0000 28.0000 -Georgia_Bold.ttf 70 / 24.9408 55.3288 106 _ 48.4810 41.0560 2.7259 -Georgia_Bold.ttf 70 / 24.9408 55.3288 107 ¥ 2.7129 44.1379 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 1 t 4.9836 22.8029 37.7468 -Georgia_Bold.ttf 71 C 39.1489 42.8561 2 h -2.7896 38.3109 44.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 3 a 12.5743 31.8795 30.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 4 n 12.6595 38.5434 29.1940 -Georgia_Bold.ttf 71 C 39.1489 42.8561 5 P 0.9077 37.4968 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 6 o 12.3824 32.6103 30.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 7 e 12.5206 30.1152 30.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 8 : 13.8266 11.2741 29.1940 -Georgia_Bold.ttf 71 C 39.1489 42.8561 9 r 12.6338 29.1940 29.1940 -Georgia_Bold.ttf 71 C 39.1489 42.8561 10 l -2.6861 18.7339 44.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 11 i -3.1772 18.7339 44.8687 -Georgia_Bold.ttf 71 C 39.1489 42.8561 12 1 9.7201 23.6397 31.6891 -Georgia_Bold.ttf 71 C 39.1489 42.8561 13 | -2.3802 4.6330 56.5227 -Georgia_Bold.ttf 71 C 39.1489 42.8561 14 N 1.6999 47.1785 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 15 f -2.6936 28.2500 44.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 16 g 12.7623 32.5497 42.0000 -Georgia_Bold.ttf 71 C 39.1489 42.8561 17 d -2.8213 36.4457 45.5819 -Georgia_Bold.ttf 71 C 39.1489 42.8561 18 W 1.0851 68.0276 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 19 s 12.4289 25.8621 30.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 20 c 12.5210 28.9212 30.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 21 u 12.0169 38.2100 30.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 22 3 10.1889 32.5259 42.2500 -Georgia_Bold.ttf 71 C 39.1489 42.8561 23 ~ 19.1481 32.5497 12.2181 -Georgia_Bold.ttf 71 C 39.1489 42.8561 24 # 5.2952 32.2532 36.4457 -Georgia_Bold.ttf 71 C 39.1489 42.8561 25 O -0.0129 43.5511 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 26 ` -2.8028 15.1940 12.8060 -Georgia_Bold.ttf 71 C 39.1489 42.8561 27 @ 2.4449 47.4709 48.6411 -Georgia_Bold.ttf 71 C 39.1489 42.8561 28 F 1.2010 35.9650 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 29 S 0.1624 33.7437 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 30 p 12.5869 35.8397 42.0000 -Georgia_Bold.ttf 71 C 39.1489 42.8561 31 “ -1.7107 25.5049 20.0578 -Georgia_Bold.ttf 71 C 39.1489 42.8561 32 % 0.1417 46.1460 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 33 £ -0.0905 33.4471 41.6621 -Georgia_Bold.ttf 71 C 39.1489 42.8561 34 . 31.5325 11.2741 11.2741 -Georgia_Bold.ttf 71 C 39.1489 42.8561 35 2 9.7786 30.6653 31.6891 -Georgia_Bold.ttf 71 C 39.1489 42.8561 36 5 9.6190 31.3319 42.2500 -Georgia_Bold.ttf 71 C 39.1489 42.8561 37 m 12.4936 57.1474 29.1940 -Georgia_Bold.ttf 71 C 39.1489 42.8561 38 V 1.2690 47.4471 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 39 6 -0.1997 32.2997 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 40 w 13.9768 50.4457 28.0000 -Georgia_Bold.ttf 71 C 39.1489 42.8561 41 T 1.4150 38.0802 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 42 M 1.1138 56.5455 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 43 G 0.2589 45.5865 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 44 b -2.4758 35.7325 45.9198 -Georgia_Bold.ttf 71 C 39.1489 42.8561 45 9 9.9512 32.6330 42.3571 -Georgia_Bold.ttf 71 C 39.1489 42.8561 46 ; 13.8974 11.5049 39.3813 -Georgia_Bold.ttf 71 C 39.1489 42.8561 47 D 1.1993 44.3879 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 48 L 1.1856 38.0196 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 49 y 13.4929 35.2710 40.8060 -Georgia_Bold.ttf 71 C 39.1489 42.8561 50 ‘ -1.4930 11.5049 20.0578 -Georgia_Bold.ttf 71 C 39.1489 42.8561 51 \ -1.6082 24.9408 55.3288 -Georgia_Bold.ttf 71 C 39.1489 42.8561 52 R 1.1188 46.2759 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 53 < 9.0305 28.2500 32.5259 -Georgia_Bold.ttf 71 C 39.1489 42.8561 54 4 9.7947 34.6684 42.2500 -Georgia_Bold.ttf 71 C 39.1489 42.8561 55 8 0.0332 33.3865 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 56 0 9.9438 34.6876 32.8830 -Georgia_Bold.ttf 71 C 39.1489 42.8561 57 A 1.3483 46.9902 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 58 E 1.3558 38.6908 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 59 B 1.0230 40.1348 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 60 v 13.6908 35.5017 28.0000 -Georgia_Bold.ttf 71 C 39.1489 42.8561 61 k -2.7487 37.9968 44.3879 -Georgia_Bold.ttf 71 C 39.1489 42.8561 62 J 1.1690 33.3235 41.6621 -Georgia_Bold.ttf 71 C 39.1489 42.8561 63 U 1.2870 46.9856 41.6621 -Georgia_Bold.ttf 71 C 39.1489 42.8561 64 j -3.0435 22.1730 57.6747 -Georgia_Bold.ttf 71 C 39.1489 42.8561 65 ( -1.5857 20.7483 52.5609 -Georgia_Bold.ttf 71 C 39.1489 42.8561 66 7 11.1956 30.0308 41.0560 -Georgia_Bold.ttf 71 C 39.1489 42.8561 67 § -0.2369 26.2192 48.4103 -Georgia_Bold.ttf 71 C 39.1489 42.8561 68 $ -1.9053 31.2486 51.7468 -Georgia_Bold.ttf 71 C 39.1489 42.8561 69 € 0.4226 41.2868 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 70 / -1.6754 24.9408 55.3288 -Georgia_Bold.ttf 71 C 39.1489 42.8561 71 C -0.0557 39.1489 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 72 * 0.0532 23.6397 21.2290 -Georgia_Bold.ttf 71 C 39.1489 42.8561 73 ” -1.4334 25.5049 20.0578 -Georgia_Bold.ttf 71 C 39.1489 42.8561 74 ? 0.2474 26.4727 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 75 { -1.6515 25.1716 52.5609 -Georgia_Bold.ttf 71 C 39.1489 42.8561 76 } -1.7182 25.1716 52.5609 -Georgia_Bold.ttf 71 C 39.1489 42.8561 77 , 32.3902 11.5049 20.7483 -Georgia_Bold.ttf 71 C 39.1489 42.8561 78 I 1.1418 21.7342 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 79 ° -0.0899 19.4471 18.8830 -Georgia_Bold.ttf 71 C 39.1489 42.8561 80 K 1.2033 47.4699 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 81 H 1.1338 49.0437 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 82 q 11.1583 36.1968 43.1940 -Georgia_Bold.ttf 71 C 39.1489 42.8561 83 & -0.2468 44.6379 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 84 ’ -1.6243 11.5049 20.0578 -Georgia_Bold.ttf 71 C 39.1489 42.8561 85 [ -1.5753 18.8830 52.5609 -Georgia_Bold.ttf 71 C 39.1489 42.8561 86 - 23.0009 17.3319 6.3078 -Georgia_Bold.ttf 71 C 39.1489 42.8561 87 Y 1.3292 46.5865 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 88 Q -0.2739 43.5511 53.5241 -Georgia_Bold.ttf 71 C 39.1489 42.8561 89 " -1.4039 23.0291 20.0578 -Georgia_Bold.ttf 71 C 39.1489 42.8561 90 ! -0.0092 10.9408 42.8561 -Georgia_Bold.ttf 71 C 39.1489 42.8561 91 x 13.3349 34.3078 28.0000 -Georgia_Bold.ttf 71 C 39.1489 42.8561 92 ) -1.4706 20.7483 52.5609 -Georgia_Bold.ttf 71 C 39.1489 42.8561 93 = 17.5232 30.3879 16.2451 -Georgia_Bold.ttf 71 C 39.1489 42.8561 94 + 8.9866 31.9572 31.9572 -Georgia_Bold.ttf 71 C 39.1489 42.8561 95 X 1.0243 47.1138 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 96 » 13.4716 28.0000 25.5049 -Georgia_Bold.ttf 71 C 39.1489 42.8561 97 ' -1.4579 9.3670 20.0578 -Georgia_Bold.ttf 71 C 39.1489 42.8561 98 ¢ 5.1408 29.6975 45.0592 -Georgia_Bold.ttf 71 C 39.1489 42.8561 99 Z 1.1563 40.1348 40.4681 -Georgia_Bold.ttf 71 C 39.1489 42.8561 100 > 9.1946 28.2500 32.5259 -Georgia_Bold.ttf 71 C 39.1489 42.8561 101 ® -0.5264 50.4457 50.4457 -Georgia_Bold.ttf 71 C 39.1489 42.8561 102 © -0.5895 50.4457 50.4457 -Georgia_Bold.ttf 71 C 39.1489 42.8561 103 ] -1.5930 18.8830 52.5609 -Georgia_Bold.ttf 71 C 39.1489 42.8561 104 é -2.5321 30.1152 45.5819 -Georgia_Bold.ttf 71 C 39.1489 42.8561 105 z 13.6495 28.0000 28.0000 -Georgia_Bold.ttf 71 C 39.1489 42.8561 106 _ 46.7402 41.0560 2.7259 -Georgia_Bold.ttf 71 C 39.1489 42.8561 107 ¥ 1.3668 44.1379 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 1 t 5.0259 22.8029 37.7468 -Georgia_Bold.ttf 72 * 23.6397 21.2290 2 h -2.5592 38.3109 44.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 3 a 12.3457 31.8795 30.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 4 n 12.6063 38.5434 29.1940 -Georgia_Bold.ttf 72 * 23.6397 21.2290 5 P 1.0902 37.4968 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 6 o 12.6045 32.6103 30.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 7 e 12.4264 30.1152 30.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 8 : 13.7190 11.2741 29.1940 -Georgia_Bold.ttf 72 * 23.6397 21.2290 9 r 12.3764 29.1940 29.1940 -Georgia_Bold.ttf 72 * 23.6397 21.2290 10 l -2.9694 18.7339 44.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 11 i -3.1677 18.7339 44.8687 -Georgia_Bold.ttf 72 * 23.6397 21.2290 12 1 10.0125 23.6397 31.6891 -Georgia_Bold.ttf 72 * 23.6397 21.2290 13 | -2.6425 4.6330 56.5227 -Georgia_Bold.ttf 72 * 23.6397 21.2290 14 N 1.1832 47.1785 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 15 f -2.8273 28.2500 44.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 16 g 12.3469 32.5497 42.0000 -Georgia_Bold.ttf 72 * 23.6397 21.2290 17 d -2.6909 36.4457 45.5819 -Georgia_Bold.ttf 72 * 23.6397 21.2290 18 W 1.1940 68.0276 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 19 s 12.4773 25.8621 30.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 20 c 12.5006 28.9212 30.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 21 u 12.4604 38.2100 30.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 22 3 9.7155 32.5259 42.2500 -Georgia_Bold.ttf 72 * 23.6397 21.2290 23 ~ 18.7878 32.5497 12.2181 -Georgia_Bold.ttf 72 * 23.6397 21.2290 24 # 5.3247 32.2532 36.4457 -Georgia_Bold.ttf 72 * 23.6397 21.2290 25 O -0.0793 43.5511 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 26 ` -2.5841 15.1940 12.8060 -Georgia_Bold.ttf 72 * 23.6397 21.2290 27 @ 2.2536 47.4709 48.6411 -Georgia_Bold.ttf 72 * 23.6397 21.2290 28 F 0.9418 35.9650 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 29 S 0.1993 33.7437 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 30 p 12.4797 35.8397 42.0000 -Georgia_Bold.ttf 72 * 23.6397 21.2290 31 “ -1.4610 25.5049 20.0578 -Georgia_Bold.ttf 72 * 23.6397 21.2290 32 % 0.1422 46.1460 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 33 £ 0.0613 33.4471 41.6621 -Georgia_Bold.ttf 72 * 23.6397 21.2290 34 . 31.5249 11.2741 11.2741 -Georgia_Bold.ttf 72 * 23.6397 21.2290 35 2 9.9991 30.6653 31.6891 -Georgia_Bold.ttf 72 * 23.6397 21.2290 36 5 10.3354 31.3319 42.2500 -Georgia_Bold.ttf 72 * 23.6397 21.2290 37 m 12.3439 57.1474 29.1940 -Georgia_Bold.ttf 72 * 23.6397 21.2290 38 V 0.9397 47.4471 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 39 6 -0.5087 32.2997 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 40 w 13.5478 50.4457 28.0000 -Georgia_Bold.ttf 72 * 23.6397 21.2290 41 T 0.8168 38.0802 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 42 M 1.1042 56.5455 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 43 G 0.0715 45.5865 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 44 b -2.4904 35.7325 45.9198 -Georgia_Bold.ttf 72 * 23.6397 21.2290 45 9 9.8776 32.6330 42.3571 -Georgia_Bold.ttf 72 * 23.6397 21.2290 46 ; 13.8196 11.5049 39.3813 -Georgia_Bold.ttf 72 * 23.6397 21.2290 47 D 1.2115 44.3879 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 48 L 1.4682 38.0196 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 49 y 13.8447 35.2710 40.8060 -Georgia_Bold.ttf 72 * 23.6397 21.2290 50 ‘ -1.4601 11.5049 20.0578 -Georgia_Bold.ttf 72 * 23.6397 21.2290 51 \ -1.4265 24.9408 55.3288 -Georgia_Bold.ttf 72 * 23.6397 21.2290 52 R 1.1940 46.2759 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 53 < 8.9809 28.2500 32.5259 -Georgia_Bold.ttf 72 * 23.6397 21.2290 54 4 9.8768 34.6684 42.2500 -Georgia_Bold.ttf 72 * 23.6397 21.2290 55 8 -0.0226 33.3865 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 56 0 9.9749 34.6876 32.8830 -Georgia_Bold.ttf 72 * 23.6397 21.2290 57 A 0.9563 46.9902 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 58 E 0.7797 38.6908 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 59 B 1.0305 40.1348 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 60 v 13.7643 35.5017 28.0000 -Georgia_Bold.ttf 72 * 23.6397 21.2290 61 k -2.8643 37.9968 44.3879 -Georgia_Bold.ttf 72 * 23.6397 21.2290 62 J 1.1523 33.3235 41.6621 -Georgia_Bold.ttf 72 * 23.6397 21.2290 63 U 0.9851 46.9856 41.6621 -Georgia_Bold.ttf 72 * 23.6397 21.2290 64 j -3.2118 22.1730 57.6747 -Georgia_Bold.ttf 72 * 23.6397 21.2290 65 ( -1.2630 20.7483 52.5609 -Georgia_Bold.ttf 72 * 23.6397 21.2290 66 7 11.0044 30.0308 41.0560 -Georgia_Bold.ttf 72 * 23.6397 21.2290 67 § -0.0245 26.2192 48.4103 -Georgia_Bold.ttf 72 * 23.6397 21.2290 68 $ -1.8675 31.2486 51.7468 -Georgia_Bold.ttf 72 * 23.6397 21.2290 69 € -0.0486 41.2868 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 70 / -1.2525 24.9408 55.3288 -Georgia_Bold.ttf 72 * 23.6397 21.2290 71 C 0.0514 39.1489 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 72 * 0.1281 23.6397 21.2290 -Georgia_Bold.ttf 72 * 23.6397 21.2290 73 ” -1.4832 25.5049 20.0578 -Georgia_Bold.ttf 72 * 23.6397 21.2290 74 ? -0.1172 26.4727 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 75 { -1.6706 25.1716 52.5609 -Georgia_Bold.ttf 72 * 23.6397 21.2290 76 } -1.5682 25.1716 52.5609 -Georgia_Bold.ttf 72 * 23.6397 21.2290 77 , 32.2913 11.5049 20.7483 -Georgia_Bold.ttf 72 * 23.6397 21.2290 78 I 1.3997 21.7342 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 79 ° -0.0795 19.4471 18.8830 -Georgia_Bold.ttf 72 * 23.6397 21.2290 80 K 1.1698 47.4699 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 81 H 1.3228 49.0437 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 82 q 11.4543 36.1968 43.1940 -Georgia_Bold.ttf 72 * 23.6397 21.2290 83 & -0.0258 44.6379 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 84 ’ -1.4781 11.5049 20.0578 -Georgia_Bold.ttf 72 * 23.6397 21.2290 85 [ -1.6854 18.8830 52.5609 -Georgia_Bold.ttf 72 * 23.6397 21.2290 86 - 22.8535 17.3319 6.3078 -Georgia_Bold.ttf 72 * 23.6397 21.2290 87 Y 1.2521 46.5865 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 88 Q -0.0325 43.5511 53.5241 -Georgia_Bold.ttf 72 * 23.6397 21.2290 89 " -1.8376 23.0291 20.0578 -Georgia_Bold.ttf 72 * 23.6397 21.2290 90 ! 0.1825 10.9408 42.8561 -Georgia_Bold.ttf 72 * 23.6397 21.2290 91 x 13.6492 34.3078 28.0000 -Georgia_Bold.ttf 72 * 23.6397 21.2290 92 ) -1.6273 20.7483 52.5609 -Georgia_Bold.ttf 72 * 23.6397 21.2290 93 = 17.1076 30.3879 16.2451 -Georgia_Bold.ttf 72 * 23.6397 21.2290 94 + 9.6606 31.9572 31.9572 -Georgia_Bold.ttf 72 * 23.6397 21.2290 95 X 1.1160 47.1138 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 96 » 13.3155 28.0000 25.5049 -Georgia_Bold.ttf 72 * 23.6397 21.2290 97 ' -1.6152 9.3670 20.0578 -Georgia_Bold.ttf 72 * 23.6397 21.2290 98 ¢ 5.2343 29.6975 45.0592 -Georgia_Bold.ttf 72 * 23.6397 21.2290 99 Z 1.3093 40.1348 40.4681 -Georgia_Bold.ttf 72 * 23.6397 21.2290 100 > 9.1218 28.2500 32.5259 -Georgia_Bold.ttf 72 * 23.6397 21.2290 101 ® -0.3250 50.4457 50.4457 -Georgia_Bold.ttf 72 * 23.6397 21.2290 102 © -0.4114 50.4457 50.4457 -Georgia_Bold.ttf 72 * 23.6397 21.2290 103 ] -1.3782 18.8830 52.5609 -Georgia_Bold.ttf 72 * 23.6397 21.2290 104 é -2.6387 30.1152 45.5819 -Georgia_Bold.ttf 72 * 23.6397 21.2290 105 z 13.9847 28.0000 28.0000 -Georgia_Bold.ttf 72 * 23.6397 21.2290 106 _ 46.6772 41.0560 2.7259 -Georgia_Bold.ttf 72 * 23.6397 21.2290 107 ¥ 1.3697 44.1379 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 1 t 6.5897 22.8029 37.7468 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 2 h -1.3612 38.3109 44.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 3 a 14.0000 31.8795 30.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 4 n 14.0807 38.5434 29.1940 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 5 P 2.7829 37.4968 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 6 o 14.1909 32.6103 30.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 7 e 13.9810 30.1152 30.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 8 : 15.0859 11.2741 29.1940 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 9 r 13.9922 29.1940 29.1940 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 10 l -1.0063 18.7339 44.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 11 i -1.5390 18.7339 44.8687 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 12 1 11.2915 23.6397 31.6891 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 13 | -1.1146 4.6330 56.5227 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 14 N 2.7318 47.1785 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 15 f -1.3082 28.2500 44.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 16 g 13.8244 32.5497 42.0000 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 17 d -1.2905 36.4457 45.5819 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 18 W 2.9028 68.0276 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 19 s 14.0938 25.8621 30.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 20 c 13.8230 28.9212 30.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 21 u 13.9031 38.2100 30.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 22 3 11.3761 32.5259 42.2500 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 23 ~ 20.6608 32.5497 12.2181 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 24 # 6.3506 32.2532 36.4457 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 25 O 1.7484 43.5511 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 26 ` -1.5725 15.1940 12.8060 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 27 @ 4.2581 47.4709 48.6411 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 28 F 2.8137 35.9650 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 29 S 1.4825 33.7437 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 30 p 14.2387 35.8397 42.0000 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 31 “ -0.2409 25.5049 20.0578 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 32 % 1.3937 46.1460 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 33 £ 1.6332 33.4471 41.6621 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 34 . 32.9183 11.2741 11.2741 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 35 2 11.7579 30.6653 31.6891 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 36 5 11.1791 31.3319 42.2500 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 37 m 13.8936 57.1474 29.1940 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 38 V 2.7264 47.4471 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 39 6 1.3015 32.2997 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 40 w 15.1063 50.4457 28.0000 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 41 T 2.8242 38.0802 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 42 M 2.3974 56.5455 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 43 G 1.5521 45.5865 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 44 b -1.2888 35.7325 45.9198 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 45 9 11.5847 32.6330 42.3571 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 46 ; 15.1235 11.5049 39.3813 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 47 D 2.8630 44.3879 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 48 L 2.7703 38.0196 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 49 y 15.1055 35.2710 40.8060 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 50 ‘ -0.1551 11.5049 20.0578 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 51 \ -0.0801 24.9408 55.3288 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 52 R 2.6041 46.2759 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 53 < 10.8455 28.2500 32.5259 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 54 4 11.3786 34.6684 42.2500 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 55 8 1.2321 33.3865 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 56 0 11.4724 34.6876 32.8830 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 57 A 2.5939 46.9902 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 58 E 2.7041 38.6908 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 59 B 2.5849 40.1348 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 60 v 15.2760 35.5017 28.0000 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 61 k -1.3483 37.9968 44.3879 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 62 J 2.4984 33.3235 41.6621 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 63 U 2.6957 46.9856 41.6621 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 64 j -1.5936 22.1730 57.6747 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 65 ( -0.1403 20.7483 52.5609 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 66 7 12.7752 30.0308 41.0560 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 67 § 1.6257 26.2192 48.4103 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 68 $ -0.4029 31.2486 51.7468 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 69 € 1.5768 41.2868 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 70 / -0.0885 24.9408 55.3288 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 71 C 1.4838 39.1489 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 72 * 1.3286 23.6397 21.2290 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 73 ” 0.1363 25.5049 20.0578 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 74 ? 1.7884 26.4727 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 75 { -0.0877 25.1716 52.5609 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 76 } 0.0440 25.1716 52.5609 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 77 , 34.0800 11.5049 20.7483 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 78 I 2.4896 21.7342 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 79 ° 1.6553 19.4471 18.8830 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 80 K 2.6766 47.4699 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 81 H 2.4895 49.0437 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 82 q 12.9902 36.1968 43.1940 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 83 & 1.4871 44.6379 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 84 ’ 0.0524 11.5049 20.0578 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 85 [ -0.2968 18.8830 52.5609 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 86 - 24.4506 17.3319 6.3078 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 87 Y 2.8662 46.5865 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 88 Q 1.6349 43.5511 53.5241 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 89 " -0.0714 23.0291 20.0578 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 90 ! 1.8725 10.9408 42.8561 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 91 x 15.2980 34.3078 28.0000 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 92 ) 0.1181 20.7483 52.5609 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 93 = 18.8942 30.3879 16.2451 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 94 + 10.9456 31.9572 31.9572 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 95 X 2.6530 47.1138 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 96 » 14.9524 28.0000 25.5049 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 97 ' 0.1718 9.3670 20.0578 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 98 ¢ 6.7625 29.6975 45.0592 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 99 Z 2.6939 40.1348 40.4681 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 100 > 10.3850 28.2500 32.5259 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 101 ® 0.8668 50.4457 50.4457 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 102 © 0.9327 50.4457 50.4457 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 103 ] -0.0795 18.8830 52.5609 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 104 é -1.2025 30.1152 45.5819 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 105 z 15.1031 28.0000 28.0000 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 106 _ 48.4086 41.0560 2.7259 -Georgia_Bold.ttf 73 ” 25.5049 20.0578 107 ¥ 2.9168 44.1379 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 1 t 4.9503 22.8029 37.7468 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 2 h -2.7796 38.3109 44.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 3 a 12.5931 31.8795 30.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 4 n 12.6354 38.5434 29.1940 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 5 P 1.2660 37.4968 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 6 o 12.6375 32.6103 30.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 7 e 12.8467 30.1152 30.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 8 : 13.7492 11.2741 29.1940 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 9 r 12.5363 29.1940 29.1940 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 10 l -2.9675 18.7339 44.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 11 i -3.4295 18.7339 44.8687 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 12 1 10.1305 23.6397 31.6891 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 13 | -2.9278 4.6330 56.5227 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 14 N 1.2069 47.1785 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 15 f -2.6259 28.2500 44.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 16 g 12.7264 32.5497 42.0000 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 17 d -2.7003 36.4457 45.5819 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 18 W 0.9924 68.0276 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 19 s 12.2834 25.8621 30.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 20 c 12.4815 28.9212 30.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 21 u 12.4084 38.2100 30.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 22 3 9.7456 32.5259 42.2500 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 23 ~ 19.1492 32.5497 12.2181 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 24 # 5.3924 32.2532 36.4457 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 25 O 0.1871 43.5511 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 26 ` -2.8616 15.1940 12.8060 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 27 @ 2.5597 47.4709 48.6411 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 28 F 1.2843 35.9650 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 29 S -0.2107 33.7437 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 30 p 12.3816 35.8397 42.0000 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 31 “ -1.5246 25.5049 20.0578 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 32 % 0.0774 46.1460 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 33 £ 0.0102 33.4471 41.6621 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 34 . 31.5494 11.2741 11.2741 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 35 2 9.8765 30.6653 31.6891 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 36 5 10.3287 31.3319 42.2500 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 37 m 12.4764 57.1474 29.1940 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 38 V 1.3612 47.4471 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 39 6 0.1756 32.2997 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 40 w 13.8517 50.4457 28.0000 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 41 T 1.3846 38.0802 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 42 M 1.2017 56.5455 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 43 G 0.0000 45.5865 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 44 b -2.5608 35.7325 45.9198 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 45 9 9.8671 32.6330 42.3571 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 46 ; 13.4938 11.5049 39.3813 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 47 D 1.2477 44.3879 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 48 L 1.1653 38.0196 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 49 y 13.5932 35.2710 40.8060 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 50 ‘ -1.2501 11.5049 20.0578 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 51 \ -1.4775 24.9408 55.3288 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 52 R 1.3606 46.2759 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 53 < 8.9133 28.2500 32.5259 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 54 4 9.9114 34.6684 42.2500 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 55 8 -0.1525 33.3865 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 56 0 10.0731 34.6876 32.8830 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 57 A 1.1283 46.9902 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 58 E 1.0872 38.6908 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 59 B 1.2247 40.1348 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 60 v 13.5111 35.5017 28.0000 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 61 k -2.6546 37.9968 44.3879 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 62 J 0.9235 33.3235 41.6621 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 63 U 1.2832 46.9856 41.6621 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 64 j -3.1187 22.1730 57.6747 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 65 ( -1.7075 20.7483 52.5609 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 66 7 11.2579 30.0308 41.0560 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 67 § 0.0839 26.2192 48.4103 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 68 $ -2.2257 31.2486 51.7468 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 69 € 0.0879 41.2868 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 70 / -1.7838 24.9408 55.3288 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 71 C 0.0540 39.1489 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 72 * 0.2946 23.6397 21.2290 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 73 ” -1.7986 25.5049 20.0578 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 74 ? -0.1788 26.4727 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 75 { -1.6078 25.1716 52.5609 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 76 } -1.5689 25.1716 52.5609 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 77 , 32.3378 11.5049 20.7483 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 78 I 0.9574 21.7342 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 79 ° -0.0494 19.4471 18.8830 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 80 K 1.1387 47.4699 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 81 H 1.1370 49.0437 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 82 q 11.3556 36.1968 43.1940 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 83 & -0.0812 44.6379 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 84 ’ -1.3493 11.5049 20.0578 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 85 [ -1.8318 18.8830 52.5609 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 86 - 23.1026 17.3319 6.3078 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 87 Y 1.1615 46.5865 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 88 Q 0.0853 43.5511 53.5241 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 89 " -1.5236 23.0291 20.0578 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 90 ! 0.0658 10.9408 42.8561 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 91 x 13.4183 34.3078 28.0000 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 92 ) -1.3434 20.7483 52.5609 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 93 = 16.5365 30.3879 16.2451 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 94 + 9.7221 31.9572 31.9572 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 95 X 1.2055 47.1138 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 96 » 13.3623 28.0000 25.5049 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 97 ' -1.3692 9.3670 20.0578 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 98 ¢ 5.2118 29.6975 45.0592 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 99 Z 1.2045 40.1348 40.4681 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 100 > 9.0314 28.2500 32.5259 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 101 ® -0.4302 50.4457 50.4457 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 102 © -0.0634 50.4457 50.4457 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 103 ] -1.4822 18.8830 52.5609 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 104 é -2.7957 30.1152 45.5819 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 105 z 13.7877 28.0000 28.0000 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 106 _ 46.7406 41.0560 2.7259 -Georgia_Bold.ttf 74 ? 26.4727 42.8561 107 ¥ 1.0257 44.1379 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 1 t 6.2728 22.8029 37.7468 -Georgia_Bold.ttf 75 { 25.1716 52.5609 2 h -1.1236 38.3109 44.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 3 a 13.9193 31.8795 30.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 4 n 13.9987 38.5434 29.1940 -Georgia_Bold.ttf 75 { 25.1716 52.5609 5 P 2.7745 37.4968 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 6 o 14.0857 32.6103 30.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 7 e 14.2803 30.1152 30.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 8 : 15.1082 11.2741 29.1940 -Georgia_Bold.ttf 75 { 25.1716 52.5609 9 r 13.7607 29.1940 29.1940 -Georgia_Bold.ttf 75 { 25.1716 52.5609 10 l -1.2846 18.7339 44.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 11 i -1.6422 18.7339 44.8687 -Georgia_Bold.ttf 75 { 25.1716 52.5609 12 1 11.5783 23.6397 31.6891 -Georgia_Bold.ttf 75 { 25.1716 52.5609 13 | -1.1587 4.6330 56.5227 -Georgia_Bold.ttf 75 { 25.1716 52.5609 14 N 2.4934 47.1785 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 15 f -1.5348 28.2500 44.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 16 g 13.8097 32.5497 42.0000 -Georgia_Bold.ttf 75 { 25.1716 52.5609 17 d -0.9020 36.4457 45.5819 -Georgia_Bold.ttf 75 { 25.1716 52.5609 18 W 2.6382 68.0276 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 19 s 13.7799 25.8621 30.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 20 c 13.9742 28.9212 30.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 21 u 14.0476 38.2100 30.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 22 3 11.5552 32.5259 42.2500 -Georgia_Bold.ttf 75 { 25.1716 52.5609 23 ~ 20.6579 32.5497 12.2181 -Georgia_Bold.ttf 75 { 25.1716 52.5609 24 # 6.8304 32.2532 36.4457 -Georgia_Bold.ttf 75 { 25.1716 52.5609 25 O 1.6082 43.5511 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 26 ` -0.9622 15.1940 12.8060 -Georgia_Bold.ttf 75 { 25.1716 52.5609 27 @ 4.1059 47.4709 48.6411 -Georgia_Bold.ttf 75 { 25.1716 52.5609 28 F 3.0322 35.9650 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 29 S 1.7366 33.7437 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 30 p 13.8623 35.8397 42.0000 -Georgia_Bold.ttf 75 { 25.1716 52.5609 31 “ -0.1143 25.5049 20.0578 -Georgia_Bold.ttf 75 { 25.1716 52.5609 32 % 1.2176 46.1460 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 33 £ 1.4063 33.4471 41.6621 -Georgia_Bold.ttf 75 { 25.1716 52.5609 34 . 33.0329 11.2741 11.2741 -Georgia_Bold.ttf 75 { 25.1716 52.5609 35 2 11.3748 30.6653 31.6891 -Georgia_Bold.ttf 75 { 25.1716 52.5609 36 5 11.6777 31.3319 42.2500 -Georgia_Bold.ttf 75 { 25.1716 52.5609 37 m 14.0615 57.1474 29.1940 -Georgia_Bold.ttf 75 { 25.1716 52.5609 38 V 2.5806 47.4471 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 39 6 1.2520 32.2997 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 40 w 15.0365 50.4457 28.0000 -Georgia_Bold.ttf 75 { 25.1716 52.5609 41 T 2.7782 38.0802 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 42 M 2.6837 56.5455 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 43 G 1.4464 45.5865 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 44 b -1.3037 35.7325 45.9198 -Georgia_Bold.ttf 75 { 25.1716 52.5609 45 9 11.8418 32.6330 42.3571 -Georgia_Bold.ttf 75 { 25.1716 52.5609 46 ; 15.2181 11.5049 39.3813 -Georgia_Bold.ttf 75 { 25.1716 52.5609 47 D 2.7727 44.3879 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 48 L 2.8877 38.0196 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 49 y 15.0950 35.2710 40.8060 -Georgia_Bold.ttf 75 { 25.1716 52.5609 50 ‘ 0.0944 11.5049 20.0578 -Georgia_Bold.ttf 75 { 25.1716 52.5609 51 \ -0.2592 24.9408 55.3288 -Georgia_Bold.ttf 75 { 25.1716 52.5609 52 R 2.7402 46.2759 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 53 < 10.5065 28.2500 32.5259 -Georgia_Bold.ttf 75 { 25.1716 52.5609 54 4 11.4710 34.6684 42.2500 -Georgia_Bold.ttf 75 { 25.1716 52.5609 55 8 1.5402 33.3865 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 56 0 11.8238 34.6876 32.8830 -Georgia_Bold.ttf 75 { 25.1716 52.5609 57 A 2.6352 46.9902 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 58 E 2.9441 38.6908 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 59 B 2.7259 40.1348 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 60 v 15.2083 35.5017 28.0000 -Georgia_Bold.ttf 75 { 25.1716 52.5609 61 k -1.1765 37.9968 44.3879 -Georgia_Bold.ttf 75 { 25.1716 52.5609 62 J 2.6023 33.3235 41.6621 -Georgia_Bold.ttf 75 { 25.1716 52.5609 63 U 2.7517 46.9856 41.6621 -Georgia_Bold.ttf 75 { 25.1716 52.5609 64 j -2.1487 22.1730 57.6747 -Georgia_Bold.ttf 75 { 25.1716 52.5609 65 ( -0.1960 20.7483 52.5609 -Georgia_Bold.ttf 75 { 25.1716 52.5609 66 7 12.7701 30.0308 41.0560 -Georgia_Bold.ttf 75 { 25.1716 52.5609 67 § 1.3878 26.2192 48.4103 -Georgia_Bold.ttf 75 { 25.1716 52.5609 68 $ -0.4793 31.2486 51.7468 -Georgia_Bold.ttf 75 { 25.1716 52.5609 69 € 1.5843 41.2868 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 70 / -0.1158 24.9408 55.3288 -Georgia_Bold.ttf 75 { 25.1716 52.5609 71 C 1.6061 39.1489 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 72 * 1.5700 23.6397 21.2290 -Georgia_Bold.ttf 75 { 25.1716 52.5609 73 ” 0.0763 25.5049 20.0578 -Georgia_Bold.ttf 75 { 25.1716 52.5609 74 ? 1.7515 26.4727 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 75 { -0.2089 25.1716 52.5609 -Georgia_Bold.ttf 75 { 25.1716 52.5609 76 } 0.0357 25.1716 52.5609 -Georgia_Bold.ttf 75 { 25.1716 52.5609 77 , 33.8612 11.5049 20.7483 -Georgia_Bold.ttf 75 { 25.1716 52.5609 78 I 2.7394 21.7342 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 79 ° 1.5612 19.4471 18.8830 -Georgia_Bold.ttf 75 { 25.1716 52.5609 80 K 2.8269 47.4699 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 81 H 2.5495 49.0437 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 82 q 12.8477 36.1968 43.1940 -Georgia_Bold.ttf 75 { 25.1716 52.5609 83 & 1.3230 44.6379 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 84 ’ 0.0000 11.5049 20.0578 -Georgia_Bold.ttf 75 { 25.1716 52.5609 85 [ -0.0613 18.8830 52.5609 -Georgia_Bold.ttf 75 { 25.1716 52.5609 86 - 24.4822 17.3319 6.3078 -Georgia_Bold.ttf 75 { 25.1716 52.5609 87 Y 2.8143 46.5865 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 88 Q 1.4166 43.5511 53.5241 -Georgia_Bold.ttf 75 { 25.1716 52.5609 89 " -0.3582 23.0291 20.0578 -Georgia_Bold.ttf 75 { 25.1716 52.5609 90 ! 1.6936 10.9408 42.8561 -Georgia_Bold.ttf 75 { 25.1716 52.5609 91 x 14.9980 34.3078 28.0000 -Georgia_Bold.ttf 75 { 25.1716 52.5609 92 ) -0.1092 20.7483 52.5609 -Georgia_Bold.ttf 75 { 25.1716 52.5609 93 = 18.8532 30.3879 16.2451 -Georgia_Bold.ttf 75 { 25.1716 52.5609 94 + 10.9370 31.9572 31.9572 -Georgia_Bold.ttf 75 { 25.1716 52.5609 95 X 2.4481 47.1138 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 96 » 14.8180 28.0000 25.5049 -Georgia_Bold.ttf 75 { 25.1716 52.5609 97 ' 0.2350 9.3670 20.0578 -Georgia_Bold.ttf 75 { 25.1716 52.5609 98 ¢ 6.6727 29.6975 45.0592 -Georgia_Bold.ttf 75 { 25.1716 52.5609 99 Z 2.8251 40.1348 40.4681 -Georgia_Bold.ttf 75 { 25.1716 52.5609 100 > 10.6222 28.2500 32.5259 -Georgia_Bold.ttf 75 { 25.1716 52.5609 101 ® 1.3515 50.4457 50.4457 -Georgia_Bold.ttf 75 { 25.1716 52.5609 102 © 1.1198 50.4457 50.4457 -Georgia_Bold.ttf 75 { 25.1716 52.5609 103 ] 0.0073 18.8830 52.5609 -Georgia_Bold.ttf 75 { 25.1716 52.5609 104 é -1.5556 30.1152 45.5819 -Georgia_Bold.ttf 75 { 25.1716 52.5609 105 z 15.0988 28.0000 28.0000 -Georgia_Bold.ttf 75 { 25.1716 52.5609 106 _ 48.4287 41.0560 2.7259 -Georgia_Bold.ttf 75 { 25.1716 52.5609 107 ¥ 2.6829 44.1379 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 1 t 6.6893 22.8029 37.7468 -Georgia_Bold.ttf 76 } 25.1716 52.5609 2 h -1.2894 38.3109 44.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 3 a 14.3414 31.8795 30.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 4 n 14.0000 38.5434 29.1940 -Georgia_Bold.ttf 76 } 25.1716 52.5609 5 P 2.7721 37.4968 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 6 o 14.1228 32.6103 30.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 7 e 13.8529 30.1152 30.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 8 : 15.5870 11.2741 29.1940 -Georgia_Bold.ttf 76 } 25.1716 52.5609 9 r 13.7771 29.1940 29.1940 -Georgia_Bold.ttf 76 } 25.1716 52.5609 10 l -1.3168 18.7339 44.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 11 i -1.9272 18.7339 44.8687 -Georgia_Bold.ttf 76 } 25.1716 52.5609 12 1 11.4920 23.6397 31.6891 -Georgia_Bold.ttf 76 } 25.1716 52.5609 13 | -1.2071 4.6330 56.5227 -Georgia_Bold.ttf 76 } 25.1716 52.5609 14 N 2.7084 47.1785 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 15 f -1.0748 28.2500 44.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 16 g 13.9940 32.5497 42.0000 -Georgia_Bold.ttf 76 } 25.1716 52.5609 17 d -1.0040 36.4457 45.5819 -Georgia_Bold.ttf 76 } 25.1716 52.5609 18 W 2.8084 68.0276 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 19 s 14.1613 25.8621 30.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 20 c 14.2777 28.9212 30.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 21 u 13.8303 38.2100 30.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 22 3 11.6630 32.5259 42.2500 -Georgia_Bold.ttf 76 } 25.1716 52.5609 23 ~ 20.6663 32.5497 12.2181 -Georgia_Bold.ttf 76 } 25.1716 52.5609 24 # 6.9123 32.2532 36.4457 -Georgia_Bold.ttf 76 } 25.1716 52.5609 25 O 1.7061 43.5511 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 26 ` -1.2039 15.1940 12.8060 -Georgia_Bold.ttf 76 } 25.1716 52.5609 27 @ 3.8601 47.4709 48.6411 -Georgia_Bold.ttf 76 } 25.1716 52.5609 28 F 2.8060 35.9650 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 29 S 1.7491 33.7437 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 30 p 14.1196 35.8397 42.0000 -Georgia_Bold.ttf 76 } 25.1716 52.5609 31 “ -0.0792 25.5049 20.0578 -Georgia_Bold.ttf 76 } 25.1716 52.5609 32 % 1.4696 46.1460 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 33 £ 1.5027 33.4471 41.6621 -Georgia_Bold.ttf 76 } 25.1716 52.5609 34 . 32.9140 11.2741 11.2741 -Georgia_Bold.ttf 76 } 25.1716 52.5609 35 2 11.3164 30.6653 31.6891 -Georgia_Bold.ttf 76 } 25.1716 52.5609 36 5 11.4108 31.3319 42.2500 -Georgia_Bold.ttf 76 } 25.1716 52.5609 37 m 14.0818 57.1474 29.1940 -Georgia_Bold.ttf 76 } 25.1716 52.5609 38 V 2.3656 47.4471 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 39 6 1.4319 32.2997 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 40 w 15.2361 50.4457 28.0000 -Georgia_Bold.ttf 76 } 25.1716 52.5609 41 T 2.7046 38.0802 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 42 M 2.8641 56.5455 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 43 G 1.4188 45.5865 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 44 b -1.3612 35.7325 45.9198 -Georgia_Bold.ttf 76 } 25.1716 52.5609 45 9 11.5157 32.6330 42.3571 -Georgia_Bold.ttf 76 } 25.1716 52.5609 46 ; 15.2888 11.5049 39.3813 -Georgia_Bold.ttf 76 } 25.1716 52.5609 47 D 3.1052 44.3879 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 48 L 2.6451 38.0196 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 49 y 14.8895 35.2710 40.8060 -Georgia_Bold.ttf 76 } 25.1716 52.5609 50 ‘ 0.1089 11.5049 20.0578 -Georgia_Bold.ttf 76 } 25.1716 52.5609 51 \ -0.4648 24.9408 55.3288 -Georgia_Bold.ttf 76 } 25.1716 52.5609 52 R 2.8283 46.2759 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 53 < 11.0253 28.2500 32.5259 -Georgia_Bold.ttf 76 } 25.1716 52.5609 54 4 11.4952 34.6684 42.2500 -Georgia_Bold.ttf 76 } 25.1716 52.5609 55 8 1.7706 33.3865 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 56 0 11.5504 34.6876 32.8830 -Georgia_Bold.ttf 76 } 25.1716 52.5609 57 A 2.8343 46.9902 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 58 E 2.8879 38.6908 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 59 B 3.0232 40.1348 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 60 v 15.2801 35.5017 28.0000 -Georgia_Bold.ttf 76 } 25.1716 52.5609 61 k -1.1230 37.9968 44.3879 -Georgia_Bold.ttf 76 } 25.1716 52.5609 62 J 2.7532 33.3235 41.6621 -Georgia_Bold.ttf 76 } 25.1716 52.5609 63 U 2.7154 46.9856 41.6621 -Georgia_Bold.ttf 76 } 25.1716 52.5609 64 j -1.5815 22.1730 57.6747 -Georgia_Bold.ttf 76 } 25.1716 52.5609 65 ( 0.0931 20.7483 52.5609 -Georgia_Bold.ttf 76 } 25.1716 52.5609 66 7 12.6051 30.0308 41.0560 -Georgia_Bold.ttf 76 } 25.1716 52.5609 67 § 1.5319 26.2192 48.4103 -Georgia_Bold.ttf 76 } 25.1716 52.5609 68 $ -0.2005 31.2486 51.7468 -Georgia_Bold.ttf 76 } 25.1716 52.5609 69 € 1.5872 41.2868 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 70 / -0.0032 24.9408 55.3288 -Georgia_Bold.ttf 76 } 25.1716 52.5609 71 C 1.5518 39.1489 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 72 * 1.4512 23.6397 21.2290 -Georgia_Bold.ttf 76 } 25.1716 52.5609 73 ” 0.0734 25.5049 20.0578 -Georgia_Bold.ttf 76 } 25.1716 52.5609 74 ? 1.4682 26.4727 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 75 { 0.0857 25.1716 52.5609 -Georgia_Bold.ttf 76 } 25.1716 52.5609 76 } -0.1500 25.1716 52.5609 -Georgia_Bold.ttf 76 } 25.1716 52.5609 77 , 33.9593 11.5049 20.7483 -Georgia_Bold.ttf 76 } 25.1716 52.5609 78 I 2.8000 21.7342 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 79 ° 1.6000 19.4471 18.8830 -Georgia_Bold.ttf 76 } 25.1716 52.5609 80 K 3.0151 47.4699 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 81 H 2.2479 49.0437 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 82 q 12.6810 36.1968 43.1940 -Georgia_Bold.ttf 76 } 25.1716 52.5609 83 & 1.7029 44.6379 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 84 ’ 0.0392 11.5049 20.0578 -Georgia_Bold.ttf 76 } 25.1716 52.5609 85 [ -0.0385 18.8830 52.5609 -Georgia_Bold.ttf 76 } 25.1716 52.5609 86 - 24.4994 17.3319 6.3078 -Georgia_Bold.ttf 76 } 25.1716 52.5609 87 Y 2.7624 46.5865 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 88 Q 1.7120 43.5511 53.5241 -Georgia_Bold.ttf 76 } 25.1716 52.5609 89 " -0.1417 23.0291 20.0578 -Georgia_Bold.ttf 76 } 25.1716 52.5609 90 ! 1.6491 10.9408 42.8561 -Georgia_Bold.ttf 76 } 25.1716 52.5609 91 x 15.2824 34.3078 28.0000 -Georgia_Bold.ttf 76 } 25.1716 52.5609 92 ) 0.0115 20.7483 52.5609 -Georgia_Bold.ttf 76 } 25.1716 52.5609 93 = 18.7878 30.3879 16.2451 -Georgia_Bold.ttf 76 } 25.1716 52.5609 94 + 10.8730 31.9572 31.9572 -Georgia_Bold.ttf 76 } 25.1716 52.5609 95 X 2.6049 47.1138 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 96 » 15.2942 28.0000 25.5049 -Georgia_Bold.ttf 76 } 25.1716 52.5609 97 ' 0.0626 9.3670 20.0578 -Georgia_Bold.ttf 76 } 25.1716 52.5609 98 ¢ 6.7079 29.6975 45.0592 -Georgia_Bold.ttf 76 } 25.1716 52.5609 99 Z 2.6549 40.1348 40.4681 -Georgia_Bold.ttf 76 } 25.1716 52.5609 100 > 10.7396 28.2500 32.5259 -Georgia_Bold.ttf 76 } 25.1716 52.5609 101 ® 1.0184 50.4457 50.4457 -Georgia_Bold.ttf 76 } 25.1716 52.5609 102 © 1.3817 50.4457 50.4457 -Georgia_Bold.ttf 76 } 25.1716 52.5609 103 ] -0.0436 18.8830 52.5609 -Georgia_Bold.ttf 76 } 25.1716 52.5609 104 é -1.1912 30.1152 45.5819 -Georgia_Bold.ttf 76 } 25.1716 52.5609 105 z 15.1478 28.0000 28.0000 -Georgia_Bold.ttf 76 } 25.1716 52.5609 106 _ 48.1228 41.0560 2.7259 -Georgia_Bold.ttf 76 } 25.1716 52.5609 107 ¥ 2.7361 44.1379 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 1 t -27.1026 22.8029 37.7468 -Georgia_Bold.ttf 77 , 11.5049 20.7483 2 h -35.0567 38.3109 44.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 3 a -19.8752 31.8795 30.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 4 n -19.8484 38.5434 29.1940 -Georgia_Bold.ttf 77 , 11.5049 20.7483 5 P -31.4181 37.4968 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 6 o -20.0007 32.6103 30.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 7 e -19.7361 30.1152 30.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 8 : -18.4060 11.2741 29.1940 -Georgia_Bold.ttf 77 , 11.5049 20.7483 9 r -19.9109 29.1940 29.1940 -Georgia_Bold.ttf 77 , 11.5049 20.7483 10 l -35.0150 18.7339 44.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 11 i -35.4601 18.7339 44.8687 -Georgia_Bold.ttf 77 , 11.5049 20.7483 12 1 -22.1589 23.6397 31.6891 -Georgia_Bold.ttf 77 , 11.5049 20.7483 13 | -34.8180 4.6330 56.5227 -Georgia_Bold.ttf 77 , 11.5049 20.7483 14 N -31.1743 47.1785 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 15 f -35.3078 28.2500 44.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 16 g -19.9200 32.5497 42.0000 -Georgia_Bold.ttf 77 , 11.5049 20.7483 17 d -34.8409 36.4457 45.5819 -Georgia_Bold.ttf 77 , 11.5049 20.7483 18 W -31.1466 68.0276 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 19 s -19.7853 25.8621 30.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 20 c -19.7144 28.9212 30.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 21 u -19.7081 38.2100 30.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 22 3 -22.4272 32.5259 42.2500 -Georgia_Bold.ttf 77 , 11.5049 20.7483 23 ~ -13.1320 32.5497 12.2181 -Georgia_Bold.ttf 77 , 11.5049 20.7483 24 # -27.3067 32.2532 36.4457 -Georgia_Bold.ttf 77 , 11.5049 20.7483 25 O -32.3785 43.5511 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 26 ` -34.8635 15.1940 12.8060 -Georgia_Bold.ttf 77 , 11.5049 20.7483 27 @ -30.0236 47.4709 48.6411 -Georgia_Bold.ttf 77 , 11.5049 20.7483 28 F -31.2784 35.9650 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 29 S -32.2562 33.7437 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 30 p -19.8248 35.8397 42.0000 -Georgia_Bold.ttf 77 , 11.5049 20.7483 31 “ -33.8439 25.5049 20.0578 -Georgia_Bold.ttf 77 , 11.5049 20.7483 32 % -32.2610 46.1460 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 33 £ -32.3720 33.4471 41.6621 -Georgia_Bold.ttf 77 , 11.5049 20.7483 34 . -0.9560 11.2741 11.2741 -Georgia_Bold.ttf 77 , 11.5049 20.7483 35 2 -22.2702 30.6653 31.6891 -Georgia_Bold.ttf 77 , 11.5049 20.7483 36 5 -22.3068 31.3319 42.2500 -Georgia_Bold.ttf 77 , 11.5049 20.7483 37 m -19.7022 57.1474 29.1940 -Georgia_Bold.ttf 77 , 11.5049 20.7483 38 V -31.1966 47.4471 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 39 6 -32.1793 32.2997 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 40 w -18.7018 50.4457 28.0000 -Georgia_Bold.ttf 77 , 11.5049 20.7483 41 T -30.8441 38.0802 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 42 M -31.1390 56.5455 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 43 G -32.3785 45.5865 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 44 b -34.9524 35.7325 45.9198 -Georgia_Bold.ttf 77 , 11.5049 20.7483 45 9 -22.1427 32.6330 42.3571 -Georgia_Bold.ttf 77 , 11.5049 20.7483 46 ; -18.5529 11.5049 39.3813 -Georgia_Bold.ttf 77 , 11.5049 20.7483 47 D -31.4360 44.3879 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 48 L -31.0984 38.0196 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 49 y -18.7489 35.2710 40.8060 -Georgia_Bold.ttf 77 , 11.5049 20.7483 50 ‘ -33.7490 11.5049 20.0578 -Georgia_Bold.ttf 77 , 11.5049 20.7483 51 \ -33.8300 24.9408 55.3288 -Georgia_Bold.ttf 77 , 11.5049 20.7483 52 R -30.8581 46.2759 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 53 < -23.1103 28.2500 32.5259 -Georgia_Bold.ttf 77 , 11.5049 20.7483 54 4 -22.4138 34.6684 42.2500 -Georgia_Bold.ttf 77 , 11.5049 20.7483 55 8 -32.2290 33.3865 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 56 0 -22.2836 34.6876 32.8830 -Georgia_Bold.ttf 77 , 11.5049 20.7483 57 A -31.0584 46.9902 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 58 E -31.1845 38.6908 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 59 B -31.0742 40.1348 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 60 v -18.7132 35.5017 28.0000 -Georgia_Bold.ttf 77 , 11.5049 20.7483 61 k -34.9468 37.9968 44.3879 -Georgia_Bold.ttf 77 , 11.5049 20.7483 62 J -31.2345 33.3235 41.6621 -Georgia_Bold.ttf 77 , 11.5049 20.7483 63 U -31.0261 46.9856 41.6621 -Georgia_Bold.ttf 77 , 11.5049 20.7483 64 j -35.5012 22.1730 57.6747 -Georgia_Bold.ttf 77 , 11.5049 20.7483 65 ( -33.7888 20.7483 52.5609 -Georgia_Bold.ttf 77 , 11.5049 20.7483 66 7 -21.2992 30.0308 41.0560 -Georgia_Bold.ttf 77 , 11.5049 20.7483 67 § -32.6347 26.2192 48.4103 -Georgia_Bold.ttf 77 , 11.5049 20.7483 68 $ -34.1676 31.2486 51.7468 -Georgia_Bold.ttf 77 , 11.5049 20.7483 69 € -32.2535 41.2868 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 70 / -33.7423 24.9408 55.3288 -Georgia_Bold.ttf 77 , 11.5049 20.7483 71 C -32.4169 39.1489 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 72 * -32.2535 23.6397 21.2290 -Georgia_Bold.ttf 77 , 11.5049 20.7483 73 ” -33.9999 25.5049 20.0578 -Georgia_Bold.ttf 77 , 11.5049 20.7483 74 ? -32.4739 26.4727 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 75 { -33.8942 25.1716 52.5609 -Georgia_Bold.ttf 77 , 11.5049 20.7483 76 } -33.9109 25.1716 52.5609 -Georgia_Bold.ttf 77 , 11.5049 20.7483 77 , 0.0524 11.5049 20.7483 -Georgia_Bold.ttf 77 , 11.5049 20.7483 78 I -31.0172 21.7342 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 79 ° -32.3878 19.4471 18.8830 -Georgia_Bold.ttf 77 , 11.5049 20.7483 80 K -31.3319 47.4699 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 81 H -31.3138 49.0437 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 82 q -21.0284 36.1968 43.1940 -Georgia_Bold.ttf 77 , 11.5049 20.7483 83 & -32.2354 44.6379 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 84 ’ -33.9270 11.5049 20.0578 -Georgia_Bold.ttf 77 , 11.5049 20.7483 85 [ -33.6342 18.8830 52.5609 -Georgia_Bold.ttf 77 , 11.5049 20.7483 86 - -9.2457 17.3319 6.3078 -Georgia_Bold.ttf 77 , 11.5049 20.7483 87 Y -31.0627 46.5865 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 88 Q -32.3117 43.5511 53.5241 -Georgia_Bold.ttf 77 , 11.5049 20.7483 89 " -33.7343 23.0291 20.0578 -Georgia_Bold.ttf 77 , 11.5049 20.7483 90 ! -32.2913 10.9408 42.8561 -Georgia_Bold.ttf 77 , 11.5049 20.7483 91 x -18.5233 34.3078 28.0000 -Georgia_Bold.ttf 77 , 11.5049 20.7483 92 ) -33.8308 20.7483 52.5609 -Georgia_Bold.ttf 77 , 11.5049 20.7483 93 = -15.1415 30.3879 16.2451 -Georgia_Bold.ttf 77 , 11.5049 20.7483 94 + -23.0282 31.9572 31.9572 -Georgia_Bold.ttf 77 , 11.5049 20.7483 95 X -31.1845 47.1138 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 96 » -18.8380 28.0000 25.5049 -Georgia_Bold.ttf 77 , 11.5049 20.7483 97 ' -33.7885 9.3670 20.0578 -Georgia_Bold.ttf 77 , 11.5049 20.7483 98 ¢ -27.0820 29.6975 45.0592 -Georgia_Bold.ttf 77 , 11.5049 20.7483 99 Z -30.9247 40.1348 40.4681 -Georgia_Bold.ttf 77 , 11.5049 20.7483 100 > -22.9424 28.2500 32.5259 -Georgia_Bold.ttf 77 , 11.5049 20.7483 101 ® -32.4446 50.4457 50.4457 -Georgia_Bold.ttf 77 , 11.5049 20.7483 102 © -32.6330 50.4457 50.4457 -Georgia_Bold.ttf 77 , 11.5049 20.7483 103 ] -33.7983 18.8830 52.5609 -Georgia_Bold.ttf 77 , 11.5049 20.7483 104 é -35.0337 30.1152 45.5819 -Georgia_Bold.ttf 77 , 11.5049 20.7483 105 z -18.6239 28.0000 28.0000 -Georgia_Bold.ttf 77 , 11.5049 20.7483 106 _ 14.2219 41.0560 2.7259 -Georgia_Bold.ttf 77 , 11.5049 20.7483 107 ¥ -31.2883 44.1379 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 1 t 3.9500 22.8029 37.7468 -Georgia_Bold.ttf 78 I 21.7342 40.4681 2 h -4.0941 38.3109 44.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 3 a 11.1759 31.8795 30.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 4 n 11.2828 38.5434 29.1940 -Georgia_Bold.ttf 78 I 21.7342 40.4681 5 P -0.1196 37.4968 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 6 o 11.2000 32.6103 30.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 7 e 11.4497 30.1152 30.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 8 : 12.3727 11.2741 29.1940 -Georgia_Bold.ttf 78 I 21.7342 40.4681 9 r 11.3386 29.1940 29.1940 -Georgia_Bold.ttf 78 I 21.7342 40.4681 10 l -4.1919 18.7339 44.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 11 i -4.7522 18.7339 44.8687 -Georgia_Bold.ttf 78 I 21.7342 40.4681 12 1 8.7624 23.6397 31.6891 -Georgia_Bold.ttf 78 I 21.7342 40.4681 13 | -3.9972 4.6330 56.5227 -Georgia_Bold.ttf 78 I 21.7342 40.4681 14 N 0.0742 47.1785 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 15 f -3.9198 28.2500 44.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 16 g 11.2793 32.5497 42.0000 -Georgia_Bold.ttf 78 I 21.7342 40.4681 17 d -3.8002 36.4457 45.5819 -Georgia_Bold.ttf 78 I 21.7342 40.4681 18 W -0.2148 68.0276 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 19 s 11.4897 25.8621 30.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 20 c 11.3581 28.9212 30.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 21 u 11.5747 38.2100 30.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 22 3 9.1062 32.5259 42.2500 -Georgia_Bold.ttf 78 I 21.7342 40.4681 23 ~ 18.1017 32.5497 12.2181 -Georgia_Bold.ttf 78 I 21.7342 40.4681 24 # 4.3047 32.2532 36.4457 -Georgia_Bold.ttf 78 I 21.7342 40.4681 25 O -0.9939 43.5511 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 26 ` -4.1266 15.1940 12.8060 -Georgia_Bold.ttf 78 I 21.7342 40.4681 27 @ 0.9493 47.4709 48.6411 -Georgia_Bold.ttf 78 I 21.7342 40.4681 28 F -0.3312 35.9650 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 29 S -1.3559 33.7437 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 30 p 11.2430 35.8397 42.0000 -Georgia_Bold.ttf 78 I 21.7342 40.4681 31 “ -2.7675 25.5049 20.0578 -Georgia_Bold.ttf 78 I 21.7342 40.4681 32 % -1.0604 46.1460 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 33 £ -1.0894 33.4471 41.6621 -Georgia_Bold.ttf 78 I 21.7342 40.4681 34 . 30.4027 11.2741 11.2741 -Georgia_Bold.ttf 78 I 21.7342 40.4681 35 2 8.8381 30.6653 31.6891 -Georgia_Bold.ttf 78 I 21.7342 40.4681 36 5 8.7017 31.3319 42.2500 -Georgia_Bold.ttf 78 I 21.7342 40.4681 37 m 11.2811 57.1474 29.1940 -Georgia_Bold.ttf 78 I 21.7342 40.4681 38 V -0.4966 47.4471 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 39 6 -1.0162 32.2997 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 40 w 12.4073 50.4457 28.0000 -Georgia_Bold.ttf 78 I 21.7342 40.4681 41 T -0.0615 38.0802 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 42 M 0.0492 56.5455 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 43 G -1.1090 45.5865 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 44 b -3.8277 35.7325 45.9198 -Georgia_Bold.ttf 78 I 21.7342 40.4681 45 9 8.5594 32.6330 42.3571 -Georgia_Bold.ttf 78 I 21.7342 40.4681 46 ; 12.3582 11.5049 39.3813 -Georgia_Bold.ttf 78 I 21.7342 40.4681 47 D 0.1158 44.3879 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 48 L 0.1158 38.0196 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 49 y 12.6052 35.2710 40.8060 -Georgia_Bold.ttf 78 I 21.7342 40.4681 50 ‘ -2.7324 11.5049 20.0578 -Georgia_Bold.ttf 78 I 21.7342 40.4681 51 \ -2.4806 24.9408 55.3288 -Georgia_Bold.ttf 78 I 21.7342 40.4681 52 R 0.1532 46.2759 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 53 < 8.0199 28.2500 32.5259 -Georgia_Bold.ttf 78 I 21.7342 40.4681 54 4 8.8267 34.6684 42.2500 -Georgia_Bold.ttf 78 I 21.7342 40.4681 55 8 -0.9587 33.3865 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 56 0 8.6642 34.6876 32.8830 -Georgia_Bold.ttf 78 I 21.7342 40.4681 57 A 0.1460 46.9902 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 58 E 0.0780 38.6908 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 59 B -0.0032 40.1348 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 60 v 12.4055 35.5017 28.0000 -Georgia_Bold.ttf 78 I 21.7342 40.4681 61 k -3.8920 37.9968 44.3879 -Georgia_Bold.ttf 78 I 21.7342 40.4681 62 J -0.0020 33.3235 41.6621 -Georgia_Bold.ttf 78 I 21.7342 40.4681 63 U 0.2148 46.9856 41.6621 -Georgia_Bold.ttf 78 I 21.7342 40.4681 64 j -4.3656 22.1730 57.6747 -Georgia_Bold.ttf 78 I 21.7342 40.4681 65 ( -2.8511 20.7483 52.5609 -Georgia_Bold.ttf 78 I 21.7342 40.4681 66 7 10.0846 30.0308 41.0560 -Georgia_Bold.ttf 78 I 21.7342 40.4681 67 § -1.2426 26.2192 48.4103 -Georgia_Bold.ttf 78 I 21.7342 40.4681 68 $ -3.3216 31.2486 51.7468 -Georgia_Bold.ttf 78 I 21.7342 40.4681 69 € -1.2531 41.2868 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 70 / -2.6269 24.9408 55.3288 -Georgia_Bold.ttf 78 I 21.7342 40.4681 71 C -1.2763 39.1489 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 72 * -1.1864 23.6397 21.2290 -Georgia_Bold.ttf 78 I 21.7342 40.4681 73 ” -2.8764 25.5049 20.0578 -Georgia_Bold.ttf 78 I 21.7342 40.4681 74 ? -1.3751 26.4727 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 75 { -2.7727 25.1716 52.5609 -Georgia_Bold.ttf 78 I 21.7342 40.4681 76 } -2.7396 25.1716 52.5609 -Georgia_Bold.ttf 78 I 21.7342 40.4681 77 , 30.9794 11.5049 20.7483 -Georgia_Bold.ttf 78 I 21.7342 40.4681 78 I 0.0269 21.7342 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 79 ° -1.1583 19.4471 18.8830 -Georgia_Bold.ttf 78 I 21.7342 40.4681 80 K 0.0592 47.4699 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 81 H -0.0871 49.0437 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 82 q 10.2391 36.1968 43.1940 -Georgia_Bold.ttf 78 I 21.7342 40.4681 83 & -1.3408 44.6379 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 84 ’ -2.9046 11.5049 20.0578 -Georgia_Bold.ttf 78 I 21.7342 40.4681 85 [ -2.6395 18.8830 52.5609 -Georgia_Bold.ttf 78 I 21.7342 40.4681 86 - 21.8101 17.3319 6.3078 -Georgia_Bold.ttf 78 I 21.7342 40.4681 87 Y 0.0245 46.5865 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 88 Q -0.9571 43.5511 53.5241 -Georgia_Bold.ttf 78 I 21.7342 40.4681 89 " -2.5433 23.0291 20.0578 -Georgia_Bold.ttf 78 I 21.7342 40.4681 90 ! -1.0929 10.9408 42.8561 -Georgia_Bold.ttf 78 I 21.7342 40.4681 91 x 12.6276 34.3078 28.0000 -Georgia_Bold.ttf 78 I 21.7342 40.4681 92 ) -2.9847 20.7483 52.5609 -Georgia_Bold.ttf 78 I 21.7342 40.4681 93 = 15.8149 30.3879 16.2451 -Georgia_Bold.ttf 78 I 21.7342 40.4681 94 + 8.2007 31.9572 31.9572 -Georgia_Bold.ttf 78 I 21.7342 40.4681 95 X 0.1019 47.1138 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 96 » 12.1177 28.0000 25.5049 -Georgia_Bold.ttf 78 I 21.7342 40.4681 97 ' -2.7273 9.3670 20.0578 -Georgia_Bold.ttf 78 I 21.7342 40.4681 98 ¢ 3.8462 29.6975 45.0592 -Georgia_Bold.ttf 78 I 21.7342 40.4681 99 Z -0.0038 40.1348 40.4681 -Georgia_Bold.ttf 78 I 21.7342 40.4681 100 > 7.7199 28.2500 32.5259 -Georgia_Bold.ttf 78 I 21.7342 40.4681 101 ® -1.4956 50.4457 50.4457 -Georgia_Bold.ttf 78 I 21.7342 40.4681 102 © -1.7113 50.4457 50.4457 -Georgia_Bold.ttf 78 I 21.7342 40.4681 103 ] -3.0197 18.8830 52.5609 -Georgia_Bold.ttf 78 I 21.7342 40.4681 104 é -3.7835 30.1152 45.5819 -Georgia_Bold.ttf 78 I 21.7342 40.4681 105 z 12.3387 28.0000 28.0000 -Georgia_Bold.ttf 78 I 21.7342 40.4681 106 _ 45.7827 41.0560 2.7259 -Georgia_Bold.ttf 78 I 21.7342 40.4681 107 ¥ -0.0444 44.1379 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 1 t 5.3501 22.8029 37.7468 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 2 h -2.7898 38.3109 44.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 3 a 12.2904 31.8795 30.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 4 n 12.4757 38.5434 29.1940 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 5 P 1.0661 37.4968 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 6 o 12.5611 32.6103 30.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 7 e 12.7953 30.1152 30.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 8 : 13.5764 11.2741 29.1940 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 9 r 12.2425 29.1940 29.1940 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 10 l -2.6855 18.7339 44.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 11 i -3.2174 18.7339 44.8687 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 12 1 10.1158 23.6397 31.6891 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 13 | -2.7138 4.6330 56.5227 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 14 N 0.8246 47.1785 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 15 f -2.7129 28.2500 44.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 16 g 12.7232 32.5497 42.0000 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 17 d -2.4221 36.4457 45.5819 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 18 W 1.2297 68.0276 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 19 s 12.5119 25.8621 30.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 20 c 12.5969 28.9212 30.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 21 u 12.5982 38.2100 30.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 22 3 9.9574 32.5259 42.2500 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 23 ~ 19.2650 32.5497 12.2181 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 24 # 5.3664 32.2532 36.4457 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 25 O 0.1659 43.5511 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 26 ` -2.9162 15.1940 12.8060 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 27 @ 2.4339 47.4709 48.6411 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 28 F 1.0908 35.9650 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 29 S 0.2068 33.7437 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 30 p 12.6455 35.8397 42.0000 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 31 “ -1.5644 25.5049 20.0578 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 32 % -0.0115 46.1460 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 33 £ 0.3256 33.4471 41.6621 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 34 . 31.9053 11.2741 11.2741 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 35 2 10.2548 30.6653 31.6891 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 36 5 9.8429 31.3319 42.2500 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 37 m 12.2503 57.1474 29.1940 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 38 V 1.2341 47.4471 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 39 6 0.0000 32.2997 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 40 w 13.9290 50.4457 28.0000 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 41 T 1.1128 38.0802 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 42 M 1.1654 56.5455 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 43 G 0.0309 45.5865 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 44 b -2.4427 35.7325 45.9198 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 45 9 9.9758 32.6330 42.3571 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 46 ; 13.9231 11.5049 39.3813 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 47 D 1.0101 44.3879 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 48 L 0.8733 38.0196 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 49 y 13.8272 35.2710 40.8060 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 50 ‘ -1.6300 11.5049 20.0578 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 51 \ -1.6198 24.9408 55.3288 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 52 R 1.1188 46.2759 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 53 < 8.9991 28.2500 32.5259 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 54 4 10.0087 34.6684 42.2500 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 55 8 0.0766 33.3865 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 56 0 9.7829 34.6876 32.8830 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 57 A 1.2741 46.9902 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 58 E 0.8388 38.6908 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 59 B 1.4015 40.1348 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 60 v 13.2668 35.5017 28.0000 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 61 k -2.8124 37.9968 44.3879 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 62 J 1.0281 33.3235 41.6621 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 63 U 1.1972 46.9856 41.6621 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 64 j -3.2158 22.1730 57.6747 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 65 ( -1.6166 20.7483 52.5609 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 66 7 11.3125 30.0308 41.0560 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 67 § -0.0911 26.2192 48.4103 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 68 $ -1.9550 31.2486 51.7468 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 69 € 0.0000 41.2868 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 70 / -1.6236 24.9408 55.3288 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 71 C -0.1651 39.1489 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 72 * 0.1075 23.6397 21.2290 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 73 ” -1.4284 25.5049 20.0578 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 74 ? -0.3408 26.4727 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 75 { -1.3794 25.1716 52.5609 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 76 } -1.3141 25.1716 52.5609 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 77 , 32.3049 11.5049 20.7483 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 78 I 1.3317 21.7342 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 79 ° -0.1543 19.4471 18.8830 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 80 K 1.1870 47.4699 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 81 H 1.4937 49.0437 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 82 q 11.2300 36.1968 43.1940 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 83 & 0.1532 44.6379 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 84 ’ -1.7636 11.5049 20.0578 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 85 [ -1.2880 18.8830 52.5609 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 86 - 22.8215 17.3319 6.3078 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 87 Y 0.8545 46.5865 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 88 Q -0.3355 43.5511 53.5241 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 89 " -1.5620 23.0291 20.0578 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 90 ! 0.0000 10.9408 42.8561 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 91 x 13.7779 34.3078 28.0000 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 92 ) -1.5849 20.7483 52.5609 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 93 = 17.1466 30.3879 16.2451 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 94 + 9.2890 31.9572 31.9572 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 95 X 1.4386 47.1138 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 96 » 13.4313 28.0000 25.5049 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 97 ' -1.4494 9.3670 20.0578 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 98 ¢ 5.5154 29.6975 45.0592 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 99 Z 1.5105 40.1348 40.4681 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 100 > 9.2596 28.2500 32.5259 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 101 ® -0.3790 50.4457 50.4457 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 102 © -0.4212 50.4457 50.4457 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 103 ] -1.8663 18.8830 52.5609 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 104 é -3.0423 30.1152 45.5819 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 105 z 13.7552 28.0000 28.0000 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 106 _ 46.7660 41.0560 2.7259 -Georgia_Bold.ttf 79 ° 19.4471 18.8830 107 ¥ 1.3832 44.1379 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 1 t 3.7252 22.8029 37.7468 -Georgia_Bold.ttf 80 K 47.4699 40.4681 2 h -3.8448 38.3109 44.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 3 a 11.0271 31.8795 30.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 4 n 11.4788 38.5434 29.1940 -Georgia_Bold.ttf 80 K 47.4699 40.4681 5 P 0.1625 37.4968 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 6 o 11.5183 32.6103 30.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 7 e 11.1532 30.1152 30.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 8 : 12.4689 11.2741 29.1940 -Georgia_Bold.ttf 80 K 47.4699 40.4681 9 r 11.4984 29.1940 29.1940 -Georgia_Bold.ttf 80 K 47.4699 40.4681 10 l -3.9219 18.7339 44.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 11 i -4.1925 18.7339 44.8687 -Georgia_Bold.ttf 80 K 47.4699 40.4681 12 1 9.0299 23.6397 31.6891 -Georgia_Bold.ttf 80 K 47.4699 40.4681 13 | -3.7399 4.6330 56.5227 -Georgia_Bold.ttf 80 K 47.4699 40.4681 14 N 0.0545 47.1785 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 15 f -3.8879 28.2500 44.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 16 g 11.3970 32.5497 42.0000 -Georgia_Bold.ttf 80 K 47.4699 40.4681 17 d -3.7352 36.4457 45.5819 -Georgia_Bold.ttf 80 K 47.4699 40.4681 18 W 0.0476 68.0276 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 19 s 11.5519 25.8621 30.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 20 c 11.7578 28.9212 30.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 21 u 11.4317 38.2100 30.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 22 3 8.7264 32.5259 42.2500 -Georgia_Bold.ttf 80 K 47.4699 40.4681 23 ~ 18.1253 32.5497 12.2181 -Georgia_Bold.ttf 80 K 47.4699 40.4681 24 # 4.0782 32.2532 36.4457 -Georgia_Bold.ttf 80 K 47.4699 40.4681 25 O -1.2994 43.5511 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 26 ` -3.7418 15.1940 12.8060 -Georgia_Bold.ttf 80 K 47.4699 40.4681 27 @ 0.9670 47.4709 48.6411 -Georgia_Bold.ttf 80 K 47.4699 40.4681 28 F 0.0199 35.9650 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 29 S -0.9422 33.7437 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 30 p 11.1908 35.8397 42.0000 -Georgia_Bold.ttf 80 K 47.4699 40.4681 31 “ -2.4646 25.5049 20.0578 -Georgia_Bold.ttf 80 K 47.4699 40.4681 32 % -0.9577 46.1460 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 33 £ -1.0670 33.4471 41.6621 -Georgia_Bold.ttf 80 K 47.4699 40.4681 34 . 30.5248 11.2741 11.2741 -Georgia_Bold.ttf 80 K 47.4699 40.4681 35 2 8.4080 30.6653 31.6891 -Georgia_Bold.ttf 80 K 47.4699 40.4681 36 5 8.4559 31.3319 42.2500 -Georgia_Bold.ttf 80 K 47.4699 40.4681 37 m 11.3648 57.1474 29.1940 -Georgia_Bold.ttf 80 K 47.4699 40.4681 38 V -0.2613 47.4471 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 39 6 -1.0069 32.2997 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 40 w 12.4256 50.4457 28.0000 -Georgia_Bold.ttf 80 K 47.4699 40.4681 41 T 0.1210 38.0802 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 42 M -0.2862 56.5455 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 43 G -1.2562 45.5865 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 44 b -3.9698 35.7325 45.9198 -Georgia_Bold.ttf 80 K 47.4699 40.4681 45 9 8.5866 32.6330 42.3571 -Georgia_Bold.ttf 80 K 47.4699 40.4681 46 ; 12.3278 11.5049 39.3813 -Georgia_Bold.ttf 80 K 47.4699 40.4681 47 D -0.2021 44.3879 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 48 L -0.0013 38.0196 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 49 y 12.5488 35.2710 40.8060 -Georgia_Bold.ttf 80 K 47.4699 40.4681 50 ‘ -3.0589 11.5049 20.0578 -Georgia_Bold.ttf 80 K 47.4699 40.4681 51 \ -2.9310 24.9408 55.3288 -Georgia_Bold.ttf 80 K 47.4699 40.4681 52 R 0.0301 46.2759 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 53 < 7.7439 28.2500 32.5259 -Georgia_Bold.ttf 80 K 47.4699 40.4681 54 4 8.8017 34.6684 42.2500 -Georgia_Bold.ttf 80 K 47.4699 40.4681 55 8 -0.8130 33.3865 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 56 0 8.6608 34.6876 32.8830 -Georgia_Bold.ttf 80 K 47.4699 40.4681 57 A 0.2003 46.9902 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 58 E -0.2215 38.6908 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 59 B -0.3285 40.1348 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 60 v 12.3170 35.5017 28.0000 -Georgia_Bold.ttf 80 K 47.4699 40.4681 61 k -4.4777 37.9968 44.3879 -Georgia_Bold.ttf 80 K 47.4699 40.4681 62 J -0.0150 33.3235 41.6621 -Georgia_Bold.ttf 80 K 47.4699 40.4681 63 U 0.0500 46.9856 41.6621 -Georgia_Bold.ttf 80 K 47.4699 40.4681 64 j -4.4768 22.1730 57.6747 -Georgia_Bold.ttf 80 K 47.4699 40.4681 65 ( -2.7143 20.7483 52.5609 -Georgia_Bold.ttf 80 K 47.4699 40.4681 66 7 9.8800 30.0308 41.0560 -Georgia_Bold.ttf 80 K 47.4699 40.4681 67 § -1.1225 26.2192 48.4103 -Georgia_Bold.ttf 80 K 47.4699 40.4681 68 $ -3.2162 31.2486 51.7468 -Georgia_Bold.ttf 80 K 47.4699 40.4681 69 € -1.1015 41.2868 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 70 / -3.0722 24.9408 55.3288 -Georgia_Bold.ttf 80 K 47.4699 40.4681 71 C -0.9554 39.1489 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 72 * -1.3783 23.6397 21.2290 -Georgia_Bold.ttf 80 K 47.4699 40.4681 73 ” -2.7009 25.5049 20.0578 -Georgia_Bold.ttf 80 K 47.4699 40.4681 74 ? -1.3916 26.4727 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 75 { -2.8030 25.1716 52.5609 -Georgia_Bold.ttf 80 K 47.4699 40.4681 76 } -2.2568 25.1716 52.5609 -Georgia_Bold.ttf 80 K 47.4699 40.4681 77 , 31.3008 11.5049 20.7483 -Georgia_Bold.ttf 80 K 47.4699 40.4681 78 I -0.2724 21.7342 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 79 ° -1.2515 19.4471 18.8830 -Georgia_Bold.ttf 80 K 47.4699 40.4681 80 K 0.5200 47.4699 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 81 H 0.1720 49.0437 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 82 q 10.2113 36.1968 43.1940 -Georgia_Bold.ttf 80 K 47.4699 40.4681 83 & -1.1177 44.6379 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 84 ’ -2.7433 11.5049 20.0578 -Georgia_Bold.ttf 80 K 47.4699 40.4681 85 [ -2.5769 18.8830 52.5609 -Georgia_Bold.ttf 80 K 47.4699 40.4681 86 - 22.1878 17.3319 6.3078 -Georgia_Bold.ttf 80 K 47.4699 40.4681 87 Y -0.1769 46.5865 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 88 Q -1.1615 43.5511 53.5241 -Georgia_Bold.ttf 80 K 47.4699 40.4681 89 " -2.6477 23.0291 20.0578 -Georgia_Bold.ttf 80 K 47.4699 40.4681 90 ! -1.0958 10.9408 42.8561 -Georgia_Bold.ttf 80 K 47.4699 40.4681 91 x 12.2369 34.3078 28.0000 -Georgia_Bold.ttf 80 K 47.4699 40.4681 92 ) -2.7000 20.7483 52.5609 -Georgia_Bold.ttf 80 K 47.4699 40.4681 93 = 16.2690 30.3879 16.2451 -Georgia_Bold.ttf 80 K 47.4699 40.4681 94 + 8.7390 31.9572 31.9572 -Georgia_Bold.ttf 80 K 47.4699 40.4681 95 X 0.1027 47.1138 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 96 » 12.4129 28.0000 25.5049 -Georgia_Bold.ttf 80 K 47.4699 40.4681 97 ' -2.8573 9.3670 20.0578 -Georgia_Bold.ttf 80 K 47.4699 40.4681 98 ¢ 3.8761 29.6975 45.0592 -Georgia_Bold.ttf 80 K 47.4699 40.4681 99 Z 0.2594 40.1348 40.4681 -Georgia_Bold.ttf 80 K 47.4699 40.4681 100 > 8.1775 28.2500 32.5259 -Georgia_Bold.ttf 80 K 47.4699 40.4681 101 ® -1.4042 50.4457 50.4457 -Georgia_Bold.ttf 80 K 47.4699 40.4681 102 © -1.3891 50.4457 50.4457 -Georgia_Bold.ttf 80 K 47.4699 40.4681 103 ] -2.6097 18.8830 52.5609 -Georgia_Bold.ttf 80 K 47.4699 40.4681 104 é -3.7120 30.1152 45.5819 -Georgia_Bold.ttf 80 K 47.4699 40.4681 105 z 12.8203 28.0000 28.0000 -Georgia_Bold.ttf 80 K 47.4699 40.4681 106 _ 45.5953 41.0560 2.7259 -Georgia_Bold.ttf 80 K 47.4699 40.4681 107 ¥ 0.2563 44.1379 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 1 t 3.7353 22.8029 37.7468 -Georgia_Bold.ttf 81 H 49.0437 40.4681 2 h -4.0250 38.3109 44.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 3 a 11.3239 31.8795 30.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 4 n 11.0389 38.5434 29.1940 -Georgia_Bold.ttf 81 H 49.0437 40.4681 5 P -0.0105 37.4968 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 6 o 11.2203 32.6103 30.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 7 e 11.1988 30.1152 30.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 8 : 12.4988 11.2741 29.1940 -Georgia_Bold.ttf 81 H 49.0437 40.4681 9 r 11.2424 29.1940 29.1940 -Georgia_Bold.ttf 81 H 49.0437 40.4681 10 l -3.7682 18.7339 44.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 11 i -4.3621 18.7339 44.8687 -Georgia_Bold.ttf 81 H 49.0437 40.4681 12 1 9.1191 23.6397 31.6891 -Georgia_Bold.ttf 81 H 49.0437 40.4681 13 | -3.6473 4.6330 56.5227 -Georgia_Bold.ttf 81 H 49.0437 40.4681 14 N -0.0394 47.1785 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 15 f -3.9570 28.2500 44.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 16 g 11.3246 32.5497 42.0000 -Georgia_Bold.ttf 81 H 49.0437 40.4681 17 d -3.9201 36.4457 45.5819 -Georgia_Bold.ttf 81 H 49.0437 40.4681 18 W 0.0979 68.0276 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 19 s 11.5069 25.8621 30.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 20 c 11.4999 28.9212 30.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 21 u 11.0230 38.2100 30.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 22 3 9.0103 32.5259 42.2500 -Georgia_Bold.ttf 81 H 49.0437 40.4681 23 ~ 18.1253 32.5497 12.2181 -Georgia_Bold.ttf 81 H 49.0437 40.4681 24 # 4.0323 32.2532 36.4457 -Georgia_Bold.ttf 81 H 49.0437 40.4681 25 O -1.0042 43.5511 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 26 ` -3.9407 15.1940 12.8060 -Georgia_Bold.ttf 81 H 49.0437 40.4681 27 @ 1.3420 47.4709 48.6411 -Georgia_Bold.ttf 81 H 49.0437 40.4681 28 F -0.1395 35.9650 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 29 S -1.3110 33.7437 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 30 p 11.4581 35.8397 42.0000 -Georgia_Bold.ttf 81 H 49.0437 40.4681 31 “ -2.7122 25.5049 20.0578 -Georgia_Bold.ttf 81 H 49.0437 40.4681 32 % -1.2291 46.1460 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 33 £ -0.8061 33.4471 41.6621 -Georgia_Bold.ttf 81 H 49.0437 40.4681 34 . 30.8054 11.2741 11.2741 -Georgia_Bold.ttf 81 H 49.0437 40.4681 35 2 8.5288 30.6653 31.6891 -Georgia_Bold.ttf 81 H 49.0437 40.4681 36 5 8.7639 31.3319 42.2500 -Georgia_Bold.ttf 81 H 49.0437 40.4681 37 m 11.3567 57.1474 29.1940 -Georgia_Bold.ttf 81 H 49.0437 40.4681 38 V 0.0777 47.4471 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 39 6 -1.3324 32.2997 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 40 w 12.5157 50.4457 28.0000 -Georgia_Bold.ttf 81 H 49.0437 40.4681 41 T 0.0769 38.0802 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 42 M -0.0615 56.5455 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 43 G -1.0357 45.5865 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 44 b -4.0087 35.7325 45.9198 -Georgia_Bold.ttf 81 H 49.0437 40.4681 45 9 8.9366 32.6330 42.3571 -Georgia_Bold.ttf 81 H 49.0437 40.4681 46 ; 12.3693 11.5049 39.3813 -Georgia_Bold.ttf 81 H 49.0437 40.4681 47 D 0.1719 44.3879 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 48 L 0.0562 38.0196 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 49 y 12.4393 35.2710 40.8060 -Georgia_Bold.ttf 81 H 49.0437 40.4681 50 ‘ -2.3704 11.5049 20.0578 -Georgia_Bold.ttf 81 H 49.0437 40.4681 51 \ -2.6100 24.9408 55.3288 -Georgia_Bold.ttf 81 H 49.0437 40.4681 52 R -0.4561 46.2759 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 53 < 7.7095 28.2500 32.5259 -Georgia_Bold.ttf 81 H 49.0437 40.4681 54 4 8.4852 34.6684 42.2500 -Georgia_Bold.ttf 81 H 49.0437 40.4681 55 8 -1.5055 33.3865 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 56 0 8.8758 34.6876 32.8830 -Georgia_Bold.ttf 81 H 49.0437 40.4681 57 A 0.1984 46.9902 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 58 E -0.2750 38.6908 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 59 B -0.1905 40.1348 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 60 v 12.3578 35.5017 28.0000 -Georgia_Bold.ttf 81 H 49.0437 40.4681 61 k -3.5830 37.9968 44.3879 -Georgia_Bold.ttf 81 H 49.0437 40.4681 62 J -0.1339 33.3235 41.6621 -Georgia_Bold.ttf 81 H 49.0437 40.4681 63 U -0.2901 46.9856 41.6621 -Georgia_Bold.ttf 81 H 49.0437 40.4681 64 j -4.4640 22.1730 57.6747 -Georgia_Bold.ttf 81 H 49.0437 40.4681 65 ( -2.5031 20.7483 52.5609 -Georgia_Bold.ttf 81 H 49.0437 40.4681 66 7 9.9637 30.0308 41.0560 -Georgia_Bold.ttf 81 H 49.0437 40.4681 67 § -1.0641 26.2192 48.4103 -Georgia_Bold.ttf 81 H 49.0437 40.4681 68 $ -3.5412 31.2486 51.7468 -Georgia_Bold.ttf 81 H 49.0437 40.4681 69 € -0.8542 41.2868 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 70 / -2.7006 24.9408 55.3288 -Georgia_Bold.ttf 81 H 49.0437 40.4681 71 C -1.6072 39.1489 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 72 * -1.1628 23.6397 21.2290 -Georgia_Bold.ttf 81 H 49.0437 40.4681 73 ” -2.9581 25.5049 20.0578 -Georgia_Bold.ttf 81 H 49.0437 40.4681 74 ? -1.2418 26.4727 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 75 { -2.9854 25.1716 52.5609 -Georgia_Bold.ttf 81 H 49.0437 40.4681 76 } -2.3928 25.1716 52.5609 -Georgia_Bold.ttf 81 H 49.0437 40.4681 77 , 31.1111 11.5049 20.7483 -Georgia_Bold.ttf 81 H 49.0437 40.4681 78 I 0.1172 21.7342 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 79 ° -1.1124 19.4471 18.8830 -Georgia_Bold.ttf 81 H 49.0437 40.4681 80 K 0.0492 47.4699 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 81 H -0.3632 49.0437 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 82 q 10.0463 36.1968 43.1940 -Georgia_Bold.ttf 81 H 49.0437 40.4681 83 & -1.1964 44.6379 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 84 ’ -2.5082 11.5049 20.0578 -Georgia_Bold.ttf 81 H 49.0437 40.4681 85 [ -2.6717 18.8830 52.5609 -Georgia_Bold.ttf 81 H 49.0437 40.4681 86 - 22.1347 17.3319 6.3078 -Georgia_Bold.ttf 81 H 49.0437 40.4681 87 Y 0.0649 46.5865 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 88 Q -1.2160 43.5511 53.5241 -Georgia_Bold.ttf 81 H 49.0437 40.4681 89 " -2.8444 23.0291 20.0578 -Georgia_Bold.ttf 81 H 49.0437 40.4681 90 ! -1.0819 10.9408 42.8561 -Georgia_Bold.ttf 81 H 49.0437 40.4681 91 x 12.6913 34.3078 28.0000 -Georgia_Bold.ttf 81 H 49.0437 40.4681 92 ) -2.6930 20.7483 52.5609 -Georgia_Bold.ttf 81 H 49.0437 40.4681 93 = 16.1335 30.3879 16.2451 -Georgia_Bold.ttf 81 H 49.0437 40.4681 94 + 8.0036 31.9572 31.9572 -Georgia_Bold.ttf 81 H 49.0437 40.4681 95 X 0.2408 47.1138 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 96 » 12.4406 28.0000 25.5049 -Georgia_Bold.ttf 81 H 49.0437 40.4681 97 ' -2.5996 9.3670 20.0578 -Georgia_Bold.ttf 81 H 49.0437 40.4681 98 ¢ 3.8484 29.6975 45.0592 -Georgia_Bold.ttf 81 H 49.0437 40.4681 99 Z -0.1640 40.1348 40.4681 -Georgia_Bold.ttf 81 H 49.0437 40.4681 100 > 7.7629 28.2500 32.5259 -Georgia_Bold.ttf 81 H 49.0437 40.4681 101 ® -1.4077 50.4457 50.4457 -Georgia_Bold.ttf 81 H 49.0437 40.4681 102 © -1.5857 50.4457 50.4457 -Georgia_Bold.ttf 81 H 49.0437 40.4681 103 ] -2.7433 18.8830 52.5609 -Georgia_Bold.ttf 81 H 49.0437 40.4681 104 é -4.0107 30.1152 45.5819 -Georgia_Bold.ttf 81 H 49.0437 40.4681 105 z 12.4199 28.0000 28.0000 -Georgia_Bold.ttf 81 H 49.0437 40.4681 106 _ 45.4200 41.0560 2.7259 -Georgia_Bold.ttf 81 H 49.0437 40.4681 107 ¥ -0.1379 44.1379 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 1 t -6.4864 22.8029 37.7468 -Georgia_Bold.ttf 82 q 36.1968 43.1940 2 h -13.9045 38.3109 44.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 3 a 1.0510 31.8795 30.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 4 n 1.0327 38.5434 29.1940 -Georgia_Bold.ttf 82 q 36.1968 43.1940 5 P -10.1436 37.4968 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 6 o 1.3597 32.6103 30.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 7 e 1.1031 30.1152 30.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 8 : 2.5737 11.2741 29.1940 -Georgia_Bold.ttf 82 q 36.1968 43.1940 9 r 1.3086 29.1940 29.1940 -Georgia_Bold.ttf 82 q 36.1968 43.1940 10 l -13.9008 18.7339 44.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 11 i -14.5647 18.7339 44.8687 -Georgia_Bold.ttf 82 q 36.1968 43.1940 12 1 -1.1005 23.6397 31.6891 -Georgia_Bold.ttf 82 q 36.1968 43.1940 13 | -14.0060 4.6330 56.5227 -Georgia_Bold.ttf 82 q 36.1968 43.1940 14 N -10.1543 47.1785 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 15 f -14.1696 28.2500 44.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 16 g 1.3217 32.5497 42.0000 -Georgia_Bold.ttf 82 q 36.1968 43.1940 17 d -13.8432 36.4457 45.5819 -Georgia_Bold.ttf 82 q 36.1968 43.1940 18 W -9.7657 68.0276 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 19 s 0.9697 25.8621 30.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 20 c 1.4580 28.9212 30.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 21 u 1.0932 38.2100 30.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 22 3 -1.3141 32.5259 42.2500 -Georgia_Bold.ttf 82 q 36.1968 43.1940 23 ~ 8.3224 32.5497 12.2181 -Georgia_Bold.ttf 82 q 36.1968 43.1940 24 # -5.9758 32.2532 36.4457 -Georgia_Bold.ttf 82 q 36.1968 43.1940 25 O -11.1908 43.5511 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 26 ` -13.8895 15.1940 12.8060 -Georgia_Bold.ttf 82 q 36.1968 43.1940 27 @ -8.6749 47.4709 48.6411 -Georgia_Bold.ttf 82 q 36.1968 43.1940 28 F -10.1428 35.9650 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 29 S -11.1691 33.7437 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 30 p 1.1972 35.8397 42.0000 -Georgia_Bold.ttf 82 q 36.1968 43.1940 31 “ -12.4767 25.5049 20.0578 -Georgia_Bold.ttf 82 q 36.1968 43.1940 32 % -11.3553 46.1460 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 33 £ -11.2371 33.4471 41.6621 -Georgia_Bold.ttf 82 q 36.1968 43.1940 34 . 20.2906 11.2741 11.2741 -Georgia_Bold.ttf 82 q 36.1968 43.1940 35 2 -1.1404 30.6653 31.6891 -Georgia_Bold.ttf 82 q 36.1968 43.1940 36 5 -1.2108 31.3319 42.2500 -Georgia_Bold.ttf 82 q 36.1968 43.1940 37 m 1.1541 57.1474 29.1940 -Georgia_Bold.ttf 82 q 36.1968 43.1940 38 V -10.1565 47.4471 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 39 6 -11.0940 32.2997 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 40 w 2.4319 50.4457 28.0000 -Georgia_Bold.ttf 82 q 36.1968 43.1940 41 T -9.7303 38.0802 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 42 M -10.4028 56.5455 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 43 G -10.9851 45.5865 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 44 b -13.9143 35.7325 45.9198 -Georgia_Bold.ttf 82 q 36.1968 43.1940 45 9 -1.2344 32.6330 42.3571 -Georgia_Bold.ttf 82 q 36.1968 43.1940 46 ; 2.4078 11.5049 39.3813 -Georgia_Bold.ttf 82 q 36.1968 43.1940 47 D -10.0977 44.3879 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 48 L -10.0603 38.0196 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 49 y 2.4144 35.2710 40.8060 -Georgia_Bold.ttf 82 q 36.1968 43.1940 50 ‘ -12.8596 11.5049 20.0578 -Georgia_Bold.ttf 82 q 36.1968 43.1940 51 \ -12.6767 24.9408 55.3288 -Georgia_Bold.ttf 82 q 36.1968 43.1940 52 R -9.8185 46.2759 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 53 < -1.9682 28.2500 32.5259 -Georgia_Bold.ttf 82 q 36.1968 43.1940 54 4 -1.0081 34.6684 42.2500 -Georgia_Bold.ttf 82 q 36.1968 43.1940 55 8 -11.1803 33.3865 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 56 0 -1.3966 34.6876 32.8830 -Georgia_Bold.ttf 82 q 36.1968 43.1940 57 A -10.0584 46.9902 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 58 E -9.9710 38.6908 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 59 B -10.1302 40.1348 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 60 v 2.3435 35.5017 28.0000 -Georgia_Bold.ttf 82 q 36.1968 43.1940 61 k -14.1350 37.9968 44.3879 -Georgia_Bold.ttf 82 q 36.1968 43.1940 62 J -10.1571 33.3235 41.6621 -Georgia_Bold.ttf 82 q 36.1968 43.1940 63 U -9.7960 46.9856 41.6621 -Georgia_Bold.ttf 82 q 36.1968 43.1940 64 j -14.6894 22.1730 57.6747 -Georgia_Bold.ttf 82 q 36.1968 43.1940 65 ( -12.6513 20.7483 52.5609 -Georgia_Bold.ttf 82 q 36.1968 43.1940 66 7 -0.1394 30.0308 41.0560 -Georgia_Bold.ttf 82 q 36.1968 43.1940 67 § -11.6354 26.2192 48.4103 -Georgia_Bold.ttf 82 q 36.1968 43.1940 68 $ -13.5319 31.2486 51.7468 -Georgia_Bold.ttf 82 q 36.1968 43.1940 69 € -11.1811 41.2868 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 70 / -12.6902 24.9408 55.3288 -Georgia_Bold.ttf 82 q 36.1968 43.1940 71 C -11.5379 39.1489 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 72 * -11.3090 23.6397 21.2290 -Georgia_Bold.ttf 82 q 36.1968 43.1940 73 ” -12.9870 25.5049 20.0578 -Georgia_Bold.ttf 82 q 36.1968 43.1940 74 ? -11.2189 26.4727 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 75 { -12.7931 25.1716 52.5609 -Georgia_Bold.ttf 82 q 36.1968 43.1940 76 } -12.8246 25.1716 52.5609 -Georgia_Bold.ttf 82 q 36.1968 43.1940 77 , 21.2525 11.5049 20.7483 -Georgia_Bold.ttf 82 q 36.1968 43.1940 78 I -10.0136 21.7342 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 79 ° -11.0419 19.4471 18.8830 -Georgia_Bold.ttf 82 q 36.1968 43.1940 80 K -9.8547 47.4699 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 81 H -10.2784 49.0437 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 82 q 0.2145 36.1968 43.1940 -Georgia_Bold.ttf 82 q 36.1968 43.1940 83 & -11.1443 44.6379 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 84 ’ -12.5469 11.5049 20.0578 -Georgia_Bold.ttf 82 q 36.1968 43.1940 85 [ -13.0181 18.8830 52.5609 -Georgia_Bold.ttf 82 q 36.1968 43.1940 86 - 11.8665 17.3319 6.3078 -Georgia_Bold.ttf 82 q 36.1968 43.1940 87 Y -10.0767 46.5865 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 88 Q -11.1112 43.5511 53.5241 -Georgia_Bold.ttf 82 q 36.1968 43.1940 89 " -12.8547 23.0291 20.0578 -Georgia_Bold.ttf 82 q 36.1968 43.1940 90 ! -11.4900 10.9408 42.8561 -Georgia_Bold.ttf 82 q 36.1968 43.1940 91 x 2.3901 34.3078 28.0000 -Georgia_Bold.ttf 82 q 36.1968 43.1940 92 ) -12.9508 20.7483 52.5609 -Georgia_Bold.ttf 82 q 36.1968 43.1940 93 = 5.8123 30.3879 16.2451 -Georgia_Bold.ttf 82 q 36.1968 43.1940 94 + -2.1801 31.9572 31.9572 -Georgia_Bold.ttf 82 q 36.1968 43.1940 95 X -10.0560 47.1138 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 96 » 2.1550 28.0000 25.5049 -Georgia_Bold.ttf 82 q 36.1968 43.1940 97 ' -12.8043 9.3670 20.0578 -Georgia_Bold.ttf 82 q 36.1968 43.1940 98 ¢ -6.1280 29.6975 45.0592 -Georgia_Bold.ttf 82 q 36.1968 43.1940 99 Z -10.0051 40.1348 40.4681 -Georgia_Bold.ttf 82 q 36.1968 43.1940 100 > -2.0425 28.2500 32.5259 -Georgia_Bold.ttf 82 q 36.1968 43.1940 101 ® -11.6574 50.4457 50.4457 -Georgia_Bold.ttf 82 q 36.1968 43.1940 102 © -11.5527 50.4457 50.4457 -Georgia_Bold.ttf 82 q 36.1968 43.1940 103 ] -12.5471 18.8830 52.5609 -Georgia_Bold.ttf 82 q 36.1968 43.1940 104 é -13.8814 30.1152 45.5819 -Georgia_Bold.ttf 82 q 36.1968 43.1940 105 z 2.4745 28.0000 28.0000 -Georgia_Bold.ttf 82 q 36.1968 43.1940 106 _ 35.7047 41.0560 2.7259 -Georgia_Bold.ttf 82 q 36.1968 43.1940 107 ¥ -10.3391 44.1379 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 1 t 5.3122 22.8029 37.7468 -Georgia_Bold.ttf 83 & 44.6379 42.8561 2 h -2.9065 38.3109 44.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 3 a 12.1299 31.8795 30.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 4 n 12.4170 38.5434 29.1940 -Georgia_Bold.ttf 83 & 44.6379 42.8561 5 P 1.0551 37.4968 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 6 o 12.3520 32.6103 30.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 7 e 12.5507 30.1152 30.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 8 : 13.4887 11.2741 29.1940 -Georgia_Bold.ttf 83 & 44.6379 42.8561 9 r 12.4858 29.1940 29.1940 -Georgia_Bold.ttf 83 & 44.6379 42.8561 10 l -2.4858 18.7339 44.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 11 i -3.3337 18.7339 44.8687 -Georgia_Bold.ttf 83 & 44.6379 42.8561 12 1 10.2427 23.6397 31.6891 -Georgia_Bold.ttf 83 & 44.6379 42.8561 13 | -2.5678 4.6330 56.5227 -Georgia_Bold.ttf 83 & 44.6379 42.8561 14 N 1.1781 47.1785 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 15 f -2.7425 28.2500 44.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 16 g 12.6529 32.5497 42.0000 -Georgia_Bold.ttf 83 & 44.6379 42.8561 17 d -2.7808 36.4457 45.5819 -Georgia_Bold.ttf 83 & 44.6379 42.8561 18 W 1.1824 68.0276 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 19 s 12.2829 25.8621 30.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 20 c 12.2999 28.9212 30.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 21 u 12.3541 38.2100 30.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 22 3 10.1459 32.5259 42.2500 -Georgia_Bold.ttf 83 & 44.6379 42.8561 23 ~ 19.4491 32.5497 12.2181 -Georgia_Bold.ttf 83 & 44.6379 42.8561 24 # 5.6229 32.2532 36.4457 -Georgia_Bold.ttf 83 & 44.6379 42.8561 25 O -0.0181 43.5511 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 26 ` -2.6640 15.1940 12.8060 -Georgia_Bold.ttf 83 & 44.6379 42.8561 27 @ 2.5011 47.4709 48.6411 -Georgia_Bold.ttf 83 & 44.6379 42.8561 28 F 1.6012 35.9650 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 29 S -0.0379 33.7437 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 30 p 12.0395 35.8397 42.0000 -Georgia_Bold.ttf 83 & 44.6379 42.8561 31 “ -1.6617 25.5049 20.0578 -Georgia_Bold.ttf 83 & 44.6379 42.8561 32 % 0.3117 46.1460 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 33 £ -0.2016 33.4471 41.6621 -Georgia_Bold.ttf 83 & 44.6379 42.8561 34 . 31.9618 11.2741 11.2741 -Georgia_Bold.ttf 83 & 44.6379 42.8561 35 2 9.9587 30.6653 31.6891 -Georgia_Bold.ttf 83 & 44.6379 42.8561 36 5 10.1440 31.3319 42.2500 -Georgia_Bold.ttf 83 & 44.6379 42.8561 37 m 12.1873 57.1474 29.1940 -Georgia_Bold.ttf 83 & 44.6379 42.8561 38 V 1.0412 47.4471 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 39 6 0.0823 32.2997 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 40 w 13.6406 50.4457 28.0000 -Georgia_Bold.ttf 83 & 44.6379 42.8561 41 T 1.2609 38.0802 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 42 M 1.0166 56.5455 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 43 G 0.6200 45.5865 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 44 b -2.8011 35.7325 45.9198 -Georgia_Bold.ttf 83 & 44.6379 42.8561 45 9 10.0598 32.6330 42.3571 -Georgia_Bold.ttf 83 & 44.6379 42.8561 46 ; 13.8697 11.5049 39.3813 -Georgia_Bold.ttf 83 & 44.6379 42.8561 47 D 1.4507 44.3879 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 48 L 1.5399 38.0196 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 49 y 13.7075 35.2710 40.8060 -Georgia_Bold.ttf 83 & 44.6379 42.8561 50 ‘ -1.3569 11.5049 20.0578 -Georgia_Bold.ttf 83 & 44.6379 42.8561 51 \ -1.6569 24.9408 55.3288 -Georgia_Bold.ttf 83 & 44.6379 42.8561 52 R 1.0513 46.2759 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 53 < 9.0620 28.2500 32.5259 -Georgia_Bold.ttf 83 & 44.6379 42.8561 54 4 9.6098 34.6684 42.2500 -Georgia_Bold.ttf 83 & 44.6379 42.8561 55 8 0.0629 33.3865 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 56 0 9.6219 34.6876 32.8830 -Georgia_Bold.ttf 83 & 44.6379 42.8561 57 A 1.4220 46.9902 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 58 E 0.8788 38.6908 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 59 B 1.2862 40.1348 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 60 v 13.5863 35.5017 28.0000 -Georgia_Bold.ttf 83 & 44.6379 42.8561 61 k -2.8248 37.9968 44.3879 -Georgia_Bold.ttf 83 & 44.6379 42.8561 62 J 1.4206 33.3235 41.6621 -Georgia_Bold.ttf 83 & 44.6379 42.8561 63 U 0.6993 46.9856 41.6621 -Georgia_Bold.ttf 83 & 44.6379 42.8561 64 j -3.3778 22.1730 57.6747 -Georgia_Bold.ttf 83 & 44.6379 42.8561 65 ( -1.2487 20.7483 52.5609 -Georgia_Bold.ttf 83 & 44.6379 42.8561 66 7 11.0837 30.0308 41.0560 -Georgia_Bold.ttf 83 & 44.6379 42.8561 67 § -0.0473 26.2192 48.4103 -Georgia_Bold.ttf 83 & 44.6379 42.8561 68 $ -1.9483 31.2486 51.7468 -Georgia_Bold.ttf 83 & 44.6379 42.8561 69 € 0.2579 41.2868 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 70 / -1.5589 24.9408 55.3288 -Georgia_Bold.ttf 83 & 44.6379 42.8561 71 C -0.2309 39.1489 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 72 * -0.0264 23.6397 21.2290 -Georgia_Bold.ttf 83 & 44.6379 42.8561 73 ” -1.4707 25.5049 20.0578 -Georgia_Bold.ttf 83 & 44.6379 42.8561 74 ? 0.0627 26.4727 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 75 { -1.8200 25.1716 52.5609 -Georgia_Bold.ttf 83 & 44.6379 42.8561 76 } -1.4864 25.1716 52.5609 -Georgia_Bold.ttf 83 & 44.6379 42.8561 77 , 32.3011 11.5049 20.7483 -Georgia_Bold.ttf 83 & 44.6379 42.8561 78 I 1.4252 21.7342 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 79 ° -0.4277 19.4471 18.8830 -Georgia_Bold.ttf 83 & 44.6379 42.8561 80 K 1.4139 47.4699 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 81 H 0.9774 49.0437 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 82 q 11.1644 36.1968 43.1940 -Georgia_Bold.ttf 83 & 44.6379 42.8561 83 & 0.3893 44.6379 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 84 ’ -1.4128 11.5049 20.0578 -Georgia_Bold.ttf 83 & 44.6379 42.8561 85 [ -1.5600 18.8830 52.5609 -Georgia_Bold.ttf 83 & 44.6379 42.8561 86 - 23.3242 17.3319 6.3078 -Georgia_Bold.ttf 83 & 44.6379 42.8561 87 Y 1.3661 46.5865 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 88 Q -0.0772 43.5511 53.5241 -Georgia_Bold.ttf 83 & 44.6379 42.8561 89 " -1.3531 23.0291 20.0578 -Georgia_Bold.ttf 83 & 44.6379 42.8561 90 ! -0.3358 10.9408 42.8561 -Georgia_Bold.ttf 83 & 44.6379 42.8561 91 x 13.7832 34.3078 28.0000 -Georgia_Bold.ttf 83 & 44.6379 42.8561 92 ) -1.9588 20.7483 52.5609 -Georgia_Bold.ttf 83 & 44.6379 42.8561 93 = 16.8836 30.3879 16.2451 -Georgia_Bold.ttf 83 & 44.6379 42.8561 94 + 9.2979 31.9572 31.9572 -Georgia_Bold.ttf 83 & 44.6379 42.8561 95 X 1.3780 47.1138 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 96 » 13.1107 28.0000 25.5049 -Georgia_Bold.ttf 83 & 44.6379 42.8561 97 ' -1.7250 9.3670 20.0578 -Georgia_Bold.ttf 83 & 44.6379 42.8561 98 ¢ 5.3638 29.6975 45.0592 -Georgia_Bold.ttf 83 & 44.6379 42.8561 99 Z 1.3337 40.1348 40.4681 -Georgia_Bold.ttf 83 & 44.6379 42.8561 100 > 9.1657 28.2500 32.5259 -Georgia_Bold.ttf 83 & 44.6379 42.8561 101 ® -0.7073 50.4457 50.4457 -Georgia_Bold.ttf 83 & 44.6379 42.8561 102 © -0.3618 50.4457 50.4457 -Georgia_Bold.ttf 83 & 44.6379 42.8561 103 ] -1.3257 18.8830 52.5609 -Georgia_Bold.ttf 83 & 44.6379 42.8561 104 é -2.6151 30.1152 45.5819 -Georgia_Bold.ttf 83 & 44.6379 42.8561 105 z 13.7476 28.0000 28.0000 -Georgia_Bold.ttf 83 & 44.6379 42.8561 106 _ 46.9899 41.0560 2.7259 -Georgia_Bold.ttf 83 & 44.6379 42.8561 107 ¥ 0.9926 44.1379 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 1 t 6.7244 22.8029 37.7468 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 2 h -1.1841 38.3109 44.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 3 a 14.0468 31.8795 30.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 4 n 13.9175 38.5434 29.1940 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 5 P 3.0095 37.4968 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 6 o 14.0847 32.6103 30.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 7 e 14.2470 30.1152 30.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 8 : 15.0985 11.2741 29.1940 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 9 r 13.7244 29.1940 29.1940 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 10 l -1.2214 18.7339 44.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 11 i -1.7790 18.7339 44.8687 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 12 1 11.4793 23.6397 31.6891 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 13 | -1.2887 4.6330 56.5227 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 14 N 2.7556 47.1785 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 15 f -1.0216 28.2500 44.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 16 g 13.7125 32.5497 42.0000 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 17 d -1.3196 36.4457 45.5819 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 18 W 2.4275 68.0276 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 19 s 14.0570 25.8621 30.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 20 c 14.4114 28.9212 30.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 21 u 13.9903 38.2100 30.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 22 3 11.5011 32.5259 42.2500 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 23 ~ 20.4953 32.5497 12.2181 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 24 # 6.5598 32.2532 36.4457 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 25 O 1.3321 43.5511 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 26 ` -1.1024 15.1940 12.8060 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 27 @ 3.9115 47.4709 48.6411 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 28 F 2.6933 35.9650 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 29 S 1.2042 33.7437 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 30 p 13.9615 35.8397 42.0000 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 31 “ -0.0931 25.5049 20.0578 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 32 % 1.7055 46.1460 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 33 £ 1.5403 33.4471 41.6621 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 34 . 33.1606 11.2741 11.2741 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 35 2 11.2888 30.6653 31.6891 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 36 5 11.5931 31.3319 42.2500 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 37 m 13.8002 57.1474 29.1940 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 38 V 2.6517 47.4471 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 39 6 1.6152 32.2997 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 40 w 15.1940 50.4457 28.0000 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 41 T 2.6259 38.0802 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 42 M 2.5441 56.5455 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 43 G 1.5416 45.5865 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 44 b -1.0743 35.7325 45.9198 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 45 9 11.5711 32.6330 42.3571 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 46 ; 15.3636 11.5049 39.3813 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 47 D 2.5611 44.3879 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 48 L 2.8514 38.0196 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 49 y 15.2741 35.2710 40.8060 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 50 ‘ -0.0038 11.5049 20.0578 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 51 \ 0.0462 24.9408 55.3288 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 52 R 2.7259 46.2759 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 53 < 10.8046 28.2500 32.5259 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 54 4 11.5434 34.6684 42.2500 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 55 8 1.5389 33.3865 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 56 0 11.5850 34.6876 32.8830 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 57 A 2.5248 46.9902 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 58 E 2.5683 38.6908 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 59 B 3.0348 40.1348 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 60 v 15.2681 35.5017 28.0000 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 61 k -1.0628 37.9968 44.3879 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 62 J 2.7380 33.3235 41.6621 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 63 U 2.8546 46.9856 41.6621 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 64 j -1.7581 22.1730 57.6747 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 65 ( 0.0742 20.7483 52.5609 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 66 7 12.8278 30.0308 41.0560 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 67 § 1.6093 26.2192 48.4103 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 68 $ -0.4202 31.2486 51.7468 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 69 € 1.7145 41.2868 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 70 / -0.1301 24.9408 55.3288 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 71 C 1.5991 39.1489 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 72 * 1.6158 23.6397 21.2290 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 73 ” -0.0129 25.5049 20.0578 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 74 ? 1.4133 26.4727 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 75 { 0.0000 25.1716 52.5609 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 76 } 0.0006 25.1716 52.5609 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 77 , 33.8257 11.5049 20.7483 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 78 I 2.6401 21.7342 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 79 ° 1.9174 19.4471 18.8830 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 80 K 2.8227 47.4699 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 81 H 2.7143 49.0437 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 82 q 13.1112 36.1968 43.1940 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 83 & 1.4493 44.6379 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 84 ’ 0.0669 11.5049 20.0578 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 85 [ 0.1667 18.8830 52.5609 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 86 - 24.6481 17.3319 6.3078 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 87 Y 2.7175 46.5865 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 88 Q 1.3732 43.5511 53.5241 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 89 " 0.2094 23.0291 20.0578 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 90 ! 1.7015 10.9408 42.8561 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 91 x 15.3905 34.3078 28.0000 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 92 ) -0.0909 20.7483 52.5609 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 93 = 18.5852 30.3879 16.2451 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 94 + 10.9656 31.9572 31.9572 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 95 X 2.6035 47.1138 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 96 » 14.6866 28.0000 25.5049 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 97 ' -0.0909 9.3670 20.0578 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 98 ¢ 6.4603 29.6975 45.0592 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 99 Z 2.4653 40.1348 40.4681 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 100 > 10.3976 28.2500 32.5259 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 101 ® 1.0055 50.4457 50.4457 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 102 © 1.2612 50.4457 50.4457 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 103 ] -0.1658 18.8830 52.5609 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 104 é -1.3077 30.1152 45.5819 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 105 z 15.2969 28.0000 28.0000 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 106 _ 48.2980 41.0560 2.7259 -Georgia_Bold.ttf 84 ’ 11.5049 20.0578 107 ¥ 2.8802 44.1379 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 1 t 6.5276 22.8029 37.7468 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 2 h -1.2714 38.3109 44.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 3 a 13.8430 31.8795 30.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 4 n 13.9990 38.5434 29.1940 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 5 P 2.6419 37.4968 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 6 o 13.9924 32.6103 30.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 7 e 13.7432 30.1152 30.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 8 : 15.2682 11.2741 29.1940 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 9 r 13.9188 29.1940 29.1940 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 10 l -1.1184 18.7339 44.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 11 i -1.7279 18.7339 44.8687 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 12 1 11.4928 23.6397 31.6891 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 13 | -0.7925 4.6330 56.5227 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 14 N 2.5656 47.1785 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 15 f -1.3591 28.2500 44.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 16 g 14.0095 32.5497 42.0000 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 17 d -1.2811 36.4457 45.5819 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 18 W 2.4418 68.0276 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 19 s 14.0167 25.8621 30.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 20 c 13.8352 28.9212 30.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 21 u 14.0833 38.2100 30.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 22 3 11.4184 32.5259 42.2500 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 23 ~ 20.5561 32.5497 12.2181 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 24 # 6.5899 32.2532 36.4457 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 25 O 1.5271 43.5511 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 26 ` -1.4074 15.1940 12.8060 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 27 @ 3.8397 47.4709 48.6411 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 28 F 2.7245 35.9650 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 29 S 1.5311 33.7437 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 30 p 14.0000 35.8397 42.0000 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 31 “ 0.0742 25.5049 20.0578 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 32 % 1.3499 46.1460 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 33 £ 1.4518 33.4471 41.6621 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 34 . 33.0861 11.2741 11.2741 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 35 2 11.4543 30.6653 31.6891 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 36 5 11.4398 31.3319 42.2500 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 37 m 14.0455 57.1474 29.1940 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 38 V 2.7903 47.4471 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 39 6 1.4224 32.2997 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 40 w 15.1501 50.4457 28.0000 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 41 T 2.8863 38.0802 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 42 M 2.9382 56.5455 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 43 G 1.6168 45.5865 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 44 b -1.3233 35.7325 45.9198 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 45 9 11.6617 32.6330 42.3571 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 46 ; 15.0865 11.5049 39.3813 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 47 D 2.8032 44.3879 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 48 L 2.7350 38.0196 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 49 y 15.0386 35.2710 40.8060 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 50 ‘ -0.0385 11.5049 20.0578 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 51 \ -0.0450 24.9408 55.3288 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 52 R 2.9872 46.2759 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 53 < 10.5847 28.2500 32.5259 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 54 4 11.2307 34.6684 42.2500 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 55 8 1.4087 33.3865 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 56 0 11.5017 34.6876 32.8830 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 57 A 2.2949 46.9902 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 58 E 2.7393 38.6908 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 59 B 2.7299 40.1348 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 60 v 15.1722 35.5017 28.0000 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 61 k -0.9222 37.9968 44.3879 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 62 J 2.8630 33.3235 41.6621 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 63 U 2.6804 46.9856 41.6621 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 64 j -1.8860 22.1730 57.6747 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 65 ( 0.0825 20.7483 52.5609 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 66 7 12.7790 30.0308 41.0560 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 67 § 1.5708 26.2192 48.4103 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 68 $ -0.5183 31.2486 51.7468 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 69 € 1.3805 41.2868 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 70 / -0.0065 24.9408 55.3288 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 71 C 1.1442 39.1489 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 72 * 1.5123 23.6397 21.2290 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 73 ” -0.0871 25.5049 20.0578 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 74 ? 1.2595 26.4727 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 75 { -0.1000 25.1716 52.5609 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 76 } -0.0476 25.1716 52.5609 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 77 , 33.6272 11.5049 20.7483 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 78 I 2.7584 21.7342 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 79 ° 1.7335 19.4471 18.8830 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 80 K 2.6874 47.4699 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 81 H 2.6694 49.0437 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 82 q 12.7759 36.1968 43.1940 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 83 & 1.6703 44.6379 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 84 ’ -0.0911 11.5049 20.0578 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 85 [ -0.1221 18.8830 52.5609 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 86 - 24.5970 17.3319 6.3078 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 87 Y 2.7707 46.5865 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 88 Q 1.5896 43.5511 53.5241 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 89 " -0.1326 23.0291 20.0578 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 90 ! 1.6696 10.9408 42.8561 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 91 x 15.0926 34.3078 28.0000 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 92 ) -0.0223 20.7483 52.5609 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 93 = 18.9268 30.3879 16.2451 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 94 + 11.0300 31.9572 31.9572 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 95 X 2.7650 47.1138 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 96 » 14.9901 28.0000 25.5049 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 97 ' -0.4944 9.3670 20.0578 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 98 ¢ 6.7988 29.6975 45.0592 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 99 Z 2.8213 40.1348 40.4681 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 100 > 10.6437 28.2500 32.5259 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 101 ® 1.2908 50.4457 50.4457 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 102 © 1.1174 50.4457 50.4457 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 103 ] -0.0876 18.8830 52.5609 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 104 é -1.1517 30.1152 45.5819 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 105 z 15.2940 28.0000 28.0000 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 106 _ 48.4026 41.0560 2.7259 -Georgia_Bold.ttf 85 [ 18.8830 52.5609 107 ¥ 2.8259 44.1379 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 1 t -18.0728 22.8029 37.7468 -Georgia_Bold.ttf 86 - 17.3319 6.3078 2 h -25.7861 38.3109 44.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 3 a -10.6518 31.8795 30.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 4 n -10.4744 38.5434 29.1940 -Georgia_Bold.ttf 86 - 17.3319 6.3078 5 P -21.8410 37.4968 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 6 o -10.5564 32.6103 30.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 7 e -10.6118 30.1152 30.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 8 : -9.2715 11.2741 29.1940 -Georgia_Bold.ttf 86 - 17.3319 6.3078 9 r -10.5346 29.1940 29.1940 -Georgia_Bold.ttf 86 - 17.3319 6.3078 10 l -25.6748 18.7339 44.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 11 i -26.3661 18.7339 44.8687 -Georgia_Bold.ttf 86 - 17.3319 6.3078 12 1 -12.8842 23.6397 31.6891 -Georgia_Bold.ttf 86 - 17.3319 6.3078 13 | -25.8708 4.6330 56.5227 -Georgia_Bold.ttf 86 - 17.3319 6.3078 14 N -21.7994 47.1785 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 15 f -25.5173 28.2500 44.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 16 g -10.1719 32.5497 42.0000 -Georgia_Bold.ttf 86 - 17.3319 6.3078 17 d -25.4912 36.4457 45.5819 -Georgia_Bold.ttf 86 - 17.3319 6.3078 18 W -21.9935 68.0276 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 19 s -10.6449 25.8621 30.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 20 c -10.6508 28.9212 30.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 21 u -10.4679 38.2100 30.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 22 3 -12.9683 32.5259 42.2500 -Georgia_Bold.ttf 86 - 17.3319 6.3078 23 ~ -4.0883 32.5497 12.2181 -Georgia_Bold.ttf 86 - 17.3319 6.3078 24 # -17.9729 32.2532 36.4457 -Georgia_Bold.ttf 86 - 17.3319 6.3078 25 O -22.9836 43.5511 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 26 ` -25.9781 15.1940 12.8060 -Georgia_Bold.ttf 86 - 17.3319 6.3078 27 @ -20.9500 47.4709 48.6411 -Georgia_Bold.ttf 86 - 17.3319 6.3078 28 F -21.9305 35.9650 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 29 S -23.0239 33.7437 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 30 p -10.6859 35.8397 42.0000 -Georgia_Bold.ttf 86 - 17.3319 6.3078 31 “ -24.6731 25.5049 20.0578 -Georgia_Bold.ttf 86 - 17.3319 6.3078 32 % -23.1770 46.1460 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 33 £ -22.9623 33.4471 41.6621 -Georgia_Bold.ttf 86 - 17.3319 6.3078 34 . 8.7631 11.2741 11.2741 -Georgia_Bold.ttf 86 - 17.3319 6.3078 35 2 -13.0469 30.6653 31.6891 -Georgia_Bold.ttf 86 - 17.3319 6.3078 36 5 -12.8493 31.3319 42.2500 -Georgia_Bold.ttf 86 - 17.3319 6.3078 37 m -10.4483 57.1474 29.1940 -Georgia_Bold.ttf 86 - 17.3319 6.3078 38 V -21.5251 47.4471 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 39 6 -22.8465 32.2997 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 40 w -9.2441 50.4457 28.0000 -Georgia_Bold.ttf 86 - 17.3319 6.3078 41 T -22.0023 38.0802 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 42 M -21.5014 56.5455 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 43 G -22.9483 45.5865 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 44 b -25.6204 35.7325 45.9198 -Georgia_Bold.ttf 86 - 17.3319 6.3078 45 9 -13.0571 32.6330 42.3571 -Georgia_Bold.ttf 86 - 17.3319 6.3078 46 ; -9.5793 11.5049 39.3813 -Georgia_Bold.ttf 86 - 17.3319 6.3078 47 D -21.8389 44.3879 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 48 L -21.9260 38.0196 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 49 y -9.4063 35.2710 40.8060 -Georgia_Bold.ttf 86 - 17.3319 6.3078 50 ‘ -24.7397 11.5049 20.0578 -Georgia_Bold.ttf 86 - 17.3319 6.3078 51 \ -24.4738 24.9408 55.3288 -Georgia_Bold.ttf 86 - 17.3319 6.3078 52 R -21.8351 46.2759 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 53 < -13.9119 28.2500 32.5259 -Georgia_Bold.ttf 86 - 17.3319 6.3078 54 4 -12.9727 34.6684 42.2500 -Georgia_Bold.ttf 86 - 17.3319 6.3078 55 8 -23.1137 33.3865 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 56 0 -13.0469 34.6876 32.8830 -Georgia_Bold.ttf 86 - 17.3319 6.3078 57 A -21.9351 46.9902 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 58 E -21.5974 38.6908 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 59 B -21.9195 40.1348 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 60 v -9.3298 35.5017 28.0000 -Georgia_Bold.ttf 86 - 17.3319 6.3078 61 k -25.6705 37.9968 44.3879 -Georgia_Bold.ttf 86 - 17.3319 6.3078 62 J -21.6850 33.3235 41.6621 -Georgia_Bold.ttf 86 - 17.3319 6.3078 63 U -21.7434 46.9856 41.6621 -Georgia_Bold.ttf 86 - 17.3319 6.3078 64 j -26.3099 22.1730 57.6747 -Georgia_Bold.ttf 86 - 17.3319 6.3078 65 ( -24.4627 20.7483 52.5609 -Georgia_Bold.ttf 86 - 17.3319 6.3078 66 7 -11.9069 30.0308 41.0560 -Georgia_Bold.ttf 86 - 17.3319 6.3078 67 § -23.2393 26.2192 48.4103 -Georgia_Bold.ttf 86 - 17.3319 6.3078 68 $ -25.3234 31.2486 51.7468 -Georgia_Bold.ttf 86 - 17.3319 6.3078 69 € -23.1054 41.2868 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 70 / -24.7010 24.9408 55.3288 -Georgia_Bold.ttf 86 - 17.3319 6.3078 71 C -22.8626 39.1489 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 72 * -23.1624 23.6397 21.2290 -Georgia_Bold.ttf 86 - 17.3319 6.3078 73 ” -24.6731 25.5049 20.0578 -Georgia_Bold.ttf 86 - 17.3319 6.3078 74 ? -23.1116 26.4727 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 75 { -24.6443 25.1716 52.5609 -Georgia_Bold.ttf 86 - 17.3319 6.3078 76 } -24.3919 25.1716 52.5609 -Georgia_Bold.ttf 86 - 17.3319 6.3078 77 , 9.5339 11.5049 20.7483 -Georgia_Bold.ttf 86 - 17.3319 6.3078 78 I -21.7017 21.7342 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 79 ° -22.7672 19.4471 18.8830 -Georgia_Bold.ttf 86 - 17.3319 6.3078 80 K -21.9532 47.4699 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 81 H -21.8041 49.0437 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 82 q -11.6737 36.1968 43.1940 -Georgia_Bold.ttf 86 - 17.3319 6.3078 83 & -23.1694 44.6379 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 84 ’ -24.7607 11.5049 20.0578 -Georgia_Bold.ttf 86 - 17.3319 6.3078 85 [ -24.5586 18.8830 52.5609 -Georgia_Bold.ttf 86 - 17.3319 6.3078 86 - 0.0027 17.3319 6.3078 -Georgia_Bold.ttf 86 - 17.3319 6.3078 87 Y -21.7550 46.5865 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 88 Q -22.9693 43.5511 53.5241 -Georgia_Bold.ttf 86 - 17.3319 6.3078 89 " -24.6449 23.0291 20.0578 -Georgia_Bold.ttf 86 - 17.3319 6.3078 90 ! -23.0269 10.9408 42.8561 -Georgia_Bold.ttf 86 - 17.3319 6.3078 91 x -9.5213 34.3078 28.0000 -Georgia_Bold.ttf 86 - 17.3319 6.3078 92 ) -24.1950 20.7483 52.5609 -Georgia_Bold.ttf 86 - 17.3319 6.3078 93 = -5.5585 30.3879 16.2451 -Georgia_Bold.ttf 86 - 17.3319 6.3078 94 + -13.6505 31.9572 31.9572 -Georgia_Bold.ttf 86 - 17.3319 6.3078 95 X -21.8813 47.1138 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 96 » -9.6136 28.0000 25.5049 -Georgia_Bold.ttf 86 - 17.3319 6.3078 97 ' -24.2130 9.3670 20.0578 -Georgia_Bold.ttf 86 - 17.3319 6.3078 98 ¢ -17.6839 29.6975 45.0592 -Georgia_Bold.ttf 86 - 17.3319 6.3078 99 Z -21.8606 40.1348 40.4681 -Georgia_Bold.ttf 86 - 17.3319 6.3078 100 > -13.9778 28.2500 32.5259 -Georgia_Bold.ttf 86 - 17.3319 6.3078 101 ® -23.4912 50.4457 50.4457 -Georgia_Bold.ttf 86 - 17.3319 6.3078 102 © -23.2202 50.4457 50.4457 -Georgia_Bold.ttf 86 - 17.3319 6.3078 103 ] -24.3784 18.8830 52.5609 -Georgia_Bold.ttf 86 - 17.3319 6.3078 104 é -25.8987 30.1152 45.5819 -Georgia_Bold.ttf 86 - 17.3319 6.3078 105 z -9.4936 28.0000 28.0000 -Georgia_Bold.ttf 86 - 17.3319 6.3078 106 _ 23.7853 41.0560 2.7259 -Georgia_Bold.ttf 86 - 17.3319 6.3078 107 ¥ -22.1805 44.1379 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 1 t 3.8379 22.8029 37.7468 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 2 h -3.8531 38.3109 44.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 3 a 11.4890 31.8795 30.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 4 n 11.2266 38.5434 29.1940 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 5 P -0.0307 37.4968 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 6 o 11.3204 32.6103 30.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 7 e 11.4173 30.1152 30.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 8 : 12.1646 11.2741 29.1940 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 9 r 11.2045 29.1940 29.1940 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 10 l -4.0142 18.7339 44.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 11 i -4.1724 18.7339 44.8687 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 12 1 8.5581 23.6397 31.6891 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 13 | -3.7827 4.6330 56.5227 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 14 N 0.1046 47.1785 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 15 f -3.7260 28.2500 44.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 16 g 11.0926 32.5497 42.0000 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 17 d -4.1798 36.4457 45.5819 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 18 W -0.1291 68.0276 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 19 s 11.3844 25.8621 30.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 20 c 11.1189 28.9212 30.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 21 u 11.0538 38.2100 30.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 22 3 8.9032 32.5259 42.2500 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 23 ~ 17.9366 32.5497 12.2181 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 24 # 3.9858 32.2532 36.4457 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 25 O -1.0708 43.5511 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 26 ` -4.0483 15.1940 12.8060 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 27 @ 1.1813 47.4709 48.6411 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 28 F 0.0030 35.9650 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 29 S -1.0155 33.7437 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 30 p 11.1954 35.8397 42.0000 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 31 “ -3.0023 25.5049 20.0578 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 32 % -1.3136 46.1460 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 33 £ -1.1470 33.4471 41.6621 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 34 . 30.3820 11.2741 11.2741 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 35 2 8.9774 30.6653 31.6891 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 36 5 8.6294 31.3319 42.2500 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 37 m 11.4817 57.1474 29.1940 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 38 V -0.1027 47.4471 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 39 6 -1.3991 32.2997 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 40 w 12.7248 50.4457 28.0000 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 41 T 0.1186 38.0802 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 42 M -0.1803 56.5455 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 43 G -1.1175 45.5865 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 44 b -4.0013 35.7325 45.9198 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 45 9 8.8135 32.6330 42.3571 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 46 ; 12.2652 11.5049 39.3813 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 47 D 0.1060 44.3879 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 48 L -0.0379 38.0196 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 49 y 12.6830 35.2710 40.8060 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 50 ‘ -2.6953 11.5049 20.0578 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 51 \ -2.8091 24.9408 55.3288 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 52 R -0.0167 46.2759 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 53 < 7.9530 28.2500 32.5259 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 54 4 9.0360 34.6684 42.2500 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 55 8 -1.1902 33.3865 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 56 0 8.9306 34.6876 32.8830 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 57 A 0.0406 46.9902 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 58 E -0.0938 38.6908 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 59 B 0.1081 40.1348 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 60 v 12.6654 35.5017 28.0000 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 61 k -3.8327 37.9968 44.3879 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 62 J 0.0326 33.3235 41.6621 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 63 U -0.2901 46.9856 41.6621 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 64 j -4.6834 22.1730 57.6747 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 65 ( -2.8216 20.7483 52.5609 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 66 7 9.6967 30.0308 41.0560 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 67 § -1.1736 26.2192 48.4103 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 68 $ -3.2280 31.2486 51.7468 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 69 € -1.0235 41.2868 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 70 / -2.6484 24.9408 55.3288 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 71 C -1.1122 39.1489 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 72 * -0.7647 23.6397 21.2290 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 73 ” -2.5699 25.5049 20.0578 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 74 ? -1.3735 26.4727 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 75 { -2.5759 25.1716 52.5609 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 76 } -2.6593 25.1716 52.5609 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 77 , 31.1581 11.5049 20.7483 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 78 I -0.0623 21.7342 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 79 ° -1.2394 19.4471 18.8830 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 80 K -0.1756 47.4699 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 81 H -0.4186 49.0437 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 82 q 10.2192 36.1968 43.1940 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 83 & -1.3681 44.6379 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 84 ’ -2.9092 11.5049 20.0578 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 85 [ -2.7207 18.8830 52.5609 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 86 - 22.0410 17.3319 6.3078 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 87 Y 0.0753 46.5865 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 88 Q -1.1176 43.5511 53.5241 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 89 " -2.7582 23.0291 20.0578 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 90 ! -1.0870 10.9408 42.8561 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 91 x 12.6854 34.3078 28.0000 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 92 ) -2.5154 20.7483 52.5609 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 93 = 15.7166 30.3879 16.2451 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 94 + 8.1415 31.9572 31.9572 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 95 X -0.2006 47.1138 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 96 » 12.2754 28.0000 25.5049 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 97 ' -2.9195 9.3670 20.0578 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 98 ¢ 4.0015 29.6975 45.0592 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 99 Z -0.0356 40.1348 40.4681 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 100 > 8.0206 28.2500 32.5259 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 101 ® -1.3198 50.4457 50.4457 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 102 © -1.3882 50.4457 50.4457 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 103 ] -2.6740 18.8830 52.5609 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 104 é -4.0343 30.1152 45.5819 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 105 z 12.3740 28.0000 28.0000 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 106 _ 45.5773 41.0560 2.7259 -Georgia_Bold.ttf 87 Y 46.5865 40.4681 107 ¥ 0.0395 44.1379 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 1 t 5.0957 22.8029 37.7468 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 2 h -3.0348 38.3109 44.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 3 a 12.8959 31.8795 30.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 4 n 12.4324 38.5434 29.1940 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 5 P 1.2370 37.4968 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 6 o 12.4243 32.6103 30.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 7 e 12.7791 30.1152 30.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 8 : 14.0161 11.2741 29.1940 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 9 r 12.8160 29.1940 29.1940 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 10 l -2.7643 18.7339 44.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 11 i -3.6989 18.7339 44.8687 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 12 1 10.0421 23.6397 31.6891 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 13 | -3.0941 4.6330 56.5227 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 14 N 1.1953 47.1785 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 15 f -2.4340 28.2500 44.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 16 g 12.5876 32.5497 42.0000 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 17 d -2.9566 36.4457 45.5819 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 18 W 1.2273 68.0276 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 19 s 12.3842 25.8621 30.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 20 c 12.6314 28.9212 30.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 21 u 12.5282 38.2100 30.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 22 3 10.0021 32.5259 42.2500 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 23 ~ 19.5782 32.5497 12.2181 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 24 # 5.2070 32.2532 36.4457 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 25 O -0.0476 43.5511 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 26 ` -2.8160 15.1940 12.8060 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 27 @ 2.0576 47.4709 48.6411 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 28 F 1.3279 35.9650 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 29 S -0.1084 33.7437 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 30 p 12.3281 35.8397 42.0000 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 31 “ -1.8252 25.5049 20.0578 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 32 % 0.2399 46.1460 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 33 £ -0.2706 33.4471 41.6621 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 34 . 31.5200 11.2741 11.2741 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 35 2 10.0007 30.6653 31.6891 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 36 5 9.9338 31.3319 42.2500 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 37 m 12.5090 57.1474 29.1940 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 38 V 1.1908 47.4471 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 39 6 0.0939 32.2997 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 40 w 13.3906 50.4457 28.0000 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 41 T 0.9821 38.0802 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 42 M 1.1456 56.5455 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 43 G 0.3599 45.5865 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 44 b -3.0369 35.7325 45.9198 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 45 9 10.0375 32.6330 42.3571 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 46 ; 13.4175 11.5049 39.3813 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 47 D 1.4503 44.3879 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 48 L 0.9753 38.0196 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 49 y 13.7901 35.2710 40.8060 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 50 ‘ -1.5245 11.5049 20.0578 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 51 \ -1.4898 24.9408 55.3288 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 52 R 1.2542 46.2759 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 53 < 9.1356 28.2500 32.5259 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 54 4 9.9133 34.6684 42.2500 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 55 8 -0.0258 33.3865 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 56 0 9.8891 34.6876 32.8830 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 57 A 1.0679 46.9902 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 58 E 0.9955 38.6908 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 59 B 0.8663 40.1348 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 60 v 13.4949 35.5017 28.0000 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 61 k -2.7411 37.9968 44.3879 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 62 J 1.0897 33.3235 41.6621 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 63 U 1.1209 46.9856 41.6621 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 64 j -3.2220 22.1730 57.6747 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 65 ( -1.3260 20.7483 52.5609 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 66 7 11.0724 30.0308 41.0560 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 67 § 0.0930 26.2192 48.4103 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 68 $ -2.1617 31.2486 51.7468 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 69 € -0.0575 41.2868 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 70 / -1.4247 24.9408 55.3288 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 71 C 0.1613 39.1489 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 72 * 0.1178 23.6397 21.2290 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 73 ” -1.4180 25.5049 20.0578 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 74 ? -0.1280 26.4727 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 75 { -1.1632 25.1716 52.5609 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 76 } -1.4424 25.1716 52.5609 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 77 , 32.3457 11.5049 20.7483 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 78 I 1.2604 21.7342 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 79 ° -0.1785 19.4471 18.8830 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 80 K 1.0203 47.4699 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 81 H 0.9714 49.0437 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 82 q 11.1954 36.1968 43.1940 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 83 & -0.2728 44.6379 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 84 ’ -1.0991 11.5049 20.0578 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 85 [ -1.4036 18.8830 52.5609 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 86 - 22.9531 17.3319 6.3078 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 87 Y 1.0009 46.5865 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 88 Q 0.1113 43.5511 53.5241 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 89 " -1.9116 23.0291 20.0578 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 90 ! 0.3618 10.9408 42.8561 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 91 x 13.4991 34.3078 28.0000 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 92 ) -1.6023 20.7483 52.5609 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 93 = 17.6091 30.3879 16.2451 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 94 + 9.4890 31.9572 31.9572 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 95 X 1.3868 47.1138 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 96 » 13.0514 28.0000 25.5049 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 97 ' -1.4759 9.3670 20.0578 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 98 ¢ 5.2777 29.6975 45.0592 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 99 Z 1.1374 40.1348 40.4681 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 100 > 9.0916 28.2500 32.5259 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 101 ® -0.1623 50.4457 50.4457 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 102 © -0.5038 50.4457 50.4457 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 103 ] -1.6123 18.8830 52.5609 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 104 é -3.0737 30.1152 45.5819 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 105 z 13.3994 28.0000 28.0000 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 106 _ 46.6396 41.0560 2.7259 -Georgia_Bold.ttf 88 Q 43.5511 53.5241 107 ¥ 1.2286 44.1379 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 1 t 6.5149 22.8029 37.7468 -Georgia_Bold.ttf 89 " 23.0291 20.0578 2 h -1.1576 38.3109 44.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 3 a 13.9013 31.8795 30.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 4 n 14.1551 38.5434 29.1940 -Georgia_Bold.ttf 89 " 23.0291 20.0578 5 P 2.9009 37.4968 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 6 o 13.6344 32.6103 30.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 7 e 14.0560 30.1152 30.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 8 : 15.1448 11.2741 29.1940 -Georgia_Bold.ttf 89 " 23.0291 20.0578 9 r 14.2710 29.1940 29.1940 -Georgia_Bold.ttf 89 " 23.0291 20.0578 10 l -1.2131 18.7339 44.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 11 i -1.4946 18.7339 44.8687 -Georgia_Bold.ttf 89 " 23.0291 20.0578 12 1 11.4318 23.6397 31.6891 -Georgia_Bold.ttf 89 " 23.0291 20.0578 13 | -1.1170 4.6330 56.5227 -Georgia_Bold.ttf 89 " 23.0291 20.0578 14 N 2.5866 47.1785 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 15 f -1.1120 28.2500 44.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 16 g 13.9159 32.5497 42.0000 -Georgia_Bold.ttf 89 " 23.0291 20.0578 17 d -1.3910 36.4457 45.5819 -Georgia_Bold.ttf 89 " 23.0291 20.0578 18 W 2.9453 68.0276 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 19 s 14.0121 25.8621 30.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 20 c 14.0941 28.9212 30.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 21 u 14.0379 38.2100 30.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 22 3 11.5888 32.5259 42.2500 -Georgia_Bold.ttf 89 " 23.0291 20.0578 23 ~ 20.8316 32.5497 12.2181 -Georgia_Bold.ttf 89 " 23.0291 20.0578 24 # 6.7891 32.2532 36.4457 -Georgia_Bold.ttf 89 " 23.0291 20.0578 25 O 1.5652 43.5511 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 26 ` -1.2249 15.1940 12.8060 -Georgia_Bold.ttf 89 " 23.0291 20.0578 27 @ 4.1857 47.4709 48.6411 -Georgia_Bold.ttf 89 " 23.0291 20.0578 28 F 2.9267 35.9650 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 29 S 1.5639 33.7437 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 30 p 14.0516 35.8397 42.0000 -Georgia_Bold.ttf 89 " 23.0291 20.0578 31 “ -0.1696 25.5049 20.0578 -Georgia_Bold.ttf 89 " 23.0291 20.0578 32 % 1.2964 46.1460 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 33 £ 1.4997 33.4471 41.6621 -Georgia_Bold.ttf 89 " 23.0291 20.0578 34 . 33.2046 11.2741 11.2741 -Georgia_Bold.ttf 89 " 23.0291 20.0578 35 2 11.5466 30.6653 31.6891 -Georgia_Bold.ttf 89 " 23.0291 20.0578 36 5 11.5466 31.3319 42.2500 -Georgia_Bold.ttf 89 " 23.0291 20.0578 37 m 14.2710 57.1474 29.1940 -Georgia_Bold.ttf 89 " 23.0291 20.0578 38 V 2.8046 47.4471 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 39 6 1.5200 32.2997 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 40 w 15.3060 50.4457 28.0000 -Georgia_Bold.ttf 89 " 23.0291 20.0578 41 T 2.9367 38.0802 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 42 M 2.5822 56.5455 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 43 G 1.5985 45.5865 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 44 b -1.1842 35.7325 45.9198 -Georgia_Bold.ttf 89 " 23.0291 20.0578 45 9 11.2947 32.6330 42.3571 -Georgia_Bold.ttf 89 " 23.0291 20.0578 46 ; 14.9872 11.5049 39.3813 -Georgia_Bold.ttf 89 " 23.0291 20.0578 47 D 2.7775 44.3879 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 48 L 3.0757 38.0196 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 49 y 15.4067 35.2710 40.8060 -Georgia_Bold.ttf 89 " 23.0291 20.0578 50 ‘ 0.2686 11.5049 20.0578 -Georgia_Bold.ttf 89 " 23.0291 20.0578 51 \ 0.0000 24.9408 55.3288 -Georgia_Bold.ttf 89 " 23.0291 20.0578 52 R 2.6304 46.2759 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 53 < 10.5722 28.2500 32.5259 -Georgia_Bold.ttf 89 " 23.0291 20.0578 54 4 11.7079 34.6684 42.2500 -Georgia_Bold.ttf 89 " 23.0291 20.0578 55 8 1.2547 33.3865 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 56 0 11.4990 34.6876 32.8830 -Georgia_Bold.ttf 89 " 23.0291 20.0578 57 A 2.7476 46.9902 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 58 E 2.5586 38.6908 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 59 B 2.7221 40.1348 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 60 v 14.9851 35.5017 28.0000 -Georgia_Bold.ttf 89 " 23.0291 20.0578 61 k -1.4535 37.9968 44.3879 -Georgia_Bold.ttf 89 " 23.0291 20.0578 62 J 2.9052 33.3235 41.6621 -Georgia_Bold.ttf 89 " 23.0291 20.0578 63 U 2.5764 46.9856 41.6621 -Georgia_Bold.ttf 89 " 23.0291 20.0578 64 j -1.6605 22.1730 57.6747 -Georgia_Bold.ttf 89 " 23.0291 20.0578 65 ( 0.0853 20.7483 52.5609 -Georgia_Bold.ttf 89 " 23.0291 20.0578 66 7 12.8204 30.0308 41.0560 -Georgia_Bold.ttf 89 " 23.0291 20.0578 67 § 1.6894 26.2192 48.4103 -Georgia_Bold.ttf 89 " 23.0291 20.0578 68 $ -0.4202 31.2486 51.7468 -Georgia_Bold.ttf 89 " 23.0291 20.0578 69 € 1.6805 41.2868 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 70 / -0.0900 24.9408 55.3288 -Georgia_Bold.ttf 89 " 23.0291 20.0578 71 C 1.5214 39.1489 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 72 * 1.7016 23.6397 21.2290 -Georgia_Bold.ttf 89 " 23.0291 20.0578 73 ” -0.1858 25.5049 20.0578 -Georgia_Bold.ttf 89 " 23.0291 20.0578 74 ? 1.6872 26.4727 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 75 { 0.2869 25.1716 52.5609 -Georgia_Bold.ttf 89 " 23.0291 20.0578 76 } -0.3309 25.1716 52.5609 -Georgia_Bold.ttf 89 " 23.0291 20.0578 77 , 33.7353 11.5049 20.7483 -Georgia_Bold.ttf 89 " 23.0291 20.0578 78 I 2.8477 21.7342 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 79 ° 1.5228 19.4471 18.8830 -Georgia_Bold.ttf 89 " 23.0291 20.0578 80 K 2.5465 47.4699 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 81 H 2.7651 49.0437 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 82 q 12.8066 36.1968 43.1940 -Georgia_Bold.ttf 89 " 23.0291 20.0578 83 & 1.8072 44.6379 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 84 ’ 0.1124 11.5049 20.0578 -Georgia_Bold.ttf 89 " 23.0291 20.0578 85 [ -0.0417 18.8830 52.5609 -Georgia_Bold.ttf 89 " 23.0291 20.0578 86 - 24.8615 17.3319 6.3078 -Georgia_Bold.ttf 89 " 23.0291 20.0578 87 Y 2.5608 46.5865 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 88 Q 1.4735 43.5511 53.5241 -Georgia_Bold.ttf 89 " 23.0291 20.0578 89 " -0.3261 23.0291 20.0578 -Georgia_Bold.ttf 89 " 23.0291 20.0578 90 ! 1.6238 10.9408 42.8561 -Georgia_Bold.ttf 89 " 23.0291 20.0578 91 x 15.3719 34.3078 28.0000 -Georgia_Bold.ttf 89 " 23.0291 20.0578 92 ) -0.1126 20.7483 52.5609 -Georgia_Bold.ttf 89 " 23.0291 20.0578 93 = 18.7323 30.3879 16.2451 -Georgia_Bold.ttf 89 " 23.0291 20.0578 94 + 10.8709 31.9572 31.9572 -Georgia_Bold.ttf 89 " 23.0291 20.0578 95 X 2.7259 47.1138 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 96 » 14.8699 28.0000 25.5049 -Georgia_Bold.ttf 89 " 23.0291 20.0578 97 ' -0.2432 9.3670 20.0578 -Georgia_Bold.ttf 89 " 23.0291 20.0578 98 ¢ 6.7233 29.6975 45.0592 -Georgia_Bold.ttf 89 " 23.0291 20.0578 99 Z 2.8689 40.1348 40.4681 -Georgia_Bold.ttf 89 " 23.0291 20.0578 100 > 10.6750 28.2500 32.5259 -Georgia_Bold.ttf 89 " 23.0291 20.0578 101 ® 1.2794 50.4457 50.4457 -Georgia_Bold.ttf 89 " 23.0291 20.0578 102 © 0.9859 50.4457 50.4457 -Georgia_Bold.ttf 89 " 23.0291 20.0578 103 ] -0.0976 18.8830 52.5609 -Georgia_Bold.ttf 89 " 23.0291 20.0578 104 é -0.9985 30.1152 45.5819 -Georgia_Bold.ttf 89 " 23.0291 20.0578 105 z 15.1230 28.0000 28.0000 -Georgia_Bold.ttf 89 " 23.0291 20.0578 106 _ 48.2814 41.0560 2.7259 -Georgia_Bold.ttf 89 " 23.0291 20.0578 107 ¥ 2.6212 44.1379 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 1 t 4.9229 22.8029 37.7468 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 2 h -2.6772 38.3109 44.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 3 a 12.4100 31.8795 30.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 4 n 12.3076 38.5434 29.1940 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 5 P 1.1138 37.4968 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 6 o 12.4181 32.6103 30.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 7 e 12.3146 30.1152 30.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 8 : 13.5134 11.2741 29.1940 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 9 r 12.5552 29.1940 29.1940 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 10 l -2.8098 18.7339 44.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 11 i -3.1900 18.7339 44.8687 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 12 1 10.1389 23.6397 31.6891 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 13 | -2.8231 4.6330 56.5227 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 14 N 1.0159 47.1785 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 15 f -2.6105 28.2500 44.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 16 g 12.5507 32.5497 42.0000 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 17 d -2.3966 36.4457 45.5819 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 18 W 1.2824 68.0276 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 19 s 12.4173 25.8621 30.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 20 c 12.4122 28.9212 30.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 21 u 12.4894 38.2100 30.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 22 3 10.0814 32.5259 42.2500 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 23 ~ 19.1473 32.5497 12.2181 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 24 # 5.1989 32.2532 36.4457 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 25 O -0.1710 43.5511 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 26 ` -2.7616 15.1940 12.8060 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 27 @ 2.3001 47.4709 48.6411 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 28 F 0.9518 35.9650 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 29 S 0.4734 33.7437 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 30 p 12.6581 35.8397 42.0000 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 31 “ -1.6120 25.5049 20.0578 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 32 % -0.0782 46.1460 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 33 £ -0.1280 33.4471 41.6621 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 34 . 31.6228 11.2741 11.2741 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 35 2 10.1767 30.6653 31.6891 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 36 5 10.2174 31.3319 42.2500 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 37 m 12.3282 57.1474 29.1940 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 38 V 1.4515 47.4471 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 39 6 -0.2545 32.2997 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 40 w 13.7422 50.4457 28.0000 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 41 T 1.0754 38.0802 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 42 M 1.3983 56.5455 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 43 G -0.1288 45.5865 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 44 b -2.8079 35.7325 45.9198 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 45 9 9.8128 32.6330 42.3571 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 46 ; 13.5387 11.5049 39.3813 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 47 D 1.3636 44.3879 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 48 L 1.2356 38.0196 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 49 y 13.6264 35.2710 40.8060 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 50 ‘ -1.2534 11.5049 20.0578 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 51 \ -1.2724 24.9408 55.3288 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 52 R 1.1940 46.2759 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 53 < 9.1797 28.2500 32.5259 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 54 4 9.8776 34.6684 42.2500 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 55 8 -0.1094 33.3865 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 56 0 10.0927 34.6876 32.8830 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 57 A 1.1797 46.9902 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 58 E 1.5378 38.6908 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 59 B 1.5332 40.1348 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 60 v 13.6010 35.5017 28.0000 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 61 k -2.8046 37.9968 44.3879 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 62 J 1.0138 33.3235 41.6621 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 63 U 1.1128 46.9856 41.6621 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 64 j -3.1969 22.1730 57.6747 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 65 ( -1.3289 20.7483 52.5609 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 66 7 11.4788 30.0308 41.0560 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 67 § -0.0455 26.2192 48.4103 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 68 $ -2.0701 31.2486 51.7468 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 69 € 0.2627 41.2868 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 70 / -1.9368 24.9408 55.3288 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 71 C 0.0560 39.1489 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 72 * 0.0455 23.6397 21.2290 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 73 ” -1.3814 25.5049 20.0578 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 74 ? 0.0422 26.4727 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 75 { -1.5760 25.1716 52.5609 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 76 } -1.7249 25.1716 52.5609 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 77 , 32.0780 11.5049 20.7483 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 78 I 0.9980 21.7342 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 79 ° -0.1903 19.4471 18.8830 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 80 K 1.1708 47.4699 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 81 H 1.2773 49.0437 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 82 q 11.3255 36.1968 43.1940 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 83 & -0.0774 44.6379 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 84 ’ -1.7082 11.5049 20.0578 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 85 [ -1.4920 18.8830 52.5609 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 86 - 22.9291 17.3319 6.3078 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 87 Y 1.3241 46.5865 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 88 Q -0.1371 43.5511 53.5241 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 89 " -1.7338 23.0291 20.0578 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 90 ! -0.0076 10.9408 42.8561 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 91 x 13.7677 34.3078 28.0000 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 92 ) -1.1958 20.7483 52.5609 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 93 = 17.0151 30.3879 16.2451 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 94 + 9.2648 31.9572 31.9572 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 95 X 1.0888 47.1138 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 96 » 13.0630 28.0000 25.5049 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 97 ' -1.6061 9.3670 20.0578 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 98 ¢ 5.4193 29.6975 45.0592 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 99 Z 1.3324 40.1348 40.4681 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 100 > 9.2429 28.2500 32.5259 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 101 ® -0.3046 50.4457 50.4457 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 102 © -0.1371 50.4457 50.4457 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 103 ] -1.3832 18.8830 52.5609 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 104 é -2.6100 30.1152 45.5819 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 105 z 13.4782 28.0000 28.0000 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 106 _ 46.6257 41.0560 2.7259 -Georgia_Bold.ttf 90 ! 10.9408 42.8561 107 ¥ 1.0313 44.1379 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 1 t -8.5384 22.8029 37.7468 -Georgia_Bold.ttf 91 x 34.3078 28.0000 2 h -16.1430 38.3109 44.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 3 a -1.0979 31.8795 30.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 4 n -1.1115 38.5434 29.1940 -Georgia_Bold.ttf 91 x 34.3078 28.0000 5 P -12.4493 37.4968 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 6 o -1.4241 32.6103 30.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 7 e -1.2004 30.1152 30.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 8 : -0.0412 11.2741 29.1940 -Georgia_Bold.ttf 91 x 34.3078 28.0000 9 r -1.1114 29.1940 29.1940 -Georgia_Bold.ttf 91 x 34.3078 28.0000 10 l -16.3431 18.7339 44.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 11 i -16.8579 18.7339 44.8687 -Georgia_Bold.ttf 91 x 34.3078 28.0000 12 1 -3.8300 23.6397 31.6891 -Georgia_Bold.ttf 91 x 34.3078 28.0000 13 | -16.3074 4.6330 56.5227 -Georgia_Bold.ttf 91 x 34.3078 28.0000 14 N -12.4407 47.1785 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 15 f -16.1871 28.2500 44.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 16 g -1.3696 32.5497 42.0000 -Georgia_Bold.ttf 91 x 34.3078 28.0000 17 d -16.3065 36.4457 45.5819 -Georgia_Bold.ttf 91 x 34.3078 28.0000 18 W -12.6520 68.0276 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 19 s -1.1101 25.8621 30.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 20 c -1.3870 28.9212 30.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 21 u -1.2405 38.2100 30.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 22 3 -3.7172 32.5259 42.2500 -Georgia_Bold.ttf 91 x 34.3078 28.0000 23 ~ 5.7293 32.5497 12.2181 -Georgia_Bold.ttf 91 x 34.3078 28.0000 24 # -8.3624 32.2532 36.4457 -Georgia_Bold.ttf 91 x 34.3078 28.0000 25 O -13.4175 43.5511 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 26 ` -15.9070 15.1940 12.8060 -Georgia_Bold.ttf 91 x 34.3078 28.0000 27 @ -11.1799 47.4709 48.6411 -Georgia_Bold.ttf 91 x 34.3078 28.0000 28 F -12.4681 35.9650 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 29 S -13.6796 33.7437 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 30 p -1.3803 35.8397 42.0000 -Georgia_Bold.ttf 91 x 34.3078 28.0000 31 “ -15.0655 25.5049 20.0578 -Georgia_Bold.ttf 91 x 34.3078 28.0000 32 % -13.6005 46.1460 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 33 £ -13.6083 33.4471 41.6621 -Georgia_Bold.ttf 91 x 34.3078 28.0000 34 . 17.4889 11.2741 11.2741 -Georgia_Bold.ttf 91 x 34.3078 28.0000 35 2 -3.6033 30.6653 31.6891 -Georgia_Bold.ttf 91 x 34.3078 28.0000 36 5 -3.6755 31.3319 42.2500 -Georgia_Bold.ttf 91 x 34.3078 28.0000 37 m -1.1397 57.1474 29.1940 -Georgia_Bold.ttf 91 x 34.3078 28.0000 38 V -12.5469 47.4471 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 39 6 -13.6761 32.2997 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 40 w -0.1603 50.4457 28.0000 -Georgia_Bold.ttf 91 x 34.3078 28.0000 41 T -12.0479 38.0802 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 42 M -12.3363 56.5455 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 43 G -13.7500 45.5865 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 44 b -16.0971 35.7325 45.9198 -Georgia_Bold.ttf 91 x 34.3078 28.0000 45 9 -3.8337 32.6330 42.3571 -Georgia_Bold.ttf 91 x 34.3078 28.0000 46 ; 0.0968 11.5049 39.3813 -Georgia_Bold.ttf 91 x 34.3078 28.0000 47 D -12.5449 44.3879 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 48 L -12.5297 38.0196 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 49 y 0.0373 35.2710 40.8060 -Georgia_Bold.ttf 91 x 34.3078 28.0000 50 ‘ -14.9961 11.5049 20.0578 -Georgia_Bold.ttf 91 x 34.3078 28.0000 51 \ -15.2023 24.9408 55.3288 -Georgia_Bold.ttf 91 x 34.3078 28.0000 52 R -12.5000 46.2759 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 53 < -4.6130 28.2500 32.5259 -Georgia_Bold.ttf 91 x 34.3078 28.0000 54 4 -3.6474 34.6684 42.2500 -Georgia_Bold.ttf 91 x 34.3078 28.0000 55 8 -13.5470 33.3865 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 56 0 -3.7066 34.6876 32.8830 -Georgia_Bold.ttf 91 x 34.3078 28.0000 57 A -12.4674 46.9902 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 58 E -12.1035 38.6908 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 59 B -12.1660 40.1348 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 60 v -0.1658 35.5017 28.0000 -Georgia_Bold.ttf 91 x 34.3078 28.0000 61 k -16.6667 37.9968 44.3879 -Georgia_Bold.ttf 91 x 34.3078 28.0000 62 J -12.4584 33.3235 41.6621 -Georgia_Bold.ttf 91 x 34.3078 28.0000 63 U -12.5165 46.9856 41.6621 -Georgia_Bold.ttf 91 x 34.3078 28.0000 64 j -16.7913 22.1730 57.6747 -Georgia_Bold.ttf 91 x 34.3078 28.0000 65 ( -15.2117 20.7483 52.5609 -Georgia_Bold.ttf 91 x 34.3078 28.0000 66 7 -2.2926 30.0308 41.0560 -Georgia_Bold.ttf 91 x 34.3078 28.0000 67 § -13.7355 26.2192 48.4103 -Georgia_Bold.ttf 91 x 34.3078 28.0000 68 $ -15.5659 31.2486 51.7468 -Georgia_Bold.ttf 91 x 34.3078 28.0000 69 € -13.7247 41.2868 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 70 / -15.1153 24.9408 55.3288 -Georgia_Bold.ttf 91 x 34.3078 28.0000 71 C -13.3762 39.1489 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 72 * -13.6691 23.6397 21.2290 -Georgia_Bold.ttf 91 x 34.3078 28.0000 73 ” -15.3507 25.5049 20.0578 -Georgia_Bold.ttf 91 x 34.3078 28.0000 74 ? -13.6637 26.4727 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 75 { -15.1622 25.1716 52.5609 -Georgia_Bold.ttf 91 x 34.3078 28.0000 76 } -15.0006 25.1716 52.5609 -Georgia_Bold.ttf 91 x 34.3078 28.0000 77 , 18.6209 11.5049 20.7483 -Georgia_Bold.ttf 91 x 34.3078 28.0000 78 I -12.2963 21.7342 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 79 ° -13.5952 19.4471 18.8830 -Georgia_Bold.ttf 91 x 34.3078 28.0000 80 K -12.3195 47.4699 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 81 H -12.6859 49.0437 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 82 q -2.4310 36.1968 43.1940 -Georgia_Bold.ttf 91 x 34.3078 28.0000 83 & -13.6092 44.6379 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 84 ’ -14.6329 11.5049 20.0578 -Georgia_Bold.ttf 91 x 34.3078 28.0000 85 [ -15.2585 18.8830 52.5609 -Georgia_Bold.ttf 91 x 34.3078 28.0000 86 - 9.4184 17.3319 6.3078 -Georgia_Bold.ttf 91 x 34.3078 28.0000 87 Y -12.5101 46.5865 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 88 Q -13.5282 43.5511 53.5241 -Georgia_Bold.ttf 91 x 34.3078 28.0000 89 " -15.3681 23.0291 20.0578 -Georgia_Bold.ttf 91 x 34.3078 28.0000 90 ! -13.5698 10.9408 42.8561 -Georgia_Bold.ttf 91 x 34.3078 28.0000 91 x -0.1178 34.3078 28.0000 -Georgia_Bold.ttf 91 x 34.3078 28.0000 92 ) -15.3475 20.7483 52.5609 -Georgia_Bold.ttf 91 x 34.3078 28.0000 93 = 3.3877 30.3879 16.2451 -Georgia_Bold.ttf 91 x 34.3078 28.0000 94 + -4.3035 31.9572 31.9572 -Georgia_Bold.ttf 91 x 34.3078 28.0000 95 X -12.3304 47.1138 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 96 » -0.3203 28.0000 25.5049 -Georgia_Bold.ttf 91 x 34.3078 28.0000 97 ' -15.2944 9.3670 20.0578 -Georgia_Bold.ttf 91 x 34.3078 28.0000 98 ¢ -8.6455 29.6975 45.0592 -Georgia_Bold.ttf 91 x 34.3078 28.0000 99 Z -12.3431 40.1348 40.4681 -Georgia_Bold.ttf 91 x 34.3078 28.0000 100 > -4.5166 28.2500 32.5259 -Georgia_Bold.ttf 91 x 34.3078 28.0000 101 ® -13.9940 50.4457 50.4457 -Georgia_Bold.ttf 91 x 34.3078 28.0000 102 © -14.0545 50.4457 50.4457 -Georgia_Bold.ttf 91 x 34.3078 28.0000 103 ] -15.1150 18.8830 52.5609 -Georgia_Bold.ttf 91 x 34.3078 28.0000 104 é -16.5546 30.1152 45.5819 -Georgia_Bold.ttf 91 x 34.3078 28.0000 105 z -0.1339 28.0000 28.0000 -Georgia_Bold.ttf 91 x 34.3078 28.0000 106 _ 33.0267 41.0560 2.7259 -Georgia_Bold.ttf 91 x 34.3078 28.0000 107 ¥ -12.1984 44.1379 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 1 t 6.8524 22.8029 37.7468 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 2 h -1.2870 38.3109 44.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 3 a 13.7516 31.8795 30.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 4 n 14.2605 38.5434 29.1940 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 5 P 2.7925 37.4968 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 6 o 14.3197 32.6103 30.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 7 e 14.1312 30.1152 30.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 8 : 14.9926 11.2741 29.1940 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 9 r 14.0121 29.1940 29.1940 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 10 l -1.2622 18.7339 44.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 11 i -1.4992 18.7339 44.8687 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 12 1 11.5850 23.6397 31.6891 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 13 | -1.3325 4.6330 56.5227 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 14 N 2.9104 47.1785 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 15 f -1.2743 28.2500 44.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 16 g 14.1269 32.5497 42.0000 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 17 d -1.2862 36.4457 45.5819 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 18 W 2.9469 68.0276 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 19 s 14.1038 25.8621 30.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 20 c 13.8026 28.9212 30.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 21 u 14.1635 38.2100 30.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 22 3 11.2468 32.5259 42.2500 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 23 ~ 20.5425 32.5497 12.2181 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 24 # 6.8778 32.2532 36.4457 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 25 O 1.3873 43.5511 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 26 ` -1.2297 15.1940 12.8060 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 27 @ 3.5692 47.4709 48.6411 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 28 F 2.6024 35.9650 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 29 S 1.5174 33.7437 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 30 p 13.8852 35.8397 42.0000 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 31 “ 0.0487 25.5049 20.0578 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 32 % 1.4031 46.1460 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 33 £ 1.4280 33.4471 41.6621 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 34 . 33.0985 11.2741 11.2741 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 35 2 11.4154 30.6653 31.6891 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 36 5 11.6533 31.3319 42.2500 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 37 m 14.0312 57.1474 29.1940 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 38 V 2.6426 47.4471 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 39 6 1.5494 32.2997 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 40 w 15.1102 50.4457 28.0000 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 41 T 2.6546 38.0802 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 42 M 2.5772 56.5455 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 43 G 1.6373 45.5865 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 44 b -1.1440 35.7325 45.9198 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 45 9 11.5799 32.6330 42.3571 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 46 ; 15.0522 11.5049 39.3813 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 47 D 2.8710 44.3879 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 48 L 2.7207 38.0196 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 49 y 15.1125 35.2710 40.8060 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 50 ‘ 0.0000 11.5049 20.0578 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 51 \ -0.0728 24.9408 55.3288 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 52 R 2.7374 46.2759 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 53 < 10.3909 28.2500 32.5259 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 54 4 11.5118 34.6684 42.2500 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 55 8 1.6670 33.3865 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 56 0 11.4248 34.6876 32.8830 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 57 A 2.8130 46.9902 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 58 E 2.5573 38.6908 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 59 B 2.9538 40.1348 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 60 v 15.1134 35.5017 28.0000 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 61 k -0.9364 37.9968 44.3879 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 62 J 2.7713 33.3235 41.6621 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 63 U 2.7444 46.9856 41.6621 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 64 j -1.5544 22.1730 57.6747 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 65 ( 0.2682 20.7483 52.5609 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 66 7 12.8723 30.0308 41.0560 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 67 § 1.4076 26.2192 48.4103 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 68 $ -0.5825 31.2486 51.7468 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 69 € 1.2692 41.2868 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 70 / 0.0889 24.9408 55.3288 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 71 C 1.2692 39.1489 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 72 * 1.7228 23.6397 21.2290 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 73 ” -0.0780 25.5049 20.0578 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 74 ? 1.4216 26.4727 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 75 { -0.0997 25.1716 52.5609 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 76 } 0.0621 25.1716 52.5609 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 77 , 33.8191 11.5049 20.7483 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 78 I 2.3503 21.7342 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 79 ° 1.4889 19.4471 18.8830 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 80 K 2.9001 47.4699 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 81 H 2.8311 49.0437 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 82 q 12.6483 36.1968 43.1940 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 83 & 1.5273 44.6379 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 84 ’ -0.2657 11.5049 20.0578 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 85 [ 0.0282 18.8830 52.5609 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 86 - 24.4354 17.3319 6.3078 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 87 Y 2.7616 46.5865 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 88 Q 1.5273 43.5511 53.5241 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 89 " -0.2492 23.0291 20.0578 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 90 ! 1.2845 10.9408 42.8561 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 91 x 15.2149 34.3078 28.0000 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 92 ) 0.0608 20.7483 52.5609 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 93 = 18.3236 30.3879 16.2451 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 94 + 10.7711 31.9572 31.9572 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 95 X 2.4705 47.1138 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 96 » 14.9600 28.0000 25.5049 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 97 ' -0.1256 9.3670 20.0578 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 98 ¢ 7.0002 29.6975 45.0592 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 99 Z 2.9944 40.1348 40.4681 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 100 > 10.6504 28.2500 32.5259 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 101 ® 1.0184 50.4457 50.4457 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 102 © 1.3228 50.4457 50.4457 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 103 ] 0.1179 18.8830 52.5609 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 104 é -1.0711 30.1152 45.5819 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 105 z 15.1905 28.0000 28.0000 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 106 _ 48.3949 41.0560 2.7259 -Georgia_Bold.ttf 92 ) 20.7483 52.5609 107 ¥ 2.8834 44.1379 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 1 t -12.0343 22.8029 37.7468 -Georgia_Bold.ttf 93 = 30.3879 16.2451 2 h -19.6445 38.3109 44.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 3 a -4.5110 31.8795 30.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 4 n -4.7478 38.5434 29.1940 -Georgia_Bold.ttf 93 = 30.3879 16.2451 5 P -15.7497 37.4968 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 6 o -4.7511 32.6103 30.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 7 e -4.5150 30.1152 30.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 8 : -3.3859 11.2741 29.1940 -Georgia_Bold.ttf 93 = 30.3879 16.2451 9 r -4.6639 29.1940 29.1940 -Georgia_Bold.ttf 93 = 30.3879 16.2451 10 l -19.5563 18.7339 44.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 11 i -20.2833 18.7339 44.8687 -Georgia_Bold.ttf 93 = 30.3879 16.2451 12 1 -6.9206 23.6397 31.6891 -Georgia_Bold.ttf 93 = 30.3879 16.2451 13 | -19.9714 4.6330 56.5227 -Georgia_Bold.ttf 93 = 30.3879 16.2451 14 N -15.7047 47.1785 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 15 f -19.8719 28.2500 44.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 16 g -4.5540 32.5497 42.0000 -Georgia_Bold.ttf 93 = 30.3879 16.2451 17 d -19.7001 36.4457 45.5819 -Georgia_Bold.ttf 93 = 30.3879 16.2451 18 W -16.0488 68.0276 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 19 s -4.7600 25.8621 30.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 20 c -4.6602 28.9212 30.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 21 u -4.5000 38.2100 30.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 22 3 -6.9571 32.5259 42.2500 -Georgia_Bold.ttf 93 = 30.3879 16.2451 23 ~ 2.3636 32.5497 12.2181 -Georgia_Bold.ttf 93 = 30.3879 16.2451 24 # -12.0692 32.2532 36.4457 -Georgia_Bold.ttf 93 = 30.3879 16.2451 25 O -17.2348 43.5511 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 26 ` -19.8475 15.1940 12.8060 -Georgia_Bold.ttf 93 = 30.3879 16.2451 27 @ -14.8124 47.4709 48.6411 -Georgia_Bold.ttf 93 = 30.3879 16.2451 28 F -16.1198 35.9650 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 29 S -17.1369 33.7437 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 30 p -4.8680 35.8397 42.0000 -Georgia_Bold.ttf 93 = 30.3879 16.2451 31 “ -18.8586 25.5049 20.0578 -Georgia_Bold.ttf 93 = 30.3879 16.2451 32 % -17.0458 46.1460 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 33 £ -17.1253 33.4471 41.6621 -Georgia_Bold.ttf 93 = 30.3879 16.2451 34 . 14.4391 11.2741 11.2741 -Georgia_Bold.ttf 93 = 30.3879 16.2451 35 2 -7.0980 30.6653 31.6891 -Georgia_Bold.ttf 93 = 30.3879 16.2451 36 5 -7.1158 31.3319 42.2500 -Georgia_Bold.ttf 93 = 30.3879 16.2451 37 m -4.3755 57.1474 29.1940 -Georgia_Bold.ttf 93 = 30.3879 16.2451 38 V -15.8610 47.4471 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 39 6 -16.9924 32.2997 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 40 w -3.3688 50.4457 28.0000 -Georgia_Bold.ttf 93 = 30.3879 16.2451 41 T -15.9346 38.0802 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 42 M -16.2857 56.5455 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 43 G -17.3299 45.5865 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 44 b -19.8423 35.7325 45.9198 -Georgia_Bold.ttf 93 = 30.3879 16.2451 45 9 -7.0025 32.6330 42.3571 -Georgia_Bold.ttf 93 = 30.3879 16.2451 46 ; -3.6014 11.5049 39.3813 -Georgia_Bold.ttf 93 = 30.3879 16.2451 47 D -16.1080 44.3879 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 48 L -16.0613 38.0196 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 49 y -3.5306 35.2710 40.8060 -Georgia_Bold.ttf 93 = 30.3879 16.2451 50 ‘ -18.6217 11.5049 20.0578 -Georgia_Bold.ttf 93 = 30.3879 16.2451 51 \ -18.7632 24.9408 55.3288 -Georgia_Bold.ttf 93 = 30.3879 16.2451 52 R -16.1986 46.2759 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 53 < -7.8144 28.2500 32.5259 -Georgia_Bold.ttf 93 = 30.3879 16.2451 54 4 -7.0205 34.6684 42.2500 -Georgia_Bold.ttf 93 = 30.3879 16.2451 55 8 -17.0812 33.3865 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 56 0 -6.8154 34.6876 32.8830 -Georgia_Bold.ttf 93 = 30.3879 16.2451 57 A -15.9623 46.9902 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 58 E -15.8661 38.6908 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 59 B -15.7620 40.1348 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 60 v -3.5198 35.5017 28.0000 -Georgia_Bold.ttf 93 = 30.3879 16.2451 61 k -19.9357 37.9968 44.3879 -Georgia_Bold.ttf 93 = 30.3879 16.2451 62 J -15.9400 33.3235 41.6621 -Georgia_Bold.ttf 93 = 30.3879 16.2451 63 U -16.2712 46.9856 41.6621 -Georgia_Bold.ttf 93 = 30.3879 16.2451 64 j -20.6548 22.1730 57.6747 -Georgia_Bold.ttf 93 = 30.3879 16.2451 65 ( -18.8486 20.7483 52.5609 -Georgia_Bold.ttf 93 = 30.3879 16.2451 66 7 -6.0167 30.0308 41.0560 -Georgia_Bold.ttf 93 = 30.3879 16.2451 67 § -17.1383 26.2192 48.4103 -Georgia_Bold.ttf 93 = 30.3879 16.2451 68 $ -19.1109 31.2486 51.7468 -Georgia_Bold.ttf 93 = 30.3879 16.2451 69 € -16.9727 41.2868 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 70 / -18.5757 24.9408 55.3288 -Georgia_Bold.ttf 93 = 30.3879 16.2451 71 C -17.1687 39.1489 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 72 * -17.0700 23.6397 21.2290 -Georgia_Bold.ttf 93 = 30.3879 16.2451 73 ” -18.9943 25.5049 20.0578 -Georgia_Bold.ttf 93 = 30.3879 16.2451 74 ? -17.1715 26.4727 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 75 { -18.5661 25.1716 52.5609 -Georgia_Bold.ttf 93 = 30.3879 16.2451 76 } -18.6844 25.1716 52.5609 -Georgia_Bold.ttf 93 = 30.3879 16.2451 77 , 15.1101 11.5049 20.7483 -Georgia_Bold.ttf 93 = 30.3879 16.2451 78 I -15.6994 21.7342 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 79 ° -17.2369 19.4471 18.8830 -Georgia_Bold.ttf 93 = 30.3879 16.2451 80 K -15.7343 47.4699 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 81 H -15.8177 49.0437 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 82 q -5.8326 36.1968 43.1940 -Georgia_Bold.ttf 93 = 30.3879 16.2451 83 & -16.9928 44.6379 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 84 ’ -18.4537 11.5049 20.0578 -Georgia_Bold.ttf 93 = 30.3879 16.2451 85 [ -18.5798 18.8830 52.5609 -Georgia_Bold.ttf 93 = 30.3879 16.2451 86 - 5.9252 17.3319 6.3078 -Georgia_Bold.ttf 93 = 30.3879 16.2451 87 Y -16.0064 46.5865 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 88 Q -17.3236 43.5511 53.5241 -Georgia_Bold.ttf 93 = 30.3879 16.2451 89 " -18.6142 23.0291 20.0578 -Georgia_Bold.ttf 93 = 30.3879 16.2451 90 ! -17.0460 10.9408 42.8561 -Georgia_Bold.ttf 93 = 30.3879 16.2451 91 x -3.3558 34.3078 28.0000 -Georgia_Bold.ttf 93 = 30.3879 16.2451 92 ) -18.9352 20.7483 52.5609 -Georgia_Bold.ttf 93 = 30.3879 16.2451 93 = -0.1435 30.3879 16.2451 -Georgia_Bold.ttf 93 = 30.3879 16.2451 94 + -7.9476 31.9572 31.9572 -Georgia_Bold.ttf 93 = 30.3879 16.2451 95 X -15.7945 47.1138 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 96 » -3.5593 28.0000 25.5049 -Georgia_Bold.ttf 93 = 30.3879 16.2451 97 ' -18.8793 9.3670 20.0578 -Georgia_Bold.ttf 93 = 30.3879 16.2451 98 ¢ -11.8866 29.6975 45.0592 -Georgia_Bold.ttf 93 = 30.3879 16.2451 99 Z -15.8298 40.1348 40.4681 -Georgia_Bold.ttf 93 = 30.3879 16.2451 100 > -7.6843 28.2500 32.5259 -Georgia_Bold.ttf 93 = 30.3879 16.2451 101 ® -17.4939 50.4457 50.4457 -Georgia_Bold.ttf 93 = 30.3879 16.2451 102 © -17.5449 50.4457 50.4457 -Georgia_Bold.ttf 93 = 30.3879 16.2451 103 ] -18.6301 18.8830 52.5609 -Georgia_Bold.ttf 93 = 30.3879 16.2451 104 é -20.0373 30.1152 45.5819 -Georgia_Bold.ttf 93 = 30.3879 16.2451 105 z -3.3678 28.0000 28.0000 -Georgia_Bold.ttf 93 = 30.3879 16.2451 106 _ 29.6618 41.0560 2.7259 -Georgia_Bold.ttf 93 = 30.3879 16.2451 107 ¥ -15.7459 44.1379 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 1 t -4.1919 22.8029 37.7468 -Georgia_Bold.ttf 94 + 31.9572 31.9572 2 h -12.1527 38.3109 44.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 3 a 3.1095 31.8795 30.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 4 n 3.2539 38.5434 29.1940 -Georgia_Bold.ttf 94 + 31.9572 31.9572 5 P -8.0588 37.4968 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 6 o 3.0353 32.6103 30.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 7 e 2.9323 30.1152 30.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 8 : 4.0241 11.2741 29.1940 -Georgia_Bold.ttf 94 + 31.9572 31.9572 9 r 2.8597 29.1940 29.1940 -Georgia_Bold.ttf 94 + 31.9572 31.9572 10 l -11.9912 18.7339 44.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 11 i -12.6121 18.7339 44.8687 -Georgia_Bold.ttf 94 + 31.9572 31.9572 12 1 0.5082 23.6397 31.6891 -Georgia_Bold.ttf 94 + 31.9572 31.9572 13 | -12.0877 4.6330 56.5227 -Georgia_Bold.ttf 94 + 31.9572 31.9572 14 N -7.9960 47.1785 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 15 f -12.1936 28.2500 44.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 16 g 2.8546 32.5497 42.0000 -Georgia_Bold.ttf 94 + 31.9572 31.9572 17 d -12.1778 36.4457 45.5819 -Georgia_Bold.ttf 94 + 31.9572 31.9572 18 W -7.9260 68.0276 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 19 s 2.7541 25.8621 30.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 20 c 2.7677 28.9212 30.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 21 u 3.2740 38.2100 30.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 22 3 0.5001 32.5259 42.2500 -Georgia_Bold.ttf 94 + 31.9572 31.9572 23 ~ 10.0712 32.5497 12.2181 -Georgia_Bold.ttf 94 + 31.9572 31.9572 24 # -3.9631 32.2532 36.4457 -Georgia_Bold.ttf 94 + 31.9572 31.9572 25 O -9.4481 43.5511 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 26 ` -12.1428 15.1940 12.8060 -Georgia_Bold.ttf 94 + 31.9572 31.9572 27 @ -6.5811 47.4709 48.6411 -Georgia_Bold.ttf 94 + 31.9572 31.9572 28 F -8.4292 35.9650 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 29 S -9.1543 33.7437 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 30 p 3.1199 35.8397 42.0000 -Georgia_Bold.ttf 94 + 31.9572 31.9572 31 “ -10.8387 25.5049 20.0578 -Georgia_Bold.ttf 94 + 31.9572 31.9572 32 % -9.7538 46.1460 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 33 £ -9.2775 33.4471 41.6621 -Georgia_Bold.ttf 94 + 31.9572 31.9572 34 . 22.3045 11.2741 11.2741 -Georgia_Bold.ttf 94 + 31.9572 31.9572 35 2 0.9975 30.6653 31.6891 -Georgia_Bold.ttf 94 + 31.9572 31.9572 36 5 0.6907 31.3319 42.2500 -Georgia_Bold.ttf 94 + 31.9572 31.9572 37 m 3.0743 57.1474 29.1940 -Georgia_Bold.ttf 94 + 31.9572 31.9572 38 V -8.3910 47.4471 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 39 6 -9.4090 32.2997 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 40 w 4.5411 50.4457 28.0000 -Georgia_Bold.ttf 94 + 31.9572 31.9572 41 T -8.1934 38.0802 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 42 M -8.2811 56.5455 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 43 G -9.3629 45.5865 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 44 b -12.0759 35.7325 45.9198 -Georgia_Bold.ttf 94 + 31.9572 31.9572 45 9 0.5823 32.6330 42.3571 -Georgia_Bold.ttf 94 + 31.9572 31.9572 46 ; 4.4582 11.5049 39.3813 -Georgia_Bold.ttf 94 + 31.9572 31.9572 47 D -8.1141 44.3879 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 48 L -7.9663 38.0196 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 49 y 4.4624 35.2710 40.8060 -Georgia_Bold.ttf 94 + 31.9572 31.9572 50 ‘ -11.0617 11.5049 20.0578 -Georgia_Bold.ttf 94 + 31.9572 31.9572 51 \ -10.7510 24.9408 55.3288 -Georgia_Bold.ttf 94 + 31.9572 31.9572 52 R -8.1217 46.2759 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 53 < -0.5216 28.2500 32.5259 -Georgia_Bold.ttf 94 + 31.9572 31.9572 54 4 0.8997 34.6684 42.2500 -Georgia_Bold.ttf 94 + 31.9572 31.9572 55 8 -9.2363 33.3865 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 56 0 0.6854 34.6876 32.8830 -Georgia_Bold.ttf 94 + 31.9572 31.9572 57 A -8.1574 46.9902 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 58 E -8.1730 38.6908 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 59 B -8.1491 40.1348 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 60 v 4.4602 35.5017 28.0000 -Georgia_Bold.ttf 94 + 31.9572 31.9572 61 k -11.9557 37.9968 44.3879 -Georgia_Bold.ttf 94 + 31.9572 31.9572 62 J -7.8854 33.3235 41.6621 -Georgia_Bold.ttf 94 + 31.9572 31.9572 63 U -8.1426 46.9856 41.6621 -Georgia_Bold.ttf 94 + 31.9572 31.9572 64 j -12.5593 22.1730 57.6747 -Georgia_Bold.ttf 94 + 31.9572 31.9572 65 ( -10.8989 20.7483 52.5609 -Georgia_Bold.ttf 94 + 31.9572 31.9572 66 7 2.1211 30.0308 41.0560 -Georgia_Bold.ttf 94 + 31.9572 31.9572 67 § -9.6524 26.2192 48.4103 -Georgia_Bold.ttf 94 + 31.9572 31.9572 68 $ -11.5530 31.2486 51.7468 -Georgia_Bold.ttf 94 + 31.9572 31.9572 69 € -9.2220 41.2868 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 70 / -10.8203 24.9408 55.3288 -Georgia_Bold.ttf 94 + 31.9572 31.9572 71 C -9.6611 39.1489 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 72 * -9.1624 23.6397 21.2290 -Georgia_Bold.ttf 94 + 31.9572 31.9572 73 ” -10.8873 25.5049 20.0578 -Georgia_Bold.ttf 94 + 31.9572 31.9572 74 ? -9.3995 26.4727 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 75 { -11.0059 25.1716 52.5609 -Georgia_Bold.ttf 94 + 31.9572 31.9572 76 } -10.9811 25.1716 52.5609 -Georgia_Bold.ttf 94 + 31.9572 31.9572 77 , 22.4891 11.5049 20.7483 -Georgia_Bold.ttf 94 + 31.9572 31.9572 78 I -8.4501 21.7342 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 79 ° -9.4442 19.4471 18.8830 -Georgia_Bold.ttf 94 + 31.9572 31.9572 80 K -8.3381 47.4699 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 81 H -8.1297 49.0437 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 82 q 2.2273 36.1968 43.1940 -Georgia_Bold.ttf 94 + 31.9572 31.9572 83 & -9.5783 44.6379 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 84 ’ -11.1927 11.5049 20.0578 -Georgia_Bold.ttf 94 + 31.9572 31.9572 85 [ -10.8610 18.8830 52.5609 -Georgia_Bold.ttf 94 + 31.9572 31.9572 86 - 13.1426 17.3319 6.3078 -Georgia_Bold.ttf 94 + 31.9572 31.9572 87 Y -8.2757 46.5865 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 88 Q -9.3331 43.5511 53.5241 -Georgia_Bold.ttf 94 + 31.9572 31.9572 89 " -11.0556 23.0291 20.0578 -Georgia_Bold.ttf 94 + 31.9572 31.9572 90 ! -9.4366 10.9408 42.8561 -Georgia_Bold.ttf 94 + 31.9572 31.9572 91 x 4.4822 34.3078 28.0000 -Georgia_Bold.ttf 94 + 31.9572 31.9572 92 ) -11.0346 20.7483 52.5609 -Georgia_Bold.ttf 94 + 31.9572 31.9572 93 = 7.6170 30.3879 16.2451 -Georgia_Bold.ttf 94 + 31.9572 31.9572 94 + -0.1982 31.9572 31.9572 -Georgia_Bold.ttf 94 + 31.9572 31.9572 95 X -8.1692 47.1138 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 96 » 3.7895 28.0000 25.5049 -Georgia_Bold.ttf 94 + 31.9572 31.9572 97 ' -10.8719 9.3670 20.0578 -Georgia_Bold.ttf 94 + 31.9572 31.9572 98 ¢ -4.4151 29.6975 45.0592 -Georgia_Bold.ttf 94 + 31.9572 31.9572 99 Z -8.0970 40.1348 40.4681 -Georgia_Bold.ttf 94 + 31.9572 31.9572 100 > -0.4155 28.2500 32.5259 -Georgia_Bold.ttf 94 + 31.9572 31.9572 101 ® -9.7055 50.4457 50.4457 -Georgia_Bold.ttf 94 + 31.9572 31.9572 102 © -9.3846 50.4457 50.4457 -Georgia_Bold.ttf 94 + 31.9572 31.9572 103 ] -11.1489 18.8830 52.5609 -Georgia_Bold.ttf 94 + 31.9572 31.9572 104 é -11.9602 30.1152 45.5819 -Georgia_Bold.ttf 94 + 31.9572 31.9572 105 z 4.3035 28.0000 28.0000 -Georgia_Bold.ttf 94 + 31.9572 31.9572 106 _ 37.1931 41.0560 2.7259 -Georgia_Bold.ttf 94 + 31.9572 31.9572 107 ¥ -8.0034 44.1379 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 1 t 3.8462 22.8029 37.7468 -Georgia_Bold.ttf 95 X 47.1138 40.4681 2 h -3.9532 38.3109 44.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 3 a 11.1635 31.8795 30.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 4 n 10.8931 38.5434 29.1940 -Georgia_Bold.ttf 95 X 47.1138 40.4681 5 P 0.0217 37.4968 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 6 o 11.0899 32.6103 30.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 7 e 11.2102 30.1152 30.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 8 : 12.5965 11.2741 29.1940 -Georgia_Bold.ttf 95 X 47.1138 40.4681 9 r 10.9888 29.1940 29.1940 -Georgia_Bold.ttf 95 X 47.1138 40.4681 10 l -3.9300 18.7339 44.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 11 i -4.5318 18.7339 44.8687 -Georgia_Bold.ttf 95 X 47.1138 40.4681 12 1 8.8408 23.6397 31.6891 -Georgia_Bold.ttf 95 X 47.1138 40.4681 13 | -3.8165 4.6330 56.5227 -Georgia_Bold.ttf 95 X 47.1138 40.4681 14 N -0.1183 47.1785 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 15 f -4.0198 28.2500 44.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 16 g 11.4074 32.5497 42.0000 -Georgia_Bold.ttf 95 X 47.1138 40.4681 17 d -3.8359 36.4457 45.5819 -Georgia_Bold.ttf 95 X 47.1138 40.4681 18 W 0.2303 68.0276 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 19 s 11.2436 25.8621 30.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 20 c 11.4418 28.9212 30.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 21 u 11.2951 38.2100 30.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 22 3 8.5800 32.5259 42.2500 -Georgia_Bold.ttf 95 X 47.1138 40.4681 23 ~ 18.0063 32.5497 12.2181 -Georgia_Bold.ttf 95 X 47.1138 40.4681 24 # 3.7380 32.2532 36.4457 -Georgia_Bold.ttf 95 X 47.1138 40.4681 25 O -1.1870 43.5511 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 26 ` -3.8343 15.1940 12.8060 -Georgia_Bold.ttf 95 X 47.1138 40.4681 27 @ 1.2876 47.4709 48.6411 -Georgia_Bold.ttf 95 X 47.1138 40.4681 28 F 0.1240 35.9650 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 29 S -0.9144 33.7437 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 30 p 10.9811 35.8397 42.0000 -Georgia_Bold.ttf 95 X 47.1138 40.4681 31 “ -2.6073 25.5049 20.0578 -Georgia_Bold.ttf 95 X 47.1138 40.4681 32 % -1.0695 46.1460 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 33 £ -1.1507 33.4471 41.6621 -Georgia_Bold.ttf 95 X 47.1138 40.4681 34 . 30.5223 11.2741 11.2741 -Georgia_Bold.ttf 95 X 47.1138 40.4681 35 2 8.9239 30.6653 31.6891 -Georgia_Bold.ttf 95 X 47.1138 40.4681 36 5 8.7791 31.3319 42.2500 -Georgia_Bold.ttf 95 X 47.1138 40.4681 37 m 11.8348 57.1474 29.1940 -Georgia_Bold.ttf 95 X 47.1138 40.4681 38 V -0.0517 47.4471 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 39 6 -1.6867 32.2997 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 40 w 12.4199 50.4457 28.0000 -Georgia_Bold.ttf 95 X 47.1138 40.4681 41 T -0.0092 38.0802 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 42 M -0.0078 56.5455 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 43 G -1.4214 45.5865 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 44 b -4.0507 35.7325 45.9198 -Georgia_Bold.ttf 95 X 47.1138 40.4681 45 9 8.8723 32.6330 42.3571 -Georgia_Bold.ttf 95 X 47.1138 40.4681 46 ; 12.1146 11.5049 39.3813 -Georgia_Bold.ttf 95 X 47.1138 40.4681 47 D 0.1993 44.3879 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 48 L -0.2753 38.0196 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 49 y 12.5275 35.2710 40.8060 -Georgia_Bold.ttf 95 X 47.1138 40.4681 50 ‘ -2.8014 11.5049 20.0578 -Georgia_Bold.ttf 95 X 47.1138 40.4681 51 \ -3.0855 24.9408 55.3288 -Georgia_Bold.ttf 95 X 47.1138 40.4681 52 R 0.0035 46.2759 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 53 < 8.2446 28.2500 32.5259 -Georgia_Bold.ttf 95 X 47.1138 40.4681 54 4 8.9417 34.6684 42.2500 -Georgia_Bold.ttf 95 X 47.1138 40.4681 55 8 -1.0345 33.3865 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 56 0 8.8207 34.6876 32.8830 -Georgia_Bold.ttf 95 X 47.1138 40.4681 57 A 0.0748 46.9902 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 58 E 0.0524 38.6908 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 59 B -0.2506 40.1348 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 60 v 12.5428 35.5017 28.0000 -Georgia_Bold.ttf 95 X 47.1138 40.4681 61 k -4.0486 37.9968 44.3879 -Georgia_Bold.ttf 95 X 47.1138 40.4681 62 J -0.1909 33.3235 41.6621 -Georgia_Bold.ttf 95 X 47.1138 40.4681 63 U 0.1382 46.9856 41.6621 -Georgia_Bold.ttf 95 X 47.1138 40.4681 64 j -4.6150 22.1730 57.6747 -Georgia_Bold.ttf 95 X 47.1138 40.4681 65 ( -2.9312 20.7483 52.5609 -Georgia_Bold.ttf 95 X 47.1138 40.4681 66 7 9.7506 30.0308 41.0560 -Georgia_Bold.ttf 95 X 47.1138 40.4681 67 § -1.2106 26.2192 48.4103 -Georgia_Bold.ttf 95 X 47.1138 40.4681 68 $ -3.4401 31.2486 51.7468 -Georgia_Bold.ttf 95 X 47.1138 40.4681 69 € -1.3228 41.2868 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 70 / -2.8455 24.9408 55.3288 -Georgia_Bold.ttf 95 X 47.1138 40.4681 71 C -1.2069 39.1489 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 72 * -1.1969 23.6397 21.2290 -Georgia_Bold.ttf 95 X 47.1138 40.4681 73 ” -2.6796 25.5049 20.0578 -Georgia_Bold.ttf 95 X 47.1138 40.4681 74 ? -1.4432 26.4727 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 75 { -2.4835 25.1716 52.5609 -Georgia_Bold.ttf 95 X 47.1138 40.4681 76 } -2.7986 25.1716 52.5609 -Georgia_Bold.ttf 95 X 47.1138 40.4681 77 , 31.2492 11.5049 20.7483 -Georgia_Bold.ttf 95 X 47.1138 40.4681 78 I -0.0543 21.7342 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 79 ° -1.4652 19.4471 18.8830 -Georgia_Bold.ttf 95 X 47.1138 40.4681 80 K 0.3470 47.4699 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 81 H -0.0105 49.0437 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 82 q 10.3832 36.1968 43.1940 -Georgia_Bold.ttf 95 X 47.1138 40.4681 83 & -1.1964 44.6379 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 84 ’ -2.6253 11.5049 20.0578 -Georgia_Bold.ttf 95 X 47.1138 40.4681 85 [ -2.6285 18.8830 52.5609 -Georgia_Bold.ttf 95 X 47.1138 40.4681 86 - 21.6210 17.3319 6.3078 -Georgia_Bold.ttf 95 X 47.1138 40.4681 87 Y -0.2823 46.5865 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 88 Q -1.0337 43.5511 53.5241 -Georgia_Bold.ttf 95 X 47.1138 40.4681 89 " -2.8962 23.0291 20.0578 -Georgia_Bold.ttf 95 X 47.1138 40.4681 90 ! -0.9834 10.9408 42.8561 -Georgia_Bold.ttf 95 X 47.1138 40.4681 91 x 12.3852 34.3078 28.0000 -Georgia_Bold.ttf 95 X 47.1138 40.4681 92 ) -2.7022 20.7483 52.5609 -Georgia_Bold.ttf 95 X 47.1138 40.4681 93 = 15.7871 30.3879 16.2451 -Georgia_Bold.ttf 95 X 47.1138 40.4681 94 + 8.1469 31.9572 31.9572 -Georgia_Bold.ttf 95 X 47.1138 40.4681 95 X 0.0909 47.1138 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 96 » 12.2054 28.0000 25.5049 -Georgia_Bold.ttf 95 X 47.1138 40.4681 97 ' -2.6896 9.3670 20.0578 -Georgia_Bold.ttf 95 X 47.1138 40.4681 98 ¢ 4.2347 29.6975 45.0592 -Georgia_Bold.ttf 95 X 47.1138 40.4681 99 Z 0.0790 40.1348 40.4681 -Georgia_Bold.ttf 95 X 47.1138 40.4681 100 > 7.5415 28.2500 32.5259 -Georgia_Bold.ttf 95 X 47.1138 40.4681 101 ® -1.5751 50.4457 50.4457 -Georgia_Bold.ttf 95 X 47.1138 40.4681 102 © -1.7664 50.4457 50.4457 -Georgia_Bold.ttf 95 X 47.1138 40.4681 103 ] -2.7522 18.8830 52.5609 -Georgia_Bold.ttf 95 X 47.1138 40.4681 104 é -3.8804 30.1152 45.5819 -Georgia_Bold.ttf 95 X 47.1138 40.4681 105 z 12.5405 28.0000 28.0000 -Georgia_Bold.ttf 95 X 47.1138 40.4681 106 _ 45.5930 41.0560 2.7259 -Georgia_Bold.ttf 95 X 47.1138 40.4681 107 ¥ -0.1974 44.1379 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 1 t -8.5842 22.8029 37.7468 -Georgia_Bold.ttf 96 » 28.0000 25.5049 2 h -15.7671 38.3109 44.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 3 a -1.2969 31.8795 30.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 4 n -0.9215 38.5434 29.1940 -Georgia_Bold.ttf 96 » 28.0000 25.5049 5 P -12.0435 37.4968 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 6 o -0.7882 32.6103 30.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 7 e -1.0573 30.1152 30.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 8 : 0.0321 11.2741 29.1940 -Georgia_Bold.ttf 96 » 28.0000 25.5049 9 r -0.7065 29.1940 29.1940 -Georgia_Bold.ttf 96 » 28.0000 25.5049 10 l -16.3842 18.7339 44.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 11 i -16.8127 18.7339 44.8687 -Georgia_Bold.ttf 96 » 28.0000 25.5049 12 1 -3.4159 23.6397 31.6891 -Georgia_Bold.ttf 96 » 28.0000 25.5049 13 | -16.0117 4.6330 56.5227 -Georgia_Bold.ttf 96 » 28.0000 25.5049 14 N -12.2901 47.1785 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 15 f -16.2919 28.2500 44.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 16 g -1.1305 32.5497 42.0000 -Georgia_Bold.ttf 96 » 28.0000 25.5049 17 d -16.1438 36.4457 45.5819 -Georgia_Bold.ttf 96 » 28.0000 25.5049 18 W -11.7192 68.0276 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 19 s -0.8677 25.8621 30.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 20 c -1.0837 28.9212 30.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 21 u -0.9729 38.2100 30.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 22 3 -3.2457 32.5259 42.2500 -Georgia_Bold.ttf 96 » 28.0000 25.5049 23 ~ 5.7883 32.5497 12.2181 -Georgia_Bold.ttf 96 » 28.0000 25.5049 24 # -8.0697 32.2532 36.4457 -Georgia_Bold.ttf 96 » 28.0000 25.5049 25 O -13.2487 43.5511 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 26 ` -16.2155 15.1940 12.8060 -Georgia_Bold.ttf 96 » 28.0000 25.5049 27 @ -11.3393 47.4709 48.6411 -Georgia_Bold.ttf 96 » 28.0000 25.5049 28 F -12.0118 35.9650 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 29 S -13.2057 33.7437 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 30 p -0.9140 35.8397 42.0000 -Georgia_Bold.ttf 96 » 28.0000 25.5049 31 “ -15.0799 25.5049 20.0578 -Georgia_Bold.ttf 96 » 28.0000 25.5049 32 % -13.7827 46.1460 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 33 £ -13.4064 33.4471 41.6621 -Georgia_Bold.ttf 96 » 28.0000 25.5049 34 . 18.1414 11.2741 11.2741 -Georgia_Bold.ttf 96 » 28.0000 25.5049 35 2 -3.4491 30.6653 31.6891 -Georgia_Bold.ttf 96 » 28.0000 25.5049 36 5 -3.7503 31.3319 42.2500 -Georgia_Bold.ttf 96 » 28.0000 25.5049 37 m -0.9769 57.1474 29.1940 -Georgia_Bold.ttf 96 » 28.0000 25.5049 38 V -12.1229 47.4471 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 39 6 -12.9988 32.2997 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 40 w -0.0795 50.4457 28.0000 -Georgia_Bold.ttf 96 » 28.0000 25.5049 41 T -12.0271 38.0802 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 42 M -12.5885 56.5455 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 43 G -13.4593 45.5865 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 44 b -16.3535 35.7325 45.9198 -Georgia_Bold.ttf 96 » 28.0000 25.5049 45 9 -3.4075 32.6330 42.3571 -Georgia_Bold.ttf 96 » 28.0000 25.5049 46 ; 0.0931 11.5049 39.3813 -Georgia_Bold.ttf 96 » 28.0000 25.5049 47 D -12.3231 44.3879 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 48 L -12.2352 38.0196 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 49 y 0.4036 35.2710 40.8060 -Georgia_Bold.ttf 96 » 28.0000 25.5049 50 ‘ -14.9045 11.5049 20.0578 -Georgia_Bold.ttf 96 » 28.0000 25.5049 51 \ -15.1214 24.9408 55.3288 -Georgia_Bold.ttf 96 » 28.0000 25.5049 52 R -12.2059 46.2759 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 53 < -4.1599 28.2500 32.5259 -Georgia_Bold.ttf 96 » 28.0000 25.5049 54 4 -3.2970 34.6684 42.2500 -Georgia_Bold.ttf 96 » 28.0000 25.5049 55 8 -13.3845 33.3865 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 56 0 -3.2319 34.6876 32.8830 -Georgia_Bold.ttf 96 » 28.0000 25.5049 57 A -12.2041 46.9902 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 58 E -12.2786 38.6908 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 59 B -12.3007 40.1348 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 60 v 0.3308 35.5017 28.0000 -Georgia_Bold.ttf 96 » 28.0000 25.5049 61 k -15.9738 37.9968 44.3879 -Georgia_Bold.ttf 96 » 28.0000 25.5049 62 J -12.2048 33.3235 41.6621 -Georgia_Bold.ttf 96 » 28.0000 25.5049 63 U -12.4801 46.9856 41.6621 -Georgia_Bold.ttf 96 » 28.0000 25.5049 64 j -16.6509 22.1730 57.6747 -Georgia_Bold.ttf 96 » 28.0000 25.5049 65 ( -14.9587 20.7483 52.5609 -Georgia_Bold.ttf 96 » 28.0000 25.5049 66 7 -2.1930 30.0308 41.0560 -Georgia_Bold.ttf 96 » 28.0000 25.5049 67 § -13.3644 26.2192 48.4103 -Georgia_Bold.ttf 96 » 28.0000 25.5049 68 $ -15.3606 31.2486 51.7468 -Georgia_Bold.ttf 96 » 28.0000 25.5049 69 € -13.3324 41.2868 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 70 / -14.9051 24.9408 55.3288 -Georgia_Bold.ttf 96 » 28.0000 25.5049 71 C -13.4230 39.1489 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 72 * -13.3749 23.6397 21.2290 -Georgia_Bold.ttf 96 » 28.0000 25.5049 73 ” -15.0414 25.5049 20.0578 -Georgia_Bold.ttf 96 » 28.0000 25.5049 74 ? -13.3776 26.4727 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 75 { -14.8672 25.1716 52.5609 -Georgia_Bold.ttf 96 » 28.0000 25.5049 76 } -14.9269 25.1716 52.5609 -Georgia_Bold.ttf 96 » 28.0000 25.5049 77 , 18.8221 11.5049 20.7483 -Georgia_Bold.ttf 96 » 28.0000 25.5049 78 I -12.4116 21.7342 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 79 ° -13.1598 19.4471 18.8830 -Georgia_Bold.ttf 96 » 28.0000 25.5049 80 K -12.3457 47.4699 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 81 H -11.9922 49.0437 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 82 q -2.0292 36.1968 43.1940 -Georgia_Bold.ttf 96 » 28.0000 25.5049 83 & -13.3429 44.6379 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 84 ’ -15.0735 11.5049 20.0578 -Georgia_Bold.ttf 96 » 28.0000 25.5049 85 [ -14.9132 18.8830 52.5609 -Georgia_Bold.ttf 96 » 28.0000 25.5049 86 - 9.7002 17.3319 6.3078 -Georgia_Bold.ttf 96 » 28.0000 25.5049 87 Y -12.2193 46.5865 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 88 Q -13.5596 43.5511 53.5241 -Georgia_Bold.ttf 96 » 28.0000 25.5049 89 " -15.2188 23.0291 20.0578 -Georgia_Bold.ttf 96 » 28.0000 25.5049 90 ! -13.5926 10.9408 42.8561 -Georgia_Bold.ttf 96 » 28.0000 25.5049 91 x 0.0887 34.3078 28.0000 -Georgia_Bold.ttf 96 » 28.0000 25.5049 92 ) -14.8057 20.7483 52.5609 -Georgia_Bold.ttf 96 » 28.0000 25.5049 93 = 3.8234 30.3879 16.2451 -Georgia_Bold.ttf 96 » 28.0000 25.5049 94 + -3.9698 31.9572 31.9572 -Georgia_Bold.ttf 96 » 28.0000 25.5049 95 X -12.4365 47.1138 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 96 » -0.2207 28.0000 25.5049 -Georgia_Bold.ttf 96 » 28.0000 25.5049 97 ' -14.8562 9.3670 20.0578 -Georgia_Bold.ttf 96 » 28.0000 25.5049 98 ¢ -8.5739 29.6975 45.0592 -Georgia_Bold.ttf 96 » 28.0000 25.5049 99 Z -12.1565 40.1348 40.4681 -Georgia_Bold.ttf 96 » 28.0000 25.5049 100 > -4.5865 28.2500 32.5259 -Georgia_Bold.ttf 96 » 28.0000 25.5049 101 ® -13.4156 50.4457 50.4457 -Georgia_Bold.ttf 96 » 28.0000 25.5049 102 © -13.4497 50.4457 50.4457 -Georgia_Bold.ttf 96 » 28.0000 25.5049 103 ] -15.2557 18.8830 52.5609 -Georgia_Bold.ttf 96 » 28.0000 25.5049 104 é -15.9427 30.1152 45.5819 -Georgia_Bold.ttf 96 » 28.0000 25.5049 105 z 0.3703 28.0000 28.0000 -Georgia_Bold.ttf 96 » 28.0000 25.5049 106 _ 33.3362 41.0560 2.7259 -Georgia_Bold.ttf 96 » 28.0000 25.5049 107 ¥ -12.2373 44.1379 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 1 t 6.4533 22.8029 37.7468 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 2 h -1.1940 38.3109 44.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 3 a 14.1853 31.8795 30.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 4 n 13.9108 38.5434 29.1940 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 5 P 2.7811 37.4968 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 6 o 14.0826 32.6103 30.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 7 e 13.9258 30.1152 30.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 8 : 15.4919 11.2741 29.1940 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 9 r 14.0417 29.1940 29.1940 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 10 l -1.1523 18.7339 44.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 11 i -1.6664 18.7339 44.8687 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 12 1 11.3496 23.6397 31.6891 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 13 | -1.2687 4.6330 56.5227 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 14 N 2.6944 47.1785 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 15 f -1.0690 28.2500 44.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 16 g 14.2113 32.5497 42.0000 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 17 d -1.3931 36.4457 45.5819 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 18 W 2.8060 68.0276 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 19 s 13.7329 25.8621 30.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 20 c 14.1543 28.9212 30.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 21 u 14.0833 38.2100 30.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 22 3 11.4990 32.5259 42.2500 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 23 ~ 20.7108 32.5497 12.2181 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 24 # 6.7098 32.2532 36.4457 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 25 O 1.5297 43.5511 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 26 ` -1.3604 15.1940 12.8060 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 27 @ 3.8955 47.4709 48.6411 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 28 F 2.5901 35.9650 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 29 S 1.4009 33.7437 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 30 p 14.0839 35.8397 42.0000 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 31 “ 0.0801 25.5049 20.0578 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 32 % 1.3577 46.1460 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 33 £ 1.6152 33.4471 41.6621 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 34 . 33.0420 11.2741 11.2741 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 35 2 11.6493 30.6653 31.6891 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 36 5 11.6305 31.3319 42.2500 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 37 m 13.9955 57.1474 29.1940 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 38 V 2.8417 47.4471 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 39 6 1.5703 32.2997 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 40 w 15.0810 50.4457 28.0000 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 41 T 2.4876 38.0802 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 42 M 2.9001 56.5455 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 43 G 1.4101 45.5865 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 44 b -1.2265 35.7325 45.9198 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 45 9 11.2567 32.6330 42.3571 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 46 ; 15.2007 11.5049 39.3813 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 47 D 2.6638 44.3879 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 48 L 2.7966 38.0196 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 49 y 15.1458 35.2710 40.8060 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 50 ‘ -0.0618 11.5049 20.0578 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 51 \ 0.2568 24.9408 55.3288 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 52 R 2.8509 46.2759 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 53 < 10.3296 28.2500 32.5259 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 54 4 11.5132 34.6684 42.2500 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 55 8 1.5032 33.3865 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 56 0 11.4324 34.6876 32.8830 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 57 A 2.6062 46.9902 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 58 E 2.5874 38.6908 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 59 B 2.5530 40.1348 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 60 v 15.2281 35.5017 28.0000 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 61 k -1.0870 37.9968 44.3879 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 62 J 2.7054 33.3235 41.6621 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 63 U 2.7259 46.9856 41.6621 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 64 j -1.6747 22.1730 57.6747 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 65 ( 0.0917 20.7483 52.5609 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 66 7 12.7873 30.0308 41.0560 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 67 § 1.4759 26.2192 48.4103 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 68 $ -0.5847 31.2486 51.7468 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 69 € 1.7085 41.2868 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 70 / 0.0650 24.9408 55.3288 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 71 C 1.7145 39.1489 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 72 * 1.3123 23.6397 21.2290 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 73 ” -0.2196 25.5049 20.0578 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 74 ? 1.7302 26.4727 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 75 { -0.1495 25.1716 52.5609 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 76 } 0.0385 25.1716 52.5609 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 77 , 33.8703 11.5049 20.7483 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 78 I 2.6874 21.7342 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 79 ° 1.4486 19.4471 18.8830 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 80 K 2.7741 47.4699 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 81 H 2.6804 49.0437 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 82 q 12.7939 36.1968 43.1940 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 83 & 1.6260 44.6379 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 84 ’ -0.0115 11.5049 20.0578 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 85 [ 0.0892 18.8830 52.5609 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 86 - 24.6421 17.3319 6.3078 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 87 Y 2.8259 46.5865 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 88 Q 1.4058 43.5511 53.5241 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 89 " -0.1801 23.0291 20.0578 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 90 ! 1.6085 10.9408 42.8561 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 91 x 15.1138 34.3078 28.0000 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 92 ) -0.0769 20.7483 52.5609 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 93 = 18.7277 30.3879 16.2451 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 94 + 10.6166 31.9572 31.9572 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 95 X 2.7356 47.1138 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 96 » 14.8890 28.0000 25.5049 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 97 ' -0.1677 9.3670 20.0578 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 98 ¢ 6.7867 29.6975 45.0592 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 99 Z 2.7546 40.1348 40.4681 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 100 > 10.5810 28.2500 32.5259 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 101 ® 1.1870 50.4457 50.4457 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 102 © 1.2751 50.4457 50.4457 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 103 ] 0.0497 18.8830 52.5609 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 104 é -1.2066 30.1152 45.5819 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 105 z 15.2297 28.0000 28.0000 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 106 _ 48.2161 41.0560 2.7259 -Georgia_Bold.ttf 97 ' 9.3670 20.0578 107 ¥ 2.6457 44.1379 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 1 t -0.4007 22.8029 37.7468 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 2 h -7.9807 38.3109 44.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 3 a 7.2453 31.8795 30.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 4 n 7.1735 38.5434 29.1940 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 5 P -4.2022 37.4968 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 6 o 7.3255 32.6103 30.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 7 e 7.1846 30.1152 30.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 8 : 8.2201 11.2741 29.1940 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 9 r 7.1511 29.1940 29.1940 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 10 l -7.9839 18.7339 44.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 11 i -8.2883 18.7339 44.8687 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 12 1 4.3433 23.6397 31.6891 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 13 | -8.0331 4.6330 56.5227 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 14 N -4.1641 47.1785 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 15 f -7.9839 28.2500 44.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 16 g 6.9699 32.5497 42.0000 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 17 d -7.9363 36.4457 45.5819 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 18 W -4.0969 68.0276 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 19 s 7.1257 25.8621 30.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 20 c 7.4836 28.9212 30.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 21 u 7.4176 38.2100 30.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 22 3 4.9174 32.5259 42.2500 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 23 ~ 14.1196 32.5497 12.2181 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 24 # -0.0615 32.2532 36.4457 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 25 O -5.4323 43.5511 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 26 ` -7.9495 15.1940 12.8060 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 27 @ -2.8278 47.4709 48.6411 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 28 F -3.8156 35.9650 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 29 S -5.3650 33.7437 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 30 p 7.1609 35.8397 42.0000 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 31 “ -6.2566 25.5049 20.0578 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 32 % -4.9551 46.1460 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 33 £ -5.4040 33.4471 41.6621 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 34 . 26.4513 11.2741 11.2741 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 35 2 4.9015 30.6653 31.6891 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 36 5 4.9851 31.3319 42.2500 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 37 m 7.1873 57.1474 29.1940 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 38 V -3.8014 47.4471 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 39 6 -5.1937 32.2997 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 40 w 8.6064 50.4457 28.0000 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 41 T -3.9339 38.0802 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 42 M -4.3099 56.5455 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 43 G -5.2223 45.5865 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 44 b -7.7498 35.7325 45.9198 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 45 9 4.6658 32.6330 42.3571 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 46 ; 8.5723 11.5049 39.3813 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 47 D -3.8244 44.3879 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 48 L -3.6803 38.0196 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 49 y 8.3215 35.2710 40.8060 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 50 ‘ -6.8527 11.5049 20.0578 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 51 \ -6.8770 24.9408 55.3288 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 52 R -4.2891 46.2759 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 53 < 4.0392 28.2500 32.5259 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 54 4 4.8077 34.6684 42.2500 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 55 8 -5.3707 33.3865 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 56 0 4.7258 34.6876 32.8830 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 57 A -3.8458 46.9902 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 58 E -4.1509 38.6908 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 59 B -4.3138 40.1348 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 60 v 8.2146 35.5017 28.0000 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 61 k -8.0675 37.9968 44.3879 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 62 J -4.0756 33.3235 41.6621 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 63 U -4.0326 46.9856 41.6621 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 64 j -8.4045 22.1730 57.6747 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 65 ( -6.7348 20.7483 52.5609 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 66 7 6.0210 30.0308 41.0560 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 67 § -5.3441 26.2192 48.4103 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 68 $ -7.1738 31.2486 51.7468 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 69 € -5.1233 41.2868 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 70 / -6.7247 24.9408 55.3288 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 71 C -4.8749 39.1489 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 72 * -5.0779 23.6397 21.2290 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 73 ” -6.4114 25.5049 20.0578 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 74 ? -5.5543 26.4727 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 75 { -6.7821 25.1716 52.5609 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 76 } -6.7092 25.1716 52.5609 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 77 , 26.9857 11.5049 20.7483 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 78 I -4.1407 21.7342 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 79 ° -5.2753 19.4471 18.8830 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 80 K -4.2806 47.4699 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 81 H -4.0283 49.0437 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 82 q 6.3008 36.1968 43.1940 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 83 & -5.4058 44.6379 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 84 ’ -6.7437 11.5049 20.0578 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 85 [ -6.9582 18.8830 52.5609 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 86 - 17.8974 17.3319 6.3078 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 87 Y -4.0343 46.5865 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 88 Q -5.6092 43.5511 53.5241 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 89 " -6.9120 23.0291 20.0578 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 90 ! -5.0501 10.9408 42.8561 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 91 x 8.3820 34.3078 28.0000 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 92 ) -6.5810 20.7483 52.5609 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 93 = 11.7068 30.3879 16.2451 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 94 + 3.9264 31.9572 31.9572 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 95 X -4.1918 47.1138 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 96 » 8.4322 28.0000 25.5049 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 97 ' -6.8950 9.3670 20.0578 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 98 ¢ -0.1224 29.6975 45.0592 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 99 Z -4.0966 40.1348 40.4681 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 100 > 3.6673 28.2500 32.5259 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 101 ® -5.3900 50.4457 50.4457 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 102 © -5.7132 50.4457 50.4457 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 103 ] -6.9090 18.8830 52.5609 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 104 é -8.2614 30.1152 45.5819 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 105 z 8.3963 28.0000 28.0000 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 106 _ 41.2982 41.0560 2.7259 -Georgia_Bold.ttf 98 ¢ 29.6975 45.0592 107 ¥ -4.1671 44.1379 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 1 t 3.7309 22.8029 37.7468 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 2 h -3.9236 38.3109 44.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 3 a 11.4582 31.8795 30.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 4 n 11.5397 38.5434 29.1940 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 5 P 0.2204 37.4968 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 6 o 11.2045 32.6103 30.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 7 e 11.5317 30.1152 30.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 8 : 12.6975 11.2741 29.1940 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 9 r 11.0675 29.1940 29.1940 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 10 l -3.9328 18.7339 44.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 11 i -3.9869 18.7339 44.8687 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 12 1 8.6524 23.6397 31.6891 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 13 | -4.2993 4.6330 56.5227 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 14 N 0.1887 47.1785 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 15 f -3.8645 28.2500 44.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 16 g 11.1454 32.5497 42.0000 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 17 d -4.0180 36.4457 45.5819 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 18 W -0.0648 68.0276 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 19 s 11.0541 25.8621 30.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 20 c 11.2032 28.9212 30.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 21 u 11.3916 38.2100 30.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 22 3 8.6510 32.5259 42.2500 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 23 ~ 18.1549 32.5497 12.2181 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 24 # 4.1119 32.2532 36.4457 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 25 O -1.2783 43.5511 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 26 ` -3.5946 15.1940 12.8060 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 27 @ 1.0290 47.4709 48.6411 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 28 F -0.1992 35.9650 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 29 S -1.4071 33.7437 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 30 p 11.6403 35.8397 42.0000 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 31 “ -2.8925 25.5049 20.0578 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 32 % -1.0698 46.1460 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 33 £ -1.1735 33.4471 41.6621 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 34 . 30.5497 11.2741 11.2741 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 35 2 8.5638 30.6653 31.6891 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 36 5 8.4866 31.3319 42.2500 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 37 m 11.0876 57.1474 29.1940 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 38 V 0.3562 47.4471 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 39 6 -1.3384 32.2997 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 40 w 12.2887 50.4457 28.0000 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 41 T -0.2331 38.0802 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 42 M -0.0274 56.5455 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 43 G -1.1254 45.5865 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 44 b -3.7414 35.7325 45.9198 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 45 9 9.0541 32.6330 42.3571 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 46 ; 12.3125 11.5049 39.3813 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 47 D -0.1798 44.3879 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 48 L -0.1498 38.0196 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 49 y 12.2466 35.2710 40.8060 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 50 ‘ -2.7707 11.5049 20.0578 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 51 \ -2.3397 24.9408 55.3288 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 52 R 0.1774 46.2759 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 53 < 8.1156 28.2500 32.5259 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 54 4 9.0743 34.6684 42.2500 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 55 8 -1.1144 33.3865 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 56 0 8.7523 34.6876 32.8830 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 57 A -0.2831 46.9902 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 58 E 0.0903 38.6908 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 59 B 0.3882 40.1348 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 60 v 12.3402 35.5017 28.0000 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 61 k -3.6459 37.9968 44.3879 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 62 J -0.1966 33.3235 41.6621 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 63 U -0.1449 46.9856 41.6621 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 64 j -4.3452 22.1730 57.6747 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 65 ( -2.6860 20.7483 52.5609 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 66 7 10.0825 30.0308 41.0560 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 67 § -1.1208 26.2192 48.4103 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 68 $ -3.3133 31.2486 51.7468 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 69 € -1.0407 41.2868 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 70 / -2.8022 24.9408 55.3288 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 71 C -1.0388 39.1489 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 72 * -1.3152 23.6397 21.2290 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 73 ” -2.6766 25.5049 20.0578 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 74 ? -1.1251 26.4727 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 75 { -2.8160 25.1716 52.5609 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 76 } -2.9536 25.1716 52.5609 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 77 , 31.0363 11.5049 20.7483 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 78 I -0.2057 21.7342 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 79 ° -1.1294 19.4471 18.8830 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 80 K -0.1704 47.4699 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 81 H 0.0565 49.0437 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 82 q 10.2323 36.1968 43.1940 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 83 & -1.2977 44.6379 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 84 ’ -2.8393 11.5049 20.0578 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 85 [ -2.6772 18.8830 52.5609 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 86 - 21.6633 17.3319 6.3078 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 87 Y -0.0524 46.5865 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 88 Q -1.1260 43.5511 53.5241 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 89 " -2.5584 23.0291 20.0578 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 90 ! -1.1295 10.9408 42.8561 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 91 x 12.3227 34.3078 28.0000 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 92 ) -2.9925 20.7483 52.5609 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 93 = 15.9679 30.3879 16.2451 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 94 + 8.1109 31.9572 31.9572 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 95 X -0.0438 47.1138 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 96 » 12.5138 28.0000 25.5049 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 97 ' -2.9680 9.3670 20.0578 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 98 ¢ 4.1662 29.6975 45.0592 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 99 Z -0.0076 40.1348 40.4681 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 100 > 7.8256 28.2500 32.5259 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 101 ® -1.4609 50.4457 50.4457 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 102 © -1.9443 50.4457 50.4457 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 103 ] -3.1386 18.8830 52.5609 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 104 é -3.7155 30.1152 45.5819 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 105 z 12.4362 28.0000 28.0000 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 106 _ 45.8890 41.0560 2.7259 -Georgia_Bold.ttf 99 Z 40.1348 40.4681 107 ¥ 0.0438 44.1379 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 1 t -4.0225 22.8029 37.7468 -Georgia_Bold.ttf 100 > 28.2500 32.5259 2 h -11.9908 38.3109 44.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 3 a 3.2053 31.8795 30.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 4 n 3.4607 38.5434 29.1940 -Georgia_Bold.ttf 100 > 28.2500 32.5259 5 P -7.8726 37.4968 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 6 o 3.5413 32.6103 30.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 7 e 3.5984 30.1152 30.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 8 : 4.6425 11.2741 29.1940 -Georgia_Bold.ttf 100 > 28.2500 32.5259 9 r 3.6537 29.1940 29.1940 -Georgia_Bold.ttf 100 > 28.2500 32.5259 10 l -11.9043 18.7339 44.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 11 i -12.3235 18.7339 44.8687 -Georgia_Bold.ttf 100 > 28.2500 32.5259 12 1 1.0328 23.6397 31.6891 -Georgia_Bold.ttf 100 > 28.2500 32.5259 13 | -12.1892 4.6330 56.5227 -Georgia_Bold.ttf 100 > 28.2500 32.5259 14 N -7.8670 47.1785 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 15 f -11.6981 28.2500 44.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 16 g 3.7450 32.5497 42.0000 -Georgia_Bold.ttf 100 > 28.2500 32.5259 17 d -12.0723 36.4457 45.5819 -Georgia_Bold.ttf 100 > 28.2500 32.5259 18 W -8.0224 68.0276 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 19 s 3.2518 25.8621 30.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 20 c 3.5863 28.9212 30.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 21 u 3.3743 38.2100 30.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 22 3 1.1231 32.5259 42.2500 -Georgia_Bold.ttf 100 > 28.2500 32.5259 23 ~ 10.2775 32.5497 12.2181 -Georgia_Bold.ttf 100 > 28.2500 32.5259 24 # -3.8055 32.2532 36.4457 -Georgia_Bold.ttf 100 > 28.2500 32.5259 25 O -8.8294 43.5511 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 26 ` -11.8676 15.1940 12.8060 -Georgia_Bold.ttf 100 > 28.2500 32.5259 27 @ -6.5009 47.4709 48.6411 -Georgia_Bold.ttf 100 > 28.2500 32.5259 28 F -7.7346 35.9650 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 29 S -8.7859 33.7437 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 30 p 3.2843 35.8397 42.0000 -Georgia_Bold.ttf 100 > 28.2500 32.5259 31 “ -10.7910 25.5049 20.0578 -Georgia_Bold.ttf 100 > 28.2500 32.5259 32 % -9.0991 46.1460 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 33 £ -9.0588 33.4471 41.6621 -Georgia_Bold.ttf 100 > 28.2500 32.5259 34 . 22.2765 11.2741 11.2741 -Georgia_Bold.ttf 100 > 28.2500 32.5259 35 2 0.8817 30.6653 31.6891 -Georgia_Bold.ttf 100 > 28.2500 32.5259 36 5 0.9890 31.3319 42.2500 -Georgia_Bold.ttf 100 > 28.2500 32.5259 37 m 3.3556 57.1474 29.1940 -Georgia_Bold.ttf 100 > 28.2500 32.5259 38 V -7.8194 47.4471 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 39 6 -9.6171 32.2997 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 40 w 4.4920 50.4457 28.0000 -Georgia_Bold.ttf 100 > 28.2500 32.5259 41 T -7.8121 38.0802 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 42 M -7.6365 56.5455 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 43 G -9.1468 45.5865 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 44 b -11.8895 35.7325 45.9198 -Georgia_Bold.ttf 100 > 28.2500 32.5259 45 9 0.8847 32.6330 42.3571 -Georgia_Bold.ttf 100 > 28.2500 32.5259 46 ; 4.4651 11.5049 39.3813 -Georgia_Bold.ttf 100 > 28.2500 32.5259 47 D -7.7809 44.3879 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 48 L -7.9102 38.0196 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 49 y 4.6786 35.2710 40.8060 -Georgia_Bold.ttf 100 > 28.2500 32.5259 50 ‘ -10.8429 11.5049 20.0578 -Georgia_Bold.ttf 100 > 28.2500 32.5259 51 \ -10.7807 24.9408 55.3288 -Georgia_Bold.ttf 100 > 28.2500 32.5259 52 R -7.7323 46.2759 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 53 < 0.1957 28.2500 32.5259 -Georgia_Bold.ttf 100 > 28.2500 32.5259 54 4 0.9309 34.6684 42.2500 -Georgia_Bold.ttf 100 > 28.2500 32.5259 55 8 -9.7618 33.3865 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 56 0 0.7932 34.6876 32.8830 -Georgia_Bold.ttf 100 > 28.2500 32.5259 57 A -7.8264 46.9902 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 58 E -7.9474 38.6908 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 59 B -8.0640 40.1348 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 60 v 4.5001 35.5017 28.0000 -Georgia_Bold.ttf 100 > 28.2500 32.5259 61 k -11.4978 37.9968 44.3879 -Georgia_Bold.ttf 100 > 28.2500 32.5259 62 J -7.9833 33.3235 41.6621 -Georgia_Bold.ttf 100 > 28.2500 32.5259 63 U -7.7013 46.9856 41.6621 -Georgia_Bold.ttf 100 > 28.2500 32.5259 64 j -12.0654 22.1730 57.6747 -Georgia_Bold.ttf 100 > 28.2500 32.5259 65 ( -10.7808 20.7483 52.5609 -Georgia_Bold.ttf 100 > 28.2500 32.5259 66 7 2.0231 30.0308 41.0560 -Georgia_Bold.ttf 100 > 28.2500 32.5259 67 § -8.9204 26.2192 48.4103 -Georgia_Bold.ttf 100 > 28.2500 32.5259 68 $ -11.0085 31.2486 51.7468 -Georgia_Bold.ttf 100 > 28.2500 32.5259 69 € -9.4262 41.2868 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 70 / -10.5750 24.9408 55.3288 -Georgia_Bold.ttf 100 > 28.2500 32.5259 71 C -8.9050 39.1489 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 72 * -8.8832 23.6397 21.2290 -Georgia_Bold.ttf 100 > 28.2500 32.5259 73 ” -10.8163 25.5049 20.0578 -Georgia_Bold.ttf 100 > 28.2500 32.5259 74 ? -9.0413 26.4727 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 75 { -10.5377 25.1716 52.5609 -Georgia_Bold.ttf 100 > 28.2500 32.5259 76 } -10.8830 25.1716 52.5609 -Georgia_Bold.ttf 100 > 28.2500 32.5259 77 , 23.4216 11.5049 20.7483 -Georgia_Bold.ttf 100 > 28.2500 32.5259 78 I -8.2006 21.7342 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 79 ° -9.2104 19.4471 18.8830 -Georgia_Bold.ttf 100 > 28.2500 32.5259 80 K -8.1186 47.4699 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 81 H -8.2081 49.0437 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 82 q 2.2178 36.1968 43.1940 -Georgia_Bold.ttf 100 > 28.2500 32.5259 83 & -8.9477 44.6379 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 84 ’ -10.7552 11.5049 20.0578 -Georgia_Bold.ttf 100 > 28.2500 32.5259 85 [ -10.7460 18.8830 52.5609 -Georgia_Bold.ttf 100 > 28.2500 32.5259 86 - 13.7758 17.3319 6.3078 -Georgia_Bold.ttf 100 > 28.2500 32.5259 87 Y -8.3571 46.5865 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 88 Q -9.3086 43.5511 53.5241 -Georgia_Bold.ttf 100 > 28.2500 32.5259 89 " -10.6611 23.0291 20.0578 -Georgia_Bold.ttf 100 > 28.2500 32.5259 90 ! -9.2572 10.9408 42.8561 -Georgia_Bold.ttf 100 > 28.2500 32.5259 91 x 4.4541 34.3078 28.0000 -Georgia_Bold.ttf 100 > 28.2500 32.5259 92 ) -10.8019 20.7483 52.5609 -Georgia_Bold.ttf 100 > 28.2500 32.5259 93 = 7.9489 30.3879 16.2451 -Georgia_Bold.ttf 100 > 28.2500 32.5259 94 + 0.1259 31.9572 31.9572 -Georgia_Bold.ttf 100 > 28.2500 32.5259 95 X -7.9339 47.1138 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 96 » 4.4369 28.0000 25.5049 -Georgia_Bold.ttf 100 > 28.2500 32.5259 97 ' -10.6674 9.3670 20.0578 -Georgia_Bold.ttf 100 > 28.2500 32.5259 98 ¢ -4.0807 29.6975 45.0592 -Georgia_Bold.ttf 100 > 28.2500 32.5259 99 Z -8.0353 40.1348 40.4681 -Georgia_Bold.ttf 100 > 28.2500 32.5259 100 > 0.1544 28.2500 32.5259 -Georgia_Bold.ttf 100 > 28.2500 32.5259 101 ® -9.4866 50.4457 50.4457 -Georgia_Bold.ttf 100 > 28.2500 32.5259 102 © -9.4884 50.4457 50.4457 -Georgia_Bold.ttf 100 > 28.2500 32.5259 103 ] -10.9271 18.8830 52.5609 -Georgia_Bold.ttf 100 > 28.2500 32.5259 104 é -11.8998 30.1152 45.5819 -Georgia_Bold.ttf 100 > 28.2500 32.5259 105 z 4.3549 28.0000 28.0000 -Georgia_Bold.ttf 100 > 28.2500 32.5259 106 _ 37.5497 41.0560 2.7259 -Georgia_Bold.ttf 100 > 28.2500 32.5259 107 ¥ -7.7656 44.1379 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 1 t 5.5693 22.8029 37.7468 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 2 h -2.2753 38.3109 44.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 3 a 12.6325 31.8795 30.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 4 n 12.7449 38.5434 29.1940 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 5 P 1.2678 37.4968 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 6 o 12.9389 32.6103 30.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 7 e 12.8542 30.1152 30.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 8 : 13.8811 11.2741 29.1940 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 9 r 12.5587 29.1940 29.1940 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 10 l -2.2957 18.7339 44.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 11 i -3.1398 18.7339 44.8687 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 12 1 10.1274 23.6397 31.6891 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 13 | -2.4727 4.6330 56.5227 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 14 N 1.7203 47.1785 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 15 f -2.3080 28.2500 44.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 16 g 12.3672 32.5497 42.0000 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 17 d -1.9518 36.4457 45.5819 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 18 W 1.6611 68.0276 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 19 s 12.6517 25.8621 30.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 20 c 12.5084 28.9212 30.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 21 u 12.5740 38.2100 30.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 22 3 10.5051 32.5259 42.2500 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 23 ~ 19.4196 32.5497 12.2181 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 24 # 5.5690 32.2532 36.4457 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 25 O 0.1768 43.5511 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 26 ` -2.5020 15.1940 12.8060 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 27 @ 2.7348 47.4709 48.6411 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 28 F 1.1576 35.9650 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 29 S 0.5488 33.7437 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 30 p 13.0610 35.8397 42.0000 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 31 “ -1.4146 25.5049 20.0578 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 32 % 0.1403 46.1460 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 33 £ 0.3287 33.4471 41.6621 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 34 . 31.6964 11.2741 11.2741 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 35 2 10.2302 30.6653 31.6891 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 36 5 10.5306 31.3319 42.2500 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 37 m 12.6939 57.1474 29.1940 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 38 V 1.2765 47.4471 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 39 6 0.3229 32.2997 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 40 w 13.8457 50.4457 28.0000 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 41 T 1.6037 38.0802 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 42 M 1.5687 56.5455 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 43 G 0.2090 45.5865 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 44 b -2.1653 35.7325 45.9198 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 45 9 10.6826 32.6330 42.3571 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 46 ; 13.6427 11.5049 39.3813 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 47 D 1.8281 44.3879 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 48 L 1.7239 38.0196 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 49 y 13.8615 35.2710 40.8060 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 50 ‘ -0.9883 11.5049 20.0578 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 51 \ -1.2607 24.9408 55.3288 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 52 R 1.1076 46.2759 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 53 < 9.5435 28.2500 32.5259 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 54 4 10.3636 34.6684 42.2500 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 55 8 -0.2145 33.3865 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 56 0 10.2897 34.6876 32.8830 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 57 A 1.7166 46.9902 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 58 E 1.6491 38.6908 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 59 B 1.2786 40.1348 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 60 v 13.9707 35.5017 28.0000 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 61 k -2.2850 37.9968 44.3879 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 62 J 1.7820 33.3235 41.6621 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 63 U 1.2741 46.9856 41.6621 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 64 j -3.0926 22.1730 57.6747 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 65 ( -1.4348 20.7483 52.5609 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 66 7 11.9562 30.0308 41.0560 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 67 § 0.6506 26.2192 48.4103 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 68 $ -1.6741 31.2486 51.7468 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 69 € 0.0411 41.2868 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 70 / -1.3402 24.9408 55.3288 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 71 C 0.3128 39.1489 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 72 * 0.4607 23.6397 21.2290 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 73 ” -1.3390 25.5049 20.0578 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 74 ? -0.0708 26.4727 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 75 { -1.3938 25.1716 52.5609 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 76 } -1.5307 25.1716 52.5609 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 77 , 32.6852 11.5049 20.7483 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 78 I 1.2268 21.7342 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 79 ° 0.0153 19.4471 18.8830 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 80 K 1.4332 47.4699 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 81 H 1.4348 49.0437 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 82 q 11.1087 36.1968 43.1940 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 83 & 0.2360 44.6379 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 84 ’ -0.9775 11.5049 20.0578 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 85 [ -1.0348 18.8830 52.5609 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 86 - 23.1549 17.3319 6.3078 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 87 Y 1.7232 46.5865 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 88 Q 0.3593 43.5511 53.5241 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 89 " -1.4346 23.0291 20.0578 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 90 ! 0.3495 10.9408 42.8561 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 91 x 14.2022 34.3078 28.0000 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 92 ) -1.2149 20.7483 52.5609 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 93 = 17.1762 30.3879 16.2451 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 94 + 9.8896 31.9572 31.9572 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 95 X 1.5396 47.1138 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 96 » 13.6540 28.0000 25.5049 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 97 ' -0.8432 9.3670 20.0578 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 98 ¢ 5.6478 29.6975 45.0592 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 99 Z 1.5972 40.1348 40.4681 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 100 > 9.4383 28.2500 32.5259 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 101 ® -0.1256 50.4457 50.4457 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 102 © -0.0606 50.4457 50.4457 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 103 ] -1.2268 18.8830 52.5609 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 104 é -2.3290 30.1152 45.5819 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 105 z 13.6986 28.0000 28.0000 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 106 _ 46.9715 41.0560 2.7259 -Georgia_Bold.ttf 101 ® 50.4457 50.4457 107 ¥ 1.6570 44.1379 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 1 t 5.0068 22.8029 37.7468 -Georgia_Bold.ttf 102 © 50.4457 50.4457 2 h -2.4153 38.3109 44.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 3 a 12.7869 31.8795 30.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 4 n 13.0262 38.5434 29.1940 -Georgia_Bold.ttf 102 © 50.4457 50.4457 5 P 1.1488 37.4968 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 6 o 12.7280 32.6103 30.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 7 e 12.7620 30.1152 30.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 8 : 13.7663 11.2741 29.1940 -Georgia_Bold.ttf 102 © 50.4457 50.4457 9 r 12.7087 29.1940 29.1940 -Georgia_Bold.ttf 102 © 50.4457 50.4457 10 l -2.5829 18.7339 44.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 11 i -2.8345 18.7339 44.8687 -Georgia_Bold.ttf 102 © 50.4457 50.4457 12 1 10.0612 23.6397 31.6891 -Georgia_Bold.ttf 102 © 50.4457 50.4457 13 | -2.6710 4.6330 56.5227 -Georgia_Bold.ttf 102 © 50.4457 50.4457 14 N 1.6001 47.1785 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 15 f -2.3008 28.2500 44.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 16 g 12.7259 32.5497 42.0000 -Georgia_Bold.ttf 102 © 50.4457 50.4457 17 d -2.9161 36.4457 45.5819 -Georgia_Bold.ttf 102 © 50.4457 50.4457 18 W 1.4267 68.0276 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 19 s 12.7152 25.8621 30.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 20 c 12.8031 28.9212 30.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 21 u 12.7528 38.2100 30.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 22 3 10.3863 32.5259 42.2500 -Georgia_Bold.ttf 102 © 50.4457 50.4457 23 ~ 19.5974 32.5497 12.2181 -Georgia_Bold.ttf 102 © 50.4457 50.4457 24 # 5.4602 32.2532 36.4457 -Georgia_Bold.ttf 102 © 50.4457 50.4457 25 O 0.2303 43.5511 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 26 ` -2.4420 15.1940 12.8060 -Georgia_Bold.ttf 102 © 50.4457 50.4457 27 @ 2.6497 47.4709 48.6411 -Georgia_Bold.ttf 102 © 50.4457 50.4457 28 F 1.6729 35.9650 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 29 S 0.4899 33.7437 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 30 p 12.4289 35.8397 42.0000 -Georgia_Bold.ttf 102 © 50.4457 50.4457 31 “ -1.0717 25.5049 20.0578 -Georgia_Bold.ttf 102 © 50.4457 50.4457 32 % 0.4349 46.1460 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 33 £ 0.1387 33.4471 41.6621 -Georgia_Bold.ttf 102 © 50.4457 50.4457 34 . 32.0115 11.2741 11.2741 -Georgia_Bold.ttf 102 © 50.4457 50.4457 35 2 10.2838 30.6653 31.6891 -Georgia_Bold.ttf 102 © 50.4457 50.4457 36 5 10.1863 31.3319 42.2500 -Georgia_Bold.ttf 102 © 50.4457 50.4457 37 m 13.0112 57.1474 29.1940 -Georgia_Bold.ttf 102 © 50.4457 50.4457 38 V 1.7413 47.4471 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 39 6 -0.0022 32.2997 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 40 w 13.8024 50.4457 28.0000 -Georgia_Bold.ttf 102 © 50.4457 50.4457 41 T 1.1950 38.0802 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 42 M 1.5262 56.5455 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 43 G 0.4989 45.5865 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 44 b -2.3299 35.7325 45.9198 -Georgia_Bold.ttf 102 © 50.4457 50.4457 45 9 10.4861 32.6330 42.3571 -Georgia_Bold.ttf 102 © 50.4457 50.4457 46 ; 13.8961 11.5049 39.3813 -Georgia_Bold.ttf 102 © 50.4457 50.4457 47 D 1.6670 44.3879 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 48 L 1.3975 38.0196 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 49 y 14.3068 35.2710 40.8060 -Georgia_Bold.ttf 102 © 50.4457 50.4457 50 ‘ -1.1743 11.5049 20.0578 -Georgia_Bold.ttf 102 © 50.4457 50.4457 51 \ -1.3240 24.9408 55.3288 -Georgia_Bold.ttf 102 © 50.4457 50.4457 52 R 1.5743 46.2759 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 53 < 9.6892 28.2500 32.5259 -Georgia_Bold.ttf 102 © 50.4457 50.4457 54 4 10.2442 34.6684 42.2500 -Georgia_Bold.ttf 102 © 50.4457 50.4457 55 8 0.1349 33.3865 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 56 0 10.4577 34.6876 32.8830 -Georgia_Bold.ttf 102 © 50.4457 50.4457 57 A 1.7406 46.9902 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 58 E 1.5278 38.6908 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 59 B 1.1706 40.1348 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 60 v 14.0667 35.5017 28.0000 -Georgia_Bold.ttf 102 © 50.4457 50.4457 61 k -2.2070 37.9968 44.3879 -Georgia_Bold.ttf 102 © 50.4457 50.4457 62 J 1.2759 33.3235 41.6621 -Georgia_Bold.ttf 102 © 50.4457 50.4457 63 U 1.5281 46.9856 41.6621 -Georgia_Bold.ttf 102 © 50.4457 50.4457 64 j -3.0139 22.1730 57.6747 -Georgia_Bold.ttf 102 © 50.4457 50.4457 65 ( -1.2699 20.7483 52.5609 -Georgia_Bold.ttf 102 © 50.4457 50.4457 66 7 11.4867 30.0308 41.0560 -Georgia_Bold.ttf 102 © 50.4457 50.4457 67 § 0.5831 26.2192 48.4103 -Georgia_Bold.ttf 102 © 50.4457 50.4457 68 $ -2.1446 31.2486 51.7468 -Georgia_Bold.ttf 102 © 50.4457 50.4457 69 € 0.3876 41.2868 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 70 / -1.0152 24.9408 55.3288 -Georgia_Bold.ttf 102 © 50.4457 50.4457 71 C 0.4855 39.1489 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 72 * 0.5134 23.6397 21.2290 -Georgia_Bold.ttf 102 © 50.4457 50.4457 73 ” -1.3639 25.5049 20.0578 -Georgia_Bold.ttf 102 © 50.4457 50.4457 74 ? 0.1629 26.4727 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 75 { -1.6166 25.1716 52.5609 -Georgia_Bold.ttf 102 © 50.4457 50.4457 76 } -1.5217 25.1716 52.5609 -Georgia_Bold.ttf 102 © 50.4457 50.4457 77 , 33.0552 11.5049 20.7483 -Georgia_Bold.ttf 102 © 50.4457 50.4457 78 I 1.7569 21.7342 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 79 ° 0.5435 19.4471 18.8830 -Georgia_Bold.ttf 102 © 50.4457 50.4457 80 K 1.3448 47.4699 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 81 H 1.2394 49.0437 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 82 q 11.5277 36.1968 43.1940 -Georgia_Bold.ttf 102 © 50.4457 50.4457 83 & 0.5360 44.6379 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 84 ’ -1.1713 11.5049 20.0578 -Georgia_Bold.ttf 102 © 50.4457 50.4457 85 [ -1.4672 18.8830 52.5609 -Georgia_Bold.ttf 102 © 50.4457 50.4457 86 - 23.7686 17.3319 6.3078 -Georgia_Bold.ttf 102 © 50.4457 50.4457 87 Y 1.6652 46.5865 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 88 Q 0.4341 43.5511 53.5241 -Georgia_Bold.ttf 102 © 50.4457 50.4457 89 " -1.3645 23.0291 20.0578 -Georgia_Bold.ttf 102 © 50.4457 50.4457 90 ! -0.0493 10.9408 42.8561 -Georgia_Bold.ttf 102 © 50.4457 50.4457 91 x 13.7749 34.3078 28.0000 -Georgia_Bold.ttf 102 © 50.4457 50.4457 92 ) -1.3181 20.7483 52.5609 -Georgia_Bold.ttf 102 © 50.4457 50.4457 93 = 17.5768 30.3879 16.2451 -Georgia_Bold.ttf 102 © 50.4457 50.4457 94 + 9.6383 31.9572 31.9572 -Georgia_Bold.ttf 102 © 50.4457 50.4457 95 X 1.6101 47.1138 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 96 » 13.6216 28.0000 25.5049 -Georgia_Bold.ttf 102 © 50.4457 50.4457 97 ' -0.8881 9.3670 20.0578 -Georgia_Bold.ttf 102 © 50.4457 50.4457 98 ¢ 5.8321 29.6975 45.0592 -Georgia_Bold.ttf 102 © 50.4457 50.4457 99 Z 1.3358 40.1348 40.4681 -Georgia_Bold.ttf 102 © 50.4457 50.4457 100 > 9.3238 28.2500 32.5259 -Georgia_Bold.ttf 102 © 50.4457 50.4457 101 ® 0.0385 50.4457 50.4457 -Georgia_Bold.ttf 102 © 50.4457 50.4457 102 © 0.4059 50.4457 50.4457 -Georgia_Bold.ttf 102 © 50.4457 50.4457 103 ] -1.2112 18.8830 52.5609 -Georgia_Bold.ttf 102 © 50.4457 50.4457 104 é -2.6845 30.1152 45.5819 -Georgia_Bold.ttf 102 © 50.4457 50.4457 105 z 13.9097 28.0000 28.0000 -Georgia_Bold.ttf 102 © 50.4457 50.4457 106 _ 47.3359 41.0560 2.7259 -Georgia_Bold.ttf 102 © 50.4457 50.4457 107 ¥ 1.8356 44.1379 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 1 t 6.6336 22.8029 37.7468 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 2 h -1.3566 38.3109 44.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 3 a 13.7989 31.8795 30.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 4 n 13.9588 38.5434 29.1940 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 5 P 2.8649 37.4968 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 6 o 13.7925 32.6103 30.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 7 e 13.9615 30.1152 30.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 8 : 15.0082 11.2741 29.1940 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 9 r 13.8847 29.1940 29.1940 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 10 l -1.0023 18.7339 44.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 11 i -1.6915 18.7339 44.8687 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 12 1 11.3473 23.6397 31.6891 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 13 | -1.1593 4.6330 56.5227 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 14 N 2.7675 47.1785 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 15 f -1.2783 28.2500 44.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 16 g 13.8363 32.5497 42.0000 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 17 d -1.0593 36.4457 45.5819 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 18 W 2.6105 68.0276 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 19 s 14.0906 25.8621 30.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 20 c 14.1070 28.9212 30.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 21 u 14.1640 38.2100 30.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 22 3 11.4990 32.5259 42.2500 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 23 ~ 20.9617 32.5497 12.2181 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 24 # 6.5348 32.2532 36.4457 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 25 O 1.6977 43.5511 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 26 ` -1.1513 15.1940 12.8060 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 27 @ 3.8263 47.4709 48.6411 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 28 F 2.6466 35.9650 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 29 S 1.3604 33.7437 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 30 p 13.9726 35.8397 42.0000 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 31 “ -0.0812 25.5049 20.0578 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 32 % 1.3168 46.1460 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 33 £ 1.4027 33.4471 41.6621 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 34 . 32.9847 11.2741 11.2741 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 35 2 11.4232 30.6653 31.6891 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 36 5 11.3958 31.3319 42.2500 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 37 m 14.0000 57.1474 29.1940 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 38 V 2.5315 47.4471 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 39 6 1.5676 32.2997 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 40 w 15.0827 50.4457 28.0000 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 41 T 2.7759 38.0802 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 42 M 2.5517 56.5455 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 43 G 1.3837 45.5865 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 44 b -1.3849 35.7325 45.9198 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 45 9 11.5081 32.6330 42.3571 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 46 ; 15.5438 11.5049 39.3813 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 47 D 2.6212 44.3879 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 48 L 2.4992 38.0196 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 49 y 15.0365 35.2710 40.8060 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 50 ‘ -0.1017 11.5049 20.0578 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 51 \ -0.2205 24.9408 55.3288 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 52 R 2.6936 46.2759 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 53 < 10.5799 28.2500 32.5259 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 54 4 11.6536 34.6684 42.2500 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 55 8 1.6639 33.3865 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 56 0 11.3462 34.6876 32.8830 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 57 A 2.7560 46.9902 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 58 E 2.6971 38.6908 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 59 B 3.0358 40.1348 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 60 v 15.1708 35.5017 28.0000 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 61 k -1.0485 37.9968 44.3879 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 62 J 2.4600 33.3235 41.6621 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 63 U 2.5683 46.9856 41.6621 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 64 j -1.3319 22.1730 57.6747 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 65 ( 0.0524 20.7483 52.5609 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 66 7 12.7791 30.0308 41.0560 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 67 § 1.5755 26.2192 48.4103 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 68 $ -0.4906 31.2486 51.7468 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 69 € 1.5480 41.2868 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 70 / 0.1214 24.9408 55.3288 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 71 C 1.5725 39.1489 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 72 * 1.5246 23.6397 21.2290 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 73 ” 0.0720 25.5049 20.0578 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 74 ? 1.4281 26.4727 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 75 { -0.0756 25.1716 52.5609 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 76 } -0.0931 25.1716 52.5609 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 77 , 33.6431 11.5049 20.7483 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 78 I 2.3441 21.7342 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 79 ° 1.6166 19.4471 18.8830 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 80 K 2.7420 47.4699 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 81 H 2.7965 49.0437 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 82 q 12.8039 36.1968 43.1940 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 83 & 1.3910 44.6379 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 84 ’ -0.1325 11.5049 20.0578 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 85 [ -0.2981 18.8830 52.5609 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 86 - 24.6446 17.3319 6.3078 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 87 Y 2.5535 46.5865 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 88 Q 1.5787 43.5511 53.5241 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 89 " -0.1062 23.0291 20.0578 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 90 ! 1.6368 10.9408 42.8561 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 91 x 15.0456 34.3078 28.0000 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 92 ) -0.0833 20.7483 52.5609 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 93 = 18.3655 30.3879 16.2451 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 94 + 10.8104 31.9572 31.9572 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 95 X 2.5901 47.1138 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 96 » 15.1258 28.0000 25.5049 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 97 ' 0.1062 9.3670 20.0578 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 98 ¢ 6.7552 29.6975 45.0592 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 99 Z 2.6721 40.1348 40.4681 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 100 > 10.7657 28.2500 32.5259 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 101 ® 1.0243 50.4457 50.4457 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 102 © 1.2811 50.4457 50.4457 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 103 ] 0.1597 18.8830 52.5609 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 104 é -1.2145 30.1152 45.5819 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 105 z 15.2986 28.0000 28.0000 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 106 _ 48.5215 41.0560 2.7259 -Georgia_Bold.ttf 103 ] 18.8830 52.5609 107 ¥ 2.8143 44.1379 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 1 t 7.7972 22.8029 37.7468 -Georgia_Bold.ttf 104 é 30.1152 45.5819 2 h -0.2952 38.3109 44.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 3 a 15.3801 31.8795 30.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 4 n 15.0408 38.5434 29.1940 -Georgia_Bold.ttf 104 é 30.1152 45.5819 5 P 4.1311 37.4968 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 6 o 15.0397 32.6103 30.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 7 e 15.1440 30.1152 30.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 8 : 16.4047 11.2741 29.1940 -Georgia_Bold.ttf 104 é 30.1152 45.5819 9 r 15.1419 29.1940 29.1940 -Georgia_Bold.ttf 104 é 30.1152 45.5819 10 l -0.1970 18.7339 44.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 11 i -0.3727 18.7339 44.8687 -Georgia_Bold.ttf 104 é 30.1152 45.5819 12 1 12.7637 23.6397 31.6891 -Georgia_Bold.ttf 104 é 30.1152 45.5819 13 | -0.0107 4.6330 56.5227 -Georgia_Bold.ttf 104 é 30.1152 45.5819 14 N 4.0134 47.1785 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 15 f -0.0752 28.2500 44.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 16 g 15.1478 32.5497 42.0000 -Georgia_Bold.ttf 104 é 30.1152 45.5819 17 d -0.3533 36.4457 45.5819 -Georgia_Bold.ttf 104 é 30.1152 45.5819 18 W 4.0583 68.0276 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 19 s 15.1348 25.8621 30.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 20 c 15.3626 28.9212 30.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 21 u 15.0606 38.2100 30.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 22 3 12.7282 32.5259 42.2500 -Georgia_Bold.ttf 104 é 30.1152 45.5819 23 ~ 21.3676 32.5497 12.2181 -Georgia_Bold.ttf 104 é 30.1152 45.5819 24 # 7.9339 32.2532 36.4457 -Georgia_Bold.ttf 104 é 30.1152 45.5819 25 O 2.4698 43.5511 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 26 ` -0.0908 15.1940 12.8060 -Georgia_Bold.ttf 104 é 30.1152 45.5819 27 @ 4.9458 47.4709 48.6411 -Georgia_Bold.ttf 104 é 30.1152 45.5819 28 F 4.3132 35.9650 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 29 S 2.6848 33.7437 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 30 p 15.0518 35.8397 42.0000 -Georgia_Bold.ttf 104 é 30.1152 45.5819 31 “ 1.0940 25.5049 20.0578 -Georgia_Bold.ttf 104 é 30.1152 45.5819 32 % 2.7129 46.1460 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 33 £ 2.7643 33.4471 41.6621 -Georgia_Bold.ttf 104 é 30.1152 45.5819 34 . 34.3193 11.2741 11.2741 -Georgia_Bold.ttf 104 é 30.1152 45.5819 35 2 12.7594 30.6653 31.6891 -Georgia_Bold.ttf 104 é 30.1152 45.5819 36 5 12.8365 31.3319 42.2500 -Georgia_Bold.ttf 104 é 30.1152 45.5819 37 m 15.4085 57.1474 29.1940 -Georgia_Bold.ttf 104 é 30.1152 45.5819 38 V 3.8986 47.4471 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 39 6 2.9348 32.2997 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 40 w 15.9413 50.4457 28.0000 -Georgia_Bold.ttf 104 é 30.1152 45.5819 41 T 4.0000 38.0802 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 42 M 3.7574 56.5455 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 43 G 2.7242 45.5865 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 44 b 0.1000 35.7325 45.9198 -Georgia_Bold.ttf 104 é 30.1152 45.5819 45 9 12.7210 32.6330 42.3571 -Georgia_Bold.ttf 104 é 30.1152 45.5819 46 ; 16.3046 11.5049 39.3813 -Georgia_Bold.ttf 104 é 30.1152 45.5819 47 D 3.9450 44.3879 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 48 L 3.9940 38.0196 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 49 y 16.4033 35.2710 40.8060 -Georgia_Bold.ttf 104 é 30.1152 45.5819 50 ‘ 1.1660 11.5049 20.0578 -Georgia_Bold.ttf 104 é 30.1152 45.5819 51 \ 1.1523 24.9408 55.3288 -Georgia_Bold.ttf 104 é 30.1152 45.5819 52 R 4.3304 46.2759 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 53 < 11.5432 28.2500 32.5259 -Georgia_Bold.ttf 104 é 30.1152 45.5819 54 4 13.0594 34.6684 42.2500 -Georgia_Bold.ttf 104 é 30.1152 45.5819 55 8 3.0665 33.3865 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 56 0 12.4725 34.6876 32.8830 -Georgia_Bold.ttf 104 é 30.1152 45.5819 57 A 3.7367 46.9902 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 58 E 4.2248 38.6908 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 59 B 3.8764 40.1348 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 60 v 16.1788 35.5017 28.0000 -Georgia_Bold.ttf 104 é 30.1152 45.5819 61 k 0.1864 37.9968 44.3879 -Georgia_Bold.ttf 104 é 30.1152 45.5819 62 J 3.8820 33.3235 41.6621 -Georgia_Bold.ttf 104 é 30.1152 45.5819 63 U 4.0587 46.9856 41.6621 -Georgia_Bold.ttf 104 é 30.1152 45.5819 64 j -0.4385 22.1730 57.6747 -Georgia_Bold.ttf 104 é 30.1152 45.5819 65 ( 1.1698 20.7483 52.5609 -Georgia_Bold.ttf 104 é 30.1152 45.5819 66 7 13.9587 30.0308 41.0560 -Georgia_Bold.ttf 104 é 30.1152 45.5819 67 § 2.5304 26.2192 48.4103 -Georgia_Bold.ttf 104 é 30.1152 45.5819 68 $ 0.4663 31.2486 51.7468 -Georgia_Bold.ttf 104 é 30.1152 45.5819 69 € 2.7995 41.2868 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 70 / 1.0529 24.9408 55.3288 -Georgia_Bold.ttf 104 é 30.1152 45.5819 71 C 2.6374 39.1489 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 72 * 2.4925 23.6397 21.2290 -Georgia_Bold.ttf 104 é 30.1152 45.5819 73 ” 1.4244 25.5049 20.0578 -Georgia_Bold.ttf 104 é 30.1152 45.5819 74 ? 2.5692 26.4727 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 75 { 1.2978 25.1716 52.5609 -Georgia_Bold.ttf 104 é 30.1152 45.5819 76 } 1.0243 25.1716 52.5609 -Georgia_Bold.ttf 104 é 30.1152 45.5819 77 , 35.3922 11.5049 20.7483 -Georgia_Bold.ttf 104 é 30.1152 45.5819 78 I 3.9369 21.7342 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 79 ° 2.7703 19.4471 18.8830 -Georgia_Bold.ttf 104 é 30.1152 45.5819 80 K 4.0000 47.4699 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 81 H 3.7321 49.0437 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 82 q 13.9745 36.1968 43.1940 -Georgia_Bold.ttf 104 é 30.1152 45.5819 83 & 2.9000 44.6379 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 84 ’ 1.2048 11.5049 20.0578 -Georgia_Bold.ttf 104 é 30.1152 45.5819 85 [ 1.4515 18.8830 52.5609 -Georgia_Bold.ttf 104 é 30.1152 45.5819 86 - 25.7246 17.3319 6.3078 -Georgia_Bold.ttf 104 é 30.1152 45.5819 87 Y 3.9911 46.5865 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 88 Q 2.5439 43.5511 53.5241 -Georgia_Bold.ttf 104 é 30.1152 45.5819 89 " 1.4152 23.0291 20.0578 -Georgia_Bold.ttf 104 é 30.1152 45.5819 90 ! 2.7643 10.9408 42.8561 -Georgia_Bold.ttf 104 é 30.1152 45.5819 91 x 16.1584 34.3078 28.0000 -Georgia_Bold.ttf 104 é 30.1152 45.5819 92 ) 1.1727 20.7483 52.5609 -Georgia_Bold.ttf 104 é 30.1152 45.5819 93 = 19.7133 30.3879 16.2451 -Georgia_Bold.ttf 104 é 30.1152 45.5819 94 + 12.0445 31.9572 31.9572 -Georgia_Bold.ttf 104 é 30.1152 45.5819 95 X 3.9771 47.1138 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 96 » 16.2758 28.0000 25.5049 -Georgia_Bold.ttf 104 é 30.1152 45.5819 97 ' 1.3932 9.3670 20.0578 -Georgia_Bold.ttf 104 é 30.1152 45.5819 98 ¢ 7.9481 29.6975 45.0592 -Georgia_Bold.ttf 104 é 30.1152 45.5819 99 Z 3.7410 40.1348 40.4681 -Georgia_Bold.ttf 104 é 30.1152 45.5819 100 > 11.8982 28.2500 32.5259 -Georgia_Bold.ttf 104 é 30.1152 45.5819 101 ® 2.5903 50.4457 50.4457 -Georgia_Bold.ttf 104 é 30.1152 45.5819 102 © 2.3522 50.4457 50.4457 -Georgia_Bold.ttf 104 é 30.1152 45.5819 103 ] 1.0194 18.8830 52.5609 -Georgia_Bold.ttf 104 é 30.1152 45.5819 104 é -0.0339 30.1152 45.5819 -Georgia_Bold.ttf 104 é 30.1152 45.5819 105 z 16.2185 28.0000 28.0000 -Georgia_Bold.ttf 104 é 30.1152 45.5819 106 _ 49.6658 41.0560 2.7259 -Georgia_Bold.ttf 104 é 30.1152 45.5819 107 ¥ 3.9171 44.1379 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 1 t -8.5295 22.8029 37.7468 -Georgia_Bold.ttf 105 z 28.0000 28.0000 2 h -16.4162 38.3109 44.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 3 a -1.1862 31.8795 30.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 4 n -1.2737 38.5434 29.1940 -Georgia_Bold.ttf 105 z 28.0000 28.0000 5 P -12.3394 37.4968 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 6 o -1.0133 32.6103 30.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 7 e -1.2171 30.1152 30.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 8 : -0.1460 11.2741 29.1940 -Georgia_Bold.ttf 105 z 28.0000 28.0000 9 r -1.4711 29.1940 29.1940 -Georgia_Bold.ttf 105 z 28.0000 28.0000 10 l -16.5514 18.7339 44.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 11 i -16.9225 18.7339 44.8687 -Georgia_Bold.ttf 105 z 28.0000 28.0000 12 1 -3.4702 23.6397 31.6891 -Georgia_Bold.ttf 105 z 28.0000 28.0000 13 | -16.3995 4.6330 56.5227 -Georgia_Bold.ttf 105 z 28.0000 28.0000 14 N -12.5318 47.1785 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 15 f -16.2842 28.2500 44.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 16 g -1.2779 32.5497 42.0000 -Georgia_Bold.ttf 105 z 28.0000 28.0000 17 d -16.4290 36.4457 45.5819 -Georgia_Bold.ttf 105 z 28.0000 28.0000 18 W -12.4880 68.0276 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 19 s -1.1478 25.8621 30.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 20 c -1.4074 28.9212 30.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 21 u -1.2335 38.2100 30.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 22 3 -3.6866 32.5259 42.2500 -Georgia_Bold.ttf 105 z 28.0000 28.0000 23 ~ 5.4390 32.5497 12.2181 -Georgia_Bold.ttf 105 z 28.0000 28.0000 24 # -8.4555 32.2532 36.4457 -Georgia_Bold.ttf 105 z 28.0000 28.0000 25 O -13.5585 43.5511 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 26 ` -16.3451 15.1940 12.8060 -Georgia_Bold.ttf 105 z 28.0000 28.0000 27 @ -11.5303 47.4709 48.6411 -Georgia_Bold.ttf 105 z 28.0000 28.0000 28 F -12.6354 35.9650 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 29 S -13.6690 33.7437 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 30 p -1.1184 35.8397 42.0000 -Georgia_Bold.ttf 105 z 28.0000 28.0000 31 “ -15.2359 25.5049 20.0578 -Georgia_Bold.ttf 105 z 28.0000 28.0000 32 % -13.5008 46.1460 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 33 £ -13.6893 33.4471 41.6621 -Georgia_Bold.ttf 105 z 28.0000 28.0000 34 . 17.8972 11.2741 11.2741 -Georgia_Bold.ttf 105 z 28.0000 28.0000 35 2 -3.6428 30.6653 31.6891 -Georgia_Bold.ttf 105 z 28.0000 28.0000 36 5 -3.8309 31.3319 42.2500 -Georgia_Bold.ttf 105 z 28.0000 28.0000 37 m -1.2233 57.1474 29.1940 -Georgia_Bold.ttf 105 z 28.0000 28.0000 38 V -12.5098 47.4471 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 39 6 -13.8384 32.2997 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 40 w -0.0539 50.4457 28.0000 -Georgia_Bold.ttf 105 z 28.0000 28.0000 41 T -12.1689 38.0802 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 42 M -12.4272 56.5455 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 43 G -13.6523 45.5865 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 44 b -16.2610 35.7325 45.9198 -Georgia_Bold.ttf 105 z 28.0000 28.0000 45 9 -3.6293 32.6330 42.3571 -Georgia_Bold.ttf 105 z 28.0000 28.0000 46 ; 0.1449 11.5049 39.3813 -Georgia_Bold.ttf 105 z 28.0000 28.0000 47 D -12.5292 44.3879 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 48 L -12.7068 38.0196 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 49 y 0.0436 35.2710 40.8060 -Georgia_Bold.ttf 105 z 28.0000 28.0000 50 ‘ -15.3518 11.5049 20.0578 -Georgia_Bold.ttf 105 z 28.0000 28.0000 51 \ -15.2728 24.9408 55.3288 -Georgia_Bold.ttf 105 z 28.0000 28.0000 52 R -12.6840 46.2759 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 53 < -4.7767 28.2500 32.5259 -Georgia_Bold.ttf 105 z 28.0000 28.0000 54 4 -3.6057 34.6684 42.2500 -Georgia_Bold.ttf 105 z 28.0000 28.0000 55 8 -13.7898 33.3865 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 56 0 -3.4709 34.6876 32.8830 -Georgia_Bold.ttf 105 z 28.0000 28.0000 57 A -12.5265 46.9902 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 58 E -12.5463 38.6908 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 59 B -12.5532 40.1348 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 60 v -0.2990 35.5017 28.0000 -Georgia_Bold.ttf 105 z 28.0000 28.0000 61 k -16.5603 37.9968 44.3879 -Georgia_Bold.ttf 105 z 28.0000 28.0000 62 J -12.5241 33.3235 41.6621 -Georgia_Bold.ttf 105 z 28.0000 28.0000 63 U -12.4391 46.9856 41.6621 -Georgia_Bold.ttf 105 z 28.0000 28.0000 64 j -16.6781 22.1730 57.6747 -Georgia_Bold.ttf 105 z 28.0000 28.0000 65 ( -15.0295 20.7483 52.5609 -Georgia_Bold.ttf 105 z 28.0000 28.0000 66 7 -2.7852 30.0308 41.0560 -Georgia_Bold.ttf 105 z 28.0000 28.0000 67 § -13.8015 26.2192 48.4103 -Georgia_Bold.ttf 105 z 28.0000 28.0000 68 $ -15.8822 31.2486 51.7468 -Georgia_Bold.ttf 105 z 28.0000 28.0000 69 € -13.7390 41.2868 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 70 / -15.1228 24.9408 55.3288 -Georgia_Bold.ttf 105 z 28.0000 28.0000 71 C -13.4040 39.1489 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 72 * -13.5225 23.6397 21.2290 -Georgia_Bold.ttf 105 z 28.0000 28.0000 73 ” -15.1999 25.5049 20.0578 -Georgia_Bold.ttf 105 z 28.0000 28.0000 74 ? -13.6285 26.4727 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 75 { -14.8224 25.1716 52.5609 -Georgia_Bold.ttf 105 z 28.0000 28.0000 76 } -15.5680 25.1716 52.5609 -Georgia_Bold.ttf 105 z 28.0000 28.0000 77 , 18.7182 11.5049 20.7483 -Georgia_Bold.ttf 105 z 28.0000 28.0000 78 I -12.1296 21.7342 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 79 ° -13.6153 19.4471 18.8830 -Georgia_Bold.ttf 105 z 28.0000 28.0000 80 K -12.6563 47.4699 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 81 H -12.4608 49.0437 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 82 q -2.5885 36.1968 43.1940 -Georgia_Bold.ttf 105 z 28.0000 28.0000 83 & -13.6880 44.6379 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 84 ’ -15.3685 11.5049 20.0578 -Georgia_Bold.ttf 105 z 28.0000 28.0000 85 [ -15.1616 18.8830 52.5609 -Georgia_Bold.ttf 105 z 28.0000 28.0000 86 - 9.4465 17.3319 6.3078 -Georgia_Bold.ttf 105 z 28.0000 28.0000 87 Y -12.5037 46.5865 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 88 Q -13.9217 43.5511 53.5241 -Georgia_Bold.ttf 105 z 28.0000 28.0000 89 " -15.4166 23.0291 20.0578 -Georgia_Bold.ttf 105 z 28.0000 28.0000 90 ! -13.5116 10.9408 42.8561 -Georgia_Bold.ttf 105 z 28.0000 28.0000 91 x 0.1158 34.3078 28.0000 -Georgia_Bold.ttf 105 z 28.0000 28.0000 92 ) -15.5271 20.7483 52.5609 -Georgia_Bold.ttf 105 z 28.0000 28.0000 93 = 2.9793 30.3879 16.2451 -Georgia_Bold.ttf 105 z 28.0000 28.0000 94 + -4.5339 31.9572 31.9572 -Georgia_Bold.ttf 105 z 28.0000 28.0000 95 X -12.2893 47.1138 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 96 » -0.1687 28.0000 25.5049 -Georgia_Bold.ttf 105 z 28.0000 28.0000 97 ' -15.1356 9.3670 20.0578 -Georgia_Bold.ttf 105 z 28.0000 28.0000 98 ¢ -8.4874 29.6975 45.0592 -Georgia_Bold.ttf 105 z 28.0000 28.0000 99 Z -12.2288 40.1348 40.4681 -Georgia_Bold.ttf 105 z 28.0000 28.0000 100 > -4.4199 28.2500 32.5259 -Georgia_Bold.ttf 105 z 28.0000 28.0000 101 ® -13.8464 50.4457 50.4457 -Georgia_Bold.ttf 105 z 28.0000 28.0000 102 © -14.0290 50.4457 50.4457 -Georgia_Bold.ttf 105 z 28.0000 28.0000 103 ] -15.4507 18.8830 52.5609 -Georgia_Bold.ttf 105 z 28.0000 28.0000 104 é -16.3494 30.1152 45.5819 -Georgia_Bold.ttf 105 z 28.0000 28.0000 105 z -0.0672 28.0000 28.0000 -Georgia_Bold.ttf 105 z 28.0000 28.0000 106 _ 33.1208 41.0560 2.7259 -Georgia_Bold.ttf 105 z 28.0000 28.0000 107 ¥ -12.2737 44.1379 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 1 t -41.6104 22.8029 37.7468 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 2 h -49.6036 38.3109 44.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 3 a -34.4011 31.8795 30.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 4 n -34.1373 38.5434 29.1940 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 5 P -45.6228 37.4968 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 6 o -34.2189 32.6103 30.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 7 e -34.4226 30.1152 30.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 8 : -32.9805 11.2741 29.1940 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 9 r -34.4628 29.1940 29.1940 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 10 l -49.5504 18.7339 44.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 11 i -49.8673 18.7339 44.8687 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 12 1 -36.5940 23.6397 31.6891 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 13 | -49.4033 4.6330 56.5227 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 14 N -45.9577 47.1785 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 15 f -49.4776 28.2500 44.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 16 g -34.3554 32.5497 42.0000 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 17 d -49.2831 36.4457 45.5819 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 18 W -45.7562 68.0276 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 19 s -34.7075 25.8621 30.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 20 c -34.3435 28.9212 30.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 21 u -34.3449 38.2100 30.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 22 3 -36.5461 32.5259 42.2500 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 23 ~ -27.4604 32.5497 12.2181 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 24 # -41.7829 32.2532 36.4457 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 25 O -46.7428 43.5511 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 26 ` -49.5721 15.1940 12.8060 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 27 @ -44.2169 47.4709 48.6411 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 28 F -45.2778 35.9650 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 29 S -47.2348 33.7437 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 30 p -34.5124 35.8397 42.0000 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 31 “ -48.3973 25.5049 20.0578 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 32 % -46.8893 46.1460 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 33 £ -46.7977 33.4471 41.6621 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 34 . -15.2265 11.2741 11.2741 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 35 2 -36.5604 30.6653 31.6891 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 36 5 -36.7900 31.3319 42.2500 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 37 m -34.3931 57.1474 29.1940 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 38 V -45.5865 47.4471 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 39 6 -46.7615 32.2997 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 40 w -33.2888 50.4457 28.0000 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 41 T -45.6115 38.0802 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 42 M -45.7862 56.5455 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 43 G -46.8506 45.5865 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 44 b -49.5004 35.7325 45.9198 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 45 9 -36.8263 32.6330 42.3571 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 46 ; -33.2216 11.5049 39.3813 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 47 D -45.7789 44.3879 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 48 L -45.8621 38.0196 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 49 y -33.0474 35.2710 40.8060 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 50 ‘ -48.0010 11.5049 20.0578 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 51 \ -48.4305 24.9408 55.3288 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 52 R -45.6876 46.2759 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 53 < -37.8024 28.2500 32.5259 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 54 4 -36.6969 34.6684 42.2500 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 55 8 -47.1689 33.3865 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 56 0 -37.0988 34.6876 32.8830 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 57 A -45.8715 46.9902 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 58 E -45.4192 38.6908 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 59 B -45.4907 40.1348 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 60 v -33.3114 35.5017 28.0000 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 61 k -49.4049 37.9968 44.3879 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 62 J -45.6153 33.3235 41.6621 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 63 U -45.7204 46.9856 41.6621 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 64 j -49.9531 22.1730 57.6747 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 65 ( -48.3448 20.7483 52.5609 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 66 7 -35.5242 30.0308 41.0560 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 67 § -47.0810 26.2192 48.4103 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 68 $ -48.8242 31.2486 51.7468 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 69 € -46.7629 41.2868 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 70 / -48.1109 24.9408 55.3288 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 71 C -46.3807 39.1489 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 72 * -47.0119 23.6397 21.2290 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 73 ” -48.2949 25.5049 20.0578 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 74 ? -46.6184 26.4727 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 75 { -48.2599 25.1716 52.5609 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 76 } -48.4244 25.1716 52.5609 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 77 , -14.4840 11.5049 20.7483 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 78 I -45.6790 21.7342 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 79 ° -46.6783 19.4471 18.8830 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 80 K -45.0830 47.4699 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 81 H -45.6064 49.0437 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 82 q -35.3383 36.1968 43.1940 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 83 & -46.9923 44.6379 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 84 ’ -48.4422 11.5049 20.0578 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 85 [ -48.1784 18.8830 52.5609 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 86 - -24.0621 17.3319 6.3078 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 87 Y -45.7548 46.5865 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 88 Q -46.7342 43.5511 53.5241 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 89 " -48.0389 23.0291 20.0578 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 90 ! -46.5670 10.9408 42.8561 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 91 x -33.1864 34.3078 28.0000 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 92 ) -48.3933 20.7483 52.5609 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 93 = -29.5581 30.3879 16.2451 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 94 + -37.7439 31.9572 31.9572 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 95 X -45.5018 47.1138 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 96 » -33.4976 28.0000 25.5049 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 97 ' -48.1580 9.3670 20.0578 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 98 ¢ -41.6235 29.6975 45.0592 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 99 Z -45.5749 40.1348 40.4681 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 100 > -37.7555 28.2500 32.5259 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 101 ® -46.9985 50.4457 50.4457 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 102 © -46.8571 50.4457 50.4457 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 103 ] -48.3162 18.8830 52.5609 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 104 é -49.5895 30.1152 45.5819 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 105 z -32.8568 28.0000 28.0000 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 106 _ 0.1237 41.0560 2.7259 -Georgia_Bold.ttf 106 _ 41.0560 2.7259 107 ¥ -45.2633 44.1379 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 1 t 3.9317 22.8029 37.7468 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 2 h -3.6838 38.3109 44.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 3 a 11.3918 31.8795 30.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 4 n 11.1409 38.5434 29.1940 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 5 P 0.1393 37.4968 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 6 o 11.2182 32.6103 30.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 7 e 11.4549 30.1152 30.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 8 : 12.6367 11.2741 29.1940 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 9 r 10.9601 29.1940 29.1940 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 10 l -3.7515 18.7339 44.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 11 i -4.7581 18.7339 44.8687 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 12 1 8.8805 23.6397 31.6891 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 13 | -3.5381 4.6330 56.5227 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 14 N -0.0261 47.1785 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 15 f -3.9871 28.2500 44.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 16 g 10.9771 32.5497 42.0000 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 17 d -3.9647 36.4457 45.5819 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 18 W 0.3350 68.0276 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 19 s 11.2740 25.8621 30.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 20 c 11.0544 28.9212 30.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 21 u 11.2846 38.2100 30.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 22 3 8.9379 32.5259 42.2500 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 23 ~ 18.2632 32.5497 12.2181 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 24 # 3.8121 32.2532 36.4457 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 25 O -1.0780 43.5511 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 26 ` -3.5768 15.1940 12.8060 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 27 @ 1.6451 47.4709 48.6411 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 28 F -0.1853 35.9650 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 29 S -1.0856 33.7437 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 30 p 10.6632 35.8397 42.0000 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 31 “ -2.4825 25.5049 20.0578 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 32 % -0.8950 46.1460 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 33 £ -0.8294 33.4471 41.6621 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 34 . 30.2731 11.2741 11.2741 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 35 2 8.5261 30.6653 31.6891 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 36 5 8.7210 31.3319 42.2500 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 37 m 11.5589 57.1474 29.1940 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 38 V 0.0809 47.4471 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 39 6 -1.0015 32.2997 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 40 w 12.3576 50.4457 28.0000 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 41 T 0.4380 38.0802 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 42 M 0.0476 56.5455 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 43 G -1.2370 45.5865 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 44 b -3.7814 35.7325 45.9198 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 45 9 8.7307 32.6330 42.3571 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 46 ; 12.2638 11.5049 39.3813 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 47 D -0.1403 44.3879 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 48 L 0.3650 38.0196 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 49 y 12.6111 35.2710 40.8060 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 50 ‘ -2.8215 11.5049 20.0578 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 51 \ -2.6252 24.9408 55.3288 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 52 R -0.0438 46.2759 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 53 < 7.8213 28.2500 32.5259 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 54 4 8.8116 34.6684 42.2500 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 55 8 -1.0743 33.3865 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 56 0 8.9127 34.6876 32.8830 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 57 A -0.1088 46.9902 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 58 E 0.1202 38.6908 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 59 B -0.0032 40.1348 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 60 v 12.3906 35.5017 28.0000 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 61 k -3.8962 37.9968 44.3879 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 62 J -0.3363 33.3235 41.6621 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 63 U -0.0777 46.9856 41.6621 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 64 j -4.1694 22.1730 57.6747 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 65 ( -2.4798 20.7483 52.5609 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 66 7 9.8386 30.0308 41.0560 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 67 § -1.1106 26.2192 48.4103 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 68 $ -3.7020 31.2486 51.7468 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 69 € -1.6435 41.2868 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 70 / -2.8028 24.9408 55.3288 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 71 C -1.2396 39.1489 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 72 * -1.0359 23.6397 21.2290 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 73 ” -2.3847 25.5049 20.0578 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 74 ? -0.8601 26.4727 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 75 { -2.7167 25.1716 52.5609 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 76 } -2.7391 25.1716 52.5609 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 77 , 31.0168 11.5049 20.7483 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 78 I -0.0175 21.7342 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 79 ° -1.3290 19.4471 18.8830 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 80 K 0.0705 47.4699 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 81 H -0.1561 49.0437 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 82 q 9.9524 36.1968 43.1940 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 83 & -1.1461 44.6379 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 84 ’ -2.8341 11.5049 20.0578 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 85 [ -2.8121 18.8830 52.5609 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 86 - 21.5738 17.3319 6.3078 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 87 Y 0.0552 46.5865 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 88 Q -1.2773 43.5511 53.5241 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 89 " -2.7724 23.0291 20.0578 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 90 ! -1.3089 10.9408 42.8561 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 91 x 12.5628 34.3078 28.0000 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 92 ) -3.0425 20.7483 52.5609 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 93 = 16.1308 30.3879 16.2451 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 94 + 8.3547 31.9572 31.9572 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 95 X 0.2226 47.1138 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 96 » 12.1301 28.0000 25.5049 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 97 ' -2.2812 9.3670 20.0578 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 98 ¢ 4.0205 29.6975 45.0592 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 99 Z -0.0521 40.1348 40.4681 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 100 > 8.0463 28.2500 32.5259 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 101 ® -1.5361 50.4457 50.4457 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 102 © -1.1055 50.4457 50.4457 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 103 ] -2.4089 18.8830 52.5609 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 104 é -3.7180 30.1152 45.5819 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 105 z 12.5507 28.0000 28.0000 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 106 _ 45.5634 41.0560 2.7259 -Georgia_Bold.ttf 107 ¥ 44.1379 40.4681 107 ¥ 0.0231 44.1379 40.4681 -Impact.ttf 1 t 17.0878 43.1785 1 t -0.1488 17.0878 43.1785 -Impact.ttf 1 t 17.0878 43.1785 2 h -3.1663 25.8600 46.1413 -Impact.ttf 1 t 17.0878 43.1785 3 a 5.3064 24.6815 37.8587 -Impact.ttf 1 t 17.0878 43.1785 4 n 5.2160 25.8600 37.8587 -Impact.ttf 1 t 17.0878 43.1785 5 P -3.1703 25.1622 46.1413 -Impact.ttf 1 t 17.0878 43.1785 6 o 5.2128 25.5600 37.8587 -Impact.ttf 1 t 17.0878 43.1785 7 e 5.5566 25.5600 37.8587 -Impact.ttf 1 t 17.0878 43.1785 8 : 12.6991 8.6802 30.3570 -Impact.ttf 1 t 17.0878 43.1785 9 r 5.2770 17.9105 37.8587 -Impact.ttf 1 t 17.0878 43.1785 10 l -3.0296 11.1622 46.1413 -Impact.ttf 1 t 17.0878 43.1785 11 i -3.2778 11.1622 46.1413 -Impact.ttf 1 t 17.0878 43.1785 12 1 -2.8413 19.5925 46.1413 -Impact.ttf 1 t 17.0878 43.1785 13 | -3.2552 5.8425 53.6430 -Impact.ttf 1 t 17.0878 43.1785 14 N -2.9326 26.3407 46.1413 -Impact.ttf 1 t 17.0878 43.1785 15 f -2.8543 15.6593 46.1413 -Impact.ttf 1 t 17.0878 43.1785 16 g 5.3438 25.8600 44.3570 -Impact.ttf 1 t 17.0878 43.1785 17 d -2.9628 25.8600 46.1413 -Impact.ttf 1 t 17.0878 43.1785 18 W -3.0702 46.2890 46.1413 -Impact.ttf 1 t 17.0878 43.1785 19 s 5.3198 23.5030 37.8587 -Impact.ttf 1 t 17.0878 43.1785 20 c 5.4110 24.6815 37.8587 -Impact.ttf 1 t 17.0878 43.1785 21 u 5.3626 25.8600 37.8587 -Impact.ttf 1 t 17.0878 43.1785 22 3 -3.6216 25.7680 47.8983 -Impact.ttf 1 t 17.0878 43.1785 23 ~ 12.5166 26.7885 12.8907 -Impact.ttf 1 t 17.0878 43.1785 24 # 2.0783 34.6652 41.1215 -Impact.ttf 1 t 17.0878 43.1785 25 O -3.5915 26.8215 47.8983 -Impact.ttf 1 t 17.0878 43.1785 26 ` -7.8512 15.1785 7.9267 -Impact.ttf 1 t 17.0878 43.1785 27 @ -3.7671 43.1785 48.8040 -Impact.ttf 1 t 17.0878 43.1785 28 F -2.9544 20.2675 46.1413 -Impact.ttf 1 t 17.0878 43.1785 29 S -3.6490 27.5192 47.8983 -Impact.ttf 1 t 17.0878 43.1785 30 p 5.2489 25.8600 43.1785 -Impact.ttf 1 t 17.0878 43.1785 31 “ -3.0439 19.2175 14.9477 -Impact.ttf 1 t 17.0878 43.1785 32 % -3.7587 37.9837 47.0198 -Impact.ttf 1 t 17.0878 43.1785 33 £ -4.0266 28.2727 47.0198 -Impact.ttf 1 t 17.0878 43.1785 34 . 33.6853 8.6802 9.3360 -Impact.ttf 1 t 17.0878 43.1785 35 2 -4.0322 23.9837 47.0198 -Impact.ttf 1 t 17.0878 43.1785 36 5 -3.0003 26.3407 47.0198 -Impact.ttf 1 t 17.0878 43.1785 37 m 5.2808 40.4657 37.8587 -Impact.ttf 1 t 17.0878 43.1785 38 V -3.0680 31.0355 46.1413 -Impact.ttf 1 t 17.0878 43.1785 39 6 -3.7101 26.3407 47.8983 -Impact.ttf 1 t 17.0878 43.1785 40 w 5.3985 38.9680 37.8587 -Impact.ttf 1 t 17.0878 43.1785 41 T -3.3864 26.3407 46.1413 -Impact.ttf 1 t 17.0878 43.1785 42 M -2.9628 36.8052 46.1413 -Impact.ttf 1 t 17.0878 43.1785 43 G -3.8580 26.9465 47.8983 -Impact.ttf 1 t 17.0878 43.1785 44 b -3.2760 25.8600 46.1413 -Impact.ttf 1 t 17.0878 43.1785 45 9 -3.7087 26.3407 47.8983 -Impact.ttf 1 t 17.0878 43.1785 46 ; 12.8702 8.6802 36.1995 -Impact.ttf 1 t 17.0878 43.1785 47 D -3.0366 26.9465 46.1413 -Impact.ttf 1 t 17.0878 43.1785 48 L -3.0439 18.8948 46.1413 -Impact.ttf 1 t 17.0878 43.1785 49 y 5.3555 27.3942 43.1785 -Impact.ttf 1 t 17.0878 43.1785 50 ‘ -2.8673 8.4302 14.9477 -Impact.ttf 1 t 17.0878 43.1785 51 \ -4.0084 23.9087 48.3733 -Impact.ttf 1 t 17.0878 43.1785 52 R -2.9277 26.3407 46.1413 -Impact.ttf 1 t 17.0878 43.1785 53 < 5.3440 27.6670 29.1785 -Impact.ttf 1 t 17.0878 43.1785 54 4 -2.9245 28.6977 46.1413 -Impact.ttf 1 t 17.0878 43.1785 55 8 -3.9654 26.0407 47.8983 -Impact.ttf 1 t 17.0878 43.1785 56 0 -3.7541 26.3407 47.8983 -Impact.ttf 1 t 17.0878 43.1785 57 A -3.1598 31.5355 46.1413 -Impact.ttf 1 t 17.0878 43.1785 58 E -3.3434 20.4483 46.1413 -Impact.ttf 1 t 17.0878 43.1785 59 B -3.0851 26.9465 46.1413 -Impact.ttf 1 t 17.0878 43.1785 60 v 5.2198 26.8215 37.8587 -Impact.ttf 1 t 17.0878 43.1785 61 k -3.1499 25.7680 46.1413 -Impact.ttf 1 t 17.0878 43.1785 62 J -2.8858 16.2320 46.1413 -Impact.ttf 1 t 17.0878 43.1785 63 U -2.8497 26.8215 47.0198 -Impact.ttf 1 t 17.0878 43.1785 64 j -3.0582 13.7692 51.4610 -Impact.ttf 1 t 17.0878 43.1785 65 ( -2.9128 14.9285 46.1413 -Impact.ttf 1 t 17.0878 43.1785 66 7 -2.8358 22.3245 46.1413 -Impact.ttf 1 t 17.0878 43.1785 67 § -3.8367 25.6430 53.5180 -Impact.ttf 1 t 17.0878 43.1785 68 $ -6.7686 26.8215 54.0680 -Impact.ttf 1 t 17.0878 43.1785 69 € -3.9200 28.6058 47.8983 -Impact.ttf 1 t 17.0878 43.1785 70 / -3.9337 22.7302 48.3733 -Impact.ttf 1 t 17.0878 43.1785 71 C -4.1383 26.9465 47.8983 -Impact.ttf 1 t 17.0878 43.1785 72 * -2.8112 15.4705 13.7692 -Impact.ttf 1 t 17.0878 43.1785 73 ” -3.2125 19.2175 14.9477 -Impact.ttf 1 t 17.0878 43.1785 74 ? -4.1893 26.8215 47.0198 -Impact.ttf 1 t 17.0878 43.1785 75 { -3.1075 19.1675 54.8215 -Impact.ttf 1 t 17.0878 43.1785 76 } -3.0764 19.1675 54.8215 -Impact.ttf 1 t 17.0878 43.1785 77 , 34.1090 8.4302 14.9477 -Impact.ttf 1 t 17.0878 43.1785 78 I -3.0383 11.6430 46.1413 -Impact.ttf 1 t 17.0878 43.1785 79 ° -3.7282 18.0163 18.0163 -Impact.ttf 1 t 17.0878 43.1785 80 K -2.8047 30.3570 46.1413 -Impact.ttf 1 t 17.0878 43.1785 81 H -2.8529 27.2192 46.1413 -Impact.ttf 1 t 17.0878 43.1785 82 q 5.1117 25.8600 43.1785 -Impact.ttf 1 t 17.0878 43.1785 83 & 5.4278 33.5925 37.8587 -Impact.ttf 1 t 17.0878 43.1785 84 ’ -3.1857 8.4302 14.9477 -Impact.ttf 1 t 17.0878 43.1785 85 [ -2.9179 13.3942 46.1413 -Impact.ttf 1 t 17.0878 43.1785 86 - 19.8378 14.8785 7.9267 -Impact.ttf 1 t 17.0878 43.1785 87 Y -3.0722 27.6250 46.1413 -Impact.ttf 1 t 17.0878 43.1785 88 Q -3.9752 26.8215 52.3395 -Impact.ttf 1 t 17.0878 43.1785 89 " -2.8340 19.7175 14.0000 -Impact.ttf 1 t 17.0878 43.1785 90 ! -2.6388 12.8215 46.1413 -Impact.ttf 1 t 17.0878 43.1785 91 x 5.4296 25.1760 37.8587 -Impact.ttf 1 t 17.0878 43.1785 92 ) -2.9842 14.9285 46.1413 -Impact.ttf 1 t 17.0878 43.1785 93 = 11.9955 27.6670 16.7320 -Impact.ttf 1 t 17.0878 43.1785 94 + 6.7315 27.1773 27.1773 -Impact.ttf 1 t 17.0878 43.1785 95 X -2.9135 29.6400 46.1413 -Impact.ttf 1 t 17.0878 43.1785 96 » 6.6252 19.6198 32.7140 -Impact.ttf 1 t 17.0878 43.1785 97 ' -2.8886 8.6802 14.0000 -Impact.ttf 1 t 17.0878 43.1785 98 ¢ -2.5655 25.8600 49.5017 -Impact.ttf 1 t 17.0878 43.1785 99 Z -2.9628 22.6245 46.1413 -Impact.ttf 1 t 17.0878 43.1785 100 > 5.1930 27.6670 29.1785 -Impact.ttf 1 t 17.0878 43.1785 101 ® -0.2024 43.1785 43.3035 -Impact.ttf 1 t 17.0878 43.1785 102 © 1.0210 43.1785 42.0000 -Impact.ttf 1 t 17.0878 43.1785 103 ] -2.9030 13.3942 46.1413 -Impact.ttf 1 t 17.0878 43.1785 104 é -4.5613 25.5600 47.5698 -Impact.ttf 1 t 17.0878 43.1785 105 z 5.2313 19.3198 37.8587 -Impact.ttf 1 t 17.0878 43.1785 106 _ 47.5943 32.1413 2.8378 -Impact.ttf 1 t 17.0878 43.1785 107 ¥ -3.2724 27.6250 46.1413 -Impact.ttf 2 h 25.8600 46.1413 1 t 3.1032 17.0878 43.1785 -Impact.ttf 2 h 25.8600 46.1413 2 h 0.1167 25.8600 46.1413 -Impact.ttf 2 h 25.8600 46.1413 3 a 8.1240 24.6815 37.8587 -Impact.ttf 2 h 25.8600 46.1413 4 n 8.1569 25.8600 37.8587 -Impact.ttf 2 h 25.8600 46.1413 5 P -0.1371 25.1622 46.1413 -Impact.ttf 2 h 25.8600 46.1413 6 o 8.2293 25.5600 37.8587 -Impact.ttf 2 h 25.8600 46.1413 7 e 8.1740 25.5600 37.8587 -Impact.ttf 2 h 25.8600 46.1413 8 : 15.6183 8.6802 30.3570 -Impact.ttf 2 h 25.8600 46.1413 9 r 8.2398 17.9105 37.8587 -Impact.ttf 2 h 25.8600 46.1413 10 l -0.1871 11.1622 46.1413 -Impact.ttf 2 h 25.8600 46.1413 11 i -0.1470 11.1622 46.1413 -Impact.ttf 2 h 25.8600 46.1413 12 1 -0.0742 19.5925 46.1413 -Impact.ttf 2 h 25.8600 46.1413 13 | -0.0444 5.8425 53.6430 -Impact.ttf 2 h 25.8600 46.1413 14 N -0.1242 26.3407 46.1413 -Impact.ttf 2 h 25.8600 46.1413 15 f 0.2256 15.6593 46.1413 -Impact.ttf 2 h 25.8600 46.1413 16 g 8.2325 25.8600 44.3570 -Impact.ttf 2 h 25.8600 46.1413 17 d -0.3244 25.8600 46.1413 -Impact.ttf 2 h 25.8600 46.1413 18 W 0.1707 46.2890 46.1413 -Impact.ttf 2 h 25.8600 46.1413 19 s 8.3182 23.5030 37.8587 -Impact.ttf 2 h 25.8600 46.1413 20 c 8.2885 24.6815 37.8587 -Impact.ttf 2 h 25.8600 46.1413 21 u 8.4016 25.8600 37.8587 -Impact.ttf 2 h 25.8600 46.1413 22 3 -0.5666 25.7680 47.8983 -Impact.ttf 2 h 25.8600 46.1413 23 ~ 15.4349 26.7885 12.8907 -Impact.ttf 2 h 25.8600 46.1413 24 # 5.0198 34.6652 41.1215 -Impact.ttf 2 h 25.8600 46.1413 25 O -0.8188 26.8215 47.8983 -Impact.ttf 2 h 25.8600 46.1413 26 ` -4.9909 15.1785 7.9267 -Impact.ttf 2 h 25.8600 46.1413 27 @ -0.8668 43.1785 48.8040 -Impact.ttf 2 h 25.8600 46.1413 28 F 0.2798 20.2675 46.1413 -Impact.ttf 2 h 25.8600 46.1413 29 S -1.0846 27.5192 47.8983 -Impact.ttf 2 h 25.8600 46.1413 30 p 8.1898 25.8600 43.1785 -Impact.ttf 2 h 25.8600 46.1413 31 “ 0.0940 19.2175 14.9477 -Impact.ttf 2 h 25.8600 46.1413 32 % -1.0495 37.9837 47.0198 -Impact.ttf 2 h 25.8600 46.1413 33 £ -0.9299 28.2727 47.0198 -Impact.ttf 2 h 25.8600 46.1413 34 . 37.0115 8.6802 9.3360 -Impact.ttf 2 h 25.8600 46.1413 35 2 -0.9240 23.9837 47.0198 -Impact.ttf 2 h 25.8600 46.1413 36 5 0.1288 26.3407 47.0198 -Impact.ttf 2 h 25.8600 46.1413 37 m 8.1244 40.4657 37.8587 -Impact.ttf 2 h 25.8600 46.1413 38 V -0.3349 31.0355 46.1413 -Impact.ttf 2 h 25.8600 46.1413 39 6 -1.2807 26.3407 47.8983 -Impact.ttf 2 h 25.8600 46.1413 40 w 8.2409 38.9680 37.8587 -Impact.ttf 2 h 25.8600 46.1413 41 T -0.1696 26.3407 46.1413 -Impact.ttf 2 h 25.8600 46.1413 42 M -0.0597 36.8052 46.1413 -Impact.ttf 2 h 25.8600 46.1413 43 G -1.2225 26.9465 47.8983 -Impact.ttf 2 h 25.8600 46.1413 44 b -0.1900 25.8600 46.1413 -Impact.ttf 2 h 25.8600 46.1413 45 9 -0.9081 26.3407 47.8983 -Impact.ttf 2 h 25.8600 46.1413 46 ; 15.5716 8.6802 36.1995 -Impact.ttf 2 h 25.8600 46.1413 47 D -0.0376 26.9465 46.1413 -Impact.ttf 2 h 25.8600 46.1413 48 L -0.2409 18.8948 46.1413 -Impact.ttf 2 h 25.8600 46.1413 49 y 8.3112 27.3942 43.1785 -Impact.ttf 2 h 25.8600 46.1413 50 ‘ 0.0287 8.4302 14.9477 -Impact.ttf 2 h 25.8600 46.1413 51 \ -1.1939 23.9087 48.3733 -Impact.ttf 2 h 25.8600 46.1413 52 R 0.0857 26.3407 46.1413 -Impact.ttf 2 h 25.8600 46.1413 53 < 8.2706 27.6670 29.1785 -Impact.ttf 2 h 25.8600 46.1413 54 4 -0.2039 28.6977 46.1413 -Impact.ttf 2 h 25.8600 46.1413 55 8 -0.6775 26.0407 47.8983 -Impact.ttf 2 h 25.8600 46.1413 56 0 -0.9952 26.3407 47.8983 -Impact.ttf 2 h 25.8600 46.1413 57 A 0.3637 31.5355 46.1413 -Impact.ttf 2 h 25.8600 46.1413 58 E 0.0397 20.4483 46.1413 -Impact.ttf 2 h 25.8600 46.1413 59 B -0.3295 26.9465 46.1413 -Impact.ttf 2 h 25.8600 46.1413 60 v 8.4484 26.8215 37.8587 -Impact.ttf 2 h 25.8600 46.1413 61 k 0.2300 25.7680 46.1413 -Impact.ttf 2 h 25.8600 46.1413 62 J 0.1000 16.2320 46.1413 -Impact.ttf 2 h 25.8600 46.1413 63 U 0.0125 26.8215 47.0198 -Impact.ttf 2 h 25.8600 46.1413 64 j -0.0097 13.7692 51.4610 -Impact.ttf 2 h 25.8600 46.1413 65 ( 0.0459 14.9285 46.1413 -Impact.ttf 2 h 25.8600 46.1413 66 7 0.2411 22.3245 46.1413 -Impact.ttf 2 h 25.8600 46.1413 67 § -0.9809 25.6430 53.5180 -Impact.ttf 2 h 25.8600 46.1413 68 $ -4.1137 26.8215 54.0680 -Impact.ttf 2 h 25.8600 46.1413 69 € -0.8855 28.6058 47.8983 -Impact.ttf 2 h 25.8600 46.1413 70 / -1.0567 22.7302 48.3733 -Impact.ttf 2 h 25.8600 46.1413 71 C -0.5860 26.9465 47.8983 -Impact.ttf 2 h 25.8600 46.1413 72 * -0.2087 15.4705 13.7692 -Impact.ttf 2 h 25.8600 46.1413 73 ” -0.0787 19.2175 14.9477 -Impact.ttf 2 h 25.8600 46.1413 74 ? -0.9984 26.8215 47.0198 -Impact.ttf 2 h 25.8600 46.1413 75 { -0.1658 19.1675 54.8215 -Impact.ttf 2 h 25.8600 46.1413 76 } -0.1794 19.1675 54.8215 -Impact.ttf 2 h 25.8600 46.1413 77 , 37.0299 8.4302 14.9477 -Impact.ttf 2 h 25.8600 46.1413 78 I 0.0202 11.6430 46.1413 -Impact.ttf 2 h 25.8600 46.1413 79 ° -0.8260 18.0163 18.0163 -Impact.ttf 2 h 25.8600 46.1413 80 K -0.0143 30.3570 46.1413 -Impact.ttf 2 h 25.8600 46.1413 81 H 0.0115 27.2192 46.1413 -Impact.ttf 2 h 25.8600 46.1413 82 q 8.0290 25.8600 43.1785 -Impact.ttf 2 h 25.8600 46.1413 83 & 8.3837 33.5925 37.8587 -Impact.ttf 2 h 25.8600 46.1413 84 ’ 0.2053 8.4302 14.9477 -Impact.ttf 2 h 25.8600 46.1413 85 [ 0.0944 13.3942 46.1413 -Impact.ttf 2 h 25.8600 46.1413 86 - 22.9494 14.8785 7.9267 -Impact.ttf 2 h 25.8600 46.1413 87 Y -0.1158 27.6250 46.1413 -Impact.ttf 2 h 25.8600 46.1413 88 Q -1.0863 26.8215 52.3395 -Impact.ttf 2 h 25.8600 46.1413 89 " -0.3669 19.7175 14.0000 -Impact.ttf 2 h 25.8600 46.1413 90 ! -0.1228 12.8215 46.1413 -Impact.ttf 2 h 25.8600 46.1413 91 x 8.2825 25.1760 37.8587 -Impact.ttf 2 h 25.8600 46.1413 92 ) 0.0087 14.9285 46.1413 -Impact.ttf 2 h 25.8600 46.1413 93 = 15.0248 27.6670 16.7320 -Impact.ttf 2 h 25.8600 46.1413 94 + 10.2156 27.1773 27.1773 -Impact.ttf 2 h 25.8600 46.1413 95 X 0.3332 29.6400 46.1413 -Impact.ttf 2 h 25.8600 46.1413 96 » 9.5720 19.6198 32.7140 -Impact.ttf 2 h 25.8600 46.1413 97 ' 0.2119 8.6802 14.0000 -Impact.ttf 2 h 25.8600 46.1413 98 ¢ 0.0653 25.8600 49.5017 -Impact.ttf 2 h 25.8600 46.1413 99 Z -0.1966 22.6245 46.1413 -Impact.ttf 2 h 25.8600 46.1413 100 > 8.2706 27.6670 29.1785 -Impact.ttf 2 h 25.8600 46.1413 101 ® 2.7117 43.1785 43.3035 -Impact.ttf 2 h 25.8600 46.1413 102 © 4.1297 43.1785 42.0000 -Impact.ttf 2 h 25.8600 46.1413 103 ] 0.1484 13.3942 46.1413 -Impact.ttf 2 h 25.8600 46.1413 104 é -1.5422 25.5600 47.5698 -Impact.ttf 2 h 25.8600 46.1413 105 z 8.2065 19.3198 37.8587 -Impact.ttf 2 h 25.8600 46.1413 106 _ 50.6738 32.1413 2.8378 -Impact.ttf 2 h 25.8600 46.1413 107 ¥ -0.2295 27.6250 46.1413 -Impact.ttf 3 a 24.6815 37.8587 1 t -5.4152 17.0878 43.1785 -Impact.ttf 3 a 24.6815 37.8587 2 h -8.2144 25.8600 46.1413 -Impact.ttf 3 a 24.6815 37.8587 3 a -0.1386 24.6815 37.8587 -Impact.ttf 3 a 24.6815 37.8587 4 n 0.3021 25.8600 37.8587 -Impact.ttf 3 a 24.6815 37.8587 5 P -8.3900 25.1622 46.1413 -Impact.ttf 3 a 24.6815 37.8587 6 o 0.1938 25.5600 37.8587 -Impact.ttf 3 a 24.6815 37.8587 7 e -0.1982 25.5600 37.8587 -Impact.ttf 3 a 24.6815 37.8587 8 : 7.2367 8.6802 30.3570 -Impact.ttf 3 a 24.6815 37.8587 9 r 0.0325 17.9105 37.8587 -Impact.ttf 3 a 24.6815 37.8587 10 l -7.9992 11.1622 46.1413 -Impact.ttf 3 a 24.6815 37.8587 11 i -8.2123 11.1622 46.1413 -Impact.ttf 3 a 24.6815 37.8587 12 1 -8.3280 19.5925 46.1413 -Impact.ttf 3 a 24.6815 37.8587 13 | -8.5333 5.8425 53.6430 -Impact.ttf 3 a 24.6815 37.8587 14 N -8.2130 26.3407 46.1413 -Impact.ttf 3 a 24.6815 37.8587 15 f -8.2144 15.6593 46.1413 -Impact.ttf 3 a 24.6815 37.8587 16 g 0.0357 25.8600 44.3570 -Impact.ttf 3 a 24.6815 37.8587 17 d -8.1869 25.8600 46.1413 -Impact.ttf 3 a 24.6815 37.8587 18 W -8.2968 46.2890 46.1413 -Impact.ttf 3 a 24.6815 37.8587 19 s -0.0161 23.5030 37.8587 -Impact.ttf 3 a 24.6815 37.8587 20 c 0.1208 24.6815 37.8587 -Impact.ttf 3 a 24.6815 37.8587 21 u 0.0097 25.8600 37.8587 -Impact.ttf 3 a 24.6815 37.8587 22 3 -9.2652 25.7680 47.8983 -Impact.ttf 3 a 24.6815 37.8587 23 ~ 7.1500 26.7885 12.8907 -Impact.ttf 3 a 24.6815 37.8587 24 # -2.9745 34.6652 41.1215 -Impact.ttf 3 a 24.6815 37.8587 25 O -9.2519 26.8215 47.8983 -Impact.ttf 3 a 24.6815 37.8587 26 ` -13.1366 15.1785 7.9267 -Impact.ttf 3 a 24.6815 37.8587 27 @ -9.1058 43.1785 48.8040 -Impact.ttf 3 a 24.6815 37.8587 28 F -8.4637 20.2675 46.1413 -Impact.ttf 3 a 24.6815 37.8587 29 S -9.2005 27.5192 47.8983 -Impact.ttf 3 a 24.6815 37.8587 30 p -0.1140 25.8600 43.1785 -Impact.ttf 3 a 24.6815 37.8587 31 “ -8.4411 19.2175 14.9477 -Impact.ttf 3 a 24.6815 37.8587 32 % -8.9473 37.9837 47.0198 -Impact.ttf 3 a 24.6815 37.8587 33 £ -9.1077 28.2727 47.0198 -Impact.ttf 3 a 24.6815 37.8587 34 . 28.3239 8.6802 9.3360 -Impact.ttf 3 a 24.6815 37.8587 35 2 -9.0696 23.9837 47.0198 -Impact.ttf 3 a 24.6815 37.8587 36 5 -8.2441 26.3407 47.0198 -Impact.ttf 3 a 24.6815 37.8587 37 m 0.1455 40.4657 37.8587 -Impact.ttf 3 a 24.6815 37.8587 38 V -8.2941 31.0355 46.1413 -Impact.ttf 3 a 24.6815 37.8587 39 6 -9.1891 26.3407 47.8983 -Impact.ttf 3 a 24.6815 37.8587 40 w 0.0973 38.9680 37.8587 -Impact.ttf 3 a 24.6815 37.8587 41 T -8.2895 26.3407 46.1413 -Impact.ttf 3 a 24.6815 37.8587 42 M -8.1758 36.8052 46.1413 -Impact.ttf 3 a 24.6815 37.8587 43 G -9.2551 26.9465 47.8983 -Impact.ttf 3 a 24.6815 37.8587 44 b -8.2895 25.8600 46.1413 -Impact.ttf 3 a 24.6815 37.8587 45 9 -9.0551 26.3407 47.8983 -Impact.ttf 3 a 24.6815 37.8587 46 ; 7.6654 8.6802 36.1995 -Impact.ttf 3 a 24.6815 37.8587 47 D -8.1202 26.9465 46.1413 -Impact.ttf 3 a 24.6815 37.8587 48 L -8.3553 18.8948 46.1413 -Impact.ttf 3 a 24.6815 37.8587 49 y -0.4292 27.3942 43.1785 -Impact.ttf 3 a 24.6815 37.8587 50 ‘ -8.3617 8.4302 14.9477 -Impact.ttf 3 a 24.6815 37.8587 51 \ -9.6012 23.9087 48.3733 -Impact.ttf 3 a 24.6815 37.8587 52 R -8.2398 26.3407 46.1413 -Impact.ttf 3 a 24.6815 37.8587 53 < 0.0405 27.6670 29.1785 -Impact.ttf 3 a 24.6815 37.8587 54 4 -8.3363 28.6977 46.1413 -Impact.ttf 3 a 24.6815 37.8587 55 8 -9.1925 26.0407 47.8983 -Impact.ttf 3 a 24.6815 37.8587 56 0 -9.0836 26.3407 47.8983 -Impact.ttf 3 a 24.6815 37.8587 57 A -8.0916 31.5355 46.1413 -Impact.ttf 3 a 24.6815 37.8587 58 E -8.4137 20.4483 46.1413 -Impact.ttf 3 a 24.6815 37.8587 59 B -8.1921 26.9465 46.1413 -Impact.ttf 3 a 24.6815 37.8587 60 v -0.0812 26.8215 37.8587 -Impact.ttf 3 a 24.6815 37.8587 61 k -8.1556 25.7680 46.1413 -Impact.ttf 3 a 24.6815 37.8587 62 J -8.0188 16.2320 46.1413 -Impact.ttf 3 a 24.6815 37.8587 63 U -8.4011 26.8215 47.0198 -Impact.ttf 3 a 24.6815 37.8587 64 j -8.4708 13.7692 51.4610 -Impact.ttf 3 a 24.6815 37.8587 65 ( -8.3952 14.9285 46.1413 -Impact.ttf 3 a 24.6815 37.8587 66 7 -8.2984 22.3245 46.1413 -Impact.ttf 3 a 24.6815 37.8587 67 § -9.1578 25.6430 53.5180 -Impact.ttf 3 a 24.6815 37.8587 68 $ -12.1579 26.8215 54.0680 -Impact.ttf 3 a 24.6815 37.8587 69 € -9.2852 28.6058 47.8983 -Impact.ttf 3 a 24.6815 37.8587 70 / -9.5172 22.7302 48.3733 -Impact.ttf 3 a 24.6815 37.8587 71 C -8.9914 26.9465 47.8983 -Impact.ttf 3 a 24.6815 37.8587 72 * -8.0224 15.4705 13.7692 -Impact.ttf 3 a 24.6815 37.8587 73 ” -8.0513 19.2175 14.9477 -Impact.ttf 3 a 24.6815 37.8587 74 ? -9.2844 26.8215 47.0198 -Impact.ttf 3 a 24.6815 37.8587 75 { -8.3125 19.1675 54.8215 -Impact.ttf 3 a 24.6815 37.8587 76 } -8.3256 19.1675 54.8215 -Impact.ttf 3 a 24.6815 37.8587 77 , 28.6734 8.4302 14.9477 -Impact.ttf 3 a 24.6815 37.8587 78 I -8.0534 11.6430 46.1413 -Impact.ttf 3 a 24.6815 37.8587 79 ° -9.5290 18.0163 18.0163 -Impact.ttf 3 a 24.6815 37.8587 80 K -8.4879 30.3570 46.1413 -Impact.ttf 3 a 24.6815 37.8587 81 H -8.3409 27.2192 46.1413 -Impact.ttf 3 a 24.6815 37.8587 82 q 0.2484 25.8600 43.1785 -Impact.ttf 3 a 24.6815 37.8587 83 & -0.2253 33.5925 37.8587 -Impact.ttf 3 a 24.6815 37.8587 84 ’ -8.2515 8.4302 14.9477 -Impact.ttf 3 a 24.6815 37.8587 85 [ -8.2474 13.3942 46.1413 -Impact.ttf 3 a 24.6815 37.8587 86 - 14.6799 14.8785 7.9267 -Impact.ttf 3 a 24.6815 37.8587 87 Y -8.3451 27.6250 46.1413 -Impact.ttf 3 a 24.6815 37.8587 88 Q -9.1995 26.8215 52.3395 -Impact.ttf 3 a 24.6815 37.8587 89 " -8.5134 19.7175 14.0000 -Impact.ttf 3 a 24.6815 37.8587 90 ! -8.2825 12.8215 46.1413 -Impact.ttf 3 a 24.6815 37.8587 91 x 0.0312 25.1760 37.8587 -Impact.ttf 3 a 24.6815 37.8587 92 ) -8.2168 14.9285 46.1413 -Impact.ttf 3 a 24.6815 37.8587 93 = 6.4009 27.6670 16.7320 -Impact.ttf 3 a 24.6815 37.8587 94 + 1.5892 27.1773 27.1773 -Impact.ttf 3 a 24.6815 37.8587 95 X -8.3210 29.6400 46.1413 -Impact.ttf 3 a 24.6815 37.8587 96 » 1.3690 19.6198 32.7140 -Impact.ttf 3 a 24.6815 37.8587 97 ' -8.5347 8.6802 14.0000 -Impact.ttf 3 a 24.6815 37.8587 98 ¢ -8.1478 25.8600 49.5017 -Impact.ttf 3 a 24.6815 37.8587 99 Z -8.1880 22.6245 46.1413 -Impact.ttf 3 a 24.6815 37.8587 100 > -0.2607 27.6670 29.1785 -Impact.ttf 3 a 24.6815 37.8587 101 ® -5.5392 43.1785 43.3035 -Impact.ttf 3 a 24.6815 37.8587 102 © -4.3026 43.1785 42.0000 -Impact.ttf 3 a 24.6815 37.8587 103 ] -8.2825 13.3942 46.1413 -Impact.ttf 3 a 24.6815 37.8587 104 é -9.8411 25.5600 47.5698 -Impact.ttf 3 a 24.6815 37.8587 105 z 0.1645 19.3198 37.8587 -Impact.ttf 3 a 24.6815 37.8587 106 _ 42.4354 32.1413 2.8378 -Impact.ttf 3 a 24.6815 37.8587 107 ¥ -8.3651 27.6250 46.1413 -Impact.ttf 4 n 25.8600 37.8587 1 t -5.3722 17.0878 43.1785 -Impact.ttf 4 n 25.8600 37.8587 2 h -8.1346 25.8600 46.1413 -Impact.ttf 4 n 25.8600 37.8587 3 a -0.1520 24.6815 37.8587 -Impact.ttf 4 n 25.8600 37.8587 4 n 0.0774 25.8600 37.8587 -Impact.ttf 4 n 25.8600 37.8587 5 P -8.4619 25.1622 46.1413 -Impact.ttf 4 n 25.8600 37.8587 6 o 0.3502 25.5600 37.8587 -Impact.ttf 4 n 25.8600 37.8587 7 e -0.0045 25.5600 37.8587 -Impact.ttf 4 n 25.8600 37.8587 8 : 7.5370 8.6802 30.3570 -Impact.ttf 4 n 25.8600 37.8587 9 r 0.0631 17.9105 37.8587 -Impact.ttf 4 n 25.8600 37.8587 10 l -8.5207 11.1622 46.1413 -Impact.ttf 4 n 25.8600 37.8587 11 i -8.0972 11.1622 46.1413 -Impact.ttf 4 n 25.8600 37.8587 12 1 -8.1798 19.5925 46.1413 -Impact.ttf 4 n 25.8600 37.8587 13 | -8.1337 5.8425 53.6430 -Impact.ttf 4 n 25.8600 37.8587 14 N -8.4253 26.3407 46.1413 -Impact.ttf 4 n 25.8600 37.8587 15 f -8.3242 15.6593 46.1413 -Impact.ttf 4 n 25.8600 37.8587 16 g -0.1836 25.8600 44.3570 -Impact.ttf 4 n 25.8600 37.8587 17 d -8.1430 25.8600 46.1413 -Impact.ttf 4 n 25.8600 37.8587 18 W -8.1973 46.2890 46.1413 -Impact.ttf 4 n 25.8600 37.8587 19 s -0.2317 23.5030 37.8587 -Impact.ttf 4 n 25.8600 37.8587 20 c -0.0172 24.6815 37.8587 -Impact.ttf 4 n 25.8600 37.8587 21 u 0.3508 25.8600 37.8587 -Impact.ttf 4 n 25.8600 37.8587 22 3 -9.2740 25.7680 47.8983 -Impact.ttf 4 n 25.8600 37.8587 23 ~ 7.4341 26.7885 12.8907 -Impact.ttf 4 n 25.8600 37.8587 24 # -3.2725 34.6652 41.1215 -Impact.ttf 4 n 25.8600 37.8587 25 O -8.8575 26.8215 47.8983 -Impact.ttf 4 n 25.8600 37.8587 26 ` -13.3350 15.1785 7.9267 -Impact.ttf 4 n 25.8600 37.8587 27 @ -9.0513 43.1785 48.8040 -Impact.ttf 4 n 25.8600 37.8587 28 F -8.4021 20.2675 46.1413 -Impact.ttf 4 n 25.8600 37.8587 29 S -9.0995 27.5192 47.8983 -Impact.ttf 4 n 25.8600 37.8587 30 p -0.2373 25.8600 43.1785 -Impact.ttf 4 n 25.8600 37.8587 31 “ -8.2451 19.2175 14.9477 -Impact.ttf 4 n 25.8600 37.8587 32 % -8.9598 37.9837 47.0198 -Impact.ttf 4 n 25.8600 37.8587 33 £ -9.0656 28.2727 47.0198 -Impact.ttf 4 n 25.8600 37.8587 34 . 28.3869 8.6802 9.3360 -Impact.ttf 4 n 25.8600 37.8587 35 2 -9.1401 23.9837 47.0198 -Impact.ttf 4 n 25.8600 37.8587 36 5 -8.3065 26.3407 47.0198 -Impact.ttf 4 n 25.8600 37.8587 37 m 0.1326 40.4657 37.8587 -Impact.ttf 4 n 25.8600 37.8587 38 V -8.0595 31.0355 46.1413 -Impact.ttf 4 n 25.8600 37.8587 39 6 -9.2954 26.3407 47.8983 -Impact.ttf 4 n 25.8600 37.8587 40 w -0.0134 38.9680 37.8587 -Impact.ttf 4 n 25.8600 37.8587 41 T -8.3825 26.3407 46.1413 -Impact.ttf 4 n 25.8600 37.8587 42 M -8.3936 36.8052 46.1413 -Impact.ttf 4 n 25.8600 37.8587 43 G -9.0900 26.9465 47.8983 -Impact.ttf 4 n 25.8600 37.8587 44 b -8.3155 25.8600 46.1413 -Impact.ttf 4 n 25.8600 37.8587 45 9 -9.1039 26.3407 47.8983 -Impact.ttf 4 n 25.8600 37.8587 46 ; 7.6829 8.6802 36.1995 -Impact.ttf 4 n 25.8600 37.8587 47 D -8.2898 26.9465 46.1413 -Impact.ttf 4 n 25.8600 37.8587 48 L -8.3812 18.8948 46.1413 -Impact.ttf 4 n 25.8600 37.8587 49 y -0.1696 27.3942 43.1785 -Impact.ttf 4 n 25.8600 37.8587 50 ‘ -8.5393 8.4302 14.9477 -Impact.ttf 4 n 25.8600 37.8587 51 \ -9.3332 23.9087 48.3733 -Impact.ttf 4 n 25.8600 37.8587 52 R -8.0077 26.3407 46.1413 -Impact.ttf 4 n 25.8600 37.8587 53 < -0.1347 27.6670 29.1785 -Impact.ttf 4 n 25.8600 37.8587 54 4 -8.4188 28.6977 46.1413 -Impact.ttf 4 n 25.8600 37.8587 55 8 -8.9514 26.0407 47.8983 -Impact.ttf 4 n 25.8600 37.8587 56 0 -9.2583 26.3407 47.8983 -Impact.ttf 4 n 25.8600 37.8587 57 A -8.3994 31.5355 46.1413 -Impact.ttf 4 n 25.8600 37.8587 58 E -8.2572 20.4483 46.1413 -Impact.ttf 4 n 25.8600 37.8587 59 B -8.3854 26.9465 46.1413 -Impact.ttf 4 n 25.8600 37.8587 60 v 0.1214 26.8215 37.8587 -Impact.ttf 4 n 25.8600 37.8587 61 k -8.2027 25.7680 46.1413 -Impact.ttf 4 n 25.8600 37.8587 62 J -8.0355 16.2320 46.1413 -Impact.ttf 4 n 25.8600 37.8587 63 U -8.1667 26.8215 47.0198 -Impact.ttf 4 n 25.8600 37.8587 64 j -8.2050 13.7692 51.4610 -Impact.ttf 4 n 25.8600 37.8587 65 ( -8.4736 14.9285 46.1413 -Impact.ttf 4 n 25.8600 37.8587 66 7 -8.4164 22.3245 46.1413 -Impact.ttf 4 n 25.8600 37.8587 67 § -8.7342 25.6430 53.5180 -Impact.ttf 4 n 25.8600 37.8587 68 $ -12.1705 26.8215 54.0680 -Impact.ttf 4 n 25.8600 37.8587 69 € -9.3269 28.6058 47.8983 -Impact.ttf 4 n 25.8600 37.8587 70 / -9.4743 22.7302 48.3733 -Impact.ttf 4 n 25.8600 37.8587 71 C -9.1396 26.9465 47.8983 -Impact.ttf 4 n 25.8600 37.8587 72 * -8.2585 15.4705 13.7692 -Impact.ttf 4 n 25.8600 37.8587 73 ” -8.4210 19.2175 14.9477 -Impact.ttf 4 n 25.8600 37.8587 74 ? -9.4580 26.8215 47.0198 -Impact.ttf 4 n 25.8600 37.8587 75 { -8.1839 19.1675 54.8215 -Impact.ttf 4 n 25.8600 37.8587 76 } -8.5291 19.1675 54.8215 -Impact.ttf 4 n 25.8600 37.8587 77 , 28.6033 8.4302 14.9477 -Impact.ttf 4 n 25.8600 37.8587 78 I -7.9089 11.6430 46.1413 -Impact.ttf 4 n 25.8600 37.8587 79 ° -9.0868 18.0163 18.0163 -Impact.ttf 4 n 25.8600 37.8587 80 K -8.3482 30.3570 46.1413 -Impact.ttf 4 n 25.8600 37.8587 81 H -8.6422 27.2192 46.1413 -Impact.ttf 4 n 25.8600 37.8587 82 q 0.0202 25.8600 43.1785 -Impact.ttf 4 n 25.8600 37.8587 83 & 0.1196 33.5925 37.8587 -Impact.ttf 4 n 25.8600 37.8587 84 ’ -8.5081 8.4302 14.9477 -Impact.ttf 4 n 25.8600 37.8587 85 [ -8.3424 13.3942 46.1413 -Impact.ttf 4 n 25.8600 37.8587 86 - 14.8336 14.8785 7.9267 -Impact.ttf 4 n 25.8600 37.8587 87 Y -8.6411 27.6250 46.1413 -Impact.ttf 4 n 25.8600 37.8587 88 Q -8.9854 26.8215 52.3395 -Impact.ttf 4 n 25.8600 37.8587 89 " -8.3200 19.7175 14.0000 -Impact.ttf 4 n 25.8600 37.8587 90 ! -8.4327 12.8215 46.1413 -Impact.ttf 4 n 25.8600 37.8587 91 x -0.0537 25.1760 37.8587 -Impact.ttf 4 n 25.8600 37.8587 92 ) -8.2293 14.9285 46.1413 -Impact.ttf 4 n 25.8600 37.8587 93 = 6.7642 27.6670 16.7320 -Impact.ttf 4 n 25.8600 37.8587 94 + 1.3579 27.1773 27.1773 -Impact.ttf 4 n 25.8600 37.8587 95 X -8.1444 29.6400 46.1413 -Impact.ttf 4 n 25.8600 37.8587 96 » 1.2638 19.6198 32.7140 -Impact.ttf 4 n 25.8600 37.8587 97 ' -8.3280 8.6802 14.0000 -Impact.ttf 4 n 25.8600 37.8587 98 ¢ -8.0338 25.8600 49.5017 -Impact.ttf 4 n 25.8600 37.8587 99 Z -8.3993 22.6245 46.1413 -Impact.ttf 4 n 25.8600 37.8587 100 > -0.1040 27.6670 29.1785 -Impact.ttf 4 n 25.8600 37.8587 101 ® -5.4420 43.1785 43.3035 -Impact.ttf 4 n 25.8600 37.8587 102 © -4.0898 43.1785 42.0000 -Impact.ttf 4 n 25.8600 37.8587 103 ] -8.4220 13.3942 46.1413 -Impact.ttf 4 n 25.8600 37.8587 104 é -9.6583 25.5600 47.5698 -Impact.ttf 4 n 25.8600 37.8587 105 z -0.1155 19.3198 37.8587 -Impact.ttf 4 n 25.8600 37.8587 106 _ 42.0244 32.1413 2.8378 -Impact.ttf 4 n 25.8600 37.8587 107 ¥ -8.2710 27.6250 46.1413 -Impact.ttf 5 P 25.1622 46.1413 1 t 2.8738 17.0878 43.1785 -Impact.ttf 5 P 25.1622 46.1413 2 h 0.2540 25.8600 46.1413 -Impact.ttf 5 P 25.1622 46.1413 3 a 8.3010 24.6815 37.8587 -Impact.ttf 5 P 25.1622 46.1413 4 n 8.1926 25.8600 37.8587 -Impact.ttf 5 P 25.1622 46.1413 5 P -0.0440 25.1622 46.1413 -Impact.ttf 5 P 25.1622 46.1413 6 o 8.2432 25.5600 37.8587 -Impact.ttf 5 P 25.1622 46.1413 7 e 8.0393 25.5600 37.8587 -Impact.ttf 5 P 25.1622 46.1413 8 : 15.6160 8.6802 30.3570 -Impact.ttf 5 P 25.1622 46.1413 9 r 8.1356 17.9105 37.8587 -Impact.ttf 5 P 25.1622 46.1413 10 l 0.2665 11.1622 46.1413 -Impact.ttf 5 P 25.1622 46.1413 11 i -0.0347 11.1622 46.1413 -Impact.ttf 5 P 25.1622 46.1413 12 1 -0.1315 19.5925 46.1413 -Impact.ttf 5 P 25.1622 46.1413 13 | 0.0073 5.8425 53.6430 -Impact.ttf 5 P 25.1622 46.1413 14 N -0.3998 26.3407 46.1413 -Impact.ttf 5 P 25.1622 46.1413 15 f -0.0357 15.6593 46.1413 -Impact.ttf 5 P 25.1622 46.1413 16 g 8.3678 25.8600 44.3570 -Impact.ttf 5 P 25.1622 46.1413 17 d -0.0385 25.8600 46.1413 -Impact.ttf 5 P 25.1622 46.1413 18 W 0.0690 46.2890 46.1413 -Impact.ttf 5 P 25.1622 46.1413 19 s 8.2714 23.5030 37.8587 -Impact.ttf 5 P 25.1622 46.1413 20 c 7.9998 24.6815 37.8587 -Impact.ttf 5 P 25.1622 46.1413 21 u 8.5420 25.8600 37.8587 -Impact.ttf 5 P 25.1622 46.1413 22 3 -1.1126 25.7680 47.8983 -Impact.ttf 5 P 25.1622 46.1413 23 ~ 15.4188 26.7885 12.8907 -Impact.ttf 5 P 25.1622 46.1413 24 # 5.0198 34.6652 41.1215 -Impact.ttf 5 P 25.1622 46.1413 25 O -0.7386 26.8215 47.8983 -Impact.ttf 5 P 25.1622 46.1413 26 ` -4.7156 15.1785 7.9267 -Impact.ttf 5 P 25.1622 46.1413 27 @ -0.7316 43.1785 48.8040 -Impact.ttf 5 P 25.1622 46.1413 28 F -0.1438 20.2675 46.1413 -Impact.ttf 5 P 25.1622 46.1413 29 S -0.9031 27.5192 47.8983 -Impact.ttf 5 P 25.1622 46.1413 30 p 7.9758 25.8600 43.1785 -Impact.ttf 5 P 25.1622 46.1413 31 “ -0.2470 19.2175 14.9477 -Impact.ttf 5 P 25.1622 46.1413 32 % -0.9054 37.9837 47.0198 -Impact.ttf 5 P 25.1622 46.1413 33 £ -0.8868 28.2727 47.0198 -Impact.ttf 5 P 25.1622 46.1413 34 . 36.6324 8.6802 9.3360 -Impact.ttf 5 P 25.1622 46.1413 35 2 -0.8960 23.9837 47.0198 -Impact.ttf 5 P 25.1622 46.1413 36 5 -0.3003 26.3407 47.0198 -Impact.ttf 5 P 25.1622 46.1413 37 m 8.3242 40.4657 37.8587 -Impact.ttf 5 P 25.1622 46.1413 38 V -0.0774 31.0355 46.1413 -Impact.ttf 5 P 25.1622 46.1413 39 6 -0.4691 26.3407 47.8983 -Impact.ttf 5 P 25.1622 46.1413 40 w 8.2612 38.9680 37.8587 -Impact.ttf 5 P 25.1622 46.1413 41 T -0.2395 26.3407 46.1413 -Impact.ttf 5 P 25.1622 46.1413 42 M -0.1330 36.8052 46.1413 -Impact.ttf 5 P 25.1622 46.1413 43 G -0.5508 26.9465 47.8983 -Impact.ttf 5 P 25.1622 46.1413 44 b -0.1672 25.8600 46.1413 -Impact.ttf 5 P 25.1622 46.1413 45 9 -0.7699 26.3407 47.8983 -Impact.ttf 5 P 25.1622 46.1413 46 ; 15.9098 8.6802 36.1995 -Impact.ttf 5 P 25.1622 46.1413 47 D 0.1280 26.9465 46.1413 -Impact.ttf 5 P 25.1622 46.1413 48 L -0.2948 18.8948 46.1413 -Impact.ttf 5 P 25.1622 46.1413 49 y 8.3480 27.3942 43.1785 -Impact.ttf 5 P 25.1622 46.1413 50 ‘ 0.0917 8.4302 14.9477 -Impact.ttf 5 P 25.1622 46.1413 51 \ -0.8898 23.9087 48.3733 -Impact.ttf 5 P 25.1622 46.1413 52 R 0.0312 26.3407 46.1413 -Impact.ttf 5 P 25.1622 46.1413 53 < 7.8766 27.6670 29.1785 -Impact.ttf 5 P 25.1622 46.1413 54 4 0.0459 28.6977 46.1413 -Impact.ttf 5 P 25.1622 46.1413 55 8 -0.8998 26.0407 47.8983 -Impact.ttf 5 P 25.1622 46.1413 56 0 -0.7204 26.3407 47.8983 -Impact.ttf 5 P 25.1622 46.1413 57 A 0.1329 31.5355 46.1413 -Impact.ttf 5 P 25.1622 46.1413 58 E -0.2281 20.4483 46.1413 -Impact.ttf 5 P 25.1622 46.1413 59 B -0.1579 26.9465 46.1413 -Impact.ttf 5 P 25.1622 46.1413 60 v 8.3938 26.8215 37.8587 -Impact.ttf 5 P 25.1622 46.1413 61 k -0.0599 25.7680 46.1413 -Impact.ttf 5 P 25.1622 46.1413 62 J 0.1280 16.2320 46.1413 -Impact.ttf 5 P 25.1622 46.1413 63 U 0.3137 26.8215 47.0198 -Impact.ttf 5 P 25.1622 46.1413 64 j 0.1001 13.7692 51.4610 -Impact.ttf 5 P 25.1622 46.1413 65 ( -0.2867 14.9285 46.1413 -Impact.ttf 5 P 25.1622 46.1413 66 7 -0.1266 22.3245 46.1413 -Impact.ttf 5 P 25.1622 46.1413 67 § -0.9267 25.6430 53.5180 -Impact.ttf 5 P 25.1622 46.1413 68 $ -3.5561 26.8215 54.0680 -Impact.ttf 5 P 25.1622 46.1413 69 € -0.7412 28.6058 47.8983 -Impact.ttf 5 P 25.1622 46.1413 70 / -1.0605 22.7302 48.3733 -Impact.ttf 5 P 25.1622 46.1413 71 C -0.9438 26.9465 47.8983 -Impact.ttf 5 P 25.1622 46.1413 72 * -0.2196 15.4705 13.7692 -Impact.ttf 5 P 25.1622 46.1413 73 ” -0.1645 19.2175 14.9477 -Impact.ttf 5 P 25.1622 46.1413 74 ? -1.2265 26.8215 47.0198 -Impact.ttf 5 P 25.1622 46.1413 75 { -0.0427 19.1675 54.8215 -Impact.ttf 5 P 25.1622 46.1413 76 } 0.0514 19.1675 54.8215 -Impact.ttf 5 P 25.1622 46.1413 77 , 37.0777 8.4302 14.9477 -Impact.ttf 5 P 25.1622 46.1413 78 I 0.0626 11.6430 46.1413 -Impact.ttf 5 P 25.1622 46.1413 79 ° -0.9235 18.0163 18.0163 -Impact.ttf 5 P 25.1622 46.1413 80 K 0.0514 30.3570 46.1413 -Impact.ttf 5 P 25.1622 46.1413 81 H -0.1938 27.2192 46.1413 -Impact.ttf 5 P 25.1622 46.1413 82 q 8.1328 25.8600 43.1785 -Impact.ttf 5 P 25.1622 46.1413 83 & 8.2468 33.5925 37.8587 -Impact.ttf 5 P 25.1622 46.1413 84 ’ -0.1196 8.4302 14.9477 -Impact.ttf 5 P 25.1622 46.1413 85 [ -0.0330 13.3942 46.1413 -Impact.ttf 5 P 25.1622 46.1413 86 - 22.5811 14.8785 7.9267 -Impact.ttf 5 P 25.1622 46.1413 87 Y 0.0389 27.6250 46.1413 -Impact.ttf 5 P 25.1622 46.1413 88 Q -1.0963 26.8215 52.3395 -Impact.ttf 5 P 25.1622 46.1413 89 " -0.0704 19.7175 14.0000 -Impact.ttf 5 P 25.1622 46.1413 90 ! 0.1780 12.8215 46.1413 -Impact.ttf 5 P 25.1622 46.1413 91 x 8.0887 25.1760 37.8587 -Impact.ttf 5 P 25.1622 46.1413 92 ) -0.1470 14.9285 46.1413 -Impact.ttf 5 P 25.1622 46.1413 93 = 14.8159 27.6670 16.7320 -Impact.ttf 5 P 25.1622 46.1413 94 + 9.6387 27.1773 27.1773 -Impact.ttf 5 P 25.1622 46.1413 95 X -0.0769 29.6400 46.1413 -Impact.ttf 5 P 25.1622 46.1413 96 » 9.7715 19.6198 32.7140 -Impact.ttf 5 P 25.1622 46.1413 97 ' 0.1871 8.6802 14.0000 -Impact.ttf 5 P 25.1622 46.1413 98 ¢ 0.1722 25.8600 49.5017 -Impact.ttf 5 P 25.1622 46.1413 99 Z 0.0820 22.6245 46.1413 -Impact.ttf 5 P 25.1622 46.1413 100 > 8.1645 27.6670 29.1785 -Impact.ttf 5 P 25.1622 46.1413 101 ® 2.7428 43.1785 43.3035 -Impact.ttf 5 P 25.1622 46.1413 102 © 4.1899 43.1785 42.0000 -Impact.ttf 5 P 25.1622 46.1413 103 ] -0.2466 13.3942 46.1413 -Impact.ttf 5 P 25.1622 46.1413 104 é -1.4754 25.5600 47.5698 -Impact.ttf 5 P 25.1622 46.1413 105 z 8.1199 19.3198 37.8587 -Impact.ttf 5 P 25.1622 46.1413 106 _ 50.3818 32.1413 2.8378 -Impact.ttf 5 P 25.1622 46.1413 107 ¥ -0.2411 27.6250 46.1413 -Impact.ttf 6 o 25.5600 37.8587 1 t -5.2582 17.0878 43.1785 -Impact.ttf 6 o 25.5600 37.8587 2 h -8.2097 25.8600 46.1413 -Impact.ttf 6 o 25.5600 37.8587 3 a -0.1623 24.6815 37.8587 -Impact.ttf 6 o 25.5600 37.8587 4 n -0.2067 25.8600 37.8587 -Impact.ttf 6 o 25.5600 37.8587 5 P -8.2714 25.1622 46.1413 -Impact.ttf 6 o 25.5600 37.8587 6 o 0.1339 25.5600 37.8587 -Impact.ttf 6 o 25.5600 37.8587 7 e 0.1682 25.5600 37.8587 -Impact.ttf 6 o 25.5600 37.8587 8 : 7.3619 8.6802 30.3570 -Impact.ttf 6 o 25.5600 37.8587 9 r -0.0430 17.9105 37.8587 -Impact.ttf 6 o 25.5600 37.8587 10 l -8.2895 11.1622 46.1413 -Impact.ttf 6 o 25.5600 37.8587 11 i -7.9683 11.1622 46.1413 -Impact.ttf 6 o 25.5600 37.8587 12 1 -8.4470 19.5925 46.1413 -Impact.ttf 6 o 25.5600 37.8587 13 | -8.1030 5.8425 53.6430 -Impact.ttf 6 o 25.5600 37.8587 14 N -8.1480 26.3407 46.1413 -Impact.ttf 6 o 25.5600 37.8587 15 f -8.4397 15.6593 46.1413 -Impact.ttf 6 o 25.5600 37.8587 16 g -0.1335 25.8600 44.3570 -Impact.ttf 6 o 25.5600 37.8587 17 d -8.4068 25.8600 46.1413 -Impact.ttf 6 o 25.5600 37.8587 18 W -8.5795 46.2890 46.1413 -Impact.ttf 6 o 25.5600 37.8587 19 s -0.1599 23.5030 37.8587 -Impact.ttf 6 o 25.5600 37.8587 20 c 0.1097 24.6815 37.8587 -Impact.ttf 6 o 25.5600 37.8587 21 u -0.2271 25.8600 37.8587 -Impact.ttf 6 o 25.5600 37.8587 22 3 -9.4118 25.7680 47.8983 -Impact.ttf 6 o 25.5600 37.8587 23 ~ 7.2252 26.7885 12.8907 -Impact.ttf 6 o 25.5600 37.8587 24 # -3.3342 34.6652 41.1215 -Impact.ttf 6 o 25.5600 37.8587 25 O -9.1874 26.8215 47.8983 -Impact.ttf 6 o 25.5600 37.8587 26 ` -13.2150 15.1785 7.9267 -Impact.ttf 6 o 25.5600 37.8587 27 @ -9.2592 43.1785 48.8040 -Impact.ttf 6 o 25.5600 37.8587 28 F -8.2013 20.2675 46.1413 -Impact.ttf 6 o 25.5600 37.8587 29 S -9.3597 27.5192 47.8983 -Impact.ttf 6 o 25.5600 37.8587 30 p -0.0844 25.8600 43.1785 -Impact.ttf 6 o 25.5600 37.8587 31 “ -8.1009 19.2175 14.9477 -Impact.ttf 6 o 25.5600 37.8587 32 % -9.0669 37.9837 47.0198 -Impact.ttf 6 o 25.5600 37.8587 33 £ -9.3039 28.2727 47.0198 -Impact.ttf 6 o 25.5600 37.8587 34 . 28.6715 8.6802 9.3360 -Impact.ttf 6 o 25.5600 37.8587 35 2 -9.2324 23.9837 47.0198 -Impact.ttf 6 o 25.5600 37.8587 36 5 -8.0712 26.3407 47.0198 -Impact.ttf 6 o 25.5600 37.8587 37 m -0.1274 40.4657 37.8587 -Impact.ttf 6 o 25.5600 37.8587 38 V -8.1941 31.0355 46.1413 -Impact.ttf 6 o 25.5600 37.8587 39 6 -9.4720 26.3407 47.8983 -Impact.ttf 6 o 25.5600 37.8587 40 w -0.0045 38.9680 37.8587 -Impact.ttf 6 o 25.5600 37.8587 41 T -8.5470 26.3407 46.1413 -Impact.ttf 6 o 25.5600 37.8587 42 M -8.1244 36.8052 46.1413 -Impact.ttf 6 o 25.5600 37.8587 43 G -9.2648 26.9465 47.8983 -Impact.ttf 6 o 25.5600 37.8587 44 b -7.9785 25.8600 46.1413 -Impact.ttf 6 o 25.5600 37.8587 45 9 -9.0897 26.3407 47.8983 -Impact.ttf 6 o 25.5600 37.8587 46 ; 7.1950 8.6802 36.1995 -Impact.ttf 6 o 25.5600 37.8587 47 D -8.3049 26.9465 46.1413 -Impact.ttf 6 o 25.5600 37.8587 48 L -8.1978 18.8948 46.1413 -Impact.ttf 6 o 25.5600 37.8587 49 y -0.1412 27.3942 43.1785 -Impact.ttf 6 o 25.5600 37.8587 50 ‘ -8.4643 8.4302 14.9477 -Impact.ttf 6 o 25.5600 37.8587 51 \ -9.4245 23.9087 48.3733 -Impact.ttf 6 o 25.5600 37.8587 52 R -8.1903 26.3407 46.1413 -Impact.ttf 6 o 25.5600 37.8587 53 < 0.1017 27.6670 29.1785 -Impact.ttf 6 o 25.5600 37.8587 54 4 -8.3195 28.6977 46.1413 -Impact.ttf 6 o 25.5600 37.8587 55 8 -9.1323 26.0407 47.8983 -Impact.ttf 6 o 25.5600 37.8587 56 0 -9.1280 26.3407 47.8983 -Impact.ttf 6 o 25.5600 37.8587 57 A -8.1059 31.5355 46.1413 -Impact.ttf 6 o 25.5600 37.8587 58 E -8.2728 20.4483 46.1413 -Impact.ttf 6 o 25.5600 37.8587 59 B -8.3658 26.9465 46.1413 -Impact.ttf 6 o 25.5600 37.8587 60 v -0.1556 26.8215 37.8587 -Impact.ttf 6 o 25.5600 37.8587 61 k -8.3567 25.7680 46.1413 -Impact.ttf 6 o 25.5600 37.8587 62 J -8.1871 16.2320 46.1413 -Impact.ttf 6 o 25.5600 37.8587 63 U -8.2343 26.8215 47.0198 -Impact.ttf 6 o 25.5600 37.8587 64 j -8.2655 13.7692 51.4610 -Impact.ttf 6 o 25.5600 37.8587 65 ( -7.6053 14.9285 46.1413 -Impact.ttf 6 o 25.5600 37.8587 66 7 -8.1161 22.3245 46.1413 -Impact.ttf 6 o 25.5600 37.8587 67 § -9.0029 25.6430 53.5180 -Impact.ttf 6 o 25.5600 37.8587 68 $ -12.0698 26.8215 54.0680 -Impact.ttf 6 o 25.5600 37.8587 69 € -9.1824 28.6058 47.8983 -Impact.ttf 6 o 25.5600 37.8587 70 / -9.4134 22.7302 48.3733 -Impact.ttf 6 o 25.5600 37.8587 71 C -9.2648 26.9465 47.8983 -Impact.ttf 6 o 25.5600 37.8587 72 * -8.2835 15.4705 13.7692 -Impact.ttf 6 o 25.5600 37.8587 73 ” -8.1583 19.2175 14.9477 -Impact.ttf 6 o 25.5600 37.8587 74 ? -9.4530 26.8215 47.0198 -Impact.ttf 6 o 25.5600 37.8587 75 { -8.2700 19.1675 54.8215 -Impact.ttf 6 o 25.5600 37.8587 76 } -8.1282 19.1675 54.8215 -Impact.ttf 6 o 25.5600 37.8587 77 , 28.9731 8.4302 14.9477 -Impact.ttf 6 o 25.5600 37.8587 78 I -8.0679 11.6430 46.1413 -Impact.ttf 6 o 25.5600 37.8587 79 ° -9.2987 18.0163 18.0163 -Impact.ttf 6 o 25.5600 37.8587 80 K -8.0296 30.3570 46.1413 -Impact.ttf 6 o 25.5600 37.8587 81 H -8.2041 27.2192 46.1413 -Impact.ttf 6 o 25.5600 37.8587 82 q -0.1943 25.8600 43.1785 -Impact.ttf 6 o 25.5600 37.8587 83 & 0.1155 33.5925 37.8587 -Impact.ttf 6 o 25.5600 37.8587 84 ’ -8.1968 8.4302 14.9477 -Impact.ttf 6 o 25.5600 37.8587 85 [ -8.5068 13.3942 46.1413 -Impact.ttf 6 o 25.5600 37.8587 86 - 15.0710 14.8785 7.9267 -Impact.ttf 6 o 25.5600 37.8587 87 Y -8.0772 27.6250 46.1413 -Impact.ttf 6 o 25.5600 37.8587 88 Q -9.1638 26.8215 52.3395 -Impact.ttf 6 o 25.5600 37.8587 89 " -7.8673 19.7175 14.0000 -Impact.ttf 6 o 25.5600 37.8587 90 ! -8.0373 12.8215 46.1413 -Impact.ttf 6 o 25.5600 37.8587 91 x -0.0070 25.1760 37.8587 -Impact.ttf 6 o 25.5600 37.8587 92 ) -8.2784 14.9285 46.1413 -Impact.ttf 6 o 25.5600 37.8587 93 = 6.8044 27.6670 16.7320 -Impact.ttf 6 o 25.5600 37.8587 94 + 1.6119 27.1773 27.1773 -Impact.ttf 6 o 25.5600 37.8587 95 X -8.1129 29.6400 46.1413 -Impact.ttf 6 o 25.5600 37.8587 96 » 1.3805 19.6198 32.7140 -Impact.ttf 6 o 25.5600 37.8587 97 ' -8.5336 8.6802 14.0000 -Impact.ttf 6 o 25.5600 37.8587 98 ¢ -8.2484 25.8600 49.5017 -Impact.ttf 6 o 25.5600 37.8587 99 Z -8.4164 22.6245 46.1413 -Impact.ttf 6 o 25.5600 37.8587 100 > -0.2679 27.6670 29.1785 -Impact.ttf 6 o 25.5600 37.8587 101 ® -5.2719 43.1785 43.3035 -Impact.ttf 6 o 25.5600 37.8587 102 © -4.2994 43.1785 42.0000 -Impact.ttf 6 o 25.5600 37.8587 103 ] -8.2024 13.3942 46.1413 -Impact.ttf 6 o 25.5600 37.8587 104 é -9.8519 25.5600 47.5698 -Impact.ttf 6 o 25.5600 37.8587 105 z -0.0213 19.3198 37.8587 -Impact.ttf 6 o 25.5600 37.8587 106 _ 42.1777 32.1413 2.8378 -Impact.ttf 6 o 25.5600 37.8587 107 ¥ -8.4067 27.6250 46.1413 -Impact.ttf 7 e 25.5600 37.8587 1 t -5.4096 17.0878 43.1785 -Impact.ttf 7 e 25.5600 37.8587 2 h -8.6649 25.8600 46.1413 -Impact.ttf 7 e 25.5600 37.8587 3 a -0.0955 24.6815 37.8587 -Impact.ttf 7 e 25.5600 37.8587 4 n 0.1097 25.8600 37.8587 -Impact.ttf 7 e 25.5600 37.8587 5 P -8.1524 25.1622 46.1413 -Impact.ttf 7 e 25.5600 37.8587 6 o -0.0172 25.5600 37.8587 -Impact.ttf 7 e 25.5600 37.8587 7 e -0.4232 25.5600 37.8587 -Impact.ttf 7 e 25.5600 37.8587 8 : 7.7025 8.6802 30.3570 -Impact.ttf 7 e 25.5600 37.8587 9 r -0.0955 17.9105 37.8587 -Impact.ttf 7 e 25.5600 37.8587 10 l -8.0849 11.1622 46.1413 -Impact.ttf 7 e 25.5600 37.8587 11 i -8.4508 11.1622 46.1413 -Impact.ttf 7 e 25.5600 37.8587 12 1 -8.3897 19.5925 46.1413 -Impact.ttf 7 e 25.5600 37.8587 13 | -8.1811 5.8425 53.6430 -Impact.ttf 7 e 25.5600 37.8587 14 N -8.4494 26.3407 46.1413 -Impact.ttf 7 e 25.5600 37.8587 15 f -8.3873 15.6593 46.1413 -Impact.ttf 7 e 25.5600 37.8587 16 g 0.1312 25.8600 44.3570 -Impact.ttf 7 e 25.5600 37.8587 17 d -8.2755 25.8600 46.1413 -Impact.ttf 7 e 25.5600 37.8587 18 W -8.4632 46.2890 46.1413 -Impact.ttf 7 e 25.5600 37.8587 19 s -0.2585 23.5030 37.8587 -Impact.ttf 7 e 25.5600 37.8587 20 c 0.1696 24.6815 37.8587 -Impact.ttf 7 e 25.5600 37.8587 21 u -0.2873 25.8600 37.8587 -Impact.ttf 7 e 25.5600 37.8587 22 3 -9.2751 25.7680 47.8983 -Impact.ttf 7 e 25.5600 37.8587 23 ~ 7.2395 26.7885 12.8907 -Impact.ttf 7 e 25.5600 37.8587 24 # -3.3499 34.6652 41.1215 -Impact.ttf 7 e 25.5600 37.8587 25 O -8.9255 26.8215 47.8983 -Impact.ttf 7 e 25.5600 37.8587 26 ` -13.3591 15.1785 7.9267 -Impact.ttf 7 e 25.5600 37.8587 27 @ -9.2208 43.1785 48.8040 -Impact.ttf 7 e 25.5600 37.8587 28 F -8.5531 20.2675 46.1413 -Impact.ttf 7 e 25.5600 37.8587 29 S -9.0744 27.5192 47.8983 -Impact.ttf 7 e 25.5600 37.8587 30 p -0.0994 25.8600 43.1785 -Impact.ttf 7 e 25.5600 37.8587 31 “ -8.3164 19.2175 14.9477 -Impact.ttf 7 e 25.5600 37.8587 32 % -9.0784 37.9837 47.0198 -Impact.ttf 7 e 25.5600 37.8587 33 £ -9.1680 28.2727 47.0198 -Impact.ttf 7 e 25.5600 37.8587 34 . 28.4815 8.6802 9.3360 -Impact.ttf 7 e 25.5600 37.8587 35 2 -9.0739 23.9837 47.0198 -Impact.ttf 7 e 25.5600 37.8587 36 5 -7.8978 26.3407 47.0198 -Impact.ttf 7 e 25.5600 37.8587 37 m -0.1038 40.4657 37.8587 -Impact.ttf 7 e 25.5600 37.8587 38 V -8.3655 31.0355 46.1413 -Impact.ttf 7 e 25.5600 37.8587 39 6 -9.1610 26.3407 47.8983 -Impact.ttf 7 e 25.5600 37.8587 40 w 0.0769 38.9680 37.8587 -Impact.ttf 7 e 25.5600 37.8587 41 T -8.3626 26.3407 46.1413 -Impact.ttf 7 e 25.5600 37.8587 42 M -8.3707 36.8052 46.1413 -Impact.ttf 7 e 25.5600 37.8587 43 G -9.3422 26.9465 47.8983 -Impact.ttf 7 e 25.5600 37.8587 44 b -8.1267 25.8600 46.1413 -Impact.ttf 7 e 25.5600 37.8587 45 9 -9.2522 26.3407 47.8983 -Impact.ttf 7 e 25.5600 37.8587 46 ; 7.6019 8.6802 36.1995 -Impact.ttf 7 e 25.5600 37.8587 47 D -8.2158 26.9465 46.1413 -Impact.ttf 7 e 25.5600 37.8587 48 L -8.1880 18.8948 46.1413 -Impact.ttf 7 e 25.5600 37.8587 49 y -0.2063 27.3942 43.1785 -Impact.ttf 7 e 25.5600 37.8587 50 ‘ -8.3824 8.4302 14.9477 -Impact.ttf 7 e 25.5600 37.8587 51 \ -9.4984 23.9087 48.3733 -Impact.ttf 7 e 25.5600 37.8587 52 R -8.4341 26.3407 46.1413 -Impact.ttf 7 e 25.5600 37.8587 53 < -0.0957 27.6670 29.1785 -Impact.ttf 7 e 25.5600 37.8587 54 4 -7.8502 28.6977 46.1413 -Impact.ttf 7 e 25.5600 37.8587 55 8 -9.2788 26.0407 47.8983 -Impact.ttf 7 e 25.5600 37.8587 56 0 -8.9482 26.3407 47.8983 -Impact.ttf 7 e 25.5600 37.8587 57 A -8.3877 31.5355 46.1413 -Impact.ttf 7 e 25.5600 37.8587 58 E -8.4351 20.4483 46.1413 -Impact.ttf 7 e 25.5600 37.8587 59 B -8.1909 26.9465 46.1413 -Impact.ttf 7 e 25.5600 37.8587 60 v -0.2085 26.8215 37.8587 -Impact.ttf 7 e 25.5600 37.8587 61 k -8.2111 25.7680 46.1413 -Impact.ttf 7 e 25.5600 37.8587 62 J -8.1004 16.2320 46.1413 -Impact.ttf 7 e 25.5600 37.8587 63 U -8.0217 26.8215 47.0198 -Impact.ttf 7 e 25.5600 37.8587 64 j -7.9160 13.7692 51.4610 -Impact.ttf 7 e 25.5600 37.8587 65 ( -8.4473 14.9285 46.1413 -Impact.ttf 7 e 25.5600 37.8587 66 7 -8.3015 22.3245 46.1413 -Impact.ttf 7 e 25.5600 37.8587 67 § -8.9979 25.6430 53.5180 -Impact.ttf 7 e 25.5600 37.8587 68 $ -11.8446 26.8215 54.0680 -Impact.ttf 7 e 25.5600 37.8587 69 € -9.2384 28.6058 47.8983 -Impact.ttf 7 e 25.5600 37.8587 70 / -9.0650 22.7302 48.3733 -Impact.ttf 7 e 25.5600 37.8587 71 C -9.0826 26.9465 47.8983 -Impact.ttf 7 e 25.5600 37.8587 72 * -7.9326 15.4705 13.7692 -Impact.ttf 7 e 25.5600 37.8587 73 ” -8.1129 19.2175 14.9477 -Impact.ttf 7 e 25.5600 37.8587 74 ? -9.1331 26.8215 47.0198 -Impact.ttf 7 e 25.5600 37.8587 75 { -8.1167 19.1675 54.8215 -Impact.ttf 7 e 25.5600 37.8587 76 } -8.4382 19.1675 54.8215 -Impact.ttf 7 e 25.5600 37.8587 77 , 28.8406 8.4302 14.9477 -Impact.ttf 7 e 25.5600 37.8587 78 I -8.3891 11.6430 46.1413 -Impact.ttf 7 e 25.5600 37.8587 79 ° -9.1309 18.0163 18.0163 -Impact.ttf 7 e 25.5600 37.8587 80 K -8.2441 30.3570 46.1413 -Impact.ttf 7 e 25.5600 37.8587 81 H -8.4266 27.2192 46.1413 -Impact.ttf 7 e 25.5600 37.8587 82 q -0.1014 25.8600 43.1785 -Impact.ttf 7 e 25.5600 37.8587 83 & 0.0844 33.5925 37.8587 -Impact.ttf 7 e 25.5600 37.8587 84 ’ -8.3039 8.4302 14.9477 -Impact.ttf 7 e 25.5600 37.8587 85 [ -8.3710 13.3942 46.1413 -Impact.ttf 7 e 25.5600 37.8587 86 - 14.9569 14.8785 7.9267 -Impact.ttf 7 e 25.5600 37.8587 87 Y -8.0855 27.6250 46.1413 -Impact.ttf 7 e 25.5600 37.8587 88 Q -9.1235 26.8215 52.3395 -Impact.ttf 7 e 25.5600 37.8587 89 " -8.1310 19.7175 14.0000 -Impact.ttf 7 e 25.5600 37.8587 90 ! -8.2696 12.8215 46.1413 -Impact.ttf 7 e 25.5600 37.8587 91 x -0.0871 25.1760 37.8587 -Impact.ttf 7 e 25.5600 37.8587 92 ) -8.3405 14.9285 46.1413 -Impact.ttf 7 e 25.5600 37.8587 93 = 6.5913 27.6670 16.7320 -Impact.ttf 7 e 25.5600 37.8587 94 + 1.5580 27.1773 27.1773 -Impact.ttf 7 e 25.5600 37.8587 95 X -8.3914 29.6400 46.1413 -Impact.ttf 7 e 25.5600 37.8587 96 » 1.3625 19.6198 32.7140 -Impact.ttf 7 e 25.5600 37.8587 97 ' -8.2740 8.6802 14.0000 -Impact.ttf 7 e 25.5600 37.8587 98 ¢ -8.4550 25.8600 49.5017 -Impact.ttf 7 e 25.5600 37.8587 99 Z -8.4526 22.6245 46.1413 -Impact.ttf 7 e 25.5600 37.8587 100 > -0.0648 27.6670 29.1785 -Impact.ttf 7 e 25.5600 37.8587 101 ® -5.3503 43.1785 43.3035 -Impact.ttf 7 e 25.5600 37.8587 102 © -4.3109 43.1785 42.0000 -Impact.ttf 7 e 25.5600 37.8587 103 ] -8.3395 13.3942 46.1413 -Impact.ttf 7 e 25.5600 37.8587 104 é -9.9269 25.5600 47.5698 -Impact.ttf 7 e 25.5600 37.8587 105 z 0.3605 19.3198 37.8587 -Impact.ttf 7 e 25.5600 37.8587 106 _ 42.2292 32.1413 2.8378 -Impact.ttf 7 e 25.5600 37.8587 107 ¥ -8.3051 27.6250 46.1413 -Impact.ttf 8 : 8.6802 30.3570 1 t -12.8995 17.0878 43.1785 -Impact.ttf 8 : 8.6802 30.3570 2 h -15.9549 25.8600 46.1413 -Impact.ttf 8 : 8.6802 30.3570 3 a -7.4448 24.6815 37.8587 -Impact.ttf 8 : 8.6802 30.3570 4 n -7.5160 25.8600 37.8587 -Impact.ttf 8 : 8.6802 30.3570 5 P -15.6503 25.1622 46.1413 -Impact.ttf 8 : 8.6802 30.3570 6 o -7.3859 25.5600 37.8587 -Impact.ttf 8 : 8.6802 30.3570 7 e -7.4604 25.5600 37.8587 -Impact.ttf 8 : 8.6802 30.3570 8 : -0.0325 8.6802 30.3570 -Impact.ttf 8 : 8.6802 30.3570 9 r -7.4990 17.9105 37.8587 -Impact.ttf 8 : 8.6802 30.3570 10 l -15.9654 11.1622 46.1413 -Impact.ttf 8 : 8.6802 30.3570 11 i -15.7958 11.1622 46.1413 -Impact.ttf 8 : 8.6802 30.3570 12 1 -15.6986 19.5925 46.1413 -Impact.ttf 8 : 8.6802 30.3570 13 | -15.9501 5.8425 53.6430 -Impact.ttf 8 : 8.6802 30.3570 14 N -15.7420 26.3407 46.1413 -Impact.ttf 8 : 8.6802 30.3570 15 f -15.6861 15.6593 46.1413 -Impact.ttf 8 : 8.6802 30.3570 16 g -7.4948 25.8600 44.3570 -Impact.ttf 8 : 8.6802 30.3570 17 d -16.0708 25.8600 46.1413 -Impact.ttf 8 : 8.6802 30.3570 18 W -15.6146 46.2890 46.1413 -Impact.ttf 8 : 8.6802 30.3570 19 s -7.4146 23.5030 37.8587 -Impact.ttf 8 : 8.6802 30.3570 20 c -7.5203 24.6815 37.8587 -Impact.ttf 8 : 8.6802 30.3570 21 u -7.2950 25.8600 37.8587 -Impact.ttf 8 : 8.6802 30.3570 22 3 -16.5358 25.7680 47.8983 -Impact.ttf 8 : 8.6802 30.3570 23 ~ -0.2451 26.7885 12.8907 -Impact.ttf 8 : 8.6802 30.3570 24 # -10.8002 34.6652 41.1215 -Impact.ttf 8 : 8.6802 30.3570 25 O -16.5913 26.8215 47.8983 -Impact.ttf 8 : 8.6802 30.3570 26 ` -20.9049 15.1785 7.9267 -Impact.ttf 8 : 8.6802 30.3570 27 @ -16.5705 43.1785 48.8040 -Impact.ttf 8 : 8.6802 30.3570 28 F -15.8227 20.2675 46.1413 -Impact.ttf 8 : 8.6802 30.3570 29 S -16.6054 27.5192 47.8983 -Impact.ttf 8 : 8.6802 30.3570 30 p -7.5017 25.8600 43.1785 -Impact.ttf 8 : 8.6802 30.3570 31 “ -15.7503 19.2175 14.9477 -Impact.ttf 8 : 8.6802 30.3570 32 % -16.6628 37.9837 47.0198 -Impact.ttf 8 : 8.6802 30.3570 33 £ -16.5529 28.2727 47.0198 -Impact.ttf 8 : 8.6802 30.3570 34 . 21.0924 8.6802 9.3360 -Impact.ttf 8 : 8.6802 30.3570 35 2 -16.5733 23.9837 47.0198 -Impact.ttf 8 : 8.6802 30.3570 36 5 -15.6628 26.3407 47.0198 -Impact.ttf 8 : 8.6802 30.3570 37 m -7.3178 40.4657 37.8587 -Impact.ttf 8 : 8.6802 30.3570 38 V -15.8311 31.0355 46.1413 -Impact.ttf 8 : 8.6802 30.3570 39 6 -16.5354 26.3407 47.8983 -Impact.ttf 8 : 8.6802 30.3570 40 w -7.4660 38.9680 37.8587 -Impact.ttf 8 : 8.6802 30.3570 41 T -15.6619 26.3407 46.1413 -Impact.ttf 8 : 8.6802 30.3570 42 M -15.7212 36.8052 46.1413 -Impact.ttf 8 : 8.6802 30.3570 43 G -16.7842 26.9465 47.8983 -Impact.ttf 8 : 8.6802 30.3570 44 b -15.8200 25.8600 46.1413 -Impact.ttf 8 : 8.6802 30.3570 45 9 -16.8259 26.3407 47.8983 -Impact.ttf 8 : 8.6802 30.3570 46 ; 0.0344 8.6802 36.1995 -Impact.ttf 8 : 8.6802 30.3570 47 D -15.7102 26.9465 46.1413 -Impact.ttf 8 : 8.6802 30.3570 48 L -15.7375 18.8948 46.1413 -Impact.ttf 8 : 8.6802 30.3570 49 y -7.3561 27.3942 43.1785 -Impact.ttf 8 : 8.6802 30.3570 50 ‘ -15.8227 8.4302 14.9477 -Impact.ttf 8 : 8.6802 30.3570 51 \ -16.7410 23.9087 48.3733 -Impact.ttf 8 : 8.6802 30.3570 52 R -15.8227 26.3407 46.1413 -Impact.ttf 8 : 8.6802 30.3570 53 < -7.5910 27.6670 29.1785 -Impact.ttf 8 : 8.6802 30.3570 54 4 -15.7003 28.6977 46.1413 -Impact.ttf 8 : 8.6802 30.3570 55 8 -16.4816 26.0407 47.8983 -Impact.ttf 8 : 8.6802 30.3570 56 0 -16.8356 26.3407 47.8983 -Impact.ttf 8 : 8.6802 30.3570 57 A -15.9571 31.5355 46.1413 -Impact.ttf 8 : 8.6802 30.3570 58 E -15.5719 20.4483 46.1413 -Impact.ttf 8 : 8.6802 30.3570 59 B -15.9084 26.9465 46.1413 -Impact.ttf 8 : 8.6802 30.3570 60 v -7.6773 26.8215 37.8587 -Impact.ttf 8 : 8.6802 30.3570 61 k -15.9271 25.7680 46.1413 -Impact.ttf 8 : 8.6802 30.3570 62 J -15.7913 16.2320 46.1413 -Impact.ttf 8 : 8.6802 30.3570 63 U -15.6321 26.8215 47.0198 -Impact.ttf 8 : 8.6802 30.3570 64 j -15.7843 13.7692 51.4610 -Impact.ttf 8 : 8.6802 30.3570 65 ( -16.0001 14.9285 46.1413 -Impact.ttf 8 : 8.6802 30.3570 66 7 -15.8797 22.3245 46.1413 -Impact.ttf 8 : 8.6802 30.3570 67 § -16.4861 25.6430 53.5180 -Impact.ttf 8 : 8.6802 30.3570 68 $ -19.4743 26.8215 54.0680 -Impact.ttf 8 : 8.6802 30.3570 69 € -16.5743 28.6058 47.8983 -Impact.ttf 8 : 8.6802 30.3570 70 / -16.8280 22.7302 48.3733 -Impact.ttf 8 : 8.6802 30.3570 71 C -16.7342 26.9465 47.8983 -Impact.ttf 8 : 8.6802 30.3570 72 * -15.6017 15.4705 13.7692 -Impact.ttf 8 : 8.6802 30.3570 73 ” -15.8227 19.2175 14.9477 -Impact.ttf 8 : 8.6802 30.3570 74 ? -16.6628 26.8215 47.0198 -Impact.ttf 8 : 8.6802 30.3570 75 { -15.8259 19.1675 54.8215 -Impact.ttf 8 : 8.6802 30.3570 76 } -15.8644 19.1675 54.8215 -Impact.ttf 8 : 8.6802 30.3570 77 , 21.1024 8.4302 14.9477 -Impact.ttf 8 : 8.6802 30.3570 78 I -15.5646 11.6430 46.1413 -Impact.ttf 8 : 8.6802 30.3570 79 ° -16.6985 18.0163 18.0163 -Impact.ttf 8 : 8.6802 30.3570 80 K -15.6576 30.3570 46.1413 -Impact.ttf 8 : 8.6802 30.3570 81 H -15.7069 27.2192 46.1413 -Impact.ttf 8 : 8.6802 30.3570 82 q -7.5017 25.8600 43.1785 -Impact.ttf 8 : 8.6802 30.3570 83 & -7.3563 33.5925 37.8587 -Impact.ttf 8 : 8.6802 30.3570 84 ’ -15.6244 8.4302 14.9477 -Impact.ttf 8 : 8.6802 30.3570 85 [ -15.5887 13.3942 46.1413 -Impact.ttf 8 : 8.6802 30.3570 86 - 7.1321 14.8785 7.9267 -Impact.ttf 8 : 8.6802 30.3570 87 Y -15.8584 27.6250 46.1413 -Impact.ttf 8 : 8.6802 30.3570 88 Q -16.6211 26.8215 52.3395 -Impact.ttf 8 : 8.6802 30.3570 89 " -16.0015 19.7175 14.0000 -Impact.ttf 8 : 8.6802 30.3570 90 ! -15.9297 12.8215 46.1413 -Impact.ttf 8 : 8.6802 30.3570 91 x -7.4303 25.1760 37.8587 -Impact.ttf 8 : 8.6802 30.3570 92 ) -15.9928 14.9285 46.1413 -Impact.ttf 8 : 8.6802 30.3570 93 = -0.8428 27.6670 16.7320 -Impact.ttf 8 : 8.6802 30.3570 94 + -5.9255 27.1773 27.1773 -Impact.ttf 8 : 8.6802 30.3570 95 X -15.7486 29.6400 46.1413 -Impact.ttf 8 : 8.6802 30.3570 96 » -6.2471 19.6198 32.7140 -Impact.ttf 8 : 8.6802 30.3570 97 ' -15.7843 8.6802 14.0000 -Impact.ttf 8 : 8.6802 30.3570 98 ¢ -15.6977 25.8600 49.5017 -Impact.ttf 8 : 8.6802 30.3570 99 Z -15.7815 22.6245 46.1413 -Impact.ttf 8 : 8.6802 30.3570 100 > -7.5383 27.6670 29.1785 -Impact.ttf 8 : 8.6802 30.3570 101 ® -12.7983 43.1785 43.3035 -Impact.ttf 8 : 8.6802 30.3570 102 © -11.6073 43.1785 42.0000 -Impact.ttf 8 : 8.6802 30.3570 103 ] -15.6833 13.3942 46.1413 -Impact.ttf 8 : 8.6802 30.3570 104 é -17.1698 25.5600 47.5698 -Impact.ttf 8 : 8.6802 30.3570 105 z -7.5462 19.3198 37.8587 -Impact.ttf 8 : 8.6802 30.3570 106 _ 34.9406 32.1413 2.8378 -Impact.ttf 8 : 8.6802 30.3570 107 ¥ -15.8644 27.6250 46.1413 -Impact.ttf 9 r 17.9105 37.8587 1 t -5.1121 17.0878 43.1785 -Impact.ttf 9 r 17.9105 37.8587 2 h -8.2655 25.8600 46.1413 -Impact.ttf 9 r 17.9105 37.8587 3 a -0.1970 24.6815 37.8587 -Impact.ttf 9 r 17.9105 37.8587 4 n -0.0395 25.8600 37.8587 -Impact.ttf 9 r 17.9105 37.8587 5 P -8.3484 25.1622 46.1413 -Impact.ttf 9 r 17.9105 37.8587 6 o -0.0181 25.5600 37.8587 -Impact.ttf 9 r 17.9105 37.8587 7 e 0.0857 25.5600 37.8587 -Impact.ttf 9 r 17.9105 37.8587 8 : 7.2645 8.6802 30.3570 -Impact.ttf 9 r 17.9105 37.8587 9 r -0.2053 17.9105 37.8587 -Impact.ttf 9 r 17.9105 37.8587 10 l -8.3682 11.1622 46.1413 -Impact.ttf 9 r 17.9105 37.8587 11 i -8.3696 11.1622 46.1413 -Impact.ttf 9 r 17.9105 37.8587 12 1 -8.2111 19.5925 46.1413 -Impact.ttf 9 r 17.9105 37.8587 13 | -8.5801 5.8425 53.6430 -Impact.ttf 9 r 17.9105 37.8587 14 N -8.2728 26.3407 46.1413 -Impact.ttf 9 r 17.9105 37.8587 15 f -8.6732 15.6593 46.1413 -Impact.ttf 9 r 17.9105 37.8587 16 g 0.0742 25.8600 44.3570 -Impact.ttf 9 r 17.9105 37.8587 17 d -8.1773 25.8600 46.1413 -Impact.ttf 9 r 17.9105 37.8587 18 W -8.5180 46.2890 46.1413 -Impact.ttf 9 r 17.9105 37.8587 19 s -0.0516 23.5030 37.8587 -Impact.ttf 9 r 17.9105 37.8587 20 c -0.0871 24.6815 37.8587 -Impact.ttf 9 r 17.9105 37.8587 21 u -0.2113 25.8600 37.8587 -Impact.ttf 9 r 17.9105 37.8587 22 3 -9.2449 25.7680 47.8983 -Impact.ttf 9 r 17.9105 37.8587 23 ~ 7.1129 26.7885 12.8907 -Impact.ttf 9 r 17.9105 37.8587 24 # -3.2836 34.6652 41.1215 -Impact.ttf 9 r 17.9105 37.8587 25 O -9.3534 26.8215 47.8983 -Impact.ttf 9 r 17.9105 37.8587 26 ` -13.4536 15.1785 7.9267 -Impact.ttf 9 r 17.9105 37.8587 27 @ -9.0229 43.1785 48.8040 -Impact.ttf 9 r 17.9105 37.8587 28 F -8.3657 20.2675 46.1413 -Impact.ttf 9 r 17.9105 37.8587 29 S -9.2330 27.5192 47.8983 -Impact.ttf 9 r 17.9105 37.8587 30 p -0.0955 25.8600 43.1785 -Impact.ttf 9 r 17.9105 37.8587 31 “ -8.4016 19.2175 14.9477 -Impact.ttf 9 r 17.9105 37.8587 32 % -9.3506 37.9837 47.0198 -Impact.ttf 9 r 17.9105 37.8587 33 £ -9.1715 28.2727 47.0198 -Impact.ttf 9 r 17.9105 37.8587 34 . 28.4486 8.6802 9.3360 -Impact.ttf 9 r 17.9105 37.8587 35 2 -9.0836 23.9837 47.0198 -Impact.ttf 9 r 17.9105 37.8587 36 5 -8.1454 26.3407 47.0198 -Impact.ttf 9 r 17.9105 37.8587 37 m 0.2094 40.4657 37.8587 -Impact.ttf 9 r 17.9105 37.8587 38 V -8.2655 31.0355 46.1413 -Impact.ttf 9 r 17.9105 37.8587 39 6 -9.0985 26.3407 47.8983 -Impact.ttf 9 r 17.9105 37.8587 40 w -0.0158 38.9680 37.8587 -Impact.ttf 9 r 17.9105 37.8587 41 T -8.4581 26.3407 46.1413 -Impact.ttf 9 r 17.9105 37.8587 42 M -8.1413 36.8052 46.1413 -Impact.ttf 9 r 17.9105 37.8587 43 G -8.9669 26.9465 47.8983 -Impact.ttf 9 r 17.9105 37.8587 44 b -8.5573 25.8600 46.1413 -Impact.ttf 9 r 17.9105 37.8587 45 9 -9.0586 26.3407 47.8983 -Impact.ttf 9 r 17.9105 37.8587 46 ; 7.1890 8.6802 36.1995 -Impact.ttf 9 r 17.9105 37.8587 47 D -8.6250 26.9465 46.1413 -Impact.ttf 9 r 17.9105 37.8587 48 L -8.3755 18.8948 46.1413 -Impact.ttf 9 r 17.9105 37.8587 49 y -0.2683 27.3942 43.1785 -Impact.ttf 9 r 17.9105 37.8587 50 ‘ -8.1764 8.4302 14.9477 -Impact.ttf 9 r 17.9105 37.8587 51 \ -9.5970 23.9087 48.3733 -Impact.ttf 9 r 17.9105 37.8587 52 R -8.6218 26.3407 46.1413 -Impact.ttf 9 r 17.9105 37.8587 53 < -0.2470 27.6670 29.1785 -Impact.ttf 9 r 17.9105 37.8587 54 4 -8.2885 28.6977 46.1413 -Impact.ttf 9 r 17.9105 37.8587 55 8 -9.2495 26.0407 47.8983 -Impact.ttf 9 r 17.9105 37.8587 56 0 -9.3431 26.3407 47.8983 -Impact.ttf 9 r 17.9105 37.8587 57 A -8.2343 31.5355 46.1413 -Impact.ttf 9 r 17.9105 37.8587 58 E -8.4554 20.4483 46.1413 -Impact.ttf 9 r 17.9105 37.8587 59 B -8.3367 26.9465 46.1413 -Impact.ttf 9 r 17.9105 37.8587 60 v 0.0631 26.8215 37.8587 -Impact.ttf 9 r 17.9105 37.8587 61 k -8.2208 25.7680 46.1413 -Impact.ttf 9 r 17.9105 37.8587 62 J -8.2260 16.2320 46.1413 -Impact.ttf 9 r 17.9105 37.8587 63 U -8.2083 26.8215 47.0198 -Impact.ttf 9 r 17.9105 37.8587 64 j -8.3710 13.7692 51.4610 -Impact.ttf 9 r 17.9105 37.8587 65 ( -8.0433 14.9285 46.1413 -Impact.ttf 9 r 17.9105 37.8587 66 7 -8.2079 22.3245 46.1413 -Impact.ttf 9 r 17.9105 37.8587 67 § -9.0823 25.6430 53.5180 -Impact.ttf 9 r 17.9105 37.8587 68 $ -12.2167 26.8215 54.0680 -Impact.ttf 9 r 17.9105 37.8587 69 € -9.3612 28.6058 47.8983 -Impact.ttf 9 r 17.9105 37.8587 70 / -9.2443 22.7302 48.3733 -Impact.ttf 9 r 17.9105 37.8587 71 C -9.0976 26.9465 47.8983 -Impact.ttf 9 r 17.9105 37.8587 72 * -8.3863 15.4705 13.7692 -Impact.ttf 9 r 17.9105 37.8587 73 ” -8.7765 19.2175 14.9477 -Impact.ttf 9 r 17.9105 37.8587 74 ? -9.1610 26.8215 47.0198 -Impact.ttf 9 r 17.9105 37.8587 75 { -8.1853 19.1675 54.8215 -Impact.ttf 9 r 17.9105 37.8587 76 } -8.5470 19.1675 54.8215 -Impact.ttf 9 r 17.9105 37.8587 77 , 28.6678 8.4302 14.9477 -Impact.ttf 9 r 17.9105 37.8587 78 I -8.3423 11.6430 46.1413 -Impact.ttf 9 r 17.9105 37.8587 79 ° -9.0654 18.0163 18.0163 -Impact.ttf 9 r 17.9105 37.8587 80 K -8.3929 30.3570 46.1413 -Impact.ttf 9 r 17.9105 37.8587 81 H -8.3228 27.2192 46.1413 -Impact.ttf 9 r 17.9105 37.8587 82 q -0.1969 25.8600 43.1785 -Impact.ttf 9 r 17.9105 37.8587 83 & 0.1099 33.5925 37.8587 -Impact.ttf 9 r 17.9105 37.8587 84 ’ -7.9401 8.4302 14.9477 -Impact.ttf 9 r 17.9105 37.8587 85 [ -8.3682 13.3942 46.1413 -Impact.ttf 9 r 17.9105 37.8587 86 - 14.9899 14.8785 7.9267 -Impact.ttf 9 r 17.9105 37.8587 87 Y -8.4521 27.6250 46.1413 -Impact.ttf 9 r 17.9105 37.8587 88 Q -9.1470 26.8215 52.3395 -Impact.ttf 9 r 17.9105 37.8587 89 " -8.3456 19.7175 14.0000 -Impact.ttf 9 r 17.9105 37.8587 90 ! -8.3164 12.8215 46.1413 -Impact.ttf 9 r 17.9105 37.8587 91 x 0.1526 25.1760 37.8587 -Impact.ttf 9 r 17.9105 37.8587 92 ) -8.2755 14.9285 46.1413 -Impact.ttf 9 r 17.9105 37.8587 93 = 6.6233 27.6670 16.7320 -Impact.ttf 9 r 17.9105 37.8587 94 + 1.4913 27.1773 27.1773 -Impact.ttf 9 r 17.9105 37.8587 95 X -8.1839 29.6400 46.1413 -Impact.ttf 9 r 17.9105 37.8587 96 » 1.3690 19.6198 32.7140 -Impact.ttf 9 r 17.9105 37.8587 97 ' -8.0842 8.6802 14.0000 -Impact.ttf 9 r 17.9105 37.8587 98 ¢ -7.7681 25.8600 49.5017 -Impact.ttf 9 r 17.9105 37.8587 99 Z -8.4521 22.6245 46.1413 -Impact.ttf 9 r 17.9105 37.8587 100 > 0.1785 27.6670 29.1785 -Impact.ttf 9 r 17.9105 37.8587 101 ® -5.7789 43.1785 43.3035 -Impact.ttf 9 r 17.9105 37.8587 102 © -3.8637 43.1785 42.0000 -Impact.ttf 9 r 17.9105 37.8587 103 ] -8.2441 13.3942 46.1413 -Impact.ttf 9 r 17.9105 37.8587 104 é -9.7467 25.5600 47.5698 -Impact.ttf 9 r 17.9105 37.8587 105 z -0.2145 19.3198 37.8587 -Impact.ttf 9 r 17.9105 37.8587 106 _ 42.5110 32.1413 2.8378 -Impact.ttf 9 r 17.9105 37.8587 107 ¥ -8.3325 27.6250 46.1413 -Impact.ttf 10 l 11.1622 46.1413 1 t 3.3534 17.0878 43.1785 -Impact.ttf 10 l 11.1622 46.1413 2 h -0.1339 25.8600 46.1413 -Impact.ttf 10 l 11.1622 46.1413 3 a 8.4379 24.6815 37.8587 -Impact.ttf 10 l 11.1622 46.1413 4 n 8.3539 25.8600 37.8587 -Impact.ttf 10 l 11.1622 46.1413 5 P 0.1210 25.1622 46.1413 -Impact.ttf 10 l 11.1622 46.1413 6 o 8.3437 25.5600 37.8587 -Impact.ttf 10 l 11.1622 46.1413 7 e 8.3924 25.5600 37.8587 -Impact.ttf 10 l 11.1622 46.1413 8 : 15.6958 8.6802 30.3570 -Impact.ttf 10 l 11.1622 46.1413 9 r 8.3664 17.9105 37.8587 -Impact.ttf 10 l 11.1622 46.1413 10 l 0.0357 11.1622 46.1413 -Impact.ttf 10 l 11.1622 46.1413 11 i 0.1339 11.1622 46.1413 -Impact.ttf 10 l 11.1622 46.1413 12 1 0.0325 19.5925 46.1413 -Impact.ttf 10 l 11.1622 46.1413 13 | -0.1599 5.8425 53.6430 -Impact.ttf 10 l 11.1622 46.1413 14 N 0.1839 26.3407 46.1413 -Impact.ttf 10 l 11.1622 46.1413 15 f -0.2721 15.6593 46.1413 -Impact.ttf 10 l 11.1622 46.1413 16 g 8.3353 25.8600 44.3570 -Impact.ttf 10 l 11.1622 46.1413 17 d -0.0714 25.8600 46.1413 -Impact.ttf 10 l 11.1622 46.1413 18 W -0.0032 46.2890 46.1413 -Impact.ttf 10 l 11.1622 46.1413 19 s 8.4554 23.5030 37.8587 -Impact.ttf 10 l 11.1622 46.1413 20 c 8.2406 24.6815 37.8587 -Impact.ttf 10 l 11.1622 46.1413 21 u 8.4564 25.8600 37.8587 -Impact.ttf 10 l 11.1622 46.1413 22 3 -0.7116 25.7680 47.8983 -Impact.ttf 10 l 11.1622 46.1413 23 ~ 15.3024 26.7885 12.8907 -Impact.ttf 10 l 11.1622 46.1413 24 # 4.9108 34.6652 41.1215 -Impact.ttf 10 l 11.1622 46.1413 25 O -0.8785 26.8215 47.8983 -Impact.ttf 10 l 11.1622 46.1413 26 ` -5.0239 15.1785 7.9267 -Impact.ttf 10 l 11.1622 46.1413 27 @ -0.9294 43.1785 48.8040 -Impact.ttf 10 l 11.1622 46.1413 28 F 0.0867 20.2675 46.1413 -Impact.ttf 10 l 11.1622 46.1413 29 S -0.6334 27.5192 47.8983 -Impact.ttf 10 l 11.1622 46.1413 30 p 8.2097 25.8600 43.1785 -Impact.ttf 10 l 11.1622 46.1413 31 “ -0.0774 19.2175 14.9477 -Impact.ttf 10 l 11.1622 46.1413 32 % -0.8011 37.9837 47.0198 -Impact.ttf 10 l 11.1622 46.1413 33 £ -0.8368 28.2727 47.0198 -Impact.ttf 10 l 11.1622 46.1413 34 . 36.8826 8.6802 9.3360 -Impact.ttf 10 l 11.1622 46.1413 35 2 -0.7557 23.9837 47.0198 -Impact.ttf 10 l 11.1622 46.1413 36 5 0.1371 26.3407 47.0198 -Impact.ttf 10 l 11.1622 46.1413 37 m 8.2513 40.4657 37.8587 -Impact.ttf 10 l 11.1622 46.1413 38 V -0.1169 31.0355 46.1413 -Impact.ttf 10 l 11.1622 46.1413 39 6 -0.9170 26.3407 47.8983 -Impact.ttf 10 l 11.1622 46.1413 40 w 8.1941 38.9680 37.8587 -Impact.ttf 10 l 11.1622 46.1413 41 T 0.1427 26.3407 46.1413 -Impact.ttf 10 l 11.1622 46.1413 42 M 0.1728 36.8052 46.1413 -Impact.ttf 10 l 11.1622 46.1413 43 G -0.8642 26.9465 47.8983 -Impact.ttf 10 l 11.1622 46.1413 44 b -0.1070 25.8600 46.1413 -Impact.ttf 10 l 11.1622 46.1413 45 9 -0.8989 26.3407 47.8983 -Impact.ttf 10 l 11.1622 46.1413 46 ; 15.9182 8.6802 36.1995 -Impact.ttf 10 l 11.1622 46.1413 47 D -0.0955 26.9465 46.1413 -Impact.ttf 10 l 11.1622 46.1413 48 L -0.0769 18.8948 46.1413 -Impact.ttf 10 l 11.1622 46.1413 49 y 8.3984 27.3942 43.1785 -Impact.ttf 10 l 11.1622 46.1413 50 ‘ -0.0857 8.4302 14.9477 -Impact.ttf 10 l 11.1622 46.1413 51 \ -1.0465 23.9087 48.3733 -Impact.ttf 10 l 11.1622 46.1413 52 R -0.0000 26.3407 46.1413 -Impact.ttf 10 l 11.1622 46.1413 53 < 8.0306 27.6670 29.1785 -Impact.ttf 10 l 11.1622 46.1413 54 4 -0.0825 28.6977 46.1413 -Impact.ttf 10 l 11.1622 46.1413 55 8 -0.6519 26.0407 47.8983 -Impact.ttf 10 l 11.1622 46.1413 56 0 -0.8256 26.3407 47.8983 -Impact.ttf 10 l 11.1622 46.1413 57 A 0.1137 31.5355 46.1413 -Impact.ttf 10 l 11.1622 46.1413 58 E 0.0000 20.4483 46.1413 -Impact.ttf 10 l 11.1622 46.1413 59 B -0.0083 26.9465 46.1413 -Impact.ttf 10 l 11.1622 46.1413 60 v 8.4424 26.8215 37.8587 -Impact.ttf 10 l 11.1622 46.1413 61 k -0.0213 25.7680 46.1413 -Impact.ttf 10 l 11.1622 46.1413 62 J 0.1167 16.2320 46.1413 -Impact.ttf 10 l 11.1622 46.1413 63 U -0.2511 26.8215 47.0198 -Impact.ttf 10 l 11.1622 46.1413 64 j -0.2353 13.7692 51.4610 -Impact.ttf 10 l 11.1622 46.1413 65 ( -0.0826 14.9285 46.1413 -Impact.ttf 10 l 11.1622 46.1413 66 7 0.0000 22.3245 46.1413 -Impact.ttf 10 l 11.1622 46.1413 67 § -0.7460 25.6430 53.5180 -Impact.ttf 10 l 11.1622 46.1413 68 $ -3.8624 26.8215 54.0680 -Impact.ttf 10 l 11.1622 46.1413 69 € -0.7029 28.6058 47.8983 -Impact.ttf 10 l 11.1622 46.1413 70 / -1.0775 22.7302 48.3733 -Impact.ttf 10 l 11.1622 46.1413 71 C -0.7946 26.9465 47.8983 -Impact.ttf 10 l 11.1622 46.1413 72 * 0.2508 15.4705 13.7692 -Impact.ttf 10 l 11.1622 46.1413 73 ” -0.1099 19.2175 14.9477 -Impact.ttf 10 l 11.1622 46.1413 74 ? -1.1158 26.8215 47.0198 -Impact.ttf 10 l 11.1622 46.1413 75 { -0.0988 19.1675 54.8215 -Impact.ttf 10 l 11.1622 46.1413 76 } 0.2145 19.1675 54.8215 -Impact.ttf 10 l 11.1622 46.1413 77 , 36.8924 8.4302 14.9477 -Impact.ttf 10 l 11.1622 46.1413 78 I 0.1339 11.6430 46.1413 -Impact.ttf 10 l 11.1622 46.1413 79 ° -0.9556 18.0163 18.0163 -Impact.ttf 10 l 11.1622 46.1413 80 K -0.0213 30.3570 46.1413 -Impact.ttf 10 l 11.1622 46.1413 81 H 0.1626 27.2192 46.1413 -Impact.ttf 10 l 11.1622 46.1413 82 q 8.2260 25.8600 43.1785 -Impact.ttf 10 l 11.1622 46.1413 83 & 8.4054 33.5925 37.8587 -Impact.ttf 10 l 11.1622 46.1413 84 ’ 0.0812 8.4302 14.9477 -Impact.ttf 10 l 11.1622 46.1413 85 [ -0.0357 13.3942 46.1413 -Impact.ttf 10 l 11.1622 46.1413 86 - 23.0003 14.8785 7.9267 -Impact.ttf 10 l 11.1622 46.1413 87 Y -0.0070 27.6250 46.1413 -Impact.ttf 10 l 11.1622 46.1413 88 Q -0.9142 26.8215 52.3395 -Impact.ttf 10 l 11.1622 46.1413 89 " -0.0955 19.7175 14.0000 -Impact.ttf 10 l 11.1622 46.1413 90 ! 0.1158 12.8215 46.1413 -Impact.ttf 10 l 11.1622 46.1413 91 x 8.1903 25.1760 37.8587 -Impact.ttf 10 l 11.1622 46.1413 92 ) -0.0353 14.9285 46.1413 -Impact.ttf 10 l 11.1622 46.1413 93 = 14.9085 27.6670 16.7320 -Impact.ttf 10 l 11.1622 46.1413 94 + 10.1725 27.1773 27.1773 -Impact.ttf 10 l 11.1622 46.1413 95 X 0.0430 29.6400 46.1413 -Impact.ttf 10 l 11.1622 46.1413 96 » 10.0453 19.6198 32.7140 -Impact.ttf 10 l 11.1622 46.1413 97 ' 0.1047 8.6802 14.0000 -Impact.ttf 10 l 11.1622 46.1413 98 ¢ 0.1250 25.8600 49.5017 -Impact.ttf 10 l 11.1622 46.1413 99 Z -0.0065 22.6245 46.1413 -Impact.ttf 10 l 11.1622 46.1413 100 > 8.2151 27.6670 29.1785 -Impact.ttf 10 l 11.1622 46.1413 101 ® 2.8618 43.1785 43.3035 -Impact.ttf 10 l 11.1622 46.1413 102 © 4.1171 43.1785 42.0000 -Impact.ttf 10 l 11.1622 46.1413 103 ] -0.1144 13.3942 46.1413 -Impact.ttf 10 l 11.1622 46.1413 104 é -1.4624 25.5600 47.5698 -Impact.ttf 10 l 11.1622 46.1413 105 z 8.2825 19.3198 37.8587 -Impact.ttf 10 l 11.1622 46.1413 106 _ 50.5878 32.1413 2.8378 -Impact.ttf 10 l 11.1622 46.1413 107 ¥ 0.0570 27.6250 46.1413 -Impact.ttf 11 i 11.1622 46.1413 1 t 2.8919 17.0878 43.1785 -Impact.ttf 11 i 11.1622 46.1413 2 h 0.1143 25.8600 46.1413 -Impact.ttf 11 i 11.1622 46.1413 3 a 8.2798 24.6815 37.8587 -Impact.ttf 11 i 11.1622 46.1413 4 n 8.4609 25.8600 37.8587 -Impact.ttf 11 i 11.1622 46.1413 5 P 0.1444 25.1622 46.1413 -Impact.ttf 11 i 11.1622 46.1413 6 o 7.9057 25.5600 37.8587 -Impact.ttf 11 i 11.1622 46.1413 7 e 8.0842 25.5600 37.8587 -Impact.ttf 11 i 11.1622 46.1413 8 : 15.7745 8.6802 30.3570 -Impact.ttf 11 i 11.1622 46.1413 9 r 8.3164 17.9105 37.8587 -Impact.ttf 11 i 11.1622 46.1413 10 l -0.1614 11.1622 46.1413 -Impact.ttf 11 i 11.1622 46.1413 11 i 0.1455 11.1622 46.1413 -Impact.ttf 11 i 11.1622 46.1413 12 1 -0.0987 19.5925 46.1413 -Impact.ttf 11 i 11.1622 46.1413 13 | -0.1312 5.8425 53.6430 -Impact.ttf 11 i 11.1622 46.1413 14 N -0.1470 26.3407 46.1413 -Impact.ttf 11 i 11.1622 46.1413 15 f 0.0000 15.6593 46.1413 -Impact.ttf 11 i 11.1622 46.1413 16 g 8.4207 25.8600 44.3570 -Impact.ttf 11 i 11.1622 46.1413 17 d -0.0742 25.8600 46.1413 -Impact.ttf 11 i 11.1622 46.1413 18 W 0.0742 46.2890 46.1413 -Impact.ttf 11 i 11.1622 46.1413 19 s 8.1895 23.5030 37.8587 -Impact.ttf 11 i 11.1622 46.1413 20 c 8.1296 24.6815 37.8587 -Impact.ttf 11 i 11.1622 46.1413 21 u 8.4155 25.8600 37.8587 -Impact.ttf 11 i 11.1622 46.1413 22 3 -0.6745 25.7680 47.8983 -Impact.ttf 11 i 11.1622 46.1413 23 ~ 15.6263 26.7885 12.8907 -Impact.ttf 11 i 11.1622 46.1413 24 # 4.9164 34.6652 41.1215 -Impact.ttf 11 i 11.1622 46.1413 25 O -0.6853 26.8215 47.8983 -Impact.ttf 11 i 11.1622 46.1413 26 ` -4.8866 15.1785 7.9267 -Impact.ttf 11 i 11.1622 46.1413 27 @ -0.8428 43.1785 48.8040 -Impact.ttf 11 i 11.1622 46.1413 28 F -0.0825 20.2675 46.1413 -Impact.ttf 11 i 11.1622 46.1413 29 S -0.9954 27.5192 47.8983 -Impact.ttf 11 i 11.1622 46.1413 30 p 8.3766 25.8600 43.1785 -Impact.ttf 11 i 11.1622 46.1413 31 “ 0.0181 19.2175 14.9477 -Impact.ttf 11 i 11.1622 46.1413 32 % -0.6446 37.9837 47.0198 -Impact.ttf 11 i 11.1622 46.1413 33 £ -0.6589 28.2727 47.0198 -Impact.ttf 11 i 11.1622 46.1413 34 . 37.0055 8.6802 9.3360 -Impact.ttf 11 i 11.1622 46.1413 35 2 -0.7890 23.9837 47.0198 -Impact.ttf 11 i 11.1622 46.1413 36 5 -0.1696 26.3407 47.0198 -Impact.ttf 11 i 11.1622 46.1413 37 m 8.4024 40.4657 37.8587 -Impact.ttf 11 i 11.1622 46.1413 38 V 0.0714 31.0355 46.1413 -Impact.ttf 11 i 11.1622 46.1413 39 6 -0.6912 26.3407 47.8983 -Impact.ttf 11 i 11.1622 46.1413 40 w 8.2825 38.9680 37.8587 -Impact.ttf 11 i 11.1622 46.1413 41 T 0.0385 26.3407 46.1413 -Impact.ttf 11 i 11.1622 46.1413 42 M 0.1210 36.8052 46.1413 -Impact.ttf 11 i 11.1622 46.1413 43 G -0.8670 26.9465 47.8983 -Impact.ttf 11 i 11.1622 46.1413 44 b 0.2568 25.8600 46.1413 -Impact.ttf 11 i 11.1622 46.1413 45 9 -0.7769 26.3407 47.8983 -Impact.ttf 11 i 11.1622 46.1413 46 ; 15.9215 8.6802 36.1995 -Impact.ttf 11 i 11.1622 46.1413 47 D 0.1807 26.9465 46.1413 -Impact.ttf 11 i 11.1622 46.1413 48 L -0.1210 18.8948 46.1413 -Impact.ttf 11 i 11.1622 46.1413 49 y 8.4411 27.3942 43.1785 -Impact.ttf 11 i 11.1622 46.1413 50 ‘ 0.0000 8.4302 14.9477 -Impact.ttf 11 i 11.1622 46.1413 51 \ -1.1693 23.9087 48.3733 -Impact.ttf 11 i 11.1622 46.1413 52 R 0.0129 26.3407 46.1413 -Impact.ttf 11 i 11.1622 46.1413 53 < 8.2530 27.6670 29.1785 -Impact.ttf 11 i 11.1622 46.1413 54 4 -0.0455 28.6977 46.1413 -Impact.ttf 11 i 11.1622 46.1413 55 8 -1.1863 26.0407 47.8983 -Impact.ttf 11 i 11.1622 46.1413 56 0 -0.8265 26.3407 47.8983 -Impact.ttf 11 i 11.1622 46.1413 57 A 0.0000 31.5355 46.1413 -Impact.ttf 11 i 11.1622 46.1413 58 E -0.0083 20.4483 46.1413 -Impact.ttf 11 i 11.1622 46.1413 59 B 0.0955 26.9465 46.1413 -Impact.ttf 11 i 11.1622 46.1413 60 v 8.2825 26.8215 37.8587 -Impact.ttf 11 i 11.1622 46.1413 61 k -0.0722 25.7680 46.1413 -Impact.ttf 11 i 11.1622 46.1413 62 J 0.1288 16.2320 46.1413 -Impact.ttf 11 i 11.1622 46.1413 63 U 0.0027 26.8215 47.0198 -Impact.ttf 11 i 11.1622 46.1413 64 j -0.0455 13.7692 51.4610 -Impact.ttf 11 i 11.1622 46.1413 65 ( -0.0903 14.9285 46.1413 -Impact.ttf 11 i 11.1622 46.1413 66 7 0.0143 22.3245 46.1413 -Impact.ttf 11 i 11.1622 46.1413 67 § -1.0184 25.6430 53.5180 -Impact.ttf 11 i 11.1622 46.1413 68 $ -3.7642 26.8215 54.0680 -Impact.ttf 11 i 11.1622 46.1413 69 € -0.6277 28.6058 47.8983 -Impact.ttf 11 i 11.1622 46.1413 70 / -0.8949 22.7302 48.3733 -Impact.ttf 11 i 11.1622 46.1413 71 C -0.8692 26.9465 47.8983 -Impact.ttf 11 i 11.1622 46.1413 72 * 0.2744 15.4705 13.7692 -Impact.ttf 11 i 11.1622 46.1413 73 ” -0.0500 19.2175 14.9477 -Impact.ttf 11 i 11.1622 46.1413 74 ? -0.9910 26.8215 47.0198 -Impact.ttf 11 i 11.1622 46.1413 75 { 0.1386 19.1675 54.8215 -Impact.ttf 11 i 11.1622 46.1413 76 } 0.1256 19.1675 54.8215 -Impact.ttf 11 i 11.1622 46.1413 77 , 37.0190 8.4302 14.9477 -Impact.ttf 11 i 11.1622 46.1413 78 I 0.0955 11.6430 46.1413 -Impact.ttf 11 i 11.1622 46.1413 79 ° -0.6718 18.0163 18.0163 -Impact.ttf 11 i 11.1622 46.1413 80 K 0.0857 30.3570 46.1413 -Impact.ttf 11 i 11.1622 46.1413 81 H -0.3050 27.2192 46.1413 -Impact.ttf 11 i 11.1622 46.1413 82 q 8.3260 25.8600 43.1785 -Impact.ttf 11 i 11.1622 46.1413 83 & 7.9613 33.5925 37.8587 -Impact.ttf 11 i 11.1622 46.1413 84 ’ 0.0886 8.4302 14.9477 -Impact.ttf 11 i 11.1622 46.1413 85 [ 0.1982 13.3942 46.1413 -Impact.ttf 11 i 11.1622 46.1413 86 - 22.8455 14.8785 7.9267 -Impact.ttf 11 i 11.1622 46.1413 87 Y 0.0912 27.6250 46.1413 -Impact.ttf 11 i 11.1622 46.1413 88 Q -0.9670 26.8215 52.3395 -Impact.ttf 11 i 11.1622 46.1413 89 " -0.0027 19.7175 14.0000 -Impact.ttf 11 i 11.1622 46.1413 90 ! 0.0769 12.8215 46.1413 -Impact.ttf 11 i 11.1622 46.1413 91 x 8.2755 25.1760 37.8587 -Impact.ttf 11 i 11.1622 46.1413 92 ) -0.0417 14.9285 46.1413 -Impact.ttf 11 i 11.1622 46.1413 93 = 15.1601 27.6670 16.7320 -Impact.ttf 11 i 11.1622 46.1413 94 + 9.9454 27.1773 27.1773 -Impact.ttf 11 i 11.1622 46.1413 95 X -0.1256 29.6400 46.1413 -Impact.ttf 11 i 11.1622 46.1413 96 » 9.4124 19.6198 32.7140 -Impact.ttf 11 i 11.1622 46.1413 97 ' -0.0752 8.6802 14.0000 -Impact.ttf 11 i 11.1622 46.1413 98 ¢ 0.2803 25.8600 49.5017 -Impact.ttf 11 i 11.1622 46.1413 99 Z -0.1131 22.6245 46.1413 -Impact.ttf 11 i 11.1622 46.1413 100 > 8.1301 27.6670 29.1785 -Impact.ttf 11 i 11.1622 46.1413 101 ® 2.8786 43.1785 43.3035 -Impact.ttf 11 i 11.1622 46.1413 102 © 4.0541 43.1785 42.0000 -Impact.ttf 11 i 11.1622 46.1413 103 ] 0.1728 13.3942 46.1413 -Impact.ttf 11 i 11.1622 46.1413 104 é -1.5981 25.5600 47.5698 -Impact.ttf 11 i 11.1622 46.1413 105 z 8.4651 19.3198 37.8587 -Impact.ttf 11 i 11.1622 46.1413 106 _ 50.6122 32.1413 2.8378 -Impact.ttf 11 i 11.1622 46.1413 107 ¥ 0.0000 27.6250 46.1413 -Impact.ttf 12 1 19.5925 46.1413 1 t 2.7872 17.0878 43.1785 -Impact.ttf 12 1 19.5925 46.1413 2 h 0.1239 25.8600 46.1413 -Impact.ttf 12 1 19.5925 46.1413 3 a 8.1194 24.6815 37.8587 -Impact.ttf 12 1 19.5925 46.1413 4 n 8.1051 25.8600 37.8587 -Impact.ttf 12 1 19.5925 46.1413 5 P 0.2353 25.1622 46.1413 -Impact.ttf 12 1 19.5925 46.1413 6 o 8.1088 25.5600 37.8587 -Impact.ttf 12 1 19.5925 46.1413 7 e 8.1199 25.5600 37.8587 -Impact.ttf 12 1 19.5925 46.1413 8 : 15.6576 8.6802 30.3570 -Impact.ttf 12 1 19.5925 46.1413 9 r 8.1941 17.9105 37.8587 -Impact.ttf 12 1 19.5925 46.1413 10 l 0.0597 11.1622 46.1413 -Impact.ttf 12 1 19.5925 46.1413 11 i -0.0769 11.1622 46.1413 -Impact.ttf 12 1 19.5925 46.1413 12 1 -0.2017 19.5925 46.1413 -Impact.ttf 12 1 19.5925 46.1413 13 | 0.1288 5.8425 53.6430 -Impact.ttf 12 1 19.5925 46.1413 14 N -0.0885 26.3407 46.1413 -Impact.ttf 12 1 19.5925 46.1413 15 f -0.0087 15.6593 46.1413 -Impact.ttf 12 1 19.5925 46.1413 16 g 8.2038 25.8600 44.3570 -Impact.ttf 12 1 19.5925 46.1413 17 d -0.0231 25.8600 46.1413 -Impact.ttf 12 1 19.5925 46.1413 18 W 0.2327 46.2890 46.1413 -Impact.ttf 12 1 19.5925 46.1413 19 s 8.3623 23.5030 37.8587 -Impact.ttf 12 1 19.5925 46.1413 20 c 8.1885 24.6815 37.8587 -Impact.ttf 12 1 19.5925 46.1413 21 u 8.2033 25.8600 37.8587 -Impact.ttf 12 1 19.5925 46.1413 22 3 -1.0898 25.7680 47.8983 -Impact.ttf 12 1 19.5925 46.1413 23 ~ 15.4251 26.7885 12.8907 -Impact.ttf 12 1 19.5925 46.1413 24 # 5.1856 34.6652 41.1215 -Impact.ttf 12 1 19.5925 46.1413 25 O -0.7271 26.8215 47.8983 -Impact.ttf 12 1 19.5925 46.1413 26 ` -5.0836 15.1785 7.9267 -Impact.ttf 12 1 19.5925 46.1413 27 @ -0.8799 43.1785 48.8040 -Impact.ttf 12 1 19.5925 46.1413 28 F -0.0412 20.2675 46.1413 -Impact.ttf 12 1 19.5925 46.1413 29 S -0.8785 27.5192 47.8983 -Impact.ttf 12 1 19.5925 46.1413 30 p 8.3850 25.8600 43.1785 -Impact.ttf 12 1 19.5925 46.1413 31 “ 0.0301 19.2175 14.9477 -Impact.ttf 12 1 19.5925 46.1413 32 % -0.8539 37.9837 47.0198 -Impact.ttf 12 1 19.5925 46.1413 33 £ -0.6389 28.2727 47.0198 -Impact.ttf 12 1 19.5925 46.1413 34 . 36.9498 8.6802 9.3360 -Impact.ttf 12 1 19.5925 46.1413 35 2 -0.5462 23.9837 47.0198 -Impact.ttf 12 1 19.5925 46.1413 36 5 0.1784 26.3407 47.0198 -Impact.ttf 12 1 19.5925 46.1413 37 m 8.1649 40.4657 37.8587 -Impact.ttf 12 1 19.5925 46.1413 38 V 0.0385 31.0355 46.1413 -Impact.ttf 12 1 19.5925 46.1413 39 6 -0.8406 26.3407 47.8983 -Impact.ttf 12 1 19.5925 46.1413 40 w 8.4795 38.9680 37.8587 -Impact.ttf 12 1 19.5925 46.1413 41 T -0.0325 26.3407 46.1413 -Impact.ttf 12 1 19.5925 46.1413 42 M 0.1228 36.8052 46.1413 -Impact.ttf 12 1 19.5925 46.1413 43 G -0.7946 26.9465 47.8983 -Impact.ttf 12 1 19.5925 46.1413 44 b 0.1683 25.8600 46.1413 -Impact.ttf 12 1 19.5925 46.1413 45 9 -1.1506 26.3407 47.8983 -Impact.ttf 12 1 19.5925 46.1413 46 ; 15.6931 8.6802 36.1995 -Impact.ttf 12 1 19.5925 46.1413 47 D 0.0713 26.9465 46.1413 -Impact.ttf 12 1 19.5925 46.1413 48 L -0.0844 18.8948 46.1413 -Impact.ttf 12 1 19.5925 46.1413 49 y 8.1913 27.3942 43.1785 -Impact.ttf 12 1 19.5925 46.1413 50 ‘ 0.0844 8.4302 14.9477 -Impact.ttf 12 1 19.5925 46.1413 51 \ -0.7883 23.9087 48.3733 -Impact.ttf 12 1 19.5925 46.1413 52 R -0.1027 26.3407 46.1413 -Impact.ttf 12 1 19.5925 46.1413 53 < 8.1103 27.6670 29.1785 -Impact.ttf 12 1 19.5925 46.1413 54 4 -0.2081 28.6977 46.1413 -Impact.ttf 12 1 19.5925 46.1413 55 8 -0.7484 26.0407 47.8983 -Impact.ttf 12 1 19.5925 46.1413 56 0 -1.1352 26.3407 47.8983 -Impact.ttf 12 1 19.5925 46.1413 57 A -0.1558 31.5355 46.1413 -Impact.ttf 12 1 19.5925 46.1413 58 E 0.1724 20.4483 46.1413 -Impact.ttf 12 1 19.5925 46.1413 59 B -0.1359 26.9465 46.1413 -Impact.ttf 12 1 19.5925 46.1413 60 v 8.2474 26.8215 37.8587 -Impact.ttf 12 1 19.5925 46.1413 61 k -0.0988 25.7680 46.1413 -Impact.ttf 12 1 19.5925 46.1413 62 J 0.0172 16.2320 46.1413 -Impact.ttf 12 1 19.5925 46.1413 63 U -0.1619 26.8215 47.0198 -Impact.ttf 12 1 19.5925 46.1413 64 j -0.0070 13.7692 51.4610 -Impact.ttf 12 1 19.5925 46.1413 65 ( 0.0552 14.9285 46.1413 -Impact.ttf 12 1 19.5925 46.1413 66 7 -0.0885 22.3245 46.1413 -Impact.ttf 12 1 19.5925 46.1413 67 § -0.8698 25.6430 53.5180 -Impact.ttf 12 1 19.5925 46.1413 68 $ -4.0571 26.8215 54.0680 -Impact.ttf 12 1 19.5925 46.1413 69 € -0.7511 28.6058 47.8983 -Impact.ttf 12 1 19.5925 46.1413 70 / -1.1179 22.7302 48.3733 -Impact.ttf 12 1 19.5925 46.1413 71 C -0.8317 26.9465 47.8983 -Impact.ttf 12 1 19.5925 46.1413 72 * -0.0000 15.4705 13.7692 -Impact.ttf 12 1 19.5925 46.1413 73 ” 0.1029 19.2175 14.9477 -Impact.ttf 12 1 19.5925 46.1413 74 ? -0.7148 26.8215 47.0198 -Impact.ttf 12 1 19.5925 46.1413 75 { -0.1900 19.1675 54.8215 -Impact.ttf 12 1 19.5925 46.1413 76 } -0.0955 19.1675 54.8215 -Impact.ttf 12 1 19.5925 46.1413 77 , 36.8029 8.4302 14.9477 -Impact.ttf 12 1 19.5925 46.1413 78 I 0.1182 11.6430 46.1413 -Impact.ttf 12 1 19.5925 46.1413 79 ° -0.9740 18.0163 18.0163 -Impact.ttf 12 1 19.5925 46.1413 80 K 0.1394 30.3570 46.1413 -Impact.ttf 12 1 19.5925 46.1413 81 H -0.1973 27.2192 46.1413 -Impact.ttf 12 1 19.5925 46.1413 82 q 8.0770 25.8600 43.1785 -Impact.ttf 12 1 19.5925 46.1413 83 & 8.3897 33.5925 37.8587 -Impact.ttf 12 1 19.5925 46.1413 84 ’ 0.0534 8.4302 14.9477 -Impact.ttf 12 1 19.5925 46.1413 85 [ -0.0268 13.3942 46.1413 -Impact.ttf 12 1 19.5925 46.1413 86 - 23.1541 14.8785 7.9267 -Impact.ttf 12 1 19.5925 46.1413 87 Y -0.2210 27.6250 46.1413 -Impact.ttf 12 1 19.5925 46.1413 88 Q -0.7148 26.8215 52.3395 -Impact.ttf 12 1 19.5925 46.1413 89 " 0.0213 19.7175 14.0000 -Impact.ttf 12 1 19.5925 46.1413 90 ! -0.0844 12.8215 46.1413 -Impact.ttf 12 1 19.5925 46.1413 91 x 8.3325 25.1760 37.8587 -Impact.ttf 12 1 19.5925 46.1413 92 ) -0.2169 14.9285 46.1413 -Impact.ttf 12 1 19.5925 46.1413 93 = 14.6977 27.6670 16.7320 -Impact.ttf 12 1 19.5925 46.1413 94 + 9.6079 27.1773 27.1773 -Impact.ttf 12 1 19.5925 46.1413 95 X -0.0853 29.6400 46.1413 -Impact.ttf 12 1 19.5925 46.1413 96 » 9.6182 19.6198 32.7140 -Impact.ttf 12 1 19.5925 46.1413 97 ' 0.0409 8.6802 14.0000 -Impact.ttf 12 1 19.5925 46.1413 98 ¢ 0.1964 25.8600 49.5017 -Impact.ttf 12 1 19.5925 46.1413 99 Z -0.1131 22.6245 46.1413 -Impact.ttf 12 1 19.5925 46.1413 100 > 8.1659 27.6670 29.1785 -Impact.ttf 12 1 19.5925 46.1413 101 ® 2.7566 43.1785 43.3035 -Impact.ttf 12 1 19.5925 46.1413 102 © 3.8415 43.1785 42.0000 -Impact.ttf 12 1 19.5925 46.1413 103 ] 0.0328 13.3942 46.1413 -Impact.ttf 12 1 19.5925 46.1413 104 é -1.4215 25.5600 47.5698 -Impact.ttf 12 1 19.5925 46.1413 105 z 8.4879 19.3198 37.8587 -Impact.ttf 12 1 19.5925 46.1413 106 _ 50.5584 32.1413 2.8378 -Impact.ttf 12 1 19.5925 46.1413 107 ¥ 0.0955 27.6250 46.1413 -Impact.ttf 13 | 5.8425 53.6430 1 t 2.8816 17.0878 43.1785 -Impact.ttf 13 | 5.8425 53.6430 2 h -0.0143 25.8600 46.1413 -Impact.ttf 13 | 5.8425 53.6430 3 a 8.1941 24.6815 37.8587 -Impact.ttf 13 | 5.8425 53.6430 4 n 8.1843 25.8600 37.8587 -Impact.ttf 13 | 5.8425 53.6430 5 P 0.2321 25.1622 46.1413 -Impact.ttf 13 | 5.8425 53.6430 6 o 8.2710 25.5600 37.8587 -Impact.ttf 13 | 5.8425 53.6430 7 e 7.9456 25.5600 37.8587 -Impact.ttf 13 | 5.8425 53.6430 8 : 15.7815 8.6802 30.3570 -Impact.ttf 13 | 5.8425 53.6430 9 r 8.3567 17.9105 37.8587 -Impact.ttf 13 | 5.8425 53.6430 10 l 0.1868 11.1622 46.1413 -Impact.ttf 13 | 5.8425 53.6430 11 i 0.1710 11.1622 46.1413 -Impact.ttf 13 | 5.8425 53.6430 12 1 -0.0325 19.5925 46.1413 -Impact.ttf 13 | 5.8425 53.6430 13 | -0.3852 5.8425 53.6430 -Impact.ttf 13 | 5.8425 53.6430 14 N 0.0000 26.3407 46.1413 -Impact.ttf 13 | 5.8425 53.6430 15 f 0.0417 15.6593 46.1413 -Impact.ttf 13 | 5.8425 53.6430 16 g 8.0986 25.8600 44.3570 -Impact.ttf 13 | 5.8425 53.6430 17 d -0.0742 25.8600 46.1413 -Impact.ttf 13 | 5.8425 53.6430 18 W 0.0027 46.2890 46.1413 -Impact.ttf 13 | 5.8425 53.6430 19 s 8.3599 23.5030 37.8587 -Impact.ttf 13 | 5.8425 53.6430 20 c 8.2585 24.6815 37.8587 -Impact.ttf 13 | 5.8425 53.6430 21 u 8.2825 25.8600 37.8587 -Impact.ttf 13 | 5.8425 53.6430 22 3 -0.9670 25.7680 47.8983 -Impact.ttf 13 | 5.8425 53.6430 23 ~ 15.3409 26.7885 12.8907 -Impact.ttf 13 | 5.8425 53.6430 24 # 4.8571 34.6652 41.1215 -Impact.ttf 13 | 5.8425 53.6430 25 O -0.8998 26.8215 47.8983 -Impact.ttf 13 | 5.8425 53.6430 26 ` -4.8685 15.1785 7.9267 -Impact.ttf 13 | 5.8425 53.6430 27 @ -0.7127 43.1785 48.8040 -Impact.ttf 13 | 5.8425 53.6430 28 F 0.0714 20.2675 46.1413 -Impact.ttf 13 | 5.8425 53.6430 29 S -0.7900 27.5192 47.8983 -Impact.ttf 13 | 5.8425 53.6430 30 p 8.2353 25.8600 43.1785 -Impact.ttf 13 | 5.8425 53.6430 31 “ 0.0374 19.2175 14.9477 -Impact.ttf 13 | 5.8425 53.6430 32 % -0.7232 37.9837 47.0198 -Impact.ttf 13 | 5.8425 53.6430 33 £ -0.7116 28.2727 47.0198 -Impact.ttf 13 | 5.8425 53.6430 34 . 36.7552 8.6802 9.3360 -Impact.ttf 13 | 5.8425 53.6430 35 2 -0.7116 23.9837 47.0198 -Impact.ttf 13 | 5.8425 53.6430 36 5 0.1431 26.3407 47.0198 -Impact.ttf 13 | 5.8425 53.6430 37 m 8.1069 40.4657 37.8587 -Impact.ttf 13 | 5.8425 53.6430 38 V -0.0269 31.0355 46.1413 -Impact.ttf 13 | 5.8425 53.6430 39 6 -0.7557 26.3407 47.8983 -Impact.ttf 13 | 5.8425 53.6430 40 w 8.2895 38.9680 37.8587 -Impact.ttf 13 | 5.8425 53.6430 41 T 0.0357 26.3407 46.1413 -Impact.ttf 13 | 5.8425 53.6430 42 M -0.0032 36.8052 46.1413 -Impact.ttf 13 | 5.8425 53.6430 43 G -0.6640 26.9465 47.8983 -Impact.ttf 13 | 5.8425 53.6430 44 b -0.1131 25.8600 46.1413 -Impact.ttf 13 | 5.8425 53.6430 45 9 -1.1848 26.3407 47.8983 -Impact.ttf 13 | 5.8425 53.6430 46 ; 15.8472 8.6802 36.1995 -Impact.ttf 13 | 5.8425 53.6430 47 D 0.0769 26.9465 46.1413 -Impact.ttf 13 | 5.8425 53.6430 48 L -0.0903 18.8948 46.1413 -Impact.ttf 13 | 5.8425 53.6430 49 y 8.3539 27.3942 43.1785 -Impact.ttf 13 | 5.8425 53.6430 50 ‘ -0.0210 8.4302 14.9477 -Impact.ttf 13 | 5.8425 53.6430 51 \ -0.9821 23.9087 48.3733 -Impact.ttf 13 | 5.8425 53.6430 52 R 0.1071 26.3407 46.1413 -Impact.ttf 13 | 5.8425 53.6430 53 < 8.2446 27.6670 29.1785 -Impact.ttf 13 | 5.8425 53.6430 54 4 0.0742 28.6977 46.1413 -Impact.ttf 13 | 5.8425 53.6430 55 8 -0.9499 26.0407 47.8983 -Impact.ttf 13 | 5.8425 53.6430 56 0 -0.8830 26.3407 47.8983 -Impact.ttf 13 | 5.8425 53.6430 57 A -0.0170 31.5355 46.1413 -Impact.ttf 13 | 5.8425 53.6430 58 E 0.1135 20.4483 46.1413 -Impact.ttf 13 | 5.8425 53.6430 59 B 0.1552 26.9465 46.1413 -Impact.ttf 13 | 5.8425 53.6430 60 v 8.2612 26.8215 37.8587 -Impact.ttf 13 | 5.8425 53.6430 61 k 0.0696 25.7680 46.1413 -Impact.ttf 13 | 5.8425 53.6430 62 J 0.0115 16.2320 46.1413 -Impact.ttf 13 | 5.8425 53.6430 63 U 0.1371 26.8215 47.0198 -Impact.ttf 13 | 5.8425 53.6430 64 j 0.0812 13.7692 51.4610 -Impact.ttf 13 | 5.8425 53.6430 65 ( 0.0325 14.9285 46.1413 -Impact.ttf 13 | 5.8425 53.6430 66 7 0.0000 22.3245 46.1413 -Impact.ttf 13 | 5.8425 53.6430 67 § -0.7896 25.6430 53.5180 -Impact.ttf 13 | 5.8425 53.6430 68 $ -3.8212 26.8215 54.0680 -Impact.ttf 13 | 5.8425 53.6430 69 € -0.8368 28.6058 47.8983 -Impact.ttf 13 | 5.8425 53.6430 70 / -1.1420 22.7302 48.3733 -Impact.ttf 13 | 5.8425 53.6430 71 C -1.1079 26.9465 47.8983 -Impact.ttf 13 | 5.8425 53.6430 72 * -0.1099 15.4705 13.7692 -Impact.ttf 13 | 5.8425 53.6430 73 ” -0.2049 19.2175 14.9477 -Impact.ttf 13 | 5.8425 53.6430 74 ? -0.8688 26.8215 47.0198 -Impact.ttf 13 | 5.8425 53.6430 75 { 0.0774 19.1675 54.8215 -Impact.ttf 13 | 5.8425 53.6430 76 } 0.1640 19.1675 54.8215 -Impact.ttf 13 | 5.8425 53.6430 77 , 37.0360 8.4302 14.9477 -Impact.ttf 13 | 5.8425 53.6430 78 I -0.1158 11.6430 46.1413 -Impact.ttf 13 | 5.8425 53.6430 79 ° -0.9489 18.0163 18.0163 -Impact.ttf 13 | 5.8425 53.6430 80 K 0.0389 30.3570 46.1413 -Impact.ttf 13 | 5.8425 53.6430 81 H -0.0844 27.2192 46.1413 -Impact.ttf 13 | 5.8425 53.6430 82 q 8.3006 25.8600 43.1785 -Impact.ttf 13 | 5.8425 53.6430 83 & 8.2825 33.5925 37.8587 -Impact.ttf 13 | 5.8425 53.6430 84 ’ -0.0213 8.4302 14.9477 -Impact.ttf 13 | 5.8425 53.6430 85 [ 0.0000 13.3942 46.1413 -Impact.ttf 13 | 5.8425 53.6430 86 - 23.1115 14.8785 7.9267 -Impact.ttf 13 | 5.8425 53.6430 87 Y 0.0000 27.6250 46.1413 -Impact.ttf 13 | 5.8425 53.6430 88 Q -0.8785 26.8215 52.3395 -Impact.ttf 13 | 5.8425 53.6430 89 " 0.1581 19.7175 14.0000 -Impact.ttf 13 | 5.8425 53.6430 90 ! -0.0771 12.8215 46.1413 -Impact.ttf 13 | 5.8425 53.6430 91 x 8.3798 25.1760 37.8587 -Impact.ttf 13 | 5.8425 53.6430 92 ) -0.1228 14.9285 46.1413 -Impact.ttf 13 | 5.8425 53.6430 93 = 14.7445 27.6670 16.7320 -Impact.ttf 13 | 5.8425 53.6430 94 + 9.8587 27.1773 27.1773 -Impact.ttf 13 | 5.8425 53.6430 95 X 0.0000 29.6400 46.1413 -Impact.ttf 13 | 5.8425 53.6430 96 » 9.7944 19.6198 32.7140 -Impact.ttf 13 | 5.8425 53.6430 97 ' -0.1084 8.6802 14.0000 -Impact.ttf 13 | 5.8425 53.6430 98 ¢ 0.2191 25.8600 49.5017 -Impact.ttf 13 | 5.8425 53.6430 99 Z -0.1728 22.6245 46.1413 -Impact.ttf 13 | 5.8425 53.6430 100 > 8.0774 27.6670 29.1785 -Impact.ttf 13 | 5.8425 53.6430 101 ® 3.0203 43.1785 43.3035 -Impact.ttf 13 | 5.8425 53.6430 102 © 3.9601 43.1785 42.0000 -Impact.ttf 13 | 5.8425 53.6430 103 ] 0.0000 13.3942 46.1413 -Impact.ttf 13 | 5.8425 53.6430 104 é -1.5467 25.5600 47.5698 -Impact.ttf 13 | 5.8425 53.6430 105 z 8.3780 19.3198 37.8587 -Impact.ttf 13 | 5.8425 53.6430 106 _ 50.5033 32.1413 2.8378 -Impact.ttf 13 | 5.8425 53.6430 107 ¥ -0.0742 27.6250 46.1413 -Impact.ttf 14 N 26.3407 46.1413 1 t 2.6592 17.0878 43.1785 -Impact.ttf 14 N 26.3407 46.1413 2 h 0.3248 25.8600 46.1413 -Impact.ttf 14 N 26.3407 46.1413 3 a 8.7436 24.6815 37.8587 -Impact.ttf 14 N 26.3407 46.1413 4 n 8.1524 25.8600 37.8587 -Impact.ttf 14 N 26.3407 46.1413 5 P 0.0538 25.1622 46.1413 -Impact.ttf 14 N 26.3407 46.1413 6 o 8.4424 25.5600 37.8587 -Impact.ttf 14 N 26.3407 46.1413 7 e 8.3177 25.5600 37.8587 -Impact.ttf 14 N 26.3407 46.1413 8 : 15.7958 8.6802 30.3570 -Impact.ttf 14 N 26.3407 46.1413 9 r 8.1839 17.9105 37.8587 -Impact.ttf 14 N 26.3407 46.1413 10 l -0.2553 11.1622 46.1413 -Impact.ttf 14 N 26.3407 46.1413 11 i 0.1669 11.1622 46.1413 -Impact.ttf 14 N 26.3407 46.1413 12 1 0.0181 19.5925 46.1413 -Impact.ttf 14 N 26.3407 46.1413 13 | 0.0917 5.8425 53.6430 -Impact.ttf 14 N 26.3407 46.1413 14 N 0.0955 26.3407 46.1413 -Impact.ttf 14 N 26.3407 46.1413 15 f 0.2210 15.6593 46.1413 -Impact.ttf 14 N 26.3407 46.1413 16 g 8.2182 25.8600 44.3570 -Impact.ttf 14 N 26.3407 46.1413 17 d 0.0819 25.8600 46.1413 -Impact.ttf 14 N 26.3407 46.1413 18 W 0.1553 46.2890 46.1413 -Impact.ttf 14 N 26.3407 46.1413 19 s 8.0889 23.5030 37.8587 -Impact.ttf 14 N 26.3407 46.1413 20 c 8.5763 24.6815 37.8587 -Impact.ttf 14 N 26.3407 46.1413 21 u 7.9609 25.8600 37.8587 -Impact.ttf 14 N 26.3407 46.1413 22 3 -1.2748 25.7680 47.8983 -Impact.ttf 14 N 26.3407 46.1413 23 ~ 15.1092 26.7885 12.8907 -Impact.ttf 14 N 26.3407 46.1413 24 # 5.1482 34.6652 41.1215 -Impact.ttf 14 N 26.3407 46.1413 25 O -0.8373 26.8215 47.8983 -Impact.ttf 14 N 26.3407 46.1413 26 ` -5.2440 15.1785 7.9267 -Impact.ttf 14 N 26.3407 46.1413 27 @ -0.7929 43.1785 48.8040 -Impact.ttf 14 N 26.3407 46.1413 28 F -0.0988 20.2675 46.1413 -Impact.ttf 14 N 26.3407 46.1413 29 S -0.8817 27.5192 47.8983 -Impact.ttf 14 N 26.3407 46.1413 30 p 8.3119 25.8600 43.1785 -Impact.ttf 14 N 26.3407 46.1413 31 “ 0.1214 19.2175 14.9477 -Impact.ttf 14 N 26.3407 46.1413 32 % -0.6152 37.9837 47.0198 -Impact.ttf 14 N 26.3407 46.1413 33 £ -1.1852 28.2727 47.0198 -Impact.ttf 14 N 26.3407 46.1413 34 . 36.8182 8.6802 9.3360 -Impact.ttf 14 N 26.3407 46.1413 35 2 -1.1223 23.9837 47.0198 -Impact.ttf 14 N 26.3407 46.1413 36 5 0.1339 26.3407 47.0198 -Impact.ttf 14 N 26.3407 46.1413 37 m 7.9089 40.4657 37.8587 -Impact.ttf 14 N 26.3407 46.1413 38 V 0.0143 31.0355 46.1413 -Impact.ttf 14 N 26.3407 46.1413 39 6 -0.8260 26.3407 47.8983 -Impact.ttf 14 N 26.3407 46.1413 40 w 8.0387 38.9680 37.8587 -Impact.ttf 14 N 26.3407 46.1413 41 T 0.1307 26.3407 46.1413 -Impact.ttf 14 N 26.3407 46.1413 42 M 0.1812 36.8052 46.1413 -Impact.ttf 14 N 26.3407 46.1413 43 G -0.9025 26.9465 47.8983 -Impact.ttf 14 N 26.3407 46.1413 44 b 0.2568 25.8600 46.1413 -Impact.ttf 14 N 26.3407 46.1413 45 9 -0.7414 26.3407 47.8983 -Impact.ttf 14 N 26.3407 46.1413 46 ; 15.6273 8.6802 36.1995 -Impact.ttf 14 N 26.3407 46.1413 47 D -0.0982 26.9465 46.1413 -Impact.ttf 14 N 26.3407 46.1413 48 L 0.0274 18.8948 46.1413 -Impact.ttf 14 N 26.3407 46.1413 49 y 8.0642 27.3942 43.1785 -Impact.ttf 14 N 26.3407 46.1413 50 ‘ -0.0532 8.4302 14.9477 -Impact.ttf 14 N 26.3407 46.1413 51 \ -1.1912 23.9087 48.3733 -Impact.ttf 14 N 26.3407 46.1413 52 R 0.1812 26.3407 46.1413 -Impact.ttf 14 N 26.3407 46.1413 53 < 8.2844 27.6670 29.1785 -Impact.ttf 14 N 26.3407 46.1413 54 4 -0.1252 28.6977 46.1413 -Impact.ttf 14 N 26.3407 46.1413 55 8 -0.6645 26.0407 47.8983 -Impact.ttf 14 N 26.3407 46.1413 56 0 -0.9059 26.3407 47.8983 -Impact.ttf 14 N 26.3407 46.1413 57 A -0.2026 31.5355 46.1413 -Impact.ttf 14 N 26.3407 46.1413 58 E 0.1516 20.4483 46.1413 -Impact.ttf 14 N 26.3407 46.1413 59 B 0.1412 26.9465 46.1413 -Impact.ttf 14 N 26.3407 46.1413 60 v 8.4817 26.8215 37.8587 -Impact.ttf 14 N 26.3407 46.1413 61 k 0.2605 25.7680 46.1413 -Impact.ttf 14 N 26.3407 46.1413 62 J 0.1626 16.2320 46.1413 -Impact.ttf 14 N 26.3407 46.1413 63 U 0.0465 26.8215 47.0198 -Impact.ttf 14 N 26.3407 46.1413 64 j -0.0260 13.7692 51.4610 -Impact.ttf 14 N 26.3407 46.1413 65 ( -0.0885 14.9285 46.1413 -Impact.ttf 14 N 26.3407 46.1413 66 7 0.2113 22.3245 46.1413 -Impact.ttf 14 N 26.3407 46.1413 67 § -0.8618 25.6430 53.5180 -Impact.ttf 14 N 26.3407 46.1413 68 $ -3.9000 26.8215 54.0680 -Impact.ttf 14 N 26.3407 46.1413 69 € -0.9285 28.6058 47.8983 -Impact.ttf 14 N 26.3407 46.1413 70 / -1.2686 22.7302 48.3733 -Impact.ttf 14 N 26.3407 46.1413 71 C -0.9138 26.9465 47.8983 -Impact.ttf 14 N 26.3407 46.1413 72 * 0.1210 15.4705 13.7692 -Impact.ttf 14 N 26.3407 46.1413 73 ” 0.2594 19.2175 14.9477 -Impact.ttf 14 N 26.3407 46.1413 74 ? -1.0194 26.8215 47.0198 -Impact.ttf 14 N 26.3407 46.1413 75 { -0.2438 19.1675 54.8215 -Impact.ttf 14 N 26.3407 46.1413 76 } -0.0576 19.1675 54.8215 -Impact.ttf 14 N 26.3407 46.1413 77 , 37.0874 8.4302 14.9477 -Impact.ttf 14 N 26.3407 46.1413 78 I -0.0073 11.6430 46.1413 -Impact.ttf 14 N 26.3407 46.1413 79 ° -0.8998 18.0163 18.0163 -Impact.ttf 14 N 26.3407 46.1413 80 K -0.0676 30.3570 46.1413 -Impact.ttf 14 N 26.3407 46.1413 81 H -0.0826 27.2192 46.1413 -Impact.ttf 14 N 26.3407 46.1413 82 q 8.1825 25.8600 43.1785 -Impact.ttf 14 N 26.3407 46.1413 83 & 8.1342 33.5925 37.8587 -Impact.ttf 14 N 26.3407 46.1413 84 ’ -0.2198 8.4302 14.9477 -Impact.ttf 14 N 26.3407 46.1413 85 [ 0.1339 13.3942 46.1413 -Impact.ttf 14 N 26.3407 46.1413 86 - 22.8451 14.8785 7.9267 -Impact.ttf 14 N 26.3407 46.1413 87 Y 0.2190 27.6250 46.1413 -Impact.ttf 14 N 26.3407 46.1413 88 Q -0.9908 26.8215 52.3395 -Impact.ttf 14 N 26.3407 46.1413 89 " -0.0083 19.7175 14.0000 -Impact.ttf 14 N 26.3407 46.1413 90 ! 0.0129 12.8215 46.1413 -Impact.ttf 14 N 26.3407 46.1413 91 x 8.2589 25.1760 37.8587 -Impact.ttf 14 N 26.3407 46.1413 92 ) -0.1009 14.9285 46.1413 -Impact.ttf 14 N 26.3407 46.1413 93 = 15.0087 27.6670 16.7320 -Impact.ttf 14 N 26.3407 46.1413 94 + 9.5018 27.1773 27.1773 -Impact.ttf 14 N 26.3407 46.1413 95 X -0.1088 29.6400 46.1413 -Impact.ttf 14 N 26.3407 46.1413 96 » 9.7601 19.6198 32.7140 -Impact.ttf 14 N 26.3407 46.1413 97 ' 0.1038 8.6802 14.0000 -Impact.ttf 14 N 26.3407 46.1413 98 ¢ 0.1320 25.8600 49.5017 -Impact.ttf 14 N 26.3407 46.1413 99 Z 0.1046 22.6245 46.1413 -Impact.ttf 14 N 26.3407 46.1413 100 > 7.8924 27.6670 29.1785 -Impact.ttf 14 N 26.3407 46.1413 101 ® 2.7663 43.1785 43.3035 -Impact.ttf 14 N 26.3407 46.1413 102 © 4.3123 43.1785 42.0000 -Impact.ttf 14 N 26.3407 46.1413 103 ] 0.1984 13.3942 46.1413 -Impact.ttf 14 N 26.3407 46.1413 104 é -1.4777 25.5600 47.5698 -Impact.ttf 14 N 26.3407 46.1413 105 z 8.2083 19.3198 37.8587 -Impact.ttf 14 N 26.3407 46.1413 106 _ 50.6877 32.1413 2.8378 -Impact.ttf 14 N 26.3407 46.1413 107 ¥ -0.1455 27.6250 46.1413 -Impact.ttf 15 f 15.6593 46.1413 1 t 3.0453 17.0878 43.1785 -Impact.ttf 15 f 15.6593 46.1413 2 h -0.0871 25.8600 46.1413 -Impact.ttf 15 f 15.6593 46.1413 3 a 8.1880 24.6815 37.8587 -Impact.ttf 15 f 15.6593 46.1413 4 n 8.2255 25.8600 37.8587 -Impact.ttf 15 f 15.6593 46.1413 5 P -0.2355 25.1622 46.1413 -Impact.ttf 15 f 15.6593 46.1413 6 o 8.2748 25.5600 37.8587 -Impact.ttf 15 f 15.6593 46.1413 7 e 8.4397 25.5600 37.8587 -Impact.ttf 15 f 15.6593 46.1413 8 : 15.8200 8.6802 30.3570 -Impact.ttf 15 f 15.6593 46.1413 9 r 8.4484 17.9105 37.8587 -Impact.ttf 15 f 15.6593 46.1413 10 l 0.1798 11.1622 46.1413 -Impact.ttf 15 f 15.6593 46.1413 11 i -0.0625 11.1622 46.1413 -Impact.ttf 15 f 15.6593 46.1413 12 1 -0.0812 19.5925 46.1413 -Impact.ttf 15 f 15.6593 46.1413 13 | -0.0129 5.8425 53.6430 -Impact.ttf 15 f 15.6593 46.1413 14 N -0.0839 26.3407 46.1413 -Impact.ttf 15 f 15.6593 46.1413 15 f -0.0111 15.6593 46.1413 -Impact.ttf 15 f 15.6593 46.1413 16 g 8.2126 25.8600 44.3570 -Impact.ttf 15 f 15.6593 46.1413 17 d -0.1723 25.8600 46.1413 -Impact.ttf 15 f 15.6593 46.1413 18 W 0.1943 46.2890 46.1413 -Impact.ttf 15 f 15.6593 46.1413 19 s 8.2728 23.5030 37.8587 -Impact.ttf 15 f 15.6593 46.1413 20 c 8.1951 24.6815 37.8587 -Impact.ttf 15 f 15.6593 46.1413 21 u 8.5026 25.8600 37.8587 -Impact.ttf 15 f 15.6593 46.1413 22 3 -0.7858 25.7680 47.8983 -Impact.ttf 15 f 15.6593 46.1413 23 ~ 15.3167 26.7885 12.8907 -Impact.ttf 15 f 15.6593 46.1413 24 # 5.0800 34.6652 41.1215 -Impact.ttf 15 f 15.6593 46.1413 25 O -0.8715 26.8215 47.8983 -Impact.ttf 15 f 15.6593 46.1413 26 ` -4.7572 15.1785 7.9267 -Impact.ttf 15 f 15.6593 46.1413 27 @ -0.9180 43.1785 48.8040 -Impact.ttf 15 f 15.6593 46.1413 28 F 0.0417 20.2675 46.1413 -Impact.ttf 15 f 15.6593 46.1413 29 S -0.9680 27.5192 47.8983 -Impact.ttf 15 f 15.6593 46.1413 30 p 8.3312 25.8600 43.1785 -Impact.ttf 15 f 15.6593 46.1413 31 “ -0.0422 19.2175 14.9477 -Impact.ttf 15 f 15.6593 46.1413 32 % -0.8882 37.9837 47.0198 -Impact.ttf 15 f 15.6593 46.1413 33 £ -0.5750 28.2727 47.0198 -Impact.ttf 15 f 15.6593 46.1413 34 . 36.5044 8.6802 9.3360 -Impact.ttf 15 f 15.6593 46.1413 35 2 -0.7341 23.9837 47.0198 -Impact.ttf 15 f 15.6593 46.1413 36 5 -0.2438 26.3407 47.0198 -Impact.ttf 15 f 15.6593 46.1413 37 m 8.0828 40.4657 37.8587 -Impact.ttf 15 f 15.6593 46.1413 38 V -0.1242 31.0355 46.1413 -Impact.ttf 15 f 15.6593 46.1413 39 6 -0.8609 26.3407 47.8983 -Impact.ttf 15 f 15.6593 46.1413 40 w 8.2506 38.9680 37.8587 -Impact.ttf 15 f 15.6593 46.1413 41 T -0.0704 26.3407 46.1413 -Impact.ttf 15 f 15.6593 46.1413 42 M -0.1823 36.8052 46.1413 -Impact.ttf 15 f 15.6593 46.1413 43 G -0.7997 26.9465 47.8983 -Impact.ttf 15 f 15.6593 46.1413 44 b -0.0909 25.8600 46.1413 -Impact.ttf 15 f 15.6593 46.1413 45 9 -0.6759 26.3407 47.8983 -Impact.ttf 15 f 15.6593 46.1413 46 ; 15.9586 8.6802 36.1995 -Impact.ttf 15 f 15.6593 46.1413 47 D 0.0718 26.9465 46.1413 -Impact.ttf 15 f 15.6593 46.1413 48 L 0.2123 18.8948 46.1413 -Impact.ttf 15 f 15.6593 46.1413 49 y 8.3363 27.3942 43.1785 -Impact.ttf 15 f 15.6593 46.1413 50 ‘ 0.2256 8.4302 14.9477 -Impact.ttf 15 f 15.6593 46.1413 51 \ -0.9608 23.9087 48.3733 -Impact.ttf 15 f 15.6593 46.1413 52 R 0.1150 26.3407 46.1413 -Impact.ttf 15 f 15.6593 46.1413 53 < 8.2317 27.6670 29.1785 -Impact.ttf 15 f 15.6593 46.1413 54 4 -0.2595 28.6977 46.1413 -Impact.ttf 15 f 15.6593 46.1413 55 8 -0.6301 26.0407 47.8983 -Impact.ttf 15 f 15.6593 46.1413 56 0 -0.9167 26.3407 47.8983 -Impact.ttf 15 f 15.6593 46.1413 57 A -0.0478 31.5355 46.1413 -Impact.ttf 15 f 15.6593 46.1413 58 E -0.0487 20.4483 46.1413 -Impact.ttf 15 f 15.6593 46.1413 59 B 0.0959 26.9465 46.1413 -Impact.ttf 15 f 15.6593 46.1413 60 v 8.2111 26.8215 37.8587 -Impact.ttf 15 f 15.6593 46.1413 61 k 0.0073 25.7680 46.1413 -Impact.ttf 15 f 15.6593 46.1413 62 J 0.0982 16.2320 46.1413 -Impact.ttf 15 f 15.6593 46.1413 63 U -0.1269 26.8215 47.0198 -Impact.ttf 15 f 15.6593 46.1413 64 j 0.2535 13.7692 51.4610 -Impact.ttf 15 f 15.6593 46.1413 65 ( -0.0885 14.9285 46.1413 -Impact.ttf 15 f 15.6593 46.1413 66 7 0.0769 22.3245 46.1413 -Impact.ttf 15 f 15.6593 46.1413 67 § -0.9110 25.6430 53.5180 -Impact.ttf 15 f 15.6593 46.1413 68 $ -4.1325 26.8215 54.0680 -Impact.ttf 15 f 15.6593 46.1413 69 € -0.8519 28.6058 47.8983 -Impact.ttf 15 f 15.6593 46.1413 70 / -1.0493 22.7302 48.3733 -Impact.ttf 15 f 15.6593 46.1413 71 C -0.8757 26.9465 47.8983 -Impact.ttf 15 f 15.6593 46.1413 72 * 0.0204 15.4705 13.7692 -Impact.ttf 15 f 15.6593 46.1413 73 ” -0.1938 19.2175 14.9477 -Impact.ttf 15 f 15.6593 46.1413 74 ? -1.0726 26.8215 47.0198 -Impact.ttf 15 f 15.6593 46.1413 75 { 0.1144 19.1675 54.8215 -Impact.ttf 15 f 15.6593 46.1413 76 } -0.0625 19.1675 54.8215 -Impact.ttf 15 f 15.6593 46.1413 77 , 37.1661 8.4302 14.9477 -Impact.ttf 15 f 15.6593 46.1413 78 I 0.0427 11.6430 46.1413 -Impact.ttf 15 f 15.6593 46.1413 79 ° -1.1650 18.0163 18.0163 -Impact.ttf 15 f 15.6593 46.1413 80 K -0.0742 30.3570 46.1413 -Impact.ttf 15 f 15.6593 46.1413 81 H -0.2855 27.2192 46.1413 -Impact.ttf 15 f 15.6593 46.1413 82 q 8.5361 25.8600 43.1785 -Impact.ttf 15 f 15.6593 46.1413 83 & 8.3877 33.5925 37.8587 -Impact.ttf 15 f 15.6593 46.1413 84 ’ 0.1052 8.4302 14.9477 -Impact.ttf 15 f 15.6593 46.1413 85 [ -0.0927 13.3942 46.1413 -Impact.ttf 15 f 15.6593 46.1413 86 - 23.0745 14.8785 7.9267 -Impact.ttf 15 f 15.6593 46.1413 87 Y 0.2365 27.6250 46.1413 -Impact.ttf 15 f 15.6593 46.1413 88 Q -0.6944 26.8215 52.3395 -Impact.ttf 15 f 15.6593 46.1413 89 " 0.1113 19.7175 14.0000 -Impact.ttf 15 f 15.6593 46.1413 90 ! 0.3165 12.8215 46.1413 -Impact.ttf 15 f 15.6593 46.1413 91 x 8.1930 25.1760 37.8587 -Impact.ttf 15 f 15.6593 46.1413 92 ) 0.0917 14.9285 46.1413 -Impact.ttf 15 f 15.6593 46.1413 93 = 14.7317 27.6670 16.7320 -Impact.ttf 15 f 15.6593 46.1413 94 + 9.8213 27.1773 27.1773 -Impact.ttf 15 f 15.6593 46.1413 95 X -0.0301 29.6400 46.1413 -Impact.ttf 15 f 15.6593 46.1413 96 » 9.7275 19.6198 32.7140 -Impact.ttf 15 f 15.6593 46.1413 97 ' -0.0774 8.6802 14.0000 -Impact.ttf 15 f 15.6593 46.1413 98 ¢ 0.2219 25.8600 49.5017 -Impact.ttf 15 f 15.6593 46.1413 99 Z 0.0955 22.6245 46.1413 -Impact.ttf 15 f 15.6593 46.1413 100 > 8.1849 27.6670 29.1785 -Impact.ttf 15 f 15.6593 46.1413 101 ® 2.7538 43.1785 43.3035 -Impact.ttf 15 f 15.6593 46.1413 102 © 4.0471 43.1785 42.0000 -Impact.ttf 15 f 15.6593 46.1413 103 ] -0.0531 13.3942 46.1413 -Impact.ttf 15 f 15.6593 46.1413 104 é -1.2543 25.5600 47.5698 -Impact.ttf 15 f 15.6593 46.1413 105 z 8.4094 19.3198 37.8587 -Impact.ttf 15 f 15.6593 46.1413 106 _ 50.7036 32.1413 2.8378 -Impact.ttf 15 f 15.6593 46.1413 107 ¥ 0.0982 27.6250 46.1413 -Impact.ttf 16 g 25.8600 44.3570 1 t -5.5537 17.0878 43.1785 -Impact.ttf 16 g 25.8600 44.3570 2 h -8.2500 25.8600 46.1413 -Impact.ttf 16 g 25.8600 44.3570 3 a -0.1099 24.6815 37.8587 -Impact.ttf 16 g 25.8600 44.3570 4 n 0.2387 25.8600 37.8587 -Impact.ttf 16 g 25.8600 44.3570 5 P -8.1625 25.1622 46.1413 -Impact.ttf 16 g 25.8600 44.3570 6 o -0.0115 25.5600 37.8587 -Impact.ttf 16 g 25.8600 44.3570 7 e 0.1024 25.5600 37.8587 -Impact.ttf 16 g 25.8600 44.3570 8 : 7.5319 8.6802 30.3570 -Impact.ttf 16 g 25.8600 44.3570 9 r -0.1763 17.9105 37.8587 -Impact.ttf 16 g 25.8600 44.3570 10 l -8.0536 11.1622 46.1413 -Impact.ttf 16 g 25.8600 44.3570 11 i -8.3401 11.1622 46.1413 -Impact.ttf 16 g 25.8600 44.3570 12 1 -8.3769 19.5925 46.1413 -Impact.ttf 16 g 25.8600 44.3570 13 | -8.3178 5.8425 53.6430 -Impact.ttf 16 g 25.8600 44.3570 14 N -8.0557 26.3407 46.1413 -Impact.ttf 16 g 25.8600 44.3570 15 f -8.3429 15.6593 46.1413 -Impact.ttf 16 g 25.8600 44.3570 16 g 0.0941 25.8600 44.3570 -Impact.ttf 16 g 25.8600 44.3570 17 d -8.4373 25.8600 46.1413 -Impact.ttf 16 g 25.8600 44.3570 18 W -8.2678 46.2890 46.1413 -Impact.ttf 16 g 25.8600 44.3570 19 s -0.0395 23.5030 37.8587 -Impact.ttf 16 g 25.8600 44.3570 20 c -0.0669 24.6815 37.8587 -Impact.ttf 16 g 25.8600 44.3570 21 u 0.0087 25.8600 37.8587 -Impact.ttf 16 g 25.8600 44.3570 22 3 -9.3098 25.7680 47.8983 -Impact.ttf 16 g 25.8600 44.3570 23 ~ 7.0871 26.7885 12.8907 -Impact.ttf 16 g 25.8600 44.3570 24 # -2.9588 34.6652 41.1215 -Impact.ttf 16 g 25.8600 44.3570 25 O -9.2226 26.8215 47.8983 -Impact.ttf 16 g 25.8600 44.3570 26 ` -13.2536 15.1785 7.9267 -Impact.ttf 16 g 25.8600 44.3570 27 @ -9.0386 43.1785 48.8040 -Impact.ttf 16 g 25.8600 44.3570 28 F -7.9659 20.2675 46.1413 -Impact.ttf 16 g 25.8600 44.3570 29 S -9.4573 27.5192 47.8983 -Impact.ttf 16 g 25.8600 44.3570 30 p -0.2238 25.8600 43.1785 -Impact.ttf 16 g 25.8600 44.3570 31 “ -8.2474 19.2175 14.9477 -Impact.ttf 16 g 25.8600 44.3570 32 % -8.9844 37.9837 47.0198 -Impact.ttf 16 g 25.8600 44.3570 33 £ -9.1229 28.2727 47.0198 -Impact.ttf 16 g 25.8600 44.3570 34 . 28.3730 8.6802 9.3360 -Impact.ttf 16 g 25.8600 44.3570 35 2 -8.9414 23.9837 47.0198 -Impact.ttf 16 g 25.8600 44.3570 36 5 -8.5119 26.3407 47.0198 -Impact.ttf 16 g 25.8600 44.3570 37 m -0.2572 40.4657 37.8587 -Impact.ttf 16 g 25.8600 44.3570 38 V -8.6405 31.0355 46.1413 -Impact.ttf 16 g 25.8600 44.3570 39 6 -9.4849 26.3407 47.8983 -Impact.ttf 16 g 25.8600 44.3570 40 w 0.1516 38.9680 37.8587 -Impact.ttf 16 g 25.8600 44.3570 41 T -8.4020 26.3407 46.1413 -Impact.ttf 16 g 25.8600 44.3570 42 M -8.5013 36.8052 46.1413 -Impact.ttf 16 g 25.8600 44.3570 43 G -9.3126 26.9465 47.8983 -Impact.ttf 16 g 25.8600 44.3570 44 b -7.8274 25.8600 46.1413 -Impact.ttf 16 g 25.8600 44.3570 45 9 -9.1138 26.3407 47.8983 -Impact.ttf 16 g 25.8600 44.3570 46 ; 7.7047 8.6802 36.1995 -Impact.ttf 16 g 25.8600 44.3570 47 D -8.2739 26.9465 46.1413 -Impact.ttf 16 g 25.8600 44.3570 48 L -8.1486 18.8948 46.1413 -Impact.ttf 16 g 25.8600 44.3570 49 y 0.2030 27.3942 43.1785 -Impact.ttf 16 g 25.8600 44.3570 50 ‘ -8.3484 8.4302 14.9477 -Impact.ttf 16 g 25.8600 44.3570 51 \ -9.3468 23.9087 48.3733 -Impact.ttf 16 g 25.8600 44.3570 52 R -7.8261 26.3407 46.1413 -Impact.ttf 16 g 25.8600 44.3570 53 < 0.1184 27.6670 29.1785 -Impact.ttf 16 g 25.8600 44.3570 54 4 -8.3669 28.6977 46.1413 -Impact.ttf 16 g 25.8600 44.3570 55 8 -8.8071 26.0407 47.8983 -Impact.ttf 16 g 25.8600 44.3570 56 0 -9.1099 26.3407 47.8983 -Impact.ttf 16 g 25.8600 44.3570 57 A -8.2579 31.5355 46.1413 -Impact.ttf 16 g 25.8600 44.3570 58 E -8.5025 20.4483 46.1413 -Impact.ttf 16 g 25.8600 44.3570 59 B -8.3959 26.9465 46.1413 -Impact.ttf 16 g 25.8600 44.3570 60 v -0.0181 26.8215 37.8587 -Impact.ttf 16 g 25.8600 44.3570 61 k -8.1083 25.7680 46.1413 -Impact.ttf 16 g 25.8600 44.3570 62 J -8.2111 16.2320 46.1413 -Impact.ttf 16 g 25.8600 44.3570 63 U -8.4184 26.8215 47.0198 -Impact.ttf 16 g 25.8600 44.3570 64 j -8.0480 13.7692 51.4610 -Impact.ttf 16 g 25.8600 44.3570 65 ( -8.2951 14.9285 46.1413 -Impact.ttf 16 g 25.8600 44.3570 66 7 -8.2468 22.3245 46.1413 -Impact.ttf 16 g 25.8600 44.3570 67 § -9.1735 25.6430 53.5180 -Impact.ttf 16 g 25.8600 44.3570 68 $ -11.9525 26.8215 54.0680 -Impact.ttf 16 g 25.8600 44.3570 69 € -9.0928 28.6058 47.8983 -Impact.ttf 16 g 25.8600 44.3570 70 / -9.4207 22.7302 48.3733 -Impact.ttf 16 g 25.8600 44.3570 71 C -9.1583 26.9465 47.8983 -Impact.ttf 16 g 25.8600 44.3570 72 * -8.3520 15.4705 13.7692 -Impact.ttf 16 g 25.8600 44.3570 73 ” -8.3252 19.2175 14.9477 -Impact.ttf 16 g 25.8600 44.3570 74 ? -9.2992 26.8215 47.0198 -Impact.ttf 16 g 25.8600 44.3570 75 { -8.1941 19.1675 54.8215 -Impact.ttf 16 g 25.8600 44.3570 76 } -8.0095 19.1675 54.8215 -Impact.ttf 16 g 25.8600 44.3570 77 , 28.8906 8.4302 14.9477 -Impact.ttf 16 g 25.8600 44.3570 78 I -8.3053 11.6430 46.1413 -Impact.ttf 16 g 25.8600 44.3570 79 ° -9.0239 18.0163 18.0163 -Impact.ttf 16 g 25.8600 44.3570 80 K -7.8914 30.3570 46.1413 -Impact.ttf 16 g 25.8600 44.3570 81 H -8.2513 27.2192 46.1413 -Impact.ttf 16 g 25.8600 44.3570 82 q 0.4222 25.8600 43.1785 -Impact.ttf 16 g 25.8600 44.3570 83 & -0.0301 33.5925 37.8587 -Impact.ttf 16 g 25.8600 44.3570 84 ’ -8.3497 8.4302 14.9477 -Impact.ttf 16 g 25.8600 44.3570 85 [ -8.2798 13.3942 46.1413 -Impact.ttf 16 g 25.8600 44.3570 86 - 14.7734 14.8785 7.9267 -Impact.ttf 16 g 25.8600 44.3570 87 Y -8.2857 27.6250 46.1413 -Impact.ttf 16 g 25.8600 44.3570 88 Q -9.0271 26.8215 52.3395 -Impact.ttf 16 g 25.8600 44.3570 89 " -8.4262 19.7175 14.0000 -Impact.ttf 16 g 25.8600 44.3570 90 ! -8.1538 12.8215 46.1413 -Impact.ttf 16 g 25.8600 44.3570 91 x 0.0389 25.1760 37.8587 -Impact.ttf 16 g 25.8600 44.3570 92 ) -8.2821 14.9285 46.1413 -Impact.ttf 16 g 25.8600 44.3570 93 = 6.7212 27.6670 16.7320 -Impact.ttf 16 g 25.8600 44.3570 94 + 1.3677 27.1773 27.1773 -Impact.ttf 16 g 25.8600 44.3570 95 X -8.3982 29.6400 46.1413 -Impact.ttf 16 g 25.8600 44.3570 96 » 1.3593 19.6198 32.7140 -Impact.ttf 16 g 25.8600 44.3570 97 ' -8.4010 8.6802 14.0000 -Impact.ttf 16 g 25.8600 44.3570 98 ¢ -7.9212 25.8600 49.5017 -Impact.ttf 16 g 25.8600 44.3570 99 Z -8.4434 22.6245 46.1413 -Impact.ttf 16 g 25.8600 44.3570 100 > -0.3308 27.6670 29.1785 -Impact.ttf 16 g 25.8600 44.3570 101 ® -5.4545 43.1785 43.3035 -Impact.ttf 16 g 25.8600 44.3570 102 © -3.9754 43.1785 42.0000 -Impact.ttf 16 g 25.8600 44.3570 103 ] -8.2909 13.3942 46.1413 -Impact.ttf 16 g 25.8600 44.3570 104 é -9.6352 25.5600 47.5698 -Impact.ttf 16 g 25.8600 44.3570 105 z 0.0403 19.3198 37.8587 -Impact.ttf 16 g 25.8600 44.3570 106 _ 42.2458 32.1413 2.8378 -Impact.ttf 16 g 25.8600 44.3570 107 ¥ -8.4591 27.6250 46.1413 -Impact.ttf 17 d 25.8600 46.1413 1 t 2.7130 17.0878 43.1785 -Impact.ttf 17 d 25.8600 46.1413 2 h 0.1715 25.8600 46.1413 -Impact.ttf 17 d 25.8600 46.1413 3 a 8.3965 24.6815 37.8587 -Impact.ttf 17 d 25.8600 46.1413 4 n 8.2156 25.8600 37.8587 -Impact.ttf 17 d 25.8600 46.1413 5 P 0.0182 25.1622 46.1413 -Impact.ttf 17 d 25.8600 46.1413 6 o 8.1659 25.5600 37.8587 -Impact.ttf 17 d 25.8600 46.1413 7 e 8.1101 25.5600 37.8587 -Impact.ttf 17 d 25.8600 46.1413 8 : 15.6428 8.6802 30.3570 -Impact.ttf 17 d 25.8600 46.1413 9 r 8.1728 17.9105 37.8587 -Impact.ttf 17 d 25.8600 46.1413 10 l 0.3375 11.1622 46.1413 -Impact.ttf 17 d 25.8600 46.1413 11 i -0.2285 11.1622 46.1413 -Impact.ttf 17 d 25.8600 46.1413 12 1 0.2911 19.5925 46.1413 -Impact.ttf 17 d 25.8600 46.1413 13 | 0.3777 5.8425 53.6430 -Impact.ttf 17 d 25.8600 46.1413 14 N -0.3463 26.3407 46.1413 -Impact.ttf 17 d 25.8600 46.1413 15 f 0.2178 15.6593 46.1413 -Impact.ttf 17 d 25.8600 46.1413 16 g 8.4865 25.8600 44.3570 -Impact.ttf 17 d 25.8600 46.1413 17 d -0.1672 25.8600 46.1413 -Impact.ttf 17 d 25.8600 46.1413 18 W -0.0839 46.2890 46.1413 -Impact.ttf 17 d 25.8600 46.1413 19 s 8.3325 23.5030 37.8587 -Impact.ttf 17 d 25.8600 46.1413 20 c 8.4785 24.6815 37.8587 -Impact.ttf 17 d 25.8600 46.1413 21 u 8.4549 25.8600 37.8587 -Impact.ttf 17 d 25.8600 46.1413 22 3 -0.9277 25.7680 47.8983 -Impact.ttf 17 d 25.8600 46.1413 23 ~ 15.5944 26.7885 12.8907 -Impact.ttf 17 d 25.8600 46.1413 24 # 5.2525 34.6652 41.1215 -Impact.ttf 17 d 25.8600 46.1413 25 O -0.7446 26.8215 47.8983 -Impact.ttf 17 d 25.8600 46.1413 26 ` -4.8638 15.1785 7.9267 -Impact.ttf 17 d 25.8600 46.1413 27 @ -1.1925 43.1785 48.8040 -Impact.ttf 17 d 25.8600 46.1413 28 F 0.1553 20.2675 46.1413 -Impact.ttf 17 d 25.8600 46.1413 29 S -0.7830 27.5192 47.8983 -Impact.ttf 17 d 25.8600 46.1413 30 p 8.4262 25.8600 43.1785 -Impact.ttf 17 d 25.8600 46.1413 31 “ -0.0857 19.2175 14.9477 -Impact.ttf 17 d 25.8600 46.1413 32 % -1.0568 37.9837 47.0198 -Impact.ttf 17 d 25.8600 46.1413 33 £ -0.8141 28.2727 47.0198 -Impact.ttf 17 d 25.8600 46.1413 34 . 37.0324 8.6802 9.3360 -Impact.ttf 17 d 25.8600 46.1413 35 2 -1.0241 23.9837 47.0198 -Impact.ttf 17 d 25.8600 46.1413 36 5 -0.0383 26.3407 47.0198 -Impact.ttf 17 d 25.8600 46.1413 37 m 8.3325 40.4657 37.8587 -Impact.ttf 17 d 25.8600 46.1413 38 V -0.0992 31.0355 46.1413 -Impact.ttf 17 d 25.8600 46.1413 39 6 -0.8712 26.3407 47.8983 -Impact.ttf 17 d 25.8600 46.1413 40 w 8.4896 38.9680 37.8587 -Impact.ttf 17 d 25.8600 46.1413 41 T -0.0213 26.3407 46.1413 -Impact.ttf 17 d 25.8600 46.1413 42 M -0.1357 36.8052 46.1413 -Impact.ttf 17 d 25.8600 46.1413 43 G -0.8756 26.9465 47.8983 -Impact.ttf 17 d 25.8600 46.1413 44 b -0.0955 25.8600 46.1413 -Impact.ttf 17 d 25.8600 46.1413 45 9 -0.8460 26.3407 47.8983 -Impact.ttf 17 d 25.8600 46.1413 46 ; 15.6601 8.6802 36.1995 -Impact.ttf 17 d 25.8600 46.1413 47 D -0.1269 26.9465 46.1413 -Impact.ttf 17 d 25.8600 46.1413 48 L 0.1982 18.8948 46.1413 -Impact.ttf 17 d 25.8600 46.1413 49 y 8.1822 27.3942 43.1785 -Impact.ttf 17 d 25.8600 46.1413 50 ‘ -0.0641 8.4302 14.9477 -Impact.ttf 17 d 25.8600 46.1413 51 \ -1.1443 23.9087 48.3733 -Impact.ttf 17 d 25.8600 46.1413 52 R -0.0129 26.3407 46.1413 -Impact.ttf 17 d 25.8600 46.1413 53 < 8.0763 27.6670 29.1785 -Impact.ttf 17 d 25.8600 46.1413 54 4 -0.0440 28.6977 46.1413 -Impact.ttf 17 d 25.8600 46.1413 55 8 -0.7511 26.0407 47.8983 -Impact.ttf 17 d 25.8600 46.1413 56 0 -0.8817 26.3407 47.8983 -Impact.ttf 17 d 25.8600 46.1413 57 A -0.0097 31.5355 46.1413 -Impact.ttf 17 d 25.8600 46.1413 58 E -0.2224 20.4483 46.1413 -Impact.ttf 17 d 25.8600 46.1413 59 B 0.1373 26.9465 46.1413 -Impact.ttf 17 d 25.8600 46.1413 60 v 8.2784 26.8215 37.8587 -Impact.ttf 17 d 25.8600 46.1413 61 k -0.0565 25.7680 46.1413 -Impact.ttf 17 d 25.8600 46.1413 62 J 0.1112 16.2320 46.1413 -Impact.ttf 17 d 25.8600 46.1413 63 U 0.0820 26.8215 47.0198 -Impact.ttf 17 d 25.8600 46.1413 64 j -0.0226 13.7692 51.4610 -Impact.ttf 17 d 25.8600 46.1413 65 ( 0.0774 14.9285 46.1413 -Impact.ttf 17 d 25.8600 46.1413 66 7 0.1571 22.3245 46.1413 -Impact.ttf 17 d 25.8600 46.1413 67 § -0.8981 25.6430 53.5180 -Impact.ttf 17 d 25.8600 46.1413 68 $ -3.6478 26.8215 54.0680 -Impact.ttf 17 d 25.8600 46.1413 69 € -0.5610 28.6058 47.8983 -Impact.ttf 17 d 25.8600 46.1413 70 / -1.3771 22.7302 48.3733 -Impact.ttf 17 d 25.8600 46.1413 71 C -1.0662 26.9465 47.8983 -Impact.ttf 17 d 25.8600 46.1413 72 * -0.0339 15.4705 13.7692 -Impact.ttf 17 d 25.8600 46.1413 73 ” 0.0473 19.2175 14.9477 -Impact.ttf 17 d 25.8600 46.1413 74 ? -0.8914 26.8215 47.0198 -Impact.ttf 17 d 25.8600 46.1413 75 { 0.0527 19.1675 54.8215 -Impact.ttf 17 d 25.8600 46.1413 76 } 0.2766 19.1675 54.8215 -Impact.ttf 17 d 25.8600 46.1413 77 , 37.0008 8.4302 14.9477 -Impact.ttf 17 d 25.8600 46.1413 78 I -0.0356 11.6430 46.1413 -Impact.ttf 17 d 25.8600 46.1413 79 ° -0.9884 18.0163 18.0163 -Impact.ttf 17 d 25.8600 46.1413 80 K -0.2777 30.3570 46.1413 -Impact.ttf 17 d 25.8600 46.1413 81 H 0.0570 27.2192 46.1413 -Impact.ttf 17 d 25.8600 46.1413 82 q 8.2138 25.8600 43.1785 -Impact.ttf 17 d 25.8600 46.1413 83 & 8.5011 33.5925 37.8587 -Impact.ttf 17 d 25.8600 46.1413 84 ’ -0.0468 8.4302 14.9477 -Impact.ttf 17 d 25.8600 46.1413 85 [ 0.0937 13.3942 46.1413 -Impact.ttf 17 d 25.8600 46.1413 86 - 22.9059 14.8785 7.9267 -Impact.ttf 17 d 25.8600 46.1413 87 Y -0.3852 27.6250 46.1413 -Impact.ttf 17 d 25.8600 46.1413 88 Q -0.7742 26.8215 52.3395 -Impact.ttf 17 d 25.8600 46.1413 89 " -0.2276 19.7175 14.0000 -Impact.ttf 17 d 25.8600 46.1413 90 ! 0.0932 12.8215 46.1413 -Impact.ttf 17 d 25.8600 46.1413 91 x 8.1629 25.1760 37.8587 -Impact.ttf 17 d 25.8600 46.1413 92 ) 0.1034 14.9285 46.1413 -Impact.ttf 17 d 25.8600 46.1413 93 = 14.6620 27.6670 16.7320 -Impact.ttf 17 d 25.8600 46.1413 94 + 9.7262 27.1773 27.1773 -Impact.ttf 17 d 25.8600 46.1413 95 X 0.0871 29.6400 46.1413 -Impact.ttf 17 d 25.8600 46.1413 96 » 9.7687 19.6198 32.7140 -Impact.ttf 17 d 25.8600 46.1413 97 ' -0.5787 8.6802 14.0000 -Impact.ttf 17 d 25.8600 46.1413 98 ¢ 0.0481 25.8600 49.5017 -Impact.ttf 17 d 25.8600 46.1413 99 Z 0.1815 22.6245 46.1413 -Impact.ttf 17 d 25.8600 46.1413 100 > 8.1960 27.6670 29.1785 -Impact.ttf 17 d 25.8600 46.1413 101 ® 2.8451 43.1785 43.3035 -Impact.ttf 17 d 25.8600 46.1413 102 © 4.1399 43.1785 42.0000 -Impact.ttf 17 d 25.8600 46.1413 103 ] 0.0723 13.3942 46.1413 -Impact.ttf 17 d 25.8600 46.1413 104 é -1.4707 25.5600 47.5698 -Impact.ttf 17 d 25.8600 46.1413 105 z 8.0755 19.3198 37.8587 -Impact.ttf 17 d 25.8600 46.1413 106 _ 50.5483 32.1413 2.8378 -Impact.ttf 17 d 25.8600 46.1413 107 ¥ -0.0430 27.6250 46.1413 -Impact.ttf 18 W 46.2890 46.1413 1 t 3.0068 17.0878 43.1785 -Impact.ttf 18 W 46.2890 46.1413 2 h 0.0259 25.8600 46.1413 -Impact.ttf 18 W 46.2890 46.1413 3 a 8.3047 24.6815 37.8587 -Impact.ttf 18 W 46.2890 46.1413 4 n 8.1936 25.8600 37.8587 -Impact.ttf 18 W 46.2890 46.1413 5 P 0.3008 25.1622 46.1413 -Impact.ttf 18 W 46.2890 46.1413 6 o 8.0096 25.5600 37.8587 -Impact.ttf 18 W 46.2890 46.1413 7 e 8.5926 25.5600 37.8587 -Impact.ttf 18 W 46.2890 46.1413 8 : 16.1092 8.6802 30.3570 -Impact.ttf 18 W 46.2890 46.1413 9 r 8.4368 17.9105 37.8587 -Impact.ttf 18 W 46.2890 46.1413 10 l -0.0760 11.1622 46.1413 -Impact.ttf 18 W 46.2890 46.1413 11 i 0.1794 11.1622 46.1413 -Impact.ttf 18 W 46.2890 46.1413 12 1 0.3282 19.5925 46.1413 -Impact.ttf 18 W 46.2890 46.1413 13 | -0.2295 5.8425 53.6430 -Impact.ttf 18 W 46.2890 46.1413 14 N -0.3393 26.3407 46.1413 -Impact.ttf 18 W 46.2890 46.1413 15 f 0.2048 15.6593 46.1413 -Impact.ttf 18 W 46.2890 46.1413 16 g 8.8488 25.8600 44.3570 -Impact.ttf 18 W 46.2890 46.1413 17 d 0.1362 25.8600 46.1413 -Impact.ttf 18 W 46.2890 46.1413 18 W 0.2837 46.2890 46.1413 -Impact.ttf 18 W 46.2890 46.1413 19 s 8.1139 23.5030 37.8587 -Impact.ttf 18 W 46.2890 46.1413 20 c 7.9831 24.6815 37.8587 -Impact.ttf 18 W 46.2890 46.1413 21 u 8.4806 25.8600 37.8587 -Impact.ttf 18 W 46.2890 46.1413 22 3 -0.7146 25.7680 47.8983 -Impact.ttf 18 W 46.2890 46.1413 23 ~ 15.0691 26.7885 12.8907 -Impact.ttf 18 W 46.2890 46.1413 24 # 4.7332 34.6652 41.1215 -Impact.ttf 18 W 46.2890 46.1413 25 O -0.9118 26.8215 47.8983 -Impact.ttf 18 W 46.2890 46.1413 26 ` -5.3422 15.1785 7.9267 -Impact.ttf 18 W 46.2890 46.1413 27 @ -1.0045 43.1785 48.8040 -Impact.ttf 18 W 46.2890 46.1413 28 F 0.1498 20.2675 46.1413 -Impact.ttf 18 W 46.2890 46.1413 29 S -0.9024 27.5192 47.8983 -Impact.ttf 18 W 46.2890 46.1413 30 p 8.6352 25.8600 43.1785 -Impact.ttf 18 W 46.2890 46.1413 31 “ -0.1385 19.2175 14.9477 -Impact.ttf 18 W 46.2890 46.1413 32 % -0.6832 37.9837 47.0198 -Impact.ttf 18 W 46.2890 46.1413 33 £ -0.5972 28.2727 47.0198 -Impact.ttf 18 W 46.2890 46.1413 34 . 36.8854 8.6802 9.3360 -Impact.ttf 18 W 46.2890 46.1413 35 2 -0.6260 23.9837 47.0198 -Impact.ttf 18 W 46.2890 46.1413 36 5 0.1437 26.3407 47.0198 -Impact.ttf 18 W 46.2890 46.1413 37 m 8.0540 40.4657 37.8587 -Impact.ttf 18 W 46.2890 46.1413 38 V -0.1307 31.0355 46.1413 -Impact.ttf 18 W 46.2890 46.1413 39 6 -0.9081 26.3407 47.8983 -Impact.ttf 18 W 46.2890 46.1413 40 w 8.5837 38.9680 37.8587 -Impact.ttf 18 W 46.2890 46.1413 41 T -0.0027 26.3407 46.1413 -Impact.ttf 18 W 46.2890 46.1413 42 M -0.0801 36.8052 46.1413 -Impact.ttf 18 W 46.2890 46.1413 43 G -0.5815 26.9465 47.8983 -Impact.ttf 18 W 46.2890 46.1413 44 b -0.0552 25.8600 46.1413 -Impact.ttf 18 W 46.2890 46.1413 45 9 -0.8943 26.3407 47.8983 -Impact.ttf 18 W 46.2890 46.1413 46 ; 15.9475 8.6802 36.1995 -Impact.ttf 18 W 46.2890 46.1413 47 D -0.1046 26.9465 46.1413 -Impact.ttf 18 W 46.2890 46.1413 48 L 0.0774 18.8948 46.1413 -Impact.ttf 18 W 46.2890 46.1413 49 y 8.2269 27.3942 43.1785 -Impact.ttf 18 W 46.2890 46.1413 50 ‘ -0.0813 8.4302 14.9477 -Impact.ttf 18 W 46.2890 46.1413 51 \ -1.1731 23.9087 48.3733 -Impact.ttf 18 W 46.2890 46.1413 52 R 0.1464 26.3407 46.1413 -Impact.ttf 18 W 46.2890 46.1413 53 < 8.0760 27.6670 29.1785 -Impact.ttf 18 W 46.2890 46.1413 54 4 -0.1542 28.6977 46.1413 -Impact.ttf 18 W 46.2890 46.1413 55 8 -1.0040 26.0407 47.8983 -Impact.ttf 18 W 46.2890 46.1413 56 0 -0.8516 26.3407 47.8983 -Impact.ttf 18 W 46.2890 46.1413 57 A -0.2470 31.5355 46.1413 -Impact.ttf 18 W 46.2890 46.1413 58 E -0.0455 20.4483 46.1413 -Impact.ttf 18 W 46.2890 46.1413 59 B 0.1169 26.9465 46.1413 -Impact.ttf 18 W 46.2890 46.1413 60 v 8.5180 26.8215 37.8587 -Impact.ttf 18 W 46.2890 46.1413 61 k -0.1032 25.7680 46.1413 -Impact.ttf 18 W 46.2890 46.1413 62 J 0.1690 16.2320 46.1413 -Impact.ttf 18 W 46.2890 46.1413 63 U 0.2622 26.8215 47.0198 -Impact.ttf 18 W 46.2890 46.1413 64 j -0.0353 13.7692 51.4610 -Impact.ttf 18 W 46.2890 46.1413 65 ( 0.2484 14.9285 46.1413 -Impact.ttf 18 W 46.2890 46.1413 66 7 0.4838 22.3245 46.1413 -Impact.ttf 18 W 46.2890 46.1413 67 § -1.0472 25.6430 53.5180 -Impact.ttf 18 W 46.2890 46.1413 68 $ -3.9506 26.8215 54.0680 -Impact.ttf 18 W 46.2890 46.1413 69 € -0.8317 28.6058 47.8983 -Impact.ttf 18 W 46.2890 46.1413 70 / -0.9938 22.7302 48.3733 -Impact.ttf 18 W 46.2890 46.1413 71 C -1.0299 26.9465 47.8983 -Impact.ttf 18 W 46.2890 46.1413 72 * -0.0214 15.4705 13.7692 -Impact.ttf 18 W 46.2890 46.1413 73 ” -0.1283 19.2175 14.9477 -Impact.ttf 18 W 46.2890 46.1413 74 ? -1.0727 26.8215 47.0198 -Impact.ttf 18 W 46.2890 46.1413 75 { -0.0710 19.1675 54.8215 -Impact.ttf 18 W 46.2890 46.1413 76 } 0.3887 19.1675 54.8215 -Impact.ttf 18 W 46.2890 46.1413 77 , 37.2038 8.4302 14.9477 -Impact.ttf 18 W 46.2890 46.1413 78 I 0.0263 11.6430 46.1413 -Impact.ttf 18 W 46.2890 46.1413 79 ° -0.7387 18.0163 18.0163 -Impact.ttf 18 W 46.2890 46.1413 80 K -0.0338 30.3570 46.1413 -Impact.ttf 18 W 46.2890 46.1413 81 H 0.2452 27.2192 46.1413 -Impact.ttf 18 W 46.2890 46.1413 82 q 8.2955 25.8600 43.1785 -Impact.ttf 18 W 46.2890 46.1413 83 & 8.2478 33.5925 37.8587 -Impact.ttf 18 W 46.2890 46.1413 84 ’ -0.0430 8.4302 14.9477 -Impact.ttf 18 W 46.2890 46.1413 85 [ 0.2595 13.3942 46.1413 -Impact.ttf 18 W 46.2890 46.1413 86 - 22.8065 14.8785 7.9267 -Impact.ttf 18 W 46.2890 46.1413 87 Y 0.0909 27.6250 46.1413 -Impact.ttf 18 W 46.2890 46.1413 88 Q -0.8812 26.8215 52.3395 -Impact.ttf 18 W 46.2890 46.1413 89 " 0.1414 19.7175 14.0000 -Impact.ttf 18 W 46.2890 46.1413 90 ! 0.2800 12.8215 46.1413 -Impact.ttf 18 W 46.2890 46.1413 91 x 8.2328 25.1760 37.8587 -Impact.ttf 18 W 46.2890 46.1413 92 ) -0.0417 14.9285 46.1413 -Impact.ttf 18 W 46.2890 46.1413 93 = 14.9628 27.6670 16.7320 -Impact.ttf 18 W 46.2890 46.1413 94 + 10.1419 27.1773 27.1773 -Impact.ttf 18 W 46.2890 46.1413 95 X 0.0473 29.6400 46.1413 -Impact.ttf 18 W 46.2890 46.1413 96 » 9.5580 19.6198 32.7140 -Impact.ttf 18 W 46.2890 46.1413 97 ' 0.1909 8.6802 14.0000 -Impact.ttf 18 W 46.2890 46.1413 98 ¢ 0.1068 25.8600 49.5017 -Impact.ttf 18 W 46.2890 46.1413 99 Z -0.2827 22.6245 46.1413 -Impact.ttf 18 W 46.2890 46.1413 100 > 8.2025 27.6670 29.1785 -Impact.ttf 18 W 46.2890 46.1413 101 ® 2.9561 43.1785 43.3035 -Impact.ttf 18 W 46.2890 46.1413 102 © 4.3724 43.1785 42.0000 -Impact.ttf 18 W 46.2890 46.1413 103 ] -0.1817 13.3942 46.1413 -Impact.ttf 18 W 46.2890 46.1413 104 é -1.5671 25.5600 47.5698 -Impact.ttf 18 W 46.2890 46.1413 105 z 8.0369 19.3198 37.8587 -Impact.ttf 18 W 46.2890 46.1413 106 _ 50.5982 32.1413 2.8378 -Impact.ttf 18 W 46.2890 46.1413 107 ¥ 0.1713 27.6250 46.1413 -Impact.ttf 19 s 23.5030 37.8587 1 t -5.5297 17.0878 43.1785 -Impact.ttf 19 s 23.5030 37.8587 2 h -7.9756 25.8600 46.1413 -Impact.ttf 19 s 23.5030 37.8587 3 a -0.1469 24.6815 37.8587 -Impact.ttf 19 s 23.5030 37.8587 4 n -0.0350 25.8600 37.8587 -Impact.ttf 19 s 23.5030 37.8587 5 P -8.4966 25.1622 46.1413 -Impact.ttf 19 s 23.5030 37.8587 6 o -0.1271 25.5600 37.8587 -Impact.ttf 19 s 23.5030 37.8587 7 e -0.0599 25.5600 37.8587 -Impact.ttf 19 s 23.5030 37.8587 8 : 7.5945 8.6802 30.3570 -Impact.ttf 19 s 23.5030 37.8587 9 r 0.0752 17.9105 37.8587 -Impact.ttf 19 s 23.5030 37.8587 10 l -8.3206 11.1622 46.1413 -Impact.ttf 19 s 23.5030 37.8587 11 i -8.3554 11.1622 46.1413 -Impact.ttf 19 s 23.5030 37.8587 12 1 -8.3780 19.5925 46.1413 -Impact.ttf 19 s 23.5030 37.8587 13 | -8.4762 5.8425 53.6430 -Impact.ttf 19 s 23.5030 37.8587 14 N -8.2129 26.3407 46.1413 -Impact.ttf 19 s 23.5030 37.8587 15 f -8.8660 15.6593 46.1413 -Impact.ttf 19 s 23.5030 37.8587 16 g -0.0403 25.8600 44.3570 -Impact.ttf 19 s 23.5030 37.8587 17 d -8.1246 25.8600 46.1413 -Impact.ttf 19 s 23.5030 37.8587 18 W -8.2168 46.2890 46.1413 -Impact.ttf 19 s 23.5030 37.8587 19 s 0.1070 23.5030 37.8587 -Impact.ttf 19 s 23.5030 37.8587 20 c 0.1172 24.6815 37.8587 -Impact.ttf 19 s 23.5030 37.8587 21 u -0.0742 25.8600 37.8587 -Impact.ttf 19 s 23.5030 37.8587 22 3 -9.0326 25.7680 47.8983 -Impact.ttf 19 s 23.5030 37.8587 23 ~ 7.3664 26.7885 12.8907 -Impact.ttf 19 s 23.5030 37.8587 24 # -3.4991 34.6652 41.1215 -Impact.ttf 19 s 23.5030 37.8587 25 O -8.9608 26.8215 47.8983 -Impact.ttf 19 s 23.5030 37.8587 26 ` -13.2914 15.1785 7.9267 -Impact.ttf 19 s 23.5030 37.8587 27 @ -9.2110 43.1785 48.8040 -Impact.ttf 19 s 23.5030 37.8587 28 F -8.2051 20.2675 46.1413 -Impact.ttf 19 s 23.5030 37.8587 29 S -9.1868 27.5192 47.8983 -Impact.ttf 19 s 23.5030 37.8587 30 p -0.1597 25.8600 43.1785 -Impact.ttf 19 s 23.5030 37.8587 31 “ -8.2742 19.2175 14.9477 -Impact.ttf 19 s 23.5030 37.8587 32 % -9.0096 37.9837 47.0198 -Impact.ttf 19 s 23.5030 37.8587 33 £ -9.2583 28.2727 47.0198 -Impact.ttf 19 s 23.5030 37.8587 34 . 28.3058 8.6802 9.3360 -Impact.ttf 19 s 23.5030 37.8587 35 2 -9.4965 23.9837 47.0198 -Impact.ttf 19 s 23.5030 37.8587 36 5 -8.2293 26.3407 47.0198 -Impact.ttf 19 s 23.5030 37.8587 37 m -0.0468 40.4657 37.8587 -Impact.ttf 19 s 23.5030 37.8587 38 V -8.3682 31.0355 46.1413 -Impact.ttf 19 s 23.5030 37.8587 39 6 -8.9257 26.3407 47.8983 -Impact.ttf 19 s 23.5030 37.8587 40 w -0.0482 38.9680 37.8587 -Impact.ttf 19 s 23.5030 37.8587 41 T -8.3150 26.3407 46.1413 -Impact.ttf 19 s 23.5030 37.8587 42 M -8.1986 36.8052 46.1413 -Impact.ttf 19 s 23.5030 37.8587 43 G -9.5731 26.9465 47.8983 -Impact.ttf 19 s 23.5030 37.8587 44 b -8.2708 25.8600 46.1413 -Impact.ttf 19 s 23.5030 37.8587 45 9 -9.2208 26.3407 47.8983 -Impact.ttf 19 s 23.5030 37.8587 46 ; 7.4391 8.6802 36.1995 -Impact.ttf 19 s 23.5030 37.8587 47 D -8.5081 26.9465 46.1413 -Impact.ttf 19 s 23.5030 37.8587 48 L -8.2269 18.8948 46.1413 -Impact.ttf 19 s 23.5030 37.8587 49 y 0.0555 27.3942 43.1785 -Impact.ttf 19 s 23.5030 37.8587 50 ‘ -8.2051 8.4302 14.9477 -Impact.ttf 19 s 23.5030 37.8587 51 \ -9.3616 23.9087 48.3733 -Impact.ttf 19 s 23.5030 37.8587 52 R -8.1305 26.3407 46.1413 -Impact.ttf 19 s 23.5030 37.8587 53 < -0.2094 27.6670 29.1785 -Impact.ttf 19 s 23.5030 37.8587 54 4 -8.2968 28.6977 46.1413 -Impact.ttf 19 s 23.5030 37.8587 55 8 -8.9167 26.0407 47.8983 -Impact.ttf 19 s 23.5030 37.8587 56 0 -8.8273 26.3407 47.8983 -Impact.ttf 19 s 23.5030 37.8587 57 A -8.4126 31.5355 46.1413 -Impact.ttf 19 s 23.5030 37.8587 58 E -8.3807 20.4483 46.1413 -Impact.ttf 19 s 23.5030 37.8587 59 B -8.6432 26.9465 46.1413 -Impact.ttf 19 s 23.5030 37.8587 60 v 0.0839 26.8215 37.8587 -Impact.ttf 19 s 23.5030 37.8587 61 k -8.2793 25.7680 46.1413 -Impact.ttf 19 s 23.5030 37.8587 62 J -8.3293 16.2320 46.1413 -Impact.ttf 19 s 23.5030 37.8587 63 U -8.2793 26.8215 47.0198 -Impact.ttf 19 s 23.5030 37.8587 64 j -7.9686 13.7692 51.4610 -Impact.ttf 19 s 23.5030 37.8587 65 ( -8.3516 14.9285 46.1413 -Impact.ttf 19 s 23.5030 37.8587 66 7 -8.1621 22.3245 46.1413 -Impact.ttf 19 s 23.5030 37.8587 67 § -9.3608 25.6430 53.5180 -Impact.ttf 19 s 23.5030 37.8587 68 $ -12.0175 26.8215 54.0680 -Impact.ttf 19 s 23.5030 37.8587 69 € -9.0726 28.6058 47.8983 -Impact.ttf 19 s 23.5030 37.8587 70 / -9.4617 22.7302 48.3733 -Impact.ttf 19 s 23.5030 37.8587 71 C -9.0052 26.9465 47.8983 -Impact.ttf 19 s 23.5030 37.8587 72 * -7.9484 15.4705 13.7692 -Impact.ttf 19 s 23.5030 37.8587 73 ” -8.5054 19.2175 14.9477 -Impact.ttf 19 s 23.5030 37.8587 74 ? -8.8959 26.8215 47.0198 -Impact.ttf 19 s 23.5030 37.8587 75 { -8.2513 19.1675 54.8215 -Impact.ttf 19 s 23.5030 37.8587 76 } -8.3391 19.1675 54.8215 -Impact.ttf 19 s 23.5030 37.8587 77 , 28.6880 8.4302 14.9477 -Impact.ttf 19 s 23.5030 37.8587 78 I -8.3844 11.6430 46.1413 -Impact.ttf 19 s 23.5030 37.8587 79 ° -9.1425 18.0163 18.0163 -Impact.ttf 19 s 23.5030 37.8587 80 K -8.2644 30.3570 46.1413 -Impact.ttf 19 s 23.5030 37.8587 81 H -8.2766 27.2192 46.1413 -Impact.ttf 19 s 23.5030 37.8587 82 q 0.0899 25.8600 43.1785 -Impact.ttf 19 s 23.5030 37.8587 83 & 0.0143 33.5925 37.8587 -Impact.ttf 19 s 23.5030 37.8587 84 ’ -8.4494 8.4302 14.9477 -Impact.ttf 19 s 23.5030 37.8587 85 [ -8.0258 13.3942 46.1413 -Impact.ttf 19 s 23.5030 37.8587 86 - 15.2261 14.8785 7.9267 -Impact.ttf 19 s 23.5030 37.8587 87 Y -8.3354 27.6250 46.1413 -Impact.ttf 19 s 23.5030 37.8587 88 Q -9.2350 26.8215 52.3395 -Impact.ttf 19 s 23.5030 37.8587 89 " -8.2371 19.7175 14.0000 -Impact.ttf 19 s 23.5030 37.8587 90 ! -8.6018 12.8215 46.1413 -Impact.ttf 19 s 23.5030 37.8587 91 x 0.2158 25.1760 37.8587 -Impact.ttf 19 s 23.5030 37.8587 92 ) -8.4336 14.9285 46.1413 -Impact.ttf 19 s 23.5030 37.8587 93 = 6.7187 27.6670 16.7320 -Impact.ttf 19 s 23.5030 37.8587 94 + 1.3951 27.1773 27.1773 -Impact.ttf 19 s 23.5030 37.8587 95 X -8.4052 29.6400 46.1413 -Impact.ttf 19 s 23.5030 37.8587 96 » 1.3797 19.6198 32.7140 -Impact.ttf 19 s 23.5030 37.8587 97 ' -8.5917 8.6802 14.0000 -Impact.ttf 19 s 23.5030 37.8587 98 ¢ -8.0406 25.8600 49.5017 -Impact.ttf 19 s 23.5030 37.8587 99 Z -8.2371 22.6245 46.1413 -Impact.ttf 19 s 23.5030 37.8587 100 > -0.0179 27.6670 29.1785 -Impact.ttf 19 s 23.5030 37.8587 101 ® -5.4233 43.1785 43.3035 -Impact.ttf 19 s 23.5030 37.8587 102 © -4.2756 43.1785 42.0000 -Impact.ttf 19 s 23.5030 37.8587 103 ] -8.0629 13.3942 46.1413 -Impact.ttf 19 s 23.5030 37.8587 104 é -9.7484 25.5600 47.5698 -Impact.ttf 19 s 23.5030 37.8587 105 z 0.2470 19.3198 37.8587 -Impact.ttf 19 s 23.5030 37.8587 106 _ 42.2495 32.1413 2.8378 -Impact.ttf 19 s 23.5030 37.8587 107 ¥ -8.1744 27.6250 46.1413 -Impact.ttf 20 c 24.6815 37.8587 1 t -5.1529 17.0878 43.1785 -Impact.ttf 20 c 24.6815 37.8587 2 h -8.2653 25.8600 46.1413 -Impact.ttf 20 c 24.6815 37.8587 3 a 0.0038 24.6815 37.8587 -Impact.ttf 20 c 24.6815 37.8587 4 n 0.0987 25.8600 37.8587 -Impact.ttf 20 c 24.6815 37.8587 5 P -8.4234 25.1622 46.1413 -Impact.ttf 20 c 24.6815 37.8587 6 o -0.0500 25.5600 37.8587 -Impact.ttf 20 c 24.6815 37.8587 7 e -0.1658 25.5600 37.8587 -Impact.ttf 20 c 24.6815 37.8587 8 : 7.4971 8.6802 30.3570 -Impact.ttf 20 c 24.6815 37.8587 9 r 0.0371 17.9105 37.8587 -Impact.ttf 20 c 24.6815 37.8587 10 l -8.4762 11.1622 46.1413 -Impact.ttf 20 c 24.6815 37.8587 11 i -8.4179 11.1622 46.1413 -Impact.ttf 20 c 24.6815 37.8587 12 1 -8.3539 19.5925 46.1413 -Impact.ttf 20 c 24.6815 37.8587 13 | -8.1276 5.8425 53.6430 -Impact.ttf 20 c 24.6815 37.8587 14 N -8.2942 26.3407 46.1413 -Impact.ttf 20 c 24.6815 37.8587 15 f -8.5411 15.6593 46.1413 -Impact.ttf 20 c 24.6815 37.8587 16 g 0.0214 25.8600 44.3570 -Impact.ttf 20 c 24.6815 37.8587 17 d -8.0119 25.8600 46.1413 -Impact.ttf 20 c 24.6815 37.8587 18 W -8.4888 46.2890 46.1413 -Impact.ttf 20 c 24.6815 37.8587 19 s -0.1941 23.5030 37.8587 -Impact.ttf 20 c 24.6815 37.8587 20 c 0.3545 24.6815 37.8587 -Impact.ttf 20 c 24.6815 37.8587 21 u -0.1350 25.8600 37.8587 -Impact.ttf 20 c 24.6815 37.8587 22 3 -9.3664 25.7680 47.8983 -Impact.ttf 20 c 24.6815 37.8587 23 ~ 7.1798 26.7885 12.8907 -Impact.ttf 20 c 24.6815 37.8587 24 # -3.1053 34.6652 41.1215 -Impact.ttf 20 c 24.6815 37.8587 25 O -9.1531 26.8215 47.8983 -Impact.ttf 20 c 24.6815 37.8587 26 ` -13.1028 15.1785 7.9267 -Impact.ttf 20 c 24.6815 37.8587 27 @ -9.3162 43.1785 48.8040 -Impact.ttf 20 c 24.6815 37.8587 28 F -8.2126 20.2675 46.1413 -Impact.ttf 20 c 24.6815 37.8587 29 S -9.2999 27.5192 47.8983 -Impact.ttf 20 c 24.6815 37.8587 30 p 0.3248 25.8600 43.1785 -Impact.ttf 20 c 24.6815 37.8587 31 “ -8.5607 19.2175 14.9477 -Impact.ttf 20 c 24.6815 37.8587 32 % -9.3334 37.9837 47.0198 -Impact.ttf 20 c 24.6815 37.8587 33 £ -9.0312 28.2727 47.0198 -Impact.ttf 20 c 24.6815 37.8587 34 . 28.5892 8.6802 9.3360 -Impact.ttf 20 c 24.6815 37.8587 35 2 -9.0656 23.9837 47.0198 -Impact.ttf 20 c 24.6815 37.8587 36 5 -8.5774 26.3407 47.0198 -Impact.ttf 20 c 24.6815 37.8587 37 m -0.1841 40.4657 37.8587 -Impact.ttf 20 c 24.6815 37.8587 38 V -8.4456 31.0355 46.1413 -Impact.ttf 20 c 24.6815 37.8587 39 6 -9.0316 26.3407 47.8983 -Impact.ttf 20 c 24.6815 37.8587 40 w 0.0701 38.9680 37.8587 -Impact.ttf 20 c 24.6815 37.8587 41 T -8.2458 26.3407 46.1413 -Impact.ttf 20 c 24.6815 37.8587 42 M -8.2441 36.8052 46.1413 -Impact.ttf 20 c 24.6815 37.8587 43 G -9.3404 26.9465 47.8983 -Impact.ttf 20 c 24.6815 37.8587 44 b -8.4830 25.8600 46.1413 -Impact.ttf 20 c 24.6815 37.8587 45 9 -8.9113 26.3407 47.8983 -Impact.ttf 20 c 24.6815 37.8587 46 ; 7.6255 8.6802 36.1995 -Impact.ttf 20 c 24.6815 37.8587 47 D -8.1556 26.9465 46.1413 -Impact.ttf 20 c 24.6815 37.8587 48 L -8.3252 18.8948 46.1413 -Impact.ttf 20 c 24.6815 37.8587 49 y -0.2502 27.3942 43.1785 -Impact.ttf 20 c 24.6815 37.8587 50 ‘ -7.9970 8.4302 14.9477 -Impact.ttf 20 c 24.6815 37.8587 51 \ -9.5466 23.9087 48.3733 -Impact.ttf 20 c 24.6815 37.8587 52 R -8.2468 26.3407 46.1413 -Impact.ttf 20 c 24.6815 37.8587 53 < -0.1635 27.6670 29.1785 -Impact.ttf 20 c 24.6815 37.8587 54 4 -8.2441 28.6977 46.1413 -Impact.ttf 20 c 24.6815 37.8587 55 8 -9.1551 26.0407 47.8983 -Impact.ttf 20 c 24.6815 37.8587 56 0 -9.1165 26.3407 47.8983 -Impact.ttf 20 c 24.6815 37.8587 57 A -8.2047 31.5355 46.1413 -Impact.ttf 20 c 24.6815 37.8587 58 E -8.2368 20.4483 46.1413 -Impact.ttf 20 c 24.6815 37.8587 59 B -8.4554 26.9465 46.1413 -Impact.ttf 20 c 24.6815 37.8587 60 v -0.0658 26.8215 37.8587 -Impact.ttf 20 c 24.6815 37.8587 61 k -8.7200 25.7680 46.1413 -Impact.ttf 20 c 24.6815 37.8587 62 J -8.3441 16.2320 46.1413 -Impact.ttf 20 c 24.6815 37.8587 63 U -8.2434 26.8215 47.0198 -Impact.ttf 20 c 24.6815 37.8587 64 j -8.4224 13.7692 51.4610 -Impact.ttf 20 c 24.6815 37.8587 65 ( -8.2780 14.9285 46.1413 -Impact.ttf 20 c 24.6815 37.8587 66 7 -8.3702 22.3245 46.1413 -Impact.ttf 20 c 24.6815 37.8587 67 § -9.2449 25.6430 53.5180 -Impact.ttf 20 c 24.6815 37.8587 68 $ -12.1977 26.8215 54.0680 -Impact.ttf 20 c 24.6815 37.8587 69 € -9.1726 28.6058 47.8983 -Impact.ttf 20 c 24.6815 37.8587 70 / -9.2048 22.7302 48.3733 -Impact.ttf 20 c 24.6815 37.8587 71 C -8.9452 26.9465 47.8983 -Impact.ttf 20 c 24.6815 37.8587 72 * -8.3293 15.4705 13.7692 -Impact.ttf 20 c 24.6815 37.8587 73 ” -8.1737 19.2175 14.9477 -Impact.ttf 20 c 24.6815 37.8587 74 ? -9.1610 26.8215 47.0198 -Impact.ttf 20 c 24.6815 37.8587 75 { -8.2529 19.1675 54.8215 -Impact.ttf 20 c 24.6815 37.8587 76 } -8.5049 19.1675 54.8215 -Impact.ttf 20 c 24.6815 37.8587 77 , 28.8388 8.4302 14.9477 -Impact.ttf 20 c 24.6815 37.8587 78 I -8.4026 11.6430 46.1413 -Impact.ttf 20 c 24.6815 37.8587 79 ° -9.1708 18.0163 18.0163 -Impact.ttf 20 c 24.6815 37.8587 80 K -8.1986 30.3570 46.1413 -Impact.ttf 20 c 24.6815 37.8587 81 H -8.1380 27.2192 46.1413 -Impact.ttf 20 c 24.6815 37.8587 82 q 0.1548 25.8600 43.1785 -Impact.ttf 20 c 24.6815 37.8587 83 & -0.1730 33.5925 37.8587 -Impact.ttf 20 c 24.6815 37.8587 84 ’ -8.2371 8.4302 14.9477 -Impact.ttf 20 c 24.6815 37.8587 85 [ -8.0976 13.3942 46.1413 -Impact.ttf 20 c 24.6815 37.8587 86 - 14.7165 14.8785 7.9267 -Impact.ttf 20 c 24.6815 37.8587 87 Y -8.5393 27.6250 46.1413 -Impact.ttf 20 c 24.6815 37.8587 88 Q -9.2027 26.8215 52.3395 -Impact.ttf 20 c 24.6815 37.8587 89 " -8.3635 19.7175 14.0000 -Impact.ttf 20 c 24.6815 37.8587 90 ! -8.0926 12.8215 46.1413 -Impact.ttf 20 c 24.6815 37.8587 91 x -0.1588 25.1760 37.8587 -Impact.ttf 20 c 24.6815 37.8587 92 ) -8.0544 14.9285 46.1413 -Impact.ttf 20 c 24.6815 37.8587 93 = 6.7784 27.6670 16.7320 -Impact.ttf 20 c 24.6815 37.8587 94 + 1.4104 27.1773 27.1773 -Impact.ttf 20 c 24.6815 37.8587 95 X -8.4591 29.6400 46.1413 -Impact.ttf 20 c 24.6815 37.8587 96 » 1.5975 19.6198 32.7140 -Impact.ttf 20 c 24.6815 37.8587 97 ' -8.1031 8.6802 14.0000 -Impact.ttf 20 c 24.6815 37.8587 98 ¢ -8.2589 25.8600 49.5017 -Impact.ttf 20 c 24.6815 37.8587 99 Z -8.7460 22.6245 46.1413 -Impact.ttf 20 c 24.6815 37.8587 100 > 0.1234 27.6670 29.1785 -Impact.ttf 20 c 24.6815 37.8587 101 ® -5.6144 43.1785 43.3035 -Impact.ttf 20 c 24.6815 37.8587 102 © -4.1770 43.1785 42.0000 -Impact.ttf 20 c 24.6815 37.8587 103 ] -8.3459 13.3942 46.1413 -Impact.ttf 20 c 24.6815 37.8587 104 é -9.6400 25.5600 47.5698 -Impact.ttf 20 c 24.6815 37.8587 105 z -0.1169 19.3198 37.8587 -Impact.ttf 20 c 24.6815 37.8587 106 _ 42.4868 32.1413 2.8378 -Impact.ttf 20 c 24.6815 37.8587 107 ¥ -8.0345 27.6250 46.1413 -Impact.ttf 21 u 25.8600 37.8587 1 t -5.3313 17.0878 43.1785 -Impact.ttf 21 u 25.8600 37.8587 2 h -8.4303 25.8600 46.1413 -Impact.ttf 21 u 25.8600 37.8587 3 a 0.1196 24.6815 37.8587 -Impact.ttf 21 u 25.8600 37.8587 4 n 0.0774 25.8600 37.8587 -Impact.ttf 21 u 25.8600 37.8587 5 P -8.3613 25.1622 46.1413 -Impact.ttf 21 u 25.8600 37.8587 6 o 0.0474 25.5600 37.8587 -Impact.ttf 21 u 25.8600 37.8587 7 e 0.1492 25.5600 37.8587 -Impact.ttf 21 u 25.8600 37.8587 8 : 7.7488 8.6802 30.3570 -Impact.ttf 21 u 25.8600 37.8587 9 r 0.1599 17.9105 37.8587 -Impact.ttf 21 u 25.8600 37.8587 10 l -8.1500 11.1622 46.1413 -Impact.ttf 21 u 25.8600 37.8587 11 i -8.3137 11.1622 46.1413 -Impact.ttf 21 u 25.8600 37.8587 12 1 -8.3780 19.5925 46.1413 -Impact.ttf 21 u 25.8600 37.8587 13 | -8.2013 5.8425 53.6430 -Impact.ttf 21 u 25.8600 37.8587 14 N -8.2340 26.3407 46.1413 -Impact.ttf 21 u 25.8600 37.8587 15 f -8.6222 15.6593 46.1413 -Impact.ttf 21 u 25.8600 37.8587 16 g 0.2683 25.8600 44.3570 -Impact.ttf 21 u 25.8600 37.8587 17 d -8.3752 25.8600 46.1413 -Impact.ttf 21 u 25.8600 37.8587 18 W -8.2903 46.2890 46.1413 -Impact.ttf 21 u 25.8600 37.8587 19 s 0.2085 23.5030 37.8587 -Impact.ttf 21 u 25.8600 37.8587 20 c 0.0228 24.6815 37.8587 -Impact.ttf 21 u 25.8600 37.8587 21 u 0.1626 25.8600 37.8587 -Impact.ttf 21 u 25.8600 37.8587 22 3 -9.3534 25.7680 47.8983 -Impact.ttf 21 u 25.8600 37.8587 23 ~ 7.1298 26.7885 12.8907 -Impact.ttf 21 u 25.8600 37.8587 24 # -3.1501 34.6652 41.1215 -Impact.ttf 21 u 25.8600 37.8587 25 O -9.2949 26.8215 47.8983 -Impact.ttf 21 u 25.8600 37.8587 26 ` -13.2382 15.1785 7.9267 -Impact.ttf 21 u 25.8600 37.8587 27 @ -9.3489 43.1785 48.8040 -Impact.ttf 21 u 25.8600 37.8587 28 F -8.4248 20.2675 46.1413 -Impact.ttf 21 u 25.8600 37.8587 29 S -8.8134 27.5192 47.8983 -Impact.ttf 21 u 25.8600 37.8587 30 p 0.1389 25.8600 43.1785 -Impact.ttf 21 u 25.8600 37.8587 31 “ -8.2970 19.2175 14.9477 -Impact.ttf 21 u 25.8600 37.8587 32 % -9.2509 37.9837 47.0198 -Impact.ttf 21 u 25.8600 37.8587 33 £ -9.0095 28.2727 47.0198 -Impact.ttf 21 u 25.8600 37.8587 34 . 28.6124 8.6802 9.3360 -Impact.ttf 21 u 25.8600 37.8587 35 2 -9.4390 23.9837 47.0198 -Impact.ttf 21 u 25.8600 37.8587 36 5 -8.3725 26.3407 47.0198 -Impact.ttf 21 u 25.8600 37.8587 37 m 0.0348 40.4657 37.8587 -Impact.ttf 21 u 25.8600 37.8587 38 V -8.2241 31.0355 46.1413 -Impact.ttf 21 u 25.8600 37.8587 39 6 -8.9354 26.3407 47.8983 -Impact.ttf 21 u 25.8600 37.8587 40 w 0.3809 38.9680 37.8587 -Impact.ttf 21 u 25.8600 37.8587 41 T -8.3586 26.3407 46.1413 -Impact.ttf 21 u 25.8600 37.8587 42 M -8.2022 36.8052 46.1413 -Impact.ttf 21 u 25.8600 37.8587 43 G -9.2533 26.9465 47.8983 -Impact.ttf 21 u 25.8600 37.8587 44 b -8.1868 25.8600 46.1413 -Impact.ttf 21 u 25.8600 37.8587 45 9 -9.0715 26.3407 47.8983 -Impact.ttf 21 u 25.8600 37.8587 46 ; 7.2823 8.6802 36.1995 -Impact.ttf 21 u 25.8600 37.8587 47 D -7.9131 26.9465 46.1413 -Impact.ttf 21 u 25.8600 37.8587 48 L -8.1551 18.8948 46.1413 -Impact.ttf 21 u 25.8600 37.8587 49 y -0.4550 27.3942 43.1785 -Impact.ttf 21 u 25.8600 37.8587 50 ‘ -8.3780 8.4302 14.9477 -Impact.ttf 21 u 25.8600 37.8587 51 \ -9.3406 23.9087 48.3733 -Impact.ttf 21 u 25.8600 37.8587 52 R -8.2339 26.3407 46.1413 -Impact.ttf 21 u 25.8600 37.8587 53 < -0.1690 27.6670 29.1785 -Impact.ttf 21 u 25.8600 37.8587 54 4 -8.4400 28.6977 46.1413 -Impact.ttf 21 u 25.8600 37.8587 55 8 -8.7027 26.0407 47.8983 -Impact.ttf 21 u 25.8600 37.8587 56 0 -9.2352 26.3407 47.8983 -Impact.ttf 21 u 25.8600 37.8587 57 A -8.6951 31.5355 46.1413 -Impact.ttf 21 u 25.8600 37.8587 58 E -8.3617 20.4483 46.1413 -Impact.ttf 21 u 25.8600 37.8587 59 B -8.3507 26.9465 46.1413 -Impact.ttf 21 u 25.8600 37.8587 60 v -0.0774 26.8215 37.8587 -Impact.ttf 21 u 25.8600 37.8587 61 k -8.0720 25.7680 46.1413 -Impact.ttf 21 u 25.8600 37.8587 62 J -7.9960 16.2320 46.1413 -Impact.ttf 21 u 25.8600 37.8587 63 U -8.3720 26.8215 47.0198 -Impact.ttf 21 u 25.8600 37.8587 64 j -8.4099 13.7692 51.4610 -Impact.ttf 21 u 25.8600 37.8587 65 ( -7.8145 14.9285 46.1413 -Impact.ttf 21 u 25.8600 37.8587 66 7 -8.3178 22.3245 46.1413 -Impact.ttf 21 u 25.8600 37.8587 67 § -9.3936 25.6430 53.5180 -Impact.ttf 21 u 25.8600 37.8587 68 $ -11.7798 26.8215 54.0680 -Impact.ttf 21 u 25.8600 37.8587 69 € -9.1077 28.6058 47.8983 -Impact.ttf 21 u 25.8600 37.8587 70 / -9.3443 22.7302 48.3733 -Impact.ttf 21 u 25.8600 37.8587 71 C -8.6614 26.9465 47.8983 -Impact.ttf 21 u 25.8600 37.8587 72 * -8.1691 15.4705 13.7692 -Impact.ttf 21 u 25.8600 37.8587 73 ” -8.2904 19.2175 14.9477 -Impact.ttf 21 u 25.8600 37.8587 74 ? -9.3682 26.8215 47.0198 -Impact.ttf 21 u 25.8600 37.8587 75 { -7.8028 19.1675 54.8215 -Impact.ttf 21 u 25.8600 37.8587 76 } -8.2455 19.1675 54.8215 -Impact.ttf 21 u 25.8600 37.8587 77 , 28.9476 8.4302 14.9477 -Impact.ttf 21 u 25.8600 37.8587 78 I -8.4993 11.6430 46.1413 -Impact.ttf 21 u 25.8600 37.8587 79 ° -9.0813 18.0163 18.0163 -Impact.ttf 21 u 25.8600 37.8587 80 K -8.1167 30.3570 46.1413 -Impact.ttf 21 u 25.8600 37.8587 81 H -8.6204 27.2192 46.1413 -Impact.ttf 21 u 25.8600 37.8587 82 q 0.0534 25.8600 43.1785 -Impact.ttf 21 u 25.8600 37.8587 83 & -0.3457 33.5925 37.8587 -Impact.ttf 21 u 25.8600 37.8587 84 ’ -8.1551 8.4302 14.9477 -Impact.ttf 21 u 25.8600 37.8587 85 [ -8.2371 13.3942 46.1413 -Impact.ttf 21 u 25.8600 37.8587 86 - 14.9259 14.8785 7.9267 -Impact.ttf 21 u 25.8600 37.8587 87 Y -8.2381 27.6250 46.1413 -Impact.ttf 21 u 25.8600 37.8587 88 Q -9.2411 26.8215 52.3395 -Impact.ttf 21 u 25.8600 37.8587 89 " -8.3196 19.7175 14.0000 -Impact.ttf 21 u 25.8600 37.8587 90 ! -8.3538 12.8215 46.1413 -Impact.ttf 21 u 25.8600 37.8587 91 x -0.0555 25.1760 37.8587 -Impact.ttf 21 u 25.8600 37.8587 92 ) -8.1124 14.9285 46.1413 -Impact.ttf 21 u 25.8600 37.8587 93 = 6.4341 27.6670 16.7320 -Impact.ttf 21 u 25.8600 37.8587 94 + 1.8292 27.1773 27.1773 -Impact.ttf 21 u 25.8600 37.8587 95 X -8.1559 29.6400 46.1413 -Impact.ttf 21 u 25.8600 37.8587 96 » 1.5289 19.6198 32.7140 -Impact.ttf 21 u 25.8600 37.8587 97 ' -8.2231 8.6802 14.0000 -Impact.ttf 21 u 25.8600 37.8587 98 ¢ -8.2002 25.8600 49.5017 -Impact.ttf 21 u 25.8600 37.8587 99 Z -8.2612 22.6245 46.1413 -Impact.ttf 21 u 25.8600 37.8587 100 > -0.2080 27.6670 29.1785 -Impact.ttf 21 u 25.8600 37.8587 101 ® -5.4493 43.1785 43.3035 -Impact.ttf 21 u 25.8600 37.8587 102 © -4.2270 43.1785 42.0000 -Impact.ttf 21 u 25.8600 37.8587 103 ] -8.2871 13.3942 46.1413 -Impact.ttf 21 u 25.8600 37.8587 104 é -9.6721 25.5600 47.5698 -Impact.ttf 21 u 25.8600 37.8587 105 z 0.1182 19.3198 37.8587 -Impact.ttf 21 u 25.8600 37.8587 106 _ 42.4363 32.1413 2.8378 -Impact.ttf 21 u 25.8600 37.8587 107 ¥ -8.3468 27.6250 46.1413 -Impact.ttf 22 3 25.7680 47.8983 1 t 3.8936 17.0878 43.1785 -Impact.ttf 22 3 25.7680 47.8983 2 h 0.7145 25.8600 46.1413 -Impact.ttf 22 3 25.7680 47.8983 3 a 8.9487 24.6815 37.8587 -Impact.ttf 22 3 25.7680 47.8983 4 n 9.2121 25.8600 37.8587 -Impact.ttf 22 3 25.7680 47.8983 5 P 0.7854 25.1622 46.1413 -Impact.ttf 22 3 25.7680 47.8983 6 o 9.0753 25.5600 37.8587 -Impact.ttf 22 3 25.7680 47.8983 7 e 9.1110 25.5600 37.8587 -Impact.ttf 22 3 25.7680 47.8983 8 : 16.5437 8.6802 30.3570 -Impact.ttf 22 3 25.7680 47.8983 9 r 9.0957 17.9105 37.8587 -Impact.ttf 22 3 25.7680 47.8983 10 l 0.7386 11.1622 46.1413 -Impact.ttf 22 3 25.7680 47.8983 11 i 1.0626 11.1622 46.1413 -Impact.ttf 22 3 25.7680 47.8983 12 1 0.9261 19.5925 46.1413 -Impact.ttf 22 3 25.7680 47.8983 13 | 1.0606 5.8425 53.6430 -Impact.ttf 22 3 25.7680 47.8983 14 N 0.8588 26.3407 46.1413 -Impact.ttf 22 3 25.7680 47.8983 15 f 0.8060 15.6593 46.1413 -Impact.ttf 22 3 25.7680 47.8983 16 g 8.9784 25.8600 44.3570 -Impact.ttf 22 3 25.7680 47.8983 17 d 0.5777 25.8600 46.1413 -Impact.ttf 22 3 25.7680 47.8983 18 W 0.7232 46.2890 46.1413 -Impact.ttf 22 3 25.7680 47.8983 19 s 8.8959 23.5030 37.8587 -Impact.ttf 22 3 25.7680 47.8983 20 c 9.2626 24.6815 37.8587 -Impact.ttf 22 3 25.7680 47.8983 21 u 9.5789 25.8600 37.8587 -Impact.ttf 22 3 25.7680 47.8983 22 3 0.0283 25.7680 47.8983 -Impact.ttf 22 3 25.7680 47.8983 23 ~ 16.3046 26.7885 12.8907 -Impact.ttf 22 3 25.7680 47.8983 24 # 5.8384 34.6652 41.1215 -Impact.ttf 22 3 25.7680 47.8983 25 O -0.1664 26.8215 47.8983 -Impact.ttf 22 3 25.7680 47.8983 26 ` -3.9432 15.1785 7.9267 -Impact.ttf 22 3 25.7680 47.8983 27 @ 0.0482 43.1785 48.8040 -Impact.ttf 22 3 25.7680 47.8983 28 F 0.6607 20.2675 46.1413 -Impact.ttf 22 3 25.7680 47.8983 29 S -0.0995 27.5192 47.8983 -Impact.ttf 22 3 25.7680 47.8983 30 p 8.9242 25.8600 43.1785 -Impact.ttf 22 3 25.7680 47.8983 31 “ 0.7677 19.2175 14.9477 -Impact.ttf 22 3 25.7680 47.8983 32 % 0.0111 37.9837 47.0198 -Impact.ttf 22 3 25.7680 47.8983 33 £ -0.2827 28.2727 47.0198 -Impact.ttf 22 3 25.7680 47.8983 34 . 37.6810 8.6802 9.3360 -Impact.ttf 22 3 25.7680 47.8983 35 2 -0.3647 23.9837 47.0198 -Impact.ttf 22 3 25.7680 47.8983 36 5 1.0759 26.3407 47.0198 -Impact.ttf 22 3 25.7680 47.8983 37 m 9.0044 40.4657 37.8587 -Impact.ttf 22 3 25.7680 47.8983 38 V 0.6627 31.0355 46.1413 -Impact.ttf 22 3 25.7680 47.8983 39 6 -0.1631 26.3407 47.8983 -Impact.ttf 22 3 25.7680 47.8983 40 w 9.4378 38.9680 37.8587 -Impact.ttf 22 3 25.7680 47.8983 41 T 0.8844 26.3407 46.1413 -Impact.ttf 22 3 25.7680 47.8983 42 M 0.8896 36.8052 46.1413 -Impact.ttf 22 3 25.7680 47.8983 43 G 0.1367 26.9465 47.8983 -Impact.ttf 22 3 25.7680 47.8983 44 b 0.8182 25.8600 46.1413 -Impact.ttf 22 3 25.7680 47.8983 45 9 -0.0274 26.3407 47.8983 -Impact.ttf 22 3 25.7680 47.8983 46 ; 16.7189 8.6802 36.1995 -Impact.ttf 22 3 25.7680 47.8983 47 D 0.9812 26.9465 46.1413 -Impact.ttf 22 3 25.7680 47.8983 48 L 0.8400 18.8948 46.1413 -Impact.ttf 22 3 25.7680 47.8983 49 y 9.0766 27.3942 43.1785 -Impact.ttf 22 3 25.7680 47.8983 50 ‘ 0.5420 8.4302 14.9477 -Impact.ttf 22 3 25.7680 47.8983 51 \ -0.1565 23.9087 48.3733 -Impact.ttf 22 3 25.7680 47.8983 52 R 0.8403 26.3407 46.1413 -Impact.ttf 22 3 25.7680 47.8983 53 < 8.9836 27.6670 29.1785 -Impact.ttf 22 3 25.7680 47.8983 54 4 0.9253 28.6977 46.1413 -Impact.ttf 22 3 25.7680 47.8983 55 8 0.0908 26.0407 47.8983 -Impact.ttf 22 3 25.7680 47.8983 56 0 -0.1696 26.3407 47.8983 -Impact.ttf 22 3 25.7680 47.8983 57 A 0.8113 31.5355 46.1413 -Impact.ttf 22 3 25.7680 47.8983 58 E 1.0222 20.4483 46.1413 -Impact.ttf 22 3 25.7680 47.8983 59 B 0.8257 26.9465 46.1413 -Impact.ttf 22 3 25.7680 47.8983 60 v 9.0341 26.8215 37.8587 -Impact.ttf 22 3 25.7680 47.8983 61 k 0.9712 25.7680 46.1413 -Impact.ttf 22 3 25.7680 47.8983 62 J 0.7505 16.2320 46.1413 -Impact.ttf 22 3 25.7680 47.8983 63 U 0.6801 26.8215 47.0198 -Impact.ttf 22 3 25.7680 47.8983 64 j 0.7621 13.7692 51.4610 -Impact.ttf 22 3 25.7680 47.8983 65 ( 0.8604 14.9285 46.1413 -Impact.ttf 22 3 25.7680 47.8983 66 7 0.8473 22.3245 46.1413 -Impact.ttf 22 3 25.7680 47.8983 67 § 0.0188 25.6430 53.5180 -Impact.ttf 22 3 25.7680 47.8983 68 $ -3.0739 26.8215 54.0680 -Impact.ttf 22 3 25.7680 47.8983 69 € 0.2503 28.6058 47.8983 -Impact.ttf 22 3 25.7680 47.8983 70 / -0.1833 22.7302 48.3733 -Impact.ttf 22 3 25.7680 47.8983 71 C -0.2108 26.9465 47.8983 -Impact.ttf 22 3 25.7680 47.8983 72 * 0.8957 15.4705 13.7692 -Impact.ttf 22 3 25.7680 47.8983 73 ” 0.7200 19.2175 14.9477 -Impact.ttf 22 3 25.7680 47.8983 74 ? 0.1243 26.8215 47.0198 -Impact.ttf 22 3 25.7680 47.8983 75 { 0.6102 19.1675 54.8215 -Impact.ttf 22 3 25.7680 47.8983 76 } 0.8455 19.1675 54.8215 -Impact.ttf 22 3 25.7680 47.8983 77 , 38.0414 8.4302 14.9477 -Impact.ttf 22 3 25.7680 47.8983 78 I 1.0027 11.6430 46.1413 -Impact.ttf 22 3 25.7680 47.8983 79 ° -0.1613 18.0163 18.0163 -Impact.ttf 22 3 25.7680 47.8983 80 K 1.0870 30.3570 46.1413 -Impact.ttf 22 3 25.7680 47.8983 81 H 0.5959 27.2192 46.1413 -Impact.ttf 22 3 25.7680 47.8983 82 q 9.0785 25.8600 43.1785 -Impact.ttf 22 3 25.7680 47.8983 83 & 9.0479 33.5925 37.8587 -Impact.ttf 22 3 25.7680 47.8983 84 ’ 1.0723 8.4302 14.9477 -Impact.ttf 22 3 25.7680 47.8983 85 [ 0.9299 13.3942 46.1413 -Impact.ttf 22 3 25.7680 47.8983 86 - 23.7351 14.8785 7.9267 -Impact.ttf 22 3 25.7680 47.8983 87 Y 0.4355 27.6250 46.1413 -Impact.ttf 22 3 25.7680 47.8983 88 Q 0.0774 26.8215 52.3395 -Impact.ttf 22 3 25.7680 47.8983 89 " 0.7127 19.7175 14.0000 -Impact.ttf 22 3 25.7680 47.8983 90 ! 0.8757 12.8215 46.1413 -Impact.ttf 22 3 25.7680 47.8983 91 x 9.2083 25.1760 37.8587 -Impact.ttf 22 3 25.7680 47.8983 92 ) 0.6213 14.9285 46.1413 -Impact.ttf 22 3 25.7680 47.8983 93 = 15.9210 27.6670 16.7320 -Impact.ttf 22 3 25.7680 47.8983 94 + 10.6103 27.1773 27.1773 -Impact.ttf 22 3 25.7680 47.8983 95 X 1.1950 29.6400 46.1413 -Impact.ttf 22 3 25.7680 47.8983 96 » 10.2547 19.6198 32.7140 -Impact.ttf 22 3 25.7680 47.8983 97 ' 0.6432 8.6802 14.0000 -Impact.ttf 22 3 25.7680 47.8983 98 ¢ 0.8041 25.8600 49.5017 -Impact.ttf 22 3 25.7680 47.8983 99 Z 0.6699 22.6245 46.1413 -Impact.ttf 22 3 25.7680 47.8983 100 > 8.9216 27.6670 29.1785 -Impact.ttf 22 3 25.7680 47.8983 101 ® 3.9031 43.1785 43.3035 -Impact.ttf 22 3 25.7680 47.8983 102 © 5.1654 43.1785 42.0000 -Impact.ttf 22 3 25.7680 47.8983 103 ] 0.6392 13.3942 46.1413 -Impact.ttf 22 3 25.7680 47.8983 104 é -0.5500 25.5600 47.5698 -Impact.ttf 22 3 25.7680 47.8983 105 z 9.3458 19.3198 37.8587 -Impact.ttf 22 3 25.7680 47.8983 106 _ 51.3884 32.1413 2.8378 -Impact.ttf 22 3 25.7680 47.8983 107 ¥ 0.8900 27.6250 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 1 t -12.7072 17.0878 43.1785 -Impact.ttf 23 ~ 26.7885 12.8907 2 h -15.2548 25.8600 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 3 a -7.1298 24.6815 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 4 n -7.1583 25.8600 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 5 P -15.7088 25.1622 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 6 o -7.3539 25.5600 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 7 e -7.1941 25.5600 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 8 : 0.0064 8.6802 30.3570 -Impact.ttf 23 ~ 26.7885 12.8907 9 r -7.2150 17.9105 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 10 l -15.6392 11.1622 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 11 i -15.3900 11.1622 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 12 1 -15.3032 19.5925 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 13 | -15.5554 5.8425 53.6430 -Impact.ttf 23 ~ 26.7885 12.8907 14 N -15.6815 26.3407 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 15 f -15.4150 15.6593 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 16 g -7.3411 25.8600 44.3570 -Impact.ttf 23 ~ 26.7885 12.8907 17 d -15.2342 25.8600 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 18 W -15.4112 46.2890 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 19 s -7.0226 23.5030 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 20 c -6.8970 24.6815 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 21 u -7.4777 25.8600 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 22 3 -16.4177 25.7680 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 23 ~ 0.2387 26.7885 12.8907 -Impact.ttf 23 ~ 26.7885 12.8907 24 # -10.5227 34.6652 41.1215 -Impact.ttf 23 ~ 26.7885 12.8907 25 O -16.0683 26.8215 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 26 ` -20.3679 15.1785 7.9267 -Impact.ttf 23 ~ 26.7885 12.8907 27 @ -16.5892 43.1785 48.8040 -Impact.ttf 23 ~ 26.7885 12.8907 28 F -15.5781 20.2675 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 29 S -16.3833 27.5192 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 30 p -7.2280 25.8600 43.1785 -Impact.ttf 23 ~ 26.7885 12.8907 31 “ -15.2825 19.2175 14.9477 -Impact.ttf 23 ~ 26.7885 12.8907 32 % -16.1984 37.9837 47.0198 -Impact.ttf 23 ~ 26.7885 12.8907 33 £ -16.1641 28.2727 47.0198 -Impact.ttf 23 ~ 26.7885 12.8907 34 . 21.2686 8.6802 9.3360 -Impact.ttf 23 ~ 26.7885 12.8907 35 2 -16.4664 23.9837 47.0198 -Impact.ttf 23 ~ 26.7885 12.8907 36 5 -15.5734 26.3407 47.0198 -Impact.ttf 23 ~ 26.7885 12.8907 37 m -7.3339 40.4657 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 38 V -15.3097 31.0355 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 39 6 -16.2083 26.3407 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 40 w -7.3262 38.9680 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 41 T -15.0840 26.3407 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 42 M -15.5080 36.8052 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 43 G -16.5066 26.9465 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 44 b -15.3009 25.8600 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 45 9 -16.4630 26.3407 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 46 ; 0.2566 8.6802 36.1995 -Impact.ttf 23 ~ 26.7885 12.8907 47 D -15.3591 26.9465 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 48 L -15.3839 18.8948 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 49 y -7.2696 27.3942 43.1785 -Impact.ttf 23 ~ 26.7885 12.8907 50 ‘ -15.4682 8.4302 14.9477 -Impact.ttf 23 ~ 26.7885 12.8907 51 \ -16.5793 23.9087 48.3733 -Impact.ttf 23 ~ 26.7885 12.8907 52 R -15.6736 26.3407 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 53 < -7.1666 27.6670 29.1785 -Impact.ttf 23 ~ 26.7885 12.8907 54 4 -15.3836 28.6977 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 55 8 -16.3671 26.0407 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 56 0 -16.1804 26.3407 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 57 A -15.7126 31.5355 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 58 E -15.6426 20.4483 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 59 B -15.3609 26.9465 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 60 v -7.2637 26.8215 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 61 k -15.4280 25.7680 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 62 J -15.5507 16.2320 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 63 U -15.8005 26.8215 47.0198 -Impact.ttf 23 ~ 26.7885 12.8907 64 j -15.4567 13.7692 51.4610 -Impact.ttf 23 ~ 26.7885 12.8907 65 ( -15.4647 14.9285 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 66 7 -15.2069 22.3245 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 67 § -16.3379 25.6430 53.5180 -Impact.ttf 23 ~ 26.7885 12.8907 68 $ -19.4478 26.8215 54.0680 -Impact.ttf 23 ~ 26.7885 12.8907 69 € -16.4533 28.6058 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 70 / -16.7294 22.7302 48.3733 -Impact.ttf 23 ~ 26.7885 12.8907 71 C -16.3051 26.9465 47.8983 -Impact.ttf 23 ~ 26.7885 12.8907 72 * -15.7023 15.4705 13.7692 -Impact.ttf 23 ~ 26.7885 12.8907 73 ” -15.4766 19.2175 14.9477 -Impact.ttf 23 ~ 26.7885 12.8907 74 ? -15.9956 26.8215 47.0198 -Impact.ttf 23 ~ 26.7885 12.8907 75 { -15.3066 19.1675 54.8215 -Impact.ttf 23 ~ 26.7885 12.8907 76 } -15.3366 19.1675 54.8215 -Impact.ttf 23 ~ 26.7885 12.8907 77 , 21.6877 8.4302 14.9477 -Impact.ttf 23 ~ 26.7885 12.8907 78 I -15.6730 11.6430 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 79 ° -16.2513 18.0163 18.0163 -Impact.ttf 23 ~ 26.7885 12.8907 80 K -15.3936 30.3570 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 81 H -15.5160 27.2192 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 82 q -7.2664 25.8600 43.1785 -Impact.ttf 23 ~ 26.7885 12.8907 83 & -7.2469 33.5925 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 84 ’ -15.4051 8.4302 14.9477 -Impact.ttf 23 ~ 26.7885 12.8907 85 [ -15.8256 13.3942 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 86 - 7.3039 14.8785 7.9267 -Impact.ttf 23 ~ 26.7885 12.8907 87 Y -15.4696 27.6250 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 88 Q -16.3703 26.8215 52.3395 -Impact.ttf 23 ~ 26.7885 12.8907 89 " -15.4865 19.7175 14.0000 -Impact.ttf 23 ~ 26.7885 12.8907 90 ! -15.3951 12.8215 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 91 x -7.2984 25.1760 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 92 ) -15.5484 14.9285 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 93 = -0.5710 27.6670 16.7320 -Impact.ttf 23 ~ 26.7885 12.8907 94 + -5.7407 27.1773 27.1773 -Impact.ttf 23 ~ 26.7885 12.8907 95 X -15.5819 29.6400 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 96 » -5.7078 19.6198 32.7140 -Impact.ttf 23 ~ 26.7885 12.8907 97 ' -15.3519 8.6802 14.0000 -Impact.ttf 23 ~ 26.7885 12.8907 98 ¢ -15.2686 25.8600 49.5017 -Impact.ttf 23 ~ 26.7885 12.8907 99 Z -15.3024 22.6245 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 100 > -7.1894 27.6670 29.1785 -Impact.ttf 23 ~ 26.7885 12.8907 101 ® -12.4503 43.1785 43.3035 -Impact.ttf 23 ~ 26.7885 12.8907 102 © -11.3882 43.1785 42.0000 -Impact.ttf 23 ~ 26.7885 12.8907 103 ] -15.5239 13.3942 46.1413 -Impact.ttf 23 ~ 26.7885 12.8907 104 é -16.9676 25.5600 47.5698 -Impact.ttf 23 ~ 26.7885 12.8907 105 z -7.0799 19.3198 37.8587 -Impact.ttf 23 ~ 26.7885 12.8907 106 _ 35.1956 32.1413 2.8378 -Impact.ttf 23 ~ 26.7885 12.8907 107 ¥ -15.2357 27.6250 46.1413 -Impact.ttf 24 # 34.6652 41.1215 1 t -1.8049 17.0878 43.1785 -Impact.ttf 24 # 34.6652 41.1215 2 h -5.1780 25.8600 46.1413 -Impact.ttf 24 # 34.6652 41.1215 3 a 3.5051 24.6815 37.8587 -Impact.ttf 24 # 34.6652 41.1215 4 n 3.1612 25.8600 37.8587 -Impact.ttf 24 # 34.6652 41.1215 5 P -5.4767 25.1622 46.1413 -Impact.ttf 24 # 34.6652 41.1215 6 o 3.3068 25.5600 37.8587 -Impact.ttf 24 # 34.6652 41.1215 7 e 3.0886 25.5600 37.8587 -Impact.ttf 24 # 34.6652 41.1215 8 : 10.3947 8.6802 30.3570 -Impact.ttf 24 # 34.6652 41.1215 9 r 3.0727 17.9105 37.8587 -Impact.ttf 24 # 34.6652 41.1215 10 l -4.9358 11.1622 46.1413 -Impact.ttf 24 # 34.6652 41.1215 11 i -5.2650 11.1622 46.1413 -Impact.ttf 24 # 34.6652 41.1215 12 1 -4.9238 19.5925 46.1413 -Impact.ttf 24 # 34.6652 41.1215 13 | -4.8176 5.8425 53.6430 -Impact.ttf 24 # 34.6652 41.1215 14 N -5.1829 26.3407 46.1413 -Impact.ttf 24 # 34.6652 41.1215 15 f -5.2051 15.6593 46.1413 -Impact.ttf 24 # 34.6652 41.1215 16 g 3.4870 25.8600 44.3570 -Impact.ttf 24 # 34.6652 41.1215 17 d -5.1663 25.8600 46.1413 -Impact.ttf 24 # 34.6652 41.1215 18 W -5.1616 46.2890 46.1413 -Impact.ttf 24 # 34.6652 41.1215 19 s 3.4920 23.5030 37.8587 -Impact.ttf 24 # 34.6652 41.1215 20 c 3.2673 24.6815 37.8587 -Impact.ttf 24 # 34.6652 41.1215 21 u 3.2906 25.8600 37.8587 -Impact.ttf 24 # 34.6652 41.1215 22 3 -5.6288 25.7680 47.8983 -Impact.ttf 24 # 34.6652 41.1215 23 ~ 10.7131 26.7885 12.8907 -Impact.ttf 24 # 34.6652 41.1215 24 # 0.0363 34.6652 41.1215 -Impact.ttf 24 # 34.6652 41.1215 25 O -5.9195 26.8215 47.8983 -Impact.ttf 24 # 34.6652 41.1215 26 ` -9.7399 15.1785 7.9267 -Impact.ttf 24 # 34.6652 41.1215 27 @ -5.7727 43.1785 48.8040 -Impact.ttf 24 # 34.6652 41.1215 28 F -5.3043 20.2675 46.1413 -Impact.ttf 24 # 34.6652 41.1215 29 S -5.8853 27.5192 47.8983 -Impact.ttf 24 # 34.6652 41.1215 30 p 3.0449 25.8600 43.1785 -Impact.ttf 24 # 34.6652 41.1215 31 “ -4.8743 19.2175 14.9477 -Impact.ttf 24 # 34.6652 41.1215 32 % -5.8026 37.9837 47.0198 -Impact.ttf 24 # 34.6652 41.1215 33 £ -5.8913 28.2727 47.0198 -Impact.ttf 24 # 34.6652 41.1215 34 . 31.8039 8.6802 9.3360 -Impact.ttf 24 # 34.6652 41.1215 35 2 -5.9275 23.9837 47.0198 -Impact.ttf 24 # 34.6652 41.1215 36 5 -4.9813 26.3407 47.0198 -Impact.ttf 24 # 34.6652 41.1215 37 m 3.2308 40.4657 37.8587 -Impact.ttf 24 # 34.6652 41.1215 38 V -4.8080 31.0355 46.1413 -Impact.ttf 24 # 34.6652 41.1215 39 6 -5.7903 26.3407 47.8983 -Impact.ttf 24 # 34.6652 41.1215 40 w 3.2175 38.9680 37.8587 -Impact.ttf 24 # 34.6652 41.1215 41 T -5.2324 26.3407 46.1413 -Impact.ttf 24 # 34.6652 41.1215 42 M -5.2227 36.8052 46.1413 -Impact.ttf 24 # 34.6652 41.1215 43 G -5.8213 26.9465 47.8983 -Impact.ttf 24 # 34.6652 41.1215 44 b -5.0614 25.8600 46.1413 -Impact.ttf 24 # 34.6652 41.1215 45 9 -5.6026 26.3407 47.8983 -Impact.ttf 24 # 34.6652 41.1215 46 ; 10.8034 8.6802 36.1995 -Impact.ttf 24 # 34.6652 41.1215 47 D -4.7291 26.9465 46.1413 -Impact.ttf 24 # 34.6652 41.1215 48 L -5.2680 18.8948 46.1413 -Impact.ttf 24 # 34.6652 41.1215 49 y 3.4058 27.3942 43.1785 -Impact.ttf 24 # 34.6652 41.1215 50 ‘ -5.2538 8.4302 14.9477 -Impact.ttf 24 # 34.6652 41.1215 51 \ -5.9536 23.9087 48.3733 -Impact.ttf 24 # 34.6652 41.1215 52 R -5.1152 26.3407 46.1413 -Impact.ttf 24 # 34.6652 41.1215 53 < 3.3465 27.6670 29.1785 -Impact.ttf 24 # 34.6652 41.1215 54 4 -4.9582 28.6977 46.1413 -Impact.ttf 24 # 34.6652 41.1215 55 8 -5.9052 26.0407 47.8983 -Impact.ttf 24 # 34.6652 41.1215 56 0 -5.9809 26.3407 47.8983 -Impact.ttf 24 # 34.6652 41.1215 57 A -4.8886 31.5355 46.1413 -Impact.ttf 24 # 34.6652 41.1215 58 E -5.2648 20.4483 46.1413 -Impact.ttf 24 # 34.6652 41.1215 59 B -4.9396 26.9465 46.1413 -Impact.ttf 24 # 34.6652 41.1215 60 v 3.0695 26.8215 37.8587 -Impact.ttf 24 # 34.6652 41.1215 61 k -5.0648 25.7680 46.1413 -Impact.ttf 24 # 34.6652 41.1215 62 J -4.9924 16.2320 46.1413 -Impact.ttf 24 # 34.6652 41.1215 63 U -4.9743 26.8215 47.0198 -Impact.ttf 24 # 34.6652 41.1215 64 j -5.0652 13.7692 51.4610 -Impact.ttf 24 # 34.6652 41.1215 65 ( -4.8061 14.9285 46.1413 -Impact.ttf 24 # 34.6652 41.1215 66 7 -5.1236 22.3245 46.1413 -Impact.ttf 24 # 34.6652 41.1215 67 § -6.0623 25.6430 53.5180 -Impact.ttf 24 # 34.6652 41.1215 68 $ -8.6346 26.8215 54.0680 -Impact.ttf 24 # 34.6652 41.1215 69 € -6.0441 28.6058 47.8983 -Impact.ttf 24 # 34.6652 41.1215 70 / -6.2114 22.7302 48.3733 -Impact.ttf 24 # 34.6652 41.1215 71 C -6.0396 26.9465 47.8983 -Impact.ttf 24 # 34.6652 41.1215 72 * -4.8009 15.4705 13.7692 -Impact.ttf 24 # 34.6652 41.1215 73 ” -4.8242 19.2175 14.9477 -Impact.ttf 24 # 34.6652 41.1215 74 ? -5.6795 26.8215 47.0198 -Impact.ttf 24 # 34.6652 41.1215 75 { -5.0314 19.1675 54.8215 -Impact.ttf 24 # 34.6652 41.1215 76 } -5.0027 19.1675 54.8215 -Impact.ttf 24 # 34.6652 41.1215 77 , 31.8679 8.4302 14.9477 -Impact.ttf 24 # 34.6652 41.1215 78 I -4.8102 11.6430 46.1413 -Impact.ttf 24 # 34.6652 41.1215 79 ° -5.9826 18.0163 18.0163 -Impact.ttf 24 # 34.6652 41.1215 80 K -4.7205 30.3570 46.1413 -Impact.ttf 24 # 34.6652 41.1215 81 H -5.1186 27.2192 46.1413 -Impact.ttf 24 # 34.6652 41.1215 82 q 3.2882 25.8600 43.1785 -Impact.ttf 24 # 34.6652 41.1215 83 & 3.1686 33.5925 37.8587 -Impact.ttf 24 # 34.6652 41.1215 84 ’ -4.8983 8.4302 14.9477 -Impact.ttf 24 # 34.6652 41.1215 85 [ -4.9230 13.3942 46.1413 -Impact.ttf 24 # 34.6652 41.1215 86 - 18.0254 14.8785 7.9267 -Impact.ttf 24 # 34.6652 41.1215 87 Y -5.0281 27.6250 46.1413 -Impact.ttf 24 # 34.6652 41.1215 88 Q -5.8566 26.8215 52.3395 -Impact.ttf 24 # 34.6652 41.1215 89 " -5.0225 19.7175 14.0000 -Impact.ttf 24 # 34.6652 41.1215 90 ! -5.1009 12.8215 46.1413 -Impact.ttf 24 # 34.6652 41.1215 91 x 3.4592 25.1760 37.8587 -Impact.ttf 24 # 34.6652 41.1215 92 ) -4.7375 14.9285 46.1413 -Impact.ttf 24 # 34.6652 41.1215 93 = 9.8216 27.6670 16.7320 -Impact.ttf 24 # 34.6652 41.1215 94 + 4.6634 27.1773 27.1773 -Impact.ttf 24 # 34.6652 41.1215 95 X -5.0953 29.6400 46.1413 -Impact.ttf 24 # 34.6652 41.1215 96 » 4.7801 19.6198 32.7140 -Impact.ttf 24 # 34.6652 41.1215 97 ' -5.0452 8.6802 14.0000 -Impact.ttf 24 # 34.6652 41.1215 98 ¢ -5.2755 25.8600 49.5017 -Impact.ttf 24 # 34.6652 41.1215 99 Z -4.9011 22.6245 46.1413 -Impact.ttf 24 # 34.6652 41.1215 100 > 2.8786 27.6670 29.1785 -Impact.ttf 24 # 34.6652 41.1215 101 ® -2.1858 43.1785 43.3035 -Impact.ttf 24 # 34.6652 41.1215 102 © -1.0416 43.1785 42.0000 -Impact.ttf 24 # 34.6652 41.1215 103 ] -5.0253 13.3942 46.1413 -Impact.ttf 24 # 34.6652 41.1215 104 é -6.5498 25.5600 47.5698 -Impact.ttf 24 # 34.6652 41.1215 105 z 3.3429 19.3198 37.8587 -Impact.ttf 24 # 34.6652 41.1215 106 _ 45.6129 32.1413 2.8378 -Impact.ttf 24 # 34.6652 41.1215 107 ¥ -5.1166 27.6250 46.1413 -Impact.ttf 25 O 26.8215 47.8983 1 t 3.8315 17.0878 43.1785 -Impact.ttf 25 O 26.8215 47.8983 2 h 1.2660 25.8600 46.1413 -Impact.ttf 25 O 26.8215 47.8983 3 a 9.1925 24.6815 37.8587 -Impact.ttf 25 O 26.8215 47.8983 4 n 8.9613 25.8600 37.8587 -Impact.ttf 25 O 26.8215 47.8983 5 P 0.7265 25.1622 46.1413 -Impact.ttf 25 O 26.8215 47.8983 6 o 9.1508 25.5600 37.8587 -Impact.ttf 25 O 26.8215 47.8983 7 e 9.2992 25.5600 37.8587 -Impact.ttf 25 O 26.8215 47.8983 8 : 16.7319 8.6802 30.3570 -Impact.ttf 25 O 26.8215 47.8983 9 r 8.8949 17.9105 37.8587 -Impact.ttf 25 O 26.8215 47.8983 10 l 0.6876 11.1622 46.1413 -Impact.ttf 25 O 26.8215 47.8983 11 i 0.8511 11.1622 46.1413 -Impact.ttf 25 O 26.8215 47.8983 12 1 1.1793 19.5925 46.1413 -Impact.ttf 25 O 26.8215 47.8983 13 | 0.8505 5.8425 53.6430 -Impact.ttf 25 O 26.8215 47.8983 14 N 0.8156 26.3407 46.1413 -Impact.ttf 25 O 26.8215 47.8983 15 f 0.8668 15.6593 46.1413 -Impact.ttf 25 O 26.8215 47.8983 16 g 9.2643 25.8600 44.3570 -Impact.ttf 25 O 26.8215 47.8983 17 d 0.7162 25.8600 46.1413 -Impact.ttf 25 O 26.8215 47.8983 18 W 0.7301 46.2890 46.1413 -Impact.ttf 25 O 26.8215 47.8983 19 s 8.8588 23.5030 37.8587 -Impact.ttf 25 O 26.8215 47.8983 20 c 9.0266 24.6815 37.8587 -Impact.ttf 25 O 26.8215 47.8983 21 u 9.3579 25.8600 37.8587 -Impact.ttf 25 O 26.8215 47.8983 22 3 0.2903 25.7680 47.8983 -Impact.ttf 25 O 26.8215 47.8983 23 ~ 16.3338 26.7885 12.8907 -Impact.ttf 25 O 26.8215 47.8983 24 # 5.7286 34.6652 41.1215 -Impact.ttf 25 O 26.8215 47.8983 25 O -0.0357 26.8215 47.8983 -Impact.ttf 25 O 26.8215 47.8983 26 ` -3.9873 15.1785 7.9267 -Impact.ttf 25 O 26.8215 47.8983 27 @ 0.0669 43.1785 48.8040 -Impact.ttf 25 O 26.8215 47.8983 28 F 0.6699 20.2675 46.1413 -Impact.ttf 25 O 26.8215 47.8983 29 S -0.0181 27.5192 47.8983 -Impact.ttf 25 O 26.8215 47.8983 30 p 8.8328 25.8600 43.1785 -Impact.ttf 25 O 26.8215 47.8983 31 “ 0.6917 19.2175 14.9477 -Impact.ttf 25 O 26.8215 47.8983 32 % 0.0955 37.9837 47.0198 -Impact.ttf 25 O 26.8215 47.8983 33 £ 0.0714 28.2727 47.0198 -Impact.ttf 25 O 26.8215 47.8983 34 . 37.5836 8.6802 9.3360 -Impact.ttf 25 O 26.8215 47.8983 35 2 -0.0237 23.9837 47.0198 -Impact.ttf 25 O 26.8215 47.8983 36 5 0.5678 26.3407 47.0198 -Impact.ttf 25 O 26.8215 47.8983 37 m 9.3098 40.4657 37.8587 -Impact.ttf 25 O 26.8215 47.8983 38 V 0.7941 31.0355 46.1413 -Impact.ttf 25 O 26.8215 47.8983 39 6 -0.1841 26.3407 47.8983 -Impact.ttf 25 O 26.8215 47.8983 40 w 9.3283 38.9680 37.8587 -Impact.ttf 25 O 26.8215 47.8983 41 T 0.9272 26.3407 46.1413 -Impact.ttf 25 O 26.8215 47.8983 42 M 1.1570 36.8052 46.1413 -Impact.ttf 25 O 26.8215 47.8983 43 G -0.1397 26.9465 47.8983 -Impact.ttf 25 O 26.8215 47.8983 44 b 0.7973 25.8600 46.1413 -Impact.ttf 25 O 26.8215 47.8983 45 9 -0.0570 26.3407 47.8983 -Impact.ttf 25 O 26.8215 47.8983 46 ; 16.5729 8.6802 36.1995 -Impact.ttf 25 O 26.8215 47.8983 47 D 1.0356 26.9465 46.1413 -Impact.ttf 25 O 26.8215 47.8983 48 L 0.9638 18.8948 46.1413 -Impact.ttf 25 O 26.8215 47.8983 49 y 9.3793 27.3942 43.1785 -Impact.ttf 25 O 26.8215 47.8983 50 ‘ 0.8855 8.4302 14.9477 -Impact.ttf 25 O 26.8215 47.8983 51 \ -0.2519 23.9087 48.3733 -Impact.ttf 25 O 26.8215 47.8983 52 R 1.1555 26.3407 46.1413 -Impact.ttf 25 O 26.8215 47.8983 53 < 9.1844 27.6670 29.1785 -Impact.ttf 25 O 26.8215 47.8983 54 4 0.5235 28.6977 46.1413 -Impact.ttf 25 O 26.8215 47.8983 55 8 0.0430 26.0407 47.8983 -Impact.ttf 25 O 26.8215 47.8983 56 0 -0.2373 26.3407 47.8983 -Impact.ttf 25 O 26.8215 47.8983 57 A 0.7785 31.5355 46.1413 -Impact.ttf 25 O 26.8215 47.8983 58 E 0.8549 20.4483 46.1413 -Impact.ttf 25 O 26.8215 47.8983 59 B 1.1579 26.9465 46.1413 -Impact.ttf 25 O 26.8215 47.8983 60 v 9.3650 26.8215 37.8587 -Impact.ttf 25 O 26.8215 47.8983 61 k 0.7970 25.7680 46.1413 -Impact.ttf 25 O 26.8215 47.8983 62 J 0.7458 16.2320 46.1413 -Impact.ttf 25 O 26.8215 47.8983 63 U 0.9442 26.8215 47.0198 -Impact.ttf 25 O 26.8215 47.8983 64 j 0.9712 13.7692 51.4610 -Impact.ttf 25 O 26.8215 47.8983 65 ( 0.9457 14.9285 46.1413 -Impact.ttf 25 O 26.8215 47.8983 66 7 0.8772 22.3245 46.1413 -Impact.ttf 25 O 26.8215 47.8983 67 § 0.2993 25.6430 53.5180 -Impact.ttf 25 O 26.8215 47.8983 68 $ -2.7627 26.8215 54.0680 -Impact.ttf 25 O 26.8215 47.8983 69 € -0.1157 28.6058 47.8983 -Impact.ttf 25 O 26.8215 47.8983 70 / 0.0159 22.7302 48.3733 -Impact.ttf 25 O 26.8215 47.8983 71 C 0.1429 26.9465 47.8983 -Impact.ttf 25 O 26.8215 47.8983 72 * 0.9013 15.4705 13.7692 -Impact.ttf 25 O 26.8215 47.8983 73 ” 0.7941 19.2175 14.9477 -Impact.ttf 25 O 26.8215 47.8983 74 ? -0.0927 26.8215 47.0198 -Impact.ttf 25 O 26.8215 47.8983 75 { 1.1541 19.1675 54.8215 -Impact.ttf 25 O 26.8215 47.8983 76 } 0.7463 19.1675 54.8215 -Impact.ttf 25 O 26.8215 47.8983 77 , 37.9970 8.4302 14.9477 -Impact.ttf 25 O 26.8215 47.8983 78 I 1.1710 11.6430 46.1413 -Impact.ttf 25 O 26.8215 47.8983 79 ° 0.1456 18.0163 18.0163 -Impact.ttf 25 O 26.8215 47.8983 80 K 1.0954 30.3570 46.1413 -Impact.ttf 25 O 26.8215 47.8983 81 H 0.9489 27.2192 46.1413 -Impact.ttf 25 O 26.8215 47.8983 82 q 9.2008 25.8600 43.1785 -Impact.ttf 25 O 26.8215 47.8983 83 & 9.1638 33.5925 37.8587 -Impact.ttf 25 O 26.8215 47.8983 84 ’ 0.5342 8.4302 14.9477 -Impact.ttf 25 O 26.8215 47.8983 85 [ 0.7426 13.3942 46.1413 -Impact.ttf 25 O 26.8215 47.8983 86 - 23.9062 14.8785 7.9267 -Impact.ttf 25 O 26.8215 47.8983 87 Y 0.7599 27.6250 46.1413 -Impact.ttf 25 O 26.8215 47.8983 88 Q 0.0839 26.8215 52.3395 -Impact.ttf 25 O 26.8215 47.8983 89 " 0.6069 19.7175 14.0000 -Impact.ttf 25 O 26.8215 47.8983 90 ! 0.7409 12.8215 46.1413 -Impact.ttf 25 O 26.8215 47.8983 91 x 9.0758 25.1760 37.8587 -Impact.ttf 25 O 26.8215 47.8983 92 ) 1.1312 14.9285 46.1413 -Impact.ttf 25 O 26.8215 47.8983 93 = 15.6482 27.6670 16.7320 -Impact.ttf 25 O 26.8215 47.8983 94 + 10.7872 27.1773 27.1773 -Impact.ttf 25 O 26.8215 47.8983 95 X 0.8257 29.6400 46.1413 -Impact.ttf 25 O 26.8215 47.8983 96 » 10.1796 19.6198 32.7140 -Impact.ttf 25 O 26.8215 47.8983 97 ' 0.9486 8.6802 14.0000 -Impact.ttf 25 O 26.8215 47.8983 98 ¢ 0.5924 25.8600 49.5017 -Impact.ttf 25 O 26.8215 47.8983 99 Z 0.7511 22.6245 46.1413 -Impact.ttf 25 O 26.8215 47.8983 100 > 8.8738 27.6670 29.1785 -Impact.ttf 25 O 26.8215 47.8983 101 ® 3.7247 43.1785 43.3035 -Impact.ttf 25 O 26.8215 47.8983 102 © 5.2264 43.1785 42.0000 -Impact.ttf 25 O 26.8215 47.8983 103 ] 0.8473 13.3942 46.1413 -Impact.ttf 25 O 26.8215 47.8983 104 é -0.4336 25.5600 47.5698 -Impact.ttf 25 O 26.8215 47.8983 105 z 9.1995 19.3198 37.8587 -Impact.ttf 25 O 26.8215 47.8983 106 _ 51.6188 32.1413 2.8378 -Impact.ttf 25 O 26.8215 47.8983 107 ¥ 1.0554 27.6250 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 1 t 7.7676 17.0878 43.1785 -Impact.ttf 26 ` 15.1785 7.9267 2 h 4.9172 25.8600 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 3 a 13.4245 24.6815 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 4 n 13.2535 25.8600 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 5 P 5.0140 25.1622 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 6 o 13.0510 25.5600 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 7 e 13.2882 25.5600 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 8 : 20.7774 8.6802 30.3570 -Impact.ttf 26 ` 15.1785 7.9267 9 r 13.4633 17.9105 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 10 l 5.2148 11.1622 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 11 i 4.9640 11.1622 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 12 1 4.9427 19.5925 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 13 | 5.0293 5.8425 53.6430 -Impact.ttf 26 ` 15.1785 7.9267 14 N 4.9102 26.3407 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 15 f 4.9807 15.6593 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 16 g 13.1144 25.8600 44.3570 -Impact.ttf 26 ` 15.1785 7.9267 17 d 4.8987 25.8600 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 18 W 4.8801 46.2890 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 19 s 12.8799 23.5030 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 20 c 13.0709 24.6815 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 21 u 13.2567 25.8600 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 22 3 4.0785 25.7680 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 23 ~ 20.6186 26.7885 12.8907 -Impact.ttf 26 ` 15.1785 7.9267 24 # 9.9625 34.6652 41.1215 -Impact.ttf 26 ` 15.1785 7.9267 25 O 4.2268 26.8215 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 26 ` 0.0070 15.1785 7.9267 -Impact.ttf 26 ` 15.1785 7.9267 27 @ 4.1109 43.1785 48.8040 -Impact.ttf 26 ` 15.1785 7.9267 28 F 5.0594 20.2675 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 29 S 4.2065 27.5192 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 30 p 13.3549 25.8600 43.1785 -Impact.ttf 26 ` 15.1785 7.9267 31 “ 5.3078 19.2175 14.9477 -Impact.ttf 26 ` 15.1785 7.9267 32 % 4.3436 37.9837 47.0198 -Impact.ttf 26 ` 15.1785 7.9267 33 £ 4.1272 28.2727 47.0198 -Impact.ttf 26 ` 15.1785 7.9267 34 . 41.8434 8.6802 9.3360 -Impact.ttf 26 ` 15.1785 7.9267 35 2 3.9952 23.9837 47.0198 -Impact.ttf 26 ` 15.1785 7.9267 36 5 5.2263 26.3407 47.0198 -Impact.ttf 26 ` 15.1785 7.9267 37 m 13.2850 40.4657 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 38 V 5.0441 31.0355 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 39 6 3.8760 26.3407 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 40 w 12.9782 38.9680 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 41 T 5.1906 26.3407 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 42 M 5.0075 36.8052 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 43 G 3.9567 26.9465 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 44 b 4.9970 25.8600 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 45 9 4.1694 26.3407 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 46 ; 20.7273 8.6802 36.1995 -Impact.ttf 26 ` 15.1785 7.9267 47 D 4.9801 26.9465 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 48 L 4.9542 18.8948 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 49 y 13.4721 27.3942 43.1785 -Impact.ttf 26 ` 15.1785 7.9267 50 ‘ 5.0126 8.4302 14.9477 -Impact.ttf 26 ` 15.1785 7.9267 51 \ 4.0059 23.9087 48.3733 -Impact.ttf 26 ` 15.1785 7.9267 52 R 4.9640 26.3407 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 53 < 13.1177 27.6670 29.1785 -Impact.ttf 26 ` 15.1785 7.9267 54 4 4.8366 28.6977 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 55 8 4.1214 26.0407 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 56 0 3.9645 26.3407 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 57 A 4.8728 31.5355 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 58 E 4.6331 20.4483 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 59 B 4.8444 26.9465 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 60 v 13.1594 26.8215 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 61 k 4.8445 25.7680 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 62 J 4.9672 16.2320 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 63 U 4.6962 26.8215 47.0198 -Impact.ttf 26 ` 15.1785 7.9267 64 j 4.7197 13.7692 51.4610 -Impact.ttf 26 ` 15.1785 7.9267 65 ( 5.1908 14.9285 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 66 7 5.3318 22.3245 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 67 § 4.1212 25.6430 53.5180 -Impact.ttf 26 ` 15.1785 7.9267 68 $ 1.3866 26.8215 54.0680 -Impact.ttf 26 ` 15.1785 7.9267 69 € 4.0869 28.6058 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 70 / 3.7363 22.7302 48.3733 -Impact.ttf 26 ` 15.1785 7.9267 71 C 4.2524 26.9465 47.8983 -Impact.ttf 26 ` 15.1785 7.9267 72 * 4.8685 15.4705 13.7692 -Impact.ttf 26 ` 15.1785 7.9267 73 ” 4.8755 19.2175 14.9477 -Impact.ttf 26 ` 15.1785 7.9267 74 ? 4.2468 26.8215 47.0198 -Impact.ttf 26 ` 15.1785 7.9267 75 { 5.3274 19.1675 54.8215 -Impact.ttf 26 ` 15.1785 7.9267 76 } 5.1364 19.1675 54.8215 -Impact.ttf 26 ` 15.1785 7.9267 77 , 42.0143 8.4302 14.9477 -Impact.ttf 26 ` 15.1785 7.9267 78 I 5.0664 11.6430 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 79 ° 3.9400 18.0163 18.0163 -Impact.ttf 26 ` 15.1785 7.9267 80 K 4.8328 30.3570 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 81 H 4.8926 27.2192 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 82 q 13.3414 25.8600 43.1785 -Impact.ttf 26 ` 15.1785 7.9267 83 & 12.9753 33.5925 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 84 ’ 4.8541 8.4302 14.9477 -Impact.ttf 26 ` 15.1785 7.9267 85 [ 5.1739 13.3942 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 86 - 27.8530 14.8785 7.9267 -Impact.ttf 26 ` 15.1785 7.9267 87 Y 4.8541 27.6250 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 88 Q 4.2694 26.8215 52.3395 -Impact.ttf 26 ` 15.1785 7.9267 89 " 5.0626 19.7175 14.0000 -Impact.ttf 26 ` 15.1785 7.9267 90 ! 4.9051 12.8215 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 91 x 13.3336 25.1760 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 92 ) 5.4460 14.9285 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 93 = 19.8295 27.6670 16.7320 -Impact.ttf 26 ` 15.1785 7.9267 94 + 14.7023 27.1773 27.1773 -Impact.ttf 26 ` 15.1785 7.9267 95 X 4.8839 29.6400 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 96 » 14.7671 19.6198 32.7140 -Impact.ttf 26 ` 15.1785 7.9267 97 ' 5.1309 8.6802 14.0000 -Impact.ttf 26 ` 15.1785 7.9267 98 ¢ 4.9973 25.8600 49.5017 -Impact.ttf 26 ` 15.1785 7.9267 99 Z 4.9783 22.6245 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 100 > 13.0441 27.6670 29.1785 -Impact.ttf 26 ` 15.1785 7.9267 101 ® 7.7321 43.1785 43.3035 -Impact.ttf 26 ` 15.1785 7.9267 102 © 9.3276 43.1785 42.0000 -Impact.ttf 26 ` 15.1785 7.9267 103 ] 4.8685 13.3942 46.1413 -Impact.ttf 26 ` 15.1785 7.9267 104 é 3.4854 25.5600 47.5698 -Impact.ttf 26 ` 15.1785 7.9267 105 z 13.4077 19.3198 37.8587 -Impact.ttf 26 ` 15.1785 7.9267 106 _ 55.6264 32.1413 2.8378 -Impact.ttf 26 ` 15.1785 7.9267 107 ¥ 5.0979 27.6250 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 1 t 3.9352 17.0878 43.1785 -Impact.ttf 27 @ 43.1785 48.8040 2 h 1.1689 25.8600 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 3 a 8.8541 24.6815 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 4 n 8.8996 25.8600 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 5 P 0.8434 25.1622 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 6 o 8.9602 25.5600 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 7 e 9.2572 25.5600 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 8 : 16.6590 8.6802 30.3570 -Impact.ttf 27 @ 43.1785 48.8040 9 r 9.1698 17.9105 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 10 l 0.8438 11.1622 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 11 i 1.0226 11.1622 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 12 1 1.1181 19.5925 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 13 | 0.9207 5.8425 53.6430 -Impact.ttf 27 @ 43.1785 48.8040 14 N 0.7984 26.3407 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 15 f 0.6587 15.6593 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 16 g 9.1708 25.8600 44.3570 -Impact.ttf 27 @ 43.1785 48.8040 17 d 1.1672 25.8600 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 18 W 1.0456 46.2890 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 19 s 9.4274 23.5030 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 20 c 9.1583 24.6815 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 21 u 9.0410 25.8600 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 22 3 -0.1845 25.7680 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 23 ~ 16.4951 26.7885 12.8907 -Impact.ttf 27 @ 43.1785 48.8040 24 # 6.1633 34.6652 41.1215 -Impact.ttf 27 @ 43.1785 48.8040 25 O -0.1886 26.8215 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 26 ` -4.1226 15.1785 7.9267 -Impact.ttf 27 @ 43.1785 48.8040 27 @ 0.1599 43.1785 48.8040 -Impact.ttf 27 @ 43.1785 48.8040 28 F 0.4059 20.2675 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 29 S -0.3809 27.5192 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 30 p 8.9701 25.8600 43.1785 -Impact.ttf 27 @ 43.1785 48.8040 31 “ 0.7872 19.2175 14.9477 -Impact.ttf 27 @ 43.1785 48.8040 32 % 0.3551 37.9837 47.0198 -Impact.ttf 27 @ 43.1785 48.8040 33 £ 0.0714 28.2727 47.0198 -Impact.ttf 27 @ 43.1785 48.8040 34 . 37.5256 8.6802 9.3360 -Impact.ttf 27 @ 43.1785 48.8040 35 2 0.4579 23.9837 47.0198 -Impact.ttf 27 @ 43.1785 48.8040 36 5 0.8868 26.3407 47.0198 -Impact.ttf 27 @ 43.1785 48.8040 37 m 9.0317 40.4657 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 38 V 0.8858 31.0355 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 39 6 0.0857 26.3407 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 40 w 9.3250 38.9680 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 41 T 0.7627 26.3407 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 42 M 1.1852 36.8052 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 43 G -0.1701 26.9465 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 44 b 0.5346 25.8600 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 45 9 0.0172 26.3407 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 46 ; 16.7652 8.6802 36.1995 -Impact.ttf 27 @ 43.1785 48.8040 47 D 0.9295 26.9465 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 48 L 1.0273 18.8948 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 49 y 9.0896 27.3942 43.1785 -Impact.ttf 27 @ 43.1785 48.8040 50 ‘ 0.6003 8.4302 14.9477 -Impact.ttf 27 @ 43.1785 48.8040 51 \ -0.4526 23.9087 48.3733 -Impact.ttf 27 @ 43.1785 48.8040 52 R 1.2465 26.3407 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 53 < 9.1064 27.6670 29.1785 -Impact.ttf 27 @ 43.1785 48.8040 54 4 0.9939 28.6977 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 55 8 0.2266 26.0407 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 56 0 -0.0912 26.3407 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 57 A 0.9624 31.5355 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 58 E 1.0855 20.4483 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 59 B 0.7571 26.9465 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 60 v 9.1680 26.8215 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 61 k 1.0750 25.7680 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 62 J 0.9138 16.2320 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 63 U 0.9174 26.8215 47.0198 -Impact.ttf 27 @ 43.1785 48.8040 64 j 1.0454 13.7692 51.4610 -Impact.ttf 27 @ 43.1785 48.8040 65 ( 0.8449 14.9285 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 66 7 0.9129 22.3245 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 67 § -0.0827 25.6430 53.5180 -Impact.ttf 27 @ 43.1785 48.8040 68 $ -2.4487 26.8215 54.0680 -Impact.ttf 27 @ 43.1785 48.8040 69 € -0.2052 28.6058 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 70 / -0.3387 22.7302 48.3733 -Impact.ttf 27 @ 43.1785 48.8040 71 C -0.2549 26.9465 47.8983 -Impact.ttf 27 @ 43.1785 48.8040 72 * 1.3243 15.4705 13.7692 -Impact.ttf 27 @ 43.1785 48.8040 73 ” 0.7316 19.2175 14.9477 -Impact.ttf 27 @ 43.1785 48.8040 74 ? -0.0728 26.8215 47.0198 -Impact.ttf 27 @ 43.1785 48.8040 75 { 0.9139 19.1675 54.8215 -Impact.ttf 27 @ 43.1785 48.8040 76 } 0.6861 19.1675 54.8215 -Impact.ttf 27 @ 43.1785 48.8040 77 , 37.7330 8.4302 14.9477 -Impact.ttf 27 @ 43.1785 48.8040 78 I 0.7259 11.6430 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 79 ° 0.1566 18.0163 18.0163 -Impact.ttf 27 @ 43.1785 48.8040 80 K 0.7952 30.3570 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 81 H 0.9711 27.2192 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 82 q 9.1036 25.8600 43.1785 -Impact.ttf 27 @ 43.1785 48.8040 83 & 9.2054 33.5925 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 84 ’ 0.7349 8.4302 14.9477 -Impact.ttf 27 @ 43.1785 48.8040 85 [ 1.0866 13.3942 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 86 - 24.0452 14.8785 7.9267 -Impact.ttf 27 @ 43.1785 48.8040 87 Y 0.9416 27.6250 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 88 Q -0.1696 26.8215 52.3395 -Impact.ttf 27 @ 43.1785 48.8040 89 " 0.8043 19.7175 14.0000 -Impact.ttf 27 @ 43.1785 48.8040 90 ! 0.9192 12.8215 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 91 x 9.1688 25.1760 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 92 ) 0.9327 14.9285 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 93 = 15.6829 27.6670 16.7320 -Impact.ttf 27 @ 43.1785 48.8040 94 + 10.8374 27.1773 27.1773 -Impact.ttf 27 @ 43.1785 48.8040 95 X 0.6847 29.6400 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 96 » 10.1322 19.6198 32.7140 -Impact.ttf 27 @ 43.1785 48.8040 97 ' 0.9831 8.6802 14.0000 -Impact.ttf 27 @ 43.1785 48.8040 98 ¢ 1.0600 25.8600 49.5017 -Impact.ttf 27 @ 43.1785 48.8040 99 Z 0.7029 22.6245 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 100 > 9.0388 27.6670 29.1785 -Impact.ttf 27 @ 43.1785 48.8040 101 ® 3.6120 43.1785 43.3035 -Impact.ttf 27 @ 43.1785 48.8040 102 © 5.1602 43.1785 42.0000 -Impact.ttf 27 @ 43.1785 48.8040 103 ] 0.7180 13.3942 46.1413 -Impact.ttf 27 @ 43.1785 48.8040 104 é -0.6969 25.5600 47.5698 -Impact.ttf 27 @ 43.1785 48.8040 105 z 9.3882 19.3198 37.8587 -Impact.ttf 27 @ 43.1785 48.8040 106 _ 51.3655 32.1413 2.8378 -Impact.ttf 27 @ 43.1785 48.8040 107 ¥ 0.6430 27.6250 46.1413 -Impact.ttf 28 F 20.2675 46.1413 1 t 2.8029 17.0878 43.1785 -Impact.ttf 28 F 20.2675 46.1413 2 h 0.0950 25.8600 46.1413 -Impact.ttf 28 F 20.2675 46.1413 3 a 8.3051 24.6815 37.8587 -Impact.ttf 28 F 20.2675 46.1413 4 n 8.1680 25.8600 37.8587 -Impact.ttf 28 F 20.2675 46.1413 5 P -0.1228 25.1622 46.1413 -Impact.ttf 28 F 20.2675 46.1413 6 o 8.0799 25.5600 37.8587 -Impact.ttf 28 F 20.2675 46.1413 7 e 7.9613 25.5600 37.8587 -Impact.ttf 28 F 20.2675 46.1413 8 : 15.7305 8.6802 30.3570 -Impact.ttf 28 F 20.2675 46.1413 9 r 8.3117 17.9105 37.8587 -Impact.ttf 28 F 20.2675 46.1413 10 l -0.0667 11.1622 46.1413 -Impact.ttf 28 F 20.2675 46.1413 11 i -0.0395 11.1622 46.1413 -Impact.ttf 28 F 20.2675 46.1413 12 1 -0.0143 19.5925 46.1413 -Impact.ttf 28 F 20.2675 46.1413 13 | -0.2964 5.8425 53.6430 -Impact.ttf 28 F 20.2675 46.1413 14 N -0.0629 26.3407 46.1413 -Impact.ttf 28 F 20.2675 46.1413 15 f 0.0857 15.6593 46.1413 -Impact.ttf 28 F 20.2675 46.1413 16 g 8.1941 25.8600 44.3570 -Impact.ttf 28 F 20.2675 46.1413 17 d 0.3393 25.8600 46.1413 -Impact.ttf 28 F 20.2675 46.1413 18 W 0.1437 46.2890 46.1413 -Impact.ttf 28 F 20.2675 46.1413 19 s 8.3637 23.5030 37.8587 -Impact.ttf 28 F 20.2675 46.1413 20 c 8.1416 24.6815 37.8587 -Impact.ttf 28 F 20.2675 46.1413 21 u 8.2013 25.8600 37.8587 -Impact.ttf 28 F 20.2675 46.1413 22 3 -0.8545 25.7680 47.8983 -Impact.ttf 28 F 20.2675 46.1413 23 ~ 15.6946 26.7885 12.8907 -Impact.ttf 28 F 20.2675 46.1413 24 # 5.1069 34.6652 41.1215 -Impact.ttf 28 F 20.2675 46.1413 25 O -1.0073 26.8215 47.8983 -Impact.ttf 28 F 20.2675 46.1413 26 ` -4.9793 15.1785 7.9267 -Impact.ttf 28 F 20.2675 46.1413 27 @ -0.9110 43.1785 48.8040 -Impact.ttf 28 F 20.2675 46.1413 28 F 0.0955 20.2675 46.1413 -Impact.ttf 28 F 20.2675 46.1413 29 S -0.7627 27.5192 47.8983 -Impact.ttf 28 F 20.2675 46.1413 30 p 8.1240 25.8600 43.1785 -Impact.ttf 28 F 20.2675 46.1413 31 “ -0.1984 19.2175 14.9477 -Impact.ttf 28 F 20.2675 46.1413 32 % -0.8665 37.9837 47.0198 -Impact.ttf 28 F 20.2675 46.1413 33 £ -0.8511 28.2727 47.0198 -Impact.ttf 28 F 20.2675 46.1413 34 . 36.7870 8.6802 9.3360 -Impact.ttf 28 F 20.2675 46.1413 35 2 -0.5762 23.9837 47.0198 -Impact.ttf 28 F 20.2675 46.1413 36 5 -0.1126 26.3407 47.0198 -Impact.ttf 28 F 20.2675 46.1413 37 m 8.1083 40.4657 37.8587 -Impact.ttf 28 F 20.2675 46.1413 38 V 0.2257 31.0355 46.1413 -Impact.ttf 28 F 20.2675 46.1413 39 6 -0.8900 26.3407 47.8983 -Impact.ttf 28 F 20.2675 46.1413 40 w 8.1486 38.9680 37.8587 -Impact.ttf 28 F 20.2675 46.1413 41 T 0.1553 26.3407 46.1413 -Impact.ttf 28 F 20.2675 46.1413 42 M -0.2377 36.8052 46.1413 -Impact.ttf 28 F 20.2675 46.1413 43 G -0.8317 26.9465 47.8983 -Impact.ttf 28 F 20.2675 46.1413 44 b 0.0347 25.8600 46.1413 -Impact.ttf 28 F 20.2675 46.1413 45 9 -0.8285 26.3407 47.8983 -Impact.ttf 28 F 20.2675 46.1413 46 ; 15.8557 8.6802 36.1995 -Impact.ttf 28 F 20.2675 46.1413 47 D -0.0922 26.9465 46.1413 -Impact.ttf 28 F 20.2675 46.1413 48 L -0.2678 18.8948 46.1413 -Impact.ttf 28 F 20.2675 46.1413 49 y 8.5467 27.3942 43.1785 -Impact.ttf 28 F 20.2675 46.1413 50 ‘ -0.0455 8.4302 14.9477 -Impact.ttf 28 F 20.2675 46.1413 51 \ -1.2472 23.9087 48.3733 -Impact.ttf 28 F 20.2675 46.1413 52 R -0.0455 26.3407 46.1413 -Impact.ttf 28 F 20.2675 46.1413 53 < 8.2414 27.6670 29.1785 -Impact.ttf 28 F 20.2675 46.1413 54 4 -0.0385 28.6977 46.1413 -Impact.ttf 28 F 20.2675 46.1413 55 8 -1.0268 26.0407 47.8983 -Impact.ttf 28 F 20.2675 46.1413 56 0 -0.9888 26.3407 47.8983 -Impact.ttf 28 F 20.2675 46.1413 57 A 0.0611 31.5355 46.1413 -Impact.ttf 28 F 20.2675 46.1413 58 E -0.0061 20.4483 46.1413 -Impact.ttf 28 F 20.2675 46.1413 59 B 0.1526 26.9465 46.1413 -Impact.ttf 28 F 20.2675 46.1413 60 v 8.4099 26.8215 37.8587 -Impact.ttf 28 F 20.2675 46.1413 61 k -0.0417 25.7680 46.1413 -Impact.ttf 28 F 20.2675 46.1413 62 J 0.1728 16.2320 46.1413 -Impact.ttf 28 F 20.2675 46.1413 63 U 0.1016 26.8215 47.0198 -Impact.ttf 28 F 20.2675 46.1413 64 j -0.1498 13.7692 51.4610 -Impact.ttf 28 F 20.2675 46.1413 65 ( 0.0969 14.9285 46.1413 -Impact.ttf 28 F 20.2675 46.1413 66 7 -0.0826 22.3245 46.1413 -Impact.ttf 28 F 20.2675 46.1413 67 § -0.7140 25.6430 53.5180 -Impact.ttf 28 F 20.2675 46.1413 68 $ -3.7757 26.8215 54.0680 -Impact.ttf 28 F 20.2675 46.1413 69 € -1.0597 28.6058 47.8983 -Impact.ttf 28 F 20.2675 46.1413 70 / -0.9696 22.7302 48.3733 -Impact.ttf 28 F 20.2675 46.1413 71 C -0.8011 26.9465 47.8983 -Impact.ttf 28 F 20.2675 46.1413 72 * 0.0570 15.4705 13.7692 -Impact.ttf 28 F 20.2675 46.1413 73 ” -0.2543 19.2175 14.9477 -Impact.ttf 28 F 20.2675 46.1413 74 ? -0.7204 26.8215 47.0198 -Impact.ttf 28 F 20.2675 46.1413 75 { -0.3907 19.1675 54.8215 -Impact.ttf 28 F 20.2675 46.1413 76 } 0.0422 19.1675 54.8215 -Impact.ttf 28 F 20.2675 46.1413 77 , 37.1987 8.4302 14.9477 -Impact.ttf 28 F 20.2675 46.1413 78 I 0.2090 11.6430 46.1413 -Impact.ttf 28 F 20.2675 46.1413 79 ° -0.7172 18.0163 18.0163 -Impact.ttf 28 F 20.2675 46.1413 80 K 0.1131 30.3570 46.1413 -Impact.ttf 28 F 20.2675 46.1413 81 H 0.0097 27.2192 46.1413 -Impact.ttf 28 F 20.2675 46.1413 82 q 8.4164 25.8600 43.1785 -Impact.ttf 28 F 20.2675 46.1413 83 & 8.1441 33.5925 37.8587 -Impact.ttf 28 F 20.2675 46.1413 84 ’ 0.0968 8.4302 14.9477 -Impact.ttf 28 F 20.2675 46.1413 85 [ 0.2508 13.3942 46.1413 -Impact.ttf 28 F 20.2675 46.1413 86 - 23.3075 14.8785 7.9267 -Impact.ttf 28 F 20.2675 46.1413 87 Y 0.0196 27.6250 46.1413 -Impact.ttf 28 F 20.2675 46.1413 88 Q -0.5190 26.8215 52.3395 -Impact.ttf 28 F 20.2675 46.1413 89 " 0.0857 19.7175 14.0000 -Impact.ttf 28 F 20.2675 46.1413 90 ! -0.0812 12.8215 46.1413 -Impact.ttf 28 F 20.2675 46.1413 91 x 8.3710 25.1760 37.8587 -Impact.ttf 28 F 20.2675 46.1413 92 ) -0.0583 14.9285 46.1413 -Impact.ttf 28 F 20.2675 46.1413 93 = 14.8687 27.6670 16.7320 -Impact.ttf 28 F 20.2675 46.1413 94 + 10.0427 27.1773 27.1773 -Impact.ttf 28 F 20.2675 46.1413 95 X -0.0172 29.6400 46.1413 -Impact.ttf 28 F 20.2675 46.1413 96 » 9.7018 19.6198 32.7140 -Impact.ttf 28 F 20.2675 46.1413 97 ' -0.1696 8.6802 14.0000 -Impact.ttf 28 F 20.2675 46.1413 98 ¢ 0.2062 25.8600 49.5017 -Impact.ttf 28 F 20.2675 46.1413 99 Z -0.0468 22.6245 46.1413 -Impact.ttf 28 F 20.2675 46.1413 100 > 8.5774 27.6670 29.1785 -Impact.ttf 28 F 20.2675 46.1413 101 ® 2.7878 43.1785 43.3035 -Impact.ttf 28 F 20.2675 46.1413 102 © 4.0768 43.1785 42.0000 -Impact.ttf 28 F 20.2675 46.1413 103 ] -0.3119 13.3942 46.1413 -Impact.ttf 28 F 20.2675 46.1413 104 é -1.4656 25.5600 47.5698 -Impact.ttf 28 F 20.2675 46.1413 105 z 8.2612 19.3198 37.8587 -Impact.ttf 28 F 20.2675 46.1413 106 _ 50.5034 32.1413 2.8378 -Impact.ttf 28 F 20.2675 46.1413 107 ¥ -0.3382 27.6250 46.1413 -Impact.ttf 29 S 27.5192 47.8983 1 t 4.0401 17.0878 43.1785 -Impact.ttf 29 S 27.5192 47.8983 2 h 0.9527 25.8600 46.1413 -Impact.ttf 29 S 27.5192 47.8983 3 a 9.2566 24.6815 37.8587 -Impact.ttf 29 S 27.5192 47.8983 4 n 9.2352 25.8600 37.8587 -Impact.ttf 29 S 27.5192 47.8983 5 P 0.7830 25.1622 46.1413 -Impact.ttf 29 S 27.5192 47.8983 6 o 9.5245 25.5600 37.8587 -Impact.ttf 29 S 27.5192 47.8983 7 e 9.2365 25.5600 37.8587 -Impact.ttf 29 S 27.5192 47.8983 8 : 16.6596 8.6802 30.3570 -Impact.ttf 29 S 27.5192 47.8983 9 r 9.0537 17.9105 37.8587 -Impact.ttf 29 S 27.5192 47.8983 10 l 0.9438 11.1622 46.1413 -Impact.ttf 29 S 27.5192 47.8983 11 i 0.9884 11.1622 46.1413 -Impact.ttf 29 S 27.5192 47.8983 12 1 0.7982 19.5925 46.1413 -Impact.ttf 29 S 27.5192 47.8983 13 | 0.8525 5.8425 53.6430 -Impact.ttf 29 S 27.5192 47.8983 14 N 0.9495 26.3407 46.1413 -Impact.ttf 29 S 27.5192 47.8983 15 f 1.0059 15.6593 46.1413 -Impact.ttf 29 S 27.5192 47.8983 16 g 9.3895 25.8600 44.3570 -Impact.ttf 29 S 27.5192 47.8983 17 d 1.0351 25.8600 46.1413 -Impact.ttf 29 S 27.5192 47.8983 18 W 1.0314 46.2890 46.1413 -Impact.ttf 29 S 27.5192 47.8983 19 s 9.0721 23.5030 37.8587 -Impact.ttf 29 S 27.5192 47.8983 20 c 9.0497 24.6815 37.8587 -Impact.ttf 29 S 27.5192 47.8983 21 u 8.8088 25.8600 37.8587 -Impact.ttf 29 S 27.5192 47.8983 22 3 -0.0092 25.7680 47.8983 -Impact.ttf 29 S 27.5192 47.8983 23 ~ 16.1642 26.7885 12.8907 -Impact.ttf 29 S 27.5192 47.8983 24 # 5.8983 34.6652 41.1215 -Impact.ttf 29 S 27.5192 47.8983 25 O -0.0156 26.8215 47.8983 -Impact.ttf 29 S 27.5192 47.8983 26 ` -4.0685 15.1785 7.9267 -Impact.ttf 29 S 27.5192 47.8983 27 @ -0.0672 43.1785 48.8040 -Impact.ttf 29 S 27.5192 47.8983 28 F 0.5592 20.2675 46.1413 -Impact.ttf 29 S 27.5192 47.8983 29 S 0.0760 27.5192 47.8983 -Impact.ttf 29 S 27.5192 47.8983 30 p 9.0733 25.8600 43.1785 -Impact.ttf 29 S 27.5192 47.8983 31 “ 0.6804 19.2175 14.9477 -Impact.ttf 29 S 27.5192 47.8983 32 % 0.0844 37.9837 47.0198 -Impact.ttf 29 S 27.5192 47.8983 33 £ 0.0324 28.2727 47.0198 -Impact.ttf 29 S 27.5192 47.8983 34 . 37.8358 8.6802 9.3360 -Impact.ttf 29 S 27.5192 47.8983 35 2 0.3244 23.9837 47.0198 -Impact.ttf 29 S 27.5192 47.8983 36 5 0.7358 26.3407 47.0198 -Impact.ttf 29 S 27.5192 47.8983 37 m 9.5191 40.4657 37.8587 -Impact.ttf 29 S 27.5192 47.8983 38 V 0.9799 31.0355 46.1413 -Impact.ttf 29 S 27.5192 47.8983 39 6 0.3651 26.3407 47.8983 -Impact.ttf 29 S 27.5192 47.8983 40 w 9.1429 38.9680 37.8587 -Impact.ttf 29 S 27.5192 47.8983 41 T 0.9027 26.3407 46.1413 -Impact.ttf 29 S 27.5192 47.8983 42 M 0.9355 36.8052 46.1413 -Impact.ttf 29 S 27.5192 47.8983 43 G -0.1176 26.9465 47.8983 -Impact.ttf 29 S 27.5192 47.8983 44 b 0.6561 25.8600 46.1413 -Impact.ttf 29 S 27.5192 47.8983 45 9 -0.0344 26.3407 47.8983 -Impact.ttf 29 S 27.5192 47.8983 46 ; 16.6205 8.6802 36.1995 -Impact.ttf 29 S 27.5192 47.8983 47 D 1.0477 26.9465 46.1413 -Impact.ttf 29 S 27.5192 47.8983 48 L 0.9920 18.8948 46.1413 -Impact.ttf 29 S 27.5192 47.8983 49 y 9.2983 27.3942 43.1785 -Impact.ttf 29 S 27.5192 47.8983 50 ‘ 0.5535 8.4302 14.9477 -Impact.ttf 29 S 27.5192 47.8983 51 \ -0.3066 23.9087 48.3733 -Impact.ttf 29 S 27.5192 47.8983 52 R 0.8016 26.3407 46.1413 -Impact.ttf 29 S 27.5192 47.8983 53 < 9.0815 27.6670 29.1785 -Impact.ttf 29 S 27.5192 47.8983 54 4 1.0481 28.6977 46.1413 -Impact.ttf 29 S 27.5192 47.8983 55 8 -0.2040 26.0407 47.8983 -Impact.ttf 29 S 27.5192 47.8983 56 0 -0.0240 26.3407 47.8983 -Impact.ttf 29 S 27.5192 47.8983 57 A 0.4142 31.5355 46.1413 -Impact.ttf 29 S 27.5192 47.8983 58 E 0.8043 20.4483 46.1413 -Impact.ttf 29 S 27.5192 47.8983 59 B 0.9554 26.9465 46.1413 -Impact.ttf 29 S 27.5192 47.8983 60 v 9.2352 26.8215 37.8587 -Impact.ttf 29 S 27.5192 47.8983 61 k 0.9864 25.7680 46.1413 -Impact.ttf 29 S 27.5192 47.8983 62 J 0.8725 16.2320 46.1413 -Impact.ttf 29 S 27.5192 47.8983 63 U 1.0981 26.8215 47.0198 -Impact.ttf 29 S 27.5192 47.8983 64 j 0.9740 13.7692 51.4610 -Impact.ttf 29 S 27.5192 47.8983 65 ( 0.6607 14.9285 46.1413 -Impact.ttf 29 S 27.5192 47.8983 66 7 1.1196 22.3245 46.1413 -Impact.ttf 29 S 27.5192 47.8983 67 § 0.1029 25.6430 53.5180 -Impact.ttf 29 S 27.5192 47.8983 68 $ -2.9956 26.8215 54.0680 -Impact.ttf 29 S 27.5192 47.8983 69 € -0.0027 28.6058 47.8983 -Impact.ttf 29 S 27.5192 47.8983 70 / -0.1922 22.7302 48.3733 -Impact.ttf 29 S 27.5192 47.8983 71 C 0.0385 26.9465 47.8983 -Impact.ttf 29 S 27.5192 47.8983 72 * 1.1939 15.4705 13.7692 -Impact.ttf 29 S 27.5192 47.8983 73 ” 0.9670 19.2175 14.9477 -Impact.ttf 29 S 27.5192 47.8983 74 ? -0.0891 26.8215 47.0198 -Impact.ttf 29 S 27.5192 47.8983 75 { 1.1029 19.1675 54.8215 -Impact.ttf 29 S 27.5192 47.8983 76 } 0.8642 19.1675 54.8215 -Impact.ttf 29 S 27.5192 47.8983 77 , 37.7801 8.4302 14.9477 -Impact.ttf 29 S 27.5192 47.8983 78 I 0.7627 11.6430 46.1413 -Impact.ttf 29 S 27.5192 47.8983 79 ° 0.1581 18.0163 18.0163 -Impact.ttf 29 S 27.5192 47.8983 80 K 0.7154 30.3570 46.1413 -Impact.ttf 29 S 27.5192 47.8983 81 H 0.6899 27.2192 46.1413 -Impact.ttf 29 S 27.5192 47.8983 82 q 9.1221 25.8600 43.1785 -Impact.ttf 29 S 27.5192 47.8983 83 & 9.0909 33.5925 37.8587 -Impact.ttf 29 S 27.5192 47.8983 84 ’ 0.6917 8.4302 14.9477 -Impact.ttf 29 S 27.5192 47.8983 85 [ 0.9045 13.3942 46.1413 -Impact.ttf 29 S 27.5192 47.8983 86 - 23.9170 14.8785 7.9267 -Impact.ttf 29 S 27.5192 47.8983 87 Y 0.9202 27.6250 46.1413 -Impact.ttf 29 S 27.5192 47.8983 88 Q -0.1623 26.8215 52.3395 -Impact.ttf 29 S 27.5192 47.8983 89 " 0.9142 19.7175 14.0000 -Impact.ttf 29 S 27.5192 47.8983 90 ! 0.7362 12.8215 46.1413 -Impact.ttf 29 S 27.5192 47.8983 91 x 9.3519 25.1760 37.8587 -Impact.ttf 29 S 27.5192 47.8983 92 ) 0.8182 14.9285 46.1413 -Impact.ttf 29 S 27.5192 47.8983 93 = 15.9715 27.6670 16.7320 -Impact.ttf 29 S 27.5192 47.8983 94 + 10.7960 27.1773 27.1773 -Impact.ttf 29 S 27.5192 47.8983 95 X 0.6885 29.6400 46.1413 -Impact.ttf 29 S 27.5192 47.8983 96 » 10.2733 19.6198 32.7140 -Impact.ttf 29 S 27.5192 47.8983 97 ' 0.8989 8.6802 14.0000 -Impact.ttf 29 S 27.5192 47.8983 98 ¢ 1.0720 25.8600 49.5017 -Impact.ttf 29 S 27.5192 47.8983 99 Z 0.9188 22.6245 46.1413 -Impact.ttf 29 S 27.5192 47.8983 100 > 9.1574 27.6670 29.1785 -Impact.ttf 29 S 27.5192 47.8983 101 ® 3.9590 43.1785 43.3035 -Impact.ttf 29 S 27.5192 47.8983 102 © 4.8515 43.1785 42.0000 -Impact.ttf 29 S 27.5192 47.8983 103 ] 1.2725 13.3942 46.1413 -Impact.ttf 29 S 27.5192 47.8983 104 é -0.5885 25.5600 47.5698 -Impact.ttf 29 S 27.5192 47.8983 105 z 9.0354 19.3198 37.8587 -Impact.ttf 29 S 27.5192 47.8983 106 _ 51.4754 32.1413 2.8378 -Impact.ttf 29 S 27.5192 47.8983 107 ¥ 0.9740 27.6250 46.1413 -Impact.ttf 30 p 25.8600 43.1785 1 t -5.3738 17.0878 43.1785 -Impact.ttf 30 p 25.8600 43.1785 2 h -8.3423 25.8600 46.1413 -Impact.ttf 30 p 25.8600 43.1785 3 a -0.0583 24.6815 37.8587 -Impact.ttf 30 p 25.8600 43.1785 4 n 0.0258 25.8600 37.8587 -Impact.ttf 30 p 25.8600 43.1785 5 P -8.4020 25.1622 46.1413 -Impact.ttf 30 p 25.8600 43.1785 6 o 0.1928 25.5600 37.8587 -Impact.ttf 30 p 25.8600 43.1785 7 e -0.1774 25.5600 37.8587 -Impact.ttf 30 p 25.8600 43.1785 8 : 7.5962 8.6802 30.3570 -Impact.ttf 30 p 25.8600 43.1785 9 r -0.0441 17.9105 37.8587 -Impact.ttf 30 p 25.8600 43.1785 10 l -8.2812 11.1622 46.1413 -Impact.ttf 30 p 25.8600 43.1785 11 i -8.6110 11.1622 46.1413 -Impact.ttf 30 p 25.8600 43.1785 12 1 -8.1059 19.5925 46.1413 -Impact.ttf 30 p 25.8600 43.1785 13 | -7.9317 5.8425 53.6430 -Impact.ttf 30 p 25.8600 43.1785 14 N -8.1139 26.3407 46.1413 -Impact.ttf 30 p 25.8600 43.1785 15 f -8.2923 15.6593 46.1413 -Impact.ttf 30 p 25.8600 43.1785 16 g -0.1242 25.8600 44.3570 -Impact.ttf 30 p 25.8600 43.1785 17 d -8.0893 25.8600 46.1413 -Impact.ttf 30 p 25.8600 43.1785 18 W -8.4234 46.2890 46.1413 -Impact.ttf 30 p 25.8600 43.1785 19 s 0.3452 23.5030 37.8587 -Impact.ttf 30 p 25.8600 43.1785 20 c 0.3579 24.6815 37.8587 -Impact.ttf 30 p 25.8600 43.1785 21 u -0.0798 25.8600 37.8587 -Impact.ttf 30 p 25.8600 43.1785 22 3 -9.2269 25.7680 47.8983 -Impact.ttf 30 p 25.8600 43.1785 23 ~ 7.0410 26.7885 12.8907 -Impact.ttf 30 p 25.8600 43.1785 24 # -3.4949 34.6652 41.1215 -Impact.ttf 30 p 25.8600 43.1785 25 O -9.3553 26.8215 47.8983 -Impact.ttf 30 p 25.8600 43.1785 26 ` -13.2414 15.1785 7.9267 -Impact.ttf 30 p 25.8600 43.1785 27 @ -9.2370 43.1785 48.8040 -Impact.ttf 30 p 25.8600 43.1785 28 F -8.1857 20.2675 46.1413 -Impact.ttf 30 p 25.8600 43.1785 29 S -9.1740 27.5192 47.8983 -Impact.ttf 30 p 25.8600 43.1785 30 p 0.0270 25.8600 43.1785 -Impact.ttf 30 p 25.8600 43.1785 31 “ -8.1337 19.2175 14.9477 -Impact.ttf 30 p 25.8600 43.1785 32 % -9.0124 37.9837 47.0198 -Impact.ttf 30 p 25.8600 43.1785 33 £ -9.3344 28.2727 47.0198 -Impact.ttf 30 p 25.8600 43.1785 34 . 28.8749 8.6802 9.3360 -Impact.ttf 30 p 25.8600 43.1785 35 2 -9.3747 23.9837 47.0198 -Impact.ttf 30 p 25.8600 43.1785 36 5 -8.3321 26.3407 47.0198 -Impact.ttf 30 p 25.8600 43.1785 37 m 0.3578 40.4657 37.8587 -Impact.ttf 30 p 25.8600 43.1785 38 V -8.5406 31.0355 46.1413 -Impact.ttf 30 p 25.8600 43.1785 39 6 -9.4010 26.3407 47.8983 -Impact.ttf 30 p 25.8600 43.1785 40 w 0.1631 38.9680 37.8587 -Impact.ttf 30 p 25.8600 43.1785 41 T -8.2853 26.3407 46.1413 -Impact.ttf 30 p 25.8600 43.1785 42 M -8.3879 36.8052 46.1413 -Impact.ttf 30 p 25.8600 43.1785 43 G -9.0386 26.9465 47.8983 -Impact.ttf 30 p 25.8600 43.1785 44 b -7.9911 25.8600 46.1413 -Impact.ttf 30 p 25.8600 43.1785 45 9 -9.0798 26.3407 47.8983 -Impact.ttf 30 p 25.8600 43.1785 46 ; 7.2766 8.6802 36.1995 -Impact.ttf 30 p 25.8600 43.1785 47 D -8.2825 26.9465 46.1413 -Impact.ttf 30 p 25.8600 43.1785 48 L -8.2696 18.8948 46.1413 -Impact.ttf 30 p 25.8600 43.1785 49 y 0.0643 27.3942 43.1785 -Impact.ttf 30 p 25.8600 43.1785 50 ‘ -8.2825 8.4302 14.9477 -Impact.ttf 30 p 25.8600 43.1785 51 \ -9.4769 23.9087 48.3733 -Impact.ttf 30 p 25.8600 43.1785 52 R -8.3450 26.3407 46.1413 -Impact.ttf 30 p 25.8600 43.1785 53 < -0.0470 27.6670 29.1785 -Impact.ttf 30 p 25.8600 43.1785 54 4 -8.1913 28.6977 46.1413 -Impact.ttf 30 p 25.8600 43.1785 55 8 -9.1551 26.0407 47.8983 -Impact.ttf 30 p 25.8600 43.1785 56 0 -8.9409 26.3407 47.8983 -Impact.ttf 30 p 25.8600 43.1785 57 A -8.2798 31.5355 46.1413 -Impact.ttf 30 p 25.8600 43.1785 58 E -8.6347 20.4483 46.1413 -Impact.ttf 30 p 25.8600 43.1785 59 B -8.1097 26.9465 46.1413 -Impact.ttf 30 p 25.8600 43.1785 60 v 0.3250 26.8215 37.8587 -Impact.ttf 30 p 25.8600 43.1785 61 k -8.4567 25.7680 46.1413 -Impact.ttf 30 p 25.8600 43.1785 62 J -8.1486 16.2320 46.1413 -Impact.ttf 30 p 25.8600 43.1785 63 U -8.5861 26.8215 47.0198 -Impact.ttf 30 p 25.8600 43.1785 64 j -8.2950 13.7692 51.4610 -Impact.ttf 30 p 25.8600 43.1785 65 ( -8.3055 14.9285 46.1413 -Impact.ttf 30 p 25.8600 43.1785 66 7 -8.6648 22.3245 46.1413 -Impact.ttf 30 p 25.8600 43.1785 67 § -9.3362 25.6430 53.5180 -Impact.ttf 30 p 25.8600 43.1785 68 $ -12.0976 26.8215 54.0680 -Impact.ttf 30 p 25.8600 43.1785 69 € -9.3495 28.6058 47.8983 -Impact.ttf 30 p 25.8600 43.1785 70 / -9.2586 22.7302 48.3733 -Impact.ttf 30 p 25.8600 43.1785 71 C -9.0285 26.9465 47.8983 -Impact.ttf 30 p 25.8600 43.1785 72 * -8.1883 15.4705 13.7692 -Impact.ttf 30 p 25.8600 43.1785 73 ” -8.3293 19.2175 14.9477 -Impact.ttf 30 p 25.8600 43.1785 74 ? -9.3261 26.8215 47.0198 -Impact.ttf 30 p 25.8600 43.1785 75 { -8.5351 19.1675 54.8215 -Impact.ttf 30 p 25.8600 43.1785 76 } -8.2520 19.1675 54.8215 -Impact.ttf 30 p 25.8600 43.1785 77 , 28.9588 8.4302 14.9477 -Impact.ttf 30 p 25.8600 43.1785 78 I -8.1824 11.6430 46.1413 -Impact.ttf 30 p 25.8600 43.1785 79 ° -9.1680 18.0163 18.0163 -Impact.ttf 30 p 25.8600 43.1785 80 K -8.5189 30.3570 46.1413 -Impact.ttf 30 p 25.8600 43.1785 81 H -8.2111 27.2192 46.1413 -Impact.ttf 30 p 25.8600 43.1785 82 q -0.1294 25.8600 43.1785 -Impact.ttf 30 p 25.8600 43.1785 83 & -0.0658 33.5925 37.8587 -Impact.ttf 30 p 25.8600 43.1785 84 ’ -8.1250 8.4302 14.9477 -Impact.ttf 30 p 25.8600 43.1785 85 [ -8.3982 13.3942 46.1413 -Impact.ttf 30 p 25.8600 43.1785 86 - 14.7632 14.8785 7.9267 -Impact.ttf 30 p 25.8600 43.1785 87 Y -8.2798 27.6250 46.1413 -Impact.ttf 30 p 25.8600 43.1785 88 Q -8.9062 26.8215 52.3395 -Impact.ttf 30 p 25.8600 43.1785 89 " -8.4248 19.7175 14.0000 -Impact.ttf 30 p 25.8600 43.1785 90 ! -8.3752 12.8215 46.1413 -Impact.ttf 30 p 25.8600 43.1785 91 x 0.1196 25.1760 37.8587 -Impact.ttf 30 p 25.8600 43.1785 92 ) -8.4032 14.9285 46.1413 -Impact.ttf 30 p 25.8600 43.1785 93 = 6.4596 27.6670 16.7320 -Impact.ttf 30 p 25.8600 43.1785 94 + 1.7048 27.1773 27.1773 -Impact.ttf 30 p 25.8600 43.1785 95 X -8.3543 29.6400 46.1413 -Impact.ttf 30 p 25.8600 43.1785 96 » 1.4093 19.6198 32.7140 -Impact.ttf 30 p 25.8600 43.1785 97 ' -8.0915 8.6802 14.0000 -Impact.ttf 30 p 25.8600 43.1785 98 ¢ -7.9222 25.8600 49.5017 -Impact.ttf 30 p 25.8600 43.1785 99 Z -8.4081 22.6245 46.1413 -Impact.ttf 30 p 25.8600 43.1785 100 > 0.0627 27.6670 29.1785 -Impact.ttf 30 p 25.8600 43.1785 101 ® -5.5119 43.1785 43.3035 -Impact.ttf 30 p 25.8600 43.1785 102 © -4.2404 43.1785 42.0000 -Impact.ttf 30 p 25.8600 43.1785 103 ] -8.2436 13.3942 46.1413 -Impact.ttf 30 p 25.8600 43.1785 104 é -9.3180 25.5600 47.5698 -Impact.ttf 30 p 25.8600 43.1785 105 z -0.0990 19.3198 37.8587 -Impact.ttf 30 p 25.8600 43.1785 106 _ 42.0224 32.1413 2.8378 -Impact.ttf 30 p 25.8600 43.1785 107 ¥ -8.1473 27.6250 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 1 t 3.0467 17.0878 43.1785 -Impact.ttf 31 “ 19.2175 14.9477 2 h -0.2739 25.8600 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 3 a 8.3911 24.6815 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 4 n 8.2941 25.8600 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 5 P 0.0129 25.1622 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 6 o 7.9572 25.5600 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 7 e 8.3711 25.5600 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 8 : 15.9098 8.6802 30.3570 -Impact.ttf 31 “ 19.2175 14.9477 9 r 8.5393 17.9105 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 10 l 0.3782 11.1622 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 11 i -0.0794 11.1622 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 12 1 0.0315 19.5925 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 13 | 0.0917 5.8425 53.6430 -Impact.ttf 31 “ 19.2175 14.9477 14 N -0.0143 26.3407 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 15 f 0.1585 15.6593 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 16 g 8.1916 25.8600 44.3570 -Impact.ttf 31 “ 19.2175 14.9477 17 d 0.0357 25.8600 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 18 W -0.0468 46.2890 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 19 s 8.1171 23.5030 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 20 c 8.3020 24.6815 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 21 u 8.6849 25.8600 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 22 3 -0.8803 25.7680 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 23 ~ 15.3871 26.7885 12.8907 -Impact.ttf 31 “ 19.2175 14.9477 24 # 4.9140 34.6652 41.1215 -Impact.ttf 31 “ 19.2175 14.9477 25 O -1.1509 26.8215 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 26 ` -4.7971 15.1785 7.9267 -Impact.ttf 31 “ 19.2175 14.9477 27 @ -0.9499 43.1785 48.8040 -Impact.ttf 31 “ 19.2175 14.9477 28 F 0.1755 20.2675 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 29 S -0.8159 27.5192 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 30 p 8.4850 25.8600 43.1785 -Impact.ttf 31 “ 19.2175 14.9477 31 “ 0.0560 19.2175 14.9477 -Impact.ttf 31 “ 19.2175 14.9477 32 % -0.7830 37.9837 47.0198 -Impact.ttf 31 “ 19.2175 14.9477 33 £ -0.7603 28.2727 47.0198 -Impact.ttf 31 “ 19.2175 14.9477 34 . 36.6640 8.6802 9.3360 -Impact.ttf 31 “ 19.2175 14.9477 35 2 -0.8025 23.9837 47.0198 -Impact.ttf 31 “ 19.2175 14.9477 36 5 -0.2456 26.3407 47.0198 -Impact.ttf 31 “ 19.2175 14.9477 37 m 8.1822 40.4657 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 38 V -0.1061 31.0355 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 39 6 -0.9846 26.3407 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 40 w 8.2623 38.9680 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 41 T -0.0482 26.3407 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 42 M -0.1269 36.8052 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 43 G -1.0443 26.9465 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 44 b 0.0083 25.8600 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 45 9 -1.0268 26.3407 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 46 ; 15.6076 8.6802 36.1995 -Impact.ttf 31 “ 19.2175 14.9477 47 D -0.2952 26.9465 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 48 L -0.1242 18.8948 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 49 y 8.3242 27.3942 43.1785 -Impact.ttf 31 “ 19.2175 14.9477 50 ‘ -0.0514 8.4302 14.9477 -Impact.ttf 31 “ 19.2175 14.9477 51 \ -1.0535 23.9087 48.3733 -Impact.ttf 31 “ 19.2175 14.9477 52 R 0.1009 26.3407 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 53 < 7.9736 27.6670 29.1785 -Impact.ttf 31 “ 19.2175 14.9477 54 4 0.0468 28.6977 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 55 8 -0.5522 26.0407 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 56 0 -0.6973 26.3407 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 57 A 0.0032 31.5355 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 58 E 0.0955 20.4483 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 59 B -0.0955 26.9465 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 60 v 8.1801 26.8215 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 61 k -0.0527 25.7680 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 62 J 0.0713 16.2320 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 63 U -0.0357 26.8215 47.0198 -Impact.ttf 31 “ 19.2175 14.9477 64 j -0.1027 13.7692 51.4610 -Impact.ttf 31 “ 19.2175 14.9477 65 ( 0.0742 14.9285 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 66 7 0.0676 22.3245 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 67 § -0.9346 25.6430 53.5180 -Impact.ttf 31 “ 19.2175 14.9477 68 $ -3.6970 26.8215 54.0680 -Impact.ttf 31 “ 19.2175 14.9477 69 € -1.0171 28.6058 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 70 / -1.1406 22.7302 48.3733 -Impact.ttf 31 “ 19.2175 14.9477 71 C -0.6242 26.9465 47.8983 -Impact.ttf 31 “ 19.2175 14.9477 72 * -0.1626 15.4705 13.7692 -Impact.ttf 31 “ 19.2175 14.9477 73 ” 0.1312 19.2175 14.9477 -Impact.ttf 31 “ 19.2175 14.9477 74 ? -1.0156 26.8215 47.0198 -Impact.ttf 31 “ 19.2175 14.9477 75 { -0.1236 19.1675 54.8215 -Impact.ttf 31 “ 19.2175 14.9477 76 } 0.2151 19.1675 54.8215 -Impact.ttf 31 “ 19.2175 14.9477 77 , 36.8363 8.4302 14.9477 -Impact.ttf 31 “ 19.2175 14.9477 78 I -0.1274 11.6430 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 79 ° -0.7900 18.0163 18.0163 -Impact.ttf 31 “ 19.2175 14.9477 80 K -0.0917 30.3570 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 81 H -0.3959 27.2192 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 82 q 8.2409 25.8600 43.1785 -Impact.ttf 31 “ 19.2175 14.9477 83 & 8.2825 33.5925 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 84 ’ 0.0500 8.4302 14.9477 -Impact.ttf 31 “ 19.2175 14.9477 85 [ 0.2460 13.3942 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 86 - 23.0360 14.8785 7.9267 -Impact.ttf 31 “ 19.2175 14.9477 87 Y -0.0774 27.6250 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 88 Q -1.0346 26.8215 52.3395 -Impact.ttf 31 “ 19.2175 14.9477 89 " -0.0010 19.7175 14.0000 -Impact.ttf 31 “ 19.2175 14.9477 90 ! 0.0181 12.8215 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 91 x 8.2255 25.1760 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 92 ) 0.0469 14.9285 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 93 = 14.8701 27.6670 16.7320 -Impact.ttf 31 “ 19.2175 14.9477 94 + 9.6905 27.1773 27.1773 -Impact.ttf 31 “ 19.2175 14.9477 95 X -0.1113 29.6400 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 96 » 9.7827 19.6198 32.7140 -Impact.ttf 31 “ 19.2175 14.9477 97 ' 0.1344 8.6802 14.0000 -Impact.ttf 31 “ 19.2175 14.9477 98 ¢ 0.0365 25.8600 49.5017 -Impact.ttf 31 “ 19.2175 14.9477 99 Z 0.2081 22.6245 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 100 > 8.2586 27.6670 29.1785 -Impact.ttf 31 “ 19.2175 14.9477 101 ® 3.0314 43.1785 43.3035 -Impact.ttf 31 “ 19.2175 14.9477 102 © 4.0073 43.1785 42.0000 -Impact.ttf 31 “ 19.2175 14.9477 103 ] -0.0612 13.3942 46.1413 -Impact.ttf 31 “ 19.2175 14.9477 104 é -1.6080 25.5600 47.5698 -Impact.ttf 31 “ 19.2175 14.9477 105 z 8.2143 19.3198 37.8587 -Impact.ttf 31 “ 19.2175 14.9477 106 _ 50.5392 32.1413 2.8378 -Impact.ttf 31 “ 19.2175 14.9477 107 ¥ 0.0885 27.6250 46.1413 -Impact.ttf 32 % 37.9837 47.0198 1 t 3.4478 17.0878 43.1785 -Impact.ttf 32 % 37.9837 47.0198 2 h 1.1158 25.8600 46.1413 -Impact.ttf 32 % 37.9837 47.0198 3 a 9.2033 24.6815 37.8587 -Impact.ttf 32 % 37.9837 47.0198 4 n 9.1995 25.8600 37.8587 -Impact.ttf 32 % 37.9837 47.0198 5 P 1.1825 25.1622 46.1413 -Impact.ttf 32 % 37.9837 47.0198 6 o 9.1495 25.5600 37.8587 -Impact.ttf 32 % 37.9837 47.0198 7 e 9.3706 25.5600 37.8587 -Impact.ttf 32 % 37.9837 47.0198 8 : 16.6800 8.6802 30.3570 -Impact.ttf 32 % 37.9837 47.0198 9 r 9.2036 17.9105 37.8587 -Impact.ttf 32 % 37.9837 47.0198 10 l 0.9025 11.1622 46.1413 -Impact.ttf 32 % 37.9837 47.0198 11 i 1.1737 11.1622 46.1413 -Impact.ttf 32 % 37.9837 47.0198 12 1 0.7256 19.5925 46.1413 -Impact.ttf 32 % 37.9837 47.0198 13 | 0.9373 5.8425 53.6430 -Impact.ttf 32 % 37.9837 47.0198 14 N 0.6357 26.3407 46.1413 -Impact.ttf 32 % 37.9837 47.0198 15 f 0.7043 15.6593 46.1413 -Impact.ttf 32 % 37.9837 47.0198 16 g 9.1838 25.8600 44.3570 -Impact.ttf 32 % 37.9837 47.0198 17 d 1.1834 25.8600 46.1413 -Impact.ttf 32 % 37.9837 47.0198 18 W 0.7644 46.2890 46.1413 -Impact.ttf 32 % 37.9837 47.0198 19 s 9.2838 23.5030 37.8587 -Impact.ttf 32 % 37.9837 47.0198 20 c 9.2818 24.6815 37.8587 -Impact.ttf 32 % 37.9837 47.0198 21 u 9.1624 25.8600 37.8587 -Impact.ttf 32 % 37.9837 47.0198 22 3 0.2169 25.7680 47.8983 -Impact.ttf 32 % 37.9837 47.0198 23 ~ 16.4586 26.7885 12.8907 -Impact.ttf 32 % 37.9837 47.0198 24 # 6.0081 34.6652 41.1215 -Impact.ttf 32 % 37.9837 47.0198 25 O -0.0232 26.8215 47.8983 -Impact.ttf 32 % 37.9837 47.0198 26 ` -4.2228 15.1785 7.9267 -Impact.ttf 32 % 37.9837 47.0198 27 @ -0.1794 43.1785 48.8040 -Impact.ttf 32 % 37.9837 47.0198 28 F 0.9193 20.2675 46.1413 -Impact.ttf 32 % 37.9837 47.0198 29 S -0.0272 27.5192 47.8983 -Impact.ttf 32 % 37.9837 47.0198 30 p 9.1510 25.8600 43.1785 -Impact.ttf 32 % 37.9837 47.0198 31 “ 1.0866 19.2175 14.9477 -Impact.ttf 32 % 37.9837 47.0198 32 % -0.1154 37.9837 47.0198 -Impact.ttf 32 % 37.9837 47.0198 33 £ -0.4273 28.2727 47.0198 -Impact.ttf 32 % 37.9837 47.0198 34 . 37.5071 8.6802 9.3360 -Impact.ttf 32 % 37.9837 47.0198 35 2 -0.3920 23.9837 47.0198 -Impact.ttf 32 % 37.9837 47.0198 36 5 0.8057 26.3407 47.0198 -Impact.ttf 32 % 37.9837 47.0198 37 m 9.4428 40.4657 37.8587 -Impact.ttf 32 % 37.9837 47.0198 38 V 0.3965 31.0355 46.1413 -Impact.ttf 32 % 37.9837 47.0198 39 6 -0.0106 26.3407 47.8983 -Impact.ttf 32 % 37.9837 47.0198 40 w 9.0109 38.9680 37.8587 -Impact.ttf 32 % 37.9837 47.0198 41 T 0.5119 26.3407 46.1413 -Impact.ttf 32 % 37.9837 47.0198 42 M 1.3620 36.8052 46.1413 -Impact.ttf 32 % 37.9837 47.0198 43 G -0.0597 26.9465 47.8983 -Impact.ttf 32 % 37.9837 47.0198 44 b 0.8530 25.8600 46.1413 -Impact.ttf 32 % 37.9837 47.0198 45 9 -0.0389 26.3407 47.8983 -Impact.ttf 32 % 37.9837 47.0198 46 ; 16.5247 8.6802 36.1995 -Impact.ttf 32 % 37.9837 47.0198 47 D 1.0180 26.9465 46.1413 -Impact.ttf 32 % 37.9837 47.0198 48 L 1.1612 18.8948 46.1413 -Impact.ttf 32 % 37.9837 47.0198 49 y 9.0708 27.3942 43.1785 -Impact.ttf 32 % 37.9837 47.0198 50 ‘ 0.8470 8.4302 14.9477 -Impact.ttf 32 % 37.9837 47.0198 51 \ 0.2323 23.9087 48.3733 -Impact.ttf 32 % 37.9837 47.0198 52 R 1.2140 26.3407 46.1413 -Impact.ttf 32 % 37.9837 47.0198 53 < 9.1672 27.6670 29.1785 -Impact.ttf 32 % 37.9837 47.0198 54 4 0.7798 28.6977 46.1413 -Impact.ttf 32 % 37.9837 47.0198 55 8 0.0205 26.0407 47.8983 -Impact.ttf 32 % 37.9837 47.0198 56 0 -0.1024 26.3407 47.8983 -Impact.ttf 32 % 37.9837 47.0198 57 A 1.0384 31.5355 46.1413 -Impact.ttf 32 % 37.9837 47.0198 58 E 0.7386 20.4483 46.1413 -Impact.ttf 32 % 37.9837 47.0198 59 B 0.7159 26.9465 46.1413 -Impact.ttf 32 % 37.9837 47.0198 60 v 9.1253 26.8215 37.8587 -Impact.ttf 32 % 37.9837 47.0198 61 k 1.0903 25.7680 46.1413 -Impact.ttf 32 % 37.9837 47.0198 62 J 0.6398 16.2320 46.1413 -Impact.ttf 32 % 37.9837 47.0198 63 U 0.9541 26.8215 47.0198 -Impact.ttf 32 % 37.9837 47.0198 64 j 0.8316 13.7692 51.4610 -Impact.ttf 32 % 37.9837 47.0198 65 ( 0.8368 14.9285 46.1413 -Impact.ttf 32 % 37.9837 47.0198 66 7 0.8084 22.3245 46.1413 -Impact.ttf 32 % 37.9837 47.0198 67 § -0.0412 25.6430 53.5180 -Impact.ttf 32 % 37.9837 47.0198 68 $ -3.1995 26.8215 54.0680 -Impact.ttf 32 % 37.9837 47.0198 69 € -0.1199 28.6058 47.8983 -Impact.ttf 32 % 37.9837 47.0198 70 / -0.2863 22.7302 48.3733 -Impact.ttf 32 % 37.9837 47.0198 71 C -0.0422 26.9465 47.8983 -Impact.ttf 32 % 37.9837 47.0198 72 * 0.7316 15.4705 13.7692 -Impact.ttf 32 % 37.9837 47.0198 73 ” 0.9487 19.2175 14.9477 -Impact.ttf 32 % 37.9837 47.0198 74 ? 0.5198 26.8215 47.0198 -Impact.ttf 32 % 37.9837 47.0198 75 { 0.7248 19.1675 54.8215 -Impact.ttf 32 % 37.9837 47.0198 76 } 0.8002 19.1675 54.8215 -Impact.ttf 32 % 37.9837 47.0198 77 , 37.6050 8.4302 14.9477 -Impact.ttf 32 % 37.9837 47.0198 78 I 0.8043 11.6430 46.1413 -Impact.ttf 32 % 37.9837 47.0198 79 ° 0.0083 18.0163 18.0163 -Impact.ttf 32 % 37.9837 47.0198 80 K 0.8753 30.3570 46.1413 -Impact.ttf 32 % 37.9837 47.0198 81 H 1.0249 27.2192 46.1413 -Impact.ttf 32 % 37.9837 47.0198 82 q 9.0823 25.8600 43.1785 -Impact.ttf 32 % 37.9837 47.0198 83 & 8.9829 33.5925 37.8587 -Impact.ttf 32 % 37.9837 47.0198 84 ’ 0.7177 8.4302 14.9477 -Impact.ttf 32 % 37.9837 47.0198 85 [ 0.8330 13.3942 46.1413 -Impact.ttf 32 % 37.9837 47.0198 86 - 23.7663 14.8785 7.9267 -Impact.ttf 32 % 37.9837 47.0198 87 Y 0.9782 27.6250 46.1413 -Impact.ttf 32 % 37.9837 47.0198 88 Q 0.1853 26.8215 52.3395 -Impact.ttf 32 % 37.9837 47.0198 89 " 1.1108 19.7175 14.0000 -Impact.ttf 32 % 37.9837 47.0198 90 ! 0.9142 12.8215 46.1413 -Impact.ttf 32 % 37.9837 47.0198 91 x 9.2477 25.1760 37.8587 -Impact.ttf 32 % 37.9837 47.0198 92 ) 0.7545 14.9285 46.1413 -Impact.ttf 32 % 37.9837 47.0198 93 = 15.8718 27.6670 16.7320 -Impact.ttf 32 % 37.9837 47.0198 94 + 10.9333 27.1773 27.1773 -Impact.ttf 32 % 37.9837 47.0198 95 X 0.8043 29.6400 46.1413 -Impact.ttf 32 % 37.9837 47.0198 96 » 10.4685 19.6198 32.7140 -Impact.ttf 32 % 37.9837 47.0198 97 ' 0.7775 8.6802 14.0000 -Impact.ttf 32 % 37.9837 47.0198 98 ¢ 0.9270 25.8600 49.5017 -Impact.ttf 32 % 37.9837 47.0198 99 Z 0.9428 22.6245 46.1413 -Impact.ttf 32 % 37.9837 47.0198 100 > 8.9076 27.6670 29.1785 -Impact.ttf 32 % 37.9837 47.0198 101 ® 3.6791 43.1785 43.3035 -Impact.ttf 32 % 37.9837 47.0198 102 © 5.2557 43.1785 42.0000 -Impact.ttf 32 % 37.9837 47.0198 103 ] 0.7464 13.3942 46.1413 -Impact.ttf 32 % 37.9837 47.0198 104 é -0.5583 25.5600 47.5698 -Impact.ttf 32 % 37.9837 47.0198 105 z 9.3372 19.3198 37.8587 -Impact.ttf 32 % 37.9837 47.0198 106 _ 51.4023 32.1413 2.8378 -Impact.ttf 32 % 37.9837 47.0198 107 ¥ 0.8230 27.6250 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 1 t 3.7972 17.0878 43.1785 -Impact.ttf 33 £ 28.2727 47.0198 2 h 0.7873 25.8600 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 3 a 9.1606 24.6815 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 4 n 9.0201 25.8600 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 5 P 0.6444 25.1622 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 6 o 8.9789 25.5600 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 7 e 8.7889 25.5600 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 8 : 16.5269 8.6802 30.3570 -Impact.ttf 33 £ 28.2727 47.0198 9 r 9.1124 17.9105 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 10 l 0.8772 11.1622 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 11 i 0.7414 11.1622 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 12 1 0.8603 19.5925 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 13 | 0.8455 5.8425 53.6430 -Impact.ttf 33 £ 28.2727 47.0198 14 N 0.8192 26.3407 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 15 f 0.9554 15.6593 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 16 g 9.0090 25.8600 44.3570 -Impact.ttf 33 £ 28.2727 47.0198 17 d 1.1068 25.8600 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 18 W 0.6598 46.2890 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 19 s 9.0656 23.5030 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 20 c 9.0798 24.6815 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 21 u 8.9095 25.8600 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 22 3 -0.2470 25.7680 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 23 ~ 16.3078 26.7885 12.8907 -Impact.ttf 33 £ 28.2727 47.0198 24 # 5.9205 34.6652 41.1215 -Impact.ttf 33 £ 28.2727 47.0198 25 O 0.0969 26.8215 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 26 ` -4.1629 15.1785 7.9267 -Impact.ttf 33 £ 28.2727 47.0198 27 @ -0.4492 43.1785 48.8040 -Impact.ttf 33 £ 28.2727 47.0198 28 F 0.8747 20.2675 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 29 S -0.0088 27.5192 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 30 p 9.2838 25.8600 43.1785 -Impact.ttf 33 £ 28.2727 47.0198 31 “ 0.8998 19.2175 14.9477 -Impact.ttf 33 £ 28.2727 47.0198 32 % -0.1020 37.9837 47.0198 -Impact.ttf 33 £ 28.2727 47.0198 33 £ 0.2827 28.2727 47.0198 -Impact.ttf 33 £ 28.2727 47.0198 34 . 37.5776 8.6802 9.3360 -Impact.ttf 33 £ 28.2727 47.0198 35 2 -0.3911 23.9837 47.0198 -Impact.ttf 33 £ 28.2727 47.0198 36 5 1.0755 26.3407 47.0198 -Impact.ttf 33 £ 28.2727 47.0198 37 m 8.8427 40.4657 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 38 V 1.0366 31.0355 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 39 6 -0.0992 26.3407 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 40 w 9.3037 38.9680 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 41 T 0.9285 26.3407 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 42 M 1.0240 36.8052 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 43 G -0.0546 26.9465 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 44 b 0.8478 25.8600 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 45 9 0.2221 26.3407 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 46 ; 16.6295 8.6802 36.1995 -Impact.ttf 33 £ 28.2727 47.0198 47 D 0.9272 26.9465 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 48 L 0.8118 18.8948 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 49 y 8.9029 27.3942 43.1785 -Impact.ttf 33 £ 28.2727 47.0198 50 ‘ 0.8127 8.4302 14.9477 -Impact.ttf 33 £ 28.2727 47.0198 51 \ -0.0766 23.9087 48.3733 -Impact.ttf 33 £ 28.2727 47.0198 52 R 0.8170 26.3407 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 53 < 8.9322 27.6670 29.1785 -Impact.ttf 33 £ 28.2727 47.0198 54 4 0.7145 28.6977 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 55 8 0.0745 26.0407 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 56 0 0.1530 26.3407 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 57 A 0.7473 31.5355 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 58 E 0.9597 20.4483 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 59 B 0.8983 26.9465 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 60 v 9.1981 26.8215 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 61 k 1.0611 25.7680 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 62 J 0.7905 16.2320 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 63 U 0.7946 26.8215 47.0198 -Impact.ttf 33 £ 28.2727 47.0198 64 j 0.7575 13.7692 51.4610 -Impact.ttf 33 £ 28.2727 47.0198 65 ( 0.7875 14.9285 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 66 7 0.8955 22.3245 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 67 § -0.0955 25.6430 53.5180 -Impact.ttf 33 £ 28.2727 47.0198 68 $ -2.8477 26.8215 54.0680 -Impact.ttf 33 £ 28.2727 47.0198 69 € 0.0742 28.6058 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 70 / -0.0781 22.7302 48.3733 -Impact.ttf 33 £ 28.2727 47.0198 71 C 0.0042 26.9465 47.8983 -Impact.ttf 33 £ 28.2727 47.0198 72 * 1.1210 15.4705 13.7692 -Impact.ttf 33 £ 28.2727 47.0198 73 ” 0.8900 19.2175 14.9477 -Impact.ttf 33 £ 28.2727 47.0198 74 ? -0.2016 26.8215 47.0198 -Impact.ttf 33 £ 28.2727 47.0198 75 { 0.7856 19.1675 54.8215 -Impact.ttf 33 £ 28.2727 47.0198 76 } 1.0768 19.1675 54.8215 -Impact.ttf 33 £ 28.2727 47.0198 77 , 37.9957 8.4302 14.9477 -Impact.ttf 33 £ 28.2727 47.0198 78 I 0.8243 11.6430 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 79 ° -0.0399 18.0163 18.0163 -Impact.ttf 33 £ 28.2727 47.0198 80 K 0.7473 30.3570 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 81 H 0.7644 27.2192 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 82 q 9.4553 25.8600 43.1785 -Impact.ttf 33 £ 28.2727 47.0198 83 & 9.1323 33.5925 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 84 ’ 0.9726 8.4302 14.9477 -Impact.ttf 33 £ 28.2727 47.0198 85 [ 0.8273 13.3942 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 86 - 24.1797 14.8785 7.9267 -Impact.ttf 33 £ 28.2727 47.0198 87 Y 0.9280 27.6250 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 88 Q -0.1280 26.8215 52.3395 -Impact.ttf 33 £ 28.2727 47.0198 89 " 0.6195 19.7175 14.0000 -Impact.ttf 33 £ 28.2727 47.0198 90 ! 0.9715 12.8215 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 91 x 9.0167 25.1760 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 92 ) 0.8827 14.9285 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 93 = 15.9265 27.6670 16.7320 -Impact.ttf 33 £ 28.2727 47.0198 94 + 10.8815 27.1773 27.1773 -Impact.ttf 33 £ 28.2727 47.0198 95 X 0.9902 29.6400 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 96 » 10.5300 19.6198 32.7140 -Impact.ttf 33 £ 28.2727 47.0198 97 ' 1.3555 8.6802 14.0000 -Impact.ttf 33 £ 28.2727 47.0198 98 ¢ 0.9188 25.8600 49.5017 -Impact.ttf 33 £ 28.2727 47.0198 99 Z 0.8615 22.6245 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 100 > 8.8664 27.6670 29.1785 -Impact.ttf 33 £ 28.2727 47.0198 101 ® 3.4238 43.1785 43.3035 -Impact.ttf 33 £ 28.2727 47.0198 102 © 4.9313 43.1785 42.0000 -Impact.ttf 33 £ 28.2727 47.0198 103 ] 1.1168 13.3942 46.1413 -Impact.ttf 33 £ 28.2727 47.0198 104 é -0.4740 25.5600 47.5698 -Impact.ttf 33 £ 28.2727 47.0198 105 z 8.9043 19.3198 37.8587 -Impact.ttf 33 £ 28.2727 47.0198 106 _ 51.5149 32.1413 2.8378 -Impact.ttf 33 £ 28.2727 47.0198 107 ¥ 0.8173 27.6250 46.1413 -Impact.ttf 34 . 8.6802 9.3360 1 t -33.9309 17.0878 43.1785 -Impact.ttf 34 . 8.6802 9.3360 2 h -36.7311 25.8600 46.1413 -Impact.ttf 34 . 8.6802 9.3360 3 a -28.5612 24.6815 37.8587 -Impact.ttf 34 . 8.6802 9.3360 4 n -28.4870 25.8600 37.8587 -Impact.ttf 34 . 8.6802 9.3360 5 P -36.8052 25.1622 46.1413 -Impact.ttf 34 . 8.6802 9.3360 6 o -28.5612 25.5600 37.8587 -Impact.ttf 34 . 8.6802 9.3360 7 e -28.3453 25.5600 37.8587 -Impact.ttf 34 . 8.6802 9.3360 8 : -21.0210 8.6802 30.3570 -Impact.ttf 34 . 8.6802 9.3360 9 r -28.4417 17.9105 37.8587 -Impact.ttf 34 . 8.6802 9.3360 10 l -37.0050 11.1622 46.1413 -Impact.ttf 34 . 8.6802 9.3360 11 i -36.7311 11.1622 46.1413 -Impact.ttf 34 . 8.6802 9.3360 12 1 -36.5517 19.5925 46.1413 -Impact.ttf 34 . 8.6802 9.3360 13 | -36.7636 5.8425 53.6430 -Impact.ttf 34 . 8.6802 9.3360 14 N -36.6259 26.3407 46.1413 -Impact.ttf 34 . 8.6802 9.3360 15 f -36.6867 15.6593 46.1413 -Impact.ttf 34 . 8.6802 9.3360 16 g -28.3646 25.8600 44.3570 -Impact.ttf 34 . 8.6802 9.3360 17 d -36.8826 25.8600 46.1413 -Impact.ttf 34 . 8.6802 9.3360 18 W -36.8864 46.2890 46.1413 -Impact.ttf 34 . 8.6802 9.3360 19 s -28.4343 23.5030 37.8587 -Impact.ttf 34 . 8.6802 9.3360 20 c -28.4343 24.6815 37.8587 -Impact.ttf 34 . 8.6802 9.3360 21 u -28.3986 25.8600 37.8587 -Impact.ttf 34 . 8.6802 9.3360 22 3 -37.6369 25.7680 47.8983 -Impact.ttf 34 . 8.6802 9.3360 23 ~ -21.2448 26.7885 12.8907 -Impact.ttf 34 . 8.6802 9.3360 24 # -32.0255 34.6652 41.1215 -Impact.ttf 34 . 8.6802 9.3360 25 O -37.6907 26.8215 47.8983 -Impact.ttf 34 . 8.6802 9.3360 26 ` -41.7692 15.1785 7.9267 -Impact.ttf 34 . 8.6802 9.3360 27 @ -37.5526 43.1785 48.8040 -Impact.ttf 34 . 8.6802 9.3360 28 F -36.8084 20.2675 46.1413 -Impact.ttf 34 . 8.6802 9.3360 29 S -37.7935 27.5192 47.8983 -Impact.ttf 34 . 8.6802 9.3360 30 p -28.4486 25.8600 43.1785 -Impact.ttf 34 . 8.6802 9.3360 31 “ -36.7311 19.2175 14.9477 -Impact.ttf 34 . 8.6802 9.3360 32 % -37.8418 37.9837 47.0198 -Impact.ttf 34 . 8.6802 9.3360 33 £ -37.7436 28.2727 47.0198 -Impact.ttf 34 . 8.6802 9.3360 34 . 0.0774 8.6802 9.3360 -Impact.ttf 34 . 8.6802 9.3360 35 2 -37.5071 23.9837 47.0198 -Impact.ttf 34 . 8.6802 9.3360 36 5 -36.8622 26.3407 47.0198 -Impact.ttf 34 . 8.6802 9.3360 37 m -28.5227 40.4657 37.8587 -Impact.ttf 34 . 8.6802 9.3360 38 V -36.8052 31.0355 46.1413 -Impact.ttf 34 . 8.6802 9.3360 39 6 -37.7254 26.3407 47.8983 -Impact.ttf 34 . 8.6802 9.3360 40 w -28.5287 38.9680 37.8587 -Impact.ttf 34 . 8.6802 9.3360 41 T -36.7552 26.3407 46.1413 -Impact.ttf 34 . 8.6802 9.3360 42 M -36.8410 36.8052 46.1413 -Impact.ttf 34 . 8.6802 9.3360 43 G -37.5544 26.9465 47.8983 -Impact.ttf 34 . 8.6802 9.3360 44 b -36.9007 25.8600 46.1413 -Impact.ttf 34 . 8.6802 9.3360 45 9 -37.7078 26.3407 47.8983 -Impact.ttf 34 . 8.6802 9.3360 46 ; -21.1262 8.6802 36.1995 -Impact.ttf 34 . 8.6802 9.3360 47 D -36.9462 26.9465 46.1413 -Impact.ttf 34 . 8.6802 9.3360 48 L -36.5999 18.8948 46.1413 -Impact.ttf 34 . 8.6802 9.3360 49 y -28.3146 27.3942 43.1785 -Impact.ttf 34 . 8.6802 9.3360 50 ‘ -36.8697 8.4302 14.9477 -Impact.ttf 34 . 8.6802 9.3360 51 \ -37.8022 23.9087 48.3733 -Impact.ttf 34 . 8.6802 9.3360 52 R -36.8052 26.3407 46.1413 -Impact.ttf 34 . 8.6802 9.3360 53 < -28.6477 27.6670 29.1785 -Impact.ttf 34 . 8.6802 9.3360 54 4 -36.8469 28.6977 46.1413 -Impact.ttf 34 . 8.6802 9.3360 55 8 -37.4302 26.0407 47.8983 -Impact.ttf 34 . 8.6802 9.3360 56 0 -37.8391 26.3407 47.8983 -Impact.ttf 34 . 8.6802 9.3360 57 A -36.8118 31.5355 46.1413 -Impact.ttf 34 . 8.6802 9.3360 58 E -36.7695 20.4483 46.1413 -Impact.ttf 34 . 8.6802 9.3360 59 B -36.8924 26.9465 46.1413 -Impact.ttf 34 . 8.6802 9.3360 60 v -28.4416 26.8215 37.8587 -Impact.ttf 34 . 8.6802 9.3360 61 k -36.6955 25.7680 46.1413 -Impact.ttf 34 . 8.6802 9.3360 62 J -36.8910 16.2320 46.1413 -Impact.ttf 34 . 8.6802 9.3360 63 U -36.7910 26.8215 47.0198 -Impact.ttf 34 . 8.6802 9.3360 64 j -36.8469 13.7692 51.4610 -Impact.ttf 34 . 8.6802 9.3360 65 ( -36.8580 14.9285 46.1413 -Impact.ttf 34 . 8.6802 9.3360 66 7 -36.6370 22.3245 46.1413 -Impact.ttf 34 . 8.6802 9.3360 67 § -37.8561 25.6430 53.5180 -Impact.ttf 34 . 8.6802 9.3360 68 $ -40.3858 26.8215 54.0680 -Impact.ttf 34 . 8.6802 9.3360 69 € -37.4998 28.6058 47.8983 -Impact.ttf 34 . 8.6802 9.3360 70 / -37.8945 22.7302 48.3733 -Impact.ttf 34 . 8.6802 9.3360 71 C -37.6453 26.9465 47.8983 -Impact.ttf 34 . 8.6802 9.3360 72 * -36.5977 15.4705 13.7692 -Impact.ttf 34 . 8.6802 9.3360 73 ” -36.9749 19.2175 14.9477 -Impact.ttf 34 . 8.6802 9.3360 74 ? -37.8468 26.8215 47.0198 -Impact.ttf 34 . 8.6802 9.3360 75 { -36.7987 19.1675 54.8215 -Impact.ttf 34 . 8.6802 9.3360 76 } -37.0320 19.1675 54.8215 -Impact.ttf 34 . 8.6802 9.3360 77 , 0.0097 8.4302 14.9477 -Impact.ttf 34 . 8.6802 9.3360 78 I -36.6584 11.6430 46.1413 -Impact.ttf 34 . 8.6802 9.3360 79 ° -37.6480 18.0163 18.0163 -Impact.ttf 34 . 8.6802 9.3360 80 K -36.8711 30.3570 46.1413 -Impact.ttf 34 . 8.6802 9.3360 81 H -36.6120 27.2192 46.1413 -Impact.ttf 34 . 8.6802 9.3360 82 q -28.4356 25.8600 43.1785 -Impact.ttf 34 . 8.6802 9.3360 83 & -28.4513 33.5925 37.8587 -Impact.ttf 34 . 8.6802 9.3360 84 ’ -36.7311 8.4302 14.9477 -Impact.ttf 34 . 8.6802 9.3360 85 [ -36.7612 13.3942 46.1413 -Impact.ttf 34 . 8.6802 9.3360 86 - -13.6520 14.8785 7.9267 -Impact.ttf 34 . 8.6802 9.3360 87 Y -36.5999 27.6250 46.1413 -Impact.ttf 34 . 8.6802 9.3360 88 Q -37.7722 26.8215 52.3395 -Impact.ttf 34 . 8.6802 9.3360 89 " -36.7584 19.7175 14.0000 -Impact.ttf 34 . 8.6802 9.3360 90 ! -36.5929 12.8215 46.1413 -Impact.ttf 34 . 8.6802 9.3360 91 x -28.4453 25.1760 37.8587 -Impact.ttf 34 . 8.6802 9.3360 92 ) -36.7668 14.9285 46.1413 -Impact.ttf 34 . 8.6802 9.3360 93 = -21.9065 27.6670 16.7320 -Impact.ttf 34 . 8.6802 9.3360 94 + -27.0035 27.1773 27.1773 -Impact.ttf 34 . 8.6802 9.3360 95 X -36.8052 29.6400 46.1413 -Impact.ttf 34 . 8.6802 9.3360 96 » -27.0680 19.6198 32.7140 -Impact.ttf 34 . 8.6802 9.3360 97 ' -36.8052 8.6802 14.0000 -Impact.ttf 34 . 8.6802 9.3360 98 ¢ -36.7687 25.8600 49.5017 -Impact.ttf 34 . 8.6802 9.3360 99 Z -36.8052 22.6245 46.1413 -Impact.ttf 34 . 8.6802 9.3360 100 > -28.5550 27.6670 29.1785 -Impact.ttf 34 . 8.6802 9.3360 101 ® -33.7534 43.1785 43.3035 -Impact.ttf 34 . 8.6802 9.3360 102 © -32.6678 43.1785 42.0000 -Impact.ttf 34 . 8.6802 9.3360 103 ] -36.8584 13.3942 46.1413 -Impact.ttf 34 . 8.6802 9.3360 104 é -38.2407 25.5600 47.5698 -Impact.ttf 34 . 8.6802 9.3360 105 z -28.4453 19.3198 37.8587 -Impact.ttf 34 . 8.6802 9.3360 106 _ 13.9294 32.1413 2.8378 -Impact.ttf 34 . 8.6802 9.3360 107 ¥ -36.8052 27.6250 46.1413 -Impact.ttf 35 2 23.9837 47.0198 1 t 3.9357 17.0878 43.1785 -Impact.ttf 35 2 23.9837 47.0198 2 h 0.7029 25.8600 46.1413 -Impact.ttf 35 2 23.9837 47.0198 3 a 9.1674 24.6815 37.8587 -Impact.ttf 35 2 23.9837 47.0198 4 n 9.1841 25.8600 37.8587 -Impact.ttf 35 2 23.9837 47.0198 5 P 0.8747 25.1622 46.1413 -Impact.ttf 35 2 23.9837 47.0198 6 o 8.8760 25.5600 37.8587 -Impact.ttf 35 2 23.9837 47.0198 7 e 9.1049 25.5600 37.8587 -Impact.ttf 35 2 23.9837 47.0198 8 : 16.8862 8.6802 30.3570 -Impact.ttf 35 2 23.9837 47.0198 9 r 9.0539 17.9105 37.8587 -Impact.ttf 35 2 23.9837 47.0198 10 l 0.5798 11.1622 46.1413 -Impact.ttf 35 2 23.9837 47.0198 11 i 0.6874 11.1622 46.1413 -Impact.ttf 35 2 23.9837 47.0198 12 1 0.7473 19.5925 46.1413 -Impact.ttf 35 2 23.9837 47.0198 13 | 0.7529 5.8425 53.6430 -Impact.ttf 35 2 23.9837 47.0198 14 N 0.9707 26.3407 46.1413 -Impact.ttf 35 2 23.9837 47.0198 15 f 0.6672 15.6593 46.1413 -Impact.ttf 35 2 23.9837 47.0198 16 g 9.0854 25.8600 44.3570 -Impact.ttf 35 2 23.9837 47.0198 17 d 0.7116 25.8600 46.1413 -Impact.ttf 35 2 23.9837 47.0198 18 W 0.8840 46.2890 46.1413 -Impact.ttf 35 2 23.9837 47.0198 19 s 9.1814 23.5030 37.8587 -Impact.ttf 35 2 23.9837 47.0198 20 c 9.1949 24.6815 37.8587 -Impact.ttf 35 2 23.9837 47.0198 21 u 9.2981 25.8600 37.8587 -Impact.ttf 35 2 23.9837 47.0198 22 3 -0.0330 25.7680 47.8983 -Impact.ttf 35 2 23.9837 47.0198 23 ~ 16.2694 26.7885 12.8907 -Impact.ttf 35 2 23.9837 47.0198 24 # 5.8852 34.6652 41.1215 -Impact.ttf 35 2 23.9837 47.0198 25 O -0.1718 26.8215 47.8983 -Impact.ttf 35 2 23.9837 47.0198 26 ` -4.0809 15.1785 7.9267 -Impact.ttf 35 2 23.9837 47.0198 27 @ 0.0381 43.1785 48.8040 -Impact.ttf 35 2 23.9837 47.0198 28 F 0.7089 20.2675 46.1413 -Impact.ttf 35 2 23.9837 47.0198 29 S 0.1067 27.5192 47.8983 -Impact.ttf 35 2 23.9837 47.0198 30 p 9.3510 25.8600 43.1785 -Impact.ttf 35 2 23.9837 47.0198 31 “ 0.8841 19.2175 14.9477 -Impact.ttf 35 2 23.9837 47.0198 32 % 0.0978 37.9837 47.0198 -Impact.ttf 35 2 23.9837 47.0198 33 £ -0.0599 28.2727 47.0198 -Impact.ttf 35 2 23.9837 47.0198 34 . 37.4655 8.6802 9.3360 -Impact.ttf 35 2 23.9837 47.0198 35 2 -0.1756 23.9837 47.0198 -Impact.ttf 35 2 23.9837 47.0198 36 5 0.7019 26.3407 47.0198 -Impact.ttf 35 2 23.9837 47.0198 37 m 9.1569 40.4657 37.8587 -Impact.ttf 35 2 23.9837 47.0198 38 V 0.9527 31.0355 46.1413 -Impact.ttf 35 2 23.9837 47.0198 39 6 0.1298 26.3407 47.8983 -Impact.ttf 35 2 23.9837 47.0198 40 w 9.0382 38.9680 37.8587 -Impact.ttf 35 2 23.9837 47.0198 41 T 0.7130 26.3407 46.1413 -Impact.ttf 35 2 23.9837 47.0198 42 M 0.6301 36.8052 46.1413 -Impact.ttf 35 2 23.9837 47.0198 43 G 0.0516 26.9465 47.8983 -Impact.ttf 35 2 23.9837 47.0198 44 b 0.8942 25.8600 46.1413 -Impact.ttf 35 2 23.9837 47.0198 45 9 0.2108 26.3407 47.8983 -Impact.ttf 35 2 23.9837 47.0198 46 ; 16.4937 8.6802 36.1995 -Impact.ttf 35 2 23.9837 47.0198 47 D 1.0370 26.9465 46.1413 -Impact.ttf 35 2 23.9837 47.0198 48 L 0.5170 18.8948 46.1413 -Impact.ttf 35 2 23.9837 47.0198 49 y 9.1805 27.3942 43.1785 -Impact.ttf 35 2 23.9837 47.0198 50 ‘ 0.5392 8.4302 14.9477 -Impact.ttf 35 2 23.9837 47.0198 51 \ -0.2612 23.9087 48.3733 -Impact.ttf 35 2 23.9837 47.0198 52 R 0.7446 26.3407 46.1413 -Impact.ttf 35 2 23.9837 47.0198 53 < 8.9943 27.6670 29.1785 -Impact.ttf 35 2 23.9837 47.0198 54 4 1.1682 28.6977 46.1413 -Impact.ttf 35 2 23.9837 47.0198 55 8 0.0422 26.0407 47.8983 -Impact.ttf 35 2 23.9837 47.0198 56 0 0.0571 26.3407 47.8983 -Impact.ttf 35 2 23.9837 47.0198 57 A 0.9642 31.5355 46.1413 -Impact.ttf 35 2 23.9837 47.0198 58 E 0.9684 20.4483 46.1413 -Impact.ttf 35 2 23.9837 47.0198 59 B 0.7210 26.9465 46.1413 -Impact.ttf 35 2 23.9837 47.0198 60 v 9.1726 26.8215 37.8587 -Impact.ttf 35 2 23.9837 47.0198 61 k 0.9856 25.7680 46.1413 -Impact.ttf 35 2 23.9837 47.0198 62 J 0.9712 16.2320 46.1413 -Impact.ttf 35 2 23.9837 47.0198 63 U 1.1385 26.8215 47.0198 -Impact.ttf 35 2 23.9837 47.0198 64 j 0.9499 13.7692 51.4610 -Impact.ttf 35 2 23.9837 47.0198 65 ( 0.8817 14.9285 46.1413 -Impact.ttf 35 2 23.9837 47.0198 66 7 0.7236 22.3245 46.1413 -Impact.ttf 35 2 23.9837 47.0198 67 § 0.0097 25.6430 53.5180 -Impact.ttf 35 2 23.9837 47.0198 68 $ -3.2308 26.8215 54.0680 -Impact.ttf 35 2 23.9837 47.0198 69 € 0.0917 28.6058 47.8983 -Impact.ttf 35 2 23.9837 47.0198 70 / -0.1764 22.7302 48.3733 -Impact.ttf 35 2 23.9837 47.0198 71 C 0.1533 26.9465 47.8983 -Impact.ttf 35 2 23.9837 47.0198 72 * 1.0045 15.4705 13.7692 -Impact.ttf 35 2 23.9837 47.0198 73 ” 0.6815 19.2175 14.9477 -Impact.ttf 35 2 23.9837 47.0198 74 ? 0.0801 26.8215 47.0198 -Impact.ttf 35 2 23.9837 47.0198 75 { 0.7718 19.1675 54.8215 -Impact.ttf 35 2 23.9837 47.0198 76 } 0.8952 19.1675 54.8215 -Impact.ttf 35 2 23.9837 47.0198 77 , 37.7825 8.4302 14.9477 -Impact.ttf 35 2 23.9837 47.0198 78 I 0.9127 11.6430 46.1413 -Impact.ttf 35 2 23.9837 47.0198 79 ° 0.0770 18.0163 18.0163 -Impact.ttf 35 2 23.9837 47.0198 80 K 0.7571 30.3570 46.1413 -Impact.ttf 35 2 23.9837 47.0198 81 H 0.6602 27.2192 46.1413 -Impact.ttf 35 2 23.9837 47.0198 82 q 9.4493 25.8600 43.1785 -Impact.ttf 35 2 23.9837 47.0198 83 & 9.0873 33.5925 37.8587 -Impact.ttf 35 2 23.9837 47.0198 84 ’ 0.7271 8.4302 14.9477 -Impact.ttf 35 2 23.9837 47.0198 85 [ 0.8390 13.3942 46.1413 -Impact.ttf 35 2 23.9837 47.0198 86 - 23.9177 14.8785 7.9267 -Impact.ttf 35 2 23.9837 47.0198 87 Y 1.0551 27.6250 46.1413 -Impact.ttf 35 2 23.9837 47.0198 88 Q -0.2238 26.8215 52.3395 -Impact.ttf 35 2 23.9837 47.0198 89 " 0.8642 19.7175 14.0000 -Impact.ttf 35 2 23.9837 47.0198 90 ! 0.7145 12.8215 46.1413 -Impact.ttf 35 2 23.9837 47.0198 91 x 9.3626 25.1760 37.8587 -Impact.ttf 35 2 23.9837 47.0198 92 ) 0.6721 14.9285 46.1413 -Impact.ttf 35 2 23.9837 47.0198 93 = 15.9289 27.6670 16.7320 -Impact.ttf 35 2 23.9837 47.0198 94 + 10.5047 27.1773 27.1773 -Impact.ttf 35 2 23.9837 47.0198 95 X 0.5243 29.6400 46.1413 -Impact.ttf 35 2 23.9837 47.0198 96 » 10.4846 19.6198 32.7140 -Impact.ttf 35 2 23.9837 47.0198 97 ' 0.9624 8.6802 14.0000 -Impact.ttf 35 2 23.9837 47.0198 98 ¢ 1.0360 25.8600 49.5017 -Impact.ttf 35 2 23.9837 47.0198 99 Z 0.9882 22.6245 46.1413 -Impact.ttf 35 2 23.9837 47.0198 100 > 8.9438 27.6670 29.1785 -Impact.ttf 35 2 23.9837 47.0198 101 ® 3.6736 43.1785 43.3035 -Impact.ttf 35 2 23.9837 47.0198 102 © 4.8501 43.1785 42.0000 -Impact.ttf 35 2 23.9837 47.0198 103 ] 0.7998 13.3942 46.1413 -Impact.ttf 35 2 23.9837 47.0198 104 é -0.3062 25.5600 47.5698 -Impact.ttf 35 2 23.9837 47.0198 105 z 9.1266 19.3198 37.8587 -Impact.ttf 35 2 23.9837 47.0198 106 _ 51.1343 32.1413 2.8378 -Impact.ttf 35 2 23.9837 47.0198 107 ¥ 0.9513 27.6250 46.1413 -Impact.ttf 36 5 26.3407 47.0198 1 t 3.0799 17.0878 43.1785 -Impact.ttf 36 5 26.3407 47.0198 2 h -0.1307 25.8600 46.1413 -Impact.ttf 36 5 26.3407 47.0198 3 a 8.5003 24.6815 37.8587 -Impact.ttf 36 5 26.3407 47.0198 4 n 8.1556 25.8600 37.8587 -Impact.ttf 36 5 26.3407 47.0198 5 P 0.2248 25.1622 46.1413 -Impact.ttf 36 5 26.3407 47.0198 6 o 8.1381 25.5600 37.8587 -Impact.ttf 36 5 26.3407 47.0198 7 e 8.1441 25.5600 37.8587 -Impact.ttf 36 5 26.3407 47.0198 8 : 15.7986 8.6802 30.3570 -Impact.ttf 36 5 26.3407 47.0198 9 r 8.1240 17.9105 37.8587 -Impact.ttf 36 5 26.3407 47.0198 10 l -0.0570 11.1622 46.1413 -Impact.ttf 36 5 26.3407 47.0198 11 i -0.0871 11.1622 46.1413 -Impact.ttf 36 5 26.3407 47.0198 12 1 -0.3425 19.5925 46.1413 -Impact.ttf 36 5 26.3407 47.0198 13 | -0.2435 5.8425 53.6430 -Impact.ttf 36 5 26.3407 47.0198 14 N -0.1911 26.3407 46.1413 -Impact.ttf 36 5 26.3407 47.0198 15 f 0.0871 15.6593 46.1413 -Impact.ttf 36 5 26.3407 47.0198 16 g 8.5305 25.8600 44.3570 -Impact.ttf 36 5 26.3407 47.0198 17 d 0.0389 25.8600 46.1413 -Impact.ttf 36 5 26.3407 47.0198 18 W 0.1943 46.2890 46.1413 -Impact.ttf 36 5 26.3407 47.0198 19 s 8.2612 23.5030 37.8587 -Impact.ttf 36 5 26.3407 47.0198 20 c 8.2713 24.6815 37.8587 -Impact.ttf 36 5 26.3407 47.0198 21 u 8.0568 25.8600 37.8587 -Impact.ttf 36 5 26.3407 47.0198 22 3 -0.9572 25.7680 47.8983 -Impact.ttf 36 5 26.3407 47.0198 23 ~ 15.5920 26.7885 12.8907 -Impact.ttf 36 5 26.3407 47.0198 24 # 4.9618 34.6652 41.1215 -Impact.ttf 36 5 26.3407 47.0198 25 O -0.8513 26.8215 47.8983 -Impact.ttf 36 5 26.3407 47.0198 26 ` -4.7586 15.1785 7.9267 -Impact.ttf 36 5 26.3407 47.0198 27 @ -0.8496 43.1785 48.8040 -Impact.ttf 36 5 26.3407 47.0198 28 F -0.0987 20.2675 46.1413 -Impact.ttf 36 5 26.3407 47.0198 29 S -0.6093 27.5192 47.8983 -Impact.ttf 36 5 26.3407 47.0198 30 p 8.0670 25.8600 43.1785 -Impact.ttf 36 5 26.3407 47.0198 31 “ 0.0625 19.2175 14.9477 -Impact.ttf 36 5 26.3407 47.0198 32 % -0.8809 37.9837 47.0198 -Impact.ttf 36 5 26.3407 47.0198 33 £ -1.0143 28.2727 47.0198 -Impact.ttf 36 5 26.3407 47.0198 34 . 36.7283 8.6802 9.3360 -Impact.ttf 36 5 26.3407 47.0198 35 2 -1.0073 23.9837 47.0198 -Impact.ttf 36 5 26.3407 47.0198 36 5 -0.0500 26.3407 47.0198 -Impact.ttf 36 5 26.3407 47.0198 37 m 8.1254 40.4657 37.8587 -Impact.ttf 36 5 26.3407 47.0198 38 V 0.2373 31.0355 46.1413 -Impact.ttf 36 5 26.3407 47.0198 39 6 -0.8830 26.3407 47.8983 -Impact.ttf 36 5 26.3407 47.0198 40 w 8.1889 38.9680 37.8587 -Impact.ttf 36 5 26.3407 47.0198 41 T -0.0287 26.3407 46.1413 -Impact.ttf 36 5 26.3407 47.0198 42 M 0.0129 36.8052 46.1413 -Impact.ttf 36 5 26.3407 47.0198 43 G -1.0466 26.9465 47.8983 -Impact.ttf 36 5 26.3407 47.0198 44 b -0.1234 25.8600 46.1413 -Impact.ttf 36 5 26.3407 47.0198 45 9 -0.7089 26.3407 47.8983 -Impact.ttf 36 5 26.3407 47.0198 46 ; 15.7323 8.6802 36.1995 -Impact.ttf 36 5 26.3407 47.0198 47 D 0.1677 26.9465 46.1413 -Impact.ttf 36 5 26.3407 47.0198 48 L -0.0670 18.8948 46.1413 -Impact.ttf 36 5 26.3407 47.0198 49 y 8.2825 27.3942 43.1785 -Impact.ttf 36 5 26.3407 47.0198 50 ‘ -0.1613 8.4302 14.9477 -Impact.ttf 36 5 26.3407 47.0198 51 \ -0.9991 23.9087 48.3733 -Impact.ttf 36 5 26.3407 47.0198 52 R -0.1692 26.3407 46.1413 -Impact.ttf 36 5 26.3407 47.0198 53 < 8.4296 27.6670 29.1785 -Impact.ttf 36 5 26.3407 47.0198 54 4 0.1301 28.6977 46.1413 -Impact.ttf 36 5 26.3407 47.0198 55 8 -0.8698 26.0407 47.8983 -Impact.ttf 36 5 26.3407 47.0198 56 0 -0.7330 26.3407 47.8983 -Impact.ttf 36 5 26.3407 47.0198 57 A -0.1613 31.5355 46.1413 -Impact.ttf 36 5 26.3407 47.0198 58 E -0.2508 20.4483 46.1413 -Impact.ttf 36 5 26.3407 47.0198 59 B 0.5427 26.9465 46.1413 -Impact.ttf 36 5 26.3407 47.0198 60 v 8.3701 26.8215 37.8587 -Impact.ttf 36 5 26.3407 47.0198 61 k -0.1766 25.7680 46.1413 -Impact.ttf 36 5 26.3407 47.0198 62 J -0.2383 16.2320 46.1413 -Impact.ttf 36 5 26.3407 47.0198 63 U 0.4162 26.8215 47.0198 -Impact.ttf 36 5 26.3407 47.0198 64 j 0.0074 13.7692 51.4610 -Impact.ttf 36 5 26.3407 47.0198 65 ( -0.2256 14.9285 46.1413 -Impact.ttf 36 5 26.3407 47.0198 66 7 -0.1470 22.3245 46.1413 -Impact.ttf 36 5 26.3407 47.0198 67 § -0.6519 25.6430 53.5180 -Impact.ttf 36 5 26.3407 47.0198 68 $ -3.7666 26.8215 54.0680 -Impact.ttf 36 5 26.3407 47.0198 69 € -0.5333 28.6058 47.8983 -Impact.ttf 36 5 26.3407 47.0198 70 / -1.1819 22.7302 48.3733 -Impact.ttf 36 5 26.3407 47.0198 71 C -0.8382 26.9465 47.8983 -Impact.ttf 36 5 26.3407 47.0198 72 * 0.1520 15.4705 13.7692 -Impact.ttf 36 5 26.3407 47.0198 73 ” 0.1553 19.2175 14.9477 -Impact.ttf 36 5 26.3407 47.0198 74 ? -1.1463 26.8215 47.0198 -Impact.ttf 36 5 26.3407 47.0198 75 { -0.0208 19.1675 54.8215 -Impact.ttf 36 5 26.3407 47.0198 76 } 0.0473 19.1675 54.8215 -Impact.ttf 36 5 26.3407 47.0198 77 , 36.7469 8.4302 14.9477 -Impact.ttf 36 5 26.3407 47.0198 78 I -0.1568 11.6430 46.1413 -Impact.ttf 36 5 26.3407 47.0198 79 ° -0.9855 18.0163 18.0163 -Impact.ttf 36 5 26.3407 47.0198 80 K -0.2068 30.3570 46.1413 -Impact.ttf 36 5 26.3407 47.0198 81 H 0.0182 27.2192 46.1413 -Impact.ttf 36 5 26.3407 47.0198 82 q 7.9915 25.8600 43.1785 -Impact.ttf 36 5 26.3407 47.0198 83 & 8.0925 33.5925 37.8587 -Impact.ttf 36 5 26.3407 47.0198 84 ’ -0.2005 8.4302 14.9477 -Impact.ttf 36 5 26.3407 47.0198 85 [ 0.2307 13.3942 46.1413 -Impact.ttf 36 5 26.3407 47.0198 86 - 23.0690 14.8785 7.9267 -Impact.ttf 36 5 26.3407 47.0198 87 Y 0.1014 27.6250 46.1413 -Impact.ttf 36 5 26.3407 47.0198 88 Q -0.5930 26.8215 52.3395 -Impact.ttf 36 5 26.3407 47.0198 89 " -0.0459 19.7175 14.0000 -Impact.ttf 36 5 26.3407 47.0198 90 ! 0.1669 12.8215 46.1413 -Impact.ttf 36 5 26.3407 47.0198 91 x 8.2760 25.1760 37.8587 -Impact.ttf 36 5 26.3407 47.0198 92 ) 0.1774 14.9285 46.1413 -Impact.ttf 36 5 26.3407 47.0198 93 = 14.6829 27.6670 16.7320 -Impact.ttf 36 5 26.3407 47.0198 94 + 9.9703 27.1773 27.1773 -Impact.ttf 36 5 26.3407 47.0198 95 X 0.0714 29.6400 46.1413 -Impact.ttf 36 5 26.3407 47.0198 96 » 9.5857 19.6198 32.7140 -Impact.ttf 36 5 26.3407 47.0198 97 ' 0.0798 8.6802 14.0000 -Impact.ttf 36 5 26.3407 47.0198 98 ¢ -0.0276 25.8600 49.5017 -Impact.ttf 36 5 26.3407 47.0198 99 Z -0.0473 22.6245 46.1413 -Impact.ttf 36 5 26.3407 47.0198 100 > 8.0398 27.6670 29.1785 -Impact.ttf 36 5 26.3407 47.0198 101 ® 2.7604 43.1785 43.3035 -Impact.ttf 36 5 26.3407 47.0198 102 © 4.2113 43.1785 42.0000 -Impact.ttf 36 5 26.3407 47.0198 103 ] 0.0885 13.3942 46.1413 -Impact.ttf 36 5 26.3407 47.0198 104 é -1.6486 25.5600 47.5698 -Impact.ttf 36 5 26.3407 47.0198 105 z 8.5062 19.3198 37.8587 -Impact.ttf 36 5 26.3407 47.0198 106 _ 50.4751 32.1413 2.8378 -Impact.ttf 36 5 26.3407 47.0198 107 ¥ 0.0325 27.6250 46.1413 -Impact.ttf 37 m 40.4657 37.8587 1 t -5.4009 17.0878 43.1785 -Impact.ttf 37 m 40.4657 37.8587 2 h -8.3723 25.8600 46.1413 -Impact.ttf 37 m 40.4657 37.8587 3 a -0.1886 24.6815 37.8587 -Impact.ttf 37 m 40.4657 37.8587 4 n 0.0024 25.8600 37.8587 -Impact.ttf 37 m 40.4657 37.8587 5 P -8.1758 25.1622 46.1413 -Impact.ttf 37 m 40.4657 37.8587 6 o 0.1724 25.5600 37.8587 -Impact.ttf 37 m 40.4657 37.8587 7 e -0.1635 25.5600 37.8587 -Impact.ttf 37 m 40.4657 37.8587 8 : 7.4337 8.6802 30.3570 -Impact.ttf 37 m 40.4657 37.8587 9 r -0.4964 17.9105 37.8587 -Impact.ttf 37 m 40.4657 37.8587 10 l -8.3781 11.1622 46.1413 -Impact.ttf 37 m 40.4657 37.8587 11 i -8.0156 11.1622 46.1413 -Impact.ttf 37 m 40.4657 37.8587 12 1 -8.4309 19.5925 46.1413 -Impact.ttf 37 m 40.4657 37.8587 13 | -8.2547 5.8425 53.6430 -Impact.ttf 37 m 40.4657 37.8587 14 N -8.5470 26.3407 46.1413 -Impact.ttf 37 m 40.4657 37.8587 15 f -8.0188 15.6593 46.1413 -Impact.ttf 37 m 40.4657 37.8587 16 g -0.0990 25.8600 44.3570 -Impact.ttf 37 m 40.4657 37.8587 17 d -7.7532 25.8600 46.1413 -Impact.ttf 37 m 40.4657 37.8587 18 W -8.1878 46.2890 46.1413 -Impact.ttf 37 m 40.4657 37.8587 19 s -0.1742 23.5030 37.8587 -Impact.ttf 37 m 40.4657 37.8587 20 c -0.0214 24.6815 37.8587 -Impact.ttf 37 m 40.4657 37.8587 21 u -0.3727 25.8600 37.8587 -Impact.ttf 37 m 40.4657 37.8587 22 3 -9.1967 25.7680 47.8983 -Impact.ttf 37 m 40.4657 37.8587 23 ~ 7.2807 26.7885 12.8907 -Impact.ttf 37 m 40.4657 37.8587 24 # -3.5470 34.6652 41.1215 -Impact.ttf 37 m 40.4657 37.8587 25 O -9.1685 26.8215 47.8983 -Impact.ttf 37 m 40.4657 37.8587 26 ` -13.1693 15.1785 7.9267 -Impact.ttf 37 m 40.4657 37.8587 27 @ -9.3664 43.1785 48.8040 -Impact.ttf 37 m 40.4657 37.8587 28 F -8.3181 20.2675 46.1413 -Impact.ttf 37 m 40.4657 37.8587 29 S -9.0836 27.5192 47.8983 -Impact.ttf 37 m 40.4657 37.8587 30 p -0.1599 25.8600 43.1785 -Impact.ttf 37 m 40.4657 37.8587 31 “ -8.2311 19.2175 14.9477 -Impact.ttf 37 m 40.4657 37.8587 32 % -9.2457 37.9837 47.0198 -Impact.ttf 37 m 40.4657 37.8587 33 £ -9.1610 28.2727 47.0198 -Impact.ttf 37 m 40.4657 37.8587 34 . 28.2432 8.6802 9.3360 -Impact.ttf 37 m 40.4657 37.8587 35 2 -9.0981 23.9837 47.0198 -Impact.ttf 37 m 40.4657 37.8587 36 5 -8.3975 26.3407 47.0198 -Impact.ttf 37 m 40.4657 37.8587 37 m -0.0274 40.4657 37.8587 -Impact.ttf 37 m 40.4657 37.8587 38 V -8.5295 31.0355 46.1413 -Impact.ttf 37 m 40.4657 37.8587 39 6 -8.9879 26.3407 47.8983 -Impact.ttf 37 m 40.4657 37.8587 40 w -0.1984 38.9680 37.8587 -Impact.ttf 37 m 40.4657 37.8587 41 T -8.3150 26.3407 46.1413 -Impact.ttf 37 m 40.4657 37.8587 42 M -8.2583 36.8052 46.1413 -Impact.ttf 37 m 40.4657 37.8587 43 G -9.3306 26.9465 47.8983 -Impact.ttf 37 m 40.4657 37.8587 44 b -7.9992 25.8600 46.1413 -Impact.ttf 37 m 40.4657 37.8587 45 9 -9.1499 26.3407 47.8983 -Impact.ttf 37 m 40.4657 37.8587 46 ; 7.7456 8.6802 36.1995 -Impact.ttf 37 m 40.4657 37.8587 47 D -8.1648 26.9465 46.1413 -Impact.ttf 37 m 40.4657 37.8587 48 L -8.1542 18.8948 46.1413 -Impact.ttf 37 m 40.4657 37.8587 49 y -0.1637 27.3942 43.1785 -Impact.ttf 37 m 40.4657 37.8587 50 ‘ -8.4007 8.4302 14.9477 -Impact.ttf 37 m 40.4657 37.8587 51 \ -9.3541 23.9087 48.3733 -Impact.ttf 37 m 40.4657 37.8587 52 R -8.2512 26.3407 46.1413 -Impact.ttf 37 m 40.4657 37.8587 53 < 0.0191 27.6670 29.1785 -Impact.ttf 37 m 40.4657 37.8587 54 4 -8.2983 28.6977 46.1413 -Impact.ttf 37 m 40.4657 37.8587 55 8 -9.5550 26.0407 47.8983 -Impact.ttf 37 m 40.4657 37.8587 56 0 -8.9757 26.3407 47.8983 -Impact.ttf 37 m 40.4657 37.8587 57 A -8.1944 31.5355 46.1413 -Impact.ttf 37 m 40.4657 37.8587 58 E -7.8899 20.4483 46.1413 -Impact.ttf 37 m 40.4657 37.8587 59 B -8.4304 26.9465 46.1413 -Impact.ttf 37 m 40.4657 37.8587 60 v 0.0242 26.8215 37.8587 -Impact.ttf 37 m 40.4657 37.8587 61 k -8.2013 25.7680 46.1413 -Impact.ttf 37 m 40.4657 37.8587 62 J -8.5315 16.2320 46.1413 -Impact.ttf 37 m 40.4657 37.8587 63 U -8.4839 26.8215 47.0198 -Impact.ttf 37 m 40.4657 37.8587 64 j -7.8373 13.7692 51.4610 -Impact.ttf 37 m 40.4657 37.8587 65 ( -8.2051 14.9285 46.1413 -Impact.ttf 37 m 40.4657 37.8587 66 7 -8.1670 22.3245 46.1413 -Impact.ttf 37 m 40.4657 37.8587 67 § -8.8175 25.6430 53.5180 -Impact.ttf 37 m 40.4657 37.8587 68 $ -12.0031 26.8215 54.0680 -Impact.ttf 37 m 40.4657 37.8587 69 € -9.1680 28.6058 47.8983 -Impact.ttf 37 m 40.4657 37.8587 70 / -8.8257 22.7302 48.3733 -Impact.ttf 37 m 40.4657 37.8587 71 C -9.2148 26.9465 47.8983 -Impact.ttf 37 m 40.4657 37.8587 72 * -8.5745 15.4705 13.7692 -Impact.ttf 37 m 40.4657 37.8587 73 ” -7.9619 19.2175 14.9477 -Impact.ttf 37 m 40.4657 37.8587 74 ? -9.1491 26.8215 47.0198 -Impact.ttf 37 m 40.4657 37.8587 75 { -8.5309 19.1675 54.8215 -Impact.ttf 37 m 40.4657 37.8587 76 } -8.1445 19.1675 54.8215 -Impact.ttf 37 m 40.4657 37.8587 77 , 28.6378 8.4302 14.9477 -Impact.ttf 37 m 40.4657 37.8587 78 I -8.4759 11.6430 46.1413 -Impact.ttf 37 m 40.4657 37.8587 79 ° -9.3825 18.0163 18.0163 -Impact.ttf 37 m 40.4657 37.8587 80 K -8.6010 30.3570 46.1413 -Impact.ttf 37 m 40.4657 37.8587 81 H -8.3618 27.2192 46.1413 -Impact.ttf 37 m 40.4657 37.8587 82 q -0.1430 25.8600 43.1785 -Impact.ttf 37 m 40.4657 37.8587 83 & -0.0198 33.5925 37.8587 -Impact.ttf 37 m 40.4657 37.8587 84 ’ -8.3266 8.4302 14.9477 -Impact.ttf 37 m 40.4657 37.8587 85 [ -8.2426 13.3942 46.1413 -Impact.ttf 37 m 40.4657 37.8587 86 - 14.8431 14.8785 7.9267 -Impact.ttf 37 m 40.4657 37.8587 87 Y -8.2470 27.6250 46.1413 -Impact.ttf 37 m 40.4657 37.8587 88 Q -9.4468 26.8215 52.3395 -Impact.ttf 37 m 40.4657 37.8587 89 " -8.2324 19.7175 14.0000 -Impact.ttf 37 m 40.4657 37.8587 90 ! -8.1625 12.8215 46.1413 -Impact.ttf 37 m 40.4657 37.8587 91 x 0.2339 25.1760 37.8587 -Impact.ttf 37 m 40.4657 37.8587 92 ) -8.3646 14.9285 46.1413 -Impact.ttf 37 m 40.4657 37.8587 93 = 6.5036 27.6670 16.7320 -Impact.ttf 37 m 40.4657 37.8587 94 + 1.1896 27.1773 27.1773 -Impact.ttf 37 m 40.4657 37.8587 95 X -8.3897 29.6400 46.1413 -Impact.ttf 37 m 40.4657 37.8587 96 » 1.3378 19.6198 32.7140 -Impact.ttf 37 m 40.4657 37.8587 97 ' -8.1825 8.6802 14.0000 -Impact.ttf 37 m 40.4657 37.8587 98 ¢ -8.2349 25.8600 49.5017 -Impact.ttf 37 m 40.4657 37.8587 99 Z -8.0568 22.6245 46.1413 -Impact.ttf 37 m 40.4657 37.8587 100 > 0.0506 27.6670 29.1785 -Impact.ttf 37 m 40.4657 37.8587 101 ® -5.4489 43.1785 43.3035 -Impact.ttf 37 m 40.4657 37.8587 102 © -4.1440 43.1785 42.0000 -Impact.ttf 37 m 40.4657 37.8587 103 ] -8.1310 13.3942 46.1413 -Impact.ttf 37 m 40.4657 37.8587 104 é -9.7425 25.5600 47.5698 -Impact.ttf 37 m 40.4657 37.8587 105 z 0.0527 19.3198 37.8587 -Impact.ttf 37 m 40.4657 37.8587 106 _ 42.2713 32.1413 2.8378 -Impact.ttf 37 m 40.4657 37.8587 107 ¥ -8.5054 27.6250 46.1413 -Impact.ttf 38 V 31.0355 46.1413 1 t 2.8979 17.0878 43.1785 -Impact.ttf 38 V 31.0355 46.1413 2 h 0.3508 25.8600 46.1413 -Impact.ttf 38 V 31.0355 46.1413 3 a 8.3664 24.6815 37.8587 -Impact.ttf 38 V 31.0355 46.1413 4 n 8.0959 25.8600 37.8587 -Impact.ttf 38 V 31.0355 46.1413 5 P -0.0208 25.1622 46.1413 -Impact.ttf 38 V 31.0355 46.1413 6 o 8.1226 25.5600 37.8587 -Impact.ttf 38 V 31.0355 46.1413 7 e 8.7256 25.5600 37.8587 -Impact.ttf 38 V 31.0355 46.1413 8 : 15.6263 8.6802 30.3570 -Impact.ttf 38 V 31.0355 46.1413 9 r 8.1857 17.9105 37.8587 -Impact.ttf 38 V 31.0355 46.1413 10 l 0.0418 11.1622 46.1413 -Impact.ttf 38 V 31.0355 46.1413 11 i -0.0640 11.1622 46.1413 -Impact.ttf 38 V 31.0355 46.1413 12 1 0.0756 19.5925 46.1413 -Impact.ttf 38 V 31.0355 46.1413 13 | -0.0997 5.8425 53.6430 -Impact.ttf 38 V 31.0355 46.1413 14 N 0.1909 26.3407 46.1413 -Impact.ttf 38 V 31.0355 46.1413 15 f -0.0728 15.6593 46.1413 -Impact.ttf 38 V 31.0355 46.1413 16 g 8.5361 25.8600 44.3570 -Impact.ttf 38 V 31.0355 46.1413 17 d 0.1998 25.8600 46.1413 -Impact.ttf 38 V 31.0355 46.1413 18 W -0.2470 46.2890 46.1413 -Impact.ttf 38 V 31.0355 46.1413 19 s 8.3572 23.5030 37.8587 -Impact.ttf 38 V 31.0355 46.1413 20 c 8.2242 24.6815 37.8587 -Impact.ttf 38 V 31.0355 46.1413 21 u 8.4778 25.8600 37.8587 -Impact.ttf 38 V 31.0355 46.1413 22 3 -0.5021 25.7680 47.8983 -Impact.ttf 38 V 31.0355 46.1413 23 ~ 15.4719 26.7885 12.8907 -Impact.ttf 38 V 31.0355 46.1413 24 # 5.1634 34.6652 41.1215 -Impact.ttf 38 V 31.0355 46.1413 25 O -0.9391 26.8215 47.8983 -Impact.ttf 38 V 31.0355 46.1413 26 ` -4.9255 15.1785 7.9267 -Impact.ttf 38 V 31.0355 46.1413 27 @ -1.0241 43.1785 48.8040 -Impact.ttf 38 V 31.0355 46.1413 28 F 0.1938 20.2675 46.1413 -Impact.ttf 38 V 31.0355 46.1413 29 S -1.0301 27.5192 47.8983 -Impact.ttf 38 V 31.0355 46.1413 30 p 8.3452 25.8600 43.1785 -Impact.ttf 38 V 31.0355 46.1413 31 “ -0.2075 19.2175 14.9477 -Impact.ttf 38 V 31.0355 46.1413 32 % -0.6829 37.9837 47.0198 -Impact.ttf 38 V 31.0355 46.1413 33 £ -1.0027 28.2727 47.0198 -Impact.ttf 38 V 31.0355 46.1413 34 . 36.9308 8.6802 9.3360 -Impact.ttf 38 V 31.0355 46.1413 35 2 -0.8772 23.9837 47.0198 -Impact.ttf 38 V 31.0355 46.1413 36 5 0.1742 26.3407 47.0198 -Impact.ttf 38 V 31.0355 46.1413 37 m 8.5617 40.4657 37.8587 -Impact.ttf 38 V 31.0355 46.1413 38 V -0.0344 31.0355 46.1413 -Impact.ttf 38 V 31.0355 46.1413 39 6 -0.9642 26.3407 47.8983 -Impact.ttf 38 V 31.0355 46.1413 40 w 8.1968 38.9680 37.8587 -Impact.ttf 38 V 31.0355 46.1413 41 T -0.0287 26.3407 46.1413 -Impact.ttf 38 V 31.0355 46.1413 42 M 0.3666 36.8052 46.1413 -Impact.ttf 38 V 31.0355 46.1413 43 G -0.9922 26.9465 47.8983 -Impact.ttf 38 V 31.0355 46.1413 44 b -0.0670 25.8600 46.1413 -Impact.ttf 38 V 31.0355 46.1413 45 9 -1.0110 26.3407 47.8983 -Impact.ttf 38 V 31.0355 46.1413 46 ; 15.6146 8.6802 36.1995 -Impact.ttf 38 V 31.0355 46.1413 47 D 0.2579 26.9465 46.1413 -Impact.ttf 38 V 31.0355 46.1413 48 L -0.1698 18.8948 46.1413 -Impact.ttf 38 V 31.0355 46.1413 49 y 8.3307 27.3942 43.1785 -Impact.ttf 38 V 31.0355 46.1413 50 ‘ -0.2508 8.4302 14.9477 -Impact.ttf 38 V 31.0355 46.1413 51 \ -0.6355 23.9087 48.3733 -Impact.ttf 38 V 31.0355 46.1413 52 R 0.0175 26.3407 46.1413 -Impact.ttf 38 V 31.0355 46.1413 53 < 8.2387 27.6670 29.1785 -Impact.ttf 38 V 31.0355 46.1413 54 4 0.0181 28.6977 46.1413 -Impact.ttf 38 V 31.0355 46.1413 55 8 -0.9545 26.0407 47.8983 -Impact.ttf 38 V 31.0355 46.1413 56 0 -0.8533 26.3407 47.8983 -Impact.ttf 38 V 31.0355 46.1413 57 A 0.0784 31.5355 46.1413 -Impact.ttf 38 V 31.0355 46.1413 58 E -0.2613 20.4483 46.1413 -Impact.ttf 38 V 31.0355 46.1413 59 B 0.0941 26.9465 46.1413 -Impact.ttf 38 V 31.0355 46.1413 60 v 8.2073 26.8215 37.8587 -Impact.ttf 38 V 31.0355 46.1413 61 k -0.0672 25.7680 46.1413 -Impact.ttf 38 V 31.0355 46.1413 62 J -0.2513 16.2320 46.1413 -Impact.ttf 38 V 31.0355 46.1413 63 U 0.1873 26.8215 47.0198 -Impact.ttf 38 V 31.0355 46.1413 64 j 0.1994 13.7692 51.4610 -Impact.ttf 38 V 31.0355 46.1413 65 ( -0.2585 14.9285 46.1413 -Impact.ttf 38 V 31.0355 46.1413 66 7 -0.0904 22.3245 46.1413 -Impact.ttf 38 V 31.0355 46.1413 67 § -1.1250 25.6430 53.5180 -Impact.ttf 38 V 31.0355 46.1413 68 $ -3.7026 26.8215 54.0680 -Impact.ttf 38 V 31.0355 46.1413 69 € -0.6612 28.6058 47.8983 -Impact.ttf 38 V 31.0355 46.1413 70 / -1.2161 22.7302 48.3733 -Impact.ttf 38 V 31.0355 46.1413 71 C -0.6616 26.9465 47.8983 -Impact.ttf 38 V 31.0355 46.1413 72 * 0.1359 15.4705 13.7692 -Impact.ttf 38 V 31.0355 46.1413 73 ” -0.3008 19.2175 14.9477 -Impact.ttf 38 V 31.0355 46.1413 74 ? -1.2614 26.8215 47.0198 -Impact.ttf 38 V 31.0355 46.1413 75 { -0.0455 19.1675 54.8215 -Impact.ttf 38 V 31.0355 46.1413 76 } -0.0546 19.1675 54.8215 -Impact.ttf 38 V 31.0355 46.1413 77 , 36.9272 8.4302 14.9477 -Impact.ttf 38 V 31.0355 46.1413 78 I -0.1571 11.6430 46.1413 -Impact.ttf 38 V 31.0355 46.1413 79 ° -0.9670 18.0163 18.0163 -Impact.ttf 38 V 31.0355 46.1413 80 K -0.0204 30.3570 46.1413 -Impact.ttf 38 V 31.0355 46.1413 81 H -0.1242 27.2192 46.1413 -Impact.ttf 38 V 31.0355 46.1413 82 q 8.3696 25.8600 43.1785 -Impact.ttf 38 V 31.0355 46.1413 83 & 8.2468 33.5925 37.8587 -Impact.ttf 38 V 31.0355 46.1413 84 ’ -0.1484 8.4302 14.9477 -Impact.ttf 38 V 31.0355 46.1413 85 [ 0.2981 13.3942 46.1413 -Impact.ttf 38 V 31.0355 46.1413 86 - 23.0333 14.8785 7.9267 -Impact.ttf 38 V 31.0355 46.1413 87 Y 0.1529 27.6250 46.1413 -Impact.ttf 38 V 31.0355 46.1413 88 Q -1.1663 26.8215 52.3395 -Impact.ttf 38 V 31.0355 46.1413 89 " 0.1027 19.7175 14.0000 -Impact.ttf 38 V 31.0355 46.1413 90 ! -0.3689 12.8215 46.1413 -Impact.ttf 38 V 31.0355 46.1413 91 x 8.3733 25.1760 37.8587 -Impact.ttf 38 V 31.0355 46.1413 92 ) 0.0032 14.9285 46.1413 -Impact.ttf 38 V 31.0355 46.1413 93 = 14.8121 27.6670 16.7320 -Impact.ttf 38 V 31.0355 46.1413 94 + 9.7763 27.1773 27.1773 -Impact.ttf 38 V 31.0355 46.1413 95 X 0.0115 29.6400 46.1413 -Impact.ttf 38 V 31.0355 46.1413 96 » 9.8426 19.6198 32.7140 -Impact.ttf 38 V 31.0355 46.1413 97 ' -0.1097 8.6802 14.0000 -Impact.ttf 38 V 31.0355 46.1413 98 ¢ 0.4198 25.8600 49.5017 -Impact.ttf 38 V 31.0355 46.1413 99 Z -0.1979 22.6245 46.1413 -Impact.ttf 38 V 31.0355 46.1413 100 > 8.2720 27.6670 29.1785 -Impact.ttf 38 V 31.0355 46.1413 101 ® 3.1302 43.1785 43.3035 -Impact.ttf 38 V 31.0355 46.1413 102 © 4.1808 43.1785 42.0000 -Impact.ttf 38 V 31.0355 46.1413 103 ] -0.0944 13.3942 46.1413 -Impact.ttf 38 V 31.0355 46.1413 104 é -1.3466 25.5600 47.5698 -Impact.ttf 38 V 31.0355 46.1413 105 z 8.2798 19.3198 37.8587 -Impact.ttf 38 V 31.0355 46.1413 106 _ 50.5738 32.1413 2.8378 -Impact.ttf 38 V 31.0355 46.1413 107 ¥ 0.2113 27.6250 46.1413 -Impact.ttf 39 6 26.3407 47.8983 1 t 3.9265 17.0878 43.1785 -Impact.ttf 39 6 26.3407 47.8983 2 h 0.4308 25.8600 46.1413 -Impact.ttf 39 6 26.3407 47.8983 3 a 9.0785 24.6815 37.8587 -Impact.ttf 39 6 26.3407 47.8983 4 n 9.1740 25.8600 37.8587 -Impact.ttf 39 6 26.3407 47.8983 5 P 0.9652 25.1622 46.1413 -Impact.ttf 39 6 26.3407 47.8983 6 o 9.1215 25.5600 37.8587 -Impact.ttf 39 6 26.3407 47.8983 7 e 9.1948 25.5600 37.8587 -Impact.ttf 39 6 26.3407 47.8983 8 : 16.6387 8.6802 30.3570 -Impact.ttf 39 6 26.3407 47.8983 9 r 9.1017 17.9105 37.8587 -Impact.ttf 39 6 26.3407 47.8983 10 l 0.7973 11.1622 46.1413 -Impact.ttf 39 6 26.3407 47.8983 11 i 0.6304 11.1622 46.1413 -Impact.ttf 39 6 26.3407 47.8983 12 1 0.7937 19.5925 46.1413 -Impact.ttf 39 6 26.3407 47.8983 13 | 0.6764 5.8425 53.6430 -Impact.ttf 39 6 26.3407 47.8983 14 N 1.1242 26.3407 46.1413 -Impact.ttf 39 6 26.3407 47.8983 15 f 0.9072 15.6593 46.1413 -Impact.ttf 39 6 26.3407 47.8983 16 g 9.2365 25.8600 44.3570 -Impact.ttf 39 6 26.3407 47.8983 17 d 0.7978 25.8600 46.1413 -Impact.ttf 39 6 26.3407 47.8983 18 W 0.7830 46.2890 46.1413 -Impact.ttf 39 6 26.3407 47.8983 19 s 9.1013 23.5030 37.8587 -Impact.ttf 39 6 26.3407 47.8983 20 c 9.2653 24.6815 37.8587 -Impact.ttf 39 6 26.3407 47.8983 21 u 9.1295 25.8600 37.8587 -Impact.ttf 39 6 26.3407 47.8983 22 3 -0.1131 25.7680 47.8983 -Impact.ttf 39 6 26.3407 47.8983 23 ~ 16.6425 26.7885 12.8907 -Impact.ttf 39 6 26.3407 47.8983 24 # 5.8828 34.6652 41.1215 -Impact.ttf 39 6 26.3407 47.8983 25 O 0.0955 26.8215 47.8983 -Impact.ttf 39 6 26.3407 47.8983 26 ` -4.0036 15.1785 7.9267 -Impact.ttf 39 6 26.3407 47.8983 27 @ 0.0704 43.1785 48.8040 -Impact.ttf 39 6 26.3407 47.8983 28 F 0.9642 20.2675 46.1413 -Impact.ttf 39 6 26.3407 47.8983 29 S -0.0464 27.5192 47.8983 -Impact.ttf 39 6 26.3407 47.8983 30 p 9.3936 25.8600 43.1785 -Impact.ttf 39 6 26.3407 47.8983 31 “ 0.8525 19.2175 14.9477 -Impact.ttf 39 6 26.3407 47.8983 32 % 0.0097 37.9837 47.0198 -Impact.ttf 39 6 26.3407 47.8983 33 £ 0.0143 28.2727 47.0198 -Impact.ttf 39 6 26.3407 47.8983 34 . 37.4302 8.6802 9.3360 -Impact.ttf 39 6 26.3407 47.8983 35 2 0.3166 23.9837 47.0198 -Impact.ttf 39 6 26.3407 47.8983 36 5 0.8224 26.3407 47.0198 -Impact.ttf 39 6 26.3407 47.8983 37 m 8.9297 40.4657 37.8587 -Impact.ttf 39 6 26.3407 47.8983 38 V 0.9170 31.0355 46.1413 -Impact.ttf 39 6 26.3407 47.8983 39 6 -0.1298 26.3407 47.8983 -Impact.ttf 39 6 26.3407 47.8983 40 w 9.0596 38.9680 37.8587 -Impact.ttf 39 6 26.3407 47.8983 41 T 1.1807 26.3407 46.1413 -Impact.ttf 39 6 26.3407 47.8983 42 M 0.8734 36.8052 46.1413 -Impact.ttf 39 6 26.3407 47.8983 43 G -0.1339 26.9465 47.8983 -Impact.ttf 39 6 26.3407 47.8983 44 b 0.8417 25.8600 46.1413 -Impact.ttf 39 6 26.3407 47.8983 45 9 0.1626 26.3407 47.8983 -Impact.ttf 39 6 26.3407 47.8983 46 ; 16.8111 8.6802 36.1995 -Impact.ttf 39 6 26.3407 47.8983 47 D 1.0811 26.9465 46.1413 -Impact.ttf 39 6 26.3407 47.8983 48 L 1.0092 18.8948 46.1413 -Impact.ttf 39 6 26.3407 47.8983 49 y 9.2649 27.3942 43.1785 -Impact.ttf 39 6 26.3407 47.8983 50 ‘ 0.5732 8.4302 14.9477 -Impact.ttf 39 6 26.3407 47.8983 51 \ 0.1012 23.9087 48.3733 -Impact.ttf 39 6 26.3407 47.8983 52 R 0.8330 26.3407 46.1413 -Impact.ttf 39 6 26.3407 47.8983 53 < 8.6698 27.6670 29.1785 -Impact.ttf 39 6 26.3407 47.8983 54 4 0.7584 28.6977 46.1413 -Impact.ttf 39 6 26.3407 47.8983 55 8 -0.0763 26.0407 47.8983 -Impact.ttf 39 6 26.3407 47.8983 56 0 -0.0714 26.3407 47.8983 -Impact.ttf 39 6 26.3407 47.8983 57 A 0.6459 31.5355 46.1413 -Impact.ttf 39 6 26.3407 47.8983 58 E 0.6800 20.4483 46.1413 -Impact.ttf 39 6 26.3407 47.8983 59 B 0.8785 26.9465 46.1413 -Impact.ttf 39 6 26.3407 47.8983 60 v 9.3940 26.8215 37.8587 -Impact.ttf 39 6 26.3407 47.8983 61 k 0.7890 25.7680 46.1413 -Impact.ttf 39 6 26.3407 47.8983 62 J 0.8543 16.2320 46.1413 -Impact.ttf 39 6 26.3407 47.8983 63 U 0.6815 26.8215 47.0198 -Impact.ttf 39 6 26.3407 47.8983 64 j 0.7414 13.7692 51.4610 -Impact.ttf 39 6 26.3407 47.8983 65 ( 0.6177 14.9285 46.1413 -Impact.ttf 39 6 26.3407 47.8983 66 7 0.8446 22.3245 46.1413 -Impact.ttf 39 6 26.3407 47.8983 67 § 0.0000 25.6430 53.5180 -Impact.ttf 39 6 26.3407 47.8983 68 $ -3.0613 26.8215 54.0680 -Impact.ttf 39 6 26.3407 47.8983 69 € -0.1568 28.6058 47.8983 -Impact.ttf 39 6 26.3407 47.8983 70 / -0.2607 22.7302 48.3733 -Impact.ttf 39 6 26.3407 47.8983 71 C -0.2043 26.9465 47.8983 -Impact.ttf 39 6 26.3407 47.8983 72 * 0.9521 15.4705 13.7692 -Impact.ttf 39 6 26.3407 47.8983 73 ” 0.8104 19.2175 14.9477 -Impact.ttf 39 6 26.3407 47.8983 74 ? 0.0871 26.8215 47.0198 -Impact.ttf 39 6 26.3407 47.8983 75 { 0.7232 19.1675 54.8215 -Impact.ttf 39 6 26.3407 47.8983 76 } 1.0495 19.1675 54.8215 -Impact.ttf 39 6 26.3407 47.8983 77 , 38.1147 8.4302 14.9477 -Impact.ttf 39 6 26.3407 47.8983 78 I 0.8725 11.6430 46.1413 -Impact.ttf 39 6 26.3407 47.8983 79 ° 0.0027 18.0163 18.0163 -Impact.ttf 39 6 26.3407 47.8983 80 K 0.9202 30.3570 46.1413 -Impact.ttf 39 6 26.3407 47.8983 81 H 0.9729 27.2192 46.1413 -Impact.ttf 39 6 26.3407 47.8983 82 q 8.9090 25.8600 43.1785 -Impact.ttf 39 6 26.3407 47.8983 83 & 9.2180 33.5925 37.8587 -Impact.ttf 39 6 26.3407 47.8983 84 ’ 0.9225 8.4302 14.9477 -Impact.ttf 39 6 26.3407 47.8983 85 [ 0.9240 13.3942 46.1413 -Impact.ttf 39 6 26.3407 47.8983 86 - 23.9186 14.8785 7.9267 -Impact.ttf 39 6 26.3407 47.8983 87 Y 0.7250 27.6250 46.1413 -Impact.ttf 39 6 26.3407 47.8983 88 Q 0.0462 26.8215 52.3395 -Impact.ttf 39 6 26.3407 47.8983 89 " 0.9011 19.7175 14.0000 -Impact.ttf 39 6 26.3407 47.8983 90 ! 0.8017 12.8215 46.1413 -Impact.ttf 39 6 26.3407 47.8983 91 x 8.9371 25.1760 37.8587 -Impact.ttf 39 6 26.3407 47.8983 92 ) 0.8098 14.9285 46.1413 -Impact.ttf 39 6 26.3407 47.8983 93 = 15.2532 27.6670 16.7320 -Impact.ttf 39 6 26.3407 47.8983 94 + 10.5910 27.1773 27.1773 -Impact.ttf 39 6 26.3407 47.8983 95 X 0.9920 29.6400 46.1413 -Impact.ttf 39 6 26.3407 47.8983 96 » 10.5445 19.6198 32.7140 -Impact.ttf 39 6 26.3407 47.8983 97 ' 0.7830 8.6802 14.0000 -Impact.ttf 39 6 26.3407 47.8983 98 ¢ 0.9553 25.8600 49.5017 -Impact.ttf 39 6 26.3407 47.8983 99 Z 1.0281 22.6245 46.1413 -Impact.ttf 39 6 26.3407 47.8983 100 > 9.0537 27.6670 29.1785 -Impact.ttf 39 6 26.3407 47.8983 101 ® 3.5462 43.1785 43.3035 -Impact.ttf 39 6 26.3407 47.8983 102 © 5.3239 43.1785 42.0000 -Impact.ttf 39 6 26.3407 47.8983 103 ] 1.0366 13.3942 46.1413 -Impact.ttf 39 6 26.3407 47.8983 104 é -0.4647 25.5600 47.5698 -Impact.ttf 39 6 26.3407 47.8983 105 z 9.2536 19.3198 37.8587 -Impact.ttf 39 6 26.3407 47.8983 106 _ 51.3868 32.1413 2.8378 -Impact.ttf 39 6 26.3407 47.8983 107 ¥ 0.7654 27.6250 46.1413 -Impact.ttf 40 w 38.9680 37.8587 1 t -5.2813 17.0878 43.1785 -Impact.ttf 40 w 38.9680 37.8587 2 h -8.6101 25.8600 46.1413 -Impact.ttf 40 w 38.9680 37.8587 3 a -0.2008 24.6815 37.8587 -Impact.ttf 40 w 38.9680 37.8587 4 n -0.2470 25.8600 37.8587 -Impact.ttf 40 w 38.9680 37.8587 5 P -8.2143 25.1622 46.1413 -Impact.ttf 40 w 38.9680 37.8587 6 o -0.2734 25.5600 37.8587 -Impact.ttf 40 w 38.9680 37.8587 7 e -0.1172 25.5600 37.8587 -Impact.ttf 40 w 38.9680 37.8587 8 : 7.4476 8.6802 30.3570 -Impact.ttf 40 w 38.9680 37.8587 9 r 0.1414 17.9105 37.8587 -Impact.ttf 40 w 38.9680 37.8587 10 l -8.1930 11.1622 46.1413 -Impact.ttf 40 w 38.9680 37.8587 11 i -7.9616 11.1622 46.1413 -Impact.ttf 40 w 38.9680 37.8587 12 1 -8.3070 19.5925 46.1413 -Impact.ttf 40 w 38.9680 37.8587 13 | -8.0290 5.8425 53.6430 -Impact.ttf 40 w 38.9680 37.8587 14 N -8.0220 26.3407 46.1413 -Impact.ttf 40 w 38.9680 37.8587 15 f -8.4341 15.6593 46.1413 -Impact.ttf 40 w 38.9680 37.8587 16 g -0.2920 25.8600 44.3570 -Impact.ttf 40 w 38.9680 37.8587 17 d -8.1273 25.8600 46.1413 -Impact.ttf 40 w 38.9680 37.8587 18 W -8.4734 46.2890 46.1413 -Impact.ttf 40 w 38.9680 37.8587 19 s -0.1016 23.5030 37.8587 -Impact.ttf 40 w 38.9680 37.8587 20 c -0.2452 24.6815 37.8587 -Impact.ttf 40 w 38.9680 37.8587 21 u -0.0427 25.8600 37.8587 -Impact.ttf 40 w 38.9680 37.8587 22 3 -9.2820 25.7680 47.8983 -Impact.ttf 40 w 38.9680 37.8587 23 ~ 6.9986 26.7885 12.8907 -Impact.ttf 40 w 38.9680 37.8587 24 # -3.2638 34.6652 41.1215 -Impact.ttf 40 w 38.9680 37.8587 25 O -9.2100 26.8215 47.8983 -Impact.ttf 40 w 38.9680 37.8587 26 ` -13.2191 15.1785 7.9267 -Impact.ttf 40 w 38.9680 37.8587 27 @ -8.9312 43.1785 48.8040 -Impact.ttf 40 w 38.9680 37.8587 28 F -8.4248 20.2675 46.1413 -Impact.ttf 40 w 38.9680 37.8587 29 S -9.1356 27.5192 47.8983 -Impact.ttf 40 w 38.9680 37.8587 30 p 0.0742 25.8600 43.1785 -Impact.ttf 40 w 38.9680 37.8587 31 “ -8.1856 19.2175 14.9477 -Impact.ttf 40 w 38.9680 37.8587 32 % -9.1695 37.9837 47.0198 -Impact.ttf 40 w 38.9680 37.8587 33 £ -9.0350 28.2727 47.0198 -Impact.ttf 40 w 38.9680 37.8587 34 . 28.3461 8.6802 9.3360 -Impact.ttf 40 w 38.9680 37.8587 35 2 -9.1638 23.9837 47.0198 -Impact.ttf 40 w 38.9680 37.8587 36 5 -8.2553 26.3407 47.0198 -Impact.ttf 40 w 38.9680 37.8587 37 m 0.0208 40.4657 37.8587 -Impact.ttf 40 w 38.9680 37.8587 38 V -8.3575 31.0355 46.1413 -Impact.ttf 40 w 38.9680 37.8587 39 6 -9.4600 26.3407 47.8983 -Impact.ttf 40 w 38.9680 37.8587 40 w 0.0156 38.9680 37.8587 -Impact.ttf 40 w 38.9680 37.8587 41 T -8.4730 26.3407 46.1413 -Impact.ttf 40 w 38.9680 37.8587 42 M -8.0799 36.8052 46.1413 -Impact.ttf 40 w 38.9680 37.8587 43 G -9.1999 26.9465 47.8983 -Impact.ttf 40 w 38.9680 37.8587 44 b -8.2083 25.8600 46.1413 -Impact.ttf 40 w 38.9680 37.8587 45 9 -9.1485 26.3407 47.8983 -Impact.ttf 40 w 38.9680 37.8587 46 ; 7.4037 8.6802 36.1995 -Impact.ttf 40 w 38.9680 37.8587 47 D -8.3570 26.9465 46.1413 -Impact.ttf 40 w 38.9680 37.8587 48 L -8.6361 18.8948 46.1413 -Impact.ttf 40 w 38.9680 37.8587 49 y 0.0468 27.3942 43.1785 -Impact.ttf 40 w 38.9680 37.8587 50 ‘ -8.4734 8.4302 14.9477 -Impact.ttf 40 w 38.9680 37.8587 51 \ -9.3634 23.9087 48.3733 -Impact.ttf 40 w 38.9680 37.8587 52 R -8.3801 26.3407 46.1413 -Impact.ttf 40 w 38.9680 37.8587 53 < -0.1894 27.6670 29.1785 -Impact.ttf 40 w 38.9680 37.8587 54 4 -8.4425 28.6977 46.1413 -Impact.ttf 40 w 38.9680 37.8587 55 8 -8.9561 26.0407 47.8983 -Impact.ttf 40 w 38.9680 37.8587 56 0 -9.2306 26.3407 47.8983 -Impact.ttf 40 w 38.9680 37.8587 57 A -8.2585 31.5355 46.1413 -Impact.ttf 40 w 38.9680 37.8587 58 E -8.4683 20.4483 46.1413 -Impact.ttf 40 w 38.9680 37.8587 59 B -8.1157 26.9465 46.1413 -Impact.ttf 40 w 38.9680 37.8587 60 v 0.2589 26.8215 37.8587 -Impact.ttf 40 w 38.9680 37.8587 61 k -8.5750 25.7680 46.1413 -Impact.ttf 40 w 38.9680 37.8587 62 J -8.0884 16.2320 46.1413 -Impact.ttf 40 w 38.9680 37.8587 63 U -8.0805 26.8215 47.0198 -Impact.ttf 40 w 38.9680 37.8587 64 j -8.3780 13.7692 51.4610 -Impact.ttf 40 w 38.9680 37.8587 65 ( -8.0902 14.9285 46.1413 -Impact.ttf 40 w 38.9680 37.8587 66 7 -8.4623 22.3245 46.1413 -Impact.ttf 40 w 38.9680 37.8587 67 § -9.2616 25.6430 53.5180 -Impact.ttf 40 w 38.9680 37.8587 68 $ -12.2664 26.8215 54.0680 -Impact.ttf 40 w 38.9680 37.8587 69 € -9.2271 28.6058 47.8983 -Impact.ttf 40 w 38.9680 37.8587 70 / -9.7642 22.7302 48.3733 -Impact.ttf 40 w 38.9680 37.8587 71 C -9.0726 26.9465 47.8983 -Impact.ttf 40 w 38.9680 37.8587 72 * -8.2748 15.4705 13.7692 -Impact.ttf 40 w 38.9680 37.8587 73 ” -8.2144 19.2175 14.9477 -Impact.ttf 40 w 38.9680 37.8587 74 ? -9.1648 26.8215 47.0198 -Impact.ttf 40 w 38.9680 37.8587 75 { -7.9850 19.1675 54.8215 -Impact.ttf 40 w 38.9680 37.8587 76 } -7.8190 19.1675 54.8215 -Impact.ttf 40 w 38.9680 37.8587 77 , 28.9888 8.4302 14.9477 -Impact.ttf 40 w 38.9680 37.8587 78 I -8.0671 11.6430 46.1413 -Impact.ttf 40 w 38.9680 37.8587 79 ° -8.9438 18.0163 18.0163 -Impact.ttf 40 w 38.9680 37.8587 80 K -8.1374 30.3570 46.1413 -Impact.ttf 40 w 38.9680 37.8587 81 H -8.1937 27.2192 46.1413 -Impact.ttf 40 w 38.9680 37.8587 82 q -0.2452 25.8600 43.1785 -Impact.ttf 40 w 38.9680 37.8587 83 & 0.4122 33.5925 37.8587 -Impact.ttf 40 w 38.9680 37.8587 84 ’ -8.2209 8.4302 14.9477 -Impact.ttf 40 w 38.9680 37.8587 85 [ -8.4623 13.3942 46.1413 -Impact.ttf 40 w 38.9680 37.8587 86 - 15.0435 14.8785 7.9267 -Impact.ttf 40 w 38.9680 37.8587 87 Y -8.3795 27.6250 46.1413 -Impact.ttf 40 w 38.9680 37.8587 88 Q -9.1610 26.8215 52.3395 -Impact.ttf 40 w 38.9680 37.8587 89 " -8.2138 19.7175 14.0000 -Impact.ttf 40 w 38.9680 37.8587 90 ! -8.6273 12.8215 46.1413 -Impact.ttf 40 w 38.9680 37.8587 91 x -0.1502 25.1760 37.8587 -Impact.ttf 40 w 38.9680 37.8587 92 ) -8.4221 14.9285 46.1413 -Impact.ttf 40 w 38.9680 37.8587 93 = 6.8086 27.6670 16.7320 -Impact.ttf 40 w 38.9680 37.8587 94 + 1.5493 27.1773 27.1773 -Impact.ttf 40 w 38.9680 37.8587 95 X -8.5521 29.6400 46.1413 -Impact.ttf 40 w 38.9680 37.8587 96 » 1.1952 19.6198 32.7140 -Impact.ttf 40 w 38.9680 37.8587 97 ' -8.2555 8.6802 14.0000 -Impact.ttf 40 w 38.9680 37.8587 98 ¢ -8.2606 25.8600 49.5017 -Impact.ttf 40 w 38.9680 37.8587 99 Z -8.1948 22.6245 46.1413 -Impact.ttf 40 w 38.9680 37.8587 100 > -0.0653 27.6670 29.1785 -Impact.ttf 40 w 38.9680 37.8587 101 ® -5.6314 43.1785 43.3035 -Impact.ttf 40 w 38.9680 37.8587 102 © -4.2367 43.1785 42.0000 -Impact.ttf 40 w 38.9680 37.8587 103 ] -8.1499 13.3942 46.1413 -Impact.ttf 40 w 38.9680 37.8587 104 é -9.6160 25.5600 47.5698 -Impact.ttf 40 w 38.9680 37.8587 105 z 0.0903 19.3198 37.8587 -Impact.ttf 40 w 38.9680 37.8587 106 _ 42.1227 32.1413 2.8378 -Impact.ttf 40 w 38.9680 37.8587 107 ¥ -8.3266 27.6250 46.1413 -Impact.ttf 41 T 26.3407 46.1413 1 t 2.9512 17.0878 43.1785 -Impact.ttf 41 T 26.3407 46.1413 2 h -0.1103 25.8600 46.1413 -Impact.ttf 41 T 26.3407 46.1413 3 a 8.4322 24.6815 37.8587 -Impact.ttf 41 T 26.3407 46.1413 4 n 8.5573 25.8600 37.8587 -Impact.ttf 41 T 26.3407 46.1413 5 P 0.2155 25.1622 46.1413 -Impact.ttf 41 T 26.3407 46.1413 6 o 8.0156 25.5600 37.8587 -Impact.ttf 41 T 26.3407 46.1413 7 e 8.2283 25.5600 37.8587 -Impact.ttf 41 T 26.3407 46.1413 8 : 15.7856 8.6802 30.3570 -Impact.ttf 41 T 26.3407 46.1413 9 r 8.3302 17.9105 37.8587 -Impact.ttf 41 T 26.3407 46.1413 10 l -0.0982 11.1622 46.1413 -Impact.ttf 41 T 26.3407 46.1413 11 i -0.0561 11.1622 46.1413 -Impact.ttf 41 T 26.3407 46.1413 12 1 -0.0403 19.5925 46.1413 -Impact.ttf 41 T 26.3407 46.1413 13 | -0.0574 5.8425 53.6430 -Impact.ttf 41 T 26.3407 46.1413 14 N -0.1288 26.3407 46.1413 -Impact.ttf 41 T 26.3407 46.1413 15 f 0.1613 15.6593 46.1413 -Impact.ttf 41 T 26.3407 46.1413 16 g 8.4768 25.8600 44.3570 -Impact.ttf 41 T 26.3407 46.1413 17 d -0.1079 25.8600 46.1413 -Impact.ttf 41 T 26.3407 46.1413 18 W 0.0857 46.2890 46.1413 -Impact.ttf 41 T 26.3407 46.1413 19 s 8.0831 23.5030 37.8587 -Impact.ttf 41 T 26.3407 46.1413 20 c 8.4521 24.6815 37.8587 -Impact.ttf 41 T 26.3407 46.1413 21 u 8.1004 25.8600 37.8587 -Impact.ttf 41 T 26.3407 46.1413 22 3 -0.8855 25.7680 47.8983 -Impact.ttf 41 T 26.3407 46.1413 23 ~ 15.4515 26.7885 12.8907 -Impact.ttf 41 T 26.3407 46.1413 24 # 4.8956 34.6652 41.1215 -Impact.ttf 41 T 26.3407 46.1413 25 O -0.9025 26.8215 47.8983 -Impact.ttf 41 T 26.3407 46.1413 26 ` -4.7269 15.1785 7.9267 -Impact.ttf 41 T 26.3407 46.1413 27 @ -0.9429 43.1785 48.8040 -Impact.ttf 41 T 26.3407 46.1413 28 F 0.2425 20.2675 46.1413 -Impact.ttf 41 T 26.3407 46.1413 29 S -0.8549 27.5192 47.8983 -Impact.ttf 41 T 26.3407 46.1413 30 p 8.2978 25.8600 43.1785 -Impact.ttf 41 T 26.3407 46.1413 31 “ 0.1710 19.2175 14.9477 -Impact.ttf 41 T 26.3407 46.1413 32 % -0.9364 37.9837 47.0198 -Impact.ttf 41 T 26.3407 46.1413 33 £ -1.0360 28.2727 47.0198 -Impact.ttf 41 T 26.3407 46.1413 34 . 36.7477 8.6802 9.3360 -Impact.ttf 41 T 26.3407 46.1413 35 2 -0.9073 23.9837 47.0198 -Impact.ttf 41 T 26.3407 46.1413 36 5 -0.4007 26.3407 47.0198 -Impact.ttf 41 T 26.3407 46.1413 37 m 8.0319 40.4657 37.8587 -Impact.ttf 41 T 26.3407 46.1413 38 V -0.0861 31.0355 46.1413 -Impact.ttf 41 T 26.3407 46.1413 39 6 -0.8144 26.3407 47.8983 -Impact.ttf 41 T 26.3407 46.1413 40 w 8.1968 38.9680 37.8587 -Impact.ttf 41 T 26.3407 46.1413 41 T 0.0000 26.3407 46.1413 -Impact.ttf 41 T 26.3407 46.1413 42 M -0.0667 36.8052 46.1413 -Impact.ttf 41 T 26.3407 46.1413 43 G -0.9370 26.9465 47.8983 -Impact.ttf 41 T 26.3407 46.1413 44 b 0.3035 25.8600 46.1413 -Impact.ttf 41 T 26.3407 46.1413 45 9 -0.8734 26.3407 47.8983 -Impact.ttf 41 T 26.3407 46.1413 46 ; 15.8338 8.6802 36.1995 -Impact.ttf 41 T 26.3407 46.1413 47 D -0.0669 26.9465 46.1413 -Impact.ttf 41 T 26.3407 46.1413 48 L 0.0972 18.8948 46.1413 -Impact.ttf 41 T 26.3407 46.1413 49 y 8.1816 27.3942 43.1785 -Impact.ttf 41 T 26.3407 46.1413 50 ‘ 0.1065 8.4302 14.9477 -Impact.ttf 41 T 26.3407 46.1413 51 \ -1.0530 23.9087 48.3733 -Impact.ttf 41 T 26.3407 46.1413 52 R 0.1807 26.3407 46.1413 -Impact.ttf 41 T 26.3407 46.1413 53 < 8.1608 27.6670 29.1785 -Impact.ttf 41 T 26.3407 46.1413 54 4 -0.0955 28.6977 46.1413 -Impact.ttf 41 T 26.3407 46.1413 55 8 -0.9281 26.0407 47.8983 -Impact.ttf 41 T 26.3407 46.1413 56 0 -0.9823 26.3407 47.8983 -Impact.ttf 41 T 26.3407 46.1413 57 A 0.1645 31.5355 46.1413 -Impact.ttf 41 T 26.3407 46.1413 58 E 0.0739 20.4483 46.1413 -Impact.ttf 41 T 26.3407 46.1413 59 B -0.1016 26.9465 46.1413 -Impact.ttf 41 T 26.3407 46.1413 60 v 8.3895 26.8215 37.8587 -Impact.ttf 41 T 26.3407 46.1413 61 k -0.0097 25.7680 46.1413 -Impact.ttf 41 T 26.3407 46.1413 62 J 0.1516 16.2320 46.1413 -Impact.ttf 41 T 26.3407 46.1413 63 U 0.2425 26.8215 47.0198 -Impact.ttf 41 T 26.3407 46.1413 64 j 0.2373 13.7692 51.4610 -Impact.ttf 41 T 26.3407 46.1413 65 ( 0.0175 14.9285 46.1413 -Impact.ttf 41 T 26.3407 46.1413 66 7 -0.0458 22.3245 46.1413 -Impact.ttf 41 T 26.3407 46.1413 67 § -0.7441 25.6430 53.5180 -Impact.ttf 41 T 26.3407 46.1413 68 $ -3.9024 26.8215 54.0680 -Impact.ttf 41 T 26.3407 46.1413 69 € -0.8817 28.6058 47.8983 -Impact.ttf 41 T 26.3407 46.1413 70 / -1.0322 22.7302 48.3733 -Impact.ttf 41 T 26.3407 46.1413 71 C -0.9740 26.9465 47.8983 -Impact.ttf 41 T 26.3407 46.1413 72 * 0.1242 15.4705 13.7692 -Impact.ttf 41 T 26.3407 46.1413 73 ” -0.0038 19.2175 14.9477 -Impact.ttf 41 T 26.3407 46.1413 74 ? -0.8900 26.8215 47.0198 -Impact.ttf 41 T 26.3407 46.1413 75 { -0.1728 19.1675 54.8215 -Impact.ttf 41 T 26.3407 46.1413 76 } 0.0395 19.1675 54.8215 -Impact.ttf 41 T 26.3407 46.1413 77 , 36.8521 8.4302 14.9477 -Impact.ttf 41 T 26.3407 46.1413 78 I -0.0910 11.6430 46.1413 -Impact.ttf 41 T 26.3407 46.1413 79 ° -0.9750 18.0163 18.0163 -Impact.ttf 41 T 26.3407 46.1413 80 K 0.1970 30.3570 46.1413 -Impact.ttf 41 T 26.3407 46.1413 81 H 0.0784 27.2192 46.1413 -Impact.ttf 41 T 26.3407 46.1413 82 q 8.4126 25.8600 43.1785 -Impact.ttf 41 T 26.3407 46.1413 83 & 8.5466 33.5925 37.8587 -Impact.ttf 41 T 26.3407 46.1413 84 ’ -0.2600 8.4302 14.9477 -Impact.ttf 41 T 26.3407 46.1413 85 [ 0.0857 13.3942 46.1413 -Impact.ttf 41 T 26.3407 46.1413 86 - 23.3590 14.8785 7.9267 -Impact.ttf 41 T 26.3407 46.1413 87 Y -0.0070 27.6250 46.1413 -Impact.ttf 41 T 26.3407 46.1413 88 Q -0.7283 26.8215 52.3395 -Impact.ttf 41 T 26.3407 46.1413 89 " -0.0654 19.7175 14.0000 -Impact.ttf 41 T 26.3407 46.1413 90 ! 0.1001 12.8215 46.1413 -Impact.ttf 41 T 26.3407 46.1413 91 x 8.1898 25.1760 37.8587 -Impact.ttf 41 T 26.3407 46.1413 92 ) 0.1742 14.9285 46.1413 -Impact.ttf 41 T 26.3407 46.1413 93 = 14.8033 27.6670 16.7320 -Impact.ttf 41 T 26.3407 46.1413 94 + 9.6655 27.1773 27.1773 -Impact.ttf 41 T 26.3407 46.1413 95 X 0.0812 29.6400 46.1413 -Impact.ttf 41 T 26.3407 46.1413 96 » 9.6973 19.6198 32.7140 -Impact.ttf 41 T 26.3407 46.1413 97 ' 0.1839 8.6802 14.0000 -Impact.ttf 41 T 26.3407 46.1413 98 ¢ 0.0258 25.8600 49.5017 -Impact.ttf 41 T 26.3407 46.1413 99 Z -0.0056 22.6245 46.1413 -Impact.ttf 41 T 26.3407 46.1413 100 > 8.2206 27.6670 29.1785 -Impact.ttf 41 T 26.3407 46.1413 101 ® 2.6079 43.1785 43.3035 -Impact.ttf 41 T 26.3407 46.1413 102 © 3.9744 43.1785 42.0000 -Impact.ttf 41 T 26.3407 46.1413 103 ] -0.4791 13.3942 46.1413 -Impact.ttf 41 T 26.3407 46.1413 104 é -1.4349 25.5600 47.5698 -Impact.ttf 41 T 26.3407 46.1413 105 z 8.4573 19.3198 37.8587 -Impact.ttf 41 T 26.3407 46.1413 106 _ 50.4019 32.1413 2.8378 -Impact.ttf 41 T 26.3407 46.1413 107 ¥ 0.1218 27.6250 46.1413 -Impact.ttf 42 M 36.8052 46.1413 1 t 2.8529 17.0878 43.1785 -Impact.ttf 42 M 36.8052 46.1413 2 h -0.0403 25.8600 46.1413 -Impact.ttf 42 M 36.8052 46.1413 3 a 8.2583 24.6815 37.8587 -Impact.ttf 42 M 36.8052 46.1413 4 n 8.6204 25.8600 37.8587 -Impact.ttf 42 M 36.8052 46.1413 5 P -0.2484 25.1622 46.1413 -Impact.ttf 42 M 36.8052 46.1413 6 o 8.3599 25.5600 37.8587 -Impact.ttf 42 M 36.8052 46.1413 7 e 8.4067 25.5600 37.8587 -Impact.ttf 42 M 36.8052 46.1413 8 : 15.6499 8.6802 30.3570 -Impact.ttf 42 M 36.8052 46.1413 9 r 7.9873 17.9105 37.8587 -Impact.ttf 42 M 36.8052 46.1413 10 l 0.3782 11.1622 46.1413 -Impact.ttf 42 M 36.8052 46.1413 11 i -0.1885 11.1622 46.1413 -Impact.ttf 42 M 36.8052 46.1413 12 1 0.4736 19.5925 46.1413 -Impact.ttf 42 M 36.8052 46.1413 13 | -0.0097 5.8425 53.6430 -Impact.ttf 42 M 36.8052 46.1413 14 N -0.0542 26.3407 46.1413 -Impact.ttf 42 M 36.8052 46.1413 15 f 0.2425 15.6593 46.1413 -Impact.ttf 42 M 36.8052 46.1413 16 g 8.3242 25.8600 44.3570 -Impact.ttf 42 M 36.8052 46.1413 17 d -0.0909 25.8600 46.1413 -Impact.ttf 42 M 36.8052 46.1413 18 W -0.1111 46.2890 46.1413 -Impact.ttf 42 M 36.8052 46.1413 19 s 8.3052 23.5030 37.8587 -Impact.ttf 42 M 36.8052 46.1413 20 c 8.2292 24.6815 37.8587 -Impact.ttf 42 M 36.8052 46.1413 21 u 8.1240 25.8600 37.8587 -Impact.ttf 42 M 36.8052 46.1413 22 3 -0.9624 25.7680 47.8983 -Impact.ttf 42 M 36.8052 46.1413 23 ~ 15.4530 26.7885 12.8907 -Impact.ttf 42 M 36.8052 46.1413 24 # 5.1388 34.6652 41.1215 -Impact.ttf 42 M 36.8052 46.1413 25 O -0.6172 26.8215 47.8983 -Impact.ttf 42 M 36.8052 46.1413 26 ` -5.3811 15.1785 7.9267 -Impact.ttf 42 M 36.8052 46.1413 27 @ -1.0407 43.1785 48.8040 -Impact.ttf 42 M 36.8052 46.1413 28 F 0.0626 20.2675 46.1413 -Impact.ttf 42 M 36.8052 46.1413 29 S -0.7148 27.5192 47.8983 -Impact.ttf 42 M 36.8052 46.1413 30 p 8.1656 25.8600 43.1785 -Impact.ttf 42 M 36.8052 46.1413 31 “ -0.1553 19.2175 14.9477 -Impact.ttf 42 M 36.8052 46.1413 32 % -1.1523 37.9837 47.0198 -Impact.ttf 42 M 36.8052 46.1413 33 £ -0.8144 28.2727 47.0198 -Impact.ttf 42 M 36.8052 46.1413 34 . 36.8080 8.6802 9.3360 -Impact.ttf 42 M 36.8052 46.1413 35 2 -0.4637 23.9837 47.0198 -Impact.ttf 42 M 36.8052 46.1413 36 5 0.0255 26.3407 47.0198 -Impact.ttf 42 M 36.8052 46.1413 37 m 8.1103 40.4657 37.8587 -Impact.ttf 42 M 36.8052 46.1413 38 V 0.0801 31.0355 46.1413 -Impact.ttf 42 M 36.8052 46.1413 39 6 -1.1250 26.3407 47.8983 -Impact.ttf 42 M 36.8052 46.1413 40 w 8.6037 38.9680 37.8587 -Impact.ttf 42 M 36.8052 46.1413 41 T -0.0687 26.3407 46.1413 -Impact.ttf 42 M 36.8052 46.1413 42 M 0.0514 36.8052 46.1413 -Impact.ttf 42 M 36.8052 46.1413 43 G -0.9662 26.9465 47.8983 -Impact.ttf 42 M 36.8052 46.1413 44 b -0.1658 25.8600 46.1413 -Impact.ttf 42 M 36.8052 46.1413 45 9 -0.7780 26.3407 47.8983 -Impact.ttf 42 M 36.8052 46.1413 46 ; 15.5751 8.6802 36.1995 -Impact.ttf 42 M 36.8052 46.1413 47 D -0.0955 26.9465 46.1413 -Impact.ttf 42 M 36.8052 46.1413 48 L -0.2186 18.8948 46.1413 -Impact.ttf 42 M 36.8052 46.1413 49 y 8.1667 27.3942 43.1785 -Impact.ttf 42 M 36.8052 46.1413 50 ‘ -0.0242 8.4302 14.9477 -Impact.ttf 42 M 36.8052 46.1413 51 \ -1.0196 23.9087 48.3733 -Impact.ttf 42 M 36.8052 46.1413 52 R -0.1556 26.3407 46.1413 -Impact.ttf 42 M 36.8052 46.1413 53 < 8.1505 27.6670 29.1785 -Impact.ttf 42 M 36.8052 46.1413 54 4 0.0008 28.6977 46.1413 -Impact.ttf 42 M 36.8052 46.1413 55 8 -0.9170 26.0407 47.8983 -Impact.ttf 42 M 36.8052 46.1413 56 0 -0.9017 26.3407 47.8983 -Impact.ttf 42 M 36.8052 46.1413 57 A 0.2925 31.5355 46.1413 -Impact.ttf 42 M 36.8052 46.1413 58 E 0.2411 20.4483 46.1413 -Impact.ttf 42 M 36.8052 46.1413 59 B -0.0815 26.9465 46.1413 -Impact.ttf 42 M 36.8052 46.1413 60 v 8.1104 26.8215 37.8587 -Impact.ttf 42 M 36.8052 46.1413 61 k 0.0000 25.7680 46.1413 -Impact.ttf 42 M 36.8052 46.1413 62 J 0.1502 16.2320 46.1413 -Impact.ttf 42 M 36.8052 46.1413 63 U 0.1711 26.8215 47.0198 -Impact.ttf 42 M 36.8052 46.1413 64 j 0.0343 13.7692 51.4610 -Impact.ttf 42 M 36.8052 46.1413 65 ( -0.2887 14.9285 46.1413 -Impact.ttf 42 M 36.8052 46.1413 66 7 0.3750 22.3245 46.1413 -Impact.ttf 42 M 36.8052 46.1413 67 § -0.6049 25.6430 53.5180 -Impact.ttf 42 M 36.8052 46.1413 68 $ -3.8611 26.8215 54.0680 -Impact.ttf 42 M 36.8052 46.1413 69 € -0.8455 28.6058 47.8983 -Impact.ttf 42 M 36.8052 46.1413 70 / -1.0920 22.7302 48.3733 -Impact.ttf 42 M 36.8052 46.1413 71 C -0.9595 26.9465 47.8983 -Impact.ttf 42 M 36.8052 46.1413 72 * -0.0121 15.4705 13.7692 -Impact.ttf 42 M 36.8052 46.1413 73 ” -0.0742 19.2175 14.9477 -Impact.ttf 42 M 36.8052 46.1413 74 ? -0.9884 26.8215 47.0198 -Impact.ttf 42 M 36.8052 46.1413 75 { -0.1692 19.1675 54.8215 -Impact.ttf 42 M 36.8052 46.1413 76 } -0.0097 19.1675 54.8215 -Impact.ttf 42 M 36.8052 46.1413 77 , 36.8934 8.4302 14.9477 -Impact.ttf 42 M 36.8052 46.1413 78 I 0.2670 11.6430 46.1413 -Impact.ttf 42 M 36.8052 46.1413 79 ° -1.0684 18.0163 18.0163 -Impact.ttf 42 M 36.8052 46.1413 80 K -0.0519 30.3570 46.1413 -Impact.ttf 42 M 36.8052 46.1413 81 H -0.2882 27.2192 46.1413 -Impact.ttf 42 M 36.8052 46.1413 82 q 8.5690 25.8600 43.1785 -Impact.ttf 42 M 36.8052 46.1413 83 & 8.3874 33.5925 37.8587 -Impact.ttf 42 M 36.8052 46.1413 84 ’ 0.1812 8.4302 14.9477 -Impact.ttf 42 M 36.8052 46.1413 85 [ -0.0676 13.3942 46.1413 -Impact.ttf 42 M 36.8052 46.1413 86 - 22.9249 14.8785 7.9267 -Impact.ttf 42 M 36.8052 46.1413 87 Y -0.2684 27.6250 46.1413 -Impact.ttf 42 M 36.8052 46.1413 88 Q -0.8400 26.8215 52.3395 -Impact.ttf 42 M 36.8052 46.1413 89 " 0.0583 19.7175 14.0000 -Impact.ttf 42 M 36.8052 46.1413 90 ! 0.2327 12.8215 46.1413 -Impact.ttf 42 M 36.8052 46.1413 91 x 7.9740 25.1760 37.8587 -Impact.ttf 42 M 36.8052 46.1413 92 ) -0.0746 14.9285 46.1413 -Impact.ttf 42 M 36.8052 46.1413 93 = 14.8173 27.6670 16.7320 -Impact.ttf 42 M 36.8052 46.1413 94 + 9.7706 27.1773 27.1773 -Impact.ttf 42 M 36.8052 46.1413 95 X -0.0746 29.6400 46.1413 -Impact.ttf 42 M 36.8052 46.1413 96 » 9.6918 19.6198 32.7140 -Impact.ttf 42 M 36.8052 46.1413 97 ' 0.0325 8.6802 14.0000 -Impact.ttf 42 M 36.8052 46.1413 98 ¢ 0.2422 25.8600 49.5017 -Impact.ttf 42 M 36.8052 46.1413 99 Z -0.1409 22.6245 46.1413 -Impact.ttf 42 M 36.8052 46.1413 100 > 8.1339 27.6670 29.1785 -Impact.ttf 42 M 36.8052 46.1413 101 ® 2.6254 43.1785 43.3035 -Impact.ttf 42 M 36.8052 46.1413 102 © 4.1797 43.1785 42.0000 -Impact.ttf 42 M 36.8052 46.1413 103 ] -0.0375 13.3942 46.1413 -Impact.ttf 42 M 36.8052 46.1413 104 é -1.6612 25.5600 47.5698 -Impact.ttf 42 M 36.8052 46.1413 105 z 8.3246 19.3198 37.8587 -Impact.ttf 42 M 36.8052 46.1413 106 _ 50.7258 32.1413 2.8378 -Impact.ttf 42 M 36.8052 46.1413 107 ¥ 0.1937 27.6250 46.1413 -Impact.ttf 43 G 26.9465 47.8983 1 t 3.6370 17.0878 43.1785 -Impact.ttf 43 G 26.9465 47.8983 2 h 0.9694 25.8600 46.1413 -Impact.ttf 43 G 26.9465 47.8983 3 a 9.1638 24.6815 37.8587 -Impact.ttf 43 G 26.9465 47.8983 4 n 9.1753 25.8600 37.8587 -Impact.ttf 43 G 26.9465 47.8983 5 P 1.0098 25.1622 46.1413 -Impact.ttf 43 G 26.9465 47.8983 6 o 8.7944 25.5600 37.8587 -Impact.ttf 43 G 26.9465 47.8983 7 e 9.1323 25.5600 37.8587 -Impact.ttf 43 G 26.9465 47.8983 8 : 16.6396 8.6802 30.3570 -Impact.ttf 43 G 26.9465 47.8983 9 r 9.2269 17.9105 37.8587 -Impact.ttf 43 G 26.9465 47.8983 10 l 0.8870 11.1622 46.1413 -Impact.ttf 43 G 26.9465 47.8983 11 i 0.8312 11.1622 46.1413 -Impact.ttf 43 G 26.9465 47.8983 12 1 0.9512 19.5925 46.1413 -Impact.ttf 43 G 26.9465 47.8983 13 | 0.8737 5.8425 53.6430 -Impact.ttf 43 G 26.9465 47.8983 14 N 0.9773 26.3407 46.1413 -Impact.ttf 43 G 26.9465 47.8983 15 f 0.6547 15.6593 46.1413 -Impact.ttf 43 G 26.9465 47.8983 16 g 9.1565 25.8600 44.3570 -Impact.ttf 43 G 26.9465 47.8983 17 d 0.8543 25.8600 46.1413 -Impact.ttf 43 G 26.9465 47.8983 18 W 0.9703 46.2890 46.1413 -Impact.ttf 43 G 26.9465 47.8983 19 s 9.4795 23.5030 37.8587 -Impact.ttf 43 G 26.9465 47.8983 20 c 9.1894 24.6815 37.8587 -Impact.ttf 43 G 26.9465 47.8983 21 u 9.2820 25.8600 37.8587 -Impact.ttf 43 G 26.9465 47.8983 22 3 -0.1611 25.7680 47.8983 -Impact.ttf 43 G 26.9465 47.8983 23 ~ 16.5034 26.7885 12.8907 -Impact.ttf 43 G 26.9465 47.8983 24 # 5.9905 34.6652 41.1215 -Impact.ttf 43 G 26.9465 47.8983 25 O 0.0385 26.8215 47.8983 -Impact.ttf 43 G 26.9465 47.8983 26 ` -4.1170 15.1785 7.9267 -Impact.ttf 43 G 26.9465 47.8983 27 @ 0.0312 43.1785 48.8040 -Impact.ttf 43 G 26.9465 47.8983 28 F 0.9837 20.2675 46.1413 -Impact.ttf 43 G 26.9465 47.8983 29 S 0.0073 27.5192 47.8983 -Impact.ttf 43 G 26.9465 47.8983 30 p 9.5600 25.8600 43.1785 -Impact.ttf 43 G 26.9465 47.8983 31 “ 1.0286 19.2175 14.9477 -Impact.ttf 43 G 26.9465 47.8983 32 % 0.0353 37.9837 47.0198 -Impact.ttf 43 G 26.9465 47.8983 33 £ 0.0027 28.2727 47.0198 -Impact.ttf 43 G 26.9465 47.8983 34 . 37.6931 8.6802 9.3360 -Impact.ttf 43 G 26.9465 47.8983 35 2 -0.1399 23.9837 47.0198 -Impact.ttf 43 G 26.9465 47.8983 36 5 0.8406 26.3407 47.0198 -Impact.ttf 43 G 26.9465 47.8983 37 m 9.2350 40.4657 37.8587 -Impact.ttf 43 G 26.9465 47.8983 38 V 0.8817 31.0355 46.1413 -Impact.ttf 43 G 26.9465 47.8983 39 6 -0.3809 26.3407 47.8983 -Impact.ttf 43 G 26.9465 47.8983 40 w 9.1442 38.9680 37.8587 -Impact.ttf 43 G 26.9465 47.8983 41 T 0.9429 26.3407 46.1413 -Impact.ttf 43 G 26.9465 47.8983 42 M 1.1196 36.8052 46.1413 -Impact.ttf 43 G 26.9465 47.8983 43 G 0.1701 26.9465 47.8983 -Impact.ttf 43 G 26.9465 47.8983 44 b 0.9903 25.8600 46.1413 -Impact.ttf 43 G 26.9465 47.8983 45 9 -0.1326 26.3407 47.8983 -Impact.ttf 43 G 26.9465 47.8983 46 ; 16.9227 8.6802 36.1995 -Impact.ttf 43 G 26.9465 47.8983 47 D 0.9545 26.9465 46.1413 -Impact.ttf 43 G 26.9465 47.8983 48 L 0.8844 18.8948 46.1413 -Impact.ttf 43 G 26.9465 47.8983 49 y 8.8081 27.3942 43.1785 -Impact.ttf 43 G 26.9465 47.8983 50 ‘ 0.7925 8.4302 14.9477 -Impact.ttf 43 G 26.9465 47.8983 51 \ -0.1976 23.9087 48.3733 -Impact.ttf 43 G 26.9465 47.8983 52 R 0.6774 26.3407 46.1413 -Impact.ttf 43 G 26.9465 47.8983 53 < 9.0365 27.6670 29.1785 -Impact.ttf 43 G 26.9465 47.8983 54 4 0.7358 28.6977 46.1413 -Impact.ttf 43 G 26.9465 47.8983 55 8 -0.3476 26.0407 47.8983 -Impact.ttf 43 G 26.9465 47.8983 56 0 0.1140 26.3407 47.8983 -Impact.ttf 43 G 26.9465 47.8983 57 A 0.8712 31.5355 46.1413 -Impact.ttf 43 G 26.9465 47.8983 58 E 1.2626 20.4483 46.1413 -Impact.ttf 43 G 26.9465 47.8983 59 B 0.9614 26.9465 46.1413 -Impact.ttf 43 G 26.9465 47.8983 60 v 9.0137 26.8215 37.8587 -Impact.ttf 43 G 26.9465 47.8983 61 k 0.9382 25.7680 46.1413 -Impact.ttf 43 G 26.9465 47.8983 62 J 1.0197 16.2320 46.1413 -Impact.ttf 43 G 26.9465 47.8983 63 U 0.8181 26.8215 47.0198 -Impact.ttf 43 G 26.9465 47.8983 64 j 0.8910 13.7692 51.4610 -Impact.ttf 43 G 26.9465 47.8983 65 ( 0.9359 14.9285 46.1413 -Impact.ttf 43 G 26.9465 47.8983 66 7 0.9170 22.3245 46.1413 -Impact.ttf 43 G 26.9465 47.8983 67 § 0.1511 25.6430 53.5180 -Impact.ttf 43 G 26.9465 47.8983 68 $ -2.8681 26.8215 54.0680 -Impact.ttf 43 G 26.9465 47.8983 69 € 0.2581 28.6058 47.8983 -Impact.ttf 43 G 26.9465 47.8983 70 / -0.0022 22.7302 48.3733 -Impact.ttf 43 G 26.9465 47.8983 71 C -0.1065 26.9465 47.8983 -Impact.ttf 43 G 26.9465 47.8983 72 * 1.3126 15.4705 13.7692 -Impact.ttf 43 G 26.9465 47.8983 73 ” 0.7075 19.2175 14.9477 -Impact.ttf 43 G 26.9465 47.8983 74 ? -0.1083 26.8215 47.0198 -Impact.ttf 43 G 26.9465 47.8983 75 { 0.7686 19.1675 54.8215 -Impact.ttf 43 G 26.9465 47.8983 76 } 0.9884 19.1675 54.8215 -Impact.ttf 43 G 26.9465 47.8983 77 , 38.0498 8.4302 14.9477 -Impact.ttf 43 G 26.9465 47.8983 78 I 0.7423 11.6430 46.1413 -Impact.ttf 43 G 26.9465 47.8983 79 ° 0.0083 18.0163 18.0163 -Impact.ttf 43 G 26.9465 47.8983 80 K 0.8746 30.3570 46.1413 -Impact.ttf 43 G 26.9465 47.8983 81 H 1.2237 27.2192 46.1413 -Impact.ttf 43 G 26.9465 47.8983 82 q 9.0647 25.8600 43.1785 -Impact.ttf 43 G 26.9465 47.8983 83 & 9.4644 33.5925 37.8587 -Impact.ttf 43 G 26.9465 47.8983 84 ’ 1.1255 8.4302 14.9477 -Impact.ttf 43 G 26.9465 47.8983 85 [ 1.0790 13.3942 46.1413 -Impact.ttf 43 G 26.9465 47.8983 86 - 23.7320 14.8785 7.9267 -Impact.ttf 43 G 26.9465 47.8983 87 Y 0.7779 27.6250 46.1413 -Impact.ttf 43 G 26.9465 47.8983 88 Q 0.0427 26.8215 52.3395 -Impact.ttf 43 G 26.9465 47.8983 89 " 0.6444 19.7175 14.0000 -Impact.ttf 43 G 26.9465 47.8983 90 ! 0.7102 12.8215 46.1413 -Impact.ttf 43 G 26.9465 47.8983 91 x 9.2171 25.1760 37.8587 -Impact.ttf 43 G 26.9465 47.8983 92 ) 0.9240 14.9285 46.1413 -Impact.ttf 43 G 26.9465 47.8983 93 = 15.5192 27.6670 16.7320 -Impact.ttf 43 G 26.9465 47.8983 94 + 10.4504 27.1773 27.1773 -Impact.ttf 43 G 26.9465 47.8983 95 X 1.0253 29.6400 46.1413 -Impact.ttf 43 G 26.9465 47.8983 96 » 10.4971 19.6198 32.7140 -Impact.ttf 43 G 26.9465 47.8983 97 ' 0.7128 8.6802 14.0000 -Impact.ttf 43 G 26.9465 47.8983 98 ¢ 0.8079 25.8600 49.5017 -Impact.ttf 43 G 26.9465 47.8983 99 Z 0.9981 22.6245 46.1413 -Impact.ttf 43 G 26.9465 47.8983 100 > 9.0930 27.6670 29.1785 -Impact.ttf 43 G 26.9465 47.8983 101 ® 3.7696 43.1785 43.3035 -Impact.ttf 43 G 26.9465 47.8983 102 © 5.1582 43.1785 42.0000 -Impact.ttf 43 G 26.9465 47.8983 103 ] 0.9767 13.3942 46.1413 -Impact.ttf 43 G 26.9465 47.8983 104 é -0.5191 25.5600 47.5698 -Impact.ttf 43 G 26.9465 47.8983 105 z 9.3167 19.3198 37.8587 -Impact.ttf 43 G 26.9465 47.8983 106 _ 51.3708 32.1413 2.8378 -Impact.ttf 43 G 26.9465 47.8983 107 ¥ 0.6959 27.6250 46.1413 -Impact.ttf 44 b 25.8600 46.1413 1 t 2.7908 17.0878 43.1785 -Impact.ttf 44 b 25.8600 46.1413 2 h 0.0597 25.8600 46.1413 -Impact.ttf 44 b 25.8600 46.1413 3 a 8.4868 24.6815 37.8587 -Impact.ttf 44 b 25.8600 46.1413 4 n 8.2525 25.8600 37.8587 -Impact.ttf 44 b 25.8600 46.1413 5 P -0.0045 25.1622 46.1413 -Impact.ttf 44 b 25.8600 46.1413 6 o 8.5212 25.5600 37.8587 -Impact.ttf 44 b 25.8600 46.1413 7 e 8.6597 25.5600 37.8587 -Impact.ttf 44 b 25.8600 46.1413 8 : 15.6031 8.6802 30.3570 -Impact.ttf 44 b 25.8600 46.1413 9 r 8.2024 17.9105 37.8587 -Impact.ttf 44 b 25.8600 46.1413 10 l -0.0157 11.1622 46.1413 -Impact.ttf 44 b 25.8600 46.1413 11 i 0.0413 11.1622 46.1413 -Impact.ttf 44 b 25.8600 46.1413 12 1 -0.1921 19.5925 46.1413 -Impact.ttf 44 b 25.8600 46.1413 13 | -0.3222 5.8425 53.6430 -Impact.ttf 44 b 25.8600 46.1413 14 N -0.3811 26.3407 46.1413 -Impact.ttf 44 b 25.8600 46.1413 15 f -0.2196 15.6593 46.1413 -Impact.ttf 44 b 25.8600 46.1413 16 g 8.2196 25.8600 44.3570 -Impact.ttf 44 b 25.8600 46.1413 17 d 0.0825 25.8600 46.1413 -Impact.ttf 44 b 25.8600 46.1413 18 W 0.1546 46.2890 46.1413 -Impact.ttf 44 b 25.8600 46.1413 19 s 8.4192 23.5030 37.8587 -Impact.ttf 44 b 25.8600 46.1413 20 c 8.2441 24.6815 37.8587 -Impact.ttf 44 b 25.8600 46.1413 21 u 8.5236 25.8600 37.8587 -Impact.ttf 44 b 25.8600 46.1413 22 3 -0.7890 25.7680 47.8983 -Impact.ttf 44 b 25.8600 46.1413 23 ~ 15.5873 26.7885 12.8907 -Impact.ttf 44 b 25.8600 46.1413 24 # 4.8548 34.6652 41.1215 -Impact.ttf 44 b 25.8600 46.1413 25 O -0.7809 26.8215 47.8983 -Impact.ttf 44 b 25.8600 46.1413 26 ` -5.0035 15.1785 7.9267 -Impact.ttf 44 b 25.8600 46.1413 27 @ -0.8812 43.1785 48.8040 -Impact.ttf 44 b 25.8600 46.1413 28 F -0.0477 20.2675 46.1413 -Impact.ttf 44 b 25.8600 46.1413 29 S -0.9527 27.5192 47.8983 -Impact.ttf 44 b 25.8600 46.1413 30 p 8.3372 25.8600 43.1785 -Impact.ttf 44 b 25.8600 46.1413 31 “ 0.2516 19.2175 14.9477 -Impact.ttf 44 b 25.8600 46.1413 32 % -0.8999 37.9837 47.0198 -Impact.ttf 44 b 25.8600 46.1413 33 £ -1.2011 28.2727 47.0198 -Impact.ttf 44 b 25.8600 46.1413 34 . 36.9052 8.6802 9.3360 -Impact.ttf 44 b 25.8600 46.1413 35 2 -1.0852 23.9837 47.0198 -Impact.ttf 44 b 25.8600 46.1413 36 5 0.3113 26.3407 47.0198 -Impact.ttf 44 b 25.8600 46.1413 37 m 8.3072 40.4657 37.8587 -Impact.ttf 44 b 25.8600 46.1413 38 V -0.0273 31.0355 46.1413 -Impact.ttf 44 b 25.8600 46.1413 39 6 -0.7946 26.3407 47.8983 -Impact.ttf 44 b 25.8600 46.1413 40 w 8.3155 38.9680 37.8587 -Impact.ttf 44 b 25.8600 46.1413 41 T 0.0774 26.3407 46.1413 -Impact.ttf 44 b 25.8600 46.1413 42 M -0.0144 36.8052 46.1413 -Impact.ttf 44 b 25.8600 46.1413 43 G -0.7998 26.9465 47.8983 -Impact.ttf 44 b 25.8600 46.1413 44 b -0.0398 25.8600 46.1413 -Impact.ttf 44 b 25.8600 46.1413 45 9 -0.7890 26.3407 47.8983 -Impact.ttf 44 b 25.8600 46.1413 46 ; 15.5608 8.6802 36.1995 -Impact.ttf 44 b 25.8600 46.1413 47 D -0.2980 26.9465 46.1413 -Impact.ttf 44 b 25.8600 46.1413 48 L 0.0214 18.8948 46.1413 -Impact.ttf 44 b 25.8600 46.1413 49 y 8.1981 27.3942 43.1785 -Impact.ttf 44 b 25.8600 46.1413 50 ‘ -0.0240 8.4302 14.9477 -Impact.ttf 44 b 25.8600 46.1413 51 \ -1.1434 23.9087 48.3733 -Impact.ttf 44 b 25.8600 46.1413 52 R -0.0798 26.3407 46.1413 -Impact.ttf 44 b 25.8600 46.1413 53 < 8.0291 27.6670 29.1785 -Impact.ttf 44 b 25.8600 46.1413 54 4 0.0857 28.6977 46.1413 -Impact.ttf 44 b 25.8600 46.1413 55 8 -0.8290 26.0407 47.8983 -Impact.ttf 44 b 25.8600 46.1413 56 0 -1.1454 26.3407 47.8983 -Impact.ttf 44 b 25.8600 46.1413 57 A 0.2605 31.5355 46.1413 -Impact.ttf 44 b 25.8600 46.1413 58 E -0.1301 20.4483 46.1413 -Impact.ttf 44 b 25.8600 46.1413 59 B -0.2397 26.9465 46.1413 -Impact.ttf 44 b 25.8600 46.1413 60 v 8.2565 26.8215 37.8587 -Impact.ttf 44 b 25.8600 46.1413 61 k 0.0097 25.7680 46.1413 -Impact.ttf 44 b 25.8600 46.1413 62 J 0.2326 16.2320 46.1413 -Impact.ttf 44 b 25.8600 46.1413 63 U -0.3990 26.8215 47.0198 -Impact.ttf 44 b 25.8600 46.1413 64 j -0.0742 13.7692 51.4610 -Impact.ttf 44 b 25.8600 46.1413 65 ( -0.0769 14.9285 46.1413 -Impact.ttf 44 b 25.8600 46.1413 66 7 0.0696 22.3245 46.1413 -Impact.ttf 44 b 25.8600 46.1413 67 § -1.0750 25.6430 53.5180 -Impact.ttf 44 b 25.8600 46.1413 68 $ -3.6868 26.8215 54.0680 -Impact.ttf 44 b 25.8600 46.1413 69 € -1.0815 28.6058 47.8983 -Impact.ttf 44 b 25.8600 46.1413 70 / -1.0618 22.7302 48.3733 -Impact.ttf 44 b 25.8600 46.1413 71 C -0.9059 26.9465 47.8983 -Impact.ttf 44 b 25.8600 46.1413 72 * -0.0228 15.4705 13.7692 -Impact.ttf 44 b 25.8600 46.1413 73 ” -0.0343 19.2175 14.9477 -Impact.ttf 44 b 25.8600 46.1413 74 ? -0.7752 26.8215 47.0198 -Impact.ttf 44 b 25.8600 46.1413 75 { 0.1339 19.1675 54.8215 -Impact.ttf 44 b 25.8600 46.1413 76 } 0.0129 19.1675 54.8215 -Impact.ttf 44 b 25.8600 46.1413 77 , 37.0930 8.4302 14.9477 -Impact.ttf 44 b 25.8600 46.1413 78 I -0.1951 11.6430 46.1413 -Impact.ttf 44 b 25.8600 46.1413 79 ° -1.0162 18.0163 18.0163 -Impact.ttf 44 b 25.8600 46.1413 80 K 0.0000 30.3570 46.1413 -Impact.ttf 44 b 25.8600 46.1413 81 H 0.0742 27.2192 46.1413 -Impact.ttf 44 b 25.8600 46.1413 82 q 8.2409 25.8600 43.1785 -Impact.ttf 44 b 25.8600 46.1413 83 & 8.1156 33.5925 37.8587 -Impact.ttf 44 b 25.8600 46.1413 84 ’ 0.1186 8.4302 14.9477 -Impact.ttf 44 b 25.8600 46.1413 85 [ 0.1339 13.3942 46.1413 -Impact.ttf 44 b 25.8600 46.1413 86 - 23.1699 14.8785 7.9267 -Impact.ttf 44 b 25.8600 46.1413 87 Y 0.2855 27.6250 46.1413 -Impact.ttf 44 b 25.8600 46.1413 88 Q -1.2345 26.8215 52.3395 -Impact.ttf 44 b 25.8600 46.1413 89 " 0.1061 19.7175 14.0000 -Impact.ttf 44 b 25.8600 46.1413 90 ! 0.0176 12.8215 46.1413 -Impact.ttf 44 b 25.8600 46.1413 91 x 8.2918 25.1760 37.8587 -Impact.ttf 44 b 25.8600 46.1413 92 ) -0.0408 14.9285 46.1413 -Impact.ttf 44 b 25.8600 46.1413 93 = 14.7309 27.6670 16.7320 -Impact.ttf 44 b 25.8600 46.1413 94 + 9.5422 27.1773 27.1773 -Impact.ttf 44 b 25.8600 46.1413 95 X 0.0111 29.6400 46.1413 -Impact.ttf 44 b 25.8600 46.1413 96 » 9.6033 19.6198 32.7140 -Impact.ttf 44 b 25.8600 46.1413 97 ' 0.1312 8.6802 14.0000 -Impact.ttf 44 b 25.8600 46.1413 98 ¢ 0.1908 25.8600 49.5017 -Impact.ttf 44 b 25.8600 46.1413 99 Z 0.1905 22.6245 46.1413 -Impact.ttf 44 b 25.8600 46.1413 100 > 8.2075 27.6670 29.1785 -Impact.ttf 44 b 25.8600 46.1413 101 ® 2.6394 43.1785 43.3035 -Impact.ttf 44 b 25.8600 46.1413 102 © 4.2037 43.1785 42.0000 -Impact.ttf 44 b 25.8600 46.1413 103 ] 0.0631 13.3942 46.1413 -Impact.ttf 44 b 25.8600 46.1413 104 é -1.1392 25.5600 47.5698 -Impact.ttf 44 b 25.8600 46.1413 105 z 8.4736 19.3198 37.8587 -Impact.ttf 44 b 25.8600 46.1413 106 _ 50.6539 32.1413 2.8378 -Impact.ttf 44 b 25.8600 46.1413 107 ¥ -0.0774 27.6250 46.1413 -Impact.ttf 45 9 26.3407 47.8983 1 t 3.8723 17.0878 43.1785 -Impact.ttf 45 9 26.3407 47.8983 2 h 0.9267 25.8600 46.1413 -Impact.ttf 45 9 26.3407 47.8983 3 a 9.2592 24.6815 37.8587 -Impact.ttf 45 9 26.3407 47.8983 4 n 8.8815 25.8600 37.8587 -Impact.ttf 45 9 26.3407 47.8983 5 P 1.0995 25.1622 46.1413 -Impact.ttf 45 9 26.3407 47.8983 6 o 9.4033 25.5600 37.8587 -Impact.ttf 45 9 26.3407 47.8983 7 e 9.1715 25.5600 37.8587 -Impact.ttf 45 9 26.3407 47.8983 8 : 16.6067 8.6802 30.3570 -Impact.ttf 45 9 26.3407 47.8983 9 r 9.1280 17.9105 37.8587 -Impact.ttf 45 9 26.3407 47.8983 10 l 1.0100 11.1622 46.1413 -Impact.ttf 45 9 26.3407 47.8983 11 i 0.6616 11.1622 46.1413 -Impact.ttf 45 9 26.3407 47.8983 12 1 0.9110 19.5925 46.1413 -Impact.ttf 45 9 26.3407 47.8983 13 | 1.0866 5.8425 53.6430 -Impact.ttf 45 9 26.3407 47.8983 14 N 0.5476 26.3407 46.1413 -Impact.ttf 45 9 26.3407 47.8983 15 f 0.6607 15.6593 46.1413 -Impact.ttf 45 9 26.3407 47.8983 16 g 9.0586 25.8600 44.3570 -Impact.ttf 45 9 26.3407 47.8983 17 d 0.7672 25.8600 46.1413 -Impact.ttf 45 9 26.3407 47.8983 18 W 1.0876 46.2890 46.1413 -Impact.ttf 45 9 26.3407 47.8983 19 s 9.3209 23.5030 37.8587 -Impact.ttf 45 9 26.3407 47.8983 20 c 9.0225 24.6815 37.8587 -Impact.ttf 45 9 26.3407 47.8983 21 u 9.1852 25.8600 37.8587 -Impact.ttf 45 9 26.3407 47.8983 22 3 0.2508 25.7680 47.8983 -Impact.ttf 45 9 26.3407 47.8983 23 ~ 16.4891 26.7885 12.8907 -Impact.ttf 45 9 26.3407 47.8983 24 # 5.6002 34.6652 41.1215 -Impact.ttf 45 9 26.3407 47.8983 25 O 0.0714 26.8215 47.8983 -Impact.ttf 45 9 26.3407 47.8983 26 ` -4.1597 15.1785 7.9267 -Impact.ttf 45 9 26.3407 47.8983 27 @ -0.0964 43.1785 48.8040 -Impact.ttf 45 9 26.3407 47.8983 28 F 1.0758 20.2675 46.1413 -Impact.ttf 45 9 26.3407 47.8983 29 S -0.1812 27.5192 47.8983 -Impact.ttf 45 9 26.3407 47.8983 30 p 8.8023 25.8600 43.1785 -Impact.ttf 45 9 26.3407 47.8983 31 “ 1.0949 19.2175 14.9477 -Impact.ttf 45 9 26.3407 47.8983 32 % 0.0754 37.9837 47.0198 -Impact.ttf 45 9 26.3407 47.8983 33 £ -0.0381 28.2727 47.0198 -Impact.ttf 45 9 26.3407 47.8983 34 . 37.7005 8.6802 9.3360 -Impact.ttf 45 9 26.3407 47.8983 35 2 0.0042 23.9837 47.0198 -Impact.ttf 45 9 26.3407 47.8983 36 5 0.6707 26.3407 47.0198 -Impact.ttf 45 9 26.3407 47.8983 37 m 9.1697 40.4657 37.8587 -Impact.ttf 45 9 26.3407 47.8983 38 V 0.9642 31.0355 46.1413 -Impact.ttf 45 9 26.3407 47.8983 39 6 0.0430 26.3407 47.8983 -Impact.ttf 45 9 26.3407 47.8983 40 w 9.0127 38.9680 37.8587 -Impact.ttf 45 9 26.3407 47.8983 41 T 1.1380 26.3407 46.1413 -Impact.ttf 45 9 26.3407 47.8983 42 M 0.8670 36.8052 46.1413 -Impact.ttf 45 9 26.3407 47.8983 43 G -0.0144 26.9465 47.8983 -Impact.ttf 45 9 26.3407 47.8983 44 b 0.8984 25.8600 46.1413 -Impact.ttf 45 9 26.3407 47.8983 45 9 -0.1122 26.3407 47.8983 -Impact.ttf 45 9 26.3407 47.8983 46 ; 16.7442 8.6802 36.1995 -Impact.ttf 45 9 26.3407 47.8983 47 D 0.8900 26.9465 46.1413 -Impact.ttf 45 9 26.3407 47.8983 48 L 0.9852 18.8948 46.1413 -Impact.ttf 45 9 26.3407 47.8983 49 y 9.2435 27.3942 43.1785 -Impact.ttf 45 9 26.3407 47.8983 50 ‘ 0.7148 8.4302 14.9477 -Impact.ttf 45 9 26.3407 47.8983 51 \ -0.1680 23.9087 48.3733 -Impact.ttf 45 9 26.3407 47.8983 52 R 0.7987 26.3407 46.1413 -Impact.ttf 45 9 26.3407 47.8983 53 < 8.9716 27.6670 29.1785 -Impact.ttf 45 9 26.3407 47.8983 54 4 0.9981 28.6977 46.1413 -Impact.ttf 45 9 26.3407 47.8983 55 8 -0.0013 26.0407 47.8983 -Impact.ttf 45 9 26.3407 47.8983 56 0 -0.2030 26.3407 47.8983 -Impact.ttf 45 9 26.3407 47.8983 57 A 0.7329 31.5355 46.1413 -Impact.ttf 45 9 26.3407 47.8983 58 E 1.0240 20.4483 46.1413 -Impact.ttf 45 9 26.3407 47.8983 59 B 0.8358 26.9465 46.1413 -Impact.ttf 45 9 26.3407 47.8983 60 v 8.9946 26.8215 37.8587 -Impact.ttf 45 9 26.3407 47.8983 61 k 0.8043 25.7680 46.1413 -Impact.ttf 45 9 26.3407 47.8983 62 J 1.0579 16.2320 46.1413 -Impact.ttf 45 9 26.3407 47.8983 63 U 1.0963 26.8215 47.0198 -Impact.ttf 45 9 26.3407 47.8983 64 j 0.9527 13.7692 51.4610 -Impact.ttf 45 9 26.3407 47.8983 65 ( 1.0787 14.9285 46.1413 -Impact.ttf 45 9 26.3407 47.8983 66 7 0.9240 22.3245 46.1413 -Impact.ttf 45 9 26.3407 47.8983 67 § 0.0955 25.6430 53.5180 -Impact.ttf 45 9 26.3407 47.8983 68 $ -2.8360 26.8215 54.0680 -Impact.ttf 45 9 26.3407 47.8983 69 € 0.0769 28.6058 47.8983 -Impact.ttf 45 9 26.3407 47.8983 70 / -0.1190 22.7302 48.3733 -Impact.ttf 45 9 26.3407 47.8983 71 C -0.2925 26.9465 47.8983 -Impact.ttf 45 9 26.3407 47.8983 72 * 0.9499 15.4705 13.7692 -Impact.ttf 45 9 26.3407 47.8983 73 ” 0.6912 19.2175 14.9477 -Impact.ttf 45 9 26.3407 47.8983 74 ? -0.1024 26.8215 47.0198 -Impact.ttf 45 9 26.3407 47.8983 75 { 0.7793 19.1675 54.8215 -Impact.ttf 45 9 26.3407 47.8983 76 } 1.0152 19.1675 54.8215 -Impact.ttf 45 9 26.3407 47.8983 77 , 37.9210 8.4302 14.9477 -Impact.ttf 45 9 26.3407 47.8983 78 I 0.8929 11.6430 46.1413 -Impact.ttf 45 9 26.3407 47.8983 79 ° 0.0052 18.0163 18.0163 -Impact.ttf 45 9 26.3407 47.8983 80 K 0.9400 30.3570 46.1413 -Impact.ttf 45 9 26.3407 47.8983 81 H 0.7711 27.2192 46.1413 -Impact.ttf 45 9 26.3407 47.8983 82 q 8.8898 25.8600 43.1785 -Impact.ttf 45 9 26.3407 47.8983 83 & 9.0771 33.5925 37.8587 -Impact.ttf 45 9 26.3407 47.8983 84 ’ 0.8484 8.4302 14.9477 -Impact.ttf 45 9 26.3407 47.8983 85 [ 0.6944 13.3942 46.1413 -Impact.ttf 45 9 26.3407 47.8983 86 - 23.8336 14.8785 7.9267 -Impact.ttf 45 9 26.3407 47.8983 87 Y 0.8145 27.6250 46.1413 -Impact.ttf 45 9 26.3407 47.8983 88 Q -0.0359 26.8215 52.3395 -Impact.ttf 45 9 26.3407 47.8983 89 " 0.8688 19.7175 14.0000 -Impact.ttf 45 9 26.3407 47.8983 90 ! 0.9670 12.8215 46.1413 -Impact.ttf 45 9 26.3407 47.8983 91 x 9.1193 25.1760 37.8587 -Impact.ttf 45 9 26.3407 47.8983 92 ) 0.8016 14.9285 46.1413 -Impact.ttf 45 9 26.3407 47.8983 93 = 15.8770 27.6670 16.7320 -Impact.ttf 45 9 26.3407 47.8983 94 + 10.6259 27.1773 27.1773 -Impact.ttf 45 9 26.3407 47.8983 95 X 0.7372 29.6400 46.1413 -Impact.ttf 45 9 26.3407 47.8983 96 » 10.6861 19.6198 32.7140 -Impact.ttf 45 9 26.3407 47.8983 97 ' 0.8484 8.6802 14.0000 -Impact.ttf 45 9 26.3407 47.8983 98 ¢ 1.1658 25.8600 49.5017 -Impact.ttf 45 9 26.3407 47.8983 99 Z 0.9241 22.6245 46.1413 -Impact.ttf 45 9 26.3407 47.8983 100 > 9.1783 27.6670 29.1785 -Impact.ttf 45 9 26.3407 47.8983 101 ® 3.7552 43.1785 43.3035 -Impact.ttf 45 9 26.3407 47.8983 102 © 5.0003 43.1785 42.0000 -Impact.ttf 45 9 26.3407 47.8983 103 ] 0.9754 13.3942 46.1413 -Impact.ttf 45 9 26.3407 47.8983 104 é -0.6543 25.5600 47.5698 -Impact.ttf 45 9 26.3407 47.8983 105 z 9.2639 19.3198 37.8587 -Impact.ttf 45 9 26.3407 47.8983 106 _ 51.5195 32.1413 2.8378 -Impact.ttf 45 9 26.3407 47.8983 107 ¥ 0.8043 27.6250 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 1 t -12.7715 17.0878 43.1785 -Impact.ttf 46 ; 8.6802 36.1995 2 h -15.7843 25.8600 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 3 a -7.4276 24.6815 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 4 n -7.5875 25.8600 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 5 P -15.6002 25.1622 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 6 o -7.6214 25.5600 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 7 e -7.4563 25.5600 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 8 : -0.1766 8.6802 30.3570 -Impact.ttf 46 ; 8.6802 36.1995 9 r -7.5434 17.9105 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 10 l -15.7364 11.1622 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 11 i -15.9396 11.1622 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 12 1 -15.7843 19.5925 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 13 | -16.0396 5.8425 53.6430 -Impact.ttf 46 ; 8.6802 36.1995 14 N -15.7843 26.3407 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 15 f -15.7843 15.6593 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 16 g -7.6045 25.8600 44.3570 -Impact.ttf 46 ; 8.6802 36.1995 17 d -15.7730 25.8600 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 18 W -15.7486 46.2890 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 19 s -7.5189 23.5030 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 20 c -7.3502 24.6815 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 21 u -7.6214 25.8600 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 22 3 -16.7763 25.7680 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 23 ~ -0.2238 26.7885 12.8907 -Impact.ttf 46 ; 8.6802 36.1995 24 # -10.6389 34.6652 41.1215 -Impact.ttf 46 ; 8.6802 36.1995 25 O -16.7369 26.8215 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 26 ` -20.5967 15.1785 7.9267 -Impact.ttf 46 ; 8.6802 36.1995 27 @ -16.9024 43.1785 48.8040 -Impact.ttf 46 ; 8.6802 36.1995 28 F -15.9122 20.2675 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 29 S -16.7814 27.5192 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 30 p -7.4276 25.8600 43.1785 -Impact.ttf 46 ; 8.6802 36.1995 31 “ -15.9654 19.2175 14.9477 -Impact.ttf 46 ; 8.6802 36.1995 32 % -16.5074 37.9837 47.0198 -Impact.ttf 46 ; 8.6802 36.1995 33 £ -16.7369 28.2727 47.0198 -Impact.ttf 46 ; 8.6802 36.1995 34 . 21.2420 8.6802 9.3360 -Impact.ttf 46 ; 8.6802 36.1995 35 2 -16.6270 23.9837 47.0198 -Impact.ttf 46 ; 8.6802 36.1995 36 5 -15.7843 26.3407 47.0198 -Impact.ttf 46 ; 8.6802 36.1995 37 m -7.5017 40.4657 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 38 V -15.8557 31.0355 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 39 6 -16.7582 26.3407 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 40 w -7.5819 38.9680 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 41 T -15.9136 26.3407 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 42 M -15.7700 36.8052 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 43 G -16.6173 26.9465 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 44 b -15.7700 25.8600 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 45 9 -16.6628 26.3407 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 46 ; 0.1242 8.6802 36.1995 -Impact.ttf 46 ; 8.6802 36.1995 47 D -15.7630 26.9465 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 48 L -16.0451 18.8948 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 49 y -7.2835 27.3942 43.1785 -Impact.ttf 46 ; 8.6802 36.1995 50 ‘ -15.7843 8.4302 14.9477 -Impact.ttf 46 ; 8.6802 36.1995 51 \ -16.7663 23.9087 48.3733 -Impact.ttf 46 ; 8.6802 36.1995 52 R -15.6958 26.3407 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 53 < -7.7750 27.6670 29.1785 -Impact.ttf 46 ; 8.6802 36.1995 54 4 -15.7773 28.6977 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 55 8 -16.5872 26.0407 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 56 0 -16.5886 26.3407 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 57 A -15.7843 31.5355 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 58 E -15.9988 20.4483 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 59 B -15.8057 26.9465 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 60 v -7.4692 26.8215 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 61 k -15.8797 25.7680 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 62 J -15.7486 16.2320 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 63 U -16.1866 26.8215 47.0198 -Impact.ttf 46 ; 8.6802 36.1995 64 j -15.6619 13.7692 51.4610 -Impact.ttf 46 ; 8.6802 36.1995 65 ( -15.6049 14.9285 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 66 7 -15.7416 22.3245 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 67 § -16.6211 25.6430 53.5180 -Impact.ttf 46 ; 8.6802 36.1995 68 $ -19.5485 26.8215 54.0680 -Impact.ttf 46 ; 8.6802 36.1995 69 € -16.6628 28.6058 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 70 / -16.8378 22.7302 48.3733 -Impact.ttf 46 ; 8.6802 36.1995 71 C -16.6985 26.9465 47.8983 -Impact.ttf 46 ; 8.6802 36.1995 72 * -15.8227 15.4705 13.7692 -Impact.ttf 46 ; 8.6802 36.1995 73 ” -15.7017 19.2175 14.9477 -Impact.ttf 46 ; 8.6802 36.1995 74 ? -16.6628 26.8215 47.0198 -Impact.ttf 46 ; 8.6802 36.1995 75 { -15.7843 19.1675 54.8215 -Impact.ttf 46 ; 8.6802 36.1995 76 } -15.8055 19.1675 54.8215 -Impact.ttf 46 ; 8.6802 36.1995 77 , 21.1776 8.4302 14.9477 -Impact.ttf 46 ; 8.6802 36.1995 78 I -15.8227 11.6430 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 79 ° -16.7439 18.0163 18.0163 -Impact.ttf 46 ; 8.6802 36.1995 80 K -15.7073 30.3570 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 81 H -15.5845 27.2192 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 82 q -7.3622 25.8600 43.1785 -Impact.ttf 46 ; 8.6802 36.1995 83 & -7.4363 33.5925 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 84 ’ -15.7128 8.4302 14.9477 -Impact.ttf 46 ; 8.6802 36.1995 85 [ -15.8797 13.3942 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 86 - 7.4033 14.8785 7.9267 -Impact.ttf 46 ; 8.6802 36.1995 87 Y -15.7198 27.6250 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 88 Q -16.7369 26.8215 52.3395 -Impact.ttf 46 ; 8.6802 36.1995 89 " -15.7486 19.7175 14.0000 -Impact.ttf 46 ; 8.6802 36.1995 90 ! -15.6192 12.8215 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 91 x -7.6357 25.1760 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 92 ) -15.6192 14.9285 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 93 = -0.7557 27.6670 16.7320 -Impact.ttf 46 ; 8.6802 36.1995 94 + -6.2235 27.1773 27.1773 -Impact.ttf 46 ; 8.6802 36.1995 95 X -15.7499 29.6400 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 96 » -6.1124 19.6198 32.7140 -Impact.ttf 46 ; 8.6802 36.1995 97 ' -15.7492 8.6802 14.0000 -Impact.ttf 46 ; 8.6802 36.1995 98 ¢ -15.6982 25.8600 49.5017 -Impact.ttf 46 ; 8.6802 36.1995 99 Z -15.6986 22.6245 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 100 > -7.5910 27.6670 29.1785 -Impact.ttf 46 ; 8.6802 36.1995 101 ® -13.0745 43.1785 43.3035 -Impact.ttf 46 ; 8.6802 36.1995 102 © -11.6476 43.1785 42.0000 -Impact.ttf 46 ; 8.6802 36.1995 103 ] -15.8969 13.3942 46.1413 -Impact.ttf 46 ; 8.6802 36.1995 104 é -17.1998 25.5600 47.5698 -Impact.ttf 46 ; 8.6802 36.1995 105 z -7.4633 19.3198 37.8587 -Impact.ttf 46 ; 8.6802 36.1995 106 _ 34.7710 32.1413 2.8378 -Impact.ttf 46 ; 8.6802 36.1995 107 ¥ -15.8381 27.6250 46.1413 -Impact.ttf 47 D 26.9465 46.1413 1 t 2.8816 17.0878 43.1785 -Impact.ttf 47 D 26.9465 46.1413 2 h 0.1728 25.8600 46.1413 -Impact.ttf 47 D 26.9465 46.1413 3 a 8.3911 24.6815 37.8587 -Impact.ttf 47 D 26.9465 46.1413 4 n 8.3812 25.8600 37.8587 -Impact.ttf 47 D 26.9465 46.1413 5 P 0.0839 25.1622 46.1413 -Impact.ttf 47 D 26.9465 46.1413 6 o 8.5049 25.5600 37.8587 -Impact.ttf 47 D 26.9465 46.1413 7 e 8.1357 25.5600 37.8587 -Impact.ttf 47 D 26.9465 46.1413 8 : 15.8662 8.6802 30.3570 -Impact.ttf 47 D 26.9465 46.1413 9 r 8.0063 17.9105 37.8587 -Impact.ttf 47 D 26.9465 46.1413 10 l -0.0357 11.1622 46.1413 -Impact.ttf 47 D 26.9465 46.1413 11 i -0.1315 11.1622 46.1413 -Impact.ttf 47 D 26.9465 46.1413 12 1 -0.1137 19.5925 46.1413 -Impact.ttf 47 D 26.9465 46.1413 13 | -0.0232 5.8425 53.6430 -Impact.ttf 47 D 26.9465 46.1413 14 N -0.0135 26.3407 46.1413 -Impact.ttf 47 D 26.9465 46.1413 15 f 0.0752 15.6593 46.1413 -Impact.ttf 47 D 26.9465 46.1413 16 g 8.4467 25.8600 44.3570 -Impact.ttf 47 D 26.9465 46.1413 17 d -0.1482 25.8600 46.1413 -Impact.ttf 47 D 26.9465 46.1413 18 W -0.2540 46.2890 46.1413 -Impact.ttf 47 D 26.9465 46.1413 19 s 8.3886 23.5030 37.8587 -Impact.ttf 47 D 26.9465 46.1413 20 c 8.0530 24.6815 37.8587 -Impact.ttf 47 D 26.9465 46.1413 21 u 8.0944 25.8600 37.8587 -Impact.ttf 47 D 26.9465 46.1413 22 3 -0.9667 25.7680 47.8983 -Impact.ttf 47 D 26.9465 46.1413 23 ~ 15.5618 26.7885 12.8907 -Impact.ttf 47 D 26.9465 46.1413 24 # 4.9164 34.6652 41.1215 -Impact.ttf 47 D 26.9465 46.1413 25 O -1.0722 26.8215 47.8983 -Impact.ttf 47 D 26.9465 46.1413 26 ` -5.0868 15.1785 7.9267 -Impact.ttf 47 D 26.9465 46.1413 27 @ -1.1815 43.1785 48.8040 -Impact.ttf 47 D 26.9465 46.1413 28 F -0.3338 20.2675 46.1413 -Impact.ttf 47 D 26.9465 46.1413 29 S -0.9198 27.5192 47.8983 -Impact.ttf 47 D 26.9465 46.1413 30 p 8.1129 25.8600 43.1785 -Impact.ttf 47 D 26.9465 46.1413 31 “ -0.4177 19.2175 14.9477 -Impact.ttf 47 D 26.9465 46.1413 32 % -0.9943 37.9837 47.0198 -Impact.ttf 47 D 26.9465 46.1413 33 £ -0.9579 28.2727 47.0198 -Impact.ttf 47 D 26.9465 46.1413 34 . 36.6393 8.6802 9.3360 -Impact.ttf 47 D 26.9465 46.1413 35 2 -0.8989 23.9837 47.0198 -Impact.ttf 47 D 26.9465 46.1413 36 5 -0.0417 26.3407 47.0198 -Impact.ttf 47 D 26.9465 46.1413 37 m 8.2655 40.4657 37.8587 -Impact.ttf 47 D 26.9465 46.1413 38 V 0.0204 31.0355 46.1413 -Impact.ttf 47 D 26.9465 46.1413 39 6 -0.8757 26.3407 47.8983 -Impact.ttf 47 D 26.9465 46.1413 40 w 8.4591 38.9680 37.8587 -Impact.ttf 47 D 26.9465 46.1413 41 T 0.1312 26.3407 46.1413 -Impact.ttf 47 D 26.9465 46.1413 42 M -0.2897 36.8052 46.1413 -Impact.ttf 47 D 26.9465 46.1413 43 G -0.3497 26.9465 47.8983 -Impact.ttf 47 D 26.9465 46.1413 44 b 0.0629 25.8600 46.1413 -Impact.ttf 47 D 26.9465 46.1413 45 9 -0.9740 26.3407 47.8983 -Impact.ttf 47 D 26.9465 46.1413 46 ; 15.7000 8.6802 36.1995 -Impact.ttf 47 D 26.9465 46.1413 47 D -0.0987 26.9465 46.1413 -Impact.ttf 47 D 26.9465 46.1413 48 L -0.0769 18.8948 46.1413 -Impact.ttf 47 D 26.9465 46.1413 49 y 8.4664 27.3942 43.1785 -Impact.ttf 47 D 26.9465 46.1413 50 ‘ 0.0111 8.4302 14.9477 -Impact.ttf 47 D 26.9465 46.1413 51 \ -0.8509 23.9087 48.3733 -Impact.ttf 47 D 26.9465 46.1413 52 R 0.1798 26.3407 46.1413 -Impact.ttf 47 D 26.9465 46.1413 53 < 8.2079 27.6670 29.1785 -Impact.ttf 47 D 26.9465 46.1413 54 4 -0.1280 28.6977 46.1413 -Impact.ttf 47 D 26.9465 46.1413 55 8 -1.0870 26.0407 47.8983 -Impact.ttf 47 D 26.9465 46.1413 56 0 -0.9174 26.3407 47.8983 -Impact.ttf 47 D 26.9465 46.1413 57 A 0.1111 31.5355 46.1413 -Impact.ttf 47 D 26.9465 46.1413 58 E 0.0374 20.4483 46.1413 -Impact.ttf 47 D 26.9465 46.1413 59 B -0.2400 26.9465 46.1413 -Impact.ttf 47 D 26.9465 46.1413 60 v 8.4234 26.8215 37.8587 -Impact.ttf 47 D 26.9465 46.1413 61 k -0.0653 25.7680 46.1413 -Impact.ttf 47 D 26.9465 46.1413 62 J -0.0269 16.2320 46.1413 -Impact.ttf 47 D 26.9465 46.1413 63 U -0.0427 26.8215 47.0198 -Impact.ttf 47 D 26.9465 46.1413 64 j -0.2016 13.7692 51.4610 -Impact.ttf 47 D 26.9465 46.1413 65 ( 0.0353 14.9285 46.1413 -Impact.ttf 47 D 26.9465 46.1413 66 7 -0.1269 22.3245 46.1413 -Impact.ttf 47 D 26.9465 46.1413 67 § -0.8702 25.6430 53.5180 -Impact.ttf 47 D 26.9465 46.1413 68 $ -4.0389 26.8215 54.0680 -Impact.ttf 47 D 26.9465 46.1413 69 € -1.1268 28.6058 47.8983 -Impact.ttf 47 D 26.9465 46.1413 70 / -0.8709 22.7302 48.3733 -Impact.ttf 47 D 26.9465 46.1413 71 C -0.8428 26.9465 47.8983 -Impact.ttf 47 D 26.9465 46.1413 72 * 0.1367 15.4705 13.7692 -Impact.ttf 47 D 26.9465 46.1413 73 ” 0.0038 19.2175 14.9477 -Impact.ttf 47 D 26.9465 46.1413 74 ? -0.6204 26.8215 47.0198 -Impact.ttf 47 D 26.9465 46.1413 75 { 0.0885 19.1675 54.8215 -Impact.ttf 47 D 26.9465 46.1413 76 } 0.0917 19.1675 54.8215 -Impact.ttf 47 D 26.9465 46.1413 77 , 37.1204 8.4302 14.9477 -Impact.ttf 47 D 26.9465 46.1413 78 I -0.0115 11.6430 46.1413 -Impact.ttf 47 D 26.9465 46.1413 79 ° -1.0495 18.0163 18.0163 -Impact.ttf 47 D 26.9465 46.1413 80 K -0.0487 30.3570 46.1413 -Impact.ttf 47 D 26.9465 46.1413 81 H 0.0403 27.2192 46.1413 -Impact.ttf 47 D 26.9465 46.1413 82 q 8.3934 25.8600 43.1785 -Impact.ttf 47 D 26.9465 46.1413 83 & 8.2940 33.5925 37.8587 -Impact.ttf 47 D 26.9465 46.1413 84 ’ -0.0143 8.4302 14.9477 -Impact.ttf 47 D 26.9465 46.1413 85 [ -0.0070 13.3942 46.1413 -Impact.ttf 47 D 26.9465 46.1413 86 - 23.0860 14.8785 7.9267 -Impact.ttf 47 D 26.9465 46.1413 87 Y -0.0997 27.6250 46.1413 -Impact.ttf 47 D 26.9465 46.1413 88 Q -0.5842 26.8215 52.3395 -Impact.ttf 47 D 26.9465 46.1413 89 " 0.2053 19.7175 14.0000 -Impact.ttf 47 D 26.9465 46.1413 90 ! 0.3412 12.8215 46.1413 -Impact.ttf 47 D 26.9465 46.1413 91 x 8.2668 25.1760 37.8587 -Impact.ttf 47 D 26.9465 46.1413 92 ) 0.0167 14.9285 46.1413 -Impact.ttf 47 D 26.9465 46.1413 93 = 14.8316 27.6670 16.7320 -Impact.ttf 47 D 26.9465 46.1413 94 + 9.8405 27.1773 27.1773 -Impact.ttf 47 D 26.9465 46.1413 95 X 0.0000 29.6400 46.1413 -Impact.ttf 47 D 26.9465 46.1413 96 » 9.5518 19.6198 32.7140 -Impact.ttf 47 D 26.9465 46.1413 97 ' -0.2995 8.6802 14.0000 -Impact.ttf 47 D 26.9465 46.1413 98 ¢ 0.2337 25.8600 49.5017 -Impact.ttf 47 D 26.9465 46.1413 99 Z -0.2543 22.6245 46.1413 -Impact.ttf 47 D 26.9465 46.1413 100 > 7.8508 27.6670 29.1785 -Impact.ttf 47 D 26.9465 46.1413 101 ® 2.7593 43.1785 43.3035 -Impact.ttf 47 D 26.9465 46.1413 102 © 4.2302 43.1785 42.0000 -Impact.ttf 47 D 26.9465 46.1413 103 ] -0.1669 13.3942 46.1413 -Impact.ttf 47 D 26.9465 46.1413 104 é -1.6807 25.5600 47.5698 -Impact.ttf 47 D 26.9465 46.1413 105 z 8.4220 19.3198 37.8587 -Impact.ttf 47 D 26.9465 46.1413 106 _ 50.6892 32.1413 2.8378 -Impact.ttf 47 D 26.9465 46.1413 107 ¥ 0.0231 27.6250 46.1413 -Impact.ttf 48 L 18.8948 46.1413 1 t 3.0099 17.0878 43.1785 -Impact.ttf 48 L 18.8948 46.1413 2 h -0.2721 25.8600 46.1413 -Impact.ttf 48 L 18.8948 46.1413 3 a 8.3707 24.6815 37.8587 -Impact.ttf 48 L 18.8948 46.1413 4 n 8.3516 25.8600 37.8587 -Impact.ttf 48 L 18.8948 46.1413 5 P 0.0371 25.1622 46.1413 -Impact.ttf 48 L 18.8948 46.1413 6 o 8.1083 25.5600 37.8587 -Impact.ttf 48 L 18.8948 46.1413 7 e 8.1226 25.5600 37.8587 -Impact.ttf 48 L 18.8948 46.1413 8 : 15.9539 8.6802 30.3570 -Impact.ttf 48 L 18.8948 46.1413 9 r 8.1031 17.9105 37.8587 -Impact.ttf 48 L 18.8948 46.1413 10 l 0.0812 11.1622 46.1413 -Impact.ttf 48 L 18.8948 46.1413 11 i -0.0984 11.1622 46.1413 -Impact.ttf 48 L 18.8948 46.1413 12 1 0.0885 19.5925 46.1413 -Impact.ttf 48 L 18.8948 46.1413 13 | -0.0307 5.8425 53.6430 -Impact.ttf 48 L 18.8948 46.1413 14 N 0.0377 26.3407 46.1413 -Impact.ttf 48 L 18.8948 46.1413 15 f -0.0214 15.6593 46.1413 -Impact.ttf 48 L 18.8948 46.1413 16 g 8.1986 25.8600 44.3570 -Impact.ttf 48 L 18.8948 46.1413 17 d -0.1269 25.8600 46.1413 -Impact.ttf 48 L 18.8948 46.1413 18 W 0.0992 46.2890 46.1413 -Impact.ttf 48 L 18.8948 46.1413 19 s 8.3984 23.5030 37.8587 -Impact.ttf 48 L 18.8948 46.1413 20 c 8.3242 24.6815 37.8587 -Impact.ttf 48 L 18.8948 46.1413 21 u 8.4207 25.8600 37.8587 -Impact.ttf 48 L 18.8948 46.1413 22 3 -1.0373 25.7680 47.8983 -Impact.ttf 48 L 18.8948 46.1413 23 ~ 15.3514 26.7885 12.8907 -Impact.ttf 48 L 18.8948 46.1413 24 # 5.1412 34.6652 41.1215 -Impact.ttf 48 L 18.8948 46.1413 25 O -0.7057 26.8215 47.8983 -Impact.ttf 48 L 18.8948 46.1413 26 ` -5.0543 15.1785 7.9267 -Impact.ttf 48 L 18.8948 46.1413 27 @ -1.1352 43.1785 48.8040 -Impact.ttf 48 L 18.8948 46.1413 28 F -0.2678 20.2675 46.1413 -Impact.ttf 48 L 18.8948 46.1413 29 S -0.8855 27.5192 47.8983 -Impact.ttf 48 L 18.8948 46.1413 30 p 8.4750 25.8600 43.1785 -Impact.ttf 48 L 18.8948 46.1413 31 “ 0.0742 19.2175 14.9477 -Impact.ttf 48 L 18.8948 46.1413 32 % -0.7928 37.9837 47.0198 -Impact.ttf 48 L 18.8948 46.1413 33 £ -0.9656 28.2727 47.0198 -Impact.ttf 48 L 18.8948 46.1413 34 . 36.7227 8.6802 9.3360 -Impact.ttf 48 L 18.8948 46.1413 35 2 -0.8688 23.9837 47.0198 -Impact.ttf 48 L 18.8948 46.1413 36 5 -0.1359 26.3407 47.0198 -Impact.ttf 48 L 18.8948 46.1413 37 m 8.3956 40.4657 37.8587 -Impact.ttf 48 L 18.8948 46.1413 38 V 0.0742 31.0355 46.1413 -Impact.ttf 48 L 18.8948 46.1413 39 6 -0.9312 26.3407 47.8983 -Impact.ttf 48 L 18.8948 46.1413 40 w 8.2793 38.9680 37.8587 -Impact.ttf 48 L 18.8948 46.1413 41 T -0.1909 26.3407 46.1413 -Impact.ttf 48 L 18.8948 46.1413 42 M -0.0885 36.8052 46.1413 -Impact.ttf 48 L 18.8948 46.1413 43 G -0.6426 26.9465 47.8983 -Impact.ttf 48 L 18.8948 46.1413 44 b -0.2887 25.8600 46.1413 -Impact.ttf 48 L 18.8948 46.1413 45 9 -0.7969 26.3407 47.8983 -Impact.ttf 48 L 18.8948 46.1413 46 ; 15.7875 8.6802 36.1995 -Impact.ttf 48 L 18.8948 46.1413 47 D 0.0922 26.9465 46.1413 -Impact.ttf 48 L 18.8948 46.1413 48 L 0.0696 18.8948 46.1413 -Impact.ttf 48 L 18.8948 46.1413 49 y 8.4780 27.3942 43.1785 -Impact.ttf 48 L 18.8948 46.1413 50 ‘ 0.0844 8.4302 14.9477 -Impact.ttf 48 L 18.8948 46.1413 51 \ -0.8709 23.9087 48.3733 -Impact.ttf 48 L 18.8948 46.1413 52 R -0.1794 26.3407 46.1413 -Impact.ttf 48 L 18.8948 46.1413 53 < 8.3296 27.6670 29.1785 -Impact.ttf 48 L 18.8948 46.1413 54 4 -0.0927 28.6977 46.1413 -Impact.ttf 48 L 18.8948 46.1413 55 8 -0.7127 26.0407 47.8983 -Impact.ttf 48 L 18.8948 46.1413 56 0 -0.7830 26.3407 47.8983 -Impact.ttf 48 L 18.8948 46.1413 57 A -0.0468 31.5355 46.1413 -Impact.ttf 48 L 18.8948 46.1413 58 E 0.2640 20.4483 46.1413 -Impact.ttf 48 L 18.8948 46.1413 59 B -0.2637 26.9465 46.1413 -Impact.ttf 48 L 18.8948 46.1413 60 v 8.4192 26.8215 37.8587 -Impact.ttf 48 L 18.8948 46.1413 61 k 0.4282 25.7680 46.1413 -Impact.ttf 48 L 18.8948 46.1413 62 J 0.0204 16.2320 46.1413 -Impact.ttf 48 L 18.8948 46.1413 63 U 0.0742 26.8215 47.0198 -Impact.ttf 48 L 18.8948 46.1413 64 j 0.1029 13.7692 51.4610 -Impact.ttf 48 L 18.8948 46.1413 65 ( 0.1052 14.9285 46.1413 -Impact.ttf 48 L 18.8948 46.1413 66 7 -0.2861 22.3245 46.1413 -Impact.ttf 48 L 18.8948 46.1413 67 § -0.6612 25.6430 53.5180 -Impact.ttf 48 L 18.8948 46.1413 68 $ -3.8524 26.8215 54.0680 -Impact.ttf 48 L 18.8948 46.1413 69 € -1.0301 28.6058 47.8983 -Impact.ttf 48 L 18.8948 46.1413 70 / -0.8366 22.7302 48.3733 -Impact.ttf 48 L 18.8948 46.1413 71 C -1.1307 26.9465 47.8983 -Impact.ttf 48 L 18.8948 46.1413 72 * 0.1243 15.4705 13.7692 -Impact.ttf 48 L 18.8948 46.1413 73 ” -0.0013 19.2175 14.9477 -Impact.ttf 48 L 18.8948 46.1413 74 ? -1.2696 26.8215 47.0198 -Impact.ttf 48 L 18.8948 46.1413 75 { -0.2127 19.1675 54.8215 -Impact.ttf 48 L 18.8948 46.1413 76 } 0.1016 19.1675 54.8215 -Impact.ttf 48 L 18.8948 46.1413 77 , 37.3085 8.4302 14.9477 -Impact.ttf 48 L 18.8948 46.1413 78 I -0.1645 11.6430 46.1413 -Impact.ttf 48 L 18.8948 46.1413 79 ° -0.7868 18.0163 18.0163 -Impact.ttf 48 L 18.8948 46.1413 80 K -0.2216 30.3570 46.1413 -Impact.ttf 48 L 18.8948 46.1413 81 H 0.1035 27.2192 46.1413 -Impact.ttf 48 L 18.8948 46.1413 82 q 8.2881 25.8600 43.1785 -Impact.ttf 48 L 18.8948 46.1413 83 & 8.5920 33.5925 37.8587 -Impact.ttf 48 L 18.8948 46.1413 84 ’ -0.0812 8.4302 14.9477 -Impact.ttf 48 L 18.8948 46.1413 85 [ -0.0853 13.3942 46.1413 -Impact.ttf 48 L 18.8948 46.1413 86 - 23.1932 14.8785 7.9267 -Impact.ttf 48 L 18.8948 46.1413 87 Y 0.1696 27.6250 46.1413 -Impact.ttf 48 L 18.8948 46.1413 88 Q -0.6172 26.8215 52.3395 -Impact.ttf 48 L 18.8948 46.1413 89 " 0.3393 19.7175 14.0000 -Impact.ttf 48 L 18.8948 46.1413 90 ! -0.2605 12.8215 46.1413 -Impact.ttf 48 L 18.8948 46.1413 91 x 8.5406 25.1760 37.8587 -Impact.ttf 48 L 18.8948 46.1413 92 ) -0.0903 14.9285 46.1413 -Impact.ttf 48 L 18.8948 46.1413 93 = 14.9554 27.6670 16.7320 -Impact.ttf 48 L 18.8948 46.1413 94 + 9.9497 27.1773 27.1773 -Impact.ttf 48 L 18.8948 46.1413 95 X 0.0973 29.6400 46.1413 -Impact.ttf 48 L 18.8948 46.1413 96 » 9.6432 19.6198 32.7140 -Impact.ttf 48 L 18.8948 46.1413 97 ' -0.0226 8.6802 14.0000 -Impact.ttf 48 L 18.8948 46.1413 98 ¢ -0.1303 25.8600 49.5017 -Impact.ttf 48 L 18.8948 46.1413 99 Z 0.1542 22.6245 46.1413 -Impact.ttf 48 L 18.8948 46.1413 100 > 8.4199 27.6670 29.1785 -Impact.ttf 48 L 18.8948 46.1413 101 ® 3.0802 43.1785 43.3035 -Impact.ttf 48 L 18.8948 46.1413 102 © 4.2270 43.1785 42.0000 -Impact.ttf 48 L 18.8948 46.1413 103 ] -0.0175 13.3942 46.1413 -Impact.ttf 48 L 18.8948 46.1413 104 é -1.3446 25.5600 47.5698 -Impact.ttf 48 L 18.8948 46.1413 105 z 8.1948 19.3198 37.8587 -Impact.ttf 48 L 18.8948 46.1413 106 _ 50.6507 32.1413 2.8378 -Impact.ttf 48 L 18.8948 46.1413 107 ¥ 0.0527 27.6250 46.1413 -Impact.ttf 49 y 27.3942 43.1785 1 t -5.6084 17.0878 43.1785 -Impact.ttf 49 y 27.3942 43.1785 2 h -8.4351 25.8600 46.1413 -Impact.ttf 49 y 27.3942 43.1785 3 a 0.0013 24.6815 37.8587 -Impact.ttf 49 y 27.3942 43.1785 4 n 0.0532 25.8600 37.8587 -Impact.ttf 49 y 27.3942 43.1785 5 P -8.1583 25.1622 46.1413 -Impact.ttf 49 y 27.3942 43.1785 6 o -0.0214 25.5600 37.8587 -Impact.ttf 49 y 27.3942 43.1785 7 e -0.3430 25.5600 37.8587 -Impact.ttf 49 y 27.3942 43.1785 8 : 7.3451 8.6802 30.3570 -Impact.ttf 49 y 27.3942 43.1785 9 r -0.2178 17.9105 37.8587 -Impact.ttf 49 y 27.3942 43.1785 10 l -8.2226 11.1622 46.1413 -Impact.ttf 49 y 27.3942 43.1785 11 i -8.2441 11.1622 46.1413 -Impact.ttf 49 y 27.3942 43.1785 12 1 -8.0929 19.5925 46.1413 -Impact.ttf 49 y 27.3942 43.1785 13 | -8.1013 5.8425 53.6430 -Impact.ttf 49 y 27.3942 43.1785 14 N -8.3952 26.3407 46.1413 -Impact.ttf 49 y 27.3942 43.1785 15 f -8.6010 15.6593 46.1413 -Impact.ttf 49 y 27.3942 43.1785 16 g -0.1111 25.8600 44.3570 -Impact.ttf 49 y 27.3942 43.1785 17 d -8.5295 25.8600 46.1413 -Impact.ttf 49 y 27.3942 43.1785 18 W -8.1688 46.2890 46.1413 -Impact.ttf 49 y 27.3942 43.1785 19 s 0.0742 23.5030 37.8587 -Impact.ttf 49 y 27.3942 43.1785 20 c -0.0927 24.6815 37.8587 -Impact.ttf 49 y 27.3942 43.1785 21 u 0.0437 25.8600 37.8587 -Impact.ttf 49 y 27.3942 43.1785 22 3 -8.9798 25.7680 47.8983 -Impact.ttf 49 y 27.3942 43.1785 23 ~ 7.0968 26.7885 12.8907 -Impact.ttf 49 y 27.3942 43.1785 24 # -3.3467 34.6652 41.1215 -Impact.ttf 49 y 27.3942 43.1785 25 O -9.1764 26.8215 47.8983 -Impact.ttf 49 y 27.3942 43.1785 26 ` -13.6028 15.1785 7.9267 -Impact.ttf 49 y 27.3942 43.1785 27 @ -9.0233 43.1785 48.8040 -Impact.ttf 49 y 27.3942 43.1785 28 F -8.1357 20.2675 46.1413 -Impact.ttf 49 y 27.3942 43.1785 29 S -9.0446 27.5192 47.8983 -Impact.ttf 49 y 27.3942 43.1785 30 p 0.1677 25.8600 43.1785 -Impact.ttf 49 y 27.3942 43.1785 31 “ -8.1156 19.2175 14.9477 -Impact.ttf 49 y 27.3942 43.1785 32 % -9.2635 37.9837 47.0198 -Impact.ttf 49 y 27.3942 43.1785 33 £ -9.3436 28.2727 47.0198 -Impact.ttf 49 y 27.3942 43.1785 34 . 28.6237 8.6802 9.3360 -Impact.ttf 49 y 27.3942 43.1785 35 2 -9.2365 23.9837 47.0198 -Impact.ttf 49 y 27.3942 43.1785 36 5 -8.2167 26.3407 47.0198 -Impact.ttf 49 y 27.3942 43.1785 37 m 0.2463 40.4657 37.8587 -Impact.ttf 49 y 27.3942 43.1785 38 V -8.2454 31.0355 46.1413 -Impact.ttf 49 y 27.3942 43.1785 39 6 -9.1327 26.3407 47.8983 -Impact.ttf 49 y 27.3942 43.1785 40 w -0.1702 38.9680 37.8587 -Impact.ttf 49 y 27.3942 43.1785 41 T -8.3015 26.3407 46.1413 -Impact.ttf 49 y 27.3942 43.1785 42 M -8.3748 36.8052 46.1413 -Impact.ttf 49 y 27.3942 43.1785 43 G -9.6832 26.9465 47.8983 -Impact.ttf 49 y 27.3942 43.1785 44 b -8.5063 25.8600 46.1413 -Impact.ttf 49 y 27.3942 43.1785 45 9 -9.2495 26.3407 47.8983 -Impact.ttf 49 y 27.3942 43.1785 46 ; 7.5119 8.6802 36.1995 -Impact.ttf 49 y 27.3942 43.1785 47 D -8.1389 26.9465 46.1413 -Impact.ttf 49 y 27.3942 43.1785 48 L -7.9938 18.8948 46.1413 -Impact.ttf 49 y 27.3942 43.1785 49 y -0.1190 27.3942 43.1785 -Impact.ttf 49 y 27.3942 43.1785 50 ‘ -8.4151 8.4302 14.9477 -Impact.ttf 49 y 27.3942 43.1785 51 \ -9.3263 23.9087 48.3733 -Impact.ttf 49 y 27.3942 43.1785 52 R -8.2909 26.3407 46.1413 -Impact.ttf 49 y 27.3942 43.1785 53 < -0.2218 27.6670 29.1785 -Impact.ttf 49 y 27.3942 43.1785 54 4 -8.2409 28.6977 46.1413 -Impact.ttf 49 y 27.3942 43.1785 55 8 -9.0193 26.0407 47.8983 -Impact.ttf 49 y 27.3942 43.1785 56 0 -9.1128 26.3407 47.8983 -Impact.ttf 49 y 27.3942 43.1785 57 A -8.4623 31.5355 46.1413 -Impact.ttf 49 y 27.3942 43.1785 58 E -8.4689 20.4483 46.1413 -Impact.ttf 49 y 27.3942 43.1785 59 B -8.1597 26.9465 46.1413 -Impact.ttf 49 y 27.3942 43.1785 60 v -0.1397 26.8215 37.8587 -Impact.ttf 49 y 27.3942 43.1785 61 k -8.3895 25.7680 46.1413 -Impact.ttf 49 y 27.3942 43.1785 62 J -8.1903 16.2320 46.1413 -Impact.ttf 49 y 27.3942 43.1785 63 U -8.3937 26.8215 47.0198 -Impact.ttf 49 y 27.3942 43.1785 64 j -8.4698 13.7692 51.4610 -Impact.ttf 49 y 27.3942 43.1785 65 ( -8.3386 14.9285 46.1413 -Impact.ttf 49 y 27.3942 43.1785 66 7 -8.5856 22.3245 46.1413 -Impact.ttf 49 y 27.3942 43.1785 67 § -9.1510 25.6430 53.5180 -Impact.ttf 49 y 27.3942 43.1785 68 $ -11.8854 26.8215 54.0680 -Impact.ttf 49 y 27.3942 43.1785 69 € -9.2394 28.6058 47.8983 -Impact.ttf 49 y 27.3942 43.1785 70 / -9.1834 22.7302 48.3733 -Impact.ttf 49 y 27.3942 43.1785 71 C -9.3806 26.9465 47.8983 -Impact.ttf 49 y 27.3942 43.1785 72 * -8.1101 15.4705 13.7692 -Impact.ttf 49 y 27.3942 43.1785 73 ” -8.3029 19.2175 14.9477 -Impact.ttf 49 y 27.3942 43.1785 74 ? -9.1540 26.8215 47.0198 -Impact.ttf 49 y 27.3942 43.1785 75 { -8.4067 19.1675 54.8215 -Impact.ttf 49 y 27.3942 43.1785 76 } -8.4123 19.1675 54.8215 -Impact.ttf 49 y 27.3942 43.1785 77 , 28.6247 8.4302 14.9477 -Impact.ttf 49 y 27.3942 43.1785 78 I -8.1481 11.6430 46.1413 -Impact.ttf 49 y 27.3942 43.1785 79 ° -9.2350 18.0163 18.0163 -Impact.ttf 49 y 27.3942 43.1785 80 K -8.2912 30.3570 46.1413 -Impact.ttf 49 y 27.3942 43.1785 81 H -8.2143 27.2192 46.1413 -Impact.ttf 49 y 27.3942 43.1785 82 q 0.2581 25.8600 43.1785 -Impact.ttf 49 y 27.3942 43.1785 83 & -0.1196 33.5925 37.8587 -Impact.ttf 49 y 27.3942 43.1785 84 ’ -8.1694 8.4302 14.9477 -Impact.ttf 49 y 27.3942 43.1785 85 [ -8.1647 13.3942 46.1413 -Impact.ttf 49 y 27.3942 43.1785 86 - 14.5630 14.8785 7.9267 -Impact.ttf 49 y 27.3942 43.1785 87 Y -8.0799 27.6250 46.1413 -Impact.ttf 49 y 27.3942 43.1785 88 Q -9.2769 26.8215 52.3395 -Impact.ttf 49 y 27.3942 43.1785 89 " -8.1601 19.7175 14.0000 -Impact.ttf 49 y 27.3942 43.1785 90 ! -8.4698 12.8215 46.1413 -Impact.ttf 49 y 27.3942 43.1785 91 x 0.1339 25.1760 37.8587 -Impact.ttf 49 y 27.3942 43.1785 92 ) -8.2539 14.9285 46.1413 -Impact.ttf 49 y 27.3942 43.1785 93 = 6.7786 27.6670 16.7320 -Impact.ttf 49 y 27.3942 43.1785 94 + 1.6569 27.1773 27.1773 -Impact.ttf 49 y 27.3942 43.1785 95 X -8.3038 29.6400 46.1413 -Impact.ttf 49 y 27.3942 43.1785 96 » 1.3974 19.6198 32.7140 -Impact.ttf 49 y 27.3942 43.1785 97 ' -8.3349 8.6802 14.0000 -Impact.ttf 49 y 27.3942 43.1785 98 ¢ -8.2766 25.8600 49.5017 -Impact.ttf 49 y 27.3942 43.1785 99 Z -8.0945 22.6245 46.1413 -Impact.ttf 49 y 27.3942 43.1785 100 > -0.0935 27.6670 29.1785 -Impact.ttf 49 y 27.3942 43.1785 101 ® -5.2265 43.1785 43.3035 -Impact.ttf 49 y 27.3942 43.1785 102 © -4.2905 43.1785 42.0000 -Impact.ttf 49 y 27.3942 43.1785 103 ] -8.2185 13.3942 46.1413 -Impact.ttf 49 y 27.3942 43.1785 104 é -9.7533 25.5600 47.5698 -Impact.ttf 49 y 27.3942 43.1785 105 z -0.1526 19.3198 37.8587 -Impact.ttf 49 y 27.3942 43.1785 106 _ 42.2811 32.1413 2.8378 -Impact.ttf 49 y 27.3942 43.1785 107 ¥ -8.4406 27.6250 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 1 t 2.7445 17.0878 43.1785 -Impact.ttf 50 ‘ 8.4302 14.9477 2 h -0.0839 25.8600 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 3 a 8.1059 24.6815 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 4 n 8.3280 25.8600 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 5 P 0.1613 25.1622 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 6 o 8.3242 25.5600 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 7 e 8.2825 25.5600 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 8 : 15.6716 8.6802 30.3570 -Impact.ttf 50 ‘ 8.4302 14.9477 9 r 8.4424 17.9105 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 10 l 0.1014 11.1622 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 11 i 0.0514 11.1622 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 12 1 0.0357 19.5925 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 13 | 0.1228 5.8425 53.6430 -Impact.ttf 50 ‘ 8.4302 14.9477 14 N -0.0000 26.3407 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 15 f 0.0000 15.6593 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 16 g 8.4503 25.8600 44.3570 -Impact.ttf 50 ‘ 8.4302 14.9477 17 d 0.1696 25.8600 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 18 W 0.0357 46.2890 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 19 s 8.2513 23.5030 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 20 c 8.2760 24.6815 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 21 u 8.1871 25.8600 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 22 3 -0.9943 25.7680 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 23 ~ 15.3051 26.7885 12.8907 -Impact.ttf 50 ‘ 8.4302 14.9477 24 # 4.9813 34.6652 41.1215 -Impact.ttf 50 ‘ 8.4302 14.9477 25 O -0.8368 26.8215 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 26 ` -4.8755 15.1785 7.9267 -Impact.ttf 50 ‘ 8.4302 14.9477 27 @ -0.9100 43.1785 48.8040 -Impact.ttf 50 ‘ 8.4302 14.9477 28 F -0.0812 20.2675 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 29 S -0.8230 27.5192 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 30 p 8.2815 25.8600 43.1785 -Impact.ttf 50 ‘ 8.4302 14.9477 31 “ -0.1728 19.2175 14.9477 -Impact.ttf 50 ‘ 8.4302 14.9477 32 % -1.0527 37.9837 47.0198 -Impact.ttf 50 ‘ 8.4302 14.9477 33 £ -0.7616 28.2727 47.0198 -Impact.ttf 50 ‘ 8.4302 14.9477 34 . 36.9697 8.6802 9.3360 -Impact.ttf 50 ‘ 8.4302 14.9477 35 2 -1.0940 23.9837 47.0198 -Impact.ttf 50 ‘ 8.4302 14.9477 36 5 -0.2242 26.3407 47.0198 -Impact.ttf 50 ‘ 8.4302 14.9477 37 m 8.3637 40.4657 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 38 V 0.0000 31.0355 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 39 6 -0.9202 26.3407 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 40 w 8.4438 38.9680 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 41 T -0.0417 26.3407 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 42 M -0.0982 36.8052 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 43 G -0.8785 26.9465 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 44 b 0.1626 25.8600 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 45 9 -0.6360 26.3407 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 46 ; 15.7305 8.6802 36.1995 -Impact.ttf 50 ‘ 8.4302 14.9477 47 D 0.0561 26.9465 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 48 L 0.0857 18.8948 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 49 y 8.2013 27.3942 43.1785 -Impact.ttf 50 ‘ 8.4302 14.9477 50 ‘ -0.1640 8.4302 14.9477 -Impact.ttf 50 ‘ 8.4302 14.9477 51 \ -0.9997 23.9087 48.3733 -Impact.ttf 50 ‘ 8.4302 14.9477 52 R -0.0857 26.3407 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 53 < 8.2317 27.6670 29.1785 -Impact.ttf 50 ‘ 8.4302 14.9477 54 4 0.0714 28.6977 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 55 8 -0.6120 26.0407 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 56 0 -0.8785 26.3407 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 57 A 0.0714 31.5355 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 58 E 0.0000 20.4483 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 59 B -0.0871 26.9465 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 60 v 8.1871 26.8215 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 61 k 0.0955 25.7680 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 62 J -0.0714 16.2320 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 63 U 0.0417 26.8215 47.0198 -Impact.ttf 50 ‘ 8.4302 14.9477 64 j -0.0812 13.7692 51.4610 -Impact.ttf 50 ‘ 8.4302 14.9477 65 ( -0.2053 14.9285 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 66 7 0.0140 22.3245 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 67 § -0.8604 25.6430 53.5180 -Impact.ttf 50 ‘ 8.4302 14.9477 68 $ -3.7113 26.8215 54.0680 -Impact.ttf 50 ‘ 8.4302 14.9477 69 € -0.7154 28.6058 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 70 / -1.0535 22.7302 48.3733 -Impact.ttf 50 ‘ 8.4302 14.9477 71 C -0.8785 26.9465 47.8983 -Impact.ttf 50 ‘ 8.4302 14.9477 72 * 0.0871 15.4705 13.7692 -Impact.ttf 50 ‘ 8.4302 14.9477 73 ” -0.2925 19.2175 14.9477 -Impact.ttf 50 ‘ 8.4302 14.9477 74 ? -1.0144 26.8215 47.0198 -Impact.ttf 50 ‘ 8.4302 14.9477 75 { 0.0213 19.1675 54.8215 -Impact.ttf 50 ‘ 8.4302 14.9477 76 } -0.0301 19.1675 54.8215 -Impact.ttf 50 ‘ 8.4302 14.9477 77 , 37.1644 8.4302 14.9477 -Impact.ttf 50 ‘ 8.4302 14.9477 78 I 0.0885 11.6430 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 79 ° -0.7029 18.0163 18.0163 -Impact.ttf 50 ‘ 8.4302 14.9477 80 K -0.0143 30.3570 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 81 H -0.0357 27.2192 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 82 q 8.3085 25.8600 43.1785 -Impact.ttf 50 ‘ 8.4302 14.9477 83 & 8.3984 33.5925 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 84 ’ 0.0812 8.4302 14.9477 -Impact.ttf 50 ‘ 8.4302 14.9477 85 [ 0.1669 13.3942 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 86 - 23.0360 14.8785 7.9267 -Impact.ttf 50 ‘ 8.4302 14.9477 87 Y 0.1516 27.6250 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 88 Q -0.7659 26.8215 52.3395 -Impact.ttf 50 ‘ 8.4302 14.9477 89 " 0.0000 19.7175 14.0000 -Impact.ttf 50 ‘ 8.4302 14.9477 90 ! 0.0038 12.8215 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 91 x 8.3637 25.1760 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 92 ) -0.0955 14.9285 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 93 = 14.8103 27.6670 16.7320 -Impact.ttf 50 ‘ 8.4302 14.9477 94 + 9.9899 27.1773 27.1773 -Impact.ttf 50 ‘ 8.4302 14.9477 95 X -0.0774 29.6400 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 96 » 9.7302 19.6198 32.7140 -Impact.ttf 50 ‘ 8.4302 14.9477 97 ' -0.0742 8.6802 14.0000 -Impact.ttf 50 ‘ 8.4302 14.9477 98 ¢ 0.2024 25.8600 49.5017 -Impact.ttf 50 ‘ 8.4302 14.9477 99 Z 0.0399 22.6245 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 100 > 8.2446 27.6670 29.1785 -Impact.ttf 50 ‘ 8.4302 14.9477 101 ® 2.7627 43.1785 43.3035 -Impact.ttf 50 ‘ 8.4302 14.9477 102 © 4.2127 43.1785 42.0000 -Impact.ttf 50 ‘ 8.4302 14.9477 103 ] 0.0070 13.3942 46.1413 -Impact.ttf 50 ‘ 8.4302 14.9477 104 é -1.3330 25.5600 47.5698 -Impact.ttf 50 ‘ 8.4302 14.9477 105 z 8.2755 19.3198 37.8587 -Impact.ttf 50 ‘ 8.4302 14.9477 106 _ 50.3394 32.1413 2.8378 -Impact.ttf 50 ‘ 8.4302 14.9477 107 ¥ 0.0000 27.6250 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 1 t 4.0904 17.0878 43.1785 -Impact.ttf 51 \ 23.9087 48.3733 2 h 1.4085 25.8600 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 3 a 9.4459 24.6815 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 4 n 9.4140 25.8600 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 5 P 0.8578 25.1622 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 6 o 9.4172 25.5600 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 7 e 9.2805 25.5600 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 8 : 16.9296 8.6802 30.3570 -Impact.ttf 51 \ 23.9087 48.3733 9 r 9.0380 17.9105 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 10 l 1.2323 11.1622 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 11 i 0.8579 11.1622 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 12 1 1.3219 19.5925 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 13 | 0.8065 5.8425 53.6430 -Impact.ttf 51 \ 23.9087 48.3733 14 N 1.0960 26.3407 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 15 f 1.0775 15.6593 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 16 g 9.1205 25.8600 44.3570 -Impact.ttf 51 \ 23.9087 48.3733 17 d 0.9664 25.8600 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 18 W 0.9515 46.2890 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 19 s 9.4158 23.5030 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 20 c 9.3403 24.6815 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 21 u 9.5143 25.8600 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 22 3 0.1333 25.7680 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 23 ~ 16.7657 26.7885 12.8907 -Impact.ttf 51 \ 23.9087 48.3733 24 # 6.1464 34.6652 41.1215 -Impact.ttf 51 \ 23.9087 48.3733 25 O 0.2323 26.8215 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 26 ` -4.0457 15.1785 7.9267 -Impact.ttf 51 \ 23.9087 48.3733 27 @ 0.2060 43.1785 48.8040 -Impact.ttf 51 \ 23.9087 48.3733 28 F 0.9241 20.2675 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 29 S -0.0863 27.5192 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 30 p 9.0917 25.8600 43.1785 -Impact.ttf 51 \ 23.9087 48.3733 31 “ 0.9761 19.2175 14.9477 -Impact.ttf 51 \ 23.9087 48.3733 32 % -0.0758 37.9837 47.0198 -Impact.ttf 51 \ 23.9087 48.3733 33 £ 0.3293 28.2727 47.0198 -Impact.ttf 51 \ 23.9087 48.3733 34 . 37.6034 8.6802 9.3360 -Impact.ttf 51 \ 23.9087 48.3733 35 2 0.1023 23.9837 47.0198 -Impact.ttf 51 \ 23.9087 48.3733 36 5 1.1263 26.3407 47.0198 -Impact.ttf 51 \ 23.9087 48.3733 37 m 8.9258 40.4657 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 38 V 1.0234 31.0355 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 39 6 0.2932 26.3407 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 40 w 9.2801 38.9680 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 41 T 1.0340 26.3407 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 42 M 0.9238 36.8052 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 43 G 0.1189 26.9465 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 44 b 0.9716 25.8600 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 45 9 0.0452 26.3407 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 46 ; 17.1479 8.6802 36.1995 -Impact.ttf 51 \ 23.9087 48.3733 47 D 0.9678 26.9465 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 48 L 0.9580 18.8948 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 49 y 9.5441 27.3942 43.1785 -Impact.ttf 51 \ 23.9087 48.3733 50 ‘ 1.0427 8.4302 14.9477 -Impact.ttf 51 \ 23.9087 48.3733 51 \ -0.0867 23.9087 48.3733 -Impact.ttf 51 \ 23.9087 48.3733 52 R 0.9358 26.3407 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 53 < 9.0414 27.6670 29.1785 -Impact.ttf 51 \ 23.9087 48.3733 54 4 1.2908 28.6977 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 55 8 -0.1675 26.0407 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 56 0 0.1501 26.3407 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 57 A 1.0035 31.5355 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 58 E 0.7610 20.4483 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 59 B 0.9377 26.9465 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 60 v 9.1715 26.8215 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 61 k 1.0067 25.7680 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 62 J 1.0535 16.2320 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 63 U 0.9807 26.8215 47.0198 -Impact.ttf 51 \ 23.9087 48.3733 64 j 1.3283 13.7692 51.4610 -Impact.ttf 51 \ 23.9087 48.3733 65 ( 1.1809 14.9285 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 66 7 1.2876 22.3245 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 67 § -0.0016 25.6430 53.5180 -Impact.ttf 51 \ 23.9087 48.3733 68 $ -2.5564 26.8215 54.0680 -Impact.ttf 51 \ 23.9087 48.3733 69 € 0.1705 28.6058 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 70 / 0.2438 22.7302 48.3733 -Impact.ttf 51 \ 23.9087 48.3733 71 C 0.0782 26.9465 47.8983 -Impact.ttf 51 \ 23.9087 48.3733 72 * 1.1555 15.4705 13.7692 -Impact.ttf 51 \ 23.9087 48.3733 73 ” 1.0822 19.2175 14.9477 -Impact.ttf 51 \ 23.9087 48.3733 74 ? 0.0712 26.8215 47.0198 -Impact.ttf 51 \ 23.9087 48.3733 75 { 0.8671 19.1675 54.8215 -Impact.ttf 51 \ 23.9087 48.3733 76 } 1.1646 19.1675 54.8215 -Impact.ttf 51 \ 23.9087 48.3733 77 , 38.1395 8.4302 14.9477 -Impact.ttf 51 \ 23.9087 48.3733 78 I 1.1991 11.6430 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 79 ° 0.3419 18.0163 18.0163 -Impact.ttf 51 \ 23.9087 48.3733 80 K 1.2791 30.3570 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 81 H 0.9051 27.2192 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 82 q 9.3245 25.8600 43.1785 -Impact.ttf 51 \ 23.9087 48.3733 83 & 9.3360 33.5925 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 84 ’ 1.2236 8.4302 14.9477 -Impact.ttf 51 \ 23.9087 48.3733 85 [ 1.3946 13.3942 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 86 - 23.7360 14.8785 7.9267 -Impact.ttf 51 \ 23.9087 48.3733 87 Y 0.9438 27.6250 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 88 Q 0.2964 26.8215 52.3395 -Impact.ttf 51 \ 23.9087 48.3733 89 " 1.1517 19.7175 14.0000 -Impact.ttf 51 \ 23.9087 48.3733 90 ! 1.3602 12.8215 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 91 x 9.6145 25.1760 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 92 ) 1.0275 14.9285 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 93 = 16.0065 27.6670 16.7320 -Impact.ttf 51 \ 23.9087 48.3733 94 + 11.0041 27.1773 27.1773 -Impact.ttf 51 \ 23.9087 48.3733 95 X 1.5025 29.6400 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 96 » 10.6785 19.6198 32.7140 -Impact.ttf 51 \ 23.9087 48.3733 97 ' 0.8793 8.6802 14.0000 -Impact.ttf 51 \ 23.9087 48.3733 98 ¢ 1.2081 25.8600 49.5017 -Impact.ttf 51 \ 23.9087 48.3733 99 Z 1.2578 22.6245 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 100 > 9.0674 27.6670 29.1785 -Impact.ttf 51 \ 23.9087 48.3733 101 ® 4.1740 43.1785 43.3035 -Impact.ttf 51 \ 23.9087 48.3733 102 © 5.1140 43.1785 42.0000 -Impact.ttf 51 \ 23.9087 48.3733 103 ] 0.9208 13.3942 46.1413 -Impact.ttf 51 \ 23.9087 48.3733 104 é -0.1554 25.5600 47.5698 -Impact.ttf 51 \ 23.9087 48.3733 105 z 9.1591 19.3198 37.8587 -Impact.ttf 51 \ 23.9087 48.3733 106 _ 51.7732 32.1413 2.8378 -Impact.ttf 51 \ 23.9087 48.3733 107 ¥ 1.1745 27.6250 46.1413 -Impact.ttf 52 R 26.3407 46.1413 1 t 2.7389 17.0878 43.1785 -Impact.ttf 52 R 26.3407 46.1413 2 h -0.2341 25.8600 46.1413 -Impact.ttf 52 R 26.3407 46.1413 3 a 8.4420 24.6815 37.8587 -Impact.ttf 52 R 26.3407 46.1413 4 n 8.2583 25.8600 37.8587 -Impact.ttf 52 R 26.3407 46.1413 5 P 0.1094 25.1622 46.1413 -Impact.ttf 52 R 26.3407 46.1413 6 o 8.0043 25.5600 37.8587 -Impact.ttf 52 R 26.3407 46.1413 7 e 8.1244 25.5600 37.8587 -Impact.ttf 52 R 26.3407 46.1413 8 : 15.6400 8.6802 30.3570 -Impact.ttf 52 R 26.3407 46.1413 9 r 8.3952 17.9105 37.8587 -Impact.ttf 52 R 26.3407 46.1413 10 l 0.1099 11.1622 46.1413 -Impact.ttf 52 R 26.3407 46.1413 11 i -0.0500 11.1622 46.1413 -Impact.ttf 52 R 26.3407 46.1413 12 1 0.1469 19.5925 46.1413 -Impact.ttf 52 R 26.3407 46.1413 13 | -0.0370 5.8425 53.6430 -Impact.ttf 52 R 26.3407 46.1413 14 N -0.1826 26.3407 46.1413 -Impact.ttf 52 R 26.3407 46.1413 15 f -0.0547 15.6593 46.1413 -Impact.ttf 52 R 26.3407 46.1413 16 g 8.1429 25.8600 44.3570 -Impact.ttf 52 R 26.3407 46.1413 17 d 0.2568 25.8600 46.1413 -Impact.ttf 52 R 26.3407 46.1413 18 W -0.1297 46.2890 46.1413 -Impact.ttf 52 R 26.3407 46.1413 19 s 8.4341 23.5030 37.8587 -Impact.ttf 52 R 26.3407 46.1413 20 c 8.1184 24.6815 37.8587 -Impact.ttf 52 R 26.3407 46.1413 21 u 8.5368 25.8600 37.8587 -Impact.ttf 52 R 26.3407 46.1413 22 3 -0.7400 25.7680 47.8983 -Impact.ttf 52 R 26.3407 46.1413 23 ~ 15.6088 26.7885 12.8907 -Impact.ttf 52 R 26.3407 46.1413 24 # 5.0439 34.6652 41.1215 -Impact.ttf 52 R 26.3407 46.1413 25 O -1.0801 26.8215 47.8983 -Impact.ttf 52 R 26.3407 46.1413 26 ` -4.7572 15.1785 7.9267 -Impact.ttf 52 R 26.3407 46.1413 27 @ -1.2524 43.1785 48.8040 -Impact.ttf 52 R 26.3407 46.1413 28 F -0.0641 20.2675 46.1413 -Impact.ttf 52 R 26.3407 46.1413 29 S -0.9243 27.5192 47.8983 -Impact.ttf 52 R 26.3407 46.1413 30 p 8.0601 25.8600 43.1785 -Impact.ttf 52 R 26.3407 46.1413 31 “ -0.0992 19.2175 14.9477 -Impact.ttf 52 R 26.3407 46.1413 32 % -0.9189 37.9837 47.0198 -Impact.ttf 52 R 26.3407 46.1413 33 £ -1.1997 28.2727 47.0198 -Impact.ttf 52 R 26.3407 46.1413 34 . 36.7912 8.6802 9.3360 -Impact.ttf 52 R 26.3407 46.1413 35 2 -0.7900 23.9837 47.0198 -Impact.ttf 52 R 26.3407 46.1413 36 5 0.3490 26.3407 47.0198 -Impact.ttf 52 R 26.3407 46.1413 37 m 8.0799 40.4657 37.8587 -Impact.ttf 52 R 26.3407 46.1413 38 V -0.1526 31.0355 46.1413 -Impact.ttf 52 R 26.3407 46.1413 39 6 -0.7662 26.3407 47.8983 -Impact.ttf 52 R 26.3407 46.1413 40 w 7.9401 38.9680 37.8587 -Impact.ttf 52 R 26.3407 46.1413 41 T -0.1181 26.3407 46.1413 -Impact.ttf 52 R 26.3407 46.1413 42 M -0.0078 36.8052 46.1413 -Impact.ttf 52 R 26.3407 46.1413 43 G -0.7730 26.9465 47.8983 -Impact.ttf 52 R 26.3407 46.1413 44 b -0.0501 25.8600 46.1413 -Impact.ttf 52 R 26.3407 46.1413 45 9 -0.5847 26.3407 47.8983 -Impact.ttf 52 R 26.3407 46.1413 46 ; 16.1555 8.6802 36.1995 -Impact.ttf 52 R 26.3407 46.1413 47 D -0.1469 26.9465 46.1413 -Impact.ttf 52 R 26.3407 46.1413 48 L -0.1131 18.8948 46.1413 -Impact.ttf 52 R 26.3407 46.1413 49 y 8.4924 27.3942 43.1785 -Impact.ttf 52 R 26.3407 46.1413 50 ‘ 0.0871 8.4302 14.9477 -Impact.ttf 52 R 26.3407 46.1413 51 \ -1.0118 23.9087 48.3733 -Impact.ttf 52 R 26.3407 46.1413 52 R -0.0774 26.3407 46.1413 -Impact.ttf 52 R 26.3407 46.1413 53 < 8.2826 27.6670 29.1785 -Impact.ttf 52 R 26.3407 46.1413 54 4 0.1911 28.6977 46.1413 -Impact.ttf 52 R 26.3407 46.1413 55 8 -0.8113 26.0407 47.8983 -Impact.ttf 52 R 26.3407 46.1413 56 0 -0.9285 26.3407 47.8983 -Impact.ttf 52 R 26.3407 46.1413 57 A 0.0871 31.5355 46.1413 -Impact.ttf 52 R 26.3407 46.1413 58 E -0.0324 20.4483 46.1413 -Impact.ttf 52 R 26.3407 46.1413 59 B 0.0129 26.9465 46.1413 -Impact.ttf 52 R 26.3407 46.1413 60 v 8.5323 26.8215 37.8587 -Impact.ttf 52 R 26.3407 46.1413 61 k 0.3183 25.7680 46.1413 -Impact.ttf 52 R 26.3407 46.1413 62 J -0.0857 16.2320 46.1413 -Impact.ttf 52 R 26.3407 46.1413 63 U 0.2307 26.8215 47.0198 -Impact.ttf 52 R 26.3407 46.1413 64 j -0.0000 13.7692 51.4610 -Impact.ttf 52 R 26.3407 46.1413 65 ( 0.0214 14.9285 46.1413 -Impact.ttf 52 R 26.3407 46.1413 66 7 -0.1789 22.3245 46.1413 -Impact.ttf 52 R 26.3407 46.1413 67 § -0.7743 25.6430 53.5180 -Impact.ttf 52 R 26.3407 46.1413 68 $ -3.7498 26.8215 54.0680 -Impact.ttf 52 R 26.3407 46.1413 69 € -0.8686 28.6058 47.8983 -Impact.ttf 52 R 26.3407 46.1413 70 / -1.0743 22.7302 48.3733 -Impact.ttf 52 R 26.3407 46.1413 71 C -0.7900 26.9465 47.8983 -Impact.ttf 52 R 26.3407 46.1413 72 * -0.0845 15.4705 13.7692 -Impact.ttf 52 R 26.3407 46.1413 73 ” 0.0162 19.2175 14.9477 -Impact.ttf 52 R 26.3407 46.1413 74 ? -0.9727 26.8215 47.0198 -Impact.ttf 52 R 26.3407 46.1413 75 { -0.0385 19.1675 54.8215 -Impact.ttf 52 R 26.3407 46.1413 76 } 0.1552 19.1675 54.8215 -Impact.ttf 52 R 26.3407 46.1413 77 , 36.9476 8.4302 14.9477 -Impact.ttf 52 R 26.3407 46.1413 78 I 0.1768 11.6430 46.1413 -Impact.ttf 52 R 26.3407 46.1413 79 ° -0.8753 18.0163 18.0163 -Impact.ttf 52 R 26.3407 46.1413 80 K 0.1020 30.3570 46.1413 -Impact.ttf 52 R 26.3407 46.1413 81 H -0.0389 27.2192 46.1413 -Impact.ttf 52 R 26.3407 46.1413 82 q 8.3242 25.8600 43.1785 -Impact.ttf 52 R 26.3407 46.1413 83 & 8.3807 33.5925 37.8587 -Impact.ttf 52 R 26.3407 46.1413 84 ’ 0.0070 8.4302 14.9477 -Impact.ttf 52 R 26.3407 46.1413 85 [ -0.0274 13.3942 46.1413 -Impact.ttf 52 R 26.3407 46.1413 86 - 23.1745 14.8785 7.9267 -Impact.ttf 52 R 26.3407 46.1413 87 Y 0.2196 27.6250 46.1413 -Impact.ttf 52 R 26.3407 46.1413 88 Q -0.8957 26.8215 52.3395 -Impact.ttf 52 R 26.3407 46.1413 89 " 0.0031 19.7175 14.0000 -Impact.ttf 52 R 26.3407 46.1413 90 ! 0.2021 12.8215 46.1413 -Impact.ttf 52 R 26.3407 46.1413 91 x 8.3780 25.1760 37.8587 -Impact.ttf 52 R 26.3407 46.1413 92 ) 0.1456 14.9285 46.1413 -Impact.ttf 52 R 26.3407 46.1413 93 = 14.8288 27.6670 16.7320 -Impact.ttf 52 R 26.3407 46.1413 94 + 9.9017 27.1773 27.1773 -Impact.ttf 52 R 26.3407 46.1413 95 X -0.1266 29.6400 46.1413 -Impact.ttf 52 R 26.3407 46.1413 96 » 9.3850 19.6198 32.7140 -Impact.ttf 52 R 26.3407 46.1413 97 ' 0.0889 8.6802 14.0000 -Impact.ttf 52 R 26.3407 46.1413 98 ¢ 0.1158 25.8600 49.5017 -Impact.ttf 52 R 26.3407 46.1413 99 Z -0.0213 22.6245 46.1413 -Impact.ttf 52 R 26.3407 46.1413 100 > 8.0861 27.6670 29.1785 -Impact.ttf 52 R 26.3407 46.1413 101 ® 2.9276 43.1785 43.3035 -Impact.ttf 52 R 26.3407 46.1413 102 © 3.8405 43.1785 42.0000 -Impact.ttf 52 R 26.3407 46.1413 103 ] -0.2540 13.3942 46.1413 -Impact.ttf 52 R 26.3407 46.1413 104 é -1.3966 25.5600 47.5698 -Impact.ttf 52 R 26.3407 46.1413 105 z 8.4211 19.3198 37.8587 -Impact.ttf 52 R 26.3407 46.1413 106 _ 50.7633 32.1413 2.8378 -Impact.ttf 52 R 26.3407 46.1413 107 ¥ -0.2546 27.6250 46.1413 -Impact.ttf 53 < 27.6670 29.1785 1 t -5.4904 17.0878 43.1785 -Impact.ttf 53 < 27.6670 29.1785 2 h -8.0312 25.8600 46.1413 -Impact.ttf 53 < 27.6670 29.1785 3 a 0.3369 24.6815 37.8587 -Impact.ttf 53 < 27.6670 29.1785 4 n 0.0494 25.8600 37.8587 -Impact.ttf 53 < 27.6670 29.1785 5 P -8.2656 25.1622 46.1413 -Impact.ttf 53 < 27.6670 29.1785 6 o 0.0295 25.5600 37.8587 -Impact.ttf 53 < 27.6670 29.1785 7 e 0.0423 25.5600 37.8587 -Impact.ttf 53 < 27.6670 29.1785 8 : 7.6778 8.6802 30.3570 -Impact.ttf 53 < 27.6670 29.1785 9 r 0.1705 17.9105 37.8587 -Impact.ttf 53 < 27.6670 29.1785 10 l -8.0937 11.1622 46.1413 -Impact.ttf 53 < 27.6670 29.1785 11 i -8.0691 11.1622 46.1413 -Impact.ttf 53 < 27.6670 29.1785 12 1 -8.1505 19.5925 46.1413 -Impact.ttf 53 < 27.6670 29.1785 13 | -8.0008 5.8425 53.6430 -Impact.ttf 53 < 27.6670 29.1785 14 N -8.2858 26.3407 46.1413 -Impact.ttf 53 < 27.6670 29.1785 15 f -8.1371 15.6593 46.1413 -Impact.ttf 53 < 27.6670 29.1785 16 g 0.3446 25.8600 44.3570 -Impact.ttf 53 < 27.6670 29.1785 17 d -8.2547 25.8600 46.1413 -Impact.ttf 53 < 27.6670 29.1785 18 W -8.3220 46.2890 46.1413 -Impact.ttf 53 < 27.6670 29.1785 19 s 0.0893 23.5030 37.8587 -Impact.ttf 53 < 27.6670 29.1785 20 c 0.2474 24.6815 37.8587 -Impact.ttf 53 < 27.6670 29.1785 21 u 0.3414 25.8600 37.8587 -Impact.ttf 53 < 27.6670 29.1785 22 3 -8.9319 25.7680 47.8983 -Impact.ttf 53 < 27.6670 29.1785 23 ~ 7.2347 26.7885 12.8907 -Impact.ttf 53 < 27.6670 29.1785 24 # -3.2820 34.6652 41.1215 -Impact.ttf 53 < 27.6670 29.1785 25 O -9.1050 26.8215 47.8983 -Impact.ttf 53 < 27.6670 29.1785 26 ` -12.8333 15.1785 7.9267 -Impact.ttf 53 < 27.6670 29.1785 27 @ -9.1134 43.1785 48.8040 -Impact.ttf 53 < 27.6670 29.1785 28 F -8.4559 20.2675 46.1413 -Impact.ttf 53 < 27.6670 29.1785 29 S -8.8509 27.5192 47.8983 -Impact.ttf 53 < 27.6670 29.1785 30 p 0.2033 25.8600 43.1785 -Impact.ttf 53 < 27.6670 29.1785 31 “ -8.0763 19.2175 14.9477 -Impact.ttf 53 < 27.6670 29.1785 32 % -8.9860 37.9837 47.0198 -Impact.ttf 53 < 27.6670 29.1785 33 £ -8.9062 28.2727 47.0198 -Impact.ttf 53 < 27.6670 29.1785 34 . 28.6477 8.6802 9.3360 -Impact.ttf 53 < 27.6670 29.1785 35 2 -8.7709 23.9837 47.0198 -Impact.ttf 53 < 27.6670 29.1785 36 5 -8.0958 26.3407 47.0198 -Impact.ttf 53 < 27.6670 29.1785 37 m 0.1208 40.4657 37.8587 -Impact.ttf 53 < 27.6670 29.1785 38 V -8.1804 31.0355 46.1413 -Impact.ttf 53 < 27.6670 29.1785 39 6 -9.1561 26.3407 47.8983 -Impact.ttf 53 < 27.6670 29.1785 40 w 0.2989 38.9680 37.8587 -Impact.ttf 53 < 27.6670 29.1785 41 T -8.3234 26.3407 46.1413 -Impact.ttf 53 < 27.6670 29.1785 42 M -8.1574 36.8052 46.1413 -Impact.ttf 53 < 27.6670 29.1785 43 G -9.1435 26.9465 47.8983 -Impact.ttf 53 < 27.6670 29.1785 44 b -8.2215 25.8600 46.1413 -Impact.ttf 53 < 27.6670 29.1785 45 9 -9.2029 26.3407 47.8983 -Impact.ttf 53 < 27.6670 29.1785 46 ; 7.4001 8.6802 36.1995 -Impact.ttf 53 < 27.6670 29.1785 47 D -8.1894 26.9465 46.1413 -Impact.ttf 53 < 27.6670 29.1785 48 L -8.4318 18.8948 46.1413 -Impact.ttf 53 < 27.6670 29.1785 49 y 0.3330 27.3942 43.1785 -Impact.ttf 53 < 27.6670 29.1785 50 ‘ -7.8438 8.4302 14.9477 -Impact.ttf 53 < 27.6670 29.1785 51 \ -9.2747 23.9087 48.3733 -Impact.ttf 53 < 27.6670 29.1785 52 R -8.2734 26.3407 46.1413 -Impact.ttf 53 < 27.6670 29.1785 53 < -0.1228 27.6670 29.1785 -Impact.ttf 53 < 27.6670 29.1785 54 4 -8.0768 28.6977 46.1413 -Impact.ttf 53 < 27.6670 29.1785 55 8 -8.9261 26.0407 47.8983 -Impact.ttf 53 < 27.6670 29.1785 56 0 -8.7755 26.3407 47.8983 -Impact.ttf 53 < 27.6670 29.1785 57 A -8.4749 31.5355 46.1413 -Impact.ttf 53 < 27.6670 29.1785 58 E -7.9587 20.4483 46.1413 -Impact.ttf 53 < 27.6670 29.1785 59 B -8.2702 26.9465 46.1413 -Impact.ttf 53 < 27.6670 29.1785 60 v -0.1280 26.8215 37.8587 -Impact.ttf 53 < 27.6670 29.1785 61 k -8.1343 25.7680 46.1413 -Impact.ttf 53 < 27.6670 29.1785 62 J -8.4489 16.2320 46.1413 -Impact.ttf 53 < 27.6670 29.1785 63 U -8.2817 26.8215 47.0198 -Impact.ttf 53 < 27.6670 29.1785 64 j -8.3244 13.7692 51.4610 -Impact.ttf 53 < 27.6670 29.1785 65 ( -8.0420 14.9285 46.1413 -Impact.ttf 53 < 27.6670 29.1785 66 7 -8.3322 22.3245 46.1413 -Impact.ttf 53 < 27.6670 29.1785 67 § -8.6940 25.6430 53.5180 -Impact.ttf 53 < 27.6670 29.1785 68 $ -11.8799 26.8215 54.0680 -Impact.ttf 53 < 27.6670 29.1785 69 € -8.7096 28.6058 47.8983 -Impact.ttf 53 < 27.6670 29.1785 70 / -9.5024 22.7302 48.3733 -Impact.ttf 53 < 27.6670 29.1785 71 C -9.0114 26.9465 47.8983 -Impact.ttf 53 < 27.6670 29.1785 72 * -7.8133 15.4705 13.7692 -Impact.ttf 53 < 27.6670 29.1785 73 ” -8.4443 19.2175 14.9477 -Impact.ttf 53 < 27.6670 29.1785 74 ? -9.1061 26.8215 47.0198 -Impact.ttf 53 < 27.6670 29.1785 75 { -8.2279 19.1675 54.8215 -Impact.ttf 53 < 27.6670 29.1785 76 } -8.1478 19.1675 54.8215 -Impact.ttf 53 < 27.6670 29.1785 77 , 29.0338 8.4302 14.9477 -Impact.ttf 53 < 27.6670 29.1785 78 I -8.6097 11.6430 46.1413 -Impact.ttf 53 < 27.6670 29.1785 79 ° -9.0783 18.0163 18.0163 -Impact.ttf 53 < 27.6670 29.1785 80 K -8.0978 30.3570 46.1413 -Impact.ttf 53 < 27.6670 29.1785 81 H -8.3069 27.2192 46.1413 -Impact.ttf 53 < 27.6670 29.1785 82 q 0.0411 25.8600 43.1785 -Impact.ttf 53 < 27.6670 29.1785 83 & 0.1606 33.5925 37.8587 -Impact.ttf 53 < 27.6670 29.1785 84 ’ -8.1104 8.4302 14.9477 -Impact.ttf 53 < 27.6670 29.1785 85 [ -8.1218 13.3942 46.1413 -Impact.ttf 53 < 27.6670 29.1785 86 - 14.8127 14.8785 7.9267 -Impact.ttf 53 < 27.6670 29.1785 87 Y -8.1191 27.6250 46.1413 -Impact.ttf 53 < 27.6670 29.1785 88 Q -8.9220 26.8215 52.3395 -Impact.ttf 53 < 27.6670 29.1785 89 " -8.0139 19.7175 14.0000 -Impact.ttf 53 < 27.6670 29.1785 90 ! -8.4077 12.8215 46.1413 -Impact.ttf 53 < 27.6670 29.1785 91 x 0.1361 25.1760 37.8587 -Impact.ttf 53 < 27.6670 29.1785 92 ) -8.0435 14.9285 46.1413 -Impact.ttf 53 < 27.6670 29.1785 93 = 6.6741 27.6670 16.7320 -Impact.ttf 53 < 27.6670 29.1785 94 + 1.7584 27.1773 27.1773 -Impact.ttf 53 < 27.6670 29.1785 95 X -8.1399 29.6400 46.1413 -Impact.ttf 53 < 27.6670 29.1785 96 » 1.5689 19.6198 32.7140 -Impact.ttf 53 < 27.6670 29.1785 97 ' -8.1362 8.6802 14.0000 -Impact.ttf 53 < 27.6670 29.1785 98 ¢ -8.2481 25.8600 49.5017 -Impact.ttf 53 < 27.6670 29.1785 99 Z -8.3244 22.6245 46.1413 -Impact.ttf 53 < 27.6670 29.1785 100 > -0.2406 27.6670 29.1785 -Impact.ttf 53 < 27.6670 29.1785 101 ® -5.1752 43.1785 43.3035 -Impact.ttf 53 < 27.6670 29.1785 102 © -4.0246 43.1785 42.0000 -Impact.ttf 53 < 27.6670 29.1785 103 ] -8.3387 13.3942 46.1413 -Impact.ttf 53 < 27.6670 29.1785 104 é -9.2694 25.5600 47.5698 -Impact.ttf 53 < 27.6670 29.1785 105 z 0.0695 19.3198 37.8587 -Impact.ttf 53 < 27.6670 29.1785 106 _ 42.3120 32.1413 2.8378 -Impact.ttf 53 < 27.6670 29.1785 107 ¥ -8.2103 27.6250 46.1413 -Impact.ttf 54 4 28.6977 46.1413 1 t 3.0861 17.0878 43.1785 -Impact.ttf 54 4 28.6977 46.1413 2 h 0.0060 25.8600 46.1413 -Impact.ttf 54 4 28.6977 46.1413 3 a 8.3067 24.6815 37.8587 -Impact.ttf 54 4 28.6977 46.1413 4 n 8.2821 25.8600 37.8587 -Impact.ttf 54 4 28.6977 46.1413 5 P -0.1158 25.1622 46.1413 -Impact.ttf 54 4 28.6977 46.1413 6 o 8.2728 25.5600 37.8587 -Impact.ttf 54 4 28.6977 46.1413 7 e 8.1203 25.5600 37.8587 -Impact.ttf 54 4 28.6977 46.1413 8 : 15.8381 8.6802 30.3570 -Impact.ttf 54 4 28.6977 46.1413 9 r 8.2417 17.9105 37.8587 -Impact.ttf 54 4 28.6977 46.1413 10 l -0.1400 11.1622 46.1413 -Impact.ttf 54 4 28.6977 46.1413 11 i -0.1718 11.1622 46.1413 -Impact.ttf 54 4 28.6977 46.1413 12 1 -0.2183 19.5925 46.1413 -Impact.ttf 54 4 28.6977 46.1413 13 | 0.1182 5.8425 53.6430 -Impact.ttf 54 4 28.6977 46.1413 14 N -0.3986 26.3407 46.1413 -Impact.ttf 54 4 28.6977 46.1413 15 f -0.1696 15.6593 46.1413 -Impact.ttf 54 4 28.6977 46.1413 16 g 8.3445 25.8600 44.3570 -Impact.ttf 54 4 28.6977 46.1413 17 d 0.2614 25.8600 46.1413 -Impact.ttf 54 4 28.6977 46.1413 18 W -0.0153 46.2890 46.1413 -Impact.ttf 54 4 28.6977 46.1413 19 s 8.1258 23.5030 37.8587 -Impact.ttf 54 4 28.6977 46.1413 20 c 8.3780 24.6815 37.8587 -Impact.ttf 54 4 28.6977 46.1413 21 u 8.3654 25.8600 37.8587 -Impact.ttf 54 4 28.6977 46.1413 22 3 -1.1041 25.7680 47.8983 -Impact.ttf 54 4 28.6977 46.1413 23 ~ 15.7593 26.7885 12.8907 -Impact.ttf 54 4 28.6977 46.1413 24 # 4.8617 34.6652 41.1215 -Impact.ttf 54 4 28.6977 46.1413 25 O -0.7543 26.8215 47.8983 -Impact.ttf 54 4 28.6977 46.1413 26 ` -5.1495 15.1785 7.9267 -Impact.ttf 54 4 28.6977 46.1413 27 @ -0.8785 43.1785 48.8040 -Impact.ttf 54 4 28.6977 46.1413 28 F 0.0737 20.2675 46.1413 -Impact.ttf 54 4 28.6977 46.1413 29 S -0.6347 27.5192 47.8983 -Impact.ttf 54 4 28.6977 46.1413 30 p 8.2315 25.8600 43.1785 -Impact.ttf 54 4 28.6977 46.1413 31 “ 0.0224 19.2175 14.9477 -Impact.ttf 54 4 28.6977 46.1413 32 % -0.7830 37.9837 47.0198 -Impact.ttf 54 4 28.6977 46.1413 33 £ -0.6917 28.2727 47.0198 -Impact.ttf 54 4 28.6977 46.1413 34 . 36.6180 8.6802 9.3360 -Impact.ttf 54 4 28.6977 46.1413 35 2 -0.7589 23.9837 47.0198 -Impact.ttf 54 4 28.6977 46.1413 36 5 -0.0968 26.3407 47.0198 -Impact.ttf 54 4 28.6977 46.1413 37 m 8.4976 40.4657 37.8587 -Impact.ttf 54 4 28.6977 46.1413 38 V 0.1798 31.0355 46.1413 -Impact.ttf 54 4 28.6977 46.1413 39 6 -0.8387 26.3407 47.8983 -Impact.ttf 54 4 28.6977 46.1413 40 w 8.2046 38.9680 37.8587 -Impact.ttf 54 4 28.6977 46.1413 41 T -0.4250 26.3407 46.1413 -Impact.ttf 54 4 28.6977 46.1413 42 M 0.1873 36.8052 46.1413 -Impact.ttf 54 4 28.6977 46.1413 43 G -0.7446 26.9465 47.8983 -Impact.ttf 54 4 28.6977 46.1413 44 b -0.0527 25.8600 46.1413 -Impact.ttf 54 4 28.6977 46.1413 45 9 -1.1093 26.3407 47.8983 -Impact.ttf 54 4 28.6977 46.1413 46 ; 15.5336 8.6802 36.1995 -Impact.ttf 54 4 28.6977 46.1413 47 D -0.0570 26.9465 46.1413 -Impact.ttf 54 4 28.6977 46.1413 48 L 0.2623 18.8948 46.1413 -Impact.ttf 54 4 28.6977 46.1413 49 y 8.1296 27.3942 43.1785 -Impact.ttf 54 4 28.6977 46.1413 50 ‘ 0.1613 8.4302 14.9477 -Impact.ttf 54 4 28.6977 46.1413 51 \ -0.9561 23.9087 48.3733 -Impact.ttf 54 4 28.6977 46.1413 52 R -0.1182 26.3407 46.1413 -Impact.ttf 54 4 28.6977 46.1413 53 < 8.3016 27.6670 29.1785 -Impact.ttf 54 4 28.6977 46.1413 54 4 0.3139 28.6977 46.1413 -Impact.ttf 54 4 28.6977 46.1413 55 8 -0.8459 26.0407 47.8983 -Impact.ttf 54 4 28.6977 46.1413 56 0 -0.6769 26.3407 47.8983 -Impact.ttf 54 4 28.6977 46.1413 57 A 0.3666 31.5355 46.1413 -Impact.ttf 54 4 28.6977 46.1413 58 E 0.1307 20.4483 46.1413 -Impact.ttf 54 4 28.6977 46.1413 59 B -0.0486 26.9465 46.1413 -Impact.ttf 54 4 28.6977 46.1413 60 v 8.4021 26.8215 37.8587 -Impact.ttf 54 4 28.6977 46.1413 61 k -0.0312 25.7680 46.1413 -Impact.ttf 54 4 28.6977 46.1413 62 J -0.2466 16.2320 46.1413 -Impact.ttf 54 4 28.6977 46.1413 63 U 0.0564 26.8215 47.0198 -Impact.ttf 54 4 28.6977 46.1413 64 j 0.1456 13.7692 51.4610 -Impact.ttf 54 4 28.6977 46.1413 65 ( -0.0073 14.9285 46.1413 -Impact.ttf 54 4 28.6977 46.1413 66 7 0.0676 22.3245 46.1413 -Impact.ttf 54 4 28.6977 46.1413 67 § -0.7835 25.6430 53.5180 -Impact.ttf 54 4 28.6977 46.1413 68 $ -3.6099 26.8215 54.0680 -Impact.ttf 54 4 28.6977 46.1413 69 € -1.1288 28.6058 47.8983 -Impact.ttf 54 4 28.6977 46.1413 70 / -1.2472 22.7302 48.3733 -Impact.ttf 54 4 28.6977 46.1413 71 C -0.9467 26.9465 47.8983 -Impact.ttf 54 4 28.6977 46.1413 72 * -0.4334 15.4705 13.7692 -Impact.ttf 54 4 28.6977 46.1413 73 ” 0.1418 19.2175 14.9477 -Impact.ttf 54 4 28.6977 46.1413 74 ? -0.6315 26.8215 47.0198 -Impact.ttf 54 4 28.6977 46.1413 75 { 0.0032 19.1675 54.8215 -Impact.ttf 54 4 28.6977 46.1413 76 } -0.1815 19.1675 54.8215 -Impact.ttf 54 4 28.6977 46.1413 77 , 37.0374 8.4302 14.9477 -Impact.ttf 54 4 28.6977 46.1413 78 I 0.1710 11.6430 46.1413 -Impact.ttf 54 4 28.6977 46.1413 79 ° -0.8400 18.0163 18.0163 -Impact.ttf 54 4 28.6977 46.1413 80 K 0.1137 30.3570 46.1413 -Impact.ttf 54 4 28.6977 46.1413 81 H 0.0185 27.2192 46.1413 -Impact.ttf 54 4 28.6977 46.1413 82 q 8.2706 25.8600 43.1785 -Impact.ttf 54 4 28.6977 46.1413 83 & 8.3710 33.5925 37.8587 -Impact.ttf 54 4 28.6977 46.1413 84 ’ 0.1511 8.4302 14.9477 -Impact.ttf 54 4 28.6977 46.1413 85 [ -0.1414 13.3942 46.1413 -Impact.ttf 54 4 28.6977 46.1413 86 - 23.0301 14.8785 7.9267 -Impact.ttf 54 4 28.6977 46.1413 87 Y -0.1702 27.6250 46.1413 -Impact.ttf 54 4 28.6977 46.1413 88 Q -0.8312 26.8215 52.3395 -Impact.ttf 54 4 28.6977 46.1413 89 " -0.1553 19.7175 14.0000 -Impact.ttf 54 4 28.6977 46.1413 90 ! 0.0045 12.8215 46.1413 -Impact.ttf 54 4 28.6977 46.1413 91 x 8.3093 25.1760 37.8587 -Impact.ttf 54 4 28.6977 46.1413 92 ) 0.1181 14.9285 46.1413 -Impact.ttf 54 4 28.6977 46.1413 93 = 14.6746 27.6670 16.7320 -Impact.ttf 54 4 28.6977 46.1413 94 + 9.9940 27.1773 27.1773 -Impact.ttf 54 4 28.6977 46.1413 95 X -0.2248 29.6400 46.1413 -Impact.ttf 54 4 28.6977 46.1413 96 » 9.7340 19.6198 32.7140 -Impact.ttf 54 4 28.6977 46.1413 97 ' 0.0510 8.6802 14.0000 -Impact.ttf 54 4 28.6977 46.1413 98 ¢ 0.0510 25.8600 49.5017 -Impact.ttf 54 4 28.6977 46.1413 99 Z -0.1728 22.6245 46.1413 -Impact.ttf 54 4 28.6977 46.1413 100 > 8.3094 27.6670 29.1785 -Impact.ttf 54 4 28.6977 46.1413 101 ® 3.0009 43.1785 43.3035 -Impact.ttf 54 4 28.6977 46.1413 102 © 4.0885 43.1785 42.0000 -Impact.ttf 54 4 28.6977 46.1413 103 ] 0.0102 13.3942 46.1413 -Impact.ttf 54 4 28.6977 46.1413 104 é -1.1287 25.5600 47.5698 -Impact.ttf 54 4 28.6977 46.1413 105 z 8.2419 19.3198 37.8587 -Impact.ttf 54 4 28.6977 46.1413 106 _ 50.4279 32.1413 2.8378 -Impact.ttf 54 4 28.6977 46.1413 107 ¥ -0.3140 27.6250 46.1413 -Impact.ttf 55 8 26.0407 47.8983 1 t 3.6684 17.0878 43.1785 -Impact.ttf 55 8 26.0407 47.8983 2 h 0.6277 25.8600 46.1413 -Impact.ttf 55 8 26.0407 47.8983 3 a 9.2769 24.6815 37.8587 -Impact.ttf 55 8 26.0407 47.8983 4 n 9.1240 25.8600 37.8587 -Impact.ttf 55 8 26.0407 47.8983 5 P 0.8344 25.1622 46.1413 -Impact.ttf 55 8 26.0407 47.8983 6 o 8.8435 25.5600 37.8587 -Impact.ttf 55 8 26.0407 47.8983 7 e 8.8950 25.5600 37.8587 -Impact.ttf 55 8 26.0407 47.8983 8 : 16.6146 8.6802 30.3570 -Impact.ttf 55 8 26.0407 47.8983 9 r 9.3021 17.9105 37.8587 -Impact.ttf 55 8 26.0407 47.8983 10 l 0.8632 11.1622 46.1413 -Impact.ttf 55 8 26.0407 47.8983 11 i 0.7530 11.1622 46.1413 -Impact.ttf 55 8 26.0407 47.8983 12 1 0.9170 19.5925 46.1413 -Impact.ttf 55 8 26.0407 47.8983 13 | 0.8817 5.8425 53.6430 -Impact.ttf 55 8 26.0407 47.8983 14 N 0.7978 26.3407 46.1413 -Impact.ttf 55 8 26.0407 47.8983 15 f 0.4410 15.6593 46.1413 -Impact.ttf 55 8 26.0407 47.8983 16 g 9.0841 25.8600 44.3570 -Impact.ttf 55 8 26.0407 47.8983 17 d 0.9967 25.8600 46.1413 -Impact.ttf 55 8 26.0407 47.8983 18 W 0.9540 46.2890 46.1413 -Impact.ttf 55 8 26.0407 47.8983 19 s 8.8488 23.5030 37.8587 -Impact.ttf 55 8 26.0407 47.8983 20 c 9.0596 24.6815 37.8587 -Impact.ttf 55 8 26.0407 47.8983 21 u 9.1467 25.8600 37.8587 -Impact.ttf 55 8 26.0407 47.8983 22 3 0.1873 25.7680 47.8983 -Impact.ttf 55 8 26.0407 47.8983 23 ~ 16.2908 26.7885 12.8907 -Impact.ttf 55 8 26.0407 47.8983 24 # 6.0668 34.6652 41.1215 -Impact.ttf 55 8 26.0407 47.8983 25 O -0.0278 26.8215 47.8983 -Impact.ttf 55 8 26.0407 47.8983 26 ` -4.3487 15.1785 7.9267 -Impact.ttf 55 8 26.0407 47.8983 27 @ -0.0752 43.1785 48.8040 -Impact.ttf 55 8 26.0407 47.8983 28 F 1.0109 20.2675 46.1413 -Impact.ttf 55 8 26.0407 47.8983 29 S 0.2323 27.5192 47.8983 -Impact.ttf 55 8 26.0407 47.8983 30 p 9.2324 25.8600 43.1785 -Impact.ttf 55 8 26.0407 47.8983 31 “ 0.9882 19.2175 14.9477 -Impact.ttf 55 8 26.0407 47.8983 32 % -0.2221 37.9837 47.0198 -Impact.ttf 55 8 26.0407 47.8983 33 £ -0.1696 28.2727 47.0198 -Impact.ttf 55 8 26.0407 47.8983 34 . 37.6291 8.6802 9.3360 -Impact.ttf 55 8 26.0407 47.8983 35 2 -0.0185 23.9837 47.0198 -Impact.ttf 55 8 26.0407 47.8983 36 5 0.7695 26.3407 47.0198 -Impact.ttf 55 8 26.0407 47.8983 37 m 8.8158 40.4657 37.8587 -Impact.ttf 55 8 26.0407 47.8983 38 V 0.8402 31.0355 46.1413 -Impact.ttf 55 8 26.0407 47.8983 39 6 0.1341 26.3407 47.8983 -Impact.ttf 55 8 26.0407 47.8983 40 w 8.9502 38.9680 37.8587 -Impact.ttf 55 8 26.0407 47.8983 41 T 1.0065 26.3407 46.1413 -Impact.ttf 55 8 26.0407 47.8983 42 M 0.9212 36.8052 46.1413 -Impact.ttf 55 8 26.0407 47.8983 43 G 0.0644 26.9465 47.8983 -Impact.ttf 55 8 26.0407 47.8983 44 b 0.8694 25.8600 46.1413 -Impact.ttf 55 8 26.0407 47.8983 45 9 0.1117 26.3407 47.8983 -Impact.ttf 55 8 26.0407 47.8983 46 ; 16.6140 8.6802 36.1995 -Impact.ttf 55 8 26.0407 47.8983 47 D 1.0481 26.9465 46.1413 -Impact.ttf 55 8 26.0407 47.8983 48 L 0.8600 18.8948 46.1413 -Impact.ttf 55 8 26.0407 47.8983 49 y 9.3483 27.3942 43.1785 -Impact.ttf 55 8 26.0407 47.8983 50 ‘ 0.7272 8.4302 14.9477 -Impact.ttf 55 8 26.0407 47.8983 51 \ -0.0795 23.9087 48.3733 -Impact.ttf 55 8 26.0407 47.8983 52 R 0.9981 26.3407 46.1413 -Impact.ttf 55 8 26.0407 47.8983 53 < 9.2469 27.6670 29.1785 -Impact.ttf 55 8 26.0407 47.8983 54 4 0.8043 28.6977 46.1413 -Impact.ttf 55 8 26.0407 47.8983 55 8 -0.1543 26.0407 47.8983 -Impact.ttf 55 8 26.0407 47.8983 56 0 -0.0625 26.3407 47.8983 -Impact.ttf 55 8 26.0407 47.8983 57 A 0.7543 31.5355 46.1413 -Impact.ttf 55 8 26.0407 47.8983 58 E 1.1085 20.4483 46.1413 -Impact.ttf 55 8 26.0407 47.8983 59 B 1.2024 26.9465 46.1413 -Impact.ttf 55 8 26.0407 47.8983 60 v 9.6332 26.8215 37.8587 -Impact.ttf 55 8 26.0407 47.8983 61 k 0.7107 25.7680 46.1413 -Impact.ttf 55 8 26.0407 47.8983 62 J 0.9414 16.2320 46.1413 -Impact.ttf 55 8 26.0407 47.8983 63 U 0.9059 26.8215 47.0198 -Impact.ttf 55 8 26.0407 47.8983 64 j 0.7459 13.7692 51.4610 -Impact.ttf 55 8 26.0407 47.8983 65 ( 0.6732 14.9285 46.1413 -Impact.ttf 55 8 26.0407 47.8983 66 7 0.9174 22.3245 46.1413 -Impact.ttf 55 8 26.0407 47.8983 67 § 0.1312 25.6430 53.5180 -Impact.ttf 55 8 26.0407 47.8983 68 $ -2.9822 26.8215 54.0680 -Impact.ttf 55 8 26.0407 47.8983 69 € 0.2280 28.6058 47.8983 -Impact.ttf 55 8 26.0407 47.8983 70 / -0.4368 22.7302 48.3733 -Impact.ttf 55 8 26.0407 47.8983 71 C 0.2351 26.9465 47.8983 -Impact.ttf 55 8 26.0407 47.8983 72 * 0.9513 15.4705 13.7692 -Impact.ttf 55 8 26.0407 47.8983 73 ” 0.6359 19.2175 14.9477 -Impact.ttf 55 8 26.0407 47.8983 74 ? -0.0637 26.8215 47.0198 -Impact.ttf 55 8 26.0407 47.8983 75 { 0.7727 19.1675 54.8215 -Impact.ttf 55 8 26.0407 47.8983 76 } 0.9192 19.1675 54.8215 -Impact.ttf 55 8 26.0407 47.8983 77 , 37.9535 8.4302 14.9477 -Impact.ttf 55 8 26.0407 47.8983 78 I 0.9455 11.6430 46.1413 -Impact.ttf 55 8 26.0407 47.8983 79 ° -0.2141 18.0163 18.0163 -Impact.ttf 55 8 26.0407 47.8983 80 K 0.8937 30.3570 46.1413 -Impact.ttf 55 8 26.0407 47.8983 81 H 0.9583 27.2192 46.1413 -Impact.ttf 55 8 26.0407 47.8983 82 q 9.1920 25.8600 43.1785 -Impact.ttf 55 8 26.0407 47.8983 83 & 9.3806 33.5925 37.8587 -Impact.ttf 55 8 26.0407 47.8983 84 ’ 0.9196 8.4302 14.9477 -Impact.ttf 55 8 26.0407 47.8983 85 [ 0.9202 13.3942 46.1413 -Impact.ttf 55 8 26.0407 47.8983 86 - 23.8645 14.8785 7.9267 -Impact.ttf 55 8 26.0407 47.8983 87 Y 0.8887 27.6250 46.1413 -Impact.ttf 55 8 26.0407 47.8983 88 Q -0.1339 26.8215 52.3395 -Impact.ttf 55 8 26.0407 47.8983 89 " 0.6742 19.7175 14.0000 -Impact.ttf 55 8 26.0407 47.8983 90 ! 0.8057 12.8215 46.1413 -Impact.ttf 55 8 26.0407 47.8983 91 x 9.1823 25.1760 37.8587 -Impact.ttf 55 8 26.0407 47.8983 92 ) 1.0286 14.9285 46.1413 -Impact.ttf 55 8 26.0407 47.8983 93 = 15.7259 27.6670 16.7320 -Impact.ttf 55 8 26.0407 47.8983 94 + 10.9777 27.1773 27.1773 -Impact.ttf 55 8 26.0407 47.8983 95 X 0.6672 29.6400 46.1413 -Impact.ttf 55 8 26.0407 47.8983 96 » 10.4300 19.6198 32.7140 -Impact.ttf 55 8 26.0407 47.8983 97 ' 0.9729 8.6802 14.0000 -Impact.ttf 55 8 26.0407 47.8983 98 ¢ 1.1374 25.8600 49.5017 -Impact.ttf 55 8 26.0407 47.8983 99 Z 0.9543 22.6245 46.1413 -Impact.ttf 55 8 26.0407 47.8983 100 > 8.7908 27.6670 29.1785 -Impact.ttf 55 8 26.0407 47.8983 101 ® 3.8744 43.1785 43.3035 -Impact.ttf 55 8 26.0407 47.8983 102 © 5.1713 43.1785 42.0000 -Impact.ttf 55 8 26.0407 47.8983 103 ] 1.0240 13.3942 46.1413 -Impact.ttf 55 8 26.0407 47.8983 104 é -0.3842 25.5600 47.5698 -Impact.ttf 55 8 26.0407 47.8983 105 z 9.0368 19.3198 37.8587 -Impact.ttf 55 8 26.0407 47.8983 106 _ 51.3141 32.1413 2.8378 -Impact.ttf 55 8 26.0407 47.8983 107 ¥ 0.9898 27.6250 46.1413 -Impact.ttf 56 0 26.3407 47.8983 1 t 3.7003 17.0878 43.1785 -Impact.ttf 56 0 26.3407 47.8983 2 h 0.9939 25.8600 46.1413 -Impact.ttf 56 0 26.3407 47.8983 3 a 8.8471 24.6815 37.8587 -Impact.ttf 56 0 26.3407 47.8983 4 n 9.1967 25.8600 37.8587 -Impact.ttf 56 0 26.3407 47.8983 5 P 0.6673 25.1622 46.1413 -Impact.ttf 56 0 26.3407 47.8983 6 o 9.2086 25.5600 37.8587 -Impact.ttf 56 0 26.3407 47.8983 7 e 9.1212 25.5600 37.8587 -Impact.ttf 56 0 26.3407 47.8983 8 : 16.7499 8.6802 30.3570 -Impact.ttf 56 0 26.3407 47.8983 9 r 9.2440 17.9105 37.8587 -Impact.ttf 56 0 26.3407 47.8983 10 l 0.9591 11.1622 46.1413 -Impact.ttf 56 0 26.3407 47.8983 11 i 0.9670 11.1622 46.1413 -Impact.ttf 56 0 26.3407 47.8983 12 1 0.7284 19.5925 46.1413 -Impact.ttf 56 0 26.3407 47.8983 13 | 0.7718 5.8425 53.6430 -Impact.ttf 56 0 26.3407 47.8983 14 N 0.9454 26.3407 46.1413 -Impact.ttf 56 0 26.3407 47.8983 15 f 0.7247 15.6593 46.1413 -Impact.ttf 56 0 26.3407 47.8983 16 g 9.1592 25.8600 44.3570 -Impact.ttf 56 0 26.3407 47.8983 17 d 0.7923 25.8600 46.1413 -Impact.ttf 56 0 26.3407 47.8983 18 W 0.9174 46.2890 46.1413 -Impact.ttf 56 0 26.3407 47.8983 19 s 9.2106 23.5030 37.8587 -Impact.ttf 56 0 26.3407 47.8983 20 c 9.1680 24.6815 37.8587 -Impact.ttf 56 0 26.3407 47.8983 21 u 8.8613 25.8600 37.8587 -Impact.ttf 56 0 26.3407 47.8983 22 3 -0.1516 25.7680 47.8983 -Impact.ttf 56 0 26.3407 47.8983 23 ~ 16.1694 26.7885 12.8907 -Impact.ttf 56 0 26.3407 47.8983 24 # 5.8867 34.6652 41.1215 -Impact.ttf 56 0 26.3407 47.8983 25 O -0.0649 26.8215 47.8983 -Impact.ttf 56 0 26.3407 47.8983 26 ` -4.0355 15.1785 7.9267 -Impact.ttf 56 0 26.3407 47.8983 27 @ 0.1111 43.1785 48.8040 -Impact.ttf 56 0 26.3407 47.8983 28 F 0.7668 20.2675 46.1413 -Impact.ttf 56 0 26.3407 47.8983 29 S -0.3411 27.5192 47.8983 -Impact.ttf 56 0 26.3407 47.8983 30 p 9.0896 25.8600 43.1785 -Impact.ttf 56 0 26.3407 47.8983 31 “ 0.6102 19.2175 14.9477 -Impact.ttf 56 0 26.3407 47.8983 32 % -0.1196 37.9837 47.0198 -Impact.ttf 56 0 26.3407 47.8983 33 £ 0.0000 28.2727 47.0198 -Impact.ttf 56 0 26.3407 47.8983 34 . 37.6967 8.6802 9.3360 -Impact.ttf 56 0 26.3407 47.8983 35 2 0.3992 23.9837 47.0198 -Impact.ttf 56 0 26.3407 47.8983 36 5 0.7002 26.3407 47.0198 -Impact.ttf 56 0 26.3407 47.8983 37 m 8.9756 40.4657 37.8587 -Impact.ttf 56 0 26.3407 47.8983 38 V 0.8196 31.0355 46.1413 -Impact.ttf 56 0 26.3407 47.8983 39 6 0.2613 26.3407 47.8983 -Impact.ttf 56 0 26.3407 47.8983 40 w 9.1495 38.9680 37.8587 -Impact.ttf 56 0 26.3407 47.8983 41 T 1.0579 26.3407 46.1413 -Impact.ttf 56 0 26.3407 47.8983 42 M 0.8586 36.8052 46.1413 -Impact.ttf 56 0 26.3407 47.8983 43 G -0.2280 26.9465 47.8983 -Impact.ttf 56 0 26.3407 47.8983 44 b 1.0541 25.8600 46.1413 -Impact.ttf 56 0 26.3407 47.8983 45 9 0.2409 26.3407 47.8983 -Impact.ttf 56 0 26.3407 47.8983 46 ; 16.4477 8.6802 36.1995 -Impact.ttf 56 0 26.3407 47.8983 47 D 0.9429 26.9465 46.1413 -Impact.ttf 56 0 26.3407 47.8983 48 L 0.9355 18.8948 46.1413 -Impact.ttf 56 0 26.3407 47.8983 49 y 9.1049 27.3942 43.1785 -Impact.ttf 56 0 26.3407 47.8983 50 ‘ 1.0838 8.4302 14.9477 -Impact.ttf 56 0 26.3407 47.8983 51 \ -0.0592 23.9087 48.3733 -Impact.ttf 56 0 26.3407 47.8983 52 R 1.1366 26.3407 46.1413 -Impact.ttf 56 0 26.3407 47.8983 53 < 8.6793 27.6670 29.1785 -Impact.ttf 56 0 26.3407 47.8983 54 4 1.0314 28.6977 46.1413 -Impact.ttf 56 0 26.3407 47.8983 55 8 0.0495 26.0407 47.8983 -Impact.ttf 56 0 26.3407 47.8983 56 0 -0.0333 26.3407 47.8983 -Impact.ttf 56 0 26.3407 47.8983 57 A 1.2494 31.5355 46.1413 -Impact.ttf 56 0 26.3407 47.8983 58 E 0.9132 20.4483 46.1413 -Impact.ttf 56 0 26.3407 47.8983 59 B 0.6917 26.9465 46.1413 -Impact.ttf 56 0 26.3407 47.8983 60 v 9.0868 26.8215 37.8587 -Impact.ttf 56 0 26.3407 47.8983 61 k 0.9251 25.7680 46.1413 -Impact.ttf 56 0 26.3407 47.8983 62 J 0.9419 16.2320 46.1413 -Impact.ttf 56 0 26.3407 47.8983 63 U 0.8957 26.8215 47.0198 -Impact.ttf 56 0 26.3407 47.8983 64 j 0.7301 13.7692 51.4610 -Impact.ttf 56 0 26.3407 47.8983 65 ( 1.0158 14.9285 46.1413 -Impact.ttf 56 0 26.3407 47.8983 66 7 0.9870 22.3245 46.1413 -Impact.ttf 56 0 26.3407 47.8983 67 § -0.0661 25.6430 53.5180 -Impact.ttf 56 0 26.3407 47.8983 68 $ -2.7562 26.8215 54.0680 -Impact.ttf 56 0 26.3407 47.8983 69 € -0.0170 28.6058 47.8983 -Impact.ttf 56 0 26.3407 47.8983 70 / -0.1148 22.7302 48.3733 -Impact.ttf 56 0 26.3407 47.8983 71 C 0.0617 26.9465 47.8983 -Impact.ttf 56 0 26.3407 47.8983 72 * 0.8527 15.4705 13.7692 -Impact.ttf 56 0 26.3407 47.8983 73 ” 0.7356 19.2175 14.9477 -Impact.ttf 56 0 26.3407 47.8983 74 ? -0.2113 26.8215 47.0198 -Impact.ttf 56 0 26.3407 47.8983 75 { 0.8417 19.1675 54.8215 -Impact.ttf 56 0 26.3407 47.8983 76 } 0.8928 19.1675 54.8215 -Impact.ttf 56 0 26.3407 47.8983 77 , 37.9446 8.4302 14.9477 -Impact.ttf 56 0 26.3407 47.8983 78 I 0.8034 11.6430 46.1413 -Impact.ttf 56 0 26.3407 47.8983 79 ° 0.1396 18.0163 18.0163 -Impact.ttf 56 0 26.3407 47.8983 80 K 1.0652 30.3570 46.1413 -Impact.ttf 56 0 26.3407 47.8983 81 H 0.8868 27.2192 46.1413 -Impact.ttf 56 0 26.3407 47.8983 82 q 9.3009 25.8600 43.1785 -Impact.ttf 56 0 26.3407 47.8983 83 & 9.2592 33.5925 37.8587 -Impact.ttf 56 0 26.3407 47.8983 84 ’ 0.8998 8.4302 14.9477 -Impact.ttf 56 0 26.3407 47.8983 85 [ 0.5477 13.3942 46.1413 -Impact.ttf 56 0 26.3407 47.8983 86 - 23.9425 14.8785 7.9267 -Impact.ttf 56 0 26.3407 47.8983 87 Y 1.0481 27.6250 46.1413 -Impact.ttf 56 0 26.3407 47.8983 88 Q 0.2242 26.8215 52.3395 -Impact.ttf 56 0 26.3407 47.8983 89 " 0.6332 19.7175 14.0000 -Impact.ttf 56 0 26.3407 47.8983 90 ! 0.7016 12.8215 46.1413 -Impact.ttf 56 0 26.3407 47.8983 91 x 9.2533 25.1760 37.8587 -Impact.ttf 56 0 26.3407 47.8983 92 ) 0.7882 14.9285 46.1413 -Impact.ttf 56 0 26.3407 47.8983 93 = 15.9714 27.6670 16.7320 -Impact.ttf 56 0 26.3407 47.8983 94 + 10.6264 27.1773 27.1773 -Impact.ttf 56 0 26.3407 47.8983 95 X 0.8272 29.6400 46.1413 -Impact.ttf 56 0 26.3407 47.8983 96 » 10.6189 19.6198 32.7140 -Impact.ttf 56 0 26.3407 47.8983 97 ' 1.0635 8.6802 14.0000 -Impact.ttf 56 0 26.3407 47.8983 98 ¢ 0.7202 25.8600 49.5017 -Impact.ttf 56 0 26.3407 47.8983 99 Z 0.7325 22.6245 46.1413 -Impact.ttf 56 0 26.3407 47.8983 100 > 8.8896 27.6670 29.1785 -Impact.ttf 56 0 26.3407 47.8983 101 ® 3.7190 43.1785 43.3035 -Impact.ttf 56 0 26.3407 47.8983 102 © 4.9892 43.1785 42.0000 -Impact.ttf 56 0 26.3407 47.8983 103 ] 1.1070 13.3942 46.1413 -Impact.ttf 56 0 26.3407 47.8983 104 é -0.6789 25.5600 47.5698 -Impact.ttf 56 0 26.3407 47.8983 105 z 8.9315 19.3198 37.8587 -Impact.ttf 56 0 26.3407 47.8983 106 _ 51.3494 32.1413 2.8378 -Impact.ttf 56 0 26.3407 47.8983 107 ¥ 0.8543 27.6250 46.1413 -Impact.ttf 57 A 31.5355 46.1413 1 t 3.0629 17.0878 43.1785 -Impact.ttf 57 A 31.5355 46.1413 2 h 0.0357 25.8600 46.1413 -Impact.ttf 57 A 31.5355 46.1413 3 a 8.3512 24.6815 37.8587 -Impact.ttf 57 A 31.5355 46.1413 4 n 8.2254 25.8600 37.8587 -Impact.ttf 57 A 31.5355 46.1413 5 P 0.0027 25.1622 46.1413 -Impact.ttf 57 A 31.5355 46.1413 6 o 8.0648 25.5600 37.8587 -Impact.ttf 57 A 31.5355 46.1413 7 e 8.3780 25.5600 37.8587 -Impact.ttf 57 A 31.5355 46.1413 8 : 15.6931 8.6802 30.3570 -Impact.ttf 57 A 31.5355 46.1413 9 r 8.0744 17.9105 37.8587 -Impact.ttf 57 A 31.5355 46.1413 10 l 0.0978 11.1622 46.1413 -Impact.ttf 57 A 31.5355 46.1413 11 i 0.0516 11.1622 46.1413 -Impact.ttf 57 A 31.5355 46.1413 12 1 0.0742 19.5925 46.1413 -Impact.ttf 57 A 31.5355 46.1413 13 | -0.0655 5.8425 53.6430 -Impact.ttf 57 A 31.5355 46.1413 14 N -0.2411 26.3407 46.1413 -Impact.ttf 57 A 31.5355 46.1413 15 f -0.2165 15.6593 46.1413 -Impact.ttf 57 A 31.5355 46.1413 16 g 8.1129 25.8600 44.3570 -Impact.ttf 57 A 31.5355 46.1413 17 d -0.0594 25.8600 46.1413 -Impact.ttf 57 A 31.5355 46.1413 18 W 0.0385 46.2890 46.1413 -Impact.ttf 57 A 31.5355 46.1413 19 s 8.1667 23.5030 37.8587 -Impact.ttf 57 A 31.5355 46.1413 20 c 8.2626 24.6815 37.8587 -Impact.ttf 57 A 31.5355 46.1413 21 u 8.5992 25.8600 37.8587 -Impact.ttf 57 A 31.5355 46.1413 22 3 -0.9350 25.7680 47.8983 -Impact.ttf 57 A 31.5355 46.1413 23 ~ 15.5304 26.7885 12.8907 -Impact.ttf 57 A 31.5355 46.1413 24 # 5.1082 34.6652 41.1215 -Impact.ttf 57 A 31.5355 46.1413 25 O -0.9414 26.8215 47.8983 -Impact.ttf 57 A 31.5355 46.1413 26 ` -5.3189 15.1785 7.9267 -Impact.ttf 57 A 31.5355 46.1413 27 @ -1.0079 43.1785 48.8040 -Impact.ttf 57 A 31.5355 46.1413 28 F -0.0885 20.2675 46.1413 -Impact.ttf 57 A 31.5355 46.1413 29 S -0.8484 27.5192 47.8983 -Impact.ttf 57 A 31.5355 46.1413 30 p 8.4351 25.8600 43.1785 -Impact.ttf 57 A 31.5355 46.1413 31 “ -0.0032 19.2175 14.9477 -Impact.ttf 57 A 31.5355 46.1413 32 % -0.7362 37.9837 47.0198 -Impact.ttf 57 A 31.5355 46.1413 33 £ -0.7700 28.2727 47.0198 -Impact.ttf 57 A 31.5355 46.1413 34 . 36.8112 8.6802 9.3360 -Impact.ttf 57 A 31.5355 46.1413 35 2 -0.8674 23.9837 47.0198 -Impact.ttf 57 A 31.5355 46.1413 36 5 -0.0018 26.3407 47.0198 -Impact.ttf 57 A 31.5355 46.1413 37 m 8.2833 40.4657 37.8587 -Impact.ttf 57 A 31.5355 46.1413 38 V -0.0648 31.0355 46.1413 -Impact.ttf 57 A 31.5355 46.1413 39 6 -0.7664 26.3407 47.8983 -Impact.ttf 57 A 31.5355 46.1413 40 w 8.4438 38.9680 37.8587 -Impact.ttf 57 A 31.5355 46.1413 41 T 0.1455 26.3407 46.1413 -Impact.ttf 57 A 31.5355 46.1413 42 M 0.1998 36.8052 46.1413 -Impact.ttf 57 A 31.5355 46.1413 43 G -0.7882 26.9465 47.8983 -Impact.ttf 57 A 31.5355 46.1413 44 b 0.2995 25.8600 46.1413 -Impact.ttf 57 A 31.5355 46.1413 45 9 -0.9240 26.3407 47.8983 -Impact.ttf 57 A 31.5355 46.1413 46 ; 15.5768 8.6802 36.1995 -Impact.ttf 57 A 31.5355 46.1413 47 D -0.1075 26.9465 46.1413 -Impact.ttf 57 A 31.5355 46.1413 48 L 0.0542 18.8948 46.1413 -Impact.ttf 57 A 31.5355 46.1413 49 y 8.2687 27.3942 43.1785 -Impact.ttf 57 A 31.5355 46.1413 50 ‘ -0.1839 8.4302 14.9477 -Impact.ttf 57 A 31.5355 46.1413 51 \ -0.8598 23.9087 48.3733 -Impact.ttf 57 A 31.5355 46.1413 52 R -0.0597 26.3407 46.1413 -Impact.ttf 57 A 31.5355 46.1413 53 < 8.0217 27.6670 29.1785 -Impact.ttf 57 A 31.5355 46.1413 54 4 -0.1909 28.6977 46.1413 -Impact.ttf 57 A 31.5355 46.1413 55 8 -0.7946 26.0407 47.8983 -Impact.ttf 57 A 31.5355 46.1413 56 0 -0.5342 26.3407 47.8983 -Impact.ttf 57 A 31.5355 46.1413 57 A 0.1196 31.5355 46.1413 -Impact.ttf 57 A 31.5355 46.1413 58 E 0.0690 20.4483 46.1413 -Impact.ttf 57 A 31.5355 46.1413 59 B -0.0045 26.9465 46.1413 -Impact.ttf 57 A 31.5355 46.1413 60 v 8.0226 26.8215 37.8587 -Impact.ttf 57 A 31.5355 46.1413 61 k 0.0357 25.7680 46.1413 -Impact.ttf 57 A 31.5355 46.1413 62 J -0.3222 16.2320 46.1413 -Impact.ttf 57 A 31.5355 46.1413 63 U -0.0431 26.8215 47.0198 -Impact.ttf 57 A 31.5355 46.1413 64 j -0.1841 13.7692 51.4610 -Impact.ttf 57 A 31.5355 46.1413 65 ( -0.0885 14.9285 46.1413 -Impact.ttf 57 A 31.5355 46.1413 66 7 0.4096 22.3245 46.1413 -Impact.ttf 57 A 31.5355 46.1413 67 § -0.7886 25.6430 53.5180 -Impact.ttf 57 A 31.5355 46.1413 68 $ -3.7145 26.8215 54.0680 -Impact.ttf 57 A 31.5355 46.1413 69 € -0.6843 28.6058 47.8983 -Impact.ttf 57 A 31.5355 46.1413 70 / -1.2792 22.7302 48.3733 -Impact.ttf 57 A 31.5355 46.1413 71 C -1.0948 26.9465 47.8983 -Impact.ttf 57 A 31.5355 46.1413 72 * -0.3048 15.4705 13.7692 -Impact.ttf 57 A 31.5355 46.1413 73 ” 0.1771 19.2175 14.9477 -Impact.ttf 57 A 31.5355 46.1413 74 ? -0.9772 26.8215 47.0198 -Impact.ttf 57 A 31.5355 46.1413 75 { -0.0710 19.1675 54.8215 -Impact.ttf 57 A 31.5355 46.1413 76 } 0.0871 19.1675 54.8215 -Impact.ttf 57 A 31.5355 46.1413 77 , 37.0105 8.4302 14.9477 -Impact.ttf 57 A 31.5355 46.1413 78 I -0.1543 11.6430 46.1413 -Impact.ttf 57 A 31.5355 46.1413 79 ° -0.8725 18.0163 18.0163 -Impact.ttf 57 A 31.5355 46.1413 80 K 0.0689 30.3570 46.1413 -Impact.ttf 57 A 31.5355 46.1413 81 H -0.2339 27.2192 46.1413 -Impact.ttf 57 A 31.5355 46.1413 82 q 8.5634 25.8600 43.1785 -Impact.ttf 57 A 31.5355 46.1413 83 & 8.3970 33.5925 37.8587 -Impact.ttf 57 A 31.5355 46.1413 84 ’ -0.0459 8.4302 14.9477 -Impact.ttf 57 A 31.5355 46.1413 85 [ 0.0310 13.3942 46.1413 -Impact.ttf 57 A 31.5355 46.1413 86 - 22.7890 14.8785 7.9267 -Impact.ttf 57 A 31.5355 46.1413 87 Y -0.1339 27.6250 46.1413 -Impact.ttf 57 A 31.5355 46.1413 88 Q -0.8053 26.8215 52.3395 -Impact.ttf 57 A 31.5355 46.1413 89 " -0.1399 19.7175 14.0000 -Impact.ttf 57 A 31.5355 46.1413 90 ! -0.0213 12.8215 46.1413 -Impact.ttf 57 A 31.5355 46.1413 91 x 8.1517 25.1760 37.8587 -Impact.ttf 57 A 31.5355 46.1413 92 ) -0.0742 14.9285 46.1413 -Impact.ttf 57 A 31.5355 46.1413 93 = 14.8887 27.6670 16.7320 -Impact.ttf 57 A 31.5355 46.1413 94 + 9.5903 27.1773 27.1773 -Impact.ttf 57 A 31.5355 46.1413 95 X -0.0742 29.6400 46.1413 -Impact.ttf 57 A 31.5355 46.1413 96 » 9.6445 19.6198 32.7140 -Impact.ttf 57 A 31.5355 46.1413 97 ' 0.0468 8.6802 14.0000 -Impact.ttf 57 A 31.5355 46.1413 98 ¢ 0.2761 25.8600 49.5017 -Impact.ttf 57 A 31.5355 46.1413 99 Z -0.1845 22.6245 46.1413 -Impact.ttf 57 A 31.5355 46.1413 100 > 7.9735 27.6670 29.1785 -Impact.ttf 57 A 31.5355 46.1413 101 ® 2.8340 43.1785 43.3035 -Impact.ttf 57 A 31.5355 46.1413 102 © 4.4607 43.1785 42.0000 -Impact.ttf 57 A 31.5355 46.1413 103 ] 0.0444 13.3942 46.1413 -Impact.ttf 57 A 31.5355 46.1413 104 é -1.6009 25.5600 47.5698 -Impact.ttf 57 A 31.5355 46.1413 105 z 8.3539 19.3198 37.8587 -Impact.ttf 57 A 31.5355 46.1413 106 _ 50.5382 32.1413 2.8378 -Impact.ttf 57 A 31.5355 46.1413 107 ¥ 0.1613 27.6250 46.1413 -Impact.ttf 58 E 20.4483 46.1413 1 t 3.0740 17.0878 43.1785 -Impact.ttf 58 E 20.4483 46.1413 2 h 0.0532 25.8600 46.1413 -Impact.ttf 58 E 20.4483 46.1413 3 a 8.3696 24.6815 37.8587 -Impact.ttf 58 E 20.4483 46.1413 4 n 8.2398 25.8600 37.8587 -Impact.ttf 58 E 20.4483 46.1413 5 P 0.0070 25.1622 46.1413 -Impact.ttf 58 E 20.4483 46.1413 6 o 8.2815 25.5600 37.8587 -Impact.ttf 58 E 20.4483 46.1413 7 e 8.2871 25.5600 37.8587 -Impact.ttf 58 E 20.4483 46.1413 8 : 15.6249 8.6802 30.3570 -Impact.ttf 58 E 20.4483 46.1413 9 r 8.3841 17.9105 37.8587 -Impact.ttf 58 E 20.4483 46.1413 10 l -0.1256 11.1622 46.1413 -Impact.ttf 58 E 20.4483 46.1413 11 i 0.0312 11.1622 46.1413 -Impact.ttf 58 E 20.4483 46.1413 12 1 0.1581 19.5925 46.1413 -Impact.ttf 58 E 20.4483 46.1413 13 | 0.2029 5.8425 53.6430 -Impact.ttf 58 E 20.4483 46.1413 14 N -0.2266 26.3407 46.1413 -Impact.ttf 58 E 20.4483 46.1413 15 f -0.0857 15.6593 46.1413 -Impact.ttf 58 E 20.4483 46.1413 16 g 8.4438 25.8600 44.3570 -Impact.ttf 58 E 20.4483 46.1413 17 d -0.0417 25.8600 46.1413 -Impact.ttf 58 E 20.4483 46.1413 18 W 0.0083 46.2890 46.1413 -Impact.ttf 58 E 20.4483 46.1413 19 s 8.1968 23.5030 37.8587 -Impact.ttf 58 E 20.4483 46.1413 20 c 7.8776 24.6815 37.8587 -Impact.ttf 58 E 20.4483 46.1413 21 u 8.3544 25.8600 37.8587 -Impact.ttf 58 E 20.4483 46.1413 22 3 -0.6959 25.7680 47.8983 -Impact.ttf 58 E 20.4483 46.1413 23 ~ 15.4682 26.7885 12.8907 -Impact.ttf 58 E 20.4483 46.1413 24 # 4.7942 34.6652 41.1215 -Impact.ttf 58 E 20.4483 46.1413 25 O -1.0092 26.8215 47.8983 -Impact.ttf 58 E 20.4483 46.1413 26 ` -4.9028 15.1785 7.9267 -Impact.ttf 58 E 20.4483 46.1413 27 @ -0.8785 43.1785 48.8040 -Impact.ttf 58 E 20.4483 46.1413 28 F 0.2414 20.2675 46.1413 -Impact.ttf 58 E 20.4483 46.1413 29 S -0.9129 27.5192 47.8983 -Impact.ttf 58 E 20.4483 46.1413 30 p 8.3547 25.8600 43.1785 -Impact.ttf 58 E 20.4483 46.1413 31 “ 0.0417 19.2175 14.9477 -Impact.ttf 58 E 20.4483 46.1413 32 % -0.8298 37.9837 47.0198 -Impact.ttf 58 E 20.4483 46.1413 33 £ -0.5745 28.2727 47.0198 -Impact.ttf 58 E 20.4483 46.1413 34 . 36.5628 8.6802 9.3360 -Impact.ttf 58 E 20.4483 46.1413 35 2 -1.1124 23.9837 47.0198 -Impact.ttf 58 E 20.4483 46.1413 36 5 -0.1982 26.3407 47.0198 -Impact.ttf 58 E 20.4483 46.1413 37 m 8.4397 40.4657 37.8587 -Impact.ttf 58 E 20.4483 46.1413 38 V -0.0700 31.0355 46.1413 -Impact.ttf 58 E 20.4483 46.1413 39 6 -0.9586 26.3407 47.8983 -Impact.ttf 58 E 20.4483 46.1413 40 w 8.0433 38.9680 37.8587 -Impact.ttf 58 E 20.4483 46.1413 41 T -0.2841 26.3407 46.1413 -Impact.ttf 58 E 20.4483 46.1413 42 M -0.0714 36.8052 46.1413 -Impact.ttf 58 E 20.4483 46.1413 43 G -1.0054 26.9465 47.8983 -Impact.ttf 58 E 20.4483 46.1413 44 b 0.1228 25.8600 46.1413 -Impact.ttf 58 E 20.4483 46.1413 45 9 -1.0513 26.3407 47.8983 -Impact.ttf 58 E 20.4483 46.1413 46 ; 15.8440 8.6802 36.1995 -Impact.ttf 58 E 20.4483 46.1413 47 D 0.1488 26.9465 46.1413 -Impact.ttf 58 E 20.4483 46.1413 48 L -0.0742 18.8948 46.1413 -Impact.ttf 58 E 20.4483 46.1413 49 y 8.2478 27.3942 43.1785 -Impact.ttf 58 E 20.4483 46.1413 50 ‘ 0.0941 8.4302 14.9477 -Impact.ttf 58 E 20.4483 46.1413 51 \ -1.1874 23.9087 48.3733 -Impact.ttf 58 E 20.4483 46.1413 52 R -0.0714 26.3407 46.1413 -Impact.ttf 58 E 20.4483 46.1413 53 < 8.1250 27.6670 29.1785 -Impact.ttf 58 E 20.4483 46.1413 54 4 -0.2166 28.6977 46.1413 -Impact.ttf 58 E 20.4483 46.1413 55 8 -0.9285 26.0407 47.8983 -Impact.ttf 58 E 20.4483 46.1413 56 0 -0.6002 26.3407 47.8983 -Impact.ttf 58 E 20.4483 46.1413 57 A 0.0672 31.5355 46.1413 -Impact.ttf 58 E 20.4483 46.1413 58 E 0.1319 20.4483 46.1413 -Impact.ttf 58 E 20.4483 46.1413 59 B 0.0351 26.9465 46.1413 -Impact.ttf 58 E 20.4483 46.1413 60 v 8.1415 26.8215 37.8587 -Impact.ttf 58 E 20.4483 46.1413 61 k 0.0565 25.7680 46.1413 -Impact.ttf 58 E 20.4483 46.1413 62 J -0.2026 16.2320 46.1413 -Impact.ttf 58 E 20.4483 46.1413 63 U 0.2230 26.8215 47.0198 -Impact.ttf 58 E 20.4483 46.1413 64 j -0.1850 13.7692 51.4610 -Impact.ttf 58 E 20.4483 46.1413 65 ( -0.1526 14.9285 46.1413 -Impact.ttf 58 E 20.4483 46.1413 66 7 -0.0912 22.3245 46.1413 -Impact.ttf 58 E 20.4483 46.1413 67 § -0.9527 25.6430 53.5180 -Impact.ttf 58 E 20.4483 46.1413 68 $ -3.5704 26.8215 54.0680 -Impact.ttf 58 E 20.4483 46.1413 69 € -1.2989 28.6058 47.8983 -Impact.ttf 58 E 20.4483 46.1413 70 / -1.0573 22.7302 48.3733 -Impact.ttf 58 E 20.4483 46.1413 71 C -0.8961 26.9465 47.8983 -Impact.ttf 58 E 20.4483 46.1413 72 * 0.0774 15.4705 13.7692 -Impact.ttf 58 E 20.4483 46.1413 73 ” 0.0143 19.2175 14.9477 -Impact.ttf 58 E 20.4483 46.1413 74 ? -0.9916 26.8215 47.0198 -Impact.ttf 58 E 20.4483 46.1413 75 { -0.1081 19.1675 54.8215 -Impact.ttf 58 E 20.4483 46.1413 76 } 0.1107 19.1675 54.8215 -Impact.ttf 58 E 20.4483 46.1413 77 , 37.0699 8.4302 14.9477 -Impact.ttf 58 E 20.4483 46.1413 78 I -0.1196 11.6430 46.1413 -Impact.ttf 58 E 20.4483 46.1413 79 ° -0.9129 18.0163 18.0163 -Impact.ttf 58 E 20.4483 46.1413 80 K -0.0083 30.3570 46.1413 -Impact.ttf 58 E 20.4483 46.1413 81 H -0.0793 27.2192 46.1413 -Impact.ttf 58 E 20.4483 46.1413 82 q 8.3886 25.8600 43.1785 -Impact.ttf 58 E 20.4483 46.1413 83 & 8.3696 33.5925 37.8587 -Impact.ttf 58 E 20.4483 46.1413 84 ’ -0.1422 8.4302 14.9477 -Impact.ttf 58 E 20.4483 46.1413 85 [ -0.0175 13.3942 46.1413 -Impact.ttf 58 E 20.4483 46.1413 86 - 22.9438 14.8785 7.9267 -Impact.ttf 58 E 20.4483 46.1413 87 Y -0.1769 27.6250 46.1413 -Impact.ttf 58 E 20.4483 46.1413 88 Q -0.8613 26.8215 52.3395 -Impact.ttf 58 E 20.4483 46.1413 89 " -0.0070 19.7175 14.0000 -Impact.ttf 58 E 20.4483 46.1413 90 ! -0.0500 12.8215 46.1413 -Impact.ttf 58 E 20.4483 46.1413 91 x 8.3655 25.1760 37.8587 -Impact.ttf 58 E 20.4483 46.1413 92 ) 0.0468 14.9285 46.1413 -Impact.ttf 58 E 20.4483 46.1413 93 = 14.8201 27.6670 16.7320 -Impact.ttf 58 E 20.4483 46.1413 94 + 10.0316 27.1773 27.1773 -Impact.ttf 58 E 20.4483 46.1413 95 X 0.3838 29.6400 46.1413 -Impact.ttf 58 E 20.4483 46.1413 96 » 9.6246 19.6198 32.7140 -Impact.ttf 58 E 20.4483 46.1413 97 ' -0.0181 8.6802 14.0000 -Impact.ttf 58 E 20.4483 46.1413 98 ¢ 0.2194 25.8600 49.5017 -Impact.ttf 58 E 20.4483 46.1413 99 Z -0.1326 22.6245 46.1413 -Impact.ttf 58 E 20.4483 46.1413 100 > 8.0763 27.6670 29.1785 -Impact.ttf 58 E 20.4483 46.1413 101 ® 2.6496 43.1785 43.3035 -Impact.ttf 58 E 20.4483 46.1413 102 © 4.0373 43.1785 42.0000 -Impact.ttf 58 E 20.4483 46.1413 103 ] -0.1386 13.3942 46.1413 -Impact.ttf 58 E 20.4483 46.1413 104 é -1.2484 25.5600 47.5698 -Impact.ttf 58 E 20.4483 46.1413 105 z 8.2710 19.3198 37.8587 -Impact.ttf 58 E 20.4483 46.1413 106 _ 50.2271 32.1413 2.8378 -Impact.ttf 58 E 20.4483 46.1413 107 ¥ -0.0895 27.6250 46.1413 -Impact.ttf 59 B 26.9465 46.1413 1 t 2.9614 17.0878 43.1785 -Impact.ttf 59 B 26.9465 46.1413 2 h 0.1024 25.8600 46.1413 -Impact.ttf 59 B 26.9465 46.1413 3 a 8.2462 24.6815 37.8587 -Impact.ttf 59 B 26.9465 46.1413 4 n 8.0443 25.8600 37.8587 -Impact.ttf 59 B 26.9465 46.1413 5 P -0.0204 25.1622 46.1413 -Impact.ttf 59 B 26.9465 46.1413 6 o 8.4160 25.5600 37.8587 -Impact.ttf 59 B 26.9465 46.1413 7 e 8.5978 25.5600 37.8587 -Impact.ttf 59 B 26.9465 46.1413 8 : 15.6333 8.6802 30.3570 -Impact.ttf 59 B 26.9465 46.1413 9 r 8.3210 17.9105 37.8587 -Impact.ttf 59 B 26.9465 46.1413 10 l 0.0546 11.1622 46.1413 -Impact.ttf 59 B 26.9465 46.1413 11 i -0.0774 11.1622 46.1413 -Impact.ttf 59 B 26.9465 46.1413 12 1 -0.0490 19.5925 46.1413 -Impact.ttf 59 B 26.9465 46.1413 13 | -0.2411 5.8425 53.6430 -Impact.ttf 59 B 26.9465 46.1413 14 N -0.1417 26.3407 46.1413 -Impact.ttf 59 B 26.9465 46.1413 15 f -0.0310 15.6593 46.1413 -Impact.ttf 59 B 26.9465 46.1413 16 g 8.0401 25.8600 44.3570 -Impact.ttf 59 B 26.9465 46.1413 17 d 0.1809 25.8600 46.1413 -Impact.ttf 59 B 26.9465 46.1413 18 W -0.0032 46.2890 46.1413 -Impact.ttf 59 B 26.9465 46.1413 19 s 8.2296 23.5030 37.8587 -Impact.ttf 59 B 26.9465 46.1413 20 c 7.8446 24.6815 37.8587 -Impact.ttf 59 B 26.9465 46.1413 21 u 8.2210 25.8600 37.8587 -Impact.ttf 59 B 26.9465 46.1413 22 3 -1.1696 25.7680 47.8983 -Impact.ttf 59 B 26.9465 46.1413 23 ~ 15.3252 26.7885 12.8907 -Impact.ttf 59 B 26.9465 46.1413 24 # 4.9808 34.6652 41.1215 -Impact.ttf 59 B 26.9465 46.1413 25 O -0.6374 26.8215 47.8983 -Impact.ttf 59 B 26.9465 46.1413 26 ` -4.9922 15.1785 7.9267 -Impact.ttf 59 B 26.9465 46.1413 27 @ -0.8071 43.1785 48.8040 -Impact.ttf 59 B 26.9465 46.1413 28 F 0.2091 20.2675 46.1413 -Impact.ttf 59 B 26.9465 46.1413 29 S -0.9396 27.5192 47.8983 -Impact.ttf 59 B 26.9465 46.1413 30 p 8.3339 25.8600 43.1785 -Impact.ttf 59 B 26.9465 46.1413 31 “ 0.1658 19.2175 14.9477 -Impact.ttf 59 B 26.9465 46.1413 32 % -0.9656 37.9837 47.0198 -Impact.ttf 59 B 26.9465 46.1413 33 £ -1.0745 28.2727 47.0198 -Impact.ttf 59 B 26.9465 46.1413 34 . 36.9151 8.6802 9.3360 -Impact.ttf 59 B 26.9465 46.1413 35 2 -0.7530 23.9837 47.0198 -Impact.ttf 59 B 26.9465 46.1413 36 5 0.0714 26.3407 47.0198 -Impact.ttf 59 B 26.9465 46.1413 37 m 8.5011 40.4657 37.8587 -Impact.ttf 59 B 26.9465 46.1413 38 V -0.1794 31.0355 46.1413 -Impact.ttf 59 B 26.9465 46.1413 39 6 -0.6204 26.3407 47.8983 -Impact.ttf 59 B 26.9465 46.1413 40 w 8.2868 38.9680 37.8587 -Impact.ttf 59 B 26.9465 46.1413 41 T 0.0527 26.3407 46.1413 -Impact.ttf 59 B 26.9465 46.1413 42 M -0.0013 36.8052 46.1413 -Impact.ttf 59 B 26.9465 46.1413 43 G -1.0513 26.9465 47.8983 -Impact.ttf 59 B 26.9465 46.1413 44 b 0.0287 25.8600 46.1413 -Impact.ttf 59 B 26.9465 46.1413 45 9 -0.5926 26.3407 47.8983 -Impact.ttf 59 B 26.9465 46.1413 46 ; 15.4047 8.6802 36.1995 -Impact.ttf 59 B 26.9465 46.1413 47 D 0.3683 26.9465 46.1413 -Impact.ttf 59 B 26.9465 46.1413 48 L 0.1488 18.8948 46.1413 -Impact.ttf 59 B 26.9465 46.1413 49 y 8.4591 27.3942 43.1785 -Impact.ttf 59 B 26.9465 46.1413 50 ‘ 0.1669 8.4302 14.9477 -Impact.ttf 59 B 26.9465 46.1413 51 \ -0.8936 23.9087 48.3733 -Impact.ttf 59 B 26.9465 46.1413 52 R -0.2995 26.3407 46.1413 -Impact.ttf 59 B 26.9465 46.1413 53 < 8.3597 27.6670 29.1785 -Impact.ttf 59 B 26.9465 46.1413 54 4 0.2748 28.6977 46.1413 -Impact.ttf 59 B 26.9465 46.1413 55 8 -0.7688 26.0407 47.8983 -Impact.ttf 59 B 26.9465 46.1413 56 0 -0.9275 26.3407 47.8983 -Impact.ttf 59 B 26.9465 46.1413 57 A -0.1553 31.5355 46.1413 -Impact.ttf 59 B 26.9465 46.1413 58 E -0.0462 20.4483 46.1413 -Impact.ttf 59 B 26.9465 46.1413 59 B 0.1312 26.9465 46.1413 -Impact.ttf 59 B 26.9465 46.1413 60 v 8.1129 26.8215 37.8587 -Impact.ttf 59 B 26.9465 46.1413 61 k -0.0885 25.7680 46.1413 -Impact.ttf 59 B 26.9465 46.1413 62 J 0.0417 16.2320 46.1413 -Impact.ttf 59 B 26.9465 46.1413 63 U 0.0599 26.8215 47.0198 -Impact.ttf 59 B 26.9465 46.1413 64 j 0.1298 13.7692 51.4610 -Impact.ttf 59 B 26.9465 46.1413 65 ( -0.3757 14.9285 46.1413 -Impact.ttf 59 B 26.9465 46.1413 66 7 -0.2812 22.3245 46.1413 -Impact.ttf 59 B 26.9465 46.1413 67 § -0.6634 25.6430 53.5180 -Impact.ttf 59 B 26.9465 46.1413 68 $ -3.9978 26.8215 54.0680 -Impact.ttf 59 B 26.9465 46.1413 69 € -1.0457 28.6058 47.8983 -Impact.ttf 59 B 26.9465 46.1413 70 / -0.9761 22.7302 48.3733 -Impact.ttf 59 B 26.9465 46.1413 71 C -0.7979 26.9465 47.8983 -Impact.ttf 59 B 26.9465 46.1413 72 * -0.0731 15.4705 13.7692 -Impact.ttf 59 B 26.9465 46.1413 73 ” -0.3193 19.2175 14.9477 -Impact.ttf 59 B 26.9465 46.1413 74 ? -0.7116 26.8215 47.0198 -Impact.ttf 59 B 26.9465 46.1413 75 { 0.1631 19.1675 54.8215 -Impact.ttf 59 B 26.9465 46.1413 76 } -0.0682 19.1675 54.8215 -Impact.ttf 59 B 26.9465 46.1413 77 , 37.0443 8.4302 14.9477 -Impact.ttf 59 B 26.9465 46.1413 78 I 0.0147 11.6430 46.1413 -Impact.ttf 59 B 26.9465 46.1413 79 ° -0.8882 18.0163 18.0163 -Impact.ttf 59 B 26.9465 46.1413 80 K 0.1683 30.3570 46.1413 -Impact.ttf 59 B 26.9465 46.1413 81 H 0.0000 27.2192 46.1413 -Impact.ttf 59 B 26.9465 46.1413 82 q 8.3452 25.8600 43.1785 -Impact.ttf 59 B 26.9465 46.1413 83 & 8.3984 33.5925 37.8587 -Impact.ttf 59 B 26.9465 46.1413 84 ’ 0.0955 8.4302 14.9477 -Impact.ttf 59 B 26.9465 46.1413 85 [ 0.0032 13.3942 46.1413 -Impact.ttf 59 B 26.9465 46.1413 86 - 23.0403 14.8785 7.9267 -Impact.ttf 59 B 26.9465 46.1413 87 Y 0.2508 27.6250 46.1413 -Impact.ttf 59 B 26.9465 46.1413 88 Q -0.7199 26.8215 52.3395 -Impact.ttf 59 B 26.9465 46.1413 89 " 0.2766 19.7175 14.0000 -Impact.ttf 59 B 26.9465 46.1413 90 ! -0.0926 12.8215 46.1413 -Impact.ttf 59 B 26.9465 46.1413 91 x 8.3705 25.1760 37.8587 -Impact.ttf 59 B 26.9465 46.1413 92 ) 0.1710 14.9285 46.1413 -Impact.ttf 59 B 26.9465 46.1413 93 = 14.8186 27.6670 16.7320 -Impact.ttf 59 B 26.9465 46.1413 94 + 9.9014 27.1773 27.1773 -Impact.ttf 59 B 26.9465 46.1413 95 X 0.3568 29.6400 46.1413 -Impact.ttf 59 B 26.9465 46.1413 96 » 9.5259 19.6198 32.7140 -Impact.ttf 59 B 26.9465 46.1413 97 ' -0.1867 8.6802 14.0000 -Impact.ttf 59 B 26.9465 46.1413 98 ¢ 0.1376 25.8600 49.5017 -Impact.ttf 59 B 26.9465 46.1413 99 Z 0.3333 22.6245 46.1413 -Impact.ttf 59 B 26.9465 46.1413 100 > 8.1844 27.6670 29.1785 -Impact.ttf 59 B 26.9465 46.1413 101 ® 2.6890 43.1785 43.3035 -Impact.ttf 59 B 26.9465 46.1413 102 © 4.0337 43.1785 42.0000 -Impact.ttf 59 B 26.9465 46.1413 103 ] 0.0306 13.3942 46.1413 -Impact.ttf 59 B 26.9465 46.1413 104 é -1.4011 25.5600 47.5698 -Impact.ttf 59 B 26.9465 46.1413 105 z 8.2328 19.3198 37.8587 -Impact.ttf 59 B 26.9465 46.1413 106 _ 50.5826 32.1413 2.8378 -Impact.ttf 59 B 26.9465 46.1413 107 ¥ 0.0746 27.6250 46.1413 -Impact.ttf 60 v 26.8215 37.8587 1 t -5.4796 17.0878 43.1785 -Impact.ttf 60 v 26.8215 37.8587 2 h -8.0957 25.8600 46.1413 -Impact.ttf 60 v 26.8215 37.8587 3 a -0.2369 24.6815 37.8587 -Impact.ttf 60 v 26.8215 37.8587 4 n -0.0408 25.8600 37.8587 -Impact.ttf 60 v 26.8215 37.8587 5 P -8.1031 25.1622 46.1413 -Impact.ttf 60 v 26.8215 37.8587 6 o -0.0444 25.5600 37.8587 -Impact.ttf 60 v 26.8215 37.8587 7 e 0.2210 25.5600 37.8587 -Impact.ttf 60 v 26.8215 37.8587 8 : 7.3321 8.6802 30.3570 -Impact.ttf 60 v 26.8215 37.8587 9 r 0.0325 17.9105 37.8587 -Impact.ttf 60 v 26.8215 37.8587 10 l -8.1436 11.1622 46.1413 -Impact.ttf 60 v 26.8215 37.8587 11 i -8.1565 11.1622 46.1413 -Impact.ttf 60 v 26.8215 37.8587 12 1 -8.3228 19.5925 46.1413 -Impact.ttf 60 v 26.8215 37.8587 13 | -8.1226 5.8425 53.6430 -Impact.ttf 60 v 26.8215 37.8587 14 N -8.0160 26.3407 46.1413 -Impact.ttf 60 v 26.8215 37.8587 15 f -8.2024 15.6593 46.1413 -Impact.ttf 60 v 26.8215 37.8587 16 g -0.1613 25.8600 44.3570 -Impact.ttf 60 v 26.8215 37.8587 17 d -8.4452 25.8600 46.1413 -Impact.ttf 60 v 26.8215 37.8587 18 W -8.2255 46.2890 46.1413 -Impact.ttf 60 v 26.8215 37.8587 19 s -0.3841 23.5030 37.8587 -Impact.ttf 60 v 26.8215 37.8587 20 c -0.1681 24.6815 37.8587 -Impact.ttf 60 v 26.8215 37.8587 21 u 0.2494 25.8600 37.8587 -Impact.ttf 60 v 26.8215 37.8587 22 3 -9.0726 25.7680 47.8983 -Impact.ttf 60 v 26.8215 37.8587 23 ~ 7.2293 26.7885 12.8907 -Impact.ttf 60 v 26.8215 37.8587 24 # -3.2233 34.6652 41.1215 -Impact.ttf 60 v 26.8215 37.8587 25 O -9.1466 26.8215 47.8983 -Impact.ttf 60 v 26.8215 37.8587 26 ` -13.2752 15.1785 7.9267 -Impact.ttf 60 v 26.8215 37.8587 27 @ -9.1726 43.1785 48.8040 -Impact.ttf 60 v 26.8215 37.8587 28 F -8.0726 20.2675 46.1413 -Impact.ttf 60 v 26.8215 37.8587 29 S -9.3723 27.5192 47.8983 -Impact.ttf 60 v 26.8215 37.8587 30 p 0.0000 25.8600 43.1785 -Impact.ttf 60 v 26.8215 37.8587 31 “ -8.7987 19.2175 14.9477 -Impact.ttf 60 v 26.8215 37.8587 32 % -9.3793 37.9837 47.0198 -Impact.ttf 60 v 26.8215 37.8587 33 £ -9.0156 28.2727 47.0198 -Impact.ttf 60 v 26.8215 37.8587 34 . 28.5501 8.6802 9.3360 -Impact.ttf 60 v 26.8215 37.8587 35 2 -8.9733 23.9837 47.0198 -Impact.ttf 60 v 26.8215 37.8587 36 5 -8.2909 26.3407 47.0198 -Impact.ttf 60 v 26.8215 37.8587 37 m 0.0742 40.4657 37.8587 -Impact.ttf 60 v 26.8215 37.8587 38 V -8.3637 31.0355 46.1413 -Impact.ttf 60 v 26.8215 37.8587 39 6 -9.4307 26.3407 47.8983 -Impact.ttf 60 v 26.8215 37.8587 40 w -0.0347 38.9680 37.8587 -Impact.ttf 60 v 26.8215 37.8587 41 T -8.3557 26.3407 46.1413 -Impact.ttf 60 v 26.8215 37.8587 42 M -8.2181 36.8052 46.1413 -Impact.ttf 60 v 26.8215 37.8587 43 G -9.2411 26.9465 47.8983 -Impact.ttf 60 v 26.8215 37.8587 44 b -8.4420 25.8600 46.1413 -Impact.ttf 60 v 26.8215 37.8587 45 9 -9.3209 26.3407 47.8983 -Impact.ttf 60 v 26.8215 37.8587 46 ; 7.5305 8.6802 36.1995 -Impact.ttf 60 v 26.8215 37.8587 47 D -8.4591 26.9465 46.1413 -Impact.ttf 60 v 26.8215 37.8587 48 L -8.3423 18.8948 46.1413 -Impact.ttf 60 v 26.8215 37.8587 49 y 0.1455 27.3942 43.1785 -Impact.ttf 60 v 26.8215 37.8587 50 ‘ -8.2611 8.4302 14.9477 -Impact.ttf 60 v 26.8215 37.8587 51 \ -9.2586 23.9087 48.3733 -Impact.ttf 60 v 26.8215 37.8587 52 R -8.4276 26.3407 46.1413 -Impact.ttf 60 v 26.8215 37.8587 53 < 0.1196 27.6670 29.1785 -Impact.ttf 60 v 26.8215 37.8587 54 4 -7.9887 28.6977 46.1413 -Impact.ttf 60 v 26.8215 37.8587 55 8 -9.5392 26.0407 47.8983 -Impact.ttf 60 v 26.8215 37.8587 56 0 -9.0975 26.3407 47.8983 -Impact.ttf 60 v 26.8215 37.8587 57 A -8.2687 31.5355 46.1413 -Impact.ttf 60 v 26.8215 37.8587 58 E -8.1973 20.4483 46.1413 -Impact.ttf 60 v 26.8215 37.8587 59 B -8.2682 26.9465 46.1413 -Impact.ttf 60 v 26.8215 37.8587 60 v -0.1256 26.8215 37.8587 -Impact.ttf 60 v 26.8215 37.8587 61 k -7.9629 25.7680 46.1413 -Impact.ttf 60 v 26.8215 37.8587 62 J -8.4039 16.2320 46.1413 -Impact.ttf 60 v 26.8215 37.8587 63 U -8.2895 26.8215 47.0198 -Impact.ttf 60 v 26.8215 37.8587 64 j -8.1884 13.7692 51.4610 -Impact.ttf 60 v 26.8215 37.8587 65 ( -8.4911 14.9285 46.1413 -Impact.ttf 60 v 26.8215 37.8587 66 7 -8.2321 22.3245 46.1413 -Impact.ttf 60 v 26.8215 37.8587 67 § -9.4580 25.6430 53.5180 -Impact.ttf 60 v 26.8215 37.8587 68 $ -12.0740 26.8215 54.0680 -Impact.ttf 60 v 26.8215 37.8587 69 € -9.0302 28.6058 47.8983 -Impact.ttf 60 v 26.8215 37.8587 70 / -9.4199 22.7302 48.3733 -Impact.ttf 60 v 26.8215 37.8587 71 C -8.8232 26.9465 47.8983 -Impact.ttf 60 v 26.8215 37.8587 72 * -8.2430 15.4705 13.7692 -Impact.ttf 60 v 26.8215 37.8587 73 ” -8.1472 19.2175 14.9477 -Impact.ttf 60 v 26.8215 37.8587 74 ? -9.1396 26.8215 47.0198 -Impact.ttf 60 v 26.8215 37.8587 75 { -8.4554 19.1675 54.8215 -Impact.ttf 60 v 26.8215 37.8587 76 } -8.2098 19.1675 54.8215 -Impact.ttf 60 v 26.8215 37.8587 77 , 28.7567 8.4302 14.9477 -Impact.ttf 60 v 26.8215 37.8587 78 I -8.2468 11.6430 46.1413 -Impact.ttf 60 v 26.8215 37.8587 79 ° -8.8927 18.0163 18.0163 -Impact.ttf 60 v 26.8215 37.8587 80 K -8.2625 30.3570 46.1413 -Impact.ttf 60 v 26.8215 37.8587 81 H -8.2024 27.2192 46.1413 -Impact.ttf 60 v 26.8215 37.8587 82 q 0.0417 25.8600 43.1785 -Impact.ttf 60 v 26.8215 37.8587 83 & -0.0839 33.5925 37.8587 -Impact.ttf 60 v 26.8215 37.8587 84 ’ -8.1700 8.4302 14.9477 -Impact.ttf 60 v 26.8215 37.8587 85 [ -8.1903 13.3942 46.1413 -Impact.ttf 60 v 26.8215 37.8587 86 - 14.8522 14.8785 7.9267 -Impact.ttf 60 v 26.8215 37.8587 87 Y -8.1856 27.6250 46.1413 -Impact.ttf 60 v 26.8215 37.8587 88 Q -9.2814 26.8215 52.3395 -Impact.ttf 60 v 26.8215 37.8587 89 " -8.2468 19.7175 14.0000 -Impact.ttf 60 v 26.8215 37.8587 90 ! -8.2891 12.8215 46.1413 -Impact.ttf 60 v 26.8215 37.8587 91 x -0.0742 25.1760 37.8587 -Impact.ttf 60 v 26.8215 37.8587 92 ) -8.3144 14.9285 46.1413 -Impact.ttf 60 v 26.8215 37.8587 93 = 6.8599 27.6670 16.7320 -Impact.ttf 60 v 26.8215 37.8587 94 + 1.8506 27.1773 27.1773 -Impact.ttf 60 v 26.8215 37.8587 95 X -8.1311 29.6400 46.1413 -Impact.ttf 60 v 26.8215 37.8587 96 » 1.2392 19.6198 32.7140 -Impact.ttf 60 v 26.8215 37.8587 97 ' -8.2798 8.6802 14.0000 -Impact.ttf 60 v 26.8215 37.8587 98 ¢ -8.0236 25.8600 49.5017 -Impact.ttf 60 v 26.8215 37.8587 99 Z -8.6667 22.6245 46.1413 -Impact.ttf 60 v 26.8215 37.8587 100 > 0.0748 27.6670 29.1785 -Impact.ttf 60 v 26.8215 37.8587 101 ® -5.5250 43.1785 43.3035 -Impact.ttf 60 v 26.8215 37.8587 102 © -4.3694 43.1785 42.0000 -Impact.ttf 60 v 26.8215 37.8587 103 ] -8.2311 13.3942 46.1413 -Impact.ttf 60 v 26.8215 37.8587 104 é -9.8487 25.5600 47.5698 -Impact.ttf 60 v 26.8215 37.8587 105 z 0.3470 19.3198 37.8587 -Impact.ttf 60 v 26.8215 37.8587 106 _ 42.1916 32.1413 2.8378 -Impact.ttf 60 v 26.8215 37.8587 107 ¥ -8.1667 27.6250 46.1413 -Impact.ttf 61 k 25.7680 46.1413 1 t 3.0055 17.0878 43.1785 -Impact.ttf 61 k 25.7680 46.1413 2 h 0.0111 25.8600 46.1413 -Impact.ttf 61 k 25.7680 46.1413 3 a 8.4465 24.6815 37.8587 -Impact.ttf 61 k 25.7680 46.1413 4 n 8.2617 25.8600 37.8587 -Impact.ttf 61 k 25.7680 46.1413 5 P -0.1626 25.1622 46.1413 -Impact.ttf 61 k 25.7680 46.1413 6 o 8.3112 25.5600 37.8587 -Impact.ttf 61 k 25.7680 46.1413 7 e 8.4651 25.5600 37.8587 -Impact.ttf 61 k 25.7680 46.1413 8 : 15.6703 8.6802 30.3570 -Impact.ttf 61 k 25.7680 46.1413 9 r 8.2468 17.9105 37.8587 -Impact.ttf 61 k 25.7680 46.1413 10 l 0.0132 11.1622 46.1413 -Impact.ttf 61 k 25.7680 46.1413 11 i 0.2721 11.1622 46.1413 -Impact.ttf 61 k 25.7680 46.1413 12 1 -0.0060 19.5925 46.1413 -Impact.ttf 61 k 25.7680 46.1413 13 | -0.1567 5.8425 53.6430 -Impact.ttf 61 k 25.7680 46.1413 14 N 0.0242 26.3407 46.1413 -Impact.ttf 61 k 25.7680 46.1413 15 f 0.0188 15.6593 46.1413 -Impact.ttf 61 k 25.7680 46.1413 16 g 7.9276 25.8600 44.3570 -Impact.ttf 61 k 25.7680 46.1413 17 d 0.0812 25.8600 46.1413 -Impact.ttf 61 k 25.7680 46.1413 18 W 0.0328 46.2890 46.1413 -Impact.ttf 61 k 25.7680 46.1413 19 s 8.2167 23.5030 37.8587 -Impact.ttf 61 k 25.7680 46.1413 20 c 8.0401 24.6815 37.8587 -Impact.ttf 61 k 25.7680 46.1413 21 u 8.4559 25.8600 37.8587 -Impact.ttf 61 k 25.7680 46.1413 22 3 -0.7057 25.7680 47.8983 -Impact.ttf 61 k 25.7680 46.1413 23 ~ 15.5248 26.7885 12.8907 -Impact.ttf 61 k 25.7680 46.1413 24 # 5.0313 34.6652 41.1215 -Impact.ttf 61 k 25.7680 46.1413 25 O -1.0649 26.8215 47.8983 -Impact.ttf 61 k 25.7680 46.1413 26 ` -4.7444 15.1785 7.9267 -Impact.ttf 61 k 25.7680 46.1413 27 @ -0.9943 43.1785 48.8040 -Impact.ttf 61 k 25.7680 46.1413 28 F 0.1099 20.2675 46.1413 -Impact.ttf 61 k 25.7680 46.1413 29 S -0.9642 27.5192 47.8983 -Impact.ttf 61 k 25.7680 46.1413 30 p 8.4471 25.8600 43.1785 -Impact.ttf 61 k 25.7680 46.1413 31 “ 0.0682 19.2175 14.9477 -Impact.ttf 61 k 25.7680 46.1413 32 % -0.6347 37.9837 47.0198 -Impact.ttf 61 k 25.7680 46.1413 33 £ -0.9132 28.2727 47.0198 -Impact.ttf 61 k 25.7680 46.1413 34 . 36.8139 8.6802 9.3360 -Impact.ttf 61 k 25.7680 46.1413 35 2 -1.1338 23.9837 47.0198 -Impact.ttf 61 k 25.7680 46.1413 36 5 -0.0312 26.3407 47.0198 -Impact.ttf 61 k 25.7680 46.1413 37 m 8.4591 40.4657 37.8587 -Impact.ttf 61 k 25.7680 46.1413 38 V 0.1651 31.0355 46.1413 -Impact.ttf 61 k 25.7680 46.1413 39 6 -0.6245 26.3407 47.8983 -Impact.ttf 61 k 25.7680 46.1413 40 w 8.4164 38.9680 37.8587 -Impact.ttf 61 k 25.7680 46.1413 41 T -0.0102 26.3407 46.1413 -Impact.ttf 61 k 25.7680 46.1413 42 M 0.3717 36.8052 46.1413 -Impact.ttf 61 k 25.7680 46.1413 43 G -0.8011 26.9465 47.8983 -Impact.ttf 61 k 25.7680 46.1413 44 b -0.1113 25.8600 46.1413 -Impact.ttf 61 k 25.7680 46.1413 45 9 -1.0196 26.3407 47.8983 -Impact.ttf 61 k 25.7680 46.1413 46 ; 15.8227 8.6802 36.1995 -Impact.ttf 61 k 25.7680 46.1413 47 D -0.0065 26.9465 46.1413 -Impact.ttf 61 k 25.7680 46.1413 48 L 0.1038 18.8948 46.1413 -Impact.ttf 61 k 25.7680 46.1413 49 y 8.2412 27.3942 43.1785 -Impact.ttf 61 k 25.7680 46.1413 50 ‘ 0.1714 8.4302 14.9477 -Impact.ttf 61 k 25.7680 46.1413 51 \ -1.3533 23.9087 48.3733 -Impact.ttf 61 k 25.7680 46.1413 52 R -0.3939 26.3407 46.1413 -Impact.ttf 61 k 25.7680 46.1413 53 < 8.5140 27.6670 29.1785 -Impact.ttf 61 k 25.7680 46.1413 54 4 -0.0830 28.6977 46.1413 -Impact.ttf 61 k 25.7680 46.1413 55 8 -1.0194 26.0407 47.8983 -Impact.ttf 61 k 25.7680 46.1413 56 0 -0.9753 26.3407 47.8983 -Impact.ttf 61 k 25.7680 46.1413 57 A 0.0487 31.5355 46.1413 -Impact.ttf 61 k 25.7680 46.1413 58 E -0.0769 20.4483 46.1413 -Impact.ttf 61 k 25.7680 46.1413 59 B -0.1696 26.9465 46.1413 -Impact.ttf 61 k 25.7680 46.1413 60 v 8.3599 26.8215 37.8587 -Impact.ttf 61 k 25.7680 46.1413 61 k -0.1312 25.7680 46.1413 -Impact.ttf 61 k 25.7680 46.1413 62 J -0.2228 16.2320 46.1413 -Impact.ttf 61 k 25.7680 46.1413 63 U 0.1067 26.8215 47.0198 -Impact.ttf 61 k 25.7680 46.1413 64 j -0.2721 13.7692 51.4610 -Impact.ttf 61 k 25.7680 46.1413 65 ( 0.0097 14.9285 46.1413 -Impact.ttf 61 k 25.7680 46.1413 66 7 -0.1437 22.3245 46.1413 -Impact.ttf 61 k 25.7680 46.1413 67 § -0.6523 25.6430 53.5180 -Impact.ttf 61 k 25.7680 46.1413 68 $ -3.6724 26.8215 54.0680 -Impact.ttf 61 k 25.7680 46.1413 69 € -1.0027 28.6058 47.8983 -Impact.ttf 61 k 25.7680 46.1413 70 / -1.1452 22.7302 48.3733 -Impact.ttf 61 k 25.7680 46.1413 71 C -0.8438 26.9465 47.8983 -Impact.ttf 61 k 25.7680 46.1413 72 * -0.2011 15.4705 13.7692 -Impact.ttf 61 k 25.7680 46.1413 73 ” -0.1941 19.2175 14.9477 -Impact.ttf 61 k 25.7680 46.1413 74 ? -1.0728 26.8215 47.0198 -Impact.ttf 61 k 25.7680 46.1413 75 { -0.1909 19.1675 54.8215 -Impact.ttf 61 k 25.7680 46.1413 76 } 0.4587 19.1675 54.8215 -Impact.ttf 61 k 25.7680 46.1413 77 , 36.9801 8.4302 14.9477 -Impact.ttf 61 k 25.7680 46.1413 78 I -0.3610 11.6430 46.1413 -Impact.ttf 61 k 25.7680 46.1413 79 ° -0.6514 18.0163 18.0163 -Impact.ttf 61 k 25.7680 46.1413 80 K -0.1399 30.3570 46.1413 -Impact.ttf 61 k 25.7680 46.1413 81 H -0.0657 27.2192 46.1413 -Impact.ttf 61 k 25.7680 46.1413 82 q 8.2528 25.8600 43.1785 -Impact.ttf 61 k 25.7680 46.1413 83 & 8.2056 33.5925 37.8587 -Impact.ttf 61 k 25.7680 46.1413 84 ’ -0.1372 8.4302 14.9477 -Impact.ttf 61 k 25.7680 46.1413 85 [ -0.1807 13.3942 46.1413 -Impact.ttf 61 k 25.7680 46.1413 86 - 22.9448 14.8785 7.9267 -Impact.ttf 61 k 25.7680 46.1413 87 Y 0.0108 27.6250 46.1413 -Impact.ttf 61 k 25.7680 46.1413 88 Q -1.1959 26.8215 52.3395 -Impact.ttf 61 k 25.7680 46.1413 89 " 0.0885 19.7175 14.0000 -Impact.ttf 61 k 25.7680 46.1413 90 ! 0.0000 12.8215 46.1413 -Impact.ttf 61 k 25.7680 46.1413 91 x 7.9873 25.1760 37.8587 -Impact.ttf 61 k 25.7680 46.1413 92 ) 0.2970 14.9285 46.1413 -Impact.ttf 61 k 25.7680 46.1413 93 = 14.8316 27.6670 16.7320 -Impact.ttf 61 k 25.7680 46.1413 94 + 9.8587 27.1773 27.1773 -Impact.ttf 61 k 25.7680 46.1413 95 X -0.1345 29.6400 46.1413 -Impact.ttf 61 k 25.7680 46.1413 96 » 9.5820 19.6198 32.7140 -Impact.ttf 61 k 25.7680 46.1413 97 ' 0.1427 8.6802 14.0000 -Impact.ttf 61 k 25.7680 46.1413 98 ¢ 0.0268 25.8600 49.5017 -Impact.ttf 61 k 25.7680 46.1413 99 Z -0.0885 22.6245 46.1413 -Impact.ttf 61 k 25.7680 46.1413 100 > 8.2855 27.6670 29.1785 -Impact.ttf 61 k 25.7680 46.1413 101 ® 2.9119 43.1785 43.3035 -Impact.ttf 61 k 25.7680 46.1413 102 © 4.3595 43.1785 42.0000 -Impact.ttf 61 k 25.7680 46.1413 103 ] -0.1626 13.3942 46.1413 -Impact.ttf 61 k 25.7680 46.1413 104 é -1.6054 25.5600 47.5698 -Impact.ttf 61 k 25.7680 46.1413 105 z 8.2459 19.3198 37.8587 -Impact.ttf 61 k 25.7680 46.1413 106 _ 50.3611 32.1413 2.8378 -Impact.ttf 61 k 25.7680 46.1413 107 ¥ -0.1984 27.6250 46.1413 -Impact.ttf 62 J 16.2320 46.1413 1 t 2.9354 17.0878 43.1785 -Impact.ttf 62 J 16.2320 46.1413 2 h -0.0658 25.8600 46.1413 -Impact.ttf 62 J 16.2320 46.1413 3 a 8.1839 24.6815 37.8587 -Impact.ttf 62 J 16.2320 46.1413 4 n 8.6417 25.8600 37.8587 -Impact.ttf 62 J 16.2320 46.1413 5 P -0.0853 25.1622 46.1413 -Impact.ttf 62 J 16.2320 46.1413 6 o 8.5093 25.5600 37.8587 -Impact.ttf 62 J 16.2320 46.1413 7 e 7.9831 25.5600 37.8587 -Impact.ttf 62 J 16.2320 46.1413 8 : 15.7913 8.6802 30.3570 -Impact.ttf 62 J 16.2320 46.1413 9 r 8.1556 17.9105 37.8587 -Impact.ttf 62 J 16.2320 46.1413 10 l 0.1061 11.1622 46.1413 -Impact.ttf 62 J 16.2320 46.1413 11 i 0.0774 11.1622 46.1413 -Impact.ttf 62 J 16.2320 46.1413 12 1 0.0774 19.5925 46.1413 -Impact.ttf 62 J 16.2320 46.1413 13 | -0.1626 5.8425 53.6430 -Impact.ttf 62 J 16.2320 46.1413 14 N 0.1640 26.3407 46.1413 -Impact.ttf 62 J 16.2320 46.1413 15 f -0.1832 15.6593 46.1413 -Impact.ttf 62 J 16.2320 46.1413 16 g 8.1013 25.8600 44.3570 -Impact.ttf 62 J 16.2320 46.1413 17 d -0.0801 25.8600 46.1413 -Impact.ttf 62 J 16.2320 46.1413 18 W 0.1562 46.2890 46.1413 -Impact.ttf 62 J 16.2320 46.1413 19 s 8.1244 23.5030 37.8587 -Impact.ttf 62 J 16.2320 46.1413 20 c 8.4091 24.6815 37.8587 -Impact.ttf 62 J 16.2320 46.1413 21 u 8.2031 25.8600 37.8587 -Impact.ttf 62 J 16.2320 46.1413 22 3 -0.8772 25.7680 47.8983 -Impact.ttf 62 J 16.2320 46.1413 23 ~ 15.4827 26.7885 12.8907 -Impact.ttf 62 J 16.2320 46.1413 24 # 5.1166 34.6652 41.1215 -Impact.ttf 62 J 16.2320 46.1413 25 O -0.9384 26.8215 47.8983 -Impact.ttf 62 J 16.2320 46.1413 26 ` -5.0354 15.1785 7.9267 -Impact.ttf 62 J 16.2320 46.1413 27 @ -0.8998 43.1785 48.8040 -Impact.ttf 62 J 16.2320 46.1413 28 F -0.1733 20.2675 46.1413 -Impact.ttf 62 J 16.2320 46.1413 29 S -0.9597 27.5192 47.8983 -Impact.ttf 62 J 16.2320 46.1413 30 p 8.1954 25.8600 43.1785 -Impact.ttf 62 J 16.2320 46.1413 31 “ 0.0844 19.2175 14.9477 -Impact.ttf 62 J 16.2320 46.1413 32 % -0.7043 37.9837 47.0198 -Impact.ttf 62 J 16.2320 46.1413 33 £ -0.7785 28.2727 47.0198 -Impact.ttf 62 J 16.2320 46.1413 34 . 36.7636 8.6802 9.3360 -Impact.ttf 62 J 16.2320 46.1413 35 2 -0.9350 23.9837 47.0198 -Impact.ttf 62 J 16.2320 46.1413 36 5 -0.2438 26.3407 47.0198 -Impact.ttf 62 J 16.2320 46.1413 37 m 8.1156 40.4657 37.8587 -Impact.ttf 62 J 16.2320 46.1413 38 V 0.0097 31.0355 46.1413 -Impact.ttf 62 J 16.2320 46.1413 39 6 -1.1085 26.3407 47.8983 -Impact.ttf 62 J 16.2320 46.1413 40 w 8.3710 38.9680 37.8587 -Impact.ttf 62 J 16.2320 46.1413 41 T 0.0769 26.3407 46.1413 -Impact.ttf 62 J 16.2320 46.1413 42 M 0.1509 36.8052 46.1413 -Impact.ttf 62 J 16.2320 46.1413 43 G -1.0870 26.9465 47.8983 -Impact.ttf 62 J 16.2320 46.1413 44 b 0.1201 25.8600 46.1413 -Impact.ttf 62 J 16.2320 46.1413 45 9 -0.7140 26.3407 47.8983 -Impact.ttf 62 J 16.2320 46.1413 46 ; 15.8474 8.6802 36.1995 -Impact.ttf 62 J 16.2320 46.1413 47 D 0.1242 26.9465 46.1413 -Impact.ttf 62 J 16.2320 46.1413 48 L -0.0337 18.8948 46.1413 -Impact.ttf 62 J 16.2320 46.1413 49 y 8.4794 27.3942 43.1785 -Impact.ttf 62 J 16.2320 46.1413 50 ‘ -0.1455 8.4302 14.9477 -Impact.ttf 62 J 16.2320 46.1413 51 \ -0.8849 23.9087 48.3733 -Impact.ttf 62 J 16.2320 46.1413 52 R 0.1242 26.3407 46.1413 -Impact.ttf 62 J 16.2320 46.1413 53 < 7.8865 27.6670 29.1785 -Impact.ttf 62 J 16.2320 46.1413 54 4 0.0333 28.6977 46.1413 -Impact.ttf 62 J 16.2320 46.1413 55 8 -1.2886 26.0407 47.8983 -Impact.ttf 62 J 16.2320 46.1413 56 0 -0.9027 26.3407 47.8983 -Impact.ttf 62 J 16.2320 46.1413 57 A -0.0669 31.5355 46.1413 -Impact.ttf 62 J 16.2320 46.1413 58 E 0.1742 20.4483 46.1413 -Impact.ttf 62 J 16.2320 46.1413 59 B 0.0468 26.9465 46.1413 -Impact.ttf 62 J 16.2320 46.1413 60 v 7.9673 26.8215 37.8587 -Impact.ttf 62 J 16.2320 46.1413 61 k 0.3651 25.7680 46.1413 -Impact.ttf 62 J 16.2320 46.1413 62 J -0.1218 16.2320 46.1413 -Impact.ttf 62 J 16.2320 46.1413 63 U 0.0417 26.8215 47.0198 -Impact.ttf 62 J 16.2320 46.1413 64 j 0.0955 13.7692 51.4610 -Impact.ttf 62 J 16.2320 46.1413 65 ( 0.0385 14.9285 46.1413 -Impact.ttf 62 J 16.2320 46.1413 66 7 0.1714 22.3245 46.1413 -Impact.ttf 62 J 16.2320 46.1413 67 § -0.8827 25.6430 53.5180 -Impact.ttf 62 J 16.2320 46.1413 68 $ -3.8569 26.8215 54.0680 -Impact.ttf 62 J 16.2320 46.1413 69 € -1.0111 28.6058 47.8983 -Impact.ttf 62 J 16.2320 46.1413 70 / -1.0118 22.7302 48.3733 -Impact.ttf 62 J 16.2320 46.1413 71 C -0.9527 26.9465 47.8983 -Impact.ttf 62 J 16.2320 46.1413 72 * 0.1710 15.4705 13.7692 -Impact.ttf 62 J 16.2320 46.1413 73 ” -0.1000 19.2175 14.9477 -Impact.ttf 62 J 16.2320 46.1413 74 ? -0.8200 26.8215 47.0198 -Impact.ttf 62 J 16.2320 46.1413 75 { -0.1422 19.1675 54.8215 -Impact.ttf 62 J 16.2320 46.1413 76 } 0.0000 19.1675 54.8215 -Impact.ttf 62 J 16.2320 46.1413 77 , 37.0458 8.4302 14.9477 -Impact.ttf 62 J 16.2320 46.1413 78 I 0.1196 11.6430 46.1413 -Impact.ttf 62 J 16.2320 46.1413 79 ° -0.7701 18.0163 18.0163 -Impact.ttf 62 J 16.2320 46.1413 80 K 0.0385 30.3570 46.1413 -Impact.ttf 62 J 16.2320 46.1413 81 H -0.0955 27.2192 46.1413 -Impact.ttf 62 J 16.2320 46.1413 82 q 8.2328 25.8600 43.1785 -Impact.ttf 62 J 16.2320 46.1413 83 & 8.3010 33.5925 37.8587 -Impact.ttf 62 J 16.2320 46.1413 84 ’ 0.1794 8.4302 14.9477 -Impact.ttf 62 J 16.2320 46.1413 85 [ 0.3726 13.3942 46.1413 -Impact.ttf 62 J 16.2320 46.1413 86 - 22.8659 14.8785 7.9267 -Impact.ttf 62 J 16.2320 46.1413 87 Y 0.1658 27.6250 46.1413 -Impact.ttf 62 J 16.2320 46.1413 88 Q -0.9170 26.8215 52.3395 -Impact.ttf 62 J 16.2320 46.1413 89 " -0.0631 19.7175 14.0000 -Impact.ttf 62 J 16.2320 46.1413 90 ! -0.1097 12.8215 46.1413 -Impact.ttf 62 J 16.2320 46.1413 91 x 8.1986 25.1760 37.8587 -Impact.ttf 62 J 16.2320 46.1413 92 ) -0.1613 14.9285 46.1413 -Impact.ttf 62 J 16.2320 46.1413 93 = 14.8785 27.6670 16.7320 -Impact.ttf 62 J 16.2320 46.1413 94 + 9.9504 27.1773 27.1773 -Impact.ttf 62 J 16.2320 46.1413 95 X -0.0385 29.6400 46.1413 -Impact.ttf 62 J 16.2320 46.1413 96 » 9.5366 19.6198 32.7140 -Impact.ttf 62 J 16.2320 46.1413 97 ' -0.0682 8.6802 14.0000 -Impact.ttf 62 J 16.2320 46.1413 98 ¢ 0.1347 25.8600 49.5017 -Impact.ttf 62 J 16.2320 46.1413 99 Z -0.1581 22.6245 46.1413 -Impact.ttf 62 J 16.2320 46.1413 100 > 8.2322 27.6670 29.1785 -Impact.ttf 62 J 16.2320 46.1413 101 ® 2.7993 43.1785 43.3035 -Impact.ttf 62 J 16.2320 46.1413 102 © 4.3238 43.1785 42.0000 -Impact.ttf 62 J 16.2320 46.1413 103 ] 0.0444 13.3942 46.1413 -Impact.ttf 62 J 16.2320 46.1413 104 é -1.7339 25.5600 47.5698 -Impact.ttf 62 J 16.2320 46.1413 105 z 8.1626 19.3198 37.8587 -Impact.ttf 62 J 16.2320 46.1413 106 _ 50.6150 32.1413 2.8378 -Impact.ttf 62 J 16.2320 46.1413 107 ¥ 0.0570 27.6250 46.1413 -Impact.ttf 63 U 26.8215 47.0198 1 t 2.9211 17.0878 43.1785 -Impact.ttf 63 U 26.8215 47.0198 2 h 0.0287 25.8600 46.1413 -Impact.ttf 63 U 26.8215 47.0198 3 a 8.3567 24.6815 37.8587 -Impact.ttf 63 U 26.8215 47.0198 4 n 8.3786 25.8600 37.8587 -Impact.ttf 63 U 26.8215 47.0198 5 P 0.1024 25.1622 46.1413 -Impact.ttf 63 U 26.8215 47.0198 6 o 8.4067 25.5600 37.8587 -Impact.ttf 63 U 26.8215 47.0198 7 e 8.2112 25.5600 37.8587 -Impact.ttf 63 U 26.8215 47.0198 8 : 15.8968 8.6802 30.3570 -Impact.ttf 63 U 26.8215 47.0198 9 r 8.4368 17.9105 37.8587 -Impact.ttf 63 U 26.8215 47.0198 10 l -0.1052 11.1622 46.1413 -Impact.ttf 63 U 26.8215 47.0198 11 i 0.0000 11.1622 46.1413 -Impact.ttf 63 U 26.8215 47.0198 12 1 0.2164 19.5925 46.1413 -Impact.ttf 63 U 26.8215 47.0198 13 | -0.1756 5.8425 53.6430 -Impact.ttf 63 U 26.8215 47.0198 14 N -0.0115 26.3407 46.1413 -Impact.ttf 63 U 26.8215 47.0198 15 f 0.0955 15.6593 46.1413 -Impact.ttf 63 U 26.8215 47.0198 16 g 8.2010 25.8600 44.3570 -Impact.ttf 63 U 26.8215 47.0198 17 d -0.2833 25.8600 46.1413 -Impact.ttf 63 U 26.8215 47.0198 18 W 0.0156 46.2890 46.1413 -Impact.ttf 63 U 26.8215 47.0198 19 s 8.2742 23.5030 37.8587 -Impact.ttf 63 U 26.8215 47.0198 20 c 8.3085 24.6815 37.8587 -Impact.ttf 63 U 26.8215 47.0198 21 u 8.2728 25.8600 37.8587 -Impact.ttf 63 U 26.8215 47.0198 22 3 -0.9384 25.7680 47.8983 -Impact.ttf 63 U 26.8215 47.0198 23 ~ 15.5591 26.7885 12.8907 -Impact.ttf 63 U 26.8215 47.0198 24 # 4.8173 34.6652 41.1215 -Impact.ttf 63 U 26.8215 47.0198 25 O -1.2192 26.8215 47.8983 -Impact.ttf 63 U 26.8215 47.0198 26 ` -5.2296 15.1785 7.9267 -Impact.ttf 63 U 26.8215 47.0198 27 @ -1.1222 43.1785 48.8040 -Impact.ttf 63 U 26.8215 47.0198 28 F -0.0417 20.2675 46.1413 -Impact.ttf 63 U 26.8215 47.0198 29 S -0.8373 27.5192 47.8983 -Impact.ttf 63 U 26.8215 47.0198 30 p 8.3248 25.8600 43.1785 -Impact.ttf 63 U 26.8215 47.0198 31 “ -0.0032 19.2175 14.9477 -Impact.ttf 63 U 26.8215 47.0198 32 % -1.2327 37.9837 47.0198 -Impact.ttf 63 U 26.8215 47.0198 33 £ -0.7304 28.2727 47.0198 -Impact.ttf 63 U 26.8215 47.0198 34 . 36.7937 8.6802 9.3360 -Impact.ttf 63 U 26.8215 47.0198 35 2 -0.7057 23.9837 47.0198 -Impact.ttf 63 U 26.8215 47.0198 36 5 0.2169 26.3407 47.0198 -Impact.ttf 63 U 26.8215 47.0198 37 m 7.9549 40.4657 37.8587 -Impact.ttf 63 U 26.8215 47.0198 38 V -0.0987 31.0355 46.1413 -Impact.ttf 63 U 26.8215 47.0198 39 6 -0.7394 26.3407 47.8983 -Impact.ttf 63 U 26.8215 47.0198 40 w 8.2298 38.9680 37.8587 -Impact.ttf 63 U 26.8215 47.0198 41 T 0.1316 26.3407 46.1413 -Impact.ttf 63 U 26.8215 47.0198 42 M -0.4466 36.8052 46.1413 -Impact.ttf 63 U 26.8215 47.0198 43 G -0.9170 26.9465 47.8983 -Impact.ttf 63 U 26.8215 47.0198 44 b 0.1269 25.8600 46.1413 -Impact.ttf 63 U 26.8215 47.0198 45 9 -1.0375 26.3407 47.8983 -Impact.ttf 63 U 26.8215 47.0198 46 ; 15.7315 8.6802 36.1995 -Impact.ttf 63 U 26.8215 47.0198 47 D -0.0027 26.9465 46.1413 -Impact.ttf 63 U 26.8215 47.0198 48 L 0.0260 18.8948 46.1413 -Impact.ttf 63 U 26.8215 47.0198 49 y 8.2353 27.3942 43.1785 -Impact.ttf 63 U 26.8215 47.0198 50 ‘ -0.2040 8.4302 14.9477 -Impact.ttf 63 U 26.8215 47.0198 51 \ -1.0535 23.9087 48.3733 -Impact.ttf 63 U 26.8215 47.0198 52 R -0.2382 26.3407 46.1413 -Impact.ttf 63 U 26.8215 47.0198 53 < 8.0478 27.6670 29.1785 -Impact.ttf 63 U 26.8215 47.0198 54 4 0.1756 28.6977 46.1413 -Impact.ttf 63 U 26.8215 47.0198 55 8 -0.9940 26.0407 47.8983 -Impact.ttf 63 U 26.8215 47.0198 56 0 -0.4799 26.3407 47.8983 -Impact.ttf 63 U 26.8215 47.0198 57 A -0.1111 31.5355 46.1413 -Impact.ttf 63 U 26.8215 47.0198 58 E -0.2850 20.4483 46.1413 -Impact.ttf 63 U 26.8215 47.0198 59 B 0.2508 26.9465 46.1413 -Impact.ttf 63 U 26.8215 47.0198 60 v 8.3780 26.8215 37.8587 -Impact.ttf 63 U 26.8215 47.0198 61 k -0.3087 25.7680 46.1413 -Impact.ttf 63 U 26.8215 47.0198 62 J -0.0070 16.2320 46.1413 -Impact.ttf 63 U 26.8215 47.0198 63 U -0.3053 26.8215 47.0198 -Impact.ttf 63 U 26.8215 47.0198 64 j -0.0196 13.7692 51.4610 -Impact.ttf 63 U 26.8215 47.0198 65 ( -0.2043 14.9285 46.1413 -Impact.ttf 63 U 26.8215 47.0198 66 7 0.1951 22.3245 46.1413 -Impact.ttf 63 U 26.8215 47.0198 67 § -0.9027 25.6430 53.5180 -Impact.ttf 63 U 26.8215 47.0198 68 $ -3.5978 26.8215 54.0680 -Impact.ttf 63 U 26.8215 47.0198 69 € -0.6547 28.6058 47.8983 -Impact.ttf 63 U 26.8215 47.0198 70 / -0.7920 22.7302 48.3733 -Impact.ttf 63 U 26.8215 47.0198 71 C -0.8604 26.9465 47.8983 -Impact.ttf 63 U 26.8215 47.0198 72 * 0.0899 15.4705 13.7692 -Impact.ttf 63 U 26.8215 47.0198 73 ” -0.1137 19.2175 14.9477 -Impact.ttf 63 U 26.8215 47.0198 74 ? -0.8001 26.8215 47.0198 -Impact.ttf 63 U 26.8215 47.0198 75 { -0.1409 19.1675 54.8215 -Impact.ttf 63 U 26.8215 47.0198 76 } -0.3457 19.1675 54.8215 -Impact.ttf 63 U 26.8215 47.0198 77 , 36.9392 8.4302 14.9477 -Impact.ttf 63 U 26.8215 47.0198 78 I 0.0385 11.6430 46.1413 -Impact.ttf 63 U 26.8215 47.0198 79 ° -0.6704 18.0163 18.0163 -Impact.ttf 63 U 26.8215 47.0198 80 K -0.0881 30.3570 46.1413 -Impact.ttf 63 U 26.8215 47.0198 81 H 0.0742 27.2192 46.1413 -Impact.ttf 63 U 26.8215 47.0198 82 q 8.5536 25.8600 43.1785 -Impact.ttf 63 U 26.8215 47.0198 83 & 8.1106 33.5925 37.8587 -Impact.ttf 63 U 26.8215 47.0198 84 ’ -0.2817 8.4302 14.9477 -Impact.ttf 63 U 26.8215 47.0198 85 [ -0.2953 13.3942 46.1413 -Impact.ttf 63 U 26.8215 47.0198 86 - 23.1315 14.8785 7.9267 -Impact.ttf 63 U 26.8215 47.0198 87 Y -0.0310 27.6250 46.1413 -Impact.ttf 63 U 26.8215 47.0198 88 Q -0.8355 26.8215 52.3395 -Impact.ttf 63 U 26.8215 47.0198 89 " 0.0756 19.7175 14.0000 -Impact.ttf 63 U 26.8215 47.0198 90 ! 0.0347 12.8215 46.1413 -Impact.ttf 63 U 26.8215 47.0198 91 x 7.9683 25.1760 37.8587 -Impact.ttf 63 U 26.8215 47.0198 92 ) 0.1548 14.9285 46.1413 -Impact.ttf 63 U 26.8215 47.0198 93 = 14.7301 27.6670 16.7320 -Impact.ttf 63 U 26.8215 47.0198 94 + 9.9389 27.1773 27.1773 -Impact.ttf 63 U 26.8215 47.0198 95 X -0.0084 29.6400 46.1413 -Impact.ttf 63 U 26.8215 47.0198 96 » 9.3905 19.6198 32.7140 -Impact.ttf 63 U 26.8215 47.0198 97 ' -0.3049 8.6802 14.0000 -Impact.ttf 63 U 26.8215 47.0198 98 ¢ -0.0562 25.8600 49.5017 -Impact.ttf 63 U 26.8215 47.0198 99 Z 0.0045 22.6245 46.1413 -Impact.ttf 63 U 26.8215 47.0198 100 > 8.0833 27.6670 29.1785 -Impact.ttf 63 U 26.8215 47.0198 101 ® 2.8520 43.1785 43.3035 -Impact.ttf 63 U 26.8215 47.0198 102 © 4.0598 43.1785 42.0000 -Impact.ttf 63 U 26.8215 47.0198 103 ] -0.0106 13.3942 46.1413 -Impact.ttf 63 U 26.8215 47.0198 104 é -1.5838 25.5600 47.5698 -Impact.ttf 63 U 26.8215 47.0198 105 z 8.2970 19.3198 37.8587 -Impact.ttf 63 U 26.8215 47.0198 106 _ 50.3189 32.1413 2.8378 -Impact.ttf 63 U 26.8215 47.0198 107 ¥ -0.0368 27.6250 46.1413 -Impact.ttf 64 j 13.7692 51.4610 1 t 3.3145 17.0878 43.1785 -Impact.ttf 64 j 13.7692 51.4610 2 h -0.0885 25.8600 46.1413 -Impact.ttf 64 j 13.7692 51.4610 3 a 8.2997 24.6815 37.8587 -Impact.ttf 64 j 13.7692 51.4610 4 n 8.1629 25.8600 37.8587 -Impact.ttf 64 j 13.7692 51.4610 5 P -0.1164 25.1622 46.1413 -Impact.ttf 64 j 13.7692 51.4610 6 o 8.0317 25.5600 37.8587 -Impact.ttf 64 j 13.7692 51.4610 7 e 8.3347 25.5600 37.8587 -Impact.ttf 64 j 13.7692 51.4610 8 : 15.5845 8.6802 30.3570 -Impact.ttf 64 j 13.7692 51.4610 9 r 8.1319 17.9105 37.8587 -Impact.ttf 64 j 13.7692 51.4610 10 l 0.0143 11.1622 46.1413 -Impact.ttf 64 j 13.7692 51.4610 11 i -0.0450 11.1622 46.1413 -Impact.ttf 64 j 13.7692 51.4610 12 1 -0.2053 19.5925 46.1413 -Impact.ttf 64 j 13.7692 51.4610 13 | -0.1826 5.8425 53.6430 -Impact.ttf 64 j 13.7692 51.4610 14 N 0.0885 26.3407 46.1413 -Impact.ttf 64 j 13.7692 51.4610 15 f 0.0714 15.6593 46.1413 -Impact.ttf 64 j 13.7692 51.4610 16 g 8.1226 25.8600 44.3570 -Impact.ttf 64 j 13.7692 51.4610 17 d 0.2169 25.8600 46.1413 -Impact.ttf 64 j 13.7692 51.4610 18 W 0.0885 46.2890 46.1413 -Impact.ttf 64 j 13.7692 51.4610 19 s 8.4341 23.5030 37.8587 -Impact.ttf 64 j 13.7692 51.4610 20 c 8.5406 24.6815 37.8587 -Impact.ttf 64 j 13.7692 51.4610 21 u 8.1310 25.8600 37.8587 -Impact.ttf 64 j 13.7692 51.4610 22 3 -1.1216 25.7680 47.8983 -Impact.ttf 64 j 13.7692 51.4610 23 ~ 15.5021 26.7885 12.8907 -Impact.ttf 64 j 13.7692 51.4610 24 # 4.9340 34.6652 41.1215 -Impact.ttf 64 j 13.7692 51.4610 25 O -0.9481 26.8215 47.8983 -Impact.ttf 64 j 13.7692 51.4610 26 ` -5.0382 15.1785 7.9267 -Impact.ttf 64 j 13.7692 51.4610 27 @ -0.9527 43.1785 48.8040 -Impact.ttf 64 j 13.7692 51.4610 28 F 0.0014 20.2675 46.1413 -Impact.ttf 64 j 13.7692 51.4610 29 S -0.8077 27.5192 47.8983 -Impact.ttf 64 j 13.7692 51.4610 30 p 8.0860 25.8600 43.1785 -Impact.ttf 64 j 13.7692 51.4610 31 “ -0.0675 19.2175 14.9477 -Impact.ttf 64 j 13.7692 51.4610 32 % -1.0226 37.9837 47.0198 -Impact.ttf 64 j 13.7692 51.4610 33 £ -0.8928 28.2727 47.0198 -Impact.ttf 64 j 13.7692 51.4610 34 . 36.6426 8.6802 9.3360 -Impact.ttf 64 j 13.7692 51.4610 35 2 -1.0228 23.9837 47.0198 -Impact.ttf 64 j 13.7692 51.4610 36 5 -0.0129 26.3407 47.0198 -Impact.ttf 64 j 13.7692 51.4610 37 m 8.0345 40.4657 37.8587 -Impact.ttf 64 j 13.7692 51.4610 38 V -0.0970 31.0355 46.1413 -Impact.ttf 64 j 13.7692 51.4610 39 6 -0.7501 26.3407 47.8983 -Impact.ttf 64 j 13.7692 51.4610 40 w 8.2509 38.9680 37.8587 -Impact.ttf 64 j 13.7692 51.4610 41 T 0.0000 26.3407 46.1413 -Impact.ttf 64 j 13.7692 51.4610 42 M 0.0871 36.8052 46.1413 -Impact.ttf 64 j 13.7692 51.4610 43 G -0.9527 26.9465 47.8983 -Impact.ttf 64 j 13.7692 51.4610 44 b -0.1383 25.8600 46.1413 -Impact.ttf 64 j 13.7692 51.4610 45 9 -0.9170 26.3407 47.8983 -Impact.ttf 64 j 13.7692 51.4610 46 ; 15.6114 8.6802 36.1995 -Impact.ttf 64 j 13.7692 51.4610 47 D 0.1785 26.9465 46.1413 -Impact.ttf 64 j 13.7692 51.4610 48 L 0.0398 18.8948 46.1413 -Impact.ttf 64 j 13.7692 51.4610 49 y 8.1801 27.3942 43.1785 -Impact.ttf 64 j 13.7692 51.4610 50 ‘ -0.5264 8.4302 14.9477 -Impact.ttf 64 j 13.7692 51.4610 51 \ -0.9775 23.9087 48.3733 -Impact.ttf 64 j 13.7692 51.4610 52 R -0.0274 26.3407 46.1413 -Impact.ttf 64 j 13.7692 51.4610 53 < 8.3545 27.6670 29.1785 -Impact.ttf 64 j 13.7692 51.4610 54 4 -0.2210 28.6977 46.1413 -Impact.ttf 64 j 13.7692 51.4610 55 8 -1.0013 26.0407 47.8983 -Impact.ttf 64 j 13.7692 51.4610 56 0 -0.9382 26.3407 47.8983 -Impact.ttf 64 j 13.7692 51.4610 57 A -0.0778 31.5355 46.1413 -Impact.ttf 64 j 13.7692 51.4610 58 E 0.1000 20.4483 46.1413 -Impact.ttf 64 j 13.7692 51.4610 59 B 0.0240 26.9465 46.1413 -Impact.ttf 64 j 13.7692 51.4610 60 v 8.2208 26.8215 37.8587 -Impact.ttf 64 j 13.7692 51.4610 61 k 0.0027 25.7680 46.1413 -Impact.ttf 64 j 13.7692 51.4610 62 J -0.0417 16.2320 46.1413 -Impact.ttf 64 j 13.7692 51.4610 63 U 0.0000 26.8215 47.0198 -Impact.ttf 64 j 13.7692 51.4610 64 j 0.0826 13.7692 51.4610 -Impact.ttf 64 j 13.7692 51.4610 65 ( 0.0038 14.9285 46.1413 -Impact.ttf 64 j 13.7692 51.4610 66 7 0.2113 22.3245 46.1413 -Impact.ttf 64 j 13.7692 51.4610 67 § -0.7159 25.6430 53.5180 -Impact.ttf 64 j 13.7692 51.4610 68 $ -3.9338 26.8215 54.0680 -Impact.ttf 64 j 13.7692 51.4610 69 € -1.0968 28.6058 47.8983 -Impact.ttf 64 j 13.7692 51.4610 70 / -1.1105 22.7302 48.3733 -Impact.ttf 64 j 13.7692 51.4610 71 C -1.0416 26.9465 47.8983 -Impact.ttf 64 j 13.7692 51.4610 72 * -0.0885 15.4705 13.7692 -Impact.ttf 64 j 13.7692 51.4610 73 ” 0.0073 19.2175 14.9477 -Impact.ttf 64 j 13.7692 51.4610 74 ? -1.0806 26.8215 47.0198 -Impact.ttf 64 j 13.7692 51.4610 75 { -0.2210 19.1675 54.8215 -Impact.ttf 64 j 13.7692 51.4610 76 } -0.2585 19.1675 54.8215 -Impact.ttf 64 j 13.7692 51.4610 77 , 37.3071 8.4302 14.9477 -Impact.ttf 64 j 13.7692 51.4610 78 I 0.0895 11.6430 46.1413 -Impact.ttf 64 j 13.7692 51.4610 79 ° -0.9680 18.0163 18.0163 -Impact.ttf 64 j 13.7692 51.4610 80 K -0.1864 30.3570 46.1413 -Impact.ttf 64 j 13.7692 51.4610 81 H -0.1403 27.2192 46.1413 -Impact.ttf 64 j 13.7692 51.4610 82 q 8.2111 25.8600 43.1785 -Impact.ttf 64 j 13.7692 51.4610 83 & 8.2923 33.5925 37.8587 -Impact.ttf 64 j 13.7692 51.4610 84 ’ 0.2762 8.4302 14.9477 -Impact.ttf 64 j 13.7692 51.4610 85 [ 0.1641 13.3942 46.1413 -Impact.ttf 64 j 13.7692 51.4610 86 - 23.3527 14.8785 7.9267 -Impact.ttf 64 j 13.7692 51.4610 87 Y -0.0383 27.6250 46.1413 -Impact.ttf 64 j 13.7692 51.4610 88 Q -0.9656 26.8215 52.3395 -Impact.ttf 64 j 13.7692 51.4610 89 " -0.0742 19.7175 14.0000 -Impact.ttf 64 j 13.7692 51.4610 90 ! 0.1140 12.8215 46.1413 -Impact.ttf 64 j 13.7692 51.4610 91 x 8.1369 25.1760 37.8587 -Impact.ttf 64 j 13.7692 51.4610 92 ) -0.0144 14.9285 46.1413 -Impact.ttf 64 j 13.7692 51.4610 93 = 15.2241 27.6670 16.7320 -Impact.ttf 64 j 13.7692 51.4610 94 + 9.8902 27.1773 27.1773 -Impact.ttf 64 j 13.7692 51.4610 95 X 0.0185 29.6400 46.1413 -Impact.ttf 64 j 13.7692 51.4610 96 » 9.6348 19.6198 32.7140 -Impact.ttf 64 j 13.7692 51.4610 97 ' -0.2113 8.6802 14.0000 -Impact.ttf 64 j 13.7692 51.4610 98 ¢ 0.1250 25.8600 49.5017 -Impact.ttf 64 j 13.7692 51.4610 99 Z 0.0027 22.6245 46.1413 -Impact.ttf 64 j 13.7692 51.4610 100 > 8.1957 27.6670 29.1785 -Impact.ttf 64 j 13.7692 51.4610 101 ® 2.8972 43.1785 43.3035 -Impact.ttf 64 j 13.7692 51.4610 102 © 4.1125 43.1785 42.0000 -Impact.ttf 64 j 13.7692 51.4610 103 ] 0.0097 13.3942 46.1413 -Impact.ttf 64 j 13.7692 51.4610 104 é -1.5097 25.5600 47.5698 -Impact.ttf 64 j 13.7692 51.4610 105 z 8.4666 19.3198 37.8587 -Impact.ttf 64 j 13.7692 51.4610 106 _ 50.7674 32.1413 2.8378 -Impact.ttf 64 j 13.7692 51.4610 107 ¥ -0.1187 27.6250 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 1 t 2.7787 17.0878 43.1785 -Impact.ttf 65 ( 14.9285 46.1413 2 h 0.0000 25.8600 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 3 a 8.1473 24.6815 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 4 n 8.2176 25.8600 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 5 P -0.2113 25.1622 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 6 o 8.5619 25.5600 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 7 e 8.6218 25.5600 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 8 : 15.6192 8.6802 30.3570 -Impact.ttf 65 ( 14.9285 46.1413 9 r 8.4496 17.9105 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 10 l 0.1668 11.1622 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 11 i -0.0955 11.1622 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 12 1 -0.1626 19.5925 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 13 | 0.1909 5.8425 53.6430 -Impact.ttf 65 ( 14.9285 46.1413 14 N -0.0625 26.3407 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 15 f 0.1466 15.6593 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 16 g 8.4865 25.8600 44.3570 -Impact.ttf 65 ( 14.9285 46.1413 17 d 0.2008 25.8600 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 18 W 0.2411 46.2890 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 19 s 8.1871 23.5030 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 20 c 8.2917 24.6815 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 21 u 8.3242 25.8600 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 22 3 -0.8823 25.7680 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 23 ~ 15.4307 26.7885 12.8907 -Impact.ttf 65 ( 14.9285 46.1413 24 # 5.0614 34.6652 41.1215 -Impact.ttf 65 ( 14.9285 46.1413 25 O -1.0964 26.8215 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 26 ` -4.9937 15.1785 7.9267 -Impact.ttf 65 ( 14.9285 46.1413 27 @ -0.7316 43.1785 48.8040 -Impact.ttf 65 ( 14.9285 46.1413 28 F -0.2456 20.2675 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 29 S -0.7785 27.5192 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 30 p 8.5273 25.8600 43.1785 -Impact.ttf 65 ( 14.9285 46.1413 31 “ 0.0000 19.2175 14.9477 -Impact.ttf 65 ( 14.9285 46.1413 32 % -0.8785 37.9837 47.0198 -Impact.ttf 65 ( 14.9285 46.1413 33 £ -0.9017 28.2727 47.0198 -Impact.ttf 65 ( 14.9285 46.1413 34 . 36.8840 8.6802 9.3360 -Impact.ttf 65 ( 14.9285 46.1413 35 2 -0.8025 23.9837 47.0198 -Impact.ttf 65 ( 14.9285 46.1413 36 5 -0.2294 26.3407 47.0198 -Impact.ttf 65 ( 14.9285 46.1413 37 m 8.1142 40.4657 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 38 V 0.4264 31.0355 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 39 6 -0.6400 26.3407 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 40 w 8.1643 38.9680 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 41 T 0.0176 26.3407 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 42 M -0.2535 36.8052 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 43 G -0.9642 26.9465 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 44 b -0.2425 25.8600 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 45 9 -0.7771 26.3407 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 46 ; 15.6429 8.6802 36.1995 -Impact.ttf 65 ( 14.9285 46.1413 47 D -0.1014 26.9465 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 48 L -0.1009 18.8948 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 49 y 8.4164 27.3942 43.1785 -Impact.ttf 65 ( 14.9285 46.1413 50 ‘ -0.0542 8.4302 14.9477 -Impact.ttf 65 ( 14.9285 46.1413 51 \ -0.9678 23.9087 48.3733 -Impact.ttf 65 ( 14.9285 46.1413 52 R 0.1839 26.3407 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 53 < 8.2322 27.6670 29.1785 -Impact.ttf 65 ( 14.9285 46.1413 54 4 0.0895 28.6977 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 55 8 -0.8368 26.0407 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 56 0 -0.9097 26.3407 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 57 A 0.0018 31.5355 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 58 E 0.1794 20.4483 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 59 B 0.0626 26.9465 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 60 v 8.4137 26.8215 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 61 k -0.1839 25.7680 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 62 J -0.2869 16.2320 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 63 U -0.0000 26.8215 47.0198 -Impact.ttf 65 ( 14.9285 46.1413 64 j 0.1071 13.7692 51.4610 -Impact.ttf 65 ( 14.9285 46.1413 65 ( 0.1243 14.9285 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 66 7 -0.1871 22.3245 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 67 § -0.5815 25.6430 53.5180 -Impact.ttf 65 ( 14.9285 46.1413 68 $ -3.7583 26.8215 54.0680 -Impact.ttf 65 ( 14.9285 46.1413 69 € -0.9740 28.6058 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 70 / -0.9923 22.7302 48.3733 -Impact.ttf 65 ( 14.9285 46.1413 71 C -0.8615 26.9465 47.8983 -Impact.ttf 65 ( 14.9285 46.1413 72 * -0.2169 15.4705 13.7692 -Impact.ttf 65 ( 14.9285 46.1413 73 ” 0.2568 19.2175 14.9477 -Impact.ttf 65 ( 14.9285 46.1413 74 ? -0.9638 26.8215 47.0198 -Impact.ttf 65 ( 14.9285 46.1413 75 { -0.0097 19.1675 54.8215 -Impact.ttf 65 ( 14.9285 46.1413 76 } -0.1456 19.1675 54.8215 -Impact.ttf 65 ( 14.9285 46.1413 77 , 36.9021 8.4302 14.9477 -Impact.ttf 65 ( 14.9285 46.1413 78 I 0.0643 11.6430 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 79 ° -0.7446 18.0163 18.0163 -Impact.ttf 65 ( 14.9285 46.1413 80 K 0.1176 30.3570 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 81 H -0.1682 27.2192 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 82 q 8.2825 25.8600 43.1785 -Impact.ttf 65 ( 14.9285 46.1413 83 & 8.1452 33.5925 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 84 ’ 0.0102 8.4302 14.9477 -Impact.ttf 65 ( 14.9285 46.1413 85 [ 0.1353 13.3942 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 86 - 23.1959 14.8785 7.9267 -Impact.ttf 65 ( 14.9285 46.1413 87 Y -0.0538 27.6250 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 88 Q -0.8785 26.8215 52.3395 -Impact.ttf 65 ( 14.9285 46.1413 89 " 0.0839 19.7175 14.0000 -Impact.ttf 65 ( 14.9285 46.1413 90 ! 0.0357 12.8215 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 91 x 8.4257 25.1760 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 92 ) -0.0255 14.9285 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 93 = 14.8112 27.6670 16.7320 -Impact.ttf 65 ( 14.9285 46.1413 94 + 9.8028 27.1773 27.1773 -Impact.ttf 65 ( 14.9285 46.1413 95 X -0.1596 29.6400 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 96 » 9.7549 19.6198 32.7140 -Impact.ttf 65 ( 14.9285 46.1413 97 ' -0.0880 8.6802 14.0000 -Impact.ttf 65 ( 14.9285 46.1413 98 ¢ 0.4073 25.8600 49.5017 -Impact.ttf 65 ( 14.9285 46.1413 99 Z -0.1728 22.6245 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 100 > 8.4065 27.6670 29.1785 -Impact.ttf 65 ( 14.9285 46.1413 101 ® 2.9058 43.1785 43.3035 -Impact.ttf 65 ( 14.9285 46.1413 102 © 4.0458 43.1785 42.0000 -Impact.ttf 65 ( 14.9285 46.1413 103 ] -0.0857 13.3942 46.1413 -Impact.ttf 65 ( 14.9285 46.1413 104 é -1.3224 25.5600 47.5698 -Impact.ttf 65 ( 14.9285 46.1413 105 z 8.2655 19.3198 37.8587 -Impact.ttf 65 ( 14.9285 46.1413 106 _ 50.5455 32.1413 2.8378 -Impact.ttf 65 ( 14.9285 46.1413 107 ¥ 0.0955 27.6250 46.1413 -Impact.ttf 66 7 22.3245 46.1413 1 t 2.7641 17.0878 43.1785 -Impact.ttf 66 7 22.3245 46.1413 2 h -0.1529 25.8600 46.1413 -Impact.ttf 66 7 22.3245 46.1413 3 a 8.2339 24.6815 37.8587 -Impact.ttf 66 7 22.3245 46.1413 4 n 8.2909 25.8600 37.8587 -Impact.ttf 66 7 22.3245 46.1413 5 P 0.0097 25.1622 46.1413 -Impact.ttf 66 7 22.3245 46.1413 6 o 8.1681 25.5600 37.8587 -Impact.ttf 66 7 22.3245 46.1413 7 e 8.2825 25.5600 37.8587 -Impact.ttf 66 7 22.3245 46.1413 8 : 15.8200 8.6802 30.3570 -Impact.ttf 66 7 22.3245 46.1413 9 r 8.0569 17.9105 37.8587 -Impact.ttf 66 7 22.3245 46.1413 10 l -0.2085 11.1622 46.1413 -Impact.ttf 66 7 22.3245 46.1413 11 i 0.0357 11.1622 46.1413 -Impact.ttf 66 7 22.3245 46.1413 12 1 0.2095 19.5925 46.1413 -Impact.ttf 66 7 22.3245 46.1413 13 | 0.1116 5.8425 53.6430 -Impact.ttf 66 7 22.3245 46.1413 14 N 0.0649 26.3407 46.1413 -Impact.ttf 66 7 22.3245 46.1413 15 f -0.2040 15.6593 46.1413 -Impact.ttf 66 7 22.3245 46.1413 16 g 8.1374 25.8600 44.3570 -Impact.ttf 66 7 22.3245 46.1413 17 d -0.0417 25.8600 46.1413 -Impact.ttf 66 7 22.3245 46.1413 18 W -0.3203 46.2890 46.1413 -Impact.ttf 66 7 22.3245 46.1413 19 s 8.1941 23.5030 37.8587 -Impact.ttf 66 7 22.3245 46.1413 20 c 8.1945 24.6815 37.8587 -Impact.ttf 66 7 22.3245 46.1413 21 u 8.3126 25.8600 37.8587 -Impact.ttf 66 7 22.3245 46.1413 22 3 -1.2846 25.7680 47.8983 -Impact.ttf 66 7 22.3245 46.1413 23 ~ 15.3884 26.7885 12.8907 -Impact.ttf 66 7 22.3245 46.1413 24 # 5.0869 34.6652 41.1215 -Impact.ttf 66 7 22.3245 46.1413 25 O -1.0787 26.8215 47.8983 -Impact.ttf 66 7 22.3245 46.1413 26 ` -4.9172 15.1785 7.9267 -Impact.ttf 66 7 22.3245 46.1413 27 @ -0.8335 43.1785 48.8040 -Impact.ttf 66 7 22.3245 46.1413 28 F 0.2172 20.2675 46.1413 -Impact.ttf 66 7 22.3245 46.1413 29 S -1.0457 27.5192 47.8983 -Impact.ttf 66 7 22.3245 46.1413 30 p 8.1056 25.8600 43.1785 -Impact.ttf 66 7 22.3245 46.1413 31 “ 0.0742 19.2175 14.9477 -Impact.ttf 66 7 22.3245 46.1413 32 % -0.9077 37.9837 47.0198 -Impact.ttf 66 7 22.3245 46.1413 33 £ -0.8390 28.2727 47.0198 -Impact.ttf 66 7 22.3245 46.1413 34 . 36.8878 8.6802 9.3360 -Impact.ttf 66 7 22.3245 46.1413 35 2 -0.7099 23.9837 47.0198 -Impact.ttf 66 7 22.3245 46.1413 36 5 -0.0644 26.3407 47.0198 -Impact.ttf 66 7 22.3245 46.1413 37 m 8.2980 40.4657 37.8587 -Impact.ttf 66 7 22.3245 46.1413 38 V -0.4218 31.0355 46.1413 -Impact.ttf 66 7 22.3245 46.1413 39 6 -0.7043 26.3407 47.8983 -Impact.ttf 66 7 22.3245 46.1413 40 w 8.2825 38.9680 37.8587 -Impact.ttf 66 7 22.3245 46.1413 41 T -0.2243 26.3407 46.1413 -Impact.ttf 66 7 22.3245 46.1413 42 M -0.1196 36.8052 46.1413 -Impact.ttf 66 7 22.3245 46.1413 43 G -0.9624 26.9465 47.8983 -Impact.ttf 66 7 22.3245 46.1413 44 b 0.2868 25.8600 46.1413 -Impact.ttf 66 7 22.3245 46.1413 45 9 -1.1561 26.3407 47.8983 -Impact.ttf 66 7 22.3245 46.1413 46 ; 15.6888 8.6802 36.1995 -Impact.ttf 66 7 22.3245 46.1413 47 D 0.0784 26.9465 46.1413 -Impact.ttf 66 7 22.3245 46.1413 48 L 0.0298 18.8948 46.1413 -Impact.ttf 66 7 22.3245 46.1413 49 y 8.5990 27.3942 43.1785 -Impact.ttf 66 7 22.3245 46.1413 50 ‘ -0.1079 8.4302 14.9477 -Impact.ttf 66 7 22.3245 46.1413 51 \ -0.9580 23.9087 48.3733 -Impact.ttf 66 7 22.3245 46.1413 52 R 0.1262 26.3407 46.1413 -Impact.ttf 66 7 22.3245 46.1413 53 < 8.3943 27.6670 29.1785 -Impact.ttf 66 7 22.3245 46.1413 54 4 -0.1280 28.6977 46.1413 -Impact.ttf 66 7 22.3245 46.1413 55 8 -0.8785 26.0407 47.8983 -Impact.ttf 66 7 22.3245 46.1413 56 0 -0.6848 26.3407 47.8983 -Impact.ttf 66 7 22.3245 46.1413 57 A -0.5974 31.5355 46.1413 -Impact.ttf 66 7 22.3245 46.1413 58 E -0.2900 20.4483 46.1413 -Impact.ttf 66 7 22.3245 46.1413 59 B 0.0571 26.9465 46.1413 -Impact.ttf 66 7 22.3245 46.1413 60 v 7.8376 26.8215 37.8587 -Impact.ttf 66 7 22.3245 46.1413 61 k -0.0798 25.7680 46.1413 -Impact.ttf 66 7 22.3245 46.1413 62 J 0.0027 16.2320 46.1413 -Impact.ttf 66 7 22.3245 46.1413 63 U -0.0427 26.8215 47.0198 -Impact.ttf 66 7 22.3245 46.1413 64 j 0.0254 13.7692 51.4610 -Impact.ttf 66 7 22.3245 46.1413 65 ( -0.0774 14.9285 46.1413 -Impact.ttf 66 7 22.3245 46.1413 66 7 -0.2740 22.3245 46.1413 -Impact.ttf 66 7 22.3245 46.1413 67 § -0.9740 25.6430 53.5180 -Impact.ttf 66 7 22.3245 46.1413 68 $ -3.9038 26.8215 54.0680 -Impact.ttf 66 7 22.3245 46.1413 69 € -0.8084 28.6058 47.8983 -Impact.ttf 66 7 22.3245 46.1413 70 / -1.2954 22.7302 48.3733 -Impact.ttf 66 7 22.3245 46.1413 71 C -1.1307 26.9465 47.8983 -Impact.ttf 66 7 22.3245 46.1413 72 * 0.0487 15.4705 13.7692 -Impact.ttf 66 7 22.3245 46.1413 73 ” 0.2438 19.2175 14.9477 -Impact.ttf 66 7 22.3245 46.1413 74 ? -0.8688 26.8215 47.0198 -Impact.ttf 66 7 22.3245 46.1413 75 { 0.0089 19.1675 54.8215 -Impact.ttf 66 7 22.3245 46.1413 76 } 0.1683 19.1675 54.8215 -Impact.ttf 66 7 22.3245 46.1413 77 , 36.9261 8.4302 14.9477 -Impact.ttf 66 7 22.3245 46.1413 78 I -0.0330 11.6430 46.1413 -Impact.ttf 66 7 22.3245 46.1413 79 ° -1.1367 18.0163 18.0163 -Impact.ttf 66 7 22.3245 46.1413 80 K -0.0787 30.3570 46.1413 -Impact.ttf 66 7 22.3245 46.1413 81 H 0.0857 27.2192 46.1413 -Impact.ttf 66 7 22.3245 46.1413 82 q 8.2500 25.8600 43.1785 -Impact.ttf 66 7 22.3245 46.1413 83 & 8.4868 33.5925 37.8587 -Impact.ttf 66 7 22.3245 46.1413 84 ’ -0.0955 8.4302 14.9477 -Impact.ttf 66 7 22.3245 46.1413 85 [ -0.0857 13.3942 46.1413 -Impact.ttf 66 7 22.3245 46.1413 86 - 23.1161 14.8785 7.9267 -Impact.ttf 66 7 22.3245 46.1413 87 Y 0.1371 27.6250 46.1413 -Impact.ttf 66 7 22.3245 46.1413 88 Q -0.8906 26.8215 52.3395 -Impact.ttf 66 7 22.3245 46.1413 89 " 0.0644 19.7175 14.0000 -Impact.ttf 66 7 22.3245 46.1413 90 ! 0.1224 12.8215 46.1413 -Impact.ttf 66 7 22.3245 46.1413 91 x 8.3448 25.1760 37.8587 -Impact.ttf 66 7 22.3245 46.1413 92 ) 0.0056 14.9285 46.1413 -Impact.ttf 66 7 22.3245 46.1413 93 = 14.6982 27.6670 16.7320 -Impact.ttf 66 7 22.3245 46.1413 94 + 9.8384 27.1773 27.1773 -Impact.ttf 66 7 22.3245 46.1413 95 X -0.0871 29.6400 46.1413 -Impact.ttf 66 7 22.3245 46.1413 96 » 9.2937 19.6198 32.7140 -Impact.ttf 66 7 22.3245 46.1413 97 ' -0.0667 8.6802 14.0000 -Impact.ttf 66 7 22.3245 46.1413 98 ¢ -0.1290 25.8600 49.5017 -Impact.ttf 66 7 22.3245 46.1413 99 Z 0.1112 22.6245 46.1413 -Impact.ttf 66 7 22.3245 46.1413 100 > 8.2589 27.6670 29.1785 -Impact.ttf 66 7 22.3245 46.1413 101 ® 2.3170 43.1785 43.3035 -Impact.ttf 66 7 22.3245 46.1413 102 © 4.1974 43.1785 42.0000 -Impact.ttf 66 7 22.3245 46.1413 103 ] -0.0968 13.3942 46.1413 -Impact.ttf 66 7 22.3245 46.1413 104 é -1.3714 25.5600 47.5698 -Impact.ttf 66 7 22.3245 46.1413 105 z 8.2780 19.3198 37.8587 -Impact.ttf 66 7 22.3245 46.1413 106 _ 50.7281 32.1413 2.8378 -Impact.ttf 66 7 22.3245 46.1413 107 ¥ 0.4027 27.6250 46.1413 -Impact.ttf 67 § 25.6430 53.5180 1 t 3.9549 17.0878 43.1785 -Impact.ttf 67 § 25.6430 53.5180 2 h 0.7914 25.8600 46.1413 -Impact.ttf 67 § 25.6430 53.5180 3 a 9.3168 24.6815 37.8587 -Impact.ttf 67 § 25.6430 53.5180 4 n 9.2496 25.8600 37.8587 -Impact.ttf 67 § 25.6430 53.5180 5 P 0.7159 25.1622 46.1413 -Impact.ttf 67 § 25.6430 53.5180 6 o 9.1513 25.5600 37.8587 -Impact.ttf 67 § 25.6430 53.5180 7 e 9.3525 25.5600 37.8587 -Impact.ttf 67 § 25.6430 53.5180 8 : 16.4749 8.6802 30.3570 -Impact.ttf 67 § 25.6430 53.5180 9 r 9.2335 17.9105 37.8587 -Impact.ttf 67 § 25.6430 53.5180 10 l 0.7473 11.1622 46.1413 -Impact.ttf 67 § 25.6430 53.5180 11 i 0.9827 11.1622 46.1413 -Impact.ttf 67 § 25.6430 53.5180 12 1 0.8740 19.5925 46.1413 -Impact.ttf 67 § 25.6430 53.5180 13 | 0.9045 5.8425 53.6430 -Impact.ttf 67 § 25.6430 53.5180 14 N 0.7797 26.3407 46.1413 -Impact.ttf 67 § 25.6430 53.5180 15 f 0.7089 15.6593 46.1413 -Impact.ttf 67 § 25.6430 53.5180 16 g 9.1170 25.8600 44.3570 -Impact.ttf 67 § 25.6430 53.5180 17 d 0.8011 25.8600 46.1413 -Impact.ttf 67 § 25.6430 53.5180 18 W 1.0416 46.2890 46.1413 -Impact.ttf 67 § 25.6430 53.5180 19 s 9.2323 23.5030 37.8587 -Impact.ttf 67 § 25.6430 53.5180 20 c 9.5003 24.6815 37.8587 -Impact.ttf 67 § 25.6430 53.5180 21 u 9.1183 25.8600 37.8587 -Impact.ttf 67 § 25.6430 53.5180 22 3 -0.0257 25.7680 47.8983 -Impact.ttf 67 § 25.6430 53.5180 23 ~ 16.4279 26.7885 12.8907 -Impact.ttf 67 § 25.6430 53.5180 24 # 6.0591 34.6652 41.1215 -Impact.ttf 67 § 25.6430 53.5180 25 O 0.0347 26.8215 47.8983 -Impact.ttf 67 § 25.6430 53.5180 26 ` -4.1045 15.1785 7.9267 -Impact.ttf 67 § 25.6430 53.5180 27 @ -0.1686 43.1785 48.8040 -Impact.ttf 67 § 25.6430 53.5180 28 F 1.1450 20.2675 46.1413 -Impact.ttf 67 § 25.6430 53.5180 29 S -0.1371 27.5192 47.8983 -Impact.ttf 67 § 25.6430 53.5180 30 p 9.2297 25.8600 43.1785 -Impact.ttf 67 § 25.6430 53.5180 31 “ 0.8368 19.2175 14.9477 -Impact.ttf 67 § 25.6430 53.5180 32 % 0.0542 37.9837 47.0198 -Impact.ttf 67 § 25.6430 53.5180 33 £ -0.1970 28.2727 47.0198 -Impact.ttf 67 § 25.6430 53.5180 34 . 37.7649 8.6802 9.3360 -Impact.ttf 67 § 25.6430 53.5180 35 2 0.1613 23.9837 47.0198 -Impact.ttf 67 § 25.6430 53.5180 36 5 0.7469 26.3407 47.0198 -Impact.ttf 67 § 25.6430 53.5180 37 m 9.0032 40.4657 37.8587 -Impact.ttf 67 § 25.6430 53.5180 38 V 1.1626 31.0355 46.1413 -Impact.ttf 67 § 25.6430 53.5180 39 6 0.0956 26.3407 47.8983 -Impact.ttf 67 § 25.6430 53.5180 40 w 9.0941 38.9680 37.8587 -Impact.ttf 67 § 25.6430 53.5180 41 T 0.5857 26.3407 46.1413 -Impact.ttf 67 § 25.6430 53.5180 42 M 1.1723 36.8052 46.1413 -Impact.ttf 67 § 25.6430 53.5180 43 G -0.1224 26.9465 47.8983 -Impact.ttf 67 § 25.6430 53.5180 44 b 0.8882 25.8600 46.1413 -Impact.ttf 67 § 25.6430 53.5180 45 9 -0.1769 26.3407 47.8983 -Impact.ttf 67 § 25.6430 53.5180 46 ; 16.7786 8.6802 36.1995 -Impact.ttf 67 § 25.6430 53.5180 47 D 0.5690 26.9465 46.1413 -Impact.ttf 67 § 25.6430 53.5180 48 L 1.0597 18.8948 46.1413 -Impact.ttf 67 § 25.6430 53.5180 49 y 9.2352 27.3942 43.1785 -Impact.ttf 67 § 25.6430 53.5180 50 ‘ 0.9688 8.4302 14.9477 -Impact.ttf 67 § 25.6430 53.5180 51 \ -0.1694 23.9087 48.3733 -Impact.ttf 67 § 25.6430 53.5180 52 R 1.0579 26.3407 46.1413 -Impact.ttf 67 § 25.6430 53.5180 53 < 8.5767 27.6670 29.1785 -Impact.ttf 67 § 25.6430 53.5180 54 4 0.5777 28.6977 46.1413 -Impact.ttf 67 § 25.6430 53.5180 55 8 -0.0516 26.0407 47.8983 -Impact.ttf 67 § 25.6430 53.5180 56 0 0.0371 26.3407 47.8983 -Impact.ttf 67 § 25.6430 53.5180 57 A 0.8609 31.5355 46.1413 -Impact.ttf 67 § 25.6430 53.5180 58 E 0.7803 20.4483 46.1413 -Impact.ttf 67 § 25.6430 53.5180 59 B 1.0524 26.9465 46.1413 -Impact.ttf 67 § 25.6430 53.5180 60 v 9.3900 26.8215 37.8587 -Impact.ttf 67 § 25.6430 53.5180 61 k 0.6073 25.7680 46.1413 -Impact.ttf 67 § 25.6430 53.5180 62 J 0.9981 16.2320 46.1413 -Impact.ttf 67 § 25.6430 53.5180 63 U 0.6959 26.8215 47.0198 -Impact.ttf 67 § 25.6430 53.5180 64 j 0.4646 13.7692 51.4610 -Impact.ttf 67 § 25.6430 53.5180 65 ( 0.9240 14.9285 46.1413 -Impact.ttf 67 § 25.6430 53.5180 66 7 0.7914 22.3245 46.1413 -Impact.ttf 67 § 25.6430 53.5180 67 § -0.1497 25.6430 53.5180 -Impact.ttf 67 § 25.6430 53.5180 68 $ -3.0452 26.8215 54.0680 -Impact.ttf 67 § 25.6430 53.5180 69 € 0.1052 28.6058 47.8983 -Impact.ttf 67 § 25.6430 53.5180 70 / 0.0901 22.7302 48.3733 -Impact.ttf 67 § 25.6430 53.5180 71 C 0.0801 26.9465 47.8983 -Impact.ttf 67 § 25.6430 53.5180 72 * 0.8089 15.4705 13.7692 -Impact.ttf 67 § 25.6430 53.5180 73 ” 1.0013 19.2175 14.9477 -Impact.ttf 67 § 25.6430 53.5180 74 ? 0.1766 26.8215 47.0198 -Impact.ttf 67 § 25.6430 53.5180 75 { 1.1135 19.1675 54.8215 -Impact.ttf 67 § 25.6430 53.5180 76 } 0.6361 19.1675 54.8215 -Impact.ttf 67 § 25.6430 53.5180 77 , 37.8431 8.4302 14.9477 -Impact.ttf 67 § 25.6430 53.5180 78 I 1.0585 11.6430 46.1413 -Impact.ttf 67 § 25.6430 53.5180 79 ° -0.1301 18.0163 18.0163 -Impact.ttf 67 § 25.6430 53.5180 80 K 0.8225 30.3570 46.1413 -Impact.ttf 67 § 25.6430 53.5180 81 H 0.8960 27.2192 46.1413 -Impact.ttf 67 § 25.6430 53.5180 82 q 9.2991 25.8600 43.1785 -Impact.ttf 67 § 25.6430 53.5180 83 & 9.0683 33.5925 37.8587 -Impact.ttf 67 § 25.6430 53.5180 84 ’ 0.9202 8.4302 14.9477 -Impact.ttf 67 § 25.6430 53.5180 85 [ 0.7886 13.3942 46.1413 -Impact.ttf 67 § 25.6430 53.5180 86 - 23.8844 14.8785 7.9267 -Impact.ttf 67 § 25.6430 53.5180 87 Y 0.9036 27.6250 46.1413 -Impact.ttf 67 § 25.6430 53.5180 88 Q -0.0014 26.8215 52.3395 -Impact.ttf 67 § 25.6430 53.5180 89 " 0.7376 19.7175 14.0000 -Impact.ttf 67 § 25.6430 53.5180 90 ! 1.0139 12.8215 46.1413 -Impact.ttf 67 § 25.6430 53.5180 91 x 9.1814 25.1760 37.8587 -Impact.ttf 67 § 25.6430 53.5180 92 ) 0.7757 14.9285 46.1413 -Impact.ttf 67 § 25.6430 53.5180 93 = 15.9070 27.6670 16.7320 -Impact.ttf 67 § 25.6430 53.5180 94 + 11.0329 27.1773 27.1773 -Impact.ttf 67 § 25.6430 53.5180 95 X 0.6921 29.6400 46.1413 -Impact.ttf 67 § 25.6430 53.5180 96 » 10.5073 19.6198 32.7140 -Impact.ttf 67 § 25.6430 53.5180 97 ' 0.8434 8.6802 14.0000 -Impact.ttf 67 § 25.6430 53.5180 98 ¢ 1.0277 25.8600 49.5017 -Impact.ttf 67 § 25.6430 53.5180 99 Z 0.7757 22.6245 46.1413 -Impact.ttf 67 § 25.6430 53.5180 100 > 8.9935 27.6670 29.1785 -Impact.ttf 67 § 25.6430 53.5180 101 ® 3.7760 43.1785 43.3035 -Impact.ttf 67 § 25.6430 53.5180 102 © 5.0614 43.1785 42.0000 -Impact.ttf 67 § 25.6430 53.5180 103 ] 1.0023 13.3942 46.1413 -Impact.ttf 67 § 25.6430 53.5180 104 é -0.5930 25.5600 47.5698 -Impact.ttf 67 § 25.6430 53.5180 105 z 8.9844 19.3198 37.8587 -Impact.ttf 67 § 25.6430 53.5180 106 _ 51.5274 32.1413 2.8378 -Impact.ttf 67 § 25.6430 53.5180 107 ¥ 1.0579 27.6250 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 1 t 6.6643 17.0878 43.1785 -Impact.ttf 68 $ 26.8215 54.0680 2 h 3.8597 25.8600 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 3 a 11.7766 24.6815 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 4 n 12.1329 25.8600 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 5 P 3.4750 25.1622 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 6 o 11.7760 25.5600 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 7 e 12.1784 25.5600 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 8 : 19.6707 8.6802 30.3570 -Impact.ttf 68 $ 26.8215 54.0680 9 r 12.0027 17.9105 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 10 l 4.0625 11.1622 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 11 i 3.5659 11.1622 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 12 1 3.7224 19.5925 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 13 | 3.9357 5.8425 53.6430 -Impact.ttf 68 $ 26.8215 54.0680 14 N 3.8411 26.3407 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 15 f 3.7525 15.6593 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 16 g 12.5236 25.8600 44.3570 -Impact.ttf 68 $ 26.8215 54.0680 17 d 3.5250 25.8600 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 18 W 3.6196 46.2890 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 19 s 12.0841 23.5030 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 20 c 12.3234 24.6815 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 21 u 12.1635 25.8600 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 22 3 3.1518 25.7680 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 23 ~ 19.3891 26.7885 12.8907 -Impact.ttf 68 $ 26.8215 54.0680 24 # 8.9767 34.6652 41.1215 -Impact.ttf 68 $ 26.8215 54.0680 25 O 3.0339 26.8215 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 26 ` -1.3369 15.1785 7.9267 -Impact.ttf 68 $ 26.8215 54.0680 27 @ 2.9608 43.1785 48.8040 -Impact.ttf 68 $ 26.8215 54.0680 28 F 4.0124 20.2675 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 29 S 2.5835 27.5192 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 30 p 12.1884 25.8600 43.1785 -Impact.ttf 68 $ 26.8215 54.0680 31 “ 3.6581 19.2175 14.9477 -Impact.ttf 68 $ 26.8215 54.0680 32 % 2.9070 37.9837 47.0198 -Impact.ttf 68 $ 26.8215 54.0680 33 £ 3.4048 28.2727 47.0198 -Impact.ttf 68 $ 26.8215 54.0680 34 . 40.5337 8.6802 9.3360 -Impact.ttf 68 $ 26.8215 54.0680 35 2 3.1693 23.9837 47.0198 -Impact.ttf 68 $ 26.8215 54.0680 36 5 4.0033 26.3407 47.0198 -Impact.ttf 68 $ 26.8215 54.0680 37 m 12.1454 40.4657 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 38 V 3.8212 31.0355 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 39 6 3.1211 26.3407 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 40 w 11.9324 38.9680 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 41 T 3.9468 26.3407 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 42 M 3.6229 36.8052 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 43 G 2.6135 26.9465 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 44 b 3.6211 25.8600 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 45 9 3.0609 26.3407 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 46 ; 19.8271 8.6802 36.1995 -Impact.ttf 68 $ 26.8215 54.0680 47 D 3.8355 26.9465 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 48 L 3.6131 18.8948 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 49 y 11.9226 27.3942 43.1785 -Impact.ttf 68 $ 26.8215 54.0680 50 ‘ 3.4309 8.4302 14.9477 -Impact.ttf 68 $ 26.8215 54.0680 51 \ 2.8146 23.9087 48.3733 -Impact.ttf 68 $ 26.8215 54.0680 52 R 3.9893 26.3407 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 53 < 11.9500 27.6670 29.1785 -Impact.ttf 68 $ 26.8215 54.0680 54 4 3.9499 28.6977 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 55 8 3.0113 26.0407 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 56 0 2.8536 26.3407 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 57 A 3.9184 31.5355 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 58 E 3.7435 20.4483 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 59 B 3.6516 26.9465 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 60 v 12.1277 26.8215 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 61 k 3.7377 25.7680 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 62 J 3.9121 16.2320 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 63 U 3.8382 26.8215 47.0198 -Impact.ttf 68 $ 26.8215 54.0680 64 j 3.8272 13.7692 51.4610 -Impact.ttf 68 $ 26.8215 54.0680 65 ( 4.0478 14.9285 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 66 7 3.7071 22.3245 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 67 § 3.0260 25.6430 53.5180 -Impact.ttf 68 $ 26.8215 54.0680 68 $ 0.0974 26.8215 54.0680 -Impact.ttf 68 $ 26.8215 54.0680 69 € 2.8161 28.6058 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 70 / 2.6508 22.7302 48.3733 -Impact.ttf 68 $ 26.8215 54.0680 71 C 3.0517 26.9465 47.8983 -Impact.ttf 68 $ 26.8215 54.0680 72 * 3.7141 15.4705 13.7692 -Impact.ttf 68 $ 26.8215 54.0680 73 ” 3.9565 19.2175 14.9477 -Impact.ttf 68 $ 26.8215 54.0680 74 ? 2.8903 26.8215 47.0198 -Impact.ttf 68 $ 26.8215 54.0680 75 { 3.8309 19.1675 54.8215 -Impact.ttf 68 $ 26.8215 54.0680 76 } 3.7225 19.1675 54.8215 -Impact.ttf 68 $ 26.8215 54.0680 77 , 40.7330 8.4302 14.9477 -Impact.ttf 68 $ 26.8215 54.0680 78 I 3.7173 11.6430 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 79 ° 3.1818 18.0163 18.0163 -Impact.ttf 68 $ 26.8215 54.0680 80 K 3.6599 30.3570 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 81 H 3.5446 27.2192 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 82 q 12.0583 25.8600 43.1785 -Impact.ttf 68 $ 26.8215 54.0680 83 & 11.7793 33.5925 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 84 ’ 3.7724 8.4302 14.9477 -Impact.ttf 68 $ 26.8215 54.0680 85 [ 3.6757 13.3942 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 86 - 27.0092 14.8785 7.9267 -Impact.ttf 68 $ 26.8215 54.0680 87 Y 4.0196 27.6250 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 88 Q 2.7627 26.8215 52.3395 -Impact.ttf 68 $ 26.8215 54.0680 89 " 3.7272 19.7175 14.0000 -Impact.ttf 68 $ 26.8215 54.0680 90 ! 3.6329 12.8215 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 91 x 12.2311 25.1760 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 92 ) 3.7475 14.9285 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 93 = 18.8738 27.6670 16.7320 -Impact.ttf 68 $ 26.8215 54.0680 94 + 13.7605 27.1773 27.1773 -Impact.ttf 68 $ 26.8215 54.0680 95 X 3.6543 29.6400 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 96 » 13.8949 19.6198 32.7140 -Impact.ttf 68 $ 26.8215 54.0680 97 ' 3.8912 8.6802 14.0000 -Impact.ttf 68 $ 26.8215 54.0680 98 ¢ 3.9202 25.8600 49.5017 -Impact.ttf 68 $ 26.8215 54.0680 99 Z 3.6243 22.6245 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 100 > 11.7989 27.6670 29.1785 -Impact.ttf 68 $ 26.8215 54.0680 101 ® 6.8013 43.1785 43.3035 -Impact.ttf 68 $ 26.8215 54.0680 102 © 8.0047 43.1785 42.0000 -Impact.ttf 68 $ 26.8215 54.0680 103 ] 3.5645 13.3942 46.1413 -Impact.ttf 68 $ 26.8215 54.0680 104 é 2.3056 25.5600 47.5698 -Impact.ttf 68 $ 26.8215 54.0680 105 z 11.5845 19.3198 37.8587 -Impact.ttf 68 $ 26.8215 54.0680 106 _ 54.3866 32.1413 2.8378 -Impact.ttf 68 $ 26.8215 54.0680 107 ¥ 3.7460 27.6250 46.1413 -Impact.ttf 69 € 28.6058 47.8983 1 t 3.8154 17.0878 43.1785 -Impact.ttf 69 € 28.6058 47.8983 2 h 0.8803 25.8600 46.1413 -Impact.ttf 69 € 28.6058 47.8983 3 a 9.1628 24.6815 37.8587 -Impact.ttf 69 € 28.6058 47.8983 4 n 9.4887 25.8600 37.8587 -Impact.ttf 69 € 28.6058 47.8983 5 P 1.0124 25.1622 46.1413 -Impact.ttf 69 € 28.6058 47.8983 6 o 9.2551 25.5600 37.8587 -Impact.ttf 69 € 28.6058 47.8983 7 e 8.8185 25.5600 37.8587 -Impact.ttf 69 € 28.6058 47.8983 8 : 16.8213 8.6802 30.3570 -Impact.ttf 69 € 28.6058 47.8983 9 r 9.1253 17.9105 37.8587 -Impact.ttf 69 € 28.6058 47.8983 10 l 1.0943 11.1622 46.1413 -Impact.ttf 69 € 28.6058 47.8983 11 i 0.9337 11.1622 46.1413 -Impact.ttf 69 € 28.6058 47.8983 12 1 0.9642 19.5925 46.1413 -Impact.ttf 69 € 28.6058 47.8983 13 | 0.8368 5.8425 53.6430 -Impact.ttf 69 € 28.6058 47.8983 14 N 0.7567 26.3407 46.1413 -Impact.ttf 69 € 28.6058 47.8983 15 f 1.0931 15.6593 46.1413 -Impact.ttf 69 € 28.6058 47.8983 16 g 9.4705 25.8600 44.3570 -Impact.ttf 69 € 28.6058 47.8983 17 d 1.0855 25.8600 46.1413 -Impact.ttf 69 € 28.6058 47.8983 18 W 1.0682 46.2890 46.1413 -Impact.ttf 69 € 28.6058 47.8983 19 s 9.0167 23.5030 37.8587 -Impact.ttf 69 € 28.6058 47.8983 20 c 9.2288 24.6815 37.8587 -Impact.ttf 69 € 28.6058 47.8983 21 u 9.1780 25.8600 37.8587 -Impact.ttf 69 € 28.6058 47.8983 22 3 -0.1492 25.7680 47.8983 -Impact.ttf 69 € 28.6058 47.8983 23 ~ 16.4171 26.7885 12.8907 -Impact.ttf 69 € 28.6058 47.8983 24 # 5.8779 34.6652 41.1215 -Impact.ttf 69 € 28.6058 47.8983 25 O -0.1441 26.8215 47.8983 -Impact.ttf 69 € 28.6058 47.8983 26 ` -4.3024 15.1785 7.9267 -Impact.ttf 69 € 28.6058 47.8983 27 @ 0.1909 43.1785 48.8040 -Impact.ttf 69 € 28.6058 47.8983 28 F 0.8400 20.2675 46.1413 -Impact.ttf 69 € 28.6058 47.8983 29 S -0.0070 27.5192 47.8983 -Impact.ttf 69 € 28.6058 47.8983 30 p 9.1513 25.8600 43.1785 -Impact.ttf 69 € 28.6058 47.8983 31 “ 0.9981 19.2175 14.9477 -Impact.ttf 69 € 28.6058 47.8983 32 % -0.0524 37.9837 47.0198 -Impact.ttf 69 € 28.6058 47.8983 33 £ -0.2508 28.2727 47.0198 -Impact.ttf 69 € 28.6058 47.8983 34 . 37.8590 8.6802 9.3360 -Impact.ttf 69 € 28.6058 47.8983 35 2 -0.1269 23.9837 47.0198 -Impact.ttf 69 € 28.6058 47.8983 36 5 0.8642 26.3407 47.0198 -Impact.ttf 69 € 28.6058 47.8983 37 m 9.1086 40.4657 37.8587 -Impact.ttf 69 € 28.6058 47.8983 38 V 0.8368 31.0355 46.1413 -Impact.ttf 69 € 28.6058 47.8983 39 6 0.3347 26.3407 47.8983 -Impact.ttf 69 € 28.6058 47.8983 40 w 9.2801 38.9680 37.8587 -Impact.ttf 69 € 28.6058 47.8983 41 T 0.9767 26.3407 46.1413 -Impact.ttf 69 € 28.6058 47.8983 42 M 1.1810 36.8052 46.1413 -Impact.ttf 69 € 28.6058 47.8983 43 G -0.1826 26.9465 47.8983 -Impact.ttf 69 € 28.6058 47.8983 44 b 0.8460 25.8600 46.1413 -Impact.ttf 69 € 28.6058 47.8983 45 9 -0.1488 26.3407 47.8983 -Impact.ttf 69 € 28.6058 47.8983 46 ; 16.6555 8.6802 36.1995 -Impact.ttf 69 € 28.6058 47.8983 47 D 0.7686 26.9465 46.1413 -Impact.ttf 69 € 28.6058 47.8983 48 L 0.9039 18.8948 46.1413 -Impact.ttf 69 € 28.6058 47.8983 49 y 9.1522 27.3942 43.1785 -Impact.ttf 69 € 28.6058 47.8983 50 ‘ 0.8498 8.4302 14.9477 -Impact.ttf 69 € 28.6058 47.8983 51 \ -0.4748 23.9087 48.3733 -Impact.ttf 69 € 28.6058 47.8983 52 R 0.7816 26.3407 46.1413 -Impact.ttf 69 € 28.6058 47.8983 53 < 8.9952 27.6670 29.1785 -Impact.ttf 69 € 28.6058 47.8983 54 4 0.9053 28.6977 46.1413 -Impact.ttf 69 € 28.6058 47.8983 55 8 -0.3379 26.0407 47.8983 -Impact.ttf 69 € 28.6058 47.8983 56 0 -0.1969 26.3407 47.8983 -Impact.ttf 69 € 28.6058 47.8983 57 A 1.2622 31.5355 46.1413 -Impact.ttf 69 € 28.6058 47.8983 58 E 0.7960 20.4483 46.1413 -Impact.ttf 69 € 28.6058 47.8983 59 B 1.2483 26.9465 46.1413 -Impact.ttf 69 € 28.6058 47.8983 60 v 9.0327 26.8215 37.8587 -Impact.ttf 69 € 28.6058 47.8983 61 k 1.0793 25.7680 46.1413 -Impact.ttf 69 € 28.6058 47.8983 62 J 0.7358 16.2320 46.1413 -Impact.ttf 69 € 28.6058 47.8983 63 U 1.2962 26.8215 47.0198 -Impact.ttf 69 € 28.6058 47.8983 64 j 1.1293 13.7692 51.4610 -Impact.ttf 69 € 28.6058 47.8983 65 ( 1.1111 14.9285 46.1413 -Impact.ttf 69 € 28.6058 47.8983 66 7 0.8757 22.3245 46.1413 -Impact.ttf 69 € 28.6058 47.8983 67 § 0.0968 25.6430 53.5180 -Impact.ttf 69 € 28.6058 47.8983 68 $ -2.8318 26.8215 54.0680 -Impact.ttf 69 € 28.6058 47.8983 69 € -0.0871 28.6058 47.8983 -Impact.ttf 69 € 28.6058 47.8983 70 / -0.0894 22.7302 48.3733 -Impact.ttf 69 € 28.6058 47.8983 71 C -0.1905 26.9465 47.8983 -Impact.ttf 69 € 28.6058 47.8983 72 * 0.8071 15.4705 13.7692 -Impact.ttf 69 € 28.6058 47.8983 73 ” 0.8484 19.2175 14.9477 -Impact.ttf 69 € 28.6058 47.8983 74 ? 0.3157 26.8215 47.0198 -Impact.ttf 69 € 28.6058 47.8983 75 { 0.9559 19.1675 54.8215 -Impact.ttf 69 € 28.6058 47.8983 76 } 1.0866 19.1675 54.8215 -Impact.ttf 69 € 28.6058 47.8983 77 , 37.6994 8.4302 14.9477 -Impact.ttf 69 € 28.6058 47.8983 78 I 0.9495 11.6430 46.1413 -Impact.ttf 69 € 28.6058 47.8983 79 ° 0.1254 18.0163 18.0163 -Impact.ttf 69 € 28.6058 47.8983 80 K 0.9063 30.3570 46.1413 -Impact.ttf 69 € 28.6058 47.8983 81 H 1.0768 27.2192 46.1413 -Impact.ttf 69 € 28.6058 47.8983 82 q 9.1495 25.8600 43.1785 -Impact.ttf 69 € 28.6058 47.8983 83 & 9.0058 33.5925 37.8587 -Impact.ttf 69 € 28.6058 47.8983 84 ’ 0.7873 8.4302 14.9477 -Impact.ttf 69 € 28.6058 47.8983 85 [ 0.7584 13.3942 46.1413 -Impact.ttf 69 € 28.6058 47.8983 86 - 23.8046 14.8785 7.9267 -Impact.ttf 69 € 28.6058 47.8983 87 Y 1.1283 27.6250 46.1413 -Impact.ttf 69 € 28.6058 47.8983 88 Q -0.2132 26.8215 52.3395 -Impact.ttf 69 € 28.6058 47.8983 89 " 0.5763 19.7175 14.0000 -Impact.ttf 69 € 28.6058 47.8983 90 ! 0.7955 12.8215 46.1413 -Impact.ttf 69 € 28.6058 47.8983 91 x 9.4363 25.1760 37.8587 -Impact.ttf 69 € 28.6058 47.8983 92 ) 0.7275 14.9285 46.1413 -Impact.ttf 69 € 28.6058 47.8983 93 = 15.6400 27.6670 16.7320 -Impact.ttf 69 € 28.6058 47.8983 94 + 10.6988 27.1773 27.1773 -Impact.ttf 69 € 28.6058 47.8983 95 X 0.9174 29.6400 46.1413 -Impact.ttf 69 € 28.6058 47.8983 96 » 10.2492 19.6198 32.7140 -Impact.ttf 69 € 28.6058 47.8983 97 ' 1.0054 8.6802 14.0000 -Impact.ttf 69 € 28.6058 47.8983 98 ¢ 1.0628 25.8600 49.5017 -Impact.ttf 69 € 28.6058 47.8983 99 Z 0.7928 22.6245 46.1413 -Impact.ttf 69 € 28.6058 47.8983 100 > 8.9664 27.6670 29.1785 -Impact.ttf 69 € 28.6058 47.8983 101 ® 3.4433 43.1785 43.3035 -Impact.ttf 69 € 28.6058 47.8983 102 © 4.9698 43.1785 42.0000 -Impact.ttf 69 € 28.6058 47.8983 103 ] 0.8400 13.3942 46.1413 -Impact.ttf 69 € 28.6058 47.8983 104 é -0.5044 25.5600 47.5698 -Impact.ttf 69 € 28.6058 47.8983 105 z 9.0947 19.3198 37.8587 -Impact.ttf 69 € 28.6058 47.8983 106 _ 51.5449 32.1413 2.8378 -Impact.ttf 69 € 28.6058 47.8983 107 ¥ 0.9448 27.6250 46.1413 -Impact.ttf 70 / 22.7302 48.3733 1 t 3.8713 17.0878 43.1785 -Impact.ttf 70 / 22.7302 48.3733 2 h 0.9696 25.8600 46.1413 -Impact.ttf 70 / 22.7302 48.3733 3 a 9.4315 24.6815 37.8587 -Impact.ttf 70 / 22.7302 48.3733 4 n 9.0223 25.8600 37.8587 -Impact.ttf 70 / 22.7302 48.3733 5 P 0.8181 25.1622 46.1413 -Impact.ttf 70 / 22.7302 48.3733 6 o 9.2618 25.5600 37.8587 -Impact.ttf 70 / 22.7302 48.3733 7 e 9.0709 25.5600 37.8587 -Impact.ttf 70 / 22.7302 48.3733 8 : 16.8262 8.6802 30.3570 -Impact.ttf 70 / 22.7302 48.3733 9 r 9.5998 17.9105 37.8587 -Impact.ttf 70 / 22.7302 48.3733 10 l 1.2193 11.1622 46.1413 -Impact.ttf 70 / 22.7302 48.3733 11 i 0.8696 11.1622 46.1413 -Impact.ttf 70 / 22.7302 48.3733 12 1 0.8881 19.5925 46.1413 -Impact.ttf 70 / 22.7302 48.3733 13 | 0.8208 5.8425 53.6430 -Impact.ttf 70 / 22.7302 48.3733 14 N 0.8909 26.3407 46.1413 -Impact.ttf 70 / 22.7302 48.3733 15 f 1.1406 15.6593 46.1413 -Impact.ttf 70 / 22.7302 48.3733 16 g 9.4143 25.8600 44.3570 -Impact.ttf 70 / 22.7302 48.3733 17 d 0.8773 25.8600 46.1413 -Impact.ttf 70 / 22.7302 48.3733 18 W 1.1569 46.2890 46.1413 -Impact.ttf 70 / 22.7302 48.3733 19 s 9.1678 23.5030 37.8587 -Impact.ttf 70 / 22.7302 48.3733 20 c 9.3717 24.6815 37.8587 -Impact.ttf 70 / 22.7302 48.3733 21 u 9.4176 25.8600 37.8587 -Impact.ttf 70 / 22.7302 48.3733 22 3 0.2397 25.7680 47.8983 -Impact.ttf 70 / 22.7302 48.3733 23 ~ 16.1820 26.7885 12.8907 -Impact.ttf 70 / 22.7302 48.3733 24 # 6.3391 34.6652 41.1215 -Impact.ttf 70 / 22.7302 48.3733 25 O 0.0110 26.8215 47.8983 -Impact.ttf 70 / 22.7302 48.3733 26 ` -3.9318 15.1785 7.9267 -Impact.ttf 70 / 22.7302 48.3733 27 @ 0.3145 43.1785 48.8040 -Impact.ttf 70 / 22.7302 48.3733 28 F 1.2231 20.2675 46.1413 -Impact.ttf 70 / 22.7302 48.3733 29 S 0.3159 27.5192 47.8983 -Impact.ttf 70 / 22.7302 48.3733 30 p 9.1404 25.8600 43.1785 -Impact.ttf 70 / 22.7302 48.3733 31 “ 0.9054 19.2175 14.9477 -Impact.ttf 70 / 22.7302 48.3733 32 % 0.3678 37.9837 47.0198 -Impact.ttf 70 / 22.7302 48.3733 33 £ 0.1288 28.2727 47.0198 -Impact.ttf 70 / 22.7302 48.3733 34 . 37.3554 8.6802 9.3360 -Impact.ttf 70 / 22.7302 48.3733 35 2 0.2422 23.9837 47.0198 -Impact.ttf 70 / 22.7302 48.3733 36 5 0.8904 26.3407 47.0198 -Impact.ttf 70 / 22.7302 48.3733 37 m 9.2965 40.4657 37.8587 -Impact.ttf 70 / 22.7302 48.3733 38 V 1.1007 31.0355 46.1413 -Impact.ttf 70 / 22.7302 48.3733 39 6 0.1536 26.3407 47.8983 -Impact.ttf 70 / 22.7302 48.3733 40 w 9.5900 38.9680 37.8587 -Impact.ttf 70 / 22.7302 48.3733 41 T 0.9793 26.3407 46.1413 -Impact.ttf 70 / 22.7302 48.3733 42 M 0.8214 36.8052 46.1413 -Impact.ttf 70 / 22.7302 48.3733 43 G 0.1746 26.9465 47.8983 -Impact.ttf 70 / 22.7302 48.3733 44 b 0.8273 25.8600 46.1413 -Impact.ttf 70 / 22.7302 48.3733 45 9 0.0377 26.3407 47.8983 -Impact.ttf 70 / 22.7302 48.3733 46 ; 16.7695 8.6802 36.1995 -Impact.ttf 70 / 22.7302 48.3733 47 D 0.9269 26.9465 46.1413 -Impact.ttf 70 / 22.7302 48.3733 48 L 1.1003 18.8948 46.1413 -Impact.ttf 70 / 22.7302 48.3733 49 y 9.5011 27.3942 43.1785 -Impact.ttf 70 / 22.7302 48.3733 50 ‘ 1.0650 8.4302 14.9477 -Impact.ttf 70 / 22.7302 48.3733 51 \ -0.0357 23.9087 48.3733 -Impact.ttf 70 / 22.7302 48.3733 52 R 0.9483 26.3407 46.1413 -Impact.ttf 70 / 22.7302 48.3733 53 < 9.1923 27.6670 29.1785 -Impact.ttf 70 / 22.7302 48.3733 54 4 0.7981 28.6977 46.1413 -Impact.ttf 70 / 22.7302 48.3733 55 8 0.2050 26.0407 47.8983 -Impact.ttf 70 / 22.7302 48.3733 56 0 0.0125 26.3407 47.8983 -Impact.ttf 70 / 22.7302 48.3733 57 A 0.9223 31.5355 46.1413 -Impact.ttf 70 / 22.7302 48.3733 58 E 0.9121 20.4483 46.1413 -Impact.ttf 70 / 22.7302 48.3733 59 B 1.0321 26.9465 46.1413 -Impact.ttf 70 / 22.7302 48.3733 60 v 9.5344 26.8215 37.8587 -Impact.ttf 70 / 22.7302 48.3733 61 k 0.9423 25.7680 46.1413 -Impact.ttf 70 / 22.7302 48.3733 62 J 1.0237 16.2320 46.1413 -Impact.ttf 70 / 22.7302 48.3733 63 U 1.1934 26.8215 47.0198 -Impact.ttf 70 / 22.7302 48.3733 64 j 0.8909 13.7692 51.4610 -Impact.ttf 70 / 22.7302 48.3733 65 ( 1.0021 14.9285 46.1413 -Impact.ttf 70 / 22.7302 48.3733 66 7 1.1152 22.3245 46.1413 -Impact.ttf 70 / 22.7302 48.3733 67 § 0.2664 25.6430 53.5180 -Impact.ttf 70 / 22.7302 48.3733 68 $ -2.8247 26.8215 54.0680 -Impact.ttf 70 / 22.7302 48.3733 69 € 0.2236 28.6058 47.8983 -Impact.ttf 70 / 22.7302 48.3733 70 / 0.1783 22.7302 48.3733 -Impact.ttf 70 / 22.7302 48.3733 71 C 0.2732 26.9465 47.8983 -Impact.ttf 70 / 22.7302 48.3733 72 * 1.6188 15.4705 13.7692 -Impact.ttf 70 / 22.7302 48.3733 73 ” 0.9938 19.2175 14.9477 -Impact.ttf 70 / 22.7302 48.3733 74 ? 0.2426 26.8215 47.0198 -Impact.ttf 70 / 22.7302 48.3733 75 { 1.1791 19.1675 54.8215 -Impact.ttf 70 / 22.7302 48.3733 76 } 1.0962 19.1675 54.8215 -Impact.ttf 70 / 22.7302 48.3733 77 , 38.0895 8.4302 14.9477 -Impact.ttf 70 / 22.7302 48.3733 78 I 1.1179 11.6430 46.1413 -Impact.ttf 70 / 22.7302 48.3733 79 ° -0.0506 18.0163 18.0163 -Impact.ttf 70 / 22.7302 48.3733 80 K 0.7995 30.3570 46.1413 -Impact.ttf 70 / 22.7302 48.3733 81 H 1.2291 27.2192 46.1413 -Impact.ttf 70 / 22.7302 48.3733 82 q 9.4446 25.8600 43.1785 -Impact.ttf 70 / 22.7302 48.3733 83 & 9.4245 33.5925 37.8587 -Impact.ttf 70 / 22.7302 48.3733 84 ’ 1.0424 8.4302 14.9477 -Impact.ttf 70 / 22.7302 48.3733 85 [ 1.1160 13.3942 46.1413 -Impact.ttf 70 / 22.7302 48.3733 86 - 24.1471 14.8785 7.9267 -Impact.ttf 70 / 22.7302 48.3733 87 Y 1.1049 27.6250 46.1413 -Impact.ttf 70 / 22.7302 48.3733 88 Q 0.3159 26.8215 52.3395 -Impact.ttf 70 / 22.7302 48.3733 89 " 1.0564 19.7175 14.0000 -Impact.ttf 70 / 22.7302 48.3733 90 ! 1.1892 12.8215 46.1413 -Impact.ttf 70 / 22.7302 48.3733 91 x 9.2091 25.1760 37.8587 -Impact.ttf 70 / 22.7302 48.3733 92 ) 0.9580 14.9285 46.1413 -Impact.ttf 70 / 22.7302 48.3733 93 = 15.7934 27.6670 16.7320 -Impact.ttf 70 / 22.7302 48.3733 94 + 11.0090 27.1773 27.1773 -Impact.ttf 70 / 22.7302 48.3733 95 X 0.9150 29.6400 46.1413 -Impact.ttf 70 / 22.7302 48.3733 96 » 10.7869 19.6198 32.7140 -Impact.ttf 70 / 22.7302 48.3733 97 ' 1.1309 8.6802 14.0000 -Impact.ttf 70 / 22.7302 48.3733 98 ¢ 1.0914 25.8600 49.5017 -Impact.ttf 70 / 22.7302 48.3733 99 Z 1.3914 22.6245 46.1413 -Impact.ttf 70 / 22.7302 48.3733 100 > 9.1563 27.6670 29.1785 -Impact.ttf 70 / 22.7302 48.3733 101 ® 4.1077 43.1785 43.3035 -Impact.ttf 70 / 22.7302 48.3733 102 © 5.0905 43.1785 42.0000 -Impact.ttf 70 / 22.7302 48.3733 103 ] 1.2186 13.3942 46.1413 -Impact.ttf 70 / 22.7302 48.3733 104 é -0.3554 25.5600 47.5698 -Impact.ttf 70 / 22.7302 48.3733 105 z 9.3959 19.3198 37.8587 -Impact.ttf 70 / 22.7302 48.3733 106 _ 51.8580 32.1413 2.8378 -Impact.ttf 70 / 22.7302 48.3733 107 ¥ 0.9580 27.6250 46.1413 -Impact.ttf 71 C 26.9465 47.8983 1 t 3.9367 17.0878 43.1785 -Impact.ttf 71 C 26.9465 47.8983 2 h 1.0468 25.8600 46.1413 -Impact.ttf 71 C 26.9465 47.8983 3 a 9.0911 24.6815 37.8587 -Impact.ttf 71 C 26.9465 47.8983 4 n 8.9002 25.8600 37.8587 -Impact.ttf 71 C 26.9465 47.8983 5 P 0.9977 25.1622 46.1413 -Impact.ttf 71 C 26.9465 47.8983 6 o 9.3376 25.5600 37.8587 -Impact.ttf 71 C 26.9465 47.8983 7 e 8.9529 25.5600 37.8587 -Impact.ttf 71 C 26.9465 47.8983 8 : 16.5603 8.6802 30.3570 -Impact.ttf 71 C 26.9465 47.8983 9 r 9.3366 17.9105 37.8587 -Impact.ttf 71 C 26.9465 47.8983 10 l 0.7616 11.1622 46.1413 -Impact.ttf 71 C 26.9465 47.8983 11 i 0.8887 11.1622 46.1413 -Impact.ttf 71 C 26.9465 47.8983 12 1 0.7571 19.5925 46.1413 -Impact.ttf 71 C 26.9465 47.8983 13 | 0.9729 5.8425 53.6430 -Impact.ttf 71 C 26.9465 47.8983 14 N 1.0545 26.3407 46.1413 -Impact.ttf 71 C 26.9465 47.8983 15 f 1.0551 15.6593 46.1413 -Impact.ttf 71 C 26.9465 47.8983 16 g 8.9816 25.8600 44.3570 -Impact.ttf 71 C 26.9465 47.8983 17 d 0.6250 25.8600 46.1413 -Impact.ttf 71 C 26.9465 47.8983 18 W 0.8979 46.2890 46.1413 -Impact.ttf 71 C 26.9465 47.8983 19 s 9.2787 23.5030 37.8587 -Impact.ttf 71 C 26.9465 47.8983 20 c 9.5216 24.6815 37.8587 -Impact.ttf 71 C 26.9465 47.8983 21 u 9.2202 25.8600 37.8587 -Impact.ttf 71 C 26.9465 47.8983 22 3 0.1771 25.7680 47.8983 -Impact.ttf 71 C 26.9465 47.8983 23 ~ 16.2707 26.7885 12.8907 -Impact.ttf 71 C 26.9465 47.8983 24 # 5.9552 34.6652 41.1215 -Impact.ttf 71 C 26.9465 47.8983 25 O 0.0602 26.8215 47.8983 -Impact.ttf 71 C 26.9465 47.8983 26 ` -4.0901 15.1785 7.9267 -Impact.ttf 71 C 26.9465 47.8983 27 @ -0.1911 43.1785 48.8040 -Impact.ttf 71 C 26.9465 47.8983 28 F 0.8104 20.2675 46.1413 -Impact.ttf 71 C 26.9465 47.8983 29 S -0.3055 27.5192 47.8983 -Impact.ttf 71 C 26.9465 47.8983 30 p 9.2499 25.8600 43.1785 -Impact.ttf 71 C 26.9465 47.8983 31 “ 1.0185 19.2175 14.9477 -Impact.ttf 71 C 26.9465 47.8983 32 % -0.1966 37.9837 47.0198 -Impact.ttf 71 C 26.9465 47.8983 33 £ -0.1399 28.2727 47.0198 -Impact.ttf 71 C 26.9465 47.8983 34 . 37.5410 8.6802 9.3360 -Impact.ttf 71 C 26.9465 47.8983 35 2 -0.2178 23.9837 47.0198 -Impact.ttf 71 C 26.9465 47.8983 36 5 0.7127 26.3407 47.0198 -Impact.ttf 71 C 26.9465 47.8983 37 m 9.2872 40.4657 37.8587 -Impact.ttf 71 C 26.9465 47.8983 38 V 0.6204 31.0355 46.1413 -Impact.ttf 71 C 26.9465 47.8983 39 6 -0.0395 26.3407 47.8983 -Impact.ttf 71 C 26.9465 47.8983 40 w 9.1842 38.9680 37.8587 -Impact.ttf 71 C 26.9465 47.8983 41 T 0.7680 26.3407 46.1413 -Impact.ttf 71 C 26.9465 47.8983 42 M 0.7140 36.8052 46.1413 -Impact.ttf 71 C 26.9465 47.8983 43 G -0.1071 26.9465 47.8983 -Impact.ttf 71 C 26.9465 47.8983 44 b 0.8312 25.8600 46.1413 -Impact.ttf 71 C 26.9465 47.8983 45 9 -0.2081 26.3407 47.8983 -Impact.ttf 71 C 26.9465 47.8983 46 ; 16.5381 8.6802 36.1995 -Impact.ttf 71 C 26.9465 47.8983 47 D 0.9527 26.9465 46.1413 -Impact.ttf 71 C 26.9465 47.8983 48 L 0.8928 18.8948 46.1413 -Impact.ttf 71 C 26.9465 47.8983 49 y 9.1040 27.3942 43.1785 -Impact.ttf 71 C 26.9465 47.8983 50 ‘ 0.8785 8.4302 14.9477 -Impact.ttf 71 C 26.9465 47.8983 51 \ -0.4720 23.9087 48.3733 -Impact.ttf 71 C 26.9465 47.8983 52 R 1.0512 26.3407 46.1413 -Impact.ttf 71 C 26.9465 47.8983 53 < 8.8164 27.6670 29.1785 -Impact.ttf 71 C 26.9465 47.8983 54 4 1.0496 28.6977 46.1413 -Impact.ttf 71 C 26.9465 47.8983 55 8 0.0013 26.0407 47.8983 -Impact.ttf 71 C 26.9465 47.8983 56 0 -0.0871 26.3407 47.8983 -Impact.ttf 71 C 26.9465 47.8983 57 A 0.5755 31.5355 46.1413 -Impact.ttf 71 C 26.9465 47.8983 58 E 0.9481 20.4483 46.1413 -Impact.ttf 71 C 26.9465 47.8983 59 B 0.7023 26.9465 46.1413 -Impact.ttf 71 C 26.9465 47.8983 60 v 9.2292 26.8215 37.8587 -Impact.ttf 71 C 26.9465 47.8983 61 k 0.7733 25.7680 46.1413 -Impact.ttf 71 C 26.9465 47.8983 62 J 1.0457 16.2320 46.1413 -Impact.ttf 71 C 26.9465 47.8983 63 U 0.6746 26.8215 47.0198 -Impact.ttf 71 C 26.9465 47.8983 64 j 0.8390 13.7692 51.4610 -Impact.ttf 71 C 26.9465 47.8983 65 ( 0.8089 14.9285 46.1413 -Impact.ttf 71 C 26.9465 47.8983 66 7 1.1338 22.3245 46.1413 -Impact.ttf 71 C 26.9465 47.8983 67 § -0.3235 25.6430 53.5180 -Impact.ttf 71 C 26.9465 47.8983 68 $ -3.2578 26.8215 54.0680 -Impact.ttf 71 C 26.9465 47.8983 69 € 0.1067 28.6058 47.8983 -Impact.ttf 71 C 26.9465 47.8983 70 / -0.4252 22.7302 48.3733 -Impact.ttf 71 C 26.9465 47.8983 71 C 0.1097 26.9465 47.8983 -Impact.ttf 71 C 26.9465 47.8983 72 * 0.8400 15.4705 13.7692 -Impact.ttf 71 C 26.9465 47.8983 73 ” 1.0671 19.2175 14.9477 -Impact.ttf 71 C 26.9465 47.8983 74 ? -0.1085 26.8215 47.0198 -Impact.ttf 71 C 26.9465 47.8983 75 { 0.8275 19.1675 54.8215 -Impact.ttf 71 C 26.9465 47.8983 76 } 0.6430 19.1675 54.8215 -Impact.ttf 71 C 26.9465 47.8983 77 , 37.9775 8.4302 14.9477 -Impact.ttf 71 C 26.9465 47.8983 78 I 0.9429 11.6430 46.1413 -Impact.ttf 71 C 26.9465 47.8983 79 ° -0.0395 18.0163 18.0163 -Impact.ttf 71 C 26.9465 47.8983 80 K 1.0416 30.3570 46.1413 -Impact.ttf 71 C 26.9465 47.8983 81 H 1.0495 27.2192 46.1413 -Impact.ttf 71 C 26.9465 47.8983 82 q 9.1780 25.8600 43.1785 -Impact.ttf 71 C 26.9465 47.8983 83 & 9.0382 33.5925 37.8587 -Impact.ttf 71 C 26.9465 47.8983 84 ’ 0.8400 8.4302 14.9477 -Impact.ttf 71 C 26.9465 47.8983 85 [ 0.7348 13.3942 46.1413 -Impact.ttf 71 C 26.9465 47.8983 86 - 23.7361 14.8785 7.9267 -Impact.ttf 71 C 26.9465 47.8983 87 Y 0.8615 27.6250 46.1413 -Impact.ttf 71 C 26.9465 47.8983 88 Q -0.1660 26.8215 52.3395 -Impact.ttf 71 C 26.9465 47.8983 89 " 1.0624 19.7175 14.0000 -Impact.ttf 71 C 26.9465 47.8983 90 ! 0.8043 12.8215 46.1413 -Impact.ttf 71 C 26.9465 47.8983 91 x 9.4065 25.1760 37.8587 -Impact.ttf 71 C 26.9465 47.8983 92 ) 0.7602 14.9285 46.1413 -Impact.ttf 71 C 26.9465 47.8983 93 = 15.9071 27.6670 16.7320 -Impact.ttf 71 C 26.9465 47.8983 94 + 10.7789 27.1773 27.1773 -Impact.ttf 71 C 26.9465 47.8983 95 X 0.9124 29.6400 46.1413 -Impact.ttf 71 C 26.9465 47.8983 96 » 10.7686 19.6198 32.7140 -Impact.ttf 71 C 26.9465 47.8983 97 ' 0.8400 8.6802 14.0000 -Impact.ttf 71 C 26.9465 47.8983 98 ¢ 0.8826 25.8600 49.5017 -Impact.ttf 71 C 26.9465 47.8983 99 Z 0.6949 22.6245 46.1413 -Impact.ttf 71 C 26.9465 47.8983 100 > 8.9860 27.6670 29.1785 -Impact.ttf 71 C 26.9465 47.8983 101 ® 3.6773 43.1785 43.3035 -Impact.ttf 71 C 26.9465 47.8983 102 © 4.7547 43.1785 42.0000 -Impact.ttf 71 C 26.9465 47.8983 103 ] 1.0207 13.3942 46.1413 -Impact.ttf 71 C 26.9465 47.8983 104 é -0.4699 25.5600 47.5698 -Impact.ttf 71 C 26.9465 47.8983 105 z 9.2235 19.3198 37.8587 -Impact.ttf 71 C 26.9465 47.8983 106 _ 51.3623 32.1413 2.8378 -Impact.ttf 71 C 26.9465 47.8983 107 ¥ 1.0843 27.6250 46.1413 -Impact.ttf 72 * 15.4705 13.7692 1 t 3.1621 17.0878 43.1785 -Impact.ttf 72 * 15.4705 13.7692 2 h -0.1167 25.8600 46.1413 -Impact.ttf 72 * 15.4705 13.7692 3 a 8.5438 24.6815 37.8587 -Impact.ttf 72 * 15.4705 13.7692 4 n 8.4341 25.8600 37.8587 -Impact.ttf 72 * 15.4705 13.7692 5 P -0.0097 25.1622 46.1413 -Impact.ttf 72 * 15.4705 13.7692 6 o 8.3214 25.5600 37.8587 -Impact.ttf 72 * 15.4705 13.7692 7 e 8.4262 25.5600 37.8587 -Impact.ttf 72 * 15.4705 13.7692 8 : 15.6471 8.6802 30.3570 -Impact.ttf 72 * 15.4705 13.7692 9 r 8.2681 17.9105 37.8587 -Impact.ttf 72 * 15.4705 13.7692 10 l -0.0984 11.1622 46.1413 -Impact.ttf 72 * 15.4705 13.7692 11 i -0.3142 11.1622 46.1413 -Impact.ttf 72 * 15.4705 13.7692 12 1 0.0143 19.5925 46.1413 -Impact.ttf 72 * 15.4705 13.7692 13 | 0.0325 5.8425 53.6430 -Impact.ttf 72 * 15.4705 13.7692 14 N -0.1131 26.3407 46.1413 -Impact.ttf 72 * 15.4705 13.7692 15 f 0.0000 15.6593 46.1413 -Impact.ttf 72 * 15.4705 13.7692 16 g 8.2349 25.8600 44.3570 -Impact.ttf 72 * 15.4705 13.7692 17 d 0.2081 25.8600 46.1413 -Impact.ttf 72 * 15.4705 13.7692 18 W -0.1553 46.2890 46.1413 -Impact.ttf 72 * 15.4705 13.7692 19 s 8.0618 23.5030 37.8587 -Impact.ttf 72 * 15.4705 13.7692 20 c 8.2143 24.6815 37.8587 -Impact.ttf 72 * 15.4705 13.7692 21 u 8.3169 25.8600 37.8587 -Impact.ttf 72 * 15.4705 13.7692 22 3 -0.8252 25.7680 47.8983 -Impact.ttf 72 * 15.4705 13.7692 23 ~ 15.4585 26.7885 12.8907 -Impact.ttf 72 * 15.4705 13.7692 24 # 5.0100 34.6652 41.1215 -Impact.ttf 72 * 15.4705 13.7692 25 O -0.7421 26.8215 47.8983 -Impact.ttf 72 * 15.4705 13.7692 26 ` -4.9653 15.1785 7.9267 -Impact.ttf 72 * 15.4705 13.7692 27 @ -0.7634 43.1785 48.8040 -Impact.ttf 72 * 15.4705 13.7692 28 F -0.3327 20.2675 46.1413 -Impact.ttf 72 * 15.4705 13.7692 29 S -0.8428 27.5192 47.8983 -Impact.ttf 72 * 15.4705 13.7692 30 p 8.5478 25.8600 43.1785 -Impact.ttf 72 * 15.4705 13.7692 31 “ 0.3244 19.2175 14.9477 -Impact.ttf 72 * 15.4705 13.7692 32 % -0.8455 37.9837 47.0198 -Impact.ttf 72 * 15.4705 13.7692 33 £ -0.9240 28.2727 47.0198 -Impact.ttf 72 * 15.4705 13.7692 34 . 36.7247 8.6802 9.3360 -Impact.ttf 72 * 15.4705 13.7692 35 2 -0.8785 23.9837 47.0198 -Impact.ttf 72 * 15.4705 13.7692 36 5 0.0455 26.3407 47.0198 -Impact.ttf 72 * 15.4705 13.7692 37 m 8.2968 40.4657 37.8587 -Impact.ttf 72 * 15.4705 13.7692 38 V -0.1724 31.0355 46.1413 -Impact.ttf 72 * 15.4705 13.7692 39 6 -0.9597 26.3407 47.8983 -Impact.ttf 72 * 15.4705 13.7692 40 w 8.3182 38.9680 37.8587 -Impact.ttf 72 * 15.4705 13.7692 41 T 0.0885 26.3407 46.1413 -Impact.ttf 72 * 15.4705 13.7692 42 M -0.0065 36.8052 46.1413 -Impact.ttf 72 * 15.4705 13.7692 43 G -0.6075 26.9465 47.8983 -Impact.ttf 72 * 15.4705 13.7692 44 b 0.1581 25.8600 46.1413 -Impact.ttf 72 * 15.4705 13.7692 45 9 -0.9597 26.3407 47.8983 -Impact.ttf 72 * 15.4705 13.7692 46 ; 15.8357 8.6802 36.1995 -Impact.ttf 72 * 15.4705 13.7692 47 D -0.0527 26.9465 46.1413 -Impact.ttf 72 * 15.4705 13.7692 48 L 0.0453 18.8948 46.1413 -Impact.ttf 72 * 15.4705 13.7692 49 y 7.8803 27.3942 43.1785 -Impact.ttf 72 * 15.4705 13.7692 50 ‘ -0.0812 8.4302 14.9477 -Impact.ttf 72 * 15.4705 13.7692 51 \ -1.0535 23.9087 48.3733 -Impact.ttf 72 * 15.4705 13.7692 52 R -0.0000 26.3407 46.1413 -Impact.ttf 72 * 15.4705 13.7692 53 < 8.4188 27.6670 29.1785 -Impact.ttf 72 * 15.4705 13.7692 54 4 0.1658 28.6977 46.1413 -Impact.ttf 72 * 15.4705 13.7692 55 8 -0.9442 26.0407 47.8983 -Impact.ttf 72 * 15.4705 13.7692 56 0 -1.0881 26.3407 47.8983 -Impact.ttf 72 * 15.4705 13.7692 57 A -0.2323 31.5355 46.1413 -Impact.ttf 72 * 15.4705 13.7692 58 E -0.1984 20.4483 46.1413 -Impact.ttf 72 * 15.4705 13.7692 59 B 0.1658 26.9465 46.1413 -Impact.ttf 72 * 15.4705 13.7692 60 v 8.6789 26.8215 37.8587 -Impact.ttf 72 * 15.4705 13.7692 61 k -0.0330 25.7680 46.1413 -Impact.ttf 72 * 15.4705 13.7692 62 J -0.1371 16.2320 46.1413 -Impact.ttf 72 * 15.4705 13.7692 63 U 0.0427 26.8215 47.0198 -Impact.ttf 72 * 15.4705 13.7692 64 j 0.0455 13.7692 51.4610 -Impact.ttf 72 * 15.4705 13.7692 65 ( 0.0409 14.9285 46.1413 -Impact.ttf 72 * 15.4705 13.7692 66 7 0.0728 22.3245 46.1413 -Impact.ttf 72 * 15.4705 13.7692 67 § -0.9240 25.6430 53.5180 -Impact.ttf 72 * 15.4705 13.7692 68 $ -3.7545 26.8215 54.0680 -Impact.ttf 72 * 15.4705 13.7692 69 € -1.2320 28.6058 47.8983 -Impact.ttf 72 * 15.4705 13.7692 70 / -1.1374 22.7302 48.3733 -Impact.ttf 72 * 15.4705 13.7692 71 C -0.9642 26.9465 47.8983 -Impact.ttf 72 * 15.4705 13.7692 72 * 0.0482 15.4705 13.7692 -Impact.ttf 72 * 15.4705 13.7692 73 ” -0.0812 19.2175 14.9477 -Impact.ttf 72 * 15.4705 13.7692 74 ? -1.1099 26.8215 47.0198 -Impact.ttf 72 * 15.4705 13.7692 75 { 0.0819 19.1675 54.8215 -Impact.ttf 72 * 15.4705 13.7692 76 } -0.1158 19.1675 54.8215 -Impact.ttf 72 * 15.4705 13.7692 77 , 36.8594 8.4302 14.9477 -Impact.ttf 72 * 15.4705 13.7692 78 I 0.2332 11.6430 46.1413 -Impact.ttf 72 * 15.4705 13.7692 79 ° -0.9586 18.0163 18.0163 -Impact.ttf 72 * 15.4705 13.7692 80 K 0.2169 30.3570 46.1413 -Impact.ttf 72 * 15.4705 13.7692 81 H 0.1027 27.2192 46.1413 -Impact.ttf 72 * 15.4705 13.7692 82 q 8.2793 25.8600 43.1785 -Impact.ttf 72 * 15.4705 13.7692 83 & 8.2612 33.5925 37.8587 -Impact.ttf 72 * 15.4705 13.7692 84 ’ 0.0312 8.4302 14.9477 -Impact.ttf 72 * 15.4705 13.7692 85 [ 0.1728 13.3942 46.1413 -Impact.ttf 72 * 15.4705 13.7692 86 - 22.9971 14.8785 7.9267 -Impact.ttf 72 * 15.4705 13.7692 87 Y 0.0060 27.6250 46.1413 -Impact.ttf 72 * 15.4705 13.7692 88 Q -1.0054 26.8215 52.3395 -Impact.ttf 72 * 15.4705 13.7692 89 " -0.0070 19.7175 14.0000 -Impact.ttf 72 * 15.4705 13.7692 90 ! -0.1001 12.8215 46.1413 -Impact.ttf 72 * 15.4705 13.7692 91 x 8.6992 25.1760 37.8587 -Impact.ttf 72 * 15.4705 13.7692 92 ) 0.1183 14.9285 46.1413 -Impact.ttf 72 * 15.4705 13.7692 93 = 14.7756 27.6670 16.7320 -Impact.ttf 72 * 15.4705 13.7692 94 + 9.9482 27.1773 27.1773 -Impact.ttf 72 * 15.4705 13.7692 95 X 0.0155 29.6400 46.1413 -Impact.ttf 72 * 15.4705 13.7692 96 » 9.5509 19.6198 32.7140 -Impact.ttf 72 * 15.4705 13.7692 97 ' -0.1237 8.6802 14.0000 -Impact.ttf 72 * 15.4705 13.7692 98 ¢ 0.2264 25.8600 49.5017 -Impact.ttf 72 * 15.4705 13.7692 99 Z 0.2585 22.6245 46.1413 -Impact.ttf 72 * 15.4705 13.7692 100 > 8.2363 27.6670 29.1785 -Impact.ttf 72 * 15.4705 13.7692 101 ® 2.7636 43.1785 43.3035 -Impact.ttf 72 * 15.4705 13.7692 102 © 4.2539 43.1785 42.0000 -Impact.ttf 72 * 15.4705 13.7692 103 ] 0.0597 13.3942 46.1413 -Impact.ttf 72 * 15.4705 13.7692 104 é -1.7140 25.5600 47.5698 -Impact.ttf 72 * 15.4705 13.7692 105 z 8.0897 19.3198 37.8587 -Impact.ttf 72 * 15.4705 13.7692 106 _ 50.5910 32.1413 2.8378 -Impact.ttf 72 * 15.4705 13.7692 107 ¥ 0.0000 27.6250 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 1 t 3.1426 17.0878 43.1785 -Impact.ttf 73 ” 19.2175 14.9477 2 h 0.0947 25.8600 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 3 a 8.1624 24.6815 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 4 n 8.1825 25.8600 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 5 P -0.0955 25.1622 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 6 o 8.4021 25.5600 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 7 e 8.0750 25.5600 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 8 : 15.9571 8.6802 30.3570 -Impact.ttf 73 ” 19.2175 14.9477 9 r 8.4105 17.9105 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 10 l -0.0538 11.1622 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 11 i 0.1988 11.1622 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 12 1 -0.0170 19.5925 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 13 | 0.1696 5.8425 53.6430 -Impact.ttf 73 ” 19.2175 14.9477 14 N 0.2180 26.3407 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 15 f -0.0157 15.6593 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 16 g 8.1272 25.8600 44.3570 -Impact.ttf 73 ” 19.2175 14.9477 17 d 0.1800 25.8600 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 18 W 0.1312 46.2890 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 19 s 8.2111 23.5030 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 20 c 8.3637 24.6815 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 21 u 8.1898 25.8600 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 22 3 -0.9336 25.7680 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 23 ~ 15.5465 26.7885 12.8907 -Impact.ttf 73 ” 19.2175 14.9477 24 # 4.9170 34.6652 41.1215 -Impact.ttf 73 ” 19.2175 14.9477 25 O -0.6984 26.8215 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 26 ` -4.9997 15.1785 7.9267 -Impact.ttf 73 ” 19.2175 14.9477 27 @ -0.8455 43.1785 48.8040 -Impact.ttf 73 ” 19.2175 14.9477 28 F -0.0427 20.2675 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 29 S -0.6672 27.5192 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 30 p 8.2825 25.8600 43.1785 -Impact.ttf 73 ” 19.2175 14.9477 31 “ -0.1724 19.2175 14.9477 -Impact.ttf 73 ” 19.2175 14.9477 32 % -0.9285 37.9837 47.0198 -Impact.ttf 73 ” 19.2175 14.9477 33 £ -0.7446 28.2727 47.0198 -Impact.ttf 73 ” 19.2175 14.9477 34 . 36.9770 8.6802 9.3360 -Impact.ttf 73 ” 19.2175 14.9477 35 2 -0.9597 23.9837 47.0198 -Impact.ttf 73 ” 19.2175 14.9477 36 5 -0.2900 26.3407 47.0198 -Impact.ttf 73 ” 19.2175 14.9477 37 m 8.3178 40.4657 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 38 V -0.1014 31.0355 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 39 6 -0.6760 26.3407 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 40 w 8.2353 38.9680 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 41 T -0.0070 26.3407 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 42 M -0.1126 36.8052 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 43 G -0.8215 26.9465 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 44 b -0.0871 25.8600 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 45 9 -0.6490 26.3407 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 46 ; 15.8414 8.6802 36.1995 -Impact.ttf 73 ” 19.2175 14.9477 47 D -0.0495 26.9465 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 48 L 0.0097 18.8948 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 49 y 8.1699 27.3942 43.1785 -Impact.ttf 73 ” 19.2175 14.9477 50 ‘ 0.0742 8.4302 14.9477 -Impact.ttf 73 ” 19.2175 14.9477 51 \ -0.8807 23.9087 48.3733 -Impact.ttf 73 ” 19.2175 14.9477 52 R -0.0398 26.3407 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 53 < 8.1673 27.6670 29.1785 -Impact.ttf 73 ” 19.2175 14.9477 54 4 0.0839 28.6977 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 55 8 -0.7830 26.0407 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 56 0 -1.2762 26.3407 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 57 A -0.0812 31.5355 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 58 E -0.2943 20.4483 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 59 B 0.0909 26.9465 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 60 v 8.1333 26.8215 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 61 k 0.0871 25.7680 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 62 J 0.1459 16.2320 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 63 U 0.1027 26.8215 47.0198 -Impact.ttf 73 ” 19.2175 14.9477 64 j 0.1371 13.7692 51.4610 -Impact.ttf 73 ” 19.2175 14.9477 65 ( 0.0774 14.9285 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 66 7 -0.1111 22.3245 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 67 § -0.8670 25.6430 53.5180 -Impact.ttf 73 ” 19.2175 14.9477 68 $ -3.9524 26.8215 54.0680 -Impact.ttf 73 ” 19.2175 14.9477 69 € -1.0398 28.6058 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 70 / -0.9608 22.7302 48.3733 -Impact.ttf 73 ” 19.2175 14.9477 71 C -0.8775 26.9465 47.8983 -Impact.ttf 73 ” 19.2175 14.9477 72 * -0.1956 15.4705 13.7692 -Impact.ttf 73 ” 19.2175 14.9477 73 ” 0.0583 19.2175 14.9477 -Impact.ttf 73 ” 19.2175 14.9477 74 ? -1.0268 26.8215 47.0198 -Impact.ttf 73 ” 19.2175 14.9477 75 { 0.0546 19.1675 54.8215 -Impact.ttf 73 ” 19.2175 14.9477 76 } -0.0847 19.1675 54.8215 -Impact.ttf 73 ” 19.2175 14.9477 77 , 36.9608 8.4302 14.9477 -Impact.ttf 73 ” 19.2175 14.9477 78 I 0.3637 11.6430 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 79 ° -0.9554 18.0163 18.0163 -Impact.ttf 73 ” 19.2175 14.9477 80 K 0.2210 30.3570 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 81 H 0.4209 27.2192 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 82 q 8.2693 25.8600 43.1785 -Impact.ttf 73 ” 19.2175 14.9477 83 & 8.1156 33.5925 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 84 ’ -0.0427 8.4302 14.9477 -Impact.ttf 73 ” 19.2175 14.9477 85 [ -0.1228 13.3942 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 86 - 22.9345 14.8785 7.9267 -Impact.ttf 73 ” 19.2175 14.9477 87 Y 0.0742 27.6250 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 88 Q -0.8785 26.8215 52.3395 -Impact.ttf 73 ” 19.2175 14.9477 89 " 0.1269 19.7175 14.0000 -Impact.ttf 73 ” 19.2175 14.9477 90 ! 0.0125 12.8215 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 91 x 8.1056 25.1760 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 92 ) -0.0032 14.9285 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 93 = 15.2528 27.6670 16.7320 -Impact.ttf 73 ” 19.2175 14.9477 94 + 10.0641 27.1773 27.1773 -Impact.ttf 73 ” 19.2175 14.9477 95 X -0.0895 29.6400 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 96 » 9.4467 19.6198 32.7140 -Impact.ttf 73 ” 19.2175 14.9477 97 ' -0.0385 8.6802 14.0000 -Impact.ttf 73 ” 19.2175 14.9477 98 ¢ -0.1401 25.8600 49.5017 -Impact.ttf 73 ” 19.2175 14.9477 99 Z -0.1769 22.6245 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 100 > 8.2400 27.6670 29.1785 -Impact.ttf 73 ” 19.2175 14.9477 101 ® 2.9884 43.1785 43.3035 -Impact.ttf 73 ” 19.2175 14.9477 102 © 4.0983 43.1785 42.0000 -Impact.ttf 73 ” 19.2175 14.9477 103 ] -0.0097 13.3942 46.1413 -Impact.ttf 73 ” 19.2175 14.9477 104 é -1.4428 25.5600 47.5698 -Impact.ttf 73 ” 19.2175 14.9477 105 z 8.3424 19.3198 37.8587 -Impact.ttf 73 ” 19.2175 14.9477 106 _ 50.5497 32.1413 2.8378 -Impact.ttf 73 ” 19.2175 14.9477 107 ¥ -0.0115 27.6250 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 1 t 3.9738 17.0878 43.1785 -Impact.ttf 74 ? 26.8215 47.0198 2 h 0.7900 25.8600 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 3 a 9.4410 24.6815 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 4 n 9.2422 25.8600 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 5 P 0.6876 25.1622 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 6 o 9.1967 25.5600 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 7 e 9.2122 25.5600 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 8 : 16.5121 8.6802 30.3570 -Impact.ttf 74 ? 26.8215 47.0198 9 r 9.2397 17.9105 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 10 l 0.6120 11.1622 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 11 i 0.7303 11.1622 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 12 1 1.0481 19.5925 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 13 | 0.9735 5.8425 53.6430 -Impact.ttf 74 ? 26.8215 47.0198 14 N 0.9740 26.3407 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 15 f 0.8938 15.6593 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 16 g 9.1188 25.8600 44.3570 -Impact.ttf 74 ? 26.8215 47.0198 17 d 0.6204 25.8600 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 18 W 0.5374 46.2890 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 19 s 9.0452 23.5030 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 20 c 9.0043 24.6815 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 21 u 9.0766 25.8600 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 22 3 0.0812 25.7680 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 23 ~ 16.1929 26.7885 12.8907 -Impact.ttf 74 ? 26.8215 47.0198 24 # 6.1238 34.6652 41.1215 -Impact.ttf 74 ? 26.8215 47.0198 25 O -0.1714 26.8215 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 26 ` -4.0855 15.1785 7.9267 -Impact.ttf 74 ? 26.8215 47.0198 27 @ 0.1482 43.1785 48.8040 -Impact.ttf 74 ? 26.8215 47.0198 28 F 0.9773 20.2675 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 29 S 0.0637 27.5192 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 30 p 9.1078 25.8600 43.1785 -Impact.ttf 74 ? 26.8215 47.0198 31 “ 0.8527 19.2175 14.9477 -Impact.ttf 74 ? 26.8215 47.0198 32 % -0.0287 37.9837 47.0198 -Impact.ttf 74 ? 26.8215 47.0198 33 £ -0.0982 28.2727 47.0198 -Impact.ttf 74 ? 26.8215 47.0198 34 . 37.8005 8.6802 9.3360 -Impact.ttf 74 ? 26.8215 47.0198 35 2 -0.0455 23.9837 47.0198 -Impact.ttf 74 ? 26.8215 47.0198 36 5 0.8233 26.3407 47.0198 -Impact.ttf 74 ? 26.8215 47.0198 37 m 9.1472 40.4657 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 38 V 0.7627 31.0355 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 39 6 -0.0955 26.3407 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 40 w 8.7773 38.9680 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 41 T 1.1750 26.3407 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 42 M 0.8850 36.8052 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 43 G 0.1280 26.9465 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 44 b 0.9257 25.8600 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 45 9 -0.0068 26.3407 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 46 ; 16.6594 8.6802 36.1995 -Impact.ttf 74 ? 26.8215 47.0198 47 D 0.7186 26.9465 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 48 L 0.9827 18.8948 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 49 y 9.0142 27.3942 43.1785 -Impact.ttf 74 ? 26.8215 47.0198 50 ‘ 0.8372 8.4302 14.9477 -Impact.ttf 74 ? 26.8215 47.0198 51 \ -0.2649 23.9087 48.3733 -Impact.ttf 74 ? 26.8215 47.0198 52 R 0.5333 26.3407 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 53 < 8.9234 27.6670 29.1785 -Impact.ttf 74 ? 26.8215 47.0198 54 4 0.9170 28.6977 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 55 8 -0.1626 26.0407 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 56 0 -0.1812 26.3407 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 57 A 0.7634 31.5355 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 58 E 1.2809 20.4483 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 59 B 0.8354 26.9465 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 60 v 8.9726 26.8215 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 61 k 0.8900 25.7680 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 62 J 1.0824 16.2320 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 63 U 1.0793 26.8215 47.0198 -Impact.ttf 74 ? 26.8215 47.0198 64 j 0.8615 13.7692 51.4610 -Impact.ttf 74 ? 26.8215 47.0198 65 ( 0.8011 14.9285 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 66 7 1.0027 22.3245 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 67 § 0.0899 25.6430 53.5180 -Impact.ttf 74 ? 26.8215 47.0198 68 $ -3.1026 26.8215 54.0680 -Impact.ttf 74 ? 26.8215 47.0198 69 € 0.1099 28.6058 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 70 / -0.3349 22.7302 48.3733 -Impact.ttf 74 ? 26.8215 47.0198 71 C 0.1131 26.9465 47.8983 -Impact.ttf 74 ? 26.8215 47.0198 72 * 0.7765 15.4705 13.7692 -Impact.ttf 74 ? 26.8215 47.0198 73 ” 0.7329 19.2175 14.9477 -Impact.ttf 74 ? 26.8215 47.0198 74 ? -0.0481 26.8215 47.0198 -Impact.ttf 74 ? 26.8215 47.0198 75 { 1.0582 19.1675 54.8215 -Impact.ttf 74 ? 26.8215 47.0198 76 } 1.2539 19.1675 54.8215 -Impact.ttf 74 ? 26.8215 47.0198 77 , 37.9228 8.4302 14.9477 -Impact.ttf 74 ? 26.8215 47.0198 78 I 0.9367 11.6430 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 79 ° 0.2210 18.0163 18.0163 -Impact.ttf 74 ? 26.8215 47.0198 80 K 0.8979 30.3570 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 81 H 0.6801 27.2192 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 82 q 9.2231 25.8600 43.1785 -Impact.ttf 74 ? 26.8215 47.0198 83 & 8.9896 33.5925 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 84 ’ 0.8844 8.4302 14.9477 -Impact.ttf 74 ? 26.8215 47.0198 85 [ 0.6458 13.3942 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 86 - 24.0327 14.8785 7.9267 -Impact.ttf 74 ? 26.8215 47.0198 87 Y 0.8785 27.6250 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 88 Q 0.2516 26.8215 52.3395 -Impact.ttf 74 ? 26.8215 47.0198 89 " 0.9240 19.7175 14.0000 -Impact.ttf 74 ? 26.8215 47.0198 90 ! 0.8257 12.8215 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 91 x 9.2723 25.1760 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 92 ) 1.1639 14.9285 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 93 = 15.6684 27.6670 16.7320 -Impact.ttf 74 ? 26.8215 47.0198 94 + 10.4244 27.1773 27.1773 -Impact.ttf 74 ? 26.8215 47.0198 95 X 0.6608 29.6400 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 96 » 10.3447 19.6198 32.7140 -Impact.ttf 74 ? 26.8215 47.0198 97 ' 1.0968 8.6802 14.0000 -Impact.ttf 74 ? 26.8215 47.0198 98 ¢ 0.9431 25.8600 49.5017 -Impact.ttf 74 ? 26.8215 47.0198 99 Z 1.0059 22.6245 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 100 > 9.2199 27.6670 29.1785 -Impact.ttf 74 ? 26.8215 47.0198 101 ® 3.8678 43.1785 43.3035 -Impact.ttf 74 ? 26.8215 47.0198 102 © 5.1939 43.1785 42.0000 -Impact.ttf 74 ? 26.8215 47.0198 103 ] 0.9772 13.3942 46.1413 -Impact.ttf 74 ? 26.8215 47.0198 104 é -0.2869 25.5600 47.5698 -Impact.ttf 74 ? 26.8215 47.0198 105 z 9.3379 19.3198 37.8587 -Impact.ttf 74 ? 26.8215 47.0198 106 _ 51.4369 32.1413 2.8378 -Impact.ttf 74 ? 26.8215 47.0198 107 ¥ 0.9922 27.6250 46.1413 -Impact.ttf 75 { 19.1675 54.8215 1 t 3.0856 17.0878 43.1785 -Impact.ttf 75 { 19.1675 54.8215 2 h 0.0955 25.8600 46.1413 -Impact.ttf 75 { 19.1675 54.8215 3 a 7.8631 24.6815 37.8587 -Impact.ttf 75 { 19.1675 54.8215 4 n 8.4256 25.8600 37.8587 -Impact.ttf 75 { 19.1675 54.8215 5 P -0.3100 25.1622 46.1413 -Impact.ttf 75 { 19.1675 54.8215 6 o 8.2714 25.5600 37.8587 -Impact.ttf 75 { 19.1675 54.8215 7 e 8.4879 25.5600 37.8587 -Impact.ttf 75 { 19.1675 54.8215 8 : 15.9144 8.6802 30.3570 -Impact.ttf 75 { 19.1675 54.8215 9 r 8.1968 17.9105 37.8587 -Impact.ttf 75 { 19.1675 54.8215 10 l -0.1581 11.1622 46.1413 -Impact.ttf 75 { 19.1675 54.8215 11 i 0.0812 11.1622 46.1413 -Impact.ttf 75 { 19.1675 54.8215 12 1 0.2411 19.5925 46.1413 -Impact.ttf 75 { 19.1675 54.8215 13 | -0.2137 5.8425 53.6430 -Impact.ttf 75 { 19.1675 54.8215 14 N 0.0214 26.3407 46.1413 -Impact.ttf 75 { 19.1675 54.8215 15 f -0.3420 15.6593 46.1413 -Impact.ttf 75 { 19.1675 54.8215 16 g 8.1986 25.8600 44.3570 -Impact.ttf 75 { 19.1675 54.8215 17 d -0.0825 25.8600 46.1413 -Impact.ttf 75 { 19.1675 54.8215 18 W 0.0871 46.2890 46.1413 -Impact.ttf 75 { 19.1675 54.8215 19 s 8.2968 23.5030 37.8587 -Impact.ttf 75 { 19.1675 54.8215 20 c 8.0485 24.6815 37.8587 -Impact.ttf 75 { 19.1675 54.8215 21 u 8.4248 25.8600 37.8587 -Impact.ttf 75 { 19.1675 54.8215 22 3 -0.9299 25.7680 47.8983 -Impact.ttf 75 { 19.1675 54.8215 23 ~ 15.3019 26.7885 12.8907 -Impact.ttf 75 { 19.1675 54.8215 24 # 4.6509 34.6652 41.1215 -Impact.ttf 75 { 19.1675 54.8215 25 O -0.7043 26.8215 47.8983 -Impact.ttf 75 { 19.1675 54.8215 26 ` -4.7291 15.1785 7.9267 -Impact.ttf 75 { 19.1675 54.8215 27 @ -0.8400 43.1785 48.8040 -Impact.ttf 75 { 19.1675 54.8215 28 F -0.1969 20.2675 46.1413 -Impact.ttf 75 { 19.1675 54.8215 29 S -0.8998 27.5192 47.8983 -Impact.ttf 75 { 19.1675 54.8215 30 p 8.4081 25.8600 43.1785 -Impact.ttf 75 { 19.1675 54.8215 31 “ 0.1027 19.2175 14.9477 -Impact.ttf 75 { 19.1675 54.8215 32 % -0.7297 37.9837 47.0198 -Impact.ttf 75 { 19.1675 54.8215 33 £ -0.6644 28.2727 47.0198 -Impact.ttf 75 { 19.1675 54.8215 34 . 36.5628 8.6802 9.3360 -Impact.ttf 75 { 19.1675 54.8215 35 2 -0.9943 23.9837 47.0198 -Impact.ttf 75 { 19.1675 54.8215 36 5 0.1418 26.3407 47.0198 -Impact.ttf 75 { 19.1675 54.8215 37 m 8.1524 40.4657 37.8587 -Impact.ttf 75 { 19.1675 54.8215 38 V 0.0129 31.0355 46.1413 -Impact.ttf 75 { 19.1675 54.8215 39 6 -1.0097 26.3407 47.8983 -Impact.ttf 75 { 19.1675 54.8215 40 w 8.0685 38.9680 37.8587 -Impact.ttf 75 { 19.1675 54.8215 41 T -0.1224 26.3407 46.1413 -Impact.ttf 75 { 19.1675 54.8215 42 M -0.0330 36.8052 46.1413 -Impact.ttf 75 { 19.1675 54.8215 43 G -0.8641 26.9465 47.8983 -Impact.ttf 75 { 19.1675 54.8215 44 b -0.1274 25.8600 46.1413 -Impact.ttf 75 { 19.1675 54.8215 45 9 -0.9414 26.3407 47.8983 -Impact.ttf 75 { 19.1675 54.8215 46 ; 15.5887 8.6802 36.1995 -Impact.ttf 75 { 19.1675 54.8215 47 D 0.0969 26.9465 46.1413 -Impact.ttf 75 { 19.1675 54.8215 48 L -0.0056 18.8948 46.1413 -Impact.ttf 75 { 19.1675 54.8215 49 y 8.2205 27.3942 43.1785 -Impact.ttf 75 { 19.1675 54.8215 50 ‘ -0.0143 8.4302 14.9477 -Impact.ttf 75 { 19.1675 54.8215 51 \ -0.8041 23.9087 48.3733 -Impact.ttf 75 { 19.1675 54.8215 52 R -0.0325 26.3407 46.1413 -Impact.ttf 75 { 19.1675 54.8215 53 < 7.8581 27.6670 29.1785 -Impact.ttf 75 { 19.1675 54.8215 54 4 -0.0170 28.6977 46.1413 -Impact.ttf 75 { 19.1675 54.8215 55 8 -1.0815 26.0407 47.8983 -Impact.ttf 75 { 19.1675 54.8215 56 0 -0.8715 26.3407 47.8983 -Impact.ttf 75 { 19.1675 54.8215 57 A 0.0918 31.5355 46.1413 -Impact.ttf 75 { 19.1675 54.8215 58 E -0.2262 20.4483 46.1413 -Impact.ttf 75 { 19.1675 54.8215 59 B -0.0055 26.9465 46.1413 -Impact.ttf 75 { 19.1675 54.8215 60 v 8.0355 26.8215 37.8587 -Impact.ttf 75 { 19.1675 54.8215 61 k 0.0000 25.7680 46.1413 -Impact.ttf 75 { 19.1675 54.8215 62 J -0.1669 16.2320 46.1413 -Impact.ttf 75 { 19.1675 54.8215 63 U 0.0593 26.8215 47.0198 -Impact.ttf 75 { 19.1675 54.8215 64 j 0.3244 13.7692 51.4610 -Impact.ttf 75 { 19.1675 54.8215 65 ( -0.1696 14.9285 46.1413 -Impact.ttf 75 { 19.1675 54.8215 66 7 0.0087 22.3245 46.1413 -Impact.ttf 75 { 19.1675 54.8215 67 § -0.7943 25.6430 53.5180 -Impact.ttf 75 { 19.1675 54.8215 68 $ -3.6145 26.8215 54.0680 -Impact.ttf 75 { 19.1675 54.8215 69 € -0.6217 28.6058 47.8983 -Impact.ttf 75 { 19.1675 54.8215 70 / -1.0952 22.7302 48.3733 -Impact.ttf 75 { 19.1675 54.8215 71 C -1.0541 26.9465 47.8983 -Impact.ttf 75 { 19.1675 54.8215 72 * -0.0784 15.4705 13.7692 -Impact.ttf 75 { 19.1675 54.8215 73 ” -0.1225 19.2175 14.9477 -Impact.ttf 75 { 19.1675 54.8215 74 ? -0.7274 26.8215 47.0198 -Impact.ttf 75 { 19.1675 54.8215 75 { -0.0143 19.1675 54.8215 -Impact.ttf 75 { 19.1675 54.8215 76 } 0.1696 19.1675 54.8215 -Impact.ttf 75 { 19.1675 54.8215 77 , 37.0972 8.4302 14.9477 -Impact.ttf 75 { 19.1675 54.8215 78 I -0.0742 11.6430 46.1413 -Impact.ttf 75 { 19.1675 54.8215 79 ° -1.0097 18.0163 18.0163 -Impact.ttf 75 { 19.1675 54.8215 80 K -0.1099 30.3570 46.1413 -Impact.ttf 75 { 19.1675 54.8215 81 H 0.0486 27.2192 46.1413 -Impact.ttf 75 { 19.1675 54.8215 82 q 8.1866 25.8600 43.1785 -Impact.ttf 75 { 19.1675 54.8215 83 & 8.3512 33.5925 37.8587 -Impact.ttf 75 { 19.1675 54.8215 84 ’ -0.0274 8.4302 14.9477 -Impact.ttf 75 { 19.1675 54.8215 85 [ -0.2710 13.3942 46.1413 -Impact.ttf 75 { 19.1675 54.8215 86 - 23.1245 14.8785 7.9267 -Impact.ttf 75 { 19.1675 54.8215 87 Y -0.0403 27.6250 46.1413 -Impact.ttf 75 { 19.1675 54.8215 88 Q -1.0492 26.8215 52.3395 -Impact.ttf 75 { 19.1675 54.8215 89 " 0.1266 19.7175 14.0000 -Impact.ttf 75 { 19.1675 54.8215 90 ! -0.0495 12.8215 46.1413 -Impact.ttf 75 { 19.1675 54.8215 91 x 8.2787 25.1760 37.8587 -Impact.ttf 75 { 19.1675 54.8215 92 ) -0.0885 14.9285 46.1413 -Impact.ttf 75 { 19.1675 54.8215 93 = 14.8956 27.6670 16.7320 -Impact.ttf 75 { 19.1675 54.8215 94 + 9.7402 27.1773 27.1773 -Impact.ttf 75 { 19.1675 54.8215 95 X 0.0143 29.6400 46.1413 -Impact.ttf 75 { 19.1675 54.8215 96 » 9.5222 19.6198 32.7140 -Impact.ttf 75 { 19.1675 54.8215 97 ' -0.2113 8.6802 14.0000 -Impact.ttf 75 { 19.1675 54.8215 98 ¢ 0.1963 25.8600 49.5017 -Impact.ttf 75 { 19.1675 54.8215 99 Z -0.1839 22.6245 46.1413 -Impact.ttf 75 { 19.1675 54.8215 100 > 8.5510 27.6670 29.1785 -Impact.ttf 75 { 19.1675 54.8215 101 ® 2.9287 43.1785 43.3035 -Impact.ttf 75 { 19.1675 54.8215 102 © 4.0639 43.1785 42.0000 -Impact.ttf 75 { 19.1675 54.8215 103 ] 0.0351 13.3942 46.1413 -Impact.ttf 75 { 19.1675 54.8215 104 é -1.1885 25.5600 47.5698 -Impact.ttf 75 { 19.1675 54.8215 105 z 8.2184 19.3198 37.8587 -Impact.ttf 75 { 19.1675 54.8215 106 _ 50.4329 32.1413 2.8378 -Impact.ttf 75 { 19.1675 54.8215 107 ¥ -0.0825 27.6250 46.1413 -Impact.ttf 76 } 19.1675 54.8215 1 t 2.8826 17.0878 43.1785 -Impact.ttf 76 } 19.1675 54.8215 2 h -0.0839 25.8600 46.1413 -Impact.ttf 76 } 19.1675 54.8215 3 a 8.5763 24.6815 37.8587 -Impact.ttf 76 } 19.1675 54.8215 4 n 8.4039 25.8600 37.8587 -Impact.ttf 76 } 19.1675 54.8215 5 P 0.2535 25.1622 46.1413 -Impact.ttf 76 } 19.1675 54.8215 6 o 8.2510 25.5600 37.8587 -Impact.ttf 76 } 19.1675 54.8215 7 e 8.5823 25.5600 37.8587 -Impact.ttf 76 } 19.1675 54.8215 8 : 15.8733 8.6802 30.3570 -Impact.ttf 76 } 19.1675 54.8215 9 r 8.3780 17.9105 37.8587 -Impact.ttf 76 } 19.1675 54.8215 10 l 0.1014 11.1622 46.1413 -Impact.ttf 76 } 19.1675 54.8215 11 i -0.0073 11.1622 46.1413 -Impact.ttf 76 } 19.1675 54.8215 12 1 -0.2540 19.5925 46.1413 -Impact.ttf 76 } 19.1675 54.8215 13 | -0.3143 5.8425 53.6430 -Impact.ttf 76 } 19.1675 54.8215 14 N -0.1524 26.3407 46.1413 -Impact.ttf 76 } 19.1675 54.8215 15 f 0.1312 15.6593 46.1413 -Impact.ttf 76 } 19.1675 54.8215 16 g 7.8250 25.8600 44.3570 -Impact.ttf 76 } 19.1675 54.8215 17 d 0.1312 25.8600 46.1413 -Impact.ttf 76 } 19.1675 54.8215 18 W -0.0927 46.2890 46.1413 -Impact.ttf 76 } 19.1675 54.8215 19 s 8.2444 23.5030 37.8587 -Impact.ttf 76 } 19.1675 54.8215 20 c 8.5003 24.6815 37.8587 -Impact.ttf 76 } 19.1675 54.8215 21 u 8.6010 25.8600 37.8587 -Impact.ttf 76 } 19.1675 54.8215 22 3 -0.9786 25.7680 47.8983 -Impact.ttf 76 } 19.1675 54.8215 23 ~ 15.4053 26.7885 12.8907 -Impact.ttf 76 } 19.1675 54.8215 24 # 4.8589 34.6652 41.1215 -Impact.ttf 76 } 19.1675 54.8215 25 O -1.0027 26.8215 47.8983 -Impact.ttf 76 } 19.1675 54.8215 26 ` -4.7944 15.1785 7.9267 -Impact.ttf 76 } 19.1675 54.8215 27 @ -0.9541 43.1785 48.8040 -Impact.ttf 76 } 19.1675 54.8215 28 F 0.1432 20.2675 46.1413 -Impact.ttf 76 } 19.1675 54.8215 29 S -1.0487 27.5192 47.8983 -Impact.ttf 76 } 19.1675 54.8215 30 p 8.1142 25.8600 43.1785 -Impact.ttf 76 } 19.1675 54.8215 31 “ -0.1756 19.2175 14.9477 -Impact.ttf 76 } 19.1675 54.8215 32 % -0.9225 37.9837 47.0198 -Impact.ttf 76 } 19.1675 54.8215 33 £ -0.7830 28.2727 47.0198 -Impact.ttf 76 } 19.1675 54.8215 34 . 36.9211 8.6802 9.3360 -Impact.ttf 76 } 19.1675 54.8215 35 2 -0.8159 23.9837 47.0198 -Impact.ttf 76 } 19.1675 54.8215 36 5 0.0162 26.3407 47.0198 -Impact.ttf 76 } 19.1675 54.8215 37 m 8.2065 40.4657 37.8587 -Impact.ttf 76 } 19.1675 54.8215 38 V -0.2210 31.0355 46.1413 -Impact.ttf 76 } 19.1675 54.8215 39 6 -0.8955 26.3407 47.8983 -Impact.ttf 76 } 19.1675 54.8215 40 w 8.3210 38.9680 37.8587 -Impact.ttf 76 } 19.1675 54.8215 41 T 0.1696 26.3407 46.1413 -Impact.ttf 76 } 19.1675 54.8215 42 M 0.1501 36.8052 46.1413 -Impact.ttf 76 } 19.1675 54.8215 43 G -0.7654 26.9465 47.8983 -Impact.ttf 76 } 19.1675 54.8215 44 b 0.1669 25.8600 46.1413 -Impact.ttf 76 } 19.1675 54.8215 45 9 -0.8317 26.3407 47.8983 -Impact.ttf 76 } 19.1675 54.8215 46 ; 15.8227 8.6802 36.1995 -Impact.ttf 76 } 19.1675 54.8215 47 D 0.1456 26.9465 46.1413 -Impact.ttf 76 } 19.1675 54.8215 48 L -0.0027 18.8948 46.1413 -Impact.ttf 76 } 19.1675 54.8215 49 y 8.5444 27.3942 43.1785 -Impact.ttf 76 } 19.1675 54.8215 50 ‘ -0.3861 8.4302 14.9477 -Impact.ttf 76 } 19.1675 54.8215 51 \ -1.0938 23.9087 48.3733 -Impact.ttf 76 } 19.1675 54.8215 52 R -0.0752 26.3407 46.1413 -Impact.ttf 76 } 19.1675 54.8215 53 < 8.2043 27.6670 29.1785 -Impact.ttf 76 } 19.1675 54.8215 54 4 0.2581 28.6977 46.1413 -Impact.ttf 76 } 19.1675 54.8215 55 8 -0.8753 26.0407 47.8983 -Impact.ttf 76 } 19.1675 54.8215 56 0 -0.9624 26.3407 47.8983 -Impact.ttf 76 } 19.1675 54.8215 57 A -0.1724 31.5355 46.1413 -Impact.ttf 76 } 19.1675 54.8215 58 E -0.1173 20.4483 46.1413 -Impact.ttf 76 } 19.1675 54.8215 59 B 0.0357 26.9465 46.1413 -Impact.ttf 76 } 19.1675 54.8215 60 v 8.3353 26.8215 37.8587 -Impact.ttf 76 } 19.1675 54.8215 61 k 0.1783 25.7680 46.1413 -Impact.ttf 76 } 19.1675 54.8215 62 J -0.1826 16.2320 46.1413 -Impact.ttf 76 } 19.1675 54.8215 63 U 0.3397 26.8215 47.0198 -Impact.ttf 76 } 19.1675 54.8215 64 j 0.0742 13.7692 51.4610 -Impact.ttf 76 } 19.1675 54.8215 65 ( -0.0839 14.9285 46.1413 -Impact.ttf 76 } 19.1675 54.8215 66 7 -0.0172 22.3245 46.1413 -Impact.ttf 76 } 19.1675 54.8215 67 § -1.0866 25.6430 53.5180 -Impact.ttf 76 } 19.1675 54.8215 68 $ -3.6561 26.8215 54.0680 -Impact.ttf 76 } 19.1675 54.8215 69 € -0.7118 28.6058 47.8983 -Impact.ttf 76 } 19.1675 54.8215 70 / -1.2051 22.7302 48.3733 -Impact.ttf 76 } 19.1675 54.8215 71 C -0.6821 26.9465 47.8983 -Impact.ttf 76 } 19.1675 54.8215 72 * -0.1010 15.4705 13.7692 -Impact.ttf 76 } 19.1675 54.8215 73 ” 0.0844 19.2175 14.9477 -Impact.ttf 76 } 19.1675 54.8215 74 ? -0.8846 26.8215 47.0198 -Impact.ttf 76 } 19.1675 54.8215 75 { 0.0669 19.1675 54.8215 -Impact.ttf 76 } 19.1675 54.8215 76 } 0.2595 19.1675 54.8215 -Impact.ttf 76 } 19.1675 54.8215 77 , 36.7682 8.4302 14.9477 -Impact.ttf 76 } 19.1675 54.8215 78 I -0.0877 11.6430 46.1413 -Impact.ttf 76 } 19.1675 54.8215 79 ° -0.8094 18.0163 18.0163 -Impact.ttf 76 } 19.1675 54.8215 80 K -0.0318 30.3570 46.1413 -Impact.ttf 76 } 19.1675 54.8215 81 H 0.0325 27.2192 46.1413 -Impact.ttf 76 } 19.1675 54.8215 82 q 8.3353 25.8600 43.1785 -Impact.ttf 76 } 19.1675 54.8215 83 & 8.4452 33.5925 37.8587 -Impact.ttf 76 } 19.1675 54.8215 84 ’ -0.1742 8.4302 14.9477 -Impact.ttf 76 } 19.1675 54.8215 85 [ -0.0482 13.3942 46.1413 -Impact.ttf 76 } 19.1675 54.8215 86 - 22.9743 14.8785 7.9267 -Impact.ttf 76 } 19.1675 54.8215 87 Y 0.0032 27.6250 46.1413 -Impact.ttf 76 } 19.1675 54.8215 88 Q -0.7224 26.8215 52.3395 -Impact.ttf 76 } 19.1675 54.8215 89 " 0.0955 19.7175 14.0000 -Impact.ttf 76 } 19.1675 54.8215 90 ! -0.2196 12.8215 46.1413 -Impact.ttf 76 } 19.1675 54.8215 91 x 8.4094 25.1760 37.8587 -Impact.ttf 76 } 19.1675 54.8215 92 ) -0.1052 14.9285 46.1413 -Impact.ttf 76 } 19.1675 54.8215 93 = 15.0429 27.6670 16.7320 -Impact.ttf 76 } 19.1675 54.8215 94 + 9.7846 27.1773 27.1773 -Impact.ttf 76 } 19.1675 54.8215 95 X 0.0806 29.6400 46.1413 -Impact.ttf 76 } 19.1675 54.8215 96 » 9.5820 19.6198 32.7140 -Impact.ttf 76 } 19.1675 54.8215 97 ' -0.1542 8.6802 14.0000 -Impact.ttf 76 } 19.1675 54.8215 98 ¢ -0.0062 25.8600 49.5017 -Impact.ttf 76 } 19.1675 54.8215 99 Z 0.1070 22.6245 46.1413 -Impact.ttf 76 } 19.1675 54.8215 100 > 8.2289 27.6670 29.1785 -Impact.ttf 76 } 19.1675 54.8215 101 ® 2.6737 43.1785 43.3035 -Impact.ttf 76 } 19.1675 54.8215 102 © 4.1270 43.1785 42.0000 -Impact.ttf 76 } 19.1675 54.8215 103 ] -0.2521 13.3942 46.1413 -Impact.ttf 76 } 19.1675 54.8215 104 é -1.2769 25.5600 47.5698 -Impact.ttf 76 } 19.1675 54.8215 105 z 8.1083 19.3198 37.8587 -Impact.ttf 76 } 19.1675 54.8215 106 _ 50.6112 32.1413 2.8378 -Impact.ttf 76 } 19.1675 54.8215 107 ¥ 0.0170 27.6250 46.1413 -Impact.ttf 77 , 8.4302 14.9477 1 t -34.0857 17.0878 43.1785 -Impact.ttf 77 , 8.4302 14.9477 2 h -36.9476 25.8600 46.1413 -Impact.ttf 77 , 8.4302 14.9477 3 a -28.7535 24.6815 37.8587 -Impact.ttf 77 , 8.4302 14.9477 4 n -28.7562 25.8600 37.8587 -Impact.ttf 77 , 8.4302 14.9477 5 P -37.2088 25.1622 46.1413 -Impact.ttf 77 , 8.4302 14.9477 6 o -28.8277 25.5600 37.8587 -Impact.ttf 77 , 8.4302 14.9477 7 e -28.7952 25.5600 37.8587 -Impact.ttf 77 , 8.4302 14.9477 8 : -21.2160 8.6802 30.3570 -Impact.ttf 77 , 8.4302 14.9477 9 r -28.8073 17.9105 37.8587 -Impact.ttf 77 , 8.4302 14.9477 10 l -36.9048 11.1622 46.1413 -Impact.ttf 77 , 8.4302 14.9477 11 i -37.0333 11.1622 46.1413 -Impact.ttf 77 , 8.4302 14.9477 12 1 -36.9906 19.5925 46.1413 -Impact.ttf 77 , 8.4302 14.9477 13 | -37.1245 5.8425 53.6430 -Impact.ttf 77 , 8.4302 14.9477 14 N -37.0699 26.3407 46.1413 -Impact.ttf 77 , 8.4302 14.9477 15 f -37.0360 15.6593 46.1413 -Impact.ttf 77 , 8.4302 14.9477 16 g -28.8164 25.8600 44.3570 -Impact.ttf 77 , 8.4302 14.9477 17 d -36.9261 25.8600 46.1413 -Impact.ttf 77 , 8.4302 14.9477 18 W -37.0217 46.2890 46.1413 -Impact.ttf 77 , 8.4302 14.9477 19 s -28.7535 23.5030 37.8587 -Impact.ttf 77 , 8.4302 14.9477 20 c -28.7178 24.6815 37.8587 -Impact.ttf 77 , 8.4302 14.9477 21 u -28.9634 25.8600 37.8587 -Impact.ttf 77 , 8.4302 14.9477 22 3 -37.8728 25.7680 47.8983 -Impact.ttf 77 , 8.4302 14.9477 23 ~ -21.3431 26.7885 12.8907 -Impact.ttf 77 , 8.4302 14.9477 24 # -31.8494 34.6652 41.1215 -Impact.ttf 77 , 8.4302 14.9477 25 O -37.9163 26.8215 47.8983 -Impact.ttf 77 , 8.4302 14.9477 26 ` -41.9500 15.1785 7.9267 -Impact.ttf 77 , 8.4302 14.9477 27 @ -37.9145 43.1785 48.8040 -Impact.ttf 77 , 8.4302 14.9477 28 F -37.0398 20.2675 46.1413 -Impact.ttf 77 , 8.4302 14.9477 29 S -37.9145 27.5192 47.8983 -Impact.ttf 77 , 8.4302 14.9477 30 p -28.7535 25.8600 43.1785 -Impact.ttf 77 , 8.4302 14.9477 31 “ -36.9976 19.2175 14.9477 -Impact.ttf 77 , 8.4302 14.9477 32 % -37.9645 37.9837 47.0198 -Impact.ttf 77 , 8.4302 14.9477 33 £ -37.9957 28.2727 47.0198 -Impact.ttf 77 , 8.4302 14.9477 34 . -0.0649 8.6802 9.3360 -Impact.ttf 77 , 8.4302 14.9477 35 2 -37.9530 23.9837 47.0198 -Impact.ttf 77 , 8.4302 14.9477 36 5 -37.2029 26.3407 47.0198 -Impact.ttf 77 , 8.4302 14.9477 37 m -28.8452 40.4657 37.8587 -Impact.ttf 77 , 8.4302 14.9477 38 V -37.0179 31.0355 46.1413 -Impact.ttf 77 , 8.4302 14.9477 39 6 -37.8663 26.3407 47.8983 -Impact.ttf 77 , 8.4302 14.9477 40 w -28.6793 38.9680 37.8587 -Impact.ttf 77 , 8.4302 14.9477 41 T -37.0360 26.3407 46.1413 -Impact.ttf 77 , 8.4302 14.9477 42 M -37.0360 36.8052 46.1413 -Impact.ttf 77 , 8.4302 14.9477 43 G -37.8673 26.9465 47.8983 -Impact.ttf 77 , 8.4302 14.9477 44 b -36.9763 25.8600 46.1413 -Impact.ttf 77 , 8.4302 14.9477 45 9 -37.8760 26.3407 47.8983 -Impact.ttf 77 , 8.4302 14.9477 46 ; -21.1178 8.6802 36.1995 -Impact.ttf 77 , 8.4302 14.9477 47 D -37.1527 26.9465 46.1413 -Impact.ttf 77 , 8.4302 14.9477 48 L -37.0263 18.8948 46.1413 -Impact.ttf 77 , 8.4302 14.9477 49 y -28.8035 27.3942 43.1785 -Impact.ttf 77 , 8.4302 14.9477 50 ‘ -37.2960 8.4302 14.9477 -Impact.ttf 77 , 8.4302 14.9477 51 \ -37.9621 23.9087 48.3733 -Impact.ttf 77 , 8.4302 14.9477 52 R -37.2029 26.3407 46.1413 -Impact.ttf 77 , 8.4302 14.9477 53 < -29.0027 27.6670 29.1785 -Impact.ttf 77 , 8.4302 14.9477 54 4 -36.9618 28.6977 46.1413 -Impact.ttf 77 , 8.4302 14.9477 55 8 -37.9743 26.0407 47.8983 -Impact.ttf 77 , 8.4302 14.9477 56 0 -37.8046 26.3407 47.8983 -Impact.ttf 77 , 8.4302 14.9477 57 A -37.0360 31.5355 46.1413 -Impact.ttf 77 , 8.4302 14.9477 58 E -36.9943 20.4483 46.1413 -Impact.ttf 77 , 8.4302 14.9477 59 B -37.0360 26.9465 46.1413 -Impact.ttf 77 , 8.4302 14.9477 60 v -28.7535 26.8215 37.8587 -Impact.ttf 77 , 8.4302 14.9477 61 k -37.1570 25.7680 46.1413 -Impact.ttf 77 , 8.4302 14.9477 62 J -37.0374 16.2320 46.1413 -Impact.ttf 77 , 8.4302 14.9477 63 U -37.0360 26.8215 47.0198 -Impact.ttf 77 , 8.4302 14.9477 64 j -36.9646 13.7692 51.4610 -Impact.ttf 77 , 8.4302 14.9477 65 ( -37.0392 14.9285 46.1413 -Impact.ttf 77 , 8.4302 14.9477 66 7 -36.9976 22.3245 46.1413 -Impact.ttf 77 , 8.4302 14.9477 67 § -38.1129 25.6430 53.5180 -Impact.ttf 77 , 8.4302 14.9477 68 $ -40.6704 26.8215 54.0680 -Impact.ttf 77 , 8.4302 14.9477 69 € -38.0600 28.6058 47.8983 -Impact.ttf 77 , 8.4302 14.9477 70 / -38.0682 22.7302 48.3733 -Impact.ttf 77 , 8.4302 14.9477 71 C -37.8728 26.9465 47.8983 -Impact.ttf 77 , 8.4302 14.9477 72 * -36.9406 15.4705 13.7692 -Impact.ttf 77 , 8.4302 14.9477 73 ” -36.9892 19.2175 14.9477 -Impact.ttf 77 , 8.4302 14.9477 74 ? -37.9887 26.8215 47.0198 -Impact.ttf 77 , 8.4302 14.9477 75 { -36.8779 19.1675 54.8215 -Impact.ttf 77 , 8.4302 14.9477 76 } -37.1199 19.1675 54.8215 -Impact.ttf 77 , 8.4302 14.9477 77 , 0.0385 8.4302 14.9477 -Impact.ttf 77 , 8.4302 14.9477 78 I -37.1147 11.6430 46.1413 -Impact.ttf 77 , 8.4302 14.9477 79 ° -37.7324 18.0163 18.0163 -Impact.ttf 77 , 8.4302 14.9477 80 K -36.9920 30.3570 46.1413 -Impact.ttf 77 , 8.4302 14.9477 81 H -37.0517 27.2192 46.1413 -Impact.ttf 77 , 8.4302 14.9477 82 q -28.8666 25.8600 43.1785 -Impact.ttf 77 , 8.4302 14.9477 83 & -28.7535 33.5925 37.8587 -Impact.ttf 77 , 8.4302 14.9477 84 ’ -37.0360 8.4302 14.9477 -Impact.ttf 77 , 8.4302 14.9477 85 [ -37.0392 13.3942 46.1413 -Impact.ttf 77 , 8.4302 14.9477 86 - -13.9726 14.8785 7.9267 -Impact.ttf 77 , 8.4302 14.9477 87 Y -37.2199 27.6250 46.1413 -Impact.ttf 77 , 8.4302 14.9477 88 Q -38.0341 26.8215 52.3395 -Impact.ttf 77 , 8.4302 14.9477 89 " -37.1134 19.7175 14.0000 -Impact.ttf 77 , 8.4302 14.9477 90 ! -37.1088 12.8215 46.1413 -Impact.ttf 77 , 8.4302 14.9477 91 x -28.6293 25.1760 37.8587 -Impact.ttf 77 , 8.4302 14.9477 92 ) -37.0490 14.9285 46.1413 -Impact.ttf 77 , 8.4302 14.9477 93 = -22.0918 27.6670 16.7320 -Impact.ttf 77 , 8.4302 14.9477 94 + -27.0674 27.1773 27.1773 -Impact.ttf 77 , 8.4302 14.9477 95 X -37.0360 29.6400 46.1413 -Impact.ttf 77 , 8.4302 14.9477 96 » -27.4841 19.6198 32.7140 -Impact.ttf 77 , 8.4302 14.9477 97 ' -36.9971 8.6802 14.0000 -Impact.ttf 77 , 8.4302 14.9477 98 ¢ -36.9565 25.8600 49.5017 -Impact.ttf 77 , 8.4302 14.9477 99 Z -37.2029 22.6245 46.1413 -Impact.ttf 77 , 8.4302 14.9477 100 > -28.9499 27.6670 29.1785 -Impact.ttf 77 , 8.4302 14.9477 101 ® -34.1198 43.1785 43.3035 -Impact.ttf 77 , 8.4302 14.9477 102 © -32.8948 43.1785 42.0000 -Impact.ttf 77 , 8.4302 14.9477 103 ] -36.9591 13.3942 46.1413 -Impact.ttf 77 , 8.4302 14.9477 104 é -38.3634 25.5600 47.5698 -Impact.ttf 77 , 8.4302 14.9477 105 z -28.8801 19.3198 37.8587 -Impact.ttf 77 , 8.4302 14.9477 106 _ 13.4738 32.1413 2.8378 -Impact.ttf 77 , 8.4302 14.9477 107 ¥ -37.0263 27.6250 46.1413 -Impact.ttf 78 I 11.6430 46.1413 1 t 3.0227 17.0878 43.1785 -Impact.ttf 78 I 11.6430 46.1413 2 h 0.0000 25.8600 46.1413 -Impact.ttf 78 I 11.6430 46.1413 3 a 8.1954 24.6815 37.8587 -Impact.ttf 78 I 11.6430 46.1413 4 n 8.3529 25.8600 37.8587 -Impact.ttf 78 I 11.6430 46.1413 5 P -0.1696 25.1622 46.1413 -Impact.ttf 78 I 11.6430 46.1413 6 o 8.3274 25.5600 37.8587 -Impact.ttf 78 I 11.6430 46.1413 7 e 8.1871 25.5600 37.8587 -Impact.ttf 78 I 11.6430 46.1413 8 : 15.4488 8.6802 30.3570 -Impact.ttf 78 I 11.6430 46.1413 9 r 8.2418 17.9105 37.8587 -Impact.ttf 78 I 11.6430 46.1413 10 l -0.2850 11.1622 46.1413 -Impact.ttf 78 I 11.6430 46.1413 11 i -0.0274 11.1622 46.1413 -Impact.ttf 78 I 11.6430 46.1413 12 1 -0.1669 19.5925 46.1413 -Impact.ttf 78 I 11.6430 46.1413 13 | -0.1409 5.8425 53.6430 -Impact.ttf 78 I 11.6430 46.1413 14 N -0.0599 26.3407 46.1413 -Impact.ttf 78 I 11.6430 46.1413 15 f 0.1696 15.6593 46.1413 -Impact.ttf 78 I 11.6430 46.1413 16 g 8.4091 25.8600 44.3570 -Impact.ttf 78 I 11.6430 46.1413 17 d -0.1645 25.8600 46.1413 -Impact.ttf 78 I 11.6430 46.1413 18 W 0.1219 46.2890 46.1413 -Impact.ttf 78 I 11.6430 46.1413 19 s 8.3529 23.5030 37.8587 -Impact.ttf 78 I 11.6430 46.1413 20 c 8.0595 24.6815 37.8587 -Impact.ttf 78 I 11.6430 46.1413 21 u 8.1369 25.8600 37.8587 -Impact.ttf 78 I 11.6430 46.1413 22 3 -0.8740 25.7680 47.8983 -Impact.ttf 78 I 11.6430 46.1413 23 ~ 15.3454 26.7885 12.8907 -Impact.ttf 78 I 11.6430 46.1413 24 # 4.9730 34.6652 41.1215 -Impact.ttf 78 I 11.6430 46.1413 25 O -1.0624 26.8215 47.8983 -Impact.ttf 78 I 11.6430 46.1413 26 ` -5.0479 15.1785 7.9267 -Impact.ttf 78 I 11.6430 46.1413 27 @ -0.9829 43.1785 48.8040 -Impact.ttf 78 I 11.6430 46.1413 28 F 0.0597 20.2675 46.1413 -Impact.ttf 78 I 11.6430 46.1413 29 S -0.7928 27.5192 47.8983 -Impact.ttf 78 I 11.6430 46.1413 30 p 8.4123 25.8600 43.1785 -Impact.ttf 78 I 11.6430 46.1413 31 “ 0.0853 19.2175 14.9477 -Impact.ttf 78 I 11.6430 46.1413 32 % -0.8043 37.9837 47.0198 -Impact.ttf 78 I 11.6430 46.1413 33 £ -0.9110 28.2727 47.0198 -Impact.ttf 78 I 11.6430 46.1413 34 . 36.8767 8.6802 9.3360 -Impact.ttf 78 I 11.6430 46.1413 35 2 -0.8368 23.9837 47.0198 -Impact.ttf 78 I 11.6430 46.1413 36 5 0.1215 26.3407 47.0198 -Impact.ttf 78 I 11.6430 46.1413 37 m 8.3450 40.4657 37.8587 -Impact.ttf 78 I 11.6430 46.1413 38 V 0.1710 31.0355 46.1413 -Impact.ttf 78 I 11.6430 46.1413 39 6 -0.9559 26.3407 47.8983 -Impact.ttf 78 I 11.6430 46.1413 40 w 8.1624 38.9680 37.8587 -Impact.ttf 78 I 11.6430 46.1413 41 T -0.1039 26.3407 46.1413 -Impact.ttf 78 I 11.6430 46.1413 42 M -0.0500 36.8052 46.1413 -Impact.ttf 78 I 11.6430 46.1413 43 G -0.8604 26.9465 47.8983 -Impact.ttf 78 I 11.6430 46.1413 44 b -0.0460 25.8600 46.1413 -Impact.ttf 78 I 11.6430 46.1413 45 9 -0.7330 26.3407 47.8983 -Impact.ttf 78 I 11.6430 46.1413 46 ; 15.6559 8.6802 36.1995 -Impact.ttf 78 I 11.6430 46.1413 47 D 0.0455 26.9465 46.1413 -Impact.ttf 78 I 11.6430 46.1413 48 L 0.1280 18.8948 46.1413 -Impact.ttf 78 I 11.6430 46.1413 49 y 8.1639 27.3942 43.1785 -Impact.ttf 78 I 11.6430 46.1413 50 ‘ 0.1826 8.4302 14.9477 -Impact.ttf 78 I 11.6430 46.1413 51 \ -1.0535 23.9087 48.3733 -Impact.ttf 78 I 11.6430 46.1413 52 R -0.0495 26.3407 46.1413 -Impact.ttf 78 I 11.6430 46.1413 53 < 8.1932 27.6670 29.1785 -Impact.ttf 78 I 11.6430 46.1413 54 4 0.1877 28.6977 46.1413 -Impact.ttf 78 I 11.6430 46.1413 55 8 -0.8098 26.0407 47.8983 -Impact.ttf 78 I 11.6430 46.1413 56 0 -0.6815 26.3407 47.8983 -Impact.ttf 78 I 11.6430 46.1413 57 A 0.0006 31.5355 46.1413 -Impact.ttf 78 I 11.6430 46.1413 58 E 0.0485 20.4483 46.1413 -Impact.ttf 78 I 11.6430 46.1413 59 B 0.1201 26.9465 46.1413 -Impact.ttf 78 I 11.6430 46.1413 60 v 8.2812 26.8215 37.8587 -Impact.ttf 78 I 11.6430 46.1413 61 k 0.0185 25.7680 46.1413 -Impact.ttf 78 I 11.6430 46.1413 62 J 0.1938 16.2320 46.1413 -Impact.ttf 78 I 11.6430 46.1413 63 U -0.0774 26.8215 47.0198 -Impact.ttf 78 I 11.6430 46.1413 64 j 0.0014 13.7692 51.4610 -Impact.ttf 78 I 11.6430 46.1413 65 ( 0.0844 14.9285 46.1413 -Impact.ttf 78 I 11.6430 46.1413 66 7 0.0385 22.3245 46.1413 -Impact.ttf 78 I 11.6430 46.1413 67 § -0.7733 25.6430 53.5180 -Impact.ttf 78 I 11.6430 46.1413 68 $ -3.6692 26.8215 54.0680 -Impact.ttf 78 I 11.6430 46.1413 69 € -0.7061 28.6058 47.8983 -Impact.ttf 78 I 11.6430 46.1413 70 / -1.0178 22.7302 48.3733 -Impact.ttf 78 I 11.6430 46.1413 71 C -0.8323 26.9465 47.8983 -Impact.ttf 78 I 11.6430 46.1413 72 * 0.0115 15.4705 13.7692 -Impact.ttf 78 I 11.6430 46.1413 73 ” 0.0000 19.2175 14.9477 -Impact.ttf 78 I 11.6430 46.1413 74 ? -0.7581 26.8215 47.0198 -Impact.ttf 78 I 11.6430 46.1413 75 { -0.0977 19.1675 54.8215 -Impact.ttf 78 I 11.6430 46.1413 76 } -0.0839 19.1675 54.8215 -Impact.ttf 78 I 11.6430 46.1413 77 , 37.0503 8.4302 14.9477 -Impact.ttf 78 I 11.6430 46.1413 78 I -0.1813 11.6430 46.1413 -Impact.ttf 78 I 11.6430 46.1413 79 ° -0.7946 18.0163 18.0163 -Impact.ttf 78 I 11.6430 46.1413 80 K 0.0097 30.3570 46.1413 -Impact.ttf 78 I 11.6430 46.1413 81 H -0.1410 27.2192 46.1413 -Impact.ttf 78 I 11.6430 46.1413 82 q 8.3455 25.8600 43.1785 -Impact.ttf 78 I 11.6430 46.1413 83 & 8.3756 33.5925 37.8587 -Impact.ttf 78 I 11.6430 46.1413 84 ’ 0.0013 8.4302 14.9477 -Impact.ttf 78 I 11.6430 46.1413 85 [ -0.2585 13.3942 46.1413 -Impact.ttf 78 I 11.6430 46.1413 86 - 23.0021 14.8785 7.9267 -Impact.ttf 78 I 11.6430 46.1413 87 Y -0.0298 27.6250 46.1413 -Impact.ttf 78 I 11.6430 46.1413 88 Q -0.8785 26.8215 52.3395 -Impact.ttf 78 I 11.6430 46.1413 89 " -0.0798 19.7175 14.0000 -Impact.ttf 78 I 11.6430 46.1413 90 ! 0.1084 12.8215 46.1413 -Impact.ttf 78 I 11.6430 46.1413 91 x 8.1728 25.1760 37.8587 -Impact.ttf 78 I 11.6430 46.1413 92 ) -0.1484 14.9285 46.1413 -Impact.ttf 78 I 11.6430 46.1413 93 = 15.0684 27.6670 16.7320 -Impact.ttf 78 I 11.6430 46.1413 94 + 9.8717 27.1773 27.1773 -Impact.ttf 78 I 11.6430 46.1413 95 X -0.1186 29.6400 46.1413 -Impact.ttf 78 I 11.6430 46.1413 96 » 9.5281 19.6198 32.7140 -Impact.ttf 78 I 11.6430 46.1413 97 ' 0.2196 8.6802 14.0000 -Impact.ttf 78 I 11.6430 46.1413 98 ¢ 0.1583 25.8600 49.5017 -Impact.ttf 78 I 11.6430 46.1413 99 Z -0.0982 22.6245 46.1413 -Impact.ttf 78 I 11.6430 46.1413 100 > 8.1575 27.6670 29.1785 -Impact.ttf 78 I 11.6430 46.1413 101 ® 2.7317 43.1785 43.3035 -Impact.ttf 78 I 11.6430 46.1413 102 © 4.1413 43.1785 42.0000 -Impact.ttf 78 I 11.6430 46.1413 103 ] 0.1210 13.3942 46.1413 -Impact.ttf 78 I 11.6430 46.1413 104 é -1.4999 25.5600 47.5698 -Impact.ttf 78 I 11.6430 46.1413 105 z 8.3710 19.3198 37.8587 -Impact.ttf 78 I 11.6430 46.1413 106 _ 50.6299 32.1413 2.8378 -Impact.ttf 78 I 11.6430 46.1413 107 ¥ -0.1956 27.6250 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 1 t 3.9252 17.0878 43.1785 -Impact.ttf 79 ° 18.0163 18.0163 2 h 0.9499 25.8600 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 3 a 9.0396 24.6815 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 4 n 9.3287 25.8600 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 5 P 0.8966 25.1622 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 6 o 9.5003 25.5600 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 7 e 9.3209 25.5600 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 8 : 16.7155 8.6802 30.3570 -Impact.ttf 79 ° 18.0163 18.0163 9 r 9.1708 17.9105 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 10 l 0.9773 11.1622 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 11 i 0.8527 11.1622 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 12 1 0.8141 19.5925 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 13 | 1.0041 5.8425 53.6430 -Impact.ttf 79 ° 18.0163 18.0163 14 N 1.0870 26.3407 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 15 f 0.8011 15.6593 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 16 g 9.2022 25.8600 44.3570 -Impact.ttf 79 ° 18.0163 18.0163 17 d 0.8836 25.8600 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 18 W 0.6774 46.2890 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 19 s 8.9540 23.5030 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 20 c 9.1615 24.6815 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 21 u 9.2565 25.8600 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 22 3 -0.1812 25.7680 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 23 ~ 16.2540 26.7885 12.8907 -Impact.ttf 79 ° 18.0163 18.0163 24 # 5.9084 34.6652 41.1215 -Impact.ttf 79 ° 18.0163 18.0163 25 O 0.0000 26.8215 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 26 ` -4.4182 15.1785 7.9267 -Impact.ttf 79 ° 18.0163 18.0163 27 @ 0.2154 43.1785 48.8040 -Impact.ttf 79 ° 18.0163 18.0163 28 F 0.9569 20.2675 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 29 S 0.1794 27.5192 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 30 p 9.0868 25.8600 43.1785 -Impact.ttf 79 ° 18.0163 18.0163 31 “ 1.0519 19.2175 14.9477 -Impact.ttf 79 ° 18.0163 18.0163 32 % 0.2282 37.9837 47.0198 -Impact.ttf 79 ° 18.0163 18.0163 33 £ -0.2540 28.2727 47.0198 -Impact.ttf 79 ° 18.0163 18.0163 34 . 37.7824 8.6802 9.3360 -Impact.ttf 79 ° 18.0163 18.0163 35 2 0.0903 23.9837 47.0198 -Impact.ttf 79 ° 18.0163 18.0163 36 5 0.5866 26.3407 47.0198 -Impact.ttf 79 ° 18.0163 18.0163 37 m 9.2806 40.4657 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 38 V 0.8670 31.0355 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 39 6 -0.1456 26.3407 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 40 w 9.0261 38.9680 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 41 T 0.7686 26.3407 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 42 M 0.7233 36.8052 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 43 G 0.2835 26.9465 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 44 b 0.9597 25.8600 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 45 9 0.0129 26.3407 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 46 ; 16.6655 8.6802 36.1995 -Impact.ttf 79 ° 18.0163 18.0163 47 D 0.8317 26.9465 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 48 L 0.7733 18.8948 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 49 y 9.0868 27.3942 43.1785 -Impact.ttf 79 ° 18.0163 18.0163 50 ‘ 0.9212 8.4302 14.9477 -Impact.ttf 79 ° 18.0163 18.0163 51 \ -0.0841 23.9087 48.3733 -Impact.ttf 79 ° 18.0163 18.0163 52 R 0.5615 26.3407 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 53 < 8.9392 27.6670 29.1785 -Impact.ttf 79 ° 18.0163 18.0163 54 4 1.0083 28.6977 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 55 8 -0.0083 26.0407 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 56 0 0.0742 26.3407 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 57 A 0.8785 31.5355 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 58 E 0.7900 20.4483 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 59 B 0.7886 26.9465 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 60 v 9.0942 26.8215 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 61 k 0.9556 25.7680 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 62 J 0.9072 16.2320 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 63 U 0.6458 26.8215 47.0198 -Impact.ttf 79 ° 18.0163 18.0163 64 j 1.0731 13.7692 51.4610 -Impact.ttf 79 ° 18.0163 18.0163 65 ( 0.8830 14.9285 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 66 7 1.0294 22.3245 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 67 § -0.1339 25.6430 53.5180 -Impact.ttf 79 ° 18.0163 18.0163 68 $ -2.9483 26.8215 54.0680 -Impact.ttf 79 ° 18.0163 18.0163 69 € -0.1274 28.6058 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 70 / -0.3766 22.7302 48.3733 -Impact.ttf 79 ° 18.0163 18.0163 71 C 0.3564 26.9465 47.8983 -Impact.ttf 79 ° 18.0163 18.0163 72 * 1.2507 15.4705 13.7692 -Impact.ttf 79 ° 18.0163 18.0163 73 ” 0.7817 19.2175 14.9477 -Impact.ttf 79 ° 18.0163 18.0163 74 ? -0.0565 26.8215 47.0198 -Impact.ttf 79 ° 18.0163 18.0163 75 { 0.7015 19.1675 54.8215 -Impact.ttf 79 ° 18.0163 18.0163 76 } 1.0454 19.1675 54.8215 -Impact.ttf 79 ° 18.0163 18.0163 77 , 37.8932 8.4302 14.9477 -Impact.ttf 79 ° 18.0163 18.0163 78 I 0.9400 11.6430 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 79 ° -0.0898 18.0163 18.0163 -Impact.ttf 79 ° 18.0163 18.0163 80 K 0.9323 30.3570 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 81 H 0.4337 27.2192 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 82 q 9.2110 25.8600 43.1785 -Impact.ttf 79 ° 18.0163 18.0163 83 & 9.1995 33.5925 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 84 ’ 0.8461 8.4302 14.9477 -Impact.ttf 79 ° 18.0163 18.0163 85 [ 0.8882 13.3942 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 86 - 24.0161 14.8785 7.9267 -Impact.ttf 79 ° 18.0163 18.0163 87 Y 1.0681 27.6250 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 88 Q -0.2368 26.8215 52.3395 -Impact.ttf 79 ° 18.0163 18.0163 89 " 1.1352 19.7175 14.0000 -Impact.ttf 79 ° 18.0163 18.0163 90 ! 0.7516 12.8215 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 91 x 9.1254 25.1760 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 92 ) 0.8498 14.9285 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 93 = 15.7829 27.6670 16.7320 -Impact.ttf 79 ° 18.0163 18.0163 94 + 10.7683 27.1773 27.1773 -Impact.ttf 79 ° 18.0163 18.0163 95 X 0.7941 29.6400 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 96 » 10.7576 19.6198 32.7140 -Impact.ttf 79 ° 18.0163 18.0163 97 ' 1.0624 8.6802 14.0000 -Impact.ttf 79 ° 18.0163 18.0163 98 ¢ 1.1759 25.8600 49.5017 -Impact.ttf 79 ° 18.0163 18.0163 99 Z 0.6250 22.6245 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 100 > 8.8775 27.6670 29.1785 -Impact.ttf 79 ° 18.0163 18.0163 101 ® 3.6038 43.1785 43.3035 -Impact.ttf 79 ° 18.0163 18.0163 102 © 5.0614 43.1785 42.0000 -Impact.ttf 79 ° 18.0163 18.0163 103 ] 0.9212 13.3942 46.1413 -Impact.ttf 79 ° 18.0163 18.0163 104 é -0.6357 25.5600 47.5698 -Impact.ttf 79 ° 18.0163 18.0163 105 z 9.0739 19.3198 37.8587 -Impact.ttf 79 ° 18.0163 18.0163 106 _ 51.5079 32.1413 2.8378 -Impact.ttf 79 ° 18.0163 18.0163 107 ¥ 0.8812 27.6250 46.1413 -Impact.ttf 80 K 30.3570 46.1413 1 t 2.8538 17.0878 43.1785 -Impact.ttf 80 K 30.3570 46.1413 2 h 0.1297 25.8600 46.1413 -Impact.ttf 80 K 30.3570 46.1413 3 a 8.4932 24.6815 37.8587 -Impact.ttf 80 K 30.3570 46.1413 4 n 8.5192 25.8600 37.8587 -Impact.ttf 80 K 30.3570 46.1413 5 P 0.1301 25.1622 46.1413 -Impact.ttf 80 K 30.3570 46.1413 6 o 8.4379 25.5600 37.8587 -Impact.ttf 80 K 30.3570 46.1413 7 e 8.2427 25.5600 37.8587 -Impact.ttf 80 K 30.3570 46.1413 8 : 16.0226 8.6802 30.3570 -Impact.ttf 80 K 30.3570 46.1413 9 r 7.9530 17.9105 37.8587 -Impact.ttf 80 K 30.3570 46.1413 10 l -0.0927 11.1622 46.1413 -Impact.ttf 80 K 30.3570 46.1413 11 i -0.0927 11.1622 46.1413 -Impact.ttf 80 K 30.3570 46.1413 12 1 0.1271 19.5925 46.1413 -Impact.ttf 80 K 30.3570 46.1413 13 | 0.0937 5.8425 53.6430 -Impact.ttf 80 K 30.3570 46.1413 14 N 0.0973 26.3407 46.1413 -Impact.ttf 80 K 30.3570 46.1413 15 f -0.1301 15.6593 46.1413 -Impact.ttf 80 K 30.3570 46.1413 16 g 8.3742 25.8600 44.3570 -Impact.ttf 80 K 30.3570 46.1413 17 d -0.0357 25.8600 46.1413 -Impact.ttf 80 K 30.3570 46.1413 18 W 0.0027 46.2890 46.1413 -Impact.ttf 80 K 30.3570 46.1413 19 s 8.4067 23.5030 37.8587 -Impact.ttf 80 K 30.3570 46.1413 20 c 8.1922 24.6815 37.8587 -Impact.ttf 80 K 30.3570 46.1413 21 u 8.3711 25.8600 37.8587 -Impact.ttf 80 K 30.3570 46.1413 22 3 -0.8702 25.7680 47.8983 -Impact.ttf 80 K 30.3570 46.1413 23 ~ 15.5874 26.7885 12.8907 -Impact.ttf 80 K 30.3570 46.1413 24 # 5.2380 34.6652 41.1215 -Impact.ttf 80 K 30.3570 46.1413 25 O -1.2182 26.8215 47.8983 -Impact.ttf 80 K 30.3570 46.1413 26 ` -4.9919 15.1785 7.9267 -Impact.ttf 80 K 30.3570 46.1413 27 @ -1.2901 43.1785 48.8040 -Impact.ttf 80 K 30.3570 46.1413 28 F -0.0833 20.2675 46.1413 -Impact.ttf 80 K 30.3570 46.1413 29 S -0.9202 27.5192 47.8983 -Impact.ttf 80 K 30.3570 46.1413 30 p 8.3923 25.8600 43.1785 -Impact.ttf 80 K 30.3570 46.1413 31 “ 0.1024 19.2175 14.9477 -Impact.ttf 80 K 30.3570 46.1413 32 % -1.2242 37.9837 47.0198 -Impact.ttf 80 K 30.3570 46.1413 33 £ -0.7830 28.2727 47.0198 -Impact.ttf 80 K 30.3570 46.1413 34 . 36.8229 8.6802 9.3360 -Impact.ttf 80 K 30.3570 46.1413 35 2 -0.8011 23.9837 47.0198 -Impact.ttf 80 K 30.3570 46.1413 36 5 -0.2043 26.3407 47.0198 -Impact.ttf 80 K 30.3570 46.1413 37 m 8.3339 40.4657 37.8587 -Impact.ttf 80 K 30.3570 46.1413 38 V 0.0115 31.0355 46.1413 -Impact.ttf 80 K 30.3570 46.1413 39 6 -0.9388 26.3407 47.8983 -Impact.ttf 80 K 30.3570 46.1413 40 w 8.4137 38.9680 37.8587 -Impact.ttf 80 K 30.3570 46.1413 41 T 0.1107 26.3407 46.1413 -Impact.ttf 80 K 30.3570 46.1413 42 M 0.1441 36.8052 46.1413 -Impact.ttf 80 K 30.3570 46.1413 43 G -0.8751 26.9465 47.8983 -Impact.ttf 80 K 30.3570 46.1413 44 b 0.0987 25.8600 46.1413 -Impact.ttf 80 K 30.3570 46.1413 45 9 -0.7858 26.3407 47.8983 -Impact.ttf 80 K 30.3570 46.1413 46 ; 15.6002 8.6802 36.1995 -Impact.ttf 80 K 30.3570 46.1413 47 D -0.0599 26.9465 46.1413 -Impact.ttf 80 K 30.3570 46.1413 48 L 0.2339 18.8948 46.1413 -Impact.ttf 80 K 30.3570 46.1413 49 y 8.2353 27.3942 43.1785 -Impact.ttf 80 K 30.3570 46.1413 50 ‘ -0.0000 8.4302 14.9477 -Impact.ttf 80 K 30.3570 46.1413 51 \ -1.1842 23.9087 48.3733 -Impact.ttf 80 K 30.3570 46.1413 52 R -0.2295 26.3407 46.1413 -Impact.ttf 80 K 30.3570 46.1413 53 < 8.0449 27.6670 29.1785 -Impact.ttf 80 K 30.3570 46.1413 54 4 0.2818 28.6977 46.1413 -Impact.ttf 80 K 30.3570 46.1413 55 8 -0.9138 26.0407 47.8983 -Impact.ttf 80 K 30.3570 46.1413 56 0 -1.0129 26.3407 47.8983 -Impact.ttf 80 K 30.3570 46.1413 57 A -0.3652 31.5355 46.1413 -Impact.ttf 80 K 30.3570 46.1413 58 E -0.0704 20.4483 46.1413 -Impact.ttf 80 K 30.3570 46.1413 59 B 0.0111 26.9465 46.1413 -Impact.ttf 80 K 30.3570 46.1413 60 v 8.3923 26.8215 37.8587 -Impact.ttf 80 K 30.3570 46.1413 61 k 0.0587 25.7680 46.1413 -Impact.ttf 80 K 30.3570 46.1413 62 J -0.1696 16.2320 46.1413 -Impact.ttf 80 K 30.3570 46.1413 63 U 0.1839 26.8215 47.0198 -Impact.ttf 80 K 30.3570 46.1413 64 j 0.1553 13.7692 51.4610 -Impact.ttf 80 K 30.3570 46.1413 65 ( -0.0065 14.9285 46.1413 -Impact.ttf 80 K 30.3570 46.1413 66 7 0.1187 22.3245 46.1413 -Impact.ttf 80 K 30.3570 46.1413 67 § -0.8505 25.6430 53.5180 -Impact.ttf 80 K 30.3570 46.1413 68 $ -3.6303 26.8215 54.0680 -Impact.ttf 80 K 30.3570 46.1413 69 € -0.8071 28.6058 47.8983 -Impact.ttf 80 K 30.3570 46.1413 70 / -0.9691 22.7302 48.3733 -Impact.ttf 80 K 30.3570 46.1413 71 C -0.8368 26.9465 47.8983 -Impact.ttf 80 K 30.3570 46.1413 72 * 0.2048 15.4705 13.7692 -Impact.ttf 80 K 30.3570 46.1413 73 ” -0.1280 19.2175 14.9477 -Impact.ttf 80 K 30.3570 46.1413 74 ? -0.7946 26.8215 47.0198 -Impact.ttf 80 K 30.3570 46.1413 75 { -0.1009 19.1675 54.8215 -Impact.ttf 80 K 30.3570 46.1413 76 } -0.0224 19.1675 54.8215 -Impact.ttf 80 K 30.3570 46.1413 77 , 37.1102 8.4302 14.9477 -Impact.ttf 80 K 30.3570 46.1413 78 I -0.0583 11.6430 46.1413 -Impact.ttf 80 K 30.3570 46.1413 79 ° -0.9215 18.0163 18.0163 -Impact.ttf 80 K 30.3570 46.1413 80 K -0.2368 30.3570 46.1413 -Impact.ttf 80 K 30.3570 46.1413 81 H 0.2425 27.2192 46.1413 -Impact.ttf 80 K 30.3570 46.1413 82 q 8.0934 25.8600 43.1785 -Impact.ttf 80 K 30.3570 46.1413 83 & 8.0782 33.5925 37.8587 -Impact.ttf 80 K 30.3570 46.1413 84 ’ 0.0170 8.4302 14.9477 -Impact.ttf 80 K 30.3570 46.1413 85 [ 0.3407 13.3942 46.1413 -Impact.ttf 80 K 30.3570 46.1413 86 - 23.0179 14.8785 7.9267 -Impact.ttf 80 K 30.3570 46.1413 87 Y -0.0176 27.6250 46.1413 -Impact.ttf 80 K 30.3570 46.1413 88 Q -0.7650 26.8215 52.3395 -Impact.ttf 80 K 30.3570 46.1413 89 " 0.1558 19.7175 14.0000 -Impact.ttf 80 K 30.3570 46.1413 90 ! 0.2812 12.8215 46.1413 -Impact.ttf 80 K 30.3570 46.1413 91 x 8.2121 25.1760 37.8587 -Impact.ttf 80 K 30.3570 46.1413 92 ) -0.0181 14.9285 46.1413 -Impact.ttf 80 K 30.3570 46.1413 93 = 14.6698 27.6670 16.7320 -Impact.ttf 80 K 30.3570 46.1413 94 + 9.8119 27.1773 27.1773 -Impact.ttf 80 K 30.3570 46.1413 95 X -0.1141 29.6400 46.1413 -Impact.ttf 80 K 30.3570 46.1413 96 » 9.5281 19.6198 32.7140 -Impact.ttf 80 K 30.3570 46.1413 97 ' -0.1839 8.6802 14.0000 -Impact.ttf 80 K 30.3570 46.1413 98 ¢ 0.2562 25.8600 49.5017 -Impact.ttf 80 K 30.3570 46.1413 99 Z -0.1804 22.6245 46.1413 -Impact.ttf 80 K 30.3570 46.1413 100 > 8.1406 27.6670 29.1785 -Impact.ttf 80 K 30.3570 46.1413 101 ® 2.6824 43.1785 43.3035 -Impact.ttf 80 K 30.3570 46.1413 102 © 4.2302 43.1785 42.0000 -Impact.ttf 80 K 30.3570 46.1413 103 ] -0.0510 13.3942 46.1413 -Impact.ttf 80 K 30.3570 46.1413 104 é -1.1777 25.5600 47.5698 -Impact.ttf 80 K 30.3570 46.1413 105 z 8.1802 19.3198 37.8587 -Impact.ttf 80 K 30.3570 46.1413 106 _ 50.8023 32.1413 2.8378 -Impact.ttf 80 K 30.3570 46.1413 107 ¥ 0.2192 27.6250 46.1413 -Impact.ttf 81 H 27.2192 46.1413 1 t 2.9256 17.0878 43.1785 -Impact.ttf 81 H 27.2192 46.1413 2 h 0.3560 25.8600 46.1413 -Impact.ttf 81 H 27.2192 46.1413 3 a 8.0268 24.6815 37.8587 -Impact.ttf 81 H 27.2192 46.1413 4 n 7.9346 25.8600 37.8587 -Impact.ttf 81 H 27.2192 46.1413 5 P -0.0204 25.1622 46.1413 -Impact.ttf 81 H 27.2192 46.1413 6 o 8.4164 25.5600 37.8587 -Impact.ttf 81 H 27.2192 46.1413 7 e 8.2436 25.5600 37.8587 -Impact.ttf 81 H 27.2192 46.1413 8 : 15.7245 8.6802 30.3570 -Impact.ttf 81 H 27.2192 46.1413 9 r 8.4626 17.9105 37.8587 -Impact.ttf 81 H 27.2192 46.1413 10 l -0.1155 11.1622 46.1413 -Impact.ttf 81 H 27.2192 46.1413 11 i 0.1623 11.1622 46.1413 -Impact.ttf 81 H 27.2192 46.1413 12 1 0.2938 19.5925 46.1413 -Impact.ttf 81 H 27.2192 46.1413 13 | 0.0882 5.8425 53.6430 -Impact.ttf 81 H 27.2192 46.1413 14 N -0.0909 26.3407 46.1413 -Impact.ttf 81 H 27.2192 46.1413 15 f 0.0000 15.6593 46.1413 -Impact.ttf 81 H 27.2192 46.1413 16 g 8.3043 25.8600 44.3570 -Impact.ttf 81 H 27.2192 46.1413 17 d -0.0682 25.8600 46.1413 -Impact.ttf 81 H 27.2192 46.1413 18 W 0.0357 46.2890 46.1413 -Impact.ttf 81 H 27.2192 46.1413 19 s 8.2500 23.5030 37.8587 -Impact.ttf 81 H 27.2192 46.1413 20 c 8.5018 24.6815 37.8587 -Impact.ttf 81 H 27.2192 46.1413 21 u 8.2815 25.8600 37.8587 -Impact.ttf 81 H 27.2192 46.1413 22 3 -0.7145 25.7680 47.8983 -Impact.ttf 81 H 27.2192 46.1413 23 ~ 15.5462 26.7885 12.8907 -Impact.ttf 81 H 27.2192 46.1413 24 # 4.8155 34.6652 41.1215 -Impact.ttf 81 H 27.2192 46.1413 25 O -1.0296 26.8215 47.8983 -Impact.ttf 81 H 27.2192 46.1413 26 ` -5.0452 15.1785 7.9267 -Impact.ttf 81 H 27.2192 46.1413 27 @ -0.8428 43.1785 48.8040 -Impact.ttf 81 H 27.2192 46.1413 28 F 0.1333 20.2675 46.1413 -Impact.ttf 81 H 27.2192 46.1413 29 S -0.7459 27.5192 47.8983 -Impact.ttf 81 H 27.2192 46.1413 30 p 8.0341 25.8600 43.1785 -Impact.ttf 81 H 27.2192 46.1413 31 “ -0.1252 19.2175 14.9477 -Impact.ttf 81 H 27.2192 46.1413 32 % -0.9864 37.9837 47.0198 -Impact.ttf 81 H 27.2192 46.1413 33 £ -0.5607 28.2727 47.0198 -Impact.ttf 81 H 27.2192 46.1413 34 . 36.6412 8.6802 9.3360 -Impact.ttf 81 H 27.2192 46.1413 35 2 -0.9656 23.9837 47.0198 -Impact.ttf 81 H 27.2192 46.1413 36 5 -0.0885 26.3407 47.0198 -Impact.ttf 81 H 27.2192 46.1413 37 m 8.5268 40.4657 37.8587 -Impact.ttf 81 H 27.2192 46.1413 38 V 0.2581 31.0355 46.1413 -Impact.ttf 81 H 27.2192 46.1413 39 6 -0.7692 26.3407 47.8983 -Impact.ttf 81 H 27.2192 46.1413 40 w 7.9303 38.9680 37.8587 -Impact.ttf 81 H 27.2192 46.1413 41 T 0.0593 26.3407 46.1413 -Impact.ttf 81 H 27.2192 46.1413 42 M 0.0255 36.8052 46.1413 -Impact.ttf 81 H 27.2192 46.1413 43 G -1.1399 26.9465 47.8983 -Impact.ttf 81 H 27.2192 46.1413 44 b 0.1055 25.8600 46.1413 -Impact.ttf 81 H 27.2192 46.1413 45 9 -0.8565 26.3407 47.8983 -Impact.ttf 81 H 27.2192 46.1413 46 ; 15.6146 8.6802 36.1995 -Impact.ttf 81 H 27.2192 46.1413 47 D -0.1696 26.9465 46.1413 -Impact.ttf 81 H 27.2192 46.1413 48 L -0.1579 18.8948 46.1413 -Impact.ttf 81 H 27.2192 46.1413 49 y 8.6764 27.3942 43.1785 -Impact.ttf 81 H 27.2192 46.1413 50 ‘ 0.0844 8.4302 14.9477 -Impact.ttf 81 H 27.2192 46.1413 51 \ -1.2523 23.9087 48.3733 -Impact.ttf 81 H 27.2192 46.1413 52 R 0.1042 26.3407 46.1413 -Impact.ttf 81 H 27.2192 46.1413 53 < 8.0691 27.6670 29.1785 -Impact.ttf 81 H 27.2192 46.1413 54 4 0.3508 28.6977 46.1413 -Impact.ttf 81 H 27.2192 46.1413 55 8 -0.7733 26.0407 47.8983 -Impact.ttf 81 H 27.2192 46.1413 56 0 -0.9267 26.3407 47.8983 -Impact.ttf 81 H 27.2192 46.1413 57 A 0.2038 31.5355 46.1413 -Impact.ttf 81 H 27.2192 46.1413 58 E -0.3508 20.4483 46.1413 -Impact.ttf 81 H 27.2192 46.1413 59 B 0.1832 26.9465 46.1413 -Impact.ttf 81 H 27.2192 46.1413 60 v 8.2301 26.8215 37.8587 -Impact.ttf 81 H 27.2192 46.1413 61 k 0.1484 25.7680 46.1413 -Impact.ttf 81 H 27.2192 46.1413 62 J -0.0696 16.2320 46.1413 -Impact.ttf 81 H 27.2192 46.1413 63 U 0.0032 26.8215 47.0198 -Impact.ttf 81 H 27.2192 46.1413 64 j -0.0644 13.7692 51.4610 -Impact.ttf 81 H 27.2192 46.1413 65 ( 0.2210 14.9285 46.1413 -Impact.ttf 81 H 27.2192 46.1413 66 7 0.2484 22.3245 46.1413 -Impact.ttf 81 H 27.2192 46.1413 67 § -0.2895 25.6430 53.5180 -Impact.ttf 81 H 27.2192 46.1413 68 $ -3.9750 26.8215 54.0680 -Impact.ttf 81 H 27.2192 46.1413 69 € -0.7172 28.6058 47.8983 -Impact.ttf 81 H 27.2192 46.1413 70 / -0.8779 22.7302 48.3733 -Impact.ttf 81 H 27.2192 46.1413 71 C -1.1352 26.9465 47.8983 -Impact.ttf 81 H 27.2192 46.1413 72 * 0.0370 15.4705 13.7692 -Impact.ttf 81 H 27.2192 46.1413 73 ” 0.2113 19.2175 14.9477 -Impact.ttf 81 H 27.2192 46.1413 74 ? -0.9725 26.8215 47.0198 -Impact.ttf 81 H 27.2192 46.1413 75 { 0.0576 19.1675 54.8215 -Impact.ttf 81 H 27.2192 46.1413 76 } -0.0070 19.1675 54.8215 -Impact.ttf 81 H 27.2192 46.1413 77 , 37.2715 8.4302 14.9477 -Impact.ttf 81 H 27.2192 46.1413 78 I 0.2608 11.6430 46.1413 -Impact.ttf 81 H 27.2192 46.1413 79 ° -0.7154 18.0163 18.0163 -Impact.ttf 81 H 27.2192 46.1413 80 K 0.1071 30.3570 46.1413 -Impact.ttf 81 H 27.2192 46.1413 81 H -0.0268 27.2192 46.1413 -Impact.ttf 81 H 27.2192 46.1413 82 q 8.4281 25.8600 43.1785 -Impact.ttf 81 H 27.2192 46.1413 83 & 8.1611 33.5925 37.8587 -Impact.ttf 81 H 27.2192 46.1413 84 ’ -0.0514 8.4302 14.9477 -Impact.ttf 81 H 27.2192 46.1413 85 [ 0.1043 13.3942 46.1413 -Impact.ttf 81 H 27.2192 46.1413 86 - 23.1959 14.8785 7.9267 -Impact.ttf 81 H 27.2192 46.1413 87 Y 0.0388 27.6250 46.1413 -Impact.ttf 81 H 27.2192 46.1413 88 Q -0.5690 26.8215 52.3395 -Impact.ttf 81 H 27.2192 46.1413 89 " 0.2484 19.7175 14.0000 -Impact.ttf 81 H 27.2192 46.1413 90 ! -0.2307 12.8215 46.1413 -Impact.ttf 81 H 27.2192 46.1413 91 x 7.8788 25.1760 37.8587 -Impact.ttf 81 H 27.2192 46.1413 92 ) 0.0608 14.9285 46.1413 -Impact.ttf 81 H 27.2192 46.1413 93 = 15.0862 27.6670 16.7320 -Impact.ttf 81 H 27.2192 46.1413 94 + 10.1130 27.1773 27.1773 -Impact.ttf 81 H 27.2192 46.1413 95 X -0.4849 29.6400 46.1413 -Impact.ttf 81 H 27.2192 46.1413 96 » 9.5491 19.6198 32.7140 -Impact.ttf 81 H 27.2192 46.1413 97 ' 0.1210 8.6802 14.0000 -Impact.ttf 81 H 27.2192 46.1413 98 ¢ 0.1922 25.8600 49.5017 -Impact.ttf 81 H 27.2192 46.1413 99 Z -0.0602 22.6245 46.1413 -Impact.ttf 81 H 27.2192 46.1413 100 > 8.1903 27.6670 29.1785 -Impact.ttf 81 H 27.2192 46.1413 101 ® 2.8165 43.1785 43.3035 -Impact.ttf 81 H 27.2192 46.1413 102 © 4.3851 43.1785 42.0000 -Impact.ttf 81 H 27.2192 46.1413 103 ] -0.2198 13.3942 46.1413 -Impact.ttf 81 H 27.2192 46.1413 104 é -1.5829 25.5600 47.5698 -Impact.ttf 81 H 27.2192 46.1413 105 z 8.1871 19.3198 37.8587 -Impact.ttf 81 H 27.2192 46.1413 106 _ 50.6910 32.1413 2.8378 -Impact.ttf 81 H 27.2192 46.1413 107 ¥ 0.2224 27.6250 46.1413 -Impact.ttf 82 q 25.8600 43.1785 1 t -5.5061 17.0878 43.1785 -Impact.ttf 82 q 25.8600 43.1785 2 h -8.1852 25.8600 46.1413 -Impact.ttf 82 q 25.8600 43.1785 3 a 0.1183 24.6815 37.8587 -Impact.ttf 82 q 25.8600 43.1785 4 n -0.0857 25.8600 37.8587 -Impact.ttf 82 q 25.8600 43.1785 5 P -8.5091 25.1622 46.1413 -Impact.ttf 82 q 25.8600 43.1785 6 o -0.1269 25.5600 37.8587 -Impact.ttf 82 q 25.8600 43.1785 7 e 0.0325 25.5600 37.8587 -Impact.ttf 82 q 25.8600 43.1785 8 : 7.4674 8.6802 30.3570 -Impact.ttf 82 q 25.8600 43.1785 9 r 0.0955 17.9105 37.8587 -Impact.ttf 82 q 25.8600 43.1785 10 l -8.4724 11.1622 46.1413 -Impact.ttf 82 q 25.8600 43.1785 11 i -8.2565 11.1622 46.1413 -Impact.ttf 82 q 25.8600 43.1785 12 1 -8.2825 19.5925 46.1413 -Impact.ttf 82 q 25.8600 43.1785 13 | -8.2780 5.8425 53.6430 -Impact.ttf 82 q 25.8600 43.1785 14 N -7.8901 26.3407 46.1413 -Impact.ttf 82 q 25.8600 43.1785 15 f -8.2774 15.6593 46.1413 -Impact.ttf 82 q 25.8600 43.1785 16 g -0.0885 25.8600 44.3570 -Impact.ttf 82 q 25.8600 43.1785 17 d -8.4722 25.8600 46.1413 -Impact.ttf 82 q 25.8600 43.1785 18 W -8.2728 46.2890 46.1413 -Impact.ttf 82 q 25.8600 43.1785 19 s -0.3050 23.5030 37.8587 -Impact.ttf 82 q 25.8600 43.1785 20 c -0.1333 24.6815 37.8587 -Impact.ttf 82 q 25.8600 43.1785 21 u -0.1728 25.8600 37.8587 -Impact.ttf 82 q 25.8600 43.1785 22 3 -9.2371 25.7680 47.8983 -Impact.ttf 82 q 25.8600 43.1785 23 ~ 6.8613 26.7885 12.8907 -Impact.ttf 82 q 25.8600 43.1785 24 # -3.3967 34.6652 41.1215 -Impact.ttf 82 q 25.8600 43.1785 25 O -8.9997 26.8215 47.8983 -Impact.ttf 82 q 25.8600 43.1785 26 ` -12.9495 15.1785 7.9267 -Impact.ttf 82 q 25.8600 43.1785 27 @ -9.1540 43.1785 48.8040 -Impact.ttf 82 q 25.8600 43.1785 28 F -8.3196 20.2675 46.1413 -Impact.ttf 82 q 25.8600 43.1785 29 S -9.0368 27.5192 47.8983 -Impact.ttf 82 q 25.8600 43.1785 30 p -0.0214 25.8600 43.1785 -Impact.ttf 82 q 25.8600 43.1785 31 “ -8.0141 19.2175 14.9477 -Impact.ttf 82 q 25.8600 43.1785 32 % -9.2180 37.9837 47.0198 -Impact.ttf 82 q 25.8600 43.1785 33 £ -8.9459 28.2727 47.0198 -Impact.ttf 82 q 25.8600 43.1785 34 . 28.4551 8.6802 9.3360 -Impact.ttf 82 q 25.8600 43.1785 35 2 -9.2499 23.9837 47.0198 -Impact.ttf 82 q 25.8600 43.1785 36 5 -8.2714 26.3407 47.0198 -Impact.ttf 82 q 25.8600 43.1785 37 m -0.1626 40.4657 37.8587 -Impact.ttf 82 q 25.8600 43.1785 38 V -8.1618 31.0355 46.1413 -Impact.ttf 82 q 25.8600 43.1785 39 6 -9.3008 26.3407 47.8983 -Impact.ttf 82 q 25.8600 43.1785 40 w 0.0325 38.9680 37.8587 -Impact.ttf 82 q 25.8600 43.1785 41 T -8.4452 26.3407 46.1413 -Impact.ttf 82 q 25.8600 43.1785 42 M -8.2583 36.8052 46.1413 -Impact.ttf 82 q 25.8600 43.1785 43 G -9.1110 26.9465 47.8983 -Impact.ttf 82 q 25.8600 43.1785 44 b -8.2481 25.8600 46.1413 -Impact.ttf 82 q 25.8600 43.1785 45 9 -8.9477 26.3407 47.8983 -Impact.ttf 82 q 25.8600 43.1785 46 ; 7.7872 8.6802 36.1995 -Impact.ttf 82 q 25.8600 43.1785 47 D -8.3672 26.9465 46.1413 -Impact.ttf 82 q 25.8600 43.1785 48 L -8.5406 18.8948 46.1413 -Impact.ttf 82 q 25.8600 43.1785 49 y 0.1992 27.3942 43.1785 -Impact.ttf 82 q 25.8600 43.1785 50 ‘ -8.0974 8.4302 14.9477 -Impact.ttf 82 q 25.8600 43.1785 51 \ -9.2336 23.9087 48.3733 -Impact.ttf 82 q 25.8600 43.1785 52 R -8.2927 26.3407 46.1413 -Impact.ttf 82 q 25.8600 43.1785 53 < 0.1162 27.6670 29.1785 -Impact.ttf 82 q 25.8600 43.1785 54 4 -8.1244 28.6977 46.1413 -Impact.ttf 82 q 25.8600 43.1785 55 8 -9.2065 26.0407 47.8983 -Impact.ttf 82 q 25.8600 43.1785 56 0 -9.1086 26.3407 47.8983 -Impact.ttf 82 q 25.8600 43.1785 57 A -8.2251 31.5355 46.1413 -Impact.ttf 82 q 25.8600 43.1785 58 E -8.2333 20.4483 46.1413 -Impact.ttf 82 q 25.8600 43.1785 59 B -8.0101 26.9465 46.1413 -Impact.ttf 82 q 25.8600 43.1785 60 v -0.2196 26.8215 37.8587 -Impact.ttf 82 q 25.8600 43.1785 61 k -8.2778 25.7680 46.1413 -Impact.ttf 82 q 25.8600 43.1785 62 J -8.0574 16.2320 46.1413 -Impact.ttf 82 q 25.8600 43.1785 63 U -8.3079 26.8215 47.0198 -Impact.ttf 82 q 25.8600 43.1785 64 j -8.1212 13.7692 51.4610 -Impact.ttf 82 q 25.8600 43.1785 65 ( -8.1416 14.9285 46.1413 -Impact.ttf 82 q 25.8600 43.1785 66 7 -8.5231 22.3245 46.1413 -Impact.ttf 82 q 25.8600 43.1785 67 § -9.3349 25.6430 53.5180 -Impact.ttf 82 q 25.8600 43.1785 68 $ -12.3045 26.8215 54.0680 -Impact.ttf 82 q 25.8600 43.1785 69 € -8.9984 28.6058 47.8983 -Impact.ttf 82 q 25.8600 43.1785 70 / -9.4973 22.7302 48.3733 -Impact.ttf 82 q 25.8600 43.1785 71 C -9.1323 26.9465 47.8983 -Impact.ttf 82 q 25.8600 43.1785 72 * -8.4137 15.4705 13.7692 -Impact.ttf 82 q 25.8600 43.1785 73 ” -8.4207 19.2175 14.9477 -Impact.ttf 82 q 25.8600 43.1785 74 ? -9.0586 26.8215 47.0198 -Impact.ttf 82 q 25.8600 43.1785 75 { -8.1871 19.1675 54.8215 -Impact.ttf 82 q 25.8600 43.1785 76 } -8.5736 19.1675 54.8215 -Impact.ttf 82 q 25.8600 43.1785 77 , 28.5241 8.4302 14.9477 -Impact.ttf 82 q 25.8600 43.1785 78 I -8.1118 11.6430 46.1413 -Impact.ttf 82 q 25.8600 43.1785 79 ° -9.1754 18.0163 18.0163 -Impact.ttf 82 q 25.8600 43.1785 80 K -8.1478 30.3570 46.1413 -Impact.ttf 82 q 25.8600 43.1785 81 H -8.2798 27.2192 46.1413 -Impact.ttf 82 q 25.8600 43.1785 82 q -0.0460 25.8600 43.1785 -Impact.ttf 82 q 25.8600 43.1785 83 & -0.0742 33.5925 37.8587 -Impact.ttf 82 q 25.8600 43.1785 84 ’ -8.3567 8.4302 14.9477 -Impact.ttf 82 q 25.8600 43.1785 85 [ -8.2978 13.3942 46.1413 -Impact.ttf 82 q 25.8600 43.1785 86 - 14.4734 14.8785 7.9267 -Impact.ttf 82 q 25.8600 43.1785 87 Y -8.3938 27.6250 46.1413 -Impact.ttf 82 q 25.8600 43.1785 88 Q -9.3425 26.8215 52.3395 -Impact.ttf 82 q 25.8600 43.1785 89 " -8.5707 19.7175 14.0000 -Impact.ttf 82 q 25.8600 43.1785 90 ! -8.3567 12.8215 46.1413 -Impact.ttf 82 q 25.8600 43.1785 91 x 0.2581 25.1760 37.8587 -Impact.ttf 82 q 25.8600 43.1785 92 ) -8.3734 14.9285 46.1413 -Impact.ttf 82 q 25.8600 43.1785 93 = 6.6178 27.6670 16.7320 -Impact.ttf 82 q 25.8600 43.1785 94 + 1.7042 27.1773 27.1773 -Impact.ttf 82 q 25.8600 43.1785 95 X -8.3423 29.6400 46.1413 -Impact.ttf 82 q 25.8600 43.1785 96 » 1.3343 19.6198 32.7140 -Impact.ttf 82 q 25.8600 43.1785 97 ' -8.3280 8.6802 14.0000 -Impact.ttf 82 q 25.8600 43.1785 98 ¢ -8.1037 25.8600 49.5017 -Impact.ttf 82 q 25.8600 43.1785 99 Z -8.4108 22.6245 46.1413 -Impact.ttf 82 q 25.8600 43.1785 100 > -0.0505 27.6670 29.1785 -Impact.ttf 82 q 25.8600 43.1785 101 ® -5.2932 43.1785 43.3035 -Impact.ttf 82 q 25.8600 43.1785 102 © -4.0698 43.1785 42.0000 -Impact.ttf 82 q 25.8600 43.1785 103 ] -8.0712 13.3942 46.1413 -Impact.ttf 82 q 25.8600 43.1785 104 é -9.8436 25.5600 47.5698 -Impact.ttf 82 q 25.8600 43.1785 105 z -0.0298 19.3198 37.8587 -Impact.ttf 82 q 25.8600 43.1785 106 _ 42.2870 32.1413 2.8378 -Impact.ttf 82 q 25.8600 43.1785 107 ¥ -8.3266 27.6250 46.1413 -Impact.ttf 83 & 33.5925 37.8587 1 t -5.0175 17.0878 43.1785 -Impact.ttf 83 & 33.5925 37.8587 2 h -7.9784 25.8600 46.1413 -Impact.ttf 83 & 33.5925 37.8587 3 a 0.1377 24.6815 37.8587 -Impact.ttf 83 & 33.5925 37.8587 4 n -0.2966 25.8600 37.8587 -Impact.ttf 83 & 33.5925 37.8587 5 P -8.1941 25.1622 46.1413 -Impact.ttf 83 & 33.5925 37.8587 6 o 0.1885 25.5600 37.8587 -Impact.ttf 83 & 33.5925 37.8587 7 e -0.0742 25.5600 37.8587 -Impact.ttf 83 & 33.5925 37.8587 8 : 7.6061 8.6802 30.3570 -Impact.ttf 83 & 33.5925 37.8587 9 r 0.2262 17.9105 37.8587 -Impact.ttf 83 & 33.5925 37.8587 10 l -7.9005 11.1622 46.1413 -Impact.ttf 83 & 33.5925 37.8587 11 i -8.3266 11.1622 46.1413 -Impact.ttf 83 & 33.5925 37.8587 12 1 -8.5620 19.5925 46.1413 -Impact.ttf 83 & 33.5925 37.8587 13 | -8.1798 5.8425 53.6430 -Impact.ttf 83 & 33.5925 37.8587 14 N -8.3395 26.3407 46.1413 -Impact.ttf 83 & 33.5925 37.8587 15 f -8.2931 15.6593 46.1413 -Impact.ttf 83 & 33.5925 37.8587 16 g 0.1020 25.8600 44.3570 -Impact.ttf 83 & 33.5925 37.8587 17 d -8.0188 25.8600 46.1413 -Impact.ttf 83 & 33.5925 37.8587 18 W -7.8529 46.2890 46.1413 -Impact.ttf 83 & 33.5925 37.8587 19 s 0.1312 23.5030 37.8587 -Impact.ttf 83 & 33.5925 37.8587 20 c 0.1222 24.6815 37.8587 -Impact.ttf 83 & 33.5925 37.8587 21 u 0.1969 25.8600 37.8587 -Impact.ttf 83 & 33.5925 37.8587 22 3 -9.2071 25.7680 47.8983 -Impact.ttf 83 & 33.5925 37.8587 23 ~ 7.2605 26.7885 12.8907 -Impact.ttf 83 & 33.5925 37.8587 24 # -2.8961 34.6652 41.1215 -Impact.ttf 83 & 33.5925 37.8587 25 O -9.3435 26.8215 47.8983 -Impact.ttf 83 & 33.5925 37.8587 26 ` -13.4763 15.1785 7.9267 -Impact.ttf 83 & 33.5925 37.8587 27 @ -9.1426 43.1785 48.8040 -Impact.ttf 83 & 33.5925 37.8587 28 F -8.3123 20.2675 46.1413 -Impact.ttf 83 & 33.5925 37.8587 29 S -9.2486 27.5192 47.8983 -Impact.ttf 83 & 33.5925 37.8587 30 p -0.2938 25.8600 43.1785 -Impact.ttf 83 & 33.5925 37.8587 31 “ -8.3937 19.2175 14.9477 -Impact.ttf 83 & 33.5925 37.8587 32 % -8.9459 37.9837 47.0198 -Impact.ttf 83 & 33.5925 37.8587 33 £ -9.1572 28.2727 47.0198 -Impact.ttf 83 & 33.5925 37.8587 34 . 28.6386 8.6802 9.3360 -Impact.ttf 83 & 33.5925 37.8587 35 2 -9.3560 23.9837 47.0198 -Impact.ttf 83 & 33.5925 37.8587 36 5 -8.1898 26.3407 47.0198 -Impact.ttf 83 & 33.5925 37.8587 37 m -0.0079 40.4657 37.8587 -Impact.ttf 83 & 33.5925 37.8587 38 V -8.2710 31.0355 46.1413 -Impact.ttf 83 & 33.5925 37.8587 39 6 -9.6012 26.3407 47.8983 -Impact.ttf 83 & 33.5925 37.8587 40 w -0.0608 38.9680 37.8587 -Impact.ttf 83 & 33.5925 37.8587 41 T -8.4412 26.3407 46.1413 -Impact.ttf 83 & 33.5925 37.8587 42 M -8.4497 36.8052 46.1413 -Impact.ttf 83 & 33.5925 37.8587 43 G -9.3737 26.9465 47.8983 -Impact.ttf 83 & 33.5925 37.8587 44 b -8.0671 25.8600 46.1413 -Impact.ttf 83 & 33.5925 37.8587 45 9 -9.2124 26.3407 47.8983 -Impact.ttf 83 & 33.5925 37.8587 46 ; 7.3212 8.6802 36.1995 -Impact.ttf 83 & 33.5925 37.8587 47 D -8.4291 26.9465 46.1413 -Impact.ttf 83 & 33.5925 37.8587 48 L -8.1871 18.8948 46.1413 -Impact.ttf 83 & 33.5925 37.8587 49 y -0.0719 27.3942 43.1785 -Impact.ttf 83 & 33.5925 37.8587 50 ‘ -8.1592 8.4302 14.9477 -Impact.ttf 83 & 33.5925 37.8587 51 \ -9.4019 23.9087 48.3733 -Impact.ttf 83 & 33.5925 37.8587 52 R -8.3322 26.3407 46.1413 -Impact.ttf 83 & 33.5925 37.8587 53 < -0.0931 27.6670 29.1785 -Impact.ttf 83 & 33.5925 37.8587 54 4 -8.2139 28.6977 46.1413 -Impact.ttf 83 & 33.5925 37.8587 55 8 -9.2612 26.0407 47.8983 -Impact.ttf 83 & 33.5925 37.8587 56 0 -8.9900 26.3407 47.8983 -Impact.ttf 83 & 33.5925 37.8587 57 A -8.3511 31.5355 46.1413 -Impact.ttf 83 & 33.5925 37.8587 58 E -8.3196 20.4483 46.1413 -Impact.ttf 83 & 33.5925 37.8587 59 B -8.7075 26.9465 46.1413 -Impact.ttf 83 & 33.5925 37.8587 60 v 0.0088 26.8215 37.8587 -Impact.ttf 83 & 33.5925 37.8587 61 k -8.3637 25.7680 46.1413 -Impact.ttf 83 & 33.5925 37.8587 62 J -8.2912 16.2320 46.1413 -Impact.ttf 83 & 33.5925 37.8587 63 U -8.4347 26.8215 47.0198 -Impact.ttf 83 & 33.5925 37.8587 64 j -8.3967 13.7692 51.4610 -Impact.ttf 83 & 33.5925 37.8587 65 ( -8.5263 14.9285 46.1413 -Impact.ttf 83 & 33.5925 37.8587 66 7 -8.0954 22.3245 46.1413 -Impact.ttf 83 & 33.5925 37.8587 67 § -9.3937 25.6430 53.5180 -Impact.ttf 83 & 33.5925 37.8587 68 $ -11.8853 26.8215 54.0680 -Impact.ttf 83 & 33.5925 37.8587 69 € -9.0688 28.6058 47.8983 -Impact.ttf 83 & 33.5925 37.8587 70 / -9.4682 22.7302 48.3733 -Impact.ttf 83 & 33.5925 37.8587 71 C -9.1368 26.9465 47.8983 -Impact.ttf 83 & 33.5925 37.8587 72 * -8.2190 15.4705 13.7692 -Impact.ttf 83 & 33.5925 37.8587 73 ” -8.2409 19.2175 14.9477 -Impact.ttf 83 & 33.5925 37.8587 74 ? -9.3361 26.8215 47.0198 -Impact.ttf 83 & 33.5925 37.8587 75 { -8.1601 19.1675 54.8215 -Impact.ttf 83 & 33.5925 37.8587 76 } -8.4126 19.1675 54.8215 -Impact.ttf 83 & 33.5925 37.8587 77 , 28.8634 8.4302 14.9477 -Impact.ttf 83 & 33.5925 37.8587 78 I -8.0582 11.6430 46.1413 -Impact.ttf 83 & 33.5925 37.8587 79 ° -8.9646 18.0163 18.0163 -Impact.ttf 83 & 33.5925 37.8587 80 K -8.3395 30.3570 46.1413 -Impact.ttf 83 & 33.5925 37.8587 81 H -8.2565 27.2192 46.1413 -Impact.ttf 83 & 33.5925 37.8587 82 q 0.1698 25.8600 43.1785 -Impact.ttf 83 & 33.5925 37.8587 83 & -0.0231 33.5925 37.8587 -Impact.ttf 83 & 33.5925 37.8587 84 ’ -8.2409 8.4302 14.9477 -Impact.ttf 83 & 33.5925 37.8587 85 [ -8.2963 13.3942 46.1413 -Impact.ttf 83 & 33.5925 37.8587 86 - 14.9138 14.8785 7.9267 -Impact.ttf 83 & 33.5925 37.8587 87 Y -8.4044 27.6250 46.1413 -Impact.ttf 83 & 33.5925 37.8587 88 Q -9.1045 26.8215 52.3395 -Impact.ttf 83 & 33.5925 37.8587 89 " -8.4976 19.7175 14.0000 -Impact.ttf 83 & 33.5925 37.8587 90 ! -8.2960 12.8215 46.1413 -Impact.ttf 83 & 33.5925 37.8587 91 x 0.0500 25.1760 37.8587 -Impact.ttf 83 & 33.5925 37.8587 92 ) -8.2682 14.9285 46.1413 -Impact.ttf 83 & 33.5925 37.8587 93 = 6.5116 27.6670 16.7320 -Impact.ttf 83 & 33.5925 37.8587 94 + 1.6074 27.1773 27.1773 -Impact.ttf 83 & 33.5925 37.8587 95 X -8.3012 29.6400 46.1413 -Impact.ttf 83 & 33.5925 37.8587 96 » 1.2638 19.6198 32.7140 -Impact.ttf 83 & 33.5925 37.8587 97 ' -8.6694 8.6802 14.0000 -Impact.ttf 83 & 33.5925 37.8587 98 ¢ -8.3369 25.8600 49.5017 -Impact.ttf 83 & 33.5925 37.8587 99 Z -8.4047 22.6245 46.1413 -Impact.ttf 83 & 33.5925 37.8587 100 > -0.2288 27.6670 29.1785 -Impact.ttf 83 & 33.5925 37.8587 101 ® -5.4520 43.1785 43.3035 -Impact.ttf 83 & 33.5925 37.8587 102 © -4.3409 43.1785 42.0000 -Impact.ttf 83 & 33.5925 37.8587 103 ] -7.8802 13.3942 46.1413 -Impact.ttf 83 & 33.5925 37.8587 104 é -9.4737 25.5600 47.5698 -Impact.ttf 83 & 33.5925 37.8587 105 z 0.2224 19.3198 37.8587 -Impact.ttf 83 & 33.5925 37.8587 106 _ 42.0192 32.1413 2.8378 -Impact.ttf 83 & 33.5925 37.8587 107 ¥ -8.2696 27.6250 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 1 t 2.9628 17.0878 43.1785 -Impact.ttf 84 ’ 8.4302 14.9477 2 h 0.0153 25.8600 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 3 a 8.3637 24.6815 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 4 n 8.4521 25.8600 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 5 P 0.0000 25.1622 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 6 o 8.2013 25.5600 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 7 e 8.3512 25.5600 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 8 : 15.6294 8.6802 30.3570 -Impact.ttf 84 ’ 8.4302 14.9477 9 r 8.1226 17.9105 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 10 l 0.1553 11.1622 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 11 i 0.0000 11.1622 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 12 1 -0.0742 19.5925 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 13 | -0.2613 5.8425 53.6430 -Impact.ttf 84 ’ 8.4302 14.9477 14 N 0.0774 26.3407 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 15 f 0.1301 15.6593 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 16 g 8.3363 25.8600 44.3570 -Impact.ttf 84 ’ 8.4302 14.9477 17 d 0.0885 25.8600 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 18 W 0.0000 46.2890 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 19 s 8.2371 23.5030 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 20 c 8.2863 24.6815 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 21 u 8.4725 25.8600 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 22 3 -0.7733 25.7680 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 23 ~ 15.4266 26.7885 12.8907 -Impact.ttf 84 ’ 8.4302 14.9477 24 # 5.0198 34.6652 41.1215 -Impact.ttf 84 ’ 8.4302 14.9477 25 O -1.0124 26.8215 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 26 ` -4.9640 15.1785 7.9267 -Impact.ttf 84 ’ 8.4302 14.9477 27 @ -0.8428 43.1785 48.8040 -Impact.ttf 84 ’ 8.4302 14.9477 28 F -0.0385 20.2675 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 29 S -1.0828 27.5192 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 30 p 8.2959 25.8600 43.1785 -Impact.ttf 84 ’ 8.4302 14.9477 31 “ 0.1158 19.2175 14.9477 -Impact.ttf 84 ’ 8.4302 14.9477 32 % -0.7830 37.9837 47.0198 -Impact.ttf 84 ’ 8.4302 14.9477 33 £ -0.8850 28.2727 47.0198 -Impact.ttf 84 ’ 8.4302 14.9477 34 . 36.8410 8.6802 9.3360 -Impact.ttf 84 ’ 8.4302 14.9477 35 2 -1.0728 23.9837 47.0198 -Impact.ttf 84 ’ 8.4302 14.9477 36 5 0.1099 26.3407 47.0198 -Impact.ttf 84 ’ 8.4302 14.9477 37 m 8.3724 40.4657 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 38 V 0.0000 31.0355 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 39 6 -0.8498 26.3407 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 40 w 8.2825 38.9680 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 41 T 0.0325 26.3407 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 42 M -0.1626 36.8052 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 43 G -0.8400 26.9465 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 44 b 0.0000 25.8600 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 45 9 -0.8785 26.3407 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 46 ; 15.8584 8.6802 36.1995 -Impact.ttf 84 ’ 8.4302 14.9477 47 D -0.1766 26.9465 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 48 L -0.0417 18.8948 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 49 y 8.2825 27.3942 43.1785 -Impact.ttf 84 ’ 8.4302 14.9477 50 ‘ 0.1683 8.4302 14.9477 -Impact.ttf 84 ’ 8.4302 14.9477 51 \ -1.0043 23.9087 48.3733 -Impact.ttf 84 ’ 8.4302 14.9477 52 R -0.0417 26.3407 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 53 < 8.0417 27.6670 29.1785 -Impact.ttf 84 ’ 8.4302 14.9477 54 4 0.0857 28.6977 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 55 8 -0.9597 26.0407 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 56 0 -1.0499 26.3407 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 57 A 0.0000 31.5355 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 58 E -0.1857 20.4483 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 59 B 0.0000 26.9465 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 60 v 8.2441 26.8215 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 61 k 0.1488 25.7680 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 62 J 0.0070 16.2320 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 63 U -0.0473 26.8215 47.0198 -Impact.ttf 84 ’ 8.4302 14.9477 64 j 0.0013 13.7692 51.4610 -Impact.ttf 84 ’ 8.4302 14.9477 65 ( -0.0742 14.9285 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 66 7 0.1998 22.3245 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 67 § -0.7946 25.6430 53.5180 -Impact.ttf 84 ’ 8.4302 14.9477 68 $ -3.9791 26.8215 54.0680 -Impact.ttf 84 ’ 8.4302 14.9477 69 € -0.8753 28.6058 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 70 / -1.0535 22.7302 48.3733 -Impact.ttf 84 ’ 8.4302 14.9477 71 C -0.9740 26.9465 47.8983 -Impact.ttf 84 ’ 8.4302 14.9477 72 * 0.0000 15.4705 13.7692 -Impact.ttf 84 ’ 8.4302 14.9477 73 ” -0.0839 19.2175 14.9477 -Impact.ttf 84 ’ 8.4302 14.9477 74 ? -0.9142 26.8215 47.0198 -Impact.ttf 84 ’ 8.4302 14.9477 75 { 0.0955 19.1675 54.8215 -Impact.ttf 84 ’ 8.4302 14.9477 76 } 0.0000 19.1675 54.8215 -Impact.ttf 84 ’ 8.4302 14.9477 77 , 37.0378 8.4302 14.9477 -Impact.ttf 84 ’ 8.4302 14.9477 78 I 0.1696 11.6430 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 79 ° -0.8688 18.0163 18.0163 -Impact.ttf 84 ’ 8.4302 14.9477 80 K 0.0301 30.3570 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 81 H -0.0073 27.2192 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 82 q 8.1986 25.8600 43.1785 -Impact.ttf 84 ’ 8.4302 14.9477 83 & 8.2403 33.5925 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 84 ’ -0.1905 8.4302 14.9477 -Impact.ttf 84 ’ 8.4302 14.9477 85 [ 0.0325 13.3942 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 86 - 23.0360 14.8785 7.9267 -Impact.ttf 84 ’ 8.4302 14.9477 87 Y 0.0357 27.6250 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 88 Q -0.8498 26.8215 52.3395 -Impact.ttf 84 ’ 8.4302 14.9477 89 " 0.1131 19.7175 14.0000 -Impact.ttf 84 ’ 8.4302 14.9477 90 ! -0.0626 12.8215 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 91 x 8.2825 25.1760 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 92 ) -0.0018 14.9285 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 93 = 14.8219 27.6670 16.7320 -Impact.ttf 84 ’ 8.4302 14.9477 94 + 9.7703 27.1773 27.1773 -Impact.ttf 84 ’ 8.4302 14.9477 95 X 0.1651 29.6400 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 96 » 9.6205 19.6198 32.7140 -Impact.ttf 84 ’ 8.4302 14.9477 97 ' -0.0955 8.6802 14.0000 -Impact.ttf 84 ’ 8.4302 14.9477 98 ¢ 0.1463 25.8600 49.5017 -Impact.ttf 84 ’ 8.4302 14.9477 99 Z 0.0000 22.6245 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 100 > 8.1932 27.6670 29.1785 -Impact.ttf 84 ’ 8.4302 14.9477 101 ® 2.9249 43.1785 43.3035 -Impact.ttf 84 ’ 8.4302 14.9477 102 © 4.1668 43.1785 42.0000 -Impact.ttf 84 ’ 8.4302 14.9477 103 ] -0.1516 13.3942 46.1413 -Impact.ttf 84 ’ 8.4302 14.9477 104 é -1.2473 25.5600 47.5698 -Impact.ttf 84 ’ 8.4302 14.9477 105 z 8.1941 19.3198 37.8587 -Impact.ttf 84 ’ 8.4302 14.9477 106 _ 50.5910 32.1413 2.8378 -Impact.ttf 84 ’ 8.4302 14.9477 107 ¥ 0.1224 27.6250 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 1 t 3.0050 17.0878 43.1785 -Impact.ttf 85 [ 13.3942 46.1413 2 h -0.1158 25.8600 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 3 a 8.4196 24.6815 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 4 n 8.2324 25.8600 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 5 P 0.2196 25.1622 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 6 o 8.0543 25.5600 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 7 e 8.3942 25.5600 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 8 : 15.7388 8.6802 30.3570 -Impact.ttf 85 [ 13.3942 46.1413 9 r 8.4216 17.9105 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 10 l -0.1669 11.1622 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 11 i -0.0853 11.1622 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 12 1 -0.0440 19.5925 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 13 | 0.2578 5.8425 53.6430 -Impact.ttf 85 [ 13.3942 46.1413 14 N -0.0385 26.3407 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 15 f 0.1794 15.6593 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 16 g 8.4021 25.8600 44.3570 -Impact.ttf 85 [ 13.3942 46.1413 17 d -0.0412 25.8600 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 18 W -0.0955 46.2890 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 19 s 8.5370 23.5030 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 20 c 8.2083 24.6815 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 21 u 8.2556 25.8600 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 22 3 -0.8307 25.7680 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 23 ~ 15.4734 26.7885 12.8907 -Impact.ttf 85 [ 13.3942 46.1413 24 # 4.6169 34.6652 41.1215 -Impact.ttf 85 [ 13.3942 46.1413 25 O -0.8043 26.8215 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 26 ` -4.9353 15.1785 7.9267 -Impact.ttf 85 [ 13.3942 46.1413 27 @ -0.9202 43.1785 48.8040 -Impact.ttf 85 [ 13.3942 46.1413 28 F 0.0027 20.2675 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 29 S -0.7928 27.5192 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 30 p 8.3664 25.8600 43.1785 -Impact.ttf 85 [ 13.3942 46.1413 31 “ 0.0500 19.2175 14.9477 -Impact.ttf 85 [ 13.3942 46.1413 32 % -0.8470 37.9837 47.0198 -Impact.ttf 85 [ 13.3942 46.1413 33 £ -0.8039 28.2727 47.0198 -Impact.ttf 85 [ 13.3942 46.1413 34 . 36.9276 8.6802 9.3360 -Impact.ttf 85 [ 13.3942 46.1413 35 2 -0.8183 23.9837 47.0198 -Impact.ttf 85 [ 13.3942 46.1413 36 5 0.2595 26.3407 47.0198 -Impact.ttf 85 [ 13.3942 46.1413 37 m 8.3812 40.4657 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 38 V -0.0538 31.0355 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 39 6 -0.7900 26.3407 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 40 w 8.3780 38.9680 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 41 T -0.1724 26.3407 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 42 M -0.1553 36.8052 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 43 G -0.7868 26.9465 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 44 b 0.1456 25.8600 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 45 9 -0.8928 26.3407 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 46 ; 15.7866 8.6802 36.1995 -Impact.ttf 85 [ 13.3942 46.1413 47 D -0.0866 26.9465 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 48 L 0.0885 18.8948 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 49 y 8.4734 27.3942 43.1785 -Impact.ttf 85 [ 13.3942 46.1413 50 ‘ 0.0298 8.4302 14.9477 -Impact.ttf 85 [ 13.3942 46.1413 51 \ -1.1523 23.9087 48.3733 -Impact.ttf 85 [ 13.3942 46.1413 52 R -0.0534 26.3407 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 53 < 8.2799 27.6670 29.1785 -Impact.ttf 85 [ 13.3942 46.1413 54 4 -0.1484 28.6977 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 55 8 -0.8243 26.0407 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 56 0 -0.9355 26.3407 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 57 A 0.2882 31.5355 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 58 E 0.2841 20.4483 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 59 B 0.1756 26.9465 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 60 v 8.1069 26.8215 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 61 k 0.0885 25.7680 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 62 J -0.0027 16.2320 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 63 U -0.1176 26.8215 47.0198 -Impact.ttf 85 [ 13.3942 46.1413 64 j 0.2330 13.7692 51.4610 -Impact.ttf 85 [ 13.3942 46.1413 65 ( -0.0045 14.9285 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 66 7 -0.2613 22.3245 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 67 § -0.9527 25.6430 53.5180 -Impact.ttf 85 [ 13.3942 46.1413 68 $ -3.7938 26.8215 54.0680 -Impact.ttf 85 [ 13.3942 46.1413 69 € -0.8715 28.6058 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 70 / -1.1164 22.7302 48.3733 -Impact.ttf 85 [ 13.3942 46.1413 71 C -0.7232 26.9465 47.8983 -Impact.ttf 85 [ 13.3942 46.1413 72 * 0.1339 15.4705 13.7692 -Impact.ttf 85 [ 13.3942 46.1413 73 ” -0.0073 19.2175 14.9477 -Impact.ttf 85 [ 13.3942 46.1413 74 ? -0.8757 26.8215 47.0198 -Impact.ttf 85 [ 13.3942 46.1413 75 { -0.0042 19.1675 54.8215 -Impact.ttf 85 [ 13.3942 46.1413 76 } -0.0032 19.1675 54.8215 -Impact.ttf 85 [ 13.3942 46.1413 77 , 37.1625 8.4302 14.9477 -Impact.ttf 85 [ 13.3942 46.1413 78 I -0.2995 11.6430 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 79 ° -0.8089 18.0163 18.0163 -Impact.ttf 85 [ 13.3942 46.1413 80 K -0.0312 30.3570 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 81 H 0.1553 27.2192 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 82 q 8.6666 25.8600 43.1785 -Impact.ttf 85 [ 13.3942 46.1413 83 & 8.4664 33.5925 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 84 ’ 0.0482 8.4302 14.9477 -Impact.ttf 85 [ 13.3942 46.1413 85 [ -0.1813 13.3942 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 86 - 23.2803 14.8785 7.9267 -Impact.ttf 85 [ 13.3942 46.1413 87 Y -0.0060 27.6250 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 88 Q -0.7347 26.8215 52.3395 -Impact.ttf 85 [ 13.3942 46.1413 89 " -0.0430 19.7175 14.0000 -Impact.ttf 85 [ 13.3942 46.1413 90 ! 0.2476 12.8215 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 91 x 8.2583 25.1760 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 92 ) 0.1826 14.9285 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 93 = 14.8686 27.6670 16.7320 -Impact.ttf 85 [ 13.3942 46.1413 94 + 9.7076 27.1773 27.1773 -Impact.ttf 85 [ 13.3942 46.1413 95 X -0.0455 29.6400 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 96 » 9.6126 19.6198 32.7140 -Impact.ttf 85 [ 13.3942 46.1413 97 ' -0.0542 8.6802 14.0000 -Impact.ttf 85 [ 13.3942 46.1413 98 ¢ 0.0712 25.8600 49.5017 -Impact.ttf 85 [ 13.3942 46.1413 99 Z -0.0552 22.6245 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 100 > 8.1960 27.6670 29.1785 -Impact.ttf 85 [ 13.3942 46.1413 101 ® 2.8350 43.1785 43.3035 -Impact.ttf 85 [ 13.3942 46.1413 102 © 4.0041 43.1785 42.0000 -Impact.ttf 85 [ 13.3942 46.1413 103 ] 0.0417 13.3942 46.1413 -Impact.ttf 85 [ 13.3942 46.1413 104 é -1.6287 25.5600 47.5698 -Impact.ttf 85 [ 13.3942 46.1413 105 z 8.5008 19.3198 37.8587 -Impact.ttf 85 [ 13.3942 46.1413 106 _ 50.4416 32.1413 2.8378 -Impact.ttf 85 [ 13.3942 46.1413 107 ¥ -0.0841 27.6250 46.1413 -Impact.ttf 86 - 14.8785 7.9267 1 t -20.0747 17.0878 43.1785 -Impact.ttf 86 - 14.8785 7.9267 2 h -23.3011 25.8600 46.1413 -Impact.ttf 86 - 14.8785 7.9267 3 a -14.8003 24.6815 37.8587 -Impact.ttf 86 - 14.8785 7.9267 4 n -14.5723 25.8600 37.8587 -Impact.ttf 86 - 14.8785 7.9267 5 P -22.8807 25.1622 46.1413 -Impact.ttf 86 - 14.8785 7.9267 6 o -14.8749 25.5600 37.8587 -Impact.ttf 86 - 14.8785 7.9267 7 e -14.7392 25.5600 37.8587 -Impact.ttf 86 - 14.8785 7.9267 8 : -7.2101 8.6802 30.3570 -Impact.ttf 86 - 14.8785 7.9267 9 r -14.4264 17.9105 37.8587 -Impact.ttf 86 - 14.8785 7.9267 10 l -23.2497 11.1622 46.1413 -Impact.ttf 86 - 14.8785 7.9267 11 i -23.0263 11.1622 46.1413 -Impact.ttf 86 - 14.8785 7.9267 12 1 -23.0690 19.5925 46.1413 -Impact.ttf 86 - 14.8785 7.9267 13 | -23.4169 5.8425 53.6430 -Impact.ttf 86 - 14.8785 7.9267 14 N -23.0620 26.3407 46.1413 -Impact.ttf 86 - 14.8785 7.9267 15 f -22.8377 15.6593 46.1413 -Impact.ttf 86 - 14.8785 7.9267 16 g -14.7548 25.8600 44.3570 -Impact.ttf 86 - 14.8785 7.9267 17 d -23.1519 25.8600 46.1413 -Impact.ttf 86 - 14.8785 7.9267 18 W -23.0605 46.2890 46.1413 -Impact.ttf 86 - 14.8785 7.9267 19 s -14.8861 23.5030 37.8587 -Impact.ttf 86 - 14.8785 7.9267 20 c -14.8374 24.6815 37.8587 -Impact.ttf 86 - 14.8785 7.9267 21 u -14.8606 25.8600 37.8587 -Impact.ttf 86 - 14.8785 7.9267 22 3 -23.9228 25.7680 47.8983 -Impact.ttf 86 - 14.8785 7.9267 23 ~ -7.5710 26.7885 12.8907 -Impact.ttf 86 - 14.8785 7.9267 24 # -17.8351 34.6652 41.1215 -Impact.ttf 86 - 14.8785 7.9267 25 O -24.1559 26.8215 47.8983 -Impact.ttf 86 - 14.8785 7.9267 26 ` -28.1243 15.1785 7.9267 -Impact.ttf 86 - 14.8785 7.9267 27 @ -23.9243 43.1785 48.8040 -Impact.ttf 86 - 14.8785 7.9267 28 F -23.0129 20.2675 46.1413 -Impact.ttf 86 - 14.8785 7.9267 29 S -23.6903 27.5192 47.8983 -Impact.ttf 86 - 14.8785 7.9267 30 p -14.4373 25.8600 43.1785 -Impact.ttf 86 - 14.8785 7.9267 31 “ -22.9443 19.2175 14.9477 -Impact.ttf 86 - 14.8785 7.9267 32 % -23.9502 37.9837 47.0198 -Impact.ttf 86 - 14.8785 7.9267 33 £ -24.0031 28.2727 47.0198 -Impact.ttf 86 - 14.8785 7.9267 34 . 13.8577 8.6802 9.3360 -Impact.ttf 86 - 14.8785 7.9267 35 2 -23.9163 23.9837 47.0198 -Impact.ttf 86 - 14.8785 7.9267 36 5 -22.9898 26.3407 47.0198 -Impact.ttf 86 - 14.8785 7.9267 37 m -14.8193 40.4657 37.8587 -Impact.ttf 86 - 14.8785 7.9267 38 V -23.1959 31.0355 46.1413 -Impact.ttf 86 - 14.8785 7.9267 39 6 -23.8159 26.3407 47.8983 -Impact.ttf 86 - 14.8785 7.9267 40 w -14.6821 38.9680 37.8587 -Impact.ttf 86 - 14.8785 7.9267 41 T -23.1304 26.3407 46.1413 -Impact.ttf 86 - 14.8785 7.9267 42 M -22.9272 36.8052 46.1413 -Impact.ttf 86 - 14.8785 7.9267 43 G -24.2667 26.9465 47.8983 -Impact.ttf 86 - 14.8785 7.9267 44 b -23.1699 25.8600 46.1413 -Impact.ttf 86 - 14.8785 7.9267 45 9 -23.7987 26.3407 47.8983 -Impact.ttf 86 - 14.8785 7.9267 46 ; -7.2160 8.6802 36.1995 -Impact.ttf 86 - 14.8785 7.9267 47 D -23.0346 26.9465 46.1413 -Impact.ttf 86 - 14.8785 7.9267 48 L -22.8104 18.8948 46.1413 -Impact.ttf 86 - 14.8785 7.9267 49 y -14.9301 27.3942 43.1785 -Impact.ttf 86 - 14.8785 7.9267 50 ‘ -23.1804 8.4302 14.9477 -Impact.ttf 86 - 14.8785 7.9267 51 \ -24.2221 23.9087 48.3733 -Impact.ttf 86 - 14.8785 7.9267 52 R -23.0624 26.3407 46.1413 -Impact.ttf 86 - 14.8785 7.9267 53 < -14.9926 27.6670 29.1785 -Impact.ttf 86 - 14.8785 7.9267 54 4 -22.7380 28.6977 46.1413 -Impact.ttf 86 - 14.8785 7.9267 55 8 -23.8333 26.0407 47.8983 -Impact.ttf 86 - 14.8785 7.9267 56 0 -23.8371 26.3407 47.8983 -Impact.ttf 86 - 14.8785 7.9267 57 A -22.9104 31.5355 46.1413 -Impact.ttf 86 - 14.8785 7.9267 58 E -22.9799 20.4483 46.1413 -Impact.ttf 86 - 14.8785 7.9267 59 B -23.1013 26.9465 46.1413 -Impact.ttf 86 - 14.8785 7.9267 60 v -14.7470 26.8215 37.8587 -Impact.ttf 86 - 14.8785 7.9267 61 k -23.1111 25.7680 46.1413 -Impact.ttf 86 - 14.8785 7.9267 62 J -23.3753 16.2320 46.1413 -Impact.ttf 86 - 14.8785 7.9267 63 U -22.7845 26.8215 47.0198 -Impact.ttf 86 - 14.8785 7.9267 64 j -23.0003 13.7692 51.4610 -Impact.ttf 86 - 14.8785 7.9267 65 ( -23.1134 14.9285 46.1413 -Impact.ttf 86 - 14.8785 7.9267 66 7 -22.8293 22.3245 46.1413 -Impact.ttf 86 - 14.8785 7.9267 67 § -23.5469 25.6430 53.5180 -Impact.ttf 86 - 14.8785 7.9267 68 $ -26.6648 26.8215 54.0680 -Impact.ttf 86 - 14.8785 7.9267 69 € -24.0336 28.6058 47.8983 -Impact.ttf 86 - 14.8785 7.9267 70 / -24.1010 22.7302 48.3733 -Impact.ttf 86 - 14.8785 7.9267 71 C -24.1443 26.9465 47.8983 -Impact.ttf 86 - 14.8785 7.9267 72 * -23.0658 15.4705 13.7692 -Impact.ttf 86 - 14.8785 7.9267 73 ” -22.9161 19.2175 14.9477 -Impact.ttf 86 - 14.8785 7.9267 74 ? -24.0276 26.8215 47.0198 -Impact.ttf 86 - 14.8785 7.9267 75 { -22.9906 19.1675 54.8215 -Impact.ttf 86 - 14.8785 7.9267 76 } -23.1675 19.1675 54.8215 -Impact.ttf 86 - 14.8785 7.9267 77 , 13.9193 8.4302 14.9477 -Impact.ttf 86 - 14.8785 7.9267 78 I -22.9573 11.6430 46.1413 -Impact.ttf 86 - 14.8785 7.9267 79 ° -24.0896 18.0163 18.0163 -Impact.ttf 86 - 14.8785 7.9267 80 K -22.9591 30.3570 46.1413 -Impact.ttf 86 - 14.8785 7.9267 81 H -22.7852 27.2192 46.1413 -Impact.ttf 86 - 14.8785 7.9267 82 q -14.5890 25.8600 43.1785 -Impact.ttf 86 - 14.8785 7.9267 83 & -14.6019 33.5925 37.8587 -Impact.ttf 86 - 14.8785 7.9267 84 ’ -22.8247 8.4302 14.9477 -Impact.ttf 86 - 14.8785 7.9267 85 [ -22.8173 13.3942 46.1413 -Impact.ttf 86 - 14.8785 7.9267 86 - 0.1553 14.8785 7.9267 -Impact.ttf 86 - 14.8785 7.9267 87 Y -22.9933 27.6250 46.1413 -Impact.ttf 86 - 14.8785 7.9267 88 Q -23.7175 26.8215 52.3395 -Impact.ttf 86 - 14.8785 7.9267 89 " -22.9948 19.7175 14.0000 -Impact.ttf 86 - 14.8785 7.9267 90 ! -23.1816 12.8215 46.1413 -Impact.ttf 86 - 14.8785 7.9267 91 x -14.6261 25.1760 37.8587 -Impact.ttf 86 - 14.8785 7.9267 92 ) -23.0203 14.9285 46.1413 -Impact.ttf 86 - 14.8785 7.9267 93 = -8.2044 27.6670 16.7320 -Impact.ttf 86 - 14.8785 7.9267 94 + -13.1800 27.1773 27.1773 -Impact.ttf 86 - 14.8785 7.9267 95 X -23.1491 29.6400 46.1413 -Impact.ttf 86 - 14.8785 7.9267 96 » -13.3897 19.6198 32.7140 -Impact.ttf 86 - 14.8785 7.9267 97 ' -23.4124 8.6802 14.0000 -Impact.ttf 86 - 14.8785 7.9267 98 ¢ -22.9967 25.8600 49.5017 -Impact.ttf 86 - 14.8785 7.9267 99 Z -23.0513 22.6245 46.1413 -Impact.ttf 86 - 14.8785 7.9267 100 > -14.6844 27.6670 29.1785 -Impact.ttf 86 - 14.8785 7.9267 101 ® -20.2581 43.1785 43.3035 -Impact.ttf 86 - 14.8785 7.9267 102 © -18.9753 43.1785 42.0000 -Impact.ttf 86 - 14.8785 7.9267 103 ] -22.8334 13.3942 46.1413 -Impact.ttf 86 - 14.8785 7.9267 104 é -24.4780 25.5600 47.5698 -Impact.ttf 86 - 14.8785 7.9267 105 z -15.0560 19.3198 37.8587 -Impact.ttf 86 - 14.8785 7.9267 106 _ 27.5192 32.1413 2.8378 -Impact.ttf 86 - 14.8785 7.9267 107 ¥ -23.0828 27.6250 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 1 t 2.9558 17.0878 43.1785 -Impact.ttf 87 Y 27.6250 46.1413 2 h 0.1710 25.8600 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 3 a 8.3853 24.6815 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 4 n 7.9530 25.8600 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 5 P 0.0111 25.1622 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 6 o 8.4809 25.5600 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 7 e 8.2970 25.5600 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 8 : 15.8721 8.6802 30.3570 -Impact.ttf 87 Y 27.6250 46.1413 9 r 8.2051 17.9105 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 10 l -0.0851 11.1622 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 11 i -0.1713 11.1622 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 12 1 0.2943 19.5925 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 13 | 0.1256 5.8425 53.6430 -Impact.ttf 87 Y 27.6250 46.1413 14 N -0.1784 26.3407 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 15 f -0.0922 15.6593 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 16 g 8.2056 25.8600 44.3570 -Impact.ttf 87 Y 27.6250 46.1413 17 d 0.0658 25.8600 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 18 W 0.3327 46.2890 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 19 s 8.4109 23.5030 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 20 c 8.3599 24.6815 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 21 u 8.2409 25.8600 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 22 3 -0.9670 25.7680 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 23 ~ 15.3964 26.7885 12.8907 -Impact.ttf 87 Y 27.6250 46.1413 24 # 4.9483 34.6652 41.1215 -Impact.ttf 87 Y 27.6250 46.1413 25 O -0.6203 26.8215 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 26 ` -5.0201 15.1785 7.9267 -Impact.ttf 87 Y 27.6250 46.1413 27 @ -1.2775 43.1785 48.8040 -Impact.ttf 87 Y 27.6250 46.1413 28 F 0.2113 20.2675 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 29 S -0.7914 27.5192 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 30 p 8.2441 25.8600 43.1785 -Impact.ttf 87 Y 27.6250 46.1413 31 “ -0.0966 19.2175 14.9477 -Impact.ttf 87 Y 27.6250 46.1413 32 % -0.5643 37.9837 47.0198 -Impact.ttf 87 Y 27.6250 46.1413 33 £ -0.5750 28.2727 47.0198 -Impact.ttf 87 Y 27.6250 46.1413 34 . 36.7955 8.6802 9.3360 -Impact.ttf 87 Y 27.6250 46.1413 35 2 -0.6801 23.9837 47.0198 -Impact.ttf 87 Y 27.6250 46.1413 36 5 -0.0539 26.3407 47.0198 -Impact.ttf 87 Y 27.6250 46.1413 37 m 8.3710 40.4657 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 38 V 0.1000 31.0355 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 39 6 -0.7326 26.3407 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 40 w 8.0991 38.9680 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 41 T -0.1067 26.3407 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 42 M -0.1780 36.8052 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 43 G -0.9104 26.9465 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 44 b 0.0069 25.8600 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 45 9 -0.6787 26.3407 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 46 ; 15.6050 8.6802 36.1995 -Impact.ttf 87 Y 27.6250 46.1413 47 D -0.0045 26.9465 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 48 L -0.0222 18.8948 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 49 y 8.1430 27.3942 43.1785 -Impact.ttf 87 Y 27.6250 46.1413 50 ‘ -0.0000 8.4302 14.9477 -Impact.ttf 87 Y 27.6250 46.1413 51 \ -0.9591 23.9087 48.3733 -Impact.ttf 87 Y 27.6250 46.1413 52 R 0.0555 26.3407 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 53 < 8.2804 27.6670 29.1785 -Impact.ttf 87 Y 27.6250 46.1413 54 4 0.1826 28.6977 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 55 8 -0.8802 26.0407 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 56 0 -0.4521 26.3407 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 57 A -0.0514 31.5355 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 58 E -0.0699 20.4483 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 59 B 0.0264 26.9465 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 60 v 8.2325 26.8215 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 61 k -0.1738 25.7680 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 62 J 0.1728 16.2320 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 63 U 0.2794 26.8215 47.0198 -Impact.ttf 87 Y 27.6250 46.1413 64 j 0.0658 13.7692 51.4610 -Impact.ttf 87 Y 27.6250 46.1413 65 ( 0.1048 14.9285 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 66 7 -0.0015 22.3245 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 67 § -1.0954 25.6430 53.5180 -Impact.ttf 87 Y 27.6250 46.1413 68 $ -3.6673 26.8215 54.0680 -Impact.ttf 87 Y 27.6250 46.1413 69 € -0.8043 28.6058 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 70 / -1.1421 22.7302 48.3733 -Impact.ttf 87 Y 27.6250 46.1413 71 C -0.8536 26.9465 47.8983 -Impact.ttf 87 Y 27.6250 46.1413 72 * -0.0768 15.4705 13.7692 -Impact.ttf 87 Y 27.6250 46.1413 73 ” 0.1074 19.2175 14.9477 -Impact.ttf 87 Y 27.6250 46.1413 74 ? -1.0059 26.8215 47.0198 -Impact.ttf 87 Y 27.6250 46.1413 75 { 0.0756 19.1675 54.8215 -Impact.ttf 87 Y 27.6250 46.1413 76 } -0.2373 19.1675 54.8215 -Impact.ttf 87 Y 27.6250 46.1413 77 , 36.8275 8.4302 14.9477 -Impact.ttf 87 Y 27.6250 46.1413 78 I 0.0917 11.6430 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 79 ° -0.6959 18.0163 18.0163 -Impact.ttf 87 Y 27.6250 46.1413 80 K 0.1585 30.3570 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 81 H 0.1186 27.2192 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 82 q 8.3140 25.8600 43.1785 -Impact.ttf 87 Y 27.6250 46.1413 83 & 8.0819 33.5925 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 84 ’ 0.1893 8.4302 14.9477 -Impact.ttf 87 Y 27.6250 46.1413 85 [ -0.1014 13.3942 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 86 - 23.0809 14.8785 7.9267 -Impact.ttf 87 Y 27.6250 46.1413 87 Y 0.0187 27.6250 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 88 Q -0.9440 26.8215 52.3395 -Impact.ttf 87 Y 27.6250 46.1413 89 " -0.2026 19.7175 14.0000 -Impact.ttf 87 Y 27.6250 46.1413 90 ! 0.0353 12.8215 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 91 x 8.1569 25.1760 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 92 ) -0.3022 14.9285 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 93 = 14.8515 27.6670 16.7320 -Impact.ttf 87 Y 27.6250 46.1413 94 + 9.8517 27.1773 27.1773 -Impact.ttf 87 Y 27.6250 46.1413 95 X -0.0462 29.6400 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 96 » 9.7535 19.6198 32.7140 -Impact.ttf 87 Y 27.6250 46.1413 97 ' -0.1868 8.6802 14.0000 -Impact.ttf 87 Y 27.6250 46.1413 98 ¢ 0.0949 25.8600 49.5017 -Impact.ttf 87 Y 27.6250 46.1413 99 Z -0.0812 22.6245 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 100 > 7.8847 27.6670 29.1785 -Impact.ttf 87 Y 27.6250 46.1413 101 ® 2.8948 43.1785 43.3035 -Impact.ttf 87 Y 27.6250 46.1413 102 © 4.2682 43.1785 42.0000 -Impact.ttf 87 Y 27.6250 46.1413 103 ] 0.0629 13.3942 46.1413 -Impact.ttf 87 Y 27.6250 46.1413 104 é -1.4312 25.5600 47.5698 -Impact.ttf 87 Y 27.6250 46.1413 105 z 8.2038 19.3198 37.8587 -Impact.ttf 87 Y 27.6250 46.1413 106 _ 50.5019 32.1413 2.8378 -Impact.ttf 87 Y 27.6250 46.1413 107 ¥ -0.1998 27.6250 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 1 t 3.9610 17.0878 43.1785 -Impact.ttf 88 Q 26.8215 52.3395 2 h 0.7771 25.8600 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 3 a 9.2981 24.6815 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 4 n 8.9803 25.8600 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 5 P 1.0642 25.1622 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 6 o 9.1387 25.5600 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 7 e 9.2568 25.5600 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 8 : 16.6340 8.6802 30.3570 -Impact.ttf 88 Q 26.8215 52.3395 9 r 9.0386 17.9105 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 10 l 0.9073 11.1622 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 11 i 0.6778 11.1622 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 12 1 0.8858 19.5925 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 13 | 0.6515 5.8425 53.6430 -Impact.ttf 88 Q 26.8215 52.3395 14 N 0.7242 26.3407 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 15 f 0.7459 15.6593 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 16 g 9.2463 25.8600 44.3570 -Impact.ttf 88 Q 26.8215 52.3395 17 d 1.0723 25.8600 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 18 W 0.7162 46.2890 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 19 s 8.9871 23.5030 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 20 c 9.1077 24.6815 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 21 u 9.0242 25.8600 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 22 3 -0.1052 25.7680 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 23 ~ 16.4935 26.7885 12.8907 -Impact.ttf 88 Q 26.8215 52.3395 24 # 5.7932 34.6652 41.1215 -Impact.ttf 88 Q 26.8215 52.3395 25 O 0.1853 26.8215 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 26 ` -4.2152 15.1785 7.9267 -Impact.ttf 88 Q 26.8215 52.3395 27 @ 0.1382 43.1785 48.8040 -Impact.ttf 88 Q 26.8215 52.3395 28 F 0.9554 20.2675 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 29 S -0.0812 27.5192 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 30 p 8.8439 25.8600 43.1785 -Impact.ttf 88 Q 26.8215 52.3395 31 “ 0.9299 19.2175 14.9477 -Impact.ttf 88 Q 26.8215 52.3395 32 % -0.0441 37.9837 47.0198 -Impact.ttf 88 Q 26.8215 52.3395 33 £ 0.0269 28.2727 47.0198 -Impact.ttf 88 Q 26.8215 52.3395 34 . 37.6421 8.6802 9.3360 -Impact.ttf 88 Q 26.8215 52.3395 35 2 0.1001 23.9837 47.0198 -Impact.ttf 88 Q 26.8215 52.3395 36 5 0.8011 26.3407 47.0198 -Impact.ttf 88 Q 26.8215 52.3395 37 m 8.9552 40.4657 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 38 V 1.1172 31.0355 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 39 6 -0.3666 26.3407 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 40 w 9.1586 38.9680 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 41 T 0.8086 26.3407 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 42 M 0.9629 36.8052 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 43 G -0.1178 26.9465 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 44 b 0.7386 25.8600 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 45 9 0.0343 26.3407 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 46 ; 16.8964 8.6802 36.1995 -Impact.ttf 88 Q 26.8215 52.3395 47 D 0.8400 26.9465 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 48 L 0.7594 18.8948 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 49 y 8.8927 27.3942 43.1785 -Impact.ttf 88 Q 26.8215 52.3395 50 ‘ 0.7104 8.4302 14.9477 -Impact.ttf 88 Q 26.8215 52.3395 51 \ -0.1236 23.9087 48.3733 -Impact.ttf 88 Q 26.8215 52.3395 52 R 0.7848 26.3407 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 53 < 9.0958 27.6670 29.1785 -Impact.ttf 88 Q 26.8215 52.3395 54 4 0.9767 28.6977 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 55 8 -0.1014 26.0407 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 56 0 0.0368 26.3407 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 57 A 0.8641 31.5355 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 58 E 0.7224 20.4483 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 59 B 0.8071 26.9465 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 60 v 8.8660 26.8215 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 61 k 0.8942 25.7680 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 62 J 0.9055 16.2320 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 63 U 0.7806 26.8215 47.0198 -Impact.ttf 88 Q 26.8215 52.3395 64 j 1.1515 13.7692 51.4610 -Impact.ttf 88 Q 26.8215 52.3395 65 ( 0.7603 14.9285 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 66 7 0.6985 22.3245 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 67 § -0.1144 25.6430 53.5180 -Impact.ttf 88 Q 26.8215 52.3395 68 $ -2.8070 26.8215 54.0680 -Impact.ttf 88 Q 26.8215 52.3395 69 € 0.1331 28.6058 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 70 / -0.1125 22.7302 48.3733 -Impact.ttf 88 Q 26.8215 52.3395 71 C 0.0830 26.9465 47.8983 -Impact.ttf 88 Q 26.8215 52.3395 72 * 0.9180 15.4705 13.7692 -Impact.ttf 88 Q 26.8215 52.3395 73 ” 0.8385 19.2175 14.9477 -Impact.ttf 88 Q 26.8215 52.3395 74 ? 0.0226 26.8215 47.0198 -Impact.ttf 88 Q 26.8215 52.3395 75 { 1.0416 19.1675 54.8215 -Impact.ttf 88 Q 26.8215 52.3395 76 } 0.9966 19.1675 54.8215 -Impact.ttf 88 Q 26.8215 52.3395 77 , 37.9964 8.4302 14.9477 -Impact.ttf 88 Q 26.8215 52.3395 78 I 1.0801 11.6430 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 79 ° 0.4032 18.0163 18.0163 -Impact.ttf 88 Q 26.8215 52.3395 80 K 1.0411 30.3570 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 81 H 0.8966 27.2192 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 82 q 9.1763 25.8600 43.1785 -Impact.ttf 88 Q 26.8215 52.3395 83 & 8.8932 33.5925 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 84 ’ 0.8785 8.4302 14.9477 -Impact.ttf 88 Q 26.8215 52.3395 85 [ 0.9620 13.3942 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 86 - 23.7420 14.8785 7.9267 -Impact.ttf 88 Q 26.8215 52.3395 87 Y 0.9382 27.6250 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 88 Q -0.0708 26.8215 52.3395 -Impact.ttf 88 Q 26.8215 52.3395 89 " 1.0777 19.7175 14.0000 -Impact.ttf 88 Q 26.8215 52.3395 90 ! 1.0967 12.8215 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 91 x 9.0081 25.1760 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 92 ) 0.8572 14.9285 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 93 = 15.7773 27.6670 16.7320 -Impact.ttf 88 Q 26.8215 52.3395 94 + 10.8262 27.1773 27.1773 -Impact.ttf 88 Q 26.8215 52.3395 95 X 0.9091 29.6400 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 96 » 10.7673 19.6198 32.7140 -Impact.ttf 88 Q 26.8215 52.3395 97 ' 0.5555 8.6802 14.0000 -Impact.ttf 88 Q 26.8215 52.3395 98 ¢ 0.8821 25.8600 49.5017 -Impact.ttf 88 Q 26.8215 52.3395 99 Z 0.9272 22.6245 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 100 > 9.1973 27.6670 29.1785 -Impact.ttf 88 Q 26.8215 52.3395 101 ® 3.8711 43.1785 43.3035 -Impact.ttf 88 Q 26.8215 52.3395 102 © 4.8539 43.1785 42.0000 -Impact.ttf 88 Q 26.8215 52.3395 103 ] 0.7330 13.3942 46.1413 -Impact.ttf 88 Q 26.8215 52.3395 104 é -0.5260 25.5600 47.5698 -Impact.ttf 88 Q 26.8215 52.3395 105 z 9.0753 19.3198 37.8587 -Impact.ttf 88 Q 26.8215 52.3395 106 _ 51.4166 32.1413 2.8378 -Impact.ttf 88 Q 26.8215 52.3395 107 ¥ 0.7557 27.6250 46.1413 -Impact.ttf 89 " 19.7175 14.0000 1 t 2.8886 17.0878 43.1785 -Impact.ttf 89 " 19.7175 14.0000 2 h 0.0882 25.8600 46.1413 -Impact.ttf 89 " 19.7175 14.0000 3 a 8.0810 24.6815 37.8587 -Impact.ttf 89 " 19.7175 14.0000 4 n 8.4424 25.8600 37.8587 -Impact.ttf 89 " 19.7175 14.0000 5 P -0.1973 25.1622 46.1413 -Impact.ttf 89 " 19.7175 14.0000 6 o 8.3956 25.5600 37.8587 -Impact.ttf 89 " 19.7175 14.0000 7 e 8.1513 25.5600 37.8587 -Impact.ttf 89 " 19.7175 14.0000 8 : 15.9214 8.6802 30.3570 -Impact.ttf 89 " 19.7175 14.0000 9 r 8.0370 17.9105 37.8587 -Impact.ttf 89 " 19.7175 14.0000 10 l 0.0240 11.1622 46.1413 -Impact.ttf 89 " 19.7175 14.0000 11 i 0.1668 11.1622 46.1413 -Impact.ttf 89 " 19.7175 14.0000 12 1 0.2364 19.5925 46.1413 -Impact.ttf 89 " 19.7175 14.0000 13 | -0.1429 5.8425 53.6430 -Impact.ttf 89 " 19.7175 14.0000 14 N -0.1395 26.3407 46.1413 -Impact.ttf 89 " 19.7175 14.0000 15 f 0.3948 15.6593 46.1413 -Impact.ttf 89 " 19.7175 14.0000 16 g 8.2825 25.8600 44.3570 -Impact.ttf 89 " 19.7175 14.0000 17 d 0.1669 25.8600 46.1413 -Impact.ttf 89 " 19.7175 14.0000 18 W -0.0032 46.2890 46.1413 -Impact.ttf 89 " 19.7175 14.0000 19 s 8.3494 23.5030 37.8587 -Impact.ttf 89 " 19.7175 14.0000 20 c 8.3854 24.6815 37.8587 -Impact.ttf 89 " 19.7175 14.0000 21 u 8.2337 25.8600 37.8587 -Impact.ttf 89 " 19.7175 14.0000 22 3 -0.7186 25.7680 47.8983 -Impact.ttf 89 " 19.7175 14.0000 23 ~ 15.4507 26.7885 12.8907 -Impact.ttf 89 " 19.7175 14.0000 24 # 5.1866 34.6652 41.1215 -Impact.ttf 89 " 19.7175 14.0000 25 O -0.7116 26.8215 47.8983 -Impact.ttf 89 " 19.7175 14.0000 26 ` -4.9672 15.1785 7.9267 -Impact.ttf 89 " 19.7175 14.0000 27 @ -0.7019 43.1785 48.8040 -Impact.ttf 89 " 19.7175 14.0000 28 F -0.0742 20.2675 46.1413 -Impact.ttf 89 " 19.7175 14.0000 29 S -0.8460 27.5192 47.8983 -Impact.ttf 89 " 19.7175 14.0000 30 p 8.6700 25.8600 43.1785 -Impact.ttf 89 " 19.7175 14.0000 31 “ 0.1938 19.2175 14.9477 -Impact.ttf 89 " 19.7175 14.0000 32 % -0.8257 37.9837 47.0198 -Impact.ttf 89 " 19.7175 14.0000 33 £ -0.8734 28.2727 47.0198 -Impact.ttf 89 " 19.7175 14.0000 34 . 36.6426 8.6802 9.3360 -Impact.ttf 89 " 19.7175 14.0000 35 2 -0.9355 23.9837 47.0198 -Impact.ttf 89 " 19.7175 14.0000 36 5 -0.1998 26.3407 47.0198 -Impact.ttf 89 " 19.7175 14.0000 37 m 8.1452 40.4657 37.8587 -Impact.ttf 89 " 19.7175 14.0000 38 V 0.0742 31.0355 46.1413 -Impact.ttf 89 " 19.7175 14.0000 39 6 -0.7159 26.3407 47.8983 -Impact.ttf 89 " 19.7175 14.0000 40 w 8.0415 38.9680 37.8587 -Impact.ttf 89 " 19.7175 14.0000 41 T 0.0000 26.3407 46.1413 -Impact.ttf 89 " 19.7175 14.0000 42 M 0.0885 36.8052 46.1413 -Impact.ttf 89 " 19.7175 14.0000 43 G -1.0268 26.9465 47.8983 -Impact.ttf 89 " 19.7175 14.0000 44 b 0.0111 25.8600 46.1413 -Impact.ttf 89 " 19.7175 14.0000 45 9 -0.8479 26.3407 47.8983 -Impact.ttf 89 " 19.7175 14.0000 46 ; 15.8616 8.6802 36.1995 -Impact.ttf 89 " 19.7175 14.0000 47 D -0.1111 26.9465 46.1413 -Impact.ttf 89 " 19.7175 14.0000 48 L 0.0254 18.8948 46.1413 -Impact.ttf 89 " 19.7175 14.0000 49 y 8.0758 27.3942 43.1785 -Impact.ttf 89 " 19.7175 14.0000 50 ‘ -0.1871 8.4302 14.9477 -Impact.ttf 89 " 19.7175 14.0000 51 \ -1.1490 23.9087 48.3733 -Impact.ttf 89 " 19.7175 14.0000 52 R 0.1696 26.3407 46.1413 -Impact.ttf 89 " 19.7175 14.0000 53 < 8.2603 27.6670 29.1785 -Impact.ttf 89 " 19.7175 14.0000 54 4 -0.0339 28.6977 46.1413 -Impact.ttf 89 " 19.7175 14.0000 55 8 -1.1750 26.0407 47.8983 -Impact.ttf 89 " 19.7175 14.0000 56 0 -0.8785 26.3407 47.8983 -Impact.ttf 89 " 19.7175 14.0000 57 A -0.1909 31.5355 46.1413 -Impact.ttf 89 " 19.7175 14.0000 58 E 0.2377 20.4483 46.1413 -Impact.ttf 89 " 19.7175 14.0000 59 B 0.0417 26.9465 46.1413 -Impact.ttf 89 " 19.7175 14.0000 60 v 8.0457 26.8215 37.8587 -Impact.ttf 89 " 19.7175 14.0000 61 k 0.0417 25.7680 46.1413 -Impact.ttf 89 " 19.7175 14.0000 62 J 0.0742 16.2320 46.1413 -Impact.ttf 89 " 19.7175 14.0000 63 U 0.0714 26.8215 47.0198 -Impact.ttf 89 " 19.7175 14.0000 64 j -0.0357 13.7692 51.4610 -Impact.ttf 89 " 19.7175 14.0000 65 ( 0.1163 14.9285 46.1413 -Impact.ttf 89 " 19.7175 14.0000 66 7 -0.2766 22.3245 46.1413 -Impact.ttf 89 " 19.7175 14.0000 67 § -0.8688 25.6430 53.5180 -Impact.ttf 89 " 19.7175 14.0000 68 $ -3.7984 26.8215 54.0680 -Impact.ttf 89 " 19.7175 14.0000 69 € -0.5717 28.6058 47.8983 -Impact.ttf 89 " 19.7175 14.0000 70 / -0.8514 22.7302 48.3733 -Impact.ttf 89 " 19.7175 14.0000 71 C -0.9838 26.9465 47.8983 -Impact.ttf 89 " 19.7175 14.0000 72 * -0.1826 15.4705 13.7692 -Impact.ttf 89 " 19.7175 14.0000 73 ” 0.0083 19.2175 14.9477 -Impact.ttf 89 " 19.7175 14.0000 74 ? -0.7844 26.8215 47.0198 -Impact.ttf 89 " 19.7175 14.0000 75 { 0.1097 19.1675 54.8215 -Impact.ttf 89 " 19.7175 14.0000 76 } -0.0240 19.1675 54.8215 -Impact.ttf 89 " 19.7175 14.0000 77 , 37.0045 8.4302 14.9477 -Impact.ttf 89 " 19.7175 14.0000 78 I 0.0472 11.6430 46.1413 -Impact.ttf 89 " 19.7175 14.0000 79 ° -0.5787 18.0163 18.0163 -Impact.ttf 89 " 19.7175 14.0000 80 K -0.1058 30.3570 46.1413 -Impact.ttf 89 " 19.7175 14.0000 81 H -0.0152 27.2192 46.1413 -Impact.ttf 89 " 19.7175 14.0000 82 q 8.3591 25.8600 43.1785 -Impact.ttf 89 " 19.7175 14.0000 83 & 8.2798 33.5925 37.8587 -Impact.ttf 89 " 19.7175 14.0000 84 ’ -0.0254 8.4302 14.9477 -Impact.ttf 89 " 19.7175 14.0000 85 [ -0.0885 13.3942 46.1413 -Impact.ttf 89 " 19.7175 14.0000 86 - 23.0490 14.8785 7.9267 -Impact.ttf 89 " 19.7175 14.0000 87 Y 0.0927 27.6250 46.1413 -Impact.ttf 89 " 19.7175 14.0000 88 Q -0.8400 26.8215 52.3395 -Impact.ttf 89 " 19.7175 14.0000 89 " -0.0181 19.7175 14.0000 -Impact.ttf 89 " 19.7175 14.0000 90 ! -0.1143 12.8215 46.1413 -Impact.ttf 89 " 19.7175 14.0000 91 x 8.4137 25.1760 37.8587 -Impact.ttf 89 " 19.7175 14.0000 92 ) 0.1076 14.9285 46.1413 -Impact.ttf 89 " 19.7175 14.0000 93 = 14.9942 27.6670 16.7320 -Impact.ttf 89 " 19.7175 14.0000 94 + 9.6891 27.1773 27.1773 -Impact.ttf 89 " 19.7175 14.0000 95 X -0.0111 29.6400 46.1413 -Impact.ttf 89 " 19.7175 14.0000 96 » 9.8690 19.6198 32.7140 -Impact.ttf 89 " 19.7175 14.0000 97 ' 0.0000 8.6802 14.0000 -Impact.ttf 89 " 19.7175 14.0000 98 ¢ 0.0508 25.8600 49.5017 -Impact.ttf 89 " 19.7175 14.0000 99 Z 0.1214 22.6245 46.1413 -Impact.ttf 89 " 19.7175 14.0000 100 > 8.0621 27.6670 29.1785 -Impact.ttf 89 " 19.7175 14.0000 101 ® 2.9536 43.1785 43.3035 -Impact.ttf 89 " 19.7175 14.0000 102 © 4.1340 43.1785 42.0000 -Impact.ttf 89 " 19.7175 14.0000 103 ] 0.3709 13.3942 46.1413 -Impact.ttf 89 " 19.7175 14.0000 104 é -1.4428 25.5600 47.5698 -Impact.ttf 89 " 19.7175 14.0000 105 z 8.4290 19.3198 37.8587 -Impact.ttf 89 " 19.7175 14.0000 106 _ 50.6507 32.1413 2.8378 -Impact.ttf 89 " 19.7175 14.0000 107 ¥ 0.0417 27.6250 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 1 t 3.0138 17.0878 43.1785 -Impact.ttf 90 ! 12.8215 46.1413 2 h 0.0213 25.8600 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 3 a 8.2293 24.6815 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 4 n 8.2891 25.8600 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 5 P -0.0000 25.1622 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 6 o 8.4186 25.5600 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 7 e 8.1758 25.5600 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 8 : 15.8598 8.6802 30.3570 -Impact.ttf 90 ! 12.8215 46.1413 9 r 8.3428 17.9105 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 10 l -0.0833 11.1622 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 11 i 0.0000 11.1622 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 12 1 -0.0500 19.5925 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 13 | -0.0775 5.8425 53.6430 -Impact.ttf 90 ! 12.8215 46.1413 14 N 0.0000 26.3407 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 15 f 0.0774 15.6593 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 16 g 8.3539 25.8600 44.3570 -Impact.ttf 90 ! 12.8215 46.1413 17 d 0.0357 25.8600 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 18 W -0.1280 46.2890 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 19 s 8.3182 23.5030 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 20 c 8.4406 24.6815 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 21 u 8.3020 25.8600 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 22 3 -0.5360 25.7680 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 23 ~ 15.2741 26.7885 12.8907 -Impact.ttf 90 ! 12.8215 46.1413 24 # 4.8617 34.6652 41.1215 -Impact.ttf 90 ! 12.8215 46.1413 25 O -0.6180 26.8215 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 26 ` -4.9997 15.1785 7.9267 -Impact.ttf 90 ! 12.8215 46.1413 27 @ -1.0547 43.1785 48.8040 -Impact.ttf 90 ! 12.8215 46.1413 28 F 0.0330 20.2675 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 29 S -0.7159 27.5192 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 30 p 8.4664 25.8600 43.1785 -Impact.ttf 90 ! 12.8215 46.1413 31 “ 0.0769 19.2175 14.9477 -Impact.ttf 90 ! 12.8215 46.1413 32 % -0.8368 37.9837 47.0198 -Impact.ttf 90 ! 12.8215 46.1413 33 £ -0.8368 28.2727 47.0198 -Impact.ttf 90 ! 12.8215 46.1413 34 . 36.7612 8.6802 9.3360 -Impact.ttf 90 ! 12.8215 46.1413 35 2 -0.7099 23.9837 47.0198 -Impact.ttf 90 ! 12.8215 46.1413 36 5 -0.1812 26.3407 47.0198 -Impact.ttf 90 ! 12.8215 46.1413 37 m 8.2349 40.4657 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 38 V 0.0000 31.0355 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 39 6 -1.0301 26.3407 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 40 w 8.3924 38.9680 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 41 T -0.0385 26.3407 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 42 M 0.0455 36.8052 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 43 G -0.8785 26.9465 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 44 b -0.1061 25.8600 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 45 9 -0.9888 26.3407 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 46 ; 15.5934 8.6802 36.1995 -Impact.ttf 90 ! 12.8215 46.1413 47 D -0.1339 26.9465 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 48 L -0.0045 18.8948 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 49 y 8.3318 27.3942 43.1785 -Impact.ttf 90 ! 12.8215 46.1413 50 ‘ 0.0801 8.4302 14.9477 -Impact.ttf 90 ! 12.8215 46.1413 51 \ -0.9423 23.9087 48.3733 -Impact.ttf 90 ! 12.8215 46.1413 52 R -0.0538 26.3407 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 53 < 8.4388 27.6670 29.1785 -Impact.ttf 90 ! 12.8215 46.1413 54 4 0.2521 28.6977 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 55 8 -0.9045 26.0407 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 56 0 -1.0338 26.3407 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 57 A -0.0125 31.5355 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 58 E 0.2256 20.4483 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 59 B -0.2498 26.9465 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 60 v 8.1871 26.8215 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 61 k -0.0626 25.7680 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 62 J 0.1516 16.2320 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 63 U 0.1775 26.8215 47.0198 -Impact.ttf 90 ! 12.8215 46.1413 64 j -0.0325 13.7692 51.4610 -Impact.ttf 90 ! 12.8215 46.1413 65 ( -0.0240 14.9285 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 66 7 0.0742 22.3245 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 67 § -0.8757 25.6430 53.5180 -Impact.ttf 90 ! 12.8215 46.1413 68 $ -3.7855 26.8215 54.0680 -Impact.ttf 90 ! 12.8215 46.1413 69 € -0.9684 28.6058 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 70 / -1.1347 22.7302 48.3733 -Impact.ttf 90 ! 12.8215 46.1413 71 C -1.1515 26.9465 47.8983 -Impact.ttf 90 ! 12.8215 46.1413 72 * 0.0812 15.4705 13.7692 -Impact.ttf 90 ! 12.8215 46.1413 73 ” 0.2119 19.2175 14.9477 -Impact.ttf 90 ! 12.8215 46.1413 74 ? -0.9142 26.8215 47.0198 -Impact.ttf 90 ! 12.8215 46.1413 75 { 0.1224 19.1675 54.8215 -Impact.ttf 90 ! 12.8215 46.1413 76 } -0.2035 19.1675 54.8215 -Impact.ttf 90 ! 12.8215 46.1413 77 , 37.0430 8.4302 14.9477 -Impact.ttf 90 ! 12.8215 46.1413 78 I 0.1339 11.6430 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 79 ° -1.2307 18.0163 18.0163 -Impact.ttf 90 ! 12.8215 46.1413 80 K -0.0357 30.3570 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 81 H -0.1071 27.2192 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 82 q 8.4725 25.8600 43.1785 -Impact.ttf 90 ! 12.8215 46.1413 83 & 8.2612 33.5925 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 84 ’ -0.0032 8.4302 14.9477 -Impact.ttf 90 ! 12.8215 46.1413 85 [ -0.2068 13.3942 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 86 - 22.9646 14.8785 7.9267 -Impact.ttf 90 ! 12.8215 46.1413 87 Y 0.0885 27.6250 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 88 Q -1.0411 26.8215 52.3395 -Impact.ttf 90 ! 12.8215 46.1413 89 " -0.0455 19.7175 14.0000 -Impact.ttf 90 ! 12.8215 46.1413 90 ! 0.0073 12.8215 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 91 x 8.4998 25.1760 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 92 ) 0.0886 14.9285 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 93 = 15.1899 27.6670 16.7320 -Impact.ttf 90 ! 12.8215 46.1413 94 + 9.9709 27.1773 27.1773 -Impact.ttf 90 ! 12.8215 46.1413 95 X 0.1126 29.6400 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 96 » 9.6418 19.6198 32.7140 -Impact.ttf 90 ! 12.8215 46.1413 97 ' -0.1228 8.6802 14.0000 -Impact.ttf 90 ! 12.8215 46.1413 98 ¢ 0.0393 25.8600 49.5017 -Impact.ttf 90 ! 12.8215 46.1413 99 Z -0.0760 22.6245 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 100 > 8.0879 27.6670 29.1785 -Impact.ttf 90 ! 12.8215 46.1413 101 ® 2.6111 43.1785 43.3035 -Impact.ttf 90 ! 12.8215 46.1413 102 © 3.9573 43.1785 42.0000 -Impact.ttf 90 ! 12.8215 46.1413 103 ] 0.3184 13.3942 46.1413 -Impact.ttf 90 ! 12.8215 46.1413 104 é -1.3400 25.5600 47.5698 -Impact.ttf 90 ! 12.8215 46.1413 105 z 8.1569 19.3198 37.8587 -Impact.ttf 90 ! 12.8215 46.1413 106 _ 50.4023 32.1413 2.8378 -Impact.ttf 90 ! 12.8215 46.1413 107 ¥ -0.0742 27.6250 46.1413 -Impact.ttf 91 x 25.1760 37.8587 1 t -5.0560 17.0878 43.1785 -Impact.ttf 91 x 25.1760 37.8587 2 h -8.4281 25.8600 46.1413 -Impact.ttf 91 x 25.1760 37.8587 3 a 0.0515 24.6815 37.8587 -Impact.ttf 91 x 25.1760 37.8587 4 n -0.1401 25.8600 37.8587 -Impact.ttf 91 x 25.1760 37.8587 5 P -7.9470 25.1622 46.1413 -Impact.ttf 91 x 25.1760 37.8587 6 o -0.0000 25.5600 37.8587 -Impact.ttf 91 x 25.1760 37.8587 7 e -0.2613 25.5600 37.8587 -Impact.ttf 91 x 25.1760 37.8587 8 : 7.3061 8.6802 30.3570 -Impact.ttf 91 x 25.1760 37.8587 9 r -0.1228 17.9105 37.8587 -Impact.ttf 91 x 25.1760 37.8587 10 l -8.4137 11.1622 46.1413 -Impact.ttf 91 x 25.1760 37.8587 11 i -8.5119 11.1622 46.1413 -Impact.ttf 91 x 25.1760 37.8587 12 1 -8.1167 19.5925 46.1413 -Impact.ttf 91 x 25.1760 37.8587 13 | -8.3637 5.8425 53.6430 -Impact.ttf 91 x 25.1760 37.8587 14 N -8.2441 26.3407 46.1413 -Impact.ttf 91 x 25.1760 37.8587 15 f -8.0804 15.6593 46.1413 -Impact.ttf 91 x 25.1760 37.8587 16 g -0.2026 25.8600 44.3570 -Impact.ttf 91 x 25.1760 37.8587 17 d -8.0433 25.8600 46.1413 -Impact.ttf 91 x 25.1760 37.8587 18 W -8.2700 46.2890 46.1413 -Impact.ttf 91 x 25.1760 37.8587 19 s -0.1711 23.5030 37.8587 -Impact.ttf 91 x 25.1760 37.8587 20 c 0.1978 24.6815 37.8587 -Impact.ttf 91 x 25.1760 37.8587 21 u -0.1637 25.8600 37.8587 -Impact.ttf 91 x 25.1760 37.8587 22 3 -9.3478 25.7680 47.8983 -Impact.ttf 91 x 25.1760 37.8587 23 ~ 7.1825 26.7885 12.8907 -Impact.ttf 91 x 25.1760 37.8587 24 # -3.0676 34.6652 41.1215 -Impact.ttf 91 x 25.1760 37.8587 25 O -9.2287 26.8215 47.8983 -Impact.ttf 91 x 25.1760 37.8587 26 ` -13.1626 15.1785 7.9267 -Impact.ttf 91 x 25.1760 37.8587 27 @ -9.2352 43.1785 48.8040 -Impact.ttf 91 x 25.1760 37.8587 28 F -8.4479 20.2675 46.1413 -Impact.ttf 91 x 25.1760 37.8587 29 S -9.1999 27.5192 47.8983 -Impact.ttf 91 x 25.1760 37.8587 30 p 0.0812 25.8600 43.1785 -Impact.ttf 91 x 25.1760 37.8587 31 “ -8.4111 19.2175 14.9477 -Impact.ttf 91 x 25.1760 37.8587 32 % -9.5080 37.9837 47.0198 -Impact.ttf 91 x 25.1760 37.8587 33 £ -9.2282 28.2727 47.0198 -Impact.ttf 91 x 25.1760 37.8587 34 . 28.5584 8.6802 9.3360 -Impact.ttf 91 x 25.1760 37.8587 35 2 -8.9882 23.9837 47.0198 -Impact.ttf 91 x 25.1760 37.8587 36 5 -8.5379 26.3407 47.0198 -Impact.ttf 91 x 25.1760 37.8587 37 m -0.1812 40.4657 37.8587 -Impact.ttf 91 x 25.1760 37.8587 38 V -8.2013 31.0355 46.1413 -Impact.ttf 91 x 25.1760 37.8587 39 6 -9.2352 26.3407 47.8983 -Impact.ttf 91 x 25.1760 37.8587 40 w 0.2934 38.9680 37.8587 -Impact.ttf 91 x 25.1760 37.8587 41 T -8.3942 26.3407 46.1413 -Impact.ttf 91 x 25.1760 37.8587 42 M -8.2793 36.8052 46.1413 -Impact.ttf 91 x 25.1760 37.8587 43 G -9.2644 26.9465 47.8983 -Impact.ttf 91 x 25.1760 37.8587 44 b -8.2459 25.8600 46.1413 -Impact.ttf 91 x 25.1760 37.8587 45 9 -8.7070 26.3407 47.8983 -Impact.ttf 91 x 25.1760 37.8587 46 ; 7.8410 8.6802 36.1995 -Impact.ttf 91 x 25.1760 37.8587 47 D -8.2968 26.9465 46.1413 -Impact.ttf 91 x 25.1760 37.8587 48 L -8.3539 18.8948 46.1413 -Impact.ttf 91 x 25.1760 37.8587 49 y 0.2716 27.3942 43.1785 -Impact.ttf 91 x 25.1760 37.8587 50 ‘ -8.4466 8.4302 14.9477 -Impact.ttf 91 x 25.1760 37.8587 51 \ -9.3702 23.9087 48.3733 -Impact.ttf 91 x 25.1760 37.8587 52 R -8.3391 26.3407 46.1413 -Impact.ttf 91 x 25.1760 37.8587 53 < -0.1347 27.6670 29.1785 -Impact.ttf 91 x 25.1760 37.8587 54 4 -8.0994 28.6977 46.1413 -Impact.ttf 91 x 25.1760 37.8587 55 8 -9.0414 26.0407 47.8983 -Impact.ttf 91 x 25.1760 37.8587 56 0 -8.9216 26.3407 47.8983 -Impact.ttf 91 x 25.1760 37.8587 57 A -8.2968 31.5355 46.1413 -Impact.ttf 91 x 25.1760 37.8587 58 E -8.0220 20.4483 46.1413 -Impact.ttf 91 x 25.1760 37.8587 59 B -8.2129 26.9465 46.1413 -Impact.ttf 91 x 25.1760 37.8587 60 v 0.0000 26.8215 37.8587 -Impact.ttf 91 x 25.1760 37.8587 61 k -8.3159 25.7680 46.1413 -Impact.ttf 91 x 25.1760 37.8587 62 J -8.2668 16.2320 46.1413 -Impact.ttf 91 x 25.1760 37.8587 63 U -8.0101 26.8215 47.0198 -Impact.ttf 91 x 25.1760 37.8587 64 j -8.1973 13.7692 51.4610 -Impact.ttf 91 x 25.1760 37.8587 65 ( -8.3813 14.9285 46.1413 -Impact.ttf 91 x 25.1760 37.8587 66 7 -8.3734 22.3245 46.1413 -Impact.ttf 91 x 25.1760 37.8587 67 § -9.4108 25.6430 53.5180 -Impact.ttf 91 x 25.1760 37.8587 68 $ -12.0478 26.8215 54.0680 -Impact.ttf 91 x 25.1760 37.8587 69 € -9.1007 28.6058 47.8983 -Impact.ttf 91 x 25.1760 37.8587 70 / -9.1266 22.7302 48.3733 -Impact.ttf 91 x 25.1760 37.8587 71 C -9.1183 26.9465 47.8983 -Impact.ttf 91 x 25.1760 37.8587 72 * -8.2009 15.4705 13.7692 -Impact.ttf 91 x 25.1760 37.8587 73 ” -8.1156 19.2175 14.9477 -Impact.ttf 91 x 25.1760 37.8587 74 ? -9.1653 26.8215 47.0198 -Impact.ttf 91 x 25.1760 37.8587 75 { -8.3539 19.1675 54.8215 -Impact.ttf 91 x 25.1760 37.8587 76 } -8.2612 19.1675 54.8215 -Impact.ttf 91 x 25.1760 37.8587 77 , 28.7567 8.4302 14.9477 -Impact.ttf 91 x 25.1760 37.8587 78 I -8.3553 11.6430 46.1413 -Impact.ttf 91 x 25.1760 37.8587 79 ° -9.1461 18.0163 18.0163 -Impact.ttf 91 x 25.1760 37.8587 80 K -7.9988 30.3570 46.1413 -Impact.ttf 91 x 25.1760 37.8587 81 H -8.3264 27.2192 46.1413 -Impact.ttf 91 x 25.1760 37.8587 82 q 0.0437 25.8600 43.1785 -Impact.ttf 91 x 25.1760 37.8587 83 & 0.2651 33.5925 37.8587 -Impact.ttf 91 x 25.1760 37.8587 84 ’ -8.2793 8.4302 14.9477 -Impact.ttf 91 x 25.1760 37.8587 85 [ -8.3734 13.3942 46.1413 -Impact.ttf 91 x 25.1760 37.8587 86 - 14.5807 14.8785 7.9267 -Impact.ttf 91 x 25.1760 37.8587 87 Y -8.3436 27.6250 46.1413 -Impact.ttf 91 x 25.1760 37.8587 88 Q -9.4150 26.8215 52.3395 -Impact.ttf 91 x 25.1760 37.8587 89 " -8.1853 19.7175 14.0000 -Impact.ttf 91 x 25.1760 37.8587 90 ! -8.0952 12.8215 46.1413 -Impact.ttf 91 x 25.1760 37.8587 91 x -0.0825 25.1760 37.8587 -Impact.ttf 91 x 25.1760 37.8587 92 ) -8.3137 14.9285 46.1413 -Impact.ttf 91 x 25.1760 37.8587 93 = 6.5459 27.6670 16.7320 -Impact.ttf 91 x 25.1760 37.8587 94 + 1.5522 27.1773 27.1773 -Impact.ttf 91 x 25.1760 37.8587 95 X -8.4044 29.6400 46.1413 -Impact.ttf 91 x 25.1760 37.8587 96 » 1.2212 19.6198 32.7140 -Impact.ttf 91 x 25.1760 37.8587 97 ' -8.3072 8.6802 14.0000 -Impact.ttf 91 x 25.1760 37.8587 98 ¢ -8.2030 25.8600 49.5017 -Impact.ttf 91 x 25.1760 37.8587 99 Z -8.2825 22.6245 46.1413 -Impact.ttf 91 x 25.1760 37.8587 100 > -0.2589 27.6670 29.1785 -Impact.ttf 91 x 25.1760 37.8587 101 ® -5.3349 43.1785 43.3035 -Impact.ttf 91 x 25.1760 37.8587 102 © -4.3136 43.1785 42.0000 -Impact.ttf 91 x 25.1760 37.8587 103 ] -8.4879 13.3942 46.1413 -Impact.ttf 91 x 25.1760 37.8587 104 é -9.4491 25.5600 47.5698 -Impact.ttf 91 x 25.1760 37.8587 105 z 0.2900 19.3198 37.8587 -Impact.ttf 91 x 25.1760 37.8587 106 _ 42.3313 32.1413 2.8378 -Impact.ttf 91 x 25.1760 37.8587 107 ¥ -8.1546 27.6250 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 1 t 2.8886 17.0878 43.1785 -Impact.ttf 92 ) 14.9285 46.1413 2 h 0.0909 25.8600 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 3 a 8.0754 24.6815 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 4 n 8.2027 25.8600 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 5 P -0.1333 25.1622 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 6 o 8.2107 25.5600 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 7 e 8.2098 25.5600 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 8 : 15.8367 8.6802 30.3570 -Impact.ttf 92 ) 14.9285 46.1413 9 r 8.2298 17.9105 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 10 l 0.0353 11.1622 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 11 i 0.0801 11.1622 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 12 1 -0.0385 19.5925 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 13 | 0.0649 5.8425 53.6430 -Impact.ttf 92 ) 14.9285 46.1413 14 N 0.0857 26.3407 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 15 f 0.0812 15.6593 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 16 g 8.2409 25.8600 44.3570 -Impact.ttf 92 ) 14.9285 46.1413 17 d 0.1909 25.8600 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 18 W 0.2071 46.2890 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 19 s 8.1273 23.5030 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 20 c 8.1871 24.6815 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 21 u 7.8599 25.8600 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 22 3 -0.6172 25.7680 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 23 ~ 15.5503 26.7885 12.8907 -Impact.ttf 92 ) 14.9285 46.1413 24 # 5.0198 34.6652 41.1215 -Impact.ttf 92 ) 14.9285 46.1413 25 O -0.9025 26.8215 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 26 ` -4.7317 15.1785 7.9267 -Impact.ttf 92 ) 14.9285 46.1413 27 @ -0.9772 43.1785 48.8040 -Impact.ttf 92 ) 14.9285 46.1413 28 F -0.1626 20.2675 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 29 S -1.0338 27.5192 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 30 p 8.3780 25.8600 43.1785 -Impact.ttf 92 ) 14.9285 46.1413 31 “ 0.0969 19.2175 14.9477 -Impact.ttf 92 ) 14.9285 46.1413 32 % -0.9967 37.9837 47.0198 -Impact.ttf 92 ) 14.9285 46.1413 33 £ -0.7973 28.2727 47.0198 -Impact.ttf 92 ) 14.9285 46.1413 34 . 36.8738 8.6802 9.3360 -Impact.ttf 92 ) 14.9285 46.1413 35 2 -0.8882 23.9837 47.0198 -Impact.ttf 92 ) 14.9285 46.1413 36 5 0.1321 26.3407 47.0198 -Impact.ttf 92 ) 14.9285 46.1413 37 m 8.2825 40.4657 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 38 V -0.1149 31.0355 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 39 6 -0.8400 26.3407 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 40 w 8.2825 38.9680 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 41 T 0.1024 26.3407 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 42 M -0.1783 36.8052 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 43 G -0.8011 26.9465 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 44 b 0.1274 25.8600 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 45 9 -0.9091 26.3407 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 46 ; 15.7101 8.6802 36.1995 -Impact.ttf 92 ) 14.9285 46.1413 47 D 0.0088 26.9465 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 48 L 0.1909 18.8948 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 49 y 8.3437 27.3942 43.1785 -Impact.ttf 92 ) 14.9285 46.1413 50 ‘ 0.2710 8.4302 14.9477 -Impact.ttf 92 ) 14.9285 46.1413 51 \ -0.9793 23.9087 48.3733 -Impact.ttf 92 ) 14.9285 46.1413 52 R -0.0385 26.3407 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 53 < 8.0121 27.6670 29.1785 -Impact.ttf 92 ) 14.9285 46.1413 54 4 0.1696 28.6977 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 55 8 -0.8283 26.0407 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 56 0 -0.9559 26.3407 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 57 A -0.1131 31.5355 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 58 E 0.0143 20.4483 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 59 B -0.0325 26.9465 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 60 v 8.3327 26.8215 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 61 k -0.1385 25.7680 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 62 J 0.0188 16.2320 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 63 U -0.3221 26.8215 47.0198 -Impact.ttf 92 ) 14.9285 46.1413 64 j -0.0566 13.7692 51.4610 -Impact.ttf 92 ) 14.9285 46.1413 65 ( 0.2253 14.9285 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 66 7 -0.0955 22.3245 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 67 § -1.1079 25.6430 53.5180 -Impact.ttf 92 ) 14.9285 46.1413 68 $ -3.6218 26.8215 54.0680 -Impact.ttf 92 ) 14.9285 46.1413 69 € -0.7946 28.6058 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 70 / -1.0392 22.7302 48.3733 -Impact.ttf 92 ) 14.9285 46.1413 71 C -1.2080 26.9465 47.8983 -Impact.ttf 92 ) 14.9285 46.1413 72 * -0.1437 15.4705 13.7692 -Impact.ttf 92 ) 14.9285 46.1413 73 ” 0.0737 19.2175 14.9477 -Impact.ttf 92 ) 14.9285 46.1413 74 ? -0.6172 26.8215 47.0198 -Impact.ttf 92 ) 14.9285 46.1413 75 { -0.1826 19.1675 54.8215 -Impact.ttf 92 ) 14.9285 46.1413 76 } 0.0714 19.1675 54.8215 -Impact.ttf 92 ) 14.9285 46.1413 77 , 37.0985 8.4302 14.9477 -Impact.ttf 92 ) 14.9285 46.1413 78 I -0.0482 11.6430 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 79 ° -0.7686 18.0163 18.0163 -Impact.ttf 92 ) 14.9285 46.1413 80 K -0.2006 30.3570 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 81 H 0.2470 27.2192 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 82 q 8.2755 25.8600 43.1785 -Impact.ttf 92 ) 14.9285 46.1413 83 & 8.2923 33.5925 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 84 ’ -0.0629 8.4302 14.9477 -Impact.ttf 92 ) 14.9285 46.1413 85 [ 0.0644 13.3942 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 86 - 23.1015 14.8785 7.9267 -Impact.ttf 92 ) 14.9285 46.1413 87 Y 0.0500 27.6250 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 88 Q -0.8156 26.8215 52.3395 -Impact.ttf 92 ) 14.9285 46.1413 89 " 0.0027 19.7175 14.0000 -Impact.ttf 92 ) 14.9285 46.1413 90 ! -0.0615 12.8215 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 91 x 8.3051 25.1760 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 92 ) 0.1288 14.9285 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 93 = 14.7756 27.6670 16.7320 -Impact.ttf 92 ) 14.9285 46.1413 94 + 10.0668 27.1773 27.1773 -Impact.ttf 92 ) 14.9285 46.1413 95 X 0.0885 29.6400 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 96 » 9.5658 19.6198 32.7140 -Impact.ttf 92 ) 14.9285 46.1413 97 ' -0.0704 8.6802 14.0000 -Impact.ttf 92 ) 14.9285 46.1413 98 ¢ 0.2132 25.8600 49.5017 -Impact.ttf 92 ) 14.9285 46.1413 99 Z -0.2498 22.6245 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 100 > 8.1732 27.6670 29.1785 -Impact.ttf 92 ) 14.9285 46.1413 101 ® 2.7923 43.1785 43.3035 -Impact.ttf 92 ) 14.9285 46.1413 102 © 4.2939 43.1785 42.0000 -Impact.ttf 92 ) 14.9285 46.1413 103 ] -0.0455 13.3942 46.1413 -Impact.ttf 92 ) 14.9285 46.1413 104 é -1.5027 25.5600 47.5698 -Impact.ttf 92 ) 14.9285 46.1413 105 z 8.0355 19.3198 37.8587 -Impact.ttf 92 ) 14.9285 46.1413 106 _ 50.5525 32.1413 2.8378 -Impact.ttf 92 ) 14.9285 46.1413 107 ¥ -0.1284 27.6250 46.1413 -Impact.ttf 93 = 27.6670 16.7320 1 t -11.8618 17.0878 43.1785 -Impact.ttf 93 = 27.6670 16.7320 2 h -15.1833 25.8600 46.1413 -Impact.ttf 93 = 27.6670 16.7320 3 a -6.5348 24.6815 37.8587 -Impact.ttf 93 = 27.6670 16.7320 4 n -6.4547 25.8600 37.8587 -Impact.ttf 93 = 27.6670 16.7320 5 P -14.7676 25.1622 46.1413 -Impact.ttf 93 = 27.6670 16.7320 6 o -6.7604 25.5600 37.8587 -Impact.ttf 93 = 27.6670 16.7320 7 e -6.6642 25.5600 37.8587 -Impact.ttf 93 = 27.6670 16.7320 8 : 0.6631 8.6802 30.3570 -Impact.ttf 93 = 27.6670 16.7320 9 r -6.5029 17.9105 37.8587 -Impact.ttf 93 = 27.6670 16.7320 10 l -14.8492 11.1622 46.1413 -Impact.ttf 93 = 27.6670 16.7320 11 i -14.9155 11.1622 46.1413 -Impact.ttf 93 = 27.6670 16.7320 12 1 -14.5235 19.5925 46.1413 -Impact.ttf 93 = 27.6670 16.7320 13 | -14.6977 5.8425 53.6430 -Impact.ttf 93 = 27.6670 16.7320 14 N -14.9020 26.3407 46.1413 -Impact.ttf 93 = 27.6670 16.7320 15 f -14.9915 15.6593 46.1413 -Impact.ttf 93 = 27.6670 16.7320 16 g -6.5631 25.8600 44.3570 -Impact.ttf 93 = 27.6670 16.7320 17 d -14.8038 25.8600 46.1413 -Impact.ttf 93 = 27.6670 16.7320 18 W -14.8711 46.2890 46.1413 -Impact.ttf 93 = 27.6670 16.7320 19 s -6.5348 23.5030 37.8587 -Impact.ttf 93 = 27.6670 16.7320 20 c -6.6187 24.6815 37.8587 -Impact.ttf 93 = 27.6670 16.7320 21 u -7.0284 25.8600 37.8587 -Impact.ttf 93 = 27.6670 16.7320 22 3 -15.7902 25.7680 47.8983 -Impact.ttf 93 = 27.6670 16.7320 23 ~ 0.5100 26.7885 12.8907 -Impact.ttf 93 = 27.6670 16.7320 24 # -10.0172 34.6652 41.1215 -Impact.ttf 93 = 27.6670 16.7320 25 O -15.8092 26.8215 47.8983 -Impact.ttf 93 = 27.6670 16.7320 26 ` -19.8067 15.1785 7.9267 -Impact.ttf 93 = 27.6670 16.7320 27 @ -15.6285 43.1785 48.8040 -Impact.ttf 93 = 27.6670 16.7320 28 F -14.9985 20.2675 46.1413 -Impact.ttf 93 = 27.6670 16.7320 29 S -15.6698 27.5192 47.8983 -Impact.ttf 93 = 27.6670 16.7320 30 p -6.7090 25.8600 43.1785 -Impact.ttf 93 = 27.6670 16.7320 31 “ -14.9585 19.2175 14.9477 -Impact.ttf 93 = 27.6670 16.7320 32 % -15.9284 37.9837 47.0198 -Impact.ttf 93 = 27.6670 16.7320 33 £ -15.8657 28.2727 47.0198 -Impact.ttf 93 = 27.6670 16.7320 34 . 21.9522 8.6802 9.3360 -Impact.ttf 93 = 27.6670 16.7320 35 2 -15.8867 23.9837 47.0198 -Impact.ttf 93 = 27.6670 16.7320 36 5 -15.1249 26.3407 47.0198 -Impact.ttf 93 = 27.6670 16.7320 37 m -6.2794 40.4657 37.8587 -Impact.ttf 93 = 27.6670 16.7320 38 V -14.9643 31.0355 46.1413 -Impact.ttf 93 = 27.6670 16.7320 39 6 -15.8162 26.3407 47.8983 -Impact.ttf 93 = 27.6670 16.7320 40 w -6.6874 38.9680 37.8587 -Impact.ttf 93 = 27.6670 16.7320 41 T -15.3093 26.3407 46.1413 -Impact.ttf 93 = 27.6670 16.7320 42 M -14.8186 36.8052 46.1413 -Impact.ttf 93 = 27.6670 16.7320 43 G -15.4835 26.9465 47.8983 -Impact.ttf 93 = 27.6670 16.7320 44 b -14.9727 25.8600 46.1413 -Impact.ttf 93 = 27.6670 16.7320 45 9 -15.9209 26.3407 47.8983 -Impact.ttf 93 = 27.6670 16.7320 46 ; 0.6250 8.6802 36.1995 -Impact.ttf 93 = 27.6670 16.7320 47 D -15.0227 26.9465 46.1413 -Impact.ttf 93 = 27.6670 16.7320 48 L -14.8719 18.8948 46.1413 -Impact.ttf 93 = 27.6670 16.7320 49 y -6.8026 27.3942 43.1785 -Impact.ttf 93 = 27.6670 16.7320 50 ‘ -14.8988 8.4302 14.9477 -Impact.ttf 93 = 27.6670 16.7320 51 \ -15.7299 23.9087 48.3733 -Impact.ttf 93 = 27.6670 16.7320 52 R -14.8855 26.3407 46.1413 -Impact.ttf 93 = 27.6670 16.7320 53 < -6.7555 27.6670 29.1785 -Impact.ttf 93 = 27.6670 16.7320 54 4 -14.6291 28.6977 46.1413 -Impact.ttf 93 = 27.6670 16.7320 55 8 -16.1522 26.0407 47.8983 -Impact.ttf 93 = 27.6670 16.7320 56 0 -15.6300 26.3407 47.8983 -Impact.ttf 93 = 27.6670 16.7320 57 A -15.0587 31.5355 46.1413 -Impact.ttf 93 = 27.6670 16.7320 58 E -15.0706 20.4483 46.1413 -Impact.ttf 93 = 27.6670 16.7320 59 B -14.9293 26.9465 46.1413 -Impact.ttf 93 = 27.6670 16.7320 60 v -6.7117 26.8215 37.8587 -Impact.ttf 93 = 27.6670 16.7320 61 k -14.8488 25.7680 46.1413 -Impact.ttf 93 = 27.6670 16.7320 62 J -15.0386 16.2320 46.1413 -Impact.ttf 93 = 27.6670 16.7320 63 U -14.8668 26.8215 47.0198 -Impact.ttf 93 = 27.6670 16.7320 64 j -14.9085 13.7692 51.4610 -Impact.ttf 93 = 27.6670 16.7320 65 ( -14.7389 14.9285 46.1413 -Impact.ttf 93 = 27.6670 16.7320 66 7 -14.7306 22.3245 46.1413 -Impact.ttf 93 = 27.6670 16.7320 67 § -15.8843 25.6430 53.5180 -Impact.ttf 93 = 27.6670 16.7320 68 $ -18.6373 26.8215 54.0680 -Impact.ttf 93 = 27.6670 16.7320 69 € -15.7843 28.6058 47.8983 -Impact.ttf 93 = 27.6670 16.7320 70 / -15.5914 22.7302 48.3733 -Impact.ttf 93 = 27.6670 16.7320 71 C -15.7128 26.9465 47.8983 -Impact.ttf 93 = 27.6670 16.7320 72 * -14.8854 15.4705 13.7692 -Impact.ttf 93 = 27.6670 16.7320 73 ” -14.9270 19.2175 14.9477 -Impact.ttf 93 = 27.6670 16.7320 74 ? -15.6434 26.8215 47.0198 -Impact.ttf 93 = 27.6670 16.7320 75 { -14.8756 19.1675 54.8215 -Impact.ttf 93 = 27.6670 16.7320 76 } -14.9526 19.1675 54.8215 -Impact.ttf 93 = 27.6670 16.7320 77 , 22.1544 8.4302 14.9477 -Impact.ttf 93 = 27.6670 16.7320 78 I -15.3645 11.6430 46.1413 -Impact.ttf 93 = 27.6670 16.7320 79 ° -15.3722 18.0163 18.0163 -Impact.ttf 93 = 27.6670 16.7320 80 K -14.9058 30.3570 46.1413 -Impact.ttf 93 = 27.6670 16.7320 81 H -14.9532 27.2192 46.1413 -Impact.ttf 93 = 27.6670 16.7320 82 q -6.5135 25.8600 43.1785 -Impact.ttf 93 = 27.6670 16.7320 83 & -6.4883 33.5925 37.8587 -Impact.ttf 93 = 27.6670 16.7320 84 ’ -14.9336 8.4302 14.9477 -Impact.ttf 93 = 27.6670 16.7320 85 [ -15.1417 13.3942 46.1413 -Impact.ttf 93 = 27.6670 16.7320 86 - 7.8749 14.8785 7.9267 -Impact.ttf 93 = 27.6670 16.7320 87 Y -14.9494 27.6250 46.1413 -Impact.ttf 93 = 27.6670 16.7320 88 Q -15.5800 26.8215 52.3395 -Impact.ttf 93 = 27.6670 16.7320 89 " -14.9072 19.7175 14.0000 -Impact.ttf 93 = 27.6670 16.7320 90 ! -15.0244 12.8215 46.1413 -Impact.ttf 93 = 27.6670 16.7320 91 x -6.7090 25.1760 37.8587 -Impact.ttf 93 = 27.6670 16.7320 92 ) -14.9272 14.9285 46.1413 -Impact.ttf 93 = 27.6670 16.7320 93 = 0.1172 27.6670 16.7320 -Impact.ttf 93 = 27.6670 16.7320 94 + -5.0613 27.1773 27.1773 -Impact.ttf 93 = 27.6670 16.7320 95 X -14.7816 29.6400 46.1413 -Impact.ttf 93 = 27.6670 16.7320 96 » -5.5565 19.6198 32.7140 -Impact.ttf 93 = 27.6670 16.7320 97 ' -14.8284 8.6802 14.0000 -Impact.ttf 93 = 27.6670 16.7320 98 ¢ -14.6885 25.8600 49.5017 -Impact.ttf 93 = 27.6670 16.7320 99 Z -15.2710 22.6245 46.1413 -Impact.ttf 93 = 27.6670 16.7320 100 > -6.8042 27.6670 29.1785 -Impact.ttf 93 = 27.6670 16.7320 101 ® -12.0004 43.1785 43.3035 -Impact.ttf 93 = 27.6670 16.7320 102 © -10.7705 43.1785 42.0000 -Impact.ttf 93 = 27.6670 16.7320 103 ] -14.7232 13.3942 46.1413 -Impact.ttf 93 = 27.6670 16.7320 104 é -16.2783 25.5600 47.5698 -Impact.ttf 93 = 27.6670 16.7320 105 z -6.6719 19.3198 37.8587 -Impact.ttf 93 = 27.6670 16.7320 106 _ 35.6754 32.1413 2.8378 -Impact.ttf 93 = 27.6670 16.7320 107 ¥ -14.7773 27.6250 46.1413 -Impact.ttf 94 + 27.1773 27.1773 1 t -6.8042 17.0878 43.1785 -Impact.ttf 94 + 27.1773 27.1773 2 h -9.6568 25.8600 46.1413 -Impact.ttf 94 + 27.1773 27.1773 3 a -1.6601 24.6815 37.8587 -Impact.ttf 94 + 27.1773 27.1773 4 n -1.8101 25.8600 37.8587 -Impact.ttf 94 + 27.1773 27.1773 5 P -9.9421 25.1622 46.1413 -Impact.ttf 94 + 27.1773 27.1773 6 o -1.7097 25.5600 37.8587 -Impact.ttf 94 + 27.1773 27.1773 7 e -1.4826 25.5600 37.8587 -Impact.ttf 94 + 27.1773 27.1773 8 : 6.0886 8.6802 30.3570 -Impact.ttf 94 + 27.1773 27.1773 9 r -1.7528 17.9105 37.8587 -Impact.ttf 94 + 27.1773 27.1773 10 l -9.9875 11.1622 46.1413 -Impact.ttf 94 + 27.1773 27.1773 11 i -9.7675 11.1622 46.1413 -Impact.ttf 94 + 27.1773 27.1773 12 1 -9.7327 19.5925 46.1413 -Impact.ttf 94 + 27.1773 27.1773 13 | -10.0915 5.8425 53.6430 -Impact.ttf 94 + 27.1773 27.1773 14 N -9.5131 26.3407 46.1413 -Impact.ttf 94 + 27.1773 27.1773 15 f -9.8510 15.6593 46.1413 -Impact.ttf 94 + 27.1773 27.1773 16 g -1.3951 25.8600 44.3570 -Impact.ttf 94 + 27.1773 27.1773 17 d -9.7332 25.8600 46.1413 -Impact.ttf 94 + 27.1773 27.1773 18 W -10.0113 46.2890 46.1413 -Impact.ttf 94 + 27.1773 27.1773 19 s -1.6633 23.5030 37.8587 -Impact.ttf 94 + 27.1773 27.1773 20 c -1.4264 24.6815 37.8587 -Impact.ttf 94 + 27.1773 27.1773 21 u -1.3817 25.8600 37.8587 -Impact.ttf 94 + 27.1773 27.1773 22 3 -10.8809 25.7680 47.8983 -Impact.ttf 94 + 27.1773 27.1773 23 ~ 5.6253 26.7885 12.8907 -Impact.ttf 94 + 27.1773 27.1773 24 # -5.0911 34.6652 41.1215 -Impact.ttf 94 + 27.1773 27.1773 25 O -10.5829 26.8215 47.8983 -Impact.ttf 94 + 27.1773 27.1773 26 ` -14.8154 15.1785 7.9267 -Impact.ttf 94 + 27.1773 27.1773 27 @ -10.8860 43.1785 48.8040 -Impact.ttf 94 + 27.1773 27.1773 28 F -9.5858 20.2675 46.1413 -Impact.ttf 94 + 27.1773 27.1773 29 S -11.0497 27.5192 47.8983 -Impact.ttf 94 + 27.1773 27.1773 30 p -1.4598 25.8600 43.1785 -Impact.ttf 94 + 27.1773 27.1773 31 “ -10.0970 19.2175 14.9477 -Impact.ttf 94 + 27.1773 27.1773 32 % -10.5319 37.9837 47.0198 -Impact.ttf 94 + 27.1773 27.1773 33 £ -10.6241 28.2727 47.0198 -Impact.ttf 94 + 27.1773 27.1773 34 . 27.0396 8.6802 9.3360 -Impact.ttf 94 + 27.1773 27.1773 35 2 -10.3466 23.9837 47.0198 -Impact.ttf 94 + 27.1773 27.1773 36 5 -9.5534 26.3407 47.0198 -Impact.ttf 94 + 27.1773 27.1773 37 m -1.6744 40.4657 37.8587 -Impact.ttf 94 + 27.1773 27.1773 38 V -9.9045 31.0355 46.1413 -Impact.ttf 94 + 27.1773 27.1773 39 6 -10.7872 26.3407 47.8983 -Impact.ttf 94 + 27.1773 27.1773 40 w -1.3853 38.9680 37.8587 -Impact.ttf 94 + 27.1773 27.1773 41 T -9.8361 26.3407 46.1413 -Impact.ttf 94 + 27.1773 27.1773 42 M -9.9593 36.8052 46.1413 -Impact.ttf 94 + 27.1773 27.1773 43 G -10.6561 26.9465 47.8983 -Impact.ttf 94 + 27.1773 27.1773 44 b -9.9329 25.8600 46.1413 -Impact.ttf 94 + 27.1773 27.1773 45 9 -11.1210 26.3407 47.8983 -Impact.ttf 94 + 27.1773 27.1773 46 ; 5.8110 8.6802 36.1995 -Impact.ttf 94 + 27.1773 27.1773 47 D -9.7716 26.9465 46.1413 -Impact.ttf 94 + 27.1773 27.1773 48 L -9.9784 18.8948 46.1413 -Impact.ttf 94 + 27.1773 27.1773 49 y -1.9039 27.3942 43.1785 -Impact.ttf 94 + 27.1773 27.1773 50 ‘ -10.0246 8.4302 14.9477 -Impact.ttf 94 + 27.1773 27.1773 51 \ -11.0091 23.9087 48.3733 -Impact.ttf 94 + 27.1773 27.1773 52 R -9.6107 26.3407 46.1413 -Impact.ttf 94 + 27.1773 27.1773 53 < -1.7327 27.6670 29.1785 -Impact.ttf 94 + 27.1773 27.1773 54 4 -9.7086 28.6977 46.1413 -Impact.ttf 94 + 27.1773 27.1773 55 8 -10.5773 26.0407 47.8983 -Impact.ttf 94 + 27.1773 27.1773 56 0 -10.7821 26.3407 47.8983 -Impact.ttf 94 + 27.1773 27.1773 57 A -9.8101 31.5355 46.1413 -Impact.ttf 94 + 27.1773 27.1773 58 E -9.9657 20.4483 46.1413 -Impact.ttf 94 + 27.1773 27.1773 59 B -9.6934 26.9465 46.1413 -Impact.ttf 94 + 27.1773 27.1773 60 v -1.6346 26.8215 37.8587 -Impact.ttf 94 + 27.1773 27.1773 61 k -9.8477 25.7680 46.1413 -Impact.ttf 94 + 27.1773 27.1773 62 J -9.6818 16.2320 46.1413 -Impact.ttf 94 + 27.1773 27.1773 63 U -10.0334 26.8215 47.0198 -Impact.ttf 94 + 27.1773 27.1773 64 j -9.7262 13.7692 51.4610 -Impact.ttf 94 + 27.1773 27.1773 65 ( -9.7039 14.9285 46.1413 -Impact.ttf 94 + 27.1773 27.1773 66 7 -9.7006 22.3245 46.1413 -Impact.ttf 94 + 27.1773 27.1773 67 § -10.6660 25.6430 53.5180 -Impact.ttf 94 + 27.1773 27.1773 68 $ -13.4446 26.8215 54.0680 -Impact.ttf 94 + 27.1773 27.1773 69 € -10.8341 28.6058 47.8983 -Impact.ttf 94 + 27.1773 27.1773 70 / -11.0077 22.7302 48.3733 -Impact.ttf 94 + 27.1773 27.1773 71 C -10.8652 26.9465 47.8983 -Impact.ttf 94 + 27.1773 27.1773 72 * -9.5135 15.4705 13.7692 -Impact.ttf 94 + 27.1773 27.1773 73 ” -9.7332 19.2175 14.9477 -Impact.ttf 94 + 27.1773 27.1773 74 ? -10.6154 26.8215 47.0198 -Impact.ttf 94 + 27.1773 27.1773 75 { -9.8665 19.1675 54.8215 -Impact.ttf 94 + 27.1773 27.1773 76 } -9.8133 19.1675 54.8215 -Impact.ttf 94 + 27.1773 27.1773 77 , 27.1014 8.4302 14.9477 -Impact.ttf 94 + 27.1773 27.1773 78 I -9.8899 11.6430 46.1413 -Impact.ttf 94 + 27.1773 27.1773 79 ° -11.0922 18.0163 18.0163 -Impact.ttf 94 + 27.1773 27.1773 80 K -9.9413 30.3570 46.1413 -Impact.ttf 94 + 27.1773 27.1773 81 H -10.0043 27.2192 46.1413 -Impact.ttf 94 + 27.1773 27.1773 82 q -1.6206 25.8600 43.1785 -Impact.ttf 94 + 27.1773 27.1773 83 & -1.5197 33.5925 37.8587 -Impact.ttf 94 + 27.1773 27.1773 84 ’ -9.8657 8.4302 14.9477 -Impact.ttf 94 + 27.1773 27.1773 85 [ -9.8698 13.3942 46.1413 -Impact.ttf 94 + 27.1773 27.1773 86 - 13.2727 14.8785 7.9267 -Impact.ttf 94 + 27.1773 27.1773 87 Y -10.1095 27.6250 46.1413 -Impact.ttf 94 + 27.1773 27.1773 88 Q -10.6690 26.8215 52.3395 -Impact.ttf 94 + 27.1773 27.1773 89 " -9.6015 19.7175 14.0000 -Impact.ttf 94 + 27.1773 27.1773 90 ! -9.9598 12.8215 46.1413 -Impact.ttf 94 + 27.1773 27.1773 91 x -1.3736 25.1760 37.8587 -Impact.ttf 94 + 27.1773 27.1773 92 ) -9.8945 14.9285 46.1413 -Impact.ttf 94 + 27.1773 27.1773 93 = 4.9557 27.6670 16.7320 -Impact.ttf 94 + 27.1773 27.1773 94 + -0.1640 27.1773 27.1773 -Impact.ttf 94 + 27.1773 27.1773 95 X -9.7794 29.6400 46.1413 -Impact.ttf 94 + 27.1773 27.1773 96 » -0.3111 19.6198 32.7140 -Impact.ttf 94 + 27.1773 27.1773 97 ' -9.8230 8.6802 14.0000 -Impact.ttf 94 + 27.1773 27.1773 98 ¢ -9.5808 25.8600 49.5017 -Impact.ttf 94 + 27.1773 27.1773 99 Z -9.9445 22.6245 46.1413 -Impact.ttf 94 + 27.1773 27.1773 100 > -1.5854 27.6670 29.1785 -Impact.ttf 94 + 27.1773 27.1773 101 ® -6.8898 43.1785 43.3035 -Impact.ttf 94 + 27.1773 27.1773 102 © -5.9158 43.1785 42.0000 -Impact.ttf 94 + 27.1773 27.1773 103 ] -9.9042 13.3942 46.1413 -Impact.ttf 94 + 27.1773 27.1773 104 é -11.2456 25.5600 47.5698 -Impact.ttf 94 + 27.1773 27.1773 105 z -1.7246 19.3198 37.8587 -Impact.ttf 94 + 27.1773 27.1773 106 _ 40.9190 32.1413 2.8378 -Impact.ttf 94 + 27.1773 27.1773 107 ¥ -9.9385 27.6250 46.1413 -Impact.ttf 95 X 29.6400 46.1413 1 t 3.3038 17.0878 43.1785 -Impact.ttf 95 X 29.6400 46.1413 2 h 0.0631 25.8600 46.1413 -Impact.ttf 95 X 29.6400 46.1413 3 a 8.2663 24.6815 37.8587 -Impact.ttf 95 X 29.6400 46.1413 4 n 8.5852 25.8600 37.8587 -Impact.ttf 95 X 29.6400 46.1413 5 P 0.2637 25.1622 46.1413 -Impact.ttf 95 X 29.6400 46.1413 6 o 8.5634 25.5600 37.8587 -Impact.ttf 95 X 29.6400 46.1413 7 e 8.3605 25.5600 37.8587 -Impact.ttf 95 X 29.6400 46.1413 8 : 15.9668 8.6802 30.3570 -Impact.ttf 95 X 29.6400 46.1413 9 r 8.6450 17.9105 37.8587 -Impact.ttf 95 X 29.6400 46.1413 10 l -0.1613 11.1622 46.1413 -Impact.ttf 95 X 29.6400 46.1413 11 i 0.2140 11.1622 46.1413 -Impact.ttf 95 X 29.6400 46.1413 12 1 0.0143 19.5925 46.1413 -Impact.ttf 95 X 29.6400 46.1413 13 | -0.3355 5.8425 53.6430 -Impact.ttf 95 X 29.6400 46.1413 14 N -0.0891 26.3407 46.1413 -Impact.ttf 95 X 29.6400 46.1413 15 f -0.2419 15.6593 46.1413 -Impact.ttf 95 X 29.6400 46.1413 16 g 8.0647 25.8600 44.3570 -Impact.ttf 95 X 29.6400 46.1413 17 d -0.1704 25.8600 46.1413 -Impact.ttf 95 X 29.6400 46.1413 18 W -0.1312 46.2890 46.1413 -Impact.ttf 95 X 29.6400 46.1413 19 s 8.4687 23.5030 37.8587 -Impact.ttf 95 X 29.6400 46.1413 20 c 8.2811 24.6815 37.8587 -Impact.ttf 95 X 29.6400 46.1413 21 u 8.3909 25.8600 37.8587 -Impact.ttf 95 X 29.6400 46.1413 22 3 -0.8116 25.7680 47.8983 -Impact.ttf 95 X 29.6400 46.1413 23 ~ 15.5793 26.7885 12.8907 -Impact.ttf 95 X 29.6400 46.1413 24 # 4.9683 34.6652 41.1215 -Impact.ttf 95 X 29.6400 46.1413 25 O -1.1748 26.8215 47.8983 -Impact.ttf 95 X 29.6400 46.1413 26 ` -5.0832 15.1785 7.9267 -Impact.ttf 95 X 29.6400 46.1413 27 @ -0.8233 43.1785 48.8040 -Impact.ttf 95 X 29.6400 46.1413 28 F 0.0857 20.2675 46.1413 -Impact.ttf 95 X 29.6400 46.1413 29 S -0.9922 27.5192 47.8983 -Impact.ttf 95 X 29.6400 46.1413 30 p 8.1986 25.8600 43.1785 -Impact.ttf 95 X 29.6400 46.1413 31 “ 0.2552 19.2175 14.9477 -Impact.ttf 95 X 29.6400 46.1413 32 % -0.9457 37.9837 47.0198 -Impact.ttf 95 X 29.6400 46.1413 33 £ -0.4872 28.2727 47.0198 -Impact.ttf 95 X 29.6400 46.1413 34 . 36.8433 8.6802 9.3360 -Impact.ttf 95 X 29.6400 46.1413 35 2 -1.1255 23.9837 47.0198 -Impact.ttf 95 X 29.6400 46.1413 36 5 -0.1906 26.3407 47.0198 -Impact.ttf 95 X 29.6400 46.1413 37 m 8.4532 40.4657 37.8587 -Impact.ttf 95 X 29.6400 46.1413 38 V 0.0982 31.0355 46.1413 -Impact.ttf 95 X 29.6400 46.1413 39 6 -1.1655 26.3407 47.8983 -Impact.ttf 95 X 29.6400 46.1413 40 w 8.4081 38.9680 37.8587 -Impact.ttf 95 X 29.6400 46.1413 41 T 0.3369 26.3407 46.1413 -Impact.ttf 95 X 29.6400 46.1413 42 M 0.0353 36.8052 46.1413 -Impact.ttf 95 X 29.6400 46.1413 43 G -0.7890 26.9465 47.8983 -Impact.ttf 95 X 29.6400 46.1413 44 b 0.0867 25.8600 46.1413 -Impact.ttf 95 X 29.6400 46.1413 45 9 -0.6287 26.3407 47.8983 -Impact.ttf 95 X 29.6400 46.1413 46 ; 15.7402 8.6802 36.1995 -Impact.ttf 95 X 29.6400 46.1413 47 D -0.0015 26.9465 46.1413 -Impact.ttf 95 X 29.6400 46.1413 48 L 0.2414 18.8948 46.1413 -Impact.ttf 95 X 29.6400 46.1413 49 y 7.9753 27.3942 43.1785 -Impact.ttf 95 X 29.6400 46.1413 50 ‘ 0.0885 8.4302 14.9477 -Impact.ttf 95 X 29.6400 46.1413 51 \ -0.9071 23.9087 48.3733 -Impact.ttf 95 X 29.6400 46.1413 52 R -0.0045 26.3407 46.1413 -Impact.ttf 95 X 29.6400 46.1413 53 < 8.2939 27.6670 29.1785 -Impact.ttf 95 X 29.6400 46.1413 54 4 -0.1312 28.6977 46.1413 -Impact.ttf 95 X 29.6400 46.1413 55 8 -0.8367 26.0407 47.8983 -Impact.ttf 95 X 29.6400 46.1413 56 0 -0.8133 26.3407 47.8983 -Impact.ttf 95 X 29.6400 46.1413 57 A -0.4402 31.5355 46.1413 -Impact.ttf 95 X 29.6400 46.1413 58 E -0.1780 20.4483 46.1413 -Impact.ttf 95 X 29.6400 46.1413 59 B -0.0417 26.9465 46.1413 -Impact.ttf 95 X 29.6400 46.1413 60 v 8.2655 26.8215 37.8587 -Impact.ttf 95 X 29.6400 46.1413 61 k -0.0325 25.7680 46.1413 -Impact.ttf 95 X 29.6400 46.1413 62 J -0.0736 16.2320 46.1413 -Impact.ttf 95 X 29.6400 46.1413 63 U -0.0570 26.8215 47.0198 -Impact.ttf 95 X 29.6400 46.1413 64 j -0.1169 13.7692 51.4610 -Impact.ttf 95 X 29.6400 46.1413 65 ( 0.0070 14.9285 46.1413 -Impact.ttf 95 X 29.6400 46.1413 66 7 -0.1613 22.3245 46.1413 -Impact.ttf 95 X 29.6400 46.1413 67 § -1.0541 25.6430 53.5180 -Impact.ttf 95 X 29.6400 46.1413 68 $ -3.8888 26.8215 54.0680 -Impact.ttf 95 X 29.6400 46.1413 69 € -0.8188 28.6058 47.8983 -Impact.ttf 95 X 29.6400 46.1413 70 / -1.2843 22.7302 48.3733 -Impact.ttf 95 X 29.6400 46.1413 71 C -0.8680 26.9465 47.8983 -Impact.ttf 95 X 29.6400 46.1413 72 * -0.1873 15.4705 13.7692 -Impact.ttf 95 X 29.6400 46.1413 73 ” 0.0394 19.2175 14.9477 -Impact.ttf 95 X 29.6400 46.1413 74 ? -0.7631 26.8215 47.0198 -Impact.ttf 95 X 29.6400 46.1413 75 { 0.0755 19.1675 54.8215 -Impact.ttf 95 X 29.6400 46.1413 76 } -0.0385 19.1675 54.8215 -Impact.ttf 95 X 29.6400 46.1413 77 , 37.0059 8.4302 14.9477 -Impact.ttf 95 X 29.6400 46.1413 78 I 0.0742 11.6430 46.1413 -Impact.ttf 95 X 29.6400 46.1413 79 ° -1.1027 18.0163 18.0163 -Impact.ttf 95 X 29.6400 46.1413 80 K -0.0435 30.3570 46.1413 -Impact.ttf 95 X 29.6400 46.1413 81 H -0.0969 27.2192 46.1413 -Impact.ttf 95 X 29.6400 46.1413 82 q 8.3672 25.8600 43.1785 -Impact.ttf 95 X 29.6400 46.1413 83 & 8.4267 33.5925 37.8587 -Impact.ttf 95 X 29.6400 46.1413 84 ’ 0.1585 8.4302 14.9477 -Impact.ttf 95 X 29.6400 46.1413 85 [ 0.3879 13.3942 46.1413 -Impact.ttf 95 X 29.6400 46.1413 86 - 22.8557 14.8785 7.9267 -Impact.ttf 95 X 29.6400 46.1413 87 Y -0.0427 27.6250 46.1413 -Impact.ttf 95 X 29.6400 46.1413 88 Q -1.0126 26.8215 52.3395 -Impact.ttf 95 X 29.6400 46.1413 89 " 0.0153 19.7175 14.0000 -Impact.ttf 95 X 29.6400 46.1413 90 ! 0.1196 12.8215 46.1413 -Impact.ttf 95 X 29.6400 46.1413 91 x 7.9115 25.1760 37.8587 -Impact.ttf 95 X 29.6400 46.1413 92 ) 0.1371 14.9285 46.1413 -Impact.ttf 95 X 29.6400 46.1413 93 = 14.7733 27.6670 16.7320 -Impact.ttf 95 X 29.6400 46.1413 94 + 9.8911 27.1773 27.1773 -Impact.ttf 95 X 29.6400 46.1413 95 X 0.1167 29.6400 46.1413 -Impact.ttf 95 X 29.6400 46.1413 96 » 9.6585 19.6198 32.7140 -Impact.ttf 95 X 29.6400 46.1413 97 ' 0.2651 8.6802 14.0000 -Impact.ttf 95 X 29.6400 46.1413 98 ¢ 0.3050 25.8600 49.5017 -Impact.ttf 95 X 29.6400 46.1413 99 Z -0.0417 22.6245 46.1413 -Impact.ttf 95 X 29.6400 46.1413 100 > 8.2863 27.6670 29.1785 -Impact.ttf 95 X 29.6400 46.1413 101 ® 2.5672 43.1785 43.3035 -Impact.ttf 95 X 29.6400 46.1413 102 © 4.3536 43.1785 42.0000 -Impact.ttf 95 X 29.6400 46.1413 103 ] 0.2224 13.3942 46.1413 -Impact.ttf 95 X 29.6400 46.1413 104 é -1.3701 25.5600 47.5698 -Impact.ttf 95 X 29.6400 46.1413 105 z 8.2780 19.3198 37.8587 -Impact.ttf 95 X 29.6400 46.1413 106 _ 50.1891 32.1413 2.8378 -Impact.ttf 95 X 29.6400 46.1413 107 ¥ 0.0774 27.6250 46.1413 -Impact.ttf 96 » 19.6198 32.7140 1 t -6.7407 17.0878 43.1785 -Impact.ttf 96 » 19.6198 32.7140 2 h -9.7062 25.8600 46.1413 -Impact.ttf 96 » 19.6198 32.7140 3 a -1.3631 24.6815 37.8587 -Impact.ttf 96 » 19.6198 32.7140 4 n -1.2281 25.8600 37.8587 -Impact.ttf 96 » 19.6198 32.7140 5 P -9.7813 25.1622 46.1413 -Impact.ttf 96 » 19.6198 32.7140 6 o -1.6493 25.5600 37.8587 -Impact.ttf 96 » 19.6198 32.7140 7 e -1.6290 25.5600 37.8587 -Impact.ttf 96 » 19.6198 32.7140 8 : 6.0683 8.6802 30.3570 -Impact.ttf 96 » 19.6198 32.7140 9 r -1.2708 17.9105 37.8587 -Impact.ttf 96 » 19.6198 32.7140 10 l -9.8485 11.1622 46.1413 -Impact.ttf 96 » 19.6198 32.7140 11 i -9.4480 11.1622 46.1413 -Impact.ttf 96 » 19.6198 32.7140 12 1 -9.5705 19.5925 46.1413 -Impact.ttf 96 » 19.6198 32.7140 13 | -9.4946 5.8425 53.6430 -Impact.ttf 96 » 19.6198 32.7140 14 N -9.5931 26.3407 46.1413 -Impact.ttf 96 » 19.6198 32.7140 15 f -9.5904 15.6593 46.1413 -Impact.ttf 96 » 19.6198 32.7140 16 g -1.5488 25.8600 44.3570 -Impact.ttf 96 » 19.6198 32.7140 17 d -9.6858 25.8600 46.1413 -Impact.ttf 96 » 19.6198 32.7140 18 W -9.8212 46.2890 46.1413 -Impact.ttf 96 » 19.6198 32.7140 19 s -1.3880 23.5030 37.8587 -Impact.ttf 96 » 19.6198 32.7140 20 c -1.4287 24.6815 37.8587 -Impact.ttf 96 » 19.6198 32.7140 21 u -1.2966 25.8600 37.8587 -Impact.ttf 96 » 19.6198 32.7140 22 3 -10.6334 25.7680 47.8983 -Impact.ttf 96 » 19.6198 32.7140 23 ~ 5.8131 26.7885 12.8907 -Impact.ttf 96 » 19.6198 32.7140 24 # -4.3639 34.6652 41.1215 -Impact.ttf 96 » 19.6198 32.7140 25 O -10.2654 26.8215 47.8983 -Impact.ttf 96 » 19.6198 32.7140 26 ` -14.7684 15.1785 7.9267 -Impact.ttf 96 » 19.6198 32.7140 27 @ -10.4461 43.1785 48.8040 -Impact.ttf 96 » 19.6198 32.7140 28 F -9.9031 20.2675 46.1413 -Impact.ttf 96 » 19.6198 32.7140 29 S -10.6732 27.5192 47.8983 -Impact.ttf 96 » 19.6198 32.7140 30 p -1.3166 25.8600 43.1785 -Impact.ttf 96 » 19.6198 32.7140 31 “ -9.3670 19.2175 14.9477 -Impact.ttf 96 » 19.6198 32.7140 32 % -10.5227 37.9837 47.0198 -Impact.ttf 96 » 19.6198 32.7140 33 £ -10.7483 28.2727 47.0198 -Impact.ttf 96 » 19.6198 32.7140 34 . 27.0277 8.6802 9.3360 -Impact.ttf 96 » 19.6198 32.7140 35 2 -10.6087 23.9837 47.0198 -Impact.ttf 96 » 19.6198 32.7140 36 5 -9.5922 26.3407 47.0198 -Impact.ttf 96 » 19.6198 32.7140 37 m -1.6206 40.4657 37.8587 -Impact.ttf 96 » 19.6198 32.7140 38 V -9.5704 31.0355 46.1413 -Impact.ttf 96 » 19.6198 32.7140 39 6 -10.5949 26.3407 47.8983 -Impact.ttf 96 » 19.6198 32.7140 40 w -1.3977 38.9680 37.8587 -Impact.ttf 96 » 19.6198 32.7140 41 T -9.7257 26.3407 46.1413 -Impact.ttf 96 » 19.6198 32.7140 42 M -9.6362 36.8052 46.1413 -Impact.ttf 96 » 19.6198 32.7140 43 G -10.4786 26.9465 47.8983 -Impact.ttf 96 » 19.6198 32.7140 44 b -9.4206 25.8600 46.1413 -Impact.ttf 96 » 19.6198 32.7140 45 9 -10.3715 26.3407 47.8983 -Impact.ttf 96 » 19.6198 32.7140 46 ; 6.2816 8.6802 36.1995 -Impact.ttf 96 » 19.6198 32.7140 47 D -9.4493 26.9465 46.1413 -Impact.ttf 96 » 19.6198 32.7140 48 L -9.2980 18.8948 46.1413 -Impact.ttf 96 » 19.6198 32.7140 49 y -1.1851 27.3942 43.1785 -Impact.ttf 96 » 19.6198 32.7140 50 ‘ -9.5061 8.4302 14.9477 -Impact.ttf 96 » 19.6198 32.7140 51 \ -10.9918 23.9087 48.3733 -Impact.ttf 96 » 19.6198 32.7140 52 R -9.6757 26.3407 46.1413 -Impact.ttf 96 » 19.6198 32.7140 53 < -1.1664 27.6670 29.1785 -Impact.ttf 96 » 19.6198 32.7140 54 4 -9.8101 28.6977 46.1413 -Impact.ttf 96 » 19.6198 32.7140 55 8 -10.2812 26.0407 47.8983 -Impact.ttf 96 » 19.6198 32.7140 56 0 -10.7645 26.3407 47.8983 -Impact.ttf 96 » 19.6198 32.7140 57 A -9.5138 31.5355 46.1413 -Impact.ttf 96 » 19.6198 32.7140 58 E -9.7427 20.4483 46.1413 -Impact.ttf 96 » 19.6198 32.7140 59 B -9.8044 26.9465 46.1413 -Impact.ttf 96 » 19.6198 32.7140 60 v -1.3253 26.8215 37.8587 -Impact.ttf 96 » 19.6198 32.7140 61 k -9.8199 25.7680 46.1413 -Impact.ttf 96 » 19.6198 32.7140 62 J -9.5346 16.2320 46.1413 -Impact.ttf 96 » 19.6198 32.7140 63 U -9.8879 26.8215 47.0198 -Impact.ttf 96 » 19.6198 32.7140 64 j -9.5644 13.7692 51.4610 -Impact.ttf 96 » 19.6198 32.7140 65 ( -9.5106 14.9285 46.1413 -Impact.ttf 96 » 19.6198 32.7140 66 7 -9.6988 22.3245 46.1413 -Impact.ttf 96 » 19.6198 32.7140 67 § -10.6004 25.6430 53.5180 -Impact.ttf 96 » 19.6198 32.7140 68 $ -13.7555 26.8215 54.0680 -Impact.ttf 96 » 19.6198 32.7140 69 € -10.5290 28.6058 47.8983 -Impact.ttf 96 » 19.6198 32.7140 70 / -10.6837 22.7302 48.3733 -Impact.ttf 96 » 19.6198 32.7140 71 C -10.6542 26.9465 47.8983 -Impact.ttf 96 » 19.6198 32.7140 72 * -9.5617 15.4705 13.7692 -Impact.ttf 96 » 19.6198 32.7140 73 ” -9.7043 19.2175 14.9477 -Impact.ttf 96 » 19.6198 32.7140 74 ? -10.7770 26.8215 47.0198 -Impact.ttf 96 » 19.6198 32.7140 75 { -9.7160 19.1675 54.8215 -Impact.ttf 96 » 19.6198 32.7140 76 } -9.5644 19.1675 54.8215 -Impact.ttf 96 » 19.6198 32.7140 77 , 27.3696 8.4302 14.9477 -Impact.ttf 96 » 19.6198 32.7140 78 I -9.7730 11.6430 46.1413 -Impact.ttf 96 » 19.6198 32.7140 79 ° -10.6445 18.0163 18.0163 -Impact.ttf 96 » 19.6198 32.7140 80 K -9.6901 30.3570 46.1413 -Impact.ttf 96 » 19.6198 32.7140 81 H -9.4837 27.2192 46.1413 -Impact.ttf 96 » 19.6198 32.7140 82 q -1.1007 25.8600 43.1785 -Impact.ttf 96 » 19.6198 32.7140 83 & -1.1994 33.5925 37.8587 -Impact.ttf 96 » 19.6198 32.7140 84 ’ -9.6214 8.4302 14.9477 -Impact.ttf 96 » 19.6198 32.7140 85 [ -9.7085 13.3942 46.1413 -Impact.ttf 96 » 19.6198 32.7140 86 - 13.4871 14.8785 7.9267 -Impact.ttf 96 » 19.6198 32.7140 87 Y -9.8388 27.6250 46.1413 -Impact.ttf 96 » 19.6198 32.7140 88 Q -10.6802 26.8215 52.3395 -Impact.ttf 96 » 19.6198 32.7140 89 " -9.7372 19.7175 14.0000 -Impact.ttf 96 » 19.6198 32.7140 90 ! -9.6867 12.8215 46.1413 -Impact.ttf 96 » 19.6198 32.7140 91 x -1.3988 25.1760 37.8587 -Impact.ttf 96 » 19.6198 32.7140 92 ) -9.7646 14.9285 46.1413 -Impact.ttf 96 » 19.6198 32.7140 93 = 5.0944 27.6670 16.7320 -Impact.ttf 96 » 19.6198 32.7140 94 + 0.1775 27.1773 27.1773 -Impact.ttf 96 » 19.6198 32.7140 95 X -9.6001 29.6400 46.1413 -Impact.ttf 96 » 19.6198 32.7140 96 » -0.0097 19.6198 32.7140 -Impact.ttf 96 » 19.6198 32.7140 97 ' -9.6921 8.6802 14.0000 -Impact.ttf 96 » 19.6198 32.7140 98 ¢ -9.5043 25.8600 49.5017 -Impact.ttf 96 » 19.6198 32.7140 99 Z -9.6135 22.6245 46.1413 -Impact.ttf 96 » 19.6198 32.7140 100 > -1.4458 27.6670 29.1785 -Impact.ttf 96 » 19.6198 32.7140 101 ® -6.6798 43.1785 43.3035 -Impact.ttf 96 » 19.6198 32.7140 102 © -5.5674 43.1785 42.0000 -Impact.ttf 96 » 19.6198 32.7140 103 ] -9.6937 13.3942 46.1413 -Impact.ttf 96 » 19.6198 32.7140 104 é -11.0006 25.5600 47.5698 -Impact.ttf 96 » 19.6198 32.7140 105 z -1.3588 19.3198 37.8587 -Impact.ttf 96 » 19.6198 32.7140 106 _ 40.8179 32.1413 2.8378 -Impact.ttf 96 » 19.6198 32.7140 107 ¥ -9.8142 27.6250 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 1 t 2.8673 17.0878 43.1785 -Impact.ttf 97 ' 8.6802 14.0000 2 h 0.1256 25.8600 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 3 a 8.2825 24.6815 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 4 n 8.2006 25.8600 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 5 P -0.0812 25.1622 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 6 o 8.2567 25.5600 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 7 e 8.2635 25.5600 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 8 : 15.6888 8.6802 30.3570 -Impact.ttf 97 ' 8.6802 14.0000 9 r 8.2825 17.9105 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 10 l -0.0389 11.1622 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 11 i -0.1339 11.1622 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 12 1 0.0000 19.5925 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 13 | -0.1024 5.8425 53.6430 -Impact.ttf 97 ' 8.6802 14.0000 14 N -0.0812 26.3407 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 15 f 0.0565 15.6593 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 16 g 8.2885 25.8600 44.3570 -Impact.ttf 97 ' 8.6802 14.0000 17 d 0.0565 25.8600 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 18 W 0.0000 46.2890 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 19 s 8.0174 23.5030 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 20 c 8.3710 24.6815 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 21 u 8.2787 25.8600 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 22 3 -0.9142 25.7680 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 23 ~ 15.5874 26.7885 12.8907 -Impact.ttf 97 ' 8.6802 14.0000 24 # 4.8529 34.6652 41.1215 -Impact.ttf 97 ' 8.6802 14.0000 25 O -0.8998 26.8215 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 26 ` -4.8041 15.1785 7.9267 -Impact.ttf 97 ' 8.6802 14.0000 27 @ -0.8688 43.1785 48.8040 -Impact.ttf 97 ' 8.6802 14.0000 28 F -0.0083 20.2675 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 29 S -0.8715 27.5192 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 30 p 8.4137 25.8600 43.1785 -Impact.ttf 97 ' 8.6802 14.0000 31 “ -0.0769 19.2175 14.9477 -Impact.ttf 97 ' 8.6802 14.0000 32 % -0.8785 37.9837 47.0198 -Impact.ttf 97 ' 8.6802 14.0000 33 £ -0.7561 28.2727 47.0198 -Impact.ttf 97 ' 8.6802 14.0000 34 . 36.7695 8.6802 9.3360 -Impact.ttf 97 ' 8.6802 14.0000 35 2 -0.9856 23.9837 47.0198 -Impact.ttf 97 ' 8.6802 14.0000 36 5 0.0760 26.3407 47.0198 -Impact.ttf 97 ' 8.6802 14.0000 37 m 8.3780 40.4657 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 38 V 0.0027 31.0355 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 39 6 -1.0551 26.3407 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 40 w 8.3637 38.9680 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 41 T 0.0455 26.3407 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 42 M 0.0000 36.8052 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 43 G -0.9670 26.9465 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 44 b 0.0357 25.8600 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 45 9 -1.0267 26.3407 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 46 ; 15.7101 8.6802 36.1995 -Impact.ttf 97 ' 8.6802 14.0000 47 D 0.0955 26.9465 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 48 L 0.0385 18.8948 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 49 y 8.4281 27.3942 43.1785 -Impact.ttf 97 ' 8.6802 14.0000 50 ‘ -0.1794 8.4302 14.9477 -Impact.ttf 97 ' 8.6802 14.0000 51 \ -1.0535 23.9087 48.3733 -Impact.ttf 97 ' 8.6802 14.0000 52 R 0.2511 26.3407 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 53 < 8.2460 27.6670 29.1785 -Impact.ttf 97 ' 8.6802 14.0000 54 4 0.1724 28.6977 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 55 8 -0.8785 26.0407 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 56 0 -1.0214 26.3407 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 57 A 0.0000 31.5355 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 58 E -0.1126 20.4483 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 59 B -0.0714 26.9465 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 60 v 8.3539 26.8215 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 61 k 0.0955 25.7680 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 62 J -0.0812 16.2320 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 63 U -0.1484 26.8215 47.0198 -Impact.ttf 97 ' 8.6802 14.0000 64 j -0.0857 13.7692 51.4610 -Impact.ttf 97 ' 8.6802 14.0000 65 ( -0.0417 14.9285 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 66 7 -0.0955 22.3245 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 67 § -0.8428 25.6430 53.5180 -Impact.ttf 97 ' 8.6802 14.0000 68 $ -3.7887 26.8215 54.0680 -Impact.ttf 97 ' 8.6802 14.0000 69 € -0.7914 28.6058 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 70 / -0.8866 22.7302 48.3733 -Impact.ttf 97 ' 8.6802 14.0000 71 C -0.8390 26.9465 47.8983 -Impact.ttf 97 ' 8.6802 14.0000 72 * 0.0070 15.4705 13.7692 -Impact.ttf 97 ' 8.6802 14.0000 73 ” 0.0417 19.2175 14.9477 -Impact.ttf 97 ' 8.6802 14.0000 74 ? -0.8043 26.8215 47.0198 -Impact.ttf 97 ' 8.6802 14.0000 75 { -0.0325 19.1675 54.8215 -Impact.ttf 97 ' 8.6802 14.0000 76 } 0.0315 19.1675 54.8215 -Impact.ttf 97 ' 8.6802 14.0000 77 , 36.8807 8.4302 14.9477 -Impact.ttf 97 ' 8.6802 14.0000 78 I 0.0343 11.6430 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 79 ° -0.8656 18.0163 18.0163 -Impact.ttf 97 ' 8.6802 14.0000 80 K 0.1658 30.3570 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 81 H -0.2196 27.2192 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 82 q 8.1871 25.8600 43.1785 -Impact.ttf 97 ' 8.6802 14.0000 83 & 8.2825 33.5925 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 84 ’ -0.1344 8.4302 14.9477 -Impact.ttf 97 ' 8.6802 14.0000 85 [ 0.0955 13.3942 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 86 - 22.9489 14.8785 7.9267 -Impact.ttf 97 ' 8.6802 14.0000 87 Y 0.0871 27.6250 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 88 Q -0.8674 26.8215 52.3395 -Impact.ttf 97 ' 8.6802 14.0000 89 " 0.1242 19.7175 14.0000 -Impact.ttf 97 ' 8.6802 14.0000 90 ! -0.1552 12.8215 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 91 x 8.2825 25.1760 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 92 ) -0.0000 14.9285 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 93 = 14.7284 27.6670 16.7320 -Impact.ttf 97 ' 8.6802 14.0000 94 + 9.9329 27.1773 27.1773 -Impact.ttf 97 ' 8.6802 14.0000 95 X 0.0000 29.6400 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 96 » 9.7933 19.6198 32.7140 -Impact.ttf 97 ' 8.6802 14.0000 97 ' 0.0027 8.6802 14.0000 -Impact.ttf 97 ' 8.6802 14.0000 98 ¢ 0.0750 25.8600 49.5017 -Impact.ttf 97 ' 8.6802 14.0000 99 Z -0.1052 22.6245 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 100 > 8.2744 27.6670 29.1785 -Impact.ttf 97 ' 8.6802 14.0000 101 ® 2.7636 43.1785 43.3035 -Impact.ttf 97 ' 8.6802 14.0000 102 © 4.2654 43.1785 42.0000 -Impact.ttf 97 ' 8.6802 14.0000 103 ] 0.1071 13.3942 46.1413 -Impact.ttf 97 ' 8.6802 14.0000 104 é -1.5240 25.5600 47.5698 -Impact.ttf 97 ' 8.6802 14.0000 105 z 8.2051 19.3198 37.8587 -Impact.ttf 97 ' 8.6802 14.0000 106 _ 50.7036 32.1413 2.8378 -Impact.ttf 97 ' 8.6802 14.0000 107 ¥ 0.0514 27.6250 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 1 t 2.7296 17.0878 43.1785 -Impact.ttf 98 ¢ 25.8600 49.5017 2 h -0.2645 25.8600 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 3 a 7.9879 24.6815 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 4 n 7.9309 25.8600 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 5 P -0.0855 25.1622 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 6 o 8.1218 25.5600 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 7 e 8.3891 25.5600 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 8 : 15.8063 8.6802 30.3570 -Impact.ttf 98 ¢ 25.8600 49.5017 9 r 8.0791 17.9105 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 10 l 0.0446 11.1622 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 11 i 0.0135 11.1622 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 12 1 -0.3845 19.5925 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 13 | -0.1422 5.8425 53.6430 -Impact.ttf 98 ¢ 25.8600 49.5017 14 N -0.1505 26.3407 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 15 f -0.2519 15.6593 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 16 g 8.4412 25.8600 44.3570 -Impact.ttf 98 ¢ 25.8600 49.5017 17 d -0.2519 25.8600 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 18 W -0.2075 46.2890 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 19 s 7.8336 23.5030 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 20 c 8.2492 24.6815 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 21 u 8.2414 25.8600 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 22 3 -0.9691 25.7680 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 23 ~ 15.1344 26.7885 12.8907 -Impact.ttf 98 ¢ 25.8600 49.5017 24 # 4.8569 34.6652 41.1215 -Impact.ttf 98 ¢ 25.8600 49.5017 25 O -1.0193 26.8215 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 26 ` -5.1914 15.1785 7.9267 -Impact.ttf 98 ¢ 25.8600 49.5017 27 @ -1.1204 43.1785 48.8040 -Impact.ttf 98 ¢ 25.8600 49.5017 28 F -0.1677 20.2675 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 29 S -1.0660 27.5192 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 30 p 8.2446 25.8600 43.1785 -Impact.ttf 98 ¢ 25.8600 49.5017 31 “ 0.0746 19.2175 14.9477 -Impact.ttf 98 ¢ 25.8600 49.5017 32 % -0.8241 37.9837 47.0198 -Impact.ttf 98 ¢ 25.8600 49.5017 33 £ -0.8866 28.2727 47.0198 -Impact.ttf 98 ¢ 25.8600 49.5017 34 . 36.6158 8.6802 9.3360 -Impact.ttf 98 ¢ 25.8600 49.5017 35 2 -1.3729 23.9837 47.0198 -Impact.ttf 98 ¢ 25.8600 49.5017 36 5 -0.1361 26.3407 47.0198 -Impact.ttf 98 ¢ 25.8600 49.5017 37 m 7.7734 40.4657 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 38 V -0.2338 31.0355 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 39 6 -1.1574 26.3407 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 40 w 8.2446 38.9680 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 41 T -0.0022 26.3407 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 42 M 0.0363 36.8052 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 43 G -0.7396 26.9465 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 44 b 0.1960 25.8600 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 45 9 -1.0178 26.3407 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 46 ; 15.6464 8.6802 36.1995 -Impact.ttf 98 ¢ 25.8600 49.5017 47 D -0.1347 26.9465 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 48 L -0.0262 18.8948 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 49 y 8.2235 27.3942 43.1785 -Impact.ttf 98 ¢ 25.8600 49.5017 50 ‘ 0.1615 8.4302 14.9477 -Impact.ttf 98 ¢ 25.8600 49.5017 51 \ -1.3041 23.9087 48.3733 -Impact.ttf 98 ¢ 25.8600 49.5017 52 R -0.1249 26.3407 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 53 < 8.1812 27.6670 29.1785 -Impact.ttf 98 ¢ 25.8600 49.5017 54 4 -0.4605 28.6977 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 55 8 -0.6781 26.0407 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 56 0 -1.2747 26.3407 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 57 A -0.2716 31.5355 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 58 E -0.1940 20.4483 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 59 B -0.0425 26.9465 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 60 v 8.0371 26.8215 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 61 k -0.5263 25.7680 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 62 J 0.0933 16.2320 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 63 U -0.1957 26.8215 47.0198 -Impact.ttf 98 ¢ 25.8600 49.5017 64 j -0.1537 13.7692 51.4610 -Impact.ttf 98 ¢ 25.8600 49.5017 65 ( -0.2232 14.9285 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 66 7 -0.1820 22.3245 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 67 § -0.9404 25.6430 53.5180 -Impact.ttf 98 ¢ 25.8600 49.5017 68 $ -3.7678 26.8215 54.0680 -Impact.ttf 98 ¢ 25.8600 49.5017 69 € -1.0707 28.6058 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 70 / -1.1432 22.7302 48.3733 -Impact.ttf 98 ¢ 25.8600 49.5017 71 C -0.9612 26.9465 47.8983 -Impact.ttf 98 ¢ 25.8600 49.5017 72 * -0.5893 15.4705 13.7692 -Impact.ttf 98 ¢ 25.8600 49.5017 73 ” 0.0210 19.2175 14.9477 -Impact.ttf 98 ¢ 25.8600 49.5017 74 ? -1.1444 26.8215 47.0198 -Impact.ttf 98 ¢ 25.8600 49.5017 75 { -0.0879 19.1675 54.8215 -Impact.ttf 98 ¢ 25.8600 49.5017 76 } 0.0478 19.1675 54.8215 -Impact.ttf 98 ¢ 25.8600 49.5017 77 , 36.6113 8.4302 14.9477 -Impact.ttf 98 ¢ 25.8600 49.5017 78 I -0.3373 11.6430 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 79 ° -1.0067 18.0163 18.0163 -Impact.ttf 98 ¢ 25.8600 49.5017 80 K -0.2672 30.3570 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 81 H -0.3460 27.2192 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 82 q 8.2075 25.8600 43.1785 -Impact.ttf 98 ¢ 25.8600 49.5017 83 & 8.4185 33.5925 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 84 ’ 0.0094 8.4302 14.9477 -Impact.ttf 98 ¢ 25.8600 49.5017 85 [ -0.1069 13.3942 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 86 - 22.7136 14.8785 7.9267 -Impact.ttf 98 ¢ 25.8600 49.5017 87 Y -0.2993 27.6250 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 88 Q -0.8882 26.8215 52.3395 -Impact.ttf 98 ¢ 25.8600 49.5017 89 " 0.0516 19.7175 14.0000 -Impact.ttf 98 ¢ 25.8600 49.5017 90 ! 0.0946 12.8215 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 91 x 8.0379 25.1760 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 92 ) 0.1258 14.9285 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 93 = 14.7353 27.6670 16.7320 -Impact.ttf 98 ¢ 25.8600 49.5017 94 + 9.6491 27.1773 27.1773 -Impact.ttf 98 ¢ 25.8600 49.5017 95 X -0.0081 29.6400 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 96 » 9.5140 19.6198 32.7140 -Impact.ttf 98 ¢ 25.8600 49.5017 97 ' -0.0397 8.6802 14.0000 -Impact.ttf 98 ¢ 25.8600 49.5017 98 ¢ -0.0787 25.8600 49.5017 -Impact.ttf 98 ¢ 25.8600 49.5017 99 Z -0.1240 22.6245 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 100 > 8.1637 27.6670 29.1785 -Impact.ttf 98 ¢ 25.8600 49.5017 101 ® 2.8231 43.1785 43.3035 -Impact.ttf 98 ¢ 25.8600 49.5017 102 © 4.2117 43.1785 42.0000 -Impact.ttf 98 ¢ 25.8600 49.5017 103 ] 0.1044 13.3942 46.1413 -Impact.ttf 98 ¢ 25.8600 49.5017 104 é -1.7277 25.5600 47.5698 -Impact.ttf 98 ¢ 25.8600 49.5017 105 z 8.2923 19.3198 37.8587 -Impact.ttf 98 ¢ 25.8600 49.5017 106 _ 50.4386 32.1413 2.8378 -Impact.ttf 98 ¢ 25.8600 49.5017 107 ¥ -0.1352 27.6250 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 1 t 2.8251 17.0878 43.1785 -Impact.ttf 99 Z 22.6245 46.1413 2 h -0.1117 25.8600 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 3 a 8.1871 24.6815 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 4 n 8.3752 25.8600 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 5 P -0.2664 25.1622 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 6 o 8.0272 25.5600 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 7 e 8.3682 25.5600 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 8 : 15.6003 8.6802 30.3570 -Impact.ttf 99 Z 22.6245 46.1413 9 r 8.2083 17.9105 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 10 l 0.1622 11.1622 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 11 i 0.3420 11.1622 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 12 1 -0.0000 19.5925 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 13 | -0.3008 5.8425 53.6430 -Impact.ttf 99 Z 22.6245 46.1413 14 N -0.0226 26.3407 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 15 f 0.2002 15.6593 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 16 g 7.9575 25.8600 44.3570 -Impact.ttf 99 Z 22.6245 46.1413 17 d -0.2689 25.8600 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 18 W 0.3438 46.2890 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 19 s 8.3637 23.5030 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 20 c 8.3038 24.6815 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 21 u 8.1318 25.8600 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 22 3 -0.6557 25.7680 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 23 ~ 15.4293 26.7885 12.8907 -Impact.ttf 99 Z 22.6245 46.1413 24 # 5.2020 34.6652 41.1215 -Impact.ttf 99 Z 22.6245 46.1413 25 O -0.7641 26.8215 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 26 ` -4.7313 15.1785 7.9267 -Impact.ttf 99 Z 22.6245 46.1413 27 @ -0.7793 43.1785 48.8040 -Impact.ttf 99 Z 22.6245 46.1413 28 F -0.0927 20.2675 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 29 S -0.9967 27.5192 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 30 p 8.4379 25.8600 43.1785 -Impact.ttf 99 Z 22.6245 46.1413 31 “ 0.2371 19.2175 14.9477 -Impact.ttf 99 Z 22.6245 46.1413 32 % -0.9541 37.9837 47.0198 -Impact.ttf 99 Z 22.6245 46.1413 33 £ -0.9142 28.2727 47.0198 -Impact.ttf 99 Z 22.6245 46.1413 34 . 36.7042 8.6802 9.3360 -Impact.ttf 99 Z 22.6245 46.1413 35 2 -1.0110 23.9837 47.0198 -Impact.ttf 99 Z 22.6245 46.1413 36 5 -0.1070 26.3407 47.0198 -Impact.ttf 99 Z 22.6245 46.1413 37 m 8.1454 40.4657 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 38 V -0.1826 31.0355 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 39 6 -1.0194 26.3407 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 40 w 8.1843 38.9680 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 41 T 0.0560 26.3407 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 42 M -0.2481 36.8052 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 43 G -0.9629 26.9465 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 44 b 0.1658 25.8600 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 45 9 -0.9202 26.3407 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 46 ; 15.5373 8.6802 36.1995 -Impact.ttf 99 Z 22.6245 46.1413 47 D 0.0629 26.9465 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 48 L 0.1613 18.8948 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 49 y 8.2427 27.3942 43.1785 -Impact.ttf 99 Z 22.6245 46.1413 50 ‘ -0.2355 8.4302 14.9477 -Impact.ttf 99 Z 22.6245 46.1413 51 \ -1.1583 23.9087 48.3733 -Impact.ttf 99 Z 22.6245 46.1413 52 R -0.0478 26.3407 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 53 < 8.3161 27.6670 29.1785 -Impact.ttf 99 Z 22.6245 46.1413 54 4 0.2998 28.6977 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 55 8 -0.5769 26.0407 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 56 0 -0.8785 26.3407 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 57 A -0.1841 31.5355 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 58 E 0.0527 20.4483 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 59 B 0.0156 26.9465 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 60 v 8.0142 26.8215 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 61 k 0.0626 25.7680 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 62 J 0.0903 16.2320 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 63 U 0.1631 26.8215 47.0198 -Impact.ttf 99 Z 22.6245 46.1413 64 j 0.3113 13.7692 51.4610 -Impact.ttf 99 Z 22.6245 46.1413 65 ( -0.0714 14.9285 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 66 7 -0.1728 22.3245 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 67 § -0.9943 25.6430 53.5180 -Impact.ttf 99 Z 22.6245 46.1413 68 $ -3.8740 26.8215 54.0680 -Impact.ttf 99 Z 22.6245 46.1413 69 € -1.1750 28.6058 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 70 / -1.0646 22.7302 48.3733 -Impact.ttf 99 Z 22.6245 46.1413 71 C -0.7859 26.9465 47.8983 -Impact.ttf 99 Z 22.6245 46.1413 72 * 0.4524 15.4705 13.7692 -Impact.ttf 99 Z 22.6245 46.1413 73 ” -0.3305 19.2175 14.9477 -Impact.ttf 99 Z 22.6245 46.1413 74 ? -1.0481 26.8215 47.0198 -Impact.ttf 99 Z 22.6245 46.1413 75 { 0.1052 19.1675 54.8215 -Impact.ttf 99 Z 22.6245 46.1413 76 } 0.0115 19.1675 54.8215 -Impact.ttf 99 Z 22.6245 46.1413 77 , 37.2088 8.4302 14.9477 -Impact.ttf 99 Z 22.6245 46.1413 78 I -0.1756 11.6430 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 79 ° -1.1293 18.0163 18.0163 -Impact.ttf 99 Z 22.6245 46.1413 80 K 0.0319 30.3570 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 81 H 0.0696 27.2192 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 82 q 8.1124 25.8600 43.1785 -Impact.ttf 99 Z 22.6245 46.1413 83 & 8.3839 33.5925 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 84 ’ 0.0602 8.4302 14.9477 -Impact.ttf 99 Z 22.6245 46.1413 85 [ 0.1131 13.3942 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 86 - 22.9081 14.8785 7.9267 -Impact.ttf 99 Z 22.6245 46.1413 87 Y -0.0802 27.6250 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 88 Q -0.7029 26.8215 52.3395 -Impact.ttf 99 Z 22.6245 46.1413 89 " -0.1683 19.7175 14.0000 -Impact.ttf 99 Z 22.6245 46.1413 90 ! 0.1269 12.8215 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 91 x 8.4119 25.1760 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 92 ) 0.1301 14.9285 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 93 = 14.8080 27.6670 16.7320 -Impact.ttf 99 Z 22.6245 46.1413 94 + 9.8458 27.1773 27.1773 -Impact.ttf 99 Z 22.6245 46.1413 95 X 0.0097 29.6400 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 96 » 9.7192 19.6198 32.7140 -Impact.ttf 99 Z 22.6245 46.1413 97 ' -0.1301 8.6802 14.0000 -Impact.ttf 99 Z 22.6245 46.1413 98 ¢ 0.2682 25.8600 49.5017 -Impact.ttf 99 Z 22.6245 46.1413 99 Z 0.1065 22.6245 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 100 > 8.2789 27.6670 29.1785 -Impact.ttf 99 Z 22.6245 46.1413 101 ® 2.5064 43.1785 43.3035 -Impact.ttf 99 Z 22.6245 46.1413 102 © 3.9002 43.1785 42.0000 -Impact.ttf 99 Z 22.6245 46.1413 103 ] 0.0500 13.3942 46.1413 -Impact.ttf 99 Z 22.6245 46.1413 104 é -1.3285 25.5600 47.5698 -Impact.ttf 99 Z 22.6245 46.1413 105 z 8.1869 19.3198 37.8587 -Impact.ttf 99 Z 22.6245 46.1413 106 _ 50.2874 32.1413 2.8378 -Impact.ttf 99 Z 22.6245 46.1413 107 ¥ 0.0742 27.6250 46.1413 -Impact.ttf 100 > 27.6670 29.1785 1 t -5.2249 17.0878 43.1785 -Impact.ttf 100 > 27.6670 29.1785 2 h -8.1607 25.8600 46.1413 -Impact.ttf 100 > 27.6670 29.1785 3 a 0.1148 24.6815 37.8587 -Impact.ttf 100 > 27.6670 29.1785 4 n 0.3123 25.8600 37.8587 -Impact.ttf 100 > 27.6670 29.1785 5 P -8.0833 25.1622 46.1413 -Impact.ttf 100 > 27.6670 29.1785 6 o 0.3224 25.5600 37.8587 -Impact.ttf 100 > 27.6670 29.1785 7 e -0.0562 25.5600 37.8587 -Impact.ttf 100 > 27.6670 29.1785 8 : 7.4539 8.6802 30.3570 -Impact.ttf 100 > 27.6670 29.1785 9 r 0.1320 17.9105 37.8587 -Impact.ttf 100 > 27.6670 29.1785 10 l -8.5213 11.1622 46.1413 -Impact.ttf 100 > 27.6670 29.1785 11 i -7.9749 11.1622 46.1413 -Impact.ttf 100 > 27.6670 29.1785 12 1 -8.1247 19.5925 46.1413 -Impact.ttf 100 > 27.6670 29.1785 13 | -8.2322 5.8425 53.6430 -Impact.ttf 100 > 27.6670 29.1785 14 N -8.5839 26.3407 46.1413 -Impact.ttf 100 > 27.6670 29.1785 15 f -8.2683 15.6593 46.1413 -Impact.ttf 100 > 27.6670 29.1785 16 g 0.2135 25.8600 44.3570 -Impact.ttf 100 > 27.6670 29.1785 17 d -8.0731 25.8600 46.1413 -Impact.ttf 100 > 27.6670 29.1785 18 W -8.3156 46.2890 46.1413 -Impact.ttf 100 > 27.6670 29.1785 19 s 0.0871 23.5030 37.8587 -Impact.ttf 100 > 27.6670 29.1785 20 c 0.2349 24.6815 37.8587 -Impact.ttf 100 > 27.6670 29.1785 21 u -0.1778 25.8600 37.8587 -Impact.ttf 100 > 27.6670 29.1785 22 3 -9.0086 25.7680 47.8983 -Impact.ttf 100 > 27.6670 29.1785 23 ~ 6.9038 26.7885 12.8907 -Impact.ttf 100 > 27.6670 29.1785 24 # -3.1340 34.6652 41.1215 -Impact.ttf 100 > 27.6670 29.1785 25 O -9.2227 26.8215 47.8983 -Impact.ttf 100 > 27.6670 29.1785 26 ` -13.2205 15.1785 7.9267 -Impact.ttf 100 > 27.6670 29.1785 27 @ -9.1074 43.1785 48.8040 -Impact.ttf 100 > 27.6670 29.1785 28 F -8.2121 20.2675 46.1413 -Impact.ttf 100 > 27.6670 29.1785 29 S -9.1134 27.5192 47.8983 -Impact.ttf 100 > 27.6670 29.1785 30 p 0.0945 25.8600 43.1785 -Impact.ttf 100 > 27.6670 29.1785 31 “ -8.4879 19.2175 14.9477 -Impact.ttf 100 > 27.6670 29.1785 32 % -9.3713 37.9837 47.0198 -Impact.ttf 100 > 27.6670 29.1785 33 £ -9.1070 28.2727 47.0198 -Impact.ttf 100 > 27.6670 29.1785 34 . 28.7372 8.6802 9.3360 -Impact.ttf 100 > 27.6670 29.1785 35 2 -8.8872 23.9837 47.0198 -Impact.ttf 100 > 27.6670 29.1785 36 5 -7.9806 26.3407 47.0198 -Impact.ttf 100 > 27.6670 29.1785 37 m 0.1185 40.4657 37.8587 -Impact.ttf 100 > 27.6670 29.1785 38 V -7.9333 31.0355 46.1413 -Impact.ttf 100 > 27.6670 29.1785 39 6 -8.7922 26.3407 47.8983 -Impact.ttf 100 > 27.6670 29.1785 40 w 0.1737 38.9680 37.8587 -Impact.ttf 100 > 27.6670 29.1785 41 T -8.2530 26.3407 46.1413 -Impact.ttf 100 > 27.6670 29.1785 42 M -8.2206 36.8052 46.1413 -Impact.ttf 100 > 27.6670 29.1785 43 G -9.0769 26.9465 47.8983 -Impact.ttf 100 > 27.6670 29.1785 44 b -8.1558 25.8600 46.1413 -Impact.ttf 100 > 27.6670 29.1785 45 9 -9.0443 26.3407 47.8983 -Impact.ttf 100 > 27.6670 29.1785 46 ; 7.6166 8.6802 36.1995 -Impact.ttf 100 > 27.6670 29.1785 47 D -8.2887 26.9465 46.1413 -Impact.ttf 100 > 27.6670 29.1785 48 L -7.9532 18.8948 46.1413 -Impact.ttf 100 > 27.6670 29.1785 49 y 0.1167 27.3942 43.1785 -Impact.ttf 100 > 27.6670 29.1785 50 ‘ -8.0583 8.4302 14.9477 -Impact.ttf 100 > 27.6670 29.1785 51 \ -9.3267 23.9087 48.3733 -Impact.ttf 100 > 27.6670 29.1785 52 R -8.0931 26.3407 46.1413 -Impact.ttf 100 > 27.6670 29.1785 53 < -0.1826 27.6670 29.1785 -Impact.ttf 100 > 27.6670 29.1785 54 4 -8.2002 28.6977 46.1413 -Impact.ttf 100 > 27.6670 29.1785 55 8 -9.1556 26.0407 47.8983 -Impact.ttf 100 > 27.6670 29.1785 56 0 -9.2876 26.3407 47.8983 -Impact.ttf 100 > 27.6670 29.1785 57 A -8.1218 31.5355 46.1413 -Impact.ttf 100 > 27.6670 29.1785 58 E -8.2276 20.4483 46.1413 -Impact.ttf 100 > 27.6670 29.1785 59 B -8.2855 26.9465 46.1413 -Impact.ttf 100 > 27.6670 29.1785 60 v 0.2371 26.8215 37.8587 -Impact.ttf 100 > 27.6670 29.1785 61 k -8.1718 25.7680 46.1413 -Impact.ttf 100 > 27.6670 29.1785 62 J -8.1446 16.2320 46.1413 -Impact.ttf 100 > 27.6670 29.1785 63 U -8.2460 26.8215 47.0198 -Impact.ttf 100 > 27.6670 29.1785 64 j -8.0060 13.7692 51.4610 -Impact.ttf 100 > 27.6670 29.1785 65 ( -8.2589 14.9285 46.1413 -Impact.ttf 100 > 27.6670 29.1785 66 7 -8.2882 22.3245 46.1413 -Impact.ttf 100 > 27.6670 29.1785 67 § -8.8877 25.6430 53.5180 -Impact.ttf 100 > 27.6670 29.1785 68 $ -12.1218 26.8215 54.0680 -Impact.ttf 100 > 27.6670 29.1785 69 € -8.9691 28.6058 47.8983 -Impact.ttf 100 > 27.6670 29.1785 70 / -9.2554 22.7302 48.3733 -Impact.ttf 100 > 27.6670 29.1785 71 C -8.8450 26.9465 47.8983 -Impact.ttf 100 > 27.6670 29.1785 72 * -8.1593 15.4705 13.7692 -Impact.ttf 100 > 27.6670 29.1785 73 ” -8.1121 19.2175 14.9477 -Impact.ttf 100 > 27.6670 29.1785 74 ? -9.1501 26.8215 47.0198 -Impact.ttf 100 > 27.6670 29.1785 75 { -8.1089 19.1675 54.8215 -Impact.ttf 100 > 27.6670 29.1785 76 } -8.0325 19.1675 54.8215 -Impact.ttf 100 > 27.6670 29.1785 77 , 28.8981 8.4302 14.9477 -Impact.ttf 100 > 27.6670 29.1785 78 I -8.4101 11.6430 46.1413 -Impact.ttf 100 > 27.6670 29.1785 79 ° -8.8451 18.0163 18.0163 -Impact.ttf 100 > 27.6670 29.1785 80 K -8.3887 30.3570 46.1413 -Impact.ttf 100 > 27.6670 29.1785 81 H -8.4541 27.2192 46.1413 -Impact.ttf 100 > 27.6670 29.1785 82 q -0.0433 25.8600 43.1785 -Impact.ttf 100 > 27.6670 29.1785 83 & 0.2089 33.5925 37.8587 -Impact.ttf 100 > 27.6670 29.1785 84 ’ -8.2257 8.4302 14.9477 -Impact.ttf 100 > 27.6670 29.1785 85 [ -8.2888 13.3942 46.1413 -Impact.ttf 100 > 27.6670 29.1785 86 - 14.5347 14.8785 7.9267 -Impact.ttf 100 > 27.6670 29.1785 87 Y -8.1186 27.6250 46.1413 -Impact.ttf 100 > 27.6670 29.1785 88 Q -9.0490 26.8215 52.3395 -Impact.ttf 100 > 27.6670 29.1785 89 " -8.1734 19.7175 14.0000 -Impact.ttf 100 > 27.6670 29.1785 90 ! -8.3071 12.8215 46.1413 -Impact.ttf 100 > 27.6670 29.1785 91 x -0.0451 25.1760 37.8587 -Impact.ttf 100 > 27.6670 29.1785 92 ) -8.3359 14.9285 46.1413 -Impact.ttf 100 > 27.6670 29.1785 93 = 6.9322 27.6670 16.7320 -Impact.ttf 100 > 27.6670 29.1785 94 + 1.7620 27.1773 27.1773 -Impact.ttf 100 > 27.6670 29.1785 95 X -8.2960 29.6400 46.1413 -Impact.ttf 100 > 27.6670 29.1785 96 » 1.4541 19.6198 32.7140 -Impact.ttf 100 > 27.6670 29.1785 97 ' -7.7479 8.6802 14.0000 -Impact.ttf 100 > 27.6670 29.1785 98 ¢ -8.1210 25.8600 49.5017 -Impact.ttf 100 > 27.6670 29.1785 99 Z -8.2086 22.6245 46.1413 -Impact.ttf 100 > 27.6670 29.1785 100 > 0.1345 27.6670 29.1785 -Impact.ttf 100 > 27.6670 29.1785 101 ® -5.3170 43.1785 43.3035 -Impact.ttf 100 > 27.6670 29.1785 102 © -3.9982 43.1785 42.0000 -Impact.ttf 100 > 27.6670 29.1785 103 ] -8.3799 13.3942 46.1413 -Impact.ttf 100 > 27.6670 29.1785 104 é -9.7161 25.5600 47.5698 -Impact.ttf 100 > 27.6670 29.1785 105 z 0.2167 19.3198 37.8587 -Impact.ttf 100 > 27.6670 29.1785 106 _ 42.5362 32.1413 2.8378 -Impact.ttf 100 > 27.6670 29.1785 107 ¥ -8.2896 27.6250 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 1 t -0.0274 17.0878 43.1785 -Impact.ttf 101 ® 43.1785 43.3035 2 h -2.5106 25.8600 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 3 a 5.2055 24.6815 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 4 n 5.8751 25.8600 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 5 P -2.8419 25.1622 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 6 o 5.5517 25.5600 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 7 e 5.4433 25.5600 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 8 : 13.1095 8.6802 30.3570 -Impact.ttf 101 ® 43.1785 43.3035 9 r 5.0138 17.9105 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 10 l -2.4453 11.1622 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 11 i -2.9554 11.1622 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 12 1 -3.0935 19.5925 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 13 | -2.5667 5.8425 53.6430 -Impact.ttf 101 ® 43.1785 43.3035 14 N -3.2656 26.3407 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 15 f -2.8538 15.6593 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 16 g 5.3725 25.8600 44.3570 -Impact.ttf 101 ® 43.1785 43.3035 17 d -2.6723 25.8600 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 18 W -2.6992 46.2890 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 19 s 5.4318 23.5030 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 20 c 5.2783 24.6815 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 21 u 5.4419 25.8600 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 22 3 -3.6536 25.7680 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 23 ~ 12.6332 26.7885 12.8907 -Impact.ttf 101 ® 43.1785 43.3035 24 # 1.8215 34.6652 41.1215 -Impact.ttf 101 ® 43.1785 43.3035 25 O -3.7278 26.8215 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 26 ` -7.8907 15.1785 7.9267 -Impact.ttf 101 ® 43.1785 43.3035 27 @ -3.8789 43.1785 48.8040 -Impact.ttf 101 ® 43.1785 43.3035 28 F -3.0175 20.2675 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 29 S -3.9047 27.5192 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 30 p 5.4206 25.8600 43.1785 -Impact.ttf 101 ® 43.1785 43.3035 31 “ -2.7520 19.2175 14.9477 -Impact.ttf 101 ® 43.1785 43.3035 32 % -3.7904 37.9837 47.0198 -Impact.ttf 101 ® 43.1785 43.3035 33 £ -3.8409 28.2727 47.0198 -Impact.ttf 101 ® 43.1785 43.3035 34 . 33.6092 8.6802 9.3360 -Impact.ttf 101 ® 43.1785 43.3035 35 2 -3.6056 23.9837 47.0198 -Impact.ttf 101 ® 43.1785 43.3035 36 5 -2.4638 26.3407 47.0198 -Impact.ttf 101 ® 43.1785 43.3035 37 m 5.4396 40.4657 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 38 V -2.8811 31.0355 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 39 6 -3.6351 26.3407 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 40 w 5.4791 38.9680 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 41 T -2.8206 26.3407 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 42 M -2.6543 36.8052 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 43 G -3.4969 26.9465 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 44 b -2.6254 25.8600 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 45 9 -3.6880 26.3407 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 46 ; 12.8483 8.6802 36.1995 -Impact.ttf 101 ® 43.1785 43.3035 47 D -2.9641 26.9465 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 48 L -2.9676 18.8948 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 49 y 5.4891 27.3942 43.1785 -Impact.ttf 101 ® 43.1785 43.3035 50 ‘ -3.1433 8.4302 14.9477 -Impact.ttf 101 ® 43.1785 43.3035 51 \ -3.8983 23.9087 48.3733 -Impact.ttf 101 ® 43.1785 43.3035 52 R -2.7306 26.3407 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 53 < 5.3340 27.6670 29.1785 -Impact.ttf 101 ® 43.1785 43.3035 54 4 -2.7367 28.6977 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 55 8 -3.8763 26.0407 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 56 0 -3.7450 26.3407 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 57 A -3.0133 31.5355 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 58 E -2.9046 20.4483 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 59 B -2.9143 26.9465 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 60 v 5.1495 26.8215 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 61 k -3.0101 25.7680 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 62 J -2.8177 16.2320 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 63 U -2.6306 26.8215 47.0198 -Impact.ttf 101 ® 43.1785 43.3035 64 j -2.5523 13.7692 51.4610 -Impact.ttf 101 ® 43.1785 43.3035 65 ( -2.9981 14.9285 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 66 7 -2.7436 22.3245 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 67 § -3.7565 25.6430 53.5180 -Impact.ttf 101 ® 43.1785 43.3035 68 $ -6.6538 26.8215 54.0680 -Impact.ttf 101 ® 43.1785 43.3035 69 € -3.5619 28.6058 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 70 / -4.2828 22.7302 48.3733 -Impact.ttf 101 ® 43.1785 43.3035 71 C -3.6265 26.9465 47.8983 -Impact.ttf 101 ® 43.1785 43.3035 72 * -2.6662 15.4705 13.7692 -Impact.ttf 101 ® 43.1785 43.3035 73 ” -2.5027 19.2175 14.9477 -Impact.ttf 101 ® 43.1785 43.3035 74 ? -3.8047 26.8215 47.0198 -Impact.ttf 101 ® 43.1785 43.3035 75 { -2.7660 19.1675 54.8215 -Impact.ttf 101 ® 43.1785 43.3035 76 } -2.9889 19.1675 54.8215 -Impact.ttf 101 ® 43.1785 43.3035 77 , 34.0254 8.4302 14.9477 -Impact.ttf 101 ® 43.1785 43.3035 78 I -2.8808 11.6430 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 79 ° -3.5603 18.0163 18.0163 -Impact.ttf 101 ® 43.1785 43.3035 80 K -3.0463 30.3570 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 81 H -2.4705 27.2192 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 82 q 5.5261 25.8600 43.1785 -Impact.ttf 101 ® 43.1785 43.3035 83 & 5.4975 33.5925 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 84 ’ -3.0348 8.4302 14.9477 -Impact.ttf 101 ® 43.1785 43.3035 85 [ -2.9082 13.3942 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 86 - 20.2098 14.8785 7.9267 -Impact.ttf 101 ® 43.1785 43.3035 87 Y -2.9732 27.6250 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 88 Q -3.7108 26.8215 52.3395 -Impact.ttf 101 ® 43.1785 43.3035 89 " -2.6324 19.7175 14.0000 -Impact.ttf 101 ® 43.1785 43.3035 90 ! -2.9262 12.8215 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 91 x 5.6214 25.1760 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 92 ) -2.7951 14.9285 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 93 = 12.1569 27.6670 16.7320 -Impact.ttf 101 ® 43.1785 43.3035 94 + 7.1419 27.1773 27.1773 -Impact.ttf 101 ® 43.1785 43.3035 95 X -2.6552 29.6400 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 96 » 6.6363 19.6198 32.7140 -Impact.ttf 101 ® 43.1785 43.3035 97 ' -3.2419 8.6802 14.0000 -Impact.ttf 101 ® 43.1785 43.3035 98 ¢ -2.7957 25.8600 49.5017 -Impact.ttf 101 ® 43.1785 43.3035 99 Z -3.2163 22.6245 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 100 > 5.1307 27.6670 29.1785 -Impact.ttf 101 ® 43.1785 43.3035 101 ® 0.0599 43.1785 43.3035 -Impact.ttf 101 ® 43.1785 43.3035 102 © 1.1938 43.1785 42.0000 -Impact.ttf 101 ® 43.1785 43.3035 103 ] -2.7160 13.3942 46.1413 -Impact.ttf 101 ® 43.1785 43.3035 104 é -4.3917 25.5600 47.5698 -Impact.ttf 101 ® 43.1785 43.3035 105 z 5.5035 19.3198 37.8587 -Impact.ttf 101 ® 43.1785 43.3035 106 _ 47.9215 32.1413 2.8378 -Impact.ttf 101 ® 43.1785 43.3035 107 ¥ -2.8902 27.6250 46.1413 -Impact.ttf 102 © 43.1785 42.0000 1 t -1.2463 17.0878 43.1785 -Impact.ttf 102 © 43.1785 42.0000 2 h -4.1208 25.8600 46.1413 -Impact.ttf 102 © 43.1785 42.0000 3 a 4.2749 24.6815 37.8587 -Impact.ttf 102 © 43.1785 42.0000 4 n 4.1112 25.8600 37.8587 -Impact.ttf 102 © 43.1785 42.0000 5 P -4.0863 25.1622 46.1413 -Impact.ttf 102 © 43.1785 42.0000 6 o 3.9855 25.5600 37.8587 -Impact.ttf 102 © 43.1785 42.0000 7 e 4.2998 25.5600 37.8587 -Impact.ttf 102 © 43.1785 42.0000 8 : 11.8588 8.6802 30.3570 -Impact.ttf 102 © 43.1785 42.0000 9 r 4.5027 17.9105 37.8587 -Impact.ttf 102 © 43.1785 42.0000 10 l -4.0230 11.1622 46.1413 -Impact.ttf 102 © 43.1785 42.0000 11 i -4.1700 11.1622 46.1413 -Impact.ttf 102 © 43.1785 42.0000 12 1 -3.9247 19.5925 46.1413 -Impact.ttf 102 © 43.1785 42.0000 13 | -4.0031 5.8425 53.6430 -Impact.ttf 102 © 43.1785 42.0000 14 N -4.0050 26.3407 46.1413 -Impact.ttf 102 © 43.1785 42.0000 15 f -4.1501 15.6593 46.1413 -Impact.ttf 102 © 43.1785 42.0000 16 g 4.2829 25.8600 44.3570 -Impact.ttf 102 © 43.1785 42.0000 17 d -4.2517 25.8600 46.1413 -Impact.ttf 102 © 43.1785 42.0000 18 W -4.4421 46.2890 46.1413 -Impact.ttf 102 © 43.1785 42.0000 19 s 3.8873 23.5030 37.8587 -Impact.ttf 102 © 43.1785 42.0000 20 c 4.1971 24.6815 37.8587 -Impact.ttf 102 © 43.1785 42.0000 21 u 4.1468 25.8600 37.8587 -Impact.ttf 102 © 43.1785 42.0000 22 3 -4.8539 25.7680 47.8983 -Impact.ttf 102 © 43.1785 42.0000 23 ~ 11.1401 26.7885 12.8907 -Impact.ttf 102 © 43.1785 42.0000 24 # 1.0992 34.6652 41.1215 -Impact.ttf 102 © 43.1785 42.0000 25 O -4.8506 26.8215 47.8983 -Impact.ttf 102 © 43.1785 42.0000 26 ` -8.5931 15.1785 7.9267 -Impact.ttf 102 © 43.1785 42.0000 27 @ -4.9367 43.1785 48.8040 -Impact.ttf 102 © 43.1785 42.0000 28 F -4.2047 20.2675 46.1413 -Impact.ttf 102 © 43.1785 42.0000 29 S -5.1602 27.5192 47.8983 -Impact.ttf 102 © 43.1785 42.0000 30 p 4.0926 25.8600 43.1785 -Impact.ttf 102 © 43.1785 42.0000 31 “ -3.9929 19.2175 14.9477 -Impact.ttf 102 © 43.1785 42.0000 32 % -4.8287 37.9837 47.0198 -Impact.ttf 102 © 43.1785 42.0000 33 £ -5.2695 28.2727 47.0198 -Impact.ttf 102 © 43.1785 42.0000 34 . 32.7763 8.6802 9.3360 -Impact.ttf 102 © 43.1785 42.0000 35 2 -4.9809 23.9837 47.0198 -Impact.ttf 102 © 43.1785 42.0000 36 5 -4.2141 26.3407 47.0198 -Impact.ttf 102 © 43.1785 42.0000 37 m 4.0885 40.4657 37.8587 -Impact.ttf 102 © 43.1785 42.0000 38 V -4.1459 31.0355 46.1413 -Impact.ttf 102 © 43.1785 42.0000 39 6 -5.3345 26.3407 47.8983 -Impact.ttf 102 © 43.1785 42.0000 40 w 4.2873 38.9680 37.8587 -Impact.ttf 102 © 43.1785 42.0000 41 T -4.2266 26.3407 46.1413 -Impact.ttf 102 © 43.1785 42.0000 42 M -4.5606 36.8052 46.1413 -Impact.ttf 102 © 43.1785 42.0000 43 G -5.0582 26.9465 47.8983 -Impact.ttf 102 © 43.1785 42.0000 44 b -4.1881 25.8600 46.1413 -Impact.ttf 102 © 43.1785 42.0000 45 9 -5.1277 26.3407 47.8983 -Impact.ttf 102 © 43.1785 42.0000 46 ; 11.6602 8.6802 36.1995 -Impact.ttf 102 © 43.1785 42.0000 47 D -4.1625 26.9465 46.1413 -Impact.ttf 102 © 43.1785 42.0000 48 L -4.2256 18.8948 46.1413 -Impact.ttf 102 © 43.1785 42.0000 49 y 4.1992 27.3942 43.1785 -Impact.ttf 102 © 43.1785 42.0000 50 ‘ -3.9884 8.4302 14.9477 -Impact.ttf 102 © 43.1785 42.0000 51 \ -5.4059 23.9087 48.3733 -Impact.ttf 102 © 43.1785 42.0000 52 R -4.2730 26.3407 46.1413 -Impact.ttf 102 © 43.1785 42.0000 53 < 4.2160 27.6670 29.1785 -Impact.ttf 102 © 43.1785 42.0000 54 4 -3.8716 28.6977 46.1413 -Impact.ttf 102 © 43.1785 42.0000 55 8 -4.9679 26.0407 47.8983 -Impact.ttf 102 © 43.1785 42.0000 56 0 -4.8352 26.3407 47.8983 -Impact.ttf 102 © 43.1785 42.0000 57 A -4.2410 31.5355 46.1413 -Impact.ttf 102 © 43.1785 42.0000 58 E -4.0907 20.4483 46.1413 -Impact.ttf 102 © 43.1785 42.0000 59 B -4.3494 26.9465 46.1413 -Impact.ttf 102 © 43.1785 42.0000 60 v 4.1709 26.8215 37.8587 -Impact.ttf 102 © 43.1785 42.0000 61 k -4.1742 25.7680 46.1413 -Impact.ttf 102 © 43.1785 42.0000 62 J -4.4115 16.2320 46.1413 -Impact.ttf 102 © 43.1785 42.0000 63 U -4.3439 26.8215 47.0198 -Impact.ttf 102 © 43.1785 42.0000 64 j -4.4106 13.7692 51.4610 -Impact.ttf 102 © 43.1785 42.0000 65 ( -4.2367 14.9285 46.1413 -Impact.ttf 102 © 43.1785 42.0000 66 7 -4.4684 22.3245 46.1413 -Impact.ttf 102 © 43.1785 42.0000 67 § -4.8261 25.6430 53.5180 -Impact.ttf 102 © 43.1785 42.0000 68 $ -7.9454 26.8215 54.0680 -Impact.ttf 102 © 43.1785 42.0000 69 € -5.0735 28.6058 47.8983 -Impact.ttf 102 © 43.1785 42.0000 70 / -5.4907 22.7302 48.3733 -Impact.ttf 102 © 43.1785 42.0000 71 C -5.3765 26.9465 47.8983 -Impact.ttf 102 © 43.1785 42.0000 72 * -4.1347 15.4705 13.7692 -Impact.ttf 102 © 43.1785 42.0000 73 ” -4.1232 19.2175 14.9477 -Impact.ttf 102 © 43.1785 42.0000 74 ? -4.9720 26.8215 47.0198 -Impact.ttf 102 © 43.1785 42.0000 75 { -4.4068 19.1675 54.8215 -Impact.ttf 102 © 43.1785 42.0000 76 } -4.1388 19.1675 54.8215 -Impact.ttf 102 © 43.1785 42.0000 77 , 32.5823 8.4302 14.9477 -Impact.ttf 102 © 43.1785 42.0000 78 I -3.8397 11.6430 46.1413 -Impact.ttf 102 © 43.1785 42.0000 79 ° -4.8085 18.0163 18.0163 -Impact.ttf 102 © 43.1785 42.0000 80 K -4.4421 30.3570 46.1413 -Impact.ttf 102 © 43.1785 42.0000 81 H -4.3869 27.2192 46.1413 -Impact.ttf 102 © 43.1785 42.0000 82 q 4.2195 25.8600 43.1785 -Impact.ttf 102 © 43.1785 42.0000 83 & 4.1994 33.5925 37.8587 -Impact.ttf 102 © 43.1785 42.0000 84 ’ -4.0596 8.4302 14.9477 -Impact.ttf 102 © 43.1785 42.0000 85 [ -3.7960 13.3942 46.1413 -Impact.ttf 102 © 43.1785 42.0000 86 - 18.6880 14.8785 7.9267 -Impact.ttf 102 © 43.1785 42.0000 87 Y -3.8319 27.6250 46.1413 -Impact.ttf 102 © 43.1785 42.0000 88 Q -4.7773 26.8215 52.3395 -Impact.ttf 102 © 43.1785 42.0000 89 " -4.5519 19.7175 14.0000 -Impact.ttf 102 © 43.1785 42.0000 90 ! -4.0615 12.8215 46.1413 -Impact.ttf 102 © 43.1785 42.0000 91 x 3.7700 25.1760 37.8587 -Impact.ttf 102 © 43.1785 42.0000 92 ) -3.9741 14.9285 46.1413 -Impact.ttf 102 © 43.1785 42.0000 93 = 10.5040 27.6670 16.7320 -Impact.ttf 102 © 43.1785 42.0000 94 + 5.7132 27.1773 27.1773 -Impact.ttf 102 © 43.1785 42.0000 95 X -4.0203 29.6400 46.1413 -Impact.ttf 102 © 43.1785 42.0000 96 » 5.4548 19.6198 32.7140 -Impact.ttf 102 © 43.1785 42.0000 97 ' -4.1816 8.6802 14.0000 -Impact.ttf 102 © 43.1785 42.0000 98 ¢ -4.6030 25.8600 49.5017 -Impact.ttf 102 © 43.1785 42.0000 99 Z -4.0611 22.6245 46.1413 -Impact.ttf 102 © 43.1785 42.0000 100 > 3.8166 27.6670 29.1785 -Impact.ttf 102 © 43.1785 42.0000 101 ® -1.4745 43.1785 43.3035 -Impact.ttf 102 © 43.1785 42.0000 102 © -0.0871 43.1785 42.0000 -Impact.ttf 102 © 43.1785 42.0000 103 ] -4.1184 13.3942 46.1413 -Impact.ttf 102 © 43.1785 42.0000 104 é -5.4001 25.5600 47.5698 -Impact.ttf 102 © 43.1785 42.0000 105 z 3.9847 19.3198 37.8587 -Impact.ttf 102 © 43.1785 42.0000 106 _ 46.8492 32.1413 2.8378 -Impact.ttf 102 © 43.1785 42.0000 107 ¥ -4.1981 27.6250 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 1 t 2.9725 17.0878 43.1785 -Impact.ttf 103 ] 13.3942 46.1413 2 h -0.0955 25.8600 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 3 a 7.8497 24.6815 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 4 n 8.2357 25.8600 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 5 P -0.2100 25.1622 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 6 o 8.0750 25.5600 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 7 e 8.2825 25.5600 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 8 : 15.7187 8.6802 30.3570 -Impact.ttf 103 ] 13.3942 46.1413 9 r 8.2441 17.9105 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 10 l 0.0774 11.1622 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 11 i 0.1715 11.1622 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 12 1 -0.0871 19.5925 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 13 | 0.1713 5.8425 53.6430 -Impact.ttf 103 ] 13.3942 46.1413 14 N 0.0395 26.3407 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 15 f 0.0644 15.6593 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 16 g 8.3780 25.8600 44.3570 -Impact.ttf 103 ] 13.3942 46.1413 17 d -0.0330 25.8600 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 18 W -0.3008 46.2890 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 19 s 8.3070 23.5030 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 20 c 8.0999 24.6815 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 21 u 8.4476 25.8600 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 22 3 -0.8011 25.7680 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 23 ~ 15.3807 26.7885 12.8907 -Impact.ttf 103 ] 13.3942 46.1413 24 # 5.0198 34.6652 41.1215 -Impact.ttf 103 ] 13.3942 46.1413 25 O -0.9763 26.8215 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 26 ` -4.9237 15.1785 7.9267 -Impact.ttf 103 ] 13.3942 46.1413 27 @ -0.8043 43.1785 48.8040 -Impact.ttf 103 ] 13.3942 46.1413 28 F 0.1710 20.2675 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 29 S -0.7554 27.5192 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 30 p 8.1258 25.8600 43.1785 -Impact.ttf 103 ] 13.3942 46.1413 31 “ 0.1766 19.2175 14.9477 -Impact.ttf 103 ] 13.3942 46.1413 32 % -0.8484 37.9837 47.0198 -Impact.ttf 103 ] 13.3942 46.1413 33 £ -0.7412 28.2727 47.0198 -Impact.ttf 103 ] 13.3942 46.1413 34 . 36.7426 8.6802 9.3360 -Impact.ttf 103 ] 13.3942 46.1413 35 2 -0.9823 23.9837 47.0198 -Impact.ttf 103 ] 13.3942 46.1413 36 5 0.1743 26.3407 47.0198 -Impact.ttf 103 ] 13.3942 46.1413 37 m 8.5591 40.4657 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 38 V -0.1529 31.0355 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 39 6 -0.7741 26.3407 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 40 w 8.2968 38.9680 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 41 T -0.0357 26.3407 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 42 M 0.0635 36.8052 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 43 G -0.8198 26.9465 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 44 b -0.0885 25.8600 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 45 9 -0.8288 26.3407 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 46 ; 15.7823 8.6802 36.1995 -Impact.ttf 103 ] 13.3942 46.1413 47 D -0.1739 26.9465 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 48 L -0.0298 18.8948 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 49 y 8.1097 27.3942 43.1785 -Impact.ttf 103 ] 13.3942 46.1413 50 ‘ 0.0385 8.4302 14.9477 -Impact.ttf 103 ] 13.3942 46.1413 51 \ -0.8065 23.9087 48.3733 -Impact.ttf 103 ] 13.3942 46.1413 52 R -0.0000 26.3407 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 53 < 8.0406 27.6670 29.1785 -Impact.ttf 103 ] 13.3942 46.1413 54 4 0.0000 28.6977 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 55 8 -0.6727 26.0407 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 56 0 -0.8785 26.3407 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 57 A 0.2557 31.5355 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 58 E 0.0430 20.4483 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 59 B 0.2326 26.9465 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 60 v 8.1027 26.8215 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 61 k 0.0357 25.7680 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 62 J -0.0204 16.2320 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 63 U -0.3637 26.8215 47.0198 -Impact.ttf 103 ] 13.3942 46.1413 64 j -0.0714 13.7692 51.4610 -Impact.ttf 103 ] 13.3942 46.1413 65 ( 0.2865 14.9285 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 66 7 -0.0944 22.3245 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 67 § -0.8812 25.6430 53.5180 -Impact.ttf 103 ] 13.3942 46.1413 68 $ -3.9254 26.8215 54.0680 -Impact.ttf 103 ] 13.3942 46.1413 69 € -0.9499 28.6058 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 70 / -1.1347 22.7302 48.3733 -Impact.ttf 103 ] 13.3942 46.1413 71 C -0.9156 26.9465 47.8983 -Impact.ttf 103 ] 13.3942 46.1413 72 * 0.0746 15.4705 13.7692 -Impact.ttf 103 ] 13.3942 46.1413 73 ” 0.0176 19.2175 14.9477 -Impact.ttf 103 ] 13.3942 46.1413 74 ? -0.9253 26.8215 47.0198 -Impact.ttf 103 ] 13.3942 46.1413 75 { 0.0167 19.1675 54.8215 -Impact.ttf 103 ] 13.3942 46.1413 76 } 0.0955 19.1675 54.8215 -Impact.ttf 103 ] 13.3942 46.1413 77 , 37.2056 8.4302 14.9477 -Impact.ttf 103 ] 13.3942 46.1413 78 I -0.0885 11.6430 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 79 ° -0.8615 18.0163 18.0163 -Impact.ttf 103 ] 13.3942 46.1413 80 K -0.1475 30.3570 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 81 H 0.0760 27.2192 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 82 q 8.0247 25.8600 43.1785 -Impact.ttf 103 ] 13.3942 46.1413 83 & 8.1199 33.5925 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 84 ’ 0.0385 8.4302 14.9477 -Impact.ttf 103 ] 13.3942 46.1413 85 [ -0.1312 13.3942 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 86 - 22.9521 14.8785 7.9267 -Impact.ttf 103 ] 13.3942 46.1413 87 Y 0.2345 27.6250 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 88 Q -0.9624 26.8215 52.3395 -Impact.ttf 103 ] 13.3942 46.1413 89 " -0.3198 19.7175 14.0000 -Impact.ttf 103 ] 13.3942 46.1413 90 ! 0.0913 12.8215 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 91 x 8.2996 25.1760 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 92 ) 0.2780 14.9285 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 93 = 14.9929 27.6670 16.7320 -Impact.ttf 103 ] 13.3942 46.1413 94 + 9.9889 27.1773 27.1773 -Impact.ttf 103 ] 13.3942 46.1413 95 X 0.2710 29.6400 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 96 » 9.6770 19.6198 32.7140 -Impact.ttf 103 ] 13.3942 46.1413 97 ' 0.0000 8.6802 14.0000 -Impact.ttf 103 ] 13.3942 46.1413 98 ¢ 0.0295 25.8600 49.5017 -Impact.ttf 103 ] 13.3942 46.1413 99 Z 0.1339 22.6245 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 100 > 8.1016 27.6670 29.1785 -Impact.ttf 103 ] 13.3942 46.1413 101 ® 2.7376 43.1785 43.3035 -Impact.ttf 103 ] 13.3942 46.1413 102 © 4.0847 43.1785 42.0000 -Impact.ttf 103 ] 13.3942 46.1413 103 ] 0.1742 13.3942 46.1413 -Impact.ttf 103 ] 13.3942 46.1413 104 é -1.3511 25.5600 47.5698 -Impact.ttf 103 ] 13.3942 46.1413 105 z 8.1903 19.3198 37.8587 -Impact.ttf 103 ] 13.3942 46.1413 106 _ 50.6577 32.1413 2.8378 -Impact.ttf 103 ] 13.3942 46.1413 107 ¥ 0.3156 27.6250 46.1413 -Impact.ttf 104 é 25.5600 47.5698 1 t 4.3139 17.0878 43.1785 -Impact.ttf 104 é 25.5600 47.5698 2 h 1.4642 25.8600 46.1413 -Impact.ttf 104 é 25.5600 47.5698 3 a 9.7557 24.6815 37.8587 -Impact.ttf 104 é 25.5600 47.5698 4 n 9.4985 25.8600 37.8587 -Impact.ttf 104 é 25.5600 47.5698 5 P 1.4312 25.1622 46.1413 -Impact.ttf 104 é 25.5600 47.5698 6 o 9.6656 25.5600 37.8587 -Impact.ttf 104 é 25.5600 47.5698 7 e 9.6726 25.5600 37.8587 -Impact.ttf 104 é 25.5600 47.5698 8 : 17.0445 8.6802 30.3570 -Impact.ttf 104 é 25.5600 47.5698 9 r 9.6963 17.9105 37.8587 -Impact.ttf 104 é 25.5600 47.5698 10 l 1.4502 11.1622 46.1413 -Impact.ttf 104 é 25.5600 47.5698 11 i 1.6898 11.1622 46.1413 -Impact.ttf 104 é 25.5600 47.5698 12 1 1.3186 19.5925 46.1413 -Impact.ttf 104 é 25.5600 47.5698 13 | 1.5027 5.8425 53.6430 -Impact.ttf 104 é 25.5600 47.5698 14 N 1.5999 26.3407 46.1413 -Impact.ttf 104 é 25.5600 47.5698 15 f 1.5110 15.6593 46.1413 -Impact.ttf 104 é 25.5600 47.5698 16 g 9.7365 25.8600 44.3570 -Impact.ttf 104 é 25.5600 47.5698 17 d 1.4299 25.8600 46.1413 -Impact.ttf 104 é 25.5600 47.5698 18 W 1.4202 46.2890 46.1413 -Impact.ttf 104 é 25.5600 47.5698 19 s 9.8566 23.5030 37.8587 -Impact.ttf 104 é 25.5600 47.5698 20 c 9.8612 24.6815 37.8587 -Impact.ttf 104 é 25.5600 47.5698 21 u 9.8505 25.8600 37.8587 -Impact.ttf 104 é 25.5600 47.5698 22 3 0.3650 25.7680 47.8983 -Impact.ttf 104 é 25.5600 47.5698 23 ~ 16.7142 26.7885 12.8907 -Impact.ttf 104 é 25.5600 47.5698 24 # 6.5372 34.6652 41.1215 -Impact.ttf 104 é 25.5600 47.5698 25 O 0.4818 26.8215 47.8983 -Impact.ttf 104 é 25.5600 47.5698 26 ` -3.5387 15.1785 7.9267 -Impact.ttf 104 é 25.5600 47.5698 27 @ 0.4161 43.1785 48.8040 -Impact.ttf 104 é 25.5600 47.5698 28 F 1.5443 20.2675 46.1413 -Impact.ttf 104 é 25.5600 47.5698 29 S 0.3782 27.5192 47.8983 -Impact.ttf 104 é 25.5600 47.5698 30 p 9.7995 25.8600 43.1785 -Impact.ttf 104 é 25.5600 47.5698 31 “ 1.2348 19.2175 14.9477 -Impact.ttf 104 é 25.5600 47.5698 32 % 0.7326 37.9837 47.0198 -Impact.ttf 104 é 25.5600 47.5698 33 £ 0.4304 28.2727 47.0198 -Impact.ttf 104 é 25.5600 47.5698 34 . 38.4863 8.6802 9.3360 -Impact.ttf 104 é 25.5600 47.5698 35 2 0.3038 23.9837 47.0198 -Impact.ttf 104 é 25.5600 47.5698 36 5 1.7477 26.3407 47.0198 -Impact.ttf 104 é 25.5600 47.5698 37 m 9.7481 40.4657 37.8587 -Impact.ttf 104 é 25.5600 47.5698 38 V 1.6328 31.0355 46.1413 -Impact.ttf 104 é 25.5600 47.5698 39 6 0.6434 26.3407 47.8983 -Impact.ttf 104 é 25.5600 47.5698 40 w 9.8171 38.9680 37.8587 -Impact.ttf 104 é 25.5600 47.5698 41 T 1.4193 26.3407 46.1413 -Impact.ttf 104 é 25.5600 47.5698 42 M 1.5911 36.8052 46.1413 -Impact.ttf 104 é 25.5600 47.5698 43 G 0.8595 26.9465 47.8983 -Impact.ttf 104 é 25.5600 47.5698 44 b 1.5888 25.8600 46.1413 -Impact.ttf 104 é 25.5600 47.5698 45 9 0.4609 26.3407 47.8983 -Impact.ttf 104 é 25.5600 47.5698 46 ; 17.3643 8.6802 36.1995 -Impact.ttf 104 é 25.5600 47.5698 47 D 1.5156 26.9465 46.1413 -Impact.ttf 104 é 25.5600 47.5698 48 L 1.1003 18.8948 46.1413 -Impact.ttf 104 é 25.5600 47.5698 49 y 9.7375 27.3942 43.1785 -Impact.ttf 104 é 25.5600 47.5698 50 ‘ 1.4299 8.4302 14.9477 -Impact.ttf 104 é 25.5600 47.5698 51 \ 0.2938 23.9087 48.3733 -Impact.ttf 104 é 25.5600 47.5698 52 R 1.4610 26.3407 46.1413 -Impact.ttf 104 é 25.5600 47.5698 53 < 9.6574 27.6670 29.1785 -Impact.ttf 104 é 25.5600 47.5698 54 4 1.4583 28.6977 46.1413 -Impact.ttf 104 é 25.5600 47.5698 55 8 0.6274 26.0407 47.8983 -Impact.ttf 104 é 25.5600 47.5698 56 0 0.4078 26.3407 47.8983 -Impact.ttf 104 é 25.5600 47.5698 57 A 1.3603 31.5355 46.1413 -Impact.ttf 104 é 25.5600 47.5698 58 E 1.4846 20.4483 46.1413 -Impact.ttf 104 é 25.5600 47.5698 59 B 1.4554 26.9465 46.1413 -Impact.ttf 104 é 25.5600 47.5698 60 v 9.6981 26.8215 37.8587 -Impact.ttf 104 é 25.5600 47.5698 61 k 1.0872 25.7680 46.1413 -Impact.ttf 104 é 25.5600 47.5698 62 J 1.6283 16.2320 46.1413 -Impact.ttf 104 é 25.5600 47.5698 63 U 1.5513 26.8215 47.0198 -Impact.ttf 104 é 25.5600 47.5698 64 j 1.5240 13.7692 51.4610 -Impact.ttf 104 é 25.5600 47.5698 65 ( 1.4475 14.9285 46.1413 -Impact.ttf 104 é 25.5600 47.5698 66 7 1.5403 22.3245 46.1413 -Impact.ttf 104 é 25.5600 47.5698 67 § 0.7350 25.6430 53.5180 -Impact.ttf 104 é 25.5600 47.5698 68 $ -2.2258 26.8215 54.0680 -Impact.ttf 104 é 25.5600 47.5698 69 € 0.6010 28.6058 47.8983 -Impact.ttf 104 é 25.5600 47.5698 70 / 0.4135 22.7302 48.3733 -Impact.ttf 104 é 25.5600 47.5698 71 C 0.8123 26.9465 47.8983 -Impact.ttf 104 é 25.5600 47.5698 72 * 1.5240 15.4705 13.7692 -Impact.ttf 104 é 25.5600 47.5698 73 ” 1.4680 19.2175 14.9477 -Impact.ttf 104 é 25.5600 47.5698 74 ? 0.3915 26.8215 47.0198 -Impact.ttf 104 é 25.5600 47.5698 75 { 1.4428 19.1675 54.8215 -Impact.ttf 104 é 25.5600 47.5698 76 } 1.6838 19.1675 54.8215 -Impact.ttf 104 é 25.5600 47.5698 77 , 38.5887 8.4302 14.9477 -Impact.ttf 104 é 25.5600 47.5698 78 I 1.3534 11.6430 46.1413 -Impact.ttf 104 é 25.5600 47.5698 79 ° 0.5643 18.0163 18.0163 -Impact.ttf 104 é 25.5600 47.5698 80 K 1.1616 30.3570 46.1413 -Impact.ttf 104 é 25.5600 47.5698 81 H 1.3441 27.2192 46.1413 -Impact.ttf 104 é 25.5600 47.5698 82 q 9.6726 25.8600 43.1785 -Impact.ttf 104 é 25.5600 47.5698 83 & 9.8949 33.5925 37.8587 -Impact.ttf 104 é 25.5600 47.5698 84 ’ 1.5656 8.4302 14.9477 -Impact.ttf 104 é 25.5600 47.5698 85 [ 1.6054 13.3942 46.1413 -Impact.ttf 104 é 25.5600 47.5698 86 - 24.4243 14.8785 7.9267 -Impact.ttf 104 é 25.5600 47.5698 87 Y 1.3016 27.6250 46.1413 -Impact.ttf 104 é 25.5600 47.5698 88 Q 0.6655 26.8215 52.3395 -Impact.ttf 104 é 25.5600 47.5698 89 " 1.3428 19.7175 14.0000 -Impact.ttf 104 é 25.5600 47.5698 90 ! 1.3330 12.8215 46.1413 -Impact.ttf 104 é 25.5600 47.5698 91 x 9.6035 25.1760 37.8587 -Impact.ttf 104 é 25.5600 47.5698 92 ) 1.2991 14.9285 46.1413 -Impact.ttf 104 é 25.5600 47.5698 93 = 16.5924 27.6670 16.7320 -Impact.ttf 104 é 25.5600 47.5698 94 + 11.2723 27.1773 27.1773 -Impact.ttf 104 é 25.5600 47.5698 95 X 1.0637 29.6400 46.1413 -Impact.ttf 104 é 25.5600 47.5698 96 » 11.1573 19.6198 32.7140 -Impact.ttf 104 é 25.5600 47.5698 97 ' 1.2959 8.6802 14.0000 -Impact.ttf 104 é 25.5600 47.5698 98 ¢ 1.6561 25.8600 49.5017 -Impact.ttf 104 é 25.5600 47.5698 99 Z 1.5354 22.6245 46.1413 -Impact.ttf 104 é 25.5600 47.5698 100 > 9.4091 27.6670 29.1785 -Impact.ttf 104 é 25.5600 47.5698 101 ® 4.3260 43.1785 43.3035 -Impact.ttf 104 é 25.5600 47.5698 102 © 6.0122 43.1785 42.0000 -Impact.ttf 104 é 25.5600 47.5698 103 ] 1.3571 13.3942 46.1413 -Impact.ttf 104 é 25.5600 47.5698 104 é 0.0527 25.5600 47.5698 -Impact.ttf 104 é 25.5600 47.5698 105 z 9.6109 19.3198 37.8587 -Impact.ttf 104 é 25.5600 47.5698 106 _ 52.0936 32.1413 2.8378 -Impact.ttf 104 é 25.5600 47.5698 107 ¥ 1.4740 27.6250 46.1413 -Impact.ttf 105 z 19.3198 37.8587 1 t -5.4439 17.0878 43.1785 -Impact.ttf 105 z 19.3198 37.8587 2 h -8.2825 25.8600 46.1413 -Impact.ttf 105 z 19.3198 37.8587 3 a -0.0440 24.6815 37.8587 -Impact.ttf 105 z 19.3198 37.8587 4 n 0.3652 25.8600 37.8587 -Impact.ttf 105 z 19.3198 37.8587 5 P -8.3529 25.1622 46.1413 -Impact.ttf 105 z 19.3198 37.8587 6 o -0.0417 25.5600 37.8587 -Impact.ttf 105 z 19.3198 37.8587 7 e -0.1312 25.5600 37.8587 -Impact.ttf 105 z 19.3198 37.8587 8 : 7.4847 8.6802 30.3570 -Impact.ttf 105 z 19.3198 37.8587 9 r 0.1864 17.9105 37.8587 -Impact.ttf 105 z 19.3198 37.8587 10 l -8.2213 11.1622 46.1413 -Impact.ttf 105 z 19.3198 37.8587 11 i -8.3710 11.1622 46.1413 -Impact.ttf 105 z 19.3198 37.8587 12 1 -8.1941 19.5925 46.1413 -Impact.ttf 105 z 19.3198 37.8587 13 | -8.1199 5.8425 53.6430 -Impact.ttf 105 z 19.3198 37.8587 14 N -8.4479 26.3407 46.1413 -Impact.ttf 105 z 19.3198 37.8587 15 f -8.3026 15.6593 46.1413 -Impact.ttf 105 z 19.3198 37.8587 16 g -0.2186 25.8600 44.3570 -Impact.ttf 105 z 19.3198 37.8587 17 d -8.5972 25.8600 46.1413 -Impact.ttf 105 z 19.3198 37.8587 18 W -8.4108 46.2890 46.1413 -Impact.ttf 105 z 19.3198 37.8587 19 s 0.0070 23.5030 37.8587 -Impact.ttf 105 z 19.3198 37.8587 20 c -0.1422 24.6815 37.8587 -Impact.ttf 105 z 19.3198 37.8587 21 u -0.0473 25.8600 37.8587 -Impact.ttf 105 z 19.3198 37.8587 22 3 -9.1852 25.7680 47.8983 -Impact.ttf 105 z 19.3198 37.8587 23 ~ 7.2502 26.7885 12.8907 -Impact.ttf 105 z 19.3198 37.8587 24 # -3.0685 34.6652 41.1215 -Impact.ttf 105 z 19.3198 37.8587 25 O -9.2097 26.8215 47.8983 -Impact.ttf 105 z 19.3198 37.8587 26 ` -13.4304 15.1785 7.9267 -Impact.ttf 105 z 19.3198 37.8587 27 @ -9.2040 43.1785 48.8040 -Impact.ttf 105 z 19.3198 37.8587 28 F -8.2013 20.2675 46.1413 -Impact.ttf 105 z 19.3198 37.8587 29 S -9.2801 27.5192 47.8983 -Impact.ttf 105 z 19.3198 37.8587 30 p 0.1516 25.8600 43.1785 -Impact.ttf 105 z 19.3198 37.8587 31 “ -8.1481 19.2175 14.9477 -Impact.ttf 105 z 19.3198 37.8587 32 % -9.1795 37.9837 47.0198 -Impact.ttf 105 z 19.3198 37.8587 33 £ -9.1995 28.2727 47.0198 -Impact.ttf 105 z 19.3198 37.8587 34 . 28.7372 8.6802 9.3360 -Impact.ttf 105 z 19.3198 37.8587 35 2 -9.2051 23.9837 47.0198 -Impact.ttf 105 z 19.3198 37.8587 36 5 -8.2097 26.3407 47.0198 -Impact.ttf 105 z 19.3198 37.8587 37 m 0.0312 40.4657 37.8587 -Impact.ttf 105 z 19.3198 37.8587 38 V -8.2955 31.0355 46.1413 -Impact.ttf 105 z 19.3198 37.8587 39 6 -9.2422 26.3407 47.8983 -Impact.ttf 105 z 19.3198 37.8587 40 w -0.2613 38.9680 37.8587 -Impact.ttf 105 z 19.3198 37.8587 41 T -8.3182 26.3407 46.1413 -Impact.ttf 105 z 19.3198 37.8587 42 M -8.4071 36.8052 46.1413 -Impact.ttf 105 z 19.3198 37.8587 43 G -8.8543 26.9465 47.8983 -Impact.ttf 105 z 19.3198 37.8587 44 b -8.1129 25.8600 46.1413 -Impact.ttf 105 z 19.3198 37.8587 45 9 -9.1642 26.3407 47.8983 -Impact.ttf 105 z 19.3198 37.8587 46 ; 7.6407 8.6802 36.1995 -Impact.ttf 105 z 19.3198 37.8587 47 D -8.3248 26.9465 46.1413 -Impact.ttf 105 z 19.3198 37.8587 48 L -8.1941 18.8948 46.1413 -Impact.ttf 105 z 19.3198 37.8587 49 y -0.1126 27.3942 43.1785 -Impact.ttf 105 z 19.3198 37.8587 50 ‘ -8.2324 8.4302 14.9477 -Impact.ttf 105 z 19.3198 37.8587 51 \ -9.4315 23.9087 48.3733 -Impact.ttf 105 z 19.3198 37.8587 52 R -8.3664 26.3407 46.1413 -Impact.ttf 105 z 19.3198 37.8587 53 < -0.3249 27.6670 29.1785 -Impact.ttf 105 z 19.3198 37.8587 54 4 -8.5008 28.6977 46.1413 -Impact.ttf 105 z 19.3198 37.8587 55 8 -9.2305 26.0407 47.8983 -Impact.ttf 105 z 19.3198 37.8587 56 0 -9.0423 26.3407 47.8983 -Impact.ttf 105 z 19.3198 37.8587 57 A -8.4309 31.5355 46.1413 -Impact.ttf 105 z 19.3198 37.8587 58 E -8.1512 20.4483 46.1413 -Impact.ttf 105 z 19.3198 37.8587 59 B -8.0287 26.9465 46.1413 -Impact.ttf 105 z 19.3198 37.8587 60 v 0.0973 26.8215 37.8587 -Impact.ttf 105 z 19.3198 37.8587 61 k -8.2488 25.7680 46.1413 -Impact.ttf 105 z 19.3198 37.8587 62 J -8.4377 16.2320 46.1413 -Impact.ttf 105 z 19.3198 37.8587 63 U -8.2996 26.8215 47.0198 -Impact.ttf 105 z 19.3198 37.8587 64 j -8.4906 13.7692 51.4610 -Impact.ttf 105 z 19.3198 37.8587 65 ( -8.5379 14.9285 46.1413 -Impact.ttf 105 z 19.3198 37.8587 66 7 -8.2441 22.3245 46.1413 -Impact.ttf 105 z 19.3198 37.8587 67 § -9.2922 25.6430 53.5180 -Impact.ttf 105 z 19.3198 37.8587 68 $ -12.2196 26.8215 54.0680 -Impact.ttf 105 z 19.3198 37.8587 69 € -9.0656 28.6058 47.8983 -Impact.ttf 105 z 19.3198 37.8587 70 / -9.4199 22.7302 48.3733 -Impact.ttf 105 z 19.3198 37.8587 71 C -9.3650 26.9465 47.8983 -Impact.ttf 105 z 19.3198 37.8587 72 * -8.5222 15.4705 13.7692 -Impact.ttf 105 z 19.3198 37.8587 73 ” -8.3594 19.2175 14.9477 -Impact.ttf 105 z 19.3198 37.8587 74 ? -9.2495 26.8215 47.0198 -Impact.ttf 105 z 19.3198 37.8587 75 { -8.4637 19.1675 54.8215 -Impact.ttf 105 z 19.3198 37.8587 76 } -8.3321 19.1675 54.8215 -Impact.ttf 105 z 19.3198 37.8587 77 , 29.0890 8.4302 14.9477 -Impact.ttf 105 z 19.3198 37.8587 78 I -8.3650 11.6430 46.1413 -Impact.ttf 105 z 19.3198 37.8587 79 ° -9.1226 18.0163 18.0163 -Impact.ttf 105 z 19.3198 37.8587 80 K -8.4248 30.3570 46.1413 -Impact.ttf 105 z 19.3198 37.8587 81 H -8.2051 27.2192 46.1413 -Impact.ttf 105 z 19.3198 37.8587 82 q -0.1891 25.8600 43.1785 -Impact.ttf 105 z 19.3198 37.8587 83 & -0.1798 33.5925 37.8587 -Impact.ttf 105 z 19.3198 37.8587 84 ’ -8.0642 8.4302 14.9477 -Impact.ttf 105 z 19.3198 37.8587 85 [ -8.2612 13.3942 46.1413 -Impact.ttf 105 z 19.3198 37.8587 86 - 14.7535 14.8785 7.9267 -Impact.ttf 105 z 19.3198 37.8587 87 Y -8.3755 27.6250 46.1413 -Impact.ttf 105 z 19.3198 37.8587 88 Q -8.9816 26.8215 52.3395 -Impact.ttf 105 z 19.3198 37.8587 89 " -8.1871 19.7175 14.0000 -Impact.ttf 105 z 19.3198 37.8587 90 ! -8.1954 12.8215 46.1413 -Impact.ttf 105 z 19.3198 37.8587 91 x -0.0944 25.1760 37.8587 -Impact.ttf 105 z 19.3198 37.8587 92 ) -8.0036 14.9285 46.1413 -Impact.ttf 105 z 19.3198 37.8587 93 = 6.5733 27.6670 16.7320 -Impact.ttf 105 z 19.3198 37.8587 94 + 1.3352 27.1773 27.1773 -Impact.ttf 105 z 19.3198 37.8587 95 X -8.2585 29.6400 46.1413 -Impact.ttf 105 z 19.3198 37.8587 96 » 1.3904 19.6198 32.7140 -Impact.ttf 105 z 19.3198 37.8587 97 ' -8.3769 8.6802 14.0000 -Impact.ttf 105 z 19.3198 37.8587 98 ¢ -8.2464 25.8600 49.5017 -Impact.ttf 105 z 19.3198 37.8587 99 Z -8.4456 22.6245 46.1413 -Impact.ttf 105 z 19.3198 37.8587 100 > 0.0182 27.6670 29.1785 -Impact.ttf 105 z 19.3198 37.8587 101 ® -5.5217 43.1785 43.3035 -Impact.ttf 105 z 19.3198 37.8587 102 © -4.0744 43.1785 42.0000 -Impact.ttf 105 z 19.3198 37.8587 103 ] -8.1375 13.3942 46.1413 -Impact.ttf 105 z 19.3198 37.8587 104 é -9.7527 25.5600 47.5698 -Impact.ttf 105 z 19.3198 37.8587 105 z -0.0676 19.3198 37.8587 -Impact.ttf 105 z 19.3198 37.8587 106 _ 42.1212 32.1413 2.8378 -Impact.ttf 105 z 19.3198 37.8587 107 ¥ -8.0498 27.6250 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 1 t -47.7867 17.0878 43.1785 -Impact.ttf 106 _ 32.1413 2.8378 2 h -50.4213 25.8600 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 3 a -42.3227 24.6815 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 4 n -42.5480 25.8600 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 5 P -50.6624 25.1622 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 6 o -42.0984 25.5600 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 7 e -42.2274 25.5600 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 8 : -34.7612 8.6802 30.3570 -Impact.ttf 106 _ 32.1413 2.8378 9 r -42.0132 17.9105 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 10 l -50.0886 11.1622 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 11 i -50.8491 11.1622 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 12 1 -50.6962 19.5925 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 13 | -50.5385 5.8425 53.6430 -Impact.ttf 106 _ 32.1413 2.8378 14 N -50.5183 26.3407 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 15 f -50.1881 15.6593 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 16 g -42.1652 25.8600 44.3570 -Impact.ttf 106 _ 32.1413 2.8378 17 d -50.4713 25.8600 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 18 W -50.3954 46.2890 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 19 s -42.1486 23.5030 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 20 c -42.4386 24.6815 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 21 u -42.4725 25.8600 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 22 3 -51.3532 25.7680 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 23 ~ -35.0857 26.7885 12.8907 -Impact.ttf 106 _ 32.1413 2.8378 24 # -45.4543 34.6652 41.1215 -Impact.ttf 106 _ 32.1413 2.8378 25 O -51.2794 26.8215 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 26 ` -55.5674 15.1785 7.9267 -Impact.ttf 106 _ 32.1413 2.8378 27 @ -51.3865 43.1785 48.8040 -Impact.ttf 106 _ 32.1413 2.8378 28 F -50.6840 20.2675 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 29 S -51.6236 27.5192 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 30 p -42.3622 25.8600 43.1785 -Impact.ttf 106 _ 32.1413 2.8378 31 “ -50.4385 19.2175 14.9477 -Impact.ttf 106 _ 32.1413 2.8378 32 % -51.5261 37.9837 47.0198 -Impact.ttf 106 _ 32.1413 2.8378 33 £ -51.5792 28.2727 47.0198 -Impact.ttf 106 _ 32.1413 2.8378 34 . -13.4487 8.6802 9.3360 -Impact.ttf 106 _ 32.1413 2.8378 35 2 -51.2044 23.9837 47.0198 -Impact.ttf 106 _ 32.1413 2.8378 36 5 -50.7982 26.3407 47.0198 -Impact.ttf 106 _ 32.1413 2.8378 37 m -42.2096 40.4657 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 38 V -50.1670 31.0355 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 39 6 -51.6748 26.3407 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 40 w -42.4068 38.9680 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 41 T -50.2652 26.3407 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 42 M -50.4454 36.8052 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 43 G -51.4782 26.9465 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 44 b -50.5410 25.8600 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 45 9 -51.1053 26.3407 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 46 ; -34.6496 8.6802 36.1995 -Impact.ttf 106 _ 32.1413 2.8378 47 D -50.6141 26.9465 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 48 L -50.5195 18.8948 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 49 y -42.3450 27.3942 43.1785 -Impact.ttf 106 _ 32.1413 2.8378 50 ‘ -50.4268 8.4302 14.9477 -Impact.ttf 106 _ 32.1413 2.8378 51 \ -51.8702 23.9087 48.3733 -Impact.ttf 106 _ 32.1413 2.8378 52 R -50.8133 26.3407 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 53 < -42.7287 27.6670 29.1785 -Impact.ttf 106 _ 32.1413 2.8378 54 4 -50.6294 28.6977 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 55 8 -51.3995 26.0407 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 56 0 -51.3621 26.3407 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 57 A -50.6855 31.5355 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 58 E -50.9120 20.4483 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 59 B -50.4713 26.9465 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 60 v -42.1393 26.8215 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 61 k -50.3939 25.7680 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 62 J -50.5793 16.2320 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 63 U -50.2990 26.8215 47.0198 -Impact.ttf 106 _ 32.1413 2.8378 64 j -50.2132 13.7692 51.4610 -Impact.ttf 106 _ 32.1413 2.8378 65 ( -50.6392 14.9285 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 66 7 -50.6483 22.3245 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 67 § -51.5111 25.6430 53.5180 -Impact.ttf 106 _ 32.1413 2.8378 68 $ -54.5415 26.8215 54.0680 -Impact.ttf 106 _ 32.1413 2.8378 69 € -51.2197 28.6058 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 70 / -51.3338 22.7302 48.3733 -Impact.ttf 106 _ 32.1413 2.8378 71 C -51.6478 26.9465 47.8983 -Impact.ttf 106 _ 32.1413 2.8378 72 * -50.5312 15.4705 13.7692 -Impact.ttf 106 _ 32.1413 2.8378 73 ” -50.5664 19.2175 14.9477 -Impact.ttf 106 _ 32.1413 2.8378 74 ? -51.8165 26.8215 47.0198 -Impact.ttf 106 _ 32.1413 2.8378 75 { -50.3907 19.1675 54.8215 -Impact.ttf 106 _ 32.1413 2.8378 76 } -50.5552 19.1675 54.8215 -Impact.ttf 106 _ 32.1413 2.8378 77 , -13.5899 8.4302 14.9477 -Impact.ttf 106 _ 32.1413 2.8378 78 I -50.6392 11.6430 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 79 ° -51.3498 18.0163 18.0163 -Impact.ttf 106 _ 32.1413 2.8378 80 K -50.1920 30.3570 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 81 H -50.6981 27.2192 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 82 q -42.4428 25.8600 43.1785 -Impact.ttf 106 _ 32.1413 2.8378 83 & -42.3195 33.5925 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 84 ’ -50.4041 8.4302 14.9477 -Impact.ttf 106 _ 32.1413 2.8378 85 [ -50.6781 13.3942 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 86 - -27.5907 14.8785 7.9267 -Impact.ttf 106 _ 32.1413 2.8378 87 Y -50.7106 27.6250 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 88 Q -51.4708 26.8215 52.3395 -Impact.ttf 106 _ 32.1413 2.8378 89 " -50.5808 19.7175 14.0000 -Impact.ttf 106 _ 32.1413 2.8378 90 ! -50.7183 12.8215 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 91 x -42.0460 25.1760 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 92 ) -50.7034 14.9285 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 93 = -35.7052 27.6670 16.7320 -Impact.ttf 106 _ 32.1413 2.8378 94 + -40.9161 27.1773 27.1773 -Impact.ttf 106 _ 32.1413 2.8378 95 X -50.8518 29.6400 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 96 » -40.8996 19.6198 32.7140 -Impact.ttf 106 _ 32.1413 2.8378 97 ' -50.5636 8.6802 14.0000 -Impact.ttf 106 _ 32.1413 2.8378 98 ¢ -50.6596 25.8600 49.5017 -Impact.ttf 106 _ 32.1413 2.8378 99 Z -50.5174 22.6245 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 100 > -42.5351 27.6670 29.1785 -Impact.ttf 106 _ 32.1413 2.8378 101 ® -47.8046 43.1785 43.3035 -Impact.ttf 106 _ 32.1413 2.8378 102 © -46.7522 43.1785 42.0000 -Impact.ttf 106 _ 32.1413 2.8378 103 ] -50.5391 13.3942 46.1413 -Impact.ttf 106 _ 32.1413 2.8378 104 é -52.0079 25.5600 47.5698 -Impact.ttf 106 _ 32.1413 2.8378 105 z -42.2631 19.3198 37.8587 -Impact.ttf 106 _ 32.1413 2.8378 106 _ -0.1301 32.1413 2.8378 -Impact.ttf 106 _ 32.1413 2.8378 107 ¥ -50.4741 27.6250 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 1 t 2.9080 17.0878 43.1785 -Impact.ttf 107 ¥ 27.6250 46.1413 2 h -0.2256 25.8600 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 3 a 8.5138 24.6815 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 4 n 8.4080 25.8600 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 5 P -0.0801 25.1622 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 6 o 8.0626 25.5600 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 7 e 8.2273 25.5600 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 8 : 15.8442 8.6802 30.3570 -Impact.ttf 107 ¥ 27.6250 46.1413 9 r 8.2190 17.9105 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 10 l -0.1696 11.1622 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 11 i -0.3596 11.1622 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 12 1 -0.0672 19.5925 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 13 | -0.1029 5.8425 53.6430 -Impact.ttf 107 ¥ 27.6250 46.1413 14 N -0.1399 26.3407 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 15 f 0.0913 15.6593 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 16 g 8.2500 25.8600 44.3570 -Impact.ttf 107 ¥ 27.6250 46.1413 17 d -0.0710 25.8600 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 18 W -0.1093 46.2890 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 19 s 8.1601 23.5030 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 20 c 7.9756 24.6815 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 21 u 8.2222 25.8600 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 22 3 -0.8785 25.7680 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 23 ~ 15.8283 26.7885 12.8907 -Impact.ttf 107 ¥ 27.6250 46.1413 24 # 4.9767 34.6652 41.1215 -Impact.ttf 107 ¥ 27.6250 46.1413 25 O -0.7029 26.8215 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 26 ` -4.9223 15.1785 7.9267 -Impact.ttf 107 ¥ 27.6250 46.1413 27 @ -1.2836 43.1785 48.8040 -Impact.ttf 107 ¥ 27.6250 46.1413 28 F 0.0175 20.2675 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 29 S -1.0904 27.5192 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 30 p 8.2696 25.8600 43.1785 -Impact.ttf 107 ¥ 27.6250 46.1413 31 “ -0.1125 19.2175 14.9477 -Impact.ttf 107 ¥ 27.6250 46.1413 32 % -1.2140 37.9837 47.0198 -Impact.ttf 107 ¥ 27.6250 46.1413 33 £ -0.8429 28.2727 47.0198 -Impact.ttf 107 ¥ 27.6250 46.1413 34 . 36.9183 8.6802 9.3360 -Impact.ttf 107 ¥ 27.6250 46.1413 35 2 -0.8891 23.9837 47.0198 -Impact.ttf 107 ¥ 27.6250 46.1413 36 5 -0.3268 26.3407 47.0198 -Impact.ttf 107 ¥ 27.6250 46.1413 37 m 8.2752 40.4657 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 38 V -0.1371 31.0355 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 39 6 -0.9128 26.3407 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 40 w 8.2673 38.9680 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 41 T -0.1061 26.3407 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 42 M 0.1924 36.8052 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 43 G -0.9604 26.9465 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 44 b 0.0000 25.8600 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 45 9 -0.9221 26.3407 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 46 ; 15.4231 8.6802 36.1995 -Impact.ttf 107 ¥ 27.6250 46.1413 47 D 0.1728 26.9465 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 48 L 0.1787 18.8948 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 49 y 8.2413 27.3942 43.1785 -Impact.ttf 107 ¥ 27.6250 46.1413 50 ‘ -0.1774 8.4302 14.9477 -Impact.ttf 107 ¥ 27.6250 46.1413 51 \ -1.1702 23.9087 48.3733 -Impact.ttf 107 ¥ 27.6250 46.1413 52 R -0.0236 26.3407 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 53 < 8.2271 27.6670 29.1785 -Impact.ttf 107 ¥ 27.6250 46.1413 54 4 0.1710 28.6977 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 55 8 -0.5634 26.0407 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 56 0 -0.7785 26.3407 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 57 A 0.0061 31.5355 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 58 E 0.0175 20.4483 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 59 B -0.2683 26.9465 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 60 v 8.3210 26.8215 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 61 k -0.0871 25.7680 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 62 J -0.2651 16.2320 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 63 U 0.1756 26.8215 47.0198 -Impact.ttf 107 ¥ 27.6250 46.1413 64 j -0.0826 13.7692 51.4610 -Impact.ttf 107 ¥ 27.6250 46.1413 65 ( 0.0931 14.9285 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 66 7 0.1196 22.3245 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 67 § -0.8812 25.6430 53.5180 -Impact.ttf 107 ¥ 27.6250 46.1413 68 $ -3.8229 26.8215 54.0680 -Impact.ttf 107 ¥ 27.6250 46.1413 69 € -0.7505 28.6058 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 70 / -1.0739 22.7302 48.3733 -Impact.ttf 107 ¥ 27.6250 46.1413 71 C -1.1931 26.9465 47.8983 -Impact.ttf 107 ¥ 27.6250 46.1413 72 * 0.3162 15.4705 13.7692 -Impact.ttf 107 ¥ 27.6250 46.1413 73 ” -0.1969 19.2175 14.9477 -Impact.ttf 107 ¥ 27.6250 46.1413 74 ? -0.8775 26.8215 47.0198 -Impact.ttf 107 ¥ 27.6250 46.1413 75 { 0.1724 19.1675 54.8215 -Impact.ttf 107 ¥ 27.6250 46.1413 76 } -0.2984 19.1675 54.8215 -Impact.ttf 107 ¥ 27.6250 46.1413 77 , 37.1876 8.4302 14.9477 -Impact.ttf 107 ¥ 27.6250 46.1413 78 I 0.0640 11.6430 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 79 ° -0.8481 18.0163 18.0163 -Impact.ttf 107 ¥ 27.6250 46.1413 80 K 0.1228 30.3570 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 81 H -0.4732 27.2192 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 82 q 8.0502 25.8600 43.1785 -Impact.ttf 107 ¥ 27.6250 46.1413 83 & 8.1282 33.5925 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 84 ’ -0.2268 8.4302 14.9477 -Impact.ttf 107 ¥ 27.6250 46.1413 85 [ 0.1422 13.3942 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 86 - 23.1158 14.8785 7.9267 -Impact.ttf 107 ¥ 27.6250 46.1413 87 Y -0.0117 27.6250 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 88 Q -0.8572 26.8215 52.3395 -Impact.ttf 107 ¥ 27.6250 46.1413 89 " 0.1599 19.7175 14.0000 -Impact.ttf 107 ¥ 27.6250 46.1413 90 ! -0.4560 12.8215 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 91 x 8.2073 25.1760 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 92 ) -0.2841 14.9285 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 93 = 14.8915 27.6670 16.7320 -Impact.ttf 107 ¥ 27.6250 46.1413 94 + 9.8685 27.1773 27.1773 -Impact.ttf 107 ¥ 27.6250 46.1413 95 X -0.2011 29.6400 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 96 » 9.5007 19.6198 32.7140 -Impact.ttf 107 ¥ 27.6250 46.1413 97 ' -0.0213 8.6802 14.0000 -Impact.ttf 107 ¥ 27.6250 46.1413 98 ¢ 0.2044 25.8600 49.5017 -Impact.ttf 107 ¥ 27.6250 46.1413 99 Z -0.1672 22.6245 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 100 > 7.9216 27.6670 29.1785 -Impact.ttf 107 ¥ 27.6250 46.1413 101 ® 2.8378 43.1785 43.3035 -Impact.ttf 107 ¥ 27.6250 46.1413 102 © 3.8807 43.1785 42.0000 -Impact.ttf 107 ¥ 27.6250 46.1413 103 ] -0.0185 13.3942 46.1413 -Impact.ttf 107 ¥ 27.6250 46.1413 104 é -1.5045 25.5600 47.5698 -Impact.ttf 107 ¥ 27.6250 46.1413 105 z 8.3006 19.3198 37.8587 -Impact.ttf 107 ¥ 27.6250 46.1413 106 _ 50.3759 32.1413 2.8378 -Impact.ttf 107 ¥ 27.6250 46.1413 107 ¥ 0.1367 27.6250 46.1413 -Times_New_Roman.ttf 1 t 16.5632 35.7376 1 t 0.0339 16.5632 35.7376 -Times_New_Roman.ttf 1 t 16.5632 35.7376 2 h -6.1267 28.4494 40.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 3 a 7.4803 24.3008 28.3500 -Times_New_Roman.ttf 1 t 16.5632 35.7376 4 n 7.4321 28.4494 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 5 P -4.6419 30.0347 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 6 o 7.2894 25.1680 28.3500 -Times_New_Roman.ttf 1 t 16.5632 35.7376 7 e 7.1841 22.1278 28.3500 -Times_New_Roman.ttf 1 t 16.5632 35.7376 8 : 7.2946 5.2134 28.3500 -Times_New_Roman.ttf 1 t 16.5632 35.7376 9 r 7.6346 19.2134 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 10 l -6.2554 13.2587 40.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 11 i -6.5654 13.2587 40.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 12 1 -4.6511 15.9913 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 13 | -6.3124 2.3814 53.1680 -Times_New_Roman.ttf 1 t 16.5632 35.7376 14 N -4.4819 43.0089 40.1504 -Times_New_Roman.ttf 1 t 16.5632 35.7376 15 f -6.1428 23.6262 40.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 16 g 7.2992 26.7087 39.8257 -Times_New_Roman.ttf 1 t 16.5632 35.7376 17 d -6.2981 27.3411 42.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 18 W -4.0490 55.6923 40.1504 -Times_New_Roman.ttf 1 t 16.5632 35.7376 19 s 7.4338 17.7150 28.3500 -Times_New_Roman.ttf 1 t 16.5632 35.7376 20 c 7.4650 22.1278 28.3500 -Times_New_Roman.ttf 1 t 16.5632 35.7376 21 u 8.6733 28.6577 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 22 3 -4.4102 21.3876 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 23 ~ 15.1956 29.8907 7.5948 -Times_New_Roman.ttf 1 t 16.5632 35.7376 24 # -6.1868 26.1769 40.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 25 O -5.7804 37.9372 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 26 ` -4.4510 8.2536 9.4443 -Times_New_Roman.ttf 1 t 16.5632 35.7376 27 @ -6.1642 49.5948 54.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 28 F -4.4967 29.5407 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 29 S -5.9044 24.9597 41.5229 -Times_New_Roman.ttf 1 t 16.5632 35.7376 30 p 7.6901 26.9510 39.8257 -Times_New_Roman.ttf 1 t 16.5632 35.7376 31 “ -5.6035 21.7123 14.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 32 % -5.3817 46.5375 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 33 £ -4.6720 26.1504 40.2933 -Times_New_Roman.ttf 1 t 16.5632 35.7376 34 . 30.6167 5.2134 5.2134 -Times_New_Roman.ttf 1 t 16.5632 35.7376 35 2 -4.7159 25.4757 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 36 5 -4.4128 22.0453 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 37 m 7.5462 43.6401 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 38 V -4.3128 42.2071 40.1504 -Times_New_Roman.ttf 1 t 16.5632 35.7376 39 6 -4.5140 24.6350 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 40 w 8.4982 42.0012 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 41 T -4.4128 32.2857 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 42 M -4.4583 50.7900 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 43 G -5.5630 40.3587 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 44 b -6.1729 26.9510 42.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 45 9 -4.5145 24.2850 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 46 ; 7.2858 8.5783 37.1366 -Times_New_Roman.ttf 1 t 16.5632 35.7376 47 D -4.5096 39.4791 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 48 L -4.4013 33.1140 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 49 y 8.6706 29.1484 38.6350 -Times_New_Roman.ttf 1 t 16.5632 35.7376 50 ‘ -5.6836 8.5783 14.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 51 \ -6.2823 16.8974 42.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 52 R -4.3658 39.5192 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 53 < -0.0711 30.8320 29.1907 -Times_New_Roman.ttf 1 t 16.5632 35.7376 54 4 -4.5057 25.4757 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 55 8 -4.6414 22.7465 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 56 0 -4.6715 24.6350 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 57 A -5.4942 42.0000 40.1504 -Times_New_Roman.ttf 1 t 16.5632 35.7376 58 E -4.5020 34.1229 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 59 B -4.4184 34.7552 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 60 v 8.3971 29.7237 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 61 k -6.1624 28.4929 40.8093 -Times_New_Roman.ttf 1 t 16.5632 35.7376 62 J -4.4929 20.8981 40.1504 -Times_New_Roman.ttf 1 t 16.5632 35.7376 63 U -4.5013 40.9787 40.1504 -Times_New_Roman.ttf 1 t 16.5632 35.7376 64 j -6.2197 16.0906 53.4757 -Times_New_Roman.ttf 1 t 16.5632 35.7376 65 ( -6.1237 15.8496 52.7368 -Times_New_Roman.ttf 1 t 16.5632 35.7376 66 7 -4.3684 25.5011 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 67 § -4.8904 20.6124 50.9515 -Times_New_Roman.ttf 1 t 16.5632 35.7376 68 $ -7.2686 23.6262 45.6495 -Times_New_Roman.ttf 1 t 16.5632 35.7376 69 € -4.5446 29.1907 39.1026 -Times_New_Roman.ttf 1 t 16.5632 35.7376 70 / -6.3393 17.5721 42.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 71 C -5.7301 34.5469 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 72 * -6.3471 20.0794 24.4267 -Times_New_Roman.ttf 1 t 16.5632 35.7376 73 ” -5.5573 21.5305 14.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 74 ? -5.6535 19.9145 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 75 { -6.3034 17.0391 52.7368 -Times_New_Roman.ttf 1 t 16.5632 35.7376 76 } -5.6248 17.0391 52.7368 -Times_New_Roman.ttf 1 t 16.5632 35.7376 77 , 30.6856 8.5783 14.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 78 I -4.2942 16.7326 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 79 ° -5.6041 17.5721 17.5721 -Times_New_Roman.ttf 1 t 16.5632 35.7376 80 K -4.4160 41.1593 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 81 H -4.3368 40.8918 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 82 q 7.2894 26.9510 39.8257 -Times_New_Roman.ttf 1 t 16.5632 35.7376 83 & -5.7073 41.3411 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 84 ’ -5.4960 8.5783 14.0000 -Times_New_Roman.ttf 1 t 16.5632 35.7376 85 [ -5.0762 12.6664 51.2372 -Times_New_Roman.ttf 1 t 16.5632 35.7376 86 - 18.2483 15.1907 5.2134 -Times_New_Roman.ttf 1 t 16.5632 35.7376 87 Y -4.5666 41.7313 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 88 Q -5.6226 37.9372 51.1101 -Times_New_Roman.ttf 1 t 16.5632 35.7376 89 " -5.6874 14.9824 16.3814 -Times_New_Roman.ttf 1 t 16.5632 35.7376 90 ! -5.5016 5.2134 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 91 x 8.5829 28.4895 25.9686 -Times_New_Roman.ttf 1 t 16.5632 35.7376 92 ) -5.8059 15.8496 52.7368 -Times_New_Roman.ttf 1 t 16.5632 35.7376 93 = 8.9122 30.1743 12.0076 -Times_New_Roman.ttf 1 t 16.5632 35.7376 94 + -0.3306 30.3814 30.3814 -Times_New_Roman.ttf 1 t 16.5632 35.7376 95 X -4.4128 42.0000 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 96 » 7.3376 24.9427 27.1593 -Times_New_Roman.ttf 1 t 16.5632 35.7376 97 ' -5.4877 5.2134 16.3814 -Times_New_Roman.ttf 1 t 16.5632 35.7376 98 ¢ -2.9629 21.9459 47.5645 -Times_New_Roman.ttf 1 t 16.5632 35.7376 99 Z -4.3414 33.9535 38.9597 -Times_New_Roman.ttf 1 t 16.5632 35.7376 100 > -0.0155 30.8320 29.1907 -Times_New_Roman.ttf 1 t 16.5632 35.7376 101 ® -5.3349 40.3587 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 102 © -5.3293 40.3587 41.3411 -Times_New_Roman.ttf 1 t 16.5632 35.7376 103 ] -5.4411 12.6664 51.2372 -Times_New_Roman.ttf 1 t 16.5632 35.7376 104 é -5.2652 22.1278 41.0164 -Times_New_Roman.ttf 1 t 16.5632 35.7376 105 z 8.5881 23.5872 25.9686 -Times_New_Roman.ttf 1 t 16.5632 35.7376 106 _ 44.5669 30.0314 2.3814 -Times_New_Roman.ttf 1 t 16.5632 35.7376 107 ¥ -4.5128 31.4462 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 1 t 6.2578 16.5632 35.7376 -Times_New_Roman.ttf 2 h 28.4494 40.8093 2 h -0.0237 28.4494 40.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 3 a 13.6027 24.3008 28.3500 -Times_New_Roman.ttf 2 h 28.4494 40.8093 4 n 13.7153 28.4494 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 5 P 1.7375 30.0347 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 6 o 13.8849 25.1680 28.3500 -Times_New_Roman.ttf 2 h 28.4494 40.8093 7 e 13.5287 22.1278 28.3500 -Times_New_Roman.ttf 2 h 28.4494 40.8093 8 : 13.4276 5.2134 28.3500 -Times_New_Roman.ttf 2 h 28.4494 40.8093 9 r 13.6681 19.2134 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 10 l 0.4025 13.2587 40.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 11 i 0.0505 13.2587 40.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 12 1 2.1311 15.9913 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 13 | 0.2998 2.3814 53.1680 -Times_New_Roman.ttf 2 h 28.4494 40.8093 14 N 1.9238 43.0089 40.1504 -Times_New_Roman.ttf 2 h 28.4494 40.8093 15 f 0.0083 23.6262 40.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 16 g 13.6930 26.7087 39.8257 -Times_New_Roman.ttf 2 h 28.4494 40.8093 17 d -0.0940 27.3411 42.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 18 W 1.6448 55.6923 40.1504 -Times_New_Roman.ttf 2 h 28.4494 40.8093 19 s 13.6129 17.7150 28.3500 -Times_New_Roman.ttf 2 h 28.4494 40.8093 20 c 13.5713 22.1278 28.3500 -Times_New_Roman.ttf 2 h 28.4494 40.8093 21 u 14.7304 28.6577 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 22 3 1.7095 21.3876 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 23 ~ 21.2218 29.8907 7.5948 -Times_New_Roman.ttf 2 h 28.4494 40.8093 24 # 0.0385 26.1769 40.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 25 O 0.8360 37.9372 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 26 ` 1.5154 8.2536 9.4443 -Times_New_Roman.ttf 2 h 28.4494 40.8093 27 @ -0.0812 49.5948 54.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 28 F 1.8079 29.5407 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 29 S 0.5072 24.9597 41.5229 -Times_New_Roman.ttf 2 h 28.4494 40.8093 30 p 13.4310 26.9510 39.8257 -Times_New_Roman.ttf 2 h 28.4494 40.8093 31 “ 0.8325 21.7123 14.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 32 % 0.4320 46.5375 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 33 £ 1.8406 26.1504 40.2933 -Times_New_Roman.ttf 2 h 28.4494 40.8093 34 . 36.7347 5.2134 5.2134 -Times_New_Roman.ttf 2 h 28.4494 40.8093 35 2 1.9237 25.4757 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 36 5 1.8222 22.0453 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 37 m 13.6894 43.6401 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 38 V 1.4850 42.2071 40.1504 -Times_New_Roman.ttf 2 h 28.4494 40.8093 39 6 1.7341 24.6350 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 40 w 15.1817 42.0012 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 41 T 2.2278 32.2857 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 42 M 1.8413 50.7900 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 43 G 0.3905 40.3587 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 44 b -0.1113 26.9510 42.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 45 9 1.5180 24.2850 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 46 ; 13.7430 8.5783 37.1366 -Times_New_Roman.ttf 2 h 28.4494 40.8093 47 D 1.7496 39.4791 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 48 L 1.7324 33.1140 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 49 y 14.8917 29.1484 38.6350 -Times_New_Roman.ttf 2 h 28.4494 40.8093 50 ‘ 0.9549 8.5783 14.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 51 \ -0.0746 16.8974 42.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 52 R 2.1104 39.5192 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 53 < 6.1084 30.8320 29.1907 -Times_New_Roman.ttf 2 h 28.4494 40.8093 54 4 1.9602 25.4757 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 55 8 1.8323 22.7465 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 56 0 1.9655 24.6350 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 57 A 0.4750 42.0000 40.1504 -Times_New_Roman.ttf 2 h 28.4494 40.8093 58 E 1.6883 34.1229 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 59 B 1.9252 34.7552 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 60 v 15.0131 29.7237 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 61 k -0.0083 28.4929 40.8093 -Times_New_Roman.ttf 2 h 28.4494 40.8093 62 J 2.0609 20.8981 40.1504 -Times_New_Roman.ttf 2 h 28.4494 40.8093 63 U 1.9367 40.9787 40.1504 -Times_New_Roman.ttf 2 h 28.4494 40.8093 64 j -0.1169 16.0906 53.4757 -Times_New_Roman.ttf 2 h 28.4494 40.8093 65 ( 0.3143 15.8496 52.7368 -Times_New_Roman.ttf 2 h 28.4494 40.8093 66 7 1.6790 25.5011 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 67 § 1.2964 20.6124 50.9515 -Times_New_Roman.ttf 2 h 28.4494 40.8093 68 $ -1.2771 23.6262 45.6495 -Times_New_Roman.ttf 2 h 28.4494 40.8093 69 € 1.5468 29.1907 39.1026 -Times_New_Roman.ttf 2 h 28.4494 40.8093 70 / -0.0357 17.5721 42.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 71 C 0.6250 34.5469 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 72 * 0.0045 20.0794 24.4267 -Times_New_Roman.ttf 2 h 28.4494 40.8093 73 ” 0.1933 21.5305 14.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 74 ? 0.7261 19.9145 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 75 { 0.4849 17.0391 52.7368 -Times_New_Roman.ttf 2 h 28.4494 40.8093 76 } 0.3605 17.0391 52.7368 -Times_New_Roman.ttf 2 h 28.4494 40.8093 77 , 36.7384 8.5783 14.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 78 I 1.8139 16.7326 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 79 ° 0.5008 17.5721 17.5721 -Times_New_Roman.ttf 2 h 28.4494 40.8093 80 K 2.0833 41.1593 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 81 H 1.9835 40.8918 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 82 q 13.3656 26.9510 39.8257 -Times_New_Roman.ttf 2 h 28.4494 40.8093 83 & 0.9503 41.3411 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 84 ’ 0.7049 8.5783 14.0000 -Times_New_Roman.ttf 2 h 28.4494 40.8093 85 [ 1.3208 12.6664 51.2372 -Times_New_Roman.ttf 2 h 28.4494 40.8093 86 - 24.3795 15.1907 5.2134 -Times_New_Roman.ttf 2 h 28.4494 40.8093 87 Y 1.9398 41.7313 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 88 Q 0.7428 37.9372 51.1101 -Times_New_Roman.ttf 2 h 28.4494 40.8093 89 " 0.7727 14.9824 16.3814 -Times_New_Roman.ttf 2 h 28.4494 40.8093 90 ! 0.6986 5.2134 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 91 x 15.0259 28.4895 25.9686 -Times_New_Roman.ttf 2 h 28.4494 40.8093 92 ) 0.3188 15.8496 52.7368 -Times_New_Roman.ttf 2 h 28.4494 40.8093 93 = 14.8882 30.1743 12.0076 -Times_New_Roman.ttf 2 h 28.4494 40.8093 94 + 6.1442 30.3814 30.3814 -Times_New_Roman.ttf 2 h 28.4494 40.8093 95 X 2.0993 42.0000 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 96 » 13.7176 24.9427 27.1593 -Times_New_Roman.ttf 2 h 28.4494 40.8093 97 ' 0.5973 5.2134 16.3814 -Times_New_Roman.ttf 2 h 28.4494 40.8093 98 ¢ 2.9866 21.9459 47.5645 -Times_New_Roman.ttf 2 h 28.4494 40.8093 99 Z 1.9496 33.9535 38.9597 -Times_New_Roman.ttf 2 h 28.4494 40.8093 100 > 6.2434 30.8320 29.1907 -Times_New_Roman.ttf 2 h 28.4494 40.8093 101 ® 0.7886 40.3587 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 102 © 0.7691 40.3587 41.3411 -Times_New_Roman.ttf 2 h 28.4494 40.8093 103 ] 0.9826 12.6664 51.2372 -Times_New_Roman.ttf 2 h 28.4494 40.8093 104 é 0.8639 22.1278 41.0164 -Times_New_Roman.ttf 2 h 28.4494 40.8093 105 z 14.8068 23.5872 25.9686 -Times_New_Roman.ttf 2 h 28.4494 40.8093 106 _ 51.1591 30.0314 2.3814 -Times_New_Roman.ttf 2 h 28.4494 40.8093 107 ¥ 1.6865 31.4462 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 1 t -7.3032 16.5632 35.7376 -Times_New_Roman.ttf 3 a 24.3008 28.3500 2 h -13.4308 28.4494 40.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 3 a -0.2799 24.3008 28.3500 -Times_New_Roman.ttf 3 a 24.3008 28.3500 4 n -0.0045 28.4494 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 5 P -11.5577 30.0347 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 6 o -0.2414 25.1680 28.3500 -Times_New_Roman.ttf 3 a 24.3008 28.3500 7 e -0.0663 22.1278 28.3500 -Times_New_Roman.ttf 3 a 24.3008 28.3500 8 : 0.0018 5.2134 28.3500 -Times_New_Roman.ttf 3 a 24.3008 28.3500 9 r 0.0615 19.2134 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 10 l -13.5661 13.2587 40.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 11 i -13.7839 13.2587 40.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 12 1 -12.0234 15.9913 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 13 | -13.2965 2.3814 53.1680 -Times_New_Roman.ttf 3 a 24.3008 28.3500 14 N -11.4989 43.0089 40.1504 -Times_New_Roman.ttf 3 a 24.3008 28.3500 15 f -13.6342 23.6262 40.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 16 g 0.3452 26.7087 39.8257 -Times_New_Roman.ttf 3 a 24.3008 28.3500 17 d -13.6527 27.3411 42.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 18 W -11.4240 55.6923 40.1504 -Times_New_Roman.ttf 3 a 24.3008 28.3500 19 s -0.1826 17.7150 28.3500 -Times_New_Roman.ttf 3 a 24.3008 28.3500 20 c 0.0852 22.1278 28.3500 -Times_New_Roman.ttf 3 a 24.3008 28.3500 21 u 1.2834 28.6577 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 22 3 -12.1500 21.3876 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 23 ~ 7.6617 29.8907 7.5948 -Times_New_Roman.ttf 3 a 24.3008 28.3500 24 # -13.6583 26.1769 40.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 25 O -12.8604 37.9372 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 26 ` -12.1515 8.2536 9.4443 -Times_New_Roman.ttf 3 a 24.3008 28.3500 27 @ -13.6444 49.5948 54.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 28 F -12.0547 29.5407 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 29 S -13.3315 24.9597 41.5229 -Times_New_Roman.ttf 3 a 24.3008 28.3500 30 p -0.3344 26.9510 39.8257 -Times_New_Roman.ttf 3 a 24.3008 28.3500 31 “ -13.0124 21.7123 14.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 32 % -13.0268 46.5375 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 33 £ -11.6978 26.1504 40.2933 -Times_New_Roman.ttf 3 a 24.3008 28.3500 34 . 23.0569 5.2134 5.2134 -Times_New_Roman.ttf 3 a 24.3008 28.3500 35 2 -11.9419 25.4757 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 36 5 -11.6735 22.0453 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 37 m 0.0885 43.6401 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 38 V -11.7192 42.2071 40.1504 -Times_New_Roman.ttf 3 a 24.3008 28.3500 39 6 -11.8405 24.6350 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 40 w 1.2807 42.0012 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 41 T -11.6504 32.2857 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 42 M -11.9117 50.7900 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 43 G -12.9356 40.3587 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 44 b -13.8043 26.9510 42.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 45 9 -12.0345 24.2850 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 46 ; -0.2525 8.5783 37.1366 -Times_New_Roman.ttf 3 a 24.3008 28.3500 47 D -11.8532 39.4791 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 48 L -11.4377 33.1140 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 49 y 1.0832 29.1484 38.6350 -Times_New_Roman.ttf 3 a 24.3008 28.3500 50 ‘ -12.9495 8.5783 14.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 51 \ -14.0995 16.8974 42.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 52 R -11.5926 39.5192 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 53 < -7.5398 30.8320 29.1907 -Times_New_Roman.ttf 3 a 24.3008 28.3500 54 4 -11.7747 25.4757 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 55 8 -11.8863 22.7465 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 56 0 -11.6691 24.6350 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 57 A -12.9855 42.0000 40.1504 -Times_New_Roman.ttf 3 a 24.3008 28.3500 58 E -11.8945 34.1229 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 59 B -11.7762 34.7552 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 60 v 1.3208 29.7237 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 61 k -13.8061 28.4929 40.8093 -Times_New_Roman.ttf 3 a 24.3008 28.3500 62 J -11.7564 20.8981 40.1504 -Times_New_Roman.ttf 3 a 24.3008 28.3500 63 U -11.7703 40.9787 40.1504 -Times_New_Roman.ttf 3 a 24.3008 28.3500 64 j -13.6573 16.0906 53.4757 -Times_New_Roman.ttf 3 a 24.3008 28.3500 65 ( -13.2027 15.8496 52.7368 -Times_New_Roman.ttf 3 a 24.3008 28.3500 66 7 -11.9663 25.5011 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 67 § -12.3605 20.6124 50.9515 -Times_New_Roman.ttf 3 a 24.3008 28.3500 68 $ -15.0996 23.6262 45.6495 -Times_New_Roman.ttf 3 a 24.3008 28.3500 69 € -11.8465 29.1907 39.1026 -Times_New_Roman.ttf 3 a 24.3008 28.3500 70 / -13.4764 17.5721 42.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 71 C -13.1449 34.5469 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 72 * -13.5595 20.0794 24.4267 -Times_New_Roman.ttf 3 a 24.3008 28.3500 73 ” -12.8572 21.5305 14.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 74 ? -12.9939 19.9145 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 75 { -13.3385 17.0391 52.7368 -Times_New_Roman.ttf 3 a 24.3008 28.3500 76 } -13.3968 17.0391 52.7368 -Times_New_Roman.ttf 3 a 24.3008 28.3500 77 , 22.8670 8.5783 14.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 78 I -11.8185 16.7326 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 79 ° -12.9110 17.5721 17.5721 -Times_New_Roman.ttf 3 a 24.3008 28.3500 80 K -11.8351 41.1593 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 81 H -11.8728 40.8918 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 82 q -0.1020 26.9510 39.8257 -Times_New_Roman.ttf 3 a 24.3008 28.3500 83 & -12.9884 41.3411 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 84 ’ -13.1212 8.5783 14.0000 -Times_New_Roman.ttf 3 a 24.3008 28.3500 85 [ -12.1945 12.6664 51.2372 -Times_New_Roman.ttf 3 a 24.3008 28.3500 86 - 11.2161 15.1907 5.2134 -Times_New_Roman.ttf 3 a 24.3008 28.3500 87 Y -11.8675 41.7313 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 88 Q -12.9384 37.9372 51.1101 -Times_New_Roman.ttf 3 a 24.3008 28.3500 89 " -13.0602 14.9824 16.3814 -Times_New_Roman.ttf 3 a 24.3008 28.3500 90 ! -13.0824 5.2134 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 91 x 1.1972 28.4895 25.9686 -Times_New_Roman.ttf 3 a 24.3008 28.3500 92 ) -13.4000 15.8496 52.7368 -Times_New_Roman.ttf 3 a 24.3008 28.3500 93 = 1.3681 30.1743 12.0076 -Times_New_Roman.ttf 3 a 24.3008 28.3500 94 + -7.4142 30.3814 30.3814 -Times_New_Roman.ttf 3 a 24.3008 28.3500 95 X -11.6989 42.0000 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 96 » -0.3081 24.9427 27.1593 -Times_New_Roman.ttf 3 a 24.3008 28.3500 97 ' -12.9919 5.2134 16.3814 -Times_New_Roman.ttf 3 a 24.3008 28.3500 98 ¢ -10.7631 21.9459 47.5645 -Times_New_Roman.ttf 3 a 24.3008 28.3500 99 Z -11.8371 33.9535 38.9597 -Times_New_Roman.ttf 3 a 24.3008 28.3500 100 > -7.5642 30.8320 29.1907 -Times_New_Roman.ttf 3 a 24.3008 28.3500 101 ® -13.0889 40.3587 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 102 © -12.9828 40.3587 41.3411 -Times_New_Roman.ttf 3 a 24.3008 28.3500 103 ] -12.3897 12.6664 51.2372 -Times_New_Roman.ttf 3 a 24.3008 28.3500 104 é -12.4167 22.1278 41.0164 -Times_New_Roman.ttf 3 a 24.3008 28.3500 105 z 1.2917 23.5872 25.9686 -Times_New_Roman.ttf 3 a 24.3008 28.3500 106 _ 37.4106 30.0314 2.3814 -Times_New_Roman.ttf 3 a 24.3008 28.3500 107 ¥ -11.5675 31.4462 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 1 t -7.1462 16.5632 35.7376 -Times_New_Roman.ttf 4 n 28.4494 27.1593 2 h -13.8553 28.4494 40.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 3 a 0.0593 24.3008 28.3500 -Times_New_Roman.ttf 4 n 28.4494 27.1593 4 n -0.2158 28.4494 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 5 P -11.6364 30.0347 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 6 o -0.2900 25.1680 28.3500 -Times_New_Roman.ttf 4 n 28.4494 27.1593 7 e -0.2578 22.1278 28.3500 -Times_New_Roman.ttf 4 n 28.4494 27.1593 8 : -0.1867 5.2134 28.3500 -Times_New_Roman.ttf 4 n 28.4494 27.1593 9 r 0.0000 19.2134 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 10 l -13.9729 13.2587 40.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 11 i -13.7028 13.2587 40.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 12 1 -12.0003 15.9913 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 13 | -13.5824 2.3814 53.1680 -Times_New_Roman.ttf 4 n 28.4494 27.1593 14 N -12.0932 43.0089 40.1504 -Times_New_Roman.ttf 4 n 28.4494 27.1593 15 f -13.7728 23.6262 40.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 16 g -0.0575 26.7087 39.8257 -Times_New_Roman.ttf 4 n 28.4494 27.1593 17 d -13.6301 27.3411 42.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 18 W -11.9195 55.6923 40.1504 -Times_New_Roman.ttf 4 n 28.4494 27.1593 19 s 0.1509 17.7150 28.3500 -Times_New_Roman.ttf 4 n 28.4494 27.1593 20 c -0.1585 22.1278 28.3500 -Times_New_Roman.ttf 4 n 28.4494 27.1593 21 u 1.0522 28.6577 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 22 3 -12.1865 21.3876 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 23 ~ 7.7376 29.8907 7.5948 -Times_New_Roman.ttf 4 n 28.4494 27.1593 24 # -13.7774 26.1769 40.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 25 O -12.7826 37.9372 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 26 ` -12.0545 8.2536 9.4443 -Times_New_Roman.ttf 4 n 28.4494 27.1593 27 @ -13.6118 49.5948 54.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 28 F -11.9361 29.5407 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 29 S -13.2286 24.9597 41.5229 -Times_New_Roman.ttf 4 n 28.4494 27.1593 30 p -0.1312 26.9510 39.8257 -Times_New_Roman.ttf 4 n 28.4494 27.1593 31 “ -13.2595 21.7123 14.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 32 % -12.9610 46.5375 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 33 £ -11.8892 26.1504 40.2933 -Times_New_Roman.ttf 4 n 28.4494 27.1593 34 . 23.5633 5.2134 5.2134 -Times_New_Roman.ttf 4 n 28.4494 27.1593 35 2 -11.7792 25.4757 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 36 5 -11.9246 22.0453 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 37 m 0.1575 43.6401 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 38 V -11.8022 42.2071 40.1504 -Times_New_Roman.ttf 4 n 28.4494 27.1593 39 6 -11.8659 24.6350 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 40 w 1.2824 42.0012 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 41 T -11.7314 32.2857 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 42 M -11.7893 50.7900 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 43 G -12.8791 40.3587 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 44 b -13.8651 26.9510 42.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 45 9 -11.9209 24.2850 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 46 ; -0.2071 8.5783 37.1366 -Times_New_Roman.ttf 4 n 28.4494 27.1593 47 D -11.8185 39.4791 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 48 L -11.7901 33.1140 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 49 y 1.3701 29.1484 38.6350 -Times_New_Roman.ttf 4 n 28.4494 27.1593 50 ‘ -13.0268 8.5783 14.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 51 \ -13.5226 16.8974 42.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 52 R -12.0599 39.5192 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 53 < -7.4294 30.8320 29.1907 -Times_New_Roman.ttf 4 n 28.4494 27.1593 54 4 -11.6365 25.4757 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 55 8 -12.2996 22.7465 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 56 0 -11.8548 24.6350 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 57 A -13.1590 42.0000 40.1504 -Times_New_Roman.ttf 4 n 28.4494 27.1593 58 E -11.7157 34.1229 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 59 B -11.8351 34.7552 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 60 v 1.2208 29.7237 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 61 k -13.6392 28.4929 40.8093 -Times_New_Roman.ttf 4 n 28.4494 27.1593 62 J -12.0190 20.8981 40.1504 -Times_New_Roman.ttf 4 n 28.4494 27.1593 63 U -11.6780 40.9787 40.1504 -Times_New_Roman.ttf 4 n 28.4494 27.1593 64 j -13.7960 16.0906 53.4757 -Times_New_Roman.ttf 4 n 28.4494 27.1593 65 ( -13.4301 15.8496 52.7368 -Times_New_Roman.ttf 4 n 28.4494 27.1593 66 7 -11.6630 25.5011 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 67 § -12.4105 20.6124 50.9515 -Times_New_Roman.ttf 4 n 28.4494 27.1593 68 $ -14.7752 23.6262 45.6495 -Times_New_Roman.ttf 4 n 28.4494 27.1593 69 € -11.9498 29.1907 39.1026 -Times_New_Roman.ttf 4 n 28.4494 27.1593 70 / -13.8658 17.5721 42.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 71 C -13.2250 34.5469 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 72 * -13.6111 20.0794 24.4267 -Times_New_Roman.ttf 4 n 28.4494 27.1593 73 ” -12.8534 21.5305 14.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 74 ? -12.8838 19.9145 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 75 { -13.0776 17.0391 52.7368 -Times_New_Roman.ttf 4 n 28.4494 27.1593 76 } -13.3226 17.0391 52.7368 -Times_New_Roman.ttf 4 n 28.4494 27.1593 77 , 23.4633 8.5783 14.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 78 I -11.6290 16.7326 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 79 ° -12.8364 17.5721 17.5721 -Times_New_Roman.ttf 4 n 28.4494 27.1593 80 K -11.7050 41.1593 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 81 H -11.8087 40.8918 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 82 q 0.2183 26.9510 39.8257 -Times_New_Roman.ttf 4 n 28.4494 27.1593 83 & -12.7289 41.3411 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 84 ’ -12.9893 8.5783 14.0000 -Times_New_Roman.ttf 4 n 28.4494 27.1593 85 [ -12.3281 12.6664 51.2372 -Times_New_Roman.ttf 4 n 28.4494 27.1593 86 - 11.3172 15.1907 5.2134 -Times_New_Roman.ttf 4 n 28.4494 27.1593 87 Y -11.6735 41.7313 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 88 Q -13.0355 37.9372 51.1101 -Times_New_Roman.ttf 4 n 28.4494 27.1593 89 " -12.8119 14.9824 16.3814 -Times_New_Roman.ttf 4 n 28.4494 27.1593 90 ! -13.1009 5.2134 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 91 x 1.1907 28.4895 25.9686 -Times_New_Roman.ttf 4 n 28.4494 27.1593 92 ) -13.5186 15.8496 52.7368 -Times_New_Roman.ttf 4 n 28.4494 27.1593 93 = 1.2810 30.1743 12.0076 -Times_New_Roman.ttf 4 n 28.4494 27.1593 94 + -7.5485 30.3814 30.3814 -Times_New_Roman.ttf 4 n 28.4494 27.1593 95 X -11.6419 42.0000 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 96 » 0.3414 24.9427 27.1593 -Times_New_Roman.ttf 4 n 28.4494 27.1593 97 ' -13.2125 5.2134 16.3814 -Times_New_Roman.ttf 4 n 28.4494 27.1593 98 ¢ -10.1865 21.9459 47.5645 -Times_New_Roman.ttf 4 n 28.4494 27.1593 99 Z -11.7685 33.9535 38.9597 -Times_New_Roman.ttf 4 n 28.4494 27.1593 100 > -7.2106 30.8320 29.1907 -Times_New_Roman.ttf 4 n 28.4494 27.1593 101 ® -13.1032 40.3587 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 102 © -13.1871 40.3587 41.3411 -Times_New_Roman.ttf 4 n 28.4494 27.1593 103 ] -12.3749 12.6664 51.2372 -Times_New_Roman.ttf 4 n 28.4494 27.1593 104 é -12.8049 22.1278 41.0164 -Times_New_Roman.ttf 4 n 28.4494 27.1593 105 z 1.1463 23.5872 25.9686 -Times_New_Roman.ttf 4 n 28.4494 27.1593 106 _ 37.4574 30.0314 2.3814 -Times_New_Roman.ttf 4 n 28.4494 27.1593 107 ¥ -11.7532 31.4462 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 1 t 4.2959 16.5632 35.7376 -Times_New_Roman.ttf 5 P 30.0347 38.9597 2 h -1.7337 28.4494 40.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 3 a 11.6173 24.3008 28.3500 -Times_New_Roman.ttf 5 P 30.0347 38.9597 4 n 12.0529 28.4494 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 5 P 0.0696 30.0347 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 6 o 11.8157 25.1680 28.3500 -Times_New_Roman.ttf 5 P 30.0347 38.9597 7 e 11.7326 22.1278 28.3500 -Times_New_Roman.ttf 5 P 30.0347 38.9597 8 : 11.9120 5.2134 28.3500 -Times_New_Roman.ttf 5 P 30.0347 38.9597 9 r 11.6391 19.2134 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 10 l -1.6506 13.2587 40.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 11 i -1.8177 13.2587 40.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 12 1 -0.1034 15.9913 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 13 | -1.8714 2.3814 53.1680 -Times_New_Roman.ttf 5 P 30.0347 38.9597 14 N -0.0105 43.0089 40.1504 -Times_New_Roman.ttf 5 P 30.0347 38.9597 15 f -1.9071 23.6262 40.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 16 g 12.0233 26.7087 39.8257 -Times_New_Roman.ttf 5 P 30.0347 38.9597 17 d -1.9720 27.3411 42.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 18 W -0.0027 55.6923 40.1504 -Times_New_Roman.ttf 5 P 30.0347 38.9597 19 s 12.0391 17.7150 28.3500 -Times_New_Roman.ttf 5 P 30.0347 38.9597 20 c 11.7972 22.1278 28.3500 -Times_New_Roman.ttf 5 P 30.0347 38.9597 21 u 13.1986 28.6577 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 22 3 -0.4259 21.3876 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 23 ~ 19.4004 29.8907 7.5948 -Times_New_Roman.ttf 5 P 30.0347 38.9597 24 # -1.7355 26.1769 40.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 25 O -1.2621 37.9372 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 26 ` -0.3388 8.2536 9.4443 -Times_New_Roman.ttf 5 P 30.0347 38.9597 27 @ -1.8808 49.5948 54.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 28 F 0.2575 29.5407 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 29 S -1.1497 24.9597 41.5229 -Times_New_Roman.ttf 5 P 30.0347 38.9597 30 p 11.6818 26.9510 39.8257 -Times_New_Roman.ttf 5 P 30.0347 38.9597 31 “ -1.2593 21.7123 14.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 32 % -0.9781 46.5375 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 33 £ -0.4152 26.1504 40.2933 -Times_New_Roman.ttf 5 P 30.0347 38.9597 34 . 35.0280 5.2134 5.2134 -Times_New_Roman.ttf 5 P 30.0347 38.9597 35 2 -0.1286 25.4757 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 36 5 -0.1367 22.0453 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 37 m 11.8924 43.6401 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 38 V 0.0339 42.2071 40.1504 -Times_New_Roman.ttf 5 P 30.0347 38.9597 39 6 -0.2966 24.6350 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 40 w 12.8281 42.0012 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 41 T -0.0635 32.2857 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 42 M 0.1465 50.7900 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 43 G -1.1495 40.3587 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 44 b -1.8146 26.9510 42.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 45 9 -0.2553 24.2850 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 46 ; 11.6552 8.5783 37.1366 -Times_New_Roman.ttf 5 P 30.0347 38.9597 47 D -0.1115 39.4791 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 48 L -0.0010 33.1140 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 49 y 13.2112 29.1484 38.6350 -Times_New_Roman.ttf 5 P 30.0347 38.9597 50 ‘ -1.3593 8.5783 14.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 51 \ -1.8478 16.8974 42.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 52 R -0.0746 39.5192 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 53 < 4.4215 30.8320 29.1907 -Times_New_Roman.ttf 5 P 30.0347 38.9597 54 4 -0.0418 25.4757 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 55 8 0.0202 22.7465 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 56 0 -0.1813 24.6350 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 57 A -1.2746 42.0000 40.1504 -Times_New_Roman.ttf 5 P 30.0347 38.9597 58 E 0.1266 34.1229 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 59 B -0.2158 34.7552 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 60 v 13.1780 29.7237 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 61 k -2.0860 28.4929 40.8093 -Times_New_Roman.ttf 5 P 30.0347 38.9597 62 J 0.0306 20.8981 40.1504 -Times_New_Roman.ttf 5 P 30.0347 38.9597 63 U -0.1955 40.9787 40.1504 -Times_New_Roman.ttf 5 P 30.0347 38.9597 64 j -1.8240 16.0906 53.4757 -Times_New_Roman.ttf 5 P 30.0347 38.9597 65 ( -1.5609 15.8496 52.7368 -Times_New_Roman.ttf 5 P 30.0347 38.9597 66 7 0.0752 25.5011 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 67 § -0.6829 20.6124 50.9515 -Times_New_Roman.ttf 5 P 30.0347 38.9597 68 $ -2.8646 23.6262 45.6495 -Times_New_Roman.ttf 5 P 30.0347 38.9597 69 € -0.2356 29.1907 39.1026 -Times_New_Roman.ttf 5 P 30.0347 38.9597 70 / -1.8936 17.5721 42.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 71 C -1.1352 34.5469 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 72 * -2.1993 20.0794 24.4267 -Times_New_Roman.ttf 5 P 30.0347 38.9597 73 ” -1.2254 21.5305 14.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 74 ? -1.1360 19.9145 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 75 { -1.1114 17.0391 52.7368 -Times_New_Roman.ttf 5 P 30.0347 38.9597 76 } -1.7059 17.0391 52.7368 -Times_New_Roman.ttf 5 P 30.0347 38.9597 77 , 34.9255 8.5783 14.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 78 I 0.2516 16.7326 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 79 ° -0.9536 17.5721 17.5721 -Times_New_Roman.ttf 5 P 30.0347 38.9597 80 K 0.0143 41.1593 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 81 H 0.0258 40.8918 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 82 q 11.7050 26.9510 39.8257 -Times_New_Roman.ttf 5 P 30.0347 38.9597 83 & -1.2027 41.3411 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 84 ’ -1.3555 8.5783 14.0000 -Times_New_Roman.ttf 5 P 30.0347 38.9597 85 [ -0.8428 12.6664 51.2372 -Times_New_Roman.ttf 5 P 30.0347 38.9597 86 - 22.8289 15.1907 5.2134 -Times_New_Roman.ttf 5 P 30.0347 38.9597 87 Y 0.2176 41.7313 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 88 Q -0.9952 37.9372 51.1101 -Times_New_Roman.ttf 5 P 30.0347 38.9597 89 " -1.2246 14.9824 16.3814 -Times_New_Roman.ttf 5 P 30.0347 38.9597 90 ! -1.0683 5.2134 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 91 x 12.7969 28.4895 25.9686 -Times_New_Roman.ttf 5 P 30.0347 38.9597 92 ) -1.5770 15.8496 52.7368 -Times_New_Roman.ttf 5 P 30.0347 38.9597 93 = 13.5965 30.1743 12.0076 -Times_New_Roman.ttf 5 P 30.0347 38.9597 94 + 4.2787 30.3814 30.3814 -Times_New_Roman.ttf 5 P 30.0347 38.9597 95 X -0.1181 42.0000 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 96 » 11.7949 24.9427 27.1593 -Times_New_Roman.ttf 5 P 30.0347 38.9597 97 ' -1.2101 5.2134 16.3814 -Times_New_Roman.ttf 5 P 30.0347 38.9597 98 ¢ 1.1931 21.9459 47.5645 -Times_New_Roman.ttf 5 P 30.0347 38.9597 99 Z -0.0656 33.9535 38.9597 -Times_New_Roman.ttf 5 P 30.0347 38.9597 100 > 4.2717 30.8320 29.1907 -Times_New_Roman.ttf 5 P 30.0347 38.9597 101 ® -1.1907 40.3587 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 102 © -0.9648 40.3587 41.3411 -Times_New_Roman.ttf 5 P 30.0347 38.9597 103 ] -0.7627 12.6664 51.2372 -Times_New_Roman.ttf 5 P 30.0347 38.9597 104 é -1.0130 22.1278 41.0164 -Times_New_Roman.ttf 5 P 30.0347 38.9597 105 z 13.1740 23.5872 25.9686 -Times_New_Roman.ttf 5 P 30.0347 38.9597 106 _ 49.2520 30.0314 2.3814 -Times_New_Roman.ttf 5 P 30.0347 38.9597 107 ¥ 0.0347 31.4462 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 1 t -7.5215 16.5632 35.7376 -Times_New_Roman.ttf 6 o 25.1680 28.3500 2 h -13.9178 28.4494 40.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 3 a 0.0226 24.3008 28.3500 -Times_New_Roman.ttf 6 o 25.1680 28.3500 4 n -0.1575 28.4494 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 5 P -11.8959 30.0347 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 6 o 0.0906 25.1680 28.3500 -Times_New_Roman.ttf 6 o 25.1680 28.3500 7 e 0.1422 22.1278 28.3500 -Times_New_Roman.ttf 6 o 25.1680 28.3500 8 : -0.2640 5.2134 28.3500 -Times_New_Roman.ttf 6 o 25.1680 28.3500 9 r -0.1462 19.2134 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 10 l -14.0264 13.2587 40.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 11 i -13.5272 13.2587 40.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 12 1 -11.7971 15.9913 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 13 | -13.5699 2.3814 53.1680 -Times_New_Roman.ttf 6 o 25.1680 28.3500 14 N -11.8278 43.0089 40.1504 -Times_New_Roman.ttf 6 o 25.1680 28.3500 15 f -13.5962 23.6262 40.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 16 g -0.1626 26.7087 39.8257 -Times_New_Roman.ttf 6 o 25.1680 28.3500 17 d -13.8182 27.3411 42.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 18 W -11.6605 55.6923 40.1504 -Times_New_Roman.ttf 6 o 25.1680 28.3500 19 s -0.0907 17.7150 28.3500 -Times_New_Roman.ttf 6 o 25.1680 28.3500 20 c -0.0385 22.1278 28.3500 -Times_New_Roman.ttf 6 o 25.1680 28.3500 21 u 1.1018 28.6577 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 22 3 -11.8664 21.3876 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 23 ~ 7.6633 29.8907 7.5948 -Times_New_Roman.ttf 6 o 25.1680 28.3500 24 # -13.5462 26.1769 40.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 25 O -13.1589 37.9372 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 26 ` -12.0846 8.2536 9.4443 -Times_New_Roman.ttf 6 o 25.1680 28.3500 27 @ -13.6204 49.5948 54.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 28 F -11.8235 29.5407 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 29 S -13.1729 24.9597 41.5229 -Times_New_Roman.ttf 6 o 25.1680 28.3500 30 p 0.4596 26.9510 39.8257 -Times_New_Roman.ttf 6 o 25.1680 28.3500 31 “ -13.0098 21.7123 14.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 32 % -12.8350 46.5375 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 33 £ -11.7978 26.1504 40.2933 -Times_New_Roman.ttf 6 o 25.1680 28.3500 34 . 23.1297 5.2134 5.2134 -Times_New_Roman.ttf 6 o 25.1680 28.3500 35 2 -11.9294 25.4757 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 36 5 -11.8718 22.0453 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 37 m 0.0385 43.6401 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 38 V -11.9273 42.2071 40.1504 -Times_New_Roman.ttf 6 o 25.1680 28.3500 39 6 -11.7250 24.6350 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 40 w 1.2292 42.0012 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 41 T -11.7605 32.2857 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 42 M -11.8042 50.7900 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 43 G -13.0258 40.3587 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 44 b -13.5486 26.9510 42.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 45 9 -11.7562 24.2850 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 46 ; 0.1581 8.5783 37.1366 -Times_New_Roman.ttf 6 o 25.1680 28.3500 47 D -11.2635 39.4791 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 48 L -11.8015 33.1140 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 49 y 1.2905 29.1484 38.6350 -Times_New_Roman.ttf 6 o 25.1680 28.3500 50 ‘ -13.1909 8.5783 14.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 51 \ -13.5588 16.8974 42.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 52 R -11.7243 39.5192 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 53 < -7.7330 30.8320 29.1907 -Times_New_Roman.ttf 6 o 25.1680 28.3500 54 4 -12.0865 25.4757 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 55 8 -11.9867 22.7465 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 56 0 -11.7051 24.6350 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 57 A -12.4629 42.0000 40.1504 -Times_New_Roman.ttf 6 o 25.1680 28.3500 58 E -11.8805 34.1229 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 59 B -11.8396 34.7552 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 60 v 1.1736 29.7237 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 61 k -13.5078 28.4929 40.8093 -Times_New_Roman.ttf 6 o 25.1680 28.3500 62 J -11.6901 20.8981 40.1504 -Times_New_Roman.ttf 6 o 25.1680 28.3500 63 U -11.8545 40.9787 40.1504 -Times_New_Roman.ttf 6 o 25.1680 28.3500 64 j -14.1264 16.0906 53.4757 -Times_New_Roman.ttf 6 o 25.1680 28.3500 65 ( -13.2082 15.8496 52.7368 -Times_New_Roman.ttf 6 o 25.1680 28.3500 66 7 -11.6419 25.5011 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 67 § -12.2966 20.6124 50.9515 -Times_New_Roman.ttf 6 o 25.1680 28.3500 68 $ -14.7252 23.6262 45.6495 -Times_New_Roman.ttf 6 o 25.1680 28.3500 69 € -11.9883 29.1907 39.1026 -Times_New_Roman.ttf 6 o 25.1680 28.3500 70 / -13.7998 17.5721 42.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 71 C -12.8211 34.5469 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 72 * -13.6115 20.0794 24.4267 -Times_New_Roman.ttf 6 o 25.1680 28.3500 73 ” -12.7042 21.5305 14.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 74 ? -12.7260 19.9145 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 75 { -13.2548 17.0391 52.7368 -Times_New_Roman.ttf 6 o 25.1680 28.3500 76 } -13.1342 17.0391 52.7368 -Times_New_Roman.ttf 6 o 25.1680 28.3500 77 , 23.1866 8.5783 14.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 78 I -11.5582 16.7326 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 79 ° -12.8562 17.5721 17.5721 -Times_New_Roman.ttf 6 o 25.1680 28.3500 80 K -11.5902 41.1593 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 81 H -12.1023 40.8918 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 82 q 0.2460 26.9510 39.8257 -Times_New_Roman.ttf 6 o 25.1680 28.3500 83 & -12.8467 41.3411 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 84 ’ -12.9876 8.5783 14.0000 -Times_New_Roman.ttf 6 o 25.1680 28.3500 85 [ -12.3045 12.6664 51.2372 -Times_New_Roman.ttf 6 o 25.1680 28.3500 86 - 10.9914 15.1907 5.2134 -Times_New_Roman.ttf 6 o 25.1680 28.3500 87 Y -11.6577 41.7313 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 88 Q -13.2673 37.9372 51.1101 -Times_New_Roman.ttf 6 o 25.1680 28.3500 89 " -13.0439 14.9824 16.3814 -Times_New_Roman.ttf 6 o 25.1680 28.3500 90 ! -12.9876 5.2134 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 91 x 1.3146 28.4895 25.9686 -Times_New_Roman.ttf 6 o 25.1680 28.3500 92 ) -13.4525 15.8496 52.7368 -Times_New_Roman.ttf 6 o 25.1680 28.3500 93 = 1.1423 30.1743 12.0076 -Times_New_Roman.ttf 6 o 25.1680 28.3500 94 + -7.5843 30.3814 30.3814 -Times_New_Roman.ttf 6 o 25.1680 28.3500 95 X -11.5135 42.0000 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 96 » -0.1256 24.9427 27.1593 -Times_New_Roman.ttf 6 o 25.1680 28.3500 97 ' -13.0328 5.2134 16.3814 -Times_New_Roman.ttf 6 o 25.1680 28.3500 98 ¢ -10.2621 21.9459 47.5645 -Times_New_Roman.ttf 6 o 25.1680 28.3500 99 Z -11.7165 33.9535 38.9597 -Times_New_Roman.ttf 6 o 25.1680 28.3500 100 > -7.4114 30.8320 29.1907 -Times_New_Roman.ttf 6 o 25.1680 28.3500 101 ® -13.0876 40.3587 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 102 © -13.0407 40.3587 41.3411 -Times_New_Roman.ttf 6 o 25.1680 28.3500 103 ] -12.5178 12.6664 51.2372 -Times_New_Roman.ttf 6 o 25.1680 28.3500 104 é -12.6181 22.1278 41.0164 -Times_New_Roman.ttf 6 o 25.1680 28.3500 105 z 1.0749 23.5872 25.9686 -Times_New_Roman.ttf 6 o 25.1680 28.3500 106 _ 37.7112 30.0314 2.3814 -Times_New_Roman.ttf 6 o 25.1680 28.3500 107 ¥ -11.9246 31.4462 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 1 t -7.3459 16.5632 35.7376 -Times_New_Roman.ttf 7 e 22.1278 28.3500 2 h -13.5661 28.4494 40.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 3 a 0.1885 24.3008 28.3500 -Times_New_Roman.ttf 7 e 22.1278 28.3500 4 n 0.0857 28.4494 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 5 P -11.7143 30.0347 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 6 o -0.1158 25.1680 28.3500 -Times_New_Roman.ttf 7 e 22.1278 28.3500 7 e 0.0900 22.1278 28.3500 -Times_New_Roman.ttf 7 e 22.1278 28.3500 8 : -0.5128 5.2134 28.3500 -Times_New_Roman.ttf 7 e 22.1278 28.3500 9 r -0.0704 19.2134 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 10 l -13.6073 13.2587 40.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 11 i -13.5199 13.2587 40.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 12 1 -11.9822 15.9913 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 13 | -13.9710 2.3814 53.1680 -Times_New_Roman.ttf 7 e 22.1278 28.3500 14 N -11.7962 43.0089 40.1504 -Times_New_Roman.ttf 7 e 22.1278 28.3500 15 f -13.8470 23.6262 40.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 16 g 0.1442 26.7087 39.8257 -Times_New_Roman.ttf 7 e 22.1278 28.3500 17 d -13.3661 27.3411 42.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 18 W -11.4705 55.6923 40.1504 -Times_New_Roman.ttf 7 e 22.1278 28.3500 19 s -0.0812 17.7150 28.3500 -Times_New_Roman.ttf 7 e 22.1278 28.3500 20 c 0.0801 22.1278 28.3500 -Times_New_Roman.ttf 7 e 22.1278 28.3500 21 u 1.0415 28.6577 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 22 3 -12.0637 21.3876 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 23 ~ 7.6492 29.8907 7.5948 -Times_New_Roman.ttf 7 e 22.1278 28.3500 24 # -13.4925 26.1769 40.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 25 O -12.9155 37.9372 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 26 ` -12.2231 8.2536 9.4443 -Times_New_Roman.ttf 7 e 22.1278 28.3500 27 @ -13.5276 49.5948 54.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 28 F -12.0187 29.5407 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 29 S -13.3526 24.9597 41.5229 -Times_New_Roman.ttf 7 e 22.1278 28.3500 30 p 0.0459 26.9510 39.8257 -Times_New_Roman.ttf 7 e 22.1278 28.3500 31 “ -12.9257 21.7123 14.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 32 % -12.9027 46.5375 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 33 £ -11.9817 26.1504 40.2933 -Times_New_Roman.ttf 7 e 22.1278 28.3500 34 . 23.2241 5.2134 5.2134 -Times_New_Roman.ttf 7 e 22.1278 28.3500 35 2 -11.9363 25.4757 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 36 5 -11.7203 22.0453 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 37 m -0.0027 43.6401 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 38 V -11.8004 42.2071 40.1504 -Times_New_Roman.ttf 7 e 22.1278 28.3500 39 6 -11.5908 24.6350 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 40 w 1.3093 42.0012 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 41 T -11.8875 32.2857 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 42 M -11.8278 50.7900 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 43 G -13.0185 40.3587 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 44 b -13.6500 26.9510 42.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 45 9 -12.2032 24.2850 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 46 ; 0.1631 8.5783 37.1366 -Times_New_Roman.ttf 7 e 22.1278 28.3500 47 D -12.0103 39.4791 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 48 L -11.7703 33.1140 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 49 y 0.8899 29.1484 38.6350 -Times_New_Roman.ttf 7 e 22.1278 28.3500 50 ‘ -13.2006 8.5783 14.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 51 \ -13.7385 16.8974 42.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 52 R -11.8236 39.5192 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 53 < -7.4475 30.8320 29.1907 -Times_New_Roman.ttf 7 e 22.1278 28.3500 54 4 -12.1930 25.4757 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 55 8 -11.8191 22.7465 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 56 0 -11.9867 24.6350 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 57 A -12.7841 42.0000 40.1504 -Times_New_Roman.ttf 7 e 22.1278 28.3500 58 E -11.8778 34.1229 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 59 B -11.9070 34.7552 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 60 v 0.9068 29.7237 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 61 k -13.6097 28.4929 40.8093 -Times_New_Roman.ttf 7 e 22.1278 28.3500 62 J -11.6735 20.8981 40.1504 -Times_New_Roman.ttf 7 e 22.1278 28.3500 63 U -11.7226 40.9787 40.1504 -Times_New_Roman.ttf 7 e 22.1278 28.3500 64 j -13.5255 16.0906 53.4757 -Times_New_Roman.ttf 7 e 22.1278 28.3500 65 ( -13.3473 15.8496 52.7368 -Times_New_Roman.ttf 7 e 22.1278 28.3500 66 7 -11.9645 25.5011 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 67 § -12.4041 20.6124 50.9515 -Times_New_Roman.ttf 7 e 22.1278 28.3500 68 $ -14.9481 23.6262 45.6495 -Times_New_Roman.ttf 7 e 22.1278 28.3500 69 € -11.7774 29.1907 39.1026 -Times_New_Roman.ttf 7 e 22.1278 28.3500 70 / -13.3402 17.5721 42.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 71 C -13.1328 34.5469 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 72 * -13.5699 20.0794 24.4267 -Times_New_Roman.ttf 7 e 22.1278 28.3500 73 ” -12.9185 21.5305 14.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 74 ? -12.9054 19.9145 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 75 { -13.2982 17.0391 52.7368 -Times_New_Roman.ttf 7 e 22.1278 28.3500 76 } -13.4153 17.0391 52.7368 -Times_New_Roman.ttf 7 e 22.1278 28.3500 77 , 23.2289 8.5783 14.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 78 I -12.1540 16.7326 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 79 ° -12.6864 17.5721 17.5721 -Times_New_Roman.ttf 7 e 22.1278 28.3500 80 K -11.7708 41.1593 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 81 H -11.8899 40.8918 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 82 q 0.1575 26.9510 39.8257 -Times_New_Roman.ttf 7 e 22.1278 28.3500 83 & -12.8260 41.3411 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 84 ’ -12.9554 8.5783 14.0000 -Times_New_Roman.ttf 7 e 22.1278 28.3500 85 [ -12.3153 12.6664 51.2372 -Times_New_Roman.ttf 7 e 22.1278 28.3500 86 - 11.0543 15.1907 5.2134 -Times_New_Roman.ttf 7 e 22.1278 28.3500 87 Y -11.7921 41.7313 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 88 Q -12.9439 37.9372 51.1101 -Times_New_Roman.ttf 7 e 22.1278 28.3500 89 " -13.1177 14.9824 16.3814 -Times_New_Roman.ttf 7 e 22.1278 28.3500 90 ! -12.9939 5.2134 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 91 x 1.0133 28.4895 25.9686 -Times_New_Roman.ttf 7 e 22.1278 28.3500 92 ) -13.1819 15.8496 52.7368 -Times_New_Roman.ttf 7 e 22.1278 28.3500 93 = 1.1794 30.1743 12.0076 -Times_New_Roman.ttf 7 e 22.1278 28.3500 94 + -7.5360 30.3814 30.3814 -Times_New_Roman.ttf 7 e 22.1278 28.3500 95 X -11.6044 42.0000 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 96 » 0.2893 24.9427 27.1593 -Times_New_Roman.ttf 7 e 22.1278 28.3500 97 ' -12.7733 5.2134 16.3814 -Times_New_Roman.ttf 7 e 22.1278 28.3500 98 ¢ -10.2496 21.9459 47.5645 -Times_New_Roman.ttf 7 e 22.1278 28.3500 99 Z -12.0579 33.9535 38.9597 -Times_New_Roman.ttf 7 e 22.1278 28.3500 100 > -7.3872 30.8320 29.1907 -Times_New_Roman.ttf 7 e 22.1278 28.3500 101 ® -12.8034 40.3587 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 102 © -13.0430 40.3587 41.3411 -Times_New_Roman.ttf 7 e 22.1278 28.3500 103 ] -12.7394 12.6664 51.2372 -Times_New_Roman.ttf 7 e 22.1278 28.3500 104 é -12.7315 22.1278 41.0164 -Times_New_Roman.ttf 7 e 22.1278 28.3500 105 z 1.1022 23.5872 25.9686 -Times_New_Roman.ttf 7 e 22.1278 28.3500 106 _ 37.2330 30.0314 2.3814 -Times_New_Roman.ttf 7 e 22.1278 28.3500 107 ¥ -11.7602 31.4462 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 1 t -7.4876 16.5632 35.7376 -Times_New_Roman.ttf 8 : 5.2134 28.3500 2 h -13.6500 28.4494 40.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 3 a -0.0801 24.3008 28.3500 -Times_New_Roman.ttf 8 : 5.2134 28.3500 4 n -0.0801 28.4494 27.1593 -Times_New_Roman.ttf 8 : 5.2134 28.3500 5 P -11.7077 30.0347 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 6 o -0.0060 25.1680 28.3500 -Times_New_Roman.ttf 8 : 5.2134 28.3500 7 e 0.0083 22.1278 28.3500 -Times_New_Roman.ttf 8 : 5.2134 28.3500 8 : 0.0871 5.2134 28.3500 -Times_New_Roman.ttf 8 : 5.2134 28.3500 9 r -0.0500 19.2134 27.1593 -Times_New_Roman.ttf 8 : 5.2134 28.3500 10 l -13.6538 13.2587 40.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 11 i -13.7186 13.2587 40.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 12 1 -11.7820 15.9913 39.1026 -Times_New_Roman.ttf 8 : 5.2134 28.3500 13 | -13.8498 2.3814 53.1680 -Times_New_Roman.ttf 8 : 5.2134 28.3500 14 N -11.6721 43.0089 40.1504 -Times_New_Roman.ttf 8 : 5.2134 28.3500 15 f -13.6455 23.6262 40.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 16 g -0.0882 26.7087 39.8257 -Times_New_Roman.ttf 8 : 5.2134 28.3500 17 d -13.5903 27.3411 42.0000 -Times_New_Roman.ttf 8 : 5.2134 28.3500 18 W -11.8004 55.6923 40.1504 -Times_New_Roman.ttf 8 : 5.2134 28.3500 19 s 0.0000 17.7150 28.3500 -Times_New_Roman.ttf 8 : 5.2134 28.3500 20 c 0.0500 22.1278 28.3500 -Times_New_Roman.ttf 8 : 5.2134 28.3500 21 u 1.2296 28.6577 27.1593 -Times_New_Roman.ttf 8 : 5.2134 28.3500 22 3 -11.8440 21.3876 39.1026 -Times_New_Roman.ttf 8 : 5.2134 28.3500 23 ~ 7.7046 29.8907 7.5948 -Times_New_Roman.ttf 8 : 5.2134 28.3500 24 # -13.5314 26.1769 40.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 25 O -13.0685 37.9372 41.3411 -Times_New_Roman.ttf 8 : 5.2134 28.3500 26 ` -12.0962 8.2536 9.4443 -Times_New_Roman.ttf 8 : 5.2134 28.3500 27 @ -13.5518 49.5948 54.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 28 F -11.7138 29.5407 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 29 S -13.2069 24.9597 41.5229 -Times_New_Roman.ttf 8 : 5.2134 28.3500 30 p -0.1000 26.9510 39.8257 -Times_New_Roman.ttf 8 : 5.2134 28.3500 31 “ -12.9082 21.7123 14.0000 -Times_New_Roman.ttf 8 : 5.2134 28.3500 32 % -13.0997 46.5375 41.3411 -Times_New_Roman.ttf 8 : 5.2134 28.3500 33 £ -12.0252 26.1504 40.2933 -Times_New_Roman.ttf 8 : 5.2134 28.3500 34 . 23.1713 5.2134 5.2134 -Times_New_Roman.ttf 8 : 5.2134 28.3500 35 2 -11.9433 25.4757 39.1026 -Times_New_Roman.ttf 8 : 5.2134 28.3500 36 5 -11.6002 22.0453 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 37 m -0.1801 43.6401 27.1593 -Times_New_Roman.ttf 8 : 5.2134 28.3500 38 V -11.7192 42.2071 40.1504 -Times_New_Roman.ttf 8 : 5.2134 28.3500 39 6 -11.8451 24.6350 39.1026 -Times_New_Roman.ttf 8 : 5.2134 28.3500 40 w 1.2477 42.0012 27.1593 -Times_New_Roman.ttf 8 : 5.2134 28.3500 41 T -11.5266 32.2857 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 42 M -12.0552 50.7900 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 43 G -12.8280 40.3587 41.3411 -Times_New_Roman.ttf 8 : 5.2134 28.3500 44 b -13.6556 26.9510 42.0000 -Times_New_Roman.ttf 8 : 5.2134 28.3500 45 9 -12.2046 24.2850 39.1026 -Times_New_Roman.ttf 8 : 5.2070 28.3630 46 ; -0.0802 8.5769 37.1560 -Times_New_Roman.ttf 8 : 5.2134 28.3500 47 D -11.8004 39.4791 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 48 L -11.5989 33.1140 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 49 y 1.1907 29.1484 38.6350 -Times_New_Roman.ttf 8 : 5.2070 28.3630 50 ‘ -12.9105 8.5769 14.0000 -Times_New_Roman.ttf 8 : 5.2070 28.3630 51 \ -13.7407 16.8851 42.0000 -Times_New_Roman.ttf 8 : 5.2134 28.3500 52 R -11.8954 39.5192 38.9597 -Times_New_Roman.ttf 8 : 5.2070 28.3630 53 < -7.4510 30.8172 29.1949 -Times_New_Roman.ttf 8 : 5.2070 28.3630 54 4 -11.7436 25.4620 39.1149 -Times_New_Roman.ttf 8 : 5.2070 28.3630 55 8 -11.8627 22.7514 39.1149 -Times_New_Roman.ttf 8 : 5.2070 28.3630 56 0 -11.8479 24.6301 39.1149 -Times_New_Roman.ttf 8 : 5.2134 28.3500 57 A -12.9110 42.0000 40.1504 -Times_New_Roman.ttf 8 : 5.2134 28.3500 58 E -11.6165 34.1229 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 59 B -11.8389 34.7552 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 60 v 1.2764 29.7237 27.1593 -Times_New_Roman.ttf 8 : 5.2134 28.3500 61 k -13.7070 28.4929 40.8093 -Times_New_Roman.ttf 8 : 5.2134 28.3500 62 J -11.8305 20.8981 40.1504 -Times_New_Roman.ttf 8 : 5.2134 28.3500 63 U -11.8004 40.9787 40.1504 -Times_New_Roman.ttf 8 : 5.2134 28.3500 64 j -13.6500 16.0906 53.4757 -Times_New_Roman.ttf 8 : 5.2070 28.3630 65 ( -13.1333 15.8383 52.6957 -Times_New_Roman.ttf 8 : 5.2070 28.3630 66 7 -12.0413 25.4883 38.9668 -Times_New_Roman.ttf 8 : 5.2070 28.3630 67 § -12.3667 20.6180 50.9240 -Times_New_Roman.ttf 8 : 5.2070 28.3630 68 $ -14.5243 23.6237 45.6650 -Times_New_Roman.ttf 8 : 5.2070 28.3630 69 € -12.0386 29.1949 39.1149 -Times_New_Roman.ttf 8 : 5.2070 28.3630 70 / -13.6784 17.5847 42.0000 -Times_New_Roman.ttf 8 : 5.2134 28.3500 71 C -12.6298 34.5469 41.3411 -Times_New_Roman.ttf 8 : 5.2070 28.3630 72 * -13.5568 20.0652 24.4140 -Times_New_Roman.ttf 8 : 5.2070 28.3630 73 ” -12.8620 21.5302 14.0000 -Times_New_Roman.ttf 8 : 5.2070 28.3630 74 ? -13.0825 19.9342 41.3566 -Times_New_Roman.ttf 8 : 5.2070 28.3630 75 { -13.0474 17.0320 52.6957 -Times_New_Roman.ttf 8 : 5.2070 28.3630 76 } -13.6047 17.0320 52.6957 -Times_New_Roman.ttf 8 : 5.2070 28.3630 77 , 23.1570 8.5769 14.0000 -Times_New_Roman.ttf 8 : 5.2134 28.3500 78 I -11.8778 16.7326 38.9597 -Times_New_Roman.ttf 8 : 5.2070 28.3630 79 ° -12.7469 17.5847 17.5847 -Times_New_Roman.ttf 8 : 5.2134 28.3500 80 K -11.8805 41.1593 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 81 H -11.6192 40.8918 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 82 q 0.0801 26.9510 39.8257 -Times_New_Roman.ttf 8 : 5.2070 28.3630 83 & -12.8946 41.3566 41.3566 -Times_New_Roman.ttf 8 : 5.2070 28.3630 84 ’ -12.8529 8.5769 14.0000 -Times_New_Roman.ttf 8 : 5.2070 28.3630 85 [ -12.5252 12.6569 51.2203 -Times_New_Roman.ttf 8 : 5.2070 28.3630 86 - 11.0865 15.1949 5.2070 -Times_New_Roman.ttf 8 : 5.2134 28.3500 87 Y -11.7133 41.7313 38.9597 -Times_New_Roman.ttf 8 : 5.2134 28.3500 88 Q -13.0685 37.9372 51.1101 -Times_New_Roman.ttf 8 : 5.2070 28.3630 89 " -13.1656 14.9789 16.3898 -Times_New_Roman.ttf 8 : 5.2070 28.3630 90 ! -12.9850 5.2070 41.3566 -Times_New_Roman.ttf 8 : 5.2134 28.3500 91 x 0.9822 28.4895 25.9686 -Times_New_Roman.ttf 8 : 5.2070 28.3630 92 ) -13.2889 15.8383 52.6957 -Times_New_Roman.ttf 8 : 5.2070 28.3630 93 = 1.4110 30.1750 12.0135 -Times_New_Roman.ttf 8 : 5.2070 28.3630 94 + -7.4100 30.3898 30.3898 -Times_New_Roman.ttf 8 : 5.2134 28.3500 95 X -11.8681 42.0000 38.9597 -Times_New_Roman.ttf 8 : 5.2070 28.3630 96 » 0.0370 24.9093 27.1680 -Times_New_Roman.ttf 8 : 5.2070 28.3630 97 ' -12.9504 5.2070 16.3898 -Times_New_Roman.ttf 8 : 5.2070 28.3630 98 ¢ -10.6531 21.9610 47.5712 -Times_New_Roman.ttf 8 : 5.2134 28.3500 99 Z -11.8357 33.9535 38.9597 -Times_New_Roman.ttf 8 : 5.2070 28.3630 100 > -7.4499 30.8172 29.1949 -Times_New_Roman.ttf 8 : 5.2070 28.3630 101 ® -12.9345 40.3777 41.3566 -Times_New_Roman.ttf 8 : 5.2070 28.3630 102 © -12.9908 40.3777 41.3566 -Times_New_Roman.ttf 8 : 5.2070 28.3630 103 ] -12.3465 12.6569 51.2203 -Times_New_Roman.ttf 8 : 5.2134 28.3500 104 é -12.7466 22.1278 41.0164 -Times_New_Roman.ttf 8 : 5.2134 28.3500 105 z 1.1972 23.5872 25.9686 -Times_New_Roman.ttf 8 : 5.2070 28.3630 106 _ 37.5985 30.0269 2.3898 -Times_New_Roman.ttf 8 : 5.2070 28.3630 107 ¥ -11.7185 31.4941 38.9668 -Times_New_Roman.ttf 9 r 19.2134 27.1593 1 t -7.7392 16.5632 35.7376 -Times_New_Roman.ttf 9 r 19.2134 27.1593 2 h -13.8196 28.4494 40.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 3 a 0.0274 24.3008 28.3500 -Times_New_Roman.ttf 9 r 19.2134 27.1593 4 n -0.0812 28.4494 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 5 P -11.8064 30.0347 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 6 o 0.1186 25.1680 28.3500 -Times_New_Roman.ttf 9 r 19.2134 27.1593 7 e 0.0385 22.1278 28.3500 -Times_New_Roman.ttf 9 r 19.2134 27.1593 8 : 0.0477 5.2134 28.3500 -Times_New_Roman.ttf 9 r 19.2134 27.1593 9 r 0.1631 19.2134 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 10 l -13.5726 13.2587 40.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 11 i -13.9140 13.2587 40.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 12 1 -11.9744 15.9913 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 13 | -13.6847 2.3814 53.1680 -Times_New_Roman.ttf 9 r 19.2134 27.1593 14 N -12.0058 43.0089 40.1504 -Times_New_Roman.ttf 9 r 19.2134 27.1593 15 f -13.6000 23.6262 40.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 16 g -0.1585 26.7087 39.8257 -Times_New_Roman.ttf 9 r 19.2134 27.1593 17 d -13.7333 27.3411 42.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 18 W -11.7203 55.6923 40.1504 -Times_New_Roman.ttf 9 r 19.2134 27.1593 19 s -0.0643 17.7150 28.3500 -Times_New_Roman.ttf 9 r 19.2134 27.1593 20 c -0.1362 22.1278 28.3500 -Times_New_Roman.ttf 9 r 19.2134 27.1593 21 u 1.0113 28.6577 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 22 3 -11.8247 21.3876 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 23 ~ 7.7997 29.8907 7.5948 -Times_New_Roman.ttf 9 r 19.2134 27.1593 24 # -14.0670 26.1769 40.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 25 O -12.9002 37.9372 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 26 ` -12.1366 8.2536 9.4443 -Times_New_Roman.ttf 9 r 19.2134 27.1593 27 @ -13.6955 49.5948 54.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 28 F -11.7796 29.5407 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 29 S -13.2058 24.9597 41.5229 -Times_New_Roman.ttf 9 r 19.2134 27.1593 30 p -0.1292 26.9510 39.8257 -Times_New_Roman.ttf 9 r 19.2134 27.1593 31 “ -12.9800 21.7123 14.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 32 % -12.7680 46.5375 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 33 £ -12.1385 26.1504 40.2933 -Times_New_Roman.ttf 9 r 19.2134 27.1593 34 . 23.0450 5.2134 5.2134 -Times_New_Roman.ttf 9 r 19.2134 27.1593 35 2 -11.8247 25.4757 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 36 5 -12.0301 22.0453 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 37 m -0.0801 43.6401 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 38 V -11.7127 42.2071 40.1504 -Times_New_Roman.ttf 9 r 19.2134 27.1593 39 6 -11.8274 24.6350 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 40 w 1.2380 42.0012 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 41 T -11.9190 32.2857 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 42 M -11.6353 50.7900 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 43 G -13.0823 40.3587 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 44 b -13.5699 26.9510 42.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 45 9 -12.0958 24.2850 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 46 ; 0.0115 8.5783 37.1366 -Times_New_Roman.ttf 9 r 19.2134 27.1593 47 D -11.7147 39.4791 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 48 L -11.8129 33.1140 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 49 y 1.0304 29.1484 38.6350 -Times_New_Roman.ttf 9 r 19.2134 27.1593 50 ‘ -12.8298 8.5783 14.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 51 \ -13.5244 16.8974 42.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 52 R -11.7805 39.5192 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 53 < -7.3257 30.8320 29.1907 -Times_New_Roman.ttf 9 r 19.2134 27.1593 54 4 -12.0123 25.4757 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 55 8 -12.0378 22.7465 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 56 0 -11.9586 24.6350 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 57 A -12.8281 42.0000 40.1504 -Times_New_Roman.ttf 9 r 19.2134 27.1593 58 E -11.6192 34.1229 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 59 B -11.8228 34.7552 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 60 v 1.2676 29.7237 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 61 k -13.7115 28.4929 40.8093 -Times_New_Roman.ttf 9 r 19.2134 27.1593 62 J -11.6439 20.8981 40.1504 -Times_New_Roman.ttf 9 r 19.2134 27.1593 63 U -12.0590 40.9787 40.1504 -Times_New_Roman.ttf 9 r 19.2134 27.1593 64 j -13.6500 16.0906 53.4757 -Times_New_Roman.ttf 9 r 19.2134 27.1593 65 ( -13.1772 15.8496 52.7368 -Times_New_Roman.ttf 9 r 19.2134 27.1593 66 7 -11.9778 25.5011 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 67 § -12.2099 20.6124 50.9515 -Times_New_Roman.ttf 9 r 19.2134 27.1593 68 $ -14.8949 23.6262 45.6495 -Times_New_Roman.ttf 9 r 19.2134 27.1593 69 € -12.1091 29.1907 39.1026 -Times_New_Roman.ttf 9 r 19.2134 27.1593 70 / -13.7819 17.5721 42.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 71 C -13.0153 34.5469 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 72 * -13.6115 20.0794 24.4267 -Times_New_Roman.ttf 9 r 19.2134 27.1593 73 ” -13.0599 21.5305 14.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 74 ? -13.0334 19.9145 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 75 { -13.0766 17.0391 52.7368 -Times_New_Roman.ttf 9 r 19.2134 27.1593 76 } -13.3517 17.0391 52.7368 -Times_New_Roman.ttf 9 r 19.2134 27.1593 77 , 23.0457 8.5783 14.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 78 I -11.9240 16.7326 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 79 ° -12.8368 17.5721 17.5721 -Times_New_Roman.ttf 9 r 19.2134 27.1593 80 K -11.8620 41.1593 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 81 H -11.9200 40.8918 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 82 q -0.1631 26.9510 39.8257 -Times_New_Roman.ttf 9 r 19.2134 27.1593 83 & -13.0838 41.3411 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 84 ’ -13.0602 8.5783 14.0000 -Times_New_Roman.ttf 9 r 19.2134 27.1593 85 [ -12.2480 12.6664 51.2372 -Times_New_Roman.ttf 9 r 19.2134 27.1593 86 - 10.8529 15.1907 5.2134 -Times_New_Roman.ttf 9 r 19.2134 27.1593 87 Y -11.9579 41.7313 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 88 Q -13.3183 37.9372 51.1101 -Times_New_Roman.ttf 9 r 19.2134 27.1593 89 " -13.2070 14.9824 16.3814 -Times_New_Roman.ttf 9 r 19.2134 27.1593 90 ! -12.8318 5.2134 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 91 x 1.1889 28.4895 25.9686 -Times_New_Roman.ttf 9 r 19.2134 27.1593 92 ) -13.1161 15.8496 52.7368 -Times_New_Roman.ttf 9 r 19.2134 27.1593 93 = 1.5603 30.1743 12.0076 -Times_New_Roman.ttf 9 r 19.2134 27.1593 94 + -7.4031 30.3814 30.3814 -Times_New_Roman.ttf 9 r 19.2134 27.1593 95 X -11.5600 42.0000 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 96 » -0.1525 24.9427 27.1593 -Times_New_Roman.ttf 9 r 19.2134 27.1593 97 ' -13.0841 5.2134 16.3814 -Times_New_Roman.ttf 9 r 19.2134 27.1593 98 ¢ -10.4575 21.9459 47.5645 -Times_New_Roman.ttf 9 r 19.2134 27.1593 99 Z -11.9529 33.9535 38.9597 -Times_New_Roman.ttf 9 r 19.2134 27.1593 100 > -7.5332 30.8320 29.1907 -Times_New_Roman.ttf 9 r 19.2134 27.1593 101 ® -12.6535 40.3587 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 102 © -13.3413 40.3587 41.3411 -Times_New_Roman.ttf 9 r 19.2134 27.1593 103 ] -12.4095 12.6664 51.2372 -Times_New_Roman.ttf 9 r 19.2134 27.1593 104 é -12.9135 22.1278 41.0164 -Times_New_Roman.ttf 9 r 19.2134 27.1593 105 z 1.4065 23.5872 25.9686 -Times_New_Roman.ttf 9 r 19.2134 27.1593 106 _ 37.3109 30.0314 2.3814 -Times_New_Roman.ttf 9 r 19.2134 27.1593 107 ¥ -11.8889 31.4462 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 1 t 6.4041 16.5632 35.7376 -Times_New_Roman.ttf 10 l 13.2587 40.8093 2 h 0.0774 28.4494 40.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 3 a 13.3663 24.3008 28.3500 -Times_New_Roman.ttf 10 l 13.2587 40.8093 4 n 13.8571 28.4494 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 5 P 1.5141 30.0347 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 6 o 13.7798 25.1680 28.3500 -Times_New_Roman.ttf 10 l 13.2587 40.8093 7 e 13.6027 22.1278 28.3500 -Times_New_Roman.ttf 10 l 13.2587 40.8093 8 : 13.6885 5.2134 28.3500 -Times_New_Roman.ttf 10 l 13.2587 40.8093 9 r 13.5643 19.2134 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 10 l 0.0500 13.2587 40.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 11 i 0.1204 13.2587 40.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 12 1 1.6266 15.9913 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 13 | 0.0867 2.3814 53.1680 -Times_New_Roman.ttf 10 l 13.2587 40.8093 14 N 1.9297 43.0089 40.1504 -Times_New_Roman.ttf 10 l 13.2587 40.8093 15 f 0.0010 23.6262 40.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 16 g 13.6510 26.7087 39.8257 -Times_New_Roman.ttf 10 l 13.2587 40.8093 17 d 0.0500 27.3411 42.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 18 W 1.7195 55.6923 40.1504 -Times_New_Roman.ttf 10 l 13.2587 40.8093 19 s 13.8457 17.7150 28.3500 -Times_New_Roman.ttf 10 l 13.2587 40.8093 20 c 13.4842 22.1278 28.3500 -Times_New_Roman.ttf 10 l 13.2587 40.8093 21 u 14.8425 28.6577 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 22 3 1.7994 21.3876 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 23 ~ 21.1819 29.8907 7.5948 -Times_New_Roman.ttf 10 l 13.2587 40.8093 24 # 0.1389 26.1769 40.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 25 O 0.9003 37.9372 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 26 ` 1.5699 8.2536 9.4443 -Times_New_Roman.ttf 10 l 13.2587 40.8093 27 @ -0.0812 49.5948 54.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 28 F 1.8496 29.5407 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 29 S 0.7625 24.9597 41.5229 -Times_New_Roman.ttf 10 l 13.2587 40.8093 30 p 13.7269 26.9510 39.8257 -Times_New_Roman.ttf 10 l 13.2587 40.8093 31 “ 0.6408 21.7123 14.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 32 % 0.8164 46.5375 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 33 £ 1.7050 26.1504 40.2933 -Times_New_Roman.ttf 10 l 13.2587 40.8093 34 . 36.6611 5.2134 5.2134 -Times_New_Roman.ttf 10 l 13.2587 40.8093 35 2 1.5542 25.4757 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 36 5 1.9270 22.0453 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 37 m 13.5615 43.6401 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 38 V 1.9479 42.2071 40.1504 -Times_New_Roman.ttf 10 l 13.2587 40.8093 39 6 1.6210 24.6350 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 40 w 15.0167 42.0012 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 41 T 1.8604 32.2857 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 42 M 1.8496 50.7900 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 43 G 0.4430 40.3587 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 44 b -0.0385 26.9510 42.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 45 9 1.7869 24.2850 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 46 ; 13.5008 8.5783 37.1366 -Times_New_Roman.ttf 10 l 13.2587 40.8093 47 D 1.8666 39.4791 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 48 L 1.9686 33.1140 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 49 y 14.8824 29.1484 38.6350 -Times_New_Roman.ttf 10 l 13.2587 40.8093 50 ‘ 0.8121 8.5783 14.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 51 \ 0.0922 16.8974 42.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 52 R 2.0241 39.5192 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 53 < 6.1584 30.8320 29.1907 -Times_New_Roman.ttf 10 l 13.2587 40.8093 54 4 1.8823 25.4757 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 55 8 1.6804 22.7465 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 56 0 1.6266 24.6350 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 57 A 0.5777 42.0000 40.1504 -Times_New_Roman.ttf 10 l 13.2587 40.8093 58 E 1.8084 34.1229 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 59 B 2.0883 34.7552 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 60 v 14.9264 29.7237 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 61 k -0.0315 28.4929 40.8093 -Times_New_Roman.ttf 10 l 13.2587 40.8093 62 J 1.6921 20.8981 40.1504 -Times_New_Roman.ttf 10 l 13.2587 40.8093 63 U 1.9423 40.9787 40.1504 -Times_New_Roman.ttf 10 l 13.2587 40.8093 64 j 0.0455 16.0906 53.4757 -Times_New_Roman.ttf 10 l 13.2587 40.8093 65 ( 0.5158 15.8496 52.7368 -Times_New_Roman.ttf 10 l 13.2587 40.8093 66 7 1.4724 25.5011 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 67 § 1.3336 20.6124 50.9515 -Times_New_Roman.ttf 10 l 13.2587 40.8093 68 $ -1.1818 23.6262 45.6495 -Times_New_Roman.ttf 10 l 13.2587 40.8093 69 € 1.5793 29.1907 39.1026 -Times_New_Roman.ttf 10 l 13.2587 40.8093 70 / -0.2178 17.5721 42.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 71 C 0.6347 34.5469 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 72 * 0.0385 20.0794 24.4267 -Times_New_Roman.ttf 10 l 13.2587 40.8093 73 ” 0.5589 21.5305 14.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 74 ? 0.4795 19.9145 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 75 { 0.5990 17.0391 52.7368 -Times_New_Roman.ttf 10 l 13.2587 40.8093 76 } 0.3861 17.0391 52.7368 -Times_New_Roman.ttf 10 l 13.2587 40.8093 77 , 36.8678 8.5783 14.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 78 I 1.9265 16.7326 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 79 ° 0.5008 17.5721 17.5721 -Times_New_Roman.ttf 10 l 13.2587 40.8093 80 K 1.8468 41.1593 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 81 H 1.8835 40.8918 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 82 q 13.7312 26.9510 39.8257 -Times_New_Roman.ttf 10 l 13.2587 40.8093 83 & 0.7363 41.3411 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 84 ’ 0.8345 8.5783 14.0000 -Times_New_Roman.ttf 10 l 13.2587 40.8093 85 [ 1.3590 12.6664 51.2372 -Times_New_Roman.ttf 10 l 13.2587 40.8093 86 - 24.7209 15.1907 5.2134 -Times_New_Roman.ttf 10 l 13.2587 40.8093 87 Y 2.1938 41.7313 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 88 Q 0.7928 37.9372 51.1101 -Times_New_Roman.ttf 10 l 13.2587 40.8093 89 " 0.6616 14.9824 16.3814 -Times_New_Roman.ttf 10 l 13.2587 40.8093 90 ! 0.1677 5.2134 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 91 x 14.9246 28.4895 25.9686 -Times_New_Roman.ttf 10 l 13.2587 40.8093 92 ) 0.2716 15.8496 52.7368 -Times_New_Roman.ttf 10 l 13.2587 40.8093 93 = 15.1324 30.1743 12.0076 -Times_New_Roman.ttf 10 l 13.2587 40.8093 94 + 6.3017 30.3814 30.3814 -Times_New_Roman.ttf 10 l 13.2587 40.8093 95 X 1.8880 42.0000 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 96 » 13.6885 24.9427 27.1593 -Times_New_Roman.ttf 10 l 13.2587 40.8093 97 ' 0.4591 5.2134 16.3814 -Times_New_Roman.ttf 10 l 13.2587 40.8093 98 ¢ 3.2106 21.9459 47.5645 -Times_New_Roman.ttf 10 l 13.2587 40.8093 99 Z 1.8880 33.9535 38.9597 -Times_New_Roman.ttf 10 l 13.2587 40.8093 100 > 6.0449 30.8320 29.1907 -Times_New_Roman.ttf 10 l 13.2587 40.8093 101 ® 0.5274 40.3587 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 102 © 0.6662 40.3587 41.3411 -Times_New_Roman.ttf 10 l 13.2587 40.8093 103 ] 1.3423 12.6664 51.2372 -Times_New_Roman.ttf 10 l 13.2587 40.8093 104 é 0.7190 22.1278 41.0164 -Times_New_Roman.ttf 10 l 13.2587 40.8093 105 z 15.0047 23.5872 25.9686 -Times_New_Roman.ttf 10 l 13.2587 40.8093 106 _ 51.1556 30.0314 2.3814 -Times_New_Roman.ttf 10 l 13.2587 40.8093 107 ¥ 1.6980 31.4462 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 1 t 6.5705 16.5632 35.7376 -Times_New_Roman.ttf 11 i 13.2587 40.8093 2 h -0.0473 28.4494 40.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 3 a 13.6917 24.3008 28.3500 -Times_New_Roman.ttf 11 i 13.2587 40.8093 4 n 13.8113 28.4494 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 5 P 1.7227 30.0347 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 6 o 13.4731 25.1680 28.3500 -Times_New_Roman.ttf 11 i 13.2587 40.8093 7 e 13.7686 22.1278 28.3500 -Times_New_Roman.ttf 11 i 13.2587 40.8093 8 : 13.4842 5.2134 28.3500 -Times_New_Roman.ttf 11 i 13.2587 40.8093 9 r 13.6777 19.2134 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 10 l -0.0167 13.2587 40.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 11 i 0.0812 13.2587 40.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 12 1 1.8067 15.9913 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 13 | 0.2651 2.3814 53.1680 -Times_New_Roman.ttf 11 i 13.2587 40.8093 14 N 1.9913 43.0089 40.1504 -Times_New_Roman.ttf 11 i 13.2587 40.8093 15 f -0.2957 23.6262 40.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 16 g 13.7514 26.7087 39.8257 -Times_New_Roman.ttf 11 i 13.2587 40.8093 17 d 0.0153 27.3411 42.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 18 W 1.9192 55.6923 40.1504 -Times_New_Roman.ttf 11 i 13.2587 40.8093 19 s 13.8887 17.7150 28.3500 -Times_New_Roman.ttf 11 i 13.2587 40.8093 20 c 13.6078 22.1278 28.3500 -Times_New_Roman.ttf 11 i 13.2587 40.8093 21 u 14.9593 28.6577 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 22 3 1.7869 21.3876 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 23 ~ 21.4535 29.8907 7.5948 -Times_New_Roman.ttf 11 i 13.2587 40.8093 24 # 0.0385 26.1769 40.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 25 O 0.5815 37.9372 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 26 ` 1.6350 8.2536 9.4443 -Times_New_Roman.ttf 11 i 13.2587 40.8093 27 @ -0.0556 49.5948 54.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 28 F 1.6928 29.5407 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 29 S 0.7411 24.9597 41.5229 -Times_New_Roman.ttf 11 i 13.2587 40.8093 30 p 13.9210 26.9510 39.8257 -Times_New_Roman.ttf 11 i 13.2587 40.8093 31 “ 0.5393 21.7123 14.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 32 % 0.6166 46.5375 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 33 £ 1.9180 26.1504 40.2933 -Times_New_Roman.ttf 11 i 13.2587 40.8093 34 . 36.6291 5.2134 5.2134 -Times_New_Roman.ttf 11 i 13.2587 40.8093 35 2 1.7095 25.4757 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 36 5 1.5541 22.0453 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 37 m 13.6500 43.6401 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 38 V 1.9380 42.2071 40.1504 -Times_New_Roman.ttf 11 i 13.2587 40.8093 39 6 1.8637 24.6350 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 40 w 14.8208 42.0012 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 41 T 2.0061 32.2857 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 42 M 1.7767 50.7900 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 43 G 0.4823 40.3587 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 44 b -0.0801 26.9510 42.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 45 9 1.4798 24.2850 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 46 ; 13.5342 8.5783 37.1366 -Times_New_Roman.ttf 11 i 13.2587 40.8093 47 D 1.8797 39.4791 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 48 L 1.8928 33.1140 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 49 y 14.9468 29.1484 38.6350 -Times_New_Roman.ttf 11 i 13.2587 40.8093 50 ‘ 0.4476 8.5783 14.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 51 \ 0.0231 16.8974 42.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 52 R 1.7209 39.5192 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 53 < 6.2705 30.8320 29.1907 -Times_New_Roman.ttf 11 i 13.2587 40.8093 54 4 1.7522 25.4757 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 55 8 1.8670 22.7465 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 56 0 1.7906 24.6350 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 57 A 0.9164 42.0000 40.1504 -Times_New_Roman.ttf 11 i 13.2587 40.8093 58 E 1.7227 34.1229 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 59 B 1.8880 34.7552 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 60 v 14.7068 29.7237 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 61 k -0.0774 28.4929 40.8093 -Times_New_Roman.ttf 11 i 13.2587 40.8093 62 J 1.9034 20.8981 40.1504 -Times_New_Roman.ttf 11 i 13.2587 40.8093 63 U 1.7157 40.9787 40.1504 -Times_New_Roman.ttf 11 i 13.2587 40.8093 64 j 0.0385 16.0906 53.4757 -Times_New_Roman.ttf 11 i 13.2587 40.8093 65 ( 0.3038 15.8496 52.7368 -Times_New_Roman.ttf 11 i 13.2587 40.8093 66 7 1.7611 25.5011 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 67 § 1.5064 20.6124 50.9515 -Times_New_Roman.ttf 11 i 13.2587 40.8093 68 $ -1.1318 23.6262 45.6495 -Times_New_Roman.ttf 11 i 13.2587 40.8093 69 € 1.8105 29.1907 39.1026 -Times_New_Roman.ttf 11 i 13.2587 40.8093 70 / 0.1724 17.5721 42.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 71 C 0.6732 34.5469 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 72 * -0.2466 20.0794 24.4267 -Times_New_Roman.ttf 11 i 13.2587 40.8093 73 ” 0.6616 21.5305 14.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 74 ? 0.6858 19.9145 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 75 { 0.4301 17.0391 52.7368 -Times_New_Roman.ttf 11 i 13.2587 40.8093 76 } 0.0068 17.0391 52.7368 -Times_New_Roman.ttf 11 i 13.2587 40.8093 77 , 36.4568 8.5783 14.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 78 I 2.0483 16.7326 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 79 ° 0.6019 17.5721 17.5721 -Times_New_Roman.ttf 11 i 13.2587 40.8093 80 K 1.7740 41.1593 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 81 H 1.6872 40.8918 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 82 q 13.7115 26.9510 39.8257 -Times_New_Roman.ttf 11 i 13.2587 40.8093 83 & 0.6200 41.3411 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 84 ’ 0.4986 8.5783 14.0000 -Times_New_Roman.ttf 11 i 13.2587 40.8093 85 [ 1.2746 12.6664 51.2372 -Times_New_Roman.ttf 11 i 13.2587 40.8093 86 - 24.6593 15.1907 5.2134 -Times_New_Roman.ttf 11 i 13.2587 40.8093 87 Y 1.8541 41.7313 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 88 Q 0.6648 37.9372 51.1101 -Times_New_Roman.ttf 11 i 13.2587 40.8093 89 " 0.7785 14.9824 16.3814 -Times_New_Roman.ttf 11 i 13.2587 40.8093 90 ! 0.7204 5.2134 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 91 x 14.9135 28.4895 25.9686 -Times_New_Roman.ttf 11 i 13.2587 40.8093 92 ) 0.5242 15.8496 52.7368 -Times_New_Roman.ttf 11 i 13.2587 40.8093 93 = 15.2603 30.1743 12.0076 -Times_New_Roman.ttf 11 i 13.2587 40.8093 94 + 6.2924 30.3814 30.3814 -Times_New_Roman.ttf 11 i 13.2587 40.8093 95 X 1.8468 42.0000 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 96 » 13.7000 24.9427 27.1593 -Times_New_Roman.ttf 11 i 13.2587 40.8093 97 ' 0.7307 5.2134 16.3814 -Times_New_Roman.ttf 11 i 13.2587 40.8093 98 ¢ 3.3834 21.9459 47.5645 -Times_New_Roman.ttf 11 i 13.2587 40.8093 99 Z 1.8111 33.9535 38.9597 -Times_New_Roman.ttf 11 i 13.2587 40.8093 100 > 6.0700 30.8320 29.1907 -Times_New_Roman.ttf 11 i 13.2587 40.8093 101 ® 0.4777 40.3587 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 102 © 0.3976 40.3587 41.3411 -Times_New_Roman.ttf 11 i 13.2587 40.8093 103 ] 1.1862 12.6664 51.2372 -Times_New_Roman.ttf 11 i 13.2587 40.8093 104 é 0.9808 22.1278 41.0164 -Times_New_Roman.ttf 11 i 13.2587 40.8093 105 z 14.9807 23.5872 25.9686 -Times_New_Roman.ttf 11 i 13.2587 40.8093 106 _ 51.0142 30.0314 2.3814 -Times_New_Roman.ttf 11 i 13.2587 40.8093 107 ¥ 1.9835 31.4462 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 1 t 4.6330 16.5632 35.7376 -Times_New_Roman.ttf 12 1 15.9913 39.1026 2 h -1.4371 28.4494 40.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 3 a 12.0169 24.3008 28.3500 -Times_New_Roman.ttf 12 1 15.9913 39.1026 4 n 12.1279 28.4494 27.1593 -Times_New_Roman.ttf 12 1 15.9913 39.1026 5 P 0.1456 30.0347 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 6 o 12.1046 25.1680 28.3500 -Times_New_Roman.ttf 12 1 15.9913 39.1026 7 e 11.6023 22.1278 28.3500 -Times_New_Roman.ttf 12 1 15.9913 39.1026 8 : 12.1247 5.2134 28.3500 -Times_New_Roman.ttf 12 1 15.9913 39.1026 9 r 11.8516 19.2134 27.1593 -Times_New_Roman.ttf 12 1 15.9913 39.1026 10 l -1.5398 13.2587 40.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 11 i -1.5228 13.2587 40.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 12 1 -0.0188 15.9913 39.1026 -Times_New_Roman.ttf 12 1 15.9913 39.1026 13 | -1.8452 2.3814 53.1680 -Times_New_Roman.ttf 12 1 15.9913 39.1026 14 N 0.1659 43.0089 40.1504 -Times_New_Roman.ttf 12 1 15.9913 39.1026 15 f -1.6766 23.6262 40.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 16 g 12.0443 26.7087 39.8257 -Times_New_Roman.ttf 12 1 15.9913 39.1026 17 d -1.5683 27.3411 42.0000 -Times_New_Roman.ttf 12 1 15.9913 39.1026 18 W -0.0411 55.6923 40.1504 -Times_New_Roman.ttf 12 1 15.9913 39.1026 19 s 11.8094 17.7150 28.3500 -Times_New_Roman.ttf 12 1 15.9913 39.1026 20 c 11.9076 22.1278 28.3500 -Times_New_Roman.ttf 12 1 15.9913 39.1026 21 u 13.3133 28.6577 27.1593 -Times_New_Roman.ttf 12 1 15.9913 39.1026 22 3 0.0269 21.3876 39.1026 -Times_New_Roman.ttf 12 1 15.9913 39.1026 23 ~ 19.5773 29.8907 7.5948 -Times_New_Roman.ttf 12 1 15.9913 39.1026 24 # -1.7698 26.1769 40.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 25 O -1.1114 37.9372 41.3411 -Times_New_Roman.ttf 12 1 15.9913 39.1026 26 ` -0.1511 8.2536 9.4443 -Times_New_Roman.ttf 12 1 15.9913 39.1026 27 @ -1.7851 49.5948 54.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 28 F 0.2383 29.5407 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 29 S -0.8470 24.9597 41.5229 -Times_New_Roman.ttf 12 1 15.9913 39.1026 30 p 11.7847 26.9510 39.8257 -Times_New_Roman.ttf 12 1 15.9913 39.1026 31 “ -1.2413 21.7123 14.0000 -Times_New_Roman.ttf 12 1 15.9913 39.1026 32 % -0.8130 46.5375 41.3411 -Times_New_Roman.ttf 12 1 15.9913 39.1026 33 £ -0.3022 26.1504 40.2933 -Times_New_Roman.ttf 12 1 15.9913 39.1026 34 . 34.9098 5.2134 5.2134 -Times_New_Roman.ttf 12 1 15.9913 39.1026 35 2 0.0389 25.4757 39.1026 -Times_New_Roman.ttf 12 1 15.9913 39.1026 36 5 0.2418 22.0453 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 37 m 11.6023 43.6401 27.1593 -Times_New_Roman.ttf 12 1 15.9913 39.1026 38 V 0.1929 42.2071 40.1504 -Times_New_Roman.ttf 12 1 15.9913 39.1026 39 6 0.0111 24.6350 39.1026 -Times_New_Roman.ttf 12 1 15.9913 39.1026 40 w 13.0566 42.0012 27.1593 -Times_New_Roman.ttf 12 1 15.9913 39.1026 41 T 0.0062 32.2857 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 42 M 0.1856 50.7900 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 43 G -1.2532 40.3587 41.3411 -Times_New_Roman.ttf 12 1 15.9913 39.1026 44 b -1.4158 26.9510 42.0000 -Times_New_Roman.ttf 12 1 15.9852 39.1149 45 9 -0.1201 24.2671 39.1149 -Times_New_Roman.ttf 12 1 15.9852 39.1149 46 ; 11.8267 8.5769 37.1560 -Times_New_Roman.ttf 12 1 15.9913 39.1026 47 D 0.2258 39.4791 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 48 L 0.1739 33.1140 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 49 y 12.8074 29.1484 38.6350 -Times_New_Roman.ttf 12 1 15.9852 39.1149 50 ‘ -1.0496 8.5769 14.0000 -Times_New_Roman.ttf 12 1 15.9852 39.1149 51 \ -1.6949 16.8851 42.0000 -Times_New_Roman.ttf 12 1 15.9913 39.1026 52 R 0.1257 39.5192 38.9597 -Times_New_Roman.ttf 12 1 15.9852 39.1149 53 < 4.3972 30.8172 29.1949 -Times_New_Roman.ttf 12 1 15.9852 39.1149 54 4 -0.1701 25.4620 39.1149 -Times_New_Roman.ttf 12 1 15.9852 39.1149 55 8 0.2814 22.7514 39.1149 -Times_New_Roman.ttf 12 1 15.9852 39.1149 56 0 -0.2666 24.6301 39.1149 -Times_New_Roman.ttf 12 1 15.9913 39.1026 57 A -0.9732 42.0000 40.1504 -Times_New_Roman.ttf 12 1 15.9913 39.1026 58 E -0.0142 34.1229 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 59 B 0.1526 34.7552 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 60 v 13.2953 29.7237 27.1593 -Times_New_Roman.ttf 12 1 15.9913 39.1026 61 k -1.6540 28.4929 40.8093 -Times_New_Roman.ttf 12 1 15.9913 39.1026 62 J 0.3125 20.8981 40.1504 -Times_New_Roman.ttf 12 1 15.9913 39.1026 63 U -0.0300 40.9787 40.1504 -Times_New_Roman.ttf 12 1 15.9913 39.1026 64 j -1.6605 16.0906 53.4757 -Times_New_Roman.ttf 12 1 15.9852 39.1149 65 ( -1.3517 15.8383 52.6957 -Times_New_Roman.ttf 12 1 15.9852 39.1149 66 7 0.0712 25.4883 38.9668 -Times_New_Roman.ttf 12 1 15.9852 39.1149 67 § -0.4172 20.6180 50.9240 -Times_New_Roman.ttf 12 1 15.9852 39.1149 68 $ -2.9920 23.6237 45.6650 -Times_New_Roman.ttf 12 1 15.9852 39.1149 69 € -0.0206 29.1949 39.1149 -Times_New_Roman.ttf 12 1 15.9852 39.1149 70 / -1.8338 17.5847 42.0000 -Times_New_Roman.ttf 12 1 15.9913 39.1026 71 C -1.1772 34.5469 41.3411 -Times_New_Roman.ttf 12 1 15.9852 39.1149 72 * -2.0216 20.0652 24.4140 -Times_New_Roman.ttf 12 1 15.9852 39.1149 73 ” -1.1461 21.5302 14.0000 -Times_New_Roman.ttf 12 1 15.9852 39.1149 74 ? -1.0947 19.9342 41.3566 -Times_New_Roman.ttf 12 1 15.9852 39.1149 75 { -1.4189 17.0320 52.6957 -Times_New_Roman.ttf 12 1 15.9852 39.1149 76 } -1.5216 17.0320 52.6957 -Times_New_Roman.ttf 12 1 15.9852 39.1149 77 , 35.2382 8.5769 14.0000 -Times_New_Roman.ttf 12 1 15.9913 39.1026 78 I 0.1345 16.7326 38.9597 -Times_New_Roman.ttf 12 1 15.9852 39.1149 79 ° -1.1453 17.5847 17.5847 -Times_New_Roman.ttf 12 1 15.9913 39.1026 80 K 0.2230 41.1593 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 81 H 0.4620 40.8918 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 82 q 12.2333 26.9510 39.8257 -Times_New_Roman.ttf 12 1 15.9852 39.1149 83 & -1.0737 41.3566 41.3566 -Times_New_Roman.ttf 12 1 15.9852 39.1149 84 ’ -1.1259 8.5769 14.0000 -Times_New_Roman.ttf 12 1 15.9852 39.1149 85 [ -0.5507 12.6569 51.2203 -Times_New_Roman.ttf 12 1 15.9852 39.1149 86 - 22.8580 15.1949 5.2070 -Times_New_Roman.ttf 12 1 15.9913 39.1026 87 Y 0.1429 41.7313 38.9597 -Times_New_Roman.ttf 12 1 15.9913 39.1026 88 Q -0.9978 37.9372 51.1101 -Times_New_Roman.ttf 12 1 15.9852 39.1149 89 " -1.0439 14.9789 16.3898 -Times_New_Roman.ttf 12 1 15.9852 39.1149 90 ! -0.9590 5.2070 41.3566 -Times_New_Roman.ttf 12 1 15.9913 39.1026 91 x 13.0864 28.4895 25.9686 -Times_New_Roman.ttf 12 1 15.9852 39.1149 92 ) -1.3671 15.8383 52.6957 -Times_New_Roman.ttf 12 1 15.9852 39.1149 93 = 13.2990 30.1750 12.0135 -Times_New_Roman.ttf 12 1 15.9852 39.1149 94 + 4.6006 30.3898 30.3898 -Times_New_Roman.ttf 12 1 15.9913 39.1026 95 X 0.1071 42.0000 38.9597 -Times_New_Roman.ttf 12 1 15.9852 39.1149 96 » 11.8976 24.9093 27.1680 -Times_New_Roman.ttf 12 1 15.9852 39.1149 97 ' -1.1871 5.2070 16.3898 -Times_New_Roman.ttf 12 1 15.9852 39.1149 98 ¢ 1.3304 21.9610 47.5712 -Times_New_Roman.ttf 12 1 15.9913 39.1026 99 Z 0.1268 33.9535 38.9597 -Times_New_Roman.ttf 12 1 15.9852 39.1149 100 > 4.2437 30.8172 29.1949 -Times_New_Roman.ttf 12 1 15.9852 39.1149 101 ® -0.9104 40.3777 41.3566 -Times_New_Roman.ttf 12 1 15.9852 39.1149 102 © -0.9191 40.3777 41.3566 -Times_New_Roman.ttf 12 1 15.9852 39.1149 103 ] -0.7821 12.6569 51.2203 -Times_New_Roman.ttf 12 1 15.9913 39.1026 104 é -0.9646 22.1278 41.0164 -Times_New_Roman.ttf 12 1 15.9913 39.1026 105 z 13.2405 23.5872 25.9686 -Times_New_Roman.ttf 12 1 15.9852 39.1149 106 _ 49.2802 30.0269 2.3898 -Times_New_Roman.ttf 12 1 15.9852 39.1149 107 ¥ 0.1654 31.4941 38.9668 -Times_New_Roman.ttf 13 | 2.3814 53.1680 1 t 6.2624 16.5632 35.7376 -Times_New_Roman.ttf 13 | 2.3814 53.1680 2 h -0.0500 28.4494 40.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 3 a 13.7357 24.3008 28.3500 -Times_New_Roman.ttf 13 | 2.3814 53.1680 4 n 13.6500 28.4494 27.1593 -Times_New_Roman.ttf 13 | 2.3814 53.1680 5 P 1.7611 30.0347 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 6 o 13.6500 25.1680 28.3500 -Times_New_Roman.ttf 13 | 2.3814 53.1680 7 e 13.5615 22.1278 28.3500 -Times_New_Roman.ttf 13 | 2.3814 53.1680 8 : 13.6500 5.2134 28.3500 -Times_New_Roman.ttf 13 | 2.3814 53.1680 9 r 13.6000 19.2134 27.1593 -Times_New_Roman.ttf 13 | 2.3814 53.1680 10 l 0.0143 13.2587 40.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 11 i 0.1038 13.2587 40.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 12 1 1.7067 15.9913 39.1026 -Times_New_Roman.ttf 13 | 2.3814 53.1680 13 | 0.0417 2.3814 53.1680 -Times_New_Roman.ttf 13 | 2.3814 53.1680 14 N 1.8496 43.0089 40.1504 -Times_New_Roman.ttf 13 | 2.3814 53.1680 15 f -0.0885 23.6262 40.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 16 g 13.6500 26.7087 39.8257 -Times_New_Roman.ttf 13 | 2.3814 53.1680 17 d 0.0500 27.3411 42.0000 -Times_New_Roman.ttf 13 | 2.3814 53.1680 18 W 1.8496 55.6923 40.1504 -Times_New_Roman.ttf 13 | 2.3814 53.1680 19 s 13.7696 17.7150 28.3500 -Times_New_Roman.ttf 13 | 2.3814 53.1680 20 c 13.6500 22.1278 28.3500 -Times_New_Roman.ttf 13 | 2.3814 53.1680 21 u 14.8472 28.6577 27.1593 -Times_New_Roman.ttf 13 | 2.3814 53.1680 22 3 1.5756 21.3876 39.1026 -Times_New_Roman.ttf 13 | 2.3814 53.1680 23 ~ 21.4688 29.8907 7.5948 -Times_New_Roman.ttf 13 | 2.3814 53.1680 24 # -0.1575 26.1769 40.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 25 O 0.8549 37.9372 41.3411 -Times_New_Roman.ttf 13 | 2.3814 53.1680 26 ` 1.6483 8.2536 9.4443 -Times_New_Roman.ttf 13 | 2.3814 53.1680 27 @ 0.1113 49.5948 54.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 28 F 1.8496 29.5407 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 29 S 0.3951 24.9597 41.5229 -Times_New_Roman.ttf 13 | 2.3814 53.1680 30 p 13.6500 26.9510 39.8257 -Times_New_Roman.ttf 13 | 2.3814 53.1680 31 “ 0.6523 21.7123 14.0000 -Times_New_Roman.ttf 13 | 2.3814 53.1680 32 % 0.5788 46.5375 41.3411 -Times_New_Roman.ttf 13 | 2.3814 53.1680 33 £ 1.7924 26.1504 40.2933 -Times_New_Roman.ttf 13 | 2.3814 53.1680 34 . 36.8713 5.2134 5.2134 -Times_New_Roman.ttf 13 | 2.3814 53.1680 35 2 1.7067 25.4757 39.1026 -Times_New_Roman.ttf 13 | 2.3814 53.1680 36 5 1.9682 22.0453 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 37 m 13.7000 43.6401 27.1593 -Times_New_Roman.ttf 13 | 2.3814 53.1680 38 V 1.8079 42.2071 40.1504 -Times_New_Roman.ttf 13 | 2.3814 53.1680 39 6 1.6293 24.6350 39.1026 -Times_New_Roman.ttf 13 | 2.3814 53.1680 40 w 14.9181 42.0012 27.1593 -Times_New_Roman.ttf 13 | 2.3814 53.1680 41 T 1.8496 32.2857 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 42 M 1.8496 50.7900 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 43 G 0.7589 40.3587 41.3411 -Times_New_Roman.ttf 13 | 2.3814 53.1680 44 b 0.0000 26.9510 42.0000 -Times_New_Roman.ttf 13 | 2.3898 53.1828 45 9 1.6071 24.2671 39.1149 -Times_New_Roman.ttf 13 | 2.3898 53.1828 46 ; 13.5500 8.5769 37.1560 -Times_New_Roman.ttf 13 | 2.3814 53.1680 47 D 1.7657 39.4791 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 48 L 1.8496 33.1140 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 49 y 14.8407 29.1484 38.6350 -Times_New_Roman.ttf 13 | 2.3898 53.1828 50 ‘ 0.5527 8.5769 14.0000 -Times_New_Roman.ttf 13 | 2.3898 53.1828 51 \ 0.0086 16.8851 42.0000 -Times_New_Roman.ttf 13 | 2.3814 53.1680 52 R 2.0081 39.5192 38.9597 -Times_New_Roman.ttf 13 | 2.3898 53.1828 53 < 6.1882 30.8172 29.1949 -Times_New_Roman.ttf 13 | 2.3898 53.1828 54 4 1.6902 25.4620 39.1149 -Times_New_Roman.ttf 13 | 2.3898 53.1828 55 8 1.7733 22.7514 39.1149 -Times_New_Roman.ttf 13 | 2.3898 53.1828 56 0 1.5984 24.6301 39.1149 -Times_New_Roman.ttf 13 | 2.3814 53.1680 57 A 0.6589 42.0000 40.1504 -Times_New_Roman.ttf 13 | 2.3814 53.1680 58 E 1.8496 34.1229 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 59 B 1.8496 34.7552 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 60 v 14.8407 29.7237 27.1593 -Times_New_Roman.ttf 13 | 2.3814 53.1680 61 k 0.1186 28.4929 40.8093 -Times_New_Roman.ttf 13 | 2.3814 53.1680 62 J 1.8496 20.8981 40.1504 -Times_New_Roman.ttf 13 | 2.3814 53.1680 63 U 1.8496 40.9787 40.1504 -Times_New_Roman.ttf 13 | 2.3814 53.1680 64 j -0.0801 16.0906 53.4757 -Times_New_Roman.ttf 13 | 2.3898 53.1828 65 ( 0.2712 15.8383 52.6957 -Times_New_Roman.ttf 13 | 2.3898 53.1828 66 7 1.7379 25.4883 38.9668 -Times_New_Roman.ttf 13 | 2.3898 53.1828 67 § 1.4272 20.6180 50.9240 -Times_New_Roman.ttf 13 | 2.3898 53.1828 68 $ -1.0324 23.6237 45.6650 -Times_New_Roman.ttf 13 | 2.3898 53.1828 69 € 1.6902 29.1949 39.1149 -Times_New_Roman.ttf 13 | 2.3898 53.1828 70 / 0.1644 17.5847 42.0000 -Times_New_Roman.ttf 13 | 2.3814 53.1680 71 C 0.4549 34.5469 41.3411 -Times_New_Roman.ttf 13 | 2.3898 53.1828 72 * 0.0000 20.0652 24.4140 -Times_New_Roman.ttf 13 | 2.3898 53.1828 73 ” 0.6718 21.5302 14.0000 -Times_New_Roman.ttf 13 | 2.3898 53.1828 74 ? 0.6434 19.9342 41.3566 -Times_New_Roman.ttf 13 | 2.3898 53.1828 75 { 0.5349 17.0320 52.6957 -Times_New_Roman.ttf 13 | 2.3898 53.1828 76 } 0.3702 17.0320 52.6957 -Times_New_Roman.ttf 13 | 2.3898 53.1828 77 , 36.6522 8.5769 14.0000 -Times_New_Roman.ttf 13 | 2.3814 53.1680 78 I 1.7695 16.7326 38.9597 -Times_New_Roman.ttf 13 | 2.3898 53.1828 79 ° 0.7207 17.5847 17.5847 -Times_New_Roman.ttf 13 | 2.3814 53.1680 80 K 1.7722 41.1593 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 81 H 1.6722 40.8918 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 82 q 13.6500 26.9510 39.8257 -Times_New_Roman.ttf 13 | 2.3898 53.1828 83 & 0.6064 41.3566 41.3566 -Times_New_Roman.ttf 13 | 2.3898 53.1828 84 ’ 0.4714 8.5769 14.0000 -Times_New_Roman.ttf 13 | 2.3898 53.1828 85 [ 1.1949 12.6569 51.2203 -Times_New_Roman.ttf 13 | 2.3898 53.1828 86 - 24.6313 15.1949 5.2070 -Times_New_Roman.ttf 13 | 2.3814 53.1680 87 Y 1.7722 41.7313 38.9597 -Times_New_Roman.ttf 13 | 2.3814 53.1680 88 Q 0.6645 37.9372 51.1101 -Times_New_Roman.ttf 13 | 2.3898 53.1828 89 " 0.6002 14.9789 16.3898 -Times_New_Roman.ttf 13 | 2.3898 53.1828 90 ! 0.7265 5.2070 41.3566 -Times_New_Roman.ttf 13 | 2.3814 53.1680 91 x 14.7939 28.4895 25.9686 -Times_New_Roman.ttf 13 | 2.3898 53.1828 92 ) 0.3111 15.8383 52.6957 -Times_New_Roman.ttf 13 | 2.3898 53.1828 93 = 15.1743 30.1750 12.0135 -Times_New_Roman.ttf 13 | 2.3898 53.1828 94 + 6.2702 30.3898 30.3898 -Times_New_Roman.ttf 13 | 2.3814 53.1680 95 X 1.7541 42.0000 38.9597 -Times_New_Roman.ttf 13 | 2.3898 53.1828 96 » 13.6370 24.9093 27.1680 -Times_New_Roman.ttf 13 | 2.3898 53.1828 97 ' 0.8115 5.2070 16.3898 -Times_New_Roman.ttf 13 | 2.3898 53.1828 98 ¢ 3.2218 21.9610 47.5712 -Times_New_Roman.ttf 13 | 2.3814 53.1680 99 Z 2.0136 33.9535 38.9597 -Times_New_Roman.ttf 13 | 2.3898 53.1828 100 > 6.0151 30.8172 29.1949 -Times_New_Roman.ttf 13 | 2.3898 53.1828 101 ® 0.5915 40.3777 41.3566 -Times_New_Roman.ttf 13 | 2.3898 53.1828 102 © 0.6434 40.3777 41.3566 -Times_New_Roman.ttf 13 | 2.3898 53.1828 103 ] 1.1118 12.6569 51.2203 -Times_New_Roman.ttf 13 | 2.3814 53.1680 104 é 0.9609 22.1278 41.0164 -Times_New_Roman.ttf 13 | 2.3814 53.1680 105 z 14.9292 23.5872 25.9686 -Times_New_Roman.ttf 13 | 2.3898 53.1828 106 _ 51.0722 30.0269 2.3898 -Times_New_Roman.ttf 13 | 2.3898 53.1828 107 ¥ 1.6515 31.4941 38.9668 -Times_New_Roman.ttf 14 N 43.0089 40.1504 1 t 4.2900 16.5632 35.7376 -Times_New_Roman.ttf 14 N 43.0089 40.1504 2 h -1.5582 28.4494 40.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 3 a 11.7639 24.3008 28.3500 -Times_New_Roman.ttf 14 N 43.0089 40.1504 4 n 12.2418 28.4494 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 5 P -0.1650 30.0347 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 6 o 11.8875 25.1680 28.3500 -Times_New_Roman.ttf 14 N 43.0089 40.1504 7 e 11.8550 22.1278 28.3500 -Times_New_Roman.ttf 14 N 43.0089 40.1504 8 : 11.8889 5.2134 28.3500 -Times_New_Roman.ttf 14 N 43.0089 40.1504 9 r 11.9163 19.2134 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 10 l -1.7267 13.2587 40.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 11 i -1.9730 13.2587 40.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 12 1 -0.1793 15.9913 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 13 | -1.8639 2.3814 53.1680 -Times_New_Roman.ttf 14 N 43.0089 40.1504 14 N 0.0045 43.0089 40.1504 -Times_New_Roman.ttf 14 N 43.0089 40.1504 15 f -2.0510 23.6262 40.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 16 g 11.7949 26.7087 39.8257 -Times_New_Roman.ttf 14 N 43.0089 40.1504 17 d -1.8468 27.3411 42.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 18 W -0.0362 55.6923 40.1504 -Times_New_Roman.ttf 14 N 43.0089 40.1504 19 s 11.9135 17.7150 28.3500 -Times_New_Roman.ttf 14 N 43.0089 40.1504 20 c 11.9700 22.1278 28.3500 -Times_New_Roman.ttf 14 N 43.0089 40.1504 21 u 12.9957 28.6577 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 22 3 -0.1211 21.3876 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 23 ~ 19.4069 29.8907 7.5948 -Times_New_Roman.ttf 14 N 43.0089 40.1504 24 # -2.1598 26.1769 40.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 25 O -1.1723 37.9372 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 26 ` -0.2953 8.2536 9.4443 -Times_New_Roman.ttf 14 N 43.0089 40.1504 27 @ -1.5705 49.5948 54.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 28 F 0.3424 29.5407 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 29 S -1.3874 24.9597 41.5229 -Times_New_Roman.ttf 14 N 43.0089 40.1504 30 p 12.0561 26.9510 39.8257 -Times_New_Roman.ttf 14 N 43.0089 40.1504 31 “ -1.2694 21.7123 14.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 32 % -1.3996 46.5375 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 33 £ -0.0682 26.1504 40.2933 -Times_New_Roman.ttf 14 N 43.0089 40.1504 34 . 34.8898 5.2134 5.2134 -Times_New_Roman.ttf 14 N 43.0089 40.1504 35 2 -0.1170 25.4757 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 36 5 -0.2784 22.0453 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 37 m 11.7875 43.6401 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 38 V 0.3306 42.2071 40.1504 -Times_New_Roman.ttf 14 N 43.0089 40.1504 39 6 -0.1057 24.6350 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 40 w 13.1384 42.0012 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 41 T 0.3206 32.2857 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 42 M -0.0952 50.7900 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 43 G -1.2191 40.3587 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 44 b -1.7471 26.9510 42.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 45 9 -0.0813 24.2850 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 46 ; 11.8948 8.5783 37.1366 -Times_New_Roman.ttf 14 N 43.0089 40.1504 47 D -0.0752 39.4791 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 48 L -0.0264 33.1140 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 49 y 13.1398 29.1484 38.6350 -Times_New_Roman.ttf 14 N 43.0089 40.1504 50 ‘ -1.5628 8.5783 14.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 51 \ -1.6567 16.8974 42.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 52 R -0.0718 39.5192 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 53 < 4.3159 30.8320 29.1907 -Times_New_Roman.ttf 14 N 43.0089 40.1504 54 4 -0.3504 25.4757 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 55 8 -0.1929 22.7465 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 56 0 -0.2986 24.6350 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 57 A -1.3312 42.0000 40.1504 -Times_New_Roman.ttf 14 N 43.0089 40.1504 58 E 0.0857 34.1229 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 59 B 0.1228 34.7552 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 60 v 12.9495 29.7237 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 61 k -1.7840 28.4929 40.8093 -Times_New_Roman.ttf 14 N 43.0089 40.1504 62 J 0.0008 20.8981 40.1504 -Times_New_Roman.ttf 14 N 43.0089 40.1504 63 U 0.0857 40.9787 40.1504 -Times_New_Roman.ttf 14 N 43.0089 40.1504 64 j -2.1799 16.0906 53.4757 -Times_New_Roman.ttf 14 N 43.0089 40.1504 65 ( -1.4213 15.8496 52.7368 -Times_New_Roman.ttf 14 N 43.0089 40.1504 66 7 -0.0608 25.5011 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 67 § -0.2464 20.6124 50.9515 -Times_New_Roman.ttf 14 N 43.0089 40.1504 68 $ -2.6070 23.6262 45.6495 -Times_New_Roman.ttf 14 N 43.0089 40.1504 69 € 0.1230 29.1907 39.1026 -Times_New_Roman.ttf 14 N 43.0089 40.1504 70 / -1.6466 17.5721 42.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 71 C -1.2018 34.5469 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 72 * -1.7523 20.0794 24.4267 -Times_New_Roman.ttf 14 N 43.0089 40.1504 73 ” -1.1435 21.5305 14.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 74 ? -1.0007 19.9145 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 75 { -1.6133 17.0391 52.7368 -Times_New_Roman.ttf 14 N 43.0089 40.1504 76 } -1.7420 17.0391 52.7368 -Times_New_Roman.ttf 14 N 43.0089 40.1504 77 , 34.7954 8.5783 14.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 78 I -0.3166 16.7326 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 79 ° -0.9739 17.5721 17.5721 -Times_New_Roman.ttf 14 N 43.0089 40.1504 80 K -0.3656 41.1593 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 81 H -0.1812 40.8918 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 82 q 11.8518 26.9510 39.8257 -Times_New_Roman.ttf 14 N 43.0089 40.1504 83 & -1.0731 41.3411 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 84 ’ -1.0300 8.5783 14.0000 -Times_New_Roman.ttf 14 N 43.0089 40.1504 85 [ -0.4158 12.6664 51.2372 -Times_New_Roman.ttf 14 N 43.0089 40.1504 86 - 22.5425 15.1907 5.2134 -Times_New_Roman.ttf 14 N 43.0089 40.1504 87 Y 0.0982 41.7313 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 88 Q -1.2187 37.9372 51.1101 -Times_New_Roman.ttf 14 N 43.0089 40.1504 89 " -1.2022 14.9824 16.3814 -Times_New_Roman.ttf 14 N 43.0089 40.1504 90 ! -1.0540 5.2134 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 91 x 13.1278 28.4895 25.9686 -Times_New_Roman.ttf 14 N 43.0089 40.1504 92 ) -1.1589 15.8496 52.7368 -Times_New_Roman.ttf 14 N 43.0089 40.1504 93 = 12.9854 30.1743 12.0076 -Times_New_Roman.ttf 14 N 43.0089 40.1504 94 + 4.3830 30.3814 30.3814 -Times_New_Roman.ttf 14 N 43.0089 40.1504 95 X -0.0575 42.0000 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 96 » 12.2359 24.9427 27.1593 -Times_New_Roman.ttf 14 N 43.0089 40.1504 97 ' -0.9962 5.2134 16.3814 -Times_New_Roman.ttf 14 N 43.0089 40.1504 98 ¢ 1.3632 21.9459 47.5645 -Times_New_Roman.ttf 14 N 43.0089 40.1504 99 Z -0.1492 33.9535 38.9597 -Times_New_Roman.ttf 14 N 43.0089 40.1504 100 > 4.0067 30.8320 29.1907 -Times_New_Roman.ttf 14 N 43.0089 40.1504 101 ® -1.2987 40.3587 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 102 © -1.0880 40.3587 41.3411 -Times_New_Roman.ttf 14 N 43.0089 40.1504 103 ] -0.7473 12.6664 51.2372 -Times_New_Roman.ttf 14 N 43.0089 40.1504 104 é -0.8650 22.1278 41.0164 -Times_New_Roman.ttf 14 N 43.0089 40.1504 105 z 12.8235 23.5872 25.9686 -Times_New_Roman.ttf 14 N 43.0089 40.1504 106 _ 49.0509 30.0314 2.3814 -Times_New_Roman.ttf 14 N 43.0089 40.1504 107 ¥ -0.0342 31.4462 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 1 t 6.1368 16.5632 35.7376 -Times_New_Roman.ttf 15 f 23.6262 40.8093 2 h -0.0462 28.4494 40.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 3 a 13.5814 24.3008 28.3500 -Times_New_Roman.ttf 15 f 23.6262 40.8093 4 n 13.5726 28.4494 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 5 P 1.8041 30.0347 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 6 o 13.6810 25.1680 28.3500 -Times_New_Roman.ttf 15 f 23.6262 40.8093 7 e 13.7368 22.1278 28.3500 -Times_New_Roman.ttf 15 f 23.6262 40.8093 8 : 13.7686 5.2134 28.3500 -Times_New_Roman.ttf 15 f 23.6262 40.8093 9 r 13.7339 19.2134 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 10 l 0.0005 13.2587 40.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 11 i 0.3442 13.2587 40.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 12 1 1.4042 15.9913 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 13 | 0.0347 2.3814 53.1680 -Times_New_Roman.ttf 15 f 23.6262 40.8093 14 N 1.7880 43.0089 40.1504 -Times_New_Roman.ttf 15 f 23.6262 40.8093 15 f 0.1801 23.6262 40.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 16 g 13.6885 26.7087 39.8257 -Times_New_Roman.ttf 15 f 23.6262 40.8093 17 d 0.0199 27.3411 42.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 18 W 1.7695 55.6923 40.1504 -Times_New_Roman.ttf 15 f 23.6262 40.8093 19 s 13.6000 17.7150 28.3500 -Times_New_Roman.ttf 15 f 23.6262 40.8093 20 c 13.8005 22.1278 28.3500 -Times_New_Roman.ttf 15 f 23.6262 40.8093 21 u 14.5364 28.6577 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 22 3 1.6605 21.3876 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 23 ~ 21.2625 29.8907 7.5948 -Times_New_Roman.ttf 15 f 23.6262 40.8093 24 # -0.0857 26.1769 40.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 25 O 0.5134 37.9372 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 26 ` 1.5020 8.2536 9.4443 -Times_New_Roman.ttf 15 f 23.6262 40.8093 27 @ 0.3035 49.5948 54.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 28 F 1.5988 29.5407 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 29 S 0.4854 24.9597 41.5229 -Times_New_Roman.ttf 15 f 23.6262 40.8093 30 p 13.7525 26.9510 39.8257 -Times_New_Roman.ttf 15 f 23.6262 40.8093 31 “ 0.7858 21.7123 14.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 32 % 0.7938 46.5375 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 33 £ 1.7029 26.1504 40.2933 -Times_New_Roman.ttf 15 f 23.6262 40.8093 34 . 36.7283 5.2134 5.2134 -Times_New_Roman.ttf 15 f 23.6262 40.8093 35 2 1.5520 25.4757 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 36 5 1.8843 22.0453 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 37 m 13.5615 43.6401 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 38 V 1.7611 42.2071 40.1504 -Times_New_Roman.ttf 15 f 23.6262 40.8093 39 6 1.6683 24.6350 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 40 w 14.8106 42.0012 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 41 T 1.9765 32.2857 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 42 M 2.2378 50.7900 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 43 G 0.5014 40.3587 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 44 b 0.0912 26.9510 42.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 45 9 1.8291 24.2850 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 46 ; 13.6621 8.5783 37.1366 -Times_New_Roman.ttf 15 f 23.6262 40.8093 47 D 1.6837 39.4791 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 48 L 1.9909 33.1140 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 49 y 15.0033 29.1484 38.6350 -Times_New_Roman.ttf 15 f 23.6262 40.8093 50 ‘ 0.6589 8.5783 14.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 51 \ 0.0701 16.8974 42.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 52 R 1.6921 39.5192 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 53 < 6.3660 30.8320 29.1907 -Times_New_Roman.ttf 15 f 23.6262 40.8093 54 4 1.7869 25.4757 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 55 8 1.7040 22.7465 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 56 0 1.3078 24.6350 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 57 A 0.6672 42.0000 40.1504 -Times_New_Roman.ttf 15 f 23.6262 40.8093 58 E 1.5509 34.1229 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 59 B 1.8514 34.7552 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 60 v 14.6299 29.7237 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 61 k -0.2658 28.4929 40.8093 -Times_New_Roman.ttf 15 f 23.6262 40.8093 62 J 1.7684 20.8981 40.1504 -Times_New_Roman.ttf 15 f 23.6262 40.8093 63 U 1.9843 40.9787 40.1504 -Times_New_Roman.ttf 15 f 23.6262 40.8093 64 j -0.0385 16.0906 53.4757 -Times_New_Roman.ttf 15 f 23.6262 40.8093 65 ( 0.3430 15.8496 52.7368 -Times_New_Roman.ttf 15 f 23.6262 40.8093 66 7 2.0297 25.5011 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 67 § 1.0227 20.6124 50.9515 -Times_New_Roman.ttf 15 f 23.6262 40.8093 68 $ -1.0368 23.6262 45.6495 -Times_New_Roman.ttf 15 f 23.6262 40.8093 69 € 1.7751 29.1907 39.1026 -Times_New_Roman.ttf 15 f 23.6262 40.8093 70 / 0.1043 17.5721 42.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 71 C 0.6732 34.5469 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 72 * -0.0357 20.0794 24.4267 -Times_New_Roman.ttf 15 f 23.6262 40.8093 73 ” 0.6556 21.5305 14.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 74 ? 1.0038 19.9145 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 75 { 0.3483 17.0391 52.7368 -Times_New_Roman.ttf 15 f 23.6262 40.8093 76 } 0.3912 17.0391 52.7368 -Times_New_Roman.ttf 15 f 23.6262 40.8093 77 , 36.8329 8.5783 14.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 78 I 1.8353 16.7326 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 79 ° 0.5111 17.5721 17.5721 -Times_New_Roman.ttf 15 f 23.6262 40.8093 80 K 1.6601 41.1593 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 81 H 1.8468 40.8918 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 82 q 13.4887 26.9510 39.8257 -Times_New_Roman.ttf 15 f 23.6262 40.8093 83 & 0.6116 41.3411 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 84 ’ 0.8463 8.5783 14.0000 -Times_New_Roman.ttf 15 f 23.6262 40.8093 85 [ 0.8326 12.6664 51.2372 -Times_New_Roman.ttf 15 f 23.6262 40.8093 86 - 24.6737 15.1907 5.2134 -Times_New_Roman.ttf 15 f 23.6262 40.8093 87 Y 2.1154 41.7313 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 88 Q 0.5514 37.9372 51.1101 -Times_New_Roman.ttf 15 f 23.6262 40.8093 89 " 0.6194 14.9824 16.3814 -Times_New_Roman.ttf 15 f 23.6262 40.8093 90 ! 0.5938 5.2134 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 91 x 14.8522 28.4895 25.9686 -Times_New_Roman.ttf 15 f 23.6262 40.8093 92 ) 0.3500 15.8496 52.7368 -Times_New_Roman.ttf 15 f 23.6262 40.8093 93 = 15.0001 30.1743 12.0076 -Times_New_Roman.ttf 15 f 23.6262 40.8093 94 + 6.1969 30.3814 30.3814 -Times_New_Roman.ttf 15 f 23.6262 40.8093 95 X 1.7073 42.0000 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 96 » 13.5269 24.9427 27.1593 -Times_New_Roman.ttf 15 f 23.6262 40.8093 97 ' 0.6561 5.2134 16.3814 -Times_New_Roman.ttf 15 f 23.6262 40.8093 98 ¢ 3.4872 21.9459 47.5645 -Times_New_Roman.ttf 15 f 23.6262 40.8093 99 Z 1.9440 33.9535 38.9597 -Times_New_Roman.ttf 15 f 23.6262 40.8093 100 > 6.1727 30.8320 29.1907 -Times_New_Roman.ttf 15 f 23.6262 40.8093 101 ® 0.5732 40.3587 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 102 © 0.4820 40.3587 41.3411 -Times_New_Roman.ttf 15 f 23.6262 40.8093 103 ] 1.0990 12.6664 51.2372 -Times_New_Roman.ttf 15 f 23.6262 40.8093 104 é 0.9836 22.1278 41.0164 -Times_New_Roman.ttf 15 f 23.6262 40.8093 105 z 14.8962 23.5872 25.9686 -Times_New_Roman.ttf 15 f 23.6262 40.8093 106 _ 51.3983 30.0314 2.3814 -Times_New_Roman.ttf 15 f 23.6262 40.8093 107 ¥ 1.6828 31.4462 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 1 t -7.3876 16.5632 35.7376 -Times_New_Roman.ttf 16 g 26.7087 39.8257 2 h -13.8224 28.4494 40.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 3 a 0.0640 24.3008 28.3500 -Times_New_Roman.ttf 16 g 26.7087 39.8257 4 n -0.1038 28.4494 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 5 P -11.9722 30.0347 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 6 o 0.3212 25.1680 28.3500 -Times_New_Roman.ttf 16 g 26.7087 39.8257 7 e -0.1780 22.1278 28.3500 -Times_New_Roman.ttf 16 g 26.7087 39.8257 8 : -0.0056 5.2134 28.3500 -Times_New_Roman.ttf 16 g 26.7087 39.8257 9 r 0.0792 19.2134 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 10 l -13.6427 13.2587 40.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 11 i -13.8887 13.2587 40.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 12 1 -12.0689 15.9913 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 13 | -13.8231 2.3814 53.1680 -Times_New_Roman.ttf 16 g 26.7087 39.8257 14 N -11.6674 43.0089 40.1504 -Times_New_Roman.ttf 16 g 26.7087 39.8257 15 f -13.3860 23.6262 40.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 16 g -0.1407 26.7087 39.8257 -Times_New_Roman.ttf 16 g 26.7087 39.8257 17 d -13.6615 27.3411 42.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 18 W -11.7133 55.6923 40.1504 -Times_New_Roman.ttf 16 g 26.7087 39.8257 19 s 0.2282 17.7150 28.3500 -Times_New_Roman.ttf 16 g 26.7087 39.8257 20 c -0.0708 22.1278 28.3500 -Times_New_Roman.ttf 16 g 26.7087 39.8257 21 u 1.1550 28.6577 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 22 3 -12.0377 21.3876 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 23 ~ 8.0290 29.8907 7.5948 -Times_New_Roman.ttf 16 g 26.7087 39.8257 24 # -13.6538 26.1769 40.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 25 O -12.9921 37.9372 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 26 ` -11.9691 8.2536 9.4443 -Times_New_Roman.ttf 16 g 26.7087 39.8257 27 @ -13.6927 49.5948 54.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 28 F -11.6600 29.5407 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 29 S -13.0767 24.9597 41.5229 -Times_New_Roman.ttf 16 g 26.7087 39.8257 30 p 0.0885 26.9510 39.8257 -Times_New_Roman.ttf 16 g 26.7087 39.8257 31 “ -12.7655 21.7123 14.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 32 % -13.0449 46.5375 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 33 £ -11.7917 26.1504 40.2933 -Times_New_Roman.ttf 16 g 26.7087 39.8257 34 . 23.0821 5.2134 5.2134 -Times_New_Roman.ttf 16 g 26.7087 39.8257 35 2 -11.7538 25.4757 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 36 5 -11.7346 22.0453 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 37 m 0.1038 43.6401 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 38 V -11.7692 42.2071 40.1504 -Times_New_Roman.ttf 16 g 26.7087 39.8257 39 6 -11.8413 24.6350 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 40 w 0.9909 42.0012 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 41 T -11.8004 32.2857 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 42 M -11.6391 50.7900 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 43 G -13.0730 40.3587 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 44 b -13.5013 26.9510 42.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 45 9 -12.0480 24.2850 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 46 ; 0.0362 8.5783 37.1366 -Times_New_Roman.ttf 16 g 26.7087 39.8257 47 D -11.9298 39.4791 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 48 L -12.0117 33.1140 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 49 y 1.1528 29.1484 38.6350 -Times_New_Roman.ttf 16 g 26.7087 39.8257 50 ‘ -13.0285 8.5783 14.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 51 \ -13.7312 16.8974 42.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 52 R -11.7620 39.5192 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 53 < -7.5350 30.8320 29.1907 -Times_New_Roman.ttf 16 g 26.7087 39.8257 54 4 -12.0355 25.4757 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 55 8 -12.0290 22.7465 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 56 0 -11.9807 24.6350 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 57 A -13.1129 42.0000 40.1504 -Times_New_Roman.ttf 16 g 26.7087 39.8257 58 E -12.0381 34.1229 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 59 B -11.6012 34.7552 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 60 v 1.1907 29.7237 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 61 k -13.4643 28.4929 40.8093 -Times_New_Roman.ttf 16 g 26.7087 39.8257 62 J -11.8021 20.8981 40.1504 -Times_New_Roman.ttf 16 g 26.7087 39.8257 63 U -11.8805 40.9787 40.1504 -Times_New_Roman.ttf 16 g 26.7087 39.8257 64 j -13.5688 16.0906 53.4757 -Times_New_Roman.ttf 16 g 26.7087 39.8257 65 ( -13.2199 15.8496 52.7368 -Times_New_Roman.ttf 16 g 26.7087 39.8257 66 7 -11.7434 25.5011 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 67 § -12.2789 20.6124 50.9515 -Times_New_Roman.ttf 16 g 26.7087 39.8257 68 $ -15.0946 23.6262 45.6495 -Times_New_Roman.ttf 16 g 26.7087 39.8257 69 € -11.9377 29.1907 39.1026 -Times_New_Roman.ttf 16 g 26.7087 39.8257 70 / -13.5332 17.5721 42.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 71 C -12.7215 34.5469 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 72 * -13.9301 20.0794 24.4267 -Times_New_Roman.ttf 16 g 26.7087 39.8257 73 ” -13.0296 21.5305 14.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 74 ? -13.0387 19.9145 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 75 { -13.3357 17.0391 52.7368 -Times_New_Roman.ttf 16 g 26.7087 39.8257 76 } -13.3065 17.0391 52.7368 -Times_New_Roman.ttf 16 g 26.7087 39.8257 77 , 23.4326 8.5783 14.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 78 I -11.8829 16.7326 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 79 ° -12.7882 17.5721 17.5721 -Times_New_Roman.ttf 16 g 26.7087 39.8257 80 K -11.7647 41.1593 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 81 H -11.6808 40.8918 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 82 q 0.0083 26.9510 39.8257 -Times_New_Roman.ttf 16 g 26.7087 39.8257 83 & -13.1064 41.3411 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 84 ’ -12.8128 8.5783 14.0000 -Times_New_Roman.ttf 16 g 26.7087 39.8257 85 [ -12.4566 12.6664 51.2372 -Times_New_Roman.ttf 16 g 26.7087 39.8257 86 - 10.9088 15.1907 5.2134 -Times_New_Roman.ttf 16 g 26.7087 39.8257 87 Y -11.6341 41.7313 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 88 Q -13.0221 37.9372 51.1101 -Times_New_Roman.ttf 16 g 26.7087 39.8257 89 " -12.8655 14.9824 16.3814 -Times_New_Roman.ttf 16 g 26.7087 39.8257 90 ! -12.8027 5.2134 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 91 x 1.1907 28.4895 25.9686 -Times_New_Roman.ttf 16 g 26.7087 39.8257 92 ) -13.0869 15.8496 52.7368 -Times_New_Roman.ttf 16 g 26.7087 39.8257 93 = 1.4217 30.1743 12.0076 -Times_New_Roman.ttf 16 g 26.7087 39.8257 94 + -7.4058 30.3814 30.3814 -Times_New_Roman.ttf 16 g 26.7087 39.8257 95 X -11.9032 42.0000 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 96 » 0.0847 24.9427 27.1593 -Times_New_Roman.ttf 16 g 26.7087 39.8257 97 ' -12.9110 5.2134 16.3814 -Times_New_Roman.ttf 16 g 26.7087 39.8257 98 ¢ -10.4937 21.9459 47.5645 -Times_New_Roman.ttf 16 g 26.7087 39.8257 99 Z -12.0988 33.9535 38.9597 -Times_New_Roman.ttf 16 g 26.7087 39.8257 100 > -7.4058 30.8320 29.1907 -Times_New_Roman.ttf 16 g 26.7087 39.8257 101 ® -12.9309 40.3587 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 102 © -13.0559 40.3587 41.3411 -Times_New_Roman.ttf 16 g 26.7087 39.8257 103 ] -12.4663 12.6664 51.2372 -Times_New_Roman.ttf 16 g 26.7087 39.8257 104 é -12.6313 22.1278 41.0164 -Times_New_Roman.ttf 16 g 26.7087 39.8257 105 z 1.1819 23.5872 25.9686 -Times_New_Roman.ttf 16 g 26.7087 39.8257 106 _ 37.3583 30.0314 2.3814 -Times_New_Roman.ttf 16 g 26.7087 39.8257 107 ¥ -11.6346 31.4462 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 1 t 6.3162 16.5632 35.7376 -Times_New_Roman.ttf 17 d 27.3411 42.0000 2 h 0.1357 28.4494 40.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 3 a 13.3590 24.3008 28.3500 -Times_New_Roman.ttf 17 d 27.3411 42.0000 4 n 13.6455 28.4494 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 5 P 2.1938 30.0347 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 6 o 13.7728 25.1680 28.3500 -Times_New_Roman.ttf 17 d 27.3411 42.0000 7 e 13.6527 22.1278 28.3500 -Times_New_Roman.ttf 17 d 27.3411 42.0000 8 : 13.5500 5.2134 28.3500 -Times_New_Roman.ttf 17 d 27.3411 42.0000 9 r 13.6500 19.2134 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 10 l -0.1714 13.2587 40.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 11 i 0.0143 13.2587 40.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 12 1 1.8067 15.9913 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 13 | 0.2417 2.3814 53.1680 -Times_New_Roman.ttf 17 d 27.3411 42.0000 14 N 2.0340 43.0089 40.1504 -Times_New_Roman.ttf 17 d 27.3411 42.0000 15 f -0.0065 23.6262 40.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 16 g 13.6491 26.7087 39.8257 -Times_New_Roman.ttf 17 d 27.3411 42.0000 17 d 0.0000 27.3411 42.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 18 W 1.7866 55.6923 40.1504 -Times_New_Roman.ttf 17 d 27.3411 42.0000 19 s 13.8251 17.7150 28.3500 -Times_New_Roman.ttf 17 d 27.3411 42.0000 20 c 13.8085 22.1278 28.3500 -Times_New_Roman.ttf 17 d 27.3411 42.0000 21 u 14.6183 28.6577 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 22 3 1.5339 21.3876 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 23 ~ 21.4838 29.8907 7.5948 -Times_New_Roman.ttf 17 d 27.3411 42.0000 24 # -0.0143 26.1769 40.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 25 O 0.6250 37.9372 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 26 ` 1.6181 8.2536 9.4443 -Times_New_Roman.ttf 17 d 27.3411 42.0000 27 @ -0.1224 49.5948 54.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 28 F 1.8958 29.5407 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 29 S 0.3773 24.9597 41.5229 -Times_New_Roman.ttf 17 d 27.3411 42.0000 30 p 13.6444 26.9510 39.8257 -Times_New_Roman.ttf 17 d 27.3411 42.0000 31 “ 0.3137 21.7123 14.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 32 % 0.7121 46.5375 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 33 £ 1.8680 26.1504 40.2933 -Times_New_Roman.ttf 17 d 27.3411 42.0000 34 . 36.6323 5.2134 5.2134 -Times_New_Roman.ttf 17 d 27.3411 42.0000 35 2 1.8396 25.4757 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 36 5 1.9380 22.0453 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 37 m 13.5731 43.6401 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 38 V 1.3265 42.2071 40.1504 -Times_New_Roman.ttf 17 d 27.3411 42.0000 39 6 1.7011 24.6350 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 40 w 14.4899 42.0012 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 41 T 1.7189 32.2857 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 42 M 1.9950 50.7900 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 43 G 0.5488 40.3587 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 44 b -0.3887 26.9510 42.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 45 9 1.7435 24.2850 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 46 ; 13.5161 8.5783 37.1366 -Times_New_Roman.ttf 17 d 27.3411 42.0000 47 D 1.8663 39.4791 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 48 L 1.9066 33.1140 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 49 y 14.7306 29.1484 38.6350 -Times_New_Roman.ttf 17 d 27.3411 42.0000 50 ‘ 0.7709 8.5783 14.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 51 \ 0.0927 16.8974 42.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 52 R 2.0297 39.5192 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 53 < 6.3582 30.8320 29.1907 -Times_New_Roman.ttf 17 d 27.3411 42.0000 54 4 1.6841 25.4757 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 55 8 1.5529 22.7465 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 56 0 1.6683 24.6350 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 57 A 0.7747 42.0000 40.1504 -Times_New_Roman.ttf 17 d 27.3411 42.0000 58 E 2.2257 34.1229 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 59 B 1.6865 34.7552 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 60 v 14.9264 29.7237 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 61 k 0.2696 28.4929 40.8093 -Times_New_Roman.ttf 17 d 27.3411 42.0000 62 J 1.8496 20.8981 40.1504 -Times_New_Roman.ttf 17 d 27.3411 42.0000 63 U 1.6425 40.9787 40.1504 -Times_New_Roman.ttf 17 d 27.3411 42.0000 64 j -0.0459 16.0906 53.4757 -Times_New_Roman.ttf 17 d 27.3411 42.0000 65 ( 0.2653 15.8496 52.7368 -Times_New_Roman.ttf 17 d 27.3411 42.0000 66 7 1.7695 25.5011 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 67 § 1.5067 20.6124 50.9515 -Times_New_Roman.ttf 17 d 27.3411 42.0000 68 $ -1.2894 23.6262 45.6495 -Times_New_Roman.ttf 17 d 27.3411 42.0000 69 € 1.5293 29.1907 39.1026 -Times_New_Roman.ttf 17 d 27.3411 42.0000 70 / -0.1686 17.5721 42.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 71 C 0.5842 34.5469 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 72 * 0.2161 20.0794 24.4267 -Times_New_Roman.ttf 17 d 27.3411 42.0000 73 ” 0.8373 21.5305 14.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 74 ? 0.7775 19.9145 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 75 { 0.5394 17.0391 52.7368 -Times_New_Roman.ttf 17 d 27.3411 42.0000 76 } 0.1776 17.0391 52.7368 -Times_New_Roman.ttf 17 d 27.3411 42.0000 77 , 36.8756 8.5783 14.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 78 I 1.9192 16.7326 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 79 ° 0.6760 17.5721 17.5721 -Times_New_Roman.ttf 17 d 27.3411 42.0000 80 K 1.9280 41.1593 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 81 H 1.7195 40.8918 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 82 q 13.7728 26.9510 39.8257 -Times_New_Roman.ttf 17 d 27.3411 42.0000 83 & 0.2911 41.3411 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 84 ’ 0.6458 8.5783 14.0000 -Times_New_Roman.ttf 17 d 27.3411 42.0000 85 [ 1.3593 12.6664 51.2372 -Times_New_Roman.ttf 17 d 27.3411 42.0000 86 - 24.6279 15.1907 5.2134 -Times_New_Roman.ttf 17 d 27.3411 42.0000 87 Y 1.7365 41.7313 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 88 Q 0.7428 37.9372 51.1101 -Times_New_Roman.ttf 17 d 27.3411 42.0000 89 " 0.7259 14.9824 16.3814 -Times_New_Roman.ttf 17 d 27.3411 42.0000 90 ! 0.6005 5.2134 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 91 x 14.9219 28.4895 25.9686 -Times_New_Roman.ttf 17 d 27.3411 42.0000 92 ) 0.2764 15.8496 52.7368 -Times_New_Roman.ttf 17 d 27.3411 42.0000 93 = 15.1337 30.1743 12.0076 -Times_New_Roman.ttf 17 d 27.3411 42.0000 94 + 6.3971 30.3814 30.3814 -Times_New_Roman.ttf 17 d 27.3411 42.0000 95 X 2.0147 42.0000 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 96 » 13.7319 24.9427 27.1593 -Times_New_Roman.ttf 17 d 27.3411 42.0000 97 ' 0.6395 5.2134 16.3814 -Times_New_Roman.ttf 17 d 27.3411 42.0000 98 ¢ 3.4718 21.9459 47.5645 -Times_New_Roman.ttf 17 d 27.3411 42.0000 99 Z 1.8727 33.9535 38.9597 -Times_New_Roman.ttf 17 d 27.3411 42.0000 100 > 6.3080 30.8320 29.1907 -Times_New_Roman.ttf 17 d 27.3411 42.0000 101 ® 1.0986 40.3587 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 102 © 0.5333 40.3587 41.3411 -Times_New_Roman.ttf 17 d 27.3411 42.0000 103 ] 1.0113 12.6664 51.2372 -Times_New_Roman.ttf 17 d 27.3411 42.0000 104 é 0.9836 22.1278 41.0164 -Times_New_Roman.ttf 17 d 27.3411 42.0000 105 z 14.6786 23.5872 25.9686 -Times_New_Roman.ttf 17 d 27.3411 42.0000 106 _ 51.2217 30.0314 2.3814 -Times_New_Roman.ttf 17 d 27.3411 42.0000 107 ¥ 2.0448 31.4462 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 1 t 4.7868 16.5632 35.7376 -Times_New_Roman.ttf 18 W 55.6923 40.1504 2 h -1.7833 28.4494 40.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 3 a 11.5906 24.3008 28.3500 -Times_New_Roman.ttf 18 W 55.6923 40.1504 4 n 11.4429 28.4494 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 5 P 0.0185 30.0347 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 6 o 11.7317 25.1680 28.3500 -Times_New_Roman.ttf 18 W 55.6923 40.1504 7 e 11.7022 22.1278 28.3500 -Times_New_Roman.ttf 18 W 55.6923 40.1504 8 : 11.6465 5.2134 28.3500 -Times_New_Roman.ttf 18 W 55.6923 40.1504 9 r 11.9023 19.2134 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 10 l -1.8645 13.2587 40.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 11 i -1.5510 13.2587 40.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 12 1 -0.2675 15.9913 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 13 | -1.6921 2.3814 53.1680 -Times_New_Roman.ttf 18 W 55.6923 40.1504 14 N -0.2855 43.0089 40.1504 -Times_New_Roman.ttf 18 W 55.6923 40.1504 15 f -2.1378 23.6262 40.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 16 g 11.4657 26.7087 39.8257 -Times_New_Roman.ttf 18 W 55.6923 40.1504 17 d -1.8041 27.3411 42.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 18 W -0.1838 55.6923 40.1504 -Times_New_Roman.ttf 18 W 55.6923 40.1504 19 s 11.8684 17.7150 28.3500 -Times_New_Roman.ttf 18 W 55.6923 40.1504 20 c 12.1633 22.1278 28.3500 -Times_New_Roman.ttf 18 W 55.6923 40.1504 21 u 13.1355 28.6577 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 22 3 -0.3004 21.3876 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 23 ~ 19.8346 29.8907 7.5948 -Times_New_Roman.ttf 18 W 55.6923 40.1504 24 # -2.1558 26.1769 40.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 25 O -1.2869 37.9372 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 26 ` -0.5410 8.2536 9.4443 -Times_New_Roman.ttf 18 W 55.6923 40.1504 27 @ -1.9528 49.5948 54.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 28 F 0.2657 29.5407 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 29 S -1.2292 24.9597 41.5229 -Times_New_Roman.ttf 18 W 55.6923 40.1504 30 p 11.6364 26.9510 39.8257 -Times_New_Roman.ttf 18 W 55.6923 40.1504 31 “ -1.3843 21.7123 14.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 32 % -1.3204 46.5375 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 33 £ -0.0961 26.1504 40.2933 -Times_New_Roman.ttf 18 W 55.6923 40.1504 34 . 35.0847 5.2134 5.2134 -Times_New_Roman.ttf 18 W 55.6923 40.1504 35 2 -0.0567 25.4757 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 36 5 -0.1543 22.0453 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 37 m 11.7074 43.6401 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 38 V -0.2239 42.2071 40.1504 -Times_New_Roman.ttf 18 W 55.6923 40.1504 39 6 0.0750 24.6350 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 40 w 13.1075 42.0012 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 41 T 0.0825 32.2857 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 42 M 0.0379 50.7900 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 43 G -1.5276 40.3587 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 44 b -1.5428 26.9510 42.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 45 9 0.2940 24.2850 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 46 ; 11.5215 8.5783 37.1366 -Times_New_Roman.ttf 18 W 55.6923 40.1504 47 D 0.0220 39.4791 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 48 L -0.1121 33.1140 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 49 y 13.0185 29.1484 38.6350 -Times_New_Roman.ttf 18 W 55.6923 40.1504 50 ‘ -1.2421 8.5783 14.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 51 \ -1.5395 16.8974 42.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 52 R -0.0251 39.5192 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 53 < 4.4159 30.8320 29.1907 -Times_New_Roman.ttf 18 W 55.6923 40.1504 54 4 -0.0200 25.4757 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 55 8 0.0544 22.7465 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 56 0 -0.0412 24.6350 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 57 A -1.3622 42.0000 40.1504 -Times_New_Roman.ttf 18 W 55.6923 40.1504 58 E -0.0103 34.1229 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 59 B -0.0495 34.7552 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 60 v 12.8451 29.7237 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 61 k -2.0308 28.4929 40.8093 -Times_New_Roman.ttf 18 W 55.6923 40.1504 62 J 0.0219 20.8981 40.1504 -Times_New_Roman.ttf 18 W 55.6923 40.1504 63 U -0.1093 40.9787 40.1504 -Times_New_Roman.ttf 18 W 55.6923 40.1504 64 j -1.8870 16.0906 53.4757 -Times_New_Roman.ttf 18 W 55.6923 40.1504 65 ( -1.7533 15.8496 52.7368 -Times_New_Roman.ttf 18 W 55.6923 40.1504 66 7 -0.2626 25.5011 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 67 § -1.1152 20.6124 50.9515 -Times_New_Roman.ttf 18 W 55.6923 40.1504 68 $ -2.7816 23.6262 45.6495 -Times_New_Roman.ttf 18 W 55.6923 40.1504 69 € -0.3466 29.1907 39.1026 -Times_New_Roman.ttf 18 W 55.6923 40.1504 70 / -1.5659 17.5721 42.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 71 C -1.2579 34.5469 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 72 * -2.0198 20.0794 24.4267 -Times_New_Roman.ttf 18 W 55.6923 40.1504 73 ” -0.9423 21.5305 14.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 74 ? -1.3254 19.9145 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 75 { -1.5207 17.0391 52.7368 -Times_New_Roman.ttf 18 W 55.6923 40.1504 76 } -1.5434 17.0391 52.7368 -Times_New_Roman.ttf 18 W 55.6923 40.1504 77 , 34.7542 8.5783 14.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 78 I 0.1176 16.7326 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 79 ° -0.9717 17.5721 17.5721 -Times_New_Roman.ttf 18 W 55.6923 40.1504 80 K 0.0688 41.1593 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 81 H -0.3995 40.8918 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 82 q 12.2192 26.9510 39.8257 -Times_New_Roman.ttf 18 W 55.6923 40.1504 83 & -1.1193 41.3411 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 84 ’ -1.4430 8.5783 14.0000 -Times_New_Roman.ttf 18 W 55.6923 40.1504 85 [ -0.8518 12.6664 51.2372 -Times_New_Roman.ttf 18 W 55.6923 40.1504 86 - 22.6950 15.1907 5.2134 -Times_New_Roman.ttf 18 W 55.6923 40.1504 87 Y 0.1408 41.7313 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 88 Q -1.6364 37.9372 51.1101 -Times_New_Roman.ttf 18 W 55.6923 40.1504 89 " -1.2263 14.9824 16.3814 -Times_New_Roman.ttf 18 W 55.6923 40.1504 90 ! -0.9413 5.2134 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 91 x 12.9042 28.4895 25.9686 -Times_New_Roman.ttf 18 W 55.6923 40.1504 92 ) -1.4555 15.8496 52.7368 -Times_New_Roman.ttf 18 W 55.6923 40.1504 93 = 13.3487 30.1743 12.0076 -Times_New_Roman.ttf 18 W 55.6923 40.1504 94 + 4.4683 30.3814 30.3814 -Times_New_Roman.ttf 18 W 55.6923 40.1504 95 X -0.0374 42.0000 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 96 » 11.7192 24.9427 27.1593 -Times_New_Roman.ttf 18 W 55.6923 40.1504 97 ' -0.9822 5.2134 16.3814 -Times_New_Roman.ttf 18 W 55.6923 40.1504 98 ¢ 1.7185 21.9459 47.5645 -Times_New_Roman.ttf 18 W 55.6923 40.1504 99 Z -0.3487 33.9535 38.9597 -Times_New_Roman.ttf 18 W 55.6923 40.1504 100 > 4.0892 30.8320 29.1907 -Times_New_Roman.ttf 18 W 55.6923 40.1504 101 ® -1.0776 40.3587 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 102 © -1.4158 40.3587 41.3411 -Times_New_Roman.ttf 18 W 55.6923 40.1504 103 ] -0.8194 12.6664 51.2372 -Times_New_Roman.ttf 18 W 55.6923 40.1504 104 é -0.6038 22.1278 41.0164 -Times_New_Roman.ttf 18 W 55.6923 40.1504 105 z 12.7872 23.5872 25.9686 -Times_New_Roman.ttf 18 W 55.6923 40.1504 106 _ 49.2472 30.0314 2.3814 -Times_New_Roman.ttf 18 W 55.6923 40.1504 107 ¥ 0.3737 31.4462 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 1 t -7.6901 16.5632 35.7376 -Times_New_Roman.ttf 19 s 17.7150 28.3500 2 h -13.7581 28.4494 40.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 3 a 0.0027 24.3008 28.3500 -Times_New_Roman.ttf 19 s 17.7150 28.3500 4 n 0.1631 28.4494 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 5 P -11.8843 30.0347 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 6 o -0.0500 25.1680 28.3500 -Times_New_Roman.ttf 19 s 17.7150 28.3500 7 e 0.0490 22.1278 28.3500 -Times_New_Roman.ttf 19 s 17.7150 28.3500 8 : -0.1027 5.2134 28.3500 -Times_New_Roman.ttf 19 s 17.7150 28.3500 9 r -0.0123 19.2134 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 10 l -13.6839 13.2587 40.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 11 i -13.7347 13.2587 40.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 12 1 -11.9335 15.9913 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 13 | -13.7412 2.3814 53.1680 -Times_New_Roman.ttf 19 s 17.7150 28.3500 14 N -11.8756 43.0089 40.1504 -Times_New_Roman.ttf 19 s 17.7150 28.3500 15 f -13.5699 23.6262 40.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 16 g -0.0868 26.7087 39.8257 -Times_New_Roman.ttf 19 s 17.7150 28.3500 17 d -13.5601 27.3411 42.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 18 W -11.7735 55.6923 40.1504 -Times_New_Roman.ttf 19 s 17.7150 28.3500 19 s 0.1548 17.7150 28.3500 -Times_New_Roman.ttf 19 s 17.7150 28.3500 20 c 0.3420 22.1278 28.3500 -Times_New_Roman.ttf 19 s 17.7150 28.3500 21 u 1.1934 28.6577 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 22 3 -12.0696 21.3876 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 23 ~ 7.8303 29.8907 7.5948 -Times_New_Roman.ttf 19 s 17.7150 28.3500 24 # -13.6728 26.1769 40.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 25 O -12.9685 37.9372 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 26 ` -12.1412 8.2536 9.4443 -Times_New_Roman.ttf 19 s 17.7150 28.3500 27 @ -13.7204 49.5948 54.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 28 F -11.6759 29.5407 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 29 S -13.2767 24.9597 41.5229 -Times_New_Roman.ttf 19 s 17.7150 28.3500 30 p -0.0228 26.9510 39.8257 -Times_New_Roman.ttf 19 s 17.7150 28.3500 31 “ -12.8683 21.7123 14.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 32 % -12.9957 46.5375 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 33 £ -11.8121 26.1504 40.2933 -Times_New_Roman.ttf 19 s 17.7150 28.3500 34 . 23.3034 5.2134 5.2134 -Times_New_Roman.ttf 19 s 17.7150 28.3500 35 2 -12.2342 25.4757 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 36 5 -11.7174 22.0453 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 37 m -0.2030 43.6401 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 38 V -11.8861 42.2071 40.1504 -Times_New_Roman.ttf 19 s 17.7150 28.3500 39 6 -11.9048 24.6350 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 40 w 1.0568 42.0012 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 41 T -11.8431 32.2857 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 42 M -11.6364 50.7900 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 43 G -13.2798 40.3587 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 44 b -13.6395 26.9510 42.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 45 9 -11.8274 24.2850 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 46 ; -0.0455 8.5783 37.1366 -Times_New_Roman.ttf 19 s 17.7150 28.3500 47 D -11.9004 39.4791 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 48 L -11.7532 33.1140 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 49 y 1.1217 29.1484 38.6350 -Times_New_Roman.ttf 19 s 17.7150 28.3500 50 ‘ -12.9467 8.5783 14.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 51 \ -13.5133 16.8974 42.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 52 R -11.6979 39.5192 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 53 < -7.2803 30.8320 29.1907 -Times_New_Roman.ttf 19 s 17.7150 28.3500 54 4 -11.8501 25.4757 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 55 8 -11.9064 22.7465 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 56 0 -11.9272 24.6350 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 57 A -12.8045 42.0000 40.1504 -Times_New_Roman.ttf 19 s 17.7150 28.3500 58 E -11.8278 34.1229 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 59 B -11.7346 34.7552 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 60 v 1.2208 29.7237 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 61 k -13.7575 28.4929 40.8093 -Times_New_Roman.ttf 19 s 17.7150 28.3500 62 J -11.8050 20.8981 40.1504 -Times_New_Roman.ttf 19 s 17.7150 28.3500 63 U -12.0047 40.9787 40.1504 -Times_New_Roman.ttf 19 s 17.7150 28.3500 64 j -13.5643 16.0906 53.4757 -Times_New_Roman.ttf 19 s 17.7150 28.3500 65 ( -13.1387 15.8496 52.7368 -Times_New_Roman.ttf 19 s 17.7150 28.3500 66 7 -11.8646 25.5011 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 67 § -12.1677 20.6124 50.9515 -Times_New_Roman.ttf 19 s 17.7150 28.3500 68 $ -14.6413 23.6262 45.6495 -Times_New_Roman.ttf 19 s 17.7150 28.3500 69 € -11.9940 29.1907 39.1026 -Times_New_Roman.ttf 19 s 17.7150 28.3500 70 / -13.8525 17.5721 42.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 71 C -13.1750 34.5469 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 72 * -13.8113 20.0794 24.4267 -Times_New_Roman.ttf 19 s 17.7150 28.3500 73 ” -13.1635 21.5305 14.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 74 ? -13.1685 19.9145 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 75 { -13.1357 17.0391 52.7368 -Times_New_Roman.ttf 19 s 17.7150 28.3500 76 } -13.4686 17.0391 52.7368 -Times_New_Roman.ttf 19 s 17.7150 28.3500 77 , 23.3799 8.5783 14.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 78 I -11.8042 16.7326 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 79 ° -13.1135 17.5721 17.5721 -Times_New_Roman.ttf 19 s 17.7150 28.3500 80 K -11.9728 41.1593 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 81 H -11.9351 40.8918 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 82 q 0.1083 26.9510 39.8257 -Times_New_Roman.ttf 19 s 17.7150 28.3500 83 & -13.2843 41.3411 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 84 ’ -12.9873 8.5783 14.0000 -Times_New_Roman.ttf 19 s 17.7150 28.3500 85 [ -12.5515 12.6664 51.2372 -Times_New_Roman.ttf 19 s 17.7150 28.3500 86 - 10.9719 15.1907 5.2134 -Times_New_Roman.ttf 19 s 17.7150 28.3500 87 Y -11.5364 41.7313 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 88 Q -13.1070 37.9372 51.1101 -Times_New_Roman.ttf 19 s 17.7150 28.3500 89 " -13.1589 14.9824 16.3814 -Times_New_Roman.ttf 19 s 17.7150 28.3500 90 ! -13.3307 5.2134 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 91 x 1.2851 28.4895 25.9686 -Times_New_Roman.ttf 19 s 17.7150 28.3500 92 ) -13.4301 15.8496 52.7368 -Times_New_Roman.ttf 19 s 17.7150 28.3500 93 = 1.4653 30.1743 12.0076 -Times_New_Roman.ttf 19 s 17.7150 28.3500 94 + -7.4303 30.3814 30.3814 -Times_New_Roman.ttf 19 s 17.7150 28.3500 95 X -11.8730 42.0000 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 96 » 0.0801 24.9427 27.1593 -Times_New_Roman.ttf 19 s 17.7150 28.3500 97 ' -12.7725 5.2134 16.3814 -Times_New_Roman.ttf 19 s 17.7150 28.3500 98 ¢ -10.4279 21.9459 47.5645 -Times_New_Roman.ttf 19 s 17.7150 28.3500 99 Z -11.7262 33.9535 38.9597 -Times_New_Roman.ttf 19 s 17.7150 28.3500 100 > -7.6133 30.8320 29.1907 -Times_New_Roman.ttf 19 s 17.7150 28.3500 101 ® -13.1250 40.3587 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 102 © -12.9911 40.3587 41.3411 -Times_New_Roman.ttf 19 s 17.7150 28.3500 103 ] -12.6719 12.6664 51.2372 -Times_New_Roman.ttf 19 s 17.7150 28.3500 104 é -12.3355 22.1278 41.0164 -Times_New_Roman.ttf 19 s 17.7150 28.3500 105 z 1.1133 23.5872 25.9686 -Times_New_Roman.ttf 19 s 17.7150 28.3500 106 _ 37.4031 30.0314 2.3814 -Times_New_Roman.ttf 19 s 17.7150 28.3500 107 ¥ -11.7560 31.4462 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 1 t -7.3917 16.5632 35.7376 -Times_New_Roman.ttf 20 c 22.1278 28.3500 2 h -13.9228 28.4494 40.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 3 a 0.0649 24.3008 28.3500 -Times_New_Roman.ttf 20 c 22.1278 28.3500 4 n -0.0417 28.4494 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 5 P -11.5753 30.0347 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 6 o -0.1116 25.1680 28.3500 -Times_New_Roman.ttf 20 c 22.1278 28.3500 7 e -0.1158 22.1278 28.3500 -Times_New_Roman.ttf 20 c 22.1278 28.3500 8 : 0.0226 5.2134 28.3500 -Times_New_Roman.ttf 20 c 22.1278 28.3500 9 r 0.0968 19.2134 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 10 l -13.6335 13.2587 40.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 11 i -13.8640 13.2587 40.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 12 1 -11.9302 15.9913 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 13 | -13.5314 2.3814 53.1680 -Times_New_Roman.ttf 20 c 22.1278 28.3500 14 N -11.7620 43.0089 40.1504 -Times_New_Roman.ttf 20 c 22.1278 28.3500 15 f -13.5351 23.6262 40.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 16 g 0.0234 26.7087 39.8257 -Times_New_Roman.ttf 20 c 22.1278 28.3500 17 d -13.6056 27.3411 42.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 18 W -11.7959 55.6923 40.1504 -Times_New_Roman.ttf 20 c 22.1278 28.3500 19 s -0.2218 17.7150 28.3500 -Times_New_Roman.ttf 20 c 22.1278 28.3500 20 c 0.0455 22.1278 28.3500 -Times_New_Roman.ttf 20 c 22.1278 28.3500 21 u 0.8729 28.6577 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 22 3 -12.0664 21.3876 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 23 ~ 7.7820 29.8907 7.5948 -Times_New_Roman.ttf 20 c 22.1278 28.3500 24 # -13.7027 26.1769 40.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 25 O -13.1361 37.9372 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 26 ` -12.1231 8.2536 9.4443 -Times_New_Roman.ttf 20 c 22.1278 28.3500 27 @ -13.9156 49.5948 54.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 28 F -11.7448 29.5407 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 29 S -12.9288 24.9597 41.5229 -Times_New_Roman.ttf 20 c 22.1278 28.3500 30 p 0.0422 26.9510 39.8257 -Times_New_Roman.ttf 20 c 22.1278 28.3500 31 “ -13.0296 21.7123 14.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 32 % -13.0712 46.5375 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 33 £ -11.6963 26.1504 40.2933 -Times_New_Roman.ttf 20 c 22.1278 28.3500 34 . 22.9625 5.2134 5.2134 -Times_New_Roman.ttf 20 c 22.1278 28.3500 35 2 -11.9265 25.4757 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 36 5 -11.6916 22.0453 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 37 m 0.0000 43.6401 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 38 V -11.7004 42.2071 40.1504 -Times_New_Roman.ttf 20 c 22.1278 28.3500 39 6 -11.9349 24.6350 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 40 w 1.1786 42.0012 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 41 T -11.9311 32.2857 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 42 M -11.7127 50.7900 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 43 G -12.8683 40.3587 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 44 b -13.7113 26.9510 42.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 45 9 -11.8704 24.2850 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 46 ; -0.0301 8.5783 37.1366 -Times_New_Roman.ttf 20 c 22.1278 28.3500 47 D -11.8625 39.4791 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 48 L -11.6044 33.1140 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 49 y 1.3714 29.1484 38.6350 -Times_New_Roman.ttf 20 c 22.1278 28.3500 50 ‘ -12.7715 8.5783 14.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 51 \ -13.7000 16.8974 42.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 52 R -11.8060 39.5192 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 53 < -7.4114 30.8320 29.1907 -Times_New_Roman.ttf 20 c 22.1278 28.3500 54 4 -12.1091 25.4757 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 55 8 -11.8594 22.7465 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 56 0 -12.1355 24.6350 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 57 A -13.0027 42.0000 40.1504 -Times_New_Roman.ttf 20 c 22.1278 28.3500 58 E -11.9615 34.1229 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 59 B -11.8421 34.7552 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 60 v 1.1661 29.7237 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 61 k -13.7658 28.4929 40.8093 -Times_New_Roman.ttf 20 c 22.1278 28.3500 62 J -11.7393 20.8981 40.1504 -Times_New_Roman.ttf 20 c 22.1278 28.3500 63 U -11.7620 40.9787 40.1504 -Times_New_Roman.ttf 20 c 22.1278 28.3500 64 j -13.7877 16.0906 53.4757 -Times_New_Roman.ttf 20 c 22.1278 28.3500 65 ( -13.1548 15.8496 52.7368 -Times_New_Roman.ttf 20 c 22.1278 28.3500 66 7 -11.7074 25.5011 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 67 § -12.2363 20.6124 50.9515 -Times_New_Roman.ttf 20 c 22.1278 28.3500 68 $ -14.8406 23.6262 45.6495 -Times_New_Roman.ttf 20 c 22.1278 28.3500 69 € -11.9674 29.1907 39.1026 -Times_New_Roman.ttf 20 c 22.1278 28.3500 70 / -13.5776 17.5721 42.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 71 C -13.1683 34.5469 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 72 * -13.5917 20.0794 24.4267 -Times_New_Roman.ttf 20 c 22.1278 28.3500 73 ” -13.0658 21.5305 14.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 74 ? -12.9625 19.9145 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 75 { -13.3608 17.0391 52.7368 -Times_New_Roman.ttf 20 c 22.1278 28.3500 76 } -13.2236 17.0391 52.7368 -Times_New_Roman.ttf 20 c 22.1278 28.3500 77 , 23.0866 8.5783 14.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 78 I -11.7939 16.7326 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 79 ° -12.9866 17.5721 17.5721 -Times_New_Roman.ttf 20 c 22.1278 28.3500 80 K -11.8032 41.1593 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 81 H -11.4751 40.8918 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 82 q 0.0371 26.9510 39.8257 -Times_New_Roman.ttf 20 c 22.1278 28.3500 83 & -13.3183 41.3411 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 84 ’ -13.2492 8.5783 14.0000 -Times_New_Roman.ttf 20 c 22.1278 28.3500 85 [ -12.5520 12.6664 51.2372 -Times_New_Roman.ttf 20 c 22.1278 28.3500 86 - 11.0306 15.1907 5.2134 -Times_New_Roman.ttf 20 c 22.1278 28.3500 87 Y -11.6620 41.7313 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 88 Q -12.9800 37.9372 51.1101 -Times_New_Roman.ttf 20 c 22.1278 28.3500 89 " -12.8698 14.9824 16.3814 -Times_New_Roman.ttf 20 c 22.1278 28.3500 90 ! -13.2177 5.2134 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 91 x 1.0249 28.4895 25.9686 -Times_New_Roman.ttf 20 c 22.1278 28.3500 92 ) -13.3113 15.8496 52.7368 -Times_New_Roman.ttf 20 c 22.1278 28.3500 93 = 1.6835 30.1743 12.0076 -Times_New_Roman.ttf 20 c 22.1278 28.3500 94 + -7.3757 30.3814 30.3814 -Times_New_Roman.ttf 20 c 22.1278 28.3500 95 X -11.7466 42.0000 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 96 » 0.1204 24.9427 27.1593 -Times_New_Roman.ttf 20 c 22.1278 28.3500 97 ' -13.2825 5.2134 16.3814 -Times_New_Roman.ttf 20 c 22.1278 28.3500 98 ¢ -10.6513 21.9459 47.5645 -Times_New_Roman.ttf 20 c 22.1278 28.3500 99 Z -11.7185 33.9535 38.9597 -Times_New_Roman.ttf 20 c 22.1278 28.3500 100 > -7.5416 30.8320 29.1907 -Times_New_Roman.ttf 20 c 22.1278 28.3500 101 ® -13.0022 40.3587 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 102 © -12.8725 40.3587 41.3411 -Times_New_Roman.ttf 20 c 22.1278 28.3500 103 ] -12.4603 12.6664 51.2372 -Times_New_Roman.ttf 20 c 22.1278 28.3500 104 é -12.6549 22.1278 41.0164 -Times_New_Roman.ttf 20 c 22.1278 28.3500 105 z 1.1306 23.5872 25.9686 -Times_New_Roman.ttf 20 c 22.1278 28.3500 106 _ 37.3257 30.0314 2.3814 -Times_New_Roman.ttf 20 c 22.1278 28.3500 107 ¥ -11.7878 31.4462 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 1 t -8.6942 16.5632 35.7376 -Times_New_Roman.ttf 21 u 28.6577 27.1593 2 h -14.9264 28.4494 40.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 3 a -1.5198 24.3008 28.3500 -Times_New_Roman.ttf 21 u 28.6577 27.1593 4 n -1.0113 28.4494 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 5 P -12.9024 30.0347 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 6 o -1.1890 25.1680 28.3500 -Times_New_Roman.ttf 21 u 28.6577 27.1593 7 e -1.0277 22.1278 28.3500 -Times_New_Roman.ttf 21 u 28.6577 27.1593 8 : -1.6025 5.2134 28.3500 -Times_New_Roman.ttf 21 u 28.6577 27.1593 9 r -0.9909 19.2134 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 10 l -14.9219 13.2587 40.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 11 i -15.1811 13.2587 40.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 12 1 -13.0878 15.9913 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 13 | -14.7595 2.3814 53.1680 -Times_New_Roman.ttf 21 u 28.6577 27.1593 14 N -13.0509 43.0089 40.1504 -Times_New_Roman.ttf 21 u 28.6577 27.1593 15 f -14.8930 23.6262 40.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 16 g -1.7440 26.7087 39.8257 -Times_New_Roman.ttf 21 u 28.6577 27.1593 17 d -15.0485 27.3411 42.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 18 W -12.9221 55.6923 40.1504 -Times_New_Roman.ttf 21 u 28.6577 27.1593 19 s -1.3631 17.7150 28.3500 -Times_New_Roman.ttf 21 u 28.6577 27.1593 20 c -1.1106 22.1278 28.3500 -Times_New_Roman.ttf 21 u 28.6577 27.1593 21 u 0.1312 28.6577 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 22 3 -13.2423 21.3876 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 23 ~ 6.6562 29.8907 7.5948 -Times_New_Roman.ttf 21 u 28.6577 27.1593 24 # -14.9830 26.1769 40.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 25 O -14.0979 37.9372 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 26 ` -13.0952 8.2536 9.4443 -Times_New_Roman.ttf 21 u 28.6577 27.1593 27 @ -14.9330 49.5948 54.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 28 F -13.0619 29.5407 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 29 S -14.6621 24.9597 41.5229 -Times_New_Roman.ttf 21 u 28.6577 27.1593 30 p -1.1183 26.9510 39.8257 -Times_New_Roman.ttf 21 u 28.6577 27.1593 31 “ -14.1048 21.7123 14.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 32 % -14.2442 46.5375 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 33 £ -13.2114 26.1504 40.2933 -Times_New_Roman.ttf 21 u 28.6577 27.1593 34 . 22.0677 5.2134 5.2134 -Times_New_Roman.ttf 21 u 28.6577 27.1593 35 2 -13.4985 25.4757 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 36 5 -13.4133 22.0453 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 37 m -1.1588 43.6401 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 38 V -12.8467 42.2071 40.1504 -Times_New_Roman.ttf 21 u 28.6577 27.1593 39 6 -13.0520 24.6350 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 40 w 0.0597 42.0012 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 41 T -12.9939 32.2857 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 42 M -12.7803 50.7900 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 43 G -14.3348 40.3587 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 44 b -14.8746 26.9510 42.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 45 9 -12.9983 24.2850 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 46 ; -1.1839 8.5783 37.1366 -Times_New_Roman.ttf 21 u 28.6577 27.1593 47 D -13.2024 39.4791 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 48 L -12.9027 33.1140 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 49 y -0.0885 29.1484 38.6350 -Times_New_Roman.ttf 21 u 28.6577 27.1593 50 ‘ -14.3427 8.5783 14.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 51 \ -15.0982 16.8974 42.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 52 R -12.9104 39.5192 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 53 < -8.7212 30.8320 29.1907 -Times_New_Roman.ttf 21 u 28.6577 27.1593 54 4 -13.4517 25.4757 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 55 8 -13.2256 22.7465 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 56 0 -12.8908 24.6350 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 57 A -14.2745 42.0000 40.1504 -Times_New_Roman.ttf 21 u 28.6577 27.1593 58 E -13.0484 34.1229 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 59 B -12.9717 34.7552 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 60 v -0.0422 29.7237 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 61 k -14.6749 28.4929 40.8093 -Times_New_Roman.ttf 21 u 28.6577 27.1593 62 J -12.7771 20.8981 40.1504 -Times_New_Roman.ttf 21 u 28.6577 27.1593 63 U -13.0647 40.9787 40.1504 -Times_New_Roman.ttf 21 u 28.6577 27.1593 64 j -14.5993 16.0906 53.4757 -Times_New_Roman.ttf 21 u 28.6577 27.1593 65 ( -14.4095 15.8496 52.7368 -Times_New_Roman.ttf 21 u 28.6577 27.1593 66 7 -13.0212 25.5011 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 67 § -13.6948 20.6124 50.9515 -Times_New_Roman.ttf 21 u 28.6577 27.1593 68 $ -16.0433 23.6262 45.6495 -Times_New_Roman.ttf 21 u 28.6577 27.1593 69 € -12.9853 29.1907 39.1026 -Times_New_Roman.ttf 21 u 28.6577 27.1593 70 / -14.5322 17.5721 42.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 71 C -14.1076 34.5469 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 72 * -14.8611 20.0794 24.4267 -Times_New_Roman.ttf 21 u 28.6577 27.1593 73 ” -14.3705 21.5305 14.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 74 ? -14.1717 19.9145 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 75 { -14.5538 17.0391 52.7368 -Times_New_Roman.ttf 21 u 28.6577 27.1593 76 } -14.5708 17.0391 52.7368 -Times_New_Roman.ttf 21 u 28.6577 27.1593 77 , 22.0422 8.5783 14.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 78 I -13.0667 16.7326 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 79 ° -14.3246 17.5721 17.5721 -Times_New_Roman.ttf 21 u 28.6577 27.1593 80 K -13.1175 41.1593 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 81 H -13.4183 40.8918 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 82 q -1.0595 26.9510 39.8257 -Times_New_Roman.ttf 21 u 28.6577 27.1593 83 & -14.1657 41.3411 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 84 ’ -14.1266 8.5783 14.0000 -Times_New_Roman.ttf 21 u 28.6577 27.1593 85 [ -13.3943 12.6664 51.2372 -Times_New_Roman.ttf 21 u 28.6577 27.1593 86 - 9.7955 15.1907 5.2134 -Times_New_Roman.ttf 21 u 28.6577 27.1593 87 Y -12.8999 41.7313 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 88 Q -14.1544 37.9372 51.1101 -Times_New_Roman.ttf 21 u 28.6577 27.1593 89 " -14.5044 14.9824 16.3814 -Times_New_Roman.ttf 21 u 28.6577 27.1593 90 ! -14.1902 5.2134 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 91 x -0.3326 28.4895 25.9686 -Times_New_Roman.ttf 21 u 28.6577 27.1593 92 ) -14.5917 15.8496 52.7368 -Times_New_Roman.ttf 21 u 28.6577 27.1593 93 = 0.4525 30.1743 12.0076 -Times_New_Roman.ttf 21 u 28.6577 27.1593 94 + -8.8410 30.3814 30.3814 -Times_New_Roman.ttf 21 u 28.6577 27.1593 95 X -13.1898 42.0000 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 96 » -1.2264 24.9427 27.1593 -Times_New_Roman.ttf 21 u 28.6577 27.1593 97 ' -14.3251 5.2134 16.3814 -Times_New_Roman.ttf 21 u 28.6577 27.1593 98 ¢ -11.3902 21.9459 47.5645 -Times_New_Roman.ttf 21 u 28.6577 27.1593 99 Z -13.0092 33.9535 38.9597 -Times_New_Roman.ttf 21 u 28.6577 27.1593 100 > -8.7239 30.8320 29.1907 -Times_New_Roman.ttf 21 u 28.6577 27.1593 101 ® -14.3843 40.3587 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 102 © -14.1989 40.3587 41.3411 -Times_New_Roman.ttf 21 u 28.6577 27.1593 103 ] -13.6945 12.6664 51.2372 -Times_New_Roman.ttf 21 u 28.6577 27.1593 104 é -14.0888 22.1278 41.0164 -Times_New_Roman.ttf 21 u 28.6577 27.1593 105 z 0.1287 23.5872 25.9686 -Times_New_Roman.ttf 21 u 28.6577 27.1593 106 _ 36.2137 30.0314 2.3814 -Times_New_Roman.ttf 21 u 28.6577 27.1593 107 ¥ -13.1042 31.4462 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 1 t 4.2466 16.5632 35.7376 -Times_New_Roman.ttf 22 3 21.3876 39.1026 2 h -1.6228 28.4494 40.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 3 a 12.3455 24.3008 28.3500 -Times_New_Roman.ttf 22 3 21.3876 39.1026 4 n 11.8965 28.4494 27.1593 -Times_New_Roman.ttf 22 3 21.3876 39.1026 5 P 0.0683 30.0347 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 6 o 12.0276 25.1680 28.3500 -Times_New_Roman.ttf 22 3 21.3876 39.1026 7 e 12.0387 22.1278 28.3500 -Times_New_Roman.ttf 22 3 21.3876 39.1026 8 : 11.9357 5.2134 28.3500 -Times_New_Roman.ttf 22 3 21.3876 39.1026 9 r 11.7963 19.2134 27.1593 -Times_New_Roman.ttf 22 3 21.3876 39.1026 10 l -1.9142 13.2587 40.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 11 i -1.7414 13.2587 40.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 12 1 0.1333 15.9913 39.1026 -Times_New_Roman.ttf 22 3 21.3876 39.1026 13 | -1.5804 2.3814 53.1680 -Times_New_Roman.ttf 22 3 21.3876 39.1026 14 N 0.4061 43.0089 40.1504 -Times_New_Roman.ttf 22 3 21.3876 39.1026 15 f -1.6067 23.6262 40.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 16 g 12.2079 26.7087 39.8257 -Times_New_Roman.ttf 22 3 21.3876 39.1026 17 d -1.8278 27.3411 42.0000 -Times_New_Roman.ttf 22 3 21.3876 39.1026 18 W -0.0292 55.6923 40.1504 -Times_New_Roman.ttf 22 3 21.3876 39.1026 19 s 11.8187 17.7150 28.3500 -Times_New_Roman.ttf 22 3 21.3876 39.1026 20 c 12.0252 22.1278 28.3500 -Times_New_Roman.ttf 22 3 21.3876 39.1026 21 u 12.8694 28.6577 27.1593 -Times_New_Roman.ttf 22 3 21.3876 39.1026 22 3 -0.1385 21.3876 39.1026 -Times_New_Roman.ttf 22 3 21.3876 39.1026 23 ~ 19.7814 29.8907 7.5948 -Times_New_Roman.ttf 22 3 21.3876 39.1026 24 # -1.8764 26.1769 40.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 25 O -1.0632 37.9372 41.3411 -Times_New_Roman.ttf 22 3 21.3876 39.1026 26 ` -0.0152 8.2536 9.4443 -Times_New_Roman.ttf 22 3 21.3876 39.1026 27 @ -1.6590 49.5948 54.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 28 F -0.1832 29.5407 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 29 S -1.2192 24.9597 41.5229 -Times_New_Roman.ttf 22 3 21.3876 39.1026 30 p 12.2857 26.9510 39.8257 -Times_New_Roman.ttf 22 3 21.3876 39.1026 31 “ -1.2800 21.7123 14.0000 -Times_New_Roman.ttf 22 3 21.3876 39.1026 32 % -0.8383 46.5375 41.3411 -Times_New_Roman.ttf 22 3 21.3876 39.1026 33 £ 0.2658 26.1504 40.2933 -Times_New_Roman.ttf 22 3 21.3876 39.1026 34 . 35.1600 5.2134 5.2134 -Times_New_Roman.ttf 22 3 21.3876 39.1026 35 2 -0.1766 25.4757 39.1026 -Times_New_Roman.ttf 22 3 21.3876 39.1026 36 5 -0.0429 22.0453 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 37 m 11.6564 43.6401 27.1593 -Times_New_Roman.ttf 22 3 21.3876 39.1026 38 V -0.1295 42.2071 40.1504 -Times_New_Roman.ttf 22 3 21.3876 39.1026 39 6 -0.0690 24.6350 39.1026 -Times_New_Roman.ttf 22 3 21.3876 39.1026 40 w 13.2498 42.0012 27.1593 -Times_New_Roman.ttf 22 3 21.3876 39.1026 41 T 0.1813 32.2857 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 42 M -0.0411 50.7900 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 43 G -1.2391 40.3587 41.3411 -Times_New_Roman.ttf 22 3 21.3876 39.1026 44 b -1.7578 26.9510 42.0000 -Times_New_Roman.ttf 22 3 21.3820 39.1149 45 9 -0.0062 24.2671 39.1149 -Times_New_Roman.ttf 22 3 21.3820 39.1149 46 ; 11.9820 8.5769 37.1560 -Times_New_Roman.ttf 22 3 21.3876 39.1026 47 D 0.2356 39.4791 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 48 L 0.0984 33.1140 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 49 y 13.0955 29.1484 38.6350 -Times_New_Roman.ttf 22 3 21.3820 39.1149 50 ‘ -0.8240 8.5769 14.0000 -Times_New_Roman.ttf 22 3 21.3820 39.1149 51 \ -1.7733 16.8851 42.0000 -Times_New_Roman.ttf 22 3 21.3876 39.1026 52 R 0.2230 39.5192 38.9597 -Times_New_Roman.ttf 22 3 21.3820 39.1149 53 < 4.5329 30.8172 29.1949 -Times_New_Roman.ttf 22 3 21.3820 39.1149 54 4 0.0802 25.4620 39.1149 -Times_New_Roman.ttf 22 3 21.3820 39.1149 55 8 -0.0917 22.7514 39.1149 -Times_New_Roman.ttf 22 3 21.3820 39.1149 56 0 0.0000 24.6301 39.1149 -Times_New_Roman.ttf 22 3 21.3876 39.1026 57 A -1.2790 42.0000 40.1504 -Times_New_Roman.ttf 22 3 21.3876 39.1026 58 E 0.1089 34.1229 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 59 B 0.3031 34.7552 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 60 v 13.0312 29.7237 27.1593 -Times_New_Roman.ttf 22 3 21.3876 39.1026 61 k -1.7429 28.4929 40.8093 -Times_New_Roman.ttf 22 3 21.3876 39.1026 62 J 0.2657 20.8981 40.1504 -Times_New_Roman.ttf 22 3 21.3876 39.1026 63 U 0.0516 40.9787 40.1504 -Times_New_Roman.ttf 22 3 21.3876 39.1026 64 j -1.4635 16.0906 53.4757 -Times_New_Roman.ttf 22 3 21.3820 39.1149 65 ( -1.9166 15.8383 52.6957 -Times_New_Roman.ttf 22 3 21.3820 39.1149 66 7 -0.1109 25.4883 38.9668 -Times_New_Roman.ttf 22 3 21.3820 39.1149 67 § -0.6230 20.6180 50.9240 -Times_New_Roman.ttf 22 3 21.3820 39.1149 68 $ -2.7792 23.6237 45.6650 -Times_New_Roman.ttf 22 3 21.3820 39.1149 69 € 0.0697 29.1949 39.1149 -Times_New_Roman.ttf 22 3 21.3820 39.1149 70 / -1.7657 17.5847 42.0000 -Times_New_Roman.ttf 22 3 21.3876 39.1026 71 C -0.9941 34.5469 41.3411 -Times_New_Roman.ttf 22 3 21.3820 39.1149 72 * -1.7225 20.0652 24.4140 -Times_New_Roman.ttf 22 3 21.3820 39.1149 73 ” -0.9978 21.5302 14.0000 -Times_New_Roman.ttf 22 3 21.3820 39.1149 74 ? -1.1525 19.9342 41.3566 -Times_New_Roman.ttf 22 3 21.3820 39.1149 75 { -1.0135 17.0320 52.6957 -Times_New_Roman.ttf 22 3 21.3820 39.1149 76 } -1.3507 17.0320 52.6957 -Times_New_Roman.ttf 22 3 21.3820 39.1149 77 , 35.0186 8.5769 14.0000 -Times_New_Roman.ttf 22 3 21.3876 39.1026 78 I -0.1212 16.7326 38.9597 -Times_New_Roman.ttf 22 3 21.3820 39.1149 79 ° -0.9536 17.5847 17.5847 -Times_New_Roman.ttf 22 3 21.3876 39.1026 80 K 0.3955 41.1593 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 81 H 0.2119 40.8918 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 82 q 11.7963 26.9510 39.8257 -Times_New_Roman.ttf 22 3 21.3820 39.1149 83 & -1.2478 41.3566 41.3566 -Times_New_Roman.ttf 22 3 21.3820 39.1149 84 ’ -1.1994 8.5769 14.0000 -Times_New_Roman.ttf 22 3 21.3820 39.1149 85 [ -0.2714 12.6569 51.2203 -Times_New_Roman.ttf 22 3 21.3820 39.1149 86 - 22.9897 15.1949 5.2070 -Times_New_Roman.ttf 22 3 21.3876 39.1026 87 Y 0.1067 41.7313 38.9597 -Times_New_Roman.ttf 22 3 21.3876 39.1026 88 Q -0.9486 37.9372 51.1101 -Times_New_Roman.ttf 22 3 21.3820 39.1149 89 " -0.9949 14.9789 16.3898 -Times_New_Roman.ttf 22 3 21.3820 39.1149 90 ! -1.1611 5.2070 41.3566 -Times_New_Roman.ttf 22 3 21.3876 39.1026 91 x 13.3053 28.4895 25.9686 -Times_New_Roman.ttf 22 3 21.3820 39.1149 92 ) -1.1393 15.8383 52.6957 -Times_New_Roman.ttf 22 3 21.3820 39.1149 93 = 13.3688 30.1750 12.0135 -Times_New_Roman.ttf 22 3 21.3820 39.1149 94 + 4.3854 30.3898 30.3898 -Times_New_Roman.ttf 22 3 21.3876 39.1026 95 X 0.3125 42.0000 38.9597 -Times_New_Roman.ttf 22 3 21.3820 39.1149 96 » 12.0375 24.9093 27.1680 -Times_New_Roman.ttf 22 3 21.3820 39.1149 97 ' -1.0069 5.2070 16.3898 -Times_New_Roman.ttf 22 3 21.3820 39.1149 98 ¢ 1.4547 21.9610 47.5712 -Times_New_Roman.ttf 22 3 21.3876 39.1026 99 Z 0.3614 33.9535 38.9597 -Times_New_Roman.ttf 22 3 21.3820 39.1149 100 > 4.5959 30.8172 29.1949 -Times_New_Roman.ttf 22 3 21.3820 39.1149 101 ® -1.0830 40.3777 41.3566 -Times_New_Roman.ttf 22 3 21.3820 39.1149 102 © -1.1424 40.3777 41.3566 -Times_New_Roman.ttf 22 3 21.3820 39.1149 103 ] -0.4801 12.6569 51.2203 -Times_New_Roman.ttf 22 3 21.3876 39.1026 104 é -0.5930 22.1278 41.0164 -Times_New_Roman.ttf 22 3 21.3876 39.1026 105 z 13.1302 23.5872 25.9686 -Times_New_Roman.ttf 22 3 21.3820 39.1149 106 _ 49.2903 30.0269 2.3898 -Times_New_Roman.ttf 22 3 21.3820 39.1149 107 ¥ 0.1765 31.4941 38.9668 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 1 t -15.3667 16.5632 35.7376 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 2 h -21.3866 28.4494 40.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 3 a -7.5788 24.3008 28.3500 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 4 n -7.6122 28.4494 27.1593 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 5 P -19.6265 30.0347 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 6 o -7.8698 25.1680 28.3500 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 7 e -7.7177 22.1278 28.3500 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 8 : -7.5099 5.2134 28.3500 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 9 r -7.8930 19.2134 27.1593 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 10 l -21.4182 13.2587 40.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 11 i -21.3713 13.2587 40.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 12 1 -19.7354 15.9913 39.1026 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 13 | -21.5874 2.3814 53.1680 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 14 N -19.2921 43.0089 40.1504 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 15 f -21.3908 23.6262 40.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 16 g -7.6529 26.7087 39.8257 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 17 d -21.1306 27.3411 42.0000 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 18 W -19.4862 55.6923 40.1504 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 19 s -7.6492 17.7150 28.3500 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 20 c -7.9650 22.1278 28.3500 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 21 u -6.3936 28.6577 27.1593 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 22 3 -19.7148 21.3876 39.1026 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 23 ~ -0.2016 29.8907 7.5948 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 24 # -21.3705 26.1769 40.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 25 O -20.7325 37.9372 41.3411 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 26 ` -19.7911 8.2536 9.4443 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 27 @ -21.1780 49.5948 54.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 28 F -19.3646 29.5407 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 29 S -20.7485 24.9597 41.5229 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 30 p -8.0220 26.9510 39.8257 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 31 “ -20.6458 21.7123 14.0000 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 32 % -21.0317 46.5375 41.3411 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 33 £ -19.7319 26.1504 40.2933 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 34 . 15.7118 5.2134 5.2134 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 35 2 -19.5008 25.4757 39.1026 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 36 5 -19.9021 22.0453 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 37 m -7.4577 43.6401 27.1593 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 38 V -19.4342 42.2071 40.1504 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 39 6 -19.7630 24.6350 39.1026 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 40 w -6.3931 42.0012 27.1593 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 41 T -19.5408 32.2857 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 42 M -19.5622 50.7900 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 43 G -21.1136 40.3587 41.3411 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 44 b -21.3887 26.9510 42.0000 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 45 9 -19.6447 24.2671 39.1149 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 46 ; -7.4816 8.5769 37.1560 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 47 D -19.6001 39.4791 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 48 L -19.4226 33.1140 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 49 y -6.8959 29.1484 38.6350 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 50 ‘ -20.8736 8.5769 14.0000 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 51 \ -21.3586 16.8851 42.0000 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 52 R -19.4958 39.5192 38.9597 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 53 < -15.4155 30.8172 29.1949 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 54 4 -19.7966 25.4620 39.1149 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 55 8 -19.6152 22.7514 39.1149 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 56 0 -19.8120 24.6301 39.1149 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 57 A -20.6403 42.0000 40.1504 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 58 E -19.7563 34.1229 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 59 B -19.9340 34.7552 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 60 v -6.7517 29.7237 27.1593 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 61 k -21.0599 28.4929 40.8093 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 62 J -19.6380 20.8981 40.1504 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 63 U -19.5335 40.9787 40.1504 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 64 j -21.3811 16.0906 53.4757 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 65 ( -21.2752 15.8383 52.6957 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 66 7 -19.7392 25.4883 38.9668 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 67 § -20.1299 20.6180 50.9240 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 68 $ -22.7449 23.6237 45.6650 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 69 € -19.8278 29.1949 39.1149 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 70 / -21.1269 17.5847 42.0000 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 71 C -20.5796 34.5469 41.3411 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 72 * -21.2882 20.0652 24.4140 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 73 ” -20.8554 21.5302 14.0000 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 74 ? -20.6642 19.9342 41.3566 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 75 { -21.0553 17.0320 52.6957 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 76 } -20.9925 17.0320 52.6957 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 77 , 15.6181 8.5769 14.0000 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 78 I -19.3235 16.7326 38.9597 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 79 ° -20.6018 17.5847 17.5847 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 80 K -19.4558 41.1593 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 81 H -19.5142 40.8918 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 82 q -7.8854 26.9510 39.8257 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 83 & -20.6190 41.3566 41.3566 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 84 ’ -20.6964 8.5769 14.0000 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 85 [ -20.1501 12.6569 51.2203 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 86 - 3.3561 15.1949 5.2070 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 87 Y -19.1770 41.7313 38.9597 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 88 Q -20.8266 37.9372 51.1101 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 89 " -20.7342 14.9789 16.3898 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 90 ! -20.8020 5.2070 41.3566 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 91 x -6.5132 28.4895 25.9686 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 92 ) -21.0386 15.8383 52.6957 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 93 = -6.4344 30.1750 12.0135 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 94 + -15.1949 30.3898 30.3898 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 95 X -19.6061 42.0000 38.9597 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 96 » -7.7863 24.9093 27.1680 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 97 ' -20.6037 5.2070 16.3898 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 98 ¢ -18.3903 21.9610 47.5712 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 99 Z -19.5769 33.9535 38.9597 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 100 > -15.4054 30.8172 29.1949 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 101 ® -21.0894 40.3777 41.3566 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 102 © -20.3562 40.3777 41.3566 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 103 ] -20.4480 12.6569 51.2203 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 104 é -20.4915 22.1278 41.0164 -Times_New_Roman.ttf 23 ~ 29.8907 7.5948 105 z -6.3876 23.5872 25.9686 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 106 _ 29.5690 30.0269 2.3898 -Times_New_Roman.ttf 23 ~ 29.9208 7.5968 107 ¥ -19.4947 31.4941 38.9668 -Times_New_Roman.ttf 24 # 26.1769 40.8093 1 t 6.0155 16.5632 35.7376 -Times_New_Roman.ttf 24 # 26.1769 40.8093 2 h -0.2992 28.4494 40.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 3 a 13.6973 24.3008 28.3500 -Times_New_Roman.ttf 24 # 26.1769 40.8093 4 n 13.3618 28.4494 27.1593 -Times_New_Roman.ttf 24 # 26.1769 40.8093 5 P 1.8458 30.0347 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 6 o 13.3988 25.1680 28.3500 -Times_New_Roman.ttf 24 # 26.1769 40.8093 7 e 13.6405 22.1278 28.3500 -Times_New_Roman.ttf 24 # 26.1769 40.8093 8 : 13.7357 5.2134 28.3500 -Times_New_Roman.ttf 24 # 26.1769 40.8093 9 r 13.4726 19.2134 27.1593 -Times_New_Roman.ttf 24 # 26.1769 40.8093 10 l 0.0844 13.2587 40.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 11 i -0.0780 13.2587 40.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 12 1 1.2758 15.9913 39.1026 -Times_New_Roman.ttf 24 # 26.1769 40.8093 13 | -0.0266 2.3814 53.1680 -Times_New_Roman.ttf 24 # 26.1769 40.8093 14 N 2.0654 43.0089 40.1504 -Times_New_Roman.ttf 24 # 26.1769 40.8093 15 f -0.2414 23.6262 40.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 16 g 13.1792 26.7087 39.8257 -Times_New_Roman.ttf 24 # 26.1769 40.8093 17 d -0.1420 27.3411 42.0000 -Times_New_Roman.ttf 24 # 26.1769 40.8093 18 W 1.9380 55.6923 40.1504 -Times_New_Roman.ttf 24 # 26.1769 40.8093 19 s 13.3342 17.7150 28.3500 -Times_New_Roman.ttf 24 # 26.1769 40.8093 20 c 13.5706 22.1278 28.3500 -Times_New_Roman.ttf 24 # 26.1769 40.8093 21 u 15.0894 28.6577 27.1593 -Times_New_Roman.ttf 24 # 26.1769 40.8093 22 3 1.6256 21.3876 39.1026 -Times_New_Roman.ttf 24 # 26.1769 40.8093 23 ~ 21.0906 29.8907 7.5948 -Times_New_Roman.ttf 24 # 26.1769 40.8093 24 # 0.0422 26.1769 40.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 25 O 0.5973 37.9372 41.3411 -Times_New_Roman.ttf 24 # 26.1769 40.8093 26 ` 1.5000 8.2536 9.4443 -Times_New_Roman.ttf 24 # 26.1769 40.8093 27 @ 0.1791 49.5948 54.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 28 F 1.6546 29.5407 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 29 S 0.6939 24.9597 41.5229 -Times_New_Roman.ttf 24 # 26.1769 40.8093 30 p 13.5852 26.9510 39.8257 -Times_New_Roman.ttf 24 # 26.1769 40.8093 31 “ 0.5333 21.7123 14.0000 -Times_New_Roman.ttf 24 # 26.1769 40.8093 32 % 0.5930 46.5375 41.3411 -Times_New_Roman.ttf 24 # 26.1769 40.8093 33 £ 1.5381 26.1504 40.2933 -Times_New_Roman.ttf 24 # 26.1769 40.8093 34 . 36.6500 5.2134 5.2134 -Times_New_Roman.ttf 24 # 26.1769 40.8093 35 2 1.8239 25.4757 39.1026 -Times_New_Roman.ttf 24 # 26.1769 40.8093 36 5 1.7496 22.0453 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 37 m 13.6181 43.6401 27.1593 -Times_New_Roman.ttf 24 # 26.1769 40.8093 38 V 1.7111 42.2071 40.1504 -Times_New_Roman.ttf 24 # 26.1769 40.8093 39 6 1.9698 24.6350 39.1026 -Times_New_Roman.ttf 24 # 26.1769 40.8093 40 w 14.7661 42.0012 27.1593 -Times_New_Roman.ttf 24 # 26.1769 40.8093 41 T 1.6762 32.2857 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 42 M 1.9308 50.7900 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 43 G 0.4491 40.3587 41.3411 -Times_New_Roman.ttf 24 # 26.1769 40.8093 44 b 0.2155 26.9510 42.0000 -Times_New_Roman.ttf 24 # 26.1892 40.8051 45 9 1.5393 24.2671 39.1149 -Times_New_Roman.ttf 24 # 26.1892 40.8051 46 ; 13.6331 8.5769 37.1560 -Times_New_Roman.ttf 24 # 26.1769 40.8093 47 D 1.8496 39.4791 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 48 L 1.6466 33.1140 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 49 y 14.6850 29.1484 38.6350 -Times_New_Roman.ttf 24 # 26.1892 40.8051 50 ‘ 0.6491 8.5769 14.0000 -Times_New_Roman.ttf 24 # 26.1892 40.8051 51 \ 0.0323 16.8851 42.0000 -Times_New_Roman.ttf 24 # 26.1769 40.8093 52 R 1.8847 39.5192 38.9597 -Times_New_Roman.ttf 24 # 26.1892 40.8051 53 < 6.2397 30.8172 29.1949 -Times_New_Roman.ttf 24 # 26.1892 40.8051 54 4 1.5865 25.4620 39.1149 -Times_New_Roman.ttf 24 # 26.1892 40.8051 55 8 1.7540 22.7514 39.1149 -Times_New_Roman.ttf 24 # 26.1892 40.8051 56 0 1.6542 24.6301 39.1149 -Times_New_Roman.ttf 24 # 26.1769 40.8093 57 A 0.5306 42.0000 40.1504 -Times_New_Roman.ttf 24 # 26.1769 40.8093 58 E 2.1025 34.1229 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 59 B 1.5735 34.7552 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 60 v 15.0867 29.7237 27.1593 -Times_New_Roman.ttf 24 # 26.1769 40.8093 61 k -0.3400 28.4929 40.8093 -Times_New_Roman.ttf 24 # 26.1769 40.8093 62 J 1.7573 20.8981 40.1504 -Times_New_Roman.ttf 24 # 26.1769 40.8093 63 U 1.8671 40.9787 40.1504 -Times_New_Roman.ttf 24 # 26.1769 40.8093 64 j -0.0552 16.0906 53.4757 -Times_New_Roman.ttf 24 # 26.1892 40.8051 65 ( 0.3702 15.8383 52.6957 -Times_New_Roman.ttf 24 # 26.1892 40.8051 66 7 1.5389 25.4883 38.9668 -Times_New_Roman.ttf 24 # 26.1892 40.8051 67 § 1.2394 20.6180 50.9240 -Times_New_Roman.ttf 24 # 26.1892 40.8051 68 $ -1.2065 23.6237 45.6650 -Times_New_Roman.ttf 24 # 26.1892 40.8051 69 € 1.2616 29.1949 39.1149 -Times_New_Roman.ttf 24 # 26.1892 40.8051 70 / 0.0878 17.5847 42.0000 -Times_New_Roman.ttf 24 # 26.1769 40.8093 71 C 0.7089 34.5469 41.3411 -Times_New_Roman.ttf 24 # 26.1892 40.8051 72 * -0.0907 20.0652 24.4140 -Times_New_Roman.ttf 24 # 26.1892 40.8051 73 ” 0.5837 21.5302 14.0000 -Times_New_Roman.ttf 24 # 26.1892 40.8051 74 ? 0.7438 19.9342 41.3566 -Times_New_Roman.ttf 24 # 26.1892 40.8051 75 { 0.1410 17.0320 52.6957 -Times_New_Roman.ttf 24 # 26.1892 40.8051 76 } 0.6136 17.0320 52.6957 -Times_New_Roman.ttf 24 # 26.1892 40.8051 77 , 36.5778 8.5769 14.0000 -Times_New_Roman.ttf 24 # 26.1769 40.8093 78 I 1.9968 16.7326 38.9597 -Times_New_Roman.ttf 24 # 26.1892 40.8051 79 ° 0.8367 17.5847 17.5847 -Times_New_Roman.ttf 24 # 26.1769 40.8093 80 K 1.9262 41.1593 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 81 H 1.9097 40.8918 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 82 q 13.5138 26.9510 39.8257 -Times_New_Roman.ttf 24 # 26.1892 40.8051 83 & 0.7692 41.3566 41.3566 -Times_New_Roman.ttf 24 # 26.1892 40.8051 84 ’ 0.4152 8.5769 14.0000 -Times_New_Roman.ttf 24 # 26.1892 40.8051 85 [ 1.3557 12.6569 51.2203 -Times_New_Roman.ttf 24 # 26.1892 40.8051 86 - 24.6770 15.1949 5.2070 -Times_New_Roman.ttf 24 # 26.1769 40.8093 87 Y 1.6800 41.7313 38.9597 -Times_New_Roman.ttf 24 # 26.1769 40.8093 88 Q 0.7112 37.9372 51.1101 -Times_New_Roman.ttf 24 # 26.1892 40.8051 89 " 0.8355 14.9789 16.3898 -Times_New_Roman.ttf 24 # 26.1892 40.8051 90 ! 0.5852 5.2070 41.3566 -Times_New_Roman.ttf 24 # 26.1769 40.8093 91 x 14.8799 28.4895 25.9686 -Times_New_Roman.ttf 24 # 26.1892 40.8051 92 ) 0.2712 15.8383 52.6957 -Times_New_Roman.ttf 24 # 26.1892 40.8051 93 = 15.1653 30.1750 12.0135 -Times_New_Roman.ttf 24 # 26.1892 40.8051 94 + 6.1012 30.3898 30.3898 -Times_New_Roman.ttf 24 # 26.1769 40.8093 95 X 2.0910 42.0000 38.9597 -Times_New_Roman.ttf 24 # 26.1892 40.8051 96 » 13.6939 24.9093 27.1680 -Times_New_Roman.ttf 24 # 26.1892 40.8051 97 ' 0.4970 5.2070 16.3898 -Times_New_Roman.ttf 24 # 26.1892 40.8051 98 ¢ 3.0191 21.9610 47.5712 -Times_New_Roman.ttf 24 # 26.1769 40.8093 99 Z 1.5991 33.9535 38.9597 -Times_New_Roman.ttf 24 # 26.1892 40.8051 100 > 6.0482 30.8172 29.1949 -Times_New_Roman.ttf 24 # 26.1892 40.8051 101 ® 0.5017 40.3777 41.3566 -Times_New_Roman.ttf 24 # 26.1892 40.8051 102 © 0.8208 40.3777 41.3566 -Times_New_Roman.ttf 24 # 26.1892 40.8051 103 ] 1.3583 12.6569 51.2203 -Times_New_Roman.ttf 24 # 26.1769 40.8093 104 é 0.8996 22.1278 41.0164 -Times_New_Roman.ttf 24 # 26.1769 40.8093 105 z 14.5821 23.5872 25.9686 -Times_New_Roman.ttf 24 # 26.1892 40.8051 106 _ 51.4094 30.0269 2.3898 -Times_New_Roman.ttf 24 # 26.1892 40.8051 107 ¥ 1.7675 31.4941 38.9668 -Times_New_Roman.ttf 25 O 37.9372 41.3411 1 t 5.3849 16.5632 35.7376 -Times_New_Roman.ttf 25 O 37.9372 41.3411 2 h -0.7116 28.4494 40.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 3 a 12.7802 24.3008 28.3500 -Times_New_Roman.ttf 25 O 37.9372 41.3411 4 n 13.2607 28.4494 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 5 P 1.2462 30.0347 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 6 o 12.9755 25.1680 28.3500 -Times_New_Roman.ttf 25 O 37.9372 41.3411 7 e 12.8715 22.1278 28.3500 -Times_New_Roman.ttf 25 O 37.9372 41.3411 8 : 12.8669 5.2134 28.3500 -Times_New_Roman.ttf 25 O 37.9372 41.3411 9 r 12.8771 19.2134 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 10 l -0.6360 13.2587 40.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 11 i -0.9295 13.2587 40.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 12 1 1.1933 15.9913 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 13 | -0.6807 2.3814 53.1680 -Times_New_Roman.ttf 25 O 37.9372 41.3411 14 N 1.2550 43.0089 40.1504 -Times_New_Roman.ttf 25 O 37.9372 41.3411 15 f -0.4810 23.6262 40.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 16 g 12.8502 26.7087 39.8257 -Times_New_Roman.ttf 25 O 37.9372 41.3411 17 d -0.6845 27.3411 42.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 18 W 1.1176 55.6923 40.1504 -Times_New_Roman.ttf 25 O 37.9372 41.3411 19 s 13.0212 17.7150 28.3500 -Times_New_Roman.ttf 25 O 37.9372 41.3411 20 c 12.7432 22.1278 28.3500 -Times_New_Roman.ttf 25 O 37.9372 41.3411 21 u 14.2864 28.6577 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 22 3 1.0530 21.3876 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 23 ~ 20.8093 29.8907 7.5948 -Times_New_Roman.ttf 25 O 37.9372 41.3411 24 # -0.5277 26.1769 40.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 25 O 0.0701 37.9372 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 26 ` 0.8059 8.2536 9.4443 -Times_New_Roman.ttf 25 O 37.9372 41.3411 27 @ -0.5310 49.5948 54.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 28 F 0.9683 29.5407 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 29 S -0.4601 24.9597 41.5229 -Times_New_Roman.ttf 25 O 37.9372 41.3411 30 p 13.0596 26.9510 39.8257 -Times_New_Roman.ttf 25 O 37.9372 41.3411 31 “ 0.2505 21.7123 14.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 32 % 0.1210 46.5375 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 33 £ 1.0429 26.1504 40.2933 -Times_New_Roman.ttf 25 O 37.9372 41.3411 34 . 36.0401 5.2134 5.2134 -Times_New_Roman.ttf 25 O 37.9372 41.3411 35 2 1.3745 25.4757 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 36 5 1.4646 22.0453 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 37 m 12.8092 43.6401 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 38 V 1.3447 42.2071 40.1504 -Times_New_Roman.ttf 25 O 37.9372 41.3411 39 6 0.8491 24.6350 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 40 w 14.3162 42.0012 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 41 T 1.4937 32.2857 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 42 M 0.9947 50.7900 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 43 G 0.1038 40.3587 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 44 b -0.7663 26.9510 42.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 45 9 1.0911 24.2850 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 46 ; 13.0708 8.5783 37.1366 -Times_New_Roman.ttf 25 O 37.9372 41.3411 47 D 0.8067 39.4791 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 48 L 1.2351 33.1140 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 49 y 14.5346 29.1484 38.6350 -Times_New_Roman.ttf 25 O 37.9372 41.3411 50 ‘ 0.2960 8.5783 14.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 51 \ -0.8048 16.8974 42.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 52 R 1.0294 39.5192 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 53 < 5.7104 30.8320 29.1907 -Times_New_Roman.ttf 25 O 37.9372 41.3411 54 4 1.1434 25.4757 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 55 8 1.0247 22.7465 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 56 0 1.0164 24.6350 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 57 A -0.1224 42.0000 40.1504 -Times_New_Roman.ttf 25 O 37.9372 41.3411 58 E 1.1141 34.1229 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 59 B 0.9552 34.7552 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 60 v 14.2137 29.7237 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 61 k -0.5099 28.4929 40.8093 -Times_New_Roman.ttf 25 O 37.9372 41.3411 62 J 1.4947 20.8981 40.1504 -Times_New_Roman.ttf 25 O 37.9372 41.3411 63 U 0.9836 40.9787 40.1504 -Times_New_Roman.ttf 25 O 37.9372 41.3411 64 j -0.5885 16.0906 53.4757 -Times_New_Roman.ttf 25 O 37.9372 41.3411 65 ( -0.4758 15.8496 52.7368 -Times_New_Roman.ttf 25 O 37.9372 41.3411 66 7 1.1880 25.5011 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 67 § 0.6106 20.6124 50.9515 -Times_New_Roman.ttf 25 O 37.9372 41.3411 68 $ -1.8110 23.6262 45.6495 -Times_New_Roman.ttf 25 O 37.9372 41.3411 69 € 0.9705 29.1907 39.1026 -Times_New_Roman.ttf 25 O 37.9372 41.3411 70 / -0.7033 17.5721 42.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 71 C -0.0505 34.5469 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 72 * -0.5712 20.0794 24.4267 -Times_New_Roman.ttf 25 O 37.9372 41.3411 73 ” -0.1339 21.5305 14.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 74 ? 0.2196 19.9145 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 75 { -0.4345 17.0391 52.7368 -Times_New_Roman.ttf 25 O 37.9372 41.3411 76 } -0.5257 17.0391 52.7368 -Times_New_Roman.ttf 25 O 37.9372 41.3411 77 , 36.3541 8.5783 14.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 78 I 1.7128 16.7326 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 79 ° -0.1478 17.5721 17.5721 -Times_New_Roman.ttf 25 O 37.9372 41.3411 80 K 1.1281 41.1593 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 81 H 1.2278 40.8918 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 82 q 12.9457 26.9510 39.8257 -Times_New_Roman.ttf 25 O 37.9372 41.3411 83 & 0.2186 41.3411 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 84 ’ 0.2656 8.5783 14.0000 -Times_New_Roman.ttf 25 O 37.9372 41.3411 85 [ 0.5833 12.6664 51.2372 -Times_New_Roman.ttf 25 O 37.9372 41.3411 86 - 23.8004 15.1907 5.2134 -Times_New_Roman.ttf 25 O 37.9372 41.3411 87 Y 1.1194 41.7313 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 88 Q 0.3726 37.9372 51.1101 -Times_New_Roman.ttf 25 O 37.9372 41.3411 89 " 0.2914 14.9824 16.3814 -Times_New_Roman.ttf 25 O 37.9372 41.3411 90 ! 0.1594 5.2134 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 91 x 14.2572 28.4895 25.9686 -Times_New_Roman.ttf 25 O 37.9372 41.3411 92 ) 0.2145 15.8496 52.7368 -Times_New_Roman.ttf 25 O 37.9372 41.3411 93 = 14.3781 30.1743 12.0076 -Times_New_Roman.ttf 25 O 37.9372 41.3411 94 + 5.2823 30.3814 30.3814 -Times_New_Roman.ttf 25 O 37.9372 41.3411 95 X 1.0869 42.0000 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 96 » 12.8577 24.9427 27.1593 -Times_New_Roman.ttf 25 O 37.9372 41.3411 97 ' -0.2359 5.2134 16.3814 -Times_New_Roman.ttf 25 O 37.9372 41.3411 98 ¢ 2.4831 21.9459 47.5645 -Times_New_Roman.ttf 25 O 37.9372 41.3411 99 Z 1.3065 33.9535 38.9597 -Times_New_Roman.ttf 25 O 37.9372 41.3411 100 > 5.5528 30.8320 29.1907 -Times_New_Roman.ttf 25 O 37.9372 41.3411 101 ® -0.0734 40.3587 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 102 © 0.2329 40.3587 41.3411 -Times_New_Roman.ttf 25 O 37.9372 41.3411 103 ] 0.2065 12.6664 51.2372 -Times_New_Roman.ttf 25 O 37.9372 41.3411 104 é 0.2657 22.1278 41.0164 -Times_New_Roman.ttf 25 O 37.9372 41.3411 105 z 14.1902 23.5872 25.9686 -Times_New_Roman.ttf 25 O 37.9372 41.3411 106 _ 50.3997 30.0314 2.3814 -Times_New_Roman.ttf 25 O 37.9372 41.3411 107 ¥ 1.0332 31.4462 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 1 t 4.9600 16.5632 35.7376 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 2 h -1.3143 28.4494 40.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 3 a 12.1934 24.3008 28.3500 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 4 n 12.2082 28.4494 27.1593 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 5 P 0.4598 30.0347 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 6 o 12.1475 25.1680 28.3500 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 7 e 12.0776 22.1278 28.3500 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 8 : 12.1346 5.2134 28.3500 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 9 r 12.3844 19.2134 27.1593 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 10 l -1.5626 13.2587 40.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 11 i -1.4742 13.2587 40.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 12 1 0.3669 15.9913 39.1026 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 13 | -1.5076 2.3814 53.1680 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 14 N 0.3786 43.0089 40.1504 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 15 f -1.4360 23.6262 40.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 16 g 12.0688 26.7087 39.8257 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 17 d -1.4049 27.3411 42.0000 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 18 W 0.4671 55.6923 40.1504 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 19 s 12.0650 17.7150 28.3500 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 20 c 12.1346 22.1278 28.3500 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 21 u 13.4600 28.6577 27.1593 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 22 3 0.3424 21.3876 39.1026 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 23 ~ 19.7953 29.8907 7.5948 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 24 # -1.5307 26.1769 40.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 25 O -0.9289 37.9372 41.3411 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 26 ` 0.1071 8.2536 9.4443 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 27 @ -1.6413 49.5948 54.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 28 F 0.2957 29.5407 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 29 S -0.9313 24.9597 41.5229 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 30 p 12.0763 26.9510 39.8257 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 31 “ -0.9450 21.7123 14.0000 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 32 % -0.8180 46.5375 41.3411 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 33 £ 0.2798 26.1504 40.2933 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 34 . 35.5936 5.2134 5.2134 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 35 2 0.1172 25.4757 39.1026 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 36 5 0.4955 22.0453 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 37 m 12.1231 43.6401 27.1593 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 38 V 0.2513 42.2071 40.1504 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 39 6 0.2414 24.6350 39.1026 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 40 w 13.4912 42.0012 27.1593 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 41 T 0.1541 32.2857 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 42 M 0.2568 50.7900 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 43 G -0.7715 40.3587 41.3411 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 44 b -1.6729 26.9510 42.0000 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 45 9 0.1528 24.2671 39.1149 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 46 ; 12.1029 8.5769 37.1560 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 47 D 0.4342 39.4791 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 48 L 0.2530 33.1140 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 49 y 13.4055 29.1484 38.6350 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 50 ‘ -0.8479 8.5769 14.0000 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 51 \ -1.5668 16.8851 42.0000 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 52 R 0.3675 39.5192 38.9597 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 53 < 4.6732 30.8172 29.1949 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 54 4 0.2575 25.4620 39.1149 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 55 8 0.0283 22.7514 39.1149 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 56 0 0.0510 24.6301 39.1149 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 57 A -0.9404 42.0000 40.1504 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 58 E 0.2503 34.1229 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 59 B 0.3342 34.7552 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 60 v 13.3920 29.7237 27.1593 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 61 k -1.2656 28.4929 40.8093 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 62 J 0.2568 20.8981 40.1504 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 63 U 0.4528 40.9787 40.1504 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 64 j -1.5511 16.0906 53.4757 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 65 ( -1.2028 15.8383 52.6957 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 66 7 0.2707 25.4883 38.9668 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 67 § -0.1174 20.6180 50.9240 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 68 $ -2.6586 23.6237 45.6650 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 69 € 0.1917 29.1949 39.1149 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 70 / -1.5687 17.5847 42.0000 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 71 C -0.8884 34.5469 41.3411 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 72 * -1.3643 20.0652 24.4140 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 73 ” -0.7806 21.5302 14.0000 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 74 ? -1.0982 19.9342 41.3566 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 75 { -1.3378 17.0320 52.6957 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 76 } -1.2186 17.0320 52.6957 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 77 , 35.2973 8.5769 14.0000 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 78 I 0.0842 16.7326 38.9597 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 79 ° -0.8080 17.5847 17.5847 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 80 K 0.2859 41.1593 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 81 H 0.5000 40.8918 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 82 q 12.2301 26.9510 39.8257 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 83 & -1.0602 41.3566 41.3566 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 84 ’ -0.9401 8.5769 14.0000 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 85 [ -0.2968 12.6569 51.2203 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 86 - 22.9934 15.1949 5.2070 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 87 Y 0.2457 41.7313 38.9597 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 88 Q -0.8537 37.9372 51.1101 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 89 " -1.2869 14.9789 16.3898 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 90 ! -1.1988 5.2070 41.3566 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 91 x 13.3924 28.4895 25.9686 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 92 ) -1.2724 15.8383 52.6957 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 93 = 13.7336 30.1750 12.0135 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 94 + 4.5119 30.3898 30.3898 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 95 X 0.5455 42.0000 38.9597 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 96 » 12.2711 24.9093 27.1680 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 97 ' -0.6212 5.2070 16.3898 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 98 ¢ 1.7892 21.9610 47.5712 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 99 Z 0.3463 33.9535 38.9597 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 100 > 4.5354 30.8172 29.1949 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 101 ® -0.8997 40.3777 41.3566 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 102 © -0.9253 40.3777 41.3566 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 103 ] -0.1452 12.6569 51.2203 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 104 é -0.4318 22.1278 41.0164 -Times_New_Roman.ttf 26 ` 8.2536 9.4443 105 z 13.4783 23.5872 25.9686 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 106 _ 49.5612 30.0269 2.3898 -Times_New_Roman.ttf 26 ` 8.2402 9.4352 107 ¥ 0.3427 31.4941 38.9668 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 1 t 6.2651 16.5632 35.7376 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 2 h -0.4116 28.4494 40.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 3 a 13.6524 24.3008 28.3500 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 4 n 13.5308 28.4494 27.1593 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 5 P 1.9200 30.0347 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 6 o 13.1389 25.1680 28.3500 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 7 e 13.6156 22.1278 28.3500 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 8 : 13.9133 5.2134 28.3500 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 9 r 14.0253 19.2134 27.1593 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 10 l -0.1213 13.2587 40.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 11 i -0.1548 13.2587 40.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 12 1 1.5427 15.9913 39.1026 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 13 | -0.0301 2.3814 53.1680 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 14 N 1.9320 43.0089 40.1504 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 15 f 0.0850 23.6262 40.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 16 g 13.7277 26.7087 39.8257 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 17 d -0.1156 27.3411 42.0000 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 18 W 1.4803 55.6923 40.1504 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 19 s 13.6617 17.7150 28.3500 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 20 c 13.4902 22.1278 28.3500 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 21 u 15.2294 28.6577 27.1593 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 22 3 1.8176 21.3876 39.1026 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 23 ~ 21.5790 29.8907 7.5948 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 24 # -0.1298 26.1769 40.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 25 O 0.7959 37.9372 41.3411 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 26 ` 1.6355 8.2536 9.4443 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 27 @ 0.1756 49.5948 54.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 28 F 1.9090 29.5407 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 29 S 0.7859 24.9597 41.5229 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 30 p 13.8543 26.9510 39.8257 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 31 “ 0.4172 21.7123 14.0000 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 32 % 0.9194 46.5375 41.3411 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 33 £ 1.4126 26.1504 40.2933 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 34 . 37.0007 5.2134 5.2134 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 35 2 1.9673 25.4757 39.1026 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 36 5 1.5179 22.0453 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 37 m 13.8561 43.6401 27.1593 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 38 V 1.8145 42.2071 40.1504 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 39 6 2.0283 24.6350 39.1026 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 40 w 15.0789 42.0012 27.1593 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 41 T 1.9913 32.2857 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 42 M 1.9090 50.7900 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 43 G 0.5918 40.3587 41.3411 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 44 b 0.2168 26.9510 42.0000 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 45 9 1.3168 24.2671 39.1149 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 46 ; 13.4764 8.5769 37.1560 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 47 D 1.8040 39.4791 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 48 L 1.8353 33.1140 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 49 y 14.9949 29.1484 38.6350 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 50 ‘ 0.3786 8.5769 14.0000 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 51 \ 0.1425 16.8851 42.0000 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 52 R 1.7611 39.5192 38.9597 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 53 < 6.0492 30.8172 29.1949 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 54 4 1.4812 25.4620 39.1149 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 55 8 1.4370 22.7514 39.1149 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 56 0 1.6019 24.6301 39.1149 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 57 A 0.8795 42.0000 40.1504 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 58 E 1.7702 34.1229 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 59 B 1.2375 34.7552 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 60 v 14.4686 29.7237 27.1593 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 61 k 0.4600 28.4929 40.8093 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 62 J 2.1091 20.8981 40.1504 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 63 U 1.8440 40.9787 40.1504 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 64 j 0.1675 16.0906 53.4757 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 65 ( 0.2436 15.8383 52.6957 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 66 7 1.6769 25.4883 38.9668 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 67 § 1.4451 20.6180 50.9240 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 68 $ -1.2000 23.6237 45.6650 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 69 € 1.5792 29.1949 39.1149 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 70 / -0.2316 17.5847 42.0000 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 71 C 0.8086 34.5469 41.3411 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 72 * -0.1129 20.0652 24.4140 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 73 ” 0.5017 21.5302 14.0000 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 74 ? 0.7305 19.9342 41.3566 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 75 { 0.6619 17.0320 52.6957 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 76 } 0.1215 17.0320 52.6957 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 77 , 36.4342 8.5769 14.0000 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 78 I 2.3552 16.7326 38.9597 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 79 ° 0.6064 17.5847 17.5847 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 80 K 1.9895 41.1593 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 81 H 1.8084 40.8918 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 82 q 13.7714 26.9510 39.8257 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 83 & 0.4527 41.3566 41.3566 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 84 ’ 0.4175 8.5769 14.0000 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 85 [ 1.3381 12.6569 51.2203 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 86 - 24.2211 15.1949 5.2070 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 87 Y 1.8190 41.7313 38.9597 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 88 Q 0.4478 37.9372 51.1101 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 89 " 0.6269 14.9789 16.3898 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 90 ! 0.7219 5.2070 41.3566 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 91 x 14.8820 28.4895 25.9686 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 92 ) 0.3870 15.8383 52.6957 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 93 = 15.1316 30.1750 12.0135 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 94 + 5.9867 30.3898 30.3898 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 95 X 1.5116 42.0000 38.9597 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 96 » 13.8084 24.9093 27.1680 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 97 ' 0.4027 5.2070 16.3898 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 98 ¢ 3.3870 21.9610 47.5712 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 99 Z 1.9948 33.9535 38.9597 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 100 > 6.2616 30.8172 29.1949 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 101 ® 0.4787 40.3777 41.3566 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 102 © 0.6833 40.3777 41.3566 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 103 ] 1.1504 12.6569 51.2203 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 104 é 1.0022 22.1278 41.0164 -Times_New_Roman.ttf 27 @ 49.5948 54.8093 105 z 14.6354 23.5872 25.9686 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 106 _ 51.0005 30.0269 2.3898 -Times_New_Roman.ttf 27 @ 49.5968 54.8051 107 ¥ 1.8088 31.4941 38.9668 -Times_New_Roman.ttf 28 F 29.5407 38.9597 1 t 4.5110 16.5632 35.7376 -Times_New_Roman.ttf 28 F 29.5407 38.9597 2 h -2.0154 28.4494 40.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 3 a 11.8396 24.3008 28.3500 -Times_New_Roman.ttf 28 F 29.5407 38.9597 4 n 11.9233 28.4494 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 5 P 0.0301 30.0347 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 6 o 11.9570 25.1680 28.3500 -Times_New_Roman.ttf 28 F 29.5407 38.9597 7 e 11.9728 22.1278 28.3500 -Times_New_Roman.ttf 28 F 29.5407 38.9597 8 : 11.8959 5.2134 28.3500 -Times_New_Roman.ttf 28 F 29.5407 38.9597 9 r 11.7542 19.2134 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 10 l -1.7601 13.2587 40.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 11 i -1.7996 13.2587 40.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 12 1 -0.2838 15.9913 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 13 | -2.0127 2.3814 53.1680 -Times_New_Roman.ttf 28 F 29.5407 38.9597 14 N 0.1839 43.0089 40.1504 -Times_New_Roman.ttf 28 F 29.5407 38.9597 15 f -1.7272 23.6262 40.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 16 g 12.0182 26.7087 39.8257 -Times_New_Roman.ttf 28 F 29.5407 38.9597 17 d -1.9593 27.3411 42.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 18 W 0.0955 55.6923 40.1504 -Times_New_Roman.ttf 28 F 29.5407 38.9597 19 s 11.8042 17.7150 28.3500 -Times_New_Roman.ttf 28 F 29.5407 38.9597 20 c 11.8889 22.1278 28.3500 -Times_New_Roman.ttf 28 F 29.5407 38.9597 21 u 12.7826 28.6577 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 22 3 -0.3337 21.3876 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 23 ~ 19.6362 29.8907 7.5948 -Times_New_Roman.ttf 28 F 29.5407 38.9597 24 # -1.7953 26.1769 40.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 25 O -1.4065 37.9372 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 26 ` -0.1711 8.2536 9.4443 -Times_New_Roman.ttf 28 F 29.5407 38.9597 27 @ -1.6267 49.5948 54.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 28 F -0.1568 29.5407 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 29 S -1.1876 24.9597 41.5229 -Times_New_Roman.ttf 28 F 29.5407 38.9597 30 p 11.7977 26.9510 39.8257 -Times_New_Roman.ttf 28 F 29.5407 38.9597 31 “ -0.8955 21.7123 14.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 32 % -1.1463 46.5375 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 33 £ -0.0039 26.1504 40.2933 -Times_New_Roman.ttf 28 F 29.5407 38.9597 34 . 34.9529 5.2134 5.2134 -Times_New_Roman.ttf 28 F 29.5407 38.9597 35 2 -0.1345 25.4757 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 36 5 -0.1530 22.0453 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 37 m 11.7962 43.6401 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 38 V -0.1571 42.2071 40.1504 -Times_New_Roman.ttf 28 F 29.5407 38.9597 39 6 -0.1230 24.6350 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 40 w 12.6713 42.0012 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 41 T 0.0742 32.2857 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 42 M 0.1616 50.7900 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 43 G -1.2004 40.3587 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 44 b -1.8385 26.9510 42.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 45 9 -0.1039 24.2850 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 46 ; 11.7014 8.5783 37.1366 -Times_New_Roman.ttf 28 F 29.5407 38.9597 47 D -0.0115 39.4791 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 48 L 0.1245 33.1140 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 49 y 12.9683 29.1484 38.6350 -Times_New_Roman.ttf 28 F 29.5407 38.9597 50 ‘ -1.1319 8.5783 14.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 51 \ -1.9671 16.8974 42.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 52 R 0.0027 39.5192 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 53 < 4.2033 30.8320 29.1907 -Times_New_Roman.ttf 28 F 29.5407 38.9597 54 4 -0.1159 25.4757 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 55 8 -0.3351 22.7465 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 56 0 -0.1429 24.6350 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 57 A -1.1500 42.0000 40.1504 -Times_New_Roman.ttf 28 F 29.5407 38.9597 58 E 0.1842 34.1229 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 59 B 0.1145 34.7552 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 60 v 12.6316 29.7237 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 61 k -1.8958 28.4929 40.8093 -Times_New_Roman.ttf 28 F 29.5407 38.9597 62 J 0.0968 20.8981 40.1504 -Times_New_Roman.ttf 28 F 29.5407 38.9597 63 U 0.1621 40.9787 40.1504 -Times_New_Roman.ttf 28 F 29.5407 38.9597 64 j -2.1336 16.0906 53.4757 -Times_New_Roman.ttf 28 F 29.5407 38.9597 65 ( -1.3134 15.8496 52.7368 -Times_New_Roman.ttf 28 F 29.5407 38.9597 66 7 0.1801 25.5011 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 67 § -0.4303 20.6124 50.9515 -Times_New_Roman.ttf 28 F 29.5407 38.9597 68 $ -3.0549 23.6262 45.6495 -Times_New_Roman.ttf 28 F 29.5407 38.9597 69 € -0.2740 29.1907 39.1026 -Times_New_Roman.ttf 28 F 29.5407 38.9597 70 / -1.7702 17.5721 42.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 71 C -0.9738 34.5469 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 72 * -1.8639 20.0794 24.4267 -Times_New_Roman.ttf 28 F 29.5407 38.9597 73 ” -1.1990 21.5305 14.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 74 ? -1.2978 19.9145 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 75 { -1.5061 17.0391 52.7368 -Times_New_Roman.ttf 28 F 29.5407 38.9597 76 } -1.4742 17.0391 52.7368 -Times_New_Roman.ttf 28 F 29.5407 38.9597 77 , 35.0122 8.5783 14.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 78 I -0.2455 16.7326 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 79 ° -1.3889 17.5721 17.5721 -Times_New_Roman.ttf 28 F 29.5407 38.9597 80 K -0.2585 41.1593 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 81 H -0.1000 40.8918 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 82 q 11.6818 26.9510 39.8257 -Times_New_Roman.ttf 28 F 29.5407 38.9597 83 & -1.6198 41.3411 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 84 ’ -1.2606 8.5783 14.0000 -Times_New_Roman.ttf 28 F 29.5407 38.9597 85 [ -0.7043 12.6664 51.2372 -Times_New_Roman.ttf 28 F 29.5407 38.9597 86 - 22.6291 15.1907 5.2134 -Times_New_Roman.ttf 28 F 29.5407 38.9597 87 Y -0.1839 41.7313 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 88 Q -1.1968 37.9372 51.1101 -Times_New_Roman.ttf 28 F 29.5407 38.9597 89 " -1.3135 14.9824 16.3814 -Times_New_Roman.ttf 28 F 29.5407 38.9597 90 ! -1.1068 5.2134 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 91 x 13.2623 28.4895 25.9686 -Times_New_Roman.ttf 28 F 29.5407 38.9597 92 ) -1.5265 15.8496 52.7368 -Times_New_Roman.ttf 28 F 29.5407 38.9597 93 = 13.4112 30.1743 12.0076 -Times_New_Roman.ttf 28 F 29.5407 38.9597 94 + 4.3001 30.3814 30.3814 -Times_New_Roman.ttf 28 F 29.5407 38.9597 95 X -0.0930 42.0000 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 96 » 11.8778 24.9427 27.1593 -Times_New_Roman.ttf 28 F 29.5407 38.9597 97 ' -0.8767 5.2134 16.3814 -Times_New_Roman.ttf 28 F 29.5407 38.9597 98 ¢ 1.5949 21.9459 47.5645 -Times_New_Roman.ttf 28 F 29.5407 38.9597 99 Z 0.1262 33.9535 38.9597 -Times_New_Roman.ttf 28 F 29.5407 38.9597 100 > 4.0843 30.8320 29.1907 -Times_New_Roman.ttf 28 F 29.5407 38.9597 101 ® -1.0054 40.3587 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 102 © -1.3455 40.3587 41.3411 -Times_New_Roman.ttf 28 F 29.5407 38.9597 103 ] -0.6343 12.6664 51.2372 -Times_New_Roman.ttf 28 F 29.5407 38.9597 104 é -0.9907 22.1278 41.0164 -Times_New_Roman.ttf 28 F 29.5407 38.9597 105 z 12.6539 23.5872 25.9686 -Times_New_Roman.ttf 28 F 29.5407 38.9597 106 _ 49.0063 30.0314 2.3814 -Times_New_Roman.ttf 28 F 29.5407 38.9597 107 ¥ -0.1794 31.4462 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 1 t 5.3981 16.5632 35.7376 -Times_New_Roman.ttf 29 S 24.9597 41.5229 2 h -0.6481 28.4494 40.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 3 a 13.1313 24.3008 28.3500 -Times_New_Roman.ttf 29 S 24.9597 41.5229 4 n 13.2503 28.4494 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 5 P 1.0283 30.0347 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 6 o 12.8788 25.1680 28.3500 -Times_New_Roman.ttf 29 S 24.9597 41.5229 7 e 12.7930 22.1278 28.3500 -Times_New_Roman.ttf 29 S 24.9597 41.5229 8 : 13.1388 5.2134 28.3500 -Times_New_Roman.ttf 29 S 24.9597 41.5229 9 r 13.1327 19.2134 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 10 l -0.6957 13.2587 40.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 11 i -0.3414 13.2587 40.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 12 1 1.4711 15.9913 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 13 | -0.4730 2.3814 53.1680 -Times_New_Roman.ttf 29 S 24.9597 41.5229 14 N 1.4981 43.0089 40.1504 -Times_New_Roman.ttf 29 S 24.9597 41.5229 15 f -0.4042 23.6262 40.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 16 g 13.0334 26.7087 39.8257 -Times_New_Roman.ttf 29 S 24.9597 41.5229 17 d -0.5314 27.3411 42.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 18 W 1.0468 55.6923 40.1504 -Times_New_Roman.ttf 29 S 24.9597 41.5229 19 s 13.1073 17.7150 28.3500 -Times_New_Roman.ttf 29 S 24.9597 41.5229 20 c 13.3614 22.1278 28.3500 -Times_New_Roman.ttf 29 S 24.9597 41.5229 21 u 14.2325 28.6577 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 22 3 1.5256 21.3876 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 23 ~ 21.0508 29.8907 7.5948 -Times_New_Roman.ttf 29 S 24.9597 41.5229 24 # -0.5572 26.1769 40.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 25 O 0.5278 37.9372 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 26 ` 0.8632 8.2536 9.4443 -Times_New_Roman.ttf 29 S 24.9597 41.5229 27 @ -0.2214 49.5948 54.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 28 F 1.5893 29.5407 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 29 S 0.0143 24.9597 41.5229 -Times_New_Roman.ttf 29 S 24.9597 41.5229 30 p 13.3086 26.9510 39.8257 -Times_New_Roman.ttf 29 S 24.9597 41.5229 31 “ 0.2384 21.7123 14.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 32 % 0.3474 46.5375 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 33 £ 1.1583 26.1504 40.2933 -Times_New_Roman.ttf 29 S 24.9597 41.5229 34 . 36.5153 5.2134 5.2134 -Times_New_Roman.ttf 29 S 24.9597 41.5229 35 2 1.2731 25.4757 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 36 5 1.3777 22.0453 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 37 m 13.5112 43.6401 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 38 V 1.2612 42.2071 40.1504 -Times_New_Roman.ttf 29 S 24.9597 41.5229 39 6 1.0439 24.6350 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 40 w 14.3641 42.0012 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 41 T 1.2462 32.2857 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 42 M 1.4416 50.7900 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 43 G 0.3904 40.3587 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 44 b -0.7268 26.9510 42.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 45 9 1.1523 24.2850 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 46 ; 12.8666 8.5783 37.1366 -Times_New_Roman.ttf 29 S 24.9597 41.5229 47 D 1.3451 39.4791 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 48 L 0.8795 33.1140 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 49 y 14.3252 29.1484 38.6350 -Times_New_Roman.ttf 29 S 24.9597 41.5229 50 ‘ 0.4421 8.5783 14.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 51 \ -0.6054 16.8974 42.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 52 R 1.2725 39.5192 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 53 < 5.5940 30.8320 29.1907 -Times_New_Roman.ttf 29 S 24.9597 41.5229 54 4 1.1110 25.4757 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 55 8 1.1068 22.7465 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 56 0 1.4143 24.6350 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 57 A 0.3119 42.0000 40.1504 -Times_New_Roman.ttf 29 S 24.9597 41.5229 58 E 1.3617 34.1229 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 59 B 1.2743 34.7552 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 60 v 14.6491 29.7237 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 61 k -0.8246 28.4929 40.8093 -Times_New_Roman.ttf 29 S 24.9597 41.5229 62 J 1.1881 20.8981 40.1504 -Times_New_Roman.ttf 29 S 24.9597 41.5229 63 U 1.2830 40.9787 40.1504 -Times_New_Roman.ttf 29 S 24.9597 41.5229 64 j -0.5929 16.0906 53.4757 -Times_New_Roman.ttf 29 S 24.9597 41.5229 65 ( -0.0233 15.8496 52.7368 -Times_New_Roman.ttf 29 S 24.9597 41.5229 66 7 1.1959 25.5011 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 67 § 1.2020 20.6124 50.9515 -Times_New_Roman.ttf 29 S 24.9597 41.5229 68 $ -1.5623 23.6262 45.6495 -Times_New_Roman.ttf 29 S 24.9597 41.5229 69 € 1.4354 29.1907 39.1026 -Times_New_Roman.ttf 29 S 24.9597 41.5229 70 / -0.3904 17.5721 42.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 71 C 0.1481 34.5469 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 72 * -0.5949 20.0794 24.4267 -Times_New_Roman.ttf 29 S 24.9597 41.5229 73 ” 0.1318 21.5305 14.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 74 ? 0.1791 19.9145 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 75 { -0.1469 17.0391 52.7368 -Times_New_Roman.ttf 29 S 24.9597 41.5229 76 } -0.0570 17.0391 52.7368 -Times_New_Roman.ttf 29 S 24.9597 41.5229 77 , 36.1400 8.5783 14.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 78 I 1.3773 16.7326 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 79 ° 0.1574 17.5721 17.5721 -Times_New_Roman.ttf 29 S 24.9597 41.5229 80 K 1.6163 41.1593 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 81 H 1.2951 40.8918 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 82 q 13.3283 26.9510 39.8257 -Times_New_Roman.ttf 29 S 24.9597 41.5229 83 & -0.0017 41.3411 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 84 ’ 0.0590 8.5783 14.0000 -Times_New_Roman.ttf 29 S 24.9597 41.5229 85 [ 0.9704 12.6664 51.2372 -Times_New_Roman.ttf 29 S 24.9597 41.5229 86 - 24.2611 15.1907 5.2134 -Times_New_Roman.ttf 29 S 24.9597 41.5229 87 Y 1.2658 41.7313 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 88 Q 0.0773 37.9372 51.1101 -Times_New_Roman.ttf 29 S 24.9597 41.5229 89 " 0.2665 14.9824 16.3814 -Times_New_Roman.ttf 29 S 24.9597 41.5229 90 ! 0.2522 5.2134 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 91 x 14.0736 28.4895 25.9686 -Times_New_Roman.ttf 29 S 24.9597 41.5229 92 ) -0.5097 15.8496 52.7368 -Times_New_Roman.ttf 29 S 24.9597 41.5229 93 = 14.5785 30.1743 12.0076 -Times_New_Roman.ttf 29 S 24.9597 41.5229 94 + 5.7462 30.3814 30.3814 -Times_New_Roman.ttf 29 S 24.9597 41.5229 95 X 1.2595 42.0000 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 96 » 13.1870 24.9427 27.1593 -Times_New_Roman.ttf 29 S 24.9597 41.5229 97 ' 0.0507 5.2134 16.3814 -Times_New_Roman.ttf 29 S 24.9597 41.5229 98 ¢ 2.8877 21.9459 47.5645 -Times_New_Roman.ttf 29 S 24.9597 41.5229 99 Z 1.1210 33.9535 38.9597 -Times_New_Roman.ttf 29 S 24.9597 41.5229 100 > 6.0307 30.8320 29.1907 -Times_New_Roman.ttf 29 S 24.9597 41.5229 101 ® 0.0961 40.3587 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 102 © 0.0730 40.3587 41.3411 -Times_New_Roman.ttf 29 S 24.9597 41.5229 103 ] 0.6432 12.6664 51.2372 -Times_New_Roman.ttf 29 S 24.9597 41.5229 104 é 0.3907 22.1278 41.0164 -Times_New_Roman.ttf 29 S 24.9597 41.5229 105 z 14.3598 23.5872 25.9686 -Times_New_Roman.ttf 29 S 24.9597 41.5229 106 _ 50.4851 30.0314 2.3814 -Times_New_Roman.ttf 29 S 24.9597 41.5229 107 ¥ 1.2868 31.4462 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 1 t -7.5933 16.5632 35.7376 -Times_New_Roman.ttf 30 p 26.9510 39.8257 2 h -13.6389 28.4494 40.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 3 a -0.2126 24.3008 28.3500 -Times_New_Roman.ttf 30 p 26.9510 39.8257 4 n -0.3317 28.4494 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 5 P -11.9399 30.0347 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 6 o 0.2207 25.1680 28.3500 -Times_New_Roman.ttf 30 p 26.9510 39.8257 7 e 0.0319 22.1278 28.3500 -Times_New_Roman.ttf 30 p 26.9510 39.8257 8 : 0.0276 5.2134 28.3500 -Times_New_Roman.ttf 30 p 26.9510 39.8257 9 r 0.1998 19.2134 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 10 l -13.6940 13.2587 40.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 11 i -13.9164 13.2587 40.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 12 1 -12.0548 15.9913 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 13 | -13.4804 2.3814 53.1680 -Times_New_Roman.ttf 30 p 26.9510 39.8257 14 N -11.8861 43.0089 40.1504 -Times_New_Roman.ttf 30 p 26.9510 39.8257 15 f -13.4502 23.6262 40.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 16 g 0.2821 26.7087 39.8257 -Times_New_Roman.ttf 30 p 26.9510 39.8257 17 d -13.7812 27.3411 42.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 18 W -11.7718 55.6923 40.1504 -Times_New_Roman.ttf 30 p 26.9510 39.8257 19 s -0.1214 17.7150 28.3500 -Times_New_Roman.ttf 30 p 26.9510 39.8257 20 c 0.0857 22.1278 28.3500 -Times_New_Roman.ttf 30 p 26.9510 39.8257 21 u 1.1925 28.6577 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 22 3 -11.7347 21.3876 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 23 ~ 7.6037 29.8907 7.5948 -Times_New_Roman.ttf 30 p 26.9510 39.8257 24 # -13.9178 26.1769 40.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 25 O -13.2140 37.9372 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 26 ` -11.9650 8.2536 9.4443 -Times_New_Roman.ttf 30 p 26.9510 39.8257 27 @ -13.5903 49.5948 54.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 28 F -11.6697 29.5407 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 29 S -13.2953 24.9597 41.5229 -Times_New_Roman.ttf 30 p 26.9510 39.8257 30 p -0.0325 26.9510 39.8257 -Times_New_Roman.ttf 30 p 26.9510 39.8257 31 “ -13.1562 21.7123 14.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 32 % -12.8037 46.5375 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 33 £ -11.7330 26.1504 40.2933 -Times_New_Roman.ttf 30 p 26.9510 39.8257 34 . 23.0069 5.2134 5.2134 -Times_New_Roman.ttf 30 p 26.9510 39.8257 35 2 -11.8747 25.4757 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 36 5 -11.7730 22.0453 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 37 m 0.1172 43.6401 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 38 V -11.7703 42.2071 40.1504 -Times_New_Roman.ttf 30 p 26.9510 39.8257 39 6 -12.1865 24.6350 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 40 w 1.5178 42.0012 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 41 T -11.7609 32.2857 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 42 M -11.6826 50.7900 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 43 G -13.1425 40.3587 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 44 b -13.8726 26.9510 42.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 45 9 -12.2517 24.2850 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 46 ; 0.1774 8.5783 37.1366 -Times_New_Roman.ttf 30 p 26.9510 39.8257 47 D -11.7725 39.4791 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 48 L -11.7175 33.1140 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 49 y 1.3482 29.1484 38.6350 -Times_New_Roman.ttf 30 p 26.9510 39.8257 50 ‘ -12.9822 8.5783 14.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 51 \ -13.5606 16.8974 42.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 52 R -11.7522 39.5192 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 53 < -7.7719 30.8320 29.1907 -Times_New_Roman.ttf 30 p 26.9510 39.8257 54 4 -11.7005 25.4757 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 55 8 -12.1342 22.7465 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 56 0 -11.7715 24.6350 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 57 A -12.9258 42.0000 40.1504 -Times_New_Roman.ttf 30 p 26.9510 39.8257 58 E -11.4149 34.1229 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 59 B -11.6703 34.7552 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 60 v 1.4678 29.7237 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 61 k -13.6078 28.4929 40.8093 -Times_New_Roman.ttf 30 p 26.9510 39.8257 62 J -11.7120 20.8981 40.1504 -Times_New_Roman.ttf 30 p 26.9510 39.8257 63 U -11.7587 40.9787 40.1504 -Times_New_Roman.ttf 30 p 26.9510 39.8257 64 j -13.7468 16.0906 53.4757 -Times_New_Roman.ttf 30 p 26.9510 39.8257 65 ( -13.1304 15.8496 52.7368 -Times_New_Roman.ttf 30 p 26.9510 39.8257 66 7 -11.8328 25.5011 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 67 § -12.2380 20.6124 50.9515 -Times_New_Roman.ttf 30 p 26.9510 39.8257 68 $ -15.2728 23.6262 45.6495 -Times_New_Roman.ttf 30 p 26.9510 39.8257 69 € -12.0808 29.1907 39.1026 -Times_New_Roman.ttf 30 p 26.9510 39.8257 70 / -13.4638 17.5721 42.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 71 C -12.8029 34.5469 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 72 * -13.5637 20.0794 24.4267 -Times_New_Roman.ttf 30 p 26.9510 39.8257 73 ” -13.1532 21.5305 14.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 74 ? -13.0733 19.9145 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 75 { -13.4889 17.0391 52.7368 -Times_New_Roman.ttf 30 p 26.9510 39.8257 76 } -13.1133 17.0391 52.7368 -Times_New_Roman.ttf 30 p 26.9510 39.8257 77 , 23.0065 8.5783 14.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 78 I -11.9173 16.7326 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 79 ° -12.8619 17.5721 17.5721 -Times_New_Roman.ttf 30 p 26.9510 39.8257 80 K -11.6713 41.1593 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 81 H -12.0145 40.8918 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 82 q -0.1857 26.9510 39.8257 -Times_New_Roman.ttf 30 p 26.9510 39.8257 83 & -12.9429 41.3411 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 84 ’ -13.0598 8.5783 14.0000 -Times_New_Roman.ttf 30 p 26.9510 39.8257 85 [ -12.7188 12.6664 51.2372 -Times_New_Roman.ttf 30 p 26.9510 39.8257 86 - 10.7672 15.1907 5.2134 -Times_New_Roman.ttf 30 p 26.9510 39.8257 87 Y -11.9788 41.7313 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 88 Q -13.0599 37.9372 51.1101 -Times_New_Roman.ttf 30 p 26.9510 39.8257 89 " -12.8572 14.9824 16.3814 -Times_New_Roman.ttf 30 p 26.9510 39.8257 90 ! -12.9110 5.2134 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 91 x 1.3533 28.4895 25.9686 -Times_New_Roman.ttf 30 p 26.9510 39.8257 92 ) -13.2010 15.8496 52.7368 -Times_New_Roman.ttf 30 p 26.9510 39.8257 93 = 1.4445 30.1743 12.0076 -Times_New_Roman.ttf 30 p 26.9510 39.8257 94 + -7.3712 30.3814 30.3814 -Times_New_Roman.ttf 30 p 26.9510 39.8257 95 X -11.8416 42.0000 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 96 » 0.1263 24.9427 27.1593 -Times_New_Roman.ttf 30 p 26.9510 39.8257 97 ' -13.1750 5.2134 16.3814 -Times_New_Roman.ttf 30 p 26.9510 39.8257 98 ¢ -10.0058 21.9459 47.5645 -Times_New_Roman.ttf 30 p 26.9510 39.8257 99 Z -12.1484 33.9535 38.9597 -Times_New_Roman.ttf 30 p 26.9510 39.8257 100 > -7.1983 30.8320 29.1907 -Times_New_Roman.ttf 30 p 26.9510 39.8257 101 ® -12.9165 40.3587 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 102 © -13.0695 40.3587 41.3411 -Times_New_Roman.ttf 30 p 26.9510 39.8257 103 ] -12.4673 12.6664 51.2372 -Times_New_Roman.ttf 30 p 26.9510 39.8257 104 é -12.8110 22.1278 41.0164 -Times_New_Roman.ttf 30 p 26.9510 39.8257 105 z 1.2796 23.5872 25.9686 -Times_New_Roman.ttf 30 p 26.9510 39.8257 106 _ 37.1848 30.0314 2.3814 -Times_New_Roman.ttf 30 p 26.9510 39.8257 107 ¥ -11.9599 31.4462 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 1 t 5.5251 16.5632 35.7376 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 2 h -0.7571 28.4494 40.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 3 a 12.7903 24.3008 28.3500 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 4 n 12.8072 28.4494 27.1593 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 5 P 0.9586 30.0347 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 6 o 13.2532 25.1680 28.3500 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 7 e 12.9401 22.1278 28.3500 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 8 : 12.9137 5.2134 28.3500 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 9 r 13.1635 19.2134 27.1593 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 10 l -0.7928 13.2587 40.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 11 i -0.7279 13.2587 40.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 12 1 0.8820 15.9913 39.1026 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 13 | -0.5157 2.3814 53.1680 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 14 N 1.1452 43.0089 40.1504 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 15 f -0.5458 23.6262 40.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 16 g 12.8271 26.7087 39.8257 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 17 d -0.5978 27.3411 42.0000 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 18 W 1.1050 55.6923 40.1504 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 19 s 13.0082 17.7150 28.3500 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 20 c 12.9778 22.1278 28.3500 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 21 u 14.1119 28.6577 27.1593 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 22 3 0.9275 21.3876 39.1026 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 23 ~ 20.7287 29.8907 7.5948 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 24 # -0.7941 26.1769 40.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 25 O -0.0038 37.9372 41.3411 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 26 ` 0.8130 8.2536 9.4443 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 27 @ -0.6277 49.5948 54.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 28 F 1.3937 29.5407 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 29 S -0.1576 24.9597 41.5229 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 30 p 13.2444 26.9510 39.8257 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 31 “ -0.2585 21.7123 14.0000 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 32 % 0.2925 46.5375 41.3411 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 33 £ 0.8046 26.1504 40.2933 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 34 . 36.2051 5.2134 5.2134 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 35 2 1.0863 25.4757 39.1026 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 36 5 1.2571 22.0453 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 37 m 12.9110 43.6401 27.1593 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 38 V 1.2764 42.2071 40.1504 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 39 6 0.8199 24.6350 39.1026 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 40 w 14.1160 42.0012 27.1593 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 41 T 1.1754 32.2857 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 42 M 1.1181 50.7900 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 43 G -0.0927 40.3587 41.3411 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 44 b -0.7747 26.9510 42.0000 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 45 9 0.8683 24.2671 39.1149 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 46 ; 12.8894 8.5769 37.1560 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 47 D 1.2018 39.4791 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 48 L 0.9909 33.1140 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 49 y 13.9757 29.1484 38.6350 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 50 ‘ 0.2532 8.5769 14.0000 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 51 \ -0.6833 16.8851 42.0000 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 52 R 1.2324 39.5192 38.9597 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 53 < 5.5966 30.8172 29.1949 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 54 4 0.9790 25.4620 39.1149 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 55 8 1.1965 22.7514 39.1149 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 56 0 1.0127 24.6301 39.1149 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 57 A -0.1093 42.0000 40.1504 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 58 E 1.0106 34.1229 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 59 B 1.3978 34.7552 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 60 v 14.3848 29.7237 27.1593 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 61 k -0.8275 28.4929 40.8093 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 62 J 1.4603 20.8981 40.1504 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 63 U 1.2681 40.9787 40.1504 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 64 j -0.4750 16.0906 53.4757 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 65 ( -0.3276 15.8383 52.6957 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 66 7 1.1949 25.4883 38.9668 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 67 § 0.4211 20.6180 50.9240 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 68 $ -1.6840 23.6237 45.6650 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 69 € 1.2419 29.1949 39.1149 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 70 / -0.8506 17.5847 42.0000 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 71 C -0.1690 34.5469 41.3411 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 72 * -0.6866 20.0652 24.4140 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 73 ” 0.0028 21.5302 14.0000 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 74 ? 0.1201 19.9342 41.3566 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 75 { -0.3424 17.0320 52.6957 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 76 } -0.3693 17.0320 52.6957 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 77 , 36.4018 8.5769 14.0000 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 78 I 1.3020 16.7326 38.9597 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 79 ° 0.4138 17.5847 17.5847 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 80 K 1.1022 41.1593 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 81 H 1.2824 40.8918 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 82 q 12.7987 26.9510 39.8257 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 83 & 0.0683 41.3566 41.3566 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 84 ’ -0.0471 8.5769 14.0000 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 85 [ 0.2407 12.6569 51.2203 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 86 - 23.8040 15.1949 5.2070 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 87 Y 1.5485 41.7313 38.9597 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 88 Q -0.0056 37.9372 51.1101 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 89 " -0.0755 14.9789 16.3898 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 90 ! 0.1302 5.2070 41.3566 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 91 x 13.9853 28.4895 25.9686 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 92 ) -0.3435 15.8383 52.6957 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 93 = 14.4316 30.1750 12.0135 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 94 + 5.6557 30.3898 30.3898 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 95 X 1.3646 42.0000 38.9597 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 96 » 13.1526 24.9093 27.1680 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 97 ' 0.0000 5.2070 16.3898 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 98 ¢ 2.7788 21.9610 47.5712 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 99 Z 1.3673 33.9535 38.9597 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 100 > 5.7168 30.8172 29.1949 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 101 ® -0.0206 40.3777 41.3566 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 102 © 0.1313 40.3777 41.3566 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 103 ] 0.7415 12.6569 51.2203 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 104 é 0.4921 22.1278 41.0164 -Times_New_Roman.ttf 31 “ 21.7123 14.0000 105 z 13.9255 23.5872 25.9686 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 106 _ 50.2972 30.0269 2.3898 -Times_New_Roman.ttf 31 “ 21.7187 14.0000 107 ¥ 0.9570 31.4941 38.9668 -Times_New_Roman.ttf 32 % 46.5375 41.3411 1 t 5.4560 16.5632 35.7376 -Times_New_Roman.ttf 32 % 46.5375 41.3411 2 h -0.9340 28.4494 40.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 3 a 13.2559 24.3008 28.3500 -Times_New_Roman.ttf 32 % 46.5375 41.3411 4 n 12.7642 28.4494 27.1593 -Times_New_Roman.ttf 32 % 46.5375 41.3411 5 P 0.8140 30.0347 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 6 o 12.9540 25.1680 28.3500 -Times_New_Roman.ttf 32 % 46.5375 41.3411 7 e 12.9120 22.1278 28.3500 -Times_New_Roman.ttf 32 % 46.5375 41.3411 8 : 13.1640 5.2134 28.3500 -Times_New_Roman.ttf 32 % 46.5375 41.3411 9 r 13.2866 19.2134 27.1593 -Times_New_Roman.ttf 32 % 46.5375 41.3411 10 l -0.4518 13.2587 40.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 11 i -0.2591 13.2587 40.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 12 1 1.2768 15.9913 39.1026 -Times_New_Roman.ttf 32 % 46.5375 41.3411 13 | -0.7420 2.3814 53.1680 -Times_New_Roman.ttf 32 % 46.5375 41.3411 14 N 1.3153 43.0089 40.1504 -Times_New_Roman.ttf 32 % 46.5375 41.3411 15 f -0.7850 23.6262 40.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 16 g 13.0952 26.7087 39.8257 -Times_New_Roman.ttf 32 % 46.5375 41.3411 17 d -0.4543 27.3411 42.0000 -Times_New_Roman.ttf 32 % 46.5375 41.3411 18 W 1.0123 55.6923 40.1504 -Times_New_Roman.ttf 32 % 46.5375 41.3411 19 s 12.8566 17.7150 28.3500 -Times_New_Roman.ttf 32 % 46.5375 41.3411 20 c 12.7556 22.1278 28.3500 -Times_New_Roman.ttf 32 % 46.5375 41.3411 21 u 13.9001 28.6577 27.1593 -Times_New_Roman.ttf 32 % 46.5375 41.3411 22 3 1.0978 21.3876 39.1026 -Times_New_Roman.ttf 32 % 46.5375 41.3411 23 ~ 20.5164 29.8907 7.5948 -Times_New_Roman.ttf 32 % 46.5375 41.3411 24 # -0.6991 26.1769 40.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 25 O 0.2071 37.9372 41.3411 -Times_New_Roman.ttf 32 % 46.5375 41.3411 26 ` 0.8148 8.2536 9.4443 -Times_New_Roman.ttf 32 % 46.5375 41.3411 27 @ -0.4674 49.5948 54.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 28 F 1.0221 29.5407 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 29 S -0.4816 24.9597 41.5229 -Times_New_Roman.ttf 32 % 46.5375 41.3411 30 p 13.0939 26.9510 39.8257 -Times_New_Roman.ttf 32 % 46.5375 41.3411 31 “ 0.0292 21.7123 14.0000 -Times_New_Roman.ttf 32 % 46.5375 41.3411 32 % -0.1150 46.5375 41.3411 -Times_New_Roman.ttf 32 % 46.5375 41.3411 33 £ 1.3021 26.1504 40.2933 -Times_New_Roman.ttf 32 % 46.5375 41.3411 34 . 36.3614 5.2134 5.2134 -Times_New_Roman.ttf 32 % 46.5375 41.3411 35 2 0.9435 25.4757 39.1026 -Times_New_Roman.ttf 32 % 46.5375 41.3411 36 5 1.2334 22.0453 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 37 m 12.9369 43.6401 27.1593 -Times_New_Roman.ttf 32 % 46.5375 41.3411 38 V 1.3493 42.2071 40.1504 -Times_New_Roman.ttf 32 % 46.5375 41.3411 39 6 0.9275 24.6350 39.1026 -Times_New_Roman.ttf 32 % 46.5375 41.3411 40 w 14.2411 42.0012 27.1593 -Times_New_Roman.ttf 32 % 46.5375 41.3411 41 T 1.0606 32.2857 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 42 M 1.2292 50.7900 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 43 G 0.3095 40.3587 41.3411 -Times_New_Roman.ttf 32 % 46.5375 41.3411 44 b -1.0810 26.9510 42.0000 -Times_New_Roman.ttf 32 % 46.5061 41.3566 45 9 1.2985 24.2671 39.1149 -Times_New_Roman.ttf 32 % 46.5061 41.3566 46 ; 12.7510 8.5769 37.1560 -Times_New_Roman.ttf 32 % 46.5375 41.3411 47 D 1.3667 39.4791 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 48 L 1.2854 33.1140 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 49 y 14.2175 29.1484 38.6350 -Times_New_Roman.ttf 32 % 46.5061 41.3566 50 ‘ 0.0558 8.5769 14.0000 -Times_New_Roman.ttf 32 % 46.5061 41.3566 51 \ -0.3964 16.8851 42.0000 -Times_New_Roman.ttf 32 % 46.5375 41.3411 52 R 0.8668 39.5192 38.9597 -Times_New_Roman.ttf 32 % 46.5061 41.3566 53 < 5.7799 30.8172 29.1949 -Times_New_Roman.ttf 32 % 46.5061 41.3566 54 4 0.7114 25.4620 39.1149 -Times_New_Roman.ttf 32 % 46.5061 41.3566 55 8 1.6127 22.7514 39.1149 -Times_New_Roman.ttf 32 % 46.5061 41.3566 56 0 0.8920 24.6301 39.1149 -Times_New_Roman.ttf 32 % 46.5375 41.3411 57 A -0.2354 42.0000 40.1504 -Times_New_Roman.ttf 32 % 46.5375 41.3411 58 E 1.4218 34.1229 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 59 B 1.0706 34.7552 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 60 v 14.2750 29.7237 27.1593 -Times_New_Roman.ttf 32 % 46.5375 41.3411 61 k -0.7471 28.4929 40.8093 -Times_New_Roman.ttf 32 % 46.5375 41.3411 62 J 1.2559 20.8981 40.1504 -Times_New_Roman.ttf 32 % 46.5375 41.3411 63 U 1.0997 40.9787 40.1504 -Times_New_Roman.ttf 32 % 46.5375 41.3411 64 j -0.8477 16.0906 53.4757 -Times_New_Roman.ttf 32 % 46.5061 41.3566 65 ( 0.1535 15.8383 52.6957 -Times_New_Roman.ttf 32 % 46.5061 41.3566 66 7 1.1902 25.4883 38.9668 -Times_New_Roman.ttf 32 % 46.5061 41.3566 67 § 0.8266 20.6180 50.9240 -Times_New_Roman.ttf 32 % 46.5061 41.3566 68 $ -1.2694 23.6237 45.6650 -Times_New_Roman.ttf 32 % 46.5061 41.3566 69 € 1.2097 29.1949 39.1149 -Times_New_Roman.ttf 32 % 46.5061 41.3566 70 / -0.7611 17.5847 42.0000 -Times_New_Roman.ttf 32 % 46.5375 41.3411 71 C -0.0298 34.5469 41.3411 -Times_New_Roman.ttf 32 % 46.5061 41.3566 72 * -0.7539 20.0652 24.4140 -Times_New_Roman.ttf 32 % 46.5061 41.3566 73 ” -0.2496 21.5302 14.0000 -Times_New_Roman.ttf 32 % 46.5061 41.3566 74 ? -0.0740 19.9342 41.3566 -Times_New_Roman.ttf 32 % 46.5061 41.3566 75 { -0.2797 17.0320 52.6957 -Times_New_Roman.ttf 32 % 46.5061 41.3566 76 } -0.4572 17.0320 52.6957 -Times_New_Roman.ttf 32 % 46.5061 41.3566 77 , 36.0727 8.5769 14.0000 -Times_New_Roman.ttf 32 % 46.5375 41.3411 78 I 0.8836 16.7326 38.9597 -Times_New_Roman.ttf 32 % 46.5061 41.3566 79 ° 0.0846 17.5847 17.5847 -Times_New_Roman.ttf 32 % 46.5375 41.3411 80 K 0.9229 41.1593 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 81 H 1.3865 40.8918 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 82 q 12.8063 26.9510 39.8257 -Times_New_Roman.ttf 32 % 46.5061 41.3566 83 & -0.3896 41.3566 41.3566 -Times_New_Roman.ttf 32 % 46.5061 41.3566 84 ’ 0.0870 8.5769 14.0000 -Times_New_Roman.ttf 32 % 46.5061 41.3566 85 [ 0.5348 12.6569 51.2203 -Times_New_Roman.ttf 32 % 46.5061 41.3566 86 - 24.2171 15.1949 5.2070 -Times_New_Roman.ttf 32 % 46.5375 41.3411 87 Y 0.8336 41.7313 38.9597 -Times_New_Roman.ttf 32 % 46.5375 41.3411 88 Q -0.3025 37.9372 51.1101 -Times_New_Roman.ttf 32 % 46.5061 41.3566 89 " -0.0990 14.9789 16.3898 -Times_New_Roman.ttf 32 % 46.5061 41.3566 90 ! 0.0956 5.2070 41.3566 -Times_New_Roman.ttf 32 % 46.5375 41.3411 91 x 14.3375 28.4895 25.9686 -Times_New_Roman.ttf 32 % 46.5061 41.3566 92 ) -0.4816 15.8383 52.6957 -Times_New_Roman.ttf 32 % 46.5061 41.3566 93 = 14.3594 30.1750 12.0135 -Times_New_Roman.ttf 32 % 46.5061 41.3566 94 + 5.7939 30.3898 30.3898 -Times_New_Roman.ttf 32 % 46.5375 41.3411 95 X 1.0381 42.0000 38.9597 -Times_New_Roman.ttf 32 % 46.5061 41.3566 96 » 12.8814 24.9093 27.1680 -Times_New_Roman.ttf 32 % 46.5061 41.3566 97 ' 0.0120 5.2070 16.3898 -Times_New_Roman.ttf 32 % 46.5061 41.3566 98 ¢ 2.4794 21.9610 47.5712 -Times_New_Roman.ttf 32 % 46.5375 41.3411 99 Z 0.9183 33.9535 38.9597 -Times_New_Roman.ttf 32 % 46.5061 41.3566 100 > 5.6457 30.8172 29.1949 -Times_New_Roman.ttf 32 % 46.5061 41.3566 101 ® -0.1183 40.3777 41.3566 -Times_New_Roman.ttf 32 % 46.5061 41.3566 102 © 0.2072 40.3777 41.3566 -Times_New_Roman.ttf 32 % 46.5061 41.3566 103 ] 0.4502 12.6569 51.2203 -Times_New_Roman.ttf 32 % 46.5375 41.3411 104 é 0.2134 22.1278 41.0164 -Times_New_Roman.ttf 32 % 46.5375 41.3411 105 z 13.9803 23.5872 25.9686 -Times_New_Roman.ttf 32 % 46.5061 41.3566 106 _ 50.4710 30.0269 2.3898 -Times_New_Roman.ttf 32 % 46.5061 41.3566 107 ¥ 1.2212 31.4941 38.9668 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 1 t 4.7092 16.5632 35.7376 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 2 h -1.5409 28.4494 40.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 3 a 11.7051 24.3008 28.3500 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 4 n 11.7709 28.4494 27.1593 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 5 P -0.3259 30.0347 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 6 o 11.9294 25.1680 28.3500 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 7 e 11.6435 22.1278 28.3500 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 8 : 11.7946 5.2134 28.3500 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 9 r 12.0755 19.2134 27.1593 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 10 l -1.8131 13.2587 40.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 11 i -1.7984 13.2587 40.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 12 1 0.2238 15.9913 39.1026 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 13 | -1.7248 2.3814 53.1680 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 14 N 0.0348 43.0089 40.1504 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 15 f -1.5756 23.6262 40.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 16 g 12.1251 26.7087 39.8257 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 17 d -1.7067 27.3411 42.0000 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 18 W 0.1039 55.6923 40.1504 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 19 s 12.2508 17.7150 28.3500 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 20 c 12.0123 22.1278 28.3500 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 21 u 13.3582 28.6577 27.1593 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 22 3 -0.1063 21.3876 39.1026 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 23 ~ 19.3992 29.8907 7.5948 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 24 # -1.5389 26.1769 40.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 25 O -0.8566 37.9372 41.3411 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 26 ` -0.1894 8.2536 9.4443 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 27 @ -1.8365 49.5948 54.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 28 F 0.1071 29.5407 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 29 S -0.9844 24.9597 41.5229 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 30 p 12.1174 26.9510 39.8257 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 31 “ -0.8438 21.7123 14.0000 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 32 % -1.2182 46.5375 41.3411 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 33 £ 0.0769 26.1504 40.2933 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 34 . 35.0910 5.2134 5.2134 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 35 2 0.0301 25.4757 39.1026 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 36 5 -0.0212 22.0453 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 37 m 11.8131 43.6401 27.1593 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 38 V 0.3486 42.2071 40.1504 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 39 6 0.0578 24.6350 39.1026 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 40 w 13.3883 42.0012 27.1593 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 41 T 0.2429 32.2857 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 42 M 0.3157 50.7900 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 43 G -0.8738 40.3587 41.3411 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 44 b -1.6994 26.9510 42.0000 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 45 9 -0.0073 24.2671 39.1149 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 46 ; 11.9781 8.5769 37.1560 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 47 D 0.0474 39.4791 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 48 L 0.2514 33.1140 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 49 y 12.8190 29.1484 38.6350 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 50 ‘ -0.8190 8.5769 14.0000 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 51 \ -1.6355 16.8851 42.0000 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 52 R 0.1016 39.5192 38.9597 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 53 < 4.5488 30.8172 29.1949 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 54 4 0.0399 25.4620 39.1149 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 55 8 0.0120 22.7514 39.1149 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 56 0 0.0951 24.6301 39.1149 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 57 A -1.1368 42.0000 40.1504 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 58 E 0.2202 34.1229 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 59 B -0.1373 34.7552 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 60 v 13.2099 29.7237 27.1593 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 61 k -1.8105 28.4929 40.8093 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 62 J 0.1539 20.8981 40.1504 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 63 U -0.0036 40.9787 40.1504 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 64 j -1.4839 16.0906 53.4757 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 65 ( -1.3157 15.8383 52.6957 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 66 7 0.2014 25.4883 38.9668 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 67 § -0.6864 20.6180 50.9240 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 68 $ -3.0233 23.6237 45.6650 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 69 € -0.1605 29.1949 39.1149 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 70 / -1.7715 17.5847 42.0000 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 71 C -1.1780 34.5469 41.3411 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 72 * -1.5893 20.0652 24.4140 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 73 ” -1.0212 21.5302 14.0000 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 74 ? -1.1803 19.9342 41.3566 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 75 { -1.4788 17.0320 52.6957 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 76 } -1.1560 17.0320 52.6957 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 77 , 35.1086 8.5769 14.0000 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 78 I 0.0673 16.7326 38.9597 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 79 ° -0.5994 17.5847 17.5847 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 80 K -0.0652 41.1593 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 81 H 0.0117 40.8918 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 82 q 11.9422 26.9510 39.8257 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 83 & -0.9219 41.3566 41.3566 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 84 ’ -1.0017 8.5769 14.0000 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 85 [ -0.5990 12.6569 51.2203 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 86 - 23.1056 15.1949 5.2070 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 87 Y -0.0268 41.7313 38.9597 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 88 Q -1.0079 37.9372 51.1101 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 89 " -1.3667 14.9789 16.3898 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 90 ! -0.7392 5.2070 41.3566 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 91 x 12.9983 28.4895 25.9686 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 92 ) -1.1346 15.8383 52.6957 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 93 = 13.2075 30.1750 12.0135 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 94 + 4.4331 30.3898 30.3898 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 95 X 0.2813 42.0000 38.9597 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 96 » 11.8335 24.9093 27.1680 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 97 ' -0.8853 5.2070 16.3898 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 98 ¢ 1.7507 21.9610 47.5712 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 99 Z -0.2954 33.9535 38.9597 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 100 > 4.3081 30.8172 29.1949 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 101 ® -1.2698 40.3777 41.3566 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 102 © -0.6687 40.3777 41.3566 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 103 ] -0.3243 12.6569 51.2203 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 104 é -0.8955 22.1278 41.0164 -Times_New_Roman.ttf 33 £ 26.1504 40.2933 105 z 13.3453 23.5872 25.9686 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 106 _ 48.9758 30.0269 2.3898 -Times_New_Roman.ttf 33 £ 26.1617 40.3098 107 ¥ 0.0035 31.4941 38.9668 -Times_New_Roman.ttf 34 . 5.2134 5.2134 1 t -30.7036 16.5632 35.7376 -Times_New_Roman.ttf 34 . 5.2134 5.2134 2 h -36.8251 28.4494 40.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 3 a -23.0579 24.3008 28.3500 -Times_New_Roman.ttf 34 . 5.2134 5.2134 4 n -23.3864 28.4494 27.1593 -Times_New_Roman.ttf 34 . 5.2134 5.2134 5 P -34.7212 30.0347 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 6 o -23.2636 25.1680 28.3500 -Times_New_Roman.ttf 34 . 5.2134 5.2134 7 e -22.9323 22.1278 28.3500 -Times_New_Roman.ttf 34 . 5.2134 5.2134 8 : -23.2590 5.2134 28.3500 -Times_New_Roman.ttf 34 . 5.2134 5.2134 9 r -23.1640 19.2134 27.1593 -Times_New_Roman.ttf 34 . 5.2134 5.2134 10 l -36.6291 13.2587 40.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 11 i -36.7866 13.2587 40.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 12 1 -34.9679 15.9913 39.1026 -Times_New_Roman.ttf 34 . 5.2134 5.2134 13 | -36.7093 2.3814 53.1680 -Times_New_Roman.ttf 34 . 5.2134 5.2134 14 N -35.0144 43.0089 40.1504 -Times_New_Roman.ttf 34 . 5.2134 5.2134 15 f -36.6866 23.6262 40.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 16 g -23.1977 26.7087 39.8257 -Times_New_Roman.ttf 34 . 5.2134 5.2134 17 d -36.7866 27.3411 42.0000 -Times_New_Roman.ttf 34 . 5.2134 5.2134 18 W -35.0172 55.6923 40.1504 -Times_New_Roman.ttf 34 . 5.2134 5.2134 19 s -23.2168 17.7150 28.3500 -Times_New_Roman.ttf 34 . 5.2134 5.2134 20 c -23.2706 22.1278 28.3500 -Times_New_Roman.ttf 34 . 5.2134 5.2134 21 u -21.8263 28.6577 27.1593 -Times_New_Roman.ttf 34 . 5.2134 5.2134 22 3 -35.3213 21.3876 39.1026 -Times_New_Roman.ttf 34 . 5.2134 5.2134 23 ~ -15.6714 29.8907 7.5948 -Times_New_Roman.ttf 34 . 5.2134 5.2134 24 # -36.8751 26.1769 40.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 25 O -36.0466 37.9372 41.3411 -Times_New_Roman.ttf 34 . 5.2134 5.2134 26 ` -35.1471 8.2536 9.4443 -Times_New_Roman.ttf 34 . 5.2134 5.2134 27 @ -36.5796 49.5948 54.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 28 F -35.0572 29.5407 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 29 S -36.3754 24.9597 41.5229 -Times_New_Roman.ttf 34 . 5.2134 5.2134 30 p -23.2668 26.9510 39.8257 -Times_New_Roman.ttf 34 . 5.2134 5.2134 31 “ -36.0778 21.7123 14.0000 -Times_New_Roman.ttf 34 . 5.2134 5.2134 32 % -36.0458 46.5375 41.3411 -Times_New_Roman.ttf 34 . 5.2134 5.2134 33 £ -35.0557 26.1504 40.2933 -Times_New_Roman.ttf 34 . 5.2134 5.2134 34 . -0.2952 5.2134 5.2134 -Times_New_Roman.ttf 34 . 5.2134 5.2134 35 2 -35.0799 25.4757 39.1026 -Times_New_Roman.ttf 34 . 5.2134 5.2134 36 5 -34.9080 22.0453 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 37 m -23.0509 43.6401 27.1593 -Times_New_Roman.ttf 34 . 5.2134 5.2134 38 V -34.8013 42.2071 40.1504 -Times_New_Roman.ttf 34 . 5.2134 5.2134 39 6 -34.9998 24.6350 39.1026 -Times_New_Roman.ttf 34 . 5.2134 5.2134 40 w -21.8817 42.0012 27.1593 -Times_New_Roman.ttf 34 . 5.2134 5.2134 41 T -35.0325 32.2857 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 42 M -34.9371 50.7900 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 43 G -36.1250 40.3587 41.3411 -Times_New_Roman.ttf 34 . 5.2134 5.2134 44 b -36.7866 26.9510 42.0000 -Times_New_Roman.ttf 34 . 5.2070 5.2070 45 9 -35.0197 24.2671 39.1149 -Times_New_Roman.ttf 34 . 5.2070 5.2070 46 ; -23.0689 8.5769 37.1560 -Times_New_Roman.ttf 34 . 5.2134 5.2134 47 D -34.7531 39.4791 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 48 L -34.9769 33.1140 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 49 y -21.9075 29.1484 38.6350 -Times_New_Roman.ttf 34 . 5.2070 5.2070 50 ‘ -36.1308 8.5769 14.0000 -Times_New_Roman.ttf 34 . 5.2070 5.2070 51 \ -36.6700 16.8851 42.0000 -Times_New_Roman.ttf 34 . 5.2134 5.2134 52 R -34.8373 39.5192 38.9597 -Times_New_Roman.ttf 34 . 5.2070 5.2070 53 < -30.6059 30.8172 29.1949 -Times_New_Roman.ttf 34 . 5.2070 5.2070 54 4 -34.9592 25.4620 39.1149 -Times_New_Roman.ttf 34 . 5.2070 5.2070 55 8 -35.1427 22.7514 39.1149 -Times_New_Roman.ttf 34 . 5.2070 5.2070 56 0 -35.1028 24.6301 39.1149 -Times_New_Roman.ttf 34 . 5.2134 5.2134 57 A -36.1278 42.0000 40.1504 -Times_New_Roman.ttf 34 . 5.2134 5.2134 58 E -34.8371 34.1229 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 59 B -35.0172 34.7552 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 60 v -21.8459 29.7237 27.1593 -Times_New_Roman.ttf 34 . 5.2134 5.2134 61 k -36.7866 28.4929 40.8093 -Times_New_Roman.ttf 34 . 5.2134 5.2134 62 J -35.0371 20.8981 40.1504 -Times_New_Roman.ttf 34 . 5.2134 5.2134 63 U -34.7013 40.9787 40.1504 -Times_New_Roman.ttf 34 . 5.2134 5.2134 64 j -36.9025 16.0906 53.4757 -Times_New_Roman.ttf 34 . 5.2070 5.2070 65 ( -36.5016 15.8383 52.6957 -Times_New_Roman.ttf 34 . 5.2070 5.2070 66 7 -34.9284 25.4883 38.9668 -Times_New_Roman.ttf 34 . 5.2070 5.2070 67 § -35.3981 20.6180 50.9240 -Times_New_Roman.ttf 34 . 5.2070 5.2070 68 $ -37.9200 23.6237 45.6650 -Times_New_Roman.ttf 34 . 5.2070 5.2070 69 € -35.0629 29.1949 39.1149 -Times_New_Roman.ttf 34 . 5.2070 5.2070 70 / -36.8920 17.5847 42.0000 -Times_New_Roman.ttf 34 . 5.2134 5.2134 71 C -35.9637 34.5469 41.3411 -Times_New_Roman.ttf 34 . 5.2070 5.2070 72 * -36.6729 20.0652 24.4140 -Times_New_Roman.ttf 34 . 5.2070 5.2070 73 ” -36.2054 21.5302 14.0000 -Times_New_Roman.ttf 34 . 5.2070 5.2070 74 ? -36.1496 19.9342 41.3566 -Times_New_Roman.ttf 34 . 5.2070 5.2070 75 { -36.1601 17.0320 52.6957 -Times_New_Roman.ttf 34 . 5.2070 5.2070 76 } -36.3383 17.0320 52.6957 -Times_New_Roman.ttf 34 . 5.2070 5.2070 77 , -0.2231 8.5769 14.0000 -Times_New_Roman.ttf 34 . 5.2134 5.2134 78 I -34.8597 16.7326 38.9597 -Times_New_Roman.ttf 34 . 5.2070 5.2070 79 ° -36.0665 17.5847 17.5847 -Times_New_Roman.ttf 34 . 5.2134 5.2134 80 K -34.9371 41.1593 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 81 H -35.0172 40.8918 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 82 q -23.0514 26.9510 39.8257 -Times_New_Roman.ttf 34 . 5.2070 5.2070 83 & -36.0180 41.3566 41.3566 -Times_New_Roman.ttf 34 . 5.2070 5.2070 84 ’ -36.3302 8.5769 14.0000 -Times_New_Roman.ttf 34 . 5.2070 5.2070 85 [ -35.6870 12.6569 51.2203 -Times_New_Roman.ttf 34 . 5.2070 5.2070 86 - -12.1901 15.1949 5.2070 -Times_New_Roman.ttf 34 . 5.2134 5.2134 87 Y -34.7796 41.7313 38.9597 -Times_New_Roman.ttf 34 . 5.2134 5.2134 88 Q -35.9508 37.9372 51.1101 -Times_New_Roman.ttf 34 . 5.2070 5.2070 89 " -36.1895 14.9789 16.3898 -Times_New_Roman.ttf 34 . 5.2070 5.2070 90 ! -36.3643 5.2070 41.3566 -Times_New_Roman.ttf 34 . 5.2134 5.2134 91 x -21.6906 28.4895 25.9686 -Times_New_Roman.ttf 34 . 5.2070 5.2070 92 ) -36.3477 15.8383 52.6957 -Times_New_Roman.ttf 34 . 5.2070 5.2070 93 = -21.5941 30.1750 12.0135 -Times_New_Roman.ttf 34 . 5.2070 5.2070 94 + -30.3008 30.3898 30.3898 -Times_New_Roman.ttf 34 . 5.2134 5.2134 95 X -34.9569 42.0000 38.9597 -Times_New_Roman.ttf 34 . 5.2070 5.2070 96 » -23.2390 24.9093 27.1680 -Times_New_Roman.ttf 34 . 5.2070 5.2070 97 ' -36.1496 5.2070 16.3898 -Times_New_Roman.ttf 34 . 5.2070 5.2070 98 ¢ -33.6554 21.9610 47.5712 -Times_New_Roman.ttf 34 . 5.2134 5.2134 99 Z -34.8416 33.9535 38.9597 -Times_New_Roman.ttf 34 . 5.2070 5.2070 100 > -30.6059 30.8172 29.1949 -Times_New_Roman.ttf 34 . 5.2070 5.2070 101 ® -36.2226 40.3777 41.3566 -Times_New_Roman.ttf 34 . 5.2070 5.2070 102 © -36.1996 40.3777 41.3566 -Times_New_Roman.ttf 34 . 5.2070 5.2070 103 ] -35.6812 12.6569 51.2203 -Times_New_Roman.ttf 34 . 5.2134 5.2134 104 é -35.9221 22.1278 41.0164 -Times_New_Roman.ttf 34 . 5.2134 5.2134 105 z -21.9279 23.5872 25.9686 -Times_New_Roman.ttf 34 . 5.2070 5.2070 106 _ 14.4061 30.0269 2.3898 -Times_New_Roman.ttf 34 . 5.2070 5.2070 107 ¥ -35.0436 31.4941 38.9668 -Times_New_Roman.ttf 35 2 25.4757 39.1026 1 t 4.7142 16.5632 35.7376 -Times_New_Roman.ttf 35 2 25.4757 39.1026 2 h -1.5409 28.4494 40.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 3 a 11.9249 24.3008 28.3500 -Times_New_Roman.ttf 35 2 25.4757 39.1026 4 n 12.0157 28.4494 27.1593 -Times_New_Roman.ttf 35 2 25.4757 39.1026 5 P 0.2383 30.0347 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 6 o 11.9646 25.1680 28.3500 -Times_New_Roman.ttf 35 2 25.4757 39.1026 7 e 12.0086 22.1278 28.3500 -Times_New_Roman.ttf 35 2 25.4757 39.1026 8 : 11.8860 5.2134 28.3500 -Times_New_Roman.ttf 35 2 25.4757 39.1026 9 r 12.1137 19.2134 27.1593 -Times_New_Roman.ttf 35 2 25.4757 39.1026 10 l -1.8194 13.2587 40.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 11 i -1.6605 13.2587 40.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 12 1 0.0371 15.9913 39.1026 -Times_New_Roman.ttf 35 2 25.4757 39.1026 13 | -1.5427 2.3814 53.1680 -Times_New_Roman.ttf 35 2 25.4757 39.1026 14 N 0.2286 43.0089 40.1504 -Times_New_Roman.ttf 35 2 25.4757 39.1026 15 f -1.6454 23.6262 40.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 16 g 12.0234 26.7087 39.8257 -Times_New_Roman.ttf 35 2 25.4757 39.1026 17 d -1.7494 27.3411 42.0000 -Times_New_Roman.ttf 35 2 25.4757 39.1026 18 W 0.0730 55.6923 40.1504 -Times_New_Roman.ttf 35 2 25.4757 39.1026 19 s 11.9478 17.7150 28.3500 -Times_New_Roman.ttf 35 2 25.4757 39.1026 20 c 11.8422 22.1278 28.3500 -Times_New_Roman.ttf 35 2 25.4757 39.1026 21 u 12.8801 28.6577 27.1593 -Times_New_Roman.ttf 35 2 25.4757 39.1026 22 3 -0.0597 21.3876 39.1026 -Times_New_Roman.ttf 35 2 25.4757 39.1026 23 ~ 19.5734 29.8907 7.5948 -Times_New_Roman.ttf 35 2 25.4757 39.1026 24 # -1.5228 26.1769 40.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 25 O -0.9293 37.9372 41.3411 -Times_New_Roman.ttf 35 2 25.4757 39.1026 26 ` -0.2687 8.2536 9.4443 -Times_New_Roman.ttf 35 2 25.4757 39.1026 27 @ -1.6718 49.5948 54.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 28 F 0.0371 29.5407 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 29 S -1.0827 24.9597 41.5229 -Times_New_Roman.ttf 35 2 25.4757 39.1026 30 p 11.9634 26.9510 39.8257 -Times_New_Roman.ttf 35 2 25.4757 39.1026 31 “ -0.9737 21.7123 14.0000 -Times_New_Roman.ttf 35 2 25.4757 39.1026 32 % -1.5057 46.5375 41.3411 -Times_New_Roman.ttf 35 2 25.4757 39.1026 33 £ -0.0491 26.1504 40.2933 -Times_New_Roman.ttf 35 2 25.4757 39.1026 34 . 35.1716 5.2134 5.2134 -Times_New_Roman.ttf 35 2 25.4757 39.1026 35 2 0.1214 25.4757 39.1026 -Times_New_Roman.ttf 35 2 25.4757 39.1026 36 5 -0.1184 22.0453 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 37 m 11.9915 43.6401 27.1593 -Times_New_Roman.ttf 35 2 25.4757 39.1026 38 V 0.0044 42.2071 40.1504 -Times_New_Roman.ttf 35 2 25.4757 39.1026 39 6 -0.0087 24.6350 39.1026 -Times_New_Roman.ttf 35 2 25.4757 39.1026 40 w 13.0154 42.0012 27.1593 -Times_New_Roman.ttf 35 2 25.4757 39.1026 41 T 0.1039 32.2857 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 42 M 0.2736 50.7900 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 43 G -1.2318 40.3587 41.3411 -Times_New_Roman.ttf 35 2 25.4757 39.1026 44 b -1.6293 26.9510 42.0000 -Times_New_Roman.ttf 35 2 25.4620 39.1149 45 9 -0.2089 24.2671 39.1149 -Times_New_Roman.ttf 35 2 25.4620 39.1149 46 ; 12.1094 8.5769 37.1560 -Times_New_Roman.ttf 35 2 25.4757 39.1026 47 D 0.2268 39.4791 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 48 L 0.2343 33.1140 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 49 y 13.0571 29.1484 38.6350 -Times_New_Roman.ttf 35 2 25.4620 39.1149 50 ‘ -0.8686 8.5769 14.0000 -Times_New_Roman.ttf 35 2 25.4620 39.1149 51 \ -1.6930 16.8851 42.0000 -Times_New_Roman.ttf 35 2 25.4757 39.1026 52 R 0.3114 39.5192 38.9597 -Times_New_Roman.ttf 35 2 25.4620 39.1149 53 < 4.6239 30.8172 29.1949 -Times_New_Roman.ttf 35 2 25.4620 39.1149 54 4 -0.1759 25.4620 39.1149 -Times_New_Roman.ttf 35 2 25.4620 39.1149 55 8 -0.2100 22.7514 39.1149 -Times_New_Roman.ttf 35 2 25.4620 39.1149 56 0 -0.2691 24.6301 39.1149 -Times_New_Roman.ttf 35 2 25.4757 39.1026 57 A -0.9923 42.0000 40.1504 -Times_New_Roman.ttf 35 2 25.4757 39.1026 58 E 0.0100 34.1229 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 59 B 0.1692 34.7552 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 60 v 13.2953 29.7237 27.1593 -Times_New_Roman.ttf 35 2 25.4757 39.1026 61 k -1.6494 28.4929 40.8093 -Times_New_Roman.ttf 35 2 25.4757 39.1026 62 J 0.1373 20.8981 40.1504 -Times_New_Roman.ttf 35 2 25.4757 39.1026 63 U 0.0571 40.9787 40.1504 -Times_New_Roman.ttf 35 2 25.4757 39.1026 64 j -1.5997 16.0906 53.4757 -Times_New_Roman.ttf 35 2 25.4620 39.1149 65 ( -1.1973 15.8383 52.6957 -Times_New_Roman.ttf 35 2 25.4620 39.1149 66 7 0.1442 25.4883 38.9668 -Times_New_Roman.ttf 35 2 25.4620 39.1149 67 § -0.3518 20.6180 50.9240 -Times_New_Roman.ttf 35 2 25.4620 39.1149 68 $ -2.7557 23.6237 45.6650 -Times_New_Roman.ttf 35 2 25.4620 39.1149 69 € -0.0090 29.1949 39.1149 -Times_New_Roman.ttf 35 2 25.4620 39.1149 70 / -1.8415 17.5847 42.0000 -Times_New_Roman.ttf 35 2 25.4757 39.1026 71 C -0.9639 34.5469 41.3411 -Times_New_Roman.ttf 35 2 25.4620 39.1149 72 * -1.8675 20.0652 24.4140 -Times_New_Roman.ttf 35 2 25.4620 39.1149 73 ” -0.8857 21.5302 14.0000 -Times_New_Roman.ttf 35 2 25.4620 39.1149 74 ? -0.9843 19.9342 41.3566 -Times_New_Roman.ttf 35 2 25.4620 39.1149 75 { -1.3624 17.0320 52.6957 -Times_New_Roman.ttf 35 2 25.4620 39.1149 76 } -1.2003 17.0320 52.6957 -Times_New_Roman.ttf 35 2 25.4620 39.1149 77 , 35.2112 8.5769 14.0000 -Times_New_Roman.ttf 35 2 25.4757 39.1026 78 I 0.0562 16.7326 38.9597 -Times_New_Roman.ttf 35 2 25.4620 39.1149 79 ° -0.9006 17.5847 17.5847 -Times_New_Roman.ttf 35 2 25.4757 39.1026 80 K 0.2841 41.1593 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 81 H 0.3114 40.8918 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 82 q 11.9553 26.9510 39.8257 -Times_New_Roman.ttf 35 2 25.4620 39.1149 83 & -0.8834 41.3566 41.3566 -Times_New_Roman.ttf 35 2 25.4620 39.1149 84 ’ -1.2818 8.5769 14.0000 -Times_New_Roman.ttf 35 2 25.4620 39.1149 85 [ -0.4035 12.6569 51.2203 -Times_New_Roman.ttf 35 2 25.4620 39.1149 86 - 22.9395 15.1949 5.2070 -Times_New_Roman.ttf 35 2 25.4757 39.1026 87 Y -0.0016 41.7313 38.9597 -Times_New_Roman.ttf 35 2 25.4757 39.1026 88 Q -1.0089 37.9372 51.1101 -Times_New_Roman.ttf 35 2 25.4620 39.1149 89 " -1.0799 14.9789 16.3898 -Times_New_Roman.ttf 35 2 25.4620 39.1149 90 ! -0.8881 5.2070 41.3566 -Times_New_Roman.ttf 35 2 25.4757 39.1026 91 x 12.9084 28.4895 25.9686 -Times_New_Roman.ttf 35 2 25.4620 39.1149 92 ) -1.5046 15.8383 52.6957 -Times_New_Roman.ttf 35 2 25.4620 39.1149 93 = 13.3391 30.1750 12.0135 -Times_New_Roman.ttf 35 2 25.4620 39.1149 94 + 4.5118 30.3898 30.3898 -Times_New_Roman.ttf 35 2 25.4757 39.1026 95 X 0.1359 42.0000 38.9597 -Times_New_Roman.ttf 35 2 25.4620 39.1149 96 » 11.7767 24.9093 27.1680 -Times_New_Roman.ttf 35 2 25.4620 39.1149 97 ' -0.9291 5.2070 16.3898 -Times_New_Roman.ttf 35 2 25.4620 39.1149 98 ¢ 1.6306 21.9610 47.5712 -Times_New_Roman.ttf 35 2 25.4757 39.1026 99 Z 0.2730 33.9535 38.9597 -Times_New_Roman.ttf 35 2 25.4620 39.1149 100 > 4.4998 30.8172 29.1949 -Times_New_Roman.ttf 35 2 25.4620 39.1149 101 ® -1.1385 40.3777 41.3566 -Times_New_Roman.ttf 35 2 25.4620 39.1149 102 © -0.9564 40.3777 41.3566 -Times_New_Roman.ttf 35 2 25.4620 39.1149 103 ] -0.7955 12.6569 51.2203 -Times_New_Roman.ttf 35 2 25.4757 39.1026 104 é -0.8315 22.1278 41.0164 -Times_New_Roman.ttf 35 2 25.4757 39.1026 105 z 13.0913 23.5872 25.9686 -Times_New_Roman.ttf 35 2 25.4620 39.1149 106 _ 49.1543 30.0269 2.3898 -Times_New_Roman.ttf 35 2 25.4620 39.1149 107 ¥ 0.3436 31.4941 38.9668 -Times_New_Roman.ttf 36 5 22.0453 38.9597 1 t 4.5739 16.5632 35.7376 -Times_New_Roman.ttf 36 5 22.0453 38.9597 2 h -1.6119 28.4494 40.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 3 a 11.6818 24.3008 28.3500 -Times_New_Roman.ttf 36 5 22.0453 38.9597 4 n 11.7959 28.4494 27.1593 -Times_New_Roman.ttf 36 5 22.0453 38.9597 5 P -0.1030 30.0347 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 6 o 11.7165 25.1680 28.3500 -Times_New_Roman.ttf 36 5 22.0453 38.9597 7 e 11.8004 22.1278 28.3500 -Times_New_Roman.ttf 36 5 22.0453 38.9597 8 : 11.5562 5.2134 28.3500 -Times_New_Roman.ttf 36 5 22.0453 38.9597 9 r 11.5853 19.2134 27.1593 -Times_New_Roman.ttf 36 5 22.0453 38.9597 10 l -1.6745 13.2587 40.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 11 i -1.8843 13.2587 40.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 12 1 -0.0627 15.9913 39.1026 -Times_New_Roman.ttf 36 5 22.0453 38.9597 13 | -1.7066 2.3814 53.1680 -Times_New_Roman.ttf 36 5 22.0453 38.9597 14 N 0.0894 43.0089 40.1504 -Times_New_Roman.ttf 36 5 22.0453 38.9597 15 f -1.8644 23.6262 40.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 16 g 11.5424 26.7087 39.8257 -Times_New_Roman.ttf 36 5 22.0453 38.9597 17 d -1.7865 27.3411 42.0000 -Times_New_Roman.ttf 36 5 22.0453 38.9597 18 W -0.0839 55.6923 40.1504 -Times_New_Roman.ttf 36 5 22.0453 38.9597 19 s 11.9004 17.7150 28.3500 -Times_New_Roman.ttf 36 5 22.0453 38.9597 20 c 11.6989 22.1278 28.3500 -Times_New_Roman.ttf 36 5 22.0453 38.9597 21 u 12.9575 28.6577 27.1593 -Times_New_Roman.ttf 36 5 22.0453 38.9597 22 3 -0.1737 21.3876 39.1026 -Times_New_Roman.ttf 36 5 22.0453 38.9597 23 ~ 19.6219 29.8907 7.5948 -Times_New_Roman.ttf 36 5 22.0453 38.9597 24 # -1.5921 26.1769 40.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 25 O -1.0332 37.9372 41.3411 -Times_New_Roman.ttf 36 5 22.0453 38.9597 26 ` -0.3272 8.2536 9.4443 -Times_New_Roman.ttf 36 5 22.0453 38.9597 27 @ -1.8184 49.5948 54.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 28 F 0.1362 29.5407 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 29 S -1.5481 24.9597 41.5229 -Times_New_Roman.ttf 36 5 22.0453 38.9597 30 p 12.0776 26.9510 39.8257 -Times_New_Roman.ttf 36 5 22.0453 38.9597 31 “ -1.2324 21.7123 14.0000 -Times_New_Roman.ttf 36 5 22.0453 38.9597 32 % -1.2237 46.5375 41.3411 -Times_New_Roman.ttf 36 5 22.0453 38.9597 33 £ -0.0185 26.1504 40.2933 -Times_New_Roman.ttf 36 5 22.0453 38.9597 34 . 34.8258 5.2134 5.2134 -Times_New_Roman.ttf 36 5 22.0453 38.9597 35 2 -0.3901 25.4757 39.1026 -Times_New_Roman.ttf 36 5 22.0453 38.9597 36 5 -0.0885 22.0453 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 37 m 11.7203 43.6401 27.1593 -Times_New_Roman.ttf 36 5 22.0453 38.9597 38 V 0.0686 42.2071 40.1504 -Times_New_Roman.ttf 36 5 22.0453 38.9597 39 6 -0.1889 24.6350 39.1026 -Times_New_Roman.ttf 36 5 22.0453 38.9597 40 w 12.8984 42.0012 27.1593 -Times_New_Roman.ttf 36 5 22.0453 38.9597 41 T 0.0839 32.2857 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 42 M 0.0635 50.7900 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 43 G -1.1060 40.3587 41.3411 -Times_New_Roman.ttf 36 5 22.0453 38.9597 44 b -1.8423 26.9510 42.0000 -Times_New_Roman.ttf 36 5 22.0242 38.9668 45 9 -0.1437 24.2671 39.1149 -Times_New_Roman.ttf 36 5 22.0242 38.9668 46 ; 11.7308 8.5769 37.1560 -Times_New_Roman.ttf 36 5 22.0453 38.9597 47 D 0.0083 39.4791 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 48 L 0.0651 33.1140 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 49 y 12.7886 29.1484 38.6350 -Times_New_Roman.ttf 36 5 22.0242 38.9668 50 ‘ -1.2147 8.5769 14.0000 -Times_New_Roman.ttf 36 5 22.0242 38.9668 51 \ -1.7646 16.8851 42.0000 -Times_New_Roman.ttf 36 5 22.0453 38.9597 52 R -0.0000 39.5192 38.9597 -Times_New_Roman.ttf 36 5 22.0242 38.9668 53 < 4.2855 30.8172 29.1949 -Times_New_Roman.ttf 36 5 22.0242 38.9668 54 4 -0.2360 25.4620 39.1149 -Times_New_Roman.ttf 36 5 22.0242 38.9668 55 8 -0.2312 22.7514 39.1149 -Times_New_Roman.ttf 36 5 22.0242 38.9668 56 0 0.0672 24.6301 39.1149 -Times_New_Roman.ttf 36 5 22.0453 38.9597 57 A -1.1578 42.0000 40.1504 -Times_New_Roman.ttf 36 5 22.0453 38.9597 58 E -0.1148 34.1229 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 59 B -0.0794 34.7552 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 60 v 13.1658 29.7237 27.1593 -Times_New_Roman.ttf 36 5 22.0453 38.9597 61 k -1.8843 28.4929 40.8093 -Times_New_Roman.ttf 36 5 22.0453 38.9597 62 J -0.3553 20.8981 40.1504 -Times_New_Roman.ttf 36 5 22.0453 38.9597 63 U -0.4550 40.9787 40.1504 -Times_New_Roman.ttf 36 5 22.0453 38.9597 64 j -1.8496 16.0906 53.4757 -Times_New_Roman.ttf 36 5 22.0242 38.9668 65 ( -1.6935 15.8383 52.6957 -Times_New_Roman.ttf 36 5 22.0242 38.9668 66 7 -0.0399 25.4883 38.9668 -Times_New_Roman.ttf 36 5 22.0242 38.9668 67 § -0.4554 20.6180 50.9240 -Times_New_Roman.ttf 36 5 22.0242 38.9668 68 $ -3.0085 23.6237 45.6650 -Times_New_Roman.ttf 36 5 22.0242 38.9668 69 € -0.1703 29.1949 39.1149 -Times_New_Roman.ttf 36 5 22.0242 38.9668 70 / -1.8250 17.5847 42.0000 -Times_New_Roman.ttf 36 5 22.0453 38.9597 71 C -1.4020 34.5469 41.3411 -Times_New_Roman.ttf 36 5 22.0242 38.9668 72 * -1.5804 20.0652 24.4140 -Times_New_Roman.ttf 36 5 22.0242 38.9668 73 ” -1.3366 21.5302 14.0000 -Times_New_Roman.ttf 36 5 22.0242 38.9668 74 ? -1.5138 19.9342 41.3566 -Times_New_Roman.ttf 36 5 22.0242 38.9668 75 { -1.6059 17.0320 52.6957 -Times_New_Roman.ttf 36 5 22.0242 38.9668 76 } -1.4511 17.0320 52.6957 -Times_New_Roman.ttf 36 5 22.0242 38.9668 77 , 34.9341 8.5769 14.0000 -Times_New_Roman.ttf 36 5 22.0453 38.9597 78 I -0.0166 16.7326 38.9597 -Times_New_Roman.ttf 36 5 22.0242 38.9668 79 ° -1.2468 17.5847 17.5847 -Times_New_Roman.ttf 36 5 22.0453 38.9597 80 K 0.0658 41.1593 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 81 H 0.1283 40.8918 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 82 q 11.7875 26.9510 39.8257 -Times_New_Roman.ttf 36 5 22.0242 38.9668 83 & -1.1264 41.3566 41.3566 -Times_New_Roman.ttf 36 5 22.0242 38.9668 84 ’ -1.0795 8.5769 14.0000 -Times_New_Roman.ttf 36 5 22.0242 38.9668 85 [ -0.7265 12.6569 51.2203 -Times_New_Roman.ttf 36 5 22.0242 38.9668 86 - 22.9164 15.1949 5.2070 -Times_New_Roman.ttf 36 5 22.0453 38.9597 87 Y 0.1640 41.7313 38.9597 -Times_New_Roman.ttf 36 5 22.0453 38.9597 88 Q -1.0679 37.9372 51.1101 -Times_New_Roman.ttf 36 5 22.0242 38.9668 89 " -1.3410 14.9789 16.3898 -Times_New_Roman.ttf 36 5 22.0242 38.9668 90 ! -1.0589 5.2070 41.3566 -Times_New_Roman.ttf 36 5 22.0453 38.9597 91 x 12.6864 28.4895 25.9686 -Times_New_Roman.ttf 36 5 22.0242 38.9668 92 ) -1.1191 15.8383 52.6957 -Times_New_Roman.ttf 36 5 22.0242 38.9668 93 = 13.3652 30.1750 12.0135 -Times_New_Roman.ttf 36 5 22.0242 38.9668 94 + 4.5208 30.3898 30.3898 -Times_New_Roman.ttf 36 5 22.0453 38.9597 95 X -0.2487 42.0000 38.9597 -Times_New_Roman.ttf 36 5 22.0242 38.9668 96 » 11.9728 24.9093 27.1680 -Times_New_Roman.ttf 36 5 22.0242 38.9668 97 ' -1.1863 5.2070 16.3898 -Times_New_Roman.ttf 36 5 22.0242 38.9668 98 ¢ 1.0539 21.9610 47.5712 -Times_New_Roman.ttf 36 5 22.0453 38.9597 99 Z 0.0919 33.9535 38.9597 -Times_New_Roman.ttf 36 5 22.0242 38.9668 100 > 4.3183 30.8172 29.1949 -Times_New_Roman.ttf 36 5 22.0242 38.9668 101 ® -1.3697 40.3777 41.3566 -Times_New_Roman.ttf 36 5 22.0242 38.9668 102 © -0.8492 40.3777 41.3566 -Times_New_Roman.ttf 36 5 22.0242 38.9668 103 ] -0.5814 12.6569 51.2203 -Times_New_Roman.ttf 36 5 22.0453 38.9597 104 é -0.4110 22.1278 41.0164 -Times_New_Roman.ttf 36 5 22.0453 38.9597 105 z 13.0411 23.5872 25.9686 -Times_New_Roman.ttf 36 5 22.0242 38.9668 106 _ 49.4184 30.0269 2.3898 -Times_New_Roman.ttf 36 5 22.0242 38.9668 107 ¥ 0.0399 31.4941 38.9668 -Times_New_Roman.ttf 37 m 43.6401 27.1593 1 t -7.3725 16.5632 35.7376 -Times_New_Roman.ttf 37 m 43.6401 27.1593 2 h -13.6576 28.4494 40.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 3 a -0.0701 24.3008 28.3500 -Times_New_Roman.ttf 37 m 43.6401 27.1593 4 n 0.0277 28.4494 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 5 P -11.5891 30.0347 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 6 o -0.1196 25.1680 28.3500 -Times_New_Roman.ttf 37 m 43.6401 27.1593 7 e -0.1472 22.1278 28.3500 -Times_New_Roman.ttf 37 m 43.6401 27.1593 8 : 0.1339 5.2134 28.3500 -Times_New_Roman.ttf 37 m 43.6401 27.1593 9 r -0.0484 19.2134 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 10 l -13.4820 13.2587 40.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 11 i -13.5377 13.2587 40.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 12 1 -11.8618 15.9913 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 13 | -13.7812 2.3814 53.1680 -Times_New_Roman.ttf 37 m 43.6401 27.1593 14 N -12.0090 43.0089 40.1504 -Times_New_Roman.ttf 37 m 43.6401 27.1593 15 f -13.5763 23.6262 40.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 16 g -0.2706 26.7087 39.8257 -Times_New_Roman.ttf 37 m 43.6401 27.1593 17 d -13.7827 27.3411 42.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 18 W -11.5776 55.6923 40.1504 -Times_New_Roman.ttf 37 m 43.6401 27.1593 19 s 0.1332 17.7150 28.3500 -Times_New_Roman.ttf 37 m 43.6401 27.1593 20 c 0.3761 22.1278 28.3500 -Times_New_Roman.ttf 37 m 43.6401 27.1593 21 u 1.5429 28.6577 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 22 3 -11.9960 21.3876 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 23 ~ 7.4813 29.8907 7.5948 -Times_New_Roman.ttf 37 m 43.6401 27.1593 24 # -13.5208 26.1769 40.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 25 O -13.0665 37.9372 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 26 ` -12.5534 8.2536 9.4443 -Times_New_Roman.ttf 37 m 43.6401 27.1593 27 @ -13.4120 49.5948 54.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 28 F -11.4853 29.5407 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 29 S -13.3705 24.9597 41.5229 -Times_New_Roman.ttf 37 m 43.6401 27.1593 30 p 0.1131 26.9510 39.8257 -Times_New_Roman.ttf 37 m 43.6401 27.1593 31 “ -12.9166 21.7123 14.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 32 % -13.1886 46.5375 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 33 £ -12.2232 26.1504 40.2933 -Times_New_Roman.ttf 37 m 43.6401 27.1593 34 . 22.8199 5.2134 5.2134 -Times_New_Roman.ttf 37 m 43.6401 27.1593 35 2 -11.8094 25.4757 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 36 5 -11.9250 22.0453 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 37 m -0.0895 43.6401 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 38 V -11.7477 42.2071 40.1504 -Times_New_Roman.ttf 37 m 43.6401 27.1593 39 6 -11.9807 24.6350 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 40 w 1.0856 42.0012 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 41 T -11.7138 32.2857 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 42 M -11.7328 50.7900 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 43 G -13.0352 40.3587 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 44 b -13.9118 26.9510 42.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 45 9 -11.7558 24.2850 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 46 ; 0.2200 8.5783 37.1366 -Times_New_Roman.ttf 37 m 43.6401 27.1593 47 D -12.1006 39.4791 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 48 L -11.5080 33.1140 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 49 y 1.0749 29.1484 38.6350 -Times_New_Roman.ttf 37 m 43.6401 27.1593 50 ‘ -12.9250 8.5783 14.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 51 \ -13.8932 16.8974 42.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 52 R -11.8500 39.5192 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 53 < -7.6732 30.8320 29.1907 -Times_New_Roman.ttf 37 m 43.6401 27.1593 54 4 -12.0800 25.4757 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 55 8 -11.7917 22.7465 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 56 0 -12.2534 24.6350 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 57 A -12.7959 42.0000 40.1504 -Times_New_Roman.ttf 37 m 43.6401 27.1593 58 E -11.5479 34.1229 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 59 B -11.7768 34.7552 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 60 v 1.1477 29.7237 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 61 k -13.7973 28.4929 40.8093 -Times_New_Roman.ttf 37 m 43.6401 27.1593 62 J -11.7183 20.8981 40.1504 -Times_New_Roman.ttf 37 m 43.6401 27.1593 63 U -11.7510 40.9787 40.1504 -Times_New_Roman.ttf 37 m 43.6401 27.1593 64 j -13.3548 16.0906 53.4757 -Times_New_Roman.ttf 37 m 43.6401 27.1593 65 ( -12.9984 15.8496 52.7368 -Times_New_Roman.ttf 37 m 43.6401 27.1593 66 7 -11.5419 25.5011 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 67 § -12.4906 20.6124 50.9515 -Times_New_Roman.ttf 37 m 43.6401 27.1593 68 $ -14.6108 23.6262 45.6495 -Times_New_Roman.ttf 37 m 43.6401 27.1593 69 € -11.7852 29.1907 39.1026 -Times_New_Roman.ttf 37 m 43.6401 27.1593 70 / -13.4169 17.5721 42.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 71 C -13.2246 34.5469 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 72 * -13.5304 20.0794 24.4267 -Times_New_Roman.ttf 37 m 43.6401 27.1593 73 ” -13.0230 21.5305 14.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 74 ? -13.1380 19.9145 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 75 { -13.3470 17.0391 52.7368 -Times_New_Roman.ttf 37 m 43.6401 27.1593 76 } -13.4673 17.0391 52.7368 -Times_New_Roman.ttf 37 m 43.6401 27.1593 77 , 22.8544 8.5783 14.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 78 I -11.7617 16.7326 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 79 ° -13.0740 17.5721 17.5721 -Times_New_Roman.ttf 37 m 43.6401 27.1593 80 K -12.0266 41.1593 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 81 H -12.1461 40.8918 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 82 q -0.2460 26.9510 39.8257 -Times_New_Roman.ttf 37 m 43.6401 27.1593 83 & -13.2311 41.3411 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 84 ’ -12.8260 8.5783 14.0000 -Times_New_Roman.ttf 37 m 43.6401 27.1593 85 [ -12.2145 12.6664 51.2372 -Times_New_Roman.ttf 37 m 43.6401 27.1593 86 - 11.1905 15.1907 5.2134 -Times_New_Roman.ttf 37 m 43.6401 27.1593 87 Y -11.8750 41.7313 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 88 Q -13.0180 37.9372 51.1101 -Times_New_Roman.ttf 37 m 43.6401 27.1593 89 " -12.7403 14.9824 16.3814 -Times_New_Roman.ttf 37 m 43.6401 27.1593 90 ! -13.4220 5.2134 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 91 x 1.2830 28.4895 25.9686 -Times_New_Roman.ttf 37 m 43.6401 27.1593 92 ) -13.0387 15.8496 52.7368 -Times_New_Roman.ttf 37 m 43.6401 27.1593 93 = 1.5807 30.1743 12.0076 -Times_New_Roman.ttf 37 m 43.6401 27.1593 94 + -7.3674 30.3814 30.3814 -Times_New_Roman.ttf 37 m 43.6401 27.1593 95 X -11.8760 42.0000 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 96 » -0.2998 24.9427 27.1593 -Times_New_Roman.ttf 37 m 43.6401 27.1593 97 ' -13.2167 5.2134 16.3814 -Times_New_Roman.ttf 37 m 43.6401 27.1593 98 ¢ -10.3621 21.9459 47.5645 -Times_New_Roman.ttf 37 m 43.6401 27.1593 99 Z -11.5934 33.9535 38.9597 -Times_New_Roman.ttf 37 m 43.6401 27.1593 100 > -7.5662 30.8320 29.1907 -Times_New_Roman.ttf 37 m 43.6401 27.1593 101 ® -12.5374 40.3587 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 102 © -13.4435 40.3587 41.3411 -Times_New_Roman.ttf 37 m 43.6401 27.1593 103 ] -12.2203 12.6664 51.2372 -Times_New_Roman.ttf 37 m 43.6401 27.1593 104 é -12.7181 22.1278 41.0164 -Times_New_Roman.ttf 37 m 43.6401 27.1593 105 z 1.5724 23.5872 25.9686 -Times_New_Roman.ttf 37 m 43.6401 27.1593 106 _ 37.1868 30.0314 2.3814 -Times_New_Roman.ttf 37 m 43.6401 27.1593 107 ¥ -11.5493 31.4462 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 1 t 4.8135 16.5632 35.7376 -Times_New_Roman.ttf 38 V 42.2071 40.1504 2 h -1.9327 28.4494 40.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 3 a 12.0385 24.3008 28.3500 -Times_New_Roman.ttf 38 V 42.2071 40.1504 4 n 12.1134 28.4494 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 5 P -0.2405 30.0347 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 6 o 11.7612 25.1680 28.3500 -Times_New_Roman.ttf 38 V 42.2071 40.1504 7 e 11.8916 22.1278 28.3500 -Times_New_Roman.ttf 38 V 42.2071 40.1504 8 : 11.8510 5.2134 28.3500 -Times_New_Roman.ttf 38 V 42.2071 40.1504 9 r 11.8927 19.2134 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 10 l -1.8189 13.2587 40.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 11 i -1.7508 13.2587 40.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 12 1 -0.3306 15.9913 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 13 | -1.8237 2.3814 53.1680 -Times_New_Roman.ttf 38 V 42.2071 40.1504 14 N -0.0135 43.0089 40.1504 -Times_New_Roman.ttf 38 V 42.2071 40.1504 15 f -1.7430 23.6262 40.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 16 g 11.8893 26.7087 39.8257 -Times_New_Roman.ttf 38 V 42.2071 40.1504 17 d -2.0034 27.3411 42.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 18 W -0.0658 55.6923 40.1504 -Times_New_Roman.ttf 38 V 42.2071 40.1504 19 s 11.9107 17.7150 28.3500 -Times_New_Roman.ttf 38 V 42.2071 40.1504 20 c 11.7077 22.1278 28.3500 -Times_New_Roman.ttf 38 V 42.2071 40.1504 21 u 13.1070 28.6577 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 22 3 -0.0655 21.3876 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 23 ~ 19.4537 29.8907 7.5948 -Times_New_Roman.ttf 38 V 42.2071 40.1504 24 # -1.8981 26.1769 40.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 25 O -1.2830 37.9372 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 26 ` -0.8855 8.2536 9.4443 -Times_New_Roman.ttf 38 V 42.2071 40.1504 27 @ -1.9627 49.5948 54.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 28 F -0.0932 29.5407 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 29 S -1.5203 24.9597 41.5229 -Times_New_Roman.ttf 38 V 42.2071 40.1504 30 p 11.6041 26.9510 39.8257 -Times_New_Roman.ttf 38 V 42.2071 40.1504 31 “ -1.2264 21.7123 14.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 32 % -1.1013 46.5375 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 33 £ -0.2601 26.1504 40.2933 -Times_New_Roman.ttf 38 V 42.2071 40.1504 34 . 35.3652 5.2134 5.2134 -Times_New_Roman.ttf 38 V 42.2071 40.1504 35 2 0.2325 25.4757 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 36 5 -0.0078 22.0453 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 37 m 12.0316 43.6401 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 38 V 0.2349 42.2071 40.1504 -Times_New_Roman.ttf 38 V 42.2071 40.1504 39 6 -0.1461 24.6350 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 40 w 12.9045 42.0012 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 41 T -0.0997 32.2857 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 42 M -0.4527 50.7900 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 43 G -1.0189 40.3587 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 44 b -2.0441 26.9510 42.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 45 9 -0.2379 24.2850 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 46 ; 12.0135 8.5783 37.1366 -Times_New_Roman.ttf 38 V 42.2071 40.1504 47 D 0.1618 39.4791 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 48 L 0.0245 33.1140 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 49 y 12.9137 29.1484 38.6350 -Times_New_Roman.ttf 38 V 42.2071 40.1504 50 ‘ -1.0694 8.5783 14.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 51 \ -1.9825 16.8974 42.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 52 R -0.0518 39.5192 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 53 < 4.4687 30.8320 29.1907 -Times_New_Roman.ttf 38 V 42.2071 40.1504 54 4 -0.1240 25.4757 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 55 8 -0.4172 22.7465 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 56 0 -0.1159 24.6350 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 57 A -1.5450 42.0000 40.1504 -Times_New_Roman.ttf 38 V 42.2071 40.1504 58 E 0.0344 34.1229 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 59 B 0.2498 34.7552 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 60 v 12.9210 29.7237 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 61 k -2.1053 28.4929 40.8093 -Times_New_Roman.ttf 38 V 42.2071 40.1504 62 J 0.1339 20.8981 40.1504 -Times_New_Roman.ttf 38 V 42.2071 40.1504 63 U 0.1613 40.9787 40.1504 -Times_New_Roman.ttf 38 V 42.2071 40.1504 64 j -1.7546 16.0906 53.4757 -Times_New_Roman.ttf 38 V 42.2071 40.1504 65 ( -1.4365 15.8496 52.7368 -Times_New_Roman.ttf 38 V 42.2071 40.1504 66 7 -0.1151 25.5011 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 67 § -0.5527 20.6124 50.9515 -Times_New_Roman.ttf 38 V 42.2071 40.1504 68 $ -2.8540 23.6262 45.6495 -Times_New_Roman.ttf 38 V 42.2071 40.1504 69 € -0.3960 29.1907 39.1026 -Times_New_Roman.ttf 38 V 42.2071 40.1504 70 / -1.7772 17.5721 42.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 71 C -0.9794 34.5469 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 72 * -2.0362 20.0794 24.4267 -Times_New_Roman.ttf 38 V 42.2071 40.1504 73 ” -1.0046 21.5305 14.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 74 ? -1.5206 19.9145 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 75 { -1.4360 17.0391 52.7368 -Times_New_Roman.ttf 38 V 42.2071 40.1504 76 } -1.3920 17.0391 52.7368 -Times_New_Roman.ttf 38 V 42.2071 40.1504 77 , 34.8664 8.5783 14.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 78 I -0.2487 16.7326 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 79 ° -1.2375 17.5721 17.5721 -Times_New_Roman.ttf 38 V 42.2071 40.1504 80 K 0.1115 41.1593 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 81 H 0.1208 40.8918 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 82 q 11.8448 26.9510 39.8257 -Times_New_Roman.ttf 38 V 42.2071 40.1504 83 & -1.1995 41.3411 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 84 ’ -1.2439 8.5783 14.0000 -Times_New_Roman.ttf 38 V 42.2071 40.1504 85 [ -0.5212 12.6664 51.2372 -Times_New_Roman.ttf 38 V 42.2071 40.1504 86 - 22.5565 15.1907 5.2134 -Times_New_Roman.ttf 38 V 42.2071 40.1504 87 Y -0.1533 41.7313 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 88 Q -1.5948 37.9372 51.1101 -Times_New_Roman.ttf 38 V 42.2071 40.1504 89 " -1.2723 14.9824 16.3814 -Times_New_Roman.ttf 38 V 42.2071 40.1504 90 ! -1.3399 5.2134 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 91 x 12.9072 28.4895 25.9686 -Times_New_Roman.ttf 38 V 42.2071 40.1504 92 ) -1.3016 15.8496 52.7368 -Times_New_Roman.ttf 38 V 42.2071 40.1504 93 = 13.3413 30.1743 12.0076 -Times_New_Roman.ttf 38 V 42.2071 40.1504 94 + 4.5604 30.3814 30.3814 -Times_New_Roman.ttf 38 V 42.2071 40.1504 95 X 0.1658 42.0000 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 96 » 11.5313 24.9427 27.1593 -Times_New_Roman.ttf 38 V 42.2071 40.1504 97 ' -1.1057 5.2134 16.3814 -Times_New_Roman.ttf 38 V 42.2071 40.1504 98 ¢ 1.3021 21.9459 47.5645 -Times_New_Roman.ttf 38 V 42.2071 40.1504 99 Z 0.1371 33.9535 38.9597 -Times_New_Roman.ttf 38 V 42.2071 40.1504 100 > 4.1473 30.8320 29.1907 -Times_New_Roman.ttf 38 V 42.2071 40.1504 101 ® -1.0264 40.3587 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 102 © -1.2357 40.3587 41.3411 -Times_New_Roman.ttf 38 V 42.2071 40.1504 103 ] -0.6335 12.6664 51.2372 -Times_New_Roman.ttf 38 V 42.2071 40.1504 104 é -1.1977 22.1278 41.0164 -Times_New_Roman.ttf 38 V 42.2071 40.1504 105 z 12.9629 23.5872 25.9686 -Times_New_Roman.ttf 38 V 42.2071 40.1504 106 _ 49.2660 30.0314 2.3814 -Times_New_Roman.ttf 38 V 42.2071 40.1504 107 ¥ 0.0083 31.4462 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 1 t 4.6205 16.5632 35.7376 -Times_New_Roman.ttf 39 6 24.6350 39.1026 2 h -1.4954 28.4494 40.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 3 a 11.7583 24.3008 28.3500 -Times_New_Roman.ttf 39 6 24.6350 39.1026 4 n 11.7807 28.4494 27.1593 -Times_New_Roman.ttf 39 6 24.6350 39.1026 5 P 0.0223 30.0347 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 6 o 11.9860 25.1680 28.3500 -Times_New_Roman.ttf 39 6 24.6350 39.1026 7 e 12.2250 22.1278 28.3500 -Times_New_Roman.ttf 39 6 24.6350 39.1026 8 : 11.9669 5.2134 28.3500 -Times_New_Roman.ttf 39 6 24.6350 39.1026 9 r 11.9131 19.2134 27.1593 -Times_New_Roman.ttf 39 6 24.6350 39.1026 10 l -1.6653 13.2587 40.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 11 i -1.4954 13.2587 40.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 12 1 -0.1651 15.9913 39.1026 -Times_New_Roman.ttf 39 6 24.6350 39.1026 13 | -1.8962 2.3814 53.1680 -Times_New_Roman.ttf 39 6 24.6350 39.1026 14 N 0.1429 43.0089 40.1504 -Times_New_Roman.ttf 39 6 24.6350 39.1026 15 f -1.7578 23.6262 40.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 16 g 12.3360 26.7087 39.8257 -Times_New_Roman.ttf 39 6 24.6350 39.1026 17 d -2.0366 27.3411 42.0000 -Times_New_Roman.ttf 39 6 24.6350 39.1026 18 W 0.2170 55.6923 40.1504 -Times_New_Roman.ttf 39 6 24.6350 39.1026 19 s 11.6973 17.7150 28.3500 -Times_New_Roman.ttf 39 6 24.6350 39.1026 20 c 12.0740 22.1278 28.3500 -Times_New_Roman.ttf 39 6 24.6350 39.1026 21 u 13.0493 28.6577 27.1593 -Times_New_Roman.ttf 39 6 24.6350 39.1026 22 3 0.0746 21.3876 39.1026 -Times_New_Roman.ttf 39 6 24.6350 39.1026 23 ~ 19.8761 29.8907 7.5948 -Times_New_Roman.ttf 39 6 24.6350 39.1026 24 # -1.6725 26.1769 40.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 25 O -0.8755 37.9372 41.3411 -Times_New_Roman.ttf 39 6 24.6350 39.1026 26 ` -0.2599 8.2536 9.4443 -Times_New_Roman.ttf 39 6 24.6350 39.1026 27 @ -1.8017 49.5948 54.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 28 F 0.3084 29.5407 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 29 S -1.2681 24.9597 41.5229 -Times_New_Roman.ttf 39 6 24.6350 39.1026 30 p 12.0272 26.9510 39.8257 -Times_New_Roman.ttf 39 6 24.6350 39.1026 31 “ -1.3847 21.7123 14.0000 -Times_New_Roman.ttf 39 6 24.6350 39.1026 32 % -1.1024 46.5375 41.3411 -Times_New_Roman.ttf 39 6 24.6350 39.1026 33 £ 0.0742 26.1504 40.2933 -Times_New_Roman.ttf 39 6 24.6350 39.1026 34 . 35.1073 5.2134 5.2134 -Times_New_Roman.ttf 39 6 24.6350 39.1026 35 2 0.3470 25.4757 39.1026 -Times_New_Roman.ttf 39 6 24.6350 39.1026 36 5 0.1439 22.0453 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 37 m 12.0279 43.6401 27.1593 -Times_New_Roman.ttf 39 6 24.6350 39.1026 38 V -0.0056 42.2071 40.1504 -Times_New_Roman.ttf 39 6 24.6350 39.1026 39 6 -0.1269 24.6350 39.1026 -Times_New_Roman.ttf 39 6 24.6350 39.1026 40 w 13.1784 42.0012 27.1593 -Times_New_Roman.ttf 39 6 24.6350 39.1026 41 T 0.1539 32.2857 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 42 M 0.0974 50.7900 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 43 G -1.1238 40.3587 41.3411 -Times_New_Roman.ttf 39 6 24.6350 39.1026 44 b -1.8067 26.9510 42.0000 -Times_New_Roman.ttf 39 6 24.6301 39.1149 45 9 -0.1201 24.2671 39.1149 -Times_New_Roman.ttf 39 6 24.6301 39.1149 46 ; 11.9588 8.5769 37.1560 -Times_New_Roman.ttf 39 6 24.6350 39.1026 47 D 0.0702 39.4791 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 48 L 0.0743 33.1140 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 49 y 13.0840 29.1484 38.6350 -Times_New_Roman.ttf 39 6 24.6301 39.1149 50 ‘ -1.1401 8.5769 14.0000 -Times_New_Roman.ttf 39 6 24.6301 39.1149 51 \ -1.6099 16.8851 42.0000 -Times_New_Roman.ttf 39 6 24.6350 39.1026 52 R 0.3092 39.5192 38.9597 -Times_New_Roman.ttf 39 6 24.6301 39.1149 53 < 4.5056 30.8172 29.1949 -Times_New_Roman.ttf 39 6 24.6301 39.1149 54 4 0.0019 25.4620 39.1149 -Times_New_Roman.ttf 39 6 24.6301 39.1149 55 8 0.0279 22.7514 39.1149 -Times_New_Roman.ttf 39 6 24.6301 39.1149 56 0 0.0479 24.6301 39.1149 -Times_New_Roman.ttf 39 6 24.6350 39.1026 57 A -0.9524 42.0000 40.1504 -Times_New_Roman.ttf 39 6 24.6350 39.1026 58 E 0.1265 34.1229 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 59 B -0.1486 34.7552 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 60 v 13.0721 29.7237 27.1593 -Times_New_Roman.ttf 39 6 24.6350 39.1026 61 k -1.8282 28.4929 40.8093 -Times_New_Roman.ttf 39 6 24.6350 39.1026 62 J 0.1608 20.8981 40.1504 -Times_New_Roman.ttf 39 6 24.6350 39.1026 63 U 0.2039 40.9787 40.1504 -Times_New_Roman.ttf 39 6 24.6350 39.1026 64 j -1.5329 16.0906 53.4757 -Times_New_Roman.ttf 39 6 24.6301 39.1149 65 ( -1.4075 15.8383 52.6957 -Times_New_Roman.ttf 39 6 24.6301 39.1149 66 7 0.4623 25.4883 38.9668 -Times_New_Roman.ttf 39 6 24.6301 39.1149 67 § -0.0747 20.6180 50.9240 -Times_New_Roman.ttf 39 6 24.6301 39.1149 68 $ -2.7095 23.6237 45.6650 -Times_New_Roman.ttf 39 6 24.6301 39.1149 69 € -0.1633 29.1949 39.1149 -Times_New_Roman.ttf 39 6 24.6301 39.1149 70 / -1.7214 17.5847 42.0000 -Times_New_Roman.ttf 39 6 24.6350 39.1026 71 C -0.9996 34.5469 41.3411 -Times_New_Roman.ttf 39 6 24.6301 39.1149 72 * -1.7761 20.0652 24.4140 -Times_New_Roman.ttf 39 6 24.6301 39.1149 73 ” -0.9391 21.5302 14.0000 -Times_New_Roman.ttf 39 6 24.6301 39.1149 74 ? -1.0242 19.9342 41.3566 -Times_New_Roman.ttf 39 6 24.6301 39.1149 75 { -1.3507 17.0320 52.6957 -Times_New_Roman.ttf 39 6 24.6301 39.1149 76 } -1.6308 17.0320 52.6957 -Times_New_Roman.ttf 39 6 24.6301 39.1149 77 , 35.3727 8.5769 14.0000 -Times_New_Roman.ttf 39 6 24.6350 39.1026 78 I 0.1044 16.7326 38.9597 -Times_New_Roman.ttf 39 6 24.6301 39.1149 79 ° -1.2836 17.5847 17.5847 -Times_New_Roman.ttf 39 6 24.6350 39.1026 80 K 0.2230 41.1593 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 81 H 0.1099 40.8918 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 82 q 11.8489 26.9510 39.8257 -Times_New_Roman.ttf 39 6 24.6301 39.1149 83 & -1.0381 41.3566 41.3566 -Times_New_Roman.ttf 39 6 24.6301 39.1149 84 ’ -1.2586 8.5769 14.0000 -Times_New_Roman.ttf 39 6 24.6301 39.1149 85 [ -0.3668 12.6569 51.2203 -Times_New_Roman.ttf 39 6 24.6301 39.1149 86 - 22.8483 15.1949 5.2070 -Times_New_Roman.ttf 39 6 24.6350 39.1026 87 Y 0.3236 41.7313 38.9597 -Times_New_Roman.ttf 39 6 24.6350 39.1026 88 Q -0.8865 37.9372 51.1101 -Times_New_Roman.ttf 39 6 24.6301 39.1149 89 " -0.6369 14.9789 16.3898 -Times_New_Roman.ttf 39 6 24.6301 39.1149 90 ! -1.2860 5.2070 41.3566 -Times_New_Roman.ttf 39 6 24.6350 39.1026 91 x 12.9116 28.4895 25.9686 -Times_New_Roman.ttf 39 6 24.6301 39.1149 92 ) -1.2232 15.8383 52.6957 -Times_New_Roman.ttf 39 6 24.6301 39.1149 93 = 13.2719 30.1750 12.0135 -Times_New_Roman.ttf 39 6 24.6301 39.1149 94 + 4.5220 30.3898 30.3898 -Times_New_Roman.ttf 39 6 24.6350 39.1026 95 X 0.0343 42.0000 38.9597 -Times_New_Roman.ttf 39 6 24.6301 39.1149 96 » 11.8591 24.9093 27.1680 -Times_New_Roman.ttf 39 6 24.6301 39.1149 97 ' -0.9608 5.2070 16.3898 -Times_New_Roman.ttf 39 6 24.6301 39.1149 98 ¢ 1.5310 21.9610 47.5712 -Times_New_Roman.ttf 39 6 24.6350 39.1026 99 Z 0.2740 33.9535 38.9597 -Times_New_Roman.ttf 39 6 24.6301 39.1149 100 > 4.1038 30.8172 29.1949 -Times_New_Roman.ttf 39 6 24.6301 39.1149 101 ® -0.9637 40.3777 41.3566 -Times_New_Roman.ttf 39 6 24.6301 39.1149 102 © -1.0036 40.3777 41.3566 -Times_New_Roman.ttf 39 6 24.6301 39.1149 103 ] -0.6614 12.6569 51.2203 -Times_New_Roman.ttf 39 6 24.6350 39.1026 104 é -0.6732 22.1278 41.0164 -Times_New_Roman.ttf 39 6 24.6350 39.1026 105 z 13.1910 23.5872 25.9686 -Times_New_Roman.ttf 39 6 24.6301 39.1149 106 _ 49.0860 30.0269 2.3898 -Times_New_Roman.ttf 39 6 24.6301 39.1149 107 ¥ 0.0502 31.4941 38.9668 -Times_New_Roman.ttf 40 w 42.0012 27.1593 1 t -8.7313 16.5632 35.7376 -Times_New_Roman.ttf 40 w 42.0012 27.1593 2 h -14.7921 28.4494 40.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 3 a -1.3681 24.3008 28.3500 -Times_New_Roman.ttf 40 w 42.0012 27.1593 4 n -1.0588 28.4494 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 5 P -13.0054 30.0347 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 6 o -1.2810 25.1680 28.3500 -Times_New_Roman.ttf 40 w 42.0012 27.1593 7 e -1.2742 22.1278 28.3500 -Times_New_Roman.ttf 40 w 42.0012 27.1593 8 : -1.1749 5.2134 28.3500 -Times_New_Roman.ttf 40 w 42.0012 27.1593 9 r -1.1036 19.2134 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 10 l -14.7221 13.2587 40.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 11 i -15.1859 13.2587 40.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 12 1 -12.8679 15.9913 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 13 | -14.8764 2.3814 53.1680 -Times_New_Roman.ttf 40 w 42.0012 27.1593 14 N -12.7330 43.0089 40.1504 -Times_New_Roman.ttf 40 w 42.0012 27.1593 15 f -14.8310 23.6262 40.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 16 g -1.3442 26.7087 39.8257 -Times_New_Roman.ttf 40 w 42.0012 27.1593 17 d -15.0143 27.3411 42.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 18 W -12.6424 55.6923 40.1504 -Times_New_Roman.ttf 40 w 42.0012 27.1593 19 s -0.7514 17.7150 28.3500 -Times_New_Roman.ttf 40 w 42.0012 27.1593 20 c -1.2726 22.1278 28.3500 -Times_New_Roman.ttf 40 w 42.0012 27.1593 21 u 0.1116 28.6577 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 22 3 -13.0141 21.3876 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 23 ~ 7.0548 29.8907 7.5948 -Times_New_Roman.ttf 40 w 42.0012 27.1593 24 # -14.8784 26.1769 40.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 25 O -14.1248 37.9372 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 26 ` -13.1997 8.2536 9.4443 -Times_New_Roman.ttf 40 w 42.0012 27.1593 27 @ -14.8347 49.5948 54.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 28 F -12.9110 29.5407 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 29 S -14.3601 24.9597 41.5229 -Times_New_Roman.ttf 40 w 42.0012 27.1593 30 p -1.3395 26.9510 39.8257 -Times_New_Roman.ttf 40 w 42.0012 27.1593 31 “ -14.0021 21.7123 14.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 32 % -14.2794 46.5375 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 33 £ -13.0594 26.1504 40.2933 -Times_New_Roman.ttf 40 w 42.0012 27.1593 34 . 21.8088 5.2134 5.2134 -Times_New_Roman.ttf 40 w 42.0012 27.1593 35 2 -12.9653 25.4757 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 36 5 -12.9803 22.0453 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 37 m -0.8937 43.6401 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 38 V -13.0726 42.2071 40.1504 -Times_New_Roman.ttf 40 w 42.0012 27.1593 39 6 -13.3054 24.6350 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 40 w 0.0131 42.0012 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 41 T -13.3017 32.2857 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 42 M -12.9239 50.7900 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 43 G -14.0067 40.3587 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 44 b -15.0246 26.9510 42.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 45 9 -13.2661 24.2850 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 46 ; -1.2525 8.5783 37.1366 -Times_New_Roman.ttf 40 w 42.0012 27.1593 47 D -12.8650 39.4791 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 48 L -12.9220 33.1140 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 49 y -0.0440 29.1484 38.6350 -Times_New_Roman.ttf 40 w 42.0012 27.1593 50 ‘ -14.1479 8.5783 14.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 51 \ -15.0658 16.8974 42.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 52 R -12.8984 39.5192 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 53 < -8.8060 30.8320 29.1907 -Times_New_Roman.ttf 40 w 42.0012 27.1593 54 4 -13.2326 25.4757 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 55 8 -13.2405 22.7465 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 56 0 -13.0390 24.6350 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 57 A -14.1499 42.0000 40.1504 -Times_New_Roman.ttf 40 w 42.0012 27.1593 58 E -13.0125 34.1229 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 59 B -13.2343 34.7552 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 60 v -0.1882 29.7237 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 61 k -14.8504 28.4929 40.8093 -Times_New_Roman.ttf 40 w 42.0012 27.1593 62 J -12.9647 20.8981 40.1504 -Times_New_Roman.ttf 40 w 42.0012 27.1593 63 U -12.9610 40.9787 40.1504 -Times_New_Roman.ttf 40 w 42.0012 27.1593 64 j -15.0877 16.0906 53.4757 -Times_New_Roman.ttf 40 w 42.0012 27.1593 65 ( -13.9316 15.8496 52.7368 -Times_New_Roman.ttf 40 w 42.0012 27.1593 66 7 -12.9095 25.5011 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 67 § -13.2235 20.6124 50.9515 -Times_New_Roman.ttf 40 w 42.0012 27.1593 68 $ -16.1646 23.6262 45.6495 -Times_New_Roman.ttf 40 w 42.0012 27.1593 69 € -13.3639 29.1907 39.1026 -Times_New_Roman.ttf 40 w 42.0012 27.1593 70 / -14.9275 17.5721 42.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 71 C -14.4603 34.5469 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 72 * -14.8231 20.0794 24.4267 -Times_New_Roman.ttf 40 w 42.0012 27.1593 73 ” -14.1531 21.5305 14.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 74 ? -14.0303 19.9145 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 75 { -14.6367 17.0391 52.7368 -Times_New_Roman.ttf 40 w 42.0012 27.1593 76 } -14.3133 17.0391 52.7368 -Times_New_Roman.ttf 40 w 42.0012 27.1593 77 , 21.7637 8.5783 14.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 78 I -12.9657 16.7326 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 79 ° -14.2542 17.5721 17.5721 -Times_New_Roman.ttf 40 w 42.0012 27.1593 80 K -13.2836 41.1593 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 81 H -12.9022 40.8918 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 82 q -0.9377 26.9510 39.8257 -Times_New_Roman.ttf 40 w 42.0012 27.1593 83 & -14.2796 41.3411 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 84 ’ -14.4012 8.5783 14.0000 -Times_New_Roman.ttf 40 w 42.0012 27.1593 85 [ -14.0656 12.6664 51.2372 -Times_New_Roman.ttf 40 w 42.0012 27.1593 86 - 9.5926 15.1907 5.2134 -Times_New_Roman.ttf 40 w 42.0012 27.1593 87 Y -12.8489 41.7313 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 88 Q -14.1619 37.9372 51.1101 -Times_New_Roman.ttf 40 w 42.0012 27.1593 89 " -13.8945 14.9824 16.3814 -Times_New_Roman.ttf 40 w 42.0012 27.1593 90 ! -14.3221 5.2134 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 91 x -0.1914 28.4895 25.9686 -Times_New_Roman.ttf 40 w 42.0012 27.1593 92 ) -14.5369 15.8496 52.7368 -Times_New_Roman.ttf 40 w 42.0012 27.1593 93 = 0.1688 30.1743 12.0076 -Times_New_Roman.ttf 40 w 42.0012 27.1593 94 + -8.6247 30.3814 30.3814 -Times_New_Roman.ttf 40 w 42.0012 27.1593 95 X -12.9110 42.0000 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 96 » -1.4131 24.9427 27.1593 -Times_New_Roman.ttf 40 w 42.0012 27.1593 97 ' -14.2926 5.2134 16.3814 -Times_New_Roman.ttf 40 w 42.0012 27.1593 98 ¢ -11.7646 21.9459 47.5645 -Times_New_Roman.ttf 40 w 42.0012 27.1593 99 Z -13.0934 33.9535 38.9597 -Times_New_Roman.ttf 40 w 42.0012 27.1593 100 > -8.8031 30.8320 29.1907 -Times_New_Roman.ttf 40 w 42.0012 27.1593 101 ® -13.9283 40.3587 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 102 © -14.0989 40.3587 41.3411 -Times_New_Roman.ttf 40 w 42.0012 27.1593 103 ] -13.5091 12.6664 51.2372 -Times_New_Roman.ttf 40 w 42.0012 27.1593 104 é -13.6421 22.1278 41.0164 -Times_New_Roman.ttf 40 w 42.0012 27.1593 105 z 0.1839 23.5872 25.9686 -Times_New_Roman.ttf 40 w 42.0012 27.1593 106 _ 36.3190 30.0314 2.3814 -Times_New_Roman.ttf 40 w 42.0012 27.1593 107 ¥ -13.1223 31.4462 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 1 t 3.9535 16.5632 35.7376 -Times_New_Roman.ttf 41 T 32.2857 38.9597 2 h -1.5498 28.4494 40.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 3 a 11.6346 24.3008 28.3500 -Times_New_Roman.ttf 41 T 32.2857 38.9597 4 n 11.6203 28.4494 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 5 P -0.1686 30.0347 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 6 o 11.9135 25.1680 28.3500 -Times_New_Roman.ttf 41 T 32.2857 38.9597 7 e 11.8120 22.1278 28.3500 -Times_New_Roman.ttf 41 T 32.2857 38.9597 8 : 11.8323 5.2134 28.3500 -Times_New_Roman.ttf 41 T 32.2857 38.9597 9 r 11.5609 19.2134 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 10 l -1.7573 13.2587 40.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 11 i -1.9682 13.2587 40.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 12 1 0.2024 15.9913 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 13 | -1.9682 2.3814 53.1680 -Times_New_Roman.ttf 41 T 32.2857 38.9597 14 N 0.0010 43.0089 40.1504 -Times_New_Roman.ttf 41 T 32.2857 38.9597 15 f -2.0401 23.6262 40.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 16 g 11.9256 26.7087 39.8257 -Times_New_Roman.ttf 41 T 32.2857 38.9597 17 d -1.7684 27.3411 42.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 18 W -0.0357 55.6923 40.1504 -Times_New_Roman.ttf 41 T 32.2857 38.9597 19 s 11.4934 17.7150 28.3500 -Times_New_Roman.ttf 41 T 32.2857 38.9597 20 c 11.7532 22.1278 28.3500 -Times_New_Roman.ttf 41 T 32.2857 38.9597 21 u 13.0828 28.6577 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 22 3 -0.2064 21.3876 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 23 ~ 19.6408 29.8907 7.5948 -Times_New_Roman.ttf 41 T 32.2857 38.9597 24 # -1.4918 26.1769 40.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 25 O -1.1440 37.9372 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 26 ` -0.2892 8.2536 9.4443 -Times_New_Roman.ttf 41 T 32.2857 38.9597 27 @ -1.9079 49.5948 54.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 28 F -0.0417 29.5407 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 29 S -1.1140 24.9597 41.5229 -Times_New_Roman.ttf 41 T 32.2857 38.9597 30 p 11.7759 26.9510 39.8257 -Times_New_Roman.ttf 41 T 32.2857 38.9597 31 “ -0.9104 21.7123 14.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 32 % -1.4646 46.5375 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 33 £ 0.0438 26.1504 40.2933 -Times_New_Roman.ttf 41 T 32.2857 38.9597 34 . 34.6720 5.2134 5.2134 -Times_New_Roman.ttf 41 T 32.2857 38.9597 35 2 -0.1665 25.4757 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 36 5 0.1654 22.0453 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 37 m 11.7921 43.6401 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 38 V 0.1116 42.2071 40.1504 -Times_New_Roman.ttf 41 T 32.2857 38.9597 39 6 -0.1165 24.6350 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 40 w 13.0782 42.0012 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 41 T 0.0731 32.2857 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 42 M 0.1500 50.7900 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 43 G -1.1869 40.3587 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 44 b -1.8252 26.9510 42.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 45 9 -0.6015 24.2850 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 46 ; 11.6977 8.5783 37.1366 -Times_New_Roman.ttf 41 T 32.2857 38.9597 47 D -0.2043 39.4791 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 48 L 0.1027 33.1140 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 49 y 12.7655 29.1484 38.6350 -Times_New_Roman.ttf 41 T 32.2857 38.9597 50 ‘ -1.3988 8.5783 14.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 51 \ -1.7216 16.8974 42.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 52 R -0.1492 39.5192 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 53 < 4.3522 30.8320 29.1907 -Times_New_Roman.ttf 41 T 32.2857 38.9597 54 4 -0.3039 25.4757 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 55 8 -0.1307 22.7465 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 56 0 -0.2277 24.6350 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 57 A -1.1980 42.0000 40.1504 -Times_New_Roman.ttf 41 T 32.2857 38.9597 58 E 0.0115 34.1229 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 59 B -0.0003 34.7552 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 60 v 12.6806 29.7237 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 61 k -1.7375 28.4929 40.8093 -Times_New_Roman.ttf 41 T 32.2857 38.9597 62 J -0.1885 20.8981 40.1504 -Times_New_Roman.ttf 41 T 32.2857 38.9597 63 U -0.1731 40.9787 40.1504 -Times_New_Roman.ttf 41 T 32.2857 38.9597 64 j -1.8066 16.0906 53.4757 -Times_New_Roman.ttf 41 T 32.2857 38.9597 65 ( -1.3195 15.8496 52.7368 -Times_New_Roman.ttf 41 T 32.2857 38.9597 66 7 0.3156 25.5011 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 67 § -0.3734 20.6124 50.9515 -Times_New_Roman.ttf 41 T 32.2857 38.9597 68 $ -2.8521 23.6262 45.6495 -Times_New_Roman.ttf 41 T 32.2857 38.9597 69 € -0.2132 29.1907 39.1026 -Times_New_Roman.ttf 41 T 32.2857 38.9597 70 / -2.2124 17.5721 42.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 71 C -1.1945 34.5469 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 72 * -2.2843 20.0794 24.4267 -Times_New_Roman.ttf 41 T 32.2857 38.9597 73 ” -1.4065 21.5305 14.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 74 ? -1.1106 19.9145 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 75 { -1.1340 17.0391 52.7368 -Times_New_Roman.ttf 41 T 32.2857 38.9597 76 } -1.6712 17.0391 52.7368 -Times_New_Roman.ttf 41 T 32.2857 38.9597 77 , 34.9732 8.5783 14.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 78 I -0.0578 16.7326 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 79 ° -1.0804 17.5721 17.5721 -Times_New_Roman.ttf 41 T 32.2857 38.9597 80 K -0.0718 41.1593 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 81 H -0.3432 40.8918 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 82 q 11.8696 26.9510 39.8257 -Times_New_Roman.ttf 41 T 32.2857 38.9597 83 & -1.2496 41.3411 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 84 ’ -1.2930 8.5783 14.0000 -Times_New_Roman.ttf 41 T 32.2857 38.9597 85 [ -0.8150 12.6664 51.2372 -Times_New_Roman.ttf 41 T 32.2857 38.9597 86 - 22.7565 15.1907 5.2134 -Times_New_Roman.ttf 41 T 32.2857 38.9597 87 Y 0.2896 41.7313 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 88 Q -1.1726 37.9372 51.1101 -Times_New_Roman.ttf 41 T 32.2857 38.9597 89 " -1.0336 14.9824 16.3814 -Times_New_Roman.ttf 41 T 32.2857 38.9597 90 ! -1.2510 5.2134 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 91 x 12.9750 28.4895 25.9686 -Times_New_Roman.ttf 41 T 32.2857 38.9597 92 ) -1.7720 15.8496 52.7368 -Times_New_Roman.ttf 41 T 32.2857 38.9597 93 = 13.4954 30.1743 12.0076 -Times_New_Roman.ttf 41 T 32.2857 38.9597 94 + 4.0427 30.3814 30.3814 -Times_New_Roman.ttf 41 T 32.2857 38.9597 95 X 0.1071 42.0000 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 96 » 11.7192 24.9427 27.1593 -Times_New_Roman.ttf 41 T 32.2857 38.9597 97 ' -1.2605 5.2134 16.3814 -Times_New_Roman.ttf 41 T 32.2857 38.9597 98 ¢ 1.2039 21.9459 47.5645 -Times_New_Roman.ttf 41 T 32.2857 38.9597 99 Z 0.1914 33.9535 38.9597 -Times_New_Roman.ttf 41 T 32.2857 38.9597 100 > 4.2969 30.8320 29.1907 -Times_New_Roman.ttf 41 T 32.2857 38.9597 101 ® -1.0606 40.3587 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 102 © -1.4377 40.3587 41.3411 -Times_New_Roman.ttf 41 T 32.2857 38.9597 103 ] -0.3875 12.6664 51.2372 -Times_New_Roman.ttf 41 T 32.2857 38.9597 104 é -0.8160 22.1278 41.0164 -Times_New_Roman.ttf 41 T 32.2857 38.9597 105 z 12.6806 23.5872 25.9686 -Times_New_Roman.ttf 41 T 32.2857 38.9597 106 _ 49.3090 30.0314 2.3814 -Times_New_Roman.ttf 41 T 32.2857 38.9597 107 ¥ 0.0065 31.4462 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 1 t 4.0000 16.5632 35.7376 -Times_New_Roman.ttf 42 M 50.7900 38.9597 2 h -1.6558 28.4494 40.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 3 a 11.8893 24.3008 28.3500 -Times_New_Roman.ttf 42 M 50.7900 38.9597 4 n 11.9093 28.4494 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 5 P 0.0199 30.0347 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 6 o 11.6517 25.1680 28.3500 -Times_New_Roman.ttf 42 M 50.7900 38.9597 7 e 12.0593 22.1278 28.3500 -Times_New_Roman.ttf 42 M 50.7900 38.9597 8 : 11.6554 5.2134 28.3500 -Times_New_Roman.ttf 42 M 50.7900 38.9597 9 r 12.0988 19.2134 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 10 l -2.0197 13.2587 40.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 11 i -1.9408 13.2587 40.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 12 1 -0.4301 15.9913 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 13 | -1.8052 2.3814 53.1680 -Times_New_Roman.ttf 42 M 50.7900 38.9597 14 N 0.1325 43.0089 40.1504 -Times_New_Roman.ttf 42 M 50.7900 38.9597 15 f -2.0369 23.6262 40.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 16 g 11.4959 26.7087 39.8257 -Times_New_Roman.ttf 42 M 50.7900 38.9597 17 d -1.8018 27.3411 42.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 18 W 0.2187 55.6923 40.1504 -Times_New_Roman.ttf 42 M 50.7900 38.9597 19 s 11.5007 17.7150 28.3500 -Times_New_Roman.ttf 42 M 50.7900 38.9597 20 c 11.9708 22.1278 28.3500 -Times_New_Roman.ttf 42 M 50.7900 38.9597 21 u 12.7574 28.6577 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 22 3 -0.1081 21.3876 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 23 ~ 19.8506 29.8907 7.5948 -Times_New_Roman.ttf 42 M 50.7900 38.9597 24 # -1.9195 26.1769 40.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 25 O -1.4101 37.9372 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 26 ` -0.5139 8.2536 9.4443 -Times_New_Roman.ttf 42 M 50.7900 38.9597 27 @ -1.9695 49.5948 54.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 28 F 0.1914 29.5407 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 29 S -1.5312 24.9597 41.5229 -Times_New_Roman.ttf 42 M 50.7900 38.9597 30 p 12.0394 26.9510 39.8257 -Times_New_Roman.ttf 42 M 50.7900 38.9597 31 “ -0.8595 21.7123 14.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 32 % -1.2784 46.5375 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 33 £ -0.3424 26.1504 40.2933 -Times_New_Roman.ttf 42 M 50.7900 38.9597 34 . 34.7494 5.2134 5.2134 -Times_New_Roman.ttf 42 M 50.7900 38.9597 35 2 0.1234 25.4757 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 36 5 -0.1066 22.0453 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 37 m 12.0113 43.6401 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 38 V 0.1067 42.2071 40.1504 -Times_New_Roman.ttf 42 M 50.7900 38.9597 39 6 -0.0489 24.6350 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 40 w 12.8642 42.0012 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 41 T -0.0731 32.2857 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 42 M 0.1464 50.7900 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 43 G -1.0234 40.3587 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 44 b -1.8936 26.9510 42.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 45 9 -0.2114 24.2850 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 46 ; 11.6424 8.5783 37.1366 -Times_New_Roman.ttf 42 M 50.7900 38.9597 47 D 0.4740 39.4791 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 48 L 0.0853 33.1140 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 49 y 12.8193 29.1484 38.6350 -Times_New_Roman.ttf 42 M 50.7900 38.9597 50 ‘ -1.4503 8.5783 14.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 51 \ -2.0558 16.8974 42.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 52 R 0.0462 39.5192 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 53 < 4.4344 30.8320 29.1907 -Times_New_Roman.ttf 42 M 50.7900 38.9597 54 4 -0.1614 25.4757 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 55 8 -0.3607 22.7465 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 56 0 -0.0649 24.6350 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 57 A -1.1391 42.0000 40.1504 -Times_New_Roman.ttf 42 M 50.7900 38.9597 58 E 0.1565 34.1229 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 59 B -0.0412 34.7552 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 60 v 13.3669 29.7237 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 61 k -2.0470 28.4929 40.8093 -Times_New_Roman.ttf 42 M 50.7900 38.9597 62 J 0.4726 20.8981 40.1504 -Times_New_Roman.ttf 42 M 50.7900 38.9597 63 U 0.4045 40.9787 40.1504 -Times_New_Roman.ttf 42 M 50.7900 38.9597 64 j -1.7443 16.0906 53.4757 -Times_New_Roman.ttf 42 M 50.7900 38.9597 65 ( -1.5278 15.8496 52.7368 -Times_New_Roman.ttf 42 M 50.7900 38.9597 66 7 0.1321 25.5011 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 67 § -0.4715 20.6124 50.9515 -Times_New_Roman.ttf 42 M 50.7900 38.9597 68 $ -3.0359 23.6262 45.6495 -Times_New_Roman.ttf 42 M 50.7900 38.9597 69 € -0.2014 29.1907 39.1026 -Times_New_Roman.ttf 42 M 50.7900 38.9597 70 / -1.9826 17.5721 42.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 71 C -1.1057 34.5469 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 72 * -2.4018 20.0794 24.4267 -Times_New_Roman.ttf 42 M 50.7900 38.9597 73 ” -1.4301 21.5305 14.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 74 ? -1.3914 19.9145 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 75 { -1.1604 17.0391 52.7368 -Times_New_Roman.ttf 42 M 50.7900 38.9597 76 } -1.4145 17.0391 52.7368 -Times_New_Roman.ttf 42 M 50.7900 38.9597 77 , 34.8821 8.5783 14.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 78 I 0.0216 16.7326 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 79 ° -0.9252 17.5721 17.5721 -Times_New_Roman.ttf 42 M 50.7900 38.9597 80 K 0.2081 41.1593 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 81 H -0.1393 40.8918 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 82 q 11.8477 26.9510 39.8257 -Times_New_Roman.ttf 42 M 50.7900 38.9597 83 & -0.7366 41.3411 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 84 ’ -0.5093 8.5783 14.0000 -Times_New_Roman.ttf 42 M 50.7900 38.9597 85 [ -0.7159 12.6664 51.2372 -Times_New_Roman.ttf 42 M 50.7900 38.9597 86 - 22.6902 15.1907 5.2134 -Times_New_Roman.ttf 42 M 50.7900 38.9597 87 Y -0.0172 41.7313 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 88 Q -1.2208 37.9372 51.1101 -Times_New_Roman.ttf 42 M 50.7900 38.9597 89 " -0.9729 14.9824 16.3814 -Times_New_Roman.ttf 42 M 50.7900 38.9597 90 ! -1.0161 5.2134 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 91 x 13.1038 28.4895 25.9686 -Times_New_Roman.ttf 42 M 50.7900 38.9597 92 ) -1.2476 15.8496 52.7368 -Times_New_Roman.ttf 42 M 50.7900 38.9597 93 = 13.1952 30.1743 12.0076 -Times_New_Roman.ttf 42 M 50.7900 38.9597 94 + 4.1908 30.3814 30.3814 -Times_New_Roman.ttf 42 M 50.7900 38.9597 95 X -0.0626 42.0000 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 96 » 11.6765 24.9427 27.1593 -Times_New_Roman.ttf 42 M 50.7900 38.9597 97 ' -1.1889 5.2134 16.3814 -Times_New_Roman.ttf 42 M 50.7900 38.9597 98 ¢ 1.2178 21.9459 47.5645 -Times_New_Roman.ttf 42 M 50.7900 38.9597 99 Z 0.0101 33.9535 38.9597 -Times_New_Roman.ttf 42 M 50.7900 38.9597 100 > 4.6586 30.8320 29.1907 -Times_New_Roman.ttf 42 M 50.7900 38.9597 101 ® -1.5643 40.3587 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 102 © -0.9346 40.3587 41.3411 -Times_New_Roman.ttf 42 M 50.7900 38.9597 103 ] -0.6267 12.6664 51.2372 -Times_New_Roman.ttf 42 M 50.7900 38.9597 104 é -0.6552 22.1278 41.0164 -Times_New_Roman.ttf 42 M 50.7900 38.9597 105 z 13.1268 23.5872 25.9686 -Times_New_Roman.ttf 42 M 50.7900 38.9597 106 _ 49.2925 30.0314 2.3814 -Times_New_Roman.ttf 42 M 50.7900 38.9597 107 ¥ 0.1835 31.4462 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 1 t 5.6434 16.5632 35.7376 -Times_New_Roman.ttf 43 G 40.3587 41.3411 2 h -0.6041 28.4494 40.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 3 a 12.6056 24.3008 28.3500 -Times_New_Roman.ttf 43 G 40.3587 41.3411 4 n 12.9099 28.4494 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 5 P 1.1165 30.0347 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 6 o 13.1564 25.1680 28.3500 -Times_New_Roman.ttf 43 G 40.3587 41.3411 7 e 13.0640 22.1278 28.3500 -Times_New_Roman.ttf 43 G 40.3587 41.3411 8 : 13.0391 5.2134 28.3500 -Times_New_Roman.ttf 43 G 40.3587 41.3411 9 r 12.8158 19.2134 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 10 l -0.6096 13.2587 40.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 11 i -0.6116 13.2587 40.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 12 1 0.7700 15.9913 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 13 | -0.7322 2.3814 53.1680 -Times_New_Roman.ttf 43 G 40.3587 41.3411 14 N 1.2987 43.0089 40.1504 -Times_New_Roman.ttf 43 G 40.3587 41.3411 15 f -0.4167 23.6262 40.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 16 g 12.7358 26.7087 39.8257 -Times_New_Roman.ttf 43 G 40.3587 41.3411 17 d -0.4509 27.3411 42.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 18 W 1.2098 55.6923 40.1504 -Times_New_Roman.ttf 43 G 40.3587 41.3411 19 s 12.6914 17.7150 28.3500 -Times_New_Roman.ttf 43 G 40.3587 41.3411 20 c 12.8590 22.1278 28.3500 -Times_New_Roman.ttf 43 G 40.3587 41.3411 21 u 14.0132 28.6577 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 22 3 1.1234 21.3876 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 23 ~ 20.6607 29.8907 7.5948 -Times_New_Roman.ttf 43 G 40.3587 41.3411 24 # -0.5505 26.1769 40.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 25 O -0.2382 37.9372 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 26 ` 0.7122 8.2536 9.4443 -Times_New_Roman.ttf 43 G 40.3587 41.3411 27 @ -0.6005 49.5948 54.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 28 F 1.3319 29.5407 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 29 S -0.2439 24.9597 41.5229 -Times_New_Roman.ttf 43 G 40.3587 41.3411 30 p 12.8841 26.9510 39.8257 -Times_New_Roman.ttf 43 G 40.3587 41.3411 31 “ -0.3372 21.7123 14.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 32 % -0.4291 46.5375 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 33 £ 1.0750 26.1504 40.2933 -Times_New_Roman.ttf 43 G 40.3587 41.3411 34 . 35.9800 5.2134 5.2134 -Times_New_Roman.ttf 43 G 40.3587 41.3411 35 2 0.8639 25.4757 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 36 5 1.4141 22.0453 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 37 m 13.0397 43.6401 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 38 V 1.4306 42.2071 40.1504 -Times_New_Roman.ttf 43 G 40.3587 41.3411 39 6 1.0762 24.6350 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 40 w 14.3024 42.0012 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 41 T 1.2819 32.2857 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 42 M 1.1040 50.7900 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 43 G -0.1464 40.3587 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 44 b -0.6408 26.9510 42.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 45 9 1.2039 24.2850 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 46 ; 12.8243 8.5783 37.1366 -Times_New_Roman.ttf 43 G 40.3587 41.3411 47 D 1.1688 39.4791 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 48 L 1.1100 33.1140 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 49 y 14.4667 29.1484 38.6350 -Times_New_Roman.ttf 43 G 40.3587 41.3411 50 ‘ 0.2264 8.5783 14.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 51 \ -0.7672 16.8974 42.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 52 R 1.4565 39.5192 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 53 < 5.5197 30.8320 29.1907 -Times_New_Roman.ttf 43 G 40.3587 41.3411 54 4 0.9247 25.4757 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 55 8 1.0363 22.7465 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 56 0 0.6715 24.6350 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 57 A -0.1108 42.0000 40.1504 -Times_New_Roman.ttf 43 G 40.3587 41.3411 58 E 1.0507 34.1229 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 59 B 1.3652 34.7552 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 60 v 14.1207 29.7237 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 61 k -0.6523 28.4929 40.8093 -Times_New_Roman.ttf 43 G 40.3587 41.3411 62 J 1.2477 20.8981 40.1504 -Times_New_Roman.ttf 43 G 40.3587 41.3411 63 U 1.0912 40.9787 40.1504 -Times_New_Roman.ttf 43 G 40.3587 41.3411 64 j -0.8390 16.0906 53.4757 -Times_New_Roman.ttf 43 G 40.3587 41.3411 65 ( -0.2575 15.8496 52.7368 -Times_New_Roman.ttf 43 G 40.3587 41.3411 66 7 1.3181 25.5011 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 67 § 0.8558 20.6124 50.9515 -Times_New_Roman.ttf 43 G 40.3587 41.3411 68 $ -1.4826 23.6262 45.6495 -Times_New_Roman.ttf 43 G 40.3587 41.3411 69 € 0.9589 29.1907 39.1026 -Times_New_Roman.ttf 43 G 40.3587 41.3411 70 / -0.5634 17.5721 42.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 71 C 0.0593 34.5469 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 72 * -0.8906 20.0794 24.4267 -Times_New_Roman.ttf 43 G 40.3587 41.3411 73 ” -0.1631 21.5305 14.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 74 ? -0.3844 19.9145 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 75 { -0.3116 17.0391 52.7368 -Times_New_Roman.ttf 43 G 40.3587 41.3411 76 } -0.0470 17.0391 52.7368 -Times_New_Roman.ttf 43 G 40.3587 41.3411 77 , 36.1353 8.5783 14.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 78 I 0.9909 16.7326 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 79 ° -0.1201 17.5721 17.5721 -Times_New_Roman.ttf 43 G 40.3587 41.3411 80 K 1.2565 41.1593 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 81 H 1.3222 40.8918 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 82 q 12.9735 26.9510 39.8257 -Times_New_Roman.ttf 43 G 40.3587 41.3411 83 & -0.1724 41.3411 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 84 ’ 0.2169 8.5783 14.0000 -Times_New_Roman.ttf 43 G 40.3587 41.3411 85 [ 0.4566 12.6664 51.2372 -Times_New_Roman.ttf 43 G 40.3587 41.3411 86 - 23.9620 15.1907 5.2134 -Times_New_Roman.ttf 43 G 40.3587 41.3411 87 Y 1.3923 41.7313 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 88 Q -0.0538 37.9372 51.1101 -Times_New_Roman.ttf 43 G 40.3587 41.3411 89 " 0.0801 14.9824 16.3814 -Times_New_Roman.ttf 43 G 40.3587 41.3411 90 ! 0.0752 5.2134 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 91 x 14.1873 28.4895 25.9686 -Times_New_Roman.ttf 43 G 40.3587 41.3411 92 ) -0.3921 15.8496 52.7368 -Times_New_Roman.ttf 43 G 40.3587 41.3411 93 = 14.2985 30.1743 12.0076 -Times_New_Roman.ttf 43 G 40.3587 41.3411 94 + 5.4162 30.3814 30.3814 -Times_New_Roman.ttf 43 G 40.3587 41.3411 95 X 1.5706 42.0000 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 96 » 12.7610 24.9427 27.1593 -Times_New_Roman.ttf 43 G 40.3587 41.3411 97 ' 0.0000 5.2134 16.3814 -Times_New_Roman.ttf 43 G 40.3587 41.3411 98 ¢ 2.4011 21.9459 47.5645 -Times_New_Roman.ttf 43 G 40.3587 41.3411 99 Z 1.0824 33.9535 38.9597 -Times_New_Roman.ttf 43 G 40.3587 41.3411 100 > 5.4194 30.8320 29.1907 -Times_New_Roman.ttf 43 G 40.3587 41.3411 101 ® -0.1301 40.3587 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 102 © 0.0111 40.3587 41.3411 -Times_New_Roman.ttf 43 G 40.3587 41.3411 103 ] 0.4753 12.6664 51.2372 -Times_New_Roman.ttf 43 G 40.3587 41.3411 104 é 0.1116 22.1278 41.0164 -Times_New_Roman.ttf 43 G 40.3587 41.3411 105 z 14.5805 23.5872 25.9686 -Times_New_Roman.ttf 43 G 40.3587 41.3411 106 _ 50.3756 30.0314 2.3814 -Times_New_Roman.ttf 43 G 40.3587 41.3411 107 ¥ 1.3663 31.4462 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 1 t 6.6034 16.5632 35.7376 -Times_New_Roman.ttf 44 b 26.9510 42.0000 2 h 0.3281 28.4494 40.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 3 a 13.5435 24.3008 28.3500 -Times_New_Roman.ttf 44 b 26.9510 42.0000 4 n 13.7207 28.4494 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 5 P 1.5786 30.0347 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 6 o 13.7613 25.1680 28.3500 -Times_New_Roman.ttf 44 b 26.9510 42.0000 7 e 13.6955 22.1278 28.3500 -Times_New_Roman.ttf 44 b 26.9510 42.0000 8 : 13.7087 5.2134 28.3500 -Times_New_Roman.ttf 44 b 26.9510 42.0000 9 r 13.6115 19.2134 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 10 l -0.0794 13.2587 40.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 11 i -0.3452 13.2587 40.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 12 1 1.5739 15.9913 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 13 | 0.1301 2.3814 53.1680 -Times_New_Roman.ttf 44 b 26.9510 42.0000 14 N 1.8797 43.0089 40.1504 -Times_New_Roman.ttf 44 b 26.9510 42.0000 15 f -0.2553 23.6262 40.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 16 g 13.5615 26.7087 39.8257 -Times_New_Roman.ttf 44 b 26.9510 42.0000 17 d -0.1525 27.3411 42.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 18 W 1.6740 55.6923 40.1504 -Times_New_Roman.ttf 44 b 26.9510 42.0000 19 s 13.6417 17.7150 28.3500 -Times_New_Roman.ttf 44 b 26.9510 42.0000 20 c 13.9480 22.1278 28.3500 -Times_New_Roman.ttf 44 b 26.9510 42.0000 21 u 14.8002 28.6577 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 22 3 1.5970 21.3876 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 23 ~ 21.2236 29.8907 7.5948 -Times_New_Roman.ttf 44 b 26.9510 42.0000 24 # -0.1686 26.1769 40.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 25 O 0.8240 37.9372 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 26 ` 1.5352 8.2536 9.4443 -Times_New_Roman.ttf 44 b 26.9510 42.0000 27 @ 0.0524 49.5948 54.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 28 F 1.8988 29.5407 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 29 S 0.7587 24.9597 41.5229 -Times_New_Roman.ttf 44 b 26.9510 42.0000 30 p 13.9925 26.9510 39.8257 -Times_New_Roman.ttf 44 b 26.9510 42.0000 31 “ 0.8702 21.7123 14.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 32 % 0.6807 46.5375 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 33 £ 1.4986 26.1504 40.2933 -Times_New_Roman.ttf 44 b 26.9510 42.0000 34 . 36.6380 5.2134 5.2134 -Times_New_Roman.ttf 44 b 26.9510 42.0000 35 2 1.6266 25.4757 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 36 5 1.7958 22.0453 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 37 m 14.0017 43.6401 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 38 V 1.9720 42.2071 40.1504 -Times_New_Roman.ttf 44 b 26.9510 42.0000 39 6 1.4115 24.6350 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 40 w 14.5201 42.0012 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 41 T 1.8478 32.2857 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 42 M 1.7732 50.7900 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 43 G 0.7896 40.3587 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 44 b 0.0955 26.9510 42.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 45 9 1.3097 24.2850 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 46 ; 13.6111 8.5783 37.1366 -Times_New_Roman.ttf 44 b 26.9510 42.0000 47 D 2.1174 39.4791 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 48 L 2.0395 33.1140 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 49 y 14.7662 29.1484 38.6350 -Times_New_Roman.ttf 44 b 26.9510 42.0000 50 ‘ 0.6543 8.5783 14.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 51 \ 0.2455 16.8974 42.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 52 R 2.0438 39.5192 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 53 < 6.1195 30.8320 29.1907 -Times_New_Roman.ttf 44 b 26.9510 42.0000 54 4 1.6640 25.4757 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 55 8 1.8406 22.7465 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 56 0 1.4965 24.6350 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 57 A 0.5023 42.0000 40.1504 -Times_New_Roman.ttf 44 b 26.9510 42.0000 58 E 1.7996 34.1229 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 59 B 1.8611 34.7552 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 60 v 14.7606 29.7237 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 61 k 0.0583 28.4929 40.8093 -Times_New_Roman.ttf 44 b 26.9510 42.0000 62 J 1.7684 20.8981 40.1504 -Times_New_Roman.ttf 44 b 26.9510 42.0000 63 U 1.7684 40.9787 40.1504 -Times_New_Roman.ttf 44 b 26.9510 42.0000 64 j 0.0385 16.0906 53.4757 -Times_New_Roman.ttf 44 b 26.9510 42.0000 65 ( 0.4468 15.8496 52.7368 -Times_New_Roman.ttf 44 b 26.9510 42.0000 66 7 1.9496 25.5011 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 67 § 1.4664 20.6124 50.9515 -Times_New_Roman.ttf 44 b 26.9510 42.0000 68 $ -1.1475 23.6262 45.6495 -Times_New_Roman.ttf 44 b 26.9510 42.0000 69 € 1.7726 29.1907 39.1026 -Times_New_Roman.ttf 44 b 26.9510 42.0000 70 / -0.0264 17.5721 42.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 71 C 0.5750 34.5469 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 72 * 0.1412 20.0794 24.4267 -Times_New_Roman.ttf 44 b 26.9510 42.0000 73 ” 0.6066 21.5305 14.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 74 ? 0.5875 19.9145 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 75 { 0.2156 17.0391 52.7368 -Times_New_Roman.ttf 44 b 26.9510 42.0000 76 } 0.3244 17.0391 52.7368 -Times_New_Roman.ttf 44 b 26.9510 42.0000 77 , 36.5407 8.5783 14.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 78 I 2.1109 16.7326 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 79 ° 0.8955 17.5721 17.5721 -Times_New_Roman.ttf 44 b 26.9510 42.0000 80 K 1.6744 41.1593 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 81 H 1.8584 40.8918 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 82 q 13.8016 26.9510 39.8257 -Times_New_Roman.ttf 44 b 26.9510 42.0000 83 & 0.4050 41.3411 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 84 ’ 0.8813 8.5783 14.0000 -Times_New_Roman.ttf 44 b 26.9510 42.0000 85 [ 1.1726 12.6664 51.2372 -Times_New_Roman.ttf 44 b 26.9510 42.0000 86 - 24.8059 15.1907 5.2134 -Times_New_Roman.ttf 44 b 26.9510 42.0000 87 Y 1.8468 41.7313 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 88 Q 0.4903 37.9372 51.1101 -Times_New_Roman.ttf 44 b 26.9510 42.0000 89 " 0.6345 14.9824 16.3814 -Times_New_Roman.ttf 44 b 26.9510 42.0000 90 ! 0.4666 5.2134 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 91 x 14.9789 28.4895 25.9686 -Times_New_Roman.ttf 44 b 26.9510 42.0000 92 ) 0.1699 15.8496 52.7368 -Times_New_Roman.ttf 44 b 26.9510 42.0000 93 = 15.1302 30.1743 12.0076 -Times_New_Roman.ttf 44 b 26.9510 42.0000 94 + 6.2711 30.3814 30.3814 -Times_New_Roman.ttf 44 b 26.9510 42.0000 95 X 2.0954 42.0000 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 96 » 13.6424 24.9427 27.1593 -Times_New_Roman.ttf 44 b 26.9510 42.0000 97 ' 0.5508 5.2134 16.3814 -Times_New_Roman.ttf 44 b 26.9510 42.0000 98 ¢ 3.3176 21.9459 47.5645 -Times_New_Roman.ttf 44 b 26.9510 42.0000 99 Z 1.9048 33.9535 38.9597 -Times_New_Roman.ttf 44 b 26.9510 42.0000 100 > 5.9472 30.8320 29.1907 -Times_New_Roman.ttf 44 b 26.9510 42.0000 101 ® 0.6446 40.3587 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 102 © 0.3196 40.3587 41.3411 -Times_New_Roman.ttf 44 b 26.9510 42.0000 103 ] 1.4420 12.6664 51.2372 -Times_New_Roman.ttf 44 b 26.9510 42.0000 104 é 1.0669 22.1278 41.0164 -Times_New_Roman.ttf 44 b 26.9510 42.0000 105 z 14.9330 23.5872 25.9686 -Times_New_Roman.ttf 44 b 26.9510 42.0000 106 _ 51.1559 30.0314 2.3814 -Times_New_Roman.ttf 44 b 26.9510 42.0000 107 ¥ 1.7093 31.4462 38.9597 -Times_New_Roman.ttf 45 9 24.2850 39.1026 1 t 4.2032 16.5632 35.7376 -Times_New_Roman.ttf 45 9 24.2850 39.1026 2 h -2.0492 28.4494 40.8093 -Times_New_Roman.ttf 45 9 24.2850 39.1026 3 a 11.9960 24.3008 28.3500 -Times_New_Roman.ttf 45 9 24.2850 39.1026 4 n 12.0105 28.4494 27.1593 -Times_New_Roman.ttf 45 9 24.2850 39.1026 5 P -0.0652 30.0347 38.9597 -Times_New_Roman.ttf 45 9 24.2850 39.1026 6 o 11.9433 25.1680 28.3500 -Times_New_Roman.ttf 45 9 24.2850 39.1026 7 e 11.8010 22.1278 28.3500 -Times_New_Roman.ttf 45 9 24.2850 39.1026 8 : 11.8715 5.2134 28.3500 -Times_New_Roman.ttf 45 9 24.2850 39.1026 9 r 11.8576 19.2134 27.1593 -Times_New_Roman.ttf 45 9 24.2671 39.1149 10 l -1.8136 13.2312 40.8051 -Times_New_Roman.ttf 45 9 24.2671 39.1149 11 i -2.0294 13.2312 40.8051 -Times_New_Roman.ttf 45 9 24.2850 39.1026 12 1 -0.0000 15.9913 39.1026 -Times_New_Roman.ttf 45 9 24.2850 39.1026 13 | -2.0912 2.3814 53.1680 -Times_New_Roman.ttf 45 9 24.2671 39.1149 14 N 0.1887 43.0064 40.1617 -Times_New_Roman.ttf 45 9 24.2671 39.1149 15 f -1.7532 23.6237 40.8051 -Times_New_Roman.ttf 45 9 24.2671 39.1149 16 g 11.8148 26.7407 39.8250 -Times_New_Roman.ttf 45 9 24.2671 39.1149 17 d -1.8382 27.3566 42.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 18 W 0.2039 55.7208 40.1617 -Times_New_Roman.ttf 45 9 24.2671 39.1149 19 s 11.9234 17.7329 28.3630 -Times_New_Roman.ttf 45 9 24.2671 39.1149 20 c 11.9031 22.1496 28.3630 -Times_New_Roman.ttf 45 9 24.2671 39.1149 21 u 13.0644 28.6422 27.1680 -Times_New_Roman.ttf 45 9 24.2850 39.1026 22 3 0.0097 21.3876 39.1026 -Times_New_Roman.ttf 45 9 24.2850 39.1026 23 ~ 19.6063 29.8907 7.5948 -Times_New_Roman.ttf 45 9 24.2850 39.1026 24 # -1.8042 26.1769 40.8093 -Times_New_Roman.ttf 45 9 24.2671 39.1149 25 O -1.1025 37.9463 41.3566 -Times_New_Roman.ttf 45 9 24.2850 39.1026 26 ` 0.1001 8.2536 9.4443 -Times_New_Roman.ttf 45 9 24.2850 39.1026 27 @ -1.6140 49.5948 54.8093 -Times_New_Roman.ttf 45 9 24.2671 39.1149 28 F -0.0244 29.5579 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 29 S -1.2546 24.9668 41.5452 -Times_New_Roman.ttf 45 9 24.2671 39.1149 30 p 11.8387 26.9520 39.8250 -Times_New_Roman.ttf 45 9 24.2850 39.1026 31 “ -1.0451 21.7123 14.0000 -Times_New_Roman.ttf 45 9 24.2850 39.1026 32 % -1.0657 46.5375 41.3411 -Times_New_Roman.ttf 45 9 24.2850 39.1026 33 £ 0.1756 26.1504 40.2933 -Times_New_Roman.ttf 45 9 24.2850 39.1026 34 . 35.1216 5.2134 5.2134 -Times_New_Roman.ttf 45 9 24.2850 39.1026 35 2 -0.2005 25.4757 39.1026 -Times_New_Roman.ttf 45 9 24.2850 39.1026 36 5 0.4175 22.0453 38.9597 -Times_New_Roman.ttf 45 9 24.2671 39.1149 37 m 11.9487 43.6210 27.1680 -Times_New_Roman.ttf 45 9 24.2671 39.1149 38 V 0.2019 42.2148 40.1617 -Times_New_Roman.ttf 45 9 24.2850 39.1026 39 6 -0.2339 24.6350 39.1026 -Times_New_Roman.ttf 45 9 24.2671 39.1149 40 w 13.1303 42.0012 27.1680 -Times_New_Roman.ttf 45 9 24.2671 39.1149 41 T 0.2519 32.3248 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 42 M 0.2312 50.8363 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 43 G -1.0543 40.3777 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 44 b -1.7272 26.9520 42.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 45 9 -0.0755 24.2671 39.1149 -Times_New_Roman.ttf 45 9 24.2671 39.1149 46 ; 11.9263 8.5769 37.1560 -Times_New_Roman.ttf 45 9 24.2671 39.1149 47 D -0.0685 39.5054 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 48 L 0.0160 33.1439 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 49 y 13.2335 29.1112 38.6301 -Times_New_Roman.ttf 45 9 24.2671 39.1149 50 ‘ -1.1004 8.5769 14.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 51 \ -1.7261 16.8851 42.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 52 R 0.2490 39.5470 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 53 < 4.2220 30.8172 29.1949 -Times_New_Roman.ttf 45 9 24.2671 39.1149 54 4 0.1438 25.4620 39.1149 -Times_New_Roman.ttf 45 9 24.2671 39.1149 55 8 0.0859 22.7514 39.1149 -Times_New_Roman.ttf 45 9 24.2671 39.1149 56 0 -0.1201 24.6301 39.1149 -Times_New_Roman.ttf 45 9 24.2671 39.1149 57 A -0.9590 42.0000 40.1617 -Times_New_Roman.ttf 45 9 24.2671 39.1149 58 E 0.3121 34.1502 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 59 B 0.1961 34.7661 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 60 v 13.3210 29.7477 27.1680 -Times_New_Roman.ttf 45 9 24.2671 39.1149 61 k -1.7772 28.5111 40.8051 -Times_New_Roman.ttf 45 9 24.2671 39.1149 62 J 0.0536 20.9143 40.1617 -Times_New_Roman.ttf 45 9 24.2671 39.1149 63 U 0.3475 40.9807 40.1617 -Times_New_Roman.ttf 45 9 24.2671 39.1149 64 j -1.7290 16.0484 53.4620 -Times_New_Roman.ttf 45 9 24.2671 39.1149 65 ( -1.3426 15.8383 52.6957 -Times_New_Roman.ttf 45 9 24.2671 39.1149 66 7 0.0017 25.4883 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 67 § -0.2650 20.6180 50.9240 -Times_New_Roman.ttf 45 9 24.2671 39.1149 68 $ -2.9758 23.6237 45.6650 -Times_New_Roman.ttf 45 9 24.2671 39.1149 69 € 0.2061 29.1949 39.1149 -Times_New_Roman.ttf 45 9 24.2671 39.1149 70 / -1.6589 17.5847 42.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 71 C -1.2803 34.5501 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 72 * -1.8650 20.0652 24.4140 -Times_New_Roman.ttf 45 9 24.2671 39.1149 73 ” -1.1831 21.5302 14.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 74 ? -0.8324 19.9342 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 75 { -1.1792 17.0320 52.6957 -Times_New_Roman.ttf 45 9 24.2671 39.1149 76 } -1.2855 17.0320 52.6957 -Times_New_Roman.ttf 45 9 24.2671 39.1149 77 , 35.2828 8.5769 14.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 78 I 0.1122 16.7540 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 79 ° -0.9079 17.5847 17.5847 -Times_New_Roman.ttf 45 9 24.2671 39.1149 80 K 0.3665 41.1680 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 81 H 0.1549 40.9305 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 82 q 11.8249 26.9520 39.8250 -Times_New_Roman.ttf 45 9 24.2671 39.1149 83 & -1.1784 41.3566 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 84 ’ -1.0752 8.5769 14.0000 -Times_New_Roman.ttf 45 9 24.2671 39.1149 85 [ -0.7047 12.6569 51.2203 -Times_New_Roman.ttf 45 9 24.2671 39.1149 86 - 22.6404 15.1949 5.2070 -Times_New_Roman.ttf 45 9 24.2671 39.1149 87 Y 0.1010 41.7612 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 88 Q -1.0226 37.9463 51.1285 -Times_New_Roman.ttf 45 9 24.2671 39.1149 89 " -0.9995 14.9789 16.3898 -Times_New_Roman.ttf 45 9 24.2671 39.1149 90 ! -1.0155 5.2070 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 91 x 13.0587 28.4678 25.9731 -Times_New_Roman.ttf 45 9 24.2671 39.1149 92 ) -1.2071 15.8383 52.6957 -Times_New_Roman.ttf 45 9 24.2671 39.1149 93 = 13.2176 30.1750 12.0135 -Times_New_Roman.ttf 45 9 24.2671 39.1149 94 + 4.5075 30.3898 30.3898 -Times_New_Roman.ttf 45 9 24.2671 39.1149 95 X 0.3193 42.0000 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 96 » 11.9469 24.9093 27.1680 -Times_New_Roman.ttf 45 9 24.2671 39.1149 97 ' -1.2154 5.2070 16.3898 -Times_New_Roman.ttf 45 9 24.2671 39.1149 98 ¢ 1.5230 21.9610 47.5712 -Times_New_Roman.ttf 45 9 24.2671 39.1149 99 Z -0.0785 33.9746 38.9668 -Times_New_Roman.ttf 45 9 24.2671 39.1149 100 > 4.5648 30.8172 29.1949 -Times_New_Roman.ttf 45 9 24.2671 39.1149 101 ® -0.9689 40.3777 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 102 © -1.3138 40.3777 41.3566 -Times_New_Roman.ttf 45 9 24.2671 39.1149 103 ] -0.3193 12.6569 51.2203 -Times_New_Roman.ttf 45 9 24.2671 39.1149 104 é -0.7337 22.1496 41.0199 -Times_New_Roman.ttf 45 9 24.2671 39.1149 105 z 13.1936 23.5833 25.9731 -Times_New_Roman.ttf 45 9 24.2671 39.1149 106 _ 49.6558 30.0269 2.3898 -Times_New_Roman.ttf 45 9 24.2671 39.1149 107 ¥ -0.0191 31.4941 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 1 t -7.2903 16.5784 35.7450 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 2 h -13.8187 28.4261 40.8051 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 3 a -0.2442 24.3234 28.3630 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 4 n 0.1720 28.4261 27.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 5 P -11.8560 30.0702 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 6 o 0.0928 25.1828 28.3630 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 7 e -0.1037 22.1496 28.3630 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 8 : 0.0000 5.2134 28.3500 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 9 r 0.0000 19.2070 27.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 10 l -13.5943 13.2312 40.8051 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 11 i -13.3700 13.2312 40.8051 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 12 1 -11.9395 15.9913 39.1026 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 13 | -13.5670 2.3814 53.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 14 N -12.0462 43.0064 40.1617 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 15 f -13.4679 23.6237 40.8051 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 16 g 0.0086 26.7407 39.8250 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 17 d -13.7173 27.3566 42.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 18 W -11.7190 55.7208 40.1617 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 19 s 0.0813 17.7329 28.3630 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 20 c -0.0471 22.1496 28.3630 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 21 u 1.1949 28.6422 27.1680 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 22 3 -11.9749 21.3876 39.1026 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 23 ~ 7.6422 29.8907 7.5948 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 24 # -13.7728 26.1769 40.8093 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 25 O -13.1598 37.9463 41.3566 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 26 ` -12.3070 8.2536 9.4443 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 27 @ -13.6314 49.5948 54.8093 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 28 F -11.6786 29.5579 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 29 S -13.0813 24.9668 41.5452 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 30 p -0.0044 26.9520 39.8250 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 31 “ -12.8715 21.7123 14.0000 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 32 % -13.2653 46.5375 41.3411 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 33 £ -12.0234 26.1504 40.2933 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 34 . 23.0823 5.2134 5.2134 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 35 2 -12.1091 25.4757 39.1026 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 36 5 -11.6818 22.0453 38.9597 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 37 m -0.0370 43.6210 27.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 38 V -11.6239 42.2148 40.1617 -Times_New_Roman.ttf 46 ; 8.5783 37.1366 39 6 -11.8089 24.6350 39.1026 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 40 w 1.0912 42.0012 27.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 41 T -11.7868 32.3248 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 42 M -11.7304 50.8363 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 43 G -12.9897 40.3777 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 44 b -13.6995 26.9520 42.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 45 9 -11.7230 24.2671 39.1149 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 46 ; -0.0352 8.5769 37.1560 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 47 D -11.5796 39.5054 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 48 L -11.9024 33.1439 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 49 y 1.1032 29.1112 38.6301 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 50 ‘ -12.9788 8.5769 14.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 51 \ -13.5529 16.8851 42.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 52 R -12.2133 39.5470 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 53 < -7.2337 30.8172 29.1949 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 54 4 -11.9469 25.4620 39.1149 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 55 8 -11.9469 22.7514 39.1149 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 56 0 -11.6461 24.6301 39.1149 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 57 A -12.9936 42.0000 40.1617 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 58 E -11.8386 34.1502 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 59 B -11.7156 34.7661 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 60 v 1.1780 29.7477 27.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 61 k -13.5568 28.5111 40.8051 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 62 J -11.7117 20.9143 40.1617 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 63 U -11.7185 40.9807 40.1617 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 64 j -13.6780 16.0484 53.4620 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 65 ( -13.1938 15.8383 52.6957 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 66 7 -11.9631 25.4883 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 67 § -12.3815 20.6180 50.9240 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 68 $ -14.9759 23.6237 45.6650 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 69 € -12.0501 29.1949 39.1149 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 70 / -13.5779 17.5847 42.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 71 C -13.0619 34.5501 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 72 * -13.7717 20.0652 24.4140 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 73 ” -12.9624 21.5302 14.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 74 ? -13.0051 19.9342 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 75 { -13.1698 17.0320 52.6957 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 76 } -12.8204 17.0320 52.6957 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 77 , 23.2271 8.5769 14.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 78 I -11.6689 16.7540 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 79 ° -13.0375 17.5847 17.5847 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 80 K -11.8386 41.1680 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 81 H -11.6329 40.9305 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 82 q -0.0763 26.9520 39.8250 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 83 & -13.1656 41.3566 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 84 ’ -12.9261 8.5769 14.0000 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 85 [ -12.3028 12.6569 51.2203 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 86 - 10.8223 15.1949 5.2070 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 87 Y -11.8847 41.7612 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 88 Q -12.9864 37.9463 51.1285 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 89 " -12.9105 14.9789 16.3898 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 90 ! -12.9936 5.2070 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 91 x 0.9935 28.4678 25.9731 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 92 ) -13.4562 15.8383 52.6957 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 93 = 1.3401 30.1750 12.0135 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 94 + -7.3697 30.3898 30.3898 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 95 X -11.8102 42.0000 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 96 » 0.1269 24.9093 27.1680 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 97 ' -13.1257 5.2070 16.3898 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 98 ¢ -10.3264 21.9610 47.5712 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 99 Z -11.7987 33.9746 38.9668 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 100 > -7.2240 30.8172 29.1949 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 101 ® -13.1869 40.3777 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 102 © -12.9817 40.3777 41.3566 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 103 ] -12.4744 12.6569 51.2203 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 104 é -12.8357 22.1496 41.0199 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 105 z 1.2036 23.5833 25.9731 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 106 _ 37.3492 30.0269 2.3898 -Times_New_Roman.ttf 46 ; 8.5769 37.1560 107 ¥ -11.6267 31.4941 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 1 t 4.2494 16.5784 35.7450 -Times_New_Roman.ttf 47 D 39.5054 38.9668 2 h -2.0189 28.4261 40.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 3 a 11.5132 24.3234 28.3630 -Times_New_Roman.ttf 47 D 39.5054 38.9668 4 n 11.6685 28.4261 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 5 P 0.0323 30.0702 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 6 o 11.7156 25.1828 28.3630 -Times_New_Roman.ttf 47 D 39.5054 38.9668 7 e 11.7675 22.1496 28.3630 -Times_New_Roman.ttf 47 D 39.5054 38.9668 8 : 12.3167 5.2070 28.3630 -Times_New_Roman.ttf 47 D 39.5054 38.9668 9 r 12.0567 19.2070 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 10 l -1.6504 13.2312 40.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 11 i -1.5440 13.2312 40.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 12 1 -0.3849 15.9852 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 13 | -1.8247 2.3898 53.1828 -Times_New_Roman.ttf 47 D 39.5054 38.9668 14 N -0.0380 43.0064 40.1617 -Times_New_Roman.ttf 47 D 39.5054 38.9668 15 f -2.0483 23.6237 40.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 16 g 11.8785 26.7407 39.8250 -Times_New_Roman.ttf 47 D 39.5054 38.9668 17 d -1.7034 27.3566 42.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 18 W 0.0664 55.7208 40.1617 -Times_New_Roman.ttf 47 D 39.5054 38.9668 19 s 11.6646 17.7329 28.3630 -Times_New_Roman.ttf 47 D 39.5054 38.9668 20 c 12.1096 22.1496 28.3630 -Times_New_Roman.ttf 47 D 39.5054 38.9668 21 u 12.9548 28.6422 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 22 3 -0.0223 21.3820 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 23 ~ 19.4578 29.9208 7.5968 -Times_New_Roman.ttf 47 D 39.5054 38.9668 24 # -1.8334 26.1892 40.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 25 O -0.8434 37.9463 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 26 ` -0.0636 8.2402 9.4352 -Times_New_Roman.ttf 47 D 39.5054 38.9668 27 @ -2.1405 49.5968 54.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 28 F 0.2691 29.5579 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 29 S -1.3853 24.9668 41.5452 -Times_New_Roman.ttf 47 D 39.5054 38.9668 30 p 11.8388 26.9520 39.8250 -Times_New_Roman.ttf 47 D 39.5054 38.9668 31 “ -0.9816 21.7187 14.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 32 % -1.3098 46.5061 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 33 £ -0.2467 26.1617 40.3098 -Times_New_Roman.ttf 47 D 39.5054 38.9668 34 . 34.9734 5.2070 5.2070 -Times_New_Roman.ttf 47 D 39.5054 38.9668 35 2 -0.1992 25.4620 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 36 5 0.0419 22.0242 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 37 m 11.9663 43.6210 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 38 V 0.1082 42.2148 40.1617 -Times_New_Roman.ttf 47 D 39.5054 38.9668 39 6 -0.2428 24.6301 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 40 w 13.1040 42.0012 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 41 T 0.2158 32.3248 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 42 M 0.2119 50.8363 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 43 G -1.2736 40.3777 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 44 b -1.8618 26.9520 42.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 45 9 -0.1150 24.2671 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 46 ; 12.0919 8.5769 37.1560 -Times_New_Roman.ttf 47 D 39.5054 38.9668 47 D -0.3268 39.5054 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 48 L 0.3345 33.1439 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 49 y 13.1788 29.1112 38.6301 -Times_New_Roman.ttf 47 D 39.5054 38.9668 50 ‘ -1.2050 8.5769 14.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 51 \ -1.8916 16.8851 42.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 52 R -0.3799 39.5470 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 53 < 4.6218 30.8172 29.1949 -Times_New_Roman.ttf 47 D 39.5054 38.9668 54 4 -0.1874 25.4620 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 55 8 -0.3199 22.7514 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 56 0 -0.3774 24.6301 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 57 A -1.2017 42.0000 40.1617 -Times_New_Roman.ttf 47 D 39.5054 38.9668 58 E -0.0558 34.1502 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 59 B 0.4263 34.7661 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 60 v 12.8749 29.7477 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 61 k -1.8167 28.5111 40.8051 -Times_New_Roman.ttf 47 D 39.5054 38.9668 62 J -0.2152 20.9143 40.1617 -Times_New_Roman.ttf 47 D 39.5054 38.9668 63 U -0.0769 40.9807 40.1617 -Times_New_Roman.ttf 47 D 39.5054 38.9668 64 j -1.9294 16.0484 53.4620 -Times_New_Roman.ttf 47 D 39.5054 38.9668 65 ( -1.4087 15.8383 52.6957 -Times_New_Roman.ttf 47 D 39.5054 38.9668 66 7 0.2738 25.4883 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 67 § -0.5995 20.6180 50.9240 -Times_New_Roman.ttf 47 D 39.5054 38.9668 68 $ -3.0908 23.6237 45.6650 -Times_New_Roman.ttf 47 D 39.5054 38.9668 69 € 0.0590 29.1949 39.1149 -Times_New_Roman.ttf 47 D 39.5054 38.9668 70 / -1.7672 17.5847 42.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 71 C -1.1013 34.5501 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 72 * -1.9685 20.0652 24.4140 -Times_New_Roman.ttf 47 D 39.5054 38.9668 73 ” -0.9331 21.5302 14.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 74 ? -1.0836 19.9342 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 75 { -1.5465 17.0320 52.6957 -Times_New_Roman.ttf 47 D 39.5054 38.9668 76 } -1.4494 17.0320 52.6957 -Times_New_Roman.ttf 47 D 39.5054 38.9668 77 , 34.6514 8.5769 14.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 78 I 0.0413 16.7540 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 79 ° -1.1454 17.5847 17.5847 -Times_New_Roman.ttf 47 D 39.5054 38.9668 80 K -0.2350 41.1680 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 81 H -0.1538 40.9305 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 82 q 11.6972 26.9520 39.8250 -Times_New_Roman.ttf 47 D 39.5054 38.9668 83 & -1.1607 41.3566 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 84 ’ -1.1375 8.5769 14.0000 -Times_New_Roman.ttf 47 D 39.5054 38.9668 85 [ -0.4761 12.6569 51.2203 -Times_New_Roman.ttf 47 D 39.5054 38.9668 86 - 22.6951 15.1949 5.2070 -Times_New_Roman.ttf 47 D 39.5054 38.9668 87 Y -0.0085 41.7612 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 88 Q -1.1728 37.9463 51.1285 -Times_New_Roman.ttf 47 D 39.5054 38.9668 89 " -1.4813 14.9789 16.3898 -Times_New_Roman.ttf 47 D 39.5054 38.9668 90 ! -1.1383 5.2070 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 91 x 12.7263 28.4678 25.9731 -Times_New_Roman.ttf 47 D 39.5054 38.9668 92 ) -1.2395 15.8383 52.6957 -Times_New_Roman.ttf 47 D 39.5054 38.9668 93 = 13.3212 30.1750 12.0135 -Times_New_Roman.ttf 47 D 39.5054 38.9668 94 + 4.0153 30.3898 30.3898 -Times_New_Roman.ttf 47 D 39.5054 38.9668 95 X -0.1701 42.0000 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 96 » 11.6075 24.9093 27.1680 -Times_New_Roman.ttf 47 D 39.5054 38.9668 97 ' -1.0438 5.2070 16.3898 -Times_New_Roman.ttf 47 D 39.5054 38.9668 98 ¢ 1.2068 21.9610 47.5712 -Times_New_Roman.ttf 47 D 39.5054 38.9668 99 Z 0.0195 33.9746 38.9668 -Times_New_Roman.ttf 47 D 39.5054 38.9668 100 > 4.4963 30.8172 29.1949 -Times_New_Roman.ttf 47 D 39.5054 38.9668 101 ® -1.4938 40.3777 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 102 © -1.1679 40.3777 41.3566 -Times_New_Roman.ttf 47 D 39.5054 38.9668 103 ] -0.4329 12.6569 51.2203 -Times_New_Roman.ttf 47 D 39.5054 38.9668 104 é -1.0461 22.1496 41.0199 -Times_New_Roman.ttf 47 D 39.5054 38.9668 105 z 12.8620 23.5833 25.9731 -Times_New_Roman.ttf 47 D 39.5054 38.9668 106 _ 49.2094 30.0269 2.3898 -Times_New_Roman.ttf 47 D 39.5054 38.9668 107 ¥ 0.1889 31.4941 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 1 t 4.1879 16.5784 35.7450 -Times_New_Roman.ttf 48 L 33.1439 38.9668 2 h -1.9584 28.4261 40.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 3 a 11.6595 24.3234 28.3630 -Times_New_Roman.ttf 48 L 33.1439 38.9668 4 n 12.0476 28.4261 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 5 P -0.0120 30.0702 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 6 o 11.8712 25.1828 28.3630 -Times_New_Roman.ttf 48 L 33.1439 38.9668 7 e 11.4850 22.1496 28.3630 -Times_New_Roman.ttf 48 L 33.1439 38.9668 8 : 11.8469 5.2070 28.3630 -Times_New_Roman.ttf 48 L 33.1439 38.9668 9 r 11.6401 19.2070 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 10 l -1.8552 13.2312 40.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 11 i -1.9315 13.2312 40.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 12 1 -0.1841 15.9852 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 13 | -1.7484 2.3898 53.1828 -Times_New_Roman.ttf 48 L 33.1439 38.9668 14 N -0.0206 43.0064 40.1617 -Times_New_Roman.ttf 48 L 33.1439 38.9668 15 f -1.6596 23.6237 40.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 16 g 11.8430 26.7407 39.8250 -Times_New_Roman.ttf 48 L 33.1439 38.9668 17 d -1.5394 27.3566 42.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 18 W 0.0798 55.7208 40.1617 -Times_New_Roman.ttf 48 L 33.1439 38.9668 19 s 11.6836 17.7329 28.3630 -Times_New_Roman.ttf 48 L 33.1439 38.9668 20 c 11.7218 22.1496 28.3630 -Times_New_Roman.ttf 48 L 33.1439 38.9668 21 u 12.9272 28.6422 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 22 3 -0.2471 21.3820 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 23 ~ 19.4169 29.9208 7.5968 -Times_New_Roman.ttf 48 L 33.1439 38.9668 24 # -1.8422 26.1892 40.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 25 O -1.2356 37.9463 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 26 ` -0.1297 8.2402 9.4352 -Times_New_Roman.ttf 48 L 33.1439 38.9668 27 @ -1.7825 49.5968 54.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 28 F 0.0907 29.5579 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 29 S -1.2589 24.9668 41.5452 -Times_New_Roman.ttf 48 L 33.1439 38.9668 30 p 11.7930 26.9520 39.8250 -Times_New_Roman.ttf 48 L 33.1439 38.9668 31 “ -1.1651 21.7187 14.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 32 % -0.9268 46.5061 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 33 £ -0.0679 26.1617 40.3098 -Times_New_Roman.ttf 48 L 33.1439 38.9668 34 . 35.0087 5.2070 5.2070 -Times_New_Roman.ttf 48 L 33.1439 38.9668 35 2 -0.2245 25.4620 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 36 5 -0.4106 22.0242 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 37 m 11.5681 43.6210 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 38 V -0.1058 42.2148 40.1617 -Times_New_Roman.ttf 48 L 33.1439 38.9668 39 6 -0.0369 24.6301 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 40 w 12.9936 42.0012 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 41 T -0.2238 32.3248 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 42 M -0.1782 50.8363 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 43 G -1.3641 40.3777 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 44 b -1.8474 26.9520 42.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 45 9 -0.0742 24.2671 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 46 ; 12.0992 8.5769 37.1560 -Times_New_Roman.ttf 48 L 33.1439 38.9668 47 D -0.1058 39.5054 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 48 L -0.0047 33.1439 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 49 y 13.1127 29.1112 38.6301 -Times_New_Roman.ttf 48 L 33.1439 38.9668 50 ‘ -1.1498 8.5769 14.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 51 \ -2.0264 16.8851 42.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 52 R -0.0802 39.5470 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 53 < 4.4103 30.8172 29.1949 -Times_New_Roman.ttf 48 L 33.1439 38.9668 54 4 -0.1570 25.4620 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 55 8 -0.0280 22.7514 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 56 0 -0.0678 24.6301 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 57 A -1.5652 42.0000 40.1617 -Times_New_Roman.ttf 48 L 33.1439 38.9668 58 E 0.0547 34.1502 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 59 B 0.2016 34.7661 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 60 v 12.8702 29.7477 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 61 k -1.5804 28.5111 40.8051 -Times_New_Roman.ttf 48 L 33.1439 38.9668 62 J 0.0784 20.9143 40.1617 -Times_New_Roman.ttf 48 L 33.1439 38.9668 63 U 0.2687 40.9807 40.1617 -Times_New_Roman.ttf 48 L 33.1439 38.9668 64 j -1.9272 16.0484 53.4620 -Times_New_Roman.ttf 48 L 33.1439 38.9668 65 ( -1.6632 15.8383 52.6957 -Times_New_Roman.ttf 48 L 33.1439 38.9668 66 7 0.0920 25.4883 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 67 § -0.4765 20.6180 50.9240 -Times_New_Roman.ttf 48 L 33.1439 38.9668 68 $ -3.0729 23.6237 45.6650 -Times_New_Roman.ttf 48 L 33.1439 38.9668 69 € -0.0963 29.1949 39.1149 -Times_New_Roman.ttf 48 L 33.1439 38.9668 70 / -2.0103 17.5847 42.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 71 C -1.3475 34.5501 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 72 * -1.7466 20.0652 24.4140 -Times_New_Roman.ttf 48 L 33.1439 38.9668 73 ” -1.0073 21.5302 14.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 74 ? -1.2075 19.9342 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 75 { -1.6192 17.0320 52.6957 -Times_New_Roman.ttf 48 L 33.1439 38.9668 76 } -1.3299 17.0320 52.6957 -Times_New_Roman.ttf 48 L 33.1439 38.9668 77 , 34.5222 8.5769 14.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 78 I -0.2704 16.7540 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 79 ° -1.3874 17.5847 17.5847 -Times_New_Roman.ttf 48 L 33.1439 38.9668 80 K -0.0028 41.1680 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 81 H -0.0957 40.9305 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 82 q 11.6753 26.9520 39.8250 -Times_New_Roman.ttf 48 L 33.1439 38.9668 83 & -1.0726 41.3566 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 84 ’ -0.9404 8.5769 14.0000 -Times_New_Roman.ttf 48 L 33.1439 38.9668 85 [ -0.6689 12.6569 51.2203 -Times_New_Roman.ttf 48 L 33.1439 38.9668 86 - 23.0981 15.1949 5.2070 -Times_New_Roman.ttf 48 L 33.1439 38.9668 87 Y -0.2512 41.7612 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 88 Q -1.0469 37.9463 51.1285 -Times_New_Roman.ttf 48 L 33.1439 38.9668 89 " -0.9416 14.9789 16.3898 -Times_New_Roman.ttf 48 L 33.1439 38.9668 90 ! -1.1327 5.2070 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 91 x 12.8946 28.4678 25.9731 -Times_New_Roman.ttf 48 L 33.1439 38.9668 92 ) -1.4634 15.8383 52.6957 -Times_New_Roman.ttf 48 L 33.1439 38.9668 93 = 13.1899 30.1750 12.0135 -Times_New_Roman.ttf 48 L 33.1439 38.9668 94 + 4.2733 30.3898 30.3898 -Times_New_Roman.ttf 48 L 33.1439 38.9668 95 X -0.2407 42.0000 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 96 » 11.8024 24.9093 27.1680 -Times_New_Roman.ttf 48 L 33.1439 38.9668 97 ' -1.6321 5.2070 16.3898 -Times_New_Roman.ttf 48 L 33.1439 38.9668 98 ¢ 1.4331 21.9610 47.5712 -Times_New_Roman.ttf 48 L 33.1439 38.9668 99 Z 0.1436 33.9746 38.9668 -Times_New_Roman.ttf 48 L 33.1439 38.9668 100 > 4.4272 30.8172 29.1949 -Times_New_Roman.ttf 48 L 33.1439 38.9668 101 ® -1.3299 40.3777 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 102 © -1.2502 40.3777 41.3566 -Times_New_Roman.ttf 48 L 33.1439 38.9668 103 ] -0.8845 12.6569 51.2203 -Times_New_Roman.ttf 48 L 33.1439 38.9668 104 é -1.0051 22.1496 41.0199 -Times_New_Roman.ttf 48 L 33.1439 38.9668 105 z 13.0739 23.5833 25.9731 -Times_New_Roman.ttf 48 L 33.1439 38.9668 106 _ 49.2974 30.0269 2.3898 -Times_New_Roman.ttf 48 L 33.1439 38.9668 107 ¥ 0.1556 31.4941 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 1 t -8.3503 16.5784 35.7450 -Times_New_Roman.ttf 49 y 29.1112 38.6301 2 h -14.7996 28.4261 40.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 3 a -1.0725 24.3234 28.3630 -Times_New_Roman.ttf 49 y 29.1112 38.6301 4 n -1.3697 28.4261 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 5 P -13.1426 30.0702 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 6 o -1.3150 25.1828 28.3630 -Times_New_Roman.ttf 49 y 29.1112 38.6301 7 e -1.3309 22.1496 28.3630 -Times_New_Roman.ttf 49 y 29.1112 38.6301 8 : -1.1449 5.2070 28.3630 -Times_New_Roman.ttf 49 y 29.1112 38.6301 9 r -1.0678 19.2070 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 10 l -14.9155 13.2312 40.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 11 i -14.7017 13.2312 40.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 12 1 -13.2734 15.9852 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 13 | -14.6168 2.3898 53.1828 -Times_New_Roman.ttf 49 y 29.1112 38.6301 14 N -12.9225 43.0064 40.1617 -Times_New_Roman.ttf 49 y 29.1112 38.6301 15 f -14.8236 23.6237 40.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 16 g -1.0896 26.7407 39.8250 -Times_New_Roman.ttf 49 y 29.1112 38.6301 17 d -14.9909 27.3566 42.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 18 W -12.8001 55.7208 40.1617 -Times_New_Roman.ttf 49 y 29.1112 38.6301 19 s -1.1546 17.7329 28.3630 -Times_New_Roman.ttf 49 y 29.1112 38.6301 20 c -1.0201 22.1496 28.3630 -Times_New_Roman.ttf 49 y 29.1112 38.6301 21 u -0.3738 28.6422 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 22 3 -13.1566 21.3820 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 23 ~ 6.2637 29.9208 7.5968 -Times_New_Roman.ttf 49 y 29.1112 38.6301 24 # -14.9357 26.1892 40.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 25 O -14.2905 37.9463 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 26 ` -13.6435 8.2402 9.4352 -Times_New_Roman.ttf 49 y 29.1112 38.6301 27 @ -15.0039 49.5968 54.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 28 F -13.0739 29.5579 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 29 S -14.3760 24.9668 41.5452 -Times_New_Roman.ttf 49 y 29.1112 38.6301 30 p -1.1123 26.9520 39.8250 -Times_New_Roman.ttf 49 y 29.1112 38.6301 31 “ -13.8047 21.7187 14.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 32 % -14.2299 46.5061 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 33 £ -13.1028 26.1617 40.3098 -Times_New_Roman.ttf 49 y 29.1112 38.6301 34 . 22.4467 5.2070 5.2070 -Times_New_Roman.ttf 49 y 29.1112 38.6301 35 2 -12.8697 25.4620 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 36 5 -12.9462 22.0242 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 37 m -1.0070 43.6210 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 38 V -13.1286 42.2148 40.1617 -Times_New_Roman.ttf 49 y 29.1112 38.6301 39 6 -13.0471 24.6301 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 40 w 0.1821 42.0012 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 41 T -12.9350 32.3248 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 42 M -12.8177 50.8363 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 43 G -14.2439 40.3777 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 44 b -14.7960 26.9520 42.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 45 9 -13.2343 24.2671 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 46 ; -1.2816 8.5769 37.1560 -Times_New_Roman.ttf 49 y 29.1112 38.6301 47 D -13.1354 39.5054 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 48 L -12.8696 33.1439 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 49 y 0.1018 29.1112 38.6301 -Times_New_Roman.ttf 49 y 29.1112 38.6301 50 ‘ -14.1041 8.5769 14.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 51 \ -14.6898 16.8851 42.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 52 R -13.1364 39.5470 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 53 < -8.7762 30.8172 29.1949 -Times_New_Roman.ttf 49 y 29.1112 38.6301 54 4 -13.0889 25.4620 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 55 8 -12.9784 22.7514 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 56 0 -13.2249 24.6301 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 57 A -14.2848 42.0000 40.1617 -Times_New_Roman.ttf 49 y 29.1112 38.6301 58 E -12.9033 34.1502 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 59 B -12.9533 34.7661 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 60 v -0.2027 29.7477 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 61 k -14.7651 28.5111 40.8051 -Times_New_Roman.ttf 49 y 29.1112 38.6301 62 J -13.2323 20.9143 40.1617 -Times_New_Roman.ttf 49 y 29.1112 38.6301 63 U -12.7909 40.9807 40.1617 -Times_New_Roman.ttf 49 y 29.1112 38.6301 64 j -14.8632 16.0484 53.4620 -Times_New_Roman.ttf 49 y 29.1112 38.6301 65 ( -14.4200 15.8383 52.6957 -Times_New_Roman.ttf 49 y 29.1112 38.6301 66 7 -12.9893 25.4883 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 67 § -13.9035 20.6180 50.9240 -Times_New_Roman.ttf 49 y 29.1112 38.6301 68 $ -15.9388 23.6237 45.6650 -Times_New_Roman.ttf 49 y 29.1112 38.6301 69 € -12.9140 29.1949 39.1149 -Times_New_Roman.ttf 49 y 29.1112 38.6301 70 / -14.9460 17.5847 42.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 71 C -14.2000 34.5501 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 72 * -14.8512 20.0652 24.4140 -Times_New_Roman.ttf 49 y 29.1112 38.6301 73 ” -14.1041 21.5302 14.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 74 ? -14.3754 19.9342 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 75 { -14.3085 17.0320 52.6957 -Times_New_Roman.ttf 49 y 29.1112 38.6301 76 } -14.5532 17.0320 52.6957 -Times_New_Roman.ttf 49 y 29.1112 38.6301 77 , 21.9683 8.5769 14.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 78 I -12.8991 16.7540 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 79 ° -14.1184 17.5847 17.5847 -Times_New_Roman.ttf 49 y 29.1112 38.6301 80 K -12.9128 41.1680 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 81 H -12.9749 40.9305 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 82 q -1.0633 26.9520 39.8250 -Times_New_Roman.ttf 49 y 29.1112 38.6301 83 & -14.1443 41.3566 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 84 ’ -13.9814 8.5769 14.0000 -Times_New_Roman.ttf 49 y 29.1112 38.6301 85 [ -13.5880 12.6569 51.2203 -Times_New_Roman.ttf 49 y 29.1112 38.6301 86 - 10.0631 15.1949 5.2070 -Times_New_Roman.ttf 49 y 29.1112 38.6301 87 Y -12.9134 41.7612 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 88 Q -14.0929 37.9463 51.1285 -Times_New_Roman.ttf 49 y 29.1112 38.6301 89 " -14.1785 14.9789 16.3898 -Times_New_Roman.ttf 49 y 29.1112 38.6301 90 ! -14.2582 5.2070 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 91 x -0.1389 28.4678 25.9731 -Times_New_Roman.ttf 49 y 29.1112 38.6301 92 ) -14.5776 15.8383 52.6957 -Times_New_Roman.ttf 49 y 29.1112 38.6301 93 = 0.2160 30.1750 12.0135 -Times_New_Roman.ttf 49 y 29.1112 38.6301 94 + -8.7240 30.3898 30.3898 -Times_New_Roman.ttf 49 y 29.1112 38.6301 95 X -12.8724 42.0000 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 96 » -1.3117 24.9093 27.1680 -Times_New_Roman.ttf 49 y 29.1112 38.6301 97 ' -14.4015 5.2070 16.3898 -Times_New_Roman.ttf 49 y 29.1112 38.6301 98 ¢ -11.7840 21.9610 47.5712 -Times_New_Roman.ttf 49 y 29.1112 38.6301 99 Z -12.9741 33.9746 38.9668 -Times_New_Roman.ttf 49 y 29.1112 38.6301 100 > -8.6373 30.8172 29.1949 -Times_New_Roman.ttf 49 y 29.1112 38.6301 101 ® -14.3126 40.3777 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 102 © -14.5404 40.3777 41.3566 -Times_New_Roman.ttf 49 y 29.1112 38.6301 103 ] -13.7231 12.6569 51.2203 -Times_New_Roman.ttf 49 y 29.1112 38.6301 104 é -14.2531 22.1496 41.0199 -Times_New_Roman.ttf 49 y 29.1112 38.6301 105 z 0.4263 23.5833 25.9731 -Times_New_Roman.ttf 49 y 29.1112 38.6301 106 _ 36.4594 30.0269 2.3898 -Times_New_Roman.ttf 49 y 29.1112 38.6301 107 ¥ -13.2688 31.4941 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 1 t 5.5957 16.5784 35.7450 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 2 h -0.5613 28.4261 40.8051 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 3 a 12.8144 24.3234 28.3630 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 4 n 12.8609 28.4261 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 5 P 1.2039 30.0702 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 6 o 13.0750 25.1828 28.3630 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 7 e 12.9998 22.1496 28.3630 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 8 : 13.2482 5.2134 28.3500 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 9 r 13.2878 19.2070 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 10 l -0.6804 13.2312 40.8051 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 11 i -0.9297 13.2312 40.8051 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 12 1 0.7935 15.9913 39.1026 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 13 | -0.7973 2.3814 53.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 14 N 1.1431 43.0064 40.1617 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 15 f -0.6919 23.6237 40.8051 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 16 g 12.6708 26.7407 39.8250 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 17 d -0.6445 27.3566 42.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 18 W 0.8408 55.7208 40.1617 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 19 s 12.8308 17.7329 28.3630 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 20 c 13.0368 22.1496 28.3630 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 21 u 14.2318 28.6422 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 22 3 0.9737 21.3876 39.1026 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 23 ~ 20.6787 29.8907 7.5948 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 24 # -0.9114 26.1769 40.8093 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 25 O -0.2562 37.9463 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 26 ` 0.8334 8.2536 9.4443 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 27 @ -0.6973 49.5948 54.8093 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 28 F 1.1550 29.5579 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 29 S -0.0202 24.9668 41.5452 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 30 p 12.9019 26.9520 39.8250 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 31 “ 0.0774 21.7123 14.0000 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 32 % -0.0427 46.5375 41.3411 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 33 £ 0.9798 26.1504 40.2933 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 34 . 35.9665 5.2134 5.2134 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 35 2 1.0478 25.4757 39.1026 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 36 5 1.2389 22.0453 38.9597 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 37 m 12.9936 43.6210 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 38 V 1.3554 42.2148 40.1617 -Times_New_Roman.ttf 50 ‘ 8.5783 14.0000 39 6 1.0516 24.6350 39.1026 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 40 w 14.2688 42.0012 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 41 T 1.2679 32.3248 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 42 M 1.3981 50.8363 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 43 G 0.1969 40.3777 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 44 b -0.5085 26.9520 42.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 45 9 1.1299 24.2671 39.1149 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 46 ; 13.0009 8.5769 37.1560 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 47 D 1.2460 39.5054 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 48 L 1.2968 33.1439 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 49 y 14.1886 29.1112 38.6301 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 50 ‘ -0.1633 8.5769 14.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 51 \ -0.8938 16.8851 42.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 52 R 1.0056 39.5470 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 53 < 5.4379 30.8172 29.1949 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 54 4 0.9806 25.4620 39.1149 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 55 8 1.1327 22.7514 39.1149 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 56 0 1.0986 24.6301 39.1149 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 57 A 0.0461 42.0000 40.1617 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 58 E 1.2540 34.1502 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 59 B 1.0248 34.7661 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 60 v 14.0194 29.7477 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 61 k -0.8831 28.5111 40.8051 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 62 J 1.0316 20.9143 40.1617 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 63 U 1.1546 40.9807 40.1617 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 64 j -0.5233 16.0484 53.4620 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 65 ( -0.3722 15.8383 52.6957 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 66 7 1.2780 25.4883 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 67 § 1.0047 20.6180 50.9240 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 68 $ -1.7636 23.6237 45.6650 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 69 € 1.0838 29.1949 39.1149 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 70 / -0.5963 17.5847 42.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 71 C 0.1123 34.5501 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 72 * -0.6833 20.0652 24.4140 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 73 ” -0.0159 21.5302 14.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 74 ? 0.1717 19.9342 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 75 { -0.4438 17.0320 52.6957 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 76 } -0.0017 17.0320 52.6957 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 77 , 36.0665 8.5769 14.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 78 I 1.4695 16.7540 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 79 ° 0.0917 17.5847 17.5847 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 80 K 1.1949 41.1680 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 81 H 1.1550 40.9305 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 82 q 12.9936 26.9520 39.8250 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 83 & -0.0774 41.3566 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 84 ’ -0.0558 8.5769 14.0000 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 85 [ 0.5875 12.6569 51.2203 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 86 - 23.9821 15.1949 5.2070 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 87 Y 1.1891 41.7612 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 88 Q -0.1720 37.9463 51.1285 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 89 " -0.0432 14.9789 16.3898 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 90 ! 0.0331 5.2070 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 91 x 14.2357 28.4678 25.9731 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 92 ) -0.1546 15.8383 52.6957 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 93 = 14.5766 30.1750 12.0135 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 94 + 5.4001 30.3898 30.3898 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 95 X 1.2468 42.0000 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 96 » 13.0307 24.9093 27.1680 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 97 ' -0.1480 5.2070 16.3898 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 98 ¢ 2.5823 21.9610 47.5712 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 99 Z 1.3122 33.9746 38.9668 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 100 > 5.5956 30.8172 29.1949 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 101 ® -0.1846 40.3777 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 102 © 0.0000 40.3777 41.3566 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 103 ] 0.4968 12.6569 51.2203 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 104 é 0.4698 22.1496 41.0199 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 105 z 14.1810 23.5833 25.9731 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 106 _ 50.4259 30.0269 2.3898 -Times_New_Roman.ttf 50 ‘ 8.5769 14.0000 107 ¥ 1.0647 31.4941 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 1 t 6.1310 16.5784 35.7450 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 2 h 0.0000 28.4261 40.8051 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 3 a 13.3468 24.3234 28.3630 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 4 n 13.4059 28.4261 27.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 5 P 1.7955 30.0702 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 6 o 13.6751 25.1828 28.3630 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 7 e 13.6741 22.1496 28.3630 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 8 : 13.6500 5.2134 28.3500 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 9 r 13.8231 19.2070 27.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 10 l 0.0062 13.2312 40.8051 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 11 i 0.1379 13.2312 40.8051 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 12 1 1.6381 15.9913 39.1026 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 13 | 0.1640 2.3814 53.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 14 N 1.8394 43.0064 40.1617 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 15 f 0.0774 23.6237 40.8051 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 16 g 13.8004 26.7407 39.8250 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 17 d -0.2163 27.3566 42.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 18 W 2.0973 55.7208 40.1617 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 19 s 13.8090 17.7329 28.3630 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 20 c 13.5529 22.1496 28.3630 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 21 u 14.8320 28.6422 27.1680 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 22 3 1.8708 21.3876 39.1026 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 23 ~ 21.3519 29.8907 7.5948 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 24 # -0.3452 26.1769 40.8093 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 25 O 0.7179 37.9463 41.3566 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 26 ` 1.4654 8.2536 9.4443 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 27 @ 0.4138 49.5948 54.8093 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 28 F 1.9704 29.5579 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 29 S 0.3279 24.9668 41.5452 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 30 p 13.6889 26.9520 39.8250 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 31 “ 0.6315 21.7123 14.0000 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 32 % 0.7747 46.5375 41.3411 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 33 £ 1.6040 26.1504 40.2933 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 34 . 36.8751 5.2134 5.2134 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 35 2 1.6984 25.4757 39.1026 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 36 5 1.9853 22.0453 38.9597 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 37 m 13.7173 43.6210 27.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 38 V 1.7581 42.2148 40.1617 -Times_New_Roman.ttf 51 \ 16.8974 42.0000 39 6 1.7161 24.6350 39.1026 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 40 w 14.7996 42.0012 27.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 41 T 1.9214 32.3248 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 42 M 1.7984 50.8363 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 43 G 0.4134 40.3777 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 44 b 0.0094 26.9520 42.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 45 9 1.7926 24.2671 39.1149 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 46 ; 13.6566 8.5769 37.1560 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 47 D 1.9105 39.5054 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 48 L 1.7018 33.1439 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 49 y 14.8280 29.1112 38.6301 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 50 ‘ 0.6348 8.5769 14.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 51 \ -0.0101 16.8851 42.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 52 R 1.9632 39.5470 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 53 < 6.0935 30.8172 29.1949 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 54 4 1.7420 25.4620 39.1149 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 55 8 1.5494 22.7514 39.1149 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 56 0 1.6988 24.6301 39.1149 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 57 A 0.6298 42.0000 40.1617 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 58 E 2.1135 34.1502 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 59 B 1.8560 34.7661 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 60 v 15.1428 29.7477 27.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 61 k 0.1302 28.5111 40.8051 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 62 J 1.9728 20.9143 40.1617 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 63 U 1.6105 40.9807 40.1617 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 64 j 0.0000 16.0484 53.4620 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 65 ( 0.2395 15.8383 52.6957 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 66 7 1.5760 25.4883 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 67 § 1.2959 20.6180 50.9240 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 68 $ -0.8884 23.6237 45.6650 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 69 € 1.4351 29.1949 39.1149 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 70 / -0.0957 17.5847 42.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 71 C 0.7675 34.5501 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 72 * -0.0711 20.0652 24.4140 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 73 ” 0.4613 21.5302 14.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 74 ? 0.3319 19.9342 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 75 { 0.4633 17.0320 52.6957 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 76 } 0.6152 17.0320 52.6957 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 77 , 36.8819 8.5769 14.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 78 I 1.9186 16.7540 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 79 ° 0.6514 17.5847 17.5847 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 80 K 1.8858 41.1680 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 81 H 1.7346 40.9305 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 82 q 13.5601 26.9520 39.8250 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 83 & 0.8625 41.3566 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 84 ’ 0.2534 8.5769 14.0000 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 85 [ 1.3981 12.6569 51.2203 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 86 - 24.4953 15.1949 5.2070 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 87 Y 1.9402 41.7612 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 88 Q 0.5034 37.9463 51.1285 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 89 " 0.5488 14.9789 16.3898 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 90 ! 0.5603 5.2070 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 91 x 14.9242 28.4678 25.9731 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 92 ) 0.2759 15.8383 52.6957 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 93 = 15.2113 30.1750 12.0135 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 94 + 6.0597 30.3898 30.3898 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 95 X 1.7740 42.0000 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 96 » 13.7231 24.9093 27.1680 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 97 ' 0.7265 5.2070 16.3898 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 98 ¢ 3.1113 21.9610 47.5712 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 99 Z 1.5587 33.9746 38.9668 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 100 > 6.4335 30.8172 29.1949 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 101 ® 0.5915 40.3777 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 102 © 0.9076 40.3777 41.3566 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 103 ] 1.3828 12.6569 51.2203 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 104 é 0.8951 22.1496 41.0199 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 105 z 14.9981 23.5833 25.9731 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 106 _ 51.0693 30.0269 2.3898 -Times_New_Roman.ttf 51 \ 16.8851 42.0000 107 ¥ 1.8383 31.4941 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 1 t 4.2221 16.5784 35.7450 -Times_New_Roman.ttf 52 R 39.5470 38.9668 2 h -2.2130 28.4261 40.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 3 a 11.9160 24.3234 28.3630 -Times_New_Roman.ttf 52 R 39.5470 38.9668 4 n 11.8253 28.4261 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 5 P -0.2512 30.0702 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 6 o 11.8750 25.1828 28.3630 -Times_New_Roman.ttf 52 R 39.5470 38.9668 7 e 11.6512 22.1496 28.3630 -Times_New_Roman.ttf 52 R 39.5470 38.9668 8 : 11.5757 5.2070 28.3630 -Times_New_Roman.ttf 52 R 39.5470 38.9668 9 r 11.7516 19.2070 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 10 l -2.1372 13.2312 40.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 11 i -1.5640 13.2312 40.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 12 1 -0.1899 15.9852 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 13 | -2.2161 2.3898 53.1828 -Times_New_Roman.ttf 52 R 39.5470 38.9668 14 N 0.2504 43.0064 40.1617 -Times_New_Roman.ttf 52 R 39.5470 38.9668 15 f -1.5664 23.6237 40.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 16 g 11.6983 26.7407 39.8250 -Times_New_Roman.ttf 52 R 39.5470 38.9668 17 d -1.7131 27.3566 42.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 18 W -0.2026 55.7208 40.1617 -Times_New_Roman.ttf 52 R 39.5470 38.9668 19 s 11.8394 17.7329 28.3630 -Times_New_Roman.ttf 52 R 39.5470 38.9668 20 c 11.7544 22.1496 28.3630 -Times_New_Roman.ttf 52 R 39.5470 38.9668 21 u 12.8054 28.6422 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 22 3 0.1103 21.3820 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 23 ~ 19.4283 29.9208 7.5968 -Times_New_Roman.ttf 52 R 39.5470 38.9668 24 # -1.8440 26.1892 40.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 25 O -1.1921 37.9463 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 26 ` -0.4639 8.2402 9.4352 -Times_New_Roman.ttf 52 R 39.5470 38.9668 27 @ -1.4245 49.5968 54.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 28 F 0.0286 29.5579 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 29 S -1.5314 24.9668 41.5452 -Times_New_Roman.ttf 52 R 39.5470 38.9668 30 p 11.8963 26.9520 39.8250 -Times_New_Roman.ttf 52 R 39.5470 38.9668 31 “ -1.3965 21.7187 14.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 32 % -1.1795 46.5061 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 33 £ 0.0191 26.1617 40.3098 -Times_New_Roman.ttf 52 R 39.5470 38.9668 34 . 35.0248 5.2070 5.2070 -Times_New_Roman.ttf 52 R 39.5470 38.9668 35 2 0.1080 25.4620 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 36 5 -0.1270 22.0242 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 37 m 11.7959 43.6210 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 38 V 0.0443 42.2148 40.1617 -Times_New_Roman.ttf 52 R 39.5470 38.9668 39 6 -0.2204 24.6301 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 40 w 12.8206 42.0012 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 41 T 0.1129 32.3248 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 42 M -0.1302 50.8363 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 43 G -1.1595 40.3777 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 44 b -1.8916 26.9520 42.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 45 9 -0.2701 24.2671 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 46 ; 11.9236 8.5769 37.1560 -Times_New_Roman.ttf 52 R 39.5470 38.9668 47 D 0.3116 39.5054 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 48 L -0.0120 33.1439 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 49 y 12.9220 29.1112 38.6301 -Times_New_Roman.ttf 52 R 39.5470 38.9668 50 ‘ -1.0891 8.5769 14.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 51 \ -1.6515 16.8851 42.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 52 R -0.2470 39.5470 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 53 < 4.2829 30.8172 29.1949 -Times_New_Roman.ttf 52 R 39.5470 38.9668 54 4 -0.2755 25.4620 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 55 8 -0.1083 22.7514 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 56 0 -0.1914 24.6301 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 57 A -1.3583 42.0000 40.1617 -Times_New_Roman.ttf 52 R 39.5470 38.9668 58 E -0.0557 34.1502 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 59 B -0.3864 34.7661 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 60 v 12.8467 29.7477 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 61 k -1.9537 28.5111 40.8051 -Times_New_Roman.ttf 52 R 39.5470 38.9668 62 J -0.0321 20.9143 40.1617 -Times_New_Roman.ttf 52 R 39.5470 38.9668 63 U 0.2825 40.9807 40.1617 -Times_New_Roman.ttf 52 R 39.5470 38.9668 64 j -1.7638 16.0484 53.4620 -Times_New_Roman.ttf 52 R 39.5470 38.9668 65 ( -1.4829 15.8383 52.6957 -Times_New_Roman.ttf 52 R 39.5470 38.9668 66 7 0.1014 25.4883 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 67 § -0.4838 20.6180 50.9240 -Times_New_Roman.ttf 52 R 39.5470 38.9668 68 $ -2.9254 23.6237 45.6650 -Times_New_Roman.ttf 52 R 39.5470 38.9668 69 € -0.1208 29.1949 39.1149 -Times_New_Roman.ttf 52 R 39.5470 38.9668 70 / -2.0330 17.5847 42.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 71 C -1.3846 34.5501 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 72 * -1.8782 20.0652 24.4140 -Times_New_Roman.ttf 52 R 39.5470 38.9668 73 ” -1.1511 21.5302 14.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 74 ? -1.0006 19.9342 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 75 { -1.4706 17.0320 52.6957 -Times_New_Roman.ttf 52 R 39.5470 38.9668 76 } -1.2370 17.0320 52.6957 -Times_New_Roman.ttf 52 R 39.5470 38.9668 77 , 34.8640 8.5769 14.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 78 I 0.1485 16.7540 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 79 ° -1.0502 17.5847 17.5847 -Times_New_Roman.ttf 52 R 39.5470 38.9668 80 K -0.1595 41.1680 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 81 H -0.1734 40.9305 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 82 q 11.7636 26.9520 39.8250 -Times_New_Roman.ttf 52 R 39.5470 38.9668 83 & -1.1517 41.3566 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 84 ’ -0.8643 8.5769 14.0000 -Times_New_Roman.ttf 52 R 39.5470 38.9668 85 [ -0.7366 12.6569 51.2203 -Times_New_Roman.ttf 52 R 39.5470 38.9668 86 - 22.7526 15.1949 5.2070 -Times_New_Roman.ttf 52 R 39.5470 38.9668 87 Y -0.1018 41.7612 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 88 Q -1.0844 37.9463 51.1285 -Times_New_Roman.ttf 52 R 39.5470 38.9668 89 " -1.1754 14.9789 16.3898 -Times_New_Roman.ttf 52 R 39.5470 38.9668 90 ! -1.1100 5.2070 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 91 x 13.2570 28.4678 25.9731 -Times_New_Roman.ttf 52 R 39.5470 38.9668 92 ) -1.3336 15.8383 52.6957 -Times_New_Roman.ttf 52 R 39.5470 38.9668 93 = 12.9877 30.1750 12.0135 -Times_New_Roman.ttf 52 R 39.5470 38.9668 94 + 4.5236 30.3898 30.3898 -Times_New_Roman.ttf 52 R 39.5470 38.9668 95 X -0.0399 42.0000 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 96 » 11.5676 24.9093 27.1680 -Times_New_Roman.ttf 52 R 39.5470 38.9668 97 ' -1.0455 5.2070 16.3898 -Times_New_Roman.ttf 52 R 39.5470 38.9668 98 ¢ 1.2446 21.9610 47.5712 -Times_New_Roman.ttf 52 R 39.5470 38.9668 99 Z 0.2545 33.9746 38.9668 -Times_New_Roman.ttf 52 R 39.5470 38.9668 100 > 4.2638 30.8172 29.1949 -Times_New_Roman.ttf 52 R 39.5470 38.9668 101 ® -1.2449 40.3777 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 102 © -1.3309 40.3777 41.3566 -Times_New_Roman.ttf 52 R 39.5470 38.9668 103 ] -0.7549 12.6569 51.2203 -Times_New_Roman.ttf 52 R 39.5470 38.9668 104 é -0.9452 22.1496 41.0199 -Times_New_Roman.ttf 52 R 39.5470 38.9668 105 z 12.9249 23.5833 25.9731 -Times_New_Roman.ttf 52 R 39.5470 38.9668 106 _ 48.8996 30.0269 2.3898 -Times_New_Roman.ttf 52 R 39.5470 38.9668 107 ¥ -0.0917 31.4941 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 1 t 0.0891 16.5784 35.7450 -Times_New_Roman.ttf 53 < 30.8172 29.1949 2 h -6.2850 28.4261 40.8051 -Times_New_Roman.ttf 53 < 30.8172 29.1949 3 a 7.5935 24.3234 28.3630 -Times_New_Roman.ttf 53 < 30.8172 29.1949 4 n 7.4441 28.4261 27.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 5 P -4.4877 30.0702 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 6 o 7.4114 25.1828 28.3630 -Times_New_Roman.ttf 53 < 30.8172 29.1949 7 e 7.4384 22.1496 28.3630 -Times_New_Roman.ttf 53 < 30.8320 29.1907 8 : 7.3493 5.2134 28.3500 -Times_New_Roman.ttf 53 < 30.8172 29.1949 9 r 7.5057 19.2070 27.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 10 l -6.0544 13.2312 40.8051 -Times_New_Roman.ttf 53 < 30.8172 29.1949 11 i -5.9176 13.2312 40.8051 -Times_New_Roman.ttf 53 < 30.8320 29.1907 12 1 -4.6003 15.9913 39.1026 -Times_New_Roman.ttf 53 < 30.8320 29.1907 13 | -5.9902 2.3814 53.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 14 N -4.3118 43.0064 40.1617 -Times_New_Roman.ttf 53 < 30.8172 29.1949 15 f -6.0460 23.6237 40.8051 -Times_New_Roman.ttf 53 < 30.8172 29.1949 16 g 7.4402 26.7407 39.8250 -Times_New_Roman.ttf 53 < 30.8172 29.1949 17 d -6.3601 27.3566 42.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 18 W -4.1893 55.7208 40.1617 -Times_New_Roman.ttf 53 < 30.8172 29.1949 19 s 7.6752 17.7329 28.3630 -Times_New_Roman.ttf 53 < 30.8172 29.1949 20 c 7.3582 22.1496 28.3630 -Times_New_Roman.ttf 53 < 30.8172 29.1949 21 u 8.5348 28.6422 27.1680 -Times_New_Roman.ttf 53 < 30.8320 29.1907 22 3 -4.4472 21.3876 39.1026 -Times_New_Roman.ttf 53 < 30.8320 29.1907 23 ~ 15.4604 29.8907 7.5948 -Times_New_Roman.ttf 53 < 30.8320 29.1907 24 # -6.0650 26.1769 40.8093 -Times_New_Roman.ttf 53 < 30.8172 29.1949 25 O -5.3882 37.9463 41.3566 -Times_New_Roman.ttf 53 < 30.8320 29.1907 26 ` -4.6458 8.2536 9.4443 -Times_New_Roman.ttf 53 < 30.8320 29.1907 27 @ -6.2293 49.5948 54.8093 -Times_New_Roman.ttf 53 < 30.8172 29.1949 28 F -4.1740 29.5579 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 29 S -5.6413 24.9668 41.5452 -Times_New_Roman.ttf 53 < 30.8172 29.1949 30 p 7.5791 26.9520 39.8250 -Times_New_Roman.ttf 53 < 30.8320 29.1907 31 “ -5.8027 21.7123 14.0000 -Times_New_Roman.ttf 53 < 30.8320 29.1907 32 % -5.3569 46.5375 41.3411 -Times_New_Roman.ttf 53 < 30.8320 29.1907 33 £ -4.2293 26.1504 40.2933 -Times_New_Roman.ttf 53 < 30.8320 29.1907 34 . 30.3651 5.2134 5.2134 -Times_New_Roman.ttf 53 < 30.8320 29.1907 35 2 -4.5513 25.4757 39.1026 -Times_New_Roman.ttf 53 < 30.8320 29.1907 36 5 -4.3473 22.0453 38.9597 -Times_New_Roman.ttf 53 < 30.8172 29.1949 37 m 7.2721 43.6210 27.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 38 V -4.2323 42.2148 40.1617 -Times_New_Roman.ttf 53 < 30.8320 29.1907 39 6 -4.4073 24.6350 39.1026 -Times_New_Roman.ttf 53 < 30.8172 29.1949 40 w 8.7327 42.0012 27.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 41 T -4.2498 32.3248 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 42 M -4.2816 50.8363 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 43 G -5.3741 40.3777 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 44 b -6.5008 26.9520 42.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 45 9 -4.9370 24.2671 39.1149 -Times_New_Roman.ttf 53 < 30.8172 29.1949 46 ; 7.8558 8.5769 37.1560 -Times_New_Roman.ttf 53 < 30.8172 29.1949 47 D -4.3384 39.5054 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 48 L -4.4359 33.1439 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 49 y 8.5276 29.1112 38.6301 -Times_New_Roman.ttf 53 < 30.8172 29.1949 50 ‘ -5.5652 8.5769 14.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 51 \ -6.3361 16.8851 42.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 52 R -4.3394 39.5470 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 53 < -0.1274 30.8172 29.1949 -Times_New_Roman.ttf 53 < 30.8172 29.1949 54 4 -4.6848 25.4620 39.1149 -Times_New_Roman.ttf 53 < 30.8172 29.1949 55 8 -4.3221 22.7514 39.1149 -Times_New_Roman.ttf 53 < 30.8172 29.1949 56 0 -4.7484 24.6301 39.1149 -Times_New_Roman.ttf 53 < 30.8172 29.1949 57 A -5.5719 42.0000 40.1617 -Times_New_Roman.ttf 53 < 30.8172 29.1949 58 E -4.3608 34.1502 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 59 B -4.4568 34.7661 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 60 v 8.4689 29.7477 27.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 61 k -6.1871 28.5111 40.8051 -Times_New_Roman.ttf 53 < 30.8172 29.1949 62 J -4.4776 20.9143 40.1617 -Times_New_Roman.ttf 53 < 30.8172 29.1949 63 U -4.1862 40.9807 40.1617 -Times_New_Roman.ttf 53 < 30.8172 29.1949 64 j -6.1684 16.0484 53.4620 -Times_New_Roman.ttf 53 < 30.8172 29.1949 65 ( -5.6789 15.8383 52.6957 -Times_New_Roman.ttf 53 < 30.8172 29.1949 66 7 -4.3373 25.4883 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 67 § -4.9079 20.6180 50.9240 -Times_New_Roman.ttf 53 < 30.8172 29.1949 68 $ -7.4059 23.6237 45.6650 -Times_New_Roman.ttf 53 < 30.8172 29.1949 69 € -4.5945 29.1949 39.1149 -Times_New_Roman.ttf 53 < 30.8172 29.1949 70 / -5.9154 17.5847 42.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 71 C -5.8835 34.5501 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 72 * -5.9292 20.0652 24.4140 -Times_New_Roman.ttf 53 < 30.8172 29.1949 73 ” -5.5409 21.5302 14.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 74 ? -5.6753 19.9342 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 75 { -5.7444 17.0320 52.6957 -Times_New_Roman.ttf 53 < 30.8172 29.1949 76 } -5.8064 17.0320 52.6957 -Times_New_Roman.ttf 53 < 30.8172 29.1949 77 , 30.4334 8.5769 14.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 78 I -4.7269 16.7540 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 79 ° -5.3717 17.5847 17.5847 -Times_New_Roman.ttf 53 < 30.8172 29.1949 80 K -4.1776 41.1680 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 81 H -4.3311 40.9305 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 82 q 7.5205 26.9520 39.8250 -Times_New_Roman.ttf 53 < 30.8172 29.1949 83 & -5.4379 41.3566 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 84 ’ -5.4149 8.5769 14.0000 -Times_New_Roman.ttf 53 < 30.8172 29.1949 85 [ -4.7673 12.6569 51.2203 -Times_New_Roman.ttf 53 < 30.8172 29.1949 86 - 18.6926 15.1949 5.2070 -Times_New_Roman.ttf 53 < 30.8172 29.1949 87 Y -4.4536 41.7612 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 88 Q -5.6845 37.9463 51.1285 -Times_New_Roman.ttf 53 < 30.8172 29.1949 89 " -5.6998 14.9789 16.3898 -Times_New_Roman.ttf 53 < 30.8172 29.1949 90 ! -5.5505 5.2070 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 91 x 8.6300 28.4678 25.9731 -Times_New_Roman.ttf 53 < 30.8172 29.1949 92 ) -5.9044 15.8383 52.6957 -Times_New_Roman.ttf 53 < 30.8172 29.1949 93 = 9.1882 30.1750 12.0135 -Times_New_Roman.ttf 53 < 30.8172 29.1949 94 + -0.2119 30.3898 30.3898 -Times_New_Roman.ttf 53 < 30.8172 29.1949 95 X -4.1344 42.0000 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 96 » 7.3326 24.9093 27.1680 -Times_New_Roman.ttf 53 < 30.8172 29.1949 97 ' -5.9200 5.2070 16.3898 -Times_New_Roman.ttf 53 < 30.8172 29.1949 98 ¢ -3.0524 21.9610 47.5712 -Times_New_Roman.ttf 53 < 30.8172 29.1949 99 Z -4.2690 33.9746 38.9668 -Times_New_Roman.ttf 53 < 30.8172 29.1949 100 > -0.0633 30.8172 29.1949 -Times_New_Roman.ttf 53 < 30.8172 29.1949 101 ® -5.7146 40.3777 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 102 © -5.5102 40.3777 41.3566 -Times_New_Roman.ttf 53 < 30.8172 29.1949 103 ] -5.1653 12.6569 51.2203 -Times_New_Roman.ttf 53 < 30.8172 29.1949 104 é -5.0869 22.1496 41.0199 -Times_New_Roman.ttf 53 < 30.8172 29.1949 105 z 8.5401 23.5833 25.9731 -Times_New_Roman.ttf 53 < 30.8172 29.1949 106 _ 44.6188 30.0269 2.3898 -Times_New_Roman.ttf 53 < 30.8172 29.1949 107 ¥ -4.1826 31.4941 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 1 t 4.4419 16.5784 35.7450 -Times_New_Roman.ttf 54 4 25.4620 39.1149 2 h -1.9121 28.4261 40.8051 -Times_New_Roman.ttf 54 4 25.4620 39.1149 3 a 11.8872 24.3234 28.3630 -Times_New_Roman.ttf 54 4 25.4620 39.1149 4 n 11.8364 28.4261 27.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 5 P 0.4869 30.0702 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 6 o 12.2905 25.1828 28.3630 -Times_New_Roman.ttf 54 4 25.4620 39.1149 7 e 12.0386 22.1496 28.3630 -Times_New_Roman.ttf 54 4 25.4757 39.1026 8 : 11.8330 5.2134 28.3500 -Times_New_Roman.ttf 54 4 25.4620 39.1149 9 r 11.9872 19.2070 27.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 10 l -1.6161 13.2312 40.8051 -Times_New_Roman.ttf 54 4 25.4620 39.1149 11 i -2.1479 13.2312 40.8051 -Times_New_Roman.ttf 54 4 25.4757 39.1026 12 1 0.0249 15.9913 39.1026 -Times_New_Roman.ttf 54 4 25.4757 39.1026 13 | -1.3685 2.3814 53.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 14 N 0.1010 43.0064 40.1617 -Times_New_Roman.ttf 54 4 25.4620 39.1149 15 f -1.6339 23.6237 40.8051 -Times_New_Roman.ttf 54 4 25.4620 39.1149 16 g 12.1141 26.7407 39.8250 -Times_New_Roman.ttf 54 4 25.4620 39.1149 17 d -1.8593 27.3566 42.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 18 W 0.2047 55.7208 40.1617 -Times_New_Roman.ttf 54 4 25.4620 39.1149 19 s 11.9959 17.7329 28.3630 -Times_New_Roman.ttf 54 4 25.4620 39.1149 20 c 12.0224 22.1496 28.3630 -Times_New_Roman.ttf 54 4 25.4620 39.1149 21 u 12.9714 28.6422 27.1680 -Times_New_Roman.ttf 54 4 25.4757 39.1026 22 3 -0.0083 21.3876 39.1026 -Times_New_Roman.ttf 54 4 25.4757 39.1026 23 ~ 19.8027 29.8907 7.5948 -Times_New_Roman.ttf 54 4 25.4757 39.1026 24 # -1.7924 26.1769 40.8093 -Times_New_Roman.ttf 54 4 25.4620 39.1149 25 O -1.2941 37.9463 41.3566 -Times_New_Roman.ttf 54 4 25.4757 39.1026 26 ` -0.1622 8.2536 9.4443 -Times_New_Roman.ttf 54 4 25.4757 39.1026 27 @ -1.5672 49.5948 54.8093 -Times_New_Roman.ttf 54 4 25.4620 39.1149 28 F 0.4043 29.5579 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 29 S -1.1814 24.9668 41.5452 -Times_New_Roman.ttf 54 4 25.4620 39.1149 30 p 12.1002 26.9520 39.8250 -Times_New_Roman.ttf 54 4 25.4757 39.1026 31 “ -1.0409 21.7123 14.0000 -Times_New_Roman.ttf 54 4 25.4757 39.1026 32 % -0.8209 46.5375 41.3411 -Times_New_Roman.ttf 54 4 25.4757 39.1026 33 £ -0.1672 26.1504 40.2933 -Times_New_Roman.ttf 54 4 25.4757 39.1026 34 . 34.8173 5.2134 5.2134 -Times_New_Roman.ttf 54 4 25.4757 39.1026 35 2 0.1382 25.4757 39.1026 -Times_New_Roman.ttf 54 4 25.4757 39.1026 36 5 -0.0411 22.0453 38.9597 -Times_New_Roman.ttf 54 4 25.4620 39.1149 37 m 11.9273 43.6210 27.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 38 V -0.0027 42.2148 40.1617 -Times_New_Roman.ttf 54 4 25.4757 39.1026 39 6 -0.2799 24.6350 39.1026 -Times_New_Roman.ttf 54 4 25.4620 39.1149 40 w 12.7431 42.0012 27.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 41 T 0.3433 32.3248 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 42 M 0.3389 50.8363 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 43 G -1.5197 40.3777 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 44 b -1.5628 26.9520 42.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 45 9 -0.0586 24.2671 39.1149 -Times_New_Roman.ttf 54 4 25.4620 39.1149 46 ; 12.1319 8.5769 37.1560 -Times_New_Roman.ttf 54 4 25.4620 39.1149 47 D 0.2427 39.5054 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 48 L -0.2690 33.1439 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 49 y 13.1889 29.1112 38.6301 -Times_New_Roman.ttf 54 4 25.4620 39.1149 50 ‘ -1.3018 8.5769 14.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 51 \ -1.7772 16.8851 42.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 52 R 0.1857 39.5470 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 53 < 4.6439 30.8172 29.1949 -Times_New_Roman.ttf 54 4 25.4620 39.1149 54 4 -0.2177 25.4620 39.1149 -Times_New_Roman.ttf 54 4 25.4620 39.1149 55 8 -0.0396 22.7514 39.1149 -Times_New_Roman.ttf 54 4 25.4620 39.1149 56 0 -0.1143 24.6301 39.1149 -Times_New_Roman.ttf 54 4 25.4620 39.1149 57 A -0.7359 42.0000 40.1617 -Times_New_Roman.ttf 54 4 25.4620 39.1149 58 E -0.0960 34.1502 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 59 B 0.1830 34.7661 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 60 v 13.3926 29.7477 27.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 61 k -1.9654 28.5111 40.8051 -Times_New_Roman.ttf 54 4 25.4620 39.1149 62 J -0.1142 20.9143 40.1617 -Times_New_Roman.ttf 54 4 25.4620 39.1149 63 U 0.1481 40.9807 40.1617 -Times_New_Roman.ttf 54 4 25.4620 39.1149 64 j -2.1331 16.0484 53.4620 -Times_New_Roman.ttf 54 4 25.4620 39.1149 65 ( -1.4229 15.8383 52.6957 -Times_New_Roman.ttf 54 4 25.4620 39.1149 66 7 0.1025 25.4883 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 67 § -0.2611 20.6180 50.9240 -Times_New_Roman.ttf 54 4 25.4620 39.1149 68 $ -2.8172 23.6237 45.6650 -Times_New_Roman.ttf 54 4 25.4620 39.1149 69 € -0.2546 29.1949 39.1149 -Times_New_Roman.ttf 54 4 25.4620 39.1149 70 / -1.4783 17.5847 42.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 71 C -1.2029 34.5501 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 72 * -1.6498 20.0652 24.4140 -Times_New_Roman.ttf 54 4 25.4620 39.1149 73 ” -1.0186 21.5302 14.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 74 ? -1.1697 19.9342 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 75 { -1.6601 17.0320 52.6957 -Times_New_Roman.ttf 54 4 25.4620 39.1149 76 } -1.0846 17.0320 52.6957 -Times_New_Roman.ttf 54 4 25.4620 39.1149 77 , 35.1826 8.5769 14.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 78 I 0.1750 16.7540 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 79 ° -1.0892 17.5847 17.5847 -Times_New_Roman.ttf 54 4 25.4620 39.1149 80 K 0.2516 41.1680 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 81 H -0.1265 40.9305 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 82 q 11.9026 26.9520 39.8250 -Times_New_Roman.ttf 54 4 25.4620 39.1149 83 & -1.0468 41.3566 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 84 ’ -0.9891 8.5769 14.0000 -Times_New_Roman.ttf 54 4 25.4620 39.1149 85 [ -0.6222 12.6569 51.2203 -Times_New_Roman.ttf 54 4 25.4620 39.1149 86 - 22.9080 15.1949 5.2070 -Times_New_Roman.ttf 54 4 25.4620 39.1149 87 Y 0.0012 41.7612 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 88 Q -1.0569 37.9463 51.1285 -Times_New_Roman.ttf 54 4 25.4620 39.1149 89 " -0.8339 14.9789 16.3898 -Times_New_Roman.ttf 54 4 25.4620 39.1149 90 ! -1.1265 5.2070 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 91 x 13.1019 28.4678 25.9731 -Times_New_Roman.ttf 54 4 25.4620 39.1149 92 ) -1.0754 15.8383 52.6957 -Times_New_Roman.ttf 54 4 25.4620 39.1149 93 = 13.4891 30.1750 12.0135 -Times_New_Roman.ttf 54 4 25.4620 39.1149 94 + 4.3101 30.3898 30.3898 -Times_New_Roman.ttf 54 4 25.4620 39.1149 95 X 0.0539 42.0000 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 96 » 11.8619 24.9093 27.1680 -Times_New_Roman.ttf 54 4 25.4620 39.1149 97 ' -1.0486 5.2070 16.3898 -Times_New_Roman.ttf 54 4 25.4620 39.1149 98 ¢ 1.4586 21.9610 47.5712 -Times_New_Roman.ttf 54 4 25.4620 39.1149 99 Z 0.0718 33.9746 38.9668 -Times_New_Roman.ttf 54 4 25.4620 39.1149 100 > 4.3416 30.8172 29.1949 -Times_New_Roman.ttf 54 4 25.4620 39.1149 101 ® -1.1385 40.3777 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 102 © -0.8834 40.3777 41.3566 -Times_New_Roman.ttf 54 4 25.4620 39.1149 103 ] -0.5115 12.6569 51.2203 -Times_New_Roman.ttf 54 4 25.4620 39.1149 104 é -0.9334 22.1496 41.0199 -Times_New_Roman.ttf 54 4 25.4620 39.1149 105 z 13.2341 23.5833 25.9731 -Times_New_Roman.ttf 54 4 25.4620 39.1149 106 _ 49.3427 30.0269 2.3898 -Times_New_Roman.ttf 54 4 25.4620 39.1149 107 ¥ 0.2741 31.4941 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 1 t 4.6188 16.5784 35.7450 -Times_New_Roman.ttf 55 8 22.7514 39.1149 2 h -1.5787 28.4261 40.8051 -Times_New_Roman.ttf 55 8 22.7514 39.1149 3 a 11.7191 24.3234 28.3630 -Times_New_Roman.ttf 55 8 22.7514 39.1149 4 n 12.1141 28.4261 27.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 5 P 0.0582 30.0702 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 6 o 12.0564 25.1828 28.3630 -Times_New_Roman.ttf 55 8 22.7514 39.1149 7 e 11.9310 22.1496 28.3630 -Times_New_Roman.ttf 55 8 22.7465 39.1026 8 : 12.1046 5.2134 28.3500 -Times_New_Roman.ttf 55 8 22.7514 39.1149 9 r 11.9012 19.2070 27.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 10 l -1.5393 13.2312 40.8051 -Times_New_Roman.ttf 55 8 22.7514 39.1149 11 i -1.6862 13.2312 40.8051 -Times_New_Roman.ttf 55 8 22.7465 39.1026 12 1 -0.2460 15.9913 39.1026 -Times_New_Roman.ttf 55 8 22.7465 39.1026 13 | -1.7479 2.3814 53.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 14 N 0.3530 43.0064 40.1617 -Times_New_Roman.ttf 55 8 22.7514 39.1149 15 f -1.4301 23.6237 40.8051 -Times_New_Roman.ttf 55 8 22.7514 39.1149 16 g 11.9667 26.7407 39.8250 -Times_New_Roman.ttf 55 8 22.7514 39.1149 17 d -1.6743 27.3566 42.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 18 W 0.0330 55.7208 40.1617 -Times_New_Roman.ttf 55 8 22.7514 39.1149 19 s 11.8432 17.7329 28.3630 -Times_New_Roman.ttf 55 8 22.7514 39.1149 20 c 12.1674 22.1496 28.3630 -Times_New_Roman.ttf 55 8 22.7514 39.1149 21 u 13.1652 28.6422 27.1680 -Times_New_Roman.ttf 55 8 22.7465 39.1026 22 3 0.0555 21.3876 39.1026 -Times_New_Roman.ttf 55 8 22.7465 39.1026 23 ~ 19.4892 29.8907 7.5948 -Times_New_Roman.ttf 55 8 22.7465 39.1026 24 # -1.7354 26.1769 40.8093 -Times_New_Roman.ttf 55 8 22.7514 39.1149 25 O -1.0155 37.9463 41.3566 -Times_New_Roman.ttf 55 8 22.7465 39.1026 26 ` -0.1951 8.2536 9.4443 -Times_New_Roman.ttf 55 8 22.7465 39.1026 27 @ -1.7446 49.5948 54.8093 -Times_New_Roman.ttf 55 8 22.7514 39.1149 28 F 0.2399 29.5579 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 29 S -1.3343 24.9668 41.5452 -Times_New_Roman.ttf 55 8 22.7514 39.1149 30 p 12.1261 26.9520 39.8250 -Times_New_Roman.ttf 55 8 22.7465 39.1026 31 “ -1.1725 21.7123 14.0000 -Times_New_Roman.ttf 55 8 22.7465 39.1026 32 % -1.1637 46.5375 41.3411 -Times_New_Roman.ttf 55 8 22.7465 39.1026 33 £ 0.0389 26.1504 40.2933 -Times_New_Roman.ttf 55 8 22.7465 39.1026 34 . 35.2138 5.2134 5.2134 -Times_New_Roman.ttf 55 8 22.7465 39.1026 35 2 -0.0027 25.4757 39.1026 -Times_New_Roman.ttf 55 8 22.7465 39.1026 36 5 0.0582 22.0453 38.9597 -Times_New_Roman.ttf 55 8 22.7514 39.1149 37 m 11.7470 43.6210 27.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 38 V 0.1437 42.2148 40.1617 -Times_New_Roman.ttf 55 8 22.7465 39.1026 39 6 0.0658 24.6350 39.1026 -Times_New_Roman.ttf 55 8 22.7514 39.1149 40 w 13.0508 42.0012 27.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 41 T 0.0817 32.3248 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 42 M 0.4494 50.8363 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 43 G -1.4603 40.3777 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 44 b -1.5734 26.9520 42.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 45 9 0.0360 24.2671 39.1149 -Times_New_Roman.ttf 55 8 22.7514 39.1149 46 ; 11.8551 8.5769 37.1560 -Times_New_Roman.ttf 55 8 22.7514 39.1149 47 D -0.1367 39.5054 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 48 L -0.3985 33.1439 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 49 y 13.0500 29.1112 38.6301 -Times_New_Roman.ttf 55 8 22.7514 39.1149 50 ‘ -0.9996 8.5769 14.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 51 \ -1.8262 16.8851 42.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 52 R -0.0116 39.5470 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 53 < 4.3659 30.8172 29.1949 -Times_New_Roman.ttf 55 8 22.7514 39.1149 54 4 -0.0659 25.4620 39.1149 -Times_New_Roman.ttf 55 8 22.7514 39.1149 55 8 0.2647 22.7514 39.1149 -Times_New_Roman.ttf 55 8 22.7514 39.1149 56 0 -0.0821 24.6301 39.1149 -Times_New_Roman.ttf 55 8 22.7514 39.1149 57 A -1.0660 42.0000 40.1617 -Times_New_Roman.ttf 55 8 22.7514 39.1149 58 E -0.0994 34.1502 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 59 B 0.3816 34.7661 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 60 v 13.0285 29.7477 27.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 61 k -2.0749 28.5111 40.8051 -Times_New_Roman.ttf 55 8 22.7514 39.1149 62 J 0.2816 20.9143 40.1617 -Times_New_Roman.ttf 55 8 22.7514 39.1149 63 U 0.0593 40.9807 40.1617 -Times_New_Roman.ttf 55 8 22.7514 39.1149 64 j -1.7618 16.0484 53.4620 -Times_New_Roman.ttf 55 8 22.7514 39.1149 65 ( -1.2196 15.8383 52.6957 -Times_New_Roman.ttf 55 8 22.7514 39.1149 66 7 0.0718 25.4883 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 67 § -0.2021 20.6180 50.9240 -Times_New_Roman.ttf 55 8 22.7514 39.1149 68 $ -2.6111 23.6237 45.6650 -Times_New_Roman.ttf 55 8 22.7514 39.1149 69 € 0.2910 29.1949 39.1149 -Times_New_Roman.ttf 55 8 22.7514 39.1149 70 / -1.8603 17.5847 42.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 71 C -0.9339 34.5501 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 72 * -1.6052 20.0652 24.4140 -Times_New_Roman.ttf 55 8 22.7514 39.1149 73 ” -1.0439 21.5302 14.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 74 ? -1.2943 19.9342 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 75 { -1.4189 17.0320 52.6957 -Times_New_Roman.ttf 55 8 22.7514 39.1149 76 } -1.3863 17.0320 52.6957 -Times_New_Roman.ttf 55 8 22.7514 39.1149 77 , 35.1190 8.5769 14.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 78 I 0.0208 16.7540 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 79 ° -1.0583 17.5847 17.5847 -Times_New_Roman.ttf 55 8 22.7514 39.1149 80 K 0.0104 41.1680 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 81 H -0.0238 40.9305 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 82 q 11.7738 26.9520 39.8250 -Times_New_Roman.ttf 55 8 22.7514 39.1149 83 & -0.7114 41.3566 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 84 ’ -0.9133 8.5769 14.0000 -Times_New_Roman.ttf 55 8 22.7514 39.1149 85 [ -0.4872 12.6569 51.2203 -Times_New_Roman.ttf 55 8 22.7514 39.1149 86 - 22.9008 15.1949 5.2070 -Times_New_Roman.ttf 55 8 22.7514 39.1149 87 Y 0.3308 41.7612 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 88 Q -1.1317 37.9463 51.1285 -Times_New_Roman.ttf 55 8 22.7514 39.1149 89 " -1.1784 14.9789 16.3898 -Times_New_Roman.ttf 55 8 22.7514 39.1149 90 ! -1.3548 5.2070 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 91 x 13.1429 28.4678 25.9731 -Times_New_Roman.ttf 55 8 22.7514 39.1149 92 ) -1.3373 15.8383 52.6957 -Times_New_Roman.ttf 55 8 22.7514 39.1149 93 = 13.2805 30.1750 12.0135 -Times_New_Roman.ttf 55 8 22.7514 39.1149 94 + 4.5340 30.3898 30.3898 -Times_New_Roman.ttf 55 8 22.7514 39.1149 95 X 0.1841 42.0000 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 96 » 12.0459 24.9093 27.1680 -Times_New_Roman.ttf 55 8 22.7514 39.1149 97 ' -0.9202 5.2070 16.3898 -Times_New_Roman.ttf 55 8 22.7514 39.1149 98 ¢ 1.6320 21.9610 47.5712 -Times_New_Roman.ttf 55 8 22.7514 39.1149 99 Z 0.1111 33.9746 38.9668 -Times_New_Roman.ttf 55 8 22.7514 39.1149 100 > 4.4451 30.8172 29.1949 -Times_New_Roman.ttf 55 8 22.7514 39.1149 101 ® -0.9060 40.3777 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 102 © -1.2774 40.3777 41.3566 -Times_New_Roman.ttf 55 8 22.7514 39.1149 103 ] -0.5568 12.6569 51.2203 -Times_New_Roman.ttf 55 8 22.7514 39.1149 104 é -0.6241 22.1496 41.0199 -Times_New_Roman.ttf 55 8 22.7514 39.1149 105 z 13.1538 23.5833 25.9731 -Times_New_Roman.ttf 55 8 22.7514 39.1149 106 _ 49.6382 30.0269 2.3898 -Times_New_Roman.ttf 55 8 22.7514 39.1149 107 ¥ 0.0742 31.4941 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 1 t 4.6904 16.5784 35.7450 -Times_New_Roman.ttf 56 0 24.6301 39.1149 2 h -1.7261 28.4261 40.8051 -Times_New_Roman.ttf 56 0 24.6301 39.1149 3 a 11.9954 24.3234 28.3630 -Times_New_Roman.ttf 56 0 24.6301 39.1149 4 n 11.9954 28.4261 27.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 5 P 0.0262 30.0702 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 6 o 11.8206 25.1828 28.3630 -Times_New_Roman.ttf 56 0 24.6301 39.1149 7 e 12.1308 22.1496 28.3630 -Times_New_Roman.ttf 56 0 24.6350 39.1026 8 : 12.1742 5.2134 28.3500 -Times_New_Roman.ttf 56 0 24.6301 39.1149 9 r 11.7249 19.2070 27.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 10 l -1.8075 13.2312 40.8051 -Times_New_Roman.ttf 56 0 24.6301 39.1149 11 i -1.5229 13.2312 40.8051 -Times_New_Roman.ttf 56 0 24.6350 39.1026 12 1 -0.2025 15.9913 39.1026 -Times_New_Roman.ttf 56 0 24.6350 39.1026 13 | -1.8952 2.3814 53.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 14 N 0.0116 43.0064 40.1617 -Times_New_Roman.ttf 56 0 24.6301 39.1149 15 f -2.1273 23.6237 40.8051 -Times_New_Roman.ttf 56 0 24.6301 39.1149 16 g 12.2150 26.7407 39.8250 -Times_New_Roman.ttf 56 0 24.6301 39.1149 17 d -1.7631 27.3566 42.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 18 W 0.2080 55.7208 40.1617 -Times_New_Roman.ttf 56 0 24.6301 39.1149 19 s 11.6759 17.7329 28.3630 -Times_New_Roman.ttf 56 0 24.6301 39.1149 20 c 12.0938 22.1496 28.3630 -Times_New_Roman.ttf 56 0 24.6301 39.1149 21 u 13.4445 28.6422 27.1680 -Times_New_Roman.ttf 56 0 24.6350 39.1026 22 3 -0.2131 21.3876 39.1026 -Times_New_Roman.ttf 56 0 24.6350 39.1026 23 ~ 19.4822 29.8907 7.5948 -Times_New_Roman.ttf 56 0 24.6350 39.1026 24 # -1.5538 26.1769 40.8093 -Times_New_Roman.ttf 56 0 24.6301 39.1149 25 O -0.8665 37.9463 41.3566 -Times_New_Roman.ttf 56 0 24.6350 39.1026 26 ` -0.1941 8.2536 9.4443 -Times_New_Roman.ttf 56 0 24.6350 39.1026 27 @ -1.5774 49.5948 54.8093 -Times_New_Roman.ttf 56 0 24.6301 39.1149 28 F -0.0205 29.5579 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 29 S -1.2400 24.9668 41.5452 -Times_New_Roman.ttf 56 0 24.6301 39.1149 30 p 12.0243 26.9520 39.8250 -Times_New_Roman.ttf 56 0 24.6350 39.1026 31 “ -1.4207 21.7123 14.0000 -Times_New_Roman.ttf 56 0 24.6350 39.1026 32 % -1.1252 46.5375 41.3411 -Times_New_Roman.ttf 56 0 24.6350 39.1026 33 £ 0.1385 26.1504 40.2933 -Times_New_Roman.ttf 56 0 24.6350 39.1026 34 . 34.8530 5.2134 5.2134 -Times_New_Roman.ttf 56 0 24.6350 39.1026 35 2 -0.1409 25.4757 39.1026 -Times_New_Roman.ttf 56 0 24.6350 39.1026 36 5 0.1456 22.0453 38.9597 -Times_New_Roman.ttf 56 0 24.6301 39.1149 37 m 11.8753 43.6210 27.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 38 V 0.0074 42.2148 40.1617 -Times_New_Roman.ttf 56 0 24.6350 39.1026 39 6 0.0510 24.6350 39.1026 -Times_New_Roman.ttf 56 0 24.6301 39.1149 40 w 13.2662 42.0012 27.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 41 T 0.0212 32.3248 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 42 M 0.1554 50.8363 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 43 G -1.1346 40.3777 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 44 b -1.5513 26.9520 42.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 45 9 -0.1673 24.2671 39.1149 -Times_New_Roman.ttf 56 0 24.6301 39.1149 46 ; 12.0977 8.5769 37.1560 -Times_New_Roman.ttf 56 0 24.6301 39.1149 47 D 0.0991 39.5054 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 48 L 0.3269 33.1439 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 49 y 13.2496 29.1112 38.6301 -Times_New_Roman.ttf 56 0 24.6301 39.1149 50 ‘ -1.0025 8.5769 14.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 51 \ -1.7863 16.8851 42.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 52 R 0.0651 39.5470 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 53 < 4.5488 30.8172 29.1949 -Times_New_Roman.ttf 56 0 24.6301 39.1149 54 4 0.1748 25.4620 39.1149 -Times_New_Roman.ttf 56 0 24.6301 39.1149 55 8 0.1628 22.7514 39.1149 -Times_New_Roman.ttf 56 0 24.6301 39.1149 56 0 -0.2292 24.6301 39.1149 -Times_New_Roman.ttf 56 0 24.6301 39.1149 57 A -0.9402 42.0000 40.1617 -Times_New_Roman.ttf 56 0 24.6301 39.1149 58 E 0.0982 34.1502 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 59 B 0.2943 34.7661 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 60 v 13.2293 29.7477 27.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 61 k -1.4105 28.5111 40.8051 -Times_New_Roman.ttf 56 0 24.6301 39.1149 62 J -0.0090 20.9143 40.1617 -Times_New_Roman.ttf 56 0 24.6301 39.1149 63 U 0.1972 40.9807 40.1617 -Times_New_Roman.ttf 56 0 24.6301 39.1149 64 j -1.8875 16.0484 53.4620 -Times_New_Roman.ttf 56 0 24.6301 39.1149 65 ( -1.1000 15.8383 52.6957 -Times_New_Roman.ttf 56 0 24.6301 39.1149 66 7 0.2237 25.4883 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 67 § -0.5493 20.6180 50.9240 -Times_New_Roman.ttf 56 0 24.6301 39.1149 68 $ -2.6859 23.6237 45.6650 -Times_New_Roman.ttf 56 0 24.6301 39.1149 69 € 0.3473 29.1949 39.1149 -Times_New_Roman.ttf 56 0 24.6301 39.1149 70 / -1.5466 17.5847 42.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 71 C -0.8065 34.5501 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 72 * -1.7626 20.0652 24.4140 -Times_New_Roman.ttf 56 0 24.6301 39.1149 73 ” -1.0155 21.5302 14.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 74 ? -0.9285 19.9342 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 75 { -1.4661 17.0320 52.6957 -Times_New_Roman.ttf 56 0 24.6301 39.1149 76 } -1.3671 17.0320 52.6957 -Times_New_Roman.ttf 56 0 24.6301 39.1149 77 , 35.0130 8.5769 14.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 78 I 0.1481 16.7540 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 79 ° -0.9558 17.5847 17.5847 -Times_New_Roman.ttf 56 0 24.6301 39.1149 80 K 0.2039 41.1680 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 81 H 0.3321 40.9305 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 82 q 11.7944 26.9520 39.8250 -Times_New_Roman.ttf 56 0 24.6301 39.1149 83 & -0.8949 41.3566 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 84 ’ -0.9266 8.5769 14.0000 -Times_New_Roman.ttf 56 0 24.6301 39.1149 85 [ -0.7705 12.6569 51.2203 -Times_New_Roman.ttf 56 0 24.6301 39.1149 86 - 22.9364 15.1949 5.2070 -Times_New_Roman.ttf 56 0 24.6301 39.1149 87 Y -0.0249 41.7612 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 88 Q -1.2140 37.9463 51.1285 -Times_New_Roman.ttf 56 0 24.6301 39.1149 89 " -1.3135 14.9789 16.3898 -Times_New_Roman.ttf 56 0 24.6301 39.1149 90 ! -1.0515 5.2070 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 91 x 12.7910 28.4678 25.9731 -Times_New_Roman.ttf 56 0 24.6301 39.1149 92 ) -1.3200 15.8383 52.6957 -Times_New_Roman.ttf 56 0 24.6301 39.1149 93 = 13.4500 30.1750 12.0135 -Times_New_Roman.ttf 56 0 24.6301 39.1149 94 + 4.5884 30.3898 30.3898 -Times_New_Roman.ttf 56 0 24.6301 39.1149 95 X 0.2683 42.0000 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 96 » 12.1866 24.9093 27.1680 -Times_New_Roman.ttf 56 0 24.6301 39.1149 97 ' -1.2177 5.2070 16.3898 -Times_New_Roman.ttf 56 0 24.6301 39.1149 98 ¢ 1.6254 21.9610 47.5712 -Times_New_Roman.ttf 56 0 24.6301 39.1149 99 Z -0.0210 33.9746 38.9668 -Times_New_Roman.ttf 56 0 24.6301 39.1149 100 > 4.6283 30.8172 29.1949 -Times_New_Roman.ttf 56 0 24.6301 39.1149 101 ® -0.9199 40.3777 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 102 © -0.9829 40.3777 41.3566 -Times_New_Roman.ttf 56 0 24.6301 39.1149 103 ] -0.5987 12.6569 51.2203 -Times_New_Roman.ttf 56 0 24.6301 39.1149 104 é -0.6003 22.1496 41.0199 -Times_New_Roman.ttf 56 0 24.6301 39.1149 105 z 12.8608 23.5833 25.9731 -Times_New_Roman.ttf 56 0 24.6301 39.1149 106 _ 49.4690 30.0269 2.3898 -Times_New_Roman.ttf 56 0 24.6301 39.1149 107 ¥ 0.3235 31.4941 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 1 t 5.9294 16.5784 35.7450 -Times_New_Roman.ttf 57 A 42.0000 40.1617 2 h -0.7276 28.4261 40.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 3 a 12.7813 24.3234 28.3630 -Times_New_Roman.ttf 57 A 42.0000 40.1617 4 n 13.0041 28.4261 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 5 P 1.1285 30.0702 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 6 o 13.0249 25.1828 28.3630 -Times_New_Roman.ttf 57 A 42.0000 40.1617 7 e 12.7331 22.1496 28.3630 -Times_New_Roman.ttf 57 A 42.0000 40.1617 8 : 12.8519 5.2070 28.3630 -Times_New_Roman.ttf 57 A 42.0000 40.1617 9 r 12.8707 19.2070 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 10 l -0.4257 13.2312 40.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 11 i -0.6558 13.2312 40.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 12 1 1.2265 15.9852 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 13 | -0.4876 2.3898 53.1828 -Times_New_Roman.ttf 57 A 42.0000 40.1617 14 N 1.3040 43.0064 40.1617 -Times_New_Roman.ttf 57 A 42.0000 40.1617 15 f -0.5436 23.6237 40.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 16 g 12.9192 26.7407 39.8250 -Times_New_Roman.ttf 57 A 42.0000 40.1617 17 d -0.4862 27.3566 42.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 18 W 1.4987 55.7208 40.1617 -Times_New_Roman.ttf 57 A 42.0000 40.1617 19 s 13.1651 17.7329 28.3630 -Times_New_Roman.ttf 57 A 42.0000 40.1617 20 c 12.7441 22.1496 28.3630 -Times_New_Roman.ttf 57 A 42.0000 40.1617 21 u 14.3098 28.6422 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 22 3 1.1690 21.3820 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 23 ~ 20.4296 29.9208 7.5968 -Times_New_Roman.ttf 57 A 42.0000 40.1617 24 # -0.8682 26.1892 40.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 25 O -0.0414 37.9463 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 26 ` 0.8921 8.2402 9.4352 -Times_New_Roman.ttf 57 A 42.0000 40.1617 27 @ -0.4498 49.5968 54.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 28 F 1.2111 29.5579 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 29 S 0.0780 24.9668 41.5452 -Times_New_Roman.ttf 57 A 42.0000 40.1617 30 p 12.8634 26.9520 39.8250 -Times_New_Roman.ttf 57 A 42.0000 40.1617 31 “ 0.1066 21.7187 14.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 32 % 0.0899 46.5061 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 33 £ 1.3572 26.1617 40.3098 -Times_New_Roman.ttf 57 A 42.0000 40.1617 34 . 36.1909 5.2070 5.2070 -Times_New_Roman.ttf 57 A 42.0000 40.1617 35 2 0.9277 25.4620 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 36 5 1.2958 22.0242 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 37 m 13.1138 43.6210 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 38 V 1.0023 42.2148 40.1617 -Times_New_Roman.ttf 57 A 42.0000 40.1617 39 6 0.9655 24.6301 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 40 w 14.1799 42.0012 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 41 T 0.7811 32.3248 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 42 M 0.9838 50.8363 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 43 G -0.0240 40.3777 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 44 b -0.6901 26.9520 42.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 45 9 0.4981 24.2671 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 46 ; 13.2823 8.5769 37.1560 -Times_New_Roman.ttf 57 A 42.0000 40.1617 47 D 1.5058 39.5054 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 48 L 1.1483 33.1439 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 49 y 14.2677 29.1112 38.6301 -Times_New_Roman.ttf 57 A 42.0000 40.1617 50 ‘ -0.0563 8.5769 14.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 51 \ -0.5796 16.8851 42.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 52 R 1.1569 39.5470 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 53 < 5.5596 30.8172 29.1949 -Times_New_Roman.ttf 57 A 42.0000 40.1617 54 4 0.9141 25.4620 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 55 8 1.2792 22.7514 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 56 0 0.7594 24.6301 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 57 A 0.0377 42.0000 40.1617 -Times_New_Roman.ttf 57 A 42.0000 40.1617 58 E 0.9200 34.1502 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 59 B 1.0276 34.7661 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 60 v 14.3253 29.7477 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 61 k -1.0769 28.5111 40.8051 -Times_New_Roman.ttf 57 A 42.0000 40.1617 62 J 1.2718 20.9143 40.1617 -Times_New_Roman.ttf 57 A 42.0000 40.1617 63 U 0.8749 40.9807 40.1617 -Times_New_Roman.ttf 57 A 42.0000 40.1617 64 j -0.4646 16.0484 53.4620 -Times_New_Roman.ttf 57 A 42.0000 40.1617 65 ( -0.1986 15.8383 52.6957 -Times_New_Roman.ttf 57 A 42.0000 40.1617 66 7 1.1243 25.4883 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 67 § 0.8737 20.6180 50.9240 -Times_New_Roman.ttf 57 A 42.0000 40.1617 68 $ -1.9262 23.6237 45.6650 -Times_New_Roman.ttf 57 A 42.0000 40.1617 69 € 0.7080 29.1949 39.1149 -Times_New_Roman.ttf 57 A 42.0000 40.1617 70 / -0.3060 17.5847 42.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 71 C 0.0105 34.5501 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 72 * -0.5300 20.0652 24.4140 -Times_New_Roman.ttf 57 A 42.0000 40.1617 73 ” 0.2387 21.5302 14.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 74 ? 0.0998 19.9342 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 75 { -0.0969 17.0320 52.6957 -Times_New_Roman.ttf 57 A 42.0000 40.1617 76 } -0.4313 17.0320 52.6957 -Times_New_Roman.ttf 57 A 42.0000 40.1617 77 , 35.9161 8.5769 14.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 78 I 1.2791 16.7540 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 79 ° -0.1436 17.5847 17.5847 -Times_New_Roman.ttf 57 A 42.0000 40.1617 80 K 1.0316 41.1680 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 81 H 1.2791 40.9305 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 82 q 12.9022 26.9520 39.8250 -Times_New_Roman.ttf 57 A 42.0000 40.1617 83 & -0.0566 41.3566 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 84 ’ 0.1037 8.5769 14.0000 -Times_New_Roman.ttf 57 A 42.0000 40.1617 85 [ 0.5914 12.6569 51.2203 -Times_New_Roman.ttf 57 A 42.0000 40.1617 86 - 23.7986 15.1949 5.2070 -Times_New_Roman.ttf 57 A 42.0000 40.1617 87 Y 1.1590 41.7612 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 88 Q 0.1048 37.9463 51.1285 -Times_New_Roman.ttf 57 A 42.0000 40.1617 89 " 0.0903 14.9789 16.3898 -Times_New_Roman.ttf 57 A 42.0000 40.1617 90 ! -0.0540 5.2070 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 91 x 14.1356 28.4678 25.9731 -Times_New_Roman.ttf 57 A 42.0000 40.1617 92 ) -0.3627 15.8383 52.6957 -Times_New_Roman.ttf 57 A 42.0000 40.1617 93 = 14.6195 30.1750 12.0135 -Times_New_Roman.ttf 57 A 42.0000 40.1617 94 + 5.5898 30.3898 30.3898 -Times_New_Roman.ttf 57 A 42.0000 40.1617 95 X 1.1597 42.0000 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 96 » 12.9861 24.9093 27.1680 -Times_New_Roman.ttf 57 A 42.0000 40.1617 97 ' 0.0549 5.2070 16.3898 -Times_New_Roman.ttf 57 A 42.0000 40.1617 98 ¢ 2.4610 21.9610 47.5712 -Times_New_Roman.ttf 57 A 42.0000 40.1617 99 Z 1.2819 33.9746 38.9668 -Times_New_Roman.ttf 57 A 42.0000 40.1617 100 > 5.3451 30.8172 29.1949 -Times_New_Roman.ttf 57 A 42.0000 40.1617 101 ® 0.1230 40.3777 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 102 © -0.0519 40.3777 41.3566 -Times_New_Roman.ttf 57 A 42.0000 40.1617 103 ] 0.2690 12.6569 51.2203 -Times_New_Roman.ttf 57 A 42.0000 40.1617 104 é 0.4169 22.1496 41.0199 -Times_New_Roman.ttf 57 A 42.0000 40.1617 105 z 14.1242 23.5833 25.9731 -Times_New_Roman.ttf 57 A 42.0000 40.1617 106 _ 50.3924 30.0269 2.3898 -Times_New_Roman.ttf 57 A 42.0000 40.1617 107 ¥ 1.6788 31.4941 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 1 t 4.4451 16.5784 35.7450 -Times_New_Roman.ttf 58 E 34.1502 38.9668 2 h -1.7764 28.4261 40.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 3 a 11.7921 24.3234 28.3630 -Times_New_Roman.ttf 58 E 34.1502 38.9668 4 n 11.9387 28.4261 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 5 P -0.2522 30.0702 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 6 o 11.6916 25.1828 28.3630 -Times_New_Roman.ttf 58 E 34.1502 38.9668 7 e 11.8996 22.1496 28.3630 -Times_New_Roman.ttf 58 E 34.1502 38.9668 8 : 11.5790 5.2070 28.3630 -Times_New_Roman.ttf 58 E 34.1502 38.9668 9 r 11.4508 19.2070 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 10 l -1.7149 13.2312 40.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 11 i -1.9818 13.2312 40.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 12 1 -0.3480 15.9852 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 13 | -1.9122 2.3898 53.1828 -Times_New_Roman.ttf 58 E 34.1502 38.9668 14 N -0.1211 43.0064 40.1617 -Times_New_Roman.ttf 58 E 34.1502 38.9668 15 f -1.3805 23.6237 40.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 16 g 11.7948 26.7407 39.8250 -Times_New_Roman.ttf 58 E 34.1502 38.9668 17 d -1.9503 27.3566 42.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 18 W 0.0870 55.7208 40.1617 -Times_New_Roman.ttf 58 E 34.1502 38.9668 19 s 11.8459 17.7329 28.3630 -Times_New_Roman.ttf 58 E 34.1502 38.9668 20 c 11.7617 22.1496 28.3630 -Times_New_Roman.ttf 58 E 34.1502 38.9668 21 u 13.0605 28.6422 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 22 3 -0.0661 21.3820 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 23 ~ 19.5674 29.9208 7.5968 -Times_New_Roman.ttf 58 E 34.1502 38.9668 24 # -1.8081 26.1892 40.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 25 O -0.9746 37.9463 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 26 ` -0.1660 8.2402 9.4352 -Times_New_Roman.ttf 58 E 34.1502 38.9668 27 @ -1.7972 49.5968 54.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 28 F -0.0298 29.5579 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 29 S -1.6414 24.9668 41.5452 -Times_New_Roman.ttf 58 E 34.1502 38.9668 30 p 11.6293 26.9520 39.8250 -Times_New_Roman.ttf 58 E 34.1502 38.9668 31 “ -1.2694 21.7187 14.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 32 % -1.4165 46.5061 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 33 £ -0.0982 26.1617 40.3098 -Times_New_Roman.ttf 58 E 34.1502 38.9668 34 . 34.8629 5.2070 5.2070 -Times_New_Roman.ttf 58 E 34.1502 38.9668 35 2 -0.1630 25.4620 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 36 5 0.3051 22.0242 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 37 m 12.0452 43.6210 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 38 V -0.0206 42.2148 40.1617 -Times_New_Roman.ttf 58 E 34.1502 38.9668 39 6 -0.0132 24.6301 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 40 w 13.1307 42.0012 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 41 T -0.3142 32.3248 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 42 M 0.2130 50.8363 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 43 G -1.2069 40.3777 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 44 b -1.7923 26.9520 42.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 45 9 0.0997 24.2671 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 46 ; 11.9308 8.5769 37.1560 -Times_New_Roman.ttf 58 E 34.1502 38.9668 47 D -0.1406 39.5054 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 48 L 0.0866 33.1439 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 49 y 13.2487 29.1112 38.6301 -Times_New_Roman.ttf 58 E 34.1502 38.9668 50 ‘ -0.9518 8.5769 14.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 51 \ -1.8066 16.8851 42.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 52 R 0.0870 39.5470 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 53 < 4.1070 30.8172 29.1949 -Times_New_Roman.ttf 58 E 34.1502 38.9668 54 4 0.0267 25.4620 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 55 8 -0.2831 22.7514 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 56 0 -0.3241 24.6301 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 57 A -1.1186 42.0000 40.1617 -Times_New_Roman.ttf 58 E 34.1502 38.9668 58 E -0.1191 34.1502 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 59 B -0.1941 34.7661 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 60 v 12.7198 29.7477 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 61 k -1.8630 28.5111 40.8051 -Times_New_Roman.ttf 58 E 34.1502 38.9668 62 J -0.0903 20.9143 40.1617 -Times_New_Roman.ttf 58 E 34.1502 38.9668 63 U 0.1269 40.9807 40.1617 -Times_New_Roman.ttf 58 E 34.1502 38.9668 64 j -1.5822 16.0484 53.4620 -Times_New_Roman.ttf 58 E 34.1502 38.9668 65 ( -1.5757 15.8383 52.6957 -Times_New_Roman.ttf 58 E 34.1502 38.9668 66 7 -0.2944 25.4883 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 67 § -0.4434 20.6180 50.9240 -Times_New_Roman.ttf 58 E 34.1502 38.9668 68 $ -3.0672 23.6237 45.6650 -Times_New_Roman.ttf 58 E 34.1502 38.9668 69 € 0.0738 29.1949 39.1149 -Times_New_Roman.ttf 58 E 34.1502 38.9668 70 / -1.9898 17.5847 42.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 71 C -1.5052 34.5501 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 72 * -1.9493 20.0652 24.4140 -Times_New_Roman.ttf 58 E 34.1502 38.9668 73 ” -1.0449 21.5302 14.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 74 ? -1.2939 19.9342 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 75 { -1.4344 17.0320 52.6957 -Times_New_Roman.ttf 58 E 34.1502 38.9668 76 } -1.6780 17.0320 52.6957 -Times_New_Roman.ttf 58 E 34.1502 38.9668 77 , 34.6779 8.5769 14.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 78 I -0.2936 16.7540 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 79 ° -1.3564 17.5847 17.5847 -Times_New_Roman.ttf 58 E 34.1502 38.9668 80 K 0.1277 41.1680 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 81 H 0.1023 40.9305 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 82 q 11.7574 26.9520 39.8250 -Times_New_Roman.ttf 58 E 34.1502 38.9668 83 & -1.0581 41.3566 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 84 ’ -0.9507 8.5769 14.0000 -Times_New_Roman.ttf 58 E 34.1502 38.9668 85 [ -0.4279 12.6569 51.2203 -Times_New_Roman.ttf 58 E 34.1502 38.9668 86 - 22.7320 15.1949 5.2070 -Times_New_Roman.ttf 58 E 34.1502 38.9668 87 Y 0.0399 41.7612 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 88 Q -1.1698 37.9463 51.1285 -Times_New_Roman.ttf 58 E 34.1502 38.9668 89 " -1.4274 14.9789 16.3898 -Times_New_Roman.ttf 58 E 34.1502 38.9668 90 ! -0.9610 5.2070 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 91 x 13.1703 28.4678 25.9731 -Times_New_Roman.ttf 58 E 34.1502 38.9668 92 ) -1.5595 15.8383 52.6957 -Times_New_Roman.ttf 58 E 34.1502 38.9668 93 = 13.5076 30.1750 12.0135 -Times_New_Roman.ttf 58 E 34.1502 38.9668 94 + 4.1740 30.3898 30.3898 -Times_New_Roman.ttf 58 E 34.1502 38.9668 95 X -0.3378 42.0000 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 96 » 11.7976 24.9093 27.1680 -Times_New_Roman.ttf 58 E 34.1502 38.9668 97 ' -1.0258 5.2070 16.3898 -Times_New_Roman.ttf 58 E 34.1502 38.9668 98 ¢ 1.4670 21.9610 47.5712 -Times_New_Roman.ttf 58 E 34.1502 38.9668 99 Z -0.0058 33.9746 38.9668 -Times_New_Roman.ttf 58 E 34.1502 38.9668 100 > 4.2584 30.8172 29.1949 -Times_New_Roman.ttf 58 E 34.1502 38.9668 101 ® -1.2838 40.3777 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 102 © -1.3611 40.3777 41.3566 -Times_New_Roman.ttf 58 E 34.1502 38.9668 103 ] -0.5449 12.6569 51.2203 -Times_New_Roman.ttf 58 E 34.1502 38.9668 104 é -0.7362 22.1496 41.0199 -Times_New_Roman.ttf 58 E 34.1502 38.9668 105 z 13.4179 23.5833 25.9731 -Times_New_Roman.ttf 58 E 34.1502 38.9668 106 _ 49.2498 30.0269 2.3898 -Times_New_Roman.ttf 58 E 34.1502 38.9668 107 ¥ 0.0798 31.4941 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 1 t 4.2476 16.5784 35.7450 -Times_New_Roman.ttf 59 B 34.7661 38.9668 2 h -1.8266 28.4261 40.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 3 a 11.9765 24.3234 28.3630 -Times_New_Roman.ttf 59 B 34.7661 38.9668 4 n 11.7310 28.4261 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 5 P -0.1545 30.0702 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 6 o 11.7027 25.1828 28.3630 -Times_New_Roman.ttf 59 B 34.7661 38.9668 7 e 12.2063 22.1496 28.3630 -Times_New_Roman.ttf 59 B 34.7661 38.9668 8 : 11.8930 5.2070 28.3630 -Times_New_Roman.ttf 59 B 34.7661 38.9668 9 r 11.9423 19.2070 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 10 l -1.8214 13.2312 40.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 11 i -1.8821 13.2312 40.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 12 1 0.1943 15.9852 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 13 | -1.6918 2.3898 53.1828 -Times_New_Roman.ttf 59 B 34.7661 38.9668 14 N 0.2024 43.0064 40.1617 -Times_New_Roman.ttf 59 B 34.7661 38.9668 15 f -1.7412 23.6237 40.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 16 g 12.0168 26.7407 39.8250 -Times_New_Roman.ttf 59 B 34.7661 38.9668 17 d -1.8426 27.3566 42.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 18 W 0.0802 55.7208 40.1617 -Times_New_Roman.ttf 59 B 34.7661 38.9668 19 s 11.8876 17.7329 28.3630 -Times_New_Roman.ttf 59 B 34.7661 38.9668 20 c 11.7469 22.1496 28.3630 -Times_New_Roman.ttf 59 B 34.7661 38.9668 21 u 13.0966 28.6422 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 22 3 -0.2268 21.3820 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 23 ~ 19.1753 29.9208 7.5968 -Times_New_Roman.ttf 59 B 34.7661 38.9668 24 # -1.5213 26.1892 40.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 25 O -1.0070 37.9463 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 26 ` -0.4438 8.2402 9.4352 -Times_New_Roman.ttf 59 B 34.7661 38.9668 27 @ -1.8618 49.5968 54.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 28 F -0.0565 29.5579 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 29 S -1.6880 24.9668 41.5452 -Times_New_Roman.ttf 59 B 34.7661 38.9668 30 p 11.7044 26.9520 39.8250 -Times_New_Roman.ttf 59 B 34.7661 38.9668 31 “ -1.2906 21.7187 14.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 32 % -1.4448 46.5061 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 33 £ -0.0111 26.1617 40.3098 -Times_New_Roman.ttf 59 B 34.7661 38.9668 34 . 35.1339 5.2070 5.2070 -Times_New_Roman.ttf 59 B 34.7661 38.9668 35 2 0.0238 25.4620 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 36 5 0.1691 22.0242 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 37 m 11.9621 43.6210 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 38 V -0.1508 42.2148 40.1617 -Times_New_Roman.ttf 59 B 34.7661 38.9668 39 6 -0.0121 24.6301 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 40 w 12.6920 42.0012 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 41 T -0.0115 32.3248 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 42 M -0.0907 50.8363 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 43 G -1.3523 40.3777 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 44 b -1.7268 26.9520 42.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 45 9 0.1214 24.2671 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 46 ; 11.5714 8.5769 37.1560 -Times_New_Roman.ttf 59 B 34.7661 38.9668 47 D 0.0552 39.5054 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 48 L 0.0936 33.1439 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 49 y 13.1902 29.1112 38.6301 -Times_New_Roman.ttf 59 B 34.7661 38.9668 50 ‘ -1.1079 8.5769 14.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 51 \ -1.6739 16.8851 42.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 52 R -0.2220 39.5470 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 53 < 4.2571 30.8172 29.1949 -Times_New_Roman.ttf 59 B 34.7661 38.9668 54 4 -0.0266 25.4620 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 55 8 -0.3264 22.7514 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 56 0 -0.1442 24.6301 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 57 A -1.0675 42.0000 40.1617 -Times_New_Roman.ttf 59 B 34.7661 38.9668 58 E -0.0370 34.1502 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 59 B 0.1687 34.7661 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 60 v 12.7550 29.7477 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 61 k -1.4285 28.5111 40.8051 -Times_New_Roman.ttf 59 B 34.7661 38.9668 62 J 0.1928 20.9143 40.1617 -Times_New_Roman.ttf 59 B 34.7661 38.9668 63 U -0.0694 40.9807 40.1617 -Times_New_Roman.ttf 59 B 34.7661 38.9668 64 j -1.7700 16.0484 53.4620 -Times_New_Roman.ttf 59 B 34.7661 38.9668 65 ( -1.5657 15.8383 52.6957 -Times_New_Roman.ttf 59 B 34.7661 38.9668 66 7 0.0802 25.4883 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 67 § -0.0950 20.6180 50.9240 -Times_New_Roman.ttf 59 B 34.7661 38.9668 68 $ -3.2801 23.6237 45.6650 -Times_New_Roman.ttf 59 B 34.7661 38.9668 69 € -0.1737 29.1949 39.1149 -Times_New_Roman.ttf 59 B 34.7661 38.9668 70 / -1.9589 17.5847 42.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 71 C -1.2780 34.5501 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 72 * -1.7761 20.0652 24.4140 -Times_New_Roman.ttf 59 B 34.7661 38.9668 73 ” -1.1391 21.5302 14.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 74 ? -1.3093 19.9342 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 75 { -1.6041 17.0320 52.6957 -Times_New_Roman.ttf 59 B 34.7661 38.9668 76 } -1.5945 17.0320 52.6957 -Times_New_Roman.ttf 59 B 34.7661 38.9668 77 , 34.9723 8.5769 14.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 78 I 0.0519 16.7540 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 79 ° -0.9884 17.5847 17.5847 -Times_New_Roman.ttf 59 B 34.7661 38.9668 80 K 0.2037 41.1680 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 81 H 0.1936 40.9305 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 82 q 12.0178 26.9520 39.8250 -Times_New_Roman.ttf 59 B 34.7661 38.9668 83 & -1.2468 41.3566 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 84 ’ -0.9963 8.5769 14.0000 -Times_New_Roman.ttf 59 B 34.7661 38.9668 85 [ -0.6377 12.6569 51.2203 -Times_New_Roman.ttf 59 B 34.7661 38.9668 86 - 22.4743 15.1949 5.2070 -Times_New_Roman.ttf 59 B 34.7661 38.9668 87 Y -0.0990 41.7612 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 88 Q -1.1877 37.9463 51.1285 -Times_New_Roman.ttf 59 B 34.7661 38.9668 89 " -1.0560 14.9789 16.3898 -Times_New_Roman.ttf 59 B 34.7661 38.9668 90 ! -1.7181 5.2070 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 91 x 12.8724 28.4678 25.9731 -Times_New_Roman.ttf 59 B 34.7661 38.9668 92 ) -1.5908 15.8383 52.6957 -Times_New_Roman.ttf 59 B 34.7661 38.9668 93 = 12.6961 30.1750 12.0135 -Times_New_Roman.ttf 59 B 34.7661 38.9668 94 + 4.4559 30.3898 30.3898 -Times_New_Roman.ttf 59 B 34.7661 38.9668 95 X -0.0694 42.0000 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 96 » 11.9016 24.9093 27.1680 -Times_New_Roman.ttf 59 B 34.7661 38.9668 97 ' -0.8351 5.2070 16.3898 -Times_New_Roman.ttf 59 B 34.7661 38.9668 98 ¢ 1.4517 21.9610 47.5712 -Times_New_Roman.ttf 59 B 34.7661 38.9668 99 Z -0.0936 33.9746 38.9668 -Times_New_Roman.ttf 59 B 34.7661 38.9668 100 > 4.3128 30.8172 29.1949 -Times_New_Roman.ttf 59 B 34.7661 38.9668 101 ® -1.3371 40.3777 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 102 © -1.4680 40.3777 41.3566 -Times_New_Roman.ttf 59 B 34.7661 38.9668 103 ] -0.4878 12.6569 51.2203 -Times_New_Roman.ttf 59 B 34.7661 38.9668 104 é -0.8471 22.1496 41.0199 -Times_New_Roman.ttf 59 B 34.7661 38.9668 105 z 13.4232 23.5833 25.9731 -Times_New_Roman.ttf 59 B 34.7661 38.9668 106 _ 49.0084 30.0269 2.3898 -Times_New_Roman.ttf 59 B 34.7661 38.9668 107 ¥ -0.0404 31.4941 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 1 t -8.7518 16.5784 35.7450 -Times_New_Roman.ttf 60 v 29.7477 27.1680 2 h -14.7733 28.4261 40.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 3 a -1.2877 24.3234 28.3630 -Times_New_Roman.ttf 60 v 29.7477 27.1680 4 n -1.3291 28.4261 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 5 P -12.9342 30.0702 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 6 o -1.1079 25.1828 28.3630 -Times_New_Roman.ttf 60 v 29.7477 27.1680 7 e -1.0099 22.1496 28.3630 -Times_New_Roman.ttf 60 v 29.7477 27.1680 8 : -1.2392 5.2070 28.3630 -Times_New_Roman.ttf 60 v 29.7477 27.1680 9 r -1.3064 19.2070 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 10 l -14.8291 13.2312 40.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 11 i -14.7815 13.2312 40.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 12 1 -13.4459 15.9852 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 13 | -14.4985 2.3898 53.1828 -Times_New_Roman.ttf 60 v 29.7477 27.1680 14 N -13.0387 43.0064 40.1617 -Times_New_Roman.ttf 60 v 29.7477 27.1680 15 f -14.7090 23.6237 40.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 16 g -1.0320 26.7407 39.8250 -Times_New_Roman.ttf 60 v 29.7477 27.1680 17 d -14.4283 27.3566 42.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 18 W -12.9941 55.7208 40.1617 -Times_New_Roman.ttf 60 v 29.7477 27.1680 19 s -1.3708 17.7329 28.3630 -Times_New_Roman.ttf 60 v 29.7477 27.1680 20 c -0.9758 22.1496 28.3630 -Times_New_Roman.ttf 60 v 29.7477 27.1680 21 u 0.0636 28.6422 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 22 3 -13.2408 21.3820 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 23 ~ 6.3424 29.9208 7.5968 -Times_New_Roman.ttf 60 v 29.7477 27.1680 24 # -15.0198 26.1892 40.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 25 O -14.2727 37.9463 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 26 ` -13.1216 8.2402 9.4352 -Times_New_Roman.ttf 60 v 29.7477 27.1680 27 @ -14.7296 49.5968 54.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 28 F -13.0533 29.5579 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 29 S -14.3810 24.9668 41.5452 -Times_New_Roman.ttf 60 v 29.7477 27.1680 30 p -1.2608 26.9520 39.8250 -Times_New_Roman.ttf 60 v 29.7477 27.1680 31 “ -14.3029 21.7187 14.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 32 % -14.1922 46.5061 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 33 £ -13.0587 26.1617 40.3098 -Times_New_Roman.ttf 60 v 29.7477 27.1680 34 . 21.9668 5.2070 5.2070 -Times_New_Roman.ttf 60 v 29.7477 27.1680 35 2 -13.2225 25.4620 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 36 5 -13.2736 22.0242 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 37 m -1.3987 43.6210 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 38 V -13.3329 42.2148 40.1617 -Times_New_Roman.ttf 60 v 29.7477 27.1680 39 6 -13.0540 24.6301 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 40 w 0.0120 42.0012 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 41 T -13.0153 32.3248 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 42 M -12.7821 50.8363 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 43 G -14.1395 40.3777 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 44 b -14.9208 26.9520 42.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 45 9 -13.2004 24.2671 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 46 ; -1.2353 8.5769 37.1560 -Times_New_Roman.ttf 60 v 29.7477 27.1680 47 D -12.7062 39.5054 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 48 L -13.0882 33.1439 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 49 y -0.2464 29.1112 38.6301 -Times_New_Roman.ttf 60 v 29.7477 27.1680 50 ‘ -14.0134 8.5769 14.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 51 \ -15.0060 16.8851 42.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 52 R -13.0001 39.5470 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 53 < -8.6967 30.8172 29.1949 -Times_New_Roman.ttf 60 v 29.7477 27.1680 54 4 -13.2619 25.4620 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 55 8 -13.5430 22.7514 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 56 0 -13.1446 24.6301 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 57 A -14.1795 42.0000 40.1617 -Times_New_Roman.ttf 60 v 29.7477 27.1680 58 E -12.7943 34.1502 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 59 B -13.0346 34.7661 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 60 v 0.2551 29.7477 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 61 k -15.0396 28.5111 40.8051 -Times_New_Roman.ttf 60 v 29.7477 27.1680 62 J -12.8420 20.9143 40.1617 -Times_New_Roman.ttf 60 v 29.7477 27.1680 63 U -13.0129 40.9807 40.1617 -Times_New_Roman.ttf 60 v 29.7477 27.1680 64 j -14.7848 16.0484 53.4620 -Times_New_Roman.ttf 60 v 29.7477 27.1680 65 ( -14.4219 15.8383 52.6957 -Times_New_Roman.ttf 60 v 29.7477 27.1680 66 7 -13.2109 25.4883 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 67 § -13.7523 20.6180 50.9240 -Times_New_Roman.ttf 60 v 29.7477 27.1680 68 $ -16.0033 23.6237 45.6650 -Times_New_Roman.ttf 60 v 29.7477 27.1680 69 € -13.1936 29.1949 39.1149 -Times_New_Roman.ttf 60 v 29.7477 27.1680 70 / -14.9232 17.5847 42.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 71 C -14.2212 34.5501 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 72 * -14.4289 20.0652 24.4140 -Times_New_Roman.ttf 60 v 29.7477 27.1680 73 ” -14.0464 21.5302 14.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 74 ? -14.0320 19.9342 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 75 { -14.7069 17.0320 52.6957 -Times_New_Roman.ttf 60 v 29.7477 27.1680 76 } -14.1529 17.0320 52.6957 -Times_New_Roman.ttf 60 v 29.7477 27.1680 77 , 21.7578 8.5769 14.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 78 I -13.0561 16.7540 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 79 ° -14.3202 17.5847 17.5847 -Times_New_Roman.ttf 60 v 29.7477 27.1680 80 K -12.7276 41.1680 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 81 H -13.0051 40.9305 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 82 q -1.6360 26.9520 39.8250 -Times_New_Roman.ttf 60 v 29.7477 27.1680 83 & -14.3159 41.3566 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 84 ’ -14.0637 8.5769 14.0000 -Times_New_Roman.ttf 60 v 29.7477 27.1680 85 [ -13.7691 12.6569 51.2203 -Times_New_Roman.ttf 60 v 29.7477 27.1680 86 - 9.6781 15.1949 5.2070 -Times_New_Roman.ttf 60 v 29.7477 27.1680 87 Y -12.6906 41.7612 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 88 Q -14.0659 37.9463 51.1285 -Times_New_Roman.ttf 60 v 29.7477 27.1680 89 " -14.4030 14.9789 16.3898 -Times_New_Roman.ttf 60 v 29.7477 27.1680 90 ! -14.3207 5.2070 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 91 x 0.0544 28.4678 25.9731 -Times_New_Roman.ttf 60 v 29.7477 27.1680 92 ) -14.6577 15.8383 52.6957 -Times_New_Roman.ttf 60 v 29.7477 27.1680 93 = 0.1243 30.1750 12.0135 -Times_New_Roman.ttf 60 v 29.7477 27.1680 94 + -8.5718 30.3898 30.3898 -Times_New_Roman.ttf 60 v 29.7477 27.1680 95 X -12.7393 42.0000 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 96 » -1.0628 24.9093 27.1680 -Times_New_Roman.ttf 60 v 29.7477 27.1680 97 ' -14.2610 5.2070 16.3898 -Times_New_Roman.ttf 60 v 29.7477 27.1680 98 ¢ -11.6962 21.9610 47.5712 -Times_New_Roman.ttf 60 v 29.7477 27.1680 99 Z -13.0095 33.9746 38.9668 -Times_New_Roman.ttf 60 v 29.7477 27.1680 100 > -8.6050 30.8172 29.1949 -Times_New_Roman.ttf 60 v 29.7477 27.1680 101 ® -14.0997 40.3777 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 102 © -14.4567 40.3777 41.3566 -Times_New_Roman.ttf 60 v 29.7477 27.1680 103 ] -13.4367 12.6569 51.2203 -Times_New_Roman.ttf 60 v 29.7477 27.1680 104 é -14.1494 22.1496 41.0199 -Times_New_Roman.ttf 60 v 29.7477 27.1680 105 z 0.1269 23.5833 25.9731 -Times_New_Roman.ttf 60 v 29.7477 27.1680 106 _ 36.2681 30.0269 2.3898 -Times_New_Roman.ttf 60 v 29.7477 27.1680 107 ¥ -12.8188 31.4941 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 1 t 6.2949 16.5784 35.7450 -Times_New_Roman.ttf 61 k 28.5111 40.8051 2 h -0.2275 28.4261 40.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 3 a 13.9450 24.3234 28.3630 -Times_New_Roman.ttf 61 k 28.5111 40.8051 4 n 13.5669 28.4261 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 5 P 1.9045 30.0702 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 6 o 13.4589 25.1828 28.3630 -Times_New_Roman.ttf 61 k 28.5111 40.8051 7 e 13.5237 22.1496 28.3630 -Times_New_Roman.ttf 61 k 28.5111 40.8051 8 : 13.6590 5.2070 28.3630 -Times_New_Roman.ttf 61 k 28.5111 40.8051 9 r 14.0411 19.2070 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 10 l -0.0638 13.2312 40.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 11 i -0.1479 13.2312 40.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 12 1 1.7459 15.9852 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 13 | -0.1360 2.3898 53.1828 -Times_New_Roman.ttf 61 k 28.5111 40.8051 14 N 1.8430 43.0064 40.1617 -Times_New_Roman.ttf 61 k 28.5111 40.8051 15 f -0.1673 23.6237 40.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 16 g 13.6125 26.7407 39.8250 -Times_New_Roman.ttf 61 k 28.5111 40.8051 17 d 0.2814 27.3566 42.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 18 W 1.7494 55.7208 40.1617 -Times_New_Roman.ttf 61 k 28.5111 40.8051 19 s 13.4539 17.7329 28.3630 -Times_New_Roman.ttf 61 k 28.5111 40.8051 20 c 13.6120 22.1496 28.3630 -Times_New_Roman.ttf 61 k 28.5111 40.8051 21 u 14.9873 28.6422 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 22 3 1.6459 21.3820 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 23 ~ 21.2150 29.9208 7.5968 -Times_New_Roman.ttf 61 k 28.5111 40.8051 24 # -0.1745 26.1892 40.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 25 O 0.7442 37.9463 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 26 ` 1.4076 8.2402 9.4352 -Times_New_Roman.ttf 61 k 28.5111 40.8051 27 @ -0.2387 49.5968 54.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 28 F 1.7865 29.5579 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 29 S 0.3155 24.9668 41.5452 -Times_New_Roman.ttf 61 k 28.5111 40.8051 30 p 13.4387 26.9520 39.8250 -Times_New_Roman.ttf 61 k 28.5111 40.8051 31 “ 0.6360 21.7187 14.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 32 % 0.7083 46.5061 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 33 £ 1.9924 26.1617 40.3098 -Times_New_Roman.ttf 61 k 28.5111 40.8051 34 . 36.6505 5.2070 5.2070 -Times_New_Roman.ttf 61 k 28.5111 40.8051 35 2 1.4163 25.4620 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 36 5 1.7672 22.0242 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 37 m 13.8384 43.6210 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 38 V 1.8815 42.2148 40.1617 -Times_New_Roman.ttf 61 k 28.5111 40.8051 39 6 1.5240 24.6301 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 40 w 14.8166 42.0012 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 41 T 1.8383 32.3248 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 42 M 1.9671 50.8363 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 43 G 0.4766 40.3777 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 44 b -0.1957 26.9520 42.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 45 9 1.8223 24.2671 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 46 ; 13.5033 8.5769 37.1560 -Times_New_Roman.ttf 61 k 28.5111 40.8051 47 D 1.6225 39.5054 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 48 L 1.7797 33.1439 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 49 y 14.8434 29.1112 38.6301 -Times_New_Roman.ttf 61 k 28.5111 40.8051 50 ‘ 0.7091 8.5769 14.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 51 \ 0.0354 16.8851 42.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 52 R 1.7426 39.5470 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 53 < 6.1650 30.8172 29.1949 -Times_New_Roman.ttf 61 k 28.5111 40.8051 54 4 1.5940 25.4620 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 55 8 1.8298 22.7514 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 56 0 1.6902 24.6301 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 57 A 0.7341 42.0000 40.1617 -Times_New_Roman.ttf 61 k 28.5111 40.8051 58 E 1.9908 34.1502 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 59 B 1.8383 34.7661 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 60 v 14.9583 29.7477 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 61 k -0.0407 28.5111 40.8051 -Times_New_Roman.ttf 61 k 28.5111 40.8051 62 J 1.8693 20.9143 40.1617 -Times_New_Roman.ttf 61 k 28.5111 40.8051 63 U 1.8394 40.9807 40.1617 -Times_New_Roman.ttf 61 k 28.5111 40.8051 64 j -0.1498 16.0484 53.4620 -Times_New_Roman.ttf 61 k 28.5111 40.8051 65 ( 0.3796 15.8383 52.6957 -Times_New_Roman.ttf 61 k 28.5111 40.8051 66 7 1.7466 25.4883 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 67 § 1.5137 20.6180 50.9240 -Times_New_Roman.ttf 61 k 28.5111 40.8051 68 $ -1.1276 23.6237 45.6650 -Times_New_Roman.ttf 61 k 28.5111 40.8051 69 € 1.6749 29.1949 39.1149 -Times_New_Roman.ttf 61 k 28.5111 40.8051 70 / 0.2350 17.5847 42.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 71 C 0.7221 34.5501 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 72 * 0.3421 20.0652 24.4140 -Times_New_Roman.ttf 61 k 28.5111 40.8051 73 ” 0.6434 21.5302 14.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 74 ? 0.6462 19.9342 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 75 { 0.4648 17.0320 52.6957 -Times_New_Roman.ttf 61 k 28.5111 40.8051 76 } 0.4129 17.0320 52.6957 -Times_New_Roman.ttf 61 k 28.5111 40.8051 77 , 36.5614 8.5769 14.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 78 I 1.9157 16.7540 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 79 ° 0.8081 17.5847 17.5847 -Times_New_Roman.ttf 61 k 28.5111 40.8051 80 K 1.6649 41.1680 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 81 H 1.9244 40.9305 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 82 q 13.4669 26.9520 39.8250 -Times_New_Roman.ttf 61 k 28.5111 40.8051 83 & 0.4821 41.3566 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 84 ’ 0.8657 8.5769 14.0000 -Times_New_Roman.ttf 61 k 28.5111 40.8051 85 [ 1.1209 12.6569 51.2203 -Times_New_Roman.ttf 61 k 28.5111 40.8051 86 - 24.4241 15.1949 5.2070 -Times_New_Roman.ttf 61 k 28.5111 40.8051 87 Y 2.0588 41.7612 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 88 Q 0.5632 37.9463 51.1285 -Times_New_Roman.ttf 61 k 28.5111 40.8051 89 " 0.7476 14.9789 16.3898 -Times_New_Roman.ttf 61 k 28.5111 40.8051 90 ! 0.3335 5.2070 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 91 x 14.4135 28.4678 25.9731 -Times_New_Roman.ttf 61 k 28.5111 40.8051 92 ) 0.3481 15.8383 52.6957 -Times_New_Roman.ttf 61 k 28.5111 40.8051 93 = 15.2660 30.1750 12.0135 -Times_New_Roman.ttf 61 k 28.5111 40.8051 94 + 6.1665 30.3898 30.3898 -Times_New_Roman.ttf 61 k 28.5111 40.8051 95 X 1.6408 42.0000 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 96 » 13.7561 24.9093 27.1680 -Times_New_Roman.ttf 61 k 28.5111 40.8051 97 ' 0.4142 5.2070 16.3898 -Times_New_Roman.ttf 61 k 28.5111 40.8051 98 ¢ 3.1736 21.9610 47.5712 -Times_New_Roman.ttf 61 k 28.5111 40.8051 99 Z 1.7494 33.9746 38.9668 -Times_New_Roman.ttf 61 k 28.5111 40.8051 100 > 6.1975 30.8172 29.1949 -Times_New_Roman.ttf 61 k 28.5111 40.8051 101 ® 0.6554 40.3777 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 102 © 0.7276 40.3777 41.3566 -Times_New_Roman.ttf 61 k 28.5111 40.8051 103 ] 1.2161 12.6569 51.2203 -Times_New_Roman.ttf 61 k 28.5111 40.8051 104 é 0.6138 22.1496 41.0199 -Times_New_Roman.ttf 61 k 28.5111 40.8051 105 z 14.7363 23.5833 25.9731 -Times_New_Roman.ttf 61 k 28.5111 40.8051 106 _ 50.6743 30.0269 2.3898 -Times_New_Roman.ttf 61 k 28.5111 40.8051 107 ¥ 1.9733 31.4941 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 1 t 4.2419 16.5784 35.7450 -Times_New_Roman.ttf 62 J 20.9143 40.1617 2 h -1.8383 28.4261 40.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 3 a 11.8459 24.3234 28.3630 -Times_New_Roman.ttf 62 J 20.9143 40.1617 4 n 11.8956 28.4261 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 5 P 0.2043 30.0702 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 6 o 12.0028 25.1828 28.3630 -Times_New_Roman.ttf 62 J 20.9143 40.1617 7 e 11.8358 22.1496 28.3630 -Times_New_Roman.ttf 62 J 20.9143 40.1617 8 : 11.6588 5.2070 28.3630 -Times_New_Roman.ttf 62 J 20.9143 40.1617 9 r 11.9189 19.2070 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 10 l -1.6754 13.2312 40.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 11 i -1.8027 13.2312 40.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 12 1 -0.2093 15.9852 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 13 | -1.8935 2.3898 53.1828 -Times_New_Roman.ttf 62 J 20.9143 40.1617 14 N 0.0167 43.0064 40.1617 -Times_New_Roman.ttf 62 J 20.9143 40.1617 15 f -1.8099 23.6237 40.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 16 g 11.9297 26.7407 39.8250 -Times_New_Roman.ttf 62 J 20.9143 40.1617 17 d -1.8826 27.3566 42.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 18 W -0.2205 55.7208 40.1617 -Times_New_Roman.ttf 62 J 20.9143 40.1617 19 s 11.7070 17.7329 28.3630 -Times_New_Roman.ttf 62 J 20.9143 40.1617 20 c 11.6228 22.1496 28.3630 -Times_New_Roman.ttf 62 J 20.9143 40.1617 21 u 13.0379 28.6422 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 22 3 -0.1317 21.3820 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 23 ~ 19.3304 29.9208 7.5968 -Times_New_Roman.ttf 62 J 20.9143 40.1617 24 # -1.7898 26.1892 40.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 25 O -0.9821 37.9463 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 26 ` -0.2501 8.2402 9.4352 -Times_New_Roman.ttf 62 J 20.9143 40.1617 27 @ -1.8571 49.5968 54.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 28 F 0.0000 29.5579 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 29 S -1.6491 24.9668 41.5452 -Times_New_Roman.ttf 62 J 20.9143 40.1617 30 p 12.1009 26.9520 39.8250 -Times_New_Roman.ttf 62 J 20.9143 40.1617 31 “ -1.3697 21.7187 14.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 32 % -1.1853 46.5061 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 33 £ -0.2776 26.1617 40.3098 -Times_New_Roman.ttf 62 J 20.9143 40.1617 34 . 35.0349 5.2070 5.2070 -Times_New_Roman.ttf 62 J 20.9143 40.1617 35 2 -0.0651 25.4620 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 36 5 -0.3109 22.0242 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 37 m 11.7075 43.6210 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 38 V -0.0500 42.2148 40.1617 -Times_New_Roman.ttf 62 J 20.9143 40.1617 39 6 -0.2169 24.6301 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 40 w 13.0926 42.0012 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 41 T 0.1417 32.3248 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 42 M 0.1349 50.8363 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 43 G -1.3150 40.3777 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 44 b -1.8919 26.9520 42.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 45 9 -0.2482 24.2671 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 46 ; 11.7196 8.5769 37.1560 -Times_New_Roman.ttf 62 J 20.9143 40.1617 47 D 0.3656 39.5054 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 48 L -0.2387 33.1439 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 49 y 12.9105 29.1112 38.6301 -Times_New_Roman.ttf 62 J 20.9143 40.1617 50 ‘ -1.2421 8.5769 14.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 51 \ -1.7393 16.8851 42.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 52 R 0.0183 39.5470 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 53 < 4.2618 30.8172 29.1949 -Times_New_Roman.ttf 62 J 20.9143 40.1617 54 4 -0.1630 25.4620 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 55 8 -0.3907 22.7514 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 56 0 -0.1481 24.6301 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 57 A -1.4971 42.0000 40.1617 -Times_New_Roman.ttf 62 J 20.9143 40.1617 58 E 0.0178 34.1502 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 59 B 0.0057 34.7661 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 60 v 12.8991 29.7477 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 61 k -1.8383 28.5111 40.8051 -Times_New_Roman.ttf 62 J 20.9143 40.1617 62 J -0.0965 20.9143 40.1617 -Times_New_Roman.ttf 62 J 20.9143 40.1617 63 U -0.3170 40.9807 40.1617 -Times_New_Roman.ttf 62 J 20.9143 40.1617 64 j -1.9800 16.0484 53.4620 -Times_New_Roman.ttf 62 J 20.9143 40.1617 65 ( -1.3200 15.8383 52.6957 -Times_New_Roman.ttf 62 J 20.9143 40.1617 66 7 0.1868 25.4883 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 67 § -0.5630 20.6180 50.9240 -Times_New_Roman.ttf 62 J 20.9143 40.1617 68 $ -2.9221 23.6237 45.6650 -Times_New_Roman.ttf 62 J 20.9143 40.1617 69 € -0.0536 29.1949 39.1149 -Times_New_Roman.ttf 62 J 20.9143 40.1617 70 / -1.5612 17.5847 42.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 71 C -1.1194 34.5501 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 72 * -1.8685 20.0652 24.4140 -Times_New_Roman.ttf 62 J 20.9143 40.1617 73 ” -1.3890 21.5302 14.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 74 ? -1.3305 19.9342 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 75 { -1.5774 17.0320 52.6957 -Times_New_Roman.ttf 62 J 20.9143 40.1617 76 } -1.6387 17.0320 52.6957 -Times_New_Roman.ttf 62 J 20.9143 40.1617 77 , 34.8528 8.5769 14.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 78 I 0.0870 16.7540 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 79 ° -1.6095 17.5847 17.5847 -Times_New_Roman.ttf 62 J 20.9143 40.1617 80 K 0.1138 41.1680 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 81 H 0.0206 40.9305 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 82 q 11.7617 26.9520 39.8250 -Times_New_Roman.ttf 62 J 20.9143 40.1617 83 & -1.2944 41.3566 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 84 ’ -1.0617 8.5769 14.0000 -Times_New_Roman.ttf 62 J 20.9143 40.1617 85 [ -0.5592 12.6569 51.2203 -Times_New_Roman.ttf 62 J 20.9143 40.1617 86 - 22.7958 15.1949 5.2070 -Times_New_Roman.ttf 62 J 20.9143 40.1617 87 Y 0.1450 41.7612 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 88 Q -1.1762 37.9463 51.1285 -Times_New_Roman.ttf 62 J 20.9143 40.1617 89 " -1.1782 14.9789 16.3898 -Times_New_Roman.ttf 62 J 20.9143 40.1617 90 ! -1.4002 5.2070 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 91 x 13.0234 28.4678 25.9731 -Times_New_Roman.ttf 62 J 20.9143 40.1617 92 ) -1.2677 15.8383 52.6957 -Times_New_Roman.ttf 62 J 20.9143 40.1617 93 = 13.1726 30.1750 12.0135 -Times_New_Roman.ttf 62 J 20.9143 40.1617 94 + 4.3321 30.3898 30.3898 -Times_New_Roman.ttf 62 J 20.9143 40.1617 95 X -0.0399 42.0000 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 96 » 11.7901 24.9093 27.1680 -Times_New_Roman.ttf 62 J 20.9143 40.1617 97 ' -1.4717 5.2070 16.3898 -Times_New_Roman.ttf 62 J 20.9143 40.1617 98 ¢ 1.5022 21.9610 47.5712 -Times_New_Roman.ttf 62 J 20.9143 40.1617 99 Z 0.2648 33.9746 38.9668 -Times_New_Roman.ttf 62 J 20.9143 40.1617 100 > 4.3516 30.8172 29.1949 -Times_New_Roman.ttf 62 J 20.9143 40.1617 101 ® -1.3270 40.3777 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 102 © -1.1147 40.3777 41.3566 -Times_New_Roman.ttf 62 J 20.9143 40.1617 103 ] -0.5085 12.6569 51.2203 -Times_New_Roman.ttf 62 J 20.9143 40.1617 104 é -1.0313 22.1496 41.0199 -Times_New_Roman.ttf 62 J 20.9143 40.1617 105 z 13.3722 23.5833 25.9731 -Times_New_Roman.ttf 62 J 20.9143 40.1617 106 _ 49.2695 30.0269 2.3898 -Times_New_Roman.ttf 62 J 20.9143 40.1617 107 ¥ -0.3421 31.4941 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 1 t 4.4167 16.5784 35.7450 -Times_New_Roman.ttf 63 U 40.9807 40.1617 2 h -1.6606 28.4261 40.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 3 a 11.8391 24.3234 28.3630 -Times_New_Roman.ttf 63 U 40.9807 40.1617 4 n 11.7915 28.4261 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 5 P -0.0302 30.0702 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 6 o 11.8561 25.1828 28.3630 -Times_New_Roman.ttf 63 U 40.9807 40.1617 7 e 11.7516 22.1496 28.3630 -Times_New_Roman.ttf 63 U 40.9807 40.1617 8 : 12.0658 5.2070 28.3630 -Times_New_Roman.ttf 63 U 40.9807 40.1617 9 r 12.0621 19.2070 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 10 l -1.7503 13.2312 40.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 11 i -2.0411 13.2312 40.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 12 1 -0.2677 15.9852 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 13 | -1.5653 2.3898 53.1828 -Times_New_Roman.ttf 63 U 40.9807 40.1617 14 N 0.0860 43.0064 40.1617 -Times_New_Roman.ttf 63 U 40.9807 40.1617 15 f -1.5521 23.6237 40.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 16 g 11.8944 26.7407 39.8250 -Times_New_Roman.ttf 63 U 40.9807 40.1617 17 d -1.3065 27.3566 42.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 18 W 0.0109 55.7208 40.1617 -Times_New_Roman.ttf 63 U 40.9807 40.1617 19 s 11.7448 17.7329 28.3630 -Times_New_Roman.ttf 63 U 40.9807 40.1617 20 c 11.3573 22.1496 28.3630 -Times_New_Roman.ttf 63 U 40.9807 40.1617 21 u 13.1983 28.6422 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 22 3 -0.0056 21.3820 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 23 ~ 19.8037 29.9208 7.5968 -Times_New_Roman.ttf 63 U 40.9807 40.1617 24 # -1.7161 26.1892 40.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 25 O -1.3664 37.9463 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 26 ` -0.4734 8.2402 9.4352 -Times_New_Roman.ttf 63 U 40.9807 40.1617 27 @ -1.7099 49.5968 54.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 28 F 0.0284 29.5579 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 29 S -1.0198 24.9668 41.5452 -Times_New_Roman.ttf 63 U 40.9807 40.1617 30 p 11.9001 26.9520 39.8250 -Times_New_Roman.ttf 63 U 40.9807 40.1617 31 “ -1.1949 21.7187 14.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 32 % -1.2439 46.5061 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 33 £ 0.0100 26.1617 40.3098 -Times_New_Roman.ttf 63 U 40.9807 40.1617 34 . 34.9928 5.2070 5.2070 -Times_New_Roman.ttf 63 U 40.9807 40.1617 35 2 -0.0726 25.4620 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 36 5 -0.0148 22.0242 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 37 m 11.6660 43.6210 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 38 V -0.0461 42.2148 40.1617 -Times_New_Roman.ttf 63 U 40.9807 40.1617 39 6 0.0637 24.6301 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 40 w 12.7198 42.0012 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 41 T 0.0191 32.3248 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 42 M -0.0008 50.8363 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 43 G -1.4065 40.3777 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 44 b -1.7091 26.9520 42.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 45 9 -0.2168 24.2671 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 46 ; 11.8397 8.5769 37.1560 -Times_New_Roman.ttf 63 U 40.9807 40.1617 47 D 0.1110 39.5054 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 48 L 0.3234 33.1439 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 49 y 13.2117 29.1112 38.6301 -Times_New_Roman.ttf 63 U 40.9807 40.1617 50 ‘ -1.5014 8.5769 14.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 51 \ -1.9685 16.8851 42.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 52 R 0.1965 39.5470 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 53 < 4.3969 30.8172 29.1949 -Times_New_Roman.ttf 63 U 40.9807 40.1617 54 4 -0.0103 25.4620 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 55 8 0.0733 22.7514 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 56 0 -0.1025 24.6301 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 57 A -1.3602 42.0000 40.1617 -Times_New_Roman.ttf 63 U 40.9807 40.1617 58 E -0.0058 34.1502 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 59 B -0.1508 34.7661 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 60 v 12.9691 29.7477 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 61 k -1.8581 28.5111 40.8051 -Times_New_Roman.ttf 63 U 40.9807 40.1617 62 J -0.0558 20.9143 40.1617 -Times_New_Roman.ttf 63 U 40.9807 40.1617 63 U 0.2932 40.9807 40.1617 -Times_New_Roman.ttf 63 U 40.9807 40.1617 64 j -1.6886 16.0484 53.4620 -Times_New_Roman.ttf 63 U 40.9807 40.1617 65 ( -1.6982 15.8383 52.6957 -Times_New_Roman.ttf 63 U 40.9807 40.1617 66 7 -0.0474 25.4883 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 67 § -0.5588 20.6180 50.9240 -Times_New_Roman.ttf 63 U 40.9807 40.1617 68 $ -2.7545 23.6237 45.6650 -Times_New_Roman.ttf 63 U 40.9807 40.1617 69 € -0.2265 29.1949 39.1149 -Times_New_Roman.ttf 63 U 40.9807 40.1617 70 / -2.2182 17.5847 42.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 71 C -1.3165 34.5501 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 72 * -1.7855 20.0652 24.4140 -Times_New_Roman.ttf 63 U 40.9807 40.1617 73 ” -1.2345 21.5302 14.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 74 ? -1.3064 19.9342 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 75 { -1.3365 17.0320 52.6957 -Times_New_Roman.ttf 63 U 40.9807 40.1617 76 } -1.1380 17.0320 52.6957 -Times_New_Roman.ttf 63 U 40.9807 40.1617 77 , 34.7160 8.5769 14.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 78 I 0.0342 16.7540 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 79 ° -1.6066 17.5847 17.5847 -Times_New_Roman.ttf 63 U 40.9807 40.1617 80 K -0.3126 41.1680 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 81 H 0.1918 40.9305 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 82 q 11.5613 26.9520 39.8250 -Times_New_Roman.ttf 63 U 40.9807 40.1617 83 & -1.1449 41.3566 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 84 ’ -1.2017 8.5769 14.0000 -Times_New_Roman.ttf 63 U 40.9807 40.1617 85 [ -0.5973 12.6569 51.2203 -Times_New_Roman.ttf 63 U 40.9807 40.1617 86 - 22.4720 15.1949 5.2070 -Times_New_Roman.ttf 63 U 40.9807 40.1617 87 Y 0.0831 41.7612 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 88 Q -0.9380 37.9463 51.1285 -Times_New_Roman.ttf 63 U 40.9807 40.1617 89 " -1.2892 14.9789 16.3898 -Times_New_Roman.ttf 63 U 40.9807 40.1617 90 ! -0.7942 5.2070 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 91 x 13.0745 28.4678 25.9731 -Times_New_Roman.ttf 63 U 40.9807 40.1617 92 ) -1.5063 15.8383 52.6957 -Times_New_Roman.ttf 63 U 40.9807 40.1617 93 = 13.2058 30.1750 12.0135 -Times_New_Roman.ttf 63 U 40.9807 40.1617 94 + 4.5384 30.3898 30.3898 -Times_New_Roman.ttf 63 U 40.9807 40.1617 95 X 0.0572 42.0000 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 96 » 11.9931 24.9093 27.1680 -Times_New_Roman.ttf 63 U 40.9807 40.1617 97 ' -1.2986 5.2070 16.3898 -Times_New_Roman.ttf 63 U 40.9807 40.1617 98 ¢ 1.4177 21.9610 47.5712 -Times_New_Roman.ttf 63 U 40.9807 40.1617 99 Z 0.0471 33.9746 38.9668 -Times_New_Roman.ttf 63 U 40.9807 40.1617 100 > 4.4751 30.8172 29.1949 -Times_New_Roman.ttf 63 U 40.9807 40.1617 101 ® -1.4659 40.3777 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 102 © -1.3285 40.3777 41.3566 -Times_New_Roman.ttf 63 U 40.9807 40.1617 103 ] -0.5973 12.6569 51.2203 -Times_New_Roman.ttf 63 U 40.9807 40.1617 104 é -1.0182 22.1496 41.0199 -Times_New_Roman.ttf 63 U 40.9807 40.1617 105 z 13.0015 23.5833 25.9731 -Times_New_Roman.ttf 63 U 40.9807 40.1617 106 _ 49.2011 30.0269 2.3898 -Times_New_Roman.ttf 63 U 40.9807 40.1617 107 ¥ 0.0340 31.4941 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 1 t 6.3694 16.5784 35.7450 -Times_New_Roman.ttf 64 j 16.0484 53.4620 2 h -0.0961 28.4261 40.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 3 a 13.3320 24.3234 28.3630 -Times_New_Roman.ttf 64 j 16.0484 53.4620 4 n 13.7926 28.4261 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 5 P 1.8729 30.0702 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 6 o 13.6404 25.1828 28.3630 -Times_New_Roman.ttf 64 j 16.0484 53.4620 7 e 13.7248 22.1496 28.3630 -Times_New_Roman.ttf 64 j 16.0484 53.4620 8 : 13.6047 5.2070 28.3630 -Times_New_Roman.ttf 64 j 16.0484 53.4620 9 r 13.6457 19.2070 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 10 l -0.0467 13.2312 40.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 11 i 0.0237 13.2312 40.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 12 1 1.9676 15.9852 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 13 | 0.2350 2.3898 53.1828 -Times_New_Roman.ttf 64 j 16.0484 53.4620 14 N 1.9592 43.0064 40.1617 -Times_New_Roman.ttf 64 j 16.0484 53.4620 15 f 0.1277 23.6237 40.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 16 g 13.8854 26.7407 39.8250 -Times_New_Roman.ttf 64 j 16.0484 53.4620 17 d 0.0115 27.3566 42.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 18 W 1.8949 55.7208 40.1617 -Times_New_Roman.ttf 64 j 16.0484 53.4620 19 s 13.6370 17.7329 28.3630 -Times_New_Roman.ttf 64 j 16.0484 53.4620 20 c 13.5442 22.1496 28.3630 -Times_New_Roman.ttf 64 j 16.0484 53.4620 21 u 14.6898 28.6422 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 22 3 1.4961 21.3820 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 23 ~ 21.2518 29.9208 7.5968 -Times_New_Roman.ttf 64 j 16.0484 53.4620 24 # 0.0648 26.1892 40.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 25 O 0.8712 37.9463 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 26 ` 1.5004 8.2402 9.4352 -Times_New_Roman.ttf 64 j 16.0484 53.4620 27 @ -0.0399 49.5968 54.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 28 F 2.1132 29.5579 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 29 S 0.3257 24.9668 41.5452 -Times_New_Roman.ttf 64 j 16.0484 53.4620 30 p 13.3079 26.9520 39.8250 -Times_New_Roman.ttf 64 j 16.0484 53.4620 31 “ 0.8096 21.7187 14.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 32 % 0.8154 46.5061 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 33 £ 1.8179 26.1617 40.3098 -Times_New_Roman.ttf 64 j 16.0484 53.4620 34 . 36.5725 5.2070 5.2070 -Times_New_Roman.ttf 64 j 16.0484 53.4620 35 2 1.8546 25.4620 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 36 5 1.7466 22.0242 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 37 m 13.6264 43.6210 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 38 V 2.0338 42.2148 40.1617 -Times_New_Roman.ttf 64 j 16.0484 53.4620 39 6 1.7272 24.6301 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 40 w 15.0949 42.0012 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 41 T 1.7716 32.3248 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 42 M 1.8355 50.8363 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 43 G 0.5743 40.3777 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 44 b 0.0000 26.9520 42.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 45 9 1.8603 24.2671 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 46 ; 13.5779 8.5769 37.1560 -Times_New_Roman.ttf 64 j 16.0484 53.4620 47 D 2.0150 39.5054 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 48 L 1.9066 33.1439 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 49 y 14.7369 29.1112 38.6301 -Times_New_Roman.ttf 64 j 16.0484 53.4620 50 ‘ 0.5092 8.5769 14.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 51 \ 0.0086 16.8851 42.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 52 R 1.9214 39.5470 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 53 < 6.2202 30.8172 29.1949 -Times_New_Roman.ttf 64 j 16.0484 53.4620 54 4 1.6027 25.4620 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 55 8 1.6013 22.7514 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 56 0 1.8290 24.6301 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 57 A 0.5829 42.0000 40.1617 -Times_New_Roman.ttf 64 j 16.0484 53.4620 58 E 2.0334 34.1502 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 59 B 1.9225 34.7661 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 60 v 14.7979 29.7477 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 61 k 0.1269 28.5111 40.8051 -Times_New_Roman.ttf 64 j 16.0484 53.4620 62 J 1.7480 20.9143 40.1617 -Times_New_Roman.ttf 64 j 16.0484 53.4620 63 U 1.7883 40.9807 40.1617 -Times_New_Roman.ttf 64 j 16.0484 53.4620 64 j -0.1436 16.0484 53.4620 -Times_New_Roman.ttf 64 j 16.0484 53.4620 65 ( 0.3677 15.8383 52.6957 -Times_New_Roman.ttf 64 j 16.0484 53.4620 66 7 1.7153 25.4883 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 67 § 1.3517 20.6180 50.9240 -Times_New_Roman.ttf 64 j 16.0484 53.4620 68 $ -1.3331 23.6237 45.6650 -Times_New_Roman.ttf 64 j 16.0484 53.4620 69 € 1.7180 29.1949 39.1149 -Times_New_Roman.ttf 64 j 16.0484 53.4620 70 / 0.0418 17.5847 42.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 71 C 0.7664 34.5501 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 72 * -0.0508 20.0652 24.4140 -Times_New_Roman.ttf 64 j 16.0484 53.4620 73 ” 0.6434 21.5302 14.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 74 ? 0.4396 19.9342 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 75 { 0.5047 17.0320 52.6957 -Times_New_Roman.ttf 64 j 16.0484 53.4620 76 } 0.1957 17.0320 52.6957 -Times_New_Roman.ttf 64 j 16.0484 53.4620 77 , 36.6585 8.5769 14.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 78 I 1.8441 16.7540 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 79 ° 0.4095 17.5847 17.5847 -Times_New_Roman.ttf 64 j 16.0484 53.4620 80 K 1.8422 41.1680 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 81 H 1.7109 40.9305 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 82 q 13.3583 26.9520 39.8250 -Times_New_Roman.ttf 64 j 16.0484 53.4620 83 & 0.6736 41.3566 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 84 ’ 0.6663 8.5769 14.0000 -Times_New_Roman.ttf 64 j 16.0484 53.4620 85 [ 1.1090 12.6569 51.2203 -Times_New_Roman.ttf 64 j 16.0484 53.4620 86 - 24.7116 15.1949 5.2070 -Times_New_Roman.ttf 64 j 16.0484 53.4620 87 Y 2.1304 41.7612 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 88 Q 0.5963 37.9463 51.1285 -Times_New_Roman.ttf 64 j 16.0484 53.4620 89 " 0.4979 14.9789 16.3898 -Times_New_Roman.ttf 64 j 16.0484 53.4620 90 ! 0.4555 5.2070 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 91 x 14.9549 28.4678 25.9731 -Times_New_Roman.ttf 64 j 16.0484 53.4620 92 ) 0.3851 15.8383 52.6957 -Times_New_Roman.ttf 64 j 16.0484 53.4620 93 = 14.9328 30.1750 12.0135 -Times_New_Roman.ttf 64 j 16.0484 53.4620 94 + 6.3692 30.3898 30.3898 -Times_New_Roman.ttf 64 j 16.0484 53.4620 95 X 1.9657 42.0000 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 96 » 13.4640 24.9093 27.1680 -Times_New_Roman.ttf 64 j 16.0484 53.4620 97 ' 0.8182 5.2070 16.3898 -Times_New_Roman.ttf 64 j 16.0484 53.4620 98 ¢ 3.3049 21.9610 47.5712 -Times_New_Roman.ttf 64 j 16.0484 53.4620 99 Z 1.6750 33.9746 38.9668 -Times_New_Roman.ttf 64 j 16.0484 53.4620 100 > 6.3066 30.8172 29.1949 -Times_New_Roman.ttf 64 j 16.0484 53.4620 101 ® 0.7841 40.3777 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 102 © 0.7200 40.3777 41.3566 -Times_New_Roman.ttf 64 j 16.0484 53.4620 103 ] 0.9744 12.6569 51.2203 -Times_New_Roman.ttf 64 j 16.0484 53.4620 104 é 0.9355 22.1496 41.0199 -Times_New_Roman.ttf 64 j 16.0484 53.4620 105 z 14.9781 23.5833 25.9731 -Times_New_Roman.ttf 64 j 16.0484 53.4620 106 _ 50.7163 30.0269 2.3898 -Times_New_Roman.ttf 64 j 16.0484 53.4620 107 ¥ 1.9967 31.4941 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 1 t 5.6417 16.5784 35.7450 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 2 h -0.4018 28.4261 40.8051 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 3 a 13.3600 24.3234 28.3630 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 4 n 13.3223 28.4261 27.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 5 P 1.5783 30.0702 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 6 o 13.3572 25.1828 28.3630 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 7 e 13.4221 22.1496 28.3630 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 8 : 13.0902 5.2134 28.3500 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 9 r 13.2654 19.2070 27.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 10 l -0.4461 13.2312 40.8051 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 11 i -0.2629 13.2312 40.8051 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 12 1 1.7083 15.9913 39.1026 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 13 | -0.5585 2.3814 53.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 14 N 1.4754 43.0064 40.1617 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 15 f -0.2712 23.6237 40.8051 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 16 g 13.2701 26.7407 39.8250 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 17 d -0.5969 27.3566 42.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 18 W 1.4754 55.7208 40.1617 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 19 s 13.0184 17.7329 28.3630 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 20 c 13.2233 22.1496 28.3630 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 21 u 14.5060 28.6422 27.1680 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 22 3 1.4414 21.3876 39.1026 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 23 ~ 21.1951 29.8907 7.5948 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 24 # -0.4028 26.1769 40.8093 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 25 O 0.2344 37.9463 41.3566 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 26 ` 1.1701 8.2536 9.4443 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 27 @ -0.5367 49.5948 54.8093 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 28 F 1.5556 29.5579 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 29 S -0.0276 24.9668 41.5452 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 30 p 13.4413 26.9520 39.8250 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 31 “ 0.3890 21.7123 14.0000 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 32 % 0.2815 46.5375 41.3411 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 33 £ 1.3997 26.1504 40.2933 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 34 . 36.5206 5.2134 5.2134 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 35 2 1.5730 25.4757 39.1026 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 36 5 1.4820 22.0453 38.9597 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 37 m 13.2535 43.6210 27.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 38 V 1.3480 42.2148 40.1617 -Times_New_Roman.ttf 65 ( 15.8496 52.7368 39 6 1.3613 24.6350 39.1026 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 40 w 14.6410 42.0012 27.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 41 T 1.2281 32.3248 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 42 M 1.5037 50.8363 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 43 G 0.3236 40.3777 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 44 b -0.4028 26.9520 42.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 45 9 1.4473 24.2671 39.1149 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 46 ; 13.3173 8.5769 37.1560 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 47 D 1.7578 39.5054 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 48 L 1.5085 33.1439 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 49 y 14.4291 29.1112 38.6301 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 50 ‘ -0.1766 8.5769 14.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 51 \ -0.4659 16.8851 42.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 52 R 1.2429 39.5470 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 53 < 5.9250 30.8172 29.1949 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 54 4 1.5659 25.4620 39.1149 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 55 8 1.5064 22.7514 39.1149 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 56 0 1.4617 24.6301 39.1149 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 57 A 0.2737 42.0000 40.1617 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 58 E 1.5545 34.1502 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 59 B 1.3764 34.7661 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 60 v 14.4052 29.7477 27.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 61 k -0.3749 28.5111 40.8051 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 62 J 1.4754 20.9143 40.1617 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 63 U 1.3825 40.9807 40.1617 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 64 j -0.3989 16.0484 53.4620 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 65 ( -0.0586 15.8383 52.6957 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 66 7 1.2875 25.4883 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 67 § 1.1539 20.6180 50.9240 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 68 $ -1.4645 23.6237 45.6650 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 69 € 1.4064 29.1949 39.1149 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 70 / -0.0532 17.5847 42.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 71 C 0.1023 34.5501 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 72 * -0.3630 20.0652 24.4140 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 73 ” 0.4477 21.5302 14.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 74 ? 0.0186 19.9342 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 75 { -0.2652 17.0320 52.6957 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 76 } -0.0831 17.0320 52.6957 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 77 , 36.3107 8.5769 14.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 78 I 1.7827 16.7540 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 79 ° 0.1829 17.5847 17.5847 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 80 K 1.4422 41.1680 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 81 H 1.5983 40.9305 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 82 q 13.5331 26.9520 39.8250 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 83 & 0.2291 41.3566 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 84 ’ 0.0585 8.5769 14.0000 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 85 [ 0.7564 12.6569 51.2203 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 86 - 24.0161 15.1949 5.2070 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 87 Y 1.6189 41.7612 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 88 Q 0.1483 37.9463 51.1285 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 89 " 0.3607 14.9789 16.3898 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 90 ! 0.2372 5.2070 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 91 x 14.4237 28.4678 25.9731 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 92 ) -0.0735 15.8383 52.6957 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 93 = 14.9844 30.1750 12.0135 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 94 + 6.0024 30.3898 30.3898 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 95 X 1.5124 42.0000 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 96 » 12.9027 24.9093 27.1680 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 97 ' 0.1416 5.2070 16.3898 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 98 ¢ 2.7786 21.9610 47.5712 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 99 Z 1.5584 33.9746 38.9668 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 100 > 5.8640 30.8172 29.1949 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 101 ® 0.3823 40.3777 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 102 © 0.1973 40.3777 41.3566 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 103 ] 0.9396 12.6569 51.2203 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 104 é 0.6651 22.1496 41.0199 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 105 z 14.6850 23.5833 25.9731 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 106 _ 51.0388 30.0269 2.3898 -Times_New_Roman.ttf 65 ( 15.8383 52.6957 107 ¥ 1.4034 31.4941 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 1 t 4.5488 16.5784 35.7450 -Times_New_Roman.ttf 66 7 25.4883 38.9668 2 h -1.5019 28.4261 40.8051 -Times_New_Roman.ttf 66 7 25.4883 38.9668 3 a 12.0491 24.3234 28.3630 -Times_New_Roman.ttf 66 7 25.4883 38.9668 4 n 11.6080 28.4261 27.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 5 P -0.0115 30.0702 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 6 o 11.8876 25.1828 28.3630 -Times_New_Roman.ttf 66 7 25.4883 38.9668 7 e 11.9077 22.1496 28.3630 -Times_New_Roman.ttf 66 7 25.5011 38.9597 8 : 11.7498 5.2134 28.3500 -Times_New_Roman.ttf 66 7 25.4883 38.9668 9 r 11.9160 19.2070 27.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 10 l -1.7951 13.2312 40.8051 -Times_New_Roman.ttf 66 7 25.4883 38.9668 11 i -1.7719 13.2312 40.8051 -Times_New_Roman.ttf 66 7 25.5011 38.9597 12 1 -0.0714 15.9913 39.1026 -Times_New_Roman.ttf 66 7 25.5011 38.9597 13 | -1.9362 2.3814 53.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 14 N -0.0195 43.0064 40.1617 -Times_New_Roman.ttf 66 7 25.4883 38.9668 15 f -2.0676 23.6237 40.8051 -Times_New_Roman.ttf 66 7 25.4883 38.9668 16 g 11.8401 26.7407 39.8250 -Times_New_Roman.ttf 66 7 25.4883 38.9668 17 d -1.9718 27.3566 42.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 18 W -0.0307 55.7208 40.1617 -Times_New_Roman.ttf 66 7 25.4883 38.9668 19 s 11.8761 17.7329 28.3630 -Times_New_Roman.ttf 66 7 25.4883 38.9668 20 c 12.1081 22.1496 28.3630 -Times_New_Roman.ttf 66 7 25.4883 38.9668 21 u 12.6223 28.6422 27.1680 -Times_New_Roman.ttf 66 7 25.5011 38.9597 22 3 -0.3107 21.3876 39.1026 -Times_New_Roman.ttf 66 7 25.5011 38.9597 23 ~ 19.6795 29.8907 7.5948 -Times_New_Roman.ttf 66 7 25.5011 38.9597 24 # -1.8111 26.1769 40.8093 -Times_New_Roman.ttf 66 7 25.4883 38.9668 25 O -1.2262 37.9463 41.3566 -Times_New_Roman.ttf 66 7 25.5011 38.9597 26 ` -0.3503 8.2536 9.4443 -Times_New_Roman.ttf 66 7 25.5011 38.9597 27 @ -1.9491 49.5948 54.8093 -Times_New_Roman.ttf 66 7 25.4883 38.9668 28 F 0.0485 29.5579 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 29 S -1.6584 24.9668 41.5452 -Times_New_Roman.ttf 66 7 25.4883 38.9668 30 p 11.5782 26.9520 39.8250 -Times_New_Roman.ttf 66 7 25.5011 38.9597 31 “ -1.3284 21.7123 14.0000 -Times_New_Roman.ttf 66 7 25.5011 38.9597 32 % -0.9267 46.5375 41.3411 -Times_New_Roman.ttf 66 7 25.5011 38.9597 33 £ -0.3079 26.1504 40.2933 -Times_New_Roman.ttf 66 7 25.5011 38.9597 34 . 35.0255 5.2134 5.2134 -Times_New_Roman.ttf 66 7 25.5011 38.9597 35 2 -0.1536 25.4757 39.1026 -Times_New_Roman.ttf 66 7 25.5011 38.9597 36 5 0.2186 22.0453 38.9597 -Times_New_Roman.ttf 66 7 25.4883 38.9668 37 m 11.8448 43.6210 27.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 38 V 0.2152 42.2148 40.1617 -Times_New_Roman.ttf 66 7 25.5011 38.9597 39 6 -0.0813 24.6350 39.1026 -Times_New_Roman.ttf 66 7 25.4883 38.9668 40 w 13.0619 42.0012 27.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 41 T -0.0068 32.3248 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 42 M 0.3761 50.8363 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 43 G -0.9844 40.3777 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 44 b -1.7143 26.9520 42.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 45 9 0.0387 24.2671 39.1149 -Times_New_Roman.ttf 66 7 25.4883 38.9668 46 ; 11.9102 8.5769 37.1560 -Times_New_Roman.ttf 66 7 25.4883 38.9668 47 D 0.2926 39.5054 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 48 L -0.0140 33.1439 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 49 y 12.9105 29.1112 38.6301 -Times_New_Roman.ttf 66 7 25.4883 38.9668 50 ‘ -1.2410 8.5769 14.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 51 \ -1.9128 16.8851 42.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 52 R 0.0889 39.5470 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 53 < 4.2504 30.8172 29.1949 -Times_New_Roman.ttf 66 7 25.4883 38.9668 54 4 0.0180 25.4620 39.1149 -Times_New_Roman.ttf 66 7 25.4883 38.9668 55 8 -0.1953 22.7514 39.1149 -Times_New_Roman.ttf 66 7 25.4883 38.9668 56 0 0.0152 24.6301 39.1149 -Times_New_Roman.ttf 66 7 25.4883 38.9668 57 A -1.0096 42.0000 40.1617 -Times_New_Roman.ttf 66 7 25.4883 38.9668 58 E -0.0570 34.1502 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 59 B 0.0240 34.7661 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 60 v 12.7261 29.7477 27.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 61 k -1.8639 28.5111 40.8051 -Times_New_Roman.ttf 66 7 25.4883 38.9668 62 J -0.0946 20.9143 40.1617 -Times_New_Roman.ttf 66 7 25.4883 38.9668 63 U -0.0751 40.9807 40.1617 -Times_New_Roman.ttf 66 7 25.4883 38.9668 64 j -1.8177 16.0484 53.4620 -Times_New_Roman.ttf 66 7 25.4883 38.9668 65 ( -1.6067 15.8383 52.6957 -Times_New_Roman.ttf 66 7 25.4883 38.9668 66 7 -0.1389 25.4883 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 67 § -0.2315 20.6180 50.9240 -Times_New_Roman.ttf 66 7 25.4883 38.9668 68 $ -2.9687 23.6237 45.6650 -Times_New_Roman.ttf 66 7 25.4883 38.9668 69 € -0.2070 29.1949 39.1149 -Times_New_Roman.ttf 66 7 25.4883 38.9668 70 / -2.1717 17.5847 42.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 71 C -1.1874 34.5501 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 72 * -1.6105 20.0652 24.4140 -Times_New_Roman.ttf 66 7 25.4883 38.9668 73 ” -1.2863 21.5302 14.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 74 ? -1.0081 19.9342 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 75 { -1.6604 17.0320 52.6957 -Times_New_Roman.ttf 66 7 25.4883 38.9668 76 } -1.4441 17.0320 52.6957 -Times_New_Roman.ttf 66 7 25.4883 38.9668 77 , 34.9979 8.5769 14.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 78 I 0.2883 16.7540 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 79 ° -1.3525 17.5847 17.5847 -Times_New_Roman.ttf 66 7 25.4883 38.9668 80 K -0.2397 41.1680 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 81 H 0.1123 40.9305 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 82 q 11.7896 26.9520 39.8250 -Times_New_Roman.ttf 66 7 25.4883 38.9668 83 & -1.0430 41.3566 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 84 ’ -1.4779 8.5769 14.0000 -Times_New_Roman.ttf 66 7 25.4883 38.9668 85 [ -0.5009 12.6569 51.2203 -Times_New_Roman.ttf 66 7 25.4883 38.9668 86 - 22.7737 15.1949 5.2070 -Times_New_Roman.ttf 66 7 25.4883 38.9668 87 Y -0.3036 41.7612 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 88 Q -1.1805 37.9463 51.1285 -Times_New_Roman.ttf 66 7 25.4883 38.9668 89 " -1.3702 14.9789 16.3898 -Times_New_Roman.ttf 66 7 25.4883 38.9668 90 ! -1.3813 5.2070 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 91 x 13.2362 28.4678 25.9731 -Times_New_Roman.ttf 66 7 25.4883 38.9668 92 ) -1.4589 15.8383 52.6957 -Times_New_Roman.ttf 66 7 25.4883 38.9668 93 = 13.2667 30.1750 12.0135 -Times_New_Roman.ttf 66 7 25.4883 38.9668 94 + 4.3488 30.3898 30.3898 -Times_New_Roman.ttf 66 7 25.4883 38.9668 95 X -0.1600 42.0000 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 96 » 11.8534 24.9093 27.1680 -Times_New_Roman.ttf 66 7 25.4883 38.9668 97 ' -1.2772 5.2070 16.3898 -Times_New_Roman.ttf 66 7 25.4883 38.9668 98 ¢ 1.0862 21.9610 47.5712 -Times_New_Roman.ttf 66 7 25.4883 38.9668 99 Z -0.1292 33.9746 38.9668 -Times_New_Roman.ttf 66 7 25.4883 38.9668 100 > 4.4330 30.8172 29.1949 -Times_New_Roman.ttf 66 7 25.4883 38.9668 101 ® -0.9073 40.3777 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 102 © -1.2439 40.3777 41.3566 -Times_New_Roman.ttf 66 7 25.4883 38.9668 103 ] -0.6833 12.6569 51.2203 -Times_New_Roman.ttf 66 7 25.4883 38.9668 104 é -1.0865 22.1496 41.0199 -Times_New_Roman.ttf 66 7 25.4883 38.9668 105 z 13.0739 23.5833 25.9731 -Times_New_Roman.ttf 66 7 25.4883 38.9668 106 _ 49.1555 30.0269 2.3898 -Times_New_Roman.ttf 66 7 25.4883 38.9668 107 ¥ -0.2590 31.4941 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 1 t 4.7770 16.5784 35.7450 -Times_New_Roman.ttf 67 § 20.6180 50.9240 2 h -1.3801 28.4261 40.8051 -Times_New_Roman.ttf 67 § 20.6180 50.9240 3 a 12.4347 24.3234 28.3630 -Times_New_Roman.ttf 67 § 20.6180 50.9240 4 n 12.2512 28.4261 27.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 5 P 0.5159 30.0702 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 6 o 12.2022 25.1828 28.3630 -Times_New_Roman.ttf 67 § 20.6180 50.9240 7 e 12.4836 22.1496 28.3630 -Times_New_Roman.ttf 67 § 20.6124 50.9515 8 : 12.3931 5.2134 28.3500 -Times_New_Roman.ttf 67 § 20.6180 50.9240 9 r 12.3829 19.2070 27.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 10 l -1.6698 13.2312 40.8051 -Times_New_Roman.ttf 67 § 20.6180 50.9240 11 i -1.3728 13.2312 40.8051 -Times_New_Roman.ttf 67 § 20.6124 50.9515 12 1 0.2375 15.9913 39.1026 -Times_New_Roman.ttf 67 § 20.6124 50.9515 13 | -1.2951 2.3814 53.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 14 N 0.4880 43.0064 40.1617 -Times_New_Roman.ttf 67 § 20.6180 50.9240 15 f -1.5124 23.6237 40.8051 -Times_New_Roman.ttf 67 § 20.6180 50.9240 16 g 12.1264 26.7407 39.8250 -Times_New_Roman.ttf 67 § 20.6180 50.9240 17 d -1.4559 27.3566 42.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 18 W 0.4966 55.7208 40.1617 -Times_New_Roman.ttf 67 § 20.6180 50.9240 19 s 12.2166 17.7329 28.3630 -Times_New_Roman.ttf 67 § 20.6180 50.9240 20 c 12.5706 22.1496 28.3630 -Times_New_Roman.ttf 67 § 20.6180 50.9240 21 u 13.3325 28.6422 27.1680 -Times_New_Roman.ttf 67 § 20.6124 50.9515 22 3 0.3041 21.3876 39.1026 -Times_New_Roman.ttf 67 § 20.6124 50.9515 23 ~ 19.9573 29.8907 7.5948 -Times_New_Roman.ttf 67 § 20.6124 50.9515 24 # -1.3354 26.1769 40.8093 -Times_New_Roman.ttf 67 § 20.6180 50.9240 25 O -0.9040 37.9463 41.3566 -Times_New_Roman.ttf 67 § 20.6124 50.9515 26 ` 0.5243 8.2536 9.4443 -Times_New_Roman.ttf 67 § 20.6124 50.9515 27 @ -1.2836 49.5948 54.8093 -Times_New_Roman.ttf 67 § 20.6180 50.9240 28 F 0.1595 29.5579 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 29 S -1.0180 24.9668 41.5452 -Times_New_Roman.ttf 67 § 20.6180 50.9240 30 p 12.3296 26.9520 39.8250 -Times_New_Roman.ttf 67 § 20.6124 50.9515 31 “ -0.9980 21.7123 14.0000 -Times_New_Roman.ttf 67 § 20.6124 50.9515 32 % -0.5116 46.5375 41.3411 -Times_New_Roman.ttf 67 § 20.6124 50.9515 33 £ 0.2958 26.1504 40.2933 -Times_New_Roman.ttf 67 § 20.6124 50.9515 34 . 35.7018 5.2134 5.2134 -Times_New_Roman.ttf 67 § 20.6124 50.9515 35 2 0.2716 25.4757 39.1026 -Times_New_Roman.ttf 67 § 20.6124 50.9515 36 5 0.6741 22.0453 38.9597 -Times_New_Roman.ttf 67 § 20.6180 50.9240 37 m 12.3458 43.6210 27.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 38 V 0.5693 42.2148 40.1617 -Times_New_Roman.ttf 67 § 20.6124 50.9515 39 6 0.4060 24.6350 39.1026 -Times_New_Roman.ttf 67 § 20.6180 50.9240 40 w 13.2799 42.0012 27.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 41 T 0.9316 32.3248 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 42 M 0.5726 50.8363 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 43 G -0.6729 40.3777 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 44 b -1.2628 26.9520 42.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 45 9 0.5144 24.2671 39.1149 -Times_New_Roman.ttf 67 § 20.6180 50.9240 46 ; 12.2069 8.5769 37.1560 -Times_New_Roman.ttf 67 § 20.6180 50.9240 47 D 0.5039 39.5054 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 48 L 0.2276 33.1439 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 49 y 13.6387 29.1112 38.6301 -Times_New_Roman.ttf 67 § 20.6180 50.9240 50 ‘ -0.9793 8.5769 14.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 51 \ -1.2715 16.8851 42.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 52 R 0.4453 39.5470 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 53 < 4.8042 30.8172 29.1949 -Times_New_Roman.ttf 67 § 20.6180 50.9240 54 4 0.3312 25.4620 39.1149 -Times_New_Roman.ttf 67 § 20.6180 50.9240 55 8 0.4522 22.7514 39.1149 -Times_New_Roman.ttf 67 § 20.6180 50.9240 56 0 0.0819 24.6301 39.1149 -Times_New_Roman.ttf 67 § 20.6180 50.9240 57 A -0.7156 42.0000 40.1617 -Times_New_Roman.ttf 67 § 20.6180 50.9240 58 E 0.4111 34.1502 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 59 B 0.4924 34.7661 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 60 v 13.4011 29.7477 27.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 61 k -1.2628 28.5111 40.8051 -Times_New_Roman.ttf 67 § 20.6180 50.9240 62 J 0.4374 20.9143 40.1617 -Times_New_Roman.ttf 67 § 20.6180 50.9240 63 U 0.3636 40.9807 40.1617 -Times_New_Roman.ttf 67 § 20.6180 50.9240 64 j -1.3060 16.0484 53.4620 -Times_New_Roman.ttf 67 § 20.6180 50.9240 65 ( -0.8662 15.8383 52.6957 -Times_New_Roman.ttf 67 § 20.6180 50.9240 66 7 0.5635 25.4883 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 67 § 0.0418 20.6180 50.9240 -Times_New_Roman.ttf 67 § 20.6180 50.9240 68 $ -2.2554 23.6237 45.6650 -Times_New_Roman.ttf 67 § 20.6180 50.9240 69 € 0.3971 29.1949 39.1149 -Times_New_Roman.ttf 67 § 20.6180 50.9240 70 / -1.4700 17.5847 42.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 71 C -0.6126 34.5501 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 72 * -1.1719 20.0652 24.4140 -Times_New_Roman.ttf 67 § 20.6180 50.9240 73 ” -0.7083 21.5302 14.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 74 ? -0.6205 19.9342 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 75 { -1.3985 17.0320 52.6957 -Times_New_Roman.ttf 67 § 20.6180 50.9240 76 } -0.8321 17.0320 52.6957 -Times_New_Roman.ttf 67 § 20.6180 50.9240 77 , 35.4129 8.5769 14.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 78 I 0.2920 16.7540 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 79 ° -0.4862 17.5847 17.5847 -Times_New_Roman.ttf 67 § 20.6180 50.9240 80 K 0.4158 41.1680 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 81 H 0.6018 40.9305 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 82 q 12.2346 26.9520 39.8250 -Times_New_Roman.ttf 67 § 20.6180 50.9240 83 & -0.9165 41.3566 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 84 ’ -0.6521 8.5769 14.0000 -Times_New_Roman.ttf 67 § 20.6180 50.9240 85 [ -0.1481 12.6569 51.2203 -Times_New_Roman.ttf 67 § 20.6180 50.9240 86 - 23.3685 15.1949 5.2070 -Times_New_Roman.ttf 67 § 20.6180 50.9240 87 Y 0.7219 41.7612 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 88 Q -0.7429 37.9463 51.1285 -Times_New_Roman.ttf 67 § 20.6180 50.9240 89 " -0.7982 14.9789 16.3898 -Times_New_Roman.ttf 67 § 20.6180 50.9240 90 ! -0.7630 5.2070 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 91 x 13.6158 28.4678 25.9731 -Times_New_Roman.ttf 67 § 20.6180 50.9240 92 ) -1.2068 15.8383 52.6957 -Times_New_Roman.ttf 67 § 20.6180 50.9240 93 = 13.7333 30.1750 12.0135 -Times_New_Roman.ttf 67 § 20.6180 50.9240 94 + 5.0704 30.3898 30.3898 -Times_New_Roman.ttf 67 § 20.6180 50.9240 95 X 0.2243 42.0000 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 96 » 12.0749 24.9093 27.1680 -Times_New_Roman.ttf 67 § 20.6180 50.9240 97 ' -0.9470 5.2070 16.3898 -Times_New_Roman.ttf 67 § 20.6180 50.9240 98 ¢ 1.8625 21.9610 47.5712 -Times_New_Roman.ttf 67 § 20.6180 50.9240 99 Z 0.4356 33.9746 38.9668 -Times_New_Roman.ttf 67 § 20.6180 50.9240 100 > 4.6710 30.8172 29.1949 -Times_New_Roman.ttf 67 § 20.6180 50.9240 101 ® -0.6079 40.3777 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 102 © -0.6363 40.3777 41.3566 -Times_New_Roman.ttf 67 § 20.6180 50.9240 103 ] -0.0020 12.6569 51.2203 -Times_New_Roman.ttf 67 § 20.6180 50.9240 104 é -0.3914 22.1496 41.0199 -Times_New_Roman.ttf 67 § 20.6180 50.9240 105 z 13.4605 23.5833 25.9731 -Times_New_Roman.ttf 67 § 20.6180 50.9240 106 _ 49.7458 30.0269 2.3898 -Times_New_Roman.ttf 67 § 20.6180 50.9240 107 ¥ 0.6672 31.4941 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 1 t 7.1467 16.5784 35.7450 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 2 h 1.0785 28.4261 40.8051 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 3 a 14.7755 24.3234 28.3630 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 4 n 14.6708 28.4261 27.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 5 P 2.8987 30.0702 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 6 o 14.5968 25.1828 28.3630 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 7 e 14.8558 22.1496 28.3630 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 8 : 14.7380 5.2134 28.3500 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 9 r 14.5782 19.2070 27.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 10 l 1.0170 13.2312 40.8051 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 11 i 0.9954 13.2312 40.8051 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 12 1 2.8166 15.9913 39.1026 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 13 | 1.0423 2.3814 53.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 14 N 3.1120 43.0064 40.1617 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 15 f 1.2721 23.6237 40.8051 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 16 g 14.7010 26.7407 39.8250 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 17 d 1.0704 27.3566 42.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 18 W 2.7019 55.7208 40.1617 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 19 s 14.6184 17.7329 28.3630 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 20 c 14.9626 22.1496 28.3630 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 21 u 15.9259 28.6422 27.1680 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 22 3 2.7962 21.3876 39.1026 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 23 ~ 22.3762 29.8907 7.5948 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 24 # 1.2855 26.1769 40.8093 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 25 O 1.7075 37.9463 41.3566 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 26 ` 2.5720 8.2536 9.4443 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 27 @ 1.0478 49.5948 54.8093 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 28 F 2.8271 29.5579 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 29 S 1.6395 24.9668 41.5452 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 30 p 14.8482 26.9520 39.8250 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 31 “ 1.7040 21.7123 14.0000 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 32 % 1.6040 46.5375 41.3411 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 33 £ 2.6744 26.1504 40.2933 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 34 . 37.8887 5.2134 5.2134 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 35 2 2.9016 25.4757 39.1026 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 36 5 2.9909 22.0453 38.9597 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 37 m 14.6012 43.6210 27.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 38 V 2.9754 42.2148 40.1617 -Times_New_Roman.ttf 68 $ 23.6262 45.6495 39 6 2.9173 24.6350 39.1026 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 40 w 15.9478 42.0012 27.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 41 T 2.8390 32.3248 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 42 M 2.9351 50.8363 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 43 G 1.7566 40.3777 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 44 b 1.2703 26.9520 42.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 45 9 2.4031 24.2671 39.1149 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 46 ; 14.7607 8.5769 37.1560 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 47 D 3.0081 39.5054 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 48 L 3.1805 33.1439 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 49 y 15.8489 29.1112 38.6301 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 50 ‘ 1.6887 8.5769 14.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 51 \ 1.1019 16.8851 42.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 52 R 3.1931 39.5470 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 53 < 7.3141 30.8172 29.1949 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 54 4 2.7369 25.4620 39.1149 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 55 8 2.8060 22.7514 39.1149 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 56 0 2.9152 24.6301 39.1149 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 57 A 1.8477 42.0000 40.1617 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 58 E 2.7030 34.1502 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 59 B 2.9653 34.7661 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 60 v 15.8863 29.7477 27.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 61 k 1.0752 28.5111 40.8051 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 62 J 2.9740 20.9143 40.1617 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 63 U 2.7160 40.9807 40.1617 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 64 j 1.1064 16.0484 53.4620 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 65 ( 1.3670 15.8383 52.6957 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 66 7 2.9221 25.4883 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 67 § 2.4907 20.6180 50.9240 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 68 $ 0.1868 23.6237 45.6650 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 69 € 2.7693 29.1949 39.1149 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 70 / 1.2572 17.5847 42.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 71 C 1.6243 34.5501 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 72 * 1.1309 20.0652 24.4140 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 73 ” 1.5521 21.5302 14.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 74 ? 1.6416 19.9342 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 75 { 1.1152 17.0320 52.6957 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 76 } 1.4587 17.0320 52.6957 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 77 , 37.9719 8.5769 14.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 78 I 3.1527 16.7540 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 79 ° 1.9593 17.5847 17.5847 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 80 K 3.1845 41.1680 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 81 H 2.7923 40.9305 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 82 q 14.6651 26.9520 39.8250 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 83 & 1.7420 41.3566 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 84 ’ 1.7988 8.5769 14.0000 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 85 [ 2.1995 12.6569 51.2203 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 86 - 25.4191 15.1949 5.2070 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 87 Y 3.0320 41.7612 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 88 Q 1.7578 37.9463 51.1285 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 89 " 1.6008 14.9789 16.3898 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 90 ! 1.6210 5.2070 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 91 x 15.9071 28.4678 25.9731 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 92 ) 1.2031 15.8383 52.6957 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 93 = 16.1510 30.1750 12.0135 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 94 + 7.4087 30.3898 30.3898 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 95 X 3.0063 42.0000 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 96 » 14.3748 24.9093 27.1680 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 97 ' 1.9697 5.2070 16.3898 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 98 ¢ 4.2200 21.9610 47.5712 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 99 Z 2.8952 33.9746 38.9668 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 100 > 7.3559 30.8172 29.1949 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 101 ® 2.0055 40.3777 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 102 © 1.9583 40.3777 41.3566 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 103 ] 2.1159 12.6569 51.2203 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 104 é 2.2791 22.1496 41.0199 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 105 z 15.9079 23.5833 25.9731 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 106 _ 52.2302 30.0269 2.3898 -Times_New_Roman.ttf 68 $ 23.6237 45.6650 107 ¥ 2.8703 31.4941 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 1 t 4.6005 16.5784 35.7450 -Times_New_Roman.ttf 69 € 29.1949 39.1149 2 h -1.6181 28.4261 40.8051 -Times_New_Roman.ttf 69 € 29.1949 39.1149 3 a 12.2962 24.3234 28.3630 -Times_New_Roman.ttf 69 € 29.1949 39.1149 4 n 11.8108 28.4261 27.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 5 P 0.0963 30.0702 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 6 o 12.0175 25.1828 28.3630 -Times_New_Roman.ttf 69 € 29.1949 39.1149 7 e 12.1649 22.1496 28.3630 -Times_New_Roman.ttf 69 € 29.1907 39.1026 8 : 11.5523 5.2134 28.3500 -Times_New_Roman.ttf 69 € 29.1949 39.1149 9 r 11.9088 19.2070 27.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 10 l -1.4397 13.2312 40.8051 -Times_New_Roman.ttf 69 € 29.1949 39.1149 11 i -1.9497 13.2312 40.8051 -Times_New_Roman.ttf 69 € 29.1907 39.1026 12 1 -0.0955 15.9913 39.1026 -Times_New_Roman.ttf 69 € 29.1907 39.1026 13 | -1.5871 2.3814 53.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 14 N 0.0280 43.0064 40.1617 -Times_New_Roman.ttf 69 € 29.1949 39.1149 15 f -1.7301 23.6237 40.8051 -Times_New_Roman.ttf 69 € 29.1949 39.1149 16 g 12.2681 26.7407 39.8250 -Times_New_Roman.ttf 69 € 29.1949 39.1149 17 d -1.7334 27.3566 42.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 18 W 0.0107 55.7208 40.1617 -Times_New_Roman.ttf 69 € 29.1949 39.1149 19 s 11.9229 17.7329 28.3630 -Times_New_Roman.ttf 69 € 29.1949 39.1149 20 c 11.8432 22.1496 28.3630 -Times_New_Roman.ttf 69 € 29.1949 39.1149 21 u 13.6592 28.6422 27.1680 -Times_New_Roman.ttf 69 € 29.1907 39.1026 22 3 -0.1219 21.3876 39.1026 -Times_New_Roman.ttf 69 € 29.1907 39.1026 23 ~ 19.3500 29.8907 7.5948 -Times_New_Roman.ttf 69 € 29.1907 39.1026 24 # -1.7678 26.1769 40.8093 -Times_New_Roman.ttf 69 € 29.1949 39.1149 25 O -1.1357 37.9463 41.3566 -Times_New_Roman.ttf 69 € 29.1907 39.1026 26 ` -0.4994 8.2536 9.4443 -Times_New_Roman.ttf 69 € 29.1907 39.1026 27 @ -1.8966 49.5948 54.8093 -Times_New_Roman.ttf 69 € 29.1949 39.1149 28 F 0.0399 29.5579 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 29 S -1.3987 24.9668 41.5452 -Times_New_Roman.ttf 69 € 29.1949 39.1149 30 p 11.8763 26.9520 39.8250 -Times_New_Roman.ttf 69 € 29.1907 39.1026 31 “ -1.0621 21.7123 14.0000 -Times_New_Roman.ttf 69 € 29.1907 39.1026 32 % -1.0818 46.5375 41.3411 -Times_New_Roman.ttf 69 € 29.1907 39.1026 33 £ -0.1766 26.1504 40.2933 -Times_New_Roman.ttf 69 € 29.1907 39.1026 34 . 34.8988 5.2134 5.2134 -Times_New_Roman.ttf 69 € 29.1907 39.1026 35 2 -0.0097 25.4757 39.1026 -Times_New_Roman.ttf 69 € 29.1907 39.1026 36 5 0.2740 22.0453 38.9597 -Times_New_Roman.ttf 69 € 29.1949 39.1149 37 m 11.9425 43.6210 27.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 38 V 0.3946 42.2148 40.1617 -Times_New_Roman.ttf 69 € 29.1907 39.1026 39 6 0.0801 24.6350 39.1026 -Times_New_Roman.ttf 69 € 29.1949 39.1149 40 w 13.0461 42.0012 27.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 41 T 0.3349 32.3248 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 42 M 0.2164 50.8363 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 43 G -0.8575 40.3777 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 44 b -1.9140 26.9520 42.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 45 9 -0.2249 24.2671 39.1149 -Times_New_Roman.ttf 69 € 29.1949 39.1149 46 ; 11.9589 8.5769 37.1560 -Times_New_Roman.ttf 69 € 29.1949 39.1149 47 D 0.0549 39.5054 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 48 L 0.1434 33.1439 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 49 y 13.2940 29.1112 38.6301 -Times_New_Roman.ttf 69 € 29.1949 39.1149 50 ‘ -0.9068 8.5769 14.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 51 \ -1.6099 16.8851 42.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 52 R 0.2295 39.5470 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 53 < 4.7627 30.8172 29.1949 -Times_New_Roman.ttf 69 € 29.1949 39.1149 54 4 0.2724 25.4620 39.1149 -Times_New_Roman.ttf 69 € 29.1949 39.1149 55 8 0.0620 22.7514 39.1149 -Times_New_Roman.ttf 69 € 29.1949 39.1149 56 0 -0.3345 24.6301 39.1149 -Times_New_Roman.ttf 69 € 29.1949 39.1149 57 A -1.1338 42.0000 40.1617 -Times_New_Roman.ttf 69 € 29.1949 39.1149 58 E -0.0580 34.1502 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 59 B 0.1972 34.7661 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 60 v 13.4992 29.7477 27.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 61 k -1.8622 28.5111 40.8051 -Times_New_Roman.ttf 69 € 29.1949 39.1149 62 J -0.0782 20.9143 40.1617 -Times_New_Roman.ttf 69 € 29.1949 39.1149 63 U 0.1250 40.9807 40.1617 -Times_New_Roman.ttf 69 € 29.1949 39.1149 64 j -1.5240 16.0484 53.4620 -Times_New_Roman.ttf 69 € 29.1949 39.1149 65 ( -1.3922 15.8383 52.6957 -Times_New_Roman.ttf 69 € 29.1949 39.1149 66 7 0.2471 25.4883 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 67 § -0.3682 20.6180 50.9240 -Times_New_Roman.ttf 69 € 29.1949 39.1149 68 $ -3.0751 23.6237 45.6650 -Times_New_Roman.ttf 69 € 29.1949 39.1149 69 € -0.2975 29.1949 39.1149 -Times_New_Roman.ttf 69 € 29.1949 39.1149 70 / -1.6339 17.5847 42.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 71 C -1.1627 34.5501 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 72 * -1.7061 20.0652 24.4140 -Times_New_Roman.ttf 69 € 29.1949 39.1149 73 ” -1.0301 21.5302 14.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 74 ? -0.8806 19.9342 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 75 { -1.3729 17.0320 52.6957 -Times_New_Roman.ttf 69 € 29.1949 39.1149 76 } -1.3723 17.0320 52.6957 -Times_New_Roman.ttf 69 € 29.1949 39.1149 77 , 34.9032 8.5769 14.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 78 I 0.0564 16.7540 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 79 ° -1.1338 17.5847 17.5847 -Times_New_Roman.ttf 69 € 29.1949 39.1149 80 K 0.4032 41.1680 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 81 H 0.0660 40.9305 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 82 q 11.8181 26.9520 39.8250 -Times_New_Roman.ttf 69 € 29.1949 39.1149 83 & -0.8823 41.3566 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 84 ’ -1.3102 8.5769 14.0000 -Times_New_Roman.ttf 69 € 29.1949 39.1149 85 [ -0.3827 12.6569 51.2203 -Times_New_Roman.ttf 69 € 29.1949 39.1149 86 - 22.8954 15.1949 5.2070 -Times_New_Roman.ttf 69 € 29.1949 39.1149 87 Y -0.0551 41.7612 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 88 Q -0.8727 37.9463 51.1285 -Times_New_Roman.ttf 69 € 29.1949 39.1149 89 " -1.0655 14.9789 16.3898 -Times_New_Roman.ttf 69 € 29.1949 39.1149 90 ! -1.1770 5.2070 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 91 x 12.8924 28.4678 25.9731 -Times_New_Roman.ttf 69 € 29.1949 39.1149 92 ) -1.5578 15.8383 52.6957 -Times_New_Roman.ttf 69 € 29.1949 39.1149 93 = 13.4188 30.1750 12.0135 -Times_New_Roman.ttf 69 € 29.1949 39.1149 94 + 4.5402 30.3898 30.3898 -Times_New_Roman.ttf 69 € 29.1949 39.1149 95 X 0.3759 42.0000 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 96 » 12.2001 24.9093 27.1680 -Times_New_Roman.ttf 69 € 29.1949 39.1149 97 ' -1.1410 5.2070 16.3898 -Times_New_Roman.ttf 69 € 29.1949 39.1149 98 ¢ 1.3043 21.9610 47.5712 -Times_New_Roman.ttf 69 € 29.1949 39.1149 99 Z 0.1380 33.9746 38.9668 -Times_New_Roman.ttf 69 € 29.1949 39.1149 100 > 4.4922 30.8172 29.1949 -Times_New_Roman.ttf 69 € 29.1949 39.1149 101 ® -1.1255 40.3777 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 102 © -1.2216 40.3777 41.3566 -Times_New_Roman.ttf 69 € 29.1949 39.1149 103 ] -0.4514 12.6569 51.2203 -Times_New_Roman.ttf 69 € 29.1949 39.1149 104 é -0.7504 22.1496 41.0199 -Times_New_Roman.ttf 69 € 29.1949 39.1149 105 z 13.1457 23.5833 25.9731 -Times_New_Roman.ttf 69 € 29.1949 39.1149 106 _ 49.5579 30.0269 2.3898 -Times_New_Roman.ttf 69 € 29.1949 39.1149 107 ¥ -0.0300 31.4941 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 1 t 6.4741 16.5784 35.7450 -Times_New_Roman.ttf 70 / 17.5847 42.0000 2 h -0.2426 28.4261 40.8051 -Times_New_Roman.ttf 70 / 17.5847 42.0000 3 a 13.6788 24.3234 28.3630 -Times_New_Roman.ttf 70 / 17.5847 42.0000 4 n 13.4564 28.4261 27.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 5 P 1.7335 30.0702 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 6 o 13.6284 25.1828 28.3630 -Times_New_Roman.ttf 70 / 17.5847 42.0000 7 e 13.7806 22.1496 28.3630 -Times_New_Roman.ttf 70 / 17.5721 42.0000 8 : 13.7658 5.2134 28.3500 -Times_New_Roman.ttf 70 / 17.5847 42.0000 9 r 13.7691 19.2070 27.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 10 l 0.0352 13.2312 40.8051 -Times_New_Roman.ttf 70 / 17.5847 42.0000 11 i 0.2397 13.2312 40.8051 -Times_New_Roman.ttf 70 / 17.5721 42.0000 12 1 1.7924 15.9913 39.1026 -Times_New_Roman.ttf 70 / 17.5721 42.0000 13 | 0.1027 2.3814 53.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 14 N 1.8383 43.0064 40.1617 -Times_New_Roman.ttf 70 / 17.5847 42.0000 15 f -0.1788 23.6237 40.8051 -Times_New_Roman.ttf 70 / 17.5847 42.0000 16 g 13.7426 26.7407 39.8250 -Times_New_Roman.ttf 70 / 17.5847 42.0000 17 d -0.1647 27.3566 42.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 18 W 1.6961 55.7208 40.1617 -Times_New_Roman.ttf 70 / 17.5847 42.0000 19 s 13.7220 17.7329 28.3630 -Times_New_Roman.ttf 70 / 17.5847 42.0000 20 c 13.8609 22.1496 28.3630 -Times_New_Roman.ttf 70 / 17.5847 42.0000 21 u 14.9515 28.6422 27.1680 -Times_New_Roman.ttf 70 / 17.5721 42.0000 22 3 1.7151 21.3876 39.1026 -Times_New_Roman.ttf 70 / 17.5721 42.0000 23 ~ 21.0021 29.8907 7.5948 -Times_New_Roman.ttf 70 / 17.5721 42.0000 24 # -0.2376 26.1769 40.8093 -Times_New_Roman.ttf 70 / 17.5847 42.0000 25 O 0.8847 37.9463 41.3566 -Times_New_Roman.ttf 70 / 17.5721 42.0000 26 ` 1.3533 8.2536 9.4443 -Times_New_Roman.ttf 70 / 17.5721 42.0000 27 @ 0.0422 49.5948 54.8093 -Times_New_Roman.ttf 70 / 17.5847 42.0000 28 F 1.9805 29.5579 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 29 S 0.4160 24.9668 41.5452 -Times_New_Roman.ttf 70 / 17.5847 42.0000 30 p 13.5420 26.9520 39.8250 -Times_New_Roman.ttf 70 / 17.5721 42.0000 31 “ 0.7863 21.7123 14.0000 -Times_New_Roman.ttf 70 / 17.5721 42.0000 32 % 0.4634 46.5375 41.3411 -Times_New_Roman.ttf 70 / 17.5721 42.0000 33 £ 1.7869 26.1504 40.2933 -Times_New_Roman.ttf 70 / 17.5721 42.0000 34 . 36.7065 5.2134 5.2134 -Times_New_Roman.ttf 70 / 17.5721 42.0000 35 2 1.7067 25.4757 39.1026 -Times_New_Roman.ttf 70 / 17.5721 42.0000 36 5 1.8308 22.0453 38.9597 -Times_New_Roman.ttf 70 / 17.5847 42.0000 37 m 13.4640 43.6210 27.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 38 V 1.7700 42.2148 40.1617 -Times_New_Roman.ttf 70 / 17.5721 42.0000 39 6 1.8188 24.6350 39.1026 -Times_New_Roman.ttf 70 / 17.5847 42.0000 40 w 14.6806 42.0012 27.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 41 T 1.7552 32.3248 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 42 M 2.1689 50.8363 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 43 G 0.7265 40.3777 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 44 b -0.1389 26.9520 42.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 45 9 1.6960 24.2671 39.1149 -Times_New_Roman.ttf 70 / 17.5847 42.0000 46 ; 13.3820 8.5769 37.1560 -Times_New_Roman.ttf 70 / 17.5847 42.0000 47 D 1.9657 39.5054 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 48 L 1.8196 33.1439 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 49 y 14.9349 29.1112 38.6301 -Times_New_Roman.ttf 70 / 17.5847 42.0000 50 ‘ 0.5996 8.5769 14.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 51 \ -0.0076 16.8851 42.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 52 R 1.6186 39.5470 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 53 < 6.1313 30.8172 29.1949 -Times_New_Roman.ttf 70 / 17.5847 42.0000 54 4 1.6503 25.4620 39.1149 -Times_New_Roman.ttf 70 / 17.5847 42.0000 55 8 1.5966 22.7514 39.1149 -Times_New_Roman.ttf 70 / 17.5847 42.0000 56 0 1.7392 24.6301 39.1149 -Times_New_Roman.ttf 70 / 17.5847 42.0000 57 A 0.5444 42.0000 40.1617 -Times_New_Roman.ttf 70 / 17.5847 42.0000 58 E 1.7984 34.1502 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 59 B 1.8451 34.7661 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 60 v 14.8791 29.7477 27.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 61 k -0.1662 28.5111 40.8051 -Times_New_Roman.ttf 70 / 17.5847 42.0000 62 J 1.8052 20.9143 40.1617 -Times_New_Roman.ttf 70 / 17.5847 42.0000 63 U 1.8383 40.9807 40.1617 -Times_New_Roman.ttf 70 / 17.5847 42.0000 64 j -0.0917 16.0484 53.4620 -Times_New_Roman.ttf 70 / 17.5847 42.0000 65 ( 0.2780 15.8383 52.6957 -Times_New_Roman.ttf 70 / 17.5847 42.0000 66 7 2.0103 25.4883 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 67 § 1.2408 20.6180 50.9240 -Times_New_Roman.ttf 70 / 17.5847 42.0000 68 $ -0.8521 23.6237 45.6650 -Times_New_Roman.ttf 70 / 17.5847 42.0000 69 € 1.7805 29.1949 39.1149 -Times_New_Roman.ttf 70 / 17.5847 42.0000 70 / -0.0975 17.5847 42.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 71 C 0.6314 34.5501 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 72 * 0.0255 20.0652 24.4140 -Times_New_Roman.ttf 70 / 17.5847 42.0000 73 ” 0.7020 21.5302 14.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 74 ? 0.6016 19.9342 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 75 { 0.1323 17.0320 52.6957 -Times_New_Roman.ttf 70 / 17.5847 42.0000 76 } 0.4410 17.0320 52.6957 -Times_New_Roman.ttf 70 / 17.5847 42.0000 77 , 36.9204 8.5769 14.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 78 I 1.7998 16.7540 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 79 ° 0.6861 17.5847 17.5847 -Times_New_Roman.ttf 70 / 17.5847 42.0000 80 K 1.8782 41.1680 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 81 H 1.6856 40.9305 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 82 q 13.5899 26.9520 39.8250 -Times_New_Roman.ttf 70 / 17.5847 42.0000 83 & 0.5570 41.3566 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 84 ’ 0.8226 8.5769 14.0000 -Times_New_Roman.ttf 70 / 17.5847 42.0000 85 [ 1.1032 12.6569 51.2203 -Times_New_Roman.ttf 70 / 17.5847 42.0000 86 - 24.3929 15.1949 5.2070 -Times_New_Roman.ttf 70 / 17.5847 42.0000 87 Y 1.9225 41.7612 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 88 Q 0.6314 37.9463 51.1285 -Times_New_Roman.ttf 70 / 17.5847 42.0000 89 " 0.3456 14.9789 16.3898 -Times_New_Roman.ttf 70 / 17.5847 42.0000 90 ! 0.4858 5.2070 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 91 x 14.9560 28.4678 25.9731 -Times_New_Roman.ttf 70 / 17.5847 42.0000 92 ) -0.0146 15.8383 52.6957 -Times_New_Roman.ttf 70 / 17.5847 42.0000 93 = 15.1048 30.1750 12.0135 -Times_New_Roman.ttf 70 / 17.5847 42.0000 94 + 6.1428 30.3898 30.3898 -Times_New_Roman.ttf 70 / 17.5847 42.0000 95 X 1.8104 42.0000 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 96 » 13.9406 24.9093 27.1680 -Times_New_Roman.ttf 70 / 17.5847 42.0000 97 ' 0.9827 5.2070 16.3898 -Times_New_Roman.ttf 70 / 17.5847 42.0000 98 ¢ 3.2546 21.9610 47.5712 -Times_New_Roman.ttf 70 / 17.5847 42.0000 99 Z 1.8743 33.9746 38.9668 -Times_New_Roman.ttf 70 / 17.5847 42.0000 100 > 6.0094 30.8172 29.1949 -Times_New_Roman.ttf 70 / 17.5847 42.0000 101 ® 0.8327 40.3777 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 102 © 0.8182 40.3777 41.3566 -Times_New_Roman.ttf 70 / 17.5847 42.0000 103 ] 1.1358 12.6569 51.2203 -Times_New_Roman.ttf 70 / 17.5847 42.0000 104 é 0.9772 22.1496 41.0199 -Times_New_Roman.ttf 70 / 17.5847 42.0000 105 z 14.8603 23.5833 25.9731 -Times_New_Roman.ttf 70 / 17.5847 42.0000 106 _ 51.1193 30.0269 2.3898 -Times_New_Roman.ttf 70 / 17.5847 42.0000 107 ¥ 1.9186 31.4941 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 1 t 5.3392 16.5784 35.7450 -Times_New_Roman.ttf 71 C 34.5501 41.3566 2 h -0.8496 28.4261 40.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 3 a 13.3681 24.3234 28.3630 -Times_New_Roman.ttf 71 C 34.5501 41.3566 4 n 12.9493 28.4261 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 5 P 1.0657 30.0702 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 6 o 13.1854 25.1828 28.3630 -Times_New_Roman.ttf 71 C 34.5501 41.3566 7 e 12.7209 22.1496 28.3630 -Times_New_Roman.ttf 71 C 34.5501 41.3566 8 : 12.9388 5.2070 28.3630 -Times_New_Roman.ttf 71 C 34.5501 41.3566 9 r 12.9527 19.2070 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 10 l -0.6660 13.2312 40.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 11 i -0.6822 13.2312 40.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 12 1 1.2097 15.9852 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 13 | -0.5934 2.3898 53.1828 -Times_New_Roman.ttf 71 C 34.5501 41.3566 14 N 1.1151 43.0064 40.1617 -Times_New_Roman.ttf 71 C 34.5501 41.3566 15 f -0.6103 23.6237 40.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 16 g 13.0278 26.7407 39.8250 -Times_New_Roman.ttf 71 C 34.5501 41.3566 17 d -0.5064 27.3566 42.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 18 W 1.1874 55.7208 40.1617 -Times_New_Roman.ttf 71 C 34.5501 41.3566 19 s 13.2261 17.7329 28.3630 -Times_New_Roman.ttf 71 C 34.5501 41.3566 20 c 12.9585 22.1496 28.3630 -Times_New_Roman.ttf 71 C 34.5501 41.3566 21 u 14.0180 28.6422 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 22 3 1.3532 21.3820 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 23 ~ 20.5463 29.9208 7.5968 -Times_New_Roman.ttf 71 C 34.5501 41.3566 24 # -0.4926 26.1892 40.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 25 O 0.1532 37.9463 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 26 ` 0.8479 8.2402 9.4352 -Times_New_Roman.ttf 71 C 34.5501 41.3566 27 @ -0.5841 49.5968 54.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 28 F 1.2986 29.5579 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 29 S -0.1497 24.9668 41.5452 -Times_New_Roman.ttf 71 C 34.5501 41.3566 30 p 13.1484 26.9520 39.8250 -Times_New_Roman.ttf 71 C 34.5501 41.3566 31 “ 0.2316 21.7187 14.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 32 % 0.0831 46.5061 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 33 £ 0.8273 26.1617 40.3098 -Times_New_Roman.ttf 71 C 34.5501 41.3566 34 . 36.3539 5.2070 5.2070 -Times_New_Roman.ttf 71 C 34.5501 41.3566 35 2 0.8578 25.4620 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 36 5 1.3759 22.0242 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 37 m 13.4557 43.6210 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 38 V 1.1593 42.2148 40.1617 -Times_New_Roman.ttf 71 C 34.5501 41.3566 39 6 1.2227 24.6301 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 40 w 14.0489 42.0012 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 41 T 1.3212 32.3248 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 42 M 1.1949 50.8363 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 43 G -0.0650 40.3777 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 44 b -0.5728 26.9520 42.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 45 9 1.0958 24.2671 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 46 ; 12.7628 8.5769 37.1560 -Times_New_Roman.ttf 71 C 34.5501 41.3566 47 D 1.0743 39.5054 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 48 L 1.2525 33.1439 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 49 y 14.0771 29.1112 38.6301 -Times_New_Roman.ttf 71 C 34.5501 41.3566 50 ‘ -0.1691 8.5769 14.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 51 \ -0.8865 16.8851 42.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 52 R 1.0748 39.5470 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 53 < 5.6402 30.8172 29.1949 -Times_New_Roman.ttf 71 C 34.5501 41.3566 54 4 1.3616 25.4620 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 55 8 1.4566 22.7514 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 56 0 1.0895 24.6301 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 57 A 0.1556 42.0000 40.1617 -Times_New_Roman.ttf 71 C 34.5501 41.3566 58 E 1.1874 34.1502 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 59 B 1.3856 34.7661 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 60 v 14.3110 29.7477 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 61 k -0.5991 28.5111 40.8051 -Times_New_Roman.ttf 71 C 34.5501 41.3566 62 J 1.1910 20.9143 40.1617 -Times_New_Roman.ttf 71 C 34.5501 41.3566 63 U 1.3143 40.9807 40.1617 -Times_New_Roman.ttf 71 C 34.5501 41.3566 64 j -0.9827 16.0484 53.4620 -Times_New_Roman.ttf 71 C 34.5501 41.3566 65 ( -0.3236 15.8383 52.6957 -Times_New_Roman.ttf 71 C 34.5501 41.3566 66 7 1.2882 25.4883 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 67 § 0.7098 20.6180 50.9240 -Times_New_Roman.ttf 71 C 34.5501 41.3566 68 $ -1.7571 23.6237 45.6650 -Times_New_Roman.ttf 71 C 34.5501 41.3566 69 € 1.2081 29.1949 39.1149 -Times_New_Roman.ttf 71 C 34.5501 41.3566 70 / -0.7783 17.5847 42.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 71 C -0.3864 34.5501 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 72 * -0.6632 20.0652 24.4140 -Times_New_Roman.ttf 71 C 34.5501 41.3566 73 ” -0.1068 21.5302 14.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 74 ? -0.1802 19.9342 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 75 { -0.3351 17.0320 52.6957 -Times_New_Roman.ttf 71 C 34.5501 41.3566 76 } -0.4045 17.0320 52.6957 -Times_New_Roman.ttf 71 C 34.5501 41.3566 77 , 36.2401 8.5769 14.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 78 I 1.0859 16.7540 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 79 ° 0.0078 17.5847 17.5847 -Times_New_Roman.ttf 71 C 34.5501 41.3566 80 K 1.2381 41.1680 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 81 H 1.3258 40.9305 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 82 q 13.4702 26.9520 39.8250 -Times_New_Roman.ttf 71 C 34.5501 41.3566 83 & 0.3315 41.3566 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 84 ’ -0.0519 8.5769 14.0000 -Times_New_Roman.ttf 71 C 34.5501 41.3566 85 [ 0.5026 12.6569 51.2203 -Times_New_Roman.ttf 71 C 34.5501 41.3566 86 - 23.7161 15.1949 5.2070 -Times_New_Roman.ttf 71 C 34.5501 41.3566 87 Y 1.3352 41.7612 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 88 Q -0.2040 37.9463 51.1285 -Times_New_Roman.ttf 71 C 34.5501 41.3566 89 " -0.0891 14.9789 16.3898 -Times_New_Roman.ttf 71 C 34.5501 41.3566 90 ! -0.1058 5.2070 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 91 x 14.1777 28.4678 25.9731 -Times_New_Roman.ttf 71 C 34.5501 41.3566 92 ) -0.0418 15.8383 52.6957 -Times_New_Roman.ttf 71 C 34.5501 41.3566 93 = 14.3970 30.1750 12.0135 -Times_New_Roman.ttf 71 C 34.5501 41.3566 94 + 5.5005 30.3898 30.3898 -Times_New_Roman.ttf 71 C 34.5501 41.3566 95 X 1.4247 42.0000 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 96 » 13.0397 24.9093 27.1680 -Times_New_Roman.ttf 71 C 34.5501 41.3566 97 ' -0.1407 5.2070 16.3898 -Times_New_Roman.ttf 71 C 34.5501 41.3566 98 ¢ 2.4885 21.9610 47.5712 -Times_New_Roman.ttf 71 C 34.5501 41.3566 99 Z 1.4188 33.9746 38.9668 -Times_New_Roman.ttf 71 C 34.5501 41.3566 100 > 5.4366 30.8172 29.1949 -Times_New_Roman.ttf 71 C 34.5501 41.3566 101 ® -0.0028 40.3777 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 102 © -0.1201 40.3777 41.3566 -Times_New_Roman.ttf 71 C 34.5501 41.3566 103 ] 0.6585 12.6569 51.2203 -Times_New_Roman.ttf 71 C 34.5501 41.3566 104 é 0.2978 22.1496 41.0199 -Times_New_Roman.ttf 71 C 34.5501 41.3566 105 z 14.1904 23.5833 25.9731 -Times_New_Roman.ttf 71 C 34.5501 41.3566 106 _ 50.3457 30.0269 2.3898 -Times_New_Roman.ttf 71 C 34.5501 41.3566 107 ¥ 1.1874 31.4941 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 1 t 6.4163 16.5784 35.7450 -Times_New_Roman.ttf 72 * 20.0652 24.4140 2 h -0.2113 28.4261 40.8051 -Times_New_Roman.ttf 72 * 20.0652 24.4140 3 a 13.5823 24.3234 28.3630 -Times_New_Roman.ttf 72 * 20.0652 24.4140 4 n 13.6529 28.4261 27.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 5 P 1.9537 30.0702 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 6 o 13.5735 25.1828 28.3630 -Times_New_Roman.ttf 72 * 20.0652 24.4140 7 e 13.3205 22.1496 28.3630 -Times_New_Roman.ttf 72 * 20.0794 24.4267 8 : 13.7940 5.2134 28.3500 -Times_New_Roman.ttf 72 * 20.0652 24.4140 9 r 13.5967 19.2070 27.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 10 l -0.0432 13.2312 40.8051 -Times_New_Roman.ttf 72 * 20.0652 24.4140 11 i 0.0586 13.2312 40.8051 -Times_New_Roman.ttf 72 * 20.0794 24.4267 12 1 1.8336 15.9913 39.1026 -Times_New_Roman.ttf 72 * 20.0794 24.4267 13 | -0.2525 2.3814 53.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 14 N 1.8531 43.0064 40.1617 -Times_New_Roman.ttf 72 * 20.0652 24.4140 15 f 0.1298 23.6237 40.8051 -Times_New_Roman.ttf 72 * 20.0652 24.4140 16 g 13.5732 26.7407 39.8250 -Times_New_Roman.ttf 72 * 20.0652 24.4140 17 d 0.1159 27.3566 42.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 18 W 1.5908 55.7208 40.1617 -Times_New_Roman.ttf 72 * 20.0652 24.4140 19 s 13.5453 17.7329 28.3630 -Times_New_Roman.ttf 72 * 20.0652 24.4140 20 c 13.6931 22.1496 28.3630 -Times_New_Roman.ttf 72 * 20.0652 24.4140 21 u 14.7205 28.6422 27.1680 -Times_New_Roman.ttf 72 * 20.0794 24.4267 22 3 1.6446 21.3876 39.1026 -Times_New_Roman.ttf 72 * 20.0794 24.4267 23 ~ 21.3027 29.8907 7.5948 -Times_New_Roman.ttf 72 * 20.0794 24.4267 24 # -0.0973 26.1769 40.8093 -Times_New_Roman.ttf 72 * 20.0652 24.4140 25 O 0.8524 37.9463 41.3566 -Times_New_Roman.ttf 72 * 20.0794 24.4267 26 ` 1.5998 8.2536 9.4443 -Times_New_Roman.ttf 72 * 20.0794 24.4267 27 @ 0.1027 49.5948 54.8093 -Times_New_Roman.ttf 72 * 20.0652 24.4140 28 F 1.6677 29.5579 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 29 S 0.6563 24.9668 41.5452 -Times_New_Roman.ttf 72 * 20.0652 24.4140 30 p 13.6410 26.9520 39.8250 -Times_New_Roman.ttf 72 * 20.0794 24.4267 31 “ 0.8682 21.7123 14.0000 -Times_New_Roman.ttf 72 * 20.0794 24.4267 32 % 0.7599 46.5375 41.3411 -Times_New_Roman.ttf 72 * 20.0794 24.4267 33 £ 1.7640 26.1504 40.2933 -Times_New_Roman.ttf 72 * 20.0794 24.4267 34 . 36.6781 5.2134 5.2134 -Times_New_Roman.ttf 72 * 20.0794 24.4267 35 2 1.7113 25.4757 39.1026 -Times_New_Roman.ttf 72 * 20.0794 24.4267 36 5 1.7300 22.0453 38.9597 -Times_New_Roman.ttf 72 * 20.0652 24.4140 37 m 13.7827 43.6210 27.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 38 V 1.7153 42.2148 40.1617 -Times_New_Roman.ttf 72 * 20.0794 24.4267 39 6 1.8949 24.6350 39.1026 -Times_New_Roman.ttf 72 * 20.0652 24.4140 40 w 14.7402 42.0012 27.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 41 T 1.8143 32.3248 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 42 M 1.8383 50.8363 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 43 G 0.6669 40.3777 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 44 b 0.1066 26.9520 42.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 45 9 1.8564 24.2671 39.1149 -Times_New_Roman.ttf 72 * 20.0652 24.4140 46 ; 13.7288 8.5769 37.1560 -Times_New_Roman.ttf 72 * 20.0652 24.4140 47 D 1.8057 39.5054 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 48 L 2.0037 33.1439 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 49 y 14.8526 29.1112 38.6301 -Times_New_Roman.ttf 72 * 20.0652 24.4140 50 ‘ 0.5934 8.5769 14.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 51 \ -0.0716 16.8851 42.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 52 R 1.8873 39.5470 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 53 < 6.1266 30.8172 29.1949 -Times_New_Roman.ttf 72 * 20.0652 24.4140 54 4 1.6868 25.4620 39.1149 -Times_New_Roman.ttf 72 * 20.0652 24.4140 55 8 1.8678 22.7514 39.1149 -Times_New_Roman.ttf 72 * 20.0652 24.4140 56 0 1.6099 24.6301 39.1149 -Times_New_Roman.ttf 72 * 20.0652 24.4140 57 A 0.6572 42.0000 40.1617 -Times_New_Roman.ttf 72 * 20.0652 24.4140 58 E 1.7909 34.1502 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 59 B 2.0689 34.7661 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 60 v 14.4966 29.7477 27.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 61 k -0.0312 28.5111 40.8051 -Times_New_Roman.ttf 72 * 20.0652 24.4140 62 J 1.9195 20.9143 40.1617 -Times_New_Roman.ttf 72 * 20.0652 24.4140 63 U 2.0128 40.9807 40.1617 -Times_New_Roman.ttf 72 * 20.0652 24.4140 64 j 0.1230 16.0484 53.4620 -Times_New_Roman.ttf 72 * 20.0652 24.4140 65 ( 0.5537 15.8383 52.6957 -Times_New_Roman.ttf 72 * 20.0652 24.4140 66 7 1.8704 25.4883 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 67 § 1.3387 20.6180 50.9240 -Times_New_Roman.ttf 72 * 20.0652 24.4140 68 $ -1.4133 23.6237 45.6650 -Times_New_Roman.ttf 72 * 20.0652 24.4140 69 € 1.6902 29.1949 39.1149 -Times_New_Roman.ttf 72 * 20.0652 24.4140 70 / -0.0432 17.5847 42.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 71 C 0.6275 34.5501 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 72 * 0.0136 20.0652 24.4140 -Times_New_Roman.ttf 72 * 20.0652 24.4140 73 ” 0.5261 21.5302 14.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 74 ? 0.7140 19.9342 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 75 { 0.2996 17.0320 52.6957 -Times_New_Roman.ttf 72 * 20.0652 24.4140 76 } 0.3346 17.0320 52.6957 -Times_New_Roman.ttf 72 * 20.0652 24.4140 77 , 36.5916 8.5769 14.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 78 I 1.6066 16.7540 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 79 ° 0.4714 17.5847 17.5847 -Times_New_Roman.ttf 72 * 20.0652 24.4140 80 K 1.9459 41.1680 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 81 H 1.5525 40.9305 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 82 q 13.6701 26.9520 39.8250 -Times_New_Roman.ttf 72 * 20.0652 24.4140 83 & 0.6434 41.3566 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 84 ’ 0.4402 8.5769 14.0000 -Times_New_Roman.ttf 72 * 20.0652 24.4140 85 [ 1.0985 12.6569 51.2203 -Times_New_Roman.ttf 72 * 20.0652 24.4140 86 - 24.6683 15.1949 5.2070 -Times_New_Roman.ttf 72 * 20.0652 24.4140 87 Y 1.8057 41.7612 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 88 Q 0.6035 37.9463 51.1285 -Times_New_Roman.ttf 72 * 20.0652 24.4140 89 " 0.7018 14.9789 16.3898 -Times_New_Roman.ttf 72 * 20.0652 24.4140 90 ! 0.5564 5.2070 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 91 x 14.8247 28.4678 25.9731 -Times_New_Roman.ttf 72 * 20.0652 24.4140 92 ) 0.3155 15.8383 52.6957 -Times_New_Roman.ttf 72 * 20.0652 24.4140 93 = 14.9328 30.1750 12.0135 -Times_New_Roman.ttf 72 * 20.0652 24.4140 94 + 6.2634 30.3898 30.3898 -Times_New_Roman.ttf 72 * 20.0652 24.4140 95 X 1.8157 42.0000 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 96 » 13.5841 24.9093 27.1680 -Times_New_Roman.ttf 72 * 20.0652 24.4140 97 ' 0.8701 5.2070 16.3898 -Times_New_Roman.ttf 72 * 20.0652 24.4140 98 ¢ 3.3208 21.9610 47.5712 -Times_New_Roman.ttf 72 * 20.0652 24.4140 99 Z 2.0084 33.9746 38.9668 -Times_New_Roman.ttf 72 * 20.0652 24.4140 100 > 6.0083 30.8172 29.1949 -Times_New_Roman.ttf 72 * 20.0652 24.4140 101 ® 0.6645 40.3777 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 102 © 0.4602 40.3777 41.3566 -Times_New_Roman.ttf 72 * 20.0652 24.4140 103 ] 1.3828 12.6569 51.2203 -Times_New_Roman.ttf 72 * 20.0652 24.4140 104 é 0.7894 22.1496 41.0199 -Times_New_Roman.ttf 72 * 20.0652 24.4140 105 z 14.6658 23.5833 25.9731 -Times_New_Roman.ttf 72 * 20.0652 24.4140 106 _ 51.1564 30.0269 2.3898 -Times_New_Roman.ttf 72 * 20.0652 24.4140 107 ¥ 1.7893 31.4941 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 1 t 5.8474 16.5784 35.7450 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 2 h -0.7337 28.4261 40.8051 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 3 a 13.2479 24.3234 28.3630 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 4 n 13.1891 28.4261 27.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 5 P 1.2939 30.0702 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 6 o 12.9577 25.1828 28.3630 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 7 e 12.9908 22.1496 28.3630 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 8 : 13.1103 5.2134 28.3500 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 9 r 12.9270 19.2070 27.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 10 l -0.6593 13.2312 40.8051 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 11 i -0.6669 13.2312 40.8051 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 12 1 1.0901 15.9913 39.1026 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 13 | -0.9317 2.3814 53.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 14 N 1.0206 43.0064 40.1617 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 15 f -0.5996 23.6237 40.8051 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 16 g 13.2542 26.7407 39.8250 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 17 d -0.6434 27.3566 42.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 18 W 1.0053 55.7208 40.1617 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 19 s 13.2253 17.7329 28.3630 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 20 c 12.9566 22.1496 28.3630 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 21 u 13.8978 28.6422 27.1680 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 22 3 1.2054 21.3876 39.1026 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 23 ~ 20.6013 29.8907 7.5948 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 24 # -0.5468 26.1769 40.8093 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 25 O 0.1058 37.9463 41.3566 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 26 ` 0.8412 8.2536 9.4443 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 27 @ -0.7108 49.5948 54.8093 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 28 F 1.0600 29.5579 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 29 S -0.0473 24.9668 41.5452 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 30 p 13.2128 26.9520 39.8250 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 31 “ -0.1339 21.7123 14.0000 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 32 % -0.3013 46.5375 41.3411 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 33 £ 0.8370 26.1504 40.2933 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 34 . 36.4300 5.2134 5.2134 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 35 2 0.7981 25.4757 39.1026 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 36 5 1.1133 22.0453 38.9597 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 37 m 12.8447 43.6210 27.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 38 V 1.3137 42.2148 40.1617 -Times_New_Roman.ttf 73 ” 21.5305 14.0000 39 6 1.0451 24.6350 39.1026 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 40 w 14.1400 42.0012 27.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 41 T 1.1107 32.3248 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 42 M 1.0748 50.8363 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 43 G -0.0490 40.3777 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 44 b -0.8360 26.9520 42.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 45 9 1.1641 24.2671 39.1149 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 46 ; 12.6025 8.5769 37.1560 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 47 D 1.0061 39.5054 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 48 L 1.2036 33.1439 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 49 y 14.2683 29.1112 38.6301 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 50 ‘ 0.0514 8.5769 14.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 51 \ -0.6500 16.8851 42.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 52 R 1.1205 39.5470 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 53 < 5.7959 30.8172 29.1949 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 54 4 1.0141 25.4620 39.1149 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 55 8 0.9550 22.7514 39.1149 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 56 0 0.9647 24.6301 39.1149 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 57 A 0.1417 42.0000 40.1617 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 58 E 1.3684 34.1502 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 59 B 0.7942 34.7661 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 60 v 14.0109 29.7477 27.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 61 k -0.7117 28.5111 40.8051 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 62 J 1.3622 20.9143 40.1617 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 63 U 0.9312 40.9807 40.1617 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 64 j -0.7236 16.0484 53.4620 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 65 ( -0.4865 15.8383 52.6957 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 66 7 1.4910 25.4883 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 67 § 0.5686 20.6180 50.9240 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 68 $ -1.6793 23.6237 45.6650 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 69 € 1.1486 29.1949 39.1149 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 70 / -0.6314 17.5847 42.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 71 C -0.0360 34.5501 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 72 * -0.5027 20.0652 24.4140 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 73 ” -0.1389 21.5302 14.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 74 ? -0.1954 19.9342 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 75 { -0.2247 17.0320 52.6957 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 76 } -0.6359 17.0320 52.6957 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 77 , 36.3567 8.5769 14.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 78 I 1.6288 16.7540 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 79 ° 0.0326 17.5847 17.5847 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 80 K 1.3429 41.1680 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 81 H 1.3265 40.9305 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 82 q 13.0504 26.9520 39.8250 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 83 & -0.0418 41.3566 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 84 ’ -0.1759 8.5769 14.0000 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 85 [ 0.4090 12.6569 51.2203 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 86 - 24.1200 15.1949 5.2070 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 87 Y 1.1785 41.7612 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 88 Q 0.1704 37.9463 51.1285 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 89 " -0.1004 14.9789 16.3898 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 90 ! 0.1241 5.2070 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 91 x 14.1094 28.4678 25.9731 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 92 ) -0.2617 15.8383 52.6957 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 93 = 14.4004 30.1750 12.0135 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 94 + 5.4476 30.3898 30.3898 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 95 X 1.0201 42.0000 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 96 » 12.9038 24.9093 27.1680 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 97 ' -0.1657 5.2070 16.3898 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 98 ¢ 2.8079 21.9610 47.5712 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 99 Z 1.2804 33.9746 38.9668 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 100 > 5.5956 30.8172 29.1949 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 101 ® -0.1745 40.3777 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 102 © -0.0044 40.3777 41.3566 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 103 ] 0.2834 12.6569 51.2203 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 104 é 0.4156 22.1496 41.0199 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 105 z 14.0051 23.5833 25.9731 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 106 _ 50.3769 30.0269 2.3898 -Times_New_Roman.ttf 73 ” 21.5302 14.0000 107 ¥ 1.2381 31.4941 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 1 t 5.6116 16.5784 35.7450 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 2 h -0.6434 28.4261 40.8051 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 3 a 13.0825 24.3234 28.3630 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 4 n 12.9105 28.4261 27.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 5 P 1.1488 30.0702 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 6 o 13.0375 25.1828 28.3630 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 7 e 12.9998 22.1496 28.3630 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 8 : 13.5137 5.2134 28.3500 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 9 r 13.1656 19.2070 27.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 10 l -0.4099 13.2312 40.8051 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 11 i -0.6804 13.2312 40.8051 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 12 1 1.2637 15.9913 39.1026 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 13 | -0.5995 2.3814 53.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 14 N 1.2348 43.0064 40.1617 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 15 f -0.6082 23.6237 40.8051 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 16 g 13.1166 26.7407 39.8250 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 17 d -0.8020 27.3566 42.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 18 W 1.2022 55.7208 40.1617 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 19 s 12.7748 17.7329 28.3630 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 20 c 13.0267 22.1496 28.3630 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 21 u 14.2582 28.6422 27.1680 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 22 3 0.9094 21.3876 39.1026 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 23 ~ 20.7249 29.8907 7.5948 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 24 # -0.5375 26.1769 40.8093 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 25 O -0.1292 37.9463 41.3566 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 26 ` 0.6990 8.2536 9.4443 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 27 @ -0.6116 49.5948 54.8093 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 28 F 1.2392 29.5579 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 29 S -0.2655 24.9668 41.5452 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 30 p 12.8735 26.9520 39.8250 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 31 “ 0.2487 21.7123 14.0000 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 32 % -0.1885 46.5375 41.3411 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 33 £ 1.0548 26.1504 40.2933 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 34 . 36.4428 5.2134 5.2134 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 35 2 0.7180 25.4757 39.1026 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 36 5 1.0832 22.0453 38.9597 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 37 m 12.8696 43.6210 27.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 38 V 1.1358 42.2148 40.1617 -Times_New_Roman.ttf 74 ? 19.9145 41.3411 39 6 0.8370 24.6350 39.1026 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 40 w 14.2625 42.0012 27.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 41 T 1.5058 32.3248 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 42 M 1.2377 50.8363 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 43 G 0.0115 40.3777 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 44 b -0.5491 26.9520 42.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 45 9 1.1864 24.2671 39.1149 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 46 ; 12.9379 8.5769 37.1560 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 47 D 0.9427 39.5054 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 48 L 1.2353 33.1439 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 49 y 14.1146 29.1112 38.6301 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 50 ‘ -0.0827 8.5769 14.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 51 \ -1.0003 16.8851 42.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 52 R 1.1118 39.5470 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 53 < 5.2209 30.8172 29.1949 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 54 4 1.0593 25.4620 39.1149 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 55 8 1.2461 22.7514 39.1149 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 56 0 0.9949 24.6301 39.1149 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 57 A 0.2147 42.0000 40.1617 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 58 E 1.1949 34.1502 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 59 B 1.0502 34.7661 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 60 v 14.1810 29.7477 27.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 61 k -0.8302 28.5111 40.8051 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 62 J 1.2017 20.9143 40.1617 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 63 U 1.2442 40.9807 40.1617 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 64 j -0.7664 16.0484 53.4620 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 65 ( -0.1575 15.8383 52.6957 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 66 7 1.0240 25.4883 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 67 § 0.3836 20.6180 50.9240 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 68 $ -1.8382 23.6237 45.6650 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 69 € 1.2346 29.1949 39.1149 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 70 / -0.6953 17.5847 42.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 71 C 0.0000 34.5501 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 72 * -0.4216 20.0652 24.4140 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 73 ” 0.1868 21.5302 14.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 74 ? 0.1048 19.9342 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 75 { -0.1348 17.0320 52.6957 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 76 } -0.4172 17.0320 52.6957 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 77 , 36.3716 8.5769 14.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 78 I 1.3251 16.7540 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 79 ° -0.1154 17.5847 17.5847 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 80 K 1.0546 41.1680 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 81 H 1.1300 40.9305 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 82 q 12.9379 26.9520 39.8250 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 83 & -0.1693 41.3566 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 84 ’ -0.1201 8.5769 14.0000 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 85 [ 0.6310 12.6569 51.2203 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 86 - 24.1432 15.1949 5.2070 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 87 Y 1.3371 41.7612 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 88 Q -0.2609 37.9463 51.1285 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 89 " -0.0476 14.9789 16.3898 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 90 ! -0.0802 5.2070 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 91 x 13.9450 28.4678 25.9731 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 92 ) -0.4909 15.8383 52.6957 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 93 = 14.4882 30.1750 12.0135 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 94 + 5.2680 30.3898 30.3898 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 95 X 1.2457 42.0000 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 96 » 12.6788 24.9093 27.1680 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 97 ' -0.1316 5.2070 16.3898 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 98 ¢ 2.6422 21.9610 47.5712 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 99 Z 1.0759 33.9746 38.9668 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 100 > 5.5908 30.8172 29.1949 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 101 ® 0.2272 40.3777 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 102 © 0.1349 40.3777 41.3566 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 103 ] 0.4717 12.6569 51.2203 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 104 é 0.4188 22.1496 41.0199 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 105 z 14.3692 23.5833 25.9731 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 106 _ 50.3384 30.0269 2.3898 -Times_New_Roman.ttf 74 ? 19.9342 41.3566 107 ¥ 1.2958 31.4941 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 1 t 6.0568 16.5784 35.7450 -Times_New_Roman.ttf 75 { 17.0320 52.6957 2 h -0.4268 28.4261 40.8051 -Times_New_Roman.ttf 75 { 17.0320 52.6957 3 a 13.1669 24.3234 28.3630 -Times_New_Roman.ttf 75 { 17.0320 52.6957 4 n 13.1938 28.4261 27.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 5 P 1.5152 30.0702 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 6 o 13.1049 25.1828 28.3630 -Times_New_Roman.ttf 75 { 17.0320 52.6957 7 e 13.1521 22.1496 28.3630 -Times_New_Roman.ttf 75 { 17.0391 52.7368 8 : 13.0965 5.2134 28.3500 -Times_New_Roman.ttf 75 { 17.0320 52.6957 9 r 13.0948 19.2070 27.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 10 l -0.3510 13.2312 40.8051 -Times_New_Roman.ttf 75 { 17.0320 52.6957 11 i -0.4667 13.2312 40.8051 -Times_New_Roman.ttf 75 { 17.0391 52.7368 12 1 1.6366 15.9913 39.1026 -Times_New_Roman.ttf 75 { 17.0391 52.7368 13 | -0.4510 2.3814 53.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 14 N 1.5225 43.0064 40.1617 -Times_New_Roman.ttf 75 { 17.0320 52.6957 15 f -0.5349 23.6237 40.8051 -Times_New_Roman.ttf 75 { 17.0320 52.6957 16 g 13.6281 26.7407 39.8250 -Times_New_Roman.ttf 75 { 17.0320 52.6957 17 d -0.2885 27.3566 42.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 18 W 1.3686 55.7208 40.1617 -Times_New_Roman.ttf 75 { 17.0320 52.6957 19 s 13.4442 17.7329 28.3630 -Times_New_Roman.ttf 75 { 17.0320 52.6957 20 c 13.3611 22.1496 28.3630 -Times_New_Roman.ttf 75 { 17.0320 52.6957 21 u 14.4805 28.6422 27.1680 -Times_New_Roman.ttf 75 { 17.0391 52.7368 22 3 1.3065 21.3876 39.1026 -Times_New_Roman.ttf 75 { 17.0391 52.7368 23 ~ 20.7839 29.8907 7.5948 -Times_New_Roman.ttf 75 { 17.0391 52.7368 24 # -0.2973 26.1769 40.8093 -Times_New_Roman.ttf 75 { 17.0320 52.6957 25 O 0.3409 37.9463 41.3566 -Times_New_Roman.ttf 75 { 17.0391 52.7368 26 ` 1.1154 8.2536 9.4443 -Times_New_Roman.ttf 75 { 17.0391 52.7368 27 @ -0.3736 49.5948 54.8093 -Times_New_Roman.ttf 75 { 17.0320 52.6957 28 F 1.2476 29.5579 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 29 S 0.1778 24.9668 41.5452 -Times_New_Roman.ttf 75 { 17.0320 52.6957 30 p 13.3543 26.9520 39.8250 -Times_New_Roman.ttf 75 { 17.0391 52.7368 31 “ -0.0577 21.7123 14.0000 -Times_New_Roman.ttf 75 { 17.0391 52.7368 32 % 0.0046 46.5375 41.3411 -Times_New_Roman.ttf 75 { 17.0391 52.7368 33 £ 1.1311 26.1504 40.2933 -Times_New_Roman.ttf 75 { 17.0391 52.7368 34 . 36.2216 5.2134 5.2134 -Times_New_Roman.ttf 75 { 17.0391 52.7368 35 2 1.2067 25.4757 39.1026 -Times_New_Roman.ttf 75 { 17.0391 52.7368 36 5 1.6265 22.0453 38.9597 -Times_New_Roman.ttf 75 { 17.0320 52.6957 37 m 13.0771 43.6210 27.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 38 V 1.5642 42.2148 40.1617 -Times_New_Roman.ttf 75 { 17.0391 52.7368 39 6 1.4685 24.6350 39.1026 -Times_New_Roman.ttf 75 { 17.0320 52.6957 40 w 14.5281 42.0012 27.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 41 T 1.6127 32.3248 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 42 M 1.2602 50.8363 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 43 G 0.3646 40.3777 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 44 b -0.5417 26.9520 42.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 45 9 1.1690 24.2671 39.1149 -Times_New_Roman.ttf 75 { 17.0320 52.6957 46 ; 13.4130 8.5769 37.1560 -Times_New_Roman.ttf 75 { 17.0320 52.6957 47 D 1.5253 39.5054 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 48 L 1.1794 33.1439 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 49 y 14.3812 29.1112 38.6301 -Times_New_Roman.ttf 75 { 17.0320 52.6957 50 ‘ 0.2823 8.5769 14.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 51 \ -0.5483 16.8851 42.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 52 R 1.4754 39.5470 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 53 < 5.7857 30.8172 29.1949 -Times_New_Roman.ttf 75 { 17.0320 52.6957 54 4 1.4487 25.4620 39.1149 -Times_New_Roman.ttf 75 { 17.0320 52.6957 55 8 1.5510 22.7514 39.1149 -Times_New_Roman.ttf 75 { 17.0320 52.6957 56 0 1.4825 24.6301 39.1149 -Times_New_Roman.ttf 75 { 17.0320 52.6957 57 A 0.0365 42.0000 40.1617 -Times_New_Roman.ttf 75 { 17.0320 52.6957 58 E 1.5230 34.1502 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 59 B 1.5791 34.7661 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 60 v 14.6837 29.7477 27.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 61 k -0.2673 28.5111 40.8051 -Times_New_Roman.ttf 75 { 17.0320 52.6957 62 J 0.9584 20.9143 40.1617 -Times_New_Roman.ttf 75 { 17.0320 52.6957 63 U 1.0728 40.9807 40.1617 -Times_New_Roman.ttf 75 { 17.0320 52.6957 64 j -0.0920 16.0484 53.4620 -Times_New_Roman.ttf 75 { 17.0320 52.6957 65 ( -0.0047 15.8383 52.6957 -Times_New_Roman.ttf 75 { 17.0320 52.6957 66 7 1.0564 25.4883 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 67 § 0.6927 20.6180 50.9240 -Times_New_Roman.ttf 75 { 17.0320 52.6957 68 $ -1.3943 23.6237 45.6650 -Times_New_Roman.ttf 75 { 17.0320 52.6957 69 € 1.4488 29.1949 39.1149 -Times_New_Roman.ttf 75 { 17.0320 52.6957 70 / -0.5748 17.5847 42.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 71 C -0.1376 34.5501 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 72 * -0.3586 20.0652 24.4140 -Times_New_Roman.ttf 75 { 17.0320 52.6957 73 ” 0.0331 21.5302 14.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 74 ? 0.2804 19.9342 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 75 { -0.1832 17.0320 52.6957 -Times_New_Roman.ttf 75 { 17.0320 52.6957 76 } -0.2489 17.0320 52.6957 -Times_New_Roman.ttf 75 { 17.0320 52.6957 77 , 36.5131 8.5769 14.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 78 I 1.6872 16.7540 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 79 ° 0.1632 17.5847 17.5847 -Times_New_Roman.ttf 75 { 17.0320 52.6957 80 K 1.5642 41.1680 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 81 H 1.6599 40.9305 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 82 q 13.2665 26.9520 39.8250 -Times_New_Roman.ttf 75 { 17.0320 52.6957 83 & 0.4313 41.3566 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 84 ’ 0.1397 8.5769 14.0000 -Times_New_Roman.ttf 75 { 17.0320 52.6957 85 [ 0.9856 12.6569 51.2203 -Times_New_Roman.ttf 75 { 17.0320 52.6957 86 - 24.3942 15.1949 5.2070 -Times_New_Roman.ttf 75 { 17.0320 52.6957 87 Y 1.4832 41.7612 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 88 Q 0.4625 37.9463 51.1285 -Times_New_Roman.ttf 75 { 17.0320 52.6957 89 " 0.2804 14.9789 16.3898 -Times_New_Roman.ttf 75 { 17.0320 52.6957 90 ! 0.3719 5.2070 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 91 x 14.3859 28.4678 25.9731 -Times_New_Roman.ttf 75 { 17.0320 52.6957 92 ) -0.1241 15.8383 52.6957 -Times_New_Roman.ttf 75 { 17.0320 52.6957 93 = 14.7130 30.1750 12.0135 -Times_New_Roman.ttf 75 { 17.0320 52.6957 94 + 5.9015 30.3898 30.3898 -Times_New_Roman.ttf 75 { 17.0320 52.6957 95 X 1.4840 42.0000 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 96 » 13.4893 24.9093 27.1680 -Times_New_Roman.ttf 75 { 17.0320 52.6957 97 ' 0.2088 5.2070 16.3898 -Times_New_Roman.ttf 75 { 17.0320 52.6957 98 ¢ 2.9938 21.9610 47.5712 -Times_New_Roman.ttf 75 { 17.0320 52.6957 99 Z 1.3231 33.9746 38.9668 -Times_New_Roman.ttf 75 { 17.0320 52.6957 100 > 5.8202 30.8172 29.1949 -Times_New_Roman.ttf 75 { 17.0320 52.6957 101 ® 0.2122 40.3777 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 102 © 0.2757 40.3777 41.3566 -Times_New_Roman.ttf 75 { 17.0320 52.6957 103 ] 0.7960 12.6569 51.2203 -Times_New_Roman.ttf 75 { 17.0320 52.6957 104 é 0.5369 22.1496 41.0199 -Times_New_Roman.ttf 75 { 17.0320 52.6957 105 z 14.6555 23.5833 25.9731 -Times_New_Roman.ttf 75 { 17.0320 52.6957 106 _ 50.7296 30.0269 2.3898 -Times_New_Roman.ttf 75 { 17.0320 52.6957 107 ¥ 1.5671 31.4941 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 1 t 5.8597 16.5784 35.7450 -Times_New_Roman.ttf 76 } 17.0320 52.6957 2 h -0.5816 28.4261 40.8051 -Times_New_Roman.ttf 76 } 17.0320 52.6957 3 a 13.3150 24.3234 28.3630 -Times_New_Roman.ttf 76 } 17.0320 52.6957 4 n 13.2058 28.4261 27.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 5 P 1.8352 30.0702 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 6 o 13.3590 25.1828 28.3630 -Times_New_Roman.ttf 76 } 17.0320 52.6957 7 e 13.3064 22.1496 28.3630 -Times_New_Roman.ttf 76 } 17.0391 52.7368 8 : 13.4588 5.2134 28.3500 -Times_New_Roman.ttf 76 } 17.0320 52.6957 9 r 13.1826 19.2070 27.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 10 l -0.3538 13.2312 40.8051 -Times_New_Roman.ttf 76 } 17.0320 52.6957 11 i -0.2400 13.2312 40.8051 -Times_New_Roman.ttf 76 } 17.0391 52.7368 12 1 1.6162 15.9913 39.1026 -Times_New_Roman.ttf 76 } 17.0391 52.7368 13 | -0.3417 2.3814 53.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 14 N 1.6786 43.0064 40.1617 -Times_New_Roman.ttf 76 } 17.0320 52.6957 15 f -0.3562 23.6237 40.8051 -Times_New_Roman.ttf 76 } 17.0320 52.6957 16 g 13.2288 26.7407 39.8250 -Times_New_Roman.ttf 76 } 17.0320 52.6957 17 d -0.0459 27.3566 42.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 18 W 1.4796 55.7208 40.1617 -Times_New_Roman.ttf 76 } 17.0320 52.6957 19 s 13.4205 17.7329 28.3630 -Times_New_Roman.ttf 76 } 17.0320 52.6957 20 c 12.9580 22.1496 28.3630 -Times_New_Roman.ttf 76 } 17.0320 52.6957 21 u 14.7269 28.6422 27.1680 -Times_New_Roman.ttf 76 } 17.0391 52.7368 22 3 1.4369 21.3876 39.1026 -Times_New_Roman.ttf 76 } 17.0391 52.7368 23 ~ 20.9459 29.8907 7.5948 -Times_New_Roman.ttf 76 } 17.0391 52.7368 24 # -0.2545 26.1769 40.8093 -Times_New_Roman.ttf 76 } 17.0320 52.6957 25 O 0.1474 37.9463 41.3566 -Times_New_Roman.ttf 76 } 17.0391 52.7368 26 ` 1.3267 8.2536 9.4443 -Times_New_Roman.ttf 76 } 17.0391 52.7368 27 @ -0.3226 49.5948 54.8093 -Times_New_Roman.ttf 76 } 17.0320 52.6957 28 F 1.6757 29.5579 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 29 S -0.0765 24.9668 41.5452 -Times_New_Roman.ttf 76 } 17.0320 52.6957 30 p 13.6389 26.9520 39.8250 -Times_New_Roman.ttf 76 } 17.0391 52.7368 31 “ 0.1842 21.7123 14.0000 -Times_New_Roman.ttf 76 } 17.0391 52.7368 32 % 0.2204 46.5375 41.3411 -Times_New_Roman.ttf 76 } 17.0391 52.7368 33 £ 1.5715 26.1504 40.2933 -Times_New_Roman.ttf 76 } 17.0391 52.7368 34 . 36.2573 5.2134 5.2134 -Times_New_Roman.ttf 76 } 17.0391 52.7368 35 2 1.3920 25.4757 39.1026 -Times_New_Roman.ttf 76 } 17.0391 52.7368 36 5 1.5514 22.0453 38.9597 -Times_New_Roman.ttf 76 } 17.0320 52.6957 37 m 13.4461 43.6210 27.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 38 V 1.4413 42.2148 40.1617 -Times_New_Roman.ttf 76 } 17.0391 52.7368 39 6 1.6509 24.6350 39.1026 -Times_New_Roman.ttf 76 } 17.0320 52.6957 40 w 14.7087 42.0012 27.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 41 T 1.6038 32.3248 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 42 M 1.1598 50.8363 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 43 G 0.4313 40.3777 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 44 b -0.4903 26.9520 42.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 45 9 1.1524 24.2671 39.1149 -Times_New_Roman.ttf 76 } 17.0320 52.6957 46 ; 13.1938 8.5769 37.1560 -Times_New_Roman.ttf 76 } 17.0320 52.6957 47 D 1.3524 39.5054 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 48 L 1.5171 33.1439 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 49 y 14.5248 29.1112 38.6301 -Times_New_Roman.ttf 76 } 17.0320 52.6957 50 ‘ 0.1906 8.5769 14.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 51 \ -0.4394 16.8851 42.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 52 R 1.2630 39.5470 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 53 < 5.9141 30.8172 29.1949 -Times_New_Roman.ttf 76 } 17.0320 52.6957 54 4 1.3949 25.4620 39.1149 -Times_New_Roman.ttf 76 } 17.0320 52.6957 55 8 1.5266 22.7514 39.1149 -Times_New_Roman.ttf 76 } 17.0320 52.6957 56 0 1.0883 24.6301 39.1149 -Times_New_Roman.ttf 76 } 17.0320 52.6957 57 A 0.2054 42.0000 40.1617 -Times_New_Roman.ttf 76 } 17.0320 52.6957 58 E 1.0059 34.1502 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 59 B 1.6762 34.7661 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 60 v 14.5554 29.7477 27.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 61 k -0.2582 28.5111 40.8051 -Times_New_Roman.ttf 76 } 17.0320 52.6957 62 J 1.5584 20.9143 40.1617 -Times_New_Roman.ttf 76 } 17.0320 52.6957 63 U 1.5376 40.9807 40.1617 -Times_New_Roman.ttf 76 } 17.0320 52.6957 64 j -0.2788 16.0484 53.4620 -Times_New_Roman.ttf 76 } 17.0320 52.6957 65 ( 0.0993 15.8383 52.6957 -Times_New_Roman.ttf 76 } 17.0320 52.6957 66 7 1.4118 25.4883 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 67 § 0.8185 20.6180 50.9240 -Times_New_Roman.ttf 76 } 17.0320 52.6957 68 $ -1.7451 23.6237 45.6650 -Times_New_Roman.ttf 76 } 17.0320 52.6957 69 € 1.0721 29.1949 39.1149 -Times_New_Roman.ttf 76 } 17.0320 52.6957 70 / -0.1845 17.5847 42.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 71 C 0.2445 34.5501 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 72 * -0.1391 20.0652 24.4140 -Times_New_Roman.ttf 76 } 17.0320 52.6957 73 ” 0.0340 21.5302 14.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 74 ? 0.4524 19.9342 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 75 { -0.1184 17.0320 52.6957 -Times_New_Roman.ttf 76 } 17.0320 52.6957 76 } 0.1071 17.0320 52.6957 -Times_New_Roman.ttf 76 } 17.0320 52.6957 77 , 36.3310 8.5769 14.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 78 I 1.6387 16.7540 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 79 ° 0.1575 17.5847 17.5847 -Times_New_Roman.ttf 76 } 17.0320 52.6957 80 K 1.2270 41.1680 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 81 H 1.6661 40.9305 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 82 q 12.9523 26.9520 39.8250 -Times_New_Roman.ttf 76 } 17.0320 52.6957 83 & 0.4136 41.3566 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 84 ’ 0.1840 8.5769 14.0000 -Times_New_Roman.ttf 76 } 17.0320 52.6957 85 [ 0.7593 12.6569 51.2203 -Times_New_Roman.ttf 76 } 17.0320 52.6957 86 - 24.3645 15.1949 5.2070 -Times_New_Roman.ttf 76 } 17.0320 52.6957 87 Y 1.5901 41.7612 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 88 Q 0.3271 37.9463 51.1285 -Times_New_Roman.ttf 76 } 17.0320 52.6957 89 " 0.1973 14.9789 16.3898 -Times_New_Roman.ttf 76 } 17.0320 52.6957 90 ! 0.4451 5.2070 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 91 x 14.1952 28.4678 25.9731 -Times_New_Roman.ttf 76 } 17.0320 52.6957 92 ) -0.0438 15.8383 52.6957 -Times_New_Roman.ttf 76 } 17.0320 52.6957 93 = 14.7937 30.1750 12.0135 -Times_New_Roman.ttf 76 } 17.0320 52.6957 94 + 5.8741 30.3898 30.3898 -Times_New_Roman.ttf 76 } 17.0320 52.6957 95 X 1.3081 42.0000 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 96 » 13.1107 24.9093 27.1680 -Times_New_Roman.ttf 76 } 17.0320 52.6957 97 ' 0.2213 5.2070 16.3898 -Times_New_Roman.ttf 76 } 17.0320 52.6957 98 ¢ 2.5792 21.9610 47.5712 -Times_New_Roman.ttf 76 } 17.0320 52.6957 99 Z 1.7104 33.9746 38.9668 -Times_New_Roman.ttf 76 } 17.0320 52.6957 100 > 5.8228 30.8172 29.1949 -Times_New_Roman.ttf 76 } 17.0320 52.6957 101 ® 0.3070 40.3777 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 102 © 0.3813 40.3777 41.3566 -Times_New_Roman.ttf 76 } 17.0320 52.6957 103 ] 0.7402 12.6569 51.2203 -Times_New_Roman.ttf 76 } 17.0320 52.6957 104 é 0.3581 22.1496 41.0199 -Times_New_Roman.ttf 76 } 17.0320 52.6957 105 z 14.4546 23.5833 25.9731 -Times_New_Roman.ttf 76 } 17.0320 52.6957 106 _ 50.4648 30.0269 2.3898 -Times_New_Roman.ttf 76 } 17.0320 52.6957 107 ¥ 1.3923 31.4941 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 1 t -30.6182 16.5784 35.7450 -Times_New_Roman.ttf 77 , 8.5769 14.0000 2 h -36.5009 28.4261 40.8051 -Times_New_Roman.ttf 77 , 8.5769 14.0000 3 a -23.2146 24.3234 28.3630 -Times_New_Roman.ttf 77 , 8.5769 14.0000 4 n -23.2909 28.4261 27.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 5 P -34.9518 30.0702 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 6 o -23.0642 25.1828 28.3630 -Times_New_Roman.ttf 77 , 8.5769 14.0000 7 e -23.0199 22.1496 28.3630 -Times_New_Roman.ttf 77 , 8.5783 14.0000 8 : -23.2168 5.2134 28.3500 -Times_New_Roman.ttf 77 , 8.5769 14.0000 9 r -23.2531 19.2070 27.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 10 l -36.7958 13.2312 40.8051 -Times_New_Roman.ttf 77 , 8.5769 14.0000 11 i -36.7977 13.2312 40.8051 -Times_New_Roman.ttf 77 , 8.5783 14.0000 12 1 -35.1156 15.9913 39.1026 -Times_New_Roman.ttf 77 , 8.5783 14.0000 13 | -36.6093 2.3814 53.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 14 N -34.8677 43.0064 40.1617 -Times_New_Roman.ttf 77 , 8.5769 14.0000 15 f -36.8020 23.6237 40.8051 -Times_New_Roman.ttf 77 , 8.5769 14.0000 16 g -23.0570 26.7407 39.8250 -Times_New_Roman.ttf 77 , 8.5769 14.0000 17 d -36.8920 27.3566 42.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 18 W -34.9898 55.7208 40.1617 -Times_New_Roman.ttf 77 , 8.5769 14.0000 19 s -23.2847 17.7329 28.3630 -Times_New_Roman.ttf 77 , 8.5769 14.0000 20 c -23.0046 22.1496 28.3630 -Times_New_Roman.ttf 77 , 8.5769 14.0000 21 u -21.9111 28.6422 27.1680 -Times_New_Roman.ttf 77 , 8.5783 14.0000 22 3 -35.1184 21.3876 39.1026 -Times_New_Roman.ttf 77 , 8.5783 14.0000 23 ~ -15.3518 29.8907 7.5948 -Times_New_Roman.ttf 77 , 8.5783 14.0000 24 # -36.6600 26.1769 40.8093 -Times_New_Roman.ttf 77 , 8.5769 14.0000 25 O -36.1496 37.9463 41.3566 -Times_New_Roman.ttf 77 , 8.5783 14.0000 26 ` -35.2713 8.2536 9.4443 -Times_New_Roman.ttf 77 , 8.5783 14.0000 27 @ -37.0461 49.5948 54.8093 -Times_New_Roman.ttf 77 , 8.5769 14.0000 28 F -35.0378 29.5579 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 29 S -36.3569 24.9668 41.5452 -Times_New_Roman.ttf 77 , 8.5769 14.0000 30 p -23.2732 26.9520 39.8250 -Times_New_Roman.ttf 77 , 8.5783 14.0000 31 “ -36.2773 21.7123 14.0000 -Times_New_Roman.ttf 77 , 8.5783 14.0000 32 % -36.3001 46.5375 41.3411 -Times_New_Roman.ttf 77 , 8.5783 14.0000 33 £ -35.0383 26.1504 40.2933 -Times_New_Roman.ttf 77 , 8.5783 14.0000 34 . 0.0839 5.2134 5.2134 -Times_New_Roman.ttf 77 , 8.5783 14.0000 35 2 -34.8214 25.4757 39.1026 -Times_New_Roman.ttf 77 , 8.5783 14.0000 36 5 -35.0973 22.0453 38.9597 -Times_New_Roman.ttf 77 , 8.5769 14.0000 37 m -22.9162 43.6210 27.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 38 V -34.9075 42.2148 40.1617 -Times_New_Roman.ttf 77 , 8.5783 14.0000 39 6 -35.0799 24.6350 39.1026 -Times_New_Roman.ttf 77 , 8.5769 14.0000 40 w -21.8740 42.0012 27.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 41 T -34.9547 32.3248 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 42 M -34.9263 50.8363 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 43 G -35.9532 40.3777 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 44 b -37.0006 26.9520 42.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 45 9 -35.1028 24.2671 39.1149 -Times_New_Roman.ttf 77 , 8.5769 14.0000 46 ; -22.9858 8.5769 37.1560 -Times_New_Roman.ttf 77 , 8.5769 14.0000 47 D -34.9302 39.5054 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 48 L -34.7707 33.1439 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 49 y -22.2719 29.1112 38.6301 -Times_New_Roman.ttf 77 , 8.5769 14.0000 50 ‘ -36.5018 8.5769 14.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 51 \ -36.9243 16.8851 42.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 52 R -34.8880 39.5470 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 53 < -30.6001 30.8172 29.1949 -Times_New_Roman.ttf 77 , 8.5769 14.0000 54 4 -35.2018 25.4620 39.1149 -Times_New_Roman.ttf 77 , 8.5769 14.0000 55 8 -35.2018 22.7514 39.1149 -Times_New_Roman.ttf 77 , 8.5769 14.0000 56 0 -34.8977 24.6301 39.1149 -Times_New_Roman.ttf 77 , 8.5769 14.0000 57 A -36.1702 42.0000 40.1617 -Times_New_Roman.ttf 77 , 8.5769 14.0000 58 E -34.9551 34.1502 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 59 B -34.8749 34.7661 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 60 v -21.9610 29.7477 27.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 61 k -36.8300 28.5111 40.8051 -Times_New_Roman.ttf 77 , 8.5769 14.0000 62 J -34.8658 20.9143 40.1617 -Times_New_Roman.ttf 77 , 8.5769 14.0000 63 U -35.0907 40.9807 40.1617 -Times_New_Roman.ttf 77 , 8.5769 14.0000 64 j -36.9631 16.0484 53.4620 -Times_New_Roman.ttf 77 , 8.5769 14.0000 65 ( -36.5617 15.8383 52.6957 -Times_New_Roman.ttf 77 , 8.5769 14.0000 66 7 -35.1897 25.4883 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 67 § -35.3735 20.6180 50.9240 -Times_New_Roman.ttf 77 , 8.5769 14.0000 68 $ -37.8369 23.6237 45.6650 -Times_New_Roman.ttf 77 , 8.5769 14.0000 69 € -35.0629 29.1949 39.1149 -Times_New_Roman.ttf 77 , 8.5769 14.0000 70 / -36.9621 17.5847 42.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 71 C -36.0766 34.5501 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 72 * -36.6466 20.0652 24.4140 -Times_New_Roman.ttf 77 , 8.5769 14.0000 73 ” -36.0675 21.5302 14.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 74 ? -36.1928 19.9342 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 75 { -36.3469 17.0320 52.6957 -Times_New_Roman.ttf 77 , 8.5769 14.0000 76 } -36.5366 17.0320 52.6957 -Times_New_Roman.ttf 77 , 8.5769 14.0000 77 , -0.0831 8.5769 14.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 78 I -35.0076 16.7540 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 79 ° -36.1722 17.5847 17.5847 -Times_New_Roman.ttf 77 , 8.5769 14.0000 80 K -34.9547 41.1680 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 81 H -34.8716 40.9305 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 82 q -23.2006 26.9520 39.8250 -Times_New_Roman.ttf 77 , 8.5769 14.0000 83 & -36.0687 41.3566 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 84 ’ -35.9541 8.5769 14.0000 -Times_New_Roman.ttf 77 , 8.5769 14.0000 85 [ -35.6187 12.6569 51.2203 -Times_New_Roman.ttf 77 , 8.5769 14.0000 86 - -12.3510 15.1949 5.2070 -Times_New_Roman.ttf 77 , 8.5769 14.0000 87 Y -34.8075 41.7612 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 88 Q -36.0813 37.9463 51.1285 -Times_New_Roman.ttf 77 , 8.5769 14.0000 89 " -36.3730 14.9789 16.3898 -Times_New_Roman.ttf 77 , 8.5769 14.0000 90 ! -36.1050 5.2070 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 91 x -21.9582 28.4678 25.9731 -Times_New_Roman.ttf 77 , 8.5769 14.0000 92 ) -36.4272 15.8383 52.6957 -Times_New_Roman.ttf 77 , 8.5769 14.0000 93 = -21.7046 30.1750 12.0135 -Times_New_Roman.ttf 77 , 8.5769 14.0000 94 + -30.5228 30.3898 30.3898 -Times_New_Roman.ttf 77 , 8.5769 14.0000 95 X -34.8677 42.0000 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 96 » -23.1963 24.9093 27.1680 -Times_New_Roman.ttf 77 , 8.5769 14.0000 97 ' -36.0626 5.2070 16.3898 -Times_New_Roman.ttf 77 , 8.5769 14.0000 98 ¢ -33.4823 21.9610 47.5712 -Times_New_Roman.ttf 77 , 8.5769 14.0000 99 Z -34.9990 33.9746 38.9668 -Times_New_Roman.ttf 77 , 8.5769 14.0000 100 > -30.6195 30.8172 29.1949 -Times_New_Roman.ttf 77 , 8.5769 14.0000 101 ® -35.9636 40.3777 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 102 © -36.0871 40.3777 41.3566 -Times_New_Roman.ttf 77 , 8.5769 14.0000 103 ] -35.6380 12.6569 51.2203 -Times_New_Roman.ttf 77 , 8.5769 14.0000 104 é -35.8449 22.1496 41.0199 -Times_New_Roman.ttf 77 , 8.5769 14.0000 105 z -22.0845 23.5833 25.9731 -Times_New_Roman.ttf 77 , 8.5769 14.0000 106 _ 14.2792 30.0269 2.3898 -Times_New_Roman.ttf 77 , 8.5769 14.0000 107 ¥ -35.0378 31.4941 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 1 t 4.3778 16.5784 35.7450 -Times_New_Roman.ttf 78 I 16.7540 38.9668 2 h -1.8325 28.4261 40.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 3 a 11.5476 24.3234 28.3630 -Times_New_Roman.ttf 78 I 16.7540 38.9668 4 n 11.8993 28.4261 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 5 P -0.0917 30.0702 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 6 o 11.4884 25.1828 28.3630 -Times_New_Roman.ttf 78 I 16.7540 38.9668 7 e 11.7185 22.1496 28.3630 -Times_New_Roman.ttf 78 I 16.7540 38.9668 8 : 11.8135 5.2070 28.3630 -Times_New_Roman.ttf 78 I 16.7540 38.9668 9 r 12.1614 19.2070 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 10 l -2.0574 13.2312 40.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 11 i -2.1395 13.2312 40.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 12 1 -0.2519 15.9852 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 13 | -2.0848 2.3898 53.1828 -Times_New_Roman.ttf 78 I 16.7540 38.9668 14 N 0.1245 43.0064 40.1617 -Times_New_Roman.ttf 78 I 16.7540 38.9668 15 f -2.0103 23.6237 40.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 16 g 11.9256 26.7407 39.8250 -Times_New_Roman.ttf 78 I 16.7540 38.9668 17 d -1.7210 27.3566 42.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 18 W 0.1879 55.7208 40.1617 -Times_New_Roman.ttf 78 I 16.7540 38.9668 19 s 11.6695 17.7329 28.3630 -Times_New_Roman.ttf 78 I 16.7540 38.9668 20 c 11.9660 22.1496 28.3630 -Times_New_Roman.ttf 78 I 16.7540 38.9668 21 u 12.9908 28.6422 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 22 3 -0.3172 21.3820 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 23 ~ 19.5851 29.9208 7.5968 -Times_New_Roman.ttf 78 I 16.7540 38.9668 24 # -1.8149 26.1892 40.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 25 O -1.0201 37.9463 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 26 ` -0.2225 8.2402 9.4352 -Times_New_Roman.ttf 78 I 16.7540 38.9668 27 @ -1.9214 49.5968 54.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 28 F -0.3559 29.5579 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 29 S -1.6526 24.9668 41.5452 -Times_New_Roman.ttf 78 I 16.7540 38.9668 30 p 11.8988 26.9520 39.8250 -Times_New_Roman.ttf 78 I 16.7540 38.9668 31 “ -1.5177 21.7187 14.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 32 % -1.2036 46.5061 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 33 £ 0.1268 26.1617 40.3098 -Times_New_Roman.ttf 78 I 16.7540 38.9668 34 . 34.9666 5.2070 5.2070 -Times_New_Roman.ttf 78 I 16.7540 38.9668 35 2 -0.1481 25.4620 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 36 5 -0.0130 22.0242 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 37 m 11.9514 43.6210 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 38 V -0.0039 42.2148 40.1617 -Times_New_Roman.ttf 78 I 16.7540 38.9668 39 6 -0.1813 24.6301 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 40 w 12.9105 42.0012 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 41 T -0.2457 32.3248 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 42 M 0.0047 50.8363 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 43 G -1.1546 40.3777 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 44 b -1.7494 26.9520 42.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 45 9 0.1954 24.2671 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 46 ; 11.8199 8.5769 37.1560 -Times_New_Roman.ttf 78 I 16.7540 38.9668 47 D -0.0820 39.5054 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 48 L -0.1441 33.1439 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 49 y 13.0692 29.1112 38.6301 -Times_New_Roman.ttf 78 I 16.7540 38.9668 50 ‘ -1.0023 8.5769 14.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 51 \ -1.8951 16.8851 42.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 52 R 0.0422 39.5470 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 53 < 4.2339 30.8172 29.1949 -Times_New_Roman.ttf 78 I 16.7540 38.9668 54 4 -0.2488 25.4620 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 55 8 -0.2011 22.7514 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 56 0 -0.5273 24.6301 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 57 A -1.1579 42.0000 40.1617 -Times_New_Roman.ttf 78 I 16.7540 38.9668 58 E 0.0399 34.1502 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 59 B -0.0505 34.7661 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 60 v 13.0854 29.7477 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 61 k -1.7466 28.5111 40.8051 -Times_New_Roman.ttf 78 I 16.7540 38.9668 62 J 0.0047 20.9143 40.1617 -Times_New_Roman.ttf 78 I 16.7540 38.9668 63 U 0.1676 40.9807 40.1617 -Times_New_Roman.ttf 78 I 16.7540 38.9668 64 j -1.8383 16.0484 53.4620 -Times_New_Roman.ttf 78 I 16.7540 38.9668 65 ( -1.5196 15.8383 52.6957 -Times_New_Roman.ttf 78 I 16.7540 38.9668 66 7 0.0638 25.4883 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 67 § -0.5471 20.6180 50.9240 -Times_New_Roman.ttf 78 I 16.7540 38.9668 68 $ -2.9374 23.6237 45.6650 -Times_New_Roman.ttf 78 I 16.7540 38.9668 69 € -0.2000 29.1949 39.1149 -Times_New_Roman.ttf 78 I 16.7540 38.9668 70 / -1.8634 17.5847 42.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 71 C -0.9700 34.5501 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 72 * -1.8470 20.0652 24.4140 -Times_New_Roman.ttf 78 I 16.7540 38.9668 73 ” -1.0675 21.5302 14.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 74 ? -1.1517 19.9342 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 75 { -1.1492 17.0320 52.6957 -Times_New_Roman.ttf 78 I 16.7540 38.9668 76 } -1.6466 17.0320 52.6957 -Times_New_Roman.ttf 78 I 16.7540 38.9668 77 , 34.6723 8.5769 14.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 78 I 0.2072 16.7540 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 79 ° -0.8495 17.5847 17.5847 -Times_New_Roman.ttf 78 I 16.7540 38.9668 80 K -0.0120 41.1680 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 81 H -0.0399 40.9305 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 82 q 11.7581 26.9520 39.8250 -Times_New_Roman.ttf 78 I 16.7540 38.9668 83 & -1.1921 41.3566 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 84 ’ -1.0316 8.5769 14.0000 -Times_New_Roman.ttf 78 I 16.7540 38.9668 85 [ -0.5416 12.6569 51.2203 -Times_New_Roman.ttf 78 I 16.7540 38.9668 86 - 22.9642 15.1949 5.2070 -Times_New_Roman.ttf 78 I 16.7540 38.9668 87 Y -0.3061 41.7612 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 88 Q -1.0776 37.9463 51.1285 -Times_New_Roman.ttf 78 I 16.7540 38.9668 89 " -1.2819 14.9789 16.3898 -Times_New_Roman.ttf 78 I 16.7540 38.9668 90 ! -1.1921 5.2070 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 91 x 12.5757 28.4678 25.9731 -Times_New_Roman.ttf 78 I 16.7540 38.9668 92 ) -1.6189 15.8383 52.6957 -Times_New_Roman.ttf 78 I 16.7540 38.9668 93 = 13.1761 30.1750 12.0135 -Times_New_Roman.ttf 78 I 16.7540 38.9668 94 + 4.1013 30.3898 30.3898 -Times_New_Roman.ttf 78 I 16.7540 38.9668 95 X 0.1201 42.0000 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 96 » 11.7959 24.9093 27.1680 -Times_New_Roman.ttf 78 I 16.7540 38.9668 97 ' -1.1517 5.2070 16.3898 -Times_New_Roman.ttf 78 I 16.7540 38.9668 98 ¢ 1.7186 21.9610 47.5712 -Times_New_Roman.ttf 78 I 16.7540 38.9668 99 Z -0.0370 33.9746 38.9668 -Times_New_Roman.ttf 78 I 16.7540 38.9668 100 > 4.4996 30.8172 29.1949 -Times_New_Roman.ttf 78 I 16.7540 38.9668 101 ® -1.1751 40.3777 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 102 © -1.3309 40.3777 41.3566 -Times_New_Roman.ttf 78 I 16.7540 38.9668 103 ] -0.6660 12.6569 51.2203 -Times_New_Roman.ttf 78 I 16.7540 38.9668 104 é -0.8669 22.1496 41.0199 -Times_New_Roman.ttf 78 I 16.7540 38.9668 105 z 12.7996 23.5833 25.9731 -Times_New_Roman.ttf 78 I 16.7540 38.9668 106 _ 48.9311 30.0269 2.3898 -Times_New_Roman.ttf 78 I 16.7540 38.9668 107 ¥ -0.0101 31.4941 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 1 t 5.8455 16.5784 35.7450 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 2 h -0.6434 28.4261 40.8051 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 3 a 12.7419 24.3234 28.3630 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 4 n 13.1210 28.4261 27.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 5 P 1.1079 30.0702 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 6 o 13.0898 25.1828 28.3630 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 7 e 12.8946 22.1496 28.3630 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 8 : 12.8814 5.2134 28.3500 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 9 r 12.9936 19.2070 27.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 10 l -0.7351 13.2312 40.8051 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 11 i -0.8096 13.2312 40.8051 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 12 1 0.7411 15.9913 39.1026 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 13 | -0.8747 2.3814 53.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 14 N 1.2780 43.0064 40.1617 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 15 f -0.5132 23.6237 40.8051 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 16 g 12.7112 26.7407 39.8250 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 17 d -0.7435 27.3566 42.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 18 W 1.0985 55.7208 40.1617 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 19 s 12.8418 17.7329 28.3630 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 20 c 12.9019 22.1496 28.3630 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 21 u 14.2688 28.6422 27.1680 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 22 3 1.2091 21.3876 39.1026 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 23 ~ 20.8029 29.8907 7.5948 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 24 # -0.5847 26.1769 40.8093 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 25 O -0.3714 37.9463 41.3566 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 26 ` 0.7374 8.2536 9.4443 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 27 @ -0.5114 49.5948 54.8093 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 28 F 1.2867 29.5579 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 29 S 0.1890 24.9668 41.5452 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 30 p 12.8620 26.9520 39.8250 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 31 “ 0.0455 21.7123 14.0000 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 32 % -0.0450 46.5375 41.3411 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 33 £ 1.0127 26.1504 40.2933 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 34 . 36.0393 5.2134 5.2134 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 35 2 1.2091 25.4757 39.1026 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 36 5 1.3520 22.0453 38.9597 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 37 m 12.6054 43.6210 27.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 38 V 1.0795 42.2148 40.1617 -Times_New_Roman.ttf 79 ° 17.5721 17.5721 39 6 0.9223 24.6350 39.1026 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 40 w 14.1612 42.0012 27.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 41 T 1.0652 32.3248 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 42 M 1.3861 50.8363 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 43 G -0.3187 40.3777 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 44 b -0.5614 26.9520 42.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 45 9 1.0272 24.2671 39.1149 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 46 ; 12.7539 8.5769 37.1560 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 47 D 1.0709 39.5054 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 48 L 0.6842 33.1439 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 49 y 14.2256 29.1112 38.6301 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 50 ‘ -0.0326 8.5769 14.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 51 \ -0.5962 16.8851 42.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 52 R 1.3223 39.5470 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 53 < 5.4616 30.8172 29.1949 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 54 4 0.9165 25.4620 39.1149 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 55 8 1.1082 22.7514 39.1149 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 56 0 0.8787 24.6301 39.1149 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 57 A 0.0356 42.0000 40.1617 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 58 E 1.0128 34.1502 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 59 B 1.5936 34.7661 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 60 v 14.1130 29.7477 27.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 61 k -0.5113 28.5111 40.8051 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 62 J 1.3875 20.9143 40.1617 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 63 U 1.0834 40.9807 40.1617 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 64 j -0.5592 16.0484 53.4620 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 65 ( -0.4298 15.8383 52.6957 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 66 7 1.3981 25.4883 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 67 § 0.8424 20.6180 50.9240 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 68 $ -1.9435 23.6237 45.6650 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 69 € 1.1784 29.1949 39.1149 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 70 / -0.6473 17.5847 42.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 71 C -0.1748 34.5501 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 72 * -0.5650 20.0652 24.4140 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 73 ” -0.1004 21.5302 14.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 74 ? 0.0505 19.9342 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 75 { -0.2445 17.0320 52.6957 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 76 } -0.3339 17.0320 52.6957 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 77 , 36.2402 8.5769 14.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 78 I 1.1704 16.7540 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 79 ° -0.2551 17.5847 17.5847 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 80 K 1.0441 41.1680 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 81 H 1.1801 40.9305 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 82 q 12.9897 26.9520 39.8250 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 83 & 0.0769 41.3566 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 84 ’ -0.0633 8.5769 14.0000 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 85 [ 0.6937 12.6569 51.2203 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 86 - 23.8141 15.1949 5.2070 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 87 Y 1.2046 41.7612 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 88 Q 0.1224 37.9463 51.1285 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 89 " -0.1288 14.9789 16.3898 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 90 ! 0.0360 5.2070 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 91 x 14.0018 28.4678 25.9731 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 92 ) -0.3128 15.8383 52.6957 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 93 = 14.4859 30.1750 12.0135 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 94 + 5.4196 30.3898 30.3898 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 95 X 0.9239 42.0000 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 96 » 12.6471 24.9093 27.1680 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 97 ' 0.0917 5.2070 16.3898 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 98 ¢ 2.3858 21.9610 47.5712 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 99 Z 1.1147 33.9746 38.9668 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 100 > 5.6854 30.8172 29.1949 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 101 ® 0.1868 40.3777 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 102 © 0.2322 40.3777 41.3566 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 103 ] 0.5846 12.6569 51.2203 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 104 é 0.1564 22.1496 41.0199 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 105 z 14.1609 23.5833 25.9731 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 106 _ 50.3722 30.0269 2.3898 -Times_New_Roman.ttf 79 ° 17.5847 17.5847 107 ¥ 1.1938 31.4941 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 1 t 4.8596 16.5784 35.7450 -Times_New_Roman.ttf 80 K 41.1680 38.9668 2 h -1.9243 28.4261 40.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 3 a 11.9318 24.3234 28.3630 -Times_New_Roman.ttf 80 K 41.1680 38.9668 4 n 11.6718 28.4261 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 5 P 0.0597 30.0702 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 6 o 11.6075 25.1828 28.3630 -Times_New_Roman.ttf 80 K 41.1680 38.9668 7 e 11.9434 22.1496 28.3630 -Times_New_Roman.ttf 80 K 41.1680 38.9668 8 : 11.6747 5.2070 28.3630 -Times_New_Roman.ttf 80 K 41.1680 38.9668 9 r 12.0259 19.2070 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 10 l -1.9149 13.2312 40.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 11 i -1.7831 13.2312 40.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 12 1 0.0670 15.9852 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 13 | -1.8216 2.3898 53.1828 -Times_New_Roman.ttf 80 K 41.1680 38.9668 14 N -0.0044 43.0064 40.1617 -Times_New_Roman.ttf 80 K 41.1680 38.9668 15 f -1.7966 23.6237 40.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 16 g 11.7098 26.7407 39.8250 -Times_New_Roman.ttf 80 K 41.1680 38.9668 17 d -1.7917 27.3566 42.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 18 W -0.0591 55.7208 40.1617 -Times_New_Roman.ttf 80 K 41.1680 38.9668 19 s 11.7697 17.7329 28.3630 -Times_New_Roman.ttf 80 K 41.1680 38.9668 20 c 11.8316 22.1496 28.3630 -Times_New_Roman.ttf 80 K 41.1680 38.9668 21 u 13.0750 28.6422 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 22 3 -0.2683 21.3820 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 23 ~ 19.5672 29.9208 7.5968 -Times_New_Roman.ttf 80 K 41.1680 38.9668 24 # -1.9340 26.1892 40.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 25 O -1.3589 37.9463 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 26 ` -0.3904 8.2402 9.4352 -Times_New_Roman.ttf 80 K 41.1680 38.9668 27 @ -1.7008 49.5968 54.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 28 F -0.1970 29.5579 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 29 S -1.2274 24.9668 41.5452 -Times_New_Roman.ttf 80 K 41.1680 38.9668 30 p 12.1768 26.9520 39.8250 -Times_New_Roman.ttf 80 K 41.1680 38.9668 31 “ -1.1118 21.7187 14.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 32 % -1.3823 46.5061 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 33 £ -0.1001 26.1617 40.3098 -Times_New_Roman.ttf 80 K 41.1680 38.9668 34 . 34.9259 5.2070 5.2070 -Times_New_Roman.ttf 80 K 41.1680 38.9668 35 2 -0.1995 25.4620 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 36 5 0.0062 22.0242 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 37 m 11.7901 43.6210 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 38 V -0.0566 42.2148 40.1617 -Times_New_Roman.ttf 80 K 41.1680 38.9668 39 6 -0.0496 24.6301 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 40 w 12.7673 42.0012 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 41 T 0.0990 32.3248 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 42 M 0.0798 50.8363 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 43 G -1.2718 40.3777 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 44 b -1.8297 26.9520 42.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 45 9 -0.4666 24.2671 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 46 ; 11.7547 8.5769 37.1560 -Times_New_Roman.ttf 80 K 41.1680 38.9668 47 D 0.0615 39.5054 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 48 L 0.2171 33.1439 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 49 y 13.2041 29.1112 38.6301 -Times_New_Roman.ttf 80 K 41.1680 38.9668 50 ‘ -1.1358 8.5769 14.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 51 \ -1.7125 16.8851 42.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 52 R -0.0640 39.5470 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 53 < 4.3113 30.8172 29.1949 -Times_New_Roman.ttf 80 K 41.1680 38.9668 54 4 -0.0093 25.4620 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 55 8 0.0732 22.7514 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 56 0 -0.2784 24.6301 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 57 A -1.5183 42.0000 40.1617 -Times_New_Roman.ttf 80 K 41.1680 38.9668 58 E 0.0620 34.1502 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 59 B 0.0500 34.7661 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 60 v 13.2170 29.7477 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 61 k -1.5260 28.5111 40.8051 -Times_New_Roman.ttf 80 K 41.1680 38.9668 62 J -0.0000 20.9143 40.1617 -Times_New_Roman.ttf 80 K 41.1680 38.9668 63 U -0.2710 40.9807 40.1617 -Times_New_Roman.ttf 80 K 41.1680 38.9668 64 j -1.9467 16.0484 53.4620 -Times_New_Roman.ttf 80 K 41.1680 38.9668 65 ( -1.3836 15.8383 52.6957 -Times_New_Roman.ttf 80 K 41.1680 38.9668 66 7 0.0954 25.4883 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 67 § -0.5236 20.6180 50.9240 -Times_New_Roman.ttf 80 K 41.1680 38.9668 68 $ -3.0133 23.6237 45.6650 -Times_New_Roman.ttf 80 K 41.1680 38.9668 69 € -0.2068 29.1949 39.1149 -Times_New_Roman.ttf 80 K 41.1680 38.9668 70 / -1.9459 17.5847 42.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 71 C -1.3017 34.5501 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 72 * -1.7109 20.0652 24.4140 -Times_New_Roman.ttf 80 K 41.1680 38.9668 73 ” -1.1916 21.5302 14.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 74 ? -1.1920 19.9342 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 75 { -1.9050 17.0320 52.6957 -Times_New_Roman.ttf 80 K 41.1680 38.9668 76 } -1.5043 17.0320 52.6957 -Times_New_Roman.ttf 80 K 41.1680 38.9668 77 , 35.1102 8.5769 14.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 78 I 0.0922 16.7540 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 79 ° -1.3967 17.5847 17.5847 -Times_New_Roman.ttf 80 K 41.1680 38.9668 80 K -0.1926 41.1680 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 81 H -0.0552 40.9305 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 82 q 11.7930 26.9520 39.8250 -Times_New_Roman.ttf 80 K 41.1680 38.9668 83 & -0.8038 41.3566 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 84 ’ -0.8942 8.5769 14.0000 -Times_New_Roman.ttf 80 K 41.1680 38.9668 85 [ -0.7008 12.6569 51.2203 -Times_New_Roman.ttf 80 K 41.1680 38.9668 86 - 22.5858 15.1949 5.2070 -Times_New_Roman.ttf 80 K 41.1680 38.9668 87 Y 0.1081 41.7612 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 88 Q -1.1295 37.9463 51.1285 -Times_New_Roman.ttf 80 K 41.1680 38.9668 89 " -1.3614 14.9789 16.3898 -Times_New_Roman.ttf 80 K 41.1680 38.9668 90 ! -1.1262 5.2070 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 91 x 12.7972 28.4678 25.9731 -Times_New_Roman.ttf 80 K 41.1680 38.9668 92 ) -1.4394 15.8383 52.6957 -Times_New_Roman.ttf 80 K 41.1680 38.9668 93 = 13.3287 30.1750 12.0135 -Times_New_Roman.ttf 80 K 41.1680 38.9668 94 + 4.3556 30.3898 30.3898 -Times_New_Roman.ttf 80 K 41.1680 38.9668 95 X 0.0753 42.0000 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 96 » 11.6320 24.9093 27.1680 -Times_New_Roman.ttf 80 K 41.1680 38.9668 97 ' -1.3241 5.2070 16.3898 -Times_New_Roman.ttf 80 K 41.1680 38.9668 98 ¢ 1.5484 21.9610 47.5712 -Times_New_Roman.ttf 80 K 41.1680 38.9668 99 Z -0.0261 33.9746 38.9668 -Times_New_Roman.ttf 80 K 41.1680 38.9668 100 > 4.2791 30.8172 29.1949 -Times_New_Roman.ttf 80 K 41.1680 38.9668 101 ® -1.5011 40.3777 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 102 © -1.4511 40.3777 41.3566 -Times_New_Roman.ttf 80 K 41.1680 38.9668 103 ] -0.4084 12.6569 51.2203 -Times_New_Roman.ttf 80 K 41.1680 38.9668 104 é -1.0620 22.1496 41.0199 -Times_New_Roman.ttf 80 K 41.1680 38.9668 105 z 13.1584 23.5833 25.9731 -Times_New_Roman.ttf 80 K 41.1680 38.9668 106 _ 49.3089 30.0269 2.3898 -Times_New_Roman.ttf 80 K 41.1680 38.9668 107 ¥ -0.1327 31.4941 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 1 t 4.6679 16.5784 35.7450 -Times_New_Roman.ttf 81 H 40.9305 38.9668 2 h -1.8013 28.4261 40.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 3 a 11.7747 24.3234 28.3630 -Times_New_Roman.ttf 81 H 40.9305 38.9668 4 n 11.8837 28.4261 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 5 P 0.4430 30.0702 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 6 o 11.8405 25.1828 28.3630 -Times_New_Roman.ttf 81 H 40.9305 38.9668 7 e 11.6195 22.1496 28.3630 -Times_New_Roman.ttf 81 H 40.9305 38.9668 8 : 12.0320 5.2070 28.3630 -Times_New_Roman.ttf 81 H 40.9305 38.9668 9 r 11.6080 19.2070 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 10 l -1.8372 13.2312 40.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 11 i -1.8027 13.2312 40.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 12 1 0.0342 15.9852 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 13 | -2.0441 2.3898 53.1828 -Times_New_Roman.ttf 81 H 40.9305 38.9668 14 N 0.0183 43.0064 40.1617 -Times_New_Roman.ttf 81 H 40.9305 38.9668 15 f -1.9152 23.6237 40.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 16 g 11.6940 26.7407 39.8250 -Times_New_Roman.ttf 81 H 40.9305 38.9668 17 d -1.5655 27.3566 42.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 18 W 0.3008 55.7208 40.1617 -Times_New_Roman.ttf 81 H 40.9305 38.9668 19 s 12.1596 17.7329 28.3630 -Times_New_Roman.ttf 81 H 40.9305 38.9668 20 c 11.7271 22.1496 28.3630 -Times_New_Roman.ttf 81 H 40.9305 38.9668 21 u 13.1325 28.6422 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 22 3 0.1382 21.3820 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 23 ~ 19.3889 29.9208 7.5968 -Times_New_Roman.ttf 81 H 40.9305 38.9668 24 # -2.0898 26.1892 40.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 25 O -1.3697 37.9463 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 26 ` -0.3393 8.2402 9.4352 -Times_New_Roman.ttf 81 H 40.9305 38.9668 27 @ -2.0517 49.5968 54.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 28 F -0.0193 29.5579 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 29 S -1.1741 24.9668 41.5452 -Times_New_Roman.ttf 81 H 40.9305 38.9668 30 p 11.3209 26.9520 39.8250 -Times_New_Roman.ttf 81 H 40.9305 38.9668 31 “ -1.2348 21.7187 14.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 32 % -1.6681 46.5061 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 33 £ -0.0132 26.1617 40.3098 -Times_New_Roman.ttf 81 H 40.9305 38.9668 34 . 35.3293 5.2070 5.2070 -Times_New_Roman.ttf 81 H 40.9305 38.9668 35 2 -0.2273 25.4620 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 36 5 0.0990 22.0242 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 37 m 12.0516 43.6210 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 38 V 0.0831 42.2148 40.1617 -Times_New_Roman.ttf 81 H 40.9305 38.9668 39 6 -0.2018 24.6301 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 40 w 13.1325 42.0012 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 41 T -0.4703 32.3248 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 42 M 0.0529 50.8363 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 43 G -1.2874 40.3777 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 44 b -1.9373 26.9520 42.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 45 9 0.0205 24.2671 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 46 ; 11.9291 8.5769 37.1560 -Times_New_Roman.ttf 81 H 40.9305 38.9668 47 D -0.0263 39.5054 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 48 L 0.1288 33.1439 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 49 y 12.8808 29.1112 38.6301 -Times_New_Roman.ttf 81 H 40.9305 38.9668 50 ‘ -1.2569 8.5769 14.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 51 \ -1.7424 16.8851 42.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 52 R 0.1197 39.5470 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 53 < 4.4710 30.8172 29.1949 -Times_New_Roman.ttf 81 H 40.9305 38.9668 54 4 -0.2193 25.4620 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 55 8 0.2070 22.7514 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 56 0 -0.2913 24.6301 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 57 A -1.3932 42.0000 40.1617 -Times_New_Roman.ttf 81 H 40.9305 38.9668 58 E -0.0380 34.1502 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 59 B 0.1446 34.7661 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 60 v 13.2503 29.7477 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 61 k -2.0635 28.5111 40.8051 -Times_New_Roman.ttf 81 H 40.9305 38.9668 62 J -0.2522 20.9143 40.1617 -Times_New_Roman.ttf 81 H 40.9305 38.9668 63 U -0.2457 40.9807 40.1617 -Times_New_Roman.ttf 81 H 40.9305 38.9668 64 j -1.8521 16.0484 53.4620 -Times_New_Roman.ttf 81 H 40.9305 38.9668 65 ( -1.4282 15.8383 52.6957 -Times_New_Roman.ttf 81 H 40.9305 38.9668 66 7 -0.1224 25.4883 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 67 § -0.4938 20.6180 50.9240 -Times_New_Roman.ttf 81 H 40.9305 38.9668 68 $ -2.9926 23.6237 45.6650 -Times_New_Roman.ttf 81 H 40.9305 38.9668 69 € -0.2014 29.1949 39.1149 -Times_New_Roman.ttf 81 H 40.9305 38.9668 70 / -1.8721 17.5847 42.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 71 C -0.9435 34.5501 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 72 * -1.6754 20.0652 24.4140 -Times_New_Roman.ttf 81 H 40.9305 38.9668 73 ” -1.3549 21.5302 14.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 74 ? -1.2944 19.9342 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 75 { -1.3625 17.0320 52.6957 -Times_New_Roman.ttf 81 H 40.9305 38.9668 76 } -1.2591 17.0320 52.6957 -Times_New_Roman.ttf 81 H 40.9305 38.9668 77 , 35.0951 8.5769 14.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 78 I 0.2947 16.7540 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 79 ° -1.2284 17.5847 17.5847 -Times_New_Roman.ttf 81 H 40.9305 38.9668 80 K 0.1235 41.1680 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 81 H -0.2139 40.9305 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 82 q 11.7203 26.9520 39.8250 -Times_New_Roman.ttf 81 H 40.9305 38.9668 83 & -0.9239 41.3566 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 84 ’ -1.3502 8.5769 14.0000 -Times_New_Roman.ttf 81 H 40.9305 38.9668 85 [ -0.6462 12.6569 51.2203 -Times_New_Roman.ttf 81 H 40.9305 38.9668 86 - 22.9059 15.1949 5.2070 -Times_New_Roman.ttf 81 H 40.9305 38.9668 87 Y -0.3778 41.7612 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 88 Q -1.3697 37.9463 51.1285 -Times_New_Roman.ttf 81 H 40.9305 38.9668 89 " -1.0985 14.9789 16.3898 -Times_New_Roman.ttf 81 H 40.9305 38.9668 90 ! -0.7463 5.2070 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 91 x 13.2771 28.4678 25.9731 -Times_New_Roman.ttf 81 H 40.9305 38.9668 92 ) -1.4678 15.8383 52.6957 -Times_New_Roman.ttf 81 H 40.9305 38.9668 93 = 13.4541 30.1750 12.0135 -Times_New_Roman.ttf 81 H 40.9305 38.9668 94 + 4.2172 30.3898 30.3898 -Times_New_Roman.ttf 81 H 40.9305 38.9668 95 X -0.2918 42.0000 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 96 » 11.8362 24.9093 27.1680 -Times_New_Roman.ttf 81 H 40.9305 38.9668 97 ' -1.0435 5.2070 16.3898 -Times_New_Roman.ttf 81 H 40.9305 38.9668 98 ¢ 1.5734 21.9610 47.5712 -Times_New_Roman.ttf 81 H 40.9305 38.9668 99 Z -0.2339 33.9746 38.9668 -Times_New_Roman.ttf 81 H 40.9305 38.9668 100 > 4.4891 30.8172 29.1949 -Times_New_Roman.ttf 81 H 40.9305 38.9668 101 ® -1.2348 40.3777 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 102 © -1.2529 40.3777 41.3566 -Times_New_Roman.ttf 81 H 40.9305 38.9668 103 ] -0.7424 12.6569 51.2203 -Times_New_Roman.ttf 81 H 40.9305 38.9668 104 é -0.8111 22.1496 41.0199 -Times_New_Roman.ttf 81 H 40.9305 38.9668 105 z 12.6794 23.5833 25.9731 -Times_New_Roman.ttf 81 H 40.9305 38.9668 106 _ 49.6284 30.0269 2.3898 -Times_New_Roman.ttf 81 H 40.9305 38.9668 107 ¥ -0.1451 31.4941 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 1 t -7.4016 16.5784 35.7450 -Times_New_Roman.ttf 82 q 26.9520 39.8250 2 h -13.7407 28.4261 40.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 3 a -0.1066 24.3234 28.3630 -Times_New_Roman.ttf 82 q 26.9520 39.8250 4 n -0.1263 28.4261 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 5 P -11.7271 30.0702 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 6 o 0.0870 25.1828 28.3630 -Times_New_Roman.ttf 82 q 26.9520 39.8250 7 e -0.0878 22.1496 28.3630 -Times_New_Roman.ttf 82 q 26.9520 39.8250 8 : -0.0198 5.2070 28.3630 -Times_New_Roman.ttf 82 q 26.9520 39.8250 9 r -0.0068 19.2070 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 10 l -13.7018 13.2312 40.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 11 i -13.9234 13.2312 40.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 12 1 -12.2137 15.9852 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 13 | -13.6874 2.3898 53.1828 -Times_New_Roman.ttf 82 q 26.9520 39.8250 14 N -11.9793 43.0064 40.1617 -Times_New_Roman.ttf 82 q 26.9520 39.8250 15 f -13.5333 23.6237 40.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 16 g 0.0000 26.7407 39.8250 -Times_New_Roman.ttf 82 q 26.9520 39.8250 17 d -13.2863 27.3566 42.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 18 W -11.7901 55.7208 40.1617 -Times_New_Roman.ttf 82 q 26.9520 39.8250 19 s -0.0899 17.7329 28.3630 -Times_New_Roman.ttf 82 q 26.9520 39.8250 20 c -0.0657 22.1496 28.3630 -Times_New_Roman.ttf 82 q 26.9520 39.8250 21 u 1.1243 28.6422 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 22 3 -12.0401 21.3820 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 23 ~ 7.8396 29.9208 7.5968 -Times_New_Roman.ttf 82 q 26.9520 39.8250 24 # -13.6342 26.1892 40.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 25 O -12.9418 37.9463 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 26 ` -12.0750 8.2402 9.4352 -Times_New_Roman.ttf 82 q 26.9520 39.8250 27 @ -13.5852 49.5968 54.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 28 F -11.6027 29.5579 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 29 S -13.2181 24.9668 41.5452 -Times_New_Roman.ttf 82 q 26.9520 39.8250 30 p -0.0427 26.9520 39.8250 -Times_New_Roman.ttf 82 q 26.9520 39.8250 31 “ -13.0595 21.7187 14.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 32 % -12.9173 46.5061 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 33 £ -12.2538 26.1617 40.3098 -Times_New_Roman.ttf 82 q 26.9520 39.8250 34 . 22.9681 5.2070 5.2070 -Times_New_Roman.ttf 82 q 26.9520 39.8250 35 2 -11.9429 25.4620 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 36 5 -11.8107 22.0242 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 37 m -0.1633 43.6210 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 38 V -11.8740 42.2148 40.1617 -Times_New_Roman.ttf 82 q 26.9520 39.8250 39 6 -11.9229 24.6301 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 40 w 1.0334 42.0012 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 41 T -11.9365 32.3248 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 42 M -11.8938 50.8363 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 43 G -13.1825 40.3777 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 44 b -14.0563 26.9520 42.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 45 9 -11.6548 24.2671 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 46 ; 0.1360 8.5769 37.1560 -Times_New_Roman.ttf 82 q 26.9520 39.8250 47 D -11.7833 39.5054 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 48 L -11.7851 33.1439 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 49 y 1.2663 29.1112 38.6301 -Times_New_Roman.ttf 82 q 26.9520 39.8250 50 ‘ -13.1070 8.5769 14.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 51 \ -13.3895 16.8851 42.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 52 R -11.8534 39.5470 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 53 < -7.2913 30.8172 29.1949 -Times_New_Roman.ttf 82 q 26.9520 39.8250 54 4 -11.9156 25.4620 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 55 8 -11.9156 22.7514 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 56 0 -11.5532 24.6301 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 57 A -12.9225 42.0000 40.1617 -Times_New_Roman.ttf 82 q 26.9520 39.8250 58 E -12.0591 34.1502 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 59 B -11.6870 34.7661 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 60 v 1.2540 29.7477 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 61 k -13.6680 28.5111 40.8051 -Times_New_Roman.ttf 82 q 26.9520 39.8250 62 J -11.8732 20.9143 40.1617 -Times_New_Roman.ttf 82 q 26.9520 39.8250 63 U -11.4879 40.9807 40.1617 -Times_New_Roman.ttf 82 q 26.9520 39.8250 64 j -13.7255 16.0484 53.4620 -Times_New_Roman.ttf 82 q 26.9520 39.8250 65 ( -13.1732 15.8383 52.6957 -Times_New_Roman.ttf 82 q 26.9520 39.8250 66 7 -11.8300 25.4883 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 67 § -12.4026 20.6180 50.9240 -Times_New_Roman.ttf 82 q 26.9520 39.8250 68 $ -14.7075 23.6237 45.6650 -Times_New_Roman.ttf 82 q 26.9520 39.8250 69 € -11.7202 29.1949 39.1149 -Times_New_Roman.ttf 82 q 26.9520 39.8250 70 / -13.7913 17.5847 42.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 71 C -12.9936 34.5501 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 72 * -13.5765 20.0652 24.4140 -Times_New_Roman.ttf 82 q 26.9520 39.8250 73 ” -12.8615 21.5302 14.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 74 ? -12.9394 19.9342 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 75 { -13.4278 17.0320 52.6957 -Times_New_Roman.ttf 82 q 26.9520 39.8250 76 } -13.1743 17.0320 52.6957 -Times_New_Roman.ttf 82 q 26.9520 39.8250 77 , 23.1261 8.5769 14.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 78 I -11.5585 16.7540 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 79 ° -12.9538 17.5847 17.5847 -Times_New_Roman.ttf 82 q 26.9520 39.8250 80 K -11.5230 41.1680 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 81 H -11.9409 40.9305 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 82 q 0.0889 26.9520 39.8250 -Times_New_Roman.ttf 82 q 26.9520 39.8250 83 & -13.0811 41.3566 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 84 ’ -13.1314 8.5769 14.0000 -Times_New_Roman.ttf 82 q 26.9520 39.8250 85 [ -12.7131 12.6569 51.2203 -Times_New_Roman.ttf 82 q 26.9520 39.8250 86 - 11.0841 15.1949 5.2070 -Times_New_Roman.ttf 82 q 26.9520 39.8250 87 Y -11.8224 41.7612 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 88 Q -12.9004 37.9463 51.1285 -Times_New_Roman.ttf 82 q 26.9520 39.8250 89 " -12.8738 14.9789 16.3898 -Times_New_Roman.ttf 82 q 26.9520 39.8250 90 ! -13.0461 5.2070 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 91 x 1.1748 28.4678 25.9731 -Times_New_Roman.ttf 82 q 26.9520 39.8250 92 ) -13.1848 15.8383 52.6957 -Times_New_Roman.ttf 82 q 26.9520 39.8250 93 = 1.5623 30.1750 12.0135 -Times_New_Roman.ttf 82 q 26.9520 39.8250 94 + -7.3650 30.3898 30.3898 -Times_New_Roman.ttf 82 q 26.9520 39.8250 95 X -11.9347 42.0000 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 96 » 0.2014 24.9093 27.1680 -Times_New_Roman.ttf 82 q 26.9520 39.8250 97 ' -12.9624 5.2070 16.3898 -Times_New_Roman.ttf 82 q 26.9520 39.8250 98 ¢ -10.4311 21.9610 47.5712 -Times_New_Roman.ttf 82 q 26.9520 39.8250 99 Z -11.8133 33.9746 38.9668 -Times_New_Roman.ttf 82 q 26.9520 39.8250 100 > -7.4614 30.8172 29.1949 -Times_New_Roman.ttf 82 q 26.9520 39.8250 101 ® -13.0854 40.3777 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 102 © -12.9251 40.3777 41.3566 -Times_New_Roman.ttf 82 q 26.9520 39.8250 103 ] -12.7535 12.6569 51.2203 -Times_New_Roman.ttf 82 q 26.9520 39.8250 104 é -12.6613 22.1496 41.0199 -Times_New_Roman.ttf 82 q 26.9520 39.8250 105 z 1.3856 23.5833 25.9731 -Times_New_Roman.ttf 82 q 26.9520 39.8250 106 _ 37.3343 30.0269 2.3898 -Times_New_Roman.ttf 82 q 26.9520 39.8250 107 ¥ -11.9189 31.4941 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 1 t 5.6309 16.5784 35.7450 -Times_New_Roman.ttf 83 & 41.3566 41.3566 2 h -0.4723 28.4261 40.8051 -Times_New_Roman.ttf 83 & 41.3566 41.3566 3 a 12.7654 24.3234 28.3630 -Times_New_Roman.ttf 83 & 41.3566 41.3566 4 n 12.7745 28.4261 27.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 5 P 1.3694 30.0702 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 6 o 12.7505 25.1828 28.3630 -Times_New_Roman.ttf 83 & 41.3566 41.3566 7 e 12.9387 22.1496 28.3630 -Times_New_Roman.ttf 83 & 41.3411 41.3411 8 : 12.9411 5.2134 28.3500 -Times_New_Roman.ttf 83 & 41.3566 41.3566 9 r 13.1325 19.2070 27.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 10 l -0.3680 13.2312 40.8051 -Times_New_Roman.ttf 83 & 41.3566 41.3566 11 i -0.6670 13.2312 40.8051 -Times_New_Roman.ttf 83 & 41.3411 41.3411 12 1 0.9621 15.9913 39.1026 -Times_New_Roman.ttf 83 & 41.3411 41.3411 13 | -0.6309 2.3814 53.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 14 N 1.0272 43.0064 40.1617 -Times_New_Roman.ttf 83 & 41.3566 41.3566 15 f -0.5592 23.6237 40.8051 -Times_New_Roman.ttf 83 & 41.3566 41.3566 16 g 12.8217 26.7407 39.8250 -Times_New_Roman.ttf 83 & 41.3566 41.3566 17 d -0.5777 27.3566 42.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 18 W 1.3103 55.7208 40.1617 -Times_New_Roman.ttf 83 & 41.3566 41.3566 19 s 13.0505 17.7329 28.3630 -Times_New_Roman.ttf 83 & 41.3566 41.3566 20 c 13.3512 22.1496 28.3630 -Times_New_Roman.ttf 83 & 41.3566 41.3566 21 u 14.5632 28.6422 27.1680 -Times_New_Roman.ttf 83 & 41.3411 41.3411 22 3 1.2829 21.3876 39.1026 -Times_New_Roman.ttf 83 & 41.3411 41.3411 23 ~ 20.4951 29.8907 7.5948 -Times_New_Roman.ttf 83 & 41.3411 41.3411 24 # -0.8345 26.1769 40.8093 -Times_New_Roman.ttf 83 & 41.3566 41.3566 25 O 0.1936 37.9463 41.3566 -Times_New_Roman.ttf 83 & 41.3411 41.3411 26 ` 0.9741 8.2536 9.4443 -Times_New_Roman.ttf 83 & 41.3411 41.3411 27 @ -0.8109 49.5948 54.8093 -Times_New_Roman.ttf 83 & 41.3566 41.3566 28 F 1.2039 29.5579 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 29 S 0.0345 24.9668 41.5452 -Times_New_Roman.ttf 83 & 41.3566 41.3566 30 p 12.9772 26.9520 39.8250 -Times_New_Roman.ttf 83 & 41.3411 41.3411 31 “ -0.2864 21.7123 14.0000 -Times_New_Roman.ttf 83 & 41.3411 41.3411 32 % -0.0608 46.5375 41.3411 -Times_New_Roman.ttf 83 & 41.3411 41.3411 33 £ 0.9489 26.1504 40.2933 -Times_New_Roman.ttf 83 & 41.3411 41.3411 34 . 36.1388 5.2134 5.2134 -Times_New_Roman.ttf 83 & 41.3411 41.3411 35 2 0.8566 25.4757 39.1026 -Times_New_Roman.ttf 83 & 41.3411 41.3411 36 5 1.3251 22.0453 38.9597 -Times_New_Roman.ttf 83 & 41.3566 41.3566 37 m 12.8423 43.6210 27.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 38 V 1.3093 42.2148 40.1617 -Times_New_Roman.ttf 83 & 41.3411 41.3411 39 6 0.8046 24.6350 39.1026 -Times_New_Roman.ttf 83 & 41.3566 41.3566 40 w 13.9819 42.0012 27.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 41 T 1.3117 32.3248 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 42 M 1.2424 50.8363 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 43 G -0.1110 40.3777 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 44 b -0.6002 26.9520 42.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 45 9 1.1910 24.2671 39.1149 -Times_New_Roman.ttf 83 & 41.3566 41.3566 46 ; 12.8634 8.5769 37.1560 -Times_New_Roman.ttf 83 & 41.3566 41.3566 47 D 1.3265 39.5054 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 48 L 1.5342 33.1439 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 49 y 14.3569 29.1112 38.6301 -Times_New_Roman.ttf 83 & 41.3566 41.3566 50 ‘ 0.0846 8.5769 14.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 51 \ -0.7615 16.8851 42.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 52 R 1.0235 39.5470 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 53 < 5.6192 30.8172 29.1949 -Times_New_Roman.ttf 83 & 41.3566 41.3566 54 4 1.2375 25.4620 39.1149 -Times_New_Roman.ttf 83 & 41.3566 41.3566 55 8 1.2279 22.7514 39.1149 -Times_New_Roman.ttf 83 & 41.3566 41.3566 56 0 0.8622 24.6301 39.1149 -Times_New_Roman.ttf 83 & 41.3566 41.3566 57 A -0.0178 42.0000 40.1617 -Times_New_Roman.ttf 83 & 41.3566 41.3566 58 E 1.1988 34.1502 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 59 B 1.1313 34.7661 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 60 v 14.1291 29.7477 27.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 61 k -0.7755 28.5111 40.8051 -Times_New_Roman.ttf 83 & 41.3566 41.3566 62 J 0.7759 20.9143 40.1617 -Times_New_Roman.ttf 83 & 41.3566 41.3566 63 U 1.1892 40.9807 40.1617 -Times_New_Roman.ttf 83 & 41.3566 41.3566 64 j -0.6325 16.0484 53.4620 -Times_New_Roman.ttf 83 & 41.3566 41.3566 65 ( -0.6425 15.8383 52.6957 -Times_New_Roman.ttf 83 & 41.3566 41.3566 66 7 1.1967 25.4883 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 67 § 0.9062 20.6180 50.9240 -Times_New_Roman.ttf 83 & 41.3566 41.3566 68 $ -1.6484 23.6237 45.6650 -Times_New_Roman.ttf 83 & 41.3566 41.3566 69 € 1.1174 29.1949 39.1149 -Times_New_Roman.ttf 83 & 41.3566 41.3566 70 / -0.6343 17.5847 42.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 71 C -0.3747 34.5501 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 72 * -0.8280 20.0652 24.4140 -Times_New_Roman.ttf 83 & 41.3566 41.3566 73 ” 0.5261 21.5302 14.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 74 ? -0.1321 19.9342 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 75 { -0.2510 17.0320 52.6957 -Times_New_Roman.ttf 83 & 41.3566 41.3566 76 } -0.2583 17.0320 52.6957 -Times_New_Roman.ttf 83 & 41.3566 41.3566 77 , 36.1860 8.5769 14.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 78 I 1.5961 16.7540 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 79 ° 0.2133 17.5847 17.5847 -Times_New_Roman.ttf 83 & 41.3566 41.3566 80 K 1.0248 41.1680 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 81 H 1.3362 40.9305 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 82 q 12.7670 26.9520 39.8250 -Times_New_Roman.ttf 83 & 41.3566 41.3566 83 & -0.0467 41.3566 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 84 ’ -0.4263 8.5769 14.0000 -Times_New_Roman.ttf 83 & 41.3566 41.3566 85 [ 0.6429 12.6569 51.2203 -Times_New_Roman.ttf 83 & 41.3566 41.3566 86 - 23.5670 15.1949 5.2070 -Times_New_Roman.ttf 83 & 41.3566 41.3566 87 Y 1.2427 41.7612 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 88 Q 0.0753 37.9463 51.1285 -Times_New_Roman.ttf 83 & 41.3566 41.3566 89 " 0.0159 14.9789 16.3898 -Times_New_Roman.ttf 83 & 41.3566 41.3566 90 ! 0.1251 5.2070 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 91 x 14.2501 28.4678 25.9731 -Times_New_Roman.ttf 83 & 41.3566 41.3566 92 ) -0.1661 15.8383 52.6957 -Times_New_Roman.ttf 83 & 41.3566 41.3566 93 = 14.6982 30.1750 12.0135 -Times_New_Roman.ttf 83 & 41.3566 41.3566 94 + 5.2250 30.3898 30.3898 -Times_New_Roman.ttf 83 & 41.3566 41.3566 95 X 1.4572 42.0000 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 96 » 13.2128 24.9093 27.1680 -Times_New_Roman.ttf 83 & 41.3566 41.3566 97 ' -0.3228 5.2070 16.3898 -Times_New_Roman.ttf 83 & 41.3566 41.3566 98 ¢ 2.4805 21.9610 47.5712 -Times_New_Roman.ttf 83 & 41.3566 41.3566 99 Z 0.9239 33.9746 38.9668 -Times_New_Roman.ttf 83 & 41.3566 41.3566 100 > 5.5303 30.8172 29.1949 -Times_New_Roman.ttf 83 & 41.3566 41.3566 101 ® -0.0817 40.3777 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 102 © 0.1806 40.3777 41.3566 -Times_New_Roman.ttf 83 & 41.3566 41.3566 103 ] 0.7969 12.6569 51.2203 -Times_New_Roman.ttf 83 & 41.3566 41.3566 104 é 0.4889 22.1496 41.0199 -Times_New_Roman.ttf 83 & 41.3566 41.3566 105 z 14.2180 23.5833 25.9731 -Times_New_Roman.ttf 83 & 41.3566 41.3566 106 _ 50.5205 30.0269 2.3898 -Times_New_Roman.ttf 83 & 41.3566 41.3566 107 ¥ 1.3002 31.4941 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 1 t 5.6221 16.5784 35.7450 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 2 h -0.7265 28.4261 40.8051 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 3 a 12.9624 24.3234 28.3630 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 4 n 12.9498 28.4261 27.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 5 P 1.0776 30.0702 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 6 o 12.8177 25.1828 28.3630 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 7 e 12.9908 22.1496 28.3630 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 8 : 12.8225 5.2134 28.3500 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 9 r 13.1844 19.2070 27.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 10 l -0.8067 13.2312 40.8051 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 11 i -0.6002 13.2312 40.8051 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 12 1 1.2280 15.9913 39.1026 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 13 | -0.4355 2.3814 53.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 14 N 1.2007 43.0064 40.1617 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 15 f -0.6406 23.6237 40.8051 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 16 g 13.0778 26.7407 39.8250 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 17 d -0.6361 27.3566 42.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 18 W 1.1949 55.7208 40.1617 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 19 s 12.8381 17.7329 28.3630 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 20 c 12.9936 22.1496 28.3630 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 21 u 14.3394 28.6422 27.1680 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 22 3 1.2202 21.3876 39.1026 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 23 ~ 20.5994 29.8907 7.5948 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 24 # -0.6315 26.1769 40.8093 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 25 O 0.0711 37.9463 41.3566 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 26 ` 0.8180 8.2536 9.4443 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 27 @ -0.6793 49.5948 54.8093 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 28 F 1.1978 29.5579 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 29 S -0.2923 24.9668 41.5452 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 30 p 13.0854 26.9520 39.8250 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 31 “ -0.1294 21.7123 14.0000 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 32 % 0.1774 46.5375 41.3411 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 33 £ 1.2164 26.1504 40.2933 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 34 . 36.0504 5.2134 5.2134 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 35 2 0.8441 25.4757 39.1026 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 36 5 1.3176 22.0453 38.9597 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 37 m 12.9965 43.6210 27.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 38 V 1.1272 42.2148 40.1617 -Times_New_Roman.ttf 84 ’ 8.5783 14.0000 39 6 1.1752 24.6350 39.1026 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 40 w 14.1083 42.0012 27.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 41 T 1.3212 32.3248 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 42 M 1.1863 50.8363 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 43 G 0.1821 40.3777 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 44 b -0.5603 26.9520 42.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 45 9 1.0468 24.2671 39.1149 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 46 ; 13.0706 8.5769 37.1560 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 47 D 0.8874 39.5054 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 48 L 0.9786 33.1439 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 49 y 14.1771 29.1112 38.6301 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 50 ‘ 0.0471 8.5769 14.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 51 \ -0.5045 16.8851 42.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 52 R 1.1579 39.5470 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 53 < 5.6365 30.8172 29.1949 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 54 4 0.9238 25.4620 39.1149 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 55 8 1.1357 22.7514 39.1149 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 56 0 0.9678 24.6301 39.1149 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 57 A -0.2629 42.0000 40.1617 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 58 E 1.0560 34.1502 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 59 B 1.1921 34.7661 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 60 v 14.4138 29.7477 27.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 61 k -0.7276 28.5111 40.8051 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 62 J 1.2608 20.9143 40.1617 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 63 U 1.1079 40.9807 40.1617 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 64 j -0.6434 16.0484 53.4620 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 65 ( -0.1963 15.8383 52.6957 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 66 7 1.0901 25.4883 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 67 § 0.7886 20.6180 50.9240 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 68 $ -1.8905 23.6237 45.6650 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 69 € 1.1505 29.1949 39.1149 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 70 / -0.5473 17.5847 42.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 71 C 0.0101 34.5501 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 72 * -0.6434 20.0652 24.4140 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 73 ” 0.0115 21.5302 14.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 74 ? 0.0722 19.9342 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 75 { -0.4496 17.0320 52.6957 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 76 } -0.3783 17.0320 52.6957 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 77 , 36.0261 8.5769 14.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 78 I 1.3352 16.7540 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 79 ° -0.0758 17.5847 17.5847 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 80 K 1.1579 41.1680 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 81 H 0.9331 40.9305 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 82 q 12.7633 26.9520 39.8250 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 83 & -0.1360 41.3566 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 84 ’ -0.0850 8.5769 14.0000 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 85 [ 0.5919 12.6569 51.2203 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 86 - 23.7278 15.1949 5.2070 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 87 Y 1.2348 41.7612 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 88 Q -0.2133 37.9463 51.1285 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 89 " -0.0990 14.9789 16.3898 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 90 ! 0.1037 5.2070 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 91 x 14.3120 28.4678 25.9731 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 92 ) -0.4034 15.8383 52.6957 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 93 = 14.4896 30.1750 12.0135 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 94 + 5.6474 30.3898 30.3898 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 95 X 1.1478 42.0000 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 96 » 12.8467 24.9093 27.1680 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 97 ' -0.2278 5.2070 16.3898 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 98 ¢ 2.4805 21.9610 47.5712 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 99 Z 1.2569 33.9746 38.9668 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 100 > 5.5398 30.8172 29.1949 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 101 ® -0.0519 40.3777 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 102 © 0.0352 40.3777 41.3566 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 103 ] 0.7263 12.6569 51.2203 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 104 é 0.5000 22.1496 41.0199 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 105 z 14.1780 23.5833 25.9731 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 106 _ 50.6156 30.0269 2.3898 -Times_New_Roman.ttf 84 ’ 8.5769 14.0000 107 ¥ 1.2036 31.4941 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 1 t 5.0629 16.5784 35.7450 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 2 h -0.8793 28.4261 40.8051 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 3 a 12.2681 24.3234 28.3630 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 4 n 12.2582 28.4261 27.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 5 P 0.6765 30.0702 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 6 o 12.6209 25.1828 28.3630 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 7 e 12.4421 22.1496 28.3630 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 8 : 12.2690 5.2134 28.3500 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 9 r 12.3903 19.2070 27.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 10 l -1.0513 13.2312 40.8051 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 11 i -1.2306 13.2312 40.8051 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 12 1 0.5801 15.9913 39.1026 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 13 | -1.3520 2.3814 53.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 14 N 0.7236 43.0064 40.1617 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 15 f -1.0229 23.6237 40.8051 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 16 g 12.5001 26.7407 39.8250 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 17 d -1.1910 27.3566 42.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 18 W 0.7265 55.7208 40.1617 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 19 s 12.4349 17.7329 28.3630 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 20 c 12.4580 22.1496 28.3630 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 21 u 13.6957 28.6422 27.1680 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 22 3 0.5803 21.3876 39.1026 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 23 ~ 20.4418 29.8907 7.5948 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 24 # -1.2407 26.1769 40.8093 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 25 O -0.6000 37.9463 41.3566 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 26 ` 0.2455 8.2536 9.4443 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 27 @ -1.2894 49.5948 54.8093 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 28 F 0.5676 29.5579 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 29 S -0.7372 24.9668 41.5452 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 30 p 12.3220 26.9520 39.8250 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 31 “ -0.5460 21.7123 14.0000 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 32 % -0.6904 46.5375 41.3411 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 33 £ 0.4299 26.1504 40.2933 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 34 . 35.6441 5.2134 5.2134 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 35 2 0.5317 25.4757 39.1026 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 36 5 0.8229 22.0453 38.9597 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 37 m 12.4778 43.6210 27.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 38 V 0.6786 42.2148 40.1617 -Times_New_Roman.ttf 85 [ 12.6664 51.2372 39 6 0.3762 24.6350 39.1026 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 40 w 13.7349 42.0012 27.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 41 T 0.3172 32.3248 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 42 M 0.9913 50.8363 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 43 G -0.4079 40.3777 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 44 b -1.3270 26.9520 42.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 45 9 0.4718 24.2671 39.1149 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 46 ; 12.3720 8.5769 37.1560 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 47 D 0.5233 39.5054 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 48 L 1.0772 33.1439 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 49 y 13.6490 29.1112 38.6301 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 50 ‘ -0.6242 8.5769 14.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 51 \ -0.8793 16.8851 42.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 52 R 0.5796 39.5470 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 53 < 4.9922 30.8172 29.1949 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 54 4 0.5461 25.4620 39.1149 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 55 8 0.4111 22.7514 39.1149 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 56 0 0.9184 24.6301 39.1149 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 57 A -0.5159 42.0000 40.1617 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 58 E 0.6434 34.1502 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 59 B 0.6035 34.7661 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 60 v 13.5704 29.7477 27.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 61 k -1.2997 28.5111 40.8051 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 62 J 0.6934 20.9143 40.1617 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 63 U 0.6111 40.9807 40.1617 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 64 j -1.2050 16.0484 53.4620 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 65 ( -1.0315 15.8383 52.6957 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 66 7 0.4998 25.4883 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 67 § 0.2331 20.6180 50.9240 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 68 $ -2.1023 23.6237 45.6650 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 69 € 0.2733 29.1949 39.1149 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 70 / -1.1834 17.5847 42.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 71 C -0.6318 34.5501 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 72 * -1.1079 20.0652 24.4140 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 73 ” -0.9056 21.5302 14.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 74 ? -0.5429 19.9342 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 75 { -0.8093 17.0320 52.6957 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 76 } -0.8799 17.0320 52.6957 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 77 , 35.6898 8.5769 14.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 78 I 0.7335 16.7540 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 79 ° -0.4678 17.5847 17.5847 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 80 K 0.4362 41.1680 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 81 H 0.5266 40.9305 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 82 q 12.3043 26.9520 39.8250 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 83 & -0.4997 41.3566 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 84 ’ -0.2565 8.5769 14.0000 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 85 [ 0.1461 12.6569 51.2203 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 86 - 23.3514 15.1949 5.2070 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 87 Y 0.6804 41.7612 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 88 Q -0.5213 37.9463 51.1285 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 89 " -0.5515 14.9789 16.3898 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 90 ! -0.7235 5.2070 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 91 x 13.5813 28.4678 25.9731 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 92 ) -0.6337 15.8383 52.6957 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 93 = 14.0621 30.1750 12.0135 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 94 + 4.9922 30.3898 30.3898 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 95 X 0.6535 42.0000 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 96 » 12.3590 24.9093 27.1680 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 97 ' -0.3978 5.2070 16.3898 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 98 ¢ 1.7587 21.9610 47.5712 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 99 Z 0.8466 33.9746 38.9668 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 100 > 4.8408 30.8172 29.1949 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 101 ® -0.7433 40.3777 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 102 © -0.6140 40.3777 41.3566 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 103 ] -0.0613 12.6569 51.2203 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 104 é -0.0874 22.1496 41.0199 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 105 z 13.5914 23.5833 25.9731 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 106 _ 49.5570 30.0269 2.3898 -Times_New_Roman.ttf 85 [ 12.6569 51.2203 107 ¥ 0.6179 31.4941 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 1 t -18.5285 16.5784 35.7450 -Times_New_Roman.ttf 86 - 15.1949 5.2070 2 h -24.4708 28.4261 40.8051 -Times_New_Roman.ttf 86 - 15.1949 5.2070 3 a -10.8342 24.3234 28.3630 -Times_New_Roman.ttf 86 - 15.1949 5.2070 4 n -11.1423 28.4261 27.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 5 P -22.8136 30.0702 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 6 o -10.6449 25.1828 28.3630 -Times_New_Roman.ttf 86 - 15.1949 5.2070 7 e -10.9025 22.1496 28.3630 -Times_New_Roman.ttf 86 - 15.1907 5.2134 8 : -11.1975 5.2134 28.3500 -Times_New_Roman.ttf 86 - 15.1949 5.2070 9 r -10.8150 19.2070 27.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 10 l -24.7264 13.2312 40.8051 -Times_New_Roman.ttf 86 - 15.1949 5.2070 11 i -24.6313 13.2312 40.8051 -Times_New_Roman.ttf 86 - 15.1907 5.2134 12 1 -23.1793 15.9913 39.1026 -Times_New_Roman.ttf 86 - 15.1907 5.2134 13 | -24.8322 2.3814 53.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 14 N -22.7753 43.0064 40.1617 -Times_New_Roman.ttf 86 - 15.1949 5.2070 15 f -24.3647 23.6237 40.8051 -Times_New_Roman.ttf 86 - 15.1949 5.2070 16 g -10.9129 26.7407 39.8250 -Times_New_Roman.ttf 86 - 15.1949 5.2070 17 d -24.6078 27.3566 42.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 18 W -22.7138 55.7208 40.1617 -Times_New_Roman.ttf 86 - 15.1949 5.2070 19 s -10.7843 17.7329 28.3630 -Times_New_Roman.ttf 86 - 15.1949 5.2070 20 c -10.7852 22.1496 28.3630 -Times_New_Roman.ttf 86 - 15.1949 5.2070 21 u -9.5352 28.6422 27.1680 -Times_New_Roman.ttf 86 - 15.1907 5.2134 22 3 -22.9986 21.3876 39.1026 -Times_New_Roman.ttf 86 - 15.1907 5.2134 23 ~ -3.4260 29.8907 7.5948 -Times_New_Roman.ttf 86 - 15.1907 5.2134 24 # -24.6251 26.1769 40.8093 -Times_New_Roman.ttf 86 - 15.1949 5.2070 25 O -23.7083 37.9463 41.3566 -Times_New_Roman.ttf 86 - 15.1907 5.2134 26 ` -23.2191 8.2536 9.4443 -Times_New_Roman.ttf 86 - 15.1907 5.2134 27 @ -24.4287 49.5948 54.8093 -Times_New_Roman.ttf 86 - 15.1949 5.2070 28 F -22.5408 29.5579 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 29 S -24.3658 24.9668 41.5452 -Times_New_Roman.ttf 86 - 15.1949 5.2070 30 p -11.1407 26.9520 39.8250 -Times_New_Roman.ttf 86 - 15.1907 5.2134 31 “ -23.6314 21.7123 14.0000 -Times_New_Roman.ttf 86 - 15.1907 5.2134 32 % -23.9736 46.5375 41.3411 -Times_New_Roman.ttf 86 - 15.1907 5.2134 33 £ -22.9295 26.1504 40.2933 -Times_New_Roman.ttf 86 - 15.1907 5.2134 34 . 12.0098 5.2134 5.2134 -Times_New_Roman.ttf 86 - 15.1907 5.2134 35 2 -22.8790 25.4757 39.1026 -Times_New_Roman.ttf 86 - 15.1907 5.2134 36 5 -22.7866 22.0453 38.9597 -Times_New_Roman.ttf 86 - 15.1949 5.2070 37 m -11.1404 43.6210 27.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 38 V -22.6570 42.2148 40.1617 -Times_New_Roman.ttf 86 - 15.1907 5.2134 39 6 -22.7797 24.6350 39.1026 -Times_New_Roman.ttf 86 - 15.1949 5.2070 40 w -10.0203 42.0012 27.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 41 T -23.0164 32.3248 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 42 M -22.6483 50.8363 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 43 G -23.9048 40.3777 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 44 b -24.6190 26.9520 42.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 45 9 -22.7033 24.2671 39.1149 -Times_New_Roman.ttf 86 - 15.1949 5.2070 46 ; -11.3307 8.5769 37.1560 -Times_New_Roman.ttf 86 - 15.1949 5.2070 47 D -22.7901 39.5054 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 48 L -22.6114 33.1439 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 49 y -10.0750 29.1112 38.6301 -Times_New_Roman.ttf 86 - 15.1949 5.2070 50 ‘ -24.2258 8.5769 14.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 51 \ -24.8624 16.8851 42.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 52 R -22.7930 39.5470 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 53 < -18.1704 30.8172 29.1949 -Times_New_Roman.ttf 86 - 15.1949 5.2070 54 4 -22.7192 25.4620 39.1149 -Times_New_Roman.ttf 86 - 15.1949 5.2070 55 8 -22.7778 22.7514 39.1149 -Times_New_Roman.ttf 86 - 15.1949 5.2070 56 0 -22.7692 24.6301 39.1149 -Times_New_Roman.ttf 86 - 15.1949 5.2070 57 A -23.9436 42.0000 40.1617 -Times_New_Roman.ttf 86 - 15.1949 5.2070 58 E -23.0121 34.1502 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 59 B -23.1414 34.7661 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 60 v -9.7994 29.7477 27.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 61 k -24.7076 28.5111 40.8051 -Times_New_Roman.ttf 86 - 15.1949 5.2070 62 J -22.7955 20.9143 40.1617 -Times_New_Roman.ttf 86 - 15.1949 5.2070 63 U -22.7286 40.9807 40.1617 -Times_New_Roman.ttf 86 - 15.1949 5.2070 64 j -24.7144 16.0484 53.4620 -Times_New_Roman.ttf 86 - 15.1949 5.2070 65 ( -24.2683 15.8383 52.6957 -Times_New_Roman.ttf 86 - 15.1949 5.2070 66 7 -22.7930 25.4883 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 67 § -23.4333 20.6180 50.9240 -Times_New_Roman.ttf 86 - 15.1949 5.2070 68 $ -25.7747 23.6237 45.6650 -Times_New_Roman.ttf 86 - 15.1949 5.2070 69 € -23.1448 29.1949 39.1149 -Times_New_Roman.ttf 86 - 15.1949 5.2070 70 / -24.6198 17.5847 42.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 71 C -23.8149 34.5501 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 72 * -24.5795 20.0652 24.4140 -Times_New_Roman.ttf 86 - 15.1949 5.2070 73 ” -24.0754 21.5302 14.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 74 ? -24.1786 19.9342 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 75 { -24.4345 17.0320 52.6957 -Times_New_Roman.ttf 86 - 15.1949 5.2070 76 } -24.3202 17.0320 52.6957 -Times_New_Roman.ttf 86 - 15.1949 5.2070 77 , 12.1588 8.5769 14.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 78 I -22.7782 16.7540 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 79 ° -23.9009 17.5847 17.5847 -Times_New_Roman.ttf 86 - 15.1949 5.2070 80 K -22.8329 41.1680 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 81 H -22.7883 40.9305 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 82 q -10.8572 26.9520 39.8250 -Times_New_Roman.ttf 86 - 15.1949 5.2070 83 & -24.0182 41.3566 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 84 ’ -23.5416 8.5769 14.0000 -Times_New_Roman.ttf 86 - 15.1949 5.2070 85 [ -23.4392 12.6569 51.2203 -Times_New_Roman.ttf 86 - 15.1949 5.2070 86 - 0.1308 15.1949 5.2070 -Times_New_Roman.ttf 86 - 15.1949 5.2070 87 Y -22.7998 41.7612 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 88 Q -23.8040 37.9463 51.1285 -Times_New_Roman.ttf 86 - 15.1949 5.2070 89 " -24.3467 14.9789 16.3898 -Times_New_Roman.ttf 86 - 15.1949 5.2070 90 ! -24.1570 5.2070 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 91 x -9.9411 28.4678 25.9731 -Times_New_Roman.ttf 86 - 15.1949 5.2070 92 ) -24.3274 15.8383 52.6957 -Times_New_Roman.ttf 86 - 15.1949 5.2070 93 = -9.7308 30.1750 12.0135 -Times_New_Roman.ttf 86 - 15.1949 5.2070 94 + -18.2279 30.3898 30.3898 -Times_New_Roman.ttf 86 - 15.1949 5.2070 95 X -22.8448 42.0000 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 96 » -11.2192 24.9093 27.1680 -Times_New_Roman.ttf 86 - 15.1949 5.2070 97 ' -24.0551 5.2070 16.3898 -Times_New_Roman.ttf 86 - 15.1949 5.2070 98 ¢ -21.4743 21.9610 47.5712 -Times_New_Roman.ttf 86 - 15.1949 5.2070 99 Z -23.0121 33.9746 38.9668 -Times_New_Roman.ttf 86 - 15.1949 5.2070 100 > -18.4773 30.8172 29.1949 -Times_New_Roman.ttf 86 - 15.1949 5.2070 101 ® -24.1627 40.3777 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 102 © -23.9149 40.3777 41.3566 -Times_New_Roman.ttf 86 - 15.1949 5.2070 103 ] -23.4364 12.6569 51.2203 -Times_New_Roman.ttf 86 - 15.1949 5.2070 104 é -23.8544 22.1496 41.0199 -Times_New_Roman.ttf 86 - 15.1949 5.2070 105 z -9.8835 23.5833 25.9731 -Times_New_Roman.ttf 86 - 15.1949 5.2070 106 _ 26.5211 30.0269 2.3898 -Times_New_Roman.ttf 86 - 15.1949 5.2070 107 ¥ -22.7930 31.4941 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 1 t 4.1044 16.5784 35.7450 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 2 h -1.5525 28.4261 40.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 3 a 11.7458 24.3234 28.3630 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 4 n 11.9395 28.4261 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 5 P 0.0521 30.0702 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 6 o 11.8318 25.1828 28.3630 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 7 e 12.0895 22.1496 28.3630 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 8 : 11.8804 5.2070 28.3630 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 9 r 11.7142 19.2070 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 10 l -1.6203 13.2312 40.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 11 i -1.9243 13.2312 40.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 12 1 0.0676 15.9852 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 13 | -1.8696 2.3898 53.1828 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 14 N -0.1105 43.0064 40.1617 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 15 f -2.0278 23.6237 40.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 16 g 11.8746 26.7407 39.8250 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 17 d -1.9412 27.3566 42.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 18 W 0.0399 55.7208 40.1617 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 19 s 11.8804 17.7329 28.3630 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 20 c 11.5701 22.1496 28.3630 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 21 u 12.8253 28.6422 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 22 3 -0.3382 21.3820 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 23 ~ 19.5106 29.9208 7.5968 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 24 # -1.8013 26.1892 40.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 25 O -0.9815 37.9463 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 26 ` -0.3974 8.2402 9.4352 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 27 @ -2.0473 49.5968 54.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 28 F -0.4430 29.5579 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 29 S -1.4541 24.9668 41.5452 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 30 p 11.7263 26.9520 39.8250 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 31 “ -1.3539 21.7187 14.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 32 % -1.2478 46.5061 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 33 £ -0.3734 26.1617 40.3098 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 34 . 34.6745 5.2070 5.2070 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 35 2 -0.0809 25.4620 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 36 5 -0.1897 22.0242 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 37 m 11.7497 43.6210 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 38 V -0.1715 42.2148 40.1617 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 39 6 -0.2951 24.6301 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 40 w 12.7676 42.0012 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 41 T -0.0086 32.3248 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 42 M -0.1785 50.8363 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 43 G -1.2655 40.3777 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 44 b -1.8662 26.9520 42.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 45 9 -0.1161 24.2671 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 46 ; 11.7987 8.5769 37.1560 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 47 D -0.0432 39.5054 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 48 L -0.3184 33.1439 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 49 y 13.6172 29.1112 38.6301 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 50 ‘ -1.1670 8.5769 14.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 51 \ -1.7894 16.8851 42.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 52 R 0.2116 39.5470 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 53 < 4.5337 30.8172 29.1949 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 54 4 -0.2366 25.4620 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 55 8 -0.3691 22.7514 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 56 0 -0.2625 24.6301 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 57 A -1.2424 42.0000 40.1617 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 58 E 0.0206 34.1502 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 59 B -0.0407 34.7661 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 60 v 13.0854 29.7477 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 61 k -1.8230 28.5111 40.8051 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 62 J -0.1134 20.9143 40.1617 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 63 U -0.0975 40.9807 40.1617 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 64 j -1.9021 16.0484 53.4620 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 65 ( -1.6614 15.8383 52.6957 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 66 7 0.3011 25.4883 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 67 § -0.4611 20.6180 50.9240 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 68 $ -2.9874 23.6237 45.6650 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 69 € -0.2352 29.1949 39.1149 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 70 / -2.0435 17.5847 42.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 71 C -1.3505 34.5501 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 72 * -2.1397 20.0652 24.4140 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 73 ” -1.2488 21.5302 14.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 74 ? -1.0542 19.9342 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 75 { -1.2026 17.0320 52.6957 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 76 } -1.5066 17.0320 52.6957 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 77 , 35.0104 8.5769 14.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 78 I 0.2228 16.7540 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 79 ° -1.2679 17.5847 17.5847 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 80 K 0.1048 41.1680 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 81 H -0.1896 40.9305 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 82 q 11.8756 26.9520 39.8250 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 83 & -1.0276 41.3566 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 84 ’ -1.2780 8.5769 14.0000 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 85 [ -0.2364 12.6569 51.2203 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 86 - 22.7883 15.1949 5.2070 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 87 Y 0.1277 41.7612 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 88 Q -1.3904 37.9463 51.1285 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 89 " -1.2198 14.9789 16.3898 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 90 ! -1.0316 5.2070 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 91 x 13.2296 28.4678 25.9731 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 92 ) -1.2966 15.8383 52.6957 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 93 = 13.2496 30.1750 12.0135 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 94 + 4.1990 30.3898 30.3898 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 95 X -0.2311 42.0000 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 96 » 11.2125 24.9093 27.1680 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 97 ' -1.5417 5.2070 16.3898 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 98 ¢ 1.4234 21.9610 47.5712 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 99 Z 0.1021 33.9746 38.9668 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 100 > 4.2266 30.8172 29.1949 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 101 ® -1.4737 40.3777 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 102 © -1.4464 40.3777 41.3566 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 103 ] -0.4714 12.6569 51.2203 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 104 é -0.9994 22.1496 41.0199 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 105 z 12.8939 23.5833 25.9731 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 106 _ 49.2623 30.0269 2.3898 -Times_New_Roman.ttf 87 Y 41.7612 38.9668 107 ¥ -0.0418 31.4941 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 1 t 5.6280 16.5784 35.7450 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 2 h -0.4675 28.4261 40.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 3 a 13.2175 24.3234 28.3630 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 4 n 12.9134 28.4261 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 5 P 1.3880 30.0702 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 6 o 12.8188 25.1828 28.3630 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 7 e 12.7198 22.1496 28.3630 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 8 : 13.1716 5.2070 28.3630 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 9 r 12.7991 19.2070 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 10 l -0.2110 13.2312 40.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 11 i -0.8985 13.2312 40.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 12 1 1.1817 15.9852 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 13 | -0.5991 2.3898 53.1828 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 14 N 1.2147 43.0064 40.1617 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 15 f -0.7990 23.6237 40.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 16 g 12.9922 26.7407 39.8250 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 17 d -0.7471 27.3566 42.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 18 W 1.2280 55.7208 40.1617 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 19 s 13.0591 17.7329 28.3630 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 20 c 13.0402 22.1496 28.3630 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 21 u 13.9032 28.6422 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 22 3 1.1492 21.3820 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 23 ~ 20.7107 29.9208 7.5968 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 24 # -0.5430 26.1892 40.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 25 O 0.2522 37.9463 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 26 ` 1.0482 8.2402 9.4352 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 27 @ -0.7747 49.5968 54.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 28 F 1.0633 29.5579 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 29 S -0.1799 24.9668 41.5452 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 30 p 12.9066 26.9520 39.8250 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 31 “ -0.1212 21.7187 14.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 32 % -0.0399 46.5061 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 33 £ 1.0827 26.1617 40.3098 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 34 . 36.2010 5.2070 5.2070 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 35 2 0.8594 25.4620 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 36 5 0.9223 22.0242 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 37 m 13.0731 43.6210 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 38 V 0.8820 42.2148 40.1617 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 39 6 1.1048 24.6301 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 40 w 13.9187 42.0012 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 41 T 1.3685 32.3248 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 42 M 1.3788 50.8363 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 43 G -0.0802 40.3777 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 44 b -0.9277 26.9520 42.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 45 9 1.0410 24.2671 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 46 ; 12.8681 8.5769 37.1560 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 47 D 1.3929 39.5054 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 48 L 1.0787 33.1439 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 49 y 14.2871 29.1112 38.6301 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 50 ‘ 0.4390 8.5769 14.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 51 \ -0.4290 16.8851 42.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 52 R 1.3317 39.5470 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 53 < 5.6172 30.8172 29.1949 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 54 4 1.1562 25.4620 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 55 8 0.8143 22.7514 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 56 0 0.9374 24.6301 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 57 A 0.0802 42.0000 40.1617 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 58 E 1.1892 34.1502 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 59 B 1.0488 34.7661 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 60 v 14.0695 29.7477 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 61 k -0.5218 28.5111 40.8051 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 62 J 1.2637 20.9143 40.1617 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 63 U 1.0334 40.9807 40.1617 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 64 j -0.8644 16.0484 53.4620 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 65 ( -0.3088 15.8383 52.6957 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 66 7 1.5308 25.4883 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 67 § 0.7487 20.6180 50.9240 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 68 $ -1.7693 23.6237 45.6650 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 69 € 1.2659 29.1949 39.1149 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 70 / -0.8308 17.5847 42.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 71 C 0.0143 34.5501 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 72 * -0.5171 20.0652 24.4140 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 73 ” 0.2473 21.5302 14.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 74 ? -0.3341 19.9342 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 75 { -0.4703 17.0320 52.6957 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 76 } -0.3588 17.0320 52.6957 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 77 , 35.9492 8.5769 14.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 78 I 1.1322 16.7540 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 79 ° 0.0897 17.5847 17.5847 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 80 K 1.4562 41.1680 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 81 H 0.9513 40.9305 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 82 q 12.7077 26.9520 39.8250 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 83 & 0.0159 41.3566 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 84 ’ -0.1456 8.5769 14.0000 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 85 [ 0.3680 12.6569 51.2203 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 86 - 24.0066 15.1949 5.2070 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 87 Y 1.5211 41.7612 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 88 Q 0.0251 37.9463 51.1285 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 89 " -0.1748 14.9789 16.3898 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 90 ! 0.2053 5.2070 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 91 x 14.0935 28.4678 25.9731 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 92 ) -0.1767 15.8383 52.6957 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 93 = 14.1948 30.1750 12.0135 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 94 + 5.8460 30.3898 30.3898 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 95 X 0.9781 42.0000 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 96 » 13.0325 24.9093 27.1680 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 97 ' 0.0418 5.2070 16.3898 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 98 ¢ 2.7256 21.9610 47.5712 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 99 Z 1.0209 33.9746 38.9668 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 100 > 5.3141 30.8172 29.1949 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 101 ® 0.1957 40.3777 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 102 © 0.0802 40.3777 41.3566 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 103 ] 0.2972 12.6569 51.2203 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 104 é 0.2969 22.1496 41.0199 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 105 z 13.9770 23.5833 25.9731 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 106 _ 50.4436 30.0269 2.3898 -Times_New_Roman.ttf 88 Q 37.9463 51.1285 107 ¥ 1.1252 31.4941 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 1 t 5.6353 16.5784 35.7450 -Times_New_Roman.ttf 89 " 14.9789 16.3898 2 h -0.7664 28.4261 40.8051 -Times_New_Roman.ttf 89 " 14.9789 16.3898 3 a 12.7068 24.3234 28.3630 -Times_New_Roman.ttf 89 " 14.9789 16.3898 4 n 13.3053 28.4261 27.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 5 P 1.2830 30.0702 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 6 o 12.9936 25.1828 28.3630 -Times_New_Roman.ttf 89 " 14.9789 16.3898 7 e 13.0483 22.1496 28.3630 -Times_New_Roman.ttf 89 " 14.9824 16.3814 8 : 12.7669 5.2134 28.3500 -Times_New_Roman.ttf 89 " 14.9789 16.3898 9 r 12.8144 19.2070 27.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 10 l -0.5527 13.2312 40.8051 -Times_New_Roman.ttf 89 " 14.9789 16.3898 11 i -0.5679 13.2312 40.8051 -Times_New_Roman.ttf 89 " 14.9824 16.3814 12 1 1.0430 15.9913 39.1026 -Times_New_Roman.ttf 89 " 14.9824 16.3814 13 | -0.5014 2.3814 53.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 14 N 1.1779 43.0064 40.1617 -Times_New_Roman.ttf 89 " 14.9789 16.3898 15 f -0.7990 23.6237 40.8051 -Times_New_Roman.ttf 89 " 14.9789 16.3898 16 g 13.3006 26.7407 39.8250 -Times_New_Roman.ttf 89 " 14.9789 16.3898 17 d -0.8860 27.3566 42.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 18 W 1.3262 55.7208 40.1617 -Times_New_Roman.ttf 89 " 14.9789 16.3898 19 s 13.1844 17.7329 28.3630 -Times_New_Roman.ttf 89 " 14.9789 16.3898 20 c 12.7726 22.1496 28.3630 -Times_New_Roman.ttf 89 " 14.9789 16.3898 21 u 14.0199 28.6422 27.1680 -Times_New_Roman.ttf 89 " 14.9824 16.3814 22 3 0.9695 21.3876 39.1026 -Times_New_Roman.ttf 89 " 14.9824 16.3814 23 ~ 20.7564 29.8907 7.5948 -Times_New_Roman.ttf 89 " 14.9824 16.3814 24 # -0.3828 26.1769 40.8093 -Times_New_Roman.ttf 89 " 14.9789 16.3898 25 O 0.0990 37.9463 41.3566 -Times_New_Roman.ttf 89 " 14.9824 16.3814 26 ` 0.8813 8.2536 9.4443 -Times_New_Roman.ttf 89 " 14.9824 16.3814 27 @ -0.8446 49.5948 54.8093 -Times_New_Roman.ttf 89 " 14.9789 16.3898 28 F 1.1110 29.5579 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 29 S -0.1856 24.9668 41.5452 -Times_New_Roman.ttf 89 " 14.9789 16.3898 30 p 13.1375 26.9520 39.8250 -Times_New_Roman.ttf 89 " 14.9824 16.3814 31 “ -0.0286 21.7123 14.0000 -Times_New_Roman.ttf 89 " 14.9824 16.3814 32 % -0.1877 46.5375 41.3411 -Times_New_Roman.ttf 89 " 14.9824 16.3814 33 £ 0.8435 26.1504 40.2933 -Times_New_Roman.ttf 89 " 14.9824 16.3814 34 . 36.1673 5.2134 5.2134 -Times_New_Roman.ttf 89 " 14.9824 16.3814 35 2 1.0551 25.4757 39.1026 -Times_New_Roman.ttf 89 " 14.9824 16.3814 36 5 0.9925 22.0453 38.9597 -Times_New_Roman.ttf 89 " 14.9789 16.3898 37 m 13.1671 43.6210 27.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 38 V 1.1641 42.2148 40.1617 -Times_New_Roman.ttf 89 " 14.9824 16.3814 39 6 1.2091 24.6350 39.1026 -Times_New_Roman.ttf 89 " 14.9789 16.3898 40 w 14.1116 42.0012 27.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 41 T 1.1445 32.3248 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 42 M 1.3622 50.8363 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 43 G 0.0000 40.3777 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 44 b -0.4772 26.9520 42.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 45 9 1.2375 24.2671 39.1149 -Times_New_Roman.ttf 89 " 14.9789 16.3898 46 ; 12.9538 8.5769 37.1560 -Times_New_Roman.ttf 89 " 14.9789 16.3898 47 D 1.4533 39.5054 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 48 L 1.2309 33.1439 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 49 y 14.0684 29.1112 38.6301 -Times_New_Roman.ttf 89 " 14.9789 16.3898 50 ‘ -0.0331 8.5769 14.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 51 \ -0.7898 16.8851 42.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 52 R 1.1003 39.5470 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 53 < 5.2915 30.8172 29.1949 -Times_New_Roman.ttf 89 " 14.9789 16.3898 54 4 1.1828 25.4620 39.1149 -Times_New_Roman.ttf 89 " 14.9789 16.3898 55 8 0.7878 22.7514 39.1149 -Times_New_Roman.ttf 89 " 14.9789 16.3898 56 0 1.2678 24.6301 39.1149 -Times_New_Roman.ttf 89 " 14.9789 16.3898 57 A 0.0519 42.0000 40.1617 -Times_New_Roman.ttf 89 " 14.9789 16.3898 58 E 1.2968 34.1502 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 59 B 1.3948 34.7661 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 60 v 14.2376 29.7477 27.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 61 k -0.7588 28.5111 40.8051 -Times_New_Roman.ttf 89 " 14.9789 16.3898 62 J 0.7804 20.9143 40.1617 -Times_New_Roman.ttf 89 " 14.9789 16.3898 63 U 1.2637 40.9807 40.1617 -Times_New_Roman.ttf 89 " 14.9789 16.3898 64 j -1.0195 16.0484 53.4620 -Times_New_Roman.ttf 89 " 14.9789 16.3898 65 ( -0.2718 15.8383 52.6957 -Times_New_Roman.ttf 89 " 14.9789 16.3898 66 7 0.9904 25.4883 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 67 § 0.5295 20.6180 50.9240 -Times_New_Roman.ttf 89 " 14.9789 16.3898 68 $ -2.0179 23.6237 45.6650 -Times_New_Roman.ttf 89 " 14.9789 16.3898 69 € 1.0036 29.1949 39.1149 -Times_New_Roman.ttf 89 " 14.9789 16.3898 70 / -0.6419 17.5847 42.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 71 C 0.2325 34.5501 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 72 * -0.3094 20.0652 24.4140 -Times_New_Roman.ttf 89 " 14.9789 16.3898 73 ” -0.1868 21.5302 14.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 74 ? 0.1302 19.9342 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 75 { -0.2804 17.0320 52.6957 -Times_New_Roman.ttf 89 " 14.9789 16.3898 76 } -0.7036 17.0320 52.6957 -Times_New_Roman.ttf 89 " 14.9789 16.3898 77 , 36.3849 8.5769 14.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 78 I 1.3622 16.7540 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 79 ° 0.0159 17.5847 17.5847 -Times_New_Roman.ttf 89 " 14.9789 16.3898 80 K 0.9258 41.1680 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 81 H 1.2558 40.9305 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 82 q 13.1757 26.9520 39.8250 -Times_New_Roman.ttf 89 " 14.9789 16.3898 83 & 0.2738 41.3566 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 84 ’ -0.0404 8.5769 14.0000 -Times_New_Roman.ttf 89 " 14.9789 16.3898 85 [ 0.7331 12.6569 51.2203 -Times_New_Roman.ttf 89 " 14.9789 16.3898 86 - 23.8501 15.1949 5.2070 -Times_New_Roman.ttf 89 " 14.9789 16.3898 87 Y 1.0316 41.7612 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 88 Q 0.1954 37.9463 51.1285 -Times_New_Roman.ttf 89 " 14.9789 16.3898 89 " -0.0292 14.9789 16.3898 -Times_New_Roman.ttf 89 " 14.9789 16.3898 90 ! -0.1759 5.2070 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 91 x 14.3207 28.4678 25.9731 -Times_New_Roman.ttf 89 " 14.9789 16.3898 92 ) -0.1767 15.8383 52.6957 -Times_New_Roman.ttf 89 " 14.9789 16.3898 93 = 14.4536 30.1750 12.0135 -Times_New_Roman.ttf 89 " 14.9789 16.3898 94 + 5.5437 30.3898 30.3898 -Times_New_Roman.ttf 89 " 14.9789 16.3898 95 X 1.0287 42.0000 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 96 » 13.1997 24.9093 27.1680 -Times_New_Roman.ttf 89 " 14.9789 16.3898 97 ' 0.2387 5.2070 16.3898 -Times_New_Roman.ttf 89 " 14.9789 16.3898 98 ¢ 2.4986 21.9610 47.5712 -Times_New_Roman.ttf 89 " 14.9789 16.3898 99 Z 1.1449 33.9746 38.9668 -Times_New_Roman.ttf 89 " 14.9789 16.3898 100 > 5.3338 30.8172 29.1949 -Times_New_Roman.ttf 89 " 14.9789 16.3898 101 ® 0.0298 40.3777 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 102 © -0.1778 40.3777 41.3566 -Times_New_Roman.ttf 89 " 14.9789 16.3898 103 ] 0.4126 12.6569 51.2203 -Times_New_Roman.ttf 89 " 14.9789 16.3898 104 é 0.6712 22.1496 41.0199 -Times_New_Roman.ttf 89 " 14.9789 16.3898 105 z 14.1771 23.5833 25.9731 -Times_New_Roman.ttf 89 " 14.9789 16.3898 106 _ 50.4408 30.0269 2.3898 -Times_New_Roman.ttf 89 " 14.9789 16.3898 107 ¥ 1.3064 31.4941 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 1 t 5.7620 16.5784 35.7450 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 2 h -0.7312 28.4261 40.8051 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 3 a 12.9936 24.3234 28.3630 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 4 n 13.1638 28.4261 27.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 5 P 1.3317 30.0702 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 6 o 13.0619 25.1828 28.3630 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 7 e 13.1776 22.1496 28.3630 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 8 : 12.9582 5.2134 28.3500 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 9 r 13.0023 19.2070 27.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 10 l -0.6434 13.2312 40.8051 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 11 i -0.7236 13.2312 40.8051 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 12 1 1.2336 15.9913 39.1026 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 13 | -0.5152 2.3814 53.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 14 N 1.2421 43.0064 40.1617 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 15 f -0.6794 23.6237 40.8051 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 16 g 12.8116 26.7407 39.8250 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 17 d -0.7351 27.3566 42.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 18 W 1.2780 55.7208 40.1617 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 19 s 12.9577 17.7329 28.3630 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 20 c 12.7005 22.1496 28.3630 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 21 u 14.2875 28.6422 27.1680 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 22 3 1.0748 21.3876 39.1026 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 23 ~ 20.8144 29.8907 7.5948 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 24 # -0.8401 26.1769 40.8093 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 25 O -0.0028 37.9463 41.3566 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 26 ` 0.9565 8.2536 9.4443 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 27 @ -0.6589 49.5948 54.8093 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 28 F 1.2780 29.5579 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 29 S -0.0194 24.9668 41.5452 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 30 p 13.0455 26.9520 39.8250 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 31 “ -0.0170 21.7123 14.0000 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 32 % 0.0038 46.5375 41.3411 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 33 £ 0.9209 26.1504 40.2933 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 34 . 35.9466 5.2134 5.2134 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 35 2 1.0478 25.4757 39.1026 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 36 5 1.2550 22.0453 38.9597 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 37 m 13.0408 43.6210 27.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 38 V 1.3650 42.2148 40.1617 -Times_New_Roman.ttf 90 ! 5.2134 41.3411 39 6 0.8431 24.6350 39.1026 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 40 w 14.1886 42.0012 27.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 41 T 1.1949 32.3248 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 42 M 1.1978 50.8363 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 43 G 0.0798 40.3777 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 44 b -0.5949 26.9520 42.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 45 9 1.3816 24.2671 39.1149 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 46 ; 12.8946 8.5769 37.1560 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 47 D 1.3150 39.5054 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 48 L 1.2718 33.1439 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 49 y 14.1886 29.1112 38.6301 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 50 ‘ -0.0485 8.5769 14.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 51 \ -0.5868 16.8851 42.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 52 R 1.1147 39.5470 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 53 < 5.5038 30.8172 29.1949 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 54 4 0.9698 25.4620 39.1149 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 55 8 0.9233 22.7514 39.1149 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 56 0 0.9244 24.6301 39.1149 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 57 A -0.0696 42.0000 40.1617 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 58 E 1.1790 34.1502 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 59 B 1.1579 34.7661 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 60 v 14.2034 29.7477 27.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 61 k -0.6554 28.5111 40.8051 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 62 J 1.2900 20.9143 40.1617 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 63 U 1.2381 40.9807 40.1617 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 64 j -0.6314 16.0484 53.4620 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 65 ( -0.3761 15.8383 52.6957 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 66 7 1.2294 25.4883 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 67 § 0.5514 20.6180 50.9240 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 68 $ -1.8398 23.6237 45.6650 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 69 € 0.9637 29.1949 39.1149 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 70 / -0.6434 17.5847 42.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 71 C 0.0000 34.5501 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 72 * -0.6092 20.0652 24.4140 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 73 ” -0.0870 21.5302 14.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 74 ? -0.0284 19.9342 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 75 { -0.7672 17.0320 52.6957 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 76 } -0.2609 17.0320 52.6957 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 77 , 35.8945 8.5769 14.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 78 I 1.0128 16.7540 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 79 ° -0.0342 17.5847 17.5847 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 80 K 1.0704 41.1680 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 81 H 1.2320 40.9305 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 82 q 13.0023 26.9520 39.8250 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 83 & 0.2576 41.3566 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 84 ’ 0.0998 8.5769 14.0000 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 85 [ 0.8774 12.6569 51.2203 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 86 - 23.7735 15.1949 5.2070 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 87 Y 1.1344 41.7612 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 88 Q -0.0211 37.9463 51.1285 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 89 " -0.2100 14.9789 16.3898 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 90 ! 0.0951 5.2070 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 91 x 14.1886 28.4678 25.9731 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 92 ) -0.3794 15.8383 52.6957 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 93 = 14.1808 30.1750 12.0135 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 94 + 5.1127 30.3898 30.3898 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 95 X 1.1949 42.0000 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 96 » 12.9105 24.9093 27.1680 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 97 ' 0.1201 5.2070 16.3898 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 98 ¢ 2.6586 21.9610 47.5712 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 99 Z 1.0513 33.9746 38.9668 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 100 > 5.5341 30.8172 29.1949 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 101 ® 0.1004 40.3777 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 102 © -0.0385 40.3777 41.3566 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 103 ] 0.4199 12.6569 51.2203 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 104 é 0.4324 22.1496 41.0199 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 105 z 13.9702 23.5833 25.9731 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 106 _ 50.3019 30.0269 2.3898 -Times_New_Roman.ttf 90 ! 5.2070 41.3566 107 ¥ 1.2867 31.4941 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 1 t -8.4899 16.5784 35.7450 -Times_New_Roman.ttf 91 x 28.4678 25.9731 2 h -15.0539 28.4261 40.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 3 a -1.2155 24.3234 28.3630 -Times_New_Roman.ttf 91 x 28.4678 25.9731 4 n -1.1118 28.4261 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 5 P -12.9033 30.0702 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 6 o -1.3309 25.1828 28.3630 -Times_New_Roman.ttf 91 x 28.4678 25.9731 7 e -1.1205 22.1496 28.3630 -Times_New_Roman.ttf 91 x 28.4678 25.9731 8 : -1.3765 5.2070 28.3630 -Times_New_Roman.ttf 91 x 28.4678 25.9731 9 r -1.3390 19.2070 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 10 l -14.5367 13.2312 40.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 11 i -14.8359 13.2312 40.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 12 1 -13.2028 15.9852 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 13 | -14.9938 2.3898 53.1828 -Times_New_Roman.ttf 91 x 28.4678 25.9731 14 N -12.7659 43.0064 40.1617 -Times_New_Roman.ttf 91 x 28.4678 25.9731 15 f -14.7556 23.6237 40.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 16 g -1.1027 26.7407 39.8250 -Times_New_Roman.ttf 91 x 28.4678 25.9731 17 d -14.5906 27.3566 42.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 18 W -13.3179 55.7208 40.1617 -Times_New_Roman.ttf 91 x 28.4678 25.9731 19 s -1.3103 17.7329 28.3630 -Times_New_Roman.ttf 91 x 28.4678 25.9731 20 c -1.4670 22.1496 28.3630 -Times_New_Roman.ttf 91 x 28.4678 25.9731 21 u -0.1076 28.6422 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 22 3 -13.1533 21.3820 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 23 ~ 6.7470 29.9208 7.5968 -Times_New_Roman.ttf 91 x 28.4678 25.9731 24 # -14.6190 26.1892 40.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 25 O -14.1943 37.9463 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 26 ` -13.3449 8.2402 9.4352 -Times_New_Roman.ttf 91 x 28.4678 25.9731 27 @ -14.6600 49.5968 54.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 28 F -12.6795 29.5579 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 29 S -14.0897 24.9668 41.5452 -Times_New_Roman.ttf 91 x 28.4678 25.9731 30 p -1.4893 26.9520 39.8250 -Times_New_Roman.ttf 91 x 28.4678 25.9731 31 “ -14.1886 21.7187 14.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 32 % -14.0281 46.5061 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 33 £ -13.1457 26.1617 40.3098 -Times_New_Roman.ttf 91 x 28.4678 25.9731 34 . 22.0402 5.2070 5.2070 -Times_New_Roman.ttf 91 x 28.4678 25.9731 35 2 -13.2002 25.4620 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 36 5 -13.0075 22.0242 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 37 m -1.1949 43.6210 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 38 V -12.9047 42.2148 40.1617 -Times_New_Roman.ttf 91 x 28.4678 25.9731 39 6 -13.3250 24.6301 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 40 w 0.0755 42.0012 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 41 T -13.0382 32.3248 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 42 M -13.2641 50.8363 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 43 G -14.2261 40.3777 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 44 b -14.6647 26.9520 42.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 45 9 -13.1134 24.2671 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 46 ; -1.1107 8.5769 37.1560 -Times_New_Roman.ttf 91 x 28.4678 25.9731 47 D -12.8702 39.5054 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 48 L -13.0220 33.1439 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 49 y -0.0519 29.1112 38.6301 -Times_New_Roman.ttf 91 x 28.4678 25.9731 50 ‘ -13.9728 8.5769 14.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 51 \ -14.9800 16.8851 42.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 52 R -12.9831 39.5470 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 53 < -8.6891 30.8172 29.1949 -Times_New_Roman.ttf 91 x 28.4678 25.9731 54 4 -13.2767 25.4620 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 55 8 -13.1446 22.7514 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 56 0 -13.1759 24.6301 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 57 A -14.0472 42.0000 40.1617 -Times_New_Roman.ttf 91 x 28.4678 25.9731 58 E -12.7403 34.1502 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 59 B -12.7558 34.7661 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 60 v 0.1485 29.7477 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 61 k -14.9078 28.5111 40.8051 -Times_New_Roman.ttf 91 x 28.4678 25.9731 62 J -13.0216 20.9143 40.1617 -Times_New_Roman.ttf 91 x 28.4678 25.9731 63 U -12.8832 40.9807 40.1617 -Times_New_Roman.ttf 91 x 28.4678 25.9731 64 j -14.7489 16.0484 53.4620 -Times_New_Roman.ttf 91 x 28.4678 25.9731 65 ( -14.4690 15.8383 52.6957 -Times_New_Roman.ttf 91 x 28.4678 25.9731 66 7 -12.6544 25.4883 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 67 § -13.3492 20.6180 50.9240 -Times_New_Roman.ttf 91 x 28.4678 25.9731 68 $ -15.9911 23.6237 45.6650 -Times_New_Roman.ttf 91 x 28.4678 25.9731 69 € -12.9792 29.1949 39.1149 -Times_New_Roman.ttf 91 x 28.4678 25.9731 70 / -14.7819 17.5847 42.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 71 C -14.0761 34.5501 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 72 * -14.7840 20.0652 24.4140 -Times_New_Roman.ttf 91 x 28.4678 25.9731 73 ” -14.2165 21.5302 14.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 74 ? -13.8941 19.9342 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 75 { -14.7603 17.0320 52.6957 -Times_New_Roman.ttf 91 x 28.4678 25.9731 76 } -14.4377 17.0320 52.6957 -Times_New_Roman.ttf 91 x 28.4678 25.9731 77 , 22.0695 8.5769 14.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 78 I -13.3405 16.7540 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 79 ° -14.4350 17.5847 17.5847 -Times_New_Roman.ttf 91 x 28.4678 25.9731 80 K -13.2451 41.1680 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 81 H -12.9730 40.9305 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 82 q -1.5741 26.9520 39.8250 -Times_New_Roman.ttf 91 x 28.4678 25.9731 83 & -14.0457 41.3566 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 84 ’ -13.9950 8.5769 14.0000 -Times_New_Roman.ttf 91 x 28.4678 25.9731 85 [ -13.5899 12.6569 51.2203 -Times_New_Roman.ttf 91 x 28.4678 25.9731 86 - 9.8022 15.1949 5.2070 -Times_New_Roman.ttf 91 x 28.4678 25.9731 87 Y -13.0901 41.7612 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 88 Q -14.2608 37.9463 51.1285 -Times_New_Roman.ttf 91 x 28.4678 25.9731 89 " -14.1453 14.9789 16.3898 -Times_New_Roman.ttf 91 x 28.4678 25.9731 90 ! -13.9752 5.2070 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 91 x 0.0039 28.4678 25.9731 -Times_New_Roman.ttf 91 x 28.4678 25.9731 92 ) -14.5647 15.8383 52.6957 -Times_New_Roman.ttf 91 x 28.4678 25.9731 93 = 0.4516 30.1750 12.0135 -Times_New_Roman.ttf 91 x 28.4678 25.9731 94 + -8.9562 30.3898 30.3898 -Times_New_Roman.ttf 91 x 28.4678 25.9731 95 X -12.8198 42.0000 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 96 » -1.2395 24.9093 27.1680 -Times_New_Roman.ttf 91 x 28.4678 25.9731 97 ' -14.1554 5.2070 16.3898 -Times_New_Roman.ttf 91 x 28.4678 25.9731 98 ¢ -11.8072 21.9610 47.5712 -Times_New_Roman.ttf 91 x 28.4678 25.9731 99 Z -12.9342 33.9746 38.9668 -Times_New_Roman.ttf 91 x 28.4678 25.9731 100 > -8.7952 30.8172 29.1949 -Times_New_Roman.ttf 91 x 28.4678 25.9731 101 ® -14.3986 40.3777 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 102 © -14.3188 40.3777 41.3566 -Times_New_Roman.ttf 91 x 28.4678 25.9731 103 ] -13.6860 12.6569 51.2203 -Times_New_Roman.ttf 91 x 28.4678 25.9731 104 é -13.7615 22.1496 41.0199 -Times_New_Roman.ttf 91 x 28.4678 25.9731 105 z 0.3580 23.5833 25.9731 -Times_New_Roman.ttf 91 x 28.4678 25.9731 106 _ 36.2257 30.0269 2.3898 -Times_New_Roman.ttf 91 x 28.4678 25.9731 107 ¥ -13.0807 31.4941 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 1 t 6.0828 16.5784 35.7450 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 2 h -0.2900 28.4261 40.8051 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 3 a 13.5099 24.3234 28.3630 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 4 n 13.2780 28.4261 27.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 5 P 1.5595 30.0702 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 6 o 13.2582 25.1828 28.3630 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 7 e 13.2395 22.1496 28.3630 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 8 : 13.1749 5.2134 28.3500 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 9 r 13.2761 19.2070 27.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 10 l -0.7257 13.2312 40.8051 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 11 i -0.2874 13.2312 40.8051 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 12 1 1.3655 15.9913 39.1026 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 13 | -0.2643 2.3814 53.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 14 N 1.3552 43.0064 40.1617 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 15 f -0.2668 23.6237 40.8051 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 16 g 13.4244 26.7407 39.8250 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 17 d -0.4179 27.3566 42.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 18 W 1.7654 55.7208 40.1617 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 19 s 13.2889 17.7329 28.3630 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 20 c 13.3731 22.1496 28.3630 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 21 u 14.3820 28.6422 27.1680 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 22 3 1.5841 21.3876 39.1026 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 23 ~ 21.0441 29.8907 7.5948 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 24 # -0.3455 26.1769 40.8093 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 25 O 0.4255 37.9463 41.3566 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 26 ` 1.1681 8.2536 9.4443 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 27 @ -0.3246 49.5948 54.8093 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 28 F 1.5584 29.5579 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 29 S 0.1663 24.9668 41.5452 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 30 p 13.2626 26.9520 39.8250 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 31 “ 0.1820 21.7123 14.0000 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 32 % 0.4533 46.5375 41.3411 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 33 £ 1.3721 26.1504 40.2933 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 34 . 36.3366 5.2134 5.2134 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 35 2 1.5138 25.4757 39.1026 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 36 5 1.1267 22.0453 38.9597 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 37 m 13.1910 43.6210 27.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 38 V 1.6142 42.2148 40.1617 -Times_New_Roman.ttf 92 ) 15.8496 52.7368 39 6 1.4879 24.6350 39.1026 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 40 w 14.5607 42.0012 27.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 41 T 1.5556 32.3248 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 42 M 1.5225 50.8363 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 43 G 0.2395 40.3777 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 44 b -0.4028 26.9520 42.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 45 9 1.3330 24.2671 39.1149 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 46 ; 13.0901 8.5769 37.1560 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 47 D 1.5196 39.5054 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 48 L 1.4013 33.1439 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 49 y 14.4330 29.1112 38.6301 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 50 ‘ 0.3164 8.5769 14.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 51 \ -0.3590 16.8851 42.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 52 R 1.5483 39.5470 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 53 < 5.9083 30.8172 29.1949 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 54 4 1.2845 25.4620 39.1149 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 55 8 1.3420 22.7514 39.1149 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 56 0 1.3743 24.6301 39.1149 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 57 A 0.2700 42.0000 40.1617 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 58 E 1.5545 34.1502 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 59 B 1.4474 34.7661 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 60 v 14.4906 29.7477 27.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 61 k -0.3721 28.5111 40.8051 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 62 J 1.2534 20.9143 40.1617 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 63 U 1.4764 40.9807 40.1617 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 64 j -0.4990 16.0484 53.4620 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 65 ( -0.0370 15.8383 52.6957 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 66 7 1.2077 25.4883 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 67 § 0.7258 20.6180 50.9240 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 68 $ -1.6293 23.6237 45.6650 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 69 € 1.2873 29.1949 39.1149 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 70 / -0.3158 17.5847 42.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 71 C 0.3557 34.5501 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 72 * -0.5331 20.0652 24.4140 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 73 ” 0.2271 21.5302 14.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 74 ? 0.3607 19.9342 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 75 { 0.1954 17.0320 52.6957 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 76 } 0.0461 17.0320 52.6957 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 77 , 36.2893 8.5769 14.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 78 I 1.4758 16.7540 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 79 ° 0.5765 17.5847 17.5847 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 80 K 1.3034 41.1680 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 81 H 1.3923 40.9305 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 82 q 13.3611 26.9520 39.8250 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 83 & 0.3323 41.3566 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 84 ’ 0.2372 8.5769 14.0000 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 85 [ 0.8244 12.6569 51.2203 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 86 - 24.1214 15.1949 5.2070 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 87 Y 1.5272 41.7612 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 88 Q 0.3646 37.9463 51.1285 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 89 " 0.2419 14.9789 16.3898 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 90 ! 0.2416 5.2070 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 91 x 14.4291 28.4678 25.9731 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 92 ) 0.0432 15.8383 52.6957 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 93 = 14.7562 30.1750 12.0135 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 94 + 5.6259 30.3898 30.3898 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 95 X 1.4754 42.0000 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 96 » 13.3212 24.9093 27.1680 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 97 ' 0.4909 5.2070 16.3898 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 98 ¢ 2.7138 21.9610 47.5712 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 99 Z 1.4782 33.9746 38.9668 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 100 > 5.7861 30.8172 29.1949 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 101 ® 0.0811 40.3777 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 102 © 0.4730 40.3777 41.3566 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 103 ] 0.7681 12.6569 51.2203 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 104 é 0.7406 22.1496 41.0199 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 105 z 14.4643 23.5833 25.9731 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 106 _ 51.0503 30.0269 2.3898 -Times_New_Roman.ttf 92 ) 15.8383 52.6957 107 ¥ 1.5671 31.4941 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 1 t -8.4173 16.5784 35.7450 -Times_New_Roman.ttf 93 = 30.1750 12.0135 2 h -14.8573 28.4261 40.8051 -Times_New_Roman.ttf 93 = 30.1750 12.0135 3 a -1.3951 24.3234 28.3630 -Times_New_Roman.ttf 93 = 30.1750 12.0135 4 n -1.4884 28.4261 27.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 5 P -13.7103 30.0702 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 6 o -1.6809 25.1828 28.3630 -Times_New_Roman.ttf 93 = 30.1750 12.0135 7 e -1.7614 22.1496 28.3630 -Times_New_Roman.ttf 93 = 30.1743 12.0076 8 : -1.6621 5.2134 28.3500 -Times_New_Roman.ttf 93 = 30.1750 12.0135 9 r -1.3284 19.2070 27.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 10 l -15.2556 13.2312 40.8051 -Times_New_Roman.ttf 93 = 30.1750 12.0135 11 i -15.4927 13.2312 40.8051 -Times_New_Roman.ttf 93 = 30.1743 12.0076 12 1 -13.5092 15.9913 39.1026 -Times_New_Roman.ttf 93 = 30.1743 12.0076 13 | -14.9777 2.3814 53.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 14 N -13.1834 43.0064 40.1617 -Times_New_Roman.ttf 93 = 30.1750 12.0135 15 f -15.0081 23.6237 40.8051 -Times_New_Roman.ttf 93 = 30.1750 12.0135 16 g -1.6136 26.7407 39.8250 -Times_New_Roman.ttf 93 = 30.1750 12.0135 17 d -15.2704 27.3566 42.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 18 W -13.2899 55.7208 40.1617 -Times_New_Roman.ttf 93 = 30.1750 12.0135 19 s -1.4081 17.7329 28.3630 -Times_New_Roman.ttf 93 = 30.1750 12.0135 20 c -1.6007 22.1496 28.3630 -Times_New_Roman.ttf 93 = 30.1750 12.0135 21 u -0.4596 28.6422 27.1680 -Times_New_Roman.ttf 93 = 30.1743 12.0076 22 3 -13.2556 21.3876 39.1026 -Times_New_Roman.ttf 93 = 30.1743 12.0076 23 ~ 6.4363 29.8907 7.5948 -Times_New_Roman.ttf 93 = 30.1743 12.0076 24 # -14.7586 26.1769 40.8093 -Times_New_Roman.ttf 93 = 30.1750 12.0135 25 O -14.4213 37.9463 41.3566 -Times_New_Roman.ttf 93 = 30.1743 12.0076 26 ` -13.7834 8.2536 9.4443 -Times_New_Roman.ttf 93 = 30.1743 12.0076 27 @ -15.2923 49.5948 54.8093 -Times_New_Roman.ttf 93 = 30.1750 12.0135 28 F -13.3889 29.5579 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 29 S -14.7565 24.9668 41.5452 -Times_New_Roman.ttf 93 = 30.1750 12.0135 30 p -1.3495 26.9520 39.8250 -Times_New_Roman.ttf 93 = 30.1743 12.0076 31 “ -14.7173 21.7123 14.0000 -Times_New_Roman.ttf 93 = 30.1743 12.0076 32 % -14.5675 46.5375 41.3411 -Times_New_Roman.ttf 93 = 30.1743 12.0076 33 £ -13.3358 26.1504 40.2933 -Times_New_Roman.ttf 93 = 30.1743 12.0076 34 . 21.4944 5.2134 5.2134 -Times_New_Roman.ttf 93 = 30.1743 12.0076 35 2 -13.0699 25.4757 39.1026 -Times_New_Roman.ttf 93 = 30.1743 12.0076 36 5 -13.1962 22.0453 38.9597 -Times_New_Roman.ttf 93 = 30.1750 12.0135 37 m -1.5829 43.6210 27.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 38 V -13.5330 42.2148 40.1617 -Times_New_Roman.ttf 93 = 30.1743 12.0076 39 6 -13.2853 24.6350 39.1026 -Times_New_Roman.ttf 93 = 30.1750 12.0135 40 w -0.2924 42.0012 27.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 41 T -13.2352 32.3248 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 42 M -13.1957 50.8363 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 43 G -14.5813 40.3777 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 44 b -14.9239 26.9520 42.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 45 9 -13.3771 24.2671 39.1149 -Times_New_Roman.ttf 93 = 30.1750 12.0135 46 ; -1.8049 8.5769 37.1560 -Times_New_Roman.ttf 93 = 30.1750 12.0135 47 D -13.3389 39.5054 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 48 L -13.1828 33.1439 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 49 y -0.2104 29.1112 38.6301 -Times_New_Roman.ttf 93 = 30.1750 12.0135 50 ‘ -14.3124 8.5769 14.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 51 \ -15.0034 16.8851 42.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 52 R -13.2699 39.5470 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 53 < -8.9175 30.8172 29.1949 -Times_New_Roman.ttf 93 = 30.1750 12.0135 54 4 -13.7297 25.4620 39.1149 -Times_New_Roman.ttf 93 = 30.1750 12.0135 55 8 -13.4712 22.7514 39.1149 -Times_New_Roman.ttf 93 = 30.1750 12.0135 56 0 -13.4060 24.6301 39.1149 -Times_New_Roman.ttf 93 = 30.1750 12.0135 57 A -14.6021 42.0000 40.1617 -Times_New_Roman.ttf 93 = 30.1750 12.0135 58 E -13.0320 34.1502 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 59 B -13.3615 34.7661 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 60 v -0.2439 29.7477 27.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 61 k -15.0630 28.5111 40.8051 -Times_New_Roman.ttf 93 = 30.1750 12.0135 62 J -13.0680 20.9143 40.1617 -Times_New_Roman.ttf 93 = 30.1750 12.0135 63 U -13.5205 40.9807 40.1617 -Times_New_Roman.ttf 93 = 30.1750 12.0135 64 j -15.1207 16.0484 53.4620 -Times_New_Roman.ttf 93 = 30.1750 12.0135 65 ( -14.7056 15.8383 52.6957 -Times_New_Roman.ttf 93 = 30.1750 12.0135 66 7 -13.1982 25.4883 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 67 § -13.9064 20.6180 50.9240 -Times_New_Roman.ttf 93 = 30.1750 12.0135 68 $ -16.1063 23.6237 45.6650 -Times_New_Roman.ttf 93 = 30.1750 12.0135 69 € -13.4214 29.1949 39.1149 -Times_New_Roman.ttf 93 = 30.1750 12.0135 70 / -15.1681 17.5847 42.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 71 C -14.3538 34.5501 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 72 * -15.3477 20.0652 24.4140 -Times_New_Roman.ttf 93 = 30.1750 12.0135 73 ” -14.6284 21.5302 14.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 74 ? -14.3393 19.9342 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 75 { -14.4451 17.0320 52.6957 -Times_New_Roman.ttf 93 = 30.1750 12.0135 76 } -14.9208 17.0320 52.6957 -Times_New_Roman.ttf 93 = 30.1750 12.0135 77 , 21.8008 8.5769 14.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 78 I -13.4489 16.7540 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 79 ° -14.6875 17.5847 17.5847 -Times_New_Roman.ttf 93 = 30.1750 12.0135 80 K -13.2946 41.1680 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 81 H -13.5979 40.9305 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 82 q -1.3451 26.9520 39.8250 -Times_New_Roman.ttf 93 = 30.1750 12.0135 83 & -14.4028 41.3566 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 84 ’ -14.5093 8.5769 14.0000 -Times_New_Roman.ttf 93 = 30.1750 12.0135 85 [ -14.0352 12.6569 51.2203 -Times_New_Roman.ttf 93 = 30.1750 12.0135 86 - 9.4200 15.1949 5.2070 -Times_New_Roman.ttf 93 = 30.1750 12.0135 87 Y -13.2001 41.7612 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 88 Q -14.6881 37.9463 51.1285 -Times_New_Roman.ttf 93 = 30.1750 12.0135 89 " -14.3499 14.9789 16.3898 -Times_New_Roman.ttf 93 = 30.1750 12.0135 90 ! -14.5979 5.2070 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 91 x -0.4990 28.4678 25.9731 -Times_New_Roman.ttf 93 = 30.1750 12.0135 92 ) -14.8359 15.8383 52.6957 -Times_New_Roman.ttf 93 = 30.1750 12.0135 93 = 0.0816 30.1750 12.0135 -Times_New_Roman.ttf 93 = 30.1750 12.0135 94 + -8.9422 30.3898 30.3898 -Times_New_Roman.ttf 93 = 30.1750 12.0135 95 X -13.4533 42.0000 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 96 » -1.5743 24.9093 27.1680 -Times_New_Roman.ttf 93 = 30.1750 12.0135 97 ' -14.3647 5.2070 16.3898 -Times_New_Roman.ttf 93 = 30.1750 12.0135 98 ¢ -11.6759 21.9610 47.5712 -Times_New_Roman.ttf 93 = 30.1750 12.0135 99 Z -13.3379 33.9746 38.9668 -Times_New_Roman.ttf 93 = 30.1750 12.0135 100 > -9.0239 30.8172 29.1949 -Times_New_Roman.ttf 93 = 30.1750 12.0135 101 ® -14.7962 40.3777 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 102 © -14.3488 40.3777 41.3566 -Times_New_Roman.ttf 93 = 30.1750 12.0135 103 ] -13.9127 12.6569 51.2203 -Times_New_Roman.ttf 93 = 30.1750 12.0135 104 é -14.0564 22.1496 41.0199 -Times_New_Roman.ttf 93 = 30.1750 12.0135 105 z -0.0279 23.5833 25.9731 -Times_New_Roman.ttf 93 = 30.1750 12.0135 106 _ 36.0073 30.0269 2.3898 -Times_New_Roman.ttf 93 = 30.1750 12.0135 107 ¥ -13.2679 31.4941 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 1 t 0.0593 16.5784 35.7450 -Times_New_Roman.ttf 94 + 30.3898 30.3898 2 h -6.0964 28.4261 40.8051 -Times_New_Roman.ttf 94 + 30.3898 30.3898 3 a 7.8606 24.3234 28.3630 -Times_New_Roman.ttf 94 + 30.3898 30.3898 4 n 7.4431 28.4261 27.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 5 P -4.4866 30.0702 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 6 o 7.3168 25.1828 28.3630 -Times_New_Roman.ttf 94 + 30.3898 30.3898 7 e 7.2902 22.1496 28.3630 -Times_New_Roman.ttf 94 + 30.3814 30.3814 8 : 7.4888 5.2134 28.3500 -Times_New_Roman.ttf 94 + 30.3898 30.3898 9 r 7.8746 19.2070 27.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 10 l -5.9752 13.2312 40.8051 -Times_New_Roman.ttf 94 + 30.3898 30.3898 11 i -6.2528 13.2312 40.8051 -Times_New_Roman.ttf 94 + 30.3814 30.3814 12 1 -4.8613 15.9913 39.1026 -Times_New_Roman.ttf 94 + 30.3814 30.3814 13 | -6.1451 2.3814 53.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 14 N -4.3488 43.0064 40.1617 -Times_New_Roman.ttf 94 + 30.3898 30.3898 15 f -6.3065 23.6237 40.8051 -Times_New_Roman.ttf 94 + 30.3898 30.3898 16 g 7.0607 26.7407 39.8250 -Times_New_Roman.ttf 94 + 30.3898 30.3898 17 d -6.2030 27.3566 42.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 18 W -4.4574 55.7208 40.1617 -Times_New_Roman.ttf 94 + 30.3898 30.3898 19 s 7.3473 17.7329 28.3630 -Times_New_Roman.ttf 94 + 30.3898 30.3898 20 c 7.5297 22.1496 28.3630 -Times_New_Roman.ttf 94 + 30.3898 30.3898 21 u 8.6808 28.6422 27.1680 -Times_New_Roman.ttf 94 + 30.3814 30.3814 22 3 -4.5714 21.3876 39.1026 -Times_New_Roman.ttf 94 + 30.3814 30.3814 23 ~ 15.1895 29.8907 7.5948 -Times_New_Roman.ttf 94 + 30.3814 30.3814 24 # -6.2590 26.1769 40.8093 -Times_New_Roman.ttf 94 + 30.3898 30.3898 25 O -5.7300 37.9463 41.3566 -Times_New_Roman.ttf 94 + 30.3814 30.3814 26 ` -4.7288 8.2536 9.4443 -Times_New_Roman.ttf 94 + 30.3814 30.3814 27 @ -6.1716 49.5948 54.8093 -Times_New_Roman.ttf 94 + 30.3898 30.3898 28 F -4.0663 29.5579 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 29 S -5.6549 24.9668 41.5452 -Times_New_Roman.ttf 94 + 30.3898 30.3898 30 p 7.5046 26.9520 39.8250 -Times_New_Roman.ttf 94 + 30.3814 30.3814 31 “ -5.4581 21.7123 14.0000 -Times_New_Roman.ttf 94 + 30.3814 30.3814 32 % -5.6112 46.5375 41.3411 -Times_New_Roman.ttf 94 + 30.3814 30.3814 33 £ -4.7445 26.1504 40.2933 -Times_New_Roman.ttf 94 + 30.3814 30.3814 34 . 30.4814 5.2134 5.2134 -Times_New_Roman.ttf 94 + 30.3814 30.3814 35 2 -4.3452 25.4757 39.1026 -Times_New_Roman.ttf 94 + 30.3814 30.3814 36 5 -4.2453 22.0453 38.9597 -Times_New_Roman.ttf 94 + 30.3898 30.3898 37 m 7.3741 43.6210 27.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 38 V -4.4830 42.2148 40.1617 -Times_New_Roman.ttf 94 + 30.3814 30.3814 39 6 -4.3706 24.6350 39.1026 -Times_New_Roman.ttf 94 + 30.3898 30.3898 40 w 8.5977 42.0012 27.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 41 T -4.3852 32.3248 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 42 M -4.3334 50.8363 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 43 G -5.6073 40.3777 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 44 b -6.1871 26.9520 42.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 45 9 -4.3797 24.2671 39.1149 -Times_New_Roman.ttf 94 + 30.3898 30.3898 46 ; 7.3317 8.5769 37.1560 -Times_New_Roman.ttf 94 + 30.3898 30.3898 47 D -4.6604 39.5054 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 48 L -4.3391 33.1439 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 49 y 8.4494 29.1112 38.6301 -Times_New_Roman.ttf 94 + 30.3898 30.3898 50 ‘ -5.7397 8.5769 14.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 51 \ -6.1228 16.8851 42.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 52 R -4.5323 39.5470 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 53 < 0.2858 30.8172 29.1949 -Times_New_Roman.ttf 94 + 30.3898 30.3898 54 4 -4.6009 25.4620 39.1149 -Times_New_Roman.ttf 94 + 30.3898 30.3898 55 8 -4.2437 22.7514 39.1149 -Times_New_Roman.ttf 94 + 30.3898 30.3898 56 0 -4.4969 24.6301 39.1149 -Times_New_Roman.ttf 94 + 30.3898 30.3898 57 A -5.5750 42.0000 40.1617 -Times_New_Roman.ttf 94 + 30.3898 30.3898 58 E -4.2589 34.1502 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 59 B -4.3905 34.7661 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 60 v 8.5247 29.7477 27.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 61 k -6.0482 28.5111 40.8051 -Times_New_Roman.ttf 94 + 30.3898 30.3898 62 J -4.4124 20.9143 40.1617 -Times_New_Roman.ttf 94 + 30.3898 30.3898 63 U -4.2172 40.9807 40.1617 -Times_New_Roman.ttf 94 + 30.3898 30.3898 64 j -6.3779 16.0484 53.4620 -Times_New_Roman.ttf 94 + 30.3898 30.3898 65 ( -5.6381 15.8383 52.6957 -Times_New_Roman.ttf 94 + 30.3898 30.3898 66 7 -4.2542 25.4883 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 67 § -4.7602 20.6180 50.9240 -Times_New_Roman.ttf 94 + 30.3898 30.3898 68 $ -7.2350 23.6237 45.6650 -Times_New_Roman.ttf 94 + 30.3898 30.3898 69 € -4.6473 29.1949 39.1149 -Times_New_Roman.ttf 94 + 30.3898 30.3898 70 / -6.3159 17.5847 42.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 71 C -5.2388 34.5501 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 72 * -6.1015 20.0652 24.4140 -Times_New_Roman.ttf 94 + 30.3898 30.3898 73 ” -5.6854 21.5302 14.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 74 ? -5.6279 19.9342 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 75 { -5.9120 17.0320 52.6957 -Times_New_Roman.ttf 94 + 30.3898 30.3898 76 } -6.0167 17.0320 52.6957 -Times_New_Roman.ttf 94 + 30.3898 30.3898 77 , 30.5613 8.5769 14.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 78 I -4.6187 16.7540 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 79 ° -5.7071 17.5847 17.5847 -Times_New_Roman.ttf 94 + 30.3898 30.3898 80 K -4.2685 41.1680 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 81 H -4.4741 40.9305 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 82 q 7.1357 26.9520 39.8250 -Times_New_Roman.ttf 94 + 30.3898 30.3898 83 & -5.2616 41.3566 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 84 ’ -5.6917 8.5769 14.0000 -Times_New_Roman.ttf 94 + 30.3898 30.3898 85 [ -4.9903 12.6569 51.2203 -Times_New_Roman.ttf 94 + 30.3898 30.3898 86 - 18.5643 15.1949 5.2070 -Times_New_Roman.ttf 94 + 30.3898 30.3898 87 Y -4.1581 41.7612 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 88 Q -5.4879 37.9463 51.1285 -Times_New_Roman.ttf 94 + 30.3898 30.3898 89 " -5.4875 14.9789 16.3898 -Times_New_Roman.ttf 94 + 30.3898 30.3898 90 ! -5.5357 5.2070 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 91 x 8.8143 28.4678 25.9731 -Times_New_Roman.ttf 94 + 30.3898 30.3898 92 ) -5.8227 15.8383 52.6957 -Times_New_Roman.ttf 94 + 30.3898 30.3898 93 = 9.0347 30.1750 12.0135 -Times_New_Roman.ttf 94 + 30.3898 30.3898 94 + -0.1436 30.3898 30.3898 -Times_New_Roman.ttf 94 + 30.3898 30.3898 95 X -4.5214 42.0000 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 96 » 7.1516 24.9093 27.1680 -Times_New_Roman.ttf 94 + 30.3898 30.3898 97 ' -5.5067 5.2070 16.3898 -Times_New_Roman.ttf 94 + 30.3898 30.3898 98 ¢ -2.9979 21.9610 47.5712 -Times_New_Roman.ttf 94 + 30.3898 30.3898 99 Z -4.3959 33.9746 38.9668 -Times_New_Roman.ttf 94 + 30.3898 30.3898 100 > -0.1201 30.8172 29.1949 -Times_New_Roman.ttf 94 + 30.3898 30.3898 101 ® -5.6591 40.3777 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 102 © -5.7762 40.3777 41.3566 -Times_New_Roman.ttf 94 + 30.3898 30.3898 103 ] -5.0422 12.6569 51.2203 -Times_New_Roman.ttf 94 + 30.3898 30.3898 104 é -5.2354 22.1496 41.0199 -Times_New_Roman.ttf 94 + 30.3898 30.3898 105 z 8.8749 23.5833 25.9731 -Times_New_Roman.ttf 94 + 30.3898 30.3898 106 _ 44.9398 30.0269 2.3898 -Times_New_Roman.ttf 94 + 30.3898 30.3898 107 ¥ -4.3089 31.4941 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 1 t 4.3836 16.5784 35.7450 -Times_New_Roman.ttf 95 X 42.0000 38.9668 2 h -2.1520 28.4261 40.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 3 a 11.6301 24.3234 28.3630 -Times_New_Roman.ttf 95 X 42.0000 38.9668 4 n 11.8222 28.4261 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 5 P 0.3379 30.0702 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 6 o 11.8185 25.1828 28.3630 -Times_New_Roman.ttf 95 X 42.0000 38.9668 7 e 11.9222 22.1496 28.3630 -Times_New_Roman.ttf 95 X 42.0000 38.9668 8 : 12.0017 5.2070 28.3630 -Times_New_Roman.ttf 95 X 42.0000 38.9668 9 r 11.7814 19.2070 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 10 l -1.5030 13.2312 40.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 11 i -1.7698 13.2312 40.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 12 1 -0.3256 15.9852 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 13 | -1.6370 2.3898 53.1828 -Times_New_Roman.ttf 95 X 42.0000 38.9668 14 N -0.0558 43.0064 40.1617 -Times_New_Roman.ttf 95 X 42.0000 38.9668 15 f -2.1139 23.6237 40.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 16 g 11.7643 26.7407 39.8250 -Times_New_Roman.ttf 95 X 42.0000 38.9668 17 d -1.9777 27.3566 42.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 18 W 0.2032 55.7208 40.1617 -Times_New_Roman.ttf 95 X 42.0000 38.9668 19 s 11.7711 17.7329 28.3630 -Times_New_Roman.ttf 95 X 42.0000 38.9668 20 c 11.6176 22.1496 28.3630 -Times_New_Roman.ttf 95 X 42.0000 38.9668 21 u 13.0710 28.6422 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 22 3 0.2742 21.3820 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 23 ~ 19.7162 29.9208 7.5968 -Times_New_Roman.ttf 95 X 42.0000 38.9668 24 # -1.6322 26.1892 40.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 25 O -1.3161 37.9463 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 26 ` -0.3625 8.2402 9.4352 -Times_New_Roman.ttf 95 X 42.0000 38.9668 27 @ -1.9507 49.5968 54.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 28 F 0.1349 29.5579 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 29 S -1.1135 24.9668 41.5452 -Times_New_Roman.ttf 95 X 42.0000 38.9668 30 p 11.7584 26.9520 39.8250 -Times_New_Roman.ttf 95 X 42.0000 38.9668 31 “ -1.3286 21.7187 14.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 32 % -1.3202 46.5061 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 33 £ -0.4249 26.1617 40.3098 -Times_New_Roman.ttf 95 X 42.0000 38.9668 34 . 35.0844 5.2070 5.2070 -Times_New_Roman.ttf 95 X 42.0000 38.9668 35 2 -0.1510 25.4620 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 36 5 -0.0821 22.0242 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 37 m 11.9376 43.6210 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 38 V 0.0792 42.2148 40.1617 -Times_New_Roman.ttf 95 X 42.0000 38.9668 39 6 -0.0607 24.6301 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 40 w 12.7778 42.0012 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 41 T 0.0080 32.3248 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 42 M -0.2171 50.8363 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 43 G -1.2324 40.3777 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 44 b -1.8920 26.9520 42.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 45 9 0.0532 24.2671 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 46 ; 12.0191 8.5769 37.1560 -Times_New_Roman.ttf 95 X 42.0000 38.9668 47 D 0.0461 39.5054 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 48 L -0.0659 33.1439 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 49 y 13.1242 29.1112 38.6301 -Times_New_Roman.ttf 95 X 42.0000 38.9668 50 ‘ -1.2141 8.5769 14.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 51 \ -1.8844 16.8851 42.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 52 R -0.0990 39.5470 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 53 < 4.5320 30.8172 29.1949 -Times_New_Roman.ttf 95 X 42.0000 38.9668 54 4 -0.2302 25.4620 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 55 8 -0.1877 22.7514 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 56 0 -0.4562 24.6301 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 57 A -1.0931 42.0000 40.1617 -Times_New_Roman.ttf 95 X 42.0000 38.9668 58 E -0.1327 34.1502 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 59 B 0.3315 34.7661 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 60 v 13.0656 29.7477 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 61 k -1.9326 28.5111 40.8051 -Times_New_Roman.ttf 95 X 42.0000 38.9668 62 J -0.0856 20.9143 40.1617 -Times_New_Roman.ttf 95 X 42.0000 38.9668 63 U 0.1428 40.9807 40.1617 -Times_New_Roman.ttf 95 X 42.0000 38.9668 64 j -1.8859 16.0484 53.4620 -Times_New_Roman.ttf 95 X 42.0000 38.9668 65 ( -1.7244 15.8383 52.6957 -Times_New_Roman.ttf 95 X 42.0000 38.9668 66 7 0.3349 25.4883 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 67 § -0.4752 20.6180 50.9240 -Times_New_Roman.ttf 95 X 42.0000 38.9668 68 $ -2.9106 23.6237 45.6650 -Times_New_Roman.ttf 95 X 42.0000 38.9668 69 € -0.2413 29.1949 39.1149 -Times_New_Roman.ttf 95 X 42.0000 38.9668 70 / -1.6726 17.5847 42.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 71 C -1.0888 34.5501 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 72 * -1.7956 20.0652 24.4140 -Times_New_Roman.ttf 95 X 42.0000 38.9668 73 ” -1.0945 21.5302 14.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 74 ? -1.0992 19.9342 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 75 { -1.5536 17.0320 52.6957 -Times_New_Roman.ttf 95 X 42.0000 38.9668 76 } -1.5584 17.0320 52.6957 -Times_New_Roman.ttf 95 X 42.0000 38.9668 77 , 35.0729 8.5769 14.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 78 I 0.1626 16.7540 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 79 ° -0.7967 17.5847 17.5847 -Times_New_Roman.ttf 95 X 42.0000 38.9668 80 K -0.1173 41.1680 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 81 H 0.1548 40.9305 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 82 q 11.7587 26.9520 39.8250 -Times_New_Roman.ttf 95 X 42.0000 38.9668 83 & -1.0229 41.3566 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 84 ’ -1.4249 8.5769 14.0000 -Times_New_Roman.ttf 95 X 42.0000 38.9668 85 [ -0.7067 12.6569 51.2203 -Times_New_Roman.ttf 95 X 42.0000 38.9668 86 - 23.0434 15.1949 5.2070 -Times_New_Roman.ttf 95 X 42.0000 38.9668 87 Y 0.3494 41.7612 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 88 Q -1.6426 37.9463 51.1285 -Times_New_Roman.ttf 95 X 42.0000 38.9668 89 " -1.0737 14.9789 16.3898 -Times_New_Roman.ttf 95 X 42.0000 38.9668 90 ! -0.8333 5.2070 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 91 x 13.0487 28.4678 25.9731 -Times_New_Roman.ttf 95 X 42.0000 38.9668 92 ) -1.4837 15.8383 52.6957 -Times_New_Roman.ttf 95 X 42.0000 38.9668 93 = 13.3298 30.1750 12.0135 -Times_New_Roman.ttf 95 X 42.0000 38.9668 94 + 4.5356 30.3898 30.3898 -Times_New_Roman.ttf 95 X 42.0000 38.9668 95 X -0.0537 42.0000 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 96 » 11.8750 24.9093 27.1680 -Times_New_Roman.ttf 95 X 42.0000 38.9668 97 ' -0.9531 5.2070 16.3898 -Times_New_Roman.ttf 95 X 42.0000 38.9668 98 ¢ 1.2109 21.9610 47.5712 -Times_New_Roman.ttf 95 X 42.0000 38.9668 99 Z 0.2253 33.9746 38.9668 -Times_New_Roman.ttf 95 X 42.0000 38.9668 100 > 4.2451 30.8172 29.1949 -Times_New_Roman.ttf 95 X 42.0000 38.9668 101 ® -1.0283 40.3777 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 102 © -1.3867 40.3777 41.3566 -Times_New_Roman.ttf 95 X 42.0000 38.9668 103 ] -0.5128 12.6569 51.2203 -Times_New_Roman.ttf 95 X 42.0000 38.9668 104 é -0.8514 22.1496 41.0199 -Times_New_Roman.ttf 95 X 42.0000 38.9668 105 z 12.8667 23.5833 25.9731 -Times_New_Roman.ttf 95 X 42.0000 38.9668 106 _ 49.2748 30.0269 2.3898 -Times_New_Roman.ttf 95 X 42.0000 38.9668 107 ¥ -0.1302 31.4941 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 1 t -7.2244 16.5784 35.7450 -Times_New_Roman.ttf 96 » 24.9093 27.1680 2 h -13.5872 28.4261 40.8051 -Times_New_Roman.ttf 96 » 24.9093 27.1680 3 a -0.0068 24.3234 28.3630 -Times_New_Roman.ttf 96 » 24.9093 27.1680 4 n 0.1274 28.4261 27.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 5 P -11.5882 30.0702 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 6 o 0.2771 25.1828 28.3630 -Times_New_Roman.ttf 96 » 24.9093 27.1680 7 e 0.1032 22.1496 28.3630 -Times_New_Roman.ttf 96 » 24.9427 27.1593 8 : 0.0000 5.2134 28.3500 -Times_New_Roman.ttf 96 » 24.9093 27.1680 9 r -0.1854 19.2070 27.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 10 l -13.5706 13.2312 40.8051 -Times_New_Roman.ttf 96 » 24.9093 27.1680 11 i -13.9961 13.2312 40.8051 -Times_New_Roman.ttf 96 » 24.9427 27.1593 12 1 -11.8041 15.9913 39.1026 -Times_New_Roman.ttf 96 » 24.9427 27.1593 13 | -13.3734 2.3814 53.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 14 N -11.6844 43.0064 40.1617 -Times_New_Roman.ttf 96 » 24.9093 27.1680 15 f -13.6543 23.6237 40.8051 -Times_New_Roman.ttf 96 » 24.9093 27.1680 16 g 0.0802 26.7407 39.8250 -Times_New_Roman.ttf 96 » 24.9093 27.1680 17 d -13.9041 27.3566 42.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 18 W -11.7103 55.7208 40.1617 -Times_New_Roman.ttf 96 » 24.9093 27.1680 19 s 0.0360 17.7329 28.3630 -Times_New_Roman.ttf 96 » 24.9093 27.1680 20 c -0.2163 22.1496 28.3630 -Times_New_Roman.ttf 96 » 24.9093 27.1680 21 u 1.1032 28.6422 27.1680 -Times_New_Roman.ttf 96 » 24.9427 27.1593 22 3 -11.9387 21.3876 39.1026 -Times_New_Roman.ttf 96 » 24.9427 27.1593 23 ~ 7.6186 29.8907 7.5948 -Times_New_Roman.ttf 96 » 24.9427 27.1593 24 # -13.5861 26.1769 40.8093 -Times_New_Roman.ttf 96 » 24.9093 27.1680 25 O -12.7187 37.9463 41.3566 -Times_New_Roman.ttf 96 » 24.9427 27.1593 26 ` -11.9133 8.2536 9.4443 -Times_New_Roman.ttf 96 » 24.9427 27.1593 27 @ -13.8658 49.5948 54.8093 -Times_New_Roman.ttf 96 » 24.9093 27.1680 28 F -11.9621 29.5579 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 29 S -13.3119 24.9668 41.5452 -Times_New_Roman.ttf 96 » 24.9093 27.1680 30 p 0.2702 26.9520 39.8250 -Times_New_Roman.ttf 96 » 24.9427 27.1593 31 “ -13.2441 21.7123 14.0000 -Times_New_Roman.ttf 96 » 24.9427 27.1593 32 % -12.8187 46.5375 41.3411 -Times_New_Roman.ttf 96 » 24.9427 27.1593 33 £ -11.8594 26.1504 40.2933 -Times_New_Roman.ttf 96 » 24.9427 27.1593 34 . 23.0065 5.2134 5.2134 -Times_New_Roman.ttf 96 » 24.9427 27.1593 35 2 -11.8204 25.4757 39.1026 -Times_New_Roman.ttf 96 » 24.9427 27.1593 36 5 -11.8125 22.0453 38.9597 -Times_New_Roman.ttf 96 » 24.9093 27.1680 37 m 0.0485 43.6210 27.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 38 V -11.7862 42.2148 40.1617 -Times_New_Roman.ttf 96 » 24.9427 27.1593 39 6 -11.6473 24.6350 39.1026 -Times_New_Roman.ttf 96 » 24.9093 27.1680 40 w 1.3270 42.0012 27.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 41 T -11.8506 32.3248 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 42 M -11.6997 50.8363 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 43 G -13.0807 40.3777 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 44 b -13.6741 26.9520 42.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 45 9 -12.0027 24.2671 39.1149 -Times_New_Roman.ttf 96 » 24.9093 27.1680 46 ; 0.2590 8.5769 37.1560 -Times_New_Roman.ttf 96 » 24.9093 27.1680 47 D -11.5158 39.5054 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 48 L -11.5670 33.1439 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 49 y 1.0871 29.1112 38.6301 -Times_New_Roman.ttf 96 » 24.9093 27.1680 50 ‘ -12.9095 8.5769 14.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 51 \ -13.8475 16.8851 42.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 52 R -11.9395 39.5470 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 53 < -7.6393 30.8172 29.1949 -Times_New_Roman.ttf 96 » 24.9093 27.1680 54 4 -11.9656 25.4620 39.1149 -Times_New_Roman.ttf 96 » 24.9093 27.1680 55 8 -12.0982 22.7514 39.1149 -Times_New_Roman.ttf 96 » 24.9093 27.1680 56 0 -11.9196 24.6301 39.1149 -Times_New_Roman.ttf 96 » 24.9093 27.1680 57 A -12.9027 42.0000 40.1617 -Times_New_Roman.ttf 96 » 24.9093 27.1680 58 E -11.7451 34.1502 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 59 B -12.2171 34.7661 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 60 v 1.2635 29.7477 27.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 61 k -13.4737 28.5111 40.8051 -Times_New_Roman.ttf 96 » 24.9093 27.1680 62 J -12.0510 20.9143 40.1617 -Times_New_Roman.ttf 96 » 24.9093 27.1680 63 U -11.9808 40.9807 40.1617 -Times_New_Roman.ttf 96 » 24.9093 27.1680 64 j -13.3768 16.0484 53.4620 -Times_New_Roman.ttf 96 » 24.9093 27.1680 65 ( -13.2799 15.8383 52.6957 -Times_New_Roman.ttf 96 » 24.9093 27.1680 66 7 -11.7516 25.4883 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 67 § -12.3810 20.6180 50.9240 -Times_New_Roman.ttf 96 » 24.9093 27.1680 68 $ -14.7539 23.6237 45.6650 -Times_New_Roman.ttf 96 » 24.9093 27.1680 69 € -12.0675 29.1949 39.1149 -Times_New_Roman.ttf 96 » 24.9093 27.1680 70 / -13.8815 17.5847 42.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 71 C -12.9148 34.5501 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 72 * -13.7090 20.0652 24.4140 -Times_New_Roman.ttf 96 » 24.9093 27.1680 73 ” -12.9431 21.5302 14.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 74 ? -13.2088 19.9342 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 75 { -13.0603 17.0320 52.6957 -Times_New_Roman.ttf 96 » 24.9093 27.1680 76 } -13.5273 17.0320 52.6957 -Times_New_Roman.ttf 96 » 24.9093 27.1680 77 , 23.1982 8.5769 14.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 78 I -11.6163 16.7540 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 79 ° -12.9047 17.5847 17.5847 -Times_New_Roman.ttf 96 » 24.9093 27.1680 80 K -11.8591 41.1680 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 81 H -11.4494 40.9305 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 82 q -0.0130 26.9520 39.8250 -Times_New_Roman.ttf 96 » 24.9093 27.1680 83 & -12.8673 41.3566 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 84 ’ -12.9105 8.5769 14.0000 -Times_New_Roman.ttf 96 » 24.9093 27.1680 85 [ -12.5714 12.6569 51.2203 -Times_New_Roman.ttf 96 » 24.9093 27.1680 86 - 10.7079 15.1949 5.2070 -Times_New_Roman.ttf 96 » 24.9093 27.1680 87 Y -11.7508 41.7612 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 88 Q -12.8707 37.9463 51.1285 -Times_New_Roman.ttf 96 » 24.9093 27.1680 89 " -12.9047 14.9789 16.3898 -Times_New_Roman.ttf 96 » 24.9093 27.1680 90 ! -12.9853 5.2070 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 91 x 1.0081 28.4678 25.9731 -Times_New_Roman.ttf 96 » 24.9093 27.1680 92 ) -13.2813 15.8383 52.6957 -Times_New_Roman.ttf 96 » 24.9093 27.1680 93 = 1.5423 30.1750 12.0135 -Times_New_Roman.ttf 96 » 24.9093 27.1680 94 + -7.5403 30.3898 30.3898 -Times_New_Roman.ttf 96 » 24.9093 27.1680 95 X -11.9193 42.0000 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 96 » 0.0235 24.9093 27.1680 -Times_New_Roman.ttf 96 » 24.9093 27.1680 97 ' -13.3991 5.2070 16.3898 -Times_New_Roman.ttf 96 » 24.9093 27.1680 98 ¢ -10.7660 21.9610 47.5712 -Times_New_Roman.ttf 96 » 24.9093 27.1680 99 Z -11.7588 33.9746 38.9668 -Times_New_Roman.ttf 96 » 24.9093 27.1680 100 > -7.4528 30.8172 29.1949 -Times_New_Roman.ttf 96 » 24.9093 27.1680 101 ® -13.1776 40.3777 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 102 © -13.0778 40.3777 41.3566 -Times_New_Roman.ttf 96 » 24.9093 27.1680 103 ] -12.3504 12.6569 51.2203 -Times_New_Roman.ttf 96 » 24.9093 27.1680 104 é -12.7654 22.1496 41.0199 -Times_New_Roman.ttf 96 » 24.9093 27.1680 105 z 1.1709 23.5833 25.9731 -Times_New_Roman.ttf 96 » 24.9093 27.1680 106 _ 37.4352 30.0269 2.3898 -Times_New_Roman.ttf 96 » 24.9093 27.1680 107 ¥ -11.4647 31.4941 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 1 t 5.4396 16.5784 35.7450 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 2 h -0.7265 28.4261 40.8051 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 3 a 13.1257 24.3234 28.3630 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 4 n 12.9936 28.4261 27.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 5 P 1.1107 30.0702 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 6 o 12.9134 25.1828 28.3630 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 7 e 13.0307 22.1496 28.3630 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 8 : 13.1653 5.2134 28.3500 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 9 r 13.0335 19.2070 27.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 10 l -0.6434 13.2312 40.8051 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 11 i -0.6434 13.2312 40.8051 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 12 1 1.0863 15.9913 39.1026 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 13 | -0.7775 2.3814 53.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 14 N 1.1949 43.0064 40.1617 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 15 f -0.6786 23.6237 40.8051 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 16 g 12.8724 26.7407 39.8250 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 17 d -0.6434 27.3566 42.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 18 W 1.2320 55.7208 40.1617 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 19 s 12.9047 17.7329 28.3630 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 20 c 13.0074 22.1496 28.3630 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 21 u 14.1055 28.6422 27.1680 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 22 3 0.9705 21.3876 39.1026 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 23 ~ 20.8473 29.8907 7.5948 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 24 # -0.5014 26.1769 40.8093 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 25 O 0.3080 37.9463 41.3566 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 26 ` 0.8565 8.2536 9.4443 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 27 @ -0.5543 49.5948 54.8093 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 28 F 1.1546 29.5579 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 29 S -0.0877 24.9668 41.5452 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 30 p 12.8946 26.9520 39.8250 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 31 “ -0.1000 21.7123 14.0000 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 32 % 0.0500 46.5375 41.3411 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 33 £ 1.3903 26.1504 40.2933 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 34 . 36.1769 5.2134 5.2134 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 35 2 1.0451 25.4757 39.1026 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 36 5 1.1764 22.0453 38.9597 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 37 m 12.9936 43.6210 27.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 38 V 1.2752 42.2148 40.1617 -Times_New_Roman.ttf 97 ' 5.2134 16.3814 39 6 1.1863 24.6350 39.1026 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 40 w 14.1886 42.0012 27.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 41 T 1.1949 32.3248 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 42 M 1.1949 50.8363 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 43 G -0.0206 40.3777 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 44 b -0.5517 26.9520 42.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 45 9 1.1270 24.2671 39.1149 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 46 ; 12.8342 8.5769 37.1560 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 47 D 1.1107 39.5054 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 48 L 1.1550 33.1439 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 49 y 14.1886 29.1112 38.6301 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 50 ‘ 0.1436 8.5769 14.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 51 \ -0.5397 16.8851 42.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 52 R 1.3020 39.5470 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 53 < 5.6649 30.8172 29.1949 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 54 4 0.9637 25.4620 39.1149 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 55 8 1.0468 22.7514 39.1149 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 56 0 0.9996 24.6301 39.1149 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 57 A 0.0028 42.0000 40.1617 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 58 E 1.3817 34.1502 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 59 B 1.3583 34.7661 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 60 v 14.1886 29.7477 27.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 61 k -0.5545 28.5111 40.8051 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 62 J 1.2674 20.9143 40.1617 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 63 U 1.2069 40.9807 40.1617 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 64 j -0.6434 16.0484 53.4620 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 65 ( -0.2372 15.8383 52.6957 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 66 7 1.1478 25.4883 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 67 § 0.5960 20.6180 50.9240 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 68 $ -1.6815 23.6237 45.6650 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 69 € 1.0468 29.1949 39.1149 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 70 / -0.7750 17.5847 42.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 71 C -0.0471 34.5501 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 72 * -0.6880 20.0652 24.4140 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 73 ” 0.0490 21.5302 14.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 74 ? 0.1907 19.9342 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 75 { -0.2804 17.0320 52.6957 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 76 } -0.3646 17.0320 52.6957 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 77 , 36.1025 8.5769 14.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 78 I 1.2780 16.7540 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 79 ° 0.0000 17.5847 17.5847 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 80 K 1.1949 41.1680 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 81 H 1.2468 40.9305 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 82 q 13.0056 26.9520 39.8250 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 83 & -0.0028 41.3566 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 84 ’ 0.0667 8.5769 14.0000 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 85 [ 0.4645 12.6569 51.2203 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 86 - 23.8519 15.1949 5.2070 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 87 Y 1.1032 41.7612 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 88 Q 0.0870 37.9463 51.1285 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 89 " -0.1230 14.9789 16.3898 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 90 ! 0.0039 5.2070 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 91 x 13.9999 28.4678 25.9731 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 92 ) -0.2844 15.8383 52.6957 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 93 = 14.4924 30.1750 12.0135 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 94 + 5.5437 30.3898 30.3898 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 95 X 1.2867 42.0000 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 96 » 13.0455 24.9093 27.1680 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 97 ' -0.0591 5.2070 16.3898 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 98 ¢ 2.4747 21.9610 47.5712 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 99 Z 1.3150 33.9746 38.9668 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 100 > 5.5524 30.8172 29.1949 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 101 ® -0.0842 40.3777 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 102 © 0.1360 40.3777 41.3566 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 103 ] 0.5987 12.6569 51.2203 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 104 é 0.5235 22.1496 41.0199 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 105 z 14.3293 23.5833 25.9731 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 106 _ 50.6432 30.0269 2.3898 -Times_New_Roman.ttf 97 ' 5.2070 16.3898 107 ¥ 1.2780 31.4941 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 1 t 2.8660 16.5784 35.7450 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 2 h -3.5235 28.4261 40.8051 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 3 a 10.3907 24.3234 28.3630 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 4 n 10.6747 28.4261 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 5 P -1.4872 30.0702 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 6 o 10.2438 25.1828 28.3630 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 7 e 10.4551 22.1496 28.3630 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 8 : 10.2847 5.2134 28.3500 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 9 r 10.5513 19.2070 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 10 l -3.3049 13.2312 40.8051 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 11 i -3.3060 13.2312 40.8051 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 12 1 -1.5503 15.9913 39.1026 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 13 | -2.9186 2.3814 53.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 14 N -2.0057 43.0064 40.1617 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 15 f -3.4259 23.6237 40.8051 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 16 g 10.3235 26.7407 39.8250 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 17 d -3.2218 27.3566 42.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 18 W -1.4046 55.7208 40.1617 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 19 s 10.3196 17.7329 28.3630 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 20 c 10.5153 22.1496 28.3630 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 21 u 11.5627 28.6422 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 22 3 -1.6993 21.3876 39.1026 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 23 ~ 18.4268 29.8907 7.5948 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 24 # -3.1683 26.1769 40.8093 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 25 O -2.6143 37.9463 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 26 ` -1.9110 8.2536 9.4443 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 27 @ -3.3834 49.5948 54.8093 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 28 F -1.3483 29.5579 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 29 S -2.9462 24.9668 41.5452 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 30 p 10.6138 26.9520 39.8250 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 31 “ -2.4904 21.7123 14.0000 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 32 % -2.3866 46.5375 41.3411 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 33 £ -1.3684 26.1504 40.2933 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 34 . 33.5100 5.2134 5.2134 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 35 2 -1.6437 25.4757 39.1026 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 36 5 -1.5449 22.0453 38.9597 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 37 m 10.6013 43.6210 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 38 V -1.5376 42.2148 40.1617 -Times_New_Roman.ttf 98 ¢ 21.9459 47.5645 39 6 -1.4380 24.6350 39.1026 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 40 w 11.5583 42.0012 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 41 T -1.4437 32.3248 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 42 M -1.6631 50.8363 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 43 G -2.5312 40.3777 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 44 b -3.3481 26.9520 42.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 45 9 -1.7064 24.2671 39.1149 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 46 ; 10.4153 8.5769 37.1560 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 47 D -1.4618 39.5054 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 48 L -1.3668 33.1439 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 49 y 11.5569 29.1112 38.6301 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 50 ‘ -2.7435 8.5769 14.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 51 \ -2.9609 16.8851 42.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 52 R -1.3715 39.5470 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 53 < 2.8020 30.8172 29.1949 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 54 4 -1.4143 25.4620 39.1149 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 55 8 -1.6557 22.7514 39.1149 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 56 0 -1.6390 24.6301 39.1149 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 57 A -2.4414 42.0000 40.1617 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 58 E -1.4536 34.1502 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 59 B -0.9924 34.7661 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 60 v 11.5987 29.7477 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 61 k -3.2377 28.5111 40.8051 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 62 J -1.1177 20.9143 40.1617 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 63 U -1.4426 40.9807 40.1617 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 64 j -3.1056 16.0484 53.4620 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 65 ( -2.7401 15.8383 52.6957 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 66 7 -1.3224 25.4883 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 67 § -1.9191 20.6180 50.9240 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 68 $ -4.3402 23.6237 45.6650 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 69 € -1.6752 29.1949 39.1149 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 70 / -3.4259 17.5847 42.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 71 C -2.6183 34.5501 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 72 * -3.2522 20.0652 24.4140 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 73 ” -2.3444 21.5302 14.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 74 ? -2.7457 19.9342 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 75 { -2.8343 17.0320 52.6957 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 76 } -3.0631 17.0320 52.6957 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 77 , 33.7817 8.5769 14.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 78 I -1.2542 16.7540 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 79 ° -2.6115 17.5847 17.5847 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 80 K -1.4705 41.1680 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 81 H -1.2920 40.9305 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 82 q 10.3801 26.9520 39.8250 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 83 & -2.7907 41.3566 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 84 ’ -2.6079 8.5769 14.0000 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 85 [ -2.1498 12.6569 51.2203 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 86 - 21.5891 15.1949 5.2070 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 87 Y -1.4114 41.7612 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 88 Q -2.4268 37.9463 51.1285 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 89 " -2.4815 14.9789 16.3898 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 90 ! -2.4092 5.2070 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 91 x 11.7092 28.4678 25.9731 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 92 ) -2.6955 15.8383 52.6957 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 93 = 11.5390 30.1750 12.0135 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 94 + 3.2248 30.3898 30.3898 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 95 X -1.1273 42.0000 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 96 » 10.0914 24.9093 27.1680 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 97 ' -2.6490 5.2070 16.3898 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 98 ¢ -0.0889 21.9610 47.5712 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 99 Z -1.3152 33.9746 38.9668 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 100 > 2.8804 30.8172 29.1949 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 101 ® -2.4135 40.3777 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 102 © -2.4275 40.3777 41.3566 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 103 ] -2.1384 12.6569 51.2203 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 104 é -2.1244 22.1496 41.0199 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 105 z 11.4117 23.5833 25.9731 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 106 _ 47.7125 30.0269 2.3898 -Times_New_Roman.ttf 98 ¢ 21.9610 47.5712 107 ¥ -1.3436 31.4941 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 1 t 4.2408 16.5784 35.7450 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 2 h -1.6976 28.4261 40.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 3 a 11.7084 24.3234 28.3630 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 4 n 11.6166 28.4261 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 5 P 0.0076 30.0702 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 6 o 11.9649 25.1828 28.3630 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 7 e 11.7792 22.1496 28.3630 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 8 : 12.0919 5.2070 28.3630 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 9 r 11.8107 19.2070 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 10 l -2.0582 13.2312 40.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 11 i -1.7028 13.2312 40.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 12 1 -0.1751 15.9852 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 13 | -1.7346 2.3898 53.1828 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 14 N -0.2518 43.0064 40.1617 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 15 f -2.2206 23.6237 40.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 16 g 11.5922 26.7407 39.8250 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 17 d -1.7422 27.3566 42.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 18 W -0.1009 55.7208 40.1617 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 19 s 11.5089 17.7329 28.3630 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 20 c 11.9116 22.1496 28.3630 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 21 u 12.7524 28.6422 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 22 3 -0.1534 21.3820 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 23 ~ 19.4789 29.9208 7.5968 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 24 # -1.6914 26.1892 40.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 25 O -1.2824 37.9463 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 26 ` -0.1991 8.2402 9.4352 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 27 @ -1.8667 49.5968 54.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 28 F -0.0683 29.5579 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 29 S -1.3238 24.9668 41.5452 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 30 p 12.1846 26.9520 39.8250 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 31 “ -1.1612 21.7187 14.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 32 % -1.1968 46.5061 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 33 £ -0.2508 26.1617 40.3098 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 34 . 34.9310 5.2070 5.2070 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 35 2 -0.1481 25.4620 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 36 5 -0.0033 22.0242 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 37 m 11.7180 43.6210 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 38 V -0.0047 42.2148 40.1617 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 39 6 -0.0815 24.6301 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 40 w 13.1771 42.0012 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 41 T -0.1633 32.3248 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 42 M -0.2243 50.8363 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 43 G -1.3012 40.3777 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 44 b -1.7649 26.9520 42.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 45 9 -0.0291 24.2671 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 46 ; 11.9357 8.5769 37.1560 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 47 D -0.1248 39.5054 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 48 L -0.1778 33.1439 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 49 y 12.7957 29.1112 38.6301 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 50 ‘ -1.2212 8.5769 14.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 51 \ -1.9373 16.8851 42.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 52 R -0.4271 39.5470 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 53 < 4.2747 30.8172 29.1949 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 54 4 -0.1362 25.4620 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 55 8 0.1479 22.7514 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 56 0 -0.0178 24.6301 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 57 A -1.5133 42.0000 40.1617 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 58 E 0.1764 34.1502 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 59 B -0.0850 34.7661 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 60 v 12.7774 29.7477 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 61 k -1.9480 28.5111 40.8051 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 62 J 0.0181 20.9143 40.1617 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 63 U 0.2493 40.9807 40.1617 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 64 j -2.2164 16.0484 53.4620 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 65 ( -1.0504 15.8383 52.6957 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 66 7 -0.1644 25.4883 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 67 § -0.7985 20.6180 50.9240 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 68 $ -3.1628 23.6237 45.6650 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 69 € -0.2697 29.1949 39.1149 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 70 / -1.9061 17.5847 42.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 71 C -1.0435 34.5501 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 72 * -2.1823 20.0652 24.4140 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 73 ” -1.1238 21.5302 14.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 74 ? -1.0753 19.9342 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 75 { -1.3029 17.0320 52.6957 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 76 } -1.3008 17.0320 52.6957 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 77 , 35.1608 8.5769 14.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 78 I -0.4156 16.7540 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 79 ° -0.9599 17.5847 17.5847 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 80 K 0.2344 41.1680 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 81 H -0.1553 40.9305 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 82 q 11.9214 26.9520 39.8250 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 83 & -1.3223 41.3566 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 84 ’ -1.4899 8.5769 14.0000 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 85 [ -0.7675 12.6569 51.2203 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 86 - 22.8652 15.1949 5.2070 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 87 Y -0.2145 41.7612 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 88 Q -1.3327 37.9463 51.1285 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 89 " -1.1147 14.9789 16.3898 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 90 ! -1.3140 5.2070 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 91 x 12.9134 28.4678 25.9731 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 92 ) -1.2649 15.8383 52.6957 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 93 = 13.1151 30.1750 12.0135 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 94 + 4.4700 30.3898 30.3898 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 95 X 0.0014 42.0000 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 96 » 11.9956 24.9093 27.1680 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 97 ' -1.3044 5.2070 16.3898 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 98 ¢ 1.3493 21.9610 47.5712 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 99 Z 0.0917 33.9746 38.9668 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 100 > 4.1614 30.8172 29.1949 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 101 ® -1.3853 40.3777 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 102 © -0.9654 40.3777 41.3566 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 103 ] -0.6406 12.6569 51.2203 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 104 é -0.7660 22.1496 41.0199 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 105 z 13.2253 23.5833 25.9731 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 106 _ 49.0565 30.0269 2.3898 -Times_New_Roman.ttf 99 Z 33.9746 38.9668 107 ¥ 0.0161 31.4941 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 1 t -0.1127 16.5784 35.7450 -Times_New_Roman.ttf 100 > 30.8172 29.1949 2 h -5.7921 28.4261 40.8051 -Times_New_Roman.ttf 100 > 30.8172 29.1949 3 a 7.4614 24.3234 28.3630 -Times_New_Roman.ttf 100 > 30.8172 29.1949 4 n 7.6306 28.4261 27.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 5 P -4.3056 30.0702 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 6 o 7.4950 25.1828 28.3630 -Times_New_Roman.ttf 100 > 30.8172 29.1949 7 e 7.7272 22.1496 28.3630 -Times_New_Roman.ttf 100 > 30.8320 29.1907 8 : 7.6571 5.2134 28.3500 -Times_New_Roman.ttf 100 > 30.8172 29.1949 9 r 7.4413 19.2070 27.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 10 l -6.0540 13.2312 40.8051 -Times_New_Roman.ttf 100 > 30.8172 29.1949 11 i -6.2190 13.2312 40.8051 -Times_New_Roman.ttf 100 > 30.8320 29.1907 12 1 -4.7834 15.9913 39.1026 -Times_New_Roman.ttf 100 > 30.8320 29.1907 13 | -6.1657 2.3814 53.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 14 N -4.4559 43.0064 40.1617 -Times_New_Roman.ttf 100 > 30.8172 29.1949 15 f -6.1871 23.6237 40.8051 -Times_New_Roman.ttf 100 > 30.8172 29.1949 16 g 7.6248 26.7407 39.8250 -Times_New_Roman.ttf 100 > 30.8172 29.1949 17 d -6.5139 27.3566 42.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 18 W -4.1617 55.7208 40.1617 -Times_New_Roman.ttf 100 > 30.8172 29.1949 19 s 7.5979 17.7329 28.3630 -Times_New_Roman.ttf 100 > 30.8172 29.1949 20 c 7.2290 22.1496 28.3630 -Times_New_Roman.ttf 100 > 30.8172 29.1949 21 u 9.0552 28.6422 27.1680 -Times_New_Roman.ttf 100 > 30.8320 29.1907 22 3 -4.4286 21.3876 39.1026 -Times_New_Roman.ttf 100 > 30.8320 29.1907 23 ~ 15.2397 29.8907 7.5948 -Times_New_Roman.ttf 100 > 30.8320 29.1907 24 # -6.2451 26.1769 40.8093 -Times_New_Roman.ttf 100 > 30.8172 29.1949 25 O -5.3279 37.9463 41.3566 -Times_New_Roman.ttf 100 > 30.8320 29.1907 26 ` -4.3392 8.2536 9.4443 -Times_New_Roman.ttf 100 > 30.8320 29.1907 27 @ -6.0598 49.5948 54.8093 -Times_New_Roman.ttf 100 > 30.8172 29.1949 28 F -4.4718 29.5579 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 29 S -6.0994 24.9668 41.5452 -Times_New_Roman.ttf 100 > 30.8172 29.1949 30 p 7.3413 26.9520 39.8250 -Times_New_Roman.ttf 100 > 30.8320 29.1907 31 “ -5.3365 21.7123 14.0000 -Times_New_Roman.ttf 100 > 30.8320 29.1907 32 % -5.7072 46.5375 41.3411 -Times_New_Roman.ttf 100 > 30.8320 29.1907 33 £ -4.6015 26.1504 40.2933 -Times_New_Roman.ttf 100 > 30.8320 29.1907 34 . 30.5013 5.2134 5.2134 -Times_New_Roman.ttf 100 > 30.8320 29.1907 35 2 -4.4864 25.4757 39.1026 -Times_New_Roman.ttf 100 > 30.8320 29.1907 36 5 -4.6152 22.0453 38.9597 -Times_New_Roman.ttf 100 > 30.8172 29.1949 37 m 7.1555 43.6210 27.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 38 V -4.3575 42.2148 40.1617 -Times_New_Roman.ttf 100 > 30.8320 29.1907 39 6 -4.3503 24.6350 39.1026 -Times_New_Roman.ttf 100 > 30.8172 29.1949 40 w 8.6857 42.0012 27.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 41 T -3.9556 32.3248 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 42 M -4.0898 50.8363 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 43 G -5.6190 40.3777 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 44 b -6.2303 26.9520 42.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 45 9 -4.7242 24.2671 39.1149 -Times_New_Roman.ttf 100 > 30.8172 29.1949 46 ; 7.6277 8.5769 37.1560 -Times_New_Roman.ttf 100 > 30.8172 29.1949 47 D -4.2868 39.5054 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 48 L -4.2667 33.1439 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 49 y 8.7438 29.1112 38.6301 -Times_New_Roman.ttf 100 > 30.8172 29.1949 50 ‘ -5.4220 8.5769 14.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 51 \ -6.2231 16.8851 42.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 52 R -4.4010 39.5470 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 53 < -0.1370 30.8172 29.1949 -Times_New_Roman.ttf 100 > 30.8172 29.1949 54 4 -4.5063 25.4620 39.1149 -Times_New_Roman.ttf 100 > 30.8172 29.1949 55 8 -4.4688 22.7514 39.1149 -Times_New_Roman.ttf 100 > 30.8172 29.1949 56 0 -4.3631 24.6301 39.1149 -Times_New_Roman.ttf 100 > 30.8172 29.1949 57 A -5.7556 42.0000 40.1617 -Times_New_Roman.ttf 100 > 30.8172 29.1949 58 E -4.2704 34.1502 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 59 B -4.4736 34.7661 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 60 v 8.6420 29.7477 27.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 61 k -6.1668 28.5111 40.8051 -Times_New_Roman.ttf 100 > 30.8172 29.1949 62 J -4.3661 20.9143 40.1617 -Times_New_Roman.ttf 100 > 30.8172 29.1949 63 U -4.3426 40.9807 40.1617 -Times_New_Roman.ttf 100 > 30.8172 29.1949 64 j -5.9281 16.0484 53.4620 -Times_New_Roman.ttf 100 > 30.8172 29.1949 65 ( -5.9928 15.8383 52.6957 -Times_New_Roman.ttf 100 > 30.8172 29.1949 66 7 -4.5560 25.4883 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 67 § -4.9076 20.6180 50.9240 -Times_New_Roman.ttf 100 > 30.8172 29.1949 68 $ -7.0273 23.6237 45.6650 -Times_New_Roman.ttf 100 > 30.8172 29.1949 69 € -4.3355 29.1949 39.1149 -Times_New_Roman.ttf 100 > 30.8172 29.1949 70 / -6.1595 17.5847 42.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 71 C -5.5375 34.5501 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 72 * -6.1309 20.0652 24.4140 -Times_New_Roman.ttf 100 > 30.8172 29.1949 73 ” -5.2544 21.5302 14.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 74 ? -5.4810 19.9342 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 75 { -5.7342 17.0320 52.6957 -Times_New_Roman.ttf 100 > 30.8172 29.1949 76 } -5.5935 17.0320 52.6957 -Times_New_Roman.ttf 100 > 30.8172 29.1949 77 , 30.4344 8.5769 14.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 78 I -4.3786 16.7540 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 79 ° -5.6758 17.5847 17.5847 -Times_New_Roman.ttf 100 > 30.8172 29.1949 80 K -4.2604 41.1680 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 81 H -4.1656 40.9305 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 82 q 7.1909 26.9520 39.8250 -Times_New_Roman.ttf 100 > 30.8172 29.1949 83 & -5.3207 41.3566 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 84 ’ -5.5314 8.5769 14.0000 -Times_New_Roman.ttf 100 > 30.8172 29.1949 85 [ -5.1506 12.6569 51.2203 -Times_New_Roman.ttf 100 > 30.8172 29.1949 86 - 18.5878 15.1949 5.2070 -Times_New_Roman.ttf 100 > 30.8172 29.1949 87 Y -4.3608 41.7612 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 88 Q -5.6719 37.9463 51.1285 -Times_New_Roman.ttf 100 > 30.8172 29.1949 89 " -5.4400 14.9789 16.3898 -Times_New_Roman.ttf 100 > 30.8172 29.1949 90 ! -5.6167 5.2070 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 91 x 8.5415 28.4678 25.9731 -Times_New_Roman.ttf 100 > 30.8172 29.1949 92 ) -5.8612 15.8383 52.6957 -Times_New_Roman.ttf 100 > 30.8172 29.1949 93 = 9.0563 30.1750 12.0135 -Times_New_Roman.ttf 100 > 30.8172 29.1949 94 + -0.0297 30.3898 30.3898 -Times_New_Roman.ttf 100 > 30.8172 29.1949 95 X -4.1620 42.0000 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 96 » 7.4682 24.9093 27.1680 -Times_New_Roman.ttf 100 > 30.8172 29.1949 97 ' -5.6354 5.2070 16.3898 -Times_New_Roman.ttf 100 > 30.8172 29.1949 98 ¢ -2.6438 21.9610 47.5712 -Times_New_Roman.ttf 100 > 30.8172 29.1949 99 Z -4.6318 33.9746 38.9668 -Times_New_Roman.ttf 100 > 30.8172 29.1949 100 > -0.0547 30.8172 29.1949 -Times_New_Roman.ttf 100 > 30.8172 29.1949 101 ® -5.3543 40.3777 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 102 © -5.5499 40.3777 41.3566 -Times_New_Roman.ttf 100 > 30.8172 29.1949 103 ] -5.1288 12.6569 51.2203 -Times_New_Roman.ttf 100 > 30.8172 29.1949 104 é -5.0066 22.1496 41.0199 -Times_New_Roman.ttf 100 > 30.8172 29.1949 105 z 8.4312 23.5833 25.9731 -Times_New_Roman.ttf 100 > 30.8172 29.1949 106 _ 44.9768 30.0269 2.3898 -Times_New_Roman.ttf 100 > 30.8172 29.1949 107 ¥ -4.5327 31.4941 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 1 t 5.5836 16.5784 35.7450 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 2 h -0.8261 28.4261 40.8051 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 3 a 12.6947 24.3234 28.3630 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 4 n 12.9314 28.4261 27.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 5 P 1.1949 30.0702 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 6 o 13.1489 25.1828 28.3630 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 7 e 13.2156 22.1496 28.3630 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 8 : 12.7803 5.2134 28.3500 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 9 r 13.3136 19.2070 27.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 10 l -0.3808 13.2312 40.8051 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 11 i -0.9775 13.2312 40.8051 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 12 1 0.9723 15.9913 39.1026 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 13 | -0.6728 2.3814 53.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 14 N 1.3568 43.0064 40.1617 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 15 f -0.6348 23.6237 40.8051 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 16 g 13.0614 26.7407 39.8250 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 17 d -0.6718 27.3566 42.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 18 W 1.3354 55.7208 40.1617 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 19 s 12.7447 17.7329 28.3630 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 20 c 13.0408 22.1496 28.3630 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 21 u 14.2591 28.6422 27.1680 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 22 3 1.3236 21.3876 39.1026 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 23 ~ 20.6825 29.8907 7.5948 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 24 # -0.8039 26.1769 40.8093 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 25 O 0.0329 37.9463 41.3566 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 26 ` 0.7037 8.2536 9.4443 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 27 @ -0.3647 49.5948 54.8093 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 28 F 1.2353 29.5579 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 29 S -0.1766 24.9668 41.5452 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 30 p 12.8105 26.9520 39.8250 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 31 “ -0.2367 21.7123 14.0000 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 32 % 0.1339 46.5375 41.3411 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 33 £ 1.0863 26.1504 40.2933 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 34 . 35.9672 5.2134 5.2134 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 35 2 0.8264 25.4757 39.1026 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 36 5 1.4160 22.0453 38.9597 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 37 m 13.3524 43.6210 27.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 38 V 1.1391 42.2148 40.1617 -Times_New_Roman.ttf 101 ® 40.3587 41.3411 39 6 0.9820 24.6350 39.1026 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 40 w 14.3749 42.0012 27.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 41 T 1.1344 32.3248 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 42 M 1.0330 50.8363 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 43 G -0.0204 40.3777 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 44 b -0.3964 26.9520 42.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 45 9 0.7575 24.2671 39.1149 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 46 ; 13.2102 8.5769 37.1560 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 47 D 1.0994 39.5054 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 48 L 1.1464 33.1439 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 49 y 14.4447 29.1112 38.6301 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 50 ‘ 0.2339 8.5769 14.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 51 \ -0.5524 16.8851 42.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 52 R 1.0162 39.5470 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 53 < 5.4020 30.8172 29.1949 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 54 4 1.2177 25.4620 39.1149 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 55 8 1.4346 22.7514 39.1149 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 56 0 0.9186 24.6301 39.1149 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 57 A 0.2379 42.0000 40.1617 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 58 E 0.9830 34.1502 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 59 B 1.1768 34.7661 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 60 v 14.0337 29.7477 27.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 61 k -0.6833 28.5111 40.8051 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 62 J 0.9069 20.9143 40.1617 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 63 U 0.9386 40.9807 40.1617 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 64 j -0.5723 16.0484 53.4620 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 65 ( -0.3529 15.8383 52.6957 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 66 7 1.1014 25.4883 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 67 § 0.4672 20.6180 50.9240 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 68 $ -1.8799 23.6237 45.6650 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 69 € 1.1583 29.1949 39.1149 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 70 / -0.8196 17.5847 42.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 71 C 0.0264 34.5501 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 72 * -0.5798 20.0652 24.4140 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 73 ” 0.1893 21.5302 14.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 74 ? -0.0446 19.9342 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 75 { -0.6961 17.0320 52.6957 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 76 } -0.5787 17.0320 52.6957 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 77 , 35.8153 8.5769 14.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 78 I 1.2478 16.7540 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 79 ° 0.0675 17.5847 17.5847 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 80 K 0.8654 41.1680 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 81 H 1.1824 40.9305 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 82 q 13.0023 26.9520 39.8250 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 83 & 0.1771 41.3566 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 84 ’ 0.2554 8.5769 14.0000 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 85 [ 0.5001 12.6569 51.2203 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 86 - 23.7669 15.1949 5.2070 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 87 Y 1.2439 41.7612 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 88 Q -0.1917 37.9463 51.1285 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 89 " 0.2489 14.9789 16.3898 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 90 ! -0.2413 5.2070 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 91 x 14.1044 28.4678 25.9731 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 92 ) -0.1632 15.8383 52.6957 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 93 = 13.8680 30.1750 12.0135 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 94 + 5.1950 30.3898 30.3898 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 95 X 1.1038 42.0000 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 96 » 13.0249 24.9093 27.1680 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 97 ' 0.0047 5.2070 16.3898 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 98 ¢ 2.2969 21.9610 47.5712 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 99 Z 1.2791 33.9746 38.9668 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 100 > 5.4124 30.8172 29.1949 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 101 ® -0.0638 40.3777 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 102 © 0.0745 40.3777 41.3566 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 103 ] 0.5838 12.6569 51.2203 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 104 é 0.3963 22.1496 41.0199 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 105 z 14.0108 23.5833 25.9731 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 106 _ 50.5757 30.0269 2.3898 -Times_New_Roman.ttf 101 ® 40.3777 41.3566 107 ¥ 1.1887 31.4941 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 1 t 5.5405 16.5784 35.7450 -Times_New_Roman.ttf 102 © 40.3777 41.3566 2 h -0.7593 28.4261 40.8051 -Times_New_Roman.ttf 102 © 40.3777 41.3566 3 a 13.2599 24.3234 28.3630 -Times_New_Roman.ttf 102 © 40.3777 41.3566 4 n 13.2872 28.4261 27.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 5 P 1.2853 30.0702 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 6 o 13.2972 25.1828 28.3630 -Times_New_Roman.ttf 102 © 40.3777 41.3566 7 e 13.1576 22.1496 28.3630 -Times_New_Roman.ttf 102 © 40.3587 41.3411 8 : 13.4762 5.2134 28.3500 -Times_New_Roman.ttf 102 © 40.3777 41.3566 9 r 12.9663 19.2070 27.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 10 l -0.5955 13.2312 40.8051 -Times_New_Roman.ttf 102 © 40.3777 41.3566 11 i -0.5632 13.2312 40.8051 -Times_New_Roman.ttf 102 © 40.3587 41.3411 12 1 1.0957 15.9913 39.1026 -Times_New_Roman.ttf 102 © 40.3587 41.3411 13 | -0.6491 2.3814 53.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 14 N 1.3575 43.0064 40.1617 -Times_New_Roman.ttf 102 © 40.3777 41.3566 15 f -0.6296 23.6237 40.8051 -Times_New_Roman.ttf 102 © 40.3777 41.3566 16 g 13.0220 26.7407 39.8250 -Times_New_Roman.ttf 102 © 40.3777 41.3566 17 d -0.7049 27.3566 42.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 18 W 0.8351 55.7208 40.1617 -Times_New_Roman.ttf 102 © 40.3777 41.3566 19 s 12.8303 17.7329 28.3630 -Times_New_Roman.ttf 102 © 40.3777 41.3566 20 c 12.7096 22.1496 28.3630 -Times_New_Roman.ttf 102 © 40.3777 41.3566 21 u 13.9468 28.6422 27.1680 -Times_New_Roman.ttf 102 © 40.3587 41.3411 22 3 0.6804 21.3876 39.1026 -Times_New_Roman.ttf 102 © 40.3587 41.3411 23 ~ 20.4466 29.8907 7.5948 -Times_New_Roman.ttf 102 © 40.3587 41.3411 24 # -0.6320 26.1769 40.8093 -Times_New_Roman.ttf 102 © 40.3777 41.3566 25 O 0.2485 37.9463 41.3566 -Times_New_Roman.ttf 102 © 40.3587 41.3411 26 ` 0.7067 8.2536 9.4443 -Times_New_Roman.ttf 102 © 40.3587 41.3411 27 @ -0.6561 49.5948 54.8093 -Times_New_Roman.ttf 102 © 40.3777 41.3566 28 F 0.9239 29.5579 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 29 S -0.2655 24.9668 41.5452 -Times_New_Roman.ttf 102 © 40.3777 41.3566 30 p 13.2443 26.9520 39.8250 -Times_New_Roman.ttf 102 © 40.3587 41.3411 31 “ 0.1287 21.7123 14.0000 -Times_New_Roman.ttf 102 © 40.3587 41.3411 32 % -0.4579 46.5375 41.3411 -Times_New_Roman.ttf 102 © 40.3587 41.3411 33 £ 0.6295 26.1504 40.2933 -Times_New_Roman.ttf 102 © 40.3587 41.3411 34 . 36.0449 5.2134 5.2134 -Times_New_Roman.ttf 102 © 40.3587 41.3411 35 2 1.0034 25.4757 39.1026 -Times_New_Roman.ttf 102 © 40.3587 41.3411 36 5 1.0939 22.0453 38.9597 -Times_New_Roman.ttf 102 © 40.3777 41.3566 37 m 13.1416 43.6210 27.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 38 V 1.1164 42.2148 40.1617 -Times_New_Roman.ttf 102 © 40.3587 41.3411 39 6 1.0182 24.6350 39.1026 -Times_New_Roman.ttf 102 © 40.3777 41.3566 40 w 13.9118 42.0012 27.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 41 T 1.2064 32.3248 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 42 M 1.3053 50.8363 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 43 G -0.0850 40.3777 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 44 b -0.8245 26.9520 42.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 45 9 1.0348 24.2671 39.1149 -Times_New_Roman.ttf 102 © 40.3777 41.3566 46 ; 13.0249 8.5769 37.1560 -Times_New_Roman.ttf 102 © 40.3777 41.3566 47 D 1.2453 39.5054 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 48 L 1.2395 33.1439 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 49 y 14.5497 29.1112 38.6301 -Times_New_Roman.ttf 102 © 40.3777 41.3566 50 ‘ 0.0019 8.5769 14.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 51 \ -0.5999 16.8851 42.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 52 R 1.1334 39.5470 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 53 < 5.1872 30.8172 29.1949 -Times_New_Roman.ttf 102 © 40.3777 41.3566 54 4 1.0838 25.4620 39.1149 -Times_New_Roman.ttf 102 © 40.3777 41.3566 55 8 1.1148 22.7514 39.1149 -Times_New_Roman.ttf 102 © 40.3777 41.3566 56 0 0.9844 24.6301 39.1149 -Times_New_Roman.ttf 102 © 40.3777 41.3566 57 A 0.0255 42.0000 40.1617 -Times_New_Roman.ttf 102 © 40.3777 41.3566 58 E 0.9253 34.1502 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 59 B 1.2632 34.7661 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 60 v 14.1163 29.7477 27.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 61 k -0.5625 28.5111 40.8051 -Times_New_Roman.ttf 102 © 40.3777 41.3566 62 J 1.1107 20.9143 40.1617 -Times_New_Roman.ttf 102 © 40.3777 41.3566 63 U 1.2256 40.9807 40.1617 -Times_New_Roman.ttf 102 © 40.3777 41.3566 64 j -0.5949 16.0484 53.4620 -Times_New_Roman.ttf 102 © 40.3777 41.3566 65 ( -0.3383 15.8383 52.6957 -Times_New_Roman.ttf 102 © 40.3777 41.3566 66 7 1.2377 25.4883 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 67 § 0.9821 20.6180 50.9240 -Times_New_Roman.ttf 102 © 40.3777 41.3566 68 $ -1.8295 23.6237 45.6650 -Times_New_Roman.ttf 102 © 40.3777 41.3566 69 € 0.9295 29.1949 39.1149 -Times_New_Roman.ttf 102 © 40.3777 41.3566 70 / -0.5449 17.5847 42.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 71 C 0.0667 34.5501 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 72 * -0.6103 20.0652 24.4140 -Times_New_Roman.ttf 102 © 40.3777 41.3566 73 ” -0.0706 21.5302 14.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 74 ? 0.0731 19.9342 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 75 { -0.3693 17.0320 52.6957 -Times_New_Roman.ttf 102 © 40.3777 41.3566 76 } -0.3755 17.0320 52.6957 -Times_New_Roman.ttf 102 © 40.3777 41.3566 77 , 36.4187 8.5769 14.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 78 I 1.3352 16.7540 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 79 ° -0.2272 17.5847 17.5847 -Times_New_Roman.ttf 102 © 40.3777 41.3566 80 K 1.2796 41.1680 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 81 H 1.2819 40.9305 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 82 q 12.8529 26.9520 39.8250 -Times_New_Roman.ttf 102 © 40.3777 41.3566 83 & -0.1901 41.3566 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 84 ’ 0.0306 8.5769 14.0000 -Times_New_Roman.ttf 102 © 40.3777 41.3566 85 [ 0.4593 12.6569 51.2203 -Times_New_Roman.ttf 102 © 40.3777 41.3566 86 - 23.7969 15.1949 5.2070 -Times_New_Roman.ttf 102 © 40.3777 41.3566 87 Y 1.4706 41.7612 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 88 Q -0.1901 37.9463 51.1285 -Times_New_Roman.ttf 102 © 40.3777 41.3566 89 " 0.0683 14.9789 16.3898 -Times_New_Roman.ttf 102 © 40.3777 41.3566 90 ! 0.1201 5.2070 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 91 x 13.9093 28.4678 25.9731 -Times_New_Roman.ttf 102 © 40.3777 41.3566 92 ) -0.1999 15.8383 52.6957 -Times_New_Roman.ttf 102 © 40.3777 41.3566 93 = 14.4834 30.1750 12.0135 -Times_New_Roman.ttf 102 © 40.3777 41.3566 94 + 5.5135 30.3898 30.3898 -Times_New_Roman.ttf 102 © 40.3777 41.3566 95 X 0.8757 42.0000 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 96 » 12.8525 24.9093 27.1680 -Times_New_Roman.ttf 102 © 40.3777 41.3566 97 ' 0.2272 5.2070 16.3898 -Times_New_Roman.ttf 102 © 40.3777 41.3566 98 ¢ 2.3842 21.9610 47.5712 -Times_New_Roman.ttf 102 © 40.3777 41.3566 99 Z 1.1985 33.9746 38.9668 -Times_New_Roman.ttf 102 © 40.3777 41.3566 100 > 5.3227 30.8172 29.1949 -Times_New_Roman.ttf 102 © 40.3777 41.3566 101 ® -0.0859 40.3777 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 102 © -0.0404 40.3777 41.3566 -Times_New_Roman.ttf 102 © 40.3777 41.3566 103 ] 0.5213 12.6569 51.2203 -Times_New_Roman.ttf 102 © 40.3777 41.3566 104 é 0.3810 22.1496 41.0199 -Times_New_Roman.ttf 102 © 40.3777 41.3566 105 z 14.1200 23.5833 25.9731 -Times_New_Roman.ttf 102 © 40.3777 41.3566 106 _ 50.3047 30.0269 2.3898 -Times_New_Roman.ttf 102 © 40.3777 41.3566 107 ¥ 1.1330 31.4941 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 1 t 5.1932 16.5784 35.7450 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 2 h -1.2392 28.4261 40.8051 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 3 a 12.5024 24.3234 28.3630 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 4 n 12.2816 28.4261 27.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 5 P 0.6905 30.0702 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 6 o 12.8230 25.1828 28.3630 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 7 e 12.3666 22.1496 28.3630 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 8 : 12.5187 5.2134 28.3500 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 9 r 12.3994 19.2070 27.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 10 l -1.1949 13.2312 40.8051 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 11 i -1.1522 13.2312 40.8051 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 12 1 0.6083 15.9913 39.1026 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 13 | -1.3775 2.3814 53.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 14 N 0.5397 43.0064 40.1617 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 15 f -1.4756 23.6237 40.8051 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 16 g 12.4853 26.7407 39.8250 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 17 d -1.1550 27.3566 42.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 18 W 0.8067 55.7208 40.1617 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 19 s 12.5266 17.7329 28.3630 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 20 c 12.4450 22.1496 28.3630 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 21 u 13.6352 28.6422 27.1680 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 22 3 0.8924 21.3876 39.1026 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 23 ~ 20.2067 29.8907 7.5948 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 24 # -1.1057 26.1769 40.8093 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 25 O -0.3803 37.9463 41.3566 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 26 ` 0.3187 8.2536 9.4443 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 27 @ -1.3093 49.5948 54.8093 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 28 F 0.6035 29.5579 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 29 S -0.6671 24.9668 41.5452 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 30 p 12.4018 26.9520 39.8250 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 31 “ -0.6119 21.7123 14.0000 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 32 % -0.5977 46.5375 41.3411 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 33 £ 0.5160 26.1504 40.2933 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 34 . 35.7660 5.2134 5.2134 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 35 2 0.4577 25.4757 39.1026 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 36 5 0.4288 22.0453 38.9597 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 37 m 12.3590 43.6210 27.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 38 V 0.7276 42.2148 40.1617 -Times_New_Roman.ttf 103 ] 12.6664 51.2372 39 6 0.5244 24.6350 39.1026 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 40 w 13.5774 42.0012 27.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 41 T 0.6423 32.3248 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 42 M 0.5592 50.8363 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 43 G -0.5544 40.3777 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 44 b -1.3784 26.9520 42.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 45 9 0.4093 24.2671 39.1149 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 46 ; 12.4536 8.5769 37.1560 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 47 D 0.8107 39.5054 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 48 L 0.7823 33.1439 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 49 y 13.6370 29.1112 38.6301 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 50 ‘ -0.3313 8.5769 14.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 51 \ -1.0912 16.8851 42.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 52 R 0.5592 39.5470 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 53 < 5.1329 30.8172 29.1949 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 54 4 0.4122 25.4620 39.1149 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 55 8 0.3280 22.7514 39.1149 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 56 0 0.5510 24.6301 39.1149 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 57 A -0.6328 42.0000 40.1617 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 58 E 0.8182 34.1502 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 59 B 0.5996 34.7661 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 60 v 13.5870 29.7477 27.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 61 k -1.0560 28.5111 40.8051 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 62 J 0.6376 20.9143 40.1617 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 63 U 0.7323 40.9807 40.1617 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 64 j -1.3770 16.0484 53.4620 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 65 ( -0.6441 15.8383 52.6957 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 66 7 0.7675 25.4883 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 67 § 0.0684 20.6180 50.9240 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 68 $ -1.9545 23.6237 45.6650 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 69 € 0.5990 29.1949 39.1149 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 70 / -1.3237 17.5847 42.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 71 C -0.6480 34.5501 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 72 * -1.0719 20.0652 24.4140 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 73 ” -0.6831 21.5302 14.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 74 ? -0.3454 19.9342 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 75 { -0.7330 17.0320 52.6957 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 76 } -0.6830 17.0320 52.6957 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 77 , 35.4707 8.5769 14.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 78 I 0.7392 16.7540 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 79 ° -0.4433 17.5847 17.5847 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 80 K 0.5843 41.1680 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 81 H 0.5575 40.9305 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 82 q 12.5838 26.9520 39.8250 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 83 & -0.8447 41.3566 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 84 ’ -0.6404 8.5769 14.0000 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 85 [ 0.0990 12.6569 51.2203 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 86 - 23.5888 15.1949 5.2070 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 87 Y 0.7424 41.7612 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 88 Q -0.3410 37.9463 51.1285 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 89 " -0.5828 14.9789 16.3898 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 90 ! -0.9455 5.2070 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 91 x 13.6370 28.4678 25.9731 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 92 ) -0.7614 15.8383 52.6957 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 93 = 13.9333 30.1750 12.0135 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 94 + 4.9994 30.3898 30.3898 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 95 X 0.6434 42.0000 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 96 » 12.6113 24.9093 27.1680 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 97 ' -0.4328 5.2070 16.3898 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 98 ¢ 1.9203 21.9610 47.5712 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 99 Z 0.6905 33.9746 38.9668 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 100 > 5.1893 30.8172 29.1949 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 101 ® -0.7235 40.3777 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 102 © -0.7321 40.3777 41.3566 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 103 ] -0.1860 12.6569 51.2203 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 104 é -0.2667 22.1496 41.0199 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 105 z 13.6164 23.5833 25.9731 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 106 _ 49.8845 30.0269 2.3898 -Times_New_Roman.ttf 103 ] 12.6569 51.2203 107 ¥ 0.6406 31.4941 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 1 t 5.0572 16.5784 35.7450 -Times_New_Roman.ttf 104 é 22.1496 41.0199 2 h -1.2276 28.4261 40.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 3 a 12.6166 24.3234 28.3630 -Times_New_Roman.ttf 104 é 22.1496 41.0199 4 n 12.9605 28.4261 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 5 P 0.6602 30.0702 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 6 o 12.5300 25.1828 28.3630 -Times_New_Roman.ttf 104 é 22.1496 41.0199 7 e 12.5532 22.1496 28.3630 -Times_New_Roman.ttf 104 é 22.1496 41.0199 8 : 12.5876 5.2070 28.3630 -Times_New_Roman.ttf 104 é 22.1496 41.0199 9 r 12.7358 19.2070 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 10 l -0.9801 13.2312 40.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 11 i -1.1895 13.2312 40.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 12 1 0.5871 15.9852 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 13 | -1.0171 2.3898 53.1828 -Times_New_Roman.ttf 104 é 22.1496 41.0199 14 N 0.6276 43.0064 40.1617 -Times_New_Roman.ttf 104 é 22.1496 41.0199 15 f -0.9859 23.6237 40.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 16 g 12.6541 26.7407 39.8250 -Times_New_Roman.ttf 104 é 22.1496 41.0199 17 d -0.8499 27.3566 42.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 18 W 0.6656 55.7208 40.1617 -Times_New_Roman.ttf 104 é 22.1496 41.0199 19 s 12.6987 17.7329 28.3630 -Times_New_Roman.ttf 104 é 22.1496 41.0199 20 c 12.8144 22.1496 28.3630 -Times_New_Roman.ttf 104 é 22.1496 41.0199 21 u 13.9667 28.6422 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 22 3 0.6230 21.3820 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 23 ~ 20.1943 29.9208 7.5968 -Times_New_Roman.ttf 104 é 22.1496 41.0199 24 # -0.8264 26.1892 40.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 25 O -0.4068 37.9463 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 26 ` 0.8459 8.2402 9.4352 -Times_New_Roman.ttf 104 é 22.1496 41.0199 27 @ -1.0632 49.5968 54.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 28 F 0.7261 29.5579 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 29 S -0.4781 24.9668 41.5452 -Times_New_Roman.ttf 104 é 22.1496 41.0199 30 p 12.6968 26.9520 39.8250 -Times_New_Roman.ttf 104 é 22.1496 41.0199 31 “ -0.4540 21.7187 14.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 32 % -0.2525 46.5061 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 33 £ 0.4689 26.1617 40.3098 -Times_New_Roman.ttf 104 é 22.1496 41.0199 34 . 35.7594 5.2070 5.2070 -Times_New_Roman.ttf 104 é 22.1496 41.0199 35 2 0.6673 25.4620 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 36 5 0.7261 22.0242 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 37 m 12.5061 43.6210 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 38 V 0.4944 42.2148 40.1617 -Times_New_Roman.ttf 104 é 22.1496 41.0199 39 6 1.0282 24.6301 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 40 w 14.0379 42.0012 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 41 T 1.1565 32.3248 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 42 M 0.8183 50.8363 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 43 G -0.1532 40.3777 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 44 b -0.9316 26.9520 42.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 45 9 0.4665 24.2671 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 46 ; 12.6569 8.5769 37.1560 -Times_New_Roman.ttf 104 é 22.1496 41.0199 47 D 1.0091 39.5054 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 48 L 0.6790 33.1439 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 49 y 13.8519 29.1112 38.6301 -Times_New_Roman.ttf 104 é 22.1496 41.0199 50 ‘ -0.2468 8.5769 14.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 51 \ -1.0233 16.8851 42.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 52 R 0.7511 39.5470 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 53 < 5.1033 30.8172 29.1949 -Times_New_Roman.ttf 104 é 22.1496 41.0199 54 4 0.5160 25.4620 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 55 8 0.4953 22.7514 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 56 0 0.7072 24.6301 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 57 A -0.5087 42.0000 40.1617 -Times_New_Roman.ttf 104 é 22.1496 41.0199 58 E 0.4286 34.1502 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 59 B 0.6358 34.7661 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 60 v 13.8086 29.7477 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 61 k -0.8764 28.5111 40.8051 -Times_New_Roman.ttf 104 é 22.1496 41.0199 62 J 1.0297 20.9143 40.1617 -Times_New_Roman.ttf 104 é 22.1496 41.0199 63 U 0.7780 40.9807 40.1617 -Times_New_Roman.ttf 104 é 22.1496 41.0199 64 j -0.8970 16.0484 53.4620 -Times_New_Roman.ttf 104 é 22.1496 41.0199 65 ( -0.6807 15.8383 52.6957 -Times_New_Roman.ttf 104 é 22.1496 41.0199 66 7 0.8179 25.4883 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 67 § 0.2093 20.6180 50.9240 -Times_New_Roman.ttf 104 é 22.1496 41.0199 68 $ -2.0248 23.6237 45.6650 -Times_New_Roman.ttf 104 é 22.1496 41.0199 69 € 0.6663 29.1949 39.1149 -Times_New_Roman.ttf 104 é 22.1496 41.0199 70 / -0.8811 17.5847 42.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 71 C -0.5947 34.5501 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 72 * -1.0305 20.0652 24.4140 -Times_New_Roman.ttf 104 é 22.1496 41.0199 73 ” 0.1922 21.5302 14.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 74 ? -0.3771 19.9342 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 75 { -0.3121 17.0320 52.6957 -Times_New_Roman.ttf 104 é 22.1496 41.0199 76 } -0.4013 17.0320 52.6957 -Times_New_Roman.ttf 104 é 22.1496 41.0199 77 , 35.7538 8.5769 14.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 78 I 0.6050 16.7540 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 79 ° -0.3831 17.5847 17.5847 -Times_New_Roman.ttf 104 é 22.1496 41.0199 80 K 0.9098 41.1680 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 81 H 0.6539 40.9305 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 82 q 12.6853 26.9520 39.8250 -Times_New_Roman.ttf 104 é 22.1496 41.0199 83 & -0.5058 41.3566 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 84 ’ -0.3690 8.5769 14.0000 -Times_New_Roman.ttf 104 é 22.1496 41.0199 85 [ 0.5794 12.6569 51.2203 -Times_New_Roman.ttf 104 é 22.1496 41.0199 86 - 23.8078 15.1949 5.2070 -Times_New_Roman.ttf 104 é 22.1496 41.0199 87 Y 0.7933 41.7612 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 88 Q -0.4226 37.9463 51.1285 -Times_New_Roman.ttf 104 é 22.1496 41.0199 89 " -0.4198 14.9789 16.3898 -Times_New_Roman.ttf 104 é 22.1496 41.0199 90 ! -0.3810 5.2070 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 91 x 13.6400 28.4678 25.9731 -Times_New_Roman.ttf 104 é 22.1496 41.0199 92 ) -0.6096 15.8383 52.6957 -Times_New_Roman.ttf 104 é 22.1496 41.0199 93 = 14.1198 30.1750 12.0135 -Times_New_Roman.ttf 104 é 22.1496 41.0199 94 + 4.8842 30.3898 30.3898 -Times_New_Roman.ttf 104 é 22.1496 41.0199 95 X 0.6511 42.0000 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 96 » 12.8693 24.9093 27.1680 -Times_New_Roman.ttf 104 é 22.1496 41.0199 97 ' -0.1842 5.2070 16.3898 -Times_New_Roman.ttf 104 é 22.1496 41.0199 98 ¢ 2.1945 21.9610 47.5712 -Times_New_Roman.ttf 104 é 22.1496 41.0199 99 Z 0.7636 33.9746 38.9668 -Times_New_Roman.ttf 104 é 22.1496 41.0199 100 > 5.1671 30.8172 29.1949 -Times_New_Roman.ttf 104 é 22.1496 41.0199 101 ® -0.2525 40.3777 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 102 © -0.4597 40.3777 41.3566 -Times_New_Roman.ttf 104 é 22.1496 41.0199 103 ] 0.2112 12.6569 51.2203 -Times_New_Roman.ttf 104 é 22.1496 41.0199 104 é 0.0878 22.1496 41.0199 -Times_New_Roman.ttf 104 é 22.1496 41.0199 105 z 13.9657 23.5833 25.9731 -Times_New_Roman.ttf 104 é 22.1496 41.0199 106 _ 49.8849 30.0269 2.3898 -Times_New_Roman.ttf 104 é 22.1496 41.0199 107 ¥ 0.9821 31.4941 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 1 t -8.5319 16.5784 35.7450 -Times_New_Roman.ttf 105 z 23.5833 25.9731 2 h -14.9633 28.4261 40.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 3 a -0.9816 24.3234 28.3630 -Times_New_Roman.ttf 105 z 23.5833 25.9731 4 n -1.2113 28.4261 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 5 P -13.2834 30.0702 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 6 o -1.3064 25.1828 28.3630 -Times_New_Roman.ttf 105 z 23.5833 25.9731 7 e -1.1118 22.1496 28.3630 -Times_New_Roman.ttf 105 z 23.5833 25.9731 8 : -1.2848 5.2070 28.3630 -Times_New_Roman.ttf 105 z 23.5833 25.9731 9 r -1.1715 19.2070 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 10 l -14.7603 13.2312 40.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 11 i -14.5838 13.2312 40.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 12 1 -13.2807 15.9852 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 13 | -14.9953 2.3898 53.1828 -Times_New_Roman.ttf 105 z 23.5833 25.9731 14 N -13.2479 43.0064 40.1617 -Times_New_Roman.ttf 105 z 23.5833 25.9731 15 f -14.7564 23.6237 40.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 16 g -1.0201 26.7407 39.8250 -Times_New_Roman.ttf 105 z 23.5833 25.9731 17 d -15.0511 27.3566 42.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 18 W -13.0611 55.7208 40.1617 -Times_New_Roman.ttf 105 z 23.5833 25.9731 19 s -1.3218 17.7329 28.3630 -Times_New_Roman.ttf 105 z 23.5833 25.9731 20 c -0.9898 22.1496 28.3630 -Times_New_Roman.ttf 105 z 23.5833 25.9731 21 u 0.0375 28.6422 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 22 3 -13.1611 21.3820 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 23 ~ 6.5501 29.9208 7.5968 -Times_New_Roman.ttf 105 z 23.5833 25.9731 24 # -14.8272 26.1892 40.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 25 O -14.4152 37.9463 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 26 ` -13.3072 8.2402 9.4352 -Times_New_Roman.ttf 105 z 23.5833 25.9731 27 @ -14.5682 49.5968 54.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 28 F -12.8576 29.5579 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 29 S -14.3088 24.9668 41.5452 -Times_New_Roman.ttf 105 z 23.5833 25.9731 30 p -1.3078 26.9520 39.8250 -Times_New_Roman.ttf 105 z 23.5833 25.9731 31 “ -14.4436 21.7187 14.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 32 % -14.3130 46.5061 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 33 £ -13.0125 26.1617 40.3098 -Times_New_Roman.ttf 105 z 23.5833 25.9731 34 . 22.0971 5.2070 5.2070 -Times_New_Roman.ttf 105 z 23.5833 25.9731 35 2 -12.8487 25.4620 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 36 5 -13.0210 22.0242 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 37 m -1.1402 43.6210 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 38 V -12.9850 42.2148 40.1617 -Times_New_Roman.ttf 105 z 23.5833 25.9731 39 6 -13.0606 24.6301 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 40 w 0.1375 42.0012 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 41 T -12.9936 32.3248 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 42 M -13.0150 50.8363 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 43 G -14.0554 40.3777 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 44 b -15.0126 26.9520 42.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 45 9 -13.1022 24.2671 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 46 ; -1.0743 8.5769 37.1560 -Times_New_Roman.ttf 105 z 23.5833 25.9731 47 D -12.9749 39.5054 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 48 L -13.0854 33.1439 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 49 y 0.1556 29.1112 38.6301 -Times_New_Roman.ttf 105 z 23.5833 25.9731 50 ‘ -14.1914 8.5769 14.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 51 \ -14.6686 16.8851 42.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 52 R -12.8620 39.5470 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 53 < -8.4494 30.8172 29.1949 -Times_New_Roman.ttf 105 z 23.5833 25.9731 54 4 -13.0587 25.4620 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 55 8 -13.0212 22.7514 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 56 0 -13.1014 24.6301 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 57 A -13.6797 42.0000 40.1617 -Times_New_Roman.ttf 105 z 23.5833 25.9731 58 E -13.1804 34.1502 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 59 B -12.6919 34.7661 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 60 v -0.3580 29.7477 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 61 k -14.7754 28.5111 40.8051 -Times_New_Roman.ttf 105 z 23.5833 25.9731 62 J -12.9476 20.9143 40.1617 -Times_New_Roman.ttf 105 z 23.5833 25.9731 63 U -12.8808 40.9807 40.1617 -Times_New_Roman.ttf 105 z 23.5833 25.9731 64 j -14.9150 16.0484 53.4620 -Times_New_Roman.ttf 105 z 23.5833 25.9731 65 ( -14.5875 15.8383 52.6957 -Times_New_Roman.ttf 105 z 23.5833 25.9731 66 7 -13.0288 25.4883 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 67 § -13.5954 20.6180 50.9240 -Times_New_Roman.ttf 105 z 23.5833 25.9731 68 $ -15.8215 23.6237 45.6650 -Times_New_Roman.ttf 105 z 23.5833 25.9731 69 € -12.9698 29.1949 39.1149 -Times_New_Roman.ttf 105 z 23.5833 25.9731 70 / -14.8478 17.5847 42.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 71 C -14.2529 34.5501 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 72 * -14.7079 20.0652 24.4140 -Times_New_Roman.ttf 105 z 23.5833 25.9731 73 ” -14.1021 21.5302 14.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 74 ? -14.2357 19.9342 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 75 { -14.7770 17.0320 52.6957 -Times_New_Roman.ttf 105 z 23.5833 25.9731 76 } -14.6424 17.0320 52.6957 -Times_New_Roman.ttf 105 z 23.5833 25.9731 77 , 21.9668 8.5769 14.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 78 I -13.1051 16.7540 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 79 ° -14.1602 17.5847 17.5847 -Times_New_Roman.ttf 105 z 23.5833 25.9731 80 K -12.8116 41.1680 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 81 H -12.9145 40.9305 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 82 q -1.2939 26.9520 39.8250 -Times_New_Roman.ttf 105 z 23.5833 25.9731 83 & -14.4747 41.3566 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 84 ’ -14.2332 8.5769 14.0000 -Times_New_Roman.ttf 105 z 23.5833 25.9731 85 [ -13.6922 12.6569 51.2203 -Times_New_Roman.ttf 105 z 23.5833 25.9731 86 - 9.6159 15.1949 5.2070 -Times_New_Roman.ttf 105 z 23.5833 25.9731 87 Y -13.0614 41.7612 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 88 Q -14.1953 37.9463 51.1285 -Times_New_Roman.ttf 105 z 23.5833 25.9731 89 " -14.1554 14.9789 16.3898 -Times_New_Roman.ttf 105 z 23.5833 25.9731 90 ! -14.1886 5.2070 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 91 x 0.1985 28.4678 25.9731 -Times_New_Roman.ttf 105 z 23.5833 25.9731 92 ) -14.7890 15.8383 52.6957 -Times_New_Roman.ttf 105 z 23.5833 25.9731 93 = 0.0772 30.1750 12.0135 -Times_New_Roman.ttf 105 z 23.5833 25.9731 94 + -8.4210 30.3898 30.3898 -Times_New_Roman.ttf 105 z 23.5833 25.9731 95 X -12.9728 42.0000 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 96 » -1.1100 24.9093 27.1680 -Times_New_Roman.ttf 105 z 23.5833 25.9731 97 ' -14.0656 5.2070 16.3898 -Times_New_Roman.ttf 105 z 23.5833 25.9731 98 ¢ -11.6896 21.9610 47.5712 -Times_New_Roman.ttf 105 z 23.5833 25.9731 99 Z -12.7558 33.9746 38.9668 -Times_New_Roman.ttf 105 z 23.5833 25.9731 100 > -8.8316 30.8172 29.1949 -Times_New_Roman.ttf 105 z 23.5833 25.9731 101 ® -14.1482 40.3777 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 102 © -14.5632 40.3777 41.3566 -Times_New_Roman.ttf 105 z 23.5833 25.9731 103 ] -13.6211 12.6569 51.2203 -Times_New_Roman.ttf 105 z 23.5833 25.9731 104 é -13.7481 22.1496 41.0199 -Times_New_Roman.ttf 105 z 23.5833 25.9731 105 z 0.1397 23.5833 25.9731 -Times_New_Roman.ttf 105 z 23.5833 25.9731 106 _ 36.2993 30.0269 2.3898 -Times_New_Roman.ttf 105 z 23.5833 25.9731 107 ¥ -13.1330 31.4941 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 1 t -44.9834 16.5784 35.7450 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 2 h -50.9779 28.4261 40.8051 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 3 a -37.2102 24.3234 28.3630 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 4 n -37.5676 28.4261 27.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 5 P -49.4468 30.0702 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 6 o -37.2977 25.1828 28.3630 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 7 e -37.7648 22.1496 28.3630 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 8 : -37.4104 5.2134 28.3500 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 9 r -37.5110 19.2070 27.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 10 l -51.3014 13.2312 40.8051 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 11 i -50.8991 13.2312 40.8051 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 12 1 -49.1740 15.9913 39.1026 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 13 | -51.0059 2.3814 53.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 14 N -49.1508 43.0064 40.1617 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 15 f -51.1981 23.6237 40.8051 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 16 g -37.2670 26.7407 39.8250 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 17 d -51.2024 27.3566 42.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 18 W -49.3444 55.7208 40.1617 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 19 s -37.3582 17.7329 28.3630 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 20 c -37.3049 22.1496 28.3630 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 21 u -36.0930 28.6422 27.1680 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 22 3 -49.5851 21.3876 39.1026 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 23 ~ -29.8896 29.8907 7.5948 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 24 # -51.2634 26.1769 40.8093 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 25 O -50.6148 37.9463 41.3566 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 26 ` -49.8194 8.2536 9.4443 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 27 @ -51.1393 49.5948 54.8093 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 28 F -49.2281 29.5579 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 29 S -50.6260 24.9668 41.5452 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 30 p -37.3218 26.9520 39.8250 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 31 “ -50.4201 21.7123 14.0000 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 32 % -50.6968 46.5375 41.3411 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 33 £ -49.2454 26.1504 40.2933 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 34 . -14.2276 5.2134 5.2134 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 35 2 -49.5527 25.4757 39.1026 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 36 5 -48.9872 22.0453 38.9597 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 37 m -37.4083 43.6210 27.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 38 V -49.0533 42.2148 40.1617 -Times_New_Roman.ttf 106 _ 30.0314 2.3814 39 6 -49.2273 24.6350 39.1026 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 40 w -36.4276 42.0012 27.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 41 T -49.2839 32.3248 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 42 M -49.1109 50.8363 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 43 G -50.3874 40.3777 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 44 b -51.1006 26.9520 42.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 45 9 -49.1394 24.2671 39.1149 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 46 ; -37.4028 8.5769 37.1560 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 47 D -49.0830 39.5054 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 48 L -49.3972 33.1439 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 49 y -36.2089 29.1112 38.6301 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 50 ‘ -50.0189 8.5769 14.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 51 \ -50.9078 16.8851 42.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 52 R -49.4885 39.5470 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 53 < -44.7538 30.8172 29.1949 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 54 4 -49.3853 25.4620 39.1149 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 55 8 -49.6295 22.7514 39.1149 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 56 0 -49.2580 24.6301 39.1149 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 57 A -50.3845 42.0000 40.1617 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 58 E -49.2818 34.1502 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 59 B -49.4059 34.7661 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 60 v -36.2848 29.7477 27.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 61 k -51.3004 28.5111 40.8051 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 62 J -49.4814 20.9143 40.1617 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 63 U -48.9298 40.9807 40.1617 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 64 j -50.9909 16.0484 53.4620 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 65 ( -50.8765 15.8383 52.6957 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 66 7 -49.3535 25.4883 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 67 § -49.9721 20.6180 50.9240 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 68 $ -52.2265 23.6237 45.6650 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 69 € -49.4620 29.1949 39.1149 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 70 / -51.1466 17.5847 42.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 71 C -50.4408 34.5501 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 72 * -50.9247 20.0652 24.4140 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 73 ” -50.2352 21.5302 14.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 74 ? -50.5825 19.9342 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 75 { -50.8981 17.0320 52.6957 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 76 } -50.6381 17.0320 52.6957 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 77 , -14.2508 8.5769 14.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 78 I -48.9345 16.7540 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 79 ° -50.4745 17.5847 17.5847 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 80 K -49.2742 41.1680 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 81 H -48.9298 40.9305 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 82 q -37.3963 26.9520 39.8250 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 83 & -50.4745 41.3566 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 84 ’ -50.6944 8.5769 14.0000 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 85 [ -49.7942 12.6569 51.2203 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 86 - -26.5094 15.1949 5.2070 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 87 Y -49.2350 41.7612 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 88 Q -50.1933 37.9463 51.1285 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 89 " -50.2175 14.9789 16.3898 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 90 ! -50.6127 5.2070 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 91 x -36.2551 28.4678 25.9731 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 92 ) -50.7981 15.8383 52.6957 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 93 = -35.8285 30.1750 12.0135 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 94 + -44.9914 30.3898 30.3898 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 95 X -49.5879 42.0000 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 96 » -37.2994 24.9093 27.1680 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 97 ' -50.7756 5.2070 16.3898 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 98 ¢ -47.9778 21.9610 47.5712 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 99 Z -49.3789 33.9746 38.9668 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 100 > -44.7621 30.8172 29.1949 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 101 ® -50.2420 40.3777 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 102 © -50.4749 40.3777 41.3566 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 103 ] -49.6428 12.6569 51.2203 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 104 é -49.9158 22.1496 41.0199 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 105 z -36.1053 23.5833 25.9731 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 106 _ 0.0998 30.0269 2.3898 -Times_New_Roman.ttf 106 _ 30.0269 2.3898 107 ¥ -49.0042 31.4941 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 1 t 4.4326 16.5784 35.7450 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 2 h -2.0410 28.4261 40.8051 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 3 a 11.8848 24.3234 28.3630 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 4 n 11.8045 28.4261 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 5 P -0.1980 30.0702 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 6 o 11.4605 25.1828 28.3630 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 7 e 11.7497 22.1496 28.3630 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 8 : 11.9677 5.2134 28.3500 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 9 r 11.6200 19.2070 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 10 l -1.7912 13.2312 40.8051 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 11 i -1.9660 13.2312 40.8051 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 12 1 -0.0929 15.9913 39.1026 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 13 | -1.7546 2.3814 53.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 14 N -0.0842 43.0064 40.1617 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 15 f -1.9384 23.6237 40.8051 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 16 g 11.8123 26.7407 39.8250 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 17 d -1.8383 27.3566 42.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 18 W -0.0823 55.7208 40.1617 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 19 s 12.0697 17.7329 28.3630 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 20 c 11.6747 22.1496 28.3630 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 21 u 13.0915 28.6422 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 22 3 -0.4499 21.3876 39.1026 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 23 ~ 19.5682 29.8907 7.5948 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 24 # -2.0279 26.1769 40.8093 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 25 O -1.2939 37.9463 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 26 ` -0.1985 8.2536 9.4443 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 27 @ -1.8353 49.5948 54.8093 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 28 F -0.2459 29.5579 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 29 S -1.3436 24.9668 41.5452 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 30 p 11.7636 26.9520 39.8250 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 31 “ -1.1963 21.7123 14.0000 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 32 % -1.3330 46.5375 41.3411 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 33 £ -0.1848 26.1504 40.2933 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 34 . 35.1150 5.2134 5.2134 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 35 2 -0.2730 25.4757 39.1026 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 36 5 -0.0213 22.0453 38.9597 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 37 m 11.7570 43.6210 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 38 V -0.3330 42.2148 40.1617 -Times_New_Roman.ttf 107 ¥ 31.4462 38.9597 39 6 -0.0766 24.6350 39.1026 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 40 w 13.3146 42.0012 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 41 T 0.1370 32.3248 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 42 M -0.0404 50.8363 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 43 G -0.9906 40.3777 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 44 b -2.0647 26.9520 42.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 45 9 -0.0564 24.2671 39.1149 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 46 ; 11.6713 8.5769 37.1560 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 47 D 0.0599 39.5054 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 48 L -0.0120 33.1439 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 49 y 12.7717 29.1112 38.6301 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 50 ‘ -1.0201 8.5769 14.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 51 \ -1.9233 16.8851 42.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 52 R -0.2551 39.5470 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 53 < 3.9817 30.8172 29.1949 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 54 4 -0.0093 25.4620 39.1149 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 55 8 -0.1258 22.7514 39.1149 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 56 0 -0.4008 24.6301 39.1149 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 57 A -1.0243 42.0000 40.1617 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 58 E 0.2817 34.1502 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 59 B 0.1980 34.7661 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 60 v 12.8005 29.7477 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 61 k -2.0858 28.5111 40.8051 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 62 J -0.0302 20.9143 40.1617 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 63 U 0.0514 40.9807 40.1617 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 64 j -1.8355 16.0484 53.4620 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 65 ( -1.3167 15.8383 52.6957 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 66 7 -0.0638 25.4883 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 67 § -0.4105 20.6180 50.9240 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 68 $ -3.1517 23.6237 45.6650 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 69 € -0.0651 29.1949 39.1149 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 70 / -2.0934 17.5847 42.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 71 C -1.3385 34.5501 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 72 * -1.7047 20.0652 24.4140 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 73 ” -1.4536 21.5302 14.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 74 ? -1.3192 19.9342 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 75 { -1.2236 17.0320 52.6957 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 76 } -1.2328 17.0320 52.6957 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 77 , 34.6308 8.5769 14.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 78 I 0.0745 16.7540 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 79 ° -1.2027 17.5847 17.5847 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 80 K -0.0183 41.1680 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 81 H -0.1081 40.9305 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 82 q 11.7664 26.9520 39.8250 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 83 & -1.2556 41.3566 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 84 ’ -1.2324 8.5769 14.0000 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 85 [ -0.5613 12.6569 51.2203 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 86 - 22.7060 15.1949 5.2070 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 87 Y 0.0668 41.7612 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 88 Q -1.0748 37.9463 51.1285 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 89 " -0.8466 14.9789 16.3898 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 90 ! -1.2431 5.2070 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 91 x 13.0541 28.4678 25.9731 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 92 ) -1.4747 15.8383 52.6957 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 93 = 13.5043 30.1750 12.0135 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 94 + 4.1210 30.3898 30.3898 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 95 X 0.1821 42.0000 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 96 » 11.8193 24.9093 27.1680 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 97 ' -0.9279 5.2070 16.3898 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 98 ¢ 1.5213 21.9610 47.5712 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 99 Z -0.0148 33.9746 38.9668 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 100 > 4.6265 30.8172 29.1949 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 101 ® -1.0661 40.3777 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 102 © -1.1391 40.3777 41.3566 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 103 ] -0.8096 12.6569 51.2203 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 104 é -0.8226 22.1496 41.0199 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 105 z 12.9613 23.5833 25.9731 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 106 _ 49.3078 30.0269 2.3898 -Times_New_Roman.ttf 107 ¥ 31.4941 38.9668 107 ¥ 0.3002 31.4941 38.9668 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 1 t -0.4920 17.6493 36.8247 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 2 h -3.2438 28.0484 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 3 a 8.4750 25.4180 28.2593 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 4 n 8.6198 28.0484 27.0922 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 5 P -3.1482 33.0339 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 6 o 8.4007 24.2510 28.2593 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 7 e 8.5654 22.8247 28.2593 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 8 : 8.5726 9.4429 28.2593 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 9 r 9.0834 22.3243 27.0922 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 10 l -2.7964 12.8814 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 11 i -4.4623 12.8814 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 12 1 -3.5308 19.9834 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 13 | -4.6713 4.0083 52.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 14 N -3.4048 40.4323 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 15 f -4.4870 22.9425 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 16 g 8.3097 25.9251 39.7770 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 17 d -3.0863 27.6410 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 18 W -3.1736 58.0445 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 19 s 8.6557 18.1564 28.2593 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 20 c 8.9060 22.6832 28.2593 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 21 u 9.3846 28.0484 27.0922 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 22 3 -3.2584 25.1588 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 23 ~ 15.3049 30.9591 9.1836 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 24 # -3.1661 26.6848 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 25 O -5.4131 40.8329 42.4007 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 26 ` -3.8734 12.5434 9.4429 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 27 @ -4.2312 51.0839 51.9917 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 28 F -3.2404 32.2675 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 29 S -4.3816 26.9744 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 30 p 8.7019 27.6410 39.7770 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 31 “ -4.3259 24.3204 19.1753 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 32 % -3.4506 49.9821 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 33 £ -3.3843 26.8329 40.2147 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 34 . 27.3745 9.4429 9.4429 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 35 2 -3.5991 25.1588 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 36 5 -3.2452 24.8995 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 37 m 8.5135 43.2155 27.0922 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 38 V -3.3217 43.2782 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 39 6 -3.2997 24.8995 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 40 w 9.6773 41.7521 27.0922 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 41 T -3.2452 35.1088 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 42 M -3.4614 52.8692 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 43 G -4.5809 42.5185 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 44 b -3.1415 27.6410 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 45 9 -3.3607 24.8995 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 46 ; 8.6543 10.6099 36.8247 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 47 D -3.1497 38.4988 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 48 L -3.1309 35.4792 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 49 y 9.6436 29.1671 38.6099 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 50 ‘ -4.3571 10.6099 19.1753 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 51 \ -4.5882 16.3341 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 52 R -3.2255 41.3515 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 53 < 3.3828 30.8412 26.8329 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 54 4 -3.6106 24.8995 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 55 8 -3.4568 24.8995 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 56 0 -3.4140 25.3999 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 57 A -4.4017 42.0000 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 58 E -3.3336 35.1020 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 59 B -3.3217 35.7687 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 60 v 9.5648 29.4263 27.0922 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 61 k -2.9738 31.2600 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 62 J -2.9344 28.2593 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 63 U -3.3587 39.6659 40.0666 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 64 j -4.4475 15.8337 52.7514 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 65 ( -4.3941 16.1927 52.4988 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 66 7 -3.5024 26.0249 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 67 § -3.3934 24.2025 51.7325 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 68 $ -4.2280 25.1103 42.9078 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 69 € -3.3103 29.1671 39.0477 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 70 / -4.4526 18.1261 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 71 C -4.3311 36.8247 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 72 * -3.1324 20.3491 20.7081 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 73 ” -4.4829 24.3204 19.1753 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 74 ? -4.1249 22.4172 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 75 { -4.4090 16.4520 52.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 76 } -5.5938 16.4520 52.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 77 , 26.1925 10.6099 19.1753 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 78 I -3.1588 20.3121 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 79 ° -4.6161 19.7242 20.6017 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 80 K -3.1530 45.8298 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 81 H -3.1070 43.1671 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 82 q 8.8229 27.6410 39.7770 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 83 & -4.4954 43.1671 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 84 ’ -4.5809 10.6099 19.1753 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 85 [ -3.3529 12.0363 50.5654 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 86 - 19.5062 16.1927 5.5828 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 87 Y -3.2944 41.3515 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 88 Q -4.5791 41.0922 49.6509 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 89 " -4.6103 22.4172 18.4090 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 90 ! -4.5791 9.4429 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 91 x 9.8699 27.8519 25.9251 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 92 ) -4.4583 16.1927 52.4988 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 93 = 9.7825 30.8412 13.7407 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 94 + 1.2199 30.4755 30.4755 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 95 X -3.2477 42.8775 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 96 » 9.8617 27.3515 25.9251 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 97 ' -4.4475 7.9169 18.4090 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 98 ¢ -3.2510 22.8247 49.6576 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 99 Z -3.2015 36.6765 38.8995 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 100 > 3.0817 30.8412 26.8329 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 101 ® -4.2691 39.9251 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 102 © -4.6349 39.9251 41.2336 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 103 ] -2.9531 12.0363 50.5654 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 104 é -4.0352 22.8247 40.8026 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 105 z 9.9563 23.7021 25.9251 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 106 _ 44.5284 30.1927 4.0083 -Times_New_Roman_Bold.ttf 1 t 17.6493 36.8247 107 ¥ -3.2107 31.5012 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 1 t 3.5009 17.6493 36.8247 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 2 h 0.1774 28.0484 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 3 a 11.7736 25.4180 28.2593 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 4 n 11.8146 28.0484 27.0922 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 5 P -0.0965 33.0339 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 6 o 11.6444 24.2510 28.2593 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 7 e 11.8221 22.8247 28.2593 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 8 : 11.8021 9.4429 28.2593 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 9 r 12.3762 22.3243 27.0922 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 10 l 0.0212 12.8814 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 11 i -1.0782 12.8814 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 12 1 -0.1481 19.9834 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 13 | -1.3890 4.0083 52.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 14 N 0.1052 40.4323 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 15 f -1.2520 22.9425 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 16 g 11.5073 25.9251 39.7770 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 17 d -0.0370 27.6410 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 18 W -0.1687 58.0445 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 19 s 11.8146 18.1564 28.2593 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 20 c 11.8476 22.6832 28.2593 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 21 u 12.9315 28.0484 27.0922 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 22 3 -0.0626 25.1588 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 23 ~ 18.8203 30.9591 9.1836 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 24 # -0.0947 26.6848 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 25 O -2.4724 40.8329 42.4007 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 26 ` -1.1365 12.5434 9.4429 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 27 @ -1.3856 51.0839 51.9917 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 28 F -0.2518 32.2675 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 29 S -1.3909 26.9744 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 30 p 11.8429 27.6410 39.7770 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 31 “ -1.2128 24.3204 19.1753 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 32 % 0.0623 49.9821 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 33 £ 0.0974 26.8329 40.2147 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 34 . 30.6588 9.4429 9.4429 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 35 2 0.2709 25.1588 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 36 5 -0.1034 24.8995 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 37 m 12.0105 43.2155 27.0922 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 38 V 0.1288 43.2782 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 39 6 -0.2495 24.8995 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 40 w 13.1093 41.7521 27.0922 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 41 T -0.2180 35.1088 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 42 M 0.0028 52.8692 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 43 G -1.1598 42.5185 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 44 b 0.1662 27.6410 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 45 9 -0.4196 24.8995 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 46 ; 12.0587 10.6099 36.8247 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 47 D 0.1331 38.4988 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 48 L 0.2441 35.4792 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 49 y 13.1612 29.1671 38.6099 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 50 ‘ -1.0157 10.6099 19.1753 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 51 \ -1.1391 16.3341 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 52 R -0.1792 41.3515 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 53 < 6.5710 30.8412 26.8329 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 54 4 -0.3274 24.8995 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 55 8 -0.2831 24.8995 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 56 0 -0.3999 25.3999 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 57 A -1.1743 42.0000 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 58 E 0.0106 35.1020 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 59 B -0.0773 35.7687 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 60 v 13.0632 29.4263 27.0922 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 61 k 0.2575 31.2600 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 62 J -0.0279 28.2593 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 63 U 0.2863 39.6659 40.0666 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 64 j -1.3299 15.8337 52.7514 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 65 ( -1.2998 16.1927 52.4988 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 66 7 -0.0337 26.0249 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 67 § -0.3826 24.2025 51.7325 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 68 $ -1.0502 25.1103 42.9078 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 69 € -0.0520 29.1671 39.0477 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 70 / -0.9403 18.1261 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 71 C -1.1715 36.8247 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 72 * 0.1371 20.3491 20.7081 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 73 ” -0.9595 24.3204 19.1753 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 74 ? -0.9638 22.4172 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 75 { -1.1181 16.4520 52.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 76 } -2.3802 16.4520 52.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 77 , 29.7247 10.6099 19.1753 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 78 I -0.0591 20.3121 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 79 ° -1.2429 19.7242 20.6017 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 80 K -0.0403 45.8298 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 81 H -0.1163 43.1671 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 82 q 11.8193 27.6410 39.7770 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 83 & -1.2468 43.1671 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 84 ’ -1.1300 10.6099 19.1753 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 85 [ -0.0846 12.0363 50.5654 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 86 - 22.6310 16.1927 5.5828 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 87 Y 0.0903 41.3515 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 88 Q -1.0748 41.0922 49.6509 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 89 " -1.4986 22.4172 18.4090 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 90 ! -1.3318 9.4429 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 91 x 13.1594 27.8519 25.9251 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 92 ) -1.1728 16.1927 52.4988 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 93 = 13.0945 30.8412 13.7407 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 94 + 4.1610 30.4755 30.4755 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 95 X -0.1018 42.8775 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 96 » 13.0589 27.3515 25.9251 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 97 ' -1.4650 7.9169 18.4090 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 98 ¢ 0.0130 22.8247 49.6576 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 99 Z -0.1481 36.6765 38.8995 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 100 > 6.7569 30.8412 26.8329 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 101 ® -1.2574 39.9251 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 102 © -1.1204 39.9251 41.2336 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 103 ] 0.0798 12.0363 50.5654 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 104 é -0.6871 22.8247 40.8026 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 105 z 13.0960 23.7021 25.9251 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 106 _ 47.6871 30.1927 4.0083 -Times_New_Roman_Bold.ttf 2 h 28.0484 38.8995 107 ¥ -0.2474 31.5012 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 1 t -8.8589 17.6493 36.8247 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 2 h -11.6799 28.0484 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 3 a -0.1748 25.4180 28.2593 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 4 n -0.0370 28.0484 27.0922 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 5 P -11.8505 33.0339 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 6 o -0.0827 24.2510 28.2593 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 7 e 0.0399 22.8247 28.2593 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 8 : 0.0816 9.4429 28.2593 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 9 r -0.0255 22.3243 27.0922 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 10 l -11.8558 12.8814 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 11 i -12.9758 12.8814 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 12 1 -11.9631 19.9834 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 13 | -12.5281 4.0083 52.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 14 N -11.6781 40.4323 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 15 f -12.9802 22.9425 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 16 g -0.0312 25.9251 39.7770 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 17 d -11.9150 27.6410 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 18 W -11.7982 58.0445 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 19 s 0.2609 18.1564 28.2593 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 20 c -0.1701 22.6832 28.2593 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 21 u 1.2559 28.0484 27.0922 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 22 3 -11.9944 25.1588 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 23 ~ 6.9202 30.9591 9.1836 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 24 # -11.4282 26.6848 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 25 O -14.2245 40.8329 42.4007 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 26 ` -12.7646 12.5434 9.4429 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 27 @ -12.8024 51.0839 51.9917 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 28 F -11.8179 32.2675 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 29 S -12.8009 26.9744 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 30 p 0.0816 27.6410 39.7770 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 31 “ -13.3198 24.3204 19.1753 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 32 % -12.2980 49.9821 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 33 £ -12.2667 26.8329 40.2147 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 34 . 18.7812 9.4429 9.4429 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 35 2 -12.0280 25.1588 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 36 5 -11.8135 24.8995 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 37 m 0.0798 43.2155 27.0922 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 38 V -11.9702 43.2782 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 39 6 -11.6610 24.8995 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 40 w 1.2016 41.7521 27.0922 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 41 T -11.7127 35.1088 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 42 M -11.7507 52.8692 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 43 G -12.8888 42.5185 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 44 b -12.0014 27.6410 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 45 9 -11.6725 24.8995 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 46 ; 0.0922 10.6099 36.8247 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 47 D -11.9423 38.4988 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 48 L -11.6819 35.4792 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 49 y 0.8696 29.1671 38.6099 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 50 ‘ -12.9225 10.6099 19.1753 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 51 \ -12.9744 16.3341 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 52 R -11.7497 41.3515 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 53 < -5.0883 30.8412 26.8329 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 54 4 -11.9424 24.8995 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 55 8 -12.1183 24.8995 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 56 0 -11.7887 25.3999 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 57 A -13.2218 42.0000 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 58 E -11.6781 35.1020 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 59 B -11.7761 35.7687 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 60 v 1.2522 29.4263 27.0922 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 61 k -11.7627 31.2600 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 62 J -12.1109 28.2593 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 63 U -11.8649 39.6659 40.0666 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 64 j -13.1924 15.8337 52.7514 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 65 ( -12.9613 16.1927 52.4988 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 66 7 -12.0236 26.0249 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 67 § -11.9348 24.2025 51.7325 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 68 $ -13.1463 25.1103 42.9078 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 69 € -11.9800 29.1671 39.0477 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 70 / -12.9431 18.1261 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 71 C -12.9940 36.8247 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 72 * -11.4973 20.3491 20.7081 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 73 ” -13.0960 24.3204 19.1753 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 74 ? -13.2294 22.4172 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 75 { -13.0320 16.4520 52.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 76 } -14.3605 16.4520 52.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 77 , 17.3533 10.6099 19.1753 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 78 I -11.8977 20.3121 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 79 ° -13.0960 19.7242 20.6017 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 80 K -11.8962 45.8298 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 81 H -11.9314 43.1671 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 82 q -0.1110 27.6410 39.7770 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 83 & -12.8913 43.1671 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 84 ’ -12.7966 10.6099 19.1753 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 85 [ -11.9332 12.0363 50.5654 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 86 - 10.6521 16.1927 5.5828 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 87 Y -11.7227 41.3515 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 88 Q -12.9657 41.0922 49.6509 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 89 " -12.8725 22.4172 18.4090 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 90 ! -13.1840 9.4429 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 91 x 1.3895 27.8519 25.9251 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 92 ) -12.8467 16.1927 52.4988 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 93 = 1.2429 30.8412 13.7407 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 94 + -7.2215 30.4755 30.4755 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 95 X -12.0960 42.8775 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 96 » 1.2026 27.3515 25.9251 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 97 ' -13.2127 7.9169 18.4090 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 98 ¢ -11.9034 22.8247 49.6576 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 99 Z -11.6444 36.6765 38.8995 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 100 > -5.4271 30.8412 26.8329 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 101 ® -12.7524 39.9251 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 102 © -12.8485 39.9251 41.2336 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 103 ] -11.8534 12.0363 50.5654 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 104 é -12.5506 22.8247 40.8026 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 105 z 0.9820 23.7021 25.9251 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 106 _ 35.7786 30.1927 4.0083 -Times_New_Roman_Bold.ttf 3 a 25.4180 28.2593 107 ¥ -11.8443 31.5012 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 1 t -8.7374 17.6493 36.8247 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 2 h -11.7357 28.0484 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 3 a -0.1562 25.4180 28.2593 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 4 n -0.1868 28.0484 27.0922 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 5 P -12.0192 33.0339 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 6 o -0.1274 24.2510 28.2593 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 7 e 0.0148 22.8247 28.2593 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 8 : 0.2869 9.4429 28.2593 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 9 r 0.0831 22.3243 27.0922 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 10 l -11.7703 12.8814 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 11 i -12.8518 12.8814 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 12 1 -11.8445 19.9834 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 13 | -12.8109 4.0083 52.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 14 N -11.8904 40.4323 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 15 f -12.9373 22.9425 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 16 g 0.1274 25.9251 39.7770 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 17 d -11.4950 27.6410 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 18 W -11.6666 58.0445 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 19 s -0.0591 18.1564 28.2593 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 20 c 0.0447 22.6832 28.2593 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 21 u 1.2008 28.0484 27.0922 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 22 3 -11.9017 25.1588 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 23 ~ 7.0105 30.9591 9.1836 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 24 # -11.9020 26.6848 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 25 O -14.2048 40.8329 42.4007 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 26 ` -12.8549 12.5434 9.4429 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 27 @ -12.6769 51.0839 51.9917 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 28 F -11.8548 32.2675 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 29 S -13.1391 26.9744 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 30 p 0.3090 27.6410 39.7770 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 31 “ -13.1003 24.3204 19.1753 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 32 % -11.8651 49.9821 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 33 £ -11.9217 26.8329 40.2147 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 34 . 18.6981 9.4429 9.4429 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 35 2 -12.0876 25.1588 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 36 5 -12.0057 24.8995 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 37 m 0.0148 43.2155 27.0922 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 38 V -12.1403 43.2782 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 39 6 -12.1828 24.8995 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 40 w 0.9984 41.7521 27.0922 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 41 T -11.8106 35.1088 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 42 M -11.7184 52.8692 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 43 G -13.1354 42.5185 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 44 b -12.1465 27.6410 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 45 9 -12.0606 24.8995 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 46 ; -0.0029 10.6099 36.8247 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 47 D -11.8904 38.4988 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 48 L -11.6503 35.4792 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 49 y 1.2559 29.1671 38.6099 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 50 ‘ -13.0589 10.6099 19.1753 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 51 \ -13.1166 16.3341 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 52 R -11.8889 41.3515 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 53 < -5.1235 30.8412 26.8329 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 54 4 -11.9409 24.8995 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 55 8 -12.1405 24.8995 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 56 0 -11.8237 25.3999 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 57 A -13.0412 42.0000 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 58 E -11.7435 35.1020 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 59 B -12.0145 35.7687 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 60 v 0.9499 29.4263 27.0922 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 61 k -11.6593 31.2600 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 62 J -11.8871 28.2593 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 63 U -11.8813 39.6659 40.0666 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 64 j -12.9686 15.8337 52.7514 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 65 ( -13.1132 16.1927 52.4988 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 66 7 -12.0514 26.0249 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 67 § -11.8838 24.2025 51.7325 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 68 $ -12.7433 25.1103 42.9078 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 69 € -11.7762 29.1671 39.0477 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 70 / -12.8057 18.1261 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 71 C -12.9105 36.8247 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 72 * -11.8193 20.3491 20.7081 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 73 ” -12.6660 24.3204 19.1753 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 74 ? -12.9744 22.4172 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 75 { -12.7592 16.4520 52.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 76 } -14.0583 16.4520 52.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 77 , 17.5162 10.6099 19.1753 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 78 I -11.8592 20.3121 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 79 ° -12.8952 19.7242 20.6017 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 80 K -11.6059 45.8298 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 81 H -11.4848 43.1671 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 82 q 0.1763 27.6410 39.7770 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 83 & -12.8322 43.1671 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 84 ’ -13.2464 10.6099 19.1753 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 85 [ -11.8483 12.0363 50.5654 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 86 - 10.8639 16.1927 5.5828 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 87 Y -11.9735 41.3515 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 88 Q -13.0190 41.0922 49.6509 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 89 " -13.2276 22.4172 18.4090 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 90 ! -13.0147 9.4429 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 91 x 1.3478 27.8519 25.9251 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 92 ) -13.1445 16.1927 52.4988 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 93 = 1.1675 30.8412 13.7407 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 94 + -7.3085 30.4755 30.4755 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 95 X -11.8015 42.8775 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 96 » 1.3314 27.3515 25.9251 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 97 ' -12.8380 7.9169 18.4090 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 98 ¢ -11.7069 22.8247 49.6576 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 99 Z -12.0236 36.6765 38.8995 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 100 > -5.1187 30.8412 26.8329 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 101 ® -12.8907 39.9251 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 102 © -12.9450 39.9251 41.2336 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 103 ] -11.7185 12.0363 50.5654 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 104 é -12.8754 22.8247 40.8026 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 105 z 1.3803 23.7021 25.9251 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 106 _ 35.8025 30.1927 4.0083 -Times_New_Roman_Bold.ttf 4 n 28.0484 27.0922 107 ¥ -11.9441 31.5012 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 1 t 3.3101 17.6493 36.8247 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 2 h -0.0783 28.0484 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 3 a 11.6386 25.4180 28.2593 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 4 n 11.8106 28.0484 27.0922 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 5 P 0.2551 33.0339 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 6 o 12.0827 24.2510 28.2593 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 7 e 11.7507 22.8247 28.2593 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 8 : 12.1048 9.4429 28.2593 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 9 r 11.9223 22.3243 27.0922 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 10 l -0.1687 12.8814 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 11 i -0.8547 12.8814 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 12 1 0.0205 19.9834 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 13 | -1.2541 4.0083 52.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 14 N -0.3787 40.4323 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 15 f -1.0945 22.9425 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 16 g 11.8102 25.9251 39.7770 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 17 d -0.1183 27.6410 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 18 W -0.2873 58.0445 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 19 s 11.5012 18.1564 28.2593 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 20 c 11.7257 22.6832 28.2593 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 21 u 12.9671 28.0484 27.0922 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 22 3 -0.2813 25.1588 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 23 ~ 18.9956 30.9591 9.1836 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 24 # 0.0798 26.6848 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 25 O -2.3860 40.8329 42.4007 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 26 ` -0.7444 12.5434 9.4429 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 27 @ -1.4256 51.0839 51.9917 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 28 F -0.0913 32.2675 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 29 S -0.9874 26.9744 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 30 p 11.9303 27.6410 39.7770 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 31 “ -1.0336 24.3204 19.1753 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 32 % 0.0369 49.9821 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 33 £ 0.1123 26.8329 40.2147 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 34 . 30.7480 9.4429 9.4429 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 35 2 -0.3980 25.1588 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 36 5 -0.3119 24.8995 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 37 m 11.6358 43.2155 27.0922 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 38 V -0.0370 43.2782 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 39 6 0.1410 24.8995 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 40 w 12.9264 41.7521 27.0922 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 41 T -0.2623 35.1088 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 42 M -0.0086 52.8692 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 43 G -1.1598 42.5185 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 44 b 0.0514 27.6410 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 45 9 -0.0698 24.8995 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 46 ; 11.5664 10.6099 36.8247 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 47 D -0.2518 38.4988 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 48 L -0.0461 35.4792 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 49 y 13.1445 29.1671 38.6099 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 50 ‘ -1.0354 10.6099 19.1753 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 51 \ -1.4333 16.3341 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 52 R -0.3196 41.3515 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 53 < 6.7521 30.8412 26.8329 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 54 4 -0.3126 24.8995 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 55 8 -0.3082 24.8995 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 56 0 0.0681 25.3999 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 57 A -1.0898 42.0000 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 58 E -0.2619 35.1020 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 59 B 0.0337 35.7687 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 60 v 13.1946 29.4263 27.0922 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 61 k -0.1630 31.2600 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 62 J 0.0188 28.2593 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 63 U 0.3925 39.6659 40.0666 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 64 j -1.1579 15.8337 52.7514 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 65 ( -1.1671 16.1927 52.4988 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 66 7 -0.1121 26.0249 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 67 § 0.0220 24.2025 51.7325 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 68 $ -1.2839 25.1103 42.9078 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 69 € 0.1257 29.1671 39.0477 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 70 / -1.2502 18.1261 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 71 C -1.1637 36.8247 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 72 * 0.3551 20.3491 20.7081 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 73 ” -1.3448 24.3204 19.1753 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 74 ? -1.2396 22.4172 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 75 { -1.0690 16.4520 52.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 76 } -2.2020 16.4520 52.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 77 , 29.5488 10.6099 19.1753 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 78 I 0.0385 20.3121 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 79 ° -1.2022 19.7242 20.6017 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 80 K 0.2920 45.8298 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 81 H 0.0366 43.1671 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 82 q 11.8962 27.6410 39.7770 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 83 & -1.1983 43.1671 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 84 ’ -1.0171 10.6099 19.1753 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 85 [ 0.1226 12.0363 50.5654 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 86 - 22.6251 16.1927 5.5828 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 87 Y -0.0975 41.3515 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 88 Q -1.0720 41.0922 49.6509 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 89 " -1.2411 22.4172 18.4090 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 90 ! -0.9984 9.4429 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 91 x 13.0190 27.8519 25.9251 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 92 ) -1.0288 16.1927 52.4988 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 93 = 13.0085 30.8412 13.7407 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 94 + 4.7132 30.4755 30.4755 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 95 X 0.0033 42.8775 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 96 » 12.8600 27.3515 25.9251 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 97 ' -1.1613 7.9169 18.4090 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 98 ¢ 0.2584 22.8247 49.6576 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 99 Z -0.0446 36.6765 38.8995 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 100 > 6.6392 30.8412 26.8329 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 101 ® -1.1137 39.9251 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 102 © -0.9933 39.9251 41.2336 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 103 ] 0.0783 12.0363 50.5654 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 104 é -0.5699 22.8247 40.8026 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 105 z 12.8470 23.7021 25.9251 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 106 _ 48.0220 30.1927 4.0083 -Times_New_Roman_Bold.ttf 5 P 33.0339 38.8995 107 ¥ -0.3271 31.5012 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 1 t -8.5284 17.6493 36.8247 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 2 h -11.8664 28.0484 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 3 a -0.0885 25.4180 28.2593 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 4 n -0.0370 28.0484 27.0922 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 5 P -11.8443 33.0339 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 6 o 0.1226 24.2510 28.2593 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 7 e -0.1336 22.8247 28.2593 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 8 : -0.0889 9.4429 28.2593 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 9 r -0.1316 22.3243 27.0922 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 10 l -11.5762 12.8814 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 11 i -13.0081 12.8814 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 12 1 -12.1847 19.9834 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 13 | -12.9373 4.0083 52.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 14 N -11.8625 40.4323 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 15 f -13.1420 22.9425 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 16 g 0.1782 25.9251 39.7770 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 17 d -11.9717 27.6410 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 18 W -11.9125 58.0445 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 19 s -0.0897 18.1564 28.2593 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 20 c -0.0500 22.6832 28.2593 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 21 u 1.2103 28.0484 27.0922 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 22 3 -11.7464 25.1588 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 23 ~ 7.0490 30.9591 9.1836 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 24 # -11.9404 26.6848 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 25 O -14.1395 40.8329 42.4007 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 26 ` -12.7054 12.5434 9.4429 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 27 @ -13.0301 51.0839 51.9917 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 28 F -11.7333 32.2675 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 29 S -13.3280 26.9744 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 30 p -0.0058 27.6410 39.7770 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 31 “ -12.7139 24.3204 19.1753 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 32 % -12.3313 49.9821 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 33 £ -12.1293 26.8329 40.2147 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 34 . 18.8164 9.4429 9.4429 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 35 2 -12.0443 25.1588 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 36 5 -11.8534 24.8995 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 37 m -0.0889 43.2155 27.0922 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 38 V -11.7779 43.2782 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 39 6 -12.0443 24.8995 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 40 w 1.1613 41.7521 27.0922 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 41 T -11.8885 35.1088 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 42 M -11.6651 52.8692 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 43 G -12.8072 42.5185 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 44 b -11.7572 27.6410 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 45 9 -11.9497 24.8995 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 46 ; 0.0427 10.6099 36.8247 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 47 D -11.7703 38.4988 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 48 L -11.9735 35.4792 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 49 y 0.9951 29.1671 38.6099 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 50 ‘ -12.8518 10.6099 19.1753 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 51 \ -13.2722 16.3341 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 52 R -12.1142 41.3515 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 53 < -5.5863 30.8412 26.8329 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 54 4 -11.9555 24.8995 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 55 8 -12.0838 24.8995 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 56 0 -12.1774 25.3999 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 57 A -12.8336 42.0000 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 58 E -11.7646 35.1020 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 59 B -11.5968 35.7687 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 60 v 1.5385 29.4263 27.0922 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 61 k -11.9756 31.2600 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 62 J -11.7151 28.2593 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 63 U -11.8240 39.6659 40.0666 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 64 j -12.8826 15.8337 52.7514 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 65 ( -12.8467 16.1927 52.4988 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 66 7 -11.6705 26.0249 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 67 § -11.9511 24.2025 51.7325 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 68 $ -13.2479 25.1103 42.9078 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 69 € -11.9199 29.1671 39.0477 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 70 / -13.0248 18.1261 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 71 C -12.8248 36.8247 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 72 * -11.1547 20.3491 20.7081 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 73 ” -12.8913 24.3204 19.1753 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 74 ? -12.8484 22.4172 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 75 { -12.8894 16.4520 52.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 76 } -14.2357 16.4520 52.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 77 , 17.4052 10.6099 19.1753 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 78 I -11.8443 20.3121 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 79 ° -12.9258 19.7242 20.6017 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 80 K -11.7555 45.8298 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 81 H -11.6814 43.1671 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 82 q 0.3450 27.6410 39.7770 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 83 & -12.9159 43.1671 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 84 ’ -12.9392 10.6099 19.1753 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 85 [ -11.9956 12.0363 50.5654 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 86 - 11.2662 16.1927 5.5828 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 87 Y -11.7996 41.3515 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 88 Q -12.7491 41.0922 49.6509 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 89 " -13.1031 22.4172 18.4090 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 90 ! -12.9508 9.4429 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 91 x 0.9095 27.8519 25.9251 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 92 ) -13.0723 16.1927 52.4988 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 93 = 1.0891 30.8412 13.7407 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 94 + -7.3844 30.4755 30.4755 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 95 X -11.6411 42.8775 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 96 » 1.1171 27.3515 25.9251 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 97 ' -13.0075 7.9169 18.4090 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 98 ¢ -11.9769 22.8247 49.6576 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 99 Z -12.1686 36.6765 38.8995 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 100 > -5.1830 30.8412 26.8329 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 101 ® -12.6764 39.9251 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 102 © -12.9225 39.9251 41.2336 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 103 ] -11.4964 12.0363 50.5654 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 104 é -12.2935 22.8247 40.8026 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 105 z 1.0215 23.7021 25.9251 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 106 _ 35.5835 30.1927 4.0083 -Times_New_Roman_Bold.ttf 6 o 24.2510 28.2593 107 ¥ -11.7621 31.5012 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 1 t -8.4765 17.6493 36.8247 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 2 h -11.8149 28.0484 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 3 a 0.2575 25.4180 28.2593 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 4 n -0.0370 28.0484 27.0922 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 5 P -11.8943 33.0339 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 6 o 0.1441 24.2510 28.2593 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 7 e 0.0033 22.8247 28.2593 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 8 : -0.0740 9.4429 28.2593 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 9 r 0.0831 22.3243 27.0922 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 10 l -11.8480 12.8814 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 11 i -13.0575 12.8814 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 12 1 -12.1347 19.9834 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 13 | -13.2175 4.0083 52.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 14 N -11.5613 40.4323 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 15 f -13.0970 22.9425 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 16 g -0.2994 25.9251 39.7770 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 17 d -11.8933 27.6410 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 18 W -11.9125 58.0445 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 19 s -0.0831 18.1564 28.2593 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 20 c 0.2157 22.6832 28.2593 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 21 u 0.9426 28.0484 27.0922 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 22 3 -12.1274 25.1588 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 23 ~ 7.0033 30.9591 9.1836 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 24 # -12.1494 26.6848 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 25 O -13.6941 40.8329 42.4007 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 26 ` -12.6848 12.5434 9.4429 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 27 @ -13.0172 51.0839 51.9917 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 28 F -11.8073 32.2675 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 29 S -12.9744 26.9744 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 30 p 0.1193 27.6410 39.7770 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 31 “ -13.1430 24.3204 19.1753 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 32 % -11.9061 49.9821 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 33 £ -11.7392 26.8329 40.2147 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 34 . 18.6165 9.4429 9.4429 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 35 2 -12.3124 25.1588 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 36 5 -11.6924 24.8995 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 37 m 0.0019 43.2155 27.0922 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 38 V -11.5910 43.2782 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 39 6 -11.7853 24.8995 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 40 w 0.9302 41.7521 27.0922 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 41 T -11.5574 35.1088 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 42 M -11.8798 52.8692 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 43 G -12.7927 42.5185 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 44 b -11.9549 27.6410 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 45 9 -12.1851 24.8995 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 46 ; -0.2147 10.6099 36.8247 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 47 D -11.8548 38.4988 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 48 L -11.8828 35.4792 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 49 y 1.3924 29.1671 38.6099 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 50 ‘ -12.9210 10.6099 19.1753 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 51 \ -13.2588 16.3341 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 52 R -12.1115 41.3515 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 53 < -5.1220 30.8412 26.8329 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 54 4 -12.0458 24.8995 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 55 8 -11.9275 24.8995 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 56 0 -12.1807 25.3999 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 57 A -12.9855 42.0000 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 58 E -11.5061 35.1020 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 59 B -11.9423 35.7687 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 60 v 1.0401 29.4263 27.0922 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 61 k -12.2310 31.2600 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 62 J -11.8798 28.2593 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 63 U -11.7296 39.6659 40.0666 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 64 j -12.9777 15.8337 52.7514 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 65 ( -12.9004 16.1927 52.4988 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 66 7 -11.7290 26.0249 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 67 § -12.0483 24.2025 51.7325 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 68 $ -12.6620 25.1103 42.9078 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 69 € -11.9646 29.1671 39.0477 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 70 / -13.1891 18.1261 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 71 C -12.8096 36.8247 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 72 * -11.6582 20.3491 20.7081 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 73 ” -13.0450 24.3204 19.1753 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 74 ? -13.0632 22.4172 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 75 { -12.9777 16.4520 52.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 76 } -14.4004 16.4520 52.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 77 , 17.4864 10.6099 19.1753 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 78 I -11.8592 20.3121 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 79 ° -12.8888 19.7242 20.6017 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 80 K -11.9480 45.8298 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 81 H -11.6666 43.1671 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 82 q -0.1076 27.6410 39.7770 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 83 & -13.1445 43.1671 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 84 ’ -13.0262 10.6099 19.1753 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 85 [ -11.6757 12.0363 50.5654 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 86 - 10.9176 16.1927 5.5828 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 87 Y -11.8501 41.3515 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 88 Q -12.6731 41.0922 49.6509 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 89 " -12.9392 22.4172 18.4090 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 90 ! -13.0081 9.4429 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 91 x 1.2972 27.8519 25.9251 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 92 ) -12.7193 16.1927 52.4988 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 93 = 1.1319 30.8412 13.7407 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 94 + -7.5502 30.4755 30.4755 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 95 X -11.9456 42.8775 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 96 » 1.0891 27.3515 25.9251 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 97 ' -13.0901 7.9169 18.4090 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 98 ¢ -11.7381 22.8247 49.6576 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 99 Z -11.4471 36.6765 38.8995 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 100 > -5.0092 30.8412 26.8329 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 101 ® -13.4159 39.9251 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 102 © -13.1757 39.9251 41.2336 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 103 ] -11.8106 12.0363 50.5654 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 104 é -12.7759 22.8247 40.8026 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 105 z 1.0742 23.7021 25.9251 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 106 _ 35.9985 30.1927 4.0083 -Times_New_Roman_Bold.ttf 7 e 22.8247 28.2593 107 ¥ -11.8197 31.5012 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 1 t -8.5654 17.6493 36.8247 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 2 h -11.6676 28.0484 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 3 a -0.1701 25.4180 28.2593 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 4 n -0.0552 28.0484 27.0922 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 5 P -11.6444 33.0339 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 6 o -0.1274 24.2510 28.2593 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 7 e 0.0369 22.8247 28.2593 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 8 : -0.0533 9.4429 28.2593 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 9 r -0.0889 22.3243 27.0922 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 10 l -11.8592 12.8814 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 11 i -12.7524 12.8814 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 12 1 -11.7762 19.9834 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 13 | -12.9744 4.0083 52.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 14 N -11.7555 40.4323 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 15 f -13.3131 22.9425 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 16 g -0.0556 25.9251 39.7770 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 17 d -11.7242 27.6410 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 18 W -11.7953 58.0445 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 19 s 0.0947 18.1564 28.2593 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 20 c -0.3291 22.6832 28.2593 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 21 u 1.2766 28.0484 27.0922 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 22 3 -11.8593 25.1588 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 23 ~ 6.7558 30.9591 9.1836 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 24 # -11.8073 26.6848 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 25 O -14.0511 40.8329 42.4007 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 26 ` -12.4225 12.5434 9.4429 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 27 @ -12.9744 51.0839 51.9917 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 28 F -11.7170 32.2675 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 29 S -13.0209 26.9744 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 30 p 0.0427 27.6410 39.7770 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 31 “ -13.0114 24.3204 19.1753 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 32 % -11.8863 49.9821 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 33 £ -12.2178 26.8329 40.2147 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 34 . 18.6861 9.4429 9.4429 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 35 2 -11.8709 25.1588 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 36 5 -11.5983 24.8995 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 37 m 0.2130 43.2155 27.0922 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 38 V -12.0413 43.2782 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 39 6 -11.9555 24.8995 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 40 w 1.1551 41.7521 27.0922 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 41 T -11.9741 35.1088 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 42 M -11.7641 52.8692 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 43 G -12.9254 42.5185 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 44 b -11.7612 27.6410 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 45 9 -11.8234 24.8995 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 46 ; -0.2623 10.6099 36.8247 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 47 D -11.8073 38.4988 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 48 L -11.6429 35.4792 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 49 y 1.3405 29.1671 38.6099 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 50 ‘ -12.7951 10.6099 19.1753 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 51 \ -13.0666 16.3341 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 52 R -11.8871 41.3515 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 53 < -5.3248 30.8412 26.8329 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 54 4 -12.0832 24.8995 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 55 8 -11.9184 24.8995 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 56 0 -12.0818 25.3999 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 57 A -12.7120 42.0000 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 58 E -11.8073 35.1020 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 59 B -11.6339 35.7687 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 60 v 1.0469 29.4263 27.0922 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 61 k -11.7155 31.2600 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 62 J -11.6676 28.2593 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 63 U -11.6738 39.6659 40.0666 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 64 j -12.8575 15.8337 52.7514 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 65 ( -12.9802 16.1927 52.4988 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 66 7 -11.6392 26.0249 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 67 § -11.8205 24.2025 51.7325 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 68 $ -12.8009 25.1103 42.9078 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 69 € -11.6633 29.1671 39.0477 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 70 / -13.1622 18.1261 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 71 C -13.0070 36.8247 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 72 * -11.7112 20.3491 20.7081 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 73 ” -13.0469 24.3204 19.1753 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 74 ? -13.0575 22.4172 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 75 { -14.0126 16.4520 52.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 76 } -12.8707 16.4520 52.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 77 , 17.7792 10.6099 19.1753 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 78 I -11.7555 20.3121 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 79 ° -13.1445 19.7242 20.6017 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 80 K -11.9270 45.8298 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 81 H -11.7097 43.1671 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 82 q 0.0798 27.6410 39.7770 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 83 & -12.8735 43.1671 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 84 ’ -12.9777 10.6099 19.1753 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 85 [ -12.1639 12.0363 50.5654 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 86 - 10.9826 16.1927 5.5828 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 87 Y -11.8140 41.3515 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 88 Q -13.0632 41.0922 49.6509 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 89 " -12.7937 22.4172 18.4090 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 90 ! -13.0912 9.4429 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 91 x 1.1689 27.8519 25.9251 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 92 ) -12.8470 16.1927 52.4988 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 93 = 1.1671 30.8412 13.7407 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 94 + -7.6060 30.4755 30.4755 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 95 X -11.8073 42.8775 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 96 » 1.0840 27.3515 25.9251 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 97 ' -12.8855 7.9169 18.4090 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 98 ¢ -11.8088 22.8247 49.6576 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 99 Z -11.8203 36.6765 38.8995 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 100 > -5.2105 30.8412 26.8329 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 101 ® -13.1550 39.9251 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 102 © -12.6265 39.9251 41.2336 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 103 ] -11.8197 12.0363 50.5654 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 104 é -12.5833 22.8247 40.8026 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 105 z 1.0800 23.7021 25.9251 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 106 _ 36.0039 30.1927 4.0083 -Times_New_Roman_Bold.ttf 8 : 9.4429 28.2593 107 ¥ -11.8664 31.5012 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 1 t -8.7341 17.6493 36.8247 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 2 h -11.7612 28.0484 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 3 a 0.0000 25.4180 28.2593 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 4 n 0.0572 28.0484 27.0922 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 5 P -11.5522 33.0339 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 6 o -0.0073 24.2510 28.2593 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 7 e -0.0446 22.8247 28.2593 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 8 : -0.0870 9.4429 28.2593 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 9 r 0.0033 22.3243 27.0922 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 10 l -11.6247 12.8814 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 11 i -13.0614 12.8814 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 12 1 -12.0058 19.9834 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 13 | -12.9032 4.0083 52.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 14 N -12.0105 40.4323 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 15 f -12.9628 22.9425 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 16 g -0.0298 25.9251 39.7770 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 17 d -11.9289 27.6410 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 18 W -11.8534 58.0445 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 19 s 0.0908 18.1564 28.2593 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 20 c 0.1753 22.6832 28.2593 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 21 u 1.1710 28.0484 27.0922 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 22 3 -12.2591 25.1588 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 23 ~ 7.1810 30.9591 9.1836 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 24 # -11.6737 26.6848 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 25 O -14.3043 40.8329 42.4007 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 26 ` -12.9011 12.5434 9.4429 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 27 @ -12.7404 51.0839 51.9917 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 28 F -11.8846 32.2675 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 29 S -12.8946 26.9744 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 30 p 0.0812 27.6410 39.7770 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 31 “ -12.7687 24.3204 19.1753 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 32 % -12.0511 49.9821 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 33 £ -11.8666 26.8329 40.2147 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 34 . 18.8697 9.4429 9.4429 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 35 2 -12.0237 25.1588 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 36 5 -11.8664 24.8995 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 37 m -0.0537 43.2155 27.0922 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 38 V -11.7794 43.2782 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 39 6 -12.1241 24.8995 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 40 w 1.0026 41.7521 27.0922 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 41 T -11.5926 35.1088 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 42 M -11.9077 52.8692 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 43 G -12.8470 42.5185 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 44 b -11.7646 27.6410 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 45 9 -11.7853 24.8995 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 46 ; -0.1364 10.6099 36.8247 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 47 D -11.8054 38.4988 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 48 L -11.7573 35.4792 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 49 y 1.0748 29.1671 38.6099 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 50 ‘ -12.8470 10.6099 19.1753 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 51 \ -13.0666 16.3341 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 52 R -11.9347 41.3515 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 53 < -5.2215 30.8412 26.8329 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 54 4 -12.3009 24.8995 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 55 8 -12.0294 24.8995 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 56 0 -12.0497 25.3999 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 57 A -12.6866 42.0000 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 58 E -11.7521 35.1020 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 59 B -11.7630 35.7687 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 60 v 1.0027 29.4263 27.0922 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 61 k -11.9314 31.2600 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 62 J -11.8439 28.2593 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 63 U -11.8164 39.6659 40.0666 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 64 j -12.8826 15.8337 52.7514 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 65 ( -12.8394 16.1927 52.4988 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 66 7 -12.0326 26.0249 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 67 § -12.1659 24.2025 51.7325 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 68 $ -13.0114 25.1103 42.9078 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 69 € -12.2696 29.1671 39.0477 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 70 / -12.8018 18.1261 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 71 C -12.8840 36.8247 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 72 * -11.6242 20.3491 20.7081 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 73 ” -13.1430 24.3204 19.1753 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 74 ? -13.2719 22.4172 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 75 { -12.7711 16.4520 52.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 76 } -14.1563 16.4520 52.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 77 , 17.5648 10.6099 19.1753 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 78 I -11.8943 20.3121 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 79 ° -12.9504 19.7242 20.6017 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 80 K -11.7497 45.8298 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 81 H -11.6724 43.1671 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 82 q 0.0500 27.6410 39.7770 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 83 & -12.9744 43.1671 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 84 ’ -12.9652 10.6099 19.1753 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 85 [ -11.6411 12.0363 50.5654 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 86 - 11.0221 16.1927 5.5828 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 87 Y -12.1864 41.3515 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 88 Q -13.0056 41.0922 49.6509 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 89 " -13.0715 22.4172 18.4090 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 90 ! -12.9802 9.4429 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 91 x 1.2041 27.8519 25.9251 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 92 ) -12.9969 16.1927 52.4988 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 93 = 1.0844 30.8412 13.7407 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 94 + -7.3989 30.4755 30.4755 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 95 X -11.7964 42.8775 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 96 » 1.0354 27.3515 25.9251 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 97 ' -13.1260 7.9169 18.4090 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 98 ¢ -12.1215 22.8247 49.6576 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 99 Z -11.6016 36.6765 38.8995 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 100 > -5.1720 30.8412 26.8329 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 101 ® -12.9802 39.9251 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 102 © -12.8821 39.9251 41.2336 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 103 ] -11.8338 12.0363 50.5654 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 104 é -12.6178 22.8247 40.8026 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 105 z 1.3415 23.7021 25.9251 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 106 _ 35.8707 30.1927 4.0083 -Times_New_Roman_Bold.ttf 9 r 22.3243 27.0922 107 ¥ -11.7800 31.5012 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 1 t 3.2404 17.6493 36.8247 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 2 h 0.0106 28.0484 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 3 a 11.8073 25.4180 28.2593 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 4 n 11.8765 28.0484 27.0922 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 5 P 0.0798 33.0339 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 6 o 11.9423 24.2510 28.2593 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 7 e 11.8535 22.8247 28.2593 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 8 : 11.8610 9.4429 28.2593 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 9 r 11.9202 22.3243 27.0922 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 10 l 0.0447 12.8814 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 11 i -1.3299 12.8814 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 12 1 -0.3734 19.9834 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 13 | -0.9803 4.0083 52.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 14 N -0.0755 40.4323 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 15 f -1.2972 22.9425 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 16 g 11.8645 25.9251 39.7770 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 17 d 0.1734 27.6410 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 18 W -0.1687 58.0445 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 19 s 11.7094 18.1564 28.2593 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 20 c 11.7982 22.6832 28.2593 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 21 u 13.0912 28.0484 27.0922 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 22 3 -0.0593 25.1588 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 23 ~ 18.8164 30.9591 9.1836 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 24 # -0.0048 26.6848 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 25 O -2.3279 40.8329 42.4007 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 26 ` -1.1264 12.5434 9.4429 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 27 @ -1.0887 51.0839 51.9917 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 28 F 0.1316 32.2675 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 29 S -0.8953 26.9744 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 30 p 12.0682 27.6410 39.7770 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 31 “ -1.5125 24.3204 19.1753 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 32 % -0.1025 49.9821 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 33 £ -0.1515 26.8329 40.2147 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 34 . 30.7140 9.4429 9.4429 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 35 2 -0.2222 25.1588 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 36 5 0.2575 24.8995 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 37 m 11.7242 43.2155 27.0922 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 38 V 0.0758 43.2782 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 39 6 -0.0651 24.8995 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 40 w 12.9373 41.7521 27.0922 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 41 T 0.0486 35.1088 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 42 M -0.0947 52.8692 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 43 G -1.1300 42.5185 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 44 b -0.0842 27.6410 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 45 9 -0.0982 24.8995 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 46 ; 11.5483 10.6099 36.8247 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 47 D 0.0928 38.4988 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 48 L -0.0889 35.4792 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 49 y 12.9744 29.1671 38.6099 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 50 ‘ -1.3357 10.6099 19.1753 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 51 \ -1.0840 16.3341 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 52 R -0.0148 41.3515 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 53 < 6.6690 30.8412 26.8329 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 54 4 -0.4105 24.8995 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 55 8 -0.0651 24.8995 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 56 0 -0.1587 25.3999 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 57 A -0.9969 42.0000 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 58 E -0.0073 35.1020 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 59 B 0.3363 35.7687 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 60 v 13.0041 29.4263 27.0922 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 61 k 0.0033 31.2600 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 62 J 0.0798 28.2593 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 63 U 0.0798 39.6659 40.0666 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 64 j -1.1671 15.8337 52.7514 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 65 ( -1.1094 16.1927 52.4988 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 66 7 0.2072 26.0249 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 67 § -0.0151 24.2025 51.7325 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 68 $ -1.2872 25.1103 42.9078 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 69 € -0.0535 29.1671 39.0477 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 70 / -1.0306 18.1261 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 71 C -1.2559 36.8247 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 72 * -0.1259 20.3491 20.7081 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 73 ” -1.1671 24.3204 19.1753 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 74 ? -1.1762 22.4172 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 75 { -1.0782 16.4520 52.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 76 } -2.2543 16.4520 52.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 77 , 29.5430 10.6099 19.1753 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 78 I 0.3388 20.3121 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 79 ° -1.3981 19.7242 20.6017 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 80 K 0.0783 45.8298 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 81 H 0.0533 43.1671 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 82 q 11.7275 27.6410 39.7770 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 83 & -0.9580 43.1671 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 84 ’ -0.9951 10.6099 19.1753 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 85 [ 0.0413 12.0363 50.5654 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 86 - 22.3499 16.1927 5.5828 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 87 Y -0.0711 41.3515 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 88 Q -1.1863 41.0922 49.6509 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 89 " -0.9047 22.4172 18.4090 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 90 ! -1.0075 9.4429 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 91 x 12.9744 27.8519 25.9251 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 92 ) -1.3357 16.1927 52.4988 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 93 = 13.0081 30.8412 13.7407 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 94 + 4.5931 30.4755 30.4755 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 95 X 0.0073 42.8775 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 96 » 12.9744 27.3515 25.9251 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 97 ' -1.0945 7.9169 18.4090 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 98 ¢ 0.0903 22.8247 49.6576 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 99 Z -0.1630 36.6765 38.8995 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 100 > 6.7223 30.8412 26.8329 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 101 ® -1.0397 39.9251 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 102 © -1.2074 39.9251 41.2336 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 103 ] -0.1687 12.0363 50.5654 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 104 é -0.8471 22.8247 40.8026 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 105 z 13.0186 23.7021 25.9251 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 106 _ 47.6723 30.1927 4.0083 -Times_New_Roman_Bold.ttf 10 l 12.8814 38.8995 107 ¥ -0.1701 31.5012 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 1 t 4.5377 17.6493 36.8247 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 2 h 1.1801 28.0484 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 3 a 12.8575 25.4180 28.2593 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 4 n 12.8803 28.0484 27.0922 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 5 P 1.4073 33.0339 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 6 o 13.3146 24.2510 28.2593 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 7 e 12.9892 22.8247 28.2593 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 8 : 13.1834 9.4429 28.2593 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 9 r 12.9406 22.3243 27.0922 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 10 l 1.2041 12.8814 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 11 i -0.1927 12.8814 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 12 1 0.8882 19.9834 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 13 | -0.0831 4.0083 52.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 14 N 1.0840 40.4323 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 15 f -0.0826 22.9425 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 16 g 13.1406 25.9251 39.7770 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 17 d 1.2041 27.6410 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 18 W 1.1671 58.0445 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 19 s 12.9858 18.1564 28.2593 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 20 c 13.0541 22.6832 28.2593 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 21 u 14.2677 28.0484 27.0922 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 22 3 0.8734 25.1588 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 23 ~ 20.1347 30.9591 9.1836 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 24 # 1.3332 26.6848 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 25 O -0.9893 40.8329 42.4007 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 26 ` 0.1992 12.5434 9.4429 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 27 @ 0.0683 51.0839 51.9917 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 28 F 1.2069 32.2675 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 29 S 0.0221 26.9744 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 30 p 13.0665 27.6410 39.7770 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 31 “ 0.0370 24.3204 19.1753 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 32 % 1.0247 49.9821 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 33 £ 1.0189 26.8329 40.2147 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 34 . 32.0497 9.4429 9.4429 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 35 2 1.0987 25.1588 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 36 5 1.1243 24.8995 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 37 m 13.0114 43.2155 27.0922 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 38 V 1.3299 43.2782 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 39 6 0.9300 24.8995 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 40 w 14.1846 41.7521 27.0922 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 41 T 1.1598 35.1088 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 42 M 1.2900 52.8692 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 43 G 0.1513 42.5185 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 44 b 1.2127 27.6410 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 45 9 1.0280 24.8995 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 46 ; 12.9595 10.6099 36.8247 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 47 D 1.3452 38.4988 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 48 L 1.1657 35.4792 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 49 y 14.1785 29.1671 38.6099 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 50 ‘ 0.0015 10.6099 19.1753 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 51 \ 0.2105 16.3341 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 52 R 1.2574 41.3515 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 53 < 7.7860 30.8412 26.8329 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 54 4 1.1876 24.8995 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 55 8 0.9286 24.8995 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 56 0 1.0218 25.3999 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 57 A 0.0683 42.0000 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 58 E 1.0840 35.1020 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 59 B 1.0840 35.7687 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 60 v 14.0213 29.4263 27.0922 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 61 k 1.2962 31.2600 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 62 J 1.1671 28.2593 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 63 U 1.1671 39.6659 40.0666 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 64 j -0.0033 15.8337 52.7514 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 65 ( 0.0870 16.1927 52.4988 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 66 7 1.0662 26.0249 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 67 § 1.0593 24.2025 51.7325 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 68 $ -0.1734 25.1103 42.9078 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 69 € 0.9843 29.1671 39.0477 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 70 / 0.0831 18.1261 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 71 C -0.0816 36.8247 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 72 * 1.0412 20.3491 20.7081 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 73 ” 0.1557 24.3204 19.1753 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 74 ? -0.1629 22.4172 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 75 { 0.1868 16.4520 52.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 76 } -1.2483 16.4520 52.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 77 , 30.6237 10.6099 19.1753 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 78 I 1.0840 20.3121 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 79 ° -0.1274 19.7242 20.6017 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 80 K 1.0782 45.8298 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 81 H 1.3266 43.1671 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 82 q 12.8855 27.6410 39.7770 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 83 & -0.1009 43.1671 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 84 ’ -0.1662 10.6099 19.1753 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 85 [ 1.3241 12.0363 50.5654 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 86 - 23.7138 16.1927 5.5828 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 87 Y 1.2099 41.3515 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 88 Q -0.2186 41.0922 49.6509 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 89 " -0.0221 22.4172 18.4090 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 90 ! 0.0385 9.4429 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 91 x 14.1785 27.8519 25.9251 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 92 ) -0.0976 16.1927 52.4988 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 93 = 14.2393 30.8412 13.7407 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 94 + 5.4997 30.4755 30.4755 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 95 X 1.0388 42.8775 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 96 » 14.0123 27.3515 25.9251 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 97 ' -0.1687 7.9169 18.4090 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 98 ¢ 1.2483 22.8247 49.6576 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 99 Z 1.3275 36.6765 38.8995 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 100 > 7.7990 30.8412 26.8329 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 101 ® 0.1734 39.9251 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 102 © 0.0773 39.9251 41.2336 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 103 ] 1.2940 12.0363 50.5654 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 104 é 0.5953 22.8247 40.8026 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 105 z 14.1044 23.7021 25.9251 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 106 _ 48.9801 30.1927 4.0083 -Times_New_Roman_Bold.ttf 11 i 12.8814 40.0666 107 ¥ 1.0042 31.5012 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 1 t 3.1292 17.6493 36.8247 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 2 h 0.0117 28.0484 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 3 a 12.1274 25.4180 28.2593 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 4 n 11.9997 28.0484 27.0922 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 5 P 0.1111 33.0339 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 6 o 11.9036 24.2510 28.2593 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 7 e 11.8579 22.8247 28.2593 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 8 : 12.0193 9.4429 28.2593 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 9 r 12.0563 22.3243 27.0922 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 10 l 0.5460 12.8814 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 11 i -1.2265 12.8814 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 12 1 -0.0164 19.9834 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 13 | -1.1059 4.0083 52.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 14 N -0.0194 40.4323 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 15 f -0.8451 22.9425 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 16 g 11.8353 25.9251 39.7770 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 17 d 0.1131 27.6410 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 18 W 0.1092 58.0445 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 19 s 12.0031 18.1564 28.2593 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 20 c 12.1274 22.6832 28.2593 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 21 u 12.9832 28.0484 27.0922 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 22 3 0.0370 25.1588 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 23 ~ 18.9612 30.9591 9.1836 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 24 # 0.2664 26.6848 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 25 O -2.3528 40.8329 42.4007 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 26 ` -0.8437 12.5434 9.4429 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 27 @ -1.0262 51.0839 51.9917 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 28 F 0.1909 32.2675 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 29 S -1.0243 26.9744 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 30 p 12.0298 27.6410 39.7770 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 31 “ -1.3110 24.3204 19.1753 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 32 % 0.1422 49.9821 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 33 £ -0.0312 26.8329 40.2147 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 34 . 30.9438 9.4429 9.4429 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 35 2 0.0519 25.1588 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 36 5 0.1169 24.8995 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 37 m 11.8666 43.2155 27.0922 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 38 V 0.1852 43.2782 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 39 6 0.0033 24.8995 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 40 w 13.1701 41.7521 27.0922 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 41 T -0.0387 35.1088 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 42 M -0.0666 52.8692 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 43 G -1.1775 42.5185 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 44 b 0.0593 27.6410 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 45 9 -0.1349 24.8995 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 46 ; 11.9540 10.6099 36.8247 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 47 D 0.0644 38.4988 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 48 L -0.0220 35.4792 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 49 y 13.2408 29.1671 38.6099 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 50 ‘ -1.0448 10.6099 19.1753 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 51 \ -0.7566 16.3341 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 52 R -0.0162 41.3515 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 53 < 6.9042 30.8412 26.8329 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 54 4 0.1868 24.8995 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 55 8 -0.0312 24.8995 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 56 0 -0.3127 25.3999 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 57 A -0.6068 42.0000 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 58 E -0.0041 35.1020 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 59 B 0.1409 35.7687 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 60 v 13.0336 29.4263 27.0922 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 61 k 0.3316 31.2600 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 62 J 0.0371 28.2593 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 63 U 0.0622 39.6659 40.0666 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 64 j -0.9391 15.8337 52.7514 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 65 ( -1.1059 16.1927 52.4988 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 66 7 0.1409 26.0249 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 67 § -0.0490 24.2025 51.7325 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 68 $ -0.9762 25.1103 42.9078 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 69 € -0.1610 29.1671 39.0477 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 70 / -1.1093 18.1261 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 71 C -0.9935 36.8247 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 72 * 0.1699 20.3491 20.7081 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 73 ” -1.1430 24.3204 19.1753 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 74 ? -0.9282 22.4172 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 75 { -2.1768 16.4520 52.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 76 } -1.0189 16.4520 52.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 77 , 29.5629 10.6099 19.1753 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 78 I 0.0651 20.3121 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 79 ° -0.7614 19.7242 20.6017 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 80 K 0.2150 45.8298 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 81 H 0.1169 43.1671 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 82 q 11.9877 27.6410 39.7770 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 83 & -1.1078 43.1671 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 84 ’ -1.2423 10.6099 19.1753 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 85 [ 0.0126 12.0363 50.5654 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 86 - 22.8179 16.1927 5.5828 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 87 Y 0.3288 41.3515 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 88 Q -0.9152 41.0922 49.6509 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 89 " -1.2779 22.4172 18.4090 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 90 ! -0.9833 9.4429 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 91 x 13.1225 27.8519 25.9251 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 92 ) -0.8095 16.1927 52.4988 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 93 = 13.3321 30.8412 13.7407 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 94 + 4.5605 30.4755 30.4755 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 95 X 0.2798 42.8775 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 96 » 13.1200 27.3515 25.9251 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 97 ' -0.7095 7.9169 18.4090 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 98 ¢ 0.1420 22.8247 49.6576 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 99 Z 0.0626 36.6765 38.8995 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 100 > 6.5755 30.8412 26.8329 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 101 ® -0.9852 39.9251 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 102 © -1.0981 39.9251 41.2336 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 103 ] 0.0574 12.0363 50.5654 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 104 é -0.6192 22.8247 40.8026 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 105 z 12.9966 23.7021 25.9251 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 106 _ 47.7094 30.1927 4.0083 -Times_New_Roman_Bold.ttf 12 1 19.9834 39.0477 107 ¥ 0.3110 31.5012 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 1 t 4.3259 17.6493 36.8247 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 2 h 1.0800 28.0484 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 3 a 12.7745 25.4180 28.2593 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 4 n 12.9715 28.0484 27.0922 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 5 P 1.1671 33.0339 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 6 o 12.8931 24.2510 28.2593 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 7 e 12.8855 22.8247 28.2593 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 8 : 13.1463 9.4429 28.2593 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 9 r 12.8913 22.3243 27.0922 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 10 l 1.2502 12.8814 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 11 i -0.1407 12.8814 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 12 1 1.1020 19.9834 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 13 | 0.0875 4.0083 52.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 14 N 1.0840 40.4323 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 15 f -0.0903 22.9425 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 16 g 12.8394 25.9251 39.7770 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 17 d 1.1671 27.6410 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 18 W 1.1300 58.0445 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 19 s 12.9816 18.1564 28.2593 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 20 c 12.9777 22.6832 28.2593 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 21 u 14.2212 28.0484 27.0922 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 22 3 0.9671 25.1588 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 23 ~ 19.9032 30.9591 9.1836 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 24 # 1.3890 26.6848 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 25 O -1.1671 40.8329 42.4007 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 26 ` 0.1992 12.5434 9.4429 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 27 @ -0.0552 51.0839 51.9917 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 28 F 1.1790 32.2675 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 29 S 0.0461 26.9744 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 30 p 12.9744 27.6410 39.7770 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 31 “ -0.2460 24.3204 19.1753 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 32 % 0.9194 49.9821 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 33 £ 1.0189 26.8329 40.2147 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 34 . 31.7018 9.4429 9.4429 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 35 2 0.9757 25.1588 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 36 5 1.1743 24.8995 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 37 m 12.9802 43.2155 27.0922 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 38 V 1.0840 43.2782 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 39 6 0.9704 24.8995 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 40 w 14.0982 41.7521 27.0922 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 41 T 1.1671 35.1088 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 42 M 1.2541 52.8692 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 43 G -0.2609 42.5185 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 44 b 1.2839 27.6410 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 45 9 1.0189 24.8995 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 46 ; 12.9744 10.6099 36.8247 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 47 D 1.1232 38.4988 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 48 L 1.1671 35.4792 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 49 y 14.1044 29.1671 38.6099 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 50 ‘ 0.1422 10.6099 19.1753 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 51 \ 0.1595 16.3341 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 52 R 1.0840 41.3515 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 53 < 7.8821 30.8412 26.8329 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 54 4 1.0900 24.8995 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 55 8 1.1093 24.8995 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 56 0 0.9391 25.3999 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 57 A -0.0519 42.0000 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 58 E 1.1522 35.1020 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 59 B 1.3804 35.7687 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 60 v 14.0616 29.4263 27.0922 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 61 k 1.0042 31.2600 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 62 J 1.1671 28.2593 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 63 U 1.0368 39.6659 40.0666 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 64 j 0.0000 15.8337 52.7514 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 65 ( 0.0000 16.1927 52.4988 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 66 7 1.0873 26.0249 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 67 § 1.1505 24.2025 51.7325 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 68 $ -0.1168 25.1103 42.9078 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 69 € 1.0679 29.1671 39.0477 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 70 / 0.1687 18.1261 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 71 C -0.0946 36.8247 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 72 * 1.3161 20.3491 20.7081 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 73 ” -0.0831 24.3204 19.1753 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 74 ? -0.1687 22.4172 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 75 { -1.3438 16.4520 52.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 76 } -0.1734 16.4520 52.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 77 , 30.6664 10.6099 19.1753 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 78 I 1.1152 20.3121 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 79 ° 0.0519 19.7242 20.6017 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 80 K 1.1762 45.8298 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 81 H 1.1243 43.1671 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 82 q 12.9744 27.6410 39.7770 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 83 & 0.1360 43.1671 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 84 ’ -0.0889 10.6099 19.1753 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 85 [ 1.3266 12.0363 50.5654 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 86 - 24.0013 16.1927 5.5828 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 87 Y 1.0249 41.3515 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 88 Q -0.1422 41.0922 49.6509 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 89 " -0.0831 22.4172 18.4090 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 90 ! 0.0783 9.4429 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 91 x 13.9713 27.8519 25.9251 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 92 ) 0.0000 16.1927 52.4988 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 93 = 13.9756 30.8412 13.7407 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 94 + 5.5828 30.4755 30.4755 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 95 X 1.2041 42.8775 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 96 » 14.1044 27.3515 25.9251 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 97 ' 0.0000 7.9169 18.4090 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 98 ¢ 1.2588 22.8247 49.6576 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 99 Z 1.1272 36.6765 38.8995 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 100 > 7.7591 30.8412 26.8329 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 101 ® 0.0961 39.9251 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 102 © 0.0831 39.9251 41.2336 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 103 ] 1.2526 12.0363 50.5654 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 104 é 0.4310 22.8247 40.8026 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 105 z 14.0544 23.7021 25.9251 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 106 _ 49.0719 30.1927 4.0083 -Times_New_Roman_Bold.ttf 13 | 4.0083 52.8995 107 ¥ 1.0782 31.5012 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 1 t 3.3102 17.6493 36.8247 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 2 h 0.3825 28.0484 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 3 a 12.1625 25.4180 28.2593 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 4 n 11.8146 28.0484 27.0922 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 5 P -0.2350 33.0339 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 6 o 11.8073 24.2510 28.2593 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 7 e 11.6531 22.8247 28.2593 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 8 : 12.0370 9.4429 28.2593 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 9 r 11.7507 22.3243 27.0922 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 10 l -0.0236 12.8814 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 11 i -0.7000 12.8814 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 12 1 -0.1423 19.9834 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 13 | -1.2556 4.0083 52.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 14 N -0.1495 40.4323 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 15 f -0.8322 22.9425 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 16 g 11.8866 25.9251 39.7770 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 17 d 0.0523 27.6410 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 18 W 0.1701 58.0445 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 19 s 12.0739 18.1564 28.2593 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 20 c 11.6055 22.6832 28.2593 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 21 u 13.0599 28.0484 27.0922 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 22 3 -0.4373 25.1588 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 23 ~ 18.5054 30.9591 9.1836 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 24 # -0.1288 26.6848 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 25 O -2.4187 40.8329 42.4007 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 26 ` -0.4557 12.5434 9.4429 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 27 @ -1.4326 51.0839 51.9917 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 28 F -0.0130 32.2675 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 29 S -0.9690 26.9744 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 30 p 12.1306 27.6410 39.7770 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 31 “ -1.2632 24.3204 19.1753 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 32 % 0.2647 49.9821 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 33 £ -0.4426 26.8329 40.2147 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 34 . 30.5770 9.4429 9.4429 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 35 2 -0.4696 25.1588 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 36 5 0.0429 24.8995 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 37 m 11.6016 43.2155 27.0922 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 38 V -0.2157 43.2782 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 39 6 0.0199 24.8995 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 40 w 13.1017 41.7521 27.0922 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 41 T 0.0842 35.1088 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 42 M -0.0500 52.8692 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 43 G -1.0398 42.5185 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 44 b 0.3200 27.6410 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 45 9 -0.0963 24.8995 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 46 ; 11.8073 10.6099 36.8247 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 47 D -0.0369 38.4988 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 48 L 0.1853 35.4792 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 49 y 12.9075 29.1671 38.6099 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 50 ‘ -1.1584 10.6099 19.1753 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 51 \ -1.0955 16.3341 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 52 R 0.3873 41.3515 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 53 < 6.8054 30.8412 26.8329 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 54 4 -0.1122 24.8995 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 55 8 -0.2668 24.8995 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 56 0 -0.0578 25.3999 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 57 A -1.2146 42.0000 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 58 E 0.2461 35.1020 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 59 B -0.0917 35.7687 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 60 v 13.0056 29.4263 27.0922 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 61 k -0.0525 31.2600 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 62 J 0.1788 28.2593 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 63 U -0.1777 39.6659 40.0666 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 64 j -1.5200 15.8337 52.7514 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 65 ( -1.0321 16.1927 52.4988 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 66 7 0.4349 26.0249 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 67 § -0.1510 24.2025 51.7325 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 68 $ -1.1609 25.1103 42.9078 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 69 € -0.2446 29.1671 39.0477 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 70 / -0.9138 18.1261 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 71 C -0.9201 36.8247 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 72 * 0.3181 20.3491 20.7081 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 73 ” -0.9730 24.3204 19.1753 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 74 ? -1.0469 22.4172 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 75 { -1.4015 16.4520 52.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 76 } -2.1117 16.4520 52.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 77 , 29.3856 10.6099 19.1753 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 78 I 0.2191 20.3121 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 79 ° -1.1820 19.7242 20.6017 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 80 K -0.0980 45.8298 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 81 H 0.0019 43.1671 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 82 q 11.9759 27.6410 39.7770 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 83 & -1.1503 43.1671 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 84 ’ -1.2766 10.6099 19.1753 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 85 [ -0.0486 12.0363 50.5654 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 86 - 22.5689 16.1927 5.5828 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 87 Y -0.1919 41.3515 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 88 Q -1.0268 41.0922 49.6509 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 89 " -0.7197 22.4172 18.4090 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 90 ! -1.2170 9.4429 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 91 x 12.8369 27.8519 25.9251 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 92 ) -1.1698 16.1927 52.4988 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 93 = 12.5047 30.8412 13.7407 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 94 + 4.3969 30.4755 30.4755 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 95 X 0.3733 42.8775 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 96 » 12.8076 27.3515 25.9251 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 97 ' -0.9374 7.9169 18.4090 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 98 ¢ -0.0566 22.8247 49.6576 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 99 Z -0.0547 36.6765 38.8995 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 100 > 6.6319 30.8412 26.8329 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 101 ® -1.3506 39.9251 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 102 © -1.2930 39.9251 41.2336 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 103 ] 0.3820 12.0363 50.5654 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 104 é -0.4723 22.8247 40.8026 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 105 z 12.8974 23.7021 25.9251 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 106 _ 47.6414 30.1927 4.0083 -Times_New_Roman_Bold.ttf 14 N 40.4323 40.0666 107 ¥ -0.0240 31.5012 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 1 t 4.3752 17.6493 36.8247 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 2 h 1.2530 28.0484 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 3 a 12.9483 25.4180 28.2593 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 4 n 13.0570 28.0484 27.0922 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 5 P 0.9490 33.0339 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 6 o 12.9240 24.2510 28.2593 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 7 e 13.1002 22.8247 28.2593 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 8 : 13.0614 9.4429 28.2593 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 9 r 12.7610 22.3243 27.0922 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 10 l 1.3390 12.8814 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 11 i -0.0903 12.8814 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 12 1 0.8397 19.9834 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 13 | 0.0490 4.0083 52.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 14 N 1.0027 40.4323 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 15 f -0.0798 22.9425 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 16 g 12.7279 25.9251 39.7770 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 17 d 1.1333 27.6410 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 18 W 1.1300 58.0445 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 19 s 12.9950 18.1564 28.2593 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 20 c 12.9301 22.6832 28.2593 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 21 u 14.3519 28.0484 27.0922 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 22 3 0.9319 25.1588 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 23 ~ 19.8618 30.9591 9.1836 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 24 # 1.2189 26.6848 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 25 O -1.3430 40.8329 42.4007 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 26 ` 0.4278 12.5434 9.4429 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 27 @ -0.2220 51.0839 51.9917 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 28 F 1.2189 32.2675 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 29 S -0.0505 26.9744 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 30 p 13.1536 27.6410 39.7770 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 31 “ 0.0091 24.3204 19.1753 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 32 % 1.1001 49.9821 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 33 £ 0.8560 26.8329 40.2147 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 34 . 31.7922 9.4429 9.4429 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 35 2 1.3200 25.1588 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 36 5 1.4246 24.8995 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 37 m 12.9710 43.2155 27.0922 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 38 V 1.2782 43.2782 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 39 6 1.3207 24.8995 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 40 w 14.2212 41.7521 27.0922 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 41 T 1.2664 35.1088 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 42 M 1.3563 52.8692 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 43 G 0.3436 42.5185 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 44 b 1.1119 27.6410 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 45 9 0.9286 24.8995 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 46 ; 13.0541 10.6099 36.8247 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 47 D 1.1113 38.4988 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 48 L 1.5164 35.4792 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 49 y 14.1044 29.1671 38.6099 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 50 ‘ 0.1143 10.6099 19.1753 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 51 \ 0.1629 16.3341 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 52 R 1.0263 41.3515 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 53 < 7.7990 30.8412 26.8329 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 54 4 1.0189 24.8995 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 55 8 0.9910 24.8995 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 56 0 1.0602 25.3999 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 57 A 0.0889 42.0000 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 58 E 1.2535 35.1020 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 59 B 1.0782 35.7687 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 60 v 14.0511 29.4263 27.0922 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 61 k 1.1671 31.2600 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 62 J 1.4722 28.2593 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 63 U 1.5164 39.6659 40.0666 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 64 j 0.0312 15.8337 52.7514 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 65 ( -0.2196 16.1927 52.4988 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 66 7 1.2132 26.0249 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 67 § 0.8430 24.2025 51.7325 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 68 $ 0.0033 25.1103 42.9078 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 69 € 0.8603 29.1671 39.0477 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 70 / -0.0798 18.1261 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 71 C 0.0370 36.8247 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 72 * 1.4318 20.3491 20.7081 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 73 ” -0.1720 24.3204 19.1753 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 74 ? -0.0798 22.4172 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 75 { -0.0033 16.4520 52.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 76 } -1.3035 16.4520 52.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 77 , 30.4459 10.6099 19.1753 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 78 I 1.3890 20.3121 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 79 ° -0.0816 19.7242 20.6017 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 80 K 1.1046 45.8298 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 81 H 1.2468 43.1671 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 82 q 13.0291 27.6410 39.7770 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 83 & 0.1349 43.1671 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 84 ’ 0.3897 10.6099 19.1753 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 85 [ 1.0042 12.0363 50.5654 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 86 - 23.9124 16.1927 5.5828 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 87 Y 1.2699 41.3515 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 88 Q 0.2796 41.0922 49.6509 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 89 " 0.0519 22.4172 18.4090 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 90 ! 0.0039 9.4429 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 91 x 14.2745 27.8519 25.9251 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 92 ) -0.1183 16.1927 52.4988 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 93 = 14.1439 30.8412 13.7407 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 94 + 5.5813 30.4755 30.4755 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 95 X 0.9951 42.8775 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 96 » 14.1785 27.3515 25.9251 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 97 ' -0.0312 7.9169 18.4090 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 98 ¢ 1.4221 22.8247 49.6576 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 99 Z 1.0748 36.6765 38.8995 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 100 > 7.8138 30.8412 26.8329 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 101 ® 0.0432 39.9251 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 102 © -0.0326 39.9251 41.2336 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 103 ] 1.0782 12.0363 50.5654 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 104 é 0.1792 22.8247 40.8026 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 105 z 14.0896 23.7021 25.9251 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 106 _ 49.0301 30.1927 4.0083 -Times_New_Roman_Bold.ttf 15 f 22.9425 40.0666 107 ¥ 1.1983 31.5012 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 1 t -8.5121 17.6493 36.8247 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 2 h -11.8904 28.0484 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 3 a -0.1966 25.4180 28.2593 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 4 n -0.2084 28.0484 27.0922 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 5 P -11.9216 33.0339 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 6 o -0.0000 24.2510 28.2593 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 7 e 0.1274 22.8247 28.2593 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 8 : -0.0196 9.4429 28.2593 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 9 r -0.0903 22.3243 27.0922 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 10 l -11.7315 12.8814 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 11 i -12.9450 12.8814 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 12 1 -11.9021 19.9834 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 13 | -12.7610 4.0083 52.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 14 N -11.7242 40.4323 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 15 f -12.9167 22.9425 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 16 g -0.0922 25.9251 39.7770 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 17 d -11.7242 27.6410 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 18 W -12.0211 58.0445 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 19 s 0.2072 18.1564 28.2593 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 20 c -0.0798 22.6832 28.2593 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 21 u 1.1315 28.0484 27.0922 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 22 3 -12.0385 25.1588 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 23 ~ 6.7467 30.9591 9.1836 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 24 # -11.8131 26.6848 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 25 O -14.0198 40.8329 42.4007 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 26 ` -12.7737 12.5434 9.4429 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 27 @ -12.7745 51.0839 51.9917 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 28 F -11.9332 32.2675 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 29 S -13.0916 26.9744 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 30 p -0.1259 27.6410 39.7770 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 31 “ -12.5598 24.3204 19.1753 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 32 % -12.0064 49.9821 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 33 £ -12.0872 26.8329 40.2147 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 34 . 18.4757 9.4429 9.4429 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 35 2 -11.9242 25.1588 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 36 5 -11.8073 24.8995 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 37 m -0.0519 43.2155 27.0922 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 38 V -11.8929 43.2782 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 39 6 -11.9482 24.8995 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 40 w 1.0676 41.7521 27.0922 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 41 T -11.9314 35.1088 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 42 M -11.8592 52.8692 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 43 G -12.9359 42.5185 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 44 b -11.6890 27.6410 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 45 9 -12.0443 24.8995 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 46 ; -0.0798 10.6099 36.8247 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 47 D -11.8943 38.4988 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 48 L -11.7392 35.4792 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 49 y 1.1710 29.1671 38.6099 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 50 ‘ -12.7211 10.6099 19.1753 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 51 \ -12.9984 16.3341 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 52 R -11.6579 41.3515 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 53 < -4.8332 30.8412 26.8329 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 54 4 -11.9156 24.8995 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 55 8 -12.0650 24.8995 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 56 0 -11.9900 25.3999 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 57 A -13.0647 42.0000 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 58 E -11.8236 35.1020 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 59 B -11.8040 35.7687 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 60 v 1.2095 29.4263 27.0922 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 61 k -11.8051 31.2600 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 62 J -11.9668 28.2593 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 63 U -11.7895 39.6659 40.0666 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 64 j -12.9950 15.8337 52.7514 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 65 ( -12.5942 16.1927 52.4988 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 66 7 -11.5555 26.0249 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 67 § -11.8223 24.2025 51.7325 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 68 $ -12.9316 25.1103 42.9078 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 69 € -12.1626 29.1671 39.0477 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 70 / -12.9657 18.1261 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 71 C -13.0541 36.8247 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 72 * -11.7025 20.3491 20.7081 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 73 ” -12.7543 24.3204 19.1753 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 74 ? -12.9801 22.4172 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 75 { -12.7976 16.4520 52.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 76 } -14.1290 16.4520 52.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 77 , 17.7045 10.6099 19.1753 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 78 I -11.9346 20.3121 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 79 ° -12.9849 19.7242 20.6017 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 80 K -11.8723 45.8298 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 81 H -11.8015 43.1671 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 82 q -0.1662 27.6410 39.7770 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 83 & -13.1891 43.1671 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 84 ’ -13.1801 10.6099 19.1753 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 85 [ -12.0696 12.0363 50.5654 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 86 - 11.2474 16.1927 5.5828 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 87 Y -11.8871 41.3515 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 88 Q -12.9671 41.0922 49.6509 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 89 " -12.9734 22.4172 18.4090 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 90 ! -13.3419 9.4429 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 91 x 0.9878 27.8519 25.9251 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 92 ) -12.9652 16.1927 52.4988 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 93 = 1.1728 30.8412 13.7407 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 94 + -7.4747 30.4755 30.4755 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 95 X -11.9720 42.8775 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 96 » 0.7731 27.3515 25.9251 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 97 ' -12.8792 7.9169 18.4090 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 98 ¢ -11.8058 22.8247 49.6576 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 99 Z -11.7184 36.6765 38.8995 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 100 > -5.2509 30.8412 26.8329 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 101 ® -12.8903 39.9251 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 102 © -13.0738 39.9251 41.2336 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 103 ] -11.6353 12.0363 50.5654 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 104 é -12.7999 22.8247 40.8026 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 105 z 1.0734 23.7021 25.9251 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 106 _ 35.9169 30.1927 4.0083 -Times_New_Roman_Bold.ttf 16 g 25.9251 39.7770 107 ¥ -11.9509 31.5012 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 1 t 3.1919 17.6493 36.8247 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 2 h -0.1001 28.0484 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 3 a 11.7536 25.4180 28.2593 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 4 n 11.8429 28.0484 27.0922 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 5 P 0.0273 33.0339 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 6 o 11.8419 24.2510 28.2593 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 7 e 11.7651 22.8247 28.2593 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 8 : 11.6947 9.4429 28.2593 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 9 r 11.8367 22.3243 27.0922 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 10 l 0.1668 12.8814 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 11 i -1.1921 12.8814 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 12 1 0.0886 19.9834 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 13 | -0.9490 4.0083 52.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 14 N 0.0722 40.4323 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 15 f -1.6068 22.9425 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 16 g 12.1840 25.9251 39.7770 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 17 d 0.1168 27.6410 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 18 W 0.3333 58.0445 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 19 s 12.0961 18.1564 28.2593 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 20 c 11.6444 22.6832 28.2593 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 21 u 12.9522 28.0484 27.0922 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 22 3 -0.1217 25.1588 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 23 ~ 18.8077 30.9591 9.1836 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 24 # 0.0246 26.6848 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 25 O -2.6022 40.8329 42.4007 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 26 ` -1.0682 12.5434 9.4429 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 27 @ -1.0742 51.0839 51.9917 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 28 F -0.1201 32.2675 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 29 S -1.0815 26.9744 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 30 p 11.8995 27.6410 39.7770 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 31 “ -1.4087 24.3204 19.1753 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 32 % -0.0564 49.9821 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 33 £ 0.0738 26.8329 40.2147 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 34 . 30.5573 9.4429 9.4429 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 35 2 -0.2403 25.1588 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 36 5 0.1849 24.8995 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 37 m 11.5670 43.2155 27.0922 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 38 V 0.0990 43.2782 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 39 6 -0.1130 24.8995 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 40 w 13.0575 41.7521 27.0922 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 41 T 0.0773 35.1088 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 42 M 0.0369 52.8692 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 43 G -1.1137 42.5185 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 44 b -0.1158 27.6410 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 45 9 0.0180 24.8995 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 46 ; 11.8616 10.6099 36.8247 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 47 D -0.4252 38.4988 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 48 L 0.1241 35.4792 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 49 y 12.9783 29.1671 38.6099 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 50 ‘ -1.2378 10.6099 19.1753 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 51 \ -1.4294 16.3341 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 52 R 0.1292 41.3515 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 53 < 7.0568 30.8412 26.8329 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 54 4 -0.2650 24.8995 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 55 8 -0.1352 24.8995 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 56 0 -0.2019 25.3999 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 57 A -0.8562 42.0000 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 58 E 0.0864 35.1020 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 59 B 0.1585 35.7687 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 60 v 12.9004 29.4263 27.0922 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 61 k 0.0922 31.2600 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 62 J 0.1705 28.2593 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 63 U -0.2623 39.6659 40.0666 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 64 j -1.4251 15.8337 52.7514 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 65 ( -1.1475 16.1927 52.4988 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 66 7 -0.0370 26.0249 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 67 § -0.2037 24.2025 51.7325 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 68 $ -1.1210 25.1103 42.9078 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 69 € -0.2000 29.1671 39.0477 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 70 / -1.1152 18.1261 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 71 C -1.4203 36.8247 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 72 * 0.2191 20.3491 20.7081 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 73 ” -1.3789 24.3204 19.1753 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 74 ? -1.1646 22.4172 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 75 { -1.2381 16.4520 52.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 76 } -2.4494 16.4520 52.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 77 , 29.1145 10.6099 19.1753 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 78 I -0.2369 20.3121 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 79 ° -1.2665 19.7242 20.6017 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 80 K -0.2057 45.8298 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 81 H -0.1349 43.1671 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 82 q 11.8833 27.6410 39.7770 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 83 & -1.3390 43.1671 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 84 ’ -1.0216 10.6099 19.1753 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 85 [ 0.1974 12.0363 50.5654 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 86 - 22.7438 16.1927 5.5828 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 87 Y 0.0312 41.3515 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 88 Q -1.1195 41.0922 49.6509 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 89 " -1.1267 22.4172 18.4090 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 90 ! -1.3006 9.4429 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 91 x 13.0502 27.8519 25.9251 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 92 ) -1.4540 16.1927 52.4988 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 93 = 13.1045 30.8412 13.7407 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 94 + 4.4012 30.4755 30.4755 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 95 X -0.1292 42.8775 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 96 » 12.9373 27.3515 25.9251 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 97 ' -1.0695 7.9169 18.4090 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 98 ¢ -0.1274 22.8247 49.6576 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 99 Z 0.0025 36.6765 38.8995 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 100 > 6.6877 30.8412 26.8329 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 101 ® -0.9644 39.9251 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 102 © -1.2839 39.9251 41.2336 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 103 ] 0.0087 12.0363 50.5654 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 104 é -0.9185 22.8247 40.8026 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 105 z 12.7045 23.7021 25.9251 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 106 _ 47.4724 30.1927 4.0083 -Times_New_Roman_Bold.ttf 17 d 27.6410 40.0666 107 ¥ 0.2649 31.5012 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 1 t 3.1852 17.6493 36.8247 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 2 h -0.0759 28.0484 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 3 a 11.8102 25.4180 28.2593 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 4 n 11.7372 28.0484 27.0922 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 5 P -0.0106 33.0339 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 6 o 11.8472 24.2510 28.2593 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 7 e 11.5646 22.8247 28.2593 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 8 : 11.9735 9.4429 28.2593 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 9 r 11.7209 22.3243 27.0922 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 10 l 0.4270 12.8814 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 11 i -0.8834 12.8814 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 12 1 -0.4696 19.9834 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 13 | -0.8423 4.0083 52.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 14 N -0.0121 40.4323 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 15 f -0.9298 22.9425 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 16 g 12.0942 25.9251 39.7770 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 17 d -0.1517 27.6410 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 18 W -0.3839 58.0445 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 19 s 11.9496 18.1564 28.2593 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 20 c 11.7315 22.6832 28.2593 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 21 u 13.2104 28.0484 27.0922 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 22 3 -0.2025 25.1588 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 23 ~ 18.4369 30.9591 9.1836 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 24 # -0.1001 26.6848 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 25 O -2.0334 40.8329 42.4007 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 26 ` -1.3593 12.5434 9.4429 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 27 @ -1.2606 51.0839 51.9917 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 28 F -0.3378 32.2675 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 29 S -1.3405 26.9744 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 30 p 11.8452 27.6410 39.7770 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 31 “ -0.8306 24.3204 19.1753 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 32 % 0.0931 49.9821 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 33 £ -0.1756 26.8329 40.2147 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 34 . 30.5249 9.4429 9.4429 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 35 2 0.0042 25.1588 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 36 5 0.0043 24.8995 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 37 m 11.9713 43.2155 27.0922 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 38 V -0.1480 43.2782 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 39 6 -0.0796 24.8995 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 40 w 12.7730 41.7521 27.0922 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 41 T 0.4027 35.1088 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 42 M 0.2810 52.8692 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 43 G -1.1689 42.5185 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 44 b 0.4405 27.6410 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 45 9 0.1017 24.8995 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 46 ; 11.6960 10.6099 36.8247 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 47 D 0.2893 38.4988 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 48 L -0.3642 35.4792 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 49 y 12.7505 29.1671 38.6099 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 50 ‘ -1.2620 10.6099 19.1753 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 51 \ -1.0782 16.3341 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 52 R -0.0845 41.3515 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 53 < 6.2438 30.8412 26.8329 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 54 4 0.1389 24.8995 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 55 8 -0.3371 24.8995 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 56 0 -0.0617 25.3999 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 57 A -0.6654 42.0000 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 58 E -0.1394 35.1020 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 59 B -0.0269 35.7687 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 60 v 13.0344 29.4263 27.0922 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 61 k 0.1611 31.2600 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 62 J 0.3031 28.2593 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 63 U -0.0640 39.6659 40.0666 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 64 j -1.3670 15.8337 52.7514 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 65 ( -0.9927 16.1927 52.4988 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 66 7 0.1855 26.0249 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 67 § 0.1455 24.2025 51.7325 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 68 $ -1.4545 25.1103 42.9078 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 69 € -0.2650 29.1671 39.0477 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 70 / -1.0350 18.1261 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 71 C -1.1358 36.8247 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 72 * 0.1820 20.3491 20.7081 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 73 ” -1.4645 24.3204 19.1753 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 74 ? -1.2977 22.4172 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 75 { -1.2944 16.4520 52.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 76 } -1.7762 16.4520 52.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 77 , 29.6959 10.6099 19.1753 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 78 I 0.1039 20.3121 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 79 ° -1.3376 19.7242 20.6017 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 80 K -0.2373 45.8298 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 81 H 0.0502 43.1671 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 82 q 11.4286 27.6410 39.7770 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 83 & -1.1713 43.1671 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 84 ’ -0.9596 10.6099 19.1753 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 85 [ 0.1236 12.0363 50.5654 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 86 - 22.6880 16.1927 5.5828 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 87 Y 0.2634 41.3515 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 88 Q -1.4672 41.0922 49.6509 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 89 " -0.6886 22.4172 18.4090 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 90 ! -1.3834 9.4429 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 91 x 13.1709 27.8519 25.9251 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 92 ) -0.8193 16.1927 52.4988 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 93 = 13.2515 30.8412 13.7407 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 94 + 4.1538 30.4755 30.4755 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 95 X 0.3191 42.8775 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 96 » 13.1833 27.3515 25.9251 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 97 ' -0.9969 7.9169 18.4090 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 98 ¢ -0.2714 22.8247 49.6576 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 99 Z -0.1077 36.6765 38.8995 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 100 > 6.2662 30.8412 26.8329 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 101 ® -1.1599 39.9251 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 102 © -1.1463 39.9251 41.2336 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 103 ] -0.0505 12.0363 50.5654 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 104 é -1.2398 22.8247 40.8026 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 105 z 13.2276 23.7021 25.9251 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 106 _ 47.1231 30.1927 4.0083 -Times_New_Roman_Bold.ttf 18 W 58.0445 40.0666 107 ¥ -0.0780 31.5012 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 1 t -8.3862 17.6493 36.8247 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 2 h -11.7555 28.0484 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 3 a -0.1639 25.4180 28.2593 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 4 n -0.1720 28.0484 27.0922 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 5 P -11.6314 33.0339 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 6 o -0.2105 24.2510 28.2593 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 7 e -0.0889 22.8247 28.2593 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 8 : 0.0870 9.4429 28.2593 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 9 r -0.3369 22.3243 27.0922 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 10 l -11.6757 12.8814 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 11 i -13.0114 12.8814 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 12 1 -11.9503 19.9834 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 13 | -13.2279 4.0083 52.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 14 N -11.8146 40.4323 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 15 f -12.8082 22.9425 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 16 g 0.1316 25.9251 39.7770 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 17 d -11.8929 27.6410 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 18 W -11.8606 58.0445 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 19 s 0.1720 18.1564 28.2593 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 20 c 0.1389 22.6832 28.2593 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 21 u 1.2189 28.0484 27.0922 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 22 3 -11.9983 25.1588 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 23 ~ 7.1992 30.9591 9.1836 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 24 # -11.7521 26.6848 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 25 O -14.3486 40.8329 42.4007 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 26 ` -12.6390 12.5434 9.4429 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 27 @ -12.8633 51.0839 51.9917 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 28 F -11.7943 32.2675 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 29 S -13.1905 26.9744 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 30 p -0.1629 27.6410 39.7770 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 31 “ -12.8355 24.3204 19.1753 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 32 % -12.0814 49.9821 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 33 £ -11.7410 26.8329 40.2147 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 34 . 18.8476 9.4429 9.4429 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 35 2 -11.7410 25.1588 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 36 5 -11.7775 24.8995 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 37 m 0.0033 43.2155 27.0922 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 38 V -11.8073 43.2782 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 39 6 -12.0382 24.8995 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 40 w 1.1416 41.7521 27.0922 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 41 T -12.1090 35.1088 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 42 M -12.0417 52.8692 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 43 G -12.8082 42.5185 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 44 b -12.0688 27.6410 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 45 9 -11.9018 24.8995 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 46 ; 0.1230 10.6099 36.8247 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 47 D -11.9818 38.4988 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 48 L -11.7443 35.4792 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 49 y 0.8283 29.1671 38.6099 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 50 ‘ -12.9729 10.6099 19.1753 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 51 \ -12.9802 16.3341 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 52 R -11.8904 41.3515 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 53 < -5.0922 30.8412 26.8329 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 54 4 -11.9217 24.8995 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 55 8 -11.7806 24.8995 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 56 0 -11.9997 25.3999 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 57 A -13.0335 42.0000 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 58 E -11.9586 35.1020 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 59 B -11.8625 35.7687 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 60 v 1.2204 29.4263 27.0922 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 61 k -11.7822 31.2600 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 62 J -11.8625 28.2593 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 63 U -11.9404 39.6659 40.0666 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 64 j -13.0966 15.8337 52.7514 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 65 ( -12.9777 16.1927 52.4988 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 66 7 -11.9289 26.0249 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 67 § -11.7868 24.2025 51.7325 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 68 $ -12.7491 25.1103 42.9078 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 69 € -12.0477 29.1671 39.0477 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 70 / -12.8927 18.1261 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 71 C -12.7630 36.8247 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 72 * -11.5012 20.3491 20.7081 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 73 ” -13.1017 24.3204 19.1753 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 74 ? -13.2261 22.4172 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 75 { -13.2895 16.4520 52.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 76 } -14.2499 16.4520 52.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 77 , 17.4715 10.6099 19.1753 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 78 I -11.8058 20.3121 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 79 ° -12.9004 19.7242 20.6017 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 80 K -11.9799 45.8298 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 81 H -11.8904 43.1671 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 82 q 0.0519 27.6410 39.7770 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 83 & -13.0142 43.1671 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 84 ’ -12.8427 10.6099 19.1753 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 85 [ -11.7703 12.0363 50.5654 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 86 - 10.7721 16.1927 5.5828 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 87 Y -11.9115 41.3515 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 88 Q -13.0499 41.0922 49.6509 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 89 " -13.3996 22.4172 18.4090 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 90 ! -13.0204 9.4429 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 91 x 1.2222 27.8519 25.9251 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 92 ) -13.1503 16.1927 52.4988 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 93 = 1.2189 30.8412 13.7407 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 94 + -7.4362 30.4755 30.4755 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 95 X -11.6799 42.8775 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 96 » 1.2041 27.3515 25.9251 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 97 ' -12.7822 7.9169 18.4090 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 98 ¢ -11.6890 22.8247 49.6576 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 99 Z -11.8831 36.6765 38.8995 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 100 > -5.3513 30.8412 26.8329 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 101 ® -12.9431 39.9251 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 102 © -13.2208 39.9251 41.2336 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 103 ] -11.7794 12.0363 50.5654 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 104 é -12.6265 22.8247 40.8026 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 105 z 1.3224 23.7021 25.9251 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 106 _ 35.7376 30.1927 4.0083 -Times_New_Roman_Bold.ttf 19 s 18.1564 28.2593 107 ¥ -11.7151 31.5012 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 1 t -8.5342 17.6493 36.8247 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 2 h -11.7646 28.0484 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 3 a 0.1168 25.4180 28.2593 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 4 n 0.3531 28.0484 27.0922 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 5 P -11.8040 33.0339 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 6 o -0.1018 24.2510 28.2593 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 7 e -0.1629 22.8247 28.2593 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 8 : 0.3527 9.4429 28.2593 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 9 r 0.3834 22.3243 27.0922 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 10 l -12.0250 12.8814 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 11 i -12.8913 12.8814 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 12 1 -11.7004 19.9834 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 13 | -13.1074 4.0083 52.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 14 N -11.7721 40.4323 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 15 f -13.1463 22.9425 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 16 g 0.0000 25.9251 39.7770 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 17 d -11.9274 27.6410 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 18 W -11.9793 58.0445 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 19 s -0.2100 18.1564 28.2593 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 20 c -0.2975 22.6832 28.2593 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 21 u 1.1704 28.0484 27.0922 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 22 3 -11.8699 25.1588 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 23 ~ 6.8076 30.9591 9.1836 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 24 # -11.8092 26.6848 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 25 O -14.3375 40.8329 42.4007 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 26 ` -12.7737 12.5434 9.4429 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 27 @ -12.8024 51.0839 51.9917 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 28 F -11.9865 32.2675 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 29 S -13.0172 26.9744 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 30 p -0.0033 27.6410 39.7770 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 31 “ -13.3073 24.3204 19.1753 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 32 % -11.8666 49.9821 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 33 £ -11.7940 26.8329 40.2147 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 34 . 18.7242 9.4429 9.4429 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 35 2 -11.8147 25.1588 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 36 5 -11.7228 24.8995 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 37 m 0.1614 43.2155 27.0922 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 38 V -11.8889 43.2782 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 39 6 -11.8147 24.8995 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 40 w 1.2306 41.7521 27.0922 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 41 T -11.6709 35.1088 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 42 M -11.7612 52.8692 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 43 G -12.8082 42.5185 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 44 b -11.8188 27.6410 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 45 9 -11.8632 24.8995 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 46 ; -0.1407 10.6099 36.8247 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 47 D -11.8212 38.4988 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 48 L -11.8106 35.4792 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 49 y 1.0690 29.1671 38.6099 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 50 ‘ -12.8873 10.6099 19.1753 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 51 \ -12.9652 16.3341 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 52 R -11.7275 41.3515 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 53 < -5.0495 30.8412 26.8329 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 54 4 -12.2072 24.8995 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 55 8 -12.0838 24.8995 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 56 0 -12.1607 25.3999 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 57 A -13.0156 42.0000 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 58 E -11.8371 35.1020 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 59 B -11.9999 35.7687 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 60 v 0.9860 29.4263 27.0922 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 61 k -12.0518 31.2600 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 62 J -11.7598 28.2593 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 63 U -11.5522 39.6659 40.0666 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 64 j -13.1118 15.8337 52.7514 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 65 ( -13.1746 16.1927 52.4988 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 66 7 -11.8876 26.0249 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 67 § -11.7464 24.2025 51.7325 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 68 $ -12.5990 25.1103 42.9078 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 69 € -11.9199 29.1671 39.0477 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 70 / -12.9373 18.1261 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 71 C -12.7937 36.8247 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 72 * -12.0215 20.3491 20.7081 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 73 ” -13.0593 24.3204 19.1753 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 74 ? -13.0243 22.4172 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 75 { -12.9225 16.4520 52.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 76 } -13.9549 16.4520 52.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 77 , 17.6638 10.6099 19.1753 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 78 I -11.8534 20.3121 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 79 ° -13.1315 19.7242 20.6017 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 80 K -11.9793 45.8298 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 81 H -11.6353 43.1671 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 82 q -0.2738 27.6410 39.7770 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 83 & -12.9777 43.1671 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 84 ’ -13.0705 10.6099 19.1753 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 85 [ -11.9183 12.0363 50.5654 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 86 - 10.7761 16.1927 5.5828 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 87 Y -11.8385 41.3515 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 88 Q -12.8979 41.0922 49.6509 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 89 " -12.8528 22.4172 18.4090 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 90 ! -12.9406 9.4429 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 91 x 1.2559 27.8519 25.9251 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 92 ) -12.7835 16.1927 52.4988 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 93 = 1.0244 30.8412 13.7407 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 94 + -7.2124 30.4755 30.4755 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 95 X -11.6756 42.8775 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 96 » 0.8917 27.3515 25.9251 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 97 ' -13.0147 7.9169 18.4090 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 98 ¢ -11.7688 22.8247 49.6576 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 99 Z -11.6386 36.6765 38.8995 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 100 > -5.2512 30.8412 26.8329 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 101 ® -13.2574 39.9251 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 102 © -13.0575 39.9251 41.2336 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 103 ] -11.4225 12.0363 50.5654 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 104 é -12.5006 22.8247 40.8026 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 105 z 1.3372 23.7021 25.9251 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 106 _ 35.8798 30.1927 4.0083 -Times_New_Roman_Bold.ttf 20 c 22.6832 28.2593 107 ¥ -11.7606 31.5012 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 1 t -10.0039 17.6493 36.8247 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 2 h -13.0945 28.0484 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 3 a -0.8301 25.4180 28.2593 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 4 n -1.1728 28.0484 27.0922 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 5 P -13.0262 33.0339 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 6 o -1.1276 24.2510 28.2593 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 7 e -1.1080 22.8247 28.2593 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 8 : -1.0931 9.4429 28.2593 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 9 r -1.3357 22.3243 27.0922 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 10 l -13.4054 12.8814 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 11 i -13.8791 12.8814 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 12 1 -12.9217 19.9834 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 13 | -14.4817 4.0083 52.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 14 N -12.8009 40.4323 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 15 f -14.2245 22.9425 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 16 g -1.3775 25.9251 39.7770 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 17 d -12.9037 27.6410 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 18 W -12.8394 58.0445 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 19 s -0.9589 18.1564 28.2593 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 20 c -1.3909 22.6832 28.2593 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 21 u -0.1422 28.0484 27.0922 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 22 3 -13.0779 25.1588 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 23 ~ 5.7074 30.9591 9.1836 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 24 # -13.1474 26.6848 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 25 O -15.2772 40.8329 42.4007 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 26 ` -14.0180 12.5434 9.4429 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 27 @ -13.9752 51.0839 51.9917 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 28 F -13.1046 32.2675 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 29 S -14.2721 26.9744 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 30 p -1.2295 27.6410 39.7770 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 31 “ -13.7968 24.3204 19.1753 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 32 % -13.0220 49.9821 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 33 £ -13.1686 26.8329 40.2147 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 34 . 17.5104 9.4429 9.4429 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 35 2 -13.0307 25.1588 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 36 5 -13.1151 24.8995 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 37 m -1.0042 43.2155 27.0922 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 38 V -13.0869 43.2782 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 39 6 -13.0279 24.8995 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 40 w 0.1806 41.7521 27.0922 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 41 T -13.1997 35.1088 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 42 M -13.1963 52.8692 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 43 G -14.0896 42.5185 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 44 b -12.7193 27.6410 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 45 9 -13.5151 24.8995 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 46 ; -1.1671 10.6099 36.8247 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 47 D -12.8855 38.4988 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 48 L -13.1943 35.4792 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 49 y -0.0058 29.1671 38.6099 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 50 ‘ -14.1471 10.6099 19.1753 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 51 \ -14.1875 16.3341 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 52 R -13.1445 41.3515 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 53 < -6.5111 30.8412 26.8329 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 54 4 -13.3695 24.8995 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 55 8 -13.2978 24.8995 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 56 0 -13.2023 25.3999 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 57 A -14.0986 42.0000 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 58 E -12.5894 35.1020 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 59 B -12.8673 35.7687 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 60 v -0.2757 29.4263 27.0922 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 61 k -13.0622 31.2600 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 62 J -13.1804 28.2593 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 63 U -13.1209 39.6659 40.0666 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 64 j -14.0155 15.8337 52.7514 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 65 ( -14.0507 16.1927 52.4988 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 66 7 -13.0223 26.0249 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 67 § -12.9842 24.2025 51.7325 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 68 $ -13.8660 25.1103 42.9078 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 69 € -12.8356 29.1671 39.0477 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 70 / -14.0238 18.1261 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 71 C -14.0616 36.8247 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 72 * -12.6505 20.3491 20.7081 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 73 ” -14.3115 24.3204 19.1753 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 74 ? -14.2967 22.4172 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 75 { -14.0265 16.4520 52.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 76 } -15.2192 16.4520 52.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 77 , 16.5202 10.6099 19.1753 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 78 I -12.9283 20.3121 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 79 ° -14.1857 19.7242 20.6017 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 80 K -12.9835 45.8298 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 81 H -12.9225 43.1671 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 82 q -1.2665 27.6410 39.7770 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 83 & -14.3192 43.1671 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 84 ’ -14.1693 10.6099 19.1753 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 85 [ -13.1089 12.0363 50.5654 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 86 - 9.7748 16.1927 5.5828 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 87 Y -12.8913 41.3515 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 88 Q -14.0453 41.0922 49.6509 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 89 " -14.0377 22.4172 18.4090 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 90 ! -14.0275 9.4429 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 91 x 0.0889 27.8519 25.9251 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 92 ) -14.0929 16.1927 52.4988 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 93 = 0.1561 30.8412 13.7407 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 94 + -8.3309 30.4755 30.4755 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 95 X -13.1137 42.8775 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 96 » -0.2051 27.3515 25.9251 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 97 ' -14.4004 7.9169 18.4090 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 98 ¢ -13.1132 22.8247 49.6576 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 99 Z -12.8913 36.6765 38.8995 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 100 > -6.2939 30.8412 26.8329 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 101 ® -14.5277 39.9251 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 102 © -14.0896 39.9251 41.2336 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 103 ] -12.9498 12.0363 50.5654 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 104 é -13.5961 22.8247 40.8026 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 105 z -0.0019 23.7021 25.9251 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 106 _ 34.7426 30.1927 4.0083 -Times_New_Roman_Bold.ttf 21 u 28.0484 27.0922 107 ¥ -13.1166 31.5012 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 1 t 3.4732 17.6493 36.8247 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 2 h 0.4403 28.0484 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 3 a 11.9852 25.4180 28.2593 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 4 n 11.7853 28.0484 27.0922 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 5 P 0.4311 33.0339 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 6 o 12.0425 24.2510 28.2593 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 7 e 12.1735 22.8247 28.2593 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 8 : 11.8757 9.4429 28.2593 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 9 r 12.0324 22.3243 27.0922 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 10 l 0.0371 12.8814 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 11 i -0.9358 12.8814 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 12 1 0.1110 19.9834 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 13 | -1.0174 4.0083 52.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 14 N 0.1481 40.4323 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 15 f -0.9449 22.9425 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 16 g 12.2644 25.9251 39.7770 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 17 d 0.3201 27.6410 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 18 W 0.1674 58.0445 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 19 s 11.9036 18.1564 28.2593 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 20 c 11.9184 22.6832 28.2593 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 21 u 13.0913 28.0484 27.0922 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 22 3 -0.0073 25.1588 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 23 ~ 19.0164 30.9591 9.1836 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 24 # 0.1130 26.6848 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 25 O -2.1580 40.8329 42.4007 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 26 ` -0.8091 12.5434 9.4429 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 27 @ -1.1093 51.0839 51.9917 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 28 F 0.1442 32.2675 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 29 S -1.1909 26.9744 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 30 p 11.9555 27.6410 39.7770 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 31 “ -1.0266 24.3204 19.1753 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 32 % 0.1422 49.9821 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 33 £ 0.0399 26.8329 40.2147 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 34 . 30.7608 9.4429 9.4429 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 35 2 -0.1407 25.1588 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 36 5 -0.1602 24.8995 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 37 m 12.2566 43.2155 27.0922 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 38 V 0.1909 43.2782 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 39 6 -0.0976 24.8995 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 40 w 13.1193 41.7521 27.0922 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 41 T 0.1548 35.1088 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 42 M 0.4032 52.8692 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 43 G -0.9910 42.5185 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 44 b 0.2443 27.6410 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 45 9 0.1149 24.8995 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 46 ; 12.2178 10.6099 36.8247 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 47 D 0.0684 38.4988 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 48 L 0.1336 35.4792 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 49 y 12.9081 29.1671 38.6099 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 50 ‘ -1.0766 10.6099 19.1753 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 51 \ -1.1005 16.3341 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 52 R -0.1142 41.3515 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 53 < 6.8316 30.8412 26.8329 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 54 4 0.1244 24.8995 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 55 8 -0.0922 24.8995 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 56 0 0.0918 25.3999 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 57 A -1.1971 42.0000 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 58 E -0.0518 35.1020 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 59 B -0.0478 35.7687 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 60 v 13.0006 29.4263 27.0922 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 61 k -0.2810 31.2600 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 62 J 0.3316 28.2593 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 63 U 0.1039 39.6659 40.0666 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 64 j -1.0410 15.8337 52.7514 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 65 ( -0.8042 16.1927 52.4988 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 66 7 0.1304 26.0249 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 67 § 0.0370 24.2025 51.7325 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 68 $ -0.7008 25.1103 42.9078 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 69 € 0.0352 29.1671 39.0477 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 70 / -1.3610 18.1261 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 71 C -1.0886 36.8247 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 72 * 0.2078 20.3491 20.7081 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 73 ” -1.1521 24.3204 19.1753 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 74 ? -0.8300 22.4172 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 75 { -2.2615 16.4520 52.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 76 } -0.9837 16.4520 52.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 77 , 29.5308 10.6099 19.1753 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 78 I 0.2976 20.3121 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 79 ° -1.0914 19.7242 20.6017 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 80 K -0.2179 45.8298 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 81 H 0.2436 43.1671 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 82 q 11.9943 27.6410 39.7770 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 83 & -0.9344 43.1671 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 84 ’ -1.0189 10.6099 19.1753 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 85 [ -0.1200 12.0363 50.5654 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 86 - 22.7588 16.1927 5.5828 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 87 Y 0.0665 41.3515 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 88 Q -1.1093 41.0922 49.6509 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 89 " -1.1463 22.4172 18.4090 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 90 ! -0.8891 9.4429 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 91 x 13.2966 27.8519 25.9251 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 92 ) -0.8767 16.1927 52.4988 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 93 = 12.6564 30.8412 13.7407 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 94 + 4.5638 30.4755 30.4755 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 95 X -0.1181 42.8775 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 96 » 12.8693 27.3515 25.9251 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 97 ' -1.1087 7.9169 18.4090 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 98 ¢ 0.0545 22.8247 49.6576 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 99 Z 0.1020 36.6765 38.8995 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 100 > 6.8984 30.8412 26.8329 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 101 ® -1.0131 39.9251 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 102 © -1.0930 39.9251 41.2336 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 103 ] 0.1333 12.0363 50.5654 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 104 é -0.4605 22.8247 40.8026 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 105 z 13.0442 23.7021 25.9251 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 106 _ 48.0145 30.1927 4.0083 -Times_New_Roman_Bold.ttf 22 3 25.1588 39.0477 107 ¥ 0.1852 31.5012 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 1 t -15.7464 17.6493 36.8247 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 2 h -18.9471 28.0484 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 3 a -7.2551 25.4180 28.2593 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 4 n -7.0163 28.0484 27.0922 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 5 P -19.0441 33.0339 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 6 o -7.0370 24.2510 28.2593 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 7 e -6.9260 22.8247 28.2593 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 8 : -6.8889 9.4429 28.2593 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 9 r -7.2271 22.3243 27.0922 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 10 l -18.6988 12.8814 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 11 i -20.1554 12.8814 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 12 1 -18.9539 19.9834 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 13 | -19.9776 4.0083 52.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 14 N -18.9677 40.4323 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 15 f -19.9003 22.9425 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 16 g -6.8462 25.9251 39.7770 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 17 d -18.7674 27.6410 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 18 W -19.1215 58.0445 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 19 s -6.7660 18.1564 28.2593 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 20 c -6.9376 22.6832 28.2593 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 21 u -5.7752 28.0484 27.0922 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 22 3 -19.3052 25.1588 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 23 ~ 0.1404 30.9591 9.1836 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 24 # -18.8995 26.6848 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 25 O -21.2912 40.8329 42.4007 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 26 ` -19.8716 12.5434 9.4429 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 27 @ -20.2333 51.0839 51.9917 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 28 F -18.6083 32.2675 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 29 S -20.0632 26.9744 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 30 p -6.8861 27.6410 39.7770 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 31 “ -19.9483 24.3204 19.1753 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 32 % -18.9645 49.9821 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 33 £ -19.1288 26.8329 40.2147 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 34 . 11.6666 9.4429 9.4429 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 35 2 -18.7040 25.1588 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 36 5 -18.9528 24.8995 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 37 m -7.2565 43.2155 27.0922 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 38 V -18.8668 43.2782 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 39 6 -19.4973 24.8995 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 40 w -5.7662 41.7521 27.0922 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 41 T -18.6092 35.1088 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 42 M -18.6016 52.8692 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 43 G -20.0944 42.5185 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 44 b -18.5693 27.6410 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 45 9 -18.7719 24.8995 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 46 ; -7.2550 10.6099 36.8247 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 47 D -18.6368 38.4988 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 48 L -18.8682 35.4792 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 49 y -5.9770 29.1671 38.6099 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 50 ‘ -20.1180 10.6099 19.1753 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 51 \ -20.2515 16.3341 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 52 R -18.6429 41.3515 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 53 < -12.3160 30.8412 26.8329 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 54 4 -18.9276 24.8995 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 55 8 -19.0193 24.8995 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 56 0 -19.2917 25.3999 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 57 A -20.1300 42.0000 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 58 E -18.9438 35.1020 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 59 B -18.5762 35.7687 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 60 v -5.6686 29.4263 27.0922 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 61 k -18.6847 31.2600 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 62 J -19.2028 28.2593 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 63 U -19.0518 39.6659 40.0666 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 64 j -19.9874 15.8337 52.7514 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 65 ( -20.0599 16.1927 52.4988 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 66 7 -18.7351 26.0249 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 67 § -18.8238 24.2025 51.7325 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 68 $ -20.1054 25.1103 42.9078 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 69 € -19.1168 29.1671 39.0477 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 70 / -19.8931 18.1261 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 71 C -19.8757 36.8247 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 72 * -18.9441 20.3491 20.7081 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 73 ” -20.0016 24.3204 19.1753 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 74 ? -20.1108 22.4172 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 75 { -21.3628 16.4520 52.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 76 } -20.0718 16.4520 52.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 77 , 10.6345 10.6099 19.1753 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 78 I -18.7870 20.3121 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 79 ° -19.9776 19.7242 20.6017 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 80 K -18.8553 45.8298 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 81 H -19.2571 43.1671 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 82 q -7.1440 27.6410 39.7770 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 83 & -19.8783 43.1671 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 84 ’ -20.0827 10.6099 19.1753 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 85 [ -18.5580 12.0363 50.5654 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 86 - 4.1070 16.1927 5.5828 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 87 Y -18.6535 41.3515 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 88 Q -19.9508 41.0922 49.6509 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 89 " -19.9867 22.4172 18.4090 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 90 ! -19.7908 9.4429 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 91 x -5.6738 27.8519 25.9251 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 92 ) -19.9816 16.1927 52.4988 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 93 = -5.5499 30.8412 13.7407 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 94 + -14.3973 30.4755 30.4755 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 95 X -18.9826 42.8775 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 96 » -5.8881 27.3515 25.9251 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 97 ' -20.2769 7.9169 18.4090 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 98 ¢ -18.8155 22.8247 49.6576 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 99 Z -18.9923 36.6765 38.8995 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 100 > -11.8827 30.8412 26.8329 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 101 ® -19.9003 39.9251 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 102 © -19.8162 39.9251 41.2336 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 103 ] -18.9438 12.0363 50.5654 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 104 é -19.5698 22.8247 40.8026 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 105 z -5.8362 23.7021 25.9251 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 106 _ 28.9952 30.1927 4.0083 -Times_New_Roman_Bold.ttf 23 ~ 30.9591 9.1836 107 ¥ -18.6031 31.5012 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 1 t 3.1424 17.6493 36.8247 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 2 h -0.0039 28.0484 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 3 a 11.7184 25.4180 28.2593 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 4 n 11.6520 28.0484 27.0922 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 5 P 0.1274 33.0339 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 6 o 11.8040 24.2510 28.2593 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 7 e 11.8904 22.8247 28.2593 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 8 : 11.7703 9.4429 28.2593 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 9 r 11.8846 22.3243 27.0922 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 10 l 0.0356 12.8814 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 11 i -0.9163 12.8814 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 12 1 -0.2400 19.9834 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 13 | -1.3942 4.0083 52.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 14 N 0.0918 40.4323 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 15 f -1.5052 22.9425 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 16 g 11.8015 25.9251 39.7770 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 17 d -0.2057 27.6410 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 18 W -0.0722 58.0445 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 19 s 11.7166 18.1564 28.2593 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 20 c 11.6814 22.6832 28.2593 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 21 u 12.7893 28.0484 27.0922 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 22 3 -0.2312 25.1588 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 23 ~ 18.8995 30.9591 9.1836 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 24 # 0.4070 26.6848 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 25 O -2.2808 40.8329 42.4007 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 26 ` -0.7165 12.5434 9.4429 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 27 @ -1.5211 51.0839 51.9917 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 28 F 0.2936 32.2675 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 29 S -0.9610 26.9744 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 30 p 11.9389 27.6410 39.7770 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 31 “ -1.2593 24.3204 19.1753 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 32 % -0.2846 49.9821 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 33 £ -0.2218 26.8329 40.2147 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 34 . 30.5406 9.4429 9.4429 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 35 2 -0.3495 25.1588 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 36 5 -0.0370 24.8995 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 37 m 11.8573 43.2155 27.0922 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 38 V 0.2344 43.2782 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 39 6 -0.1467 24.8995 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 40 w 13.1239 41.7521 27.0922 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 41 T 0.2796 35.1088 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 42 M -0.0033 52.8692 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 43 G -1.2222 42.5185 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 44 b -0.1168 27.6410 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 45 9 -0.0963 24.8995 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 46 ; 11.6838 10.6099 36.8247 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 47 D 0.0827 38.4988 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 48 L -0.1745 35.4792 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 49 y 13.1013 29.1671 38.6099 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 50 ‘ -0.9044 10.6099 19.1753 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 51 \ -1.1671 16.3341 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 52 R 0.2642 41.3515 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 53 < 6.8462 30.8412 26.8329 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 54 4 -0.0632 24.8995 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 55 8 -0.4130 24.8995 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 56 0 -0.1630 25.3999 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 57 A -1.1613 42.0000 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 58 E 0.1335 35.1020 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 59 B 0.2696 35.7687 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 60 v 12.8865 29.4263 27.0922 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 61 k -0.2186 31.2600 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 62 J 0.0461 28.2593 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 63 U -0.0370 39.6659 40.0666 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 64 j -1.2131 15.8337 52.7514 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 65 ( -1.2164 16.1927 52.4988 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 66 7 0.1610 26.0249 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 67 § 0.0685 24.2025 51.7325 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 68 $ -1.0397 25.1103 42.9078 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 69 € -0.5388 29.1671 39.0477 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 70 / -1.0042 18.1261 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 71 C -0.8972 36.8247 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 72 * 0.3921 20.3491 20.7081 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 73 ” -1.1646 24.3204 19.1753 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 74 ? -1.1671 22.4172 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 75 { -2.6795 16.4520 52.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 76 } -1.3020 16.4520 52.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 77 , 29.2561 10.6099 19.1753 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 78 I -0.1312 20.3121 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 79 ° -1.0340 19.7242 20.6017 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 80 K -0.0552 45.8298 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 81 H 0.0519 43.1671 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 82 q 11.9673 27.6410 39.7770 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 83 & -1.3466 43.1671 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 84 ’ -1.2156 10.6099 19.1753 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 85 [ -0.2220 12.0363 50.5654 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 86 - 22.5809 16.1927 5.5828 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 87 Y 0.2888 41.3515 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 88 Q -0.8134 41.0922 49.6509 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 89 " -1.2222 22.4172 18.4090 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 90 ! -1.0800 9.4429 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 91 x 12.9192 27.8519 25.9251 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 92 ) -1.4255 16.1927 52.4988 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 93 = 13.0560 30.8412 13.7407 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 94 + 4.1567 30.4755 30.4755 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 95 X 0.0446 42.8775 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 96 » 12.6337 27.3515 25.9251 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 97 ' -0.8729 7.9169 18.4090 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 98 ¢ -0.1009 22.8247 49.6576 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 99 Z 0.1802 36.6765 38.8995 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 100 > 6.5358 30.8412 26.8329 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 101 ® -0.9951 39.9251 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 102 © -1.1671 39.9251 41.2336 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 103 ] -0.1850 12.0363 50.5654 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 104 é -0.7894 22.8247 40.8026 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 105 z 13.1314 23.7021 25.9251 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 106 _ 47.7237 30.1927 4.0083 -Times_New_Roman_Bold.ttf 24 # 26.6848 38.8995 107 ¥ -0.0394 31.5012 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 1 t 5.9051 17.6493 36.8247 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 2 h 2.4178 28.0484 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 3 a 14.4121 25.4180 28.2593 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 4 n 14.2895 28.0484 27.0922 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 5 P 2.2119 33.0339 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 6 o 14.1102 24.2510 28.2593 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 7 e 13.9665 22.8247 28.2593 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 8 : 13.9160 9.4429 28.2593 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 9 r 13.8032 22.3243 27.0922 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 10 l 2.2289 12.8814 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 11 i 1.2944 12.8814 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 12 1 2.0140 19.9834 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 13 | 1.1637 4.0083 52.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 14 N 2.4191 40.4323 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 15 f 1.5495 22.9425 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 16 g 13.8339 25.9251 39.7770 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 17 d 2.3010 27.6410 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 18 W 2.3341 58.0445 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 19 s 14.2691 18.1564 28.2593 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 20 c 14.0737 22.6832 28.2593 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 21 u 15.3161 28.0484 27.0922 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 22 3 2.4095 25.1588 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 23 ~ 21.4056 30.9591 9.1836 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 24 # 2.2082 26.6848 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 25 O -0.0947 40.8329 42.4007 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 26 ` 1.6350 12.5434 9.4429 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 27 @ 1.2189 51.0839 51.9917 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 28 F 2.4191 32.2675 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 29 S 1.5611 26.9744 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 30 p 14.0920 27.6410 39.7770 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 31 “ 1.4501 24.3204 19.1753 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 32 % 2.0652 49.9821 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 33 £ 1.9145 26.8329 40.2147 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 34 . 32.8599 9.4429 9.4429 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 35 2 2.2393 25.1588 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 36 5 2.2568 24.8995 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 37 m 14.3596 43.2155 27.0922 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 38 V 2.1752 43.2782 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 39 6 2.0528 24.8995 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 40 w 15.5003 41.7521 27.0922 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 41 T 2.1567 35.1088 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 42 M 2.2452 52.8692 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 43 G 1.3296 42.5185 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 44 b 2.4821 27.6410 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 45 9 2.3471 24.8995 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 46 ; 14.2808 10.6099 36.8247 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 47 D 2.1711 38.4988 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 48 L 2.1121 35.4792 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 49 y 15.5008 29.1671 38.6099 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 50 ‘ 1.2036 10.6099 19.1753 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 51 \ 1.0916 16.3341 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 52 R 2.2904 41.3515 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 53 < 9.0001 30.8412 26.8329 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 54 4 2.3070 24.8995 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 55 8 1.9088 24.8995 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 56 0 2.0533 25.3999 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 57 A 1.4145 42.0000 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 58 E 2.4248 35.1020 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 59 B 2.2188 35.7687 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 60 v 15.4550 29.4263 27.0922 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 61 k 2.4749 31.2600 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 62 J 2.3352 28.2593 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 63 U 1.9061 39.6659 40.0666 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 64 j 0.9345 15.8337 52.7514 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 65 ( 1.2555 16.1927 52.4988 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 66 7 2.5417 26.0249 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 67 § 2.2220 24.2025 51.7325 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 68 $ 1.0666 25.1103 42.9078 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 69 € 2.3586 29.1671 39.0477 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 70 / 1.2214 18.1261 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 71 C 0.8216 36.8247 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 72 * 2.2683 20.3491 20.7081 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 73 ” 1.1286 24.3204 19.1753 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 74 ? 1.1181 22.4172 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 75 { 1.1973 16.4520 52.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 76 } 0.0491 16.4520 52.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 77 , 31.6510 10.6099 19.1753 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 78 I 2.2798 20.3121 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 79 ° 1.1588 19.7242 20.6017 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 80 K 2.7012 45.8298 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 81 H 2.1233 43.1671 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 82 q 13.7812 27.6410 39.7770 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 83 & 1.0824 43.1671 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 84 ’ 1.2012 10.6099 19.1753 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 85 [ 2.4618 12.0363 50.5654 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 86 - 25.3849 16.1927 5.5828 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 87 Y 2.0718 41.3515 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 88 Q 1.2512 41.0922 49.6509 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 89 " 1.0070 22.4172 18.4090 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 90 ! 1.2589 9.4429 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 91 x 15.6963 27.8519 25.9251 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 92 ) 1.2531 16.1927 52.4988 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 93 = 15.2585 30.8412 13.7407 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 94 + 6.4817 30.4755 30.4755 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 95 X 2.3371 42.8775 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 96 » 15.4416 27.3515 25.9251 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 97 ' 1.1243 7.9169 18.4090 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 98 ¢ 2.0751 22.8247 49.6576 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 99 Z 2.1179 36.6765 38.8995 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 100 > 8.9584 30.8412 26.8329 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 101 ® 1.2502 39.9251 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 102 © 1.1023 39.9251 41.2336 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 103 ] 2.3048 12.0363 50.5654 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 104 é 1.7163 22.8247 40.8026 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 105 z 15.2633 23.7021 25.9251 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 106 _ 50.2727 30.1927 4.0083 -Times_New_Roman_Bold.ttf 25 O 40.8329 42.4007 107 ¥ 2.4154 31.5012 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 1 t 4.0453 17.6493 36.8247 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 2 h 0.7001 28.0484 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 3 a 12.6478 25.4180 28.2593 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 4 n 12.9511 28.0484 27.0922 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 5 P 0.9678 33.0339 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 6 o 12.6272 24.2510 28.2593 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 7 e 12.8197 22.8247 28.2593 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 8 : 12.5944 9.4429 28.2593 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 9 r 12.6934 22.3243 27.0922 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 10 l 0.7459 12.8814 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 11 i -0.3905 12.8814 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 12 1 0.6480 19.9834 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 13 | -0.2986 4.0083 52.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 14 N 0.7175 40.4323 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 15 f -0.4688 22.9425 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 16 g 12.6775 25.9251 39.7770 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 17 d 0.7871 27.6410 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 18 W 0.9697 58.0445 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 19 s 12.7400 18.1564 28.2593 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 20 c 12.3442 22.6832 28.2593 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 21 u 14.1421 28.0484 27.0922 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 22 3 0.6462 25.1588 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 23 ~ 19.9456 30.9591 9.1836 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 24 # 0.8881 26.6848 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 25 O -1.3423 40.8329 42.4007 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 26 ` -0.0519 12.5434 9.4429 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 27 @ -0.3429 51.0839 51.9917 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 28 F 0.8371 32.2675 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 29 S -0.0363 26.9744 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 30 p 12.7266 27.6410 39.7770 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 31 “ -0.4284 24.3204 19.1753 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 32 % 0.8995 49.9821 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 33 £ 0.8557 26.8329 40.2147 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 34 . 31.5718 9.4429 9.4429 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 35 2 0.5717 25.1588 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 36 5 1.0879 24.8995 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 37 m 12.5056 43.2155 27.0922 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 38 V 0.9318 43.2782 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 39 6 0.5602 24.8995 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 40 w 13.9753 41.7521 27.0922 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 41 T 0.9351 35.1088 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 42 M 0.8314 52.8692 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 43 G -0.2747 42.5185 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 44 b 1.2253 27.6410 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 45 9 0.7198 24.8995 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 46 ; 12.7737 10.6099 36.8247 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 47 D 0.6493 38.4988 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 48 L 0.9293 35.4792 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 49 y 13.8889 29.1671 38.6099 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 50 ‘ -0.0363 10.6099 19.1753 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 51 \ -0.0585 16.3341 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 52 R 0.9366 41.3515 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 53 < 7.5983 30.8412 26.8329 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 54 4 0.9474 24.8995 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 55 8 0.9884 24.8995 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 56 0 0.5592 25.3999 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 57 A -0.0657 42.0000 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 58 E 0.9664 35.1020 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 59 B 1.0110 35.7687 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 60 v 13.8519 29.4263 27.0922 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 61 k 0.6555 31.2600 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 62 J 0.7905 28.2593 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 63 U 0.3965 39.6659 40.0666 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 64 j -0.0863 15.8337 52.7514 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 65 ( -0.3693 16.1927 52.4988 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 66 7 0.9015 26.0249 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 67 § 0.8236 24.2025 51.7325 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 68 $ -0.0661 25.1103 42.9078 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 69 € 0.6034 29.1671 39.0477 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 70 / -0.3654 18.1261 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 71 C -0.3414 36.8247 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 72 * 1.1543 20.3491 20.7081 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 73 ” -0.0782 24.3204 19.1753 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 74 ? -0.5519 22.4172 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 75 { -1.3735 16.4520 52.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 76 } -0.2079 16.4520 52.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 77 , 30.7281 10.6099 19.1753 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 78 I 0.9606 20.3121 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 79 ° -0.1579 19.7242 20.6017 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 80 K 0.9577 45.8298 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 81 H 0.6997 43.1671 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 82 q 12.6536 27.6410 39.7770 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 83 & -0.3443 43.1671 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 84 ’ -0.1431 10.6099 19.1753 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 85 [ 0.7632 12.0363 50.5654 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 86 - 23.5828 16.1927 5.5828 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 87 Y 1.0082 41.3515 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 88 Q -0.4476 41.0922 49.6509 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 89 " -0.4630 22.4172 18.4090 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 90 ! -0.1859 9.4429 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 91 x 14.1200 27.8519 25.9251 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 92 ) -0.3872 16.1927 52.4988 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 93 = 14.0666 30.8412 13.7407 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 94 + 5.3854 30.4755 30.4755 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 95 X 1.1480 42.8775 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 96 » 13.7688 27.3515 25.9251 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 97 ' -0.3087 7.9169 18.4090 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 98 ¢ 1.0009 22.8247 49.6576 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 99 Z 1.0016 36.6765 38.8995 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 100 > 7.6354 30.8412 26.8329 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 101 ® -0.2419 39.9251 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 102 © -0.2468 39.9251 41.2336 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 103 ] 0.9351 12.0363 50.5654 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 104 é 0.2318 22.8247 40.8026 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 105 z 13.3955 23.7021 25.9251 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 106 _ 48.5897 30.1927 4.0083 -Times_New_Roman_Bold.ttf 26 ` 12.5434 9.4429 107 ¥ 0.7886 31.5012 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 1 t 4.4380 17.6493 36.8247 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 2 h 1.1715 28.0484 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 3 a 13.0335 25.4180 28.2593 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 4 n 13.0098 28.0484 27.0922 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 5 P 1.0632 33.0339 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 6 o 13.1184 24.2510 28.2593 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 7 e 12.9003 22.8247 28.2593 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 8 : 13.2467 9.4429 28.2593 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 9 r 12.9541 22.3243 27.0922 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 10 l 0.9158 12.8814 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 11 i -0.1464 12.8814 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 12 1 1.0501 19.9834 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 13 | 0.1927 4.0083 52.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 14 N 1.0288 40.4323 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 15 f 0.2514 22.9425 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 16 g 13.1682 25.9251 39.7770 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 17 d 1.0628 27.6410 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 18 W 1.2147 58.0445 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 19 s 13.2689 18.1564 28.2593 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 20 c 13.0243 22.6832 28.2593 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 21 u 13.9655 28.0484 27.0922 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 22 3 1.1002 25.1588 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 23 ~ 20.1866 30.9591 9.1836 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 24 # 0.9754 26.6848 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 25 O -0.8595 40.8329 42.4007 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 26 ` 0.4097 12.5434 9.4429 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 27 @ 0.1759 51.0839 51.9917 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 28 F 1.2847 32.2675 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 29 S -0.2663 26.9744 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 30 p 12.8637 27.6410 39.7770 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 31 “ 0.2138 24.3204 19.1753 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 32 % 0.8412 49.9821 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 33 £ 0.8293 26.8329 40.2147 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 34 . 31.8278 9.4429 9.4429 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 35 2 1.0515 25.1588 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 36 5 1.1243 24.8995 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 37 m 12.9547 43.2155 27.0922 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 38 V 1.3963 43.2782 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 39 6 1.0262 24.8995 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 40 w 13.9867 41.7521 27.0922 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 41 T 1.4336 35.1088 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 42 M 1.2088 52.8692 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 43 G -0.2571 42.5185 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 44 b 1.0177 27.6410 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 45 9 1.2453 24.8995 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 46 ; 12.8566 10.6099 36.8247 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 47 D 1.3583 38.4988 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 48 L 1.0249 35.4792 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 49 y 14.1044 29.1671 38.6099 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 50 ‘ -0.0418 10.6099 19.1753 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 51 \ 0.0427 16.3341 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 52 R 0.9418 41.3515 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 53 < 7.8854 30.8412 26.8329 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 54 4 0.9133 24.8995 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 55 8 0.7542 24.8995 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 56 0 1.1463 25.3999 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 57 A -0.1763 42.0000 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 58 E 1.1373 35.1020 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 59 B 1.0394 35.7687 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 60 v 14.1174 29.4263 27.0922 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 61 k 1.3053 31.2600 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 62 J 1.2954 28.2593 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 63 U 1.2150 39.6659 40.0666 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 64 j -0.1259 15.8337 52.7514 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 65 ( -0.2532 16.1927 52.4988 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 66 7 0.8696 26.0249 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 67 § 0.9837 24.2025 51.7325 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 68 $ -0.2532 25.1103 42.9078 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 69 € 0.9935 29.1671 39.0477 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 70 / 0.0773 18.1261 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 71 C 0.0009 36.8247 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 72 * 1.3694 20.3491 20.7081 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 73 ” 0.0019 24.3204 19.1753 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 74 ? 0.1009 22.4172 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 75 { -1.0358 16.4520 52.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 76 } -0.1614 16.4520 52.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 77 , 30.6059 10.6099 19.1753 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 78 I 1.1268 20.3121 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 79 ° -0.0864 19.7242 20.6017 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 80 K 1.0840 45.8298 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 81 H 0.9864 43.1671 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 82 q 12.4984 27.6410 39.7770 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 83 & 0.0437 43.1671 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 84 ’ 0.1301 10.6099 19.1753 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 85 [ 1.2449 12.0363 50.5654 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 86 - 23.7922 16.1927 5.5828 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 87 Y 0.9533 41.3515 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 88 Q 0.1595 41.0922 49.6509 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 89 " -0.3755 22.4172 18.4090 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 90 ! 0.1336 9.4429 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 91 x 13.9694 27.8519 25.9251 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 92 ) 0.0246 16.1927 52.4988 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 93 = 14.1154 30.8412 13.7407 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 94 + 5.8864 30.4755 30.4755 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 95 X 1.4245 42.8775 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 96 » 14.1582 27.3515 25.9251 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 97 ' -0.1811 7.9169 18.4090 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 98 ¢ 1.1608 22.8247 49.6576 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 99 Z 0.8989 36.6765 38.8995 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 100 > 7.9759 30.8412 26.8329 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 101 ® -0.0073 39.9251 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 102 © -0.1034 39.9251 41.2336 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 103 ] 1.4377 12.0363 50.5654 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 104 é 0.6011 22.8247 40.8026 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 105 z 14.4392 23.7021 25.9251 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 106 _ 49.1147 30.1927 4.0083 -Times_New_Roman_Bold.ttf 27 @ 51.0839 51.9917 107 ¥ 0.9008 31.5012 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 1 t 3.2808 17.6493 36.8247 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 2 h 0.4252 28.0484 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 3 a 11.8904 25.4180 28.2593 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 4 n 11.7555 28.0484 27.0922 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 5 P -0.1807 33.0339 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 6 o 12.0515 24.2510 28.2593 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 7 e 11.6411 22.8247 28.2593 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 8 : 11.9980 9.4429 28.2593 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 9 r 11.5801 22.3243 27.0922 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 10 l 0.0389 12.8814 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 11 i -1.0042 12.8814 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 12 1 -0.5182 19.9834 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 13 | -1.1613 4.0083 52.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 14 N 0.2220 40.4323 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 15 f -1.0321 22.9425 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 16 g 11.9480 25.9251 39.7770 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 17 d -0.0245 27.6410 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 18 W 0.0106 58.0445 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 19 s 12.0072 18.1564 28.2593 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 20 c 11.7029 22.6832 28.2593 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 21 u 13.1801 28.0484 27.0922 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 22 3 -0.3299 25.1588 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 23 ~ 18.8639 30.9591 9.1836 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 24 # -0.0181 26.6848 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 25 O -2.4379 40.8329 42.4007 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 26 ` -0.8217 12.5434 9.4429 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 27 @ -1.0782 51.0839 51.9917 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 28 F 0.0077 32.2675 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 29 S -1.2593 26.9744 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 30 p 11.7097 27.6410 39.7770 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 31 “ -1.1613 24.3204 19.1753 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 32 % -0.1858 49.9821 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 33 £ -0.1630 26.8329 40.2147 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 34 . 30.5924 9.4429 9.4429 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 35 2 -0.0430 25.1588 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 36 5 0.0107 24.8995 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 37 m 11.7449 43.2155 27.0922 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 38 V -0.0932 43.2782 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 39 6 -0.2265 24.8995 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 40 w 12.9286 41.7521 27.0922 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 41 T 0.2927 35.1088 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 42 M -0.1018 52.8692 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 43 G -1.1271 42.5185 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 44 b -0.0624 27.6410 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 45 9 0.1588 24.8995 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 46 ; 11.8573 10.6099 36.8247 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 47 D 0.0058 38.4988 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 48 L 0.0547 35.4792 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 49 y 12.9797 29.1671 38.6099 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 50 ‘ -1.4483 10.6099 19.1753 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 51 \ -1.0840 16.3341 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 52 R 0.1720 41.3515 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 53 < 6.2028 30.8412 26.8329 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 54 4 -0.0430 24.8995 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 55 8 0.0330 24.8995 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 56 0 0.0939 25.3999 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 57 A -1.0825 42.0000 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 58 E 0.0931 35.1020 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 59 B 0.4271 35.7687 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 60 v 12.7578 29.4263 27.0922 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 61 k -0.0485 31.2600 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 62 J -0.1687 28.2593 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 63 U 0.0591 39.6659 40.0666 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 64 j -1.0709 15.8337 52.7514 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 65 ( -0.9570 16.1927 52.4988 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 66 7 -0.1183 26.0249 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 67 § -0.3481 24.2025 51.7325 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 68 $ -1.2914 25.1103 42.9078 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 69 € 0.0642 29.1671 39.0477 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 70 / -1.2041 18.1261 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 71 C -1.0494 36.8247 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 72 * 0.0855 20.3491 20.7081 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 73 ” -1.3761 24.3204 19.1753 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 74 ? -1.1710 22.4172 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 75 { -1.2117 16.4520 52.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 76 } -2.3826 16.4520 52.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 77 , 29.4283 10.6099 19.1753 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 78 I 0.0897 20.3121 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 79 ° -1.1478 19.7242 20.6017 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 80 K 0.0479 45.8298 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 81 H 0.2147 43.1671 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 82 q 11.7430 27.6410 39.7770 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 83 & -0.9941 43.1671 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 84 ’ -1.1575 10.6099 19.1753 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 85 [ 0.0812 12.0363 50.5654 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 86 - 22.6516 16.1927 5.5828 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 87 Y 0.0370 41.3515 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 88 Q -1.4794 41.0922 49.6509 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 89 " -1.0070 22.4172 18.4090 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 90 ! -1.3209 9.4429 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 91 x 12.6947 27.8519 25.9251 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 92 ) -1.3059 16.1927 52.4988 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 93 = 12.8456 30.8412 13.7407 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 94 + 4.4690 30.4755 30.4755 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 95 X -0.0164 42.8775 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 96 » 13.0095 27.3515 25.9251 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 97 ' -1.0248 7.9169 18.4090 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 98 ¢ -0.1207 22.8247 49.6576 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 99 Z -0.2090 36.6765 38.8995 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 100 > 6.8112 30.8412 26.8329 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 101 ® -1.0306 39.9251 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 102 © -1.2262 39.9251 41.2336 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 103 ] -0.0870 12.0363 50.5654 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 104 é -0.7379 22.8247 40.8026 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 105 z 13.2435 23.7021 25.9251 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 106 _ 47.7640 30.1927 4.0083 -Times_New_Roman_Bold.ttf 28 F 32.2675 38.8995 107 ¥ 0.0625 31.5012 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 1 t 4.2029 17.6493 36.8247 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 2 h 1.3020 28.0484 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 3 a 13.1042 25.4180 28.2593 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 4 n 13.1133 28.0484 27.0922 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 5 P 0.9523 33.0339 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 6 o 12.6708 24.2510 28.2593 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 7 e 12.9725 22.8247 28.2593 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 8 : 13.0065 9.4429 28.2593 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 9 r 13.1594 22.3243 27.0922 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 10 l 1.3324 12.8814 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 11 i 0.2484 12.8814 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 12 1 1.3316 19.9834 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 13 | 0.2641 4.0083 52.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 14 N 1.1373 40.4323 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 15 f -0.0167 22.9425 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 16 g 12.6841 25.9251 39.7770 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 17 d 1.2593 27.6410 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 18 W 1.0786 58.0445 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 19 s 12.9373 18.1564 28.2593 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 20 c 13.1017 22.6832 28.2593 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 21 u 14.3543 28.0484 27.0922 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 22 3 1.2000 25.1588 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 23 ~ 19.8043 30.9591 9.1836 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 24 # 1.0489 26.6848 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 25 O -1.1964 40.8329 42.4007 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 26 ` 0.2007 12.5434 9.4429 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 27 @ -0.0106 51.0839 51.9917 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 28 F 1.4322 32.2675 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 29 S -0.1556 26.9744 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 30 p 13.0575 27.6410 39.7770 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 31 “ 0.3479 24.3204 19.1753 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 32 % 1.2409 49.9821 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 33 £ 1.3168 26.8329 40.2147 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 34 . 31.6279 9.4429 9.4429 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 35 2 0.8930 25.1588 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 36 5 1.0912 24.8995 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 37 m 12.9652 43.2155 27.0922 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 38 V 1.0157 43.2782 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 39 6 0.9300 24.8995 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 40 w 14.3725 41.7521 27.0922 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 41 T 0.6976 35.1088 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 42 M 1.0099 52.8692 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 43 G -0.2551 42.5185 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 44 b 0.9484 27.6410 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 45 9 0.9464 24.8995 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 46 ; 12.9446 10.6099 36.8247 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 47 D 1.0868 38.4988 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 48 L 1.0009 35.4792 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 49 y 13.9670 29.1671 38.6099 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 50 ‘ -0.1572 10.6099 19.1753 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 51 \ -0.0798 16.3341 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 52 R 0.9969 41.3515 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 53 < 7.8581 30.8412 26.8329 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 54 4 0.9790 24.8995 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 55 8 0.9391 24.8995 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 56 0 0.8042 25.3999 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 57 A -0.1778 42.0000 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 58 E 1.4779 35.1020 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 59 B 1.2651 35.7687 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 60 v 13.9967 29.4263 27.0922 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 61 k 1.2961 31.2600 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 62 J 1.2410 28.2593 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 63 U 1.3703 39.6659 40.0666 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 64 j 0.1720 15.8337 52.7514 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 65 ( -0.1701 16.1927 52.4988 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 66 7 1.0099 26.0249 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 67 § 1.0502 24.2025 51.7325 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 68 $ 0.0318 25.1103 42.9078 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 69 € 0.8249 29.1671 39.0477 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 70 / -0.2057 18.1261 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 71 C 0.3109 36.8247 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 72 * 1.7441 20.3491 20.7081 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 73 ” 0.0537 24.3204 19.1753 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 74 ? -0.1759 22.4172 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 75 { -0.2196 16.4520 52.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 76 } -1.3942 16.4520 52.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 77 , 30.4277 10.6099 19.1753 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 78 I 1.2170 20.3121 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 79 ° -0.1346 19.7242 20.6017 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 80 K 1.0953 45.8298 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 81 H 1.2647 43.1671 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 82 q 13.0396 27.6410 39.7770 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 83 & -0.0922 43.1671 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 84 ’ 0.1316 10.6099 19.1753 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 85 [ 1.2530 12.0363 50.5654 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 86 - 24.2164 16.1927 5.5828 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 87 Y 1.0455 41.3515 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 88 Q 0.0525 41.0922 49.6509 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 89 " 0.2950 22.4172 18.4090 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 90 ! -0.0039 9.4429 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 91 x 14.1299 27.8519 25.9251 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 92 ) -0.1364 16.1927 52.4988 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 93 = 14.1785 30.8412 13.7407 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 94 + 5.4584 30.4755 30.4755 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 95 X 1.1743 42.8775 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 96 » 13.9771 27.3515 25.9251 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 97 ' -0.0831 7.9169 18.4090 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 98 ¢ 1.4650 22.8247 49.6576 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 99 Z 1.2599 36.6765 38.8995 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 100 > 7.8484 30.8412 26.8329 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 101 ® 0.1405 39.9251 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 102 © -0.2238 39.9251 41.2336 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 103 ] 1.1152 12.0363 50.5654 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 104 é 0.1945 22.8247 40.8026 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 105 z 14.1951 23.7021 25.9251 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 106 _ 48.9118 30.1927 4.0083 -Times_New_Roman_Bold.ttf 29 S 26.9744 41.2336 107 ¥ 0.9124 31.5012 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 1 t -8.6355 17.6493 36.8247 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 2 h -11.8871 28.0484 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 3 a -0.1201 25.4180 28.2593 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 4 n -0.2292 28.0484 27.0922 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 5 P -11.9241 33.0339 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 6 o -0.2394 24.2510 28.2593 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 7 e 0.0000 22.8247 28.2593 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 8 : -0.1512 9.4429 28.2593 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 9 r -0.0058 22.3243 27.0922 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 10 l -11.9735 12.8814 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 11 i -13.1402 12.8814 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 12 1 -11.6627 19.9834 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 13 | -12.7168 4.0083 52.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 14 N -11.8346 40.4323 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 15 f -13.1872 22.9425 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 16 g -0.2090 25.9251 39.7770 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 17 d -11.7866 27.6410 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 18 W -11.7223 58.0445 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 19 s 0.0369 18.1564 28.2593 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 20 c -0.0683 22.6832 28.2593 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 21 u 1.1613 28.0484 27.0922 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 22 3 -11.9151 25.1588 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 23 ~ 7.0033 30.9591 9.1836 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 24 # -11.7109 26.6848 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 25 O -14.0521 40.8329 42.4007 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 26 ` -12.6377 12.5434 9.4429 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 27 @ -13.2613 51.0839 51.9917 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 28 F -11.9495 32.2675 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 29 S -13.0162 26.9744 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 30 p -0.1235 27.6410 39.7770 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 31 “ -13.2073 24.3204 19.1753 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 32 % -12.1760 49.9821 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 33 £ -11.8574 26.8329 40.2147 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 34 . 18.6444 9.4429 9.4429 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 35 2 -11.9094 25.1588 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 36 5 -11.9332 24.8995 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 37 m 0.2311 43.2155 27.0922 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 38 V -11.8269 43.2782 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 39 6 -11.7374 24.8995 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 40 w 1.1185 41.7521 27.0922 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 41 T -11.8458 35.1088 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 42 M -11.6386 52.8692 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 43 G -13.1983 42.5185 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 44 b -11.7555 27.6410 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 45 9 -11.9521 24.8995 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 46 ; -0.0265 10.6099 36.8247 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 47 D -11.8558 38.4988 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 48 L -11.9260 35.4792 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 49 y 1.1598 29.1671 38.6099 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 50 ‘ -12.6914 10.6099 19.1753 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 51 \ -12.7505 16.3341 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 52 R -11.7555 41.3515 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 53 < -5.2940 30.8412 26.8329 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 54 4 -12.0828 24.8995 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 55 8 -12.0904 24.8995 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 56 0 -11.7359 25.3999 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 57 A -12.9835 42.0000 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 58 E -11.8871 35.1020 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 59 B -11.7616 35.7687 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 60 v 1.2933 29.4263 27.0922 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 61 k -11.6948 31.2600 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 62 J -11.8218 28.2593 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 63 U -11.9832 39.6659 40.0666 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 64 j -12.8322 15.8337 52.7514 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 65 ( -13.0295 16.1927 52.4988 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 66 7 -11.9884 26.0249 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 67 § -11.9242 24.2025 51.7325 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 68 $ -12.8840 25.1103 42.9078 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 69 € -11.7762 29.1671 39.0477 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 70 / -12.7078 18.1261 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 71 C -12.9058 36.8247 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 72 * -11.8020 20.3491 20.7081 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 73 ” -13.0632 24.3204 19.1753 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 74 ? -12.9556 22.4172 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 75 { -12.8057 16.4520 52.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 76 } -13.8051 16.4520 52.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 77 , 17.4389 10.6099 19.1753 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 78 I -11.6107 20.3121 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 79 ° -12.8676 19.7242 20.6017 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 80 K -11.6147 45.8298 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 81 H -11.7909 43.1671 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 82 q -0.1230 27.6410 39.7770 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 83 & -13.1078 43.1671 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 84 ’ -12.9777 10.6099 19.1753 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 85 [ -12.0591 12.0363 50.5654 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 86 - 10.9734 16.1927 5.5828 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 87 Y -11.7761 41.3515 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 88 Q -12.8764 41.0922 49.6509 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 89 " -12.9777 22.4172 18.4090 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 90 ! -13.0541 9.4429 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 91 x 1.2535 27.8519 25.9251 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 92 ) -13.2280 16.1927 52.4988 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 93 = 0.9763 30.8412 13.7407 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 94 + -7.3897 30.4755 30.4755 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 95 X -12.1090 42.8775 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 96 » 1.1747 27.3515 25.9251 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 97 ' -13.0095 7.9169 18.4090 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 98 ¢ -11.4003 22.8247 49.6576 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 99 Z -12.0203 36.6765 38.8995 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 100 > -5.2123 30.8412 26.8329 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 101 ® -12.9686 39.9251 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 102 © -12.8888 39.9251 41.2336 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 103 ] -11.8073 12.0363 50.5654 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 104 é -12.5121 22.8247 40.8026 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 105 z 1.2584 23.7021 25.9251 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 106 _ 36.0576 30.1927 4.0083 -Times_New_Roman_Bold.ttf 30 p 27.6410 39.7770 107 ¥ -11.9107 31.5012 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 1 t 4.5334 17.6493 36.8247 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 2 h 1.2131 28.0484 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 3 a 13.1978 25.4180 28.2593 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 4 n 12.8076 28.0484 27.0922 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 5 P 1.2530 33.0339 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 6 o 12.8542 24.2510 28.2593 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 7 e 13.0999 22.8247 28.2593 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 8 : 13.2334 9.4429 28.2593 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 9 r 13.0262 22.3243 27.0922 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 10 l 1.0580 12.8814 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 11 i 0.0922 12.8814 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 12 1 1.1078 19.9834 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 13 | 0.0019 4.0083 52.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 14 N 0.9526 40.4323 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 15 f -0.1600 22.9425 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 16 g 12.9283 25.9251 39.7770 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 17 d 1.0815 27.6410 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 18 W 0.7015 58.0445 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 19 s 12.9349 18.1564 28.2593 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 20 c 12.9052 22.6832 28.2593 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 21 u 14.2803 28.0484 27.0922 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 22 3 0.7178 25.1588 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 23 ~ 19.9460 30.9591 9.1836 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 24 # 1.3020 26.6848 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 25 O -1.4794 40.8329 42.4007 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 26 ` 0.2924 12.5434 9.4429 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 27 @ -0.0903 51.0839 51.9917 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 28 F 1.1695 32.2675 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 29 S -0.1201 26.9744 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 30 p 13.1594 27.6410 39.7770 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 31 “ -0.3882 24.3204 19.1753 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 32 % 0.8026 49.9821 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 33 £ 1.1553 26.8329 40.2147 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 34 . 31.8705 9.4429 9.4429 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 35 2 0.5792 25.1588 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 36 5 1.0488 24.8995 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 37 m 12.9077 43.2155 27.0922 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 38 V 1.0075 43.2782 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 39 6 0.9637 24.8995 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 40 w 14.1842 41.7521 27.0922 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 41 T 1.4221 35.1088 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 42 M 1.2037 52.8692 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 43 G -0.1389 42.5185 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 44 b 1.1243 27.6410 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 45 9 0.9246 24.8995 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 46 ; 12.8873 10.6099 36.8247 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 47 D 1.0782 38.4988 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 48 L 1.3405 35.4792 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 49 y 14.4132 29.1671 38.6099 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 50 ‘ -0.0947 10.6099 19.1753 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 51 \ 0.2979 16.3341 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 52 R 0.8529 41.3515 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 53 < 7.6698 30.8412 26.8329 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 54 4 1.1111 24.8995 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 55 8 1.1078 24.8995 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 56 0 0.8455 25.3999 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 57 A -0.0432 42.0000 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 58 E 1.1152 35.1020 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 59 B 1.1348 35.7687 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 60 v 14.0583 29.4263 27.0922 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 61 k 1.3390 31.2600 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 62 J 1.2708 28.2593 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 63 U 1.0709 39.6659 40.0666 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 64 j -0.0889 15.8337 52.7514 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 65 ( 0.0606 16.1927 52.4988 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 66 7 0.8547 26.0249 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 67 § 1.1241 24.2025 51.7325 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 68 $ -0.0370 25.1103 42.9078 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 69 € 0.8825 29.1671 39.0477 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 70 / -0.0831 18.1261 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 71 C -0.3406 36.8247 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 72 * 1.2242 20.3491 20.7081 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 73 ” -0.1316 24.3204 19.1753 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 74 ? -0.0058 22.4172 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 75 { -0.8158 16.4520 52.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 76 } -0.0033 16.4520 52.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 77 , 30.8308 10.6099 19.1753 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 78 I 1.2089 20.3121 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 79 ° 0.0889 19.7242 20.6017 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 80 K 1.1613 45.8298 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 81 H 1.3059 43.1671 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 82 q 12.9406 27.6410 39.7770 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 83 & -0.0000 43.1671 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 84 ’ -0.0725 10.6099 19.1753 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 85 [ 1.3981 12.0363 50.5654 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 86 - 24.0640 16.1927 5.5828 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 87 Y 1.0676 41.3515 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 88 Q -0.1701 41.0922 49.6509 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 89 " -0.0928 22.4172 18.4090 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 90 ! 0.0033 9.4429 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 91 x 14.0112 27.8519 25.9251 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 92 ) 0.1653 16.1927 52.4988 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 93 = 13.8936 30.8412 13.7407 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 94 + 5.7144 30.4755 30.4755 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 95 X 1.4631 42.8775 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 96 » 14.1693 27.3515 25.9251 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 97 ' -0.1222 7.9169 18.4090 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 98 ¢ 0.9951 22.8247 49.6576 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 99 Z 0.9903 36.6765 38.8995 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 100 > 7.5795 30.8412 26.8329 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 101 ® -0.0394 39.9251 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 102 © -0.0385 39.9251 41.2336 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 103 ] 1.0306 12.0363 50.5654 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 104 é 0.3138 22.8247 40.8026 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 105 z 14.2807 23.7021 25.9251 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 106 _ 48.9166 30.1927 4.0083 -Times_New_Roman_Bold.ttf 31 “ 24.3204 19.1753 107 ¥ 1.2041 31.5012 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 1 t 3.2877 17.6493 36.8247 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 2 h 0.4220 28.0484 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 3 a 12.2515 25.4180 28.2593 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 4 n 11.6325 28.0484 27.0922 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 5 P 0.3383 33.0339 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 6 o 12.0967 24.2510 28.2593 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 7 e 12.1543 22.8247 28.2593 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 8 : 11.7373 9.4429 28.2593 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 9 r 11.9492 22.3243 27.0922 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 10 l 0.0367 12.8814 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 11 i -0.8494 12.8814 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 12 1 -0.2032 19.9834 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 13 | -1.7939 4.0083 52.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 14 N 0.2558 40.4323 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 15 f -1.1415 22.9425 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 16 g 11.9910 25.9251 39.7770 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 17 d -0.1051 27.6410 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 18 W 0.2553 58.0445 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 19 s 11.8814 18.1564 28.2593 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 20 c 12.0185 22.6832 28.2593 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 21 u 13.3166 28.0484 27.0922 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 22 3 -0.5659 25.1588 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 23 ~ 19.3099 30.9591 9.1836 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 24 # 0.2145 26.6848 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 25 O -1.9342 40.8329 42.4007 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 26 ` -0.9180 12.5434 9.4429 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 27 @ -1.0690 51.0839 51.9917 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 28 F 0.0059 32.2675 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 29 S -1.2053 26.9744 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 30 p 11.9243 27.6410 39.7770 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 31 “ -1.3183 24.3204 19.1753 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 32 % -0.0404 49.9821 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 33 £ 0.3790 26.8329 40.2147 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 34 . 31.0794 9.4429 9.4429 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 35 2 0.3512 25.1588 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 36 5 0.3139 24.8995 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 37 m 12.0991 43.2155 27.0922 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 38 V 0.2784 43.2782 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 39 6 -0.2699 24.8995 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 40 w 13.1620 41.7521 27.0922 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 41 T 0.1251 35.1088 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 42 M -0.1468 52.8692 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 43 G -0.9863 42.5185 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 44 b 0.3429 27.6410 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 45 9 -0.1004 24.8995 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 46 ; 11.6518 10.6099 36.8247 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 47 D -0.2665 38.4988 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 48 L 0.0426 35.4792 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 49 y 13.1429 29.1671 38.6099 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 50 ‘ -1.1420 10.6099 19.1753 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 51 \ -1.3581 16.3341 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 52 R -0.0253 41.3515 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 53 < 6.9800 30.8412 26.8329 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 54 4 0.5716 24.8995 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 55 8 0.1701 24.8995 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 56 0 0.1215 25.3999 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 57 A -0.7418 42.0000 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 58 E 0.0262 35.1020 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 59 B 0.3659 35.7687 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 60 v 13.0909 29.4263 27.0922 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 61 k 0.2890 31.2600 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 62 J 0.3447 28.2593 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 63 U 0.2337 39.6659 40.0666 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 64 j -0.8897 15.8337 52.7514 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 65 ( -1.2907 16.1927 52.4988 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 66 7 0.4063 26.0249 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 67 § 0.0645 24.2025 51.7325 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 68 $ -0.9002 25.1103 42.9078 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 69 € -0.0322 29.1671 39.0477 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 70 / -1.0131 18.1261 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 71 C -1.3052 36.8247 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 72 * 0.1992 20.3491 20.7081 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 73 ” -0.8526 24.3204 19.1753 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 74 ? -0.8252 22.4172 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 75 { -2.6885 16.4520 52.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 76 } -0.8782 16.4520 52.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 77 , 29.6566 10.6099 19.1753 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 78 I 0.0505 20.3121 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 79 ° -1.2663 19.7242 20.6017 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 80 K 0.2494 45.8298 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 81 H -0.1406 43.1671 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 82 q 11.9842 27.6410 39.7770 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 83 & -1.0496 43.1671 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 84 ’ -1.3353 10.6099 19.1753 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 85 [ -0.3227 12.0363 50.5654 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 86 - 22.7186 16.1927 5.5828 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 87 Y 0.2534 41.3515 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 88 Q -0.6735 41.0922 49.6509 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 89 " -0.8060 22.4172 18.4090 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 90 ! -1.0055 9.4429 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 91 x 12.8131 27.8519 25.9251 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 92 ) -1.4672 16.1927 52.4988 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 93 = 12.8021 30.8412 13.7407 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 94 + 4.4880 30.4755 30.4755 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 95 X 0.2255 42.8775 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 96 » 13.4203 27.3515 25.9251 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 97 ' -0.9425 7.9169 18.4090 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 98 ¢ 0.1420 22.8247 49.6576 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 99 Z 0.1644 36.6765 38.8995 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 100 > 6.7671 30.8412 26.8329 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 101 ® -1.1833 39.9251 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 102 © -1.0428 39.9251 41.2336 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 103 ] 0.2817 12.0363 50.5654 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 104 é -0.7610 22.8247 40.8026 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 105 z 12.7525 23.7021 25.9251 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 106 _ 47.9252 30.1927 4.0083 -Times_New_Roman_Bold.ttf 32 % 49.9821 39.0477 107 ¥ 0.0915 31.5012 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 1 t 3.3876 17.6493 36.8247 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 2 h 0.3077 28.0484 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 3 a 11.9137 25.4180 28.2593 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 4 n 11.7777 28.0484 27.0922 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 5 P -0.0292 33.0339 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 6 o 11.6518 24.2510 28.2593 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 7 e 11.8099 22.8247 28.2593 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 8 : 11.8945 9.4429 28.2593 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 9 r 12.0929 22.3243 27.0922 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 10 l 0.0190 12.8814 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 11 i -0.9877 12.8814 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 12 1 0.0221 19.9834 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 13 | -1.1669 4.0083 52.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 14 N 0.3201 40.4323 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 15 f -1.1093 22.9425 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 16 g 11.9646 25.9251 39.7770 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 17 d -0.1627 27.6410 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 18 W 0.0371 58.0445 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 19 s 11.7820 18.1564 28.2593 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 20 c 11.7965 22.6832 28.2593 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 21 u 13.0484 28.0484 27.0922 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 22 3 0.2960 25.1588 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 23 ~ 19.0491 30.9591 9.1836 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 24 # 0.1837 26.6848 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 25 O -2.2287 40.8329 42.4007 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 26 ` -0.9456 12.5434 9.4429 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 27 @ -1.0487 51.0839 51.9917 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 28 F 0.1785 32.2675 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 29 S -0.9358 26.9744 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 30 p 11.8296 27.6410 39.7770 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 31 “ -0.9242 24.3204 19.1753 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 32 % -0.0908 49.9821 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 33 £ 0.1096 26.8329 40.2147 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 34 . 30.8632 9.4429 9.4429 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 35 2 0.2163 25.1588 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 36 5 0.0041 24.8995 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 37 m 12.3821 43.2155 27.0922 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 38 V 0.2443 43.2782 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 39 6 0.0446 24.8995 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 40 w 13.1628 41.7521 27.0922 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 41 T 0.2683 35.1088 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 42 M 0.3778 52.8692 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 43 G -0.9728 42.5185 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 44 b 0.1535 27.6410 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 45 9 -0.0000 24.8995 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 46 ; 11.8738 10.6099 36.8247 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 47 D 0.2678 38.4988 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 48 L 0.1035 35.4792 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 49 y 13.1225 29.1671 38.6099 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 50 ‘ -0.8100 10.6099 19.1753 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 51 \ -0.7676 16.3341 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 52 R 0.4442 41.3515 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 53 < 6.9117 30.8412 26.8329 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 54 4 -0.0410 24.8995 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 55 8 0.1105 24.8995 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 56 0 -0.1259 25.3999 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 57 A -1.1059 42.0000 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 58 E 0.4917 35.1020 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 59 B -0.1545 35.7687 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 60 v 12.9491 29.4263 27.0922 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 61 k 0.1554 31.2600 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 62 J 0.2141 28.2593 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 63 U 0.0266 39.6659 40.0666 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 64 j -1.1942 15.8337 52.7514 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 65 ( -1.1419 16.1927 52.4988 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 66 7 -0.1497 26.0249 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 67 § -0.0000 24.2025 51.7325 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 68 $ -1.0987 25.1103 42.9078 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 69 € -0.1734 29.1671 39.0477 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 70 / -0.7984 18.1261 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 71 C -1.2264 36.8247 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 72 * -0.0518 20.3491 20.7081 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 73 ” -1.1491 24.3204 19.1753 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 74 ? -0.9598 22.4172 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 75 { -2.3315 16.4520 52.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 76 } -0.9358 16.4520 52.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 77 , 29.6033 10.6099 19.1753 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 78 I 0.2755 20.3121 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 79 ° -1.0837 19.7242 20.6017 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 80 K 0.5973 45.8298 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 81 H 0.2370 43.1671 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 82 q 12.1866 27.6410 39.7770 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 83 & -0.9935 43.1671 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 84 ’ -1.1111 10.6099 19.1753 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 85 [ -0.2160 12.0363 50.5654 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 86 - 22.9453 16.1927 5.5828 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 87 Y 0.3139 41.3515 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 88 Q -1.0156 41.0922 49.6509 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 89 " -0.9746 22.4172 18.4090 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 90 ! -1.0262 9.4429 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 91 x 13.2071 27.8519 25.9251 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 92 ) -1.0295 16.1927 52.4988 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 93 = 12.8947 30.8412 13.7407 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 94 + 4.6567 30.4755 30.4755 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 95 X 0.4518 42.8775 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 96 » 13.2854 27.3515 25.9251 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 97 ' -0.9224 7.9169 18.4090 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 98 ¢ 0.2543 22.8247 49.6576 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 99 Z 0.2000 36.6765 38.8995 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 100 > 6.9099 30.8412 26.8329 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 101 ® -1.0911 39.9251 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 102 © -0.9833 39.9251 41.2336 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 103 ] 0.4960 12.0363 50.5654 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 104 é -0.6615 22.8247 40.8026 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 105 z 13.2072 23.7021 25.9251 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 106 _ 47.6158 30.1927 4.0083 -Times_New_Roman_Bold.ttf 33 £ 26.8329 40.2147 107 ¥ 0.0569 31.5012 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 1 t -27.3020 17.6493 36.8247 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 2 h -30.5464 28.0484 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 3 a -18.9299 25.4180 28.2593 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 4 n -18.5632 28.0484 27.0922 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 5 P -30.7471 33.0339 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 6 o -18.8164 24.2510 28.2593 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 7 e -18.8846 22.8247 28.2593 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 8 : -18.6586 9.4429 28.2593 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 9 r -18.6962 22.3243 27.0922 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 10 l -30.7511 12.8814 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 11 i -31.7907 12.8814 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 12 1 -30.8549 19.9834 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 13 | -31.7018 4.0083 52.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 14 N -30.6549 40.4323 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 15 f -31.8013 22.9425 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 16 g -18.6131 25.9251 39.7770 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 17 d -30.6270 27.6410 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 18 W -30.7496 58.0445 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 19 s -18.5574 18.1564 28.2593 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 20 c -18.6723 22.6832 28.2593 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 21 u -17.4124 28.0484 27.0922 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 22 3 -30.7799 25.1588 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 23 ~ -11.8261 30.9591 9.1836 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 24 # -30.5685 26.6848 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 25 O -32.8348 40.8329 42.4007 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 26 ` -31.4580 12.5434 9.4429 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 27 @ -31.9329 51.0839 51.9917 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 28 F -30.6237 32.2675 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 29 S -32.0367 26.9744 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 30 p -18.7127 27.6410 39.7770 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 31 “ -31.4972 24.3204 19.1753 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 32 % -30.7329 49.9821 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 33 £ -30.9453 26.8329 40.2147 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 34 . -0.0370 9.4429 9.4429 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 35 2 -30.6123 25.1588 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 36 5 -30.5718 24.8995 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 37 m -18.8986 43.2155 27.0922 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 38 V -30.7068 43.2782 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 39 6 -30.7594 24.8995 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 40 w -17.6864 41.7521 27.0922 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 41 T -30.5439 35.1088 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 42 M -30.6117 52.8692 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 43 G -31.7817 42.5185 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 44 b -30.6276 27.6410 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 45 9 -30.6876 24.8995 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 46 ; -18.8649 10.6099 36.8247 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 47 D -30.4887 38.4988 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 48 L -30.6237 35.4792 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 49 y -17.6493 29.1671 38.6099 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 50 ‘ -31.6706 10.6099 19.1753 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 51 \ -31.8278 16.3341 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 52 R -30.6574 41.3515 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 53 < -24.0196 30.8412 26.8329 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 54 4 -30.7718 24.8995 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 55 8 -30.4715 24.8995 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 56 0 -30.6556 25.3999 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 57 A -31.8778 42.0000 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 58 E -30.5300 35.1020 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 59 B -30.6237 35.7687 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 60 v -17.5787 29.4263 27.0922 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 61 k -30.5757 31.2600 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 62 J -30.5751 28.2593 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 63 U -30.7069 39.6659 40.0666 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 64 j -31.7076 15.8337 52.7514 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 65 ( -31.6312 16.1927 52.4988 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 66 7 -30.5040 26.0249 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 67 § -30.6815 24.2025 51.7325 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 68 $ -31.7849 25.1103 42.9078 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 69 € -30.8622 29.1671 39.0477 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 70 / -31.8307 18.1261 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 71 C -31.9594 36.8247 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 72 * -30.5237 20.3491 20.7081 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 73 ” -31.7998 24.3204 19.1753 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 74 ? -31.7628 22.4172 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 75 { -32.7910 16.4520 52.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 76 } -31.7570 16.4520 52.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 77 , -1.3890 10.6099 19.1753 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 78 I -30.6276 20.3121 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 79 ° -31.7907 19.7242 20.6017 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 80 K -30.5703 45.8298 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 81 H -30.8337 43.1671 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 82 q -19.0196 27.6410 39.7770 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 83 & -31.7907 43.1671 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 84 ’ -31.4995 10.6099 19.1753 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 85 [ -30.7006 12.0363 50.5654 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 86 - -7.8371 16.1927 5.5828 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 87 Y -30.8399 41.3515 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 88 Q -31.9685 41.0922 49.6509 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 89 " -31.7211 22.4172 18.4090 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 90 ! -31.7316 9.4429 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 91 x -17.6584 27.8519 25.9251 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 92 ) -31.9271 16.1927 52.4988 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 93 = -17.5637 30.8412 13.7407 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 94 + -26.2040 30.4755 30.4755 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 95 X -30.5333 42.8775 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 96 » -17.6791 27.3515 25.9251 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 97 ' -31.7043 7.9169 18.4090 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 98 ¢ -30.5472 22.8247 49.6576 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 99 Z -30.7140 36.6765 38.8995 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 100 > -24.0065 30.8412 26.8329 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 101 ® -31.9181 39.9251 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 102 © -32.0709 39.9251 41.2336 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 103 ] -30.8450 12.0363 50.5654 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 104 é -31.3079 22.8247 40.8026 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 105 z -17.6493 23.7021 25.9251 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 106 _ 17.0635 30.1927 4.0083 -Times_New_Roman_Bold.ttf 34 . 9.4429 9.4429 107 ¥ -30.7865 31.5012 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 1 t 3.4738 17.6493 36.8247 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 2 h 0.1939 28.0484 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 3 a 11.8295 25.4180 28.2593 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 4 n 11.9463 28.0484 27.0922 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 5 P -0.0133 33.0339 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 6 o 11.8666 24.2510 28.2593 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 7 e 12.1423 22.8247 28.2593 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 8 : 12.0410 9.4429 28.2593 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 9 r 11.7464 22.3243 27.0922 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 10 l 0.0708 12.8814 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 11 i -1.0214 12.8814 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 12 1 0.1988 19.9834 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 13 | -1.0189 4.0083 52.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 14 N 0.3302 40.4323 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 15 f -0.9194 22.9425 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 16 g 12.1328 25.9251 39.7770 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 17 d 0.4111 27.6410 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 18 W 0.2874 58.0445 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 19 s 11.8757 18.1564 28.2593 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 20 c 11.8690 22.6832 28.2593 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 21 u 13.1595 28.0484 27.0922 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 22 3 0.0265 25.1588 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 23 ~ 18.7247 30.9591 9.1836 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 24 # 0.4038 26.6848 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 25 O -2.1566 40.8329 42.4007 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 26 ` -0.8553 12.5434 9.4429 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 27 @ -0.9391 51.0839 51.9917 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 28 F 0.1332 32.2675 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 29 S -0.9871 26.9744 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 30 p 12.0299 27.6410 39.7770 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 31 “ -0.9935 24.3204 19.1753 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 32 % -0.0812 49.9821 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 33 £ 0.0148 26.8329 40.2147 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 34 . 30.9496 9.4429 9.4429 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 35 2 0.0148 25.1588 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 36 5 0.0857 24.8995 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 37 m 11.6652 43.2155 27.0922 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 38 V -0.1791 43.2782 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 39 6 -0.1666 24.8995 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 40 w 13.0446 41.7521 27.0922 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 41 T 0.1078 35.1088 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 42 M 0.4830 52.8692 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 43 G -0.9391 42.5185 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 44 b 0.2404 27.6410 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 45 9 -0.2163 24.8995 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 46 ; 11.8503 10.6099 36.8247 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 47 D 0.1202 38.4988 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 48 L 0.0597 35.4792 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 49 y 13.1192 29.1671 38.6099 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 50 ‘ -1.1771 10.6099 19.1753 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 51 \ -1.2409 16.3341 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 52 R 0.1073 41.3515 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 53 < 6.8632 30.8412 26.8329 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 54 4 -0.1893 24.8995 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 55 8 0.0870 24.8995 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 56 0 -0.1018 25.3999 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 57 A -0.9286 42.0000 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 58 E -0.0684 35.1020 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 59 B -0.0209 35.7687 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 60 v 12.9472 29.4263 27.0922 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 61 k 0.1587 31.2600 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 62 J 0.4532 28.2593 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 63 U 0.0947 39.6659 40.0666 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 64 j -0.5936 15.8337 52.7514 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 65 ( -0.8661 16.1927 52.4988 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 66 7 0.0462 26.0249 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 67 § 0.2205 24.2025 51.7325 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 68 $ -1.1078 25.1103 42.9078 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 69 € 0.1292 29.1671 39.0477 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 70 / -1.1948 18.1261 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 71 C -1.2246 36.8247 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 72 * 0.3360 20.3491 20.7081 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 73 ” -0.9891 24.3204 19.1753 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 74 ? -0.9242 22.4172 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 75 { -1.9749 16.4520 52.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 76 } -1.0741 16.4520 52.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 77 , 29.5750 10.6099 19.1753 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 78 I 0.0684 20.3121 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 79 ° -1.1035 19.7242 20.6017 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 80 K 0.2758 45.8298 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 81 H 0.3571 43.1671 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 82 q 11.7781 27.6410 39.7770 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 83 & -0.8469 43.1671 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 84 ’ -0.9779 10.6099 19.1753 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 85 [ 0.0147 12.0363 50.5654 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 86 - 22.5676 16.1927 5.5828 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 87 Y 0.0996 41.3515 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 88 Q -0.9021 41.0922 49.6509 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 89 " -1.1928 22.4172 18.4090 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 90 ! -1.3197 9.4429 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 91 x 13.0740 27.8519 25.9251 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 92 ) -0.8949 16.1927 52.4988 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 93 = 13.3272 30.8412 13.7407 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 94 + 4.3352 30.4755 30.4755 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 95 X 0.1481 42.8775 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 96 » 13.0821 27.3515 25.9251 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 97 ' -0.9526 7.9169 18.4090 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 98 ¢ 0.0132 22.8247 49.6576 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 99 Z 0.1202 36.6765 38.8995 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 100 > 6.6633 30.8412 26.8329 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 101 ® -0.9377 39.9251 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 102 © -1.2457 39.9251 41.2336 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 103 ] 0.3105 12.0363 50.5654 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 104 é -0.6696 22.8247 40.8026 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 105 z 12.9472 23.7021 25.9251 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 106 _ 48.1850 30.1927 4.0083 -Times_New_Roman_Bold.ttf 35 2 25.1588 39.0477 107 ¥ 0.1150 31.5012 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 1 t 3.3693 17.6493 36.8247 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 2 h -0.1589 28.0484 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 3 a 11.8740 25.4180 28.2593 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 4 n 11.7909 28.0484 27.0922 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 5 P 0.0708 33.0339 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 6 o 11.8088 24.2510 28.2593 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 7 e 11.9280 22.8247 28.2593 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 8 : 11.8079 9.4429 28.2593 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 9 r 11.8871 22.3243 27.0922 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 10 l 0.0465 12.8814 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 11 i -1.3366 12.8814 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 12 1 -0.1909 19.9834 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 13 | -1.2574 4.0083 52.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 14 N 0.0595 40.4323 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 15 f -1.3800 22.9425 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 16 g 11.7540 25.9251 39.7770 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 17 d -0.0058 27.6410 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 18 W -0.1734 58.0445 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 19 s 11.7645 18.1564 28.2593 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 20 c 11.6032 22.6832 28.2593 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 21 u 12.9652 28.0484 27.0922 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 22 3 0.0648 25.1588 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 23 ~ 18.9455 30.9591 9.1836 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 24 # -0.1495 26.6848 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 25 O -2.3768 40.8329 42.4007 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 26 ` -0.9236 12.5434 9.4429 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 27 @ -1.1983 51.0839 51.9917 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 28 F 0.0995 32.2675 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 29 S -0.8303 26.9744 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 30 p 12.0739 27.6410 39.7770 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 31 “ -1.0767 24.3204 19.1753 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 32 % -0.2369 49.9821 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 33 £ -0.2106 26.8329 40.2147 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 34 . 30.5406 9.4429 9.4429 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 35 2 -0.2106 25.1588 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 36 5 -0.3979 24.8995 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 37 m 11.6386 43.2155 27.0922 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 38 V 0.1321 43.2782 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 39 6 -0.2625 24.8995 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 40 w 13.0632 41.7521 27.0922 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 41 T -0.2442 35.1088 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 42 M -0.0058 52.8692 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 43 G -1.4631 42.5185 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 44 b 0.1096 27.6410 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 45 9 -0.1500 24.8995 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 46 ; 11.9289 10.6099 36.8247 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 47 D 0.4252 38.4988 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 48 L 0.0148 35.4792 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 49 y 12.8042 29.1671 38.6099 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 50 ‘ -1.3478 10.6099 19.1753 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 51 \ -1.0484 16.3341 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 52 R 0.1701 41.3515 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 53 < 6.8170 30.8412 26.8329 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 54 4 -0.5440 24.8995 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 55 8 0.0032 24.8995 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 56 0 -0.0430 25.3999 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 57 A -0.9523 42.0000 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 58 E 0.0827 35.1020 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 59 B -0.0903 35.7687 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 60 v 13.1743 29.4263 27.0922 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 61 k -0.1807 31.2600 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 62 J -0.3406 28.2593 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 63 U 0.1687 39.6659 40.0666 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 64 j -1.3179 15.8337 52.7514 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 65 ( -0.9763 16.1927 52.4988 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 66 7 0.0427 26.0249 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 67 § -0.0035 24.2025 51.7325 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 68 $ -1.3785 25.1103 42.9078 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 69 € -0.0611 29.1671 39.0477 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 70 / -1.0398 18.1261 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 71 C -1.2131 36.8247 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 72 * 0.1346 20.3491 20.7081 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 73 ” -1.2708 24.3204 19.1753 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 74 ? -1.2041 22.4172 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 75 { -2.4172 16.4520 52.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 76 } -1.1272 16.4520 52.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 77 , 29.6253 10.6099 19.1753 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 78 I -0.1687 20.3121 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 79 ° -1.1689 19.7242 20.6017 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 80 K 0.0479 45.8298 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 81 H 0.0240 43.1671 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 82 q 11.8497 27.6410 39.7770 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 83 & -1.1579 43.1671 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 84 ’ -1.2208 10.6099 19.1753 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 85 [ -0.1316 12.0363 50.5654 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 86 - 22.5439 16.1927 5.5828 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 87 Y -0.2709 41.3515 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 88 Q -0.9062 41.0922 49.6509 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 89 " -1.0782 22.4172 18.4090 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 90 ! -1.1989 9.4429 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 91 x 12.9762 27.8519 25.9251 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 92 ) -0.9936 16.1927 52.4988 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 93 = 13.0502 30.8412 13.7407 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 94 + 4.3287 30.4755 30.4755 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 95 X -0.2609 42.8775 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 96 » 12.8946 27.3515 25.9251 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 97 ' -1.1623 7.9169 18.4090 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 98 ¢ -0.2191 22.8247 49.6576 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 99 Z 0.2979 36.6765 38.8995 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 100 > 6.5455 30.8412 26.8329 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 101 ® -1.1242 39.9251 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 102 © -1.1579 39.9251 41.2336 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 103 ] -0.3321 12.0363 50.5654 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 104 é -0.8044 22.8247 40.8026 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 105 z 12.8659 23.7021 25.9251 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 106 _ 47.8073 30.1927 4.0083 -Times_New_Roman_Bold.ttf 36 5 24.8995 38.8995 107 ¥ 0.0931 31.5012 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 1 t -8.6384 17.6493 36.8247 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 2 h -11.9961 28.0484 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 3 a 0.1325 25.4180 28.2593 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 4 n 0.2147 28.0484 27.0922 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 5 P -11.5483 33.0339 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 6 o 0.0385 24.2510 28.2593 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 7 e -0.3430 22.8247 28.2593 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 8 : -0.2402 9.4429 28.2593 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 9 r -0.3075 22.3243 27.0922 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 10 l -11.7289 12.8814 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 11 i -12.7879 12.8814 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 12 1 -12.0736 19.9834 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 13 | -13.1578 4.0083 52.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 14 N -12.1527 40.4323 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 15 f -13.0694 22.9425 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 16 g -0.1076 25.9251 39.7770 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 17 d -11.8281 27.6410 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 18 W -11.5962 58.0445 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 19 s -0.0610 18.1564 28.2593 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 20 c -0.1235 22.6832 28.2593 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 21 u 0.8495 28.0484 27.0922 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 22 3 -11.8333 25.1588 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 23 ~ 7.1901 30.9591 9.1836 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 24 # -11.7583 26.6848 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 25 O -13.8420 40.8329 42.4007 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 26 ` -12.3446 12.5434 9.4429 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 27 @ -12.9849 51.0839 51.9917 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 28 F -11.6118 32.2675 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 29 S -12.6304 26.9744 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 30 p -0.0995 27.6410 39.7770 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 31 “ -12.8216 24.3204 19.1753 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 32 % -11.8156 49.9821 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 33 £ -12.0439 26.8329 40.2147 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 34 . 18.9893 9.4429 9.4429 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 35 2 -12.0294 25.1588 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 36 5 -11.9183 24.8995 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 37 m -0.1062 43.2155 27.0922 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 38 V -11.4522 43.2782 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 39 6 -12.0937 24.8995 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 40 w 1.0854 41.7521 27.0922 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 41 T -12.3844 35.1088 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 42 M -12.0706 52.8692 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 43 G -13.0407 42.5185 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 44 b -11.9274 27.6410 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 45 9 -11.8642 24.8995 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 46 ; -0.4190 10.6099 36.8247 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 47 D -11.9864 38.4988 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 48 L -11.8544 35.4792 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 49 y 1.3707 29.1671 38.6099 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 50 ‘ -13.0570 10.6099 19.1753 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 51 \ -12.8340 16.3341 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 52 R -11.9183 41.3515 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 53 < -5.0937 30.8412 26.8329 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 54 4 -11.8400 24.8995 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 55 8 -11.6471 24.8995 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 56 0 -11.9446 25.3999 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 57 A -13.3477 42.0000 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 58 E -11.7703 35.1020 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 59 B -11.6873 35.7687 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 60 v 1.1598 29.4263 27.0922 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 61 k -11.4767 31.2600 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 62 J -11.9615 28.2593 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 63 U -11.9847 39.6659 40.0666 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 64 j -12.8953 15.8337 52.7514 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 65 ( -13.1021 16.1927 52.4988 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 66 7 -11.8419 26.0249 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 67 § -12.2053 24.2025 51.7325 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 68 $ -13.0353 25.1103 42.9078 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 69 € -11.9512 29.1671 39.0477 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 70 / -12.9965 18.1261 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 71 C -12.9244 36.8247 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 72 * -11.7069 20.3491 20.7081 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 73 ” -12.7639 24.3204 19.1753 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 74 ? -13.1074 22.4172 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 75 { -12.5430 16.4520 52.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 76 } -14.3101 16.4520 52.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 77 , 17.2260 10.6099 19.1753 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 78 I -11.7390 20.3121 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 79 ° -12.8941 19.7242 20.6017 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 80 K -11.6001 45.8298 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 81 H -11.3730 43.1671 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 82 q -0.0105 27.6410 39.7770 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 83 & -12.6362 43.1671 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 84 ’ -12.9997 10.6099 19.1753 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 85 [ -11.7136 12.0363 50.5654 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 86 - 11.0566 16.1927 5.5828 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 87 Y -11.6781 41.3515 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 88 Q -13.1440 41.0922 49.6509 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 89 " -12.8024 22.4172 18.4090 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 90 ! -13.2316 9.4429 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 91 x 1.1108 27.8519 25.9251 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 92 ) -13.1271 16.1927 52.4988 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 93 = 1.0901 30.8412 13.7407 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 94 + -7.4061 30.4755 30.4755 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 95 X -11.6447 42.8775 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 96 » 1.2237 27.3515 25.9251 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 97 ' -12.8970 7.9169 18.4090 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 98 ¢ -11.6314 22.8247 49.6576 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 99 Z -12.1047 36.6765 38.8995 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 100 > -5.4198 30.8412 26.8329 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 101 ® -13.0186 39.9251 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 102 © -13.0280 39.9251 41.2336 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 103 ] -11.9298 12.0363 50.5654 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 104 é -12.5828 22.8247 40.8026 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 105 z 1.2011 23.7021 25.9251 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 106 _ 35.8400 30.1927 4.0083 -Times_New_Roman_Bold.ttf 37 m 43.2155 27.0922 107 ¥ -11.6771 31.5012 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 1 t 3.2727 17.6493 36.8247 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 2 h -0.1687 28.0484 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 3 a 11.7646 25.4180 28.2593 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 4 n 11.9361 28.0484 27.0922 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 5 P 0.1210 33.0339 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 6 o 11.4387 24.2510 28.2593 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 7 e 12.1095 22.8247 28.2593 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 8 : 11.9480 9.4429 28.2593 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 9 r 11.6411 22.3243 27.0922 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 10 l -0.1959 12.8814 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 11 i -1.0099 12.8814 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 12 1 -0.1702 19.9834 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 13 | -0.7054 4.0083 52.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 14 N -0.1720 40.4323 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 15 f -1.0397 22.9425 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 16 g 11.9726 25.9251 39.7770 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 17 d 0.0106 27.6410 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 18 W 0.0947 58.0445 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 19 s 11.8461 18.1564 28.2593 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 20 c 11.7819 22.6832 28.2593 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 21 u 13.0258 28.0484 27.0922 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 22 3 -0.2079 25.1588 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 23 ~ 18.6001 30.9591 9.1836 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 24 # 0.0576 26.6848 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 25 O -2.2931 40.8329 42.4007 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 26 ` -1.0495 12.5434 9.4429 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 27 @ -1.4116 51.0839 51.9917 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 28 F 0.2590 32.2675 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 29 S -1.0388 26.9744 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 30 p 11.8760 27.6410 39.7770 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 31 “ -1.0324 24.3204 19.1753 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 32 % -0.2813 49.9821 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 33 £ -0.5508 26.8329 40.2147 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 34 . 30.6755 9.4429 9.4429 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 35 2 -0.1942 25.1588 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 36 5 0.0866 24.8995 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 37 m 11.6579 43.2155 27.0922 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 38 V 0.2268 43.2782 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 39 6 -0.3048 24.8995 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 40 w 13.2334 41.7521 27.0922 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 41 T 0.3022 35.1088 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 42 M -0.6591 52.8692 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 43 G -1.0786 42.5185 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 44 b 0.0870 27.6410 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 45 9 -0.2255 24.8995 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 46 ; 11.8164 10.6099 36.8247 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 47 D 0.3018 38.4988 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 48 L 0.3349 35.4792 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 49 y 12.8470 29.1671 38.6099 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 50 ‘ -1.0714 10.6099 19.1753 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 51 \ -1.3060 16.3341 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 52 R -0.0192 41.3515 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 53 < 6.7140 30.8412 26.8329 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 54 4 -0.2312 24.8995 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 55 8 -0.1885 24.8995 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 56 0 -0.1078 25.3999 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 57 A -1.1655 42.0000 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 58 E 0.0955 35.1020 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 59 B 0.0741 35.7687 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 60 v 12.9817 29.4263 27.0922 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 61 k -0.2615 31.2600 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 62 J -0.1356 28.2593 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 63 U 0.0552 39.6659 40.0666 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 64 j -1.2574 15.8337 52.7514 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 65 ( -1.3890 16.1927 52.4988 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 66 7 0.0874 26.0249 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 67 § -0.5167 24.2025 51.7325 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 68 $ -1.1920 25.1103 42.9078 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 69 € -0.3062 29.1671 39.0477 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 70 / -1.2651 18.1261 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 71 C -1.0027 36.8247 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 72 * 0.1846 20.3491 20.7081 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 73 ” -1.2502 24.3204 19.1753 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 74 ? -1.0843 22.4172 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 75 { -0.8192 16.4520 52.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 76 } -2.3821 16.4520 52.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 77 , 29.1126 10.6099 19.1753 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 78 I 0.1753 20.3121 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 79 ° -1.0800 19.7242 20.6017 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 80 K 0.0465 45.8298 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 81 H -0.0366 43.1671 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 82 q 11.4152 27.6410 39.7770 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 83 & -1.0506 43.1671 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 84 ’ -1.1243 10.6099 19.1753 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 85 [ -0.1225 12.0363 50.5654 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 86 - 22.6150 16.1927 5.5828 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 87 Y 0.0066 41.3515 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 88 Q -0.8562 41.0922 49.6509 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 89 " -1.2339 22.4172 18.4090 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 90 ! -0.9172 9.4429 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 91 x 13.0114 27.8519 25.9251 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 92 ) -0.7472 16.1927 52.4988 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 93 = 12.6395 30.8412 13.7407 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 94 + 4.2071 30.4755 30.4755 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 95 X 0.1226 42.8775 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 96 » 13.0450 27.3515 25.9251 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 97 ' -1.5744 7.9169 18.4090 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 98 ¢ 0.0500 22.8247 49.6576 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 99 Z 0.1908 36.6765 38.8995 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 100 > 6.4542 30.8412 26.8329 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 101 ® -0.8729 39.9251 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 102 © -1.0782 39.9251 41.2336 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 103 ] 0.0000 12.0363 50.5654 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 104 é -0.6932 22.8247 40.8026 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 105 z 12.9240 23.7021 25.9251 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 106 _ 47.6012 30.1927 4.0083 -Times_New_Roman_Bold.ttf 38 V 43.2782 40.0666 107 ¥ 0.0922 31.5012 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 1 t 3.2829 17.6493 36.8247 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 2 h 0.0684 28.0484 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 3 a 12.0385 25.4180 28.2593 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 4 n 11.8579 28.0484 27.0922 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 5 P 0.0478 33.0339 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 6 o 12.0146 24.2510 28.2593 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 7 e 11.9775 22.8247 28.2593 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 8 : 12.0425 9.4429 28.2593 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 9 r 12.0385 22.3243 27.0922 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 10 l 0.2686 12.8814 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 11 i -1.3225 12.8814 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 12 1 -0.3021 19.9834 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 13 | -0.8397 4.0083 52.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 14 N 0.1894 40.4323 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 15 f -0.8973 22.9425 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 16 g 12.2220 25.9251 39.7770 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 17 d 0.3274 27.6410 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 18 W 0.0684 58.0445 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 19 s 11.8945 18.1564 28.2593 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 20 c 12.1684 22.6832 28.2593 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 21 u 13.2984 28.0484 27.0922 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 22 3 0.3849 25.1588 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 23 ~ 18.8204 30.9591 9.1836 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 24 # 0.2755 26.6848 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 25 O -2.2894 40.8329 42.4007 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 26 ` -0.6390 12.5434 9.4429 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 27 @ -1.0914 51.0839 51.9917 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 28 F -0.1997 32.2675 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 29 S -0.9877 26.9744 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 30 p 11.8651 27.6410 39.7770 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 31 “ -1.0813 24.3204 19.1753 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 32 % 0.1662 49.9821 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 33 £ 0.0427 26.8329 40.2147 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 34 . 30.5921 9.4429 9.4429 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 35 2 0.2903 25.1588 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 36 5 0.2577 24.8995 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 37 m 11.7835 43.2155 27.0922 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 38 V 0.0266 43.2782 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 39 6 0.0903 24.8995 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 40 w 13.0946 41.7521 27.0922 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 41 T 0.2668 35.1088 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 42 M 0.2370 52.8692 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 43 G -0.8175 42.5185 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 44 b 0.4079 27.6410 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 45 9 0.0832 24.8995 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 46 ; 12.0338 10.6099 36.8247 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 47 D 0.2000 38.4988 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 48 L 0.5719 35.4792 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 49 y 13.3517 29.1671 38.6099 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 50 ‘ -0.9194 10.6099 19.1753 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 51 \ -1.1226 16.3341 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 52 R 0.1039 41.3515 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 53 < 6.8705 30.8412 26.8329 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 54 4 -0.0804 24.8995 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 55 8 -0.1216 24.8995 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 56 0 -0.0370 25.3999 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 57 A -0.7657 42.0000 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 58 E 0.0963 35.1020 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 59 B -0.0643 35.7687 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 60 v 13.2311 29.4263 27.0922 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 61 k -0.1127 31.2600 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 62 J 0.0593 28.2593 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 63 U 0.1035 39.6659 40.0666 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 64 j -0.8042 15.8337 52.7514 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 65 ( -1.0726 16.1927 52.4988 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 66 7 -0.0253 26.0249 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 67 § -0.2397 24.2025 51.7325 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 68 $ -1.1857 25.1103 42.9078 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 69 € 0.2869 29.1671 39.0477 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 70 / -1.1035 18.1261 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 71 C -1.0978 36.8247 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 72 * 0.2942 20.3491 20.7081 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 73 ” -1.0337 24.3204 19.1753 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 74 ? -1.0644 22.4172 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 75 { -2.1431 16.4520 52.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 76 } -1.0228 16.4520 52.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 77 , 29.5605 10.6099 19.1753 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 78 I 0.1848 20.3121 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 79 ° -0.9840 19.7242 20.6017 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 80 K -0.0844 45.8298 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 81 H 0.1409 43.1671 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 82 q 12.0352 27.6410 39.7770 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 83 & -0.8430 43.1671 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 84 ’ -0.9877 10.6099 19.1753 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 85 [ -0.1369 12.0363 50.5654 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 86 - 22.9274 16.1927 5.5828 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 87 Y 0.1539 41.3515 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 88 Q -1.1089 41.0922 49.6509 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 89 " -0.8767 22.4172 18.4090 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 90 ! -1.4466 9.4429 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 91 x 13.1446 27.8519 25.9251 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 92 ) -1.0214 16.1927 52.4988 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 93 = 13.4646 30.8412 13.7407 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 94 + 4.4198 30.4755 30.4755 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 95 X 0.3586 42.8775 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 96 » 13.3003 27.3515 25.9251 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 97 ' -1.4466 7.9169 18.4090 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 98 ¢ 0.2385 22.8247 49.6576 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 99 Z 0.1448 36.6765 38.8995 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 100 > 6.4823 30.8412 26.8329 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 101 ® -0.9728 39.9251 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 102 © -1.0616 39.9251 41.2336 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 103 ] 0.0074 12.0363 50.5654 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 104 é -0.4649 22.8247 40.8026 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 105 z 13.0427 23.7021 25.9251 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 106 _ 47.9612 30.1927 4.0083 -Times_New_Roman_Bold.ttf 39 6 24.8995 39.0477 107 ¥ 0.1985 31.5012 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 1 t -9.6494 17.6493 36.8247 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 2 h -13.0738 28.0484 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 3 a -1.1093 25.4180 28.2593 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 4 n -1.1704 28.0484 27.0922 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 5 P -13.1478 33.0339 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 6 o -1.3020 24.2510 28.2593 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 7 e -0.9599 22.8247 28.2593 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 8 : -1.1007 9.4429 28.2593 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 9 r -1.4160 22.3243 27.0922 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 10 l -12.9540 12.8814 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 11 i -14.0943 12.8814 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 12 1 -12.8725 19.9834 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 13 | -14.2788 4.0083 52.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 14 N -13.0262 40.4323 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 15 f -14.2394 22.9425 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 16 g -1.3496 25.9251 39.7770 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 17 d -13.1484 27.6410 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 18 W -12.7491 58.0445 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 19 s -1.0868 18.1564 28.2593 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 20 c -1.1136 22.6832 28.2593 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 21 u -0.2180 28.0484 27.0922 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 22 3 -13.1186 25.1588 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 23 ~ 6.0822 30.9591 9.1836 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 24 # -12.9758 26.6848 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 25 O -15.4064 40.8329 42.4007 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 26 ` -13.7130 12.5434 9.4429 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 27 @ -14.2615 51.0839 51.9917 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 28 F -13.1930 32.2675 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 29 S -14.1130 26.9744 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 30 p -1.1252 27.6410 39.7770 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 31 “ -14.0568 24.3204 19.1753 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 32 % -13.5843 49.9821 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 33 £ -12.7097 26.8329 40.2147 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 34 . 17.5104 9.4429 9.4429 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 35 2 -13.4088 25.1588 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 36 5 -12.8452 24.8995 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 37 m -1.1177 43.2155 27.0922 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 38 V -13.3587 43.2782 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 39 6 -12.8896 24.8995 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 40 w -0.2884 41.7521 27.0922 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 41 T -12.9192 35.1088 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 42 M -12.8285 52.8692 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 43 G -13.9459 42.5185 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 44 b -12.9282 27.6410 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 45 9 -12.7228 24.8995 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 46 ; -1.0321 10.6099 36.8247 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 47 D -13.0733 38.4988 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 48 L -12.9523 35.4792 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 49 y 0.1701 29.1671 38.6099 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 50 ‘ -14.0949 10.6099 19.1753 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 51 \ -13.8022 16.3341 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 52 R -12.7711 41.3515 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 53 < -6.1614 30.8412 26.8329 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 54 4 -12.7492 24.8995 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 55 8 -13.1308 24.8995 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 56 0 -13.0264 25.3999 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 57 A -14.0954 42.0000 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 58 E -12.9392 35.1020 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 59 B -13.0581 35.7687 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 60 v 0.1644 29.4263 27.0922 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 61 k -12.9403 31.2600 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 62 J -13.3125 28.2593 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 63 U -13.0589 39.6659 40.0666 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 64 j -13.9415 15.8337 52.7514 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 65 ( -14.3246 16.1927 52.4988 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 66 7 -12.7193 26.0249 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 67 § -13.3387 24.2025 51.7325 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 68 $ -14.3355 25.1103 42.9078 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 69 € -13.3061 29.1671 39.0477 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 70 / -14.2303 18.1261 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 71 C -13.8694 36.8247 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 72 * -12.6759 20.3491 20.7081 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 73 ” -14.2303 24.3204 19.1753 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 74 ? -14.1958 22.4172 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 75 { -13.8402 16.4520 52.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 76 } -15.6107 16.4520 52.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 77 , 16.6586 10.6099 19.1753 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 78 I -12.9852 20.3121 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 79 ° -14.4835 19.7242 20.6017 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 80 K -13.1217 45.8298 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 81 H -12.9460 43.1671 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 82 q -0.9643 27.6410 39.7770 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 83 & -14.3044 43.1671 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 84 ’ -14.3207 10.6099 19.1753 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 85 [ -12.7211 12.0363 50.5654 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 86 - 9.8065 16.1927 5.5828 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 87 Y -12.7817 41.3515 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 88 Q -14.2991 41.0922 49.6509 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 89 " -14.0083 22.4172 18.4090 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 90 ! -14.0265 9.4429 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 91 x 0.4843 27.8519 25.9251 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 92 ) -14.1193 16.1927 52.4988 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 93 = -0.0033 30.8412 13.7407 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 94 + -8.5322 30.4755 30.4755 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 95 X -12.6559 42.8775 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 96 » 0.1630 27.3515 25.9251 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 97 ' -14.1126 7.9169 18.4090 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 98 ¢ -13.0091 22.8247 49.6576 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 99 Z -12.9134 36.6765 38.8995 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 100 > -6.3142 30.8412 26.8329 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 101 ® -14.2419 39.9251 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 102 © -14.5351 39.9251 41.2336 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 103 ] -12.9133 12.0363 50.5654 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 104 é -13.7423 22.8247 40.8026 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 105 z -0.0033 23.7021 25.9251 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 106 _ 34.7276 30.1927 4.0083 -Times_New_Roman_Bold.ttf 40 w 41.7521 27.0922 107 ¥ -13.0498 31.5012 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 1 t 3.3529 17.6493 36.8247 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 2 h -0.0370 28.0484 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 3 a 11.7284 25.4180 28.2593 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 4 n 11.9389 28.0484 27.0922 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 5 P -0.1052 33.0339 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 6 o 11.9077 24.2510 28.2593 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 7 e 11.9274 22.8247 28.2593 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 8 : 11.8798 9.4429 28.2593 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 9 r 11.8501 22.3243 27.0922 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 10 l 0.0239 12.8814 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 11 i -1.0840 12.8814 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 12 1 -0.1035 19.9834 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 13 | -0.7831 4.0083 52.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 14 N -0.1070 40.4323 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 15 f -1.1637 22.9425 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 16 g 12.0192 25.9251 39.7770 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 17 d 0.0831 27.6410 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 18 W -0.0889 58.0445 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 19 s 11.6654 18.1564 28.2593 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 20 c 11.7612 22.6832 28.2593 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 21 u 12.8542 28.0484 27.0922 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 22 3 -0.1303 25.1588 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 23 ~ 18.9260 30.9591 9.1836 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 24 # 0.2565 26.6848 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 25 O -2.3802 40.8329 42.4007 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 26 ` -0.9809 12.5434 9.4429 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 27 @ -1.1685 51.0839 51.9917 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 28 F 0.0102 32.2675 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 29 S -1.3257 26.9744 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 30 p 11.8458 27.6410 39.7770 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 31 “ -1.0215 24.3204 19.1753 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 32 % -0.0756 49.9821 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 33 £ -0.2410 26.8329 40.2147 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 34 . 30.7011 9.4429 9.4429 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 35 2 -0.0111 25.1588 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 36 5 -0.0764 24.8995 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 37 m 11.4743 43.2155 27.0922 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 38 V -0.3103 43.2782 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 39 6 -0.4234 24.8995 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 40 w 12.9298 41.7521 27.0922 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 41 T 0.0427 35.1088 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 42 M 0.1292 52.8692 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 43 G -1.2141 42.5185 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 44 b -0.1307 27.6410 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 45 9 -0.3514 24.8995 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 46 ; 11.8756 10.6099 36.8247 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 47 D 0.0370 38.4988 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 48 L 0.3190 35.4792 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 49 y 13.0960 29.1671 38.6099 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 50 ‘ -0.9566 10.6099 19.1753 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 51 \ -1.3775 16.3341 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 52 R -0.0073 41.3515 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 53 < 6.3138 30.8412 26.8329 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 54 4 0.0551 24.8995 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 55 8 -0.4417 24.8995 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 56 0 -0.1409 25.3999 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 57 A -1.2911 42.0000 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 58 E 0.1422 35.1020 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 59 B 0.1778 35.7687 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 60 v 13.1478 29.4263 27.0922 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 61 k 0.1240 31.2600 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 62 J -0.1695 28.2593 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 63 U -0.0019 39.6659 40.0666 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 64 j -1.3020 15.8337 52.7514 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 65 ( -1.2041 16.1927 52.4988 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 66 7 -0.1716 26.0249 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 67 § 0.0757 24.2025 51.7325 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 68 $ -1.2959 25.1103 42.9078 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 69 € -0.0651 29.1671 39.0477 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 70 / -1.0397 18.1261 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 71 C -1.1561 36.8247 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 72 * 0.1788 20.3491 20.7081 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 73 ” -1.2839 24.3204 19.1753 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 74 ? -1.3756 22.4172 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 75 { -1.2098 16.4520 52.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 76 } -2.3562 16.4520 52.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 77 , 29.4157 10.6099 19.1753 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 78 I 0.2253 20.3121 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 79 ° -1.0412 19.7242 20.6017 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 80 K -0.0850 45.8298 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 81 H -0.1826 43.1671 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 82 q 11.9855 27.6410 39.7770 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 83 & -1.2574 43.1671 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 84 ’ -1.1637 10.6099 19.1753 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 85 [ -0.0826 12.0363 50.5654 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 86 - 22.6237 16.1927 5.5828 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 87 Y -0.1792 41.3515 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 88 Q -1.0267 41.0922 49.6509 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 89 " -1.2502 22.4172 18.4090 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 90 ! -1.1066 9.4429 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 91 x 13.1205 27.8519 25.9251 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 92 ) -1.2483 16.1927 52.4988 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 93 = 13.1051 30.8412 13.7407 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 94 + 4.3119 30.4755 30.4755 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 95 X 0.0798 42.8775 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 96 » 13.0281 27.3515 25.9251 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 97 ' -1.1685 7.9169 18.4090 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 98 ¢ -0.1644 22.8247 49.6576 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 99 Z 0.0632 36.6765 38.8995 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 100 > 6.7702 30.8412 26.8329 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 101 ® -1.0321 39.9251 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 102 © -1.1021 39.9251 41.2336 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 103 ] -0.0476 12.0363 50.5654 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 104 é -0.8250 22.8247 40.8026 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 105 z 12.8888 23.7021 25.9251 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 106 _ 47.7779 30.1927 4.0083 -Times_New_Roman_Bold.ttf 41 T 35.1088 38.8995 107 ¥ 0.0063 31.5012 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 1 t 3.3403 17.6493 36.8247 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 2 h 0.3435 28.0484 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 3 a 11.9865 25.4180 28.2593 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 4 n 12.0442 28.0484 27.0922 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 5 P 0.0217 33.0339 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 6 o 11.9883 24.2510 28.2593 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 7 e 11.8694 22.8247 28.2593 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 8 : 12.1272 9.4429 28.2593 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 9 r 11.6977 22.3243 27.0922 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 10 l 0.2841 12.8814 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 11 i -1.0227 12.8814 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 12 1 -0.0171 19.9834 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 13 | -1.4433 4.0083 52.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 14 N 0.1173 40.4323 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 15 f -1.3154 22.9425 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 16 g 11.5773 25.9251 39.7770 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 17 d 0.0442 27.6410 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 18 W 0.0932 58.0445 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 19 s 11.6521 18.1564 28.2593 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 20 c 12.1254 22.6832 28.2593 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 21 u 12.8841 28.0484 27.0922 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 22 3 0.2545 25.1588 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 23 ~ 18.9270 30.9591 9.1836 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 24 # -0.2815 26.6848 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 25 O -2.1654 40.8329 42.4007 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 26 ` -0.8377 12.5434 9.4429 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 27 @ -0.7441 51.0839 51.9917 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 28 F -0.0885 32.2675 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 29 S -0.9835 26.9744 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 30 p 11.8530 27.6410 39.7770 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 31 “ -1.1006 24.3204 19.1753 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 32 % -0.4191 49.9821 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 33 £ -0.3644 26.8329 40.2147 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 34 . 30.6016 9.4429 9.4429 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 35 2 -0.4020 25.1588 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 36 5 0.0319 24.8995 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 37 m 11.5893 43.2155 27.0922 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 38 V 0.0066 43.2782 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 39 6 0.0979 24.8995 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 40 w 13.0142 41.7521 27.0922 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 41 T 0.1365 35.1088 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 42 M 0.1500 52.8692 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 43 G -1.0955 42.5185 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 44 b -0.1201 27.6410 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 45 9 0.0158 24.8995 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 46 ; 11.8755 10.6099 36.8247 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 47 D 0.1690 38.4988 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 48 L 0.0947 35.4792 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 49 y 12.8118 29.1671 38.6099 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 50 ‘ -1.3847 10.6099 19.1753 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 51 \ -1.2781 16.3341 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 52 R 0.1437 41.3515 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 53 < 6.6949 30.8412 26.8329 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 54 4 0.0205 24.8995 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 55 8 -0.4903 24.8995 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 56 0 -0.3149 25.3999 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 57 A -0.8595 42.0000 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 58 E -0.1059 35.1020 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 59 B 0.1633 35.7687 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 60 v 12.8782 29.4263 27.0922 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 61 k -0.1716 31.2600 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 62 J -0.5478 28.2593 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 63 U -0.3551 39.6659 40.0666 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 64 j -1.4106 15.8337 52.7514 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 65 ( -1.2425 16.1927 52.4988 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 66 7 -0.1764 26.0249 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 67 § 0.1587 24.2025 51.7325 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 68 $ -1.1391 25.1103 42.9078 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 69 € -0.1626 29.1671 39.0477 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 70 / -0.9495 18.1261 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 71 C -1.0550 36.8247 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 72 * 0.4354 20.3491 20.7081 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 73 ” -1.0600 24.3204 19.1753 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 74 ? -0.9755 22.4172 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 75 { -0.8711 16.4520 52.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 76 } -2.3431 16.4520 52.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 77 , 29.2567 10.6099 19.1753 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 78 I -0.0431 20.3121 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 79 ° -1.3481 19.7242 20.6017 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 80 K -0.1716 45.8298 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 81 H -0.2043 43.1671 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 82 q 11.9953 27.6410 39.7770 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 83 & -1.5101 43.1671 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 84 ’ -0.9629 10.6099 19.1753 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 85 [ -0.0389 12.0363 50.5654 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 86 - 23.1585 16.1927 5.5828 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 87 Y -0.1259 41.3515 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 88 Q -0.8852 41.0922 49.6509 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 89 " -0.8856 22.4172 18.4090 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 90 ! -1.1633 9.4429 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 91 x 12.9105 27.8519 25.9251 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 92 ) -1.1685 16.1927 52.4988 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 93 = 12.8619 30.8412 13.7407 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 94 + 4.3081 30.4755 30.4755 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 95 X -0.2426 42.8775 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 96 » 13.2348 27.3515 25.9251 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 97 ' -0.9210 7.9169 18.4090 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 98 ¢ -0.0982 22.8247 49.6576 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 99 Z -0.0519 36.6765 38.8995 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 100 > 6.6824 30.8412 26.8329 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 101 ® -1.0672 39.9251 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 102 © -1.0532 39.9251 41.2336 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 103 ] -0.1792 12.0363 50.5654 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 104 é -0.7190 22.8247 40.8026 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 105 z 12.7981 23.7021 25.9251 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 106 _ 47.4670 30.1927 4.0083 -Times_New_Roman_Bold.ttf 42 M 52.8692 38.8995 107 ¥ -0.2258 31.5012 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 1 t 4.1634 17.6493 36.8247 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 2 h 1.2323 28.0484 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 3 a 13.0676 25.4180 28.2593 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 4 n 12.8096 28.0484 27.0922 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 5 P 1.0847 33.0339 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 6 o 12.5434 24.2510 28.2593 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 7 e 13.2914 22.8247 28.2593 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 8 : 12.9018 9.4429 28.2593 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 9 r 12.8955 22.3243 27.0922 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 10 l 1.1974 12.8814 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 11 i 0.0864 12.8814 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 12 1 0.9968 19.9834 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 13 | 0.1984 4.0083 52.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 14 N 1.2117 40.4323 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 15 f 0.0889 22.9425 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 16 g 12.9820 25.9251 39.7770 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 17 d 0.8932 27.6410 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 18 W 1.0546 58.0445 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 19 s 12.9019 18.1564 28.2593 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 20 c 13.1089 22.6832 28.2593 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 21 u 14.1835 28.0484 27.0922 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 22 3 1.1505 25.1588 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 23 ~ 19.7186 30.9591 9.1836 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 24 # 0.7750 26.6848 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 25 O -1.2175 40.8329 42.4007 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 26 ` 0.8167 12.5434 9.4429 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 27 @ 0.0917 51.0839 51.9917 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 28 F 1.2041 32.2675 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 29 S -0.2887 26.9744 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 30 p 13.4016 27.6410 39.7770 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 31 “ 0.1629 24.3204 19.1753 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 32 % 0.7214 49.9821 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 33 £ 1.1184 26.8329 40.2147 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 34 . 31.6106 9.4429 9.4429 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 35 2 0.8931 25.1588 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 36 5 1.1820 24.8995 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 37 m 12.8339 43.2155 27.0922 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 38 V 0.9878 43.2782 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 39 6 1.2798 24.8995 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 40 w 14.0971 41.7521 27.0922 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 41 T 1.1475 35.1088 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 42 M 1.1623 52.8692 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 43 G 0.0922 42.5185 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 44 b 0.9614 27.6410 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 45 9 0.8953 24.8995 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 46 ; 12.9816 10.6099 36.8247 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 47 D 1.0931 38.4988 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 48 L 1.5889 35.4792 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 49 y 14.2270 29.1671 38.6099 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 50 ‘ -0.3406 10.6099 19.1753 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 51 \ -0.0533 16.3341 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 52 R 0.8859 41.3515 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 53 < 7.9763 30.8412 26.8329 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 54 4 1.1924 24.8995 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 55 8 1.0559 24.8995 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 56 0 1.0435 25.3999 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 57 A -0.1288 42.0000 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 58 E 1.0267 35.1020 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 59 B 1.3938 35.7687 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 60 v 14.0287 29.4263 27.0922 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 61 k 0.8101 31.2600 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 62 J 1.2132 28.2593 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 63 U 1.0988 39.6659 40.0666 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 64 j -0.2072 15.8337 52.7514 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 65 ( -0.1865 16.1927 52.4988 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 66 7 1.1715 26.0249 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 67 § 0.8104 24.2025 51.7325 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 68 $ -0.1735 25.1103 42.9078 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 69 € 0.9431 29.1671 39.0477 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 70 / -0.0921 18.1261 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 71 C 0.3167 36.8247 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 72 * 1.2819 20.3491 20.7081 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 73 ” 0.2296 24.3204 19.1753 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 74 ? -0.2915 22.4172 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 75 { -0.0831 16.4520 52.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 76 } -0.9014 16.4520 52.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 77 , 30.6759 10.6099 19.1753 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 78 I 1.1541 20.3121 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 79 ° 0.2648 19.7242 20.6017 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 80 K 1.0502 45.8298 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 81 H 1.0474 43.1671 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 82 q 12.9700 27.6410 39.7770 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 83 & 0.2657 43.1671 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 84 ’ -0.0563 10.6099 19.1753 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 85 [ 1.0239 12.0363 50.5654 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 86 - 23.7879 16.1927 5.5828 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 87 Y 0.6410 41.3515 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 88 Q 0.2811 41.0922 49.6509 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 89 " 0.1140 22.4172 18.4090 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 90 ! 0.0163 9.4429 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 91 x 14.1016 27.8519 25.9251 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 92 ) -0.0979 16.1927 52.4988 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 93 = 14.4044 30.8412 13.7407 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 94 + 5.5222 30.4755 30.4755 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 95 X 1.0854 42.8775 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 96 » 14.2764 27.3515 25.9251 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 97 ' -0.0062 7.9169 18.4090 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 98 ¢ 0.8144 22.8247 49.6576 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 99 Z 0.9990 36.6765 38.8995 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 100 > 7.8418 30.8412 26.8329 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 101 ® -0.0475 39.9251 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 102 © -0.2024 39.9251 41.2336 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 103 ] 1.0383 12.0363 50.5654 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 104 é 0.5199 22.8247 40.8026 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 105 z 14.2390 23.7021 25.9251 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 106 _ 48.7966 30.1927 4.0083 -Times_New_Roman_Bold.ttf 43 G 42.5185 41.2336 107 ¥ 0.9911 31.5012 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 1 t 3.1727 17.6493 36.8247 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 2 h 0.0816 28.0484 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 3 a 11.7713 25.4180 28.2593 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 4 n 11.6814 28.0484 27.0922 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 5 P -0.0385 33.0339 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 6 o 11.9793 24.2510 28.2593 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 7 e 11.5113 22.8247 28.2593 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 8 : 11.6685 9.4429 28.2593 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 9 r 11.8814 22.3243 27.0922 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 10 l -0.2979 12.8814 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 11 i -1.5131 12.8814 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 12 1 0.0180 19.9834 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 13 | -1.4207 4.0083 52.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 14 N 0.2797 40.4323 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 15 f -1.3928 22.9425 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 16 g 11.6770 25.9251 39.7770 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 17 d -0.2257 27.6410 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 18 W -0.0279 58.0445 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 19 s 11.5968 18.1564 28.2593 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 20 c 11.8121 22.6832 28.2593 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 21 u 12.7154 28.0484 27.0922 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 22 3 -0.4105 25.1588 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 23 ~ 18.6800 30.9591 9.1836 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 24 # -0.3864 26.6848 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 25 O -2.2884 40.8329 42.4007 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 26 ` -1.0057 12.5434 9.4429 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 27 @ -1.2584 51.0839 51.9917 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 28 F 0.4814 32.2675 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 29 S -1.4574 26.9744 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 30 p 11.6386 27.6410 39.7770 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 31 “ -1.2247 24.3204 19.1753 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 32 % -0.4409 49.9821 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 33 £ -0.0756 26.8329 40.2147 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 34 . 30.5348 9.4429 9.4429 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 35 2 -0.1303 25.1588 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 36 5 -0.2590 24.8995 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 37 m 11.4206 43.2155 27.0922 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 38 V -0.0077 43.2782 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 39 6 -0.0684 24.8995 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 40 w 13.0129 41.7521 27.0922 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 41 T -0.1422 35.1088 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 42 M -0.0312 52.8692 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 43 G -1.4534 42.5185 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 44 b -0.0058 27.6410 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 45 9 -0.2831 24.8995 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 46 ; 11.5777 10.6099 36.8247 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 47 D -0.1778 38.4988 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 48 L -0.0164 35.4792 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 49 y 13.0820 29.1671 38.6099 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 50 ‘ -1.2247 10.6099 19.1753 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 51 \ -1.0742 16.3341 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 52 R 0.0875 41.3515 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 53 < 6.7224 30.8412 26.8329 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 54 4 -0.3129 24.8995 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 55 8 -0.0589 24.8995 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 56 0 -0.1967 25.3999 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 57 A -1.3332 42.0000 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 58 E 0.0725 35.1020 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 59 B 0.1292 35.7687 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 60 v 12.8484 29.4263 27.0922 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 61 k 0.0073 31.2600 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 62 J 0.1894 28.2593 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 63 U -0.0370 39.6659 40.0666 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 64 j -1.5923 15.8337 52.7514 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 65 ( -1.1671 16.1927 52.4988 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 66 7 0.3200 26.0249 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 67 § -0.1073 24.2025 51.7325 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 68 $ -1.2324 25.1103 42.9078 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 69 € -0.3258 29.1671 39.0477 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 70 / -1.2559 18.1261 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 71 C -1.3068 36.8247 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 72 * 0.2644 20.3491 20.7081 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 73 ” -1.1613 24.3204 19.1753 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 74 ? -1.2231 22.4172 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 75 { -1.3339 16.4520 52.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 76 } -2.4157 16.4520 52.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 77 , 29.6319 10.6099 19.1753 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 78 I 0.0385 20.3121 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 79 ° -1.2559 19.7242 20.6017 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 80 K 0.0504 45.8298 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 81 H -0.0903 43.1671 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 82 q 11.8073 27.6410 39.7770 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 83 & -1.3481 43.1671 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 84 ’ -1.2468 10.6099 19.1753 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 85 [ 0.3864 12.0363 50.5654 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 86 - 22.6904 16.1927 5.5828 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 87 Y 0.3200 41.3515 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 88 Q -1.0634 41.0922 49.6509 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 89 " -1.1410 22.4172 18.4090 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 90 ! -1.2502 9.4429 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 91 x 12.9692 27.8519 25.9251 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 92 ) -1.1819 16.1927 52.4988 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 93 = 13.1009 30.8412 13.7407 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 94 + 4.4469 30.4755 30.4755 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 95 X 0.0446 42.8775 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 96 » 12.7491 27.3515 25.9251 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 97 ' -1.2541 7.9169 18.4090 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 98 ¢ 0.2565 22.8247 49.6576 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 99 Z -0.0667 36.6765 38.8995 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 100 > 6.7178 30.8412 26.8329 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 101 ® -1.2708 39.9251 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 102 © -0.9614 39.9251 41.2336 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 103 ] -0.2133 12.0363 50.5654 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 104 é -0.8699 22.8247 40.8026 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 105 z 12.9374 23.7021 25.9251 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 106 _ 47.9669 30.1927 4.0083 -Times_New_Roman_Bold.ttf 44 b 27.6410 40.0666 107 ¥ -0.2903 31.5012 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 1 t 3.3103 17.6493 36.8247 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 2 h -0.0166 28.0484 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 3 a 11.8296 25.4180 28.2593 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 4 n 11.9627 28.0484 27.0922 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 5 P 0.2683 33.0339 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 6 o 11.7037 24.2510 28.2593 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 7 e 11.9151 22.8247 28.2593 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 8 : 12.1807 9.4429 28.2593 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 9 r 11.6264 22.3243 27.0922 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 10 l 0.1463 12.8814 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 11 i -0.7287 12.8814 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 12 1 -0.2105 19.9834 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 13 | -1.1876 4.0083 52.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 14 N 0.0520 40.4323 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 15 f -1.0654 22.9425 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 16 g 12.0385 25.9251 39.7770 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 17 d 0.2385 27.6410 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 18 W 0.0988 58.0445 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 19 s 11.7787 18.1564 28.2593 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 20 c 11.9982 22.6832 28.2593 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 21 u 13.2887 28.0484 27.0922 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 22 3 -0.1143 25.1588 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 23 ~ 18.9217 30.9591 9.1836 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 24 # 0.0799 26.6848 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 25 O -1.9549 40.8329 42.4007 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 26 ` -0.5516 12.5434 9.4429 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 27 @ -0.9358 51.0839 51.9917 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 28 F 0.2870 32.2675 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 29 S -1.1924 26.9744 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 30 p 11.9104 27.6410 39.7770 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 31 “ -1.0170 24.3204 19.1753 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 32 % -0.3882 49.9821 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 33 £ -0.0831 26.8329 40.2147 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 34 . 30.8795 9.4429 9.4429 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 35 2 -0.0616 25.1588 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 36 5 -0.1925 24.8995 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 37 m 11.8814 43.2155 27.0922 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 38 V 0.2312 43.2782 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 39 6 0.3955 24.8995 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 40 w 13.1581 41.7521 27.0922 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 41 T 0.1813 35.1088 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 42 M 0.1362 52.8692 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 43 G -0.9579 42.5185 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 44 b 0.0223 27.6410 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 45 9 -0.2518 24.8995 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 46 ; 12.0054 10.6099 36.8247 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 47 D 0.0857 38.4988 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 48 L 0.4053 35.4792 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 49 y 12.9520 29.1671 38.6099 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 50 ‘ -1.0526 10.6099 19.1753 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 51 \ -1.0469 16.3341 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 52 R 0.2000 41.3515 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 53 < 6.9477 30.8412 26.8329 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 54 4 0.0846 24.8995 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 55 8 0.2484 24.8995 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 56 0 0.0816 25.3999 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 57 A -0.7772 42.0000 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 58 E 0.2870 35.1020 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 59 B 0.0222 35.7687 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 60 v 12.8530 29.4263 27.0922 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 61 k 0.2937 31.2600 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 62 J 0.2461 28.2593 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 63 U 0.3201 39.6659 40.0666 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 64 j -1.3610 15.8337 52.7514 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 65 ( -0.8857 16.1927 52.4988 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 66 7 0.2146 26.0249 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 67 § 0.0370 24.2025 51.7325 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 68 $ -0.9852 25.1103 42.9078 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 69 € 0.0725 29.1671 39.0477 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 70 / -1.2264 18.1261 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 71 C -1.2812 36.8247 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 72 * 0.1223 20.3491 20.7081 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 73 ” -1.2318 24.3204 19.1753 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 74 ? -1.1242 22.4172 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 75 { -2.3546 16.4520 52.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 76 } -1.0574 16.4520 52.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 77 , 29.6360 10.6099 19.1753 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 78 I -0.0311 20.3121 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 79 ° -1.0204 19.7242 20.6017 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 80 K 0.2725 45.8298 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 81 H 0.2976 43.1671 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 82 q 12.0458 27.6410 39.7770 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 83 & -0.9710 43.1671 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 84 ’ -0.9656 10.6099 19.1753 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 85 [ -0.1627 12.0363 50.5654 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 86 - 22.8531 16.1927 5.5828 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 87 Y 0.1539 41.3515 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 88 Q -0.9243 41.0922 49.6509 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 89 " -1.0616 22.4172 18.4090 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 90 ! -0.9910 9.4429 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 91 x 13.1562 27.8519 25.9251 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 92 ) -1.1736 16.1927 52.4988 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 93 = 13.1225 30.8412 13.7407 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 94 + 4.5696 30.4755 30.4755 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 95 X 0.0876 42.8775 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 96 » 13.2129 27.3515 25.9251 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 97 ' -0.8840 7.9169 18.4090 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 98 ¢ 0.2644 22.8247 49.6576 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 99 Z 0.2370 36.6765 38.8995 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 100 > 6.7921 30.8412 26.8329 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 101 ® -0.7526 39.9251 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 102 © -1.2812 39.9251 41.2336 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 103 ] -0.1436 12.0363 50.5654 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 104 é -0.6783 22.8247 40.8026 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 105 z 12.9211 23.7021 25.9251 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 106 _ 47.6931 30.1927 4.0083 -Times_New_Roman_Bold.ttf 45 9 24.8995 39.0477 107 ¥ 0.1852 31.5012 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 1 t -8.4765 17.6493 36.8247 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 2 h -11.6190 28.0484 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 3 a -0.1349 25.4180 28.2593 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 4 n 0.0039 28.0484 27.0922 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 5 P -11.8664 33.0339 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 6 o -0.1440 24.2510 28.2593 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 7 e -0.0552 22.8247 28.2593 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 8 : 0.2220 9.4429 28.2593 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 9 r 0.0058 22.3243 27.0922 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 10 l -11.7703 12.8814 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 11 i -13.2367 12.8814 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 12 1 -11.8281 19.9834 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 13 | -12.9301 4.0083 52.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 14 N -11.8040 40.4323 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 15 f -12.9744 22.9425 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 16 g -0.1687 25.9251 39.7770 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 17 d -11.3749 27.6410 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 18 W -11.8937 58.0445 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 19 s 0.1201 18.1564 28.2593 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 20 c 0.0965 22.6832 28.2593 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 21 u 1.3496 28.0484 27.0922 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 22 3 -11.7926 25.1588 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 23 ~ 6.9720 30.9591 9.1836 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 24 # -11.8847 26.6848 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 25 O -14.1505 40.8329 42.4007 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 26 ` -12.7679 12.5434 9.4429 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 27 @ -12.8148 51.0839 51.9917 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 28 F -11.8015 32.2675 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 29 S -12.8009 26.9744 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 30 p -0.2061 27.6410 39.7770 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 31 “ -13.2261 24.3204 19.1753 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 32 % -11.7820 49.9821 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 33 £ -12.0385 26.8329 40.2147 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 34 . 18.5632 9.4429 9.4429 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 35 2 -12.1318 25.1588 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 36 5 -11.5613 24.8995 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 37 m -0.0692 43.2155 27.0922 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 38 V -11.7967 43.2782 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 39 6 -12.0516 24.8995 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 40 w 1.2559 41.7521 27.0922 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 41 T -11.5508 35.1088 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 42 M -11.8477 52.8692 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 43 G -12.9316 42.5185 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 44 b -11.8962 27.6410 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 45 9 -11.7965 24.8995 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 46 ; 0.0370 10.6099 36.8247 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 47 D -11.8073 38.4988 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 48 L -11.8943 35.4792 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 49 y 1.0720 29.1671 38.6099 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 50 ‘ -12.8985 10.6099 19.1753 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 51 \ -12.9003 16.3341 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 52 R -11.6742 41.3515 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 53 < -5.2690 30.8412 26.8329 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 54 4 -11.8295 24.8995 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 55 8 -11.7302 24.8995 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 56 0 -11.9569 25.3999 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 57 A -12.7951 42.0000 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 58 E -11.6872 35.1020 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 59 B -11.8146 35.7687 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 60 v 0.9580 29.4263 27.0922 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 61 k -11.5022 31.2600 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 62 J -11.6444 28.2593 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 63 U -11.8756 39.6659 40.0666 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 64 j -12.9744 15.8337 52.7514 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 65 ( -13.1406 16.1927 52.4988 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 66 7 -11.5022 26.0249 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 67 § -11.8930 24.2025 51.7325 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 68 $ -13.0215 25.1103 42.9078 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 69 € -11.8608 29.1671 39.0477 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 70 / -12.8633 18.1261 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 71 C -12.9744 36.8247 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 72 * -11.4460 20.3491 20.7081 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 73 ” -12.7407 24.3204 19.1753 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 74 ? -12.9258 22.4172 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 75 { -14.0401 16.4520 52.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 76 } -12.8913 16.4520 52.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 77 , 17.5629 10.6099 19.1753 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 78 I -11.6724 20.3121 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 79 ° -12.8350 19.7242 20.6017 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 80 K -11.6727 45.8298 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 81 H -11.8606 43.1671 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 82 q -0.0889 27.6410 39.7770 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 83 & -12.8873 43.1671 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 84 ’ -12.9677 10.6099 19.1753 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 85 [ -11.8500 12.0363 50.5654 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 86 - 10.9899 16.1927 5.5828 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 87 Y -11.7612 41.3515 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 88 Q -12.8913 41.0922 49.6509 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 89 " -13.2867 22.4172 18.4090 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 90 ! -13.0204 9.4429 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 91 x 1.1637 27.8519 25.9251 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 92 ) -12.8172 16.1927 52.4988 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 93 = 1.1391 30.8412 13.7407 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 94 + -7.4493 30.4755 30.4755 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 95 X -11.5021 42.8775 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 96 » 1.4333 27.3515 25.9251 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 97 ' -12.8952 7.9169 18.4090 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 98 ¢ -11.7703 22.8247 49.6576 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 99 Z -11.9423 36.6765 38.8995 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 100 > -5.1787 30.8412 26.8329 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 101 ® -12.9225 39.9251 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 102 © -12.8076 39.9251 41.2336 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 103 ] -11.8146 12.0363 50.5654 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 104 é -12.5434 22.8247 40.8026 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 105 z 1.2559 23.7021 25.9251 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 106 _ 35.8352 30.1927 4.0083 -Times_New_Roman_Bold.ttf 46 ; 10.6099 36.8247 107 ¥ -11.9347 31.5012 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 1 t 3.2173 17.6493 36.8247 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 2 h -0.0788 28.0484 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 3 a 11.8885 25.4180 28.2593 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 4 n 11.7688 28.0484 27.0922 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 5 P -0.0394 33.0339 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 6 o 11.9668 24.2510 28.2593 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 7 e 11.6353 22.8247 28.2593 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 8 : 11.9418 9.4429 28.2593 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 9 r 11.9169 22.3243 27.0922 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 10 l -0.2571 12.8814 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 11 i -1.5025 12.8814 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 12 1 0.1440 19.9834 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 13 | -1.2967 4.0083 52.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 14 N -0.1748 40.4323 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 15 f -0.9508 22.9425 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 16 g 11.5868 25.9251 39.7770 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 17 d 0.0558 27.6410 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 18 W 0.1590 58.0445 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 19 s 12.0543 18.1564 28.2593 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 20 c 11.7670 22.6832 28.2593 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 21 u 13.1338 28.0484 27.0922 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 22 3 -0.1481 25.1588 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 23 ~ 19.1569 30.9591 9.1836 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 24 # 0.1432 26.6848 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 25 O -2.4984 40.8329 42.4007 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 26 ` -0.9765 12.5434 9.4429 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 27 @ -1.1243 51.0839 51.9917 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 28 F 0.2994 32.2675 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 29 S -0.9200 26.9744 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 30 p 11.8636 27.6410 39.7770 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 31 “ -1.0600 24.3204 19.1753 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 32 % -0.1054 49.9821 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 33 £ -0.1481 26.8329 40.2147 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 34 . 30.6477 9.4429 9.4429 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 35 2 -0.4023 25.1588 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 36 5 -0.0616 24.8995 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 37 m 11.8846 43.2155 27.0922 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 38 V -0.1610 43.2782 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 39 6 -0.2443 24.8995 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 40 w 12.9301 41.7521 27.0922 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 41 T 0.2123 35.1088 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 42 M 0.1865 52.8692 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 43 G -0.9326 42.5185 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 44 b -0.3243 27.6410 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 45 9 -0.1745 24.8995 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 46 ; 11.6857 10.6099 36.8247 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 47 D -0.3156 38.4988 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 48 L 0.1168 35.4792 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 49 y 12.7606 29.1671 38.6099 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 50 ‘ -1.2559 10.6099 19.1753 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 51 \ -1.0230 16.3341 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 52 R -0.0566 41.3515 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 53 < 6.3456 30.8412 26.8329 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 54 4 0.1679 24.8995 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 55 8 -0.2990 24.8995 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 56 0 -0.0334 25.3999 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 57 A -0.8268 42.0000 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 58 E 0.1255 35.1020 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 59 B 0.0816 35.7687 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 60 v 12.9004 29.4263 27.0922 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 61 k 0.1441 31.2600 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 62 J -0.1629 28.2593 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 63 U -0.0091 39.6659 40.0666 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 64 j -1.3390 15.8337 52.7514 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 65 ( -1.0757 16.1927 52.4988 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 66 7 -0.1201 26.0249 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 67 § -0.2639 24.2025 51.7325 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 68 $ -1.1275 25.1103 42.9078 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 69 € -0.5066 29.1671 39.0477 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 70 / -1.4986 18.1261 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 71 C -1.3502 36.8247 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 72 * 0.4363 20.3491 20.7081 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 73 ” -1.5264 24.3204 19.1753 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 74 ? -1.1213 22.4172 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 75 { -1.2867 16.4520 52.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 76 } -2.1952 16.4520 52.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 77 , 29.4081 10.6099 19.1753 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 78 I -0.0399 20.3121 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 79 ° -0.9211 19.7242 20.6017 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 80 K 0.2489 45.8298 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 81 H 0.1792 43.1671 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 82 q 11.7622 27.6410 39.7770 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 83 & -1.3463 43.1671 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 84 ’ -1.5034 10.6099 19.1753 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 85 [ -0.1277 12.0363 50.5654 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 86 - 22.7942 16.1927 5.5828 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 87 Y 0.3809 41.3515 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 88 Q -1.2905 41.0922 49.6509 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 89 " -1.3952 22.4172 18.4090 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 90 ! -1.3866 9.4429 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 91 x 12.9652 27.8519 25.9251 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 92 ) -1.4866 16.1927 52.4988 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 93 = 13.1555 30.8412 13.7407 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 94 + 4.5836 30.4755 30.4755 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 95 X -0.1778 42.8775 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 96 » 12.8960 27.3515 25.9251 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 97 ' -1.0709 7.9169 18.4090 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 98 ¢ 0.1806 22.8247 49.6576 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 99 Z 0.1283 36.6765 38.8995 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 100 > 6.8093 30.8412 26.8329 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 101 ® -1.2396 39.9251 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 102 © -1.0915 39.9251 41.2336 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 103 ] -0.1999 12.0363 50.5654 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 104 é -0.8918 22.8247 40.8026 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 105 z 13.0248 23.7021 25.9251 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 106 _ 47.2544 30.1927 4.0083 -Times_New_Roman_Bold.ttf 47 D 38.4988 38.8995 107 ¥ 0.0312 31.5012 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 1 t 3.1128 17.6493 36.8247 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 2 h 0.1734 28.0484 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 3 a 12.0644 25.4180 28.2593 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 4 n 11.9241 28.0484 27.0922 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 5 P -0.0849 33.0339 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 6 o 11.9995 24.2510 28.2593 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 7 e 11.9183 22.8247 28.2593 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 8 : 11.5785 9.4429 28.2593 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 9 r 12.1403 22.3243 27.0922 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 10 l 0.0427 12.8814 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 11 i -1.1181 12.8814 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 12 1 0.1679 19.9834 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 13 | -1.6071 4.0083 52.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 14 N -0.1705 40.4323 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 15 f -1.0230 22.9425 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 16 g 11.3872 25.9251 39.7770 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 17 d 0.0780 27.6410 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 18 W 0.0519 58.0445 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 19 s 11.5410 18.1564 28.2593 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 20 c 11.9298 22.6832 28.2593 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 21 u 12.8971 28.0484 27.0922 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 22 3 -0.2737 25.1588 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 23 ~ 18.8980 30.9591 9.1836 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 24 # -0.2095 26.6848 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 25 O -2.6987 40.8329 42.4007 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 26 ` -0.5988 12.5434 9.4429 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 27 @ -1.4910 51.0839 51.9917 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 28 F -0.0903 32.2675 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 29 S -1.0459 26.9744 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 30 p 11.5997 27.6410 39.7770 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 31 “ -1.4664 24.3204 19.1753 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 32 % 0.0503 49.9821 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 33 £ 0.0623 26.8329 40.2147 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 34 . 30.5469 9.4429 9.4429 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 35 2 0.1545 25.1588 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 36 5 -0.0831 24.8995 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 37 m 11.8977 43.2155 27.0922 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 38 V -0.2180 43.2782 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 39 6 0.0387 24.8995 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 40 w 13.0023 41.7521 27.0922 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 41 T -0.0529 35.1088 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 42 M 0.1774 52.8692 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 43 G -1.6778 42.5185 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 44 b -0.1427 27.6410 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 45 9 -0.4253 24.8995 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 46 ; 11.6390 10.6099 36.8247 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 47 D 0.0701 38.4988 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 48 L 0.0094 35.4792 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 49 y 13.0747 29.1671 38.6099 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 50 ‘ -1.2613 10.6099 19.1753 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 51 \ -1.0651 16.3341 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 52 R 0.0773 41.3515 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 53 < 6.6785 30.8412 26.8329 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 54 4 0.0978 24.8995 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 55 8 0.0373 24.8995 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 56 0 -0.2132 25.3999 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 57 A -1.6037 42.0000 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 58 E 0.0650 35.1020 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 59 B -0.1335 35.7687 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 60 v 13.2906 29.4263 27.0922 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 61 k -0.0418 31.2600 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 62 J -0.1001 28.2593 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 63 U 0.2437 39.6659 40.0666 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 64 j -1.1489 15.8337 52.7514 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 65 ( -1.2823 16.1927 52.4988 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 66 7 0.0337 26.0249 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 67 § -0.1946 24.2025 51.7325 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 68 $ -1.1853 25.1103 42.9078 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 69 € -0.1539 29.1671 39.0477 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 70 / -1.3555 18.1261 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 71 C -0.9846 36.8247 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 72 * -0.2824 20.3491 20.7081 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 73 ” -1.1119 24.3204 19.1753 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 74 ? -1.3295 22.4172 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 75 { -1.2132 16.4520 52.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 76 } -2.2904 16.4520 52.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 77 , 29.2995 10.6099 19.1753 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 78 I -0.3536 20.3121 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 79 ° -0.7770 19.7242 20.6017 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 80 K 0.0294 45.8298 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 81 H 0.1346 43.1671 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 82 q 11.6093 27.6410 39.7770 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 83 & -1.2098 43.1671 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 84 ’ -1.1964 10.6099 19.1753 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 85 [ -0.0446 12.0363 50.5654 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 86 - 22.8610 16.1927 5.5828 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 87 Y -0.1134 41.3515 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 88 Q -0.9508 41.0922 49.6509 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 89 " -1.1152 22.4172 18.4090 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 90 ! -0.9911 9.4429 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 91 x 12.9772 27.8519 25.9251 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 92 ) -1.1950 16.1927 52.4988 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 93 = 13.2324 30.8412 13.7407 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 94 + 4.2913 30.4755 30.4755 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 95 X -0.2147 42.8775 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 96 » 12.9903 27.3515 25.9251 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 97 ' -1.3838 7.9169 18.4090 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 98 ¢ 0.0773 22.8247 49.6576 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 99 Z 0.2253 36.6765 38.8995 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 100 > 6.7415 30.8412 26.8329 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 101 ® -1.3002 39.9251 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 102 © -1.3409 39.9251 41.2336 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 103 ] 0.2979 12.0363 50.5654 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 104 é -0.9008 22.8247 40.8026 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 105 z 13.1354 23.7021 25.9251 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 106 _ 47.8563 30.1927 4.0083 -Times_New_Roman_Bold.ttf 48 L 35.4792 38.8995 107 ¥ 0.1389 31.5012 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 1 t -9.3831 17.6493 36.8247 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 2 h -13.0608 28.0484 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 3 a -1.0840 25.4180 28.2593 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 4 n -0.9195 28.0484 27.0922 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 5 P -13.0632 33.0339 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 6 o -1.2886 24.2510 28.2593 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 7 e -1.0945 22.8247 28.2593 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 8 : -0.9936 9.4429 28.2593 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 9 r -1.2150 22.3243 27.0922 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 10 l -12.9744 12.8814 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 11 i -14.3461 12.8814 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 12 1 -13.2104 19.9834 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 13 | -14.0982 4.0083 52.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 14 N -13.1478 40.4323 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 15 f -14.0328 22.9425 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 16 g -1.0873 25.9251 39.7770 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 17 d -12.9392 27.6410 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 18 W -12.8946 58.0445 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 19 s -1.2069 18.1564 28.2593 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 20 c -1.1300 22.6832 28.2593 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 21 u -0.0922 28.0484 27.0922 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 22 3 -13.0764 25.1588 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 23 ~ 5.8493 30.9591 9.1836 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 24 # -13.2961 26.6848 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 25 O -15.2569 40.8329 42.4007 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 26 ` -13.7763 12.5434 9.4429 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 27 @ -14.2543 51.0839 51.9917 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 28 F -12.9710 32.2675 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 29 S -14.3101 26.9744 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 30 p -1.1503 27.6410 39.7770 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 31 “ -14.3898 24.3204 19.1753 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 32 % -13.4055 49.9821 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 33 £ -13.1538 26.8329 40.2147 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 34 . 17.6036 9.4429 9.4429 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 35 2 -13.1128 25.1588 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 36 5 -12.8057 24.8995 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 37 m -1.0840 43.2155 27.0922 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 38 V -12.8879 43.2782 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 39 6 -13.1283 24.8995 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 40 w 0.1216 41.7521 27.0922 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 41 T -13.3223 35.1088 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 42 M -13.0771 52.8692 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 43 G -14.4879 42.5185 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 44 b -13.1065 27.6410 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 45 9 -13.2887 24.8995 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 46 ; -1.2189 10.6099 36.8247 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 47 D -13.1503 38.4988 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 48 L -12.8528 35.4792 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 49 y -0.0725 29.1671 38.6099 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 50 ‘ -14.3149 10.6099 19.1753 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 51 \ -14.4778 16.3341 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 52 R -12.8470 41.3515 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 53 < -6.5216 30.8412 26.8329 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 54 4 -13.2926 24.8995 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 55 8 -13.2494 24.8995 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 56 0 -13.1177 25.3999 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 57 A -14.0656 42.0000 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 58 E -13.1382 35.1020 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 59 B -12.8397 35.7687 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 60 v -0.1832 29.4263 27.0922 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 61 k -13.3429 31.2600 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 62 J -12.6688 28.2593 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 63 U -12.8488 39.6659 40.0666 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 64 j -14.0616 15.8337 52.7514 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 65 ( -13.8863 16.1927 52.4988 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 66 7 -13.0502 26.0249 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 67 § -12.9313 24.2025 51.7325 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 68 $ -14.1799 25.1103 42.9078 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 69 € -13.2521 29.1671 39.0477 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 70 / -14.0380 18.1261 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 71 C -14.4560 36.8247 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 72 * -12.6136 20.3491 20.7081 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 73 ” -13.8526 24.3204 19.1753 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 74 ? -14.0944 22.4172 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 75 { -14.0525 16.4520 52.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 76 } -15.2711 16.4520 52.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 77 , 16.5620 10.6099 19.1753 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 78 I -13.0081 20.3121 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 79 ° -14.1189 19.7242 20.6017 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 80 K -12.7182 45.8298 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 81 H -12.8130 43.1671 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 82 q -1.1225 27.6410 39.7770 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 83 & -13.9843 43.1671 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 84 ’ -14.3932 10.6099 19.1753 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 85 [ -13.0041 12.0363 50.5654 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 86 - 9.6864 16.1927 5.5828 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 87 Y -12.9595 41.3515 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 88 Q -14.1802 41.0922 49.6509 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 89 " -14.3711 22.4172 18.4090 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 90 ! -13.8839 9.4429 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 91 x 0.0798 27.8519 25.9251 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 92 ) -14.2855 16.1927 52.4988 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 93 = -0.0048 30.8412 13.7407 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 94 + -8.5659 30.4755 30.4755 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 95 X -12.9744 42.8775 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 96 » -0.0889 27.3515 25.9251 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 97 ' -14.1563 7.9169 18.4090 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 98 ¢ -12.8743 22.8247 49.6576 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 99 Z -12.9253 36.6765 38.8995 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 100 > -6.0431 30.8412 26.8329 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 101 ® -14.1395 39.9251 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 102 © -14.1841 39.9251 41.2336 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 103 ] -13.0541 12.0363 50.5654 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 104 é -13.6719 22.8247 40.8026 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 105 z -0.1274 23.7021 25.9251 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 106 _ 34.4947 30.1927 4.0083 -Times_New_Roman_Bold.ttf 49 y 29.1671 38.6099 107 ¥ -13.1003 31.5012 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 1 t 4.4906 17.6493 36.8247 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 2 h 1.3001 28.0484 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 3 a 13.1093 25.4180 28.2593 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 4 n 12.7091 28.0484 27.0922 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 5 P 0.8779 33.0339 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 6 o 12.8024 24.2510 28.2593 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 7 e 13.2261 22.8247 28.2593 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 8 : 12.9018 9.4429 28.2593 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 9 r 12.7096 22.3243 27.0922 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 10 l 1.1835 12.8814 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 11 i 0.0148 12.8814 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 12 1 1.0170 19.9834 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 13 | -0.0370 4.0083 52.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 14 N 1.3415 40.4323 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 15 f -0.0802 22.9425 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 16 g 12.9388 25.9251 39.7770 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 17 d 1.2526 27.6410 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 18 W 1.2445 58.0445 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 19 s 12.8826 18.1564 28.2593 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 20 c 12.9783 22.6832 28.2593 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 21 u 14.1429 28.0484 27.0922 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 22 3 0.9699 25.1588 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 23 ~ 19.8783 30.9591 9.1836 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 24 # 0.9509 26.6848 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 25 O -1.3520 40.8329 42.4007 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 26 ` 0.3654 12.5434 9.4429 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 27 @ -0.1349 51.0839 51.9917 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 28 F 1.0815 32.2675 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 29 S 0.0000 26.9744 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 30 p 12.8840 27.6410 39.7770 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 31 “ 0.1662 24.3204 19.1753 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 32 % 0.8906 49.9821 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 33 £ 0.9790 26.8329 40.2147 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 34 . 31.7163 9.4429 9.4429 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 35 2 0.9300 25.1588 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 36 5 1.0407 24.8995 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 37 m 13.0517 43.2155 27.0922 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 38 V 0.9984 43.2782 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 39 6 1.0588 24.8995 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 40 w 14.1414 41.7521 27.0922 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 41 T 1.5346 35.1088 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 42 M 1.2131 52.8692 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 43 G 0.0979 42.5185 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 44 b 1.0435 27.6410 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 45 9 1.0813 24.8995 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 46 ; 12.8519 10.6099 36.8247 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 47 D 1.2103 38.4988 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 48 L 1.2886 35.4792 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 49 y 13.9286 29.1671 38.6099 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 50 ‘ 0.0000 10.6099 19.1753 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 51 \ -0.1422 16.3341 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 52 R 1.2559 41.3515 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 53 < 7.8894 30.8412 26.8329 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 54 4 0.9391 24.8995 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 55 8 0.8374 24.8995 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 56 0 0.9272 25.3999 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 57 A -0.1274 42.0000 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 58 E 0.9969 35.1020 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 59 B 1.3390 35.7687 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 60 v 14.1487 29.4263 27.0922 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 61 k 1.2468 31.2600 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 62 J 1.1613 28.2593 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 63 U 1.1762 39.6659 40.0666 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 64 j 0.1759 15.8337 52.7514 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 65 ( 0.0432 16.1927 52.4988 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 66 7 1.4688 26.0249 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 67 § 1.0222 24.2025 51.7325 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 68 $ 0.3363 25.1103 42.9078 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 69 € 0.9333 29.1671 39.0477 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 70 / -0.0500 18.1261 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 71 C 0.0889 36.8247 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 72 * 1.4478 20.3491 20.7081 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 73 ” -0.0870 24.3204 19.1753 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 74 ? 0.0856 22.4172 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 75 { -1.1152 16.4520 52.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 76 } -0.0370 16.4520 52.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 77 , 30.6276 10.6099 19.1753 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 78 I 1.1671 20.3121 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 79 ° 0.1143 19.7242 20.6017 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 80 K 1.1319 45.8298 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 81 H 1.2041 43.1671 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 82 q 12.8452 27.6410 39.7770 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 83 & 0.1307 43.1671 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 84 ’ 0.0312 10.6099 19.1753 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 85 [ 1.0502 12.0363 50.5654 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 86 - 24.0425 16.1927 5.5828 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 87 Y 1.0815 41.3515 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 88 Q -0.1422 41.0922 49.6509 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 89 " 0.0802 22.4172 18.4090 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 90 ! -0.0697 9.4429 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 91 x 13.8955 27.8519 25.9251 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 92 ) -0.0831 16.1927 52.4988 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 93 = 14.0954 30.8412 13.7407 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 94 + 5.4035 30.4755 30.4755 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 95 X 1.2541 42.8775 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 96 » 14.2212 27.3515 25.9251 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 97 ' -0.1037 7.9169 18.4090 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 98 ¢ 0.9965 22.8247 49.6576 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 99 Z 1.3299 36.6765 38.8995 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 100 > 7.6996 30.8412 26.8329 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 101 ® 0.1374 39.9251 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 102 © 0.1422 39.9251 41.2336 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 103 ] 1.0854 12.0363 50.5654 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 104 é 0.5199 22.8247 40.8026 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 105 z 14.3619 23.7021 25.9251 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 106 _ 49.1938 30.1927 4.0083 -Times_New_Roman_Bold.ttf 50 ‘ 10.6099 19.1753 107 ¥ 1.0306 31.5012 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 1 t 4.4518 17.6493 36.8247 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 2 h 1.1671 28.0484 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 3 a 12.7352 25.4180 28.2593 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 4 n 13.0295 28.0484 27.0922 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 5 P 1.2247 33.0339 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 6 o 13.0599 24.2510 28.2593 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 7 e 12.8913 22.8247 28.2593 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 8 : 12.9652 9.4429 28.2593 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 9 r 12.9744 22.3243 27.0922 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 10 l 1.1627 12.8814 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 11 i 0.0086 12.8814 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 12 1 0.9613 19.9834 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 13 | -0.1110 4.0083 52.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 14 N 1.0430 40.4323 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 15 f -0.0019 22.9425 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 16 g 13.0262 25.9251 39.7770 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 17 d 1.1333 27.6410 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 18 W 1.2131 58.0445 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 19 s 13.0451 18.1564 28.2593 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 20 c 12.9037 22.6832 28.2593 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 21 u 13.9752 28.0484 27.0922 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 22 3 1.0204 25.1588 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 23 ~ 20.0517 30.9591 9.1836 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 24 # 1.1671 26.6848 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 25 O -1.1391 40.8329 42.4007 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 26 ` 0.4245 12.5434 9.4429 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 27 @ -0.0980 51.0839 51.9917 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 28 F 1.0753 32.2675 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 29 S -0.0533 26.9744 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 30 p 12.9744 27.6410 39.7770 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 31 “ 0.3388 24.3204 19.1753 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 32 % 1.1876 49.9821 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 33 £ 0.8249 26.8329 40.2147 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 34 . 31.6649 9.4429 9.4429 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 35 2 0.9358 25.1588 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 36 5 1.4275 24.8995 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 37 m 13.0593 43.2155 27.0922 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 38 V 1.1598 43.2782 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 39 6 1.1020 24.8995 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 40 w 14.2318 41.7521 27.0922 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 41 T 1.2189 35.1088 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 42 M 1.1464 52.8692 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 43 G 0.0856 42.5185 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 44 b 1.1656 27.6410 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 45 9 1.0813 24.8995 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 46 ; 13.1387 10.6099 36.8247 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 47 D 1.1282 38.4988 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 48 L 1.1671 35.4792 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 49 y 14.1044 29.1671 38.6099 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 50 ‘ -0.0980 10.6099 19.1753 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 51 \ -0.0033 16.3341 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 52 R 1.2131 41.3515 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 53 < 7.4921 30.8412 26.8329 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 54 4 0.8469 24.8995 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 55 8 1.1005 24.8995 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 56 0 1.1035 25.3999 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 57 A 0.2195 42.0000 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 58 E 1.2559 35.1020 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 59 B 1.2098 35.7687 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 60 v 14.1785 29.4263 27.0922 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 61 k 1.0728 31.2600 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 62 J 1.0873 28.2593 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 63 U 1.1671 39.6659 40.0666 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 64 j 0.1269 15.8337 52.7514 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 65 ( 0.0624 16.1927 52.4988 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 66 7 1.4779 26.0249 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 67 § 0.7584 24.2025 51.7325 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 68 $ 0.0427 25.1103 42.9078 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 69 € 1.1760 29.1671 39.0477 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 70 / -0.0073 18.1261 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 71 C 0.0000 36.8247 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 72 * 1.3962 20.3491 20.7081 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 73 ” 0.1734 24.3204 19.1753 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 74 ? 0.0000 22.4172 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 75 { -1.1743 16.4520 52.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 76 } -0.1629 16.4520 52.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 77 , 30.3613 10.6099 19.1753 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 78 I 1.1722 20.3121 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 79 ° 0.0519 19.7242 20.6017 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 80 K 0.8749 45.8298 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 81 H 1.2429 43.1671 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 82 q 12.9373 27.6410 39.7770 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 83 & -0.1662 43.1671 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 84 ’ -0.1349 10.6099 19.1753 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 85 [ 1.3890 12.0363 50.5654 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 86 - 23.9570 16.1927 5.5828 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 87 Y 1.0767 41.3515 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 88 Q -0.0889 41.0922 49.6509 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 89 " -0.0850 22.4172 18.4090 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 90 ! -0.0462 9.4429 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 91 x 14.1904 27.8519 25.9251 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 92 ) -0.0058 16.1927 52.4988 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 93 = 14.3534 30.8412 13.7407 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 94 + 5.5938 30.4755 30.4755 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 95 X 1.2930 42.8775 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 96 » 14.0929 27.3515 25.9251 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 97 ' 0.0798 7.9169 18.4090 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 98 ¢ 1.1743 22.8247 49.6576 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 99 Z 1.1166 36.6765 38.8995 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 100 > 7.7298 30.8412 26.8329 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 101 ® -0.0404 39.9251 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 102 © 0.0000 39.9251 41.2336 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 103 ] 1.1119 12.0363 50.5654 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 104 é 0.2032 22.8247 40.8026 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 105 z 14.1414 23.7021 25.9251 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 106 _ 48.8100 30.1927 4.0083 -Times_New_Roman_Bold.ttf 51 \ 16.3341 41.2336 107 ¥ 1.2559 31.5012 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 1 t 3.3341 17.6493 36.8247 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 2 h -0.2238 28.0484 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 3 a 11.7260 25.4180 28.2593 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 4 n 11.7223 28.0484 27.0922 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 5 P -0.1710 33.0339 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 6 o 12.0403 24.2510 28.2593 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 7 e 11.8563 22.8247 28.2593 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 8 : 11.8146 9.4429 28.2593 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 9 r 11.5041 22.3243 27.0922 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 10 l -0.1255 12.8814 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 11 i -1.3339 12.8814 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 12 1 0.0144 19.9834 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 13 | -1.0336 4.0083 52.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 14 N 0.0961 40.4323 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 15 f -1.0527 22.9425 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 16 g 12.1533 25.9251 39.7770 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 17 d 0.1177 27.6410 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 18 W -0.1553 58.0445 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 19 s 11.6289 18.1564 28.2593 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 20 c 12.0730 22.6832 28.2593 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 21 u 12.9293 28.0484 27.0922 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 22 3 -0.0698 25.1588 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 23 ~ 18.7024 30.9591 9.1836 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 24 # 0.0016 26.6848 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 25 O -2.5076 40.8329 42.4007 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 26 ` -0.6761 12.5434 9.4429 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 27 @ -1.3414 51.0839 51.9917 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 28 F -0.1494 32.2675 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 29 S -0.8250 26.9744 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 30 p 11.8578 27.6410 39.7770 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 31 “ -1.1631 24.3204 19.1753 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 32 % -0.1198 49.9821 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 33 £ -0.3995 26.8329 40.2147 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 34 . 30.6203 9.4429 9.4429 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 35 2 -0.0963 25.1588 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 36 5 0.1375 24.8995 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 37 m 11.7381 43.2155 27.0922 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 38 V 0.2071 43.2782 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 39 6 -0.2000 24.8995 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 40 w 12.5938 41.7521 27.0922 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 41 T 0.2728 35.1088 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 42 M 0.3446 52.8692 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 43 G -1.3117 42.5185 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 44 b 0.1384 27.6410 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 45 9 -0.3734 24.8995 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 46 ; 11.7242 10.6099 36.8247 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 47 D -0.2514 38.4988 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 48 L -0.0385 35.4792 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 49 y 13.0691 29.1671 38.6099 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 50 ‘ -1.0469 10.6099 19.1753 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 51 \ -1.1724 16.3341 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 52 R -0.2162 41.3515 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 53 < 6.7607 30.8412 26.8329 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 54 4 0.0785 24.8995 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 55 8 -0.2033 24.8995 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 56 0 -0.3216 25.3999 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 57 A -1.2948 42.0000 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 58 E 0.0610 35.1020 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 59 B 0.0399 35.7687 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 60 v 13.1003 29.4263 27.0922 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 61 k 0.0831 31.2600 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 62 J -0.0769 28.2593 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 63 U -0.4622 39.6659 40.0666 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 64 j -1.2131 15.8337 52.7514 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 65 ( -1.1194 16.1927 52.4988 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 66 7 -0.1135 26.0249 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 67 § -0.4855 24.2025 51.7325 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 68 $ -1.1819 25.1103 42.9078 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 69 € -0.3172 29.1671 39.0477 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 70 / -0.9153 18.1261 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 71 C -1.2577 36.8247 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 72 * 0.1150 20.3491 20.7081 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 73 ” -1.3999 24.3204 19.1753 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 74 ? -1.2041 22.4172 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 75 { -1.3242 16.4520 52.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 76 } -2.1727 16.4520 52.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 77 , 29.6286 10.6099 19.1753 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 78 I 0.0370 20.3121 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 79 ° -1.2463 19.7242 20.6017 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 80 K -0.0222 45.8298 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 81 H -0.1869 43.1671 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 82 q 11.6690 27.6410 39.7770 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 83 & -1.1021 43.1671 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 84 ’ -1.5083 10.6099 19.1753 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 85 [ -0.0369 12.0363 50.5654 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 86 - 22.7068 16.1927 5.5828 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 87 Y -0.1999 41.3515 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 88 Q -1.0345 41.0922 49.6509 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 89 " -1.3279 22.4172 18.4090 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 90 ! -1.0397 9.4429 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 91 x 13.0146 27.8519 25.9251 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 92 ) -0.9153 16.1927 52.4988 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 93 = 12.9533 30.8412 13.7407 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 94 + 4.1653 30.4755 30.4755 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 95 X -0.1740 42.8775 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 96 » 13.0248 27.3515 25.9251 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 97 ' -1.1174 7.9169 18.4090 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 98 ¢ 0.0066 22.8247 49.6576 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 99 Z 0.2499 36.6765 38.8995 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 100 > 6.3606 30.8412 26.8329 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 101 ® -0.9921 39.9251 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 102 © -0.9153 39.9251 41.2336 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 103 ] 0.2238 12.0363 50.5654 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 104 é -0.3940 22.8247 40.8026 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 105 z 13.1002 23.7021 25.9251 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 106 _ 47.6813 30.1927 4.0083 -Times_New_Roman_Bold.ttf 52 R 41.3515 38.8995 107 ¥ 0.1647 31.5012 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 1 t -3.3012 17.6493 36.8247 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 2 h -6.5969 28.0484 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 3 a 5.1253 25.4180 28.2593 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 4 n 5.2925 28.0484 27.0922 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 5 P -6.7708 33.0339 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 6 o 4.9261 24.2510 28.2593 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 7 e 5.0792 22.8247 28.2593 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 8 : 5.3026 9.4429 28.2593 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 9 r 4.8299 22.3243 27.0922 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 10 l -6.6877 12.8814 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 11 i -7.7432 12.8814 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 12 1 -6.6970 19.9834 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 13 | -7.9210 4.0083 52.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 14 N -6.7151 40.4323 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 15 f -7.7134 22.9425 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 16 g 5.1383 25.9251 39.7770 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 17 d -6.8160 27.6410 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 18 W -6.4229 58.0445 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 19 s 5.2138 18.1564 28.2593 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 20 c 5.2032 22.6832 28.2593 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 21 u 6.5128 28.0484 27.0922 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 22 3 -6.6187 25.1588 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 23 ~ 12.1517 30.9591 9.1836 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 24 # -6.7626 26.6848 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 25 O -8.8287 40.8329 42.4007 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 26 ` -7.4355 12.5434 9.4429 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 27 @ -7.8682 51.0839 51.9917 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 28 F -6.3802 32.2675 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 29 S -7.5958 26.9744 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 30 p 5.1826 27.6410 39.7770 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 31 “ -7.5781 24.3204 19.1753 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 32 % -6.8204 49.9821 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 33 £ -6.6452 26.8329 40.2147 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 34 . 24.0773 9.4429 9.4429 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 35 2 -6.5490 25.1588 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 36 5 -6.6007 24.8995 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 37 m 5.1845 43.2155 27.0922 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 38 V -6.7281 43.2782 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 39 6 -6.7874 24.8995 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 40 w 6.2963 41.7521 27.0922 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 41 T -6.6690 35.1088 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 42 M -6.6301 52.8692 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 43 G -7.8894 42.5185 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 44 b -6.8467 27.6410 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 45 9 -6.7231 24.8995 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 46 ; 5.1441 10.6099 36.8247 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 47 D -6.6353 38.4988 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 48 L -6.5935 35.4792 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 49 y 6.4418 29.1671 38.6099 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 50 ‘ -7.7250 10.6099 19.1753 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 51 \ -8.1059 16.3341 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 52 R -6.6411 41.3515 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 53 < 0.0058 30.8412 26.8329 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 54 4 -6.7355 24.8995 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 55 8 -6.8508 24.8995 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 56 0 -6.8805 25.3999 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 57 A -7.7957 42.0000 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 58 E -6.8511 35.1020 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 59 B -6.7684 35.7687 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 60 v 6.3055 29.4263 27.0922 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 61 k -6.8358 31.2600 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 62 J -6.7208 28.2593 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 63 U -6.5340 39.6659 40.0666 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 64 j -8.1839 15.8337 52.7514 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 65 ( -7.8303 16.1927 52.4988 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 66 7 -6.4278 26.0249 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 67 § -7.0704 24.2025 51.7325 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 68 $ -7.7678 25.1103 42.9078 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 69 € -6.9502 29.1671 39.0477 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 70 / -7.5915 18.1261 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 71 C -7.6264 36.8247 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 72 * -6.5464 20.3491 20.7081 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 73 ” -7.4973 24.3204 19.1753 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 74 ? -8.0114 22.4172 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 75 { -8.8858 16.4520 52.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 76 } -8.1502 16.4520 52.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 77 , 22.9226 10.6099 19.1753 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 78 I -6.4158 20.3121 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 79 ° -7.7101 19.7242 20.6017 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 80 K -6.8262 45.8298 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 81 H -6.5104 43.1671 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 82 q 5.3042 27.6410 39.7770 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 83 & -8.0153 43.1671 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 84 ’ -8.0105 10.6099 19.1753 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 85 [ -6.2619 12.0363 50.5654 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 86 - 16.0897 16.1927 5.5828 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 87 Y -7.1591 41.3515 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 88 Q -8.0470 41.0922 49.6509 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 89 " -7.7859 22.4172 18.4090 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 90 ! -7.9248 9.4429 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 91 x 6.2949 27.8519 25.9251 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 92 ) -7.8183 16.1927 52.4988 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 93 = 6.3011 30.8412 13.7407 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 94 + -2.1361 30.4755 30.4755 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 95 X -6.5528 42.8775 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 96 » 6.3813 27.3515 25.9251 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 97 ' -7.7990 7.9169 18.4090 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 98 ¢ -6.4884 22.8247 49.6576 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 99 Z -6.6877 36.6765 38.8995 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 100 > -0.0995 30.8412 26.8329 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 101 ® -7.6568 39.9251 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 102 © -7.9207 39.9251 41.2336 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 103 ] -6.4531 12.0363 50.5654 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 104 é -7.3575 22.8247 40.8026 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 105 z 6.5546 23.7021 25.9251 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 106 _ 41.0370 30.1927 4.0083 -Times_New_Roman_Bold.ttf 53 < 30.8412 26.8329 107 ¥ -6.5267 31.5012 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 1 t 3.3194 17.6493 36.8247 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 2 h 0.1500 28.0484 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 3 a 12.0030 25.4180 28.2593 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 4 n 11.7326 28.0484 27.0922 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 5 P 0.2592 33.0339 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 6 o 11.7464 24.2510 28.2593 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 7 e 11.9997 22.8247 28.2593 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 8 : 11.9548 9.4429 28.2593 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 9 r 11.8724 22.3243 27.0922 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 10 l 0.1515 12.8814 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 11 i -1.1184 12.8814 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 12 1 -0.1720 19.9834 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 13 | -0.8469 4.0083 52.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 14 N -0.0420 40.4323 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 15 f -0.9728 22.9425 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 16 g 11.9021 25.9251 39.7770 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 17 d -0.1065 27.6410 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 18 W -0.0796 58.0445 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 19 s 11.7310 18.1564 28.2593 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 20 c 12.0443 22.6832 28.2593 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 21 u 12.9447 28.0484 27.0922 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 22 3 0.1346 25.1588 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 23 ~ 18.9612 30.9591 9.1836 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 24 # 0.0433 26.6848 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 25 O -2.1010 40.8329 42.4007 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 26 ` -0.8581 12.5434 9.4429 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 27 @ -1.1390 51.0839 51.9917 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 28 F 0.1713 32.2675 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 29 S -0.6726 26.9744 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 30 p 11.8825 27.6410 39.7770 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 31 “ -1.0708 24.3204 19.1753 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 32 % 0.0870 49.9821 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 33 £ 0.0995 26.8329 40.2147 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 34 . 30.7643 9.4429 9.4429 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 35 2 0.1052 25.1588 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 36 5 0.1942 24.8995 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 37 m 11.6946 43.2155 27.0922 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 38 V 0.1852 43.2782 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 39 6 0.1875 24.8995 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 40 w 13.1927 41.7521 27.0922 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 41 T 0.1481 35.1088 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 42 M 0.0099 52.8692 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 43 G -0.7672 42.5185 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 44 b 0.2635 27.6410 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 45 9 -0.0404 24.8995 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 46 ; 12.2903 10.6099 36.8247 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 47 D 0.0890 38.4988 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 48 L 0.1967 35.4792 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 49 y 12.8726 29.1671 38.6099 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 50 ‘ -1.1135 10.6099 19.1753 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 51 \ -0.9252 16.3341 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 52 R 0.2779 41.3515 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 53 < 6.6394 30.8412 26.8329 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 54 4 0.1316 24.8995 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 55 8 -0.0773 24.8995 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 56 0 0.0015 25.3999 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 57 A -1.1053 42.0000 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 58 E -0.0325 35.1020 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 59 B 0.1942 35.7687 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 60 v 13.2066 29.4263 27.0922 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 61 k 0.0280 31.2600 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 62 J 0.3258 28.2593 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 63 U 0.1621 39.6659 40.0666 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 64 j -1.1539 15.8337 52.7514 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 65 ( -1.4350 16.1927 52.4988 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 66 7 -0.0180 26.0249 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 67 § 0.2085 24.2025 51.7325 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 68 $ -0.9112 25.1103 42.9078 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 69 € 0.0519 29.1671 39.0477 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 70 / -1.1039 18.1261 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 71 C -1.0708 36.8247 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 72 * 0.3850 20.3491 20.7081 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 73 ” -1.0819 24.3204 19.1753 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 74 ? -1.0026 22.4172 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 75 { -2.1342 16.4520 52.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 76 } -0.8973 16.4520 52.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 77 , 29.4073 10.6099 19.1753 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 78 I 0.3789 20.3121 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 79 ° -1.0131 19.7242 20.6017 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 80 K 0.3999 45.8298 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 81 H 0.4345 43.1671 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 82 q 12.1528 27.6410 39.7770 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 83 & -0.9637 43.1671 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 84 ’ -1.1063 10.6099 19.1753 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 85 [ 0.2279 12.0363 50.5654 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 86 - 22.7661 16.1927 5.5828 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 87 Y 0.2485 41.3515 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 88 Q -1.1644 41.0922 49.6509 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 89 " -1.0266 22.4172 18.4090 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 90 ! -0.9877 9.4429 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 91 x 13.1715 27.8519 25.9251 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 92 ) -1.1909 16.1927 52.4988 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 93 = 13.0057 30.8412 13.7407 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 94 + 4.7431 30.4755 30.4755 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 95 X 0.2015 42.8775 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 96 » 13.0394 27.3515 25.9251 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 97 ' -1.1020 7.9169 18.4090 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 98 ¢ 0.3067 22.8247 49.6576 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 99 Z 0.2316 36.6765 38.8995 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 100 > 7.1280 30.8412 26.8329 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 101 ® -1.1053 39.9251 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 102 © -1.1876 39.9251 41.2336 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 103 ] 0.2697 12.0363 50.5654 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 104 é -0.6783 22.8247 40.8026 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 105 z 12.9491 23.7021 25.9251 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 106 _ 47.8790 30.1927 4.0083 -Times_New_Roman_Bold.ttf 54 4 24.8995 39.0477 107 ¥ 0.0593 31.5012 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 1 t 3.3530 17.6493 36.8247 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 2 h 0.0727 28.0484 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 3 a 12.0400 25.4180 28.2593 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 4 n 11.8162 28.0484 27.0922 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 5 P 0.1852 33.0339 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 6 o 11.9497 24.2510 28.2593 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 7 e 11.8666 22.8247 28.2593 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 8 : 12.0923 9.4429 28.2593 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 9 r 11.7762 22.3243 27.0922 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 10 l 0.0089 12.8814 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 11 i -1.1026 12.8814 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 12 1 -0.3036 19.9834 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 13 | -1.0616 4.0083 52.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 14 N 0.1409 40.4323 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 15 f -0.9325 22.9425 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 16 g 11.8503 25.9251 39.7770 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 17 d 0.4457 27.6410 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 18 W 0.3183 58.0445 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 19 s 12.0650 18.1564 28.2593 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 20 c 12.0385 22.6832 28.2593 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 21 u 12.9505 28.0484 27.0922 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 22 3 0.1811 25.1588 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 23 ~ 18.9251 30.9591 9.1836 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 24 # -0.2578 26.6848 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 25 O -2.3325 40.8329 42.4007 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 26 ` -0.7029 12.5434 9.4429 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 27 @ -0.8858 51.0839 51.9917 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 28 F 0.1779 32.2675 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 29 S -1.0098 26.9744 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 30 p 12.0443 27.6410 39.7770 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 31 “ -0.8840 24.3204 19.1753 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 32 % -0.0537 49.9821 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 33 £ 0.2417 26.8329 40.2147 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 34 . 30.5984 9.4429 9.4429 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 35 2 0.0485 25.1588 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 36 5 0.2279 24.8995 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 37 m 12.1183 43.2155 27.0922 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 38 V 0.2418 43.2782 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 39 6 -0.1053 24.8995 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 40 w 13.1725 41.7521 27.0922 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 41 T 0.1506 35.1088 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 42 M -0.0205 52.8692 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 43 G -0.7156 42.5185 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 44 b -0.0819 27.6410 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 45 9 -0.0831 24.8995 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 46 ; 11.7426 10.6099 36.8247 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 47 D 0.0617 38.4988 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 48 L 0.2846 35.4792 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 49 y 12.9433 29.1671 38.6099 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 50 ‘ -0.9377 10.6099 19.1753 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 51 \ -1.0915 16.3341 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 52 R 0.4368 41.3515 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 53 < 6.3443 30.8412 26.8329 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 54 4 -0.1263 24.8995 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 55 8 0.0052 24.8995 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 56 0 0.0846 25.3999 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 57 A -1.2740 42.0000 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 58 E 0.1942 35.1020 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 59 B 0.0637 35.7687 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 60 v 13.1802 29.4263 27.0922 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 61 k 0.2370 31.2600 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 62 J -0.1004 28.2593 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 63 U 0.0131 39.6659 40.0666 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 64 j -0.9579 15.8337 52.7514 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 65 ( -0.9613 16.1927 52.4988 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 66 7 0.1221 26.0249 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 67 § 0.0148 24.2025 51.7325 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 68 $ -0.7936 25.1103 42.9078 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 69 € 0.1349 29.1671 39.0477 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 70 / -1.2370 18.1261 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 71 C -0.8815 36.8247 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 72 * 0.2145 20.3491 20.7081 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 73 ” -1.1557 24.3204 19.1753 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 74 ? -1.0559 22.4172 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 75 { -2.1360 16.4520 52.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 76 } -0.8310 16.4520 52.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 77 , 29.5900 10.6099 19.1753 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 78 I -0.1142 20.3121 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 79 ° -1.3200 19.7242 20.6017 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 80 K 0.2312 45.8298 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 81 H 0.0651 43.1671 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 82 q 11.9646 27.6410 39.7770 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 83 & -1.0212 43.1671 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 84 ’ -1.2294 10.6099 19.1753 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 85 [ 0.0165 12.0363 50.5654 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 86 - 22.9438 16.1927 5.5828 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 87 Y 0.0963 41.3515 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 88 Q -1.2193 41.0922 49.6509 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 89 " -1.0502 22.4172 18.4090 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 90 ! -1.0001 9.4429 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 91 x 13.0024 27.8519 25.9251 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 92 ) -0.7585 16.1927 52.4988 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 93 = 13.4219 30.8412 13.7407 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 94 + 4.5178 30.4755 30.4755 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 95 X 0.1130 42.8775 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 96 » 12.9857 27.3515 25.9251 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 97 ' -0.8339 7.9169 18.4090 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 98 ¢ 0.0651 22.8247 49.6576 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 99 Z -0.0249 36.6765 38.8995 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 100 > 6.7043 30.8412 26.8329 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 101 ® -0.7951 39.9251 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 102 © -1.0502 39.9251 41.2336 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 103 ] 0.1775 12.0363 50.5654 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 104 é -0.5346 22.8247 40.8026 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 105 z 13.1802 23.7021 25.9251 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 106 _ 48.0352 30.1927 4.0083 -Times_New_Roman_Bold.ttf 55 8 24.8995 39.0477 107 ¥ -0.0238 31.5012 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 1 t 3.1368 17.6493 36.8247 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 2 h 0.5315 28.0484 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 3 a 12.0867 25.4180 28.2593 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 4 n 11.8075 28.0484 27.0922 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 5 P -0.0855 33.0339 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 6 o 11.9646 24.2510 28.2593 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 7 e 12.1361 22.8247 28.2593 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 8 : 12.1644 9.4429 28.2593 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 9 r 11.8517 22.3243 27.0922 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 10 l 0.0759 12.8814 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 11 i -1.2798 12.8814 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 12 1 -0.0366 19.9834 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 13 | -1.1905 4.0083 52.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 14 N 0.1775 40.4323 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 15 f -1.1894 22.9425 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 16 g 11.8632 25.9251 39.7770 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 17 d 0.0222 27.6410 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 18 W 0.3201 58.0445 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 19 s 11.9195 18.1564 28.2593 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 20 c 12.0294 22.6832 28.2593 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 21 u 13.0692 28.0484 27.0922 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 22 3 -0.1316 25.1588 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 23 ~ 19.0625 30.9591 9.1836 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 24 # 0.0756 26.6848 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 25 O -2.1519 40.8329 42.4007 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 26 ` -0.6905 12.5434 9.4429 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 27 @ -1.0156 51.0839 51.9917 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 28 F 0.0963 32.2675 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 29 S -1.3005 26.9744 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 30 p 11.9293 27.6410 39.7770 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 31 “ -1.0222 24.3204 19.1753 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 32 % -0.0246 49.9821 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 33 £ 0.0995 26.8329 40.2147 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 34 . 30.7348 9.4429 9.4429 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 35 2 0.1759 25.1588 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 36 5 -0.0296 24.8995 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 37 m 11.8488 43.2155 27.0922 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 38 V 0.3331 43.2782 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 39 6 -0.0015 24.8995 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 40 w 13.1167 41.7521 27.0922 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 41 T 0.2352 35.1088 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 42 M 0.1448 52.8692 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 43 G -1.0059 42.5185 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 44 b 0.1202 27.6410 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 45 9 0.0000 24.8995 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 46 ; 12.1317 10.6099 36.8247 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 47 D 0.3966 38.4988 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 48 L 0.3259 35.4792 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 49 y 12.9433 29.1671 38.6099 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 50 ‘ -0.7969 10.6099 19.1753 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 51 \ -1.1775 16.3341 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 52 R 0.3668 41.3515 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 53 < 6.6691 30.8412 26.8329 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 54 4 -0.1850 24.8995 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 55 8 -0.1562 24.8995 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 56 0 -0.2657 25.3999 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 57 A -0.8959 42.0000 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 58 E -0.1454 35.1020 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 59 B -0.1148 35.7687 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 60 v 13.2041 29.4263 27.0922 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 61 k 0.2222 31.2600 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 62 J 0.0890 28.2593 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 63 U 0.2769 39.6659 40.0666 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 64 j -0.9896 15.8337 52.7514 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 65 ( -1.0683 16.1927 52.4988 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 66 7 0.1785 26.0249 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 67 § 0.2307 24.2025 51.7325 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 68 $ -1.1876 25.1103 42.9078 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 69 € 0.1778 29.1671 39.0477 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 70 / -1.1041 18.1261 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 71 C -1.1430 36.8247 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 72 * 0.2482 20.3491 20.7081 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 73 ” -1.1463 24.3204 19.1753 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 74 ? -1.4110 22.4172 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 75 { -2.0982 16.4520 52.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 76 } -0.8930 16.4520 52.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 77 , 29.6360 10.6099 19.1753 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 78 I 0.0578 20.3121 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 79 ° -0.6489 19.7242 20.6017 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 80 K 0.0151 45.8298 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 81 H 0.2294 43.1671 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 82 q 11.6258 27.6410 39.7770 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 83 & -1.0228 43.1671 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 84 ’ -1.3258 10.6099 19.1753 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 85 [ 0.0684 12.0363 50.5654 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 86 - 23.0178 16.1927 5.5828 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 87 Y 0.3466 41.3515 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 88 Q -0.8455 41.0922 49.6509 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 89 " -1.1482 22.4172 18.4090 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 90 ! -1.0208 9.4429 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 91 x 13.3743 27.8519 25.9251 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 92 ) -1.1111 16.1927 52.4988 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 93 = 13.0021 30.8412 13.7407 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 94 + 4.4620 30.4755 30.4755 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 95 X 0.3216 42.8775 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 96 » 12.8247 27.3515 25.9251 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 97 ' -1.0164 7.9169 18.4090 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 98 ¢ 0.0617 22.8247 49.6576 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 99 Z 0.1673 36.6765 38.8995 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 100 > 6.9488 30.8412 26.8329 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 101 ® -0.8008 39.9251 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 102 © -1.1299 39.9251 41.2336 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 103 ] 0.2846 12.0363 50.5654 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 104 é -0.4530 22.8247 40.8026 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 105 z 13.2753 23.7021 25.9251 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 106 _ 47.8205 30.1927 4.0083 -Times_New_Roman_Bold.ttf 56 0 25.3999 39.0477 107 ¥ 0.1481 31.5012 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 1 t 4.3311 17.6493 36.8247 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 2 h 1.0469 28.0484 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 3 a 12.8960 25.4180 28.2593 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 4 n 12.9845 28.0484 27.0922 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 5 P 1.1694 33.0339 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 6 o 13.0200 24.2510 28.2593 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 7 e 12.7505 22.8247 28.2593 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 8 : 12.5495 9.4429 28.2593 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 9 r 13.0796 22.3243 27.0922 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 10 l 1.2459 12.8814 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 11 i 0.2426 12.8814 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 12 1 1.4514 19.9834 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 13 | -0.1662 4.0083 52.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 14 N 1.0445 40.4323 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 15 f -0.0058 22.9425 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 16 g 12.9341 25.9251 39.7770 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 17 d 1.4649 27.6410 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 18 W 1.3260 58.0445 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 19 s 13.0186 18.1564 28.2593 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 20 c 13.0662 22.6832 28.2593 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 21 u 14.2691 28.0484 27.0922 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 22 3 1.3429 25.1588 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 23 ~ 20.0291 30.9591 9.1836 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 24 # 1.3684 26.6848 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 25 O -1.0887 40.8329 42.4007 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 26 ` 0.4097 12.5434 9.4429 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 27 @ -0.1029 51.0839 51.9917 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 28 F 1.1925 32.2675 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 29 S 0.2475 26.9744 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 30 p 12.8750 27.6410 39.7770 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 31 “ 0.2085 24.3204 19.1753 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 32 % 1.0283 49.9821 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 33 £ 0.9314 26.8329 40.2147 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 34 . 32.1905 9.4429 9.4429 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 35 2 1.2928 25.1588 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 36 5 1.2978 24.8995 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 37 m 12.3054 43.2155 27.0922 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 38 V 1.2127 43.2782 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 39 6 0.9892 24.8995 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 40 w 14.1328 41.7521 27.0922 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 41 T 1.3712 35.1088 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 42 M 1.0321 52.8692 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 43 G 0.1374 42.5185 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 44 b 1.1094 27.6410 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 45 9 0.9829 24.8995 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 46 ; 13.0850 10.6099 36.8247 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 47 D 1.1837 38.4988 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 48 L 1.2444 35.4792 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 49 y 14.2409 29.1671 38.6099 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 50 ‘ -0.1349 10.6099 19.1753 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 51 \ -0.1927 16.3341 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 52 R 1.2867 41.3515 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 53 < 7.6847 30.8412 26.8329 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 54 4 1.1285 24.8995 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 55 8 0.8306 24.8995 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 56 0 1.0632 25.3999 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 57 A 0.1235 42.0000 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 58 E 0.9807 35.1020 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 59 B 1.1940 35.7687 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 60 v 14.1987 29.4263 27.0922 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 61 k 1.1537 31.2600 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 62 J 1.3534 28.2593 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 63 U 0.8691 39.6659 40.0666 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 64 j 0.0417 15.8337 52.7514 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 65 ( -0.0624 16.1927 52.4988 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 66 7 0.9638 26.0249 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 67 § 1.2057 24.2025 51.7325 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 68 $ 0.1441 25.1103 42.9078 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 69 € 0.8124 29.1671 39.0477 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 70 / 0.0681 18.1261 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 71 C -0.0613 36.8247 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 72 * 1.0609 20.3491 20.7081 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 73 ” 0.1096 24.3204 19.1753 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 74 ? 0.0352 22.4172 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 75 { -0.1178 16.4520 52.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 76 } -1.3670 16.4520 52.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 77 , 30.2833 10.6099 19.1753 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 78 I 1.2559 20.3121 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 79 ° -0.2205 19.7242 20.6017 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 80 K 1.0263 45.8298 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 81 H 1.3257 43.1671 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 82 q 13.1757 27.6410 39.7770 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 83 & 0.1321 43.1671 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 84 ’ -0.0635 10.6099 19.1753 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 85 [ 0.8931 12.0363 50.5654 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 86 - 23.5778 16.1927 5.5828 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 87 Y 1.0560 41.3515 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 88 Q 0.0576 41.0922 49.6509 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 89 " -0.0404 22.4172 18.4090 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 90 ! 0.0951 9.4429 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 91 x 14.2567 27.8519 25.9251 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 92 ) 0.2460 16.1927 52.4988 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 93 = 13.9390 30.8412 13.7407 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 94 + 5.7135 30.4755 30.4755 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 95 X 1.5139 42.8775 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 96 » 13.9107 27.3515 25.9251 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 97 ' 0.0163 7.9169 18.4090 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 98 ¢ 1.0661 22.8247 49.6576 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 99 Z 1.2041 36.6765 38.8995 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 100 > 7.7827 30.8412 26.8329 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 101 ® -0.1696 39.9251 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 102 © 0.0792 39.9251 41.2336 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 103 ] 0.9663 12.0363 50.5654 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 104 é 0.5122 22.8247 40.8026 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 105 z 14.1375 23.7021 25.9251 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 106 _ 48.9721 30.1927 4.0083 -Times_New_Roman_Bold.ttf 57 A 42.0000 40.0666 107 ¥ 1.1631 31.5012 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 1 t 3.2866 17.6493 36.8247 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 2 h 0.0033 28.0484 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 3 a 11.5131 25.4180 28.2593 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 4 n 11.8116 28.0484 27.0922 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 5 P -0.2090 33.0339 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 6 o 11.5613 24.2510 28.2593 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 7 e 12.0220 22.8247 28.2593 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 8 : 11.3912 9.4429 28.2593 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 9 r 11.5868 22.3243 27.0922 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 10 l 0.2383 12.8814 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 11 i -1.1333 12.8814 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 12 1 -0.2610 19.9834 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 13 | -1.0171 4.0083 52.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 14 N -0.1096 40.4323 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 15 f -1.0829 22.9425 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 16 g 12.1431 25.9251 39.7770 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 17 d 0.2461 27.6410 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 18 W -0.0404 58.0445 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 19 s 11.5737 18.1564 28.2593 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 20 c 12.0624 22.6832 28.2593 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 21 u 12.8369 28.0484 27.0922 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 22 3 0.3241 25.1588 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 23 ~ 18.7289 30.9591 9.1836 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 24 # -0.3349 26.6848 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 25 O -2.2619 40.8329 42.4007 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 26 ` -0.9015 12.5434 9.4429 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 27 @ -1.4000 51.0839 51.9917 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 28 F 0.0903 32.2675 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 29 S -1.3684 26.9744 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 30 p 11.9016 27.6410 39.7770 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 31 “ -1.0282 24.3204 19.1753 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 32 % 0.1088 49.9821 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 33 £ -0.0564 26.8329 40.2147 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 34 . 30.6722 9.4429 9.4429 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 35 2 -0.4423 25.1588 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 36 5 -0.2849 24.8995 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 37 m 11.6426 43.2155 27.0922 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 38 V 0.2964 43.2782 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 39 6 -0.0607 24.8995 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 40 w 12.5771 41.7521 27.0922 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 41 T 0.3393 35.1088 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 42 M -0.1774 52.8692 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 43 G -0.8595 42.5185 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 44 b 0.0446 27.6410 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 45 9 -0.4038 24.8995 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 46 ; 11.8130 10.6099 36.8247 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 47 D 0.0404 38.4988 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 48 L 0.1143 35.4792 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 49 y 13.0517 29.1671 38.6099 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 50 ‘ -1.0748 10.6099 19.1753 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 51 \ -0.6770 16.3341 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 52 R -0.2220 41.3515 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 53 < 6.6315 30.8412 26.8329 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 54 4 -0.3183 24.8995 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 55 8 -0.1333 24.8995 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 56 0 -0.1496 25.3999 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 57 A -1.0767 42.0000 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 58 E 0.0255 35.1020 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 59 B -0.0014 35.7687 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 60 v 12.9687 29.4263 27.0922 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 61 k 0.0664 31.2600 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 62 J 0.0921 28.2593 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 63 U -0.0058 39.6659 40.0666 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 64 j -1.0748 15.8337 52.7514 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 65 ( -1.1858 16.1927 52.4988 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 66 7 0.0388 26.0249 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 67 § 0.1585 24.2025 51.7325 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 68 $ -0.9759 25.1103 42.9078 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 69 € -0.4086 29.1671 39.0477 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 70 / -1.0042 18.1261 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 71 C -1.0536 36.8247 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 72 * 0.1624 20.3491 20.7081 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 73 ” -1.3054 24.3204 19.1753 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 74 ? -1.4336 22.4172 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 75 { -1.2911 16.4520 52.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 76 } -2.2898 16.4520 52.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 77 , 29.5891 10.6099 19.1753 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 78 I -0.0826 20.3121 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 79 ° -1.0728 19.7242 20.6017 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 80 K -0.1600 45.8298 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 81 H -0.0566 43.1671 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 82 q 12.2753 27.6410 39.7770 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 83 & -1.1300 43.1671 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 84 ’ -0.9378 10.6099 19.1753 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 85 [ 0.0490 12.0363 50.5654 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 86 - 22.7159 16.1927 5.5828 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 87 Y -0.0947 41.3515 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 88 Q -1.0576 41.0922 49.6509 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 89 " -1.4751 22.4172 18.4090 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 90 ! -1.0673 9.4429 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 91 x 13.1209 27.8519 25.9251 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 92 ) -0.9465 16.1927 52.4988 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 93 = 12.9431 30.8412 13.7407 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 94 + 4.1904 30.4755 30.4755 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 95 X -0.0461 42.8775 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 96 » 12.7562 27.3515 25.9251 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 97 ' -1.0321 7.9169 18.4090 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 98 ¢ -0.0149 22.8247 49.6576 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 99 Z -0.5035 36.6765 38.8995 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 100 > 6.5936 30.8412 26.8329 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 101 ® -0.9052 39.9251 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 102 © -1.0725 39.9251 41.2336 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 103 ] -0.1063 12.0363 50.5654 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 104 é -0.5982 22.8247 40.8026 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 105 z 12.8115 23.7021 25.9251 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 106 _ 47.2966 30.1927 4.0083 -Times_New_Roman_Bold.ttf 58 E 35.1020 38.8995 107 ¥ -0.4439 31.5012 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 1 t 3.1603 17.6493 36.8247 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 2 h 0.3685 28.0484 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 3 a 11.3835 25.4180 28.2593 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 4 n 11.8146 28.0484 27.0922 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 5 P -0.2532 33.0339 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 6 o 11.7660 24.2510 28.2593 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 7 e 11.6353 22.8247 28.2593 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 8 : 11.8073 9.4429 28.2593 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 9 r 11.8146 22.3243 27.0922 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 10 l -0.2475 12.8814 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 11 i -1.1355 12.8814 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 12 1 -0.0079 19.9834 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 13 | -1.1598 4.0083 52.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 14 N 0.4662 40.4323 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 15 f -1.4169 22.9425 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 16 g 11.7275 25.9251 39.7770 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 17 d -0.0856 27.6410 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 18 W 0.0356 58.0445 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 19 s 12.1898 18.1564 28.2593 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 20 c 11.7925 22.6832 28.2593 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 21 u 12.7647 28.0484 27.0922 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 22 3 -0.2370 25.1588 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 23 ~ 18.6299 30.9591 9.1836 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 24 # 0.3555 26.6848 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 25 O -2.3986 40.8329 42.4007 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 26 ` -1.1056 12.5434 9.4429 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 27 @ -1.2458 51.0839 51.9917 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 28 F -0.2500 32.2675 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 29 S -1.4928 26.9744 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 30 p 11.8127 27.6410 39.7770 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 31 “ -1.3400 24.3204 19.1753 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 32 % -0.3520 49.9821 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 33 £ -0.1934 26.8329 40.2147 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 34 . 30.4608 9.4429 9.4429 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 35 2 -0.1390 25.1588 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 36 5 -0.0519 24.8995 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 37 m 11.8185 43.2155 27.0922 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 38 V -0.0380 43.2782 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 39 6 -0.1606 24.8995 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 40 w 13.2287 41.7521 27.0922 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 41 T 0.2119 35.1088 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 42 M -0.0700 52.8692 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 43 G -1.2987 42.5185 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 44 b 0.1595 27.6410 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 45 9 -0.1347 24.8995 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 46 ; 11.4667 10.6099 36.8247 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 47 D -0.1745 38.4988 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 48 L 0.3440 35.4792 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 49 y 13.1670 29.1671 38.6099 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 50 ‘ -0.9984 10.6099 19.1753 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 51 \ -1.2632 16.3341 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 52 R 0.0591 41.3515 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 53 < 7.0826 30.8412 26.8329 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 54 4 -0.2856 24.8995 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 55 8 -0.1735 24.8995 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 56 0 -0.0930 25.3999 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 57 A -1.1152 42.0000 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 58 E -0.1168 35.1020 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 59 B 0.1422 35.7687 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 60 v 13.0176 29.4263 27.0922 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 61 k 0.2162 31.2600 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 62 J 0.2014 28.2593 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 63 U 0.1192 39.6659 40.0666 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 64 j -0.8899 15.8337 52.7514 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 65 ( -1.3411 16.1927 52.4988 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 66 7 0.2368 26.0249 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 67 § -0.3941 24.2025 51.7325 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 68 $ -0.9806 25.1103 42.9078 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 69 € -0.0299 29.1671 39.0477 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 70 / -1.5741 18.1261 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 71 C -1.0960 36.8247 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 72 * 0.0894 20.3491 20.7081 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 73 ” -1.2722 24.3204 19.1753 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 74 ? -0.9523 22.4172 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 75 { -1.1671 16.4520 52.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 76 } -2.2808 16.4520 52.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 77 , 29.3760 10.6099 19.1753 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 78 I 0.0428 20.3121 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 79 ° -1.2468 19.7242 20.6017 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 80 K 0.2493 45.8298 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 81 H 0.1269 43.1671 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 82 q 11.7794 27.6410 39.7770 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 83 & -1.2135 43.1671 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 84 ’ -1.3036 10.6099 19.1753 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 85 [ -0.3848 12.0363 50.5654 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 86 - 22.9749 16.1927 5.5828 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 87 Y 0.0961 41.3515 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 88 Q -1.3358 41.0922 49.6509 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 89 " -1.2502 22.4172 18.4090 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 90 ! -1.1924 9.4429 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 91 x 13.0820 27.8519 25.9251 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 92 ) -1.4573 16.1927 52.4988 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 93 = 13.0171 30.8412 13.7407 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 94 + 4.5431 30.4755 30.4755 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 95 X -0.0268 42.8775 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 96 » 12.9772 27.3515 25.9251 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 97 ' -1.2011 7.9169 18.4090 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 98 ¢ -0.2057 22.8247 49.6576 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 99 Z 0.0903 36.6765 38.8995 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 100 > 6.6805 30.8412 26.8329 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 101 ® -1.3521 39.9251 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 102 © -1.2563 39.9251 41.2336 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 103 ] -0.2119 12.0363 50.5654 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 104 é -0.6848 22.8247 40.8026 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 105 z 12.9652 23.7021 25.9251 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 106 _ 48.1119 30.1927 4.0083 -Times_New_Roman_Bold.ttf 59 B 35.7687 38.8995 107 ¥ -0.0462 31.5012 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 1 t -9.7400 17.6493 36.8247 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 2 h -12.9258 28.0484 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 3 a -1.2872 25.4180 28.2593 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 4 n -1.1743 28.0484 27.0922 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 5 P -13.0301 33.0339 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 6 o -1.0412 24.2510 28.2593 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 7 e -1.1210 22.8247 28.2593 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 8 : -1.2041 9.4429 28.2593 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 9 r -1.3005 22.3243 27.0922 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 10 l -13.1333 12.8814 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 11 i -14.3619 12.8814 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 12 1 -13.2941 19.9834 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 13 | -13.8809 4.0083 52.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 14 N -12.8913 40.4323 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 15 f -14.0616 22.9425 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 16 g -0.8158 25.9251 39.7770 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 17 d -13.1463 27.6410 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 18 W -12.9710 58.0445 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 19 s -1.0873 18.1564 28.2593 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 20 c -1.3390 22.6832 28.2593 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 21 u 0.0000 28.0484 27.0922 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 22 3 -13.0634 25.1588 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 23 ~ 5.6661 30.9591 9.1836 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 24 # -13.0176 26.6848 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 25 O -15.2657 40.8329 42.4007 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 26 ` -13.8591 12.5434 9.4429 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 27 @ -14.2861 51.0839 51.9917 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 28 F -12.9816 32.2675 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 29 S -14.0246 26.9744 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 30 p -1.2502 27.6410 39.7770 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 31 “ -14.1356 24.3204 19.1753 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 32 % -13.3800 49.9821 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 33 £ -13.0082 26.8329 40.2147 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 34 . 17.4346 9.4429 9.4429 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 35 2 -13.1225 25.1588 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 36 5 -13.1382 24.8995 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 37 m -1.1387 43.2155 27.0922 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 38 V -12.9791 43.2782 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 39 6 -13.0816 24.8995 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 40 w -0.0879 41.7521 27.0922 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 41 T -12.8412 35.1088 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 42 M -12.8855 52.8692 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 43 G -14.0108 42.5185 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 44 b -12.8394 27.6410 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 45 9 -12.9491 24.8995 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 46 ; -1.2117 10.6099 36.8247 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 47 D -12.9061 38.4988 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 48 L -13.1282 35.4792 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 49 y 0.0971 29.1671 38.6099 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 50 ‘ -13.9688 10.6099 19.1753 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 51 \ -13.9785 16.3341 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 52 R -13.0295 41.3515 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 53 < -5.9666 30.8412 26.8329 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 54 4 -13.1692 24.8995 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 55 8 -13.1167 24.8995 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 56 0 -13.3045 25.3999 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 57 A -14.2423 42.0000 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 58 E -13.3073 35.1020 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 59 B -12.9744 35.7687 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 60 v -0.1716 29.4263 27.0922 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 61 k -12.9744 31.2600 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 62 J -12.8115 28.2593 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 63 U -13.1997 39.6659 40.0666 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 64 j -14.2303 15.8337 52.7514 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 65 ( -14.2005 16.1927 52.4988 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 66 7 -13.3622 26.0249 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 67 § -12.9433 24.2025 51.7325 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 68 $ -13.8824 25.1103 42.9078 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 69 € -13.0707 29.1671 39.0477 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 70 / -14.4302 18.1261 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 71 C -14.3264 36.8247 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 72 * -12.8969 20.3491 20.7081 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 73 ” -14.1785 24.3204 19.1753 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 74 ? -14.1116 22.4172 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 75 { -13.8420 16.4520 52.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 76 } -15.3974 16.4520 52.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 77 , 16.5063 10.6099 19.1753 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 78 I -12.7630 20.3121 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 79 ° -14.1417 19.7242 20.6017 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 80 K -12.8057 45.8298 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 81 H -13.0964 43.1671 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 82 q -1.0502 27.6410 39.7770 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 83 & -13.9785 43.1671 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 84 ’ -14.3601 10.6099 19.1753 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 85 [ -13.1002 12.0363 50.5654 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 86 - 9.6454 16.1927 5.5828 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 87 Y -13.2944 41.3515 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 88 Q -13.9070 41.0922 49.6509 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 89 " -14.2393 22.4172 18.4090 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 90 ! -14.3519 9.4429 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 91 x -0.0903 27.8519 25.9251 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 92 ) -14.1472 16.1927 52.4988 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 93 = -0.0610 30.8412 13.7407 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 94 + -8.5914 30.4755 30.4755 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 95 X -13.0575 42.8775 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 96 » 0.1013 27.3515 25.9251 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 97 ' -13.9694 7.9169 18.4090 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 98 ¢ -12.8830 22.8247 49.6576 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 99 Z -12.9830 36.6765 38.8995 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 100 > -6.3399 30.8412 26.8329 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 101 ® -14.1678 39.9251 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 102 © -14.0968 39.9251 41.2336 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 103 ] -12.8764 12.0363 50.5654 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 104 é -13.8806 22.8247 40.8026 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 105 z -0.0831 23.7021 25.9251 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 106 _ 34.6150 30.1927 4.0083 -Times_New_Roman_Bold.ttf 60 v 29.4263 27.0922 107 ¥ -13.1151 31.5012 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 1 t 3.1142 17.6493 36.8247 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 2 h 0.0000 28.0484 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 3 a 11.7555 25.4180 28.2593 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 4 n 11.8923 28.0484 27.0922 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 5 P -0.1403 33.0339 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 6 o 11.6401 24.2510 28.2593 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 7 e 12.0278 22.8247 28.2593 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 8 : 11.9389 9.4429 28.2593 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 9 r 11.8491 22.3243 27.0922 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 10 l -0.1273 12.8814 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 11 i -1.0415 12.8814 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 12 1 0.2022 19.9834 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 13 | -1.1671 4.0083 52.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 14 N 0.2551 40.4323 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 15 f -1.1921 22.9425 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 16 g 11.4594 25.9251 39.7770 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 17 d -0.0207 27.6410 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 18 W 0.1335 58.0445 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 19 s 11.9971 18.1564 28.2593 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 20 c 11.6785 22.6832 28.2593 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 21 u 13.0945 28.0484 27.0922 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 22 3 -0.3259 25.1588 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 23 ~ 19.0325 30.9591 9.1836 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 24 # -0.0903 26.6848 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 25 O -2.4230 40.8329 42.4007 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 26 ` -0.8285 12.5434 9.4429 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 27 @ -1.0042 51.0839 51.9917 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 28 F -0.0846 32.2675 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 29 S -0.7692 26.9744 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 30 p 11.6642 27.6410 39.7770 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 31 “ -1.1579 24.3204 19.1753 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 32 % 0.2622 49.9821 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 33 £ -0.1169 26.8329 40.2147 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 34 . 30.5275 9.4429 9.4429 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 35 2 -0.1515 25.1588 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 36 5 0.1720 24.8995 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 37 m 11.5464 43.2155 27.0922 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 38 V 0.2158 43.2782 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 39 6 -0.3216 24.8995 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 40 w 12.8115 41.7521 27.0922 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 41 T -0.3033 35.1088 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 42 M -0.1701 52.8692 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 43 G -1.1583 42.5185 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 44 b 0.2180 27.6410 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 45 9 0.0296 24.8995 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 46 ; 11.8069 10.6099 36.8247 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 47 D -0.1687 38.4988 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 48 L 0.0145 35.4792 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 49 y 12.8442 29.1671 38.6099 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 50 ‘ -0.7898 10.6099 19.1753 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 51 \ -1.2856 16.3341 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 52 R -0.0482 41.3515 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 53 < 6.6646 30.8412 26.8329 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 54 4 -0.2370 24.8995 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 55 8 0.1867 24.8995 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 56 0 -0.1539 25.3999 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 57 A -1.2083 42.0000 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 58 E 0.1994 35.1020 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 59 B 0.1777 35.7687 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 60 v 12.9686 29.4263 27.0922 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 61 k 0.3127 31.2600 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 62 J -0.1096 28.2593 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 63 U 0.0461 39.6659 40.0666 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 64 j -1.2574 15.8337 52.7514 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 65 ( -0.9624 16.1927 52.4988 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 66 7 0.0073 26.0249 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 67 § -0.2352 24.2025 51.7325 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 68 $ -1.4097 25.1103 42.9078 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 69 € -0.1794 29.1671 39.0477 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 70 / -1.2069 18.1261 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 71 C -1.1152 36.8247 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 72 * 0.0434 20.3491 20.7081 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 73 ” -1.1790 24.3204 19.1753 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 74 ? -1.2636 22.4172 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 75 { -1.3842 16.4520 52.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 76 } -2.4466 16.4520 52.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 77 , 29.4657 10.6099 19.1753 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 78 I -0.0399 20.3121 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 79 ° -1.2813 19.7242 20.6017 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 80 K 0.0109 45.8298 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 81 H -0.2105 43.1671 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 82 q 11.6078 27.6410 39.7770 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 83 & -1.0873 43.1671 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 84 ’ -1.1728 10.6099 19.1753 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 85 [ -0.2584 12.0363 50.5654 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 86 - 22.4532 16.1927 5.5828 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 87 Y -0.1999 41.3515 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 88 Q -1.0834 41.0922 49.6509 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 89 " -1.1685 22.4172 18.4090 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 90 ! -1.3318 9.4429 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 91 x 12.8855 27.8519 25.9251 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 92 ) -1.2468 16.1927 52.4988 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 93 = 13.2127 30.8412 13.7407 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 94 + 4.4171 30.4755 30.4755 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 95 X -0.1082 42.8775 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 96 » 13.2074 27.3515 25.9251 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 97 ' -1.1358 7.9169 18.4090 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 98 ¢ -0.0028 22.8247 49.6576 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 99 Z -0.0831 36.6765 38.8995 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 100 > 6.5489 30.8412 26.8329 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 101 ® -1.1344 39.9251 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 102 © -1.2502 39.9251 41.2336 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 103 ] -0.0327 12.0363 50.5654 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 104 é -0.6433 22.8247 40.8026 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 105 z 12.8946 23.7021 25.9251 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 106 _ 47.9360 30.1927 4.0083 -Times_New_Roman_Bold.ttf 61 k 31.2600 38.8995 107 ¥ -0.0370 31.5012 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 1 t 3.1476 17.6493 36.8247 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 2 h -0.1037 28.0484 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 3 a 11.5541 25.4180 28.2593 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 4 n 11.9793 28.0484 27.0922 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 5 P 0.0831 33.0339 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 6 o 11.6353 24.2510 28.2593 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 7 e 11.8592 22.8247 28.2593 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 8 : 11.8962 9.4429 28.2593 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 9 r 11.5829 22.3243 27.0922 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 10 l 0.0856 12.8814 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 11 i -1.2146 12.8814 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 12 1 0.1075 19.9834 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 13 | -1.0676 4.0083 52.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 14 N 0.3603 40.4323 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 15 f -1.0988 22.9425 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 16 g 11.6296 25.9251 39.7770 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 17 d 0.0903 27.6410 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 18 W 0.0039 58.0445 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 19 s 12.0159 18.1564 28.2593 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 20 c 11.9832 22.6832 28.2593 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 21 u 13.1978 28.0484 27.0922 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 22 3 -0.2722 25.1588 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 23 ~ 18.7645 30.9591 9.1836 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 24 # 0.0015 26.6848 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 25 O -2.2895 40.8329 42.4007 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 26 ` -0.8702 12.5434 9.4429 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 27 @ -1.1671 51.0839 51.9917 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 28 F -0.1259 32.2675 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 29 S -1.4442 26.9744 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 30 p 11.9812 27.6410 39.7770 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 31 “ -1.1699 24.3204 19.1753 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 32 % 0.0738 49.9821 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 33 £ -0.2918 26.8329 40.2147 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 34 . 30.5718 9.4429 9.4429 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 35 2 -0.2370 25.1588 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 36 5 -0.0500 24.8995 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 37 m 11.5522 43.2155 27.0922 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 38 V -0.0428 43.2782 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 39 6 -0.0280 24.8995 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 40 w 13.0070 41.7521 27.0922 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 41 T -0.0519 35.1088 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 42 M -0.1349 52.8692 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 43 G -1.3862 42.5185 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 44 b 0.1259 27.6410 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 45 9 -0.1448 24.8995 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 46 ; 11.8592 10.6099 36.8247 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 47 D -0.2518 38.4988 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 48 L 0.1316 35.4792 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 49 y 12.8297 29.1671 38.6099 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 50 ‘ -1.0485 10.6099 19.1753 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 51 \ -1.2363 16.3341 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 52 R -0.1226 41.3515 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 53 < 6.7563 30.8412 26.8329 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 54 4 -0.0132 24.8995 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 55 8 0.0609 24.8995 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 56 0 0.1218 25.3999 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 57 A -0.9505 42.0000 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 58 E -0.1038 35.1020 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 59 B -0.0033 35.7687 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 60 v 13.0186 29.4263 27.0922 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 61 k 0.0650 31.2600 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 62 J 0.0798 28.2593 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 63 U -0.1259 39.6659 40.0666 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 64 j -1.0906 15.8337 52.7514 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 65 ( -0.9114 16.1927 52.4988 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 66 7 0.3344 26.0249 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 67 § -0.1982 24.2025 51.7325 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 68 $ -1.1704 25.1103 42.9078 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 69 € -0.3201 29.1671 39.0477 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 70 / -1.2008 18.1261 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 71 C -1.1319 36.8247 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 72 * 0.1073 20.3491 20.7081 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 73 ” -1.0354 24.3204 19.1753 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 74 ? -1.1671 22.4172 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 75 { -1.3332 16.4520 52.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 76 } -2.2557 16.4520 52.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 77 , 29.1112 10.6099 19.1753 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 78 I 0.0591 20.3121 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 79 ° -1.2574 19.7242 20.6017 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 80 K -0.0279 45.8298 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 81 H 0.1898 43.1671 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 82 q 11.8592 27.6410 39.7770 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 83 & -1.2541 43.1671 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 84 ’ -1.0911 10.6099 19.1753 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 85 [ -0.1049 12.0363 50.5654 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 86 - 22.5904 16.1927 5.5828 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 87 Y -0.3584 41.3515 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 88 Q -1.2189 41.0922 49.6509 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 89 " -1.1623 22.4172 18.4090 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 90 ! -1.2335 9.4429 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 91 x 12.9004 27.8519 25.9251 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 92 ) -1.1391 16.1927 52.4988 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 93 = 12.9696 30.8412 13.7407 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 94 + 4.1697 30.4755 30.4755 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 95 X -0.5674 42.8775 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 96 » 13.0171 27.3515 25.9251 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 97 ' -0.8158 7.9169 18.4090 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 98 ¢ -0.2168 22.8247 49.6576 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 99 Z -0.0016 36.6765 38.8995 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 100 > 6.5547 30.8412 26.8329 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 101 ® -1.3967 39.9251 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 102 © -0.8398 39.9251 41.2336 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 103 ] 0.0092 12.0363 50.5654 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 104 é -0.6102 22.8247 40.8026 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 105 z 13.1297 23.7021 25.9251 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 106 _ 47.6723 30.1927 4.0083 -Times_New_Roman_Bold.ttf 62 J 28.2593 40.0666 107 ¥ -0.1274 31.5012 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 1 t 3.3068 17.6493 36.8247 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 2 h 0.1316 28.0484 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 3 a 11.8962 25.4180 28.2593 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 4 n 11.6320 28.0484 27.0922 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 5 P -0.0418 33.0339 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 6 o 11.3749 24.2510 28.2593 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 7 e 11.9288 22.8247 28.2593 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 8 : 12.1015 9.4429 28.2593 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 9 r 11.9325 22.3243 27.0922 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 10 l -0.1327 12.8814 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 11 i -1.2338 12.8814 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 12 1 0.0028 19.9834 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 13 | -1.1968 4.0083 52.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 14 N -0.1168 40.4323 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 15 f -1.1210 22.9425 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 16 g 11.9274 25.9251 39.7770 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 17 d 0.0054 27.6410 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 18 W -0.1879 58.0445 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 19 s 11.9423 18.1564 28.2593 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 20 c 11.7194 22.6832 28.2593 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 21 u 13.1060 28.0484 27.0922 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 22 3 -0.1341 25.1588 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 23 ~ 18.8288 30.9591 9.1836 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 24 # -0.1927 26.6848 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 25 O -2.2068 40.8329 42.4007 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 26 ` -0.5417 12.5434 9.4429 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 27 @ -1.4015 51.0839 51.9917 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 28 F 0.0404 32.2675 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 29 S -1.2214 26.9744 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 30 p 11.7852 27.6410 39.7770 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 31 “ -0.7922 24.3204 19.1753 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 32 % 0.0147 49.9821 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 33 £ -0.4057 26.8329 40.2147 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 34 . 30.6193 9.4429 9.4429 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 35 2 0.0166 25.1588 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 36 5 -0.0000 24.8995 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 37 m 11.7555 43.2155 27.0922 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 38 V 0.1701 43.2782 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 39 6 -0.4119 24.8995 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 40 w 13.1854 41.7521 27.0922 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 41 T -0.2072 35.1088 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 42 M 0.1734 52.8692 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 43 G -0.9360 42.5185 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 44 b -0.1085 27.6410 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 45 9 -0.0651 24.8995 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 46 ; 11.7794 10.6099 36.8247 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 47 D -0.1359 38.4988 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 48 L 0.1668 35.4792 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 49 y 12.6235 29.1671 38.6099 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 50 ‘ -1.1757 10.6099 19.1753 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 51 \ -1.2228 16.3341 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 52 R 0.0616 41.3515 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 53 < 6.6987 30.8412 26.8329 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 54 4 -0.4355 24.8995 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 55 8 0.1773 24.8995 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 56 0 -0.4115 25.3999 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 57 A -1.3194 42.0000 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 58 E 0.0870 35.1020 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 59 B -0.4291 35.7687 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 60 v 13.0171 29.4263 27.0922 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 61 k -0.0370 31.2600 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 62 J 0.1941 28.2593 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 63 U -0.0025 39.6659 40.0666 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 64 j -1.0999 15.8337 52.7514 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 65 ( -1.2194 16.1927 52.4988 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 66 7 0.4771 26.0249 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 67 § -0.2149 24.2025 51.7325 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 68 $ -1.1258 25.1103 42.9078 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 69 € -0.2029 29.1671 39.0477 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 70 / -1.0709 18.1261 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 71 C -1.0841 36.8247 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 72 * 0.1888 20.3491 20.7081 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 73 ” -0.9489 24.3204 19.1753 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 74 ? -0.8668 22.4172 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 75 { -1.1373 16.4520 52.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 76 } -2.2793 16.4520 52.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 77 , 29.6412 10.6099 19.1753 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 78 I -0.1716 20.3121 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 79 ° -0.8990 19.7242 20.6017 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 80 K -0.1273 45.8298 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 81 H 0.0529 43.1671 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 82 q 11.6622 27.6410 39.7770 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 83 & -1.1728 43.1671 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 84 ’ -0.8198 10.6099 19.1753 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 85 [ -0.2355 12.0363 50.5654 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 86 - 22.8937 16.1927 5.5828 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 87 Y -0.2153 41.3515 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 88 Q -0.9091 41.0922 49.6509 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 89 " -1.2579 22.4172 18.4090 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 90 ! -0.9164 9.4429 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 91 x 12.9966 27.8519 25.9251 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 92 ) -1.1675 16.1927 52.4988 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 93 = 13.1771 30.8412 13.7407 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 94 + 4.2485 30.4755 30.4755 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 95 X 0.2696 42.8775 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 96 » 13.1151 27.3515 25.9251 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 97 ' -0.8499 7.9169 18.4090 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 98 ¢ -0.1296 22.8247 49.6576 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 99 Z -0.4016 36.6765 38.8995 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 100 > 6.6301 30.8412 26.8329 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 101 ® -1.1080 39.9251 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 102 © -1.1204 39.9251 41.2336 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 103 ] 0.1734 12.0363 50.5654 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 104 é -0.4940 22.8247 40.8026 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 105 z 13.1372 23.7021 25.9251 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 106 _ 47.5156 30.1927 4.0083 -Times_New_Roman_Bold.ttf 63 U 39.6659 40.0666 107 ¥ -0.2830 31.5012 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 1 t 4.3613 17.6493 36.8247 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 2 h 0.9033 28.0484 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 3 a 12.7778 25.4180 28.2593 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 4 n 12.9933 28.0484 27.0922 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 5 P 1.2156 33.0339 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 6 o 13.1801 24.2510 28.2593 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 7 e 12.9696 22.8247 28.2593 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 8 : 13.0023 9.4429 28.2593 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 9 r 13.0095 22.3243 27.0922 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 10 l 1.2872 12.8814 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 11 i -0.1349 12.8814 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 12 1 1.0174 19.9834 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 13 | 0.0533 4.0083 52.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 14 N 1.0009 40.4323 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 15 f -0.0246 22.9425 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 16 g 13.1463 25.9251 39.7770 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 17 d 1.2022 27.6410 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 18 W 0.9326 58.0445 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 19 s 12.9373 18.1564 28.2593 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 20 c 12.8528 22.6832 28.2593 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 21 u 13.9771 28.0484 27.0922 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 22 3 1.0674 25.1588 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 23 ~ 19.9940 30.9591 9.1836 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 24 # 1.2502 26.6848 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 25 O -0.9951 40.8329 42.4007 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 26 ` 0.2929 12.5434 9.4429 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 27 @ -0.3142 51.0839 51.9917 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 28 F 0.8289 32.2675 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 29 S -0.0298 26.9744 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 30 p 12.9359 27.6410 39.7770 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 31 “ -0.0259 24.3204 19.1753 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 32 % 1.1001 49.9821 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 33 £ 0.9391 26.8329 40.2147 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 34 . 31.8753 9.4429 9.4429 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 35 2 1.0174 25.1588 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 36 5 1.1319 24.8995 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 37 m 12.9186 43.2155 27.0922 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 38 V 1.0061 43.2782 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 39 6 0.9646 24.8995 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 40 w 14.1966 41.7521 27.0922 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 41 T 1.3299 35.1088 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 42 M 1.0706 52.8692 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 43 G 0.1629 42.5185 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 44 b 1.4366 27.6410 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 45 9 0.9267 24.8995 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 46 ; 13.0114 10.6099 36.8247 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 47 D 1.2911 38.4988 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 48 L 1.2897 35.4792 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 49 y 13.9357 29.1671 38.6099 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 50 ‘ -0.0755 10.6099 19.1753 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 51 \ -0.1720 16.3341 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 52 R 1.0806 41.3515 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 53 < 7.6376 30.8412 26.8329 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 54 4 1.1093 24.8995 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 55 8 1.3933 24.8995 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 56 0 0.8901 25.3999 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 57 A -0.0427 42.0000 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 58 E 1.2146 35.1020 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 59 B 1.2741 35.7687 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 60 v 14.1876 29.4263 27.0922 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 61 k 1.3039 31.2600 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 62 J 0.8677 28.2593 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 63 U 1.2502 39.6659 40.0666 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 64 j 0.0798 15.8337 52.7514 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 65 ( 0.0000 16.1927 52.4988 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 66 7 1.4029 26.0249 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 67 § 0.7624 24.2025 51.7325 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 68 $ -0.0312 25.1103 42.9078 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 69 € 1.2130 29.1671 39.0477 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 70 / 0.0130 18.1261 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 71 C 0.1868 36.8247 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 72 * 1.3462 20.3491 20.7081 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 73 ” -0.2426 24.3204 19.1753 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 74 ? 0.0058 22.4172 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 75 { 0.0816 16.4520 52.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 76 } -0.8841 16.4520 52.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 77 , 30.6568 10.6099 19.1753 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 78 I 1.2113 20.3121 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 79 ° -0.1222 19.7242 20.6017 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 80 K 1.0840 45.8298 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 81 H 1.2468 43.1671 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 82 q 12.8855 27.6410 39.7770 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 83 & -0.0476 43.1671 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 84 ’ -0.3181 10.6099 19.1753 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 85 [ 1.3981 12.0363 50.5654 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 86 - 24.0334 16.1927 5.5828 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 87 Y 1.2247 41.3515 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 88 Q -0.1595 41.0922 49.6509 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 89 " -0.0370 22.4172 18.4090 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 90 ! 0.2238 9.4429 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 91 x 14.0991 27.8519 25.9251 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 92 ) 0.0312 16.1927 52.4988 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 93 = 13.8987 30.8412 13.7407 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 94 + 5.4848 30.4755 30.4755 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 95 X 1.6499 42.8775 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 96 » 13.8936 27.3515 25.9251 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 97 ' 0.0145 7.9169 18.4090 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 98 ¢ 1.0873 22.8247 49.6576 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 99 Z 1.0509 36.6765 38.8995 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 100 > 8.0609 30.8412 26.8329 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 101 ® -0.0903 39.9251 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 102 © -0.1629 39.9251 41.2336 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 103 ] 1.4294 12.0363 50.5654 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 104 é 0.4349 22.8247 40.8026 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 105 z 13.9661 23.7021 25.9251 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 106 _ 48.9801 30.1927 4.0083 -Times_New_Roman_Bold.ttf 64 j 15.8337 52.7514 107 ¥ 0.9969 31.5012 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 1 t 4.6646 17.6493 36.8247 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 2 h 1.2569 28.0484 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 3 a 13.0204 25.4180 28.2593 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 4 n 12.8840 28.0484 27.0922 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 5 P 1.5052 33.0339 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 6 o 12.7581 24.2510 28.2593 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 7 e 13.0081 22.8247 28.2593 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 8 : 13.0614 9.4429 28.2593 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 9 r 13.1093 22.3243 27.0922 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 10 l 1.1671 12.8814 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 11 i 0.1407 12.8814 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 12 1 0.9704 19.9834 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 13 | 0.1274 4.0083 52.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 14 N 1.0752 40.4323 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 15 f 0.1720 22.9425 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 16 g 12.8172 25.9251 39.7770 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 17 d 1.1565 27.6410 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 18 W 1.2930 58.0445 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 19 s 12.9990 18.1564 28.2593 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 20 c 13.1463 22.6832 28.2593 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 21 u 14.3043 28.0484 27.0922 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 22 3 1.0189 25.1588 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 23 ~ 20.0665 30.9591 9.1836 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 24 # 1.1406 26.6848 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 25 O -1.3357 40.8329 42.4007 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 26 ` 0.0863 12.5434 9.4429 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 27 @ 0.1480 51.0839 51.9917 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 28 F 1.1261 32.2675 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 29 S -0.0903 26.9744 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 30 p 13.0575 27.6410 39.7770 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 31 “ -0.0831 24.3204 19.1753 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 32 % 0.8455 49.9821 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 33 £ 1.0342 26.8329 40.2147 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 34 . 31.6739 9.4429 9.4429 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 35 2 0.8560 25.1588 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 36 5 1.1743 24.8995 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 37 m 13.0262 43.2155 27.0922 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 38 V 0.9638 43.2782 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 39 6 0.8075 24.8995 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 40 w 14.0616 41.7521 27.0922 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 41 T 1.1877 35.1088 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 42 M 1.4275 52.8692 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 43 G 0.0370 42.5185 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 44 b 0.9672 27.6410 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 45 9 1.1020 24.8995 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 46 ; 13.1406 10.6099 36.8247 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 47 D 1.1671 38.4988 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 48 L 0.9508 35.4792 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 49 y 14.2673 29.1671 38.6099 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 50 ‘ -0.0015 10.6099 19.1753 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 51 \ 0.0870 16.3341 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 52 R 1.1637 41.3515 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 53 < 7.5828 30.8412 26.8329 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 54 4 1.1924 24.8995 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 55 8 1.1165 24.8995 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 56 0 0.8455 25.3999 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 57 A -0.1110 42.0000 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 58 E 1.1671 35.1020 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 59 B 1.0455 35.7687 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 60 v 14.1414 29.4263 27.0922 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 61 k 1.2766 31.2600 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 62 J 1.5429 28.2593 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 63 U 1.1671 39.6659 40.0666 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 64 j 0.0000 15.8337 52.7514 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 65 ( 0.0370 16.1927 52.4988 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 66 7 1.0009 26.0249 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 67 § 1.0218 24.2025 51.7325 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 68 $ 0.0798 25.1103 42.9078 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 69 € 1.0660 29.1671 39.0477 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 70 / 0.0427 18.1261 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 71 C 0.4397 36.8247 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 72 * 1.3502 20.3491 20.7081 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 73 ” -0.0683 24.3204 19.1753 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 74 ? -0.1423 22.4172 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 75 { -1.3332 16.4520 52.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 76 } 0.1226 16.4520 52.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 77 , 30.7511 10.6099 19.1753 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 78 I 1.1677 20.3121 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 79 ° 0.2195 19.7242 20.6017 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 80 K 1.0821 45.8298 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 81 H 1.0800 43.1671 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 82 q 12.8855 27.6410 39.7770 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 83 & 0.0000 43.1671 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 84 ’ 0.1701 10.6099 19.1753 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 85 [ 1.3078 12.0363 50.5654 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 86 - 23.9570 16.1927 5.5828 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 87 Y 1.0840 41.3515 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 88 Q 0.0831 41.0922 49.6509 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 89 " -0.0979 22.4172 18.4090 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 90 ! 0.1220 9.4429 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 91 x 14.2274 27.8519 25.9251 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 92 ) 0.4045 16.1927 52.4988 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 93 = 14.4091 30.8412 13.7407 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 94 + 5.8547 30.4755 30.4755 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 95 X 1.2083 42.8775 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 96 » 14.2303 27.3515 25.9251 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 97 ' 0.2638 7.9169 18.4090 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 98 ¢ 1.0469 22.8247 49.6576 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 99 Z 1.2502 36.6765 38.8995 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 100 > 7.8985 30.8412 26.8329 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 101 ® 0.0856 39.9251 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 102 © 0.0327 39.9251 41.2336 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 103 ] 1.2189 12.0363 50.5654 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 104 é 0.2609 22.8247 40.8026 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 105 z 14.3076 23.7021 25.9251 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 106 _ 49.0301 30.1927 4.0083 -Times_New_Roman_Bold.ttf 65 ( 16.1927 52.4988 107 ¥ 0.9523 31.5012 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 1 t 3.3581 17.6493 36.8247 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 2 h -0.1274 28.0484 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 3 a 11.7315 25.4180 28.2593 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 4 n 11.8831 28.0484 27.0922 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 5 P -0.0850 33.0339 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 6 o 11.9865 24.2510 28.2593 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 7 e 11.5574 22.8247 28.2593 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 8 : 11.4950 9.4429 28.2593 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 9 r 11.8649 22.3243 27.0922 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 10 l 0.0148 12.8814 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 11 i -1.2886 12.8814 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 12 1 0.2074 19.9834 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 13 | -1.0782 4.0083 52.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 14 N 0.1720 40.4323 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 15 f -1.4631 22.9425 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 16 g 11.9956 25.9251 39.7770 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 17 d 0.1149 27.6410 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 18 W 0.0870 58.0445 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 19 s 11.6796 18.1564 28.2593 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 20 c 11.9322 22.6832 28.2593 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 21 u 13.1387 28.0484 27.0922 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 22 3 -0.2418 25.1588 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 23 ~ 18.9974 30.9591 9.1836 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 24 # 0.2072 26.6848 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 25 O -2.1607 40.8329 42.4007 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 26 ` -0.9381 12.5434 9.4429 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 27 @ -1.1767 51.0839 51.9917 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 28 F 0.0831 32.2675 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 29 S -1.1046 26.9744 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 30 p 11.8904 27.6410 39.7770 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 31 “ -1.1804 24.3204 19.1753 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 32 % -0.0190 49.9821 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 33 £ -0.2773 26.8329 40.2147 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 34 . 30.6622 9.4429 9.4429 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 35 2 -0.2831 25.1588 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 36 5 0.0874 24.8995 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 37 m 11.7900 43.2155 27.0922 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 38 V -0.0870 43.2782 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 39 6 -0.3534 24.8995 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 40 w 13.4054 41.7521 27.0922 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 41 T 0.0486 35.1088 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 42 M 0.1389 52.8692 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 43 G -1.1613 42.5185 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 44 b 0.0795 27.6410 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 45 9 -0.0712 24.8995 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 46 ; 11.9554 10.6099 36.8247 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 47 D -0.0783 38.4988 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 48 L 0.0961 35.4792 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 49 y 12.9777 29.1671 38.6099 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 50 ‘ -1.0397 10.6099 19.1753 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 51 \ -1.1166 16.3341 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 52 R 0.0058 41.3515 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 53 < 6.6705 30.8412 26.8329 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 54 4 -0.0266 24.8995 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 55 8 -0.5479 24.8995 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 56 0 0.1011 25.3999 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 57 A -1.2059 42.0000 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 58 E 0.1076 35.1020 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 59 B -0.1792 35.7687 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 60 v 13.0724 29.4263 27.0922 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 61 k -0.0798 31.2600 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 62 J 0.1966 28.2593 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 63 U 0.1701 39.6659 40.0666 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 64 j -0.8283 15.8337 52.7514 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 65 ( -1.1528 16.1927 52.4988 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 66 7 -0.0922 26.0249 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 67 § -0.0593 24.2025 51.7325 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 68 $ -1.3760 25.1103 42.9078 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 69 € -0.1827 29.1671 39.0477 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 70 / -1.1152 18.1261 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 71 C -1.3165 36.8247 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 72 * 0.2514 20.3491 20.7081 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 73 ” -1.1209 24.3204 19.1753 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 74 ? -1.0315 22.4172 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 75 { -2.2971 16.4520 52.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 76 } -1.2589 16.4520 52.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 77 , 29.5440 10.6099 19.1753 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 78 I -0.0091 20.3121 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 79 ° -1.0767 19.7242 20.6017 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 80 K 0.1364 45.8298 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 81 H 0.1186 43.1671 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 82 q 11.8879 27.6410 39.7770 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 83 & -1.2574 43.1671 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 84 ’ -1.3405 10.6099 19.1753 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 85 [ 0.0428 12.0363 50.5654 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 86 - 22.4815 16.1927 5.5828 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 87 Y -0.0432 41.3515 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 88 Q -1.0873 41.0922 49.6509 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 89 " -1.2161 22.4172 18.4090 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 90 ! -1.1119 9.4429 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 91 x 12.7948 27.8519 25.9251 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 92 ) -1.3165 16.1927 52.4988 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 93 = 13.4101 30.8412 13.7407 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 94 + 4.4157 30.4755 30.4755 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 95 X -0.0461 42.8775 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 96 » 12.8706 27.3515 25.9251 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 97 ' -1.2429 7.9169 18.4090 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 98 ¢ -0.1259 22.8247 49.6576 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 99 Z -0.1364 36.6765 38.8995 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 100 > 6.5859 30.8412 26.8329 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 101 ® -1.1210 39.9251 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 102 © -0.9014 39.9251 41.2336 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 103 ] -0.0073 12.0363 50.5654 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 104 é -1.0263 22.8247 40.8026 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 105 z 12.9744 23.7021 25.9251 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 106 _ 47.4931 30.1927 4.0083 -Times_New_Roman_Bold.ttf 66 7 26.0249 38.8995 107 ¥ -0.0591 31.5012 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 1 t 3.4400 17.6493 36.8247 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 2 h 0.1202 28.0484 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 3 a 11.9892 25.4180 28.2593 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 4 n 11.8325 28.0484 27.0922 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 5 P 0.1021 33.0339 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 6 o 11.5596 24.2510 28.2593 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 7 e 11.9515 22.8247 28.2593 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 8 : 11.8684 9.4429 28.2593 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 9 r 12.0890 22.3243 27.0922 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 10 l 0.4047 12.8814 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 11 i -1.0161 12.8814 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 12 1 -0.0000 19.9834 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 13 | -0.8026 4.0083 52.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 14 N 0.1688 40.4323 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 15 f -0.7134 22.9425 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 16 g 11.8666 25.9251 39.7770 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 17 d 0.1409 27.6410 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 18 W -0.0278 58.0445 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 19 s 12.1318 18.1564 28.2593 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 20 c 11.9003 22.6832 28.2593 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 21 u 13.2099 28.0484 27.0922 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 22 3 0.0068 25.1588 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 23 ~ 18.9083 30.9591 9.1836 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 24 # 0.1910 26.6848 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 25 O -2.2705 40.8329 42.4007 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 26 ` -0.8567 12.5434 9.4429 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 27 @ -1.2319 51.0839 51.9917 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 28 F 0.2279 32.2675 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 29 S -1.2265 26.9744 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 30 p 11.6152 27.6410 39.7770 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 31 “ -1.0147 24.3204 19.1753 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 32 % 0.1331 49.9821 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 33 £ 0.0090 26.8329 40.2147 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 34 . 30.6478 9.4429 9.4429 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 35 2 -0.1920 25.1588 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 36 5 0.1333 24.8995 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 37 m 12.0392 43.2155 27.0922 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 38 V -0.1964 43.2782 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 39 6 0.1077 24.8995 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 40 w 13.0427 41.7521 27.0922 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 41 T 0.0799 35.1088 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 42 M 0.4014 52.8692 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 43 G -1.0704 42.5185 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 44 b 0.4047 27.6410 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 45 9 0.0418 24.8995 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 46 ; 11.9151 10.6099 36.8247 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 47 D 0.0160 38.4988 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 48 L 0.1409 35.4792 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 49 y 13.1244 29.1671 38.6099 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 50 ‘ -1.1103 10.6099 19.1753 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 51 \ -1.0189 16.3341 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 52 R 0.2831 41.3515 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 53 < 6.9536 30.8412 26.8329 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 54 4 0.0312 24.8995 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 55 8 0.1299 24.8995 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 56 0 -0.0399 25.3999 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 57 A -1.2409 42.0000 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 58 E 0.2091 35.1020 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 59 B 0.1538 35.7687 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 60 v 13.1635 29.4263 27.0922 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 61 k 0.4293 31.2600 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 62 J 0.2697 28.2593 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 63 U 0.1885 39.6659 40.0666 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 64 j -0.8099 15.8337 52.7514 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 65 ( -1.0559 16.1927 52.4988 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 66 7 0.3572 26.0249 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 67 § -0.1687 24.2025 51.7325 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 68 $ -1.0073 25.1103 42.9078 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 69 € -0.0947 29.1671 39.0477 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 70 / -1.0214 18.1261 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 71 C -1.1045 36.8247 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 72 * 0.4582 20.3491 20.7081 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 73 ” -1.0962 24.3204 19.1753 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 74 ? -0.7580 22.4172 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 75 { -2.3176 16.4520 52.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 76 } -1.1644 16.4520 52.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 77 , 29.6200 10.6099 19.1753 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 78 I 0.3437 20.3121 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 79 ° -1.0189 19.7242 20.6017 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 80 K 0.3216 45.8298 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 81 H 0.2443 43.1671 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 82 q 12.3494 27.6410 39.7770 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 83 & -0.9252 43.1671 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 84 ’ -1.0074 10.6099 19.1753 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 85 [ 0.2124 12.0363 50.5654 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 86 - 22.8140 16.1927 5.5828 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 87 Y 0.2741 41.3515 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 88 Q -1.1405 41.0922 49.6509 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 89 " -0.9895 22.4172 18.4090 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 90 ! -1.3153 9.4429 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 91 x 12.9836 27.8519 25.9251 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 92 ) -1.0972 16.1927 52.4988 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 93 = 13.2523 30.8412 13.7407 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 94 + 4.4731 30.4755 30.4755 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 95 X 0.2318 42.8775 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 96 » 13.0960 27.3515 25.9251 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 97 ' -0.9463 7.9169 18.4090 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 98 ¢ 0.4072 22.8247 49.6576 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 99 Z 0.2352 36.6765 38.8995 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 100 > 6.8705 30.8412 26.8329 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 101 ® -1.1886 39.9251 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 102 © -1.1045 39.9251 41.2336 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 103 ] 0.0151 12.0363 50.5654 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 104 é -0.4809 22.8247 40.8026 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 105 z 13.2912 23.7021 25.9251 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 106 _ 47.9036 30.1927 4.0083 -Times_New_Roman_Bold.ttf 67 § 24.2025 51.7325 107 ¥ 0.2312 31.5012 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 1 t 4.6774 17.6493 36.8247 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 2 h 1.3832 28.0484 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 3 a 12.8979 25.4180 28.2593 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 4 n 12.8840 28.0484 27.0922 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 5 P 1.1282 33.0339 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 6 o 12.9744 24.2510 28.2593 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 7 e 13.0128 22.8247 28.2593 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 8 : 13.2671 9.4429 28.2593 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 9 r 13.3204 22.3243 27.0922 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 10 l 1.2040 12.8814 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 11 i 0.0000 12.8814 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 12 1 1.0545 19.9834 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 13 | -0.1999 4.0083 52.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 14 N 1.4485 40.4323 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 15 f -0.1149 22.9425 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 16 g 13.2500 25.9251 39.7770 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 17 d 1.1657 27.6410 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 18 W 1.0411 58.0445 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 19 s 13.1445 18.1564 28.2593 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 20 c 12.9599 22.6832 28.2593 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 21 u 14.0478 28.0484 27.0922 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 22 3 0.8440 25.1588 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 23 ~ 19.8970 30.9591 9.1836 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 24 # 1.1137 26.6848 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 25 O -1.0026 40.8329 42.4007 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 26 ` 0.1565 12.5434 9.4429 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 27 @ -0.0048 51.0839 51.9917 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 28 F 1.1801 32.2675 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 29 S 0.1168 26.9744 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 30 p 12.5852 27.6410 39.7770 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 31 “ 0.0525 24.3204 19.1753 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 32 % 0.9286 49.9821 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 33 £ 0.9286 26.8329 40.2147 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 34 . 31.8829 9.4429 9.4429 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 35 2 0.9333 25.1588 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 36 5 1.1080 24.8995 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 37 m 12.9744 43.2155 27.0922 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 38 V 1.3482 43.2782 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 39 6 0.6522 24.8995 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 40 w 14.1504 41.7521 27.0922 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 41 T 1.0469 35.1088 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 42 M 1.2146 52.8692 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 43 G -0.0741 42.5185 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 44 b 1.2814 27.6410 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 45 9 1.1226 24.8995 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 46 ; 13.1166 10.6099 36.8247 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 47 D 1.0782 38.4988 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 48 L 1.1243 35.4792 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 49 y 13.7979 29.1671 38.6099 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 50 ‘ -0.2096 10.6099 19.1753 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 51 \ 0.0533 16.3341 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 52 R 0.9638 41.3515 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 53 < 7.8523 30.8412 26.8329 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 54 4 1.1924 24.8995 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 55 8 0.9837 24.8995 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 56 0 0.9319 25.3999 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 57 A -0.2945 42.0000 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 58 E 1.1151 35.1020 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 59 B 1.2444 35.7687 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 60 v 14.4037 29.4263 27.0922 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 61 k 0.9947 31.2600 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 62 J 1.1004 28.2593 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 63 U 1.4319 39.6659 40.0666 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 64 j 0.0385 15.8337 52.7514 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 65 ( 0.0352 16.1927 52.4988 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 66 7 1.1300 26.0249 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 67 § 0.9275 24.2025 51.7325 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 68 $ 0.2609 25.1103 42.9078 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 69 € 0.9080 29.1671 39.0477 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 70 / 0.0816 18.1261 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 71 C 0.0148 36.8247 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 72 * 1.3161 20.3491 20.7081 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 73 ” 0.0856 24.3204 19.1753 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 74 ? 0.0869 22.4172 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 75 { -1.3201 16.4520 52.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 76 } 0.0066 16.4520 52.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 77 , 30.8210 10.6099 19.1753 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 78 I 1.5073 20.3121 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 79 ° -0.0039 19.7242 20.6017 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 80 K 1.2541 45.8298 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 81 H 1.3804 43.1671 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 82 q 13.1905 27.6410 39.7770 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 83 & -0.0664 43.1671 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 84 ’ -0.2105 10.6099 19.1753 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 85 [ 1.0748 12.0363 50.5654 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 86 - 24.1198 16.1927 5.5828 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 87 Y 1.1152 41.3515 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 88 Q -0.0485 41.0922 49.6509 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 89 " -0.1049 22.4172 18.4090 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 90 ! -0.0370 9.4429 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 91 x 14.3534 27.8519 25.9251 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 92 ) 0.1586 16.1927 52.4988 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 93 = 14.0896 30.8412 13.7407 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 94 + 5.5030 30.4755 30.4755 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 95 X 1.1191 42.8775 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 96 » 14.1414 27.3515 25.9251 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 97 ' 0.2041 7.9169 18.4090 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 98 ¢ 1.2131 22.8247 49.6576 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 99 Z 1.3448 36.6765 38.8995 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 100 > 7.6108 30.8412 26.8329 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 101 ® -0.1070 39.9251 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 102 © -0.3479 39.9251 41.2336 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 103 ] 1.3059 12.0363 50.5654 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 104 é 0.6030 22.8247 40.8026 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 105 z 14.1861 23.7021 25.9251 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 106 _ 49.0508 30.1927 4.0083 -Times_New_Roman_Bold.ttf 68 $ 25.1103 42.9078 107 ¥ 1.1776 31.5012 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 1 t 3.5544 17.6493 36.8247 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 2 h -0.0594 28.0484 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 3 a 12.1342 25.4180 28.2593 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 4 n 12.2217 28.0484 27.0922 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 5 P 0.1481 33.0339 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 6 o 11.8593 24.2510 28.2593 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 7 e 11.6892 22.8247 28.2593 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 8 : 12.2178 9.4429 28.2593 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 9 r 11.6691 22.3243 27.0922 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 10 l 0.2100 12.8814 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 11 i -1.0170 12.8814 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 12 1 -0.0370 19.9834 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 13 | -1.0327 4.0083 52.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 14 N -0.0593 40.4323 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 15 f -1.1553 22.9425 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 16 g 11.7498 25.9251 39.7770 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 17 d -0.1494 27.6410 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 18 W 0.3626 58.0445 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 19 s 11.8190 18.1564 28.2593 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 20 c 11.9968 22.6832 28.2593 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 21 u 12.8987 28.0484 27.0922 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 22 3 -0.0519 25.1588 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 23 ~ 19.0016 30.9591 9.1836 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 24 # 0.0698 26.6848 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 25 O -2.3224 40.8329 42.4007 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 26 ` -0.6510 12.5434 9.4429 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 27 @ -1.0958 51.0839 51.9917 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 28 F 0.1539 32.2675 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 29 S -0.8651 26.9744 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 30 p 11.9498 27.6410 39.7770 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 31 “ -0.7022 24.3204 19.1753 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 32 % -0.1052 49.9821 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 33 £ 0.0029 26.8329 40.2147 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 34 . 30.7512 9.4429 9.4429 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 35 2 -0.1383 25.1588 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 36 5 0.2221 24.8995 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 37 m 11.8190 43.2155 27.0922 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 38 V 0.3053 43.2782 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 39 6 -0.3591 24.8995 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 40 w 12.7823 41.7521 27.0922 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 41 T 0.2650 35.1088 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 42 M 0.3547 52.8692 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 43 G -1.1967 42.5185 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 44 b 0.0905 27.6410 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 45 9 -0.1349 24.8995 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 46 ; 12.2039 10.6099 36.8247 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 47 D 0.1967 38.4988 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 48 L 0.4888 35.4792 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 49 y 13.2432 29.1671 38.6099 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 50 ‘ -0.7359 10.6099 19.1753 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 51 \ -0.9762 16.3341 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 52 R 0.1852 41.3515 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 53 < 6.6360 30.8412 26.8329 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 54 4 0.3003 24.8995 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 55 8 0.1407 24.8995 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 56 0 -0.1629 25.3999 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 57 A -1.2261 42.0000 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 58 E 0.0843 35.1020 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 59 B -0.2146 35.7687 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 60 v 13.1225 29.4263 27.0922 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 61 k 0.4869 31.2600 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 62 J 0.2946 28.2593 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 63 U 0.1126 39.6659 40.0666 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 64 j -1.5239 15.8337 52.7514 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 65 ( -0.9271 16.1927 52.4988 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 66 7 -0.2237 26.0249 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 67 § -0.0461 24.2025 51.7325 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 68 $ -1.1020 25.1103 42.9078 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 69 € -0.0831 29.1671 39.0477 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 70 / -0.7729 18.1261 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 71 C -0.7490 36.8247 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 72 * 0.4249 20.3491 20.7081 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 73 ” -1.0722 24.3204 19.1753 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 74 ? -0.8081 22.4172 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 75 { -2.2211 16.4520 52.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 76 } -1.1952 16.4520 52.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 77 , 29.6346 10.6099 19.1753 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 78 I 0.0832 20.3121 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 79 ° -0.8930 19.7242 20.6017 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 80 K -0.0278 45.8298 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 81 H -0.0186 43.1671 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 82 q 11.9036 27.6410 39.7770 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 83 & -1.0616 43.1671 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 84 ’ -0.8739 10.6099 19.1753 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 85 [ -0.1867 12.0363 50.5654 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 86 - 22.8626 16.1927 5.5828 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 87 Y 0.1242 41.3515 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 88 Q -0.9358 41.0922 49.6509 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 89 " -1.1001 22.4172 18.4090 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 90 ! -1.0599 9.4429 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 91 x 13.4112 27.8519 25.9251 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 92 ) -0.9713 16.1927 52.4988 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 93 = 12.9505 30.8412 13.7407 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 94 + 4.6196 30.4755 30.4755 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 95 X 0.3225 42.8775 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 96 » 12.9481 27.3515 25.9251 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 97 ' -1.1020 7.9169 18.4090 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 98 ¢ 0.0165 22.8247 49.6576 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 99 Z -0.1421 36.6765 38.8995 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 100 > 6.5748 30.8412 26.8329 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 101 ® -1.0069 39.9251 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 102 © -1.0837 39.9251 41.2336 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 103 ] 0.0651 12.0363 50.5654 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 104 é -0.3996 22.8247 40.8026 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 105 z 13.0855 23.7021 25.9251 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 106 _ 47.7022 30.1927 4.0083 -Times_New_Roman_Bold.ttf 69 € 29.1671 39.0477 107 ¥ -0.1011 31.5012 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 1 t 4.7347 17.6493 36.8247 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 2 h 1.0056 28.0484 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 3 a 13.1670 25.4180 28.2593 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 4 n 13.0171 28.0484 27.0922 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 5 P 1.1728 33.0339 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 6 o 13.0142 24.2510 28.2593 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 7 e 12.9595 22.8247 28.2593 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 8 : 12.8009 9.4429 28.2593 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 9 r 12.9373 22.3243 27.0922 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 10 l 1.2559 12.8814 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 11 i -0.0591 12.8814 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 12 1 1.0301 19.9834 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 13 | -0.1383 4.0083 52.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 14 N 0.9552 40.4323 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 15 f -0.1734 22.9425 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 16 g 13.0205 25.9251 39.7770 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 17 d 1.1671 27.6410 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 18 W 1.2472 58.0445 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 19 s 12.6799 18.1564 28.2593 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 20 c 13.1867 22.6832 28.2593 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 21 u 14.2782 28.0484 27.0922 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 22 3 1.1909 25.1588 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 23 ~ 19.8989 30.9591 9.1836 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 24 # 1.2929 26.6848 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 25 O -1.1689 40.8329 42.4007 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 26 ` 0.2862 12.5434 9.4429 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 27 @ -0.0336 51.0839 51.9917 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 28 F 1.1849 32.2675 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 29 S -0.1316 26.9744 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 30 p 12.8888 27.6410 39.7770 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 31 “ -0.1734 24.3204 19.1753 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 32 % 1.1026 49.9821 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 33 £ 1.1168 26.8329 40.2147 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 34 . 31.7998 9.4429 9.4429 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 35 2 0.9671 25.1588 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 36 5 1.2411 24.8995 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 37 m 12.8082 43.2155 27.0922 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 38 V 1.0930 43.2782 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 39 6 0.6292 24.8995 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 40 w 13.8939 41.7521 27.0922 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 41 T 1.1267 35.1088 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 42 M 1.0815 52.8692 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 43 G 0.0461 42.5185 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 44 b 1.1425 27.6410 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 45 9 1.1357 24.8995 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 46 ; 13.1372 10.6099 36.8247 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 47 D 1.2099 38.4988 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 48 L 0.9360 35.4792 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 49 y 14.0987 29.1671 38.6099 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 50 ‘ -0.2119 10.6099 19.1753 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 51 \ -0.0047 16.3341 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 52 R 1.2853 41.3515 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 53 < 8.0893 30.8412 26.8329 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 54 4 1.0189 24.8995 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 55 8 1.0137 24.8995 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 56 0 1.1909 25.3999 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 57 A 0.0000 42.0000 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 58 E 1.1704 35.1020 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 59 B 1.0821 35.7687 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 60 v 14.2227 29.4263 27.0922 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 61 k 1.0840 31.2600 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 62 J 1.0840 28.2593 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 63 U 1.2574 39.6659 40.0666 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 64 j 0.2551 15.8337 52.7514 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 65 ( -0.0889 16.1927 52.4988 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 66 7 1.3357 26.0249 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 67 § 1.0131 24.2025 51.7325 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 68 $ -0.1753 25.1103 42.9078 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 69 € 1.1078 29.1671 39.0477 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 70 / -0.0404 18.1261 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 71 C 0.0461 36.8247 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 72 * 1.3574 20.3491 20.7081 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 73 ” -0.0370 24.3204 19.1753 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 74 ? -0.1274 22.4172 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 75 { -1.0873 16.4520 52.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 76 } -0.0091 16.4520 52.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 77 , 30.4978 10.6099 19.1753 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 78 I 1.0469 20.3121 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 79 ° -0.0461 19.7242 20.6017 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 80 K 1.1671 45.8298 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 81 H 1.0061 43.1671 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 82 q 12.9835 27.6410 39.7770 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 83 & 0.0889 43.1671 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 84 ’ -0.2551 10.6099 19.1753 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 85 [ 1.0767 12.0363 50.5654 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 86 - 24.0862 16.1927 5.5828 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 87 Y 1.0379 41.3515 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 88 Q 0.0519 41.0922 49.6509 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 89 " -0.0279 22.4172 18.4090 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 90 ! 0.0370 9.4429 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 91 x 14.0550 27.8519 25.9251 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 92 ) 0.1701 16.1927 52.4988 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 93 = 14.3207 30.8412 13.7407 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 94 + 5.8647 30.4755 30.4755 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 95 X 1.2588 42.8775 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 96 » 14.2764 27.3515 25.9251 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 97 ' -0.1629 7.9169 18.4090 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 98 ¢ 1.3438 22.8247 49.6576 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 99 Z 1.1579 36.6765 38.8995 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 100 > 7.8912 30.8412 26.8329 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 101 ® 0.0370 39.9251 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 102 © -0.1316 39.9251 41.2336 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 103 ] 0.9936 12.0363 50.5654 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 104 é 0.6026 22.8247 40.8026 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 105 z 14.1447 23.7021 25.9251 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 106 _ 48.8912 30.1927 4.0083 -Times_New_Roman_Bold.ttf 70 / 18.1261 41.2336 107 ¥ 1.0739 31.5012 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 1 t 4.3052 17.6493 36.8247 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 2 h 1.1689 28.0484 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 3 a 12.8913 25.4180 28.2593 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 4 n 13.1137 28.0484 27.0922 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 5 P 1.2632 33.0339 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 6 o 13.1946 24.2510 28.2593 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 7 e 12.8916 22.8247 28.2593 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 8 : 12.8503 9.4429 28.2593 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 9 r 13.0262 22.3243 27.0922 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 10 l 1.4098 12.8814 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 11 i -0.2108 12.8814 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 12 1 1.0131 19.9834 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 13 | -0.2504 4.0083 52.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 14 N 1.0354 40.4323 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 15 f 0.0908 22.9425 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 16 g 13.1688 25.9251 39.7770 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 17 d 1.0829 27.6410 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 18 W 1.4188 58.0445 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 19 s 13.0906 18.1564 28.2593 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 20 c 12.7139 22.6832 28.2593 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 21 u 13.8089 28.0484 27.0922 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 22 3 1.1372 25.1588 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 23 ~ 19.8133 30.9591 9.1836 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 24 # 1.1181 26.6848 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 25 O -1.0041 40.8329 42.4007 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 26 ` 0.3596 12.5434 9.4429 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 27 @ 0.0091 51.0839 51.9917 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 28 F 1.4816 32.2675 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 29 S -0.5094 26.9744 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 30 p 12.8268 27.6410 39.7770 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 31 “ 0.0312 24.3204 19.1753 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 32 % 1.2660 49.9821 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 33 £ 1.1956 26.8329 40.2147 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 34 . 31.8944 9.4429 9.4429 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 35 2 1.1034 25.1588 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 36 5 1.2911 24.8995 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 37 m 13.1686 43.2155 27.0922 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 38 V 1.2719 43.2782 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 39 6 0.7897 24.8995 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 40 w 13.9065 41.7521 27.0922 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 41 T 1.3703 35.1088 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 42 M 1.2689 52.8692 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 43 G -0.1778 42.5185 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 44 b 0.8815 27.6410 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 45 9 0.8767 24.8995 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 46 ; 12.9744 10.6099 36.8247 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 47 D 1.3300 38.4988 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 48 L 1.2853 35.4792 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 49 y 14.0689 29.1671 38.6099 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 50 ‘ -0.0845 10.6099 19.1753 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 51 \ 0.0922 16.3341 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 52 R 1.2204 41.3515 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 53 < 7.5479 30.8412 26.8329 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 54 4 1.2765 24.8995 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 55 8 1.0114 24.8995 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 56 0 0.8893 25.3999 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 57 A 0.1874 42.0000 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 58 E 1.3315 35.1020 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 59 B 1.2016 35.7687 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 60 v 14.1933 29.4263 27.0922 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 61 k 1.1737 31.2600 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 62 J 1.1316 28.2593 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 63 U 1.1286 39.6659 40.0666 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 64 j 0.1653 15.8337 52.7514 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 65 ( 0.2456 16.1927 52.4988 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 66 7 1.3447 26.0249 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 67 § 1.0161 24.2025 51.7325 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 68 $ 0.0961 25.1103 42.9078 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 69 € 1.3691 29.1671 39.0477 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 70 / 0.2202 18.1261 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 71 C 0.0961 36.8247 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 72 * 1.1354 20.3491 20.7081 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 73 ” -0.1110 24.3204 19.1753 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 74 ? -0.0366 22.4172 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 75 { -0.0979 16.4520 52.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 76 } -1.1579 16.4520 52.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 77 , 30.5406 10.6099 19.1753 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 78 I 0.9186 20.3121 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 79 ° 0.0870 19.7242 20.6017 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 80 K 1.4943 45.8298 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 81 H 1.2468 43.1671 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 82 q 12.9177 27.6410 39.7770 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 83 & 0.0649 43.1671 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 84 ’ 0.3839 10.6099 19.1753 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 85 [ 1.5125 12.0363 50.5654 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 86 - 23.9094 16.1927 5.5828 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 87 Y 1.5429 41.3515 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 88 Q -0.0928 41.0922 49.6509 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 89 " 0.0261 22.4172 18.4090 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 90 ! -0.1307 9.4429 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 91 x 14.3586 27.8519 25.9251 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 92 ) -0.2138 16.1927 52.4988 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 93 = 14.0640 30.8412 13.7407 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 94 + 5.5554 30.4755 30.4755 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 95 X 0.8216 42.8775 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 96 » 14.1414 27.3515 25.9251 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 97 ' -0.0432 7.9169 18.4090 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 98 ¢ 1.1300 22.8247 49.6576 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 99 Z 1.1949 36.6765 38.8995 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 100 > 7.7029 30.8412 26.8329 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 101 ® -0.0000 39.9251 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 102 © -0.1235 39.9251 41.2336 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 103 ] 1.4268 12.0363 50.5654 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 104 é 0.5199 22.8247 40.8026 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 105 z 14.1029 23.7021 25.9251 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 106 _ 49.3674 30.1927 4.0083 -Times_New_Roman_Bold.ttf 71 C 36.8247 41.2336 107 ¥ 1.4261 31.5012 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 1 t 3.0233 17.6493 36.8247 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 2 h -0.4397 28.0484 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 3 a 11.9605 25.4180 28.2593 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 4 n 11.9130 28.0484 27.0922 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 5 P -0.0448 33.0339 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 6 o 11.4037 24.2510 28.2593 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 7 e 12.0346 22.8247 28.2593 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 8 : 11.4152 9.4429 28.2593 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 9 r 11.2211 22.3243 27.0922 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 10 l 0.0465 12.8814 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 11 i -1.6092 12.8814 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 12 1 -0.6734 19.9834 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 13 | -1.5645 4.0083 52.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 14 N -0.2234 40.4323 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 15 f -1.4463 22.9425 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 16 g 11.4926 25.9251 39.7770 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 17 d -0.1740 27.6410 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 18 W -0.2810 58.0445 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 19 s 11.6256 18.1564 28.2593 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 20 c 11.5763 22.6832 28.2593 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 21 u 12.5380 28.0484 27.0922 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 22 3 -0.5475 25.1588 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 23 ~ 18.6405 30.9591 9.1836 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 24 # -0.3609 26.6848 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 25 O -2.5961 40.8329 42.4007 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 26 ` -0.9866 12.5434 9.4429 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 27 @ -1.4285 51.0839 51.9917 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 28 F -0.2249 32.2675 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 29 S -1.3455 26.9744 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 30 p 11.5444 27.6410 39.7770 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 31 “ -1.3545 24.3204 19.1753 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 32 % -0.1430 49.9821 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 33 £ -0.3759 26.8329 40.2147 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 34 . 30.1764 9.4429 9.4429 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 35 2 -0.2818 25.1588 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 36 5 -0.4494 24.8995 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 37 m 11.7385 43.2155 27.0922 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 38 V -0.0130 43.2782 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 39 6 -0.3831 24.8995 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 40 w 12.6658 41.7521 27.0922 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 41 T -0.2572 35.1088 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 42 M -0.4569 52.8692 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 43 G -1.2210 42.5185 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 44 b -0.4065 27.6410 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 45 9 -0.1132 24.8995 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 46 ; 11.7592 10.6099 36.8247 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 47 D -0.2037 38.4988 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 48 L -0.3253 35.4792 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 49 y 12.5880 29.1671 38.6099 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 50 ‘ -1.1709 10.6099 19.1753 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 51 \ -1.2517 16.3341 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 52 R -0.0163 41.3515 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 53 < 6.3676 30.8412 26.8329 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 54 4 -0.5609 24.8995 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 55 8 -0.2605 24.8995 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 56 0 -0.5657 25.3999 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 57 A -1.4285 42.0000 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 58 E -0.1399 35.1020 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 59 B 0.1921 35.7687 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 60 v 12.8004 29.4263 27.0922 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 61 k -0.1932 31.2600 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 62 J -0.5419 28.2593 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 63 U -0.0318 39.6659 40.0666 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 64 j -1.3574 15.8337 52.7514 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 65 ( -1.2704 16.1927 52.4988 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 66 7 -0.0409 26.0249 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 67 § -0.2851 24.2025 51.7325 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 68 $ -1.5222 25.1103 42.9078 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 69 € -0.0334 29.1671 39.0477 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 70 / -1.2704 18.1261 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 71 C -1.4761 36.8247 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 72 * 0.1668 20.3491 20.7081 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 73 ” -1.4353 24.3204 19.1753 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 74 ? -1.3872 22.4172 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 75 { -2.4193 16.4520 52.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 76 } -1.2671 16.4520 52.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 77 , 29.1865 10.6099 19.1753 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 78 I -0.0145 20.3121 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 79 ° -1.4020 19.7242 20.6017 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 80 K 0.0807 45.8298 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 81 H -0.1446 43.1671 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 82 q 11.7904 27.6410 39.7770 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 83 & -1.5021 43.1671 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 84 ’ -1.0479 10.6099 19.1753 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 85 [ -0.1889 12.0363 50.5654 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 86 - 22.5607 16.1927 5.5828 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 87 Y -0.2183 41.3515 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 88 Q -1.2671 41.0922 49.6509 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 89 " -1.2574 22.4172 18.4090 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 90 ! -1.3041 9.4429 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 91 x 12.6490 27.8519 25.9251 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 92 ) -1.5241 16.1927 52.4988 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 93 = 12.9719 30.8412 13.7407 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 94 + 4.4843 30.4755 30.4755 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 95 X -0.1091 42.8775 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 96 » 12.8816 27.3515 25.9251 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 97 ' -1.0287 7.9169 18.4090 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 98 ¢ -0.0236 22.8247 49.6576 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 99 Z -0.2144 36.6765 38.8995 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 100 > 6.6675 30.8412 26.8329 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 101 ® -1.3502 39.9251 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 102 © -1.4703 39.9251 41.2336 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 103 ] -0.0014 12.0363 50.5654 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 104 é -1.0037 22.8247 40.8026 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 105 z 12.8325 23.7021 25.9251 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 106 _ 47.4761 30.1927 4.0083 -Times_New_Roman_Bold.ttf 72 * 20.3491 20.7081 107 ¥ -0.1148 31.5012 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 1 t 4.3100 17.6493 36.8247 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 2 h 1.0840 28.0484 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 3 a 13.2540 25.4180 28.2593 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 4 n 13.2367 28.0484 27.0922 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 5 P 1.3372 33.0339 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 6 o 12.8600 24.2510 28.2593 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 7 e 13.1075 22.8247 28.2593 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 8 : 13.1238 9.4429 28.2593 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 9 r 13.0023 22.3243 27.0922 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 10 l 1.0800 12.8814 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 11 i 0.0610 12.8814 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 12 1 0.8926 19.9834 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 13 | -0.1984 4.0083 52.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 14 N 1.1094 40.4323 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 15 f -0.1759 22.9425 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 16 g 13.0171 25.9251 39.7770 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 17 d 1.0012 27.6410 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 18 W 0.9714 58.0445 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 19 s 12.7934 18.1564 28.2593 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 20 c 12.9795 22.6832 28.2593 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 21 u 14.1266 28.0484 27.0922 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 22 3 1.3538 25.1588 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 23 ~ 20.0170 30.9591 9.1836 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 24 # 1.2228 26.6848 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 25 O -0.9864 40.8329 42.4007 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 26 ` 0.3621 12.5434 9.4429 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 27 @ -0.0091 51.0839 51.9917 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 28 F 1.1671 32.2675 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 29 S -0.1687 26.9744 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 30 p 13.0223 27.6410 39.7770 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 31 “ 0.2764 24.3204 19.1753 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 32 % 1.1981 49.9821 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 33 £ 0.9368 26.8329 40.2147 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 34 . 31.5654 9.4429 9.4429 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 35 2 1.0317 25.1588 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 36 5 1.2080 24.8995 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 37 m 12.8013 43.2155 27.0922 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 38 V 1.0691 43.2782 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 39 6 1.1020 24.8995 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 40 w 14.0838 41.7521 27.0922 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 41 T 1.5058 35.1088 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 42 M 0.7716 52.8692 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 43 G -0.0980 42.5185 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 44 b 1.2056 27.6410 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 45 9 1.1404 24.8995 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 46 ; 13.0262 10.6099 36.8247 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 47 D 0.9936 38.4988 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 48 L 1.0412 35.4792 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 49 y 13.9622 29.1671 38.6099 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 50 ‘ 0.0015 10.6099 19.1753 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 51 \ -0.0917 16.3341 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 52 R 1.0351 41.3515 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 53 < 7.8490 30.8412 26.8329 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 54 4 0.9827 24.8995 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 55 8 1.0195 24.8995 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 56 0 1.2721 25.3999 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 57 A -0.0566 42.0000 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 58 E 1.0263 35.1020 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 59 B 1.0725 35.7687 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 60 v 14.2278 29.4263 27.0922 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 61 k 1.1642 31.2600 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 62 J 1.0321 28.2593 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 63 U 1.1695 39.6659 40.0666 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 64 j 0.4219 15.8337 52.7514 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 65 ( -0.0519 16.1927 52.4988 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 66 7 1.2835 26.0249 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 67 § 1.2457 24.2025 51.7325 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 68 $ -0.0341 25.1103 42.9078 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 69 € 0.6855 29.1671 39.0477 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 70 / -0.0235 18.1261 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 71 C 0.3123 36.8247 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 72 * 1.2556 20.3491 20.7081 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 73 ” 0.0410 24.3204 19.1753 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 74 ? 0.1325 22.4172 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 75 { -1.1728 16.4520 52.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 76 } 0.0798 16.4520 52.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 77 , 30.3714 10.6099 19.1753 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 78 I 1.0197 20.3121 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 79 ° 0.1407 19.7242 20.6017 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 80 K 0.9951 45.8298 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 81 H 1.0964 43.1671 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 82 q 12.8542 27.6410 39.7770 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 83 & 0.0816 43.1671 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 84 ’ -0.0442 10.6099 19.1753 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 85 [ 1.1493 12.0363 50.5654 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 86 - 23.7956 16.1927 5.5828 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 87 Y 1.2204 41.3515 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 88 Q -0.1879 41.0922 49.6509 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 89 " 0.1241 22.4172 18.4090 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 90 ! 0.1687 9.4429 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 91 x 14.0896 27.8519 25.9251 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 92 ) -0.1662 16.1927 52.4988 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 93 = 14.3946 30.8412 13.7407 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 94 + 5.5736 30.4755 30.4755 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 95 X 1.1743 42.8775 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 96 » 13.7902 27.3515 25.9251 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 97 ' -0.1143 7.9169 18.4090 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 98 ¢ 1.2599 22.8247 49.6576 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 99 Z 1.2905 36.6765 38.8995 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 100 > 7.6939 30.8412 26.8329 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 101 ® 0.2489 39.9251 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 102 © -0.0461 39.9251 41.2336 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 103 ] 1.2393 12.0363 50.5654 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 104 é 0.6751 22.8247 40.8026 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 105 z 14.2673 23.7021 25.9251 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 106 _ 48.8009 30.1927 4.0083 -Times_New_Roman_Bold.ttf 73 ” 24.3204 19.1753 107 ¥ 0.9153 31.5012 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 1 t 4.2830 17.6493 36.8247 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 2 h 1.2262 28.0484 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 3 a 12.9628 25.4180 28.2593 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 4 n 12.9936 28.0484 27.0922 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 5 P 1.2820 33.0339 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 6 o 13.1963 24.2510 28.2593 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 7 e 12.8609 22.8247 28.2593 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 8 : 12.9220 9.4429 28.2593 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 9 r 13.1503 22.3243 27.0922 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 10 l 1.1732 12.8814 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 11 i 0.0826 12.8814 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 12 1 0.9431 19.9834 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 13 | -0.0798 4.0083 52.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 14 N 1.2444 40.4323 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 15 f 0.0019 22.9425 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 16 g 12.9795 25.9251 39.7770 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 17 d 0.8961 27.6410 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 18 W 1.3636 58.0445 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 19 s 13.0666 18.1564 28.2593 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 20 c 13.2036 22.6832 28.2593 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 21 u 14.3859 28.0484 27.0922 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 22 3 1.0280 25.1588 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 23 ~ 19.8705 30.9591 9.1836 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 24 # 1.0873 26.6848 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 25 O -0.8173 40.8329 42.4007 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 26 ` 0.2065 12.5434 9.4429 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 27 @ -0.1701 51.0839 51.9917 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 28 F 0.9860 32.2675 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 29 S 0.0831 26.9744 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 30 p 13.0868 27.6410 39.7770 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 31 “ -0.0294 24.3204 19.1753 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 32 % 0.9671 49.9821 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 33 £ 0.8840 26.8329 40.2147 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 34 . 31.8811 9.4429 9.4429 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 35 2 0.9833 25.1588 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 36 5 1.4221 24.8995 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 37 m 12.9239 43.2155 27.0922 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 38 V 1.1449 43.2782 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 39 6 1.0574 24.8995 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 40 w 14.1102 41.7521 27.0922 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 41 T 1.0157 35.1088 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 42 M 1.0695 52.8692 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 43 G -0.0864 42.5185 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 44 b 1.1377 27.6410 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 45 9 0.9910 24.8995 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 46 ; 12.9652 10.6099 36.8247 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 47 D 1.0782 38.4988 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 48 L 1.1431 35.4792 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 49 y 14.1766 29.1671 38.6099 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 50 ‘ 0.0058 10.6099 19.1753 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 51 \ -0.1379 16.3341 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 52 R 0.9178 41.3515 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 53 < 7.9288 30.8412 26.8329 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 54 4 1.1093 24.8995 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 55 8 0.8988 24.8995 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 56 0 1.2615 25.3999 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 57 A -0.1168 42.0000 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 58 E 1.3339 35.1020 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 59 B 1.2515 35.7687 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 60 v 14.2154 29.4263 27.0922 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 61 k 1.4203 31.2600 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 62 J 1.2651 28.2593 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 63 U 1.1877 39.6659 40.0666 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 64 j 0.2072 15.8337 52.7514 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 65 ( 0.0058 16.1927 52.4988 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 66 7 1.0009 26.0249 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 67 § 1.3179 24.2025 51.7325 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 68 $ -0.1683 25.1103 42.9078 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 69 € 1.2539 29.1671 39.0477 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 70 / -0.2253 18.1261 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 71 C -0.0736 36.8247 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 72 * 1.3397 20.3491 20.7081 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 73 ” 0.3254 24.3204 19.1753 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 74 ? -0.1811 22.4172 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 75 { -1.1300 16.4520 52.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 76 } -0.1455 16.4520 52.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 77 , 30.7865 10.6099 19.1753 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 78 I 1.0742 20.3121 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 79 ° 0.3022 19.7242 20.6017 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 80 K 0.9672 45.8298 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 81 H 1.4667 43.1671 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 82 q 12.8913 27.6410 39.7770 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 83 & -0.1349 43.1671 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 84 ’ -0.1158 10.6099 19.1753 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 85 [ 1.0579 12.0363 50.5654 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 86 - 23.8145 16.1927 5.5828 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 87 Y 0.9936 41.3515 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 88 Q 0.1034 41.0922 49.6509 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 89 " -0.2105 22.4172 18.4090 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 90 ! 0.1407 9.4429 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 91 x 13.7565 27.8519 25.9251 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 92 ) 0.3944 16.1927 52.4988 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 93 = 14.2303 30.8412 13.7407 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 94 + 5.8878 30.4755 30.4755 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 95 X 1.3438 42.8775 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 96 » 13.8420 27.3515 25.9251 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 97 ' -0.1673 7.9169 18.4090 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 98 ¢ 1.1325 22.8247 49.6576 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 99 Z 1.0354 36.6765 38.8995 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 100 > 7.7043 30.8412 26.8329 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 101 ® -0.1349 39.9251 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 102 © 0.3066 39.9251 41.2336 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 103 ] 1.0945 12.0363 50.5654 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 104 é 0.3324 22.8247 40.8026 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 105 z 13.8214 23.7021 25.9251 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 106 _ 48.7711 30.1927 4.0083 -Times_New_Roman_Bold.ttf 74 ? 22.4172 41.2336 107 ¥ 1.0748 31.5012 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 1 t 4.3965 17.6493 36.8247 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 2 h 1.2041 28.0484 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 3 a 12.8855 25.4180 28.2593 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 4 n 12.9768 28.0484 27.0922 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 5 P 1.2621 33.0339 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 6 o 13.2708 24.2510 28.2593 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 7 e 12.9816 22.8247 28.2593 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 8 : 14.1784 9.4429 28.2593 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 9 r 13.0632 22.3243 27.0922 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 10 l 1.4130 12.8814 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 11 i -0.1538 12.8814 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 12 1 2.3931 19.9834 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 13 | 1.2665 4.0083 52.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 14 N 1.0734 40.4323 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 15 f -0.0773 22.9425 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 16 g 12.9725 25.9251 39.7770 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 17 d 1.2041 27.6410 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 18 W 1.1671 58.0445 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 19 s 13.0065 18.1564 28.2593 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 20 c 13.3165 22.6832 28.2593 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 21 u 14.1803 28.0484 27.0922 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 22 3 2.3115 25.1588 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 23 ~ 21.2023 30.9591 9.1836 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 24 # 2.2111 26.6848 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 25 O -1.0873 40.8329 42.4007 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 26 ` 1.4937 12.5434 9.4429 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 27 @ 1.4073 51.0839 51.9917 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 28 F 1.3357 32.2675 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 29 S -0.0370 26.9744 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 30 p 12.7154 27.6410 39.7770 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 31 “ 1.1785 24.3204 19.1753 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 32 % 2.5847 49.9821 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 33 £ 2.1062 26.8329 40.2147 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 34 . 32.9132 9.4429 9.4429 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 35 2 2.0198 25.1588 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 36 5 2.1117 24.8995 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 37 m 13.0556 43.2155 27.0922 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 38 V 1.0964 43.2782 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 39 6 2.1965 24.8995 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 40 w 14.2284 41.7521 27.0922 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 41 T 1.2132 35.1088 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 42 M 1.1300 52.8692 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 43 G 0.0019 42.5185 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 44 b 1.3390 27.6410 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 45 9 2.2749 24.8995 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 46 ; 14.2049 10.6099 36.8247 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 47 D 0.9798 38.4988 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 48 L 1.0873 35.4792 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 49 y 13.9978 29.1671 38.6099 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 50 ‘ 1.1671 10.6099 19.1753 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 51 \ 1.2574 16.3341 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 52 R 1.0873 41.3515 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 53 < 8.7883 30.8412 26.8329 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 54 4 2.2763 24.8995 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 55 8 2.2566 24.8995 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 56 0 2.0764 25.3999 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 57 A -0.0410 42.0000 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 58 E 0.9936 35.1020 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 59 B 1.1286 35.7687 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 60 v 14.1785 29.4263 27.0922 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 61 k 1.1785 31.2600 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 62 J 1.3981 28.2593 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 63 U 1.0854 39.6659 40.0666 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 64 j -0.1668 15.8337 52.7514 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 65 ( 0.9541 16.1927 52.4988 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 66 7 2.4230 26.0249 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 67 § 2.1414 24.2025 51.7325 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 68 $ 1.1671 25.1103 42.9078 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 69 € 2.1378 29.1671 39.0477 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 70 / 1.2520 18.1261 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 71 C 0.1720 36.8247 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 72 * 2.4802 20.3491 20.7081 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 73 ” 1.1579 24.3204 19.1753 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 74 ? 1.1964 22.4172 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 75 { 0.3508 16.4520 52.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 76 } 1.4345 16.4520 52.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 77 , 31.9536 10.6099 19.1753 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 78 I 1.0469 20.3121 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 79 ° 0.9786 19.7242 20.6017 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 80 K 0.9672 45.8298 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 81 H 1.2435 43.1671 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 82 q 13.1488 27.6410 39.7770 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 83 & 1.0075 43.1671 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 84 ’ 0.9965 10.6099 19.1753 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 85 [ 2.4822 12.0363 50.5654 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 86 - 25.1774 16.1927 5.5828 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 87 Y 1.3448 41.3515 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 88 Q 0.3065 41.0922 49.6509 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 89 " 0.8336 22.4172 18.4090 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 90 ! 0.9584 9.4429 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 91 x 14.2974 27.8519 25.9251 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 92 ) 1.1238 16.1927 52.4988 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 93 = 15.1941 30.8412 13.7407 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 94 + 6.5869 30.4755 30.4755 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 95 X 1.1598 42.8775 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 96 » 15.4507 27.3515 25.9251 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 97 ' 1.2145 7.9169 18.4090 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 98 ¢ 2.1640 22.8247 49.6576 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 99 Z 1.4348 36.6765 38.8995 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 100 > 9.0492 30.8412 26.8329 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 101 ® 1.2502 39.9251 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 102 © 1.1598 39.9251 41.2336 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 103 ] 2.2183 12.0363 50.5654 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 104 é 0.4343 22.8247 40.8026 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 105 z 14.3475 23.7021 25.9251 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 106 _ 50.0510 30.1927 4.0083 -Times_New_Roman_Bold.ttf 75 { 16.4520 52.8995 107 ¥ 2.4245 31.5012 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 1 t 5.5721 17.6493 36.8247 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 2 h 2.3283 28.0484 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 3 a 13.9746 25.4180 28.2593 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 4 n 14.2706 28.0484 27.0922 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 5 P 2.4576 33.0339 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 6 o 14.0160 24.2510 28.2593 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 7 e 14.3965 22.8247 28.2593 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 8 : 13.0560 9.4429 28.2593 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 9 r 14.2702 22.3243 27.0922 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 10 l 2.1654 12.8814 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 11 i 1.0840 12.8814 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 12 1 1.0516 19.9834 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 13 | -0.0019 4.0083 52.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 14 N 2.4153 40.4323 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 15 f 1.0800 22.9425 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 16 g 13.9789 25.9251 39.7770 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 17 d 2.2823 27.6410 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 18 W 2.3177 58.0445 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 19 s 14.1414 18.1564 28.2593 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 20 c 14.3634 22.6832 28.2593 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 21 u 15.5443 28.0484 27.0922 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 22 3 0.9358 25.1588 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 23 ~ 19.6413 30.9591 9.1836 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 24 # 1.1637 26.6848 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 25 O -0.0889 40.8329 42.4007 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 26 ` 0.3227 12.5434 9.4429 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 27 @ 0.1220 51.0839 51.9917 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 28 F 2.2481 32.2675 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 29 S 1.3035 26.9744 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 30 p 14.2242 27.6410 39.7770 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 31 “ -0.2032 24.3204 19.1753 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 32 % 1.0098 49.9821 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 33 £ 0.9286 26.8329 40.2147 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 34 . 31.9057 9.4429 9.4429 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 35 2 0.8469 25.1588 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 36 5 1.1170 24.8995 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 37 m 14.3486 43.2155 27.0922 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 38 V 2.4120 43.2782 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 39 6 1.1390 24.8995 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 40 w 15.2196 41.7521 27.0922 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 41 T 2.2510 35.1088 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 42 M 2.6498 52.8692 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 43 G 1.1671 42.5185 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 44 b 2.4715 27.6410 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 45 9 0.8988 24.8995 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 46 ; 13.1017 10.6099 36.8247 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 47 D 2.1679 38.4988 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 48 L 2.1550 35.4792 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 49 y 15.5065 29.1671 38.6099 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 50 ‘ 0.0870 10.6099 19.1753 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 51 \ 0.0101 16.3341 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 52 R 2.5950 41.3515 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 53 < 7.8894 30.8412 26.8329 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 54 4 1.1981 24.8995 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 55 8 1.0583 24.8995 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 56 0 0.7748 25.3999 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 57 A 1.3390 42.0000 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 58 E 2.3664 35.1020 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 59 B 2.3308 35.7687 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 60 v 15.2566 29.4263 27.0922 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 61 k 2.2510 31.2600 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 62 J 2.2394 28.2593 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 63 U 2.2006 39.6659 40.0666 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 64 j 1.0263 15.8337 52.7514 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 65 ( 0.0903 16.1927 52.4988 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 66 7 1.0469 26.0249 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 67 § 0.9891 24.2025 51.7325 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 68 $ -0.0885 25.1103 42.9078 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 69 € 1.0142 29.1671 39.0477 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 70 / 0.0889 18.1261 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 71 C 1.0955 36.8247 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 72 * 1.3429 20.3491 20.7081 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 73 ” -0.0758 24.3204 19.1753 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 74 ? -0.0979 22.4172 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 75 { -1.3021 16.4520 52.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 76 } -0.1364 16.4520 52.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 77 , 30.7586 10.6099 19.1753 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 78 I 2.3322 20.3121 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 79 ° -0.1407 19.7242 20.6017 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 80 K 2.5865 45.8298 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 81 H 2.2914 43.1671 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 82 q 14.1760 27.6410 39.7770 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 83 & -0.2086 43.1671 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 84 ’ 0.0864 10.6099 19.1753 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 85 [ 0.9153 12.0363 50.5654 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 86 - 23.9628 16.1927 5.5828 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 87 Y 2.3029 41.3515 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 88 Q 1.1152 41.0922 49.6509 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 89 " 0.2090 22.4172 18.4090 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 90 ! -0.0922 9.4429 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 91 x 15.4852 27.8519 25.9251 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 92 ) 0.2090 16.1927 52.4988 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 93 = 14.0877 30.8412 13.7407 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 94 + 5.6288 30.4755 30.4755 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 95 X 2.1712 42.8775 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 96 » 14.0725 27.3515 25.9251 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 97 ' -0.1629 7.9169 18.4090 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 98 ¢ 1.0455 22.8247 49.6576 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 99 Z 2.3004 36.6765 38.8995 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 100 > 7.7530 30.8412 26.8329 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 101 ® 0.0370 39.9251 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 102 © 0.0519 39.9251 41.2336 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 103 ] 0.9860 12.0363 50.5654 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 104 é 1.5701 22.8247 40.8026 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 105 z 15.3916 23.7021 25.9251 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 106 _ 48.8581 30.1927 4.0083 -Times_New_Roman_Bold.ttf 76 } 16.4520 52.8995 107 ¥ 1.1671 31.5012 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 1 t -26.3834 17.6493 36.8247 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 2 h -29.2846 28.0484 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 3 a -17.7324 25.4180 28.2593 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 4 n -17.3903 28.0484 27.0922 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 5 P -29.5422 33.0339 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 6 o -17.7439 24.2510 28.2593 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 7 e -17.5604 22.8247 28.2593 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 8 : -17.6526 9.4429 28.2593 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 9 r -17.5662 22.3243 27.0922 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 10 l -29.5470 12.8814 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 11 i -30.5751 12.8814 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 12 1 -29.6965 19.9834 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 13 | -30.6755 4.0083 52.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 14 N -29.5027 40.4323 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 15 f -30.5525 22.9425 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 16 g -17.6493 25.9251 39.7770 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 17 d -29.5397 27.6410 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 18 W -29.5397 58.0445 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 19 s -17.6460 18.1564 28.2593 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 20 c -17.4644 22.6832 28.2593 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 21 u -16.4851 28.0484 27.0922 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 22 3 -29.6402 25.1588 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 23 ~ -10.5884 30.9591 9.1836 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 24 # -29.3217 26.6848 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 25 O -31.7110 40.8329 42.4007 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 26 ` -30.0362 12.5434 9.4429 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 27 @ -30.6549 51.0839 51.9917 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 28 F -29.4682 32.2675 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 29 S -30.5290 26.9744 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 30 p -17.8565 27.6410 39.7770 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 31 “ -30.6208 24.3204 19.1753 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 32 % -29.5515 49.9821 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 33 £ -29.5235 26.8329 40.2147 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 34 . 1.1983 9.4429 9.4429 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 35 2 -29.5677 25.1588 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 36 5 -29.5023 24.8995 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 37 m -17.6421 43.2155 27.0922 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 38 V -29.3202 43.2782 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 39 6 -29.5649 24.8995 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 40 w -16.5596 41.7521 27.0922 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 41 T -29.7502 35.1088 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 42 M -29.1572 52.8692 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 43 G -30.7034 42.5185 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 44 b -29.3735 27.6410 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 45 9 -29.4419 24.8995 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 46 ; -17.4712 10.6099 36.8247 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 47 D -29.4599 38.4988 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 48 L -29.5955 35.4792 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 49 y -16.3194 29.1671 38.6099 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 50 ‘ -30.5242 10.6099 19.1753 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 51 \ -30.4075 16.3341 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 52 R -29.3217 41.3515 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 53 < -22.6883 30.8412 26.8329 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 54 4 -29.1440 24.8995 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 55 8 -29.7216 24.8995 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 56 0 -29.7768 25.3999 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 57 A -30.4829 42.0000 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 58 E -29.3268 35.1020 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 59 B -29.5484 35.7687 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 60 v -16.6927 29.4263 27.0922 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 61 k -29.5455 31.2600 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 62 J -29.4494 28.2593 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 63 U -29.5825 39.6659 40.0666 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 64 j -30.6276 15.8337 52.7514 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 65 ( -30.7870 16.1927 52.4988 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 66 7 -29.4048 26.0249 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 67 § -29.6120 24.2025 51.7325 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 68 $ -30.7145 25.1103 42.9078 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 69 € -29.5750 29.1671 39.0477 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 70 / -30.6175 18.1261 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 71 C -30.3998 36.8247 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 72 * -29.2217 20.3491 20.7081 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 73 ” -30.5439 24.3204 19.1753 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 74 ? -30.4545 22.4172 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 75 { -31.7570 16.4520 52.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 76 } -30.5406 16.4520 52.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 77 , -0.1201 10.6099 19.1753 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 78 I -29.5824 20.3121 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 79 ° -30.7985 19.7242 20.6017 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 80 K -29.4894 45.8298 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 81 H -29.4106 43.1671 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 82 q -17.5637 27.6410 39.7770 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 83 & -30.7938 43.1671 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 84 ’ -30.7346 10.6099 19.1753 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 85 [ -29.5249 12.0363 50.5654 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 86 - -6.7142 16.1927 5.5828 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 87 Y -29.3383 41.3515 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 88 Q -30.8399 41.0922 49.6509 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 89 " -30.6237 22.4172 18.4090 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 90 ! -30.5381 9.4429 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 91 x -16.3563 27.8519 25.9251 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 92 ) -30.5381 16.1927 52.4988 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 93 = -16.3194 30.8412 13.7407 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 94 + -24.8204 30.4755 30.4755 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 95 X -29.5397 42.8775 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 96 » -16.5341 27.3515 25.9251 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 97 ' -30.6295 7.9169 18.4090 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 98 ¢ -29.4630 22.8247 49.6576 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 99 Z -29.4048 36.6765 38.8995 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 100 > -22.6955 30.8412 26.8329 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 101 ® -30.4944 39.9251 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 102 © -30.6755 39.9251 41.2336 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 103 ] -29.4998 12.0363 50.5654 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 104 é -30.0298 22.8247 40.8026 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 105 z -16.4837 23.7021 25.9251 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 106 _ 18.2675 30.1927 4.0083 -Times_New_Roman_Bold.ttf 77 , 10.6099 19.1753 107 ¥ -29.3307 31.5012 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 1 t 3.3323 17.6493 36.8247 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 2 h 0.2220 28.0484 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 3 a 11.9365 25.4180 28.2593 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 4 n 11.5968 28.0484 27.0922 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 5 P -0.0519 33.0339 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 6 o 11.8558 24.2510 28.2593 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 7 e 12.0178 22.8247 28.2593 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 8 : 11.6266 9.4429 28.2593 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 9 r 11.9405 22.3243 27.0922 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 10 l 0.0519 12.8814 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 11 i -1.1598 12.8814 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 12 1 -0.2294 19.9834 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 13 | -1.4294 4.0083 52.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 14 N -0.2565 40.4323 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 15 f -1.0224 22.9425 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 16 g 11.8001 25.9251 39.7770 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 17 d 0.0403 27.6410 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 18 W -0.4045 58.0445 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 19 s 11.8625 18.1564 28.2593 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 20 c 11.8904 22.6832 28.2593 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 21 u 13.0156 28.0484 27.0922 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 22 3 -0.2370 25.1588 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 23 ~ 18.8635 30.9591 9.1836 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 24 # 0.1999 26.6848 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 25 O -2.1161 40.8329 42.4007 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 26 ` -0.9915 12.5434 9.4429 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 27 @ -1.0767 51.0839 51.9917 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 28 F 0.0864 32.2675 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 29 S -0.9522 26.9744 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 30 p 12.0173 27.6410 39.7770 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 31 “ -1.0800 24.3204 19.1753 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 32 % -0.3183 49.9821 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 33 £ -0.2683 26.8329 40.2147 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 34 . 30.8062 9.4429 9.4429 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 35 2 -0.1906 25.1588 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 36 5 -0.1695 24.8995 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 37 m 12.0624 43.2155 27.0922 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 38 V 0.1629 43.2782 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 39 6 -0.1409 24.8995 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 40 w 13.1093 41.7521 27.0922 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 41 T -0.0831 35.1088 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 42 M -0.2057 52.8692 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 43 G -1.2059 42.5185 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 44 b 0.1278 27.6410 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 45 9 -0.1481 24.8995 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 46 ; 11.7184 10.6099 36.8247 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 47 D 0.0889 38.4988 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 48 L -0.2162 35.4792 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 49 y 13.0262 29.1671 38.6099 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 50 ‘ -1.2468 10.6099 19.1753 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 51 \ -1.2559 16.3341 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 52 R 0.0692 41.3515 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 53 < 6.5435 30.8412 26.8329 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 54 4 -0.3201 24.8995 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 55 8 -0.2327 24.8995 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 56 0 -0.3749 25.3999 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 57 A -1.5052 42.0000 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 58 E -0.0764 35.1020 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 59 B -0.1096 35.7687 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 60 v 12.9671 29.4263 27.0922 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 61 k -0.1241 31.2600 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 62 J -0.1052 28.2593 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 63 U 0.0798 39.6659 40.0666 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 64 j -1.0249 15.8337 52.7514 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 65 ( -1.3078 16.1927 52.4988 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 66 7 0.0875 26.0249 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 67 § -0.3734 24.2025 51.7325 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 68 $ -1.0840 25.1103 42.9078 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 69 € -0.0295 29.1671 39.0477 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 70 / -1.2483 18.1261 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 71 C -1.3866 36.8247 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 72 * 0.3239 20.3491 20.7081 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 73 ” -1.0267 24.3204 19.1753 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 74 ? -1.2396 22.4172 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 75 { -1.1968 16.4520 52.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 76 } -2.4226 16.4520 52.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 77 , 29.3750 10.6099 19.1753 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 78 I -0.0831 20.3121 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 79 ° -1.4116 19.7242 20.6017 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 80 K -0.0015 45.8298 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 81 H 0.0057 43.1671 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 82 q 11.8606 27.6410 39.7770 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 83 & -1.0634 43.1671 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 84 ’ -1.2930 10.6099 19.1753 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 85 [ 0.0519 12.0363 50.5654 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 86 - 22.6962 16.1927 5.5828 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 87 Y -0.2565 41.3515 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 88 Q -1.1968 41.0922 49.6509 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 89 " -1.1373 22.4172 18.4090 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 90 ! -0.7212 9.4429 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 91 x 13.1205 27.8519 25.9251 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 92 ) -0.9998 16.1927 52.4988 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 93 = 13.0599 30.8412 13.7407 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 94 + 4.6410 30.4755 30.4755 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 95 X 0.0856 42.8775 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 96 » 12.9301 27.3515 25.9251 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 97 ' -1.2099 7.9169 18.4090 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 98 ¢ -0.0533 22.8247 49.6576 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 99 Z -0.3954 36.6765 38.8995 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 100 > 6.7636 30.8412 26.8329 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 101 ® -1.3285 39.9251 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 102 © -1.3299 39.9251 41.2336 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 103 ] -0.2089 12.0363 50.5654 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 104 é -0.7879 22.8247 40.8026 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 105 z 13.2400 23.7021 25.9251 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 106 _ 47.6977 30.1927 4.0083 -Times_New_Roman_Bold.ttf 78 I 20.3121 38.8995 107 ¥ -0.2575 31.5012 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 1 t 4.4090 17.6493 36.8247 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 2 h 1.2593 28.0484 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 3 a 12.9984 25.4180 28.2593 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 4 n 12.9504 28.0484 27.0922 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 5 P 1.4818 33.0339 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 6 o 12.8869 24.2510 28.2593 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 7 e 12.9965 22.8247 28.2593 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 8 : 13.0123 9.4429 28.2593 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 9 r 13.0647 22.3243 27.0922 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 10 l 1.1354 12.8814 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 11 i -0.1331 12.8814 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 12 1 0.9300 19.9834 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 13 | -0.2590 4.0083 52.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 14 N 1.2992 40.4323 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 15 f -0.0356 22.9425 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 16 g 12.8099 25.9251 39.7770 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 17 d 1.0815 27.6410 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 18 W 1.3266 58.0445 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 19 s 12.8143 18.1564 28.2593 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 20 c 13.1445 22.6832 28.2593 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 21 u 14.1284 28.0484 27.0922 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 22 3 1.0189 25.1588 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 23 ~ 20.1256 30.9591 9.1836 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 24 # 1.4588 26.6848 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 25 O -1.1762 40.8329 42.4007 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 26 ` 0.1194 12.5434 9.4429 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 27 @ -0.0870 51.0839 51.9917 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 28 F 1.1637 32.2675 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 29 S 0.1538 26.9744 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 30 p 12.5506 27.6410 39.7770 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 31 “ -0.2518 24.3204 19.1753 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 32 % 0.6735 49.9821 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 33 £ 0.8249 26.8329 40.2147 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 34 . 31.8811 9.4429 9.4429 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 35 2 0.9823 25.1588 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 36 5 0.9984 24.8995 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 37 m 13.1905 43.2155 27.0922 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 38 V 1.2853 43.2782 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 39 6 1.1068 24.8995 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 40 w 13.8824 41.7521 27.0922 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 41 T 1.2968 35.1088 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 42 M 1.1195 52.8692 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 43 G -0.1701 42.5185 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 44 b 1.0988 27.6410 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 45 9 1.4611 24.8995 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 46 ; 12.9686 10.6099 36.8247 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 47 D 1.1816 38.4988 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 48 L 1.3909 35.4792 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 49 y 14.0862 29.1671 38.6099 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 50 ‘ -0.0076 10.6099 19.1753 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 51 \ 0.3330 16.3341 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 52 R 1.3424 41.3515 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 53 < 7.7370 30.8412 26.8329 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 54 4 1.0262 24.8995 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 55 8 0.7080 24.8995 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 56 0 1.1995 25.3999 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 57 A -0.1422 42.0000 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 58 E 1.4294 35.1020 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 59 B 1.2541 35.7687 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 60 v 13.9467 29.4263 27.0922 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 61 k 1.1637 31.2600 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 62 J 1.2833 28.2593 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 63 U 1.2541 39.6659 40.0666 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 64 j -0.0106 15.8337 52.7514 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 65 ( 0.1389 16.1927 52.4988 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 66 7 1.1243 26.0249 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 67 § 1.0280 24.2025 51.7325 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 68 $ -0.0073 25.1103 42.9078 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 69 € 1.2336 29.1671 39.0477 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 70 / 0.2975 18.1261 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 71 C -0.0073 36.8247 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 72 * 1.2671 20.3491 20.7081 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 73 ” 0.0312 24.3204 19.1753 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 74 ? -0.2681 22.4172 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 75 { -0.9984 16.4520 52.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 76 } -0.0399 16.4520 52.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 77 , 30.5924 10.6099 19.1753 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 78 I 1.0249 20.3121 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 79 ° -0.0725 19.7242 20.6017 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 80 K 1.2926 45.8298 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 81 H 0.9063 43.1671 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 82 q 13.1093 27.6410 39.7770 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 83 & -0.1734 43.1671 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 84 ’ -0.2518 10.6099 19.1753 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 85 [ 1.3357 12.0363 50.5654 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 86 - 23.6221 16.1927 5.5828 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 87 Y 1.0840 41.3515 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 88 Q -0.0846 41.0922 49.6509 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 89 " 0.0000 22.4172 18.4090 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 90 ! 0.1662 9.4429 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 91 x 13.9843 27.8519 25.9251 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 92 ) 0.1868 16.1927 52.4988 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 93 = 14.1400 30.8412 13.7407 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 94 + 5.3795 30.4755 30.4755 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 95 X 1.0931 42.8775 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 96 » 14.4763 27.3515 25.9251 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 97 ' 0.1734 7.9169 18.4090 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 98 ¢ 1.1704 22.8247 49.6576 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 99 Z 1.2559 36.6765 38.8995 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 100 > 7.6731 30.8412 26.8329 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 101 ® -0.0798 39.9251 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 102 © 0.1520 39.9251 41.2336 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 103 ] 1.1653 12.0363 50.5654 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 104 é 0.6011 22.8247 40.8026 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 105 z 14.0622 23.7021 25.9251 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 106 _ 48.7087 30.1927 4.0083 -Times_New_Roman_Bold.ttf 79 ° 19.7242 20.6017 107 ¥ 0.9853 31.5012 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 1 t 2.9334 17.6493 36.8247 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 2 h 0.2138 28.0484 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 3 a 11.7217 25.4180 28.2593 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 4 n 11.8420 28.0484 27.0922 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 5 P 0.0442 33.0339 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 6 o 11.5153 24.2510 28.2593 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 7 e 11.8798 22.8247 28.2593 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 8 : 12.0189 9.4429 28.2593 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 9 r 11.4547 22.3243 27.0922 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 10 l -0.2253 12.8814 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 11 i -1.5385 12.8814 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 12 1 -0.3332 19.9834 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 13 | -0.9922 4.0083 52.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 14 N 0.1635 40.4323 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 15 f -0.9926 22.9425 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 16 g 11.8519 25.9251 39.7770 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 17 d 0.5108 27.6410 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 18 W -0.0091 58.0445 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 19 s 11.8723 18.1564 28.2593 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 20 c 11.8146 22.6832 28.2593 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 21 u 12.9677 28.0484 27.0922 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 22 3 -0.1884 25.1588 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 23 ~ 18.7445 30.9591 9.1836 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 24 # 0.0922 26.6848 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 25 O -2.0809 40.8329 42.4007 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 26 ` -1.1620 12.5434 9.4429 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 27 @ -1.1906 51.0839 51.9917 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 28 F 0.0491 32.2675 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 29 S -1.3832 26.9744 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 30 p 12.2019 27.6410 39.7770 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 31 “ -1.1252 24.3204 19.1753 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 32 % -0.2976 49.9821 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 33 £ -0.1481 26.8329 40.2147 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 34 . 30.5791 9.4429 9.4429 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 35 2 -0.3687 25.1588 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 36 5 0.0802 24.8995 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 37 m 11.9010 43.2155 27.0922 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 38 V -0.3979 43.2782 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 39 6 -0.0593 24.8995 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 40 w 13.2291 41.7521 27.0922 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 41 T 0.0822 35.1088 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 42 M -0.0889 52.8692 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 43 G -1.0758 42.5185 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 44 b 0.0298 27.6410 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 45 9 -0.3999 24.8995 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 46 ; 11.7064 10.6099 36.8247 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 47 D 0.0533 38.4988 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 48 L 0.3940 35.4792 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 49 y 13.2703 29.1671 38.6099 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 50 ‘ -1.0839 10.6099 19.1753 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 51 \ -1.1425 16.3341 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 52 R 0.3602 41.3515 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 53 < 6.7539 30.8412 26.8329 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 54 4 -0.4148 24.8995 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 55 8 0.1051 24.8995 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 56 0 0.3217 25.3999 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 57 A -1.2530 42.0000 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 58 E -0.0015 35.1020 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 59 B 0.0255 35.7687 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 60 v 12.7716 29.4263 27.0922 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 61 k -0.1599 31.2600 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 62 J -0.2297 28.2593 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 63 U -0.0337 39.6659 40.0666 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 64 j -1.1743 15.8337 52.7514 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 65 ( -1.0858 16.1927 52.4988 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 66 7 0.0462 26.0249 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 67 § 0.0771 24.2025 51.7325 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 68 $ -1.1358 25.1103 42.9078 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 69 € -0.3364 29.1671 39.0477 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 70 / -1.2313 18.1261 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 71 C -1.0840 36.8247 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 72 * -0.0726 20.3491 20.7081 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 73 ” -0.9998 24.3204 19.1753 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 74 ? -1.1671 22.4172 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 75 { -1.1243 16.4520 52.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 76 } -2.5427 16.4520 52.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 77 , 29.6762 10.6099 19.1753 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 78 I -0.1283 20.3121 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 79 ° -1.1080 19.7242 20.6017 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 80 K 0.2186 45.8298 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 81 H -0.2926 43.1671 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 82 q 11.9293 27.6410 39.7770 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 83 & -0.9542 43.1671 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 84 ’ -1.2775 10.6099 19.1753 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 85 [ -0.3032 12.0363 50.5654 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 86 - 22.6948 16.1927 5.5828 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 87 Y -0.0393 41.3515 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 88 Q -0.9479 41.0922 49.6509 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 89 " -0.9360 22.4172 18.4090 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 90 ! -1.3630 9.4429 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 91 x 12.9950 27.8519 25.9251 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 92 ) -1.3347 16.1927 52.4988 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 93 = 13.1103 30.8412 13.7407 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 94 + 4.3221 30.4755 30.4755 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 95 X -0.0764 42.8775 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 96 » 13.0129 27.3515 25.9251 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 97 ' -1.1401 7.9169 18.4090 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 98 ¢ -0.0957 22.8247 49.6576 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 99 Z 0.1816 36.6765 38.8995 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 100 > 6.4114 30.8412 26.8329 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 101 ® -1.1228 39.9251 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 102 © -0.9147 39.9251 41.2336 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 103 ] -0.0792 12.0363 50.5654 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 104 é -1.1540 22.8247 40.8026 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 105 z 12.8979 23.7021 25.9251 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 106 _ 47.8039 30.1927 4.0083 -Times_New_Roman_Bold.ttf 80 K 45.8298 38.8995 107 ¥ 0.0864 31.5012 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 1 t 3.1727 17.6493 36.8247 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 2 h -0.0170 28.0484 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 3 a 11.8409 25.4180 28.2593 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 4 n 11.7934 28.0484 27.0922 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 5 P -0.0446 33.0339 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 6 o 11.6265 24.2510 28.2593 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 7 e 12.0772 22.8247 28.2593 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 8 : 12.0672 9.4429 28.2593 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 9 r 11.9742 22.3243 27.0922 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 10 l -0.2354 12.8814 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 11 i -1.3468 12.8814 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 12 1 0.1594 19.9834 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 13 | -1.1209 4.0083 52.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 14 N -0.1042 40.4323 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 15 f -1.1294 22.9425 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 16 g 11.7757 25.9251 39.7770 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 17 d -0.3852 27.6410 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 18 W -0.1009 58.0445 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 19 s 11.9308 18.1564 28.2593 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 20 c 11.6785 22.6832 28.2593 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 21 u 12.9225 28.0484 27.0922 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 22 3 0.0791 25.1588 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 23 ~ 18.9470 30.9591 9.1836 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 24 # 0.0347 26.6848 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 25 O -2.2862 40.8329 42.4007 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 26 ` -0.8847 12.5434 9.4429 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 27 @ -0.7803 51.0839 51.9917 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 28 F 0.0592 32.2675 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 29 S -1.2875 26.9744 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 30 p 11.8704 27.6410 39.7770 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 31 “ -1.4649 24.3204 19.1753 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 32 % -0.2308 49.9821 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 33 £ -0.2352 26.8329 40.2147 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 34 . 30.7433 9.4429 9.4429 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 35 2 -0.0209 25.1588 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 36 5 -0.2205 24.8995 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 37 m 11.6291 43.2155 27.0922 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 38 V 0.2729 43.2782 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 39 6 0.1214 24.8995 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 40 w 12.7890 41.7521 27.0922 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 41 T -0.0741 35.1088 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 42 M -0.1759 52.8692 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 43 G -1.2825 42.5185 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 44 b 0.1472 27.6410 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 45 9 -0.3768 24.8995 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 46 ; 11.7847 10.6099 36.8247 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 47 D 0.0592 38.4988 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 48 L -0.1389 35.4792 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 49 y 12.8936 29.1671 38.6099 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 50 ‘ -1.1252 10.6099 19.1753 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 51 \ -1.0742 16.3341 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 52 R -0.2888 41.3515 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 53 < 6.6512 30.8412 26.8329 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 54 4 0.1142 24.8995 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 55 8 -0.1646 24.8995 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 56 0 -0.2227 25.3999 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 57 A -1.4530 42.0000 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 58 E 0.0943 35.1020 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 59 B -0.0346 35.7687 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 60 v 12.6975 29.4263 27.0922 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 61 k 0.2475 31.2600 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 62 J -0.3273 28.2593 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 63 U -0.0889 39.6659 40.0666 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 64 j -1.3386 15.8337 52.7514 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 65 ( -1.1261 16.1927 52.4988 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 66 7 -0.1720 26.0249 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 67 § -0.0150 24.2025 51.7325 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 68 $ -1.1728 25.1103 42.9078 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 69 € -0.2741 29.1671 39.0477 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 70 / -1.1210 18.1261 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 71 C -1.2987 36.8247 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 72 * 0.3950 20.3491 20.7081 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 73 ” -1.1373 24.3204 19.1753 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 74 ? -1.4722 22.4172 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 75 { -1.1449 16.4520 52.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 76 } -2.4480 16.4520 52.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 77 , 29.7065 10.6099 19.1753 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 78 I 0.4662 20.3121 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 79 ° -1.4721 19.7242 20.6017 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 80 K 0.3079 45.8298 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 81 H 0.3929 43.1671 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 82 q 11.9793 27.6410 39.7770 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 83 & -1.0485 43.1671 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 84 ’ -1.0590 10.6099 19.1753 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 85 [ -0.0519 12.0363 50.5654 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 86 - 22.7438 16.1927 5.5828 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 87 Y -0.2481 41.3515 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 88 Q -1.5082 41.0922 49.6509 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 89 " -1.3684 22.4172 18.4090 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 90 ! -1.3506 9.4429 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 91 x 12.8532 27.8519 25.9251 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 92 ) -1.2247 16.1927 52.4988 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 93 = 13.2665 30.8412 13.7407 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 94 + 4.3326 30.4755 30.4755 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 95 X -0.1923 42.8775 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 96 » 12.9835 27.3515 25.9251 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 97 ' -1.5019 7.9169 18.4090 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 98 ¢ -0.2412 22.8247 49.6576 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 99 Z -0.0432 36.6765 38.8995 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 100 > 6.8261 30.8412 26.8329 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 101 ® -1.2541 39.9251 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 102 © -1.0730 39.9251 41.2336 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 103 ] -0.1480 12.0363 50.5654 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 104 é -0.8710 22.8247 40.8026 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 105 z 13.0171 23.7021 25.9251 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 106 _ 47.5170 30.1927 4.0083 -Times_New_Roman_Bold.ttf 81 H 43.1671 38.8995 107 ¥ -0.2660 31.5012 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 1 t -8.6855 17.6493 36.8247 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 2 h -12.0072 28.0484 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 3 a -0.2130 25.4180 28.2593 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 4 n -0.1307 28.0484 27.0922 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 5 P -11.7097 33.0339 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 6 o 0.1556 24.2510 28.2593 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 7 e -0.1774 22.8247 28.2593 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 8 : -0.1768 9.4429 28.2593 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 9 r 0.0427 22.3243 27.0922 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 10 l -11.9462 12.8814 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 11 i -13.0277 12.8814 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 12 1 -11.9520 19.9834 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 13 | -12.7967 4.0083 52.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 14 N -11.8621 40.4323 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 15 f -13.2665 22.9425 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 16 g 0.2147 25.9251 39.7770 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 17 d -11.8919 27.6410 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 18 W -11.6515 58.0445 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 19 s 0.0058 18.1564 28.2593 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 20 c -0.0591 22.6832 28.2593 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 21 u 1.0796 28.0484 27.0922 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 22 3 -11.8637 25.1588 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 23 ~ 6.9648 30.9591 9.1836 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 24 # -11.8697 26.6848 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 25 O -14.0914 40.8329 42.4007 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 26 ` -13.0422 12.5434 9.4429 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 27 @ -13.1074 51.0839 51.9917 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 28 F -11.6795 32.2675 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 29 S -12.6141 26.9744 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 30 p 0.0033 27.6410 39.7770 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 31 “ -12.8931 24.3204 19.1753 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 32 % -11.8670 49.9821 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 33 £ -12.0146 26.8329 40.2147 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 34 . 18.7275 9.4429 9.4429 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 35 2 -12.1865 25.1588 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 36 5 -11.7794 24.8995 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 37 m -0.0427 43.2155 27.0922 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 38 V -11.8189 43.2782 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 39 6 -11.9145 24.8995 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 40 w 1.1950 41.7521 27.0922 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 41 T -11.9807 35.1088 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 42 M -11.6843 52.8692 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 43 G -13.1517 42.5185 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 44 b -12.1716 27.6410 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 45 9 -12.1034 24.8995 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 46 ; 0.0837 10.6099 36.8247 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 47 D -11.8799 38.4988 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 48 L -11.8189 35.4792 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 49 y 1.2098 29.1671 38.6099 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 50 ‘ -12.9261 10.6099 19.1753 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 51 \ -13.0738 16.3341 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 52 R -12.0696 41.3515 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 53 < -5.1845 30.8412 26.8329 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 54 4 -12.1482 24.8995 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 55 8 -11.9579 24.8995 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 56 0 -11.6042 25.3999 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 57 A -13.0132 42.0000 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 58 E -11.8519 35.1020 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 59 B -11.4874 35.7687 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 60 v 1.0321 29.4263 27.0922 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 61 k -11.7275 31.2600 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 62 J -11.7670 28.2593 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 63 U -12.1090 39.6659 40.0666 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 64 j -12.9244 15.8337 52.7514 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 65 ( -13.0632 16.1927 52.4988 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 66 7 -11.7631 26.0249 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 67 § -12.0294 24.2025 51.7325 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 68 $ -12.7284 25.1103 42.9078 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 69 € -12.0385 29.1671 39.0477 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 70 / -13.1848 18.1261 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 71 C -13.1623 36.8247 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 72 * -11.4637 20.3491 20.7081 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 73 ” -13.0575 24.3204 19.1753 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 74 ? -13.1967 22.4172 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 75 { -13.4514 16.4520 52.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 76 } -14.2125 16.4520 52.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 77 , 17.6787 10.6099 19.1753 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 78 I -11.8043 20.3121 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 79 ° -13.0535 19.7242 20.6017 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 80 K -11.8889 45.8298 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 81 H -12.0000 43.1671 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 82 q 0.0731 27.6410 39.7770 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 83 & -13.0016 43.1671 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 84 ’ -12.9192 10.6099 19.1753 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 85 [ -11.9437 12.0363 50.5654 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 86 - 11.1618 16.1927 5.5828 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 87 Y -11.7569 41.3515 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 88 Q -12.6235 41.0922 49.6509 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 89 " -12.8855 22.4172 18.4090 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 90 ! -12.8524 9.4429 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 91 x 1.3909 27.8519 25.9251 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 92 ) -13.0168 16.1927 52.4988 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 93 = 1.1339 30.8412 13.7407 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 94 + -7.5448 30.4755 30.4755 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 95 X -11.6814 42.8775 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 96 » 1.2839 27.3515 25.9251 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 97 ' -13.0628 7.9169 18.4090 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 98 ¢ -11.9053 22.8247 49.6576 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 99 Z -12.0293 36.6765 38.8995 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 100 > -5.2609 30.8412 26.8329 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 101 ® -13.1112 39.9251 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 102 © -13.0335 39.9251 41.2336 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 103 ] -11.9774 12.0363 50.5654 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 104 é -12.5819 22.8247 40.8026 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 105 z 0.9580 23.7021 25.9251 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 106 _ 35.8486 30.1927 4.0083 -Times_New_Roman_Bold.ttf 82 q 27.6410 39.7770 107 ¥ -11.5595 31.5012 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 1 t 4.3759 17.6493 36.8247 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 2 h 1.3053 28.0484 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 3 a 12.9788 25.4180 28.2593 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 4 n 12.8003 28.0484 27.0922 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 5 P 1.5798 33.0339 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 6 o 12.8707 24.2510 28.2593 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 7 e 13.0132 22.8247 28.2593 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 8 : 13.1551 9.4429 28.2593 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 9 r 13.2679 22.3243 27.0922 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 10 l 1.0797 12.8814 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 11 i -0.2903 12.8814 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 12 1 0.9261 19.9834 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 13 | 0.2081 4.0083 52.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 14 N 1.4986 40.4323 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 15 f -0.6054 22.9425 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 16 g 13.1667 25.9251 39.7770 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 17 d 1.2651 27.6410 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 18 W 0.9563 58.0445 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 19 s 13.1691 18.1564 28.2593 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 20 c 12.7171 22.6832 28.2593 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 21 u 13.5255 28.0484 27.0922 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 22 3 1.1554 25.1588 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 23 ~ 19.9112 30.9591 9.1836 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 24 # 1.0042 26.6848 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 25 O -1.2270 40.8329 42.4007 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 26 ` 0.4327 12.5434 9.4429 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 27 @ -0.3022 51.0839 51.9917 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 28 F 1.3357 32.2675 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 29 S 0.5517 26.9744 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 30 p 13.0237 27.6410 39.7770 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 31 “ -0.0414 24.3204 19.1753 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 32 % 1.1173 49.9821 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 33 £ 0.9506 26.8329 40.2147 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 34 . 31.7667 9.4429 9.4429 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 35 2 1.1059 25.1588 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 36 5 0.9138 24.8995 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 37 m 13.0295 43.2155 27.0922 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 38 V 0.8331 43.2782 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 39 6 1.0559 24.8995 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 40 w 14.1048 41.7521 27.0922 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 41 T 1.1579 35.1088 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 42 M 1.2588 52.8692 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 43 G -0.3075 42.5185 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 44 b 1.2984 27.6410 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 45 9 0.7177 24.8995 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 46 ; 13.0738 10.6099 36.8247 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 47 D 1.2099 38.4988 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 48 L 0.7467 35.4792 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 49 y 14.1813 29.1671 38.6099 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 50 ‘ -0.1753 10.6099 19.1753 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 51 \ -0.1258 16.3341 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 52 R 1.2170 41.3515 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 53 < 7.7175 30.8412 26.8329 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 54 4 0.8959 24.8995 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 55 8 0.6278 24.8995 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 56 0 0.9612 25.3999 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 57 A -0.1556 42.0000 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 58 E 1.2833 35.1020 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 59 B 1.1828 35.7687 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 60 v 14.2303 29.4263 27.0922 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 61 k 1.4366 31.2600 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 62 J 0.7966 28.2593 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 63 U 0.9846 39.6659 40.0666 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 64 j 0.0385 15.8337 52.7514 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 65 ( 0.1691 16.1927 52.4988 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 66 7 1.3303 26.0249 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 67 § 0.9376 24.2025 51.7325 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 68 $ 0.0384 25.1103 42.9078 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 69 € 1.0759 29.1671 39.0477 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 70 / -0.0773 18.1261 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 71 C -0.0115 36.8247 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 72 * 1.1935 20.3491 20.7081 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 73 ” 0.0000 24.3204 19.1753 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 74 ? -0.0403 22.4172 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 75 { -1.0858 16.4520 52.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 76 } 0.0922 16.4520 52.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 77 , 30.6698 10.6099 19.1753 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 78 I 1.0829 20.3121 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 79 ° -0.0274 19.7242 20.6017 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 80 K 1.0336 45.8298 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 81 H 1.3818 43.1671 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 82 q 12.8637 27.6410 39.7770 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 83 & 0.2705 43.1671 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 84 ’ 0.3061 10.6099 19.1753 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 85 [ 1.3822 12.0363 50.5654 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 86 - 24.1315 16.1927 5.5828 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 87 Y 1.3640 41.3515 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 88 Q 0.1926 41.0922 49.6509 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 89 " -0.3109 22.4172 18.4090 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 90 ! 0.1082 9.4429 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 91 x 13.9303 27.8519 25.9251 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 92 ) -0.0260 16.1927 52.4988 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 93 = 14.1505 30.8412 13.7407 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 94 + 5.7572 30.4755 30.4755 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 95 X 1.2897 42.8775 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 96 » 14.5819 27.3515 25.9251 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 97 ' 0.1753 7.9169 18.4090 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 98 ¢ 1.1535 22.8247 49.6576 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 99 Z 1.2694 36.6765 38.8995 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 100 > 8.1748 30.8412 26.8329 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 101 ® -0.1215 39.9251 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 102 © -0.0856 39.9251 41.2336 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 103 ] 0.7865 12.0363 50.5654 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 104 é 0.4934 22.8247 40.8026 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 105 z 14.0087 23.7021 25.9251 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 106 _ 48.7120 30.1927 4.0083 -Times_New_Roman_Bold.ttf 83 & 43.1671 41.2336 107 ¥ 1.0327 31.5012 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 1 t 4.4887 17.6493 36.8247 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 2 h 1.1339 28.0484 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 3 a 12.8764 25.4180 28.2593 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 4 n 12.6323 28.0484 27.0922 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 5 P 1.2189 33.0339 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 6 o 12.8336 24.2510 28.2593 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 7 e 12.8856 22.8247 28.2593 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 8 : 12.9210 9.4429 28.2593 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 9 r 13.1257 22.3243 27.0922 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 10 l 1.2559 12.8814 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 11 i -0.1759 12.8814 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 12 1 0.9671 19.9834 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 13 | 0.2162 4.0083 52.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 14 N 1.1685 40.4323 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 15 f 0.2278 22.9425 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 16 g 12.9682 25.9251 39.7770 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 17 d 1.1300 27.6410 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 18 W 1.1776 58.0445 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 19 s 12.7120 18.1564 28.2593 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 20 c 12.9224 22.6832 28.2593 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 21 u 13.8363 28.0484 27.0922 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 22 3 1.0232 25.1588 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 23 ~ 20.1406 30.9591 9.1836 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 24 # 1.2208 26.6848 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 25 O -1.2411 40.8329 42.4007 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 26 ` 0.2363 12.5434 9.4429 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 27 @ 0.1389 51.0839 51.9917 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 28 F 1.0840 32.2675 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 29 S -0.3084 26.9744 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 30 p 13.0037 27.6410 39.7770 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 31 “ 0.1865 24.3204 19.1753 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 32 % 0.9046 49.9821 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 33 £ 1.0083 26.8329 40.2147 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 34 . 31.7849 9.4429 9.4429 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 35 2 1.1020 25.1588 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 36 5 1.1671 24.8995 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 37 m 12.9687 43.2155 27.0922 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 38 V 1.1119 43.2782 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 39 6 0.8617 24.8995 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 40 w 14.2393 41.7521 27.0922 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 41 T 1.0840 35.1088 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 42 M 1.2041 52.8692 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 43 G 0.0033 42.5185 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 44 b 1.2911 27.6410 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 45 9 0.8397 24.8995 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 46 ; 12.8913 10.6099 36.8247 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 47 D 0.9897 38.4988 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 48 L 0.9936 35.4792 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 49 y 14.0213 29.1671 38.6099 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 50 ‘ 0.0312 10.6099 19.1753 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 51 \ -0.0490 16.3341 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 52 R 0.9951 41.3515 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 53 < 7.8361 30.8412 26.8329 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 54 4 1.0593 24.8995 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 55 8 0.9333 24.8995 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 56 0 0.8488 25.3999 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 57 A 0.1774 42.0000 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 58 E 1.1728 35.1020 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 59 B 1.2616 35.7687 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 60 v 14.0896 29.4263 27.0922 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 61 k 1.2541 31.2600 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 62 J 1.2502 28.2593 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 63 U 0.9878 39.6659 40.0666 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 64 j -0.0831 15.8337 52.7514 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 65 ( -0.0033 16.1927 52.4988 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 66 7 1.2156 26.0249 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 67 § 1.1491 24.2025 51.7325 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 68 $ -0.2176 25.1103 42.9078 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 69 € 0.9968 29.1671 39.0477 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 70 / -0.0413 18.1261 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 71 C 0.0000 36.8247 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 72 * 1.4391 20.3491 20.7081 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 73 ” 0.1647 24.3204 19.1753 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 74 ? 0.3069 22.4172 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 75 { -1.0840 16.4520 52.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 76 } 0.0831 16.4520 52.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 77 , 30.5439 10.6099 19.1753 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 78 I 1.2969 20.3121 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 79 ° 0.1941 19.7242 20.6017 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 80 K 0.9951 45.8298 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 81 H 1.2752 43.1671 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 82 q 12.9725 27.6410 39.7770 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 83 & -0.0831 43.1671 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 84 ’ -0.1481 10.6099 19.1753 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 85 [ 1.2156 12.0363 50.5654 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 86 - 23.8811 16.1927 5.5828 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 87 Y 1.2987 41.3515 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 88 Q 0.0356 41.0922 49.6509 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 89 " 0.1498 22.4172 18.4090 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 90 ! 0.1832 9.4429 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 91 x 14.1294 27.8519 25.9251 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 92 ) -0.1662 16.1927 52.4988 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 93 = 14.3668 30.8412 13.7407 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 94 + 5.6731 30.4755 30.4755 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 95 X 1.1935 42.8775 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 96 » 14.0155 27.3515 25.9251 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 97 ' 0.2557 7.9169 18.4090 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 98 ¢ 1.3890 22.8247 49.6576 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 99 Z 0.9047 36.6765 38.8995 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 100 > 7.9249 30.8412 26.8329 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 101 ® 0.1201 39.9251 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 102 © 0.1274 39.9251 41.2336 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 103 ] 1.2559 12.0363 50.5654 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 104 é 0.5126 22.8247 40.8026 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 105 z 13.9324 23.7021 25.9251 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 106 _ 49.0263 30.1927 4.0083 -Times_New_Roman_Bold.ttf 84 ’ 10.6099 19.1753 107 ¥ 1.2665 31.5012 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 1 t 3.1646 17.6493 36.8247 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 2 h -0.0850 28.0484 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 3 a 11.8491 25.4180 28.2593 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 4 n 12.1033 28.0484 27.0922 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 5 P 0.0831 33.0339 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 6 o 11.8352 24.2510 28.2593 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 7 e 11.6353 22.8247 28.2593 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 8 : 11.7597 9.4429 28.2593 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 9 r 11.7242 22.3243 27.0922 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 10 l -0.0000 12.8814 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 11 i -0.9099 12.8814 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 12 1 -0.2283 19.9834 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 13 | -1.3430 4.0083 52.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 14 N -0.2238 40.4323 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 15 f -1.4188 22.9425 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 16 g 11.8904 25.9251 39.7770 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 17 d 0.0888 27.6410 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 18 W -0.0683 58.0445 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 19 s 11.8943 18.1564 28.2593 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 20 c 11.6843 22.6832 28.2593 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 21 u 12.9115 28.0484 27.0922 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 22 3 -0.2240 25.1588 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 23 ~ 18.8222 30.9591 9.1836 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 24 # -0.1149 26.6848 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 25 O -2.5076 40.8329 42.4007 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 26 ` -0.6820 12.5434 9.4429 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 27 @ -1.1964 51.0839 51.9917 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 28 F 0.0917 32.2675 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 29 S -1.3242 26.9744 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 30 p 11.9851 27.6410 39.7770 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 31 “ -1.1522 24.3204 19.1753 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 32 % -0.1648 49.9821 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 33 £ -0.0193 26.8329 40.2147 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 34 . 30.4978 9.4429 9.4429 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 35 2 -0.1021 25.1588 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 36 5 -0.2663 24.8995 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 37 m 12.0105 43.2155 27.0922 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 38 V -0.1274 43.2782 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 39 6 -0.4925 24.8995 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 40 w 13.0647 41.7521 27.0922 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 41 T 0.1389 35.1088 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 42 M -0.0889 52.8692 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 43 G -1.2339 42.5185 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 44 b 0.2090 27.6410 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 45 9 0.3789 24.8995 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 46 ; 11.7449 10.6099 36.8247 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 47 D 0.0852 38.4988 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 48 L 0.0039 35.4792 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 49 y 13.1132 29.1671 38.6099 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 50 ‘ -1.2189 10.6099 19.1753 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 51 \ -1.0070 16.3341 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 52 R -0.0870 41.3515 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 53 < 6.5503 30.8412 26.8329 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 54 4 -0.5752 24.8995 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 55 8 0.2001 24.8995 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 56 0 -0.3143 25.3999 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 57 A -1.0930 42.0000 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 58 E -0.0058 35.1020 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 59 B -0.1407 35.7687 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 60 v 12.9710 29.4263 27.0922 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 61 k -0.2575 31.2600 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 62 J 0.0889 28.2593 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 63 U 0.0462 39.6659 40.0666 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 64 j -1.0840 15.8337 52.7514 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 65 ( -1.1671 16.1927 52.4988 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 66 7 0.0033 26.0249 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 67 § -0.2708 24.2025 51.7325 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 68 $ -1.2559 25.1103 42.9078 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 69 € -0.1144 29.1671 39.0477 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 70 / -1.2502 18.1261 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 71 C -1.1656 36.8247 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 72 * 0.2168 20.3491 20.7081 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 73 ” -1.2080 24.3204 19.1753 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 74 ? -1.1046 22.4172 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 75 { -2.4288 16.4520 52.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 76 } -1.0278 16.4520 52.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 77 , 29.3768 10.6099 19.1753 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 78 I 0.0591 20.3121 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 79 ° -1.1300 19.7242 20.6017 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 80 K -0.0033 45.8298 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 81 H 0.1407 43.1671 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 82 q 11.7184 27.6410 39.7770 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 83 & -1.2468 43.1671 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 84 ’ -1.0945 10.6099 19.1753 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 85 [ 0.1331 12.0363 50.5654 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 86 - 22.8917 16.1927 5.5828 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 87 Y 0.0831 41.3515 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 88 Q -1.0412 41.0922 49.6509 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 89 " -1.2056 22.4172 18.4090 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 90 ! -1.2008 9.4429 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 91 x 13.0056 27.8519 25.9251 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 92 ) -0.9969 16.1927 52.4988 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 93 = 12.8503 30.8412 13.7407 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 94 + 4.6337 30.4755 30.4755 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 95 X -0.1288 42.8775 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 96 » 12.9562 27.3515 25.9251 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 97 ' -1.1671 7.9169 18.4090 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 98 ¢ 0.1349 22.8247 49.6576 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 99 Z 0.0000 36.6765 38.8995 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 100 > 6.6799 30.8412 26.8329 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 101 ® -1.1613 39.9251 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 102 © -1.2056 39.9251 41.2336 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 103 ] -0.2667 12.0363 50.5654 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 104 é -0.7303 22.8247 40.8026 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 105 z 12.9316 23.7021 25.9251 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 106 _ 47.8145 30.1927 4.0083 -Times_New_Roman_Bold.ttf 85 [ 12.0363 50.5654 107 ¥ 0.0418 31.5012 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 1 t -19.3760 17.6493 36.8247 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 2 h -22.8211 28.0484 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 3 a -10.8995 25.4180 28.2593 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 4 n -10.8183 28.0484 27.0922 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 5 P -22.4997 33.0339 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 6 o -10.9572 24.2510 28.2593 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 7 e -11.1081 22.8247 28.2593 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 8 : -10.4710 9.4429 28.2593 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 9 r -10.8923 22.3243 27.0922 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 10 l -22.4551 12.8814 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 11 i -23.8739 12.8814 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 12 1 -22.6297 19.9834 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 13 | -23.8753 4.0083 52.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 14 N -22.8378 40.4323 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 15 f -23.8278 22.9425 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 16 g -10.9456 25.9251 39.7770 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 17 d -22.7453 27.6410 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 18 W -22.7347 58.0445 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 19 s -10.7900 18.1564 28.2593 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 20 c -10.8106 22.6832 28.2593 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 21 u -9.5162 28.0484 27.0922 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 22 3 -23.0063 25.1588 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 23 ~ -4.0889 30.9591 9.1836 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 24 # -22.7736 26.6848 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 25 O -25.1897 40.8329 42.4007 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 26 ` -23.4138 12.5434 9.4429 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 27 @ -23.8307 51.0839 51.9917 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 28 F -22.6237 32.2675 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 29 S -23.7941 26.9744 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 30 p -10.7776 27.6410 39.7770 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 31 “ -23.8960 24.3204 19.1753 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 32 % -22.9381 49.9821 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 33 £ -22.8583 26.8329 40.2147 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 34 . 8.2310 9.4429 9.4429 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 35 2 -22.9420 25.1588 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 36 5 -22.7957 24.8995 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 37 m -10.8552 43.2155 27.0922 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 38 V -22.7068 43.2782 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 39 6 -22.8012 24.8995 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 40 w -9.7662 41.7521 27.0922 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 41 T -22.6016 35.1088 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 42 M -22.8845 52.8692 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 43 G -24.0604 42.5185 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 44 b -22.9249 27.6410 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 45 9 -22.7752 24.8995 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 46 ; -10.5444 10.6099 36.8247 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 47 D -22.9162 38.4988 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 48 L -22.7938 35.4792 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 49 y -9.5663 29.1671 38.6099 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 50 ‘ -24.0088 10.6099 19.1753 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 51 \ -23.9997 16.3341 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 52 R -22.7851 41.3515 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 53 < -16.0230 30.8412 26.8329 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 54 4 -22.9010 24.8995 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 55 8 -22.8458 24.8995 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 56 0 -22.6287 25.3999 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 57 A -23.7523 42.0000 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 58 E -22.6608 35.1020 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 59 B -22.4659 35.7687 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 60 v -9.7310 29.4263 27.0922 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 61 k -22.5867 31.2600 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 62 J -22.5785 28.2593 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 63 U -22.7891 39.6659 40.0666 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 64 j -23.9776 15.8337 52.7514 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 65 ( -23.8696 16.1927 52.4988 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 66 7 -22.8419 26.0249 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 67 § -22.8920 24.2025 51.7325 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 68 $ -23.8187 25.1103 42.9078 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 69 € -22.7719 29.1671 39.0477 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 70 / -24.0401 18.1261 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 71 C -23.6196 36.8247 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 72 * -22.3834 20.3491 20.7081 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 73 ” -23.8830 24.3204 19.1753 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 74 ? -23.8368 22.4172 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 75 { -25.0115 16.4520 52.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 76 } -23.9037 16.4520 52.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 77 , 6.7465 10.6099 19.1753 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 78 I -22.7438 20.3121 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 79 ° -23.8590 19.7242 20.6017 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 80 K -22.7626 45.8298 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 81 H -22.8491 43.1671 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 82 q -10.9793 27.6410 39.7770 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 83 & -23.8739 43.1671 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 84 ’ -24.1068 10.6099 19.1753 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 85 [ -22.7553 12.0363 50.5654 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 86 - 0.1586 16.1927 5.5828 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 87 Y -22.3680 41.3515 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 88 Q -23.9997 41.0922 49.6509 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 89 " -23.7850 22.4172 18.4090 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 90 ! -24.2160 9.4429 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 91 x -9.5220 27.8519 25.9251 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 92 ) -23.8739 16.1927 52.4988 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 93 = -9.7325 30.8412 13.7407 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 94 + -18.6405 30.4755 30.4755 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 95 X -22.8885 42.8775 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 96 » -9.5286 27.3515 25.9251 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 97 ' -23.7498 7.9169 18.4090 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 98 ¢ -22.5852 22.8247 49.6576 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 99 Z -22.6237 36.6765 38.8995 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 100 > -16.2036 30.8412 26.8329 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 101 ® -24.1401 39.9251 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 102 © -23.7979 39.9251 41.2336 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 103 ] -22.5421 12.0363 50.5654 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 104 é -23.3935 22.8247 40.8026 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 105 z -9.8693 23.7021 25.9251 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 106 _ 24.9727 30.1927 4.0083 -Times_New_Roman_Bold.ttf 86 - 16.1927 5.5828 107 ¥ -22.6294 31.5012 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 1 t 2.9608 17.6493 36.8247 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 2 h 0.1105 28.0484 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 3 a 11.6593 25.4180 28.2593 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 4 n 11.6771 28.0484 27.0922 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 5 P -0.2144 33.0339 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 6 o 11.8929 24.2510 28.2593 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 7 e 11.7645 22.8247 28.2593 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 8 : 11.4061 9.4429 28.2593 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 9 r 11.8598 22.3243 27.0922 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 10 l -0.0000 12.8814 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 11 i -1.2593 12.8814 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 12 1 -0.1079 19.9834 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 13 | -1.3945 4.0083 52.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 14 N 0.0779 40.4323 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 15 f -1.0415 22.9425 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 16 g 12.0025 25.9251 39.7770 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 17 d 0.1578 27.6410 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 18 W 0.1898 58.0445 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 19 s 11.6074 18.1564 28.2593 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 20 c 11.8937 22.6832 28.2593 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 21 u 12.8489 28.0484 27.0922 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 22 3 -0.5234 25.1588 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 23 ~ 19.0148 30.9591 9.1836 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 24 # -0.0765 26.6848 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 25 O -2.1120 40.8329 42.4007 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 26 ` -0.7665 12.5434 9.4429 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 27 @ -1.0869 51.0839 51.9917 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 28 F 0.2884 32.2675 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 29 S -1.2996 26.9744 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 30 p 11.8130 27.6410 39.7770 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 31 “ -0.9580 24.3204 19.1753 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 32 % -0.0059 49.9821 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 33 £ -0.2189 26.8329 40.2147 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 34 . 30.6255 9.4429 9.4429 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 35 2 -0.0981 25.1588 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 36 5 -0.3819 24.8995 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 37 m 11.9372 43.2155 27.0922 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 38 V 0.0076 43.2782 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 39 6 -0.0502 24.8995 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 40 w 13.0839 41.7521 27.0922 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 41 T -0.1759 35.1088 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 42 M -0.3021 52.8692 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 43 G -1.2378 42.5185 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 44 b 0.4233 27.6410 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 45 9 0.1017 24.8995 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 46 ; 11.5930 10.6099 36.8247 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 47 D -0.0446 38.4988 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 48 L 0.1748 35.4792 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 49 y 13.0614 29.1671 38.6099 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 50 ‘ -1.0709 10.6099 19.1753 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 51 \ -1.2588 16.3341 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 52 R -0.1313 41.3515 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 53 < 6.6176 30.8412 26.8329 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 54 4 -0.2501 24.8995 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 55 8 -0.0781 24.8995 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 56 0 -0.0982 25.3999 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 57 A -1.3687 42.0000 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 58 E -0.0846 35.1020 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 59 B 0.0755 35.7687 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 60 v 12.8575 29.4263 27.0922 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 61 k -0.0490 31.2600 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 62 J 0.3527 28.2593 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 63 U 0.3815 39.6659 40.0666 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 64 j -1.0416 15.8337 52.7514 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 65 ( -1.2233 16.1927 52.4988 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 66 7 -0.0456 26.0249 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 67 § -0.1039 24.2025 51.7325 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 68 $ -1.2147 25.1103 42.9078 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 69 € -0.2828 29.1671 39.0477 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 70 / -1.2781 18.1261 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 71 C -0.9955 36.8247 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 72 * 0.0094 20.3491 20.7081 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 73 ” -0.9432 24.3204 19.1753 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 74 ? -1.0578 22.4172 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 75 { -1.3390 16.4520 52.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 76 } -2.3413 16.4520 52.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 77 , 29.5085 10.6099 19.1753 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 78 I -0.0725 20.3121 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 79 ° -1.0382 19.7242 20.6017 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 80 K -0.0889 45.8298 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 81 H 0.0831 43.1671 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 82 q 11.7598 27.6410 39.7770 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 83 & -1.5292 43.1671 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 84 ’ -1.3876 10.6099 19.1753 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 85 [ 0.2869 12.0363 50.5654 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 86 - 22.4027 16.1927 5.5828 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 87 Y 0.1447 41.3515 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 88 Q -1.1225 41.0922 49.6509 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 89 " -1.4609 22.4172 18.4090 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 90 ! -0.9062 9.4429 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 91 x 12.9835 27.8519 25.9251 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 92 ) -1.0662 16.1927 52.4988 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 93 = 12.9744 30.8412 13.7407 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 94 + 4.4979 30.4755 30.4755 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 95 X 0.0566 42.8775 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 96 » 13.0541 27.3515 25.9251 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 97 ' -1.2603 7.9169 18.4090 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 98 ¢ 0.0265 22.8247 49.6576 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 99 Z -0.0384 36.6765 38.8995 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 100 > 6.6824 30.8412 26.8329 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 101 ® -1.3408 39.9251 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 102 © -1.1728 39.9251 41.2336 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 103 ] -0.2316 12.0363 50.5654 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 104 é -0.7336 22.8247 40.8026 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 105 z 13.0523 23.7021 25.9251 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 106 _ 47.8044 30.1927 4.0083 -Times_New_Roman_Bold.ttf 87 Y 41.3515 38.8995 107 ¥ 0.0837 31.5012 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 1 t 4.5555 17.6493 36.8247 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 2 h 1.3822 28.0484 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 3 a 12.8907 25.4180 28.2593 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 4 n 13.2203 28.0484 27.0922 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 5 P 0.8830 33.0339 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 6 o 12.8503 24.2510 28.2593 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 7 e 12.8663 22.8247 28.2593 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 8 : 12.8427 9.4429 28.2593 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 9 r 12.6674 22.3243 27.0922 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 10 l 0.9893 12.8814 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 11 i 0.2921 12.8814 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 12 1 1.0066 19.9834 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 13 | -0.0932 4.0083 52.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 14 N 0.9553 40.4323 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 15 f -0.1360 22.9425 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 16 g 12.7933 25.9251 39.7770 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 17 d 1.2839 27.6410 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 18 W 1.1066 58.0445 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 19 s 13.1123 18.1564 28.2593 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 20 c 13.1078 22.6832 28.2593 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 21 u 14.1809 28.0484 27.0922 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 22 3 1.0414 25.1588 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 23 ~ 20.0263 30.9591 9.1836 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 24 # 0.9926 26.6848 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 25 O -1.0469 40.8329 42.4007 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 26 ` 0.2305 12.5434 9.4429 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 27 @ 0.1001 51.0839 51.9917 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 28 F 0.8322 32.2675 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 29 S -0.0946 26.9744 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 30 p 13.1833 27.6410 39.7770 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 31 “ -0.2384 24.3204 19.1753 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 32 % 1.0588 49.9821 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 33 £ 1.0189 26.8329 40.2147 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 34 . 31.9892 9.4429 9.4429 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 35 2 1.0087 25.1588 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 36 5 1.0325 24.8995 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 37 m 13.2871 43.2155 27.0922 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 38 V 1.0009 43.2782 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 39 6 1.2188 24.8995 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 40 w 14.0665 41.7521 27.0922 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 41 T 1.3275 35.1088 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 42 M 1.3746 52.8692 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 43 G -0.2605 42.5185 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 44 b 1.3891 27.6410 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 45 9 1.6527 24.8995 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 46 ; 12.9047 10.6099 36.8247 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 47 D 1.1891 38.4988 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 48 L 1.1718 35.4792 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 49 y 14.2625 29.1671 38.6099 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 50 ‘ 0.3910 10.6099 19.1753 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 51 \ 0.1586 16.3341 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 52 R 1.3266 41.3515 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 53 < 7.5237 30.8412 26.8329 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 54 4 1.0189 24.8995 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 55 8 1.3058 24.8995 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 56 0 0.9540 25.3999 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 57 A 0.0204 42.0000 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 58 E 1.2367 35.1020 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 59 B 0.7361 35.7687 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 60 v 14.2899 29.4263 27.0922 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 61 k 1.0858 31.2600 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 62 J 0.9697 28.2593 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 63 U 0.9914 39.6659 40.0666 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 64 j 0.0033 15.8337 52.7514 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 65 ( 0.1778 16.1927 52.4988 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 66 7 1.1934 26.0249 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 67 § 1.3331 24.2025 51.7325 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 68 $ -0.0596 25.1103 42.9078 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 69 € 0.9823 29.1671 39.0477 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 70 / 0.4325 18.1261 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 71 C -0.2575 36.8247 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 72 * 1.3262 20.3491 20.7081 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 73 ” -0.0475 24.3204 19.1753 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 74 ? -0.1512 22.4172 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 75 { -0.0029 16.4520 52.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 76 } -0.7048 16.4520 52.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 77 , 30.4608 10.6099 19.1753 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 78 I 1.0915 20.3121 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 79 ° -0.4223 19.7242 20.6017 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 80 K 1.3208 45.8298 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 81 H 1.3525 43.1671 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 82 q 13.0705 27.6410 39.7770 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 83 & 0.1586 43.1671 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 84 ’ -0.1643 10.6099 19.1753 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 85 [ 1.0351 12.0363 50.5654 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 86 - 23.9094 16.1927 5.5828 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 87 Y 1.2353 41.3515 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 88 Q 0.0683 41.0922 49.6509 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 89 " -0.0312 22.4172 18.4090 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 90 ! -0.0688 9.4429 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 91 x 13.6317 27.8519 25.9251 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 92 ) -0.2220 16.1927 52.4988 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 93 = 14.3504 30.8412 13.7407 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 94 + 5.4136 30.4755 30.4755 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 95 X 0.7048 42.8775 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 96 » 14.2082 27.3515 25.9251 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 97 ' -0.2801 7.9169 18.4090 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 98 ¢ 1.1539 22.8247 49.6576 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 99 Z 1.2141 36.6765 38.8995 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 100 > 7.9750 30.8412 26.8329 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 101 ® 0.1274 39.9251 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 102 © -0.2699 39.9251 41.2336 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 103 ] 1.2987 12.0363 50.5654 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 104 é 0.3699 22.8247 40.8026 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 105 z 14.1160 23.7021 25.9251 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 106 _ 48.9431 30.1927 4.0083 -Times_New_Roman_Bold.ttf 88 Q 41.0922 49.6509 107 ¥ 1.3800 31.5012 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 1 t 4.3225 17.6493 36.8247 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 2 h 1.3448 28.0484 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 3 a 12.9298 25.4180 28.2593 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 4 n 12.8024 28.0484 27.0922 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 5 P 1.1917 33.0339 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 6 o 12.9671 24.2510 28.2593 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 7 e 13.1142 22.8247 28.2593 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 8 : 12.9383 9.4429 28.2593 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 9 r 12.8115 22.3243 27.0922 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 10 l 1.2519 12.8814 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 11 i 0.1629 12.8814 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 12 1 0.8199 19.9834 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 13 | 0.2518 4.0083 52.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 14 N 1.3851 40.4323 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 15 f -0.1201 22.9425 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 16 g 12.8365 25.9251 39.7770 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 17 d 1.2041 27.6410 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 18 W 0.8341 58.0445 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 19 s 13.0426 18.1564 28.2593 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 20 c 12.7302 22.6832 28.2593 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 21 u 14.1414 28.0484 27.0922 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 22 3 0.9695 25.1588 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 23 ~ 20.0190 30.9591 9.1836 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 24 # 1.3141 26.6848 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 25 O -1.0931 40.8329 42.4007 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 26 ` 0.5153 12.5434 9.4429 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 27 @ 0.0443 51.0839 51.9917 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 28 F 1.3314 32.2675 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 29 S 0.1999 26.9744 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 30 p 13.2353 27.6410 39.7770 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 31 “ 0.3973 24.3204 19.1753 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 32 % 0.9228 49.9821 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 33 £ 1.1981 26.8329 40.2147 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 34 . 31.8147 9.4429 9.4429 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 35 2 0.9275 25.1588 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 36 5 1.1950 24.8995 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 37 m 12.9744 43.2155 27.0922 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 38 V 1.7076 43.2782 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 39 6 1.1655 24.8995 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 40 w 14.2636 41.7521 27.0922 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 41 T 1.1656 35.1088 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 42 M 1.0709 52.8692 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 43 G -0.0903 42.5185 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 44 b 0.9105 27.6410 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 45 9 0.7853 24.8995 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 46 ; 13.0301 10.6099 36.8247 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 47 D 1.2468 38.4988 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 48 L 1.0634 35.4792 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 49 y 14.1471 29.1671 38.6099 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 50 ‘ 0.0250 10.6099 19.1753 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 51 \ 0.0961 16.3341 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 52 R 1.3429 41.3515 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 53 < 7.6880 30.8412 26.8329 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 54 4 1.0295 24.8995 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 55 8 0.8223 24.8995 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 56 0 1.2370 25.3999 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 57 A 0.1349 42.0000 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 58 E 1.0859 35.1020 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 59 B 1.2617 35.7687 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 60 v 13.8113 29.4263 27.0922 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 61 k 1.0964 31.2600 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 62 J 0.9853 28.2593 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 63 U 1.2766 39.6659 40.0666 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 64 j -0.2311 15.8337 52.7514 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 65 ( 0.0000 16.1927 52.4988 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 66 7 1.2981 26.0249 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 67 § 1.1505 24.2025 51.7325 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 68 $ 0.1806 25.1103 42.9078 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 69 € 0.8857 29.1671 39.0477 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 70 / 0.2180 18.1261 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 71 C 0.0148 36.8247 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 72 * 1.1767 20.3491 20.7081 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 73 ” 0.0798 24.3204 19.1753 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 74 ? 0.0427 22.4172 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 75 { -1.2041 16.4520 52.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 76 } 0.1528 16.4520 52.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 77 , 30.4867 10.6099 19.1753 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 78 I 1.0114 20.3121 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 79 ° -0.1774 19.7242 20.6017 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 80 K 1.2386 45.8298 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 81 H 1.1094 43.1671 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 82 q 12.5478 27.6410 39.7770 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 83 & 0.0073 43.1671 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 84 ’ -0.0474 10.6099 19.1753 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 85 [ 1.3818 12.0363 50.5654 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 86 - 23.7095 16.1927 5.5828 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 87 Y 1.1152 41.3515 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 88 Q 0.2571 41.0922 49.6509 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 89 " 0.0000 22.4172 18.4090 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 90 ! -0.0279 9.4429 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 91 x 13.9680 27.8519 25.9251 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 92 ) 0.1321 16.1927 52.4988 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 93 = 13.8359 30.8412 13.7407 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 94 + 5.7144 30.4755 30.4755 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 95 X 1.2962 42.8775 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 96 » 14.1751 27.3515 25.9251 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 97 ' -0.0134 7.9169 18.4090 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 98 ¢ 1.1993 22.8247 49.6576 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 99 Z 1.2657 36.6765 38.8995 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 100 > 7.7678 30.8412 26.8329 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 101 ® -0.1474 39.9251 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 102 © 0.2133 39.9251 41.2336 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 103 ] 1.1728 12.0363 50.5654 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 104 é 0.1720 22.8247 40.8026 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 105 z 14.0156 23.7021 25.9251 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 106 _ 49.1536 30.1927 4.0083 -Times_New_Roman_Bold.ttf 89 " 22.4172 18.4090 107 ¥ 1.2041 31.5012 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 1 t 4.4387 17.6493 36.8247 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 2 h 1.1061 28.0484 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 3 a 12.9744 25.4180 28.2593 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 4 n 12.6341 28.0484 27.0922 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 5 P 1.3314 33.0339 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 6 o 13.1997 24.2510 28.2593 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 7 e 12.9710 22.8247 28.2593 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 8 : 13.0142 9.4429 28.2593 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 9 r 13.1401 22.3243 27.0922 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 10 l 1.1671 12.8814 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 11 i -0.0033 12.8814 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 12 1 0.8455 19.9834 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 13 | 0.0073 4.0083 52.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 14 N 1.0782 40.4323 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 15 f -0.0465 22.9425 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 16 g 12.7515 25.9251 39.7770 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 17 d 1.1671 27.6410 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 18 W 1.2872 58.0445 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 19 s 13.0129 18.1564 28.2593 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 20 c 12.5434 22.6832 28.2593 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 21 u 14.1375 28.0484 27.0922 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 22 3 1.0632 25.1588 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 23 ~ 19.9834 30.9591 9.1836 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 24 # 0.9984 26.6848 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 25 O -1.1358 40.8329 42.4007 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 26 ` 0.5058 12.5434 9.4429 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 27 @ 0.0000 51.0839 51.9917 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 28 F 1.1934 32.2675 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 29 S -0.0798 26.9744 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 30 p 13.0647 27.6410 39.7770 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 31 “ -0.1668 24.3204 19.1753 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 32 % 0.9579 49.9821 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 33 £ 0.9300 26.8329 40.2147 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 34 . 31.9608 9.4429 9.4429 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 35 2 0.9819 25.1588 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 36 5 1.0767 24.8995 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 37 m 12.9744 43.2155 27.0922 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 38 V 1.2607 43.2782 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 39 6 0.8132 24.8995 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 40 w 14.3634 41.7521 27.0922 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 41 T 0.7970 35.1088 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 42 M 1.2911 52.8692 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 43 G -0.0461 42.5185 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 44 b 0.9897 27.6410 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 45 9 0.9785 24.8995 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 46 ; 12.6602 10.6099 36.8247 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 47 D 1.0826 38.4988 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 48 L 1.0132 35.4792 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 49 y 14.1553 29.1671 38.6099 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 50 ‘ 0.0758 10.6099 19.1753 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 51 \ -0.0889 16.3341 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 52 R 1.3511 41.3515 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 53 < 7.8303 30.8412 26.8329 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 54 4 0.9757 24.8995 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 55 8 1.2740 24.8995 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 56 0 1.0107 25.3999 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 57 A -0.0856 42.0000 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 58 E 1.0690 35.1020 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 59 B 1.0560 35.7687 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 60 v 14.0616 29.4263 27.0922 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 61 k 1.1743 31.2600 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 62 J 0.8892 28.2593 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 63 U 1.0017 39.6659 40.0666 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 64 j -0.0837 15.8337 52.7514 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 65 ( -0.1687 16.1927 52.4988 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 66 7 1.1391 26.0249 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 67 § 1.1487 24.2025 51.7325 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 68 $ 0.1407 25.1103 42.9078 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 69 € 0.8810 29.1671 39.0477 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 70 / 0.1662 18.1261 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 71 C -0.1999 36.8247 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 72 * 1.3189 20.3491 20.7081 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 73 ” -0.1349 24.3204 19.1753 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 74 ? -0.1168 22.4172 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 75 { -1.2502 16.4520 52.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 76 } 0.0352 16.4520 52.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 77 , 30.8754 10.6099 19.1753 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 78 I 1.0502 20.3121 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 79 ° -0.2609 19.7242 20.6017 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 80 K 1.0249 45.8298 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 81 H 1.2559 43.1671 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 82 q 13.0575 27.6410 39.7770 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 83 & 0.0109 43.1671 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 84 ’ -0.0073 10.6099 19.1753 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 85 [ 1.0652 12.0363 50.5654 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 86 - 24.0919 16.1927 5.5828 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 87 Y 1.1243 41.3515 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 88 Q 0.1422 41.0922 49.6509 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 89 " 0.1274 22.4172 18.4090 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 90 ! 0.2253 9.4429 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 91 x 14.1375 27.8519 25.9251 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 92 ) -0.2186 16.1927 52.4988 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 93 = 14.3043 30.8412 13.7407 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 94 + 5.7989 30.4755 30.4755 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 95 X 1.2934 42.8775 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 96 » 14.2318 27.3515 25.9251 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 97 ' 0.1070 7.9169 18.4090 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 98 ¢ 1.0782 22.8247 49.6576 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 99 Z 1.3347 36.6765 38.8995 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 100 > 7.7932 30.8412 26.8329 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 101 ® 0.0831 39.9251 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 102 © -0.0764 39.9251 41.2336 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 103 ] 1.2410 12.0363 50.5654 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 104 é 0.2633 22.8247 40.8026 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 105 z 14.0664 23.7021 25.9251 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 106 _ 49.0963 30.1927 4.0083 -Times_New_Roman_Bold.ttf 90 ! 9.4429 41.2336 107 ¥ 1.1671 31.5012 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 1 t -9.7662 17.6493 36.8247 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 2 h -12.9947 28.0484 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 3 a -1.2208 25.4180 28.2593 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 4 n -1.2112 28.0484 27.0922 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 5 P -13.1041 33.0339 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 6 o -1.5092 24.2510 28.2593 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 7 e -1.0748 22.8247 28.2593 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 8 : -1.4127 9.4429 28.2593 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 9 r -1.2694 22.3243 27.0922 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 10 l -12.7433 12.8814 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 11 i -13.9771 12.8814 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 12 1 -13.2114 19.9834 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 13 | -13.9713 4.0083 52.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 14 N -12.9119 40.4323 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 15 f -14.0577 22.9425 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 16 g -1.2468 25.9251 39.7770 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 17 d -13.0970 27.6410 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 18 W -13.0129 58.0445 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 19 s -1.0469 18.1564 28.2593 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 20 c -1.1762 22.6832 28.2593 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 21 u 0.0624 28.0484 27.0922 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 22 3 -13.0821 25.1588 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 23 ~ 5.3577 30.9591 9.1836 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 24 # -12.6880 26.6848 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 25 O -15.3349 40.8329 42.4007 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 26 ` -13.8798 12.5434 9.4429 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 27 @ -14.2822 51.0839 51.9917 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 28 F -13.0353 32.2675 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 29 S -14.3150 26.9744 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 30 p -1.0800 27.6410 39.7770 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 31 “ -14.1323 24.3204 19.1753 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 32 % -13.3238 49.9821 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 33 £ -13.0245 26.8329 40.2147 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 34 . 17.5086 9.4429 9.4429 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 35 2 -13.3670 25.1588 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 36 5 -13.3477 24.8995 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 37 m -1.1152 43.2155 27.0922 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 38 V -12.7284 43.2782 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 39 6 -13.5173 24.8995 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 40 w -0.0889 41.7521 27.0922 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 41 T -12.7820 35.1088 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 42 M -13.0162 52.8692 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 43 G -14.0155 42.5185 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 44 b -12.9768 27.6410 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 45 9 -13.0322 24.8995 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 46 ; -1.1358 10.6099 36.8247 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 47 D -13.0641 38.4988 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 48 L -13.2367 35.4792 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 49 y -0.0352 29.1671 38.6099 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 50 ‘ -14.2155 10.6099 19.1753 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 51 \ -14.2817 16.3341 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 52 R -12.9153 41.3515 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 53 < -6.0479 30.8412 26.8329 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 54 4 -13.2480 24.8995 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 55 8 -12.9778 24.8995 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 56 0 -13.2114 25.3999 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 57 A -14.1578 42.0000 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 58 E -13.0632 35.1020 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 59 B -13.0541 35.7687 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 60 v 0.0903 29.4263 27.0922 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 61 k -12.9489 31.2600 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 62 J -12.9772 28.2593 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 63 U -13.0680 39.6659 40.0666 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 64 j -13.9785 15.8337 52.7514 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 65 ( -14.2245 16.1927 52.4988 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 66 7 -13.0595 26.0249 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 67 § -13.2162 24.2025 51.7325 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 68 $ -14.1712 25.1103 42.9078 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 69 € -13.0946 29.1671 39.0477 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 70 / -14.0123 18.1261 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 71 C -14.1991 36.8247 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 72 * -13.0057 20.3491 20.7081 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 73 ” -14.2985 24.3204 19.1753 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 74 ? -13.7608 22.4172 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 75 { -14.1915 16.4520 52.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 76 } -15.3190 16.4520 52.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 77 , 16.4510 10.6099 19.1753 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 78 I -12.8576 20.3121 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 79 ° -13.9194 19.7242 20.6017 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 80 K -12.8971 45.8298 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 81 H -13.1848 43.1671 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 82 q -1.2429 27.6410 39.7770 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 83 & -14.1058 43.1671 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 84 ’ -14.0319 10.6099 19.1753 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 85 [ -12.8946 12.0363 50.5654 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 86 - 9.8655 16.1927 5.5828 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 87 Y -12.7937 41.3515 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 88 Q -14.0731 41.0922 49.6509 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 89 " -14.4966 22.4172 18.4090 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 90 ! -14.1760 9.4429 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 91 x -0.0370 27.8519 25.9251 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 92 ) -14.0862 16.1927 52.4988 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 93 = 0.1629 30.8412 13.7407 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 94 + -8.5529 30.4755 30.4755 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 95 X -13.0171 42.8775 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 96 » -0.0442 27.3515 25.9251 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 97 ' -13.9713 7.9169 18.4090 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 98 ¢ -13.1118 22.8247 49.6576 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 99 Z -13.0945 36.6765 38.8995 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 100 > -6.4255 30.8412 26.8329 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 101 ® -13.9967 39.9251 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 102 © -13.8824 39.9251 41.2336 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 103 ] -13.0524 12.0363 50.5654 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 104 é -13.7344 22.8247 40.8026 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 105 z 0.0427 23.7021 25.9251 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 106 _ 34.8387 30.1927 4.0083 -Times_New_Roman_Bold.ttf 91 x 27.8519 25.9251 107 ¥ -12.9783 31.5012 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 1 t 4.4238 17.6493 36.8247 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 2 h 0.9509 28.0484 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 3 a 12.9802 25.4180 28.2593 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 4 n 13.1583 28.0484 27.0922 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 5 P 1.4333 33.0339 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 6 o 12.9725 24.2510 28.2593 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 7 e 12.8024 22.8247 28.2593 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 8 : 12.9744 9.4429 28.2593 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 9 r 12.7614 22.3243 27.0922 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 10 l 0.9936 12.8814 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 11 i -0.0254 12.8814 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 12 1 0.8840 19.9834 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 13 | 0.0864 4.0083 52.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 14 N 1.1646 40.4323 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 15 f -0.0370 22.9425 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 16 g 12.8913 25.9251 39.7770 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 17 d 0.9465 27.6410 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 18 W 1.2502 58.0445 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 19 s 13.0821 18.1564 28.2593 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 20 c 13.1503 22.6832 28.2593 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 21 u 13.9728 28.0484 27.0922 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 22 3 0.6883 25.1588 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 23 ~ 19.9446 30.9591 9.1836 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 24 # 1.3463 26.6848 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 25 O -1.1598 40.8329 42.4007 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 26 ` 0.3785 12.5434 9.4429 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 27 @ -0.0385 51.0839 51.9917 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 28 F 1.2189 32.2675 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 29 S 0.0148 26.9744 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 30 p 13.0229 27.6410 39.7770 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 31 “ -0.0903 24.3204 19.1753 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 32 % 0.6358 49.9821 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 33 £ 1.0914 26.8329 40.2147 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 34 . 31.5923 9.4429 9.4429 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 35 2 1.1937 25.1588 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 36 5 1.2799 24.8995 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 37 m 12.7672 43.2155 27.0922 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 38 V 1.0898 43.2782 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 39 6 1.1150 24.8995 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 40 w 14.3562 41.7521 27.0922 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 41 T 1.2911 35.1088 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 42 M 1.2651 52.8692 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 43 G -0.0004 42.5185 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 44 b 1.0782 27.6410 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 45 9 1.0080 24.8995 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 46 ; 12.5714 10.6099 36.8247 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 47 D 1.4294 38.4988 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 48 L 0.9196 35.4792 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 49 y 14.2064 29.1671 38.6099 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 50 ‘ -0.1274 10.6099 19.1753 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 51 \ 0.1407 16.3341 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 52 R 0.9403 41.3515 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 53 < 8.0195 30.8412 26.8329 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 54 4 1.0247 24.8995 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 55 8 1.0352 24.8995 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 56 0 1.0174 25.3999 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 57 A -0.3416 42.0000 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 58 E 1.0354 35.1020 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 59 B 1.3478 35.7687 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 60 v 14.2245 29.4263 27.0922 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 61 k 1.2847 31.2600 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 62 J 1.2574 28.2593 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 63 U 1.1762 39.6659 40.0666 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 64 j 0.1720 15.8337 52.7514 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 65 ( 0.2499 16.1927 52.4988 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 66 7 1.0445 26.0249 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 67 § 1.1818 24.2025 51.7325 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 68 $ 0.0789 25.1103 42.9078 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 69 € 0.8669 29.1671 39.0477 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 70 / -0.2119 18.1261 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 71 C -0.1792 36.8247 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 72 * 1.4405 20.3491 20.7081 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 73 ” -0.0519 24.3204 19.1753 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 74 ? 0.0015 22.4172 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 75 { -1.3372 16.4520 52.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 76 } 0.0072 16.4520 52.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 77 , 30.2114 10.6099 19.1753 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 78 I 1.0336 20.3121 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 79 ° 0.0033 19.7242 20.6017 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 80 K 1.1685 45.8298 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 81 H 1.2280 43.1671 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 82 q 13.3510 27.6410 39.7770 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 83 & 0.0544 43.1671 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 84 ’ -0.0903 10.6099 19.1753 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 85 [ 1.0379 12.0363 50.5654 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 86 - 24.0367 16.1927 5.5828 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 87 Y 1.2131 41.3515 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 88 Q 0.3330 41.0922 49.6509 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 89 " -0.2518 22.4172 18.4090 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 90 ! 0.0206 9.4429 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 91 x 14.1785 27.8519 25.9251 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 92 ) 0.0576 16.1927 52.4988 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 93 = 14.3297 30.8412 13.7407 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 94 + 5.5409 30.4755 30.4755 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 95 X 1.0806 42.8775 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 96 » 14.1015 27.3515 25.9251 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 97 ' -0.0870 7.9169 18.4090 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 98 ¢ 1.0502 22.8247 49.6576 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 99 Z 1.1968 36.6765 38.8995 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 100 > 7.8788 30.8412 26.8329 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 101 ® 0.0889 39.9251 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 102 © 0.0903 39.9251 41.2336 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 103 ] 1.2502 12.0363 50.5654 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 104 é 0.4310 22.8247 40.8026 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 105 z 14.0025 23.7021 25.9251 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 106 _ 48.6303 30.1927 4.0083 -Times_New_Roman_Bold.ttf 92 ) 16.1927 52.4988 107 ¥ 1.3670 31.5012 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 1 t -9.9454 17.6493 36.8247 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 2 h -13.1924 28.0484 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 3 a -1.1671 25.4180 28.2593 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 4 n -1.3059 28.0484 27.0922 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 5 P -12.8798 33.0339 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 6 o -1.4203 24.2510 28.2593 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 7 e -1.3822 22.8247 28.2593 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 8 : -0.9580 9.4429 28.2593 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 9 r -1.3299 22.3243 27.0922 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 10 l -13.1311 12.8814 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 11 i -14.1780 12.8814 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 12 1 -13.0035 19.9834 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 13 | -14.3605 4.0083 52.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 14 N -13.0614 40.4323 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 15 f -14.3962 22.9425 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 16 g -0.9566 25.9251 39.7770 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 17 d -13.0945 27.6410 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 18 W -13.2219 58.0445 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 19 s -1.0363 18.1564 28.2593 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 20 c -1.2574 22.6832 28.2593 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 21 u 0.0556 28.0484 27.0922 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 22 3 -13.0303 25.1588 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 23 ~ 5.7175 30.9591 9.1836 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 24 # -12.6173 26.6848 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 25 O -15.1677 40.8329 42.4007 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 26 ` -13.8479 12.5434 9.4429 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 27 @ -14.1414 51.0839 51.9917 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 28 F -13.0748 32.2675 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 29 S -13.8747 26.9744 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 30 p -1.1700 27.6410 39.7770 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 31 “ -14.2217 24.3204 19.1753 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 32 % -13.1225 49.9821 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 33 £ -12.8141 26.8329 40.2147 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 34 . 17.7291 9.4429 9.4429 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 35 2 -13.3497 25.1588 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 36 5 -13.0940 24.8995 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 37 m -1.1551 43.2155 27.0922 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 38 V -12.9277 43.2782 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 39 6 -13.1417 24.8995 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 40 w -0.0385 41.7521 27.0922 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 41 T -13.0056 35.1088 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 42 M -12.8048 52.8692 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 43 G -14.1813 42.5185 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 44 b -13.0614 27.6410 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 45 9 -13.1244 24.8995 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 46 ; -1.2516 10.6099 36.8247 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 47 D -12.8921 38.4988 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 48 L -13.0205 35.4792 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 49 y 0.0922 29.1671 38.6099 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 50 ‘ -14.0213 10.6099 19.1753 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 51 \ -14.0265 16.3341 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 52 R -12.9599 41.3515 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 53 < -6.1646 30.8412 26.8329 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 54 4 -13.1682 24.8995 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 55 8 -13.1476 24.8995 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 56 0 -13.4186 25.3999 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 57 A -14.2339 42.0000 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 58 E -12.8561 35.1020 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 59 B -12.9301 35.7687 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 60 v 0.0610 29.4263 27.0922 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 61 k -13.0632 31.2600 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 62 J -12.9777 28.2593 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 63 U -13.2003 39.6659 40.0666 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 64 j -14.3653 15.8337 52.7514 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 65 ( -14.2284 16.1927 52.4988 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 66 7 -12.9744 26.0249 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 67 § -13.2138 24.2025 51.7325 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 68 $ -13.9833 25.1103 42.9078 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 69 € -13.0946 29.1671 39.0477 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 70 / -14.0929 18.1261 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 71 C -14.0477 36.8247 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 72 * -12.4583 20.3491 20.7081 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 73 ” -14.1824 24.3204 19.1753 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 74 ? -13.8001 22.4172 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 75 { -15.1758 16.4520 52.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 76 } -14.1236 16.4520 52.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 77 , 16.5388 10.6099 19.1753 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 78 I -12.9772 20.3121 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 79 ° -14.1693 19.7242 20.6017 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 80 K -13.1093 45.8298 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 81 H -13.1224 43.1671 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 82 q -1.1315 27.6410 39.7770 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 83 & -13.8642 43.1671 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 84 ’ -13.9328 10.6099 19.1753 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 85 [ -13.0614 12.0363 50.5654 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 86 - 9.5014 16.1927 5.5828 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 87 Y -13.1330 41.3515 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 88 Q -14.3990 41.0922 49.6509 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 89 " -14.0525 22.4172 18.4090 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 90 ! -14.4450 9.4429 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 91 x 0.2609 27.8519 25.9251 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 92 ) -13.8070 16.1927 52.4988 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 93 = -0.0798 30.8412 13.7407 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 94 + -8.8960 30.4755 30.4755 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 95 X -12.9950 42.8775 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 96 » 0.2470 27.3515 25.9251 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 97 ' -14.3072 7.9169 18.4090 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 98 ¢ -12.8760 22.8247 49.6576 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 99 Z -13.0024 36.6765 38.8995 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 100 > -6.2814 30.8412 26.8329 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 101 ® -14.1741 39.9251 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 102 © -14.5099 39.9251 41.2336 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 103 ] -12.7081 12.0363 50.5654 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 104 é -13.9030 22.8247 40.8026 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 105 z -0.3436 23.7021 25.9251 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 106 _ 34.9232 30.1927 4.0083 -Times_New_Roman_Bold.ttf 93 = 30.8412 13.7407 107 ¥ -12.8807 31.5012 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 1 t -1.0257 17.6493 36.8247 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 2 h -4.2317 28.0484 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 3 a 7.2533 25.4180 28.2593 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 4 n 7.4820 28.0484 27.0922 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 5 P -4.2234 33.0339 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 6 o 7.3897 24.2510 28.2593 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 7 e 7.4641 22.8247 28.2593 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 8 : 7.5226 9.4429 28.2593 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 9 r 7.3046 22.3243 27.0922 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 10 l -4.4657 12.8814 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 11 i -5.5044 12.8814 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 12 1 -4.5253 19.9834 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 13 | -5.6437 4.0083 52.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 14 N -4.2922 40.4323 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 15 f -5.5015 22.9425 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 16 g 7.5578 25.9251 39.7770 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 17 d -4.1682 27.6410 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 18 W -4.5060 58.0445 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 19 s 7.5614 18.1564 28.2593 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 20 c 7.1827 22.6832 28.2593 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 21 u 8.7248 28.0484 27.0922 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 22 3 -4.8560 25.1588 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 23 ~ 14.1935 30.9591 9.1836 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 24 # -4.2989 26.6848 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 25 O -6.9185 40.8329 42.4007 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 26 ` -5.2525 12.5434 9.4429 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 27 @ -5.3680 51.0839 51.9917 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 28 F -4.1754 32.2675 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 29 S -5.5069 26.9744 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 30 p 7.5603 27.6410 39.7770 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 31 “ -5.5788 24.3204 19.1753 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 32 % -4.6647 49.9821 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 33 £ -4.6840 26.8329 40.2147 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 34 . 26.2559 9.4429 9.4429 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 35 2 -4.5456 25.1588 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 36 5 -4.1001 24.8995 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 37 m 7.3902 43.2155 27.0922 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 38 V -4.0278 43.2782 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 39 6 -4.7358 24.8995 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 40 w 8.8653 41.7521 27.0922 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 41 T -4.3704 35.1088 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 42 M -4.3359 52.8692 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 43 G -5.3680 42.5185 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 44 b -4.4110 27.6410 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 45 9 -4.6864 24.8995 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 46 ; 7.1624 10.6099 36.8247 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 47 D -4.2807 38.4988 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 48 L -4.3378 35.4792 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 49 y 8.3973 29.1671 38.6099 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 50 ‘ -5.6821 10.6099 19.1753 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 51 \ -5.2334 16.3341 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 52 R -4.4182 41.3515 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 53 < 2.2889 30.8412 26.8329 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 54 4 -4.4453 24.8995 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 55 8 -4.9281 24.8995 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 56 0 -4.4735 25.3999 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 57 A -5.4933 42.0000 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 58 E -4.3432 35.1020 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 59 B -4.4364 35.7687 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 60 v 8.5927 29.4263 27.0922 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 61 k -4.2514 31.2600 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 62 J -3.9808 28.2593 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 63 U -4.7593 39.6659 40.0666 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 64 j -5.5323 15.8337 52.7514 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 65 ( -5.5549 16.1927 52.4988 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 66 7 -4.3231 26.0249 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 67 § -4.4100 24.2025 51.7325 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 68 $ -5.4530 25.1103 42.9078 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 69 € -4.6561 29.1671 39.0477 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 70 / -5.6855 18.1261 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 71 C -5.6919 36.8247 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 72 * -4.0073 20.3491 20.7081 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 73 ” -5.4861 24.3204 19.1753 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 74 ? -5.8287 22.4172 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 75 { -7.0107 16.4520 52.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 76 } -5.2055 16.4520 52.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 77 , 24.9572 10.6099 19.1753 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 78 I -4.2437 20.3121 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 79 ° -5.6078 19.7242 20.6017 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 80 K -4.5978 45.8298 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 81 H -4.3826 43.1671 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 82 q 7.4656 27.6410 39.7770 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 83 & -5.3589 43.1671 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 84 ’ -5.8326 10.6099 19.1753 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 85 [ -4.2198 12.0363 50.5654 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 86 - 18.2944 16.1927 5.5828 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 87 Y -4.2782 41.3515 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 88 Q -5.5429 41.0922 49.6509 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 89 " -5.6318 22.4172 18.4090 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 90 ! -5.5121 9.4429 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 91 x 8.3088 27.8519 25.9251 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 92 ) -5.5788 16.1927 52.4988 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 93 = 8.6253 30.8412 13.7407 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 94 + 0.4310 30.4755 30.4755 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 95 X -4.3148 42.8775 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 96 » 8.5245 27.3515 25.9251 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 97 ' -5.6535 7.9169 18.4090 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 98 ¢ -4.3719 22.8247 49.6576 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 99 Z -4.2383 36.6765 38.8995 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 100 > 2.0149 30.8412 26.8329 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 101 ® -5.7177 39.9251 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 102 © -5.8596 39.9251 41.2336 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 103 ] -4.4806 12.0363 50.5654 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 104 é -5.2161 22.8247 40.8026 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 105 z 8.5125 23.7021 25.9251 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 106 _ 43.6448 30.1927 4.0083 -Times_New_Roman_Bold.ttf 94 + 30.4755 30.4755 107 ¥ -4.6161 31.5012 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 1 t 3.7320 17.6493 36.8247 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 2 h 0.2114 28.0484 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 3 a 11.8703 25.4180 28.2593 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 4 n 11.5719 28.0484 27.0922 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 5 P -0.1777 33.0339 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 6 o 11.7828 24.2510 28.2593 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 7 e 12.0054 22.8247 28.2593 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 8 : 11.7190 9.4429 28.2593 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 9 r 11.6535 22.3243 27.0922 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 10 l 0.0312 12.8814 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 11 i -0.7067 12.8814 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 12 1 -0.0698 19.9834 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 13 | -1.4852 4.0083 52.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 14 N 0.0875 40.4323 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 15 f -1.4313 22.9425 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 16 g 11.8019 25.9251 39.7770 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 17 d 0.0000 27.6410 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 18 W -0.2460 58.0445 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 19 s 11.6977 18.1564 28.2593 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 20 c 11.6296 22.6832 28.2593 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 21 u 12.7480 28.0484 27.0922 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 22 3 -0.4441 25.1588 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 23 ~ 19.1566 30.9591 9.1836 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 24 # 0.1706 26.6848 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 25 O -2.4388 40.8329 42.4007 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 26 ` -0.5757 12.5434 9.4429 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 27 @ -1.1256 51.0839 51.9917 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 28 F -0.1215 32.2675 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 29 S -1.0373 26.9744 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 30 p 12.0014 27.6410 39.7770 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 31 “ -1.4170 24.3204 19.1753 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 32 % -0.3249 49.9821 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 33 £ 0.3612 26.8329 40.2147 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 34 . 30.6289 9.4429 9.4429 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 35 2 -0.0386 25.1588 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 36 5 0.1110 24.8995 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 37 m 12.0236 43.2155 27.0922 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 38 V -0.2931 43.2782 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 39 6 -0.2443 24.8995 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 40 w 13.0306 41.7521 27.0922 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 41 T 0.4030 35.1088 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 42 M 0.0388 52.8692 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 43 G -1.4725 42.5185 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 44 b -0.4146 27.6410 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 45 9 -0.0241 24.8995 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 46 ; 11.8428 10.6099 36.8247 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 47 D 0.1408 38.4988 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 48 L 0.0352 35.4792 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 49 y 12.9258 29.1671 38.6099 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 50 ‘ -1.2549 10.6099 19.1753 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 51 \ -0.8231 16.3341 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 52 R -0.2205 41.3515 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 53 < 7.0409 30.8412 26.8329 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 54 4 -0.1005 24.8995 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 55 8 -0.2237 24.8995 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 56 0 -0.3346 25.3999 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 57 A -0.7583 42.0000 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 58 E -0.1806 35.1020 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 59 B -0.2445 35.7687 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 60 v 13.4274 29.4263 27.0922 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 61 k 0.0773 31.2600 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 62 J -0.3123 28.2593 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 63 U 0.0388 39.6659 40.0666 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 64 j -1.2069 15.8337 52.7514 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 65 ( -1.2780 16.1927 52.4988 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 66 7 0.1346 26.0249 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 67 § -0.1144 24.2025 51.7325 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 68 $ -1.0825 25.1103 42.9078 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 69 € -0.1515 29.1671 39.0477 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 70 / -1.2833 18.1261 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 71 C -1.3444 36.8247 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 72 * 0.1091 20.3491 20.7081 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 73 ” -1.1958 24.3204 19.1753 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 74 ? -0.8495 22.4172 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 75 { -1.2704 16.4520 52.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 76 } -2.2798 16.4520 52.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 77 , 29.1087 10.6099 19.1753 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 78 I -0.0428 20.3121 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 79 ° -1.3390 19.7242 20.6017 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 80 K -0.1364 45.8298 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 81 H 0.1570 43.1671 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 82 q 11.6026 27.6410 39.7770 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 83 & -1.2301 43.1671 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 84 ’ -1.1761 10.6099 19.1753 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 85 [ 0.3379 12.0363 50.5654 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 86 - 22.6357 16.1927 5.5828 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 87 Y -0.0385 41.3515 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 88 Q -1.0825 41.0922 49.6509 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 89 " -1.1892 22.4172 18.4090 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 90 ! -1.0898 9.4429 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 91 x 13.0951 27.8519 25.9251 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 92 ) -1.2103 16.1927 52.4988 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 93 = 13.0253 30.8412 13.7407 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 94 + 4.3725 30.4755 30.4755 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 95 X 0.0369 42.8775 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 96 » 12.9225 27.3515 25.9251 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 97 ' -0.9019 7.9169 18.4090 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 98 ¢ 0.3311 22.8247 49.6576 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 99 Z -0.1230 36.6765 38.8995 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 100 > 6.9635 30.8412 26.8329 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 101 ® -0.8562 39.9251 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 102 © -1.2872 39.9251 41.2336 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 103 ] -0.2388 12.0363 50.5654 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 104 é -1.2037 22.8247 40.8026 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 105 z 12.8600 23.7021 25.9251 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 106 _ 48.1560 30.1927 4.0083 -Times_New_Roman_Bold.ttf 95 X 42.8775 38.8995 107 ¥ -0.1499 31.5012 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 1 t -9.9596 17.6493 36.8247 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 2 h -12.7062 28.0484 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 3 a -1.2132 25.4180 28.2593 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 4 n -1.0009 28.0484 27.0922 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 5 P -12.8840 33.0339 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 6 o -0.9522 24.2510 28.2593 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 7 e -1.3396 22.8247 28.2593 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 8 : -1.0681 9.4429 28.2593 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 9 r -0.8845 22.3243 27.0922 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 10 l -12.9446 12.8814 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 11 i -13.8824 12.8814 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 12 1 -13.1298 19.9834 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 13 | -13.9589 4.0083 52.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 14 N -13.0560 40.4323 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 15 f -14.3576 22.9425 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 16 g -1.2022 25.9251 39.7770 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 17 d -13.0229 27.6410 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 18 W -13.2036 58.0445 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 19 s -1.4453 18.1564 28.2593 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 20 c -1.0821 22.6832 28.2593 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 21 u 0.0370 28.0484 27.0922 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 22 3 -13.0394 25.1588 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 23 ~ 6.1485 30.9591 9.1836 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 24 # -13.0647 26.6848 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 25 O -15.4747 40.8329 42.4007 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 26 ` -13.6408 12.5434 9.4429 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 27 @ -13.9546 51.0839 51.9917 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 28 F -13.2054 32.2675 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 29 S -14.3043 26.9744 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 30 p -1.0027 27.6410 39.7770 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 31 “ -14.2332 24.3204 19.1753 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 32 % -13.0365 49.9821 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 33 £ -13.0692 26.8329 40.2147 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 34 . 17.7415 9.4429 9.4429 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 35 2 -12.9505 25.1588 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 36 5 -12.7106 24.8995 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 37 m -1.2574 43.2155 27.0922 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 38 V -13.0089 43.2782 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 39 6 -12.9966 24.8995 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 40 w -0.0308 41.7521 27.0922 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 41 T -12.8009 35.1088 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 42 M -13.1852 52.8692 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 43 G -14.0708 42.5185 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 44 b -12.7720 27.6410 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 45 9 -13.1244 24.8995 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 46 ; -1.1858 10.6099 36.8247 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 47 D -12.9243 38.4988 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 48 L -13.1355 35.4792 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 49 y -0.1018 29.1671 38.6099 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 50 ‘ -14.2640 10.6099 19.1753 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 51 \ -13.9589 16.3341 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 52 R -13.0176 41.3515 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 53 < -6.3366 30.8412 26.8329 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 54 4 -13.1581 24.8995 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 55 8 -13.2158 24.8995 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 56 0 -13.1547 25.3999 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 57 A -14.0690 42.0000 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 58 E -12.8797 35.1020 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 59 B -12.7586 35.7687 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 60 v -0.2195 29.4263 27.0922 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 61 k -13.1093 31.2600 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 62 J -12.8913 28.2593 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 63 U -12.9356 39.6659 40.0666 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 64 j -13.9445 15.8337 52.7514 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 65 ( -14.5081 16.1927 52.4988 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 66 7 -12.8437 26.0249 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 67 § -13.0946 24.2025 51.7325 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 68 $ -14.1617 25.1103 42.9078 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 69 € -13.0821 29.1671 39.0477 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 70 / -14.1980 18.1261 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 71 C -14.4893 36.8247 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 72 * -12.6211 20.3491 20.7081 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 73 ” -13.8715 24.3204 19.1753 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 74 ? -14.1102 22.4172 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 75 { -15.2533 16.4520 52.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 76 } -14.3331 16.4520 52.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 77 , 16.6782 10.6099 19.1753 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 78 I -13.0575 20.3121 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 79 ° -14.0987 19.7242 20.6017 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 80 K -12.9283 45.8298 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 81 H -13.0680 43.1671 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 82 q -1.0988 27.6410 39.7770 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 83 & -14.1429 43.1671 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 84 ’ -14.1384 10.6099 19.1753 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 85 [ -13.1176 12.0363 50.5654 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 86 - 10.0284 16.1927 5.5828 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 87 Y -13.0599 41.3515 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 88 Q -14.2615 41.0922 49.6509 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 89 " -14.1214 22.4172 18.4090 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 90 ! -14.3787 9.4429 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 91 x 0.0903 27.8519 25.9251 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 92 ) -14.1004 16.1927 52.4988 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 93 = 0.0068 30.8412 13.7407 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 94 + -8.5111 30.4755 30.4755 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 95 X -12.8484 42.8775 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 96 » 0.1643 27.3515 25.9251 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 97 ' -14.0087 7.9169 18.4090 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 98 ¢ -12.9138 22.8247 49.6576 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 99 Z -13.1002 36.6765 38.8995 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 100 > -6.1617 30.8412 26.8329 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 101 ® -14.0515 39.9251 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 102 © -14.2212 39.9251 41.2336 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 103 ] -12.7283 12.0363 50.5654 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 104 é -13.8824 22.8247 40.8026 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 105 z 0.0462 23.7021 25.9251 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 106 _ 34.8372 30.1927 4.0083 -Times_New_Roman_Bold.ttf 96 » 27.3515 25.9251 107 ¥ -12.9153 31.5012 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 1 t 4.4151 17.6493 36.8247 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 2 h 1.1728 28.0484 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 3 a 12.9595 25.4180 28.2593 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 4 n 12.8855 28.0484 27.0922 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 5 P 1.3405 33.0339 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 6 o 12.8855 24.2510 28.2593 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 7 e 13.0575 22.8247 28.2593 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 8 : 13.1016 9.4429 28.2593 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 9 r 12.8053 22.3243 27.0922 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 10 l 1.2194 12.8814 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 11 i -0.0764 12.8814 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 12 1 1.0189 19.9834 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 13 | -0.0432 4.0083 52.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 14 N 0.9566 40.4323 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 15 f -0.1407 22.9425 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 16 g 12.8840 25.9251 39.7770 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 17 d 1.2440 27.6410 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 18 W 1.2574 58.0445 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 19 s 13.3568 18.1564 28.2593 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 20 c 13.0147 22.6832 28.2593 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 21 u 14.2472 28.0484 27.0922 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 22 3 0.9800 25.1588 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 23 ~ 19.9003 30.9591 9.1836 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 24 # 0.8950 26.6848 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 25 O -1.0782 40.8329 42.4007 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 26 ` 0.3727 12.5434 9.4429 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 27 @ -0.0889 51.0839 51.9917 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 28 F 1.2680 32.2675 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 29 S 0.0000 26.9744 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 30 p 12.9744 27.6410 39.7770 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 31 “ -0.2979 24.3204 19.1753 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 32 % 1.1937 49.9821 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 33 £ 1.0708 26.8329 40.2147 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 34 . 31.8738 9.4429 9.4429 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 35 2 1.1851 25.1588 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 36 5 1.1584 24.8995 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 37 m 12.9225 43.2155 27.0922 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 38 V 1.0840 43.2782 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 39 6 1.1510 24.8995 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 40 w 14.1693 41.7521 27.0922 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 41 T 1.0840 35.1088 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 42 M 1.1522 52.8692 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 43 G -0.0298 42.5185 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 44 b 1.0220 27.6410 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 45 9 0.9724 24.8995 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 46 ; 12.9464 10.6099 36.8247 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 47 D 1.3045 38.4988 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 48 L 1.3372 35.4792 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 49 y 14.0954 29.1671 38.6099 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 50 ‘ 0.1201 10.6099 19.1753 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 51 \ 0.1792 16.3341 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 52 R 1.2621 41.3515 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 53 < 7.6967 30.8412 26.8329 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 54 4 1.1020 24.8995 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 55 8 1.1448 24.8995 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 56 0 1.1448 25.3999 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 57 A 0.1316 42.0000 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 58 E 1.0767 35.1020 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 59 B 1.0469 35.7687 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 60 v 14.2289 29.4263 27.0922 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 61 k 1.2574 31.2600 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 62 J 1.2189 28.2593 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 63 U 1.2502 39.6659 40.0666 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 64 j 0.1201 15.8337 52.7514 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 65 ( -0.1734 16.1927 52.4988 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 66 7 1.2574 26.0249 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 67 § 1.0280 24.2025 51.7325 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 68 $ 0.0769 25.1103 42.9078 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 69 € 1.0117 29.1671 39.0477 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 70 / -0.0947 18.1261 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 71 C 0.3330 36.8247 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 72 * 1.2228 20.3491 20.7081 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 73 ” 0.0870 24.3204 19.1753 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 74 ? -0.1701 22.4172 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 75 { -1.1152 16.4520 52.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 76 } -0.3003 16.4520 52.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 77 , 30.7971 10.6099 19.1753 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 78 I 1.0767 20.3121 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 79 ° -0.1701 19.7242 20.6017 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 80 K 1.1286 45.8298 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 81 H 1.2853 43.1671 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 82 q 13.1147 27.6410 39.7770 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 83 & 0.0917 43.1671 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 84 ’ -0.0519 10.6099 19.1753 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 85 [ 1.1728 12.0363 50.5654 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 86 - 23.5260 16.1927 5.5828 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 87 Y 1.3815 41.3515 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 88 Q 0.1759 41.0922 49.6509 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 89 " -0.2514 22.4172 18.4090 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 90 ! -0.1332 9.4429 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 91 x 14.1785 27.8519 25.9251 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 92 ) 0.1364 16.1927 52.4988 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 93 = 14.1058 30.8412 13.7407 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 94 + 5.4997 30.4755 30.4755 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 95 X 1.1718 42.8775 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 96 » 14.2284 27.3515 25.9251 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 97 ' -0.0903 7.9169 18.4090 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 98 ¢ 1.1652 22.8247 49.6576 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 99 Z 1.0753 36.6765 38.8995 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 100 > 8.0541 30.8412 26.8329 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 101 ® -0.1292 39.9251 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 102 © -0.0058 39.9251 41.2336 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 103 ] 1.1728 12.0363 50.5654 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 104 é 0.3406 22.8247 40.8026 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 105 z 14.0525 23.7021 25.9251 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 106 _ 48.8114 30.1927 4.0083 -Times_New_Roman_Bold.ttf 97 ' 7.9169 18.4090 107 ¥ 0.9878 31.5012 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 1 t 3.0593 17.6493 36.8247 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 2 h 0.1076 28.0484 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 3 a 12.0548 25.4180 28.2593 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 4 n 11.7646 28.0484 27.0922 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 5 P 0.0965 33.0339 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 6 o 11.8958 24.2510 28.2593 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 7 e 11.8034 22.8247 28.2593 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 8 : 12.1109 9.4429 28.2593 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 9 r 11.8544 22.3243 27.0922 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 10 l 0.0995 12.8814 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 11 i -1.3209 12.8814 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 12 1 -0.0146 19.9834 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 13 | -1.3467 4.0083 52.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 14 N 0.3882 40.4323 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 15 f -1.1892 22.9425 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 16 g 11.8610 25.9251 39.7770 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 17 d 0.0385 27.6410 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 18 W -0.0946 58.0445 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 19 s 11.8865 18.1564 28.2593 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 20 c 11.9821 22.6832 28.2593 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 21 u 12.9744 28.0484 27.0922 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 22 3 -0.1674 25.1588 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 23 ~ 18.8178 30.9591 9.1836 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 24 # 0.2363 26.6848 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 25 O -2.4245 40.8329 42.4007 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 26 ` -0.5854 12.5434 9.4429 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 27 @ -0.6784 51.0839 51.9917 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 28 F 0.0461 32.2675 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 29 S -0.8950 26.9744 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 30 p 11.8443 27.6410 39.7770 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 31 “ -1.3502 24.3204 19.1753 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 32 % -0.1579 49.9821 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 33 £ -0.3875 26.8329 40.2147 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 34 . 30.6312 9.4429 9.4429 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 35 2 0.0518 25.1588 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 36 5 0.0976 24.8995 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 37 m 11.6372 43.2155 27.0922 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 38 V 0.2253 43.2782 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 39 6 -0.3201 24.8995 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 40 w 12.5492 41.7521 27.0922 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 41 T -0.1687 35.1088 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 42 M 0.0831 52.8692 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 43 G -1.1094 42.5185 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 44 b -0.0519 27.6410 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 45 9 -0.2755 24.8995 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 46 ; 11.9793 10.6099 36.8247 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 47 D -0.0471 38.4988 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 48 L 0.3142 35.4792 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 49 y 12.8115 29.1671 38.6099 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 50 ‘ -0.9000 10.6099 19.1753 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 51 \ -1.0441 16.3341 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 52 R -0.1379 41.3515 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 53 < 6.5786 30.8412 26.8329 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 54 4 -0.0963 24.8995 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 55 8 -0.0651 24.8995 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 56 0 -0.0684 25.3999 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 57 A -0.9749 42.0000 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 58 E 0.1168 35.1020 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 59 B -0.2086 35.7687 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 60 v 12.9802 29.4263 27.0922 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 61 k -0.1241 31.2600 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 62 J 0.1792 28.2593 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 63 U 0.1643 39.6659 40.0666 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 64 j -1.2022 15.8337 52.7514 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 65 ( -0.9219 16.1927 52.4988 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 66 7 -0.2663 26.0249 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 67 § -0.2798 24.2025 51.7325 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 68 $ -1.0321 25.1103 42.9078 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 69 € -0.0593 29.1671 39.0477 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 70 / -1.2930 18.1261 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 71 C -1.2574 36.8247 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 72 * 0.2975 20.3491 20.7081 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 73 ” -1.4227 24.3204 19.1753 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 74 ? -1.3601 22.4172 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 75 { -2.2408 16.4520 52.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 76 } -1.2911 16.4520 52.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 77 , 29.3677 10.6099 19.1753 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 78 I 0.0850 20.3121 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 79 ° -1.1065 19.7242 20.6017 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 80 K 0.0870 45.8298 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 81 H -0.0370 43.1671 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 82 q 11.7482 27.6410 39.7770 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 83 & -1.3357 43.1671 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 84 ’ -1.2262 10.6099 19.1753 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 85 [ 0.0091 12.0363 50.5654 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 86 - 22.7877 16.1927 5.5828 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 87 Y -0.1734 41.3515 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 88 Q -1.0742 41.0922 49.6509 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 89 " -1.1417 22.4172 18.4090 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 90 ! -1.2574 9.4429 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 91 x 13.0262 27.8519 25.9251 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 92 ) -1.0469 16.1927 52.4988 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 93 = 12.9282 30.8412 13.7407 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 94 + 4.2379 30.4755 30.4755 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 95 X -0.1701 42.8775 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 96 » 12.9595 27.3515 25.9251 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 97 ' -1.2502 7.9169 18.4090 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 98 ¢ -0.0947 22.8247 49.6576 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 99 Z 0.1349 36.6765 38.8995 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 100 > 6.4571 30.8412 26.8329 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 101 ® -1.3833 39.9251 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 102 © -0.9432 39.9251 41.2336 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 103 ] -0.1316 12.0363 50.5654 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 104 é -0.7361 22.8247 40.8026 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 105 z 13.1982 23.7021 25.9251 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 106 _ 47.8073 30.1927 4.0083 -Times_New_Roman_Bold.ttf 98 ¢ 22.8247 49.6576 107 ¥ 0.1288 31.5012 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 1 t 3.1555 17.6493 36.8247 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 2 h -0.1259 28.0484 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 3 a 11.5175 25.4180 28.2593 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 4 n 11.7660 28.0484 27.0922 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 5 P 0.0091 33.0339 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 6 o 11.7746 24.2510 28.2593 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 7 e 11.7507 22.8247 28.2593 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 8 : 11.9216 9.4429 28.2593 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 9 r 11.8885 22.3243 27.0922 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 10 l -0.1720 12.8814 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 11 i -1.1729 12.8814 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 12 1 -0.0295 19.9834 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 13 | -1.2468 4.0083 52.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 14 N 0.1677 40.4323 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 15 f -1.3866 22.9425 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 16 g 11.8193 25.9251 39.7770 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 17 d -0.0148 27.6410 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 18 W -0.0722 58.0445 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 19 s 11.9256 18.1564 28.2593 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 20 c 11.6766 22.6832 28.2593 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 21 u 12.9831 28.0484 27.0922 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 22 3 -0.0501 25.1588 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 23 ~ 18.7703 30.9591 9.1836 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 24 # 0.0385 26.6848 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 25 O -2.4912 40.8329 42.4007 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 26 ` -0.6699 12.5434 9.4429 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 27 @ -1.4779 51.0839 51.9917 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 28 F -0.0404 32.2675 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 29 S -1.0800 26.9744 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 30 p 12.0159 27.6410 39.7770 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 31 “ -1.0786 24.3204 19.1753 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 32 % -0.1477 49.9821 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 33 £ -0.1150 26.8329 40.2147 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 34 . 30.7274 9.4429 9.4429 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 35 2 -0.1644 25.1588 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 36 5 0.0033 24.8995 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 37 m 11.5874 43.2155 27.0922 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 38 V 0.0086 43.2782 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 39 6 0.0056 24.8995 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 40 w 13.0978 41.7521 27.0922 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 41 T -0.2384 35.1088 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 42 M 0.0922 52.8692 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 43 G -1.1640 42.5185 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 44 b -0.0903 27.6410 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 45 9 -0.4235 24.8995 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 46 ; 11.7478 10.6099 36.8247 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 47 D 0.5126 38.4988 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 48 L 0.0033 35.4792 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 49 y 13.1829 29.1671 38.6099 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 50 ‘ -1.0350 10.6099 19.1753 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 51 \ -0.8216 16.3341 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 52 R -0.2532 41.3515 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 53 < 6.6795 30.8412 26.8329 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 54 4 -0.2558 24.8995 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 55 8 -0.1554 24.8995 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 56 0 -0.3960 25.3999 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 57 A -0.9685 42.0000 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 58 E -0.1389 35.1020 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 59 B -0.0927 35.7687 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 60 v 12.6283 29.4263 27.0922 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 61 k 0.0418 31.2600 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 62 J 0.0028 28.2593 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 63 U -0.0331 39.6659 40.0666 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 64 j -1.1637 15.8337 52.7514 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 65 ( -1.1637 16.1927 52.4988 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 66 7 0.0033 26.0249 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 67 § -0.1376 24.2025 51.7325 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 68 $ -1.2502 25.1103 42.9078 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 69 € 0.0339 29.1671 39.0477 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 70 / -1.2756 18.1261 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 71 C -1.0887 36.8247 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 72 * -0.0288 20.3491 20.7081 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 73 ” -0.8250 24.3204 19.1753 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 74 ? -1.2222 22.4172 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 75 { -1.2607 16.4520 52.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 76 } -2.0127 16.4520 52.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 77 , 29.3619 10.6099 19.1753 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 78 I 0.2047 20.3121 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 79 ° -1.2530 19.7242 20.6017 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 80 K 0.0015 45.8298 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 81 H 0.1720 43.1671 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 82 q 11.9668 27.6410 39.7770 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 83 & -1.0724 43.1671 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 84 ’ -1.0372 10.6099 19.1753 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 85 [ -0.2123 12.0363 50.5654 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 86 - 22.5627 16.1927 5.5828 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 87 Y 0.2089 41.3515 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 88 Q -1.5312 41.0922 49.6509 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 89 " -1.3332 22.4172 18.4090 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 90 ! -1.2497 9.4429 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 91 x 12.9777 27.8519 25.9251 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 92 ) -1.2531 16.1927 52.4988 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 93 = 13.1815 30.8412 13.7407 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 94 + 4.6011 30.4755 30.4755 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 95 X 0.0355 42.8775 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 96 » 13.1613 27.3515 25.9251 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 97 ' -1.2559 7.9169 18.4090 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 98 ¢ 0.1720 22.8247 49.6576 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 99 Z -0.0961 36.6765 38.8995 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 100 > 6.9223 30.8412 26.8329 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 101 ® -0.9984 39.9251 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 102 © -1.1258 39.9251 41.2336 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 103 ] 0.0203 12.0363 50.5654 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 104 é -0.6587 22.8247 40.8026 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 105 z 12.9301 23.7021 25.9251 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 106 _ 47.5474 30.1927 4.0083 -Times_New_Roman_Bold.ttf 99 Z 36.6765 38.8995 107 ¥ -0.1759 31.5012 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 1 t -3.6114 17.6493 36.8247 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 2 h -6.3801 28.0484 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 3 a 5.1402 25.4180 28.2593 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 4 n 5.0774 28.0484 27.0922 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 5 P -6.5176 33.0339 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 6 o 5.2320 24.2510 28.2593 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 7 e 4.9707 22.8247 28.2593 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 8 : 5.1278 9.4429 28.2593 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 9 r 5.2584 22.3243 27.0922 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 10 l -6.5118 12.8814 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 11 i -7.7692 12.8814 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 12 1 -6.6009 19.9834 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 13 | -7.7918 4.0083 52.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 14 N -6.7266 40.4323 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 15 f -7.7101 22.9425 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 16 g 5.3978 25.9251 39.7770 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 17 d -6.2916 27.6410 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 18 W -6.5344 58.0445 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 19 s 4.9457 18.1564 28.2593 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 20 c 5.0850 22.6832 28.2593 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 21 u 6.4230 28.0484 27.0922 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 22 3 -6.8570 25.1588 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 23 ~ 12.0528 30.9591 9.1836 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 24 # -6.5416 26.6848 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 25 O -9.0516 40.8329 42.4007 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 26 ` -7.3389 12.5434 9.4429 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 27 @ -7.8673 51.0839 51.9917 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 28 F -6.7161 32.2675 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 29 S -7.7530 26.9744 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 30 p 4.9725 27.6410 39.7770 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 31 “ -7.7192 24.3204 19.1753 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 32 % -6.7729 49.9821 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 33 £ -6.8334 26.8329 40.2147 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 34 . 23.9075 9.4429 9.4429 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 35 2 -6.5250 25.1588 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 36 5 -6.7593 24.8995 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 37 m 5.2922 43.2155 27.0922 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 38 V -6.7151 43.2782 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 39 6 -6.5716 24.8995 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 40 w 6.3424 41.7521 27.0922 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 41 T -6.1828 35.1088 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 42 M -6.6229 52.8692 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 43 G -7.8361 42.5185 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 44 b -6.7103 27.6410 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 45 9 -6.6822 24.8995 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 46 ; 4.9649 10.6099 36.8247 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 47 D -6.4970 38.4988 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 48 L -6.8343 35.4792 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 49 y 6.1704 29.1671 38.6099 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 50 ‘ -7.9259 10.6099 19.1753 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 51 \ -7.9710 16.3341 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 52 R -6.6297 41.3515 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 53 < -0.1407 30.8412 26.8329 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 54 4 -6.7662 24.8995 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 55 8 -6.5236 24.8995 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 56 0 -6.9117 25.3999 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 57 A -7.7605 42.0000 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 58 E -6.7415 35.1020 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 59 B -6.9183 35.7687 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 60 v 6.3424 29.4263 27.0922 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 61 k -6.9029 31.2600 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 62 J -6.3004 28.2593 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 63 U -6.7800 39.6659 40.0666 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 64 j -7.7994 15.8337 52.7514 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 65 ( -7.6789 16.1927 52.4988 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 66 7 -6.5877 26.0249 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 67 § -6.6560 24.2025 51.7325 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 68 $ -7.9013 25.1103 42.9078 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 69 € -6.5236 29.1671 39.0477 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 70 / -7.7500 18.1261 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 71 C -7.8679 36.8247 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 72 * -6.4474 20.3491 20.7081 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 73 ” -7.7217 24.3204 19.1753 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 74 ? -7.9662 22.4172 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 75 { -9.0492 16.4520 52.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 76 } -7.6337 16.4520 52.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 77 , 22.7210 10.6099 19.1753 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 78 I -6.4600 20.3121 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 79 ° -7.8302 19.7242 20.6017 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 80 K -6.6526 45.8298 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 81 H -6.5152 43.1671 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 82 q 5.1293 27.6410 39.7770 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 83 & -7.9985 43.1671 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 84 ’ -7.7044 10.6099 19.1753 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 85 [ -6.3744 12.0363 50.5654 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 86 - 16.1604 16.1927 5.5828 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 87 Y -6.6882 41.3515 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 88 Q -7.9412 41.0922 49.6509 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 89 " -7.5381 22.4172 18.4090 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 90 ! -7.9067 9.4429 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 91 x 6.4327 27.8519 25.9251 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 92 ) -7.9097 16.1927 52.4988 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 93 = 6.2056 30.8412 13.7407 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 94 + -2.2221 30.4755 30.4755 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 95 X -6.6824 42.8775 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 96 » 6.1348 27.3515 25.9251 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 97 ' -7.8846 7.9169 18.4090 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 98 ¢ -6.7208 22.8247 49.6576 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 99 Z -6.5964 36.6765 38.8995 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 100 > -0.3393 30.8412 26.8329 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 101 ® -7.6986 39.9251 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 102 © -7.9691 39.9251 41.2336 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 103 ] -6.5397 12.0363 50.5654 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 104 é -7.3162 22.8247 40.8026 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 105 z 6.1926 23.7021 25.9251 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 106 _ 41.0788 30.1927 4.0083 -Times_New_Roman_Bold.ttf 100 > 30.8412 26.8329 107 ¥ -6.5209 31.5012 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 1 t 4.2825 17.6493 36.8247 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 2 h 1.2987 28.0484 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 3 a 13.3171 25.4180 28.2593 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 4 n 12.6337 28.0484 27.0922 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 5 P 1.2738 33.0339 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 6 o 12.9710 24.2510 28.2593 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 7 e 13.2305 22.8247 28.2593 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 8 : 13.0142 9.4429 28.2593 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 9 r 12.6188 22.3243 27.0922 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 10 l 1.4268 12.8814 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 11 i -0.3075 12.8814 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 12 1 1.0621 19.9834 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 13 | -0.0404 4.0083 52.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 14 N 1.1743 40.4323 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 15 f 0.0388 22.9425 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 16 g 12.9816 25.9251 39.7770 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 17 d 0.6178 27.6410 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 18 W 0.9062 58.0445 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 19 s 13.2040 18.1564 28.2593 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 20 c 13.0215 22.6832 28.2593 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 21 u 13.9690 28.0484 27.0922 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 22 3 0.4645 25.1588 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 23 ~ 20.2737 30.9591 9.1836 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 24 # 1.0800 26.6848 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 25 O -1.3785 40.8329 42.4007 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 26 ` 0.3698 12.5434 9.4429 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 27 @ -0.2105 51.0839 51.9917 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 28 F 1.0887 32.2675 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 29 S 0.0529 26.9744 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 30 p 12.7139 27.6410 39.7770 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 31 “ 0.1629 24.3204 19.1753 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 32 % 1.0222 49.9821 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 33 £ 1.0189 26.8329 40.2147 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 34 . 32.0050 9.4429 9.4429 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 35 2 1.0434 25.1588 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 36 5 1.1761 24.8995 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 37 m 12.9835 43.2155 27.0922 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 38 V 1.2468 43.2782 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 39 6 0.9333 24.8995 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 40 w 14.2967 41.7521 27.0922 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 41 T 0.8768 35.1088 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 42 M 1.3430 52.8692 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 43 G -0.0667 42.5185 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 44 b 1.2479 27.6410 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 45 9 0.6469 24.8995 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 46 ; 12.9609 10.6099 36.8247 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 47 D 1.1006 38.4988 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 48 L 1.3572 35.4792 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 49 y 14.4412 29.1671 38.6099 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 50 ‘ 0.0943 10.6099 19.1753 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 51 \ 0.0576 16.3341 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 52 R 0.9526 41.3515 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 53 < 7.8038 30.8412 26.8329 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 54 4 0.8483 24.8995 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 55 8 1.0616 24.8995 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 56 0 1.1078 25.3999 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 57 A 0.1858 42.0000 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 58 E 1.1724 35.1020 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 59 B 1.4630 35.7687 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 60 v 13.9978 29.4263 27.0922 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 61 k 1.0397 31.2600 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 62 J 1.1805 28.2593 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 63 U 1.1728 39.6659 40.0666 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 64 j 0.0928 15.8337 52.7514 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 65 ( -0.1244 16.1927 52.4988 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 66 7 1.0629 26.0249 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 67 § 1.0251 24.2025 51.7325 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 68 $ -0.2047 25.1103 42.9078 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 69 € 1.1270 29.1671 39.0477 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 70 / -0.0047 18.1261 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 71 C 0.1552 36.8247 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 72 * 1.6034 20.3491 20.7081 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 73 ” -0.1215 24.3204 19.1753 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 74 ? 0.1853 22.4172 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 75 { -0.9030 16.4520 52.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 76 } 0.1437 16.4520 52.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 77 , 30.7183 10.6099 19.1753 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 78 I 0.8192 20.3121 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 79 ° -0.0845 19.7242 20.6017 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 80 K 1.5947 45.8298 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 81 H 1.1300 43.1671 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 82 q 13.2638 27.6410 39.7770 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 83 & -0.1941 43.1671 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 84 ’ 0.1187 10.6099 19.1753 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 85 [ 1.2574 12.0363 50.5654 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 86 - 23.8238 16.1927 5.5828 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 87 Y 1.2089 41.3515 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 88 Q -0.1110 41.0922 49.6509 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 89 " -0.2220 22.4172 18.4090 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 90 ! 0.1340 9.4429 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 91 x 14.3395 27.8519 25.9251 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 92 ) -0.4089 16.1927 52.4988 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 93 = 13.9022 30.8412 13.7407 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 94 + 5.5722 30.4755 30.4755 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 95 X 1.1286 42.8775 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 96 » 13.7623 27.3515 25.9251 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 97 ' 0.1274 7.9169 18.4090 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 98 ¢ 1.3083 22.8247 49.6576 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 99 Z 1.0114 36.6765 38.8995 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 100 > 7.7120 30.8412 26.8329 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 101 ® -0.1292 39.9251 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 102 © -0.0889 39.9251 41.2336 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 103 ] 1.3818 12.0363 50.5654 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 104 é 0.3421 22.8247 40.8026 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 105 z 13.9390 23.7021 25.9251 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 106 _ 48.8081 30.1927 4.0083 -Times_New_Roman_Bold.ttf 101 ® 39.9251 41.2336 107 ¥ 1.4467 31.5012 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 1 t 4.3894 17.6493 36.8247 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 2 h 1.2430 28.0484 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 3 a 12.8859 25.4180 28.2593 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 4 n 13.0647 28.0484 27.0922 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 5 P 1.0494 33.0339 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 6 o 12.6279 24.2510 28.2593 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 7 e 12.8869 22.8247 28.2593 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 8 : 12.8706 9.4429 28.2593 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 9 r 12.8249 22.3243 27.0922 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 10 l 1.0600 12.8814 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 11 i -0.2249 12.8814 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 12 1 0.8263 19.9834 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 13 | -0.1740 4.0083 52.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 14 N 1.1181 40.4323 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 15 f 0.0039 22.9425 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 16 g 12.9763 25.9251 39.7770 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 17 d 1.2737 27.6410 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 18 W 1.2127 58.0445 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 19 s 13.1555 18.1564 28.2593 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 20 c 12.9668 22.6832 28.2593 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 21 u 14.2005 28.0484 27.0922 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 22 3 1.2721 25.1588 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 23 ~ 19.9954 30.9591 9.1836 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 24 # 1.5019 26.6848 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 25 O -1.1968 40.8329 42.4007 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 26 ` -0.0116 12.5434 9.4429 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 27 @ 0.0885 51.0839 51.9917 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 28 F 1.1795 32.2675 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 29 S -0.0163 26.9744 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 30 p 13.0215 27.6410 39.7770 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 31 “ 0.2829 24.3204 19.1753 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 32 % 0.6989 49.9821 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 33 £ 0.9080 26.8329 40.2147 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 34 . 31.8689 9.4429 9.4429 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 35 2 0.9409 25.1588 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 36 5 1.4278 24.8995 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 37 m 12.9250 43.2155 27.0922 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 38 V 1.1637 43.2782 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 39 6 0.7230 24.8995 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 40 w 14.1073 41.7521 27.0922 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 41 T 1.1152 35.1088 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 42 M 0.7894 52.8692 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 43 G -0.1332 42.5185 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 44 b 1.3818 27.6410 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 45 9 0.6913 24.8995 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 46 ; 13.3092 10.6099 36.8247 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 47 D 1.2839 38.4988 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 48 L 1.3670 35.4792 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 49 y 13.9750 29.1671 38.6099 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 50 ‘ -0.2157 10.6099 19.1753 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 51 \ -0.0943 16.3341 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 52 R 1.2099 41.3515 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 53 < 8.0946 30.8412 26.8329 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 54 4 1.1636 24.8995 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 55 8 1.0871 24.8995 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 56 0 0.9358 25.3999 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 57 A -0.0500 42.0000 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 58 E 1.1319 35.1020 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 59 B 1.4169 35.7687 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 60 v 14.1150 29.4263 27.0922 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 61 k 1.2102 31.2600 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 62 J 0.8533 28.2593 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 63 U 1.3034 39.6659 40.0666 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 64 j -0.1832 15.8337 52.7514 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 65 ( -0.1004 16.1927 52.4988 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 66 7 1.4221 26.0249 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 67 § 1.1154 24.2025 51.7325 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 68 $ -0.1244 25.1103 42.9078 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 69 € 0.7599 29.1671 39.0477 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 70 / 0.0889 18.1261 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 71 C -0.3925 36.8247 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 72 * 1.3477 20.3491 20.7081 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 73 ” -0.2057 24.3204 19.1753 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 74 ? -0.0091 22.4172 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 75 { -1.5451 16.4520 52.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 76 } -0.1599 16.4520 52.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 77 , 30.4089 10.6099 19.1753 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 78 I 1.1917 20.3121 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 79 ° 0.0276 19.7242 20.6017 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 80 K 1.1448 45.8298 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 81 H 1.0151 43.1671 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 82 q 12.6366 27.6410 39.7770 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 83 & 0.0683 43.1671 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 84 ’ 0.0576 10.6099 19.1753 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 85 [ 0.8624 12.0363 50.5654 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 86 - 24.0013 16.1927 5.5828 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 87 Y 1.1983 41.3515 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 88 Q -0.0976 41.0922 49.6509 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 89 " 0.0019 22.4172 18.4090 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 90 ! 0.0120 9.4429 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 91 x 14.3207 27.8519 25.9251 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 92 ) -0.2346 16.1927 52.4988 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 93 = 14.0246 30.8412 13.7407 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 94 + 5.6081 30.4755 30.4755 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 95 X 1.0676 42.8775 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 96 » 14.1342 27.3515 25.9251 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 97 ' 0.2104 7.9169 18.4090 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 98 ¢ 1.1282 22.8247 49.6576 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 99 Z 1.0026 36.6765 38.8995 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 100 > 7.5486 30.8412 26.8329 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 101 ® 0.3921 39.9251 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 102 © -0.1893 39.9251 41.2336 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 103 ] 1.1886 12.0363 50.5654 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 104 é 0.4728 22.8247 40.8026 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 105 z 14.0213 23.7021 25.9251 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 106 _ 48.8048 30.1927 4.0083 -Times_New_Roman_Bold.ttf 102 © 39.9251 41.2336 107 ¥ 1.2363 31.5012 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 1 t 3.4106 17.6493 36.8247 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 2 h -0.1216 28.0484 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 3 a 11.9793 25.4180 28.2593 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 4 n 11.8001 28.0484 27.0922 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 5 P 0.0097 33.0339 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 6 o 11.8073 24.2510 28.2593 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 7 e 12.2488 22.8247 28.2593 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 8 : 11.7217 9.4429 28.2593 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 9 r 11.8189 22.3243 27.0922 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 10 l -0.1259 12.8814 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 11 i -0.8604 12.8814 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 12 1 -0.1481 19.9834 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 13 | -1.2189 4.0083 52.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 14 N 0.1393 40.4323 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 15 f -1.1929 22.9425 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 16 g 11.9389 25.9251 39.7770 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 17 d -0.0197 27.6410 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 18 W 0.1662 58.0445 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 19 s 11.7170 18.1564 28.2593 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 20 c 11.7646 22.6832 28.2593 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 21 u 12.9311 28.0484 27.0922 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 22 3 -0.0559 25.1588 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 23 ~ 18.3393 30.9591 9.1836 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 24 # 0.0998 26.6848 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 25 O -2.3374 40.8329 42.4007 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 26 ` -0.8496 12.5434 9.4429 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 27 @ -1.0634 51.0839 51.9917 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 28 F -0.1672 32.2675 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 29 S -1.1613 26.9744 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 30 p 11.8534 27.6410 39.7770 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 31 “ -1.3332 24.3204 19.1753 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 32 % -0.2870 49.9821 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 33 £ -0.2443 26.8329 40.2147 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 34 . 30.2975 9.4429 9.4429 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 35 2 0.0152 25.1588 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 36 5 -0.0769 24.8995 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 37 m 11.6741 43.2155 27.0922 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 38 V 0.0798 43.2782 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 39 6 -0.0675 24.8995 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 40 w 12.9744 41.7521 27.0922 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 41 T -0.2253 35.1088 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 42 M -0.0461 52.8692 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 43 G -1.0725 42.5185 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 44 b 0.0443 27.6410 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 45 9 0.0637 24.8995 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 46 ; 11.4907 10.6099 36.8247 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 47 D -0.0741 38.4988 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 48 L 0.0370 35.4792 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 49 y 12.9298 29.1671 38.6099 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 50 ‘ -1.2568 10.6099 19.1753 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 51 \ -0.9153 16.3341 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 52 R 0.1720 41.3515 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 53 < 6.6838 30.8412 26.8329 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 54 4 0.0268 24.8995 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 55 8 0.0238 24.8995 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 56 0 -0.3331 25.3999 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 57 A -1.4534 42.0000 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 58 E -0.0352 35.1020 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 59 B 0.0856 35.7687 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 60 v 12.6250 29.4263 27.0922 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 61 k -0.0461 31.2600 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 62 J -0.0889 28.2593 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 63 U -0.2180 39.6659 40.0666 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 64 j -1.3266 15.8337 52.7514 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 65 ( -0.9080 16.1927 52.4988 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 66 7 -0.2061 26.0249 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 67 § -0.3168 24.2025 51.7325 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 68 $ -1.3684 25.1103 42.9078 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 69 € -0.3274 29.1671 39.0477 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 70 / -1.2103 18.1261 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 71 C -1.3357 36.8247 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 72 * 0.0754 20.3491 20.7081 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 73 ” -1.2041 24.3204 19.1753 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 74 ? -1.1704 22.4172 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 75 { -2.5100 16.4520 52.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 76 } -1.2574 16.4520 52.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 77 , 29.5734 10.6099 19.1753 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 78 I -0.1683 20.3121 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 79 ° -1.2502 19.7242 20.6017 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 80 K 0.0073 45.8298 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 81 H 0.1470 43.1671 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 82 q 12.0624 27.6410 39.7770 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 83 & -1.0891 43.1671 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 84 ’ -1.0748 10.6099 19.1753 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 85 [ 0.0058 12.0363 50.5654 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 86 - 22.7010 16.1927 5.5828 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 87 Y -0.0758 41.3515 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 88 Q -1.2468 41.0922 49.6509 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 89 " -0.8250 22.4172 18.4090 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 90 ! -1.1671 9.4429 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 91 x 13.1478 27.8519 25.9251 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 92 ) -1.1950 16.1927 52.4988 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 93 = 12.8855 30.8412 13.7407 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 94 + 4.6262 30.4755 30.4755 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 95 X -0.0033 42.8775 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 96 » 13.0171 27.3515 25.9251 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 97 ' -1.4558 7.9169 18.4090 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 98 ¢ 0.1720 22.8247 49.6576 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 99 Z 0.0015 36.6765 38.8995 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 100 > 6.5968 30.8412 26.8329 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 101 ® -1.2468 39.9251 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 102 © -1.0560 39.9251 41.2336 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 103 ] 0.0519 12.0363 50.5654 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 104 é -0.8192 22.8247 40.8026 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 105 z 13.0056 23.7021 25.9251 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 106 _ 47.6723 30.1927 4.0083 -Times_New_Roman_Bold.ttf 103 ] 12.0363 50.5654 107 ¥ -0.1349 31.5012 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 1 t 4.0650 17.6493 36.8247 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 2 h 0.4680 28.0484 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 3 a 12.3733 25.4180 28.2593 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 4 n 12.5615 28.0484 27.0922 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 5 P 0.5699 33.0339 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 6 o 12.5333 24.2510 28.2593 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 7 e 12.7135 22.8247 28.2593 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 8 : 12.5698 9.4429 28.2593 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 9 r 12.6765 22.3243 27.0922 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 10 l 0.6578 12.8814 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 11 i -0.1259 12.8814 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 12 1 0.5879 19.9834 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 13 | -0.4425 4.0083 52.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 14 N 0.5848 40.4323 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 15 f -0.6030 22.9425 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 16 g 12.2455 25.9251 39.7770 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 17 d 0.6309 27.6410 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 18 W 0.4829 58.0445 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 19 s 12.4967 18.1564 28.2593 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 20 c 12.7120 22.6832 28.2593 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 21 u 13.4141 28.0484 27.0922 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 22 3 0.6307 25.1588 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 23 ~ 19.4563 30.9591 9.1836 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 24 # 0.6828 26.6848 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 25 O -1.4706 40.8329 42.4007 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 26 ` -0.2970 12.5434 9.4429 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 27 @ -0.4270 51.0839 51.9917 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 28 F 0.6948 32.2675 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 29 S -0.1850 26.9744 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 30 p 12.7273 27.6410 39.7770 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 31 “ -0.6342 24.3204 19.1753 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 32 % 0.7566 49.9821 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 33 £ 0.5900 26.8329 40.2147 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 34 . 31.3137 9.4429 9.4429 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 35 2 0.6398 25.1588 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 36 5 0.6505 24.8995 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 37 m 12.5434 43.2155 27.0922 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 38 V 0.5304 43.2782 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 39 6 0.5063 24.8995 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 40 w 13.6677 41.7521 27.0922 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 41 T 0.7822 35.1088 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 42 M 0.5329 52.8692 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 43 G -0.2478 42.5185 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 44 b 0.8216 27.6410 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 45 9 0.7689 24.8995 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 46 ; 12.4454 10.6099 36.8247 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 47 D 0.7361 38.4988 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 48 L 0.9860 35.4792 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 49 y 13.6191 29.1671 38.6099 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 50 ‘ -0.5692 10.6099 19.1753 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 51 \ -0.5199 16.3341 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 52 R 0.7788 41.3515 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 53 < 6.9835 30.8412 26.8329 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 54 4 0.4193 24.8995 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 55 8 0.2799 24.8995 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 56 0 0.5788 25.3999 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 57 A -0.4213 42.0000 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 58 E 1.1598 35.1020 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 59 B 0.9860 35.7687 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 60 v 13.9670 29.4263 27.0922 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 61 k 0.7303 31.2600 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 62 J 1.0449 28.2593 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 63 U 0.9033 39.6659 40.0666 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 64 j -0.6827 15.8337 52.7514 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 65 ( -0.5290 16.1927 52.4988 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 66 7 0.4310 26.0249 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 67 § 0.5600 24.2025 51.7325 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 68 $ -0.5213 25.1103 42.9078 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 69 € 0.7047 29.1671 39.0477 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 70 / -0.5097 18.1261 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 71 C -0.4310 36.8247 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 72 * 1.0023 20.3491 20.7081 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 73 ” -0.4031 24.3204 19.1753 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 74 ? -0.5950 22.4172 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 75 { -0.5645 16.4520 52.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 76 } -1.6346 16.4520 52.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 77 , 30.0193 10.6099 19.1753 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 78 I 0.9360 20.3121 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 79 ° -0.3406 19.7242 20.6017 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 80 K 0.8264 45.8298 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 81 H 0.9004 43.1671 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 82 q 12.4291 27.6410 39.7770 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 83 & -0.5271 43.1671 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 84 ’ -0.3867 10.6099 19.1753 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 85 [ 0.8562 12.0363 50.5654 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 86 - 23.4890 16.1927 5.5828 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 87 Y 0.7433 41.3515 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 88 Q -0.3066 41.0922 49.6509 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 89 " -0.3479 22.4172 18.4090 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 90 ! -0.5478 9.4429 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 91 x 13.6792 27.8519 25.9251 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 92 ) -0.3142 16.1927 52.4988 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 93 = 13.7442 30.8412 13.7407 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 94 + 4.9279 30.4755 30.4755 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 95 X 0.9523 42.8775 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 96 » 13.6605 27.3515 25.9251 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 97 ' -0.3925 7.9169 18.4090 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 98 ¢ 0.6439 22.8247 49.6576 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 99 Z 0.5371 36.6765 38.8995 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 100 > 7.5967 30.8412 26.8329 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 101 ® -0.6563 39.9251 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 102 © -0.3925 39.9251 41.2336 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 103 ] 0.7821 12.0363 50.5654 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 104 é 0.1777 22.8247 40.8026 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 105 z 13.5047 23.7021 25.9251 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 106 _ 48.4882 30.1927 4.0083 -Times_New_Roman_Bold.ttf 104 é 22.8247 40.8026 107 ¥ 0.8635 31.5012 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 1 t -9.7843 17.6493 36.8247 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 2 h -13.1449 28.0484 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 3 a -0.7466 25.4180 28.2593 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 4 n -0.9984 28.0484 27.0922 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 5 P -13.0204 33.0339 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 6 o -1.2598 24.2510 28.2593 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 7 e -1.3717 22.8247 28.2593 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 8 : -1.2025 9.4429 28.2593 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 9 r -1.5577 22.3243 27.0922 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 10 l -12.8979 12.8814 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 11 i -14.1433 12.8814 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 12 1 -13.2147 19.9834 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 13 | -14.1414 4.0083 52.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 14 N -12.9768 40.4323 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 15 f -14.3519 22.9425 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 16 g -1.2204 25.9251 39.7770 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 17 d -13.1099 27.6410 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 18 W -13.1949 58.0445 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 19 s -1.2060 18.1564 28.2593 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 20 c -1.2056 22.6832 28.2593 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 21 u 0.0922 28.0484 27.0922 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 22 3 -12.6948 25.1588 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 23 ~ 5.5551 30.9591 9.1836 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 24 # -12.6298 26.6848 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 25 O -15.4800 40.8329 42.4007 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 26 ` -13.9480 12.5434 9.4429 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 27 @ -14.0137 51.0839 51.9917 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 28 F -13.1478 32.2675 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 29 S -14.2212 26.9744 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 30 p -1.0834 27.6410 39.7770 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 31 “ -14.2245 24.3204 19.1753 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 32 % -13.1729 49.9821 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 33 £ -13.0024 26.8329 40.2147 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 34 . 17.7882 9.4429 9.4429 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 35 2 -13.1254 25.1588 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 36 5 -12.9744 24.8995 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 37 m -1.2709 43.2155 27.0922 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 38 V -12.9744 43.2782 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 39 6 -13.1225 24.8995 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 40 w 0.1883 41.7521 27.0922 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 41 T -13.2424 35.1088 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 42 M -13.1060 52.8692 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 43 G -14.5666 42.5185 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 44 b -12.8888 27.6410 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 45 9 -13.5092 24.8995 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 46 ; -1.1152 10.6099 36.8247 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 47 D -12.8984 38.4988 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 48 L -12.8913 35.4792 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 49 y 0.1335 29.1671 38.6099 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 50 ‘ -14.2135 10.6099 19.1753 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 51 \ -13.9953 16.3341 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 52 R -12.9267 41.3515 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 53 < -6.3039 30.8412 26.8329 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 54 4 -12.9491 24.8995 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 55 8 -12.8380 24.8995 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 56 0 -13.0870 25.3999 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 57 A -14.2303 42.0000 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 58 E -13.0723 35.1020 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 59 B -12.6602 35.7687 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 60 v -0.0566 29.4263 27.0922 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 61 k -13.0023 31.2600 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 62 J -12.9710 28.2593 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 63 U -13.0973 39.6659 40.0666 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 64 j -14.1818 15.8337 52.7514 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 65 ( -14.0747 16.1927 52.4988 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 66 7 -13.0218 26.0249 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 67 § -13.2056 24.2025 51.7325 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 68 $ -14.2509 25.1103 42.9078 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 69 € -13.0542 29.1671 39.0477 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 70 / -14.2476 18.1261 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 71 C -14.1429 36.8247 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 72 * -12.8004 20.3491 20.7081 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 73 ” -14.1708 24.3204 19.1753 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 74 ? -14.0213 22.4172 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 75 { -14.1323 16.4520 52.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 76 } -15.4823 16.4520 52.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 77 , 16.4434 10.6099 19.1753 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 78 I -13.0190 20.3121 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 79 ° -13.9901 19.7242 20.6017 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 80 K -13.0081 45.8298 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 81 H -12.9667 43.1671 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 82 q -1.1968 27.6410 39.7770 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 83 & -14.2187 43.1671 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 84 ’ -14.3115 10.6099 19.1753 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 85 [ -12.7211 12.0363 50.5654 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 86 - 9.8646 16.1927 5.5828 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 87 Y -13.3683 41.3515 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 88 Q -14.3033 41.0922 49.6509 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 89 " -14.0583 22.4172 18.4090 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 90 ! -14.0107 9.4429 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 91 x 0.0519 27.8519 25.9251 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 92 ) -14.2774 16.1927 52.4988 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 93 = -0.0439 30.8412 13.7407 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 94 + -8.5659 30.4755 30.4755 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 95 X -12.8725 42.8775 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 96 » -0.0475 27.3515 25.9251 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 97 ' -14.5608 7.9169 18.4090 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 98 ¢ -13.0041 22.8247 49.6576 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 99 Z -12.6395 36.6765 38.8995 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 100 > -6.3351 30.8412 26.8329 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 101 ® -14.2836 39.9251 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 102 © -14.0025 39.9251 41.2336 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 103 ] -12.9192 12.0363 50.5654 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 104 é -13.8334 22.8247 40.8026 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 105 z -0.0995 23.7021 25.9251 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 106 _ 34.7785 30.1927 4.0083 -Times_New_Roman_Bold.ttf 105 z 23.7021 25.9251 107 ¥ -12.7995 31.5012 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 1 t -44.6822 17.6493 36.8247 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 2 h -47.8904 28.0484 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 3 a -36.0033 25.4180 28.2593 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 4 n -35.9696 28.0484 27.0922 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 5 P -47.7521 33.0339 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 6 o -35.7006 24.2510 28.2593 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 7 e -35.9495 22.8247 28.2593 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 8 : -35.8207 9.4429 28.2593 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 9 r -35.7434 22.3243 27.0922 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 10 l -47.8112 12.8814 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 11 i -49.2410 12.8814 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 12 1 -47.7413 19.9834 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 13 | -48.7990 4.0083 52.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 14 N -47.8428 40.4323 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 15 f -49.1190 22.9425 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 16 g -35.7362 25.9251 39.7770 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 17 d -47.9313 27.6410 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 18 W -47.7924 58.0445 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 19 s -35.7286 18.1564 28.2593 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 20 c -36.1327 22.6832 28.2593 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 21 u -34.8608 28.0484 27.0922 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 22 3 -47.8205 25.1588 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 23 ~ -29.1105 30.9591 9.1836 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 24 # -47.6929 26.6848 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 25 O -49.9190 40.8329 42.4007 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 26 ` -48.6204 12.5434 9.4429 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 27 @ -48.8600 51.0839 51.9917 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 28 F -47.5079 32.2675 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 29 S -48.6823 26.9744 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 30 p -36.0432 27.6410 39.7770 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 31 “ -48.9743 24.3204 19.1753 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 32 % -47.7483 49.9821 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 33 £ -47.7853 26.8329 40.2147 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 34 . -17.1303 9.4429 9.4429 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 35 2 -47.8575 25.1588 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 36 5 -47.5203 24.8995 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 37 m -36.1172 43.2155 27.0922 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 38 V -47.8050 43.2782 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 39 6 -47.7037 24.8995 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 40 w -34.9160 41.7521 27.0922 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 41 T -47.8961 35.1088 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 42 M -47.4685 52.8692 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 43 G -48.8970 42.5185 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 44 b -47.8169 27.6410 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 45 9 -47.8425 24.8995 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 46 ; -36.0013 10.6099 36.8247 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 47 D -47.5128 38.4988 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 48 L -47.7242 35.4792 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 49 y -34.7810 29.1671 38.6099 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 50 ‘ -48.8067 10.6099 19.1753 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 51 \ -48.6899 16.3341 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 52 R -47.6349 41.3515 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 53 < -40.8981 30.8412 26.8329 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 54 4 -48.2681 24.8995 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 55 8 -47.8016 24.8995 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 56 0 -47.9612 25.3999 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 57 A -48.6641 42.0000 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 58 E -47.7184 35.1020 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 59 B -47.6781 35.7687 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 60 v -34.6700 29.4263 27.0922 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 61 k -47.8112 31.2600 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 62 J -47.4666 28.2593 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 63 U -47.8558 39.6659 40.0666 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 64 j -48.7730 15.8337 52.7514 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 65 ( -48.8966 16.1927 52.4988 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 66 7 -47.3999 26.0249 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 67 § -47.8752 24.2025 51.7325 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 68 $ -48.8556 25.1103 42.9078 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 69 € -47.9554 29.1671 39.0477 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 70 / -49.0095 18.1261 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 71 C -48.7178 36.8247 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 72 * -47.7039 20.3491 20.7081 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 73 ” -49.0600 24.3204 19.1753 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 74 ? -48.9185 22.4172 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 75 { -50.1144 16.4520 52.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 76 } -49.0292 16.4520 52.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 77 , -18.3473 10.6099 19.1753 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 78 I -47.5507 20.3121 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 79 ° -48.7250 19.7242 20.6017 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 80 K -47.9328 45.8298 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 81 H -47.6857 43.1671 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 82 q -35.9169 27.6410 39.7770 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 83 & -48.8879 43.1671 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 84 ’ -48.9888 10.6099 19.1753 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 85 [ -47.7631 12.0363 50.5654 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 86 - -25.0174 16.1927 5.5828 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 87 Y -47.5507 41.3515 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 88 Q -48.9877 41.0922 49.6509 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 89 " -48.8172 22.4172 18.4090 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 90 ! -48.9710 9.4429 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 91 x -34.6758 27.8519 25.9251 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 92 ) -48.9863 16.1927 52.4988 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 93 = -34.9348 30.8412 13.7407 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 94 + -43.1783 30.4755 30.4755 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 95 X -47.5464 42.8775 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 96 » -34.6095 27.3515 25.9251 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 97 ' -48.7326 7.9169 18.4090 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 98 ¢ -47.8395 22.8247 49.6576 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 99 Z -47.5098 36.6765 38.8995 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 100 > -40.9745 30.8412 26.8329 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 101 ® -48.9729 39.9251 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 102 © -49.0718 39.9251 41.2336 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 103 ] -47.9296 12.0363 50.5654 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 104 é -48.5890 22.8247 40.8026 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 105 z -34.8992 23.7021 25.9251 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 106 _ -0.1701 30.1927 4.0083 -Times_New_Roman_Bold.ttf 106 _ 30.1927 4.0083 107 ¥ -47.7314 31.5012 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 1 t 3.5575 17.6493 36.8247 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 2 h -0.1389 28.0484 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 3 a 11.7939 25.4180 28.2593 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 4 n 11.9793 28.0484 27.0922 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 5 P 0.0015 33.0339 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 6 o 12.0572 24.2510 28.2593 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 7 e 11.5204 22.8247 28.2593 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 8 : 11.5555 9.4429 28.2593 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 9 r 11.6267 22.3243 27.0922 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 10 l -0.2130 12.8814 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 11 i -1.3184 12.8814 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 12 1 -0.0553 19.9834 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 13 | -0.6875 4.0083 52.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 14 N 0.1778 40.4323 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 15 f -1.1093 22.9425 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 16 g 11.7761 25.9251 39.7770 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 17 d -0.1455 27.6410 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 18 W 0.0106 58.0445 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 19 s 11.8106 18.1564 28.2593 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 20 c 11.9350 22.6832 28.2593 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 21 u 12.8946 28.0484 27.0922 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 22 3 0.1900 25.1588 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 23 ~ 18.8462 30.9591 9.1836 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 24 # -0.0558 26.6848 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 25 O -2.1136 40.8329 42.4007 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 26 ` -0.8405 12.5434 9.4429 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 27 @ -1.2944 51.0839 51.9917 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 28 F 0.1302 32.2675 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 29 S -1.0782 26.9744 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 30 p 11.7688 27.6410 39.7770 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 31 “ -1.1518 24.3204 19.1753 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 32 % -0.5123 49.9821 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 33 £ 0.0629 26.8329 40.2147 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 34 . 30.5910 9.4429 9.4429 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 35 2 -0.5004 25.1588 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 36 5 0.1701 24.8995 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 37 m 11.8073 43.2155 27.0922 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 38 V -0.2629 43.2782 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 39 6 -0.1260 24.8995 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 40 w 12.9359 41.7521 27.0922 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 41 T 0.0758 35.1088 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 42 M 0.1201 52.8692 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 43 G -1.3789 42.5185 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 44 b -0.2057 27.6410 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 45 9 -0.0684 24.8995 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 46 ; 11.8015 10.6099 36.8247 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 47 D 0.0187 38.4988 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 48 L 0.2191 35.4792 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 49 y 12.8931 29.1671 38.6099 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 50 ‘ -1.2084 10.6099 19.1753 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 51 \ -1.2814 16.3341 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 52 R 0.0058 41.3515 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 53 < 6.8481 30.8412 26.8329 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 54 4 -0.2410 24.8995 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 55 8 -0.1809 24.8995 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 56 0 -0.1703 25.3999 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 57 A -0.9672 42.0000 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 58 E 0.0148 35.1020 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 59 B -0.3041 35.7687 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 60 v 13.1949 29.4263 27.0922 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 61 k 0.0337 31.2600 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 62 J -0.2920 28.2593 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 63 U -0.0903 39.6659 40.0666 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 64 j -0.9836 15.8337 52.7514 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 65 ( -1.2156 16.1927 52.4988 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 66 7 -0.0667 26.0249 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 67 § 0.0263 24.2025 51.7325 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 68 $ -1.3424 25.1103 42.9078 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 69 € -0.1943 29.1671 39.0477 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 70 / -1.1598 18.1261 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 71 C -1.2002 36.8247 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 72 * 0.2701 20.3491 20.7081 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 73 ” -1.4261 24.3204 19.1753 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 74 ? -1.1238 22.4172 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 75 { -2.5133 16.4520 52.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 76 } -1.3684 16.4520 52.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 77 , 29.4106 10.6099 19.1753 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 78 I -0.3032 20.3121 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 79 ° -1.0782 19.7242 20.6017 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 80 K -0.0889 45.8298 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 81 H 0.0630 43.1671 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 82 q 11.9447 27.6410 39.7770 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 83 & -1.2073 43.1671 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 84 ’ -0.9580 10.6099 19.1753 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 85 [ -0.0352 12.0363 50.5654 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 86 - 22.7866 16.1927 5.5828 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 87 Y 0.1422 41.3515 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 88 Q -1.1671 41.0922 49.6509 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 89 " -1.1794 22.4172 18.4090 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 90 ! -1.6452 9.4429 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 91 x 13.1090 27.8519 25.9251 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 92 ) -1.1506 16.1927 52.4988 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 93 = 12.8322 30.8412 13.7407 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 94 + 4.3830 30.4755 30.4755 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 95 X -0.0674 42.8775 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 96 » 12.7984 27.3515 25.9251 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 97 ' -1.2839 7.9169 18.4090 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 98 ¢ -0.0437 22.8247 49.6576 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 99 Z -0.1705 36.6765 38.8995 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 100 > 6.4067 30.8412 26.8329 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 101 ® -1.0764 39.9251 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 102 © -0.9563 39.9251 41.2336 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 103 ] -0.0327 12.0363 50.5654 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 104 é -0.8635 22.8247 40.8026 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 105 z 12.7970 23.7021 25.9251 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 106 _ 48.0408 30.1927 4.0083 -Times_New_Roman_Bold.ttf 107 ¥ 31.5012 38.8995 107 ¥ -0.0427 31.5012 38.8995 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 1 t 0.1313 20.0679 39.1479 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 2 h -4.5072 24.5269 43.1853 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 3 a 7.5594 25.7702 31.4731 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 4 n 7.4289 24.5269 31.0515 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 5 P -3.1547 25.2665 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 6 o 7.6555 27.8006 31.4731 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 7 e 7.6849 28.1414 31.4731 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 8 : 7.6229 8.5779 31.4731 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 9 r 7.5750 18.3782 31.0515 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 10 l -4.5701 10.7263 43.6069 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 11 i -2.9663 10.9855 41.8006 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 12 1 -3.1834 14.1414 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 13 | -1.3080 4.8826 48.1487 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 14 N -2.6584 28.7266 42.1994 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 15 f -4.4163 19.9642 43.1853 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 16 g 6.5812 25.2287 44.2292 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 17 d -4.2489 26.6153 43.6069 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 18 W -3.2815 48.0809 42.1994 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 19 s 7.6639 19.7857 31.4731 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 20 c 7.5240 25.2078 31.4731 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 21 u 8.2606 24.9855 30.7922 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 22 3 -3.1895 23.3416 42.4217 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 23 ~ 17.3138 20.6080 6.1487 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 24 # -3.2287 30.9707 42.4217 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 25 O -3.2468 34.4666 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 26 ` -6.9144 10.2447 9.3996 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 27 @ 0.5648 39.0664 41.7999 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 28 F -3.2700 25.7708 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 29 S -3.3213 23.5638 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 30 p 7.5460 26.7339 43.0439 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 31 “ -3.8421 22.5779 17.1929 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 32 % -3.4204 31.3564 42.4217 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 33 £ -3.3375 25.4300 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 34 . 30.7704 8.5779 8.5779 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 35 2 -3.1587 25.3115 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 36 5 -3.1834 23.7625 42.4217 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 37 m 7.5217 41.1197 31.0515 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 38 V -2.9358 32.7998 42.1994 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 39 6 -3.2040 25.7708 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 40 w 8.3562 43.4311 30.7922 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 41 T -3.0652 32.4239 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 42 M -3.0515 41.3412 42.1994 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 43 G -3.5524 32.7998 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 44 b -4.6372 26.7339 43.6069 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 45 9 -3.4517 25.5714 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 46 ; 7.3135 9.9854 41.2734 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 47 D -3.3713 29.3267 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 48 L -2.9314 23.7632 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 49 y 8.4445 29.1853 42.3630 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 50 ‘ -3.9699 9.7632 17.1929 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 51 \ -3.0723 20.5722 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 52 R -3.2987 29.1853 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 53 < 8.7998 20.7117 23.6008 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 54 4 -3.2320 28.0000 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 55 8 -3.3861 25.5714 42.4217 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 56 0 -3.2356 26.8974 42.4217 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 57 A -3.1463 34.1037 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 58 E -2.8680 24.9485 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 59 B -3.1182 26.5555 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 60 v 8.4221 28.3630 30.7922 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 61 k -4.7779 25.9116 43.1853 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 62 J -2.9213 21.5692 42.1994 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 63 U -3.0605 29.2897 42.4587 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 64 j -3.1494 15.1853 53.7930 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 65 ( -3.7598 11.8887 54.4968 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 66 7 -3.4811 26.7339 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 67 § -3.2592 22.3934 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 68 $ -7.2439 23.5638 53.2658 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 69 € -3.1445 28.8433 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 70 / -3.2100 20.9939 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 71 C -3.3079 30.2298 42.6809 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 72 * -3.5567 18.5997 17.5559 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 73 ” -3.9485 22.9416 17.1929 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 74 ? -3.8536 18.7418 42.9260 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 75 { -3.9627 19.6443 54.6733 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 76 } -3.8748 19.6443 54.6733 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 77 , 30.0048 9.9854 18.7998 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 78 I -3.1226 5.7857 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 79 ° -3.5870 12.0301 12.0301 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 80 K -3.1153 28.1765 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 81 H -2.8368 29.5489 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 82 q 7.3963 26.7567 43.0439 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 83 & -3.6522 34.4079 42.9260 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 84 ’ -3.7308 9.7632 17.1929 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 85 [ -4.2689 12.9561 55.1777 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 86 - 19.6335 12.1338 5.1628 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 87 Y -2.9626 32.4239 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 88 Q -3.1906 40.0054 50.6958 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 89 " -3.4007 14.8217 10.9485 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 90 ! -3.9800 8.5779 42.9260 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 91 x 8.4193 29.1853 30.3706 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 92 ) -3.8417 11.8887 54.4968 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 93 = 13.8696 23.7632 13.5993 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 94 + 8.5896 23.5040 23.5040 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 95 X -3.4352 32.3782 42.0000 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 96 » 14.1970 21.2303 15.5254 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 97 ' -4.1011 5.1628 10.9485 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 98 ¢ 3.7976 20.2901 39.0664 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 99 Z -3.1033 26.6523 41.7778 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 100 > 8.9522 20.7117 23.6008 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 101 ® 0.4634 38.2219 38.2219 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 102 © 0.6688 38.2219 38.2219 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 103 ] -4.2703 12.9561 55.1777 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 104 é -6.9150 28.1414 46.1769 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 105 z 8.6849 25.2078 30.3706 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 106 _ 42.4303 30.3706 3.7781 -Trebuchet_MS.ttf 1 t 20.0679 39.1479 107 ¥ -3.2422 32.2017 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 1 t 4.4542 20.0679 39.1479 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 2 h 0.1012 24.5269 43.1853 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 3 a 12.1432 25.7702 31.4731 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 4 n 11.7612 24.5269 31.0515 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 5 P 1.4577 25.2665 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 6 o 12.0496 27.8006 31.4731 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 7 e 12.2137 28.1414 31.4731 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 8 : 11.8816 8.5779 31.4731 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 9 r 11.9691 18.3782 31.0515 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 10 l 0.3069 10.7263 43.6069 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 11 i 1.3805 10.9855 41.8006 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 12 1 0.9918 14.1414 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 13 | 2.9620 4.8826 48.1487 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 14 N 1.3226 28.7266 42.1994 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 15 f 0.1397 19.9642 43.1853 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 16 g 11.1441 25.2287 44.2292 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 17 d 0.0000 26.6153 43.6069 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 18 W 1.4974 48.0809 42.1994 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 19 s 12.4509 19.7857 31.4731 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 20 c 12.2687 25.2078 31.4731 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 21 u 12.5890 24.9855 30.7922 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 22 3 1.4431 23.3416 42.4217 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 23 ~ 22.0289 20.6080 6.1487 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 24 # 1.2915 30.9707 42.4217 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 25 O 1.2318 34.4666 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 26 ` -2.6752 10.2447 9.3996 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 27 @ 4.7626 39.0664 41.7999 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 28 F 1.5686 25.7708 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 29 S 1.0180 23.5638 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 30 p 12.0421 26.7339 43.0439 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 31 “ 0.8537 22.5779 17.1929 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 32 % 1.1276 31.3564 42.4217 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 33 £ 1.1483 25.4300 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 34 . 34.8023 8.5779 8.5779 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 35 2 1.5154 25.3115 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 36 5 1.0253 23.7625 42.4217 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 37 m 12.2136 41.1197 31.0515 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 38 V 1.1034 32.7998 42.1994 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 39 6 1.1705 25.7708 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 40 w 12.9723 43.4311 30.7922 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 41 T 1.4873 32.4239 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 42 M 1.4104 41.3412 42.1994 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 43 G 1.0692 32.7998 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 44 b 0.0003 26.7339 43.6069 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 45 9 1.1159 25.5714 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 46 ; 12.3400 9.9854 41.2734 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 47 D 1.1853 29.3267 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 48 L 1.4231 23.7632 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 49 y 12.8114 29.1853 42.3630 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 50 ‘ 0.5770 9.7632 17.1929 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 51 \ 0.8226 20.5722 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 52 R 1.0423 29.1853 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 53 < 13.0496 20.7117 23.6008 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 54 4 1.0778 28.0000 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 55 8 1.2327 25.5714 42.4217 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 56 0 1.2564 26.8974 42.4217 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 57 A 1.4908 34.1037 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 58 E 1.3490 24.9485 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 59 B 1.1780 26.5555 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 60 v 13.0015 28.3630 30.7922 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 61 k -0.1542 25.9116 43.1853 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 62 J 1.5617 21.5692 42.1994 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 63 U 1.0334 29.2897 42.4587 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 64 j 1.5763 15.1853 53.7930 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 65 ( 0.9087 11.8887 54.4968 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 66 7 1.1856 26.7339 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 67 § 1.1073 22.3934 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 68 $ -3.3458 23.5638 53.2658 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 69 € 1.3344 28.8433 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 70 / 1.2935 20.9939 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 71 C 1.1744 30.2298 42.6809 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 72 * 0.6068 18.5997 17.5559 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 73 ” 0.3984 22.9416 17.1929 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 74 ? 0.9792 18.7418 42.9260 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 75 { 0.4348 19.6443 54.6733 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 76 } 0.4525 19.6443 54.6733 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 77 , 34.2282 9.9854 18.7998 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 78 I 1.5015 5.7857 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 79 ° 0.7731 12.0301 12.0301 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 80 K 1.5838 28.1765 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 81 H 1.6420 29.5489 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 82 q 12.2169 26.7567 43.0439 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 83 & 0.6530 34.4079 42.9260 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 84 ’ 0.4218 9.7632 17.1929 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 85 [ 0.0309 12.9561 55.1777 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 86 - 24.1233 12.1338 5.1628 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 87 Y 1.4945 32.4239 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 88 Q 1.2190 40.0054 50.6958 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 89 " 0.8456 14.8217 10.9485 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 90 ! 0.6895 8.5779 42.9260 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 91 x 12.7748 29.1853 30.3706 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 92 ) 0.3079 11.8887 54.4968 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 93 = 18.2613 23.7632 13.5993 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 94 + 13.1082 23.5040 23.5040 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 95 X 1.1117 32.3782 42.0000 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 96 » 18.3287 21.2303 15.5254 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 97 ' 0.7832 5.1628 10.9485 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 98 ¢ 8.1290 20.2901 39.0664 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 99 Z 1.6655 26.6523 41.7778 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 100 > 13.1536 20.7117 23.6008 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 101 ® 5.0414 38.2219 38.2219 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 102 © 4.8476 38.2219 38.2219 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 103 ] -0.2932 12.9561 55.1777 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 104 é -2.4488 28.1414 46.1769 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 105 z 12.7958 25.2078 30.3706 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 106 _ 47.0734 30.3706 3.7781 -Trebuchet_MS.ttf 2 h 24.5269 43.1853 107 ¥ 1.4637 32.2017 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 1 t -7.6898 20.0679 39.1479 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 2 h -11.9807 24.5269 43.1853 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 3 a 0.1407 25.7702 31.4731 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 4 n 0.2328 24.5269 31.0515 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 5 P -11.1571 25.2665 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 6 o -0.0650 27.8006 31.4731 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 7 e 0.0326 28.1414 31.4731 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 8 : 0.0370 8.5779 31.4731 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 9 r 0.0769 18.3782 31.0515 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 10 l -12.2834 10.7263 43.6069 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 11 i -10.7443 10.9855 41.8006 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 12 1 -10.9524 14.1414 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 13 | -9.3369 4.8826 48.1487 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 14 N -10.6243 28.7266 42.1994 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 15 f -12.2640 19.9642 43.1853 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 16 g -1.2695 25.2287 44.2292 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 17 d -12.1734 26.6153 43.6069 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 18 W -10.7307 48.0809 42.1994 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 19 s -0.1270 19.7857 31.4731 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 20 c -0.0076 25.2078 31.4731 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 21 u 0.8783 24.9855 30.7922 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 22 3 -10.9656 23.3416 42.4217 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 23 ~ 10.2461 20.6080 6.1487 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 24 # -10.8386 30.9707 42.4217 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 25 O -10.9394 34.4666 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 26 ` -14.5597 10.2447 9.3996 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 27 @ -7.0600 39.0664 41.7999 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 28 F -10.8270 25.7708 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 29 S -10.5396 23.5638 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 30 p 0.2267 26.7339 43.0439 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 31 “ -11.6204 22.5779 17.1929 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 32 % -10.8596 31.3564 42.4217 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 33 £ -10.8956 25.4300 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 34 . 22.9808 8.5779 8.5779 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 35 2 -11.2762 25.3115 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 36 5 -10.7605 23.7625 42.4217 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 37 m 0.0837 41.1197 31.0515 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 38 V -10.8584 32.7998 42.1994 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 39 6 -10.7900 25.7708 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 40 w 0.9196 43.4311 30.7922 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 41 T -10.6831 32.4239 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 42 M -10.5913 41.3412 42.1994 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 43 G -10.9187 32.7998 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 44 b -12.3428 26.7339 43.6069 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 45 9 -11.0286 25.5714 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 46 ; 0.0028 9.9854 41.2734 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 47 D -11.0226 29.3267 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 48 L -10.5975 23.7632 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 49 y 0.6265 29.1853 42.3630 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 50 ‘ -11.3186 9.7632 17.1929 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 51 \ -10.8582 20.5722 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 52 R -10.5631 29.1853 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 53 < 1.0474 20.7117 23.6008 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 54 4 -11.2537 28.0000 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 55 8 -11.0595 25.5714 42.4217 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 56 0 -10.9845 26.8974 42.4217 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 57 A -10.9251 34.1037 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 58 E -10.5366 24.9485 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 59 B -11.4703 26.5555 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 60 v 0.6142 28.3630 30.7922 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 61 k -12.4184 25.9116 43.1853 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 62 J -10.7474 21.5692 42.1994 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 63 U -10.7110 29.2897 42.4587 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 64 j -11.0024 15.1853 53.7930 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 65 ( -11.3928 11.8887 54.4968 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 66 7 -10.9855 26.7339 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 67 § -11.1524 22.3934 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 68 $ -15.3083 23.5638 53.2658 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 69 € -10.9942 28.8433 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 70 / -10.6611 20.9939 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 71 C -10.8667 30.2298 42.6809 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 72 * -11.5875 18.5997 17.5559 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 73 ” -11.4945 22.9416 17.1929 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 74 ? -11.3020 18.7418 42.9260 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 75 { -11.3742 19.6443 54.6733 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 76 } -11.4084 19.6443 54.6733 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 77 , 22.2272 9.9854 18.7998 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 78 I -10.5214 5.7857 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 79 ° -11.6658 12.0301 12.0301 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 80 K -10.7147 28.1765 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 81 H -10.5652 29.5489 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 82 q -0.3501 26.7567 43.0439 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 83 & -11.4366 34.4079 42.9260 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 84 ’ -11.6487 9.7632 17.1929 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 85 [ -12.2090 12.9561 55.1777 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 86 - 11.8354 12.1338 5.1628 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 87 Y -10.8174 32.4239 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 88 Q -10.8183 40.0054 50.6958 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 89 " -11.4529 14.8217 10.9485 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 90 ! -11.5984 8.5779 42.9260 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 91 x 0.5210 29.1853 30.3706 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 92 ) -11.2694 11.8887 54.4968 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 93 = 6.0248 23.7632 13.5993 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 94 + 0.8267 23.5040 23.5040 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 95 X -10.9372 32.3782 42.0000 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 96 » 6.4107 21.2303 15.5254 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 97 ' -11.2776 5.1628 10.9485 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 98 ¢ -3.6551 20.2901 39.0664 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 99 Z -11.0588 26.6523 41.7778 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 100 > 0.8641 20.7117 23.6008 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 101 ® -6.9585 38.2219 38.2219 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 102 © -7.0798 38.2219 38.2219 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 103 ] -12.3321 12.9561 55.1777 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 104 é -14.8250 28.1414 46.1769 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 105 z 0.7205 25.2078 30.3706 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 106 _ 34.6409 30.3706 3.7781 -Trebuchet_MS.ttf 3 a 25.7702 31.4731 107 ¥ -10.8924 32.2017 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 1 t -7.7013 20.0679 39.1479 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 2 h -12.0022 24.5269 43.1853 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 3 a 0.1811 25.7702 31.4731 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 4 n 0.0635 24.5269 31.0515 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 5 P -10.9485 25.2665 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 6 o 0.1411 27.8006 31.4731 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 7 e -0.0773 28.1414 31.4731 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 8 : 0.0000 8.5779 31.4731 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 9 r -0.1255 18.3782 31.0515 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 10 l -12.5499 10.7263 43.6069 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 11 i -10.7932 10.9855 41.8006 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 12 1 -11.0848 14.1414 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 13 | -8.7517 4.8826 48.1487 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 14 N -10.9102 28.7266 42.1994 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 15 f -12.1664 19.9642 43.1853 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 16 g -0.8359 25.2287 44.2292 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 17 d -12.2801 26.6153 43.6069 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 18 W -10.7622 48.0809 42.1994 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 19 s -0.1510 19.7857 31.4731 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 20 c 0.1277 25.2078 31.4731 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 21 u 0.9922 24.9855 30.7922 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 22 3 -10.8183 23.3416 42.4217 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 23 ~ 9.8560 20.6080 6.1487 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 24 # -10.6952 30.9707 42.4217 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 25 O -11.0124 34.4666 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 26 ` -14.3707 10.2447 9.3996 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 27 @ -6.9105 39.0664 41.7999 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 28 F -10.8267 25.7708 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 29 S -10.9695 23.5638 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 30 p 0.0975 26.7339 43.0439 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 31 “ -11.5671 22.5779 17.1929 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 32 % -11.0105 31.3564 42.4217 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 33 £ -11.0907 25.4300 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 34 . 22.8199 8.5779 8.5779 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 35 2 -11.1233 25.3115 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 36 5 -10.9633 23.7625 42.4217 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 37 m 0.0951 41.1197 31.0515 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 38 V -10.8685 32.7998 42.1994 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 39 6 -11.0581 25.7708 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 40 w 0.8365 43.4311 30.7922 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 41 T -10.8094 32.4239 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 42 M -10.8358 41.3412 42.1994 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 43 G -11.2315 32.7998 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 44 b -12.0238 26.7339 43.6069 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 45 9 -10.5615 25.5714 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 46 ; 0.0947 9.9854 41.2734 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 47 D -11.4818 29.3267 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 48 L -10.8623 23.7632 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 49 y 0.8720 29.1853 42.3630 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 50 ‘ -11.5401 9.7632 17.1929 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 51 \ -10.6747 20.5722 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 52 R -11.1325 29.1853 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 53 < 1.0181 20.7117 23.6008 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 54 4 -10.9660 28.0000 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 55 8 -11.0038 25.5714 42.4217 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 56 0 -11.1560 26.8974 42.4217 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 57 A -10.7794 34.1037 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 58 E -10.6413 24.9485 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 59 B -10.9335 26.5555 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 60 v 0.6570 28.3630 30.7922 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 61 k -12.0684 25.9116 43.1853 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 62 J -10.8258 21.5692 42.1994 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 63 U -10.8732 29.2897 42.4587 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 64 j -10.9542 15.1853 53.7930 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 65 ( -10.9849 11.8887 54.4968 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 66 7 -11.0845 26.7339 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 67 § -10.9365 22.3934 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 68 $ -15.1733 23.5638 53.2658 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 69 € -11.0740 28.8433 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 70 / -10.8169 20.9939 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 71 C -10.8095 30.2298 42.6809 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 72 * -11.4456 18.5997 17.5559 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 73 ” -11.8388 22.9416 17.1929 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 74 ? -11.4044 18.7418 42.9260 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 75 { -11.7339 19.6443 54.6733 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 76 } -11.8993 19.6443 54.6733 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 77 , 22.4013 9.9854 18.7998 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 78 I -10.7781 5.7857 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 79 ° -11.2790 12.0301 12.0301 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 80 K -10.8652 28.1765 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 81 H -10.4183 29.5489 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 82 q -0.0951 26.7567 43.0439 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 83 & -11.4961 34.4079 42.9260 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 84 ’ -11.4455 9.7632 17.1929 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 85 [ -12.1762 12.9561 55.1777 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 86 - 11.9286 12.1338 5.1628 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 87 Y -10.9218 32.4239 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 88 Q -11.0617 40.0054 50.6958 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 89 " -11.6183 14.8217 10.9485 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 90 ! -11.3183 8.5779 42.9260 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 91 x 0.3609 29.1853 30.3706 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 92 ) -11.4111 11.8887 54.4968 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 93 = 6.2343 23.7632 13.5993 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 94 + 0.9402 23.5040 23.5040 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 95 X -11.0396 32.3782 42.0000 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 96 » 6.5545 21.2303 15.5254 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 97 ' -11.4723 5.1628 10.9485 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 98 ¢ -3.5806 20.2901 39.0664 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 99 Z -10.8818 26.6523 41.7778 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 100 > 1.1875 20.7117 23.6008 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 101 ® -7.2973 38.2219 38.2219 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 102 © -7.0713 38.2219 38.2219 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 103 ] -12.0093 12.9561 55.1777 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 104 é -14.8268 28.1414 46.1769 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 105 z 0.6809 25.2078 30.3706 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 106 _ 34.8429 30.3706 3.7781 -Trebuchet_MS.ttf 4 n 24.5269 31.0515 107 ¥ -10.6883 32.2017 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 1 t 2.9476 20.0679 39.1479 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 2 h -1.2463 24.5269 43.1853 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 3 a 11.0831 25.7702 31.4731 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 4 n 11.0225 24.5269 31.0515 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 5 P -0.1609 25.2665 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 6 o 10.9532 27.8006 31.4731 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 7 e 11.0995 28.1414 31.4731 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 8 : 11.1842 8.5779 31.4731 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 9 r 10.8607 18.3782 31.0515 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 10 l -1.2992 10.7263 43.6069 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 11 i 0.0720 10.9855 41.8006 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 12 1 -0.2844 14.1414 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 13 | 1.6800 4.8826 48.1487 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 14 N 0.1123 28.7266 42.1994 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 15 f -1.3659 19.9642 43.1853 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 16 g 9.8282 25.2287 44.2292 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 17 d -1.0257 26.6153 43.6069 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 18 W 0.0554 48.0809 42.1994 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 19 s 11.1095 19.7857 31.4731 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 20 c 10.8153 25.2078 31.4731 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 21 u 11.5764 24.9855 30.7922 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 22 3 -0.1647 23.3416 42.4217 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 23 ~ 20.6467 20.6080 6.1487 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 24 # -0.2590 30.9707 42.4217 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 25 O 0.0259 34.4666 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 26 ` -4.0876 10.2447 9.3996 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 27 @ 3.9075 39.0664 41.7999 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 28 F 0.0441 25.7708 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 29 S 0.0809 23.5638 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 30 p 10.9423 26.7339 43.0439 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 31 “ -0.5978 22.5779 17.1929 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 32 % 0.0206 31.3564 42.4217 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 33 £ 0.1422 25.4300 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 34 . 33.9355 8.5779 8.5779 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 35 2 0.1596 25.3115 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 36 5 0.2819 23.7625 42.4217 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 37 m 10.9053 41.1197 31.0515 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 38 V 0.3616 32.7998 42.1994 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 39 6 0.4092 25.7708 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 40 w 11.7913 43.4311 30.7922 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 41 T 0.2741 32.4239 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 42 M 0.1272 41.3412 42.1994 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 43 G 0.1100 32.7998 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 44 b -1.3779 26.7339 43.6069 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 45 9 -0.0090 25.5714 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 46 ; 10.7486 9.9854 41.2734 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 47 D 0.1572 29.3267 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 48 L 0.3582 23.7632 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 49 y 11.6044 29.1853 42.3630 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 50 ‘ -0.7799 9.7632 17.1929 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 51 \ 0.4151 20.5722 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 52 R -0.1840 29.1853 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 53 < 11.9786 20.7117 23.6008 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 54 4 0.0602 28.0000 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 55 8 0.1321 25.5714 42.4217 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 56 0 0.0609 26.8974 42.4217 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 57 A 0.1782 34.1037 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 58 E 0.1380 24.9485 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 59 B -0.0058 26.5555 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 60 v 11.6773 28.3630 30.7922 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 61 k -1.3558 25.9116 43.1853 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 62 J 0.1761 21.5692 42.1994 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 63 U 0.4976 29.2897 42.4587 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 64 j -0.0687 15.1853 53.7930 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 65 ( -0.3386 11.8887 54.4968 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 66 7 0.1126 26.7339 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 67 § 0.1840 22.3934 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 68 $ -4.0970 23.5638 53.2658 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 69 € 0.3214 28.8433 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 70 / -0.0979 20.9939 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 71 C 0.1419 30.2298 42.6809 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 72 * -0.4013 18.5997 17.5559 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 73 ” -1.1983 22.9416 17.1929 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 74 ? -0.6850 18.7418 42.9260 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 75 { -0.6882 19.6443 54.6733 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 76 } -0.6871 19.6443 54.6733 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 77 , 33.7685 9.9854 18.7998 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 78 I -0.0005 5.7857 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 79 ° -0.5518 12.0301 12.0301 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 80 K 0.1046 28.1765 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 81 H 0.3053 29.5489 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 82 q 10.8818 26.7567 43.0439 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 83 & -0.7207 34.4079 42.9260 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 84 ’ -0.8083 9.7632 17.1929 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 85 [ -1.6533 12.9561 55.1777 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 86 - 22.7054 12.1338 5.1628 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 87 Y 0.2093 32.4239 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 88 Q -0.2253 40.0054 50.6958 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 89 " -0.6663 14.8217 10.9485 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 90 ! -0.5599 8.5779 42.9260 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 91 x 11.6693 29.1853 30.3706 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 92 ) -0.4126 11.8887 54.4968 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 93 = 17.3176 23.7632 13.5993 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 94 + 11.9507 23.5040 23.5040 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 95 X -0.0115 32.3782 42.0000 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 96 » 17.5088 21.2303 15.5254 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 97 ' -0.5313 5.1628 10.9485 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 98 ¢ 7.2206 20.2901 39.0664 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 99 Z 0.2183 26.6523 41.7778 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 100 > 12.1189 20.7117 23.6008 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 101 ® 3.7527 38.2219 38.2219 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 102 © 3.8093 38.2219 38.2219 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 103 ] -1.4905 12.9561 55.1777 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 104 é -3.8753 28.1414 46.1769 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 105 z 11.5862 25.2078 30.3706 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 106 _ 45.9399 30.3706 3.7781 -Trebuchet_MS.ttf 5 P 25.2665 42.0000 107 ¥ -0.0286 32.2017 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 1 t -7.9310 20.0679 39.1479 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 2 h -11.8418 24.5269 43.1853 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 3 a 0.1335 25.7702 31.4731 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 4 n 0.1016 24.5269 31.0515 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 5 P -10.7885 25.2665 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 6 o -0.0519 27.8006 31.4731 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 7 e -0.0802 28.1414 31.4731 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 8 : -0.0628 8.5779 31.4731 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 9 r 0.1135 18.3782 31.0515 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 10 l -11.8879 10.7263 43.6069 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 11 i -10.9739 10.9855 41.8006 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 12 1 -10.8408 14.1414 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 13 | -8.8336 4.8826 48.1487 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 14 N -10.7973 28.7266 42.1994 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 15 f -12.1369 19.9642 43.1853 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 16 g -1.0131 25.2287 44.2292 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 17 d -12.0587 26.6153 43.6069 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 18 W -10.7173 48.0809 42.1994 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 19 s -0.3382 19.7857 31.4731 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 20 c -0.3306 25.2078 31.4731 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 21 u 0.8125 24.9855 30.7922 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 22 3 -11.0088 23.3416 42.4217 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 23 ~ 9.9163 20.6080 6.1487 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 24 # -10.7587 30.9707 42.4217 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 25 O -11.2184 34.4666 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 26 ` -14.7523 10.2447 9.3996 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 27 @ -6.6247 39.0664 41.7999 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 28 F -10.7534 25.7708 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 29 S -10.7835 23.5638 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 30 p 0.0104 26.7339 43.0439 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 31 “ -11.5929 22.5779 17.1929 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 32 % -10.6296 31.3564 42.4217 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 33 £ -11.0009 25.4300 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 34 . 22.8718 8.5779 8.5779 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 35 2 -10.7780 25.3115 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 36 5 -10.7545 23.7625 42.4217 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 37 m -0.0563 41.1197 31.0515 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 38 V -10.7843 32.7998 42.1994 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 39 6 -10.9605 25.7708 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 40 w 0.7453 43.4311 30.7922 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 41 T -10.4474 32.4239 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 42 M -10.6290 41.3412 42.1994 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 43 G -10.7731 32.7998 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 44 b -12.0599 26.7339 43.6069 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 45 9 -11.0436 25.5714 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 46 ; 0.0404 9.9854 41.2734 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 47 D -11.2668 29.3267 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 48 L -10.7469 23.7632 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 49 y 0.8058 29.1853 42.3630 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 50 ‘ -11.6947 9.7632 17.1929 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 51 \ -11.2315 20.5722 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 52 R -10.7612 29.1853 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 53 < 0.9088 20.7117 23.6008 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 54 4 -11.1267 28.0000 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 55 8 -11.0465 25.5714 42.4217 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 56 0 -10.9457 26.8974 42.4217 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 57 A -11.2124 34.1037 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 58 E -10.8355 24.9485 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 59 B -10.9308 26.5555 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 60 v 0.5387 28.3630 30.7922 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 61 k -12.0844 25.9116 43.1853 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 62 J -10.7024 21.5692 42.1994 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 63 U -10.9204 29.2897 42.4587 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 64 j -10.5175 15.1853 53.7930 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 65 ( -11.4010 11.8887 54.4968 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 66 7 -10.9115 26.7339 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 67 § -10.9075 22.3934 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 68 $ -15.1665 23.5638 53.2658 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 69 € -11.0448 28.8433 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 70 / -11.0845 20.9939 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 71 C -10.8386 30.2298 42.6809 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 72 * -11.6162 18.5997 17.5559 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 73 ” -11.7688 22.9416 17.1929 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 74 ? -11.6608 18.7418 42.9260 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 75 { -11.8104 19.6443 54.6733 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 76 } -11.7024 19.6443 54.6733 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 77 , 22.4679 9.9854 18.7998 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 78 I -10.9897 5.7857 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 79 ° -11.4216 12.0301 12.0301 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 80 K -10.8380 28.1765 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 81 H -10.6522 29.5489 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 82 q -0.3134 26.7567 43.0439 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 83 & -11.4986 34.4079 42.9260 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 84 ’ -11.4916 9.7632 17.1929 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 85 [ -12.1976 12.9561 55.1777 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 86 - 11.6961 12.1338 5.1628 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 87 Y -10.8238 32.4239 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 88 Q -10.9144 40.0054 50.6958 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 89 " -11.1368 14.8217 10.9485 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 90 ! -11.6267 8.5779 42.9260 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 91 x 0.8086 29.1853 30.3706 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 92 ) -11.2534 11.8887 54.4968 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 93 = 6.1539 23.7632 13.5993 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 94 + 0.8604 23.5040 23.5040 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 95 X -10.8705 32.3782 42.0000 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 96 » 6.3622 21.2303 15.5254 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 97 ' -11.1939 5.1628 10.9485 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 98 ¢ -3.4826 20.2901 39.0664 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 99 Z -10.6514 26.6523 41.7778 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 100 > 1.1182 20.7117 23.6008 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 101 ® -7.2788 38.2219 38.2219 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 102 © -7.3126 38.2219 38.2219 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 103 ] -12.3268 12.9561 55.1777 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 104 é -14.7095 28.1414 46.1769 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 105 z 0.8933 25.2078 30.3706 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 106 _ 34.8090 30.3706 3.7781 -Trebuchet_MS.ttf 6 o 27.8006 31.4731 107 ¥ -10.8214 32.2017 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 1 t -7.5115 20.0679 39.1479 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 2 h -12.2289 24.5269 43.1853 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 3 a 0.2773 25.7702 31.4731 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 4 n -0.1336 24.5269 31.0515 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 5 P -10.9827 25.2665 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 6 o 0.1557 27.8006 31.4731 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 7 e 0.1110 28.1414 31.4731 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 8 : 0.0610 8.5779 31.4731 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 9 r -0.0181 18.3782 31.0515 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 10 l -12.0126 10.7263 43.6069 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 11 i -10.9272 10.9855 41.8006 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 12 1 -11.0612 14.1414 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 13 | -9.1223 4.8826 48.1487 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 14 N -10.9378 28.7266 42.1994 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 15 f -12.1453 19.9642 43.1853 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 16 g -1.0475 25.2287 44.2292 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 17 d -12.2016 26.6153 43.6069 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 18 W -10.5543 48.0809 42.1994 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 19 s -0.1525 19.7857 31.4731 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 20 c -0.0774 25.2078 31.4731 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 21 u 1.0572 24.9855 30.7922 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 22 3 -10.8539 23.3416 42.4217 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 23 ~ 10.0301 20.6080 6.1487 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 24 # -11.0407 30.9707 42.4217 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 25 O -11.0450 34.4666 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 26 ` -14.9951 10.2447 9.3996 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 27 @ -6.8980 39.0664 41.7999 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 28 F -10.5497 25.7708 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 29 S -10.8654 23.5638 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 30 p 0.0207 26.7339 43.0439 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 31 “ -11.4356 22.5779 17.1929 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 32 % -10.8582 31.3564 42.4217 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 33 £ -10.9831 25.4300 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 34 . 22.9423 8.5779 8.5779 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 35 2 -10.7439 25.3115 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 36 5 -11.1249 23.7625 42.4217 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 37 m 0.2060 41.1197 31.0515 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 38 V -11.0216 32.7998 42.1994 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 39 6 -10.7502 25.7708 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 40 w 0.6809 43.4311 30.7922 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 41 T -10.8497 32.4239 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 42 M -10.5514 41.3412 42.1994 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 43 G -10.9990 32.7998 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 44 b -12.2807 26.7339 43.6069 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 45 9 -10.9286 25.5714 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 46 ; -0.0714 9.9854 41.2734 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 47 D -11.1205 29.3267 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 48 L -10.6312 23.7632 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 49 y 0.9371 29.1853 42.3630 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 50 ‘ -11.7972 9.7632 17.1929 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 51 \ -10.7280 20.5722 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 52 R -11.0475 29.1853 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 53 < 1.0286 20.7117 23.6008 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 54 4 -11.2018 28.0000 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 55 8 -10.7986 25.5714 42.4217 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 56 0 -11.1427 26.8974 42.4217 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 57 A -10.9318 34.1037 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 58 E -10.9352 24.9485 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 59 B -11.0370 26.5555 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 60 v 0.5477 28.3630 30.7922 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 61 k -12.1182 25.9116 43.1853 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 62 J -10.9616 21.5692 42.1994 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 63 U -10.9905 29.2897 42.4587 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 64 j -11.0964 15.1853 53.7930 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 65 ( -11.3350 11.8887 54.4968 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 66 7 -11.1985 26.7339 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 67 § -10.9011 22.3934 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 68 $ -15.4534 23.5638 53.2658 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 69 € -11.0639 28.8433 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 70 / -10.8713 20.9939 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 71 C -11.0327 30.2298 42.6809 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 72 * -11.6364 18.5997 17.5559 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 73 ” -11.8903 22.9416 17.1929 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 74 ? -11.5519 18.7418 42.9260 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 75 { -11.4527 19.6443 54.6733 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 76 } -11.7354 19.6443 54.6733 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 77 , 22.4376 9.9854 18.7998 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 78 I -10.9574 5.7857 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 79 ° -11.5333 12.0301 12.0301 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 80 K -10.8805 28.1765 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 81 H -11.1425 29.5489 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 82 q 0.2826 26.7567 43.0439 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 83 & -11.5979 34.4079 42.9260 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 84 ’ -11.8397 9.7632 17.1929 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 85 [ -11.9517 12.9561 55.1777 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 86 - 11.8614 12.1338 5.1628 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 87 Y -11.0092 32.4239 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 88 Q -10.8625 40.0054 50.6958 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 89 " -11.6332 14.8217 10.9485 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 90 ! -11.4039 8.5779 42.9260 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 91 x 0.4839 29.1853 30.3706 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 92 ) -11.6667 11.8887 54.4968 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 93 = 6.2933 23.7632 13.5993 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 94 + 0.8672 23.5040 23.5040 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 95 X -11.0549 32.3782 42.0000 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 96 » 6.1473 21.2303 15.5254 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 97 ' -11.3154 5.1628 10.9485 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 98 ¢ -3.9682 20.2901 39.0664 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 99 Z -10.7012 26.6523 41.7778 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 100 > 1.1617 20.7117 23.6008 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 101 ® -7.1694 38.2219 38.2219 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 102 © -7.2133 38.2219 38.2219 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 103 ] -12.2169 12.9561 55.1777 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 104 é -14.7100 28.1414 46.1769 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 105 z 0.4589 25.2078 30.3706 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 106 _ 34.7516 30.3706 3.7781 -Trebuchet_MS.ttf 7 e 28.1414 31.4731 107 ¥ -10.8214 32.2017 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 1 t -7.8189 20.0679 39.1479 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 2 h -12.5936 24.5269 43.1853 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 3 a 0.0198 25.7702 31.4731 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 4 n -0.0479 24.5269 31.0515 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 5 P -11.1339 25.2665 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 6 o -0.0522 27.8006 31.4731 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 7 e -0.1397 28.1414 31.4731 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 8 : 0.1198 8.5779 31.4731 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 9 r -0.0309 18.3782 31.0515 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 10 l -11.9766 10.7263 43.6069 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 11 i -10.7630 10.9855 41.8006 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 12 1 -10.8818 14.1414 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 13 | -8.6461 4.8826 48.1487 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 14 N -10.4273 28.7266 42.1994 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 15 f -12.2955 19.9642 43.1853 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 16 g -1.1055 25.2287 44.2292 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 17 d -12.2698 26.6153 43.6069 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 18 W -10.7724 48.0809 42.1994 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 19 s -0.0181 19.7857 31.4731 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 20 c -0.0903 25.2078 31.4731 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 21 u 0.5710 24.9855 30.7922 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 22 3 -10.9275 23.3416 42.4217 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 23 ~ 9.7323 20.6080 6.1487 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 24 # -10.9332 30.9707 42.4217 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 25 O -11.0754 34.4666 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 26 ` -14.7643 10.2447 9.3996 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 27 @ -7.3073 39.0664 41.7999 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 28 F -10.6312 25.7708 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 29 S -10.9310 23.5638 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 30 p -0.0769 26.7339 43.0439 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 31 “ -11.5344 22.5779 17.1929 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 32 % -10.9750 31.3564 42.4217 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 33 £ -10.8542 25.4300 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 34 . 22.9557 8.5779 8.5779 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 35 2 -10.9116 25.3115 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 36 5 -11.0565 23.7625 42.4217 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 37 m 0.2728 41.1197 31.0515 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 38 V -10.6764 32.7998 42.1994 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 39 6 -10.8611 25.7708 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 40 w 0.9489 43.4311 30.7922 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 41 T -10.7673 32.4239 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 42 M -10.8214 41.3412 42.1994 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 43 G -10.8407 32.7998 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 44 b -11.9949 26.7339 43.6069 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 45 9 -11.0327 25.5714 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 46 ; 0.2632 9.9854 41.2734 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 47 D -11.0483 29.3267 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 48 L -10.6940 23.7632 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 49 y 0.7208 29.1853 42.3630 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 50 ‘ -11.6961 9.7632 17.1929 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 51 \ -10.8591 20.5722 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 52 R -11.0421 29.1853 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 53 < 1.3398 20.7117 23.6008 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 54 4 -10.6862 28.0000 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 55 8 -11.1742 25.5714 42.4217 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 56 0 -10.9485 26.8974 42.4217 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 57 A -10.9572 34.1037 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 58 E -10.6421 24.9485 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 59 B -11.2730 26.5555 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 60 v 0.7395 28.3630 30.7922 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 61 k -12.3410 25.9116 43.1853 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 62 J -10.8874 21.5692 42.1994 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 63 U -10.9454 29.2897 42.4587 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 64 j -10.6175 15.1853 53.7930 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 65 ( -11.4278 11.8887 54.4968 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 66 7 -10.9956 26.7339 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 67 § -10.7617 22.3934 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 68 $ -15.2063 23.5638 53.2658 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 69 € -10.9365 28.8433 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 70 / -11.0355 20.9939 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 71 C -10.9895 30.2298 42.6809 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 72 * -11.4144 18.5997 17.5559 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 73 ” -11.5924 22.9416 17.1929 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 74 ? -11.2962 18.7418 42.9260 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 75 { -11.8000 19.6443 54.6733 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 76 } -11.7097 19.6443 54.6733 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 77 , 22.4390 9.9854 18.7998 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 78 I -10.8061 5.7857 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 79 ° -11.5360 12.0301 12.0301 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 80 K -11.0034 28.1765 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 81 H -10.4803 29.5489 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 82 q 0.0993 26.7567 43.0439 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 83 & -11.4155 34.4079 42.9260 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 84 ’ -11.5601 9.7632 17.1929 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 85 [ -12.2333 12.9561 55.1777 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 86 - 11.8103 12.1338 5.1628 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 87 Y -10.7701 32.4239 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 88 Q -10.8389 40.0054 50.6958 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 89 " -11.6159 14.8217 10.9485 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 90 ! -11.6072 8.5779 42.9260 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 91 x 0.7731 29.1853 30.3706 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 92 ) -11.3625 11.8887 54.4968 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 93 = 6.1608 23.7632 13.5993 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 94 + 0.9906 23.5040 23.5040 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 95 X -10.9721 32.3782 42.0000 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 96 » 6.6005 21.2303 15.5254 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 97 ' -11.3578 5.1628 10.9485 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 98 ¢ -3.8112 20.2901 39.0664 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 99 Z -10.5619 26.6523 41.7778 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 100 > 1.0775 20.7117 23.6008 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 101 ® -7.0997 38.2219 38.2219 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 102 © -7.1261 38.2219 38.2219 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 103 ] -11.7614 12.9561 55.1777 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 104 é -14.6196 28.1414 46.1769 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 105 z 0.8824 25.2078 30.3706 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 106 _ 34.9037 30.3706 3.7781 -Trebuchet_MS.ttf 8 : 8.5779 31.4731 107 ¥ -10.7576 32.2017 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 1 t -7.5859 20.0679 39.1479 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 2 h -12.2766 24.5269 43.1853 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 3 a -0.0842 25.7702 31.4731 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 4 n 0.0101 24.5269 31.0515 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 5 P -10.9178 25.2665 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 6 o 0.0580 27.8006 31.4731 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 7 e -0.0106 28.1414 31.4731 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 8 : 0.1714 8.5779 31.4731 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 9 r -0.0711 18.3782 31.0515 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 10 l -12.4498 10.7263 43.6069 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 11 i -10.7727 10.9855 41.8006 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 12 1 -10.9053 14.1414 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 13 | -8.4850 4.8826 48.1487 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 14 N -10.7186 28.7266 42.1994 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 15 f -12.3326 19.9642 43.1853 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 16 g -0.9392 25.2287 44.2292 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 17 d -11.9738 26.6153 43.6069 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 18 W -10.9429 48.0809 42.1994 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 19 s 0.0900 19.7857 31.4731 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 20 c 0.1232 25.2078 31.4731 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 21 u 0.8278 24.9855 30.7922 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 22 3 -10.9115 23.3416 42.4217 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 23 ~ 9.9498 20.6080 6.1487 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 24 # -11.0629 30.9707 42.4217 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 25 O -11.3246 34.4666 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 26 ` -14.3838 10.2447 9.3996 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 27 @ -7.0551 39.0664 41.7999 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 28 F -10.5058 25.7708 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 29 S -11.0250 23.5638 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 30 p -0.1558 26.7339 43.0439 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 31 “ -11.4962 22.5779 17.1929 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 32 % -10.9485 31.3564 42.4217 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 33 £ -10.8596 25.4300 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 34 . 22.8121 8.5779 8.5779 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 35 2 -10.8713 25.3115 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 36 5 -11.1022 23.7625 42.4217 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 37 m -0.3589 41.1197 31.0515 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 38 V -10.7781 32.7998 42.1994 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 39 6 -10.8669 25.7708 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 40 w 0.7255 43.4311 30.7922 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 41 T -10.8650 32.4239 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 42 M -10.6460 41.3412 42.1994 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 43 G -11.1158 32.7998 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 44 b -12.4231 26.7339 43.6069 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 45 9 -10.8237 25.5714 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 46 ; 0.0741 9.9854 41.2734 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 47 D -10.9428 29.3267 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 48 L -10.6390 23.7632 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 49 y 0.7726 29.1853 42.3630 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 50 ‘ -11.3051 9.7632 17.1929 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 51 \ -10.8251 20.5722 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 52 R -11.1459 29.1853 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 53 < 1.1396 20.7117 23.6008 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 54 4 -10.9884 28.0000 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 55 8 -10.9876 25.5714 42.4217 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 56 0 -11.2075 26.8974 42.4217 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 57 A -10.7395 34.1037 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 58 E -10.7662 24.9485 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 59 B -11.0254 26.5555 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 60 v 0.6929 28.3630 30.7922 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 61 k -12.2938 25.9116 43.1853 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 62 J -10.7695 21.5692 42.1994 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 63 U -10.5303 29.2897 42.4587 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 64 j -10.7970 15.1853 53.7930 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 65 ( -11.5047 11.8887 54.4968 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 66 7 -10.7333 26.7339 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 67 § -10.7041 22.3934 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 68 $ -15.0135 23.5638 53.2658 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 69 € -11.1267 28.8433 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 70 / -10.9956 20.9939 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 71 C -11.0592 30.2298 42.6809 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 72 * -11.5998 18.5997 17.5559 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 73 ” -11.6516 22.9416 17.1929 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 74 ? -11.5091 18.7418 42.9260 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 75 { -11.5611 19.6443 54.6733 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 76 } -11.4193 19.6443 54.6733 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 77 , 22.5505 9.9854 18.7998 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 78 I -10.9973 5.7857 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 79 ° -11.5171 12.0301 12.0301 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 80 K -10.5009 28.1765 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 81 H -10.7633 29.5489 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 82 q 0.1360 26.7567 43.0439 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 83 & -11.5344 34.4079 42.9260 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 84 ’ -11.5957 9.7632 17.1929 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 85 [ -12.3782 12.9561 55.1777 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 86 - 11.8949 12.1338 5.1628 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 87 Y -10.4298 32.4239 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 88 Q -10.8967 40.0054 50.6958 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 89 " -11.6383 14.8217 10.9485 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 90 ! -11.4097 8.5779 42.9260 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 91 x 0.7846 29.1853 30.3706 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 92 ) -11.4529 11.8887 54.4968 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 93 = 6.1493 23.7632 13.5993 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 94 + 0.9769 23.5040 23.5040 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 95 X -10.9579 32.3782 42.0000 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 96 » 6.4177 21.2303 15.5254 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 97 ' -11.4576 5.1628 10.9485 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 98 ¢ -3.8681 20.2901 39.0664 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 99 Z -10.7307 26.6523 41.7778 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 100 > 1.0818 20.7117 23.6008 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 101 ® -7.2295 38.2219 38.2219 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 102 © -6.9778 38.2219 38.2219 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 103 ] -11.8229 12.9561 55.1777 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 104 é -14.7365 28.1414 46.1769 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 105 z 0.4839 25.2078 30.3706 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 106 _ 35.0205 30.3706 3.7781 -Trebuchet_MS.ttf 9 r 18.3782 31.0515 107 ¥ -10.7561 32.2017 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 1 t 4.3849 20.0679 39.1479 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 2 h 0.1212 24.5269 43.1853 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 3 a 12.2375 25.7702 31.4731 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 4 n 12.2289 24.5269 31.0515 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 5 P 0.9763 25.2665 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 6 o 12.1029 27.8006 31.4731 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 7 e 12.1650 28.1414 31.4731 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 8 : 12.1857 8.5779 31.4731 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 9 r 12.1338 18.3782 31.0515 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 10 l -0.0370 10.7263 43.6069 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 11 i 1.5211 10.9855 41.8006 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 12 1 1.1987 14.1414 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 13 | 3.1000 4.8826 48.1487 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 14 N 1.4742 28.7266 42.1994 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 15 f 0.0864 19.9642 43.1853 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 16 g 10.9290 25.2287 44.2292 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 17 d -0.0874 26.6153 43.6069 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 18 W 1.2000 48.0809 42.1994 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 19 s 12.1026 19.7857 31.4731 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 20 c 12.1377 25.2078 31.4731 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 21 u 12.9678 24.9855 30.7922 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 22 3 1.0398 23.3416 42.4217 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 23 ~ 21.9981 20.6080 6.1487 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 24 # 1.1050 30.9707 42.4217 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 25 O 1.1483 34.4666 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 26 ` -2.5591 10.2447 9.3996 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 27 @ 5.0195 39.0664 41.7999 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 28 F 1.5377 25.7708 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 29 S 1.0191 23.5638 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 30 p 12.1663 26.7339 43.0439 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 31 “ 0.4478 22.5779 17.1929 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 32 % 1.1853 31.3564 42.4217 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 33 £ 1.3425 25.4300 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 34 . 35.1315 8.5779 8.5779 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 35 2 0.9618 25.3115 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 36 5 1.0532 23.7625 42.4217 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 37 m 12.0993 41.1197 31.0515 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 38 V 1.1633 32.7998 42.1994 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 39 6 1.0503 25.7708 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 40 w 12.9377 43.4311 30.7922 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 41 T 1.1452 32.4239 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 42 M 1.4953 41.3412 42.1994 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 43 G 1.1686 32.7998 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 44 b 0.0889 26.7339 43.6069 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 45 9 1.3631 25.5714 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 46 ; 12.2473 9.9854 41.2734 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 47 D 1.2847 29.3267 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 48 L 1.4507 23.7632 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 49 y 12.9838 29.1853 42.3630 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 50 ‘ 0.4030 9.7632 17.1929 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 51 \ 1.0902 20.5722 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 52 R 1.0769 29.1853 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 53 < 13.4345 20.7117 23.6008 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 54 4 1.1915 28.0000 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 55 8 1.3202 25.5714 42.4217 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 56 0 1.1003 26.8974 42.4217 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 57 A 1.1853 34.1037 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 58 E 1.5363 24.9485 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 59 B 1.2699 26.5555 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 60 v 12.8089 28.3630 30.7922 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 61 k 0.2374 25.9116 43.1853 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 62 J 1.5748 21.5692 42.1994 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 63 U 1.4023 29.2897 42.4587 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 64 j 1.3784 15.1853 53.7930 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 65 ( 0.7523 11.8887 54.4968 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 66 7 1.1962 26.7339 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 67 § 1.3482 22.3934 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 68 $ -2.9717 23.5638 53.2658 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 69 € 1.1853 28.8433 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 70 / 1.1055 20.9939 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 71 C 1.0652 30.2298 42.6809 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 72 * 0.7622 18.5997 17.5559 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 73 ” 0.7397 22.9416 17.1929 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 74 ? 0.3250 18.7418 42.9260 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 75 { 0.3803 19.6443 54.6733 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 76 } 0.6640 19.6443 54.6733 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 77 , 34.4160 9.9854 18.7998 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 78 I 1.2896 5.7857 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 79 ° 0.4603 12.0301 12.0301 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 80 K 1.3969 28.1765 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 81 H 1.4075 29.5489 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 82 q 12.0496 26.7567 43.0439 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 83 & 0.6486 34.4079 42.9260 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 84 ’ 0.6615 9.7632 17.1929 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 85 [ -0.0432 12.9561 55.1777 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 86 - 24.3731 12.1338 5.1628 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 87 Y 1.3096 32.4239 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 88 Q 1.1483 40.0054 50.6958 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 89 " 0.6809 14.8217 10.9485 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 90 ! 0.7539 8.5779 42.9260 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 91 x 12.8945 29.1853 30.3706 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 92 ) 0.7197 11.8887 54.4968 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 93 = 18.5926 23.7632 13.5993 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 94 + 13.0763 23.5040 23.5040 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 95 X 1.3617 32.3782 42.0000 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 96 » 18.5849 21.2303 15.5254 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 97 ' 0.6871 5.1628 10.9485 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 98 ¢ 8.2821 20.2901 39.0664 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 99 Z 1.3922 26.6523 41.7778 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 100 > 13.0824 20.7117 23.6008 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 101 ® 5.1739 38.2219 38.2219 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 102 © 5.1056 38.2219 38.2219 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 103 ] -0.0889 12.9561 55.1777 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 104 é -2.4739 28.1414 46.1769 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 105 z 12.8989 25.2078 30.3706 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 106 _ 47.1705 30.3706 3.7781 -Trebuchet_MS.ttf 10 l 10.7263 43.6069 107 ¥ 1.4122 32.2017 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 1 t 2.9238 20.0679 39.1479 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 2 h -1.9137 24.5269 43.1853 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 3 a 10.8082 25.7702 31.4731 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 4 n 10.8107 24.5269 31.0515 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 5 P 0.0313 25.2665 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 6 o 10.6603 27.8006 31.4731 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 7 e 10.5728 28.1414 31.4731 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 8 : 10.9211 8.5779 31.4731 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 9 r 10.6703 18.3782 31.0515 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 10 l -1.6590 10.7263 43.6069 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 11 i 0.0798 10.9855 41.8006 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 12 1 -0.0492 14.1414 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 13 | 1.5358 4.8826 48.1487 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 14 N -0.0575 28.7266 42.1994 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 15 f -1.2944 19.9642 43.1853 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 16 g 9.3745 25.2287 44.2292 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 17 d -1.5044 26.6153 43.6069 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 18 W -0.2784 48.0809 42.1994 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 19 s 10.5582 19.7857 31.4731 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 20 c 10.7505 25.2078 31.4731 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 21 u 11.4261 24.9855 30.7922 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 22 3 0.0313 23.3416 42.4217 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 23 ~ 20.7125 20.6080 6.1487 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 24 # -0.1163 30.9707 42.4217 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 25 O -0.0336 34.4666 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 26 ` -3.8753 10.2447 9.3996 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 27 @ 3.7519 39.0664 41.7999 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 28 F -0.0723 25.7708 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 29 S -0.3929 23.5638 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 30 p 10.7549 26.7339 43.0439 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 31 “ -0.7146 22.5779 17.1929 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 32 % -0.2821 31.3564 42.4217 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 33 £ -0.1761 25.4300 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 34 . 33.6295 8.5779 8.5779 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 35 2 -0.1994 25.3115 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 36 5 -0.3031 23.7625 42.4217 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 37 m 10.8191 41.1197 31.0515 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 38 V 0.0790 32.7998 42.1994 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 39 6 -0.3003 25.7708 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 40 w 11.3026 43.4311 30.7922 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 41 T -0.1713 32.4239 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 42 M -0.0451 41.3412 42.1994 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 43 G -0.1192 32.7998 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 44 b -1.2640 26.7339 43.6069 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 45 9 -0.2836 25.5714 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 46 ; 10.6602 9.9854 41.2734 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 47 D -0.0735 29.3267 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 48 L 0.1164 23.7632 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 49 y 11.5222 29.1853 42.3630 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 50 ‘ -1.0629 9.7632 17.1929 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 51 \ -0.1624 20.5722 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 52 R -0.3021 29.1853 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 53 < 11.9597 20.7117 23.6008 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 54 4 -0.2782 28.0000 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 55 8 -0.1682 25.5714 42.4217 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 56 0 -0.0696 26.8974 42.4217 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 57 A -0.3025 34.1037 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 58 E -0.0603 24.9485 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 59 B -0.3326 26.5555 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 60 v 11.3411 28.3630 30.7922 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 61 k -1.3757 25.9116 43.1853 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 62 J -0.1093 21.5692 42.1994 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 63 U -0.0677 29.2897 42.4587 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 64 j 0.0798 15.1853 53.7930 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 65 ( -0.6040 11.8887 54.4968 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 66 7 -0.2426 26.7339 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 67 § -0.2155 22.3934 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 68 $ -4.4334 23.5638 53.2658 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 69 € -0.0274 28.8433 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 70 / -0.2245 20.9939 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 71 C -0.6457 30.2298 42.6809 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 72 * -0.7100 18.5997 17.5559 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 73 ” -0.7591 22.9416 17.1929 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 74 ? -0.9690 18.7418 42.9260 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 75 { -0.8332 19.6443 54.6733 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 76 } -0.8560 19.6443 54.6733 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 77 , 33.5471 9.9854 18.7998 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 78 I 0.1923 5.7857 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 79 ° -0.7364 12.0301 12.0301 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 80 K -0.1681 28.1765 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 81 H 0.0228 29.5489 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 82 q 10.9715 26.7567 43.0439 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 83 & -0.6524 34.4079 42.9260 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 84 ’ -1.0596 9.7632 17.1929 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 85 [ -1.6234 12.9561 55.1777 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 86 - 22.6117 12.1338 5.1628 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 87 Y -0.1463 32.4239 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 88 Q -0.3776 40.0054 50.6958 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 89 " -0.7144 14.8217 10.9485 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 90 ! -0.6520 8.5779 42.9260 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 91 x 11.3497 29.1853 30.3706 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 92 ) -0.7147 11.8887 54.4968 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 93 = 17.0900 23.7632 13.5993 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 94 + 11.3202 23.5040 23.5040 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 95 X -0.2644 32.3782 42.0000 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 96 » 17.1319 21.2303 15.5254 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 97 ' -0.6160 5.1628 10.9485 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 98 ¢ 7.1887 20.2901 39.0664 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 99 Z 0.2009 26.6523 41.7778 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 100 > 11.7957 20.7117 23.6008 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 101 ® 3.7743 38.2219 38.2219 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 102 © 3.6589 38.2219 38.2219 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 103 ] -1.5464 12.9561 55.1777 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 104 é -4.1357 28.1414 46.1769 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 105 z 11.5929 25.2078 30.3706 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 106 _ 45.5354 30.3706 3.7781 -Trebuchet_MS.ttf 11 i 10.9855 41.8006 107 ¥ 0.0751 32.2017 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 1 t 3.6039 20.0679 39.1479 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 2 h -0.9966 24.5269 43.1853 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 3 a 10.8864 25.7702 31.4731 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 4 n 11.0583 24.5269 31.0515 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 5 P -0.1556 25.2665 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 6 o 10.9148 27.8006 31.4731 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 7 e 10.9928 28.1414 31.4731 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 8 : 10.7962 8.5779 31.4731 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 9 r 10.9961 18.3782 31.0515 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 10 l -1.1773 10.7263 43.6069 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 11 i 0.1936 10.9855 41.8006 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 12 1 -0.0273 14.1414 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 13 | 1.8747 4.8826 48.1487 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 14 N 0.0003 28.7266 42.1994 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 15 f -1.1785 19.9642 43.1853 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 16 g 9.6831 25.2287 44.2292 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 17 d -1.4880 26.6153 43.6069 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 18 W 0.0800 48.0809 42.1994 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 19 s 10.9053 19.7857 31.4731 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 20 c 11.0332 25.2078 31.4731 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 21 u 11.4686 24.9855 30.7922 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 22 3 0.5973 23.3416 42.4217 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 23 ~ 20.8103 20.6080 6.1487 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 24 # -0.0342 30.9707 42.4217 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 25 O -0.0830 34.4666 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 26 ` -3.6778 10.2447 9.3996 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 27 @ 4.1143 39.0664 41.7999 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 28 F 0.4859 25.7708 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 29 S 0.1981 23.5638 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 30 p 11.0004 26.7339 43.0439 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 31 “ -0.7194 22.5779 17.1929 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 32 % -0.2191 31.3564 42.4217 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 33 £ 0.0667 25.4300 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 34 . 33.5886 8.5779 8.5779 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 35 2 0.1898 25.3115 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 36 5 0.2297 23.7625 42.4217 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 37 m 11.1916 41.1197 31.0515 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 38 V 0.0478 32.7998 42.1994 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 39 6 -0.0837 25.7708 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 40 w 11.4338 43.4311 30.7922 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 41 T 0.2535 32.4239 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 42 M 0.1551 41.3412 42.1994 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 43 G -0.1302 32.7998 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 44 b -1.2182 26.7339 43.6069 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 45 9 -0.4470 25.5714 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 46 ; 10.9845 9.9854 41.2734 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 47 D 0.0150 29.3267 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 48 L 0.1921 23.7632 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 49 y 11.3200 29.1853 42.3630 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 50 ‘ -0.7408 9.7632 17.1929 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 51 \ -0.0952 20.5722 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 52 R 0.1245 29.1853 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 53 < 12.0867 20.7117 23.6008 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 54 4 0.0627 28.0000 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 55 8 0.0011 25.5714 42.4217 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 56 0 0.0000 26.8974 42.4217 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 57 A 0.0484 34.1037 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 58 E 0.2512 24.9485 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 59 B 0.1873 26.5555 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 60 v 11.4179 28.3630 30.7922 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 61 k -0.9096 25.9116 43.1853 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 62 J 0.1380 21.5692 42.1994 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 63 U 0.2944 29.2897 42.4587 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 64 j 0.2786 15.1853 53.7930 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 65 ( -0.5296 11.8887 54.4968 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 66 7 0.1469 26.7339 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 67 § 0.2666 22.3934 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 68 $ -4.2220 23.5638 53.2658 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 69 € 0.1264 28.8433 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 70 / 0.0932 20.9939 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 71 C 0.1082 30.2298 42.6809 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 72 * -0.6691 18.5997 17.5559 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 73 ” -0.8173 22.9416 17.1929 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 74 ? -0.6197 18.7418 42.9260 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 75 { -0.7717 19.6443 54.6733 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 76 } -0.9125 19.6443 54.6733 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 77 , 33.4830 9.9854 18.7998 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 78 I 0.2506 5.7857 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 79 ° -0.4612 12.0301 12.0301 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 80 K 0.5659 28.1765 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 81 H 0.2211 29.5489 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 82 q 10.9783 26.7567 43.0439 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 83 & -0.5813 34.4079 42.9260 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 84 ’ -0.8852 9.7632 17.1929 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 85 [ -0.9629 12.9561 55.1777 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 86 - 22.8041 12.1338 5.1628 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 87 Y 0.2501 32.4239 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 88 Q -0.1041 40.0054 50.6958 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 89 " -0.2569 14.8217 10.9485 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 90 ! -0.7754 8.5779 42.9260 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 91 x 11.7803 29.1853 30.3706 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 92 ) -0.6745 11.8887 54.4968 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 93 = 16.8297 23.7632 13.5993 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 94 + 11.8920 23.5040 23.5040 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 95 X -0.1896 32.3782 42.0000 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 96 » 17.0055 21.2303 15.5254 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 97 ' -0.4246 5.1628 10.9485 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 98 ¢ 7.0963 20.2901 39.0664 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 99 Z 0.4283 26.6523 41.7778 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 100 > 12.1573 20.7117 23.6008 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 101 ® 3.7513 38.2219 38.2219 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 102 © 3.8317 38.2219 38.2219 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 103 ] -1.1123 12.9561 55.1777 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 104 é -3.9581 28.1414 46.1769 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 105 z 11.0994 25.2078 30.3706 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 106 _ 45.8238 30.3706 3.7781 -Trebuchet_MS.ttf 12 1 14.1414 42.0000 107 ¥ 0.3891 32.2017 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 1 t 1.6295 20.0679 39.1479 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 2 h -2.7489 24.5269 43.1853 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 3 a 8.9934 25.7702 31.4731 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 4 n 9.3475 24.5269 31.0515 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 5 P -1.7610 25.2665 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 6 o 8.9426 27.8006 31.4731 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 7 e 9.2292 28.1414 31.4731 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 8 : 9.3726 8.5779 31.4731 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 9 r 9.1250 18.3782 31.0515 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 10 l -2.9888 10.7263 43.6069 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 11 i -1.5898 10.9855 41.8006 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 12 1 -2.0569 14.1414 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 13 | -0.0991 4.8826 48.1487 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 14 N -1.8852 28.7266 42.1994 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 15 f -2.9894 19.9642 43.1853 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 16 g 7.8229 25.2287 44.2292 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 17 d -2.9121 26.6153 43.6069 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 18 W -1.6407 48.0809 42.1994 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 19 s 9.0107 19.7857 31.4731 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 20 c 9.1193 25.2078 31.4731 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 21 u 9.7276 24.9855 30.7922 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 22 3 -1.7773 23.3416 42.4217 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 23 ~ 18.9296 20.6080 6.1487 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 24 # -2.1347 30.9707 42.4217 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 25 O -2.0407 34.4666 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 26 ` -5.5413 10.2447 9.3996 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 27 @ 2.0681 39.0664 41.7999 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 28 F -1.5681 25.7708 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 29 S -1.9494 23.5638 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 30 p 8.9492 26.7339 43.0439 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 31 “ -2.4521 22.5779 17.1929 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 32 % -1.9119 31.3564 42.4217 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 33 £ -2.1035 25.4300 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 34 . 31.9764 8.5779 8.5779 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 35 2 -1.7505 25.3115 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 36 5 -1.9283 23.7625 42.4217 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 37 m 8.8192 41.1197 31.0515 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 38 V -1.5979 32.7998 42.1994 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 39 6 -2.0502 25.7708 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 40 w 9.7752 43.4311 30.7922 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 41 T -1.6574 32.4239 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 42 M -1.9247 41.3412 42.1994 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 43 G -1.8622 32.7998 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 44 b -3.0885 26.7339 43.6069 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 45 9 -2.1544 25.5714 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 46 ; 9.1255 9.9854 41.2734 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 47 D -1.7374 29.3267 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 48 L -1.3150 23.7632 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 49 y 9.7011 29.1853 42.3630 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 50 ‘ -2.5504 9.7632 17.1929 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 51 \ -1.9061 20.5722 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 52 R -1.7210 29.1853 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 53 < 10.0812 20.7117 23.6008 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 54 4 -1.9133 28.0000 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 55 8 -2.2645 25.5714 42.4217 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 56 0 -1.6870 26.8974 42.4217 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 57 A -1.8720 34.1037 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 58 E -1.5015 24.9485 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 59 B -2.1430 26.5555 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 60 v 9.7422 28.3630 30.7922 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 61 k -2.9699 25.9116 43.1853 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 62 J -1.6660 21.5692 42.1994 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 63 U -1.5600 29.2897 42.4587 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 64 j -1.6149 15.1853 53.7930 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 65 ( -2.4018 11.8887 54.4968 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 66 7 -1.8576 26.7339 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 67 § -1.6409 22.3934 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 68 $ -6.3240 23.5638 53.2658 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 69 € -1.7979 28.8433 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 70 / -1.7639 20.9939 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 71 C -1.6789 30.2298 42.6809 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 72 * -2.4940 18.5997 17.5559 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 73 ” -2.7693 22.9416 17.1929 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 74 ? -2.3990 18.7418 42.9260 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 75 { -2.7219 19.6443 54.6733 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 76 } -2.6696 19.6443 54.6733 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 77 , 31.7392 9.9854 18.7998 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 78 I -1.6864 5.7857 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 79 ° -2.7862 12.0301 12.0301 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 80 K -1.7800 28.1765 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 81 H -1.4865 29.5489 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 82 q 9.1146 26.7567 43.0439 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 83 & -2.4969 34.4079 42.9260 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 84 ’ -2.4640 9.7632 17.1929 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 85 [ -3.0174 12.9561 55.1777 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 86 - 21.1920 12.1338 5.1628 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 87 Y -1.3610 32.4239 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 88 Q -2.0234 40.0054 50.6958 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 89 " -2.4220 14.8217 10.9485 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 90 ! -2.5534 8.5779 42.9260 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 91 x 9.7593 29.1853 30.3706 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 92 ) -2.4801 11.8887 54.4968 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 93 = 15.5146 23.7632 13.5993 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 94 + 9.9394 23.5040 23.5040 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 95 X -1.7672 32.3782 42.0000 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 96 » 15.3854 21.2303 15.5254 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 97 ' -2.3234 5.1628 10.9485 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 98 ¢ 5.3865 20.2901 39.0664 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 99 Z -1.5403 26.6523 41.7778 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 100 > 10.2320 20.7117 23.6008 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 101 ® 1.7337 38.2219 38.2219 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 102 © 1.8408 38.2219 38.2219 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 103 ] -3.2378 12.9561 55.1777 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 104 é -5.5192 28.1414 46.1769 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 105 z 9.7780 25.2078 30.3706 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 106 _ 43.9903 30.3706 3.7781 -Trebuchet_MS.ttf 13 | 4.8826 48.1487 107 ¥ -1.7067 32.2017 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 1 t 3.1970 20.0679 39.1479 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 2 h -1.5898 24.5269 43.1853 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 3 a 10.6850 25.7702 31.4731 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 4 n 10.8217 24.5269 31.0515 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 5 P -0.0471 25.2665 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 6 o 10.7579 27.8006 31.4731 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 7 e 10.8353 28.1414 31.4731 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 8 : 10.8938 8.5779 31.4731 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 9 r 10.8710 18.3782 31.0515 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 10 l -1.2612 10.7263 43.6069 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 11 i 0.0483 10.9855 41.8006 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 12 1 -0.2701 14.1414 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 13 | 1.4883 4.8826 48.1487 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 14 N 0.1048 28.7266 42.1994 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 15 f -1.3662 19.9642 43.1853 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 16 g 9.5117 25.2287 44.2292 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 17 d -1.2754 26.6153 43.6069 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 18 W 0.0802 48.0809 42.1994 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 19 s 10.8570 19.7857 31.4731 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 20 c 10.5903 25.2078 31.4731 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 21 u 11.6629 24.9855 30.7922 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 22 3 -0.1078 23.3416 42.4217 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 23 ~ 20.9969 20.6080 6.1487 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 24 # -0.5279 30.9707 42.4217 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 25 O 0.0198 34.4666 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 26 ` -4.1095 10.2447 9.3996 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 27 @ 3.8801 39.0664 41.7999 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 28 F -0.1201 25.7708 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 29 S -0.6470 23.5638 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 30 p 10.7107 26.7339 43.0439 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 31 “ -1.0899 22.5779 17.1929 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 32 % -0.3290 31.3564 42.4217 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 33 £ -0.1899 25.4300 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 34 . 33.4764 8.5779 8.5779 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 35 2 -0.1747 25.3115 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 36 5 -0.0641 23.7625 42.4217 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 37 m 10.7541 41.1197 31.0515 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 38 V 0.0276 32.7998 42.1994 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 39 6 -0.4377 25.7708 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 40 w 11.4039 43.4311 30.7922 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 41 T 0.1907 32.4239 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 42 M 0.2576 41.3412 42.1994 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 43 G -0.1102 32.7998 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 44 b -1.3432 26.7339 43.6069 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 45 9 -0.2103 25.5714 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 46 ; 10.8166 9.9854 41.2734 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 47 D -0.4572 29.3267 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 48 L -0.2356 23.7632 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 49 y 11.4341 29.1853 42.3630 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 50 ‘ -0.7653 9.7632 17.1929 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 51 \ -0.0840 20.5722 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 52 R -0.3144 29.1853 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 53 < 11.4898 20.7117 23.6008 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 54 4 0.0311 28.0000 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 55 8 -0.3201 25.5714 42.4217 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 56 0 -0.3568 26.8974 42.4217 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 57 A -0.4043 34.1037 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 58 E -0.1759 24.9485 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 59 B -0.0714 26.5555 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 60 v 11.3126 28.3630 30.7922 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 61 k -1.2841 25.9116 43.1853 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 62 J -0.3864 21.5692 42.1994 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 63 U -0.2623 29.2897 42.4587 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 64 j -0.4212 15.1853 53.7930 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 65 ( -0.4498 11.8887 54.4968 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 66 7 -0.6431 26.7339 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 67 § -0.4934 22.3934 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 68 $ -4.3701 23.5638 53.2658 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 69 € -0.1704 28.8433 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 70 / -0.2816 20.9939 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 71 C -0.4863 30.2298 42.6809 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 72 * -0.8615 18.5997 17.5559 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 73 ” -1.1949 22.9416 17.1929 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 74 ? -0.8986 18.7418 42.9260 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 75 { -0.6879 19.6443 54.6733 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 76 } -0.6838 19.6443 54.6733 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 77 , 33.4099 9.9854 18.7998 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 78 I 0.0903 5.7857 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 79 ° -0.4553 12.0301 12.0301 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 80 K -0.2016 28.1765 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 81 H -0.0506 29.5489 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 82 q 10.9563 26.7567 43.0439 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 83 & -0.5250 34.4079 42.9260 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 84 ’ -0.9122 9.7632 17.1929 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 85 [ -1.4536 12.9561 55.1777 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 86 - 22.9179 12.1338 5.1628 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 87 Y 0.0802 32.4239 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 88 Q -0.1521 40.0054 50.6958 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 89 " -0.6358 14.8217 10.9485 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 90 ! -0.7980 8.5779 42.9260 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 91 x 11.1928 29.1853 30.3706 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 92 ) -0.8278 11.8887 54.4968 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 93 = 16.8384 23.7632 13.5993 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 94 + 11.6990 23.5040 23.5040 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 95 X -0.1358 32.3782 42.0000 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 96 » 17.1537 21.2303 15.5254 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 97 ' -0.8097 5.1628 10.9485 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 98 ¢ 7.1054 20.2901 39.0664 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 99 Z 0.0374 26.6523 41.7778 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 100 > 11.7179 20.7117 23.6008 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 101 ® 3.5232 38.2219 38.2219 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 102 © 3.4108 38.2219 38.2219 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 103 ] -1.3881 12.9561 55.1777 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 104 é -3.8883 28.1414 46.1769 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 105 z 11.7122 25.2078 30.3706 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 106 _ 45.4887 30.3706 3.7781 -Trebuchet_MS.ttf 14 N 28.7266 42.1994 107 ¥ 0.1658 32.2017 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 1 t 4.2500 20.0679 39.1479 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 2 h 0.0602 24.5269 43.1853 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 3 a 11.9546 25.7702 31.4731 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 4 n 12.1349 24.5269 31.0515 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 5 P 1.1824 25.2665 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 6 o 11.8503 27.8006 31.4731 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 7 e 12.0478 28.1414 31.4731 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 8 : 12.0711 8.5779 31.4731 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 9 r 12.4475 18.3782 31.0515 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 10 l 0.0210 10.7263 43.6069 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 11 i 1.4308 10.9855 41.8006 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 12 1 0.9913 14.1414 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 13 | 3.1756 4.8826 48.1487 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 14 N 1.3865 28.7266 42.1994 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 15 f -0.1230 19.9642 43.1853 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 16 g 10.9471 25.2287 44.2292 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 17 d 0.0621 26.6153 43.6069 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 18 W 1.3955 48.0809 42.1994 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 19 s 12.1007 19.7857 31.4731 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 20 c 12.3130 25.2078 31.4731 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 21 u 12.9084 24.9855 30.7922 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 22 3 1.2405 23.3416 42.4217 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 23 ~ 22.0303 20.6080 6.1487 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 24 # 0.9364 30.9707 42.4217 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 25 O 1.0565 34.4666 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 26 ` -2.6527 10.2447 9.3996 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 27 @ 4.9767 39.0664 41.7999 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 28 F 1.2834 25.7708 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 29 S 1.2581 23.5638 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 30 p 12.0819 26.7339 43.0439 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 31 “ 0.5994 22.5779 17.1929 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 32 % 1.0975 31.3564 42.4217 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 33 £ 1.0758 25.4300 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 34 . 34.9147 8.5779 8.5779 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 35 2 1.2522 25.3115 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 36 5 1.3166 23.7625 42.4217 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 37 m 11.8940 41.1197 31.0515 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 38 V 1.2475 32.7998 42.1994 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 39 6 1.0191 25.7708 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 40 w 12.5995 43.4311 30.7922 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 41 T 1.4787 32.4239 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 42 M 1.6016 41.3412 42.1994 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 43 G 1.0320 32.7998 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 44 b -0.0251 26.7339 43.6069 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 45 9 1.2382 25.5714 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 46 ; 12.0616 9.9854 41.2734 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 47 D 1.1453 29.3267 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 48 L 1.4546 23.7632 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 49 y 12.8978 29.1853 42.3630 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 50 ‘ 0.5813 9.7632 17.1929 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 51 \ 1.2001 20.5722 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 52 R 1.0368 29.1853 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 53 < 13.2734 20.7117 23.6008 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 54 4 1.3032 28.0000 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 55 8 1.2804 25.5714 42.4217 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 56 0 0.9749 26.8974 42.4217 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 57 A 1.2756 34.1037 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 58 E 1.7069 24.9485 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 59 B 1.3627 26.5555 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 60 v 12.7196 28.3630 30.7922 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 61 k 0.0736 25.9116 43.1853 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 62 J 1.4742 21.5692 42.1994 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 63 U 1.6060 29.2897 42.4587 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 64 j 1.3896 15.1853 53.7930 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 65 ( 0.5953 11.8887 54.4968 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 66 7 1.4000 26.7339 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 67 § 1.1806 22.3934 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 68 $ -3.0130 23.5638 53.2658 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 69 € 1.2190 28.8433 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 70 / 1.1885 20.9939 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 71 C 1.4813 30.2298 42.6809 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 72 * 0.7085 18.5997 17.5559 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 73 ” 0.6226 22.9416 17.1929 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 74 ? 0.6466 18.7418 42.9260 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 75 { 0.3729 19.6443 54.6733 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 76 } 0.4275 19.6443 54.6733 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 77 , 34.6353 9.9854 18.7998 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 78 I 1.1912 5.7857 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 79 ° 0.6102 12.0301 12.0301 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 80 K 1.5631 28.1765 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 81 H 1.4075 29.5489 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 82 q 12.1327 26.7567 43.0439 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 83 & 0.7179 34.4079 42.9260 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 84 ’ 0.3929 9.7632 17.1929 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 85 [ -0.0006 12.9561 55.1777 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 86 - 24.1955 12.1338 5.1628 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 87 Y 1.2976 32.4239 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 88 Q 1.1674 40.0054 50.6958 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 89 " 0.8568 14.8217 10.9485 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 90 ! 0.6022 8.5779 42.9260 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 91 x 12.9612 29.1853 30.3706 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 92 ) 0.4125 11.8887 54.4968 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 93 = 18.2937 23.7632 13.5993 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 94 + 13.0946 23.5040 23.5040 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 95 X 1.0213 32.3782 42.0000 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 96 » 18.4367 21.2303 15.5254 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 97 ' 0.7683 5.1628 10.9485 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 98 ¢ 8.2049 20.2901 39.0664 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 99 Z 1.2801 26.6523 41.7778 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 100 > 13.4914 20.7117 23.6008 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 101 ® 4.9634 38.2219 38.2219 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 102 © 4.9797 38.2219 38.2219 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 103 ] -0.1308 12.9561 55.1777 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 104 é -2.4869 28.1414 46.1769 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 105 z 12.9102 25.2078 30.3706 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 106 _ 46.9645 30.3706 3.7781 -Trebuchet_MS.ttf 15 f 19.9642 43.1853 107 ¥ 1.5968 32.2017 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 1 t -6.6136 20.0679 39.1479 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 2 h -10.7497 24.5269 43.1853 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 3 a 1.0554 25.7702 31.4731 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 4 n 1.0465 24.5269 31.0515 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 5 P -9.8873 25.2665 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 6 o 1.1276 27.8006 31.4731 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 7 e 1.3199 28.1414 31.4731 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 8 : 1.4580 8.5779 31.4731 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 9 r 1.1892 18.3782 31.0515 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 10 l -11.1608 10.7263 43.6069 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 11 i -9.5671 10.9855 41.8006 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 12 1 -9.9015 14.1414 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 13 | -7.8912 4.8826 48.1487 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 14 N -9.5898 28.7266 42.1994 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 15 f -10.8585 19.9642 43.1853 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 16 g 0.0347 25.2287 44.2292 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 17 d -10.8967 26.6153 43.6069 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 18 W -9.5814 48.0809 42.1994 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 19 s 1.2358 19.7857 31.4731 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 20 c 1.0281 25.2078 31.4731 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 21 u 2.1347 24.9855 30.7922 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 22 3 -9.6790 23.3416 42.4217 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 23 ~ 11.2822 20.6080 6.1487 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 24 # -9.8891 30.9707 42.4217 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 25 O -9.7894 34.4666 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 26 ` -13.3538 10.2447 9.3996 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 27 @ -6.0788 39.0664 41.7999 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 28 F -9.7264 25.7708 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 29 S -9.7161 23.5638 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 30 p 1.2843 26.7339 43.0439 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 31 “ -10.4913 22.5779 17.1929 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 32 % -10.2245 31.3564 42.4217 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 33 £ -9.9334 25.4300 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 34 . 23.9517 8.5779 8.5779 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 35 2 -9.4047 25.3115 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 36 5 -10.0400 23.7625 42.4217 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 37 m 1.3899 41.1197 31.0515 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 38 V -9.5798 32.7998 42.1994 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 39 6 -9.8064 25.7708 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 40 w 2.1299 43.4311 30.7922 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 41 T -9.4891 32.4239 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 42 M -9.6462 41.3412 42.1994 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 43 G -9.6239 32.7998 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 44 b -10.9239 26.7339 43.6069 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 45 9 -9.8268 25.5714 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 46 ; 1.3123 9.9854 41.2734 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 47 D -9.8111 29.3267 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 48 L -9.5050 23.7632 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 49 y 1.7090 29.1853 42.3630 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 50 ‘ -10.6118 9.7632 17.1929 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 51 \ -9.8942 20.5722 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 52 R -9.8463 29.1853 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 53 < 2.1125 20.7117 23.6008 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 54 4 -9.9414 28.0000 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 55 8 -9.9678 25.5714 42.4217 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 56 0 -9.6718 26.8974 42.4217 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 57 A -9.7561 34.1037 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 58 E -9.5976 24.9485 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 59 B -9.6881 26.5555 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 60 v 1.6465 28.3630 30.7922 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 61 k -10.9380 25.9116 43.1853 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 62 J -9.5530 21.5692 42.1994 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 63 U -9.4100 29.2897 42.4587 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 64 j -9.7238 15.1853 53.7930 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 65 ( -10.0982 11.8887 54.4968 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 66 7 -9.4596 26.7339 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 67 § -9.8270 22.3934 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 68 $ -14.0317 23.5638 53.2658 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 69 € -9.4979 28.8433 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 70 / -10.1036 20.9939 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 71 C -9.7022 30.2298 42.6809 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 72 * -10.3607 18.5997 17.5559 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 73 ” -10.3571 22.9416 17.1929 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 74 ? -9.9466 18.7418 42.9260 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 75 { -10.2445 19.6443 54.6733 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 76 } -10.6281 19.6443 54.6733 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 77 , 23.5775 9.9854 18.7998 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 78 I -9.5536 5.7857 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 79 ° -10.3593 12.0301 12.0301 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 80 K -9.5467 28.1765 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 81 H -9.3480 29.5489 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 82 q 1.2868 26.7567 43.0439 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 83 & -10.2044 34.4079 42.9260 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 84 ’ -10.3661 9.7632 17.1929 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 85 [ -10.9970 12.9561 55.1777 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 86 - 12.7511 12.1338 5.1628 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 87 Y -9.5262 32.4239 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 88 Q -9.6199 40.0054 50.6958 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 89 " -10.2157 14.8217 10.9485 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 90 ! -10.2869 8.5779 42.9260 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 91 x 1.7769 29.1853 30.3706 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 92 ) -10.2930 11.8887 54.4968 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 93 = 7.4112 23.7632 13.5993 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 94 + 2.4335 23.5040 23.5040 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 95 X -9.5678 32.3782 42.0000 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 96 » 7.5046 21.2303 15.5254 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 97 ' -10.3992 5.1628 10.9485 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 98 ¢ -2.8236 20.2901 39.0664 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 99 Z -9.6832 26.6523 41.7778 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 100 > 2.5887 20.7117 23.6008 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 101 ® -5.9617 38.2219 38.2219 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 102 © -6.3332 38.2219 38.2219 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 103 ] -10.7069 12.9561 55.1777 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 104 é -13.4903 28.1414 46.1769 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 105 z 2.0549 25.2078 30.3706 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 106 _ 36.2136 30.3706 3.7781 -Trebuchet_MS.ttf 16 g 25.2287 44.2292 107 ¥ -9.5145 32.2017 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 1 t 4.3331 20.0679 39.1479 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 2 h 0.1059 24.5269 43.1853 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 3 a 11.8228 25.7702 31.4731 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 4 n 12.0744 24.5269 31.0515 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 5 P 1.1820 25.2665 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 6 o 12.1495 27.8006 31.4731 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 7 e 12.1439 28.1414 31.4731 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 8 : 11.9657 8.5779 31.4731 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 9 r 12.0064 18.3782 31.0515 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 10 l -0.1008 10.7263 43.6069 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 11 i 1.3967 10.9855 41.8006 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 12 1 1.2594 14.1414 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 13 | 2.6673 4.8826 48.1487 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 14 N 1.5558 28.7266 42.1994 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 15 f -0.1015 19.9642 43.1853 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 16 g 11.0077 25.2287 44.2292 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 17 d -0.3564 26.6153 43.6069 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 18 W 1.3292 48.0809 42.1994 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 19 s 12.2208 19.7857 31.4731 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 20 c 11.7909 25.2078 31.4731 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 21 u 12.8939 24.9855 30.7922 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 22 3 1.1064 23.3416 42.4217 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 23 ~ 21.7580 20.6080 6.1487 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 24 # 1.0061 30.9707 42.4217 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 25 O 1.2742 34.4666 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 26 ` -2.2706 10.2447 9.3996 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 27 @ 5.0327 39.0664 41.7999 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 28 F 1.5823 25.7708 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 29 S 1.1618 23.5638 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 30 p 11.9891 26.7339 43.0439 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 31 “ 0.3023 22.5779 17.1929 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 32 % 1.3467 31.3564 42.4217 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 33 £ 1.2277 25.4300 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 34 . 35.0675 8.5779 8.5779 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 35 2 1.0902 25.3115 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 36 5 1.2048 23.7625 42.4217 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 37 m 12.2063 41.1197 31.0515 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 38 V 1.4775 32.7998 42.1994 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 39 6 1.2006 25.7708 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 40 w 12.8147 43.4311 30.7922 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 41 T 1.5425 32.4239 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 42 M 1.3219 41.3412 42.1994 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 43 G 1.3349 32.7998 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 44 b 0.0500 26.7339 43.6069 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 45 9 1.1499 25.5714 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 46 ; 11.9978 9.9854 41.2734 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 47 D 1.0936 29.3267 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 48 L 1.1692 23.7632 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 49 y 12.8740 29.1853 42.3630 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 50 ‘ 0.0585 9.7632 17.1929 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 51 \ 0.9933 20.5722 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 52 R 1.3936 29.1853 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 53 < 12.9701 20.7117 23.6008 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 54 4 0.8534 28.0000 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 55 8 1.3145 25.5714 42.4217 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 56 0 0.8968 26.8974 42.4217 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 57 A 1.0162 34.1037 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 58 E 1.2933 24.9485 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 59 B 1.2154 26.5555 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 60 v 12.6228 28.3630 30.7922 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 61 k -0.0951 25.9116 43.1853 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 62 J 1.4445 21.5692 42.1994 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 63 U 1.3563 29.2897 42.4587 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 64 j 1.1041 15.1853 53.7930 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 65 ( 0.9388 11.8887 54.4968 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 66 7 1.4375 26.7339 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 67 § 0.8898 22.3934 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 68 $ -3.0102 23.5638 53.2658 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 69 € 1.2992 28.8433 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 70 / 1.2196 20.9939 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 71 C 1.2862 30.2298 42.6809 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 72 * 0.6560 18.5997 17.5559 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 73 ” 0.4626 22.9416 17.1929 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 74 ? 0.4839 18.7418 42.9260 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 75 { 0.4910 19.6443 54.6733 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 76 } 0.1423 19.6443 54.6733 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 77 , 34.5065 9.9854 18.7998 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 78 I 1.2709 5.7857 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 79 ° 0.6435 12.0301 12.0301 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 80 K 1.5005 28.1765 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 81 H 1.4388 29.5489 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 82 q 12.1029 26.7567 43.0439 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 83 & 0.6511 34.4079 42.9260 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 84 ’ 0.4174 9.7632 17.1929 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 85 [ 0.2845 12.9561 55.1777 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 86 - 23.8178 12.1338 5.1628 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 87 Y 1.6148 32.4239 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 88 Q 1.2785 40.0054 50.6958 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 89 " 0.7618 14.8217 10.9485 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 90 ! 0.5371 8.5779 42.9260 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 91 x 12.6888 29.1853 30.3706 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 92 ) 0.4201 11.8887 54.4968 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 93 = 18.2565 23.7632 13.5993 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 94 + 13.1001 23.5040 23.5040 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 95 X 1.2361 32.3782 42.0000 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 96 » 18.5924 21.2303 15.5254 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 97 ' 0.6856 5.1628 10.9485 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 98 ¢ 8.4342 20.2901 39.0664 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 99 Z 1.4114 26.6523 41.7778 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 100 > 13.2734 20.7117 23.6008 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 101 ® 4.7101 38.2219 38.2219 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 102 © 4.8212 38.2219 38.2219 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 103 ] 0.0490 12.9561 55.1777 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 104 é -2.4960 28.1414 46.1769 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 105 z 12.8680 25.2078 30.3706 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 106 _ 46.8615 30.3706 3.7781 -Trebuchet_MS.ttf 17 d 26.6153 43.6069 107 ¥ 1.2700 32.2017 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 1 t 3.0942 20.0679 39.1479 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 2 h -1.3243 24.5269 43.1853 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 3 a 10.8275 25.7702 31.4731 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 4 n 10.6128 24.5269 31.0515 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 5 P -0.3858 25.2665 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 6 o 10.6247 27.8006 31.4731 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 7 e 10.6586 28.1414 31.4731 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 8 : 10.8862 8.5779 31.4731 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 9 r 10.5728 18.3782 31.0515 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 10 l -1.4211 10.7263 43.6069 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 11 i -0.0127 10.9855 41.8006 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 12 1 -0.0901 14.1414 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 13 | 1.6232 4.8826 48.1487 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 14 N -0.3290 28.7266 42.1994 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 15 f -1.7127 19.9642 43.1853 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 16 g 9.3534 25.2287 44.2292 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 17 d -1.4165 26.6153 43.6069 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 18 W 0.3870 48.0809 42.1994 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 19 s 10.5887 19.7857 31.4731 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 20 c 11.0676 25.2078 31.4731 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 21 u 11.2261 24.9855 30.7922 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 22 3 -0.3116 23.3416 42.4217 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 23 ~ 20.5012 20.6080 6.1487 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 24 # 0.1525 30.9707 42.4217 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 25 O -0.1059 34.4666 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 26 ` -4.3956 10.2447 9.3996 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 27 @ 3.7218 39.0664 41.7999 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 28 F 0.1912 25.7708 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 29 S 0.0872 23.5638 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 30 p 10.8485 26.7339 43.0439 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 31 “ -0.6075 22.5779 17.1929 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 32 % 0.0111 31.3564 42.4217 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 33 £ 0.0006 25.4300 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 34 . 33.6112 8.5779 8.5779 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 35 2 -0.1541 25.3115 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 36 5 -0.3111 23.7625 42.4217 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 37 m 10.6207 41.1197 31.0515 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 38 V 0.2371 32.7998 42.1994 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 39 6 -0.1517 25.7708 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 40 w 11.2794 43.4311 30.7922 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 41 T 0.0853 32.4239 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 42 M -0.1479 41.3412 42.1994 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 43 G -0.2520 32.7998 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 44 b -1.1256 26.7339 43.6069 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 45 9 -0.0121 25.5714 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 46 ; 10.7578 9.9854 41.2734 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 47 D -0.0724 29.3267 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 48 L -0.0123 23.7632 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 49 y 11.5763 29.1853 42.3630 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 50 ‘ -1.5003 9.7632 17.1929 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 51 \ -0.1733 20.5722 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 52 R -0.1792 29.1853 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 53 < 11.8454 20.7117 23.6008 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 54 4 -0.2952 28.0000 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 55 8 0.1301 25.5714 42.4217 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 56 0 -0.0930 26.8974 42.4217 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 57 A -0.3680 34.1037 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 58 E 0.0722 24.9485 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 59 B -0.2733 26.5555 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 60 v 11.6071 28.3630 30.7922 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 61 k -1.3132 25.9116 43.1853 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 62 J -0.1123 21.5692 42.1994 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 63 U 0.0903 29.2897 42.4587 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 64 j 0.0171 15.1853 53.7930 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 65 ( -0.8365 11.8887 54.4968 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 66 7 -0.0752 26.7339 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 67 § -0.4737 22.3934 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 68 $ -4.6485 23.5638 53.2658 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 69 € -0.2755 28.8433 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 70 / -0.2055 20.9939 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 71 C -0.0531 30.2298 42.6809 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 72 * -0.6645 18.5997 17.5559 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 73 ” -0.8919 22.9416 17.1929 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 74 ? -1.0586 18.7418 42.9260 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 75 { -1.1487 19.6443 54.6733 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 76 } -0.7002 19.6443 54.6733 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 77 , 33.0844 9.9854 18.7998 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 78 I 0.1186 5.7857 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 79 ° -0.6796 12.0301 12.0301 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 80 K -0.0195 28.1765 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 81 H 0.2102 29.5489 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 82 q 10.9036 26.7567 43.0439 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 83 & -0.6385 34.4079 42.9260 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 84 ’ -0.7253 9.7632 17.1929 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 85 [ -1.2295 12.9561 55.1777 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 86 - 22.8076 12.1338 5.1628 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 87 Y -0.2123 32.4239 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 88 Q -0.4262 40.0054 50.6958 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 89 " -0.8372 14.8217 10.9485 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 90 ! -1.0644 8.5779 42.9260 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 91 x 11.3298 29.1853 30.3706 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 92 ) -0.6355 11.8887 54.4968 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 93 = 17.0154 23.7632 13.5993 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 94 + 12.0249 23.5040 23.5040 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 95 X 0.0268 32.3782 42.0000 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 96 » 16.8754 21.2303 15.5254 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 97 ' -0.6055 5.1628 10.9485 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 98 ¢ 7.2682 20.2901 39.0664 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 99 Z -0.0320 26.6523 41.7778 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 100 > 12.1562 20.7117 23.6008 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 101 ® 3.4756 38.2219 38.2219 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 102 © 3.3872 38.2219 38.2219 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 103 ] -1.6324 12.9561 55.1777 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 104 é -3.9301 28.1414 46.1769 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 105 z 11.6539 25.2078 30.3706 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 106 _ 45.3712 30.3706 3.7781 -Trebuchet_MS.ttf 18 W 48.0809 42.1994 107 ¥ -0.0547 32.2017 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 1 t -7.6849 20.0679 39.1479 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 2 h -12.2554 24.5269 43.1853 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 3 a 0.0831 25.7702 31.4731 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 4 n -0.2461 24.5269 31.0515 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 5 P -10.7414 25.2665 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 6 o 0.0119 27.8006 31.4731 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 7 e -0.2249 28.1414 31.4731 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 8 : 0.1200 8.5779 31.4731 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 9 r 0.0681 18.3782 31.0515 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 10 l -12.1276 10.7263 43.6069 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 11 i -10.8812 10.9855 41.8006 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 12 1 -10.9231 14.1414 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 13 | -9.3744 4.8826 48.1487 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 14 N -10.9795 28.7266 42.1994 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 15 f -12.2745 19.9642 43.1853 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 16 g -1.4284 25.2287 44.2292 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 17 d -12.0791 26.6153 43.6069 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 18 W -10.9069 48.0809 42.1994 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 19 s -0.1299 19.7857 31.4731 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 20 c 0.1731 25.2078 31.4731 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 21 u 0.9419 24.9855 30.7922 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 22 3 -11.0697 23.3416 42.4217 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 23 ~ 10.1871 20.6080 6.1487 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 24 # -11.2917 30.9707 42.4217 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 25 O -10.6478 34.4666 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 26 ` -14.9174 10.2447 9.3996 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 27 @ -7.1291 39.0664 41.7999 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 28 F -10.6399 25.7708 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 29 S -10.8063 23.5638 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 30 p 0.0815 26.7339 43.0439 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 31 “ -11.6299 22.5779 17.1929 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 32 % -10.9441 31.3564 42.4217 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 33 £ -10.8183 25.4300 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 34 . 23.0338 8.5779 8.5779 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 35 2 -11.0853 25.3115 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 36 5 -10.8876 23.7625 42.4217 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 37 m 0.0831 41.1197 31.0515 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 38 V -10.7529 32.7998 42.1994 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 39 6 -10.9594 25.7708 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 40 w 0.6848 43.4311 30.7922 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 41 T -10.8214 32.4239 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 42 M -10.8300 41.3412 42.1994 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 43 G -11.0043 32.7998 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 44 b -12.0173 26.7339 43.6069 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 45 9 -10.8654 25.5714 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 46 ; 0.0769 9.9854 41.2734 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 47 D -10.8866 29.3267 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 48 L -10.5942 23.7632 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 49 y 0.9389 29.1853 42.3630 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 50 ‘ -11.5801 9.7632 17.1929 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 51 \ -10.9895 20.5722 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 52 R -10.9610 29.1853 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 53 < 1.2481 20.7117 23.6008 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 54 4 -10.8226 28.0000 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 55 8 -10.8524 25.5714 42.4217 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 56 0 -11.0981 26.8974 42.4217 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 57 A -10.7704 34.1037 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 58 E -10.7263 24.9485 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 59 B -10.7185 26.5555 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 60 v 0.7797 28.3630 30.7922 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 61 k -11.9797 25.9116 43.1853 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 62 J -10.5663 21.5692 42.1994 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 63 U -10.8108 29.2897 42.4587 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 64 j -10.8779 15.1853 53.7930 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 65 ( -11.4871 11.8887 54.4968 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 66 7 -10.9220 26.7339 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 67 § -11.2097 22.3934 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 68 $ -15.0105 23.5638 53.2658 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 69 € -10.7458 28.8433 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 70 / -10.8254 20.9939 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 71 C -11.0954 30.2298 42.6809 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 72 * -11.5298 18.5997 17.5559 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 73 ” -11.6726 22.9416 17.1929 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 74 ? -11.2900 18.7418 42.9260 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 75 { -11.8725 19.6443 54.6733 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 76 } -11.7833 19.6443 54.6733 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 77 , 22.6571 9.9854 18.7998 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 78 I -10.4596 5.7857 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 79 ° -11.5197 12.0301 12.0301 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 80 K -10.7234 28.1765 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 81 H -10.4194 29.5489 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 82 q 0.2768 26.7567 43.0439 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 83 & -11.5095 34.4079 42.9260 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 84 ’ -11.6175 9.7632 17.1929 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 85 [ -11.9618 12.9561 55.1777 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 86 - 11.7061 12.1338 5.1628 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 87 Y -10.9224 32.4239 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 88 Q -10.7652 40.0054 50.6958 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 89 " -11.3965 14.8217 10.9485 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 90 ! -11.2068 8.5779 42.9260 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 91 x 0.6809 29.1853 30.3706 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 92 ) -11.3963 11.8887 54.4968 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 93 = 6.0002 23.7632 13.5993 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 94 + 1.1021 23.5040 23.5040 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 95 X -11.1205 32.3782 42.0000 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 96 » 6.5543 21.2303 15.5254 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 97 ' -11.4768 5.1628 10.9485 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 98 ¢ -3.8553 20.2901 39.0664 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 99 Z -10.8152 26.6523 41.7778 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 100 > 1.1617 20.7117 23.6008 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 101 ® -7.1882 38.2219 38.2219 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 102 © -7.2003 38.2219 38.2219 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 103 ] -12.3562 12.9561 55.1777 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 104 é -15.0104 28.1414 46.1769 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 105 z 0.7122 25.2078 30.3706 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 106 _ 35.0088 30.3706 3.7781 -Trebuchet_MS.ttf 19 s 19.7857 31.4731 107 ¥ -10.4843 32.2017 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 1 t -7.6642 20.0679 39.1479 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 2 h -11.8734 24.5269 43.1853 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 3 a -0.0562 25.7702 31.4731 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 4 n -0.0973 24.5269 31.0515 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 5 P -11.0940 25.2665 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 6 o 0.1216 27.8006 31.4731 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 7 e -0.2345 28.1414 31.4731 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 8 : 0.0298 8.5779 31.4731 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 9 r -0.0239 18.3782 31.0515 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 10 l -12.2712 10.7263 43.6069 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 11 i -10.6148 10.9855 41.8006 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 12 1 -10.6348 14.1414 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 13 | -9.1880 4.8826 48.1487 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 14 N -10.9796 28.7266 42.1994 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 15 f -12.2045 19.9642 43.1853 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 16 g -1.3674 25.2287 44.2292 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 17 d -12.4774 26.6153 43.6069 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 18 W -10.6284 48.0809 42.1994 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 19 s 0.1597 19.7857 31.4731 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 20 c -0.1630 25.2078 31.4731 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 21 u 0.4435 24.9855 30.7922 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 22 3 -11.0402 23.3416 42.4217 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 23 ~ 9.7416 20.6080 6.1487 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 24 # -10.8654 30.9707 42.4217 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 25 O -10.9952 34.4666 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 26 ` -14.6486 10.2447 9.3996 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 27 @ -6.9162 39.0664 41.7999 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 28 F -10.6196 25.7708 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 29 S -10.7983 23.5638 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 30 p -0.2191 26.7339 43.0439 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 31 “ -11.8000 22.5779 17.1929 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 32 % -10.8342 31.3564 42.4217 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 33 £ -10.7634 25.4300 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 34 . 23.0215 8.5779 8.5779 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 35 2 -10.8889 25.3115 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 36 5 -10.8778 23.7625 42.4217 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 37 m 0.0751 41.1197 31.0515 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 38 V -10.6657 32.7998 42.1994 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 39 6 -10.9874 25.7708 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 40 w 0.8453 43.4311 30.7922 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 41 T -10.5691 32.4239 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 42 M -10.8300 41.3412 42.1994 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 43 G -11.0222 32.7998 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 44 b -12.0318 26.7339 43.6069 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 45 9 -11.0254 25.5714 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 46 ; -0.1255 9.9854 41.2734 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 47 D -11.2000 29.3267 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 48 L -10.7942 23.7632 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 49 y 0.5460 29.1853 42.3630 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 50 ‘ -11.7125 9.7632 17.1929 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 51 \ -10.9822 20.5722 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 52 R -11.0260 29.1853 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 53 < 1.3340 20.7117 23.6008 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 54 4 -11.0845 28.0000 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 55 8 -10.8878 25.5714 42.4217 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 56 0 -11.0479 26.8974 42.4217 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 57 A -11.0890 34.1037 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 58 E -10.6893 24.9485 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 59 B -11.0968 26.5555 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 60 v 0.7202 28.3630 30.7922 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 61 k -12.3980 25.9116 43.1853 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 62 J -10.9454 21.5692 42.1994 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 63 U -10.6741 29.2897 42.4587 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 64 j -10.6688 15.1853 53.7930 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 65 ( -11.3172 11.8887 54.4968 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 66 7 -10.8226 26.7339 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 67 § -10.8028 22.3934 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 68 $ -15.0325 23.5638 53.2658 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 69 € -10.9304 28.8433 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 70 / -10.5500 20.9939 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 71 C -10.7584 30.2298 42.6809 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 72 * -11.5331 18.5997 17.5559 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 73 ” -11.8590 22.9416 17.1929 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 74 ? -11.1136 18.7418 42.9260 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 75 { -11.6107 19.6443 54.6733 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 76 } -11.5720 19.6443 54.6733 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 77 , 22.5567 9.9854 18.7998 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 78 I -10.8576 5.7857 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 79 ° -11.3673 12.0301 12.0301 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 80 K -10.4974 28.1765 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 81 H -10.4822 29.5489 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 82 q 0.1860 26.7567 43.0439 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 83 & -11.3136 34.4079 42.9260 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 84 ’ -11.5476 9.7632 17.1929 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 85 [ -12.2016 12.9561 55.1777 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 86 - 11.9416 12.1338 5.1628 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 87 Y -11.0179 32.4239 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 88 Q -10.9758 40.0054 50.6958 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 89 " -11.5541 14.8217 10.9485 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 90 ! -11.4264 8.5779 42.9260 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 91 x 0.5245 29.1853 30.3706 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 92 ) -11.1844 11.8887 54.4968 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 93 = 5.9984 23.7632 13.5993 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 94 + 0.8599 23.5040 23.5040 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 95 X -10.9734 32.3782 42.0000 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 96 » 6.3596 21.2303 15.5254 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 97 ' -11.2996 5.1628 10.9485 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 98 ¢ -3.7433 20.2901 39.0664 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 99 Z -10.7263 26.6523 41.7778 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 100 > 1.3013 20.7117 23.6008 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 101 ® -7.2655 38.2219 38.2219 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 102 © -7.3098 38.2219 38.2219 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 103 ] -12.2687 12.9561 55.1777 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 104 é -14.7408 28.1414 46.1769 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 105 z 0.6757 25.2078 30.3706 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 106 _ 34.9391 30.3706 3.7781 -Trebuchet_MS.ttf 20 c 25.2078 31.4731 107 ¥ -10.5460 32.2017 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 1 t -8.2829 20.0679 39.1479 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 2 h -12.8133 24.5269 43.1853 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 3 a -0.9639 25.7702 31.4731 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 4 n -1.1450 24.5269 31.0515 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 5 P -11.6309 25.2665 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 6 o -0.7476 27.8006 31.4731 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 7 e -0.7760 28.1414 31.4731 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 8 : -0.9331 8.5779 31.4731 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 9 r -0.5535 18.3782 31.0515 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 10 l -12.7030 10.7263 43.6069 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 11 i -11.1735 10.9855 41.8006 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 12 1 -11.5525 14.1414 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 13 | -9.6918 4.8826 48.1487 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 14 N -11.4025 28.7266 42.1994 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 15 f -12.8744 19.9642 43.1853 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 16 g -1.8768 25.2287 44.2292 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 17 d -12.6946 26.6153 43.6069 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 18 W -11.4874 48.0809 42.1994 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 19 s -0.5237 19.7857 31.4731 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 20 c -0.5744 25.2078 31.4731 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 21 u -0.0251 24.9855 30.7922 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 22 3 -11.6813 23.3416 42.4217 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 23 ~ 9.6028 20.6080 6.1487 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 24 # -11.5903 30.9707 42.4217 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 25 O -11.6726 34.4666 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 26 ` -15.5788 10.2447 9.3996 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 27 @ -7.7313 39.0664 41.7999 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 28 F -11.3804 25.7708 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 29 S -11.8765 23.5638 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 30 p -0.6557 26.7339 43.0439 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 31 “ -12.3166 22.5779 17.1929 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 32 % -11.7644 31.3564 42.4217 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 33 £ -11.6192 25.4300 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 34 . 22.3532 8.5779 8.5779 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 35 2 -11.7601 25.3115 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 36 5 -11.2633 23.7625 42.4217 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 37 m -0.6262 41.1197 31.0515 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 38 V -11.5103 32.7998 42.1994 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 39 6 -11.4970 25.7708 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 40 w 0.1567 43.4311 30.7922 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 41 T -11.3905 32.4239 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 42 M -11.6434 41.3412 42.1994 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 43 G -11.6693 32.7998 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 44 b -12.9733 26.7339 43.6069 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 45 9 -11.5776 25.5714 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 46 ; -0.5978 9.9854 41.2734 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 47 D -11.6131 29.3267 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 48 L -11.3361 23.7632 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 49 y -0.0101 29.1853 42.3630 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 50 ‘ -12.3745 9.7632 17.1929 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 51 \ -11.6813 20.5722 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 52 R -11.6824 29.1853 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 53 < 0.2867 20.7117 23.6008 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 54 4 -11.6428 28.0000 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 55 8 -11.6175 25.5714 42.4217 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 56 0 -11.6737 26.8974 42.4217 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 57 A -11.7644 34.1037 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 58 E -11.2831 24.9485 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 59 B -11.7035 26.5555 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 60 v -0.1498 28.3630 30.7922 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 61 k -12.8709 25.9116 43.1853 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 62 J -11.5256 21.5692 42.1994 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 63 U -11.5020 29.2897 42.4587 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 64 j -11.3926 15.1853 53.7930 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 65 ( -12.3078 11.8887 54.4968 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 66 7 -11.8082 26.7339 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 67 § -11.2419 22.3934 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 68 $ -15.7012 23.5638 53.2658 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 69 € -11.4455 28.8433 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 70 / -11.5570 20.9939 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 71 C -11.8348 30.2298 42.6809 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 72 * -12.2328 18.5997 17.5559 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 73 ” -12.2379 22.9416 17.1929 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 74 ? -11.7993 18.7418 42.9260 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 75 { -12.0024 19.6443 54.6733 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 76 } -12.2571 19.6443 54.6733 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 77 , 21.5717 9.9854 18.7998 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 78 I -11.3244 5.7857 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 79 ° -12.0015 12.0301 12.0301 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 80 K -11.6561 28.1765 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 81 H -11.8251 29.5489 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 82 q -0.5768 26.7567 43.0439 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 83 & -12.3515 34.4079 42.9260 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 84 ’ -12.3849 9.7632 17.1929 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 85 [ -13.0454 12.9561 55.1777 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 86 - 11.1171 12.1338 5.1628 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 87 Y -11.2092 32.4239 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 88 Q -11.4008 40.0054 50.6958 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 89 " -12.0772 14.8217 10.9485 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 90 ! -12.0529 8.5779 42.9260 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 91 x 0.0769 29.1853 30.3706 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 92 ) -12.0536 11.8887 54.4968 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 93 = 5.7028 23.7632 13.5993 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 94 + 0.1214 23.5040 23.5040 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 95 X -11.5122 32.3782 42.0000 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 96 » 5.8627 21.2303 15.5254 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 97 ' -12.2331 5.1628 10.9485 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 98 ¢ -4.4960 20.2901 39.0664 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 99 Z -11.4975 26.6523 41.7778 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 100 > 0.2747 20.7117 23.6008 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 101 ® -7.9192 38.2219 38.2219 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 102 © -7.8898 38.2219 38.2219 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 103 ] -12.6274 12.9561 55.1777 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 104 é -15.4029 28.1414 46.1769 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 105 z 0.0337 25.2078 30.3706 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 106 _ 33.9899 30.3706 3.7781 -Trebuchet_MS.ttf 21 u 24.9855 30.7922 107 ¥ -11.2854 32.2017 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 1 t 3.2846 20.0679 39.1479 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 2 h -1.3554 24.5269 43.1853 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 3 a 11.0475 25.7702 31.4731 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 4 n 10.9884 24.5269 31.0515 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 5 P 0.2979 25.2665 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 6 o 10.8534 27.8006 31.4731 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 7 e 11.2983 28.1414 31.4731 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 8 : 10.9490 8.5779 31.4731 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 9 r 10.5505 18.3782 31.0515 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 10 l -1.1145 10.7263 43.6069 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 11 i 0.2081 10.9855 41.8006 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 12 1 0.1663 14.1414 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 13 | 1.8708 4.8826 48.1487 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 14 N -0.0785 28.7266 42.1994 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 15 f -1.1483 19.9642 43.1853 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 16 g 9.8022 25.2287 44.2292 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 17 d -1.0532 26.6153 43.6069 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 18 W 0.2769 48.0809 42.1994 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 19 s 10.8093 19.7857 31.4731 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 20 c 11.0673 25.2078 31.4731 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 21 u 11.5822 24.9855 30.7922 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 22 3 0.1957 23.3416 42.4217 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 23 ~ 20.6542 20.6080 6.1487 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 24 # 0.0683 30.9707 42.4217 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 25 O -0.0520 34.4666 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 26 ` -3.7510 10.2447 9.3996 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 27 @ 3.9068 39.0664 41.7999 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 28 F -0.0705 25.7708 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 29 S -0.0025 23.5638 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 30 p 10.8237 26.7339 43.0439 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 31 “ -0.7019 22.5779 17.1929 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 32 % -0.0928 31.3564 42.4217 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 33 £ -0.1354 25.4300 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 34 . 33.8172 8.5779 8.5779 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 35 2 0.0001 25.3115 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 36 5 0.2224 23.7625 42.4217 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 37 m 10.8433 41.1197 31.0515 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 38 V 0.1704 32.7998 42.1994 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 39 6 -0.1811 25.7708 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 40 w 11.6356 43.4311 30.7922 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 41 T 0.0151 32.4239 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 42 M 0.4519 41.3412 42.1994 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 43 G -0.0700 32.7998 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 44 b -1.1070 26.7339 43.6069 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 45 9 0.0706 25.5714 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 46 ; 10.7869 9.9854 41.2734 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 47 D 0.1115 29.3267 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 48 L 0.1559 23.7632 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 49 y 11.6799 29.1853 42.3630 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 50 ‘ -0.8597 9.7632 17.1929 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 51 \ 0.2826 20.5722 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 52 R -0.0741 29.1853 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 53 < 12.0925 20.7117 23.6008 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 54 4 0.1614 28.0000 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 55 8 0.0650 25.5714 42.4217 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 56 0 0.0722 26.8974 42.4217 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 57 A -0.0722 34.1037 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 58 E 0.3067 24.9485 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 59 B 0.2606 26.5555 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 60 v 11.7658 28.3630 30.7922 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 61 k -1.0743 25.9116 43.1853 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 62 J 0.4636 21.5692 42.1994 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 63 U 0.1539 29.2897 42.4587 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 64 j -0.0818 15.1853 53.7930 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 65 ( -0.3694 11.8887 54.4968 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 66 7 0.1110 26.7339 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 67 § 0.0211 22.3934 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 68 $ -4.6429 23.5638 53.2658 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 69 € -0.1070 28.8433 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 70 / -0.0689 20.9939 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 71 C 0.0462 30.2298 42.6809 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 72 * -0.6139 18.5997 17.5559 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 73 ” -0.7161 22.9416 17.1929 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 74 ? -0.6056 18.7418 42.9260 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 75 { -0.7982 19.6443 54.6733 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 76 } -0.8514 19.6443 54.6733 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 77 , 33.4090 9.9854 18.7998 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 78 I 0.1200 5.7857 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 79 ° -0.3825 12.0301 12.0301 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 80 K 0.1910 28.1765 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 81 H 0.1790 29.5489 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 82 q 11.2384 26.7567 43.0439 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 83 & -0.4241 34.4079 42.9260 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 84 ’ -0.7538 9.7632 17.1929 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 85 [ -1.1483 12.9561 55.1777 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 86 - 22.7868 12.1338 5.1628 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 87 Y 0.1857 32.4239 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 88 Q -0.2339 40.0054 50.6958 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 89 " -0.9172 14.8217 10.9485 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 90 ! -0.1357 8.5779 42.9260 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 91 x 11.5635 29.1853 30.3706 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 92 ) -0.5886 11.8887 54.4968 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 93 = 16.9676 23.7632 13.5993 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 94 + 11.6308 23.5040 23.5040 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 95 X -0.1782 32.3782 42.0000 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 96 » 17.2726 21.2303 15.5254 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 97 ' -0.5404 5.1628 10.9485 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 98 ¢ 6.9532 20.2901 39.0664 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 99 Z 0.4875 26.6523 41.7778 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 100 > 12.1308 20.7117 23.6008 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 101 ® 3.6848 38.2219 38.2219 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 102 © 3.7411 38.2219 38.2219 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 103 ] -1.3682 12.9561 55.1777 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 104 é -3.7822 28.1414 46.1769 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 105 z 11.3672 25.2078 30.3706 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 106 _ 45.4912 30.3706 3.7781 -Trebuchet_MS.ttf 22 3 23.3416 42.4217 107 ¥ 0.2372 32.2017 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 1 t -17.6737 20.0679 39.1479 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 2 h -21.9875 24.5269 43.1853 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 3 a -9.8759 25.7702 31.4731 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 4 n -9.9869 24.5269 31.0515 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 5 P -20.6800 25.2665 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 6 o -9.9858 27.8006 31.4731 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 7 e -9.8298 28.1414 31.4731 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 8 : -9.6488 8.5779 31.4731 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 9 r -9.7580 18.3782 31.0515 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 10 l -22.2712 10.7263 43.6069 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 11 i -20.5446 10.9855 41.8006 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 12 1 -20.9569 14.1414 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 13 | -19.1319 4.8826 48.1487 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 14 N -20.7362 28.7266 42.1994 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 15 f -22.1850 19.9642 43.1853 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 16 g -10.9031 25.2287 44.2292 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 17 d -22.4650 26.6153 43.6069 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 18 W -20.6262 48.0809 42.1994 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 19 s -9.9762 19.7857 31.4731 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 20 c -9.8200 25.2078 31.4731 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 21 u -9.2179 24.9855 30.7922 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 22 3 -21.0321 23.3416 42.4217 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 23 ~ 0.0463 20.6080 6.1487 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 24 # -21.2084 30.9707 42.4217 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 25 O -20.7299 34.4666 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 26 ` -24.4317 10.2447 9.3996 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 27 @ -17.1067 39.0664 41.7999 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 28 F -21.0590 25.7708 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 29 S -20.7389 23.5638 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 30 p -10.1074 26.7339 43.0439 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 31 “ -21.6944 22.5779 17.1929 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 32 % -20.9257 31.3564 42.4217 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 33 £ -20.5596 25.4300 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 34 . 12.9613 8.5779 8.5779 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 35 2 -21.1732 25.3115 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 36 5 -20.5686 23.7625 42.4217 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 37 m -9.9294 41.1197 31.0515 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 38 V -20.5680 32.7998 42.1994 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 39 6 -20.9950 25.7708 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 40 w -9.4236 43.4311 30.7922 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 41 T -20.7923 32.4239 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 42 M -20.5572 41.3412 42.1994 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 43 G -20.9633 32.7998 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 44 b -21.9390 26.7339 43.6069 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 45 9 -20.9285 25.5714 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 46 ; -10.0570 9.9854 41.2734 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 47 D -20.7344 29.3267 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 48 L -20.6276 23.7632 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 49 y -9.3466 29.1853 42.3630 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 50 ‘ -21.8506 9.7632 17.1929 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 51 \ -20.7428 20.5722 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 52 R -21.1464 29.1853 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 53 < -8.5440 20.7117 23.6008 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 54 4 -20.9228 28.0000 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 55 8 -20.9198 25.5714 42.4217 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 56 0 -20.6442 26.8974 42.4217 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 57 A -20.7802 34.1037 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 58 E -20.8601 24.9485 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 59 B -20.7436 26.5555 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 60 v -9.3966 28.3630 30.7922 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 61 k -21.9995 25.9116 43.1853 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 62 J -20.6973 21.5692 42.1994 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 63 U -20.7837 29.2897 42.4587 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 64 j -20.3747 15.1853 53.7930 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 65 ( -20.9972 11.8887 54.4968 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 66 7 -20.9566 26.7339 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 67 § -21.0026 22.3934 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 68 $ -24.9104 23.5638 53.2658 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 69 € -20.7762 28.8433 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 70 / -20.5035 20.9939 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 71 C -20.6764 30.2298 42.6809 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 72 * -21.3696 18.5997 17.5559 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 73 ” -21.6526 22.9416 17.1929 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 74 ? -21.6013 18.7418 42.9260 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 75 { -21.6331 19.6443 54.6733 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 76 } -21.5388 19.6443 54.6733 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 77 , 12.8240 9.9854 18.7998 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 78 I -20.8798 5.7857 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 79 ° -21.1529 12.0301 12.0301 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 80 K -20.3653 28.1765 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 81 H -20.6288 29.5489 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 82 q -9.9164 26.7567 43.0439 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 83 & -21.0687 34.4079 42.9260 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 84 ’ -21.5170 9.7632 17.1929 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 85 [ -22.0602 12.9561 55.1777 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 86 - 1.9377 12.1338 5.1628 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 87 Y -20.5747 32.4239 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 88 Q -21.2649 40.0054 50.6958 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 89 " -21.5218 14.8217 10.9485 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 90 ! -21.3673 8.5779 42.9260 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 91 x -9.2233 29.1853 30.3706 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 92 ) -21.1840 11.8887 54.4968 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 93 = -3.7219 23.7632 13.5993 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 94 + -8.7881 23.5040 23.5040 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 95 X -20.9594 32.3782 42.0000 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 96 » -3.4859 21.2303 15.5254 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 97 ' -21.2092 5.1628 10.9485 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 98 ¢ -13.8441 20.2901 39.0664 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 99 Z -20.5463 26.6523 41.7778 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 100 > -8.9376 20.7117 23.6008 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 101 ® -16.9521 38.2219 38.2219 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 102 © -17.0869 38.2219 38.2219 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 103 ] -22.0518 12.9561 55.1777 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 104 é -24.5859 28.1414 46.1769 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 105 z -9.2781 25.2078 30.3706 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 106 _ 25.1137 30.3706 3.7781 -Trebuchet_MS.ttf 23 ~ 20.6080 6.1487 107 ¥ -20.7819 32.2017 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 1 t 3.3506 20.0679 39.1479 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 2 h -1.2997 24.5269 43.1853 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 3 a 10.9970 25.7702 31.4731 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 4 n 10.9572 24.5269 31.0515 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 5 P -0.0443 25.2665 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 6 o 10.9736 27.8006 31.4731 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 7 e 10.9000 28.1414 31.4731 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 8 : 10.9845 8.5779 31.4731 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 9 r 11.2013 18.3782 31.0515 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 10 l -1.0486 10.7263 43.6069 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 11 i 0.3167 10.9855 41.8006 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 12 1 0.1753 14.1414 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 13 | 1.7976 4.8826 48.1487 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 14 N 0.5273 28.7266 42.1994 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 15 f -1.1363 19.9642 43.1853 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 16 g 9.9280 25.2287 44.2292 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 17 d -1.2295 26.6153 43.6069 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 18 W 0.3511 48.0809 42.1994 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 19 s 10.7742 19.7857 31.4731 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 20 c 11.2214 25.2078 31.4731 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 21 u 11.5344 24.9855 30.7922 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 22 3 0.1879 23.3416 42.4217 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 23 ~ 20.9315 20.6080 6.1487 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 24 # -0.1720 30.9707 42.4217 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 25 O -0.1139 34.4666 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 26 ` -3.6801 10.2447 9.3996 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 27 @ 3.8099 39.0664 41.7999 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 28 F 0.2342 25.7708 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 29 S -0.1652 23.5638 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 30 p 11.1680 26.7339 43.0439 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 31 “ -0.5750 22.5779 17.1929 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 32 % -0.3047 31.3564 42.4217 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 33 £ 0.1441 25.4300 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 34 . 34.0759 8.5779 8.5779 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 35 2 -0.1572 25.3115 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 36 5 0.0501 23.7625 42.4217 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 37 m 10.9028 41.1197 31.0515 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 38 V 0.5757 32.7998 42.1994 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 39 6 0.0129 25.7708 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 40 w 11.7420 43.4311 30.7922 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 41 T 0.2327 32.4239 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 42 M 0.2476 41.3412 42.1994 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 43 G 0.0601 32.7998 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 44 b -1.2848 26.7339 43.6069 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 45 9 -0.1053 25.5714 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 46 ; 10.8063 9.9854 41.2734 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 47 D 0.0025 29.3267 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 48 L 0.2741 23.7632 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 49 y 11.5553 29.1853 42.3630 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 50 ‘ -0.6379 9.7632 17.1929 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 51 \ -0.2253 20.5722 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 52 R -0.0998 29.1853 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 53 < 12.1229 20.7117 23.6008 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 54 4 0.0462 28.0000 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 55 8 -0.1269 25.5714 42.4217 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 56 0 -0.1617 26.8974 42.4217 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 57 A -0.0951 34.1037 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 58 E 0.3590 24.9485 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 59 B 0.0741 26.5555 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 60 v 11.5565 28.3630 30.7922 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 61 k -1.3213 25.9116 43.1853 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 62 J 0.1642 21.5692 42.1994 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 63 U 0.1954 29.2897 42.4587 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 64 j 0.1534 15.1853 53.7930 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 65 ( -0.4997 11.8887 54.4968 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 66 7 -0.0200 26.7339 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 67 § -0.0077 22.3934 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 68 $ -3.9744 23.5638 53.2658 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 69 € 0.2253 28.8433 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 70 / -0.0870 20.9939 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 71 C -0.2568 30.2298 42.6809 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 72 * -0.6951 18.5997 17.5559 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 73 ” -0.3283 22.9416 17.1929 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 74 ? -0.3622 18.7418 42.9260 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 75 { -0.6344 19.6443 54.6733 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 76 } -0.5892 19.6443 54.6733 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 77 , 33.1991 9.9854 18.7998 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 78 I 0.2891 5.7857 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 79 ° -0.5110 12.0301 12.0301 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 80 K 0.1068 28.1765 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 81 H 0.2978 29.5489 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 82 q 11.1076 26.7567 43.0439 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 83 & -0.6053 34.4079 42.9260 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 84 ’ -0.4465 9.7632 17.1929 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 85 [ -1.2107 12.9561 55.1777 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 86 - 22.9113 12.1338 5.1628 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 87 Y 0.4164 32.4239 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 88 Q 0.0051 40.0054 50.6958 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 89 " -0.5476 14.8217 10.9485 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 90 ! -0.5150 8.5779 42.9260 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 91 x 11.4456 29.1853 30.3706 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 92 ) -0.5878 11.8887 54.4968 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 93 = 17.1396 23.7632 13.5993 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 94 + 11.8520 23.5040 23.5040 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 95 X -0.0519 32.3782 42.0000 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 96 » 17.1954 21.2303 15.5254 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 97 ' -0.3532 5.1628 10.9485 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 98 ¢ 7.2179 20.2901 39.0664 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 99 Z 0.7190 26.6523 41.7778 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 100 > 12.3207 20.7117 23.6008 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 101 ® 4.0614 38.2219 38.2219 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 102 © 3.7334 38.2219 38.2219 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 103 ] -0.9916 12.9561 55.1777 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 104 é -4.0485 28.1414 46.1769 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 105 z 11.5463 25.2078 30.3706 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 106 _ 46.1053 30.3706 3.7781 -Trebuchet_MS.ttf 24 # 30.9707 42.4217 107 ¥ 0.2063 32.2017 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 1 t 3.4030 20.0679 39.1479 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 2 h -1.0767 24.5269 43.1853 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 3 a 10.8107 25.7702 31.4731 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 4 n 10.9633 24.5269 31.0515 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 5 P -0.0414 25.2665 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 6 o 11.0596 27.8006 31.4731 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 7 e 10.7841 28.1414 31.4731 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 8 : 10.9355 8.5779 31.4731 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 9 r 11.0475 18.3782 31.0515 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 10 l -1.1841 10.7263 43.6069 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 11 i 0.2171 10.9855 41.8006 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 12 1 0.2150 14.1414 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 13 | 2.0339 4.8826 48.1487 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 14 N 0.2059 28.7266 42.1994 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 15 f -0.9269 19.9642 43.1853 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 16 g 9.6595 25.2287 44.2292 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 17 d -0.8032 26.6153 43.6069 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 18 W -0.0786 48.0809 42.1994 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 19 s 10.7798 19.7857 31.4731 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 20 c 11.0909 25.2078 31.4731 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 21 u 11.4872 24.9855 30.7922 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 22 3 -0.0177 23.3416 42.4217 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 23 ~ 20.9401 20.6080 6.1487 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 24 # 0.0836 30.9707 42.4217 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 25 O -0.1844 34.4666 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 26 ` -3.5261 10.2447 9.3996 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 27 @ 3.9512 39.0664 41.7999 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 28 F 0.3822 25.7708 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 29 S 0.1475 23.5638 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 30 p 10.5937 26.7339 43.0439 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 31 “ -0.5770 22.5779 17.1929 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 32 % 0.3988 31.3564 42.4217 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 33 £ -0.1226 25.4300 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 34 . 33.7352 8.5779 8.5779 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 35 2 0.1307 25.3115 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 36 5 -0.0831 23.7625 42.4217 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 37 m 11.1815 41.1197 31.0515 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 38 V 0.5122 32.7998 42.1994 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 39 6 -0.0990 25.7708 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 40 w 11.5452 43.4311 30.7922 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 41 T 0.4609 32.4239 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 42 M 0.1847 41.3412 42.1994 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 43 G -0.1008 32.7998 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 44 b -1.2219 26.7339 43.6069 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 45 9 -0.0432 25.5714 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 46 ; 11.1295 9.9854 41.2734 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 47 D 0.3446 29.3267 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 48 L 0.1852 23.7632 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 49 y 11.3726 29.1853 42.3630 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 50 ‘ -0.4941 9.7632 17.1929 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 51 \ 0.2627 20.5722 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 52 R -0.0650 29.1853 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 53 < 11.9951 20.7117 23.6008 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 54 4 -0.1669 28.0000 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 55 8 -0.0373 25.5714 42.4217 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 56 0 0.0471 26.8974 42.4217 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 57 A 0.2979 34.1037 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 58 E 0.0089 24.9485 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 59 B 0.0022 26.5555 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 60 v 11.7934 28.3630 30.7922 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 61 k -1.3410 25.9116 43.1853 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 62 J 0.1229 21.5692 42.1994 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 63 U 0.4008 29.2897 42.4587 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 64 j 0.0241 15.1853 53.7930 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 65 ( -0.6247 11.8887 54.4968 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 66 7 -0.0694 26.7339 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 67 § -0.1644 22.3934 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 68 $ -4.4715 23.5638 53.2658 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 69 € -0.0802 28.8433 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 70 / -0.1115 20.9939 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 71 C -0.1201 30.2298 42.6809 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 72 * -0.5278 18.5997 17.5559 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 73 ” -0.9451 22.9416 17.1929 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 74 ? -0.3916 18.7418 42.9260 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 75 { -0.7651 19.6443 54.6733 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 76 } -0.7741 19.6443 54.6733 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 77 , 33.3738 9.9854 18.7998 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 78 I 0.3870 5.7857 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 79 ° -0.7402 12.0301 12.0301 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 80 K 0.3578 28.1765 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 81 H 0.1515 29.5489 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 82 q 11.0954 26.7567 43.0439 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 83 & -0.5490 34.4079 42.9260 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 84 ’ -0.7429 9.7632 17.1929 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 85 [ -1.2550 12.9561 55.1777 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 86 - 22.8458 12.1338 5.1628 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 87 Y 0.2160 32.4239 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 88 Q -0.2387 40.0054 50.6958 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 89 " -0.5400 14.8217 10.9485 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 90 ! -0.2576 8.5779 42.9260 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 91 x 11.7097 29.1853 30.3706 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 92 ) -0.5044 11.8887 54.4968 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 93 = 16.8935 23.7632 13.5993 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 94 + 11.9050 23.5040 23.5040 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 95 X -0.2816 32.3782 42.0000 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 96 » 17.3066 21.2303 15.5254 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 97 ' -0.4795 5.1628 10.9485 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 98 ¢ 7.2253 20.2901 39.0664 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 99 Z -0.0926 26.6523 41.7778 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 100 > 12.3432 20.7117 23.6008 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 101 ® 3.4907 38.2219 38.2219 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 102 © 3.6859 38.2219 38.2219 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 103 ] -1.2436 12.9561 55.1777 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 104 é -3.9850 28.1414 46.1769 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 105 z 11.6810 25.2078 30.3706 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 106 _ 45.6468 30.3706 3.7781 -Trebuchet_MS.ttf 25 O 34.4666 42.6809 107 ¥ -0.0045 32.2017 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 1 t 6.8940 20.0679 39.1479 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 2 h 2.3048 24.5269 43.1853 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 3 a 14.7353 25.7702 31.4731 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 4 n 14.8859 24.5269 31.0515 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 5 P 3.7658 25.2665 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 6 o 14.8017 27.8006 31.4731 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 7 e 14.7219 28.1414 31.4731 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 8 : 14.6438 8.5779 31.4731 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 9 r 14.9287 18.3782 31.0515 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 10 l 2.5519 10.7263 43.6069 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 11 i 3.8226 10.9855 41.8006 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 12 1 3.7903 14.1414 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 13 | 5.6791 4.8826 48.1487 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 14 N 3.8825 28.7266 42.1994 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 15 f 2.8529 19.9642 43.1853 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 16 g 13.5991 25.2287 44.2292 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 17 d 2.5081 26.6153 43.6069 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 18 W 4.2569 48.0809 42.1994 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 19 s 14.6469 19.7857 31.4731 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 20 c 14.6918 25.2078 31.4731 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 21 u 15.4410 24.9855 30.7922 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 22 3 3.6636 23.3416 42.4217 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 23 ~ 24.4869 20.6080 6.1487 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 24 # 3.8253 30.9707 42.4217 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 25 O 3.5913 34.4666 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 26 ` 0.3123 10.2447 9.3996 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 27 @ 7.6516 39.0664 41.7999 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 28 F 3.9257 25.7708 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 29 S 3.7581 23.5638 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 30 p 14.5717 26.7339 43.0439 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 31 “ 3.3056 22.5779 17.1929 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 32 % 3.6078 31.3564 42.4217 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 33 £ 3.5212 25.4300 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 34 . 37.5678 8.5779 8.5779 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 35 2 3.8267 25.3115 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 36 5 3.7553 23.7625 42.4217 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 37 m 14.8301 41.1197 31.0515 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 38 V 3.8117 32.7998 42.1994 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 39 6 3.8721 25.7708 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 40 w 15.3836 43.4311 30.7922 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 41 T 3.9049 32.4239 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 42 M 4.0516 41.3412 42.1994 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 43 G 3.7506 32.7998 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 44 b 2.3470 26.7339 43.6069 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 45 9 4.0384 25.5714 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 46 ; 14.7038 9.9854 41.2734 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 47 D 3.8224 29.3267 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 48 L 3.8954 23.7632 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 49 y 15.4512 29.1853 42.3630 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 50 ‘ 2.9038 9.7632 17.1929 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 51 \ 3.8166 20.5722 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 52 R 3.8176 29.1853 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 53 < 16.1133 20.7117 23.6008 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 54 4 3.4911 28.0000 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 55 8 3.5684 25.5714 42.4217 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 56 0 3.8322 26.8974 42.4217 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 57 A 3.6636 34.1037 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 58 E 3.9405 24.9485 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 59 B 3.8058 26.5555 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 60 v 15.2620 28.3630 30.7922 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 61 k 2.6560 25.9116 43.1853 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 62 J 3.9496 21.5692 42.1994 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 63 U 4.1536 29.2897 42.4587 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 64 j 4.2816 15.1853 53.7930 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 65 ( 3.0361 11.8887 54.4968 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 66 7 3.8562 26.7339 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 67 § 3.4233 22.3934 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 68 $ -0.4296 23.5638 53.2658 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 69 € 4.0339 28.8433 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 70 / 3.6290 20.9939 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 71 C 3.9973 30.2298 42.6809 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 72 * 3.0063 18.5997 17.5559 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 73 ” 3.1870 22.9416 17.1929 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 74 ? 3.1399 18.7418 42.9260 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 75 { 2.9586 19.6443 54.6733 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 76 } 3.2224 19.6443 54.6733 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 77 , 37.1564 9.9854 18.7998 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 78 I 3.8607 5.7857 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 79 ° 3.4542 12.0301 12.0301 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 80 K 4.0839 28.1765 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 81 H 4.0987 29.5489 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 82 q 14.6816 26.7567 43.0439 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 83 & 3.0362 34.4079 42.9260 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 84 ’ 3.2525 9.7632 17.1929 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 85 [ 2.6560 12.9561 55.1777 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 86 - 26.4604 12.1338 5.1628 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 87 Y 4.1306 32.4239 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 88 Q 3.8470 40.0054 50.6958 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 89 " 3.0818 14.8217 10.9485 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 90 ! 3.2447 8.5779 42.9260 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 91 x 15.5451 29.1853 30.3706 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 92 ) 3.2880 11.8887 54.4968 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 93 = 20.6344 23.7632 13.5993 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 94 + 15.8011 23.5040 23.5040 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 95 X 3.7193 32.3782 42.0000 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 96 » 21.1106 21.2303 15.5254 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 97 ' 3.0794 5.1628 10.9485 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 98 ¢ 10.8234 20.2901 39.0664 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 99 Z 4.0726 26.6523 41.7778 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 100 > 15.7632 20.7117 23.6008 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 101 ® 7.5762 38.2219 38.2219 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 102 © 7.5203 38.2219 38.2219 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 103 ] 2.3236 12.9561 55.1777 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 104 é -0.1411 28.1414 46.1769 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 105 z 15.4831 25.2078 30.3706 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 106 _ 49.4473 30.3706 3.7781 -Trebuchet_MS.ttf 26 ` 10.2447 9.3996 107 ¥ 3.8973 32.2017 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 1 t -0.7278 20.0679 39.1479 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 2 h -5.1711 24.5269 43.1853 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 3 a 7.2831 25.7702 31.4731 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 4 n 6.7007 24.5269 31.0515 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 5 P -4.1327 25.2665 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 6 o 7.2479 27.8006 31.4731 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 7 e 6.9618 28.1414 31.4731 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 8 : 7.0283 8.5779 31.4731 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 9 r 6.6648 18.3782 31.0515 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 10 l -5.0263 10.7263 43.6069 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 11 i -3.8707 10.9855 41.8006 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 12 1 -3.7700 14.1414 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 13 | -2.1162 4.8826 48.1487 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 14 N -3.6591 28.7266 42.1994 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 15 f -5.2252 19.9642 43.1853 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 16 g 5.6594 25.2287 44.2292 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 17 d -5.1230 26.6153 43.6069 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 18 W -3.6221 48.0809 42.1994 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 19 s 7.1261 19.7857 31.4731 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 20 c 6.9546 25.2078 31.4731 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 21 u 7.4977 24.9855 30.7922 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 22 3 -3.7602 23.3416 42.4217 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 23 ~ 17.0283 20.6080 6.1487 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 24 # -3.7532 30.9707 42.4217 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 25 O -4.1129 34.4666 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 26 ` -7.5764 10.2447 9.3996 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 27 @ -0.0195 39.0664 41.7999 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 28 F -4.0383 25.7708 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 29 S -4.1288 23.5638 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 30 p 6.8273 26.7339 43.0439 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 31 “ -4.6877 22.5779 17.1929 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 32 % -4.0312 31.3564 42.4217 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 33 £ -4.0758 25.4300 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 34 . 29.5201 8.5779 8.5779 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 35 2 -4.1988 25.3115 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 36 5 -4.0237 23.7625 42.4217 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 37 m 6.9340 41.1197 31.0515 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 38 V -3.7981 32.7998 42.1994 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 39 6 -3.6946 25.7708 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 40 w 7.5971 43.4311 30.7922 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 41 T -3.8164 32.4239 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 42 M -3.7064 41.3412 42.1994 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 43 G -3.9243 32.7998 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 44 b -4.9465 26.7339 43.6069 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 45 9 -4.0654 25.5714 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 46 ; 7.1066 9.9854 41.2734 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 47 D -3.6906 29.3267 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 48 L -3.3246 23.7632 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 49 y 8.0656 29.1853 42.3630 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 50 ‘ -4.9533 9.7632 17.1929 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 51 \ -3.6675 20.5722 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 52 R -4.3346 29.1853 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 53 < 8.2096 20.7117 23.6008 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 54 4 -3.6543 28.0000 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 55 8 -3.7503 25.5714 42.4217 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 56 0 -4.0517 26.8974 42.4217 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 57 A -4.0861 34.1037 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 58 E -3.3976 24.9485 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 59 B -3.9924 26.5555 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 60 v 7.7380 28.3630 30.7922 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 61 k -4.9093 25.9116 43.1853 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 62 J -3.9596 21.5692 42.1994 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 63 U -3.7590 29.2897 42.4587 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 64 j -3.5755 15.1853 53.7930 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 65 ( -4.7117 11.8887 54.4968 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 66 7 -3.9060 26.7339 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 67 § -3.9001 22.3934 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 68 $ -8.2146 23.5638 53.2658 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 69 € -4.1648 28.8433 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 70 / -4.1255 20.9939 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 71 C -4.0676 30.2298 42.6809 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 72 * -4.5347 18.5997 17.5559 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 73 ” -4.7873 22.9416 17.1929 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 74 ? -4.3900 18.7418 42.9260 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 75 { -4.4785 19.6443 54.6733 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 76 } -4.8964 19.6443 54.6733 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 77 , 29.1884 9.9854 18.7998 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 78 I -3.6228 5.7857 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 79 ° -4.2903 12.0301 12.0301 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 80 K -3.5112 28.1765 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 81 H -4.1391 29.5489 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 82 q 7.0301 26.7567 43.0439 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 83 & -4.5490 34.4079 42.9260 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 84 ’ -4.9226 9.7632 17.1929 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 85 [ -5.5049 12.9561 55.1777 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 86 - 18.9137 12.1338 5.1628 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 87 Y -3.8055 32.4239 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 88 Q -3.7823 40.0054 50.6958 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 89 " -4.4876 14.8217 10.9485 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 90 ! -4.0462 8.5779 42.9260 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 91 x 7.3497 29.1853 30.3706 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 92 ) -4.3709 11.8887 54.4968 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 93 = 13.3990 23.7632 13.5993 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 94 + 8.0491 23.5040 23.5040 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 95 X -4.2396 32.3782 42.0000 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 96 » 13.3405 21.2303 15.5254 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 97 ' -4.5381 5.1628 10.9485 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 98 ¢ 3.2344 20.2901 39.0664 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 99 Z -3.8870 26.6523 41.7778 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 100 > 8.0659 20.7117 23.6008 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 101 ® -0.1374 38.2219 38.2219 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 102 © -0.3715 38.2219 38.2219 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 103 ] -5.3207 12.9561 55.1777 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 104 é -7.4306 28.1414 46.1769 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 105 z 7.5665 25.2078 30.3706 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 106 _ 41.7781 30.3706 3.7781 -Trebuchet_MS.ttf 27 @ 39.0664 41.7999 107 ¥ -3.6414 32.2017 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 1 t 3.2187 20.0679 39.1479 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 2 h -1.3172 24.5269 43.1853 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 3 a 10.5286 25.7702 31.4731 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 4 n 10.7012 24.5269 31.0515 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 5 P -0.1090 25.2665 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 6 o 10.8580 27.8006 31.4731 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 7 e 10.9421 28.1414 31.4731 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 8 : 10.5852 8.5779 31.4731 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 9 r 11.0684 18.3782 31.0515 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 10 l -1.3752 10.7263 43.6069 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 11 i 0.0973 10.9855 41.8006 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 12 1 -0.1545 14.1414 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 13 | 1.4752 4.8826 48.1487 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 14 N -0.1146 28.7266 42.1994 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 15 f -1.4830 19.9642 43.1853 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 16 g 9.6313 25.2287 44.2292 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 17 d -1.2149 26.6153 43.6069 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 18 W -0.1211 48.0809 42.1994 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 19 s 10.6004 19.7857 31.4731 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 20 c 10.3828 25.2078 31.4731 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 21 u 11.5009 24.9855 30.7922 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 22 3 -0.2865 23.3416 42.4217 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 23 ~ 20.8384 20.6080 6.1487 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 24 # -0.3841 30.9707 42.4217 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 25 O -0.3074 34.4666 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 26 ` -3.7754 10.2447 9.3996 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 27 @ 3.8282 39.0664 41.7999 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 28 F 0.0741 25.7708 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 29 S -0.4385 23.5638 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 30 p 10.5384 26.7339 43.0439 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 31 “ -0.6998 22.5779 17.1929 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 32 % -0.2372 31.3564 42.4217 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 33 £ -0.2120 25.4300 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 34 . 33.8947 8.5779 8.5779 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 35 2 -0.0669 25.3115 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 36 5 -0.0455 23.7625 42.4217 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 37 m 10.6642 41.1197 31.0515 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 38 V -0.1255 32.7998 42.1994 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 39 6 -0.2741 25.7708 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 40 w 11.4442 43.4311 30.7922 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 41 T 0.0318 32.4239 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 42 M 0.0012 41.3412 42.1994 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 43 G 0.0563 32.7998 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 44 b -1.6165 26.7339 43.6069 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 45 9 -0.2890 25.5714 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 46 ; 10.7129 9.9854 41.2734 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 47 D -0.1968 29.3267 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 48 L 0.1572 23.7632 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 49 y 11.0634 29.1853 42.3630 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 50 ‘ -0.6760 9.7632 17.1929 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 51 \ -0.2597 20.5722 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 52 R -0.0482 29.1853 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 53 < 11.8937 20.7117 23.6008 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 54 4 -0.2802 28.0000 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 55 8 -0.2869 25.5714 42.4217 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 56 0 -0.0084 26.8974 42.4217 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 57 A -0.0459 34.1037 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 58 E -0.1259 24.9485 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 59 B -0.0800 26.5555 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 60 v 11.2530 28.3630 30.7922 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 61 k -1.4042 25.9116 43.1853 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 62 J 0.0576 21.5692 42.1994 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 63 U 0.1629 29.2897 42.4587 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 64 j 0.0545 15.1853 53.7930 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 65 ( -0.4055 11.8887 54.4968 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 66 7 -0.1909 26.7339 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 67 § -0.2063 22.3934 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 68 $ -4.2619 23.5638 53.2658 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 69 € -0.0597 28.8433 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 70 / -0.2578 20.9939 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 71 C 0.0401 30.2298 42.6809 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 72 * -0.7801 18.5997 17.5559 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 73 ” -0.9726 22.9416 17.1929 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 74 ? -0.8660 18.7418 42.9260 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 75 { -1.2884 19.6443 54.6733 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 76 } -1.0439 19.6443 54.6733 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 77 , 33.1048 9.9854 18.7998 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 78 I -0.3156 5.7857 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 79 ° -0.8735 12.0301 12.0301 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 80 K -0.2412 28.1765 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 81 H -0.1720 29.5489 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 82 q 10.6312 26.7567 43.0439 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 83 & -0.9683 34.4079 42.9260 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 84 ’ -1.0780 9.7632 17.1929 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 85 [ -1.4820 12.9561 55.1777 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 86 - 22.7960 12.1338 5.1628 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 87 Y -0.0019 32.4239 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 88 Q -0.5230 40.0054 50.6958 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 89 " -0.8202 14.8217 10.9485 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 90 ! -1.1149 8.5779 42.9260 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 91 x 11.3216 29.1853 30.3706 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 92 ) -0.4509 11.8887 54.4968 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 93 = 16.7733 23.7632 13.5993 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 94 + 11.6193 23.5040 23.5040 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 95 X -0.3025 32.3782 42.0000 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 96 » 17.3689 21.2303 15.5254 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 97 ' -0.7238 5.1628 10.9485 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 98 ¢ 6.8445 20.2901 39.0664 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 99 Z 0.2398 26.6523 41.7778 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 100 > 11.6972 20.7117 23.6008 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 101 ® 3.4540 38.2219 38.2219 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 102 © 3.4569 38.2219 38.2219 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 103 ] -1.3249 12.9561 55.1777 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 104 é -4.0827 28.1414 46.1769 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 105 z 11.1093 25.2078 30.3706 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 106 _ 45.7304 30.3706 3.7781 -Trebuchet_MS.ttf 28 F 25.7708 41.7778 107 ¥ -0.0103 32.2017 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 1 t 3.3042 20.0679 39.1479 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 2 h -1.3812 24.5269 43.1853 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 3 a 11.0778 25.7702 31.4731 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 4 n 11.2713 24.5269 31.0515 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 5 P 0.0385 25.2665 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 6 o 11.1872 27.8006 31.4731 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 7 e 10.7540 28.1414 31.4731 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 8 : 10.9913 8.5779 31.4731 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 9 r 11.1069 18.3782 31.0515 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 10 l -1.1429 10.7263 43.6069 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 11 i 0.0103 10.9855 41.8006 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 12 1 0.0136 14.1414 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 13 | 2.0081 4.8826 48.1487 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 14 N 0.1390 28.7266 42.1994 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 15 f -1.1853 19.9642 43.1853 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 16 g 9.6891 25.2287 44.2292 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 17 d -1.2622 26.6153 43.6069 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 18 W 0.4015 48.0809 42.1994 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 19 s 10.9423 19.7857 31.4731 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 20 c 10.9271 25.2078 31.4731 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 21 u 11.7253 24.9855 30.7922 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 22 3 -0.0057 23.3416 42.4217 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 23 ~ 20.7236 20.6080 6.1487 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 24 # 0.0044 30.9707 42.4217 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 25 O 0.2893 34.4666 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 26 ` -3.8587 10.2447 9.3996 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 27 @ 3.9823 39.0664 41.7999 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 28 F 0.2632 25.7708 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 29 S -0.2180 23.5638 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 30 p 10.8016 26.7339 43.0439 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 31 “ -0.6257 22.5779 17.1929 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 32 % 0.0062 31.3564 42.4217 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 33 £ 0.1383 25.4300 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 34 . 33.8696 8.5779 8.5779 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 35 2 -0.0192 25.3115 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 36 5 0.3069 23.7625 42.4217 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 37 m 10.7447 41.1197 31.0515 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 38 V 0.0452 32.7998 42.1994 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 39 6 -0.1926 25.7708 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 40 w 11.7877 43.4311 30.7922 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 41 T 0.2103 32.4239 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 42 M 0.2320 41.3412 42.1994 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 43 G -0.3080 32.7998 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 44 b -0.9545 26.7339 43.6069 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 45 9 -0.0330 25.5714 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 46 ; 10.8302 9.9854 41.2734 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 47 D -0.0342 29.3267 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 48 L 0.0578 23.7632 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 49 y 11.5837 29.1853 42.3630 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 50 ‘ -0.4462 9.7632 17.1929 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 51 \ 0.0279 20.5722 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 52 R -0.2623 29.1853 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 53 < 11.8077 20.7117 23.6008 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 54 4 -0.0221 28.0000 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 55 8 0.0936 25.5714 42.4217 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 56 0 -0.0122 26.8974 42.4217 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 57 A 0.0951 34.1037 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 58 E 0.1732 24.9485 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 59 B 0.1447 26.5555 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 60 v 11.6526 28.3630 30.7922 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 61 k -1.2622 25.9116 43.1853 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 62 J 0.2160 21.5692 42.1994 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 63 U 0.1391 29.2897 42.4587 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 64 j 0.0826 15.1853 53.7930 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 65 ( -0.4465 11.8887 54.4968 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 66 7 0.0864 26.7339 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 67 § 0.0519 22.3934 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 68 $ -4.0724 23.5638 53.2658 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 69 € 0.0485 28.8433 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 70 / -0.0148 20.9939 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 71 C -0.3421 30.2298 42.6809 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 72 * -0.5966 18.5997 17.5559 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 73 ” -0.8165 22.9416 17.1929 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 74 ? -0.3842 18.7418 42.9260 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 75 { -0.9508 19.6443 54.6733 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 76 } -0.9298 19.6443 54.6733 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 77 , 33.6735 9.9854 18.7998 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 78 I 0.4681 5.7857 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 79 ° -0.4347 12.0301 12.0301 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 80 K 0.0844 28.1765 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 81 H 0.2136 29.5489 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 82 q 11.0004 26.7567 43.0439 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 83 & -0.5589 34.4079 42.9260 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 84 ’ -0.4970 9.7632 17.1929 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 85 [ -1.3587 12.9561 55.1777 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 86 - 22.7781 12.1338 5.1628 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 87 Y 0.1431 32.4239 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 88 Q -0.2015 40.0054 50.6958 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 89 " -0.5054 14.8217 10.9485 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 90 ! -0.6984 8.5779 42.9260 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 91 x 11.7273 29.1853 30.3706 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 92 ) -0.6019 11.8887 54.4968 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 93 = 17.1617 23.7632 13.5993 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 94 + 12.0520 23.5040 23.5040 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 95 X 0.0268 32.3782 42.0000 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 96 » 17.1942 21.2303 15.5254 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 97 ' -0.5105 5.1628 10.9485 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 98 ¢ 7.2108 20.2901 39.0664 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 99 Z 0.5263 26.6523 41.7778 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 100 > 11.8813 20.7117 23.6008 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 101 ® 3.6638 38.2219 38.2219 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 102 © 4.0270 38.2219 38.2219 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 103 ] -1.3524 12.9561 55.1777 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 104 é -3.5111 28.1414 46.1769 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 105 z 11.5862 25.2078 30.3706 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 106 _ 45.7262 30.3706 3.7781 -Trebuchet_MS.ttf 29 S 23.5638 42.6809 107 ¥ 0.1617 32.2017 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 1 t -7.3116 20.0679 39.1479 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 2 h -12.2568 24.5269 43.1853 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 3 a -0.0620 25.7702 31.4731 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 4 n -0.0211 24.5269 31.0515 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 5 P -11.2521 25.2665 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 6 o 0.0356 27.8006 31.4731 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 7 e 0.1251 28.1414 31.4731 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 8 : 0.0533 8.5779 31.4731 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 9 r -0.0607 18.3782 31.0515 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 10 l -11.9637 10.7263 43.6069 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 11 i -10.7921 10.9855 41.8006 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 12 1 -10.6520 14.1414 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 13 | -9.0734 4.8826 48.1487 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 14 N -10.5485 28.7266 42.1994 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 15 f -12.1905 19.9642 43.1853 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 16 g -1.1113 25.2287 44.2292 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 17 d -11.9888 26.6153 43.6069 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 18 W -10.8065 48.0809 42.1994 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 19 s -0.0366 19.7857 31.4731 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 20 c 0.1806 25.2078 31.4731 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 21 u 0.6243 24.9855 30.7922 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 22 3 -10.9173 23.3416 42.4217 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 23 ~ 9.9175 20.6080 6.1487 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 24 # -11.0164 30.9707 42.4217 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 25 O -11.1339 34.4666 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 26 ` -14.9657 10.2447 9.3996 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 27 @ -6.7903 39.0664 41.7999 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 28 F -10.5146 25.7708 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 29 S -11.0269 23.5638 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 30 p -0.0140 26.7339 43.0439 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 31 “ -11.5151 22.5779 17.1929 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 32 % -11.2315 31.3564 42.4217 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 33 £ -10.9231 25.4300 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 34 . 22.8713 8.5779 8.5779 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 35 2 -11.1263 25.3115 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 36 5 -11.2242 23.7625 42.4217 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 37 m -0.0360 41.1197 31.0515 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 38 V -10.7917 32.7998 42.1994 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 39 6 -10.8241 25.7708 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 40 w 0.7538 43.4311 30.7922 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 41 T -10.8134 32.4239 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 42 M -11.0034 41.3412 42.1994 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 43 G -10.6405 32.7998 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 44 b -12.0655 26.7339 43.6069 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 45 9 -10.8500 25.5714 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 46 ; -0.0893 9.9854 41.2734 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 47 D -11.1176 29.3267 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 48 L -10.9777 23.7632 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 49 y 0.7760 29.1853 42.3630 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 50 ‘ -11.6977 9.7632 17.1929 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 51 \ -10.8523 20.5722 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 52 R -10.6658 29.1853 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 53 < 0.8503 20.7117 23.6008 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 54 4 -10.8596 28.0000 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 55 8 -10.7179 25.5714 42.4217 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 56 0 -11.0120 26.8974 42.4217 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 57 A -11.2148 34.1037 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 58 E -10.9722 24.9485 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 59 B -10.9257 26.5555 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 60 v 0.8097 28.3630 30.7922 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 61 k -12.0848 25.9116 43.1853 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 62 J -10.7416 21.5692 42.1994 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 63 U -10.6903 29.2897 42.4587 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 64 j -10.9080 15.1853 53.7930 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 65 ( -11.2489 11.8887 54.4968 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 66 7 -10.9119 26.7339 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 67 § -10.9699 22.3934 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 68 $ -15.2459 23.5638 53.2658 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 69 € -11.0524 28.8433 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 70 / -10.9514 20.9939 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 71 C -10.8082 30.2298 42.6809 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 72 * -11.4115 18.5997 17.5559 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 73 ” -11.5362 22.9416 17.1929 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 74 ? -11.4212 18.7418 42.9260 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 75 { -11.7139 19.6443 54.6733 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 76 } -11.4678 19.6443 54.6733 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 77 , 22.3063 9.9854 18.7998 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 78 I -10.7673 5.7857 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 79 ° -11.6380 12.0301 12.0301 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 80 K -11.0720 28.1765 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 81 H -10.9055 29.5489 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 82 q -0.0881 26.7567 43.0439 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 83 & -11.5668 34.4079 42.9260 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 84 ’ -11.6631 9.7632 17.1929 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 85 [ -12.2332 12.9561 55.1777 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 86 - 11.7287 12.1338 5.1628 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 87 Y -10.6546 32.4239 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 88 Q -10.8150 40.0054 50.6958 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 89 " -11.5457 14.8217 10.9485 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 90 ! -11.3920 8.5779 42.9260 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 91 x 0.7014 29.1853 30.3706 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 92 ) -11.3019 11.8887 54.4968 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 93 = 6.0652 23.7632 13.5993 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 94 + 0.9811 23.5040 23.5040 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 95 X -10.8386 32.3782 42.0000 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 96 » 6.2708 21.2303 15.5254 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 97 ' -11.6389 5.1628 10.9485 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 98 ¢ -3.6050 20.2901 39.0664 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 99 Z -10.5663 26.6523 41.7778 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 100 > 1.0086 20.7117 23.6008 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 101 ® -7.2889 38.2219 38.2219 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 102 © -7.1768 38.2219 38.2219 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 103 ] -12.2894 12.9561 55.1777 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 104 é -14.9719 28.1414 46.1769 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 105 z 0.6097 25.2078 30.3706 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 106 _ 34.6641 30.3706 3.7781 -Trebuchet_MS.ttf 30 p 26.7339 43.0439 107 ¥ -10.9244 32.2017 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 1 t 4.0241 20.0679 39.1479 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 2 h -0.6284 24.5269 43.1853 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 3 a 11.7677 25.7702 31.4731 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 4 n 11.4962 24.5269 31.0515 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 5 P 0.5967 25.2665 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 6 o 11.5853 27.8006 31.4731 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 7 e 11.6381 28.1414 31.4731 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 8 : 11.5772 8.5779 31.4731 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 9 r 11.7719 18.3782 31.0515 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 10 l -0.8334 10.7263 43.6069 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 11 i 0.8909 10.9855 41.8006 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 12 1 0.8307 14.1414 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 13 | 2.4612 4.8826 48.1487 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 14 N 0.7605 28.7266 42.1994 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 15 f -0.3204 19.9642 43.1853 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 16 g 10.6319 25.2287 44.2292 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 17 d -0.3636 26.6153 43.6069 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 18 W 0.6202 48.0809 42.1994 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 19 s 11.5771 19.7857 31.4731 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 20 c 11.7120 25.2078 31.4731 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 21 u 12.4704 24.9855 30.7922 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 22 3 0.5934 23.3416 42.4217 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 23 ~ 21.5132 20.6080 6.1487 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 24 # 0.5717 30.9707 42.4217 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 25 O 0.7684 34.4666 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 26 ` -3.0083 10.2447 9.3996 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 27 @ 4.7474 39.0664 41.7999 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 28 F 0.8987 25.7708 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 29 S 0.5028 23.5638 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 30 p 11.6341 26.7339 43.0439 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 31 “ -0.0028 22.5779 17.1929 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 32 % 0.3745 31.3564 42.4217 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 33 £ 0.4747 25.4300 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 34 . 34.6607 8.5779 8.5779 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 35 2 0.5546 25.3115 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 36 5 0.7589 23.7625 42.4217 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 37 m 11.3874 41.1197 31.0515 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 38 V 1.0660 32.7998 42.1994 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 39 6 0.4665 25.7708 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 40 w 12.4286 43.4311 30.7922 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 41 T 0.8984 32.4239 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 42 M 0.9867 41.3412 42.1994 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 43 G 0.9947 32.7998 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 44 b -0.3404 26.7339 43.6069 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 45 9 0.6352 25.5714 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 46 ; 11.7361 9.9854 41.2734 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 47 D 0.8198 29.3267 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 48 L 1.0008 23.7632 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 49 y 12.4521 29.1853 42.3630 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 50 ‘ -0.1154 9.7632 17.1929 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 51 \ 0.7254 20.5722 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 52 R 0.8562 29.1853 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 53 < 13.0571 20.7117 23.6008 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 54 4 0.6910 28.0000 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 55 8 0.6587 25.5714 42.4217 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 56 0 0.5414 26.8974 42.4217 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 57 A 0.6751 34.1037 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 58 E 0.7105 24.9485 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 59 B 0.4762 26.5555 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 60 v 12.4007 28.3630 30.7922 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 61 k -0.5145 25.9116 43.1853 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 62 J 0.9031 21.5692 42.1994 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 63 U 0.9129 29.2897 42.4587 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 64 j 0.8622 15.1853 53.7930 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 65 ( 0.1146 11.8887 54.4968 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 66 7 0.6649 26.7339 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 67 § 0.6377 22.3934 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 68 $ -3.1038 23.5638 53.2658 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 69 € 0.6795 28.8433 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 70 / 0.6943 20.9939 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 71 C 0.7640 30.2298 42.6809 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 72 * -0.0915 18.5997 17.5559 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 73 ” 0.1140 22.9416 17.1929 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 74 ? 0.0764 18.7418 42.9260 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 75 { -0.2768 19.6443 54.6733 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 76 } -0.2720 19.6443 54.6733 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 77 , 34.0232 9.9854 18.7998 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 78 I 1.0068 5.7857 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 79 ° 0.1718 12.0301 12.0301 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 80 K 0.6201 28.1765 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 81 H 1.1271 29.5489 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 82 q 11.5685 26.7567 43.0439 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 83 & 0.0045 34.4079 42.9260 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 84 ’ 0.1543 9.7632 17.1929 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 85 [ -0.7935 12.9561 55.1777 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 86 - 23.4401 12.1338 5.1628 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 87 Y 0.8041 32.4239 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 88 Q 0.6213 40.0054 50.6958 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 89 " 0.0332 14.8217 10.9485 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 90 ! 0.1540 8.5779 42.9260 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 91 x 12.3103 29.1853 30.3706 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 92 ) 0.1660 11.8887 54.4968 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 93 = 17.7247 23.7632 13.5993 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 94 + 12.6733 23.5040 23.5040 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 95 X 0.5380 32.3782 42.0000 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 96 » 17.9459 21.2303 15.5254 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 97 ' 0.4273 5.1628 10.9485 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 98 ¢ 8.1392 20.2901 39.0664 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 99 Z 0.8457 26.6523 41.7778 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 100 > 12.5890 20.7117 23.6008 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 101 ® 4.4667 38.2219 38.2219 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 102 © 4.7478 38.2219 38.2219 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 103 ] -0.7560 12.9561 55.1777 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 104 é -2.9503 28.1414 46.1769 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 105 z 12.3833 25.2078 30.3706 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 106 _ 46.2676 30.3706 3.7781 -Trebuchet_MS.ttf 31 “ 22.5779 17.1929 107 ¥ 0.8490 32.2017 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 1 t 3.7450 20.0679 39.1479 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 2 h -1.0888 24.5269 43.1853 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 3 a 10.9538 25.7702 31.4731 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 4 n 10.7818 24.5269 31.0515 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 5 P 0.1099 25.2665 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 6 o 11.1426 27.8006 31.4731 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 7 e 11.0954 28.1414 31.4731 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 8 : 10.6521 8.5779 31.4731 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 9 r 10.9565 18.3782 31.0515 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 10 l -1.4626 10.7263 43.6069 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 11 i 0.0986 10.9855 41.8006 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 12 1 -0.1926 14.1414 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 13 | 2.0112 4.8826 48.1487 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 14 N 0.2531 28.7266 42.1994 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 15 f -1.2122 19.9642 43.1853 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 16 g 9.5376 25.2287 44.2292 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 17 d -1.1574 26.6153 43.6069 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 18 W 0.0310 48.0809 42.1994 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 19 s 10.9296 19.7857 31.4731 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 20 c 11.0707 25.2078 31.4731 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 21 u 11.6955 24.9855 30.7922 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 22 3 -0.1085 23.3416 42.4217 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 23 ~ 20.6662 20.6080 6.1487 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 24 # -0.0798 30.9707 42.4217 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 25 O 0.0090 34.4666 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 26 ` -3.6826 10.2447 9.3996 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 27 @ 3.9671 39.0664 41.7999 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 28 F 0.0237 25.7708 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 29 S 0.0716 23.5638 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 30 p 10.6881 26.7339 43.0439 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 31 “ -0.6854 22.5779 17.1929 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 32 % 0.1064 31.3564 42.4217 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 33 £ -0.1422 25.4300 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 34 . 33.9373 8.5779 8.5779 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 35 2 -0.1525 25.3115 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 36 5 -0.0922 23.7625 42.4217 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 37 m 11.0059 41.1197 31.0515 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 38 V 0.3173 32.7998 42.1994 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 39 6 -0.0207 25.7708 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 40 w 11.6193 43.4311 30.7922 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 41 T 0.1498 32.4239 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 42 M 0.2991 41.3412 42.1994 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 43 G -0.2413 32.7998 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 44 b -1.1396 26.7339 43.6069 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 45 9 -0.0975 25.5714 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 46 ; 10.8850 9.9854 41.2734 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 47 D -0.0653 29.3267 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 48 L 0.3245 23.7632 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 49 y 11.5924 29.1853 42.3630 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 50 ‘ -0.8291 9.7632 17.1929 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 51 \ -0.0889 20.5722 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 52 R -0.0148 29.1853 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 53 < 12.0706 20.7117 23.6008 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 54 4 0.0740 28.0000 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 55 8 0.0261 25.5714 42.4217 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 56 0 0.0370 26.8974 42.4217 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 57 A 0.0217 34.1037 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 58 E 0.3840 24.9485 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 59 B 0.0714 26.5555 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 60 v 11.5410 28.3630 30.7922 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 61 k -1.1388 25.9116 43.1853 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 62 J -0.0310 21.5692 42.1994 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 63 U 0.4164 29.2897 42.4587 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 64 j 0.2206 15.1853 53.7930 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 65 ( -0.7191 11.8887 54.4968 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 66 7 -0.1404 26.7339 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 67 § -0.1452 22.3934 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 68 $ -4.2070 23.5638 53.2658 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 69 € 0.1851 28.8433 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 70 / -0.0238 20.9939 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 71 C 0.2584 30.2298 42.6809 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 72 * -0.4781 18.5997 17.5559 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 73 ” -0.4145 22.9416 17.1929 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 74 ? -0.4620 18.7418 42.9260 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 75 { -0.4022 19.6443 54.6733 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 76 } -0.5820 19.6443 54.6733 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 77 , 33.5062 9.9854 18.7998 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 78 I 0.4374 5.7857 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 79 ° -0.5846 12.0301 12.0301 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 80 K -0.0562 28.1765 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 81 H 0.2150 29.5489 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 82 q 10.5704 26.7567 43.0439 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 83 & -0.6877 34.4079 42.9260 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 84 ’ -0.8334 9.7632 17.1929 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 85 [ -1.2843 12.9561 55.1777 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 86 - 22.4640 12.1338 5.1628 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 87 Y 0.2484 32.4239 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 88 Q -0.2834 40.0054 50.6958 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 89 " -0.7749 14.8217 10.9485 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 90 ! -0.6680 8.5779 42.9260 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 91 x 11.6016 29.1853 30.3706 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 92 ) -0.4125 11.8887 54.4968 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 93 = 17.3551 23.7632 13.5993 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 94 + 11.9450 23.5040 23.5040 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 95 X 0.0474 32.3782 42.0000 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 96 » 17.1049 21.2303 15.5254 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 97 ' -0.3302 5.1628 10.9485 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 98 ¢ 7.0815 20.2901 39.0664 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 99 Z 0.4004 26.6523 41.7778 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 100 > 12.1308 20.7117 23.6008 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 101 ® 3.8670 38.2219 38.2219 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 102 © 4.1870 38.2219 38.2219 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 103 ] -1.0646 12.9561 55.1777 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 104 é -3.9287 28.1414 46.1769 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 105 z 11.6529 25.2078 30.3706 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 106 _ 46.0371 30.3706 3.7781 -Trebuchet_MS.ttf 32 % 31.3564 42.4217 107 ¥ 0.0876 32.2017 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 1 t 3.1449 20.0679 39.1479 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 2 h -1.1153 24.5269 43.1853 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 3 a 11.0393 25.7702 31.4731 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 4 n 11.1459 24.5269 31.0515 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 5 P -0.0610 25.2665 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 6 o 11.2047 27.8006 31.4731 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 7 e 11.0374 28.1414 31.4731 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 8 : 10.9266 8.5779 31.4731 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 9 r 10.9932 18.3782 31.0515 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 10 l -1.3793 10.7263 43.6069 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 11 i 0.2262 10.9855 41.8006 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 12 1 -0.2181 14.1414 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 13 | 2.1031 4.8826 48.1487 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 14 N -0.1399 28.7266 42.1994 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 15 f -1.6939 19.9642 43.1853 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 16 g 9.6439 25.2287 44.2292 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 17 d -1.2827 26.6153 43.6069 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 18 W 0.0992 48.0809 42.1994 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 19 s 10.5680 19.7857 31.4731 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 20 c 11.0907 25.2078 31.4731 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 21 u 11.6261 24.9855 30.7922 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 22 3 0.2220 23.3416 42.4217 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 23 ~ 21.0292 20.6080 6.1487 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 24 # -0.1644 30.9707 42.4217 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 25 O -0.1634 34.4666 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 26 ` -3.4443 10.2447 9.3996 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 27 @ 4.0356 39.0664 41.7999 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 28 F 0.1899 25.7708 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 29 S -0.3121 23.5638 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 30 p 11.0271 26.7339 43.0439 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 31 “ -0.6025 22.5779 17.1929 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 32 % -0.0979 31.3564 42.4217 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 33 £ 0.2356 25.4300 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 34 . 33.7548 8.5779 8.5779 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 35 2 -0.2205 25.3115 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 36 5 -0.0730 23.7625 42.4217 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 37 m 10.8136 41.1197 31.0515 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 38 V 0.0594 32.7998 42.1994 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 39 6 -0.0864 25.7708 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 40 w 11.6069 43.4311 30.7922 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 41 T 0.1996 32.4239 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 42 M 0.0502 41.3412 42.1994 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 43 G 0.0370 32.7998 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 44 b -1.0902 26.7339 43.6069 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 45 9 0.2043 25.5714 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 46 ; 11.0360 9.9854 41.2734 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 47 D 0.0047 29.3267 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 48 L 0.5110 23.7632 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 49 y 11.6133 29.1853 42.3630 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 50 ‘ -0.6712 9.7632 17.1929 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 51 \ -0.1349 20.5722 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 52 R -0.0798 29.1853 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 53 < 11.9789 20.7117 23.6008 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 54 4 0.2510 28.0000 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 55 8 0.1822 25.5714 42.4217 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 56 0 0.1212 26.8974 42.4217 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 57 A 0.0110 34.1037 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 58 E 0.2815 24.9485 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 59 B -0.1282 26.5555 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 60 v 11.7284 28.3630 30.7922 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 61 k -0.8517 25.9116 43.1853 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 62 J 0.1141 21.5692 42.1994 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 63 U 0.1867 29.2897 42.4587 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 64 j 0.3772 15.1853 53.7930 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 65 ( -0.4332 11.8887 54.4968 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 66 7 -0.0276 26.7339 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 67 § 0.0815 22.3934 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 68 $ -4.2685 23.5638 53.2658 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 69 € 0.2623 28.8433 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 70 / -0.2163 20.9939 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 71 C -0.2462 30.2298 42.6809 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 72 * -0.4568 18.5997 17.5559 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 73 ” -0.9504 22.9416 17.1929 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 74 ? -0.6153 18.7418 42.9260 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 75 { -0.6315 19.6443 54.6733 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 76 } -0.6934 19.6443 54.6733 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 77 , 33.4246 9.9854 18.7998 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 78 I 0.2371 5.7857 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 79 ° -0.7486 12.0301 12.0301 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 80 K 0.1170 28.1765 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 81 H 0.2118 29.5489 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 82 q 11.0207 26.7567 43.0439 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 83 & -0.4497 34.4079 42.9260 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 84 ’ -0.6304 9.7632 17.1929 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 85 [ -1.1889 12.9561 55.1777 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 86 - 22.7525 12.1338 5.1628 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 87 Y 0.4817 32.4239 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 88 Q 0.3730 40.0054 50.6958 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 89 " -0.5785 14.8217 10.9485 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 90 ! -0.5414 8.5779 42.9260 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 91 x 11.3675 29.1853 30.3706 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 92 ) -0.4246 11.8887 54.4968 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 93 = 17.1934 23.7632 13.5993 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 94 + 12.0312 23.5040 23.5040 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 95 X 0.0846 32.3782 42.0000 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 96 » 17.2399 21.2303 15.5254 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 97 ' -0.5418 5.1628 10.9485 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 98 ¢ 6.7981 20.2901 39.0664 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 99 Z 0.4563 26.6523 41.7778 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 100 > 11.8348 20.7117 23.6008 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 101 ® 3.7929 38.2219 38.2219 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 102 © 3.7117 38.2219 38.2219 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 103 ] -1.4538 12.9561 55.1777 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 104 é -3.5872 28.1414 46.1769 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 105 z 11.5087 25.2078 30.3706 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 106 _ 45.8151 30.3706 3.7781 -Trebuchet_MS.ttf 33 £ 25.4300 42.0000 107 ¥ 0.0387 32.2017 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 1 t -30.5182 20.0679 39.1479 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 2 h -35.0290 24.5269 43.1853 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 3 a -22.9515 25.7702 31.4731 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 4 n -22.8777 24.5269 31.0515 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 5 P -34.0898 25.2665 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 6 o -22.7944 27.8006 31.4731 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 7 e -22.8898 28.1414 31.4731 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 8 : -23.0273 8.5779 31.4731 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 9 r -22.8597 18.3782 31.0515 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 10 l -35.2927 10.7263 43.6069 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 11 i -33.8134 10.9855 41.8006 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 12 1 -33.7781 14.1414 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 13 | -32.1989 4.8826 48.1487 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 14 N -33.6527 28.7266 42.1994 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 15 f -35.0052 19.9642 43.1853 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 16 g -23.9503 25.2287 44.2292 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 17 d -34.8389 26.6153 43.6069 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 18 W -33.9328 48.0809 42.1994 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 19 s -22.8654 19.7857 31.4731 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 20 c -22.8154 25.2078 31.4731 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 21 u -22.6486 24.9855 30.7922 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 22 3 -33.9193 23.3416 42.4217 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 23 ~ -13.0011 20.6080 6.1487 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 24 # -34.0077 30.9707 42.4217 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 25 O -33.9935 34.4666 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 26 ` -37.7517 10.2447 9.3996 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 27 @ -30.1568 39.0664 41.7999 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 28 F -33.3929 25.7708 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 29 S -33.7015 23.5638 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 30 p -22.9674 26.7339 43.0439 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 31 “ -34.5809 22.5779 17.1929 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 32 % -33.5847 31.3564 42.4217 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 33 £ -33.9951 25.4300 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 34 . -0.1037 8.5779 8.5779 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 35 2 -33.7509 25.3115 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 36 5 -33.9123 23.7625 42.4217 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 37 m -23.1499 41.1197 31.0515 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 38 V -33.6182 32.7998 42.1994 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 39 6 -33.7788 25.7708 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 40 w -21.9448 43.4311 30.7922 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 41 T -33.6141 32.4239 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 42 M -33.7834 41.3412 42.1994 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 43 G -34.0186 32.7998 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 44 b -35.2146 26.7339 43.6069 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 45 9 -33.9031 25.5714 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 46 ; -22.7138 9.9854 41.2734 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 47 D -33.8808 29.3267 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 48 L -33.7199 23.7632 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 49 y -22.1003 29.1853 42.3630 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 50 ‘ -34.7917 9.7632 17.1929 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 51 \ -33.9474 20.5722 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 52 R -33.8437 29.1853 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 53 < -21.5125 20.7117 23.6008 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 54 4 -33.8688 28.0000 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 55 8 -33.9268 25.5714 42.4217 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 56 0 -34.0009 26.8974 42.4217 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 57 A -33.8836 34.1037 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 58 E -33.6287 24.9485 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 59 B -34.0723 26.5555 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 60 v -22.2993 28.3630 30.7922 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 61 k -34.7050 25.9116 43.1853 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 62 J -33.7862 21.5692 42.1994 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 63 U -33.8367 29.2897 42.4587 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 64 j -33.5539 15.1853 53.7930 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 65 ( -34.5781 11.8887 54.4968 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 66 7 -33.8596 26.7339 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 67 § -33.6684 22.3934 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 68 $ -38.1189 23.5638 53.2658 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 69 € -33.8442 28.8433 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 70 / -33.7168 20.9939 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 71 C -33.7606 30.2298 42.6809 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 72 * -34.1463 18.5997 17.5559 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 73 ” -34.5246 22.9416 17.1929 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 74 ? -34.2650 18.7418 42.9260 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 75 { -34.4906 19.6443 54.6733 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 76 } -34.3736 19.6443 54.6733 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 77 , -0.2227 9.9854 18.7998 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 78 I -33.6642 5.7857 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 79 ° -34.4279 12.0301 12.0301 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 80 K -33.7194 28.1765 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 81 H -33.8277 29.5489 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 82 q -22.9231 26.7567 43.0439 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 83 & -34.3049 34.4079 42.9260 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 84 ’ -34.4449 9.7632 17.1929 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 85 [ -35.2450 12.9561 55.1777 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 86 - -11.1339 12.1338 5.1628 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 87 Y -33.7969 32.4239 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 88 Q -34.0509 40.0054 50.6958 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 89 " -34.4740 14.8217 10.9485 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 90 ! -34.1703 8.5779 42.9260 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 91 x -22.2898 29.1853 30.3706 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 92 ) -34.7041 11.8887 54.4968 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 93 = -16.5460 23.7632 13.5993 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 94 + -21.8882 23.5040 23.5040 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 95 X -33.7302 32.3782 42.0000 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 96 » -16.5687 21.2303 15.5254 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 97 ' -34.5037 5.1628 10.9485 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 98 ¢ -26.4996 20.2901 39.0664 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 99 Z -33.4542 26.6523 41.7778 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 100 > -21.6552 20.7117 23.6008 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 101 ® -29.8004 38.2219 38.2219 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 102 © -30.2876 38.2219 38.2219 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 103 ] -34.8941 12.9561 55.1777 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 104 é -37.9427 28.1414 46.1769 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 105 z -21.8511 25.2078 30.3706 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 106 _ 11.8984 30.3706 3.7781 -Trebuchet_MS.ttf 34 . 8.5779 8.5779 107 ¥ -33.7782 32.2017 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 1 t 3.3506 20.0679 39.1479 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 2 h -1.2343 24.5269 43.1853 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 3 a 11.0469 25.7702 31.4731 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 4 n 11.2269 24.5269 31.0515 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 5 P 0.0424 25.2665 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 6 o 11.1244 27.8006 31.4731 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 7 e 11.0802 28.1414 31.4731 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 8 : 10.8078 8.5779 31.4731 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 9 r 11.0423 18.3782 31.0515 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 10 l -1.1766 10.7263 43.6069 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 11 i 0.4698 10.9855 41.8006 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 12 1 -0.2238 14.1414 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 13 | 1.6289 4.8826 48.1487 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 14 N 0.3923 28.7266 42.1994 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 15 f -1.0978 19.9642 43.1853 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 16 g 9.6124 25.2287 44.2292 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 17 d -1.0398 26.6153 43.6069 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 18 W 0.1755 48.0809 42.1994 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 19 s 10.9423 19.7857 31.4731 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 20 c 10.5473 25.2078 31.4731 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 21 u 11.2941 24.9855 30.7922 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 22 3 0.0675 23.3416 42.4217 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 23 ~ 20.7447 20.6080 6.1487 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 24 # 0.3036 30.9707 42.4217 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 25 O -0.3393 34.4666 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 26 ` -3.8838 10.2447 9.3996 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 27 @ 4.0919 39.0664 41.7999 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 28 F 0.0960 25.7708 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 29 S 0.0769 23.5638 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 30 p 10.7242 26.7339 43.0439 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 31 “ -0.5694 22.5779 17.1929 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 32 % -0.1023 31.3564 42.4217 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 33 £ -0.0681 25.4300 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 34 . 33.5647 8.5779 8.5779 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 35 2 -0.2137 25.3115 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 36 5 -0.0580 23.7625 42.4217 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 37 m 10.3354 41.1197 31.0515 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 38 V 0.1584 32.7998 42.1994 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 39 6 -0.2174 25.7708 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 40 w 11.8343 43.4311 30.7922 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 41 T 0.0498 32.4239 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 42 M 0.3731 41.3412 42.1994 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 43 G -0.0148 32.7998 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 44 b -1.1738 26.7339 43.6069 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 45 9 0.2492 25.5714 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 46 ; 10.6815 9.9854 41.2734 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 47 D 0.2846 29.3267 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 48 L 0.2502 23.7632 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 49 y 11.9335 29.1853 42.3630 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 50 ‘ -0.5891 9.7632 17.1929 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 51 \ -0.0298 20.5722 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 52 R -0.1469 29.1853 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 53 < 11.8171 20.7117 23.6008 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 54 4 -0.1763 28.0000 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 55 8 -0.0842 25.5714 42.4217 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 56 0 0.0990 26.8974 42.4217 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 57 A 0.1524 34.1037 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 58 E 0.4333 24.9485 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 59 B 0.0170 26.5555 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 60 v 11.5451 28.3630 30.7922 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 61 k -1.1483 25.9116 43.1853 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 62 J 0.3025 21.5692 42.1994 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 63 U 0.0605 29.2897 42.4587 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 64 j -0.1560 15.1853 53.7930 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 65 ( -0.7112 11.8887 54.4968 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 66 7 -0.1879 26.7339 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 67 § -0.0160 22.3934 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 68 $ -4.2825 23.5638 53.2658 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 69 € -0.1041 28.8433 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 70 / 0.0936 20.9939 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 71 C -0.2428 30.2298 42.6809 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 72 * -0.4935 18.5997 17.5559 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 73 ” -0.6130 22.9416 17.1929 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 74 ? -0.2468 18.7418 42.9260 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 75 { -0.7241 19.6443 54.6733 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 76 } -0.8881 19.6443 54.6733 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 77 , 33.3702 9.9854 18.7998 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 78 I 0.4000 5.7857 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 79 ° -0.9111 12.0301 12.0301 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 80 K 0.4994 28.1765 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 81 H 0.3010 29.5489 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 82 q 11.0150 26.7567 43.0439 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 83 & -0.5308 34.4079 42.9260 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 84 ’ -0.5892 9.7632 17.1929 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 85 [ -1.2223 12.9561 55.1777 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 86 - 22.7367 12.1338 5.1628 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 87 Y 0.3572 32.4239 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 88 Q 0.1960 40.0054 50.6958 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 89 " -0.6172 14.8217 10.9485 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 90 ! -0.8537 8.5779 42.9260 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 91 x 11.3834 29.1853 30.3706 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 92 ) -0.3661 11.8887 54.4968 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 93 = 17.3761 23.7632 13.5993 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 94 + 12.0788 23.5040 23.5040 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 95 X 0.1230 32.3782 42.0000 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 96 » 17.4442 21.2303 15.5254 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 97 ' -0.3859 5.1628 10.9485 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 98 ¢ 7.2064 20.2901 39.0664 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 99 Z 0.1512 26.6523 41.7778 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 100 > 11.6839 20.7117 23.6008 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 101 ® 3.7084 38.2219 38.2219 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 102 © 3.6354 38.2219 38.2219 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 103 ] -1.3631 12.9561 55.1777 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 104 é -3.6505 28.1414 46.1769 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 105 z 11.5603 25.2078 30.3706 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 106 _ 45.7248 30.3706 3.7781 -Trebuchet_MS.ttf 35 2 25.3115 42.0000 107 ¥ 0.3292 32.2017 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 1 t 3.1715 20.0679 39.1479 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 2 h -1.2996 24.5269 43.1853 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 3 a 11.1277 25.7702 31.4731 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 4 n 10.9734 24.5269 31.0515 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 5 P -0.0941 25.2665 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 6 o 10.9485 27.8006 31.4731 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 7 e 10.8225 28.1414 31.4731 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 8 : 11.2315 8.5779 31.4731 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 9 r 10.9619 18.3782 31.0515 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 10 l -1.1378 10.7263 43.6069 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 11 i -0.0259 10.9855 41.8006 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 12 1 -0.0489 14.1414 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 13 | 1.5381 4.8826 48.1487 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 14 N 0.2150 28.7266 42.1994 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 15 f -1.1881 19.9642 43.1853 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 16 g 9.3548 25.2287 44.2292 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 17 d -0.9851 26.6153 43.6069 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 18 W 0.0031 48.0809 42.1994 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 19 s 11.0288 19.7857 31.4731 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 20 c 11.1216 25.2078 31.4731 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 21 u 11.5372 24.9855 30.7922 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 22 3 -0.0931 23.3416 42.4217 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 23 ~ 20.7403 20.6080 6.1487 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 24 # -0.0788 30.9707 42.4217 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 25 O -0.0596 34.4666 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 26 ` -3.4843 10.2447 9.3996 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 27 @ 3.8698 39.0664 41.7999 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 28 F 0.1431 25.7708 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 29 S -0.0086 23.5638 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 30 p 11.0806 26.7339 43.0439 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 31 “ -0.7473 22.5779 17.1929 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 32 % -0.4031 31.3564 42.4217 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 33 £ 0.1212 25.4300 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 34 . 33.7545 8.5779 8.5779 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 35 2 0.4253 25.3115 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 36 5 -0.1017 23.7625 42.4217 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 37 m 11.1060 41.1197 31.0515 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 38 V 0.3485 32.7998 42.1994 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 39 6 0.0137 25.7708 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 40 w 11.6674 43.4311 30.7922 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 41 T 0.2611 32.4239 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 42 M 0.1437 41.3412 42.1994 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 43 G 0.2634 32.7998 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 44 b -1.1752 26.7339 43.6069 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 45 9 -0.2584 25.5714 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 46 ; 10.9524 9.9854 41.2734 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 47 D 0.0875 29.3267 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 48 L 0.0176 23.7632 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 49 y 11.6255 29.1853 42.3630 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 50 ‘ -0.7741 9.7632 17.1929 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 51 \ -0.2046 20.5722 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 52 R 0.1589 29.1853 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 53 < 11.8359 20.7117 23.6008 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 54 4 0.0206 28.0000 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 55 8 -0.2576 25.5714 42.4217 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 56 0 -0.2082 26.8974 42.4217 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 57 A 0.1589 34.1037 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 58 E 0.2741 24.9485 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 59 B 0.0831 26.5555 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 60 v 11.6679 28.3630 30.7922 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 61 k -1.1700 25.9116 43.1853 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 62 J 0.1358 21.5692 42.1994 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 63 U 0.0862 29.2897 42.4587 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 64 j -0.0027 15.1853 53.7930 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 65 ( -0.3756 11.8887 54.4968 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 66 7 -0.2373 26.7339 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 67 § -0.0826 22.3934 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 68 $ -4.2498 23.5638 53.2658 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 69 € -0.2089 28.8433 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 70 / 0.2757 20.9939 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 71 C -0.2107 30.2298 42.6809 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 72 * -0.3227 18.5997 17.5559 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 73 ” -0.9388 22.9416 17.1929 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 74 ? -0.6937 18.7418 42.9260 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 75 { -0.7093 19.6443 54.6733 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 76 } -0.6646 19.6443 54.6733 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 77 , 33.4739 9.9854 18.7998 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 78 I 0.2471 5.7857 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 79 ° -0.3741 12.0301 12.0301 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 80 K 0.2444 28.1765 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 81 H 0.1689 29.5489 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 82 q 11.1458 26.7567 43.0439 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 83 & -0.3857 34.4079 42.9260 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 84 ’ -0.6291 9.7632 17.1929 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 85 [ -1.1886 12.9561 55.1777 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 86 - 22.8109 12.1338 5.1628 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 87 Y 0.0280 32.4239 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 88 Q -0.2717 40.0054 50.6958 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 89 " -0.6850 14.8217 10.9485 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 90 ! -0.3626 8.5779 42.9260 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 91 x 11.7198 29.1853 30.3706 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 92 ) -0.6370 11.8887 54.4968 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 93 = 17.3408 23.7632 13.5993 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 94 + 12.3316 23.5040 23.5040 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 95 X 0.0845 32.3782 42.0000 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 96 » 17.4275 21.2303 15.5254 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 97 ' -0.5262 5.1628 10.9485 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 98 ¢ 7.1055 20.2901 39.0664 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 99 Z 0.3053 26.6523 41.7778 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 100 > 12.1146 20.7117 23.6008 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 101 ® 3.8488 38.2219 38.2219 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 102 © 3.5219 38.2219 38.2219 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 103 ] -1.2305 12.9561 55.1777 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 104 é -4.0185 28.1414 46.1769 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 105 z 11.8913 25.2078 30.3706 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 106 _ 46.0240 30.3706 3.7781 -Trebuchet_MS.ttf 36 5 23.7625 42.4217 107 ¥ 0.1434 32.2017 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 1 t -7.7746 20.0679 39.1479 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 2 h -11.8006 24.5269 43.1853 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 3 a 0.1317 25.7702 31.4731 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 4 n 0.0229 24.5269 31.0515 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 5 P -10.6843 25.2665 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 6 o -0.0246 27.8006 31.4731 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 7 e 0.0479 28.1414 31.4731 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 8 : -0.0465 8.5779 31.4731 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 9 r -0.0900 18.3782 31.0515 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 10 l -11.9895 10.7263 43.6069 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 11 i -10.7749 10.9855 41.8006 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 12 1 -11.0393 14.1414 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 13 | -8.9666 4.8826 48.1487 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 14 N -10.5743 28.7266 42.1994 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 15 f -12.5366 19.9642 43.1853 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 16 g -1.4091 25.2287 44.2292 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 17 d -12.0586 26.6153 43.6069 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 18 W -10.6538 48.0809 42.1994 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 19 s -0.0448 19.7857 31.4731 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 20 c 0.2122 25.2078 31.4731 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 21 u 0.8041 24.9855 30.7922 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 22 3 -11.3164 23.3416 42.4217 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 23 ~ 10.4553 20.6080 6.1487 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 24 # -11.1459 30.9707 42.4217 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 25 O -11.0196 34.4666 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 26 ` -14.7421 10.2447 9.3996 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 27 @ -7.2351 39.0664 41.7999 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 28 F -10.7849 25.7708 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 29 S -10.7432 23.5638 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 30 p -0.0864 26.7339 43.0439 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 31 “ -11.5851 22.5779 17.1929 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 32 % -10.6257 31.3564 42.4217 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 33 £ -11.0690 25.4300 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 34 . 22.9174 8.5779 8.5779 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 35 2 -10.9264 25.3115 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 36 5 -11.1690 23.7625 42.4217 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 37 m -0.0665 41.1197 31.0515 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 38 V -10.4370 32.7998 42.1994 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 39 6 -10.6226 25.7708 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 40 w 0.7329 43.4311 30.7922 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 41 T -10.5301 32.4239 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 42 M -10.5947 41.3412 42.1994 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 43 G -10.8396 32.7998 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 44 b -12.2461 26.7339 43.6069 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 45 9 -10.6942 25.5714 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 46 ; 0.4651 9.9854 41.2734 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 47 D -10.7116 29.3267 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 48 L -10.4835 23.7632 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 49 y 0.5045 29.1853 42.3630 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 50 ‘ -11.8057 9.7632 17.1929 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 51 \ -10.8399 20.5722 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 52 R -10.5689 29.1853 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 53 < 1.0789 20.7117 23.6008 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 54 4 -10.9438 28.0000 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 55 8 -10.6094 25.5714 42.4217 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 56 0 -10.9975 26.8974 42.4217 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 57 A -11.3030 34.1037 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 58 E -10.8133 24.9485 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 59 B -10.6257 26.5555 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 60 v 0.3940 28.3630 30.7922 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 61 k -12.1587 25.9116 43.1853 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 62 J -10.6596 21.5692 42.1994 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 63 U -10.6801 29.2897 42.4587 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 64 j -10.8112 15.1853 53.7930 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 65 ( -11.8713 11.8887 54.4968 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 66 7 -11.1528 26.7339 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 67 § -10.8443 22.3934 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 68 $ -15.2313 23.5638 53.2658 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 69 € -10.9822 28.8433 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 70 / -10.6688 20.9939 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 71 C -10.9072 30.2298 42.6809 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 72 * -11.5908 18.5997 17.5559 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 73 ” -11.8936 22.9416 17.1929 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 74 ? -11.2424 18.7418 42.9260 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 75 { -11.5179 19.6443 54.6733 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 76 } -11.6595 19.6443 54.6733 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 77 , 22.2098 9.9854 18.7998 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 78 I -10.8682 5.7857 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 79 ° -11.3324 12.0301 12.0301 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 80 K -10.6294 28.1765 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 81 H -10.7129 29.5489 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 82 q 0.1387 26.7567 43.0439 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 83 & -11.5672 34.4079 42.9260 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 84 ’ -11.4324 9.7632 17.1929 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 85 [ -12.2945 12.9561 55.1777 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 86 - 12.0504 12.1338 5.1628 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 87 Y -10.7767 32.4239 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 88 Q -10.9466 40.0054 50.6958 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 89 " -11.3255 14.8217 10.9485 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 90 ! -11.4246 8.5779 42.9260 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 91 x 0.6875 29.1853 30.3706 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 92 ) -11.6408 11.8887 54.4968 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 93 = 6.3952 23.7632 13.5993 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 94 + 0.8081 23.5040 23.5040 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 95 X -10.9761 32.3782 42.0000 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 96 » 6.0838 21.2303 15.5254 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 97 ' -11.6129 5.1628 10.9485 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 98 ¢ -3.8989 20.2901 39.0664 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 99 Z -10.8071 26.6523 41.7778 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 100 > 1.0536 20.7117 23.6008 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 101 ® -7.0464 38.2219 38.2219 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 102 © -6.9124 38.2219 38.2219 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 103 ] -11.9774 12.9561 55.1777 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 104 é -14.3368 28.1414 46.1769 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 105 z 0.5613 25.2078 30.3706 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 106 _ 35.0127 30.3706 3.7781 -Trebuchet_MS.ttf 37 m 41.1197 31.0515 107 ¥ -10.9999 32.2017 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 1 t 3.0998 20.0679 39.1479 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 2 h -1.5317 24.5269 43.1853 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 3 a 10.7039 25.7702 31.4731 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 4 n 10.7162 24.5269 31.0515 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 5 P -0.4685 25.2665 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 6 o 10.8223 27.8006 31.4731 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 7 e 10.6447 28.1414 31.4731 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 8 : 10.4807 8.5779 31.4731 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 9 r 10.6312 18.3782 31.0515 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 10 l -1.3005 10.7263 43.6069 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 11 i -0.0273 10.9855 41.8006 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 12 1 -0.2995 14.1414 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 13 | 1.6454 4.8826 48.1487 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 14 N 0.0377 28.7266 42.1994 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 15 f -1.6854 19.9642 43.1853 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 16 g 9.8011 25.2287 44.2292 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 17 d -1.4713 26.6153 43.6069 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 18 W 0.1162 48.0809 42.1994 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 19 s 10.8076 19.7857 31.4731 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 20 c 10.5809 25.2078 31.4731 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 21 u 11.2029 24.9855 30.7922 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 22 3 -0.0165 23.3416 42.4217 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 23 ~ 20.6164 20.6080 6.1487 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 24 # -0.4893 30.9707 42.4217 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 25 O -0.0340 34.4666 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 26 ` -4.0674 10.2447 9.3996 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 27 @ 3.5213 39.0664 41.7999 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 28 F 0.0893 25.7708 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 29 S -0.0786 23.5638 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 30 p 10.7041 26.7339 43.0439 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 31 “ -1.0439 22.5779 17.1929 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 32 % -0.1330 31.3564 42.4217 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 33 £ -0.3434 25.4300 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 34 . 33.6264 8.5779 8.5779 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 35 2 -0.3885 25.3115 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 36 5 -0.1289 23.7625 42.4217 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 37 m 10.9381 41.1197 31.0515 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 38 V 0.1630 32.7998 42.1994 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 39 6 -0.0343 25.7708 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 40 w 11.4044 43.4311 30.7922 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 41 T -0.1720 32.4239 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 42 M 0.2459 41.3412 42.1994 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 43 G -0.2160 32.7998 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 44 b -1.4696 26.7339 43.6069 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 45 9 -0.0753 25.5714 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 46 ; 10.6312 9.9854 41.2734 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 47 D -0.0959 29.3267 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 48 L -0.0080 23.7632 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 49 y 11.3821 29.1853 42.3630 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 50 ‘ -0.9896 9.7632 17.1929 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 51 \ -0.2934 20.5722 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 52 R -0.2701 29.1853 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 53 < 12.1960 20.7117 23.6008 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 54 4 -0.2785 28.0000 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 55 8 -0.2473 25.5714 42.4217 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 56 0 -0.3438 26.8974 42.4217 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 57 A -0.2206 34.1037 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 58 E -0.1255 24.9485 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 59 B -0.2383 26.5555 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 60 v 11.6724 28.3630 30.7922 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 61 k -1.4263 25.9116 43.1853 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 62 J 0.2496 21.5692 42.1994 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 63 U 0.1663 29.2897 42.4587 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 64 j 0.0556 15.1853 53.7930 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 65 ( -0.4129 11.8887 54.4968 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 66 7 -0.3111 26.7339 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 67 § 0.1968 22.3934 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 68 $ -4.4618 23.5638 53.2658 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 69 € -0.0387 28.8433 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 70 / -0.2995 20.9939 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 71 C -0.5907 30.2298 42.6809 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 72 * -0.8554 18.5997 17.5559 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 73 ” -1.0261 22.9416 17.1929 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 74 ? -0.8703 18.7418 42.9260 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 75 { -0.6952 19.6443 54.6733 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 76 } -0.6854 19.6443 54.6733 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 77 , 33.1287 9.9854 18.7998 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 78 I -0.2547 5.7857 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 79 ° -0.7621 12.0301 12.0301 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 80 K 0.1715 28.1765 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 81 H -0.0086 29.5489 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 82 q 10.7165 26.7567 43.0439 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 83 & -0.6595 34.4079 42.9260 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 84 ’ -1.2677 9.7632 17.1929 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 85 [ -1.3505 12.9561 55.1777 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 86 - 22.5580 12.1338 5.1628 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 87 Y 0.1226 32.4239 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 88 Q -0.3869 40.0054 50.6958 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 89 " -0.5766 14.8217 10.9485 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 90 ! -0.4251 8.5779 42.9260 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 91 x 11.2391 29.1853 30.3706 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 92 ) -0.5906 11.8887 54.4968 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 93 = 17.3023 23.7632 13.5993 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 94 + 11.5333 23.5040 23.5040 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 95 X -0.1765 32.3782 42.0000 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 96 » 17.2220 21.2303 15.5254 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 97 ' -0.9515 5.1628 10.9485 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 98 ¢ 6.9656 20.2901 39.0664 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 99 Z 0.0206 26.6523 41.7778 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 100 > 11.8538 20.7117 23.6008 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 101 ® 3.8019 38.2219 38.2219 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 102 © 3.5188 38.2219 38.2219 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 103 ] -1.6550 12.9561 55.1777 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 104 é -4.0723 28.1414 46.1769 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 105 z 11.1938 25.2078 30.3706 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 106 _ 45.5464 30.3706 3.7781 -Trebuchet_MS.ttf 38 V 32.7998 42.1994 107 ¥ 0.0399 32.2017 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 1 t 3.2914 20.0679 39.1479 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 2 h -1.2666 24.5269 43.1853 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 3 a 11.1666 25.7702 31.4731 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 4 n 10.8911 24.5269 31.0515 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 5 P 0.0519 25.2665 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 6 o 11.0728 27.8006 31.4731 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 7 e 10.9399 28.1414 31.4731 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 8 : 10.9870 8.5779 31.4731 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 9 r 11.0744 18.3782 31.0515 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 10 l -1.1501 10.7263 43.6069 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 11 i 0.1904 10.9855 41.8006 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 12 1 -0.1259 14.1414 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 13 | 1.7033 4.8826 48.1487 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 14 N 0.3584 28.7266 42.1994 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 15 f -1.2491 19.9642 43.1853 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 16 g 9.7422 25.2287 44.2292 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 17 d -1.2382 26.6153 43.6069 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 18 W 0.0967 48.0809 42.1994 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 19 s 10.8197 19.7857 31.4731 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 20 c 10.8699 25.2078 31.4731 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 21 u 11.7092 24.9855 30.7922 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 22 3 0.2296 23.3416 42.4217 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 23 ~ 20.8528 20.6080 6.1487 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 24 # 0.0951 30.9707 42.4217 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 25 O -0.3019 34.4666 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 26 ` -3.6664 10.2447 9.3996 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 27 @ 4.0948 39.0664 41.7999 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 28 F 0.2472 25.7708 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 29 S -0.0567 23.5638 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 30 p 10.8683 26.7339 43.0439 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 31 “ -0.6040 22.5779 17.1929 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 32 % 0.0741 31.3564 42.4217 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 33 £ 0.2261 25.4300 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 34 . 33.7754 8.5779 8.5779 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 35 2 0.3037 25.3115 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 36 5 -0.2397 23.7625 42.4217 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 37 m 10.4914 41.1197 31.0515 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 38 V 0.4539 32.7998 42.1994 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 39 6 0.2336 25.7708 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 40 w 11.7216 43.4311 30.7922 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 41 T 0.1347 32.4239 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 42 M 0.4694 41.3412 42.1994 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 43 G 0.0370 32.7998 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 44 b -1.2713 26.7339 43.6069 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 45 9 -0.1288 25.5714 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 46 ; 10.9586 9.9854 41.2734 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 47 D 0.0164 29.3267 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 48 L 0.2991 23.7632 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 49 y 11.6784 29.1853 42.3630 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 50 ‘ -0.6138 9.7632 17.1929 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 51 \ 0.2368 20.5722 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 52 R -0.1684 29.1853 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 53 < 12.0525 20.7117 23.6008 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 54 4 -0.0658 28.0000 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 55 8 -0.1157 25.5714 42.4217 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 56 0 0.1422 26.8974 42.4217 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 57 A -0.0994 34.1037 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 58 E -0.0535 24.9485 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 59 B 0.1023 26.5555 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 60 v 12.0428 28.3630 30.7922 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 61 k -1.1886 25.9116 43.1853 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 62 J 0.4864 21.5692 42.1994 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 63 U 0.0906 29.2897 42.4587 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 64 j 0.1671 15.1853 53.7930 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 65 ( -0.1462 11.8887 54.4968 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 66 7 0.2533 26.7339 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 67 § 0.0471 22.3934 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 68 $ -4.2487 23.5638 53.2658 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 69 € 0.1079 28.8433 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 70 / -0.2191 20.9939 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 71 C 0.0427 30.2298 42.6809 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 72 * -0.6347 18.5997 17.5559 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 73 ” -0.7241 22.9416 17.1929 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 74 ? -0.6706 18.7418 42.9260 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 75 { -0.8529 19.6443 54.6733 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 76 } -0.6882 19.6443 54.6733 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 77 , 33.4673 9.9854 18.7998 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 78 I 0.3424 5.7857 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 79 ° -0.5453 12.0301 12.0301 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 80 K 0.4258 28.1765 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 81 H 0.0310 29.5489 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 82 q 10.9115 26.7567 43.0439 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 83 & -0.3821 34.4079 42.9260 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 84 ’ -0.6645 9.7632 17.1929 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 85 [ -1.2992 12.9561 55.1777 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 86 - 22.9043 12.1338 5.1628 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 87 Y 0.4486 32.4239 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 88 Q -0.4354 40.0054 50.6958 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 89 " -0.2897 14.8217 10.9485 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 90 ! -0.2771 8.5779 42.9260 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 91 x 11.6486 29.1853 30.3706 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 92 ) -0.6661 11.8887 54.4968 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 93 = 17.0391 23.7632 13.5993 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 94 + 11.7810 23.5040 23.5040 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 95 X -0.0598 32.3782 42.0000 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 96 » 17.5051 21.2303 15.5254 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 97 ' -0.2334 5.1628 10.9485 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 98 ¢ 6.9879 20.2901 39.0664 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 99 Z 0.0498 26.6523 41.7778 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 100 > 12.0079 20.7117 23.6008 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 101 ® 3.7727 38.2219 38.2219 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 102 © 3.7974 38.2219 38.2219 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 103 ] -1.2425 12.9561 55.1777 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 104 é -3.7149 28.1414 46.1769 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 105 z 11.5611 25.2078 30.3706 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 106 _ 45.8271 30.3706 3.7781 -Trebuchet_MS.ttf 39 6 25.7708 42.6809 107 ¥ 0.1174 32.2017 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 1 t -8.3404 20.0679 39.1479 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 2 h -12.6279 24.5269 43.1853 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 3 a -0.6756 25.7702 31.4731 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 4 n -0.5650 24.5269 31.0515 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 5 P -11.5536 25.2665 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 6 o -0.8392 27.8006 31.4731 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 7 e -0.6711 28.1414 31.4731 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 8 : -0.7743 8.5779 31.4731 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 9 r -0.6315 18.3782 31.0515 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 10 l -12.9229 10.7263 43.6069 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 11 i -11.4158 10.9855 41.8006 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 12 1 -11.6936 14.1414 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 13 | -9.9823 4.8826 48.1487 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 14 N -11.1734 28.7266 42.1994 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 15 f -12.9527 19.9642 43.1853 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 16 g -1.9640 25.2287 44.2292 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 17 d -13.0838 26.6153 43.6069 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 18 W -11.2189 48.0809 42.1994 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 19 s -0.4719 19.7857 31.4731 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 20 c -0.7208 25.2078 31.4731 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 21 u -0.2885 24.9855 30.7922 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 22 3 -11.6646 23.3416 42.4217 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 23 ~ 9.1627 20.6080 6.1487 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 24 # -11.6149 30.9707 42.4217 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 25 O -11.7582 34.4666 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 26 ` -15.1471 10.2447 9.3996 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 27 @ -7.5344 39.0664 41.7999 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 28 F -11.1086 25.7708 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 29 S -11.6518 23.5638 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 30 p -1.1057 26.7339 43.0439 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 31 “ -12.3685 22.5779 17.1929 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 32 % -11.4233 31.3564 42.4217 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 33 £ -11.3556 25.4300 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 34 . 22.3474 8.5779 8.5779 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 35 2 -11.5684 25.3115 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 36 5 -11.9745 23.7625 42.4217 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 37 m -0.4237 41.1197 31.0515 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 38 V -11.0981 32.7998 42.1994 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 39 6 -11.6925 25.7708 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 40 w 0.0062 43.4311 30.7922 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 41 T -11.4100 32.4239 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 42 M -11.8530 41.3412 42.1994 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 43 G -11.8918 32.7998 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 44 b -12.7263 26.7339 43.6069 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 45 9 -11.4940 25.5714 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 46 ; -0.8487 9.9854 41.2734 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 47 D -11.7188 29.3267 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 48 L -11.8358 23.7632 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 49 y 0.0741 29.1853 42.3630 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 50 ‘ -12.1093 9.7632 17.1929 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 51 \ -11.8236 20.5722 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 52 R -11.7078 29.1853 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 53 < 0.3260 20.7117 23.6008 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 54 4 -11.5541 28.0000 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 55 8 -11.5408 25.5714 42.4217 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 56 0 -11.6593 26.8974 42.4217 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 57 A -11.5155 34.1037 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 58 E -11.3702 24.9485 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 59 B -11.5952 26.5555 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 60 v -0.1572 28.3630 30.7922 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 61 k -13.0078 25.9116 43.1853 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 62 J -11.4870 21.5692 42.1994 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 63 U -11.4829 29.2897 42.4587 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 64 j -11.1201 15.1853 53.7930 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 65 ( -12.0604 11.8887 54.4968 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 66 7 -11.6327 26.7339 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 67 § -11.5684 22.3934 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 68 $ -15.7053 23.5638 53.2658 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 69 € -11.7019 28.8433 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 70 / -12.0387 20.9939 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 71 C -11.9029 30.2298 42.6809 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 72 * -12.1179 18.5997 17.5559 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 73 ” -12.6108 22.9416 17.1929 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 74 ? -11.8581 18.7418 42.9260 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 75 { -12.4271 19.6443 54.6733 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 76 } -12.0365 19.6443 54.6733 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 77 , 21.7211 9.9854 18.7998 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 78 I -11.2439 5.7857 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 79 ° -12.0510 12.0301 12.0301 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 80 K -11.3720 28.1765 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 81 H -10.9723 29.5489 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 82 q -0.7550 26.7567 43.0439 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 83 & -12.1885 34.4079 42.9260 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 84 ’ -12.4687 9.7632 17.1929 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 85 [ -13.0415 12.9561 55.1777 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 86 - 11.2076 12.1338 5.1628 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 87 Y -11.4050 32.4239 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 88 Q -11.5496 40.0054 50.6958 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 89 " -12.0775 14.8217 10.9485 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 90 ! -12.1056 8.5779 42.9260 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 91 x 0.1248 29.1853 30.3706 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 92 ) -12.1662 11.8887 54.4968 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 93 = 5.6567 23.7632 13.5993 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 94 + -0.1551 23.5040 23.5040 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 95 X -11.2021 32.3782 42.0000 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 96 » 5.9215 21.2303 15.5254 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 97 ' -12.3907 5.1628 10.9485 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 98 ¢ -4.2711 20.2901 39.0664 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 99 Z -11.1424 26.6523 41.7778 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 100 > 0.7428 20.7117 23.6008 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 101 ® -7.7476 38.2219 38.2219 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 102 © -7.9275 38.2219 38.2219 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 103 ] -12.6919 12.9561 55.1777 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 104 é -15.3951 28.1414 46.1769 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 105 z -0.1360 25.2078 30.3706 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 106 _ 34.0246 30.3706 3.7781 -Trebuchet_MS.ttf 40 w 43.4311 30.7922 107 ¥ -11.3621 32.2017 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 1 t 2.9684 20.0679 39.1479 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 2 h -1.7790 24.5269 43.1853 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 3 a 10.7748 25.7702 31.4731 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 4 n 10.8210 24.5269 31.0515 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 5 P -0.1083 25.2665 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 6 o 11.0509 27.8006 31.4731 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 7 e 10.9111 28.1414 31.4731 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 8 : 10.7025 8.5779 31.4731 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 9 r 10.6075 18.3782 31.0515 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 10 l -1.5705 10.7263 43.6069 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 11 i -0.1070 10.9855 41.8006 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 12 1 -0.4842 14.1414 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 13 | 1.8588 4.8826 48.1487 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 14 N -0.2994 28.7266 42.1994 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 15 f -1.4878 19.9642 43.1853 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 16 g 9.5418 25.2287 44.2292 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 17 d -1.6324 26.6153 43.6069 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 18 W 0.3052 48.0809 42.1994 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 19 s 10.4049 19.7857 31.4731 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 20 c 10.8065 25.2078 31.4731 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 21 u 11.4145 24.9855 30.7922 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 22 3 0.1028 23.3416 42.4217 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 23 ~ 20.4846 20.6080 6.1487 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 24 # -0.1880 30.9707 42.4217 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 25 O -0.1795 34.4666 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 26 ` -4.0341 10.2447 9.3996 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 27 @ 3.5419 39.0664 41.7999 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 28 F 0.0886 25.7708 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 29 S -0.1719 23.5638 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 30 p 10.7559 26.7339 43.0439 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 31 “ -1.0393 22.5779 17.1929 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 32 % -0.3851 31.3564 42.4217 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 33 £ -0.1453 25.4300 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 34 . 33.7809 8.5779 8.5779 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 35 2 -0.3259 25.3115 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 36 5 -0.1286 23.7625 42.4217 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 37 m 10.8674 41.1197 31.0515 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 38 V -0.0105 32.7998 42.1994 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 39 6 -0.0350 25.7708 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 40 w 11.4961 43.4311 30.7922 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 41 T -0.1316 32.4239 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 42 M 0.0188 41.3412 42.1994 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 43 G -0.1924 32.7998 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 44 b -1.4493 26.7339 43.6069 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 45 9 -0.4617 25.5714 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 46 ; 10.8660 9.9854 41.2734 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 47 D -0.2324 29.3267 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 48 L -0.0545 23.7632 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 49 y 11.3514 29.1853 42.3630 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 50 ‘ -1.1398 9.7632 17.1929 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 51 \ -0.2320 20.5722 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 52 R -0.0911 29.1853 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 53 < 11.9688 20.7117 23.6008 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 54 4 -0.2375 28.0000 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 55 8 -0.2945 25.5714 42.4217 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 56 0 -0.4160 26.8974 42.4217 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 57 A -0.5082 34.1037 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 58 E -0.0364 24.9485 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 59 B -0.1646 26.5555 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 60 v 11.5640 28.3630 30.7922 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 61 k -1.5074 25.9116 43.1853 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 62 J -0.3718 21.5692 42.1994 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 63 U -0.1738 29.2897 42.4587 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 64 j 0.1020 15.1853 53.7930 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 65 ( -0.7515 11.8887 54.4968 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 66 7 -0.3130 26.7339 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 67 § -0.2251 22.3934 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 68 $ -4.5820 23.5638 53.2658 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 69 € -0.3827 28.8433 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 70 / -0.4453 20.9939 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 71 C -0.0550 30.2298 42.6809 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 72 * -0.7517 18.5997 17.5559 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 73 ” -0.8527 22.9416 17.1929 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 74 ? -0.9959 18.7418 42.9260 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 75 { -1.2544 19.6443 54.6733 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 76 } -1.1298 19.6443 54.6733 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 77 , 33.1258 9.9854 18.7998 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 78 I 0.1853 5.7857 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 79 ° -0.8198 12.0301 12.0301 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 80 K 0.1469 28.1765 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 81 H -0.0073 29.5489 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 82 q 10.6625 26.7567 43.0439 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 83 & -0.6061 34.4079 42.9260 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 84 ’ -0.9006 9.7632 17.1929 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 85 [ -1.2374 12.9561 55.1777 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 86 - 22.7683 12.1338 5.1628 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 87 Y -0.1110 32.4239 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 88 Q -0.2727 40.0054 50.6958 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 89 " -0.5545 14.8217 10.9485 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 90 ! -0.8765 8.5779 42.9260 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 91 x 11.3607 29.1853 30.3706 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 92 ) -0.8741 11.8887 54.4968 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 93 = 16.8020 23.7632 13.5993 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 94 + 11.6045 23.5040 23.5040 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 95 X -0.3129 32.3782 42.0000 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 96 » 16.9658 21.2303 15.5254 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 97 ' -0.5219 5.1628 10.9485 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 98 ¢ 6.7534 20.2901 39.0664 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 99 Z 0.2173 26.6523 41.7778 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 100 > 11.6717 20.7117 23.6008 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 101 ® 3.5838 38.2219 38.2219 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 102 © 3.8305 38.2219 38.2219 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 103 ] -1.8505 12.9561 55.1777 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 104 é -3.8426 28.1414 46.1769 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 105 z 11.1719 25.2078 30.3706 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 106 _ 45.5792 30.3706 3.7781 -Trebuchet_MS.ttf 41 T 32.4239 41.7778 107 ¥ -0.0840 32.2017 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 1 t 3.0113 20.0679 39.1479 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 2 h -1.5276 24.5269 43.1853 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 3 a 10.7649 25.7702 31.4731 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 4 n 10.4317 24.5269 31.0515 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 5 P -0.5629 25.2665 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 6 o 11.0953 27.8006 31.4731 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 7 e 10.5931 28.1414 31.4731 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 8 : 10.8078 8.5779 31.4731 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 9 r 10.8300 18.3782 31.0515 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 10 l -1.6375 10.7263 43.6069 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 11 i -0.4228 10.9855 41.8006 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 12 1 -0.1795 14.1414 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 13 | 1.7018 4.8826 48.1487 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 14 N -0.0669 28.7266 42.1994 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 15 f -1.6300 19.9642 43.1853 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 16 g 9.1153 25.2287 44.2292 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 17 d -1.4144 26.6153 43.6069 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 18 W -0.0831 48.0809 42.1994 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 19 s 10.7047 19.7857 31.4731 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 20 c 10.7666 25.2078 31.4731 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 21 u 11.4220 24.9855 30.7922 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 22 3 -0.0031 23.3416 42.4217 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 23 ~ 20.6279 20.6080 6.1487 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 24 # 0.0956 30.9707 42.4217 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 25 O 0.0380 34.4666 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 26 ` -4.0722 10.2447 9.3996 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 27 @ 3.5583 39.0664 41.7999 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 28 F -0.1407 25.7708 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 29 S -0.1660 23.5638 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 30 p 10.5606 26.7339 43.0439 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 31 “ -0.5085 22.5779 17.1929 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 32 % -0.4714 31.3564 42.4217 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 33 £ -0.0968 25.4300 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 34 . 33.8584 8.5779 8.5779 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 35 2 -0.0133 25.3115 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 36 5 -0.1448 23.7625 42.4217 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 37 m 10.9475 41.1197 31.0515 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 38 V 0.0995 32.7998 42.1994 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 39 6 -0.4701 25.7708 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 40 w 11.6383 43.4311 30.7922 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 41 T -0.1835 32.4239 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 42 M 0.1625 41.3412 42.1994 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 43 G 0.0470 32.7998 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 44 b -1.3787 26.7339 43.6069 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 45 9 -0.3880 25.5714 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 46 ; 10.5532 9.9854 41.2734 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 47 D -0.1367 29.3267 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 48 L -0.1603 23.7632 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 49 y 11.1667 29.1853 42.3630 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 50 ‘ -1.0173 9.7632 17.1929 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 51 \ 0.0339 20.5722 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 52 R -0.4101 29.1853 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 53 < 11.6735 20.7117 23.6008 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 54 4 -0.1559 28.0000 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 55 8 -0.2194 25.5714 42.4217 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 56 0 0.0035 26.8974 42.4217 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 57 A -0.2212 34.1037 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 58 E -0.0205 24.9485 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 59 B -0.3698 26.5555 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 60 v 11.4351 28.3630 30.7922 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 61 k -1.1256 25.9116 43.1853 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 62 J 0.0313 21.5692 42.1994 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 63 U -0.3157 29.2897 42.4587 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 64 j 0.2681 15.1853 53.7930 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 65 ( -0.8241 11.8887 54.4968 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 66 7 -0.2837 26.7339 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 67 § -0.1090 22.3934 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 68 $ -4.3241 23.5638 53.2658 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 69 € 0.0847 28.8433 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 70 / -0.1448 20.9939 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 71 C -0.3097 30.2298 42.6809 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 72 * -1.0082 18.5997 17.5559 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 73 ” -0.9378 22.9416 17.1929 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 74 ? -0.8138 18.7418 42.9260 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 75 { -0.7296 19.6443 54.6733 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 76 } -0.8421 19.6443 54.6733 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 77 , 33.5923 9.9854 18.7998 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 78 I 0.1815 5.7857 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 79 ° -0.5575 12.0301 12.0301 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 80 K -0.0160 28.1765 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 81 H 0.0860 29.5489 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 82 q 10.6989 26.7567 43.0439 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 83 & -0.8390 34.4079 42.9260 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 84 ’ -1.0912 9.7632 17.1929 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 85 [ -1.4210 12.9561 55.1777 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 86 - 22.4876 12.1338 5.1628 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 87 Y -0.0875 32.4239 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 88 Q 0.2112 40.0054 50.6958 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 89 " -0.5636 14.8217 10.9485 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 90 ! -0.8726 8.5779 42.9260 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 91 x 11.2631 29.1853 30.3706 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 92 ) -0.5844 11.8887 54.4968 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 93 = 16.9271 23.7632 13.5993 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 94 + 12.2808 23.5040 23.5040 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 95 X -0.0094 32.3782 42.0000 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 96 » 17.0271 21.2303 15.5254 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 97 ' -0.3571 5.1628 10.9485 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 98 ¢ 6.9064 20.2901 39.0664 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 99 Z 0.1691 26.6523 41.7778 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 100 > 11.9535 20.7117 23.6008 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 101 ® 3.2127 38.2219 38.2219 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 102 © 3.2079 38.2219 38.2219 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 103 ] -1.6887 12.9561 55.1777 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 104 é -3.6977 28.1414 46.1769 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 105 z 11.5023 25.2078 30.3706 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 106 _ 45.4674 30.3706 3.7781 -Trebuchet_MS.ttf 42 M 41.3412 42.1994 107 ¥ 0.0115 32.2017 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 1 t 3.3310 20.0679 39.1479 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 2 h -1.5009 24.5269 43.1853 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 3 a 11.2495 25.7702 31.4731 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 4 n 11.0124 24.5269 31.0515 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 5 P 0.0988 25.2665 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 6 o 10.8563 27.8006 31.4731 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 7 e 11.1335 28.1414 31.4731 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 8 : 10.7635 8.5779 31.4731 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 9 r 11.0081 18.3782 31.0515 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 10 l -1.1878 10.7263 43.6069 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 11 i 0.4080 10.9855 41.8006 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 12 1 0.0226 14.1414 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 13 | 1.6778 4.8826 48.1487 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 14 N -0.0517 28.7266 42.1994 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 15 f -0.9344 19.9642 43.1853 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 16 g 9.6951 25.2287 44.2292 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 17 d -0.7981 26.6153 43.6069 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 18 W 0.0235 48.0809 42.1994 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 19 s 11.0806 19.7857 31.4731 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 20 c 10.9548 25.2078 31.4731 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 21 u 11.6341 24.9855 30.7922 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 22 3 0.0444 23.3416 42.4217 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 23 ~ 20.5636 20.6080 6.1487 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 24 # -0.0928 30.9707 42.4217 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 25 O -0.1605 34.4666 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 26 ` -3.7600 10.2447 9.3996 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 27 @ 3.9401 39.0664 41.7999 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 28 F 0.1286 25.7708 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 29 S 0.0309 23.5638 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 30 p 11.0071 26.7339 43.0439 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 31 “ -0.8638 22.5779 17.1929 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 32 % -0.1281 31.3564 42.4217 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 33 £ -0.3114 25.4300 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 34 . 33.6615 8.5779 8.5779 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 35 2 0.3629 25.3115 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 36 5 -0.4258 23.7625 42.4217 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 37 m 10.7581 41.1197 31.0515 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 38 V 0.2142 32.7998 42.1994 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 39 6 0.0171 25.7708 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 40 w 11.8387 43.4311 30.7922 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 41 T 0.0174 32.4239 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 42 M -0.0314 41.3412 42.1994 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 43 G -0.3378 32.7998 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 44 b -1.4980 26.7339 43.6069 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 45 9 -0.0889 25.5714 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 46 ; 10.8684 9.9854 41.2734 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 47 D -0.0648 29.3267 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 48 L 0.3242 23.7632 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 49 y 11.7543 29.1853 42.3630 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 50 ‘ -0.8140 9.7632 17.1929 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 51 \ -0.3292 20.5722 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 52 R 0.1854 29.1853 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 53 < 12.0809 20.7117 23.6008 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 54 4 0.1124 28.0000 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 55 8 0.0872 25.5714 42.4217 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 56 0 0.1383 26.8974 42.4217 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 57 A -0.0312 34.1037 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 58 E 0.1924 24.9485 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 59 B -0.1063 26.5555 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 60 v 11.4109 28.3630 30.7922 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 61 k -1.1454 25.9116 43.1853 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 62 J 0.2821 21.5692 42.1994 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 63 U 0.2074 29.2897 42.4587 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 64 j 0.2352 15.1853 53.7930 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 65 ( -0.4303 11.8887 54.4968 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 66 7 0.0701 26.7339 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 67 § 0.0323 22.3934 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 68 $ -4.0727 23.5638 53.2658 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 69 € -0.1936 28.8433 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 70 / -0.1056 20.9939 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 71 C 0.0284 30.2298 42.6809 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 72 * -0.3299 18.5997 17.5559 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 73 ” -0.8289 22.9416 17.1929 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 74 ? -0.3818 18.7418 42.9260 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 75 { -0.4396 19.6443 54.6733 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 76 } -0.7637 19.6443 54.6733 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 77 , 33.0087 9.9854 18.7998 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 78 I 0.3851 5.7857 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 79 ° -0.4288 12.0301 12.0301 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 80 K 0.3231 28.1765 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 81 H 0.2677 29.5489 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 82 q 11.0117 26.7567 43.0439 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 83 & -0.3187 34.4079 42.9260 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 84 ’ -1.0658 9.7632 17.1929 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 85 [ -0.9411 12.9561 55.1777 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 86 - 22.9275 12.1338 5.1628 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 87 Y 0.0809 32.4239 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 88 Q 0.0299 40.0054 50.6958 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 89 " -0.1364 14.8217 10.9485 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 90 ! -1.0128 8.5779 42.9260 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 91 x 11.8192 29.1853 30.3706 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 92 ) -0.3357 11.8887 54.4968 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 93 = 17.4255 23.7632 13.5993 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 94 + 11.8854 23.5040 23.5040 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 95 X 0.0284 32.3782 42.0000 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 96 » 17.6195 21.2303 15.5254 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 97 ' -0.3266 5.1628 10.9485 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 98 ¢ 7.4645 20.2901 39.0664 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 99 Z 0.1157 26.6523 41.7778 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 100 > 12.1570 20.7117 23.6008 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 101 ® 4.1927 38.2219 38.2219 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 102 © 3.6326 38.2219 38.2219 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 103 ] -0.9162 12.9561 55.1777 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 104 é -3.7274 28.1414 46.1769 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 105 z 11.7063 25.2078 30.3706 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 106 _ 45.8162 30.3706 3.7781 -Trebuchet_MS.ttf 43 G 32.7998 42.6809 107 ¥ -0.0440 32.2017 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 1 t 4.2946 20.0679 39.1479 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 2 h 0.0014 24.5269 43.1853 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 3 a 12.1382 25.7702 31.4731 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 4 n 12.0343 24.5269 31.0515 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 5 P 1.1820 25.2665 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 6 o 11.8149 27.8006 31.4731 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 7 e 12.0996 28.1414 31.4731 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 8 : 12.3638 8.5779 31.4731 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 9 r 12.2793 18.3782 31.0515 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 10 l 0.1582 10.7263 43.6069 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 11 i 1.3005 10.9855 41.8006 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 12 1 1.3891 14.1414 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 13 | 2.8884 4.8826 48.1487 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 14 N 1.4075 28.7266 42.1994 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 15 f 0.1201 19.9642 43.1853 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 16 g 10.9622 25.2287 44.2292 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 17 d 0.1436 26.6153 43.6069 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 18 W 1.2715 48.0809 42.1994 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 19 s 12.1396 19.7857 31.4731 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 20 c 11.7321 25.2078 31.4731 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 21 u 12.8088 24.9855 30.7922 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 22 3 1.3747 23.3416 42.4217 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 23 ~ 22.2887 20.6080 6.1487 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 24 # 1.4330 30.9707 42.4217 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 25 O 1.4077 34.4666 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 26 ` -2.8638 10.2447 9.3996 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 27 @ 5.2102 39.0664 41.7999 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 28 F 1.5112 25.7708 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 29 S 1.4681 23.5638 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 30 p 12.2971 26.7339 43.0439 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 31 “ 0.5367 22.5779 17.1929 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 32 % 1.4490 31.3564 42.4217 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 33 £ 0.9618 25.4300 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 34 . 35.1636 8.5779 8.5779 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 35 2 1.4046 25.3115 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 36 5 1.2262 23.7625 42.4217 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 37 m 12.0300 41.1197 31.0515 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 38 V 1.4358 32.7998 42.1994 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 39 6 1.4607 25.7708 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 40 w 12.8623 43.4311 30.7922 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 41 T 1.6473 32.4239 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 42 M 1.4945 41.3412 42.1994 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 43 G 1.1643 32.7998 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 44 b -0.0790 26.7339 43.6069 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 45 9 0.9380 25.5714 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 46 ; 12.0421 9.9854 41.2734 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 47 D 1.4428 29.3267 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 48 L 1.4050 23.7632 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 49 y 12.6859 29.1853 42.3630 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 50 ‘ 0.5298 9.7632 17.1929 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 51 \ 1.2807 20.5722 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 52 R 1.3692 29.1853 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 53 < 13.3841 20.7117 23.6008 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 54 4 1.4791 28.0000 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 55 8 1.1694 25.5714 42.4217 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 56 0 1.0786 26.8974 42.4217 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 57 A 1.1476 34.1037 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 58 E 1.5377 24.9485 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 59 B 1.2668 26.5555 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 60 v 12.9867 28.3630 30.7922 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 61 k -0.0846 25.9116 43.1853 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 62 J 1.0131 21.5692 42.1994 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 63 U 1.3114 29.2897 42.4587 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 64 j 1.5419 15.1853 53.7930 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 65 ( 0.7640 11.8887 54.4968 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 66 7 1.0726 26.7339 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 67 § 0.7521 22.3934 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 68 $ -2.8972 23.5638 53.2658 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 69 € 1.0725 28.8433 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 70 / 1.3543 20.9939 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 71 C 1.1011 30.2298 42.6809 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 72 * 0.4930 18.5997 17.5559 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 73 ” 0.5044 22.9416 17.1929 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 74 ? 0.3714 18.7418 42.9260 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 75 { 0.6332 19.6443 54.6733 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 76 } 0.2039 19.6443 54.6733 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 77 , 34.3625 9.9854 18.7998 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 78 I 1.5530 5.7857 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 79 ° 0.9669 12.0301 12.0301 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 80 K 1.5867 28.1765 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 81 H 1.2158 29.5489 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 82 q 12.0958 26.7567 43.0439 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 83 & 0.7825 34.4079 42.9260 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 84 ’ 0.4446 9.7632 17.1929 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 85 [ -0.2122 12.9561 55.1777 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 86 - 24.1465 12.1338 5.1628 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 87 Y 1.4906 32.4239 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 88 Q 1.3021 40.0054 50.6958 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 89 " 0.4128 14.8217 10.9485 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 90 ! 0.7904 8.5779 42.9260 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 91 x 12.9935 29.1853 30.3706 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 92 ) 0.6251 11.8887 54.4968 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 93 = 18.2836 23.7632 13.5993 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 94 + 13.1512 23.5040 23.5040 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 95 X 1.3136 32.3782 42.0000 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 96 » 18.2830 21.2303 15.5254 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 97 ' 0.5119 5.1628 10.9485 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 98 ¢ 8.6488 20.2901 39.0664 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 99 Z 1.5766 26.6523 41.7778 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 100 > 13.4109 20.7117 23.6008 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 101 ® 5.0523 38.2219 38.2219 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 102 © 4.7802 38.2219 38.2219 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 103 ] 0.1572 12.9561 55.1777 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 104 é -2.4024 28.1414 46.1769 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 105 z 12.8499 25.2078 30.3706 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 106 _ 46.6568 30.3706 3.7781 -Trebuchet_MS.ttf 44 b 26.7339 43.6069 107 ¥ 1.6848 32.2017 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 1 t 3.4663 20.0679 39.1479 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 2 h -1.1689 24.5269 43.1853 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 3 a 11.0845 25.7702 31.4731 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 4 n 10.7588 24.5269 31.0515 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 5 P 0.1647 25.2665 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 6 o 10.7856 27.8006 31.4731 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 7 e 11.0112 28.1414 31.4731 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 8 : 11.1201 8.5779 31.4731 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 9 r 10.7185 18.3782 31.0515 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 10 l -1.3472 10.7263 43.6069 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 11 i 0.2125 10.9855 41.8006 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 12 1 0.0054 14.1414 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 13 | 1.9428 4.8826 48.1487 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 14 N 0.4366 28.7266 42.1994 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 15 f -1.1112 19.9642 43.1853 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 16 g 9.8435 25.2287 44.2292 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 17 d -1.0783 26.6153 43.6069 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 18 W 0.0662 48.0809 42.1994 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 19 s 11.0316 19.7857 31.4731 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 20 c 11.1138 25.2078 31.4731 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 21 u 12.0547 24.9855 30.7922 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 22 3 -0.0494 23.3416 42.4217 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 23 ~ 20.8559 20.6080 6.1487 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 24 # -0.0479 30.9707 42.4217 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 25 O 0.0755 34.4666 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 26 ` -4.0884 10.2447 9.3996 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 27 @ 3.9122 39.0664 41.7999 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 28 F 0.2905 25.7708 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 29 S -0.1854 23.5638 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 30 p 11.1484 26.7339 43.0439 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 31 “ -0.7784 22.5779 17.1929 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 32 % -0.3623 31.3564 42.4217 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 33 £ -0.1422 25.4300 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 34 . 33.7653 8.5779 8.5779 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 35 2 0.2401 25.3115 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 36 5 -0.0755 23.7625 42.4217 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 37 m 10.7500 41.1197 31.0515 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 38 V 0.3230 32.7998 42.1994 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 39 6 -0.1561 25.7708 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 40 w 11.6222 43.4311 30.7922 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 41 T 0.1169 32.4239 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 42 M 0.3481 41.3412 42.1994 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 43 G -0.1422 32.7998 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 44 b -1.1779 26.7339 43.6069 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 45 9 0.0740 25.5714 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 46 ; 11.0369 9.9854 41.2734 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 47 D -0.0740 29.3267 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 48 L 0.4126 23.7632 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 49 y 11.7035 29.1853 42.3630 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 50 ‘ -0.6653 9.7632 17.1929 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 51 \ 0.0145 20.5722 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 52 R 0.0864 29.1853 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 53 < 12.1049 20.7117 23.6008 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 54 4 0.2004 28.0000 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 55 8 0.1383 25.5714 42.4217 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 56 0 -0.0665 26.8974 42.4217 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 57 A 0.0785 34.1037 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 58 E -0.0800 24.9485 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 59 B -0.0914 26.5555 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 60 v 11.7273 28.3630 30.7922 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 61 k -1.0902 25.9116 43.1853 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 62 J 0.3633 21.5692 42.1994 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 63 U 0.0568 29.2897 42.4587 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 64 j 0.1994 15.1853 53.7930 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 65 ( -0.6912 11.8887 54.4968 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 66 7 0.2522 26.7339 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 67 § 0.0730 22.3934 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 68 $ -4.3308 23.5638 53.2658 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 69 € 0.0938 28.8433 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 70 / 0.0290 20.9939 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 71 C -0.0159 30.2298 42.6809 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 72 * -0.5044 18.5997 17.5559 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 73 ” -0.7955 22.9416 17.1929 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 74 ? -0.3319 18.7418 42.9260 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 75 { -0.7640 19.6443 54.6733 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 76 } -0.5950 19.6443 54.6733 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 77 , 33.3202 9.9854 18.7998 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 78 I 0.2741 5.7857 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 79 ° -0.3876 12.0301 12.0301 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 80 K 0.0478 28.1765 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 81 H 0.2222 29.5489 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 82 q 11.1709 26.7567 43.0439 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 83 & -0.6360 34.4079 42.9260 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 84 ’ -0.6953 9.7632 17.1929 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 85 [ -1.1959 12.9561 55.1777 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 86 - 22.6652 12.1338 5.1628 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 87 Y 0.4937 32.4239 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 88 Q -0.1600 40.0054 50.6958 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 89 " -0.6122 14.8217 10.9485 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 90 ! -0.5235 8.5779 42.9260 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 91 x 11.7033 29.1853 30.3706 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 92 ) -0.5135 11.8887 54.4968 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 93 = 17.1223 23.7632 13.5993 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 94 + 11.8840 23.5040 23.5040 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 95 X 0.0145 32.3782 42.0000 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 96 » 17.6081 21.2303 15.5254 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 97 ' -0.4141 5.1628 10.9485 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 98 ¢ 7.3260 20.2901 39.0664 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 99 Z -0.0861 26.6523 41.7778 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 100 > 12.1756 20.7117 23.6008 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 101 ® 3.9682 38.2219 38.2219 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 102 © 3.6864 38.2219 38.2219 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 103 ] -1.2474 12.9561 55.1777 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 104 é -3.7575 28.1414 46.1769 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 105 z 11.6216 25.2078 30.3706 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 106 _ 45.6978 30.3706 3.7781 -Trebuchet_MS.ttf 45 9 25.5714 42.6809 107 ¥ 0.1765 32.2017 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 1 t -7.6229 20.0679 39.1479 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 2 h -12.2573 24.5269 43.1853 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 3 a 0.1690 25.7702 31.4731 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 4 n -0.3195 24.5269 31.0515 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 5 P -10.9600 25.2665 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 6 o -0.0860 27.8006 31.4731 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 7 e -0.0476 28.1414 31.4731 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 8 : 0.0741 8.5779 31.4731 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 9 r -0.0062 18.3782 31.0515 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 10 l -12.1400 10.7263 43.6069 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 11 i -10.7125 10.9855 41.8006 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 12 1 -11.0845 14.1414 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 13 | -8.9805 4.8826 48.1487 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 14 N -10.6950 28.7266 42.1994 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 15 f -12.0638 19.9642 43.1853 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 16 g -1.0061 25.2287 44.2292 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 17 d -12.2183 26.6153 43.6069 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 18 W -10.8004 48.0809 42.1994 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 19 s 0.0428 19.7857 31.4731 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 20 c 0.2532 25.2078 31.4731 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 21 u 0.5093 24.9855 30.7922 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 22 3 -10.9547 23.3416 42.4217 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 23 ~ 10.2064 20.6080 6.1487 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 24 # -11.0421 30.9707 42.4217 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 25 O -10.8331 34.4666 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 26 ` -14.2728 10.2447 9.3996 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 27 @ -6.7802 39.0664 41.7999 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 28 F -10.7701 25.7708 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 29 S -10.9296 23.5638 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 30 p -0.1644 26.7339 43.0439 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 31 “ -11.7141 22.5779 17.1929 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 32 % -10.8582 31.3564 42.4217 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 33 £ -11.1230 25.4300 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 34 . 22.8372 8.5779 8.5779 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 35 2 -10.7488 25.3115 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 36 5 -11.1793 23.7625 42.4217 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 37 m -0.1720 41.1197 31.0515 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 38 V -10.7115 32.7998 42.1994 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 39 6 -10.8088 25.7708 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 40 w 0.5950 43.4311 30.7922 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 41 T -10.8214 32.4239 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 42 M -10.7559 41.3412 42.1994 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 43 G -10.9011 32.7998 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 44 b -12.0449 26.7339 43.6069 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 45 9 -11.0269 25.5714 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 46 ; -0.2551 9.9854 41.2734 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 47 D -11.0966 29.3267 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 48 L -10.7444 23.7632 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 49 y 0.5967 29.1853 42.3630 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 50 ‘ -11.6294 9.7632 17.1929 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 51 \ -10.9975 20.5722 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 52 R -10.6049 29.1853 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 53 < 0.9306 20.7117 23.6008 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 54 4 -11.2758 28.0000 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 55 8 -10.9069 25.5714 42.4217 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 56 0 -10.9395 26.8974 42.4217 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 57 A -10.7127 34.1037 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 58 E -10.9676 24.9485 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 59 B -10.9115 26.5555 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 60 v 0.5834 28.3630 30.7922 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 61 k -12.0750 25.9116 43.1853 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 62 J -10.9490 21.5692 42.1994 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 63 U -10.7680 29.2897 42.4587 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 64 j -10.8322 15.1853 53.7930 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 65 ( -11.4972 11.8887 54.4968 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 66 7 -10.9228 26.7339 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 67 § -11.0759 22.3934 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 68 $ -14.9296 23.5638 53.2658 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 69 € -11.0517 28.8433 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 70 / -11.0926 20.9939 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 71 C -11.0555 30.2298 42.6809 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 72 * -11.6220 18.5997 17.5559 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 73 ” -11.4426 22.9416 17.1929 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 74 ? -11.2467 18.7418 42.9260 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 75 { -11.6237 19.6443 54.6733 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 76 } -11.6294 19.6443 54.6733 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 77 , 22.3962 9.9854 18.7998 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 78 I -10.6870 5.7857 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 79 ° -11.4319 12.0301 12.0301 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 80 K -10.7999 28.1765 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 81 H -10.6139 29.5489 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 82 q -0.1349 26.7567 43.0439 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 83 & -11.4010 34.4079 42.9260 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 84 ’ -11.7150 9.7632 17.1929 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 85 [ -11.9725 12.9561 55.1777 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 86 - 11.5734 12.1338 5.1628 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 87 Y -10.6047 32.4239 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 88 Q -10.9441 40.0054 50.6958 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 89 " -11.5508 14.8217 10.9485 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 90 ! -11.6499 8.5779 42.9260 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 91 x 0.7241 29.1853 30.3706 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 92 ) -11.5639 11.8887 54.4968 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 93 = 6.4276 23.7632 13.5993 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 94 + 0.9430 23.5040 23.5040 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 95 X -10.8831 32.3782 42.0000 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 96 » 6.3817 21.2303 15.5254 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 97 ' -11.5850 5.1628 10.9485 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 98 ¢ -3.9515 20.2901 39.0664 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 99 Z -10.8902 26.6523 41.7778 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 100 > 0.9557 20.7117 23.6008 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 101 ® -7.2034 38.2219 38.2219 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 102 © -7.1834 38.2219 38.2219 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 103 ] -12.3264 12.9561 55.1777 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 104 é -14.9795 28.1414 46.1769 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 105 z 0.7640 25.2078 30.3706 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 106 _ 34.8666 30.3706 3.7781 -Trebuchet_MS.ttf 46 ; 9.9854 41.2734 107 ¥ -10.9117 32.2017 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 1 t 3.2119 20.0679 39.1479 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 2 h -1.2433 24.5269 43.1853 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 3 a 11.0065 25.7702 31.4731 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 4 n 11.0396 24.5269 31.0515 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 5 P -0.2158 25.2665 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 6 o 10.9993 27.8006 31.4731 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 7 e 10.9014 28.1414 31.4731 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 8 : 10.9296 8.5779 31.4731 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 9 r 11.0503 18.3782 31.0515 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 10 l -1.1155 10.7263 43.6069 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 11 i -0.0553 10.9855 41.8006 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 12 1 -0.0951 14.1414 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 13 | 1.8130 4.8826 48.1487 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 14 N 0.3184 28.7266 42.1994 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 15 f -1.2917 19.9642 43.1853 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 16 g 9.4044 25.2287 44.2292 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 17 d -1.1845 26.6153 43.6069 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 18 W 0.2041 48.0809 42.1994 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 19 s 10.8025 19.7857 31.4731 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 20 c 11.0007 25.2078 31.4731 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 21 u 11.3772 24.9855 30.7922 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 22 3 -0.0663 23.3416 42.4217 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 23 ~ 20.7965 20.6080 6.1487 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 24 # 0.0160 30.9707 42.4217 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 25 O 0.1037 34.4666 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 26 ` -3.7907 10.2447 9.3996 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 27 @ 3.8238 39.0664 41.7999 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 28 F 0.2683 25.7708 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 29 S 0.1213 23.5638 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 30 p 11.0720 26.7339 43.0439 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 31 “ -0.8308 22.5779 17.1929 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 32 % 0.1617 31.3564 42.4217 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 33 £ -0.0842 25.4300 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 34 . 33.9580 8.5779 8.5779 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 35 2 0.2442 25.3115 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 36 5 0.1106 23.7625 42.4217 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 37 m 11.0327 41.1197 31.0515 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 38 V 0.1852 32.7998 42.1994 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 39 6 0.0667 25.7708 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 40 w 12.1055 43.4311 30.7922 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 41 T 0.4802 32.4239 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 42 M 0.2434 41.3412 42.1994 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 43 G 0.1764 32.7998 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 44 b -1.2324 26.7339 43.6069 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 45 9 0.1455 25.5714 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 46 ; 10.8182 9.9854 41.2734 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 47 D 0.1611 29.3267 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 48 L 0.3467 23.7632 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 49 y 11.6252 29.1853 42.3630 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 50 ‘ -0.5220 9.7632 17.1929 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 51 \ -0.2181 20.5722 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 52 R 0.1394 29.1853 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 53 < 11.8820 20.7117 23.6008 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 54 4 0.3387 28.0000 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 55 8 -0.1687 25.5714 42.4217 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 56 0 0.1821 26.8974 42.4217 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 57 A -0.2442 34.1037 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 58 E 0.4954 24.9485 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 59 B 0.0097 26.5555 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 60 v 12.0133 28.3630 30.7922 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 61 k -1.0620 25.9116 43.1853 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 62 J 0.0550 21.5692 42.1994 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 63 U 0.2809 29.2897 42.4587 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 64 j 0.2898 15.1853 53.7930 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 65 ( -0.1521 11.8887 54.4968 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 66 7 0.2205 26.7339 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 67 § 0.1349 22.3934 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 68 $ -4.1925 23.5638 53.2658 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 69 € 0.3237 28.8433 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 70 / 0.0984 20.9939 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 71 C -0.0251 30.2298 42.6809 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 72 * -0.6881 18.5997 17.5559 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 73 ” -0.8496 22.9416 17.1929 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 74 ? -0.9278 18.7418 42.9260 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 75 { -0.7992 19.6443 54.6733 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 76 } -0.5340 19.6443 54.6733 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 77 , 33.6920 9.9854 18.7998 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 78 I 0.1748 5.7857 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 79 ° -0.5827 12.0301 12.0301 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 80 K 0.1751 28.1765 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 81 H 0.0209 29.5489 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 82 q 10.8643 26.7567 43.0439 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 83 & -0.4954 34.4079 42.9260 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 84 ’ -0.6399 9.7632 17.1929 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 85 [ -1.4195 12.9561 55.1777 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 86 - 22.7346 12.1338 5.1628 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 87 Y 0.2325 32.4239 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 88 Q 0.0784 40.0054 50.6958 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 89 " -0.4550 14.8217 10.9485 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 90 ! -0.5933 8.5779 42.9260 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 91 x 12.1066 29.1853 30.3706 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 92 ) -0.4867 11.8887 54.4968 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 93 = 17.2299 23.7632 13.5993 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 94 + 11.9287 23.5040 23.5040 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 95 X -0.1879 32.3782 42.0000 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 96 » 17.1819 21.2303 15.5254 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 97 ' -0.8051 5.1628 10.9485 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 98 ¢ 7.3391 20.2901 39.0664 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 99 Z 0.1863 26.6523 41.7778 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 100 > 11.8508 20.7117 23.6008 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 101 ® 3.8310 38.2219 38.2219 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 102 © 3.6657 38.2219 38.2219 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 103 ] -0.8369 12.9561 55.1777 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 104 é -3.6279 28.1414 46.1769 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 105 z 11.7640 25.2078 30.3706 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 106 _ 46.0194 30.3706 3.7781 -Trebuchet_MS.ttf 47 D 29.3267 42.0000 107 ¥ 0.1148 32.2017 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 1 t 2.9507 20.0679 39.1479 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 2 h -1.5330 24.5269 43.1853 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 3 a 10.6744 25.7702 31.4731 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 4 n 10.9170 24.5269 31.0515 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 5 P 0.0363 25.2665 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 6 o 10.9193 27.8006 31.4731 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 7 e 10.9463 28.1414 31.4731 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 8 : 10.8801 8.5779 31.4731 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 9 r 10.5590 18.3782 31.0515 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 10 l -1.7069 10.7263 43.6069 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 11 i -0.1878 10.9855 41.8006 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 12 1 -0.5170 14.1414 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 13 | 1.7227 4.8826 48.1487 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 14 N -0.0961 28.7266 42.1994 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 15 f -1.4474 19.9642 43.1853 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 16 g 9.6879 25.2287 44.2292 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 17 d -1.3865 26.6153 43.6069 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 18 W 0.1988 48.0809 42.1994 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 19 s 10.4980 19.7857 31.4731 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 20 c 11.0420 25.2078 31.4731 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 21 u 11.4236 24.9855 30.7922 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 22 3 -0.4533 23.3416 42.4217 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 23 ~ 20.4872 20.6080 6.1487 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 24 # -0.3778 30.9707 42.4217 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 25 O -0.2530 34.4666 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 26 ` -4.0679 10.2447 9.3996 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 27 @ 4.0401 39.0664 41.7999 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 28 F 0.0086 25.7708 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 29 S -0.3011 23.5638 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 30 p 10.5130 26.7339 43.0439 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 31 “ -0.8331 22.5779 17.1929 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 32 % -0.2323 31.3564 42.4217 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 33 £ -0.2992 25.4300 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 34 . 33.6464 8.5779 8.5779 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 35 2 -0.4051 25.3115 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 36 5 -0.4755 23.7625 42.4217 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 37 m 10.5738 41.1197 31.0515 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 38 V -0.0251 32.7998 42.1994 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 39 6 -0.1594 25.7708 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 40 w 11.3361 43.4311 30.7922 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 41 T 0.1335 32.4239 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 42 M -0.0346 41.3412 42.1994 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 43 G -0.3154 32.7998 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 44 b -1.5497 26.7339 43.6069 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 45 9 -0.4667 25.5714 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 46 ; 10.5259 9.9854 41.2734 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 47 D -0.3275 29.3267 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 48 L 0.0563 23.7632 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 49 y 11.4442 29.1853 42.3630 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 50 ‘ -0.6403 9.7632 17.1929 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 51 \ -0.2813 20.5722 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 52 R -0.3630 29.1853 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 53 < 11.7491 20.7117 23.6008 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 54 4 -0.6206 28.0000 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 55 8 -0.1492 25.5714 42.4217 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 56 0 -0.1319 26.8974 42.4217 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 57 A -0.1123 34.1037 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 58 E -0.0178 24.9485 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 59 B -0.1243 26.5555 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 60 v 11.5320 28.3630 30.7922 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 61 k -1.5377 25.9116 43.1853 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 62 J 0.0951 21.5692 42.1994 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 63 U -0.1230 29.2897 42.4587 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 64 j -0.0170 15.1853 53.7930 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 65 ( -0.7266 11.8887 54.4968 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 66 7 -0.1191 26.7339 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 67 § 0.1131 22.3934 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 68 $ -4.6412 23.5638 53.2658 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 69 € -0.1232 28.8433 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 70 / -0.3053 20.9939 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 71 C 0.0003 30.2298 42.6809 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 72 * -0.7723 18.5997 17.5559 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 73 ” -0.6946 22.9416 17.1929 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 74 ? -0.7947 18.7418 42.9260 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 75 { -0.7639 19.6443 54.6733 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 76 } -0.8474 19.6443 54.6733 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 77 , 33.0250 9.9854 18.7998 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 78 I 0.1277 5.7857 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 79 ° -0.4498 12.0301 12.0301 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 80 K -0.0547 28.1765 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 81 H 0.1532 29.5489 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 82 q 11.0148 26.7567 43.0439 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 83 & -0.6886 34.4079 42.9260 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 84 ’ -0.9344 9.7632 17.1929 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 85 [ -1.3989 12.9561 55.1777 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 86 - 22.6639 12.1338 5.1628 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 87 Y 0.1691 32.4239 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 88 Q -0.2638 40.0054 50.6958 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 89 " -0.8130 14.8217 10.9485 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 90 ! -0.4319 8.5779 42.9260 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 91 x 11.3817 29.1853 30.3706 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 92 ) -0.8896 11.8887 54.4968 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 93 = 16.9246 23.7632 13.5993 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 94 + 11.7732 23.5040 23.5040 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 95 X -0.4528 32.3782 42.0000 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 96 » 17.3536 21.2303 15.5254 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 97 ' -0.5256 5.1628 10.9485 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 98 ¢ 7.1369 20.2901 39.0664 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 99 Z 0.1745 26.6523 41.7778 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 100 > 12.0720 20.7117 23.6008 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 101 ® 3.5497 38.2219 38.2219 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 102 © 3.4776 38.2219 38.2219 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 103 ] -1.3538 12.9561 55.1777 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 104 é -4.1750 28.1414 46.1769 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 105 z 11.4747 25.2078 30.3706 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 106 _ 45.6977 30.3706 3.7781 -Trebuchet_MS.ttf 48 L 23.7632 41.7778 107 ¥ -0.1745 32.2017 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 1 t -8.3923 20.0679 39.1479 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 2 h -12.8171 24.5269 43.1853 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 3 a -0.6795 25.7702 31.4731 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 4 n -0.5531 24.5269 31.0515 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 5 P -11.3772 25.2665 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 6 o -0.7331 27.8006 31.4731 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 7 e -0.8871 28.1414 31.4731 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 8 : -0.6399 8.5779 31.4731 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 9 r -0.8693 18.3782 31.0515 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 10 l -12.5764 10.7263 43.6069 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 11 i -11.4123 10.9855 41.8006 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 12 1 -11.6222 14.1414 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 13 | -10.0952 4.8826 48.1487 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 14 N -11.3957 28.7266 42.1994 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 15 f -12.5923 19.9642 43.1853 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 16 g -1.5610 25.2287 44.2292 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 17 d -13.0765 26.6153 43.6069 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 18 W -11.5763 48.0809 42.1994 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 19 s -1.1108 19.7857 31.4731 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 20 c -0.2803 25.2078 31.4731 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 21 u 0.2220 24.9855 30.7922 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 22 3 -11.5661 23.3416 42.4217 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 23 ~ 8.7443 20.6080 6.1487 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 24 # -11.8182 30.9707 42.4217 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 25 O -11.5104 34.4666 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 26 ` -15.2936 10.2447 9.3996 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 27 @ -7.4182 39.0664 41.7999 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 28 F -11.2490 25.7708 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 29 S -11.8014 23.5638 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 30 p -0.7150 26.7339 43.0439 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 31 “ -12.2175 22.5779 17.1929 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 32 % -11.6845 31.3564 42.4217 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 33 £ -11.5315 25.4300 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 34 . 22.1759 8.5779 8.5779 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 35 2 -11.6037 25.3115 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 36 5 -11.4934 23.7625 42.4217 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 37 m -0.8100 41.1197 31.0515 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 38 V -11.4148 32.7998 42.1994 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 39 6 -11.2949 25.7708 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 40 w 0.0090 43.4311 30.7922 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 41 T -11.4033 32.4239 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 42 M -11.3173 41.3412 42.1994 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 43 G -11.9425 32.7998 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 44 b -13.0627 26.7339 43.6069 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 45 9 -11.7477 25.5714 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 46 ; -0.8130 9.9854 41.2734 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 47 D -11.4996 29.3267 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 48 L -11.2578 23.7632 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 49 y 0.0798 29.1853 42.3630 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 50 ‘ -12.4301 9.7632 17.1929 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 51 \ -11.5213 20.5722 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 52 R -11.8025 29.1853 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 53 < 0.3620 20.7117 23.6008 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 54 4 -11.3584 28.0000 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 55 8 -11.4872 25.5714 42.4217 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 56 0 -11.8191 26.8974 42.4217 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 57 A -11.7648 34.1037 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 58 E -11.3025 24.9485 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 59 B -11.2361 26.5555 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 60 v -0.0506 28.3630 30.7922 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 61 k -12.8291 25.9116 43.1853 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 62 J -11.3436 21.5692 42.1994 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 63 U -11.7345 29.2897 42.4587 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 64 j -11.4459 15.1853 53.7930 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 65 ( -12.2461 11.8887 54.4968 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 66 7 -11.9879 26.7339 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 67 § -11.4490 22.3934 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 68 $ -15.7874 23.5638 53.2658 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 69 € -11.5438 28.8433 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 70 / -11.5305 20.9939 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 71 C -11.4648 30.2298 42.6809 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 72 * -12.3885 18.5997 17.5559 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 73 ” -12.1768 22.9416 17.1929 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 74 ? -11.8110 18.7418 42.9260 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 75 { -12.1869 19.6443 54.6733 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 76 } -12.4409 19.6443 54.6733 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 77 , 21.7361 9.9854 18.7998 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 78 I -11.4914 5.7857 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 79 ° -12.1811 12.0301 12.0301 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 80 K -11.5053 28.1765 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 81 H -11.4129 29.5489 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 82 q -0.6291 26.7567 43.0439 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 83 & -12.2609 34.4079 42.9260 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 84 ’ -12.4208 9.7632 17.1929 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 85 [ -12.7305 12.9561 55.1777 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 86 - 10.9962 12.1338 5.1628 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 87 Y -11.4591 32.4239 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 88 Q -11.6860 40.0054 50.6958 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 89 " -12.3947 14.8217 10.9485 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 90 ! -12.1817 8.5779 42.9260 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 91 x -0.2057 29.1853 30.3706 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 92 ) -12.1904 11.8887 54.4968 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 93 = 5.7528 23.7632 13.5993 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 94 + 0.2551 23.5040 23.5040 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 95 X -11.9824 32.3782 42.0000 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 96 » 5.4182 21.2303 15.5254 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 97 ' -11.9100 5.1628 10.9485 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 98 ¢ -4.1630 20.2901 39.0664 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 99 Z -11.1156 26.6523 41.7778 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 100 > 0.3835 20.7117 23.6008 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 101 ® -7.7995 38.2219 38.2219 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 102 © -7.9503 38.2219 38.2219 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 103 ] -12.6615 12.9561 55.1777 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 104 é -14.8945 28.1414 46.1769 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 105 z 0.1461 25.2078 30.3706 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 106 _ 34.1443 30.3706 3.7781 -Trebuchet_MS.ttf 49 y 29.1853 42.3630 107 ¥ -11.3930 32.2017 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 1 t 3.8526 20.0679 39.1479 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 2 h -0.6898 24.5269 43.1853 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 3 a 11.7582 25.7702 31.4731 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 4 n 11.5895 24.5269 31.0515 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 5 P 0.4588 25.2665 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 6 o 11.5895 27.8006 31.4731 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 7 e 11.5093 28.1414 31.4731 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 8 : 11.5815 8.5779 31.4731 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 9 r 11.4666 18.3782 31.0515 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 10 l -0.4807 10.7263 43.6069 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 11 i 0.5575 10.9855 41.8006 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 12 1 0.9284 14.1414 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 13 | 2.2766 4.8826 48.1487 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 14 N 0.6380 28.7266 42.1994 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 15 f -0.7311 19.9642 43.1853 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 16 g 10.2250 25.2287 44.2292 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 17 d -0.4174 26.6153 43.6069 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 18 W 0.7715 48.0809 42.1994 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 19 s 11.7866 19.7857 31.4731 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 20 c 11.7188 25.2078 31.4731 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 21 u 12.2306 24.9855 30.7922 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 22 3 0.6809 23.3416 42.4217 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 23 ~ 21.5297 20.6080 6.1487 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 24 # 0.7713 30.9707 42.4217 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 25 O 0.8231 34.4666 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 26 ` -3.1781 10.2447 9.3996 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 27 @ 4.4615 39.0664 41.7999 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 28 F 1.0396 25.7708 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 29 S 0.7578 23.5638 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 30 p 11.7405 26.7339 43.0439 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 31 “ 0.0153 22.5779 17.1929 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 32 % 0.7179 31.3564 42.4217 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 33 £ 0.7698 25.4300 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 34 . 34.5559 8.5779 8.5779 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 35 2 0.7861 25.3115 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 36 5 0.7622 23.7625 42.4217 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 37 m 11.4426 41.1197 31.0515 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 38 V 0.8084 32.7998 42.1994 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 39 6 0.8213 25.7708 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 40 w 12.4464 43.4311 30.7922 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 41 T 0.9380 32.4239 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 42 M 0.7622 41.3412 42.1994 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 43 G 0.8381 32.7998 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 44 b -0.6108 26.7339 43.6069 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 45 9 0.5728 25.5714 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 46 ; 11.7284 9.9854 41.2734 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 47 D 0.4320 29.3267 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 48 L 0.6753 23.7632 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 49 y 12.3031 29.1853 42.3630 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 50 ‘ -0.0148 9.7632 17.1929 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 51 \ 0.8875 20.5722 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 52 R 0.8562 29.1853 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 53 < 13.0847 20.7117 23.6008 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 54 4 0.6257 28.0000 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 55 8 0.5546 25.5714 42.4217 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 56 0 0.5075 26.8974 42.4217 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 57 A 0.6103 34.1037 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 58 E 0.8821 24.9485 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 59 B 0.5892 26.5555 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 60 v 12.3934 28.3630 30.7922 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 61 k -0.5828 25.9116 43.1853 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 62 J 0.7811 21.5692 42.1994 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 63 U 0.8208 29.2897 42.4587 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 64 j 0.9322 15.1853 53.7930 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 65 ( 0.1765 11.8887 54.4968 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 66 7 0.6525 26.7339 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 67 § 0.4408 22.3934 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 68 $ -3.6491 23.5638 53.2658 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 69 € 0.6661 28.8433 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 70 / 0.6186 20.9939 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 71 C 0.4943 30.2298 42.6809 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 72 * 0.1333 18.5997 17.5559 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 73 ” 0.2670 22.9416 17.1929 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 74 ? 0.2563 18.7418 42.9260 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 75 { -0.2551 19.6443 54.6733 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 76 } -0.0620 19.6443 54.6733 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 77 , 34.1154 9.9854 18.7998 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 78 I 0.9031 5.7857 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 79 ° 0.1765 12.0301 12.0301 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 80 K 1.1398 28.1765 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 81 H 0.8531 29.5489 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 82 q 11.7992 26.7567 43.0439 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 83 & 0.0977 34.4079 42.9260 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 84 ’ 0.2042 9.7632 17.1929 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 85 [ -0.4350 12.9561 55.1777 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 86 - 23.7358 12.1338 5.1628 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 87 Y 0.9960 32.4239 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 88 Q 0.6798 40.0054 50.6958 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 89 " 0.3558 14.8217 10.9485 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 90 ! 0.0032 8.5779 42.9260 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 91 x 12.3012 29.1853 30.3706 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 92 ) 0.5335 11.8887 54.4968 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 93 = 18.0901 23.7632 13.5993 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 94 + 12.6527 23.5040 23.5040 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 95 X 0.8811 32.3782 42.0000 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 96 » 18.0362 21.2303 15.5254 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 97 ' 0.5400 5.1628 10.9485 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 98 ¢ 7.7976 20.2901 39.0664 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 99 Z 0.8423 26.6523 41.7778 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 100 > 12.7814 20.7117 23.6008 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 101 ® 4.6382 38.2219 38.2219 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 102 © 4.4259 38.2219 38.2219 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 103 ] -0.7667 12.9561 55.1777 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 104 é -3.1666 28.1414 46.1769 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 105 z 12.3592 25.2078 30.3706 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 106 _ 46.7122 30.3706 3.7781 -Trebuchet_MS.ttf 50 ‘ 9.7632 17.1929 107 ¥ 0.7747 32.2017 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 1 t 2.9511 20.0679 39.1479 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 2 h -1.4433 24.5269 43.1853 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 3 a 11.0226 25.7702 31.4731 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 4 n 11.0956 24.5269 31.0515 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 5 P -0.0595 25.2665 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 6 o 11.1460 27.8006 31.4731 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 7 e 11.2647 28.1414 31.4731 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 8 : 11.2257 8.5779 31.4731 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 9 r 10.6460 18.3782 31.0515 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 10 l -1.2433 10.7263 43.6069 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 11 i 0.2095 10.9855 41.8006 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 12 1 -0.1907 14.1414 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 13 | 2.2518 4.8826 48.1487 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 14 N -0.2240 28.7266 42.1994 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 15 f -1.2608 19.9642 43.1853 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 16 g 9.7753 25.2287 44.2292 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 17 d -0.9792 26.6153 43.6069 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 18 W 0.2596 48.0809 42.1994 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 19 s 11.3106 19.7857 31.4731 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 20 c 10.9912 25.2078 31.4731 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 21 u 11.4916 24.9855 30.7922 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 22 3 -0.0519 23.3416 42.4217 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 23 ~ 20.6782 20.6080 6.1487 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 24 # -0.0471 30.9707 42.4217 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 25 O -0.2397 34.4666 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 26 ` -3.6265 10.2447 9.3996 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 27 @ 4.3055 39.0664 41.7999 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 28 F 0.2651 25.7708 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 29 S 0.0471 23.5638 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 30 p 10.7530 26.7339 43.0439 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 31 “ -0.8169 22.5779 17.1929 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 32 % -0.0432 31.3564 42.4217 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 33 £ 0.1796 25.4300 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 34 . 33.8052 8.5779 8.5779 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 35 2 0.2637 25.3115 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 36 5 -0.2144 23.7625 42.4217 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 37 m 10.9903 41.1197 31.0515 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 38 V 0.2255 32.7998 42.1994 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 39 6 -0.0352 25.7708 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 40 w 11.6323 43.4311 30.7922 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 41 T 0.1447 32.4239 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 42 M 0.4697 41.3412 42.1994 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 43 G -0.1096 32.7998 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 44 b -1.1334 26.7339 43.6069 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 45 9 0.0461 25.5714 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 46 ; 10.8534 9.9854 41.2734 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 47 D 0.1673 29.3267 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 48 L 0.1453 23.7632 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 49 y 11.6932 29.1853 42.3630 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 50 ‘ -0.7669 9.7632 17.1929 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 51 \ 0.3646 20.5722 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 52 R 0.0755 29.1853 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 53 < 12.2322 20.7117 23.6008 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 54 4 -0.0086 28.0000 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 55 8 0.1321 25.5714 42.4217 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 56 0 0.0552 26.8974 42.4217 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 57 A 0.1879 34.1037 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 58 E 0.1584 24.9485 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 59 B -0.0396 26.5555 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 60 v 11.4986 28.3630 30.7922 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 61 k -1.3443 25.9116 43.1853 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 62 J 0.4147 21.5692 42.1994 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 63 U 0.2000 29.2897 42.4587 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 64 j 0.2480 15.1853 53.7930 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 65 ( -0.5933 11.8887 54.4968 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 66 7 0.1441 26.7339 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 67 § 0.1356 22.3934 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 68 $ -3.9524 23.5638 53.2658 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 69 € 0.0836 28.8433 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 70 / -0.0874 20.9939 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 71 C 0.3052 30.2298 42.6809 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 72 * -0.4525 18.5997 17.5559 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 73 ” -0.6856 22.9416 17.1929 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 74 ? -0.7620 18.7418 42.9260 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 75 { -0.7612 19.6443 54.6733 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 76 } -0.6214 19.6443 54.6733 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 77 , 33.3451 9.9854 18.7998 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 78 I 0.1732 5.7857 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 79 ° -0.7935 12.0301 12.0301 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 80 K -0.0862 28.1765 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 81 H 0.2222 29.5489 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 82 q 10.9356 26.7567 43.0439 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 83 & -0.7497 34.4079 42.9260 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 84 ’ -0.3445 9.7632 17.1929 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 85 [ -1.3141 12.9561 55.1777 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 86 - 22.8694 12.1338 5.1628 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 87 Y 0.3097 32.4239 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 88 Q 0.1706 40.0054 50.6958 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 89 " -0.4410 14.8217 10.9485 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 90 ! -0.2867 8.5779 42.9260 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 91 x 11.6718 29.1853 30.3706 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 92 ) -0.5334 11.8887 54.4968 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 93 = 17.4497 23.7632 13.5993 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 94 + 12.1329 23.5040 23.5040 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 95 X 0.1041 32.3782 42.0000 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 96 » 17.2010 21.2303 15.5254 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 97 ' -0.4377 5.1628 10.9485 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 98 ¢ 7.2161 20.2901 39.0664 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 99 Z 0.4703 26.6523 41.7778 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 100 > 11.7358 20.7117 23.6008 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 101 ® 3.9721 38.2219 38.2219 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 102 © 3.9217 38.2219 38.2219 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 103 ] -1.4044 12.9561 55.1777 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 104 é -3.8667 28.1414 46.1769 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 105 z 11.8082 25.2078 30.3706 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 106 _ 45.8641 30.3706 3.7781 -Trebuchet_MS.ttf 51 \ 20.5722 42.0000 107 ¥ 0.1751 32.2017 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 1 t 3.3579 20.0679 39.1479 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 2 h -0.9734 24.5269 43.1853 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 3 a 10.7707 25.7702 31.4731 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 4 n 10.9039 24.5269 31.0515 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 5 P 0.2238 25.2665 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 6 o 11.1251 27.8006 31.4731 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 7 e 10.8806 28.1414 31.4731 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 8 : 11.0606 8.5779 31.4731 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 9 r 10.9979 18.3782 31.0515 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 10 l -1.4712 10.7263 43.6069 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 11 i 0.2354 10.9855 41.8006 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 12 1 0.0428 14.1414 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 13 | 2.0073 4.8826 48.1487 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 14 N 0.2981 28.7266 42.1994 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 15 f -1.1649 19.9642 43.1853 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 16 g 9.8122 25.2287 44.2292 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 17 d -1.1200 26.6153 43.6069 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 18 W 0.2136 48.0809 42.1994 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 19 s 11.0874 19.7857 31.4731 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 20 c 11.0780 25.2078 31.4731 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 21 u 11.6604 24.9855 30.7922 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 22 3 0.0798 23.3416 42.4217 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 23 ~ 20.6691 20.6080 6.1487 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 24 # -0.1416 30.9707 42.4217 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 25 O -0.0148 34.4666 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 26 ` -3.9536 10.2447 9.3996 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 27 @ 3.9536 39.0664 41.7999 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 28 F 0.0487 25.7708 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 29 S 0.0741 23.5638 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 30 p 11.0480 26.7339 43.0439 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 31 “ -0.6406 22.5779 17.1929 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 32 % 0.0396 31.3564 42.4217 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 33 £ 0.1556 25.4300 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 34 . 33.8619 8.5779 8.5779 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 35 2 -0.3512 25.3115 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 36 5 -0.2158 23.7625 42.4217 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 37 m 10.5147 41.1197 31.0515 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 38 V 0.2765 32.7998 42.1994 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 39 6 0.0946 25.7708 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 40 w 11.6175 43.4311 30.7922 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 41 T 0.2738 32.4239 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 42 M 0.1385 41.3412 42.1994 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 43 G -0.0745 32.7998 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 44 b -1.0316 26.7339 43.6069 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 45 9 0.1469 25.5714 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 46 ; 10.9365 9.9854 41.2734 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 47 D -0.0816 29.3267 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 48 L 0.0122 23.7632 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 49 y 11.7658 29.1853 42.3630 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 50 ‘ -0.9284 9.7632 17.1929 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 51 \ -0.0831 20.5722 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 52 R -0.0792 29.1853 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 53 < 12.1403 20.7117 23.6008 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 54 4 -0.3717 28.0000 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 55 8 -0.0990 25.5714 42.4217 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 56 0 -0.0576 26.8974 42.4217 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 57 A -0.0683 34.1037 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 58 E 0.6979 24.9485 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 59 B -0.1450 26.5555 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 60 v 11.6185 28.3630 30.7922 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 61 k -1.1123 25.9116 43.1853 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 62 J 0.2535 21.5692 42.1994 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 63 U 0.3406 29.2897 42.4587 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 64 j 0.2484 15.1853 53.7930 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 65 ( -0.5723 11.8887 54.4968 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 66 7 -0.0903 26.7339 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 67 § 0.2535 22.3934 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 68 $ -4.2607 23.5638 53.2658 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 69 € -0.0519 28.8433 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 70 / 0.0465 20.9939 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 71 C -0.2744 30.2298 42.6809 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 72 * -0.5203 18.5997 17.5559 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 73 ” -0.8652 22.9416 17.1929 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 74 ? -0.4957 18.7418 42.9260 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 75 { -0.4875 19.6443 54.6733 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 76 } -0.7213 19.6443 54.6733 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 77 , 33.4221 9.9854 18.7998 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 78 I -0.0448 5.7857 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 79 ° -0.3785 12.0301 12.0301 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 80 K 0.2323 28.1765 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 81 H 0.3020 29.5489 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 82 q 10.8634 26.7567 43.0439 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 83 & -0.5871 34.4079 42.9260 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 84 ’ -0.6141 9.7632 17.1929 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 85 [ -1.1711 12.9561 55.1777 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 86 - 22.8238 12.1338 5.1628 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 87 Y 0.4432 32.4239 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 88 Q -0.1543 40.0054 50.6958 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 89 " -0.4347 14.8217 10.9485 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 90 ! -0.5758 8.5779 42.9260 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 91 x 11.2763 29.1853 30.3706 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 92 ) -0.6420 11.8887 54.4968 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 93 = 17.2408 23.7632 13.5993 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 94 + 11.6764 23.5040 23.5040 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 95 X -0.3364 32.3782 42.0000 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 96 » 16.9109 21.2303 15.5254 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 97 ' -0.6678 5.1628 10.9485 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 98 ¢ 7.0371 20.2901 39.0664 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 99 Z 0.3376 26.6523 41.7778 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 100 > 12.0935 20.7117 23.6008 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 101 ® 3.9133 38.2219 38.2219 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 102 © 3.8195 38.2219 38.2219 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 103 ] -1.3964 12.9561 55.1777 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 104 é -3.8765 28.1414 46.1769 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 105 z 11.8053 25.2078 30.3706 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 106 _ 45.7316 30.3706 3.7781 -Trebuchet_MS.ttf 52 R 29.1853 42.0000 107 ¥ 0.4106 32.2017 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 1 t -8.7849 20.0679 39.1479 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 2 h -13.5073 24.5269 43.1853 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 3 a -1.0594 25.7702 31.4731 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 4 n -1.1450 24.5269 31.0515 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 5 P -11.7367 25.2665 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 6 o -1.3780 27.8006 31.4731 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 7 e -1.0371 28.1414 31.4731 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 8 : -0.9763 8.5779 31.4731 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 9 r -1.0786 18.3782 31.0515 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 10 l -13.1580 10.7263 43.6069 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 11 i -12.0002 10.9855 41.8006 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 12 1 -11.8738 14.1414 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 13 | -10.0219 4.8826 48.1487 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 14 N -11.6380 28.7266 42.1994 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 15 f -13.0937 19.9642 43.1853 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 16 g -2.0400 25.2287 44.2292 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 17 d -13.2208 26.6153 43.6069 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 18 W -11.8678 48.0809 42.1994 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 19 s -0.6197 19.7857 31.4731 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 20 c -1.1740 25.2078 31.4731 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 21 u -0.5860 24.9855 30.7922 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 22 3 -11.9089 23.3416 42.4217 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 23 ~ 8.6468 20.6080 6.1487 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 24 # -12.1832 30.9707 42.4217 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 25 O -12.3301 34.4666 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 26 ` -15.7026 10.2447 9.3996 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 27 @ -8.3036 39.0664 41.7999 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 28 F -11.8140 25.7708 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 29 S -11.9770 23.5638 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 30 p -1.2194 26.7339 43.0439 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 31 “ -12.4926 22.5779 17.1929 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 32 % -12.1531 31.3564 42.4217 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 33 £ -11.8671 25.4300 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 34 . 21.6831 8.5779 8.5779 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 35 2 -12.1509 25.3115 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 36 5 -12.0151 23.7625 42.4217 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 37 m -1.2673 41.1197 31.0515 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 38 V -12.0052 32.7998 42.1994 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 39 6 -11.9583 25.7708 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 40 w -0.2497 43.4311 30.7922 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 41 T -11.6036 32.4239 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 42 M -11.7871 41.3412 42.1994 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 43 G -11.9742 32.7998 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 44 b -13.1061 26.7339 43.6069 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 45 9 -11.8718 25.5714 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 46 ; -1.2536 9.9854 41.2734 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 47 D -11.9669 29.3267 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 48 L -11.8749 23.7632 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 49 y -0.3255 29.1853 42.3630 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 50 ‘ -12.7828 9.7632 17.1929 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 51 \ -12.0073 20.5722 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 52 R -11.9560 29.1853 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 53 < -0.2608 20.7117 23.6008 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 54 4 -11.9702 28.0000 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 55 8 -12.1996 25.5714 42.4217 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 56 0 -12.3561 26.8974 42.4217 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 57 A -12.4330 34.1037 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 58 E -11.6573 24.9485 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 59 B -12.2959 26.5555 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 60 v -0.4964 28.3630 30.7922 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 61 k -13.3314 25.9116 43.1853 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 62 J -11.7572 21.5692 42.1994 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 63 U -12.0095 29.2897 42.4587 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 64 j -12.0994 15.1853 53.7930 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 65 ( -12.5555 11.8887 54.4968 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 66 7 -11.6941 26.7339 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 67 § -11.9618 22.3934 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 68 $ -16.5458 23.5638 53.2658 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 69 € -12.1871 28.8433 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 70 / -12.2741 20.9939 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 71 C -12.0675 30.2298 42.6809 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 72 * -12.5805 18.5997 17.5559 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 73 ” -12.5379 22.9416 17.1929 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 74 ? -12.5838 18.7418 42.9260 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 75 { -12.7973 19.6443 54.6733 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 76 } -12.7958 19.6443 54.6733 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 77 , 21.3634 9.9854 18.7998 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 78 I -11.9322 5.7857 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 79 ° -12.4234 12.0301 12.0301 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 80 K -11.7443 28.1765 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 81 H -11.7918 29.5489 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 82 q -1.1486 26.7567 43.0439 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 83 & -12.9611 34.4079 42.9260 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 84 ’ -12.5761 9.7632 17.1929 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 85 [ -13.3191 12.9561 55.1777 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 86 - 11.1772 12.1338 5.1628 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 87 Y -12.0868 32.4239 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 88 Q -12.1120 40.0054 50.6958 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 89 " -12.5805 14.8217 10.9485 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 90 ! -12.5136 8.5779 42.9260 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 91 x -0.1644 29.1853 30.3706 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 92 ) -12.6026 11.8887 54.4968 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 93 = 5.3941 23.7632 13.5993 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 94 + -0.0626 23.5040 23.5040 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 95 X -12.0842 32.3782 42.0000 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 96 » 5.1086 21.2303 15.5254 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 97 ' -12.3849 5.1628 10.9485 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 98 ¢ -5.0870 20.2901 39.0664 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 99 Z -11.6673 26.6523 41.7778 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 100 > -0.3189 20.7117 23.6008 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 101 ® -8.3351 38.2219 38.2219 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 102 © -8.4454 38.2219 38.2219 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 103 ] -13.3172 12.9561 55.1777 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 104 é -15.7136 28.1414 46.1769 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 105 z -0.3476 25.2078 30.3706 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 106 _ 33.5910 30.3706 3.7781 -Trebuchet_MS.ttf 53 < 20.7117 23.6008 107 ¥ -11.8246 32.2017 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 1 t 3.4395 20.0679 39.1479 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 2 h -1.4313 24.5269 43.1853 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 3 a 10.8919 25.7702 31.4731 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 4 n 10.8636 24.5269 31.0515 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 5 P -0.0120 25.2665 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 6 o 10.9078 27.8006 31.4731 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 7 e 10.8374 28.1414 31.4731 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 8 : 10.8080 8.5779 31.4731 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 9 r 10.8033 18.3782 31.0515 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 10 l -1.0018 10.7263 43.6069 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 11 i 0.2912 10.9855 41.8006 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 12 1 0.1123 14.1414 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 13 | 1.8397 4.8826 48.1487 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 14 N 0.2295 28.7266 42.1994 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 15 f -0.9985 19.9642 43.1853 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 16 g 9.7690 25.2287 44.2292 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 17 d -1.2359 26.6153 43.6069 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 18 W 0.5748 48.0809 42.1994 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 19 s 10.7975 19.7857 31.4731 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 20 c 10.8347 25.2078 31.4731 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 21 u 11.7048 24.9855 30.7922 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 22 3 -0.1556 23.3416 42.4217 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 23 ~ 20.7033 20.6080 6.1487 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 24 # 0.2685 30.9707 42.4217 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 25 O -0.2327 34.4666 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 26 ` -3.8931 10.2447 9.3996 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 27 @ 4.0237 39.0664 41.7999 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 28 F 0.1190 25.7708 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 29 S 0.0634 23.5638 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 30 p 10.8125 26.7339 43.0439 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 31 “ -0.9229 22.5779 17.1929 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 32 % -0.2352 31.3564 42.4217 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 33 £ -0.4078 25.4300 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 34 . 33.9359 8.5779 8.5779 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 35 2 -0.1390 25.3115 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 36 5 0.1110 23.7625 42.4217 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 37 m 11.0469 41.1197 31.0515 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 38 V 0.1199 32.7998 42.1994 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 39 6 0.1644 25.7708 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 40 w 11.8413 43.4311 30.7922 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 41 T 0.1890 32.4239 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 42 M 0.4784 41.3412 42.1994 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 43 G 0.3678 32.7998 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 44 b -1.1145 26.7339 43.6069 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 45 9 -0.0928 25.5714 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 46 ; 11.0697 9.9854 41.2734 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 47 D 0.1411 29.3267 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 48 L 0.4193 23.7632 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 49 y 11.5593 29.1853 42.3630 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 50 ‘ -0.5107 9.7632 17.1929 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 51 \ -0.0268 20.5722 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 52 R -0.0889 29.1853 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 53 < 12.2068 20.7117 23.6008 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 54 4 0.2471 28.0000 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 55 8 -0.0846 25.5714 42.4217 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 56 0 -0.2240 26.8974 42.4217 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 57 A -0.0173 34.1037 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 58 E 0.2205 24.9485 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 59 B 0.3970 26.5555 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 60 v 11.6535 28.3630 30.7922 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 61 k -1.0118 25.9116 43.1853 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 62 J 0.1704 21.5692 42.1994 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 63 U 0.0630 29.2897 42.4587 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 64 j 0.0796 15.1853 53.7930 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 65 ( -0.3386 11.8887 54.4968 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 66 7 -0.0932 26.7339 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 67 § -0.0991 22.3934 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 68 $ -4.2295 23.5638 53.2658 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 69 € 0.2728 28.8433 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 70 / 0.2771 20.9939 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 71 C 0.0329 30.2298 42.6809 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 72 * -0.4205 18.5997 17.5559 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 73 ” -0.5922 22.9416 17.1929 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 74 ? -0.7371 18.7418 42.9260 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 75 { -0.5579 19.6443 54.6733 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 76 } -0.8851 19.6443 54.6733 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 77 , 32.9744 9.9854 18.7998 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 78 I 0.1675 5.7857 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 79 ° -0.8034 12.0301 12.0301 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 80 K 0.5528 28.1765 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 81 H 0.3348 29.5489 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 82 q 11.1052 26.7567 43.0439 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 83 & -0.7014 34.4079 42.9260 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 84 ’ -0.8245 9.7632 17.1929 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 85 [ -1.1733 12.9561 55.1777 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 86 - 23.0334 12.1338 5.1628 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 87 Y 0.2596 32.4239 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 88 Q -0.0631 40.0054 50.6958 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 89 " -0.3404 14.8217 10.9485 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 90 ! -0.2925 8.5779 42.9260 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 91 x 11.4560 29.1853 30.3706 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 92 ) -0.6658 11.8887 54.4968 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 93 = 16.7034 23.7632 13.5993 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 94 + 11.7471 23.5040 23.5040 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 95 X 0.0374 32.3782 42.0000 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 96 » 17.2516 21.2303 15.5254 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 97 ' -0.5072 5.1628 10.9485 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 98 ¢ 7.3889 20.2901 39.0664 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 99 Z 0.1319 26.6523 41.7778 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 100 > 12.4693 20.7117 23.6008 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 101 ® 3.8222 38.2219 38.2219 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 102 © 4.0328 38.2219 38.2219 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 103 ] -1.1696 12.9561 55.1777 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 104 é -3.3595 28.1414 46.1769 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 105 z 11.4689 25.2078 30.3706 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 106 _ 45.4308 30.3706 3.7781 -Trebuchet_MS.ttf 54 4 28.0000 42.0000 107 ¥ 0.2782 32.2017 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 1 t 3.2400 20.0679 39.1479 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 2 h -0.8265 24.5269 43.1853 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 3 a 10.8448 25.7702 31.4731 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 4 n 10.8117 24.5269 31.0515 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 5 P 0.1901 25.2665 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 6 o 11.0283 27.8006 31.4731 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 7 e 11.1723 28.1414 31.4731 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 8 : 10.9633 8.5779 31.4731 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 9 r 11.1824 18.3782 31.0515 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 10 l -1.1577 10.7263 43.6069 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 11 i 0.0471 10.9855 41.8006 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 12 1 -0.0389 14.1414 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 13 | 1.9374 4.8826 48.1487 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 14 N 0.3851 28.7266 42.1994 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 15 f -1.4476 19.9642 43.1853 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 16 g 9.8583 25.2287 44.2292 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 17 d -1.1747 26.6153 43.6069 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 18 W 0.2000 48.0809 42.1994 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 19 s 10.8317 19.7857 31.4731 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 20 c 11.2392 25.2078 31.4731 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 21 u 11.4756 24.9855 30.7922 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 22 3 -0.0889 23.3416 42.4217 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 23 ~ 20.5792 20.6080 6.1487 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 24 # -0.0370 30.9707 42.4217 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 25 O -0.0432 34.4666 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 26 ` -4.0993 10.2447 9.3996 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 27 @ 3.9507 39.0664 41.7999 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 28 F 0.0753 25.7708 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 29 S -0.0474 23.5638 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 30 p 11.1527 26.7339 43.0439 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 31 “ -0.4766 22.5779 17.1929 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 32 % -0.1274 31.3564 42.4217 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 33 £ -0.1879 25.4300 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 34 . 33.7207 8.5779 8.5779 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 35 2 0.0175 25.3115 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 36 5 0.0039 23.7625 42.4217 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 37 m 10.9798 41.1197 31.0515 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 38 V 0.1947 32.7998 42.1994 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 39 6 -0.0741 25.7708 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 40 w 11.5971 43.4311 30.7922 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 41 T 0.3866 32.4239 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 42 M 0.1153 41.3412 42.1994 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 43 G -0.1012 32.7998 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 44 b -1.4244 26.7339 43.6069 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 45 9 0.1774 25.5714 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 46 ; 11.2102 9.9854 41.2734 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 47 D -0.1288 29.3267 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 48 L 0.2952 23.7632 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 49 y 11.5566 29.1853 42.3630 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 50 ‘ -0.8102 9.7632 17.1929 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 51 \ -0.1269 20.5722 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 52 R 0.1142 29.1853 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 53 < 12.0572 20.7117 23.6008 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 54 4 -0.0519 28.0000 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 55 8 0.4680 25.5714 42.4217 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 56 0 -0.1732 26.8974 42.4217 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 57 A -0.2152 34.1037 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 58 E 0.0194 24.9485 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 59 B 0.0637 26.5555 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 60 v 11.7198 28.3630 30.7922 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 61 k -1.0269 25.9116 43.1853 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 62 J -0.0900 21.5692 42.1994 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 63 U 0.3198 29.2897 42.4587 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 64 j 0.2591 15.1853 53.7930 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 65 ( -0.2597 11.8887 54.4968 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 66 7 -0.3095 26.7339 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 67 § 0.0675 22.3934 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 68 $ -4.1745 23.5638 53.2658 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 69 € 0.0375 28.8433 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 70 / 0.2383 20.9939 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 71 C 0.0312 30.2298 42.6809 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 72 * -0.7577 18.5997 17.5559 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 73 ” -0.7818 22.9416 17.1929 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 74 ? -0.4834 18.7418 42.9260 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 75 { -0.7594 19.6443 54.6733 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 76 } -0.2764 19.6443 54.6733 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 77 , 33.5313 9.9854 18.7998 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 78 I 0.0346 5.7857 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 79 ° -0.3073 12.0301 12.0301 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 80 K 0.1852 28.1765 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 81 H 0.1352 29.5489 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 82 q 11.0754 26.7567 43.0439 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 83 & -0.5487 34.4079 42.9260 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 84 ’ -0.8044 9.7632 17.1929 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 85 [ -1.1892 12.9561 55.1777 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 86 - 22.7843 12.1338 5.1628 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 87 Y 0.4095 32.4239 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 88 Q 0.1485 40.0054 50.6958 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 89 " -0.4943 14.8217 10.9485 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 90 ! -0.4672 8.5779 42.9260 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 91 x 11.5448 29.1853 30.3706 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 92 ) -0.6988 11.8887 54.4968 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 93 = 16.9705 23.7632 13.5993 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 94 + 11.8017 23.5040 23.5040 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 95 X 0.0683 32.3782 42.0000 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 96 » 17.5341 21.2303 15.5254 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 97 ' -0.3160 5.1628 10.9485 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 98 ¢ 7.2278 20.2901 39.0664 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 99 Z -0.0156 26.6523 41.7778 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 100 > 11.9122 20.7117 23.6008 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 101 ® 3.3865 38.2219 38.2219 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 102 © 4.0194 38.2219 38.2219 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 103 ] -1.2536 12.9561 55.1777 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 104 é -3.5217 28.1414 46.1769 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 105 z 11.8380 25.2078 30.3706 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 106 _ 45.4737 30.3706 3.7781 -Trebuchet_MS.ttf 55 8 25.5714 42.4217 107 ¥ -0.0117 32.2017 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 1 t 3.2112 20.0679 39.1479 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 2 h -1.1853 24.5269 43.1853 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 3 a 11.0730 25.7702 31.4731 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 4 n 11.0451 24.5269 31.0515 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 5 P 0.0620 25.2665 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 6 o 11.0065 27.8006 31.4731 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 7 e 11.0609 28.1414 31.4731 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 8 : 10.7650 8.5779 31.4731 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 9 r 10.7471 18.3782 31.0515 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 10 l -0.9227 10.7263 43.6069 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 11 i 0.2257 10.9855 41.8006 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 12 1 -0.2196 14.1414 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 13 | 1.9730 4.8826 48.1487 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 14 N 0.0401 28.7266 42.1994 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 15 f -1.2753 19.9642 43.1853 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 16 g 9.8064 25.2287 44.2292 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 17 d -1.2285 26.6153 43.6069 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 18 W 0.0165 48.0809 42.1994 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 19 s 10.9115 19.7857 31.4731 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 20 c 10.9290 25.2078 31.4731 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 21 u 11.5003 24.9855 30.7922 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 22 3 -0.0758 23.3416 42.4217 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 23 ~ 20.8098 20.6080 6.1487 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 24 # -0.1980 30.9707 42.4217 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 25 O 0.1791 34.4666 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 26 ` -4.1402 10.2447 9.3996 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 27 @ 3.5727 39.0664 41.7999 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 28 F 0.2739 25.7708 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 29 S 0.1259 23.5638 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 30 p 10.8883 26.7339 43.0439 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 31 “ -0.4305 22.5779 17.1929 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 32 % -0.1658 31.3564 42.4217 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 33 £ -0.1160 25.4300 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 34 . 34.0335 8.5779 8.5779 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 35 2 0.0148 25.3115 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 36 5 -0.2060 23.7625 42.4217 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 37 m 11.0079 41.1197 31.0515 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 38 V -0.0720 32.7998 42.1994 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 39 6 0.0979 25.7708 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 40 w 11.3052 43.4311 30.7922 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 41 T 0.1924 32.4239 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 42 M 0.0711 41.3412 42.1994 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 43 G -0.1471 32.7998 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 44 b -1.3037 26.7339 43.6069 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 45 9 0.1197 25.5714 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 46 ; 10.6269 9.9854 41.2734 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 47 D 0.0769 29.3267 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 48 L 0.1583 23.7632 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 49 y 11.6300 29.1853 42.3630 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 50 ‘ -0.6457 9.7632 17.1929 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 51 \ 0.1658 20.5722 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 52 R 0.4248 29.1853 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 53 < 12.3130 20.7117 23.6008 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 54 4 0.0875 28.0000 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 55 8 -0.1374 25.5714 42.4217 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 56 0 0.0792 26.8974 42.4217 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 57 A 0.0222 34.1037 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 58 E 0.0368 24.9485 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 59 B -0.0312 26.5555 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 60 v 11.8467 28.3630 30.7922 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 61 k -1.3439 25.9116 43.1853 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 62 J 0.2618 21.5692 42.1994 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 63 U 0.2680 29.2897 42.4587 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 64 j 0.1044 15.1853 53.7930 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 65 ( -0.7271 11.8887 54.4968 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 66 7 -0.0975 26.7339 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 67 § -0.1627 22.3934 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 68 $ -4.4770 23.5638 53.2658 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 69 € 0.0889 28.8433 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 70 / -0.0722 20.9939 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 71 C -0.2243 30.2298 42.6809 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 72 * -0.6498 18.5997 17.5559 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 73 ” -0.7879 22.9416 17.1929 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 74 ? -0.3390 18.7418 42.9260 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 75 { -0.5766 19.6443 54.6733 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 76 } -0.7702 19.6443 54.6733 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 77 , 33.3895 9.9854 18.7998 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 78 I 0.3525 5.7857 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 79 ° -0.9800 12.0301 12.0301 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 80 K 0.3833 28.1765 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 81 H 0.3805 29.5489 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 82 q 11.0792 26.7567 43.0439 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 83 & -0.4298 34.4079 42.9260 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 84 ’ -0.8566 9.7632 17.1929 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 85 [ -1.1959 12.9561 55.1777 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 86 - 22.7945 12.1338 5.1628 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 87 Y 0.0564 32.4239 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 88 Q -0.0937 40.0054 50.6958 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 89 " -0.3558 14.8217 10.9485 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 90 ! -0.6245 8.5779 42.9260 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 91 x 11.8588 29.1853 30.3706 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 92 ) -0.5770 11.8887 54.4968 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 93 = 17.4134 23.7632 13.5993 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 94 + 11.8084 23.5040 23.5040 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 95 X 0.3385 32.3782 42.0000 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 96 » 17.4779 21.2303 15.5254 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 97 ' -0.5559 5.1628 10.9485 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 98 ¢ 7.0812 20.2901 39.0664 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 99 Z 0.4784 26.6523 41.7778 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 100 > 12.3083 20.7117 23.6008 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 101 ® 3.5394 38.2219 38.2219 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 102 © 3.5888 38.2219 38.2219 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 103 ] -1.2324 12.9561 55.1777 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 104 é -3.7996 28.1414 46.1769 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 105 z 11.3624 25.2078 30.3706 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 106 _ 45.5009 30.3706 3.7781 -Trebuchet_MS.ttf 56 0 26.8974 42.4217 107 ¥ 0.1943 32.2017 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 1 t 3.4751 20.0679 39.1479 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 2 h -1.2769 24.5269 43.1853 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 3 a 10.9572 25.7702 31.4731 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 4 n 10.9928 24.5269 31.0515 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 5 P -0.0148 25.2665 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 6 o 11.0450 27.8006 31.4731 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 7 e 10.8985 28.1414 31.4731 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 8 : 10.8270 8.5779 31.4731 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 9 r 10.8716 18.3782 31.0515 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 10 l -0.8567 10.7263 43.6069 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 11 i 0.2278 10.9855 41.8006 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 12 1 -0.1614 14.1414 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 13 | 1.7576 4.8826 48.1487 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 14 N 0.2165 28.7266 42.1994 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 15 f -1.3250 19.9642 43.1853 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 16 g 9.8767 25.2287 44.2292 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 17 d -1.0718 26.6153 43.6069 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 18 W 0.0488 48.0809 42.1994 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 19 s 11.0896 19.7857 31.4731 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 20 c 11.1400 25.2078 31.4731 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 21 u 11.6827 24.9855 30.7922 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 22 3 -0.1739 23.3416 42.4217 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 23 ~ 21.0190 20.6080 6.1487 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 24 # 0.0591 30.9707 42.4217 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 25 O 0.0798 34.4666 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 26 ` -3.8804 10.2447 9.3996 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 27 @ 3.8042 39.0664 41.7999 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 28 F -0.0311 25.7708 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 29 S -0.1189 23.5638 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 30 p 10.9605 26.7339 43.0439 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 31 “ -0.5092 22.5779 17.1929 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 32 % 0.2595 31.3564 42.4217 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 33 £ -0.1200 25.4300 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 34 . 33.7946 8.5779 8.5779 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 35 2 0.1778 25.3115 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 36 5 -0.0385 23.7625 42.4217 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 37 m 10.7424 41.1197 31.0515 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 38 V 0.2644 32.7998 42.1994 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 39 6 0.2681 25.7708 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 40 w 11.5857 43.4311 30.7922 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 41 T 0.0988 32.4239 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 42 M 0.5567 41.3412 42.1994 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 43 G -0.0955 32.7998 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 44 b -1.1421 26.7339 43.6069 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 45 9 0.1556 25.5714 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 46 ; 11.1057 9.9854 41.2734 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 47 D 0.0951 29.3267 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 48 L 0.2593 23.7632 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 49 y 11.5362 29.1853 42.3630 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 50 ‘ -0.7731 9.7632 17.1929 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 51 \ -0.0308 20.5722 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 52 R 0.0509 29.1853 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 53 < 11.7172 20.7117 23.6008 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 54 4 -0.1023 28.0000 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 55 8 -0.0047 25.5714 42.4217 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 56 0 -0.0399 26.8974 42.4217 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 57 A -0.1400 34.1037 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 58 E 0.4152 24.9485 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 59 B -0.3410 26.5555 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 60 v 11.4349 28.3630 30.7922 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 61 k -1.3492 25.9116 43.1853 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 62 J 0.0418 21.5692 42.1994 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 63 U 0.1037 29.2897 42.4587 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 64 j 0.1730 15.1853 53.7930 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 65 ( -0.5403 11.8887 54.4968 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 66 7 0.0885 26.7339 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 67 § 0.0774 22.3934 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 68 $ -4.0369 23.5638 53.2658 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 69 € -0.1417 28.8433 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 70 / -0.1126 20.9939 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 71 C 0.1649 30.2298 42.6809 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 72 * -0.4208 18.5997 17.5559 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 73 ” -1.0499 22.9416 17.1929 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 74 ? -0.4846 18.7418 42.9260 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 75 { -0.7879 19.6443 54.6733 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 76 } -0.7966 19.6443 54.6733 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 77 , 33.2291 9.9854 18.7998 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 78 I -0.0403 5.7857 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 79 ° -0.4764 12.0301 12.0301 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 80 K 0.3975 28.1765 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 81 H 0.5889 29.5489 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 82 q 10.9042 26.7567 43.0439 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 83 & -0.2613 34.4079 42.9260 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 84 ’ -1.0282 9.7632 17.1929 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 85 [ -1.0911 12.9561 55.1777 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 86 - 22.8757 12.1338 5.1628 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 87 Y 0.2697 32.4239 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 88 Q 0.2670 40.0054 50.6958 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 89 " -0.2151 14.8217 10.9485 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 90 ! -0.3680 8.5779 42.9260 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 91 x 11.7553 29.1853 30.3706 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 92 ) -0.3295 11.8887 54.4968 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 93 = 17.1087 23.7632 13.5993 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 94 + 11.7682 23.5040 23.5040 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 95 X -0.1854 32.3782 42.0000 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 96 » 17.1154 21.2303 15.5254 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 97 ' -0.7877 5.1628 10.9485 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 98 ¢ 7.2147 20.2901 39.0664 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 99 Z 0.4489 26.6523 41.7778 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 100 > 12.1083 20.7117 23.6008 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 101 ® 3.6729 38.2219 38.2219 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 102 © 3.8954 38.2219 38.2219 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 103 ] -1.4063 12.9561 55.1777 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 104 é -3.5147 28.1414 46.1769 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 105 z 11.4027 25.2078 30.3706 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 106 _ 45.7841 30.3706 3.7781 -Trebuchet_MS.ttf 57 A 34.1037 42.0000 107 ¥ 0.2316 32.2017 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 1 t 3.2469 20.0679 39.1479 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 2 h -1.4138 24.5269 43.1853 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 3 a 10.6817 25.7702 31.4731 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 4 n 10.6095 24.5269 31.0515 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 5 P -0.2175 25.2665 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 6 o 10.5380 27.8006 31.4731 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 7 e 10.9254 28.1414 31.4731 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 8 : 10.5947 8.5779 31.4731 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 9 r 10.7899 18.3782 31.0515 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 10 l -1.6489 10.7263 43.6069 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 11 i -0.2135 10.9855 41.8006 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 12 1 -0.2400 14.1414 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 13 | 1.6214 4.8826 48.1487 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 14 N -0.0370 28.7266 42.1994 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 15 f -1.2294 19.9642 43.1853 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 16 g 9.4412 25.2287 44.2292 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 17 d -1.4028 26.6153 43.6069 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 18 W 0.0951 48.0809 42.1994 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 19 s 10.5452 19.7857 31.4731 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 20 c 10.3204 25.2078 31.4731 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 21 u 11.3179 24.9855 30.7922 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 22 3 -0.2934 23.3416 42.4217 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 23 ~ 20.4695 20.6080 6.1487 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 24 # -0.4977 30.9707 42.4217 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 25 O -0.2944 34.4666 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 26 ` -4.0189 10.2447 9.3996 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 27 @ 3.7998 39.0664 41.7999 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 28 F 0.0153 25.7708 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 29 S -0.1748 23.5638 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 30 p 10.7288 26.7339 43.0439 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 31 “ -0.8404 22.5779 17.1929 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 32 % -0.2059 31.3564 42.4217 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 33 £ -0.0075 25.4300 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 34 . 33.7764 8.5779 8.5779 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 35 2 -0.4609 25.3115 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 36 5 -0.2284 23.7625 42.4217 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 37 m 10.7148 41.1197 31.0515 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 38 V 0.1419 32.7998 42.1994 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 39 6 -0.2523 25.7708 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 40 w 11.3984 43.4311 30.7922 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 41 T -0.2191 32.4239 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 42 M 0.0457 41.3412 42.1994 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 43 G -0.3424 32.7998 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 44 b -1.1553 26.7339 43.6069 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 45 9 -0.2255 25.5714 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 46 ; 10.8108 9.9854 41.2734 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 47 D -0.4664 29.3267 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 48 L 0.0605 23.7632 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 49 y 11.3637 29.1853 42.3630 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 50 ‘ -0.8098 9.7632 17.1929 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 51 \ -0.1391 20.5722 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 52 R -0.5930 29.1853 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 53 < 11.6126 20.7117 23.6008 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 54 4 -0.0216 28.0000 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 55 8 -0.3755 25.5714 42.4217 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 56 0 -0.2284 26.8974 42.4217 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 57 A -0.2370 34.1037 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 58 E 0.0358 24.9485 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 59 B -0.0438 26.5555 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 60 v 11.4798 28.3630 30.7922 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 61 k -1.2816 25.9116 43.1853 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 62 J -0.3407 21.5692 42.1994 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 63 U -0.2206 29.2897 42.4587 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 64 j 0.0217 15.1853 53.7930 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 65 ( -0.5858 11.8887 54.4968 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 66 7 -0.6148 26.7339 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 67 § -0.2712 22.3934 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 68 $ -4.3269 23.5638 53.2658 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 69 € -0.1924 28.8433 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 70 / -0.2197 20.9939 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 71 C 0.0136 30.2298 42.6809 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 72 * -1.0249 18.5997 17.5559 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 73 ” -0.8018 22.9416 17.1929 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 74 ? -0.7422 18.7418 42.9260 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 75 { -0.8719 19.6443 54.6733 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 76 } -1.2187 19.6443 54.6733 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 77 , 33.1278 9.9854 18.7998 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 78 I 0.1558 5.7857 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 79 ° -0.7255 12.0301 12.0301 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 80 K -0.0039 28.1765 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 81 H -0.1691 29.5489 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 82 q 10.8061 26.7567 43.0439 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 83 & -0.5917 34.4079 42.9260 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 84 ’ -1.1615 9.7632 17.1929 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 85 [ -1.2664 12.9561 55.1777 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 86 - 22.4847 12.1338 5.1628 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 87 Y -0.1052 32.4239 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 88 Q 0.0187 40.0054 50.6958 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 89 " -0.6406 14.8217 10.9485 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 90 ! -0.6595 8.5779 42.9260 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 91 x 11.3111 29.1853 30.3706 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 92 ) -0.9226 11.8887 54.4968 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 93 = 17.0785 23.7632 13.5993 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 94 + 11.3807 23.5040 23.5040 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 95 X -0.0689 32.3782 42.0000 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 96 » 17.1473 21.2303 15.5254 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 97 ' -0.8045 5.1628 10.9485 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 98 ¢ 7.3321 20.2901 39.0664 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 99 Z 0.0827 26.6523 41.7778 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 100 > 11.8227 20.7117 23.6008 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 101 ® 3.6934 38.2219 38.2219 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 102 © 3.3259 38.2219 38.2219 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 103 ] -1.3132 12.9561 55.1777 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 104 é -3.8191 28.1414 46.1769 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 105 z 11.1786 25.2078 30.3706 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 106 _ 45.2494 30.3706 3.7781 -Trebuchet_MS.ttf 58 E 24.9485 41.7778 107 ¥ -0.0903 32.2017 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 1 t 3.2439 20.0679 39.1479 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 2 h -1.1050 24.5269 43.1853 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 3 a 10.8437 25.7702 31.4731 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 4 n 10.7380 24.5269 31.0515 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 5 P 0.0369 25.2665 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 6 o 11.1883 27.8006 31.4731 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 7 e 11.0327 28.1414 31.4731 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 8 : 10.8927 8.5779 31.4731 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 9 r 10.9217 18.3782 31.0515 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 10 l -1.2687 10.7263 43.6069 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 11 i 0.2708 10.9855 41.8006 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 12 1 0.0282 14.1414 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 13 | 1.9315 4.8826 48.1487 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 14 N 0.3053 28.7266 42.1994 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 15 f -1.2404 19.9642 43.1853 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 16 g 9.8978 25.2287 44.2292 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 17 d -1.2611 26.6153 43.6069 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 18 W 0.2312 48.0809 42.1994 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 19 s 11.0327 19.7857 31.4731 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 20 c 10.6401 25.2078 31.4731 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 21 u 11.7674 24.9855 30.7922 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 22 3 -0.0515 23.3416 42.4217 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 23 ~ 20.8262 20.6080 6.1487 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 24 # -0.1556 30.9707 42.4217 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 25 O -0.0741 34.4666 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 26 ` -3.5281 10.2447 9.3996 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 27 @ 4.2356 39.0664 41.7999 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 28 F 0.3146 25.7708 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 29 S 0.1124 23.5638 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 30 p 11.0830 26.7339 43.0439 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 31 “ -0.5950 22.5779 17.1929 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 32 % 0.1826 31.3564 42.4217 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 33 £ 0.0903 25.4300 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 34 . 33.6982 8.5779 8.5779 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 35 2 0.1901 25.3115 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 36 5 -0.1942 23.7625 42.4217 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 37 m 10.9845 41.1197 31.0515 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 38 V 0.3407 32.7998 42.1994 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 39 6 0.0917 25.7708 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 40 w 11.8794 43.4311 30.7922 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 41 T 0.3097 32.4239 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 42 M 0.2370 41.3412 42.1994 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 43 G 0.0072 32.7998 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 44 b -1.2107 26.7339 43.6069 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 45 9 0.0337 25.5714 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 46 ; 10.7646 9.9854 41.2734 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 47 D -0.0004 29.3267 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 48 L 0.4893 23.7632 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 49 y 11.6635 29.1853 42.3630 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 50 ‘ -0.5176 9.7632 17.1929 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 51 \ 0.1835 20.5722 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 52 R -0.0679 29.1853 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 53 < 11.8752 20.7117 23.6008 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 54 4 -0.1734 28.0000 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 55 8 0.0323 25.5714 42.4217 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 56 0 -0.0864 26.8974 42.4217 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 57 A 0.4942 34.1037 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 58 E -0.1143 24.9485 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 59 B -0.4405 26.5555 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 60 v 11.4867 28.3630 30.7922 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 61 k -1.0055 25.9116 43.1853 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 62 J 0.3827 21.5692 42.1994 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 63 U 0.2995 29.2897 42.4587 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 64 j 0.1893 15.1853 53.7930 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 65 ( -0.8632 11.8887 54.4968 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 66 7 -0.2300 26.7339 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 67 § -0.1835 22.3934 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 68 $ -4.1035 23.5638 53.2658 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 69 € -0.0620 28.8433 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 70 / -0.0356 20.9939 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 71 C -0.2758 30.2298 42.6809 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 72 * -0.3132 18.5997 17.5559 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 73 ” -0.5243 22.9416 17.1929 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 74 ? -0.4246 18.7418 42.9260 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 75 { -0.8083 19.6443 54.6733 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 76 } -0.6747 19.6443 54.6733 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 77 , 33.4805 9.9854 18.7998 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 78 I 0.0667 5.7857 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 79 ° -0.3230 12.0301 12.0301 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 80 K 0.2938 28.1765 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 81 H 0.1068 29.5489 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 82 q 11.0317 26.7567 43.0439 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 83 & -0.3324 34.4079 42.9260 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 84 ’ -0.9229 9.7632 17.1929 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 85 [ -1.0511 12.9561 55.1777 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 86 - 23.0792 12.1338 5.1628 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 87 Y 0.0516 32.4239 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 88 Q -0.5166 40.0054 50.6958 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 89 " -0.6190 14.8217 10.9485 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 90 ! -0.5638 8.5779 42.9260 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 91 x 11.3930 29.1853 30.3706 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 92 ) -0.2054 11.8887 54.4968 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 93 = 17.0103 23.7632 13.5993 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 94 + 12.1593 23.5040 23.5040 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 95 X 0.1321 32.3782 42.0000 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 96 » 17.1742 21.2303 15.5254 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 97 ' -0.6912 5.1628 10.9485 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 98 ¢ 7.5202 20.2901 39.0664 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 99 Z 0.0800 26.6523 41.7778 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 100 > 12.3671 20.7117 23.6008 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 101 ® 3.8954 38.2219 38.2219 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 102 © 3.7744 38.2219 38.2219 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 103 ] -1.1392 12.9561 55.1777 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 104 é -3.6664 28.1414 46.1769 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 105 z 11.8441 25.2078 30.3706 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 106 _ 45.5651 30.3706 3.7781 -Trebuchet_MS.ttf 59 B 26.5555 42.0000 107 ¥ 0.0118 32.2017 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 1 t -8.1337 20.0679 39.1479 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 2 h -12.9127 24.5269 43.1853 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 3 a -0.8529 25.7702 31.4731 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 4 n -0.5460 24.5269 31.0515 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 5 P -11.6157 25.2665 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 6 o -0.5762 27.8006 31.4731 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 7 e -0.5998 28.1414 31.4731 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 8 : -0.7233 8.5779 31.4731 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 9 r -0.7902 18.3782 31.0515 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 10 l -12.7052 10.7263 43.6069 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 11 i -11.6715 10.9855 41.8006 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 12 1 -11.4978 14.1414 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 13 | -9.8939 4.8826 48.1487 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 14 N -11.2289 28.7266 42.1994 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 15 f -12.8059 19.9642 43.1853 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 16 g -1.7374 25.2287 44.2292 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 17 d -12.8386 26.6153 43.6069 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 18 W -11.3115 48.0809 42.1994 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 19 s -0.7836 19.7857 31.4731 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 20 c -0.7876 25.2078 31.4731 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 21 u 0.0799 24.9855 30.7922 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 22 3 -11.5659 23.3416 42.4217 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 23 ~ 9.1104 20.6080 6.1487 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 24 # -11.5641 30.9707 42.4217 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 25 O -11.5344 34.4666 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 26 ` -15.4798 10.2447 9.3996 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 27 @ -7.4655 39.0664 41.7999 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 28 F -11.1376 25.7708 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 29 S -11.3994 23.5638 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 30 p -0.5371 26.7339 43.0439 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 31 “ -12.3502 22.5779 17.1929 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 32 % -11.5006 31.3564 42.4217 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 33 £ -11.8026 25.4300 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 34 . 22.4570 8.5779 8.5779 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 35 2 -11.9689 25.3115 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 36 5 -11.7553 23.7625 42.4217 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 37 m -0.6007 41.1197 31.0515 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 38 V -11.3074 32.7998 42.1994 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 39 6 -11.6193 25.7708 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 40 w 0.0859 43.4311 30.7922 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 41 T -11.4654 32.4239 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 42 M -11.1628 41.3412 42.1994 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 43 G -11.6751 32.7998 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 44 b -13.0545 26.7339 43.6069 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 45 9 -11.6875 25.5714 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 46 ; -0.5014 9.9854 41.2734 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 47 D -11.6138 29.3267 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 48 L -11.5640 23.7632 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 49 y -0.1346 29.1853 42.3630 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 50 ‘ -12.0455 9.7632 17.1929 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 51 \ -11.3852 20.5722 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 52 R -11.6773 29.1853 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 53 < 0.7177 20.7117 23.6008 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 54 4 -11.5935 28.0000 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 55 8 -11.6665 25.5714 42.4217 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 56 0 -11.7763 26.8974 42.4217 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 57 A -11.5463 34.1037 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 58 E -11.4617 24.9485 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 59 B -11.3708 26.5555 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 60 v 0.1538 28.3630 30.7922 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 61 k -12.8324 25.9116 43.1853 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 62 J -11.5479 21.5692 42.1994 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 63 U -11.5912 29.2897 42.4587 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 64 j -11.6092 15.1853 53.7930 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 65 ( -12.0257 11.8887 54.4968 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 66 7 -11.5310 26.7339 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 67 § -11.5463 22.3934 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 68 $ -15.5934 23.5638 53.2658 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 69 € -11.7164 28.8433 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 70 / -11.6374 20.9939 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 71 C -11.4150 30.2298 42.6809 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 72 * -12.0968 18.5997 17.5559 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 73 ” -12.2099 22.9416 17.1929 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 74 ? -12.1134 18.7418 42.9260 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 75 { -12.3401 19.6443 54.6733 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 76 } -12.3513 19.6443 54.6733 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 77 , 22.0745 9.9854 18.7998 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 78 I -11.5962 5.7857 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 79 ° -12.3105 12.0301 12.0301 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 80 K -11.6253 28.1765 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 81 H -11.3615 29.5489 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 82 q -0.4509 26.7567 43.0439 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 83 & -12.4601 34.4079 42.9260 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 84 ’ -12.1949 9.7632 17.1929 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 85 [ -12.8180 12.9561 55.1777 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 86 - 11.4320 12.1338 5.1628 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 87 Y -11.2922 32.4239 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 88 Q -11.4469 40.0054 50.6958 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 89 " -12.1738 14.8217 10.9485 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 90 ! -12.1508 8.5779 42.9260 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 91 x 0.2300 29.1853 30.3706 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 92 ) -12.3649 11.8887 54.4968 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 93 = 5.5958 23.7632 13.5993 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 94 + 0.2858 23.5040 23.5040 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 95 X -11.6640 32.3782 42.0000 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 96 » 5.7590 21.2303 15.5254 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 97 ' -12.0211 5.1628 10.9485 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 98 ¢ -4.5268 20.2901 39.0664 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 99 Z -11.3760 26.6523 41.7778 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 100 > 0.1632 20.7117 23.6008 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 101 ® -7.9123 38.2219 38.2219 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 102 © -8.1117 38.2219 38.2219 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 103 ] -12.8387 12.9561 55.1777 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 104 é -15.4008 28.1414 46.1769 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 105 z 0.1984 25.2078 30.3706 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 106 _ 34.2527 30.3706 3.7781 -Trebuchet_MS.ttf 60 v 28.3630 30.7922 107 ¥ -11.4072 32.2017 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 1 t 4.3285 20.0679 39.1479 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 2 h 0.0101 24.5269 43.1853 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 3 a 12.0194 25.7702 31.4731 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 4 n 12.2949 24.5269 31.0515 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 5 P 1.4559 25.2665 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 6 o 12.0454 27.8006 31.4731 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 7 e 12.0344 28.1414 31.4731 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 8 : 12.4216 8.5779 31.4731 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 9 r 12.4015 18.3782 31.0515 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 10 l 0.0000 10.7263 43.6069 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 11 i 1.7393 10.9855 41.8006 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 12 1 1.4353 14.1414 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 13 | 3.4830 4.8826 48.1487 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 14 N 1.3768 28.7266 42.1994 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 15 f -0.1840 19.9642 43.1853 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 16 g 10.9558 25.2287 44.2292 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 17 d 0.0889 26.6153 43.6069 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 18 W 1.5762 48.0809 42.1994 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 19 s 12.2074 19.7857 31.4731 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 20 c 12.1128 25.2078 31.4731 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 21 u 12.8697 24.9855 30.7922 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 22 3 1.0874 23.3416 42.4217 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 23 ~ 21.9036 20.6080 6.1487 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 24 # 1.2890 30.9707 42.4217 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 25 O 1.4758 34.4666 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 26 ` -2.4797 10.2447 9.3996 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 27 @ 4.9607 39.0664 41.7999 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 28 F 1.4877 25.7708 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 29 S 1.7231 23.5638 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 30 p 12.0819 26.7339 43.0439 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 31 “ 0.4155 22.5779 17.1929 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 32 % 0.8355 31.3564 42.4217 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 33 £ 1.3649 25.4300 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 34 . 35.4975 8.5779 8.5779 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 35 2 1.2663 25.3115 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 36 5 1.0368 23.7625 42.4217 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 37 m 12.3083 41.1197 31.0515 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 38 V 1.2875 32.7998 42.1994 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 39 6 1.3040 25.7708 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 40 w 12.6159 43.4311 30.7922 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 41 T 1.3187 32.4239 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 42 M 1.4964 41.3412 42.1994 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 43 G 1.1011 32.7998 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 44 b -0.1720 26.7339 43.6069 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 45 9 1.1512 25.5714 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 46 ; 12.0247 9.9854 41.2734 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 47 D 0.8246 29.3267 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 48 L 1.1581 23.7632 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 49 y 12.6395 29.1853 42.3630 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 50 ‘ 0.5893 9.7632 17.1929 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 51 \ 1.2847 20.5722 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 52 R 1.2737 29.1853 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 53 < 13.3786 20.7117 23.6008 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 54 4 1.0537 28.0000 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 55 8 1.2324 25.5714 42.4217 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 56 0 1.2371 26.8974 42.4217 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 57 A 1.1647 34.1037 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 58 E 1.0664 24.9485 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 59 B 1.1886 26.5555 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 60 v 12.6518 28.3630 30.7922 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 61 k 0.0224 25.9116 43.1853 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 62 J 1.3814 21.5692 42.1994 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 63 U 1.5248 29.2897 42.4587 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 64 j 1.3699 15.1853 53.7930 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 65 ( 0.8267 11.8887 54.4968 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 66 7 1.0032 26.7339 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 67 § 1.3155 22.3934 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 68 $ -3.2990 23.5638 53.2658 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 69 € 0.9729 28.8433 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 70 / 1.1065 20.9939 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 71 C 1.0598 30.2298 42.6809 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 72 * 0.6352 18.5997 17.5559 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 73 ” 0.6633 22.9416 17.1929 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 74 ? 0.5950 18.7418 42.9260 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 75 { 0.4350 19.6443 54.6733 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 76 } 0.5055 19.6443 54.6733 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 77 , 34.8265 9.9854 18.7998 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 78 I 1.5549 5.7857 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 79 ° 0.8524 12.0301 12.0301 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 80 K 1.4508 28.1765 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 81 H 1.3383 29.5489 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 82 q 12.2938 26.7567 43.0439 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 83 & 0.8319 34.4079 42.9260 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 84 ’ 0.3882 9.7632 17.1929 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 85 [ -0.1411 12.9561 55.1777 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 86 - 24.1621 12.1338 5.1628 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 87 Y 1.0534 32.4239 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 88 Q 1.4239 40.0054 50.6958 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 89 " 0.2883 14.8217 10.9485 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 90 ! 0.4805 8.5779 42.9260 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 91 x 12.7020 29.1853 30.3706 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 92 ) 0.7213 11.8887 54.4968 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 93 = 18.5570 23.7632 13.5993 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 94 + 13.0904 23.5040 23.5040 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 95 X 0.8479 32.3782 42.0000 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 96 » 18.4408 21.2303 15.5254 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 97 ' 0.7193 5.1628 10.9485 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 98 ¢ 8.1804 20.2901 39.0664 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 99 Z 1.3306 26.6523 41.7778 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 100 > 13.4164 20.7117 23.6008 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 101 ® 5.0523 38.2219 38.2219 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 102 © 4.9848 38.2219 38.2219 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 103 ] -0.0120 12.9561 55.1777 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 104 é -2.6132 28.1414 46.1769 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 105 z 12.9203 25.2078 30.3706 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 106 _ 47.0807 30.3706 3.7781 -Trebuchet_MS.ttf 61 k 25.9116 43.1853 107 ¥ 1.4707 32.2017 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 1 t 3.0305 20.0679 39.1479 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 2 h -1.7275 24.5269 43.1853 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 3 a 10.4843 25.7702 31.4731 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 4 n 10.9265 24.5269 31.0515 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 5 P -0.2222 25.2665 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 6 o 10.6580 27.8006 31.4731 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 7 e 10.6984 28.1414 31.4731 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 8 : 10.7723 8.5779 31.4731 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 9 r 10.8845 18.3782 31.0515 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 10 l -1.4786 10.7263 43.6069 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 11 i -0.0228 10.9855 41.8006 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 12 1 -0.0012 14.1414 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 13 | 1.8000 4.8826 48.1487 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 14 N 0.0341 28.7266 42.1994 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 15 f -1.3730 19.9642 43.1853 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 16 g 9.6817 25.2287 44.2292 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 17 d -1.4433 26.6153 43.6069 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 18 W 0.3613 48.0809 42.1994 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 19 s 10.7652 19.7857 31.4731 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 20 c 10.7215 25.2078 31.4731 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 21 u 11.5701 24.9855 30.7922 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 22 3 0.0107 23.3416 42.4217 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 23 ~ 20.4455 20.6080 6.1487 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 24 # -0.2967 30.9707 42.4217 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 25 O -0.0194 34.4666 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 26 ` -3.9616 10.2447 9.3996 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 27 @ 3.7741 39.0664 41.7999 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 28 F 0.2079 25.7708 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 29 S -0.0651 23.5638 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 30 p 10.7081 26.7339 43.0439 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 31 “ -0.9993 22.5779 17.1929 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 32 % -0.0504 31.3564 42.4217 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 33 £ 0.1352 25.4300 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 34 . 33.6353 8.5779 8.5779 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 35 2 -0.3031 25.3115 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 36 5 -0.1289 23.7625 42.4217 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 37 m 10.3856 41.1197 31.0515 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 38 V 0.2024 32.7998 42.1994 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 39 6 -0.3714 25.7708 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 40 w 11.3803 43.4311 30.7922 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 41 T -0.0192 32.4239 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 42 M 0.0290 41.3412 42.1994 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 43 G -0.3365 32.7998 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 44 b -1.3135 26.7339 43.6069 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 45 9 -0.2342 25.5714 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 46 ; 10.8753 9.9854 41.2734 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 47 D -0.1309 29.3267 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 48 L 0.0295 23.7632 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 49 y 11.3668 29.1853 42.3630 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 50 ‘ -0.9262 9.7632 17.1929 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 51 \ -0.1180 20.5722 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 52 R -0.5086 29.1853 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 53 < 11.8169 20.7117 23.6008 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 54 4 -0.0631 28.0000 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 55 8 -0.0726 25.5714 42.4217 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 56 0 -0.4397 26.8974 42.4217 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 57 A -0.2802 34.1037 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 58 E 0.1435 24.9485 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 59 B -0.2769 26.5555 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 60 v 11.2103 28.3630 30.7922 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 61 k -1.7458 25.9116 43.1853 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 62 J -0.0284 21.5692 42.1994 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 63 U 0.0134 29.2897 42.4587 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 64 j 0.1741 15.1853 53.7930 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 65 ( -0.5728 11.8887 54.4968 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 66 7 -0.6174 26.7339 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 67 § -0.3064 22.3934 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 68 $ -4.6847 23.5638 53.2658 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 69 € -0.2016 28.8433 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 70 / -0.4220 20.9939 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 71 C -0.2342 30.2298 42.6809 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 72 * -0.7517 18.5997 17.5559 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 73 ” -0.7307 22.9416 17.1929 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 74 ? -0.7626 18.7418 42.9260 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 75 { -0.9101 19.6443 54.6733 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 76 } -0.9400 19.6443 54.6733 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 77 , 33.4416 9.9854 18.7998 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 78 I -0.2111 5.7857 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 79 ° -0.6497 12.0301 12.0301 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 80 K 0.1302 28.1765 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 81 H -0.0722 29.5489 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 82 q 10.5144 26.7567 43.0439 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 83 & -0.8106 34.4079 42.9260 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 84 ’ -1.2983 9.7632 17.1929 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 85 [ -1.4057 12.9561 55.1777 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 86 - 22.7053 12.1338 5.1628 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 87 Y -0.0798 32.4239 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 88 Q -0.3981 40.0054 50.6958 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 89 " -0.7743 14.8217 10.9485 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 90 ! -0.7856 8.5779 42.9260 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 91 x 11.4506 29.1853 30.3706 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 92 ) -0.6633 11.8887 54.4968 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 93 = 16.7697 23.7632 13.5993 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 94 + 11.7405 23.5040 23.5040 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 95 X -0.3144 32.3782 42.0000 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 96 » 17.3939 21.2303 15.5254 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 97 ' -0.7294 5.1628 10.9485 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 98 ¢ 6.9677 20.2901 39.0664 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 99 Z 0.2459 26.6523 41.7778 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 100 > 11.6644 20.7117 23.6008 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 101 ® 3.4877 38.2219 38.2219 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 102 © 3.4583 38.2219 38.2219 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 103 ] -1.4574 12.9561 55.1777 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 104 é -3.7800 28.1414 46.1769 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 105 z 11.6695 25.2078 30.3706 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 106 _ 45.7029 30.3706 3.7781 -Trebuchet_MS.ttf 62 J 21.5692 42.1994 107 ¥ -0.0164 32.2017 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 1 t 3.0986 20.0679 39.1479 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 2 h -1.3774 24.5269 43.1853 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 3 a 10.8207 25.7702 31.4731 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 4 n 10.3943 24.5269 31.0515 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 5 P -0.3542 25.2665 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 6 o 10.5634 27.8006 31.4731 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 7 e 10.9069 28.1414 31.4731 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 8 : 10.7958 8.5779 31.4731 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 9 r 10.5187 18.3782 31.0515 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 10 l -1.5080 10.7263 43.6069 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 11 i -0.1736 10.9855 41.8006 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 12 1 -0.3496 14.1414 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 13 | 1.5754 4.8826 48.1487 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 14 N -0.2583 28.7266 42.1994 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 15 f -1.1466 19.9642 43.1853 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 16 g 9.3829 25.2287 44.2292 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 17 d -1.1371 26.6153 43.6069 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 18 W -0.1937 48.0809 42.1994 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 19 s 10.8442 19.7857 31.4731 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 20 c 10.6672 25.2078 31.4731 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 21 u 11.4298 24.9855 30.7922 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 22 3 -0.1879 23.3416 42.4217 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 23 ~ 20.7237 20.6080 6.1487 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 24 # -0.2563 30.9707 42.4217 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 25 O -0.3660 34.4666 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 26 ` -4.1199 10.2447 9.3996 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 27 @ 3.5221 39.0664 41.7999 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 28 F -0.0877 25.7708 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 29 S -0.1765 23.5638 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 30 p 10.6105 26.7339 43.0439 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 31 “ -1.0493 22.5779 17.1929 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 32 % -0.6220 31.3564 42.4217 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 33 £ -0.4010 25.4300 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 34 . 33.8816 8.5779 8.5779 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 35 2 -0.2819 25.3115 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 36 5 -0.4367 23.7625 42.4217 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 37 m 10.7884 41.1197 31.0515 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 38 V -0.1712 32.7998 42.1994 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 39 6 -0.1336 25.7708 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 40 w 11.1128 43.4311 30.7922 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 41 T -0.1114 32.4239 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 42 M -0.0163 41.3412 42.1994 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 43 G -0.4693 32.7998 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 44 b -1.4479 26.7339 43.6069 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 45 9 -0.0753 25.5714 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 46 ; 10.9676 9.9854 41.2734 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 47 D -0.0556 29.3267 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 48 L -0.1128 23.7632 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 49 y 11.2222 29.1853 42.3630 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 50 ‘ -0.7548 9.7632 17.1929 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 51 \ -0.2266 20.5722 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 52 R 0.0785 29.1853 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 53 < 11.9130 20.7117 23.6008 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 54 4 -0.0309 28.0000 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 55 8 -0.0336 25.5714 42.4217 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 56 0 -0.3158 26.8974 42.4217 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 57 A -0.3996 34.1037 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 58 E 0.0708 24.9485 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 59 B -0.3096 26.5555 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 60 v 11.4740 28.3630 30.7922 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 61 k -1.3806 25.9116 43.1853 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 62 J 0.0047 21.5692 42.1994 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 63 U -0.0870 29.2897 42.4587 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 64 j 0.0219 15.1853 53.7930 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 65 ( -0.4447 11.8887 54.4968 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 66 7 -0.3790 26.7339 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 67 § -0.2183 22.3934 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 68 $ -4.6901 23.5638 53.2658 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 69 € -0.1910 28.8433 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 70 / -0.1743 20.9939 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 71 C -0.2541 30.2298 42.6809 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 72 * -0.7017 18.5997 17.5559 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 73 ” -0.5396 22.9416 17.1929 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 74 ? -0.8895 18.7418 42.9260 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 75 { -0.9536 19.6443 54.6733 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 76 } -1.0703 19.6443 54.6733 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 77 , 33.1508 9.9854 18.7998 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 78 I 0.2738 5.7857 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 79 ° -0.9123 12.0301 12.0301 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 80 K -0.0519 28.1765 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 81 H -0.0130 29.5489 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 82 q 10.8043 26.7567 43.0439 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 83 & -0.7785 34.4079 42.9260 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 84 ’ -0.9984 9.7632 17.1929 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 85 [ -1.6416 12.9561 55.1777 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 86 - 22.3498 12.1338 5.1628 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 87 Y -0.1012 32.4239 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 88 Q -0.1675 40.0054 50.6958 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 89 " -0.9476 14.8217 10.9485 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 90 ! -0.6275 8.5779 42.9260 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 91 x 11.4129 29.1853 30.3706 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 92 ) -0.7154 11.8887 54.4968 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 93 = 17.2573 23.7632 13.5993 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 94 + 11.6379 23.5040 23.5040 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 95 X -0.0242 32.3782 42.0000 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 96 » 17.1168 21.2303 15.5254 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 97 ' -0.8068 5.1628 10.9485 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 98 ¢ 6.6566 20.2901 39.0664 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 99 Z 0.1023 26.6523 41.7778 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 100 > 11.8453 20.7117 23.6008 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 101 ® 3.3948 38.2219 38.2219 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 102 © 3.6787 38.2219 38.2219 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 103 ] -1.2344 12.9561 55.1777 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 104 é -3.9870 28.1414 46.1769 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 105 z 11.4025 25.2078 30.3706 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 106 _ 45.4876 30.3706 3.7781 -Trebuchet_MS.ttf 63 U 29.2897 42.4587 107 ¥ 0.0591 32.2017 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 1 t 3.3391 20.0679 39.1479 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 2 h -1.2406 24.5269 43.1853 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 3 a 10.4246 25.7702 31.4731 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 4 n 10.6377 24.5269 31.0515 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 5 P 0.0465 25.2665 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 6 o 10.3855 27.8006 31.4731 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 7 e 10.6780 28.1414 31.4731 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 8 : 10.8866 8.5779 31.4731 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 9 r 10.6083 18.3782 31.0515 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 10 l -1.4751 10.7263 43.6069 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 11 i 0.0413 10.9855 41.8006 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 12 1 -0.3626 14.1414 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 13 | 1.9094 4.8826 48.1487 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 14 N 0.2333 28.7266 42.1994 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 15 f -1.2127 19.9642 43.1853 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 16 g 9.7728 25.2287 44.2292 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 17 d -1.6119 26.6153 43.6069 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 18 W 0.1117 48.0809 42.1994 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 19 s 10.5166 19.7857 31.4731 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 20 c 10.7491 25.2078 31.4731 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 21 u 11.2504 24.9855 30.7922 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 22 3 -0.1551 23.3416 42.4217 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 23 ~ 20.7316 20.6080 6.1487 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 24 # -0.1015 30.9707 42.4217 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 25 O -0.1149 34.4666 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 26 ` -3.9757 10.2447 9.3996 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 27 @ 3.9516 39.0664 41.7999 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 28 F 0.2131 25.7708 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 29 S -0.0735 23.5638 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 30 p 10.8293 26.7339 43.0439 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 31 “ -0.9112 22.5779 17.1929 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 32 % -0.2632 31.3564 42.4217 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 33 £ -0.0693 25.4300 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 34 . 33.5497 8.5779 8.5779 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 35 2 -0.4350 25.3115 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 36 5 0.0557 23.7625 42.4217 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 37 m 10.6054 41.1197 31.0515 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 38 V -0.1615 32.7998 42.1994 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 39 6 -0.3522 25.7708 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 40 w 11.9215 43.4311 30.7922 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 41 T -0.2126 32.4239 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 42 M 0.1588 41.3412 42.1994 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 43 G -0.3670 32.7998 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 44 b -1.4341 26.7339 43.6069 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 45 9 -0.0064 25.5714 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 46 ; 10.8082 9.9854 41.2734 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 47 D -0.1414 29.3267 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 48 L -0.0035 23.7632 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 49 y 11.5281 29.1853 42.3630 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 50 ‘ -0.7698 9.7632 17.1929 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 51 \ -0.3667 20.5722 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 52 R -0.1225 29.1853 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 53 < 12.0981 20.7117 23.6008 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 54 4 -0.3021 28.0000 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 55 8 -0.1178 25.5714 42.4217 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 56 0 -0.2064 26.8974 42.4217 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 57 A -0.2778 34.1037 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 58 E -0.1492 24.9485 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 59 B -0.4761 26.5555 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 60 v 11.0889 28.3630 30.7922 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 61 k -1.5164 25.9116 43.1853 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 62 J 0.3634 21.5692 42.1994 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 63 U -0.2309 29.2897 42.4587 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 64 j -0.0741 15.1853 53.7930 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 65 ( -0.5923 11.8887 54.4968 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 66 7 -0.1904 26.7339 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 67 § -0.3210 22.3934 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 68 $ -4.2330 23.5638 53.2658 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 69 € 0.0897 28.8433 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 70 / -0.2912 20.9939 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 71 C -0.1671 30.2298 42.6809 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 72 * -0.8094 18.5997 17.5559 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 73 ” -0.6790 22.9416 17.1929 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 74 ? -0.7741 18.7418 42.9260 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 75 { -1.0705 19.6443 54.6733 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 76 } -0.9602 19.6443 54.6733 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 77 , 33.3263 9.9854 18.7998 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 78 I -0.0291 5.7857 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 79 ° -0.6952 12.0301 12.0301 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 80 K -0.0538 28.1765 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 81 H 0.1553 29.5489 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 82 q 10.5924 26.7567 43.0439 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 83 & -0.8075 34.4079 42.9260 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 84 ’ -0.6794 9.7632 17.1929 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 85 [ -1.4293 12.9561 55.1777 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 86 - 22.8200 12.1338 5.1628 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 87 Y 0.1886 32.4239 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 88 Q -0.1994 40.0054 50.6958 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 89 " -0.8493 14.8217 10.9485 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 90 ! -0.5793 8.5779 42.9260 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 91 x 11.5251 29.1853 30.3706 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 92 ) -0.6828 11.8887 54.4968 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 93 = 17.1847 23.7632 13.5993 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 94 + 11.5300 23.5040 23.5040 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 95 X -0.1418 32.3782 42.0000 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 96 » 17.1141 21.2303 15.5254 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 97 ' -0.8386 5.1628 10.9485 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 98 ¢ 6.9379 20.2901 39.0664 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 99 Z 0.0228 26.6523 41.7778 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 100 > 11.8284 20.7117 23.6008 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 101 ® 3.5206 38.2219 38.2219 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 102 © 3.7728 38.2219 38.2219 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 103 ] -1.2897 12.9561 55.1777 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 104 é -4.0788 28.1414 46.1769 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 105 z 11.3357 25.2078 30.3706 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 106 _ 45.6352 30.3706 3.7781 -Trebuchet_MS.ttf 64 j 15.1853 53.7930 107 ¥ -0.2507 32.2017 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 1 t 3.6624 20.0679 39.1479 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 2 h -0.7280 24.5269 43.1853 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 3 a 11.5327 25.7702 31.4731 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 4 n 11.5878 24.5269 31.0515 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 5 P 0.5666 25.2665 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 6 o 11.1959 27.8006 31.4731 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 7 e 11.2675 28.1414 31.4731 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 8 : 11.5327 8.5779 31.4731 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 9 r 11.4467 18.3782 31.0515 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 10 l -0.8562 10.7263 43.6069 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 11 i 0.6830 10.9855 41.8006 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 12 1 0.4065 14.1414 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 13 | 2.5487 4.8826 48.1487 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 14 N 0.6402 28.7266 42.1994 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 15 f -0.7640 19.9642 43.1853 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 16 g 10.1950 25.2287 44.2292 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 17 d -0.5198 26.6153 43.6069 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 18 W 0.5636 48.0809 42.1994 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 19 s 11.6455 19.7857 31.4731 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 20 c 11.3117 25.2078 31.4731 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 21 u 11.8681 24.9855 30.7922 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 22 3 0.2653 23.3416 42.4217 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 23 ~ 21.2639 20.6080 6.1487 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 24 # 0.6615 30.9707 42.4217 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 25 O 0.5414 34.4666 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 26 ` -3.1130 10.2447 9.3996 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 27 @ 4.3886 39.0664 41.7999 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 28 F 0.7044 25.7708 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 29 S 0.3371 23.5638 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 30 p 11.4152 26.7339 43.0439 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 31 “ -0.2716 22.5779 17.1929 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 32 % 0.2402 31.3564 42.4217 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 33 £ 0.2984 25.4300 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 34 . 34.4594 8.5779 8.5779 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 35 2 0.2819 25.3115 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 36 5 0.1924 23.7625 42.4217 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 37 m 11.3977 41.1197 31.0515 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 38 V 0.6423 32.7998 42.1994 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 39 6 0.5886 25.7708 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 40 w 11.9205 43.4311 30.7922 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 41 T 0.8615 32.4239 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 42 M 0.9667 41.3412 42.1994 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 43 G 0.3669 32.7998 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 44 b -0.7713 26.7339 43.6069 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 45 9 0.6825 25.5714 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 46 ; 11.6159 9.9854 41.2734 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 47 D 0.1978 29.3267 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 48 L 0.6315 23.7632 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 49 y 12.2140 29.1853 42.3630 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 50 ‘ -0.3261 9.7632 17.1929 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 51 \ 0.6034 20.5722 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 52 R 0.3933 29.1853 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 53 < 12.1933 20.7117 23.6008 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 54 4 0.6302 28.0000 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 55 8 0.5875 25.5714 42.4217 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 56 0 0.5591 26.8974 42.4217 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 57 A 0.4140 34.1037 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 58 E 0.7353 24.9485 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 59 B 0.4241 26.5555 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 60 v 12.1395 28.3630 30.7922 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 61 k -0.7550 25.9116 43.1853 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 62 J 0.6243 21.5692 42.1994 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 63 U 0.9850 29.2897 42.4587 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 64 j 0.5456 15.1853 53.7930 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 65 ( -0.0976 11.8887 54.4968 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 66 7 0.3313 26.7339 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 67 § 0.4293 22.3934 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 68 $ -3.7575 23.5638 53.2658 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 69 € 0.3291 28.8433 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 70 / 0.5222 20.9939 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 71 C 0.2867 30.2298 42.6809 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 72 * 0.1302 18.5997 17.5559 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 73 ” -0.1088 22.9416 17.1929 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 74 ? 0.0167 18.7418 42.9260 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 75 { -0.1247 19.6443 54.6733 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 76 } 0.0546 19.6443 54.6733 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 77 , 33.9039 9.9854 18.7998 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 78 I 0.7233 5.7857 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 79 ° 0.0788 12.0301 12.0301 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 80 K 0.8065 28.1765 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 81 H 0.6075 29.5489 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 82 q 11.4790 26.7567 43.0439 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 83 & -0.2712 34.4079 42.9260 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 84 ’ -0.0478 9.7632 17.1929 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 85 [ -0.7760 12.9561 55.1777 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 86 - 23.3358 12.1338 5.1628 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 87 Y 0.7379 32.4239 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 88 Q 0.5178 40.0054 50.6958 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 89 " 0.1313 14.8217 10.9485 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 90 ! 0.1201 8.5779 42.9260 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 91 x 12.1424 29.1853 30.3706 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 92 ) 0.0366 11.8887 54.4968 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 93 = 17.7271 23.7632 13.5993 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 94 + 12.2556 23.5040 23.5040 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 95 X 0.5044 32.3782 42.0000 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 96 » 17.9486 21.2303 15.5254 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 97 ' 0.1676 5.1628 10.9485 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 98 ¢ 7.5166 20.2901 39.0664 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 99 Z 0.6795 26.6523 41.7778 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 100 > 12.5692 20.7117 23.6008 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 101 ® 4.1546 38.2219 38.2219 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 102 © 4.3387 38.2219 38.2219 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 103 ] -0.5089 12.9561 55.1777 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 104 é -3.4302 28.1414 46.1769 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 105 z 12.2303 25.2078 30.3706 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 106 _ 46.3993 30.3706 3.7781 -Trebuchet_MS.ttf 65 ( 11.8887 54.4968 107 ¥ 0.5978 32.2017 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 1 t 3.2066 20.0679 39.1479 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 2 h -1.4138 24.5269 43.1853 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 3 a 10.8251 25.7702 31.4731 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 4 n 10.9306 24.5269 31.0515 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 5 P -0.1988 25.2665 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 6 o 10.8170 27.8006 31.4731 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 7 e 10.9903 28.1414 31.4731 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 8 : 10.7794 8.5779 31.4731 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 9 r 10.8851 18.3782 31.0515 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 10 l -1.3472 10.7263 43.6069 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 11 i 0.3628 10.9855 41.8006 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 12 1 0.1154 14.1414 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 13 | 1.9849 4.8826 48.1487 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 14 N 0.1890 28.7266 42.1994 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 15 f -1.0821 19.9642 43.1853 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 16 g 9.6805 25.2287 44.2292 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 17 d -1.1848 26.6153 43.6069 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 18 W 0.3535 48.0809 42.1994 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 19 s 10.8521 19.7857 31.4731 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 20 c 10.7708 25.2078 31.4731 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 21 u 11.4724 24.9855 30.7922 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 22 3 0.3156 23.3416 42.4217 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 23 ~ 20.9031 20.6080 6.1487 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 24 # 0.2205 30.9707 42.4217 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 25 O 0.1586 34.4666 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 26 ` -3.6159 10.2447 9.3996 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 27 @ 3.9674 39.0664 41.7999 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 28 F 0.1258 25.7708 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 29 S -0.2369 23.5638 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 30 p 10.7784 26.7339 43.0439 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 31 “ -0.4690 22.5779 17.1929 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 32 % 0.1639 31.3564 42.4217 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 33 £ -0.1427 25.4300 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 34 . 33.9084 8.5779 8.5779 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 35 2 0.1911 25.3115 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 36 5 0.1851 23.7625 42.4217 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 37 m 11.6077 41.1197 31.0515 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 38 V 0.1689 32.7998 42.1994 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 39 6 -0.0768 25.7708 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 40 w 11.5492 43.4311 30.7922 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 41 T 0.2802 32.4239 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 42 M 0.1657 41.3412 42.1994 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 43 G -0.0356 32.7998 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 44 b -1.2382 26.7339 43.6069 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 45 9 -0.0635 25.5714 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 46 ; 10.8814 9.9854 41.2734 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 47 D 0.1037 29.3267 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 48 L 0.1891 23.7632 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 49 y 11.6341 29.1853 42.3630 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 50 ‘ -0.7861 9.7632 17.1929 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 51 \ -0.0842 20.5722 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 52 R 0.2917 29.1853 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 53 < 12.1798 20.7117 23.6008 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 54 4 0.0588 28.0000 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 55 8 -0.0421 25.5714 42.4217 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 56 0 0.0090 26.8974 42.4217 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 57 A -0.0845 34.1037 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 58 E 0.4043 24.9485 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 59 B -0.2934 26.5555 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 60 v 11.7894 28.3630 30.7922 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 61 k -1.1519 25.9116 43.1853 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 62 J 0.3947 21.5692 42.1994 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 63 U 0.1794 29.2897 42.4587 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 64 j 0.0173 15.1853 53.7930 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 65 ( -0.7800 11.8887 54.4968 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 66 7 -0.0667 26.7339 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 67 § 0.1782 22.3934 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 68 $ -4.2208 23.5638 53.2658 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 69 € 0.0090 28.8433 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 70 / -0.1778 20.9939 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 71 C -0.0856 30.2298 42.6809 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 72 * -0.1921 18.5997 17.5559 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 73 ” -0.3935 22.9416 17.1929 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 74 ? -0.6357 18.7418 42.9260 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 75 { -0.7760 19.6443 54.6733 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 76 } -0.6116 19.6443 54.6733 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 77 , 33.4205 9.9854 18.7998 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 78 I 0.1086 5.7857 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 79 ° -0.3705 12.0301 12.0301 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 80 K 0.3202 28.1765 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 81 H 0.4994 29.5489 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 82 q 10.8858 26.7567 43.0439 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 83 & -0.6855 34.4079 42.9260 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 84 ’ -0.9292 9.7632 17.1929 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 85 [ -1.2320 12.9561 55.1777 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 86 - 22.6286 12.1338 5.1628 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 87 Y 0.3025 32.4239 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 88 Q -0.0076 40.0054 50.6958 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 89 " -0.3900 14.8217 10.9485 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 90 ! -0.4572 8.5779 42.9260 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 91 x 11.7019 29.1853 30.3706 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 92 ) -0.7544 11.8887 54.4968 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 93 = 17.3496 23.7632 13.5993 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 94 + 12.1597 23.5040 23.5040 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 95 X 0.1038 32.3782 42.0000 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 96 » 17.2146 21.2303 15.5254 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 97 ' -0.3238 5.1628 10.9485 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 98 ¢ 7.0018 20.2901 39.0664 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 99 Z 0.2292 26.6523 41.7778 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 100 > 12.0595 20.7117 23.6008 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 101 ® 3.5996 38.2219 38.2219 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 102 © 3.9136 38.2219 38.2219 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 103 ] -0.9615 12.9561 55.1777 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 104 é -3.5416 28.1414 46.1769 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 105 z 11.8033 25.2078 30.3706 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 106 _ 45.8839 30.3706 3.7781 -Trebuchet_MS.ttf 66 7 26.7339 42.0000 107 ¥ 0.4164 32.2017 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 1 t 3.3256 20.0679 39.1479 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 2 h -1.1287 24.5269 43.1853 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 3 a 11.0792 25.7702 31.4731 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 4 n 10.7436 24.5269 31.0515 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 5 P 0.0000 25.2665 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 6 o 10.9518 27.8006 31.4731 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 7 e 11.1105 28.1414 31.4731 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 8 : 11.0109 8.5779 31.4731 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 9 r 10.7279 18.3782 31.0515 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 10 l -1.3764 10.7263 43.6069 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 11 i 0.2197 10.9855 41.8006 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 12 1 -0.0624 14.1414 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 13 | 2.0569 4.8826 48.1487 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 14 N -0.0876 28.7266 42.1994 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 15 f -1.2832 19.9642 43.1853 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 16 g 9.6272 25.2287 44.2292 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 17 d -1.1348 26.6153 43.6069 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 18 W 0.1106 48.0809 42.1994 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 19 s 10.6227 19.7857 31.4731 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 20 c 10.6804 25.2078 31.4731 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 21 u 11.9758 24.9855 30.7922 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 22 3 -0.1759 23.3416 42.4217 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 23 ~ 20.9018 20.6080 6.1487 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 24 # 0.0889 30.9707 42.4217 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 25 O -0.0363 34.4666 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 26 ` -3.9287 10.2447 9.3996 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 27 @ 4.1552 39.0664 41.7999 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 28 F -0.0488 25.7708 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 29 S -0.1288 23.5638 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 30 p 11.0316 26.7339 43.0439 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 31 “ -0.7550 22.5779 17.1929 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 32 % -0.0086 31.3564 42.4217 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 33 £ 0.1745 25.4300 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 34 . 33.8005 8.5779 8.5779 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 35 2 0.0831 25.3115 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 36 5 0.3679 23.7625 42.4217 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 37 m 10.8866 41.1197 31.0515 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 38 V 0.2385 32.7998 42.1994 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 39 6 0.1259 25.7708 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 40 w 11.5054 43.4311 30.7922 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 41 T 0.1333 32.4239 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 42 M 0.3173 41.3412 42.1994 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 43 G -0.0856 32.7998 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 44 b -1.1950 26.7339 43.6069 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 45 9 0.2267 25.5714 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 46 ; 11.0596 9.9854 41.2734 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 47 D -0.0091 29.3267 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 48 L -0.1463 23.7632 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 49 y 11.7996 29.1853 42.3630 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 50 ‘ -0.8116 9.7632 17.1929 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 51 \ -0.1902 20.5722 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 52 R -0.1316 29.1853 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 53 < 12.1679 20.7117 23.6008 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 54 4 -0.1874 28.0000 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 55 8 -0.2710 25.5714 42.4217 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 56 0 0.3353 26.8974 42.4217 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 57 A 0.2461 34.1037 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 58 E 0.2368 24.9485 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 59 B 0.0414 26.5555 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 60 v 11.6160 28.3630 30.7922 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 61 k -1.0445 25.9116 43.1853 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 62 J -0.0681 21.5692 42.1994 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 63 U 0.3841 29.2897 42.4587 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 64 j 0.0634 15.1853 53.7930 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 65 ( -0.5044 11.8887 54.4968 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 66 7 -0.2228 26.7339 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 67 § -0.0908 22.3934 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 68 $ -4.1595 23.5638 53.2658 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 69 € -0.1394 28.8433 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 70 / 0.4357 20.9939 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 71 C -0.3200 30.2298 42.6809 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 72 * -0.5309 18.5997 17.5559 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 73 ” -0.5772 22.9416 17.1929 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 74 ? -0.4793 18.7418 42.9260 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 75 { -0.6575 19.6443 54.6733 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 76 } -0.5713 19.6443 54.6733 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 77 , 33.3231 9.9854 18.7998 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 78 I 0.0074 5.7857 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 79 ° -0.3903 12.0301 12.0301 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 80 K 0.1704 28.1765 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 81 H 0.1065 29.5489 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 82 q 11.0090 26.7567 43.0439 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 83 & -0.5389 34.4079 42.9260 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 84 ’ -0.7410 9.7632 17.1929 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 85 [ -1.3972 12.9561 55.1777 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 86 - 22.7449 12.1338 5.1628 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 87 Y 0.1481 32.4239 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 88 Q 0.1379 40.0054 50.6958 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 89 " -0.5501 14.8217 10.9485 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 90 ! -0.4462 8.5779 42.9260 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 91 x 11.7125 29.1853 30.3706 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 92 ) -0.6673 11.8887 54.4968 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 93 = 17.1962 23.7632 13.5993 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 94 + 11.7613 23.5040 23.5040 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 95 X -0.1274 32.3782 42.0000 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 96 » 17.5021 21.2303 15.5254 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 97 ' -0.3146 5.1628 10.9485 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 98 ¢ 7.2257 20.2901 39.0664 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 99 Z 0.2113 26.6523 41.7778 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 100 > 11.9042 20.7117 23.6008 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 101 ® 3.6993 38.2219 38.2219 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 102 © 4.0759 38.2219 38.2219 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 103 ] -0.8399 12.9561 55.1777 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 104 é -3.7884 28.1414 46.1769 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 105 z 11.5481 25.2078 30.3706 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 106 _ 45.9141 30.3706 3.7781 -Trebuchet_MS.ttf 67 § 22.3934 42.6809 107 ¥ -0.0768 32.2017 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 1 t 7.2521 20.0679 39.1479 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 2 h 2.8943 24.5269 43.1853 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 3 a 15.0118 25.7702 31.4731 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 4 n 15.1468 24.5269 31.0515 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 5 P 4.1997 25.2665 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 6 o 15.4000 27.8006 31.4731 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 7 e 15.3169 28.1414 31.4731 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 8 : 15.2847 8.5779 31.4731 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 9 r 15.2074 18.3782 31.0515 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 10 l 3.0947 10.7263 43.6069 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 11 i 4.3378 10.9855 41.8006 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 12 1 3.8217 14.1414 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 13 | 6.0386 4.8826 48.1487 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 14 N 4.4562 28.7266 42.1994 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 15 f 2.8675 19.9642 43.1853 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 16 g 13.9398 25.2287 44.2292 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 17 d 2.8976 26.6153 43.6069 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 18 W 4.6882 48.0809 42.1994 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 19 s 15.0344 19.7857 31.4731 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 20 c 15.2684 25.2078 31.4731 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 21 u 15.6961 24.9855 30.7922 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 22 3 4.1884 23.3416 42.4217 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 23 ~ 25.2380 20.6080 6.1487 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 24 # 4.1939 30.9707 42.4217 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 25 O 4.4936 34.4666 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 26 ` 0.4093 10.2447 9.3996 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 27 @ 8.2847 39.0664 41.7999 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 28 F 4.6209 25.7708 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 29 S 4.2306 23.5638 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 30 p 14.9096 26.7339 43.0439 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 31 “ 3.3411 22.5779 17.1929 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 32 % 4.2664 31.3564 42.4217 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 33 £ 3.9835 25.4300 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 34 . 37.8756 8.5779 8.5779 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 35 2 4.3460 25.3115 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 36 5 4.2146 23.7625 42.4217 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 37 m 15.1791 41.1197 31.0515 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 38 V 4.2159 32.7998 42.1994 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 39 6 4.2135 25.7708 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 40 w 15.6761 43.4311 30.7922 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 41 T 4.5069 32.4239 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 42 M 4.0646 41.3412 42.1994 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 43 G 4.1791 32.7998 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 44 b 3.0116 26.7339 43.6069 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 45 9 4.1775 25.5714 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 46 ; 15.0992 9.9854 41.2734 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 47 D 4.1521 29.3267 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 48 L 4.5479 23.7632 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 49 y 16.1003 29.1853 42.3630 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 50 ‘ 3.4373 9.7632 17.1929 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 51 \ 4.3791 20.5722 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 52 R 4.3927 29.1853 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 53 < 16.5027 20.7117 23.6008 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 54 4 4.2415 28.0000 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 55 8 3.8971 25.5714 42.4217 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 56 0 4.1105 26.8974 42.4217 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 57 A 4.3881 34.1037 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 58 E 4.4116 24.9485 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 59 B 4.0840 26.5555 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 60 v 15.7464 28.3630 30.7922 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 61 k 3.1552 25.9116 43.1853 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 62 J 4.2399 21.5692 42.1994 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 63 U 4.3298 29.2897 42.4587 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 64 j 4.2603 15.1853 53.7930 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 65 ( 3.4984 11.8887 54.4968 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 66 7 4.1080 26.7339 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 67 § 4.1997 22.3934 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 68 $ -0.0842 23.5638 53.2658 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 69 € 4.1994 28.8433 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 70 / 4.0695 20.9939 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 71 C 4.0120 30.2298 42.6809 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 72 * 3.7843 18.5997 17.5559 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 73 ” 3.7220 22.9416 17.1929 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 74 ? 3.8275 18.7418 42.9260 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 75 { 3.4404 19.6443 54.6733 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 76 } 3.6835 19.6443 54.6733 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 77 , 37.6513 9.9854 18.7998 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 78 I 4.4833 5.7857 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 79 ° 3.8943 12.0301 12.0301 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 80 K 4.5878 28.1765 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 81 H 4.5892 29.5489 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 82 q 15.1643 26.7567 43.0439 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 83 & 4.0056 34.4079 42.9260 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 84 ’ 3.4181 9.7632 17.1929 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 85 [ 3.3436 12.9561 55.1777 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 86 - 27.2053 12.1338 5.1628 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 87 Y 4.2217 32.4239 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 88 Q 3.9546 40.0054 50.6958 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 89 " 3.7324 14.8217 10.9485 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 90 ! 3.6562 8.5779 42.9260 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 91 x 15.8605 29.1853 30.3706 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 92 ) 3.7001 11.8887 54.4968 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 93 = 21.4656 23.7632 13.5993 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 94 + 16.0319 23.5040 23.5040 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 95 X 4.1036 32.3782 42.0000 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 96 » 21.4989 21.2303 15.5254 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 97 ' 3.9698 5.1628 10.9485 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 98 ¢ 11.2598 20.2901 39.0664 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 99 Z 4.5258 26.6523 41.7778 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 100 > 16.4013 20.7117 23.6008 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 101 ® 8.0856 38.2219 38.2219 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 102 © 7.8579 38.2219 38.2219 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 103 ] 3.1338 12.9561 55.1777 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 104 é 0.3461 28.1414 46.1769 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 105 z 15.9744 25.2078 30.3706 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 106 _ 49.8651 30.3706 3.7781 -Trebuchet_MS.ttf 68 $ 23.5638 53.2658 107 ¥ 4.5122 32.2017 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 1 t 3.2453 20.0679 39.1479 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 2 h -1.1116 24.5269 43.1853 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 3 a 10.6742 25.7702 31.4731 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 4 n 10.8763 24.5269 31.0515 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 5 P -0.0488 25.2665 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 6 o 11.0402 27.8006 31.4731 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 7 e 11.0411 28.1414 31.4731 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 8 : 10.6843 8.5779 31.4731 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 9 r 10.7732 18.3782 31.0515 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 10 l -1.1791 10.7263 43.6069 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 11 i 0.1846 10.9855 41.8006 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 12 1 0.3290 14.1414 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 13 | 1.7509 4.8826 48.1487 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 14 N 0.1991 28.7266 42.1994 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 15 f -0.9575 19.9642 43.1853 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 16 g 9.3744 25.2287 44.2292 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 17 d -1.1853 26.6153 43.6069 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 18 W 0.5750 48.0809 42.1994 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 19 s 11.0164 19.7857 31.4731 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 20 c 10.9569 25.2078 31.4731 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 21 u 11.7125 24.9855 30.7922 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 22 3 -0.2316 23.3416 42.4217 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 23 ~ 20.6085 20.6080 6.1487 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 24 # 0.2250 30.9707 42.4217 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 25 O -0.0059 34.4666 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 26 ` -3.8337 10.2447 9.3996 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 27 @ 4.2123 39.0664 41.7999 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 28 F 0.1083 25.7708 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 29 S -0.0250 23.5638 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 30 p 11.0643 26.7339 43.0439 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 31 “ -0.4099 22.5779 17.1929 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 32 % -0.3127 31.3564 42.4217 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 33 £ -0.2013 25.4300 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 34 . 34.0824 8.5779 8.5779 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 35 2 0.4104 25.3115 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 36 5 -0.1287 23.7625 42.4217 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 37 m 10.6854 41.1197 31.0515 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 38 V 0.2053 32.7998 42.1994 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 39 6 -0.0831 25.7708 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 40 w 11.6134 43.4311 30.7922 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 41 T 0.1823 32.4239 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 42 M 0.3376 41.3412 42.1994 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 43 G 0.1084 32.7998 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 44 b -1.0219 26.7339 43.6069 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 45 9 -0.2870 25.5714 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 46 ; 10.9572 9.9854 41.2734 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 47 D -0.3290 29.3267 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 48 L 0.2121 23.7632 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 49 y 11.5243 29.1853 42.3630 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 50 ‘ -0.7104 9.7632 17.1929 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 51 \ -0.0917 20.5722 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 52 R -0.0262 29.1853 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 53 < 12.2346 20.7117 23.6008 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 54 4 -0.0922 28.0000 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 55 8 0.2427 25.5714 42.4217 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 56 0 -0.1717 26.8974 42.4217 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 57 A 0.0164 34.1037 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 58 E 0.3572 24.9485 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 59 B 0.0353 26.5555 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 60 v 11.5054 28.3630 30.7922 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 61 k -1.2636 25.9116 43.1853 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 62 J -0.0237 21.5692 42.1994 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 63 U 0.4471 29.2897 42.4587 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 64 j 0.2172 15.1853 53.7930 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 65 ( -0.4464 11.8887 54.4968 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 66 7 -0.0798 26.7339 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 67 § 0.0106 22.3934 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 68 $ -4.1627 23.5638 53.2658 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 69 € -0.0755 28.8433 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 70 / -0.3349 20.9939 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 71 C -0.1368 30.2298 42.6809 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 72 * -0.7276 18.5997 17.5559 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 73 ” -0.6791 22.9416 17.1929 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 74 ? -0.5846 18.7418 42.9260 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 75 { -0.5858 19.6443 54.6733 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 76 } -0.7640 19.6443 54.6733 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 77 , 33.5955 9.9854 18.7998 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 78 I 0.3111 5.7857 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 79 ° -0.4246 12.0301 12.0301 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 80 K -0.0548 28.1765 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 81 H 0.1924 29.5489 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 82 q 11.0185 26.7567 43.0439 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 83 & -0.6376 34.4079 42.9260 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 84 ’ -0.5742 9.7632 17.1929 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 85 [ -1.2742 12.9561 55.1777 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 86 - 22.5197 12.1338 5.1628 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 87 Y 0.0656 32.4239 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 88 Q 0.0877 40.0054 50.6958 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 89 " -0.1230 14.8217 10.9485 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 90 ! -0.5504 8.5779 42.9260 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 91 x 11.5749 29.1853 30.3706 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 92 ) -0.7134 11.8887 54.4968 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 93 = 17.2219 23.7632 13.5993 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 94 + 11.9344 23.5040 23.5040 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 95 X 0.0134 32.3782 42.0000 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 96 » 17.4416 21.2303 15.5254 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 97 ' -0.7027 5.1628 10.9485 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 98 ¢ 7.2852 20.2901 39.0664 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 99 Z 0.1976 26.6523 41.7778 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 100 > 12.2172 20.7117 23.6008 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 101 ® 3.7291 38.2219 38.2219 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 102 © 3.5777 38.2219 38.2219 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 103 ] -0.7855 12.9561 55.1777 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 104 é -3.9675 28.1414 46.1769 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 105 z 11.6716 25.2078 30.3706 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 106 _ 45.9545 30.3706 3.7781 -Trebuchet_MS.ttf 69 € 28.8433 42.6809 107 ¥ -0.2092 32.2017 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 1 t 3.0749 20.0679 39.1479 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 2 h -1.0910 24.5269 43.1853 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 3 a 10.6045 25.7702 31.4731 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 4 n 10.7226 24.5269 31.0515 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 5 P 0.0051 25.2665 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 6 o 11.0472 27.8006 31.4731 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 7 e 10.9750 28.1414 31.4731 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 8 : 10.8226 8.5779 31.4731 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 9 r 11.1738 18.3782 31.0515 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 10 l -1.2865 10.7263 43.6069 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 11 i 0.3639 10.9855 41.8006 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 12 1 0.0697 14.1414 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 13 | 1.7962 4.8826 48.1487 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 14 N 0.2500 28.7266 42.1994 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 15 f -1.0340 19.9642 43.1853 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 16 g 9.6863 25.2287 44.2292 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 17 d -1.4256 26.6153 43.6069 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 18 W 0.4309 48.0809 42.1994 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 19 s 10.9203 19.7857 31.4731 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 20 c 10.7054 25.2078 31.4731 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 21 u 11.6562 24.9855 30.7922 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 22 3 -0.1056 23.3416 42.4217 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 23 ~ 20.5730 20.6080 6.1487 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 24 # -0.2877 30.9707 42.4217 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 25 O 0.1853 34.4666 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 26 ` -3.8975 10.2447 9.3996 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 27 @ 4.1292 39.0664 41.7999 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 28 F 0.1961 25.7708 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 29 S 0.0432 23.5638 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 30 p 11.0125 26.7339 43.0439 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 31 “ -0.7078 22.5779 17.1929 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 32 % 0.1741 31.3564 42.4217 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 33 £ 0.2075 25.4300 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 34 . 33.9183 8.5779 8.5779 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 35 2 -0.2286 25.3115 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 36 5 -0.0755 23.7625 42.4217 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 37 m 10.8654 41.1197 31.0515 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 38 V 0.3590 32.7998 42.1994 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 39 6 -0.0189 25.7708 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 40 w 11.4146 43.4311 30.7922 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 41 T 0.1541 32.4239 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 42 M 0.2121 41.3412 42.1994 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 43 G -0.0695 32.7998 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 44 b -1.1823 26.7339 43.6069 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 45 9 -0.1316 25.5714 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 46 ; 10.8401 9.9854 41.2734 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 47 D 0.2253 29.3267 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 48 L 0.4090 23.7632 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 49 y 11.5935 29.1853 42.3630 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 50 ‘ -0.7920 9.7632 17.1929 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 51 \ 0.0346 20.5722 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 52 R 0.3378 29.1853 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 53 < 12.0232 20.7117 23.6008 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 54 4 -0.1782 28.0000 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 55 8 -0.0461 25.5714 42.4217 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 56 0 -0.0951 26.8974 42.4217 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 57 A -0.0875 34.1037 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 58 E 0.2309 24.9485 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 59 B -0.0802 26.5555 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 60 v 11.7234 28.3630 30.7922 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 61 k -1.3688 25.9116 43.1853 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 62 J 0.1675 21.5692 42.1994 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 63 U 0.2309 29.2897 42.4587 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 64 j 0.0016 15.1853 53.7930 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 65 ( -0.5040 11.8887 54.4968 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 66 7 -0.4031 26.7339 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 67 § -0.0360 22.3934 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 68 $ -4.1229 23.5638 53.2658 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 69 € 0.3200 28.8433 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 70 / 0.0606 20.9939 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 71 C -0.0290 30.2298 42.6809 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 72 * -0.3962 18.5997 17.5559 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 73 ” -0.5967 22.9416 17.1929 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 74 ? -0.4259 18.7418 42.9260 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 75 { -0.9457 19.6443 54.6733 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 76 } -0.9625 19.6443 54.6733 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 77 , 33.6411 9.9854 18.7998 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 78 I 0.1138 5.7857 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 79 ° -0.5105 12.0301 12.0301 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 80 K 0.2520 28.1765 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 81 H 0.1062 29.5489 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 82 q 11.0312 26.7567 43.0439 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 83 & -0.6144 34.4079 42.9260 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 84 ’ -0.7179 9.7632 17.1929 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 85 [ -1.2063 12.9561 55.1777 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 86 - 23.0443 12.1338 5.1628 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 87 Y 0.1395 32.4239 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 88 Q 0.0653 40.0054 50.6958 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 89 " -0.5490 14.8217 10.9485 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 90 ! -0.3571 8.5779 42.9260 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 91 x 11.5452 29.1853 30.3706 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 92 ) -0.6220 11.8887 54.4968 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 93 = 17.0670 23.7632 13.5993 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 94 + 12.1535 23.5040 23.5040 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 95 X 0.3216 32.3782 42.0000 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 96 » 17.6699 21.2303 15.5254 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 97 ' -0.4861 5.1628 10.9485 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 98 ¢ 7.0695 20.2901 39.0664 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 99 Z 0.1704 26.6523 41.7778 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 100 > 12.0474 20.7117 23.6008 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 101 ® 3.5857 38.2219 38.2219 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 102 © 3.7691 38.2219 38.2219 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 103 ] -1.2742 12.9561 55.1777 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 104 é -3.8256 28.1414 46.1769 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 105 z 11.7557 25.2078 30.3706 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 106 _ 45.7382 30.3706 3.7781 -Trebuchet_MS.ttf 70 / 20.9939 42.0000 107 ¥ 0.3115 32.2017 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 1 t 3.4736 20.0679 39.1479 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 2 h -1.1886 24.5269 43.1853 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 3 a 11.1277 25.7702 31.4731 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 4 n 10.8683 24.5269 31.0515 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 5 P 0.0063 25.2665 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 6 o 11.1883 27.8006 31.4731 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 7 e 10.8320 28.1414 31.4731 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 8 : 10.9903 8.5779 31.4731 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 9 r 11.1824 18.3782 31.0515 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 10 l -1.4740 10.7263 43.6069 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 11 i 0.4500 10.9855 41.8006 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 12 1 0.1259 14.1414 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 13 | 1.8306 4.8826 48.1487 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 14 N 0.1556 28.7266 42.1994 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 15 f -1.3554 19.9642 43.1853 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 16 g 9.7367 25.2287 44.2292 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 17 d -0.9589 26.6153 43.6069 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 18 W -0.0695 48.0809 42.1994 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 19 s 10.9956 19.7857 31.4731 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 20 c 10.9561 25.2078 31.4731 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 21 u 11.5348 24.9855 30.7922 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 22 3 -0.2311 23.3416 42.4217 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 23 ~ 20.7997 20.6080 6.1487 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 24 # -0.0726 30.9707 42.4217 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 25 O 0.1368 34.4666 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 26 ` -3.7597 10.2447 9.3996 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 27 @ 4.0054 39.0664 41.7999 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 28 F 0.1762 25.7708 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 29 S -0.0533 23.5638 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 30 p 11.0413 26.7339 43.0439 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 31 “ -0.5696 22.5779 17.1929 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 32 % -0.3825 31.3564 42.4217 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 33 £ 0.2519 25.4300 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 34 . 33.8226 8.5779 8.5779 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 35 2 -0.2144 25.3115 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 36 5 0.0610 23.7625 42.4217 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 37 m 10.9018 41.1197 31.0515 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 38 V 0.0171 32.7998 42.1994 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 39 6 -0.0519 25.7708 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 40 w 11.6219 43.4311 30.7922 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 41 T 0.1885 32.4239 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 42 M 0.3255 41.3412 42.1994 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 43 G 0.0195 32.7998 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 44 b -1.0219 26.7339 43.6069 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 45 9 0.0664 25.5714 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 46 ; 10.9081 9.9854 41.2734 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 47 D -0.3009 29.3267 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 48 L 0.2462 23.7632 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 49 y 11.5645 29.1853 42.3630 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 50 ‘ -0.6192 9.7632 17.1929 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 51 \ -0.0169 20.5722 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 52 R -0.2238 29.1853 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 53 < 12.0482 20.7117 23.6008 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 54 4 0.2352 28.0000 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 55 8 0.0739 25.5714 42.4217 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 56 0 -0.0473 26.8974 42.4217 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 57 A -0.0650 34.1037 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 58 E 0.2370 24.9485 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 59 B -0.1023 26.5555 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 60 v 11.7148 28.3630 30.7922 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 61 k -1.1170 25.9116 43.1853 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 62 J 0.4453 21.5692 42.1994 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 63 U 0.4000 29.2897 42.4587 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 64 j 0.1686 15.1853 53.7930 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 65 ( -0.5088 11.8887 54.4968 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 66 7 0.1006 26.7339 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 67 § 0.3123 22.3934 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 68 $ -4.4157 23.5638 53.2658 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 69 € -0.2506 28.8433 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 70 / -0.1669 20.9939 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 71 C 0.0558 30.2298 42.6809 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 72 * -0.5686 18.5997 17.5559 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 73 ” -0.8500 22.9416 17.1929 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 74 ? -0.6292 18.7418 42.9260 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 75 { -0.5493 19.6443 54.6733 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 76 } -0.8482 19.6443 54.6733 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 77 , 33.3934 9.9854 18.7998 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 78 I 0.3890 5.7857 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 79 ° -0.4229 12.0301 12.0301 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 80 K 0.3654 28.1765 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 81 H 0.2262 29.5489 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 82 q 11.1956 26.7567 43.0439 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 83 & -0.2531 34.4079 42.9260 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 84 ’ -0.5757 9.7632 17.1929 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 85 [ -1.1882 12.9561 55.1777 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 86 - 22.5316 12.1338 5.1628 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 87 Y 0.3228 32.4239 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 88 Q -0.1639 40.0054 50.6958 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 89 " -0.5933 14.8217 10.9485 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 90 ! -0.3953 8.5779 42.9260 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 91 x 11.6409 29.1853 30.3706 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 92 ) -0.4260 11.8887 54.4968 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 93 = 17.2281 23.7632 13.5993 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 94 + 11.6884 23.5040 23.5040 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 95 X 0.2338 32.3782 42.0000 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 96 » 17.2578 21.2303 15.5254 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 97 ' -0.4126 5.1628 10.9485 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 98 ¢ 7.2604 20.2901 39.0664 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 99 Z 0.1934 26.6523 41.7778 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 100 > 12.1018 20.7117 23.6008 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 101 ® 3.7809 38.2219 38.2219 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 102 © 3.5295 38.2219 38.2219 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 103 ] -0.9992 12.9561 55.1777 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 104 é -4.0335 28.1414 46.1769 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 105 z 11.4041 25.2078 30.3706 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 106 _ 45.7411 30.3706 3.7781 -Trebuchet_MS.ttf 71 C 30.2298 42.6809 107 ¥ 0.2134 32.2017 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 1 t 3.8112 20.0679 39.1479 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 2 h -0.6399 24.5269 43.1853 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 3 a 11.4420 25.7702 31.4731 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 4 n 11.5741 24.5269 31.0515 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 5 P 0.8204 25.2665 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 6 o 11.2747 27.8006 31.4731 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 7 e 11.3611 28.1414 31.4731 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 8 : 11.5566 8.5779 31.4731 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 9 r 11.3517 18.3782 31.0515 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 10 l -0.7757 10.7263 43.6069 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 11 i 1.1805 10.9855 41.8006 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 12 1 0.3603 14.1414 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 13 | 2.2761 4.8826 48.1487 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 14 N 0.7665 28.7266 42.1994 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 15 f -0.6968 19.9642 43.1853 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 16 g 10.4377 25.2287 44.2292 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 17 d -0.8159 26.6153 43.6069 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 18 W 0.2699 48.0809 42.1994 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 19 s 11.5408 19.7857 31.4731 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 20 c 11.5918 25.2078 31.4731 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 21 u 12.1458 24.9855 30.7922 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 22 3 0.5797 23.3416 42.4217 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 23 ~ 21.5857 20.6080 6.1487 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 24 # 0.4684 30.9707 42.4217 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 25 O 0.5072 34.4666 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 26 ` -3.4998 10.2447 9.3996 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 27 @ 4.5400 39.0664 41.7999 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 28 F 0.9418 25.7708 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 29 S 0.5533 23.5638 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 30 p 11.1597 26.7339 43.0439 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 31 “ -0.2033 22.5779 17.1929 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 32 % 0.4093 31.3564 42.4217 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 33 £ 0.6614 25.4300 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 34 . 34.2064 8.5779 8.5779 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 35 2 0.6879 25.3115 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 36 5 0.7013 23.7625 42.4217 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 37 m 11.3389 41.1197 31.0515 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 38 V 0.7906 32.7998 42.1994 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 39 6 0.4355 25.7708 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 40 w 12.1229 43.4311 30.7922 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 41 T 0.7723 32.4239 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 42 M 0.7477 41.3412 42.1994 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 43 G 0.3535 32.7998 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 44 b -0.7760 26.7339 43.6069 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 45 9 0.2978 25.5714 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 46 ; 11.2291 9.9854 41.2734 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 47 D 0.7566 29.3267 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 48 L 0.9058 23.7632 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 49 y 12.2910 29.1853 42.3630 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 50 ‘ -0.2683 9.7632 17.1929 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 51 \ 0.2873 20.5722 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 52 R 0.3636 29.1853 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 53 < 12.7028 20.7117 23.6008 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 54 4 0.6217 28.0000 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 55 8 0.3238 25.5714 42.4217 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 56 0 0.8023 26.8974 42.4217 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 57 A 0.5886 34.1037 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 58 E 0.7272 24.9485 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 59 B 0.3655 26.5555 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 60 v 12.3097 28.3630 30.7922 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 61 k -0.6947 25.9116 43.1853 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 62 J 0.5546 21.5692 42.1994 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 63 U 0.6238 29.2897 42.4587 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 64 j 0.6305 15.1853 53.7930 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 65 ( 0.0544 11.8887 54.4968 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 66 7 0.2512 26.7339 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 67 § 0.3251 22.3934 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 68 $ -3.6931 23.5638 53.2658 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 69 € 0.6332 28.8433 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 70 / 0.3842 20.9939 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 71 C 0.4202 30.2298 42.6809 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 72 * 0.1709 18.5997 17.5559 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 73 ” -0.2091 22.9416 17.1929 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 74 ? -0.0831 18.7418 42.9260 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 75 { -0.1395 19.6443 54.6733 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 76 } -0.3562 19.6443 54.6733 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 77 , 33.9102 9.9854 18.7998 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 78 I 0.6805 5.7857 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 79 ° -0.1336 12.0301 12.0301 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 80 K 0.8061 28.1765 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 81 H 0.8023 29.5489 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 82 q 11.3288 26.7567 43.0439 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 83 & -0.0505 34.4079 42.9260 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 84 ’ -0.2741 9.7632 17.1929 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 85 [ -0.8540 12.9561 55.1777 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 86 - 23.2902 12.1338 5.1628 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 87 Y 0.6416 32.4239 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 88 Q 0.6245 40.0054 50.6958 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 89 " -0.0048 14.8217 10.9485 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 90 ! -0.0831 8.5779 42.9260 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 91 x 12.0416 29.1853 30.3706 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 92 ) 0.0393 11.8887 54.4968 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 93 = 17.8375 23.7632 13.5993 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 94 + 12.4496 23.5040 23.5040 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 95 X 0.3410 32.3782 42.0000 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 96 » 17.6511 21.2303 15.5254 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 97 ' 0.4029 5.1628 10.9485 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 98 ¢ 7.7546 20.2901 39.0664 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 99 Z 0.8850 26.6523 41.7778 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 100 > 12.1049 20.7117 23.6008 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 101 ® 4.0895 38.2219 38.2219 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 102 © 4.3467 38.2219 38.2219 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 103 ] -0.7865 12.9561 55.1777 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 104 é -3.1160 28.1414 46.1769 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 105 z 11.9949 25.2078 30.3706 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 106 _ 46.1367 30.3706 3.7781 -Trebuchet_MS.ttf 72 * 18.5997 17.5559 107 ¥ 0.6530 32.2017 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 1 t 4.0155 20.0679 39.1479 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 2 h -0.6825 24.5269 43.1853 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 3 a 11.6334 25.7702 31.4731 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 4 n 11.5395 24.5269 31.0515 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 5 P 0.6617 25.2665 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 6 o 11.4031 27.8006 31.4731 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 7 e 11.6712 28.1414 31.4731 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 8 : 11.6276 8.5779 31.4731 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 9 r 11.8975 18.3782 31.0515 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 10 l -0.6179 10.7263 43.6069 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 11 i 0.6746 10.9855 41.8006 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 12 1 0.9811 14.1414 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 13 | 2.6715 4.8826 48.1487 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 14 N 0.9728 28.7266 42.1994 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 15 f -0.3758 19.9642 43.1853 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 16 g 10.2390 25.2287 44.2292 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 17 d -0.6538 26.6153 43.6069 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 18 W 0.9191 48.0809 42.1994 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 19 s 11.4381 19.7857 31.4731 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 20 c 11.5075 25.2078 31.4731 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 21 u 12.5088 24.9855 30.7922 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 22 3 0.7828 23.3416 42.4217 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 23 ~ 21.6110 20.6080 6.1487 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 24 # 0.8644 30.9707 42.4217 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 25 O 0.7015 34.4666 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 26 ` -2.9060 10.2447 9.3996 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 27 @ 4.7536 39.0664 41.7999 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 28 F 1.1844 25.7708 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 29 S 0.7423 23.5638 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 30 p 11.4007 26.7339 43.0439 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 31 “ -0.1596 22.5779 17.1929 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 32 % 0.4248 31.3564 42.4217 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 33 £ 0.7920 25.4300 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 34 . 34.4390 8.5779 8.5779 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 35 2 0.9711 25.3115 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 36 5 0.7099 23.7625 42.4217 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 37 m 11.3638 41.1197 31.0515 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 38 V 0.7479 32.7998 42.1994 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 39 6 0.8453 25.7708 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 40 w 12.3103 43.4311 30.7922 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 41 T 0.8379 32.4239 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 42 M 0.9935 41.3412 42.1994 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 43 G 0.7612 32.7998 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 44 b -0.3575 26.7339 43.6069 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 45 9 0.5934 25.5714 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 46 ; 11.7016 9.9854 41.2734 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 47 D 0.5789 29.3267 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 48 L 1.0305 23.7632 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 49 y 12.4143 29.1853 42.3630 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 50 ‘ -0.0210 9.7632 17.1929 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 51 \ 0.6243 20.5722 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 52 R 0.5591 29.1853 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 53 < 12.7651 20.7117 23.6008 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 54 4 0.3815 28.0000 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 55 8 0.8169 25.5714 42.4217 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 56 0 0.7582 26.8974 42.4217 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 57 A 0.8554 34.1037 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 58 E 1.0532 24.9485 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 59 B 0.8813 26.5555 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 60 v 12.2301 28.3630 30.7922 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 61 k -0.5207 25.9116 43.1853 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 62 J 1.0976 21.5692 42.1994 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 63 U 0.6408 29.2897 42.4587 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 64 j 0.7353 15.1853 53.7930 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 65 ( 0.3748 11.8887 54.4968 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 66 7 0.7662 26.7339 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 67 § 0.3707 22.3934 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 68 $ -3.4967 23.5638 53.2658 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 69 € 0.8529 28.8433 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 70 / 0.8097 20.9939 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 71 C 0.6957 30.2298 42.6809 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 72 * 0.5745 18.5997 17.5559 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 73 ” 0.0490 22.9416 17.1929 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 74 ? 0.1947 18.7418 42.9260 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 75 { 0.0884 19.6443 54.6733 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 76 } 0.2177 19.6443 54.6733 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 77 , 34.1933 9.9854 18.7998 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 78 I 0.7419 5.7857 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 79 ° 0.0367 12.0301 12.0301 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 80 K 1.1270 28.1765 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 81 H 0.7787 29.5489 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 82 q 11.4678 26.7567 43.0439 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 83 & 0.1879 34.4079 42.9260 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 84 ’ -0.1052 9.7632 17.1929 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 85 [ -0.3622 12.9561 55.1777 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 86 - 23.5069 12.1338 5.1628 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 87 Y 0.7920 32.4239 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 88 Q 0.9644 40.0054 50.6958 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 89 " 0.1111 14.8217 10.9485 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 90 ! 0.0212 8.5779 42.9260 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 91 x 12.4656 29.1853 30.3706 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 92 ) 0.2548 11.8887 54.4968 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 93 = 17.8857 23.7632 13.5993 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 94 + 12.8233 23.5040 23.5040 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 95 X 0.3729 32.3782 42.0000 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 96 » 17.9470 21.2303 15.5254 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 97 ' 0.1765 5.1628 10.9485 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 98 ¢ 7.5720 20.2901 39.0664 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 99 Z 0.7906 26.6523 41.7778 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 100 > 12.7120 20.7117 23.6008 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 101 ® 4.5214 38.2219 38.2219 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 102 © 4.3135 38.2219 38.2219 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 103 ] -0.5323 12.9561 55.1777 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 104 é -3.0150 28.1414 46.1769 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 105 z 12.0937 25.2078 30.3706 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 106 _ 46.3370 30.3706 3.7781 -Trebuchet_MS.ttf 73 ” 22.9416 17.1929 107 ¥ 0.9021 32.2017 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 1 t 3.6816 20.0679 39.1479 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 2 h -0.8780 24.5269 43.1853 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 3 a 11.2892 25.7702 31.4731 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 4 n 11.6220 24.5269 31.0515 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 5 P 0.3694 25.2665 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 6 o 11.4961 27.8006 31.4731 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 7 e 11.2315 28.1414 31.4731 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 8 : 11.6517 8.5779 31.4731 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 9 r 11.4763 18.3782 31.0515 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 10 l -0.5906 10.7263 43.6069 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 11 i 0.8622 10.9855 41.8006 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 12 1 0.7014 14.1414 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 13 | 2.4253 4.8826 48.1487 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 14 N 0.7477 28.7266 42.1994 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 15 f -0.5816 19.9642 43.1853 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 16 g 9.8551 25.2287 44.2292 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 17 d -1.0304 26.6153 43.6069 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 18 W 0.5605 48.0809 42.1994 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 19 s 11.3858 19.7857 31.4731 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 20 c 11.6261 25.2078 31.4731 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 21 u 12.0373 24.9855 30.7922 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 22 3 0.5886 23.3416 42.4217 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 23 ~ 21.4003 20.6080 6.1487 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 24 # 0.4336 30.9707 42.4217 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 25 O 0.4261 34.4666 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 26 ` -3.3106 10.2447 9.3996 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 27 @ 4.6020 39.0664 41.7999 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 28 F 0.6719 25.7708 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 29 S 0.2112 23.5638 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 30 p 11.2425 26.7339 43.0439 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 31 “ -0.1606 22.5779 17.1929 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 32 % 0.4464 31.3564 42.4217 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 33 £ 0.5312 25.4300 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 34 . 34.4802 8.5779 8.5779 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 35 2 0.7285 25.3115 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 36 5 0.5058 23.7625 42.4217 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 37 m 11.0792 41.1197 31.0515 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 38 V 0.7535 32.7998 42.1994 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 39 6 0.2378 25.7708 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 40 w 12.1729 43.4311 30.7922 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 41 T 0.9083 32.4239 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 42 M 0.7386 41.3412 42.1994 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 43 G 0.6418 32.7998 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 44 b -0.7266 26.7339 43.6069 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 45 9 0.6669 25.5714 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 46 ; 11.4037 9.9854 41.2734 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 47 D 0.4093 29.3267 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 48 L 0.5978 23.7632 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 49 y 11.9082 29.1853 42.3630 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 50 ‘ -0.4447 9.7632 17.1929 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 51 \ 0.5947 20.5722 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 52 R 0.5828 29.1853 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 53 < 12.5402 20.7117 23.6008 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 54 4 0.5077 28.0000 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 55 8 0.5044 25.5714 42.4217 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 56 0 0.7311 26.8974 42.4217 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 57 A 0.6568 34.1037 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 58 E 0.8061 24.9485 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 59 B 0.4018 26.5555 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 60 v 12.2102 28.3630 30.7922 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 61 k -0.9683 25.9116 43.1853 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 62 J 0.9951 21.5692 42.1994 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 63 U 0.9014 29.2897 42.4587 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 64 j 0.7532 15.1853 53.7930 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 65 ( -0.0755 11.8887 54.4968 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 66 7 0.2460 26.7339 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 67 § 0.5105 22.3934 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 68 $ -3.8108 23.5638 53.2658 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 69 € 0.5101 28.8433 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 70 / 0.6240 20.9939 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 71 C 0.5577 30.2298 42.6809 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 72 * -0.1026 18.5997 17.5559 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 73 ” -0.1835 22.9416 17.1929 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 74 ? 0.0427 18.7418 42.9260 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 75 { -0.0934 19.6443 54.6733 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 76 } -0.1097 19.6443 54.6733 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 77 , 34.2646 9.9854 18.7998 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 78 I 0.8108 5.7857 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 79 ° -0.2292 12.0301 12.0301 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 80 K 0.7294 28.1765 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 81 H 0.6558 29.5489 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 82 q 11.2867 26.7567 43.0439 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 83 & 0.1313 34.4079 42.9260 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 84 ’ -0.3633 9.7632 17.1929 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 85 [ -0.5507 12.9561 55.1777 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 86 - 23.3477 12.1338 5.1628 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 87 Y 0.6004 32.4239 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 88 Q 0.4246 40.0054 50.6958 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 89 " -0.3094 14.8217 10.9485 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 90 ! -0.0928 8.5779 42.9260 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 91 x 12.0435 29.1853 30.3706 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 92 ) 0.2224 11.8887 54.4968 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 93 = 17.6016 23.7632 13.5993 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 94 + 12.6420 23.5040 23.5040 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 95 X 0.4097 32.3782 42.0000 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 96 » 17.8546 21.2303 15.5254 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 97 ' 0.0418 5.1628 10.9485 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 98 ¢ 7.7038 20.2901 39.0664 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 99 Z 0.6098 26.6523 41.7778 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 100 > 12.4166 20.7117 23.6008 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 101 ® 4.6359 38.2219 38.2219 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 102 © 4.2956 38.2219 38.2219 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 103 ] -0.7629 12.9561 55.1777 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 104 é -3.3250 28.1414 46.1769 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 105 z 11.9618 25.2078 30.3706 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 106 _ 46.2825 30.3706 3.7781 -Trebuchet_MS.ttf 74 ? 18.7418 42.9260 107 ¥ 0.7846 32.2017 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 1 t 4.0861 20.0679 39.1479 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 2 h -0.4525 24.5269 43.1853 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 3 a 11.5060 25.7702 31.4731 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 4 n 11.3895 24.5269 31.0515 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 5 P 0.4071 25.2665 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 6 o 11.6551 27.8006 31.4731 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 7 e 11.6236 28.1414 31.4731 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 8 : 11.8445 8.5779 31.4731 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 9 r 11.5837 18.3782 31.0515 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 10 l -0.5044 10.7263 43.6069 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 11 i 0.9205 10.9855 41.8006 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 12 1 0.7771 14.1414 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 13 | 2.4953 4.8826 48.1487 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 14 N 0.9503 28.7266 42.1994 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 15 f -0.5208 19.9642 43.1853 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 16 g 10.2028 25.2287 44.2292 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 17 d -0.6499 26.6153 43.6069 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 18 W 0.9990 48.0809 42.1994 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 19 s 11.4872 19.7857 31.4731 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 20 c 11.6856 25.2078 31.4731 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 21 u 12.3103 24.9855 30.7922 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 22 3 0.8318 23.3416 42.4217 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 23 ~ 21.3692 20.6080 6.1487 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 24 # 0.4013 30.9707 42.4217 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 25 O 0.4290 34.4666 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 26 ` -3.2400 10.2447 9.3996 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 27 @ 4.5993 39.0664 41.7999 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 28 F 1.0922 25.7708 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 29 S 0.5803 23.5638 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 30 p 11.6504 26.7339 43.0439 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 31 “ 0.0000 22.5779 17.1929 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 32 % 0.6291 31.3564 42.4217 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 33 £ 0.4186 25.4300 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 34 . 34.5592 8.5779 8.5779 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 35 2 0.5550 25.3115 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 36 5 0.7846 23.7625 42.4217 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 37 m 11.7389 41.1197 31.0515 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 38 V 0.7225 32.7998 42.1994 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 39 6 0.5277 25.7708 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 40 w 12.3641 43.4311 30.7922 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 41 T 0.9477 32.4239 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 42 M 0.9118 41.3412 42.1994 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 43 G 0.6155 32.7998 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 44 b -0.5675 26.7339 43.6069 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 45 9 0.6628 25.5714 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 46 ; 11.9294 9.9854 41.2734 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 47 D 0.6673 29.3267 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 48 L 0.8735 23.7632 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 49 y 12.2393 29.1853 42.3630 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 50 ‘ 0.0432 9.7632 17.1929 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 51 \ 0.6392 20.5722 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 52 R 0.6007 29.1853 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 53 < 12.6785 20.7117 23.6008 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 54 4 0.4038 28.0000 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 55 8 0.4153 25.5714 42.4217 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 56 0 0.6257 26.8974 42.4217 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 57 A 0.4541 34.1037 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 58 E 0.8632 24.9485 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 59 B 0.5724 26.5555 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 60 v 12.2618 28.3630 30.7922 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 61 k -0.3029 25.9116 43.1853 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 62 J 0.9416 21.5692 42.1994 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 63 U 1.1621 29.2897 42.4587 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 64 j 0.9840 15.1853 53.7930 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 65 ( 0.0876 11.8887 54.4968 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 66 7 0.5161 26.7339 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 67 § 0.5920 22.3934 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 68 $ -3.7148 23.5638 53.2658 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 69 € 0.8083 28.8433 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 70 / 0.6528 20.9939 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 71 C 0.5184 30.2298 42.6809 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 72 * -0.0440 18.5997 17.5559 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 73 ” 0.2461 22.9416 17.1929 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 74 ? 0.0491 18.7418 42.9260 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 75 { 0.0210 19.6443 54.6733 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 76 } -0.1630 19.6443 54.6733 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 77 , 34.1755 9.9854 18.7998 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 78 I 0.7873 5.7857 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 79 ° 0.2741 12.0301 12.0301 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 80 K 0.8791 28.1765 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 81 H 0.7978 29.5489 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 82 q 11.7597 26.7567 43.0439 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 83 & 0.1765 34.4079 42.9260 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 84 ’ -0.2920 9.7632 17.1929 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 85 [ -0.5755 12.9561 55.1777 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 86 - 23.3422 12.1338 5.1628 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 87 Y 1.0833 32.4239 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 88 Q 0.6142 40.0054 50.6958 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 89 " 0.3115 14.8217 10.9485 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 90 ! 0.4037 8.5779 42.9260 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 91 x 12.4464 29.1853 30.3706 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 92 ) 0.0478 11.8887 54.4968 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 93 = 18.1427 23.7632 13.5993 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 94 + 12.6766 23.5040 23.5040 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 95 X 0.8539 32.3782 42.0000 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 96 » 17.9753 21.2303 15.5254 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 97 ' 0.3547 5.1628 10.9485 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 98 ¢ 7.7871 20.2901 39.0664 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 99 Z 0.9003 26.6523 41.7778 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 100 > 12.7894 20.7117 23.6008 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 101 ® 4.4691 38.2219 38.2219 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 102 © 4.3168 38.2219 38.2219 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 103 ] -0.4213 12.9561 55.1777 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 104 é -3.2201 28.1414 46.1769 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 105 z 12.5241 25.2078 30.3706 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 106 _ 46.4442 30.3706 3.7781 -Trebuchet_MS.ttf 75 { 19.6443 54.6733 107 ¥ 0.9281 32.2017 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 1 t 3.7918 20.0679 39.1479 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 2 h -0.9131 24.5269 43.1853 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 3 a 11.6294 25.7702 31.4731 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 4 n 11.4617 24.5269 31.0515 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 5 P 0.4585 25.2665 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 6 o 11.6425 27.8006 31.4731 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 7 e 12.0799 28.1414 31.4731 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 8 : 11.5343 8.5779 31.4731 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 9 r 11.5848 18.3782 31.0515 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 10 l -0.4246 10.7263 43.6069 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 11 i 0.9481 10.9855 41.8006 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 12 1 0.7564 14.1414 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 13 | 2.8359 4.8826 48.1487 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 14 N 0.9387 28.7266 42.1994 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 15 f -0.5988 19.9642 43.1853 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 16 g 10.4514 25.2287 44.2292 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 17 d -0.7076 26.6153 43.6069 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 18 W 1.0603 48.0809 42.1994 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 19 s 11.5391 19.7857 31.4731 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 20 c 11.6294 25.2078 31.4731 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 21 u 12.4838 24.9855 30.7922 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 22 3 0.6602 23.3416 42.4217 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 23 ~ 21.3933 20.6080 6.1487 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 24 # 0.8887 30.9707 42.4217 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 25 O 0.8145 34.4666 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 26 ` -3.0580 10.2447 9.3996 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 27 @ 4.9242 39.0664 41.7999 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 28 F 0.7061 25.7708 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 29 S 0.7294 23.5638 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 30 p 11.9537 26.7339 43.0439 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 31 “ -0.0352 22.5779 17.1929 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 32 % 0.9451 31.3564 42.4217 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 33 £ 0.7913 25.4300 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 34 . 34.7620 8.5779 8.5779 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 35 2 0.6867 25.3115 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 36 5 0.4571 23.7625 42.4217 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 37 m 11.4220 41.1197 31.0515 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 38 V 1.0174 32.7998 42.1994 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 39 6 0.4476 25.7708 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 40 w 12.4224 43.4311 30.7922 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 41 T 0.8782 32.4239 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 42 M 0.7849 41.3412 42.1994 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 43 G 0.3740 32.7998 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 44 b -0.6648 26.7339 43.6069 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 45 9 0.6160 25.5714 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 46 ; 11.4786 9.9854 41.2734 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 47 D 0.7982 29.3267 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 48 L 0.6397 23.7632 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 49 y 12.2200 29.1853 42.3630 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 50 ‘ -0.1316 9.7632 17.1929 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 51 \ 0.7784 20.5722 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 52 R 0.5151 29.1853 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 53 < 12.7108 20.7117 23.6008 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 54 4 0.5315 28.0000 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 55 8 0.5507 25.5714 42.4217 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 56 0 1.0118 26.8974 42.4217 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 57 A 0.6352 34.1037 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 58 E 0.6937 24.9485 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 59 B 0.6896 26.5555 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 60 v 12.0336 28.3630 30.7922 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 61 k -0.4949 25.9116 43.1853 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 62 J 0.4376 21.5692 42.1994 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 63 U 0.9503 29.2897 42.4587 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 64 j 1.0534 15.1853 53.7930 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 65 ( 0.2995 11.8887 54.4968 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 66 7 0.5237 26.7339 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 67 § 0.5056 22.3934 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 68 $ -3.5573 23.5638 53.2658 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 69 € 0.7299 28.8433 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 70 / 0.8083 20.9939 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 71 C 0.6661 30.2298 42.6809 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 72 * 0.0304 18.5997 17.5559 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 73 ” -0.3232 22.9416 17.1929 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 74 ? 0.1693 18.7418 42.9260 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 75 { -0.1730 19.6443 54.6733 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 76 } 0.1862 19.6443 54.6733 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 77 , 33.8036 9.9854 18.7998 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 78 I 1.2915 5.7857 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 79 ° -0.0103 12.0301 12.0301 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 80 K 1.0439 28.1765 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 81 H 0.8349 29.5489 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 82 q 11.5017 26.7567 43.0439 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 83 & -0.0521 34.4079 42.9260 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 84 ’ 0.0086 9.7632 17.1929 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 85 [ -0.4376 12.9561 55.1777 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 86 - 23.4111 12.1338 5.1628 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 87 Y 1.0068 32.4239 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 88 Q 0.3619 40.0054 50.6958 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 89 " -0.1268 14.8217 10.9485 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 90 ! 0.3923 8.5779 42.9260 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 91 x 12.3728 29.1853 30.3706 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 92 ) 0.1717 11.8887 54.4968 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 93 = 17.7061 23.7632 13.5993 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 94 + 12.6618 23.5040 23.5040 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 95 X 0.8264 32.3782 42.0000 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 96 » 18.2093 21.2303 15.5254 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 97 ' 0.2788 5.1628 10.9485 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 98 ¢ 7.8306 20.2901 39.0664 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 99 Z 0.8560 26.6523 41.7778 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 100 > 12.5575 20.7117 23.6008 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 101 ® 4.7199 38.2219 38.2219 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 102 © 4.5828 38.2219 38.2219 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 103 ] -0.4486 12.9561 55.1777 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 104 é -3.2316 28.1414 46.1769 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 105 z 12.3079 25.2078 30.3706 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 106 _ 46.5580 30.3706 3.7781 -Trebuchet_MS.ttf 76 } 19.6443 54.6733 107 ¥ 0.6840 32.2017 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 1 t -30.0653 20.0679 39.1479 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 2 h -34.6045 24.5269 43.1853 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 3 a -22.5577 25.7702 31.4731 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 4 n -22.6916 24.5269 31.0515 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 5 P -33.3628 25.2665 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 6 o -22.4873 27.8006 31.4731 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 7 e -22.6884 28.1414 31.4731 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 8 : -22.5196 8.5779 31.4731 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 9 r -22.5087 18.3782 31.0515 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 10 l -34.6587 10.7263 43.6069 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 11 i -33.2346 10.9855 41.8006 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 12 1 -33.5461 14.1414 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 13 | -31.3186 4.8826 48.1487 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 14 N -33.3865 28.7266 42.1994 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 15 f -34.5243 19.9642 43.1853 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 16 g -23.6588 25.2287 44.2292 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 17 d -34.7532 26.6153 43.6069 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 18 W -33.1391 48.0809 42.1994 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 19 s -22.4452 19.7857 31.4731 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 20 c -22.4384 25.2078 31.4731 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 21 u -21.8696 24.9855 30.7922 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 22 3 -33.5349 23.3416 42.4217 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 23 ~ -12.6616 20.6080 6.1487 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 24 # -33.2501 30.9707 42.4217 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 25 O -33.4282 34.4666 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 26 ` -37.4372 10.2447 9.3996 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 27 @ -29.3298 39.0664 41.7999 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 28 F -33.1425 25.7708 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 29 S -33.3167 23.5638 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 30 p -22.4272 26.7339 43.0439 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 31 “ -34.1752 22.5779 17.1929 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 32 % -33.4889 31.3564 42.4217 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 33 £ -33.5228 25.4300 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 34 . 0.2544 8.5779 8.5779 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 35 2 -33.3571 25.3115 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 36 5 -33.6383 23.7625 42.4217 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 37 m -22.3510 41.1197 31.0515 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 38 V -33.1037 32.7998 42.1994 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 39 6 -33.4591 25.7708 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 40 w -21.6293 43.4311 30.7922 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 41 T -33.3969 32.4239 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 42 M -33.3752 41.3412 42.1994 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 43 G -33.4073 32.7998 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 44 b -34.5112 26.7339 43.6069 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 45 9 -33.2206 25.5714 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 46 ; -22.3058 9.9854 41.2734 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 47 D -33.6469 29.3267 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 48 L -33.0797 23.7632 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 49 y -21.7731 29.1853 42.3630 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 50 ‘ -34.1947 9.7632 17.1929 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 51 \ -33.4295 20.5722 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 52 R -33.5912 29.1853 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 53 < -21.0540 20.7117 23.6008 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 54 4 -33.4164 28.0000 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 55 8 -33.4076 25.5714 42.4217 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 56 0 -33.4408 26.8974 42.4217 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 57 A -33.2512 34.1037 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 58 E -33.2177 24.9485 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 59 B -33.4812 26.5555 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 60 v -21.8161 28.3630 30.7922 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 61 k -34.5828 25.9116 43.1853 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 62 J -32.9418 21.5692 42.1994 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 63 U -33.2832 29.2897 42.4587 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 64 j -33.1276 15.1853 53.7930 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 65 ( -33.6561 11.8887 54.4968 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 66 7 -33.3986 26.7339 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 67 § -33.4961 22.3934 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 68 $ -37.7790 23.5638 53.2658 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 69 € -33.3822 28.8433 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 70 / -33.4829 20.9939 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 71 C -33.2531 30.2298 42.6809 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 72 * -33.8746 18.5997 17.5559 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 73 ” -34.2379 22.9416 17.1929 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 74 ? -33.7769 18.7418 42.9260 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 75 { -34.1030 19.6443 54.6733 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 76 } -34.2203 19.6443 54.6733 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 77 , -0.1941 9.9854 18.7998 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 78 I -33.2060 5.7857 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 79 ° -33.8244 12.0301 12.0301 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 80 K -33.1998 28.1765 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 81 H -32.9313 29.5489 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 82 q -22.6604 26.7567 43.0439 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 83 & -34.1565 34.4079 42.9260 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 84 ’ -34.2067 9.7632 17.1929 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 85 [ -34.6938 12.9561 55.1777 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 86 - -10.5489 12.1338 5.1628 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 87 Y -33.2270 32.4239 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 88 Q -33.4990 40.0054 50.6958 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 89 " -33.8227 14.8217 10.9485 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 90 ! -33.8423 8.5779 42.9260 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 91 x -21.7556 29.1853 30.3706 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 92 ) -33.9635 11.8887 54.4968 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 93 = -16.3532 23.7632 13.5993 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 94 + -21.1807 23.5040 23.5040 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 95 X -33.5394 32.3782 42.0000 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 96 » -16.1339 21.2303 15.5254 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 97 ' -33.8405 5.1628 10.9485 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 98 ¢ -26.2531 20.2901 39.0664 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 99 Z -33.2739 26.6523 41.7778 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 100 > -21.5488 20.7117 23.6008 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 101 ® -29.7343 38.2219 38.2219 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 102 © -29.8011 38.2219 38.2219 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 103 ] -34.3545 12.9561 55.1777 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 104 é -37.3374 28.1414 46.1769 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 105 z -21.7600 25.2078 30.3706 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 106 _ 12.3959 30.3706 3.7781 -Trebuchet_MS.ttf 77 , 9.9854 18.7998 107 ¥ -33.1896 32.2017 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 1 t 3.0079 20.0679 39.1479 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 2 h -1.6309 24.5269 43.1853 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 3 a 10.5300 25.7702 31.4731 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 4 n 10.6433 24.5269 31.0515 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 5 P -0.3295 25.2665 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 6 o 10.6112 27.8006 31.4731 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 7 e 10.5913 28.1414 31.4731 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 8 : 10.6893 8.5779 31.4731 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 9 r 10.7940 18.3782 31.0515 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 10 l -1.2606 10.7263 43.6069 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 11 i -0.0166 10.9855 41.8006 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 12 1 -0.2211 14.1414 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 13 | 1.2086 4.8826 48.1487 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 14 N -0.1738 28.7266 42.1994 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 15 f -1.5647 19.9642 43.1853 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 16 g 9.5410 25.2287 44.2292 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 17 d -1.4997 26.6153 43.6069 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 18 W 0.0471 48.0809 42.1994 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 19 s 10.8061 19.7857 31.4731 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 20 c 10.8551 25.2078 31.4731 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 21 u 11.4072 24.9855 30.7922 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 22 3 -0.0948 23.3416 42.4217 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 23 ~ 20.8765 20.6080 6.1487 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 24 # -0.1790 30.9707 42.4217 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 25 O -0.3020 34.4666 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 26 ` -3.5033 10.2447 9.3996 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 27 @ 3.7034 39.0664 41.7999 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 28 F 0.1782 25.7708 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 29 S 0.0454 23.5638 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 30 p 10.7944 26.7339 43.0439 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 31 “ -0.9329 22.5779 17.1929 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 32 % -0.1391 31.3564 42.4217 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 33 £ -0.1066 25.4300 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 34 . 33.5014 8.5779 8.5779 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 35 2 -0.1704 25.3115 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 36 5 -0.1790 23.7625 42.4217 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 37 m 10.6893 41.1197 31.0515 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 38 V 0.3437 32.7998 42.1994 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 39 6 -0.2519 25.7708 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 40 w 11.5854 43.4311 30.7922 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 41 T 0.0000 32.4239 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 42 M 0.2757 41.3412 42.1994 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 43 G -0.2222 32.7998 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 44 b -1.2240 26.7339 43.6069 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 45 9 -0.1453 25.5714 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 46 ; 10.7369 9.9854 41.2734 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 47 D -0.2559 29.3267 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 48 L 0.1483 23.7632 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 49 y 11.3553 29.1853 42.3630 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 50 ‘ -0.9492 9.7632 17.1929 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 51 \ -0.1185 20.5722 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 52 R -0.2545 29.1853 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 53 < 11.5136 20.7117 23.6008 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 54 4 -0.0640 28.0000 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 55 8 -0.0282 25.5714 42.4217 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 56 0 -0.4145 26.8974 42.4217 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 57 A 0.0601 34.1037 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 58 E 0.0831 24.9485 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 59 B -0.4609 26.5555 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 60 v 11.4485 28.3630 30.7922 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 61 k -1.4830 25.9116 43.1853 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 62 J 0.0000 21.5692 42.1994 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 63 U 0.0000 29.2897 42.4587 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 64 j 0.1383 15.1853 53.7930 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 65 ( -0.7772 11.8887 54.4968 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 66 7 -0.3333 26.7339 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 67 § -0.4207 22.3934 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 68 $ -4.4590 23.5638 53.2658 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 69 € -0.0959 28.8433 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 70 / -0.1740 20.9939 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 71 C -0.3064 30.2298 42.6809 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 72 * -0.6464 18.5997 17.5559 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 73 ” -0.7807 22.9416 17.1929 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 74 ? -0.7266 18.7418 42.9260 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 75 { -0.9430 19.6443 54.6733 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 76 } -0.8142 19.6443 54.6733 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 77 , 33.5035 9.9854 18.7998 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 78 I -0.2431 5.7857 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 79 ° -0.6338 12.0301 12.0301 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 80 K -0.1383 28.1765 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 81 H 0.0711 29.5489 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 82 q 10.6374 26.7567 43.0439 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 83 & -0.7294 34.4079 42.9260 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 84 ’ -1.1593 9.7632 17.1929 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 85 [ -1.4223 12.9561 55.1777 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 86 - 23.0180 12.1338 5.1628 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 87 Y 0.0711 32.4239 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 88 Q -0.2222 40.0054 50.6958 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 89 " -0.8685 14.8217 10.9485 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 90 ! -0.9476 8.5779 42.9260 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 91 x 11.3241 29.1853 30.3706 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 92 ) -0.8068 11.8887 54.4968 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 93 = 17.0386 23.7632 13.5993 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 94 + 11.8640 23.5040 23.5040 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 95 X -0.3463 32.3782 42.0000 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 96 » 17.0989 21.2303 15.5254 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 97 ' -0.8217 5.1628 10.9485 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 98 ¢ 6.9396 20.2901 39.0664 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 99 Z 0.1360 26.6523 41.7778 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 100 > 11.6780 20.7117 23.6008 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 101 ® 3.7637 38.2219 38.2219 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 102 © 3.6151 38.2219 38.2219 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 103 ] -1.4133 12.9561 55.1777 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 104 é -4.0617 28.1414 46.1769 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 105 z 11.3270 25.2078 30.3706 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 106 _ 45.4728 30.3706 3.7781 -Trebuchet_MS.ttf 78 I 5.7857 41.7778 107 ¥ 0.0714 32.2017 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 1 t 3.8464 20.0679 39.1479 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 2 h -0.7463 24.5269 43.1853 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 3 a 11.3492 25.7702 31.4731 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 4 n 11.4917 24.5269 31.0515 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 5 P 0.3759 25.2665 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 6 o 11.3317 27.8006 31.4731 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 7 e 11.6901 28.1414 31.4731 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 8 : 11.7699 8.5779 31.4731 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 9 r 11.3578 18.3782 31.0515 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 10 l -0.6363 10.7263 43.6069 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 11 i 0.5394 10.9855 41.8006 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 12 1 0.2332 14.1414 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 13 | 2.5853 4.8826 48.1487 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 14 N 0.9066 28.7266 42.1994 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 15 f -0.7169 19.9642 43.1853 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 16 g 10.5140 25.2287 44.2292 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 17 d -0.7394 26.6153 43.6069 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 18 W 1.0099 48.0809 42.1994 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 19 s 11.6485 19.7857 31.4731 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 20 c 11.3066 25.2078 31.4731 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 21 u 12.2848 24.9855 30.7922 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 22 3 0.5105 23.3416 42.4217 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 23 ~ 21.1914 20.6080 6.1487 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 24 # 0.8113 30.9707 42.4217 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 25 O 0.1194 34.4666 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 26 ` -2.9352 10.2447 9.3996 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 27 @ 4.6188 39.0664 41.7999 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 28 F 0.5945 25.7708 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 29 S 0.5783 23.5638 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 30 p 11.3668 26.7339 43.0439 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 31 “ -0.3186 22.5779 17.1929 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 32 % 0.4536 31.3564 42.4217 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 33 £ 0.3737 25.4300 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 34 . 34.5465 8.5779 8.5779 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 35 2 0.4424 25.3115 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 36 5 0.3619 23.7625 42.4217 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 37 m 11.6172 41.1197 31.0515 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 38 V 0.5147 32.7998 42.1994 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 39 6 0.4645 25.7708 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 40 w 12.1828 43.4311 30.7922 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 41 T 0.7208 32.4239 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 42 M 0.6921 41.3412 42.1994 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 43 G 0.3636 32.7998 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 44 b -0.5923 26.7339 43.6069 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 45 9 0.3628 25.5714 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 46 ; 11.4964 9.9854 41.2734 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 47 D 0.5441 29.3267 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 48 L 0.7488 23.7632 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 49 y 12.0729 29.1853 42.3630 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 50 ‘ -0.0553 9.7632 17.1929 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 51 \ 0.5846 20.5722 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 52 R 0.6129 29.1853 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 53 < 12.4695 20.7117 23.6008 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 54 4 0.5871 28.0000 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 55 8 0.5180 25.5714 42.4217 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 56 0 0.4467 26.8974 42.4217 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 57 A 0.5033 34.1037 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 58 E 0.9182 24.9485 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 59 B 0.2853 26.5555 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 60 v 12.2289 28.3630 30.7922 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 61 k -0.9269 25.9116 43.1853 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 62 J 0.9970 21.5692 42.1994 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 63 U 0.6167 29.2897 42.4587 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 64 j 0.7484 15.1853 53.7930 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 65 ( 0.3074 11.8887 54.4968 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 66 7 0.4441 26.7339 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 67 § 0.6850 22.3934 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 68 $ -3.8746 23.5638 53.2658 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 69 € 0.5342 28.8433 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 70 / 0.3073 20.9939 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 71 C 0.4170 30.2298 42.6809 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 72 * -0.0519 18.5997 17.5559 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 73 ” -0.0906 22.9416 17.1929 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 74 ? 0.1822 18.7418 42.9260 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 75 { -0.1353 19.6443 54.6733 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 76 } -0.1755 19.6443 54.6733 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 77 , 34.0248 9.9854 18.7998 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 78 I 0.6051 5.7857 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 79 ° 0.0519 12.0301 12.0301 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 80 K 0.6393 28.1765 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 81 H 0.6751 29.5489 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 82 q 11.4961 26.7567 43.0439 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 83 & 0.2358 34.4079 42.9260 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 84 ’ -0.0603 9.7632 17.1929 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 85 [ -0.7175 12.9561 55.1777 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 86 - 23.2531 12.1338 5.1628 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 87 Y 0.7429 32.4239 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 88 Q 0.5044 40.0054 50.6958 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 89 " -0.0292 14.8217 10.9485 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 90 ! -0.0508 8.5779 42.9260 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 91 x 11.8124 29.1853 30.3706 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 92 ) -0.2398 11.8887 54.4968 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 93 = 17.7608 23.7632 13.5993 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 94 + 12.2918 23.5040 23.5040 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 95 X 0.4314 32.3782 42.0000 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 96 » 18.0806 21.2303 15.5254 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 97 ' -0.1241 5.1628 10.9485 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 98 ¢ 7.5700 20.2901 39.0664 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 99 Z 0.9264 26.6523 41.7778 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 100 > 12.3980 20.7117 23.6008 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 101 ® 3.9800 38.2219 38.2219 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 102 © 4.1821 38.2219 38.2219 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 103 ] -0.7536 12.9561 55.1777 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 104 é -3.2172 28.1414 46.1769 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 105 z 12.2713 25.2078 30.3706 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 106 _ 46.1846 30.3706 3.7781 -Trebuchet_MS.ttf 79 ° 12.0301 12.0301 107 ¥ 0.9828 32.2017 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 1 t 3.0972 20.0679 39.1479 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 2 h -1.5114 24.5269 43.1853 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 3 a 10.7633 25.7702 31.4731 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 4 n 10.7263 24.5269 31.0515 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 5 P -0.2374 25.2665 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 6 o 10.6980 27.8006 31.4731 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 7 e 10.8297 28.1414 31.4731 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 8 : 11.1170 8.5779 31.4731 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 9 r 10.6475 18.3782 31.0515 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 10 l -1.5790 10.7263 43.6069 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 11 i 0.0404 10.9855 41.8006 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 12 1 -0.2498 14.1414 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 13 | 1.9229 4.8826 48.1487 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 14 N -0.1720 28.7266 42.1994 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 15 f -1.4108 19.9642 43.1853 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 16 g 9.5976 25.2287 44.2292 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 17 d -1.4594 26.6153 43.6069 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 18 W -0.1651 48.0809 42.1994 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 19 s 10.8348 19.7857 31.4731 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 20 c 10.5025 25.2078 31.4731 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 21 u 10.8898 24.9855 30.7922 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 22 3 -0.3914 23.3416 42.4217 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 23 ~ 20.3475 20.6080 6.1487 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 24 # -0.1238 30.9707 42.4217 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 25 O -0.0687 34.4666 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 26 ` -3.5535 10.2447 9.3996 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 27 @ 3.8158 39.0664 41.7999 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 28 F -0.0683 25.7708 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 29 S -0.3863 23.5638 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 30 p 10.6222 26.7339 43.0439 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 31 “ -0.7626 22.5779 17.1929 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 32 % -0.2103 31.3564 42.4217 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 33 £ -0.0208 25.4300 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 34 . 33.6937 8.5779 8.5779 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 35 2 -0.2457 25.3115 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 36 5 -0.0684 23.7625 42.4217 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 37 m 10.7328 41.1197 31.0515 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 38 V -0.0966 32.7998 42.1994 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 39 6 0.0397 25.7708 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 40 w 11.4220 43.4311 30.7922 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 41 T 0.1360 32.4239 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 42 M -0.0792 41.3412 42.1994 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 43 G -0.1052 32.7998 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 44 b -1.5932 26.7339 43.6069 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 45 9 -0.4305 25.5714 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 46 ; 10.4817 9.9854 41.2734 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 47 D -0.4708 29.3267 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 48 L 0.0649 23.7632 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 49 y 11.3121 29.1853 42.3630 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 50 ‘ -0.8661 9.7632 17.1929 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 51 \ -0.4831 20.5722 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 52 R -0.0394 29.1853 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 53 < 12.0642 20.7117 23.6008 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 54 4 -0.3173 28.0000 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 55 8 -0.2564 25.5714 42.4217 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 56 0 -0.2444 26.8974 42.4217 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 57 A -0.4360 34.1037 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 58 E 0.1835 24.9485 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 59 B -0.3082 26.5555 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 60 v 11.3952 28.3630 30.7922 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 61 k -1.4162 25.9116 43.1853 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 62 J -0.0831 21.5692 42.1994 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 63 U 0.2358 29.2897 42.4587 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 64 j 0.0661 15.1853 53.7930 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 65 ( -0.5445 11.8887 54.4968 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 66 7 -0.4490 26.7339 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 67 § -0.2545 22.3934 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 68 $ -4.4237 23.5638 53.2658 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 69 € 0.0625 28.8433 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 70 / -0.0564 20.9939 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 71 C -0.0121 30.2298 42.6809 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 72 * -0.7723 18.5997 17.5559 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 73 ” -1.0660 22.9416 17.1929 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 74 ? -0.6970 18.7418 42.9260 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 75 { -1.1034 19.6443 54.6733 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 76 } -0.7686 19.6443 54.6733 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 77 , 33.3043 9.9854 18.7998 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 78 I -0.1593 5.7857 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 79 ° -0.3481 12.0301 12.0301 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 80 K -0.3178 28.1765 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 81 H 0.3170 29.5489 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 82 q 10.7824 26.7567 43.0439 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 83 & -0.4168 34.4079 42.9260 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 84 ’ -0.7431 9.7632 17.1929 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 85 [ -1.3348 12.9561 55.1777 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 86 - 22.6261 12.1338 5.1628 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 87 Y -0.0343 32.4239 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 88 Q -0.2774 40.0054 50.6958 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 89 " -0.7180 14.8217 10.9485 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 90 ! -0.3851 8.5779 42.9260 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 91 x 11.2860 29.1853 30.3706 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 92 ) -0.2691 11.8887 54.4968 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 93 = 16.8814 23.7632 13.5993 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 94 + 11.7445 23.5040 23.5040 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 95 X -0.2593 32.3782 42.0000 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 96 » 17.1335 21.2303 15.5254 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 97 ' -0.9727 5.1628 10.9485 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 98 ¢ 7.0001 20.2901 39.0664 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 99 Z -0.3908 26.6523 41.7778 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 100 > 11.7366 20.7117 23.6008 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 101 ® 3.5308 38.2219 38.2219 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 102 © 3.4761 38.2219 38.2219 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 103 ] -1.4423 12.9561 55.1777 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 104 é -3.9744 28.1414 46.1769 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 105 z 11.4158 25.2078 30.3706 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 106 _ 45.5497 30.3706 3.7781 -Trebuchet_MS.ttf 80 K 28.1765 41.7778 107 ¥ 0.1302 32.2017 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 1 t 3.0110 20.0679 39.1479 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 2 h -1.4195 24.5269 43.1853 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 3 a 10.3512 25.7702 31.4731 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 4 n 10.7113 24.5269 31.0515 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 5 P 0.0819 25.2665 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 6 o 10.7811 27.8006 31.4731 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 7 e 10.7081 28.1414 31.4731 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 8 : 10.7041 8.5779 31.4731 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 9 r 11.0837 18.3782 31.0515 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 10 l -1.3110 10.7263 43.6069 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 11 i 0.2630 10.9855 41.8006 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 12 1 -0.4294 14.1414 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 13 | 1.8592 4.8826 48.1487 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 14 N -0.1215 28.7266 42.1994 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 15 f -1.3738 19.9642 43.1853 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 16 g 9.5620 25.2287 44.2292 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 17 d -1.4804 26.6153 43.6069 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 18 W 0.0015 48.0809 42.1994 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 19 s 10.7575 19.7857 31.4731 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 20 c 10.7042 25.2078 31.4731 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 21 u 11.3270 24.9855 30.7922 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 22 3 -0.1453 23.3416 42.4217 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 23 ~ 20.3728 20.6080 6.1487 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 24 # -0.4697 30.9707 42.4217 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 25 O -0.2059 34.4666 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 26 ` -3.6711 10.2447 9.3996 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 27 @ 3.5634 39.0664 41.7999 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 28 F -0.0438 25.7708 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 29 S -0.3721 23.5638 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 30 p 10.9202 26.7339 43.0439 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 31 “ -0.6481 22.5779 17.1929 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 32 % 0.1352 31.3564 42.4217 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 33 £ -0.4039 25.4300 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 34 . 33.7536 8.5779 8.5779 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 35 2 -0.1790 25.3115 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 36 5 -0.1140 23.7625 42.4217 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 37 m 10.4731 41.1197 31.0515 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 38 V -0.0235 32.7998 42.1994 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 39 6 -0.3500 25.7708 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 40 w 11.2381 43.4311 30.7922 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 41 T -0.1288 32.4239 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 42 M -0.0172 41.3412 42.1994 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 43 G -0.6170 32.7998 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 44 b -1.4192 26.7339 43.6069 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 45 9 -0.2178 25.5714 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 46 ; 10.9764 9.9854 41.2734 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 47 D -0.1732 29.3267 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 48 L 0.0768 23.7632 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 49 y 11.5374 29.1853 42.3630 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 50 ‘ -0.9656 9.7632 17.1929 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 51 \ -0.1084 20.5722 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 52 R -0.2260 29.1853 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 53 < 11.9806 20.7117 23.6008 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 54 4 0.0119 28.0000 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 55 8 0.0401 25.5714 42.4217 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 56 0 -0.2148 26.8974 42.4217 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 57 A -0.3822 34.1037 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 58 E -0.1679 24.9485 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 59 B -0.0822 26.5555 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 60 v 11.2693 28.3630 30.7922 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 61 k -1.2087 25.9116 43.1853 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 62 J -0.1026 21.5692 42.1994 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 63 U 0.0048 29.2897 42.4587 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 64 j 0.1578 15.1853 53.7930 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 65 ( -0.6435 11.8887 54.4968 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 66 7 0.1075 26.7339 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 67 § -0.2262 22.3934 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 68 $ -4.4950 23.5638 53.2658 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 69 € -0.1185 28.8433 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 70 / -0.4015 20.9939 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 71 C -0.1805 30.2298 42.6809 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 72 * -0.7737 18.5997 17.5559 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 73 ” -0.8588 22.9416 17.1929 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 74 ? -0.3435 18.7418 42.9260 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 75 { -0.9902 19.6443 54.6733 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 76 } -0.6115 19.6443 54.6733 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 77 , 32.9966 9.9854 18.7998 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 78 I 0.0142 5.7857 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 79 ° -0.6743 12.0301 12.0301 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 80 K 0.0255 28.1765 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 81 H 0.0442 29.5489 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 82 q 10.7720 26.7567 43.0439 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 83 & -0.9428 34.4079 42.9260 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 84 ’ -0.9271 9.7632 17.1929 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 85 [ -1.4953 12.9561 55.1777 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 86 - 22.5932 12.1338 5.1628 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 87 Y -0.0815 32.4239 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 88 Q -0.4004 40.0054 50.6958 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 89 " -0.8540 14.8217 10.9485 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 90 ! -0.8015 8.5779 42.9260 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 91 x 11.1671 29.1853 30.3706 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 92 ) -0.7116 11.8887 54.4968 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 93 = 17.0443 23.7632 13.5993 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 94 + 11.9067 23.5040 23.5040 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 95 X -0.2559 32.3782 42.0000 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 96 » 16.8116 21.2303 15.5254 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 97 ' -0.9646 5.1628 10.9485 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 98 ¢ 6.9994 20.2901 39.0664 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 99 Z -0.1673 26.6523 41.7778 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 100 > 11.7174 20.7117 23.6008 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 101 ® 3.6832 38.2219 38.2219 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 102 © 3.7267 38.2219 38.2219 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 103 ] -1.2948 12.9561 55.1777 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 104 é -3.8933 28.1414 46.1769 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 105 z 11.6202 25.2078 30.3706 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 106 _ 45.6284 30.3706 3.7781 -Trebuchet_MS.ttf 81 H 29.5489 41.7778 107 ¥ 0.0413 32.2017 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 1 t -7.5900 20.0679 39.1479 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 2 h -12.1193 24.5269 43.1853 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 3 a -0.2738 25.7702 31.4731 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 4 n -0.1691 24.5269 31.0515 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 5 P -11.0153 25.2665 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 6 o 0.4648 27.8006 31.4731 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 7 e 0.1807 28.1414 31.4731 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 8 : -0.1004 8.5779 31.4731 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 9 r 0.0432 18.3782 31.0515 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 10 l -12.2756 10.7263 43.6069 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 11 i -10.9279 10.9855 41.8006 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 12 1 -11.0767 14.1414 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 13 | -9.0430 4.8826 48.1487 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 14 N -10.7514 28.7266 42.1994 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 15 f -12.1291 19.9642 43.1853 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 16 g -1.0503 25.2287 44.2292 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 17 d -12.0934 26.6153 43.6069 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 18 W -10.8835 48.0809 42.1994 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 19 s 0.1255 19.7857 31.4731 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 20 c 0.1712 25.2078 31.4731 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 21 u 0.6811 24.9855 30.7922 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 22 3 -10.7054 23.3416 42.4217 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 23 ~ 9.8277 20.6080 6.1487 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 24 # -10.7732 30.9707 42.4217 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 25 O -10.8572 34.4666 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 26 ` -14.7083 10.2447 9.3996 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 27 @ -7.1167 39.0664 41.7999 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 28 F -10.7111 25.7708 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 29 S -10.9468 23.5638 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 30 p -0.0580 26.7339 43.0439 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 31 “ -11.5675 22.5779 17.1929 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 32 % -11.1969 31.3564 42.4217 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 33 £ -11.0018 25.4300 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 34 . 23.2119 8.5779 8.5779 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 35 2 -10.4282 25.3115 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 36 5 -10.7511 23.7625 42.4217 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 37 m 0.0602 41.1197 31.0515 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 38 V -10.7307 32.7998 42.1994 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 39 6 -10.8211 25.7708 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 40 w 0.8409 43.4311 30.7922 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 41 T -10.8637 32.4239 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 42 M -10.6711 41.3412 42.1994 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 43 G -10.8284 32.7998 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 44 b -12.2252 26.7339 43.6069 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 45 9 -10.5473 25.5714 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 46 ; 0.0437 9.9854 41.2734 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 47 D -10.8771 29.3267 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 48 L -10.5663 23.7632 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 49 y 0.8558 29.1853 42.3630 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 50 ‘ -11.6255 9.7632 17.1929 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 51 \ -10.5471 20.5722 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 52 R -11.2496 29.1853 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 53 < 1.2717 20.7117 23.6008 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 54 4 -10.8666 28.0000 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 55 8 -11.0944 25.5714 42.4217 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 56 0 -10.7874 26.8974 42.4217 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 57 A -10.7414 34.1037 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 58 E -10.3041 24.9485 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 59 B -11.1648 26.5555 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 60 v 0.7309 28.3630 30.7922 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 61 k -12.6604 25.9116 43.1853 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 62 J -10.4783 21.5692 42.1994 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 63 U -10.7965 29.2897 42.4587 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 64 j -10.3522 15.1853 53.7930 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 65 ( -11.3879 11.8887 54.4968 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 66 7 -11.0671 26.7339 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 67 § -11.1172 22.3934 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 68 $ -15.2223 23.5638 53.2658 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 69 € -11.1227 28.8433 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 70 / -10.9187 20.9939 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 71 C -10.8240 30.2298 42.6809 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 72 * -11.2752 18.5997 17.5559 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 73 ” -11.6578 22.9416 17.1929 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 74 ? -11.4888 18.7418 42.9260 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 75 { -11.8206 19.6443 54.6733 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 76 } -11.5776 19.6443 54.6733 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 77 , 22.5519 9.9854 18.7998 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 78 I -10.5761 5.7857 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 79 ° -11.4540 12.0301 12.0301 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 80 K -10.3784 28.1765 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 81 H -10.5765 29.5489 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 82 q 0.1068 26.7567 43.0439 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 83 & -11.4395 34.4079 42.9260 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 84 ’ -11.6058 9.7632 17.1929 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 85 [ -12.0373 12.9561 55.1777 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 86 - 12.0543 12.1338 5.1628 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 87 Y -10.8108 32.4239 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 88 Q -10.7356 40.0054 50.6958 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 89 " -11.5479 14.8217 10.9485 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 90 ! -11.5331 8.5779 42.9260 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 91 x 0.7789 29.1853 30.3706 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 92 ) -11.5683 11.8887 54.4968 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 93 = 6.2307 23.7632 13.5993 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 94 + 0.9666 23.5040 23.5040 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 95 X -11.1310 32.3782 42.0000 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 96 » 6.4380 21.2303 15.5254 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 97 ' -11.4057 5.1628 10.9485 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 98 ¢ -3.9910 20.2901 39.0664 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 99 Z -10.6432 26.6523 41.7778 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 100 > 1.4893 20.7117 23.6008 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 101 ® -7.3078 38.2219 38.2219 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 102 © -6.9923 38.2219 38.2219 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 103 ] -11.9546 12.9561 55.1777 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 104 é -14.4521 28.1414 46.1769 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 105 z 0.8068 25.2078 30.3706 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 106 _ 34.8419 30.3706 3.7781 -Trebuchet_MS.ttf 82 q 26.7567 43.0439 107 ¥ -10.9039 32.2017 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 1 t 4.1264 20.0679 39.1479 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 2 h -0.7122 24.5269 43.1853 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 3 a 11.3688 25.7702 31.4731 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 4 n 11.6580 24.5269 31.0515 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 5 P 0.7476 25.2665 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 6 o 11.3179 27.8006 31.4731 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 7 e 11.5008 28.1414 31.4731 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 8 : 11.1404 8.5779 31.4731 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 9 r 11.5058 18.3782 31.0515 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 10 l -0.7531 10.7263 43.6069 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 11 i 0.7294 10.9855 41.8006 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 12 1 0.2686 14.1414 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 13 | 2.2998 4.8826 48.1487 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 14 N 0.7517 28.7266 42.1994 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 15 f -0.5684 19.9642 43.1853 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 16 g 10.4489 25.2287 44.2292 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 17 d -0.4855 26.6153 43.6069 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 18 W 0.6795 48.0809 42.1994 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 19 s 11.4557 19.7857 31.4731 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 20 c 11.6408 25.2078 31.4731 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 21 u 12.1511 24.9855 30.7922 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 22 3 0.4554 23.3416 42.4217 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 23 ~ 21.2906 20.6080 6.1487 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 24 # 0.3552 30.9707 42.4217 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 25 O 0.4405 34.4666 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 26 ` -3.1795 10.2447 9.3996 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 27 @ 4.5591 39.0664 41.7999 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 28 F 0.8749 25.7708 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 29 S 0.3684 23.5638 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 30 p 11.4177 26.7339 43.0439 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 31 “ -0.3490 22.5779 17.1929 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 32 % 0.7700 31.3564 42.4217 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 33 £ 0.3945 25.4300 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 34 . 34.5388 8.5779 8.5779 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 35 2 0.4663 25.3115 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 36 5 0.6669 23.7625 42.4217 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 37 m 11.1455 41.1197 31.0515 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 38 V 0.5463 32.7998 42.1994 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 39 6 0.3893 25.7708 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 40 w 12.6679 43.4311 30.7922 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 41 T 0.3659 32.4239 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 42 M 0.8941 41.3412 42.1994 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 43 G 0.6644 32.7998 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 44 b -0.8338 26.7339 43.6069 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 45 9 0.6383 25.5714 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 46 ; 11.7598 9.9854 41.2734 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 47 D 0.6908 29.3267 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 48 L 0.9914 23.7632 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 49 y 12.1447 29.1853 42.3630 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 50 ‘ -0.3482 9.7632 17.1929 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 51 \ 0.4213 20.5722 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 52 R 0.5884 29.1853 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 53 < 12.7342 20.7117 23.6008 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 54 4 0.3015 28.0000 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 55 8 0.5846 25.5714 42.4217 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 56 0 0.4616 26.8974 42.4217 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 57 A 0.3775 34.1037 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 58 E 0.5484 24.9485 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 59 B 0.5115 26.5555 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 60 v 12.0488 28.3630 30.7922 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 61 k -0.5318 25.9116 43.1853 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 62 J 0.8052 21.5692 42.1994 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 63 U 0.5466 29.2897 42.4587 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 64 j 0.9792 15.1853 53.7930 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 65 ( 0.2182 11.8887 54.4968 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 66 7 0.5943 26.7339 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 67 § 0.4342 22.3934 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 68 $ -3.6087 23.5638 53.2658 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 69 € 0.5990 28.8433 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 70 / 0.3461 20.9939 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 71 C 0.7040 30.2298 42.6809 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 72 * 0.1748 18.5997 17.5559 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 73 ” 0.0353 22.9416 17.1929 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 74 ? 0.1731 18.7418 42.9260 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 75 { 0.1583 19.6443 54.6733 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 76 } -0.0938 19.6443 54.6733 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 77 , 33.8240 9.9854 18.7998 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 78 I 0.7655 5.7857 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 79 ° -0.1946 12.0301 12.0301 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 80 K 0.6994 28.1765 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 81 H 0.7892 29.5489 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 82 q 11.5156 26.7567 43.0439 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 83 & -0.2503 34.4079 42.9260 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 84 ’ -0.0934 9.7632 17.1929 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 85 [ -0.8303 12.9561 55.1777 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 86 - 23.7076 12.1338 5.1628 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 87 Y 1.0703 32.4239 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 88 Q 0.1662 40.0054 50.6958 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 89 " 0.0245 14.8217 10.9485 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 90 ! -0.0903 8.5779 42.9260 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 91 x 12.3870 29.1853 30.3706 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 92 ) -0.1041 11.8887 54.4968 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 93 = 17.4973 23.7632 13.5993 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 94 + 12.2849 23.5040 23.5040 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 95 X 0.1785 32.3782 42.0000 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 96 » 17.8270 21.2303 15.5254 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 97 ' 0.2281 5.1628 10.9485 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 98 ¢ 7.8706 20.2901 39.0664 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 99 Z 0.5946 26.6523 41.7778 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 100 > 12.7714 20.7117 23.6008 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 101 ® 4.1565 38.2219 38.2219 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 102 © 4.2349 38.2219 38.2219 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 103 ] -0.7217 12.9561 55.1777 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 104 é -3.0586 28.1414 46.1769 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 105 z 12.0879 25.2078 30.3706 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 106 _ 46.3434 30.3706 3.7781 -Trebuchet_MS.ttf 83 & 34.4079 42.9260 107 ¥ 0.8064 32.2017 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 1 t 3.8596 20.0679 39.1479 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 2 h -0.3727 24.5269 43.1853 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 3 a 11.5848 25.7702 31.4731 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 4 n 11.6679 24.5269 31.0515 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 5 P 0.7048 25.2665 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 6 o 11.5667 27.8006 31.4731 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 7 e 11.5776 28.1414 31.4731 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 8 : 11.7313 8.5779 31.4731 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 9 r 11.5020 18.3782 31.0515 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 10 l -0.6792 10.7263 43.6069 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 11 i 0.8034 10.9855 41.8006 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 12 1 0.6116 14.1414 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 13 | 2.6759 4.8826 48.1487 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 14 N 0.8900 28.7266 42.1994 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 15 f -0.5044 19.9642 43.1853 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 16 g 10.3861 25.2287 44.2292 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 17 d -0.8066 26.6153 43.6069 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 18 W 0.8565 48.0809 42.1994 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 19 s 11.6665 19.7857 31.4731 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 20 c 11.6914 25.2078 31.4731 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 21 u 12.2375 24.9855 30.7922 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 22 3 0.7636 23.3416 42.4217 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 23 ~ 21.4243 20.6080 6.1487 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 24 # 0.6809 30.9707 42.4217 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 25 O 0.9270 34.4666 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 26 ` -3.1994 10.2447 9.3996 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 27 @ 4.3773 39.0664 41.7999 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 28 F 0.9311 25.7708 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 29 S 0.8928 23.5638 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 30 p 11.8765 26.7339 43.0439 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 31 “ -0.0393 22.5779 17.1929 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 32 % 0.6291 31.3564 42.4217 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 33 £ 0.7955 25.4300 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 34 . 34.4222 8.5779 8.5779 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 35 2 0.7487 25.3115 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 36 5 0.6795 23.7625 42.4217 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 37 m 11.5202 41.1197 31.0515 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 38 V 1.0204 32.7998 42.1994 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 39 6 0.9393 25.7708 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 40 w 12.3934 43.4311 30.7922 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 41 T 0.9031 32.4239 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 42 M 0.8970 41.3412 42.1994 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 43 G 0.7570 32.7998 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 44 b -0.5340 26.7339 43.6069 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 45 9 0.7713 25.5714 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 46 ; 11.6737 9.9854 41.2734 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 47 D 0.8928 29.3267 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 48 L 0.9260 23.7632 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 49 y 12.4572 29.1853 42.3630 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 50 ‘ 0.2372 9.7632 17.1929 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 51 \ 0.6126 20.5722 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 52 R 0.7233 29.1853 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 53 < 12.7419 20.7117 23.6008 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 54 4 0.6762 28.0000 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 55 8 0.6126 25.5714 42.4217 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 56 0 0.6483 26.8974 42.4217 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 57 A 0.6599 34.1037 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 58 E 1.0131 24.9485 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 59 B 0.7815 26.5555 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 60 v 12.3484 28.3630 30.7922 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 61 k -0.5785 25.9116 43.1853 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 62 J 1.0040 21.5692 42.1994 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 63 U 1.0513 29.2897 42.4587 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 64 j 1.1009 15.1853 53.7930 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 65 ( 0.1838 11.8887 54.4968 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 66 7 0.7697 26.7339 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 67 § 0.5061 22.3934 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 68 $ -3.4670 23.5638 53.2658 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 69 € 0.7328 28.8433 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 70 / 0.6334 20.9939 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 71 C 0.6991 30.2298 42.6809 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 72 * 0.0775 18.5997 17.5559 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 73 ” 0.1302 22.9416 17.1929 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 74 ? 0.1765 18.7418 42.9260 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 75 { -0.2158 19.6443 54.6733 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 76 } 0.3214 19.6443 54.6733 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 77 , 33.9277 9.9854 18.7998 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 78 I 1.1582 5.7857 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 79 ° 0.2294 12.0301 12.0301 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 80 K 0.9031 28.1765 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 81 H 0.8622 29.5489 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 82 q 11.5344 26.7567 43.0439 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 83 & 0.1424 34.4079 42.9260 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 84 ’ 0.0784 9.7632 17.1929 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 85 [ -0.5841 12.9561 55.1777 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 86 - 23.7107 12.1338 5.1628 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 87 Y 0.8513 32.4239 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 88 Q 0.4440 40.0054 50.6958 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 89 " 0.1900 14.8217 10.9485 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 90 ! 0.0712 8.5779 42.9260 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 91 x 12.3103 29.1853 30.3706 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 92 ) 0.3058 11.8887 54.4968 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 93 = 17.5824 23.7632 13.5993 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 94 + 12.5816 23.5040 23.5040 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 95 X 0.3768 32.3782 42.0000 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 96 » 18.1084 21.2303 15.5254 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 97 ' 0.2495 5.1628 10.9485 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 98 ¢ 8.1108 20.2901 39.0664 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 99 Z 1.1270 26.6523 41.7778 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 100 > 12.6723 20.7117 23.6008 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 101 ® 4.6223 38.2219 38.2219 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 102 © 4.5432 38.2219 38.2219 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 103 ] -0.5250 12.9561 55.1777 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 104 é -2.8876 28.1414 46.1769 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 105 z 12.0198 25.2078 30.3706 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 106 _ 46.3985 30.3706 3.7781 -Trebuchet_MS.ttf 84 ’ 9.7632 17.1929 107 ¥ 1.1139 32.2017 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 1 t 4.2580 20.0679 39.1479 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 2 h -0.1673 24.5269 43.1853 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 3 a 12.2640 25.7702 31.4731 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 4 n 12.0968 24.5269 31.0515 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 5 P 1.0992 25.2665 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 6 o 12.2289 27.8006 31.4731 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 7 e 11.7649 28.1414 31.4731 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 8 : 11.9600 8.5779 31.4731 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 9 r 12.3178 18.3782 31.0515 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 10 l -0.0650 10.7263 43.6069 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 11 i 1.2174 10.9855 41.8006 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 12 1 1.1544 14.1414 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 13 | 3.1817 4.8826 48.1487 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 14 N 1.3244 28.7266 42.1994 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 15 f 0.1422 19.9642 43.1853 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 16 g 11.0374 25.2287 44.2292 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 17 d -0.0399 26.6153 43.6069 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 18 W 1.2065 48.0809 42.1994 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 19 s 11.9705 19.7857 31.4731 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 20 c 12.3649 25.2078 31.4731 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 21 u 12.5989 24.9855 30.7922 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 22 3 1.4149 23.3416 42.4217 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 23 ~ 22.1366 20.6080 6.1487 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 24 # 1.1881 30.9707 42.4217 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 25 O 0.9586 34.4666 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 26 ` -2.3879 10.2447 9.3996 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 27 @ 5.0975 39.0664 41.7999 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 28 F 1.5396 25.7708 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 29 S 1.2890 23.5638 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 30 p 12.3712 26.7339 43.0439 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 31 “ 0.7696 22.5779 17.1929 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 32 % 1.2121 31.3564 42.4217 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 33 £ 1.3492 25.4300 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 34 . 34.9430 8.5779 8.5779 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 35 2 1.1022 25.3115 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 36 5 1.2581 23.7625 42.4217 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 37 m 12.2847 41.1197 31.0515 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 38 V 1.5396 32.7998 42.1994 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 39 6 1.2489 25.7708 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 40 w 13.0176 43.4311 30.7922 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 41 T 1.4297 32.4239 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 42 M 1.1845 41.3412 42.1994 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 43 G 1.1382 32.7998 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 44 b -0.1037 26.7339 43.6069 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 45 9 1.3907 25.5714 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 46 ; 12.2274 9.9854 41.2734 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 47 D 1.3406 29.3267 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 48 L 1.5715 23.7632 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 49 y 12.9700 29.1853 42.3630 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 50 ‘ 0.1565 9.7632 17.1929 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 51 \ 1.1780 20.5722 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 52 R 0.8711 29.1853 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 53 < 13.3196 20.7117 23.6008 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 54 4 1.1334 28.0000 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 55 8 1.1960 25.5714 42.4217 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 56 0 1.1881 26.8974 42.4217 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 57 A 1.2405 34.1037 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 58 E 1.4075 24.9485 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 59 B 1.0027 26.5555 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 60 v 12.8727 28.3630 30.7922 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 61 k 0.4420 25.9116 43.1853 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 62 J 1.3191 21.5692 42.1994 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 63 U 1.3777 29.2897 42.4587 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 64 j 1.4166 15.1853 53.7930 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 65 ( 0.7004 11.8887 54.4968 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 66 7 1.1574 26.7339 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 67 § 1.2310 22.3934 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 68 $ -2.9648 23.5638 53.2658 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 69 € 1.3464 28.8433 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 70 / 1.0989 20.9939 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 71 C 1.1864 30.2298 42.6809 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 72 * 0.6068 18.5997 17.5559 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 73 ” 0.4784 22.9416 17.1929 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 74 ? 0.5017 18.7418 42.9260 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 75 { 0.1724 19.6443 54.6733 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 76 } 0.5875 19.6443 54.6733 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 77 , 34.6040 9.9854 18.7998 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 78 I 1.5719 5.7857 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 79 ° 0.5694 12.0301 12.0301 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 80 K 1.3392 28.1765 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 81 H 1.5112 29.5489 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 82 q 12.0554 26.7567 43.0439 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 83 & 0.6882 34.4079 42.9260 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 84 ’ 0.7771 9.7632 17.1929 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 85 [ -0.0701 12.9561 55.1777 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 86 - 24.2685 12.1338 5.1628 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 87 Y 1.4964 32.4239 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 88 Q 1.1465 40.0054 50.6958 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 89 " 0.6804 14.8217 10.9485 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 90 ! 0.4577 8.5779 42.9260 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 91 x 12.6236 29.1853 30.3706 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 92 ) 0.3907 11.8887 54.4968 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 93 = 18.3810 23.7632 13.5993 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 94 + 13.0308 23.5040 23.5040 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 95 X 1.1429 32.3782 42.0000 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 96 » 18.2769 21.2303 15.5254 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 97 ' 0.7550 5.1628 10.9485 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 98 ¢ 8.5139 20.2901 39.0664 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 99 Z 1.2506 26.6523 41.7778 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 100 > 13.1144 20.7117 23.6008 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 101 ® 5.3407 38.2219 38.2219 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 102 © 5.0675 38.2219 38.2219 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 103 ] 0.0831 12.9561 55.1777 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 104 é -2.4945 28.1414 46.1769 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 105 z 12.7083 25.2078 30.3706 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 106 _ 47.0243 30.3706 3.7781 -Trebuchet_MS.ttf 85 [ 12.9561 55.1777 107 ¥ 1.2246 32.2017 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 1 t -19.4006 20.0679 39.1479 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 2 h -24.0225 24.5269 43.1853 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 3 a -11.8735 25.7702 31.4731 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 4 n -11.8354 24.5269 31.0515 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 5 P -22.8088 25.2665 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 6 o -12.0977 27.8006 31.4731 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 7 e -12.0827 28.1414 31.4731 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 8 : -12.0874 8.5779 31.4731 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 9 r -12.1718 18.3782 31.0515 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 10 l -24.1926 10.7263 43.6069 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 11 i -22.5996 10.9855 41.8006 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 12 1 -22.6091 14.1414 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 13 | -20.9743 4.8826 48.1487 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 14 N -22.6125 28.7266 42.1994 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 15 f -23.9645 19.9642 43.1853 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 16 g -13.0951 25.2287 44.2292 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 17 d -24.1276 26.6153 43.6069 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 18 W -22.5308 48.0809 42.1994 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 19 s -11.9376 19.7857 31.4731 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 20 c -12.1092 25.2078 31.4731 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 21 u -11.2102 24.9855 30.7922 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 22 3 -23.0016 23.3416 42.4217 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 23 ~ -1.7246 20.6080 6.1487 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 24 # -22.9927 30.9707 42.4217 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 25 O -22.9323 34.4666 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 26 ` -26.6904 10.2447 9.3996 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 27 @ -19.0134 39.0664 41.7999 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 28 F -22.6150 25.7708 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 29 S -22.9016 23.5638 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 30 p -11.8100 26.7339 43.0439 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 31 “ -23.6070 22.5779 17.1929 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 32 % -22.6925 31.3564 42.4217 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 33 £ -22.8049 25.4300 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 34 . 11.0850 8.5779 8.5779 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 35 2 -22.7962 25.3115 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 36 5 -22.6816 23.7625 42.4217 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 37 m -11.9645 41.1197 31.0515 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 38 V -22.7203 32.7998 42.1994 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 39 6 -22.9203 25.7708 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 40 w -11.1322 43.4311 30.7922 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 41 T -22.7619 32.4239 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 42 M -22.5425 41.3412 42.1994 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 43 G -22.8299 32.7998 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 44 b -24.0966 26.7339 43.6069 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 45 9 -22.6920 25.5714 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 46 ; -11.4663 9.9854 41.2734 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 47 D -22.7379 29.3267 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 48 L -22.7851 23.7632 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 49 y -11.3446 29.1853 42.3630 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 50 ‘ -23.4797 9.7632 17.1929 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 51 \ -22.9261 20.5722 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 52 R -23.0179 29.1853 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 53 < -10.6080 20.7117 23.6008 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 54 4 -22.7333 28.0000 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 55 8 -22.6504 25.5714 42.4217 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 56 0 -22.5866 26.8974 42.4217 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 57 A -22.8919 34.1037 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 58 E -22.4761 24.9485 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 59 B -22.6050 26.5555 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 60 v -11.1280 28.3630 30.7922 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 61 k -24.1437 25.9116 43.1853 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 62 J -22.7157 21.5692 42.1994 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 63 U -22.6462 29.2897 42.4587 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 64 j -22.5898 15.1853 53.7930 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 65 ( -23.5216 11.8887 54.4968 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 66 7 -22.7498 26.7339 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 67 § -22.7934 22.3934 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 68 $ -26.9957 23.5638 53.2658 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 69 € -22.7525 28.8433 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 70 / -22.8924 20.9939 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 71 C -22.9323 30.2298 42.6809 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 72 * -23.4156 18.5997 17.5559 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 73 ” -23.4230 22.9416 17.1929 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 74 ? -23.5302 18.7418 42.9260 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 75 { -23.5638 19.6443 54.6733 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 76 } -23.3399 19.6443 54.6733 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 77 , 10.6680 9.9854 18.7998 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 78 I -22.6103 5.7857 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 79 ° -23.2585 12.0301 12.0301 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 80 K -22.5279 28.1765 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 81 H -22.8740 29.5489 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 82 q -11.9421 26.7567 43.0439 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 83 & -23.1286 34.4079 42.9260 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 84 ’ -23.6393 9.7632 17.1929 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 85 [ -24.0493 12.9561 55.1777 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 86 - 0.1735 12.1338 5.1628 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 87 Y -22.5246 32.4239 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 88 Q -22.8121 40.0054 50.6958 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 89 " -23.2850 14.8217 10.9485 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 90 ! -23.0450 8.5779 42.9260 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 91 x -11.1559 29.1853 30.3706 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 92 ) -23.4247 11.8887 54.4968 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 93 = -5.6627 23.7632 13.5993 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 94 + -10.8866 23.5040 23.5040 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 95 X -22.8520 32.3782 42.0000 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 96 » -5.4819 21.2303 15.5254 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 97 ' -23.4257 5.1628 10.9485 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 98 ¢ -15.6947 20.2901 39.0664 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 99 Z -22.6827 26.6523 41.7778 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 100 > -10.5544 20.7117 23.6008 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 101 ® -19.1974 38.2219 38.2219 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 102 © -19.3112 38.2219 38.2219 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 103 ] -24.0225 12.9561 55.1777 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 104 é -26.3625 28.1414 46.1769 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 105 z -11.4553 25.2078 30.3706 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 106 _ 22.7262 30.3706 3.7781 -Trebuchet_MS.ttf 86 - 12.1338 5.1628 107 ¥ -22.5813 32.2017 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 1 t 2.8986 20.0679 39.1479 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 2 h -1.5095 24.5269 43.1853 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 3 a 10.9460 25.7702 31.4731 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 4 n 10.6817 24.5269 31.0515 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 5 P 0.1376 25.2665 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 6 o 10.7263 27.8006 31.4731 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 7 e 10.6196 28.1414 31.4731 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 8 : 10.8776 8.5779 31.4731 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 9 r 10.9392 18.3782 31.0515 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 10 l -1.3186 10.7263 43.6069 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 11 i -0.0992 10.9855 41.8006 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 12 1 -0.0147 14.1414 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 13 | 1.5295 4.8826 48.1487 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 14 N -0.0479 28.7266 42.1994 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 15 f -1.4140 19.9642 43.1853 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 16 g 9.4844 25.2287 44.2292 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 17 d -1.4190 26.6153 43.6069 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 18 W 0.2374 48.0809 42.1994 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 19 s 10.6967 19.7857 31.4731 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 20 c 10.8447 25.2078 31.4731 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 21 u 11.4072 24.9855 30.7922 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 22 3 -0.1183 23.3416 42.4217 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 23 ~ 20.9092 20.6080 6.1487 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 24 # -0.1232 30.9707 42.4217 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 25 O -0.2063 34.4666 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 26 ` -4.1995 10.2447 9.3996 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 27 @ 3.6215 39.0664 41.7999 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 28 F -0.1792 25.7708 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 29 S -0.2353 23.5638 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 30 p 10.8300 26.7339 43.0439 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 31 “ -0.8507 22.5779 17.1929 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 32 % -0.3111 31.3564 42.4217 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 33 £ -0.0391 25.4300 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 34 . 33.4690 8.5779 8.5779 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 35 2 0.0691 25.3115 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 36 5 -0.5677 23.7625 42.4217 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 37 m 10.4663 41.1197 31.0515 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 38 V 0.2397 32.7998 42.1994 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 39 6 0.0072 25.7708 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 40 w 11.1742 43.4311 30.7922 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 41 T -0.0519 32.4239 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 42 M -0.0621 41.3412 42.1994 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 43 G -0.4341 32.7998 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 44 b -1.5704 26.7339 43.6069 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 45 9 -0.1267 25.5714 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 46 ; 10.6878 9.9854 41.2734 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 47 D -0.6380 29.3267 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 48 L 0.2144 23.7632 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 49 y 11.2733 29.1853 42.3630 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 50 ‘ -1.0752 9.7632 17.1929 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 51 \ -0.3572 20.5722 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 52 R -0.3250 29.1853 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 53 < 11.9504 20.7117 23.6008 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 54 4 -0.1327 28.0000 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 55 8 0.0443 25.5714 42.4217 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 56 0 -0.4397 26.8974 42.4217 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 57 A -0.1704 34.1037 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 58 E 0.1803 24.9485 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 59 B -0.4323 26.5555 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 60 v 11.3541 28.3630 30.7922 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 61 k -1.3942 25.9116 43.1853 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 62 J 0.2964 21.5692 42.1994 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 63 U 0.0537 29.2897 42.4587 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 64 j 0.0157 15.1853 53.7930 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 65 ( -0.6326 11.8887 54.4968 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 66 7 -0.3184 26.7339 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 67 § -0.0764 22.3934 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 68 $ -4.3508 23.5638 53.2658 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 69 € -0.1068 28.8433 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 70 / -0.1214 20.9939 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 71 C -0.4653 30.2298 42.6809 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 72 * -0.7778 18.5997 17.5559 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 73 ” -1.0330 22.9416 17.1929 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 74 ? -0.8688 18.7418 42.9260 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 75 { -0.6408 19.6443 54.6733 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 76 } -0.9078 19.6443 54.6733 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 77 , 32.9702 9.9854 18.7998 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 78 I -0.0961 5.7857 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 79 ° -0.7102 12.0301 12.0301 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 80 K 0.3835 28.1765 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 81 H 0.1854 29.5489 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 82 q 10.6079 26.7567 43.0439 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 83 & -0.8593 34.4079 42.9260 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 84 ’ -0.9953 9.7632 17.1929 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 85 [ -1.0980 12.9561 55.1777 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 86 - 22.3987 12.1338 5.1628 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 87 Y 0.0512 32.4239 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 88 Q -0.3370 40.0054 50.6958 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 89 " -0.5231 14.8217 10.9485 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 90 ! -0.8848 8.5779 42.9260 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 91 x 11.4027 29.1853 30.3706 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 92 ) -0.5623 11.8887 54.4968 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 93 = 16.8339 23.7632 13.5993 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 94 + 11.4183 23.5040 23.5040 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 95 X 0.0300 32.3782 42.0000 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 96 » 17.0489 21.2303 15.5254 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 97 ' -0.9961 5.1628 10.9485 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 98 ¢ 7.2238 20.2901 39.0664 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 99 Z -0.1197 26.6523 41.7778 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 100 > 11.9011 20.7117 23.6008 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 101 ® 3.6959 38.2219 38.2219 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 102 © 3.6970 38.2219 38.2219 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 103 ] -1.6966 12.9561 55.1777 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 104 é -3.9242 28.1414 46.1769 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 105 z 11.6487 25.2078 30.3706 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 106 _ 45.6556 30.3706 3.7781 -Trebuchet_MS.ttf 87 Y 32.4239 41.7778 107 ¥ -0.2019 32.2017 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 1 t 2.9896 20.0679 39.1479 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 2 h -1.4501 24.5269 43.1853 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 3 a 11.0447 25.7702 31.4731 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 4 n 10.9403 24.5269 31.0515 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 5 P -0.0654 25.2665 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 6 o 10.7812 27.8006 31.4731 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 7 e 11.1115 28.1414 31.4731 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 8 : 10.7512 8.5779 31.4731 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 9 r 11.5577 18.3782 31.0515 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 10 l -1.3483 10.7263 43.6069 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 11 i 0.0645 10.9855 41.8006 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 12 1 0.1646 14.1414 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 13 | 1.9136 4.8826 48.1487 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 14 N 0.1068 28.7266 42.1994 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 15 f -1.0133 19.9642 43.1853 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 16 g 9.7445 25.2287 44.2292 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 17 d -1.2338 26.6153 43.6069 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 18 W 0.2958 48.0809 42.1994 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 19 s 11.0130 19.7857 31.4731 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 20 c 11.1190 25.2078 31.4731 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 21 u 11.7535 24.9855 30.7922 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 22 3 -0.2224 23.3416 42.4217 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 23 ~ 20.8498 20.6080 6.1487 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 24 # 0.0356 30.9707 42.4217 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 25 O -0.1302 34.4666 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 26 ` -3.8961 10.2447 9.3996 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 27 @ 3.8752 39.0664 41.7999 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 28 F 0.4899 25.7708 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 29 S 0.2015 23.5638 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 30 p 10.8352 26.7339 43.0439 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 31 “ -0.7266 22.5779 17.1929 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 32 % -0.0505 31.3564 42.4217 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 33 £ 0.1556 25.4300 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 34 . 33.9591 8.5779 8.5779 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 35 2 0.1629 25.3115 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 36 5 0.0802 23.7625 42.4217 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 37 m 11.1474 41.1197 31.0515 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 38 V -0.1137 32.7998 42.1994 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 39 6 -0.2177 25.7708 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 40 w 11.6402 43.4311 30.7922 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 41 T 0.1029 32.4239 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 42 M 0.0864 41.3412 42.1994 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 43 G 0.1465 32.7998 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 44 b -1.2432 26.7339 43.6069 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 45 9 0.1644 25.5714 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 46 ; 10.7390 9.9854 41.2734 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 47 D 0.1508 29.3267 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 48 L 0.0651 23.7632 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 49 y 11.7593 29.1853 42.3630 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 50 ‘ -0.9926 9.7632 17.1929 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 51 \ -0.1455 20.5722 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 52 R 0.0131 29.1853 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 53 < 12.5785 20.7117 23.6008 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 54 4 0.0388 28.0000 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 55 8 0.0947 25.5714 42.4217 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 56 0 -0.0346 26.8974 42.4217 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 57 A 0.0000 34.1037 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 58 E 0.3981 24.9485 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 59 B -0.2174 26.5555 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 60 v 11.2697 28.3630 30.7922 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 61 k -0.8703 25.9116 43.1853 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 62 J 0.0430 21.5692 42.1994 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 63 U 0.3231 29.2897 42.4587 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 64 j 0.2850 15.1853 53.7930 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 65 ( -0.5858 11.8887 54.4968 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 66 7 -0.0600 26.7339 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 67 § -0.1662 22.3934 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 68 $ -4.0470 23.5638 53.2658 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 69 € -0.1237 28.8433 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 70 / -0.0722 20.9939 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 71 C 0.1200 30.2298 42.6809 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 72 * -0.4896 18.5997 17.5559 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 73 ” -0.5931 22.9416 17.1929 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 74 ? -0.5727 18.7418 42.9260 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 75 { -0.8704 19.6443 54.6733 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 76 } -0.7216 19.6443 54.6733 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 77 , 33.3025 9.9854 18.7998 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 78 I 0.1303 5.7857 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 79 ° -0.2283 12.0301 12.0301 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 80 K 0.3674 28.1765 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 81 H 0.0492 29.5489 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 82 q 10.6992 26.7567 43.0439 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 83 & -0.4464 34.4079 42.9260 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 84 ’ -0.6214 9.7632 17.1929 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 85 [ -1.0880 12.9561 55.1777 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 86 - 22.6483 12.1338 5.1628 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 87 Y 0.4179 32.4239 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 88 Q 0.0940 40.0054 50.6958 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 89 " -0.3177 14.8217 10.9485 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 90 ! -0.3973 8.5779 42.9260 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 91 x 11.2983 29.1853 30.3706 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 92 ) -0.7107 11.8887 54.4968 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 93 = 16.9158 23.7632 13.5993 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 94 + 12.0640 23.5040 23.5040 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 95 X -0.2691 32.3782 42.0000 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 96 » 17.3673 21.2303 15.5254 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 97 ' -0.2887 5.1628 10.9485 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 98 ¢ 7.3707 20.2901 39.0664 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 99 Z -0.1006 26.6523 41.7778 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 100 > 11.8171 20.7117 23.6008 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 101 ® 3.6888 38.2219 38.2219 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 102 © 3.7763 38.2219 38.2219 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 103 ] -1.2411 12.9561 55.1777 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 104 é -3.6574 28.1414 46.1769 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 105 z 11.4092 25.2078 30.3706 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 106 _ 45.8579 30.3706 3.7781 -Trebuchet_MS.ttf 88 Q 40.0054 50.6958 107 ¥ 0.4785 32.2017 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 1 t 3.6195 20.0679 39.1479 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 2 h -0.5582 24.5269 43.1853 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 3 a 11.3140 25.7702 31.4731 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 4 n 11.3745 24.5269 31.0515 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 5 P 0.4155 25.2665 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 6 o 11.2424 27.8006 31.4731 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 7 e 11.3227 28.1414 31.4731 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 8 : 11.5979 8.5779 31.4731 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 9 r 11.2413 18.3782 31.0515 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 10 l -0.8668 10.7263 43.6069 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 11 i 0.6564 10.9855 41.8006 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 12 1 0.7845 14.1414 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 13 | 2.5534 4.8826 48.1487 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 14 N 0.3178 28.7266 42.1994 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 15 f -0.5834 19.9642 43.1853 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 16 g 10.2528 25.2287 44.2292 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 17 d -0.7651 26.6153 43.6069 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 18 W 0.6112 48.0809 42.1994 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 19 s 11.2449 19.7857 31.4731 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 20 c 11.5479 25.2078 31.4731 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 21 u 12.1338 24.9855 30.7922 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 22 3 0.4031 23.3416 42.4217 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 23 ~ 21.2268 20.6080 6.1487 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 24 # 0.4587 30.9707 42.4217 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 25 O 0.5116 34.4666 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 26 ` -3.0865 10.2447 9.3996 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 27 @ 4.3238 39.0664 41.7999 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 28 F 0.9563 25.7708 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 29 S 0.6683 23.5638 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 30 p 11.4198 26.7339 43.0439 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 31 “ 0.0411 22.5779 17.1929 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 32 % 0.2736 31.3564 42.4217 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 33 £ 0.6735 25.4300 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 34 . 34.2802 8.5779 8.5779 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 35 2 0.5461 25.3115 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 36 5 0.3756 23.7625 42.4217 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 37 m 11.6274 41.1197 31.0515 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 38 V 0.8615 32.7998 42.1994 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 39 6 0.4587 25.7708 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 40 w 12.1577 43.4311 30.7922 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 41 T 1.0644 32.4239 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 42 M 0.6291 41.3412 42.1994 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 43 G 0.5991 32.7998 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 44 b -0.7356 26.7339 43.6069 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 45 9 0.5889 25.5714 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 46 ; 11.5513 9.9854 41.2734 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 47 D 0.2410 29.3267 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 48 L 0.4218 23.7632 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 49 y 11.8704 29.1853 42.3630 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 50 ‘ -0.1812 9.7632 17.1929 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 51 \ 0.6262 20.5722 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 52 R 0.4935 29.1853 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 53 < 12.5290 20.7117 23.6008 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 54 4 0.7657 28.0000 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 55 8 0.5908 25.5714 42.4217 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 56 0 0.3371 26.8974 42.4217 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 57 A 0.6034 34.1037 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 58 E 0.6758 24.9485 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 59 B 0.5044 26.5555 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 60 v 12.2241 28.3630 30.7922 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 61 k -0.7223 25.9116 43.1853 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 62 J 0.7447 21.5692 42.1994 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 63 U 0.8169 29.2897 42.4587 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 64 j 0.7380 15.1853 53.7930 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 65 ( -0.0022 11.8887 54.4968 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 66 7 0.5044 26.7339 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 67 § 0.5192 22.3934 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 68 $ -3.7291 23.5638 53.2658 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 69 € 0.6599 28.8433 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 70 / 0.4733 20.9939 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 71 C 0.2377 30.2298 42.6809 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 72 * 0.2278 18.5997 17.5559 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 73 ” -0.1214 22.9416 17.1929 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 74 ? -0.0788 18.7418 42.9260 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 75 { -0.2716 19.6443 54.6733 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 76 } -0.1928 19.6443 54.6733 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 77 , 33.9275 9.9854 18.7998 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 78 I 0.7751 5.7857 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 79 ° -0.0620 12.0301 12.0301 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 80 K 0.9494 28.1765 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 81 H 0.7842 29.5489 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 82 q 11.3713 26.7567 43.0439 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 83 & 0.1639 34.4079 42.9260 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 84 ’ -0.2875 9.7632 17.1929 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 85 [ -0.9566 12.9561 55.1777 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 86 - 23.2900 12.1338 5.1628 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 87 Y 0.7004 32.4239 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 88 Q 0.6159 40.0054 50.6958 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 89 " 0.1140 14.8217 10.9485 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 90 ! -0.0163 8.5779 42.9260 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 91 x 12.1338 29.1853 30.3706 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 92 ) -0.0195 11.8887 54.4968 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 93 = 17.3413 23.7632 13.5993 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 94 + 12.5252 23.5040 23.5040 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 95 X 0.6688 32.3782 42.0000 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 96 » 18.0164 21.2303 15.5254 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 97 ' -0.1184 5.1628 10.9485 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 98 ¢ 7.5773 20.2901 39.0664 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 99 Z 0.7170 26.6523 41.7778 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 100 > 12.4858 20.7117 23.6008 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 101 ® 4.0148 38.2219 38.2219 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 102 © 4.3862 38.2219 38.2219 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 103 ] -0.8072 12.9561 55.1777 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 104 é -3.1740 28.1414 46.1769 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 105 z 12.1606 25.2078 30.3706 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 106 _ 46.2353 30.3706 3.7781 -Trebuchet_MS.ttf 89 " 14.8217 10.9485 107 ¥ 0.6046 32.2017 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 1 t 3.6147 20.0679 39.1479 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 2 h -0.7846 24.5269 43.1853 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 3 a 11.5103 25.7702 31.4731 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 4 n 11.4385 24.5269 31.0515 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 5 P 0.5340 25.2665 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 6 o 11.2054 27.8006 31.4731 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 7 e 11.2998 28.1414 31.4731 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 8 : 11.3488 8.5779 31.4731 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 9 r 11.6854 18.3782 31.0515 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 10 l -0.5300 10.7263 43.6069 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 11 i 0.6526 10.9855 41.8006 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 12 1 0.4511 14.1414 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 13 | 2.4149 4.8826 48.1487 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 14 N 0.4897 28.7266 42.1994 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 15 f -0.5254 19.9642 43.1853 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 16 g 10.0931 25.2287 44.2292 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 17 d -0.6809 26.6153 43.6069 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 18 W 0.6367 48.0809 42.1994 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 19 s 11.5253 19.7857 31.4731 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 20 c 11.4961 25.2078 31.4731 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 21 u 12.1861 24.9855 30.7922 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 22 3 0.3622 23.3416 42.4217 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 23 ~ 21.5041 20.6080 6.1487 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 24 # 0.6408 30.9707 42.4217 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 25 O 0.4717 34.4666 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 26 ` -3.4116 10.2447 9.3996 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 27 @ 4.3741 39.0664 41.7999 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 28 F 0.4602 25.7708 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 29 S 0.5044 23.5638 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 30 p 11.2947 26.7339 43.0439 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 31 “ -0.2000 22.5779 17.1929 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 32 % 0.4822 31.3564 42.4217 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 33 £ 0.6513 25.4300 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 34 . 34.3538 8.5779 8.5779 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 35 2 0.3770 25.3115 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 36 5 0.5515 23.7625 42.4217 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 37 m 11.4354 41.1197 31.0515 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 38 V 0.8274 32.7998 42.1994 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 39 6 0.4111 25.7708 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 40 w 12.1548 43.4311 30.7922 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 41 T 0.8097 32.4239 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 42 M 0.6229 41.3412 42.1994 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 43 G 0.4550 32.7998 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 44 b -0.6007 26.7339 43.6069 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 45 9 0.4303 25.5714 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 46 ; 11.5702 9.9854 41.2734 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 47 D 0.4213 29.3267 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 48 L 0.7088 23.7632 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 49 y 11.8816 29.1853 42.3630 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 50 ‘ -0.1852 9.7632 17.1929 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 51 \ 0.4246 20.5722 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 52 R 0.3307 29.1853 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 53 < 12.8105 20.7117 23.6008 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 54 4 0.5044 28.0000 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 55 8 0.6303 25.5714 42.4217 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 56 0 0.5875 26.8974 42.4217 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 57 A 0.3708 34.1037 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 58 E 0.7313 24.9485 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 59 B 0.5646 26.5555 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 60 v 11.8681 28.3630 30.7922 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 61 k -0.8707 25.9116 43.1853 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 62 J 0.7266 21.5692 42.1994 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 63 U 0.5521 29.2897 42.4587 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 64 j 0.7038 15.1853 53.7930 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 65 ( -0.1970 11.8887 54.4968 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 66 7 0.2373 26.7339 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 67 § 0.5994 22.3934 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 68 $ -3.6892 23.5638 53.2658 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 69 € 0.6825 28.8433 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 70 / 0.3669 20.9939 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 71 C 0.5515 30.2298 42.6809 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 72 * -0.3139 18.5997 17.5559 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 73 ” -0.3360 22.9416 17.1929 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 74 ? 0.0768 18.7418 42.9260 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 75 { -0.4511 19.6443 54.6733 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 76 } -0.1765 19.6443 54.6733 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 77 , 33.9331 9.9854 18.7998 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 78 I 0.6842 5.7857 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 79 ° 0.2300 12.0301 12.0301 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 80 K 0.8885 28.1765 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 81 H 0.6896 29.5489 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 82 q 11.4438 26.7567 43.0439 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 83 & -0.0235 34.4079 42.9260 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 84 ’ -0.2002 9.7632 17.1929 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 85 [ -0.7612 12.9561 55.1777 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 86 - 23.4337 12.1338 5.1628 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 87 Y 0.6948 32.4239 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 88 Q 0.5328 40.0054 50.6958 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 89 " -0.0432 14.8217 10.9485 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 90 ! -0.1558 8.5779 42.9260 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 91 x 12.1070 29.1853 30.3706 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 92 ) 0.3626 11.8887 54.4968 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 93 = 17.6142 23.7632 13.5993 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 94 + 12.6260 23.5040 23.5040 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 95 X 0.7418 32.3782 42.0000 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 96 » 17.8967 21.2303 15.5254 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 97 ' -0.1734 5.1628 10.9485 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 98 ¢ 7.8526 20.2901 39.0664 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 99 Z 0.6377 26.6523 41.7778 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 100 > 12.4666 20.7117 23.6008 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 101 ® 4.5095 38.2219 38.2219 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 102 © 4.2973 38.2219 38.2219 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 103 ] -0.8348 12.9561 55.1777 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 104 é -3.4019 28.1414 46.1769 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 105 z 12.0262 25.2078 30.3706 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 106 _ 46.4232 30.3706 3.7781 -Trebuchet_MS.ttf 90 ! 8.5779 42.9260 107 ¥ 0.6997 32.2017 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 1 t -8.1514 20.0679 39.1479 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 2 h -12.4799 24.5269 43.1853 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 3 a -0.7817 25.7702 31.4731 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 4 n -0.8275 24.5269 31.0515 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 5 P -11.9421 25.2665 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 6 o -0.9725 27.8006 31.4731 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 7 e -0.8111 28.1414 31.4731 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 8 : -0.7081 8.5779 31.4731 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 9 r -0.9770 18.3782 31.0515 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 10 l -13.0497 10.7263 43.6069 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 11 i -11.3617 10.9855 41.8006 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 12 1 -11.3418 14.1414 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 13 | -9.7276 4.8826 48.1487 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 14 N -11.3868 28.7266 42.1994 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 15 f -12.6370 19.9642 43.1853 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 16 g -1.8724 25.2287 44.2292 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 17 d -12.5630 26.6153 43.6069 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 18 W -11.3060 48.0809 42.1994 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 19 s -0.4849 19.7857 31.4731 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 20 c -0.8039 25.2078 31.4731 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 21 u -0.2049 24.9855 30.7922 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 22 3 -11.5347 23.3416 42.4217 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 23 ~ 9.3689 20.6080 6.1487 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 24 # -11.4295 30.9707 42.4217 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 25 O -11.6425 34.4666 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 26 ` -15.6951 10.2447 9.3996 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 27 @ -7.5266 39.0664 41.7999 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 28 F -11.3375 25.7708 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 29 S -11.3652 23.5638 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 30 p -0.7367 26.7339 43.0439 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 31 “ -12.4795 22.5779 17.1929 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 32 % -11.7136 31.3564 42.4217 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 33 £ -11.5561 25.4300 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 34 . 21.9620 8.5779 8.5779 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 35 2 -11.3301 25.3115 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 36 5 -11.5966 23.7625 42.4217 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 37 m -0.9210 41.1197 31.0515 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 38 V -11.5142 32.7998 42.1994 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 39 6 -11.4012 25.7708 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 40 w -0.0370 43.4311 30.7922 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 41 T -11.2284 32.4239 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 42 M -11.1259 41.3412 42.1994 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 43 G -11.5776 32.7998 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 44 b -12.9867 26.7339 43.6069 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 45 9 -11.4824 25.5714 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 46 ; -0.8615 9.9854 41.2734 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 47 D -11.8995 29.3267 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 48 L -11.4543 23.7632 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 49 y -0.1009 29.1853 42.3630 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 50 ‘ -12.1225 9.7632 17.1929 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 51 \ -11.9614 20.5722 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 52 R -11.8078 29.1853 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 53 < 0.3299 20.7117 23.6008 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 54 4 -11.6860 28.0000 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 55 8 -11.9211 25.5714 42.4217 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 56 0 -11.7092 26.8974 42.4217 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 57 A -11.8014 34.1037 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 58 E -11.6271 24.9485 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 59 B -11.8327 26.5555 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 60 v -0.3214 28.3630 30.7922 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 61 k -13.0904 25.9116 43.1853 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 62 J -11.2962 21.5692 42.1994 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 63 U -11.3419 29.2897 42.4587 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 64 j -11.7503 15.1853 53.7930 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 65 ( -12.3918 11.8887 54.4968 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 66 7 -11.7509 26.7339 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 67 § -11.6841 22.3934 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 68 $ -15.6900 23.5638 53.2658 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 69 € -11.3718 28.8433 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 70 / -11.8461 20.9939 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 71 C -11.3749 30.2298 42.6809 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 72 * -12.2238 18.5997 17.5559 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 73 ” -12.4287 22.9416 17.1929 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 74 ? -12.2241 18.7418 42.9260 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 75 { -12.0466 19.6443 54.6733 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 76 } -12.1175 19.6443 54.6733 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 77 , 21.9392 9.9854 18.7998 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 78 I -11.1943 5.7857 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 79 ° -12.3736 12.0301 12.0301 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 80 K -11.4278 28.1765 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 81 H -11.4280 29.5489 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 82 q -0.7328 26.7567 43.0439 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 83 & -12.1498 34.4079 42.9260 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 84 ’ -12.2537 9.7632 17.1929 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 85 [ -12.8757 12.9561 55.1777 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 86 - 11.2463 12.1338 5.1628 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 87 Y -11.5341 32.4239 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 88 Q -11.9001 40.0054 50.6958 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 89 " -12.1708 14.8217 10.9485 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 90 ! -12.2400 8.5779 42.9260 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 91 x -0.2663 29.1853 30.3706 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 92 ) -12.3596 11.8887 54.4968 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 93 = 5.4727 23.7632 13.5993 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 94 + 0.0535 23.5040 23.5040 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 95 X -11.6294 32.3782 42.0000 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 96 » 5.5794 21.2303 15.5254 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 97 ' -12.3510 5.1628 10.9485 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 98 ¢ -4.2889 20.2901 39.0664 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 99 Z -11.2708 26.6523 41.7778 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 100 > 0.4866 20.7117 23.6008 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 101 ® -7.6528 38.2219 38.2219 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 102 © -8.0142 38.2219 38.2219 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 103 ] -12.9392 12.9561 55.1777 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 104 é -15.5526 28.1414 46.1769 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 105 z 0.0047 25.2078 30.3706 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 106 _ 34.0421 30.3706 3.7781 -Trebuchet_MS.ttf 91 x 29.1853 30.3706 107 ¥ -11.1953 32.2017 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 1 t 3.9174 20.0679 39.1479 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 2 h -0.7612 24.5269 43.1853 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 3 a 11.6039 25.7702 31.4731 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 4 n 11.4529 24.5269 31.0515 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 5 P 0.5294 25.2665 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 6 o 11.5475 27.8006 31.4731 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 7 e 11.4986 28.1414 31.4731 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 8 : 11.6681 8.5779 31.4731 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 9 r 11.4899 18.3782 31.0515 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 10 l -0.5931 10.7263 43.6069 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 11 i 0.7546 10.9855 41.8006 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 12 1 0.1974 14.1414 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 13 | 2.4235 4.8826 48.1487 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 14 N 0.7424 28.7266 42.1994 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 15 f -0.2734 19.9642 43.1853 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 16 g 10.3627 25.2287 44.2292 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 17 d -0.6410 26.6153 43.6069 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 18 W 0.6881 48.0809 42.1994 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 19 s 11.5457 19.7857 31.4731 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 20 c 11.5451 25.2078 31.4731 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 21 u 12.2227 24.9855 30.7922 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 22 3 0.4659 23.3416 42.4217 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 23 ~ 21.3498 20.6080 6.1487 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 24 # 0.3516 30.9707 42.4217 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 25 O 0.2641 34.4666 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 26 ` -3.5090 10.2447 9.3996 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 27 @ 4.6731 39.0664 41.7999 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 28 F 0.7386 25.7708 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 29 S 0.4246 23.5638 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 30 p 11.6249 26.7339 43.0439 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 31 “ -0.2833 22.5779 17.1929 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 32 % 0.6379 31.3564 42.4217 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 33 £ 0.6883 25.4300 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 34 . 34.4239 8.5779 8.5779 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 35 2 0.4612 25.3115 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 36 5 0.3439 23.7625 42.4217 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 37 m 11.5371 41.1197 31.0515 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 38 V 0.5772 32.7998 42.1994 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 39 6 0.3071 25.7708 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 40 w 12.1723 43.4311 30.7922 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 41 T 0.7190 32.4239 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 42 M 0.7118 41.3412 42.1994 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 43 G 0.3444 32.7998 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 44 b -0.5031 26.7339 43.6069 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 45 9 0.3404 25.5714 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 46 ; 11.5557 9.9854 41.2734 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 47 D 0.3552 29.3267 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 48 L 0.9755 23.7632 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 49 y 12.1015 29.1853 42.3630 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 50 ‘ -0.2346 9.7632 17.1929 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 51 \ 0.5890 20.5722 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 52 R 0.4093 29.1853 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 53 < 12.7506 20.7117 23.6008 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 54 4 0.2674 28.0000 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 55 8 0.3775 25.5714 42.4217 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 56 0 0.4476 26.8974 42.4217 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 57 A 0.2312 34.1037 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 58 E 1.0630 24.9485 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 59 B 0.5994 26.5555 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 60 v 11.9869 28.3630 30.7922 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 61 k -0.6040 25.9116 43.1853 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 62 J 0.9755 21.5692 42.1994 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 63 U 0.7744 29.2897 42.4587 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 64 j 0.9571 15.1853 53.7930 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 65 ( 0.0073 11.8887 54.4968 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 66 7 0.6811 26.7339 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 67 § 0.5487 22.3934 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 68 $ -3.4428 23.5638 53.2658 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 69 € 0.1912 28.8433 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 70 / 0.5501 20.9939 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 71 C 0.5341 30.2298 42.6809 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 72 * 0.1383 18.5997 17.5559 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 73 ” -0.3116 22.9416 17.1929 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 74 ? -0.0101 18.7418 42.9260 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 75 { -0.2563 19.6443 54.6733 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 76 } -0.1928 19.6443 54.6733 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 77 , 34.0095 9.9854 18.7998 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 78 I 0.5825 5.7857 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 79 ° -0.1349 12.0301 12.0301 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 80 K 0.6646 28.1765 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 81 H 0.6795 29.5489 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 82 q 11.4841 26.7567 43.0439 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 83 & 0.0831 34.4079 42.9260 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 84 ’ 0.1290 9.7632 17.1929 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 85 [ -0.8910 12.9561 55.1777 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 86 - 23.2008 12.1338 5.1628 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 87 Y 0.6435 32.4239 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 88 Q 0.3157 40.0054 50.6958 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 89 " 0.0000 14.8217 10.9485 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 90 ! 0.1263 8.5779 42.9260 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 91 x 12.1353 29.1853 30.3706 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 92 ) -0.2477 11.8887 54.4968 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 93 = 17.6883 23.7632 13.5993 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 94 + 12.3060 23.5040 23.5040 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 95 X 0.6034 32.3782 42.0000 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 96 » 17.8955 21.2303 15.5254 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 97 ' -0.0432 5.1628 10.9485 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 98 ¢ 7.7738 20.2901 39.0664 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 99 Z 0.8264 26.6523 41.7778 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 100 > 12.5265 20.7117 23.6008 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 101 ® 3.7982 38.2219 38.2219 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 102 © 4.1561 38.2219 38.2219 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 103 ] -0.7314 12.9561 55.1777 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 104 é -3.1991 28.1414 46.1769 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 105 z 12.0732 25.2078 30.3706 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 106 _ 46.0096 30.3706 3.7781 -Trebuchet_MS.ttf 92 ) 11.8887 54.4968 107 ¥ 0.8833 32.2017 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 1 t -13.4316 20.0679 39.1479 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 2 h -18.5142 24.5269 43.1853 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 3 a -6.2756 25.7702 31.4731 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 4 n -6.0953 24.5269 31.0515 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 5 P -17.4429 25.2665 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 6 o -6.3587 27.8006 31.4731 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 7 e -6.2648 28.1414 31.4731 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 8 : -6.1015 8.5779 31.4731 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 9 r -6.1566 18.3782 31.0515 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 10 l -18.6006 10.7263 43.6069 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 11 i -16.9162 10.9855 41.8006 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 12 1 -16.9868 14.1414 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 13 | -15.7266 4.8826 48.1487 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 14 N -16.6793 28.7266 42.1994 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 15 f -18.4685 19.9642 43.1853 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 16 g -7.7395 25.2287 44.2292 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 17 d -18.4852 26.6153 43.6069 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 18 W -17.0558 48.0809 42.1994 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 19 s -6.5279 19.7857 31.4731 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 20 c -6.2550 25.2078 31.4731 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 21 u -5.6619 24.9855 30.7922 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 22 3 -17.1334 23.3416 42.4217 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 23 ~ 3.4676 20.6080 6.1487 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 24 # -16.9766 30.9707 42.4217 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 25 O -17.0402 34.4666 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 26 ` -20.7980 10.2447 9.3996 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 27 @ -13.1840 39.0664 41.7999 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 28 F -17.1734 25.7708 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 29 S -17.1617 23.5638 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 30 p -6.0152 26.7339 43.0439 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 31 “ -18.0520 22.5779 17.1929 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 32 % -17.4293 31.3564 42.4217 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 33 £ -17.4451 25.4300 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 34 . 16.9332 8.5779 8.5779 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 35 2 -17.2092 25.3115 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 36 5 -17.5499 23.7625 42.4217 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 37 m -6.2640 41.1197 31.0515 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 38 V -16.9134 32.7998 42.1994 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 39 6 -17.2833 25.7708 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 40 w -5.5151 43.4311 30.7922 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 41 T -17.2224 32.4239 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 42 M -16.8209 41.3412 42.1994 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 43 G -17.1491 32.7998 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 44 b -18.4860 26.7339 43.6069 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 45 9 -17.0460 25.5714 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 46 ; -6.1402 9.9854 41.2734 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 47 D -16.9972 29.3267 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 48 L -16.7766 23.7632 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 49 y -5.5808 29.1853 42.3630 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 50 ‘ -18.2074 9.7632 17.1929 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 51 \ -17.3283 20.5722 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 52 R -17.2813 29.1853 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 53 < -5.1272 20.7117 23.6008 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 54 4 -17.1929 28.0000 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 55 8 -16.8627 25.5714 42.4217 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 56 0 -17.3769 26.8974 42.4217 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 57 A -17.3616 34.1037 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 58 E -17.3219 24.9485 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 59 B -17.1133 26.5555 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 60 v -5.3538 28.3630 30.7922 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 61 k -18.4752 25.9116 43.1853 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 62 J -16.9837 21.5692 42.1994 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 63 U -17.0662 29.2897 42.4587 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 64 j -16.9104 15.1853 53.7930 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 65 ( -17.6450 11.8887 54.4968 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 66 7 -17.0170 26.7339 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 67 § -17.1962 22.3934 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 68 $ -21.1285 23.5638 53.2658 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 69 € -17.0652 28.8433 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 70 / -17.0968 20.9939 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 71 C -17.0296 30.2298 42.6809 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 72 * -17.7561 18.5997 17.5559 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 73 ” -17.8378 22.9416 17.1929 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 74 ? -17.6538 18.7418 42.9260 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 75 { -17.8557 19.6443 54.6733 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 76 } -18.0185 19.6443 54.6733 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 77 , 16.3152 9.9854 18.7998 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 78 I -17.2093 5.7857 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 79 ° -17.8024 12.0301 12.0301 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 80 K -16.8224 28.1765 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 81 H -16.8324 29.5489 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 82 q -6.0753 26.7567 43.0439 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 83 & -17.6338 34.4079 42.9260 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 84 ’ -17.6798 9.7632 17.1929 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 85 [ -18.6785 12.9561 55.1777 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 86 - 5.7803 12.1338 5.1628 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 87 Y -16.7948 32.4239 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 88 Q -17.1958 40.0054 50.6958 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 89 " -17.5315 14.8217 10.9485 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 90 ! -17.8294 8.5779 42.9260 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 91 x -5.6361 29.1853 30.3706 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 92 ) -17.8207 11.8887 54.4968 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 93 = -0.1481 23.7632 13.5993 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 94 + -5.2341 23.5040 23.5040 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 95 X -17.2866 32.3782 42.0000 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 96 » 0.2875 21.2303 15.5254 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 97 ' -17.6872 5.1628 10.9485 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 98 ¢ -9.7663 20.2901 39.0664 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 99 Z -17.2624 26.6523 41.7778 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 100 > -5.5068 20.7117 23.6008 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 101 ® -13.4148 38.2219 38.2219 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 102 © -13.6199 38.2219 38.2219 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 103 ] -18.7766 12.9561 55.1777 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 104 é -21.1754 28.1414 46.1769 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 105 z -5.4840 25.2078 30.3706 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 106 _ 28.4389 30.3706 3.7781 -Trebuchet_MS.ttf 93 = 23.7632 13.5993 107 ¥ -16.9664 32.2017 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 1 t -8.6349 20.0679 39.1479 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 2 h -12.9942 24.5269 43.1853 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 3 a -1.0095 25.7702 31.4731 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 4 n -1.0570 24.5269 31.0515 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 5 P -12.0203 25.2665 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 6 o -0.8085 27.8006 31.4731 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 7 e -0.9167 28.1414 31.4731 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 8 : -0.9686 8.5779 31.4731 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 9 r -1.0352 18.3782 31.0515 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 10 l -13.2340 10.7263 43.6069 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 11 i -12.0600 10.9855 41.8006 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 12 1 -11.5672 14.1414 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 13 | -9.9480 4.8826 48.1487 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 14 N -11.6751 28.7266 42.1994 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 15 f -13.0380 19.9642 43.1853 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 16 g -2.3783 25.2287 44.2292 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 17 d -13.2023 26.6153 43.6069 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 18 W -11.6411 48.0809 42.1994 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 19 s -0.9830 19.7857 31.4731 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 20 c -0.8397 25.2078 31.4731 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 21 u -0.3362 24.9855 30.7922 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 22 3 -11.9837 23.3416 42.4217 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 23 ~ 8.8756 20.6080 6.1487 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 24 # -11.6966 30.9707 42.4217 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 25 O -12.1347 34.4666 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 26 ` -15.4546 10.2447 9.3996 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 27 @ -7.8320 39.0664 41.7999 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 28 F -11.4189 25.7708 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 29 S -12.0359 23.5638 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 30 p -0.9095 26.7339 43.0439 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 31 “ -12.4706 22.5779 17.1929 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 32 % -12.1376 31.3564 42.4217 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 33 £ -11.8728 25.4300 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 34 . 21.4010 8.5779 8.5779 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 35 2 -11.7416 25.3115 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 36 5 -12.0247 23.7625 42.4217 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 37 m -1.1051 41.1197 31.0515 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 38 V -11.6135 32.7998 42.1994 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 39 6 -11.8592 25.7708 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 40 w -0.2444 43.4311 30.7922 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 41 T -11.4638 32.4239 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 42 M -11.7923 41.3412 42.1994 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 43 G -11.9685 32.7998 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 44 b -13.1312 26.7339 43.6069 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 45 9 -11.7094 25.5714 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 46 ; -0.9358 9.9854 41.2734 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 47 D -11.9971 29.3267 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 48 L -11.5987 23.7632 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 49 y -0.0843 29.1853 42.3630 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 50 ‘ -12.7447 9.7632 17.1929 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 51 \ -11.7994 20.5722 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 52 R -11.6310 29.1853 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 53 < 0.3256 20.7117 23.6008 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 54 4 -11.8905 28.0000 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 55 8 -11.9837 25.5714 42.4217 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 56 0 -11.7646 26.8974 42.4217 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 57 A -12.0117 34.1037 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 58 E -11.6841 24.9485 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 59 B -12.0060 26.5555 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 60 v -0.0118 28.3630 30.7922 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 61 k -13.3079 25.9116 43.1853 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 62 J -11.6280 21.5692 42.1994 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 63 U -11.9023 29.2897 42.4587 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 64 j -11.5322 15.1853 53.7930 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 65 ( -12.3571 11.8887 54.4968 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 66 7 -11.8934 26.7339 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 67 § -12.2178 22.3934 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 68 $ -16.1715 23.5638 53.2658 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 69 € -11.9631 28.8433 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 70 / -11.9685 20.9939 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 71 C -11.7105 30.2298 42.6809 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 72 * -12.2980 18.5997 17.5559 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 73 ” -12.4792 22.9416 17.1929 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 74 ? -12.6761 18.7418 42.9260 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 75 { -12.4143 19.6443 54.6733 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 76 } -12.4542 19.6443 54.6733 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 77 , 21.5921 9.9854 18.7998 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 78 I -11.6770 5.7857 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 79 ° -12.6086 12.0301 12.0301 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 80 K -11.6915 28.1765 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 81 H -11.6819 29.5489 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 82 q -0.8941 26.7567 43.0439 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 83 & -12.3042 34.4079 42.9260 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 84 ’ -12.3054 9.7632 17.1929 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 85 [ -13.1157 12.9561 55.1777 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 86 - 10.9889 12.1338 5.1628 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 87 Y -11.6531 32.4239 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 88 Q -11.5550 40.0054 50.6958 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 89 " -12.4682 14.8217 10.9485 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 90 ! -12.6212 8.5779 42.9260 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 91 x -0.2222 29.1853 30.3706 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 92 ) -12.1779 11.8887 54.4968 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 93 = 5.6122 23.7632 13.5993 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 94 + -0.1232 23.5040 23.5040 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 95 X -11.8848 32.3782 42.0000 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 96 » 5.2960 21.2303 15.5254 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 97 ' -12.3571 5.1628 10.9485 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 98 ¢ -4.5785 20.2901 39.0664 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 99 Z -11.6625 26.6523 41.7778 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 100 > 0.0202 20.7117 23.6008 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 101 ® -8.3378 38.2219 38.2219 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 102 © -8.2945 38.2219 38.2219 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 103 ] -13.2804 12.9561 55.1777 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 104 é -15.3269 28.1414 46.1769 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 105 z -0.3106 25.2078 30.3706 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 106 _ 33.4090 30.3706 3.7781 -Trebuchet_MS.ttf 94 + 23.5040 23.5040 107 ¥ -11.5405 32.2017 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 1 t 3.1104 20.0679 39.1479 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 2 h -1.1760 24.5269 43.1853 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 3 a 10.7442 25.7702 31.4731 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 4 n 10.6112 24.5269 31.0515 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 5 P -0.2018 25.2665 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 6 o 10.7653 27.8006 31.4731 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 7 e 11.1216 28.1414 31.4731 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 8 : 10.9931 8.5779 31.4731 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 9 r 10.9438 18.3782 31.0515 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 10 l -1.2684 10.7263 43.6069 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 11 i 0.2753 10.9855 41.8006 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 12 1 0.1407 14.1414 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 13 | 2.1281 4.8826 48.1487 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 14 N 0.1670 28.7266 42.1994 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 15 f -1.1011 19.9642 43.1853 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 16 g 10.1893 25.2287 44.2292 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 17 d -1.1569 26.6153 43.6069 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 18 W 0.5070 48.0809 42.1994 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 19 s 10.7197 19.7857 31.4731 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 20 c 10.7576 25.2078 31.4731 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 21 u 11.4996 24.9855 30.7922 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 22 3 0.1379 23.3416 42.4217 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 23 ~ 20.8988 20.6080 6.1487 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 24 # 0.0595 30.9707 42.4217 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 25 O -0.3788 34.4666 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 26 ` -3.6102 10.2447 9.3996 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 27 @ 3.5883 39.0664 41.7999 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 28 F 0.1453 25.7708 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 29 S 0.0013 23.5638 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 30 p 10.9086 26.7339 43.0439 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 31 “ -0.4709 22.5779 17.1929 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 32 % 0.1955 31.3564 42.4217 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 33 £ 0.1764 25.4300 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 34 . 33.5310 8.5779 8.5779 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 35 2 -0.1821 25.3115 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 36 5 -0.1299 23.7625 42.4217 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 37 m 11.2646 41.1197 31.0515 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 38 V 0.3510 32.7998 42.1994 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 39 6 -0.1216 25.7708 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 40 w 11.6324 43.4311 30.7922 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 41 T 0.0206 32.4239 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 42 M -0.0920 41.3412 42.1994 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 43 G -0.1609 32.7998 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 44 b -1.1820 26.7339 43.6069 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 45 9 -0.0430 25.5714 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 46 ; 10.7501 9.9854 41.2734 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 47 D 0.0485 29.3267 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 48 L 0.1232 23.7632 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 49 y 11.8047 29.1853 42.3630 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 50 ‘ -0.7542 9.7632 17.1929 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 51 \ -0.2891 20.5722 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 52 R 0.3052 29.1853 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 53 < 11.8939 20.7117 23.6008 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 54 4 -0.0432 28.0000 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 55 8 -0.0697 25.5714 42.4217 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 56 0 -0.0741 26.8974 42.4217 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 57 A -0.0000 34.1037 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 58 E 0.1582 24.9485 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 59 B 0.1282 26.5555 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 60 v 11.8457 28.3630 30.7922 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 61 k -1.0219 25.9116 43.1853 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 62 J 0.1062 21.5692 42.1994 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 63 U 0.1809 29.2897 42.4587 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 64 j 0.2432 15.1853 53.7930 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 65 ( -0.5972 11.8887 54.4968 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 66 7 0.0091 26.7339 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 67 § -0.0802 22.3934 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 68 $ -4.3021 23.5638 53.2658 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 69 € 0.0370 28.8433 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 70 / -0.1896 20.9939 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 71 C -0.1611 30.2298 42.6809 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 72 * -0.4896 18.5997 17.5559 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 73 ” -0.5535 22.9416 17.1929 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 74 ? -0.4673 18.7418 42.9260 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 75 { -0.4771 19.6443 54.6733 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 76 } -0.9270 19.6443 54.6733 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 77 , 33.6757 9.9854 18.7998 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 78 I 0.1899 5.7857 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 79 ° -0.4039 12.0301 12.0301 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 80 K 0.3491 28.1765 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 81 H 0.6326 29.5489 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 82 q 10.7987 26.7567 43.0439 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 83 & -0.3382 34.4079 42.9260 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 84 ’ -0.6453 9.7632 17.1929 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 85 [ -1.3968 12.9561 55.1777 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 86 - 22.5183 12.1338 5.1628 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 87 Y 0.0862 32.4239 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 88 Q -0.0922 40.0054 50.6958 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 89 " -0.5304 14.8217 10.9485 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 90 ! -0.3627 8.5779 42.9260 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 91 x 11.6246 29.1853 30.3706 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 92 ) -0.8763 11.8887 54.4968 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 93 = 17.1645 23.7632 13.5993 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 94 + 11.7498 23.5040 23.5040 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 95 X 0.0903 32.3782 42.0000 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 96 » 17.5211 21.2303 15.5254 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 97 ' -0.3212 5.1628 10.9485 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 98 ¢ 7.1517 20.2901 39.0664 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 99 Z 0.4900 26.6523 41.7778 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 100 > 11.9929 20.7117 23.6008 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 101 ® 3.6914 38.2219 38.2219 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 102 © 3.7339 38.2219 38.2219 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 103 ] -1.0629 12.9561 55.1777 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 104 é -4.0480 28.1414 46.1769 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 105 z 11.6088 25.2078 30.3706 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 106 _ 45.5180 30.3706 3.7781 -Trebuchet_MS.ttf 95 X 32.3782 42.0000 107 ¥ 0.3644 32.2017 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 1 t -13.9197 20.0679 39.1479 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 2 h -18.4179 24.5269 43.1853 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 3 a -6.5105 25.7702 31.4731 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 4 n -6.5831 24.5269 31.0515 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 5 P -17.3190 25.2665 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 6 o -6.2529 27.8006 31.4731 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 7 e -6.6658 28.1414 31.4731 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 8 : -6.0912 8.5779 31.4731 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 9 r -5.9906 18.3782 31.0515 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 10 l -18.5464 10.7263 43.6069 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 11 i -17.2034 10.9855 41.8006 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 12 1 -17.7732 14.1414 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 13 | -15.3817 4.8826 48.1487 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 14 N -17.2733 28.7266 42.1994 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 15 f -18.4564 19.9642 43.1853 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 16 g -7.5489 25.2287 44.2292 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 17 d -18.6222 26.6153 43.6069 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 18 W -17.0210 48.0809 42.1994 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 19 s -6.2881 19.7857 31.4731 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 20 c -6.4751 25.2078 31.4731 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 21 u -5.7615 24.9855 30.7922 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 22 3 -17.1633 23.3416 42.4217 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 23 ~ 3.6177 20.6080 6.1487 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 24 # -17.1833 30.9707 42.4217 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 25 O -17.4743 34.4666 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 26 ` -21.1457 10.2447 9.3996 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 27 @ -13.0766 39.0664 41.7999 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 28 F -17.1417 25.7708 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 29 S -17.3135 23.5638 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 30 p -6.4438 26.7339 43.0439 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 31 “ -17.8921 22.5779 17.1929 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 32 % -17.1981 31.3564 42.4217 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 33 £ -17.4902 25.4300 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 34 . 16.4761 8.5779 8.5779 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 35 2 -17.4010 25.3115 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 36 5 -17.3012 23.7625 42.4217 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 37 m -6.3125 41.1197 31.0515 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 38 V -16.9445 32.7998 42.1994 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 39 6 -17.4294 25.7708 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 40 w -5.6428 43.4311 30.7922 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 41 T -17.3227 32.4239 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 42 M -17.1581 41.3412 42.1994 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 43 G -17.1869 32.7998 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 44 b -18.6122 26.7339 43.6069 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 45 9 -17.2664 25.5714 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 46 ; -6.6792 9.9854 41.2734 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 47 D -17.3985 29.3267 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 48 L -17.1495 23.7632 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 49 y -5.8575 29.1853 42.3630 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 50 ‘ -17.8218 9.7632 17.1929 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 51 \ -17.1924 20.5722 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 52 R -17.3064 29.1853 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 53 < -5.2423 20.7117 23.6008 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 54 4 -17.4767 28.0000 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 55 8 -17.3923 25.5714 42.4217 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 56 0 -17.6190 26.8974 42.4217 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 57 A -17.6670 34.1037 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 58 E -17.0899 24.9485 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 59 B -17.3746 26.5555 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 60 v -5.7864 28.3630 30.7922 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 61 k -18.4622 25.9116 43.1853 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 62 J -17.0602 21.5692 42.1994 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 63 U -17.1285 29.2897 42.4587 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 64 j -17.1606 15.1853 53.7930 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 65 ( -18.0302 11.8887 54.4968 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 66 7 -17.4499 26.7339 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 67 § -17.5240 22.3934 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 68 $ -21.5949 23.5638 53.2658 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 69 € -17.3257 28.8433 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 70 / -17.3542 20.9939 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 71 C -17.5825 30.2298 42.6809 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 72 * -17.5840 18.5997 17.5559 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 73 ” -17.8432 22.9416 17.1929 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 74 ? -17.7545 18.7418 42.9260 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 75 { -18.0833 19.6443 54.6733 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 76 } -18.0161 19.6443 54.6733 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 77 , 16.0696 9.9854 18.7998 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 78 I -16.8870 5.7857 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 79 ° -17.7878 12.0301 12.0301 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 80 K -17.2663 28.1765 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 81 H -17.1831 29.5489 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 82 q -6.4323 26.7567 43.0439 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 83 & -17.7766 34.4079 42.9260 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 84 ’ -17.8268 9.7632 17.1929 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 85 [ -18.7079 12.9561 55.1777 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 86 - 5.7519 12.1338 5.1628 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 87 Y -16.9397 32.4239 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 88 Q -17.0958 40.0054 50.6958 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 89 " -17.7752 14.8217 10.9485 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 90 ! -17.9979 8.5779 42.9260 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 91 x -5.7317 29.1853 30.3706 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 92 ) -18.0446 11.8887 54.4968 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 93 = -0.3815 23.7632 13.5993 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 94 + -5.3143 23.5040 23.5040 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 95 X -17.5933 32.3782 42.0000 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 96 » 0.1720 21.2303 15.5254 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 97 ' -17.9394 5.1628 10.9485 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 98 ¢ -10.4683 20.2901 39.0664 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 99 Z -16.9697 26.6523 41.7778 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 100 > -5.2744 20.7117 23.6008 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 101 ® -13.4883 38.2219 38.2219 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 102 © -13.6709 38.2219 38.2219 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 103 ] -18.5286 12.9561 55.1777 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 104 é -21.1301 28.1414 46.1769 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 105 z -5.7777 25.2078 30.3706 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 106 _ 28.2954 30.3706 3.7781 -Trebuchet_MS.ttf 96 » 21.2303 15.5254 107 ¥ -16.9450 32.2017 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 1 t 3.7012 20.0679 39.1479 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 2 h -0.6762 24.5269 43.1853 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 3 a 11.3578 25.7702 31.4731 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 4 n 11.3848 24.5269 31.0515 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 5 P 0.4982 25.2665 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 6 o 11.3640 27.8006 31.4731 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 7 e 11.5331 28.1414 31.4731 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 8 : 11.7656 8.5779 31.4731 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 9 r 11.4050 18.3782 31.0515 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 10 l -0.4680 10.7263 43.6069 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 11 i 0.6236 10.9855 41.8006 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 12 1 0.5044 14.1414 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 13 | 2.2432 4.8826 48.1487 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 14 N 0.7636 28.7266 42.1994 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 15 f -0.7550 19.9642 43.1853 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 16 g 10.3147 25.2287 44.2292 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 17 d -0.6871 26.6153 43.6069 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 18 W 0.6525 48.0809 42.1994 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 19 s 11.3726 19.7857 31.4731 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 20 c 11.5418 25.2078 31.4731 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 21 u 12.1338 24.9855 30.7922 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 22 3 0.4406 23.3416 42.4217 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 23 ~ 21.5324 20.6080 6.1487 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 24 # 0.5414 30.9707 42.4217 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 25 O 0.6081 34.4666 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 26 ` -3.3187 10.2447 9.3996 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 27 @ 4.5443 39.0664 41.7999 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 28 F 0.5978 25.7708 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 29 S 0.0882 23.5638 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 30 p 11.3418 26.7339 43.0439 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 31 “ -0.0728 22.5779 17.1929 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 32 % 0.6644 31.3564 42.4217 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 33 £ 0.5163 25.4300 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 34 . 34.4621 8.5779 8.5779 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 35 2 0.6797 25.3115 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 36 5 0.4869 23.7625 42.4217 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 37 m 11.0850 41.1197 31.0515 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 38 V 0.8822 32.7998 42.1994 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 39 6 0.4896 25.7708 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 40 w 12.0405 43.4311 30.7922 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 41 T 0.7266 32.4239 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 42 M 0.8068 41.3412 42.1994 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 43 G 0.3404 32.7998 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 44 b -0.8529 26.7339 43.6069 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 45 9 0.4155 25.5714 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 46 ; 11.5493 9.9854 41.2734 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 47 D 0.4435 29.3267 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 48 L 0.8097 23.7632 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 49 y 12.0449 29.1853 42.3630 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 50 ‘ -0.5710 9.7632 17.1929 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 51 \ 0.4673 20.5722 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 52 R 0.4007 29.1853 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 53 < 12.5021 20.7117 23.6008 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 54 4 0.5077 28.0000 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 55 8 0.5504 25.5714 42.4217 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 56 0 0.4721 26.8974 42.4217 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 57 A 0.4957 34.1037 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 58 E 0.8122 24.9485 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 59 B 0.3534 26.5555 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 60 v 12.1770 28.3630 30.7922 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 61 k -0.6809 25.9116 43.1853 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 62 J 0.6747 21.5692 42.1994 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 63 U 0.5431 29.2897 42.4587 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 64 j 0.8979 15.1853 53.7930 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 65 ( 0.1715 11.8887 54.4968 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 66 7 0.6451 26.7339 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 67 § 0.3575 22.3934 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 68 $ -3.7324 23.5638 53.2658 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 69 € 0.5352 28.8433 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 70 / 0.4703 20.9939 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 71 C 0.5044 30.2298 42.6809 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 72 * -0.0471 18.5997 17.5559 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 73 ” -0.1918 22.9416 17.1929 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 74 ? -0.1048 18.7418 42.9260 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 75 { -0.1319 19.6443 54.6733 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 76 } -0.0222 19.6443 54.6733 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 77 , 34.0984 9.9854 18.7998 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 78 I 0.8169 5.7857 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 79 ° -0.0471 12.0301 12.0301 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 80 K 0.7419 28.1765 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 81 H 0.8303 29.5489 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 82 q 11.5878 26.7567 43.0439 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 83 & 0.1560 34.4079 42.9260 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 84 ’ -0.1309 9.7632 17.1929 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 85 [ -0.7266 12.9561 55.1777 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 86 - 23.3017 12.1338 5.1628 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 87 Y 0.7266 32.4239 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 88 Q 0.6644 40.0054 50.6958 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 89 " 0.0000 14.8217 10.9485 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 90 ! 0.1321 8.5779 42.9260 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 91 x 12.1310 29.1853 30.3706 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 92 ) 0.0519 11.8887 54.4968 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 93 = 17.6306 23.7632 13.5993 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 94 + 12.6202 23.5040 23.5040 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 95 X 0.4275 32.3782 42.0000 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 96 » 17.9438 21.2303 15.5254 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 97 ' 0.0000 5.1628 10.9485 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 98 ¢ 7.6662 20.2901 39.0664 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 99 Z 0.7044 26.6523 41.7778 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 100 > 12.3196 20.7117 23.6008 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 101 ® 4.3742 38.2219 38.2219 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 102 © 4.3281 38.2219 38.2219 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 103 ] -0.6809 12.9561 55.1777 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 104 é -3.1559 28.1414 46.1769 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 105 z 12.1338 25.2078 30.3706 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 106 _ 46.1831 30.3706 3.7781 -Trebuchet_MS.ttf 97 ' 5.1628 10.9485 107 ¥ 0.6315 32.2017 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 1 t -3.7512 20.0679 39.1479 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 2 h -8.6899 24.5269 43.1853 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 3 a 3.8745 25.7702 31.4731 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 4 n 3.8948 24.5269 31.0515 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 5 P -6.7894 25.2665 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 6 o 3.9610 27.8006 31.4731 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 7 e 4.0379 28.1414 31.4731 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 8 : 3.9127 8.5779 31.4731 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 9 r 3.9501 18.3782 31.0515 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 10 l -8.0814 10.7263 43.6069 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 11 i -7.1143 10.9855 41.8006 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 12 1 -7.0963 14.1414 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 13 | -5.2744 4.8826 48.1487 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 14 N -6.8517 28.7266 42.1994 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 15 f -8.6662 19.9642 43.1853 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 16 g 2.8267 25.2287 44.2292 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 17 d -8.1884 26.6153 43.6069 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 18 W -6.8963 48.0809 42.1994 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 19 s 3.8213 19.7857 31.4731 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 20 c 3.8732 25.2078 31.4731 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 21 u 4.4134 24.9855 30.7922 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 22 3 -7.3525 23.3416 42.4217 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 23 ~ 13.4098 20.6080 6.1487 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 24 # -6.7452 30.9707 42.4217 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 25 O -7.2774 34.4666 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 26 ` -11.0988 10.2447 9.3996 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 27 @ -3.1828 39.0664 41.7999 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 28 F -6.8459 25.7708 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 29 S -7.4165 23.5638 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 30 p 3.4585 26.7339 43.0439 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 31 “ -7.9207 22.5779 17.1929 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 32 % -7.0329 31.3564 42.4217 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 33 £ -7.4892 25.4300 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 34 . 26.5823 8.5779 8.5779 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 35 2 -7.2161 25.3115 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 36 5 -7.2186 23.7625 42.4217 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 37 m 3.8760 41.1197 31.0515 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 38 V -7.0001 32.7998 42.1994 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 39 6 -7.2782 25.7708 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 40 w 4.4830 43.4311 30.7922 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 41 T -6.8219 32.4239 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 42 M -6.8788 41.3412 42.1994 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 43 G -6.9494 32.7998 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 44 b -8.5569 26.7339 43.6069 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 45 9 -6.9302 25.5714 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 46 ; 3.5118 9.9854 41.2734 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 47 D -7.2507 29.3267 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 48 L -6.7926 23.7632 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 49 y 4.3909 29.1853 42.3630 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 50 ‘ -7.9316 9.7632 17.1929 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 51 \ -7.2477 20.5722 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 52 R -6.9067 29.1853 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 53 < 4.7410 20.7117 23.6008 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 54 4 -7.4135 28.0000 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 55 8 -7.1102 25.5714 42.4217 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 56 0 -7.7114 26.8974 42.4217 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 57 A -6.9379 34.1037 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 58 E -6.9287 24.9485 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 59 B -7.2694 26.5555 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 60 v 4.3821 28.3630 30.7922 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 61 k -8.6372 25.9116 43.1853 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 62 J -6.8353 21.5692 42.1994 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 63 U -6.8930 29.2897 42.4587 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 64 j -6.7249 15.1853 53.7930 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 65 ( -7.6229 11.8887 54.4968 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 66 7 -6.5921 26.7339 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 67 § -7.0032 22.3934 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 68 $ -11.5494 23.5638 53.2658 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 69 € -7.0152 28.8433 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 70 / -7.0623 20.9939 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 71 C -6.9603 30.2298 42.6809 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 72 * -7.5899 18.5997 17.5559 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 73 ” -7.9972 22.9416 17.1929 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 74 ? -7.8689 18.7418 42.9260 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 75 { -8.0190 19.6443 54.6733 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 76 } -7.6601 19.6443 54.6733 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 77 , 26.4208 9.9854 18.7998 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 78 I -7.0063 5.7857 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 79 ° -7.8373 12.0301 12.0301 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 80 K -7.0929 28.1765 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 81 H -7.0001 29.5489 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 82 q 3.7450 26.7567 43.0439 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 83 & -7.6225 34.4079 42.9260 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 84 ’ -7.5966 9.7632 17.1929 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 85 [ -8.1779 12.9561 55.1777 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 86 - 15.7067 12.1338 5.1628 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 87 Y -7.0015 32.4239 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 88 Q -7.3421 40.0054 50.6958 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 89 " -7.5892 14.8217 10.9485 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 90 ! -7.5014 8.5779 42.9260 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 91 x 4.7402 29.1853 30.3706 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 92 ) -7.7723 11.8887 54.4968 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 93 = 10.0509 23.7632 13.5993 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 94 + 4.8203 23.5040 23.5040 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 95 X -7.2223 32.3782 42.0000 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 96 » 9.8565 21.2303 15.5254 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 97 ' -7.4891 5.1628 10.9485 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 98 ¢ -0.2076 20.2901 39.0664 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 99 Z -6.7729 26.6523 41.7778 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 100 > 4.7053 20.7117 23.6008 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 101 ® -3.5096 38.2219 38.2219 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 102 © -3.2193 38.2219 38.2219 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 103 ] -8.2711 12.9561 55.1777 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 104 é -10.9776 28.1414 46.1769 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 105 z 4.4960 25.2078 30.3706 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 106 _ 38.6077 30.3706 3.7781 -Trebuchet_MS.ttf 98 ¢ 20.2901 39.0664 107 ¥ -7.1673 32.2017 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 1 t 2.8737 20.0679 39.1479 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 2 h -1.4344 24.5269 43.1853 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 3 a 10.6832 25.7702 31.4731 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 4 n 10.4535 24.5269 31.0515 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 5 P 0.2149 25.2665 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 6 o 10.8094 27.8006 31.4731 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 7 e 10.6867 28.1414 31.4731 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 8 : 10.7991 8.5779 31.4731 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 9 r 10.6787 18.3782 31.0515 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 10 l -1.4445 10.7263 43.6069 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 11 i 0.0941 10.9855 41.8006 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 12 1 -0.3616 14.1414 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 13 | 1.4469 4.8826 48.1487 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 14 N -0.3421 28.7266 42.1994 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 15 f -1.2450 19.9642 43.1853 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 16 g 9.6516 25.2287 44.2292 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 17 d -1.7953 26.6153 43.6069 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 18 W 0.0100 48.0809 42.1994 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 19 s 11.0020 19.7857 31.4731 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 20 c 10.5072 25.2078 31.4731 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 21 u 11.4148 24.9855 30.7922 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 22 3 -0.0078 23.3416 42.4217 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 23 ~ 20.7905 20.6080 6.1487 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 24 # -0.2012 30.9707 42.4217 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 25 O -0.4522 34.4666 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 26 ` -4.0382 10.2447 9.3996 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 27 @ 3.9171 39.0664 41.7999 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 28 F 0.1049 25.7708 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 29 S -0.2665 23.5638 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 30 p 10.8452 26.7339 43.0439 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 31 “ -0.7802 22.5779 17.1929 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 32 % -0.3039 31.3564 42.4217 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 33 £ -0.4033 25.4300 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 34 . 33.2334 8.5779 8.5779 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 35 2 -0.2058 25.3115 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 36 5 -0.2222 23.7625 42.4217 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 37 m 10.9353 41.1197 31.0515 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 38 V 0.1263 32.7998 42.1994 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 39 6 -0.3134 25.7708 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 40 w 11.5421 43.4311 30.7922 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 41 T 0.1502 32.4239 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 42 M 0.1570 41.3412 42.1994 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 43 G -0.1214 32.7998 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 44 b -1.1520 26.7339 43.6069 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 45 9 -0.1352 25.5714 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 46 ; 10.5623 9.9854 41.2734 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 47 D -0.2035 29.3267 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 48 L 0.1349 23.7632 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 49 y 11.2338 29.1853 42.3630 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 50 ‘ -0.9503 9.7632 17.1929 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 51 \ -0.2727 20.5722 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 52 R -0.3981 29.1853 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 53 < 11.9253 20.7117 23.6008 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 54 4 -0.3376 28.0000 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 55 8 -0.3481 25.5714 42.4217 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 56 0 -0.1032 26.8974 42.4217 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 57 A -0.3634 34.1037 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 58 E 0.1763 24.9485 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 59 B -0.4015 26.5555 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 60 v 11.1876 28.3630 30.7922 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 61 k -1.5396 25.9116 43.1853 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 62 J -0.1848 21.5692 42.1994 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 63 U -0.1360 29.2897 42.4587 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 64 j -0.0075 15.1853 53.7930 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 65 ( -0.5608 11.8887 54.4968 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 66 7 -0.2284 26.7339 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 67 § -0.1210 22.3934 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 68 $ -4.6382 23.5638 53.2658 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 69 € -0.1260 28.8433 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 70 / -0.2864 20.9939 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 71 C -0.1809 30.2298 42.6809 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 72 * -0.7722 18.5997 17.5559 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 73 ” -0.9274 22.9416 17.1929 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 74 ? -0.8641 18.7418 42.9260 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 75 { -1.0548 19.6443 54.6733 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 76 } -0.8992 19.6443 54.6733 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 77 , 33.0221 9.9854 18.7998 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 78 I -0.1004 5.7857 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 79 ° -0.7832 12.0301 12.0301 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 80 K 0.0580 28.1765 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 81 H -0.0047 29.5489 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 82 q 10.9347 26.7567 43.0439 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 83 & -0.4093 34.4079 42.9260 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 84 ’ -0.8970 9.7632 17.1929 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 85 [ -1.4075 12.9561 55.1777 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 86 - 22.7053 12.1338 5.1628 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 87 Y 0.2858 32.4239 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 88 Q -0.2284 40.0054 50.6958 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 89 " -0.8511 14.8217 10.9485 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 90 ! -0.6017 8.5779 42.9260 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 91 x 11.4591 29.1853 30.3706 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 92 ) -0.5518 11.8887 54.4968 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 93 = 17.2185 23.7632 13.5993 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 94 + 11.4648 23.5040 23.5040 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 95 X 0.0130 32.3782 42.0000 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 96 » 17.3720 21.2303 15.5254 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 97 ' -0.4312 5.1628 10.9485 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 98 ¢ 6.9351 20.2901 39.0664 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 99 Z 0.2123 26.6523 41.7778 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 100 > 11.7171 20.7117 23.6008 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 101 ® 3.8915 38.2219 38.2219 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 102 © 3.4419 38.2219 38.2219 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 103 ] -1.2565 12.9561 55.1777 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 104 é -3.9006 28.1414 46.1769 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 105 z 11.4975 25.2078 30.3706 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 106 _ 45.6343 30.3706 3.7781 -Trebuchet_MS.ttf 99 Z 26.6523 41.7778 107 ¥ 0.0337 32.2017 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 1 t -8.8609 20.0679 39.1479 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 2 h -13.0719 24.5269 43.1853 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 3 a -1.1338 25.7702 31.4731 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 4 n -1.0822 24.5269 31.0515 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 5 P -12.0950 25.2665 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 6 o -1.1450 27.8006 31.4731 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 7 e -0.9868 28.1414 31.4731 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 8 : -1.2717 8.5779 31.4731 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 9 r -1.0713 18.3782 31.0515 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 10 l -12.9286 10.7263 43.6069 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 11 i -11.6384 10.9855 41.8006 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 12 1 -11.9680 14.1414 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 13 | -10.0717 4.8826 48.1487 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 14 N -11.9014 28.7266 42.1994 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 15 f -13.2483 19.9642 43.1853 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 16 g -2.4080 25.2287 44.2292 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 17 d -13.3421 26.6153 43.6069 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 18 W -11.7940 48.0809 42.1994 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 19 s -0.9952 19.7857 31.4731 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 20 c -1.1809 25.2078 31.4731 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 21 u -0.3227 24.9855 30.7922 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 22 3 -12.0859 23.3416 42.4217 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 23 ~ 9.0077 20.6080 6.1487 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 24 # -11.9309 30.9707 42.4217 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 25 O -12.0750 34.4666 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 26 ` -15.5531 10.2447 9.3996 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 27 @ -8.1475 39.0664 41.7999 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 28 F -12.0052 25.7708 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 29 S -12.1319 23.5638 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 30 p -1.2347 26.7339 43.0439 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 31 “ -12.6910 22.5779 17.1929 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 32 % -11.9906 31.3564 42.4217 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 33 £ -12.2040 25.4300 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 34 . 21.8416 8.5779 8.5779 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 35 2 -11.9299 25.3115 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 36 5 -12.0558 23.7625 42.4217 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 37 m -0.9941 41.1197 31.0515 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 38 V -11.8721 32.7998 42.1994 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 39 6 -12.1414 25.7708 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 40 w -0.5468 43.4311 30.7922 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 41 T -11.7073 32.4239 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 42 M -11.7458 41.3412 42.1994 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 43 G -12.1682 32.7998 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 44 b -13.0284 26.7339 43.6069 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 45 9 -12.2611 25.5714 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 46 ; -1.2721 9.9854 41.2734 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 47 D -11.9371 29.3267 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 48 L -12.0989 23.7632 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 49 y -0.3717 29.1853 42.3630 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 50 ‘ -12.9151 9.7632 17.1929 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 51 \ -12.1326 20.5722 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 52 R -12.1342 29.1853 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 53 < -0.1230 20.7117 23.6008 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 54 4 -12.0511 28.0000 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 55 8 -12.0093 25.5714 42.4217 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 56 0 -11.8051 26.8974 42.4217 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 57 A -12.1400 34.1037 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 58 E -12.1021 24.9485 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 59 B -11.8392 26.5555 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 60 v -0.5936 28.3630 30.7922 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 61 k -13.1817 25.9116 43.1853 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 62 J -11.9225 21.5692 42.1994 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 63 U -11.4863 29.2897 42.4587 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 64 j -11.8636 15.1853 53.7930 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 65 ( -12.6669 11.8887 54.4968 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 66 7 -12.2639 26.7339 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 67 § -12.1487 22.3934 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 68 $ -16.3608 23.5638 53.2658 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 69 € -12.2019 28.8433 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 70 / -11.8069 20.9939 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 71 C -11.8718 30.2298 42.6809 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 72 * -12.4423 18.5997 17.5559 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 73 ” -12.7108 22.9416 17.1929 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 74 ? -12.3244 18.7418 42.9260 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 75 { -12.8169 19.6443 54.6733 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 76 } -12.6801 19.6443 54.6733 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 77 , 21.5069 9.9854 18.7998 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 78 I -11.8818 5.7857 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 79 ° -12.7071 12.0301 12.0301 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 80 K -11.6655 28.1765 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 81 H -11.9758 29.5489 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 82 q -1.2364 26.7567 43.0439 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 83 & -12.6977 34.4079 42.9260 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 84 ’ -12.7218 9.7632 17.1929 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 85 [ -13.3546 12.9561 55.1777 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 86 - 10.7553 12.1338 5.1628 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 87 Y -11.9501 32.4239 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 88 Q -12.2159 40.0054 50.6958 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 89 " -12.6215 14.8217 10.9485 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 90 ! -12.6612 8.5779 42.9260 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 91 x -0.4650 29.1853 30.3706 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 92 ) -12.4306 11.8887 54.4968 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 93 = 5.4027 23.7632 13.5993 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 94 + -0.2926 23.5040 23.5040 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 95 X -11.8758 32.3782 42.0000 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 96 » 5.0804 21.2303 15.5254 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 97 ' -12.5450 5.1628 10.9485 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 98 ¢ -5.0362 20.2901 39.0664 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 99 Z -11.8659 26.6523 41.7778 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 100 > -0.1274 20.7117 23.6008 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 101 ® -8.2730 38.2219 38.2219 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 102 © -8.4586 38.2219 38.2219 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 103 ] -13.2125 12.9561 55.1777 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 104 é -16.0756 28.1414 46.1769 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 105 z -0.1808 25.2078 30.3706 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 106 _ 33.3003 30.3706 3.7781 -Trebuchet_MS.ttf 100 > 20.7117 23.6008 107 ¥ -11.7374 32.2017 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 1 t -0.2982 20.0679 39.1479 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 2 h -5.0051 24.5269 43.1853 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 3 a 6.9686 25.7702 31.4731 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 4 n 7.2200 24.5269 31.0515 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 5 P -4.0562 25.2665 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 6 o 7.3128 27.8006 31.4731 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 7 e 7.0499 28.1414 31.4731 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 8 : 7.4832 8.5779 31.4731 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 9 r 7.1225 18.3782 31.0515 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 10 l -4.9300 10.7263 43.6069 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 11 i -3.2344 10.9855 41.8006 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 12 1 -3.7795 14.1414 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 13 | -2.1999 4.8826 48.1487 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 14 N -3.5545 28.7266 42.1994 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 15 f -4.7039 19.9642 43.1853 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 16 g 6.3602 25.2287 44.2292 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 17 d -4.8179 26.6153 43.6069 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 18 W -3.8984 48.0809 42.1994 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 19 s 7.3481 19.7857 31.4731 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 20 c 7.0372 25.2078 31.4731 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 21 u 8.0283 24.9855 30.7922 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 22 3 -3.8536 23.3416 42.4217 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 23 ~ 16.9943 20.6080 6.1487 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 24 # -3.7628 30.9707 42.4217 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 25 O -4.1162 34.4666 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 26 ` -7.7260 10.2447 9.3996 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 27 @ 0.2339 39.0664 41.7999 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 28 F -3.5394 25.7708 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 29 S -4.0429 23.5638 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 30 p 7.1392 26.7339 43.0439 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 31 “ -4.4442 22.5779 17.1929 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 32 % -3.7187 31.3564 42.4217 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 33 £ -3.7332 25.4300 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 34 . 29.8709 8.5779 8.5779 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 35 2 -3.6848 25.3115 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 36 5 -3.7081 23.7625 42.4217 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 37 m 7.2099 41.1197 31.0515 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 38 V -3.6593 32.7998 42.1994 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 39 6 -3.8497 25.7708 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 40 w 7.9435 43.4311 30.7922 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 41 T -3.8103 32.4239 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 42 M -3.7610 41.3412 42.1994 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 43 G -3.8057 32.7998 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 44 b -4.6687 26.7339 43.6069 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 45 9 -3.9698 25.5714 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 46 ; 7.2788 9.9854 41.2734 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 47 D -3.9353 29.3267 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 48 L -3.7601 23.7632 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 49 y 7.9790 29.1853 42.3630 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 50 ‘ -4.2115 9.7632 17.1929 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 51 \ -3.5964 20.5722 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 52 R -3.5941 29.1853 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 53 < 8.3260 20.7117 23.6008 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 54 4 -3.5695 28.0000 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 55 8 -3.4022 25.5714 42.4217 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 56 0 -3.5883 26.8974 42.4217 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 57 A -3.9069 34.1037 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 58 E -3.4376 24.9485 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 59 B -3.7608 26.5555 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 60 v 7.7484 28.3630 30.7922 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 61 k -4.7486 25.9116 43.1853 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 62 J -3.5065 21.5692 42.1994 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 63 U -3.5486 29.2897 42.4587 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 64 j -3.6185 15.1853 53.7930 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 65 ( -4.4639 11.8887 54.4968 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 66 7 -3.8174 26.7339 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 67 § -3.6488 22.3934 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 68 $ -8.0294 23.5638 53.2658 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 69 € -3.9218 28.8433 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 70 / -3.8077 20.9939 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 71 C -3.7777 30.2298 42.6809 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 72 * -4.2658 18.5997 17.5559 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 73 ” -4.3433 22.9416 17.1929 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 74 ? -4.4617 18.7418 42.9260 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 75 { -4.5798 19.6443 54.6733 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 76 } -4.4446 19.6443 54.6733 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 77 , 29.8126 9.9854 18.7998 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 78 I -3.6261 5.7857 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 79 ° -4.3206 12.0301 12.0301 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 80 K -3.3516 28.1765 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 81 H -3.5616 29.5489 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 82 q 7.1175 26.7567 43.0439 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 83 & -4.1327 34.4079 42.9260 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 84 ’ -4.4663 9.7632 17.1929 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 85 [ -4.7770 12.9561 55.1777 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 86 - 18.9009 12.1338 5.1628 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 87 Y -3.3360 32.4239 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 88 Q -3.9469 40.0054 50.6958 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 89 " -4.4269 14.8217 10.9485 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 90 ! -4.7182 8.5779 42.9260 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 91 x 8.0871 29.1853 30.3706 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 92 ) -4.0018 11.8887 54.4968 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 93 = 13.4312 23.7632 13.5993 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 94 + 7.9045 23.5040 23.5040 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 95 X -3.7981 32.3782 42.0000 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 96 » 13.4623 21.2303 15.5254 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 97 ' -4.4380 5.1628 10.9485 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 98 ¢ 3.2632 20.2901 39.0664 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 99 Z -3.8077 26.6523 41.7778 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 100 > 8.4502 20.7117 23.6008 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 101 ® 0.5213 38.2219 38.2219 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 102 © 0.0727 38.2219 38.2219 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 103 ] -5.1201 12.9561 55.1777 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 104 é -7.6354 28.1414 46.1769 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 105 z 7.9874 25.2078 30.3706 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 106 _ 41.9390 30.3706 3.7781 -Trebuchet_MS.ttf 101 ® 38.2219 38.2219 107 ¥ -3.4061 32.2017 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 1 t -0.6469 20.0679 39.1479 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 2 h -4.7737 24.5269 43.1853 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 3 a 7.4905 25.7702 31.4731 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 4 n 7.4084 24.5269 31.0515 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 5 P -3.6997 25.2665 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 6 o 7.2683 27.8006 31.4731 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 7 e 7.3008 28.1414 31.4731 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 8 : 7.0292 8.5779 31.4731 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 9 r 6.9970 18.3782 31.0515 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 10 l -5.0844 10.7263 43.6069 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 11 i -4.0825 10.9855 41.8006 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 12 1 -3.5767 14.1414 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 13 | -1.5236 4.8826 48.1487 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 14 N -3.5063 28.7266 42.1994 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 15 f -4.8418 19.9642 43.1853 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 16 g 6.1672 25.2287 44.2292 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 17 d -5.1227 26.6153 43.6069 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 18 W -3.5768 48.0809 42.1994 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 19 s 7.1244 19.7857 31.4731 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 20 c 7.3005 25.2078 31.4731 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 21 u 7.8736 24.9855 30.7922 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 22 3 -3.5752 23.3416 42.4217 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 23 ~ 17.0366 20.6080 6.1487 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 24 # -3.8448 30.9707 42.4217 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 25 O -3.8096 34.4666 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 26 ` -7.8141 10.2447 9.3996 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 27 @ 0.0858 39.0664 41.7999 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 28 F -3.6211 25.7708 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 29 S -3.3201 23.5638 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 30 p 7.3647 26.7339 43.0439 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 31 “ -4.5079 22.5779 17.1929 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 32 % -3.7360 31.3564 42.4217 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 33 £ -3.6904 25.4300 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 34 . 29.8903 8.5779 8.5779 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 35 2 -3.4541 25.3115 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 36 5 -3.9525 23.7625 42.4217 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 37 m 7.3085 41.1197 31.0515 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 38 V -3.1583 32.7998 42.1994 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 39 6 -3.8583 25.7708 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 40 w 7.5241 43.4311 30.7922 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 41 T -3.3618 32.4239 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 42 M -3.8167 41.3412 42.1994 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 43 G -3.5806 32.7998 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 44 b -4.8365 26.7339 43.6069 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 45 9 -3.6878 25.5714 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 46 ; 7.0926 9.9854 41.2734 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 47 D -3.4701 29.3267 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 48 L -3.5813 23.7632 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 49 y 7.4017 29.1853 42.3630 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 50 ‘ -4.6738 9.7632 17.1929 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 51 \ -3.5139 20.5722 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 52 R -3.4075 29.1853 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 53 < 8.1447 20.7117 23.6008 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 54 4 -3.8789 28.0000 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 55 8 -3.9443 25.5714 42.4217 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 56 0 -4.0741 26.8974 42.4217 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 57 A -3.6046 34.1037 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 58 E -3.5386 24.9485 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 59 B -3.5553 26.5555 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 60 v 7.9363 28.3630 30.7922 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 61 k -4.9525 25.9116 43.1853 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 62 J -3.5154 21.5692 42.1994 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 63 U -3.4209 29.2897 42.4587 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 64 j -3.8794 15.1853 53.7930 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 65 ( -4.1562 11.8887 54.4968 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 66 7 -4.0530 26.7339 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 67 § -3.6939 22.3934 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 68 $ -8.0480 23.5638 53.2658 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 69 € -3.5721 28.8433 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 70 / -3.9572 20.9939 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 71 C -4.0632 30.2298 42.6809 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 72 * -4.4043 18.5997 17.5559 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 73 ” -4.3452 22.9416 17.1929 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 74 ? -4.5553 18.7418 42.9260 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 75 { -4.7925 19.6443 54.6733 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 76 } -4.5094 19.6443 54.6733 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 77 , 29.6724 9.9854 18.7998 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 78 I -3.8417 5.7857 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 79 ° -4.3020 12.0301 12.0301 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 80 K -3.6554 28.1765 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 81 H -3.6944 29.5489 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 82 q 7.0371 26.7567 43.0439 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 83 & -4.2575 34.4079 42.9260 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 84 ’ -4.3712 9.7632 17.1929 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 85 [ -4.7881 12.9561 55.1777 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 86 - 18.9596 12.1338 5.1628 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 87 Y -3.3503 32.4239 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 88 Q -3.8417 40.0054 50.6958 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 89 " -4.2716 14.8217 10.9485 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 90 ! -4.1578 8.5779 42.9260 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 91 x 7.9243 29.1853 30.3706 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 92 ) -4.1775 11.8887 54.4968 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 93 = 13.4377 23.7632 13.5993 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 94 + 8.1330 23.5040 23.5040 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 95 X -3.7974 32.3782 42.0000 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 96 » 13.4673 21.2303 15.5254 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 97 ' -4.3405 5.1628 10.9485 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 98 ¢ 3.2929 20.2901 39.0664 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 99 Z -3.7466 26.6523 41.7778 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 100 > 8.3248 20.7117 23.6008 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 101 ® -0.1398 38.2219 38.2219 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 102 © -0.1896 38.2219 38.2219 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 103 ] -4.9022 12.9561 55.1777 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 104 é -7.2895 28.1414 46.1769 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 105 z 7.7476 25.2078 30.3706 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 106 _ 42.2191 30.3706 3.7781 -Trebuchet_MS.ttf 102 © 38.2219 38.2219 107 ¥ -3.4575 32.2017 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 1 t 4.3759 20.0679 39.1479 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 2 h -0.0206 24.5269 43.1853 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 3 a 12.0159 25.7702 31.4731 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 4 n 12.0371 24.5269 31.0515 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 5 P 1.2256 25.2665 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 6 o 12.1828 27.8006 31.4731 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 7 e 12.2289 28.1414 31.4731 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 8 : 12.3206 8.5779 31.4731 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 9 r 12.0608 18.3782 31.0515 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 10 l 0.2220 10.7263 43.6069 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 11 i 1.3361 10.9855 41.8006 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 12 1 1.2876 14.1414 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 13 | 2.9256 4.8826 48.1487 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 14 N 1.5458 28.7266 42.1994 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 15 f -0.1782 19.9642 43.1853 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 16 g 11.1068 25.2287 44.2292 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 17 d 0.0903 26.6153 43.6069 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 18 W 1.5174 48.0809 42.1994 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 19 s 12.1411 19.7857 31.4731 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 20 c 12.3251 25.2078 31.4731 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 21 u 12.5984 24.9855 30.7922 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 22 3 1.2655 23.3416 42.4217 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 23 ~ 22.1890 20.6080 6.1487 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 24 # 1.3954 30.9707 42.4217 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 25 O 1.0027 34.4666 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 26 ` -2.7021 10.2447 9.3996 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 27 @ 4.8875 39.0664 41.7999 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 28 F 1.3063 25.7708 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 29 S 1.3515 23.5638 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 30 p 12.0567 26.7339 43.0439 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 31 “ 0.4838 22.5779 17.1929 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 32 % 1.2894 31.3564 42.4217 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 33 £ 1.3054 25.4300 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 34 . 35.1411 8.5779 8.5779 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 35 2 1.1493 25.3115 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 36 5 1.2712 23.7625 42.4217 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 37 m 12.4288 41.1197 31.0515 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 38 V 1.3186 32.7998 42.1994 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 39 6 1.0964 25.7708 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 40 w 12.9079 43.4311 30.7922 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 41 T 1.3186 32.4239 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 42 M 1.4075 41.3412 42.1994 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 43 G 1.1853 32.7998 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 44 b -0.2528 26.7339 43.6069 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 45 9 0.9662 25.5714 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 46 ; 12.0660 9.9854 41.2734 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 47 D 0.9394 29.3267 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 48 L 1.4641 23.7632 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 49 y 12.7316 29.1853 42.3630 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 50 ‘ 0.5893 9.7632 17.1929 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 51 \ 1.1055 20.5722 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 52 R 1.5721 29.1853 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 53 < 13.1334 20.7117 23.6008 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 54 4 1.1853 28.0000 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 55 8 1.0936 25.5714 42.4217 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 56 0 1.1614 26.8974 42.4217 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 57 A 0.9973 34.1037 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 58 E 1.1923 24.9485 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 59 B 1.3601 26.5555 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 60 v 12.7345 28.3630 30.7922 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 61 k 0.2373 25.9116 43.1853 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 62 J 1.3841 21.5692 42.1994 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 63 U 1.4986 29.2897 42.4587 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 64 j 1.3789 15.1853 53.7930 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 65 ( 0.7078 11.8887 54.4968 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 66 7 0.9600 26.7339 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 67 § 1.3968 22.3934 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 68 $ -3.1789 23.5638 53.2658 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 69 € 1.0032 28.8433 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 70 / 1.2212 20.9939 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 71 C 1.3507 30.2298 42.6809 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 72 * 0.5931 18.5997 17.5559 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 73 ” 0.6764 22.9416 17.1929 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 74 ? 0.6193 18.7418 42.9260 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 75 { 0.5033 19.6443 54.6733 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 76 } 0.3785 19.6443 54.6733 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 77 , 34.5003 9.9854 18.7998 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 78 I 1.5664 5.7857 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 79 ° 0.7461 12.0301 12.0301 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 80 K 1.2461 28.1765 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 81 H 1.3408 29.5489 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 82 q 12.1789 26.7567 43.0439 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 83 & 0.5474 34.4079 42.9260 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 84 ’ 0.6217 9.7632 17.1929 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 85 [ 0.0870 12.9561 55.1777 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 86 - 24.3252 12.1338 5.1628 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 87 Y 1.2806 32.4239 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 88 Q 1.1631 40.0054 50.6958 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 89 " 0.7241 14.8217 10.9485 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 90 ! 0.7651 8.5779 42.9260 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 91 x 12.8921 29.1853 30.3706 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 92 ) 0.2840 11.8887 54.4968 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 93 = 18.4006 23.7632 13.5993 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 94 + 12.8562 23.5040 23.5040 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 95 X 1.0013 32.3782 42.0000 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 96 » 18.6443 21.2303 15.5254 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 97 ' 0.3826 5.1628 10.9485 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 98 ¢ 8.4057 20.2901 39.0664 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 99 Z 1.4214 26.6523 41.7778 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 100 > 13.3161 20.7117 23.6008 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 101 ® 5.0743 38.2219 38.2219 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 102 © 4.7942 38.2219 38.2219 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 103 ] 0.0462 12.9561 55.1777 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 104 é -2.4398 28.1414 46.1769 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 105 z 12.8478 25.2078 30.3706 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 106 _ 46.8939 30.3706 3.7781 -Trebuchet_MS.ttf 103 ] 12.9561 55.1777 107 ¥ 1.4964 32.2017 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 1 t 7.0761 20.0679 39.1479 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 2 h 2.5081 24.5269 43.1853 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 3 a 14.8297 25.7702 31.4731 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 4 n 14.8229 24.5269 31.0515 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 5 P 3.5764 25.2665 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 6 o 14.7875 27.8006 31.4731 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 7 e 14.7408 28.1414 31.4731 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 8 : 14.7860 8.5779 31.4731 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 9 r 14.6777 18.3782 31.0515 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 10 l 2.5432 10.7263 43.6069 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 11 i 4.0593 10.9855 41.8006 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 12 1 3.5448 14.1414 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 13 | 5.5903 4.8826 48.1487 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 14 N 4.1662 28.7266 42.1994 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 15 f 2.5205 19.9642 43.1853 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 16 g 13.5380 25.2287 44.2292 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 17 d 2.6455 26.6153 43.6069 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 18 W 3.9059 48.0809 42.1994 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 19 s 14.7186 19.7857 31.4731 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 20 c 14.6196 25.2078 31.4731 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 21 u 15.7298 24.9855 30.7922 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 22 3 3.3595 23.3416 42.4217 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 23 ~ 24.5327 20.6080 6.1487 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 24 # 3.7524 30.9707 42.4217 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 25 O 3.5924 34.4666 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 26 ` -0.0654 10.2447 9.3996 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 27 @ 7.7168 39.0664 41.7999 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 28 F 3.8905 25.7708 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 29 S 3.8668 23.5638 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 30 p 14.5059 26.7339 43.0439 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 31 “ 3.1051 22.5779 17.1929 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 32 % 3.6675 31.3564 42.4217 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 33 £ 3.4751 25.4300 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 34 . 37.7521 8.5779 8.5779 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 35 2 3.7231 25.3115 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 36 5 3.4810 23.7625 42.4217 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 37 m 14.7908 41.1197 31.0515 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 38 V 3.8977 32.7998 42.1994 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 39 6 3.8014 25.7708 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 40 w 15.4856 43.4311 30.7922 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 41 T 4.0695 32.4239 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 42 M 3.7152 41.3412 42.1994 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 43 G 3.8532 32.7998 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 44 b 2.5716 26.7339 43.6069 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 45 9 3.6943 25.5714 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 46 ; 14.7233 9.9854 41.2734 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 47 D 3.7999 29.3267 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 48 L 3.8301 23.7632 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 49 y 15.1938 29.1853 42.3630 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 50 ‘ 3.0806 9.7632 17.1929 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 51 \ 3.8384 20.5722 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 52 R 3.7172 29.1853 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 53 < 16.0335 20.7117 23.6008 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 54 4 3.7553 28.0000 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 55 8 3.5489 25.5714 42.4217 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 56 0 3.4566 26.8974 42.4217 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 57 A 3.7183 34.1037 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 58 E 3.9034 24.9485 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 59 B 3.6399 26.5555 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 60 v 15.4366 28.3630 30.7922 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 61 k 2.3537 25.9116 43.1853 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 62 J 4.1096 21.5692 42.1994 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 63 U 3.8767 29.2897 42.4587 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 64 j 4.1245 15.1853 53.7930 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 65 ( 3.3479 11.8887 54.4968 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 66 7 3.8428 26.7339 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 67 § 3.6636 22.3934 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 68 $ -0.5222 23.5638 53.2658 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 69 € 3.6721 28.8433 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 70 / 3.6030 20.9939 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 71 C 3.7520 30.2298 42.6809 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 72 * 3.3090 18.5997 17.5559 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 73 ” 3.0479 22.9416 17.1929 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 74 ? 3.1501 18.7418 42.9260 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 75 { 3.1485 19.6443 54.6733 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 76 } 3.3291 19.6443 54.6733 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 77 , 37.3034 9.9854 18.7998 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 78 I 4.0707 5.7857 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 79 ° 3.0851 12.0301 12.0301 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 80 K 3.8944 28.1765 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 81 H 4.0208 29.5489 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 82 q 14.7172 26.7567 43.0439 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 83 & 3.3873 34.4079 42.9260 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 84 ’ 2.9686 9.7632 17.1929 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 85 [ 2.4901 12.9561 55.1777 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 86 - 26.4531 12.1338 5.1628 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 87 Y 4.0885 32.4239 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 88 Q 3.7335 40.0054 50.6958 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 89 " 3.2941 14.8217 10.9485 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 90 ! 3.2571 8.5779 42.9260 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 91 x 15.2440 29.1853 30.3706 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 92 ) 3.3431 11.8887 54.4968 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 93 = 21.2537 23.7632 13.5993 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 94 + 15.7343 23.5040 23.5040 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 95 X 3.8726 32.3782 42.0000 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 96 » 20.8584 21.2303 15.5254 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 97 ' 3.4149 5.1628 10.9485 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 98 ¢ 10.8360 20.2901 39.0664 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 99 Z 3.8240 26.6523 41.7778 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 100 > 15.8877 20.7117 23.6008 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 101 ® 7.5186 38.2219 38.2219 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 102 © 7.6815 38.2219 38.2219 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 103 ] 2.8502 12.9561 55.1777 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 104 é -0.0861 28.1414 46.1769 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 105 z 15.1159 25.2078 30.3706 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 106 _ 49.5150 30.3706 3.7781 -Trebuchet_MS.ttf 104 é 28.1414 46.1769 107 ¥ 4.0977 32.2017 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 1 t -8.4079 20.0679 39.1479 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 2 h -12.8075 24.5269 43.1853 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 3 a -0.4349 25.7702 31.4731 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 4 n -0.3340 24.5269 31.0515 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 5 P -11.5287 25.2665 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 6 o -0.7992 27.8006 31.4731 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 7 e -0.6540 28.1414 31.4731 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 8 : -0.2470 8.5779 31.4731 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 9 r -0.6555 18.3782 31.0515 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 10 l -12.7534 10.7263 43.6069 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 11 i -11.1546 10.9855 41.8006 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 12 1 -11.8708 14.1414 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 13 | -9.7179 4.8826 48.1487 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 14 N -11.4381 28.7266 42.1994 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 15 f -12.5005 19.9642 43.1853 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 16 g -1.7073 25.2287 44.2292 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 17 d -12.8997 26.6153 43.6069 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 18 W -11.5878 48.0809 42.1994 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 19 s -0.5089 19.7857 31.4731 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 20 c -0.8169 25.2078 31.4731 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 21 u 0.1273 24.9855 30.7922 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 22 3 -11.3841 23.3416 42.4217 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 23 ~ 9.4667 20.6080 6.1487 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 24 # -11.6298 30.9707 42.4217 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 25 O -11.8790 34.4666 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 26 ` -15.2588 10.2447 9.3996 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 27 @ -7.7839 39.0664 41.7999 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 28 F -11.4105 25.7708 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 29 S -11.5971 23.5638 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 30 p -0.6246 26.7339 43.0439 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 31 “ -12.4082 22.5779 17.1929 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 32 % -11.3827 31.3564 42.4217 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 33 £ -11.7462 25.4300 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 34 . 22.3699 8.5779 8.5779 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 35 2 -11.4497 25.3115 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 36 5 -11.8522 23.7625 42.4217 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 37 m -0.6291 41.1197 31.0515 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 38 V -11.6188 32.7998 42.1994 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 39 6 -11.5197 25.7708 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 40 w -0.0965 43.4311 30.7922 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 41 T -11.0241 32.4239 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 42 M -11.3803 41.3412 42.1994 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 43 G -11.8547 32.7998 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 44 b -13.1597 26.7339 43.6069 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 45 9 -11.6885 25.5714 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 46 ; -0.3667 9.9854 41.2734 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 47 D -11.6161 29.3267 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 48 L -11.6210 23.7632 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 49 y 0.0951 29.1853 42.3630 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 50 ‘ -12.2124 9.7632 17.1929 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 51 \ -11.7923 20.5722 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 52 R -11.3652 29.1853 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 53 < 0.4640 20.7117 23.6008 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 54 4 -11.7496 28.0000 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 55 8 -11.7078 25.5714 42.4217 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 56 0 -11.7491 26.8974 42.4217 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 57 A -11.7877 34.1037 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 58 E -11.2319 24.9485 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 59 B -11.7178 26.5555 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 60 v 0.0965 28.3630 30.7922 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 61 k -12.6474 25.9116 43.1853 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 62 J -11.1909 21.5692 42.1994 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 63 U -11.3913 29.2897 42.4587 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 64 j -11.7754 15.1853 53.7930 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 65 ( -12.1007 11.8887 54.4968 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 66 7 -11.6988 26.7339 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 67 § -11.5426 22.3934 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 68 $ -15.7631 23.5638 53.2658 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 69 € -11.6885 28.8433 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 70 / -11.4412 20.9939 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 71 C -11.6607 30.2298 42.6809 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 72 * -12.2774 18.5997 17.5559 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 73 ” -12.4289 22.9416 17.1929 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 74 ? -12.5354 18.7418 42.9260 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 75 { -12.3338 19.6443 54.6733 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 76 } -12.4049 19.6443 54.6733 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 77 , 21.7586 9.9854 18.7998 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 78 I -11.1395 5.7857 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 79 ° -12.2093 12.0301 12.0301 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 80 K -11.5494 28.1765 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 81 H -11.2723 29.5489 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 82 q -0.7414 26.7567 43.0439 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 83 & -12.1910 34.4079 42.9260 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 84 ’ -12.1489 9.7632 17.1929 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 85 [ -12.7437 12.9561 55.1777 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 86 - 11.2549 12.1338 5.1628 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 87 Y -11.3285 32.4239 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 88 Q -11.3819 40.0054 50.6958 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 89 " -12.2937 14.8217 10.9485 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 90 ! -11.9708 8.5779 42.9260 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 91 x -0.2623 29.1853 30.3706 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 92 ) -12.0316 11.8887 54.4968 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 93 = 5.6600 23.7632 13.5993 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 94 + 0.2349 23.5040 23.5040 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 95 X -11.9553 32.3782 42.0000 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 96 » 5.5659 21.2303 15.5254 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 97 ' -12.0340 5.1628 10.9485 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 98 ¢ -4.5257 20.2901 39.0664 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 99 Z -11.4986 26.6523 41.7778 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 100 > 0.4797 20.7117 23.6008 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 101 ® -7.8070 38.2219 38.2219 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 102 © -7.7639 38.2219 38.2219 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 103 ] -12.7748 12.9561 55.1777 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 104 é -15.3093 28.1414 46.1769 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 105 z -0.1806 25.2078 30.3706 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 106 _ 34.0866 30.3706 3.7781 -Trebuchet_MS.ttf 105 z 25.2078 30.3706 107 ¥ -11.6013 32.2017 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 1 t -42.8274 20.0679 39.1479 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 2 h -47.4427 24.5269 43.1853 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 3 a -34.7864 25.7702 31.4731 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 4 n -34.7008 24.5269 31.0515 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 5 P -45.7472 25.2665 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 6 o -34.7403 27.8006 31.4731 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 7 e -35.0848 28.1414 31.4731 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 8 : -34.7989 8.5779 31.4731 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 9 r -34.7883 18.3782 31.0515 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 10 l -46.9115 10.7263 43.6069 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 11 i -45.6057 10.9855 41.8006 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 12 1 -45.9576 14.1414 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 13 | -44.0537 4.8826 48.1487 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 14 N -45.6728 28.7266 42.1994 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 15 f -47.1334 19.9642 43.1853 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 16 g -35.9460 25.2287 44.2292 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 17 d -46.9605 26.6153 43.6069 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 18 W -45.4022 48.0809 42.1994 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 19 s -34.8012 19.7857 31.4731 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 20 c -35.1275 25.2078 31.4731 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 21 u -34.0315 24.9855 30.7922 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 22 3 -45.7468 23.3416 42.4217 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 23 ~ -25.3266 20.6080 6.1487 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 24 # -45.3945 30.9707 42.4217 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 25 O -45.8818 34.4666 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 26 ` -49.4954 10.2447 9.3996 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 27 @ -41.8104 39.0664 41.7999 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 28 F -45.6259 25.7708 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 29 S -45.9842 23.5638 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 30 p -34.8663 26.7339 43.0439 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 31 “ -46.5168 22.5779 17.1929 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 32 % -45.8203 31.3564 42.4217 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 33 £ -45.6569 25.4300 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 34 . -11.7671 8.5779 8.5779 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 35 2 -45.8252 25.3115 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 36 5 -45.6108 23.7625 42.4217 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 37 m -34.5258 41.1197 31.0515 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 38 V -45.7250 32.7998 42.1994 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 39 6 -45.7661 25.7708 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 40 w -34.2847 43.4311 30.7922 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 41 T -45.3806 32.4239 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 42 M -45.4785 41.3412 42.1994 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 43 G -45.8670 32.7998 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 44 b -47.1487 26.7339 43.6069 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 45 9 -45.6802 25.5714 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 46 ; -34.4076 9.9854 41.2734 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 47 D -45.9058 29.3267 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 48 L -45.3473 23.7632 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 49 y -34.1578 29.1853 42.3630 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 50 ‘ -46.7938 9.7632 17.1929 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 51 \ -45.4497 20.5722 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 52 R -45.9339 29.1853 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 53 < -33.7407 20.7117 23.6008 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 54 4 -45.7719 28.0000 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 55 8 -45.8848 25.5714 42.4217 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 56 0 -45.8299 26.8974 42.4217 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 57 A -45.5989 34.1037 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 58 E -45.6313 24.9485 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 59 B -45.5949 26.5555 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 60 v -34.1548 28.3630 30.7922 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 61 k -47.0685 25.9116 43.1853 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 62 J -45.6661 21.5692 42.1994 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 63 U -45.3382 29.2897 42.4587 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 64 j -45.6943 15.1853 53.7930 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 65 ( -46.0600 11.8887 54.4968 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 66 7 -45.7147 26.7339 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 67 § -45.7073 22.3934 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 68 $ -50.0874 23.5638 53.2658 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 69 € -45.8035 28.8433 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 70 / -45.7158 20.9939 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 71 C -45.5543 30.2298 42.6809 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 72 * -46.4682 18.5997 17.5559 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 73 ” -46.0991 22.9416 17.1929 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 74 ? -46.2964 18.7418 42.9260 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 75 { -46.1146 19.6443 54.6733 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 76 } -46.3331 19.6443 54.6733 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 77 , -12.4552 9.9854 18.7998 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 78 I -45.5674 5.7857 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 79 ° -46.4822 12.0301 12.0301 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 80 K -45.5001 28.1765 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 81 H -45.4194 29.5489 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 82 q -34.6448 26.7567 43.0439 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 83 & -46.0832 34.4079 42.9260 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 84 ’ -46.4415 9.7632 17.1929 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 85 [ -46.7841 12.9561 55.1777 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 86 - -22.6522 12.1338 5.1628 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 87 Y -45.6124 32.4239 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 88 Q -45.7393 40.0054 50.6958 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 89 " -46.1965 14.8217 10.9485 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 90 ! -45.8833 8.5779 42.9260 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 91 x -34.3162 29.1853 30.3706 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 92 ) -46.0422 11.8887 54.4968 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 93 = -28.5896 23.7632 13.5993 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 94 + -33.6931 23.5040 23.5040 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 95 X -45.8000 32.3782 42.0000 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 96 » -28.1917 21.2303 15.5254 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 97 ' -46.3506 5.1628 10.9485 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 98 ¢ -38.6243 20.2901 39.0664 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 99 Z -45.6197 26.6523 41.7778 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 100 > -33.7303 20.7117 23.6008 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 101 ® -42.0457 38.2219 38.2219 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 102 © -41.8874 38.2219 38.2219 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 103 ] -47.0167 12.9561 55.1777 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 104 é -49.7159 28.1414 46.1769 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 105 z -34.1429 25.2078 30.3706 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 106 _ -0.2403 30.3706 3.7781 -Trebuchet_MS.ttf 106 _ 30.3706 3.7781 107 ¥ -45.7401 32.2017 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 1 t 3.1208 20.0679 39.1479 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 2 h -1.4878 24.5269 43.1853 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 3 a 10.5576 25.7702 31.4731 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 4 n 10.8657 24.5269 31.0515 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 5 P -0.0611 25.2665 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 6 o 10.8417 27.8006 31.4731 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 7 e 10.6036 28.1414 31.4731 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 8 : 10.7855 8.5779 31.4731 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 9 r 10.5932 18.3782 31.0515 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 10 l -1.4641 10.7263 43.6069 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 11 i -0.2904 10.9855 41.8006 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 12 1 0.1166 14.1414 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 13 | 1.6721 4.8826 48.1487 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 14 N 0.1154 28.7266 42.1994 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 15 f -1.6712 19.9642 43.1853 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 16 g 9.3980 25.2287 44.2292 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 17 d -1.1558 26.6153 43.6069 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 18 W -0.2514 48.0809 42.1994 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 19 s 10.9117 19.7857 31.4731 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 20 c 10.8997 25.2078 31.4731 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 21 u 11.6547 24.9855 30.7922 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 22 3 0.0920 23.3416 42.4217 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 23 ~ 20.1995 20.6080 6.1487 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 24 # -0.3884 30.9707 42.4217 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 25 O -0.3023 34.4666 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 26 ` -3.7526 10.2447 9.3996 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 27 @ 3.6529 39.0664 41.7999 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 28 F -0.1506 25.7708 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 29 S -0.3884 23.5638 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 30 p 10.7104 26.7339 43.0439 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 31 “ -0.8820 22.5779 17.1929 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 32 % -0.2553 31.3564 42.4217 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 33 £ -0.3292 25.4300 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 34 . 33.5740 8.5779 8.5779 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 35 2 -0.1609 25.3115 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 36 5 -0.3833 23.7625 42.4217 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 37 m 10.8442 41.1197 31.0515 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 38 V 0.1052 32.7998 42.1994 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 39 6 -0.1584 25.7708 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 40 w 11.3697 43.4311 30.7922 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 41 T -0.0153 32.4239 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 42 M -0.1111 41.3412 42.1994 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 43 G 0.0121 32.7998 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 44 b -1.6698 26.7339 43.6069 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 45 9 -0.1346 25.5714 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 46 ; 10.8787 9.9854 41.2734 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 47 D -0.2774 29.3267 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 48 L 0.0052 23.7632 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 49 y 11.6013 29.1853 42.3630 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 50 ‘ -1.1289 9.7632 17.1929 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 51 \ -0.4090 20.5722 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 52 R -0.2041 29.1853 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 53 < 12.0538 20.7117 23.6008 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 54 4 -0.1289 28.0000 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 55 8 -0.3673 25.5714 42.4217 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 56 0 -0.1443 26.8974 42.4217 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 57 A -0.3884 34.1037 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 58 E 0.0262 24.9485 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 59 B -0.2028 26.5555 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 60 v 11.2581 28.3630 30.7922 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 61 k -1.3807 25.9116 43.1853 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 62 J -0.1154 21.5692 42.1994 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 63 U -0.0768 29.2897 42.4587 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 64 j -0.3113 15.1853 53.7930 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 65 ( -1.0690 11.8887 54.4968 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 66 7 -0.2444 26.7339 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 67 § -0.4767 22.3934 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 68 $ -4.2586 23.5638 53.2658 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 69 € -0.1333 28.8433 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 70 / -0.5273 20.9939 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 71 C -0.0338 30.2298 42.6809 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 72 * -0.6262 18.5997 17.5559 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 73 ” -1.0973 22.9416 17.1929 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 74 ? -0.5532 18.7418 42.9260 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 75 { -0.9834 19.6443 54.6733 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 76 } -1.2006 19.6443 54.6733 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 77 , 33.4575 9.9854 18.7998 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 78 I -0.0850 5.7857 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 79 ° -0.6229 12.0301 12.0301 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 80 K 0.0831 28.1765 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 81 H -0.1825 29.5489 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 82 q 10.9117 26.7567 43.0439 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 83 & -0.7468 34.4079 42.9260 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 84 ’ -1.0588 9.7632 17.1929 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 85 [ -1.3500 12.9561 55.1777 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 86 - 22.6092 12.1338 5.1628 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 87 Y -0.0254 32.4239 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 88 Q -0.4995 40.0054 50.6958 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 89 " -0.6511 14.8217 10.9485 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 90 ! -0.5541 8.5779 42.9260 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 91 x 11.2707 29.1853 30.3706 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 92 ) -0.7386 11.8887 54.4968 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 93 = 16.7617 23.7632 13.5993 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 94 + 11.6176 23.5040 23.5040 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 95 X -0.4846 32.3782 42.0000 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 96 » 17.1302 21.2303 15.5254 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 97 ' -0.8612 5.1628 10.9485 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 98 ¢ 7.1368 20.2901 39.0664 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 99 Z 0.0191 26.6523 41.7778 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 100 > 12.0201 20.7117 23.6008 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 101 ® 3.7663 38.2219 38.2219 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 102 © 3.7542 38.2219 38.2219 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 103 ] -0.9771 12.9561 55.1777 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 104 é -3.8894 28.1414 46.1769 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 105 z 11.3093 25.2078 30.3706 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 106 _ 45.5646 30.3706 3.7781 -Trebuchet_MS.ttf 107 ¥ 32.2017 41.7778 107 ¥ -0.1644 32.2017 41.7778 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 1 t 0.0418 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 2 h -4.0522 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 3 a 8.7000 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 4 n 8.7277 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 5 P -2.7283 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 6 o 8.4258 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 7 e 8.5499 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 8 : 7.5908 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 9 r 8.8343 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 10 l -3.6564 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 11 i -3.6247 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 12 1 -2.7464 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 13 | -4.0446 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 14 N -2.4145 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 15 f -4.0519 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 16 g 6.8985 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 17 d -4.0743 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 18 W -2.6604 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 19 s 8.0822 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 20 c 8.4186 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 21 u 8.6904 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 22 3 -2.6519 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 23 ~ 18.4784 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 24 # -2.7684 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 25 O -2.9298 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 26 ` -3.8819 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 27 @ 1.4644 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 28 F -2.3760 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 29 S -2.9891 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 30 p 8.9505 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 31 “ -3.3949 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 32 % -2.7408 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 33 £ -3.0090 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 34 . 30.5244 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 35 2 -2.6987 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 36 5 -2.6489 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 37 m 8.3729 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 38 V -2.3943 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 39 6 -2.8874 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 40 w 9.0272 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 41 T -2.6086 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 42 M -2.5049 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 43 G -2.7304 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 44 b -3.7874 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 45 9 -2.8902 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 46 ; 8.0990 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 47 D -2.6059 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 48 L -2.6277 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 49 y 8.8243 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 50 ‘ -3.3545 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 51 \ -2.5271 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 52 R -2.6440 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 53 < 7.0531 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 54 4 -2.6428 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 55 8 -2.6915 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 56 0 -2.5674 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 57 A -2.9374 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 58 E -2.6592 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 59 B -2.9077 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 60 v 9.0286 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 61 k -3.9446 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 62 J -2.7979 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 63 U -2.5654 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 64 j -3.7636 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 65 ( -3.9000 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 66 7 -2.7345 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 67 § -2.7884 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 68 $ -8.0979 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 69 € -4.0371 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 70 / -2.7320 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 71 C -2.4905 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 72 * -3.6798 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 73 ” -3.3532 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 74 ? -3.7730 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 75 { -3.5990 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 76 } -3.5265 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 77 , 30.2523 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 78 I -2.5317 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 79 ° -3.9485 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 80 K -2.7849 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 81 H -2.7860 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 82 q 8.6939 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 83 & -3.7086 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 84 ’ -3.2614 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 85 [ -4.2772 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 86 - 18.8310 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 87 Y -2.6086 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 88 Q -2.7891 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 89 " -3.6365 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 90 ! -3.6997 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 91 x 8.8029 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 92 ) -3.8899 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 93 = 11.7776 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 94 + 8.2683 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 95 X -2.4588 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 96 » 13.5559 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 97 ' -3.4881 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 98 ¢ 8.7602 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 99 Z -2.6261 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 100 > 7.3996 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 101 ® 0.8721 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 102 © 0.7572 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 103 ] -3.7217 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 104 é -3.7354 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 105 z 8.9473 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 106 _ 43.0144 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 1 t 20.6804 39.2581 107 ¥ -2.4890 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 1 t 3.9043 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 2 h 0.2695 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 3 a 12.5198 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 4 n 12.5460 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 5 P 1.1786 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 6 o 12.5285 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 7 e 12.5691 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 8 : 11.8049 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 9 r 12.5507 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 10 l -0.1066 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 11 i 0.4433 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 12 1 1.7862 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 13 | -0.0558 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 14 N 1.5877 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 15 f -0.2187 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 16 g 11.2116 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 17 d 0.2390 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 18 W 1.3249 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 19 s 12.6424 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 20 c 12.4777 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 21 u 12.9987 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 22 3 1.3319 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 23 ~ 21.8304 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 24 # 0.9105 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 25 O 1.1513 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 26 ` 0.2889 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 27 @ 5.5690 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 28 F 1.2549 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 29 S 1.3325 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 30 p 12.3997 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 31 “ 0.8188 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 32 % 1.5759 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 33 £ 1.4078 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 34 . 34.2732 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 35 2 1.2175 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 36 5 1.4647 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 37 m 12.3478 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 38 V 1.5338 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 39 6 1.4416 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 40 w 12.7797 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 41 T 1.6366 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 42 M 1.3073 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 43 G 1.4348 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 44 b 0.1759 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 45 9 1.2613 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 46 ; 11.9543 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 47 D 1.0850 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 48 L 1.3800 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 49 y 12.7742 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 50 ‘ 0.8385 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 51 \ 1.5178 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 52 R 1.2376 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 53 < 11.1025 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 54 4 1.4000 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 55 8 1.2595 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 56 0 1.0817 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 57 A 1.1192 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 58 E 1.5050 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 59 B 1.2665 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 60 v 12.6940 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 61 k 0.0134 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 62 J 1.2576 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 63 U 1.5225 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 64 j 0.2292 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 65 ( -0.3922 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 66 7 1.5047 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 67 § 1.3535 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 68 $ -3.9490 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 69 € -0.0917 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 70 / 1.3714 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 71 C 1.0289 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 72 * -0.3627 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 73 ” 0.6987 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 74 ? 0.2741 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 75 { 1.0951 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 76 } 0.6477 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 77 , 34.7097 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 78 I 1.4616 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 79 ° 0.2476 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 80 K 0.9658 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 81 H 1.1625 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 82 q 12.5493 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 83 & 0.3274 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 84 ’ 0.5289 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 85 [ -0.2488 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 86 - 22.8241 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 87 Y 1.2139 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 88 Q 1.1998 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 89 " 0.7534 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 90 ! 0.2247 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 91 x 12.8401 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 92 ) -0.1167 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 93 = 15.9468 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 94 + 12.1359 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 95 X 1.5401 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 96 » 17.2669 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 97 ' 0.3434 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 98 ¢ 12.0287 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 99 Z 1.5847 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 100 > 10.8195 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 101 ® 4.6952 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 102 © 4.7248 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 103 ] 0.1633 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 104 é -0.0796 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 105 z 13.0615 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 106 _ 47.2140 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 2 h 27.0643 43.2185 107 ¥ 1.4334 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 1 t -8.4524 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 2 h -12.5535 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 3 a -0.0163 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 4 n -0.2264 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 5 P -11.3459 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 6 o -0.1274 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 7 e -0.3700 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 8 : -0.6126 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 9 r 0.1907 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 10 l -12.6079 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 11 i -12.2251 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 12 1 -10.9898 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 13 | -12.4733 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 14 N -11.0109 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 15 f -12.6707 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 16 g -1.7487 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 17 d -12.3920 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 18 W -11.2089 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 19 s -0.2144 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 20 c -0.0558 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 21 u 0.4413 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 22 3 -11.0836 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 23 ~ 9.2779 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 24 # -11.4538 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 25 O -11.5661 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 26 ` -12.4431 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 27 @ -7.1956 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 28 F -11.1470 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 29 S -11.2171 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 30 p -0.0443 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 31 “ -11.8989 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 32 % -11.2977 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 33 £ -11.4315 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 34 . 21.8578 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 35 2 -11.2015 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 36 5 -11.0997 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 37 m -0.0446 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 38 V -10.6993 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 39 6 -11.0579 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 40 w 0.2563 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 41 T -10.8268 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 42 M -11.2003 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 43 G -11.1231 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 44 b -12.3972 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 45 9 -11.3470 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 46 ; -0.5807 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 47 D -11.3513 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 48 L -10.9706 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 49 y 0.3376 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 50 ‘ -11.6645 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 51 \ -10.9634 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 52 R -11.2757 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 53 < -1.4500 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 54 4 -10.9783 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 55 8 -11.4388 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 56 0 -11.2023 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 57 A -11.1213 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 58 E -11.3587 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 59 B -11.4089 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 60 v 0.2154 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 61 k -12.3938 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 62 J -10.9772 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 63 U -11.3647 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 64 j -11.8814 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 65 ( -12.5137 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 66 7 -10.8894 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 67 § -10.9279 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 68 $ -16.5485 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 69 € -12.4555 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 70 / -10.9638 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 71 C -11.4398 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 72 * -12.4361 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 73 ” -11.4498 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 74 ? -12.4587 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 75 { -11.6959 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 76 } -11.8308 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 77 , 22.1007 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 78 I -11.1531 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 79 ° -12.5928 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 80 K -11.2435 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 81 H -11.0046 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 82 q 0.2837 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 83 & -12.2454 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 84 ’ -11.7339 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 85 [ -12.4232 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 86 - 10.1394 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 87 Y -10.9422 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 88 Q -11.1099 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 89 " -11.8607 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 90 ! -12.4497 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 91 x 0.2257 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 92 ) -12.2770 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 93 = 3.4618 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 94 + -0.1393 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 95 X -10.9778 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 96 » 5.2193 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 97 ' -11.9600 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 98 ¢ -0.1304 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 99 Z -10.8613 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 100 > -1.7227 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 101 ® -7.7283 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 102 © -7.9486 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 103 ] -12.3762 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 104 é -12.6668 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 105 z 0.4855 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 106 _ 34.2955 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 3 a 28.4989 30.7419 107 ¥ -11.0518 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 1 t -8.5756 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 2 h -12.6735 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 3 a -0.1332 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 4 n 0.0721 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 5 P -10.9429 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 6 o -0.1884 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 7 e -0.1840 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 8 : -0.5903 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 9 r -0.0299 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 10 l -12.2906 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 11 i -11.9514 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 12 1 -11.1988 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 13 | -12.5775 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 14 N -11.5881 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 15 f -12.6365 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 16 g -1.2783 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 17 d -12.5190 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 18 W -11.2031 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 19 s 0.0519 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 20 c -0.1212 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 21 u 0.1369 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 22 3 -11.4417 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 23 ~ 9.3595 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 24 # -11.2081 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 25 O -11.1408 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 26 ` -12.4965 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 27 @ -7.0583 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 28 F -11.2758 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 29 S -11.3235 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 30 p -0.0856 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 31 “ -11.6948 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 32 % -11.4310 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 33 £ -11.5741 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 34 . 21.7922 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 35 2 -11.2534 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 36 5 -11.3513 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 37 m -0.0965 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 38 V -11.3262 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 39 6 -10.9472 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 40 w -0.0701 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 41 T -10.9369 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 42 M -10.8889 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 43 G -11.7986 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 44 b -12.6673 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 45 9 -11.7581 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 46 ; -0.4845 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 47 D -11.1606 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 48 L -11.2805 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 49 y -0.0550 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 50 ‘ -11.7566 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 51 \ -11.0595 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 52 R -10.9476 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 53 < -1.9862 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 54 4 -11.1128 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 55 8 -11.3038 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 56 0 -11.2581 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 57 A -11.2776 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 58 E -10.9684 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 59 B -11.3869 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 60 v 0.3851 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 61 k -12.3043 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 62 J -11.1200 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 63 U -10.8836 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 64 j -12.0977 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 65 ( -12.5569 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 66 7 -11.2993 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 67 § -11.1768 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 68 $ -16.3838 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 69 € -12.3445 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 70 / -10.8946 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 71 C -11.1051 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 72 * -12.6707 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 73 ” -11.8102 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 74 ? -12.2809 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 75 { -11.5810 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 76 } -11.6411 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 77 , 22.1028 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 78 I -11.1311 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 79 ° -12.7960 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 80 K -11.1186 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 81 H -11.2416 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 82 q -0.0710 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 83 & -12.2047 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 84 ’ -11.7017 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 85 [ -12.3312 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 86 - 9.8962 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 87 Y -10.9260 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 88 Q -11.1677 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 89 " -11.9504 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 90 ! -12.2235 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 91 x 0.3408 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 92 ) -12.6082 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 93 = 3.0183 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 94 + -0.3422 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 95 X -11.0888 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 96 » 4.9892 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 97 ' -11.8332 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 98 ¢ 0.2804 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 99 Z -10.8788 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 100 > -1.6323 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 101 ® -7.9742 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 102 © -8.0531 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 103 ] -12.3964 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 104 é -12.3015 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 105 z 0.3035 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 106 _ 34.8494 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 4 n 26.7815 30.7419 107 ¥ -11.0714 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 1 t 2.7244 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 2 h -1.1336 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 3 a 11.4340 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 4 n 11.1248 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 5 P 0.2191 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 6 o 11.2682 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 7 e 10.9785 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 8 : 10.7333 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 9 r 11.0828 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 10 l -1.1830 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 11 i -0.4933 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 12 1 -0.0314 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 13 | -1.5414 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 14 N 0.0107 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 15 f -1.3891 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 16 g 9.6410 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 17 d -1.2185 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 18 W 0.1186 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 19 s 11.5319 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 20 c 11.3812 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 21 u 11.6432 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 22 3 0.3113 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 23 ~ 20.9838 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 24 # 0.1901 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 25 O 0.0086 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 26 ` -0.7874 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 27 @ 4.3456 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 28 F 0.4461 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 29 S 0.0815 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 30 p 11.5204 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 31 “ -0.7203 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 32 % 0.1023 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 33 £ 0.1062 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 34 . 32.9698 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 35 2 -0.1023 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 36 5 -0.2226 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 37 m 11.1335 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 38 V 0.1838 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 39 6 -0.2043 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 40 w 11.6547 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 41 T 0.1643 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 42 M 0.3201 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 43 G 0.0519 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 44 b -1.2527 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 45 9 0.1941 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 46 ; 10.7361 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 47 D 0.0370 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 48 L 0.1852 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 49 y 11.3086 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 50 ‘ -0.7807 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 51 \ 0.3420 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 52 R -0.0878 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 53 < 9.9979 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 54 4 0.0948 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 55 8 -0.0265 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 56 0 -0.1126 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 57 A 0.2685 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 58 E 0.1938 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 59 B -0.1004 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 60 v 11.5607 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 61 k -1.2286 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 62 J 0.0405 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 63 U 0.0575 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 64 j -0.8828 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 65 ( -1.1070 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 66 7 0.1300 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 67 § 0.0490 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 68 $ -5.2715 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 69 € -1.4391 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 70 / 0.1308 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 71 C -0.0730 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 72 * -1.0735 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 73 ” -0.5193 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 74 ? -1.0899 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 75 { -0.7016 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 76 } -0.6914 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 77 , 33.2467 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 78 I 0.0949 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 79 ° -1.2092 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 80 K -0.1257 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 81 H 0.3692 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 82 q 11.1515 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 83 & -0.9387 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 84 ’ -0.5223 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 85 [ -1.4276 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 86 - 21.3792 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 87 Y 0.1852 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 88 Q -0.1702 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 89 " -0.7982 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 90 ! -0.7279 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 91 x 11.6370 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 92 ) -1.2718 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 93 = 14.4947 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 94 + 11.0211 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 95 X 0.1234 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 96 » 16.0873 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 97 ' -0.7347 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 98 ¢ 11.0945 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 99 Z 0.2795 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 100 > 9.6130 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 101 ® 3.0330 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 102 © 3.4541 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 103 ] -1.2854 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 104 é -1.1284 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 105 z 11.4889 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 106 _ 46.0041 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 5 P 27.5988 42.0000 107 ¥ 0.0146 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 1 t -8.8054 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 2 h -12.2873 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 3 a -0.2695 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 4 n 0.1140 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 5 P -11.2258 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 6 o -0.3397 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 7 e 0.0386 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 8 : -0.8707 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 9 r 0.1832 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 10 l -12.6112 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 11 i -12.1747 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 12 1 -11.2042 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 13 | -12.2884 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 14 N -11.2757 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 15 f -12.6160 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 16 g -1.3351 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 17 d -12.5266 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 18 W -11.1497 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 19 s 0.3695 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 20 c 0.1375 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 21 u 0.5736 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 22 3 -11.2212 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 23 ~ 9.8828 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 24 # -11.0702 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 25 O -11.3027 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 26 ` -11.9606 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 27 @ -7.4165 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 28 F -11.1582 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 29 S -11.1476 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 30 p -0.1899 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 31 “ -11.8794 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 32 % -11.3879 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 33 £ -11.1534 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 34 . 21.6827 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 35 2 -11.0409 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 36 5 -11.2953 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 37 m 0.0722 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 38 V -11.2129 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 39 6 -11.0606 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 40 w 0.5460 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 41 T -11.0953 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 42 M -11.0291 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 43 G -11.3150 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 44 b -12.3391 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 45 9 -11.2508 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 46 ; -0.5507 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 47 D -11.0314 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 48 L -10.8937 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 49 y 0.3744 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 50 ‘ -12.1518 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 51 \ -11.0805 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 52 R -10.9972 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 53 < -1.3755 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 54 4 -11.2266 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 55 8 -11.0317 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 56 0 -11.1455 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 57 A -11.3589 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 58 E -11.0325 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 59 B -11.0344 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 60 v 0.3375 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 61 k -12.3061 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 62 J -11.2550 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 63 U -11.1390 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 64 j -12.2441 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 65 ( -12.8346 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 66 7 -10.8465 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 67 § -11.3122 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 68 $ -16.4708 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 69 € -12.5813 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 70 / -11.0874 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 71 C -11.3944 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 72 * -12.3816 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 73 ” -11.6487 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 74 ? -12.0602 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 75 { -11.8660 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 76 } -11.7358 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 77 , 22.2814 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 78 I -10.9637 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 79 ° -12.4081 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 80 K -10.9575 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 81 H -10.9081 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 82 q -0.0323 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 83 & -11.9743 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 84 ’ -11.6393 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 85 [ -12.4590 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 86 - 10.4214 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 87 Y -11.3399 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 88 Q -11.0494 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 89 " -11.8049 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 90 ! -12.4707 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 91 x 0.1094 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 92 ) -12.5692 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 93 = 3.4380 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 94 + -0.2634 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 95 X -11.3176 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 96 » 4.9480 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 97 ' -11.8977 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 98 ¢ -0.0640 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 99 Z -10.8758 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 100 > -1.3651 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 101 ® -8.1711 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 102 © -7.9717 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 103 ] -12.5137 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 104 é -12.4336 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 105 z 0.5960 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 106 _ 34.6062 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 6 o 29.2185 30.7419 107 ¥ -11.3781 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 1 t -8.5115 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 2 h -12.6540 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 3 a 0.0784 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 4 n -0.3290 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 5 P -11.0950 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 6 o 0.0166 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 7 e 0.1239 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 8 : -0.7643 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 9 r -0.0221 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 10 l -12.3816 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 11 i -12.0742 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 12 1 -11.1248 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 13 | -12.6902 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 14 N -11.3437 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 15 f -12.5554 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 16 g -1.4384 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 17 d -12.4792 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 18 W -11.0729 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 19 s 0.3761 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 20 c 0.1595 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 21 u 0.2812 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 22 3 -11.1293 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 23 ~ 9.8694 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 24 # -11.4210 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 25 O -11.4895 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 26 ` -12.4754 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 27 @ -6.8922 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 28 F -11.0114 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 29 S -11.4474 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 30 p 0.0073 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 31 “ -11.6291 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 32 % -10.9385 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 33 £ -11.3632 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 34 . 21.8157 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 35 2 -11.0231 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 36 5 -11.0643 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 37 m -0.2872 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 38 V -11.2460 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 39 6 -11.0774 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 40 w 0.4516 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 41 T -11.1494 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 42 M -11.1416 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 43 G -11.3038 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 44 b -12.4178 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 45 9 -11.2740 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 46 ; -0.4958 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 47 D -11.1775 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 48 L -11.0272 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 49 y 0.2678 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 50 ‘ -11.9543 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 51 \ -11.1041 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 52 R -11.0680 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 53 < -1.7047 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 54 4 -11.1680 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 55 8 -11.1484 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 56 0 -11.2335 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 57 A -11.4049 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 58 E -10.9296 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 59 B -11.3796 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 60 v 0.3213 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 61 k -12.6471 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 62 J -10.9920 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 63 U -10.9307 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 64 j -12.1792 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 65 ( -12.3231 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 66 7 -11.1172 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 67 § -11.6569 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 68 $ -16.4749 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 69 € -12.4410 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 70 / -11.0085 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 71 C -11.4148 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 72 * -12.5299 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 73 ” -11.6964 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 74 ? -12.3879 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 75 { -11.9284 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 76 } -11.6759 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 77 , 22.1740 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 78 I -11.2324 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 79 ° -12.7181 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 80 K -11.1565 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 81 H -11.1632 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 82 q 0.3416 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 83 & -12.0891 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 84 ’ -11.7228 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 85 [ -12.4244 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 86 - 10.1356 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 87 Y -11.2967 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 88 Q -11.1750 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 89 " -11.8726 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 90 ! -12.3632 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 91 x 0.2103 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 92 ) -12.6805 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 93 = 3.3262 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 94 + -0.2523 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 95 X -11.0110 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 96 » 4.7913 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 97 ' -11.9100 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 98 ¢ 0.1192 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 99 Z -11.0355 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 100 > -1.3251 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 101 ® -7.6837 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 102 © -8.1711 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 103 ] -12.5050 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 104 é -12.4700 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 105 z -0.0552 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 106 _ 34.5868 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 7 e 29.6210 30.7419 107 ¥ -10.9859 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 1 t -8.1302 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 2 h -12.2228 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 3 a 0.4709 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 4 n 0.3474 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 5 P -10.6185 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 6 o 0.4172 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 7 e 0.5516 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 8 : -0.0432 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 9 r 0.3849 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 10 l -11.8580 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 11 i -11.7568 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 12 1 -10.2973 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 13 | -11.7776 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 14 N -10.5742 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 15 f -11.9745 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 16 g -1.0025 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 17 d -12.1202 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 18 W -10.5189 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 19 s 0.6631 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 20 c 0.5430 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 21 u 0.5519 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 22 3 -10.8631 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 23 ~ 10.1389 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 24 # -10.5800 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 25 O -10.9411 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 26 ` -11.5482 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 27 @ -6.5697 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 28 F -10.4707 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 29 S -10.7195 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 30 p 0.7247 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 31 “ -11.0908 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 32 % -10.6210 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 33 £ -10.6418 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 34 . 22.1292 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 35 2 -10.7372 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 36 5 -10.5567 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 37 m 0.4555 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 38 V -10.4650 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 39 6 -10.6508 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 40 w 1.0103 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 41 T -10.5049 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 42 M -10.6107 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 43 G -10.4724 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 44 b -11.8169 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 45 9 -10.8393 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 46 ; 0.2771 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 47 D -10.7818 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 48 L -10.3714 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 49 y 0.6788 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 50 ‘ -11.1455 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 51 \ -10.5492 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 52 R -10.9226 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 53 < -0.8205 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 54 4 -10.6721 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 55 8 -10.8808 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 56 0 -10.8559 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 57 A -10.7695 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 58 E -10.4035 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 59 B -10.6012 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 60 v 0.7368 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 61 k -11.6577 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 62 J -10.5020 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 63 U -10.6045 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 64 j -11.7031 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 65 ( -11.8607 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 66 7 -10.4455 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 67 § -10.6752 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 68 $ -15.6952 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 69 € -12.0697 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 70 / -10.6732 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 71 C -10.7789 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 72 * -11.7837 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 73 ” -11.3498 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 74 ? -11.9863 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 75 { -11.4373 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 76 } -11.1657 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 77 , 22.9695 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 78 I -10.5505 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 79 ° -11.6031 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 80 K -10.6289 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 81 H -10.4642 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 82 q 0.4677 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 83 & -11.6864 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 84 ’ -11.4359 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 85 [ -11.9794 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 86 - 10.6550 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 87 Y -10.5448 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 88 Q -10.9366 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 89 " -11.4486 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 90 ! -11.8065 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 91 x 0.9099 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 92 ) -12.0533 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 93 = 3.7812 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 94 + -0.0256 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 95 X -10.5251 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 96 » 5.3989 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 97 ' -11.5291 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 98 ¢ 0.4863 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 99 Z -10.7474 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 100 > -1.2167 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 101 ® -7.4623 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 102 © -7.3360 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 103 ] -12.0029 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 104 é -11.8806 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 105 z 0.7862 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 106 _ 35.1036 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 8 : 9.3419 31.7837 107 ¥ -10.5434 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 1 t -8.3294 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 2 h -12.3211 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 3 a -0.0385 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 4 n 0.0770 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 5 P -11.5756 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 6 o -0.1484 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 7 e -0.0755 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 8 : -0.8207 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 9 r 0.4132 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 10 l -12.3133 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 11 i -12.0607 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 12 1 -11.0581 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 13 | -12.2542 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 14 N -11.1113 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 15 f -12.3431 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 16 g -1.3380 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 17 d -12.2960 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 18 W -11.0007 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 19 s 0.0471 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 20 c 0.0014 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 21 u 0.2940 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 22 3 -11.0538 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 23 ~ 9.5048 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 24 # -11.3829 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 25 O -11.1933 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 26 ` -12.2948 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 27 @ -6.9779 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 28 F -11.0138 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 29 S -11.4612 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 30 p -0.2811 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 31 “ -11.4853 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 32 % -11.1605 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 33 £ -11.2682 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 34 . 21.5749 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 35 2 -11.2912 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 36 5 -10.9234 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 37 m 0.0769 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 38 V -10.9725 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 39 6 -11.1206 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 40 w 0.3258 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 41 T -11.0595 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 42 M -10.9715 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 43 G -11.4402 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 44 b -12.5445 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 45 9 -11.3956 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 46 ; -0.6126 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 47 D -11.2991 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 48 L -11.1248 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 49 y 0.3394 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 50 ‘ -11.7243 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 51 \ -11.1531 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 52 R -11.1206 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 53 < -1.0621 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 54 4 -11.2920 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 55 8 -11.2612 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 56 0 -11.0554 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 57 A -11.2581 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 58 E -11.0729 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 59 B -11.4081 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 60 v 0.5859 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 61 k -12.3242 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 62 J -10.8981 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 63 U -11.1883 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 64 j -11.9901 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 65 ( -12.4396 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 66 7 -11.2311 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 67 § -11.2313 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 68 $ -16.4342 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 69 € -12.4666 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 70 / -11.0460 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 71 C -11.2033 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 72 * -12.6069 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 73 ” -11.7887 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 74 ? -12.3818 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 75 { -11.8746 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 76 } -11.6328 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 77 , 22.2725 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 78 I -10.8194 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 79 ° -12.5168 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 80 K -10.7972 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 81 H -10.9380 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 82 q 0.0115 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 83 & -12.4188 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 84 ’ -11.7391 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 85 [ -12.2752 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 86 - 10.1640 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 87 Y -11.0239 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 88 Q -11.1112 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 89 " -12.1991 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 90 ! -12.1007 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 91 x 0.2631 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 92 ) -12.3891 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 93 = 3.1805 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 94 + -0.3321 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 95 X -11.0643 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 96 » 4.8874 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 97 ' -11.7380 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 98 ¢ 0.0010 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 99 Z -10.9178 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 100 > -1.4455 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 101 ® -7.7892 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 102 © -7.7608 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 103 ] -12.3964 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 104 é -12.3346 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 105 z 0.5312 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 106 _ 34.4924 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 9 r 21.0161 30.7419 107 ¥ -11.0460 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 1 t 3.7812 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 2 h 0.0269 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 3 a 12.4752 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 4 n 12.3561 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 5 P 0.9760 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 6 o 12.4886 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 7 e 12.5507 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 8 : 11.7753 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 9 r 12.5597 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 10 l -0.0903 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 11 i 0.2406 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 12 1 1.5426 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 13 | 0.0842 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 14 N 1.2515 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 15 f -0.0802 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 16 g 10.9819 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 17 d 0.2238 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 18 W 1.3061 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 19 s 12.4813 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 20 c 12.3464 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 21 u 12.8751 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 22 3 1.3448 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 23 ~ 22.0765 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 24 # 1.0335 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 25 O 1.2185 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 26 ` -0.0959 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 27 @ 5.7026 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 28 F 1.3624 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 29 S 1.2185 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 30 p 12.3021 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 31 “ 0.7448 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 32 % 0.9706 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 33 £ 1.4126 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 34 . 34.1415 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 35 2 1.3103 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 36 5 1.3706 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 37 m 12.5102 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 38 V 1.3769 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 39 6 1.0398 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 40 w 12.6987 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 41 T 1.6747 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 42 M 1.4037 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 43 G 1.0763 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 44 b -0.1026 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 45 9 1.1714 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 46 ; 11.9597 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 47 D 1.2690 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 48 L 1.3221 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 49 y 12.7753 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 50 ‘ 0.7462 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 51 \ 1.4469 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 52 R 1.3344 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 53 < 10.9081 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 54 4 1.4023 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 55 8 1.2131 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 56 0 1.3931 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 57 A 1.3204 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 58 E 1.3605 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 59 B 1.0898 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 60 v 12.7146 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 61 k 0.0000 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 62 J 1.4037 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 63 U 1.4099 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 64 j 0.5991 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 65 ( 0.0461 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 66 7 1.3681 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 67 § 1.1296 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 68 $ -3.9811 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 69 € 0.0249 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 70 / 1.3192 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 71 C 1.1714 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 72 * 0.1821 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 73 ” 0.7638 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 74 ? 0.1587 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 75 { 0.7883 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 76 } 0.6828 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 77 , 34.5784 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 78 I 1.3196 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 79 ° 0.0928 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 80 K 1.5645 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 81 H 1.5013 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 82 q 12.4367 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 83 & 0.0963 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 84 ’ 0.9193 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 85 [ -0.1382 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 86 - 22.5146 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 87 Y 1.2303 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 88 Q 1.2617 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 89 " 0.6246 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 90 ! 0.2683 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 91 x 12.9049 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 92 ) 0.1558 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 93 = 15.7246 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 94 + 12.3271 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 95 X 1.4037 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 96 » 17.2629 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 97 ' 0.6040 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 98 ¢ 12.3713 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 99 Z 1.4509 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 100 > 11.1395 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 101 ® 4.6088 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 102 © 4.5096 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 103 ] -0.0485 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 104 é 0.2769 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 105 z 12.5874 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 106 _ 47.0593 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 10 l 10.5740 43.2185 107 ¥ 1.3641 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 1 t 3.6161 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 2 h -0.2886 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 3 a 11.9308 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 4 n 12.1780 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 5 P 0.9347 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 6 o 12.3398 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 7 e 12.5131 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 8 : 11.5771 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 9 r 12.2668 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 10 l -0.4721 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 11 i 0.1854 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 12 1 0.7585 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 13 | -0.2703 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 14 N 0.7316 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 15 f -0.2665 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 16 g 10.5009 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 17 d -0.3641 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 18 W 0.9306 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 19 s 12.1751 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 20 c 12.1881 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 21 u 12.1377 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 22 3 0.7569 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 23 ~ 21.8974 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 24 # 1.3283 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 25 O 0.8160 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 26 ` -0.0109 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 27 @ 4.9124 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 28 F 1.0878 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 29 S 0.8666 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 30 p 12.1891 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 31 “ 0.4124 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 32 % 1.0091 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 33 £ 0.5600 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 34 . 34.1092 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 35 2 0.7257 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 36 5 1.0299 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 37 m 12.4239 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 38 V 0.9737 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 39 6 0.8886 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 40 w 12.4223 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 41 T 1.2846 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 42 M 1.1007 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 43 G 0.6906 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 44 b -0.3357 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 45 9 0.9213 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 46 ; 11.4854 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 47 D 1.1847 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 48 L 0.8946 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 49 y 12.6164 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 50 ‘ 0.1251 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 51 \ 1.0172 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 52 R 0.8270 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 53 < 10.6674 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 54 4 1.1670 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 55 8 1.0236 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 56 0 0.8666 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 57 A 0.7257 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 58 E 1.0929 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 59 B 0.7429 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 60 v 12.4817 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 61 k -0.6499 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 62 J 0.9849 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 63 U 0.9705 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 64 j 0.0236 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 65 ( -0.4207 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 66 7 0.9997 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 67 § 0.8349 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 68 $ -4.0784 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 69 € -0.4542 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 70 / 1.0310 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 71 C 1.0649 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 72 * -0.4274 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 73 ” 0.2317 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 74 ? -0.2732 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 75 { 0.2759 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 76 } 0.3220 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 77 , 34.0861 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 78 I 1.0114 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 79 ° -0.2987 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 80 K 0.9849 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 81 H 1.2534 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 82 q 12.2245 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 83 & -0.2071 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 84 ’ 0.3633 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 85 [ -0.1536 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 86 - 22.6262 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 87 Y 1.1016 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 88 Q 0.8466 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 89 " 0.2640 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 90 ! -0.0058 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 91 x 12.3616 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 92 ) -0.4098 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 93 = 15.1683 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 94 + 11.7703 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 95 X 1.2178 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 96 » 17.1349 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 97 ' 0.0890 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 98 ¢ 12.1691 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 99 Z 1.0830 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 100 > 10.7084 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 101 ® 4.5280 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 102 © 4.3503 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 103 ] -0.5210 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 104 é 0.0388 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 105 z 12.3655 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 106 _ 46.8808 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 11 i 11.6826 42.8828 107 ¥ 1.2155 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 1 t 2.4584 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 2 h -1.3586 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 3 a 11.1383 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 4 n 10.8802 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 5 P -0.3893 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 6 o 11.3304 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 7 e 11.0043 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 8 : 10.3746 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 9 r 10.9405 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 10 l -1.0424 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 11 i -1.1199 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 12 1 0.1899 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 13 | -1.3742 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 14 N -0.0827 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 15 f -1.5336 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 16 g 9.3049 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 17 d -1.9990 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 18 W -0.0068 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 19 s 11.0910 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 20 c 11.0398 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 21 u 11.3172 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 22 3 0.0353 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 23 ~ 20.6915 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 24 # -0.2356 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 25 O -0.0742 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 26 ` -1.1249 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 27 @ 3.8020 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 28 F 0.0526 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 29 S -0.0059 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 30 p 10.7428 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 31 “ -0.8497 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 32 % 0.0710 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 33 £ -0.6099 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 34 . 32.7752 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 35 2 -0.4922 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 36 5 0.0961 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 37 m 11.2224 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 38 V 0.0845 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 39 6 -0.1675 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 40 w 11.3987 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 41 T -0.0413 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 42 M 0.1226 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 43 G -0.1010 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 44 b -1.3885 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 45 9 -0.1964 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 46 ; 10.9450 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 47 D -0.4403 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 48 L 0.2278 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 49 y 11.5098 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 50 ‘ -0.8907 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 51 \ -0.0028 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 52 R -0.2683 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 53 < 9.9042 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 54 4 0.0832 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 55 8 -0.0031 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 56 0 -0.1453 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 57 A -0.0920 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 58 E 0.2076 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 59 B -0.2107 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 60 v 11.3467 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 61 k -1.5843 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 62 J -0.0000 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 63 U -0.1422 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 64 j -1.1617 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 65 ( -1.3243 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 66 7 -0.2177 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 67 § -0.2284 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 68 $ -5.0181 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 69 € -1.3889 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 70 / 0.1259 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 71 C -0.0673 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 72 * -1.3205 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 73 ” -1.0221 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 74 ? -1.1613 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 75 { -0.4859 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 76 } -0.5090 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 77 , 33.2901 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 78 I 0.2426 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 79 ° -1.4778 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 80 K -0.0505 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 81 H 0.0936 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 82 q 11.1531 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 83 & -1.1296 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 84 ’ -0.8795 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 85 [ -1.5202 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 86 - 21.2012 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 87 Y 0.0951 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 88 Q -0.3231 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 89 " -0.9602 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 90 ! -1.3397 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 91 x 11.3183 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 92 ) -1.4282 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 93 = 14.3828 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 94 + 10.8091 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 95 X 0.2532 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 96 » 15.7497 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 97 ' -0.8942 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 98 ¢ 10.8725 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 99 Z 0.0831 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 100 > 9.6379 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 101 ® 3.1357 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 102 © 3.3711 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 103 ] -1.3457 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 104 é -1.0872 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 105 z 11.3306 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 106 _ 45.7694 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 12 1 15.6210 41.8148 107 ¥ -0.0929 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 1 t 3.7798 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 2 h -0.3095 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 3 a 12.4558 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 4 n 12.3021 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 5 P 1.1739 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 6 o 12.3225 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 7 e 12.2824 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 8 : 12.0094 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 9 r 12.4192 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 10 l 0.1508 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 11 i 0.2794 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 12 1 1.7650 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 13 | -0.0015 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 14 N 1.0784 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 15 f -0.1537 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 16 g 11.0450 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 17 d -0.0312 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 18 W 1.3656 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 19 s 12.5075 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 20 c 12.3297 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 21 u 12.7594 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 22 3 1.2411 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 23 ~ 21.8598 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 24 # 1.3683 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 25 O 1.3944 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 26 ` 0.0351 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 27 @ 5.4037 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 28 F 1.3076 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 29 S 1.3016 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 30 p 12.3060 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 31 “ 0.8192 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 32 % 0.9208 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 33 £ 1.3276 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 34 . 33.8931 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 35 2 1.3910 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 36 5 1.4657 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 37 m 12.8404 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 38 V 1.6095 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 39 6 0.8014 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 40 w 12.9636 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 41 T 1.4480 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 42 M 1.3000 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 43 G 0.8611 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 44 b -0.1037 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 45 9 1.3729 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 46 ; 11.9854 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 47 D 1.1383 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 48 L 1.4505 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 49 y 12.9164 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 50 ‘ 0.7212 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 51 \ 1.3188 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 52 R 1.5453 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 53 < 10.8961 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 54 4 1.2731 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 55 8 1.4957 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 56 0 1.2679 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 57 A 1.1282 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 58 E 1.5415 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 59 B 1.3699 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 60 v 12.4644 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 61 k 0.0816 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 62 J 1.4368 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 63 U 1.5074 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 64 j 0.2925 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 65 ( 0.2387 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 66 7 1.5819 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 67 § 1.4511 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 68 $ -3.8687 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 69 € -0.0418 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 70 / 1.3061 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 71 C 1.4093 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 72 * -0.2315 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 73 ” 0.7024 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 74 ? 0.0031 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 75 { 0.7448 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 76 } 0.6800 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 77 , 34.7765 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 78 I 1.5699 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 79 ° -0.1778 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 80 K 1.4364 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 81 H 1.4383 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 82 q 12.3492 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 83 & 0.2385 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 84 ’ 0.7423 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 85 [ 0.1364 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 86 - 22.4614 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 87 Y 1.2688 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 88 Q 1.2023 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 89 " 0.5209 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 90 ! -0.1323 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 91 x 12.8286 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 92 ) 0.0249 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 93 = 15.7503 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 94 + 11.9393 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 95 X 1.5473 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 96 » 17.4288 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 97 ' 0.6572 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 98 ¢ 12.2636 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 99 Z 1.4692 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 100 > 10.8761 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 101 ® 4.6864 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 102 © 4.5750 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 103 ] 0.2101 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 104 é 0.1380 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 105 z 12.7383 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 106 _ 47.2328 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 13 | 5.8630 55.1963 107 ¥ 1.5978 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 1 t 2.6398 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 2 h -1.3935 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 3 a 11.2939 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 4 n 11.0325 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 5 P -0.0045 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 6 o 11.2190 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 7 e 10.8722 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 8 : 10.4380 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 9 r 10.9859 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 10 l -1.2705 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 11 i -0.9493 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 12 1 -0.0525 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 13 | -1.7805 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 14 N -0.2264 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 15 f -1.1890 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 16 g 9.4936 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 17 d -1.3725 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 18 W -0.1360 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 19 s 10.9427 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 20 c 10.9883 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 21 u 11.3791 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 22 3 -0.2903 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 23 ~ 21.1324 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 24 # -0.4253 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 25 O -0.1540 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 26 ` -1.3646 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 27 @ 3.8683 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 28 F -0.1463 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 29 S -0.1010 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 30 p 11.1970 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 31 “ -0.8507 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 32 % -0.2356 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 33 £ -0.2189 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 34 . 32.8194 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 35 2 -0.1438 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 36 5 -0.0388 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 37 m 11.1113 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 38 V 0.2562 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 39 6 -0.2439 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 40 w 11.0315 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 41 T -0.1084 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 42 M 0.1759 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 43 G -0.1776 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 44 b -1.5622 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 45 9 0.1137 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 46 ; 10.5074 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 47 D 0.0474 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 48 L 0.2249 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 49 y 11.6642 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 50 ‘ -0.7115 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 51 \ 0.0629 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 52 R -0.0059 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 53 < 9.5451 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 54 4 -0.1691 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 55 8 -0.2462 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 56 0 -0.1228 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 57 A -0.1833 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 58 E -0.0255 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 59 B -0.3100 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 60 v 11.1798 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 61 k -1.5732 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 62 J -0.1423 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 63 U 0.0187 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 64 j -1.0857 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 65 ( -1.2169 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 66 7 -0.0578 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 67 § -0.2479 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 68 $ -5.2274 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 69 € -1.2778 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 70 / 0.0758 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 71 C -0.3765 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 72 * -1.1815 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 73 ” -0.9163 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 74 ? -1.2833 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 75 { -0.6172 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 76 } -0.9544 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 77 , 33.6676 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 78 I -0.1658 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 79 ° -1.0924 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 80 K 0.0749 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 81 H 0.0068 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 82 q 10.8182 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 83 & -0.8414 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 84 ’ -0.4056 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 85 [ -1.1327 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 86 - 20.9154 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 87 Y 0.1778 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 88 Q 0.1064 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 89 " -1.0067 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 90 ! -1.2693 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 91 x 11.4557 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 92 ) -1.4912 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 93 = 13.9225 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 94 + 10.6965 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 95 X -0.0947 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 96 » 16.1632 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 97 ' -0.6787 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 98 ¢ 11.2872 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 99 Z 0.1275 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 100 > 9.6388 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 101 ® 3.0792 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 102 © 3.1137 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 103 ] -1.3605 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 104 é -1.3467 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 105 z 11.2008 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 106 _ 45.6650 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 14 N 30.6890 41.8148 107 ¥ -0.4218 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 1 t 3.9942 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 2 h -0.0438 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 3 a 12.7145 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 4 n 12.7390 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 5 P 1.1149 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 6 o 12.4766 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 7 e 12.4590 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 8 : 11.8255 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 9 r 12.5176 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 10 l 0.2311 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 11 i 0.3962 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 12 1 1.5066 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 13 | -0.1310 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 14 N 1.4793 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 15 f 0.2311 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 16 g 11.0734 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 17 d 0.1854 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 18 W 1.3566 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 19 s 12.1661 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 20 c 12.3231 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 21 u 12.6796 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 22 3 1.1416 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 23 ~ 22.2845 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 24 # 0.9354 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 25 O 1.3090 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 26 ` 0.3332 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 27 @ 5.4213 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 28 F 0.9516 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 29 S 1.1936 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 30 p 12.3049 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 31 “ 0.7009 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 32 % 1.3694 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 33 £ 1.0432 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 34 . 34.1828 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 35 2 1.2219 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 36 5 1.4012 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 37 m 12.4353 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 38 V 1.3047 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 39 6 1.1344 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 40 w 12.4528 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 41 T 1.3134 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 42 M 1.1903 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 43 G 1.4299 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 44 b 0.0471 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 45 9 1.1282 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 46 ; 12.2475 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 47 D 1.0331 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 48 L 1.2514 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 49 y 12.7768 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 50 ‘ 0.4947 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 51 \ 1.3580 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 52 R 1.0351 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 53 < 11.2093 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 54 4 1.3652 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 55 8 1.1279 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 56 0 1.3905 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 57 A 1.1566 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 58 E 1.1327 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 59 B 1.1729 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 60 v 12.8305 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 61 k 0.2960 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 62 J 1.3638 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 63 U 1.2109 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 64 j 0.4308 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 65 ( -0.1091 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 66 7 1.6775 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 67 § 1.3978 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 68 $ -3.7859 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 69 € -0.1928 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 70 / 1.4051 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 71 C 0.8979 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 72 * 0.1092 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 73 ” 0.6976 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 74 ? 0.1568 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 75 { 0.6516 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 76 } 0.5865 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 77 , 34.5642 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 78 I 1.3087 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 79 ° 0.1436 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 80 K 1.4037 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 81 H 1.2482 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 82 q 12.5597 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 83 & 0.3187 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 84 ’ 0.5613 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 85 [ 0.2623 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 86 - 22.5430 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 87 Y 1.3457 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 88 Q 1.1916 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 89 " 0.7346 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 90 ! 0.2356 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 91 x 12.6635 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 92 ) -0.0428 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 93 = 15.5660 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 94 + 11.5802 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 95 X 1.4603 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 96 » 17.3183 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 97 ' 0.3154 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 98 ¢ 12.5371 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 99 Z 1.4225 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 100 > 10.9959 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 101 ® 4.4553 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 102 © 4.5024 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 103 ] -0.0884 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 104 é 0.1049 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 105 z 12.8333 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 106 _ 47.1161 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 15 f 21.8198 43.2185 107 ¥ 1.4811 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 1 t -6.8910 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 2 h -10.8662 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 3 a 1.5529 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 4 n 1.7573 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 5 P -9.9327 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 6 o 1.3823 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 7 e 1.4236 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 8 : 0.8364 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 9 r 1.3297 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 10 l -10.9514 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 11 i -10.4901 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 12 1 -9.7248 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 13 | -10.7160 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 14 N -9.2962 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 15 f -10.9349 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 16 g -0.2601 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 17 d -11.0483 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 18 W -9.5980 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 19 s 1.4356 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 20 c 1.6123 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 21 u 1.6813 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 22 3 -9.7433 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 23 ~ 11.2290 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 24 # -9.7861 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 25 O -10.0176 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 26 ` -10.9175 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 27 @ -5.5209 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 28 F -9.7407 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 29 S -9.6163 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 30 p 0.9432 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 31 “ -10.2400 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 32 % -9.7866 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 33 £ -9.8116 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 34 . 23.1919 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 35 2 -9.8558 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 36 5 -9.7374 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 37 m 1.4952 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 38 V -9.4545 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 39 6 -9.6232 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 40 w 1.9556 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 41 T -9.5111 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 42 M -9.6754 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 43 G -9.7693 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 44 b -10.8071 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 45 9 -9.7210 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 46 ; 1.0968 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 47 D -9.7376 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 48 L -9.6668 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 49 y 1.7886 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 50 ‘ -10.2157 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 51 \ -9.6975 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 52 R -9.6491 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 53 < 0.2378 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 54 4 -9.5798 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 55 8 -9.9567 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 56 0 -9.6958 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 57 A -9.9524 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 58 E -9.7273 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 59 B -9.6843 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 60 v 1.6091 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 61 k -10.8975 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 62 J -9.7907 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 63 U -9.6176 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 64 j -10.4369 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 65 ( -10.9903 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 66 7 -9.7485 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 67 § -9.8178 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 68 $ -14.7339 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 69 € -10.8245 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 70 / -9.5481 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 71 C -9.5839 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 72 * -10.9220 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 73 ” -10.2929 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 74 ? -10.6162 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 75 { -10.3161 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 76 } -10.3176 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 77 , 23.5762 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 78 I -9.4073 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 79 ° -10.9253 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 80 K -9.6201 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 81 H -9.5362 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 82 q 1.2612 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 83 & -10.7804 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 84 ’ -10.4895 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 85 [ -11.0867 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 86 - 11.4163 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 87 Y -9.3998 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 88 Q -9.8123 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 89 " -10.2344 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 90 ! -10.9325 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 91 x 1.5311 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 92 ) -10.6580 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 93 = 5.0438 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 94 + 1.0686 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 95 X -9.3851 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 96 » 6.4572 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 97 ' -10.4607 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 98 ¢ 1.5526 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 99 Z -9.4818 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 100 > -0.0983 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 101 ® -6.4523 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 102 © -6.3964 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 103 ] -11.0556 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 104 é -10.7061 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 105 z 1.7404 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 106 _ 36.2301 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 16 g 27.0863 44.2430 107 ¥ -9.5346 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 1 t 3.9710 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 2 h -0.2979 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 3 a 12.5042 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 4 n 12.4627 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 5 P 1.3387 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 6 o 12.3244 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 7 e 12.1700 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 8 : 12.0681 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 9 r 12.4036 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 10 l 0.4112 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 11 i 0.5559 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 12 1 1.3753 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 13 | 0.0302 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 14 N 1.2885 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 15 f -0.0309 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 16 g 10.9903 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 17 d -0.0936 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 18 W 1.2864 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 19 s 12.4569 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 20 c 12.5245 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 21 u 12.4767 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 22 3 1.0455 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 23 ~ 22.0898 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 24 # 0.9442 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 25 O 1.4079 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 26 ` 0.0890 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 27 @ 5.4936 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 28 F 1.7280 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 29 S 0.9725 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 30 p 12.3675 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 31 “ 0.6814 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 32 % 1.3027 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 33 £ 1.3970 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 34 . 34.0877 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 35 2 0.8514 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 36 5 1.1158 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 37 m 12.2949 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 38 V 1.6488 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 39 6 1.2074 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 40 w 12.6152 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 41 T 1.3706 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 42 M 1.5387 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 43 G 1.2819 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 44 b 0.0777 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 45 9 1.1177 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 46 ; 11.6148 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 47 D 1.5461 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 48 L 1.6478 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 49 y 12.7800 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 50 ‘ 0.6567 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 51 \ 1.4584 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 52 R 1.1753 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 53 < 11.0665 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 54 4 1.6189 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 55 8 1.2185 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 56 0 1.3239 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 57 A 1.0527 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 58 E 1.2677 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 59 B 1.1830 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 60 v 12.8395 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 61 k -0.3004 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 62 J 1.5681 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 63 U 1.5431 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 64 j 0.4156 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 65 ( -0.2163 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 66 7 1.1899 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 67 § 0.9903 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 68 $ -4.1720 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 69 € -0.2281 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 70 / 1.5379 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 71 C 1.4169 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 72 * -0.1437 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 73 ” 0.3849 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 74 ? 0.4547 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 75 { 0.8250 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 76 } 0.6308 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 77 , 34.6716 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 78 I 1.7399 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 79 ° -0.0120 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 80 K 1.4988 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 81 H 1.4556 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 82 q 12.3795 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 83 & 0.0059 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 84 ’ 0.4963 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 85 [ -0.1569 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 86 - 22.4579 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 87 Y 1.7441 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 88 Q 1.2442 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 89 " 0.3940 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 90 ! 0.2039 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 91 x 12.8368 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 92 ) -0.0047 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 93 = 15.5875 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 94 + 12.0230 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 95 X 1.6700 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 96 » 17.4112 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 97 ' 0.5310 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 98 ¢ 12.3717 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 99 Z 1.7084 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 100 > 11.0601 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 101 ® 4.7547 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 102 © 4.3837 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 103 ] 0.0471 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 104 é 0.4508 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 105 z 13.0611 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 106 _ 46.9614 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 17 d 28.4025 43.2185 107 ¥ 1.5749 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 1 t 2.6751 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 2 h -1.3906 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 3 a 11.2329 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 4 n 10.8566 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 5 P -0.0276 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 6 o 10.9536 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 7 e 11.1470 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 8 : 10.8380 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 9 r 11.0863 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 10 l -1.5138 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 11 i -0.8431 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 12 1 0.0593 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 13 | -1.3552 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 14 N -0.1519 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 15 f -1.2921 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 16 g 9.5153 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 17 d -1.6206 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 18 W 0.3073 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 19 s 11.0143 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 20 c 10.8332 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 21 u 11.4310 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 22 3 -0.1270 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 23 ~ 20.6403 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 24 # -0.3388 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 25 O -0.5818 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 26 ` -1.2708 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 27 @ 4.2508 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 28 F 0.1622 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 29 S 0.0265 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 30 p 11.1258 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 31 “ -0.6293 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 32 % -0.2189 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 33 £ -0.3424 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 34 . 32.7551 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 35 2 -0.2073 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 36 5 0.2399 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 37 m 11.2690 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 38 V -0.2417 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 39 6 -0.4994 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 40 w 11.1027 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 41 T -0.1292 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 42 M -0.0134 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 43 G -0.2164 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 44 b -1.3381 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 45 9 -0.3327 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 46 ; 10.4010 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 47 D -0.0492 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 48 L 0.0140 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 49 y 11.4580 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 50 ‘ -0.4552 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 51 \ 0.0998 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 52 R -0.0718 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 53 < 9.7355 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 54 4 -0.0269 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 55 8 -0.0703 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 56 0 -0.1884 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 57 A -0.3866 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 58 E 0.2829 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 59 B -0.0229 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 60 v 11.1915 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 61 k -1.6795 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 62 J -0.1685 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 63 U -0.0434 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 64 j -0.9040 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 65 ( -1.4522 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 66 7 -0.1204 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 67 § -0.0979 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 68 $ -5.7921 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 69 € -1.6983 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 70 / -0.0257 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 71 C -0.1809 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 72 * -1.0831 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 73 ” -0.6421 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 74 ? -1.3448 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 75 { -0.5032 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 76 } -0.9471 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 77 , 32.9696 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 78 I 0.4862 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 79 ° -1.0628 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 80 K -0.0331 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 81 H -0.3066 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 82 q 11.3468 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 83 & -1.0183 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 84 ’ -0.7831 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 85 [ -1.8155 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 86 - 20.9836 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 87 Y -0.1147 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 88 Q -0.3389 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 89 " -0.6324 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 90 ! -1.0280 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 91 x 11.4800 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 92 ) -1.5196 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 93 = 14.2094 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 94 + 10.5770 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 95 X 0.2148 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 96 » 16.1267 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 97 ' -0.9839 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 98 ¢ 10.7985 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 99 Z 0.0210 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 100 > 9.4982 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 101 ® 3.1415 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 102 © 3.1580 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 103 ] -1.5317 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 104 é -1.1485 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 105 z 11.3009 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 106 _ 45.6175 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 18 W 52.2789 41.8148 107 ¥ -0.0638 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 1 t -8.6363 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 2 h -12.6069 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 3 a -0.2724 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 4 n 0.0295 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 5 P -10.9838 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 6 o -0.0979 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 7 e -0.0385 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 8 : -0.9328 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 9 r 0.2968 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 10 l -12.2719 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 11 i -11.9588 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 12 1 -11.0344 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 13 | -12.4544 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 14 N -11.2073 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 15 f -12.3776 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 16 g -1.5410 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 17 d -12.5717 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 18 W -10.9354 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 19 s 0.0115 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 20 c 0.0443 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 21 u 0.3854 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 22 3 -11.2097 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 23 ~ 9.4826 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 24 # -11.2380 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 25 O -11.5150 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 26 ` -12.5118 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 27 @ -7.1107 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 28 F -11.3558 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 29 S -11.1677 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 30 p 0.0878 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 31 “ -12.0895 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 32 % -11.2258 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 33 £ -10.9751 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 34 . 21.6504 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 35 2 -11.6473 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 36 5 -11.0451 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 37 m -0.0515 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 38 V -10.8900 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 39 6 -11.1544 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 40 w 0.1613 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 41 T -11.0258 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 42 M -11.0670 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 43 G -11.7039 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 44 b -12.5501 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 45 9 -11.3509 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 46 ; -0.8006 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 47 D -11.2371 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 48 L -10.8969 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 49 y 0.2160 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 50 ‘ -12.1201 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 51 \ -11.0413 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 52 R -11.0281 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 53 < -1.5735 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 54 4 -10.8976 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 55 8 -11.3710 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 56 0 -11.3618 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 57 A -11.3071 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 58 E -11.2078 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 59 B -11.1234 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 60 v 0.5474 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 61 k -12.4875 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 62 J -10.9677 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 63 U -10.9408 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 64 j -12.0020 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 65 ( -12.3256 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 66 7 -11.0403 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 67 § -11.3445 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 68 $ -16.6682 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 69 € -12.4766 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 70 / -10.9826 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 71 C -11.3484 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 72 * -12.3657 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 73 ” -11.8067 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 74 ? -12.6229 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 75 { -11.6469 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 76 } -11.5804 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 77 , 22.0319 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 78 I -11.1186 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 79 ° -12.3470 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 80 K -11.1531 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 81 H -10.9859 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 82 q 0.1394 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 83 & -12.3023 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 84 ’ -11.9169 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 85 [ -12.4789 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 86 - 10.0395 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 87 Y -11.0718 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 88 Q -11.2998 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 89 " -11.9125 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 90 ! -12.0785 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 91 x 0.2393 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 92 ) -12.4180 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 93 = 3.3498 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 94 + -0.5551 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 95 X -11.0690 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 96 » 4.6823 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 97 ' -11.7150 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 98 ¢ 0.4068 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 99 Z -11.0937 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 100 > -1.2348 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 101 ® -7.9905 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 102 © -8.0836 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 103 ] -12.5579 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 104 é -12.2711 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 105 z 0.0371 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 106 _ 34.8705 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 19 s 21.2012 30.7419 107 ¥ -10.9268 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 1 t -8.6464 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 2 h -12.7120 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 3 a 0.1259 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 4 n -0.0506 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 5 P -11.1476 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 6 o -0.0903 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 7 e 0.1447 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 8 : -0.6829 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 9 r 0.2663 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 10 l -12.6944 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 11 i -11.9022 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 12 1 -10.8404 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 13 | -12.4287 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 14 N -10.9120 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 15 f -12.5409 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 16 g -1.3481 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 17 d -12.5569 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 18 W -11.0729 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 19 s 0.0120 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 20 c 0.0460 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 21 u -0.0489 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 22 3 -11.3202 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 23 ~ 9.8078 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 24 # -11.2149 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 25 O -11.4046 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 26 ` -11.6828 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 27 @ -7.0772 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 28 F -10.9887 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 29 S -11.3147 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 30 p 0.0028 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 31 “ -11.5987 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 32 % -11.2830 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 33 £ -11.1470 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 34 . 21.9766 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 35 2 -11.4278 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 36 5 -10.8120 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 37 m 0.0566 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 38 V -11.0656 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 39 6 -10.9915 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 40 w 0.2859 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 41 T -11.0516 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 42 M -10.8820 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 43 G -11.4536 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 44 b -12.2085 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 45 9 -11.5243 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 46 ; -0.6094 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 47 D -11.1778 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 48 L -11.2659 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 49 y 0.0573 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 50 ‘ -11.9345 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 51 \ -11.0410 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 52 R -11.3456 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 53 < -1.3640 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 54 4 -11.1089 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 55 8 -11.7601 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 56 0 -11.3974 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 57 A -11.3060 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 58 E -11.1430 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 59 B -11.1332 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 60 v 0.3277 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 61 k -12.7063 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 62 J -11.0021 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 63 U -10.9786 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 64 j -12.1841 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 65 ( -12.3095 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 66 7 -10.9764 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 67 § -11.3060 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 68 $ -16.4087 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 69 € -12.3004 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 70 / -11.2362 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 71 C -11.6371 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 72 * -12.2070 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 73 ” -11.9380 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 74 ? -12.0306 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 75 { -11.5752 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 76 } -11.8342 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 77 , 22.1797 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 78 I -11.1161 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 79 ° -12.5760 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 80 K -11.1172 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 81 H -10.9927 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 82 q 0.1436 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 83 & -12.5045 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 84 ’ -11.8075 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 85 [ -12.5122 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 86 - 10.0435 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 87 Y -10.9792 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 88 Q -11.1925 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 89 " -11.8640 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 90 ! -12.2083 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 91 x 0.5521 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 92 ) -12.8069 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 93 = 3.1499 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 94 + -0.3484 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 95 X -11.2136 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 96 » 4.9965 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 97 ' -11.8291 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 98 ¢ 0.1968 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 99 Z -10.8498 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 100 > -1.9219 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 101 ® -8.0810 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 102 © -8.1516 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 103 ] -12.3593 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 104 é -11.9637 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 105 z -0.0860 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 106 _ 34.4428 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 20 c 25.8458 30.7419 107 ¥ -10.9307 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 1 t -9.0401 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 2 h -12.8409 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 3 a -0.3283 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 4 n -0.2037 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 5 P -11.6460 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 6 o -0.2751 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 7 e -0.6129 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 8 : -1.0482 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 9 r -0.3332 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 10 l -12.4572 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 11 i -12.3206 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 12 1 -11.1794 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 13 | -12.9347 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 14 N -11.6794 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 15 f -12.8084 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 16 g -1.8815 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 17 d -12.8152 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 18 W -11.3582 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 19 s -0.1342 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 20 c -0.4888 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 21 u 0.0015 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 22 3 -11.6306 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 23 ~ 9.4697 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 24 # -11.7800 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 25 O -11.8543 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 26 ` -12.8808 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 27 @ -7.4695 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 28 F -11.4438 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 29 S -11.4071 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 30 p -0.5003 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 31 “ -12.1828 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 32 % -11.4950 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 33 £ -11.5626 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 34 . 21.7262 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 35 2 -11.7051 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 36 5 -11.7031 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 37 m -0.0990 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 38 V -11.4753 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 39 6 -11.6080 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 40 w 0.0998 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 41 T -11.4210 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 42 M -11.2821 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 43 G -11.3225 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 44 b -12.8496 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 45 9 -11.6681 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 46 ; -0.6760 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 47 D -11.6796 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 48 L -11.1485 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 49 y 0.2238 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 50 ‘ -12.1374 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 51 \ -11.2538 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 52 R -11.7422 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 53 < -1.7760 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 54 4 -11.6945 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 55 8 -11.6662 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 56 0 -11.7004 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 57 A -11.6014 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 58 E -11.2504 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 59 B -11.8608 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 60 v 0.0323 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 61 k -12.8732 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 62 J -11.7045 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 63 U -10.9423 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 64 j -12.3346 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 65 ( -12.6494 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 66 7 -11.2960 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 67 § -11.4381 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 68 $ -16.6415 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 69 € -12.7477 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 70 / -11.4446 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 71 C -11.5264 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 72 * -12.7310 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 73 ” -11.9147 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 74 ? -12.6838 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 75 { -12.3001 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 76 } -12.2232 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 77 , 22.0399 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 78 I -11.4845 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 79 ° -13.2183 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 80 K -11.4576 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 81 H -11.3897 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 82 q -0.2577 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 83 & -12.5045 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 84 ’ -12.2126 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 85 [ -12.6185 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 86 - 9.8988 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 87 Y -11.3691 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 88 Q -11.7127 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 89 " -12.1357 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 90 ! -12.7323 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 91 x 0.1832 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 92 ) -12.6164 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 93 = 3.0178 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 94 + -0.7250 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 95 X -11.3014 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 96 » 4.7147 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 97 ' -12.3225 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 98 ¢ -0.1997 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 99 Z -11.5392 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 100 > -1.7121 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 101 ® -8.1113 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 102 © -8.2819 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 103 ] -12.6944 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 104 é -12.6928 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 105 z -0.0005 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 106 _ 34.5042 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 21 u 27.0643 30.4371 107 ¥ -11.2774 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 1 t 2.7259 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 2 h -1.4733 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 3 a 11.3607 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 4 n 11.0317 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 5 P -0.1764 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 6 o 11.0309 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 7 e 11.1500 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 8 : 10.4839 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 9 r 10.8925 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 10 l -1.0487 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 11 i -1.0769 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 12 1 0.2140 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 13 | -1.4188 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 14 N 0.0559 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 15 f -0.7486 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 16 g 9.6383 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 17 d -1.3502 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 18 W 0.3499 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 19 s 11.3498 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 20 c 11.2592 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 21 u 11.3109 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 22 3 -0.0427 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 23 ~ 20.6772 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 24 # -0.0240 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 25 O 0.2144 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 26 ` -0.8677 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 27 @ 4.1510 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 28 F -0.0177 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 29 S -0.1332 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 30 p 11.1974 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 31 “ -0.6625 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 32 % 0.2401 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 33 £ 0.3128 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 34 . 33.0674 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 35 2 0.1846 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 36 5 0.3544 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 37 m 11.4507 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 38 V 0.1819 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 39 6 -0.0547 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 40 w 11.6000 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 41 T 0.1367 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 42 M 0.3039 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 43 G -0.0623 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 44 b -0.9230 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 45 9 -0.0270 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 46 ; 10.7002 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 47 D -0.2855 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 48 L 0.3228 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 49 y 11.9102 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 50 ‘ -0.8200 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 51 \ 0.3424 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 52 R 0.0613 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 53 < 9.7638 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 54 4 0.2963 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 55 8 0.2113 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 56 0 -0.1095 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 57 A -0.2535 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 58 E -0.1674 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 59 B -0.1464 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 60 v 11.5902 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 61 k -1.0111 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 62 J 0.1141 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 63 U 0.0218 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 64 j -0.8469 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 65 ( -1.4895 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 66 7 0.0545 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 67 § -0.0073 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 68 $ -4.9111 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 69 € -1.5190 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 70 / -0.1366 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 71 C -0.0446 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 72 * -1.1800 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 73 ” -0.6363 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 74 ? -1.5221 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 75 { -0.7458 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 76 } -1.0250 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 77 , 33.3567 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 78 I 0.0430 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 79 ° -1.3208 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 80 K 0.0031 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 81 H 0.0059 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 82 q 11.2494 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 83 & -1.0732 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 84 ’ -0.8289 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 85 [ -1.0320 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 86 - 21.3533 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 87 Y -0.0329 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 88 Q 0.0519 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 89 " -0.6966 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 90 ! -0.9430 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 91 x 11.3884 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 92 ) -1.1537 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 93 = 14.6140 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 94 + 10.8519 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 95 X 0.1049 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 96 » 16.1716 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 97 ' -0.5203 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 98 ¢ 11.3657 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 99 Z -0.0921 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 100 > 9.6101 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 101 ® 3.3666 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 102 © 3.1806 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 103 ] -1.3397 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 104 é -0.9459 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 105 z 11.2586 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 106 _ 45.9460 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 22 3 25.2581 42.0000 107 ¥ -0.1229 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 1 t -17.8526 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 2 h -22.1283 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 3 a -9.7122 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 4 n -10.0011 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 5 P -20.8676 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 6 o -9.5377 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 7 e -9.8940 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 8 : -10.4954 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 9 r -9.3846 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 10 l -22.1518 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 11 i -21.7603 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 12 1 -20.4608 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 13 | -21.9429 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 14 N -20.7051 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 15 f -22.3062 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 16 g -11.4173 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 17 d -22.1370 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 18 W -20.8171 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 19 s -9.5095 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 20 c -9.4387 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 21 u -9.5590 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 22 3 -20.9022 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 23 ~ 0.2038 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 24 # -20.8741 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 25 O -20.6514 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 26 ` -21.9312 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 27 @ -17.0500 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 28 F -20.6926 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 29 S -21.1005 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 30 p -9.8345 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 31 “ -21.5364 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 32 % -21.0828 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 33 £ -20.9151 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 34 . 12.2963 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 35 2 -21.2769 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 36 5 -20.8221 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 37 m -9.6042 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 38 V -20.8046 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 39 6 -20.6772 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 40 w -9.3112 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 41 T -20.9408 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 42 M -20.7075 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 43 G -20.8309 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 44 b -22.3606 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 45 9 -20.8443 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 46 ; -9.9795 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 47 D -21.0828 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 48 L -20.6011 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 49 y -9.3890 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 50 ‘ -21.4393 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 51 \ -20.7285 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 52 R -21.2772 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 53 < -10.6934 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 54 4 -20.6415 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 55 8 -21.2553 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 56 0 -20.7921 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 57 A -21.0789 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 58 E -20.7477 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 59 B -20.9703 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 60 v -9.4062 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 61 k -22.3234 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 62 J -20.4076 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 63 U -20.8571 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 64 j -21.7648 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 65 ( -22.2556 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 66 7 -20.7048 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 67 § -21.3550 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 68 $ -25.5964 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 69 € -22.4267 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 70 / -20.7645 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 71 C -20.7127 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 72 * -22.0898 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 73 ” -21.3122 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 74 ? -21.8115 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 75 { -21.7426 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 76 } -21.4864 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 77 , 12.6079 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 78 I -20.6270 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 79 ° -22.1539 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 80 K -20.7231 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 81 H -20.8740 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 82 q -9.6038 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 83 & -22.1263 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 84 ’ -21.4198 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 85 [ -22.0265 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 86 - 0.6473 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 87 Y -20.8143 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 88 Q -20.9072 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 89 " -21.3181 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 90 ! -22.1709 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 91 x -9.4197 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 92 ) -22.2306 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 93 = -6.4033 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 94 + -10.1367 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 95 X -20.5464 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 96 » -4.4785 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 97 ' -21.5095 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 98 ¢ -9.5466 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 99 Z -20.6472 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 100 > -11.2745 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 101 ® -17.7701 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 102 © -17.4107 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 103 ] -22.0065 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 104 é -21.9276 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 105 z -9.5571 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 106 _ 25.0228 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 23 ~ 23.1394 7.8321 107 ¥ -20.7447 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 1 t 2.9446 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 2 h -1.0926 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 3 a 11.1576 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 4 n 11.3060 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 5 P -0.0563 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 6 o 11.2951 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 7 e 11.3994 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 8 : 10.6545 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 9 r 11.1633 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 10 l -1.2767 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 11 i -0.8425 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 12 1 -0.2200 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 13 | -0.9866 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 14 N 0.0757 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 15 f -1.0926 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 16 g 9.4760 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 17 d -1.2080 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 18 W 0.1765 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 19 s 11.1856 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 20 c 11.2505 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 21 u 11.5248 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 22 3 0.0471 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 23 ~ 21.1804 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 24 # 0.0356 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 25 O -0.1879 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 26 ` -1.1007 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 27 @ 4.1530 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 28 F 0.3006 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 29 S 0.0181 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 30 p 11.0178 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 31 “ -0.3619 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 32 % 0.2494 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 33 £ -0.0642 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 34 . 33.2991 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 35 2 -0.0668 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 36 5 0.1813 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 37 m 11.6799 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 38 V 0.0901 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 39 6 -0.1805 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 40 w 11.6713 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 41 T 0.5955 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 42 M 0.4986 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 43 G 0.0654 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 44 b -1.4130 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 45 9 -0.2677 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 46 ; 10.7286 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 47 D 0.1099 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 48 L 0.2251 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 49 y 11.6547 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 50 ‘ -0.2355 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 51 \ 0.1399 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 52 R -0.0965 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 53 < 10.3589 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 54 4 0.2470 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 55 8 -0.0687 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 56 0 0.0903 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 57 A 0.0917 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 58 E 0.3221 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 59 B 0.2461 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 60 v 11.7483 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 61 k -1.2193 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 62 J 0.0578 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 63 U -0.0074 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 64 j -0.7080 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 65 ( -0.8716 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 66 7 0.4784 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 67 § -0.3795 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 68 $ -5.2491 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 69 € -0.8757 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 70 / 0.1247 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 71 C -0.1394 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 72 * -1.3422 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 73 ” -0.6798 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 74 ? -1.1248 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 75 { -0.2898 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 76 } -0.4051 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 77 , 33.3523 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 78 I 0.0906 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 79 ° -1.1142 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 80 K 0.3572 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 81 H 0.1107 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 82 q 11.3362 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 83 & -0.9786 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 84 ’ -0.6929 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 85 [ -1.2616 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 86 - 21.2173 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 87 Y 0.0701 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 88 Q -0.1807 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 89 " -0.4767 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 90 ! -0.7130 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 91 x 11.6500 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 92 ) -1.3553 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 93 = 14.2546 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 94 + 11.2305 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 95 X 0.1370 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 96 » 16.2355 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 97 ' -0.7211 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 98 ¢ 11.3334 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 99 Z 0.3274 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 100 > 9.6341 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 101 ® 2.9475 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 102 © 3.4481 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 103 ] -1.1757 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 104 é -0.9455 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 105 z 11.1883 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 106 _ 45.8252 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 24 # 31.6505 42.0000 107 ¥ -0.0117 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 1 t 2.5376 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 2 h -1.2009 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 3 a 11.3052 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 4 n 11.1630 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 5 P -0.0226 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 6 o 11.1332 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 7 e 11.1254 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 8 : 10.5677 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 9 r 11.3184 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 10 l -1.3103 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 11 i -1.0588 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 12 1 0.0833 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 13 | -1.4708 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 14 N 0.0578 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 15 f -1.6662 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 16 g 9.4105 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 17 d -1.1941 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 18 W 0.4573 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 19 s 11.4150 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 20 c 11.2584 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 21 u 11.4701 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 22 3 0.0346 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 23 ~ 20.8241 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 24 # -0.1615 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 25 O -0.1052 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 26 ` -1.0050 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 27 @ 4.0790 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 28 F 0.5339 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 29 S 0.1491 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 30 p 11.2839 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 31 “ -0.1213 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 32 % -0.1140 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 33 £ -0.0900 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 34 . 32.8330 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 35 2 -0.2263 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 36 5 0.2121 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 37 m 11.2940 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 38 V 0.5700 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 39 6 0.0519 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 40 w 11.8500 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 41 T 0.0502 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 42 M -0.0016 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 43 G 0.0889 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 44 b -1.2646 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 45 9 0.0514 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 46 ; 10.3773 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 47 D 0.0323 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 48 L 0.3100 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 49 y 11.6928 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 50 ‘ -0.5287 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 51 \ 0.3597 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 52 R 0.0349 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 53 < 9.8450 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 54 4 0.0090 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 55 8 0.1772 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 56 0 0.0431 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 57 A -0.2609 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 58 E 0.1046 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 59 B 0.0755 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 60 v 11.7154 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 61 k -1.2644 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 62 J 0.1075 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 63 U 0.1238 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 64 j -0.9522 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 65 ( -1.0251 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 66 7 0.2500 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 67 § 0.1200 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 68 $ -5.5422 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 69 € -1.0883 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 70 / 0.1481 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 71 C -0.0654 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 72 * -1.5684 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 73 ” -0.7227 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 74 ? -1.2870 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 75 { -0.6429 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 76 } -0.5590 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 77 , 33.3922 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 78 I 0.4856 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 79 ° -1.5243 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 80 K 0.1592 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 81 H 0.2725 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 82 q 11.2270 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 83 & -1.3482 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 84 ’ -0.6631 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 85 [ -1.5546 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 86 - 21.2975 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 87 Y 0.2669 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 88 Q -0.1570 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 89 " -1.0085 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 90 ! -1.0766 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 91 x 11.4942 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 92 ) -1.0015 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 93 = 14.9059 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 94 + 10.9971 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 95 X -0.2241 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 96 » 15.8860 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 97 ' -0.4536 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 98 ¢ 11.4286 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 99 Z 0.2564 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 100 > 10.0233 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 101 ® 3.5012 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 102 © 3.3939 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 103 ] -1.2920 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 104 é -0.9027 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 105 z 11.5623 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 106 _ 46.0320 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 25 O 36.8210 42.0000 107 ¥ 0.0093 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 1 t 3.9208 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 2 h -0.1765 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 3 a 12.3256 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 4 n 12.2083 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 5 P 1.2079 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 6 o 12.3684 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 7 e 12.3192 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 8 : 11.8239 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 9 r 12.2295 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 10 l -0.3112 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 11 i 0.0203 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 12 1 1.1864 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 13 | -0.0125 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 14 N 1.0278 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 15 f -0.1510 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 16 g 10.5004 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 17 d -0.3879 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 18 W 1.2409 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 19 s 12.2159 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 20 c 12.2867 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 21 u 12.4387 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 22 3 1.0381 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 23 ~ 22.2300 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 24 # 1.0543 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 25 O 0.9536 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 26 ` 0.0711 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 27 @ 5.2012 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 28 F 1.3982 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 29 S 1.2996 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 30 p 12.2071 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 31 “ 0.3865 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 32 % 0.9377 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 33 £ 1.0650 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 34 . 34.1623 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 35 2 0.9632 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 36 5 1.3089 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 37 m 12.6297 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 38 V 1.0792 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 39 6 0.5860 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 40 w 12.3253 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 41 T 1.2704 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 42 M 1.3729 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 43 G 1.0200 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 44 b -0.0343 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 45 9 1.0657 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 46 ; 11.7483 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 47 D 1.1579 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 48 L 1.2780 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 49 y 12.4541 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 50 ‘ 0.2520 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 51 \ 1.1699 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 52 R 0.9121 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 53 < 10.5063 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 54 4 1.0700 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 55 8 1.0584 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 56 0 1.3623 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 57 A 1.3342 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 58 E 0.9933 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 59 B 0.9445 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 60 v 12.3671 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 61 k -0.2251 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 62 J 1.3992 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 63 U 1.1484 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 64 j 0.1715 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 65 ( -0.2842 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 66 7 1.2124 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 67 § 0.9318 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 68 $ -4.3633 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 69 € -0.4551 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 70 / 1.0466 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 71 C 1.0334 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 72 * -0.1891 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 73 ” 0.8320 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 74 ? -0.1961 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 75 { 0.4606 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 76 } 0.3217 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 77 , 34.4208 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 78 I 1.0259 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 79 ° -0.3745 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 80 K 1.0674 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 81 H 1.3027 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 82 q 12.0402 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 83 & -0.1585 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 84 ’ 0.3973 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 85 [ -0.2654 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 86 - 22.5221 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 87 Y 1.2066 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 88 Q 1.0199 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 89 " 0.3767 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 90 ! -0.0000 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 91 x 12.5220 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 92 ) -0.2052 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 93 = 15.3708 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 94 + 11.9381 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 95 X 1.5832 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 96 » 17.0649 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 97 ' 0.4678 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 98 ¢ 12.2116 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 99 Z 1.5269 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 100 > 11.0843 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 101 ® 4.1736 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 102 © 4.6166 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 103 ] 0.0002 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 104 é -0.2735 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 105 z 12.5517 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 106 _ 46.7877 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 26 ` 12.2470 8.4198 107 ¥ 1.4435 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 1 t -1.2140 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 2 h -5.4609 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 3 a 7.2810 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 4 n 7.3111 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 5 P -4.3524 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 6 o 7.0048 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 7 e 6.9784 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 8 : 6.6203 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 9 r 6.9528 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 10 l -5.3976 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 11 i -5.0752 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 12 1 -3.9567 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 13 | -5.2765 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 14 N -4.1245 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 15 f -5.2377 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 16 g 5.5361 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 17 d -5.3461 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 18 W -4.1878 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 19 s 6.6847 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 20 c 7.0373 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 21 u 7.4498 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 22 3 -4.3125 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 23 ~ 16.8431 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 24 # -3.9148 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 25 O -3.9824 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 26 ` -5.5218 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 27 @ 0.2944 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 28 F -3.7386 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 29 S -4.3031 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 30 p 7.3231 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 31 “ -4.6373 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 32 % -4.1213 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 33 £ -3.9019 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 34 . 28.9785 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 35 2 -3.9607 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 36 5 -4.0627 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 37 m 6.9288 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 38 V -3.8837 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 39 6 -4.1581 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 40 w 7.4504 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 41 T -3.8509 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 42 M -4.2049 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 43 G -4.0387 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 44 b -5.5743 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 45 9 -4.3841 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 46 ; 6.1947 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 47 D -4.4207 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 48 L -4.0769 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 49 y 7.4753 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 50 ‘ -4.5494 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 51 \ -3.8658 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 52 R -4.1631 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 53 < 5.4275 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 54 4 -4.3102 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 55 8 -4.1780 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 56 0 -4.0942 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 57 A -4.3141 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 58 E -4.1985 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 59 B -4.4889 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 60 v 7.4483 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 61 k -5.5013 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 62 J -4.0752 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 63 U -3.8230 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 64 j -5.2372 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 65 ( -5.6571 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 66 7 -3.8288 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 67 § -4.5319 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 68 $ -9.3637 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 69 € -5.3578 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 70 / -4.0654 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 71 C -4.0530 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 72 * -5.1524 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 73 ” -4.7285 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 74 ? -5.4430 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 75 { -4.4919 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 76 } -4.5338 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 77 , 28.9947 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 78 I -4.0291 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 79 ° -5.3745 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 80 K -3.9605 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 81 H -3.7695 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 82 q 6.8965 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 83 & -5.5302 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 84 ’ -4.7212 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 85 [ -5.0963 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 86 - 17.3385 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 87 Y -3.9787 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 88 Q -4.0477 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 89 " -4.8802 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 90 ! -5.2581 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 91 x 7.5214 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 92 ) -5.0589 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 93 = 10.0872 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 94 + 6.9910 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 95 X -4.1901 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 96 » 12.3735 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 97 ' -4.6141 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 98 ¢ 6.9704 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 99 Z -4.0197 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 100 > 5.6709 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 101 ® -0.7870 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 102 © -0.9745 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 103 ] -5.4744 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 104 é -5.3454 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 105 z 7.4509 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 106 _ 41.7466 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 27 @ 38.4057 39.9207 107 ¥ -3.5882 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 1 t 2.6431 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 2 h -1.1972 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 3 a 10.8970 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 4 n 11.2011 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 5 P -0.1210 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 6 o 11.3001 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 7 e 11.0229 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 8 : 10.4684 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 9 r 11.1680 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 10 l -1.6064 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 11 i -1.1561 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 12 1 0.1807 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 13 | -1.8158 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 14 N 0.4059 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 15 f -1.3667 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 16 g 9.6225 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 17 d -1.6219 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 18 W 0.2055 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 19 s 10.9340 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 20 c 10.8404 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 21 u 11.3570 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 22 3 0.1142 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 23 ~ 20.6252 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 24 # -0.4629 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 25 O -0.1615 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 26 ` -1.0552 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 27 @ 3.7284 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 28 F -0.0446 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 29 S -0.2404 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 30 p 11.2881 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 31 “ -0.7531 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 32 % -0.2167 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 33 £ -0.1568 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 34 . 32.8122 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 35 2 -0.0578 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 36 5 -0.2339 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 37 m 11.0890 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 38 V 0.1941 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 39 6 0.1444 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 40 w 11.5335 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 41 T 0.0697 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 42 M 0.0601 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 43 G 0.0365 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 44 b -1.3053 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 45 9 -0.3259 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 46 ; 10.7255 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 47 D -0.1593 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 48 L 0.0381 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 49 y 11.5477 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 50 ‘ -0.6662 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 51 \ -0.0471 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 52 R -0.4183 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 53 < 9.6271 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 54 4 -0.2210 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 55 8 -0.2284 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 56 0 -0.3827 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 57 A -0.0985 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 58 E -0.1467 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 59 B -0.2432 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 60 v 11.2222 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 61 k -1.4063 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 62 J 0.0634 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 63 U -0.3181 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 64 j -1.3351 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 65 ( -1.5790 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 66 7 0.2965 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 67 § -0.2741 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 68 $ -5.5344 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 69 € -1.5858 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 70 / 0.1274 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 71 C -0.2233 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 72 * -1.2273 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 73 ” -0.4362 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 74 ? -1.1278 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 75 { -0.9145 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 76 } -0.8892 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 77 , 33.2637 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 78 I 0.0097 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 79 ° -1.1501 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 80 K -0.0856 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 81 H -0.0206 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 82 q 11.1610 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 83 & -1.4957 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 84 ’ -0.5292 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 85 [ -1.4171 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 86 - 21.1940 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 87 Y 0.0572 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 88 Q -0.3543 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 89 " -1.3507 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 90 ! -1.2196 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 91 x 11.4782 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 92 ) -1.0956 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 93 = 14.4642 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 94 + 10.6789 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 95 X -0.1927 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 96 » 16.0295 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 97 ' -0.9929 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 98 ¢ 11.2385 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 99 Z 0.0500 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 100 > 9.5448 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 101 ® 3.1742 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 102 © 3.4748 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 103 ] -1.7799 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 104 é -1.2138 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 105 z 11.4921 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 106 _ 45.6645 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 28 F 27.1840 41.8148 107 ¥ -0.0829 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 1 t 2.7507 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 2 h -1.1354 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 3 a 11.2519 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 4 n 11.1449 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 5 P 0.0965 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 6 o 11.1120 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 7 e 11.4285 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 8 : 10.7074 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 9 r 11.4017 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 10 l -1.2704 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 11 i -0.9159 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 12 1 0.0222 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 13 | -1.2796 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 14 N -0.1608 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 15 f -1.2704 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 16 g 9.4961 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 17 d -1.4039 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 18 W 0.3037 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 19 s 11.1717 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 20 c 11.3085 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 21 u 11.5939 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 22 3 -0.2244 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 23 ~ 21.0236 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 24 # -0.2144 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 25 O -0.0606 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 26 ` -1.1473 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 27 @ 3.9203 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 28 F 0.1362 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 29 S 0.1313 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 30 p 11.2595 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 31 “ -0.7411 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 32 % 0.0123 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 33 £ 0.1302 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 34 . 32.7499 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 35 2 0.0595 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 36 5 0.1100 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 37 m 11.3941 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 38 V 0.1751 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 39 6 -0.2749 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 40 w 11.4639 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 41 T 0.4163 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 42 M 0.3697 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 43 G -0.1947 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 44 b -1.3796 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 45 9 0.4117 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 46 ; 10.6483 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 47 D -0.1942 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 48 L 0.3206 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 49 y 11.7523 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 50 ‘ -0.4925 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 51 \ 0.2889 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 52 R -0.1375 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 53 < 9.8764 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 54 4 0.2669 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 55 8 0.0109 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 56 0 0.1288 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 57 A 0.2825 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 58 E 0.2112 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 59 B 0.0446 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 60 v 11.5481 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 61 k -1.3683 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 62 J 0.3759 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 63 U 0.0934 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 64 j -0.8709 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 65 ( -1.6561 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 66 7 0.1107 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 67 § 0.0461 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 68 $ -5.2088 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 69 € -1.2732 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 70 / 0.0132 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 71 C 0.1356 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 72 * -1.1873 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 73 ” -0.6634 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 74 ? -0.8110 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 75 { -0.4234 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 76 } -0.6752 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 77 , 33.2634 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 78 I -0.1686 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 79 ° -1.2509 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 80 K -0.0440 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 81 H -0.0973 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 82 q 11.4362 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 83 & -1.4288 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 84 ’ -0.4487 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 85 [ -1.2894 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 86 - 21.5772 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 87 Y 0.2752 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 88 Q 0.0296 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 89 " -0.6201 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 90 ! -0.9712 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 91 x 11.8908 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 92 ) -1.1801 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 93 = 14.8264 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 94 + 10.9087 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 95 X 0.1866 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 96 » 15.9282 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 97 ' -0.5163 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 98 ¢ 11.1162 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 99 Z 0.1507 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 100 > 9.8218 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 101 ® 3.4347 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 102 © 3.4645 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 103 ] -1.1344 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 104 é -1.0471 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 105 z 11.5082 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 106 _ 45.8220 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 29 S 25.4433 42.0000 107 ¥ 0.2147 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 1 t -8.6968 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 2 h -12.7905 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 3 a 0.0457 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 4 n 0.0670 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 5 P -11.4326 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 6 o 0.1954 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 7 e -0.0951 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 8 : -0.4923 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 9 r 0.0936 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 10 l -12.3888 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 11 i -12.1790 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 12 1 -10.7233 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 13 | -12.5924 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 14 N -11.2028 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 15 f -12.2887 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 16 g -1.5234 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 17 d -12.5371 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 18 W -10.9260 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 19 s 0.0831 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 20 c -0.2130 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 21 u 0.1948 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 22 3 -11.1187 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 23 ~ 9.7924 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 24 # -11.3383 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 25 O -11.1562 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 26 ` -12.3375 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 27 @ -6.8312 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 28 F -11.2272 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 29 S -10.9740 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 30 p 0.3566 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 31 “ -11.8780 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 32 % -11.0727 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 33 £ -11.2733 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 34 . 21.8128 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 35 2 -11.3323 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 36 5 -11.0454 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 37 m -0.0370 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 38 V -10.8908 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 39 6 -11.1663 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 40 w 0.2170 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 41 T -10.7367 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 42 M -10.6928 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 43 G -11.2729 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 44 b -12.3754 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 45 9 -11.1711 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 46 ; -0.6190 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 47 D -11.2461 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 48 L -10.9797 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 49 y 0.4100 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 50 ‘ -11.4930 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 51 \ -11.0359 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 52 R -11.2643 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 53 < -1.3210 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 54 4 -10.9616 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 55 8 -11.2714 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 56 0 -11.4729 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 57 A -11.0920 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 58 E -10.9397 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 59 B -11.3038 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 60 v 0.0020 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 61 k -12.6281 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 62 J -10.8807 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 63 U -11.5318 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 64 j -12.3736 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 65 ( -12.5731 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 66 7 -10.8581 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 67 § -11.2628 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 68 $ -16.2082 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 69 € -12.4414 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 70 / -11.0035 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 71 C -11.0317 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 72 * -12.3805 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 73 ” -11.7463 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 74 ? -12.3063 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 75 { -11.6261 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 76 } -11.7459 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 77 , 22.2273 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 78 I -11.1128 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 79 ° -12.5468 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 80 K -11.1270 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 81 H -10.9739 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 82 q -0.0446 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 83 & -12.5548 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 84 ’ -11.7051 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 85 [ -12.1773 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 86 - 10.1269 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 87 Y -11.2435 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 88 Q -11.5330 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 89 " -12.3156 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 90 ! -12.3803 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 91 x 0.2511 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 92 ) -12.5743 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 93 = 3.2609 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 94 + -0.2519 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 95 X -11.0643 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 96 » 4.7607 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 97 ' -12.2920 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 98 ¢ 0.2498 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 99 Z -11.2744 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 100 > -1.4484 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 101 ® -7.7289 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 102 © -7.8287 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 103 ] -12.6126 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 104 é -12.5711 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 105 z 0.3653 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 106 _ 34.5312 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 30 p 28.4025 42.7197 107 ¥ -11.1556 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 1 t 3.1923 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 2 h -0.6559 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 3 a 11.5991 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 4 n 11.7210 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 5 P 0.4156 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 6 o 11.8914 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 7 e 11.7362 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 8 : 11.6861 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 9 r 11.7837 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 10 l -0.8102 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 11 i -0.6214 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 12 1 0.7129 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 13 | -0.8365 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 14 N 0.5826 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 15 f -0.9092 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 16 g 10.2379 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 17 d -0.7049 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 18 W 0.8748 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 19 s 11.7541 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 20 c 11.6266 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 21 u 12.0719 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 22 3 0.3057 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 23 ~ 21.3749 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 24 # 0.5742 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 25 O 0.7375 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 26 ` -0.5577 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 27 @ 4.8665 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 28 F 0.9245 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 29 S 0.5369 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 30 p 11.8308 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 31 “ -0.2155 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 32 % 0.6011 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 33 £ 0.5547 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 34 . 33.5596 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 35 2 0.4295 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 36 5 0.6643 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 37 m 11.8936 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 38 V 0.6291 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 39 6 0.6108 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 40 w 12.1598 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 41 T 0.8287 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 42 M 0.8324 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 43 G 0.4738 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 44 b -0.8870 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 45 9 0.5245 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 46 ; 11.2311 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 47 D 0.4933 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 48 L 0.7709 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 49 y 11.9449 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 50 ‘ 0.0014 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 51 \ 0.4156 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 52 R 0.6101 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 53 < 10.4882 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 54 4 0.7699 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 55 8 0.7386 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 56 0 0.7055 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 57 A 0.4392 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 58 E 0.7873 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 59 B 0.4224 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 60 v 12.3889 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 61 k -0.8972 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 62 J 0.9400 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 63 U 0.8007 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 64 j -0.5977 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 65 ( -1.0489 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 66 7 0.7427 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 67 § 0.6257 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 68 $ -4.6823 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 69 € -0.4285 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 70 / 0.5579 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 71 C 0.4252 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 72 * -0.8064 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 73 ” 0.3142 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 74 ? -0.3181 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 75 { -0.1052 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 76 } -0.0235 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 77 , 33.9131 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 78 I 0.8262 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 79 ° -1.0287 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 80 K 0.7474 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 81 H 0.7220 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 82 q 11.8039 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 83 & -0.6104 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 84 ’ 0.2548 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 85 [ -0.5754 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 86 - 21.7022 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 87 Y 0.4303 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 88 Q 0.5234 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 89 " 0.0126 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 90 ! -0.5297 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 91 x 11.9402 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 92 ) -0.4602 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 93 = 15.3076 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 94 + 11.5775 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 95 X 0.8320 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 96 » 16.4660 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 97 ' -0.3423 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 98 ¢ 11.7876 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 99 Z 0.7008 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 100 > 10.5631 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 101 ® 3.9455 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 102 © 4.1240 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 103 ] -0.1200 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 104 é -0.5287 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 105 z 12.1752 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 106 _ 46.3954 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 31 “ 22.7246 18.1765 107 ¥ 0.9429 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 1 t 2.6853 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 2 h -1.1954 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 3 a 11.4003 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 4 n 11.4608 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 5 P 0.1306 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 6 o 11.3560 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 7 e 11.1963 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 8 : 10.9471 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 9 r 11.5863 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 10 l -1.3772 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 11 i -0.5647 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 12 1 0.3205 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 13 | -1.0840 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 14 N 0.4339 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 15 f -1.2294 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 16 g 9.5279 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 17 d -1.0503 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 18 W 0.5229 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 19 s 11.3964 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 20 c 11.3437 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 21 u 11.3726 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 22 3 0.1086 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 23 ~ 20.8075 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 24 # 0.0959 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 25 O 0.1980 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 26 ` -0.8070 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 27 @ 4.2258 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 28 F 0.1174 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 29 S -0.1351 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 30 p 11.3908 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 31 “ -0.6325 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 32 % -0.2256 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 33 £ -0.2609 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 34 . 33.0028 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 35 2 -0.0134 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 36 5 0.5548 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 37 m 11.3844 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 38 V 0.1220 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 39 6 0.0981 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 40 w 11.7051 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 41 T 0.0059 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 42 M 0.0564 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 43 G -0.0917 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 44 b -1.3656 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 45 9 0.1045 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 46 ; 10.6651 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 47 D 0.0482 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 48 L -0.0833 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 49 y 11.2992 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 50 ‘ -0.1718 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 51 \ 0.0477 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 52 R 0.2440 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 53 < 9.4457 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 54 4 -0.1585 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 55 8 0.0654 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 56 0 -0.1397 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 57 A 0.0465 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 58 E 0.3294 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 59 B -0.0337 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 60 v 11.4493 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 61 k -1.6953 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 62 J 0.0294 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 63 U 0.5275 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 64 j -0.8857 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 65 ( -1.1843 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 66 7 0.1363 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 67 § 0.1541 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 68 $ -5.2404 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 69 € -1.0946 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 70 / 0.1352 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 71 C 0.0356 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 72 * -1.1580 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 73 ” -0.7050 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 74 ? -0.8978 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 75 { -0.6126 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 76 } -0.5151 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 77 , 33.5386 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 78 I 0.1021 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 79 ° -1.3430 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 80 K 0.4486 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 81 H 0.2781 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 82 q 11.3304 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 83 & -1.0607 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 84 ’ -0.3478 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 85 [ -1.2634 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 86 - 21.6984 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 87 Y 0.1456 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 88 Q 0.1729 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 89 " -0.5983 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 90 ! -0.7743 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 91 x 11.5780 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 92 ) -1.6390 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 93 = 14.3341 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 94 + 11.0355 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 95 X 0.2916 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 96 » 16.2282 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 97 ' -0.5717 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 98 ¢ 11.2114 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 99 Z 0.3745 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 100 > 9.6645 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 101 ® 3.7276 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 102 © 3.6212 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 103 ] -0.8583 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 104 é -1.0036 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 105 z 11.7854 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 106 _ 45.9185 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 32 % 38.1804 42.0000 107 ¥ 0.1054 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 1 t 2.3821 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 2 h -1.1142 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 3 a 10.9782 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 4 n 11.2776 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 5 P -0.0015 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 6 o 11.4162 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 7 e 11.3970 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 8 : 10.7602 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 9 r 11.1844 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 10 l -1.3056 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 11 i -0.8567 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 12 1 0.0241 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 13 | -1.4405 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 14 N 0.2741 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 15 f -1.1832 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 16 g 9.8667 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 17 d -1.2603 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 18 W 0.2990 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 19 s 11.3155 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 20 c 11.4747 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 21 u 11.3822 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 22 3 0.1125 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 23 ~ 21.1038 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 24 # 0.1553 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 25 O -0.0943 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 26 ` -1.0359 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 27 @ 4.1185 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 28 F 0.0761 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 29 S -0.2570 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 30 p 11.3476 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 31 “ -0.7506 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 32 % 0.2311 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 33 £ 0.1860 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 34 . 32.9673 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 35 2 -0.1012 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 36 5 0.0901 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 37 m 11.1881 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 38 V 0.2410 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 39 6 -0.1302 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 40 w 11.4802 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 41 T -0.0677 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 42 M 0.4087 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 43 G 0.1056 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 44 b -1.0273 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 45 9 0.2504 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 46 ; 10.6281 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 47 D 0.0842 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 48 L 0.4930 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 49 y 11.7249 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 50 ‘ -0.7346 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 51 \ 0.3805 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 52 R -0.1705 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 53 < 9.7552 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 54 4 0.2432 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 55 8 -0.1289 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 56 0 0.0485 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 57 A 0.1523 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 58 E 0.0737 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 59 B -0.1066 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 60 v 11.7527 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 61 k -1.3445 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 62 J -0.0292 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 63 U 0.3346 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 64 j -0.5262 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 65 ( -1.1801 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 66 7 0.2708 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 67 § 0.3825 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 68 $ -5.0886 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 69 € -1.1786 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 70 / 0.1775 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 71 C 0.0120 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 72 * -1.2918 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 73 ” -0.4309 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 74 ? -1.3830 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 75 { -0.7668 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 76 } -0.4421 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 77 , 33.5189 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 78 I 0.2055 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 79 ° -1.3311 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 80 K 0.2516 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 81 H 0.3794 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 82 q 11.0579 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 83 & -1.3237 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 84 ’ -0.4373 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 85 [ -0.8048 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 86 - 21.5114 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 87 Y -0.0137 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 88 Q -0.2226 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 89 " -0.5923 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 90 ! -1.0751 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 91 x 11.6090 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 92 ) -1.1321 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 93 = 14.4521 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 94 + 10.9112 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 95 X 0.1663 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 96 » 15.8907 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 97 ' -0.9814 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 98 ¢ 11.2964 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 99 Z 0.0031 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 100 > 9.9782 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 101 ® 3.4207 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 102 © 3.5356 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 103 ] -1.3506 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 104 é -0.7605 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 105 z 11.9786 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 106 _ 45.8260 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 33 £ 27.0643 42.0000 107 ¥ 0.3259 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 1 t -30.5561 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 2 h -34.2779 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 3 a -21.8060 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 4 n -22.0401 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 5 P -33.0532 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 6 o -21.7138 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 7 e -21.4533 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 8 : -22.4676 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 9 r -21.7494 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 10 l -34.4092 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 11 i -34.1463 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 12 1 -32.7407 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 13 | -34.4186 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 14 N -32.7170 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 15 f -34.1814 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 16 g -23.0964 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 17 d -34.1760 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 18 W -32.8828 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 19 s -21.7614 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 20 c -21.5238 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 21 u -21.8098 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 22 3 -33.1145 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 23 ~ -12.1888 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 24 # -32.9853 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 25 O -33.3832 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 26 ` -34.1066 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 27 @ -29.0217 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 28 F -32.6629 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 29 S -33.3054 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 30 p -21.6652 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 31 “ -33.6978 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 32 % -33.3169 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 33 £ -33.0741 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 34 . 0.0399 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 35 2 -33.1612 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 36 5 -32.9692 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 37 m -21.4205 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 38 V -32.9468 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 39 6 -33.0434 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 40 w -21.4729 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 41 T -32.9482 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 42 M -32.8330 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 43 G -32.8390 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 44 b -34.4178 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 45 9 -32.8960 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 46 ; -22.2256 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 47 D -33.0756 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 48 L -32.7939 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 49 y -21.4479 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 50 ‘ -33.6855 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 51 \ -32.9943 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 52 R -33.0869 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 53 < -23.5207 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 54 4 -33.1480 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 55 8 -32.9529 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 56 0 -32.8355 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 57 A -33.1583 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 58 E -32.9025 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 59 B -32.7719 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 60 v -21.6459 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 61 k -34.4201 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 62 J -32.7603 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 63 U -33.0044 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 64 j -34.0506 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 65 ( -34.2837 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 66 7 -32.8741 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 67 § -32.9603 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 68 $ -38.3186 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 69 € -34.3164 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 70 / -32.9180 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 71 C -33.1990 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 72 * -33.9516 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 73 ” -33.4348 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 74 ? -34.0052 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 75 { -33.8094 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 76 } -33.5369 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 77 , 0.4685 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 78 I -32.8223 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 79 ° -34.1191 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 80 K -32.8346 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 81 H -32.8741 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 82 q -21.8344 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 83 & -34.0451 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 84 ’ -33.6839 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 85 [ -34.7579 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 86 - -11.7618 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 87 Y -32.9370 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 88 Q -33.1569 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 89 " -33.3701 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 90 ! -33.9505 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 91 x -21.6411 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 92 ) -34.1429 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 93 = -18.5559 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 94 + -22.1732 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 95 X -32.9174 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 96 » -17.2651 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 97 ' -33.9923 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 98 ¢ -21.4701 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 99 Z -32.5838 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 100 > -23.3448 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 101 ® -29.4987 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 102 © -29.7499 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 103 ] -34.0604 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 104 é -34.2751 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 105 z -21.4493 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 106 _ 12.8789 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 34 . 9.3419 9.4616 107 ¥ -33.0951 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 1 t 2.8025 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 2 h -1.1975 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 3 a 11.4118 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 4 n 11.3661 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 5 P 0.2224 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 6 o 11.0462 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 7 e 11.3175 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 8 : 10.7776 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 9 r 11.0068 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 10 l -1.1671 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 11 i -1.1067 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 12 1 0.0924 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 13 | -1.4132 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 14 N 0.3228 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 15 f -1.0930 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 16 g 9.5789 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 17 d -1.0164 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 18 W 0.0955 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 19 s 11.2220 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 20 c 10.7363 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 21 u 11.7759 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 22 3 -0.1004 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 23 ~ 21.0990 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 24 # 0.1864 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 25 O 0.0235 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 26 ` -1.0013 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 27 @ 4.0666 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 28 F 0.1762 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 29 S -0.0323 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 30 p 11.1312 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 31 “ -0.3982 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 32 % -0.0519 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 33 £ -0.2905 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 34 . 32.9972 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 35 2 0.0428 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 36 5 0.2457 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 37 m 11.3606 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 38 V -0.0180 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 39 6 -0.0015 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 40 w 11.6657 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 41 T -0.1068 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 42 M 0.0107 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 43 G 0.0000 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 44 b -1.0264 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 45 9 -0.0769 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 46 ; 10.8512 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 47 D 0.1113 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 48 L 0.3025 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 49 y 11.4652 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 50 ‘ -0.6335 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 51 \ 0.3010 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 52 R 0.0679 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 53 < 10.1202 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 54 4 0.3428 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 55 8 -0.0047 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 56 0 -0.2419 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 57 A -0.2637 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 58 E -0.0596 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 59 B 0.1496 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 60 v 11.3743 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 61 k -0.9760 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 62 J 0.0564 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 63 U 0.3785 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 64 j -0.9774 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 65 ( -1.1949 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 66 7 0.0833 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 67 § -0.1052 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 68 $ -5.1534 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 69 € -1.0984 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 70 / 0.2889 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 71 C 0.0961 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 72 * -1.1494 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 73 ” -0.5982 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 74 ? -1.1992 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 75 { -0.3341 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 76 } -0.4690 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 77 , 33.2388 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 78 I 0.0854 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 79 ° -1.1628 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 80 K 0.1467 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 81 H 0.3198 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 82 q 11.3063 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 83 & -1.0492 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 84 ’ -0.5688 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 85 [ -1.0768 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 86 - 21.6117 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 87 Y 0.0502 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 88 Q 0.0000 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 89 " -0.6976 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 90 ! -1.2013 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 91 x 11.8757 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 92 ) -1.2527 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 93 = 14.7250 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 94 + 10.7871 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 95 X 0.0492 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 96 » 16.1973 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 97 ' -0.6193 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 98 ¢ 11.2488 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 99 Z 0.1743 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 100 > 9.8504 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 101 ® 3.6086 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 102 © 3.1489 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 103 ] -1.2806 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 104 é -1.0140 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 105 z 11.4701 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 106 _ 45.7951 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 35 2 27.4791 42.0000 107 ¥ -0.2121 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 1 t 2.4444 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 2 h -1.6276 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 3 a 10.9466 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 4 n 11.2170 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 5 P 0.1511 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 6 o 11.1368 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 7 e 11.1066 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 8 : 10.6002 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 9 r 10.7688 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 10 l -1.3962 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 11 i -1.0753 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 12 1 -0.0101 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 13 | -1.2202 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 14 N -0.2606 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 15 f -1.3656 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 16 g 9.6978 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 17 d -1.2946 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 18 W 0.1220 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 19 s 11.0136 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 20 c 11.1161 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 21 u 11.5664 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 22 3 -0.4144 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 23 ~ 20.5377 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 24 # -0.1852 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 25 O -0.0195 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 26 ` -1.3311 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 27 @ 4.3261 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 28 F -0.0062 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 29 S -0.0165 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 30 p 10.9974 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 31 “ -0.6647 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 32 % -0.3285 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 33 £ -0.1261 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 34 . 32.8923 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 35 2 -0.1827 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 36 5 -0.1498 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 37 m 10.8109 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 38 V -0.0177 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 39 6 -0.2444 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 40 w 11.0434 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 41 T -0.1263 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 42 M 0.0533 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 43 G -0.1010 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 44 b -1.1692 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 45 9 -0.1397 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 46 ; 10.8586 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 47 D -0.1481 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 48 L 0.1274 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 49 y 11.2748 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 50 ‘ -0.6514 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 51 \ -0.1872 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 52 R -0.0222 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 53 < 9.7344 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 54 4 -0.0177 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 55 8 -0.3549 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 56 0 -0.1484 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 57 A -0.3981 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 58 E -0.0073 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 59 B -0.3821 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 60 v 11.3745 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 61 k -1.4690 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 62 J 0.0014 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 63 U 0.2623 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 64 j -0.9763 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 65 ( -1.4782 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 66 7 0.1436 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 67 § -0.2101 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 68 $ -5.2300 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 69 € -1.4441 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 70 / 0.1633 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 71 C -0.4678 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 72 * -1.5310 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 73 ” -0.2828 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 74 ? -1.2301 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 75 { -0.9042 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 76 } -0.8067 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 77 , 33.0995 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 78 I -0.2119 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 79 ° -1.7401 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 80 K 0.0558 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 81 H 0.2785 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 82 q 10.9692 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 83 & -1.0101 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 84 ’ -0.7518 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 85 [ -1.6958 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 86 - 21.0624 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 87 Y -0.0990 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 88 Q -0.4163 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 89 " -0.9361 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 90 ! -1.1963 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 91 x 11.2677 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 92 ) -1.3580 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 93 = 14.2526 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 94 + 10.6215 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 95 X 0.0738 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 96 » 16.2009 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 97 ' -0.8223 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 98 ¢ 11.0056 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 99 Z -0.1110 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 100 > 9.7574 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 101 ® 2.9742 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 102 © 3.3744 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 103 ] -1.4469 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 104 é -1.2334 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 105 z 11.3839 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 106 _ 45.5706 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 36 5 25.4433 41.8148 107 ¥ 0.0864 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 1 t -8.6140 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 2 h -12.7880 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 3 a 0.0697 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 4 n -0.1088 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 5 P -11.3484 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 6 o -0.0933 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 7 e 0.2286 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 8 : -0.6720 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 9 r 0.0490 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 10 l -12.5180 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 11 i -12.4152 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 12 1 -11.2071 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 13 | -12.4627 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 14 N -11.3601 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 15 f -12.4227 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 16 g -1.2286 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 17 d -12.2844 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 18 W -11.0150 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 19 s 0.1662 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 20 c 0.0054 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 21 u 0.6474 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 22 3 -11.4402 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 23 ~ 9.4239 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 24 # -11.2250 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 25 O -11.2225 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 26 ` -12.2357 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 27 @ -7.3435 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 28 F -10.9335 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 29 S -11.0194 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 30 p 0.0668 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 31 “ -11.6278 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 32 % -10.9035 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 33 £ -11.3450 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 34 . 21.2756 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 35 2 -11.1958 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 36 5 -11.1707 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 37 m -0.1169 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 38 V -11.4309 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 39 6 -11.2196 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 40 w 0.3923 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 41 T -11.0592 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 42 M -11.3439 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 43 G -11.3274 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 44 b -12.6069 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 45 9 -11.4118 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 46 ; -0.6530 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 47 D -11.2461 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 48 L -11.0614 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 49 y 0.1467 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 50 ‘ -11.7626 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 51 \ -10.7703 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 52 R -11.1181 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 53 < -1.4011 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 54 4 -11.0978 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 55 8 -11.2940 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 56 0 -11.6035 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 57 A -11.6099 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 58 E -10.9408 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 59 B -11.2994 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 60 v 0.3124 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 61 k -12.6687 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 62 J -10.9490 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 63 U -10.7460 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 64 j -11.8834 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 65 ( -12.6076 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 66 7 -11.0783 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 67 § -11.4135 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 68 $ -16.5212 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 69 € -12.1963 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 70 / -10.9988 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 71 C -11.3944 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 72 * -12.2309 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 73 ” -11.6622 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 74 ? -12.2558 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 75 { -11.9880 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 76 } -11.6487 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 77 , 22.2758 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 78 I -11.2031 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 79 ° -12.5694 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 80 K -11.0570 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 81 H -11.1649 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 82 q 0.2874 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 83 & -12.7612 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 84 ’ -11.6502 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 85 [ -12.9034 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 86 - 10.3720 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 87 Y -11.2247 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 88 Q -11.3085 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 89 " -11.8698 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 90 ! -11.6706 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 91 x 0.3386 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 92 ) -12.6079 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 93 = 3.2360 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 94 + 0.0140 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 95 X -11.1544 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 96 » 4.6870 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 97 ' -11.8740 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 98 ¢ -0.0901 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 99 Z -11.2511 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 100 > -1.3593 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 101 ® -7.5027 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 102 © -8.2231 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 103 ] -12.7252 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 104 é -12.3352 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 105 z -0.0964 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 106 _ 34.2195 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 37 m 42.8828 30.7419 107 ¥ -11.1916 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 1 t 2.4866 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 2 h -1.5278 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 3 a 11.0177 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 4 n 11.1774 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 5 P -0.2462 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 6 o 11.1074 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 7 e 11.0297 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 8 : 10.7163 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 9 r 11.2848 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 10 l -1.3342 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 11 i -0.6650 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 12 1 0.2470 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 13 | -1.5768 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 14 N 0.1718 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 15 f -1.2226 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 16 g 9.5879 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 17 d -1.4509 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 18 W 0.1450 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 19 s 11.2435 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 20 c 11.1074 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 21 u 11.2860 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 22 3 -0.2338 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 23 ~ 20.6586 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 24 # -0.3150 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 25 O -0.0194 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 26 ` -1.0873 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 27 @ 4.0664 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 28 F -0.0205 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 29 S -0.4480 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 30 p 10.9854 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 31 “ -0.6267 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 32 % -0.4812 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 33 £ -0.4312 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 34 . 32.8593 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 35 2 -0.4062 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 36 5 -0.1959 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 37 m 11.2434 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 38 V 0.2858 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 39 6 -0.3604 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 40 w 11.2874 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 41 T -0.0533 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 42 M 0.2964 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 43 G -0.0416 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 44 b -1.5329 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 45 9 -0.1272 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 46 ; 10.8039 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 47 D -0.2295 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 48 L -0.0339 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 49 y 11.2827 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 50 ‘ -1.0362 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 51 \ -0.0295 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 52 R 0.0670 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 53 < 9.2561 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 54 4 0.1076 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 55 8 -0.4752 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 56 0 -0.4903 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 57 A -0.1012 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 58 E 0.1522 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 59 B -0.2965 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 60 v 11.3814 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 61 k -1.4185 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 62 J -0.1187 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 63 U 0.2177 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 64 j -1.3462 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 65 ( -1.4148 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 66 7 0.1848 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 67 § -0.0037 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 68 $ -5.2850 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 69 € -1.3443 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 70 / -0.2068 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 71 C -0.4528 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 72 * -1.3558 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 73 ” -0.4329 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 74 ? -1.2214 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 75 { -0.5316 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 76 } -0.6799 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 77 , 33.2065 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 78 I 0.3508 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 79 ° -1.6673 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 80 K -0.1764 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 81 H 0.1701 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 82 q 11.2960 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 83 & -1.3305 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 84 ’ -0.8575 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 85 [ -1.4346 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 86 - 21.1008 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 87 Y -0.0730 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 88 Q -0.0815 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 89 " -0.7454 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 90 ! -1.3212 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 91 x 11.5537 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 92 ) -1.6762 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 93 = 14.4830 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 94 + 10.7544 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 95 X -0.0928 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 96 » 16.1377 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 97 ' -0.7853 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 98 ¢ 10.9449 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 99 Z -0.2591 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 100 > 9.6883 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 101 ® 3.3674 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 102 © 2.8277 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 103 ] -1.3998 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 104 é -1.1476 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 105 z 11.3631 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 106 _ 45.7873 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 38 V 36.0050 41.8148 107 ¥ -0.4822 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 1 t 2.5392 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 2 h -1.1815 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 3 a 11.1361 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 4 n 11.3099 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 5 P -0.1117 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 6 o 11.3892 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 7 e 11.3498 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 8 : 10.6315 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 9 r 11.3445 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 10 l -1.0864 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 11 i -0.9779 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 12 1 -0.0339 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 13 | -1.0811 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 14 N 0.3524 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 15 f -1.0070 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 16 g 9.8326 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 17 d -1.2841 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 18 W 0.5774 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 19 s 10.9882 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 20 c 11.3092 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 21 u 11.3424 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 22 3 0.1052 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 23 ~ 21.3341 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 24 # -0.2405 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 25 O 0.0053 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 26 ` -0.9103 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 27 @ 4.5055 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 28 F 0.0059 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 29 S -0.0249 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 30 p 11.6255 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 31 “ -0.4448 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 32 % 0.0062 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 33 £ 0.1207 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 34 . 33.2152 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 35 2 0.0741 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 36 5 0.2399 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 37 m 11.2109 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 38 V -0.0920 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 39 6 -0.2498 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 40 w 11.3588 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 41 T 0.1478 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 42 M -0.4011 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 43 G -0.0457 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 44 b -1.1905 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 45 9 -0.1110 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 46 ; 10.7477 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 47 D 0.1778 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 48 L -0.0204 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 49 y 11.5309 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 50 ‘ -0.5400 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 51 \ 0.3039 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 52 R -0.3301 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 53 < 9.8116 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 54 4 0.3193 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 55 8 -0.0204 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 56 0 0.3257 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 57 A 0.2890 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 58 E 0.0901 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 59 B -0.1105 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 60 v 11.9652 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 61 k -0.9597 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 62 J 0.1914 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 63 U 0.1704 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 64 j -0.7797 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 65 ( -1.3117 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 66 7 0.0502 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 67 § -0.1288 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 68 $ -5.2632 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 69 € -1.0872 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 70 / 0.2784 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 71 C -0.1004 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 72 * -1.2930 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 73 ” -0.6429 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 74 ? -1.1323 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 75 { -0.5843 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 76 } -0.6024 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 77 , 33.6348 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 78 I 0.2553 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 79 ° -1.1459 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 80 K 0.0603 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 81 H 0.3299 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 82 q 11.3093 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 83 & -1.2082 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 84 ’ -0.4724 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 85 [ -1.2189 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 86 - 21.2741 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 87 Y 0.1035 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 88 Q 0.0951 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 89 " -0.6202 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 90 ! -1.2482 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 91 x 11.6619 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 92 ) -0.7895 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 93 = 14.8527 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 94 + 10.8519 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 95 X 0.1992 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 96 » 15.7497 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 97 ' -0.6795 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 98 ¢ 11.3433 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 99 Z 0.0121 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 100 > 9.9607 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 101 ® 3.2886 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 102 © 3.3847 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 103 ] -1.5533 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 104 é -1.3850 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 105 z 11.7821 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 106 _ 45.9250 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 39 6 27.4655 42.0000 107 ¥ 0.1938 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 1 t -8.6282 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 2 h -13.0856 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 3 a -0.5240 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 4 n -0.2309 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 5 P -11.0148 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 6 o 0.1304 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 7 e -0.2428 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 8 : -0.8308 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 9 r -0.6488 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 10 l -13.0043 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 11 i -12.2171 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 12 1 -11.3817 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 13 | -12.9838 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 14 N -11.4471 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 15 f -12.7535 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 16 g -1.6566 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 17 d -12.7293 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 18 W -11.1419 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 19 s -0.4542 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 20 c -0.1289 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 21 u -0.2888 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 22 3 -11.7523 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 23 ~ 9.5417 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 24 # -11.6039 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 25 O -11.6158 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 26 ` -12.6798 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 27 @ -7.3382 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 28 F -11.1115 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 29 S -11.6674 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 30 p -0.0545 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 31 “ -11.7003 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 32 % -11.6145 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 33 £ -11.5095 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 34 . 21.6493 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 35 2 -11.3078 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 36 5 -11.7492 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 37 m -0.4347 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 38 V -11.3235 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 39 6 -11.6249 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 40 w 0.1673 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 41 T -11.4644 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 42 M -11.2812 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 43 G -11.8717 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 44 b -13.0700 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 45 9 -11.0903 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 46 ; -1.0108 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 47 D -11.8720 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 48 L -11.3164 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 49 y -0.1076 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 50 ‘ -12.0955 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 51 \ -11.3227 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 52 R -11.5043 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 53 < -1.7668 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 54 4 -11.4160 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 55 8 -11.8023 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 56 0 -11.3985 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 57 A -11.5322 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 58 E -10.9958 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 59 B -11.3129 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 60 v 0.2590 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 61 k -13.0809 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 62 J -11.2162 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 63 U -11.3637 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 64 j -12.1911 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 65 ( -12.7397 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 66 7 -11.5660 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 67 § -11.3427 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 68 $ -16.8146 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 69 € -12.5244 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 70 / -11.5483 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 71 C -11.5615 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 72 * -12.8322 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 73 ” -11.9478 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 74 ? -12.5981 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 75 { -11.9873 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 76 } -11.9292 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 77 , 21.7388 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 78 I -11.6512 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 79 ° -12.7160 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 80 K -11.2863 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 81 H -11.2731 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 82 q -0.0378 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 83 & -12.4221 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 84 ’ -12.2209 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 85 [ -12.8704 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 86 - 9.8855 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 87 Y -11.1558 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 88 Q -11.6874 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 89 " -12.4387 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 90 ! -12.4296 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 91 x 0.0697 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 92 ) -12.6083 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 93 = 2.9821 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 94 + -0.6639 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 95 X -11.4202 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 96 » 4.7545 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 97 ' -12.0821 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 98 ¢ -0.5491 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 99 Z -11.4458 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 100 > -1.6690 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 101 ® -7.8798 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 102 © -8.0479 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 103 ] -12.6025 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 104 é -12.7592 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 105 z 0.0755 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 106 _ 34.5093 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 40 w 45.7224 30.4371 107 ¥ -11.5441 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 1 t 2.3876 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 2 h -1.2945 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 3 a 11.0729 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 4 n 11.1484 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 5 P -0.2255 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 6 o 11.1235 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 7 e 11.1708 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 8 : 10.3357 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 9 r 11.0924 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 10 l -0.9658 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 11 i -1.2666 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 12 1 -0.1792 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 13 | -1.2673 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 14 N 0.2383 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 15 f -1.2054 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 16 g 9.5542 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 17 d -1.2083 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 18 W 0.0177 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 19 s 11.1081 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 20 c 11.0373 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 21 u 11.5407 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 22 3 0.0210 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 23 ~ 20.7274 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 24 # -0.0520 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 25 O -0.5066 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 26 ` -1.2598 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 27 @ 3.9952 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 28 F -0.0192 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 29 S -0.1704 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 30 p 10.7141 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 31 “ -0.7269 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 32 % -0.0829 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 33 £ -0.5700 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 34 . 32.7350 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 35 2 -0.2957 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 36 5 0.1263 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 37 m 11.1906 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 38 V -0.1778 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 39 6 -0.0345 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 40 w 11.2860 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 41 T 0.4042 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 42 M 0.2554 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 43 G -0.3923 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 44 b -1.5989 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 45 9 -0.2305 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 46 ; 10.6398 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 47 D -0.3727 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 48 L -0.1018 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 49 y 11.2874 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 50 ‘ -0.8386 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 51 \ 0.1200 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 52 R -0.1866 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 53 < 9.4336 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 54 4 -0.0221 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 55 8 -0.3840 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 56 0 -0.2564 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 57 A -0.5219 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 58 E 0.1101 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 59 B -0.4043 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 60 v 11.5844 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 61 k -1.3739 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 62 J 0.2311 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 63 U 0.0860 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 64 j -0.8827 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 65 ( -1.5002 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 66 7 -0.0658 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 67 § -0.0132 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 68 $ -5.5192 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 69 € -1.7516 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 70 / -0.0602 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 71 C -0.2736 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 72 * -1.5738 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 73 ” -1.1120 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 74 ? -1.2631 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 75 { -0.8244 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 76 } -0.7699 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 77 , 33.0934 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 78 I -0.0022 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 79 ° -1.3725 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 80 K 0.0629 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 81 H -0.0529 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 82 q 11.3708 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 83 & -1.4885 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 84 ’ -0.8647 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 85 [ -1.2972 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 86 - 21.0936 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 87 Y -0.0109 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 88 Q -0.0307 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 89 " -0.8328 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 90 ! -1.3027 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 91 x 11.8119 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 92 ) -1.4717 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 93 = 14.3903 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 94 + 11.0597 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 95 X -0.3012 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 96 » 15.9455 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 97 ' -0.7666 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 98 ¢ 11.1511 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 99 Z -0.1921 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 100 > 9.6873 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 101 ® 3.1318 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 102 © 3.4614 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 103 ] -1.6512 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 104 é -1.4670 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 105 z 11.6487 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 106 _ 45.3626 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 41 T 34.8309 41.8148 107 ¥ 0.3018 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 1 t 2.5205 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 2 h -1.0766 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 3 a 10.8687 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 4 n 10.9225 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 5 P -0.2788 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 6 o 11.1020 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 7 e 10.9307 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 8 : 10.5938 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 9 r 11.0329 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 10 l -1.6387 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 11 i -0.8625 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 12 1 -0.1870 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 13 | -1.1145 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 14 N -0.2903 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 15 f -1.6653 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 16 g 9.3862 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 17 d -1.3416 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 18 W -0.2864 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 19 s 10.9042 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 20 c 11.0887 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 21 u 11.6771 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 22 3 0.0177 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 23 ~ 20.7455 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 24 # -0.2060 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 25 O -0.3471 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 26 ` -1.5117 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 27 @ 4.2493 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 28 F 0.0547 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 29 S -0.1071 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 30 p 11.2810 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 31 “ -1.0972 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 32 % -0.0463 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 33 £ 0.0749 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 34 . 32.8892 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 35 2 -0.0916 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 36 5 -0.0776 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 37 m 10.8907 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 38 V -0.0337 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 39 6 -0.1272 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 40 w 11.4976 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 41 T 0.0911 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 42 M 0.3653 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 43 G -0.2636 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 44 b -0.9477 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 45 9 -0.2862 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 46 ; 10.6384 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 47 D -0.8430 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 48 L -0.0802 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 49 y 11.5007 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 50 ‘ -0.5030 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 51 \ 0.2504 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 52 R 0.0020 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 53 < 9.4274 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 54 4 0.3095 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 55 8 -0.0952 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 56 0 -0.1391 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 57 A 0.1366 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 58 E -0.1691 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 59 B -0.1805 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 60 v 11.4656 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 61 k -1.3756 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 62 J -0.0776 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 63 U 0.0042 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 64 j -0.7832 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 65 ( -1.5647 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 66 7 -0.0680 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 67 § -0.2596 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 68 $ -5.4733 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 69 € -1.4601 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 70 / -0.2844 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 71 C -0.1866 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 72 * -1.2379 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 73 ” -0.8273 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 74 ? -1.1742 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 75 { -0.6224 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 76 } -0.5835 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 77 , 33.2644 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 78 I -0.0932 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 79 ° -1.4340 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 80 K 0.1720 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 81 H 0.0722 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 82 q 11.0029 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 83 & -1.3169 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 84 ’ -0.8246 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 85 [ -1.4414 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 86 - 21.0163 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 87 Y -0.1296 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 88 Q -0.3403 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 89 " -0.9544 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 90 ! -1.4572 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 91 x 11.4742 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 92 ) -1.0929 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 93 = 14.4923 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 94 + 10.6091 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 95 X -0.2575 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 96 » 15.7117 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 97 ' -1.3542 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 98 ¢ 10.9992 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 99 Z 0.0900 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 100 > 9.9175 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 101 ® 3.3399 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 102 © 3.1678 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 103 ] -1.4142 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 104 é -0.9675 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 105 z 11.7982 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 106 _ 45.5778 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 42 M 41.2419 41.8148 107 ¥ 0.0187 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 1 t 2.6160 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 2 h -1.1922 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 3 a 11.2556 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 4 n 11.1094 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 5 P -0.1659 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 6 o 11.2729 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 7 e 11.4191 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 8 : 11.0674 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 9 r 11.4463 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 10 l -1.2105 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 11 i -0.6565 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 12 1 -0.0336 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 13 | -1.2726 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 14 N 0.0963 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 15 f -1.2766 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 16 g 9.6915 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 17 d -1.4072 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 18 W 0.1718 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 19 s 11.3614 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 20 c 11.3543 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 21 u 11.4489 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 22 3 -0.1756 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 23 ~ 20.9083 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 24 # 0.0015 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 25 O -0.0933 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 26 ` -0.8440 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 27 @ 3.9777 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 28 F 0.3201 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 29 S -0.1033 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 30 p 11.3727 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 31 “ -0.3604 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 32 % -0.1159 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 33 £ 0.0457 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 34 . 32.8951 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 35 2 0.0730 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 36 5 -0.0364 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 37 m 11.3760 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 38 V 0.3673 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 39 6 0.0936 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 40 w 11.7541 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 41 T 0.2216 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 42 M 0.0488 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 43 G 0.0147 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 44 b -1.3445 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 45 9 0.1778 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 46 ; 10.2989 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 47 D 0.0432 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 48 L 0.0847 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 49 y 11.5049 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 50 ‘ -0.6200 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 51 \ 0.1481 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 52 R 0.0053 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 53 < 9.8792 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 54 4 -0.1923 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 55 8 -0.1846 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 56 0 0.5776 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 57 A -0.1212 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 58 E 0.1438 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 59 B -0.0566 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 60 v 11.6681 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 61 k -1.5597 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 62 J 0.2556 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 63 U 0.2147 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 64 j -1.1215 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 65 ( -1.4257 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 66 7 0.1630 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 67 § -0.1984 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 68 $ -5.2356 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 69 € -1.0307 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 70 / 0.0603 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 71 C 0.0096 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 72 * -1.1243 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 73 ” -0.4431 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 74 ? -1.2336 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 75 { -0.7560 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 76 } -0.4810 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 77 , 33.4234 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 78 I 0.3140 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 79 ° -1.3568 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 80 K 0.2954 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 81 H 0.2755 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 82 q 11.3341 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 83 & -0.8868 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 84 ’ -0.7671 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 85 [ -1.4762 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 86 - 21.4887 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 87 Y 0.0920 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 88 Q -0.0995 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 89 " -0.9960 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 90 ! -1.2708 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 91 x 11.4821 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 92 ) -1.1667 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 93 = 14.5021 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 94 + 10.6826 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 95 X 0.1179 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 96 » 16.3557 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 97 ' -0.7221 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 98 ¢ 11.1797 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 99 Z 0.1308 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 100 > 9.6914 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 101 ® 2.9236 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 102 © 3.1713 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 103 ] -1.1162 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 104 é -1.0502 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 105 z 11.9516 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 106 _ 45.7947 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 43 G 34.3839 42.0000 107 ¥ 0.0614 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 1 t 3.9989 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 2 h 0.3053 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 3 a 12.5332 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 4 n 12.4594 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 5 P 1.3967 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 6 o 12.5789 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 7 e 12.3902 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 8 : 12.1404 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 9 r 12.6929 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 10 l 0.0323 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 11 i 0.5664 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 12 1 0.9935 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 13 | 0.4646 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 14 N 1.2428 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 15 f 0.0727 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 16 g 11.0335 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 17 d -0.1495 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 18 W 1.5521 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 19 s 12.5845 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 20 c 12.1875 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 21 u 12.8469 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 22 3 1.5323 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 23 ~ 22.0298 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 24 # 1.2704 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 25 O 0.9025 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 26 ` 0.1007 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 27 @ 5.0042 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 28 F 1.4918 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 29 S 1.3978 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 30 p 12.5968 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 31 “ 0.2075 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 32 % 1.1729 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 33 £ 1.1354 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 34 . 33.9864 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 35 2 1.1631 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 36 5 1.3445 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 37 m 12.4085 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 38 V 1.4062 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 39 6 1.3574 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 40 w 12.8294 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 41 T 1.5358 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 42 M 1.5224 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 43 G 0.9874 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 44 b 0.0889 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 45 9 1.1963 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 46 ; 11.7232 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 47 D 1.5837 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 48 L 1.3883 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 49 y 12.9295 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 50 ‘ 0.8707 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 51 \ 1.6276 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 52 R 1.4334 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 53 < 11.1111 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 54 4 1.3206 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 55 8 1.4126 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 56 0 1.1435 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 57 A 1.4039 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 58 E 1.6167 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 59 B 1.3338 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 60 v 12.5001 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 61 k -0.0728 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 62 J 1.4146 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 63 U 1.2803 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 64 j 0.3565 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 65 ( 0.1759 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 66 7 1.5753 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 67 § 1.1873 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 68 $ -3.9397 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 69 € -0.2810 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 70 / 1.5944 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 71 C 1.0317 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 72 * -0.0903 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 73 ” 0.9611 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 74 ? 0.0974 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 75 { 0.7833 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 76 } 0.8452 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 77 , 34.8187 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 78 I 1.3163 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 79 ° -0.2211 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 80 K 1.2855 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 81 H 1.2926 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 82 q 12.3080 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 83 & 0.0410 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 84 ’ 0.5130 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 85 [ 0.1556 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 86 - 22.6852 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 87 Y 1.5768 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 88 Q 0.9622 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 89 " 0.2984 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 90 ! 0.3230 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 91 x 12.7281 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 92 ) -0.5002 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 93 = 15.4786 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 94 + 11.9936 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 95 X 1.4084 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 96 » 17.2703 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 97 ' 0.4129 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 98 ¢ 12.3591 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 99 Z 1.4509 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 100 > 10.9046 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 101 ® 4.5503 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 102 © 4.4207 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 103 ] -0.2144 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 104 é -0.0637 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 105 z 12.8805 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 106 _ 46.7827 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 44 b 28.4025 43.2185 107 ¥ 1.3195 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 1 t 2.6476 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 2 h -1.5447 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 3 a 11.3977 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 4 n 11.1509 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 5 P 0.0033 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 6 o 11.0908 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 7 e 11.4747 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 8 : 10.9697 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 9 r 11.2466 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 10 l -1.3743 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 11 i -0.8483 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 12 1 -0.0609 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 13 | -1.4678 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 14 N 0.0725 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 15 f -1.3796 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 16 g 10.0318 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 17 d -1.0171 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 18 W 0.0996 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 19 s 11.0540 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 20 c 11.6179 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 21 u 11.7364 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 22 3 -0.0620 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 23 ~ 20.8608 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 24 # -0.1181 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 25 O 0.1411 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 26 ` -1.0232 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 27 @ 4.2360 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 28 F 0.4300 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 29 S -0.0309 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 30 p 11.3599 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 31 “ -0.8822 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 32 % -0.3080 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 33 £ 0.1037 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 34 . 32.9665 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 35 2 0.0137 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 36 5 0.1972 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 37 m 11.5756 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 38 V 0.1453 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 39 6 0.2473 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 40 w 11.2278 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 41 T 0.0288 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 42 M -0.0022 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 43 G -0.2388 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 44 b -1.2951 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 45 9 0.1854 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 46 ; 10.9325 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 47 D 0.0741 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 48 L 0.0208 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 49 y 11.6766 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 50 ‘ -0.4277 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 51 \ -0.0347 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 52 R 0.0677 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 53 < 9.9775 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 54 4 0.2828 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 55 8 0.0471 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 56 0 0.0607 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 57 A -0.1062 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 58 E 0.4798 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 59 B -0.2196 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 60 v 11.5663 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 61 k -1.2196 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 62 J 0.1508 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 63 U 0.2524 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 64 j -1.2462 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 65 ( -1.1047 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 66 7 0.2123 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 67 § -0.2489 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 68 $ -5.3049 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 69 € -1.0922 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 70 / 0.0505 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 71 C 0.2292 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 72 * -1.1901 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 73 ” -0.8328 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 74 ? -0.8614 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 75 { -0.6098 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 76 } -0.4799 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 77 , 33.5419 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 78 I 0.1885 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 79 ° -1.2556 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 80 K 0.1958 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 81 H 0.1160 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 82 q 11.6266 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 83 & -1.0424 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 84 ’ -0.7595 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 85 [ -1.1506 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 86 - 21.4250 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 87 Y 0.0463 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 88 Q 0.0856 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 89 " -0.6793 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 90 ! -1.2575 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 91 x 11.3722 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 92 ) -1.3041 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 93 = 14.7919 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 94 + 10.5276 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 95 X 0.1899 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 96 » 16.1274 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 97 ' -0.6188 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 98 ¢ 11.0303 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 99 Z 0.1380 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 100 > 9.8069 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 101 ® 3.4102 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 102 © 3.4617 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 103 ] -0.9259 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 104 é -1.1169 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 105 z 11.4759 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 106 _ 45.8387 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 45 9 27.4655 42.1852 107 ¥ 0.3434 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 1 t -7.9852 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 2 h -12.0212 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 3 a 0.3997 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 4 n 0.2380 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 5 P -11.0775 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 6 o 0.7567 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 7 e 0.5707 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 8 : 0.0741 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 9 r 0.6962 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 10 l -11.6876 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 11 i -11.8925 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 12 1 -10.1570 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 13 | -11.6641 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 14 N -10.5708 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 15 f -12.0719 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 16 g -0.9668 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 17 d -12.0609 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 18 W -10.7418 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 19 s 0.2005 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 20 c 0.8034 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 21 u 0.8877 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 22 3 -10.7843 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 23 ~ 10.1740 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 24 # -10.7818 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 25 O -10.5800 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 26 ` -11.9026 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 27 @ -6.9176 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 28 F -10.6783 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 29 S -10.8217 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 30 p 0.3946 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 31 “ -11.1408 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 32 % -10.8732 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 33 £ -10.6279 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 34 . 22.1846 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 35 2 -10.8660 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 36 5 -10.4522 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 37 m 0.6112 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 38 V -10.5952 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 39 6 -10.5213 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 40 w 0.8642 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 41 T -10.3789 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 42 M -10.2722 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 43 G -10.8300 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 44 b -12.0090 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 45 9 -10.4205 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 46 ; -0.1542 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 47 D -10.6483 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 48 L -10.4516 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 49 y 0.9531 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 50 ‘ -11.4089 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 51 \ -10.5553 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 52 R -10.6814 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 53 < -1.0427 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 54 4 -10.5700 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 55 8 -10.4057 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 56 0 -11.0568 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 57 A -10.5518 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 58 E -10.5429 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 59 B -10.6382 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 60 v 0.7220 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 61 k -11.8002 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 62 J -10.3391 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 63 U -10.5310 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 64 j -11.7426 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 65 ( -11.4980 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 66 7 -10.6826 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 67 § -10.6945 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 68 $ -15.9041 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 69 € -11.9524 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 70 / -10.7870 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 71 C -10.5076 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 72 * -12.0475 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 73 ” -11.0937 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 74 ? -11.9662 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 75 { -11.4004 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 76 } -11.2865 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 77 , 22.3970 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 78 I -10.4859 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 79 ° -12.0000 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 80 K -10.7380 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 81 H -10.4973 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 82 q 0.2614 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 83 & -11.9094 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 84 ’ -11.3964 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 85 [ -11.8621 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 86 - 10.7943 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 87 Y -10.4972 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 88 Q -10.7372 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 89 " -11.2811 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 90 ! -11.8088 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 91 x 0.6908 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 92 ) -11.8255 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 93 = 3.6582 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 94 + 0.1007 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 95 X -10.5357 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 96 » 5.4692 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 97 ' -11.0589 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 98 ¢ 0.4508 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 99 Z -10.5966 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 100 > -1.0476 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 101 ® -7.4327 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 102 © -7.1765 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 103 ] -12.1291 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 104 é -11.7259 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 105 z 0.8240 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 106 _ 35.2662 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 46 ; 11.1481 42.0220 107 ¥ -10.3800 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 1 t 2.7481 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 2 h -1.1369 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 3 a 11.3056 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 4 n 11.3318 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 5 P -0.2498 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 6 o 11.0976 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 7 e 11.2803 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 8 : 10.6636 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 9 r 11.3705 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 10 l -1.1675 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 11 i -1.1996 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 12 1 0.3140 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 13 | -1.7475 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 14 N 0.2503 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 15 f -1.1810 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 16 g 9.9081 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 17 d -1.3564 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 18 W 0.3961 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 19 s 11.0803 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 20 c 11.0982 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 21 u 11.6084 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 22 3 -0.3588 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 23 ~ 20.8733 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 24 # -0.2191 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 25 O -0.0714 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 26 ` -1.3366 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 27 @ 3.9426 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 28 F 0.2755 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 29 S 0.0846 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 30 p 11.1907 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 31 “ -0.6476 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 32 % 0.1523 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 33 £ -0.1394 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 34 . 33.2227 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 35 2 0.0853 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 36 5 0.2222 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 37 m 11.1663 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 38 V 0.2697 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 39 6 -0.2551 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 40 w 11.5042 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 41 T 0.1366 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 42 M -0.0656 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 43 G -0.1782 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 44 b -1.1786 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 45 9 -0.1244 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 46 ; 10.7640 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 47 D -0.0226 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 48 L 0.0996 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 49 y 11.6368 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 50 ‘ -0.5619 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 51 \ 0.4576 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 52 R -0.0181 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 53 < 10.0529 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 54 4 -0.0164 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 55 8 -0.3216 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 56 0 -0.0399 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 57 A -0.0120 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 58 E 0.1204 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 59 B -0.0025 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 60 v 11.5810 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 61 k -1.4895 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 62 J 0.2832 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 63 U -0.0677 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 64 j -0.7501 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 65 ( -1.2305 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 66 7 0.1495 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 67 § 0.1756 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 68 $ -5.2592 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 69 € -1.3665 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 70 / 0.0031 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 71 C 0.1441 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 72 * -1.2617 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 73 ” -0.6555 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 74 ? -0.9416 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 75 { -0.1801 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 76 } -0.5396 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 77 , 33.3177 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 78 I 0.1456 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 79 ° -1.2338 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 80 K 0.1481 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 81 H 0.3611 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 82 q 11.0749 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 83 & -0.9952 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 84 ’ -0.5032 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 85 [ -1.1714 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 86 - 21.3792 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 87 Y 0.2210 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 88 Q 0.0248 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 89 " -0.7448 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 90 ! -0.7177 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 91 x 11.7349 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 92 ) -1.5097 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 93 = 14.5437 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 94 + 11.1613 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 95 X 0.1305 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 96 » 16.2949 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 97 ' -0.5529 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 98 ¢ 11.2296 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 99 Z 0.3173 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 100 > 9.6722 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 101 ® 3.4765 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 102 © 3.2745 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 103 ] -1.2239 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 104 é -1.0657 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 105 z 11.4740 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 106 _ 45.9667 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 47 D 30.8396 42.0000 107 ¥ 0.3154 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 1 t 2.5197 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 2 h -1.4495 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 3 a 11.0877 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 4 n 10.9307 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 5 P -0.0146 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 6 o 11.1200 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 7 e 10.9778 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 8 : 10.4246 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 9 r 11.1694 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 10 l -1.4556 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 11 i -1.0295 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 12 1 0.0727 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 13 | -1.2716 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 14 N -0.1764 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 15 f -1.5340 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 16 g 9.4530 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 17 d -1.8467 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 18 W 0.0471 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 19 s 11.1746 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 20 c 11.2237 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 21 u 11.3331 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 22 3 -0.0968 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 23 ~ 20.9510 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 24 # -0.0789 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 25 O -0.2545 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 26 ` -1.5208 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 27 @ 4.1302 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 28 F -0.1705 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 29 S -0.1961 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 30 p 10.8332 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 31 “ -0.5582 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 32 % -0.3274 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 33 £ 0.3271 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 34 . 32.9213 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 35 2 -0.3203 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 36 5 -0.1720 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 37 m 10.9692 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 38 V -0.0712 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 39 6 -0.1049 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 40 w 11.4728 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 41 T 0.1893 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 42 M 0.0633 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 43 G -0.1628 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 44 b -1.3148 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 45 9 -0.3144 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 46 ; 10.6376 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 47 D -0.2486 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 48 L -0.0274 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 49 y 11.1750 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 50 ‘ -0.7540 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 51 \ -0.0889 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 52 R 0.1473 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 53 < 9.5111 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 54 4 0.0547 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 55 8 -0.5760 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 56 0 -0.1358 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 57 A -0.1539 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 58 E 0.2079 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 59 B -0.1116 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 60 v 11.2119 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 61 k -1.5016 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 62 J 0.0047 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 63 U -0.0533 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 64 j -1.2639 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 65 ( -1.5311 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 66 7 0.0033 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 67 § -0.1060 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 68 $ -5.1454 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 69 € -1.6747 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 70 / -0.1167 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 71 C -0.1798 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 72 * -1.4603 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 73 ” -0.5528 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 74 ? -1.6716 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 75 { -0.7310 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 76 } -0.8184 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 77 , 32.8238 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 78 I -0.2373 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 79 ° -1.4927 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 80 K -0.1259 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 81 H -0.0889 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 82 q 11.0417 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 83 & -1.3391 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 84 ’ -0.8705 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 85 [ -1.2023 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 86 - 21.0523 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 87 Y -0.2478 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 88 Q -0.2363 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 89 " -0.9213 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 90 ! -1.0179 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 91 x 11.4580 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 92 ) -1.3116 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 93 = 14.6247 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 94 + 10.3896 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 95 X 0.1832 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 96 » 16.0992 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 97 ' -0.8929 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 98 ¢ 11.1838 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 99 Z 0.0276 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 100 > 9.7012 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 101 ® 2.8742 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 102 © 2.9874 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 103 ] -1.3209 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 104 é -0.8924 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 105 z 11.3374 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 106 _ 45.3922 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 48 L 26.2606 41.8148 107 ¥ -0.3588 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 1 t -8.8210 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 2 h -12.7204 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 3 a -0.5609 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 4 n -0.1069 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 5 P -11.4179 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 6 o -0.3999 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 7 e -0.0161 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 8 : -0.9161 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 9 r -0.3660 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 10 l -12.7252 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 11 i -12.3400 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 12 1 -11.4261 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 13 | -12.8629 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 14 N -11.1698 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 15 f -12.9092 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 16 g -1.7292 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 17 d -12.9498 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 18 W -11.2599 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 19 s -0.0501 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 20 c -0.3433 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 21 u 0.0842 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 22 3 -11.5172 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 23 ~ 9.1972 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 24 # -11.4814 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 25 O -11.5374 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 26 ` -12.4714 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 27 @ -7.4171 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 28 F -11.2193 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 29 S -11.5284 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 30 p -0.5021 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 31 “ -12.1114 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 32 % -11.4639 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 33 £ -11.5539 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 34 . 21.3063 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 35 2 -11.4181 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 36 5 -11.0156 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 37 m -0.1934 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 38 V -11.2798 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 39 6 -11.8487 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 40 w 0.2533 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 41 T -11.3831 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 42 M -11.4098 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 43 G -11.5259 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 44 b -12.9708 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 45 9 -11.3290 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 46 ; -0.5772 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 47 D -11.8099 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 48 L -11.6382 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 49 y -0.1001 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 50 ‘ -12.1727 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 51 \ -11.1712 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 52 R -11.4308 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 53 < -1.7499 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 54 4 -11.4862 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 55 8 -11.2247 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 56 0 -11.4625 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 57 A -11.5212 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 58 E -11.3450 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 59 B -11.7397 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 60 v -0.2163 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 61 k -12.8718 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 62 J -11.1633 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 63 U -11.3037 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 64 j -12.2107 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 65 ( -12.9128 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 66 7 -11.2590 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 67 § -11.3391 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 68 $ -16.8174 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 69 € -12.8765 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 70 / -11.4210 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 71 C -11.1558 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 72 * -12.9534 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 73 ” -12.3811 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 74 ? -12.5369 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 75 { -12.2213 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 76 } -12.1698 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 77 , 21.9210 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 78 I -11.4934 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 79 ° -12.5558 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 80 K -11.3244 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 81 H -11.0481 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 82 q -0.7450 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 83 & -13.2642 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 84 ’ -12.2774 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 85 [ -12.8718 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 86 - 10.2468 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 87 Y -11.5411 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 88 Q -11.5733 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 89 " -12.4883 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 90 ! -12.3368 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 91 x -0.1893 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 92 ) -12.9352 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 93 = 2.7935 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 94 + -0.6902 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 95 X -11.3003 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 96 » 4.7439 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 97 ' -12.6295 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 98 ¢ -0.2781 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 99 Z -11.2027 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 100 > -1.6919 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 101 ® -8.0398 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 102 © -8.1630 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 103 ] -12.8372 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 104 é -12.6527 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 105 z -0.0019 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 106 _ 34.6190 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 49 y 31.2408 42.4148 107 ¥ -11.4086 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 1 t 3.1265 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 2 h -0.7005 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 3 a 11.5565 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 4 n 11.7739 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 5 P 0.6583 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 6 o 11.7776 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 7 e 11.7027 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 8 : 11.1653 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 9 r 12.0226 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 10 l -0.7894 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 11 i -0.4555 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 12 1 0.4933 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 13 | -0.7832 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 14 N 0.6213 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 15 f -0.5231 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 16 g 10.1788 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 17 d -0.5583 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 18 W 0.7061 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 19 s 12.0014 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 20 c 11.7510 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 21 u 11.9489 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 22 3 0.4575 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 23 ~ 21.3707 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 24 # 0.4378 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 25 O 0.4871 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 26 ` -0.5063 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 27 @ 4.9093 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 28 F 0.6542 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 29 S 0.6363 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 30 p 11.9010 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 31 “ -0.0296 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 32 % 0.5816 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 33 £ 0.4657 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 34 . 33.5802 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 35 2 0.6040 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 36 5 0.8853 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 37 m 11.9568 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 38 V 0.9299 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 39 6 0.0829 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 40 w 11.9497 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 41 T 0.4044 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 42 M 0.8244 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 43 G 0.5342 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 44 b -0.8412 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 45 9 0.3388 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 46 ; 11.1778 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 47 D 0.6616 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 48 L 0.4485 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 49 y 12.2158 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 50 ‘ 0.0380 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 51 \ 0.7180 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 52 R 0.5785 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 53 < 10.3897 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 54 4 0.4971 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 55 8 0.5198 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 56 0 0.5061 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 57 A 0.4738 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 58 E 0.5923 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 59 B 0.4116 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 60 v 12.1694 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 61 k -0.6121 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 62 J 0.6191 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 63 U 0.6615 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 64 j -0.4051 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 65 ( -0.6458 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 66 7 0.3966 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 67 § 0.6867 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 68 $ -4.6581 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 69 € -0.7927 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 70 / 0.7046 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 71 C 0.3268 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 72 * -0.4670 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 73 ” 0.0593 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 74 ? -0.5139 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 75 { -0.0926 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 76 } 0.1461 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 77 , 34.1056 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 78 I 0.4984 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 79 ° -0.4756 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 80 K 0.7978 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 81 H 0.8172 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 82 q 11.9226 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 83 & -0.5125 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 84 ’ 0.0370 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 85 [ -0.7394 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 86 - 21.6882 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 87 Y 0.8396 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 88 Q 0.5170 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 89 " -0.2359 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 90 ! -0.6086 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 91 x 12.0170 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 92 ) -0.8070 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 93 = 14.9615 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 94 + 11.4469 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 95 X 0.3651 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 96 » 16.8546 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 97 ' -0.1633 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 98 ¢ 11.8708 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 99 Z 0.7874 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 100 > 10.3367 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 101 ® 3.8418 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 102 © 3.9455 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 103 ] -0.8769 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 104 é -0.6311 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 105 z 12.0838 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 106 _ 46.3059 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 50 ‘ 9.9432 18.1765 107 ¥ 0.5221 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 1 t 2.4678 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 2 h -1.6661 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 3 a 11.0729 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 4 n 10.9739 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 5 P -0.0679 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 6 o 11.0978 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 7 e 10.8686 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 8 : 10.3446 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 9 r 10.9394 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 10 l -1.1062 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 11 i -0.9540 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 12 1 0.1111 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 13 | -1.4349 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 14 N -0.0827 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 15 f -1.4407 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 16 g 9.6942 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 17 d -1.4310 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 18 W -0.0816 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 19 s 11.3500 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 20 c 10.8480 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 21 u 11.4830 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 22 3 -0.1122 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 23 ~ 20.6951 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 24 # -0.2222 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 25 O 0.0002 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 26 ` -1.4362 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 27 @ 3.8930 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 28 F 0.1313 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 29 S -0.1420 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 30 p 11.1089 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 31 “ -0.6870 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 32 % -0.5599 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 33 £ -0.0974 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 34 . 32.8741 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 35 2 0.1315 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 36 5 -0.0563 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 37 m 11.1766 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 38 V 0.0399 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 39 6 -0.2222 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 40 w 11.4210 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 41 T 0.2649 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 42 M 0.2666 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 43 G -0.0477 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 44 b -1.0319 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 45 9 -0.2451 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 46 ; 10.4131 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 47 D -0.3673 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 48 L -0.0086 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 49 y 11.3493 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 50 ‘ -0.7014 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 51 \ 0.0532 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 52 R -0.0121 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 53 < 9.7391 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 54 4 0.0000 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 55 8 -0.0321 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 56 0 -0.0300 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 57 A -0.2951 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 58 E -0.3819 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 59 B -0.2654 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 60 v 11.2133 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 61 k -1.4879 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 62 J 0.0917 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 63 U -0.0312 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 64 j -0.8707 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 65 ( -1.4907 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 66 7 -0.5185 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 67 § -0.3807 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 68 $ -5.4453 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 69 € -1.4702 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 70 / -0.0572 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 71 C -0.2262 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 72 * -1.5819 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 73 ” -0.7283 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 74 ? -1.3296 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 75 { -0.6009 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 76 } -0.7256 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 77 , 32.8528 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 78 I -0.0015 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 79 ° -1.5103 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 80 K -0.0533 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 81 H 0.0533 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 82 q 10.7792 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 83 & -1.1307 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 84 ’ -0.5128 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 85 [ -1.4926 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 86 - 21.2046 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 87 Y -0.0220 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 88 Q -0.0876 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 89 " -0.9712 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 90 ! -1.1753 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 91 x 11.0967 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 92 ) -1.3013 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 93 = 14.2440 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 94 + 10.7517 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 95 X 0.0076 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 96 » 15.9165 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 97 ' -0.6450 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 98 ¢ 11.1192 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 99 Z 0.0000 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 100 > 9.4350 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 101 ® 3.1073 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 102 © 3.1135 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 103 ] -1.2097 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 104 é -1.2603 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 105 z 11.3811 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 106 _ 45.7338 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 51 \ 22.7817 41.8148 107 ¥ 0.3329 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 1 t 2.7372 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 2 h -1.1990 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 3 a 10.9529 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 4 n 11.2386 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 5 P -0.1879 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 6 o 11.2616 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 7 e 11.3941 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 8 : 11.0394 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 9 r 10.8486 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 10 l -1.2605 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 11 i -0.7733 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 12 1 -0.0311 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 13 | -1.4819 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 14 N 0.3165 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 15 f -1.0004 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 16 g 9.6563 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 17 d -1.1484 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 18 W -0.0339 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 19 s 11.0501 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 20 c 10.9947 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 21 u 11.4807 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 22 3 -0.0916 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 23 ~ 20.7526 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 24 # -0.0599 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 25 O -0.0251 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 26 ` -0.8973 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 27 @ 4.2183 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 28 F 0.2580 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 29 S 0.1840 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 30 p 11.3215 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 31 “ -0.4276 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 32 % -0.1349 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 33 £ 0.1490 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 34 . 32.8517 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 35 2 -0.1313 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 36 5 0.2337 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 37 m 11.3700 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 38 V 0.1779 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 39 6 0.2177 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 40 w 11.7349 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 41 T 0.1142 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 42 M 0.0401 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 43 G 0.2339 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 44 b -1.5890 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 45 9 0.1171 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 46 ; 10.6574 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 47 D -0.0485 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 48 L 0.2593 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 49 y 11.5543 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 50 ‘ -0.3402 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 51 \ 0.0117 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 52 R -0.0471 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 53 < 9.7083 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 54 4 0.0469 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 55 8 0.2196 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 56 0 0.0969 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 57 A -0.0446 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 58 E 0.4130 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 59 B -0.0788 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 60 v 11.7361 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 61 k -1.3089 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 62 J -0.1794 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 63 U 0.2809 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 64 j -0.8382 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 65 ( -1.2537 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 66 7 0.1315 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 67 § -0.1658 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 68 $ -5.1020 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 69 € -1.2617 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 70 / 0.1218 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 71 C -0.0612 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 72 * -1.0187 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 73 ” -0.3417 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 74 ? -0.7783 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 75 { -0.4542 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 76 } -0.8009 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 77 , 33.2021 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 78 I 0.4601 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 79 ° -1.0609 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 80 K -0.0002 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 81 H -0.0132 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 82 q 11.3027 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 83 & -0.9949 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 84 ’ -0.5231 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 85 [ -1.3128 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 86 - 21.3580 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 87 Y 0.1021 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 88 Q 0.1821 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 89 " -0.8905 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 90 ! -0.9046 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 91 x 11.5259 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 92 ) -1.2852 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 93 = 14.4919 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 94 + 10.8299 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 95 X 0.3162 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 96 » 16.2935 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 97 ' -0.7791 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 98 ¢ 11.0952 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 99 Z 0.4144 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 100 > 10.0470 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 101 ® 3.1119 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 102 © 3.3166 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 103 ] -1.2879 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 104 é -0.8199 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 105 z 11.5866 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 106 _ 45.9849 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 52 R 31.7088 42.0000 107 ¥ 0.2007 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 1 t -7.0666 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 2 h -11.0506 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 3 a 1.1391 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 4 n 1.4391 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 5 P -10.1916 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 6 o 1.3522 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 7 e 1.5150 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 8 : 0.8860 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 9 r 1.2616 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 10 l -10.9879 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 11 i -10.9043 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 12 1 -9.6350 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 13 | -11.2179 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 14 N -9.9251 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 15 f -10.8521 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 16 g -0.0917 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 17 d -11.1233 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 18 W -9.5153 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 19 s 1.2866 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 20 c 1.3705 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 21 u 1.4997 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 22 3 -9.8691 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 23 ~ 10.9517 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 24 # -9.8792 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 25 O -9.9829 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 26 ` -11.0346 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 27 @ -5.7538 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 28 F -9.7506 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 29 S -9.7154 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 30 p 1.4263 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 31 “ -10.5010 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 32 % -10.0405 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 33 £ -9.9829 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 34 . 22.8810 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 35 2 -9.9613 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 36 5 -9.6663 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 37 m 1.3937 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 38 V -9.6451 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 39 6 -9.9167 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 40 w 1.3266 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 41 T -9.7184 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 42 M -9.5312 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 43 G -10.0984 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 44 b -11.2299 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 45 9 -9.8552 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 46 ; 1.0577 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 47 D -9.7400 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 48 L -10.1710 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 49 y 1.7943 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 50 ‘ -10.4405 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 51 \ -9.5268 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 52 R -9.9725 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 53 < 0.1759 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 54 4 -9.7055 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 55 8 -9.8379 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 56 0 -10.0258 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 57 A -9.8727 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 58 E -9.9239 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 59 B -9.5474 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 60 v 1.5886 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 61 k -10.9864 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 62 J -9.7243 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 63 U -9.5907 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 64 j -10.8135 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 65 ( -11.3822 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 66 7 -9.6830 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 67 § -9.6511 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 68 $ -15.1105 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 69 € -11.1780 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 70 / -9.6422 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 71 C -9.9592 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 72 * -10.8427 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 73 ” -10.1748 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 74 ? -11.3945 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 75 { -10.7277 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 76 } -10.3886 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 77 , 23.3837 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 78 I -9.5544 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 79 ° -10.8080 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 80 K -9.7397 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 81 H -9.6900 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 82 q 1.5548 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 83 & -10.5351 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 84 ’ -10.3738 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 85 [ -10.9614 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 86 - 11.6642 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 87 Y -9.8901 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 88 Q -9.8096 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 89 " -10.4823 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 90 ! -10.7480 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 91 x 1.8374 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 92 ) -11.0924 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 93 = 5.1379 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 94 + 0.9121 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 95 X -9.7350 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 96 » 6.3136 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 97 ' -10.3948 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 98 ¢ 1.3667 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 99 Z -9.5908 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 100 > -0.1023 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 101 ® -6.8004 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 102 © -6.6977 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 103 ] -10.9776 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 104 é -11.2159 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 53 < 23.0198 26.7286 105 z 1.6930 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 106 _ 36.2887 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 53 < 23.0506 26.7286 107 ¥ -9.9284 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 1 t 2.5143 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 2 h -1.6195 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 3 a 11.1719 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 4 n 10.5513 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 5 P 0.1944 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 6 o 10.7529 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 7 e 11.1719 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 8 : 10.4054 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 9 r 10.9887 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 10 l -1.3081 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 11 i -1.4489 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 12 1 0.1263 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 13 | -0.9992 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 14 N -0.2264 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 15 f -1.4811 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 16 g 9.4271 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 17 d -1.7039 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 18 W -0.0485 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 19 s 11.0552 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 20 c 10.7540 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 21 u 11.1745 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 22 3 -0.2171 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 23 ~ 20.5439 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 24 # 0.0035 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 25 O -0.3691 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 26 ` -1.3730 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 27 @ 3.9470 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 28 F 0.1953 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 29 S -0.4191 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 30 p 11.0951 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 31 “ -0.6400 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 32 % -0.4904 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 33 £ -0.2903 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 34 . 32.9184 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 35 2 -0.4522 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 36 5 0.3586 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 37 m 10.9441 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 38 V -0.2249 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 39 6 0.0920 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 40 w 11.4560 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 41 T 0.0816 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 42 M 0.3784 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 43 G -0.3481 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 44 b -1.2721 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 45 9 0.0545 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 46 ; 10.4218 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 47 D 0.1156 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 48 L 0.0060 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 49 y 11.3259 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 50 ‘ -0.7100 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 51 \ 0.1832 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 52 R -0.3956 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 53 < 9.7240 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 54 4 -0.3105 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 55 8 -0.3032 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 56 0 -0.2774 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 57 A -0.0611 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 58 E 0.1574 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 59 B -0.1147 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 60 v 11.2827 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 61 k -1.1813 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 62 J 0.1576 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 63 U 0.1037 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 64 j -1.0877 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 65 ( -1.1591 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 66 7 -0.1977 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 67 § -0.3496 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 68 $ -4.9471 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 69 € -1.3965 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 70 / 0.2093 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 71 C -0.4360 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 72 * -1.3918 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 73 ” -0.6798 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 74 ? -1.0430 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 75 { -0.5625 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 76 } -0.7184 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 77 , 33.5981 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 78 I -0.2445 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 79 ° -1.7996 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 80 K -0.1915 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 81 H -0.0000 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 82 q 10.9988 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 83 & -1.2704 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 84 ’ -0.2678 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 85 [ -1.5084 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 86 - 21.3089 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 87 Y -0.1062 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 88 Q -0.1870 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 89 " -1.0415 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 90 ! -1.4025 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 91 x 11.3582 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 92 ) -1.3235 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 93 = 14.6538 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 94 + 10.5879 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 95 X 0.0148 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 96 » 16.3364 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 97 ' -0.9227 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 98 ¢ 11.2270 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 99 Z -0.0312 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 100 > 10.0757 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 101 ® 3.2108 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 102 © 3.4557 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 103 ] -1.3220 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 104 é -1.3940 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 105 z 11.2507 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 106 _ 45.6012 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 54 4 30.3530 41.8148 107 ¥ -0.0842 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 1 t 2.8198 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 2 h -1.0994 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 3 a 11.2109 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 4 n 11.2008 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 5 P 0.1767 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 6 o 11.1173 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 7 e 11.0566 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 8 : 11.2825 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 9 r 11.0425 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 10 l -1.4001 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 11 i -1.0250 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 12 1 0.4932 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 13 | -1.1104 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 14 N 0.0210 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 15 f -1.0084 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 16 g 9.7894 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 17 d -1.0850 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 18 W 0.2000 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 19 s 11.2091 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 20 c 11.0822 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 21 u 11.4428 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 22 3 -0.1868 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 23 ~ 20.9936 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 24 # 0.1879 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 25 O -0.1144 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 26 ` -1.1251 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 27 @ 4.0713 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 28 F 0.3313 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 29 S 0.1288 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 30 p 11.4993 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 31 “ -0.8774 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 32 % 0.1436 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 33 £ -0.2286 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 34 . 33.4723 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 35 2 0.2932 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 36 5 0.4312 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 37 m 11.1332 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 38 V -0.1025 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 39 6 -0.1597 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 40 w 11.5111 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 41 T 0.0222 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 42 M 0.3268 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 43 G -0.1004 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 44 b -1.2825 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 45 9 0.1436 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 46 ; 10.7372 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 47 D 0.0251 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 48 L 0.3228 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 49 y 11.5255 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 50 ‘ -0.3585 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 51 \ 0.2485 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 52 R -0.0519 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 53 < 10.1161 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 54 4 0.4925 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 55 8 -0.0424 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 56 0 -0.2768 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 57 A -0.1316 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 58 E 0.1040 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 59 B -0.0683 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 60 v 11.9310 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 61 k -0.9346 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 62 J 0.2457 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 63 U 0.3082 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 64 j -1.0294 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 65 ( -1.3694 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 66 7 0.1414 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 67 § -0.1360 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 68 $ -4.9732 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 69 € -1.0455 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 70 / 0.3716 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 71 C -0.2905 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 72 * -1.3526 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 73 ” -0.4159 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 74 ? -1.3411 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 75 { -0.4151 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 76 } -0.5734 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 77 , 33.2582 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 78 I 0.2727 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 79 ° -1.4569 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 80 K 0.4551 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 81 H 0.1877 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 82 q 11.2177 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 83 & -1.4984 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 84 ’ -0.5061 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 85 [ -1.3654 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 86 - 21.4638 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 87 Y -0.0829 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 88 Q 0.1248 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 89 " -0.7894 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 90 ! -1.1212 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 91 x 11.4913 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 92 ) -1.3150 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 93 = 14.4468 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 94 + 10.8626 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 95 X 0.3360 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 96 » 15.7413 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 97 ' -0.6328 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 98 ¢ 11.2715 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 99 Z -0.0502 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 100 > 9.6202 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 101 ® 3.4749 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 102 © 3.4188 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 103 ] -1.0310 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 104 é -1.2168 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 105 z 11.5024 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 106 _ 45.4186 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 55 8 27.4655 42.0000 107 ¥ 0.1395 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 1 t 2.6987 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 2 h -1.1498 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 3 a 11.1768 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 4 n 10.9569 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 5 P -0.0860 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 6 o 11.2465 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 7 e 11.4467 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 8 : 10.6473 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 9 r 10.9645 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 10 l -1.3796 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 11 i -0.9785 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 12 1 0.2650 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 13 | -1.0864 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 14 N 0.0300 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 15 f -1.3891 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 16 g 9.5728 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 17 d -1.1441 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 18 W 0.0815 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 19 s 11.1394 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 20 c 11.2653 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 21 u 11.5467 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 22 3 -0.3490 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 23 ~ 20.8703 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 24 # -0.1403 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 25 O 0.3599 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 26 ` -1.1690 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 27 @ 4.4868 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 28 F 0.2535 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 29 S -0.3703 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 30 p 11.2614 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 31 “ -0.1890 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 32 % -0.1792 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 33 £ 0.0471 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 34 . 32.9104 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 35 2 0.0979 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 36 5 0.0146 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 37 m 11.1837 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 38 V 0.2990 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 39 6 0.1930 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 40 w 11.7671 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 41 T -0.0967 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 42 M 0.5760 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 43 G 0.0175 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 44 b -1.3472 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 45 9 0.0519 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 46 ; 10.4571 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 47 D -0.1782 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 48 L 0.5896 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 49 y 11.5741 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 50 ‘ -0.4900 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 51 \ 0.2990 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 52 R -0.1748 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 53 < 9.7908 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 54 4 -0.0797 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 55 8 -0.2196 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 56 0 0.2670 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 57 A -0.1243 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 58 E 0.2683 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 59 B 0.1734 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 60 v 11.5186 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 61 k -1.0786 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 62 J 0.0738 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 63 U 0.0039 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 64 j -0.7176 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 65 ( -1.2545 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 66 7 0.2110 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 67 § 0.1720 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 68 $ -5.3679 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 69 € -1.3237 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 70 / 0.0505 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 71 C 0.4343 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 72 * -1.2157 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 73 ” -0.3018 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 74 ? -1.0435 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 75 { -0.7741 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 76 } -0.4852 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 77 , 33.6189 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 78 I 0.3849 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 79 ° -1.5134 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 80 K 0.1924 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 81 H 0.3212 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 82 q 11.4460 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 83 & -1.1669 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 84 ’ -0.3254 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 85 [ -1.3931 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 86 - 21.3418 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 87 Y 0.0805 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 88 Q 0.4285 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 89 " -0.7995 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 90 ! -1.1175 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 91 x 11.8632 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 92 ) -1.2340 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 93 = 14.2524 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 94 + 10.9739 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 95 X 0.0104 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 96 » 16.1541 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 97 ' -0.4501 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 98 ¢ 11.3838 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 99 Z 0.2418 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 100 > 9.7534 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 101 ® 3.1820 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 102 © 3.2334 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 103 ] -1.3712 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 104 é -1.1726 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 105 z 11.7049 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 106 _ 45.5785 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 56 0 30.0223 42.0000 107 ¥ 0.1294 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 1 t 2.6246 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 2 h -1.5669 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 3 a 11.2330 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 4 n 11.3524 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 5 P -0.1455 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 6 o 11.4220 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 7 e 11.1172 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 8 : 10.7535 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 9 r 10.9250 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 10 l -0.9239 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 11 i -0.8473 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 12 1 -0.0627 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 13 | -1.6173 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 14 N 0.2015 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 15 f -1.1904 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 16 g 9.8436 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 17 d -0.9584 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 18 W -0.0035 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 19 s 11.1703 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 20 c 11.0147 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 21 u 11.8560 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 22 3 0.0519 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 23 ~ 20.7155 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 24 # -0.0932 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 25 O -0.3217 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 26 ` -0.8807 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 27 @ 3.9897 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 28 F 0.0502 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 29 S -0.2325 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 30 p 11.1828 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 31 “ -0.8217 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 32 % -0.3134 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 33 £ 0.0842 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 34 . 33.1649 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 35 2 -0.2696 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 36 5 0.3852 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 37 m 11.2980 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 38 V 0.1617 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 39 6 0.2716 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 40 w 11.2545 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 41 T 0.1179 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 42 M 0.0934 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 43 G 0.3162 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 44 b -0.9663 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 45 9 0.0817 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 46 ; 10.7789 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 47 D 0.1586 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 48 L 0.0343 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 49 y 11.3501 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 50 ‘ -0.8108 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 51 \ 0.4346 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 52 R -0.0276 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 53 < 9.8321 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 54 4 0.1420 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 55 8 0.0500 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 56 0 0.1636 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 57 A -0.1375 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 58 E -0.1981 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 59 B -0.1942 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 60 v 11.8219 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 61 k -1.0749 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 62 J 0.2331 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 63 U 0.0725 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 64 j -0.8248 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 65 ( -1.1678 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 66 7 -0.2207 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 67 § 0.2310 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 68 $ -5.3067 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 69 € -1.1263 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 70 / 0.0369 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 71 C -0.0028 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 72 * -1.1448 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 73 ” -0.7349 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 74 ? -0.8224 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 75 { -0.3504 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 76 } -0.2441 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 77 , 33.0143 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 78 I 0.3442 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 79 ° -1.2743 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 80 K 0.5243 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 81 H 0.3002 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 82 q 11.3989 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 83 & -1.4019 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 84 ’ -0.3920 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 85 [ -1.3128 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 86 - 21.6190 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 87 Y 0.2309 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 88 Q 0.0547 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 89 " -0.6742 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 90 ! -1.1795 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 91 x 11.9635 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 92 ) -1.2225 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 93 = 14.7285 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 94 + 10.6881 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 95 X 0.0397 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 96 » 16.4101 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 97 ' -0.6206 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 98 ¢ 11.3205 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 99 Z 0.0786 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 100 > 9.7194 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 101 ® 3.5029 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 102 © 3.2723 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 103 ] -1.3222 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 104 é -1.3062 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 105 z 11.4241 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 106 _ 45.9194 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 57 A 36.4853 42.0000 107 ¥ 0.2683 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 1 t 2.8537 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 2 h -1.1893 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 3 a 11.4994 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 4 n 11.0029 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 5 P -0.5254 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 6 o 10.8951 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 7 e 11.2536 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 8 : 10.6039 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 9 r 11.4299 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 10 l -1.4610 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 11 i -1.2063 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 12 1 0.1302 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 13 | -1.3709 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 14 N -0.1792 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 15 f -1.1044 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 16 g 9.2857 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 17 d -1.4334 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 18 W 0.4218 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 19 s 10.8549 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 20 c 11.2430 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 21 u 11.2024 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 22 3 -0.1492 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 23 ~ 20.8149 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 24 # -0.1333 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 25 O 0.0743 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 26 ` -1.5039 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 27 @ 3.8118 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 28 F 0.0311 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 29 S -0.1359 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 30 p 11.2906 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 31 “ -0.6394 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 32 % -0.3525 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 33 £ -0.0606 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 34 . 33.0947 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 35 2 -0.2128 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 36 5 0.1086 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 37 m 11.1781 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 38 V -0.2294 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 39 6 -0.5153 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 40 w 11.2770 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 41 T -0.1879 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 42 M 0.0778 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 43 G -0.2621 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 44 b -1.5978 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 45 9 -0.3395 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 46 ; 10.4098 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 47 D -0.3644 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 48 L 0.0443 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 49 y 11.3811 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 50 ‘ -0.8287 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 51 \ -0.1933 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 52 R 0.1210 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 53 < 9.7953 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 54 4 -0.1436 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 55 8 -0.1280 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 56 0 -0.0949 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 57 A -0.3395 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 58 E -0.0652 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 59 B -0.1308 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 60 v 11.0654 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 61 k -1.4138 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 62 J 0.1663 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 63 U 0.1792 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 64 j -1.2217 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 65 ( -1.5840 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 66 7 0.2138 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 67 § -0.3561 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 68 $ -5.4855 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 69 € -1.3173 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 70 / 0.0206 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 71 C -0.1852 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 72 * -1.4806 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 73 ” -0.6200 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 74 ? -1.1162 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 75 { -0.8273 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 76 } -0.6629 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 77 , 33.1123 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 78 I -0.1245 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 79 ° -1.3058 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 80 K -0.0404 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 81 H -0.0630 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 82 q 11.0062 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 83 & -1.3434 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 84 ’ -0.7083 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 85 [ -1.4395 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 86 - 21.3657 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 87 Y -0.1633 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 88 Q -0.1405 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 89 " -0.8519 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 90 ! -1.0259 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 91 x 11.0092 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 92 ) -1.3695 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 93 = 14.3742 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 94 + 10.4587 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 95 X 0.1033 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 96 » 16.2266 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 97 ' -0.8169 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 98 ¢ 10.8838 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 99 Z -0.0679 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 100 > 9.5512 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 101 ® 2.8857 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 102 © 3.3431 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 103 ] -1.1173 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 104 é -1.4239 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 105 z 11.1352 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 106 _ 45.8722 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 58 E 26.3802 41.8148 107 ¥ -0.0523 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 1 t 3.1255 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 2 h -1.5208 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 3 a 11.1980 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 4 n 11.4892 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 5 P 0.4056 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 6 o 11.4633 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 7 e 11.4920 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 8 : 10.7757 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 9 r 11.2970 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 10 l -1.1411 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 11 i -1.0462 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 12 1 0.0194 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 13 | -1.3111 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 14 N -0.0535 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 15 f -1.0825 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 16 g 9.4701 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 17 d -1.3489 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 18 W 0.0948 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 19 s 11.2877 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 20 c 11.2217 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 21 u 11.5994 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 22 3 0.0000 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 23 ~ 20.9873 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 24 # 0.0607 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 25 O 0.0883 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 26 ` -0.7356 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 27 @ 4.2002 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 28 F -0.1714 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 29 S -0.6503 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 30 p 10.9871 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 31 “ -0.3196 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 32 % 0.0222 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 33 £ -0.2152 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 34 . 33.1319 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 35 2 0.0086 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 36 5 -0.1910 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 37 m 11.3902 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 38 V 0.4249 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 39 6 -0.0374 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 40 w 11.5864 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 41 T 0.2813 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 42 M -0.0965 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 43 G -0.1630 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 44 b -1.2795 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 45 9 0.1174 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 46 ; 10.8424 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 47 D -0.1299 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 48 L 0.1704 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 49 y 11.3602 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 50 ‘ -0.3950 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 51 \ 0.3630 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 52 R 0.1865 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 53 < 10.0038 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 54 4 0.0914 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 55 8 -0.0606 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 56 0 -0.2724 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 57 A -0.1792 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 58 E 0.0641 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 59 B 0.2450 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 60 v 11.6345 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 61 k -1.0965 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 62 J 0.0099 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 63 U 0.0620 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 64 j -0.7468 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 65 ( -1.2334 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 66 7 0.4010 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 67 § -0.1332 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 68 $ -5.1595 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 69 € -1.1345 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 70 / 0.2683 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 71 C -0.2844 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 72 * -1.2258 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 73 ” -0.4701 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 74 ? -0.9441 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 75 { -0.6583 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 76 } -0.3079 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 77 , 33.3094 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 78 I 0.4521 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 79 ° -1.2441 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 80 K 0.3684 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 81 H -0.0681 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 82 q 10.7622 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 83 & -1.1000 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 84 ’ -0.5781 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 85 [ -1.1952 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 86 - 21.1432 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 87 Y 0.2350 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 88 Q -0.1375 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 89 " -0.6963 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 90 ! -1.1237 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 91 x 11.5082 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 92 ) -1.4366 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 93 = 14.7905 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 94 + 10.8563 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 95 X 0.2323 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 96 » 16.0564 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 97 ' -0.9755 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 98 ¢ 11.2095 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 99 Z 0.3302 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 100 > 9.9836 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 101 ® 3.2544 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 102 © 3.5938 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 103 ] -0.8561 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 104 é -1.1842 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 105 z 11.5049 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 106 _ 45.7629 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 59 B 28.0000 42.0000 107 ¥ 0.1266 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 1 t -8.7513 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 2 h -12.6984 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 3 a -0.3567 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 4 n -0.3258 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 5 P -11.3337 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 6 o -0.5656 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 7 e -0.5131 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 8 : -0.7546 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 9 r -0.2491 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 10 l -12.9404 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 11 i -12.6044 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 12 1 -11.3342 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 13 | -12.7390 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 14 N -11.2860 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 15 f -12.8743 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 16 g -2.1611 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 17 d -12.7189 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 18 W -11.0636 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 19 s -0.1155 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 20 c -0.1075 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 21 u 0.2055 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 22 3 -11.4936 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 23 ~ 9.3530 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 24 # -11.5049 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 25 O -11.6979 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 26 ` -12.6092 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 27 @ -7.4850 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 28 F -11.6560 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 29 S -11.9300 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 30 p -0.1300 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 31 “ -11.9921 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 32 % -11.6561 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 33 £ -11.7824 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 34 . 21.2696 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 35 2 -11.3021 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 36 5 -11.3574 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 37 m -0.5106 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 38 V -11.6378 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 39 6 -11.8387 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 40 w -0.0667 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 41 T -11.1615 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 42 M -11.2708 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 43 G -11.4288 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 44 b -12.6636 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 45 9 -11.6800 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 46 ; -0.5015 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 47 D -11.9069 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 48 L -10.9942 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 49 y -0.0544 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 50 ‘ -12.0410 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 51 \ -11.6454 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 52 R -11.6493 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 53 < -1.5483 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 54 4 -11.8333 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 55 8 -11.6849 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 56 0 -11.7868 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 57 A -11.4132 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 58 E -11.5598 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 59 B -11.4788 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 60 v 0.2590 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 61 k -12.5086 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 62 J -11.5602 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 63 U -11.1977 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 64 j -12.4850 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 65 ( -12.7150 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 66 7 -11.3555 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 67 § -11.2549 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 68 $ -16.5847 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 69 € -12.7815 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 70 / -11.4739 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 71 C -11.6990 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 72 * -12.5417 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 73 ” -12.5239 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 74 ? -12.4790 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 75 { -12.0895 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 76 } -12.2509 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 77 , 21.6568 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 78 I -11.4449 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 79 ° -12.7535 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 80 K -11.2739 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 81 H -11.2551 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 82 q -0.5306 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 83 & -12.3220 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 84 ’ -12.3270 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 85 [ -13.0928 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 86 - 9.6369 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 87 Y -11.4720 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 88 Q -11.5568 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 89 " -11.8754 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 90 ! -12.6841 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 91 x 0.1759 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 92 ) -12.7817 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 93 = 2.9209 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 94 + -0.6275 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 95 X -11.6103 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 96 » 4.6235 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 97 ' -12.1641 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 98 ¢ -0.4501 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 99 Z -11.3795 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 100 > -1.7963 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 101 ® -8.3449 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 102 © -8.2178 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 103 ] -12.8852 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 104 é -12.6539 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 105 z -0.1184 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 106 _ 34.1716 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 60 v 31.3199 30.4371 107 ¥ -11.3379 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 1 t 4.0422 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 2 h 0.1444 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 3 a 12.4404 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 4 n 12.2715 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 5 P 1.2603 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 6 o 12.4184 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 7 e 12.4276 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 8 : 12.0733 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 9 r 12.5803 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 10 l -0.0722 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 11 i 0.4746 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 12 1 1.3000 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 13 | -0.2858 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 14 N 1.7294 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 15 f -0.1375 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 16 g 11.0483 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 17 d 0.1907 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 18 W 1.4444 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 19 s 12.6592 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 20 c 12.4780 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 21 u 12.6659 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 22 3 1.1120 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 23 ~ 22.0057 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 24 # 1.0883 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 25 O 1.2334 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 26 ` 0.0862 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 27 @ 4.9758 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 28 F 1.4043 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 29 S 1.1922 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 30 p 12.5583 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 31 “ 0.1625 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 32 % 1.1211 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 33 £ 1.2690 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 34 . 34.1660 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 35 2 1.3075 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 36 5 1.4666 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 37 m 12.3902 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 38 V 1.5132 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 39 6 1.2262 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 40 w 12.7358 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 41 T 1.4244 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 42 M 1.3345 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 43 G 1.1800 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 44 b 0.1090 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 45 9 1.2335 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 46 ; 11.9821 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 47 D 1.0436 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 48 L 1.4732 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 49 y 12.6279 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 50 ‘ 0.8442 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 51 \ 1.3800 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 52 R 1.2999 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 53 < 10.9574 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 54 4 1.4840 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 55 8 1.4511 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 56 0 1.1503 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 57 A 0.9476 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 58 E 1.4066 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 59 B 1.2261 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 60 v 12.9128 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 61 k -0.1212 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 62 J 1.2836 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 63 U 1.5128 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 64 j 0.4355 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 65 ( 0.0298 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 66 7 1.2601 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 67 § 1.1307 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 68 $ -4.1276 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 69 € -0.1893 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 70 / 1.4642 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 71 C 1.1441 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 72 * -0.0722 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 73 ” 0.4905 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 74 ? 0.1574 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 75 { 0.4811 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 76 } 0.7448 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 77 , 34.6829 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 78 I 1.4955 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 79 ° -0.1012 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 80 K 1.3076 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 81 H 1.4490 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 82 q 12.4334 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 83 & -0.3899 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 84 ’ 0.7732 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 85 [ 0.1079 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 86 - 22.7822 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 87 Y 1.1216 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 88 Q 1.2953 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 89 " 0.2336 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 90 ! 0.1973 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 91 x 12.8025 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 92 ) 0.1407 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 93 = 16.2281 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 94 + 12.2781 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 95 X 1.2009 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 96 » 17.3303 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 97 ' 0.3932 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 98 ¢ 12.4838 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 99 Z 1.2604 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 100 > 10.9959 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 101 ® 4.5308 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 102 © 4.4564 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 103 ] -0.0753 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 104 é 0.1704 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 105 z 12.8510 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 106 _ 47.1126 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 61 k 28.0000 43.2185 107 ¥ 1.3885 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 1 t 2.7730 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 2 h -1.6657 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 3 a 11.1766 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 4 n 11.0499 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 5 P -0.2117 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 6 o 11.0865 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 7 e 11.1941 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 8 : 10.7446 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 9 r 11.0325 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 10 l -1.4231 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 11 i -0.9820 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 12 1 -0.1216 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 13 | -1.3062 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 14 N 0.1321 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 15 f -1.2824 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 16 g 9.6297 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 17 d -1.1414 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 18 W 0.0831 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 19 s 10.7933 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 20 c 11.1102 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 21 u 11.4176 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 22 3 -0.4130 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 23 ~ 20.7899 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 24 # -0.0121 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 25 O -0.3389 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 26 ` -1.2679 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 27 @ 3.9082 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 28 F -0.2098 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 29 S -0.2245 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 30 p 10.8782 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 31 “ -0.7470 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 32 % -0.1035 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 33 £ -0.0862 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 34 . 32.9336 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 35 2 -0.2646 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 36 5 0.2109 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 37 m 11.0258 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 38 V 0.3252 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 39 6 -0.2086 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 40 w 11.4242 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 41 T 0.0831 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 42 M 0.0716 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 43 G -0.0564 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 44 b -1.4915 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 45 9 -0.2130 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 46 ; 10.3220 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 47 D -0.3525 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 48 L -0.0194 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 49 y 11.3571 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 50 ‘ -0.8571 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 51 \ -0.0443 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 52 R -0.3879 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 53 < 9.4231 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 54 4 0.0730 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 55 8 -0.0369 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 56 0 -0.1957 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 57 A -0.1543 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 58 E 0.0519 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 59 B -0.1251 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 60 v 11.2403 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 61 k -1.3361 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 62 J 0.0663 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 63 U 0.3231 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 64 j -1.4531 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 65 ( -1.3359 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 66 7 -0.3677 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 67 § -0.0107 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 68 $ -5.2206 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 69 € -1.5503 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 70 / -0.3473 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 71 C 0.0829 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 72 * -1.3889 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 73 ” -0.7061 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 74 ? -1.6836 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 75 { -0.6873 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 76 } -0.5888 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 77 , 33.4632 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 78 I -0.1553 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 79 ° -1.2688 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 80 K -0.2828 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 81 H 0.4527 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 82 q 10.8764 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 83 & -1.2348 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 84 ’ -0.6764 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 85 [ -1.4567 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 86 - 21.0303 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 87 Y 0.1887 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 88 Q -0.1714 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 89 " -0.7038 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 90 ! -1.2451 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 91 x 11.3738 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 92 ) -1.5620 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 93 = 14.2781 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 94 + 10.7408 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 95 X -0.0457 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 96 » 16.2141 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 97 ' -0.9459 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 98 ¢ 11.0459 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 99 Z -0.0015 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 100 > 9.6084 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 101 ® 3.0785 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 102 © 3.2544 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 103 ] -1.4226 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 104 é -1.2196 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 105 z 11.2355 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 106 _ 45.3994 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 62 J 27.0643 41.8148 107 ¥ 0.0370 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 1 t 2.5271 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 2 h -1.4761 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 3 a 10.8726 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 4 n 10.9380 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 5 P -0.0255 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 6 o 10.9167 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 7 e 11.4122 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 8 : 10.5160 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 9 r 10.9840 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 10 l -1.2792 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 11 i -1.4678 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 12 1 0.2672 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 13 | -1.5706 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 14 N -0.1138 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 15 f -1.3120 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 16 g 9.3887 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 17 d -1.0837 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 18 W 0.0532 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 19 s 11.1273 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 20 c 10.9786 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 21 u 11.2860 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 22 3 -0.4341 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 23 ~ 20.7952 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 24 # -0.6510 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 25 O -0.1630 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 26 ` -1.2840 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 27 @ 3.7722 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 28 F -0.0951 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 29 S -0.1896 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 30 p 10.7279 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 31 “ -0.6262 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 32 % -0.3639 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 33 £ -0.1131 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 34 . 32.7498 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 35 2 -0.1793 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 36 5 -0.0471 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 37 m 11.1719 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 38 V -0.3008 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 39 6 0.3514 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 40 w 11.4681 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 41 T -0.4614 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 42 M -0.1865 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 43 G -0.0921 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 44 b -1.4840 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 45 9 -0.4220 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 46 ; 10.4577 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 47 D -0.3245 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 48 L 0.1302 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 49 y 11.1629 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 50 ‘ -0.7013 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 51 \ -0.2027 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 52 R -0.0811 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 53 < 9.9295 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 54 4 0.0269 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 55 8 -0.4615 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 56 0 -0.2309 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 57 A -0.0698 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 58 E 0.0610 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 59 B -0.7440 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 60 v 11.6117 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 61 k -1.1371 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 62 J -0.1080 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 63 U -0.0047 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 64 j -1.1159 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 65 ( -1.6200 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 66 7 0.2109 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 67 § 0.2477 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 68 $ -4.9374 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 69 € -1.5232 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 70 / -0.0488 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 71 C -0.2586 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 72 * -1.6228 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 73 ” -0.5220 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 74 ? -1.2646 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 75 { -0.6639 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 76 } -0.9551 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 77 , 33.2531 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 78 I 0.3276 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 79 ° -1.5840 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 80 K 0.0432 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 81 H 0.0432 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 82 q 11.1795 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 83 & -1.4747 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 84 ’ -0.5046 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 85 [ -1.3033 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 86 - 21.3991 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 87 Y -0.1242 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 88 Q -0.2630 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 89 " -0.8007 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 90 ! -1.6774 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 91 x 11.4321 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 92 ) -1.4243 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 93 = 14.2413 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 94 + 10.7245 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 95 X 0.2883 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 96 » 15.8167 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 97 ' -0.9617 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 98 ¢ 11.4340 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 99 Z 0.1759 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 100 > 9.5047 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 101 ® 2.9594 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 102 © 3.2808 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 103 ] -0.9834 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 104 é -1.2406 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 105 z 11.5051 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 106 _ 45.7743 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 63 U 30.8396 41.8148 107 ¥ -0.0694 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 1 t 3.2696 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 2 h -0.3756 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 3 a 12.0158 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 4 n 12.0093 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 5 P 0.6473 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 6 o 12.1529 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 7 e 12.2030 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 8 : 11.7636 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 9 r 11.9420 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 10 l -0.3228 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 11 i -0.0683 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 12 1 1.2318 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 13 | -0.3521 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 14 N 1.1771 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 15 f -0.4254 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 16 g 10.3847 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 17 d -0.3785 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 18 W 0.8740 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 19 s 12.2273 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 20 c 11.9382 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 21 u 12.2756 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 22 3 0.6956 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 23 ~ 21.6753 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 24 # 0.7007 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 25 O 0.8730 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 26 ` -0.0541 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 27 @ 5.1098 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 28 F 0.9359 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 29 S 0.8084 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 30 p 12.2103 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 31 “ 0.2095 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 32 % 0.9024 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 33 £ 1.1125 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 34 . 34.1664 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 35 2 0.6752 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 36 5 1.2540 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 37 m 11.8835 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 38 V 0.8207 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 39 6 0.7964 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 40 w 12.4932 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 41 T 1.1152 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 42 M 0.8217 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 43 G 0.8516 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 44 b -0.2720 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 45 9 0.9260 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 46 ; 11.6733 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 47 D 0.7569 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 48 L 0.9607 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 49 y 12.4357 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 50 ‘ 0.4182 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 51 \ 1.2233 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 52 R 0.8503 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 53 < 10.8201 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 54 4 0.9738 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 55 8 1.0297 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 56 0 1.0269 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 57 A 0.7900 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 58 E 1.3499 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 59 B 0.9188 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 60 v 12.4410 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 61 k -0.3433 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 62 J 0.9737 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 63 U 1.0321 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 64 j -0.1422 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 65 ( -0.2246 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 66 7 1.0680 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 67 § 0.6812 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 68 $ -4.1972 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 69 € -0.2145 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 70 / 1.0172 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 71 C 0.9421 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 72 * -0.2886 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 73 ” 0.5628 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 74 ? -0.1865 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 75 { 0.4311 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 76 } 0.5339 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 77 , 34.2955 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 78 I 0.8949 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 79 ° -0.2712 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 80 K 1.0590 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 81 H 0.9304 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 82 q 12.2893 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 83 & -0.0871 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 84 ’ 0.5352 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 85 [ -0.4227 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 86 - 22.1015 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 87 Y 1.0368 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 88 Q 0.7378 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 89 " 0.3273 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 90 ! -0.0810 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 91 x 12.4458 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 92 ) -0.1104 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 93 = 15.4037 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 94 + 12.2724 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 95 X 0.9364 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 96 » 17.0359 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 97 ' 0.3570 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 98 ¢ 12.3598 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 99 Z 0.9569 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 100 > 10.7119 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 101 ® 4.2570 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 102 © 4.2542 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 103 ] -0.4098 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 104 é -0.3225 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 105 z 12.1081 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 106 _ 46.6246 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 64 j 17.0247 54.8606 107 ¥ 0.9406 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 1 t 4.1945 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 2 h 0.0870 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 3 a 12.6587 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 4 n 12.3805 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 5 P 0.9932 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 6 o 12.4867 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 7 e 12.6126 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 8 : 12.1378 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 9 r 12.5404 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 10 l 0.0741 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 11 i 0.4758 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 12 1 1.4148 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 13 | 0.1821 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 14 N 1.2648 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 15 f -0.1126 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 16 g 10.9382 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 17 d 0.1123 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 18 W 1.4301 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 19 s 12.3221 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 20 c 12.3924 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 21 u 13.1269 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 22 3 1.2451 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 23 ~ 22.1888 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 24 # 1.6284 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 25 O 1.3560 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 26 ` -0.0042 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 27 @ 5.4469 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 28 F 1.2669 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 29 S 1.2185 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 30 p 12.5137 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 31 “ 0.5868 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 32 % 1.2409 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 33 £ 1.0320 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 34 . 34.2307 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 35 2 1.3411 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 36 5 1.3268 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 37 m 12.5636 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 38 V 1.6141 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 39 6 0.9885 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 40 w 12.8025 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 41 T 1.2789 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 42 M 1.5560 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 43 G 1.2138 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 44 b -0.1879 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 45 9 1.2185 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 46 ; 12.2166 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 47 D 0.9280 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 48 L 1.3178 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 49 y 12.9027 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 50 ‘ 0.8398 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 51 \ 1.2317 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 52 R 1.1862 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 53 < 11.1233 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 54 4 1.2817 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 55 8 1.3358 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 56 0 1.1148 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 57 A 1.1243 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 58 E 1.5387 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 59 B 0.9725 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 60 v 12.8943 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 61 k -0.0903 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 62 J 1.7770 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 63 U 1.3519 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 64 j 0.0984 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 65 ( -0.0432 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 66 7 1.6570 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 67 § 1.5726 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 68 $ -4.0170 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 69 € 0.0047 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 70 / 1.5322 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 71 C 1.1594 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 72 * 0.1389 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 73 ” 0.4814 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 74 ? 0.2629 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 75 { 0.6433 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 76 } 0.7495 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 77 , 34.5146 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 78 I 1.3656 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 79 ° -0.0504 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 80 K 1.4732 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 81 H 1.3889 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 82 q 12.2873 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 83 & -0.0488 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 84 ’ 0.8691 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 85 [ -0.0500 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 86 - 22.8745 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 87 Y 1.4879 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 88 Q 1.4881 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 89 " 0.2067 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 90 ! 0.3673 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 91 x 12.6965 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 92 ) -0.1767 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 93 = 16.0227 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 94 + 12.1326 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 95 X 1.8885 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 96 » 17.3169 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 97 ' 0.5151 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 98 ¢ 12.4675 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 99 Z 1.4037 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 100 > 11.1791 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 101 ® 4.5183 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 102 © 4.7586 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 103 ] 0.1140 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 104 é 0.1380 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 105 z 13.0485 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 106 _ 47.0223 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 65 ( 13.3024 55.7172 107 ¥ 1.3130 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 1 t 2.3329 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 2 h -1.2307 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 3 a 10.8660 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 4 n 11.0628 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 5 P -0.1113 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 6 o 11.2564 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 7 e 11.0916 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 8 : 10.4185 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 9 r 11.0966 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 10 l -1.0446 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 11 i -1.3289 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 12 1 -0.0609 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 13 | -1.0040 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 14 N 0.2224 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 15 f -1.4004 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 16 g 9.3913 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 17 d -1.4516 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 18 W -0.0284 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 19 s 11.3155 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 20 c 11.3856 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 21 u 11.1453 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 22 3 -0.1986 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 23 ~ 20.9625 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 24 # -0.2013 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 25 O -0.4076 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 26 ` -1.2729 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 27 @ 3.9077 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 28 F 0.0025 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 29 S -0.1559 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 30 p 11.0513 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 31 “ -0.6550 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 32 % -0.2432 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 33 £ -0.0160 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 34 . 32.8223 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 35 2 -0.0769 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 36 5 0.1909 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 37 m 11.2750 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 38 V -0.1193 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 39 6 0.0103 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 40 w 11.5767 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 41 T -0.1349 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 42 M -0.3115 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 43 G -0.1813 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 44 b -1.4084 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 45 9 -0.0012 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 46 ; 10.7211 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 47 D -0.2842 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 48 L 0.0255 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 49 y 11.4498 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 50 ‘ -1.0670 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 51 \ 0.2895 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 52 R -0.1548 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 53 < 9.8510 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 54 4 -0.1349 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 55 8 -0.4471 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 56 0 -0.2511 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 57 A -0.4385 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 58 E 0.1126 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 59 B -0.5465 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 60 v 11.2936 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 61 k -1.0761 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 62 J -0.2296 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 63 U 0.1701 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 64 j -1.3379 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 65 ( -1.5580 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 66 7 -0.0734 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 67 § 0.2527 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 68 $ -5.3732 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 69 € -1.4023 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 70 / 0.0148 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 71 C -0.6220 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 72 * -1.0982 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 73 ” -0.5907 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 74 ? -1.1916 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 75 { -0.5226 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 76 } -0.4870 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 77 , 32.8525 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 78 I -0.0673 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 79 ° -1.3714 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 80 K 0.0831 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 81 H -0.1369 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 82 q 11.1513 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 83 & -1.1667 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 84 ’ -0.6071 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 85 [ -1.3482 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 86 - 21.2410 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 87 Y 0.1954 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 88 Q -0.0948 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 89 " -0.7997 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 90 ! -1.1105 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 91 x 11.2308 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 92 ) -1.2496 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 93 = 14.2730 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 94 + 10.9295 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 95 X -0.1509 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 96 » 16.1101 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 97 ' -0.8502 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 98 ¢ 11.2784 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 99 Z -0.0529 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 100 > 9.8132 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 101 ® 3.0958 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 102 © 3.1466 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 103 ] -1.5786 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 104 é -1.0654 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 105 z 11.2043 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 106 _ 45.6508 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 66 7 28.2160 41.8148 107 ¥ -0.0134 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 1 t 2.9374 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 2 h -1.0854 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 3 a 11.0500 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 4 n 11.1961 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 5 P -0.2300 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 6 o 10.7694 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 7 e 11.3855 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 8 : 10.6541 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 9 r 11.1213 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 10 l -1.0281 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 11 i -0.9185 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 12 1 0.0833 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 13 | -1.5745 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 14 N 0.0848 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 15 f -1.3546 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 16 g 9.8672 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 17 d -1.2113 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 18 W 0.4854 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 19 s 11.1157 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 20 c 11.3613 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 21 u 11.3750 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 22 3 0.1026 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 23 ~ 20.6177 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 24 # 0.1277 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 25 O 0.1397 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 26 ` -1.1920 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 27 @ 4.0419 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 28 F 0.1333 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 29 S -0.0101 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 30 p 11.2581 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 31 “ -0.5518 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 32 % 0.0331 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 33 £ -0.1630 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 34 . 32.7769 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 35 2 0.2743 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 36 5 0.7522 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 37 m 11.6295 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 38 V -0.0156 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 39 6 0.0511 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 40 w 11.2992 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 41 T 0.2208 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 42 M 0.1140 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 43 G 0.3170 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 44 b -0.9389 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 45 9 0.0831 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 46 ; 10.7325 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 47 D -0.3175 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 48 L 0.4471 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 49 y 11.6134 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 50 ‘ -0.6098 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 51 \ 0.1926 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 52 R -0.0646 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 53 < 9.7509 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 54 4 0.1467 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 55 8 0.1720 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 56 0 -0.1792 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 57 A -0.0323 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 58 E 0.0545 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 59 B -0.0399 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 60 v 11.3703 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 61 k -1.0274 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 62 J 0.1453 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 63 U 0.1712 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 64 j -0.5612 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 65 ( -0.9947 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 66 7 -0.0426 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 67 § 0.0000 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 68 $ -5.3240 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 69 € -1.0709 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 70 / 0.1021 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 71 C -0.1052 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 72 * -1.0912 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 73 ” -0.5934 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 74 ? -0.6013 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 75 { -0.4867 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 76 } -0.7203 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 77 , 33.4675 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 78 I 0.1985 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 79 ° -1.0105 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 80 K 0.2183 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 81 H 0.4144 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 82 q 11.0255 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 83 & -0.9183 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 84 ’ -0.5950 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 85 [ -1.3175 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 86 - 21.1910 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 87 Y 0.1453 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 88 Q -0.0481 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 89 " -0.3795 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 90 ! -0.9916 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 91 x 11.2927 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 92 ) -1.1310 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 93 = 14.2546 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 94 + 10.7558 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 95 X 0.0948 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 96 » 16.4474 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 97 ' -0.5270 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 98 ¢ 11.4680 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 99 Z -0.0883 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 100 > 9.7860 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 101 ® 3.2804 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 102 © 3.6020 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 103 ] -1.0187 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 104 é -0.9531 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 105 z 11.5183 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 106 _ 45.6900 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 67 § 24.8433 42.0000 107 ¥ 0.1481 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 1 t 7.8457 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 2 h 3.7921 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 3 a 16.5188 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 4 n 16.1560 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 5 P 5.0549 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 6 o 16.0441 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 7 e 16.1276 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 8 : 16.2253 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 9 r 16.0635 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 10 l 3.7447 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 11 i 4.1937 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 12 1 5.2960 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 13 | 4.1037 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 14 N 5.2724 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 15 f 3.6111 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 16 g 14.9838 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 17 d 3.9209 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 18 W 5.3271 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 19 s 16.4640 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 20 c 16.5914 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 21 u 16.6959 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 22 3 5.4249 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 23 ~ 26.1521 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 24 # 5.0897 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 25 O 5.1506 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 26 ` 4.0179 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 27 @ 9.1749 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 28 F 5.5812 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 29 S 5.5127 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 30 p 16.5544 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 31 “ 4.6991 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 32 % 4.9008 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 33 £ 5.2176 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 34 . 38.1048 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 35 2 5.1913 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 36 5 5.3442 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 37 m 16.3490 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 38 V 5.7006 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 39 6 5.1528 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 40 w 16.7689 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 41 T 5.3184 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 42 M 5.5415 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 43 G 5.1656 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 44 b 4.0648 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 45 9 5.3345 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 46 ; 15.9571 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 47 D 5.2099 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 48 L 5.3347 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 49 y 16.6207 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 50 ‘ 4.7431 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 51 \ 5.5829 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 52 R 5.0354 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 53 < 15.1562 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 54 4 5.4876 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 55 8 4.8119 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 56 0 5.1700 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 57 A 5.3778 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 58 E 5.2191 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 59 B 5.0020 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 60 v 16.7155 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 61 k 3.8297 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 62 J 5.2469 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 63 U 5.4382 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 64 j 4.2779 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 65 ( 3.7246 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 66 7 5.1302 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 67 § 5.0090 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 68 $ 0.0917 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 69 € 3.9479 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 70 / 5.5449 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 71 C 5.2337 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 72 * 4.0878 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 73 ” 4.5840 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 74 ? 4.2035 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 75 { 4.6679 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 76 } 4.6360 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 77 , 38.6484 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 78 I 5.2911 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 79 ° 3.8004 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 80 K 5.1411 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 81 H 5.4051 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 82 q 16.5680 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 83 & 4.0539 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 84 ’ 4.7681 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 85 [ 3.8230 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 86 - 26.6956 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 87 Y 5.4113 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 88 Q 5.5327 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 89 " 4.5025 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 90 ! 4.2396 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 91 x 16.8899 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 92 ) 4.0598 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 93 = 19.5750 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 94 + 15.9015 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 95 X 5.3613 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 96 » 21.3095 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 97 ' 4.4203 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 98 ¢ 16.4367 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 99 Z 5.5598 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 100 > 15.3123 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 101 ® 8.4256 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 102 © 8.6752 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 103 ] 3.9354 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 104 é 4.4508 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 105 z 16.5672 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 106 _ 51.0644 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 68 $ 25.4433 53.1617 107 ¥ 5.0364 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 1 t 3.7341 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 2 h -0.1475 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 3 a 12.2840 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 4 n 12.4805 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 5 P 0.9091 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 6 o 12.5165 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 7 e 12.5598 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 8 : 12.0158 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 9 r 12.2313 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 10 l -0.0148 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 11 i 0.0349 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 12 1 0.9848 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 13 | 0.2858 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 14 N 1.3159 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 15 f 0.0035 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 16 g 10.8935 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 17 d -0.0623 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 18 W 1.4631 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 19 s 12.4003 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 20 c 12.7572 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 21 u 12.7413 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 22 3 1.5206 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 23 ~ 22.2979 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 24 # 1.0760 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 25 O 1.0198 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 26 ` 0.3407 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 27 @ 5.6080 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 28 F 1.4204 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 29 S 1.1963 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 30 p 12.2622 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 31 “ 0.5865 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 32 % 1.4323 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 33 £ 1.1166 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 34 . 34.1418 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 35 2 1.0739 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 36 5 1.2847 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 37 m 12.3291 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 38 V 1.6276 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 39 6 1.3813 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 40 w 12.7768 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 41 T 1.5448 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 42 M 1.4980 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 43 G 0.9548 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 44 b 0.0749 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 45 9 1.1109 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 46 ; 12.1641 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 47 D 1.3746 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 48 L 1.4321 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 49 y 12.5104 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 50 ‘ 0.9499 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 51 \ 1.7048 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 52 R 0.9004 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 53 < 11.1544 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 54 4 1.2408 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 55 8 1.3218 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 56 0 1.1814 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 57 A 0.9922 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 58 E 1.4797 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 59 B 1.3131 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 60 v 12.8099 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 61 k -0.2447 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 62 J 1.6334 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 63 U 1.0150 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 64 j 0.1151 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 65 ( -0.0283 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 66 7 1.5839 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 67 § 0.9282 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 68 $ -4.0886 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 69 € 0.0766 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 70 / 1.3047 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 71 C 1.3222 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 72 * 0.0346 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 73 ” 0.8718 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 74 ? 0.1539 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 75 { 0.8114 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 76 } 0.6668 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 77 , 34.6769 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 78 I 1.4320 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 79 ° -0.2724 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 80 K 1.1980 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 81 H 1.2682 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 82 q 12.4914 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 83 & 0.2712 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 84 ’ 0.7233 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 85 [ -0.2764 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 86 - 22.4595 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 87 Y 1.1751 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 88 Q 1.4874 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 89 " 0.7621 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 90 ! 0.3346 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 91 x 12.6033 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 92 ) -0.0548 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 93 = 15.7591 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 94 + 12.1223 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 95 X 1.4577 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 96 » 17.3399 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 97 ' 0.4219 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 98 ¢ 12.6328 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 99 Z 1.4436 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 100 > 11.0985 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 101 ® 4.4315 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 102 © 4.4047 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 103 ] -0.1212 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 104 é 0.0401 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 105 z 12.7056 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 106 _ 47.1073 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 69 € 32.1765 44.4371 107 ¥ 1.5256 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 1 t 2.4199 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 2 h -1.3594 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 3 a 11.0359 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 4 n 11.1052 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 5 P -0.3879 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 6 o 11.1186 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 7 e 11.0614 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 8 : 10.4232 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 9 r 11.0729 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 10 l -1.7834 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 11 i -1.1051 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 12 1 -0.1551 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 13 | -1.4380 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 14 N 0.0238 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 15 f -1.3653 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 16 g 9.3600 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 17 d -1.2630 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 18 W 0.0014 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 19 s 10.7406 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 20 c 11.0593 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 21 u 11.2294 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 22 3 -0.3274 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 23 ~ 21.0046 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 24 # 0.0183 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 25 O -0.2222 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 26 ` -1.0437 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 27 @ 4.0389 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 28 F -0.0640 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 29 S -0.1434 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 30 p 11.0595 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 31 “ -0.7046 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 32 % -0.2000 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 33 £ -0.1294 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 34 . 32.8161 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 35 2 -0.3288 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 36 5 0.1403 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 37 m 11.1731 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 38 V -0.0928 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 39 6 -0.2284 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 40 w 11.3676 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 41 T 0.2731 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 42 M 0.0697 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 43 G -0.2276 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 44 b -1.3403 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 45 9 -0.1947 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 46 ; 10.7683 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 47 D -0.2356 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 48 L -0.1926 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 49 y 11.2119 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 50 ‘ -0.9285 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 51 \ -0.3228 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 52 R -0.3485 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 53 < 9.4889 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 54 4 -0.2210 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 55 8 -0.1636 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 56 0 -0.1286 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 57 A -0.2730 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 58 E -0.1354 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 59 B -0.2443 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 60 v 11.5094 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 61 k -1.3014 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 62 J 0.0755 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 63 U 0.2558 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 64 j -1.2473 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 65 ( -1.5746 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 66 7 -0.2796 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 67 § -0.3803 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 68 $ -5.4444 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 69 € -1.3706 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 70 / -0.1278 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 71 C -0.2708 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 72 * -1.5506 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 73 ” -0.9872 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 74 ? -1.3021 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 75 { -0.7194 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 76 } -0.5614 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 77 , 33.0827 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 78 I 0.0290 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 79 ° -1.4636 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 80 K -0.5017 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 81 H 0.1912 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 82 q 11.0632 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 83 & -1.0162 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 84 ’ -0.7149 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 85 [ -1.4009 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 86 - 21.3220 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 87 Y 0.2128 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 88 Q 0.0728 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 89 " -0.8655 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 90 ! -1.0940 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 91 x 11.6549 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 92 ) -1.3874 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 93 = 13.9729 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 94 + 10.6207 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 95 X -0.2238 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 96 » 16.0629 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 97 ' -0.7554 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 98 ¢ 11.0828 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 99 Z -0.0410 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 100 > 9.5425 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 101 ® 3.1884 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 102 © 3.4363 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 103 ] -1.5830 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 104 é -1.2200 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 105 z 11.1586 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 106 _ 45.7089 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 70 / 23.5187 41.8148 107 ¥ 0.0424 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 1 t 2.6304 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 2 h -1.1087 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 3 a 11.5167 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 4 n 11.3930 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 5 P 0.0539 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 6 o 11.2542 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 7 e 11.1250 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 8 : 10.6508 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 9 r 11.4920 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 10 l -1.0614 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 11 i -1.2202 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 12 1 -0.1045 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 13 | -1.4121 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 14 N 0.0099 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 15 f -1.2977 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 16 g 9.9542 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 17 d -1.0760 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 18 W 0.2964 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 19 s 11.1573 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 20 c 11.2149 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 21 u 11.5562 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 22 3 -0.0965 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 23 ~ 20.9953 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 24 # 0.0015 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 25 O -0.2455 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 26 ` -1.0435 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 27 @ 4.2809 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 28 F 0.4856 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 29 S 0.0889 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 30 p 11.2945 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 31 “ -0.5521 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 32 % 0.1455 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 33 £ 0.1333 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 34 . 33.0383 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 35 2 -0.1840 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 36 5 -0.0286 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 37 m 11.1282 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 38 V 0.1743 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 39 6 -0.1714 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 40 w 11.2106 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 41 T 0.5105 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 42 M 0.5313 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 43 G -0.0667 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 44 b -0.9442 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 45 9 0.0936 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 46 ; 10.7372 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 47 D -0.1647 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 48 L -0.3273 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 49 y 11.8277 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 50 ‘ -0.8129 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 51 \ 0.4410 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 52 R -0.0792 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 53 < 9.9937 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 54 4 0.2386 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 55 8 -0.2267 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 56 0 -0.1110 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 57 A -0.1895 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 58 E -0.0074 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 59 B 0.1463 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 60 v 11.5549 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 61 k -1.2469 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 62 J 0.0844 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 63 U 0.0920 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 64 j -1.2999 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 65 ( -1.3075 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 66 7 -0.3180 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 67 § -0.1033 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 68 $ -5.2531 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 69 € -1.0490 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 70 / 0.0423 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 71 C 0.1759 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 72 * -1.2556 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 73 ” -0.7255 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 74 ? -1.5220 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 75 { -0.4460 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 76 } -0.3094 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 77 , 33.5642 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 78 I 0.1212 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 79 ° -1.2155 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 80 K 0.3794 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 81 H 0.0247 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 82 q 11.2620 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 83 & -0.9901 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 84 ’ -0.3360 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 85 [ -1.2623 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 86 - 21.6872 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 87 Y 0.0271 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 88 Q -0.2353 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 89 " -0.5886 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 90 ! -1.1675 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 91 x 11.3909 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 92 ) -1.3373 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 93 = 14.6943 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 94 + 10.7356 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 95 X 0.2535 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 96 » 16.3942 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 97 ' -0.5616 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 98 ¢ 11.3301 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 99 Z 0.2722 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 100 > 10.0733 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 101 ® 3.1222 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 102 © 3.5901 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 103 ] -1.3319 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 104 é -1.0344 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 105 z 11.5475 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 106 _ 46.0980 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 71 C 31.8717 42.0000 107 ¥ 0.3802 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 1 t 3.7964 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 2 h -0.1806 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 3 a 12.4186 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 4 n 12.5328 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 5 P 0.9311 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 6 o 12.5670 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 7 e 12.5597 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 8 : 11.8841 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 9 r 12.7487 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 10 l -0.1508 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 11 i 0.2678 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 12 1 1.2731 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 13 | 0.1556 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 14 N 1.4980 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 15 f 0.2040 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 16 g 11.0569 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 17 d -0.0586 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 18 W 0.9611 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 19 s 12.6032 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 20 c 12.4395 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 21 u 12.4994 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 22 3 1.2805 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 23 ~ 22.0621 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 24 # 1.5784 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 25 O 1.3039 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 26 ` 0.3659 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 27 @ 5.6689 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 28 F 1.3774 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 29 S 1.4154 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 30 p 12.4260 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 31 “ 0.5717 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 32 % 1.2023 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 33 £ 0.9861 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 34 . 34.2851 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 35 2 1.3092 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 36 5 1.3431 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 37 m 12.4839 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 38 V 1.4854 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 39 6 1.4564 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 40 w 12.9031 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 41 T 1.2292 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 42 M 1.5027 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 43 G 1.2023 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 44 b -0.0490 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 45 9 1.4914 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 46 ; 11.9496 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 47 D 1.1815 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 48 L 1.5448 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 49 y 12.6864 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 50 ‘ 1.1641 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 51 \ 1.3605 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 52 R 1.3427 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 53 < 11.0855 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 54 4 1.1894 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 55 8 1.1249 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 56 0 1.1296 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 57 A 1.1268 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 58 E 1.5512 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 59 B 1.2540 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 60 v 12.8305 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 61 k -0.2103 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 62 J 1.2317 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 63 U 1.5426 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 64 j 0.1613 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 65 ( 0.2030 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 66 7 1.2763 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 67 § 1.3325 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 68 $ -4.0076 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 69 € -0.0759 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 70 / 1.4797 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 71 C 1.1815 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 72 * 0.0741 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 73 ” 0.5699 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 74 ? -0.0782 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 75 { 0.5460 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 76 } 0.7297 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 77 , 34.7673 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 78 I 1.4573 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 79 ° -0.2825 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 80 K 1.4272 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 81 H 1.4973 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 82 q 12.4102 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 83 & 0.2991 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 84 ’ 0.6843 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 85 [ 0.0385 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 86 - 22.8745 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 87 Y 1.4023 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 88 Q 0.9885 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 89 " 0.3652 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 90 ! 0.2446 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 91 x 12.8852 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 92 ) 0.1789 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 93 = 15.9100 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 94 + 12.0920 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 95 X 1.1531 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 96 » 17.4974 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 97 ' 0.3500 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 98 ¢ 12.4925 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 99 Z 1.4104 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 100 > 11.5169 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 101 ® 4.4726 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 102 © 4.5423 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 103 ] -0.0044 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 104 é 0.1319 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 105 z 12.5075 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 106 _ 47.3288 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 72 * 22.8333 21.2012 107 ¥ 1.5877 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 1 t 3.0278 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 2 h -0.8811 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 3 a 11.6858 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 4 n 11.8024 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 5 P 0.6469 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 6 o 11.6450 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 7 e 11.9677 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 8 : 11.1630 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 9 r 12.0602 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 10 l -0.7899 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 11 i -0.2806 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 12 1 0.9547 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 13 | -0.5583 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 14 N 0.6557 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 15 f -0.8143 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 16 g 10.3844 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 17 d -0.5763 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 18 W 0.6273 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 19 s 11.7689 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 20 c 11.5997 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 21 u 11.8665 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 22 3 0.6040 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 23 ~ 21.4292 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 24 # 0.6246 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 25 O 0.4711 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 26 ` -0.7076 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 27 @ 4.4797 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 28 F 0.6219 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 29 S 0.4677 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 30 p 11.5983 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 31 “ -0.3269 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 32 % 0.4313 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 33 £ 0.1995 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 34 . 33.3491 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 35 2 0.5958 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 36 5 0.7537 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 37 m 11.7776 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 38 V 0.6629 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 39 6 0.3678 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 40 w 12.1030 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 41 T 1.0732 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 42 M 0.7608 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 43 G 0.4272 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 44 b -0.5896 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 45 9 0.3178 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 46 ; 10.9338 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 47 D 0.8649 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 48 L 0.9462 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 49 y 12.1836 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 50 ‘ 0.0485 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 51 \ 0.5820 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 52 R 0.6213 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 53 < 10.7140 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 54 4 0.7108 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 55 8 0.4791 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 56 0 0.7241 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 57 A 0.2758 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 58 E 0.8882 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 59 B 0.3859 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 60 v 11.9861 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 61 k -0.4071 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 62 J 0.6810 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 63 U 0.9252 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 64 j -0.4201 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 65 ( -0.5116 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 66 7 0.8853 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 67 § 0.7030 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 68 $ -4.8740 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 69 € -0.7732 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 70 / 0.7931 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 71 C 0.3461 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 72 * -0.8129 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 73 ” 0.0342 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 74 ? -0.7017 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 75 { 0.2152 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 76 } -0.0620 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 77 , 33.9943 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 78 I 0.6974 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 79 ° -0.6682 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 80 K 0.6629 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 81 H 0.8393 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 82 q 11.4307 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 83 & -0.3616 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 84 ’ -0.1240 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 85 [ -0.9874 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 86 - 21.5042 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 87 Y 0.6367 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 88 Q 0.5034 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 89 " 0.0006 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 90 ! -0.8028 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 91 x 11.9449 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 92 ) -0.5541 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 93 = 14.8673 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 94 + 11.4215 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 95 X 0.5966 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 96 » 16.9029 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 97 ' -0.0605 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 98 ¢ 11.7106 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 99 Z 1.0472 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 100 > 10.2415 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 101 ® 4.1661 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 102 © 3.5823 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 103 ] -0.3321 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 104 é -0.3627 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 105 z 11.8103 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 106 _ 45.9906 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 73 ” 22.7246 18.1765 107 ¥ 0.7470 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 1 t 3.9422 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 2 h -0.1247 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 3 a 12.2221 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 4 n 12.1641 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 5 P 0.8919 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 6 o 12.1608 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 7 e 12.1698 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 8 : 12.0103 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 9 r 12.0723 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 10 l -0.1352 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 11 i 0.1505 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 12 1 1.2720 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 13 | -0.4488 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 14 N 1.2631 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 15 f -0.1957 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 16 g 10.8584 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 17 d -0.1169 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 18 W 1.0897 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 19 s 12.2752 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 20 c 12.3717 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 21 u 12.4775 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 22 3 1.1183 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 23 ~ 22.2968 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 24 # 0.9430 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 25 O 1.1089 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 26 ` 0.0741 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 27 @ 5.0476 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 28 F 1.1930 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 29 S 0.9876 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 30 p 12.1285 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 31 “ 0.7495 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 32 % 1.2191 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 33 £ 0.8513 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 34 . 34.2820 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 35 2 0.9531 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 36 5 1.1282 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 37 m 12.3223 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 38 V 1.2293 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 39 6 0.9120 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 40 w 12.9561 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 41 T 1.1552 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 42 M 1.3161 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 43 G 0.9800 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 44 b -0.1779 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 45 9 1.1284 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 46 ; 12.0652 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 47 D 0.8023 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 48 L 1.2951 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 49 y 12.5390 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 50 ‘ 0.5616 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 51 \ 1.1782 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 52 R 1.1204 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 53 < 10.8641 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 54 4 1.0360 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 55 8 1.3663 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 56 0 0.8447 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 57 A 0.9949 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 58 E 1.3387 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 59 B 0.9667 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 60 v 12.3955 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 61 k -0.1805 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 62 J 1.4620 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 63 U 1.0480 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 64 j -0.0834 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 65 ( -0.1305 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 66 7 0.5899 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 67 § 0.8898 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 68 $ -4.2460 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 69 € -0.1863 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 70 / 1.3074 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 71 C 1.2705 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 72 * -0.1556 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 73 ” 0.3973 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 74 ? 0.0235 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 75 { 0.6610 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 76 } 0.5132 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 77 , 34.3279 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 78 I 1.2567 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 79 ° 0.2070 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 80 K 1.1173 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 81 H 1.3830 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 82 q 12.4828 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 83 & 0.2072 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 84 ’ 0.3452 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 85 [ 0.0911 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 86 - 22.4784 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 87 Y 1.1562 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 88 Q 1.0097 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 89 " 0.7341 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 90 ! 0.1570 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 91 x 12.6058 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 92 ) -0.4587 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 93 = 15.6312 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 94 + 11.7268 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 95 X 1.5118 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 96 » 16.9737 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 97 ' 0.2345 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 98 ¢ 12.6806 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 99 Z 1.3225 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 100 > 10.8949 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 101 ® 4.5349 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 102 © 4.3010 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 103 ] 0.0978 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 104 é -0.0399 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 105 z 12.6866 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 106 _ 46.6634 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 74 ? 20.4507 43.0334 107 ¥ 1.0955 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 1 t 3.3762 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 2 h -0.8769 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 3 a 11.8261 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 4 n 11.5450 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 5 P 0.6943 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 6 o 11.6401 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 7 e 11.7196 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 8 : 11.1576 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 9 r 12.0006 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 10 l -0.7125 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 11 i -0.4461 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 12 1 0.4822 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 13 | -0.5069 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 14 N 0.4984 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 15 f -1.0324 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 16 g 10.1639 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 17 d -1.2076 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 18 W 0.5283 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 19 s 11.6898 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 20 c 11.6385 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 21 u 12.2739 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 22 3 0.5458 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 23 ~ 21.6624 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 24 # 0.5993 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 25 O 0.5141 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 26 ` -0.3184 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 27 @ 4.6052 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 28 F 0.7504 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 29 S 0.6274 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 30 p 11.7670 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 31 “ 0.1079 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 32 % 0.4055 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 33 £ 0.5950 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 34 . 33.5837 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 35 2 0.4234 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 36 5 0.7050 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 37 m 11.9172 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 38 V 0.5369 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 39 6 0.5141 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 40 w 11.9074 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 41 T 0.7532 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 42 M 0.5312 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 43 G 0.7411 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 44 b -0.4527 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 45 9 0.4886 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 46 ; 11.3607 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 47 D 0.3688 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 48 L 0.6690 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 49 y 12.1048 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 50 ‘ 0.1407 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 51 \ 0.6183 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 52 R 0.4439 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 53 < 10.4700 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 54 4 0.6408 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 55 8 0.5688 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 56 0 0.6468 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 57 A 0.3061 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 58 E 0.7835 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 59 B 0.2656 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 60 v 11.9517 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 61 k -0.6904 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 62 J 0.6143 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 63 U 0.6219 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 64 j -0.1813 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 65 ( -0.6045 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 66 7 0.6556 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 67 § 0.7048 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 68 $ -4.5739 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 69 € -0.8610 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 70 / 0.6701 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 71 C 0.3533 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 72 * -0.6505 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 73 ” 0.2238 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 74 ? -0.5672 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 75 { 0.0237 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 76 } 0.0903 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 77 , 33.8579 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 78 I 0.8766 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 79 ° -0.8178 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 80 K 0.5399 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 81 H 0.5413 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 82 q 11.6089 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 83 & -0.4088 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 84 ’ 0.0432 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 85 [ -0.8844 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 86 - 21.9096 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 87 Y 0.6960 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 88 Q 0.1581 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 89 " -0.0738 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 90 ! -0.3645 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 91 x 11.9834 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 92 ) -0.7001 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 93 = 15.2743 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 94 + 11.4193 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 95 X 0.4931 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 96 » 16.7607 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 97 ' -0.4060 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 98 ¢ 11.9730 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 99 Z 0.6662 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 100 > 10.4616 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 101 ® 3.9307 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 102 © 4.0392 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 103 ] -0.5357 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 104 é -0.4639 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 75 { 21.3196 54.4986 105 z 12.0353 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 106 _ 46.4459 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 75 { 20.7988 54.4986 107 ¥ 0.4491 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 1 t 3.1833 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 2 h -0.5591 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 3 a 11.5304 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 4 n 11.8703 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 5 P 0.4864 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 6 o 11.7714 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 7 e 11.9078 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 8 : 11.3571 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 9 r 11.6992 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 10 l -0.3954 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 11 i -0.2778 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 12 1 0.6353 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 13 | -0.4005 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 14 N 0.8976 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 15 f -0.9658 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 16 g 10.5486 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 17 d -0.7481 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 18 W 0.6528 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 19 s 11.8247 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 20 c 11.9535 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 21 u 11.9536 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 22 3 0.5136 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 23 ~ 21.3273 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 24 # 0.6155 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 25 O 0.2887 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 26 ` -0.6326 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 27 @ 4.8435 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 28 F 0.6230 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 29 S 0.7015 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 30 p 11.6897 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 31 “ 0.1310 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 32 % 0.3762 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 33 £ 0.6185 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 34 . 33.7177 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 35 2 0.5993 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 36 5 0.4898 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 37 m 11.8531 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 38 V 0.6495 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 39 6 0.5653 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 40 w 11.9108 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 41 T 0.4376 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 42 M 0.8125 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 43 G 0.6231 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 44 b -0.7905 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 45 9 0.5209 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 46 ; 11.3498 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 47 D 0.5203 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 48 L 0.8324 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 49 y 12.3073 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 50 ‘ 0.1064 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 51 \ 0.6589 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 52 R 0.2956 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 53 < 10.3368 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 54 4 0.7163 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 55 8 0.3489 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 56 0 0.5756 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 57 A 0.4810 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 58 E 0.1752 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 59 B 0.6188 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 60 v 12.1713 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 61 k -0.5594 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 62 J 0.7157 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 63 U 0.8051 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 64 j -0.4523 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 65 ( -0.7347 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 66 7 1.0629 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 67 § 0.4662 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 68 $ -4.4188 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 69 € -1.0324 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 70 / 0.6269 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 71 C 0.4011 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 72 * -0.3453 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 73 ” -0.1244 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 74 ? -0.5824 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 75 { 0.0471 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 76 } -0.2829 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 77 , 34.0332 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 78 I 0.3213 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 79 ° -0.8769 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 80 K 0.7046 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 81 H 0.9179 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 82 q 12.0438 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 83 & -0.3009 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 84 ’ 0.2451 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 85 [ -0.6963 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 86 - 21.9502 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 87 Y 0.7046 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 88 Q 0.5209 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 89 " -0.3487 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 90 ! -0.3966 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 91 x 12.2597 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 92 ) -0.9523 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 93 = 15.1408 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 94 + 11.5985 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 95 X 0.8374 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 96 » 16.7830 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 97 ' -0.1858 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 98 ¢ 12.1426 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 99 Z 0.7283 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 100 > 10.5409 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 101 ® 4.0891 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 102 © 3.9677 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 103 ] -0.6742 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 104 é -0.3426 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 76 } 20.7988 54.4986 105 z 12.2246 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 106 _ 46.2267 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 76 } 21.3196 54.4986 107 ¥ 0.9129 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 1 t -30.6930 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 2 h -34.4786 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 3 a -22.1431 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 4 n -22.0199 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 5 P -33.4821 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 6 o -22.2110 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 7 e -22.2384 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 8 : -22.7615 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 9 r -22.3176 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 10 l -34.5056 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 11 i -34.4005 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 12 1 -33.0691 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 13 | -34.7438 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 14 N -33.1234 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 15 f -34.5617 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 16 g -23.7093 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 17 d -34.7053 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 18 W -33.2541 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 19 s -22.0539 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 20 c -21.9106 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 21 u -21.9749 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 22 3 -33.5344 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 23 ~ -12.4396 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 24 # -33.4821 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 25 O -33.1193 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 26 ` -34.7244 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 27 @ -29.1383 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 28 F -33.3930 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 29 S -33.2778 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 30 p -22.2763 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 31 “ -33.7473 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 32 % -33.4324 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 33 £ -33.5185 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 34 . -0.4274 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 35 2 -33.4792 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 36 5 -33.4722 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 37 m -22.1431 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 38 V -33.0543 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 39 6 -33.3831 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 40 w -21.7730 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 41 T -33.0721 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 42 M -33.1689 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 43 G -33.4051 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 44 b -34.5751 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 45 9 -33.2096 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 46 ; -22.7420 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 47 D -33.3856 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 48 L -33.3401 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 49 y -21.6333 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 50 ‘ -33.7163 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 51 \ -33.1210 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 52 R -33.4691 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 53 < -23.4417 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 54 4 -33.1296 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 55 8 -33.1835 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 56 0 -33.5152 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 57 A -33.1684 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 58 E -33.1061 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 59 B -33.2096 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 60 v -21.9124 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 61 k -34.7721 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 62 J -33.3208 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 63 U -33.2929 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 64 j -34.3696 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 65 ( -34.6815 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 66 7 -33.3459 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 67 § -33.7118 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 68 $ -38.7263 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 69 € -34.6139 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 70 / -33.3412 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 71 C -33.4393 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 72 * -34.8832 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 73 ” -33.8242 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 74 ? -34.4082 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 75 { -33.9962 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 76 } -33.8360 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 77 , 0.2590 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 78 I -33.3016 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 79 ° -34.2969 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 80 K -33.4570 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 81 H -33.1825 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 82 q -22.2200 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 83 & -34.6029 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 84 ’ -34.0298 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 85 [ -34.5467 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 86 - -11.9654 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 87 Y -33.1533 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 88 Q -33.4146 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 89 " -34.1398 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 90 ! -34.5576 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 91 x -22.0679 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 92 ) -34.5221 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 93 = -18.5439 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 94 + -22.6522 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 95 X -33.1739 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 96 » -17.1034 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 97 ' -34.0938 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 98 ¢ -22.4263 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 99 Z -33.2781 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 100 > -23.5013 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 101 ® -30.1957 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 102 © -30.1438 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 103 ] -34.8921 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 104 é -34.4506 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 105 z -22.0426 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 106 _ 12.4525 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 77 , 11.1481 19.3642 107 ¥ -33.0339 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 1 t 2.6471 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 2 h -1.1980 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 3 a 10.9826 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 4 n 11.0196 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 5 P -0.4537 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 6 o 10.9835 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 7 e 11.1571 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 8 : 10.5889 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 9 r 11.0729 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 10 l -1.5459 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 11 i -1.1238 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 12 1 0.2846 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 13 | -1.2197 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 14 N -0.0202 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 15 f -1.5757 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 16 g 9.7067 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 17 d -1.2216 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 18 W 0.0951 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 19 s 11.1248 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 20 c 11.0373 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 21 u 11.4329 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 22 3 -0.0296 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 23 ~ 20.7509 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 24 # -0.0789 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 25 O 0.0474 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 26 ` -1.2153 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 27 @ 4.1125 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 28 F 0.1037 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 29 S -0.1380 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 30 p 11.2550 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 31 “ -0.5639 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 32 % -0.1852 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 33 £ 0.1764 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 34 . 32.8356 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 35 2 -0.2593 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 36 5 -0.0443 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 37 m 10.8052 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 38 V 0.0802 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 39 6 0.0844 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 40 w 11.4728 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 41 T -0.0741 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 42 M -0.0418 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 43 G -0.0222 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 44 b -1.4418 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 45 9 -0.0194 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 46 ; 10.6362 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 47 D -0.2683 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 48 L 0.1759 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 49 y 11.4148 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 50 ‘ -0.6009 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 51 \ -0.0471 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 52 R -0.3266 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 53 < 9.5832 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 54 4 0.0990 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 55 8 -0.1593 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 56 0 -0.1448 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 57 A -0.5393 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 58 E -0.0269 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 59 B -0.3140 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 60 v 11.2047 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 61 k -1.4617 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 62 J -0.2594 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 63 U 0.2327 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 64 j -1.1152 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 65 ( -1.3768 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 66 7 0.0802 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 67 § -0.1852 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 68 $ -5.5078 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 69 € -1.4483 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 70 / -0.0446 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 71 C -0.2370 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 72 * -1.3922 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 73 ” -0.7061 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 74 ? -1.2066 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 75 { -0.7176 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 76 } -0.9001 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 77 , 33.2099 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 78 I -0.2609 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 79 ° -1.5647 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 80 K -0.0697 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 81 H 0.0446 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 82 q 11.0052 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 83 & -1.4053 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 84 ’ -0.9299 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 85 [ -1.1414 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 86 - 20.9809 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 87 Y 0.0000 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 88 Q -0.4950 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 89 " -0.8828 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 90 ! -1.1577 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 91 x 11.2475 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 92 ) -1.5142 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 93 = 14.4098 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 94 + 11.0309 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 95 X 0.0741 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 96 » 15.9071 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 97 ' -0.7541 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 98 ¢ 11.2503 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 99 Z 0.1706 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 100 > 9.5080 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 101 ® 3.2588 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 102 © 3.1405 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 103 ] -1.5074 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 104 é -1.2074 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 105 z 11.4903 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 106 _ 45.7460 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 78 I 7.2012 41.8148 107 ¥ 0.1018 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 1 t 3.5471 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 2 h -0.0566 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 3 a 12.5025 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 4 n 12.5371 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 5 P 1.3002 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 6 o 12.4626 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 7 e 12.5434 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 8 : 12.0918 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 9 r 12.2941 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 10 l -0.0323 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 11 i 0.2440 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 12 1 1.2789 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 13 | -0.0769 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 14 N 1.0645 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 15 f 0.1099 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 16 g 11.0792 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 17 d -0.0951 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 18 W 1.6867 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 19 s 12.6065 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 20 c 12.3445 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 21 u 12.5961 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 22 3 0.9707 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 23 ~ 22.1888 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 24 # 0.9202 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 25 O 1.5401 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 26 ` 0.0175 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 27 @ 5.6333 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 28 F 1.2216 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 29 S 1.0628 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 30 p 12.5756 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 31 “ 0.7063 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 32 % 1.4928 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 33 £ 1.3459 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 34 . 34.5906 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 35 2 1.1484 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 36 5 1.2644 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 37 m 12.2528 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 38 V 1.2432 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 39 6 1.1362 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 40 w 12.7279 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 41 T 1.1698 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 42 M 1.3875 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 43 G 0.9361 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 44 b -0.2718 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 45 9 0.7313 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 46 ; 11.8992 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 47 D 1.3089 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 48 L 1.3702 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 49 y 12.7525 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 50 ‘ 0.5285 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 51 \ 1.1874 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 52 R 0.9556 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 53 < 11.0576 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 54 4 1.4225 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 55 8 1.1268 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 56 0 1.3506 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 57 A 1.3916 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 58 E 1.4148 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 59 B 1.1800 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 60 v 12.6374 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 61 k 0.0993 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 62 J 1.5163 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 63 U 1.3581 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 64 j 0.4308 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 65 ( -0.0471 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 66 7 1.4469 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 67 § 1.1815 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 68 $ -3.9792 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 69 € -0.1422 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 70 / 1.6200 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 71 C 1.0763 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 72 * 0.0130 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 73 ” 0.8503 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 74 ? 0.1837 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 75 { 0.5318 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 76 } 0.5320 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 77 , 34.6905 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 78 I 1.2965 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 79 ° 0.1721 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 80 K 1.2986 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 81 H 1.5177 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 82 q 12.5525 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 83 & 0.2048 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 84 ’ 0.8034 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 85 [ -0.2239 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 86 - 22.5315 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 87 Y 1.6798 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 88 Q 1.1714 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 89 " 0.3772 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 90 ! 0.2251 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 91 x 12.8387 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 92 ) 0.1187 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 93 = 15.8776 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 94 + 11.9182 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 95 X 1.5931 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 96 » 17.5926 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 97 ' 0.4305 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 98 ¢ 12.4606 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 99 Z 1.3799 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 100 > 11.2856 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 101 ® 4.4567 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 102 © 4.3312 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 103 ] -0.2090 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 104 é 0.0395 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 105 z 12.4525 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 106 _ 47.1583 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 79 ° 14.0000 14.0000 107 ¥ 1.2803 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 1 t 2.5865 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 2 h -1.4066 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 3 a 10.8725 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 4 n 10.9663 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 5 P 0.0839 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 6 o 11.0244 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 7 e 11.2254 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 8 : 10.7306 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 9 r 11.0729 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 10 l -1.5128 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 11 i -1.1196 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 12 1 0.1095 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 13 | -1.6210 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 14 N 0.0384 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 15 f -1.4408 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 16 g 9.4485 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 17 d -1.3047 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 18 W -0.1514 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 19 s 10.8255 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 20 c 11.1679 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 21 u 11.3360 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 22 3 -0.5687 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 23 ~ 20.8102 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 24 # -0.4062 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 25 O -0.1266 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 26 ` -1.1678 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 27 @ 3.8154 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 28 F -0.0706 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 29 S -0.2593 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 30 p 10.9221 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 31 “ -0.6293 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 32 % -0.2877 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 33 £ -0.3100 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 34 . 32.7238 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 35 2 -0.1998 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 36 5 0.1425 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 37 m 11.2056 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 38 V 0.0369 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 39 6 0.0311 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 40 w 11.1187 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 41 T 0.0465 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 42 M 0.1912 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 43 G -0.0859 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 44 b -1.3317 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 45 9 -0.3348 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 46 ; 10.6199 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 47 D -0.3389 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 48 L 0.0000 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 49 y 11.3911 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 50 ‘ -0.8011 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 51 \ -0.1691 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 52 R -0.1481 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 53 < 9.3980 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 54 4 0.2288 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 55 8 -0.0712 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 56 0 0.0045 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 57 A 0.0031 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 58 E 0.1605 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 59 B -0.2276 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 60 v 11.2744 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 61 k -1.5117 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 62 J -0.2272 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 63 U 0.0101 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 64 j -1.0800 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 65 ( -1.3195 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 66 7 -0.1758 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 67 § -0.2769 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 68 $ -5.5150 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 69 € -1.4157 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 70 / 0.1792 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 71 C -0.1362 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 72 * -1.0820 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 73 ” -0.5516 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 74 ? -1.2351 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 75 { -0.7950 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 76 } -0.8752 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 77 , 33.4039 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 78 I -0.0490 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 79 ° -1.3307 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 80 K 0.3041 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 81 H 0.0698 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 82 q 10.9009 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 83 & -0.9077 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 84 ’ -1.0896 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 85 [ -1.3864 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 86 - 21.0140 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 87 Y -0.1187 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 88 Q -0.2101 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 89 " -0.8847 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 90 ! -1.0872 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 91 x 11.7566 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 92 ) -1.7876 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 93 = 14.3828 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 94 + 10.6595 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 95 X -0.0435 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 96 » 15.8225 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 97 ' -0.6752 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 98 ¢ 10.8414 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 99 Z 0.2043 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 100 > 9.5947 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 101 ® 3.2381 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 102 © 3.1956 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 103 ] -1.3446 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 104 é -1.3131 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 105 z 11.5578 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 106 _ 45.9723 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 80 K 32.2433 41.8148 107 ¥ 0.1029 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 1 t 2.3433 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 2 h -1.3681 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 3 a 11.1171 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 4 n 11.0776 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 5 P -0.2432 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 6 o 11.0891 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 7 e 11.1099 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 8 : 10.5339 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 9 r 11.1751 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 10 l -1.1018 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 11 i -1.2491 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 12 1 0.4156 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 13 | -1.5806 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 14 N 0.1062 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 15 f -1.5235 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 16 g 9.4196 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 17 d -1.2004 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 18 W 0.1798 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 19 s 11.0920 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 20 c 11.3478 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 21 u 11.5915 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 22 3 -0.2976 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 23 ~ 20.9129 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 24 # -0.2370 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 25 O 0.2578 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 26 ` -1.1120 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 27 @ 3.7646 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 28 F 0.0630 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 29 S 0.0249 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 30 p 11.0261 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 31 “ -0.5552 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 32 % -0.0786 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 33 £ -0.2331 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 34 . 32.6892 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 35 2 -0.3748 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 36 5 -0.1768 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 37 m 11.4585 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 38 V -0.0978 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 39 6 0.0264 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 40 w 11.1807 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 41 T -0.0428 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 42 M 0.2018 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 43 G -0.4764 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 44 b -1.0319 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 45 9 -0.4205 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 46 ; 10.3181 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 47 D 0.0383 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 48 L -0.1447 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 49 y 11.3172 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 50 ‘ -0.5835 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 51 \ 0.0337 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 52 R -0.0807 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 53 < 9.5990 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 54 4 -0.0015 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 55 8 -0.1861 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 56 0 -0.3543 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 57 A -0.0391 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 58 E 0.1395 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 59 B -0.1420 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 60 v 11.1633 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 61 k -1.1824 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 62 J -0.0827 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 63 U -0.1124 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 64 j -1.1703 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 65 ( -1.2986 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 66 7 -0.0284 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 67 § -0.3658 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 68 $ -5.3580 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 69 € -1.4084 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 70 / -0.2959 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 71 C -0.3508 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 72 * -1.3827 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 73 ” -0.5784 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 74 ? -1.2286 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 75 { -0.7316 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 76 } -0.7324 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 77 , 33.3598 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 78 I 0.1469 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 79 ° -1.2681 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 80 K -0.1230 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 81 H 0.1026 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 82 q 11.0392 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 83 & -1.5603 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 84 ’ -0.6619 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 85 [ -1.2070 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 86 - 20.9911 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 87 Y -0.1211 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 88 Q -0.1237 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 89 " -0.7273 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 90 ! -1.2395 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 91 x 11.5915 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 92 ) -1.4685 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 93 = 14.3491 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 94 + 10.4853 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 95 X -0.2548 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 96 » 15.8708 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 97 ' -1.1121 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 98 ¢ 11.4486 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 99 Z -0.0842 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 100 > 9.5927 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 101 ® 3.3161 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 102 © 3.3879 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 103 ] -1.4171 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 104 é -1.1307 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 105 z 11.6692 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 106 _ 45.6796 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 81 H 31.2408 41.8148 107 ¥ 0.1436 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 1 t -8.3252 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 2 h -12.1561 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 3 a -0.1220 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 4 n 0.2130 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 5 P -11.0836 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 6 o -0.1167 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 7 e -0.1480 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 8 : -0.6569 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 9 r -0.0373 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 10 l -12.2636 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 11 i -12.3039 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 12 1 -11.0427 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 13 | -12.3316 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 14 N -11.1974 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 15 f -12.6754 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 16 g -1.3325 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 17 d -12.5209 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 18 W -11.1081 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 19 s -0.0471 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 20 c -0.0073 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 21 u 0.0695 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 22 3 -11.3579 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 23 ~ 9.4978 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 24 # -11.4823 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 25 O -11.3484 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 26 ` -12.4571 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 27 @ -7.2950 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 28 F -11.0628 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 29 S -11.4052 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 30 p 0.0796 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 31 “ -12.0384 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 32 % -11.4704 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 33 £ -11.3465 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 34 . 21.9354 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 35 2 -11.2663 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 36 5 -11.2637 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 37 m 0.2101 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 38 V -11.2670 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 39 6 -11.4138 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 40 w 0.1194 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 41 T -11.0521 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 42 M -11.1651 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 43 G -11.3728 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 44 b -12.7241 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 45 9 -11.0962 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 46 ; -0.5256 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 47 D -11.5065 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 48 L -10.9769 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 49 y 0.4764 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 50 ‘ -11.6987 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 51 \ -11.0682 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 52 R -11.0655 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 53 < -0.9315 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 54 4 -11.0272 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 55 8 -11.1278 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 56 0 -11.3099 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 57 A -11.2994 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 58 E -11.0973 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 59 B -11.1042 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 60 v 0.4076 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 61 k -12.5103 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 62 J -11.1560 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 63 U -11.1186 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 64 j -12.3586 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 65 ( -12.6148 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 66 7 -11.0368 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 67 § -11.1667 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 68 $ -16.5852 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 69 € -12.4780 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 70 / -11.0050 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 71 C -10.7509 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 72 * -12.4470 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 73 ” -11.6749 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 74 ? -12.4451 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 75 { -11.6451 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 76 } -11.5681 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 77 , 22.1456 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 78 I -10.9096 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 79 ° -12.2887 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 80 K -11.1081 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 81 H -11.0584 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 82 q 0.0370 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 83 & -12.3238 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 84 ’ -11.9298 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 85 [ -12.2985 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 86 - 10.2248 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 87 Y -11.1334 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 88 Q -11.0314 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 89 " -12.0115 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 90 ! -12.2073 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 91 x 0.2692 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 92 ) -12.5460 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 93 = 3.1676 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 94 + -0.1161 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 95 X -10.9703 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 96 » 4.6636 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 97 ' -11.8726 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 98 ¢ -0.0031 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 99 Z -11.5192 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 100 > -1.4394 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 101 ® -8.2851 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 102 © -7.6528 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 103 ] -12.2898 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 104 é -12.5697 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 105 z 0.0723 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 106 _ 34.8757 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 82 q 28.4025 42.7197 107 ¥ -11.2058 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 1 t 3.9944 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 2 h -0.2552 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 3 a 12.5470 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 4 n 11.9848 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 5 P 0.8502 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 6 o 12.1122 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 7 e 12.2719 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 8 : 11.4817 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 9 r 12.1427 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 10 l 0.0634 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 11 i 0.5903 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 12 1 1.5630 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 13 | 0.0462 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 14 N 1.6019 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 15 f -0.1779 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 16 g 10.6864 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 17 d 0.2607 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 18 W 1.3574 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 19 s 12.5744 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 20 c 12.2867 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 21 u 12.7891 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 22 3 1.2154 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 23 ~ 22.0072 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 24 # 1.2553 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 25 O 1.1546 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 26 ` -0.0443 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 27 @ 5.3286 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 28 F 1.5611 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 29 S 0.8506 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 30 p 12.3592 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 31 “ 0.4787 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 32 % 0.9383 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 33 £ 0.8677 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 34 . 34.1801 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 35 2 1.2875 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 36 5 1.0188 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 37 m 12.5676 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 38 V 0.9370 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 39 6 1.1907 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 40 w 12.8510 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 41 T 1.0109 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 42 M 1.2704 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 43 G 0.8362 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 44 b -0.0154 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 45 9 0.9391 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 46 ; 11.8061 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 47 D 0.9531 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 48 L 1.1182 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 49 y 12.4184 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 50 ‘ 0.9292 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 51 \ 1.2272 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 52 R 1.0066 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 53 < 10.9486 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 54 4 1.2045 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 55 8 1.2309 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 56 0 0.7666 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 57 A 1.0376 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 58 E 1.3470 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 59 B 1.1609 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 60 v 12.8822 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 61 k -0.3143 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 62 J 1.1868 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 63 U 1.5193 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 64 j 0.0145 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 65 ( -0.3035 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 66 7 1.4374 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 67 § 0.7994 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 68 $ -3.9237 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 69 € -0.5796 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 70 / 0.9327 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 71 C 1.1335 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 72 * 0.1210 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 73 ” 0.6101 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 74 ? -0.3685 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 75 { 0.3736 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 76 } 0.1278 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 77 , 34.5644 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 78 I 1.3295 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 79 ° -0.1467 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 80 K 1.0142 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 81 H 1.1591 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 82 q 12.3001 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 83 & -0.1745 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 84 ’ 0.3223 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 85 [ -0.1779 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 86 - 22.6052 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 87 Y 1.2103 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 88 Q 0.9194 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 89 " -0.0093 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 90 ! -0.2341 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 91 x 12.7385 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 92 ) -0.1975 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 93 = 15.8579 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 94 + 11.9579 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 95 X 1.2200 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 96 » 17.4451 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 97 ' 0.4732 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 98 ¢ 12.4717 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 99 Z 1.3621 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 100 > 10.9344 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 101 ® 4.4682 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 102 © 4.3590 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 103 ] -0.4909 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 104 é -0.2397 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 105 z 12.6698 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 106 _ 46.7482 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 83 & 34.6136 43.0334 107 ¥ 1.0850 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 1 t 3.3099 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 2 h -0.8994 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 3 a 11.8381 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 4 n 11.6829 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 5 P 0.7004 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 6 o 11.8707 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 7 e 11.7391 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 8 : 11.3365 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 9 r 11.9266 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 10 l -0.6976 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 11 i -0.6228 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 12 1 1.0213 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 13 | -0.7510 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 14 N 0.5106 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 15 f -0.4440 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 16 g 10.4848 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 17 d -0.5343 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 18 W 0.8025 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 19 s 11.9111 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 20 c 11.7473 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 21 u 11.9946 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 22 3 0.4878 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 23 ~ 21.5163 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 24 # 0.7851 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 25 O 0.4738 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 26 ` -0.7839 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 27 @ 4.7064 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 28 F 0.5509 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 29 S 0.2204 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 30 p 11.7243 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 31 “ 0.3018 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 32 % 0.6968 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 33 £ 0.7462 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 34 . 33.6901 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 35 2 0.5756 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 36 5 0.8347 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 37 m 11.5893 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 38 V 0.5865 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 39 6 0.5472 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 40 w 12.2307 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 41 T 0.6589 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 42 M 0.7917 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 43 G 0.5001 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 44 b -0.4633 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 45 9 0.5209 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 46 ; 11.4449 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 47 D 0.6126 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 48 L 0.7989 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 49 y 11.9093 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 50 ‘ -0.2244 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 51 \ 0.6230 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 52 R 1.0752 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 53 < 10.4581 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 54 4 0.6542 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 55 8 0.5975 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 56 0 0.5324 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 57 A 0.6483 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 58 E 0.6467 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 59 B 0.5778 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 60 v 11.7686 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 61 k -0.8189 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 62 J 0.7417 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 63 U 0.6233 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 64 j -0.3561 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 65 ( -0.8491 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 66 7 0.5552 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 67 § 0.6667 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 68 $ -4.5656 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 69 € -0.8831 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 70 / 0.9044 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 71 C 0.4305 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 72 * -0.8660 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 73 ” -0.3022 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 74 ? -0.5164 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 75 { -0.0951 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 76 } -0.1854 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 77 , 33.8270 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 78 I 0.4380 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 79 ° -0.6221 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 80 K 0.8733 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 81 H 0.5984 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 82 q 11.9644 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 83 & -0.7003 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 84 ’ 0.0875 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 85 [ -0.8311 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 86 - 22.0448 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 87 Y 0.7357 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 88 Q 0.2917 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 89 " -0.2177 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 90 ! -0.2462 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 91 x 12.2616 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 92 ) -0.7865 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 93 = 15.1634 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 94 + 11.3167 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 95 X 0.8791 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 96 » 16.6344 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 97 ' -0.2018 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 98 ¢ 11.6424 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 99 Z 0.7478 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 100 > 10.4242 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 101 ® 3.9307 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 102 © 3.9056 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 103 ] -0.5925 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 104 é -0.6709 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 105 z 12.1083 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 106 _ 46.3780 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 84 ’ 9.9432 18.1765 107 ¥ 0.6082 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 1 t 3.9259 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 2 h -0.2537 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 3 a 12.4025 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 4 n 12.6591 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 5 P 1.0677 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 6 o 12.5346 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 7 e 12.4766 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 8 : 11.9420 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 9 r 12.7697 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 10 l 0.1389 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 11 i 0.3563 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 12 1 1.1127 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 13 | -0.0580 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 14 N 1.5750 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 15 f -0.0471 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 16 g 11.2815 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 17 d 0.0080 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 18 W 0.9535 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 19 s 12.4517 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 20 c 12.5296 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 21 u 12.9669 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 22 3 1.1235 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 23 ~ 22.2875 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 24 # 1.1979 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 25 O 1.3902 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 26 ` 0.2391 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 27 @ 5.4349 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 28 F 1.3120 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 29 S 1.3228 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 30 p 12.4954 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 31 “ 0.9168 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 32 % 1.2704 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 33 £ 1.1296 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 34 . 34.2927 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 35 2 1.2344 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 36 5 1.1908 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 37 m 12.2974 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 38 V 1.4901 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 39 6 1.4942 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 40 w 12.6109 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 41 T 1.4009 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 42 M 1.7799 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 43 G 1.4732 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 44 b -0.1461 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 45 9 1.0070 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 46 ; 11.8010 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 47 D 0.9726 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 48 L 1.3134 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 49 y 12.6352 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 50 ‘ 0.4511 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 51 \ 1.5465 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 52 R 1.0836 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 53 < 10.9404 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 54 4 1.3874 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 55 8 1.1171 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 56 0 1.0864 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 57 A 1.1936 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 58 E 1.9788 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 59 B 1.2185 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 60 v 12.8333 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 61 k 0.1720 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 62 J 1.5891 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 63 U 1.3000 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 64 j 0.1536 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 65 ( 0.0917 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 66 7 1.4066 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 67 § 1.3905 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 68 $ -4.0148 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 69 € 0.0323 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 70 / 1.4037 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 71 C 1.1937 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 72 * -0.0360 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 73 ” 0.6073 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 74 ? 0.1648 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 75 { 0.7716 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 76 } 0.7001 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 77 , 34.7133 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 78 I 1.0574 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 79 ° -0.3450 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 80 K 1.3797 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 81 H 1.3446 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 82 q 12.5159 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 83 & 0.1333 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 84 ’ 0.5824 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 85 [ -0.2743 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 86 - 22.6743 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 87 Y 1.3519 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 88 Q 0.9414 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 89 " 0.4388 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 90 ! 0.4177 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 91 x 12.6352 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 92 ) -0.0831 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 93 = 15.9672 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 94 + 11.9912 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 95 X 1.2105 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 96 » 17.3136 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 97 ' 0.4580 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 98 ¢ 12.3809 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 99 Z 1.4617 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 100 > 11.1007 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 101 ® 4.5543 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 102 © 4.7734 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 103 ] -0.1764 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 104 é 0.3278 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 105 z 12.8523 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 106 _ 46.7850 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 85 [ 14.4025 55.1963 107 ¥ 1.5315 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 1 t -18.6565 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 2 h -22.5531 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 3 a -10.3061 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 4 n -10.0765 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 5 P -21.1202 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 6 o -10.2788 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 7 e -9.8808 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 8 : -10.5219 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 9 r -10.2316 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 10 l -22.6161 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 11 i -22.3164 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 12 1 -21.2251 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 13 | -22.8404 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 14 N -21.3445 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 15 f -22.4675 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 16 g -11.6676 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 17 d -22.5827 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 18 W -21.3387 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 19 s -10.0294 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 20 c -10.1356 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 21 u -10.0017 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 22 3 -21.3346 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 23 ~ -0.4411 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 24 # -21.4786 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 25 O -21.6008 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 26 ` -22.2747 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 27 @ -17.0159 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 28 F -21.2988 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 29 S -21.5037 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 30 p -10.0470 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 31 “ -21.9995 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 32 % -21.3825 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 33 £ -21.4721 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 34 . 11.7456 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 35 2 -21.2235 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 36 5 -21.2408 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 37 m -10.2349 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 38 V -21.0119 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 39 6 -21.4807 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 40 w -9.7332 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 41 T -21.3671 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 42 M -21.2012 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 43 G -21.5300 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 44 b -22.7679 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 45 9 -21.3806 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 46 ; -10.3947 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 47 D -21.8852 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 48 L -21.2948 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 49 y -9.7245 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 50 ‘ -21.8508 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 51 \ -21.1853 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 52 R -21.2914 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 53 < -11.4590 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 54 4 -20.9982 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 55 8 -21.6012 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 56 0 -21.2428 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 57 A -21.5152 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 58 E -21.4218 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 59 B -21.6599 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 60 v -9.5654 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 61 k -22.7863 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 62 J -21.2060 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 63 U -21.0533 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 64 j -22.1184 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 65 ( -22.8226 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 66 7 -21.2531 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 67 § -21.3792 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 68 $ -26.6663 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 69 € -22.7990 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 70 / -21.5063 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 71 C -21.2543 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 72 * -22.7161 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 73 ” -21.8407 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 74 ? -22.4317 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 75 { -22.0894 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 76 } -21.6181 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 77 , 11.9331 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 78 I -21.1627 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 79 ° -22.6301 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 80 K -21.4000 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 81 H -21.3063 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 82 q -10.2619 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 83 & -22.5472 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 84 ’ -21.8588 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 85 [ -22.6435 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 86 - 0.1397 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 87 Y -21.3286 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 88 Q -21.4101 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 89 " -22.1878 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 90 ! -22.0632 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 91 x -9.7286 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 92 ) -22.4358 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 93 = -7.1279 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 94 + -10.4259 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 95 X -21.0354 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 96 » -5.3434 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 97 ' -22.2701 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 98 ¢ -9.8102 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 99 Z -21.5093 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 100 > -11.5990 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 101 ® -18.1708 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 102 © -18.0519 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 103 ] -22.5679 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 104 é -22.4878 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 105 z -10.0176 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 106 _ 24.4530 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 86 - 15.2185 6.7988 107 ¥ -21.3093 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 1 t 2.5621 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 2 h -1.3679 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 3 a 10.9268 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 4 n 11.1463 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 5 P -0.1967 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 6 o 10.6437 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 7 e 10.9160 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 8 : 11.0079 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 9 r 11.1145 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 10 l -1.3178 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 11 i -0.9528 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 12 1 0.4132 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 13 | -1.3591 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 14 N -0.0969 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 15 f -1.5188 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 16 g 9.3170 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 17 d -1.5811 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 18 W 0.2220 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 19 s 11.3723 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 20 c 11.2671 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 21 u 11.0063 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 22 3 -0.3720 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 23 ~ 20.6803 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 24 # 0.0757 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 25 O -0.0862 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 26 ` -1.0883 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 27 @ 4.1800 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 28 F 0.2724 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 29 S -0.0127 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 30 p 10.8944 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 31 “ -0.3934 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 32 % -0.0934 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 33 £ -0.3140 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 34 . 32.9361 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 35 2 -0.2074 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 36 5 0.2932 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 37 m 11.1371 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 38 V 0.0370 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 39 6 -0.0640 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 40 w 11.3954 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 41 T -0.0924 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 42 M 0.1360 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 43 G -0.1927 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 44 b -1.5746 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 45 9 -0.1321 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 46 ; 10.4238 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 47 D -0.0086 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 48 L -0.0842 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 49 y 11.3562 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 50 ‘ -0.6501 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 51 \ -0.0164 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 52 R -0.1258 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 53 < 9.8895 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 54 4 0.3865 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 55 8 -0.2572 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 56 0 0.1957 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 57 A -0.3198 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 58 E 0.2300 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 59 B -0.1500 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 60 v 11.5612 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 61 k -1.2820 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 62 J 0.1336 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 63 U -0.0222 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 64 j -1.2682 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 65 ( -1.1027 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 66 7 0.1302 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 67 § -0.1953 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 68 $ -5.3329 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 69 € -1.0246 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 70 / 0.1450 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 71 C -0.3869 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 72 * -1.3813 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 73 ” -0.7420 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 74 ? -1.1459 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 75 { -0.4730 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 76 } -1.0779 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 77 , 33.3933 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 78 I -0.4531 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 79 ° -1.4951 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 80 K 0.1375 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 81 H -0.1957 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 82 q 11.1719 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 83 & -1.3435 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 84 ’ -0.5714 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 85 [ -1.6008 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 86 - 21.3312 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 87 Y 0.0323 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 88 Q -0.3477 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 89 " -0.8916 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 90 ! -1.4193 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 91 x 11.2766 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 92 ) -1.6363 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 93 = 14.3532 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 94 + 10.5360 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 95 X -0.0409 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 96 » 16.0223 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 97 ' -0.6960 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 98 ¢ 11.0684 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 99 Z 0.0620 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 100 > 9.7550 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 101 ® 3.1480 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 102 © 3.2434 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 103 ] -0.9850 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 104 é -1.3502 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 105 z 11.5327 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 106 _ 45.4463 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 87 Y 35.2012 41.8148 107 ¥ 0.1778 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 1 t 3.0708 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 2 h -0.8749 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 3 a 11.2210 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 4 n 11.4301 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 5 P -0.2253 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 6 o 11.3601 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 7 e 11.4225 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 8 : 10.8253 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 9 r 11.3215 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 10 l -1.1861 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 11 i -1.0023 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 12 1 0.1498 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 13 | -1.5531 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 14 N 0.1989 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 15 f -1.2060 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 16 g 9.7643 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 17 d -1.1344 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 18 W 0.6415 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 19 s 11.4200 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 20 c 11.3276 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 21 u 11.5448 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 22 3 0.0914 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 23 ~ 21.2613 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 24 # 0.0161 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 25 O -0.3376 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 26 ` -1.5340 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 27 @ 4.4001 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 28 F 0.4576 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 29 S 0.1745 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 30 p 11.4167 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 31 “ -0.6799 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 32 % -0.2426 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 33 £ -0.0239 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 34 . 33.0373 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 35 2 -0.0443 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 36 5 0.1852 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 37 m 11.4682 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 38 V 0.3496 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 39 6 -0.1846 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 40 w 11.4759 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 41 T 0.3140 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 42 M 0.4548 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 43 G 0.0094 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 44 b -1.2175 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 45 9 0.0028 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 46 ; 11.0484 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 47 D -0.2488 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 48 L 0.0313 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 49 y 11.9282 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 50 ‘ -0.6051 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 51 \ -0.0267 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 52 R -0.1942 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 53 < 10.0436 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 54 4 -0.2218 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 55 8 -0.1599 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 56 0 0.0557 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 57 A -0.2721 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 58 E 0.1929 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 59 B -0.1745 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 60 v 11.4463 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 61 k -1.3131 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 62 J 0.1885 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 63 U 0.2961 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 64 j -0.7921 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 65 ( -1.2189 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 66 7 0.3140 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 67 § -0.2222 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 68 $ -5.0963 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 69 € -1.0235 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 70 / 0.3100 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 71 C 0.0251 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 72 * -1.2185 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 73 ” -0.2652 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 74 ? -0.8266 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 75 { -0.5439 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 76 } -0.6957 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 77 , 33.5235 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 78 I -0.2564 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 79 ° -0.9709 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 80 K 0.3364 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 81 H 0.0237 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 82 q 11.0106 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 83 & -0.9416 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 84 ’ -0.5863 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 85 [ -1.2617 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 86 - 21.5563 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 87 Y 0.2889 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 88 Q 0.1930 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 89 " -0.7077 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 90 ! -1.0945 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 91 x 11.3776 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 92 ) -1.2347 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 93 = 14.6528 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 94 + 10.8861 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 95 X 0.5317 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 96 » 16.1394 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 97 ' -0.9013 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 98 ¢ 11.3729 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 99 Z -0.1308 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 100 > 9.6054 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 101 ® 3.2668 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 102 © 3.5704 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 103 ] -1.1451 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 104 é -0.9656 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 105 z 11.5764 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 106 _ 46.0128 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 88 Q 42.4989 50.5382 107 ¥ -0.0148 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 1 t 3.1498 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 2 h -0.3273 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 3 a 11.8962 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 4 n 11.9841 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 5 P 0.7740 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 6 o 11.6966 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 7 e 11.9447 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 8 : 11.5560 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 9 r 11.6329 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 10 l -0.4172 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 11 i -0.0761 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 12 1 0.8187 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 13 | 0.0571 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 14 N 0.8828 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 15 f -0.5194 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 16 g 10.1499 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 17 d -0.4258 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 18 W 1.0131 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 19 s 12.1004 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 20 c 12.0037 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 21 u 12.3744 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 22 3 0.7952 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 23 ~ 21.7122 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 24 # 0.7614 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 25 O 1.1529 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 26 ` -0.2468 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 27 @ 4.8752 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 28 F 0.7645 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 29 S 0.8592 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 30 p 11.7547 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 31 “ -0.1063 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 32 % 0.6357 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 33 £ 0.6711 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 34 . 33.7440 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 35 2 0.9577 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 36 5 0.8828 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 37 m 12.0076 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 38 V 0.8034 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 39 6 0.5022 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 40 w 12.4237 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 41 T 0.8429 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 42 M 0.8617 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 43 G 0.5947 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 44 b -0.3330 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 45 9 0.5515 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 46 ; 11.4247 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 47 D 0.2863 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 48 L 0.7764 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 49 y 12.3717 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 50 ‘ 0.1154 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 51 \ 0.9732 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 52 R 0.8797 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 53 < 10.7870 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 54 4 0.9372 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 55 8 0.6396 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 56 0 0.7146 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 57 A 0.8635 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 58 E 0.9911 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 59 B 0.6664 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 60 v 12.5406 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 61 k -0.5270 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 62 J 0.9483 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 63 U 0.8195 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 64 j -0.3126 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 65 ( -0.8376 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 66 7 0.8220 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 67 § 0.5703 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 68 $ -4.7233 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 69 € -0.3715 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 70 / 0.9717 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 71 C 0.5616 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 72 * -0.4680 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 73 ” 0.0212 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 74 ? -0.3310 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 75 { 0.0327 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 76 } 0.1768 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 77 , 33.7091 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 78 I 0.6237 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 79 ° -0.4813 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 80 K 1.0696 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 81 H 0.8168 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 82 q 11.8654 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 83 & -0.4549 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 84 ’ 0.0879 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 85 [ -0.6126 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 86 - 22.3618 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 87 Y 0.7987 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 88 Q 0.5717 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 89 " 0.1422 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 90 ! -0.3401 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 91 x 12.4808 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 92 ) -0.5456 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 93 = 15.3046 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 94 + 11.6197 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 95 X 0.9631 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 96 » 17.0774 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 97 ' 0.1883 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 98 ¢ 12.2162 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 99 Z 0.7512 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 100 > 10.5701 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 101 ® 4.0478 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 102 © 3.7865 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 103 ] -0.5237 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 104 é -0.2468 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 105 z 12.5812 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 106 _ 46.5100 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 89 " 17.9605 12.4766 107 ¥ 0.8357 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 1 t 3.6512 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 2 h -0.1286 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 3 a 12.2356 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 4 n 12.1090 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 5 P 0.8992 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 6 o 12.4202 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 7 e 12.2766 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 8 : 11.9584 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 9 r 12.4336 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 10 l -0.0959 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 11 i 0.0036 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 12 1 1.3089 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 13 | -0.2525 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 14 N 1.3843 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 15 f -0.1852 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 16 g 10.8645 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 17 d -0.2802 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 18 W 1.4859 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 19 s 12.4322 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 20 c 12.3785 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 21 u 12.6866 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 22 3 0.7509 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 23 ~ 22.2214 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 24 # 0.9478 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 25 O 1.0334 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 26 ` 0.1549 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 27 @ 4.7953 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 28 F 1.2408 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 29 S 1.0208 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 30 p 12.2112 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 31 “ 0.6993 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 32 % 1.0522 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 33 £ 0.9268 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 34 . 34.1137 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 35 2 1.2241 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 36 5 1.1463 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 37 m 12.2914 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 38 V 1.2584 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 39 6 1.2612 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 40 w 12.7014 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 41 T 1.0259 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 42 M 1.1653 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 43 G 1.2735 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 44 b -0.1938 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 45 9 1.0507 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 46 ; 12.0959 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 47 D 0.9854 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 48 L 1.1235 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 49 y 12.4333 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 50 ‘ 0.7685 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 51 \ 1.2185 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 52 R 0.9888 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 53 < 10.8801 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 54 4 1.2494 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 55 8 1.1387 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 56 0 0.9121 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 57 A 1.2564 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 58 E 1.3016 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 59 B 1.1716 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 60 v 12.4628 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 61 k -0.1880 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 62 J 1.3636 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 63 U 0.8216 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 64 j 0.1984 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 65 ( -0.2650 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 66 7 1.0546 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 67 § 1.3327 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 68 $ -4.0949 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 69 € -0.2755 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 70 / 1.1689 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 71 C 1.2020 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 72 * -0.0905 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 73 ” 0.6283 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 74 ? -0.3329 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 75 { 0.5125 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 76 } 0.3541 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 77 , 34.2862 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 78 I 1.2833 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 79 ° -0.2741 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 80 K 1.3877 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 81 H 1.2272 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 82 q 12.1532 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 83 & -0.0836 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 84 ’ 0.5125 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 85 [ -0.3364 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 86 - 22.4568 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 87 Y 1.1383 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 88 Q 0.9175 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 89 " 0.4079 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 90 ! 0.1389 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 91 x 12.5763 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 92 ) -0.0031 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 93 = 15.5676 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 94 + 11.9094 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 95 X 0.9966 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 96 » 17.5920 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 97 ' 0.2478 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 98 ¢ 11.9805 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 99 Z 1.0037 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 100 > 11.0130 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 101 ® 4.3724 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 102 © 4.1203 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 103 ] 0.0210 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 104 é -0.1745 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 105 z 12.6557 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 106 _ 46.9659 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 90 ! 8.6050 43.0334 107 ¥ 1.2185 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 1 t -8.7163 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 2 h -12.7981 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 3 a -0.3048 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 4 n -0.3224 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 5 P -11.9329 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 6 o -0.2501 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 7 e -0.2366 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 8 : -0.9233 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 9 r -0.1039 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 10 l -12.6008 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 11 i -12.3925 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 12 1 -11.0765 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 13 | -12.7567 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 14 N -11.3042 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 15 f -12.7589 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 16 g -2.1430 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 17 d -12.9052 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 18 W -11.6786 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 19 s -0.2279 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 20 c -0.0292 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 21 u -0.0519 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 22 3 -11.6162 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 23 ~ 9.3050 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 24 # -11.3395 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 25 O -11.5423 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 26 ` -12.7121 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 27 @ -7.3731 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 28 F -11.5227 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 29 S -11.3675 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 30 p -0.4261 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 31 “ -12.1486 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 32 % -11.5186 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 33 £ -11.5658 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 34 . 21.5267 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 35 2 -11.6950 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 36 5 -11.2956 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 37 m -0.3311 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 38 V -11.2740 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 39 6 -11.5629 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 40 w -0.0903 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 41 T -11.1524 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 42 M -11.2693 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 43 G -11.4774 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 44 b -13.0409 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 45 9 -11.7392 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 46 ; -0.9469 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 47 D -11.6432 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 48 L -11.5420 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 49 y 0.0251 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 50 ‘ -11.8229 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 51 \ -11.3839 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 52 R -11.6386 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 53 < -1.9873 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 54 4 -11.3676 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 55 8 -11.5644 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 56 0 -11.6446 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 57 A -11.7777 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 58 E -11.5699 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 59 B -11.2992 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 60 v -0.1948 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 61 k -12.7102 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 62 J -11.1896 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 63 U -11.5823 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 64 j -12.4324 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 65 ( -13.2965 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 66 7 -11.5152 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 67 § -11.1505 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 68 $ -16.6945 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 69 € -12.6603 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 70 / -11.3767 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 71 C -11.7882 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 72 * -12.3719 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 73 ” -11.8363 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 74 ? -12.3940 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 75 { -11.8825 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 76 } -12.1236 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 77 , 22.0490 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 78 I -11.7271 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 79 ° -12.6940 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 80 K -11.4764 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 81 H -11.5432 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 82 q -0.3937 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 83 & -12.5949 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 84 ’ -12.0896 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 85 [ -12.9521 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 86 - 10.0959 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 87 Y -10.9767 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 88 Q -11.2559 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 89 " -12.2976 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 90 ! -12.6127 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 91 x 0.0137 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 92 ) -12.7011 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 93 = 2.9950 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 94 + -0.6927 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 95 X -11.5166 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 96 » 4.7349 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 97 ' -12.4292 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 98 ¢ -0.3285 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 99 Z -11.5527 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 100 > -2.0302 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 101 ® -8.0984 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 102 © -8.0418 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 103 ] -12.7065 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 104 é -12.5559 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 105 z 0.1397 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 106 _ 34.4361 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 91 x 32.1765 30.4371 107 ¥ -11.3312 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 1 t 3.8317 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 2 h -0.1807 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 3 a 12.6735 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 4 n 12.2840 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 5 P 1.3103 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 6 o 12.6587 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 7 e 12.5245 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 8 : 11.8749 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 9 r 12.6034 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 10 l 0.0951 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 11 i 0.1241 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 12 1 1.4955 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 13 | 0.0874 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 14 N 1.4749 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 15 f 0.0000 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 16 g 10.8763 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 17 d -0.3402 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 18 W 1.6424 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 19 s 12.6598 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 20 c 12.4867 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 21 u 12.6084 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 22 3 0.9400 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 23 ~ 22.0567 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 24 # 1.1412 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 25 O 1.2654 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 26 ` 0.1680 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 27 @ 5.2049 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 28 F 1.7204 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 29 S 1.1728 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 30 p 12.5238 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 31 “ 0.7717 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 32 % 1.0893 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 33 £ 1.2405 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 34 . 34.2188 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 35 2 1.3440 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 36 5 1.3889 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 37 m 12.3997 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 38 V 1.0399 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 39 6 1.3883 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 40 w 12.7383 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 41 T 1.5401 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 42 M 1.2194 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 43 G 1.1383 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 44 b -0.1044 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 45 9 1.2286 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 46 ; 11.9086 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 47 D 1.3215 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 48 L 1.2494 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 49 y 12.8261 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 50 ‘ 0.6000 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 51 \ 1.2803 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 52 R 1.3502 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 53 < 10.9632 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 54 4 1.2346 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 55 8 1.1551 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 56 0 1.4536 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 57 A 1.3437 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 58 E 1.4705 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 59 B 1.0970 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 60 v 12.8143 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 61 k -0.0519 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 62 J 1.4393 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 63 U 1.2263 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 64 j 0.2752 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 65 ( 0.0692 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 66 7 1.4634 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 67 § 1.1282 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 68 $ -3.9366 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 69 € 0.1706 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 70 / 1.4941 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 71 C 1.4247 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 72 * 0.0370 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 73 ” 0.2331 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 74 ? 0.1107 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 75 { 0.9100 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 76 } 0.5246 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 77 , 34.6416 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 78 I 1.2144 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 79 ° -0.0965 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 80 K 1.5782 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 81 H 1.3644 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 82 q 12.2945 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 83 & 0.2381 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 84 ’ 0.8100 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 85 [ 0.0112 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 86 - 22.5451 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 87 Y 1.4037 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 88 Q 1.3117 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 89 " 0.3341 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 90 ! 0.0117 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 91 x 12.8693 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 92 ) -0.1360 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 93 = 15.8312 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 94 + 12.1420 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 95 X 1.2158 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 96 » 17.4293 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 97 ' 0.4892 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 98 ¢ 12.3108 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 99 Z 1.3874 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 100 > 11.0075 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 101 ® 4.5533 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 102 © 4.5989 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 103 ] -0.1633 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 104 é 0.2769 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 105 z 12.7248 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 106 _ 46.9723 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 92 ) 13.3024 55.7172 107 ¥ 1.4840 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 1 t -11.9274 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 2 h -15.8331 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 3 a -3.0629 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 4 n -3.0674 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 5 P -14.7400 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 6 o -3.2675 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 7 e -3.3988 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 8 : -3.7452 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 9 r -3.1566 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 10 l -15.7420 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 11 i -15.4955 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 12 1 -14.1872 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 13 | -15.5541 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 14 N -14.2098 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 15 f -15.7349 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 16 g -4.8221 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 17 d -15.6952 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 18 W -14.4362 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 19 s -3.3579 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 20 c -3.1548 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 21 u -2.7322 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 22 3 -14.6693 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 23 ~ 6.3950 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 24 # -14.1845 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 25 O -14.2783 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 26 ` -15.4565 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 27 @ -10.7475 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 28 F -14.4558 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 29 S -14.7816 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 30 p -3.1638 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 31 “ -15.1393 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 32 % -14.3801 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 33 £ -14.3950 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 34 . 18.6539 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 35 2 -14.4730 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 36 5 -14.1921 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 37 m -3.2508 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 38 V -14.6614 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 39 6 -14.7426 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 40 w -2.7018 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 41 T -14.4394 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 42 M -14.2112 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 43 G -14.7174 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 44 b -15.5076 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 45 9 -14.4110 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 46 ; -3.8967 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 47 D -14.5108 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 48 L -14.1238 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 49 y -2.9181 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 50 ‘ -15.3454 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 51 \ -14.3909 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 52 R -14.4657 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 53 < -4.8360 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 54 4 -14.2727 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 55 8 -14.6592 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 56 0 -14.5731 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 57 A -14.7699 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 58 E -14.4695 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 59 B -14.5842 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 60 v -3.0411 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 61 k -15.8457 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 62 J -14.3260 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 63 U -14.7489 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 64 j -15.4542 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 65 ( -15.7751 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 66 7 -14.1503 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 67 § -14.4633 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 68 $ -19.5708 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 69 € -15.8788 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 70 / -14.5210 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 71 C -14.4919 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 72 * -15.8236 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 73 ” -15.1926 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 74 ? -15.5779 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 75 { -15.0727 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 76 } -15.2297 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 77 , 19.1513 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 78 I -14.5563 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 79 ° -15.8835 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 80 K -14.2813 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 81 H -14.4261 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 82 q -3.4301 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 83 & -15.7300 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 84 ’ -15.0418 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 85 [ -15.7470 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 86 - 6.9059 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 87 Y -14.5534 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 88 Q -14.4143 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 89 " -15.2439 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 90 ! -15.7287 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 91 x -3.0483 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 92 ) -15.7718 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 93 = -0.3613 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 94 + -3.3818 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 95 X -14.4650 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 96 » 1.7754 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 97 ' -15.0084 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 98 ¢ -3.2952 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 99 Z -14.3357 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 100 > -4.8204 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 101 ® -11.1347 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 102 © -11.2385 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 103 ] -16.0148 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 104 é -15.5258 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 105 z -3.2203 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 106 _ 31.1657 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 93 = 25.3777 18.1236 107 ¥ -14.4822 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 1 t -7.9812 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 2 h -12.0143 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 3 a 0.6368 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 4 n 0.3321 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 5 P -11.2045 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 6 o 0.3907 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 7 e 0.2831 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 8 : -0.0388 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 9 r 0.3806 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 10 l -12.0679 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 11 i -11.6335 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 12 1 -10.3453 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 13 | -12.0589 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 14 N -10.7935 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 15 f -11.7659 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 16 g -0.7810 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 17 d -12.2928 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 18 W -10.7873 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 19 s 0.6103 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 20 c 0.2922 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 21 u 0.6682 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 22 3 -10.9471 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 23 ~ 10.1136 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 24 # -11.0643 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 25 O -10.6881 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 26 ` -12.1012 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 27 @ -6.6385 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 28 F -10.6593 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 29 S -10.6700 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 30 p -0.1282 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 31 “ -11.5790 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 32 % -10.9706 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 33 £ -10.7766 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 34 . 22.0224 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 35 2 -11.1013 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 36 5 -10.8566 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 37 m 0.4547 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 38 V -10.7654 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 39 6 -10.7649 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 40 w 0.6884 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 41 T -10.6095 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 42 M -10.6836 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 43 G -10.9517 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 44 b -11.9571 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 45 9 -10.9216 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 46 ; -0.2517 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 47 D -10.8418 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 48 L -10.5711 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 49 y 0.6448 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 50 ‘ -11.6754 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 51 \ -11.0204 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 52 R -11.2482 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 53 < -1.3198 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 54 4 -10.7128 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 55 8 -11.1350 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 56 0 -10.6341 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 57 A -10.7958 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 58 E -10.7826 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 59 B -11.0211 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 60 v 0.7476 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 61 k -12.0518 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 62 J -10.8420 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 63 U -10.6714 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 64 j -11.9365 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 65 ( -11.9984 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 66 7 -10.7221 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 67 § -10.7291 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 68 $ -16.0579 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 69 € -12.0495 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 70 / -10.9552 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 71 C -10.8803 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 72 * -11.7612 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 73 ” -11.4505 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 74 ? -12.0069 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 75 { -11.3644 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 76 } -11.6384 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 77 , 22.4406 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 78 I -10.8682 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 79 ° -11.8027 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 80 K -10.6606 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 81 H -10.8065 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 82 q 0.5860 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 83 & -11.7859 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 84 ’ -11.2292 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 85 [ -11.6976 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 86 - 10.2783 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 87 Y -10.5682 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 88 Q -10.8922 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 89 " -11.6643 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 90 ! -11.8258 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 91 x 0.6601 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 92 ) -12.4775 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 93 = 3.7636 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 94 + -0.1204 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 95 X -10.4626 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 96 » 5.4088 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 97 ' -11.5508 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 98 ¢ 0.2897 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 99 Z -10.5515 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 100 > -1.0014 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 101 ® -7.5236 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 102 © -7.8949 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 103 ] -12.6441 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 104 é -12.0313 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 105 z 0.6740 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 106 _ 34.7788 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 94 + 25.9421 25.9421 107 ¥ -10.6390 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 1 t 2.8111 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 2 h -1.2183 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 3 a 10.9340 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 4 n 11.0282 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 5 P 0.0235 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 6 o 10.9826 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 7 e 11.3371 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 8 : 10.7491 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 9 r 10.9221 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 10 l -1.4793 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 11 i -0.9507 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 12 1 0.0208 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 13 | -1.6567 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 14 N -0.2930 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 15 f -1.5229 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 16 g 9.5703 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 17 d -1.4110 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 18 W -0.2601 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 19 s 11.2569 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 20 c 11.0696 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 21 u 10.9431 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 22 3 -0.2352 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 23 ~ 20.6800 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 24 # -0.3207 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 25 O -0.1453 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 26 ` -1.0393 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 27 @ 3.9064 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 28 F 0.0323 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 29 S -0.1171 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 30 p 11.0311 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 31 “ -0.7858 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 32 % -0.5301 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 33 £ -0.2996 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 34 . 32.9108 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 35 2 -0.4652 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 36 5 -0.2231 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 37 m 11.2367 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 38 V -0.1403 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 39 6 -0.4943 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 40 w 11.4788 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 41 T 0.0889 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 42 M 0.1066 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 43 G -0.3349 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 44 b -1.4037 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 45 9 -0.1146 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 46 ; 10.2864 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 47 D 0.0426 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 48 L 0.0043 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 49 y 11.4790 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 50 ‘ -0.7384 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 51 \ 0.2691 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 52 R -0.0938 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 53 < 9.8258 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 54 4 0.0352 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 55 8 0.2092 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 56 0 0.1685 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 57 A -0.1184 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 58 E -0.0263 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 59 B -0.2438 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 60 v 11.3705 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 61 k -1.4829 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 62 J -0.1430 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 63 U 0.2027 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 64 j -0.9690 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 65 ( -1.2498 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 66 7 -0.1111 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 67 § -0.4497 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 68 $ -5.6500 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 69 € -1.4509 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 70 / -0.2579 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 71 C 0.1142 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 72 * -1.2246 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 73 ” -0.5833 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 74 ? -1.1282 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 75 { -0.7285 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 76 } -0.7680 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 77 , 33.1257 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 78 I 0.0265 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 79 ° -1.4878 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 80 K -0.0529 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 81 H 0.0680 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 82 q 11.3699 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 83 & -1.1858 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 84 ’ -0.8720 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 85 [ -1.3827 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 86 - 21.1990 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 87 Y -0.2245 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 88 Q -0.1453 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 89 " -0.8429 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 90 ! -1.1778 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 91 x 11.3601 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 92 ) -1.2995 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 93 = 14.3160 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 94 + 10.7812 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 95 X -0.3080 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 96 » 15.7613 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 97 ' -0.6579 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 98 ¢ 11.2332 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 99 Z 0.1772 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 100 > 9.6614 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 101 ® 3.2543 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 102 © 3.4039 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 103 ] -1.4637 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 104 é -1.0836 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 105 z 11.2541 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 106 _ 46.0641 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 95 X 35.0816 41.8148 107 ¥ -0.0566 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 1 t -13.3665 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 2 h -17.6671 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 3 a -5.0883 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 4 n -5.1278 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 5 P -16.3539 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 6 o -4.9051 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 7 e -4.9839 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 8 : -5.6482 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 9 r -4.8539 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 10 l -17.2112 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 11 i -17.0633 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 12 1 -16.3941 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 13 | -17.1590 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 14 N -16.0713 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 15 f -17.4140 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 16 g -6.6520 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 17 d -17.1216 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 18 W -15.9762 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 19 s -5.2016 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 20 c -4.6711 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 21 u -4.4566 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 22 3 -16.2546 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 23 ~ 4.8384 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 24 # -15.8844 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 25 O -16.0160 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 26 ` -17.0789 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 27 @ -11.9450 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 28 F -15.8873 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 29 S -15.9068 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 30 p -4.9446 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 31 “ -16.7469 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 32 % -16.5509 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 33 £ -15.8029 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 34 . 17.2114 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 35 2 -16.3435 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 36 5 -15.8225 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 37 m -4.9004 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 38 V -15.9392 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 39 6 -16.1146 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 40 w -4.6099 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 41 T -15.9790 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 42 M -16.1953 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 43 G -16.3323 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 44 b -17.0943 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 45 9 -16.3496 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 46 ; -5.3670 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 47 D -16.3435 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 48 L -15.8786 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 49 y -5.0232 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 50 ‘ -16.7050 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 51 \ -16.0807 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 52 R -15.9821 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 53 < -6.3105 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 54 4 -15.9482 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 55 8 -16.0368 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 56 0 -16.2074 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 57 A -16.5414 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 58 E -16.1935 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 59 B -16.2864 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 60 v -4.4658 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 61 k -17.6110 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 62 J -16.1309 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 63 U -15.9184 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 64 j -16.8962 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 65 ( -17.5606 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 66 7 -15.9381 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 67 § -16.2756 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 68 $ -21.3810 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 69 € -17.5595 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 70 / -15.9969 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 71 C -15.8278 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 72 * -17.5461 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 73 ” -16.8538 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 74 ? -17.0634 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 75 { -16.8463 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 76 } -16.5876 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 77 , 17.2098 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 78 I -16.1126 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 79 ° -17.4347 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 80 K -15.8449 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 81 H -15.7084 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 82 q -4.8496 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 83 & -17.2953 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 84 ’ -16.5728 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 85 [ -17.4778 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 86 - 5.2866 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 87 Y -16.0824 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 88 Q -16.1671 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 89 " -16.7718 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 90 ! -17.0126 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 91 x -4.5138 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 92 ) -17.3984 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 93 = -1.7308 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 94 + -5.3074 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 95 X -16.0478 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 96 » -0.2886 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 97 ' -16.8223 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 98 ¢ -4.9273 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 99 Z -16.0554 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 100 > -6.2745 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 101 ® -12.9048 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 102 © -12.5416 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 103 ] -17.3708 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 104 é -17.3830 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 105 z -4.4763 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 106 _ 29.8173 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 96 » 25.9777 18.8962 107 ¥ -16.0367 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 1 t 3.4396 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 2 h -0.4716 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 3 a 11.9571 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 4 n 11.8271 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 5 P 0.7153 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 6 o 12.0029 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 7 e 11.9557 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 8 : 11.3963 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 9 r 12.0908 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 10 l -0.4738 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 11 i -0.3572 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 12 1 0.8584 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 13 | -0.5357 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 14 N 0.7449 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 15 f -0.5061 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 16 g 10.3161 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 17 d -0.5756 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 18 W 0.5126 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 19 s 11.9572 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 20 c 11.8817 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 21 u 12.1627 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 22 3 0.6578 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 23 ~ 21.4757 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 24 # 1.0590 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 25 O 0.7448 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 26 ` -0.0795 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 27 @ 4.9260 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 28 F 0.8828 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 29 S 0.6044 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 30 p 11.9518 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 31 “ -0.1101 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 32 % 0.7894 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 33 £ 0.7807 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 34 . 33.5730 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 35 2 0.7941 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 36 5 0.9486 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 37 m 12.1316 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 38 V 0.6834 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 39 6 0.6563 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 40 w 12.0813 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 41 T 0.8828 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 42 M 0.7616 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 43 G 0.6310 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 44 b -0.4036 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 45 9 0.7880 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 46 ; 11.6094 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 47 D 0.5173 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 48 L 0.9016 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 49 y 12.2606 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 50 ‘ 0.1843 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 51 \ 0.9227 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 52 R 0.5541 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 53 < 10.5989 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 54 4 1.0124 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 55 8 0.5627 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 56 0 0.5242 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 57 A 0.4295 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 58 E 0.6710 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 59 B 0.5616 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 60 v 12.3509 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 61 k -0.5800 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 62 J 0.9818 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 63 U 0.8901 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 64 j -0.1899 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 65 ( -0.6954 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 66 7 1.0189 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 67 § 0.5627 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 68 $ -4.3935 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 69 € -0.4320 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 70 / 0.8828 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 71 C 0.6202 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 72 * -0.5209 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 73 ” 0.3251 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 74 ? -0.2454 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 75 { 0.2671 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 76 } 0.2286 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 77 , 33.9538 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 78 I 0.9642 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 79 ° -0.4958 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 80 K 0.7403 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 81 H 0.8976 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 82 q 11.9557 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 83 & -0.1295 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 84 ’ 0.2508 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 85 [ -0.7110 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 86 - 22.1744 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 87 Y 0.9300 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 88 Q 0.8297 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 89 " 0.0842 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 90 ! -0.2320 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 91 x 12.2015 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 92 ) -0.4810 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 93 = 15.2099 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 94 + 11.6802 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 95 X 0.8357 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 96 » 16.8431 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 97 ' -0.0683 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 98 ¢ 11.7539 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 99 Z 1.0591 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 100 > 10.7993 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 101 ® 4.1574 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 102 © 4.0233 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 103 ] -0.5372 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 104 é -0.2940 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 105 z 12.3994 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 106 _ 46.3563 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 97 ' 7.2012 12.4766 107 ¥ 0.8828 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 1 t -8.5396 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 2 h -12.3332 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 3 a 0.0002 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 4 n 0.0418 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 5 P -11.0328 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 6 o 0.1335 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 7 e 0.0506 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 8 : -0.6884 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 9 r -0.2977 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 10 l -12.5746 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 11 i -11.9856 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 12 1 -10.7495 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 13 | -12.5322 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 14 N -11.2265 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 15 f -12.3651 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 16 g -1.4445 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 17 d -12.4712 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 18 W -11.2396 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 19 s -0.0414 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 20 c 0.0371 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 21 u 0.3865 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 22 3 -11.0591 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 23 ~ 9.4928 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 24 # -11.1542 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 25 O -11.1009 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 26 ` -12.4812 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 27 @ -7.3732 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 28 F -10.8935 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 29 S -11.2066 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 30 p -0.1286 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 31 “ -12.0069 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 32 % -11.3629 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 33 £ -11.2852 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 34 . 21.8196 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 35 2 -11.1542 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 36 5 -11.2382 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 37 m 0.1040 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 38 V -10.9694 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 39 6 -11.2542 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 40 w 0.2338 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 41 T -11.2731 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 42 M -11.1885 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 43 G -11.6573 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 44 b -12.5634 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 45 9 -11.2837 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 46 ; -0.6452 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 47 D -11.0889 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 48 L -11.0090 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 49 y -0.0289 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 50 ‘ -11.8467 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 51 \ -11.2664 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 52 R -11.3780 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 53 < -1.2482 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 54 4 -11.2647 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 55 8 -10.9452 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 56 0 -11.2614 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 57 A -11.4492 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 58 E -11.2291 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 59 B -11.0254 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 60 v 0.4250 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 61 k -12.4871 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 62 J -10.9636 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 63 U -11.0996 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 64 j -11.9270 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 65 ( -12.4305 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 66 7 -10.9143 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 67 § -11.0498 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 68 $ -16.4428 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 69 € -12.1591 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 70 / -11.3005 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 71 C -11.3298 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 72 * -12.5433 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 73 ” -11.6242 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 74 ? -12.3524 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 75 { -11.7553 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 76 } -11.9693 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 77 , 22.1722 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 78 I -10.9600 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 79 ° -12.4912 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 80 K -10.9941 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 81 H -11.0431 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 82 q -0.1522 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 83 & -12.3669 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 84 ’ -11.5816 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 85 [ -12.7178 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 86 - 10.1981 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 87 Y -10.9873 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 88 Q -11.2221 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 89 " -11.8893 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 90 ! -12.2725 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 91 x 0.3927 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 92 ) -12.3727 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 93 = 3.1519 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 94 + -0.2829 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 95 X -11.3377 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 96 » 4.8884 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 97 ' -11.9410 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 98 ¢ -0.1336 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 99 Z -11.0978 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 100 > -1.3387 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 101 ® -8.0855 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 102 © -7.7703 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 103 ] -12.6138 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 104 é -12.3236 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 105 z 0.1131 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 106 _ 34.3238 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 98 ¢ 20.6804 30.3842 107 ¥ -11.1697 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 1 t 2.4765 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 2 h -1.2601 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 3 a 11.3171 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 4 n 10.9260 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 5 P -0.0963 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 6 o 11.0869 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 7 e 10.9171 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 8 : 10.7360 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 9 r 11.0519 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 10 l -1.3998 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 11 i -1.0824 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 12 1 0.2590 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 13 | -1.5444 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 14 N 0.1706 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 15 f -1.3479 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 16 g 9.3184 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 17 d -1.2292 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 18 W -0.3018 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 19 s 10.8281 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 20 c 11.3217 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 21 u 11.2370 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 22 3 -0.3496 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 23 ~ 20.6610 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 24 # -0.2363 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 25 O -0.2654 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 26 ` -1.3204 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 27 @ 4.0208 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 28 F 0.1677 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 29 S -0.3226 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 30 p 11.2554 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 31 “ -0.7100 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 32 % -0.0941 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 33 £ -0.3942 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 34 . 33.0105 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 35 2 -0.3364 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 36 5 -0.1705 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 37 m 11.1803 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 38 V 0.0220 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 39 6 -0.4461 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 40 w 11.6969 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 41 T -0.0341 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 42 M -0.2853 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 43 G -0.0280 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 44 b -1.6247 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 45 9 -0.1737 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 46 ; 10.7384 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 47 D -0.2842 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 48 L -0.1200 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 49 y 11.1438 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 50 ‘ -0.5787 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 51 \ -0.3747 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 52 R -0.3510 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 53 < 9.5638 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 54 4 0.0615 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 55 8 -0.3727 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 56 0 -0.3874 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 57 A -0.0948 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 58 E -0.0722 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 59 B -0.0222 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 60 v 11.5598 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 61 k -1.4974 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 62 J 0.0903 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 63 U -0.1914 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 64 j -0.8826 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 65 ( -1.1601 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 66 7 0.0101 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 67 § -0.2370 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 68 $ -5.7236 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 69 € -1.4037 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 70 / -0.3469 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 71 C -0.0059 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 72 * -1.3047 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 73 ” -0.3582 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 74 ? -0.7655 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 75 { -0.7744 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 76 } -0.8273 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 77 , 33.0819 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 78 I -0.0990 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 79 ° -1.6732 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 80 K -0.0015 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 81 H -0.0120 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 82 q 11.0998 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 83 & -1.3650 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 84 ’ -0.5719 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 85 [ -1.2111 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 86 - 21.2807 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 87 Y -0.0951 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 88 Q 0.0158 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 89 " -1.1462 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 90 ! -1.1099 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 91 x 11.9245 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 92 ) -1.4037 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 93 = 14.5015 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 94 + 10.5670 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 95 X 0.0395 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 96 » 15.7844 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 97 ' -0.5816 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 98 ¢ 10.9650 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 99 Z -0.0842 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 100 > 9.6076 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 101 ® 3.2380 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 102 © 3.1934 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 103 ] -1.7031 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 104 é -0.9745 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 105 z 11.3220 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 106 _ 45.6229 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 99 Z 28.0000 41.8148 107 ¥ -0.1619 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 1 t -7.4116 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 2 h -11.1558 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 3 a 1.5638 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 4 n 1.2504 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 5 P -9.9076 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 6 o 1.8185 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 7 e 1.5548 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 8 : 0.8785 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 9 r 1.5537 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 10 l -11.1838 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 11 i -10.7308 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 12 1 -9.3926 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 13 | -11.3285 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 14 N -9.6081 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 15 f -11.1517 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 16 g -0.1686 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 17 d -11.1785 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 18 W -10.1118 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 19 s 1.2780 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 20 c 1.3001 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 21 u 1.7606 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 22 3 -9.8876 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 23 ~ 11.2637 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 24 # -9.9836 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 25 O -10.0138 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 26 ` -10.7668 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 27 @ -5.6081 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 28 F -9.6802 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 29 S -9.9358 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 30 p 1.4336 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 31 “ -10.4600 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 32 % -10.2118 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 33 £ -9.8702 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 34 . 23.1278 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 35 2 -9.8912 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 36 5 -9.7700 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 37 m 1.3716 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 38 V -9.5342 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 39 6 -9.7860 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 40 w 1.8686 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 41 T -9.5700 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 42 M -9.7906 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 43 G -9.9282 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 44 b -10.8427 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 45 9 -9.9383 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 46 ; 0.7869 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 47 D -10.0969 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 48 L -9.6566 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 49 y 1.7634 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 50 ‘ -10.5127 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 51 \ -9.5689 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 52 R -9.9181 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 53 < 0.0831 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 54 4 -9.8863 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 55 8 -9.8717 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 56 0 -9.9994 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 57 A -9.8217 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 58 E -9.7488 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 59 B -9.9152 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 60 v 1.5977 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 61 k -11.0316 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 62 J -10.0489 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 63 U -9.8454 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 64 j -10.5666 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 65 ( -11.4116 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 66 7 -9.6528 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 67 § -9.9707 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 68 $ -14.8808 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 69 € -11.2122 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 70 / -9.7163 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 71 C -9.9297 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 72 * -10.7412 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 73 ” -10.3811 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 74 ? -10.9212 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 75 { -10.2339 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 76 } -10.4222 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 77 , 23.1708 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 78 I -9.8035 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 79 ° -10.9641 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 80 K -9.7815 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 81 H -9.7879 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 82 q 1.2058 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 83 & -10.9630 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 84 ’ -10.1518 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 85 [ -11.1603 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 86 - 11.5692 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 87 Y -9.6085 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 88 Q -9.9148 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 89 " -10.5841 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 90 ! -10.9922 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 91 x 1.5841 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 92 ) -11.0968 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 93 = 4.8132 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 94 + 1.2562 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 95 X -9.8309 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 96 » 6.3560 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 97 ' -10.5261 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 98 ¢ 1.3515 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 99 Z -9.6542 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 100 > -0.0992 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 101 ® -6.4144 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 102 © -6.4861 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 103 ] -11.3120 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 104 é -11.0075 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 100 > 23.0506 26.7286 105 z 1.2483 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 106 _ 36.1381 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 100 > 23.0198 26.7286 107 ¥ -9.7710 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 1 t -0.6348 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 2 h -4.8699 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 3 a 7.9411 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 4 n 7.7925 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 5 P -3.7192 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 6 o 7.7896 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 7 e 8.1947 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 8 : 7.1885 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 9 r 7.6148 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 10 l -4.5442 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 11 i -4.5071 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 12 1 -3.2374 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 13 | -4.2937 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 14 N -3.1985 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 15 f -4.8185 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 16 g 6.3148 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 17 d -4.6345 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 18 W -3.3239 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 19 s 7.8041 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 20 c 7.9575 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 21 u 8.0809 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 22 3 -3.3641 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 23 ~ 17.3555 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 24 # -3.2738 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 25 O -3.4580 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 26 ` -4.3579 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 27 @ 0.8105 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 28 F -2.9234 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 29 S -3.5607 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 30 p 7.8680 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 31 “ -3.2657 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 32 % -3.2997 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 33 £ -3.1112 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 34 . 29.8720 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 35 2 -3.4689 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 36 5 -3.3596 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 37 m 7.8497 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 38 V -2.9401 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 39 6 -3.5418 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 40 w 8.4968 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 41 T -3.0407 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 42 M -3.3351 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 43 G -3.1537 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 44 b -4.3181 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 45 9 -3.2310 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 46 ; 7.0826 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 47 D -3.7917 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 48 L -3.1966 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 49 y 8.3287 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 50 ‘ -4.1275 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 51 \ -3.2644 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 52 R -3.4304 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 53 < 6.7670 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 54 4 -3.0660 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 55 8 -3.2037 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 56 0 -3.0700 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 57 A -3.5534 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 58 E -3.4705 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 59 B -3.6312 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 60 v 8.4020 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 61 k -4.8403 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 62 J -2.9662 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 63 U -3.2199 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 64 j -4.2657 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 65 ( -4.6425 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 66 7 -3.2280 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 67 § -3.5265 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 68 $ -8.7014 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 69 € -4.5111 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 70 / -3.3433 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 71 C -3.0350 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 72 * -4.3660 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 73 ” -4.1909 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 74 ? -4.3601 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 75 { -3.4877 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 76 } -4.1204 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 77 , 29.9334 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 78 I -3.3111 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 79 ° -4.4315 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 80 K -3.1948 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 81 H -3.3755 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 82 q 8.0007 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 83 & -4.7378 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 84 ’ -3.6773 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 85 [ -4.8547 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 86 - 18.2624 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 87 Y -3.2065 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 88 Q -3.2798 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 89 " -3.6630 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 90 ! -4.2198 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 91 x 8.0823 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 92 ) -4.6960 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 93 = 11.2621 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 94 + 7.3995 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 95 X -3.2113 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 96 » 13.0488 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 97 ' -4.1237 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 98 ¢ 7.9600 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 99 Z -3.0765 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 100 > 6.4899 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 101 ® -0.1227 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 102 © 0.2413 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 103 ] -4.8744 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 104 é -4.5919 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 105 z 7.8720 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 106 _ 42.3017 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 101 ® 39.8458 39.8458 107 ¥ -2.9177 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 1 t -0.7299 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 2 h -4.2582 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 3 a 7.9219 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 4 n 7.7660 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 5 P -3.2618 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 6 o 7.9001 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 7 e 7.7978 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 8 : 7.2463 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 9 r 7.9143 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 10 l -4.7378 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 11 i -4.4525 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 12 1 -3.1843 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 13 | -5.1076 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 14 N -3.2387 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 15 f -4.4270 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 16 g 6.3695 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 17 d -4.8104 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 18 W -3.1430 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 19 s 7.9372 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 20 c 8.0052 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 21 u 8.2838 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 22 3 -3.3601 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 23 ~ 17.3294 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 24 # -3.5570 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 25 O -3.3022 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 26 ` -4.3691 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 27 @ 0.7667 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 28 F -3.6657 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 29 S -3.5473 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 30 p 7.9353 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 31 “ -4.0484 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 32 % -3.1065 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 33 £ -3.2569 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 34 . 29.5850 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 35 2 -3.4705 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 36 5 -3.1135 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 37 m 7.6028 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 38 V -3.3702 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 39 6 -3.5164 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 40 w 8.2312 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 41 T -3.2289 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 42 M -3.5388 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 43 G -3.4106 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 44 b -4.1304 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 45 9 -2.9728 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 46 ; 7.1409 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 47 D -3.4242 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 48 L -3.0917 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 49 y 8.0743 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 50 ‘ -3.6631 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 51 \ -2.9875 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 52 R -3.5106 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 53 < 6.5950 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 54 4 -3.3417 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 55 8 -3.4742 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 56 0 -2.9078 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 57 A -3.2617 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 58 E -2.9836 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 59 B -3.0067 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 60 v 8.1088 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 61 k -4.3304 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 62 J -3.1750 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 63 U -3.4793 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 64 j -4.1332 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 65 ( -4.4909 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 66 7 -3.0324 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 67 § -3.4214 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 68 $ -8.4217 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 69 € -4.5333 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 70 / -2.9238 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 71 C -3.4631 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 72 * -4.6240 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 73 ” -3.6605 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 74 ? -4.1438 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 75 { -4.1143 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 76 } -3.9437 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 77 , 29.9204 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 78 I -3.4100 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 79 ° -4.7334 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 80 K -3.5481 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 81 H -3.1047 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 82 q 7.7404 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 83 & -4.2346 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 84 ’ -3.4589 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 85 [ -4.6805 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 86 - 18.3817 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 87 Y -3.0394 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 88 Q -3.5687 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 89 " -4.2001 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 90 ! -4.6020 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 91 x 8.2978 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 92 ) -4.7849 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 93 = 11.1510 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 94 + 7.4411 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 95 X -3.5722 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 96 » 12.7842 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 97 ' -4.0831 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 98 ¢ 7.9714 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 99 Z -3.1121 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 100 > 6.4762 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 101 ® 0.1321 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 102 © 0.4049 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 103 ] -4.9181 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 104 é -4.4519 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 105 z 8.1753 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 106 _ 42.8467 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 102 © 39.8458 39.8458 107 ¥ -3.1506 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 1 t 3.8504 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 2 h 0.0842 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 3 a 12.5150 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 4 n 12.5925 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 5 P 1.3263 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 6 o 12.7602 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 7 e 12.2408 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 8 : 12.1821 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 9 r 12.3604 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 10 l -0.2426 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 11 i 0.8080 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 12 1 1.5671 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 13 | -0.0187 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 14 N 1.3634 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 15 f 0.2090 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 16 g 10.7269 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 17 d -0.2314 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 18 W 1.4422 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 19 s 12.5832 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 20 c 12.5001 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 21 u 12.9150 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 22 3 1.0162 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 23 ~ 22.2468 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 24 # 1.4643 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 25 O 1.3629 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 26 ` 0.2842 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 27 @ 5.4926 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 28 F 1.5491 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 29 S 1.2395 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 30 p 12.4529 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 31 “ 0.6976 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 32 % 1.2474 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 33 £ 1.0940 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 34 . 34.3437 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 35 2 1.1195 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 36 5 1.3951 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 37 m 12.4719 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 38 V 1.5088 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 39 6 1.1936 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 40 w 12.6897 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 41 T 1.3537 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 42 M 1.3087 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 43 G 0.9635 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 44 b -0.1418 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 45 9 1.3358 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 46 ; 11.9025 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 47 D 1.3830 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 48 L 1.4095 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 49 y 12.6984 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 50 ‘ 0.4116 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 51 \ 1.4326 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 52 R 1.3296 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 53 < 11.0032 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 54 4 1.6334 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 55 8 1.4025 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 56 0 1.0037 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 57 A 1.1993 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 58 E 1.5237 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 59 B 1.2171 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 60 v 12.9251 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 61 k 0.0418 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 62 J 1.4595 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 63 U 1.1414 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 64 j 0.3419 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 65 ( 0.2897 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 66 7 1.4037 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 67 § 1.1800 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 68 $ -4.2267 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 69 € 0.3322 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 70 / 1.1687 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 71 C 1.4632 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 72 * 0.0163 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 73 ” 0.6871 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 74 ? -0.1488 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 75 { 0.6221 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 76 } 0.7717 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 77 , 34.7957 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 78 I 1.4509 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 79 ° -0.0500 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 80 K 1.3000 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 81 H 1.2245 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 82 q 12.3816 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 83 & 0.1048 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 84 ’ 0.8250 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 85 [ 0.2253 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 86 - 22.6939 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 87 Y 1.2198 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 88 Q 1.3904 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 89 " 0.1520 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 90 ! 0.1880 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 91 x 12.7613 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 92 ) -0.0345 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 93 = 15.8869 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 94 + 12.3569 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 95 X 1.3797 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 96 » 17.5507 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 97 ' 0.5061 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 98 ¢ 12.3760 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 99 Z 1.3969 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 100 > 11.2212 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 101 ® 4.9276 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 102 © 4.7071 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 103 ] -0.1220 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 104 é 0.2842 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 105 z 12.8757 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 106 _ 46.9171 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 103 ] 14.4025 55.1963 107 ¥ 1.3962 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 1 t 3.8483 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 2 h -0.3923 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 3 a 12.2222 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 4 n 12.4275 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 5 P 1.0083 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 6 o 12.2396 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 7 e 12.1674 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 8 : 11.6734 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 9 r 12.4206 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 10 l -0.2755 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 11 i 0.3102 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 12 1 1.2084 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 13 | -0.6268 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 14 N 1.2715 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 15 f -0.2402 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 16 g 11.0005 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 17 d -0.2842 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 18 W 1.3136 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 19 s 12.0723 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 20 c 12.6336 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 21 u 12.6086 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 22 3 1.0078 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 23 ~ 21.7812 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 24 # 1.3091 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 25 O 0.9344 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 26 ` 0.0288 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 27 @ 5.2218 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 28 F 1.2951 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 29 S 1.0037 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 30 p 12.3181 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 31 “ 0.5066 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 32 % 1.0367 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 33 £ 0.9531 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 34 . 33.9466 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 35 2 1.2288 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 36 5 1.0576 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 37 m 12.3219 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 38 V 1.1115 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 39 6 1.3040 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 40 w 12.8436 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 41 T 1.1977 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 42 M 1.2272 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 43 G 0.9800 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 44 b -0.1543 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 45 9 1.0206 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 46 ; 11.5010 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 47 D 1.0732 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 48 L 0.9329 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 49 y 12.6906 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 50 ‘ 0.6392 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 51 \ 1.2600 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 52 R 1.2246 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 53 < 10.8860 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 54 4 1.2806 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 55 8 0.9493 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 56 0 0.8747 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 57 A 1.0371 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 58 E 1.0984 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 59 B 0.9714 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 60 v 12.5220 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 61 k -0.4325 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 62 J 1.3035 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 63 U 1.5447 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 64 j 0.0717 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 65 ( 0.0161 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 66 7 1.4449 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 67 § 0.6282 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 68 $ -4.1160 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 69 € -0.1960 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 70 / 1.1257 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 71 C 0.7873 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 72 * -0.2694 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 73 ” 0.2994 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 74 ? -0.1792 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 75 { 0.4978 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 76 } 0.5380 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 77 , 34.5612 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 78 I 0.9587 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 79 ° -0.2784 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 80 K 1.1210 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 81 H 1.2225 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 82 q 12.1863 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 83 & 0.1069 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 84 ’ 0.5542 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 85 [ -0.1060 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 86 - 22.6316 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 87 Y 1.0340 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 88 Q 0.7282 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 89 " 0.3452 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 90 ! -0.0138 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 91 x 12.7891 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 92 ) -0.3996 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 93 = 15.3141 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 94 + 12.1750 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 95 X 1.1268 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 96 » 17.4436 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 97 ' 0.3149 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 98 ¢ 12.2394 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 99 Z 0.9928 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 100 > 10.6488 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 101 ® 4.4244 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 102 © 4.3057 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 103 ] 0.1142 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 104 é -0.1720 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 105 z 12.7190 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 106 _ 47.1292 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 104 é 29.6210 43.0334 107 ¥ 1.3498 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 1 t -8.8776 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 2 h -12.6149 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 3 a -0.4369 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 4 n -0.2962 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 5 P -11.6507 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 6 o -0.2558 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 7 e -0.3952 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 8 : -0.8333 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 9 r -0.1991 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 10 l -12.9203 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 11 i -12.7150 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 12 1 -11.5213 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 13 | -12.5481 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 14 N -11.5612 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 15 f -12.6109 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 16 g -2.2165 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 17 d -13.0121 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 18 W -11.3862 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 19 s -0.6586 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 20 c -0.3933 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 21 u -0.0444 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 22 3 -11.4922 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 23 ~ 9.4471 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 24 # -11.6547 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 25 O -11.3862 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 26 ` -12.4545 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 27 @ -7.3418 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 28 F -11.3897 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 29 S -11.4207 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 30 p -0.1281 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 31 “ -11.9445 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 32 % -11.7037 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 33 £ -11.5024 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 34 . 21.7021 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 35 2 -11.5596 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 36 5 -11.3864 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 37 m -0.6263 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 38 V -11.6739 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 39 6 -11.6202 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 40 w -0.1403 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 41 T -11.3212 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 42 M -11.5594 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 43 G -11.9671 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 44 b -12.8185 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 45 9 -11.4430 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 46 ; -0.9107 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 47 D -11.3909 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 48 L -11.4544 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 49 y 0.2743 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 50 ‘ -12.1976 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 51 \ -11.3318 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 52 R -11.4841 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 53 < -1.8847 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 54 4 -11.5275 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 55 8 -11.1037 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 56 0 -11.3772 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 57 A -11.6000 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 58 E -11.6339 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 59 B -11.7792 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 60 v -0.0889 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 61 k -12.8656 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 62 J -11.4223 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 63 U -11.4028 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 64 j -12.6663 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 65 ( -12.9959 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 66 7 -11.4927 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 67 § -11.6370 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 68 $ -16.5051 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 69 € -12.8763 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 70 / -11.3440 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 71 C -11.6522 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 72 * -12.9055 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 73 ” -12.4120 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 74 ? -12.5059 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 75 { -12.0986 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 76 } -12.1414 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 77 , 21.5477 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 78 I -11.2644 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 79 ° -13.3091 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 80 K -11.3446 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 81 H -11.1651 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 82 q 0.0544 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 83 & -12.6852 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 84 ’ -12.1611 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 85 [ -12.7383 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 86 - 9.5294 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 87 Y -11.2961 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 88 Q -11.6767 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 89 " -12.4028 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 90 ! -12.6481 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 91 x -0.1144 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 92 ) -12.5490 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 93 = 2.6071 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 94 + -0.7493 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 95 X -11.4191 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 96 » 4.7128 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 97 ' -12.2725 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 98 ¢ -0.5923 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 99 Z -11.1260 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 100 > -1.5691 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 101 ® -8.0984 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 102 © -8.4003 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 103 ] -12.9448 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 104 é -12.6120 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 105 z 0.1037 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 106 _ 34.0181 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 105 z 26.7815 30.4371 107 ¥ -11.1600 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 1 t -43.2162 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 2 h -47.0844 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 3 a -34.6505 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 4 n -35.0627 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 5 P -45.7443 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 6 o -34.7248 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 7 e -34.3737 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 8 : -34.8093 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 9 r -34.4142 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 10 l -47.0223 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 11 i -46.6942 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 12 1 -46.0366 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 13 | -47.2365 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 14 N -45.7607 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 15 f -46.9198 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 16 g -36.1493 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 17 d -47.0035 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 18 W -45.4332 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 19 s -34.4109 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 20 c -34.7129 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 21 u -34.0824 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 22 3 -46.0463 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 23 ~ -25.2413 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 24 # -45.7908 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 25 O -45.9829 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 26 ` -46.6881 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 27 @ -41.7168 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 28 F -45.3821 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 29 S -45.9447 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 30 p -34.5251 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 31 “ -46.3190 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 32 % -46.0047 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 33 £ -45.6986 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 34 . -12.6599 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 35 2 -45.7480 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 36 5 -45.9489 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 37 m -34.7547 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 38 V -45.5815 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 39 6 -45.8509 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 40 w -34.4154 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 41 T -45.9698 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 42 M -45.2336 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 43 G -45.7342 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 44 b -47.3558 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 45 9 -45.6576 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 46 ; -35.8867 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 47 D -45.8552 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 48 L -46.0649 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 49 y -34.2388 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 50 ‘ -46.4285 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 51 \ -45.6430 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 52 R -45.7346 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 53 < -36.3125 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 54 4 -45.8388 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 55 8 -45.7432 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 56 0 -45.7228 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 57 A -45.8433 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 58 E -45.7007 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 59 B -45.9002 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 60 v -34.3596 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 61 k -46.9966 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 62 J -45.8315 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 63 U -45.6408 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 64 j -46.7992 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 65 ( -47.1535 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 66 7 -45.8496 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 67 § -45.8494 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 68 $ -50.8985 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 69 € -47.0776 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 70 / -45.5457 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 71 C -45.7799 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 72 * -46.9096 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 73 ” -46.4635 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 74 ? -46.7342 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 75 { -46.2328 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 76 } -46.3145 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 77 , -12.0691 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 78 I -45.8571 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 79 ° -46.8787 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 80 K -45.3966 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 81 H -45.8766 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 82 q -34.5201 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 83 & -46.4394 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 84 ’ -46.2543 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 85 [ -47.0128 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 86 - -24.6771 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 87 Y -45.3346 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 88 Q -46.0510 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 89 " -46.5547 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 90 ! -46.8292 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 91 x -34.0556 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 92 ) -47.0340 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 93 = -31.4973 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 94 + -35.0062 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 95 X -45.4851 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 96 » -29.5267 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 97 ' -46.3033 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 98 ¢ -34.5323 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 99 Z -45.4004 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 100 > -36.1854 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 101 ® -42.7069 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 102 © -42.4194 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 103 ] -47.1176 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 104 é -46.5464 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 105 z -34.3980 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 106 _ 0.2872 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 106 _ 34.3975 5.9827 107 ¥ -45.8814 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 1 t 2.5208 20.6804 39.2581 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 2 h -1.3105 27.0643 43.2185 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 3 a 11.2050 28.4989 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 4 n 11.1301 26.7815 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 5 P -0.0664 27.5988 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 6 o 11.4593 29.2185 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 7 e 10.8538 29.6210 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 8 : 10.3691 9.3419 31.7837 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 9 r 10.9927 21.0161 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 10 l -1.5252 10.5740 43.2185 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 11 i -1.3160 11.6826 42.8828 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 12 1 -0.0870 15.6210 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 13 | -1.5074 5.8630 55.1963 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 14 N -0.0533 30.6890 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 15 f -1.2292 21.8198 43.2185 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 16 g 9.6129 27.0863 44.2430 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 17 d -1.1714 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 18 W 0.1255 52.2789 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 19 s 10.8328 21.2012 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 20 c 11.0305 25.8458 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 21 u 11.6872 27.0643 30.4371 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 22 3 -0.0117 25.2581 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 23 ~ 20.7952 23.1394 7.8321 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 24 # -0.5378 31.6505 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 25 O -0.3274 36.8210 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 26 ` -1.2465 12.2470 8.4198 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 27 @ 4.1249 38.4057 39.9207 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 28 F -0.3008 27.1840 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 29 S -0.3613 25.4433 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 30 p 10.9826 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 31 “ -0.4962 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 32 % 0.0177 38.1804 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 33 £ -0.1445 27.0643 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 34 . 32.6293 9.3419 9.4616 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 35 2 -0.0357 27.4791 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 36 5 -0.0547 25.4433 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 37 m 11.1110 42.8828 30.7419 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 38 V -0.0786 36.0050 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 39 6 -0.2856 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 40 w 11.4014 45.7224 30.4371 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 41 T -0.1437 34.8309 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 42 M 0.0376 41.2419 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 43 G -0.1300 34.3839 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 44 b -1.2630 28.4025 43.2185 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 45 9 -0.3187 27.4655 42.1852 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 46 ; 10.5703 11.1481 42.0220 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 47 D -0.3154 30.8396 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 48 L 0.0627 26.2606 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 49 y 11.1971 31.2408 42.4148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 50 ‘ -0.5791 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 51 \ 0.1673 22.7817 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 52 R 0.0190 31.7088 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 53 < 9.6383 23.0506 26.7286 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 54 4 0.3689 30.3530 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 55 8 -0.1305 27.4655 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 56 0 -0.2299 30.0223 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 57 A 0.1574 36.4853 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 58 E -0.2440 26.3802 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 59 B 0.0089 28.0000 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 60 v 11.3216 31.3199 30.4371 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 61 k -1.2155 28.0000 43.2185 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 62 J 0.2501 27.0643 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 63 U -0.2886 30.8396 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 64 j -0.7341 17.0247 54.8606 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 65 ( -1.6387 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 66 7 -0.5581 28.2160 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 67 § 0.1301 24.8433 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 68 $ -5.3940 25.4433 53.1617 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 69 € -1.2881 32.1765 44.4371 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 70 / -0.1379 23.5187 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 71 C -0.3092 31.8717 42.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 72 * -1.7042 22.8333 21.2012 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 73 ” -0.8440 22.7246 18.1765 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 74 ? -1.5994 20.4507 43.0334 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 75 { -0.6542 20.7988 54.4986 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 76 } -0.6085 21.3196 54.4986 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 77 , 33.1976 11.1481 19.3642 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 78 I -0.1609 7.2012 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 79 ° -1.2989 14.0000 14.0000 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 80 K -0.0432 32.2433 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 81 H 0.0251 31.2408 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 82 q 11.1700 28.4025 42.7197 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 83 & -1.2362 34.6136 43.0334 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 84 ’ -0.6016 9.9432 18.1765 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 85 [ -1.2339 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 86 - 21.0341 15.2185 6.7988 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 87 Y -0.0889 35.2012 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 88 Q -0.2969 42.4989 50.5382 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 89 " -1.2489 17.9605 12.4766 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 90 ! -1.0172 8.6050 43.0334 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 91 x 11.4170 32.1765 30.4371 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 92 ) -1.5013 13.3024 55.7172 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 93 = 14.5365 25.3777 18.1236 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 94 + 10.8211 25.9421 25.9421 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 95 X -0.2350 35.0816 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 96 » 16.0049 25.9777 18.8962 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 97 ' -0.7987 7.2012 12.4766 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 98 ¢ 11.2622 20.6804 30.3842 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 99 Z -0.1277 28.0000 41.8148 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 100 > 9.8497 23.0198 26.7286 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 101 ® 3.0131 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 102 © 3.0824 39.8458 39.8458 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 103 ] -1.4037 14.4025 55.1963 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 104 é -1.2334 29.6210 43.0334 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 105 z 11.3313 26.7815 30.4371 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 106 _ 45.5700 34.3975 5.9827 -Trebuchet_MS_Bold.ttf 107 ¥ 35.2012 41.8148 107 ¥ 0.0421 35.2012 41.8148 -Verdana.ttf 1 t 20.1669 41.8484 1 t 0.1896 20.1669 41.8484 -Verdana.ttf 1 t 20.1669 41.8484 2 h -3.5985 26.4669 44.3483 -Verdana.ttf 1 t 20.1669 41.8484 3 a 7.5609 26.7969 34.0188 -Verdana.ttf 1 t 20.1669 41.8484 4 n 7.9603 26.4669 32.8447 -Verdana.ttf 1 t 20.1669 41.8484 5 P -1.3390 27.8519 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 6 o 7.9334 29.3745 34.0188 -Verdana.ttf 1 t 20.1669 41.8484 7 e 7.8191 28.8152 34.0188 -Verdana.ttf 1 t 20.1669 41.8484 8 : 9.0927 6.6555 31.6705 -Verdana.ttf 1 t 20.1669 41.8484 9 r 8.9472 19.6817 31.6705 -Verdana.ttf 1 t 20.1669 41.8484 10 l -3.7610 5.3333 44.3483 -Verdana.ttf 1 t 20.1669 41.8484 11 i -1.3764 5.3333 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 12 1 -1.4119 22.9445 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 13 | -3.4966 5.2036 55.4929 -Verdana.ttf 1 t 20.1669 41.8484 14 N -1.5197 31.5514 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 15 f -3.7225 20.5259 44.3483 -Verdana.ttf 1 t 20.1669 41.8484 16 g 7.7749 28.2003 44.4964 -Verdana.ttf 1 t 20.1669 41.8484 17 d -3.7762 28.2003 45.5224 -Verdana.ttf 1 t 20.1669 41.8484 18 W -1.6427 52.3887 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 19 s 7.7898 25.0150 34.0188 -Verdana.ttf 1 t 20.1669 41.8484 20 c 7.7763 25.6820 34.0188 -Verdana.ttf 1 t 20.1669 41.8484 21 u 8.9548 26.4669 32.8447 -Verdana.ttf 1 t 20.1669 41.8484 22 3 -2.9292 28.2074 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 23 ~ 13.0810 37.0038 17.5224 -Verdana.ttf 1 t 20.1669 41.8484 24 # -1.6248 36.5186 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 25 O -2.7727 39.3996 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 26 ` -6.9256 11.8592 10.6850 -Verdana.ttf 1 t 20.1669 41.8484 27 @ -2.8965 48.3778 49.6815 -Verdana.ttf 1 t 20.1669 41.8484 28 F -1.3289 26.3478 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 29 S -2.7054 32.5147 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 30 p 7.3966 28.2003 44.4964 -Verdana.ttf 1 t 20.1669 41.8484 31 “ -3.9003 23.0072 16.1408 -Verdana.ttf 1 t 20.1669 41.8484 32 % -2.6539 54.3188 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 33 £ -2.6826 29.1741 43.3815 -Verdana.ttf 1 t 20.1669 41.8484 34 . 32.4342 6.6555 8.1886 -Verdana.ttf 1 t 20.1669 41.8484 35 2 -2.6389 28.3370 43.3815 -Verdana.ttf 1 t 20.1669 41.8484 36 5 -2.7340 27.5114 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 37 m 7.8891 46.3480 32.8447 -Verdana.ttf 1 t 20.1669 41.8484 38 V -1.7960 37.5109 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 39 6 -2.7072 29.6593 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 40 w 9.0066 42.9667 31.6705 -Verdana.ttf 1 t 20.1669 41.8484 41 T -1.3682 35.8297 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 42 M -1.4109 37.7217 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 43 G -2.8730 38.0483 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 44 b -3.7244 28.2003 45.5224 -Verdana.ttf 1 t 20.1669 41.8484 45 9 -2.7129 29.6593 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 46 ; 8.9408 12.1891 42.1191 -Verdana.ttf 1 t 20.1669 41.8484 47 D -1.8312 35.8587 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 48 L -1.3457 26.6777 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 49 y 9.1455 31.1449 43.3223 -Verdana.ttf 1 t 20.1669 41.8484 50 ‘ -3.7610 11.5036 16.1408 -Verdana.ttf 1 t 20.1669 41.8484 51 \ -3.6706 25.1446 53.0150 -Verdana.ttf 1 t 20.1669 41.8484 52 R -1.8392 34.9855 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 53 < 5.4795 32.8447 32.8447 -Verdana.ttf 1 t 20.1669 41.8484 54 4 -1.2905 32.2369 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 55 8 -2.7101 29.9590 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 56 0 -3.0033 28.9448 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 57 A -1.5465 37.5109 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 58 E -1.5930 27.8774 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 59 B -1.5758 32.0295 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 60 v 8.8707 31.1449 31.6705 -Verdana.ttf 1 t 20.1669 41.8484 61 k -3.6700 29.1741 44.3483 -Verdana.ttf 1 t 20.1669 41.8484 62 J -1.6162 20.1703 43.3815 -Verdana.ttf 1 t 20.1669 41.8484 63 U -1.2992 32.6187 43.3815 -Verdana.ttf 1 t 20.1669 41.8484 64 j -1.5432 16.4964 53.8592 -Verdana.ttf 1 t 20.1669 41.8484 65 ( -3.6573 17.3150 56.0000 -Verdana.ttf 1 t 20.1669 41.8484 66 7 -1.6220 29.1741 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 67 § -2.5354 27.0333 54.3965 -Verdana.ttf 1 t 20.1669 41.8484 68 $ -4.0855 28.8186 54.8039 -Verdana.ttf 1 t 20.1669 41.8484 69 € -2.9183 34.6555 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 70 / -3.6229 25.1446 53.0150 -Verdana.ttf 1 t 20.1669 41.8484 71 C -2.6434 35.1627 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 72 * -3.5510 27.3888 26.3188 -Verdana.ttf 1 t 20.1669 41.8484 73 ” -3.5133 23.0072 16.1408 -Verdana.ttf 1 t 20.1669 41.8484 74 ? -2.9226 23.9705 43.3815 -Verdana.ttf 1 t 20.1669 41.8484 75 { -4.1060 26.6962 55.4929 -Verdana.ttf 1 t 20.1669 41.8484 76 } -3.7657 26.6962 55.4929 -Verdana.ttf 1 t 20.1669 41.8484 77 , 32.4491 12.1891 18.6372 -Verdana.ttf 1 t 20.1669 41.8484 78 I -1.7388 16.4442 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 79 ° -2.8346 22.7964 22.7964 -Verdana.ttf 1 t 20.1669 41.8484 80 K -1.4989 33.3333 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 81 H -1.4275 32.7255 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 82 q 7.9200 28.2003 44.4964 -Verdana.ttf 1 t 20.1669 41.8484 83 & -2.7710 41.1629 44.5557 -Verdana.ttf 1 t 20.1669 41.8484 84 ’ -3.3409 11.5036 16.1408 -Verdana.ttf 1 t 20.1669 41.8484 85 [ -3.7497 15.1741 55.4929 -Verdana.ttf 1 t 20.1669 41.8484 86 - 19.2827 17.6705 4.8447 -Verdana.ttf 1 t 20.1669 41.8484 87 Y -1.3902 35.8297 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 88 Q -2.7340 40.5737 54.5262 -Verdana.ttf 1 t 20.1669 41.8484 89 " -3.5447 17.3150 16.3483 -Verdana.ttf 1 t 20.1669 41.8484 90 ! -1.6471 5.4814 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 91 x 8.6611 31.1449 31.6705 -Verdana.ttf 1 t 20.1669 41.8484 92 ) -3.5317 17.3150 56.0000 -Verdana.ttf 1 t 20.1669 41.8484 93 = 13.7244 33.8114 16.4964 -Verdana.ttf 1 t 20.1669 41.8484 94 + 4.8817 34.9855 34.9855 -Verdana.ttf 1 t 20.1669 41.8484 95 X -1.6739 35.9074 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 96 » 8.2278 28.0000 28.0000 -Verdana.ttf 1 t 20.1669 41.8484 97 ' -3.6801 6.1703 16.3483 -Verdana.ttf 1 t 20.1669 41.8484 98 ¢ -0.8139 27.2855 51.6115 -Verdana.ttf 1 t 20.1669 41.8484 99 Z -1.2487 33.2036 42.2074 -Verdana.ttf 1 t 20.1669 41.8484 100 > 5.4679 32.8447 32.8447 -Verdana.ttf 1 t 20.1669 41.8484 101 ® -2.5505 49.3445 49.3445 -Verdana.ttf 1 t 20.1669 41.8484 102 © -2.8759 49.3445 49.3445 -Verdana.ttf 1 t 20.1669 41.8484 103 ] -3.6301 15.1741 55.4929 -Verdana.ttf 1 t 20.1669 41.8484 104 é -6.9362 28.8152 48.8629 -Verdana.ttf 1 t 20.1669 41.8484 105 z 9.0418 25.5036 31.6705 -Verdana.ttf 1 t 20.1669 41.8484 106 _ 45.9774 37.0038 3.3150 -Verdana.ttf 1 t 20.1669 41.8484 107 ¥ -1.5533 31.1332 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 1 t 3.3427 20.1669 41.8484 -Verdana.ttf 2 h 26.4669 44.3483 2 h -0.0667 26.4669 44.3483 -Verdana.ttf 2 h 26.4669 44.3483 3 a 11.6604 26.7969 34.0188 -Verdana.ttf 2 h 26.4669 44.3483 4 n 11.4963 26.4669 32.8447 -Verdana.ttf 2 h 26.4669 44.3483 5 P 1.8732 27.8519 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 6 o 11.8496 29.3745 34.0188 -Verdana.ttf 2 h 26.4669 44.3483 7 e 11.6084 28.8152 34.0188 -Verdana.ttf 2 h 26.4669 44.3483 8 : 13.0948 6.6555 31.6705 -Verdana.ttf 2 h 26.4669 44.3483 9 r 12.7056 19.6817 31.6705 -Verdana.ttf 2 h 26.4669 44.3483 10 l -0.1259 5.3333 44.3483 -Verdana.ttf 2 h 26.4669 44.3483 11 i 1.9577 5.3333 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 12 1 2.2588 22.9445 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 13 | 0.2941 5.2036 55.4929 -Verdana.ttf 2 h 26.4669 44.3483 14 N 1.9457 31.5514 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 15 f 0.4186 20.5259 44.3483 -Verdana.ttf 2 h 26.4669 44.3483 16 g 11.6100 28.2003 44.4964 -Verdana.ttf 2 h 26.4669 44.3483 17 d -0.2130 28.2003 45.5224 -Verdana.ttf 2 h 26.4669 44.3483 18 W 2.1063 52.3887 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 19 s 11.5493 25.0150 34.0188 -Verdana.ttf 2 h 26.4669 44.3483 20 c 11.4267 25.6820 34.0188 -Verdana.ttf 2 h 26.4669 44.3483 21 u 13.1169 26.4669 32.8447 -Verdana.ttf 2 h 26.4669 44.3483 22 3 0.9235 28.2074 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 23 ~ 17.0693 37.0038 17.5224 -Verdana.ttf 2 h 26.4669 44.3483 24 # 2.3023 36.5186 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 25 O 0.8161 39.3996 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 26 ` -3.3039 11.8592 10.6850 -Verdana.ttf 2 h 26.4669 44.3483 27 @ 1.0509 48.3778 49.6815 -Verdana.ttf 2 h 26.4669 44.3483 28 F 1.9466 26.3478 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 29 S 0.9815 32.5147 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 30 p 11.5406 28.2003 44.4964 -Verdana.ttf 2 h 26.4669 44.3483 31 “ 0.1868 23.0072 16.1408 -Verdana.ttf 2 h 26.4669 44.3483 32 % 1.2506 54.3188 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 33 £ 1.0571 29.1741 43.3815 -Verdana.ttf 2 h 26.4669 44.3483 34 . 36.3600 6.6555 8.1886 -Verdana.ttf 2 h 26.4669 44.3483 35 2 0.6486 28.3370 43.3815 -Verdana.ttf 2 h 26.4669 44.3483 36 5 0.9561 27.5114 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 37 m 11.4946 46.3480 32.8447 -Verdana.ttf 2 h 26.4669 44.3483 38 V 2.1408 37.5109 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 39 6 0.9628 29.6593 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 40 w 12.4384 42.9667 31.6705 -Verdana.ttf 2 h 26.4669 44.3483 41 T 2.1880 35.8297 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 42 M 2.0266 37.7217 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 43 G 0.7443 38.0483 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 44 b 0.1215 28.2003 45.5224 -Verdana.ttf 2 h 26.4669 44.3483 45 9 1.1436 29.6593 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 46 ; 12.3774 12.1891 42.1191 -Verdana.ttf 2 h 26.4669 44.3483 47 D 2.2696 35.8587 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 48 L 1.9014 26.6777 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 49 y 13.0397 31.1449 43.3223 -Verdana.ttf 2 h 26.4669 44.3483 50 ‘ 0.2738 11.5036 16.1408 -Verdana.ttf 2 h 26.4669 44.3483 51 \ 0.1639 25.1446 53.0150 -Verdana.ttf 2 h 26.4669 44.3483 52 R 1.8731 34.9855 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 53 < 9.2856 32.8447 32.8447 -Verdana.ttf 2 h 26.4669 44.3483 54 4 2.4067 32.2369 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 55 8 0.7744 29.9590 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 56 0 1.4354 28.9448 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 57 A 1.7726 37.5109 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 58 E 1.8586 27.8774 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 59 B 2.0486 32.0295 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 60 v 12.6880 31.1449 31.6705 -Verdana.ttf 2 h 26.4669 44.3483 61 k 0.0899 29.1741 44.3483 -Verdana.ttf 2 h 26.4669 44.3483 62 J 1.8899 20.1703 43.3815 -Verdana.ttf 2 h 26.4669 44.3483 63 U 2.1380 32.6187 43.3815 -Verdana.ttf 2 h 26.4669 44.3483 64 j 1.9084 16.4964 53.8592 -Verdana.ttf 2 h 26.4669 44.3483 65 ( 0.2173 17.3150 56.0000 -Verdana.ttf 2 h 26.4669 44.3483 66 7 2.4763 29.1741 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 67 § 0.8260 27.0333 54.3965 -Verdana.ttf 2 h 26.4669 44.3483 68 $ -0.3968 28.8186 54.8039 -Verdana.ttf 2 h 26.4669 44.3483 69 € 1.0700 34.6555 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 70 / -0.0138 25.1446 53.0150 -Verdana.ttf 2 h 26.4669 44.3483 71 C 0.7668 35.1627 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 72 * 0.0432 27.3888 26.3188 -Verdana.ttf 2 h 26.4669 44.3483 73 ” 0.0095 23.0072 16.1408 -Verdana.ttf 2 h 26.4669 44.3483 74 ? 0.6871 23.9705 43.3815 -Verdana.ttf 2 h 26.4669 44.3483 75 { -0.2281 26.6962 55.4929 -Verdana.ttf 2 h 26.4669 44.3483 76 } 0.1187 26.6962 55.4929 -Verdana.ttf 2 h 26.4669 44.3483 77 , 36.3355 12.1891 18.6372 -Verdana.ttf 2 h 26.4669 44.3483 78 I 1.9649 16.4442 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 79 ° 0.7461 22.7964 22.7964 -Verdana.ttf 2 h 26.4669 44.3483 80 K 2.3485 33.3333 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 81 H 2.2279 32.7255 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 82 q 11.4579 28.2003 44.4964 -Verdana.ttf 2 h 26.4669 44.3483 83 & 0.9146 41.1629 44.5557 -Verdana.ttf 2 h 26.4669 44.3483 84 ’ 0.3148 11.5036 16.1408 -Verdana.ttf 2 h 26.4669 44.3483 85 [ -0.0301 15.1741 55.4929 -Verdana.ttf 2 h 26.4669 44.3483 86 - 22.6332 17.6705 4.8447 -Verdana.ttf 2 h 26.4669 44.3483 87 Y 2.2933 35.8297 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 88 Q 1.1075 40.5737 54.5262 -Verdana.ttf 2 h 26.4669 44.3483 89 " 0.0917 17.3150 16.3483 -Verdana.ttf 2 h 26.4669 44.3483 90 ! 2.1509 5.4814 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 91 x 12.7666 31.1449 31.6705 -Verdana.ttf 2 h 26.4669 44.3483 92 ) -0.1173 17.3150 56.0000 -Verdana.ttf 2 h 26.4669 44.3483 93 = 18.0044 33.8114 16.4964 -Verdana.ttf 2 h 26.4669 44.3483 94 + 8.4149 34.9855 34.9855 -Verdana.ttf 2 h 26.4669 44.3483 95 X 1.9846 35.9074 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 96 » 11.6915 28.0000 28.0000 -Verdana.ttf 2 h 26.4669 44.3483 97 ' -0.2677 6.1703 16.3483 -Verdana.ttf 2 h 26.4669 44.3483 98 ¢ 2.4943 27.2855 51.6115 -Verdana.ttf 2 h 26.4669 44.3483 99 Z 2.2307 33.2036 42.2074 -Verdana.ttf 2 h 26.4669 44.3483 100 > 8.9848 32.8447 32.8447 -Verdana.ttf 2 h 26.4669 44.3483 101 ® 1.0969 49.3445 49.3445 -Verdana.ttf 2 h 26.4669 44.3483 102 © 0.9566 49.3445 49.3445 -Verdana.ttf 2 h 26.4669 44.3483 103 ] 0.1375 15.1741 55.4929 -Verdana.ttf 2 h 26.4669 44.3483 104 é -3.3776 28.8152 48.8629 -Verdana.ttf 2 h 26.4669 44.3483 105 z 12.6859 25.5036 31.6705 -Verdana.ttf 2 h 26.4669 44.3483 106 _ 49.5523 37.0038 3.3150 -Verdana.ttf 2 h 26.4669 44.3483 107 ¥ 2.1038 31.1332 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 1 t -7.8773 20.1669 41.8484 -Verdana.ttf 3 a 26.7969 34.0188 2 h -11.2378 26.4669 44.3483 -Verdana.ttf 3 a 26.7969 34.0188 3 a -0.2571 26.7969 34.0188 -Verdana.ttf 3 a 26.7969 34.0188 4 n 0.3413 26.4669 32.8447 -Verdana.ttf 3 a 26.7969 34.0188 5 P -9.6998 27.8519 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 6 o -0.2432 29.3745 34.0188 -Verdana.ttf 3 a 26.7969 34.0188 7 e -0.0547 28.8152 34.0188 -Verdana.ttf 3 a 26.7969 34.0188 8 : 1.2629 6.6555 31.6705 -Verdana.ttf 3 a 26.7969 34.0188 9 r 1.3001 19.6817 31.6705 -Verdana.ttf 3 a 26.7969 34.0188 10 l -11.4851 5.3333 44.3483 -Verdana.ttf 3 a 26.7969 34.0188 11 i -9.4598 5.3333 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 12 1 -9.5758 22.9445 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 13 | -11.3099 5.2036 55.4929 -Verdana.ttf 3 a 26.7969 34.0188 14 N -8.9496 31.5514 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 15 f -11.3230 20.5259 44.3483 -Verdana.ttf 3 a 26.7969 34.0188 16 g 0.2460 28.2003 44.4964 -Verdana.ttf 3 a 26.7969 34.0188 17 d -11.4858 28.2003 45.5224 -Verdana.ttf 3 a 26.7969 34.0188 18 W -9.6087 52.3887 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 19 s -0.1926 25.0150 34.0188 -Verdana.ttf 3 a 26.7969 34.0188 20 c 0.0094 25.6820 34.0188 -Verdana.ttf 3 a 26.7969 34.0188 21 u 1.2572 26.4669 32.8447 -Verdana.ttf 3 a 26.7969 34.0188 22 3 -10.6123 28.2074 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 23 ~ 5.5484 37.0038 17.5224 -Verdana.ttf 3 a 26.7969 34.0188 24 # -9.4291 36.5186 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 25 O -10.1890 39.3996 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 26 ` -14.7020 11.8592 10.6850 -Verdana.ttf 3 a 26.7969 34.0188 27 @ -10.3229 48.3778 49.6815 -Verdana.ttf 3 a 26.7969 34.0188 28 F -9.5536 26.3478 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 29 S -10.5620 32.5147 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 30 p -0.0870 28.2003 44.4964 -Verdana.ttf 3 a 26.7969 34.0188 31 “ -11.5170 23.0072 16.1408 -Verdana.ttf 3 a 26.7969 34.0188 32 % -10.4585 54.3188 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 33 £ -10.5066 29.1741 43.3815 -Verdana.ttf 3 a 26.7969 34.0188 34 . 24.9516 6.6555 8.1886 -Verdana.ttf 3 a 26.7969 34.0188 35 2 -10.4560 28.3370 43.3815 -Verdana.ttf 3 a 26.7969 34.0188 36 5 -10.6076 27.5114 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 37 m -0.0229 46.3480 32.8447 -Verdana.ttf 3 a 26.7969 34.0188 38 V -9.4570 37.5109 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 39 6 -10.4376 29.6593 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 40 w 1.2183 42.9667 31.6705 -Verdana.ttf 3 a 26.7969 34.0188 41 T -9.4905 35.8297 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 42 M -9.4560 37.7217 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 43 G -10.4235 38.0483 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 44 b -11.5467 28.2003 45.5224 -Verdana.ttf 3 a 26.7969 34.0188 45 9 -10.5840 29.6593 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 46 ; 1.3617 12.1891 42.1191 -Verdana.ttf 3 a 26.7969 34.0188 47 D -9.3715 35.8587 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 48 L -9.2753 26.6777 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 49 y 1.3813 31.1449 43.3223 -Verdana.ttf 3 a 26.7969 34.0188 50 ‘ -11.4046 11.5036 16.1408 -Verdana.ttf 3 a 26.7969 34.0188 51 \ -11.7564 25.1446 53.0150 -Verdana.ttf 3 a 26.7969 34.0188 52 R -9.4099 34.9855 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 53 < -2.1742 32.8447 32.8447 -Verdana.ttf 3 a 26.7969 34.0188 54 4 -9.3921 32.2369 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 55 8 -10.4697 29.9590 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 56 0 -10.5840 28.9448 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 57 A -9.4031 37.5109 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 58 E -9.5124 27.8774 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 59 B -9.8400 32.0295 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 60 v 1.1068 31.1449 31.6705 -Verdana.ttf 3 a 26.7969 34.0188 61 k -11.5986 29.1741 44.3483 -Verdana.ttf 3 a 26.7969 34.0188 62 J -8.9547 20.1703 43.3815 -Verdana.ttf 3 a 26.7969 34.0188 63 U -9.3925 32.6187 43.3815 -Verdana.ttf 3 a 26.7969 34.0188 64 j -9.1878 16.4964 53.8592 -Verdana.ttf 3 a 26.7969 34.0188 65 ( -11.2730 17.3150 56.0000 -Verdana.ttf 3 a 26.7969 34.0188 66 7 -9.3762 29.1741 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 67 § -10.5151 27.0333 54.3965 -Verdana.ttf 3 a 26.7969 34.0188 68 $ -11.7479 28.8186 54.8039 -Verdana.ttf 3 a 26.7969 34.0188 69 € -10.7551 34.6555 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 70 / -11.5406 25.1446 53.0150 -Verdana.ttf 3 a 26.7969 34.0188 71 C -10.4465 35.1627 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 72 * -11.4099 27.3888 26.3188 -Verdana.ttf 3 a 26.7969 34.0188 73 ” -11.5799 23.0072 16.1408 -Verdana.ttf 3 a 26.7969 34.0188 74 ? -10.7912 23.9705 43.3815 -Verdana.ttf 3 a 26.7969 34.0188 75 { -11.3633 26.6962 55.4929 -Verdana.ttf 3 a 26.7969 34.0188 76 } -11.6031 26.6962 55.4929 -Verdana.ttf 3 a 26.7969 34.0188 77 , 24.7210 12.1891 18.6372 -Verdana.ttf 3 a 26.7969 34.0188 78 I -8.9797 16.4442 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 79 ° -10.4911 22.7964 22.7964 -Verdana.ttf 3 a 26.7969 34.0188 80 K -9.2705 33.3333 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 81 H -9.4712 32.7255 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 82 q -0.1475 28.2003 44.4964 -Verdana.ttf 3 a 26.7969 34.0188 83 & -10.6507 41.1629 44.5557 -Verdana.ttf 3 a 26.7969 34.0188 84 ’ -11.3282 11.5036 16.1408 -Verdana.ttf 3 a 26.7969 34.0188 85 [ -11.6411 15.1741 55.4929 -Verdana.ttf 3 a 26.7969 34.0188 86 - 11.8281 17.6705 4.8447 -Verdana.ttf 3 a 26.7969 34.0188 87 Y -9.0918 35.8297 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 88 Q -10.5205 40.5737 54.5262 -Verdana.ttf 3 a 26.7969 34.0188 89 " -11.6291 17.3150 16.3483 -Verdana.ttf 3 a 26.7969 34.0188 90 ! -9.0936 5.4814 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 91 x 1.0733 31.1449 31.6705 -Verdana.ttf 3 a 26.7969 34.0188 92 ) -11.6531 17.3150 56.0000 -Verdana.ttf 3 a 26.7969 34.0188 93 = 6.2142 33.8114 16.4964 -Verdana.ttf 3 a 26.7969 34.0188 94 + -3.2061 34.9855 34.9855 -Verdana.ttf 3 a 26.7969 34.0188 95 X -9.5767 35.9074 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 96 » 0.7892 28.0000 28.0000 -Verdana.ttf 3 a 26.7969 34.0188 97 ' -11.7213 6.1703 16.3483 -Verdana.ttf 3 a 26.7969 34.0188 98 ¢ -8.8570 27.2855 51.6115 -Verdana.ttf 3 a 26.7969 34.0188 99 Z -9.4769 33.2036 42.2074 -Verdana.ttf 3 a 26.7969 34.0188 100 > -2.1763 32.8447 32.8447 -Verdana.ttf 3 a 26.7969 34.0188 101 ® -10.6377 49.3445 49.3445 -Verdana.ttf 3 a 26.7969 34.0188 102 © -10.4951 49.3445 49.3445 -Verdana.ttf 3 a 26.7969 34.0188 103 ] -11.6657 15.1741 55.4929 -Verdana.ttf 3 a 26.7969 34.0188 104 é -14.8144 28.8152 48.8629 -Verdana.ttf 3 a 26.7969 34.0188 105 z 1.4049 25.5036 31.6705 -Verdana.ttf 3 a 26.7969 34.0188 106 _ 38.2242 37.0038 3.3150 -Verdana.ttf 3 a 26.7969 34.0188 107 ¥ -9.1483 31.1332 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 1 t -7.7190 20.1669 41.8484 -Verdana.ttf 4 n 26.4669 32.8447 2 h -11.7046 26.4669 44.3483 -Verdana.ttf 4 n 26.4669 32.8447 3 a -0.0355 26.7969 34.0188 -Verdana.ttf 4 n 26.4669 32.8447 4 n -0.2672 26.4669 32.8447 -Verdana.ttf 4 n 26.4669 32.8447 5 P -9.1888 27.8519 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 6 o -0.0711 29.3745 34.0188 -Verdana.ttf 4 n 26.4669 32.8447 7 e -0.2038 28.8152 34.0188 -Verdana.ttf 4 n 26.4669 32.8447 8 : 1.0765 6.6555 31.6705 -Verdana.ttf 4 n 26.4669 32.8447 9 r 1.4769 19.6817 31.6705 -Verdana.ttf 4 n 26.4669 32.8447 10 l -11.3999 5.3333 44.3483 -Verdana.ttf 4 n 26.4669 32.8447 11 i -9.1325 5.3333 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 12 1 -9.5579 22.9445 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 13 | -10.9293 5.2036 55.4929 -Verdana.ttf 4 n 26.4669 32.8447 14 N -9.5286 31.5514 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 15 f -11.5973 20.5259 44.3483 -Verdana.ttf 4 n 26.4669 32.8447 16 g 0.1954 28.2003 44.4964 -Verdana.ttf 4 n 26.4669 32.8447 17 d -11.3835 28.2003 45.5224 -Verdana.ttf 4 n 26.4669 32.8447 18 W -9.2724 52.3887 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 19 s -0.0385 25.0150 34.0188 -Verdana.ttf 4 n 26.4669 32.8447 20 c -0.1389 25.6820 34.0188 -Verdana.ttf 4 n 26.4669 32.8447 21 u 1.2300 26.4669 32.8447 -Verdana.ttf 4 n 26.4669 32.8447 22 3 -10.6623 28.2074 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 23 ~ 5.6978 37.0038 17.5224 -Verdana.ttf 4 n 26.4669 32.8447 24 # -8.9768 36.5186 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 25 O -11.0603 39.3996 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 26 ` -14.7038 11.8592 10.6850 -Verdana.ttf 4 n 26.4669 32.8447 27 @ -10.5840 48.3778 49.6815 -Verdana.ttf 4 n 26.4669 32.8447 28 F -9.4316 26.3478 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 29 S -10.5354 32.5147 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 30 p 0.0162 28.2003 44.4964 -Verdana.ttf 4 n 26.4669 32.8447 31 “ -11.4604 23.0072 16.1408 -Verdana.ttf 4 n 26.4669 32.8447 32 % -10.4332 54.3188 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 33 £ -10.5024 29.1741 43.3815 -Verdana.ttf 4 n 26.4669 32.8447 34 . 24.7301 6.6555 8.1886 -Verdana.ttf 4 n 26.4669 32.8447 35 2 -10.4092 28.3370 43.3815 -Verdana.ttf 4 n 26.4669 32.8447 36 5 -10.4527 27.5114 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 37 m -0.1298 46.3480 32.8447 -Verdana.ttf 4 n 26.4669 32.8447 38 V -8.9524 37.5109 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 39 6 -10.4234 29.6593 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 40 w 1.2246 42.9667 31.6705 -Verdana.ttf 4 n 26.4669 32.8447 41 T -8.9653 35.8297 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 42 M -9.3628 37.7217 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 43 G -10.7259 38.0483 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 44 b -11.3042 28.2003 45.5224 -Verdana.ttf 4 n 26.4669 32.8447 45 9 -10.7055 29.6593 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 46 ; 1.0958 12.1891 42.1191 -Verdana.ttf 4 n 26.4669 32.8447 47 D -9.4749 35.8587 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 48 L -9.4723 26.6777 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 49 y 1.1139 31.1449 43.3223 -Verdana.ttf 4 n 26.4669 32.8447 50 ‘ -11.6425 11.5036 16.1408 -Verdana.ttf 4 n 26.4669 32.8447 51 \ -11.7476 25.1446 53.0150 -Verdana.ttf 4 n 26.4669 32.8447 52 R -9.4916 34.9855 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 53 < -2.1296 32.8447 32.8447 -Verdana.ttf 4 n 26.4669 32.8447 54 4 -9.4232 32.2369 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 55 8 -10.6859 29.9590 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 56 0 -9.9675 28.9448 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 57 A -9.3301 37.5109 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 58 E -9.1402 27.8774 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 59 B -9.2978 32.0295 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 60 v 1.1055 31.1449 31.6705 -Verdana.ttf 4 n 26.4669 32.8447 61 k -11.5315 29.1741 44.3483 -Verdana.ttf 4 n 26.4669 32.8447 62 J -9.4632 20.1703 43.3815 -Verdana.ttf 4 n 26.4669 32.8447 63 U -9.5357 32.6187 43.3815 -Verdana.ttf 4 n 26.4669 32.8447 64 j -9.3098 16.4964 53.8592 -Verdana.ttf 4 n 26.4669 32.8447 65 ( -11.5939 17.3150 56.0000 -Verdana.ttf 4 n 26.4669 32.8447 66 7 -9.4335 29.1741 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 67 § -10.5322 27.0333 54.3965 -Verdana.ttf 4 n 26.4669 32.8447 68 $ -11.9057 28.8186 54.8039 -Verdana.ttf 4 n 26.4669 32.8447 69 € -10.3149 34.6555 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 70 / -11.7013 25.1446 53.0150 -Verdana.ttf 4 n 26.4669 32.8447 71 C -10.4985 35.1627 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 72 * -11.5857 27.3888 26.3188 -Verdana.ttf 4 n 26.4669 32.8447 73 ” -11.6824 23.0072 16.1408 -Verdana.ttf 4 n 26.4669 32.8447 74 ? -10.7614 23.9705 43.3815 -Verdana.ttf 4 n 26.4669 32.8447 75 { -11.4133 26.6962 55.4929 -Verdana.ttf 4 n 26.4669 32.8447 76 } -11.6275 26.6962 55.4929 -Verdana.ttf 4 n 26.4669 32.8447 77 , 24.6945 12.1891 18.6372 -Verdana.ttf 4 n 26.4669 32.8447 78 I -9.4564 16.4442 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 79 ° -10.1817 22.7964 22.7964 -Verdana.ttf 4 n 26.4669 32.8447 80 K -9.1382 33.3333 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 81 H -8.9163 32.7255 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 82 q 0.0936 28.2003 44.4964 -Verdana.ttf 4 n 26.4669 32.8447 83 & -10.5197 41.1629 44.5557 -Verdana.ttf 4 n 26.4669 32.8447 84 ’ -11.5939 11.5036 16.1408 -Verdana.ttf 4 n 26.4669 32.8447 85 [ -11.4125 15.1741 55.4929 -Verdana.ttf 4 n 26.4669 32.8447 86 - 11.5405 17.6705 4.8447 -Verdana.ttf 4 n 26.4669 32.8447 87 Y -9.4244 35.8297 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 88 Q -10.6167 40.5737 54.5262 -Verdana.ttf 4 n 26.4669 32.8447 89 " -11.9371 17.3150 16.3483 -Verdana.ttf 4 n 26.4669 32.8447 90 ! -9.3959 5.4814 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 91 x 0.9564 31.1449 31.6705 -Verdana.ttf 4 n 26.4669 32.8447 92 ) -11.7924 17.3150 56.0000 -Verdana.ttf 4 n 26.4669 32.8447 93 = 5.9183 33.8114 16.4964 -Verdana.ttf 4 n 26.4669 32.8447 94 + -2.7274 34.9855 34.9855 -Verdana.ttf 4 n 26.4669 32.8447 95 X -9.6775 35.9074 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 96 » 0.2607 28.0000 28.0000 -Verdana.ttf 4 n 26.4669 32.8447 97 ' -11.6871 6.1703 16.3483 -Verdana.ttf 4 n 26.4669 32.8447 98 ¢ -9.0608 27.2855 51.6115 -Verdana.ttf 4 n 26.4669 32.8447 99 Z -9.4488 33.2036 42.2074 -Verdana.ttf 4 n 26.4669 32.8447 100 > -2.4871 32.8447 32.8447 -Verdana.ttf 4 n 26.4669 32.8447 101 ® -10.5387 49.3445 49.3445 -Verdana.ttf 4 n 26.4669 32.8447 102 © -10.5238 49.3445 49.3445 -Verdana.ttf 4 n 26.4669 32.8447 103 ] -11.3100 15.1741 55.4929 -Verdana.ttf 4 n 26.4669 32.8447 104 é -14.9283 28.8152 48.8629 -Verdana.ttf 4 n 26.4669 32.8447 105 z 1.3159 25.5036 31.6705 -Verdana.ttf 4 n 26.4669 32.8447 106 _ 38.2151 37.0038 3.3150 -Verdana.ttf 4 n 26.4669 32.8447 107 ¥ -9.2448 31.1332 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 1 t 1.6706 20.1669 41.8484 -Verdana.ttf 5 P 27.8519 42.2074 2 h -2.0577 26.4669 44.3483 -Verdana.ttf 5 P 27.8519 42.2074 3 a 9.3661 26.7969 34.0188 -Verdana.ttf 5 P 27.8519 42.2074 4 n 9.1854 26.4669 32.8447 -Verdana.ttf 5 P 27.8519 42.2074 5 P -0.1269 27.8519 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 6 o 9.4031 29.3745 34.0188 -Verdana.ttf 5 P 27.8519 42.2074 7 e 9.2863 28.8152 34.0188 -Verdana.ttf 5 P 27.8519 42.2074 8 : 10.5484 6.6555 31.6705 -Verdana.ttf 5 P 27.8519 42.2074 9 r 10.4571 19.6817 31.6705 -Verdana.ttf 5 P 27.8519 42.2074 10 l -2.4289 5.3333 44.3483 -Verdana.ttf 5 P 27.8519 42.2074 11 i -0.1760 5.3333 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 12 1 -0.1705 22.9445 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 13 | -2.2755 5.2036 55.4929 -Verdana.ttf 5 P 27.8519 42.2074 14 N 0.2495 31.5514 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 15 f -2.1307 20.5259 44.3483 -Verdana.ttf 5 P 27.8519 42.2074 16 g 9.3790 28.2003 44.4964 -Verdana.ttf 5 P 27.8519 42.2074 17 d -2.1913 28.2003 45.5224 -Verdana.ttf 5 P 27.8519 42.2074 18 W 0.1400 52.3887 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 19 s 9.2844 25.0150 34.0188 -Verdana.ttf 5 P 27.8519 42.2074 20 c 9.2685 25.6820 34.0188 -Verdana.ttf 5 P 27.8519 42.2074 21 u 10.4013 26.4669 32.8447 -Verdana.ttf 5 P 27.8519 42.2074 22 3 -0.9097 28.2074 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 23 ~ 14.6645 37.0038 17.5224 -Verdana.ttf 5 P 27.8519 42.2074 24 # -0.1955 36.5186 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 25 O -1.3914 39.3996 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 26 ` -5.4016 11.8592 10.6850 -Verdana.ttf 5 P 27.8519 42.2074 27 @ -1.0097 48.3778 49.6815 -Verdana.ttf 5 P 27.8519 42.2074 28 F 0.0148 26.3478 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 29 S -1.1218 32.5147 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 30 p 9.5430 28.2003 44.4964 -Verdana.ttf 5 P 27.8519 42.2074 31 “ -2.1307 23.0072 16.1408 -Verdana.ttf 5 P 27.8519 42.2074 32 % -1.2318 54.3188 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 33 £ -1.3423 29.1741 43.3815 -Verdana.ttf 5 P 27.8519 42.2074 34 . 34.0726 6.6555 8.1886 -Verdana.ttf 5 P 27.8519 42.2074 35 2 -1.2213 28.3370 43.3815 -Verdana.ttf 5 P 27.8519 42.2074 36 5 -1.3914 27.5114 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 37 m 9.3022 46.3480 32.8447 -Verdana.ttf 5 P 27.8519 42.2074 38 V -0.0101 37.5109 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 39 6 -1.1588 29.6593 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 40 w 10.5768 42.9667 31.6705 -Verdana.ttf 5 P 27.8519 42.2074 41 T -0.0769 35.8297 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 42 M 0.2542 37.7217 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 43 G -1.1930 38.0483 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 44 b -1.9663 28.2003 45.5224 -Verdana.ttf 5 P 27.8519 42.2074 45 9 -0.8897 29.6593 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 46 ; 10.5038 12.1891 42.1191 -Verdana.ttf 5 P 27.8519 42.2074 47 D -0.1687 35.8587 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 48 L 0.0399 26.6777 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 49 y 10.5167 31.1449 43.3223 -Verdana.ttf 5 P 27.8519 42.2074 50 ‘ -2.2206 11.5036 16.1408 -Verdana.ttf 5 P 27.8519 42.2074 51 \ -1.9217 25.1446 53.0150 -Verdana.ttf 5 P 27.8519 42.2074 52 R 0.2043 34.9855 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 53 < 6.8607 32.8447 32.8447 -Verdana.ttf 5 P 27.8519 42.2074 54 4 -0.0903 32.2369 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 55 8 -1.0766 29.9590 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 56 0 -1.3341 28.9448 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 57 A -0.1220 37.5109 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 58 E 0.0500 27.8774 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 59 B 0.0664 32.0295 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 60 v 10.3419 31.1449 31.6705 -Verdana.ttf 5 P 27.8519 42.2074 61 k -2.3970 29.1741 44.3483 -Verdana.ttf 5 P 27.8519 42.2074 62 J -0.1534 20.1703 43.3815 -Verdana.ttf 5 P 27.8519 42.2074 63 U 0.1254 32.6187 43.3815 -Verdana.ttf 5 P 27.8519 42.2074 64 j 0.0370 16.4964 53.8592 -Verdana.ttf 5 P 27.8519 42.2074 65 ( -2.1941 17.3150 56.0000 -Verdana.ttf 5 P 27.8519 42.2074 66 7 0.0225 29.1741 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 67 § -0.9954 27.0333 54.3965 -Verdana.ttf 5 P 27.8519 42.2074 68 $ -2.4588 28.8186 54.8039 -Verdana.ttf 5 P 27.8519 42.2074 69 € -1.6004 34.6555 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 70 / -2.1408 25.1446 53.0150 -Verdana.ttf 5 P 27.8519 42.2074 71 C -1.2322 35.1627 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 72 * -1.9668 27.3888 26.3188 -Verdana.ttf 5 P 27.8519 42.2074 73 ” -1.8731 23.0072 16.1408 -Verdana.ttf 5 P 27.8519 42.2074 74 ? -1.2616 23.9705 43.3815 -Verdana.ttf 5 P 27.8519 42.2074 75 { -1.8703 26.6962 55.4929 -Verdana.ttf 5 P 27.8519 42.2074 76 } -2.1286 26.6962 55.4929 -Verdana.ttf 5 P 27.8519 42.2074 77 , 34.0952 12.1891 18.6372 -Verdana.ttf 5 P 27.8519 42.2074 78 I 0.1255 16.4442 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 79 ° -1.2010 22.7964 22.7964 -Verdana.ttf 5 P 27.8519 42.2074 80 K -0.0500 33.3333 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 81 H 0.1586 32.7255 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 82 q 9.5296 28.2003 44.4964 -Verdana.ttf 5 P 27.8519 42.2074 83 & -1.1179 41.1629 44.5557 -Verdana.ttf 5 P 27.8519 42.2074 84 ’ -1.9970 11.5036 16.1408 -Verdana.ttf 5 P 27.8519 42.2074 85 [ -2.3229 15.1741 55.4929 -Verdana.ttf 5 P 27.8519 42.2074 86 - 20.9028 17.6705 4.8447 -Verdana.ttf 5 P 27.8519 42.2074 87 Y 0.1720 35.8297 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 88 Q -1.2750 40.5737 54.5262 -Verdana.ttf 5 P 27.8519 42.2074 89 " -1.7894 17.3150 16.3483 -Verdana.ttf 5 P 27.8519 42.2074 90 ! -0.0399 5.4814 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 91 x 10.5174 31.1449 31.6705 -Verdana.ttf 5 P 27.8519 42.2074 92 ) -2.3019 17.3150 56.0000 -Verdana.ttf 5 P 27.8519 42.2074 93 = 15.2173 33.8114 16.4964 -Verdana.ttf 5 P 27.8519 42.2074 94 + 6.2461 34.9855 34.9855 -Verdana.ttf 5 P 27.8519 42.2074 95 X -0.1360 35.9074 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 96 » 9.5774 28.0000 28.0000 -Verdana.ttf 5 P 27.8519 42.2074 97 ' -2.3509 6.1703 16.3483 -Verdana.ttf 5 P 27.8519 42.2074 98 ¢ 0.6904 27.2855 51.6115 -Verdana.ttf 5 P 27.8519 42.2074 99 Z 0.0856 33.2036 42.2074 -Verdana.ttf 5 P 27.8519 42.2074 100 > 7.0876 32.8447 32.8447 -Verdana.ttf 5 P 27.8519 42.2074 101 ® -1.1353 49.3445 49.3445 -Verdana.ttf 5 P 27.8519 42.2074 102 © -1.0688 49.3445 49.3445 -Verdana.ttf 5 P 27.8519 42.2074 103 ] -2.1422 15.1741 55.4929 -Verdana.ttf 5 P 27.8519 42.2074 104 é -5.5246 28.8152 48.8629 -Verdana.ttf 5 P 27.8519 42.2074 105 z 10.4538 25.5036 31.6705 -Verdana.ttf 5 P 27.8519 42.2074 106 _ 47.1640 37.0038 3.3150 -Verdana.ttf 5 P 27.8519 42.2074 107 ¥ -0.0769 31.1332 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 1 t -7.6413 20.1669 41.8484 -Verdana.ttf 6 o 29.3745 34.0188 2 h -11.5831 26.4669 44.3483 -Verdana.ttf 6 o 29.3745 34.0188 3 a 0.1241 26.7969 34.0188 -Verdana.ttf 6 o 29.3745 34.0188 4 n 0.2484 26.4669 32.8447 -Verdana.ttf 6 o 29.3745 34.0188 5 P -9.4516 27.8519 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 6 o -0.2215 29.3745 34.0188 -Verdana.ttf 6 o 29.3745 34.0188 7 e -0.4070 28.8152 34.0188 -Verdana.ttf 6 o 29.3745 34.0188 8 : 1.2376 6.6555 31.6705 -Verdana.ttf 6 o 29.3745 34.0188 9 r 1.2746 19.6817 31.6705 -Verdana.ttf 6 o 29.3745 34.0188 10 l -11.3767 5.3333 44.3483 -Verdana.ttf 6 o 29.3745 34.0188 11 i -9.3661 5.3333 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 12 1 -9.6511 22.9445 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 13 | -11.2446 5.2036 55.4929 -Verdana.ttf 6 o 29.3745 34.0188 14 N -9.3736 31.5514 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 15 f -11.6871 20.5259 44.3483 -Verdana.ttf 6 o 29.3745 34.0188 16 g 0.0831 28.2003 44.4964 -Verdana.ttf 6 o 29.3745 34.0188 17 d -11.0825 28.2003 45.5224 -Verdana.ttf 6 o 29.3745 34.0188 18 W -9.5671 52.3887 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 19 s -0.0798 25.0150 34.0188 -Verdana.ttf 6 o 29.3745 34.0188 20 c -0.0101 25.6820 34.0188 -Verdana.ttf 6 o 29.3745 34.0188 21 u 1.0650 26.4669 32.8447 -Verdana.ttf 6 o 29.3745 34.0188 22 3 -10.6743 28.2074 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 23 ~ 5.1273 37.0038 17.5224 -Verdana.ttf 6 o 29.3745 34.0188 24 # -9.3895 36.5186 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 25 O -10.5268 39.3996 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 26 ` -14.6870 11.8592 10.6850 -Verdana.ttf 6 o 29.3745 34.0188 27 @ -10.5830 48.3778 49.6815 -Verdana.ttf 6 o 29.3745 34.0188 28 F -9.6041 26.3478 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 29 S -10.1557 32.5147 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 30 p -0.1820 28.2003 44.4964 -Verdana.ttf 6 o 29.3745 34.0188 31 “ -11.3676 23.0072 16.1408 -Verdana.ttf 6 o 29.3745 34.0188 32 % -10.8282 54.3188 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 33 £ -10.2511 29.1741 43.3815 -Verdana.ttf 6 o 29.3745 34.0188 34 . 24.6143 6.6555 8.1886 -Verdana.ttf 6 o 29.3745 34.0188 35 2 -10.6197 28.3370 43.3815 -Verdana.ttf 6 o 29.3745 34.0188 36 5 -10.6605 27.5114 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 37 m -0.0575 46.3480 32.8447 -Verdana.ttf 6 o 29.3745 34.0188 38 V -9.4683 37.5109 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 39 6 -10.2659 29.6593 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 40 w 1.3780 42.9667 31.6705 -Verdana.ttf 6 o 29.3745 34.0188 41 T -9.4477 35.8297 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 42 M -9.5438 37.7217 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 43 G -10.4734 38.0483 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 44 b -11.6382 28.2003 45.5224 -Verdana.ttf 6 o 29.3745 34.0188 45 9 -10.3595 29.6593 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 46 ; 1.4317 12.1891 42.1191 -Verdana.ttf 6 o 29.3745 34.0188 47 D -9.4955 35.8587 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 48 L -9.3243 26.6777 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 49 y 1.1174 31.1449 43.3223 -Verdana.ttf 6 o 29.3745 34.0188 50 ‘ -11.6578 11.5036 16.1408 -Verdana.ttf 6 o 29.3745 34.0188 51 \ -11.2667 25.1446 53.0150 -Verdana.ttf 6 o 29.3745 34.0188 52 R -9.4371 34.9855 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 53 < -2.3690 32.8447 32.8447 -Verdana.ttf 6 o 29.3745 34.0188 54 4 -9.2529 32.2369 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 55 8 -10.8595 29.9590 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 56 0 -10.8013 28.9448 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 57 A -9.3188 37.5109 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 58 E -9.5373 27.8774 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 59 B -9.5772 32.0295 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 60 v 1.2303 31.1449 31.6705 -Verdana.ttf 6 o 29.3745 34.0188 61 k -11.7949 29.1741 44.3483 -Verdana.ttf 6 o 29.3745 34.0188 62 J -9.2281 20.1703 43.3815 -Verdana.ttf 6 o 29.3745 34.0188 63 U -9.4141 32.6187 43.3815 -Verdana.ttf 6 o 29.3745 34.0188 64 j -9.4459 16.4964 53.8592 -Verdana.ttf 6 o 29.3745 34.0188 65 ( -11.6561 17.3150 56.0000 -Verdana.ttf 6 o 29.3745 34.0188 66 7 -9.2743 29.1741 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 67 § -10.5079 27.0333 54.3965 -Verdana.ttf 6 o 29.3745 34.0188 68 $ -11.8201 28.8186 54.8039 -Verdana.ttf 6 o 29.3745 34.0188 69 € -10.5993 34.6555 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 70 / -11.4666 25.1446 53.0150 -Verdana.ttf 6 o 29.3745 34.0188 71 C -10.4811 35.1627 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 72 * -11.7741 27.3888 26.3188 -Verdana.ttf 6 o 29.3745 34.0188 73 ” -11.6041 23.0072 16.1408 -Verdana.ttf 6 o 29.3745 34.0188 74 ? -10.3606 23.9705 43.3815 -Verdana.ttf 6 o 29.3745 34.0188 75 { -11.2802 26.6962 55.4929 -Verdana.ttf 6 o 29.3745 34.0188 76 } -11.2076 26.6962 55.4929 -Verdana.ttf 6 o 29.3745 34.0188 77 , 24.7849 12.1891 18.6372 -Verdana.ttf 6 o 29.3745 34.0188 78 I -9.4045 16.4442 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 79 ° -10.3576 22.7964 22.7964 -Verdana.ttf 6 o 29.3745 34.0188 80 K -9.4545 33.3333 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 81 H -9.5780 32.7255 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 82 q -0.1788 28.2003 44.4964 -Verdana.ttf 6 o 29.3745 34.0188 83 & -10.5031 41.1629 44.5557 -Verdana.ttf 6 o 29.3745 34.0188 84 ’ -11.6436 11.5036 16.1408 -Verdana.ttf 6 o 29.3745 34.0188 85 [ -11.2465 15.1741 55.4929 -Verdana.ttf 6 o 29.3745 34.0188 86 - 11.4559 17.6705 4.8447 -Verdana.ttf 6 o 29.3745 34.0188 87 Y -9.1436 35.8297 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 88 Q -10.6239 40.5737 54.5262 -Verdana.ttf 6 o 29.3745 34.0188 89 " -11.3164 17.3150 16.3483 -Verdana.ttf 6 o 29.3745 34.0188 90 ! -9.2829 5.4814 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 91 x 1.3102 31.1449 31.6705 -Verdana.ttf 6 o 29.3745 34.0188 92 ) -11.3248 17.3150 56.0000 -Verdana.ttf 6 o 29.3745 34.0188 93 = 6.1225 33.8114 16.4964 -Verdana.ttf 6 o 29.3745 34.0188 94 + -2.8048 34.9855 34.9855 -Verdana.ttf 6 o 29.3745 34.0188 95 X -9.5514 35.9074 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 96 » 0.2278 28.0000 28.0000 -Verdana.ttf 6 o 29.3745 34.0188 97 ' -11.0705 6.1703 16.3483 -Verdana.ttf 6 o 29.3745 34.0188 98 ¢ -8.7297 27.2855 51.6115 -Verdana.ttf 6 o 29.3745 34.0188 99 Z -9.4183 33.2036 42.2074 -Verdana.ttf 6 o 29.3745 34.0188 100 > -2.3714 32.8447 32.8447 -Verdana.ttf 6 o 29.3745 34.0188 101 ® -10.5308 49.3445 49.3445 -Verdana.ttf 6 o 29.3745 34.0188 102 © -10.5547 49.3445 49.3445 -Verdana.ttf 6 o 29.3745 34.0188 103 ] -11.4598 15.1741 55.4929 -Verdana.ttf 6 o 29.3745 34.0188 104 é -14.5971 28.8152 48.8629 -Verdana.ttf 6 o 29.3745 34.0188 105 z 1.3414 25.5036 31.6705 -Verdana.ttf 6 o 29.3745 34.0188 106 _ 38.0555 37.0038 3.3150 -Verdana.ttf 6 o 29.3745 34.0188 107 ¥ -9.3200 31.1332 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 1 t -7.8416 20.1669 41.8484 -Verdana.ttf 7 e 28.8152 34.0188 2 h -11.8482 26.4669 44.3483 -Verdana.ttf 7 e 28.8152 34.0188 3 a -0.2633 26.7969 34.0188 -Verdana.ttf 7 e 28.8152 34.0188 4 n 0.0106 26.4669 32.8447 -Verdana.ttf 7 e 28.8152 34.0188 5 P -9.5166 27.8519 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 6 o 0.1157 29.3745 34.0188 -Verdana.ttf 7 e 28.8152 34.0188 7 e 0.0860 28.8152 34.0188 -Verdana.ttf 7 e 28.8152 34.0188 8 : 1.1167 6.6555 31.6705 -Verdana.ttf 7 e 28.8152 34.0188 9 r 0.9765 19.6817 31.6705 -Verdana.ttf 7 e 28.8152 34.0188 10 l -11.3647 5.3333 44.3483 -Verdana.ttf 7 e 28.8152 34.0188 11 i -9.1474 5.3333 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 12 1 -9.4930 22.9445 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 13 | -11.3008 5.2036 55.4929 -Verdana.ttf 7 e 28.8152 34.0188 14 N -9.3151 31.5514 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 15 f -11.4281 20.5259 44.3483 -Verdana.ttf 7 e 28.8152 34.0188 16 g 0.0823 28.2003 44.4964 -Verdana.ttf 7 e 28.8152 34.0188 17 d -11.1163 28.2003 45.5224 -Verdana.ttf 7 e 28.8152 34.0188 18 W -9.3594 52.3887 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 19 s -0.1821 25.0150 34.0188 -Verdana.ttf 7 e 28.8152 34.0188 20 c -0.0884 25.6820 34.0188 -Verdana.ttf 7 e 28.8152 34.0188 21 u 1.2953 26.4669 32.8447 -Verdana.ttf 7 e 28.8152 34.0188 22 3 -10.6018 28.2074 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 23 ~ 5.4508 37.0038 17.5224 -Verdana.ttf 7 e 28.8152 34.0188 24 # -9.3142 36.5186 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 25 O -10.7436 39.3996 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 26 ` -14.6802 11.8592 10.6850 -Verdana.ttf 7 e 28.8152 34.0188 27 @ -10.5488 48.3778 49.6815 -Verdana.ttf 7 e 28.8152 34.0188 28 F -9.4233 26.3478 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 29 S -10.8311 32.5147 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 30 p 0.0131 28.2003 44.4964 -Verdana.ttf 7 e 28.8152 34.0188 31 “ -11.6042 23.0072 16.1408 -Verdana.ttf 7 e 28.8152 34.0188 32 % -10.4702 54.3188 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 33 £ -10.3367 29.1741 43.3815 -Verdana.ttf 7 e 28.8152 34.0188 34 . 24.8012 6.6555 8.1886 -Verdana.ttf 7 e 28.8152 34.0188 35 2 -10.5887 28.3370 43.3815 -Verdana.ttf 7 e 28.8152 34.0188 36 5 -10.3317 27.5114 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 37 m -0.0370 46.3480 32.8447 -Verdana.ttf 7 e 28.8152 34.0188 38 V -9.1973 37.5109 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 39 6 -10.3544 29.6593 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 40 w 1.2274 42.9667 31.6705 -Verdana.ttf 7 e 28.8152 34.0188 41 T -9.1825 35.8297 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 42 M -9.1734 37.7217 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 43 G -10.6643 38.0483 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 44 b -11.3998 28.2003 45.5224 -Verdana.ttf 7 e 28.8152 34.0188 45 9 -10.4763 29.6593 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 46 ; 1.0059 12.1891 42.1191 -Verdana.ttf 7 e 28.8152 34.0188 47 D -9.4594 35.8587 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 48 L -9.1128 26.6777 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 49 y 1.2539 31.1449 43.3223 -Verdana.ttf 7 e 28.8152 34.0188 50 ‘ -11.4517 11.5036 16.1408 -Verdana.ttf 7 e 28.8152 34.0188 51 \ -11.6761 25.1446 53.0150 -Verdana.ttf 7 e 28.8152 34.0188 52 R -9.0458 34.9855 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 53 < -2.2612 32.8447 32.8447 -Verdana.ttf 7 e 28.8152 34.0188 54 4 -9.2253 32.2369 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 55 8 -10.8459 29.9590 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 56 0 -10.5488 28.9448 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 57 A -9.3628 37.5109 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 58 E -9.6108 27.8774 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 59 B -9.4897 32.0295 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 60 v 1.0204 31.1449 31.6705 -Verdana.ttf 7 e 28.8152 34.0188 61 k -11.3912 29.1741 44.3483 -Verdana.ttf 7 e 28.8152 34.0188 62 J -9.5281 20.1703 43.3815 -Verdana.ttf 7 e 28.8152 34.0188 63 U -9.4848 32.6187 43.3815 -Verdana.ttf 7 e 28.8152 34.0188 64 j -9.3533 16.4964 53.8592 -Verdana.ttf 7 e 28.8152 34.0188 65 ( -11.4503 17.3150 56.0000 -Verdana.ttf 7 e 28.8152 34.0188 66 7 -9.4479 29.1741 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 67 § -10.8801 27.0333 54.3965 -Verdana.ttf 7 e 28.8152 34.0188 68 $ -12.2060 28.8186 54.8039 -Verdana.ttf 7 e 28.8152 34.0188 69 € -10.6941 34.6555 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 70 / -11.5944 25.1446 53.0150 -Verdana.ttf 7 e 28.8152 34.0188 71 C -10.2312 35.1627 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 72 * -11.6486 27.3888 26.3188 -Verdana.ttf 7 e 28.8152 34.0188 73 ” -11.6538 23.0072 16.1408 -Verdana.ttf 7 e 28.8152 34.0188 74 ? -10.6954 23.9705 43.3815 -Verdana.ttf 7 e 28.8152 34.0188 75 { -11.5203 26.6962 55.4929 -Verdana.ttf 7 e 28.8152 34.0188 76 } -11.5344 26.6962 55.4929 -Verdana.ttf 7 e 28.8152 34.0188 77 , 24.4315 12.1891 18.6372 -Verdana.ttf 7 e 28.8152 34.0188 78 I -9.2983 16.4442 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 79 ° -10.5282 22.7964 22.7964 -Verdana.ttf 7 e 28.8152 34.0188 80 K -9.3906 33.3333 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 81 H -9.3257 32.7255 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 82 q 0.1639 28.2003 44.4964 -Verdana.ttf 7 e 28.8152 34.0188 83 & -10.5869 41.1629 44.5557 -Verdana.ttf 7 e 28.8152 34.0188 84 ’ -11.5787 11.5036 16.1408 -Verdana.ttf 7 e 28.8152 34.0188 85 [ -11.2627 15.1741 55.4929 -Verdana.ttf 7 e 28.8152 34.0188 86 - 11.6210 17.6705 4.8447 -Verdana.ttf 7 e 28.8152 34.0188 87 Y -9.2591 35.8297 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 88 Q -10.8378 40.5737 54.5262 -Verdana.ttf 7 e 28.8152 34.0188 89 " -11.2522 17.3150 16.3483 -Verdana.ttf 7 e 28.8152 34.0188 90 ! -9.2729 5.4814 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 91 x 1.1328 31.1449 31.6705 -Verdana.ttf 7 e 28.8152 34.0188 92 ) -11.4754 17.3150 56.0000 -Verdana.ttf 7 e 28.8152 34.0188 93 = 6.3340 33.8114 16.4964 -Verdana.ttf 7 e 28.8152 34.0188 94 + -3.2393 34.9855 34.9855 -Verdana.ttf 7 e 28.8152 34.0188 95 X -9.3527 35.9074 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 96 » 0.1237 28.0000 28.0000 -Verdana.ttf 7 e 28.8152 34.0188 97 ' -11.4085 6.1703 16.3483 -Verdana.ttf 7 e 28.8152 34.0188 98 ¢ -8.9805 27.2855 51.6115 -Verdana.ttf 7 e 28.8152 34.0188 99 Z -9.2806 33.2036 42.2074 -Verdana.ttf 7 e 28.8152 34.0188 100 > -2.4401 32.8447 32.8447 -Verdana.ttf 7 e 28.8152 34.0188 101 ® -10.6657 49.3445 49.3445 -Verdana.ttf 7 e 28.8152 34.0188 102 © -10.3563 49.3445 49.3445 -Verdana.ttf 7 e 28.8152 34.0188 103 ] -11.6708 15.1741 55.4929 -Verdana.ttf 7 e 28.8152 34.0188 104 é -14.7538 28.8152 48.8629 -Verdana.ttf 7 e 28.8152 34.0188 105 z 1.2112 25.5036 31.6705 -Verdana.ttf 7 e 28.8152 34.0188 106 _ 37.8195 37.0038 3.3150 -Verdana.ttf 7 e 28.8152 34.0188 107 ¥ -9.2872 31.1332 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 1 t -8.8797 20.1669 41.8484 -Verdana.ttf 8 : 6.6555 31.6705 2 h -12.7915 26.4669 44.3483 -Verdana.ttf 8 : 6.6555 31.6705 3 a -1.0957 26.7969 34.0188 -Verdana.ttf 8 : 6.6555 31.6705 4 n -0.8795 26.4669 32.8447 -Verdana.ttf 8 : 6.6555 31.6705 5 P -10.5118 27.8519 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 6 o -1.2213 29.3745 34.0188 -Verdana.ttf 8 : 6.6555 31.6705 7 e -1.0501 28.8152 34.0188 -Verdana.ttf 8 : 6.6555 31.6705 8 : 0.0802 6.6555 31.6705 -Verdana.ttf 8 : 6.6555 31.6705 9 r -0.0028 19.6817 31.6705 -Verdana.ttf 8 : 6.6555 31.6705 10 l -12.5591 5.3333 44.3483 -Verdana.ttf 8 : 6.6555 31.6705 11 i -10.4937 5.3333 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 12 1 -10.4745 22.9445 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 13 | -12.7047 5.2036 55.4929 -Verdana.ttf 8 : 6.6555 31.6705 14 N -10.5653 31.5514 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 15 f -12.7397 20.5259 44.3483 -Verdana.ttf 8 : 6.6555 31.6705 16 g -1.2879 28.2003 44.4964 -Verdana.ttf 8 : 6.6555 31.6705 17 d -12.5269 28.2003 45.5224 -Verdana.ttf 8 : 6.6555 31.6705 18 W -10.7011 52.3887 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 19 s -0.9531 25.0150 34.0188 -Verdana.ttf 8 : 6.6555 31.6705 20 c -0.9569 25.6820 34.0188 -Verdana.ttf 8 : 6.6555 31.6705 21 u -0.1004 26.4669 32.8447 -Verdana.ttf 8 : 6.6555 31.6705 22 3 -11.5543 28.2074 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 23 ~ 4.0489 37.0038 17.5224 -Verdana.ttf 8 : 6.6555 31.6705 24 # -10.4908 36.5186 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 25 O -11.8989 39.3996 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 26 ` -16.0952 11.8592 10.6850 -Verdana.ttf 8 : 6.6555 31.6705 27 @ -11.7115 48.3778 49.6815 -Verdana.ttf 8 : 6.6555 31.6705 28 F -10.5637 26.3478 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 29 S -11.9369 32.5147 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 30 p -1.0040 28.2003 44.4964 -Verdana.ttf 8 : 6.6555 31.6705 31 “ -12.8152 23.0072 16.1408 -Verdana.ttf 8 : 6.6555 31.6705 32 % -11.7480 54.3188 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 33 £ -11.7480 29.1741 43.3815 -Verdana.ttf 8 : 6.6555 31.6705 34 . 23.7073 6.6555 8.1886 -Verdana.ttf 8 : 6.6555 31.6705 35 2 -11.5543 28.3370 43.3815 -Verdana.ttf 8 : 6.6555 31.6705 36 5 -11.5808 27.5114 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 37 m -1.0640 46.3480 32.8447 -Verdana.ttf 8 : 6.6555 31.6705 38 V -10.5402 37.5109 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 39 6 -11.6207 29.6593 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 40 w -0.1513 42.9667 31.6705 -Verdana.ttf 8 : 6.6555 31.6705 41 T -10.4613 35.8297 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 42 M -10.6272 37.7217 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 43 G -11.8393 38.0483 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 44 b -12.6991 28.2003 45.5224 -Verdana.ttf 8 : 6.6555 31.6705 45 9 -11.7480 29.6593 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 46 ; 0.0657 12.1891 42.1191 -Verdana.ttf 8 : 6.6555 31.6705 47 D -10.4292 35.8587 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 48 L -10.7295 26.6777 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 49 y 0.0024 31.1449 43.3223 -Verdana.ttf 8 : 6.6555 31.6705 50 ‘ -12.7844 11.5036 16.1408 -Verdana.ttf 8 : 6.6555 31.6705 51 \ -12.8718 25.1446 53.0150 -Verdana.ttf 8 : 6.6555 31.6705 52 R -10.6537 34.9855 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 53 < -3.4409 32.8447 32.8447 -Verdana.ttf 8 : 6.6555 31.6705 54 4 -10.4600 32.2369 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 55 8 -11.7110 29.9590 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 56 0 -11.7879 28.9448 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 57 A -10.6306 37.5109 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 58 E -10.4100 27.8774 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 59 B -10.8210 32.0295 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 60 v -0.0500 31.1449 31.6705 -Verdana.ttf 8 : 6.6555 31.6705 61 k -12.8314 29.1741 44.3483 -Verdana.ttf 8 : 6.6555 31.6705 62 J -10.5285 20.1703 43.3815 -Verdana.ttf 8 : 6.6555 31.6705 63 U -10.5332 32.6187 43.3815 -Verdana.ttf 8 : 6.6555 31.6705 64 j -10.6406 16.4964 53.8592 -Verdana.ttf 8 : 6.6555 31.6705 65 ( -12.7960 17.3150 56.0000 -Verdana.ttf 8 : 6.6555 31.6705 66 7 -10.3856 29.1741 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 67 § -11.7129 27.0333 54.3965 -Verdana.ttf 8 : 6.6555 31.6705 68 $ -13.0740 28.8186 54.8039 -Verdana.ttf 8 : 6.6555 31.6705 69 € -11.7082 34.6555 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 70 / -12.5743 25.1446 53.0150 -Verdana.ttf 8 : 6.6555 31.6705 71 C -11.7105 35.1627 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 72 * -12.7148 27.3888 26.3188 -Verdana.ttf 8 : 6.6555 31.6705 73 ” -12.9117 23.0072 16.1408 -Verdana.ttf 8 : 6.6555 31.6705 74 ? -11.2728 23.9705 43.3815 -Verdana.ttf 8 : 6.6555 31.6705 75 { -12.3345 26.6962 55.4929 -Verdana.ttf 8 : 6.6555 31.6705 76 } -12.5806 26.6962 55.4929 -Verdana.ttf 8 : 6.6555 31.6705 77 , 23.2646 12.1891 18.6372 -Verdana.ttf 8 : 6.6555 31.6705 78 I -10.4527 16.4442 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 79 ° -11.7110 22.7964 22.7964 -Verdana.ttf 8 : 6.6555 31.6705 80 K -10.4600 33.3333 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 81 H -10.3549 32.7255 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 82 q -1.1324 28.2003 44.4964 -Verdana.ttf 8 : 6.6555 31.6705 83 & -11.5452 41.1629 44.5557 -Verdana.ttf 8 : 6.6555 31.6705 84 ’ -12.5983 11.5036 16.1408 -Verdana.ttf 8 : 6.6555 31.6705 85 [ -12.8199 15.1741 55.4929 -Verdana.ttf 8 : 6.6555 31.6705 86 - 10.3333 17.6705 4.8447 -Verdana.ttf 8 : 6.6555 31.6705 87 Y -10.5754 35.8297 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 88 Q -11.6740 40.5737 54.5262 -Verdana.ttf 8 : 6.6555 31.6705 89 " -12.7249 17.3150 16.3483 -Verdana.ttf 8 : 6.6555 31.6705 90 ! -10.5046 5.4814 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 91 x 0.1140 31.1449 31.6705 -Verdana.ttf 8 : 6.6555 31.6705 92 ) -13.1040 17.3150 56.0000 -Verdana.ttf 8 : 6.6555 31.6705 93 = 4.8109 33.8114 16.4964 -Verdana.ttf 8 : 6.6555 31.6705 94 + -4.4572 34.9855 34.9855 -Verdana.ttf 8 : 6.6555 31.6705 95 X -10.4897 35.9074 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 96 » -1.1027 28.0000 28.0000 -Verdana.ttf 8 : 6.6555 31.6705 97 ' -12.6277 6.1703 16.3483 -Verdana.ttf 8 : 6.6555 31.6705 98 ¢ -9.8802 27.2855 51.6115 -Verdana.ttf 8 : 6.6555 31.6705 99 Z -10.6018 33.2036 42.2074 -Verdana.ttf 8 : 6.6555 31.6705 100 > -3.5656 32.8447 32.8447 -Verdana.ttf 8 : 6.6555 31.6705 101 ® -11.7368 49.3445 49.3445 -Verdana.ttf 8 : 6.6555 31.6705 102 © -11.6976 49.3445 49.3445 -Verdana.ttf 8 : 6.6555 31.6705 103 ] -12.6810 15.1741 55.4929 -Verdana.ttf 8 : 6.6555 31.6705 104 é -15.9146 28.8152 48.8629 -Verdana.ttf 8 : 6.6555 31.6705 105 z 0.2437 25.5036 31.6705 -Verdana.ttf 8 : 6.6555 31.6705 106 _ 36.9881 37.0038 3.3150 -Verdana.ttf 8 : 6.6555 31.6705 107 ¥ -10.6833 31.1332 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 1 t -9.0071 20.1669 41.8484 -Verdana.ttf 9 r 19.6817 31.6705 2 h -12.7502 26.4669 44.3483 -Verdana.ttf 9 r 19.6817 31.6705 3 a -1.1741 26.7969 34.0188 -Verdana.ttf 9 r 19.6817 31.6705 4 n -1.1737 26.4669 32.8447 -Verdana.ttf 9 r 19.6817 31.6705 5 P -10.5840 27.8519 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 6 o -1.2314 29.3745 34.0188 -Verdana.ttf 9 r 19.6817 31.6705 7 e -1.1208 28.8152 34.0188 -Verdana.ttf 9 r 19.6817 31.6705 8 : -0.1884 6.6555 31.6705 -Verdana.ttf 9 r 19.6817 31.6705 9 r -0.0889 19.6817 31.6705 -Verdana.ttf 9 r 19.6817 31.6705 10 l -12.5072 5.3333 44.3483 -Verdana.ttf 9 r 19.6817 31.6705 11 i -10.8031 5.3333 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 12 1 -10.4796 22.9445 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 13 | -12.6047 5.2036 55.4929 -Verdana.ttf 9 r 19.6817 31.6705 14 N -10.5801 31.5514 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 15 f -12.7661 20.5259 44.3483 -Verdana.ttf 9 r 19.6817 31.6705 16 g -1.0819 28.2003 44.4964 -Verdana.ttf 9 r 19.6817 31.6705 17 d -12.8819 28.2003 45.5224 -Verdana.ttf 9 r 19.6817 31.6705 18 W -10.5355 52.3887 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 19 s -1.1636 25.0150 34.0188 -Verdana.ttf 9 r 19.6817 31.6705 20 c -1.2140 25.6820 34.0188 -Verdana.ttf 9 r 19.6817 31.6705 21 u 0.0268 26.4669 32.8447 -Verdana.ttf 9 r 19.6817 31.6705 22 3 -11.6784 28.2074 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 23 ~ 4.0104 37.0038 17.5224 -Verdana.ttf 9 r 19.6817 31.6705 24 # -10.5758 36.5186 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 25 O -11.7389 39.3996 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 26 ` -16.1808 11.8592 10.6850 -Verdana.ttf 9 r 19.6817 31.6705 27 @ -11.4937 48.3778 49.6815 -Verdana.ttf 9 r 19.6817 31.6705 28 F -10.5369 26.3478 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 29 S -11.8565 32.5147 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 30 p -1.3268 28.2003 44.4964 -Verdana.ttf 9 r 19.6817 31.6705 31 “ -12.8388 23.0072 16.1408 -Verdana.ttf 9 r 19.6817 31.6705 32 % -11.6486 54.3188 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 33 £ -11.6817 29.1741 43.3815 -Verdana.ttf 9 r 19.6817 31.6705 34 . 23.5708 6.6555 8.1886 -Verdana.ttf 9 r 19.6817 31.6705 35 2 -11.8916 28.3370 43.3815 -Verdana.ttf 9 r 19.6817 31.6705 36 5 -11.5869 27.5114 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 37 m -1.3747 46.3480 32.8447 -Verdana.ttf 9 r 19.6817 31.6705 38 V -10.4480 37.5109 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 39 6 -11.6678 29.6593 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 40 w 0.0889 42.9667 31.6705 -Verdana.ttf 9 r 19.6817 31.6705 41 T -10.3966 35.8297 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 42 M -10.2624 37.7217 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 43 G -11.7314 38.0483 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 44 b -12.6744 28.2003 45.5224 -Verdana.ttf 9 r 19.6817 31.6705 45 9 -11.6639 29.6593 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 46 ; 0.0471 12.1891 42.1191 -Verdana.ttf 9 r 19.6817 31.6705 47 D -10.4850 35.8587 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 48 L -10.6758 26.6777 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 49 y 0.0298 31.1449 43.3223 -Verdana.ttf 9 r 19.6817 31.6705 50 ‘ -12.8046 11.5036 16.1408 -Verdana.ttf 9 r 19.6817 31.6705 51 \ -12.7575 25.1446 53.0150 -Verdana.ttf 9 r 19.6817 31.6705 52 R -10.6220 34.9855 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 53 < -3.2162 32.8447 32.8447 -Verdana.ttf 9 r 19.6817 31.6705 54 4 -10.6690 32.2369 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 55 8 -11.7197 29.9590 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 56 0 -11.7746 28.9448 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 57 A -10.8416 37.5109 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 58 E -10.4970 27.8774 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 59 B -10.6330 32.0295 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 60 v -0.1389 31.1449 31.6705 -Verdana.ttf 9 r 19.6817 31.6705 61 k -12.7082 29.1741 44.3483 -Verdana.ttf 9 r 19.6817 31.6705 62 J -10.6305 20.1703 43.3815 -Verdana.ttf 9 r 19.6817 31.6705 63 U -10.6272 32.6187 43.3815 -Verdana.ttf 9 r 19.6817 31.6705 64 j -10.4465 16.4964 53.8592 -Verdana.ttf 9 r 19.6817 31.6705 65 ( -12.5004 17.3150 56.0000 -Verdana.ttf 9 r 19.6817 31.6705 66 7 -10.6337 29.1741 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 67 § -11.7211 27.0333 54.3965 -Verdana.ttf 9 r 19.6817 31.6705 68 $ -13.0915 28.8186 54.8039 -Verdana.ttf 9 r 19.6817 31.6705 69 € -11.8769 34.6555 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 70 / -12.7945 25.1446 53.0150 -Verdana.ttf 9 r 19.6817 31.6705 71 C -11.8883 35.1627 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 72 * -12.8108 27.3888 26.3188 -Verdana.ttf 9 r 19.6817 31.6705 73 ” -12.5773 23.0072 16.1408 -Verdana.ttf 9 r 19.6817 31.6705 74 ? -11.6842 23.9705 43.3815 -Verdana.ttf 9 r 19.6817 31.6705 75 { -12.3734 26.6962 55.4929 -Verdana.ttf 9 r 19.6817 31.6705 76 } -12.7666 26.6962 55.4929 -Verdana.ttf 9 r 19.6817 31.6705 77 , 23.4286 12.1891 18.6372 -Verdana.ttf 9 r 19.6817 31.6705 78 I -10.6657 16.4442 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 79 ° -11.9051 22.7964 22.7964 -Verdana.ttf 9 r 19.6817 31.6705 80 K -10.5467 33.3333 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 81 H -10.6000 32.7255 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 82 q -1.2812 28.2003 44.4964 -Verdana.ttf 9 r 19.6817 31.6705 83 & -11.7230 41.1629 44.5557 -Verdana.ttf 9 r 19.6817 31.6705 84 ’ -12.6334 11.5036 16.1408 -Verdana.ttf 9 r 19.6817 31.6705 85 [ -12.7339 15.1741 55.4929 -Verdana.ttf 9 r 19.6817 31.6705 86 - 10.2343 17.6705 4.8447 -Verdana.ttf 9 r 19.6817 31.6705 87 Y -10.2692 35.8297 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 88 Q -11.8851 40.5737 54.5262 -Verdana.ttf 9 r 19.6817 31.6705 89 " -12.9887 17.3150 16.3483 -Verdana.ttf 9 r 19.6817 31.6705 90 ! -10.5369 5.4814 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 91 x -0.0399 31.1449 31.6705 -Verdana.ttf 9 r 19.6817 31.6705 92 ) -12.5062 17.3150 56.0000 -Verdana.ttf 9 r 19.6817 31.6705 93 = 4.8244 33.8114 16.4964 -Verdana.ttf 9 r 19.6817 31.6705 94 + -4.0332 34.9855 34.9855 -Verdana.ttf 9 r 19.6817 31.6705 95 X -10.8713 35.9074 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 96 » -0.8676 28.0000 28.0000 -Verdana.ttf 9 r 19.6817 31.6705 97 ' -12.8921 6.1703 16.3483 -Verdana.ttf 9 r 19.6817 31.6705 98 ¢ -10.0446 27.2855 51.6115 -Verdana.ttf 9 r 19.6817 31.6705 99 Z -10.7276 33.2036 42.2074 -Verdana.ttf 9 r 19.6817 31.6705 100 > -3.3250 32.8447 32.8447 -Verdana.ttf 9 r 19.6817 31.6705 101 ® -11.6625 49.3445 49.3445 -Verdana.ttf 9 r 19.6817 31.6705 102 © -11.7009 49.3445 49.3445 -Verdana.ttf 9 r 19.6817 31.6705 103 ] -12.6005 15.1741 55.4929 -Verdana.ttf 9 r 19.6817 31.6705 104 é -16.0386 28.8152 48.8629 -Verdana.ttf 9 r 19.6817 31.6705 105 z 0.3167 25.5036 31.6705 -Verdana.ttf 9 r 19.6817 31.6705 106 _ 37.0015 37.0038 3.3150 -Verdana.ttf 9 r 19.6817 31.6705 107 ¥ -10.7762 31.1332 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 1 t 3.6653 20.1669 41.8484 -Verdana.ttf 10 l 5.3333 44.3483 2 h 0.1067 26.4669 44.3483 -Verdana.ttf 10 l 5.3333 44.3483 3 a 11.3230 26.7969 34.0188 -Verdana.ttf 10 l 5.3333 44.3483 4 n 11.7546 26.4669 32.8447 -Verdana.ttf 10 l 5.3333 44.3483 5 P 2.1807 27.8519 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 6 o 11.5406 29.3745 34.0188 -Verdana.ttf 10 l 5.3333 44.3483 7 e 11.3397 28.8152 34.0188 -Verdana.ttf 10 l 5.3333 44.3483 8 : 12.7263 6.6555 31.6705 -Verdana.ttf 10 l 5.3333 44.3483 9 r 12.6995 19.6817 31.6705 -Verdana.ttf 10 l 5.3333 44.3483 10 l 0.0769 5.3333 44.3483 -Verdana.ttf 10 l 5.3333 44.3483 11 i 2.2145 5.3333 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 12 1 2.3864 22.9445 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 13 | 0.0413 5.2036 55.4929 -Verdana.ttf 10 l 5.3333 44.3483 14 N 2.1475 31.5514 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 15 f -0.0490 20.5259 44.3483 -Verdana.ttf 10 l 5.3333 44.3483 16 g 11.4133 28.2003 44.4964 -Verdana.ttf 10 l 5.3333 44.3483 17 d 0.0000 28.2003 45.5224 -Verdana.ttf 10 l 5.3333 44.3483 18 W 1.9973 52.3887 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 19 s 11.5275 25.0150 34.0188 -Verdana.ttf 10 l 5.3333 44.3483 20 c 11.6756 25.6820 34.0188 -Verdana.ttf 10 l 5.3333 44.3483 21 u 12.7648 26.4669 32.8447 -Verdana.ttf 10 l 5.3333 44.3483 22 3 0.9951 28.2074 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 23 ~ 16.8155 37.0038 17.5224 -Verdana.ttf 10 l 5.3333 44.3483 24 # 1.9736 36.5186 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 25 O 1.0105 39.3996 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 26 ` -3.3224 11.8592 10.6850 -Verdana.ttf 10 l 5.3333 44.3483 27 @ 1.0066 48.3778 49.6815 -Verdana.ttf 10 l 5.3333 44.3483 28 F 1.7045 26.3478 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 29 S 0.9163 32.5147 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 30 p 11.4637 28.2003 44.4964 -Verdana.ttf 10 l 5.3333 44.3483 31 “ 0.1323 23.0072 16.1408 -Verdana.ttf 10 l 5.3333 44.3483 32 % 1.0835 54.3188 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 33 £ 1.0298 29.1741 43.3815 -Verdana.ttf 10 l 5.3333 44.3483 34 . 36.0457 6.6555 8.1886 -Verdana.ttf 10 l 5.3333 44.3483 35 2 1.0537 28.3370 43.3815 -Verdana.ttf 10 l 5.3333 44.3483 36 5 0.9667 27.5114 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 37 m 11.4623 46.3480 32.8447 -Verdana.ttf 10 l 5.3333 44.3483 38 V 2.1509 37.5109 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 39 6 1.1325 29.6593 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 40 w 12.5707 42.9667 31.6705 -Verdana.ttf 10 l 5.3333 44.3483 41 T 2.0952 35.8297 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 42 M 2.2206 37.7217 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 43 G 0.9214 38.0483 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 44 b 0.0917 28.2003 45.5224 -Verdana.ttf 10 l 5.3333 44.3483 45 9 0.9383 29.6593 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 46 ; 12.7927 12.1891 42.1191 -Verdana.ttf 10 l 5.3333 44.3483 47 D 2.2817 35.8587 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 48 L 1.8068 26.6777 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 49 y 13.0252 31.1449 43.3223 -Verdana.ttf 10 l 5.3333 44.3483 50 ‘ 0.1173 11.5036 16.1408 -Verdana.ttf 10 l 5.3333 44.3483 51 \ 0.0842 25.1446 53.0150 -Verdana.ttf 10 l 5.3333 44.3483 52 R 2.3705 34.9855 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 53 < 9.2490 32.8447 32.8447 -Verdana.ttf 10 l 5.3333 44.3483 54 4 1.8375 32.2369 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 55 8 0.9815 29.9590 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 56 0 0.8764 28.9448 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 57 A 2.1144 37.5109 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 58 E 2.2159 27.8774 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 59 B 2.1010 32.0295 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 60 v 12.6027 31.1449 31.6705 -Verdana.ttf 10 l 5.3333 44.3483 61 k 0.1788 29.1741 44.3483 -Verdana.ttf 10 l 5.3333 44.3483 62 J 2.2279 20.1703 43.3815 -Verdana.ttf 10 l 5.3333 44.3483 63 U 2.1740 32.6187 43.3815 -Verdana.ttf 10 l 5.3333 44.3483 64 j 2.1010 16.4964 53.8592 -Verdana.ttf 10 l 5.3333 44.3483 65 ( 0.1802 17.3150 56.0000 -Verdana.ttf 10 l 5.3333 44.3483 66 7 2.1010 29.1741 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 67 § 1.1234 27.0333 54.3965 -Verdana.ttf 10 l 5.3333 44.3483 68 $ -0.5122 28.8186 54.8039 -Verdana.ttf 10 l 5.3333 44.3483 69 € 0.9935 34.6555 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 70 / -0.0870 25.1446 53.0150 -Verdana.ttf 10 l 5.3333 44.3483 71 C 0.8731 35.1627 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 72 * -0.0870 27.3888 26.3188 -Verdana.ttf 10 l 5.3333 44.3483 73 ” 0.0279 23.0072 16.1408 -Verdana.ttf 10 l 5.3333 44.3483 74 ? 0.9533 23.9705 43.3815 -Verdana.ttf 10 l 5.3333 44.3483 75 { -0.0370 26.6962 55.4929 -Verdana.ttf 10 l 5.3333 44.3483 76 } 0.0120 26.6962 55.4929 -Verdana.ttf 10 l 5.3333 44.3483 77 , 36.2837 12.1891 18.6372 -Verdana.ttf 10 l 5.3333 44.3483 78 I 2.0505 16.4442 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 79 ° 0.8898 22.7964 22.7964 -Verdana.ttf 10 l 5.3333 44.3483 80 K 2.0533 33.3333 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 81 H 2.0639 32.7255 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 82 q 11.5561 28.2003 44.4964 -Verdana.ttf 10 l 5.3333 44.3483 83 & 0.8649 41.1629 44.5557 -Verdana.ttf 10 l 5.3333 44.3483 84 ’ -0.0842 11.5036 16.1408 -Verdana.ttf 10 l 5.3333 44.3483 85 [ 0.1522 15.1741 55.4929 -Verdana.ttf 10 l 5.3333 44.3483 86 - 22.8370 17.6705 4.8447 -Verdana.ttf 10 l 5.3333 44.3483 87 Y 2.1408 35.8297 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 88 Q 0.7893 40.5737 54.5262 -Verdana.ttf 10 l 5.3333 44.3483 89 " -0.1907 17.3150 16.3483 -Verdana.ttf 10 l 5.3333 44.3483 90 ! 2.4458 5.4814 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 91 x 12.5798 31.1449 31.6705 -Verdana.ttf 10 l 5.3333 44.3483 92 ) 0.0769 17.3150 56.0000 -Verdana.ttf 10 l 5.3333 44.3483 93 = 17.4455 33.8114 16.4964 -Verdana.ttf 10 l 5.3333 44.3483 94 + 8.5810 34.9855 34.9855 -Verdana.ttf 10 l 5.3333 44.3483 95 X 2.1347 35.9074 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 96 » 11.5869 28.0000 28.0000 -Verdana.ttf 10 l 5.3333 44.3483 97 ' 0.0000 6.1703 16.3483 -Verdana.ttf 10 l 5.3333 44.3483 98 ¢ 2.4501 27.2855 51.6115 -Verdana.ttf 10 l 5.3333 44.3483 99 Z 2.0577 33.2036 42.2074 -Verdana.ttf 10 l 5.3333 44.3483 100 > 9.1645 32.8447 32.8447 -Verdana.ttf 10 l 5.3333 44.3483 101 ® 0.8009 49.3445 49.3445 -Verdana.ttf 10 l 5.3333 44.3483 102 © 0.8797 49.3445 49.3445 -Verdana.ttf 10 l 5.3333 44.3483 103 ] 0.0000 15.1741 55.4929 -Verdana.ttf 10 l 5.3333 44.3483 104 é -3.0844 28.8152 48.8629 -Verdana.ttf 10 l 5.3333 44.3483 105 z 12.7546 25.5036 31.6705 -Verdana.ttf 10 l 5.3333 44.3483 106 _ 49.5990 37.0038 3.3150 -Verdana.ttf 10 l 5.3333 44.3483 107 ¥ 2.0212 31.1332 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 1 t 1.5331 20.1669 41.8484 -Verdana.ttf 11 i 5.3333 42.2074 2 h -2.0813 26.4669 44.3483 -Verdana.ttf 11 i 5.3333 42.2074 3 a 9.4930 26.7969 34.0188 -Verdana.ttf 11 i 5.3333 42.2074 4 n 9.2724 26.4669 32.8447 -Verdana.ttf 11 i 5.3333 42.2074 5 P -0.0870 27.8519 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 6 o 9.3628 29.3745 34.0188 -Verdana.ttf 11 i 5.3333 42.2074 7 e 9.3628 28.8152 34.0188 -Verdana.ttf 11 i 5.3333 42.2074 8 : 10.5902 6.6555 31.6705 -Verdana.ttf 11 i 5.3333 42.2074 9 r 10.4869 19.6817 31.6705 -Verdana.ttf 11 i 5.3333 42.2074 10 l -2.3182 5.3333 44.3483 -Verdana.ttf 11 i 5.3333 42.2074 11 i -0.0533 5.3333 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 12 1 0.0566 22.9445 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 13 | -2.3541 5.2036 55.4929 -Verdana.ttf 11 i 5.3333 42.2074 14 N 0.0870 31.5514 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 15 f -2.1774 20.5259 44.3483 -Verdana.ttf 11 i 5.3333 42.2074 16 g 9.4531 28.2003 44.4964 -Verdana.ttf 11 i 5.3333 42.2074 17 d -2.2975 28.2003 45.5224 -Verdana.ttf 11 i 5.3333 42.2074 18 W -0.0370 52.3887 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 19 s 9.5267 25.0150 34.0188 -Verdana.ttf 11 i 5.3333 42.2074 20 c 9.4397 25.6820 34.0188 -Verdana.ttf 11 i 5.3333 42.2074 21 u 10.4499 26.4669 32.8447 -Verdana.ttf 11 i 5.3333 42.2074 22 3 -1.0400 28.2074 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 23 ~ 14.8044 37.0038 17.5224 -Verdana.ttf 11 i 5.3333 42.2074 24 # 0.0899 36.5186 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 25 O -1.2760 39.3996 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 26 ` -5.5180 11.8592 10.6850 -Verdana.ttf 11 i 5.3333 42.2074 27 @ -1.3083 48.3778 49.6815 -Verdana.ttf 11 i 5.3333 42.2074 28 F 0.0547 26.3478 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 29 S -1.1741 32.5147 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 30 p 9.3588 28.2003 44.4964 -Verdana.ttf 11 i 5.3333 42.2074 31 “ -2.0505 23.0072 16.1408 -Verdana.ttf 11 i 5.3333 42.2074 32 % -1.3178 54.3188 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 33 £ -1.2764 29.1741 43.3815 -Verdana.ttf 11 i 5.3333 42.2074 34 . 33.9256 6.6555 8.1886 -Verdana.ttf 11 i 5.3333 42.2074 35 2 -1.1741 28.3370 43.3815 -Verdana.ttf 11 i 5.3333 42.2074 36 5 -0.9377 27.5114 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 37 m 8.9412 46.3480 32.8447 -Verdana.ttf 11 i 5.3333 42.2074 38 V 0.1567 37.5109 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 39 6 -1.0838 29.6593 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 40 w 10.5101 42.9667 31.6705 -Verdana.ttf 11 i 5.3333 42.2074 41 T -0.0903 35.8297 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 42 M 0.2677 37.7217 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 43 G -1.2645 38.0483 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 44 b -2.0857 28.2003 45.5224 -Verdana.ttf 11 i 5.3333 42.2074 45 9 -1.1314 29.6593 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 46 ; 10.4201 12.1891 42.1191 -Verdana.ttf 11 i 5.3333 42.2074 47 D -0.0437 35.8587 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 48 L 0.0000 26.6777 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 49 y 10.4897 31.1449 43.3223 -Verdana.ttf 11 i 5.3333 42.2074 50 ‘ -2.3048 11.5036 16.1408 -Verdana.ttf 11 i 5.3333 42.2074 51 \ -2.1865 25.1446 53.0150 -Verdana.ttf 11 i 5.3333 42.2074 52 R 0.0000 34.9855 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 53 < 6.9256 32.8447 32.8447 -Verdana.ttf 11 i 5.3333 42.2074 54 4 -0.1759 32.2369 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 55 8 -1.2539 29.9590 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 56 0 -1.1342 28.9448 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 57 A 0.0903 37.5109 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 58 E 0.0000 27.8774 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 59 B 0.2158 32.0295 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 60 v 10.5369 31.1449 31.6705 -Verdana.ttf 11 i 5.3333 42.2074 61 k -2.0149 29.1741 44.3483 -Verdana.ttf 11 i 5.3333 42.2074 62 J -0.1806 20.1703 43.3815 -Verdana.ttf 11 i 5.3333 42.2074 63 U -0.0528 32.6187 43.3815 -Verdana.ttf 11 i 5.3333 42.2074 64 j -0.1673 16.4964 53.8592 -Verdana.ttf 11 i 5.3333 42.2074 65 ( -2.2312 17.3150 56.0000 -Verdana.ttf 11 i 5.3333 42.2074 66 7 0.2604 29.1741 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 67 § -1.1314 27.0333 54.3965 -Verdana.ttf 11 i 5.3333 42.2074 68 $ -2.5390 28.8186 54.8039 -Verdana.ttf 11 i 5.3333 42.2074 69 € -1.1741 34.6555 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 70 / -2.3037 25.1446 53.0150 -Verdana.ttf 11 i 5.3333 42.2074 71 C -1.0425 35.1627 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 72 * -1.7934 27.3888 26.3188 -Verdana.ttf 11 i 5.3333 42.2074 73 ” -2.1442 23.0072 16.1408 -Verdana.ttf 11 i 5.3333 42.2074 74 ? -1.2376 23.9705 43.3815 -Verdana.ttf 11 i 5.3333 42.2074 75 { -1.9588 26.6962 55.4929 -Verdana.ttf 11 i 5.3333 42.2074 76 } -2.0581 26.6962 55.4929 -Verdana.ttf 11 i 5.3333 42.2074 77 , 34.0141 12.1891 18.6372 -Verdana.ttf 11 i 5.3333 42.2074 78 I 0.0764 16.4442 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 79 ° -0.9834 22.7964 22.7964 -Verdana.ttf 11 i 5.3333 42.2074 80 K -0.0561 33.3333 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 81 H -0.0148 32.7255 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 82 q 9.3628 28.2003 44.4964 -Verdana.ttf 11 i 5.3333 42.2074 83 & -1.1385 41.1629 44.5557 -Verdana.ttf 11 i 5.3333 42.2074 84 ’ -2.2445 11.5036 16.1408 -Verdana.ttf 11 i 5.3333 42.2074 85 [ -1.7962 15.1741 55.4929 -Verdana.ttf 11 i 5.3333 42.2074 86 - 20.7625 17.6705 4.8447 -Verdana.ttf 11 i 5.3333 42.2074 87 Y 0.0000 35.8297 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 88 Q -1.2241 40.5737 54.5262 -Verdana.ttf 11 i 5.3333 42.2074 89 " -2.0490 17.3150 16.3483 -Verdana.ttf 11 i 5.3333 42.2074 90 ! -0.0384 5.4814 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 91 x 10.4512 31.1449 31.6705 -Verdana.ttf 11 i 5.3333 42.2074 92 ) -2.3566 17.3150 56.0000 -Verdana.ttf 11 i 5.3333 42.2074 93 = 15.2056 33.8114 16.4964 -Verdana.ttf 11 i 5.3333 42.2074 94 + 6.1235 34.9855 34.9855 -Verdana.ttf 11 i 5.3333 42.2074 95 X -0.2210 35.9074 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 96 » 9.6100 28.0000 28.0000 -Verdana.ttf 11 i 5.3333 42.2074 97 ' -2.1557 6.1703 16.3483 -Verdana.ttf 11 i 5.3333 42.2074 98 ¢ 0.4395 27.2855 51.6115 -Verdana.ttf 11 i 5.3333 42.2074 99 Z -0.0500 33.2036 42.2074 -Verdana.ttf 11 i 5.3333 42.2074 100 > 7.0948 32.8447 32.8447 -Verdana.ttf 11 i 5.3333 42.2074 101 ® -1.4186 49.3445 49.3445 -Verdana.ttf 11 i 5.3333 42.2074 102 © -0.9907 49.3445 49.3445 -Verdana.ttf 11 i 5.3333 42.2074 103 ] -2.2145 15.1741 55.4929 -Verdana.ttf 11 i 5.3333 42.2074 104 é -5.1763 28.8152 48.8629 -Verdana.ttf 11 i 5.3333 42.2074 105 z 10.5533 25.5036 31.6705 -Verdana.ttf 11 i 5.3333 42.2074 106 _ 47.5851 37.0038 3.3150 -Verdana.ttf 11 i 5.3333 42.2074 107 ¥ 0.0870 31.1332 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 1 t 1.7238 20.1669 41.8484 -Verdana.ttf 12 1 22.9445 42.2074 2 h -2.1442 26.4669 44.3483 -Verdana.ttf 12 1 22.9445 42.2074 3 a 9.2325 26.7969 34.0188 -Verdana.ttf 12 1 22.9445 42.2074 4 n 9.4146 26.4669 32.8447 -Verdana.ttf 12 1 22.9445 42.2074 5 P 0.2690 27.8519 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 6 o 9.2623 29.3745 34.0188 -Verdana.ttf 12 1 22.9445 42.2074 7 e 9.2763 28.8152 34.0188 -Verdana.ttf 12 1 22.9445 42.2074 8 : 10.4560 6.6555 31.6705 -Verdana.ttf 12 1 22.9445 42.2074 9 r 10.9348 19.6817 31.6705 -Verdana.ttf 12 1 22.9445 42.2074 10 l -2.1985 5.3333 44.3483 -Verdana.ttf 12 1 22.9445 42.2074 11 i -0.1741 5.3333 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 12 1 -0.0567 22.9445 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 13 | -2.0030 5.2036 55.4929 -Verdana.ttf 12 1 22.9445 42.2074 14 N -0.0798 31.5514 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 15 f -2.0265 20.5259 44.3483 -Verdana.ttf 12 1 22.9445 42.2074 16 g 9.1382 28.2003 44.4964 -Verdana.ttf 12 1 22.9445 42.2074 17 d -2.2649 28.2003 45.5224 -Verdana.ttf 12 1 22.9445 42.2074 18 W 0.2177 52.3887 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 19 s 9.6530 25.0150 34.0188 -Verdana.ttf 12 1 22.9445 42.2074 20 c 9.3609 25.6820 34.0188 -Verdana.ttf 12 1 22.9445 42.2074 21 u 10.5974 26.4669 32.8447 -Verdana.ttf 12 1 22.9445 42.2074 22 3 -1.1832 28.2074 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 23 ~ 14.6493 37.0038 17.5224 -Verdana.ttf 12 1 22.9445 42.2074 24 # -0.0062 36.5186 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 25 O -1.0838 39.3996 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 26 ` -5.3545 11.8592 10.6850 -Verdana.ttf 12 1 22.9445 42.2074 27 @ -1.0765 48.3778 49.6815 -Verdana.ttf 12 1 22.9445 42.2074 28 F 0.2264 26.3478 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 29 S -1.1270 32.5147 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 30 p 9.4661 28.2003 44.4964 -Verdana.ttf 12 1 22.9445 42.2074 31 “ -2.5725 23.0072 16.1408 -Verdana.ttf 12 1 22.9445 42.2074 32 % -1.2761 54.3188 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 33 £ -1.4451 29.1741 43.3815 -Verdana.ttf 12 1 22.9445 42.2074 34 . 33.9096 6.6555 8.1886 -Verdana.ttf 12 1 22.9445 42.2074 35 2 -0.7643 28.3370 43.3815 -Verdana.ttf 12 1 22.9445 42.2074 36 5 -1.0221 27.5114 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 37 m 9.1648 46.3480 32.8447 -Verdana.ttf 12 1 22.9445 42.2074 38 V -0.3061 37.5109 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 39 6 -1.2203 29.6593 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 40 w 10.1010 42.9667 31.6705 -Verdana.ttf 12 1 22.9445 42.2074 41 T -0.2644 35.8297 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 42 M 0.0784 37.7217 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 43 G -0.8440 38.0483 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 44 b -1.9828 28.2003 45.5224 -Verdana.ttf 12 1 22.9445 42.2074 45 9 -1.0127 29.6593 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 46 ; 10.3966 12.1891 42.1191 -Verdana.ttf 12 1 22.9445 42.2074 47 D 0.0856 35.8587 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 48 L -0.0389 26.6777 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 49 y 10.7545 31.1449 43.3223 -Verdana.ttf 12 1 22.9445 42.2074 50 ‘ -2.0404 11.5036 16.1408 -Verdana.ttf 12 1 22.9445 42.2074 51 \ -2.3864 25.1446 53.0150 -Verdana.ttf 12 1 22.9445 42.2074 52 R -0.1923 34.9855 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 53 < 6.9507 32.8447 32.8447 -Verdana.ttf 12 1 22.9445 42.2074 54 4 -0.0889 32.2369 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 55 8 -1.0977 29.9590 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 56 0 -1.1407 28.9448 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 57 A 0.0461 37.5109 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 58 E -0.2278 27.8774 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 59 B -0.0764 32.0295 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 60 v 10.5437 31.1449 31.6705 -Verdana.ttf 12 1 22.9445 42.2074 61 k -2.0419 29.1741 44.3483 -Verdana.ttf 12 1 22.9445 42.2074 62 J 0.0951 20.1703 43.3815 -Verdana.ttf 12 1 22.9445 42.2074 63 U 0.0019 32.6187 43.3815 -Verdana.ttf 12 1 22.9445 42.2074 64 j 0.0769 16.4964 53.8592 -Verdana.ttf 12 1 22.9445 42.2074 65 ( -1.8620 17.3150 56.0000 -Verdana.ttf 12 1 22.9445 42.2074 66 7 0.4509 29.1741 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 67 § -1.3515 27.0333 54.3965 -Verdana.ttf 12 1 22.9445 42.2074 68 $ -2.5038 28.8186 54.8039 -Verdana.ttf 12 1 22.9445 42.2074 69 € -1.1913 34.6555 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 70 / -2.0154 25.1446 53.0150 -Verdana.ttf 12 1 22.9445 42.2074 71 C -1.2034 35.1627 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 72 * -2.4428 27.3888 26.3188 -Verdana.ttf 12 1 22.9445 42.2074 73 ” -1.9678 23.0072 16.1408 -Verdana.ttf 12 1 22.9445 42.2074 74 ? -1.0383 23.9705 43.3815 -Verdana.ttf 12 1 22.9445 42.2074 75 { -2.0222 26.6962 55.4929 -Verdana.ttf 12 1 22.9445 42.2074 76 } -2.0716 26.6962 55.4929 -Verdana.ttf 12 1 22.9445 42.2074 77 , 34.1144 12.1891 18.6372 -Verdana.ttf 12 1 22.9445 42.2074 78 I 0.0568 16.4442 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 79 ° -1.2246 22.7964 22.7964 -Verdana.ttf 12 1 22.9445 42.2074 80 K 0.1788 33.3333 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 81 H 0.1936 32.7255 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 82 q 9.6267 28.2003 44.4964 -Verdana.ttf 12 1 22.9445 42.2074 83 & -1.1132 41.1629 44.5557 -Verdana.ttf 12 1 22.9445 42.2074 84 ’ -1.9061 11.5036 16.1408 -Verdana.ttf 12 1 22.9445 42.2074 85 [ -2.3023 15.1741 55.4929 -Verdana.ttf 12 1 22.9445 42.2074 86 - 21.0389 17.6705 4.8447 -Verdana.ttf 12 1 22.9445 42.2074 87 Y 0.2177 35.8297 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 88 Q -1.3623 40.5737 54.5262 -Verdana.ttf 12 1 22.9445 42.2074 89 " -2.3980 17.3150 16.3483 -Verdana.ttf 12 1 22.9445 42.2074 90 ! -0.0451 5.4814 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 91 x 10.6685 31.1449 31.6705 -Verdana.ttf 12 1 22.9445 42.2074 92 ) -2.0884 17.3150 56.0000 -Verdana.ttf 12 1 22.9445 42.2074 93 = 15.5103 33.8114 16.4964 -Verdana.ttf 12 1 22.9445 42.2074 94 + 6.5670 34.9855 34.9855 -Verdana.ttf 12 1 22.9445 42.2074 95 X -0.1626 35.9074 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 96 » 9.3510 28.0000 28.0000 -Verdana.ttf 12 1 22.9445 42.2074 97 ' -2.4695 6.1703 16.3483 -Verdana.ttf 12 1 22.9445 42.2074 98 ¢ 0.6361 27.2855 51.6115 -Verdana.ttf 12 1 22.9445 42.2074 99 Z 0.0936 33.2036 42.2074 -Verdana.ttf 12 1 22.9445 42.2074 100 > 6.7954 32.8447 32.8447 -Verdana.ttf 12 1 22.9445 42.2074 101 ® -1.1180 49.3445 49.3445 -Verdana.ttf 12 1 22.9445 42.2074 102 © -1.1741 49.3445 49.3445 -Verdana.ttf 12 1 22.9445 42.2074 103 ] -2.0843 15.1741 55.4929 -Verdana.ttf 12 1 22.9445 42.2074 104 é -5.3614 28.8152 48.8629 -Verdana.ttf 12 1 22.9445 42.2074 105 z 10.4735 25.5036 31.6705 -Verdana.ttf 12 1 22.9445 42.2074 106 _ 47.3221 37.0038 3.3150 -Verdana.ttf 12 1 22.9445 42.2074 107 ¥ 0.0312 31.1332 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 1 t 3.4447 20.1669 41.8484 -Verdana.ttf 13 | 5.2036 55.4929 2 h -0.0366 26.4669 44.3483 -Verdana.ttf 13 | 5.2036 55.4929 3 a 11.5906 26.7969 34.0188 -Verdana.ttf 13 | 5.2036 55.4929 4 n 11.4314 26.4669 32.8447 -Verdana.ttf 13 | 5.2036 55.4929 5 P 2.0106 27.8519 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 6 o 11.4272 29.3745 34.0188 -Verdana.ttf 13 | 5.2036 55.4929 7 e 11.6262 28.8152 34.0188 -Verdana.ttf 13 | 5.2036 55.4929 8 : 12.7191 6.6555 31.6705 -Verdana.ttf 13 | 5.2036 55.4929 9 r 12.5772 19.6817 31.6705 -Verdana.ttf 13 | 5.2036 55.4929 10 l 0.1538 5.3333 44.3483 -Verdana.ttf 13 | 5.2036 55.4929 11 i 2.1946 5.3333 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 12 1 2.0168 22.9445 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 13 | -0.0326 5.2036 55.4929 -Verdana.ttf 13 | 5.2036 55.4929 14 N 2.0001 31.5514 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 15 f -0.0298 20.5259 44.3483 -Verdana.ttf 13 | 5.2036 55.4929 16 g 11.3821 28.2003 44.4964 -Verdana.ttf 13 | 5.2036 55.4929 17 d -0.0572 28.2003 45.5224 -Verdana.ttf 13 | 5.2036 55.4929 18 W 1.9384 52.3887 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 19 s 11.3998 25.0150 34.0188 -Verdana.ttf 13 | 5.2036 55.4929 20 c 11.5036 25.6820 34.0188 -Verdana.ttf 13 | 5.2036 55.4929 21 u 12.4638 26.4669 32.8447 -Verdana.ttf 13 | 5.2036 55.4929 22 3 1.0005 28.2074 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 23 ~ 16.9366 37.0038 17.5224 -Verdana.ttf 13 | 5.2036 55.4929 24 # 2.1381 36.5186 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 25 O 0.8869 39.3996 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 26 ` -3.0396 11.8592 10.6850 -Verdana.ttf 13 | 5.2036 55.4929 27 @ 0.8898 48.3778 49.6815 -Verdana.ttf 13 | 5.2036 55.4929 28 F 2.2445 26.3478 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 29 S 0.7985 32.5147 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 30 p 11.5003 28.2003 44.4964 -Verdana.ttf 13 | 5.2036 55.4929 31 “ -0.1495 23.0072 16.1408 -Verdana.ttf 13 | 5.2036 55.4929 32 % 1.1234 54.3188 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 33 £ 0.9667 29.1741 43.3815 -Verdana.ttf 13 | 5.2036 55.4929 34 . 36.1962 6.6555 8.1886 -Verdana.ttf 13 | 5.2036 55.4929 35 2 0.7005 28.3370 43.3815 -Verdana.ttf 13 | 5.2036 55.4929 36 5 0.9436 27.5114 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 37 m 11.5772 46.3480 32.8447 -Verdana.ttf 13 | 5.2036 55.4929 38 V 2.0836 37.5109 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 39 6 0.9634 29.6593 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 40 w 12.5879 42.9667 31.6705 -Verdana.ttf 13 | 5.2036 55.4929 41 T 2.1807 35.8297 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 42 M 2.1880 37.7217 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 43 G 0.7528 38.0483 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 44 b 0.1436 28.2003 45.5224 -Verdana.ttf 13 | 5.2036 55.4929 45 9 0.8393 29.6593 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 46 ; 12.6273 12.1891 42.1191 -Verdana.ttf 13 | 5.2036 55.4929 47 D 2.1141 35.8587 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 48 L 2.2750 26.6777 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 49 y 12.7546 31.1449 43.3223 -Verdana.ttf 13 | 5.2036 55.4929 50 ‘ 0.0903 11.5036 16.1408 -Verdana.ttf 13 | 5.2036 55.4929 51 \ 0.0399 25.1446 53.0150 -Verdana.ttf 13 | 5.2036 55.4929 52 R 2.2493 34.9855 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 53 < 9.1068 32.8447 32.8447 -Verdana.ttf 13 | 5.2036 55.4929 54 4 2.0991 32.2369 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 55 8 1.0085 29.9590 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 56 0 0.9149 28.9448 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 57 A 2.2326 37.5109 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 58 E 2.0505 27.8774 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 59 B 2.0639 32.0295 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 60 v 12.7546 31.1449 31.6705 -Verdana.ttf 13 | 5.2036 55.4929 61 k -0.0399 29.1741 44.3483 -Verdana.ttf 13 | 5.2036 55.4929 62 J 2.0135 20.1703 43.3815 -Verdana.ttf 13 | 5.2036 55.4929 63 U 2.1307 32.6187 43.3815 -Verdana.ttf 13 | 5.2036 55.4929 64 j 2.1543 16.4964 53.8592 -Verdana.ttf 13 | 5.2036 55.4929 65 ( -0.1197 17.3150 56.0000 -Verdana.ttf 13 | 5.2036 55.4929 66 7 2.1913 29.1741 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 67 § 0.9667 27.0333 54.3965 -Verdana.ttf 13 | 5.2036 55.4929 68 $ -0.5279 28.8186 54.8039 -Verdana.ttf 13 | 5.2036 55.4929 69 € 0.9918 34.6555 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 70 / 0.1171 25.1446 53.0150 -Verdana.ttf 13 | 5.2036 55.4929 71 C 0.9613 35.1627 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 72 * 0.1004 27.3888 26.3188 -Verdana.ttf 13 | 5.2036 55.4929 73 ” -0.0106 23.0072 16.1408 -Verdana.ttf 13 | 5.2036 55.4929 74 ? 0.8260 23.9705 43.3815 -Verdana.ttf 13 | 5.2036 55.4929 75 { 0.0809 26.6962 55.4929 -Verdana.ttf 13 | 5.2036 55.4929 76 } -0.0870 26.6962 55.4929 -Verdana.ttf 13 | 5.2036 55.4929 77 , 36.3668 12.1891 18.6372 -Verdana.ttf 13 | 5.2036 55.4929 78 I 2.1038 16.4442 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 79 ° 1.0288 22.7964 22.7964 -Verdana.ttf 13 | 5.2036 55.4929 80 K 1.9635 33.3333 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 81 H 2.1408 32.7255 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 82 q 11.5772 28.2003 44.4964 -Verdana.ttf 13 | 5.2036 55.4929 83 & 0.8452 41.1629 44.5557 -Verdana.ttf 13 | 5.2036 55.4929 84 ’ 0.1052 11.5036 16.1408 -Verdana.ttf 13 | 5.2036 55.4929 85 [ -0.0476 15.1741 55.4929 -Verdana.ttf 13 | 5.2036 55.4929 86 - 23.0302 17.6705 4.8447 -Verdana.ttf 13 | 5.2036 55.4929 87 Y 2.1303 35.8297 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 88 Q 0.9486 40.5737 54.5262 -Verdana.ttf 13 | 5.2036 55.4929 89 " -0.2412 17.3150 16.3483 -Verdana.ttf 13 | 5.2036 55.4929 90 ! 2.2279 5.4814 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 91 x 12.8921 31.1449 31.6705 -Verdana.ttf 13 | 5.2036 55.4929 92 ) 0.1673 17.3150 56.0000 -Verdana.ttf 13 | 5.2036 55.4929 93 = 17.4368 33.8114 16.4964 -Verdana.ttf 13 | 5.2036 55.4929 94 + 8.7757 34.9855 34.9855 -Verdana.ttf 13 | 5.2036 55.4929 95 X 2.0034 35.9074 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 96 » 11.6841 28.0000 28.0000 -Verdana.ttf 13 | 5.2036 55.4929 97 ' -0.1389 6.1703 16.3483 -Verdana.ttf 13 | 5.2036 55.4929 98 ¢ 2.8360 27.2855 51.6115 -Verdana.ttf 13 | 5.2036 55.4929 99 Z 2.0034 33.2036 42.2074 -Verdana.ttf 13 | 5.2036 55.4929 100 > 9.1721 32.8447 32.8447 -Verdana.ttf 13 | 5.2036 55.4929 101 ® 1.0869 49.3445 49.3445 -Verdana.ttf 13 | 5.2036 55.4929 102 © 0.9435 49.3445 49.3445 -Verdana.ttf 13 | 5.2036 55.4929 103 ] -0.1288 15.1741 55.4929 -Verdana.ttf 13 | 5.2036 55.4929 104 é -3.5296 28.8152 48.8629 -Verdana.ttf 13 | 5.2036 55.4929 105 z 12.6203 25.5036 31.6705 -Verdana.ttf 13 | 5.2036 55.4929 106 _ 49.4986 37.0038 3.3150 -Verdana.ttf 13 | 5.2036 55.4929 107 ¥ 2.2265 31.1332 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 1 t 1.7105 20.1669 41.8484 -Verdana.ttf 14 N 31.5514 42.2074 2 h -1.9874 26.4669 44.3483 -Verdana.ttf 14 N 31.5514 42.2074 3 a 9.4233 26.7969 34.0188 -Verdana.ttf 14 N 31.5514 42.2074 4 n 9.2340 26.4669 32.8447 -Verdana.ttf 14 N 31.5514 42.2074 5 P -0.0028 27.8519 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 6 o 9.5296 29.3745 34.0188 -Verdana.ttf 14 N 31.5514 42.2074 7 e 9.4984 28.8152 34.0188 -Verdana.ttf 14 N 31.5514 42.2074 8 : 10.5031 6.6555 31.6705 -Verdana.ttf 14 N 31.5514 42.2074 9 r 10.6570 19.6817 31.6705 -Verdana.ttf 14 N 31.5514 42.2074 10 l -2.0052 5.3333 44.3483 -Verdana.ttf 14 N 31.5514 42.2074 11 i -0.0533 5.3333 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 12 1 -0.1912 22.9445 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 13 | -2.0453 5.2036 55.4929 -Verdana.ttf 14 N 31.5514 42.2074 14 N -0.2119 31.5514 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 15 f -2.1038 20.5259 44.3483 -Verdana.ttf 14 N 31.5514 42.2074 16 g 9.2647 28.2003 44.4964 -Verdana.ttf 14 N 31.5514 42.2074 17 d -2.2758 28.2003 45.5224 -Verdana.ttf 14 N 31.5514 42.2074 18 W 0.1394 52.3887 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 19 s 9.3327 25.0150 34.0188 -Verdana.ttf 14 N 31.5514 42.2074 20 c 9.4632 25.6820 34.0188 -Verdana.ttf 14 N 31.5514 42.2074 21 u 10.5768 26.4669 32.8447 -Verdana.ttf 14 N 31.5514 42.2074 22 3 -1.1063 28.2074 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 23 ~ 14.6843 37.0038 17.5224 -Verdana.ttf 14 N 31.5514 42.2074 24 # -0.1595 36.5186 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 25 O -1.0824 39.3996 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 26 ` -5.4161 11.8592 10.6850 -Verdana.ttf 14 N 31.5514 42.2074 27 @ -1.0890 48.3778 49.6815 -Verdana.ttf 14 N 31.5514 42.2074 28 F 0.1403 26.3478 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 29 S -0.7555 32.5147 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 30 p 9.0566 28.2003 44.4964 -Verdana.ttf 14 N 31.5514 42.2074 31 “ -2.2087 23.0072 16.1408 -Verdana.ttf 14 N 31.5514 42.2074 32 % -1.0236 54.3188 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 33 £ -1.0587 29.1741 43.3815 -Verdana.ttf 14 N 31.5514 42.2074 34 . 33.7852 6.6555 8.1886 -Verdana.ttf 14 N 31.5514 42.2074 35 2 -1.1560 28.3370 43.3815 -Verdana.ttf 14 N 31.5514 42.2074 36 5 -1.1509 27.5114 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 37 m 9.3301 46.3480 32.8447 -Verdana.ttf 14 N 31.5514 42.2074 38 V -0.1364 37.5109 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 39 6 -0.8262 29.6593 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 40 w 10.3696 42.9667 31.6705 -Verdana.ttf 14 N 31.5514 42.2074 41 T -0.0769 35.8297 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 42 M -0.1538 37.7217 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 43 G -0.9978 38.0483 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 44 b -2.1884 28.2003 45.5224 -Verdana.ttf 14 N 31.5514 42.2074 45 9 -1.0534 29.6593 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 46 ; 10.8483 12.1891 42.1191 -Verdana.ttf 14 N 31.5514 42.2074 47 D -0.2205 35.8587 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 48 L 0.1230 26.6777 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 49 y 10.5427 31.1449 43.3223 -Verdana.ttf 14 N 31.5514 42.2074 50 ‘ -2.3149 11.5036 16.1408 -Verdana.ttf 14 N 31.5514 42.2074 51 \ -2.4667 25.1446 53.0150 -Verdana.ttf 14 N 31.5514 42.2074 52 R -0.1966 34.9855 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 53 < 7.0185 32.8447 32.8447 -Verdana.ttf 14 N 31.5514 42.2074 54 4 0.1918 32.2369 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 55 8 -1.3696 29.9590 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 56 0 -1.1718 28.9448 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 57 A -0.1433 37.5109 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 58 E 0.1759 27.8774 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 59 B 0.1740 32.0295 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 60 v 10.3654 31.1449 31.6705 -Verdana.ttf 14 N 31.5514 42.2074 61 k -1.8500 29.1741 44.3483 -Verdana.ttf 14 N 31.5514 42.2074 62 J 0.0653 20.1703 43.3815 -Verdana.ttf 14 N 31.5514 42.2074 63 U -0.0638 32.6187 43.3815 -Verdana.ttf 14 N 31.5514 42.2074 64 j -0.0000 16.4964 53.8592 -Verdana.ttf 14 N 31.5514 42.2074 65 ( -2.1557 17.3150 56.0000 -Verdana.ttf 14 N 31.5514 42.2074 66 7 0.1342 29.1741 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 67 § -1.3044 27.0333 54.3965 -Verdana.ttf 14 N 31.5514 42.2074 68 $ -2.5730 28.8186 54.8039 -Verdana.ttf 14 N 31.5514 42.2074 69 € -1.1510 34.6555 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 70 / -2.2664 25.1446 53.0150 -Verdana.ttf 14 N 31.5514 42.2074 71 C -0.9761 35.1627 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 72 * -2.3940 27.3888 26.3188 -Verdana.ttf 14 N 31.5514 42.2074 73 ” -2.3683 23.0072 16.1408 -Verdana.ttf 14 N 31.5514 42.2074 74 ? -1.1270 23.9705 43.3815 -Verdana.ttf 14 N 31.5514 42.2074 75 { -1.8579 26.6962 55.4929 -Verdana.ttf 14 N 31.5514 42.2074 76 } -1.7371 26.6962 55.4929 -Verdana.ttf 14 N 31.5514 42.2074 77 , 33.4964 12.1891 18.6372 -Verdana.ttf 14 N 31.5514 42.2074 78 I 0.3043 16.4442 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 79 ° -1.1548 22.7964 22.7964 -Verdana.ttf 14 N 31.5514 42.2074 80 K -0.1450 33.3333 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 81 H 0.0001 32.7255 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 82 q 9.3412 28.2003 44.4964 -Verdana.ttf 14 N 31.5514 42.2074 83 & -1.5720 41.1629 44.5557 -Verdana.ttf 14 N 31.5514 42.2074 84 ’ -2.0700 11.5036 16.1408 -Verdana.ttf 14 N 31.5514 42.2074 85 [ -2.1640 15.1741 55.4929 -Verdana.ttf 14 N 31.5514 42.2074 86 - 20.7404 17.6705 4.8447 -Verdana.ttf 14 N 31.5514 42.2074 87 Y -0.0073 35.8297 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 88 Q -0.9227 40.5737 54.5262 -Verdana.ttf 14 N 31.5514 42.2074 89 " -1.9621 17.3150 16.3483 -Verdana.ttf 14 N 31.5514 42.2074 90 ! 0.0034 5.4814 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 91 x 10.2932 31.1449 31.6705 -Verdana.ttf 14 N 31.5514 42.2074 92 ) -2.0648 17.3150 56.0000 -Verdana.ttf 14 N 31.5514 42.2074 93 = 15.4435 33.8114 16.4964 -Verdana.ttf 14 N 31.5514 42.2074 94 + 6.4496 34.9855 34.9855 -Verdana.ttf 14 N 31.5514 42.2074 95 X -0.2067 35.9074 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 96 » 9.2808 28.0000 28.0000 -Verdana.ttf 14 N 31.5514 42.2074 97 ' -2.3592 6.1703 16.3483 -Verdana.ttf 14 N 31.5514 42.2074 98 ¢ 0.5682 27.2855 51.6115 -Verdana.ttf 14 N 31.5514 42.2074 99 Z -0.0087 33.2036 42.2074 -Verdana.ttf 14 N 31.5514 42.2074 100 > 7.1447 32.8447 32.8447 -Verdana.ttf 14 N 31.5514 42.2074 101 ® -0.9727 49.3445 49.3445 -Verdana.ttf 14 N 31.5514 42.2074 102 © -1.4240 49.3445 49.3445 -Verdana.ttf 14 N 31.5514 42.2074 103 ] -2.1570 15.1741 55.4929 -Verdana.ttf 14 N 31.5514 42.2074 104 é -5.2406 28.8152 48.8629 -Verdana.ttf 14 N 31.5514 42.2074 105 z 10.5829 25.5036 31.6705 -Verdana.ttf 14 N 31.5514 42.2074 106 _ 47.2198 37.0038 3.3150 -Verdana.ttf 14 N 31.5514 42.2074 107 ¥ 0.0769 31.1332 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 1 t 3.6327 20.1669 41.8484 -Verdana.ttf 15 f 20.5259 44.3483 2 h 0.3580 26.4669 44.3483 -Verdana.ttf 15 f 20.5259 44.3483 3 a 11.4133 26.7969 34.0188 -Verdana.ttf 15 f 20.5259 44.3483 4 n 11.4585 26.4669 32.8447 -Verdana.ttf 15 f 20.5259 44.3483 5 P 2.1913 27.8519 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 6 o 11.4907 29.3745 34.0188 -Verdana.ttf 15 f 20.5259 44.3483 7 e 11.4220 28.8152 34.0188 -Verdana.ttf 15 f 20.5259 44.3483 8 : 12.7171 6.6555 31.6705 -Verdana.ttf 15 f 20.5259 44.3483 9 r 12.4485 19.6817 31.6705 -Verdana.ttf 15 f 20.5259 44.3483 10 l -0.1582 5.3333 44.3483 -Verdana.ttf 15 f 20.5259 44.3483 11 i 2.1913 5.3333 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 12 1 2.0287 22.9445 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 13 | 0.0413 5.2036 55.4929 -Verdana.ttf 15 f 20.5259 44.3483 14 N 2.1139 31.5514 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 15 f -0.0290 20.5259 44.3483 -Verdana.ttf 15 f 20.5259 44.3483 16 g 11.5906 28.2003 44.4964 -Verdana.ttf 15 f 20.5259 44.3483 17 d 0.1639 28.2003 45.5224 -Verdana.ttf 15 f 20.5259 44.3483 18 W 2.0937 52.3887 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 19 s 11.5449 25.0150 34.0188 -Verdana.ttf 15 f 20.5259 44.3483 20 c 11.4060 25.6820 34.0188 -Verdana.ttf 15 f 20.5259 44.3483 21 u 12.7608 26.4669 32.8447 -Verdana.ttf 15 f 20.5259 44.3483 22 3 0.8231 28.2074 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 23 ~ 16.8054 37.0038 17.5224 -Verdana.ttf 15 f 20.5259 44.3483 24 # 2.1927 36.5186 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 25 O 1.0570 39.3996 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 26 ` -3.4722 11.8592 10.6850 -Verdana.ttf 15 f 20.5259 44.3483 27 @ 0.9238 48.3778 49.6815 -Verdana.ttf 15 f 20.5259 44.3483 28 F 2.4350 26.3478 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 29 S 0.9867 32.5147 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 30 p 11.4176 28.2003 44.4964 -Verdana.ttf 15 f 20.5259 44.3483 31 “ -0.0769 23.0072 16.1408 -Verdana.ttf 15 f 20.5259 44.3483 32 % 0.8659 54.3188 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 33 £ 1.1248 29.1741 43.3815 -Verdana.ttf 15 f 20.5259 44.3483 34 . 36.1477 6.6555 8.1886 -Verdana.ttf 15 f 20.5259 44.3483 35 2 1.1574 28.3370 43.3815 -Verdana.ttf 15 f 20.5259 44.3483 36 5 0.7506 27.5114 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 37 m 11.6675 46.3480 32.8447 -Verdana.ttf 15 f 20.5259 44.3483 38 V 2.1913 37.5109 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 39 6 0.9634 29.6593 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 40 w 12.7151 42.9667 31.6705 -Verdana.ttf 15 f 20.5259 44.3483 41 T 2.0111 35.8297 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 42 M 2.0763 37.7217 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 43 G 0.9196 38.0483 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 44 b -0.0019 28.2003 45.5224 -Verdana.ttf 15 f 20.5259 44.3483 45 9 1.0128 29.6593 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 46 ; 12.8802 12.1891 42.1191 -Verdana.ttf 15 f 20.5259 44.3483 47 D 2.1361 35.8587 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 48 L 2.2384 26.6777 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 49 y 12.6749 31.1449 43.3223 -Verdana.ttf 15 f 20.5259 44.3483 50 ‘ -0.2173 11.5036 16.1408 -Verdana.ttf 15 f 20.5259 44.3483 51 \ 0.1455 25.1446 53.0150 -Verdana.ttf 15 f 20.5259 44.3483 52 R 2.3965 34.9855 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 53 < 9.2443 32.8447 32.8447 -Verdana.ttf 15 f 20.5259 44.3483 54 4 2.2577 32.2369 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 55 8 0.9102 29.9590 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 56 0 1.1387 28.9448 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 57 A 2.2279 37.5109 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 58 E 2.1085 27.8774 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 59 B 2.4191 32.0295 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 60 v 12.8950 31.1449 31.6705 -Verdana.ttf 15 f 20.5259 44.3483 61 k -0.1639 29.1741 44.3483 -Verdana.ttf 15 f 20.5259 44.3483 62 J 1.9130 20.1703 43.3815 -Verdana.ttf 15 f 20.5259 44.3483 63 U 2.1797 32.6187 43.3815 -Verdana.ttf 15 f 20.5259 44.3483 64 j 2.2298 16.4964 53.8592 -Verdana.ttf 15 f 20.5259 44.3483 65 ( -0.0033 17.3150 56.0000 -Verdana.ttf 15 f 20.5259 44.3483 66 7 2.0861 29.1741 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 67 § 0.8825 27.0333 54.3965 -Verdana.ttf 15 f 20.5259 44.3483 68 $ -0.3948 28.8186 54.8039 -Verdana.ttf 15 f 20.5259 44.3483 69 € 0.9990 34.6555 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 70 / -0.2927 25.1446 53.0150 -Verdana.ttf 15 f 20.5259 44.3483 71 C 0.7044 35.1627 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 72 * -0.1687 27.3888 26.3188 -Verdana.ttf 15 f 20.5259 44.3483 73 ” -0.0798 23.0072 16.1408 -Verdana.ttf 15 f 20.5259 44.3483 74 ? 1.2109 23.9705 43.3815 -Verdana.ttf 15 f 20.5259 44.3483 75 { -0.2245 26.6962 55.4929 -Verdana.ttf 15 f 20.5259 44.3483 76 } 0.1639 26.6962 55.4929 -Verdana.ttf 15 f 20.5259 44.3483 77 , 36.3163 12.1891 18.6372 -Verdana.ttf 15 f 20.5259 44.3483 78 I 1.8213 16.4442 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 79 ° 1.0498 22.7964 22.7964 -Verdana.ttf 15 f 20.5259 44.3483 80 K 1.8427 33.3333 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 81 H 1.8779 32.7255 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 82 q 11.7121 28.2003 44.4964 -Verdana.ttf 15 f 20.5259 44.3483 83 & 1.3983 41.1629 44.5557 -Verdana.ttf 15 f 20.5259 44.3483 84 ’ -0.1974 11.5036 16.1408 -Verdana.ttf 15 f 20.5259 44.3483 85 [ 0.2053 15.1741 55.4929 -Verdana.ttf 15 f 20.5259 44.3483 86 - 22.8573 17.6705 4.8447 -Verdana.ttf 15 f 20.5259 44.3483 87 Y 1.9250 35.8297 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 88 Q 1.4016 40.5737 54.5262 -Verdana.ttf 15 f 20.5259 44.3483 89 " 0.1018 17.3150 16.3483 -Verdana.ttf 15 f 20.5259 44.3483 90 ! 1.9653 5.4814 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 91 x 12.5236 31.1449 31.6705 -Verdana.ttf 15 f 20.5259 44.3483 92 ) -0.2576 17.3150 56.0000 -Verdana.ttf 15 f 20.5259 44.3483 93 = 17.6641 33.8114 16.4964 -Verdana.ttf 15 f 20.5259 44.3483 94 + 8.4417 34.9855 34.9855 -Verdana.ttf 15 f 20.5259 44.3483 95 X 2.0371 35.9074 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 96 » 11.9667 28.0000 28.0000 -Verdana.ttf 15 f 20.5259 44.3483 97 ' -0.0727 6.1703 16.3483 -Verdana.ttf 15 f 20.5259 44.3483 98 ¢ 2.5803 27.2855 51.6115 -Verdana.ttf 15 f 20.5259 44.3483 99 Z 2.2577 33.2036 42.2074 -Verdana.ttf 15 f 20.5259 44.3483 100 > 9.2218 32.8447 32.8447 -Verdana.ttf 15 f 20.5259 44.3483 101 ® 0.9768 49.3445 49.3445 -Verdana.ttf 15 f 20.5259 44.3483 102 © 1.1840 49.3445 49.3445 -Verdana.ttf 15 f 20.5259 44.3483 103 ] -0.0296 15.1741 55.4929 -Verdana.ttf 15 f 20.5259 44.3483 104 é -2.9945 28.8152 48.8629 -Verdana.ttf 15 f 20.5259 44.3483 105 z 12.6559 25.5036 31.6705 -Verdana.ttf 15 f 20.5259 44.3483 106 _ 49.3774 37.0038 3.3150 -Verdana.ttf 15 f 20.5259 44.3483 107 ¥ 2.1308 31.1332 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 1 t -7.8130 20.1669 41.8484 -Verdana.ttf 16 g 28.2003 44.4964 2 h -11.4676 26.4669 44.3483 -Verdana.ttf 16 g 28.2003 44.4964 3 a -0.0769 26.7969 34.0188 -Verdana.ttf 16 g 28.2003 44.4964 4 n 0.0116 26.4669 32.8447 -Verdana.ttf 16 g 28.2003 44.4964 5 P -9.3393 27.8519 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 6 o 0.0338 29.3745 34.0188 -Verdana.ttf 16 g 28.2003 44.4964 7 e 0.3033 28.8152 34.0188 -Verdana.ttf 16 g 28.2003 44.4964 8 : 1.1793 6.6555 31.6705 -Verdana.ttf 16 g 28.2003 44.4964 9 r 1.2539 19.6817 31.6705 -Verdana.ttf 16 g 28.2003 44.4964 10 l -11.4733 5.3333 44.3483 -Verdana.ttf 16 g 28.2003 44.4964 11 i -9.2488 5.3333 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 12 1 -9.4175 22.9445 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 13 | -11.5694 5.2036 55.4929 -Verdana.ttf 16 g 28.2003 44.4964 14 N -8.9235 31.5514 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 15 f -11.4437 20.5259 44.3483 -Verdana.ttf 16 g 28.2003 44.4964 16 g -0.1070 28.2003 44.4964 -Verdana.ttf 16 g 28.2003 44.4964 17 d -11.2326 28.2003 45.5224 -Verdana.ttf 16 g 28.2003 44.4964 18 W -9.2727 52.3887 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 19 s -0.1316 25.0150 34.0188 -Verdana.ttf 16 g 28.2003 44.4964 20 c -0.2437 25.6820 34.0188 -Verdana.ttf 16 g 28.2003 44.4964 21 u 1.2169 26.4669 32.8447 -Verdana.ttf 16 g 28.2003 44.4964 22 3 -10.4712 28.2074 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 23 ~ 5.3888 37.0038 17.5224 -Verdana.ttf 16 g 28.2003 44.4964 24 # -9.3628 36.5186 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 25 O -10.5364 39.3996 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 26 ` -14.6835 11.8592 10.6850 -Verdana.ttf 16 g 28.2003 44.4964 27 @ -10.4393 48.3778 49.6815 -Verdana.ttf 16 g 28.2003 44.4964 28 F -9.5030 26.3478 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 29 S -10.4527 32.5147 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 30 p 0.0602 28.2003 44.4964 -Verdana.ttf 16 g 28.2003 44.4964 31 “ -11.2432 23.0072 16.1408 -Verdana.ttf 16 g 28.2003 44.4964 32 % -10.3292 54.3188 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 33 £ -10.5227 29.1741 43.3815 -Verdana.ttf 16 g 28.2003 44.4964 34 . 24.7511 6.6555 8.1886 -Verdana.ttf 16 g 28.2003 44.4964 35 2 -10.4778 28.3370 43.3815 -Verdana.ttf 16 g 28.2003 44.4964 36 5 -10.3576 27.5114 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 37 m 0.1070 46.3480 32.8447 -Verdana.ttf 16 g 28.2003 44.4964 38 V -9.1389 37.5109 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 39 6 -10.1496 29.6593 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 40 w 1.2300 42.9667 31.6705 -Verdana.ttf 16 g 28.2003 44.4964 41 T -9.2877 35.8297 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 42 M -9.2560 37.7217 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 43 G -10.3663 38.0483 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 44 b -11.4041 28.2003 45.5224 -Verdana.ttf 16 g 28.2003 44.4964 45 9 -10.3570 29.6593 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 46 ; 1.1770 12.1891 42.1191 -Verdana.ttf 16 g 28.2003 44.4964 47 D -9.4526 35.8587 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 48 L -9.1911 26.6777 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 49 y 1.1332 31.1449 43.3223 -Verdana.ttf 16 g 28.2003 44.4964 50 ‘ -11.5834 11.5036 16.1408 -Verdana.ttf 16 g 28.2003 44.4964 51 \ -11.4503 25.1446 53.0150 -Verdana.ttf 16 g 28.2003 44.4964 52 R -9.3628 34.9855 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 53 < -2.3900 32.8447 32.8447 -Verdana.ttf 16 g 28.2003 44.4964 54 4 -9.1985 32.2369 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 55 8 -10.4768 29.9590 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 56 0 -10.2511 28.9448 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 57 A -9.1734 37.5109 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 58 E -9.3859 27.8774 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 59 B -9.2887 32.0295 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 60 v 1.0414 31.1449 31.6705 -Verdana.ttf 16 g 28.2003 44.4964 61 k -11.5083 29.1741 44.3483 -Verdana.ttf 16 g 28.2003 44.4964 62 J -9.3540 20.1703 43.3815 -Verdana.ttf 16 g 28.2003 44.4964 63 U -9.3200 32.6187 43.3815 -Verdana.ttf 16 g 28.2003 44.4964 64 j -9.3729 16.4964 53.8592 -Verdana.ttf 16 g 28.2003 44.4964 65 ( -11.2225 17.3150 56.0000 -Verdana.ttf 16 g 28.2003 44.4964 66 7 -9.3804 29.1741 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 67 § -10.4128 27.0333 54.3965 -Verdana.ttf 16 g 28.2003 44.4964 68 $ -11.8379 28.8186 54.8039 -Verdana.ttf 16 g 28.2003 44.4964 69 € -10.4600 34.6555 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 70 / -11.7347 25.1446 53.0150 -Verdana.ttf 16 g 28.2003 44.4964 71 C -10.6091 35.1627 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 72 * -11.4799 27.3888 26.3188 -Verdana.ttf 16 g 28.2003 44.4964 73 ” -11.6487 23.0072 16.1408 -Verdana.ttf 16 g 28.2003 44.4964 74 ? -10.6239 23.9705 43.3815 -Verdana.ttf 16 g 28.2003 44.4964 75 { -11.6338 26.6962 55.4929 -Verdana.ttf 16 g 28.2003 44.4964 76 } -11.5507 26.6962 55.4929 -Verdana.ttf 16 g 28.2003 44.4964 77 , 24.7402 12.1891 18.6372 -Verdana.ttf 16 g 28.2003 44.4964 78 I -9.3003 16.4442 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 79 ° -10.6595 22.7964 22.7964 -Verdana.ttf 16 g 28.2003 44.4964 80 K -9.1633 33.3333 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 81 H -9.2177 32.7255 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 82 q 0.3700 28.2003 44.4964 -Verdana.ttf 16 g 28.2003 44.4964 83 & -10.3994 41.1629 44.5557 -Verdana.ttf 16 g 28.2003 44.4964 84 ’ -11.4684 11.5036 16.1408 -Verdana.ttf 16 g 28.2003 44.4964 85 [ -11.5653 15.1741 55.4929 -Verdana.ttf 16 g 28.2003 44.4964 86 - 11.5804 17.6705 4.8447 -Verdana.ttf 16 g 28.2003 44.4964 87 Y -9.2858 35.8297 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 88 Q -10.7117 40.5737 54.5262 -Verdana.ttf 16 g 28.2003 44.4964 89 " -11.1663 17.3150 16.3483 -Verdana.ttf 16 g 28.2003 44.4964 90 ! -9.2983 5.4814 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 91 x 1.3088 31.1449 31.6705 -Verdana.ttf 16 g 28.2003 44.4964 92 ) -11.4666 17.3150 56.0000 -Verdana.ttf 16 g 28.2003 44.4964 93 = 6.0934 33.8114 16.4964 -Verdana.ttf 16 g 28.2003 44.4964 94 + -2.6735 34.9855 34.9855 -Verdana.ttf 16 g 28.2003 44.4964 95 X -9.4031 35.9074 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 96 » 0.4366 28.0000 28.0000 -Verdana.ttf 16 g 28.2003 44.4964 97 ' -11.6439 6.1703 16.3483 -Verdana.ttf 16 g 28.2003 44.4964 98 ¢ -8.6380 27.2855 51.6115 -Verdana.ttf 16 g 28.2003 44.4964 99 Z -9.3814 33.2036 42.2074 -Verdana.ttf 16 g 28.2003 44.4964 100 > -2.4353 32.8447 32.8447 -Verdana.ttf 16 g 28.2003 44.4964 101 ® -10.2365 49.3445 49.3445 -Verdana.ttf 16 g 28.2003 44.4964 102 © -10.4538 49.3445 49.3445 -Verdana.ttf 16 g 28.2003 44.4964 103 ] -11.4238 15.1741 55.4929 -Verdana.ttf 16 g 28.2003 44.4964 104 é -14.9845 28.8152 48.8629 -Verdana.ttf 16 g 28.2003 44.4964 105 z 0.8997 25.5036 31.6705 -Verdana.ttf 16 g 28.2003 44.4964 106 _ 38.1429 37.0038 3.3150 -Verdana.ttf 16 g 28.2003 44.4964 107 ¥ -9.5453 31.1332 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 1 t 3.5975 20.1669 41.8484 -Verdana.ttf 17 d 28.2003 45.5224 2 h -0.0356 26.4669 44.3483 -Verdana.ttf 17 d 28.2003 45.5224 3 a 11.7879 26.7969 34.0188 -Verdana.ttf 17 d 28.2003 45.5224 4 n 11.5700 26.4669 32.8447 -Verdana.ttf 17 d 28.2003 45.5224 5 P 1.9665 27.8519 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 6 o 11.2596 29.3745 34.0188 -Verdana.ttf 17 d 28.2003 45.5224 7 e 11.3586 28.8152 34.0188 -Verdana.ttf 17 d 28.2003 45.5224 8 : 12.7912 6.6555 31.6705 -Verdana.ttf 17 d 28.2003 45.5224 9 r 12.4202 19.6817 31.6705 -Verdana.ttf 17 d 28.2003 45.5224 10 l 0.1446 5.3333 44.3483 -Verdana.ttf 17 d 28.2003 45.5224 11 i 1.9269 5.3333 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 12 1 2.1433 22.9445 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 13 | -0.2177 5.2036 55.4929 -Verdana.ttf 17 d 28.2003 45.5224 14 N 1.9203 31.5514 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 15 f 0.2038 20.5259 44.3483 -Verdana.ttf 17 d 28.2003 45.5224 16 g 11.5152 28.2003 44.4964 -Verdana.ttf 17 d 28.2003 45.5224 17 d -0.0990 28.2003 45.5224 -Verdana.ttf 17 d 28.2003 45.5224 18 W 2.4532 52.3887 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 19 s 11.5512 25.0150 34.0188 -Verdana.ttf 17 d 28.2003 45.5224 20 c 11.3973 25.6820 34.0188 -Verdana.ttf 17 d 28.2003 45.5224 21 u 12.5664 26.4669 32.8447 -Verdana.ttf 17 d 28.2003 45.5224 22 3 0.8183 28.2074 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 23 ~ 16.6972 37.0038 17.5224 -Verdana.ttf 17 d 28.2003 45.5224 24 # 2.2178 36.5186 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 25 O 1.0697 39.3996 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 26 ` -2.7174 11.8592 10.6850 -Verdana.ttf 17 d 28.2003 45.5224 27 @ 0.9653 48.3778 49.6815 -Verdana.ttf 17 d 28.2003 45.5224 28 F 2.0124 26.3478 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 29 S 0.8064 32.5147 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 30 p 11.3157 28.2003 44.4964 -Verdana.ttf 17 d 28.2003 45.5224 31 “ -0.0356 23.0072 16.1408 -Verdana.ttf 17 d 28.2003 45.5224 32 % 0.9163 54.3188 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 33 £ 1.1969 29.1741 43.3815 -Verdana.ttf 17 d 28.2003 45.5224 34 . 36.1024 6.6555 8.1886 -Verdana.ttf 17 d 28.2003 45.5224 35 2 0.7143 28.3370 43.3815 -Verdana.ttf 17 d 28.2003 45.5224 36 5 1.0551 27.5114 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 37 m 11.6272 46.3480 32.8447 -Verdana.ttf 17 d 28.2003 45.5224 38 V 2.1437 37.5109 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 39 6 1.2561 29.6593 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 40 w 12.5907 42.9667 31.6705 -Verdana.ttf 17 d 28.2003 45.5224 41 T 2.0496 35.8297 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 42 M 2.1913 37.7217 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 43 G 0.9221 38.0483 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 44 b -0.0298 28.2003 45.5224 -Verdana.ttf 17 d 28.2003 45.5224 45 9 0.6566 29.6593 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 46 ; 12.7306 12.1891 42.1191 -Verdana.ttf 17 d 28.2003 45.5224 47 D 1.9678 35.8587 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 48 L 2.3519 26.6777 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 49 y 12.5436 31.1449 43.3223 -Verdana.ttf 17 d 28.2003 45.5224 50 ‘ -0.2691 11.5036 16.1408 -Verdana.ttf 17 d 28.2003 45.5224 51 \ -0.2111 25.1446 53.0150 -Verdana.ttf 17 d 28.2003 45.5224 52 R 1.9813 34.9855 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 53 < 9.4390 32.8447 32.8447 -Verdana.ttf 17 d 28.2003 45.5224 54 4 1.9232 32.2369 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 55 8 0.9163 29.9590 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 56 0 1.2675 28.9448 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 57 A 1.9808 37.5109 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 58 E 2.0890 27.8774 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 59 B 2.2844 32.0295 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 60 v 12.6440 31.1449 31.6705 -Verdana.ttf 17 d 28.2003 45.5224 61 k -0.0255 29.1741 44.3483 -Verdana.ttf 17 d 28.2003 45.5224 62 J 1.9976 20.1703 43.3815 -Verdana.ttf 17 d 28.2003 45.5224 63 U 1.9423 32.6187 43.3815 -Verdana.ttf 17 d 28.2003 45.5224 64 j 2.1467 16.4964 53.8592 -Verdana.ttf 17 d 28.2003 45.5224 65 ( 0.0047 17.3150 56.0000 -Verdana.ttf 17 d 28.2003 45.5224 66 7 1.9663 29.1741 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 67 § 0.9264 27.0333 54.3965 -Verdana.ttf 17 d 28.2003 45.5224 68 $ -0.2142 28.8186 54.8039 -Verdana.ttf 17 d 28.2003 45.5224 69 € 0.7760 34.6555 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 70 / 0.0028 25.1446 53.0150 -Verdana.ttf 17 d 28.2003 45.5224 71 C 1.0556 35.1627 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 72 * -0.0370 27.3888 26.3188 -Verdana.ttf 17 d 28.2003 45.5224 73 ” -0.2947 23.0072 16.1408 -Verdana.ttf 17 d 28.2003 45.5224 74 ? 1.2477 23.9705 43.3815 -Verdana.ttf 17 d 28.2003 45.5224 75 { -0.0856 26.6962 55.4929 -Verdana.ttf 17 d 28.2003 45.5224 76 } 0.0390 26.6962 55.4929 -Verdana.ttf 17 d 28.2003 45.5224 77 , 36.0592 12.1891 18.6372 -Verdana.ttf 17 d 28.2003 45.5224 78 I 2.1627 16.4442 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 79 ° 1.1574 22.7964 22.7964 -Verdana.ttf 17 d 28.2003 45.5224 80 K 1.9834 33.3333 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 81 H 2.5233 32.7255 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 82 q 11.3528 28.2003 44.4964 -Verdana.ttf 17 d 28.2003 45.5224 83 & 0.7962 41.1629 44.5557 -Verdana.ttf 17 d 28.2003 45.5224 84 ’ 0.0726 11.5036 16.1408 -Verdana.ttf 17 d 28.2003 45.5224 85 [ -0.2339 15.1741 55.4929 -Verdana.ttf 17 d 28.2003 45.5224 86 - 22.9341 17.6705 4.8447 -Verdana.ttf 17 d 28.2003 45.5224 87 Y 2.3287 35.8297 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 88 Q 0.9163 40.5737 54.5262 -Verdana.ttf 17 d 28.2003 45.5224 89 " 0.0432 17.3150 16.3483 -Verdana.ttf 17 d 28.2003 45.5224 90 ! 1.8495 5.4814 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 91 x 12.7901 31.1449 31.6705 -Verdana.ttf 17 d 28.2003 45.5224 92 ) -0.0831 17.3150 56.0000 -Verdana.ttf 17 d 28.2003 45.5224 93 = 17.4471 33.8114 16.4964 -Verdana.ttf 17 d 28.2003 45.5224 94 + 8.5731 34.9855 34.9855 -Verdana.ttf 17 d 28.2003 45.5224 95 X 2.4754 35.9074 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 96 » 11.6240 28.0000 28.0000 -Verdana.ttf 17 d 28.2003 45.5224 97 ' -0.1331 6.1703 16.3483 -Verdana.ttf 17 d 28.2003 45.5224 98 ¢ 2.6899 27.2855 51.6115 -Verdana.ttf 17 d 28.2003 45.5224 99 Z 2.3226 33.2036 42.2074 -Verdana.ttf 17 d 28.2003 45.5224 100 > 9.3956 32.8447 32.8447 -Verdana.ttf 17 d 28.2003 45.5224 101 ® 0.9095 49.3445 49.3445 -Verdana.ttf 17 d 28.2003 45.5224 102 © 0.7994 49.3445 49.3445 -Verdana.ttf 17 d 28.2003 45.5224 103 ] 0.0737 15.1741 55.4929 -Verdana.ttf 17 d 28.2003 45.5224 104 é -3.6549 28.8152 48.8629 -Verdana.ttf 17 d 28.2003 45.5224 105 z 12.9123 25.5036 31.6705 -Verdana.ttf 17 d 28.2003 45.5224 106 _ 49.5566 37.0038 3.3150 -Verdana.ttf 17 d 28.2003 45.5224 107 ¥ 2.0520 31.1332 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 1 t 1.6630 20.1669 41.8484 -Verdana.ttf 18 W 52.3887 42.2074 2 h -2.1553 26.4669 44.3483 -Verdana.ttf 18 W 52.3887 42.2074 3 a 9.2985 26.7969 34.0188 -Verdana.ttf 18 W 52.3887 42.2074 4 n 9.5666 26.4669 32.8447 -Verdana.ttf 18 W 52.3887 42.2074 5 P 0.1262 27.8519 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 6 o 9.2844 29.3745 34.0188 -Verdana.ttf 18 W 52.3887 42.2074 7 e 9.3429 28.8152 34.0188 -Verdana.ttf 18 W 52.3887 42.2074 8 : 10.8822 6.6555 31.6705 -Verdana.ttf 18 W 52.3887 42.2074 9 r 10.3965 19.6817 31.6705 -Verdana.ttf 18 W 52.3887 42.2074 10 l -2.1361 5.3333 44.3483 -Verdana.ttf 18 W 52.3887 42.2074 11 i -0.1035 5.3333 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 12 1 -0.0610 22.9445 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 13 | -1.9775 5.2036 55.4929 -Verdana.ttf 18 W 52.3887 42.2074 14 N -0.1269 31.5514 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 15 f -2.1746 20.5259 44.3483 -Verdana.ttf 18 W 52.3887 42.2074 16 g 9.9010 28.2003 44.4964 -Verdana.ttf 18 W 52.3887 42.2074 17 d -2.4028 28.2003 45.5224 -Verdana.ttf 18 W 52.3887 42.2074 18 W -0.3178 52.3887 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 19 s 9.1973 25.0150 34.0188 -Verdana.ttf 18 W 52.3887 42.2074 20 c 9.5598 25.6820 34.0188 -Verdana.ttf 18 W 52.3887 42.2074 21 u 10.5017 26.4669 32.8447 -Verdana.ttf 18 W 52.3887 42.2074 22 3 -1.1354 28.2074 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 23 ~ 14.6010 37.0038 17.5224 -Verdana.ttf 18 W 52.3887 42.2074 24 # 0.0752 36.5186 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 25 O -0.9232 39.3996 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 26 ` -5.5861 11.8592 10.6850 -Verdana.ttf 18 W 52.3887 42.2074 27 @ -1.3784 48.3778 49.6815 -Verdana.ttf 18 W 52.3887 42.2074 28 F 0.3298 26.3478 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 29 S -1.2878 32.5147 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 30 p 9.5877 28.2003 44.4964 -Verdana.ttf 18 W 52.3887 42.2074 31 “ -2.4854 23.0072 16.1408 -Verdana.ttf 18 W 52.3887 42.2074 32 % -1.2838 54.3188 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 33 £ -1.0400 29.1741 43.3815 -Verdana.ttf 18 W 52.3887 42.2074 34 . 33.6488 6.6555 8.1886 -Verdana.ttf 18 W 52.3887 42.2074 35 2 -1.4172 28.3370 43.3815 -Verdana.ttf 18 W 52.3887 42.2074 36 5 -1.0564 27.5114 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 37 m 9.4459 46.3480 32.8447 -Verdana.ttf 18 W 52.3887 42.2074 38 V -0.2072 37.5109 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 39 6 -1.4979 29.6593 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 40 w 10.7455 42.9667 31.6705 -Verdana.ttf 18 W 52.3887 42.2074 41 T 0.0044 35.8297 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 42 M -0.3610 37.7217 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 43 G -1.0785 38.0483 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 44 b -2.3051 28.2003 45.5224 -Verdana.ttf 18 W 52.3887 42.2074 45 9 -0.9997 29.6593 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 46 ; 10.7109 12.1891 42.1191 -Verdana.ttf 18 W 52.3887 42.2074 47 D 0.2598 35.8587 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 48 L -0.2773 26.6777 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 49 y 10.7940 31.1449 43.3223 -Verdana.ttf 18 W 52.3887 42.2074 50 ‘ -2.3817 11.5036 16.1408 -Verdana.ttf 18 W 52.3887 42.2074 51 \ -2.1498 25.1446 53.0150 -Verdana.ttf 18 W 52.3887 42.2074 52 R 0.1201 34.9855 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 53 < 7.3150 32.8447 32.8447 -Verdana.ttf 18 W 52.3887 42.2074 54 4 0.2937 32.2369 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 55 8 -1.1356 29.9590 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 56 0 -1.3709 28.9448 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 57 A 0.1107 37.5109 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 58 E -0.0785 27.8774 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 59 B -0.4114 32.0295 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 60 v 10.2169 31.1449 31.6705 -Verdana.ttf 18 W 52.3887 42.2074 61 k -2.1779 29.1741 44.3483 -Verdana.ttf 18 W 52.3887 42.2074 62 J 0.0123 20.1703 43.3815 -Verdana.ttf 18 W 52.3887 42.2074 63 U 0.0896 32.6187 43.3815 -Verdana.ttf 18 W 52.3887 42.2074 64 j 0.0993 16.4964 53.8592 -Verdana.ttf 18 W 52.3887 42.2074 65 ( -2.0735 17.3150 56.0000 -Verdana.ttf 18 W 52.3887 42.2074 66 7 -0.1304 29.1741 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 67 § -1.1180 27.0333 54.3965 -Verdana.ttf 18 W 52.3887 42.2074 68 $ -2.8725 28.8186 54.8039 -Verdana.ttf 18 W 52.3887 42.2074 69 € -1.3860 34.6555 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 70 / -2.1272 25.1446 53.0150 -Verdana.ttf 18 W 52.3887 42.2074 71 C -1.6297 35.1627 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 72 * -2.1523 27.3888 26.3188 -Verdana.ttf 18 W 52.3887 42.2074 73 ” -2.2485 23.0072 16.1408 -Verdana.ttf 18 W 52.3887 42.2074 74 ? -1.3458 23.9705 43.3815 -Verdana.ttf 18 W 52.3887 42.2074 75 { -2.1666 26.6962 55.4929 -Verdana.ttf 18 W 52.3887 42.2074 76 } -2.3893 26.6962 55.4929 -Verdana.ttf 18 W 52.3887 42.2074 77 , 33.7703 12.1891 18.6372 -Verdana.ttf 18 W 52.3887 42.2074 78 I 0.1464 16.4442 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 79 ° -1.2164 22.7964 22.7964 -Verdana.ttf 18 W 52.3887 42.2074 80 K 0.2351 33.3333 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 81 H -0.2869 32.7255 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 82 q 9.0639 28.2003 44.4964 -Verdana.ttf 18 W 52.3887 42.2074 83 & -1.4154 41.1629 44.5557 -Verdana.ttf 18 W 52.3887 42.2074 84 ’ -2.1313 11.5036 16.1408 -Verdana.ttf 18 W 52.3887 42.2074 85 [ -2.2799 15.1741 55.4929 -Verdana.ttf 18 W 52.3887 42.2074 86 - 20.8630 17.6705 4.8447 -Verdana.ttf 18 W 52.3887 42.2074 87 Y 0.0249 35.8297 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 88 Q -0.7350 40.5737 54.5262 -Verdana.ttf 18 W 52.3887 42.2074 89 " -1.7578 17.3150 16.3483 -Verdana.ttf 18 W 52.3887 42.2074 90 ! 0.3484 5.4814 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 91 x 10.0635 31.1449 31.6705 -Verdana.ttf 18 W 52.3887 42.2074 92 ) -1.9024 17.3150 56.0000 -Verdana.ttf 18 W 52.3887 42.2074 93 = 15.1754 33.8114 16.4964 -Verdana.ttf 18 W 52.3887 42.2074 94 + 6.1111 34.9855 34.9855 -Verdana.ttf 18 W 52.3887 42.2074 95 X -0.1106 35.9074 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 96 » 9.5706 28.0000 28.0000 -Verdana.ttf 18 W 52.3887 42.2074 97 ' -1.7214 6.1703 16.3483 -Verdana.ttf 18 W 52.3887 42.2074 98 ¢ 0.8904 27.2855 51.6115 -Verdana.ttf 18 W 52.3887 42.2074 99 Z 0.1066 33.2036 42.2074 -Verdana.ttf 18 W 52.3887 42.2074 100 > 7.1890 32.8447 32.8447 -Verdana.ttf 18 W 52.3887 42.2074 101 ® -1.3702 49.3445 49.3445 -Verdana.ttf 18 W 52.3887 42.2074 102 © -1.0245 49.3445 49.3445 -Verdana.ttf 18 W 52.3887 42.2074 103 ] -2.3832 15.1741 55.4929 -Verdana.ttf 18 W 52.3887 42.2074 104 é -5.7711 28.8152 48.8629 -Verdana.ttf 18 W 52.3887 42.2074 105 z 10.5444 25.5036 31.6705 -Verdana.ttf 18 W 52.3887 42.2074 106 _ 47.4315 37.0038 3.3150 -Verdana.ttf 18 W 52.3887 42.2074 107 ¥ 0.2393 31.1332 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 1 t -7.8801 20.1669 41.8484 -Verdana.ttf 19 s 25.0150 34.0188 2 h -11.5170 26.4669 44.3483 -Verdana.ttf 19 s 25.0150 34.0188 3 a -0.0971 26.7969 34.0188 -Verdana.ttf 19 s 25.0150 34.0188 4 n -0.2394 26.4669 32.8447 -Verdana.ttf 19 s 25.0150 34.0188 5 P -9.3618 27.8519 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 6 o -0.0509 29.3745 34.0188 -Verdana.ttf 19 s 25.0150 34.0188 7 e 0.0870 28.8152 34.0188 -Verdana.ttf 19 s 25.0150 34.0188 8 : 1.3308 6.6555 31.6705 -Verdana.ttf 19 s 25.0150 34.0188 9 r 1.3997 19.6817 31.6705 -Verdana.ttf 19 s 25.0150 34.0188 10 l -11.5521 5.3333 44.3483 -Verdana.ttf 19 s 25.0150 34.0188 11 i -9.3567 5.3333 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 12 1 -9.2609 22.9445 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 13 | -11.6291 5.2036 55.4929 -Verdana.ttf 19 s 25.0150 34.0188 14 N -9.5314 31.5514 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 15 f -11.5804 20.5259 44.3483 -Verdana.ttf 19 s 25.0150 34.0188 16 g 0.0722 28.2003 44.4964 -Verdana.ttf 19 s 25.0150 34.0188 17 d -11.4234 28.2003 45.5224 -Verdana.ttf 19 s 25.0150 34.0188 18 W -9.2830 52.3887 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 19 s -0.1495 25.0150 34.0188 -Verdana.ttf 19 s 25.0150 34.0188 20 c -0.0068 25.6820 34.0188 -Verdana.ttf 19 s 25.0150 34.0188 21 u 1.4522 26.4669 32.8447 -Verdana.ttf 19 s 25.0150 34.0188 22 3 -10.3744 28.2074 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 23 ~ 5.5556 37.0038 17.5224 -Verdana.ttf 19 s 25.0150 34.0188 24 # -9.4078 36.5186 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 25 O -10.6239 39.3996 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 26 ` -14.7789 11.8592 10.6850 -Verdana.ttf 19 s 25.0150 34.0188 27 @ -10.3464 48.3778 49.6815 -Verdana.ttf 19 s 25.0150 34.0188 28 F -9.5180 26.3478 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 29 S -10.5235 32.5147 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 30 p 0.3000 28.2003 44.4964 -Verdana.ttf 19 s 25.0150 34.0188 31 “ -11.7445 23.0072 16.1408 -Verdana.ttf 19 s 25.0150 34.0188 32 % -10.5971 54.3188 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 33 £ -10.6291 29.1741 43.3815 -Verdana.ttf 19 s 25.0150 34.0188 34 . 24.7098 6.6555 8.1886 -Verdana.ttf 19 s 25.0150 34.0188 35 2 -10.6244 28.3370 43.3815 -Verdana.ttf 19 s 25.0150 34.0188 36 5 -10.6392 27.5114 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 37 m -0.0903 46.3480 32.8447 -Verdana.ttf 19 s 25.0150 34.0188 38 V -9.2764 37.5109 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 39 6 -10.4336 29.6593 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 40 w 1.3668 42.9667 31.6705 -Verdana.ttf 19 s 25.0150 34.0188 41 T -9.2591 35.8297 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 42 M -9.2253 37.7217 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 43 G -10.3624 38.0483 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 44 b -11.4259 28.2003 45.5224 -Verdana.ttf 19 s 25.0150 34.0188 45 9 -10.8296 29.6593 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 46 ; 1.2213 12.1891 42.1191 -Verdana.ttf 19 s 25.0150 34.0188 47 D -9.3965 35.8587 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 48 L -9.5232 26.6777 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 49 y 1.2419 31.1449 43.3223 -Verdana.ttf 19 s 25.0150 34.0188 50 ‘ -11.6026 11.5036 16.1408 -Verdana.ttf 19 s 25.0150 34.0188 51 \ -11.4565 25.1446 53.0150 -Verdana.ttf 19 s 25.0150 34.0188 52 R -9.6213 34.9855 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 53 < -2.3439 32.8447 32.8447 -Verdana.ttf 19 s 25.0150 34.0188 54 4 -9.2757 32.2369 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 55 8 -10.4571 29.9590 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 56 0 -10.4465 28.9448 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 57 A -9.3796 37.5109 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 58 E -9.0527 27.8774 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 59 B -9.6156 32.0295 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 60 v 1.1150 31.1449 31.6705 -Verdana.ttf 19 s 25.0150 34.0188 61 k -11.7593 29.1741 44.3483 -Verdana.ttf 19 s 25.0150 34.0188 62 J -9.3604 20.1703 43.3815 -Verdana.ttf 19 s 25.0150 34.0188 63 U -8.9663 32.6187 43.3815 -Verdana.ttf 19 s 25.0150 34.0188 64 j -9.4013 16.4964 53.8592 -Verdana.ttf 19 s 25.0150 34.0188 65 ( -11.4963 17.3150 56.0000 -Verdana.ttf 19 s 25.0150 34.0188 66 7 -9.4292 29.1741 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 67 § -10.5003 27.0333 54.3965 -Verdana.ttf 19 s 25.0150 34.0188 68 $ -11.8114 28.8186 54.8039 -Verdana.ttf 19 s 25.0150 34.0188 69 € -10.4600 34.6555 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 70 / -11.4947 25.1446 53.0150 -Verdana.ttf 19 s 25.0150 34.0188 71 C -10.4595 35.1627 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 72 * -11.7626 27.3888 26.3188 -Verdana.ttf 19 s 25.0150 34.0188 73 ” -11.7770 23.0072 16.1408 -Verdana.ttf 19 s 25.0150 34.0188 74 ? -10.5268 23.9705 43.3815 -Verdana.ttf 19 s 25.0150 34.0188 75 { -12.0134 26.6962 55.4929 -Verdana.ttf 19 s 25.0150 34.0188 76 } -11.7641 26.6962 55.4929 -Verdana.ttf 19 s 25.0150 34.0188 77 , 24.8200 12.1891 18.6372 -Verdana.ttf 19 s 25.0150 34.0188 78 I -9.5002 16.4442 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 79 ° -10.5934 22.7964 22.7964 -Verdana.ttf 19 s 25.0150 34.0188 80 K -9.5064 33.3333 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 81 H -9.2993 32.7255 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 82 q 0.1037 28.2003 44.4964 -Verdana.ttf 19 s 25.0150 34.0188 83 & -10.4465 41.1629 44.5557 -Verdana.ttf 19 s 25.0150 34.0188 84 ’ -11.3792 11.5036 16.1408 -Verdana.ttf 19 s 25.0150 34.0188 85 [ -11.4916 15.1741 55.4929 -Verdana.ttf 19 s 25.0150 34.0188 86 - 11.3139 17.6705 4.8447 -Verdana.ttf 19 s 25.0150 34.0188 87 Y -9.5387 35.8297 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 88 Q -10.5235 40.5737 54.5262 -Verdana.ttf 19 s 25.0150 34.0188 89 " -11.5674 17.3150 16.3483 -Verdana.ttf 19 s 25.0150 34.0188 90 ! -9.2293 5.4814 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 91 x 1.2227 31.1449 31.6705 -Verdana.ttf 19 s 25.0150 34.0188 92 ) -11.4517 17.3150 56.0000 -Verdana.ttf 19 s 25.0150 34.0188 93 = 5.9390 33.8114 16.4964 -Verdana.ttf 19 s 25.0150 34.0188 94 + -3.0249 34.9855 34.9855 -Verdana.ttf 19 s 25.0150 34.0188 95 X -9.0498 35.9074 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 96 » 0.1675 28.0000 28.0000 -Verdana.ttf 19 s 25.0150 34.0188 97 ' -11.2892 6.1703 16.3483 -Verdana.ttf 19 s 25.0150 34.0188 98 ¢ -8.7891 27.2855 51.6115 -Verdana.ttf 19 s 25.0150 34.0188 99 Z -9.2757 33.2036 42.2074 -Verdana.ttf 19 s 25.0150 34.0188 100 > -2.2256 32.8447 32.8447 -Verdana.ttf 19 s 25.0150 34.0188 101 ® -10.6939 49.3445 49.3445 -Verdana.ttf 19 s 25.0150 34.0188 102 © -10.5402 49.3445 49.3445 -Verdana.ttf 19 s 25.0150 34.0188 103 ] -11.6828 15.1741 55.4929 -Verdana.ttf 19 s 25.0150 34.0188 104 é -14.6755 28.8152 48.8629 -Verdana.ttf 19 s 25.0150 34.0188 105 z 1.2416 25.5036 31.6705 -Verdana.ttf 19 s 25.0150 34.0188 106 _ 38.3399 37.0038 3.3150 -Verdana.ttf 19 s 25.0150 34.0188 107 ¥ -9.2681 31.1332 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 1 t -7.9123 20.1669 41.8484 -Verdana.ttf 20 c 25.6820 34.0188 2 h -11.3999 26.4669 44.3483 -Verdana.ttf 20 c 25.6820 34.0188 3 a 0.0087 26.7969 34.0188 -Verdana.ttf 20 c 25.6820 34.0188 4 n 0.3307 26.4669 32.8447 -Verdana.ttf 20 c 25.6820 34.0188 5 P -9.2622 27.8519 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 6 o 0.2278 29.3745 34.0188 -Verdana.ttf 20 c 25.6820 34.0188 7 e 0.1527 28.8152 34.0188 -Verdana.ttf 20 c 25.6820 34.0188 8 : 1.3621 6.6555 31.6705 -Verdana.ttf 20 c 25.6820 34.0188 9 r 1.1741 19.6817 31.6705 -Verdana.ttf 20 c 25.6820 34.0188 10 l -11.4238 5.3333 44.3483 -Verdana.ttf 20 c 25.6820 34.0188 11 i -9.2724 5.3333 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 12 1 -9.2219 22.9445 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 13 | -11.3854 5.2036 55.4929 -Verdana.ttf 20 c 25.6820 34.0188 14 N -9.3123 31.5514 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 15 f -11.4267 20.5259 44.3483 -Verdana.ttf 20 c 25.6820 34.0188 16 g 0.0798 28.2003 44.4964 -Verdana.ttf 20 c 25.6820 34.0188 17 d -11.5036 28.2003 45.5224 -Verdana.ttf 20 c 25.6820 34.0188 18 W -9.5415 52.3887 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 19 s -0.1349 25.0150 34.0188 -Verdana.ttf 20 c 25.6820 34.0188 20 c 0.1274 25.6820 34.0188 -Verdana.ttf 20 c 25.6820 34.0188 21 u 1.1356 26.4669 32.8447 -Verdana.ttf 20 c 25.6820 34.0188 22 3 -10.5739 28.2074 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 23 ~ 5.4240 37.0038 17.5224 -Verdana.ttf 20 c 25.6820 34.0188 24 # -9.4810 36.5186 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 25 O -10.1437 39.3996 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 26 ` -14.8265 11.8592 10.6850 -Verdana.ttf 20 c 25.6820 34.0188 27 @ -10.7274 48.3778 49.6815 -Verdana.ttf 20 c 25.6820 34.0188 28 F -9.4038 26.3478 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 29 S -10.6254 32.5147 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 30 p 0.1038 28.2003 44.4964 -Verdana.ttf 20 c 25.6820 34.0188 31 “ -11.5406 23.0072 16.1408 -Verdana.ttf 20 c 25.6820 34.0188 32 % -11.0708 54.3188 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 33 £ -10.4066 29.1741 43.3815 -Verdana.ttf 20 c 25.6820 34.0188 34 . 24.5676 6.6555 8.1886 -Verdana.ttf 20 c 25.6820 34.0188 35 2 -10.6225 28.3370 43.3815 -Verdana.ttf 20 c 25.6820 34.0188 36 5 -10.5470 27.5114 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 37 m 0.1474 46.3480 32.8447 -Verdana.ttf 20 c 25.6820 34.0188 38 V -9.6319 37.5109 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 39 6 -10.5427 29.6593 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 40 w 1.1805 42.9667 31.6705 -Verdana.ttf 20 c 25.6820 34.0188 41 T -9.4573 35.8297 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 42 M -9.5164 37.7217 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 43 G -10.4066 38.0483 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 44 b -11.6633 28.2003 45.5224 -Verdana.ttf 20 c 25.6820 34.0188 45 9 -10.5249 29.6593 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 46 ; 0.9198 12.1891 42.1191 -Verdana.ttf 20 c 25.6820 34.0188 47 D -9.2354 35.8587 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 48 L -9.4560 26.6777 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 49 y 1.4062 31.1449 43.3223 -Verdana.ttf 20 c 25.6820 34.0188 50 ‘ -11.5587 11.5036 16.1408 -Verdana.ttf 20 c 25.6820 34.0188 51 \ -11.7992 25.1446 53.0150 -Verdana.ttf 20 c 25.6820 34.0188 52 R -9.3271 34.9855 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 53 < -2.2949 32.8447 32.8447 -Verdana.ttf 20 c 25.6820 34.0188 54 4 -9.4026 32.2369 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 55 8 -10.5782 29.9590 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 56 0 -10.6508 28.9448 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 57 A -9.5504 37.5109 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 58 E -9.8237 27.8774 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 59 B -9.5847 32.0295 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 60 v 1.0602 31.1449 31.6705 -Verdana.ttf 20 c 25.6820 34.0188 61 k -11.5064 29.1741 44.3483 -Verdana.ttf 20 c 25.6820 34.0188 62 J -9.1527 20.1703 43.3815 -Verdana.ttf 20 c 25.6820 34.0188 63 U -9.4556 32.6187 43.3815 -Verdana.ttf 20 c 25.6820 34.0188 64 j -9.3872 16.4964 53.8592 -Verdana.ttf 20 c 25.6820 34.0188 65 ( -11.4032 17.3150 56.0000 -Verdana.ttf 20 c 25.6820 34.0188 66 7 -9.3314 29.1741 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 67 § -10.5120 27.0333 54.3965 -Verdana.ttf 20 c 25.6820 34.0188 68 $ -12.0008 28.8186 54.8039 -Verdana.ttf 20 c 25.6820 34.0188 69 € -10.0813 34.6555 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 70 / -11.3229 25.1446 53.0150 -Verdana.ttf 20 c 25.6820 34.0188 71 C -10.5843 35.1627 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 72 * -11.5663 27.3888 26.3188 -Verdana.ttf 20 c 25.6820 34.0188 73 ” -11.3738 23.0072 16.1408 -Verdana.ttf 20 c 25.6820 34.0188 74 ? -10.3121 23.9705 43.3815 -Verdana.ttf 20 c 25.6820 34.0188 75 { -11.3912 26.6962 55.4929 -Verdana.ttf 20 c 25.6820 34.0188 76 } -11.8510 26.6962 55.4929 -Verdana.ttf 20 c 25.6820 34.0188 77 , 24.7007 12.1891 18.6372 -Verdana.ttf 20 c 25.6820 34.0188 78 I -9.1455 16.4442 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 79 ° -10.8170 22.7964 22.7964 -Verdana.ttf 20 c 25.6820 34.0188 80 K -9.5496 33.3333 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 81 H -9.4503 32.7255 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 82 q -0.2720 28.2003 44.4964 -Verdana.ttf 20 c 25.6820 34.0188 83 & -10.3196 41.1629 44.5557 -Verdana.ttf 20 c 25.6820 34.0188 84 ’ -11.2421 11.5036 16.1408 -Verdana.ttf 20 c 25.6820 34.0188 85 [ -11.6502 15.1741 55.4929 -Verdana.ttf 20 c 25.6820 34.0188 86 - 11.5502 17.6705 4.8447 -Verdana.ttf 20 c 25.6820 34.0188 87 Y -9.3156 35.8297 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 88 Q -10.5350 40.5737 54.5262 -Verdana.ttf 20 c 25.6820 34.0188 89 " -11.4754 17.3150 16.3483 -Verdana.ttf 20 c 25.6820 34.0188 90 ! -9.2782 5.4814 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 91 x 1.1161 31.1449 31.6705 -Verdana.ttf 20 c 25.6820 34.0188 92 ) -11.5126 17.3150 56.0000 -Verdana.ttf 20 c 25.6820 34.0188 93 = 5.7717 33.8114 16.4964 -Verdana.ttf 20 c 25.6820 34.0188 94 + -2.8595 34.9855 34.9855 -Verdana.ttf 20 c 25.6820 34.0188 95 X -9.0268 35.9074 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 96 » -0.0103 28.0000 28.0000 -Verdana.ttf 20 c 25.6820 34.0188 97 ' -11.5906 6.1703 16.3483 -Verdana.ttf 20 c 25.6820 34.0188 98 ¢ -8.9603 27.2855 51.6115 -Verdana.ttf 20 c 25.6820 34.0188 99 Z -9.2753 33.2036 42.2074 -Verdana.ttf 20 c 25.6820 34.0188 100 > -2.4146 32.8447 32.8447 -Verdana.ttf 20 c 25.6820 34.0188 101 ® -10.4466 49.3445 49.3445 -Verdana.ttf 20 c 25.6820 34.0188 102 © -10.3777 49.3445 49.3445 -Verdana.ttf 20 c 25.6820 34.0188 103 ] -11.5845 15.1741 55.4929 -Verdana.ttf 20 c 25.6820 34.0188 104 é -14.7304 28.8152 48.8629 -Verdana.ttf 20 c 25.6820 34.0188 105 z 1.3989 25.5036 31.6705 -Verdana.ttf 20 c 25.6820 34.0188 106 _ 37.9978 37.0038 3.3150 -Verdana.ttf 20 c 25.6820 34.0188 107 ¥ -9.2656 31.1332 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 1 t -9.1460 20.1669 41.8484 -Verdana.ttf 21 u 26.4669 32.8447 2 h -12.4216 26.4669 44.3483 -Verdana.ttf 21 u 26.4669 32.8447 3 a -1.1709 26.7969 34.0188 -Verdana.ttf 21 u 26.4669 32.8447 4 n -1.0664 26.4669 32.8447 -Verdana.ttf 21 u 26.4669 32.8447 5 P -10.4317 27.8519 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 6 o -1.3986 29.3745 34.0188 -Verdana.ttf 21 u 26.4669 32.8447 7 e -1.1626 28.8152 34.0188 -Verdana.ttf 21 u 26.4669 32.8447 8 : 0.0351 6.6555 31.6705 -Verdana.ttf 21 u 26.4669 32.8447 9 r 0.0204 19.6817 31.6705 -Verdana.ttf 21 u 26.4669 32.8447 10 l -12.7714 5.3333 44.3483 -Verdana.ttf 21 u 26.4669 32.8447 11 i -10.6272 5.3333 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 12 1 -10.5753 22.9445 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 13 | -12.5841 5.2036 55.4929 -Verdana.ttf 21 u 26.4669 32.8447 14 N -10.1405 31.5514 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 15 f -12.6077 20.5259 44.3483 -Verdana.ttf 21 u 26.4669 32.8447 16 g -1.3818 28.2003 44.4964 -Verdana.ttf 21 u 26.4669 32.8447 17 d -13.0419 28.2003 45.5224 -Verdana.ttf 21 u 26.4669 32.8447 18 W -10.2260 52.3887 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 19 s -1.1889 25.0150 34.0188 -Verdana.ttf 21 u 26.4669 32.8447 20 c -1.0704 25.6820 34.0188 -Verdana.ttf 21 u 26.4669 32.8447 21 u -0.0356 26.4669 32.8447 -Verdana.ttf 21 u 26.4669 32.8447 22 3 -11.9316 28.2074 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 23 ~ 3.8062 37.0038 17.5224 -Verdana.ttf 21 u 26.4669 32.8447 24 # -10.6567 36.5186 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 25 O -11.6032 39.3996 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 26 ` -16.1562 11.8592 10.6850 -Verdana.ttf 21 u 26.4669 32.8447 27 @ -11.7211 48.3778 49.6815 -Verdana.ttf 21 u 26.4669 32.8447 28 F -10.3462 26.3478 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 29 S -11.3920 32.5147 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 30 p -1.0439 28.2003 44.4964 -Verdana.ttf 21 u 26.4669 32.8447 31 “ -12.7676 23.0072 16.1408 -Verdana.ttf 21 u 26.4669 32.8447 32 % -11.8311 54.3188 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 33 £ -11.6039 29.1741 43.3815 -Verdana.ttf 21 u 26.4669 32.8447 34 . 23.3949 6.6555 8.1886 -Verdana.ttf 21 u 26.4669 32.8447 35 2 -11.6721 28.3370 43.3815 -Verdana.ttf 21 u 26.4669 32.8447 36 5 -11.7567 27.5114 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 37 m -1.0515 46.3480 32.8447 -Verdana.ttf 21 u 26.4669 32.8447 38 V -10.7089 37.5109 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 39 6 -11.7537 29.6593 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 40 w 0.0889 42.9667 31.6705 -Verdana.ttf 21 u 26.4669 32.8447 41 T -10.2903 35.8297 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 42 M -10.6733 37.7217 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 43 G -11.7581 38.0483 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 44 b -12.8421 28.2003 45.5224 -Verdana.ttf 21 u 26.4669 32.8447 45 9 -11.5855 29.6593 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 46 ; -0.1428 12.1891 42.1191 -Verdana.ttf 21 u 26.4669 32.8447 47 D -10.3094 35.8587 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 48 L -10.6699 26.6777 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 49 y -0.1476 31.1449 43.3223 -Verdana.ttf 21 u 26.4669 32.8447 50 ‘ -12.9222 11.5036 16.1408 -Verdana.ttf 21 u 26.4669 32.8447 51 \ -12.7873 25.1446 53.0150 -Verdana.ttf 21 u 26.4669 32.8447 52 R -10.8844 34.9855 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 53 < -3.1230 32.8447 32.8447 -Verdana.ttf 21 u 26.4669 32.8447 54 4 -10.6177 32.2369 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 55 8 -11.7629 29.9590 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 56 0 -11.6740 28.9448 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 57 A -10.6345 37.5109 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 58 E -10.3330 27.8774 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 59 B -10.3178 32.0295 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 60 v -0.0636 31.1449 31.6705 -Verdana.ttf 21 u 26.4669 32.8447 61 k -12.7503 29.1741 44.3483 -Verdana.ttf 21 u 26.4669 32.8447 62 J -10.3433 20.1703 43.3815 -Verdana.ttf 21 u 26.4669 32.8447 63 U -10.6537 32.6187 43.3815 -Verdana.ttf 21 u 26.4669 32.8447 64 j -10.8742 16.4964 53.8592 -Verdana.ttf 21 u 26.4669 32.8447 65 ( -12.6676 17.3150 56.0000 -Verdana.ttf 21 u 26.4669 32.8447 66 7 -10.5282 29.1741 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 67 § -11.6577 27.0333 54.3965 -Verdana.ttf 21 u 26.4669 32.8447 68 $ -13.1077 28.8186 54.8039 -Verdana.ttf 21 u 26.4669 32.8447 69 € -11.6770 34.6555 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 70 / -12.9372 25.1446 53.0150 -Verdana.ttf 21 u 26.4669 32.8447 71 C -11.8355 35.1627 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 72 * -12.8787 27.3888 26.3188 -Verdana.ttf 21 u 26.4669 32.8447 73 ” -12.7310 23.0072 16.1408 -Verdana.ttf 21 u 26.4669 32.8447 74 ? -11.6066 23.9705 43.3815 -Verdana.ttf 21 u 26.4669 32.8447 75 { -12.6023 26.6962 55.4929 -Verdana.ttf 21 u 26.4669 32.8447 76 } -12.4369 26.6962 55.4929 -Verdana.ttf 21 u 26.4669 32.8447 77 , 23.1692 12.1891 18.6372 -Verdana.ttf 21 u 26.4669 32.8447 78 I -10.7175 16.4442 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 79 ° -11.5043 22.7964 22.7964 -Verdana.ttf 21 u 26.4669 32.8447 80 K -10.4970 33.3333 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 81 H -10.2840 32.7255 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 82 q -1.3500 28.2003 44.4964 -Verdana.ttf 21 u 26.4669 32.8447 83 & -11.6403 41.1629 44.5557 -Verdana.ttf 21 u 26.4669 32.8447 84 ’ -12.4576 11.5036 16.1408 -Verdana.ttf 21 u 26.4669 32.8447 85 [ -12.7148 15.1741 55.4929 -Verdana.ttf 21 u 26.4669 32.8447 86 - 10.4457 17.6705 4.8447 -Verdana.ttf 21 u 26.4669 32.8447 87 Y -10.5815 35.8297 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 88 Q -11.6135 40.5737 54.5262 -Verdana.ttf 21 u 26.4669 32.8447 89 " -12.7310 17.3150 16.3483 -Verdana.ttf 21 u 26.4669 32.8447 90 ! -10.5301 5.4814 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 91 x -0.0163 31.1449 31.6705 -Verdana.ttf 21 u 26.4669 32.8447 92 ) -12.5936 17.3150 56.0000 -Verdana.ttf 21 u 26.4669 32.8447 93 = 4.7909 33.8114 16.4964 -Verdana.ttf 21 u 26.4669 32.8447 94 + -4.1105 34.9855 34.9855 -Verdana.ttf 21 u 26.4669 32.8447 95 X -10.5840 35.9074 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 96 » -1.2104 28.0000 28.0000 -Verdana.ttf 21 u 26.4669 32.8447 97 ' -12.7917 6.1703 16.3483 -Verdana.ttf 21 u 26.4669 32.8447 98 ¢ -10.2502 27.2855 51.6115 -Verdana.ttf 21 u 26.4669 32.8447 99 Z -10.5662 33.2036 42.2074 -Verdana.ttf 21 u 26.4669 32.8447 100 > -3.7147 32.8447 32.8447 -Verdana.ttf 21 u 26.4669 32.8447 101 ® -11.7067 49.3445 49.3445 -Verdana.ttf 21 u 26.4669 32.8447 102 © -11.6181 49.3445 49.3445 -Verdana.ttf 21 u 26.4669 32.8447 103 ] -12.7661 15.1741 55.4929 -Verdana.ttf 21 u 26.4669 32.8447 104 é -15.9683 28.8152 48.8629 -Verdana.ttf 21 u 26.4669 32.8447 105 z -0.1548 25.5036 31.6705 -Verdana.ttf 21 u 26.4669 32.8447 106 _ 36.7984 37.0038 3.3150 -Verdana.ttf 21 u 26.4669 32.8447 107 ¥ -10.4543 31.1332 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 1 t 2.7504 20.1669 41.8484 -Verdana.ttf 22 3 28.2074 44.5557 2 h -0.6922 26.4669 44.3483 -Verdana.ttf 22 3 28.2074 44.5557 3 a 10.7879 26.7969 34.0188 -Verdana.ttf 22 3 28.2074 44.5557 4 n 10.4106 26.4669 32.8447 -Verdana.ttf 22 3 28.2074 44.5557 5 P 0.9064 27.8519 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 6 o 10.3628 29.3745 34.0188 -Verdana.ttf 22 3 28.2074 44.5557 7 e 10.7412 28.8152 34.0188 -Verdana.ttf 22 3 28.2074 44.5557 8 : 11.7539 6.6555 31.6705 -Verdana.ttf 22 3 28.2074 44.5557 9 r 12.0732 19.6817 31.6705 -Verdana.ttf 22 3 28.2074 44.5557 10 l -0.8644 5.3333 44.3483 -Verdana.ttf 22 3 28.2074 44.5557 11 i 1.2173 5.3333 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 12 1 1.1149 22.9445 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 13 | -1.2196 5.2036 55.4929 -Verdana.ttf 22 3 28.2074 44.5557 14 N 1.2097 31.5514 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 15 f -1.0408 20.5259 44.3483 -Verdana.ttf 22 3 28.2074 44.5557 16 g 10.7081 28.2003 44.4964 -Verdana.ttf 22 3 28.2074 44.5557 17 d -0.7596 28.2003 45.5224 -Verdana.ttf 22 3 28.2074 44.5557 18 W 1.2601 52.3887 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 19 s 10.5843 25.0150 34.0188 -Verdana.ttf 22 3 28.2074 44.5557 20 c 10.5488 25.6820 34.0188 -Verdana.ttf 22 3 28.2074 44.5557 21 u 11.7802 26.4669 32.8447 -Verdana.ttf 22 3 28.2074 44.5557 22 3 0.1701 28.2074 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 23 ~ 15.7185 37.0038 17.5224 -Verdana.ttf 22 3 28.2074 44.5557 24 # 1.1636 36.5186 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 25 O 0.0739 39.3996 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 26 ` -4.5648 11.8592 10.6850 -Verdana.ttf 22 3 28.2074 44.5557 27 @ 0.0000 48.3778 49.6815 -Verdana.ttf 22 3 28.2074 44.5557 28 F 0.9380 26.3478 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 29 S -0.1140 32.5147 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 30 p 10.1615 28.2003 44.4964 -Verdana.ttf 22 3 28.2074 44.5557 31 “ -1.0143 23.0072 16.1408 -Verdana.ttf 22 3 28.2074 44.5557 32 % -0.3010 54.3188 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 33 £ -0.0519 29.1741 43.3815 -Verdana.ttf 22 3 28.2074 44.5557 34 . 35.1737 6.6555 8.1886 -Verdana.ttf 22 3 28.2074 44.5557 35 2 -0.0881 28.3370 43.3815 -Verdana.ttf 22 3 28.2074 44.5557 36 5 -0.0870 27.5114 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 37 m 10.4831 46.3480 32.8447 -Verdana.ttf 22 3 28.2074 44.5557 38 V 1.1756 37.5109 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 39 6 -0.0563 29.6593 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 40 w 11.8959 42.9667 31.6705 -Verdana.ttf 22 3 28.2074 44.5557 41 T 1.2611 35.8297 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 42 M 0.9166 37.7217 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 43 G -0.1037 38.0483 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 44 b -0.8067 28.2003 45.5224 -Verdana.ttf 22 3 28.2074 44.5557 45 9 0.1853 29.6593 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 46 ; 11.8068 12.1891 42.1191 -Verdana.ttf 22 3 28.2074 44.5557 47 D 1.5020 35.8587 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 48 L 1.2532 26.6777 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 49 y 11.4952 31.1449 43.3223 -Verdana.ttf 22 3 28.2074 44.5557 50 ‘ -1.1172 11.5036 16.1408 -Verdana.ttf 22 3 28.2074 44.5557 51 \ -0.8482 25.1446 53.0150 -Verdana.ttf 22 3 28.2074 44.5557 52 R 1.0472 34.9855 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 53 < 8.2445 32.8447 32.8447 -Verdana.ttf 22 3 28.2074 44.5557 54 4 1.3704 32.2369 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 55 8 -0.1792 29.9590 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 56 0 0.1302 28.9448 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 57 A 1.4371 37.5109 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 58 E 0.9876 27.8774 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 59 B 1.4375 32.0295 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 60 v 11.7803 31.1449 31.6705 -Verdana.ttf 22 3 28.2074 44.5557 61 k -0.7851 29.1741 44.3483 -Verdana.ttf 22 3 28.2074 44.5557 62 J 1.0809 20.1703 43.3815 -Verdana.ttf 22 3 28.2074 44.5557 63 U 1.1774 32.6187 43.3815 -Verdana.ttf 22 3 28.2074 44.5557 64 j 1.3914 16.4964 53.8592 -Verdana.ttf 22 3 28.2074 44.5557 65 ( -0.9773 17.3150 56.0000 -Verdana.ttf 22 3 28.2074 44.5557 66 7 1.2238 29.1741 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 67 § -0.0924 27.0333 54.3965 -Verdana.ttf 22 3 28.2074 44.5557 68 $ -1.6039 28.8186 54.8039 -Verdana.ttf 22 3 28.2074 44.5557 69 € 0.2557 34.6555 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 70 / -1.3613 25.1446 53.0150 -Verdana.ttf 22 3 28.2074 44.5557 71 C -0.2634 35.1627 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 72 * -0.5804 27.3888 26.3188 -Verdana.ttf 22 3 28.2074 44.5557 73 ” -0.7370 23.0072 16.1408 -Verdana.ttf 22 3 28.2074 44.5557 74 ? -0.4541 23.9705 43.3815 -Verdana.ttf 22 3 28.2074 44.5557 75 { -0.7422 26.6962 55.4929 -Verdana.ttf 22 3 28.2074 44.5557 76 } -0.8393 26.6962 55.4929 -Verdana.ttf 22 3 28.2074 44.5557 77 , 34.9194 12.1891 18.6372 -Verdana.ttf 22 3 28.2074 44.5557 78 I 0.9787 16.4442 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 79 ° 0.1639 22.7964 22.7964 -Verdana.ttf 22 3 28.2074 44.5557 80 K 1.4128 33.3333 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 81 H 1.4000 32.7255 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 82 q 10.6638 28.2003 44.4964 -Verdana.ttf 22 3 28.2074 44.5557 83 & -0.1490 41.1629 44.5557 -Verdana.ttf 22 3 28.2074 44.5557 84 ’ -0.7535 11.5036 16.1408 -Verdana.ttf 22 3 28.2074 44.5557 85 [ -1.0157 15.1741 55.4929 -Verdana.ttf 22 3 28.2074 44.5557 86 - 22.0399 17.6705 4.8447 -Verdana.ttf 22 3 28.2074 44.5557 87 Y 1.4756 35.8297 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 88 Q -0.1909 40.5737 54.5262 -Verdana.ttf 22 3 28.2074 44.5557 89 " -1.0527 17.3150 16.3483 -Verdana.ttf 22 3 28.2074 44.5557 90 ! 1.4254 5.4814 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 91 x 11.6592 31.1449 31.6705 -Verdana.ttf 22 3 28.2074 44.5557 92 ) -0.9538 17.3150 56.0000 -Verdana.ttf 22 3 28.2074 44.5557 93 = 16.7305 33.8114 16.4964 -Verdana.ttf 22 3 28.2074 44.5557 94 + 7.4852 34.9855 34.9855 -Verdana.ttf 22 3 28.2074 44.5557 95 X 1.1251 35.9074 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 96 » 10.7002 28.0000 28.0000 -Verdana.ttf 22 3 28.2074 44.5557 97 ' -0.8274 6.1703 16.3483 -Verdana.ttf 22 3 28.2074 44.5557 98 ¢ 1.7391 27.2855 51.6115 -Verdana.ttf 22 3 28.2074 44.5557 99 Z 1.0751 33.2036 42.2074 -Verdana.ttf 22 3 28.2074 44.5557 100 > 8.1060 32.8447 32.8447 -Verdana.ttf 22 3 28.2074 44.5557 101 ® -0.1644 49.3445 49.3445 -Verdana.ttf 22 3 28.2074 44.5557 102 © 0.0624 49.3445 49.3445 -Verdana.ttf 22 3 28.2074 44.5557 103 ] -1.0870 15.1741 55.4929 -Verdana.ttf 22 3 28.2074 44.5557 104 é -4.2707 28.8152 48.8629 -Verdana.ttf 22 3 28.2074 44.5557 105 z 11.6610 25.5036 31.6705 -Verdana.ttf 22 3 28.2074 44.5557 106 _ 48.2478 37.0038 3.3150 -Verdana.ttf 22 3 28.2074 44.5557 107 ¥ 1.0116 31.1332 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 1 t -13.2464 20.1669 41.8484 -Verdana.ttf 23 ~ 37.0038 17.5224 2 h -16.5084 26.4669 44.3483 -Verdana.ttf 23 ~ 37.0038 17.5224 3 a -5.0937 26.7969 34.0188 -Verdana.ttf 23 ~ 37.0038 17.5224 4 n -5.3680 26.4669 32.8447 -Verdana.ttf 23 ~ 37.0038 17.5224 5 P -14.6155 27.8519 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 6 o -5.3620 29.3745 34.0188 -Verdana.ttf 23 ~ 37.0038 17.5224 7 e -5.4421 28.8152 34.0188 -Verdana.ttf 23 ~ 37.0038 17.5224 8 : -4.1436 6.6555 31.6705 -Verdana.ttf 23 ~ 37.0038 17.5224 9 r -4.1479 19.6817 31.6705 -Verdana.ttf 23 ~ 37.0038 17.5224 10 l -16.9202 5.3333 44.3483 -Verdana.ttf 23 ~ 37.0038 17.5224 11 i -15.0015 5.3333 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 12 1 -14.6163 22.9445 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 13 | -17.1553 5.2036 55.4929 -Verdana.ttf 23 ~ 37.0038 17.5224 14 N -14.9365 31.5514 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 15 f -17.0357 20.5259 44.3483 -Verdana.ttf 23 ~ 37.0038 17.5224 16 g -5.3065 28.2003 44.4964 -Verdana.ttf 23 ~ 37.0038 17.5224 17 d -17.0582 28.2003 45.5224 -Verdana.ttf 23 ~ 37.0038 17.5224 18 W -14.6529 52.3887 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 19 s -5.1015 25.0150 34.0188 -Verdana.ttf 23 ~ 37.0038 17.5224 20 c -5.2383 25.6820 34.0188 -Verdana.ttf 23 ~ 37.0038 17.5224 21 u -4.0021 26.4669 32.8447 -Verdana.ttf 23 ~ 37.0038 17.5224 22 3 -16.1603 28.2074 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 23 ~ -0.2163 37.0038 17.5224 -Verdana.ttf 23 ~ 37.0038 17.5224 24 # -15.0424 36.5186 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 25 O -15.6339 39.3996 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 26 ` -20.0022 11.8592 10.6850 -Verdana.ttf 23 ~ 37.0038 17.5224 27 @ -16.0762 48.3778 49.6815 -Verdana.ttf 23 ~ 37.0038 17.5224 28 F -14.7783 26.3478 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 29 S -16.2173 32.5147 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 30 p -5.4653 28.2003 44.4964 -Verdana.ttf 23 ~ 37.0038 17.5224 31 “ -16.7280 23.0072 16.1408 -Verdana.ttf 23 ~ 37.0038 17.5224 32 % -15.7153 54.3188 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 33 £ -15.8026 29.1741 43.3815 -Verdana.ttf 23 ~ 37.0038 17.5224 34 . 19.2331 6.6555 8.1886 -Verdana.ttf 23 ~ 37.0038 17.5224 35 2 -16.1127 28.3370 43.3815 -Verdana.ttf 23 ~ 37.0038 17.5224 36 5 -15.8204 27.5114 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 37 m -5.7795 46.3480 32.8447 -Verdana.ttf 23 ~ 37.0038 17.5224 38 V -15.4200 37.5109 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 39 6 -16.1251 29.6593 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 40 w -4.0812 42.9667 31.6705 -Verdana.ttf 23 ~ 37.0038 17.5224 41 T -14.7189 35.8297 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 42 M -14.8223 37.7217 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 43 G -15.8535 38.0483 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 44 b -16.5793 28.2003 45.5224 -Verdana.ttf 23 ~ 37.0038 17.5224 45 9 -15.6920 29.6593 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 46 ; -4.1190 12.1891 42.1191 -Verdana.ttf 23 ~ 37.0038 17.5224 47 D -14.8342 35.8587 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 48 L -14.5353 26.6777 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 49 y -3.7427 31.1449 43.3223 -Verdana.ttf 23 ~ 37.0038 17.5224 50 ‘ -16.8082 11.5036 16.1408 -Verdana.ttf 23 ~ 37.0038 17.5224 51 \ -16.9166 25.1446 53.0150 -Verdana.ttf 23 ~ 37.0038 17.5224 52 R -14.3124 34.9855 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 53 < -7.4727 32.8447 32.8447 -Verdana.ttf 23 ~ 37.0038 17.5224 54 4 -14.6822 32.2369 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 55 8 -16.2221 29.9590 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 56 0 -15.8474 28.9448 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 57 A -14.9078 37.5109 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 58 E -14.7443 27.8774 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 59 B -14.5045 32.0295 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 60 v -4.0669 31.1449 31.6705 -Verdana.ttf 23 ~ 37.0038 17.5224 61 k -16.6986 29.1741 44.3483 -Verdana.ttf 23 ~ 37.0038 17.5224 62 J -14.5477 20.1703 43.3815 -Verdana.ttf 23 ~ 37.0038 17.5224 63 U -14.5727 32.6187 43.3815 -Verdana.ttf 23 ~ 37.0038 17.5224 64 j -14.6780 16.4964 53.8592 -Verdana.ttf 23 ~ 37.0038 17.5224 65 ( -16.8543 17.3150 56.0000 -Verdana.ttf 23 ~ 37.0038 17.5224 66 7 -14.7539 29.1741 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 67 § -15.8767 27.0333 54.3965 -Verdana.ttf 23 ~ 37.0038 17.5224 68 $ -17.4783 28.8186 54.8039 -Verdana.ttf 23 ~ 37.0038 17.5224 69 € -15.9623 34.6555 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 70 / -16.9039 25.1446 53.0150 -Verdana.ttf 23 ~ 37.0038 17.5224 71 C -16.2501 35.1627 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 72 * -16.9856 27.3888 26.3188 -Verdana.ttf 23 ~ 37.0038 17.5224 73 ” -16.8836 23.0072 16.1408 -Verdana.ttf 23 ~ 37.0038 17.5224 74 ? -15.9339 23.9705 43.3815 -Verdana.ttf 23 ~ 37.0038 17.5224 75 { -16.9903 26.6962 55.4929 -Verdana.ttf 23 ~ 37.0038 17.5224 76 } -16.7684 26.6962 55.4929 -Verdana.ttf 23 ~ 37.0038 17.5224 77 , 19.7410 12.1891 18.6372 -Verdana.ttf 23 ~ 37.0038 17.5224 78 I -14.7144 16.4442 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 79 ° -15.8160 22.7964 22.7964 -Verdana.ttf 23 ~ 37.0038 17.5224 80 K -14.7867 33.3333 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 81 H -14.7429 32.7255 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 82 q -5.4288 28.2003 44.4964 -Verdana.ttf 23 ~ 37.0038 17.5224 83 & -15.9093 41.1629 44.5557 -Verdana.ttf 23 ~ 37.0038 17.5224 84 ’ -16.9914 11.5036 16.1408 -Verdana.ttf 23 ~ 37.0038 17.5224 85 [ -17.0693 15.1741 55.4929 -Verdana.ttf 23 ~ 37.0038 17.5224 86 - 6.1705 17.6705 4.8447 -Verdana.ttf 23 ~ 37.0038 17.5224 87 Y -14.7574 35.8297 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 88 Q -15.9152 40.5737 54.5262 -Verdana.ttf 23 ~ 37.0038 17.5224 89 " -16.9290 17.3150 16.3483 -Verdana.ttf 23 ~ 37.0038 17.5224 90 ! -14.9649 5.4814 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 91 x -3.9750 31.1449 31.6705 -Verdana.ttf 23 ~ 37.0038 17.5224 92 ) -17.3154 17.3150 56.0000 -Verdana.ttf 23 ~ 37.0038 17.5224 93 = 0.6924 33.8114 16.4964 -Verdana.ttf 23 ~ 37.0038 17.5224 94 + -8.6664 34.9855 34.9855 -Verdana.ttf 23 ~ 37.0038 17.5224 95 X -14.8266 35.9074 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 96 » -5.2626 28.0000 28.0000 -Verdana.ttf 23 ~ 37.0038 17.5224 97 ' -16.9452 6.1703 16.3483 -Verdana.ttf 23 ~ 37.0038 17.5224 98 ¢ -14.3953 27.2855 51.6115 -Verdana.ttf 23 ~ 37.0038 17.5224 99 Z -15.0413 33.2036 42.2074 -Verdana.ttf 23 ~ 37.0038 17.5224 100 > -7.9312 32.8447 32.8447 -Verdana.ttf 23 ~ 37.0038 17.5224 101 ® -15.8117 49.3445 49.3445 -Verdana.ttf 23 ~ 37.0038 17.5224 102 © -15.7718 49.3445 49.3445 -Verdana.ttf 23 ~ 37.0038 17.5224 103 ] -17.2265 15.1741 55.4929 -Verdana.ttf 23 ~ 37.0038 17.5224 104 é -20.4679 28.8152 48.8629 -Verdana.ttf 23 ~ 37.0038 17.5224 105 z -4.4848 25.5036 31.6705 -Verdana.ttf 23 ~ 37.0038 17.5224 106 _ 32.8092 37.0038 3.3150 -Verdana.ttf 23 ~ 37.0038 17.5224 107 ¥ -14.4602 31.1332 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 1 t 1.5854 20.1669 41.8484 -Verdana.ttf 24 # 36.5186 42.2074 2 h -2.1188 26.4669 44.3483 -Verdana.ttf 24 # 36.5186 42.2074 3 a 9.1956 26.7969 34.0188 -Verdana.ttf 24 # 36.5186 42.2074 4 n 9.2057 26.4669 32.8447 -Verdana.ttf 24 # 36.5186 42.2074 5 P 0.1052 27.8519 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 6 o 9.1706 29.3745 34.0188 -Verdana.ttf 24 # 36.5186 42.2074 7 e 9.0080 28.8152 34.0188 -Verdana.ttf 24 # 36.5186 42.2074 8 : 10.7190 6.6555 31.6705 -Verdana.ttf 24 # 36.5186 42.2074 9 r 10.2115 19.6817 31.6705 -Verdana.ttf 24 # 36.5186 42.2074 10 l -1.9173 5.3333 44.3483 -Verdana.ttf 24 # 36.5186 42.2074 11 i 0.0235 5.3333 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 12 1 -0.3804 22.9445 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 13 | -2.4336 5.2036 55.4929 -Verdana.ttf 24 # 36.5186 42.2074 14 N 0.1437 31.5514 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 15 f -2.5373 20.5259 44.3483 -Verdana.ttf 24 # 36.5186 42.2074 16 g 9.3003 28.2003 44.4964 -Verdana.ttf 24 # 36.5186 42.2074 17 d -2.3548 28.2003 45.5224 -Verdana.ttf 24 # 36.5186 42.2074 18 W -0.1639 52.3887 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 19 s 9.4146 25.0150 34.0188 -Verdana.ttf 24 # 36.5186 42.2074 20 c 9.4824 25.6820 34.0188 -Verdana.ttf 24 # 36.5186 42.2074 21 u 10.7930 26.4669 32.8447 -Verdana.ttf 24 # 36.5186 42.2074 22 3 -1.2372 28.2074 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 23 ~ 14.2903 37.0038 17.5224 -Verdana.ttf 24 # 36.5186 42.2074 24 # 0.1595 36.5186 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 25 O -1.4549 39.3996 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 26 ` -5.1825 11.8592 10.6850 -Verdana.ttf 24 # 36.5186 42.2074 27 @ -0.9137 48.3778 49.6815 -Verdana.ttf 24 # 36.5186 42.2074 28 F -0.0636 26.3478 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 29 S -1.0819 32.5147 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 30 p 9.3718 28.2003 44.4964 -Verdana.ttf 24 # 36.5186 42.2074 31 “ -2.2058 23.0072 16.1408 -Verdana.ttf 24 # 36.5186 42.2074 32 % -1.3795 54.3188 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 33 £ -1.2093 29.1741 43.3815 -Verdana.ttf 24 # 36.5186 42.2074 34 . 34.0627 6.6555 8.1886 -Verdana.ttf 24 # 36.5186 42.2074 35 2 -1.5411 28.3370 43.3815 -Verdana.ttf 24 # 36.5186 42.2074 36 5 -0.9859 27.5114 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 37 m 9.6346 46.3480 32.8447 -Verdana.ttf 24 # 36.5186 42.2074 38 V -0.0033 37.5109 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 39 6 -1.4620 29.6593 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 40 w 10.7661 42.9667 31.6705 -Verdana.ttf 24 # 36.5186 42.2074 41 T -0.2427 35.8297 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 42 M -0.1001 37.7217 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 43 G -0.9152 38.0483 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 44 b -2.2922 28.2003 45.5224 -Verdana.ttf 24 # 36.5186 42.2074 45 9 -0.9449 29.6593 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 46 ; 10.1864 12.1891 42.1191 -Verdana.ttf 24 # 36.5186 42.2074 47 D -0.1274 35.8587 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 48 L -0.2038 26.6777 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 49 y 10.7315 31.1449 43.3223 -Verdana.ttf 24 # 36.5186 42.2074 50 ‘ -1.9323 11.5036 16.1408 -Verdana.ttf 24 # 36.5186 42.2074 51 \ -2.6714 25.1446 53.0150 -Verdana.ttf 24 # 36.5186 42.2074 52 R -0.0501 34.9855 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 53 < 7.1636 32.8447 32.8447 -Verdana.ttf 24 # 36.5186 42.2074 54 4 -0.0678 32.2369 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 55 8 -1.5202 29.9590 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 56 0 -1.1462 28.9448 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 57 A -0.0399 37.5109 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 58 E 0.0014 27.8774 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 59 B 0.1912 32.0295 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 60 v 10.5907 31.1449 31.6705 -Verdana.ttf 24 # 36.5186 42.2074 61 k -2.0494 29.1741 44.3483 -Verdana.ttf 24 # 36.5186 42.2074 62 J -0.2224 20.1703 43.3815 -Verdana.ttf 24 # 36.5186 42.2074 63 U -0.1868 32.6187 43.3815 -Verdana.ttf 24 # 36.5186 42.2074 64 j 0.0769 16.4964 53.8592 -Verdana.ttf 24 # 36.5186 42.2074 65 ( -2.0179 17.3150 56.0000 -Verdana.ttf 24 # 36.5186 42.2074 66 7 0.0899 29.1741 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 67 § -1.1309 27.0333 54.3965 -Verdana.ttf 24 # 36.5186 42.2074 68 $ -2.8205 28.8186 54.8039 -Verdana.ttf 24 # 36.5186 42.2074 69 € -1.3309 34.6555 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 70 / -2.0669 25.1446 53.0150 -Verdana.ttf 24 # 36.5186 42.2074 71 C -0.9924 35.1627 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 72 * -2.1275 27.3888 26.3188 -Verdana.ttf 24 # 36.5186 42.2074 73 ” -1.9264 23.0072 16.1408 -Verdana.ttf 24 # 36.5186 42.2074 74 ? -1.4374 23.9705 43.3815 -Verdana.ttf 24 # 36.5186 42.2074 75 { -2.2163 26.6962 55.4929 -Verdana.ttf 24 # 36.5186 42.2074 76 } -2.5535 26.6962 55.4929 -Verdana.ttf 24 # 36.5186 42.2074 77 , 34.0213 12.1891 18.6372 -Verdana.ttf 24 # 36.5186 42.2074 78 I -0.0678 16.4442 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 79 ° -1.2428 22.7964 22.7964 -Verdana.ttf 24 # 36.5186 42.2074 80 K 0.4633 33.3333 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 81 H 0.0076 32.7255 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 82 q 9.2618 28.2003 44.4964 -Verdana.ttf 24 # 36.5186 42.2074 83 & -1.3577 41.1629 44.5557 -Verdana.ttf 24 # 36.5186 42.2074 84 ’ -2.2220 11.5036 16.1408 -Verdana.ttf 24 # 36.5186 42.2074 85 [ -1.9867 15.1741 55.4929 -Verdana.ttf 24 # 36.5186 42.2074 86 - 21.0236 17.6705 4.8447 -Verdana.ttf 24 # 36.5186 42.2074 87 Y -0.1639 35.8297 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 88 Q -1.1326 40.5737 54.5262 -Verdana.ttf 24 # 36.5186 42.2074 89 " -1.9458 17.3150 16.3483 -Verdana.ttf 24 # 36.5186 42.2074 90 ! 0.3341 5.4814 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 91 x 10.3668 31.1449 31.6705 -Verdana.ttf 24 # 36.5186 42.2074 92 ) -2.4205 17.3150 56.0000 -Verdana.ttf 24 # 36.5186 42.2074 93 = 15.4208 33.8114 16.4964 -Verdana.ttf 24 # 36.5186 42.2074 94 + 6.7472 34.9855 34.9855 -Verdana.ttf 24 # 36.5186 42.2074 95 X 0.1936 35.9074 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 96 » 9.4904 28.0000 28.0000 -Verdana.ttf 24 # 36.5186 42.2074 97 ' -2.0092 6.1703 16.3483 -Verdana.ttf 24 # 36.5186 42.2074 98 ¢ 0.5043 27.2855 51.6115 -Verdana.ttf 24 # 36.5186 42.2074 99 Z 0.1865 33.2036 42.2074 -Verdana.ttf 24 # 36.5186 42.2074 100 > 7.0512 32.8447 32.8447 -Verdana.ttf 24 # 36.5186 42.2074 101 ® -0.8633 49.3445 49.3445 -Verdana.ttf 24 # 36.5186 42.2074 102 © -0.6170 49.3445 49.3445 -Verdana.ttf 24 # 36.5186 42.2074 103 ] -2.0407 15.1741 55.4929 -Verdana.ttf 24 # 36.5186 42.2074 104 é -5.6145 28.8152 48.8629 -Verdana.ttf 24 # 36.5186 42.2074 105 z 10.6248 25.5036 31.6705 -Verdana.ttf 24 # 36.5186 42.2074 106 _ 47.4784 37.0038 3.3150 -Verdana.ttf 24 # 36.5186 42.2074 107 ¥ 0.3055 31.1332 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 1 t 2.8581 20.1669 41.8484 -Verdana.ttf 25 O 39.3996 44.5557 2 h -1.1187 26.4669 44.3483 -Verdana.ttf 25 O 39.3996 44.5557 3 a 10.5920 26.7969 34.0188 -Verdana.ttf 25 O 39.3996 44.5557 4 n 10.5071 26.4669 32.8447 -Verdana.ttf 25 O 39.3996 44.5557 5 P 1.3130 27.8519 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 6 o 10.3965 29.3745 34.0188 -Verdana.ttf 25 O 39.3996 44.5557 7 e 10.6976 28.8152 34.0188 -Verdana.ttf 25 O 39.3996 44.5557 8 : 11.8007 6.6555 31.6705 -Verdana.ttf 25 O 39.3996 44.5557 9 r 12.0766 19.6817 31.6705 -Verdana.ttf 25 O 39.3996 44.5557 10 l -0.7310 5.3333 44.3483 -Verdana.ttf 25 O 39.3996 44.5557 11 i 0.8295 5.3333 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 12 1 1.2020 22.9445 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 13 | -0.7425 5.2036 55.4929 -Verdana.ttf 25 O 39.3996 44.5557 14 N 1.0602 31.5514 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 15 f -0.7125 20.5259 44.3483 -Verdana.ttf 25 O 39.3996 44.5557 16 g 10.5815 28.2003 44.4964 -Verdana.ttf 25 O 39.3996 44.5557 17 d -0.8455 28.2003 45.5224 -Verdana.ttf 25 O 39.3996 44.5557 18 W 1.3467 52.3887 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 19 s 10.4855 25.0150 34.0188 -Verdana.ttf 25 O 39.3996 44.5557 20 c 11.0440 25.6820 34.0188 -Verdana.ttf 25 O 39.3996 44.5557 21 u 11.7354 26.4669 32.8447 -Verdana.ttf 25 O 39.3996 44.5557 22 3 -0.1140 28.2074 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 23 ~ 15.8710 37.0038 17.5224 -Verdana.ttf 25 O 39.3996 44.5557 24 # 1.2173 36.5186 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 25 O 0.1603 39.3996 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 26 ` -4.3842 11.8592 10.6850 -Verdana.ttf 25 O 39.3996 44.5557 27 @ -0.0456 48.3778 49.6815 -Verdana.ttf 25 O 39.3996 44.5557 28 F 1.1519 26.3478 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 29 S -0.0519 32.5147 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 30 p 10.7727 28.2003 44.4964 -Verdana.ttf 25 O 39.3996 44.5557 31 “ -1.0864 23.0072 16.1408 -Verdana.ttf 25 O 39.3996 44.5557 32 % 0.2538 54.3188 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 33 £ -0.0533 29.1741 43.3815 -Verdana.ttf 25 O 39.3996 44.5557 34 . 34.7831 6.6555 8.1886 -Verdana.ttf 25 O 39.3996 44.5557 35 2 0.0106 28.3370 43.3815 -Verdana.ttf 25 O 39.3996 44.5557 36 5 -0.0311 27.5114 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 37 m 10.6394 46.3480 32.8447 -Verdana.ttf 25 O 39.3996 44.5557 38 V 1.0160 37.5109 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 39 6 0.0995 29.6593 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 40 w 11.6179 42.9667 31.6705 -Verdana.ttf 25 O 39.3996 44.5557 41 T 1.2635 35.8297 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 42 M 1.3029 37.7217 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 43 G -0.1498 38.0483 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 44 b -1.0758 28.2003 45.5224 -Verdana.ttf 25 O 39.3996 44.5557 45 9 0.0544 29.6593 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 46 ; 11.9757 12.1891 42.1191 -Verdana.ttf 25 O 39.3996 44.5557 47 D 1.4678 35.8587 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 48 L 0.9065 26.6777 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 49 y 11.4672 31.1449 43.3223 -Verdana.ttf 25 O 39.3996 44.5557 50 ‘ -1.0807 11.5036 16.1408 -Verdana.ttf 25 O 39.3996 44.5557 51 \ -1.0450 25.1446 53.0150 -Verdana.ttf 25 O 39.3996 44.5557 52 R 1.4855 34.9855 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 53 < 7.8944 32.8447 32.8447 -Verdana.ttf 25 O 39.3996 44.5557 54 4 1.1814 32.2369 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 55 8 -0.1556 29.9590 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 56 0 0.2677 28.9448 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 57 A 1.5006 37.5109 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 58 E 1.4492 27.8774 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 59 B 0.7675 32.0295 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 60 v 11.6106 31.1449 31.6705 -Verdana.ttf 25 O 39.3996 44.5557 61 k -1.0493 29.1741 44.3483 -Verdana.ttf 25 O 39.3996 44.5557 62 J 1.0327 20.1703 43.3815 -Verdana.ttf 25 O 39.3996 44.5557 63 U 1.1876 32.6187 43.3815 -Verdana.ttf 25 O 39.3996 44.5557 64 j 0.9939 16.4964 53.8592 -Verdana.ttf 25 O 39.3996 44.5557 65 ( -0.9605 17.3150 56.0000 -Verdana.ttf 25 O 39.3996 44.5557 66 7 0.9424 29.1741 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 67 § -0.3797 27.0333 54.3965 -Verdana.ttf 25 O 39.3996 44.5557 68 $ -1.3940 28.8186 54.8039 -Verdana.ttf 25 O 39.3996 44.5557 69 € -0.1639 34.6555 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 70 / -0.8567 25.1446 53.0150 -Verdana.ttf 25 O 39.3996 44.5557 71 C -0.1897 35.1627 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 72 * -0.8851 27.3888 26.3188 -Verdana.ttf 25 O 39.3996 44.5557 73 ” -1.1814 23.0072 16.1408 -Verdana.ttf 25 O 39.3996 44.5557 74 ? 0.1247 23.9705 43.3815 -Verdana.ttf 25 O 39.3996 44.5557 75 { -0.9048 26.6962 55.4929 -Verdana.ttf 25 O 39.3996 44.5557 76 } -1.0436 26.6962 55.4929 -Verdana.ttf 25 O 39.3996 44.5557 77 , 35.4574 12.1891 18.6372 -Verdana.ttf 25 O 39.3996 44.5557 78 I 1.2515 16.4442 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 79 ° 0.1310 22.7964 22.7964 -Verdana.ttf 25 O 39.3996 44.5557 80 K 1.3091 33.3333 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 81 H 1.0458 32.7255 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 82 q 10.9848 28.2003 44.4964 -Verdana.ttf 25 O 39.3996 44.5557 83 & 0.2595 41.1629 44.5557 -Verdana.ttf 25 O 39.3996 44.5557 84 ’ -1.0510 11.5036 16.1408 -Verdana.ttf 25 O 39.3996 44.5557 85 [ -0.7964 15.1741 55.4929 -Verdana.ttf 25 O 39.3996 44.5557 86 - 22.0903 17.6705 4.8447 -Verdana.ttf 25 O 39.3996 44.5557 87 Y 1.1106 35.8297 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 88 Q -0.2749 40.5737 54.5262 -Verdana.ttf 25 O 39.3996 44.5557 89 " -1.2609 17.3150 16.3483 -Verdana.ttf 25 O 39.3996 44.5557 90 ! 1.2510 5.4814 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 91 x 11.4251 31.1449 31.6705 -Verdana.ttf 25 O 39.3996 44.5557 92 ) -0.8764 17.3150 56.0000 -Verdana.ttf 25 O 39.3996 44.5557 93 = 16.3877 33.8114 16.4964 -Verdana.ttf 25 O 39.3996 44.5557 94 + 7.9662 34.9855 34.9855 -Verdana.ttf 25 O 39.3996 44.5557 95 X 1.5908 35.9074 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 96 » 10.7654 28.0000 28.0000 -Verdana.ttf 25 O 39.3996 44.5557 97 ' -1.2566 6.1703 16.3483 -Verdana.ttf 25 O 39.3996 44.5557 98 ¢ 1.8856 27.2855 51.6115 -Verdana.ttf 25 O 39.3996 44.5557 99 Z 0.8401 33.2036 42.2074 -Verdana.ttf 25 O 39.3996 44.5557 100 > 8.2257 32.8447 32.8447 -Verdana.ttf 25 O 39.3996 44.5557 101 ® -0.3460 49.3445 49.3445 -Verdana.ttf 25 O 39.3996 44.5557 102 © -0.0158 49.3445 49.3445 -Verdana.ttf 25 O 39.3996 44.5557 103 ] -0.9167 15.1741 55.4929 -Verdana.ttf 25 O 39.3996 44.5557 104 é -4.2997 28.8152 48.8629 -Verdana.ttf 25 O 39.3996 44.5557 105 z 11.6517 25.5036 31.6705 -Verdana.ttf 25 O 39.3996 44.5557 106 _ 48.6885 37.0038 3.3150 -Verdana.ttf 25 O 39.3996 44.5557 107 ¥ 1.1002 31.1332 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 1 t 6.9376 20.1669 41.8484 -Verdana.ttf 26 ` 11.8592 10.6850 2 h 3.3771 26.4669 44.3483 -Verdana.ttf 26 ` 11.8592 10.6850 3 a 14.6443 26.7969 34.0188 -Verdana.ttf 26 ` 11.8592 10.6850 4 n 14.8043 26.4669 32.8447 -Verdana.ttf 26 ` 11.8592 10.6850 5 P 5.3627 27.8519 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 6 o 14.8608 29.3745 34.0188 -Verdana.ttf 26 ` 11.8592 10.6850 7 e 15.0276 28.8152 34.0188 -Verdana.ttf 26 ` 11.8592 10.6850 8 : 16.0971 6.6555 31.6705 -Verdana.ttf 26 ` 11.8592 10.6850 9 r 16.1586 19.6817 31.6705 -Verdana.ttf 26 ` 11.8592 10.6850 10 l 3.1700 5.3333 44.3483 -Verdana.ttf 26 ` 11.8592 10.6850 11 i 5.3962 5.3333 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 12 1 5.6838 22.9445 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 13 | 3.4574 5.2036 55.4929 -Verdana.ttf 26 ` 11.8592 10.6850 14 N 5.6588 31.5514 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 15 f 3.3358 20.5259 44.3483 -Verdana.ttf 26 ` 11.8592 10.6850 16 g 14.6889 28.2003 44.4964 -Verdana.ttf 26 ` 11.8592 10.6850 17 d 3.5092 28.2003 45.5224 -Verdana.ttf 26 ` 11.8592 10.6850 18 W 5.4434 52.3887 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 19 s 14.9980 25.0150 34.0188 -Verdana.ttf 26 ` 11.8592 10.6850 20 c 15.0762 25.6820 34.0188 -Verdana.ttf 26 ` 11.8592 10.6850 21 u 16.0886 26.4669 32.8447 -Verdana.ttf 26 ` 11.8592 10.6850 22 3 4.0814 28.2074 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 23 ~ 20.2830 37.0038 17.5224 -Verdana.ttf 26 ` 11.8592 10.6850 24 # 5.6088 36.5186 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 25 O 4.6015 39.3996 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 26 ` 0.2672 11.8592 10.6850 -Verdana.ttf 26 ` 11.8592 10.6850 27 @ 4.3394 48.3778 49.6815 -Verdana.ttf 26 ` 11.8592 10.6850 28 F 5.3454 26.3478 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 29 S 3.9674 32.5147 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 30 p 14.7302 28.2003 44.4964 -Verdana.ttf 26 ` 11.8592 10.6850 31 “ 3.3765 23.0072 16.1408 -Verdana.ttf 26 ` 11.8592 10.6850 32 % 4.2613 54.3188 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 33 £ 4.4846 29.1741 43.3815 -Verdana.ttf 26 ` 11.8592 10.6850 34 . 39.5136 6.6555 8.1886 -Verdana.ttf 26 ` 11.8592 10.6850 35 2 4.2303 28.3370 43.3815 -Verdana.ttf 26 ` 11.8592 10.6850 36 5 4.6048 27.5114 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 37 m 14.5983 46.3480 32.8447 -Verdana.ttf 26 ` 11.8592 10.6850 38 V 5.7153 37.5109 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 39 6 4.4893 29.6593 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 40 w 16.2306 42.9667 31.6705 -Verdana.ttf 26 ` 11.8592 10.6850 41 T 5.4198 35.8297 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 42 M 5.3911 37.7217 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 43 G 4.0372 38.0483 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 44 b 3.3814 28.2003 45.5224 -Verdana.ttf 26 ` 11.8592 10.6850 45 9 4.3932 29.6593 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 46 ; 16.2341 12.1891 42.1191 -Verdana.ttf 26 ` 11.8592 10.6850 47 D 5.5985 35.8587 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 48 L 5.5689 26.6777 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 49 y 16.0687 31.1449 43.3223 -Verdana.ttf 26 ` 11.8592 10.6850 50 ‘ 3.3656 11.5036 16.1408 -Verdana.ttf 26 ` 11.8592 10.6850 51 \ 3.1581 25.1446 53.0150 -Verdana.ttf 26 ` 11.8592 10.6850 52 R 5.4371 34.9855 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 53 < 12.8453 32.8447 32.8447 -Verdana.ttf 26 ` 11.8592 10.6850 54 4 5.3632 32.2369 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 55 8 3.9835 29.9590 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 56 0 4.0146 28.9448 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 57 A 5.3686 37.5109 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 58 E 5.6221 27.8774 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 59 B 5.6721 32.0295 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 60 v 15.8145 31.1449 31.6705 -Verdana.ttf 26 ` 11.8592 10.6850 61 k 3.3591 29.1741 44.3483 -Verdana.ttf 26 ` 11.8592 10.6850 62 J 5.0654 20.1703 43.3815 -Verdana.ttf 26 ` 11.8592 10.6850 63 U 5.2344 32.6187 43.3815 -Verdana.ttf 26 ` 11.8592 10.6850 64 j 5.5804 16.4964 53.8592 -Verdana.ttf 26 ` 11.8592 10.6850 65 ( 3.1175 17.3150 56.0000 -Verdana.ttf 26 ` 11.8592 10.6850 66 7 5.3632 29.1741 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 67 § 4.2456 27.0333 54.3965 -Verdana.ttf 26 ` 11.8592 10.6850 68 $ 2.9087 28.8186 54.8039 -Verdana.ttf 26 ` 11.8592 10.6850 69 € 4.3694 34.6555 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 70 / 3.3939 25.1446 53.0150 -Verdana.ttf 26 ` 11.8592 10.6850 71 C 4.2928 35.1627 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 72 * 3.4266 27.3888 26.3188 -Verdana.ttf 26 ` 11.8592 10.6850 73 ” 3.2579 23.0072 16.1408 -Verdana.ttf 26 ` 11.8592 10.6850 74 ? 4.3443 23.9705 43.3815 -Verdana.ttf 26 ` 11.8592 10.6850 75 { 3.3453 26.6962 55.4929 -Verdana.ttf 26 ` 11.8592 10.6850 76 } 3.4424 26.6962 55.4929 -Verdana.ttf 26 ` 11.8592 10.6850 77 , 39.3223 12.1891 18.6372 -Verdana.ttf 26 ` 11.8592 10.6850 78 I 5.6150 16.4442 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 79 ° 4.3946 22.7964 22.7964 -Verdana.ttf 26 ` 11.8592 10.6850 80 K 5.6588 33.3333 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 81 H 5.4262 32.7255 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 82 q 14.6701 28.2003 44.4964 -Verdana.ttf 26 ` 11.8592 10.6850 83 & 4.4241 41.1629 44.5557 -Verdana.ttf 26 ` 11.8592 10.6850 84 ’ 3.3002 11.5036 16.1408 -Verdana.ttf 26 ` 11.8592 10.6850 85 [ 3.4886 15.1741 55.4929 -Verdana.ttf 26 ` 11.8592 10.6850 86 - 26.4285 17.6705 4.8447 -Verdana.ttf 26 ` 11.8592 10.6850 87 Y 5.5751 35.8297 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 88 Q 4.1876 40.5737 54.5262 -Verdana.ttf 26 ` 11.8592 10.6850 89 " 3.4337 17.3150 16.3483 -Verdana.ttf 26 ` 11.8592 10.6850 90 ! 5.6141 5.4814 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 91 x 15.7865 31.1449 31.6705 -Verdana.ttf 26 ` 11.8592 10.6850 92 ) 3.2901 17.3150 56.0000 -Verdana.ttf 26 ` 11.8592 10.6850 93 = 20.7919 33.8114 16.4964 -Verdana.ttf 26 ` 11.8592 10.6850 94 + 12.0097 34.9855 34.9855 -Verdana.ttf 26 ` 11.8592 10.6850 95 X 5.2670 35.9074 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 96 » 15.3222 28.0000 28.0000 -Verdana.ttf 26 ` 11.8592 10.6850 97 ' 3.2622 6.1703 16.3483 -Verdana.ttf 26 ` 11.8592 10.6850 98 ¢ 6.2327 27.2855 51.6115 -Verdana.ttf 26 ` 11.8592 10.6850 99 Z 5.4133 33.2036 42.2074 -Verdana.ttf 26 ` 11.8592 10.6850 100 > 12.6334 32.8447 32.8447 -Verdana.ttf 26 ` 11.8592 10.6850 101 ® 4.2365 49.3445 49.3445 -Verdana.ttf 26 ` 11.8592 10.6850 102 © 4.5664 49.3445 49.3445 -Verdana.ttf 26 ` 11.8592 10.6850 103 ] 3.4385 15.1741 55.4929 -Verdana.ttf 26 ` 11.8592 10.6850 104 é -0.2139 28.8152 48.8629 -Verdana.ttf 26 ` 11.8592 10.6850 105 z 16.3158 25.5036 31.6705 -Verdana.ttf 26 ` 11.8592 10.6850 106 _ 53.0665 37.0038 3.3150 -Verdana.ttf 26 ` 11.8592 10.6850 107 ¥ 5.5011 31.1332 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 1 t 2.5774 20.1669 41.8484 -Verdana.ttf 27 @ 48.3778 49.6815 2 h -0.8485 26.4669 44.3483 -Verdana.ttf 27 @ 48.3778 49.6815 3 a 10.0991 26.7969 34.0188 -Verdana.ttf 27 @ 48.3778 49.6815 4 n 10.7273 26.4669 32.8447 -Verdana.ttf 27 @ 48.3778 49.6815 5 P 0.9643 27.8519 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 6 o 10.4827 29.3745 34.0188 -Verdana.ttf 27 @ 48.3778 49.6815 7 e 10.3442 28.8152 34.0188 -Verdana.ttf 27 @ 48.3778 49.6815 8 : 11.3021 6.6555 31.6705 -Verdana.ttf 27 @ 48.3778 49.6815 9 r 12.1724 19.6817 31.6705 -Verdana.ttf 27 @ 48.3778 49.6815 10 l -0.9725 5.3333 44.3483 -Verdana.ttf 27 @ 48.3778 49.6815 11 i 1.2034 5.3333 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 12 1 1.3932 22.9445 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 13 | -1.2327 5.2036 55.4929 -Verdana.ttf 27 @ 48.3778 49.6815 14 N 1.4331 31.5514 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 15 f -1.0228 20.5259 44.3483 -Verdana.ttf 27 @ 48.3778 49.6815 16 g 10.4148 28.2003 44.4964 -Verdana.ttf 27 @ 48.3778 49.6815 17 d -0.7941 28.2003 45.5224 -Verdana.ttf 27 @ 48.3778 49.6815 18 W 1.1385 52.3887 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 19 s 10.6002 25.0150 34.0188 -Verdana.ttf 27 @ 48.3778 49.6815 20 c 10.8550 25.6820 34.0188 -Verdana.ttf 27 @ 48.3778 49.6815 21 u 11.8226 26.4669 32.8447 -Verdana.ttf 27 @ 48.3778 49.6815 22 3 0.1595 28.2074 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 23 ~ 15.9890 37.0038 17.5224 -Verdana.ttf 27 @ 48.3778 49.6815 24 # 0.8160 36.5186 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 25 O 0.2008 39.3996 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 26 ` -4.6115 11.8592 10.6850 -Verdana.ttf 27 @ 48.3778 49.6815 27 @ -0.0831 48.3778 49.6815 -Verdana.ttf 27 @ 48.3778 49.6815 28 F 1.1241 26.3478 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 29 S -0.2331 32.5147 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 30 p 10.6776 28.2003 44.4964 -Verdana.ttf 27 @ 48.3778 49.6815 31 “ -1.2180 23.0072 16.1408 -Verdana.ttf 27 @ 48.3778 49.6815 32 % -0.3158 54.3188 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 33 £ -0.0545 29.1741 43.3815 -Verdana.ttf 27 @ 48.3778 49.6815 34 . 34.7629 6.6555 8.1886 -Verdana.ttf 27 @ 48.3778 49.6815 35 2 0.5426 28.3370 43.3815 -Verdana.ttf 27 @ 48.3778 49.6815 36 5 -0.1116 27.5114 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 37 m 10.6690 46.3480 32.8447 -Verdana.ttf 27 @ 48.3778 49.6815 38 V 1.1948 37.5109 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 39 6 0.1644 29.6593 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 40 w 11.9297 42.9667 31.6705 -Verdana.ttf 27 @ 48.3778 49.6815 41 T 1.3039 35.8297 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 42 M 1.2467 37.7217 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 43 G -0.1446 38.0483 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 44 b -0.7575 28.2003 45.5224 -Verdana.ttf 27 @ 48.3778 49.6815 45 9 -0.0501 29.6593 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 46 ; 12.1387 12.1891 42.1191 -Verdana.ttf 27 @ 48.3778 49.6815 47 D 1.3924 35.8587 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 48 L 1.0035 26.6777 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 49 y 11.4755 31.1449 43.3223 -Verdana.ttf 27 @ 48.3778 49.6815 50 ‘ -0.6609 11.5036 16.1408 -Verdana.ttf 27 @ 48.3778 49.6815 51 \ -0.6878 25.1446 53.0150 -Verdana.ttf 27 @ 48.3778 49.6815 52 R 1.3081 34.9855 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 53 < 8.1858 32.8447 32.8447 -Verdana.ttf 27 @ 48.3778 49.6815 54 4 1.0752 32.2369 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 55 8 0.2823 29.9590 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 56 0 0.1015 28.9448 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 57 A 1.0280 37.5109 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 58 E 1.1346 27.8774 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 59 B 1.5561 32.0295 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 60 v 11.7201 31.1449 31.6705 -Verdana.ttf 27 @ 48.3778 49.6815 61 k -0.9510 29.1741 44.3483 -Verdana.ttf 27 @ 48.3778 49.6815 62 J 1.4226 20.1703 43.3815 -Verdana.ttf 27 @ 48.3778 49.6815 63 U 1.4521 32.6187 43.3815 -Verdana.ttf 27 @ 48.3778 49.6815 64 j 1.2448 16.4964 53.8592 -Verdana.ttf 27 @ 48.3778 49.6815 65 ( -1.1570 17.3150 56.0000 -Verdana.ttf 27 @ 48.3778 49.6815 66 7 1.1981 29.1741 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 67 § 0.0251 27.0333 54.3965 -Verdana.ttf 27 @ 48.3778 49.6815 68 $ -1.3927 28.8186 54.8039 -Verdana.ttf 27 @ 48.3778 49.6815 69 € -0.1356 34.6555 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 70 / -1.1173 25.1446 53.0150 -Verdana.ttf 27 @ 48.3778 49.6815 71 C -0.1650 35.1627 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 72 * -0.9355 27.3888 26.3188 -Verdana.ttf 27 @ 48.3778 49.6815 73 ” -1.0879 23.0072 16.1408 -Verdana.ttf 27 @ 48.3778 49.6815 74 ? -0.0572 23.9705 43.3815 -Verdana.ttf 27 @ 48.3778 49.6815 75 { -0.9585 26.6962 55.4929 -Verdana.ttf 27 @ 48.3778 49.6815 76 } -0.9730 26.6962 55.4929 -Verdana.ttf 27 @ 48.3778 49.6815 77 , 34.9144 12.1891 18.6372 -Verdana.ttf 27 @ 48.3778 49.6815 78 I 1.4150 16.4442 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 79 ° 0.2413 22.7964 22.7964 -Verdana.ttf 27 @ 48.3778 49.6815 80 K 0.9588 33.3333 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 81 H 1.0690 32.7255 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 82 q 10.6061 28.2003 44.4964 -Verdana.ttf 27 @ 48.3778 49.6815 83 & -0.1745 41.1629 44.5557 -Verdana.ttf 27 @ 48.3778 49.6815 84 ’ -0.7382 11.5036 16.1408 -Verdana.ttf 27 @ 48.3778 49.6815 85 [ -0.9879 15.1741 55.4929 -Verdana.ttf 27 @ 48.3778 49.6815 86 - 22.0524 17.6705 4.8447 -Verdana.ttf 27 @ 48.3778 49.6815 87 Y 1.3674 35.8297 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 88 Q -0.2139 40.5737 54.5262 -Verdana.ttf 27 @ 48.3778 49.6815 89 " -1.1441 17.3150 16.3483 -Verdana.ttf 27 @ 48.3778 49.6815 90 ! 1.4076 5.4814 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 91 x 11.6034 31.1449 31.6705 -Verdana.ttf 27 @ 48.3778 49.6815 92 ) -1.2805 17.3150 56.0000 -Verdana.ttf 27 @ 48.3778 49.6815 93 = 16.5229 33.8114 16.4964 -Verdana.ttf 27 @ 48.3778 49.6815 94 + 7.5356 34.9855 34.9855 -Verdana.ttf 27 @ 48.3778 49.6815 95 X 1.1722 35.9074 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 96 » 10.6458 28.0000 28.0000 -Verdana.ttf 27 @ 48.3778 49.6815 97 ' -1.1206 6.1703 16.3483 -Verdana.ttf 27 @ 48.3778 49.6815 98 ¢ 1.8794 27.2855 51.6115 -Verdana.ttf 27 @ 48.3778 49.6815 99 Z 1.7582 33.2036 42.2074 -Verdana.ttf 27 @ 48.3778 49.6815 100 > 7.8574 32.8447 32.8447 -Verdana.ttf 27 @ 48.3778 49.6815 101 ® 0.2144 49.3445 49.3445 -Verdana.ttf 27 @ 48.3778 49.6815 102 © -0.2841 49.3445 49.3445 -Verdana.ttf 27 @ 48.3778 49.6815 103 ] -0.8025 15.1741 55.4929 -Verdana.ttf 27 @ 48.3778 49.6815 104 é -4.4212 28.8152 48.8629 -Verdana.ttf 27 @ 48.3778 49.6815 105 z 11.7528 25.5036 31.6705 -Verdana.ttf 27 @ 48.3778 49.6815 106 _ 48.4862 37.0038 3.3150 -Verdana.ttf 27 @ 48.3778 49.6815 107 ¥ 0.9641 31.1332 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 1 t 1.6234 20.1669 41.8484 -Verdana.ttf 28 F 26.3478 42.2074 2 h -2.3326 26.4669 44.3483 -Verdana.ttf 28 F 26.3478 42.2074 3 a 9.4662 26.7969 34.0188 -Verdana.ttf 28 F 26.3478 42.2074 4 n 9.3628 26.4669 32.8447 -Verdana.ttf 28 F 26.3478 42.2074 5 P -0.1720 27.8519 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 6 o 9.5767 29.3745 34.0188 -Verdana.ttf 28 F 26.3478 42.2074 7 e 9.4599 28.8152 34.0188 -Verdana.ttf 28 F 26.3478 42.2074 8 : 10.5816 6.6555 31.6705 -Verdana.ttf 28 F 26.3478 42.2074 9 r 10.5514 19.6817 31.6705 -Verdana.ttf 28 F 26.3478 42.2074 10 l -2.3351 5.3333 44.3483 -Verdana.ttf 28 F 26.3478 42.2074 11 i 0.2658 5.3333 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 12 1 0.2720 22.9445 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 13 | -1.8884 5.2036 55.4929 -Verdana.ttf 28 F 26.3478 42.2074 14 N 0.2191 31.5514 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 15 f -1.8227 20.5259 44.3483 -Verdana.ttf 28 F 26.3478 42.2074 16 g 9.4679 28.2003 44.4964 -Verdana.ttf 28 F 26.3478 42.2074 17 d -2.2265 28.2003 45.5224 -Verdana.ttf 28 F 26.3478 42.2074 18 W 0.1816 52.3887 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 19 s 9.2325 25.0150 34.0188 -Verdana.ttf 28 F 26.3478 42.2074 20 c 9.5691 25.6820 34.0188 -Verdana.ttf 28 F 26.3478 42.2074 21 u 10.6490 26.4669 32.8447 -Verdana.ttf 28 F 26.3478 42.2074 22 3 -1.2271 28.2074 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 23 ~ 14.8583 37.0038 17.5224 -Verdana.ttf 28 F 26.3478 42.2074 24 # 0.0204 36.5186 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 25 O -1.0707 39.3996 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 26 ` -5.5079 11.8592 10.6850 -Verdana.ttf 28 F 26.3478 42.2074 27 @ -1.2713 48.3778 49.6815 -Verdana.ttf 28 F 26.3478 42.2074 28 F 0.4321 26.3478 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 29 S -1.2598 32.5147 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 30 p 9.4815 28.2003 44.4964 -Verdana.ttf 28 F 26.3478 42.2074 31 “ -2.5504 23.0072 16.1408 -Verdana.ttf 28 F 26.3478 42.2074 32 % -1.5701 54.3188 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 33 £ -1.2068 29.1741 43.3815 -Verdana.ttf 28 F 26.3478 42.2074 34 . 33.9193 6.6555 8.1886 -Verdana.ttf 28 F 26.3478 42.2074 35 2 -1.1607 28.3370 43.3815 -Verdana.ttf 28 F 26.3478 42.2074 36 5 -1.1730 27.5114 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 37 m 9.6384 46.3480 32.8447 -Verdana.ttf 28 F 26.3478 42.2074 38 V 0.1701 37.5109 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 39 6 -1.1962 29.6593 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 40 w 10.6776 42.9667 31.6705 -Verdana.ttf 28 F 26.3478 42.2074 41 T -0.1687 35.8297 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 42 M 0.2158 37.7217 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 43 G -1.2093 38.0483 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 44 b -2.0054 28.2003 45.5224 -Verdana.ttf 28 F 26.3478 42.2074 45 9 -0.9700 29.6593 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 46 ; 10.4346 12.1891 42.1191 -Verdana.ttf 28 F 26.3478 42.2074 47 D 0.1171 35.8587 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 48 L 0.1226 26.6777 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 49 y 10.0871 31.1449 43.3223 -Verdana.ttf 28 F 26.3478 42.2074 50 ‘ -1.9518 11.5036 16.1408 -Verdana.ttf 28 F 26.3478 42.2074 51 \ -2.1927 25.1446 53.0150 -Verdana.ttf 28 F 26.3478 42.2074 52 R 0.0697 34.9855 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 53 < 7.1947 32.8447 32.8447 -Verdana.ttf 28 F 26.3478 42.2074 54 4 0.1135 32.2369 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 55 8 -1.1687 29.9590 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 56 0 -1.3761 28.9448 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 57 A -0.3341 37.5109 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 58 E -0.0838 27.8774 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 59 B -0.2538 32.0295 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 60 v 10.5960 31.1449 31.6705 -Verdana.ttf 28 F 26.3478 42.2074 61 k -2.2457 29.1741 44.3483 -Verdana.ttf 28 F 26.3478 42.2074 62 J 0.0783 20.1703 43.3815 -Verdana.ttf 28 F 26.3478 42.2074 63 U -0.1241 32.6187 43.3815 -Verdana.ttf 28 F 26.3478 42.2074 64 j -0.0465 16.4964 53.8592 -Verdana.ttf 28 F 26.3478 42.2074 65 ( -2.2581 17.3150 56.0000 -Verdana.ttf 28 F 26.3478 42.2074 66 7 0.0523 29.1741 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 67 § -0.9920 27.0333 54.3965 -Verdana.ttf 28 F 26.3478 42.2074 68 $ -2.8027 28.8186 54.8039 -Verdana.ttf 28 F 26.3478 42.2074 69 € -1.2332 34.6555 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 70 / -1.9323 25.1446 53.0150 -Verdana.ttf 28 F 26.3478 42.2074 71 C -1.3946 35.1627 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 72 * -2.0875 27.3888 26.3188 -Verdana.ttf 28 F 26.3478 42.2074 73 ” -1.9568 23.0072 16.1408 -Verdana.ttf 28 F 26.3478 42.2074 74 ? -1.2798 23.9705 43.3815 -Verdana.ttf 28 F 26.3478 42.2074 75 { -2.1437 26.6962 55.4929 -Verdana.ttf 28 F 26.3478 42.2074 76 } -2.1317 26.6962 55.4929 -Verdana.ttf 28 F 26.3478 42.2074 77 , 33.7867 12.1891 18.6372 -Verdana.ttf 28 F 26.3478 42.2074 78 I 0.0134 16.4442 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 79 ° -1.0482 22.7964 22.7964 -Verdana.ttf 28 F 26.3478 42.2074 80 K -0.0736 33.3333 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 81 H 0.1578 32.7255 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 82 q 9.1879 28.2003 44.4964 -Verdana.ttf 28 F 26.3478 42.2074 83 & -1.1708 41.1629 44.5557 -Verdana.ttf 28 F 26.3478 42.2074 84 ’ -2.0168 11.5036 16.1408 -Verdana.ttf 28 F 26.3478 42.2074 85 [ -1.9395 15.1741 55.4929 -Verdana.ttf 28 F 26.3478 42.2074 86 - 21.2455 17.6705 4.8447 -Verdana.ttf 28 F 26.3478 42.2074 87 Y 0.0636 35.8297 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 88 Q -1.2414 40.5737 54.5262 -Verdana.ttf 28 F 26.3478 42.2074 89 " -2.2624 17.3150 16.3483 -Verdana.ttf 28 F 26.3478 42.2074 90 ! 0.1889 5.4814 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 91 x 10.4273 31.1449 31.6705 -Verdana.ttf 28 F 26.3478 42.2074 92 ) -2.1375 17.3150 56.0000 -Verdana.ttf 28 F 26.3478 42.2074 93 = 15.3075 33.8114 16.4964 -Verdana.ttf 28 F 26.3478 42.2074 94 + 6.2428 34.9855 34.9855 -Verdana.ttf 28 F 26.3478 42.2074 95 X -0.0692 35.9074 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 96 » 9.8127 28.0000 28.0000 -Verdana.ttf 28 F 26.3478 42.2074 97 ' -2.3240 6.1703 16.3483 -Verdana.ttf 28 F 26.3478 42.2074 98 ¢ 0.5399 27.2855 51.6115 -Verdana.ttf 28 F 26.3478 42.2074 99 Z 0.3341 33.2036 42.2074 -Verdana.ttf 28 F 26.3478 42.2074 100 > 7.1552 32.8447 32.8447 -Verdana.ttf 28 F 26.3478 42.2074 101 ® -1.0043 49.3445 49.3445 -Verdana.ttf 28 F 26.3478 42.2074 102 © -1.3131 49.3445 49.3445 -Verdana.ttf 28 F 26.3478 42.2074 103 ] -2.2826 15.1741 55.4929 -Verdana.ttf 28 F 26.3478 42.2074 104 é -5.7371 28.8152 48.8629 -Verdana.ttf 28 F 26.3478 42.2074 105 z 10.3130 25.5036 31.6705 -Verdana.ttf 28 F 26.3478 42.2074 106 _ 47.1742 37.0038 3.3150 -Verdana.ttf 28 F 26.3478 42.2074 107 ¥ -0.2163 31.1332 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 1 t 2.6967 20.1669 41.8484 -Verdana.ttf 29 S 32.5147 44.5557 2 h -1.0441 26.4669 44.3483 -Verdana.ttf 29 S 32.5147 44.5557 3 a 10.5572 26.7969 34.0188 -Verdana.ttf 29 S 32.5147 44.5557 4 n 10.6964 26.4669 32.8447 -Verdana.ttf 29 S 32.5147 44.5557 5 P 1.1291 27.8519 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 6 o 10.5201 29.3745 34.0188 -Verdana.ttf 29 S 32.5147 44.5557 7 e 10.2807 28.8152 34.0188 -Verdana.ttf 29 S 32.5147 44.5557 8 : 11.6178 6.6555 31.6705 -Verdana.ttf 29 S 32.5147 44.5557 9 r 11.9782 19.6817 31.6705 -Verdana.ttf 29 S 32.5147 44.5557 10 l -1.1618 5.3333 44.3483 -Verdana.ttf 29 S 32.5147 44.5557 11 i 1.2673 5.3333 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 12 1 0.9807 22.9445 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 13 | -0.9527 5.2036 55.4929 -Verdana.ttf 29 S 32.5147 44.5557 14 N 1.1552 31.5514 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 15 f -0.5703 20.5259 44.3483 -Verdana.ttf 29 S 32.5147 44.5557 16 g 10.3753 28.2003 44.4964 -Verdana.ttf 29 S 32.5147 44.5557 17 d -1.0186 28.2003 45.5224 -Verdana.ttf 29 S 32.5147 44.5557 18 W 1.3449 52.3887 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 19 s 10.4618 25.0150 34.0188 -Verdana.ttf 29 S 32.5147 44.5557 20 c 10.3197 25.6820 34.0188 -Verdana.ttf 29 S 32.5147 44.5557 21 u 11.6932 26.4669 32.8447 -Verdana.ttf 29 S 32.5147 44.5557 22 3 -0.0432 28.2074 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 23 ~ 15.7200 37.0038 17.5224 -Verdana.ttf 29 S 32.5147 44.5557 24 # 1.2213 36.5186 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 25 O 0.0144 39.3996 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 26 ` -4.4205 11.8592 10.6850 -Verdana.ttf 29 S 32.5147 44.5557 27 @ -0.0831 48.3778 49.6815 -Verdana.ttf 29 S 32.5147 44.5557 28 F 1.1208 26.3478 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 29 S 0.4112 32.5147 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 30 p 10.7185 28.2003 44.4964 -Verdana.ttf 29 S 32.5147 44.5557 31 “ -1.3367 23.0072 16.1408 -Verdana.ttf 29 S 32.5147 44.5557 32 % -0.1178 54.3188 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 33 £ -0.2264 29.1741 43.3815 -Verdana.ttf 29 S 32.5147 44.5557 34 . 35.5236 6.6555 8.1886 -Verdana.ttf 29 S 32.5147 44.5557 35 2 0.0312 28.3370 43.3815 -Verdana.ttf 29 S 32.5147 44.5557 36 5 -0.0980 27.5114 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 37 m 10.4201 46.3480 32.8447 -Verdana.ttf 29 S 32.5147 44.5557 38 V 1.1259 37.5109 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 39 6 -0.3076 29.6593 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 40 w 11.7682 42.9667 31.6705 -Verdana.ttf 29 S 32.5147 44.5557 41 T 0.8367 35.8297 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 42 M 1.0467 37.7217 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 43 G 0.1436 38.0483 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 44 b -0.9519 28.2003 45.5224 -Verdana.ttf 29 S 32.5147 44.5557 45 9 -0.2543 29.6593 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 46 ; 11.8835 12.1891 42.1191 -Verdana.ttf 29 S 32.5147 44.5557 47 D 0.9097 35.8587 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 48 L 0.7439 26.6777 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 49 y 11.8768 31.1449 43.3223 -Verdana.ttf 29 S 32.5147 44.5557 50 ‘ -1.1488 11.5036 16.1408 -Verdana.ttf 29 S 32.5147 44.5557 51 \ -1.2124 25.1446 53.0150 -Verdana.ttf 29 S 32.5147 44.5557 52 R 1.1439 34.9855 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 53 < 8.3975 32.8447 32.8447 -Verdana.ttf 29 S 32.5147 44.5557 54 4 1.2656 32.2369 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 55 8 0.1037 29.9590 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 56 0 0.0206 28.9448 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 57 A 0.8485 37.5109 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 58 E 1.0174 27.8774 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 59 B 1.4831 32.0295 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 60 v 11.6058 31.1449 31.6705 -Verdana.ttf 29 S 32.5147 44.5557 61 k -0.8145 29.1741 44.3483 -Verdana.ttf 29 S 32.5147 44.5557 62 J 1.0194 20.1703 43.3815 -Verdana.ttf 29 S 32.5147 44.5557 63 U 1.1789 32.6187 43.3815 -Verdana.ttf 29 S 32.5147 44.5557 64 j 1.2764 16.4964 53.8592 -Verdana.ttf 29 S 32.5147 44.5557 65 ( -0.9714 17.3150 56.0000 -Verdana.ttf 29 S 32.5147 44.5557 66 7 1.3515 29.1741 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 67 § 0.0077 27.0333 54.3965 -Verdana.ttf 29 S 32.5147 44.5557 68 $ -1.2136 28.8186 54.8039 -Verdana.ttf 29 S 32.5147 44.5557 69 € -0.0246 34.6555 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 70 / -1.0172 25.1446 53.0150 -Verdana.ttf 29 S 32.5147 44.5557 71 C 0.0280 35.1627 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 72 * -1.1488 27.3888 26.3188 -Verdana.ttf 29 S 32.5147 44.5557 73 ” -1.2076 23.0072 16.1408 -Verdana.ttf 29 S 32.5147 44.5557 74 ? 0.2532 23.9705 43.3815 -Verdana.ttf 29 S 32.5147 44.5557 75 { -0.8611 26.6962 55.4929 -Verdana.ttf 29 S 32.5147 44.5557 76 } -0.7461 26.6962 55.4929 -Verdana.ttf 29 S 32.5147 44.5557 77 , 35.0823 12.1891 18.6372 -Verdana.ttf 29 S 32.5147 44.5557 78 I 1.4287 16.4442 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 79 ° -0.2121 22.7964 22.7964 -Verdana.ttf 29 S 32.5147 44.5557 80 K 1.0454 33.3333 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 81 H 1.1370 32.7255 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 82 q 10.4248 28.2003 44.4964 -Verdana.ttf 29 S 32.5147 44.5557 83 & -0.2217 41.1629 44.5557 -Verdana.ttf 29 S 32.5147 44.5557 84 ’ -0.6134 11.5036 16.1408 -Verdana.ttf 29 S 32.5147 44.5557 85 [ -0.6957 15.1741 55.4929 -Verdana.ttf 29 S 32.5147 44.5557 86 - 21.9913 17.6705 4.8447 -Verdana.ttf 29 S 32.5147 44.5557 87 Y 1.3264 35.8297 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 88 Q -0.2808 40.5737 54.5262 -Verdana.ttf 29 S 32.5147 44.5557 89 " -0.8449 17.3150 16.3483 -Verdana.ttf 29 S 32.5147 44.5557 90 ! 1.2956 5.4814 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 91 x 11.5912 31.1449 31.6705 -Verdana.ttf 29 S 32.5147 44.5557 92 ) -0.8431 17.3150 56.0000 -Verdana.ttf 29 S 32.5147 44.5557 93 = 16.4653 33.8114 16.4964 -Verdana.ttf 29 S 32.5147 44.5557 94 + 7.5425 34.9855 34.9855 -Verdana.ttf 29 S 32.5147 44.5557 95 X 1.2115 35.9074 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 96 » 10.9710 28.0000 28.0000 -Verdana.ttf 29 S 32.5147 44.5557 97 ' -0.4470 6.1703 16.3483 -Verdana.ttf 29 S 32.5147 44.5557 98 ¢ 1.5936 27.2855 51.6115 -Verdana.ttf 29 S 32.5147 44.5557 99 Z 1.2602 33.2036 42.2074 -Verdana.ttf 29 S 32.5147 44.5557 100 > 8.1537 32.8447 32.8447 -Verdana.ttf 29 S 32.5147 44.5557 101 ® 0.0870 49.3445 49.3445 -Verdana.ttf 29 S 32.5147 44.5557 102 © 0.1433 49.3445 49.3445 -Verdana.ttf 29 S 32.5147 44.5557 103 ] -1.0589 15.1741 55.4929 -Verdana.ttf 29 S 32.5147 44.5557 104 é -4.2405 28.8152 48.8629 -Verdana.ttf 29 S 32.5147 44.5557 105 z 11.5837 25.5036 31.6705 -Verdana.ttf 29 S 32.5147 44.5557 106 _ 48.6577 37.0038 3.3150 -Verdana.ttf 29 S 32.5147 44.5557 107 ¥ 1.1861 31.1332 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 1 t -7.8801 20.1669 41.8484 -Verdana.ttf 30 p 28.2003 44.4964 2 h -11.4267 26.4669 44.3483 -Verdana.ttf 30 p 28.2003 44.4964 3 a -0.1659 26.7969 34.0188 -Verdana.ttf 30 p 28.2003 44.4964 4 n 0.0769 26.4669 32.8447 -Verdana.ttf 30 p 28.2003 44.4964 5 P -9.5300 27.8519 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 6 o 0.1338 29.3745 34.0188 -Verdana.ttf 30 p 28.2003 44.4964 7 e 0.0418 28.8152 34.0188 -Verdana.ttf 30 p 28.2003 44.4964 8 : 1.1048 6.6555 31.6705 -Verdana.ttf 30 p 28.2003 44.4964 9 r 0.9851 19.6817 31.6705 -Verdana.ttf 30 p 28.2003 44.4964 10 l -11.4912 5.3333 44.3483 -Verdana.ttf 30 p 28.2003 44.4964 11 i -9.3239 5.3333 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 12 1 -9.3993 22.9445 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 13 | -11.2446 5.2036 55.4929 -Verdana.ttf 30 p 28.2003 44.4964 14 N -9.4969 31.5514 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 15 f -11.5454 20.5259 44.3483 -Verdana.ttf 30 p 28.2003 44.4964 16 g 0.0899 28.2003 44.4964 -Verdana.ttf 30 p 28.2003 44.4964 17 d -11.5489 28.2003 45.5224 -Verdana.ttf 30 p 28.2003 44.4964 18 W -9.4066 52.3887 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 19 s -0.1450 25.0150 34.0188 -Verdana.ttf 30 p 28.2003 44.4964 20 c 0.0816 25.6820 34.0188 -Verdana.ttf 30 p 28.2003 44.4964 21 u 1.4153 26.4669 32.8447 -Verdana.ttf 30 p 28.2003 44.4964 22 3 -10.8550 28.2074 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 23 ~ 4.9068 37.0038 17.5224 -Verdana.ttf 30 p 28.2003 44.4964 24 # -9.2815 36.5186 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 25 O -10.5536 39.3996 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 26 ` -14.6269 11.8592 10.6850 -Verdana.ttf 30 p 28.2003 44.4964 27 @ -10.5902 48.3778 49.6815 -Verdana.ttf 30 p 28.2003 44.4964 28 F -9.0627 26.3478 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 29 S -10.8805 32.5147 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 30 p -0.2821 28.2003 44.4964 -Verdana.ttf 30 p 28.2003 44.4964 31 “ -11.5170 23.0072 16.1408 -Verdana.ttf 30 p 28.2003 44.4964 32 % -10.3505 54.3188 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 33 £ -10.9597 29.1741 43.3815 -Verdana.ttf 30 p 28.2003 44.4964 34 . 24.4493 6.6555 8.1886 -Verdana.ttf 30 p 28.2003 44.4964 35 2 -10.7959 28.3370 43.3815 -Verdana.ttf 30 p 28.2003 44.4964 36 5 -10.4686 27.5114 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 37 m -0.2677 46.3480 32.8447 -Verdana.ttf 30 p 28.2003 44.4964 38 V -9.3377 37.5109 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 39 6 -10.3157 29.6593 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 40 w 1.2463 42.9667 31.6705 -Verdana.ttf 30 p 28.2003 44.4964 41 T -9.0061 35.8297 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 42 M -9.2786 37.7217 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 43 G -10.5772 38.0483 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 44 b -11.5690 28.2003 45.5224 -Verdana.ttf 30 p 28.2003 44.4964 45 9 -10.5073 29.6593 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 46 ; 1.2361 12.1891 42.1191 -Verdana.ttf 30 p 28.2003 44.4964 47 D -9.4617 35.8587 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 48 L -9.2685 26.6777 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 49 y 1.1270 31.1449 43.3223 -Verdana.ttf 30 p 28.2003 44.4964 50 ‘ -11.4166 11.5036 16.1408 -Verdana.ttf 30 p 28.2003 44.4964 51 \ -11.4742 25.1446 53.0150 -Verdana.ttf 30 p 28.2003 44.4964 52 R -9.6319 34.9855 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 53 < -2.2743 32.8447 32.8447 -Verdana.ttf 30 p 28.2003 44.4964 54 4 -8.9769 32.2369 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 55 8 -10.4759 29.9590 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 56 0 -10.4735 28.9448 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 57 A -9.4161 37.5109 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 58 E -9.5226 27.8774 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 59 B -9.2278 32.0295 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 60 v 1.0501 31.1449 31.6705 -Verdana.ttf 30 p 28.2003 44.4964 61 k -11.5402 29.1741 44.3483 -Verdana.ttf 30 p 28.2003 44.4964 62 J -9.1936 20.1703 43.3815 -Verdana.ttf 30 p 28.2003 44.4964 63 U -9.7093 32.6187 43.3815 -Verdana.ttf 30 p 28.2003 44.4964 64 j -9.2753 16.4964 53.8592 -Verdana.ttf 30 p 28.2003 44.4964 65 ( -11.3647 17.3150 56.0000 -Verdana.ttf 30 p 28.2003 44.4964 66 7 -8.9609 29.1741 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 67 § -10.6239 27.0333 54.3965 -Verdana.ttf 30 p 28.2003 44.4964 68 $ -12.1618 28.8186 54.8039 -Verdana.ttf 30 p 28.2003 44.4964 69 € -10.5383 34.6555 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 70 / -11.6810 25.1446 53.0150 -Verdana.ttf 30 p 28.2003 44.4964 71 C -10.6802 35.1627 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 72 * -11.5109 27.3888 26.3188 -Verdana.ttf 30 p 28.2003 44.4964 73 ” -11.5137 23.0072 16.1408 -Verdana.ttf 30 p 28.2003 44.4964 74 ? -10.4546 23.9705 43.3815 -Verdana.ttf 30 p 28.2003 44.4964 75 { -11.4565 26.6962 55.4929 -Verdana.ttf 30 p 28.2003 44.4964 76 } -11.2348 26.6962 55.4929 -Verdana.ttf 30 p 28.2003 44.4964 77 , 24.5864 12.1891 18.6372 -Verdana.ttf 30 p 28.2003 44.4964 78 I -9.5694 16.4442 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 79 ° -10.8046 22.7964 22.7964 -Verdana.ttf 30 p 28.2003 44.4964 80 K -9.7241 33.3333 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 81 H -9.1955 32.7255 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 82 q 0.1941 28.2003 44.4964 -Verdana.ttf 30 p 28.2003 44.4964 83 & -10.8328 41.1629 44.5557 -Verdana.ttf 30 p 28.2003 44.4964 84 ’ -11.6606 11.5036 16.1408 -Verdana.ttf 30 p 28.2003 44.4964 85 [ -11.3614 15.1741 55.4929 -Verdana.ttf 30 p 28.2003 44.4964 86 - 11.5002 17.6705 4.8447 -Verdana.ttf 30 p 28.2003 44.4964 87 Y -9.3395 35.8297 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 88 Q -10.6743 40.5737 54.5262 -Verdana.ttf 30 p 28.2003 44.4964 89 " -11.5608 17.3150 16.3483 -Verdana.ttf 30 p 28.2003 44.4964 90 ! -9.2786 5.4814 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 91 x 0.8045 31.1449 31.6705 -Verdana.ttf 30 p 28.2003 44.4964 92 ) -11.3976 17.3150 56.0000 -Verdana.ttf 30 p 28.2003 44.4964 93 = 5.9318 33.8114 16.4964 -Verdana.ttf 30 p 28.2003 44.4964 94 + -2.6970 34.9855 34.9855 -Verdana.ttf 30 p 28.2003 44.4964 95 X -9.3628 35.9074 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 96 » -0.0636 28.0000 28.0000 -Verdana.ttf 30 p 28.2003 44.4964 97 ' -11.5004 6.1703 16.3483 -Verdana.ttf 30 p 28.2003 44.4964 98 ¢ -8.5939 27.2855 51.6115 -Verdana.ttf 30 p 28.2003 44.4964 99 Z -9.1157 33.2036 42.2074 -Verdana.ttf 30 p 28.2003 44.4964 100 > -2.4955 32.8447 32.8447 -Verdana.ttf 30 p 28.2003 44.4964 101 ® -10.6272 49.3445 49.3445 -Verdana.ttf 30 p 28.2003 44.4964 102 © -10.6893 49.3445 49.3445 -Verdana.ttf 30 p 28.2003 44.4964 103 ] -11.3781 15.1741 55.4929 -Verdana.ttf 30 p 28.2003 44.4964 104 é -15.1435 28.8152 48.8629 -Verdana.ttf 30 p 28.2003 44.4964 105 z 1.0319 25.5036 31.6705 -Verdana.ttf 30 p 28.2003 44.4964 106 _ 38.0781 37.0038 3.3150 -Verdana.ttf 30 p 28.2003 44.4964 107 ¥ -9.5270 31.1332 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 1 t 3.8114 20.1669 41.8484 -Verdana.ttf 31 “ 23.0072 16.1408 2 h -0.4910 26.4669 44.3483 -Verdana.ttf 31 “ 23.0072 16.1408 3 a 11.4166 26.7969 34.0188 -Verdana.ttf 31 “ 23.0072 16.1408 4 n 11.1979 26.4669 32.8447 -Verdana.ttf 31 “ 23.0072 16.1408 5 P 2.1010 27.8519 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 6 o 11.7227 29.3745 34.0188 -Verdana.ttf 31 “ 23.0072 16.1408 7 e 11.3349 28.8152 34.0188 -Verdana.ttf 31 “ 23.0072 16.1408 8 : 12.5503 6.6555 31.6705 -Verdana.ttf 31 “ 23.0072 16.1408 9 r 12.7090 19.6817 31.6705 -Verdana.ttf 31 “ 23.0072 16.1408 10 l -0.1128 5.3333 44.3483 -Verdana.ttf 31 “ 23.0072 16.1408 11 i 1.9116 5.3333 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 12 1 2.0280 22.9445 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 13 | -0.0446 5.2036 55.4929 -Verdana.ttf 31 “ 23.0072 16.1408 14 N 2.5619 31.5514 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 15 f 0.0991 20.5259 44.3483 -Verdana.ttf 31 “ 23.0072 16.1408 16 g 11.5772 28.2003 44.4964 -Verdana.ttf 31 “ 23.0072 16.1408 17 d -0.1774 28.2003 45.5224 -Verdana.ttf 31 “ 23.0072 16.1408 18 W 2.0962 52.3887 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 19 s 11.3879 25.0150 34.0188 -Verdana.ttf 31 “ 23.0072 16.1408 20 c 11.5435 25.6820 34.0188 -Verdana.ttf 31 “ 23.0072 16.1408 21 u 13.0906 26.4669 32.8447 -Verdana.ttf 31 “ 23.0072 16.1408 22 3 1.0413 28.2074 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 23 ~ 16.7469 37.0038 17.5224 -Verdana.ttf 31 “ 23.0072 16.1408 24 # 2.2975 36.5186 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 25 O 0.9075 39.3996 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 26 ` -3.3301 11.8592 10.6850 -Verdana.ttf 31 “ 23.0072 16.1408 27 @ 0.7832 48.3778 49.6815 -Verdana.ttf 31 “ 23.0072 16.1408 28 F 2.1423 26.3478 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 29 S 1.0066 32.5147 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 30 p 11.4869 28.2003 44.4964 -Verdana.ttf 31 “ 23.0072 16.1408 31 “ -0.1302 23.0072 16.1408 -Verdana.ttf 31 “ 23.0072 16.1408 32 % 1.0571 54.3188 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 33 £ 1.0882 29.1741 43.3815 -Verdana.ttf 31 “ 23.0072 16.1408 34 . 36.0986 6.6555 8.1886 -Verdana.ttf 31 “ 23.0072 16.1408 35 2 1.0128 28.3370 43.3815 -Verdana.ttf 31 “ 23.0072 16.1408 36 5 0.7110 27.5114 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 37 m 11.4416 46.3480 32.8447 -Verdana.ttf 31 “ 23.0072 16.1408 38 V 1.8180 37.5109 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 39 6 1.1840 29.6593 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 40 w 12.4917 42.9667 31.6705 -Verdana.ttf 31 “ 23.0072 16.1408 41 T 1.8598 35.8297 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 42 M 2.3497 37.7217 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 43 G 0.5735 38.0483 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 44 b 0.1031 28.2003 45.5224 -Verdana.ttf 31 “ 23.0072 16.1408 45 9 0.8332 29.6593 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 46 ; 13.0224 12.1891 42.1191 -Verdana.ttf 31 “ 23.0072 16.1408 47 D 2.1448 35.8587 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 48 L 2.1807 26.6777 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 49 y 12.6810 31.1449 43.3223 -Verdana.ttf 31 “ 23.0072 16.1408 50 ‘ -0.1241 11.5036 16.1408 -Verdana.ttf 31 “ 23.0072 16.1408 51 \ -0.1274 25.1446 53.0150 -Verdana.ttf 31 “ 23.0072 16.1408 52 R 2.0020 34.9855 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 53 < 9.1885 32.8447 32.8447 -Verdana.ttf 31 “ 23.0072 16.1408 54 4 2.2471 32.2369 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 55 8 0.6847 29.9590 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 56 0 0.8140 28.9448 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 57 A 2.3733 37.5109 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 58 E 1.8698 27.8774 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 59 B 2.0634 32.0295 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 60 v 12.7067 31.1449 31.6705 -Verdana.ttf 31 “ 23.0072 16.1408 61 k -0.0446 29.1741 44.3483 -Verdana.ttf 31 “ 23.0072 16.1408 62 J 2.2279 20.1703 43.3815 -Verdana.ttf 31 “ 23.0072 16.1408 63 U 2.0880 32.6187 43.3815 -Verdana.ttf 31 “ 23.0072 16.1408 64 j 2.1202 16.4964 53.8592 -Verdana.ttf 31 “ 23.0072 16.1408 65 ( 0.0101 17.3150 56.0000 -Verdana.ttf 31 “ 23.0072 16.1408 66 7 2.2725 29.1741 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 67 § 0.9500 27.0333 54.3965 -Verdana.ttf 31 “ 23.0072 16.1408 68 $ -0.8159 28.8186 54.8039 -Verdana.ttf 31 “ 23.0072 16.1408 69 € 1.0436 34.6555 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 70 / 0.1154 25.1446 53.0150 -Verdana.ttf 31 “ 23.0072 16.1408 71 C 1.2095 35.1627 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 72 * -0.0204 27.3888 26.3188 -Verdana.ttf 31 “ 23.0072 16.1408 73 ” -0.2593 23.0072 16.1408 -Verdana.ttf 31 “ 23.0072 16.1408 74 ? 0.8067 23.9705 43.3815 -Verdana.ttf 31 “ 23.0072 16.1408 75 { 0.0130 26.6962 55.4929 -Verdana.ttf 31 “ 23.0072 16.1408 76 } 0.0542 26.6962 55.4929 -Verdana.ttf 31 “ 23.0072 16.1408 77 , 36.2337 12.1891 18.6372 -Verdana.ttf 31 “ 23.0072 16.1408 78 I 2.4187 16.4442 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 79 ° 0.6630 22.7964 22.7964 -Verdana.ttf 31 “ 23.0072 16.1408 80 K 2.0269 33.3333 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 81 H 2.4307 32.7255 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 82 q 11.3195 28.2003 44.4964 -Verdana.ttf 31 “ 23.0072 16.1408 83 & 0.9460 41.1629 44.5557 -Verdana.ttf 31 “ 23.0072 16.1408 84 ’ 0.0028 11.5036 16.1408 -Verdana.ttf 31 “ 23.0072 16.1408 85 [ -0.0558 15.1741 55.4929 -Verdana.ttf 31 “ 23.0072 16.1408 86 - 22.8991 17.6705 4.8447 -Verdana.ttf 31 “ 23.0072 16.1408 87 Y 1.9635 35.8297 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 88 Q 1.0629 40.5737 54.5262 -Verdana.ttf 31 “ 23.0072 16.1408 89 " -0.2909 17.3150 16.3483 -Verdana.ttf 31 “ 23.0072 16.1408 90 ! 2.1937 5.4814 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 91 x 12.7542 31.1449 31.6705 -Verdana.ttf 31 “ 23.0072 16.1408 92 ) -0.0703 17.3150 56.0000 -Verdana.ttf 31 “ 23.0072 16.1408 93 = 17.4719 33.8114 16.4964 -Verdana.ttf 31 “ 23.0072 16.1408 94 + 8.3985 34.9855 34.9855 -Verdana.ttf 31 “ 23.0072 16.1408 95 X 2.2931 35.9074 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 96 » 11.5768 28.0000 28.0000 -Verdana.ttf 31 “ 23.0072 16.1408 97 ' -0.0828 6.1703 16.3483 -Verdana.ttf 31 “ 23.0072 16.1408 98 ¢ 2.3866 27.2855 51.6115 -Verdana.ttf 31 “ 23.0072 16.1408 99 Z 1.8328 33.2036 42.2074 -Verdana.ttf 31 “ 23.0072 16.1408 100 > 9.3043 32.8447 32.8447 -Verdana.ttf 31 “ 23.0072 16.1408 101 ® 1.0537 49.3445 49.3445 -Verdana.ttf 31 “ 23.0072 16.1408 102 © 0.8644 49.3445 49.3445 -Verdana.ttf 31 “ 23.0072 16.1408 103 ] -0.3000 15.1741 55.4929 -Verdana.ttf 31 “ 23.0072 16.1408 104 é -3.3877 28.8152 48.8629 -Verdana.ttf 31 “ 23.0072 16.1408 105 z 12.6791 25.5036 31.6705 -Verdana.ttf 31 “ 23.0072 16.1408 106 _ 49.5519 37.0038 3.3150 -Verdana.ttf 31 “ 23.0072 16.1408 107 ¥ 2.1767 31.1332 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 1 t 2.5995 20.1669 41.8484 -Verdana.ttf 32 % 54.3188 44.5557 2 h -1.0980 26.4669 44.3483 -Verdana.ttf 32 % 54.3188 44.5557 3 a 10.8888 26.7969 34.0188 -Verdana.ttf 32 % 54.3188 44.5557 4 n 10.4897 26.4669 32.8447 -Verdana.ttf 32 % 54.3188 44.5557 5 P 0.9850 27.8519 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 6 o 10.4403 29.3745 34.0188 -Verdana.ttf 32 % 54.3188 44.5557 7 e 10.2412 28.8152 34.0188 -Verdana.ttf 32 % 54.3188 44.5557 8 : 11.8307 6.6555 31.6705 -Verdana.ttf 32 % 54.3188 44.5557 9 r 11.8041 19.6817 31.6705 -Verdana.ttf 32 % 54.3188 44.5557 10 l -1.2301 5.3333 44.3483 -Verdana.ttf 32 % 54.3188 44.5557 11 i 1.5558 5.3333 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 12 1 1.1783 22.9445 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 13 | -0.1565 5.2036 55.4929 -Verdana.ttf 32 % 54.3188 44.5557 14 N 1.0772 31.5514 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 15 f -1.1253 20.5259 44.3483 -Verdana.ttf 32 % 54.3188 44.5557 16 g 10.8910 28.2003 44.4964 -Verdana.ttf 32 % 54.3188 44.5557 17 d -0.9590 28.2003 45.5224 -Verdana.ttf 32 % 54.3188 44.5557 18 W 1.0331 52.3887 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 19 s 10.4390 25.0150 34.0188 -Verdana.ttf 32 % 54.3188 44.5557 20 c 10.3667 25.6820 34.0188 -Verdana.ttf 32 % 54.3188 44.5557 21 u 11.5659 26.4669 32.8447 -Verdana.ttf 32 % 54.3188 44.5557 22 3 -0.2032 28.2074 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 23 ~ 15.7635 37.0038 17.5224 -Verdana.ttf 32 % 54.3188 44.5557 24 # 1.1977 36.5186 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 25 O 0.1348 39.3996 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 26 ` -4.8243 11.8592 10.6850 -Verdana.ttf 32 % 54.3188 44.5557 27 @ 0.1950 48.3778 49.6815 -Verdana.ttf 32 % 54.3188 44.5557 28 F 0.6470 26.3478 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 29 S 0.1661 32.5147 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 30 p 10.9736 28.2003 44.4964 -Verdana.ttf 32 % 54.3188 44.5557 31 “ -1.3055 23.0072 16.1408 -Verdana.ttf 32 % 54.3188 44.5557 32 % 0.1345 54.3188 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 33 £ 0.1508 29.1741 43.3815 -Verdana.ttf 32 % 54.3188 44.5557 34 . 35.2332 6.6555 8.1886 -Verdana.ttf 32 % 54.3188 44.5557 35 2 -0.0591 28.3370 43.3815 -Verdana.ttf 32 % 54.3188 44.5557 36 5 0.2362 27.5114 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 37 m 10.8807 46.3480 32.8447 -Verdana.ttf 32 % 54.3188 44.5557 38 V 1.0174 37.5109 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 39 6 -0.2206 29.6593 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 40 w 11.5896 42.9667 31.6705 -Verdana.ttf 32 % 54.3188 44.5557 41 T 1.6373 35.8297 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 42 M 1.4596 37.7217 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 43 G 0.1822 38.0483 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 44 b -0.9109 28.2003 45.5224 -Verdana.ttf 32 % 54.3188 44.5557 45 9 -0.3404 29.6593 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 46 ; 11.4245 12.1891 42.1191 -Verdana.ttf 32 % 54.3188 44.5557 47 D 1.2235 35.8587 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 48 L 1.6330 26.6777 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 49 y 11.7878 31.1449 43.3223 -Verdana.ttf 32 % 54.3188 44.5557 50 ‘ -1.0244 11.5036 16.1408 -Verdana.ttf 32 % 54.3188 44.5557 51 \ -1.1416 25.1446 53.0150 -Verdana.ttf 32 % 54.3188 44.5557 52 R 1.3057 34.9855 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 53 < 8.2334 32.8447 32.8447 -Verdana.ttf 32 % 54.3188 44.5557 54 4 1.0559 32.2369 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 55 8 0.1886 29.9590 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 56 0 -0.3613 28.9448 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 57 A 1.6208 37.5109 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 58 E 1.0135 27.8774 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 59 B 1.4510 32.0295 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 60 v 12.1180 31.1449 31.6705 -Verdana.ttf 32 % 54.3188 44.5557 61 k -1.1071 29.1741 44.3483 -Verdana.ttf 32 % 54.3188 44.5557 62 J 0.7414 20.1703 43.3815 -Verdana.ttf 32 % 54.3188 44.5557 63 U 1.2139 32.6187 43.3815 -Verdana.ttf 32 % 54.3188 44.5557 64 j 1.0979 16.4964 53.8592 -Verdana.ttf 32 % 54.3188 44.5557 65 ( -1.0051 17.3150 56.0000 -Verdana.ttf 32 % 54.3188 44.5557 66 7 1.7444 29.1741 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 67 § 0.2409 27.0333 54.3965 -Verdana.ttf 32 % 54.3188 44.5557 68 $ -1.7059 28.8186 54.8039 -Verdana.ttf 32 % 54.3188 44.5557 69 € 0.1379 34.6555 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 70 / -1.0087 25.1446 53.0150 -Verdana.ttf 32 % 54.3188 44.5557 71 C -0.0248 35.1627 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 72 * -1.2297 27.3888 26.3188 -Verdana.ttf 32 % 54.3188 44.5557 73 ” -1.0613 23.0072 16.1408 -Verdana.ttf 32 % 54.3188 44.5557 74 ? -0.1370 23.9705 43.3815 -Verdana.ttf 32 % 54.3188 44.5557 75 { -1.2061 26.6962 55.4929 -Verdana.ttf 32 % 54.3188 44.5557 76 } -0.5726 26.6962 55.4929 -Verdana.ttf 32 % 54.3188 44.5557 77 , 34.9932 12.1891 18.6372 -Verdana.ttf 32 % 54.3188 44.5557 78 I 1.6830 16.4442 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 79 ° -0.1004 22.7964 22.7964 -Verdana.ttf 32 % 54.3188 44.5557 80 K 1.3909 33.3333 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 81 H 1.5232 32.7255 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 82 q 10.7414 28.2003 44.4964 -Verdana.ttf 32 % 54.3188 44.5557 83 & -0.2043 41.1629 44.5557 -Verdana.ttf 32 % 54.3188 44.5557 84 ’ -0.6874 11.5036 16.1408 -Verdana.ttf 32 % 54.3188 44.5557 85 [ -0.8167 15.1741 55.4929 -Verdana.ttf 32 % 54.3188 44.5557 86 - 22.1310 17.6705 4.8447 -Verdana.ttf 32 % 54.3188 44.5557 87 Y 1.5260 35.8297 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 88 Q -0.4455 40.5737 54.5262 -Verdana.ttf 32 % 54.3188 44.5557 89 " -1.1773 17.3150 16.3483 -Verdana.ttf 32 % 54.3188 44.5557 90 ! 1.4601 5.4814 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 91 x 12.1075 31.1449 31.6705 -Verdana.ttf 32 % 54.3188 44.5557 92 ) -1.0817 17.3150 56.0000 -Verdana.ttf 32 % 54.3188 44.5557 93 = 16.5754 33.8114 16.4964 -Verdana.ttf 32 % 54.3188 44.5557 94 + 7.6303 34.9855 34.9855 -Verdana.ttf 32 % 54.3188 44.5557 95 X 0.8020 35.9074 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 96 » 10.8994 28.0000 28.0000 -Verdana.ttf 32 % 54.3188 44.5557 97 ' -0.6634 6.1703 16.3483 -Verdana.ttf 32 % 54.3188 44.5557 98 ¢ 1.5257 27.2855 51.6115 -Verdana.ttf 32 % 54.3188 44.5557 99 Z 1.3236 33.2036 42.2074 -Verdana.ttf 32 % 54.3188 44.5557 100 > 8.0684 32.8447 32.8447 -Verdana.ttf 32 % 54.3188 44.5557 101 ® 0.0366 49.3445 49.3445 -Verdana.ttf 32 % 54.3188 44.5557 102 © -0.2213 49.3445 49.3445 -Verdana.ttf 32 % 54.3188 44.5557 103 ] -0.8812 15.1741 55.4929 -Verdana.ttf 32 % 54.3188 44.5557 104 é -4.4679 28.8152 48.8629 -Verdana.ttf 32 % 54.3188 44.5557 105 z 11.5475 25.5036 31.6705 -Verdana.ttf 32 % 54.3188 44.5557 106 _ 48.5286 37.0038 3.3150 -Verdana.ttf 32 % 54.3188 44.5557 107 ¥ 1.4096 31.1332 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 1 t 2.7014 20.1669 41.8484 -Verdana.ttf 33 £ 29.1741 43.3815 2 h -1.3094 26.4669 44.3483 -Verdana.ttf 33 £ 29.1741 43.3815 3 a 10.6729 26.7969 34.0188 -Verdana.ttf 33 £ 29.1741 43.3815 4 n 10.2789 26.4669 32.8447 -Verdana.ttf 33 £ 29.1741 43.3815 5 P 1.6210 27.8519 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 6 o 10.3168 29.3745 34.0188 -Verdana.ttf 33 £ 29.1741 43.3815 7 e 10.4023 28.8152 34.0188 -Verdana.ttf 33 £ 29.1741 43.3815 8 : 11.6409 6.6555 31.6705 -Verdana.ttf 33 £ 29.1741 43.3815 9 r 11.8912 19.6817 31.6705 -Verdana.ttf 33 £ 29.1741 43.3815 10 l -0.8264 5.3333 44.3483 -Verdana.ttf 33 £ 29.1741 43.3815 11 i 1.2310 5.3333 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 12 1 1.4869 22.9445 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 13 | -0.7662 5.2036 55.4929 -Verdana.ttf 33 £ 29.1741 43.3815 14 N 1.0411 31.5514 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 15 f -0.8264 20.5259 44.3483 -Verdana.ttf 33 £ 29.1741 43.3815 16 g 10.5374 28.2003 44.4964 -Verdana.ttf 33 £ 29.1741 43.3815 17 d -1.1441 28.2003 45.5224 -Verdana.ttf 33 £ 29.1741 43.3815 18 W 1.2616 52.3887 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 19 s 10.6777 25.0150 34.0188 -Verdana.ttf 33 £ 29.1741 43.3815 20 c 10.4998 25.6820 34.0188 -Verdana.ttf 33 £ 29.1741 43.3815 21 u 11.7480 26.4669 32.8447 -Verdana.ttf 33 £ 29.1741 43.3815 22 3 0.0657 28.2074 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 23 ~ 15.7094 37.0038 17.5224 -Verdana.ttf 33 £ 29.1741 43.3815 24 # 1.0207 36.5186 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 25 O -0.1272 39.3996 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 26 ` -4.2472 11.8592 10.6850 -Verdana.ttf 33 £ 29.1741 43.3815 27 @ 0.1023 48.3778 49.6815 -Verdana.ttf 33 £ 29.1741 43.3815 28 F 1.0097 26.3478 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 29 S 0.1461 32.5147 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 30 p 10.2668 28.2003 44.4964 -Verdana.ttf 33 £ 29.1741 43.3815 31 “ -0.7465 23.0072 16.1408 -Verdana.ttf 33 £ 29.1741 43.3815 32 % 0.0826 54.3188 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 33 £ -0.0580 29.1741 43.3815 -Verdana.ttf 33 £ 29.1741 43.3815 34 . 35.0939 6.6555 8.1886 -Verdana.ttf 33 £ 29.1741 43.3815 35 2 0.0308 28.3370 43.3815 -Verdana.ttf 33 £ 29.1741 43.3815 36 5 -0.1832 27.5114 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 37 m 10.5230 46.3480 32.8447 -Verdana.ttf 33 £ 29.1741 43.3815 38 V 1.0972 37.5109 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 39 6 -0.0148 29.6593 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 40 w 11.5351 42.9667 31.6705 -Verdana.ttf 33 £ 29.1741 43.3815 41 T 1.1169 35.8297 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 42 M 1.2492 37.7217 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 43 G 0.0519 38.0483 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 44 b -1.1692 28.2003 45.5224 -Verdana.ttf 33 £ 29.1741 43.3815 45 9 -0.1120 29.6593 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 46 ; 11.7303 12.1891 42.1191 -Verdana.ttf 33 £ 29.1741 43.3815 47 D 1.2274 35.8587 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 48 L 1.3110 26.6777 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 49 y 11.5735 31.1449 43.3223 -Verdana.ttf 33 £ 29.1741 43.3815 50 ‘ -1.0181 11.5036 16.1408 -Verdana.ttf 33 £ 29.1741 43.3815 51 \ -0.8460 25.1446 53.0150 -Verdana.ttf 33 £ 29.1741 43.3815 52 R 1.1121 34.9855 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 53 < 8.1544 32.8447 32.8447 -Verdana.ttf 33 £ 29.1741 43.3815 54 4 0.9733 32.2369 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 55 8 0.2114 29.9590 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 56 0 -0.1302 28.9448 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 57 A 1.1434 37.5109 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 58 E 1.3515 27.8774 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 59 B 1.0805 32.0295 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 60 v 11.7504 31.1449 31.6705 -Verdana.ttf 33 £ 29.1741 43.3815 61 k -1.0470 29.1741 44.3483 -Verdana.ttf 33 £ 29.1741 43.3815 62 J 1.2179 20.1703 43.3815 -Verdana.ttf 33 £ 29.1741 43.3815 63 U 1.0102 32.6187 43.3815 -Verdana.ttf 33 £ 29.1741 43.3815 64 j 1.0690 16.4964 53.8592 -Verdana.ttf 33 £ 29.1741 43.3815 65 ( -0.9634 17.3150 56.0000 -Verdana.ttf 33 £ 29.1741 43.3815 66 7 0.9670 29.1741 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 67 § 0.1274 27.0333 54.3965 -Verdana.ttf 33 £ 29.1741 43.3815 68 $ -1.6103 28.8186 54.8039 -Verdana.ttf 33 £ 29.1741 43.3815 69 € 0.4149 34.6555 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 70 / -1.1709 25.1446 53.0150 -Verdana.ttf 33 £ 29.1741 43.3815 71 C -0.0519 35.1627 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 72 * -0.8397 27.3888 26.3188 -Verdana.ttf 33 £ 29.1741 43.3815 73 ” -1.1059 23.0072 16.1408 -Verdana.ttf 33 £ 29.1741 43.3815 74 ? 0.0979 23.9705 43.3815 -Verdana.ttf 33 £ 29.1741 43.3815 75 { -0.9566 26.6962 55.4929 -Verdana.ttf 33 £ 29.1741 43.3815 76 } -1.0547 26.6962 55.4929 -Verdana.ttf 33 £ 29.1741 43.3815 77 , 34.8631 12.1891 18.6372 -Verdana.ttf 33 £ 29.1741 43.3815 78 I 1.2616 16.4442 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 79 ° 0.1182 22.7964 22.7964 -Verdana.ttf 33 £ 29.1741 43.3815 80 K 1.1876 33.3333 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 81 H 1.1347 32.7255 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 82 q 10.7473 28.2003 44.4964 -Verdana.ttf 33 £ 29.1741 43.3815 83 & -0.0633 41.1629 44.5557 -Verdana.ttf 33 £ 29.1741 43.3815 84 ’ -1.2372 11.5036 16.1408 -Verdana.ttf 33 £ 29.1741 43.3815 85 [ -1.1249 15.1741 55.4929 -Verdana.ttf 33 £ 29.1741 43.3815 86 - 22.1035 17.6705 4.8447 -Verdana.ttf 33 £ 29.1741 43.3815 87 Y 1.4451 35.8297 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 88 Q -0.1998 40.5737 54.5262 -Verdana.ttf 33 £ 29.1741 43.3815 89 " -0.9758 17.3150 16.3483 -Verdana.ttf 33 £ 29.1741 43.3815 90 ! 1.3591 5.4814 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 91 x 11.5972 31.1449 31.6705 -Verdana.ttf 33 £ 29.1741 43.3815 92 ) -1.2661 17.3150 56.0000 -Verdana.ttf 33 £ 29.1741 43.3815 93 = 16.4274 33.8114 16.4964 -Verdana.ttf 33 £ 29.1741 43.3815 94 + 7.6687 34.9855 34.9855 -Verdana.ttf 33 £ 29.1741 43.3815 95 X 0.8489 35.9074 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 96 » 10.6840 28.0000 28.0000 -Verdana.ttf 33 £ 29.1741 43.3815 97 ' -0.6134 6.1703 16.3483 -Verdana.ttf 33 £ 29.1741 43.3815 98 ¢ 1.6767 27.2855 51.6115 -Verdana.ttf 33 £ 29.1741 43.3815 99 Z 1.2492 33.2036 42.2074 -Verdana.ttf 33 £ 29.1741 43.3815 100 > 8.2862 32.8447 32.8447 -Verdana.ttf 33 £ 29.1741 43.3815 101 ® 0.0240 49.3445 49.3445 -Verdana.ttf 33 £ 29.1741 43.3815 102 © -0.0054 49.3445 49.3445 -Verdana.ttf 33 £ 29.1741 43.3815 103 ] -0.9667 15.1741 55.4929 -Verdana.ttf 33 £ 29.1741 43.3815 104 é -4.3769 28.8152 48.8629 -Verdana.ttf 33 £ 29.1741 43.3815 105 z 11.7980 25.5036 31.6705 -Verdana.ttf 33 £ 29.1741 43.3815 106 _ 48.4987 37.0038 3.3150 -Verdana.ttf 33 £ 29.1741 43.3815 107 ¥ 0.9003 31.1332 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 1 t -32.4425 20.1669 41.8484 -Verdana.ttf 34 . 6.6555 8.1886 2 h -36.4168 26.4669 44.3483 -Verdana.ttf 34 . 6.6555 8.1886 3 a -24.7430 26.7969 34.0188 -Verdana.ttf 34 . 6.6555 8.1886 4 n -24.9136 26.4669 32.8447 -Verdana.ttf 34 . 6.6555 8.1886 5 P -33.8501 27.8519 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 6 o -24.5523 29.3745 34.0188 -Verdana.ttf 34 . 6.6555 8.1886 7 e -24.8065 28.8152 34.0188 -Verdana.ttf 34 . 6.6555 8.1886 8 : -23.3915 6.6555 31.6705 -Verdana.ttf 34 . 6.6555 8.1886 9 r -23.2194 19.6817 31.6705 -Verdana.ttf 34 . 6.6555 8.1886 10 l -36.1875 5.3333 44.3483 -Verdana.ttf 34 . 6.6555 8.1886 11 i -33.7213 5.3333 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 12 1 -34.0620 22.9445 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 13 | -36.1995 5.2036 55.4929 -Verdana.ttf 34 . 6.6555 8.1886 14 N -34.0924 31.5514 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 15 f -36.0991 20.5259 44.3483 -Verdana.ttf 34 . 6.6555 8.1886 16 g -24.5556 28.2003 44.4964 -Verdana.ttf 34 . 6.6555 8.1886 17 d -36.1697 28.2003 45.5224 -Verdana.ttf 34 . 6.6555 8.1886 18 W -33.8947 52.3887 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 19 s -24.3357 25.0150 34.0188 -Verdana.ttf 34 . 6.6555 8.1886 20 c -24.5359 25.6820 34.0188 -Verdana.ttf 34 . 6.6555 8.1886 21 u -23.6357 26.4669 32.8447 -Verdana.ttf 34 . 6.6555 8.1886 22 3 -34.9919 28.2074 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 23 ~ -19.0185 37.0038 17.5224 -Verdana.ttf 34 . 6.6555 8.1886 24 # -34.3681 36.5186 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 25 O -35.4366 39.3996 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 26 ` -39.3580 11.8592 10.6850 -Verdana.ttf 34 . 6.6555 8.1886 27 @ -34.9520 48.3778 49.6815 -Verdana.ttf 34 . 6.6555 8.1886 28 F -33.8501 26.3478 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 29 S -35.1896 32.5147 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 30 p -24.5320 28.2003 44.4964 -Verdana.ttf 34 . 6.6555 8.1886 31 “ -36.1505 23.0072 16.1408 -Verdana.ttf 34 . 6.6555 8.1886 32 % -35.1012 54.3188 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 33 £ -35.2498 29.1741 43.3815 -Verdana.ttf 34 . 6.6555 8.1886 34 . -0.0831 6.6555 8.1886 -Verdana.ttf 34 . 6.6555 8.1886 35 2 -35.1232 28.3370 43.3815 -Verdana.ttf 34 . 6.6555 8.1886 36 5 -35.1502 27.5114 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 37 m -24.2831 46.3480 32.8447 -Verdana.ttf 34 . 6.6555 8.1886 38 V -34.1418 37.5109 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 39 6 -35.2865 29.6593 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 40 w -23.5708 42.9667 31.6705 -Verdana.ttf 34 . 6.6555 8.1886 41 T -34.0188 35.8297 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 42 M -33.9727 37.7217 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 43 G -35.2314 38.0483 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 44 b -35.9920 28.2003 45.5224 -Verdana.ttf 34 . 6.6555 8.1886 45 9 -35.2400 29.6593 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 46 ; -23.6346 12.1891 42.1191 -Verdana.ttf 34 . 6.6555 8.1886 47 D -33.8813 35.8587 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 48 L -34.2691 26.6777 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 49 y -23.4891 31.1449 43.3223 -Verdana.ttf 34 . 6.6555 8.1886 50 ‘ -36.3370 11.5036 16.1408 -Verdana.ttf 34 . 6.6555 8.1886 51 \ -35.9159 25.1446 53.0150 -Verdana.ttf 34 . 6.6555 8.1886 52 R -33.8084 34.9855 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 53 < -26.8774 32.8447 32.8447 -Verdana.ttf 34 . 6.6555 8.1886 54 4 -33.9284 32.2369 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 55 8 -34.9531 29.9590 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 56 0 -35.0892 28.9448 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 57 A -33.7877 37.5109 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 58 E -34.1091 27.8774 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 59 B -33.7982 32.0295 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 60 v -23.3372 31.1449 31.6705 -Verdana.ttf 34 . 6.6555 8.1886 61 k -36.2831 29.1741 44.3483 -Verdana.ttf 34 . 6.6555 8.1886 62 J -34.2317 20.1703 43.3815 -Verdana.ttf 34 . 6.6555 8.1886 63 U -34.1428 32.6187 43.3815 -Verdana.ttf 34 . 6.6555 8.1886 64 j -33.8367 16.4964 53.8592 -Verdana.ttf 34 . 6.6555 8.1886 65 ( -36.3456 17.3150 56.0000 -Verdana.ttf 34 . 6.6555 8.1886 66 7 -33.9477 29.1741 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 67 § -35.0627 27.0333 54.3965 -Verdana.ttf 34 . 6.6555 8.1886 68 $ -36.6347 28.8186 54.8039 -Verdana.ttf 34 . 6.6555 8.1886 69 € -35.3986 34.6555 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 70 / -36.1433 25.1446 53.0150 -Verdana.ttf 34 . 6.6555 8.1886 71 C -35.4918 35.1627 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 72 * -36.3283 27.3888 26.3188 -Verdana.ttf 34 . 6.6555 8.1886 73 ” -36.1596 23.0072 16.1408 -Verdana.ttf 34 . 6.6555 8.1886 74 ? -35.1165 23.9705 43.3815 -Verdana.ttf 34 . 6.6555 8.1886 75 { -36.3018 26.6962 55.4929 -Verdana.ttf 34 . 6.6555 8.1886 76 } -36.4404 26.6962 55.4929 -Verdana.ttf 34 . 6.6555 8.1886 77 , 0.0356 12.1891 18.6372 -Verdana.ttf 34 . 6.6555 8.1886 78 I -34.0322 16.4442 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 79 ° -35.1516 22.7964 22.7964 -Verdana.ttf 34 . 6.6555 8.1886 80 K -33.8520 33.3333 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 81 H -34.1058 32.7255 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 82 q -24.9709 28.2003 44.4964 -Verdana.ttf 34 . 6.6555 8.1886 83 & -35.1781 41.1629 44.5557 -Verdana.ttf 34 . 6.6555 8.1886 84 ’ -36.0457 11.5036 16.1408 -Verdana.ttf 34 . 6.6555 8.1886 85 [ -36.1967 15.1741 55.4929 -Verdana.ttf 34 . 6.6555 8.1886 86 - -13.2846 17.6705 4.8447 -Verdana.ttf 34 . 6.6555 8.1886 87 Y -33.9994 35.8297 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 88 Q -35.3703 40.5737 54.5262 -Verdana.ttf 34 . 6.6555 8.1886 89 " -36.2318 17.3150 16.3483 -Verdana.ttf 34 . 6.6555 8.1886 90 ! -34.1326 5.4814 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 91 x -23.4881 31.1449 31.6705 -Verdana.ttf 34 . 6.6555 8.1886 92 ) -36.1302 17.3150 56.0000 -Verdana.ttf 34 . 6.6555 8.1886 93 = -18.7443 33.8114 16.4964 -Verdana.ttf 34 . 6.6555 8.1886 94 + -27.3734 34.9855 34.9855 -Verdana.ttf 34 . 6.6555 8.1886 95 X -34.2625 35.9074 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 96 » -24.4986 28.0000 28.0000 -Verdana.ttf 34 . 6.6555 8.1886 97 ' -36.2539 6.1703 16.3483 -Verdana.ttf 34 . 6.6555 8.1886 98 ¢ -33.3193 27.2855 51.6115 -Verdana.ttf 34 . 6.6555 8.1886 99 Z -33.8885 33.2036 42.2074 -Verdana.ttf 34 . 6.6555 8.1886 100 > -26.9245 32.8447 32.8447 -Verdana.ttf 34 . 6.6555 8.1886 101 ® -35.1382 49.3445 49.3445 -Verdana.ttf 34 . 6.6555 8.1886 102 © -35.2680 49.3445 49.3445 -Verdana.ttf 34 . 6.6555 8.1886 103 ] -36.0425 15.1741 55.4929 -Verdana.ttf 34 . 6.6555 8.1886 104 é -39.3142 28.8152 48.8629 -Verdana.ttf 34 . 6.6555 8.1886 105 z -23.5781 25.5036 31.6705 -Verdana.ttf 34 . 6.6555 8.1886 106 _ 13.1677 37.0038 3.3150 -Verdana.ttf 34 . 6.6555 8.1886 107 ¥ -33.9183 31.1332 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 1 t 2.7340 20.1669 41.8484 -Verdana.ttf 35 2 28.3370 43.3815 2 h -1.0359 26.4669 44.3483 -Verdana.ttf 35 2 28.3370 43.3815 3 a 10.5502 26.7969 34.0188 -Verdana.ttf 35 2 28.3370 43.3815 4 n 10.4071 26.4669 32.8447 -Verdana.ttf 35 2 28.3370 43.3815 5 P 1.2677 27.8519 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 6 o 10.4465 29.3745 34.0188 -Verdana.ttf 35 2 28.3370 43.3815 7 e 10.7834 28.8152 34.0188 -Verdana.ttf 35 2 28.3370 43.3815 8 : 11.6787 6.6555 31.6705 -Verdana.ttf 35 2 28.3370 43.3815 9 r 11.7523 19.6817 31.6705 -Verdana.ttf 35 2 28.3370 43.3815 10 l -1.1027 5.3333 44.3483 -Verdana.ttf 35 2 28.3370 43.3815 11 i 1.5924 5.3333 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 12 1 1.2834 22.9445 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 13 | -1.4714 5.2036 55.4929 -Verdana.ttf 35 2 28.3370 43.3815 14 N 1.1045 31.5514 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 15 f -1.1041 20.5259 44.3483 -Verdana.ttf 35 2 28.3370 43.3815 16 g 10.4667 28.2003 44.4964 -Verdana.ttf 35 2 28.3370 43.3815 17 d -1.0774 28.2003 45.5224 -Verdana.ttf 35 2 28.3370 43.3815 18 W 0.8883 52.3887 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 19 s 10.4701 25.0150 34.0188 -Verdana.ttf 35 2 28.3370 43.3815 20 c 10.5249 25.6820 34.0188 -Verdana.ttf 35 2 28.3370 43.3815 21 u 11.6346 26.4669 32.8447 -Verdana.ttf 35 2 28.3370 43.3815 22 3 0.0976 28.2074 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 23 ~ 15.9104 37.0038 17.5224 -Verdana.ttf 35 2 28.3370 43.3815 24 # 1.1386 36.5186 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 25 O 0.0047 39.3996 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 26 ` -4.3145 11.8592 10.6850 -Verdana.ttf 35 2 28.3370 43.3815 27 @ -0.0352 48.3778 49.6815 -Verdana.ttf 35 2 28.3370 43.3815 28 F 1.3477 26.3478 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 29 S 0.0769 32.5147 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 30 p 10.3620 28.2003 44.4964 -Verdana.ttf 35 2 28.3370 43.3815 31 “ -0.7994 23.0072 16.1408 -Verdana.ttf 35 2 28.3370 43.3815 32 % -0.1865 54.3188 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 33 £ 0.0062 29.1741 43.3815 -Verdana.ttf 35 2 28.3370 43.3815 34 . 34.7104 6.6555 8.1886 -Verdana.ttf 35 2 28.3370 43.3815 35 2 0.0000 28.3370 43.3815 -Verdana.ttf 35 2 28.3370 43.3815 36 5 -0.0998 27.5114 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 37 m 10.3306 46.3480 32.8447 -Verdana.ttf 35 2 28.3370 43.3815 38 V 1.2187 37.5109 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 39 6 -0.0010 29.6593 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 40 w 11.5210 42.9667 31.6705 -Verdana.ttf 35 2 28.3370 43.3815 41 T 1.2155 35.8297 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 42 M 1.0660 37.7217 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 43 G -0.1826 38.0483 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 44 b -0.9015 28.2003 45.5224 -Verdana.ttf 35 2 28.3370 43.3815 45 9 -0.0903 29.6593 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 46 ; 11.9700 12.1891 42.1191 -Verdana.ttf 35 2 28.3370 43.3815 47 D 1.1655 35.8587 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 48 L 1.0559 26.6777 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 49 y 11.8426 31.1449 43.3223 -Verdana.ttf 35 2 28.3370 43.3815 50 ‘ -0.9946 11.5036 16.1408 -Verdana.ttf 35 2 28.3370 43.3815 51 \ -0.9801 25.1446 53.0150 -Verdana.ttf 35 2 28.3370 43.3815 52 R 1.3899 34.9855 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 53 < 8.1238 32.8447 32.8447 -Verdana.ttf 35 2 28.3370 43.3815 54 4 0.9949 32.2369 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 55 8 -0.0986 29.9590 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 56 0 -0.1397 28.9448 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 57 A 1.3830 37.5109 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 58 E 1.2913 27.8774 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 59 B 1.1622 32.0295 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 60 v 11.8797 31.1449 31.6705 -Verdana.ttf 35 2 28.3370 43.3815 61 k -1.0741 29.1741 44.3483 -Verdana.ttf 35 2 28.3370 43.3815 62 J 1.2173 20.1703 43.3815 -Verdana.ttf 35 2 28.3370 43.3815 63 U 1.3413 32.6187 43.3815 -Verdana.ttf 35 2 28.3370 43.3815 64 j 1.2821 16.4964 53.8592 -Verdana.ttf 35 2 28.3370 43.3815 65 ( -0.9925 17.3150 56.0000 -Verdana.ttf 35 2 28.3370 43.3815 66 7 1.1578 29.1741 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 67 § 0.0736 27.0333 54.3965 -Verdana.ttf 35 2 28.3370 43.3815 68 $ -1.4413 28.8186 54.8039 -Verdana.ttf 35 2 28.3370 43.3815 69 € 0.1821 34.6555 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 70 / -0.8931 25.1446 53.0150 -Verdana.ttf 35 2 28.3370 43.3815 71 C 0.2133 35.1627 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 72 * -1.0760 27.3888 26.3188 -Verdana.ttf 35 2 28.3370 43.3815 73 ” -1.0470 23.0072 16.1408 -Verdana.ttf 35 2 28.3370 43.3815 74 ? -0.1524 23.9705 43.3815 -Verdana.ttf 35 2 28.3370 43.3815 75 { -1.0690 26.6962 55.4929 -Verdana.ttf 35 2 28.3370 43.3815 76 } -1.0200 26.6962 55.4929 -Verdana.ttf 35 2 28.3370 43.3815 77 , 35.1915 12.1891 18.6372 -Verdana.ttf 35 2 28.3370 43.3815 78 I 0.9768 16.4442 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 79 ° -0.0404 22.7964 22.7964 -Verdana.ttf 35 2 28.3370 43.3815 80 K 0.8728 33.3333 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 81 H 1.2734 32.7255 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 82 q 10.5815 28.2003 44.4964 -Verdana.ttf 35 2 28.3370 43.3815 83 & 0.1553 41.1629 44.5557 -Verdana.ttf 35 2 28.3370 43.3815 84 ’ -0.9649 11.5036 16.1408 -Verdana.ttf 35 2 28.3370 43.3815 85 [ -1.2118 15.1741 55.4929 -Verdana.ttf 35 2 28.3370 43.3815 86 - 22.1846 17.6705 4.8447 -Verdana.ttf 35 2 28.3370 43.3815 87 Y 1.1876 35.8297 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 88 Q -0.0606 40.5737 54.5262 -Verdana.ttf 35 2 28.3370 43.3815 89 " -1.0423 17.3150 16.3483 -Verdana.ttf 35 2 28.3370 43.3815 90 ! 1.0454 5.4814 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 91 x 11.8373 31.1449 31.6705 -Verdana.ttf 35 2 28.3370 43.3815 92 ) -0.8590 17.3150 56.0000 -Verdana.ttf 35 2 28.3370 43.3815 93 = 16.6253 33.8114 16.4964 -Verdana.ttf 35 2 28.3370 43.3815 94 + 7.2976 34.9855 34.9855 -Verdana.ttf 35 2 28.3370 43.3815 95 X 1.2198 35.9074 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 96 » 10.5118 28.0000 28.0000 -Verdana.ttf 35 2 28.3370 43.3815 97 ' -1.0077 6.1703 16.3483 -Verdana.ttf 35 2 28.3370 43.3815 98 ¢ 1.7600 27.2855 51.6115 -Verdana.ttf 35 2 28.3370 43.3815 99 Z 1.1303 33.2036 42.2074 -Verdana.ttf 35 2 28.3370 43.3815 100 > 8.1872 32.8447 32.8447 -Verdana.ttf 35 2 28.3370 43.3815 101 ® -0.0073 49.3445 49.3445 -Verdana.ttf 35 2 28.3370 43.3815 102 © -0.0380 49.3445 49.3445 -Verdana.ttf 35 2 28.3370 43.3815 103 ] -0.8375 15.1741 55.4929 -Verdana.ttf 35 2 28.3370 43.3815 104 é -4.5822 28.8152 48.8629 -Verdana.ttf 35 2 28.3370 43.3815 105 z 12.0408 25.5036 31.6705 -Verdana.ttf 35 2 28.3370 43.3815 106 _ 48.9178 37.0038 3.3150 -Verdana.ttf 35 2 28.3370 43.3815 107 ¥ 1.5495 31.1332 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 1 t 2.8577 20.1669 41.8484 -Verdana.ttf 36 5 27.5114 44.5557 2 h -0.9268 26.4669 44.3483 -Verdana.ttf 36 5 27.5114 44.5557 3 a 10.4128 26.7969 34.0188 -Verdana.ttf 36 5 27.5114 44.5557 4 n 10.4379 26.4669 32.8447 -Verdana.ttf 36 5 27.5114 44.5557 5 P 1.3283 27.8519 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 6 o 10.5235 29.3745 34.0188 -Verdana.ttf 36 5 27.5114 44.5557 7 e 10.5754 28.8152 34.0188 -Verdana.ttf 36 5 27.5114 44.5557 8 : 11.8898 6.6555 31.6705 -Verdana.ttf 36 5 27.5114 44.5557 9 r 11.7021 19.6817 31.6705 -Verdana.ttf 36 5 27.5114 44.5557 10 l -0.8825 5.3333 44.3483 -Verdana.ttf 36 5 27.5114 44.5557 11 i 1.0439 5.3333 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 12 1 1.4798 22.9445 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 13 | -1.0777 5.2036 55.4929 -Verdana.ttf 36 5 27.5114 44.5557 14 N 1.0487 31.5514 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 15 f -0.8839 20.5259 44.3483 -Verdana.ttf 36 5 27.5114 44.5557 16 g 10.3715 28.2003 44.4964 -Verdana.ttf 36 5 27.5114 44.5557 17 d -0.7356 28.2003 45.5224 -Verdana.ttf 36 5 27.5114 44.5557 18 W 0.9597 52.3887 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 19 s 10.6109 25.0150 34.0188 -Verdana.ttf 36 5 27.5114 44.5557 20 c 10.6556 25.6820 34.0188 -Verdana.ttf 36 5 27.5114 44.5557 21 u 11.7211 26.4669 32.8447 -Verdana.ttf 36 5 27.5114 44.5557 22 3 0.3301 28.2074 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 23 ~ 16.1564 37.0038 17.5224 -Verdana.ttf 36 5 27.5114 44.5557 24 # 0.6859 36.5186 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 25 O -0.0791 39.3996 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 26 ` -4.3033 11.8592 10.6850 -Verdana.ttf 36 5 27.5114 44.5557 27 @ 0.0486 48.3778 49.6815 -Verdana.ttf 36 5 27.5114 44.5557 28 F 0.9287 26.3478 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 29 S -0.2454 32.5147 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 30 p 10.5652 28.2003 44.4964 -Verdana.ttf 36 5 27.5114 44.5557 31 “ -0.9743 23.0072 16.1408 -Verdana.ttf 36 5 27.5114 44.5557 32 % -0.2191 54.3188 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 33 £ -0.1552 29.1741 43.3815 -Verdana.ttf 36 5 27.5114 44.5557 34 . 35.2227 6.6555 8.1886 -Verdana.ttf 36 5 27.5114 44.5557 35 2 -0.3709 28.3370 43.3815 -Verdana.ttf 36 5 27.5114 44.5557 36 5 -0.3017 27.5114 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 37 m 10.7028 46.3480 32.8447 -Verdana.ttf 36 5 27.5114 44.5557 38 V 1.4505 37.5109 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 39 6 0.1907 29.6593 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 40 w 11.6211 42.9667 31.6705 -Verdana.ttf 36 5 27.5114 44.5557 41 T 0.8560 35.8297 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 42 M 1.0987 37.7217 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 43 G 0.1792 38.0483 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 44 b -0.7976 28.2003 45.5224 -Verdana.ttf 36 5 27.5114 44.5557 45 9 -0.1004 29.6593 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 46 ; 11.8614 12.1891 42.1191 -Verdana.ttf 36 5 27.5114 44.5557 47 D 1.5006 35.8587 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 48 L 1.2299 26.6777 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 49 y 11.9092 31.1449 43.3223 -Verdana.ttf 36 5 27.5114 44.5557 50 ‘ -1.1408 11.5036 16.1408 -Verdana.ttf 36 5 27.5114 44.5557 51 \ -1.3780 25.1446 53.0150 -Verdana.ttf 36 5 27.5114 44.5557 52 R 1.0481 34.9855 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 53 < 8.2474 32.8447 32.8447 -Verdana.ttf 36 5 27.5114 44.5557 54 4 1.3083 32.2369 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 55 8 0.1671 29.9590 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 56 0 -0.0014 28.9448 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 57 A 1.1842 37.5109 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 58 E 1.2778 27.8774 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 59 B 1.4650 32.0295 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 60 v 11.5557 31.1449 31.6705 -Verdana.ttf 36 5 27.5114 44.5557 61 k -0.7893 29.1741 44.3483 -Verdana.ttf 36 5 27.5114 44.5557 62 J 1.5303 20.1703 43.3815 -Verdana.ttf 36 5 27.5114 44.5557 63 U 1.4360 32.6187 43.3815 -Verdana.ttf 36 5 27.5114 44.5557 64 j 0.9212 16.4964 53.8592 -Verdana.ttf 36 5 27.5114 44.5557 65 ( -0.9076 17.3150 56.0000 -Verdana.ttf 36 5 27.5114 44.5557 66 7 1.0458 29.1741 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 67 § -0.2811 27.0333 54.3965 -Verdana.ttf 36 5 27.5114 44.5557 68 $ -1.4236 28.8186 54.8039 -Verdana.ttf 36 5 27.5114 44.5557 69 € 0.2144 34.6555 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 70 / -0.9634 25.1446 53.0150 -Verdana.ttf 36 5 27.5114 44.5557 71 C 0.0903 35.1627 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 72 * -0.6472 27.3888 26.3188 -Verdana.ttf 36 5 27.5114 44.5557 73 ” -0.7346 23.0072 16.1408 -Verdana.ttf 36 5 27.5114 44.5557 74 ? -0.5290 23.9705 43.3815 -Verdana.ttf 36 5 27.5114 44.5557 75 { -0.5942 26.6962 55.4929 -Verdana.ttf 36 5 27.5114 44.5557 76 } -0.9374 26.6962 55.4929 -Verdana.ttf 36 5 27.5114 44.5557 77 , 35.1377 12.1891 18.6372 -Verdana.ttf 36 5 27.5114 44.5557 78 I 1.2240 16.4442 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 79 ° 0.2811 22.7964 22.7964 -Verdana.ttf 36 5 27.5114 44.5557 80 K 1.2231 33.3333 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 81 H 1.0733 32.7255 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 82 q 10.2765 28.2003 44.4964 -Verdana.ttf 36 5 27.5114 44.5557 83 & -0.0471 41.1629 44.5557 -Verdana.ttf 36 5 27.5114 44.5557 84 ’ -1.0110 11.5036 16.1408 -Verdana.ttf 36 5 27.5114 44.5557 85 [ -1.0610 15.1741 55.4929 -Verdana.ttf 36 5 27.5114 44.5557 86 - 21.8683 17.6705 4.8447 -Verdana.ttf 36 5 27.5114 44.5557 87 Y 0.8357 35.8297 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 88 Q -0.0087 40.5737 54.5262 -Verdana.ttf 36 5 27.5114 44.5557 89 " -1.0436 17.3150 16.3483 -Verdana.ttf 36 5 27.5114 44.5557 90 ! 1.2078 5.4814 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 91 x 11.7183 31.1449 31.6705 -Verdana.ttf 36 5 27.5114 44.5557 92 ) -0.8052 17.3150 56.0000 -Verdana.ttf 36 5 27.5114 44.5557 93 = 16.5927 33.8114 16.4964 -Verdana.ttf 36 5 27.5114 44.5557 94 + 7.5197 34.9855 34.9855 -Verdana.ttf 36 5 27.5114 44.5557 95 X 1.4489 35.9074 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 96 » 10.7471 28.0000 28.0000 -Verdana.ttf 36 5 27.5114 44.5557 97 ' -1.2147 6.1703 16.3483 -Verdana.ttf 36 5 27.5114 44.5557 98 ¢ 1.8043 27.2855 51.6115 -Verdana.ttf 36 5 27.5114 44.5557 99 Z 1.3463 33.2036 42.2074 -Verdana.ttf 36 5 27.5114 44.5557 100 > 8.1622 32.8447 32.8447 -Verdana.ttf 36 5 27.5114 44.5557 101 ® -0.1437 49.3445 49.3445 -Verdana.ttf 36 5 27.5114 44.5557 102 © -0.0000 49.3445 49.3445 -Verdana.ttf 36 5 27.5114 44.5557 103 ] -0.8455 15.1741 55.4929 -Verdana.ttf 36 5 27.5114 44.5557 104 é -4.2689 28.8152 48.8629 -Verdana.ttf 36 5 27.5114 44.5557 105 z 11.6155 25.5036 31.6705 -Verdana.ttf 36 5 27.5114 44.5557 106 _ 48.7135 37.0038 3.3150 -Verdana.ttf 36 5 27.5114 44.5557 107 ¥ 0.9895 31.1332 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 1 t -7.7500 20.1669 41.8484 -Verdana.ttf 37 m 46.3480 32.8447 2 h -11.2984 26.4669 44.3483 -Verdana.ttf 37 m 46.3480 32.8447 3 a -0.1983 26.7969 34.0188 -Verdana.ttf 37 m 46.3480 32.8447 4 n -0.0196 26.4669 32.8447 -Verdana.ttf 37 m 46.3480 32.8447 5 P -9.6598 27.8519 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 6 o 0.3728 29.3745 34.0188 -Verdana.ttf 37 m 46.3480 32.8447 7 e -0.0443 28.8152 34.0188 -Verdana.ttf 37 m 46.3480 32.8447 8 : 1.5898 6.6555 31.6705 -Verdana.ttf 37 m 46.3480 32.8447 9 r 1.2717 19.6817 31.6705 -Verdana.ttf 37 m 46.3480 32.8447 10 l -11.1538 5.3333 44.3483 -Verdana.ttf 37 m 46.3480 32.8447 11 i -9.4465 5.3333 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 12 1 -9.5073 22.9445 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 13 | -11.4341 5.2036 55.4929 -Verdana.ttf 37 m 46.3480 32.8447 14 N -9.5429 31.5514 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 15 f -11.2258 20.5259 44.3483 -Verdana.ttf 37 m 46.3480 32.8447 16 g 0.4277 28.2003 44.4964 -Verdana.ttf 37 m 46.3480 32.8447 17 d -11.1130 28.2003 45.5224 -Verdana.ttf 37 m 46.3480 32.8447 18 W -9.1494 52.3887 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 19 s -0.5259 25.0150 34.0188 -Verdana.ttf 37 m 46.3480 32.8447 20 c 0.5665 25.6820 34.0188 -Verdana.ttf 37 m 46.3480 32.8447 21 u 0.9151 26.4669 32.8447 -Verdana.ttf 37 m 46.3480 32.8447 22 3 -10.6464 28.2074 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 23 ~ 5.3235 37.0038 17.5224 -Verdana.ttf 37 m 46.3480 32.8447 24 # -9.5506 36.5186 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 25 O -10.5176 39.3996 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 26 ` -14.9995 11.8592 10.6850 -Verdana.ttf 37 m 46.3480 32.8447 27 @ -10.5768 48.3778 49.6815 -Verdana.ttf 37 m 46.3480 32.8447 28 F -9.4646 26.3478 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 29 S -10.2129 32.5147 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 30 p -0.2168 28.2003 44.4964 -Verdana.ttf 37 m 46.3480 32.8447 31 “ -11.6409 23.0072 16.1408 -Verdana.ttf 37 m 46.3480 32.8447 32 % -10.5354 54.3188 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 33 £ -10.5138 29.1741 43.3815 -Verdana.ttf 37 m 46.3480 32.8447 34 . 24.6963 6.6555 8.1886 -Verdana.ttf 37 m 46.3480 32.8447 35 2 -10.7208 28.3370 43.3815 -Verdana.ttf 37 m 46.3480 32.8447 36 5 -10.7839 27.5114 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 37 m 0.2182 46.3480 32.8447 -Verdana.ttf 37 m 46.3480 32.8447 38 V -8.8543 37.5109 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 39 6 -10.5416 29.6593 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 40 w 1.5260 42.9667 31.6705 -Verdana.ttf 37 m 46.3480 32.8447 41 T -9.5713 35.8297 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 42 M -9.2013 37.7217 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 43 G -10.2394 38.0483 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 44 b -11.3926 28.2003 45.5224 -Verdana.ttf 37 m 46.3480 32.8447 45 9 -10.3752 29.6593 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 46 ; 1.2561 12.1891 42.1191 -Verdana.ttf 37 m 46.3480 32.8447 47 D -9.6489 35.8587 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 48 L -8.9677 26.6777 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 49 y 1.2054 31.1449 43.3223 -Verdana.ttf 37 m 46.3480 32.8447 50 ‘ -12.0741 11.5036 16.1408 -Verdana.ttf 37 m 46.3480 32.8447 51 \ -11.6977 25.1446 53.0150 -Verdana.ttf 37 m 46.3480 32.8447 52 R -9.4848 34.9855 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 53 < -2.5242 32.8447 32.8447 -Verdana.ttf 37 m 46.3480 32.8447 54 4 -9.2479 32.2369 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 55 8 -10.7987 29.9590 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 56 0 -10.5768 28.9448 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 57 A -9.5381 37.5109 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 58 E -9.3614 27.8774 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 59 B -9.2173 32.0295 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 60 v 1.2216 31.1449 31.6705 -Verdana.ttf 37 m 46.3480 32.8447 61 k -11.4973 29.1741 44.3483 -Verdana.ttf 37 m 46.3480 32.8447 62 J -9.6171 20.1703 43.3815 -Verdana.ttf 37 m 46.3480 32.8447 63 U -9.2840 32.6187 43.3815 -Verdana.ttf 37 m 46.3480 32.8447 64 j -9.7991 16.4964 53.8592 -Verdana.ttf 37 m 46.3480 32.8447 65 ( -11.5200 17.3150 56.0000 -Verdana.ttf 37 m 46.3480 32.8447 66 7 -9.0176 29.1741 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 67 § -10.9489 27.0333 54.3965 -Verdana.ttf 37 m 46.3480 32.8447 68 $ -12.3318 28.8186 54.8039 -Verdana.ttf 37 m 46.3480 32.8447 69 € -10.4154 34.6555 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 70 / -11.2577 25.1446 53.0150 -Verdana.ttf 37 m 46.3480 32.8447 71 C -10.6244 35.1627 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 72 * -11.1623 27.3888 26.3188 -Verdana.ttf 37 m 46.3480 32.8447 73 ” -11.5997 23.0072 16.1408 -Verdana.ttf 37 m 46.3480 32.8447 74 ? -10.4114 23.9705 43.3815 -Verdana.ttf 37 m 46.3480 32.8447 75 { -11.3170 26.6962 55.4929 -Verdana.ttf 37 m 46.3480 32.8447 76 } -11.6083 26.6962 55.4929 -Verdana.ttf 37 m 46.3480 32.8447 77 , 24.6815 12.1891 18.6372 -Verdana.ttf 37 m 46.3480 32.8447 78 I -9.4574 16.4442 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 79 ° -10.4057 22.7964 22.7964 -Verdana.ttf 37 m 46.3480 32.8447 80 K -9.5050 33.3333 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 81 H -9.2412 32.7255 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 82 q 0.3493 28.2003 44.4964 -Verdana.ttf 37 m 46.3480 32.8447 83 & -10.5366 41.1629 44.5557 -Verdana.ttf 37 m 46.3480 32.8447 84 ’ -11.6209 11.5036 16.1408 -Verdana.ttf 37 m 46.3480 32.8447 85 [ -11.5527 15.1741 55.4929 -Verdana.ttf 37 m 46.3480 32.8447 86 - 11.6408 17.6705 4.8447 -Verdana.ttf 37 m 46.3480 32.8447 87 Y -9.2906 35.8297 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 88 Q -10.4187 40.5737 54.5262 -Verdana.ttf 37 m 46.3480 32.8447 89 " -11.4424 17.3150 16.3483 -Verdana.ttf 37 m 46.3480 32.8447 90 ! -9.6236 5.4814 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 91 x 1.0809 31.1449 31.6705 -Verdana.ttf 37 m 46.3480 32.8447 92 ) -11.5736 17.3150 56.0000 -Verdana.ttf 37 m 46.3480 32.8447 93 = 5.6440 33.8114 16.4964 -Verdana.ttf 37 m 46.3480 32.8447 94 + -2.9017 34.9855 34.9855 -Verdana.ttf 37 m 46.3480 32.8447 95 X -9.2220 35.9074 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 96 » 0.3405 28.0000 28.0000 -Verdana.ttf 37 m 46.3480 32.8447 97 ' -11.4339 6.1703 16.3483 -Verdana.ttf 37 m 46.3480 32.8447 98 ¢ -8.4523 27.2855 51.6115 -Verdana.ttf 37 m 46.3480 32.8447 99 Z -9.1216 33.2036 42.2074 -Verdana.ttf 37 m 46.3480 32.8447 100 > -2.5433 32.8447 32.8447 -Verdana.ttf 37 m 46.3480 32.8447 101 ® -10.5485 49.3445 49.3445 -Verdana.ttf 37 m 46.3480 32.8447 102 © -10.1615 49.3445 49.3445 -Verdana.ttf 37 m 46.3480 32.8447 103 ] -11.4218 15.1741 55.4929 -Verdana.ttf 37 m 46.3480 32.8447 104 é -14.9367 28.8152 48.8629 -Verdana.ttf 37 m 46.3480 32.8447 105 z 1.1409 25.5036 31.6705 -Verdana.ttf 37 m 46.3480 32.8447 106 _ 37.8619 37.0038 3.3150 -Verdana.ttf 37 m 46.3480 32.8447 107 ¥ -9.3284 31.1332 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 1 t 1.6955 20.1669 41.8484 -Verdana.ttf 38 V 37.5109 42.2074 2 h -1.9134 26.4669 44.3483 -Verdana.ttf 38 V 37.5109 42.2074 3 a 9.3574 26.7969 34.0188 -Verdana.ttf 38 V 37.5109 42.2074 4 n 9.2379 26.4669 32.8447 -Verdana.ttf 38 V 37.5109 42.2074 5 P -0.1745 27.8519 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 6 o 9.5444 29.3745 34.0188 -Verdana.ttf 38 V 37.5109 42.2074 7 e 8.9899 28.8152 34.0188 -Verdana.ttf 38 V 37.5109 42.2074 8 : 10.5388 6.6555 31.6705 -Verdana.ttf 38 V 37.5109 42.2074 9 r 10.1979 19.6817 31.6705 -Verdana.ttf 38 V 37.5109 42.2074 10 l -1.9668 5.3333 44.3483 -Verdana.ttf 38 V 37.5109 42.2074 11 i 0.0097 5.3333 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 12 1 -0.0265 22.9445 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 13 | -2.4897 5.2036 55.4929 -Verdana.ttf 38 V 37.5109 42.2074 14 N 0.0856 31.5514 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 15 f -2.3091 20.5259 44.3483 -Verdana.ttf 38 V 37.5109 42.2074 16 g 9.1672 28.2003 44.4964 -Verdana.ttf 38 V 37.5109 42.2074 17 d -2.1071 28.2003 45.5224 -Verdana.ttf 38 V 37.5109 42.2074 18 W -0.0174 52.3887 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 19 s 9.4573 25.0150 34.0188 -Verdana.ttf 38 V 37.5109 42.2074 20 c 9.1690 25.6820 34.0188 -Verdana.ttf 38 V 37.5109 42.2074 21 u 10.4423 26.4669 32.8447 -Verdana.ttf 38 V 37.5109 42.2074 22 3 -1.6667 28.2074 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 23 ~ 14.5473 37.0038 17.5224 -Verdana.ttf 38 V 37.5109 42.2074 24 # -0.1715 36.5186 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 25 O -1.3668 39.3996 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 26 ` -5.2878 11.8592 10.6850 -Verdana.ttf 38 V 37.5109 42.2074 27 @ -1.2703 48.3778 49.6815 -Verdana.ttf 38 V 37.5109 42.2074 28 F -0.4969 26.3478 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 29 S -1.2017 32.5147 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 30 p 9.0287 28.2003 44.4964 -Verdana.ttf 38 V 37.5109 42.2074 31 “ -2.1314 23.0072 16.1408 -Verdana.ttf 38 V 37.5109 42.2074 32 % -1.2717 54.3188 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 33 £ -1.2939 29.1741 43.3815 -Verdana.ttf 38 V 37.5109 42.2074 34 . 33.8998 6.6555 8.1886 -Verdana.ttf 38 V 37.5109 42.2074 35 2 -1.4346 28.3370 43.3815 -Verdana.ttf 38 V 37.5109 42.2074 36 5 -1.3381 27.5114 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 37 m 9.0686 46.3480 32.8447 -Verdana.ttf 38 V 37.5109 42.2074 38 V 0.2585 37.5109 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 39 6 -1.2525 29.6593 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 40 w 10.3844 42.9667 31.6705 -Verdana.ttf 38 V 37.5109 42.2074 41 T 0.1969 35.8297 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 42 M -0.1168 37.7217 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 43 G -1.4095 38.0483 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 44 b -2.2791 28.2003 45.5224 -Verdana.ttf 38 V 37.5109 42.2074 45 9 -1.0740 29.6593 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 46 ; 10.9750 12.1891 42.1191 -Verdana.ttf 38 V 37.5109 42.2074 47 D -0.1849 35.8587 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 48 L 0.1624 26.6777 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 49 y 10.6345 31.1449 43.3223 -Verdana.ttf 38 V 37.5109 42.2074 50 ‘ -2.3610 11.5036 16.1408 -Verdana.ttf 38 V 37.5109 42.2074 51 \ -2.0026 25.1446 53.0150 -Verdana.ttf 38 V 37.5109 42.2074 52 R -0.1403 34.9855 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 53 < 6.8107 32.8447 32.8447 -Verdana.ttf 38 V 37.5109 42.2074 54 4 -0.1298 32.2369 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 55 8 -1.2034 29.9590 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 56 0 -1.1909 28.9448 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 57 A 0.2437 37.5109 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 58 E -0.0947 27.8774 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 59 B -0.3090 32.0295 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 60 v 10.4231 31.1449 31.6705 -Verdana.ttf 38 V 37.5109 42.2074 61 k -2.0073 29.1741 44.3483 -Verdana.ttf 38 V 37.5109 42.2074 62 J -0.0505 20.1703 43.3815 -Verdana.ttf 38 V 37.5109 42.2074 63 U -0.0929 32.6187 43.3815 -Verdana.ttf 38 V 37.5109 42.2074 64 j 0.0000 16.4964 53.8592 -Verdana.ttf 38 V 37.5109 42.2074 65 ( -2.0402 17.3150 56.0000 -Verdana.ttf 38 V 37.5109 42.2074 66 7 -0.2629 29.1741 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 67 § -1.2173 27.0333 54.3965 -Verdana.ttf 38 V 37.5109 42.2074 68 $ -2.5314 28.8186 54.8039 -Verdana.ttf 38 V 37.5109 42.2074 69 € -1.3490 34.6555 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 70 / -2.1130 25.1446 53.0150 -Verdana.ttf 38 V 37.5109 42.2074 71 C -1.2216 35.1627 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 72 * -2.2783 27.3888 26.3188 -Verdana.ttf 38 V 37.5109 42.2074 73 ” -2.4317 23.0072 16.1408 -Verdana.ttf 38 V 37.5109 42.2074 74 ? -1.2409 23.9705 43.3815 -Verdana.ttf 38 V 37.5109 42.2074 75 { -2.5443 26.6962 55.4929 -Verdana.ttf 38 V 37.5109 42.2074 76 } -2.1203 26.6962 55.4929 -Verdana.ttf 38 V 37.5109 42.2074 77 , 34.0553 12.1891 18.6372 -Verdana.ttf 38 V 37.5109 42.2074 78 I -0.3326 16.4442 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 79 ° -1.1669 22.7964 22.7964 -Verdana.ttf 38 V 37.5109 42.2074 80 K 0.0471 33.3333 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 81 H 0.0572 32.7255 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 82 q 9.0714 28.2003 44.4964 -Verdana.ttf 38 V 37.5109 42.2074 83 & -1.5985 41.1629 44.5557 -Verdana.ttf 38 V 37.5109 42.2074 84 ’ -2.1779 11.5036 16.1408 -Verdana.ttf 38 V 37.5109 42.2074 85 [ -1.9837 15.1741 55.4929 -Verdana.ttf 38 V 37.5109 42.2074 86 - 21.0032 17.6705 4.8447 -Verdana.ttf 38 V 37.5109 42.2074 87 Y -0.0268 35.8297 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 88 Q -1.4636 40.5737 54.5262 -Verdana.ttf 38 V 37.5109 42.2074 89 " -2.2015 17.3150 16.3483 -Verdana.ttf 38 V 37.5109 42.2074 90 ! 0.3345 5.4814 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 91 x 10.3696 31.1449 31.6705 -Verdana.ttf 38 V 37.5109 42.2074 92 ) -2.4201 17.3150 56.0000 -Verdana.ttf 38 V 37.5109 42.2074 93 = 15.4118 33.8114 16.4964 -Verdana.ttf 38 V 37.5109 42.2074 94 + 6.2508 34.9855 34.9855 -Verdana.ttf 38 V 37.5109 42.2074 95 X -0.1399 35.9074 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 96 » 9.4182 28.0000 28.0000 -Verdana.ttf 38 V 37.5109 42.2074 97 ' -2.1246 6.1703 16.3483 -Verdana.ttf 38 V 37.5109 42.2074 98 ¢ 0.5443 27.2855 51.6115 -Verdana.ttf 38 V 37.5109 42.2074 99 Z -0.2130 33.2036 42.2074 -Verdana.ttf 38 V 37.5109 42.2074 100 > 6.8319 32.8447 32.8447 -Verdana.ttf 38 V 37.5109 42.2074 101 ® -1.0305 49.3445 49.3445 -Verdana.ttf 38 V 37.5109 42.2074 102 © -1.2332 49.3445 49.3445 -Verdana.ttf 38 V 37.5109 42.2074 103 ] -2.3461 15.1741 55.4929 -Verdana.ttf 38 V 37.5109 42.2074 104 é -5.7167 28.8152 48.8629 -Verdana.ttf 38 V 37.5109 42.2074 105 z 10.7907 25.5036 31.6705 -Verdana.ttf 38 V 37.5109 42.2074 106 _ 47.2808 37.0038 3.3150 -Verdana.ttf 38 V 37.5109 42.2074 107 ¥ -0.0889 31.1332 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 1 t 2.6061 20.1669 41.8484 -Verdana.ttf 39 6 29.6593 44.5557 2 h -1.1382 26.4669 44.3483 -Verdana.ttf 39 6 29.6593 44.5557 3 a 10.3932 26.7969 34.0188 -Verdana.ttf 39 6 29.6593 44.5557 4 n 10.5402 26.4669 32.8447 -Verdana.ttf 39 6 29.6593 44.5557 5 P 1.2567 27.8519 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 6 o 10.3178 29.3745 34.0188 -Verdana.ttf 39 6 29.6593 44.5557 7 e 10.7223 28.8152 34.0188 -Verdana.ttf 39 6 29.6593 44.5557 8 : 11.9283 6.6555 31.6705 -Verdana.ttf 39 6 29.6593 44.5557 9 r 11.7846 19.6817 31.6705 -Verdana.ttf 39 6 29.6593 44.5557 10 l -1.0038 5.3333 44.3483 -Verdana.ttf 39 6 29.6593 44.5557 11 i 1.0843 5.3333 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 12 1 0.9003 22.9445 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 13 | -0.9181 5.2036 55.4929 -Verdana.ttf 39 6 29.6593 44.5557 14 N 1.2684 31.5514 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 15 f -0.8996 20.5259 44.3483 -Verdana.ttf 39 6 29.6593 44.5557 16 g 10.9058 28.2003 44.4964 -Verdana.ttf 39 6 29.6593 44.5557 17 d -0.7994 28.2003 45.5224 -Verdana.ttf 39 6 29.6593 44.5557 18 W 1.2112 52.3887 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 19 s 10.5695 25.0150 34.0188 -Verdana.ttf 39 6 29.6593 44.5557 20 c 10.5633 25.6820 34.0188 -Verdana.ttf 39 6 29.6593 44.5557 21 u 11.7687 26.4669 32.8447 -Verdana.ttf 39 6 29.6593 44.5557 22 3 -0.0519 28.2074 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 23 ~ 15.7306 37.0038 17.5224 -Verdana.ttf 39 6 29.6593 44.5557 24 # 1.0904 36.5186 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 25 O 0.2811 39.3996 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 26 ` -4.5451 11.8592 10.6850 -Verdana.ttf 39 6 29.6593 44.5557 27 @ 0.0667 48.3778 49.6815 -Verdana.ttf 39 6 29.6593 44.5557 28 F 0.9670 26.3478 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 29 S -0.0917 32.5147 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 30 p 10.4659 28.2003 44.4964 -Verdana.ttf 39 6 29.6593 44.5557 31 “ -1.0066 23.0072 16.1408 -Verdana.ttf 39 6 29.6593 44.5557 32 % 0.1102 54.3188 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 33 £ -0.1436 29.1741 43.3815 -Verdana.ttf 39 6 29.6593 44.5557 34 . 35.1366 6.6555 8.1886 -Verdana.ttf 39 6 29.6593 44.5557 35 2 -0.0500 28.3370 43.3815 -Verdana.ttf 39 6 29.6593 44.5557 36 5 0.1382 27.5114 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 37 m 10.4879 46.3480 32.8447 -Verdana.ttf 39 6 29.6593 44.5557 38 V 1.2630 37.5109 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 39 6 -0.1241 29.6593 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 40 w 11.3929 42.9667 31.6705 -Verdana.ttf 39 6 29.6593 44.5557 41 T 1.1338 35.8297 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 42 M 1.2539 37.7217 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 43 G -0.0077 38.0483 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 44 b -1.2239 28.2003 45.5224 -Verdana.ttf 39 6 29.6593 44.5557 45 9 0.0653 29.6593 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 46 ; 11.7077 12.1891 42.1191 -Verdana.ttf 39 6 29.6593 44.5557 47 D 1.0871 35.8587 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 48 L 0.7758 26.6777 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 49 y 11.6240 31.1449 43.3223 -Verdana.ttf 39 6 29.6593 44.5557 50 ‘ -0.9534 11.5036 16.1408 -Verdana.ttf 39 6 29.6593 44.5557 51 \ -0.9937 25.1446 53.0150 -Verdana.ttf 39 6 29.6593 44.5557 52 R 1.0904 34.9855 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 53 < 8.3958 32.8447 32.8447 -Verdana.ttf 39 6 29.6593 44.5557 54 4 1.2923 32.2369 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 55 8 0.1269 29.9590 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 56 0 0.0591 28.9448 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 57 A 1.1434 37.5109 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 58 E 1.1756 27.8774 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 59 B 1.3573 32.0295 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 60 v 11.8851 31.1449 31.6705 -Verdana.ttf 39 6 29.6593 44.5557 61 k -0.9500 29.1741 44.3483 -Verdana.ttf 39 6 29.6593 44.5557 62 J 0.6907 20.1703 43.3815 -Verdana.ttf 39 6 29.6593 44.5557 63 U 1.2611 32.6187 43.3815 -Verdana.ttf 39 6 29.6593 44.5557 64 j 1.1608 16.4964 53.8592 -Verdana.ttf 39 6 29.6593 44.5557 65 ( -1.3080 17.3150 56.0000 -Verdana.ttf 39 6 29.6593 44.5557 66 7 0.9424 29.1741 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 67 § -0.2562 27.0333 54.3965 -Verdana.ttf 39 6 29.6593 44.5557 68 $ -1.5645 28.8186 54.8039 -Verdana.ttf 39 6 29.6593 44.5557 69 € -0.0772 34.6555 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 70 / -0.9433 25.1446 53.0150 -Verdana.ttf 39 6 29.6593 44.5557 71 C 0.0134 35.1627 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 72 * -1.0369 27.3888 26.3188 -Verdana.ttf 39 6 29.6593 44.5557 73 ” -0.7615 23.0072 16.1408 -Verdana.ttf 39 6 29.6593 44.5557 74 ? 0.1230 23.9705 43.3815 -Verdana.ttf 39 6 29.6593 44.5557 75 { -0.9431 26.6962 55.4929 -Verdana.ttf 39 6 29.6593 44.5557 76 } -1.1368 26.6962 55.4929 -Verdana.ttf 39 6 29.6593 44.5557 77 , 34.5987 12.1891 18.6372 -Verdana.ttf 39 6 29.6593 44.5557 78 I 1.3923 16.4442 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 79 ° -0.2081 22.7964 22.7964 -Verdana.ttf 39 6 29.6593 44.5557 80 K 1.2039 33.3333 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 81 H 1.1574 32.7255 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 82 q 10.2912 28.2003 44.4964 -Verdana.ttf 39 6 29.6593 44.5557 83 & -0.1236 41.1629 44.5557 -Verdana.ttf 39 6 29.6593 44.5557 84 ’ -1.1541 11.5036 16.1408 -Verdana.ttf 39 6 29.6593 44.5557 85 [ -1.0007 15.1741 55.4929 -Verdana.ttf 39 6 29.6593 44.5557 86 - 21.8611 17.6705 4.8447 -Verdana.ttf 39 6 29.6593 44.5557 87 Y 1.4037 35.8297 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 88 Q -0.3148 40.5737 54.5262 -Verdana.ttf 39 6 29.6593 44.5557 89 " -1.0019 17.3150 16.3483 -Verdana.ttf 39 6 29.6593 44.5557 90 ! 0.9493 5.4814 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 91 x 11.8547 31.1449 31.6705 -Verdana.ttf 39 6 29.6593 44.5557 92 ) -1.0820 17.3150 56.0000 -Verdana.ttf 39 6 29.6593 44.5557 93 = 16.6979 33.8114 16.4964 -Verdana.ttf 39 6 29.6593 44.5557 94 + 7.5182 34.9855 34.9855 -Verdana.ttf 39 6 29.6593 44.5557 95 X 1.0944 35.9074 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 96 » 10.6040 28.0000 28.0000 -Verdana.ttf 39 6 29.6593 44.5557 97 ' -1.0774 6.1703 16.3483 -Verdana.ttf 39 6 29.6593 44.5557 98 ¢ 1.7142 27.2855 51.6115 -Verdana.ttf 39 6 29.6593 44.5557 99 Z 1.3280 33.2036 42.2074 -Verdana.ttf 39 6 29.6593 44.5557 100 > 8.2852 32.8447 32.8447 -Verdana.ttf 39 6 29.6593 44.5557 101 ® -0.1567 49.3445 49.3445 -Verdana.ttf 39 6 29.6593 44.5557 102 © 0.1600 49.3445 49.3445 -Verdana.ttf 39 6 29.6593 44.5557 103 ] -0.9649 15.1741 55.4929 -Verdana.ttf 39 6 29.6593 44.5557 104 é -4.0011 28.8152 48.8629 -Verdana.ttf 39 6 29.6593 44.5557 105 z 11.6845 25.5036 31.6705 -Verdana.ttf 39 6 29.6593 44.5557 106 _ 48.3549 37.0038 3.3150 -Verdana.ttf 39 6 29.6593 44.5557 107 ¥ 1.0308 31.1332 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 1 t -8.9418 20.1669 41.8484 -Verdana.ttf 40 w 42.9667 31.6705 2 h -12.6392 26.4669 44.3483 -Verdana.ttf 40 w 42.9667 31.6705 3 a -1.3706 26.7969 34.0188 -Verdana.ttf 40 w 42.9667 31.6705 4 n -1.1458 26.4669 32.8447 -Verdana.ttf 40 w 42.9667 31.6705 5 P -10.9848 27.8519 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 6 o -1.0856 29.3745 34.0188 -Verdana.ttf 40 w 42.9667 31.6705 7 e -0.9566 28.8152 34.0188 -Verdana.ttf 40 w 42.9667 31.6705 8 : 0.0821 6.6555 31.6705 -Verdana.ttf 40 w 42.9667 31.6705 9 r -0.0990 19.6817 31.6705 -Verdana.ttf 40 w 42.9667 31.6705 10 l -12.8349 5.3333 44.3483 -Verdana.ttf 40 w 42.9667 31.6705 11 i -10.8648 5.3333 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 12 1 -10.5017 22.9445 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 13 | -12.4826 5.2036 55.4929 -Verdana.ttf 40 w 42.9667 31.6705 14 N -10.2760 31.5514 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 15 f -12.5436 20.5259 44.3483 -Verdana.ttf 40 w 42.9667 31.6705 16 g -1.3275 28.2003 44.4964 -Verdana.ttf 40 w 42.9667 31.6705 17 d -12.6485 28.2003 45.5224 -Verdana.ttf 40 w 42.9667 31.6705 18 W -10.5576 52.3887 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 19 s -1.0097 25.0150 34.0188 -Verdana.ttf 40 w 42.9667 31.6705 20 c -1.3881 25.6820 34.0188 -Verdana.ttf 40 w 42.9667 31.6705 21 u -0.0671 26.4669 32.8447 -Verdana.ttf 40 w 42.9667 31.6705 22 3 -11.3457 28.2074 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 23 ~ 3.9498 37.0038 17.5224 -Verdana.ttf 40 w 42.9667 31.6705 24 # -10.5249 36.5186 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 25 O -11.6240 39.3996 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 26 ` -16.1660 11.8592 10.6850 -Verdana.ttf 40 w 42.9667 31.6705 27 @ -11.6308 48.3778 49.6815 -Verdana.ttf 40 w 42.9667 31.6705 28 F -10.5277 26.3478 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 29 S -11.7077 32.5147 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 30 p -1.1404 28.2003 44.4964 -Verdana.ttf 40 w 42.9667 31.6705 31 “ -13.1055 23.0072 16.1408 -Verdana.ttf 40 w 42.9667 31.6705 32 % -11.9949 54.3188 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 33 £ -11.7480 29.1741 43.3815 -Verdana.ttf 40 w 42.9667 31.6705 34 . 23.5382 6.6555 8.1886 -Verdana.ttf 40 w 42.9667 31.6705 35 2 -11.9801 28.3370 43.3815 -Verdana.ttf 40 w 42.9667 31.6705 36 5 -11.6146 27.5114 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 37 m -1.5291 46.3480 32.8447 -Verdana.ttf 40 w 42.9667 31.6705 38 V -10.5988 37.5109 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 39 6 -11.7393 29.6593 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 40 w 0.2016 42.9667 31.6705 -Verdana.ttf 40 w 42.9667 31.6705 41 T -10.5278 35.8297 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 42 M -10.2446 37.7217 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 43 G -11.5942 38.0483 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 44 b -12.2087 28.2003 45.5224 -Verdana.ttf 40 w 42.9667 31.6705 45 9 -11.7567 29.6593 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 46 ; 0.0519 12.1891 42.1191 -Verdana.ttf 40 w 42.9667 31.6705 47 D -10.1970 35.8587 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 48 L -10.4201 26.6777 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 49 y -0.3109 31.1449 43.3223 -Verdana.ttf 40 w 42.9667 31.6705 50 ‘ -12.7460 11.5036 16.1408 -Verdana.ttf 40 w 42.9667 31.6705 51 \ -12.3279 25.1446 53.0150 -Verdana.ttf 40 w 42.9667 31.6705 52 R -10.6081 34.9855 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 53 < -3.7632 32.8447 32.8447 -Verdana.ttf 40 w 42.9667 31.6705 54 4 -10.7879 32.2369 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 55 8 -11.6139 29.9590 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 56 0 -11.6653 28.9448 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 57 A -10.4712 37.5109 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 58 E -10.5139 27.8774 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 59 B -10.3619 32.0295 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 60 v 0.0663 31.1449 31.6705 -Verdana.ttf 40 w 42.9667 31.6705 61 k -12.6610 29.1741 44.3483 -Verdana.ttf 40 w 42.9667 31.6705 62 J -10.5594 20.1703 43.3815 -Verdana.ttf 40 w 42.9667 31.6705 63 U -10.2280 32.6187 43.3815 -Verdana.ttf 40 w 42.9667 31.6705 64 j -10.8843 16.4964 53.8592 -Verdana.ttf 40 w 42.9667 31.6705 65 ( -12.6023 17.3150 56.0000 -Verdana.ttf 40 w 42.9667 31.6705 66 7 -10.5192 29.1741 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 67 § -11.7668 27.0333 54.3965 -Verdana.ttf 40 w 42.9667 31.6705 68 $ -13.2858 28.8186 54.8039 -Verdana.ttf 40 w 42.9667 31.6705 69 € -11.4493 34.6555 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 70 / -12.7926 25.1446 53.0150 -Verdana.ttf 40 w 42.9667 31.6705 71 C -11.7542 35.1627 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 72 * -12.6719 27.3888 26.3188 -Verdana.ttf 40 w 42.9667 31.6705 73 ” -12.5848 23.0072 16.1408 -Verdana.ttf 40 w 42.9667 31.6705 74 ? -11.4096 23.9705 43.3815 -Verdana.ttf 40 w 42.9667 31.6705 75 { -12.3894 26.6962 55.4929 -Verdana.ttf 40 w 42.9667 31.6705 76 } -12.5879 26.6962 55.4929 -Verdana.ttf 40 w 42.9667 31.6705 77 , 23.4502 12.1891 18.6372 -Verdana.ttf 40 w 42.9667 31.6705 78 I -10.1822 16.4442 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 79 ° -11.7463 22.7964 22.7964 -Verdana.ttf 40 w 42.9667 31.6705 80 K -10.3135 33.3333 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 81 H -10.6772 32.7255 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 82 q -1.2097 28.2003 44.4964 -Verdana.ttf 40 w 42.9667 31.6705 83 & -11.4980 41.1629 44.5557 -Verdana.ttf 40 w 42.9667 31.6705 84 ’ -12.8936 11.5036 16.1408 -Verdana.ttf 40 w 42.9667 31.6705 85 [ -12.8260 15.1741 55.4929 -Verdana.ttf 40 w 42.9667 31.6705 86 - 9.7677 17.6705 4.8447 -Verdana.ttf 40 w 42.9667 31.6705 87 Y -10.6892 35.8297 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 88 Q -11.7462 40.5737 54.5262 -Verdana.ttf 40 w 42.9667 31.6705 89 " -12.3244 17.3150 16.3483 -Verdana.ttf 40 w 42.9667 31.6705 90 ! -10.5239 5.4814 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 91 x 0.0917 31.1449 31.6705 -Verdana.ttf 40 w 42.9667 31.6705 92 ) -12.3919 17.3150 56.0000 -Verdana.ttf 40 w 42.9667 31.6705 93 = 4.9955 33.8114 16.4964 -Verdana.ttf 40 w 42.9667 31.6705 94 + -4.0669 34.9855 34.9855 -Verdana.ttf 40 w 42.9667 31.6705 95 X -10.5444 35.9074 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 96 » -0.8457 28.0000 28.0000 -Verdana.ttf 40 w 42.9667 31.6705 97 ' -12.8304 6.1703 16.3483 -Verdana.ttf 40 w 42.9667 31.6705 98 ¢ -10.1756 27.2855 51.6115 -Verdana.ttf 40 w 42.9667 31.6705 99 Z -10.8946 33.2036 42.2074 -Verdana.ttf 40 w 42.9667 31.6705 100 > -3.4264 32.8447 32.8447 -Verdana.ttf 40 w 42.9667 31.6705 101 ® -11.5304 49.3445 49.3445 -Verdana.ttf 40 w 42.9667 31.6705 102 © -11.7263 49.3445 49.3445 -Verdana.ttf 40 w 42.9667 31.6705 103 ] -12.6306 15.1741 55.4929 -Verdana.ttf 40 w 42.9667 31.6705 104 é -15.9533 28.8152 48.8629 -Verdana.ttf 40 w 42.9667 31.6705 105 z 0.0019 25.5036 31.6705 -Verdana.ttf 40 w 42.9667 31.6705 106 _ 36.8986 37.0038 3.3150 -Verdana.ttf 40 w 42.9667 31.6705 107 ¥ -10.7599 31.1332 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 1 t 1.4812 20.1669 41.8484 -Verdana.ttf 41 T 35.8297 42.2074 2 h -2.1807 26.4669 44.3483 -Verdana.ttf 41 T 35.8297 42.2074 3 a 9.3512 26.7969 34.0188 -Verdana.ttf 41 T 35.8297 42.2074 4 n 9.5496 26.4669 32.8447 -Verdana.ttf 41 T 35.8297 42.2074 5 P 0.1894 27.8519 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 6 o 9.4602 29.3745 34.0188 -Verdana.ttf 41 T 35.8297 42.2074 7 e 9.5568 28.8152 34.0188 -Verdana.ttf 41 T 35.8297 42.2074 8 : 10.4644 6.6555 31.6705 -Verdana.ttf 41 T 35.8297 42.2074 9 r 10.3696 19.6817 31.6705 -Verdana.ttf 41 T 35.8297 42.2074 10 l -2.0712 5.3333 44.3483 -Verdana.ttf 41 T 35.8297 42.2074 11 i 0.3090 5.3333 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 12 1 0.0338 22.9445 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 13 | -2.4706 5.2036 55.4929 -Verdana.ttf 41 T 35.8297 42.2074 14 N -0.0620 31.5514 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 15 f -2.3241 20.5259 44.3483 -Verdana.ttf 41 T 35.8297 42.2074 16 g 9.5300 28.2003 44.4964 -Verdana.ttf 41 T 35.8297 42.2074 17 d -1.8963 28.2003 45.5224 -Verdana.ttf 41 T 35.8297 42.2074 18 W -0.4893 52.3887 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 19 s 9.2652 25.0150 34.0188 -Verdana.ttf 41 T 35.8297 42.2074 20 c 9.3032 25.6820 34.0188 -Verdana.ttf 41 T 35.8297 42.2074 21 u 10.3211 26.4669 32.8447 -Verdana.ttf 41 T 35.8297 42.2074 22 3 -1.1251 28.2074 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 23 ~ 14.9005 37.0038 17.5224 -Verdana.ttf 41 T 35.8297 42.2074 24 # 0.0284 36.5186 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 25 O -0.9708 39.3996 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 26 ` -5.4314 11.8592 10.6850 -Verdana.ttf 41 T 35.8297 42.2074 27 @ -1.1593 48.3778 49.6815 -Verdana.ttf 41 T 35.8297 42.2074 28 F -0.0547 26.3478 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 29 S -0.9299 32.5147 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 30 p 9.4646 28.2003 44.4964 -Verdana.ttf 41 T 35.8297 42.2074 31 “ -2.1500 23.0072 16.1408 -Verdana.ttf 41 T 35.8297 42.2074 32 % -1.4360 54.3188 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 33 £ -1.2074 29.1741 43.3815 -Verdana.ttf 41 T 35.8297 42.2074 34 . 33.8217 6.6555 8.1886 -Verdana.ttf 41 T 35.8297 42.2074 35 2 -1.4019 28.3370 43.3815 -Verdana.ttf 41 T 35.8297 42.2074 36 5 -1.0487 27.5114 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 37 m 9.2141 46.3480 32.8447 -Verdana.ttf 41 T 35.8297 42.2074 38 V -0.0719 37.5109 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 39 6 -1.0568 29.6593 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 40 w 10.2817 42.9667 31.6705 -Verdana.ttf 41 T 35.8297 42.2074 41 T 0.1643 35.8297 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 42 M 0.2836 37.7217 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 43 G -1.2818 38.0483 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 44 b -2.1641 28.2003 45.5224 -Verdana.ttf 41 T 35.8297 42.2074 45 9 -1.0069 29.6593 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 46 ; 10.4133 12.1891 42.1191 -Verdana.ttf 41 T 35.8297 42.2074 47 D 0.0889 35.8587 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 48 L -0.0370 26.6777 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 49 y 10.6646 31.1449 43.3223 -Verdana.ttf 41 T 35.8297 42.2074 50 ‘ -1.8514 11.5036 16.1408 -Verdana.ttf 41 T 35.8297 42.2074 51 \ -2.2326 25.1446 53.0150 -Verdana.ttf 41 T 35.8297 42.2074 52 R 0.3021 34.9855 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 53 < 7.1567 32.8447 32.8447 -Verdana.ttf 41 T 35.8297 42.2074 54 4 0.0884 32.2369 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 55 8 -1.1211 29.9590 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 56 0 -1.1218 28.9448 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 57 A 0.1403 37.5109 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 58 E -0.3500 27.8774 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 59 B -0.1037 32.0295 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 60 v 10.7055 31.1449 31.6705 -Verdana.ttf 41 T 35.8297 42.2074 61 k -2.2590 29.1741 44.3483 -Verdana.ttf 41 T 35.8297 42.2074 62 J 0.0404 20.1703 43.3815 -Verdana.ttf 41 T 35.8297 42.2074 63 U 0.0101 32.6187 43.3815 -Verdana.ttf 41 T 35.8297 42.2074 64 j -0.1907 16.4964 53.8592 -Verdana.ttf 41 T 35.8297 42.2074 65 ( -2.0743 17.3150 56.0000 -Verdana.ttf 41 T 35.8297 42.2074 66 7 0.1110 29.1741 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 67 § -1.5481 27.0333 54.3965 -Verdana.ttf 41 T 35.8297 42.2074 68 $ -2.5905 28.8186 54.8039 -Verdana.ttf 41 T 35.8297 42.2074 69 € -1.0568 34.6555 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 70 / -2.3128 25.1446 53.0150 -Verdana.ttf 41 T 35.8297 42.2074 71 C -0.9630 35.1627 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 72 * -2.3620 27.3888 26.3188 -Verdana.ttf 41 T 35.8297 42.2074 73 ” -2.1812 23.0072 16.1408 -Verdana.ttf 41 T 35.8297 42.2074 74 ? -1.2616 23.9705 43.3815 -Verdana.ttf 41 T 35.8297 42.2074 75 { -1.9326 26.6962 55.4929 -Verdana.ttf 41 T 35.8297 42.2074 76 } -2.0116 26.6962 55.4929 -Verdana.ttf 41 T 35.8297 42.2074 77 , 34.2745 12.1891 18.6372 -Verdana.ttf 41 T 35.8297 42.2074 78 I 0.1909 16.4442 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 79 ° -0.8915 22.7964 22.7964 -Verdana.ttf 41 T 35.8297 42.2074 80 K -0.1288 33.3333 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 81 H -0.2677 32.7255 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 82 q 9.0505 28.2003 44.4964 -Verdana.ttf 41 T 35.8297 42.2074 83 & -1.1905 41.1629 44.5557 -Verdana.ttf 41 T 35.8297 42.2074 84 ’ -1.6722 11.5036 16.1408 -Verdana.ttf 41 T 35.8297 42.2074 85 [ -2.0630 15.1741 55.4929 -Verdana.ttf 41 T 35.8297 42.2074 86 - 20.9220 17.6705 4.8447 -Verdana.ttf 41 T 35.8297 42.2074 87 Y 0.0903 35.8297 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 88 Q -0.9920 40.5737 54.5262 -Verdana.ttf 41 T 35.8297 42.2074 89 " -1.9722 17.3150 16.3483 -Verdana.ttf 41 T 35.8297 42.2074 90 ! 0.0471 5.4814 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 91 x 10.4295 31.1449 31.6705 -Verdana.ttf 41 T 35.8297 42.2074 92 ) -2.1913 17.3150 56.0000 -Verdana.ttf 41 T 35.8297 42.2074 93 = 15.0576 33.8114 16.4964 -Verdana.ttf 41 T 35.8297 42.2074 94 + 6.0259 34.9855 34.9855 -Verdana.ttf 41 T 35.8297 42.2074 95 X -0.0275 35.9074 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 96 » 9.8930 28.0000 28.0000 -Verdana.ttf 41 T 35.8297 42.2074 97 ' -2.3731 6.1703 16.3483 -Verdana.ttf 41 T 35.8297 42.2074 98 ¢ 0.4554 27.2855 51.6115 -Verdana.ttf 41 T 35.8297 42.2074 99 Z 0.0265 33.2036 42.2074 -Verdana.ttf 41 T 35.8297 42.2074 100 > 6.9996 32.8447 32.8447 -Verdana.ttf 41 T 35.8297 42.2074 101 ® -1.2891 49.3445 49.3445 -Verdana.ttf 41 T 35.8297 42.2074 102 © -0.9583 49.3445 49.3445 -Verdana.ttf 41 T 35.8297 42.2074 103 ] -2.0302 15.1741 55.4929 -Verdana.ttf 41 T 35.8297 42.2074 104 é -5.7876 28.8152 48.8629 -Verdana.ttf 41 T 35.8297 42.2074 105 z 10.5104 25.5036 31.6705 -Verdana.ttf 41 T 35.8297 42.2074 106 _ 47.4994 37.0038 3.3150 -Verdana.ttf 41 T 35.8297 42.2074 107 ¥ -0.0505 31.1332 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 1 t 1.7963 20.1669 41.8484 -Verdana.ttf 42 M 37.7217 42.2074 2 h -2.0890 26.4669 44.3483 -Verdana.ttf 42 M 37.7217 42.2074 3 a 9.2787 26.7969 34.0188 -Verdana.ttf 42 M 37.7217 42.2074 4 n 9.0389 26.4669 32.8447 -Verdana.ttf 42 M 37.7217 42.2074 5 P -0.2365 27.8519 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 6 o 9.0276 29.3745 34.0188 -Verdana.ttf 42 M 37.7217 42.2074 7 e 9.4237 28.8152 34.0188 -Verdana.ttf 42 M 37.7217 42.2074 8 : 10.7498 6.6555 31.6705 -Verdana.ttf 42 M 37.7217 42.2074 9 r 10.4090 19.6817 31.6705 -Verdana.ttf 42 M 37.7217 42.2074 10 l -2.4408 5.3333 44.3483 -Verdana.ttf 42 M 37.7217 42.2074 11 i -0.1893 5.3333 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 12 1 0.3733 22.9445 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 13 | -2.0502 5.2036 55.4929 -Verdana.ttf 42 M 37.7217 42.2074 14 N -0.1523 31.5514 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 15 f -2.2413 20.5259 44.3483 -Verdana.ttf 42 M 37.7217 42.2074 16 g 9.2666 28.2003 44.4964 -Verdana.ttf 42 M 37.7217 42.2074 17 d -2.0803 28.2003 45.5224 -Verdana.ttf 42 M 37.7217 42.2074 18 W -0.3845 52.3887 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 19 s 9.2612 25.0150 34.0188 -Verdana.ttf 42 M 37.7217 42.2074 20 c 9.3656 25.6820 34.0188 -Verdana.ttf 42 M 37.7217 42.2074 21 u 10.6185 26.4669 32.8447 -Verdana.ttf 42 M 37.7217 42.2074 22 3 -1.0203 28.2074 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 23 ~ 14.6641 37.0038 17.5224 -Verdana.ttf 42 M 37.7217 42.2074 24 # 0.2292 36.5186 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 25 O -1.5101 39.3996 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 26 ` -5.4781 11.8592 10.6850 -Verdana.ttf 42 M 37.7217 42.2074 27 @ -1.0843 48.3778 49.6815 -Verdana.ttf 42 M 37.7217 42.2074 28 F 0.2499 26.3478 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 29 S -1.2025 32.5147 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 30 p 9.4040 28.2003 44.4964 -Verdana.ttf 42 M 37.7217 42.2074 31 “ -1.9222 23.0072 16.1408 -Verdana.ttf 42 M 37.7217 42.2074 32 % -1.5293 54.3188 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 33 £ -1.2692 29.1741 43.3815 -Verdana.ttf 42 M 37.7217 42.2074 34 . 34.4249 6.6555 8.1886 -Verdana.ttf 42 M 37.7217 42.2074 35 2 -1.1589 28.3370 43.3815 -Verdana.ttf 42 M 37.7217 42.2074 36 5 -0.7157 27.5114 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 37 m 9.3109 46.3480 32.8447 -Verdana.ttf 42 M 37.7217 42.2074 38 V 0.0705 37.5109 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 39 6 -1.5215 29.6593 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 40 w 10.3628 42.9667 31.6705 -Verdana.ttf 42 M 37.7217 42.2074 41 T -0.1034 35.8297 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 42 M -0.0856 37.7217 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 43 G -1.4948 38.0483 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 44 b -2.1764 28.2003 45.5224 -Verdana.ttf 42 M 37.7217 42.2074 45 9 -1.0555 29.6593 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 46 ; 10.4690 12.1891 42.1191 -Verdana.ttf 42 M 37.7217 42.2074 47 D 0.0943 35.8587 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 48 L -0.2844 26.6777 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 49 y 10.4836 31.1449 43.3223 -Verdana.ttf 42 M 37.7217 42.2074 50 ‘ -2.1033 11.5036 16.1408 -Verdana.ttf 42 M 37.7217 42.2074 51 \ -2.1322 25.1446 53.0150 -Verdana.ttf 42 M 37.7217 42.2074 52 R 0.0530 34.9855 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 53 < 7.2289 32.8447 32.8447 -Verdana.ttf 42 M 37.7217 42.2074 54 4 0.1173 32.2369 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 55 8 -1.1876 29.9590 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 56 0 -1.2771 28.9448 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 57 A -0.0251 37.5109 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 58 E -0.1280 27.8774 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 59 B -0.1759 32.0295 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 60 v 10.5620 31.1449 31.6705 -Verdana.ttf 42 M 37.7217 42.2074 61 k -2.4226 29.1741 44.3483 -Verdana.ttf 42 M 37.7217 42.2074 62 J 0.0580 20.1703 43.3815 -Verdana.ttf 42 M 37.7217 42.2074 63 U -0.1079 32.6187 43.3815 -Verdana.ttf 42 M 37.7217 42.2074 64 j -0.1930 16.4964 53.8592 -Verdana.ttf 42 M 37.7217 42.2074 65 ( -2.0005 17.3150 56.0000 -Verdana.ttf 42 M 37.7217 42.2074 66 7 -0.3446 29.1741 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 67 § -1.1549 27.0333 54.3965 -Verdana.ttf 42 M 37.7217 42.2074 68 $ -2.4444 28.8186 54.8039 -Verdana.ttf 42 M 37.7217 42.2074 69 € -0.9123 34.6555 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 70 / -2.0183 25.1446 53.0150 -Verdana.ttf 42 M 37.7217 42.2074 71 C -1.0272 35.1627 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 72 * -1.8703 27.3888 26.3188 -Verdana.ttf 42 M 37.7217 42.2074 73 ” -1.9766 23.0072 16.1408 -Verdana.ttf 42 M 37.7217 42.2074 74 ? -1.1814 23.9705 43.3815 -Verdana.ttf 42 M 37.7217 42.2074 75 { -2.2058 26.6962 55.4929 -Verdana.ttf 42 M 37.7217 42.2074 76 } -2.2697 26.6962 55.4929 -Verdana.ttf 42 M 37.7217 42.2074 77 , 33.8900 12.1891 18.6372 -Verdana.ttf 42 M 37.7217 42.2074 78 I -0.0000 16.4442 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 79 ° -1.1538 22.7964 22.7964 -Verdana.ttf 42 M 37.7217 42.2074 80 K 0.2411 33.3333 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 81 H 0.0254 32.7255 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 82 q 9.4495 28.2003 44.4964 -Verdana.ttf 42 M 37.7217 42.2074 83 & -1.3797 41.1629 44.5557 -Verdana.ttf 42 M 37.7217 42.2074 84 ’ -2.0266 11.5036 16.1408 -Verdana.ttf 42 M 37.7217 42.2074 85 [ -2.3081 15.1741 55.4929 -Verdana.ttf 42 M 37.7217 42.2074 86 - 20.5404 17.6705 4.8447 -Verdana.ttf 42 M 37.7217 42.2074 87 Y 0.1567 35.8297 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 88 Q -0.8978 40.5737 54.5262 -Verdana.ttf 42 M 37.7217 42.2074 89 " -2.2664 17.3150 16.3483 -Verdana.ttf 42 M 37.7217 42.2074 90 ! -0.0755 5.4814 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 91 x 10.6565 31.1449 31.6705 -Verdana.ttf 42 M 37.7217 42.2074 92 ) -2.3255 17.3150 56.0000 -Verdana.ttf 42 M 37.7217 42.2074 93 = 15.2379 33.8114 16.4964 -Verdana.ttf 42 M 37.7217 42.2074 94 + 6.4416 34.9855 34.9855 -Verdana.ttf 42 M 37.7217 42.2074 95 X -0.0413 35.9074 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 96 » 9.4505 28.0000 28.0000 -Verdana.ttf 42 M 37.7217 42.2074 97 ' -2.4603 6.1703 16.3483 -Verdana.ttf 42 M 37.7217 42.2074 98 ¢ 0.8448 27.2855 51.6115 -Verdana.ttf 42 M 37.7217 42.2074 99 Z -0.0812 33.2036 42.2074 -Verdana.ttf 42 M 37.7217 42.2074 100 > 7.0674 32.8447 32.8447 -Verdana.ttf 42 M 37.7217 42.2074 101 ® -1.0436 49.3445 49.3445 -Verdana.ttf 42 M 37.7217 42.2074 102 © -1.1713 49.3445 49.3445 -Verdana.ttf 42 M 37.7217 42.2074 103 ] -2.3795 15.1741 55.4929 -Verdana.ttf 42 M 37.7217 42.2074 104 é -5.5220 28.8152 48.8629 -Verdana.ttf 42 M 37.7217 42.2074 105 z 10.9094 25.5036 31.6705 -Verdana.ttf 42 M 37.7217 42.2074 106 _ 47.4136 37.0038 3.3150 -Verdana.ttf 42 M 37.7217 42.2074 107 ¥ 0.2412 31.1332 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 1 t 2.9986 20.1669 41.8484 -Verdana.ttf 43 G 38.0483 44.5557 2 h -0.4933 26.4669 44.3483 -Verdana.ttf 43 G 38.0483 44.5557 3 a 10.5550 26.7969 34.0188 -Verdana.ttf 43 G 38.0483 44.5557 4 n 10.4337 26.4669 32.8447 -Verdana.ttf 43 G 38.0483 44.5557 5 P 1.5720 27.8519 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 6 o 10.5754 29.3745 34.0188 -Verdana.ttf 43 G 38.0483 44.5557 7 e 10.3994 28.8152 34.0188 -Verdana.ttf 43 G 38.0483 44.5557 8 : 11.8811 6.6555 31.6705 -Verdana.ttf 43 G 38.0483 44.5557 9 r 11.6645 19.6817 31.6705 -Verdana.ttf 43 G 38.0483 44.5557 10 l -1.0397 5.3333 44.3483 -Verdana.ttf 43 G 38.0483 44.5557 11 i 1.5955 5.3333 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 12 1 1.3040 22.9445 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 13 | -0.8999 5.2036 55.4929 -Verdana.ttf 43 G 38.0483 44.5557 14 N 1.1698 31.5514 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 15 f -1.0965 20.5259 44.3483 -Verdana.ttf 43 G 38.0483 44.5557 16 g 10.7694 28.2003 44.4964 -Verdana.ttf 43 G 38.0483 44.5557 17 d -0.7222 28.2003 45.5224 -Verdana.ttf 43 G 38.0483 44.5557 18 W 1.2448 52.3887 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 19 s 10.5017 25.0150 34.0188 -Verdana.ttf 43 G 38.0483 44.5557 20 c 10.6399 25.6820 34.0188 -Verdana.ttf 43 G 38.0483 44.5557 21 u 11.5789 26.4669 32.8447 -Verdana.ttf 43 G 38.0483 44.5557 22 3 -0.1001 28.2074 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 23 ~ 15.9487 37.0038 17.5224 -Verdana.ttf 43 G 38.0483 44.5557 24 # 1.3682 36.5186 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 25 O 0.0185 39.3996 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 26 ` -4.3937 11.8592 10.6850 -Verdana.ttf 43 G 38.0483 44.5557 27 @ -0.3388 48.3778 49.6815 -Verdana.ttf 43 G 38.0483 44.5557 28 F 1.0214 26.3478 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 29 S -0.1971 32.5147 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 30 p 10.4485 28.2003 44.4964 -Verdana.ttf 43 G 38.0483 44.5557 31 “ -0.8586 23.0072 16.1408 -Verdana.ttf 43 G 38.0483 44.5557 32 % -0.1048 54.3188 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 33 £ -0.0467 29.1741 43.3815 -Verdana.ttf 43 G 38.0483 44.5557 34 . 35.2918 6.6555 8.1886 -Verdana.ttf 43 G 38.0483 44.5557 35 2 0.0846 28.3370 43.3815 -Verdana.ttf 43 G 38.0483 44.5557 36 5 0.0005 27.5114 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 37 m 10.6704 46.3480 32.8447 -Verdana.ttf 43 G 38.0483 44.5557 38 V 1.2909 37.5109 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 39 6 -0.2335 29.6593 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 40 w 11.7408 42.9667 31.6705 -Verdana.ttf 43 G 38.0483 44.5557 41 T 1.1548 35.8297 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 42 M 1.6124 37.7217 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 43 G -0.2353 38.0483 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 44 b -1.1281 28.2003 45.5224 -Verdana.ttf 43 G 38.0483 44.5557 45 9 -0.0074 29.6593 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 46 ; 11.7024 12.1891 42.1191 -Verdana.ttf 43 G 38.0483 44.5557 47 D 1.1073 35.8587 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 48 L 1.3279 26.6777 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 49 y 11.7918 31.1449 43.3223 -Verdana.ttf 43 G 38.0483 44.5557 50 ‘ -1.2483 11.5036 16.1408 -Verdana.ttf 43 G 38.0483 44.5557 51 \ -1.3410 25.1446 53.0150 -Verdana.ttf 43 G 38.0483 44.5557 52 R 0.8853 34.9855 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 53 < 8.3145 32.8447 32.8447 -Verdana.ttf 43 G 38.0483 44.5557 54 4 1.0663 32.2369 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 55 8 0.1687 29.9590 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 56 0 0.4469 28.9448 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 57 A 1.1770 37.5109 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 58 E 0.9358 27.8774 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 59 B 1.0149 32.0295 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 60 v 11.8768 31.1449 31.6705 -Verdana.ttf 43 G 38.0483 44.5557 61 k -1.0397 29.1741 44.3483 -Verdana.ttf 43 G 38.0483 44.5557 62 J 1.4150 20.1703 43.3815 -Verdana.ttf 43 G 38.0483 44.5557 63 U 1.1058 32.6187 43.3815 -Verdana.ttf 43 G 38.0483 44.5557 64 j 1.3947 16.4964 53.8592 -Verdana.ttf 43 G 38.0483 44.5557 65 ( -0.5644 17.3150 56.0000 -Verdana.ttf 43 G 38.0483 44.5557 66 7 1.7487 29.1741 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 67 § -0.0356 27.0333 54.3965 -Verdana.ttf 43 G 38.0483 44.5557 68 $ -1.2640 28.8186 54.8039 -Verdana.ttf 43 G 38.0483 44.5557 69 € 0.1950 34.6555 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 70 / -1.0385 25.1446 53.0150 -Verdana.ttf 43 G 38.0483 44.5557 71 C -0.0533 35.1627 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 72 * -1.1372 27.3888 26.3188 -Verdana.ttf 43 G 38.0483 44.5557 73 ” -1.1463 23.0072 16.1408 -Verdana.ttf 43 G 38.0483 44.5557 74 ? -0.1140 23.9705 43.3815 -Verdana.ttf 43 G 38.0483 44.5557 75 { -0.8225 26.6962 55.4929 -Verdana.ttf 43 G 38.0483 44.5557 76 } -0.9902 26.6962 55.4929 -Verdana.ttf 43 G 38.0483 44.5557 77 , 35.2097 12.1891 18.6372 -Verdana.ttf 43 G 38.0483 44.5557 78 I 1.1588 16.4442 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 79 ° 0.0873 22.7964 22.7964 -Verdana.ttf 43 G 38.0483 44.5557 80 K 0.9949 33.3333 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 81 H 1.4432 32.7255 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 82 q 10.4281 28.2003 44.4964 -Verdana.ttf 43 G 38.0483 44.5557 83 & -0.0768 41.1629 44.5557 -Verdana.ttf 43 G 38.0483 44.5557 84 ’ -0.7582 11.5036 16.1408 -Verdana.ttf 43 G 38.0483 44.5557 85 [ -0.9696 15.1741 55.4929 -Verdana.ttf 43 G 38.0483 44.5557 86 - 22.0313 17.6705 4.8447 -Verdana.ttf 43 G 38.0483 44.5557 87 Y 1.0924 35.8297 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 88 Q -0.0727 40.5737 54.5262 -Verdana.ttf 43 G 38.0483 44.5557 89 " -0.9936 17.3150 16.3483 -Verdana.ttf 43 G 38.0483 44.5557 90 ! 1.0055 5.4814 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 91 x 11.5721 31.1449 31.6705 -Verdana.ttf 43 G 38.0483 44.5557 92 ) -0.9325 17.3150 56.0000 -Verdana.ttf 43 G 38.0483 44.5557 93 = 16.0942 33.8114 16.4964 -Verdana.ttf 43 G 38.0483 44.5557 94 + 7.7259 34.9855 34.9855 -Verdana.ttf 43 G 38.0483 44.5557 95 X 1.5750 35.9074 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 96 » 10.5524 28.0000 28.0000 -Verdana.ttf 43 G 38.0483 44.5557 97 ' -0.9918 6.1703 16.3483 -Verdana.ttf 43 G 38.0483 44.5557 98 ¢ 1.6636 27.2855 51.6115 -Verdana.ttf 43 G 38.0483 44.5557 99 Z 1.0873 33.2036 42.2074 -Verdana.ttf 43 G 38.0483 44.5557 100 > 8.0237 32.8447 32.8447 -Verdana.ttf 43 G 38.0483 44.5557 101 ® -0.1945 49.3445 49.3445 -Verdana.ttf 43 G 38.0483 44.5557 102 © 0.4264 49.3445 49.3445 -Verdana.ttf 43 G 38.0483 44.5557 103 ] -0.9385 15.1741 55.4929 -Verdana.ttf 43 G 38.0483 44.5557 104 é -4.0073 28.8152 48.8629 -Verdana.ttf 43 G 38.0483 44.5557 105 z 11.5481 25.5036 31.6705 -Verdana.ttf 43 G 38.0483 44.5557 106 _ 48.4012 37.0038 3.3150 -Verdana.ttf 43 G 38.0483 44.5557 107 ¥ 0.8617 31.1332 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 1 t 3.3882 20.1669 41.8484 -Verdana.ttf 44 b 28.2003 45.5224 2 h -0.1201 26.4669 44.3483 -Verdana.ttf 44 b 28.2003 45.5224 3 a 11.4632 26.7969 34.0188 -Verdana.ttf 44 b 28.2003 45.5224 4 n 11.3970 26.4669 32.8447 -Verdana.ttf 44 b 28.2003 45.5224 5 P 1.9203 27.8519 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 6 o 11.6411 29.3745 34.0188 -Verdana.ttf 44 b 28.2003 45.5224 7 e 11.5507 28.8152 34.0188 -Verdana.ttf 44 b 28.2003 45.5224 8 : 12.4456 6.6555 31.6705 -Verdana.ttf 44 b 28.2003 45.5224 9 r 12.6672 19.6817 31.6705 -Verdana.ttf 44 b 28.2003 45.5224 10 l 0.0221 5.3333 44.3483 -Verdana.ttf 44 b 28.2003 45.5224 11 i 1.9454 5.3333 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 12 1 2.2624 22.9445 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 13 | -0.3989 5.2036 55.4929 -Verdana.ttf 44 b 28.2003 45.5224 14 N 2.0981 31.5514 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 15 f -0.0039 20.5259 44.3483 -Verdana.ttf 44 b 28.2003 45.5224 16 g 11.7074 28.2003 44.4964 -Verdana.ttf 44 b 28.2003 45.5224 17 d 0.0727 28.2003 45.5224 -Verdana.ttf 44 b 28.2003 45.5224 18 W 2.0505 52.3887 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 19 s 11.7891 25.0150 34.0188 -Verdana.ttf 44 b 28.2003 45.5224 20 c 11.4637 25.6820 34.0188 -Verdana.ttf 44 b 28.2003 45.5224 21 u 12.6716 26.4669 32.8447 -Verdana.ttf 44 b 28.2003 45.5224 22 3 0.9264 28.2074 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 23 ~ 16.8938 37.0038 17.5224 -Verdana.ttf 44 b 28.2003 45.5224 24 # 2.2322 36.5186 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 25 O 0.6572 39.3996 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 26 ` -3.4501 11.8592 10.6850 -Verdana.ttf 44 b 28.2003 45.5224 27 @ 0.9196 48.3778 49.6815 -Verdana.ttf 44 b 28.2003 45.5224 28 F 2.2960 26.3478 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 29 S 0.9615 32.5147 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 30 p 11.4632 28.2003 44.4964 -Verdana.ttf 44 b 28.2003 45.5224 31 “ 0.0465 23.0072 16.1408 -Verdana.ttf 44 b 28.2003 45.5224 32 % 1.0835 54.3188 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 33 £ 1.1041 29.1741 43.3815 -Verdana.ttf 44 b 28.2003 45.5224 34 . 35.9053 6.6555 8.1886 -Verdana.ttf 44 b 28.2003 45.5224 35 2 0.7096 28.3370 43.3815 -Verdana.ttf 44 b 28.2003 45.5224 36 5 1.0523 27.5114 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 37 m 11.7108 46.3480 32.8447 -Verdana.ttf 44 b 28.2003 45.5224 38 V 2.1409 37.5109 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 39 6 0.9034 29.6593 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 40 w 12.5037 42.9667 31.6705 -Verdana.ttf 44 b 28.2003 45.5224 41 T 2.3598 35.8297 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 42 M 2.0476 37.7217 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 43 G 1.1882 38.0483 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 44 b 0.1614 28.2003 45.5224 -Verdana.ttf 44 b 28.2003 45.5224 45 9 0.9960 29.6593 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 46 ; 12.6925 12.1891 42.1191 -Verdana.ttf 44 b 28.2003 45.5224 47 D 2.4336 35.8587 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 48 L 2.0087 26.6777 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 49 y 12.5222 31.1449 43.3223 -Verdana.ttf 44 b 28.2003 45.5224 50 ‘ 0.1436 11.5036 16.1408 -Verdana.ttf 44 b 28.2003 45.5224 51 \ 0.1505 25.1446 53.0150 -Verdana.ttf 44 b 28.2003 45.5224 52 R 1.9722 34.9855 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 53 < 9.3620 32.8447 32.8447 -Verdana.ttf 44 b 28.2003 45.5224 54 4 2.1437 32.2369 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 55 8 0.8706 29.9590 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 56 0 1.0396 28.9448 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 57 A 2.1880 37.5109 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 58 E 2.0414 27.8774 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 59 B 2.0106 32.0295 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 60 v 12.5181 31.1449 31.6705 -Verdana.ttf 44 b 28.2003 45.5224 61 k -0.0355 29.1741 44.3483 -Verdana.ttf 44 b 28.2003 45.5224 62 J 2.1321 20.1703 43.3815 -Verdana.ttf 44 b 28.2003 45.5224 63 U 2.1955 32.6187 43.3815 -Verdana.ttf 44 b 28.2003 45.5224 64 j 1.9769 16.4964 53.8592 -Verdana.ttf 44 b 28.2003 45.5224 65 ( -0.4061 17.3150 56.0000 -Verdana.ttf 44 b 28.2003 45.5224 66 7 2.1615 29.1741 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 67 § 0.9123 27.0333 54.3965 -Verdana.ttf 44 b 28.2003 45.5224 68 $ -0.1939 28.8186 54.8039 -Verdana.ttf 44 b 28.2003 45.5224 69 € 1.1604 34.6555 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 70 / 0.0025 25.1446 53.0150 -Verdana.ttf 44 b 28.2003 45.5224 71 C 1.0556 35.1627 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 72 * 0.2899 27.3888 26.3188 -Verdana.ttf 44 b 28.2003 45.5224 73 ” 0.0134 23.0072 16.1408 -Verdana.ttf 44 b 28.2003 45.5224 74 ? 0.8360 23.9705 43.3815 -Verdana.ttf 44 b 28.2003 45.5224 75 { -0.0784 26.6962 55.4929 -Verdana.ttf 44 b 28.2003 45.5224 76 } 0.2637 26.6962 55.4929 -Verdana.ttf 44 b 28.2003 45.5224 77 , 36.1596 12.1891 18.6372 -Verdana.ttf 44 b 28.2003 45.5224 78 I 1.8942 16.4442 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 79 ° 0.9224 22.7964 22.7964 -Verdana.ttf 44 b 28.2003 45.5224 80 K 2.1481 33.3333 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 81 H 1.9635 32.7255 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 82 q 11.6258 28.2003 44.4964 -Verdana.ttf 44 b 28.2003 45.5224 83 & 0.9163 41.1629 44.5557 -Verdana.ttf 44 b 28.2003 45.5224 84 ’ 0.2253 11.5036 16.1408 -Verdana.ttf 44 b 28.2003 45.5224 85 [ -0.0708 15.1741 55.4929 -Verdana.ttf 44 b 28.2003 45.5224 86 - 23.0836 17.6705 4.8447 -Verdana.ttf 44 b 28.2003 45.5224 87 Y 2.0510 35.8297 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 88 Q 0.8009 40.5737 54.5262 -Verdana.ttf 44 b 28.2003 45.5224 89 " 0.0505 17.3150 16.3483 -Verdana.ttf 44 b 28.2003 45.5224 90 ! 2.1413 5.4814 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 91 x 12.6205 31.1449 31.6705 -Verdana.ttf 44 b 28.2003 45.5224 92 ) 0.1639 17.3150 56.0000 -Verdana.ttf 44 b 28.2003 45.5224 93 = 17.7737 33.8114 16.4964 -Verdana.ttf 44 b 28.2003 45.5224 94 + 8.7123 34.9855 34.9855 -Verdana.ttf 44 b 28.2003 45.5224 95 X 2.2327 35.9074 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 96 » 11.7354 28.0000 28.0000 -Verdana.ttf 44 b 28.2003 45.5224 97 ' 0.3134 6.1703 16.3483 -Verdana.ttf 44 b 28.2003 45.5224 98 ¢ 2.4529 27.2855 51.6115 -Verdana.ttf 44 b 28.2003 45.5224 99 Z 2.1144 33.2036 42.2074 -Verdana.ttf 44 b 28.2003 45.5224 100 > 8.9736 32.8447 32.8447 -Verdana.ttf 44 b 28.2003 45.5224 101 ® 0.7600 49.3445 49.3445 -Verdana.ttf 44 b 28.2003 45.5224 102 © 1.2325 49.3445 49.3445 -Verdana.ttf 44 b 28.2003 45.5224 103 ] -0.1269 15.1741 55.4929 -Verdana.ttf 44 b 28.2003 45.5224 104 é -3.0918 28.8152 48.8629 -Verdana.ttf 44 b 28.2003 45.5224 105 z 12.7415 25.5036 31.6705 -Verdana.ttf 44 b 28.2003 45.5224 106 _ 49.7161 37.0038 3.3150 -Verdana.ttf 44 b 28.2003 45.5224 107 ¥ 2.1845 31.1332 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 1 t 2.5960 20.1669 41.8484 -Verdana.ttf 45 9 29.6593 44.5557 2 h -1.0552 26.4669 44.3483 -Verdana.ttf 45 9 29.6593 44.5557 3 a 10.4766 26.7969 34.0188 -Verdana.ttf 45 9 29.6593 44.5557 4 n 10.2470 26.4669 32.8447 -Verdana.ttf 45 9 29.6593 44.5557 5 P 1.3963 27.8519 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 6 o 10.5218 29.3745 34.0188 -Verdana.ttf 45 9 29.6593 44.5557 7 e 10.6675 28.8152 34.0188 -Verdana.ttf 45 9 29.6593 44.5557 8 : 11.8038 6.6555 31.6705 -Verdana.ttf 45 9 29.6593 44.5557 9 r 11.4438 19.6817 31.6705 -Verdana.ttf 45 9 29.6593 44.5557 10 l -0.6153 5.3333 44.3483 -Verdana.ttf 45 9 29.6593 44.5557 11 i 1.1741 5.3333 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 12 1 1.5293 22.9445 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 13 | -0.8561 5.2036 55.4929 -Verdana.ttf 45 9 29.6593 44.5557 14 N 0.9772 31.5514 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 15 f -0.8768 20.5259 44.3483 -Verdana.ttf 45 9 29.6593 44.5557 16 g 10.6406 28.2003 44.4964 -Verdana.ttf 45 9 29.6593 44.5557 17 d -0.8825 28.2003 45.5224 -Verdana.ttf 45 9 29.6593 44.5557 18 W 0.9981 52.3887 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 19 s 10.7407 25.0150 34.0188 -Verdana.ttf 45 9 29.6593 44.5557 20 c 10.6375 25.6820 34.0188 -Verdana.ttf 45 9 29.6593 44.5557 21 u 11.8014 26.4669 32.8447 -Verdana.ttf 45 9 29.6593 44.5557 22 3 -0.2042 28.2074 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 23 ~ 16.0420 37.0038 17.5224 -Verdana.ttf 45 9 29.6593 44.5557 24 # 1.2640 36.5186 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 25 O 0.0572 39.3996 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 26 ` -4.6667 11.8592 10.6850 -Verdana.ttf 45 9 29.6593 44.5557 27 @ -0.0120 48.3778 49.6815 -Verdana.ttf 45 9 29.6593 44.5557 28 F 1.4251 26.3478 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 29 S 0.0337 32.5147 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 30 p 10.8126 28.2003 44.4964 -Verdana.ttf 45 9 29.6593 44.5557 31 “ -1.0807 23.0072 16.1408 -Verdana.ttf 45 9 29.6593 44.5557 32 % 0.0586 54.3188 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 33 £ -0.4331 29.1741 43.3815 -Verdana.ttf 45 9 29.6593 44.5557 34 . 35.3170 6.6555 8.1886 -Verdana.ttf 45 9 29.6593 44.5557 35 2 -0.1864 28.3370 43.3815 -Verdana.ttf 45 9 29.6593 44.5557 36 5 0.2811 27.5114 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 37 m 10.9997 46.3480 32.8447 -Verdana.ttf 45 9 29.6593 44.5557 38 V 1.1477 37.5109 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 39 6 -0.1140 29.6593 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 40 w 12.1222 42.9667 31.6705 -Verdana.ttf 45 9 29.6593 44.5557 41 T 1.1770 35.8297 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 42 M 0.7526 37.7217 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 43 G -0.2513 38.0483 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 44 b -1.1840 28.2003 45.5224 -Verdana.ttf 45 9 29.6593 44.5557 45 9 0.0899 29.6593 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 46 ; 11.4952 12.1891 42.1191 -Verdana.ttf 45 9 29.6593 44.5557 47 D 0.9670 35.8587 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 48 L 1.1976 26.6777 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 49 y 11.3588 31.1449 43.3223 -Verdana.ttf 45 9 29.6593 44.5557 50 ‘ -0.8993 11.5036 16.1408 -Verdana.ttf 45 9 29.6593 44.5557 51 \ -0.8198 25.1446 53.0150 -Verdana.ttf 45 9 29.6593 44.5557 52 R 1.3091 34.9855 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 53 < 8.0779 32.8447 32.8447 -Verdana.ttf 45 9 29.6593 44.5557 54 4 1.3914 32.2369 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 55 8 -0.1321 29.9590 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 56 0 -0.4095 28.9448 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 57 A 1.0366 37.5109 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 58 E 1.0551 27.8774 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 59 B 1.1947 32.0295 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 60 v 11.8195 31.1449 31.6705 -Verdana.ttf 45 9 29.6593 44.5557 61 k -0.7988 29.1741 44.3483 -Verdana.ttf 45 9 29.6593 44.5557 62 J 0.9671 20.1703 43.3815 -Verdana.ttf 45 9 29.6593 44.5557 63 U 1.1770 32.6187 43.3815 -Verdana.ttf 45 9 29.6593 44.5557 64 j 1.2084 16.4964 53.8592 -Verdana.ttf 45 9 29.6593 44.5557 65 ( -0.9341 17.3150 56.0000 -Verdana.ttf 45 9 29.6593 44.5557 66 7 1.0545 29.1741 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 67 § 0.1302 27.0333 54.3965 -Verdana.ttf 45 9 29.6593 44.5557 68 $ -1.5893 28.8186 54.8039 -Verdana.ttf 45 9 29.6593 44.5557 69 € 0.1342 34.6555 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 70 / -0.9149 25.1446 53.0150 -Verdana.ttf 45 9 29.6593 44.5557 71 C 0.0254 35.1627 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 72 * -0.5707 27.3888 26.3188 -Verdana.ttf 45 9 29.6593 44.5557 73 ” -1.1568 23.0072 16.1408 -Verdana.ttf 45 9 29.6593 44.5557 74 ? 0.3142 23.9705 43.3815 -Verdana.ttf 45 9 29.6593 44.5557 75 { -0.9355 26.6962 55.4929 -Verdana.ttf 45 9 29.6593 44.5557 76 } -0.7189 26.6962 55.4929 -Verdana.ttf 45 9 29.6593 44.5557 77 , 35.0246 12.1891 18.6372 -Verdana.ttf 45 9 29.6593 44.5557 78 I 1.1817 16.4442 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 79 ° 0.1274 22.7964 22.7964 -Verdana.ttf 45 9 29.6593 44.5557 80 K 1.2140 33.3333 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 81 H 0.7559 32.7255 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 82 q 10.6643 28.2003 44.4964 -Verdana.ttf 45 9 29.6593 44.5557 83 & -0.0856 41.1629 44.5557 -Verdana.ttf 45 9 29.6593 44.5557 84 ’ -1.1742 11.5036 16.1408 -Verdana.ttf 45 9 29.6593 44.5557 85 [ -1.0153 15.1741 55.4929 -Verdana.ttf 45 9 29.6593 44.5557 86 - 22.0875 17.6705 4.8447 -Verdana.ttf 45 9 29.6593 44.5557 87 Y 1.0824 35.8297 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 88 Q -0.0130 40.5737 54.5262 -Verdana.ttf 45 9 29.6593 44.5557 89 " -1.0864 17.3150 16.3483 -Verdana.ttf 45 9 29.6593 44.5557 90 ! 0.9068 5.4814 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 91 x 11.4481 31.1449 31.6705 -Verdana.ttf 45 9 29.6593 44.5557 92 ) -0.8314 17.3150 56.0000 -Verdana.ttf 45 9 29.6593 44.5557 93 = 16.9488 33.8114 16.4964 -Verdana.ttf 45 9 29.6593 44.5557 94 + 7.3186 34.9855 34.9855 -Verdana.ttf 45 9 29.6593 44.5557 95 X 1.2891 35.9074 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 96 » 10.5651 28.0000 28.0000 -Verdana.ttf 45 9 29.6593 44.5557 97 ' -1.2402 6.1703 16.3483 -Verdana.ttf 45 9 29.6593 44.5557 98 ¢ 1.7933 27.2855 51.6115 -Verdana.ttf 45 9 29.6593 44.5557 99 Z 1.0972 33.2036 42.2074 -Verdana.ttf 45 9 29.6593 44.5557 100 > 7.9449 32.8447 32.8447 -Verdana.ttf 45 9 29.6593 44.5557 101 ® -0.1528 49.3445 49.3445 -Verdana.ttf 45 9 29.6593 44.5557 102 © 0.2147 49.3445 49.3445 -Verdana.ttf 45 9 29.6593 44.5557 103 ] -0.8572 15.1741 55.4929 -Verdana.ttf 45 9 29.6593 44.5557 104 é -4.0839 28.8152 48.8629 -Verdana.ttf 45 9 29.6593 44.5557 105 z 11.4957 25.5036 31.6705 -Verdana.ttf 45 9 29.6593 44.5557 106 _ 48.7524 37.0038 3.3150 -Verdana.ttf 45 9 29.6593 44.5557 107 ¥ 0.9637 31.1332 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 1 t -8.8989 20.1669 41.8484 -Verdana.ttf 46 ; 12.1891 42.1191 2 h -12.5860 26.4669 44.3483 -Verdana.ttf 46 ; 12.1891 42.1191 3 a -1.2068 26.7969 34.0188 -Verdana.ttf 46 ; 12.1891 42.1191 4 n -1.1876 26.4669 32.8447 -Verdana.ttf 46 ; 12.1891 42.1191 5 P -10.5499 27.8519 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 6 o -1.2482 29.3745 34.0188 -Verdana.ttf 46 ; 12.1891 42.1191 7 e -1.1977 28.8152 34.0188 -Verdana.ttf 46 ; 12.1891 42.1191 8 : 0.1759 6.6555 31.6705 -Verdana.ttf 46 ; 12.1891 42.1191 9 r 0.1589 19.6817 31.6705 -Verdana.ttf 46 ; 12.1891 42.1191 10 l -12.5503 5.3333 44.3483 -Verdana.ttf 46 ; 12.1891 42.1191 11 i -10.8234 5.3333 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 12 1 -10.3715 22.9445 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 13 | -12.5475 5.2036 55.4929 -Verdana.ttf 46 ; 12.1891 42.1191 14 N -10.8027 31.5514 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 15 f -12.6973 20.5259 44.3483 -Verdana.ttf 46 ; 12.1891 42.1191 16 g -1.1875 28.2003 44.4964 -Verdana.ttf 46 ; 12.1891 42.1191 17 d -12.6810 28.2003 45.5224 -Verdana.ttf 46 ; 12.1891 42.1191 18 W -10.4922 52.3887 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 19 s -1.2121 25.0150 34.0188 -Verdana.ttf 46 ; 12.1891 42.1191 20 c -1.3766 25.6820 34.0188 -Verdana.ttf 46 ; 12.1891 42.1191 21 u -0.1501 26.4669 32.8447 -Verdana.ttf 46 ; 12.1891 42.1191 22 3 -11.7110 28.2074 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 23 ~ 4.2647 37.0038 17.5224 -Verdana.ttf 46 ; 12.1891 42.1191 24 # -10.3144 36.5186 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 25 O -11.6740 39.3996 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 26 ` -15.8377 11.8592 10.6850 -Verdana.ttf 46 ; 12.1891 42.1191 27 @ -11.7659 48.3778 49.6815 -Verdana.ttf 46 ; 12.1891 42.1191 28 F -10.8935 26.3478 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 29 S -11.8177 32.5147 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 30 p -1.4183 28.2003 44.4964 -Verdana.ttf 46 ; 12.1891 42.1191 31 “ -12.6393 23.0072 16.1408 -Verdana.ttf 46 ; 12.1891 42.1191 32 % -11.6268 54.3188 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 33 £ -11.8412 29.1741 43.3815 -Verdana.ttf 46 ; 12.1891 42.1191 34 . 23.7731 6.6555 8.1886 -Verdana.ttf 46 ; 12.1891 42.1191 35 2 -11.4567 28.3370 43.3815 -Verdana.ttf 46 ; 12.1891 42.1191 36 5 -11.7880 27.5114 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 37 m -1.0381 46.3480 32.8447 -Verdana.ttf 46 ; 12.1891 42.1191 38 V -10.7156 37.5109 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 39 6 -11.7393 29.6593 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 40 w 0.2205 42.9667 31.6705 -Verdana.ttf 46 ; 12.1891 42.1191 41 T -10.6268 35.8297 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 42 M -10.6319 37.7217 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 43 G -11.7244 38.0483 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 44 b -12.7267 28.2003 45.5224 -Verdana.ttf 46 ; 12.1891 42.1191 45 9 -11.8586 29.6593 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 46 ; -0.0769 12.1891 42.1191 -Verdana.ttf 46 ; 12.1891 42.1191 47 D -10.4418 35.8587 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 48 L -10.5350 26.6777 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 49 y 0.0101 31.1449 43.3223 -Verdana.ttf 46 ; 12.1891 42.1191 50 ‘ -12.8740 11.5036 16.1408 -Verdana.ttf 46 ; 12.1891 42.1191 51 \ -12.5456 25.1446 53.0150 -Verdana.ttf 46 ; 12.1891 42.1191 52 R -10.4139 34.9855 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 53 < -3.5123 32.8447 32.8447 -Verdana.ttf 46 ; 12.1891 42.1191 54 4 -10.3668 32.2369 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 55 8 -11.7110 29.9590 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 56 0 -11.7514 28.9448 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 57 A -10.4154 37.5109 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 58 E -10.5974 27.8774 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 59 B -10.4499 32.0295 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 60 v -0.0092 31.1449 31.6705 -Verdana.ttf 46 ; 12.1891 42.1191 61 k -12.4129 29.1741 44.3483 -Verdana.ttf 46 ; 12.1891 42.1191 62 J -10.5028 20.1703 43.3815 -Verdana.ttf 46 ; 12.1891 42.1191 63 U -10.4404 32.6187 43.3815 -Verdana.ttf 46 ; 12.1891 42.1191 64 j -10.7037 16.4964 53.8592 -Verdana.ttf 46 ; 12.1891 42.1191 65 ( -12.6686 17.3150 56.0000 -Verdana.ttf 46 ; 12.1891 42.1191 66 7 -10.6407 29.1741 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 67 § -11.5688 27.0333 54.3965 -Verdana.ttf 46 ; 12.1891 42.1191 68 $ -12.9290 28.8186 54.8039 -Verdana.ttf 46 ; 12.1891 42.1191 69 € -11.7143 34.6555 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 70 / -12.6444 25.1446 53.0150 -Verdana.ttf 46 ; 12.1891 42.1191 71 C -11.7581 35.1627 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 72 * -12.7143 27.3888 26.3188 -Verdana.ttf 46 ; 12.1891 42.1191 73 ” -12.4700 23.0072 16.1408 -Verdana.ttf 46 ; 12.1891 42.1191 74 ? -11.7408 23.9705 43.3815 -Verdana.ttf 46 ; 12.1891 42.1191 75 { -13.1093 26.6962 55.4929 -Verdana.ttf 46 ; 12.1891 42.1191 76 } -12.6350 26.6962 55.4929 -Verdana.ttf 46 ; 12.1891 42.1191 77 , 23.3179 12.1891 18.6372 -Verdana.ttf 46 ; 12.1891 42.1191 78 I -10.8132 16.4442 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 79 ° -11.8115 22.7964 22.7964 -Verdana.ttf 46 ; 12.1891 42.1191 80 K -10.5061 33.3333 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 81 H -10.7532 32.7255 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 82 q -1.1399 28.2003 44.4964 -Verdana.ttf 46 ; 12.1891 42.1191 83 & -11.7110 41.1629 44.5557 -Verdana.ttf 46 ; 12.1891 42.1191 84 ’ -12.4101 11.5036 16.1408 -Verdana.ttf 46 ; 12.1891 42.1191 85 [ -12.8436 15.1741 55.4929 -Verdana.ttf 46 ; 12.1891 42.1191 86 - 10.5299 17.6705 4.8447 -Verdana.ttf 46 ; 12.1891 42.1191 87 Y -10.6875 35.8297 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 88 Q -11.8278 40.5737 54.5262 -Verdana.ttf 46 ; 12.1891 42.1191 89 " -12.5220 17.3150 16.3483 -Verdana.ttf 46 ; 12.1891 42.1191 90 ! -10.6450 5.4814 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 91 x -0.0033 31.1449 31.6705 -Verdana.ttf 46 ; 12.1891 42.1191 92 ) -12.5379 17.3150 56.0000 -Verdana.ttf 46 ; 12.1891 42.1191 93 = 4.6807 33.8114 16.4964 -Verdana.ttf 46 ; 12.1891 42.1191 94 + -4.1091 34.9855 34.9855 -Verdana.ttf 46 ; 12.1891 42.1191 95 X -10.7508 35.9074 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 96 » -1.1792 28.0000 28.0000 -Verdana.ttf 46 ; 12.1891 42.1191 97 ' -12.7575 6.1703 16.3483 -Verdana.ttf 46 ; 12.1891 42.1191 98 ¢ -9.7965 27.2855 51.6115 -Verdana.ttf 46 ; 12.1891 42.1191 99 Z -10.4970 33.2036 42.2074 -Verdana.ttf 46 ; 12.1891 42.1191 100 > -3.7833 32.8447 32.8447 -Verdana.ttf 46 ; 12.1891 42.1191 101 ® -11.6693 49.3445 49.3445 -Verdana.ttf 46 ; 12.1891 42.1191 102 © -11.4452 49.3445 49.3445 -Verdana.ttf 46 ; 12.1891 42.1191 103 ] -12.9309 15.1741 55.4929 -Verdana.ttf 46 ; 12.1891 42.1191 104 é -15.9918 28.8152 48.8629 -Verdana.ttf 46 ; 12.1891 42.1191 105 z -0.1778 25.5036 31.6705 -Verdana.ttf 46 ; 12.1891 42.1191 106 _ 36.8106 37.0038 3.3150 -Verdana.ttf 46 ; 12.1891 42.1191 107 ¥ -10.6373 31.1332 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 1 t 1.5509 20.1669 41.8484 -Verdana.ttf 47 D 35.8587 42.2074 2 h -2.1678 26.4669 44.3483 -Verdana.ttf 47 D 35.8587 42.2074 3 a 9.4632 26.7969 34.0188 -Verdana.ttf 47 D 35.8587 42.2074 4 n 9.4843 26.4669 32.8447 -Verdana.ttf 47 D 35.8587 42.2074 5 P 0.1306 27.8519 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 6 o 9.3171 29.3745 34.0188 -Verdana.ttf 47 D 35.8587 42.2074 7 e 9.2032 28.8152 34.0188 -Verdana.ttf 47 D 35.8587 42.2074 8 : 10.3961 6.6555 31.6705 -Verdana.ttf 47 D 35.8587 42.2074 9 r 10.5060 19.6817 31.6705 -Verdana.ttf 47 D 35.8587 42.2074 10 l -2.0533 5.3333 44.3483 -Verdana.ttf 47 D 35.8587 42.2074 11 i 0.0741 5.3333 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 12 1 -0.0624 22.9445 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 13 | -2.1076 5.2036 55.4929 -Verdana.ttf 47 D 35.8587 42.2074 14 N -0.0769 31.5514 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 15 f -2.2279 20.5259 44.3483 -Verdana.ttf 47 D 35.8587 42.2074 16 g 9.4589 28.2003 44.4964 -Verdana.ttf 47 D 35.8587 42.2074 17 d -2.0991 28.2003 45.5224 -Verdana.ttf 47 D 35.8587 42.2074 18 W -0.0580 52.3887 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 19 s 9.4930 25.0150 34.0188 -Verdana.ttf 47 D 35.8587 42.2074 20 c 9.3661 25.6820 34.0188 -Verdana.ttf 47 D 35.8587 42.2074 21 u 10.3091 26.4669 32.8447 -Verdana.ttf 47 D 35.8587 42.2074 22 3 -1.0534 28.2074 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 23 ~ 14.2222 37.0038 17.5224 -Verdana.ttf 47 D 35.8587 42.2074 24 # 0.1806 36.5186 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 25 O -1.3029 39.3996 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 26 ` -5.5718 11.8592 10.6850 -Verdana.ttf 47 D 35.8587 42.2074 27 @ -0.9602 48.3778 49.6815 -Verdana.ttf 47 D 35.8587 42.2074 28 F 0.0890 26.3478 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 29 S -1.2145 32.5147 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 30 p 9.3655 28.2003 44.4964 -Verdana.ttf 47 D 35.8587 42.2074 31 “ -2.7297 23.0072 16.1408 -Verdana.ttf 47 D 35.8587 42.2074 32 % -1.1755 54.3188 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 33 £ -1.1937 29.1741 43.3815 -Verdana.ttf 47 D 35.8587 42.2074 34 . 34.0659 6.6555 8.1886 -Verdana.ttf 47 D 35.8587 42.2074 35 2 -1.1131 28.3370 43.3815 -Verdana.ttf 47 D 35.8587 42.2074 36 5 -1.1987 27.5114 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 37 m 9.3210 46.3480 32.8447 -Verdana.ttf 47 D 35.8587 42.2074 38 V -0.0418 37.5109 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 39 6 -1.0704 29.6593 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 40 w 10.6300 42.9667 31.6705 -Verdana.ttf 47 D 35.8587 42.2074 41 T -0.0438 35.8297 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 42 M 0.1375 37.7217 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 43 G -1.3961 38.0483 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 44 b -2.1267 28.2003 45.5224 -Verdana.ttf 47 D 35.8587 42.2074 45 9 -1.1622 29.6593 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 46 ; 10.5336 12.1891 42.1191 -Verdana.ttf 47 D 35.8587 42.2074 47 D -0.0042 35.8587 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 48 L 0.2071 26.6777 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 49 y 10.5835 31.1449 43.3223 -Verdana.ttf 47 D 35.8587 42.2074 50 ‘ -1.8024 11.5036 16.1408 -Verdana.ttf 47 D 35.8587 42.2074 51 \ -2.2427 25.1446 53.0150 -Verdana.ttf 47 D 35.8587 42.2074 52 R 0.1173 34.9855 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 53 < 7.0039 32.8447 32.8447 -Verdana.ttf 47 D 35.8587 42.2074 54 4 0.3151 32.2369 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 55 8 -1.3347 29.9590 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 56 0 -1.4443 28.9448 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 57 A -0.0013 37.5109 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 58 E -0.1850 27.8774 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 59 B 0.1119 32.0295 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 60 v 10.3562 31.1449 31.6705 -Verdana.ttf 47 D 35.8587 42.2074 61 k -1.8876 29.1741 44.3483 -Verdana.ttf 47 D 35.8587 42.2074 62 J 0.1715 20.1703 43.3815 -Verdana.ttf 47 D 35.8587 42.2074 63 U -0.0903 32.6187 43.3815 -Verdana.ttf 47 D 35.8587 42.2074 64 j -0.0663 16.4964 53.8592 -Verdana.ttf 47 D 35.8587 42.2074 65 ( -2.1467 17.3150 56.0000 -Verdana.ttf 47 D 35.8587 42.2074 66 7 -0.2644 29.1741 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 67 § -0.9314 27.0333 54.3965 -Verdana.ttf 47 D 35.8587 42.2074 68 $ -2.5787 28.8186 54.8039 -Verdana.ttf 47 D 35.8587 42.2074 69 € -1.3091 34.6555 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 70 / -1.9022 25.1446 53.0150 -Verdana.ttf 47 D 35.8587 42.2074 71 C -1.2688 35.1627 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 72 * -1.8261 27.3888 26.3188 -Verdana.ttf 47 D 35.8587 42.2074 73 ” -2.2144 23.0072 16.1408 -Verdana.ttf 47 D 35.8587 42.2074 74 ? -1.0525 23.9705 43.3815 -Verdana.ttf 47 D 35.8587 42.2074 75 { -1.9823 26.6962 55.4929 -Verdana.ttf 47 D 35.8587 42.2074 76 } -1.9102 26.6962 55.4929 -Verdana.ttf 47 D 35.8587 42.2074 77 , 34.0577 12.1891 18.6372 -Verdana.ttf 47 D 35.8587 42.2074 78 I 0.2174 16.4442 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 79 ° -1.6222 22.7964 22.7964 -Verdana.ttf 47 D 35.8587 42.2074 80 K -0.2202 33.3333 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 81 H -0.1107 32.7255 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 82 q 9.1266 28.2003 44.4964 -Verdana.ttf 47 D 35.8587 42.2074 83 & -1.1262 41.1629 44.5557 -Verdana.ttf 47 D 35.8587 42.2074 84 ’ -2.3330 11.5036 16.1408 -Verdana.ttf 47 D 35.8587 42.2074 85 [ -2.0904 15.1741 55.4929 -Verdana.ttf 47 D 35.8587 42.2074 86 - 20.8389 17.6705 4.8447 -Verdana.ttf 47 D 35.8587 42.2074 87 Y -0.1495 35.8297 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 88 Q -1.2941 40.5737 54.5262 -Verdana.ttf 47 D 35.8587 42.2074 89 " -2.1260 17.3150 16.3483 -Verdana.ttf 47 D 35.8587 42.2074 90 ! 0.3488 5.4814 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 91 x 10.6643 31.1449 31.6705 -Verdana.ttf 47 D 35.8587 42.2074 92 ) -2.0259 17.3150 56.0000 -Verdana.ttf 47 D 35.8587 42.2074 93 = 15.3796 33.8114 16.4964 -Verdana.ttf 47 D 35.8587 42.2074 94 + 6.0512 34.9855 34.9855 -Verdana.ttf 47 D 35.8587 42.2074 95 X 0.2046 35.9074 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 96 » 9.4726 28.0000 28.0000 -Verdana.ttf 47 D 35.8587 42.2074 97 ' -2.2119 6.1703 16.3483 -Verdana.ttf 47 D 35.8587 42.2074 98 ¢ 0.4089 27.2855 51.6115 -Verdana.ttf 47 D 35.8587 42.2074 99 Z -0.0157 33.2036 42.2074 -Verdana.ttf 47 D 35.8587 42.2074 100 > 7.0039 32.8447 32.8447 -Verdana.ttf 47 D 35.8587 42.2074 101 ® -1.0780 49.3445 49.3445 -Verdana.ttf 47 D 35.8587 42.2074 102 © -1.4409 49.3445 49.3445 -Verdana.ttf 47 D 35.8587 42.2074 103 ] -2.2359 15.1741 55.4929 -Verdana.ttf 47 D 35.8587 42.2074 104 é -5.3733 28.8152 48.8629 -Verdana.ttf 47 D 35.8587 42.2074 105 z 10.4666 25.5036 31.6705 -Verdana.ttf 47 D 35.8587 42.2074 106 _ 47.3711 37.0038 3.3150 -Verdana.ttf 47 D 35.8587 42.2074 107 ¥ 0.0062 31.1332 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 1 t 1.4319 20.1669 41.8484 -Verdana.ttf 48 L 26.6777 42.2074 2 h -2.2903 26.4669 44.3483 -Verdana.ttf 48 L 26.6777 42.2074 3 a 9.0359 26.7969 34.0188 -Verdana.ttf 48 L 26.6777 42.2074 4 n 9.3667 26.4669 32.8447 -Verdana.ttf 48 L 26.6777 42.2074 5 P -0.1984 27.8519 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 6 o 9.2441 29.3745 34.0188 -Verdana.ttf 48 L 26.6777 42.2074 7 e 9.6008 28.8152 34.0188 -Verdana.ttf 48 L 26.6777 42.2074 8 : 10.4125 6.6555 31.6705 -Verdana.ttf 48 L 26.6777 42.2074 9 r 10.3058 19.6817 31.6705 -Verdana.ttf 48 L 26.6777 42.2074 10 l -2.1746 5.3333 44.3483 -Verdana.ttf 48 L 26.6777 42.2074 11 i -0.1009 5.3333 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 12 1 -0.0134 22.9445 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 13 | -1.9443 5.2036 55.4929 -Verdana.ttf 48 L 26.6777 42.2074 14 N 0.1734 31.5514 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 15 f -2.4205 20.5259 44.3483 -Verdana.ttf 48 L 26.6777 42.2074 16 g 9.3124 28.2003 44.4964 -Verdana.ttf 48 L 26.6777 42.2074 17 d -2.1169 28.2003 45.5224 -Verdana.ttf 48 L 26.6777 42.2074 18 W 0.0028 52.3887 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 19 s 9.1868 25.0150 34.0188 -Verdana.ttf 48 L 26.6777 42.2074 20 c 9.3262 25.6820 34.0188 -Verdana.ttf 48 L 26.6777 42.2074 21 u 10.7429 26.4669 32.8447 -Verdana.ttf 48 L 26.6777 42.2074 22 3 -1.1947 28.2074 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 23 ~ 14.8952 37.0038 17.5224 -Verdana.ttf 48 L 26.6777 42.2074 24 # -0.2177 36.5186 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 25 O -1.3217 39.3996 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 26 ` -5.6919 11.8592 10.6850 -Verdana.ttf 48 L 26.6777 42.2074 27 @ -1.0036 48.3778 49.6815 -Verdana.ttf 48 L 26.6777 42.2074 28 F -0.3580 26.3478 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 29 S -1.0690 32.5147 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 30 p 9.3733 28.2003 44.4964 -Verdana.ttf 48 L 26.6777 42.2074 31 “ -2.1746 23.0072 16.1408 -Verdana.ttf 48 L 26.6777 42.2074 32 % -1.2630 54.3188 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 33 £ -1.1977 29.1741 43.3815 -Verdana.ttf 48 L 26.6777 42.2074 34 . 34.2376 6.6555 8.1886 -Verdana.ttf 48 L 26.6777 42.2074 35 2 -1.3548 28.3370 43.3815 -Verdana.ttf 48 L 26.6777 42.2074 36 5 -1.2663 27.5114 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 37 m 9.5760 46.3480 32.8447 -Verdana.ttf 48 L 26.6777 42.2074 38 V 0.0153 37.5109 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 39 6 -1.1741 29.6593 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 40 w 10.5841 42.9667 31.6705 -Verdana.ttf 48 L 26.6777 42.2074 41 T -0.2474 35.8297 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 42 M 0.0471 37.7217 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 43 G -1.3649 38.0483 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 44 b -2.1765 28.2003 45.5224 -Verdana.ttf 48 L 26.6777 42.2074 45 9 -1.4047 29.6593 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 46 ; 10.6431 12.1891 42.1191 -Verdana.ttf 48 L 26.6777 42.2074 47 D 0.0928 35.8587 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 48 L -0.2557 26.6777 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 49 y 10.3900 31.1449 43.3223 -Verdana.ttf 48 L 26.6777 42.2074 50 ‘ -2.2750 11.5036 16.1408 -Verdana.ttf 48 L 26.6777 42.2074 51 \ -2.0976 25.1446 53.0150 -Verdana.ttf 48 L 26.6777 42.2074 52 R 0.1230 34.9855 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 53 < 6.8636 32.8447 32.8447 -Verdana.ttf 48 L 26.6777 42.2074 54 4 -0.2139 32.2369 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 55 8 -1.2143 29.9590 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 56 0 -1.0852 28.9448 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 57 A -0.0148 37.5109 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 58 E -0.0500 27.8774 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 59 B 0.0370 32.0295 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 60 v 10.4451 31.1449 31.6705 -Verdana.ttf 48 L 26.6777 42.2074 61 k -2.0034 29.1741 44.3483 -Verdana.ttf 48 L 26.6777 42.2074 62 J 0.0443 20.1703 43.3815 -Verdana.ttf 48 L 26.6777 42.2074 63 U -0.1028 32.6187 43.3815 -Verdana.ttf 48 L 26.6777 42.2074 64 j -0.0580 16.4964 53.8592 -Verdana.ttf 48 L 26.6777 42.2074 65 ( -2.1101 17.3150 56.0000 -Verdana.ttf 48 L 26.6777 42.2074 66 7 0.2072 29.1741 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 67 § -1.3231 27.0333 54.3965 -Verdana.ttf 48 L 26.6777 42.2074 68 $ -2.6506 28.8186 54.8039 -Verdana.ttf 48 L 26.6777 42.2074 69 € -1.2539 34.6555 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 70 / -2.3705 25.1446 53.0150 -Verdana.ttf 48 L 26.6777 42.2074 71 C -1.0073 35.1627 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 72 * -2.3642 27.3888 26.3188 -Verdana.ttf 48 L 26.6777 42.2074 73 ” -2.1927 23.0072 16.1408 -Verdana.ttf 48 L 26.6777 42.2074 74 ? -1.2673 23.9705 43.3815 -Verdana.ttf 48 L 26.6777 42.2074 75 { -2.3817 26.6962 55.4929 -Verdana.ttf 48 L 26.6777 42.2074 76 } -1.8880 26.6962 55.4929 -Verdana.ttf 48 L 26.6777 42.2074 77 , 34.2327 12.1891 18.6372 -Verdana.ttf 48 L 26.6777 42.2074 78 I 0.1063 16.4442 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 79 ° -1.2438 22.7964 22.7964 -Verdana.ttf 48 L 26.6777 42.2074 80 K 0.1269 33.3333 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 81 H 0.0432 32.7255 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 82 q 9.3641 28.2003 44.4964 -Verdana.ttf 48 L 26.6777 42.2074 83 & -1.1371 41.1629 44.5557 -Verdana.ttf 48 L 26.6777 42.2074 84 ’ -2.1942 11.5036 16.1408 -Verdana.ttf 48 L 26.6777 42.2074 85 [ -2.1673 15.1741 55.4929 -Verdana.ttf 48 L 26.6777 42.2074 86 - 21.1292 17.6705 4.8447 -Verdana.ttf 48 L 26.6777 42.2074 87 Y 0.0404 35.8297 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 88 Q -1.4875 40.5737 54.5262 -Verdana.ttf 48 L 26.6777 42.2074 89 " -2.1645 17.3150 16.3483 -Verdana.ttf 48 L 26.6777 42.2074 90 ! 0.2144 5.4814 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 91 x 10.3873 31.1449 31.6705 -Verdana.ttf 48 L 26.6777 42.2074 92 ) -2.0385 17.3150 56.0000 -Verdana.ttf 48 L 26.6777 42.2074 93 = 15.2978 33.8114 16.4964 -Verdana.ttf 48 L 26.6777 42.2074 94 + 6.2874 34.9855 34.9855 -Verdana.ttf 48 L 26.6777 42.2074 95 X 0.0486 35.9074 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 96 » 9.5201 28.0000 28.0000 -Verdana.ttf 48 L 26.6777 42.2074 97 ' -2.1383 6.1703 16.3483 -Verdana.ttf 48 L 26.6777 42.2074 98 ¢ 0.7793 27.2855 51.6115 -Verdana.ttf 48 L 26.6777 42.2074 99 Z -0.1018 33.2036 42.2074 -Verdana.ttf 48 L 26.6777 42.2074 100 > 7.1785 32.8447 32.8447 -Verdana.ttf 48 L 26.6777 42.2074 101 ® -1.5438 49.3445 49.3445 -Verdana.ttf 48 L 26.6777 42.2074 102 © -1.1654 49.3445 49.3445 -Verdana.ttf 48 L 26.6777 42.2074 103 ] -2.2162 15.1741 55.4929 -Verdana.ttf 48 L 26.6777 42.2074 104 é -5.2539 28.8152 48.8629 -Verdana.ttf 48 L 26.6777 42.2074 105 z 10.7893 25.5036 31.6705 -Verdana.ttf 48 L 26.6777 42.2074 106 _ 47.4491 37.0038 3.3150 -Verdana.ttf 48 L 26.6777 42.2074 107 ¥ -0.1803 31.1332 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 1 t -8.8898 20.1669 41.8484 -Verdana.ttf 49 y 31.1449 43.3223 2 h -12.4913 26.4669 44.3483 -Verdana.ttf 49 y 31.1449 43.3223 3 a -1.2645 26.7969 34.0188 -Verdana.ttf 49 y 31.1449 43.3223 4 n -1.2379 26.4669 32.8447 -Verdana.ttf 49 y 31.1449 43.3223 5 P -10.7091 27.8519 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 6 o -1.2349 29.3745 34.0188 -Verdana.ttf 49 y 31.1449 43.3223 7 e -1.2083 28.8152 34.0188 -Verdana.ttf 49 y 31.1449 43.3223 8 : 0.0682 6.6555 31.6705 -Verdana.ttf 49 y 31.1449 43.3223 9 r -0.4392 19.6817 31.6705 -Verdana.ttf 49 y 31.1449 43.3223 10 l -12.6172 5.3333 44.3483 -Verdana.ttf 49 y 31.1449 43.3223 11 i -10.4984 5.3333 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 12 1 -10.5873 22.9445 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 13 | -12.8830 5.2036 55.4929 -Verdana.ttf 49 y 31.1449 43.3223 14 N -10.3206 31.5514 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 15 f -12.9022 20.5259 44.3483 -Verdana.ttf 49 y 31.1449 43.3223 16 g -1.1005 28.2003 44.4964 -Verdana.ttf 49 y 31.1449 43.3223 17 d -12.6287 28.2003 45.5224 -Verdana.ttf 49 y 31.1449 43.3223 18 W -10.6153 52.3887 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 19 s -1.0737 25.0150 34.0188 -Verdana.ttf 49 y 31.1449 43.3223 20 c -0.9862 25.6820 34.0188 -Verdana.ttf 49 y 31.1449 43.3223 21 u 0.2830 26.4669 32.8447 -Verdana.ttf 49 y 31.1449 43.3223 22 3 -11.8942 28.2074 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 23 ~ 4.3992 37.0038 17.5224 -Verdana.ttf 49 y 31.1449 43.3223 24 # -10.4120 36.5186 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 25 O -11.7788 39.3996 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 26 ` -15.9280 11.8592 10.6850 -Verdana.ttf 49 y 31.1449 43.3223 27 @ -11.8190 48.3778 49.6815 -Verdana.ttf 49 y 31.1449 43.3223 28 F -10.4735 26.3478 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 29 S -11.7509 32.5147 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 30 p -1.7316 28.2003 44.4964 -Verdana.ttf 49 y 31.1449 43.3223 31 “ -12.6334 23.0072 16.1408 -Verdana.ttf 49 y 31.1449 43.3223 32 % -11.5383 54.3188 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 33 £ -11.3915 29.1741 43.3815 -Verdana.ttf 49 y 31.1449 43.3223 34 . 23.3444 6.6555 8.1886 -Verdana.ttf 49 y 31.1449 43.3223 35 2 -12.0802 28.3370 43.3815 -Verdana.ttf 49 y 31.1449 43.3223 36 5 -11.8499 27.5114 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 37 m -1.1550 46.3480 32.8447 -Verdana.ttf 49 y 31.1449 43.3223 38 V -10.2489 37.5109 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 39 6 -11.8024 29.6593 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 40 w -0.1107 42.9667 31.6705 -Verdana.ttf 49 y 31.1449 43.3223 41 T -10.2141 35.8297 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 42 M -10.5921 37.7217 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 43 G -11.7908 38.0483 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 44 b -12.5841 28.2003 45.5224 -Verdana.ttf 49 y 31.1449 43.3223 45 9 -11.7432 29.6593 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 46 ; 0.1066 12.1891 42.1191 -Verdana.ttf 49 y 31.1449 43.3223 47 D -10.7987 35.8587 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 48 L -10.3567 26.6777 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 49 y 0.2010 31.1449 43.3223 -Verdana.ttf 49 y 31.1449 43.3223 50 ‘ -12.7648 11.5036 16.1408 -Verdana.ttf 49 y 31.1449 43.3223 51 \ -12.4518 25.1446 53.0150 -Verdana.ttf 49 y 31.1449 43.3223 52 R -10.4937 34.9855 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 53 < -3.6242 32.8447 32.8447 -Verdana.ttf 49 y 31.1449 43.3223 54 4 -10.1937 32.2369 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 55 8 -11.9787 29.9590 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 56 0 -11.7211 28.9448 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 57 A -10.3595 37.5109 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 58 E -10.7075 27.8774 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 59 B -10.6762 32.0295 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 60 v 0.1792 31.1449 31.6705 -Verdana.ttf 49 y 31.1449 43.3223 61 k -12.7006 29.1741 44.3483 -Verdana.ttf 49 y 31.1449 43.3223 62 J -10.6431 20.1703 43.3815 -Verdana.ttf 49 y 31.1449 43.3223 63 U -10.6881 32.6187 43.3815 -Verdana.ttf 49 y 31.1449 43.3223 64 j -10.4937 16.4964 53.8592 -Verdana.ttf 49 y 31.1449 43.3223 65 ( -12.7176 17.3150 56.0000 -Verdana.ttf 49 y 31.1449 43.3223 66 7 -10.8031 29.1741 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 67 § -11.4614 27.0333 54.3965 -Verdana.ttf 49 y 31.1449 43.3223 68 $ -12.9529 28.8186 54.8039 -Verdana.ttf 49 y 31.1449 43.3223 69 € -11.7052 34.6555 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 70 / -12.4239 25.1446 53.0150 -Verdana.ttf 49 y 31.1449 43.3223 71 C -11.5995 35.1627 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 72 * -12.7296 27.3888 26.3188 -Verdana.ttf 49 y 31.1449 43.3223 73 ” -12.5636 23.0072 16.1408 -Verdana.ttf 49 y 31.1449 43.3223 74 ? -12.0892 23.9705 43.3815 -Verdana.ttf 49 y 31.1449 43.3223 75 { -12.8478 26.6962 55.4929 -Verdana.ttf 49 y 31.1449 43.3223 76 } -12.6081 26.6962 55.4929 -Verdana.ttf 49 y 31.1449 43.3223 77 , 23.7072 12.1891 18.6372 -Verdana.ttf 49 y 31.1449 43.3223 78 I -10.4371 16.4442 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 79 ° -11.5275 22.7964 22.7964 -Verdana.ttf 49 y 31.1449 43.3223 80 K -10.4864 33.3333 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 81 H -10.3433 32.7255 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 82 q -1.1768 28.2003 44.4964 -Verdana.ttf 49 y 31.1449 43.3223 83 & -11.5735 41.1629 44.5557 -Verdana.ttf 49 y 31.1449 43.3223 84 ’ -12.6653 11.5036 16.1408 -Verdana.ttf 49 y 31.1449 43.3223 85 [ -12.6482 15.1741 55.4929 -Verdana.ttf 49 y 31.1449 43.3223 86 - 10.2005 17.6705 4.8447 -Verdana.ttf 49 y 31.1449 43.3223 87 Y -10.6224 35.8297 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 88 Q -11.8304 40.5737 54.5262 -Verdana.ttf 49 y 31.1449 43.3223 89 " -12.4321 17.3150 16.3483 -Verdana.ttf 49 y 31.1449 43.3223 90 ! -10.0827 5.4814 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 91 x -0.0130 31.1449 31.6705 -Verdana.ttf 49 y 31.1449 43.3223 92 ) -12.4395 17.3150 56.0000 -Verdana.ttf 49 y 31.1449 43.3223 93 = 4.8576 33.8114 16.4964 -Verdana.ttf 49 y 31.1449 43.3223 94 + -3.9390 34.9855 34.9855 -Verdana.ttf 49 y 31.1449 43.3223 95 X -10.6537 35.9074 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 96 » -1.1307 28.0000 28.0000 -Verdana.ttf 49 y 31.1449 43.3223 97 ' -12.8935 6.1703 16.3483 -Verdana.ttf 49 y 31.1449 43.3223 98 ¢ -9.6130 27.2855 51.6115 -Verdana.ttf 49 y 31.1449 43.3223 99 Z -10.8249 33.2036 42.2074 -Verdana.ttf 49 y 31.1449 43.3223 100 > -3.8608 32.8447 32.8447 -Verdana.ttf 49 y 31.1449 43.3223 101 ® -11.8667 49.3445 49.3445 -Verdana.ttf 49 y 31.1449 43.3223 102 © -11.5894 49.3445 49.3445 -Verdana.ttf 49 y 31.1449 43.3223 103 ] -12.9730 15.1741 55.4929 -Verdana.ttf 49 y 31.1449 43.3223 104 é -15.9475 28.8152 48.8629 -Verdana.ttf 49 y 31.1449 43.3223 105 z 0.1687 25.5036 31.6705 -Verdana.ttf 49 y 31.1449 43.3223 106 _ 36.7799 37.0038 3.3150 -Verdana.ttf 49 y 31.1449 43.3223 107 ¥ -10.8146 31.1332 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 1 t 3.5753 20.1669 41.8484 -Verdana.ttf 50 ‘ 11.5036 16.1408 2 h 0.0059 26.4669 44.3483 -Verdana.ttf 50 ‘ 11.5036 16.1408 3 a 11.3940 26.7969 34.0188 -Verdana.ttf 50 ‘ 11.5036 16.1408 4 n 11.3012 26.4669 32.8447 -Verdana.ttf 50 ‘ 11.5036 16.1408 5 P 2.1898 27.8519 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 6 o 11.4281 29.3745 34.0188 -Verdana.ttf 50 ‘ 11.5036 16.1408 7 e 11.2446 28.8152 34.0188 -Verdana.ttf 50 ‘ 11.5036 16.1408 8 : 12.6479 6.6555 31.6705 -Verdana.ttf 50 ‘ 11.5036 16.1408 9 r 12.6273 19.6817 31.6705 -Verdana.ttf 50 ‘ 11.5036 16.1408 10 l 0.2086 5.3333 44.3483 -Verdana.ttf 50 ‘ 11.5036 16.1408 11 i 2.1885 5.3333 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 12 1 2.0284 22.9445 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 13 | -0.2224 5.2036 55.4929 -Verdana.ttf 50 ‘ 11.5036 16.1408 14 N 2.3062 31.5514 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 15 f 0.1907 20.5259 44.3483 -Verdana.ttf 50 ‘ 11.5036 16.1408 16 g 11.8079 28.2003 44.4964 -Verdana.ttf 50 ‘ 11.5036 16.1408 17 d 0.0298 28.2003 45.5224 -Verdana.ttf 50 ‘ 11.5036 16.1408 18 W 1.8713 52.3887 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 19 s 11.6204 25.0150 34.0188 -Verdana.ttf 50 ‘ 11.5036 16.1408 20 c 11.5559 25.6820 34.0188 -Verdana.ttf 50 ‘ 11.5036 16.1408 21 u 12.9036 26.4669 32.8447 -Verdana.ttf 50 ‘ 11.5036 16.1408 22 3 0.8827 28.2074 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 23 ~ 16.8112 37.0038 17.5224 -Verdana.ttf 50 ‘ 11.5036 16.1408 24 # 2.1841 36.5186 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 25 O 0.8278 39.3996 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 26 ` -3.1897 11.8592 10.6850 -Verdana.ttf 50 ‘ 11.5036 16.1408 27 @ 1.0585 48.3778 49.6815 -Verdana.ttf 50 ‘ 11.5036 16.1408 28 F 1.9399 26.3478 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 29 S 0.8797 32.5147 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 30 p 11.2493 28.2003 44.4964 -Verdana.ttf 50 ‘ 11.5036 16.1408 31 “ 0.0265 23.0072 16.1408 -Verdana.ttf 50 ‘ 11.5036 16.1408 32 % 1.1103 54.3188 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 33 £ 1.1694 29.1741 43.3815 -Verdana.ttf 50 ‘ 11.5036 16.1408 34 . 35.9424 6.6555 8.1886 -Verdana.ttf 50 ‘ 11.5036 16.1408 35 2 0.8696 28.3370 43.3815 -Verdana.ttf 50 ‘ 11.5036 16.1408 36 5 1.1014 27.5114 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 37 m 11.5275 46.3480 32.8447 -Verdana.ttf 50 ‘ 11.5036 16.1408 38 V 2.0520 37.5109 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 39 6 0.9167 29.6593 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 40 w 12.7575 42.9667 31.6705 -Verdana.ttf 50 ‘ 11.5036 16.1408 41 T 1.6911 35.8297 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 42 M 2.1380 37.7217 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 43 G 0.9268 38.0483 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 44 b -0.1259 28.2003 45.5224 -Verdana.ttf 50 ‘ 11.5036 16.1408 45 9 0.9552 29.6593 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 46 ; 12.4335 12.1891 42.1191 -Verdana.ttf 50 ‘ 11.5036 16.1408 47 D 2.2706 35.8587 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 48 L 2.1489 26.6777 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 49 y 12.5065 31.1449 43.3223 -Verdana.ttf 50 ‘ 11.5036 16.1408 50 ‘ 0.0337 11.5036 16.1408 -Verdana.ttf 50 ‘ 11.5036 16.1408 51 \ 0.0338 25.1446 53.0150 -Verdana.ttf 50 ‘ 11.5036 16.1408 52 R 2.2610 34.9855 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 53 < 9.2221 32.8447 32.8447 -Verdana.ttf 50 ‘ 11.5036 16.1408 54 4 2.1408 32.2369 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 55 8 0.9834 29.9590 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 56 0 1.1608 28.9448 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 57 A 2.2744 37.5109 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 58 E 2.0106 27.8774 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 59 B 2.1999 32.0295 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 60 v 12.6777 31.1449 31.6705 -Verdana.ttf 50 ‘ 11.5036 16.1408 61 k -0.1933 29.1741 44.3483 -Verdana.ttf 50 ‘ 11.5036 16.1408 62 J 2.0611 20.1703 43.3815 -Verdana.ttf 50 ‘ 11.5036 16.1408 63 U 2.1057 32.6187 43.3815 -Verdana.ttf 50 ‘ 11.5036 16.1408 64 j 2.1010 16.4964 53.8592 -Verdana.ttf 50 ‘ 11.5036 16.1408 65 ( 0.0842 17.3150 56.0000 -Verdana.ttf 50 ‘ 11.5036 16.1408 66 7 2.2947 29.1741 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 67 § 1.0704 27.0333 54.3965 -Verdana.ttf 50 ‘ 11.5036 16.1408 68 $ -0.5722 28.8186 54.8039 -Verdana.ttf 50 ‘ 11.5036 16.1408 69 € 0.9327 34.6555 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 70 / 0.0563 25.1446 53.0150 -Verdana.ttf 50 ‘ 11.5036 16.1408 71 C 0.7813 35.1627 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 72 * -0.1018 27.3888 26.3188 -Verdana.ttf 50 ‘ 11.5036 16.1408 73 ” 0.2177 23.0072 16.1408 -Verdana.ttf 50 ‘ 11.5036 16.1408 74 ? 0.6962 23.9705 43.3815 -Verdana.ttf 50 ‘ 11.5036 16.1408 75 { -0.1038 26.6962 55.4929 -Verdana.ttf 50 ‘ 11.5036 16.1408 76 } -0.1673 26.6962 55.4929 -Verdana.ttf 50 ‘ 11.5036 16.1408 77 , 36.1110 12.1891 18.6372 -Verdana.ttf 50 ‘ 11.5036 16.1408 78 I 2.2446 16.4442 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 79 ° 1.0266 22.7964 22.7964 -Verdana.ttf 50 ‘ 11.5036 16.1408 80 K 2.1779 33.3333 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 81 H 2.0520 32.7255 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 82 q 11.4869 28.2003 44.4964 -Verdana.ttf 50 ‘ 11.5036 16.1408 83 & 0.7361 41.1629 44.5557 -Verdana.ttf 50 ‘ 11.5036 16.1408 84 ’ 0.0943 11.5036 16.1408 -Verdana.ttf 50 ‘ 11.5036 16.1408 85 [ -0.2076 15.1741 55.4929 -Verdana.ttf 50 ‘ 11.5036 16.1408 86 - 22.9639 17.6705 4.8447 -Verdana.ttf 50 ‘ 11.5036 16.1408 87 Y 2.1470 35.8297 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 88 Q 0.8133 40.5737 54.5262 -Verdana.ttf 50 ‘ 11.5036 16.1408 89 " -0.0533 17.3150 16.3483 -Verdana.ttf 50 ‘ 11.5036 16.1408 90 ! 2.0524 5.4814 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 91 x 12.6676 31.1449 31.6705 -Verdana.ttf 50 ‘ 11.5036 16.1408 92 ) 0.1389 17.3150 56.0000 -Verdana.ttf 50 ‘ 11.5036 16.1408 93 = 17.6627 33.8114 16.4964 -Verdana.ttf 50 ‘ 11.5036 16.1408 94 + 8.3649 34.9855 34.9855 -Verdana.ttf 50 ‘ 11.5036 16.1408 95 X 2.3081 35.9074 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 96 » 11.5797 28.0000 28.0000 -Verdana.ttf 50 ‘ 11.5036 16.1408 97 ' -0.0101 6.1703 16.3483 -Verdana.ttf 50 ‘ 11.5036 16.1408 98 ¢ 2.8206 27.2855 51.6115 -Verdana.ttf 50 ‘ 11.5036 16.1408 99 Z 2.1880 33.2036 42.2074 -Verdana.ttf 50 ‘ 11.5036 16.1408 100 > 9.0683 32.8447 32.8447 -Verdana.ttf 50 ‘ 11.5036 16.1408 101 ® 0.8764 49.3445 49.3445 -Verdana.ttf 50 ‘ 11.5036 16.1408 102 © 0.9258 49.3445 49.3445 -Verdana.ttf 50 ‘ 11.5036 16.1408 103 ] 0.1288 15.1741 55.4929 -Verdana.ttf 50 ‘ 11.5036 16.1408 104 é -3.3007 28.8152 48.8629 -Verdana.ttf 50 ‘ 11.5036 16.1408 105 z 12.4086 25.5036 31.6705 -Verdana.ttf 50 ‘ 11.5036 16.1408 106 _ 49.4811 37.0038 3.3150 -Verdana.ttf 50 ‘ 11.5036 16.1408 107 ¥ 2.0252 31.1332 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 1 t 3.7124 20.1669 41.8484 -Verdana.ttf 51 \ 25.1446 53.0150 2 h -0.2533 26.4669 44.3483 -Verdana.ttf 51 \ 25.1446 53.0150 3 a 11.3571 26.7969 34.0188 -Verdana.ttf 51 \ 25.1446 53.0150 4 n 11.5953 26.4669 32.8447 -Verdana.ttf 51 \ 25.1446 53.0150 5 P 2.2468 27.8519 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 6 o 11.6425 29.3745 34.0188 -Verdana.ttf 51 \ 25.1446 53.0150 7 e 11.4206 28.8152 34.0188 -Verdana.ttf 51 \ 25.1446 53.0150 8 : 12.5278 6.6555 31.6705 -Verdana.ttf 51 \ 25.1446 53.0150 9 r 12.6744 19.6817 31.6705 -Verdana.ttf 51 \ 25.1446 53.0150 10 l 0.0471 5.3333 44.3483 -Verdana.ttf 51 \ 25.1446 53.0150 11 i 2.1427 5.3333 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 12 1 2.6056 22.9445 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 13 | 0.0740 5.2036 55.4929 -Verdana.ttf 51 \ 25.1446 53.0150 14 N 2.3234 31.5514 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 15 f -0.1241 20.5259 44.3483 -Verdana.ttf 51 \ 25.1446 53.0150 16 g 11.5878 28.2003 44.4964 -Verdana.ttf 51 \ 25.1446 53.0150 17 d 0.0371 28.2003 45.5224 -Verdana.ttf 51 \ 25.1446 53.0150 18 W 2.1013 52.3887 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 19 s 11.4238 25.0150 34.0188 -Verdana.ttf 51 \ 25.1446 53.0150 20 c 11.4285 25.6820 34.0188 -Verdana.ttf 51 \ 25.1446 53.0150 21 u 12.6259 26.4669 32.8447 -Verdana.ttf 51 \ 25.1446 53.0150 22 3 0.8764 28.2074 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 23 ~ 17.1632 37.0038 17.5224 -Verdana.ttf 51 \ 25.1446 53.0150 24 # 1.9487 36.5186 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 25 O 0.8782 39.3996 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 26 ` -3.0896 11.8592 10.6850 -Verdana.ttf 51 \ 25.1446 53.0150 27 @ 0.9696 48.3778 49.6815 -Verdana.ttf 51 \ 25.1446 53.0150 28 F 2.3918 26.3478 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 29 S 0.8917 32.5147 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 30 p 11.6088 28.2003 44.4964 -Verdana.ttf 51 \ 25.1446 53.0150 31 “ -0.0337 23.0072 16.1408 -Verdana.ttf 51 \ 25.1446 53.0150 32 % 1.2215 54.3188 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 33 £ 0.8898 29.1741 43.3815 -Verdana.ttf 51 \ 25.1446 53.0150 34 . 35.9717 6.6555 8.1886 -Verdana.ttf 51 \ 25.1446 53.0150 35 2 0.7461 28.3370 43.3815 -Verdana.ttf 51 \ 25.1446 53.0150 36 5 0.7610 27.5114 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 37 m 11.4267 46.3480 32.8447 -Verdana.ttf 51 \ 25.1446 53.0150 38 V 1.9121 37.5109 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 39 6 0.8408 29.6593 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 40 w 12.6364 42.9667 31.6705 -Verdana.ttf 51 \ 25.1446 53.0150 41 T 2.1408 35.8297 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 42 M 2.2279 37.7217 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 43 G 0.8292 38.0483 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 44 b 0.0850 28.2003 45.5224 -Verdana.ttf 51 \ 25.1446 53.0150 45 9 0.8764 29.6593 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 46 ; 12.9799 12.1891 42.1191 -Verdana.ttf 51 \ 25.1446 53.0150 47 D 1.9869 35.8587 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 48 L 2.3302 26.6777 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 49 y 12.6345 31.1449 43.3223 -Verdana.ttf 51 \ 25.1446 53.0150 50 ‘ 0.2785 11.5036 16.1408 -Verdana.ttf 51 \ 25.1446 53.0150 51 \ -0.0101 25.1446 53.0150 -Verdana.ttf 51 \ 25.1446 53.0150 52 R 2.3628 34.9855 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 53 < 9.2779 32.8447 32.8447 -Verdana.ttf 51 \ 25.1446 53.0150 54 4 2.2279 32.2369 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 55 8 1.0760 29.9590 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 56 0 0.9062 28.9448 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 57 A 2.3850 37.5109 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 58 E 1.8347 27.8774 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 59 B 2.0803 32.0295 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 60 v 12.6777 31.1449 31.6705 -Verdana.ttf 51 \ 25.1446 53.0150 61 k 0.1849 29.1741 44.3483 -Verdana.ttf 51 \ 25.1446 53.0150 62 J 2.0038 20.1703 43.3815 -Verdana.ttf 51 \ 25.1446 53.0150 63 U 2.1570 32.6187 43.3815 -Verdana.ttf 51 \ 25.1446 53.0150 64 j 2.3229 16.4964 53.8592 -Verdana.ttf 51 \ 25.1446 53.0150 65 ( -0.0178 17.3150 56.0000 -Verdana.ttf 51 \ 25.1446 53.0150 66 7 2.2743 29.1741 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 67 § 1.2311 27.0333 54.3965 -Verdana.ttf 51 \ 25.1446 53.0150 68 $ -0.8159 28.8186 54.8039 -Verdana.ttf 51 \ 25.1446 53.0150 69 € 0.9700 34.6555 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 70 / 0.0769 25.1446 53.0150 -Verdana.ttf 51 \ 25.1446 53.0150 71 C 0.8839 35.1627 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 72 * 0.0096 27.3888 26.3188 -Verdana.ttf 51 \ 25.1446 53.0150 73 ” -0.0370 23.0072 16.1408 -Verdana.ttf 51 \ 25.1446 53.0150 74 ? 0.8485 23.9705 43.3815 -Verdana.ttf 51 \ 25.1446 53.0150 75 { 0.4110 26.6962 55.4929 -Verdana.ttf 51 \ 25.1446 53.0150 76 } -0.1567 26.6962 55.4929 -Verdana.ttf 51 \ 25.1446 53.0150 77 , 35.9485 12.1891 18.6372 -Verdana.ttf 51 \ 25.1446 53.0150 78 I 2.3999 16.4442 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 79 ° 0.9163 22.7964 22.7964 -Verdana.ttf 51 \ 25.1446 53.0150 80 K 2.0629 33.3333 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 81 H 2.0318 32.7255 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 82 q 11.3614 28.2003 44.4964 -Verdana.ttf 51 \ 25.1446 53.0150 83 & 1.0807 41.1629 44.5557 -Verdana.ttf 51 \ 25.1446 53.0150 84 ’ -0.0889 11.5036 16.1408 -Verdana.ttf 51 \ 25.1446 53.0150 85 [ -0.1316 15.1741 55.4929 -Verdana.ttf 51 \ 25.1446 53.0150 86 - 23.0437 17.6705 4.8447 -Verdana.ttf 51 \ 25.1446 53.0150 87 Y 2.0231 35.8297 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 88 Q 0.9834 40.5737 54.5262 -Verdana.ttf 51 \ 25.1446 53.0150 89 " 0.0028 17.3150 16.3483 -Verdana.ttf 51 \ 25.1446 53.0150 90 ! 2.0375 5.4814 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 91 x 12.8138 31.1449 31.6705 -Verdana.ttf 51 \ 25.1446 53.0150 92 ) 0.0788 17.3150 56.0000 -Verdana.ttf 51 \ 25.1446 53.0150 93 = 17.4720 33.8114 16.4964 -Verdana.ttf 51 \ 25.1446 53.0150 94 + 8.8353 34.9855 34.9855 -Verdana.ttf 51 \ 25.1446 53.0150 95 X 2.1510 35.9074 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 96 » 11.9152 28.0000 28.0000 -Verdana.ttf 51 \ 25.1446 53.0150 97 ' 0.0035 6.1703 16.3483 -Verdana.ttf 51 \ 25.1446 53.0150 98 ¢ 2.8332 27.2855 51.6115 -Verdana.ttf 51 \ 25.1446 53.0150 99 Z 1.8832 33.2036 42.2074 -Verdana.ttf 51 \ 25.1446 53.0150 100 > 8.8761 32.8447 32.8447 -Verdana.ttf 51 \ 25.1446 53.0150 101 ® 1.1009 49.3445 49.3445 -Verdana.ttf 51 \ 25.1446 53.0150 102 © 0.9283 49.3445 49.3445 -Verdana.ttf 51 \ 25.1446 53.0150 103 ] 0.3744 15.1741 55.4929 -Verdana.ttf 51 \ 25.1446 53.0150 104 é -3.5255 28.8152 48.8629 -Verdana.ttf 51 \ 25.1446 53.0150 105 z 12.5698 25.5036 31.6705 -Verdana.ttf 51 \ 25.1446 53.0150 106 _ 49.4855 37.0038 3.3150 -Verdana.ttf 51 \ 25.1446 53.0150 107 ¥ 2.2265 31.1332 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 1 t 1.3586 20.1669 41.8484 -Verdana.ttf 52 R 34.9855 42.2074 2 h -2.1854 26.4669 44.3483 -Verdana.ttf 52 R 34.9855 42.2074 3 a 9.5873 26.7969 34.0188 -Verdana.ttf 52 R 34.9855 42.2074 4 n 9.4425 26.4669 32.8447 -Verdana.ttf 52 R 34.9855 42.2074 5 P -0.0983 27.8519 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 6 o 9.6250 29.3745 34.0188 -Verdana.ttf 52 R 34.9855 42.2074 7 e 9.2825 28.8152 34.0188 -Verdana.ttf 52 R 34.9855 42.2074 8 : 10.0919 6.6555 31.6705 -Verdana.ttf 52 R 34.9855 42.2074 9 r 10.5897 19.6817 31.6705 -Verdana.ttf 52 R 34.9855 42.2074 10 l -1.7343 5.3333 44.3483 -Verdana.ttf 52 R 34.9855 42.2074 11 i -0.0431 5.3333 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 12 1 0.1865 22.9445 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 13 | -2.0653 5.2036 55.4929 -Verdana.ttf 52 R 34.9855 42.2074 14 N -0.2571 31.5514 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 15 f -1.8851 20.5259 44.3483 -Verdana.ttf 52 R 34.9855 42.2074 16 g 9.2793 28.2003 44.4964 -Verdana.ttf 52 R 34.9855 42.2074 17 d -2.4546 28.2003 45.5224 -Verdana.ttf 52 R 34.9855 42.2074 18 W 0.1860 52.3887 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 19 s 9.3667 25.0150 34.0188 -Verdana.ttf 52 R 34.9855 42.2074 20 c 9.1868 25.6820 34.0188 -Verdana.ttf 52 R 34.9855 42.2074 21 u 10.0729 26.4669 32.8447 -Verdana.ttf 52 R 34.9855 42.2074 22 3 -0.9536 28.2074 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 23 ~ 14.6554 37.0038 17.5224 -Verdana.ttf 52 R 34.9855 42.2074 24 # -0.1668 36.5186 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 25 O -1.1371 39.3996 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 26 ` -5.2282 11.8592 10.6850 -Verdana.ttf 52 R 34.9855 42.2074 27 @ -0.8680 48.3778 49.6815 -Verdana.ttf 52 R 34.9855 42.2074 28 F -0.2043 26.3478 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 29 S -1.0127 32.5147 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 30 p 9.1763 28.2003 44.4964 -Verdana.ttf 52 R 34.9855 42.2074 31 “ -1.9283 23.0072 16.1408 -Verdana.ttf 52 R 34.9855 42.2074 32 % -1.0871 54.3188 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 33 £ -1.2881 29.1741 43.3815 -Verdana.ttf 52 R 34.9855 42.2074 34 . 34.2404 6.6555 8.1886 -Verdana.ttf 52 R 34.9855 42.2074 35 2 -1.3885 28.3370 43.3815 -Verdana.ttf 52 R 34.9855 42.2074 36 5 -1.0809 27.5114 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 37 m 9.2910 46.3480 32.8447 -Verdana.ttf 52 R 34.9855 42.2074 38 V -0.0091 37.5109 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 39 6 -0.9314 29.6593 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 40 w 10.7487 42.9667 31.6705 -Verdana.ttf 52 R 34.9855 42.2074 41 T -0.0399 35.8297 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 42 M -0.0558 37.7217 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 43 G -1.4331 38.0483 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 44 b -2.2269 28.2003 45.5224 -Verdana.ttf 52 R 34.9855 42.2074 45 9 -1.2347 29.6593 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 46 ; 10.6820 12.1891 42.1191 -Verdana.ttf 52 R 34.9855 42.2074 47 D -0.1037 35.8587 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 48 L 0.2125 26.6777 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 49 y 10.4738 31.1449 43.3223 -Verdana.ttf 52 R 34.9855 42.2074 50 ‘ -2.0400 11.5036 16.1408 -Verdana.ttf 52 R 34.9855 42.2074 51 \ -2.0231 25.1446 53.0150 -Verdana.ttf 52 R 34.9855 42.2074 52 R -0.0860 34.9855 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 53 < 7.0265 32.8447 32.8447 -Verdana.ttf 52 R 34.9855 42.2074 54 4 -0.3137 32.2369 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 55 8 -1.0409 29.9590 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 56 0 -1.1889 28.9448 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 57 A 0.0823 37.5109 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 58 E -0.1403 27.8774 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 59 B -0.0769 32.0295 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 60 v 10.3395 31.1449 31.6705 -Verdana.ttf 52 R 34.9855 42.2074 61 k -2.0713 29.1741 44.3483 -Verdana.ttf 52 R 34.9855 42.2074 62 J 0.1609 20.1703 43.3815 -Verdana.ttf 52 R 34.9855 42.2074 63 U 0.2149 32.6187 43.3815 -Verdana.ttf 52 R 34.9855 42.2074 64 j -0.1904 16.4964 53.8592 -Verdana.ttf 52 R 34.9855 42.2074 65 ( -1.7281 17.3150 56.0000 -Verdana.ttf 52 R 34.9855 42.2074 66 7 -0.0312 29.1741 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 67 § -1.2303 27.0333 54.3965 -Verdana.ttf 52 R 34.9855 42.2074 68 $ -2.7283 28.8186 54.8039 -Verdana.ttf 52 R 34.9855 42.2074 69 € -1.3135 34.6555 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 70 / -2.0533 25.1446 53.0150 -Verdana.ttf 52 R 34.9855 42.2074 71 C -1.1904 35.1627 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 72 * -2.2370 27.3888 26.3188 -Verdana.ttf 52 R 34.9855 42.2074 73 ” -2.0966 23.0072 16.1408 -Verdana.ttf 52 R 34.9855 42.2074 74 ? -1.1788 23.9705 43.3815 -Verdana.ttf 52 R 34.9855 42.2074 75 { -2.1395 26.6962 55.4929 -Verdana.ttf 52 R 34.9855 42.2074 76 } -2.1557 26.6962 55.4929 -Verdana.ttf 52 R 34.9855 42.2074 77 , 33.9585 12.1891 18.6372 -Verdana.ttf 52 R 34.9855 42.2074 78 I 0.2619 16.4442 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 79 ° -1.2318 22.7964 22.7964 -Verdana.ttf 52 R 34.9855 42.2074 80 K -0.0190 33.3333 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 81 H 0.3837 32.7255 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 82 q 9.6171 28.2003 44.4964 -Verdana.ttf 52 R 34.9855 42.2074 83 & -1.3054 41.1629 44.5557 -Verdana.ttf 52 R 34.9855 42.2074 84 ’ -1.9784 11.5036 16.1408 -Verdana.ttf 52 R 34.9855 42.2074 85 [ -2.2696 15.1741 55.4929 -Verdana.ttf 52 R 34.9855 42.2074 86 - 21.1339 17.6705 4.8447 -Verdana.ttf 52 R 34.9855 42.2074 87 Y 0.0961 35.8297 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 88 Q -1.1871 40.5737 54.5262 -Verdana.ttf 52 R 34.9855 42.2074 89 " -2.1615 17.3150 16.3483 -Verdana.ttf 52 R 34.9855 42.2074 90 ! 0.2307 5.4814 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 91 x 10.4100 31.1449 31.6705 -Verdana.ttf 52 R 34.9855 42.2074 92 ) -2.1111 17.3150 56.0000 -Verdana.ttf 52 R 34.9855 42.2074 93 = 15.3511 33.8114 16.4964 -Verdana.ttf 52 R 34.9855 42.2074 94 + 6.5200 34.9855 34.9855 -Verdana.ttf 52 R 34.9855 42.2074 95 X -0.2643 35.9074 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 96 » 9.6566 28.0000 28.0000 -Verdana.ttf 52 R 34.9855 42.2074 97 ' -2.3633 6.1703 16.3483 -Verdana.ttf 52 R 34.9855 42.2074 98 ¢ 0.3425 27.2855 51.6115 -Verdana.ttf 52 R 34.9855 42.2074 99 Z 0.0875 33.2036 42.2074 -Verdana.ttf 52 R 34.9855 42.2074 100 > 6.8676 32.8447 32.8447 -Verdana.ttf 52 R 34.9855 42.2074 101 ® -1.2908 49.3445 49.3445 -Verdana.ttf 52 R 34.9855 42.2074 102 © -1.1713 49.3445 49.3445 -Verdana.ttf 52 R 34.9855 42.2074 103 ] -2.1706 15.1741 55.4929 -Verdana.ttf 52 R 34.9855 42.2074 104 é -5.8598 28.8152 48.8629 -Verdana.ttf 52 R 34.9855 42.2074 105 z 10.3591 25.5036 31.6705 -Verdana.ttf 52 R 34.9855 42.2074 106 _ 47.6519 37.0038 3.3150 -Verdana.ttf 52 R 34.9855 42.2074 107 ¥ -0.0370 31.1332 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 1 t -5.2924 20.1669 41.8484 -Verdana.ttf 53 < 32.8447 32.8447 2 h -8.9813 26.4669 44.3483 -Verdana.ttf 53 < 32.8447 32.8447 3 a 2.4454 26.7969 34.0188 -Verdana.ttf 53 < 32.8447 32.8447 4 n 2.3407 26.4669 32.8447 -Verdana.ttf 53 < 32.8447 32.8447 5 P -6.9685 27.8519 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 6 o 2.4299 29.3745 34.0188 -Verdana.ttf 53 < 32.8447 32.8447 7 e 2.3805 28.8152 34.0188 -Verdana.ttf 53 < 32.8447 32.8447 8 : 3.3908 6.6555 31.6705 -Verdana.ttf 53 < 32.8447 32.8447 9 r 3.2662 19.6817 31.6705 -Verdana.ttf 53 < 32.8447 32.8447 10 l -9.4211 5.3333 44.3483 -Verdana.ttf 53 < 32.8447 32.8447 11 i -7.0258 5.3333 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 12 1 -6.9275 22.9445 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 13 | -9.1924 5.2036 55.4929 -Verdana.ttf 53 < 32.8447 32.8447 14 N -7.2357 31.5514 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 15 f -9.3495 20.5259 44.3483 -Verdana.ttf 53 < 32.8447 32.8447 16 g 2.3664 28.2003 44.4964 -Verdana.ttf 53 < 32.8447 32.8447 17 d -9.8599 28.2003 45.5224 -Verdana.ttf 53 < 32.8447 32.8447 18 W -7.1505 52.3887 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 19 s 2.5861 25.0150 34.0188 -Verdana.ttf 53 < 32.8447 32.8447 20 c 2.2136 25.6820 34.0188 -Verdana.ttf 53 < 32.8447 32.8447 21 u 3.4374 26.4669 32.8447 -Verdana.ttf 53 < 32.8447 32.8447 22 3 -8.2761 28.2074 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 23 ~ 7.7380 37.0038 17.5224 -Verdana.ttf 53 < 32.8447 32.8447 24 # -6.9775 36.5186 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 25 O -8.2184 39.3996 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 26 ` -12.4887 11.8592 10.6850 -Verdana.ttf 53 < 32.8447 32.8447 27 @ -7.9522 48.3778 49.6815 -Verdana.ttf 53 < 32.8447 32.8447 28 F -7.1044 26.3478 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 29 S -8.3108 32.5147 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 30 p 2.2206 28.2003 44.4964 -Verdana.ttf 53 < 32.8447 32.8447 31 “ -9.0015 23.0072 16.1408 -Verdana.ttf 53 < 32.8447 32.8447 32 % -7.9597 54.3188 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 33 £ -7.9363 29.1741 43.3815 -Verdana.ttf 53 < 32.8447 32.8447 34 . 27.2281 6.6555 8.1886 -Verdana.ttf 53 < 32.8447 32.8447 35 2 -7.8560 28.3370 43.3815 -Verdana.ttf 53 < 32.8447 32.8447 36 5 -8.1443 27.5114 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 37 m 2.6192 46.3480 32.8447 -Verdana.ttf 53 < 32.8447 32.8447 38 V -6.6590 37.5109 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 39 6 -8.1785 29.6593 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 40 w 3.5550 42.9667 31.6705 -Verdana.ttf 53 < 32.8447 32.8447 41 T -6.8914 35.8297 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 42 M -6.9569 37.7217 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 43 G -8.1070 38.0483 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 44 b -9.0232 28.2003 45.5224 -Verdana.ttf 53 < 32.8447 32.8447 45 9 -8.2508 29.6593 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 46 ; 3.4905 12.1891 42.1191 -Verdana.ttf 53 < 32.8447 32.8447 47 D -6.7069 35.8587 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 48 L -6.9714 26.6777 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 49 y 3.4879 31.1449 43.3223 -Verdana.ttf 53 < 32.8447 32.8447 50 ‘ -9.0923 11.5036 16.1408 -Verdana.ttf 53 < 32.8447 32.8447 51 \ -9.1082 25.1446 53.0150 -Verdana.ttf 53 < 32.8447 32.8447 52 R -7.1236 34.9855 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 53 < 0.0960 32.8447 32.8447 -Verdana.ttf 53 < 32.8447 32.8447 54 4 -7.3840 32.2369 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 55 8 -8.0214 29.9590 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 56 0 -8.3257 28.9448 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 57 A -6.7635 37.5109 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 58 E -7.0340 27.8774 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 59 B -6.7972 32.0295 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 60 v 3.6839 31.1449 31.6705 -Verdana.ttf 53 < 32.8447 32.8447 61 k -9.4024 29.1741 44.3483 -Verdana.ttf 53 < 32.8447 32.8447 62 J -7.1487 20.1703 43.3815 -Verdana.ttf 53 < 32.8447 32.8447 63 U -6.8740 32.6187 43.3815 -Verdana.ttf 53 < 32.8447 32.8447 64 j -6.9092 16.4964 53.8592 -Verdana.ttf 53 < 32.8447 32.8447 65 ( -9.3284 17.3150 56.0000 -Verdana.ttf 53 < 32.8447 32.8447 66 7 -7.0025 29.1741 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 67 § -8.1368 27.0333 54.3965 -Verdana.ttf 53 < 32.8447 32.8447 68 $ -9.4233 28.8186 54.8039 -Verdana.ttf 53 < 32.8447 32.8447 69 € -8.2717 34.6555 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 70 / -9.4152 25.1446 53.0150 -Verdana.ttf 53 < 32.8447 32.8447 71 C -8.1809 35.1627 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 72 * -9.2518 27.3888 26.3188 -Verdana.ttf 53 < 32.8447 32.8447 73 ” -8.8437 23.0072 16.1408 -Verdana.ttf 53 < 32.8447 32.8447 74 ? -8.2829 23.9705 43.3815 -Verdana.ttf 53 < 32.8447 32.8447 75 { -9.4211 26.6962 55.4929 -Verdana.ttf 53 < 32.8447 32.8447 76 } -9.0617 26.6962 55.4929 -Verdana.ttf 53 < 32.8447 32.8447 77 , 27.0106 12.1891 18.6372 -Verdana.ttf 53 < 32.8447 32.8447 78 I -7.0971 16.4442 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 79 ° -7.9561 22.7964 22.7964 -Verdana.ttf 53 < 32.8447 32.8447 80 K -6.7469 33.3333 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 81 H -6.7186 32.7255 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 82 q 2.3412 28.2003 44.4964 -Verdana.ttf 53 < 32.8447 32.8447 83 & -8.0950 41.1629 44.5557 -Verdana.ttf 53 < 32.8447 32.8447 84 ’ -9.1387 11.5036 16.1408 -Verdana.ttf 53 < 32.8447 32.8447 85 [ -9.1155 15.1741 55.4929 -Verdana.ttf 53 < 32.8447 32.8447 86 - 13.8545 17.6705 4.8447 -Verdana.ttf 53 < 32.8447 32.8447 87 Y -6.9570 35.8297 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 88 Q -8.4153 40.5737 54.5262 -Verdana.ttf 53 < 32.8447 32.8447 89 " -9.2053 17.3150 16.3483 -Verdana.ttf 53 < 32.8447 32.8447 90 ! -6.9981 5.4814 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 91 x 3.8166 31.1449 31.6705 -Verdana.ttf 53 < 32.8447 32.8447 92 ) -9.1150 17.3150 56.0000 -Verdana.ttf 53 < 32.8447 32.8447 93 = 8.4203 33.8114 16.4964 -Verdana.ttf 53 < 32.8447 32.8447 94 + -0.6328 34.9855 34.9855 -Verdana.ttf 53 < 32.8447 32.8447 95 X -6.8371 35.9074 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 96 » 2.6056 28.0000 28.0000 -Verdana.ttf 53 < 32.8447 32.8447 97 ' -9.0051 6.1703 16.3483 -Verdana.ttf 53 < 32.8447 32.8447 98 ¢ -6.4924 27.2855 51.6115 -Verdana.ttf 53 < 32.8447 32.8447 99 Z -7.2432 33.2036 42.2074 -Verdana.ttf 53 < 32.8447 32.8447 100 > -0.0207 32.8447 32.8447 -Verdana.ttf 53 < 32.8447 32.8447 101 ® -7.9416 49.3445 49.3445 -Verdana.ttf 53 < 32.8447 32.8447 102 © -8.0612 49.3445 49.3445 -Verdana.ttf 53 < 32.8447 32.8447 103 ] -9.1343 15.1741 55.4929 -Verdana.ttf 53 < 32.8447 32.8447 104 é -12.3133 28.8152 48.8629 -Verdana.ttf 53 < 32.8447 32.8447 105 z 3.4295 25.5036 31.6705 -Verdana.ttf 53 < 32.8447 32.8447 106 _ 40.4292 37.0038 3.3150 -Verdana.ttf 53 < 32.8447 32.8447 107 ¥ -7.3754 31.1332 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 1 t 1.7133 20.1669 41.8484 -Verdana.ttf 54 4 32.2369 42.2074 2 h -2.1307 26.4669 44.3483 -Verdana.ttf 54 4 32.2369 42.2074 3 a 9.0437 26.7969 34.0188 -Verdana.ttf 54 4 32.2369 42.2074 4 n 9.2743 26.4669 32.8447 -Verdana.ttf 54 4 32.2369 42.2074 5 P -0.0504 27.8519 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 6 o 9.5267 29.3745 34.0188 -Verdana.ttf 54 4 32.2369 42.2074 7 e 9.3667 28.8152 34.0188 -Verdana.ttf 54 4 32.2369 42.2074 8 : 10.5296 6.6555 31.6705 -Verdana.ttf 54 4 32.2369 42.2074 9 r 10.7676 19.6817 31.6705 -Verdana.ttf 54 4 32.2369 42.2074 10 l -2.3672 5.3333 44.3483 -Verdana.ttf 54 4 32.2369 42.2074 11 i 0.1740 5.3333 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 12 1 0.0532 22.9445 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 13 | -2.3368 5.2036 55.4929 -Verdana.ttf 54 4 32.2369 42.2074 14 N -0.0413 31.5514 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 15 f -2.0552 20.5259 44.3483 -Verdana.ttf 54 4 32.2369 42.2074 16 g 9.4200 28.2003 44.4964 -Verdana.ttf 54 4 32.2369 42.2074 17 d -2.0505 28.2003 45.5224 -Verdana.ttf 54 4 32.2369 42.2074 18 W -0.1077 52.3887 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 19 s 9.2989 25.0150 34.0188 -Verdana.ttf 54 4 32.2369 42.2074 20 c 9.2989 25.6820 34.0188 -Verdana.ttf 54 4 32.2369 42.2074 21 u 10.3600 26.4669 32.8447 -Verdana.ttf 54 4 32.2369 42.2074 22 3 -1.5202 28.2074 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 23 ~ 14.4732 37.0038 17.5224 -Verdana.ttf 54 4 32.2369 42.2074 24 # -0.3172 36.5186 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 25 O -1.2909 39.3996 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 26 ` -5.4698 11.8592 10.6850 -Verdana.ttf 54 4 32.2369 42.2074 27 @ -1.3932 48.3778 49.6815 -Verdana.ttf 54 4 32.2369 42.2074 28 F -0.0823 26.3478 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 29 S -1.2745 32.5147 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 30 p 8.9442 28.2003 44.4964 -Verdana.ttf 54 4 32.2369 42.2074 31 “ -2.3748 23.0072 16.1408 -Verdana.ttf 54 4 32.2369 42.2074 32 % -1.2231 54.3188 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 33 £ -1.4357 29.1741 43.3815 -Verdana.ttf 54 4 32.2369 42.2074 34 . 33.6622 6.6555 8.1886 -Verdana.ttf 54 4 32.2369 42.2074 35 2 -1.0933 28.3370 43.3815 -Verdana.ttf 54 4 32.2369 42.2074 36 5 -1.1568 27.5114 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 37 m 9.4331 46.3480 32.8447 -Verdana.ttf 54 4 32.2369 42.2074 38 V -0.1210 37.5109 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 39 6 -0.9986 29.6593 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 40 w 10.6453 42.9667 31.6705 -Verdana.ttf 54 4 32.2369 42.2074 41 T -0.2090 35.8297 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 42 M 0.1157 37.7217 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 43 G -1.3366 38.0483 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 44 b -2.0015 28.2003 45.5224 -Verdana.ttf 54 4 32.2369 42.2074 45 9 -1.1357 29.6593 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 46 ; 10.1452 12.1891 42.1191 -Verdana.ttf 54 4 32.2369 42.2074 47 D -0.0082 35.8587 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 48 L 0.2206 26.6777 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 49 y 10.5739 31.1449 43.3223 -Verdana.ttf 54 4 32.2369 42.2074 50 ‘ -2.1293 11.5036 16.1408 -Verdana.ttf 54 4 32.2369 42.2074 51 \ -2.0067 25.1446 53.0150 -Verdana.ttf 54 4 32.2369 42.2074 52 R -0.1403 34.9855 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 53 < 7.0678 32.8447 32.8447 -Verdana.ttf 54 4 32.2369 42.2074 54 4 -0.0663 32.2369 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 55 8 -0.9224 29.9590 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 56 0 -1.2659 28.9448 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 57 A 0.0352 37.5109 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 58 E 0.0856 27.8774 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 59 B -0.0889 32.0295 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 60 v 10.4970 31.1449 31.6705 -Verdana.ttf 54 4 32.2369 42.2074 61 k -2.0672 29.1741 44.3483 -Verdana.ttf 54 4 32.2369 42.2074 62 J -0.1788 20.1703 43.3815 -Verdana.ttf 54 4 32.2369 42.2074 63 U -0.0390 32.6187 43.3815 -Verdana.ttf 54 4 32.2369 42.2074 64 j 0.0312 16.4964 53.8592 -Verdana.ttf 54 4 32.2369 42.2074 65 ( -2.1514 17.3150 56.0000 -Verdana.ttf 54 4 32.2369 42.2074 66 7 -0.0066 29.1741 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 67 § -1.0261 27.0333 54.3965 -Verdana.ttf 54 4 32.2369 42.2074 68 $ -2.4766 28.8186 54.8039 -Verdana.ttf 54 4 32.2369 42.2074 69 € -1.3503 34.6555 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 70 / -2.0533 25.1446 53.0150 -Verdana.ttf 54 4 32.2369 42.2074 71 C -1.1102 35.1627 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 72 * -2.1774 27.3888 26.3188 -Verdana.ttf 54 4 32.2369 42.2074 73 ” -2.0700 23.0072 16.1408 -Verdana.ttf 54 4 32.2369 42.2074 74 ? -1.5652 23.9705 43.3815 -Verdana.ttf 54 4 32.2369 42.2074 75 { -1.8558 26.6962 55.4929 -Verdana.ttf 54 4 32.2369 42.2074 76 } -2.0005 26.6962 55.4929 -Verdana.ttf 54 4 32.2369 42.2074 77 , 33.8382 12.1891 18.6372 -Verdana.ttf 54 4 32.2369 42.2074 78 I -0.3489 16.4442 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 79 ° -1.3115 22.7964 22.7964 -Verdana.ttf 54 4 32.2369 42.2074 80 K 0.0663 33.3333 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 81 H 0.0427 32.7255 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 82 q 9.4770 28.2003 44.4964 -Verdana.ttf 54 4 32.2369 42.2074 83 & -1.1702 41.1629 44.5557 -Verdana.ttf 54 4 32.2369 42.2074 84 ’ -2.4100 11.5036 16.1408 -Verdana.ttf 54 4 32.2369 42.2074 85 [ -2.2468 15.1741 55.4929 -Verdana.ttf 54 4 32.2369 42.2074 86 - 20.8306 17.6705 4.8447 -Verdana.ttf 54 4 32.2369 42.2074 87 Y -0.0533 35.8297 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 88 Q -0.8577 40.5737 54.5262 -Verdana.ttf 54 4 32.2369 42.2074 89 " -2.0186 17.3150 16.3483 -Verdana.ttf 54 4 32.2369 42.2074 90 ! 0.0451 5.4814 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 91 x 10.6152 31.1449 31.6705 -Verdana.ttf 54 4 32.2369 42.2074 92 ) -1.7915 17.3150 56.0000 -Verdana.ttf 54 4 32.2369 42.2074 93 = 15.4282 33.8114 16.4964 -Verdana.ttf 54 4 32.2369 42.2074 94 + 6.3495 34.9855 34.9855 -Verdana.ttf 54 4 32.2369 42.2074 95 X 0.1738 35.9074 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 96 » 9.4439 28.0000 28.0000 -Verdana.ttf 54 4 32.2369 42.2074 97 ' -2.1568 6.1703 16.3483 -Verdana.ttf 54 4 32.2369 42.2074 98 ¢ 0.9350 27.2855 51.6115 -Verdana.ttf 54 4 32.2369 42.2074 99 Z -0.2501 33.2036 42.2074 -Verdana.ttf 54 4 32.2369 42.2074 100 > 7.1177 32.8447 32.8447 -Verdana.ttf 54 4 32.2369 42.2074 101 ® -1.1237 49.3445 49.3445 -Verdana.ttf 54 4 32.2369 42.2074 102 © -1.2020 49.3445 49.3445 -Verdana.ttf 54 4 32.2369 42.2074 103 ] -1.6305 15.1741 55.4929 -Verdana.ttf 54 4 32.2369 42.2074 104 é -5.5199 28.8152 48.8629 -Verdana.ttf 54 4 32.2369 42.2074 105 z 10.4716 25.5036 31.6705 -Verdana.ttf 54 4 32.2369 42.2074 106 _ 47.4760 37.0038 3.3150 -Verdana.ttf 54 4 32.2369 42.2074 107 ¥ 0.0979 31.1332 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 1 t 3.0090 20.1669 41.8484 -Verdana.ttf 55 8 29.9590 44.5557 2 h -1.0802 26.4669 44.3483 -Verdana.ttf 55 8 29.9590 44.5557 3 a 10.7081 26.7969 34.0188 -Verdana.ttf 55 8 29.9590 44.5557 4 n 10.6211 26.4669 32.8447 -Verdana.ttf 55 8 29.9590 44.5557 5 P 1.1207 27.8519 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 6 o 10.5427 29.3745 34.0188 -Verdana.ttf 55 8 29.9590 44.5557 7 e 10.6110 28.8152 34.0188 -Verdana.ttf 55 8 29.9590 44.5557 8 : 11.5735 6.6555 31.6705 -Verdana.ttf 55 8 29.9590 44.5557 9 r 11.5144 19.6817 31.6705 -Verdana.ttf 55 8 29.9590 44.5557 10 l -0.9036 5.3333 44.3483 -Verdana.ttf 55 8 29.9590 44.5557 11 i 1.2679 5.3333 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 12 1 1.3395 22.9445 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 13 | -0.6087 5.2036 55.4929 -Verdana.ttf 55 8 29.9590 44.5557 14 N 1.0498 31.5514 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 15 f -0.8494 20.5259 44.3483 -Verdana.ttf 55 8 29.9590 44.5557 16 g 10.6124 28.2003 44.4964 -Verdana.ttf 55 8 29.9590 44.5557 17 d -1.1379 28.2003 45.5224 -Verdana.ttf 55 8 29.9590 44.5557 18 W 1.4121 52.3887 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 19 s 10.4998 25.0150 34.0188 -Verdana.ttf 55 8 29.9590 44.5557 20 c 10.3417 25.6820 34.0188 -Verdana.ttf 55 8 29.9590 44.5557 21 u 11.7058 26.4669 32.8447 -Verdana.ttf 55 8 29.9590 44.5557 22 3 -0.0000 28.2074 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 23 ~ 15.6768 37.0038 17.5224 -Verdana.ttf 55 8 29.9590 44.5557 24 # 1.1906 36.5186 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 25 O -0.1811 39.3996 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 26 ` -4.7422 11.8592 10.6850 -Verdana.ttf 55 8 29.9590 44.5557 27 @ -0.2238 48.3778 49.6815 -Verdana.ttf 55 8 29.9590 44.5557 28 F 1.2804 26.3478 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 29 S -0.1140 32.5147 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 30 p 10.5032 28.2003 44.4964 -Verdana.ttf 55 8 29.9590 44.5557 31 “ -0.6439 23.0072 16.1408 -Verdana.ttf 55 8 29.9590 44.5557 32 % -0.0669 54.3188 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 33 £ -0.0167 29.1741 43.3815 -Verdana.ttf 55 8 29.9590 44.5557 34 . 35.3569 6.6555 8.1886 -Verdana.ttf 55 8 29.9590 44.5557 35 2 0.2543 28.3370 43.3815 -Verdana.ttf 55 8 29.9590 44.5557 36 5 0.1498 27.5114 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 37 m 10.6805 46.3480 32.8447 -Verdana.ttf 55 8 29.9590 44.5557 38 V 1.2140 37.5109 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 39 6 0.2072 29.6593 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 40 w 11.7408 42.9667 31.6705 -Verdana.ttf 55 8 29.9590 44.5557 41 T 1.0871 35.8297 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 42 M 1.4033 37.7217 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 43 G 0.1140 38.0483 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 44 b -1.1734 28.2003 45.5224 -Verdana.ttf 55 8 29.9590 44.5557 45 9 0.1154 29.6593 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 46 ; 11.5856 12.1891 42.1191 -Verdana.ttf 55 8 29.9590 44.5557 47 D 1.0122 35.8587 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 48 L 1.2025 26.6777 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 49 y 11.5559 31.1449 43.3223 -Verdana.ttf 55 8 29.9590 44.5557 50 ‘ -1.2330 11.5036 16.1408 -Verdana.ttf 55 8 29.9590 44.5557 51 \ -0.8292 25.1446 53.0150 -Verdana.ttf 55 8 29.9590 44.5557 52 R 0.9626 34.9855 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 53 < 8.4995 32.8447 32.8447 -Verdana.ttf 55 8 29.9590 44.5557 54 4 0.9838 32.2369 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 55 8 0.1687 29.9590 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 56 0 0.0163 28.9448 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 57 A 1.1356 37.5109 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 58 E 1.1639 27.8774 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 59 B 1.1799 32.0295 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 60 v 11.7938 31.1449 31.6705 -Verdana.ttf 55 8 29.9590 44.5557 61 k -1.0875 29.1741 44.3483 -Verdana.ttf 55 8 29.9590 44.5557 62 J 0.8929 20.1703 43.3815 -Verdana.ttf 55 8 29.9590 44.5557 63 U 1.1973 32.6187 43.3815 -Verdana.ttf 55 8 29.9590 44.5557 64 j 0.9717 16.4964 53.8592 -Verdana.ttf 55 8 29.9590 44.5557 65 ( -0.9153 17.3150 56.0000 -Verdana.ttf 55 8 29.9590 44.5557 66 7 1.2780 29.1741 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 67 § -0.0299 27.0333 54.3965 -Verdana.ttf 55 8 29.9590 44.5557 68 $ -1.7858 28.8186 54.8039 -Verdana.ttf 55 8 29.9590 44.5557 69 € -0.3459 34.6555 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 70 / -0.9639 25.1446 53.0150 -Verdana.ttf 55 8 29.9590 44.5557 71 C 0.0975 35.1627 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 72 * -1.0994 27.3888 26.3188 -Verdana.ttf 55 8 29.9590 44.5557 73 ” -1.1176 23.0072 16.1408 -Verdana.ttf 55 8 29.9590 44.5557 74 ? -0.2220 23.9705 43.3815 -Verdana.ttf 55 8 29.9590 44.5557 75 { -0.7629 26.6962 55.4929 -Verdana.ttf 55 8 29.9590 44.5557 76 } -1.2010 26.6962 55.4929 -Verdana.ttf 55 8 29.9590 44.5557 77 , 35.2429 12.1891 18.6372 -Verdana.ttf 55 8 29.9590 44.5557 78 I 1.1371 16.4442 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 79 ° 0.0547 22.7964 22.7964 -Verdana.ttf 55 8 29.9590 44.5557 80 K 1.0704 33.3333 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 81 H 1.2169 32.7255 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 82 q 10.5887 28.2003 44.4964 -Verdana.ttf 55 8 29.9590 44.5557 83 & 0.1092 41.1629 44.5557 -Verdana.ttf 55 8 29.9590 44.5557 84 ’ -1.3651 11.5036 16.1408 -Verdana.ttf 55 8 29.9590 44.5557 85 [ -0.8808 15.1741 55.4929 -Verdana.ttf 55 8 29.9590 44.5557 86 - 22.0000 17.6705 4.8447 -Verdana.ttf 55 8 29.9590 44.5557 87 Y 1.0977 35.8297 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 88 Q -0.0185 40.5737 54.5262 -Verdana.ttf 55 8 29.9590 44.5557 89 " -1.0085 17.3150 16.3483 -Verdana.ttf 55 8 29.9590 44.5557 90 ! 1.1019 5.4814 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 91 x 11.6240 31.1449 31.6705 -Verdana.ttf 55 8 29.9590 44.5557 92 ) -1.2483 17.3150 56.0000 -Verdana.ttf 55 8 29.9590 44.5557 93 = 16.5539 33.8114 16.4964 -Verdana.ttf 55 8 29.9590 44.5557 94 + 7.4334 34.9855 34.9855 -Verdana.ttf 55 8 29.9590 44.5557 95 X 1.2782 35.9074 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 96 » 10.6688 28.0000 28.0000 -Verdana.ttf 55 8 29.9590 44.5557 97 ' -1.2710 6.1703 16.3483 -Verdana.ttf 55 8 29.9590 44.5557 98 ¢ 1.6502 27.2855 51.6115 -Verdana.ttf 55 8 29.9590 44.5557 99 Z 1.1451 33.2036 42.2074 -Verdana.ttf 55 8 29.9590 44.5557 100 > 8.5837 32.8447 32.8447 -Verdana.ttf 55 8 29.9590 44.5557 101 ® -0.0572 49.3445 49.3445 -Verdana.ttf 55 8 29.9590 44.5557 102 © -0.0476 49.3445 49.3445 -Verdana.ttf 55 8 29.9590 44.5557 103 ] -0.8873 15.1741 55.4929 -Verdana.ttf 55 8 29.9590 44.5557 104 é -4.3341 28.8152 48.8629 -Verdana.ttf 55 8 29.9590 44.5557 105 z 11.8176 25.5036 31.6705 -Verdana.ttf 55 8 29.9590 44.5557 106 _ 48.4346 37.0038 3.3150 -Verdana.ttf 55 8 29.9590 44.5557 107 ¥ 0.9525 31.1332 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 1 t 2.4248 20.1669 41.8484 -Verdana.ttf 56 0 28.9448 44.5557 2 h -0.9196 26.4669 44.3483 -Verdana.ttf 56 0 28.9448 44.5557 3 a 10.5787 26.7969 34.0188 -Verdana.ttf 56 0 28.9448 44.5557 4 n 10.1024 26.4669 32.8447 -Verdana.ttf 56 0 28.9448 44.5557 5 P 1.3548 27.8519 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 6 o 10.4009 29.3745 34.0188 -Verdana.ttf 56 0 28.9448 44.5557 7 e 10.5854 28.8152 34.0188 -Verdana.ttf 56 0 28.9448 44.5557 8 : 11.9064 6.6555 31.6705 -Verdana.ttf 56 0 28.9448 44.5557 9 r 11.8177 19.6817 31.6705 -Verdana.ttf 56 0 28.9448 44.5557 10 l -0.7005 5.3333 44.3483 -Verdana.ttf 56 0 28.9448 44.5557 11 i 1.2187 5.3333 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 12 1 1.3515 22.9445 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 13 | -0.8587 5.2036 55.4929 -Verdana.ttf 56 0 28.9448 44.5557 14 N 1.3514 31.5514 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 15 f -0.7893 20.5259 44.3483 -Verdana.ttf 56 0 28.9448 44.5557 16 g 10.4201 28.2003 44.4964 -Verdana.ttf 56 0 28.9448 44.5557 17 d -1.0632 28.2003 45.5224 -Verdana.ttf 56 0 28.9448 44.5557 18 W 1.1646 52.3887 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 19 s 10.5932 25.0150 34.0188 -Verdana.ttf 56 0 28.9448 44.5557 20 c 10.7305 25.6820 34.0188 -Verdana.ttf 56 0 28.9448 44.5557 21 u 11.8618 26.4669 32.8447 -Verdana.ttf 56 0 28.9448 44.5557 22 3 -0.2028 28.2074 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 23 ~ 15.8956 37.0038 17.5224 -Verdana.ttf 56 0 28.9448 44.5557 24 # 1.2140 36.5186 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 25 O 0.0961 39.3996 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 26 ` -4.5546 11.8592 10.6850 -Verdana.ttf 56 0 28.9448 44.5557 27 @ 0.1197 48.3778 49.6815 -Verdana.ttf 56 0 28.9448 44.5557 28 F 0.5524 26.3478 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 29 S -0.0427 32.5147 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 30 p 10.9108 28.2003 44.4964 -Verdana.ttf 56 0 28.9448 44.5557 31 “ -1.0897 23.0072 16.1408 -Verdana.ttf 56 0 28.9448 44.5557 32 % -0.0708 54.3188 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 33 £ -0.0837 29.1741 43.3815 -Verdana.ttf 56 0 28.9448 44.5557 34 . 35.0189 6.6555 8.1886 -Verdana.ttf 56 0 28.9448 44.5557 35 2 -0.1356 28.3370 43.3815 -Verdana.ttf 56 0 28.9448 44.5557 36 5 0.2301 27.5114 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 37 m 10.7445 46.3480 32.8447 -Verdana.ttf 56 0 28.9448 44.5557 38 V 1.0069 37.5109 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 39 6 -0.0755 29.6593 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 40 w 11.7004 42.9667 31.6705 -Verdana.ttf 56 0 28.9448 44.5557 41 T 1.0555 35.8297 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 42 M 1.0469 37.7217 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 43 G 0.0505 38.0483 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 44 b -0.7566 28.2003 45.5224 -Verdana.ttf 56 0 28.9448 44.5557 45 9 -0.3711 29.6593 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 46 ; 11.6726 12.1891 42.1191 -Verdana.ttf 56 0 28.9448 44.5557 47 D 1.3219 35.8587 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 48 L 1.1328 26.6777 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 49 y 11.6380 31.1449 43.3223 -Verdana.ttf 56 0 28.9448 44.5557 50 ‘ -1.3071 11.5036 16.1408 -Verdana.ttf 56 0 28.9448 44.5557 51 \ -1.2292 25.1446 53.0150 -Verdana.ttf 56 0 28.9448 44.5557 52 R 1.5336 34.9855 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 53 < 8.2189 32.8447 32.8447 -Verdana.ttf 56 0 28.9448 44.5557 54 4 1.0852 32.2369 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 55 8 0.2382 29.9590 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 56 0 0.0443 28.9448 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 57 A 1.5049 37.5109 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 58 E 1.4150 27.8774 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 59 B 1.1385 32.0295 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 60 v 12.0132 31.1449 31.6705 -Verdana.ttf 56 0 28.9448 44.5557 61 k -1.0056 29.1741 44.3483 -Verdana.ttf 56 0 28.9448 44.5557 62 J 0.9924 20.1703 43.3815 -Verdana.ttf 56 0 28.9448 44.5557 63 U 1.1727 32.6187 43.3815 -Verdana.ttf 56 0 28.9448 44.5557 64 j 1.0587 16.4964 53.8592 -Verdana.ttf 56 0 28.9448 44.5557 65 ( -1.0807 17.3150 56.0000 -Verdana.ttf 56 0 28.9448 44.5557 66 7 1.2615 29.1741 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 67 § 0.0570 27.0333 54.3965 -Verdana.ttf 56 0 28.9448 44.5557 68 $ -1.3677 28.8186 54.8039 -Verdana.ttf 56 0 28.9448 44.5557 69 € 0.2629 34.6555 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 70 / -0.9090 25.1446 53.0150 -Verdana.ttf 56 0 28.9448 44.5557 71 C 0.0028 35.1627 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 72 * -0.9937 27.3888 26.3188 -Verdana.ttf 56 0 28.9448 44.5557 73 ” -1.0038 23.0072 16.1408 -Verdana.ttf 56 0 28.9448 44.5557 74 ? -0.1407 23.9705 43.3815 -Verdana.ttf 56 0 28.9448 44.5557 75 { -1.0172 26.6962 55.4929 -Verdana.ttf 56 0 28.9448 44.5557 76 } -0.7350 26.6962 55.4929 -Verdana.ttf 56 0 28.9448 44.5557 77 , 35.3902 12.1891 18.6372 -Verdana.ttf 56 0 28.9448 44.5557 78 I 1.3072 16.4442 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 79 ° -0.0164 22.7964 22.7964 -Verdana.ttf 56 0 28.9448 44.5557 80 K 1.4845 33.3333 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 81 H 1.1610 32.7255 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 82 q 10.5071 28.2003 44.4964 -Verdana.ttf 56 0 28.9448 44.5557 83 & -0.0552 41.1629 44.5557 -Verdana.ttf 56 0 28.9448 44.5557 84 ’ -1.3233 11.5036 16.1408 -Verdana.ttf 56 0 28.9448 44.5557 85 [ -1.0066 15.1741 55.4929 -Verdana.ttf 56 0 28.9448 44.5557 86 - 22.0371 17.6705 4.8447 -Verdana.ttf 56 0 28.9448 44.5557 87 Y 1.1781 35.8297 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 88 Q -0.0235 40.5737 54.5262 -Verdana.ttf 56 0 28.9448 44.5557 89 " -1.2054 17.3150 16.3483 -Verdana.ttf 56 0 28.9448 44.5557 90 ! 1.0277 5.4814 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 91 x 11.8854 31.1449 31.6705 -Verdana.ttf 56 0 28.9448 44.5557 92 ) -0.9374 17.3150 56.0000 -Verdana.ttf 56 0 28.9448 44.5557 93 = 16.5737 33.8114 16.4964 -Verdana.ttf 56 0 28.9448 44.5557 94 + 7.7297 34.9855 34.9855 -Verdana.ttf 56 0 28.9448 44.5557 95 X 1.2307 35.9074 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 96 » 10.8578 28.0000 28.0000 -Verdana.ttf 56 0 28.9448 44.5557 97 ' -0.9115 6.1703 16.3483 -Verdana.ttf 56 0 28.9448 44.5557 98 ¢ 1.6934 27.2855 51.6115 -Verdana.ttf 56 0 28.9448 44.5557 99 Z 1.2909 33.2036 42.2074 -Verdana.ttf 56 0 28.9448 44.5557 100 > 8.1474 32.8447 32.8447 -Verdana.ttf 56 0 28.9448 44.5557 101 ® -0.1966 49.3445 49.3445 -Verdana.ttf 56 0 28.9448 44.5557 102 © 0.3081 49.3445 49.3445 -Verdana.ttf 56 0 28.9448 44.5557 103 ] -0.7043 15.1741 55.4929 -Verdana.ttf 56 0 28.9448 44.5557 104 é -4.4448 28.8152 48.8629 -Verdana.ttf 56 0 28.9448 44.5557 105 z 11.8445 25.5036 31.6705 -Verdana.ttf 56 0 28.9448 44.5557 106 _ 48.5054 37.0038 3.3150 -Verdana.ttf 56 0 28.9448 44.5557 107 ¥ 1.0972 31.1332 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 1 t 1.3630 20.1669 41.8484 -Verdana.ttf 57 A 37.5109 42.2074 2 h -2.2769 26.4669 44.3483 -Verdana.ttf 57 A 37.5109 42.2074 3 a 9.2529 26.7969 34.0188 -Verdana.ttf 57 A 37.5109 42.2074 4 n 9.0904 26.4669 32.8447 -Verdana.ttf 57 A 37.5109 42.2074 5 P 0.0048 27.8519 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 6 o 9.3272 29.3745 34.0188 -Verdana.ttf 57 A 37.5109 42.2074 7 e 9.2192 28.8152 34.0188 -Verdana.ttf 57 A 37.5109 42.2074 8 : 10.9130 6.6555 31.6705 -Verdana.ttf 57 A 37.5109 42.2074 9 r 10.2047 19.6817 31.6705 -Verdana.ttf 57 A 37.5109 42.2074 10 l -2.0280 5.3333 44.3483 -Verdana.ttf 57 A 37.5109 42.2074 11 i -0.4335 5.3333 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 12 1 0.1745 22.9445 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 13 | -2.0516 5.2036 55.4929 -Verdana.ttf 57 A 37.5109 42.2074 14 N -0.4244 31.5514 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 15 f -2.2225 20.5259 44.3483 -Verdana.ttf 57 A 37.5109 42.2074 16 g 9.3998 28.2003 44.4964 -Verdana.ttf 57 A 37.5109 42.2074 17 d -2.0538 28.2003 45.5224 -Verdana.ttf 57 A 37.5109 42.2074 18 W -0.0193 52.3887 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 19 s 9.2326 25.0150 34.0188 -Verdana.ttf 57 A 37.5109 42.2074 20 c 9.3987 25.6820 34.0188 -Verdana.ttf 57 A 37.5109 42.2074 21 u 10.4716 26.4669 32.8447 -Verdana.ttf 57 A 37.5109 42.2074 22 3 -1.1876 28.2074 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 23 ~ 14.9909 37.0038 17.5224 -Verdana.ttf 57 A 37.5109 42.2074 24 # -0.0366 36.5186 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 25 O -1.2577 39.3996 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 26 ` -5.4078 11.8592 10.6850 -Verdana.ttf 57 A 37.5109 42.2074 27 @ -1.3548 48.3778 49.6815 -Verdana.ttf 57 A 37.5109 42.2074 28 F -0.0265 26.3478 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 29 S -1.1735 32.5147 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 30 p 9.1110 28.2003 44.4964 -Verdana.ttf 57 A 37.5109 42.2074 31 “ -2.4411 23.0072 16.1408 -Verdana.ttf 57 A 37.5109 42.2074 32 % -0.9079 54.3188 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 33 £ -1.1607 29.1741 43.3815 -Verdana.ttf 57 A 37.5109 42.2074 34 . 33.7736 6.6555 8.1886 -Verdana.ttf 57 A 37.5109 42.2074 35 2 -0.8786 28.3370 43.3815 -Verdana.ttf 57 A 37.5109 42.2074 36 5 -1.1371 27.5114 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 37 m 9.5401 46.3480 32.8447 -Verdana.ttf 57 A 37.5109 42.2074 38 V -0.0500 37.5109 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 39 6 -1.4803 29.6593 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 40 w 10.6007 42.9667 31.6705 -Verdana.ttf 57 A 37.5109 42.2074 41 T 0.3711 35.8297 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 42 M 0.1926 37.7217 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 43 G -0.9569 38.0483 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 44 b -1.9631 28.2003 45.5224 -Verdana.ttf 57 A 37.5109 42.2074 45 9 -1.1680 29.6593 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 46 ; 10.2692 12.1891 42.1191 -Verdana.ttf 57 A 37.5109 42.2074 47 D 0.0769 35.8587 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 48 L 0.2899 26.6777 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 49 y 10.4066 31.1449 43.3223 -Verdana.ttf 57 A 37.5109 42.2074 50 ‘ -2.4090 11.5036 16.1408 -Verdana.ttf 57 A 37.5109 42.2074 51 \ -2.2634 25.1446 53.0150 -Verdana.ttf 57 A 37.5109 42.2074 52 R 0.0326 34.9855 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 53 < 7.1357 32.8447 32.8447 -Verdana.ttf 57 A 37.5109 42.2074 54 4 0.2168 32.2369 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 55 8 -1.5052 29.9590 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 56 0 -1.0511 28.9448 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 57 A -0.1269 37.5109 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 58 E -0.0903 27.8774 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 59 B 0.1927 32.0295 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 60 v 10.5374 31.1449 31.6705 -Verdana.ttf 57 A 37.5109 42.2074 61 k -2.1575 29.1741 44.3483 -Verdana.ttf 57 A 37.5109 42.2074 62 J 0.0279 20.1703 43.3815 -Verdana.ttf 57 A 37.5109 42.2074 63 U 0.2259 32.6187 43.3815 -Verdana.ttf 57 A 37.5109 42.2074 64 j -0.1849 16.4964 53.8592 -Verdana.ttf 57 A 37.5109 42.2074 65 ( -2.0966 17.3150 56.0000 -Verdana.ttf 57 A 37.5109 42.2074 66 7 -0.1182 29.1741 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 67 § -1.4266 27.0333 54.3965 -Verdana.ttf 57 A 37.5109 42.2074 68 $ -2.8294 28.8186 54.8039 -Verdana.ttf 57 A 37.5109 42.2074 69 € -1.4047 34.6555 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 70 / -2.0742 25.1446 53.0150 -Verdana.ttf 57 A 37.5109 42.2074 71 C -1.3482 35.1627 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 72 * -2.3128 27.3888 26.3188 -Verdana.ttf 57 A 37.5109 42.2074 73 ” -2.0668 23.0072 16.1408 -Verdana.ttf 57 A 37.5109 42.2074 74 ? -1.2246 23.9705 43.3815 -Verdana.ttf 57 A 37.5109 42.2074 75 { -2.3316 26.6962 55.4929 -Verdana.ttf 57 A 37.5109 42.2074 76 } -1.8865 26.6962 55.4929 -Verdana.ttf 57 A 37.5109 42.2074 77 , 33.7798 12.1891 18.6372 -Verdana.ttf 57 A 37.5109 42.2074 78 I 0.0903 16.4442 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 79 ° -1.0881 22.7964 22.7964 -Verdana.ttf 57 A 37.5109 42.2074 80 K -0.2932 33.3333 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 81 H 0.1897 32.7255 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 82 q 9.5064 28.2003 44.4964 -Verdana.ttf 57 A 37.5109 42.2074 83 & -1.3261 41.1629 44.5557 -Verdana.ttf 57 A 37.5109 42.2074 84 ’ -2.2577 11.5036 16.1408 -Verdana.ttf 57 A 37.5109 42.2074 85 [ -2.1057 15.1741 55.4929 -Verdana.ttf 57 A 37.5109 42.2074 86 - 21.0023 17.6705 4.8447 -Verdana.ttf 57 A 37.5109 42.2074 87 Y -0.1288 35.8297 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 88 Q -0.9684 40.5737 54.5262 -Verdana.ttf 57 A 37.5109 42.2074 89 " -2.0948 17.3150 16.3483 -Verdana.ttf 57 A 37.5109 42.2074 90 ! 0.1572 5.4814 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 91 x 10.3595 31.1449 31.6705 -Verdana.ttf 57 A 37.5109 42.2074 92 ) -2.1974 17.3150 56.0000 -Verdana.ttf 57 A 37.5109 42.2074 93 = 15.4098 33.8114 16.4964 -Verdana.ttf 57 A 37.5109 42.2074 94 + 6.1260 34.9855 34.9855 -Verdana.ttf 57 A 37.5109 42.2074 95 X -0.4349 35.9074 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 96 » 9.6485 28.0000 28.0000 -Verdana.ttf 57 A 37.5109 42.2074 97 ' -2.1357 6.1703 16.3483 -Verdana.ttf 57 A 37.5109 42.2074 98 ¢ 0.5948 27.2855 51.6115 -Verdana.ttf 57 A 37.5109 42.2074 99 Z 0.0903 33.2036 42.2074 -Verdana.ttf 57 A 37.5109 42.2074 100 > 6.9713 32.8447 32.8447 -Verdana.ttf 57 A 37.5109 42.2074 101 ® -1.0525 49.3445 49.3445 -Verdana.ttf 57 A 37.5109 42.2074 102 © -1.4380 49.3445 49.3445 -Verdana.ttf 57 A 37.5109 42.2074 103 ] -2.0139 15.1741 55.4929 -Verdana.ttf 57 A 37.5109 42.2074 104 é -5.3181 28.8152 48.8629 -Verdana.ttf 57 A 37.5109 42.2074 105 z 10.6147 25.5036 31.6705 -Verdana.ttf 57 A 37.5109 42.2074 106 _ 47.4087 37.0038 3.3150 -Verdana.ttf 57 A 37.5109 42.2074 107 ¥ 0.0744 31.1332 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 1 t 1.5649 20.1669 41.8484 -Verdana.ttf 58 E 27.8774 42.2074 2 h -2.1674 26.4669 44.3483 -Verdana.ttf 58 E 27.8774 42.2074 3 a 8.8760 26.7969 34.0188 -Verdana.ttf 58 E 27.8774 42.2074 4 n 9.3636 26.4669 32.8447 -Verdana.ttf 58 E 27.8774 42.2074 5 P 0.0755 27.8519 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 6 o 9.3272 29.3745 34.0188 -Verdana.ttf 58 E 27.8774 42.2074 7 e 9.2358 28.8152 34.0188 -Verdana.ttf 58 E 27.8774 42.2074 8 : 10.4604 6.6555 31.6705 -Verdana.ttf 58 E 27.8774 42.2074 9 r 10.6512 19.6817 31.6705 -Verdana.ttf 58 E 27.8774 42.2074 10 l -2.2013 5.3333 44.3483 -Verdana.ttf 58 E 27.8774 42.2074 11 i -0.0620 5.3333 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 12 1 -0.1774 22.9445 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 13 | -2.2398 5.2036 55.4929 -Verdana.ttf 58 E 27.8774 42.2074 14 N 0.0943 31.5514 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 15 f -2.0705 20.5259 44.3483 -Verdana.ttf 58 E 27.8774 42.2074 16 g 9.1012 28.2003 44.4964 -Verdana.ttf 58 E 27.8774 42.2074 17 d -2.4027 28.2003 45.5224 -Verdana.ttf 58 E 27.8774 42.2074 18 W -0.1356 52.3887 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 19 s 9.1143 25.0150 34.0188 -Verdana.ttf 58 E 27.8774 42.2074 20 c 9.6670 25.6820 34.0188 -Verdana.ttf 58 E 27.8774 42.2074 21 u 10.8055 26.4669 32.8447 -Verdana.ttf 58 E 27.8774 42.2074 22 3 -1.1504 28.2074 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 23 ~ 14.7617 37.0038 17.5224 -Verdana.ttf 58 E 27.8774 42.2074 24 # -0.0946 36.5186 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 25 O -1.1612 39.3996 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 26 ` -5.8389 11.8592 10.6850 -Verdana.ttf 58 E 27.8774 42.2074 27 @ -1.1342 48.3778 49.6815 -Verdana.ttf 58 E 27.8774 42.2074 28 F -0.0028 26.3478 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 29 S -1.3543 32.5147 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 30 p 9.1676 28.2003 44.4964 -Verdana.ttf 58 E 27.8774 42.2074 31 “ -1.8394 23.0072 16.1408 -Verdana.ttf 58 E 27.8774 42.2074 32 % -1.1847 54.3188 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 33 £ -1.0758 29.1741 43.3815 -Verdana.ttf 58 E 27.8774 42.2074 34 . 34.4247 6.6555 8.1886 -Verdana.ttf 58 E 27.8774 42.2074 35 2 -1.2220 28.3370 43.3815 -Verdana.ttf 58 E 27.8774 42.2074 36 5 -0.9996 27.5114 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 37 m 9.3628 46.3480 32.8447 -Verdana.ttf 58 E 27.8774 42.2074 38 V 0.0145 37.5109 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 39 6 -1.1774 29.6593 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 40 w 10.5536 42.9667 31.6705 -Verdana.ttf 58 E 27.8774 42.2074 41 T -0.2008 35.8297 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 42 M 0.0856 37.7217 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 43 G -1.2611 38.0483 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 44 b -2.1172 28.2003 45.5224 -Verdana.ttf 58 E 27.8774 42.2074 45 9 -1.1241 29.6593 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 46 ; 10.6138 12.1891 42.1191 -Verdana.ttf 58 E 27.8774 42.2074 47 D 0.1948 35.8587 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 48 L 0.1701 26.6777 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 49 y 10.4745 31.1449 43.3223 -Verdana.ttf 58 E 27.8774 42.2074 50 ‘ -2.1894 11.5036 16.1408 -Verdana.ttf 58 E 27.8774 42.2074 51 \ -2.1812 25.1446 53.0150 -Verdana.ttf 58 E 27.8774 42.2074 52 R 0.0457 34.9855 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 53 < 6.6068 32.8447 32.8447 -Verdana.ttf 58 E 27.8774 42.2074 54 4 0.0884 32.2369 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 55 8 -0.9434 29.9590 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 56 0 -1.4249 28.9448 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 57 A -0.0838 37.5109 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 58 E 0.1126 27.8774 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 59 B -0.2010 32.0295 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 60 v 10.5275 31.1449 31.6705 -Verdana.ttf 58 E 27.8774 42.2074 61 k -2.0890 29.1741 44.3483 -Verdana.ttf 58 E 27.8774 42.2074 62 J -0.1649 20.1703 43.3815 -Verdana.ttf 58 E 27.8774 42.2074 63 U 0.0943 32.6187 43.3815 -Verdana.ttf 58 E 27.8774 42.2074 64 j 0.1004 16.4964 53.8592 -Verdana.ttf 58 E 27.8774 42.2074 65 ( -2.2649 17.3150 56.0000 -Verdana.ttf 58 E 27.8774 42.2074 66 7 -0.0432 29.1741 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 67 § -1.4567 27.0333 54.3965 -Verdana.ttf 58 E 27.8774 42.2074 68 $ -2.5781 28.8186 54.8039 -Verdana.ttf 58 E 27.8774 42.2074 69 € -0.8633 34.6555 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 70 / -1.8583 25.1446 53.0150 -Verdana.ttf 58 E 27.8774 42.2074 71 C -1.3159 35.1627 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 72 * -2.2917 27.3888 26.3188 -Verdana.ttf 58 E 27.8774 42.2074 73 ” -2.0976 23.0072 16.1408 -Verdana.ttf 58 E 27.8774 42.2074 74 ? -1.2246 23.9705 43.3815 -Verdana.ttf 58 E 27.8774 42.2074 75 { -2.1587 26.6962 55.4929 -Verdana.ttf 58 E 27.8774 42.2074 76 } -2.3374 26.6962 55.4929 -Verdana.ttf 58 E 27.8774 42.2074 77 , 34.2806 12.1891 18.6372 -Verdana.ttf 58 E 27.8774 42.2074 78 I 0.1236 16.4442 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 79 ° -1.2982 22.7964 22.7964 -Verdana.ttf 58 E 27.8774 42.2074 80 K -0.0192 33.3333 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 81 H 0.0514 32.7255 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 82 q 9.1561 28.2003 44.4964 -Verdana.ttf 58 E 27.8774 42.2074 83 & -1.1708 41.1629 44.5557 -Verdana.ttf 58 E 27.8774 42.2074 84 ’ -2.4024 11.5036 16.1408 -Verdana.ttf 58 E 27.8774 42.2074 85 [ -2.1999 15.1741 55.4929 -Verdana.ttf 58 E 27.8774 42.2074 86 - 21.1528 17.6705 4.8447 -Verdana.ttf 58 E 27.8774 42.2074 87 Y -0.1212 35.8297 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 88 Q -1.2876 40.5737 54.5262 -Verdana.ttf 58 E 27.8774 42.2074 89 " -2.1470 17.3150 16.3483 -Verdana.ttf 58 E 27.8774 42.2074 90 ! 0.0282 5.4814 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 91 x 10.6833 31.1449 31.6705 -Verdana.ttf 58 E 27.8774 42.2074 92 ) -2.0034 17.3150 56.0000 -Verdana.ttf 58 E 27.8774 42.2074 93 = 15.4142 33.8114 16.4964 -Verdana.ttf 58 E 27.8774 42.2074 94 + 6.3183 34.9855 34.9855 -Verdana.ttf 58 E 27.8774 42.2074 95 X -0.2085 35.9074 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 96 » 9.8245 28.0000 28.0000 -Verdana.ttf 58 E 27.8774 42.2074 97 ' -2.1111 6.1703 16.3483 -Verdana.ttf 58 E 27.8774 42.2074 98 ¢ 0.6241 27.2855 51.6115 -Verdana.ttf 58 E 27.8774 42.2074 99 Z -0.0500 33.2036 42.2074 -Verdana.ttf 58 E 27.8774 42.2074 100 > 6.8533 32.8447 32.8447 -Verdana.ttf 58 E 27.8774 42.2074 101 ® -1.3645 49.3445 49.3445 -Verdana.ttf 58 E 27.8774 42.2074 102 © -1.4331 49.3445 49.3445 -Verdana.ttf 58 E 27.8774 42.2074 103 ] -1.9246 15.1741 55.4929 -Verdana.ttf 58 E 27.8774 42.2074 104 é -5.6160 28.8152 48.8629 -Verdana.ttf 58 E 27.8774 42.2074 105 z 10.5734 25.5036 31.6705 -Verdana.ttf 58 E 27.8774 42.2074 106 _ 47.3313 37.0038 3.3150 -Verdana.ttf 58 E 27.8774 42.2074 107 ¥ -0.0500 31.1332 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 1 t 1.7442 20.1669 41.8484 -Verdana.ttf 59 B 32.0295 42.2074 2 h -1.9105 26.4669 44.3483 -Verdana.ttf 59 B 32.0295 42.2074 3 a 9.3632 26.7969 34.0188 -Verdana.ttf 59 B 32.0295 42.2074 4 n 9.0755 26.4669 32.8447 -Verdana.ttf 59 B 32.0295 42.2074 5 P 0.2339 27.8519 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 6 o 9.2591 29.3745 34.0188 -Verdana.ttf 59 B 32.0295 42.2074 7 e 9.2124 28.8152 34.0188 -Verdana.ttf 59 B 32.0295 42.2074 8 : 10.8262 6.6555 31.6705 -Verdana.ttf 59 B 32.0295 42.2074 9 r 10.4479 19.6817 31.6705 -Verdana.ttf 59 B 32.0295 42.2074 10 l -2.1528 5.3333 44.3483 -Verdana.ttf 59 B 32.0295 42.2074 11 i 0.4099 5.3333 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 12 1 -0.0265 22.9445 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 13 | -2.4033 5.2036 55.4929 -Verdana.ttf 59 B 32.0295 42.2074 14 N -0.1422 31.5514 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 15 f -2.3639 20.5259 44.3483 -Verdana.ttf 59 B 32.0295 42.2074 16 g 9.5625 28.2003 44.4964 -Verdana.ttf 59 B 32.0295 42.2074 17 d -2.2979 28.2003 45.5224 -Verdana.ttf 59 B 32.0295 42.2074 18 W -0.0924 52.3887 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 19 s 9.1654 25.0150 34.0188 -Verdana.ttf 59 B 32.0295 42.2074 20 c 9.2373 25.6820 34.0188 -Verdana.ttf 59 B 32.0295 42.2074 21 u 10.4768 26.4669 32.8447 -Verdana.ttf 59 B 32.0295 42.2074 22 3 -0.9954 28.2074 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 23 ~ 14.8365 37.0038 17.5224 -Verdana.ttf 59 B 32.0295 42.2074 24 # -0.0774 36.5186 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 25 O -1.3066 39.3996 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 26 ` -5.3573 11.8592 10.6850 -Verdana.ttf 59 B 32.0295 42.2074 27 @ -1.1683 48.3778 49.6815 -Verdana.ttf 59 B 32.0295 42.2074 28 F 0.0000 26.3478 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 29 S -1.2268 32.5147 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 30 p 9.1031 28.2003 44.4964 -Verdana.ttf 59 B 32.0295 42.2074 31 “ -2.1626 23.0072 16.1408 -Verdana.ttf 59 B 32.0295 42.2074 32 % -1.2377 54.3188 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 33 £ -1.1270 29.1741 43.3815 -Verdana.ttf 59 B 32.0295 42.2074 34 . 34.1755 6.6555 8.1886 -Verdana.ttf 59 B 32.0295 42.2074 35 2 -1.1255 28.3370 43.3815 -Verdana.ttf 59 B 32.0295 42.2074 36 5 -1.0679 27.5114 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 37 m 9.2441 46.3480 32.8447 -Verdana.ttf 59 B 32.0295 42.2074 38 V 0.1980 37.5109 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 39 6 -1.0236 29.6593 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 40 w 10.1716 42.9667 31.6705 -Verdana.ttf 59 B 32.0295 42.2074 41 T 0.1941 35.8297 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 42 M 0.0014 37.7217 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 43 G -1.3946 38.0483 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 44 b -1.8823 28.2003 45.5224 -Verdana.ttf 59 B 32.0295 42.2074 45 9 -0.9862 29.6593 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 46 ; 10.4128 12.1891 42.1191 -Verdana.ttf 59 B 32.0295 42.2074 47 D 0.1126 35.8587 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 48 L 0.3214 26.6777 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 49 y 10.2826 31.1449 43.3223 -Verdana.ttf 59 B 32.0295 42.2074 50 ‘ -1.6916 11.5036 16.1408 -Verdana.ttf 59 B 32.0295 42.2074 51 \ -2.1796 25.1446 53.0150 -Verdana.ttf 59 B 32.0295 42.2074 52 R 0.0181 34.9855 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 53 < 6.9775 32.8447 32.8447 -Verdana.ttf 59 B 32.0295 42.2074 54 4 0.0667 32.2369 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 55 8 -1.0080 29.9590 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 56 0 -1.2573 28.9448 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 57 A 0.2287 37.5109 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 58 E -0.0410 27.8774 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 59 B 0.1534 32.0295 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 60 v 10.4735 31.1449 31.6705 -Verdana.ttf 59 B 32.0295 42.2074 61 k -1.8394 29.1741 44.3483 -Verdana.ttf 59 B 32.0295 42.2074 62 J 0.0377 20.1703 43.3815 -Verdana.ttf 59 B 32.0295 42.2074 63 U -0.1136 32.6187 43.3815 -Verdana.ttf 59 B 32.0295 42.2074 64 j -0.0476 16.4964 53.8592 -Verdana.ttf 59 B 32.0295 42.2074 65 ( -2.4441 17.3150 56.0000 -Verdana.ttf 59 B 32.0295 42.2074 66 7 -0.1302 29.1741 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 67 § -1.2597 27.0333 54.3965 -Verdana.ttf 59 B 32.0295 42.2074 68 $ -2.5800 28.8186 54.8039 -Verdana.ttf 59 B 32.0295 42.2074 69 € -1.2689 34.6555 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 70 / -2.0254 25.1446 53.0150 -Verdana.ttf 59 B 32.0295 42.2074 71 C -1.3601 35.1627 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 72 * -2.5017 27.3888 26.3188 -Verdana.ttf 59 B 32.0295 42.2074 73 ” -1.8490 23.0072 16.1408 -Verdana.ttf 59 B 32.0295 42.2074 74 ? -1.1704 23.9705 43.3815 -Verdana.ttf 59 B 32.0295 42.2074 75 { -2.3831 26.6962 55.4929 -Verdana.ttf 59 B 32.0295 42.2074 76 } -1.6443 26.6962 55.4929 -Verdana.ttf 59 B 32.0295 42.2074 77 , 34.0193 12.1891 18.6372 -Verdana.ttf 59 B 32.0295 42.2074 78 I -0.0159 16.4442 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 79 ° -1.2924 22.7964 22.7964 -Verdana.ttf 59 B 32.0295 42.2074 80 K -0.2942 33.3333 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 81 H 0.1774 32.7255 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 82 q 9.4276 28.2003 44.4964 -Verdana.ttf 59 B 32.0295 42.2074 83 & -1.3381 41.1629 44.5557 -Verdana.ttf 59 B 32.0295 42.2074 84 ’ -2.1793 11.5036 16.1408 -Verdana.ttf 59 B 32.0295 42.2074 85 [ -1.9236 15.1741 55.4929 -Verdana.ttf 59 B 32.0295 42.2074 86 - 21.0436 17.6705 4.8447 -Verdana.ttf 59 B 32.0295 42.2074 87 Y -0.0537 35.8297 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 88 Q -1.5649 40.5737 54.5262 -Verdana.ttf 59 B 32.0295 42.2074 89 " -2.3134 17.3150 16.3483 -Verdana.ttf 59 B 32.0295 42.2074 90 ! -0.0499 5.4814 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 91 x 10.2673 31.1449 31.6705 -Verdana.ttf 59 B 32.0295 42.2074 92 ) -2.1375 17.3150 56.0000 -Verdana.ttf 59 B 32.0295 42.2074 93 = 15.4686 33.8114 16.4964 -Verdana.ttf 59 B 32.0295 42.2074 94 + 6.2605 34.9855 34.9855 -Verdana.ttf 59 B 32.0295 42.2074 95 X 0.2186 35.9074 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 96 » 9.3605 28.0000 28.0000 -Verdana.ttf 59 B 32.0295 42.2074 97 ' -2.1975 6.1703 16.3483 -Verdana.ttf 59 B 32.0295 42.2074 98 ¢ 0.5073 27.2855 51.6115 -Verdana.ttf 59 B 32.0295 42.2074 99 Z 0.0870 33.2036 42.2074 -Verdana.ttf 59 B 32.0295 42.2074 100 > 7.1552 32.8447 32.8447 -Verdana.ttf 59 B 32.0295 42.2074 101 ® -1.3145 49.3445 49.3445 -Verdana.ttf 59 B 32.0295 42.2074 102 © -0.9151 49.3445 49.3445 -Verdana.ttf 59 B 32.0295 42.2074 103 ] -1.9649 15.1741 55.4929 -Verdana.ttf 59 B 32.0295 42.2074 104 é -5.6972 28.8152 48.8629 -Verdana.ttf 59 B 32.0295 42.2074 105 z 10.5431 25.5036 31.6705 -Verdana.ttf 59 B 32.0295 42.2074 106 _ 47.4303 37.0038 3.3150 -Verdana.ttf 59 B 32.0295 42.2074 107 ¥ -0.2571 31.1332 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 1 t -8.9269 20.1669 41.8484 -Verdana.ttf 60 v 31.1449 31.6705 2 h -12.8152 26.4669 44.3483 -Verdana.ttf 60 v 31.1449 31.6705 3 a -0.9804 26.7969 34.0188 -Verdana.ttf 60 v 31.1449 31.6705 4 n -0.9636 26.4669 32.8447 -Verdana.ttf 60 v 31.1449 31.6705 5 P -10.6103 27.8519 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 6 o -1.3660 29.3745 34.0188 -Verdana.ttf 60 v 31.1449 31.6705 7 e -0.9252 28.8152 34.0188 -Verdana.ttf 60 v 31.1449 31.6705 8 : 0.2587 6.6555 31.6705 -Verdana.ttf 60 v 31.1449 31.6705 9 r 0.2696 19.6817 31.6705 -Verdana.ttf 60 v 31.1449 31.6705 10 l -12.8746 5.3333 44.3483 -Verdana.ttf 60 v 31.1449 31.6705 11 i -10.5441 5.3333 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 12 1 -10.4003 22.9445 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 13 | -12.8938 5.2036 55.4929 -Verdana.ttf 60 v 31.1449 31.6705 14 N -10.7747 31.5514 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 15 f -12.8503 20.5259 44.3483 -Verdana.ttf 60 v 31.1449 31.6705 16 g -1.0233 28.2003 44.4964 -Verdana.ttf 60 v 31.1449 31.6705 17 d -12.5406 28.2003 45.5224 -Verdana.ttf 60 v 31.1449 31.6705 18 W -10.7661 52.3887 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 19 s -1.2246 25.0150 34.0188 -Verdana.ttf 60 v 31.1449 31.6705 20 c -0.9217 25.6820 34.0188 -Verdana.ttf 60 v 31.1449 31.6705 21 u 0.1542 26.4669 32.8447 -Verdana.ttf 60 v 31.1449 31.6705 22 3 -11.5141 28.2074 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 23 ~ 4.0317 37.0038 17.5224 -Verdana.ttf 60 v 31.1449 31.6705 24 # -10.8400 36.5186 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 25 O -11.7638 39.3996 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 26 ` -15.9770 11.8592 10.6850 -Verdana.ttf 60 v 31.1449 31.6705 27 @ -11.6235 48.3778 49.6815 -Verdana.ttf 60 v 31.1449 31.6705 28 F -10.5475 26.3478 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 29 S -11.8466 32.5147 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 30 p -1.2040 28.2003 44.4964 -Verdana.ttf 60 v 31.1449 31.6705 31 “ -12.6023 23.0072 16.1408 -Verdana.ttf 60 v 31.1449 31.6705 32 % -11.5499 54.3188 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 33 £ -12.0375 29.1741 43.3815 -Verdana.ttf 60 v 31.1449 31.6705 34 . 23.2304 6.6555 8.1886 -Verdana.ttf 60 v 31.1449 31.6705 35 2 -12.3214 28.3370 43.3815 -Verdana.ttf 60 v 31.1449 31.6705 36 5 -11.4168 27.5114 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 37 m -1.4432 46.3480 32.8447 -Verdana.ttf 60 v 31.1449 31.6705 38 V -10.4633 37.5109 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 39 6 -11.8311 29.6593 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 40 w -0.3080 42.9667 31.6705 -Verdana.ttf 60 v 31.1449 31.6705 41 T -10.4384 35.8297 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 42 M -10.5227 37.7217 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 43 G -11.5351 38.0483 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 44 b -12.6777 28.2003 45.5224 -Verdana.ttf 60 v 31.1449 31.6705 45 9 -11.6721 29.6593 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 46 ; -0.1332 12.1891 42.1191 -Verdana.ttf 60 v 31.1449 31.6705 47 D -10.1290 35.8587 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 48 L -10.6331 26.6777 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 49 y 0.0173 31.1449 43.3223 -Verdana.ttf 60 v 31.1449 31.6705 50 ‘ -12.7209 11.5036 16.1408 -Verdana.ttf 60 v 31.1449 31.6705 51 \ -12.6470 25.1446 53.0150 -Verdana.ttf 60 v 31.1449 31.6705 52 R -10.5774 34.9855 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 53 < -3.5580 32.8447 32.8447 -Verdana.ttf 60 v 31.1449 31.6705 54 4 -10.4531 32.2369 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 55 8 -11.6801 29.9590 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 56 0 -11.9051 28.9448 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 57 A -10.3381 37.5109 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 58 E -10.5782 27.8774 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 59 B -10.6272 32.0295 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 60 v -0.2861 31.1449 31.6705 -Verdana.ttf 60 v 31.1449 31.6705 61 k -12.6378 29.1741 44.3483 -Verdana.ttf 60 v 31.1449 31.6705 62 J -10.4524 20.1703 43.3815 -Verdana.ttf 60 v 31.1449 31.6705 63 U -10.5935 32.6187 43.3815 -Verdana.ttf 60 v 31.1449 31.6705 64 j -10.6522 16.4964 53.8592 -Verdana.ttf 60 v 31.1449 31.6705 65 ( -12.5428 17.3150 56.0000 -Verdana.ttf 60 v 31.1449 31.6705 66 7 -10.7940 29.1741 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 67 § -11.7839 27.0333 54.3965 -Verdana.ttf 60 v 31.1449 31.6705 68 $ -13.5906 28.8186 54.8039 -Verdana.ttf 60 v 31.1449 31.6705 69 € -11.7157 34.6555 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 70 / -12.6306 25.1446 53.0150 -Verdana.ttf 60 v 31.1449 31.6705 71 C -11.3410 35.1627 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 72 * -12.2899 27.3888 26.3188 -Verdana.ttf 60 v 31.1449 31.6705 73 ” -12.8403 23.0072 16.1408 -Verdana.ttf 60 v 31.1449 31.6705 74 ? -11.5660 23.9705 43.3815 -Verdana.ttf 60 v 31.1449 31.6705 75 { -12.7638 26.6962 55.4929 -Verdana.ttf 60 v 31.1449 31.6705 76 } -12.6610 26.6962 55.4929 -Verdana.ttf 60 v 31.1449 31.6705 77 , 23.5635 12.1891 18.6372 -Verdana.ttf 60 v 31.1449 31.6705 78 I -10.9319 16.4442 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 79 ° -11.7966 22.7964 22.7964 -Verdana.ttf 60 v 31.1449 31.6705 80 K -10.7323 33.3333 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 81 H -10.4273 32.7255 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 82 q -1.2967 28.2003 44.4964 -Verdana.ttf 60 v 31.1449 31.6705 83 & -12.0291 41.1629 44.5557 -Verdana.ttf 60 v 31.1449 31.6705 84 ’ -12.5508 11.5036 16.1408 -Verdana.ttf 60 v 31.1449 31.6705 85 [ -12.5863 15.1741 55.4929 -Verdana.ttf 60 v 31.1449 31.6705 86 - 10.4929 17.6705 4.8447 -Verdana.ttf 60 v 31.1449 31.6705 87 Y -10.7508 35.8297 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 88 Q -11.6711 40.5737 54.5262 -Verdana.ttf 60 v 31.1449 31.6705 89 " -12.5932 17.3150 16.3483 -Verdana.ttf 60 v 31.1449 31.6705 90 ! -10.5336 5.4814 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 91 x -0.0207 31.1449 31.6705 -Verdana.ttf 60 v 31.1449 31.6705 92 ) -12.6041 17.3150 56.0000 -Verdana.ttf 60 v 31.1449 31.6705 93 = 4.7344 33.8114 16.4964 -Verdana.ttf 60 v 31.1449 31.6705 94 + -3.9447 34.9855 34.9855 -Verdana.ttf 60 v 31.1449 31.6705 95 X -10.4785 35.9074 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 96 » -1.2686 28.0000 28.0000 -Verdana.ttf 60 v 31.1449 31.6705 97 ' -12.9338 6.1703 16.3483 -Verdana.ttf 60 v 31.1449 31.6705 98 ¢ -10.0162 27.2855 51.6115 -Verdana.ttf 60 v 31.1449 31.6705 99 Z -10.3734 33.2036 42.2074 -Verdana.ttf 60 v 31.1449 31.6705 100 > -3.1592 32.8447 32.8447 -Verdana.ttf 60 v 31.1449 31.6705 101 ® -11.6720 49.3445 49.3445 -Verdana.ttf 60 v 31.1449 31.6705 102 © -11.8648 49.3445 49.3445 -Verdana.ttf 60 v 31.1449 31.6705 103 ] -12.7470 15.1741 55.4929 -Verdana.ttf 60 v 31.1449 31.6705 104 é -15.8747 28.8152 48.8629 -Verdana.ttf 60 v 31.1449 31.6705 105 z 0.0816 25.5036 31.6705 -Verdana.ttf 60 v 31.1449 31.6705 106 _ 36.7573 37.0038 3.3150 -Verdana.ttf 60 v 31.1449 31.6705 107 ¥ -10.7022 31.1332 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 1 t 3.9686 20.1669 41.8484 -Verdana.ttf 61 k 29.1741 44.3483 2 h -0.0438 26.4669 44.3483 -Verdana.ttf 61 k 29.1741 44.3483 3 a 11.5925 26.7969 34.0188 -Verdana.ttf 61 k 29.1741 44.3483 4 n 11.4670 26.4669 32.8447 -Verdana.ttf 61 k 29.1741 44.3483 5 P 2.0653 27.8519 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 6 o 11.4434 29.3745 34.0188 -Verdana.ttf 61 k 29.1741 44.3483 7 e 11.5113 28.8152 34.0188 -Verdana.ttf 61 k 29.1741 44.3483 8 : 12.3879 6.6555 31.6705 -Verdana.ttf 61 k 29.1741 44.3483 9 r 12.9041 19.6817 31.6705 -Verdana.ttf 61 k 29.1741 44.3483 10 l -0.1437 5.3333 44.3483 -Verdana.ttf 61 k 29.1741 44.3483 11 i 2.1437 5.3333 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 12 1 2.2087 22.9445 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 13 | -0.1052 5.2036 55.4929 -Verdana.ttf 61 k 29.1741 44.3483 14 N 2.0937 31.5514 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 15 f 0.0033 20.5259 44.3483 -Verdana.ttf 61 k 29.1741 44.3483 16 g 11.5602 28.2003 44.4964 -Verdana.ttf 61 k 29.1741 44.3483 17 d 0.2440 28.2003 45.5224 -Verdana.ttf 61 k 29.1741 44.3483 18 W 2.3330 52.3887 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 19 s 11.5482 25.0150 34.0188 -Verdana.ttf 61 k 29.1741 44.3483 20 c 10.9211 25.6820 34.0188 -Verdana.ttf 61 k 29.1741 44.3483 21 u 12.6154 26.4669 32.8447 -Verdana.ttf 61 k 29.1741 44.3483 22 3 0.8043 28.2074 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 23 ~ 16.7741 37.0038 17.5224 -Verdana.ttf 61 k 29.1741 44.3483 24 # 1.8899 36.5186 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 25 O 0.7556 39.3996 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 26 ` -3.4304 11.8592 10.6850 -Verdana.ttf 61 k 29.1741 44.3483 27 @ 0.9264 48.3778 49.6815 -Verdana.ttf 61 k 29.1741 44.3483 28 F 1.9798 26.3478 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 29 S 1.1488 32.5147 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 30 p 11.6578 28.2003 44.4964 -Verdana.ttf 61 k 29.1741 44.3483 31 “ 0.2702 23.0072 16.1408 -Verdana.ttf 61 k 29.1741 44.3483 32 % 0.8663 54.3188 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 33 £ 1.0085 29.1741 43.3815 -Verdana.ttf 61 k 29.1741 44.3483 34 . 36.4437 6.6555 8.1886 -Verdana.ttf 61 k 29.1741 44.3483 35 2 1.0791 28.3370 43.3815 -Verdana.ttf 61 k 29.1741 44.3483 36 5 1.1561 27.5114 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 37 m 11.8220 46.3480 32.8447 -Verdana.ttf 61 k 29.1741 44.3483 38 V 2.1284 37.5109 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 39 6 0.9768 29.6593 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 40 w 12.3683 42.9667 31.6705 -Verdana.ttf 61 k 29.1741 44.3483 41 T 2.0951 35.8297 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 42 M 2.0240 37.7217 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 43 G 1.1364 38.0483 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 44 b 0.2619 28.2003 45.5224 -Verdana.ttf 61 k 29.1741 44.3483 45 9 0.8159 29.6593 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 46 ; 12.6306 12.1891 42.1191 -Verdana.ttf 61 k 29.1741 44.3483 47 D 2.1575 35.8587 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 48 L 1.9759 26.6777 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 49 y 12.3923 31.1449 43.3223 -Verdana.ttf 61 k 29.1741 44.3483 50 ‘ -0.0755 11.5036 16.1408 -Verdana.ttf 61 k 29.1741 44.3483 51 \ -0.0268 25.1446 53.0150 -Verdana.ttf 61 k 29.1741 44.3483 52 R 2.2279 34.9855 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 53 < 9.3388 32.8447 32.8447 -Verdana.ttf 61 k 29.1741 44.3483 54 4 2.1375 32.2369 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 55 8 1.0320 29.9590 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 56 0 1.0571 28.9448 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 57 A 2.1082 37.5109 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 58 E 2.1847 27.8774 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 59 B 2.3172 32.0295 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 60 v 12.5537 31.1449 31.6705 -Verdana.ttf 61 k 29.1741 44.3483 61 k 0.1853 29.1741 44.3483 -Verdana.ttf 61 k 29.1741 44.3483 62 J 2.0505 20.1703 43.3815 -Verdana.ttf 61 k 29.1741 44.3483 63 U 2.2206 32.6187 43.3815 -Verdana.ttf 61 k 29.1741 44.3483 64 j 2.2736 16.4964 53.8592 -Verdana.ttf 61 k 29.1741 44.3483 65 ( 0.1146 17.3150 56.0000 -Verdana.ttf 61 k 29.1741 44.3483 66 7 2.2196 29.1741 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 67 § 1.2007 27.0333 54.3965 -Verdana.ttf 61 k 29.1741 44.3483 68 $ -0.4751 28.8186 54.8039 -Verdana.ttf 61 k 29.1741 44.3483 69 € 1.1959 34.6555 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 70 / 0.3123 25.1446 53.0150 -Verdana.ttf 61 k 29.1741 44.3483 71 C 0.8250 35.1627 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 72 * 0.0765 27.3888 26.3188 -Verdana.ttf 61 k 29.1741 44.3483 73 ” 0.2306 23.0072 16.1408 -Verdana.ttf 61 k 29.1741 44.3483 74 ? 0.9283 23.9705 43.3815 -Verdana.ttf 61 k 29.1741 44.3483 75 { -0.0532 26.6962 55.4929 -Verdana.ttf 61 k 29.1741 44.3483 76 } -0.0965 26.6962 55.4929 -Verdana.ttf 61 k 29.1741 44.3483 77 , 36.1563 12.1891 18.6372 -Verdana.ttf 61 k 29.1741 44.3483 78 I 2.3580 16.4442 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 79 ° 1.0080 22.7964 22.7964 -Verdana.ttf 61 k 29.1741 44.3483 80 K 2.1779 33.3333 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 81 H 2.1702 32.7255 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 82 q 11.8131 28.2003 44.4964 -Verdana.ttf 61 k 29.1741 44.3483 83 & 0.9923 41.1629 44.5557 -Verdana.ttf 61 k 29.1741 44.3483 84 ’ -0.0837 11.5036 16.1408 -Verdana.ttf 61 k 29.1741 44.3483 85 [ 0.2111 15.1741 55.4929 -Verdana.ttf 61 k 29.1741 44.3483 86 - 23.0278 17.6705 4.8447 -Verdana.ttf 61 k 29.1741 44.3483 87 Y 2.1662 35.8297 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 88 Q 0.6552 40.5737 54.5262 -Verdana.ttf 61 k 29.1741 44.3483 89 " 0.0755 17.3150 16.3483 -Verdana.ttf 61 k 29.1741 44.3483 90 ! 2.1706 5.4814 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 91 x 12.7723 31.1449 31.6705 -Verdana.ttf 61 k 29.1741 44.3483 92 ) -0.3834 17.3150 56.0000 -Verdana.ttf 61 k 29.1741 44.3483 93 = 17.7276 33.8114 16.4964 -Verdana.ttf 61 k 29.1741 44.3483 94 + 8.4950 34.9855 34.9855 -Verdana.ttf 61 k 29.1741 44.3483 95 X 2.1749 35.9074 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 96 » 11.6179 28.0000 28.0000 -Verdana.ttf 61 k 29.1741 44.3483 97 ' 0.0658 6.1703 16.3483 -Verdana.ttf 61 k 29.1741 44.3483 98 ¢ 2.4016 27.2855 51.6115 -Verdana.ttf 61 k 29.1741 44.3483 99 Z 2.2711 33.2036 42.2074 -Verdana.ttf 61 k 29.1741 44.3483 100 > 8.9544 32.8447 32.8447 -Verdana.ttf 61 k 29.1741 44.3483 101 ® 1.1014 49.3445 49.3445 -Verdana.ttf 61 k 29.1741 44.3483 102 © 0.8764 49.3445 49.3445 -Verdana.ttf 61 k 29.1741 44.3483 103 ] 0.0101 15.1741 55.4929 -Verdana.ttf 61 k 29.1741 44.3483 104 é -3.2596 28.8152 48.8629 -Verdana.ttf 61 k 29.1741 44.3483 105 z 12.7075 25.5036 31.6705 -Verdana.ttf 61 k 29.1741 44.3483 106 _ 49.7205 37.0038 3.3150 -Verdana.ttf 61 k 29.1741 44.3483 107 ¥ 2.0460 31.1332 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 1 t 1.4090 20.1669 41.8484 -Verdana.ttf 62 J 20.1703 43.3815 2 h -2.0472 26.4669 44.3483 -Verdana.ttf 62 J 20.1703 43.3815 3 a 9.3628 26.7969 34.0188 -Verdana.ttf 62 J 20.1703 43.3815 4 n 9.2696 26.4669 32.8447 -Verdana.ttf 62 J 20.1703 43.3815 5 P -0.0399 27.8519 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 6 o 9.5753 29.3745 34.0188 -Verdana.ttf 62 J 20.1703 43.3815 7 e 9.3094 28.8152 34.0188 -Verdana.ttf 62 J 20.1703 43.3815 8 : 10.4644 6.6555 31.6705 -Verdana.ttf 62 J 20.1703 43.3815 9 r 10.7546 19.6817 31.6705 -Verdana.ttf 62 J 20.1703 43.3815 10 l -1.9236 5.3333 44.3483 -Verdana.ttf 62 J 20.1703 43.3815 11 i 0.0254 5.3333 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 12 1 0.2072 22.9445 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 13 | -2.0668 5.2036 55.4929 -Verdana.ttf 62 J 20.1703 43.3815 14 N -0.0033 31.5514 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 15 f -2.1380 20.5259 44.3483 -Verdana.ttf 62 J 20.1703 43.3815 16 g 9.1720 28.2003 44.4964 -Verdana.ttf 62 J 20.1703 43.3815 17 d -2.0074 28.2003 45.5224 -Verdana.ttf 62 J 20.1703 43.3815 18 W 0.0120 52.3887 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 19 s 9.6171 25.0150 34.0188 -Verdana.ttf 62 J 20.1703 43.3815 20 c 9.4915 25.6820 34.0188 -Verdana.ttf 62 J 20.1703 43.3815 21 u 10.3980 26.4669 32.8447 -Verdana.ttf 62 J 20.1703 43.3815 22 3 -1.1077 28.2074 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 23 ~ 14.7446 37.0038 17.5224 -Verdana.ttf 62 J 20.1703 43.3815 24 # 0.1241 36.5186 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 25 O -1.5460 39.3996 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 26 ` -5.6531 11.8592 10.6850 -Verdana.ttf 62 J 20.1703 43.3815 27 @ -0.9873 48.3778 49.6815 -Verdana.ttf 62 J 20.1703 43.3815 28 F 0.0633 26.3478 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 29 S -0.9670 32.5147 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 30 p 9.2858 28.2003 44.4964 -Verdana.ttf 62 J 20.1703 43.3815 31 “ -1.9674 23.0072 16.1408 -Verdana.ttf 62 J 20.1703 43.3815 32 % -1.4614 54.3188 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 33 £ -0.8832 29.1741 43.3815 -Verdana.ttf 62 J 20.1703 43.3815 34 . 34.2001 6.6555 8.1886 -Verdana.ttf 62 J 20.1703 43.3815 35 2 -0.9046 28.3370 43.3815 -Verdana.ttf 62 J 20.1703 43.3815 36 5 -1.0639 27.5114 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 37 m 9.7458 46.3480 32.8447 -Verdana.ttf 62 J 20.1703 43.3815 38 V -0.0779 37.5109 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 39 6 -1.3044 29.6593 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 40 w 10.5618 42.9667 31.6705 -Verdana.ttf 62 J 20.1703 43.3815 41 T 0.1937 35.8297 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 42 M 0.1407 37.7217 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 43 G -1.2034 38.0483 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 44 b -2.2643 28.2003 45.5224 -Verdana.ttf 62 J 20.1703 43.3815 45 9 -1.0939 29.6593 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 46 ; 10.4633 12.1891 42.1191 -Verdana.ttf 62 J 20.1703 43.3815 47 D -0.1477 35.8587 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 48 L -0.1654 26.6777 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 49 y 10.5076 31.1449 43.3223 -Verdana.ttf 62 J 20.1703 43.3815 50 ‘ -2.0552 11.5036 16.1408 -Verdana.ttf 62 J 20.1703 43.3815 51 \ -2.1437 25.1446 53.0150 -Verdana.ttf 62 J 20.1703 43.3815 52 R 0.0697 34.9855 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 53 < 6.9007 32.8447 32.8447 -Verdana.ttf 62 J 20.1703 43.3815 54 4 0.0249 32.2369 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 55 8 -1.4052 29.9590 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 56 0 -1.3261 28.9448 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 57 A -0.1140 37.5109 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 58 E -0.0181 27.8774 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 59 B 0.0101 32.0295 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 60 v 10.2354 31.1449 31.6705 -Verdana.ttf 62 J 20.1703 43.3815 61 k -2.2283 29.1741 44.3483 -Verdana.ttf 62 J 20.1703 43.3815 62 J -0.1720 20.1703 43.3815 -Verdana.ttf 62 J 20.1703 43.3815 63 U -0.2012 32.6187 43.3815 -Verdana.ttf 62 J 20.1703 43.3815 64 j -0.1556 16.4964 53.8592 -Verdana.ttf 62 J 20.1703 43.3815 65 ( -2.2460 17.3150 56.0000 -Verdana.ttf 62 J 20.1703 43.3815 66 7 0.1769 29.1741 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 67 § -1.3010 27.0333 54.3965 -Verdana.ttf 62 J 20.1703 43.3815 68 $ -2.4645 28.8186 54.8039 -Verdana.ttf 62 J 20.1703 43.3815 69 € -1.2241 34.6555 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 70 / -2.0937 25.1446 53.0150 -Verdana.ttf 62 J 20.1703 43.3815 71 C -1.1175 35.1627 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 72 * -1.7106 27.3888 26.3188 -Verdana.ttf 62 J 20.1703 43.3815 73 ” -2.2131 23.0072 16.1408 -Verdana.ttf 62 J 20.1703 43.3815 74 ? -1.1385 23.9705 43.3815 -Verdana.ttf 62 J 20.1703 43.3815 75 { -2.0658 26.6962 55.4929 -Verdana.ttf 62 J 20.1703 43.3815 76 } -2.0067 26.6962 55.4929 -Verdana.ttf 62 J 20.1703 43.3815 77 , 33.8651 12.1891 18.6372 -Verdana.ttf 62 J 20.1703 43.3815 78 I -0.0951 16.4442 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 79 ° -1.4204 22.7964 22.7964 -Verdana.ttf 62 J 20.1703 43.3815 80 K -0.3845 33.3333 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 81 H -0.1274 32.7255 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 82 q 9.3128 28.2003 44.4964 -Verdana.ttf 62 J 20.1703 43.3815 83 & -1.3091 41.1629 44.5557 -Verdana.ttf 62 J 20.1703 43.3815 84 ’ -2.2816 11.5036 16.1408 -Verdana.ttf 62 J 20.1703 43.3815 85 [ -2.2809 15.1741 55.4929 -Verdana.ttf 62 J 20.1703 43.3815 86 - 20.9500 17.6705 4.8447 -Verdana.ttf 62 J 20.1703 43.3815 87 Y -0.0636 35.8297 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 88 Q -0.9928 40.5737 54.5262 -Verdana.ttf 62 J 20.1703 43.3815 89 " -2.2461 17.3150 16.3483 -Verdana.ttf 62 J 20.1703 43.3815 90 ! -0.0505 5.4814 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 91 x 10.3715 31.1449 31.6705 -Verdana.ttf 62 J 20.1703 43.3815 92 ) -2.0639 17.3150 56.0000 -Verdana.ttf 62 J 20.1703 43.3815 93 = 15.3079 33.8114 16.4964 -Verdana.ttf 62 J 20.1703 43.3815 94 + 6.3389 34.9855 34.9855 -Verdana.ttf 62 J 20.1703 43.3815 95 X 0.0533 35.9074 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 96 » 9.5668 28.0000 28.0000 -Verdana.ttf 62 J 20.1703 43.3815 97 ' -2.3937 6.1703 16.3483 -Verdana.ttf 62 J 20.1703 43.3815 98 ¢ 0.6168 27.2855 51.6115 -Verdana.ttf 62 J 20.1703 43.3815 99 Z -0.0889 33.2036 42.2074 -Verdana.ttf 62 J 20.1703 43.3815 100 > 7.1433 32.8447 32.8447 -Verdana.ttf 62 J 20.1703 43.3815 101 ® -1.2104 49.3445 49.3445 -Verdana.ttf 62 J 20.1703 43.3815 102 © -1.2112 49.3445 49.3445 -Verdana.ttf 62 J 20.1703 43.3815 103 ] -1.9635 15.1741 55.4929 -Verdana.ttf 62 J 20.1703 43.3815 104 é -5.4833 28.8152 48.8629 -Verdana.ttf 62 J 20.1703 43.3815 105 z 10.3928 25.5036 31.6705 -Verdana.ttf 62 J 20.1703 43.3815 106 _ 47.4509 37.0038 3.3150 -Verdana.ttf 62 J 20.1703 43.3815 107 ¥ -0.3507 31.1332 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 1 t 1.0376 20.1669 41.8484 -Verdana.ttf 63 U 32.6187 43.3815 2 h -2.4162 26.4669 44.3483 -Verdana.ttf 63 U 32.6187 43.3815 3 a 9.3013 26.7969 34.0188 -Verdana.ttf 63 U 32.6187 43.3815 4 n 9.6112 26.4669 32.8447 -Verdana.ttf 63 U 32.6187 43.3815 5 P -0.0798 27.8519 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 6 o 9.1687 29.3745 34.0188 -Verdana.ttf 63 U 32.6187 43.3815 7 e 9.2844 28.8152 34.0188 -Verdana.ttf 63 U 32.6187 43.3815 8 : 10.3096 6.6555 31.6705 -Verdana.ttf 63 U 32.6187 43.3815 9 r 10.2496 19.6817 31.6705 -Verdana.ttf 63 U 32.6187 43.3815 10 l -1.8670 5.3333 44.3483 -Verdana.ttf 63 U 32.6187 43.3815 11 i -0.0134 5.3333 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 12 1 -0.1389 22.9445 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 13 | -1.9439 5.2036 55.4929 -Verdana.ttf 63 U 32.6187 43.3815 14 N 0.1140 31.5514 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 15 f -1.9241 20.5259 44.3483 -Verdana.ttf 63 U 32.6187 43.3815 16 g 9.2710 28.2003 44.4964 -Verdana.ttf 63 U 32.6187 43.3815 17 d -2.3067 28.2003 45.5224 -Verdana.ttf 63 U 32.6187 43.3815 18 W -0.0505 52.3887 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 19 s 9.1051 25.0150 34.0188 -Verdana.ttf 63 U 32.6187 43.3815 20 c 9.1230 25.6820 34.0188 -Verdana.ttf 63 U 32.6187 43.3815 21 u 10.5728 26.4669 32.8447 -Verdana.ttf 63 U 32.6187 43.3815 22 3 -1.4650 28.2074 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 23 ~ 14.6078 37.0038 17.5224 -Verdana.ttf 63 U 32.6187 43.3815 24 # -0.0465 36.5186 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 25 O -1.0943 39.3996 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 26 ` -5.3012 11.8592 10.6850 -Verdana.ttf 63 U 32.6187 43.3815 27 @ -1.3207 48.3778 49.6815 -Verdana.ttf 63 U 32.6187 43.3815 28 F -0.1389 26.3478 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 29 S -0.9867 32.5147 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 30 p 9.4974 28.2003 44.4964 -Verdana.ttf 63 U 32.6187 43.3815 31 “ -2.1778 23.0072 16.1408 -Verdana.ttf 63 U 32.6187 43.3815 32 % -1.0939 54.3188 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 33 £ -1.2187 29.1741 43.3815 -Verdana.ttf 63 U 32.6187 43.3815 34 . 33.7517 6.6555 8.1886 -Verdana.ttf 63 U 32.6187 43.3815 35 2 -1.2424 28.3370 43.3815 -Verdana.ttf 63 U 32.6187 43.3815 36 5 -1.5720 27.5114 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 37 m 9.7386 46.3480 32.8447 -Verdana.ttf 63 U 32.6187 43.3815 38 V -0.1207 37.5109 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 39 6 -0.8915 29.6593 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 40 w 10.7089 42.9667 31.6705 -Verdana.ttf 63 U 32.6187 43.3815 41 T 0.2452 35.8297 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 42 M -0.0929 37.7217 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 43 G -0.6229 38.0483 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 44 b -2.3702 28.2003 45.5224 -Verdana.ttf 63 U 32.6187 43.3815 45 9 -1.0411 29.6593 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 46 ; 10.0885 12.1891 42.1191 -Verdana.ttf 63 U 32.6187 43.3815 47 D 0.0842 35.8587 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 48 L 0.2339 26.6777 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 49 y 10.2246 31.1449 43.3223 -Verdana.ttf 63 U 32.6187 43.3815 50 ‘ -2.3980 11.5036 16.1408 -Verdana.ttf 63 U 32.6187 43.3815 51 \ -1.9602 25.1446 53.0150 -Verdana.ttf 63 U 32.6187 43.3815 52 R -0.0697 34.9855 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 53 < 7.1818 32.8447 32.8447 -Verdana.ttf 63 U 32.6187 43.3815 54 4 0.2177 32.2369 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 55 8 -1.3196 29.9590 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 56 0 -0.9152 28.9448 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 57 A 0.1481 37.5109 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 58 E 0.0100 27.8774 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 59 B -0.2482 32.0295 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 60 v 10.2692 31.1449 31.6705 -Verdana.ttf 63 U 32.6187 43.3815 61 k -1.8049 29.1741 44.3483 -Verdana.ttf 63 U 32.6187 43.3815 62 J 0.0404 20.1703 43.3815 -Verdana.ttf 63 U 32.6187 43.3815 63 U 0.3235 32.6187 43.3815 -Verdana.ttf 63 U 32.6187 43.3815 64 j -0.0197 16.4964 53.8592 -Verdana.ttf 63 U 32.6187 43.3815 65 ( -2.2749 17.3150 56.0000 -Verdana.ttf 63 U 32.6187 43.3815 66 7 -0.1807 29.1741 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 67 § -1.0602 27.0333 54.3965 -Verdana.ttf 63 U 32.6187 43.3815 68 $ -2.7595 28.8186 54.8039 -Verdana.ttf 63 U 32.6187 43.3815 69 € -1.3029 34.6555 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 70 / -2.3566 25.1446 53.0150 -Verdana.ttf 63 U 32.6187 43.3815 71 C -1.2510 35.1627 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 72 * -2.2893 27.3888 26.3188 -Verdana.ttf 63 U 32.6187 43.3815 73 ” -1.9574 23.0072 16.1408 -Verdana.ttf 63 U 32.6187 43.3815 74 ? -0.9787 23.9705 43.3815 -Verdana.ttf 63 U 32.6187 43.3815 75 { -2.2063 26.6962 55.4929 -Verdana.ttf 63 U 32.6187 43.3815 76 } -2.3201 26.6962 55.4929 -Verdana.ttf 63 U 32.6187 43.3815 77 , 34.1287 12.1891 18.6372 -Verdana.ttf 63 U 32.6187 43.3815 78 I -0.2509 16.4442 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 79 ° -1.0261 22.7964 22.7964 -Verdana.ttf 63 U 32.6187 43.3815 80 K 0.3575 33.3333 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 81 H 0.0001 32.7255 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 82 q 9.1941 28.2003 44.4964 -Verdana.ttf 63 U 32.6187 43.3815 83 & -0.9597 41.1629 44.5557 -Verdana.ttf 63 U 32.6187 43.3815 84 ’ -1.8409 11.5036 16.1408 -Verdana.ttf 63 U 32.6187 43.3815 85 [ -2.0332 15.1741 55.4929 -Verdana.ttf 63 U 32.6187 43.3815 86 - 20.9551 17.6705 4.8447 -Verdana.ttf 63 U 32.6187 43.3815 87 Y -0.2510 35.8297 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 88 Q -1.2380 40.5737 54.5262 -Verdana.ttf 63 U 32.6187 43.3815 89 " -2.1071 17.3150 16.3483 -Verdana.ttf 63 U 32.6187 43.3815 90 ! -0.1730 5.4814 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 91 x 10.2826 31.1449 31.6705 -Verdana.ttf 63 U 32.6187 43.3815 92 ) -2.3585 17.3150 56.0000 -Verdana.ttf 63 U 32.6187 43.3815 93 = 15.1994 33.8114 16.4964 -Verdana.ttf 63 U 32.6187 43.3815 94 + 6.3744 34.9855 34.9855 -Verdana.ttf 63 U 32.6187 43.3815 95 X 0.3599 35.9074 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 96 » 9.3572 28.0000 28.0000 -Verdana.ttf 63 U 32.6187 43.3815 97 ' -1.9308 6.1703 16.3483 -Verdana.ttf 63 U 32.6187 43.3815 98 ¢ 0.7172 27.2855 51.6115 -Verdana.ttf 63 U 32.6187 43.3815 99 Z 0.0323 33.2036 42.2074 -Verdana.ttf 63 U 32.6187 43.3815 100 > 6.9141 32.8447 32.8447 -Verdana.ttf 63 U 32.6187 43.3815 101 ® -1.3914 49.3445 49.3445 -Verdana.ttf 63 U 32.6187 43.3815 102 © -1.3674 49.3445 49.3445 -Verdana.ttf 63 U 32.6187 43.3815 103 ] -2.2464 15.1741 55.4929 -Verdana.ttf 63 U 32.6187 43.3815 104 é -5.5006 28.8152 48.8629 -Verdana.ttf 63 U 32.6187 43.3815 105 z 10.8012 25.5036 31.6705 -Verdana.ttf 63 U 32.6187 43.3815 106 _ 47.3519 37.0038 3.3150 -Verdana.ttf 63 U 32.6187 43.3815 107 ¥ 0.2191 31.1332 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 1 t 1.5491 20.1669 41.8484 -Verdana.ttf 64 j 16.4964 53.8592 2 h -2.2678 26.4669 44.3483 -Verdana.ttf 64 j 16.4964 53.8592 3 a 9.5906 26.7969 34.0188 -Verdana.ttf 64 j 16.4964 53.8592 4 n 9.2724 26.4669 32.8447 -Verdana.ttf 64 j 16.4964 53.8592 5 P 0.3993 27.8519 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 6 o 9.1201 29.3745 34.0188 -Verdana.ttf 64 j 16.4964 53.8592 7 e 9.3794 28.8152 34.0188 -Verdana.ttf 64 j 16.4964 53.8592 8 : 10.4850 6.6555 31.6705 -Verdana.ttf 64 j 16.4964 53.8592 9 r 10.4702 19.6817 31.6705 -Verdana.ttf 64 j 16.4964 53.8592 10 l -2.1779 5.3333 44.3483 -Verdana.ttf 64 j 16.4964 53.8592 11 i -0.1630 5.3333 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 12 1 -0.0000 22.9445 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 13 | -2.1408 5.2036 55.4929 -Verdana.ttf 64 j 16.4964 53.8592 14 N 0.1023 31.5514 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 15 f -2.1090 20.5259 44.3483 -Verdana.ttf 64 j 16.4964 53.8592 16 g 9.4031 28.2003 44.4964 -Verdana.ttf 64 j 16.4964 53.8592 17 d -2.2236 28.2003 45.5224 -Verdana.ttf 64 j 16.4964 53.8592 18 W -0.0014 52.3887 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 19 s 9.0686 25.0150 34.0188 -Verdana.ttf 64 j 16.4964 53.8592 20 c 9.5267 25.6820 34.0188 -Verdana.ttf 64 j 16.4964 53.8592 21 u 10.5503 26.4669 32.8447 -Verdana.ttf 64 j 16.4964 53.8592 22 3 -1.2943 28.2074 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 23 ~ 14.6308 37.0038 17.5224 -Verdana.ttf 64 j 16.4964 53.8592 24 # -0.0264 36.5186 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 25 O -1.2260 39.3996 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 26 ` -5.4309 11.8592 10.6850 -Verdana.ttf 64 j 16.4964 53.8592 27 @ -1.1103 48.3778 49.6815 -Verdana.ttf 64 j 16.4964 53.8592 28 F 0.0917 26.3478 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 29 S -0.9181 32.5147 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 30 p 9.3156 28.2003 44.4964 -Verdana.ttf 64 j 16.4964 53.8592 31 “ -2.6527 23.0072 16.1408 -Verdana.ttf 64 j 16.4964 53.8592 32 % -1.2630 54.3188 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 33 £ -1.3529 29.1741 43.3815 -Verdana.ttf 64 j 16.4964 53.8592 34 . 33.8646 6.6555 8.1886 -Verdana.ttf 64 j 16.4964 53.8592 35 2 -1.3068 28.3370 43.3815 -Verdana.ttf 64 j 16.4964 53.8592 36 5 -1.2706 27.5114 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 37 m 9.4397 46.3480 32.8447 -Verdana.ttf 64 j 16.4964 53.8592 38 V 0.0134 37.5109 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 39 6 -1.0266 29.6593 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 40 w 10.6551 42.9667 31.6705 -Verdana.ttf 64 j 16.4964 53.8592 41 T -0.1182 35.8297 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 42 M -0.0823 37.7217 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 43 G -1.1473 38.0483 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 44 b -2.3243 28.2003 45.5224 -Verdana.ttf 64 j 16.4964 53.8592 45 9 -0.9050 29.6593 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 46 ; 10.5869 12.1891 42.1191 -Verdana.ttf 64 j 16.4964 53.8592 47 D 0.0019 35.8587 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 48 L -0.0047 26.6777 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 49 y 10.6300 31.1449 43.3223 -Verdana.ttf 64 j 16.4964 53.8592 50 ‘ -2.2297 11.5036 16.1408 -Verdana.ttf 64 j 16.4964 53.8592 51 \ -2.0806 25.1446 53.0150 -Verdana.ttf 64 j 16.4964 53.8592 52 R 0.2779 34.9855 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 53 < 7.0563 32.8447 32.8447 -Verdana.ttf 64 j 16.4964 53.8592 54 4 0.1941 32.2369 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 55 8 -1.3723 29.9590 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 56 0 -1.0852 28.9448 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 57 A 0.0465 37.5109 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 58 E 0.0101 27.8774 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 59 B 0.1538 32.0295 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 60 v 10.5402 31.1449 31.6705 -Verdana.ttf 64 j 16.4964 53.8592 61 k -2.1024 29.1741 44.3483 -Verdana.ttf 64 j 16.4964 53.8592 62 J -0.0399 20.1703 43.3815 -Verdana.ttf 64 j 16.4964 53.8592 63 U -0.0413 32.6187 43.3815 -Verdana.ttf 64 j 16.4964 53.8592 64 j 0.0033 16.4964 53.8592 -Verdana.ttf 64 j 16.4964 53.8592 65 ( -2.3421 17.3150 56.0000 -Verdana.ttf 64 j 16.4964 53.8592 66 7 -0.0318 29.1741 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 67 § -1.2982 27.0333 54.3965 -Verdana.ttf 64 j 16.4964 53.8592 68 $ -2.6678 28.8186 54.8039 -Verdana.ttf 64 j 16.4964 53.8592 69 € -0.8170 34.6555 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 70 / -2.2668 25.1446 53.0150 -Verdana.ttf 64 j 16.4964 53.8592 71 C -1.1390 35.1627 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 72 * -2.1234 27.3888 26.3188 -Verdana.ttf 64 j 16.4964 53.8592 73 ” -2.1807 23.0072 16.1408 -Verdana.ttf 64 j 16.4964 53.8592 74 ? -1.1241 23.9705 43.3815 -Verdana.ttf 64 j 16.4964 53.8592 75 { -2.2304 26.6962 55.4929 -Verdana.ttf 64 j 16.4964 53.8592 76 } -2.4854 26.6962 55.4929 -Verdana.ttf 64 j 16.4964 53.8592 77 , 33.9626 12.1891 18.6372 -Verdana.ttf 64 j 16.4964 53.8592 78 I 0.0514 16.4442 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 79 ° -0.8309 22.7964 22.7964 -Verdana.ttf 64 j 16.4964 53.8592 80 K 0.0000 33.3333 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 81 H -0.0019 32.7255 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 82 q 9.1859 28.2003 44.4964 -Verdana.ttf 64 j 16.4964 53.8592 83 & -1.2510 41.1629 44.5557 -Verdana.ttf 64 j 16.4964 53.8592 84 ’ -1.9904 11.5036 16.1408 -Verdana.ttf 64 j 16.4964 53.8592 85 [ -2.3798 15.1741 55.4929 -Verdana.ttf 64 j 16.4964 53.8592 86 - 20.7813 17.6705 4.8447 -Verdana.ttf 64 j 16.4964 53.8592 87 Y -0.1639 35.8297 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 88 Q -1.6715 40.5737 54.5262 -Verdana.ttf 64 j 16.4964 53.8592 89 " -2.0606 17.3150 16.3483 -Verdana.ttf 64 j 16.4964 53.8592 90 ! -0.0889 5.4814 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 91 x 10.5807 31.1449 31.6705 -Verdana.ttf 64 j 16.4964 53.8592 92 ) -2.3630 17.3150 56.0000 -Verdana.ttf 64 j 16.4964 53.8592 93 = 15.4099 33.8114 16.4964 -Verdana.ttf 64 j 16.4964 53.8592 94 + 6.4720 34.9855 34.9855 -Verdana.ttf 64 j 16.4964 53.8592 95 X -0.0812 35.9074 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 96 » 9.5347 28.0000 28.0000 -Verdana.ttf 64 j 16.4964 53.8592 97 ' -2.1942 6.1703 16.3483 -Verdana.ttf 64 j 16.4964 53.8592 98 ¢ 0.6462 27.2855 51.6115 -Verdana.ttf 64 j 16.4964 53.8592 99 Z 0.0606 33.2036 42.2074 -Verdana.ttf 64 j 16.4964 53.8592 100 > 7.0367 32.8447 32.8447 -Verdana.ttf 64 j 16.4964 53.8592 101 ® -0.9402 49.3445 49.3445 -Verdana.ttf 64 j 16.4964 53.8592 102 © -1.2383 49.3445 49.3445 -Verdana.ttf 64 j 16.4964 53.8592 103 ] -2.4485 15.1741 55.4929 -Verdana.ttf 64 j 16.4964 53.8592 104 é -5.3882 28.8152 48.8629 -Verdana.ttf 64 j 16.4964 53.8592 105 z 10.5118 25.5036 31.6705 -Verdana.ttf 64 j 16.4964 53.8592 106 _ 47.4423 37.0038 3.3150 -Verdana.ttf 64 j 16.4964 53.8592 107 ¥ 0.2010 31.1332 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 1 t 3.6307 20.1669 41.8484 -Verdana.ttf 65 ( 17.3150 56.0000 2 h 0.1821 26.4669 44.3483 -Verdana.ttf 65 ( 17.3150 56.0000 3 a 11.8318 26.7969 34.0188 -Verdana.ttf 65 ( 17.3150 56.0000 4 n 11.5638 26.4669 32.8447 -Verdana.ttf 65 ( 17.3150 56.0000 5 P 2.1390 27.8519 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 6 o 11.5184 29.3745 34.0188 -Verdana.ttf 65 ( 17.3150 56.0000 7 e 11.3781 28.8152 34.0188 -Verdana.ttf 65 ( 17.3150 56.0000 8 : 12.7945 6.6555 31.6705 -Verdana.ttf 65 ( 17.3150 56.0000 9 r 12.8863 19.6817 31.6705 -Verdana.ttf 65 ( 17.3150 56.0000 10 l -0.0326 5.3333 44.3483 -Verdana.ttf 65 ( 17.3150 56.0000 11 i 2.0302 5.3333 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 12 1 1.8300 22.9445 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 13 | 0.0101 5.2036 55.4929 -Verdana.ttf 65 ( 17.3150 56.0000 14 N 2.5056 31.5514 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 15 f -0.0427 20.5259 44.3483 -Verdana.ttf 65 ( 17.3150 56.0000 16 g 11.5036 28.2003 44.4964 -Verdana.ttf 65 ( 17.3150 56.0000 17 d 0.0831 28.2003 45.5224 -Verdana.ttf 65 ( 17.3150 56.0000 18 W 2.2178 52.3887 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 19 s 11.5671 25.0150 34.0188 -Verdana.ttf 65 ( 17.3150 56.0000 20 c 11.5449 25.6820 34.0188 -Verdana.ttf 65 ( 17.3150 56.0000 21 u 12.3566 26.4669 32.8447 -Verdana.ttf 65 ( 17.3150 56.0000 22 3 1.0494 28.2074 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 23 ~ 16.7697 37.0038 17.5224 -Verdana.ttf 65 ( 17.3150 56.0000 24 # 1.7563 36.5186 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 25 O 0.8292 39.3996 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 26 ` -3.3993 11.8592 10.6850 -Verdana.ttf 65 ( 17.3150 56.0000 27 @ 0.7832 48.3778 49.6815 -Verdana.ttf 65 ( 17.3150 56.0000 28 F 2.0240 26.3478 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 29 S 0.9172 32.5147 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 30 p 11.5210 28.2003 44.4964 -Verdana.ttf 65 ( 17.3150 56.0000 31 “ -0.0842 23.0072 16.1408 -Verdana.ttf 65 ( 17.3150 56.0000 32 % 0.7121 54.3188 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 33 £ 0.7255 29.1741 43.3815 -Verdana.ttf 65 ( 17.3150 56.0000 34 . 35.9166 6.6555 8.1886 -Verdana.ttf 65 ( 17.3150 56.0000 35 2 0.8499 28.3370 43.3815 -Verdana.ttf 65 ( 17.3150 56.0000 36 5 0.6913 27.5114 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 37 m 11.4560 46.3480 32.8447 -Verdana.ttf 65 ( 17.3150 56.0000 38 V 2.1543 37.5109 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 39 6 1.4012 29.6593 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 40 w 12.9378 42.9667 31.6705 -Verdana.ttf 65 ( 17.3150 56.0000 41 T 2.2033 35.8297 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 42 M 1.8971 37.7217 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 43 G 1.1441 38.0483 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 44 b -0.0768 28.2003 45.5224 -Verdana.ttf 65 ( 17.3150 56.0000 45 9 0.9787 29.6593 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 46 ; 12.7782 12.1891 42.1191 -Verdana.ttf 65 ( 17.3150 56.0000 47 D 2.0125 35.8587 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 48 L 2.0942 26.6777 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 49 y 12.5475 31.1449 43.3223 -Verdana.ttf 65 ( 17.3150 56.0000 50 ‘ 0.0798 11.5036 16.1408 -Verdana.ttf 65 ( 17.3150 56.0000 51 \ 0.0903 25.1446 53.0150 -Verdana.ttf 65 ( 17.3150 56.0000 52 R 2.3095 34.9855 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 53 < 9.2947 32.8447 32.8447 -Verdana.ttf 65 ( 17.3150 56.0000 54 4 2.1913 32.2369 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 55 8 0.6313 29.9590 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 56 0 0.9667 28.9448 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 57 A 1.9250 37.5109 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 58 E 2.1760 27.8774 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 59 B 1.8551 32.0295 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 60 v 12.5436 31.1449 31.6705 -Verdana.ttf 65 ( 17.3150 56.0000 61 k 0.0404 29.1741 44.3483 -Verdana.ttf 65 ( 17.3150 56.0000 62 J 2.1836 20.1703 43.3815 -Verdana.ttf 65 ( 17.3150 56.0000 63 U 1.8818 32.6187 43.3815 -Verdana.ttf 65 ( 17.3150 56.0000 64 j 2.0168 16.4964 53.8592 -Verdana.ttf 65 ( 17.3150 56.0000 65 ( -0.1201 17.3150 56.0000 -Verdana.ttf 65 ( 17.3150 56.0000 66 7 2.1043 29.1741 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 67 § 0.8865 27.0333 54.3965 -Verdana.ttf 65 ( 17.3150 56.0000 68 $ -0.3578 28.8186 54.8039 -Verdana.ttf 65 ( 17.3150 56.0000 69 € 0.9301 34.6555 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 70 / 0.1966 25.1446 53.0150 -Verdana.ttf 65 ( 17.3150 56.0000 71 C 0.8966 35.1627 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 72 * -0.1092 27.3888 26.3188 -Verdana.ttf 65 ( 17.3150 56.0000 73 ” 0.1110 23.0072 16.1408 -Verdana.ttf 65 ( 17.3150 56.0000 74 ? 0.7313 23.9705 43.3815 -Verdana.ttf 65 ( 17.3150 56.0000 75 { -0.1168 26.6962 55.4929 -Verdana.ttf 65 ( 17.3150 56.0000 76 } -0.0917 26.6962 55.4929 -Verdana.ttf 65 ( 17.3150 56.0000 77 , 36.1078 12.1891 18.6372 -Verdana.ttf 65 ( 17.3150 56.0000 78 I 2.1408 16.4442 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 79 ° 0.7386 22.7964 22.7964 -Verdana.ttf 65 ( 17.3150 56.0000 80 K 2.2326 33.3333 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 81 H 2.2279 32.7255 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 82 q 11.6250 28.2003 44.4964 -Verdana.ttf 65 ( 17.3150 56.0000 83 & 0.9782 41.1629 44.5557 -Verdana.ttf 65 ( 17.3150 56.0000 84 ’ -0.0106 11.5036 16.1408 -Verdana.ttf 65 ( 17.3150 56.0000 85 [ 0.0500 15.1741 55.4929 -Verdana.ttf 65 ( 17.3150 56.0000 86 - 22.9207 17.6705 4.8447 -Verdana.ttf 65 ( 17.3150 56.0000 87 Y 2.2178 35.8297 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 88 Q 0.6990 40.5737 54.5262 -Verdana.ttf 65 ( 17.3150 56.0000 89 " -0.0589 17.3150 16.3483 -Verdana.ttf 65 ( 17.3150 56.0000 90 ! 2.1408 5.4814 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 91 x 12.6777 31.1449 31.6705 -Verdana.ttf 65 ( 17.3150 56.0000 92 ) -0.0356 17.3150 56.0000 -Verdana.ttf 65 ( 17.3150 56.0000 93 = 17.6493 33.8114 16.4964 -Verdana.ttf 65 ( 17.3150 56.0000 94 + 8.1722 34.9855 34.9855 -Verdana.ttf 65 ( 17.3150 56.0000 95 X 2.1821 35.9074 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 96 » 11.5203 28.0000 28.0000 -Verdana.ttf 65 ( 17.3150 56.0000 97 ' -0.0000 6.1703 16.3483 -Verdana.ttf 65 ( 17.3150 56.0000 98 ¢ 2.5592 27.2855 51.6115 -Verdana.ttf 65 ( 17.3150 56.0000 99 Z 2.0520 33.2036 42.2074 -Verdana.ttf 65 ( 17.3150 56.0000 100 > 8.9352 32.8447 32.8447 -Verdana.ttf 65 ( 17.3150 56.0000 101 ® 0.7295 49.3445 49.3445 -Verdana.ttf 65 ( 17.3150 56.0000 102 © 0.8797 49.3445 49.3445 -Verdana.ttf 65 ( 17.3150 56.0000 103 ] -0.0580 15.1741 55.4929 -Verdana.ttf 65 ( 17.3150 56.0000 104 é -3.4175 28.8152 48.8629 -Verdana.ttf 65 ( 17.3150 56.0000 105 z 12.8065 25.5036 31.6705 -Verdana.ttf 65 ( 17.3150 56.0000 106 _ 49.5889 37.0038 3.3150 -Verdana.ttf 65 ( 17.3150 56.0000 107 ¥ 2.1557 31.1332 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 1 t 1.1990 20.1669 41.8484 -Verdana.ttf 66 7 29.1741 42.2074 2 h -2.0611 26.4669 44.3483 -Verdana.ttf 66 7 29.1741 42.2074 3 a 9.3076 26.7969 34.0188 -Verdana.ttf 66 7 29.1741 42.2074 4 n 9.5535 26.4669 32.8447 -Verdana.ttf 66 7 29.1741 42.2074 5 P -0.0086 27.8519 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 6 o 9.7150 29.3745 34.0188 -Verdana.ttf 66 7 29.1741 42.2074 7 e 9.6602 28.8152 34.0188 -Verdana.ttf 66 7 29.1741 42.2074 8 : 10.4433 6.6555 31.6705 -Verdana.ttf 66 7 29.1741 42.2074 9 r 10.4027 19.6817 31.6705 -Verdana.ttf 66 7 29.1741 42.2074 10 l -2.4180 5.3333 44.3483 -Verdana.ttf 66 7 29.1741 42.2074 11 i 0.0490 5.3333 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 12 1 -0.0870 22.9445 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 13 | -2.0966 5.2036 55.4929 -Verdana.ttf 66 7 29.1741 42.2074 14 N 0.3008 31.5514 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 15 f -2.2037 20.5259 44.3483 -Verdana.ttf 66 7 29.1741 42.2074 16 g 9.4897 28.2003 44.4964 -Verdana.ttf 66 7 29.1741 42.2074 17 d -2.1927 28.2003 45.5224 -Verdana.ttf 66 7 29.1741 42.2074 18 W -0.2120 52.3887 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 19 s 9.5435 25.0150 34.0188 -Verdana.ttf 66 7 29.1741 42.2074 20 c 9.1071 25.6820 34.0188 -Verdana.ttf 66 7 29.1741 42.2074 21 u 10.4465 26.4669 32.8447 -Verdana.ttf 66 7 29.1741 42.2074 22 3 -1.2692 28.2074 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 23 ~ 14.5612 37.0038 17.5224 -Verdana.ttf 66 7 29.1741 42.2074 24 # -0.0501 36.5186 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 25 O -0.9680 39.3996 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 26 ` -5.8605 11.8592 10.6850 -Verdana.ttf 66 7 29.1741 42.2074 27 @ -1.0791 48.3778 49.6815 -Verdana.ttf 66 7 29.1741 42.2074 28 F -0.0033 26.3478 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 29 S -1.0636 32.5147 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 30 p 9.6765 28.2003 44.4964 -Verdana.ttf 66 7 29.1741 42.2074 31 “ -2.0966 23.0072 16.1408 -Verdana.ttf 66 7 29.1741 42.2074 32 % -0.9761 54.3188 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 33 £ -1.3718 29.1741 43.3815 -Verdana.ttf 66 7 29.1741 42.2074 34 . 34.3903 6.6555 8.1886 -Verdana.ttf 66 7 29.1741 42.2074 35 2 -0.8931 28.3370 43.3815 -Verdana.ttf 66 7 29.1741 42.2074 36 5 -1.1110 27.5114 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 37 m 9.0704 46.3480 32.8447 -Verdana.ttf 66 7 29.1741 42.2074 38 V -0.0049 37.5109 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 39 6 -1.1774 29.6593 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 40 w 10.6018 42.9667 31.6705 -Verdana.ttf 66 7 29.1741 42.2074 41 T 0.1712 35.8297 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 42 M -0.0399 37.7217 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 43 G -0.9630 38.0483 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 44 b -1.9944 28.2003 45.5224 -Verdana.ttf 66 7 29.1741 42.2074 45 9 -1.3780 29.6593 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 46 ; 10.6445 12.1891 42.1191 -Verdana.ttf 66 7 29.1741 42.2074 47 D -0.1525 35.8587 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 48 L -0.1684 26.6777 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 49 y 10.3595 31.1449 43.3223 -Verdana.ttf 66 7 29.1741 42.2074 50 ‘ -2.3951 11.5036 16.1408 -Verdana.ttf 66 7 29.1741 42.2074 51 \ -2.1841 25.1446 53.0150 -Verdana.ttf 66 7 29.1741 42.2074 52 R -0.0370 34.9855 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 53 < 6.7675 32.8447 32.8447 -Verdana.ttf 66 7 29.1741 42.2074 54 4 -0.1316 32.2369 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 55 8 -1.3216 29.9590 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 56 0 -1.1639 28.9448 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 57 A 0.1342 37.5109 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 58 E -0.3240 27.8774 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 59 B 0.3580 32.0295 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 60 v 10.7720 31.1449 31.6705 -Verdana.ttf 66 7 29.1741 42.2074 61 k -1.8699 29.1741 44.3483 -Verdana.ttf 66 7 29.1741 42.2074 62 J 0.2191 20.1703 43.3815 -Verdana.ttf 66 7 29.1741 42.2074 63 U -0.0086 32.6187 43.3815 -Verdana.ttf 66 7 29.1741 42.2074 64 j -0.0769 16.4964 53.8592 -Verdana.ttf 66 7 29.1741 42.2074 65 ( -2.0591 17.3150 56.0000 -Verdana.ttf 66 7 29.1741 42.2074 66 7 -0.0015 29.1741 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 67 § -1.2270 27.0333 54.3965 -Verdana.ttf 66 7 29.1741 42.2074 68 $ -2.3971 28.8186 54.8039 -Verdana.ttf 66 7 29.1741 42.2074 69 € -1.1199 34.6555 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 70 / -2.3152 25.1446 53.0150 -Verdana.ttf 66 7 29.1741 42.2074 71 C -1.0906 35.1627 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 72 * -2.1136 27.3888 26.3188 -Verdana.ttf 66 7 29.1741 42.2074 73 ” -2.3745 23.0072 16.1408 -Verdana.ttf 66 7 29.1741 42.2074 74 ? -1.2820 23.9705 43.3815 -Verdana.ttf 66 7 29.1741 42.2074 75 { -1.9098 26.6962 55.4929 -Verdana.ttf 66 7 29.1741 42.2074 76 } -2.1669 26.6962 55.4929 -Verdana.ttf 66 7 29.1741 42.2074 77 , 33.8015 12.1891 18.6372 -Verdana.ttf 66 7 29.1741 42.2074 78 I -0.1056 16.4442 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 79 ° -1.3735 22.7964 22.7964 -Verdana.ttf 66 7 29.1741 42.2074 80 K 0.3418 33.3333 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 81 H 0.0058 32.7255 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 82 q 9.1042 28.2003 44.4964 -Verdana.ttf 66 7 29.1741 42.2074 83 & -1.3577 41.1629 44.5557 -Verdana.ttf 66 7 29.1741 42.2074 84 ’ -2.0643 11.5036 16.1408 -Verdana.ttf 66 7 29.1741 42.2074 85 [ -2.1155 15.1741 55.4929 -Verdana.ttf 66 7 29.1741 42.2074 86 - 20.9413 17.6705 4.8447 -Verdana.ttf 66 7 29.1741 42.2074 87 Y 0.2383 35.8297 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 88 Q -1.1271 40.5737 54.5262 -Verdana.ttf 66 7 29.1741 42.2074 89 " -2.0947 17.3150 16.3483 -Verdana.ttf 66 7 29.1741 42.2074 90 ! -0.3733 5.4814 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 91 x 10.6247 31.1449 31.6705 -Verdana.ttf 66 7 29.1741 42.2074 92 ) -2.0730 17.3150 56.0000 -Verdana.ttf 66 7 29.1741 42.2074 93 = 15.4320 33.8114 16.4964 -Verdana.ttf 66 7 29.1741 42.2074 94 + 6.4474 34.9855 34.9855 -Verdana.ttf 66 7 29.1741 42.2074 95 X 0.2445 35.9074 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 96 » 9.9017 28.0000 28.0000 -Verdana.ttf 66 7 29.1741 42.2074 97 ' -2.4355 6.1703 16.3483 -Verdana.ttf 66 7 29.1741 42.2074 98 ¢ 0.6168 27.2855 51.6115 -Verdana.ttf 66 7 29.1741 42.2074 99 Z -0.0525 33.2036 42.2074 -Verdana.ttf 66 7 29.1741 42.2074 100 > 7.1857 32.8447 32.8447 -Verdana.ttf 66 7 29.1741 42.2074 101 ® -1.3885 49.3445 49.3445 -Verdana.ttf 66 7 29.1741 42.2074 102 © -1.4303 49.3445 49.3445 -Verdana.ttf 66 7 29.1741 42.2074 103 ] -2.2630 15.1741 55.4929 -Verdana.ttf 66 7 29.1741 42.2074 104 é -5.4814 28.8152 48.8629 -Verdana.ttf 66 7 29.1741 42.2074 105 z 10.5013 25.5036 31.6705 -Verdana.ttf 66 7 29.1741 42.2074 106 _ 47.3909 37.0038 3.3150 -Verdana.ttf 66 7 29.1741 42.2074 107 ¥ -0.1471 31.1332 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 1 t 2.5447 20.1669 41.8484 -Verdana.ttf 67 § 27.0333 54.3965 2 h -1.4012 26.4669 44.3483 -Verdana.ttf 67 § 27.0333 54.3965 3 a 10.4998 26.7969 34.0188 -Verdana.ttf 67 § 27.0333 54.3965 4 n 10.3711 26.4669 32.8447 -Verdana.ttf 67 § 27.0333 54.3965 5 P 1.4006 27.8519 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 6 o 10.3671 29.3745 34.0188 -Verdana.ttf 67 § 27.0333 54.3965 7 e 10.5561 28.8152 34.0188 -Verdana.ttf 67 § 27.0333 54.3965 8 : 11.6308 6.6555 31.6705 -Verdana.ttf 67 § 27.0333 54.3965 9 r 11.3025 19.6817 31.6705 -Verdana.ttf 67 § 27.0333 54.3965 10 l -0.7894 5.3333 44.3483 -Verdana.ttf 67 § 27.0333 54.3965 11 i 1.0713 5.3333 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 12 1 1.1472 22.9445 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 13 | -0.9773 5.2036 55.4929 -Verdana.ttf 67 § 27.0333 54.3965 14 N 1.0264 31.5514 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 15 f -0.8408 20.5259 44.3483 -Verdana.ttf 67 § 27.0333 54.3965 16 g 10.9171 28.2003 44.4964 -Verdana.ttf 67 § 27.0333 54.3965 17 d -1.1912 28.2003 45.5224 -Verdana.ttf 67 § 27.0333 54.3965 18 W 1.3116 52.3887 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 19 s 10.5071 25.0150 34.0188 -Verdana.ttf 67 § 27.0333 54.3965 20 c 10.4114 25.6820 34.0188 -Verdana.ttf 67 § 27.0333 54.3965 21 u 12.0912 26.4669 32.8447 -Verdana.ttf 67 § 27.0333 54.3965 22 3 -0.1759 28.2074 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 23 ~ 16.0472 37.0038 17.5224 -Verdana.ttf 67 § 27.0333 54.3965 24 # 1.1636 36.5186 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 25 O 0.0798 39.3996 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 26 ` -4.2765 11.8592 10.6850 -Verdana.ttf 67 § 27.0333 54.3965 27 @ 0.0000 48.3778 49.6815 -Verdana.ttf 67 § 27.0333 54.3965 28 F 1.2173 26.3478 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 29 S 0.2039 32.5147 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 30 p 10.5355 28.2003 44.4964 -Verdana.ttf 67 § 27.0333 54.3965 31 “ -1.1321 23.0072 16.1408 -Verdana.ttf 67 § 27.0333 54.3965 32 % -0.0380 54.3188 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 33 £ -0.0030 29.1741 43.3815 -Verdana.ttf 67 § 27.0333 54.3965 34 . 35.4566 6.6555 8.1886 -Verdana.ttf 67 § 27.0333 54.3965 35 2 -0.1549 28.3370 43.3815 -Verdana.ttf 67 § 27.0333 54.3965 36 5 -0.1140 27.5114 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 37 m 10.5550 46.3480 32.8447 -Verdana.ttf 67 § 27.0333 54.3965 38 V 1.0319 37.5109 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 39 6 0.1056 29.6593 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 40 w 11.3535 42.9667 31.6705 -Verdana.ttf 67 § 27.0333 54.3965 41 T 1.2778 35.8297 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 42 M 1.1111 37.7217 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 43 G 0.0751 38.0483 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 44 b -0.8365 28.2003 45.5224 -Verdana.ttf 67 § 27.0333 54.3965 45 9 -0.4189 29.6593 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 46 ; 11.4096 12.1891 42.1191 -Verdana.ttf 67 § 27.0333 54.3965 47 D 1.1568 35.8587 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 48 L 1.1760 26.6777 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 49 y 11.7052 31.1449 43.3223 -Verdana.ttf 67 § 27.0333 54.3965 50 ‘ -1.1354 11.5036 16.1408 -Verdana.ttf 67 § 27.0333 54.3965 51 \ -1.0451 25.1446 53.0150 -Verdana.ttf 67 § 27.0333 54.3965 52 R 1.5321 34.9855 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 53 < 7.7057 32.8447 32.8447 -Verdana.ttf 67 § 27.0333 54.3965 54 4 1.3371 32.2369 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 55 8 -0.1173 29.9590 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 56 0 -0.0592 28.9448 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 57 A 1.0944 37.5109 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 58 E 1.0174 27.8774 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 59 B 1.0338 32.0295 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 60 v 11.9398 31.1449 31.6705 -Verdana.ttf 67 § 27.0333 54.3965 61 k -0.7889 29.1741 44.3483 -Verdana.ttf 67 § 27.0333 54.3965 62 J 1.0055 20.1703 43.3815 -Verdana.ttf 67 § 27.0333 54.3965 63 U 1.3559 32.6187 43.3815 -Verdana.ttf 67 § 27.0333 54.3965 64 j 1.0838 16.4964 53.8592 -Verdana.ttf 67 § 27.0333 54.3965 65 ( -1.1401 17.3150 56.0000 -Verdana.ttf 67 § 27.0333 54.3965 66 7 1.3302 29.1741 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 67 § 0.2278 27.0333 54.3965 -Verdana.ttf 67 § 27.0333 54.3965 68 $ -1.4366 28.8186 54.8039 -Verdana.ttf 67 § 27.0333 54.3965 69 € 0.0015 34.6555 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 70 / -1.0936 25.1446 53.0150 -Verdana.ttf 67 § 27.0333 54.3965 71 C 0.0162 35.1627 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 72 * -1.0033 27.3888 26.3188 -Verdana.ttf 67 § 27.0333 54.3965 73 ” -0.8982 23.0072 16.1408 -Verdana.ttf 67 § 27.0333 54.3965 74 ? 0.0605 23.9705 43.3815 -Verdana.ttf 67 § 27.0333 54.3965 75 { -0.9186 26.6962 55.4929 -Verdana.ttf 67 § 27.0333 54.3965 76 } -0.8159 26.6962 55.4929 -Verdana.ttf 67 § 27.0333 54.3965 77 , 35.1039 12.1891 18.6372 -Verdana.ttf 67 § 27.0333 54.3965 78 I 1.1049 16.4442 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 79 ° -0.2750 22.7964 22.7964 -Verdana.ttf 67 § 27.0333 54.3965 80 K 0.9137 33.3333 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 81 H 1.0069 32.7255 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 82 q 10.5387 28.2003 44.4964 -Verdana.ttf 67 § 27.0333 54.3965 83 & 0.1854 41.1629 44.5557 -Verdana.ttf 67 § 27.0333 54.3965 84 ’ -1.0071 11.5036 16.1408 -Verdana.ttf 67 § 27.0333 54.3965 85 [ -0.7966 15.1741 55.4929 -Verdana.ttf 67 § 27.0333 54.3965 86 - 21.7973 17.6705 4.8447 -Verdana.ttf 67 § 27.0333 54.3965 87 Y 1.2982 35.8297 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 88 Q 0.1191 40.5737 54.5262 -Verdana.ttf 67 § 27.0333 54.3965 89 " -0.9341 17.3150 16.3483 -Verdana.ttf 67 § 27.0333 54.3965 90 ! 1.1607 5.4814 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 91 x 11.6697 31.1449 31.6705 -Verdana.ttf 67 § 27.0333 54.3965 92 ) -1.2387 17.3150 56.0000 -Verdana.ttf 67 § 27.0333 54.3965 93 = 16.8766 33.8114 16.4964 -Verdana.ttf 67 § 27.0333 54.3965 94 + 7.5202 34.9855 34.9855 -Verdana.ttf 67 § 27.0333 54.3965 95 X 1.2894 35.9074 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 96 » 10.6962 28.0000 28.0000 -Verdana.ttf 67 § 27.0333 54.3965 97 ' -0.9268 6.1703 16.3483 -Verdana.ttf 67 § 27.0333 54.3965 98 ¢ 1.8843 27.2855 51.6115 -Verdana.ttf 67 § 27.0333 54.3965 99 Z 1.1741 33.2036 42.2074 -Verdana.ttf 67 § 27.0333 54.3965 100 > 8.1977 32.8447 32.8447 -Verdana.ttf 67 § 27.0333 54.3965 101 ® 0.1506 49.3445 49.3445 -Verdana.ttf 67 § 27.0333 54.3965 102 © -0.2811 49.3445 49.3445 -Verdana.ttf 67 § 27.0333 54.3965 103 ] -0.8513 15.1741 55.4929 -Verdana.ttf 67 § 27.0333 54.3965 104 é -3.9898 28.8152 48.8629 -Verdana.ttf 67 § 27.0333 54.3965 105 z 11.4269 25.5036 31.6705 -Verdana.ttf 67 § 27.0333 54.3965 106 _ 48.6635 37.0038 3.3150 -Verdana.ttf 67 § 27.0333 54.3965 107 ¥ 1.0316 31.1332 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 1 t 4.1322 20.1669 41.8484 -Verdana.ttf 68 $ 28.8186 54.8039 2 h 0.3644 26.4669 44.3483 -Verdana.ttf 68 $ 28.8186 54.8039 3 a 11.9637 26.7969 34.0188 -Verdana.ttf 68 $ 28.8186 54.8039 4 n 11.9207 26.4669 32.8447 -Verdana.ttf 68 $ 28.8186 54.8039 5 P 2.4496 27.8519 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 6 o 12.4324 29.3745 34.0188 -Verdana.ttf 68 $ 28.8186 54.8039 7 e 12.0287 28.8152 34.0188 -Verdana.ttf 68 $ 28.8186 54.8039 8 : 13.3620 6.6555 31.6705 -Verdana.ttf 68 $ 28.8186 54.8039 9 r 13.3098 19.6817 31.6705 -Verdana.ttf 68 $ 28.8186 54.8039 10 l 0.4593 5.3333 44.3483 -Verdana.ttf 68 $ 28.8186 54.8039 11 i 2.3598 5.3333 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 12 1 2.9532 22.9445 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 13 | 0.6890 5.2036 55.4929 -Verdana.ttf 68 $ 28.8186 54.8039 14 N 2.4727 31.5514 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 15 f 0.3449 20.5259 44.3483 -Verdana.ttf 68 $ 28.8186 54.8039 16 g 12.3040 28.2003 44.4964 -Verdana.ttf 68 $ 28.8186 54.8039 17 d 0.5103 28.2003 45.5224 -Verdana.ttf 68 $ 28.8186 54.8039 18 W 2.6413 52.3887 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 19 s 11.8215 25.0150 34.0188 -Verdana.ttf 68 $ 28.8186 54.8039 20 c 11.9656 25.6820 34.0188 -Verdana.ttf 68 $ 28.8186 54.8039 21 u 13.2927 26.4669 32.8447 -Verdana.ttf 68 $ 28.8186 54.8039 22 3 1.4520 28.2074 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 23 ~ 17.2618 37.0038 17.5224 -Verdana.ttf 68 $ 28.8186 54.8039 24 # 2.6631 36.5186 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 25 O 1.3130 39.3996 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 26 ` -3.1106 11.8592 10.6850 -Verdana.ttf 68 $ 28.8186 54.8039 27 @ 1.2981 48.3778 49.6815 -Verdana.ttf 68 $ 28.8186 54.8039 28 F 2.8452 26.3478 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 29 S 1.3398 32.5147 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 30 p 11.8663 28.2003 44.4964 -Verdana.ttf 68 $ 28.8186 54.8039 31 “ 0.6292 23.0072 16.1408 -Verdana.ttf 68 $ 28.8186 54.8039 32 % 1.2342 54.3188 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 33 £ 1.7374 29.1741 43.3815 -Verdana.ttf 68 $ 28.8186 54.8039 34 . 36.6477 6.6555 8.1886 -Verdana.ttf 68 $ 28.8186 54.8039 35 2 1.2390 28.3370 43.3815 -Verdana.ttf 68 $ 28.8186 54.8039 36 5 1.6250 27.5114 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 37 m 11.3972 46.3480 32.8447 -Verdana.ttf 68 $ 28.8186 54.8039 38 V 2.4838 37.5109 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 39 6 1.5406 29.6593 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 40 w 12.9917 42.9667 31.6705 -Verdana.ttf 68 $ 28.8186 54.8039 41 T 2.8505 35.8297 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 42 M 2.6862 37.7217 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 43 G 1.4568 38.0483 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 44 b 0.5089 28.2003 45.5224 -Verdana.ttf 68 $ 28.8186 54.8039 45 9 1.5759 29.6593 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 46 ; 12.9399 12.1891 42.1191 -Verdana.ttf 68 $ 28.8186 54.8039 47 D 2.5876 35.8587 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 48 L 2.5760 26.6777 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 49 y 13.2466 31.1449 43.3223 -Verdana.ttf 68 $ 28.8186 54.8039 50 ‘ 0.4573 11.5036 16.1408 -Verdana.ttf 68 $ 28.8186 54.8039 51 \ 0.2309 25.1446 53.0150 -Verdana.ttf 68 $ 28.8186 54.8039 52 R 2.7326 34.9855 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 53 < 9.7975 32.8447 32.8447 -Verdana.ttf 68 $ 28.8186 54.8039 54 4 2.5463 32.2369 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 55 8 1.5085 29.9590 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 56 0 1.5513 28.9448 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 57 A 2.3483 37.5109 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 58 E 2.6964 27.8774 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 59 B 2.6746 32.0295 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 60 v 13.0625 31.1449 31.6705 -Verdana.ttf 68 $ 28.8186 54.8039 61 k 0.4529 29.1741 44.3483 -Verdana.ttf 68 $ 28.8186 54.8039 62 J 2.4131 20.1703 43.3815 -Verdana.ttf 68 $ 28.8186 54.8039 63 U 2.5909 32.6187 43.3815 -Verdana.ttf 68 $ 28.8186 54.8039 64 j 2.5794 16.4964 53.8592 -Verdana.ttf 68 $ 28.8186 54.8039 65 ( 0.7427 17.3150 56.0000 -Verdana.ttf 68 $ 28.8186 54.8039 66 7 2.5092 29.1741 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 67 § 1.5038 27.0333 54.3965 -Verdana.ttf 68 $ 28.8186 54.8039 68 $ -0.2543 28.8186 54.8039 -Verdana.ttf 68 $ 28.8186 54.8039 69 € 1.4233 34.6555 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 70 / 0.5443 25.1446 53.0150 -Verdana.ttf 68 $ 28.8186 54.8039 71 C 1.5704 35.1627 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 72 * 0.5692 27.3888 26.3188 -Verdana.ttf 68 $ 28.8186 54.8039 73 ” 0.6231 23.0072 16.1408 -Verdana.ttf 68 $ 28.8186 54.8039 74 ? 1.3961 23.9705 43.3815 -Verdana.ttf 68 $ 28.8186 54.8039 75 { 0.4439 26.6962 55.4929 -Verdana.ttf 68 $ 28.8186 54.8039 76 } 0.4183 26.6962 55.4929 -Verdana.ttf 68 $ 28.8186 54.8039 77 , 36.9361 12.1891 18.6372 -Verdana.ttf 68 $ 28.8186 54.8039 78 I 2.8006 16.4442 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 79 ° 1.7489 22.7964 22.7964 -Verdana.ttf 68 $ 28.8186 54.8039 80 K 2.6242 33.3333 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 81 H 2.8394 32.7255 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 82 q 11.8187 28.2003 44.4964 -Verdana.ttf 68 $ 28.8186 54.8039 83 & 1.4639 41.1629 44.5557 -Verdana.ttf 68 $ 28.8186 54.8039 84 ’ 0.6477 11.5036 16.1408 -Verdana.ttf 68 $ 28.8186 54.8039 85 [ 0.6644 15.1741 55.4929 -Verdana.ttf 68 $ 28.8186 54.8039 86 - 23.4120 17.6705 4.8447 -Verdana.ttf 68 $ 28.8186 54.8039 87 Y 2.7178 35.8297 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 88 Q 1.6591 40.5737 54.5262 -Verdana.ttf 68 $ 28.8186 54.8039 89 " 0.2429 17.3150 16.3483 -Verdana.ttf 68 $ 28.8186 54.8039 90 ! 2.6750 5.4814 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 91 x 12.9990 31.1449 31.6705 -Verdana.ttf 68 $ 28.8186 54.8039 92 ) 0.2142 17.3150 56.0000 -Verdana.ttf 68 $ 28.8186 54.8039 93 = 18.0358 33.8114 16.4964 -Verdana.ttf 68 $ 28.8186 54.8039 94 + 8.6944 34.9855 34.9855 -Verdana.ttf 68 $ 28.8186 54.8039 95 X 2.9659 35.9074 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 96 » 12.4466 28.0000 28.0000 -Verdana.ttf 68 $ 28.8186 54.8039 97 ' 0.3477 6.1703 16.3483 -Verdana.ttf 68 $ 28.8186 54.8039 98 ¢ 3.5134 27.2855 51.6115 -Verdana.ttf 68 $ 28.8186 54.8039 99 Z 2.7979 33.2036 42.2074 -Verdana.ttf 68 $ 28.8186 54.8039 100 > 9.4345 32.8447 32.8447 -Verdana.ttf 68 $ 28.8186 54.8039 101 ® 1.4115 49.3445 49.3445 -Verdana.ttf 68 $ 28.8186 54.8039 102 © 1.3050 49.3445 49.3445 -Verdana.ttf 68 $ 28.8186 54.8039 103 ] 0.4394 15.1741 55.4929 -Verdana.ttf 68 $ 28.8186 54.8039 104 é -3.0524 28.8152 48.8629 -Verdana.ttf 68 $ 28.8186 54.8039 105 z 13.3464 25.5036 31.6705 -Verdana.ttf 68 $ 28.8186 54.8039 106 _ 49.9097 37.0038 3.3150 -Verdana.ttf 68 $ 28.8186 54.8039 107 ¥ 2.3722 31.1332 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 1 t 2.7975 20.1669 41.8484 -Verdana.ttf 69 € 34.6555 44.5557 2 h -0.9575 26.4669 44.3483 -Verdana.ttf 69 € 34.6555 44.5557 3 a 10.5600 26.7969 34.0188 -Verdana.ttf 69 € 34.6555 44.5557 4 n 10.1789 26.4669 32.8447 -Verdana.ttf 69 € 34.6555 44.5557 5 P 0.8300 27.8519 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 6 o 10.7161 29.3745 34.0188 -Verdana.ttf 69 € 34.6555 44.5557 7 e 10.7109 28.8152 34.0188 -Verdana.ttf 69 € 34.6555 44.5557 8 : 11.8075 6.6555 31.6705 -Verdana.ttf 69 € 34.6555 44.5557 9 r 11.7495 19.6817 31.6705 -Verdana.ttf 69 € 34.6555 44.5557 10 l -1.1122 5.3333 44.3483 -Verdana.ttf 69 € 34.6555 44.5557 11 i 1.4033 5.3333 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 12 1 1.0646 22.9445 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 13 | -1.2295 5.2036 55.4929 -Verdana.ttf 69 € 34.6555 44.5557 14 N 1.2698 31.5514 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 15 f -0.9355 20.5259 44.3483 -Verdana.ttf 69 € 34.6555 44.5557 16 g 11.0059 28.2003 44.4964 -Verdana.ttf 69 € 34.6555 44.5557 17 d -0.7745 28.2003 45.5224 -Verdana.ttf 69 € 34.6555 44.5557 18 W 1.0439 52.3887 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 19 s 10.3584 25.0150 34.0188 -Verdana.ttf 69 € 34.6555 44.5557 20 c 10.6119 25.6820 34.0188 -Verdana.ttf 69 € 34.6555 44.5557 21 u 11.7375 26.4669 32.8447 -Verdana.ttf 69 € 34.6555 44.5557 22 3 0.2177 28.2074 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 23 ~ 16.1005 37.0038 17.5224 -Verdana.ttf 69 € 34.6555 44.5557 24 # 1.4707 36.5186 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 25 O 0.2571 39.3996 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 26 ` -4.3986 11.8592 10.6850 -Verdana.ttf 69 € 34.6555 44.5557 27 @ 0.1606 48.3778 49.6815 -Verdana.ttf 69 € 34.6555 44.5557 28 F 1.0051 26.3478 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 29 S -0.2629 32.5147 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 30 p 10.4984 28.2003 44.4964 -Verdana.ttf 69 € 34.6555 44.5557 31 “ -1.0941 23.0072 16.1408 -Verdana.ttf 69 € 34.6555 44.5557 32 % 0.3326 54.3188 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 33 £ 0.1883 29.1741 43.3815 -Verdana.ttf 69 € 34.6555 44.5557 34 . 34.8853 6.6555 8.1886 -Verdana.ttf 69 € 34.6555 44.5557 35 2 0.1792 28.3370 43.3815 -Verdana.ttf 69 € 34.6555 44.5557 36 5 -0.2296 27.5114 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 37 m 10.8341 46.3480 32.8447 -Verdana.ttf 69 € 34.6555 44.5557 38 V 1.3490 37.5109 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 39 6 -0.0917 29.6593 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 40 w 11.4851 42.9667 31.6705 -Verdana.ttf 69 € 34.6555 44.5557 41 T 1.1727 35.8297 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 42 M 1.0240 37.7217 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 43 G 0.2173 38.0483 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 44 b -0.8797 28.2003 45.5224 -Verdana.ttf 69 € 34.6555 44.5557 45 9 0.0755 29.6593 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 46 ; 11.5115 12.1891 42.1191 -Verdana.ttf 69 € 34.6555 44.5557 47 D 1.4198 35.8587 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 48 L 1.2550 26.6777 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 49 y 11.6994 31.1449 43.3223 -Verdana.ttf 69 € 34.6555 44.5557 50 ‘ -0.6113 11.5036 16.1408 -Verdana.ttf 69 € 34.6555 44.5557 51 \ -0.6467 25.1446 53.0150 -Verdana.ttf 69 € 34.6555 44.5557 52 R 0.9867 34.9855 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 53 < 8.0378 32.8447 32.8447 -Verdana.ttf 69 € 34.6555 44.5557 54 4 0.9735 32.2369 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 55 8 -0.1375 29.9590 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 56 0 -0.1774 28.9448 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 57 A 1.0592 37.5109 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 58 E 0.9554 27.8774 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 59 B 1.2891 32.0295 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 60 v 11.9447 31.1449 31.6705 -Verdana.ttf 69 € 34.6555 44.5557 61 k -0.9453 29.1741 44.3483 -Verdana.ttf 69 € 34.6555 44.5557 62 J 1.2231 20.1703 43.3815 -Verdana.ttf 69 € 34.6555 44.5557 63 U 1.1713 32.6187 43.3815 -Verdana.ttf 69 € 34.6555 44.5557 64 j 1.2358 16.4964 53.8592 -Verdana.ttf 69 € 34.6555 44.5557 65 ( -1.0668 17.3150 56.0000 -Verdana.ttf 69 € 34.6555 44.5557 66 7 1.2457 29.1741 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 67 § 0.0798 27.0333 54.3965 -Verdana.ttf 69 € 34.6555 44.5557 68 $ -1.6854 28.8186 54.8039 -Verdana.ttf 69 € 34.6555 44.5557 69 € 0.2792 34.6555 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 70 / -1.0214 25.1446 53.0150 -Verdana.ttf 69 € 34.6555 44.5557 71 C 0.0293 35.1627 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 72 * -0.6900 27.3888 26.3188 -Verdana.ttf 69 € 34.6555 44.5557 73 ” -0.8528 23.0072 16.1408 -Verdana.ttf 69 € 34.6555 44.5557 74 ? 0.2510 23.9705 43.3815 -Verdana.ttf 69 € 34.6555 44.5557 75 { -0.7461 26.6962 55.4929 -Verdana.ttf 69 € 34.6555 44.5557 76 } -0.9741 26.6962 55.4929 -Verdana.ttf 69 € 34.6555 44.5557 77 , 35.0299 12.1891 18.6372 -Verdana.ttf 69 € 34.6555 44.5557 78 I 1.1331 16.4442 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 79 ° 0.1508 22.7964 22.7964 -Verdana.ttf 69 € 34.6555 44.5557 80 K 1.5989 33.3333 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 81 H 0.9786 32.7255 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 82 q 10.5768 28.2003 44.4964 -Verdana.ttf 69 € 34.6555 44.5557 83 & 0.1348 41.1629 44.5557 -Verdana.ttf 69 € 34.6555 44.5557 84 ’ -0.6116 11.5036 16.1408 -Verdana.ttf 69 € 34.6555 44.5557 85 [ -0.8651 15.1741 55.4929 -Verdana.ttf 69 € 34.6555 44.5557 86 - 22.0448 17.6705 4.8447 -Verdana.ttf 69 € 34.6555 44.5557 87 Y 1.2510 35.8297 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 88 Q -0.0594 40.5737 54.5262 -Verdana.ttf 69 € 34.6555 44.5557 89 " -1.0350 17.3150 16.3483 -Verdana.ttf 69 € 34.6555 44.5557 90 ! 1.2658 5.4814 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 91 x 11.6610 31.1449 31.6705 -Verdana.ttf 69 € 34.6555 44.5557 92 ) -1.0504 17.3150 56.0000 -Verdana.ttf 69 € 34.6555 44.5557 93 = 16.7093 33.8114 16.4964 -Verdana.ttf 69 € 34.6555 44.5557 94 + 7.4442 34.9855 34.9855 -Verdana.ttf 69 € 34.6555 44.5557 95 X 1.4803 35.9074 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 96 » 10.3659 28.0000 28.0000 -Verdana.ttf 69 € 34.6555 44.5557 97 ' -0.7289 6.1703 16.3483 -Verdana.ttf 69 € 34.6555 44.5557 98 ¢ 1.8170 27.2855 51.6115 -Verdana.ttf 69 € 34.6555 44.5557 99 Z 1.2602 33.2036 42.2074 -Verdana.ttf 69 € 34.6555 44.5557 100 > 8.4904 32.8447 32.8447 -Verdana.ttf 69 € 34.6555 44.5557 101 ® 0.0044 49.3445 49.3445 -Verdana.ttf 69 € 34.6555 44.5557 102 © -0.1330 49.3445 49.3445 -Verdana.ttf 69 € 34.6555 44.5557 103 ] -0.8673 15.1741 55.4929 -Verdana.ttf 69 € 34.6555 44.5557 104 é -4.4241 28.8152 48.8629 -Verdana.ttf 69 € 34.6555 44.5557 105 z 11.6173 25.5036 31.6705 -Verdana.ttf 69 € 34.6555 44.5557 106 _ 49.0906 37.0038 3.3150 -Verdana.ttf 69 € 34.6555 44.5557 107 ¥ 0.8708 31.1332 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 1 t 3.8346 20.1669 41.8484 -Verdana.ttf 70 / 25.1446 53.0150 2 h 0.2605 26.4669 44.3483 -Verdana.ttf 70 / 25.1446 53.0150 3 a 11.5906 26.7969 34.0188 -Verdana.ttf 70 / 25.1446 53.0150 4 n 11.4104 26.4669 32.8447 -Verdana.ttf 70 / 25.1446 53.0150 5 P 2.1840 27.8519 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 6 o 11.5036 29.3745 34.0188 -Verdana.ttf 70 / 25.1446 53.0150 7 e 11.4161 28.8152 34.0188 -Verdana.ttf 70 / 25.1446 53.0150 8 : 12.5505 6.6555 31.6705 -Verdana.ttf 70 / 25.1446 53.0150 9 r 12.6995 19.6817 31.6705 -Verdana.ttf 70 / 25.1446 53.0150 10 l 0.0153 5.3333 44.3483 -Verdana.ttf 70 / 25.1446 53.0150 11 i 2.1557 5.3333 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 12 1 2.1158 22.9445 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 13 | -0.0399 5.2036 55.4929 -Verdana.ttf 70 / 25.1446 53.0150 14 N 2.0163 31.5514 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 15 f -0.0000 20.5259 44.3483 -Verdana.ttf 70 / 25.1446 53.0150 16 g 11.5435 28.2003 44.4964 -Verdana.ttf 70 / 25.1446 53.0150 17 d 0.1941 28.2003 45.5224 -Verdana.ttf 70 / 25.1446 53.0150 18 W 1.9323 52.3887 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 19 s 11.4013 25.0150 34.0188 -Verdana.ttf 70 / 25.1446 53.0150 20 c 11.7140 25.6820 34.0188 -Verdana.ttf 70 / 25.1446 53.0150 21 u 12.9288 26.4669 32.8447 -Verdana.ttf 70 / 25.1446 53.0150 22 3 0.7981 28.2074 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 23 ~ 16.9990 37.0038 17.5224 -Verdana.ttf 70 / 25.1446 53.0150 24 # 2.2077 36.5186 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 25 O 1.1307 39.3996 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 26 ` -3.2136 11.8592 10.6850 -Verdana.ttf 70 / 25.1446 53.0150 27 @ 0.9330 48.3778 49.6815 -Verdana.ttf 70 / 25.1446 53.0150 28 F 2.3519 26.3478 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 29 S 1.0233 32.5147 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 30 p 11.4267 28.2003 44.4964 -Verdana.ttf 70 / 25.1446 53.0150 31 “ 0.0485 23.0072 16.1408 -Verdana.ttf 70 / 25.1446 53.0150 32 % 0.8089 54.3188 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 33 £ 0.8460 29.1741 43.3815 -Verdana.ttf 70 / 25.1446 53.0150 34 . 35.8896 6.6555 8.1886 -Verdana.ttf 70 / 25.1446 53.0150 35 2 1.1325 28.3370 43.3815 -Verdana.ttf 70 / 25.1446 53.0150 36 5 1.1837 27.5114 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 37 m 11.2446 46.3480 32.8447 -Verdana.ttf 70 / 25.1446 53.0150 38 V 2.0937 37.5109 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 39 6 1.0908 29.6593 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 40 w 12.7633 42.9667 31.6705 -Verdana.ttf 70 / 25.1446 53.0150 41 T 2.0770 35.8297 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 42 M 2.1732 37.7217 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 43 G 0.9079 38.0483 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 44 b -0.1966 28.2003 45.5224 -Verdana.ttf 70 / 25.1446 53.0150 45 9 0.9729 29.6593 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 46 ; 12.8940 12.1891 42.1191 -Verdana.ttf 70 / 25.1446 53.0150 47 D 2.0505 35.8587 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 48 L 2.5254 26.6777 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 49 y 12.7945 31.1449 43.3223 -Verdana.ttf 70 / 25.1446 53.0150 50 ‘ 0.5665 11.5036 16.1408 -Verdana.ttf 70 / 25.1446 53.0150 51 \ -0.0965 25.1446 53.0150 -Verdana.ttf 70 / 25.1446 53.0150 52 R 1.9399 34.9855 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 53 < 9.0774 32.8447 32.8447 -Verdana.ttf 70 / 25.1446 53.0150 54 4 1.8971 32.2369 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 55 8 0.9088 29.9590 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 56 0 0.9144 28.9448 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 57 A 1.9870 37.5109 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 58 E 2.2501 27.8774 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 59 B 1.9487 32.0295 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 60 v 12.9388 31.1449 31.6705 -Verdana.ttf 70 / 25.1446 53.0150 61 k -0.0505 29.1741 44.3483 -Verdana.ttf 70 / 25.1446 53.0150 62 J 2.0625 20.1703 43.3815 -Verdana.ttf 70 / 25.1446 53.0150 63 U 2.1014 32.6187 43.3815 -Verdana.ttf 70 / 25.1446 53.0150 64 j 2.0429 16.4964 53.8592 -Verdana.ttf 70 / 25.1446 53.0150 65 ( 0.0523 17.3150 56.0000 -Verdana.ttf 70 / 25.1446 53.0150 66 7 2.4716 29.1741 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 67 § 0.8408 27.0333 54.3965 -Verdana.ttf 70 / 25.1446 53.0150 68 $ -0.2979 28.8186 54.8039 -Verdana.ttf 70 / 25.1446 53.0150 69 € 0.9182 34.6555 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 70 / -0.0591 25.1446 53.0150 -Verdana.ttf 70 / 25.1446 53.0150 71 C 1.0403 35.1627 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 72 * 0.0580 27.3888 26.3188 -Verdana.ttf 70 / 25.1446 53.0150 73 ” 0.1876 23.0072 16.1408 -Verdana.ttf 70 / 25.1446 53.0150 74 ? 0.8159 23.9705 43.3815 -Verdana.ttf 70 / 25.1446 53.0150 75 { -0.0181 26.6962 55.4929 -Verdana.ttf 70 / 25.1446 53.0150 76 } -0.1948 26.6962 55.4929 -Verdana.ttf 70 / 25.1446 53.0150 77 , 35.9975 12.1891 18.6372 -Verdana.ttf 70 / 25.1446 53.0150 78 I 2.1227 16.4442 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 79 ° 1.0208 22.7964 22.7964 -Verdana.ttf 70 / 25.1446 53.0150 80 K 2.3478 33.3333 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 81 H 2.1538 32.7255 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 82 q 11.1858 28.2003 44.4964 -Verdana.ttf 70 / 25.1446 53.0150 83 & 1.0758 41.1629 44.5557 -Verdana.ttf 70 / 25.1446 53.0150 84 ’ -0.0631 11.5036 16.1408 -Verdana.ttf 70 / 25.1446 53.0150 85 [ -0.3087 15.1741 55.4929 -Verdana.ttf 70 / 25.1446 53.0150 86 - 22.7596 17.6705 4.8447 -Verdana.ttf 70 / 25.1446 53.0150 87 Y 1.9250 35.8297 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 88 Q 1.1252 40.5737 54.5262 -Verdana.ttf 70 / 25.1446 53.0150 89 " -0.0519 17.3150 16.3483 -Verdana.ttf 70 / 25.1446 53.0150 90 ! 1.9896 5.4814 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 91 x 12.6806 31.1449 31.6705 -Verdana.ttf 70 / 25.1446 53.0150 92 ) 0.0298 17.3150 56.0000 -Verdana.ttf 70 / 25.1446 53.0150 93 = 17.3983 33.8114 16.4964 -Verdana.ttf 70 / 25.1446 53.0150 94 + 8.5085 34.9855 34.9855 -Verdana.ttf 70 / 25.1446 53.0150 95 X 2.3186 35.9074 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 96 » 11.9695 28.0000 28.0000 -Verdana.ttf 70 / 25.1446 53.0150 97 ' -0.0059 6.1703 16.3483 -Verdana.ttf 70 / 25.1446 53.0150 98 ¢ 2.8193 27.2855 51.6115 -Verdana.ttf 70 / 25.1446 53.0150 99 Z 1.9197 33.2036 42.2074 -Verdana.ttf 70 / 25.1446 53.0150 100 > 9.0433 32.8447 32.8447 -Verdana.ttf 70 / 25.1446 53.0150 101 ® 1.0476 49.3445 49.3445 -Verdana.ttf 70 / 25.1446 53.0150 102 © 1.1155 49.3445 49.3445 -Verdana.ttf 70 / 25.1446 53.0150 103 ] -0.0232 15.1741 55.4929 -Verdana.ttf 70 / 25.1446 53.0150 104 é -3.0196 28.8152 48.8629 -Verdana.ttf 70 / 25.1446 53.0150 105 z 12.3845 25.5036 31.6705 -Verdana.ttf 70 / 25.1446 53.0150 106 _ 49.8432 37.0038 3.3150 -Verdana.ttf 70 / 25.1446 53.0150 107 ¥ 2.0269 31.1332 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 1 t 2.4943 20.1669 41.8484 -Verdana.ttf 71 C 35.1627 44.5557 2 h -1.1417 26.4669 44.3483 -Verdana.ttf 71 C 35.1627 44.5557 3 a 10.3947 26.7969 34.0188 -Verdana.ttf 71 C 35.1627 44.5557 4 n 10.4360 26.4669 32.8447 -Verdana.ttf 71 C 35.1627 44.5557 5 P 1.2235 27.8519 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 6 o 10.4270 29.3745 34.0188 -Verdana.ttf 71 C 35.1627 44.5557 7 e 10.7161 28.8152 34.0188 -Verdana.ttf 71 C 35.1627 44.5557 8 : 11.5816 6.6555 31.6705 -Verdana.ttf 71 C 35.1627 44.5557 9 r 11.8682 19.6817 31.6705 -Verdana.ttf 71 C 35.1627 44.5557 10 l -0.6957 5.3333 44.3483 -Verdana.ttf 71 C 35.1627 44.5557 11 i 1.0491 5.3333 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 12 1 1.1610 22.9445 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 13 | -0.6012 5.2036 55.4929 -Verdana.ttf 71 C 35.1627 44.5557 14 N 1.2092 31.5514 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 15 f -0.9801 20.5259 44.3483 -Verdana.ttf 71 C 35.1627 44.5557 16 g 10.7619 28.2003 44.4964 -Verdana.ttf 71 C 35.1627 44.5557 17 d -0.8667 28.2003 45.5224 -Verdana.ttf 71 C 35.1627 44.5557 18 W 1.2192 52.3887 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 19 s 10.4571 25.0150 34.0188 -Verdana.ttf 71 C 35.1627 44.5557 20 c 10.6464 25.6820 34.0188 -Verdana.ttf 71 C 35.1627 44.5557 21 u 11.5703 26.4669 32.8447 -Verdana.ttf 71 C 35.1627 44.5557 22 3 -0.1274 28.2074 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 23 ~ 16.0824 37.0038 17.5224 -Verdana.ttf 71 C 35.1627 44.5557 24 # 1.3072 36.5186 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 25 O 0.1941 39.3996 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 26 ` -4.2038 11.8592 10.6850 -Verdana.ttf 71 C 35.1627 44.5557 27 @ -0.0759 48.3778 49.6815 -Verdana.ttf 71 C 35.1627 44.5557 28 F 1.2006 26.3478 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 29 S 0.1417 32.5147 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 30 p 10.6373 28.2003 44.4964 -Verdana.ttf 71 C 35.1627 44.5557 31 “ -1.0965 23.0072 16.1408 -Verdana.ttf 71 C 35.1627 44.5557 32 % -0.0558 54.3188 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 33 £ -0.0889 29.1741 43.3815 -Verdana.ttf 71 C 35.1627 44.5557 34 . 34.9285 6.6555 8.1886 -Verdana.ttf 71 C 35.1627 44.5557 35 2 -0.0153 28.3370 43.3815 -Verdana.ttf 71 C 35.1627 44.5557 36 5 -0.1212 27.5114 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 37 m 10.3462 46.3480 32.8447 -Verdana.ttf 71 C 35.1627 44.5557 38 V 1.2539 37.5109 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 39 6 -0.2639 29.6593 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 40 w 11.4818 42.9667 31.6705 -Verdana.ttf 71 C 35.1627 44.5557 41 T 1.3264 35.8297 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 42 M 1.1409 37.7217 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 43 G -0.1157 38.0483 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 44 b -1.1042 28.2003 45.5224 -Verdana.ttf 71 C 35.1627 44.5557 45 9 -0.1682 29.6593 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 46 ; 11.7063 12.1891 42.1191 -Verdana.ttf 71 C 35.1627 44.5557 47 D 1.1607 35.8587 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 48 L 1.1579 26.6777 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 49 y 11.4785 31.1449 43.3223 -Verdana.ttf 71 C 35.1627 44.5557 50 ‘ -1.0537 11.5036 16.1408 -Verdana.ttf 71 C 35.1627 44.5557 51 \ -0.8575 25.1446 53.0150 -Verdana.ttf 71 C 35.1627 44.5557 52 R 1.3442 34.9855 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 53 < 8.1535 32.8447 32.8447 -Verdana.ttf 71 C 35.1627 44.5557 54 4 1.2611 32.2369 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 55 8 -0.0257 29.9590 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 56 0 0.0134 28.9448 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 57 A 0.9459 37.5109 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 58 E 1.0089 27.8774 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 59 B 1.2131 32.0295 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 60 v 11.7073 31.1449 31.6705 -Verdana.ttf 71 C 35.1627 44.5557 61 k -1.0488 29.1741 44.3483 -Verdana.ttf 71 C 35.1627 44.5557 62 J 1.5720 20.1703 43.3815 -Verdana.ttf 71 C 35.1627 44.5557 63 U 1.1640 32.6187 43.3815 -Verdana.ttf 71 C 35.1627 44.5557 64 j 1.2496 16.4964 53.8592 -Verdana.ttf 71 C 35.1627 44.5557 65 ( -0.9461 17.3150 56.0000 -Verdana.ttf 71 C 35.1627 44.5557 66 7 1.0824 29.1741 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 67 § -0.0875 27.0333 54.3965 -Verdana.ttf 71 C 35.1627 44.5557 68 $ -1.5648 28.8186 54.8039 -Verdana.ttf 71 C 35.1627 44.5557 69 € -0.0802 34.6555 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 70 / -1.1071 25.1446 53.0150 -Verdana.ttf 71 C 35.1627 44.5557 71 C 0.2466 35.1627 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 72 * -1.1359 27.3888 26.3188 -Verdana.ttf 71 C 35.1627 44.5557 73 ” -1.0139 23.0072 16.1408 -Verdana.ttf 71 C 35.1627 44.5557 74 ? 0.1907 23.9705 43.3815 -Verdana.ttf 71 C 35.1627 44.5557 75 { -1.0850 26.6962 55.4929 -Verdana.ttf 71 C 35.1627 44.5557 76 } -1.0825 26.6962 55.4929 -Verdana.ttf 71 C 35.1627 44.5557 77 , 35.2636 12.1891 18.6372 -Verdana.ttf 71 C 35.1627 44.5557 78 I 0.9032 16.4442 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 79 ° 0.1560 22.7964 22.7964 -Verdana.ttf 71 C 35.1627 44.5557 80 K 1.3168 33.3333 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 81 H 1.2913 32.7255 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 82 q 10.6029 28.2003 44.4964 -Verdana.ttf 71 C 35.1627 44.5557 83 & -0.2522 41.1629 44.5557 -Verdana.ttf 71 C 35.1627 44.5557 84 ’ -0.7687 11.5036 16.1408 -Verdana.ttf 71 C 35.1627 44.5557 85 [ -0.6667 15.1741 55.4929 -Verdana.ttf 71 C 35.1627 44.5557 86 - 21.8977 17.6705 4.8447 -Verdana.ttf 71 C 35.1627 44.5557 87 Y 0.7573 35.8297 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 88 Q -0.3787 40.5737 54.5262 -Verdana.ttf 71 C 35.1627 44.5557 89 " -0.8050 17.3150 16.3483 -Verdana.ttf 71 C 35.1627 44.5557 90 ! 1.3428 5.4814 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 91 x 11.5818 31.1449 31.6705 -Verdana.ttf 71 C 35.1627 44.5557 92 ) -1.0134 17.3150 56.0000 -Verdana.ttf 71 C 35.1627 44.5557 93 = 16.6769 33.8114 16.4964 -Verdana.ttf 71 C 35.1627 44.5557 94 + 7.5525 34.9855 34.9855 -Verdana.ttf 71 C 35.1627 44.5557 95 X 0.9550 35.9074 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 96 » 10.6539 28.0000 28.0000 -Verdana.ttf 71 C 35.1627 44.5557 97 ' -1.2651 6.1703 16.3483 -Verdana.ttf 71 C 35.1627 44.5557 98 ¢ 1.8736 27.2855 51.6115 -Verdana.ttf 71 C 35.1627 44.5557 99 Z 1.5168 33.2036 42.2074 -Verdana.ttf 71 C 35.1627 44.5557 100 > 8.0632 32.8447 32.8447 -Verdana.ttf 71 C 35.1627 44.5557 101 ® 0.1306 49.3445 49.3445 -Verdana.ttf 71 C 35.1627 44.5557 102 © -0.1614 49.3445 49.3445 -Verdana.ttf 71 C 35.1627 44.5557 103 ] -0.8126 15.1741 55.4929 -Verdana.ttf 71 C 35.1627 44.5557 104 é -4.2751 28.8152 48.8629 -Verdana.ttf 71 C 35.1627 44.5557 105 z 11.8302 25.5036 31.6705 -Verdana.ttf 71 C 35.1627 44.5557 106 _ 48.4329 37.0038 3.3150 -Verdana.ttf 71 C 35.1627 44.5557 107 ¥ 1.0770 31.1332 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 1 t 3.4394 20.1669 41.8484 -Verdana.ttf 72 * 27.3888 26.3188 2 h 0.2994 26.4669 44.3483 -Verdana.ttf 72 * 27.3888 26.3188 3 a 11.4536 26.7969 34.0188 -Verdana.ttf 72 * 27.3888 26.3188 4 n 11.5507 26.4669 32.8447 -Verdana.ttf 72 * 27.3888 26.3188 5 P 2.1484 27.8519 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 6 o 11.4503 29.3745 34.0188 -Verdana.ttf 72 * 27.3888 26.3188 7 e 11.4517 28.8152 34.0188 -Verdana.ttf 72 * 27.3888 26.3188 8 : 12.9550 6.6555 31.6705 -Verdana.ttf 72 * 27.3888 26.3188 9 r 12.9292 19.6817 31.6705 -Verdana.ttf 72 * 27.3888 26.3188 10 l -0.0552 5.3333 44.3483 -Verdana.ttf 72 * 27.3888 26.3188 11 i 1.9830 5.3333 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 12 1 2.3080 22.9445 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 13 | 0.1037 5.2036 55.4929 -Verdana.ttf 72 * 27.3888 26.3188 14 N 2.1942 31.5514 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 15 f 0.0870 20.5259 44.3483 -Verdana.ttf 72 * 27.3888 26.3188 16 g 11.4594 28.2003 44.4964 -Verdana.ttf 72 * 27.3888 26.3188 17 d 0.1945 28.2003 45.5224 -Verdana.ttf 72 * 27.3888 26.3188 18 W 2.1423 52.3887 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 19 s 11.6662 25.0150 34.0188 -Verdana.ttf 72 * 27.3888 26.3188 20 c 11.4754 25.6820 34.0188 -Verdana.ttf 72 * 27.3888 26.3188 21 u 12.8224 26.4669 32.8447 -Verdana.ttf 72 * 27.3888 26.3188 22 3 1.0936 28.2074 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 23 ~ 16.6780 37.0038 17.5224 -Verdana.ttf 72 * 27.3888 26.3188 24 # 1.5837 36.5186 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 25 O 0.9363 39.3996 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 26 ` -3.4765 11.8592 10.6850 -Verdana.ttf 72 * 27.3888 26.3188 27 @ 1.1460 48.3778 49.6815 -Verdana.ttf 72 * 27.3888 26.3188 28 F 1.7697 26.3478 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 29 S 1.0038 32.5147 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 30 p 11.1907 28.2003 44.4964 -Verdana.ttf 72 * 27.3888 26.3188 31 “ 0.0101 23.0072 16.1408 -Verdana.ttf 72 * 27.3888 26.3188 32 % 0.5232 54.3188 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 33 £ 0.8561 29.1741 43.3815 -Verdana.ttf 72 * 27.3888 26.3188 34 . 35.9442 6.6555 8.1886 -Verdana.ttf 72 * 27.3888 26.3188 35 2 0.8499 28.3370 43.3815 -Verdana.ttf 72 * 27.3888 26.3188 36 5 1.1014 27.5114 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 37 m 11.2892 46.3480 32.8447 -Verdana.ttf 72 * 27.3888 26.3188 38 V 2.1408 37.5109 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 39 6 0.7183 29.6593 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 40 w 12.7739 42.9667 31.6705 -Verdana.ttf 72 * 27.3888 26.3188 41 T 2.0654 35.8297 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 42 M 2.0019 37.7217 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 43 G 0.6155 38.0483 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 44 b 0.1106 28.2003 45.5224 -Verdana.ttf 72 * 27.3888 26.3188 45 9 0.5999 29.6593 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 46 ; 12.5503 12.1891 42.1191 -Verdana.ttf 72 * 27.3888 26.3188 47 D 1.7817 35.8587 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 48 L 2.0727 26.6777 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 49 y 12.8685 31.1449 43.3223 -Verdana.ttf 72 * 27.3888 26.3188 50 ‘ 0.0134 11.5036 16.1408 -Verdana.ttf 72 * 27.3888 26.3188 51 \ 0.2778 25.1446 53.0150 -Verdana.ttf 72 * 27.3888 26.3188 52 R 2.0153 34.9855 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 53 < 9.1549 32.8447 32.8447 -Verdana.ttf 72 * 27.3888 26.3188 54 4 2.3009 32.2369 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 55 8 0.8156 29.9590 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 56 0 1.4324 28.9448 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 57 A 2.3182 37.5109 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 58 E 2.1246 27.8774 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 59 B 1.7639 32.0295 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 60 v 12.7023 31.1449 31.6705 -Verdana.ttf 72 * 27.3888 26.3188 61 k 0.0442 29.1741 44.3483 -Verdana.ttf 72 * 27.3888 26.3188 62 J 2.2558 20.1703 43.3815 -Verdana.ttf 72 * 27.3888 26.3188 63 U 2.0067 32.6187 43.3815 -Verdana.ttf 72 * 27.3888 26.3188 64 j 2.1274 16.4964 53.8592 -Verdana.ttf 72 * 27.3888 26.3188 65 ( 0.1711 17.3150 56.0000 -Verdana.ttf 72 * 27.3888 26.3188 66 7 1.9496 29.1741 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 67 § 1.2205 27.0333 54.3965 -Verdana.ttf 72 * 27.3888 26.3188 68 $ -0.5457 28.8186 54.8039 -Verdana.ttf 72 * 27.3888 26.3188 69 € 1.0389 34.6555 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 70 / 0.2883 25.1446 53.0150 -Verdana.ttf 72 * 27.3888 26.3188 71 C 0.5990 35.1627 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 72 * -0.1750 27.3888 26.3188 -Verdana.ttf 72 * 27.3888 26.3188 73 ” 0.2038 23.0072 16.1408 -Verdana.ttf 72 * 27.3888 26.3188 74 ? 0.9336 23.9705 43.3815 -Verdana.ttf 72 * 27.3888 26.3188 75 { -0.3768 26.6962 55.4929 -Verdana.ttf 72 * 27.3888 26.3188 76 } 0.0369 26.6962 55.4929 -Verdana.ttf 72 * 27.3888 26.3188 77 , 35.9362 12.1891 18.6372 -Verdana.ttf 72 * 27.3888 26.3188 78 I 2.2558 16.4442 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 79 ° 0.8398 22.7964 22.7964 -Verdana.ttf 72 * 27.3888 26.3188 80 K 2.1456 33.3333 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 81 H 2.1601 32.7255 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 82 q 11.7209 28.2003 44.4964 -Verdana.ttf 72 * 27.3888 26.3188 83 & 1.1605 41.1629 44.5557 -Verdana.ttf 72 * 27.3888 26.3188 84 ’ -0.1673 11.5036 16.1408 -Verdana.ttf 72 * 27.3888 26.3188 85 [ 0.1298 15.1741 55.4929 -Verdana.ttf 72 * 27.3888 26.3188 86 - 22.9943 17.6705 4.8447 -Verdana.ttf 72 * 27.3888 26.3188 87 Y 2.3168 35.8297 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 88 Q 0.8307 40.5737 54.5262 -Verdana.ttf 72 * 27.3888 26.3188 89 " -0.2139 17.3150 16.3483 -Verdana.ttf 72 * 27.3888 26.3188 90 ! 2.0186 5.4814 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 91 x 12.6878 31.1449 31.6705 -Verdana.ttf 72 * 27.3888 26.3188 92 ) -0.1673 17.3150 56.0000 -Verdana.ttf 72 * 27.3888 26.3188 93 = 17.4777 33.8114 16.4964 -Verdana.ttf 72 * 27.3888 26.3188 94 + 8.6753 34.9855 34.9855 -Verdana.ttf 72 * 27.3888 26.3188 95 X 2.0524 35.9074 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 96 » 11.4981 28.0000 28.0000 -Verdana.ttf 72 * 27.3888 26.3188 97 ' -0.0636 6.1703 16.3483 -Verdana.ttf 72 * 27.3888 26.3188 98 ¢ 2.3992 27.2855 51.6115 -Verdana.ttf 72 * 27.3888 26.3188 99 Z 1.8821 33.2036 42.2074 -Verdana.ttf 72 * 27.3888 26.3188 100 > 9.3726 32.8447 32.8447 -Verdana.ttf 72 * 27.3888 26.3188 101 ® 1.2642 49.3445 49.3445 -Verdana.ttf 72 * 27.3888 26.3188 102 © 1.0657 49.3445 49.3445 -Verdana.ttf 72 * 27.3888 26.3188 103 ] 0.3312 15.1741 55.4929 -Verdana.ttf 72 * 27.3888 26.3188 104 é -3.5524 28.8152 48.8629 -Verdana.ttf 72 * 27.3888 26.3188 105 z 12.5105 25.5036 31.6705 -Verdana.ttf 72 * 27.3888 26.3188 106 _ 49.6185 37.0038 3.3150 -Verdana.ttf 72 * 27.3888 26.3188 107 ¥ 1.8971 31.1332 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 1 t 3.7701 20.1669 41.8484 -Verdana.ttf 73 ” 23.0072 16.1408 2 h 0.1168 26.4669 44.3483 -Verdana.ttf 73 ” 23.0072 16.1408 3 a 11.3131 26.7969 34.0188 -Verdana.ttf 73 ” 23.0072 16.1408 4 n 11.6352 26.4669 32.8447 -Verdana.ttf 73 ” 23.0072 16.1408 5 P 2.0538 27.8519 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 6 o 11.2920 29.3745 34.0188 -Verdana.ttf 73 ” 23.0072 16.1408 7 e 11.5388 28.8152 34.0188 -Verdana.ttf 73 ” 23.0072 16.1408 8 : 12.5322 6.6555 31.6705 -Verdana.ttf 73 ” 23.0072 16.1408 9 r 12.7489 19.6817 31.6705 -Verdana.ttf 73 ” 23.0072 16.1408 10 l 0.2043 5.3333 44.3483 -Verdana.ttf 73 ” 23.0072 16.1408 11 i 1.7861 5.3333 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 12 1 2.5326 22.9445 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 13 | -0.0005 5.2036 55.4929 -Verdana.ttf 73 ” 23.0072 16.1408 14 N 2.0644 31.5514 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 15 f 0.0856 20.5259 44.3483 -Verdana.ttf 73 ” 23.0072 16.1408 16 g 11.3999 28.2003 44.4964 -Verdana.ttf 73 ” 23.0072 16.1408 17 d 0.1259 28.2003 45.5224 -Verdana.ttf 73 ” 23.0072 16.1408 18 W 1.9601 52.3887 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 19 s 11.6603 25.0150 34.0188 -Verdana.ttf 73 ” 23.0072 16.1408 20 c 11.7687 25.6820 34.0188 -Verdana.ttf 73 ” 23.0072 16.1408 21 u 12.7162 26.4669 32.8447 -Verdana.ttf 73 ” 23.0072 16.1408 22 3 0.8009 28.2074 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 23 ~ 16.9457 37.0038 17.5224 -Verdana.ttf 73 ” 23.0072 16.1408 24 # 2.1840 36.5186 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 25 O 1.1042 39.3996 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 26 ` -3.5385 11.8592 10.6850 -Verdana.ttf 73 ” 23.0072 16.1408 27 @ 0.8888 48.3778 49.6815 -Verdana.ttf 73 ” 23.0072 16.1408 28 F 2.1408 26.3478 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 29 S 0.7735 32.5147 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 30 p 11.3450 28.2003 44.4964 -Verdana.ttf 73 ” 23.0072 16.1408 31 “ 0.1538 23.0072 16.1408 -Verdana.ttf 73 ” 23.0072 16.1408 32 % 1.1593 54.3188 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 33 £ 0.5670 29.1741 43.3815 -Verdana.ttf 73 ” 23.0072 16.1408 34 . 36.1058 6.6555 8.1886 -Verdana.ttf 73 ” 23.0072 16.1408 35 2 1.1321 28.3370 43.3815 -Verdana.ttf 73 ” 23.0072 16.1408 36 5 0.6439 27.5114 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 37 m 11.5744 46.3480 32.8447 -Verdana.ttf 73 ” 23.0072 16.1408 38 V 2.3244 37.5109 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 39 6 1.4151 29.6593 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 40 w 12.6345 42.9667 31.6705 -Verdana.ttf 73 ” 23.0072 16.1408 41 T 2.1375 35.8297 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 42 M 2.1057 37.7217 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 43 G 1.0303 38.0483 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 44 b -0.1653 28.2003 45.5224 -Verdana.ttf 73 ” 23.0072 16.1408 45 9 0.9163 29.6593 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 46 ; 12.3270 12.1891 42.1191 -Verdana.ttf 73 ” 23.0072 16.1408 47 D 1.8837 35.8587 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 48 L 2.1915 26.6777 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 49 y 12.6629 31.1449 43.3223 -Verdana.ttf 73 ” 23.0072 16.1408 50 ‘ 0.0621 11.5036 16.1408 -Verdana.ttf 73 ” 23.0072 16.1408 51 \ -0.0399 25.1446 53.0150 -Verdana.ttf 73 ” 23.0072 16.1408 52 R 1.9413 34.9855 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 53 < 9.2025 32.8447 32.8447 -Verdana.ttf 73 ” 23.0072 16.1408 54 4 2.2856 32.2369 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 55 8 1.2319 29.9590 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 56 0 1.1075 28.9448 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 57 A 2.1442 37.5109 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 58 E 2.3215 27.8774 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 59 B 2.0232 32.0295 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 60 v 12.5951 31.1449 31.6705 -Verdana.ttf 73 ” 23.0072 16.1408 61 k -0.2057 29.1741 44.3483 -Verdana.ttf 73 ” 23.0072 16.1408 62 J 2.1085 20.1703 43.3815 -Verdana.ttf 73 ” 23.0072 16.1408 63 U 2.3548 32.6187 43.3815 -Verdana.ttf 73 ” 23.0072 16.1408 64 j 1.8463 16.4964 53.8592 -Verdana.ttf 73 ” 23.0072 16.1408 65 ( 0.0148 17.3150 56.0000 -Verdana.ttf 73 ” 23.0072 16.1408 66 7 2.2787 29.1741 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 67 § 1.1706 27.0333 54.3965 -Verdana.ttf 73 ” 23.0072 16.1408 68 $ -0.4716 28.8186 54.8039 -Verdana.ttf 73 ” 23.0072 16.1408 69 € 1.0398 34.6555 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 70 / -0.0638 25.1446 53.0150 -Verdana.ttf 73 ” 23.0072 16.1408 71 C 0.8250 35.1627 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 72 * 0.0755 27.3888 26.3188 -Verdana.ttf 73 ” 23.0072 16.1408 73 ” -0.0384 23.0072 16.1408 -Verdana.ttf 73 ” 23.0072 16.1408 74 ? 0.9015 23.9705 43.3815 -Verdana.ttf 73 ” 23.0072 16.1408 75 { 0.1432 26.6962 55.4929 -Verdana.ttf 73 ” 23.0072 16.1408 76 } -0.0476 26.6962 55.4929 -Verdana.ttf 73 ” 23.0072 16.1408 77 , 36.2260 12.1891 18.6372 -Verdana.ttf 73 ” 23.0072 16.1408 78 I 1.9870 16.4442 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 79 ° 0.9533 22.7964 22.7964 -Verdana.ttf 73 ” 23.0072 16.1408 80 K 2.1826 33.3333 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 81 H 2.2302 32.7255 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 82 q 11.3664 28.2003 44.4964 -Verdana.ttf 73 ” 23.0072 16.1408 83 & 1.2489 41.1629 44.5557 -Verdana.ttf 73 ” 23.0072 16.1408 84 ’ 0.3380 11.5036 16.1408 -Verdana.ttf 73 ” 23.0072 16.1408 85 [ -0.0918 15.1741 55.4929 -Verdana.ttf 73 ” 23.0072 16.1408 86 - 23.1576 17.6705 4.8447 -Verdana.ttf 73 ” 23.0072 16.1408 87 Y 1.9750 35.8297 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 88 Q 0.8764 40.5737 54.5262 -Verdana.ttf 73 ” 23.0072 16.1408 89 " -0.1422 17.3150 16.3483 -Verdana.ttf 73 ” 23.0072 16.1408 90 ! 2.1067 5.4814 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 91 x 12.7870 31.1449 31.6705 -Verdana.ttf 73 ” 23.0072 16.1408 92 ) -0.1865 17.3150 56.0000 -Verdana.ttf 73 ” 23.0072 16.1408 93 = 17.2957 33.8114 16.4964 -Verdana.ttf 73 ” 23.0072 16.1408 94 + 8.4787 34.9855 34.9855 -Verdana.ttf 73 ” 23.0072 16.1408 95 X 2.1913 35.9074 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 96 » 11.7110 28.0000 28.0000 -Verdana.ttf 73 ” 23.0072 16.1408 97 ' -0.1321 6.1703 16.3483 -Verdana.ttf 73 ” 23.0072 16.1408 98 ¢ 2.5737 27.2855 51.6115 -Verdana.ttf 73 ” 23.0072 16.1408 99 Z 1.9279 33.2036 42.2074 -Verdana.ttf 73 ” 23.0072 16.1408 100 > 9.1919 32.8447 32.8447 -Verdana.ttf 73 ” 23.0072 16.1408 101 ® 0.8630 49.3445 49.3445 -Verdana.ttf 73 ” 23.0072 16.1408 102 © 1.1872 49.3445 49.3445 -Verdana.ttf 73 ” 23.0072 16.1408 103 ] 0.2451 15.1741 55.4929 -Verdana.ttf 73 ” 23.0072 16.1408 104 é -3.5045 28.8152 48.8629 -Verdana.ttf 73 ” 23.0072 16.1408 105 z 12.5668 25.5036 31.6705 -Verdana.ttf 73 ” 23.0072 16.1408 106 _ 49.5957 37.0038 3.3150 -Verdana.ttf 73 ” 23.0072 16.1408 107 ¥ 1.8169 31.1332 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 1 t 3.0720 20.1669 41.8484 -Verdana.ttf 74 ? 23.9705 43.3815 2 h -1.0028 26.4669 44.3483 -Verdana.ttf 74 ? 23.9705 43.3815 3 a 10.7227 26.7969 34.0188 -Verdana.ttf 74 ? 23.9705 43.3815 4 n 10.2385 26.4669 32.8447 -Verdana.ttf 74 ? 23.9705 43.3815 5 P 1.2453 27.8519 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 6 o 10.3443 29.3745 34.0188 -Verdana.ttf 74 ? 23.9705 43.3815 7 e 10.6402 28.8152 34.0188 -Verdana.ttf 74 ? 23.9705 43.3815 8 : 12.3640 6.6555 31.6705 -Verdana.ttf 74 ? 23.9705 43.3815 9 r 11.8147 19.6817 31.6705 -Verdana.ttf 74 ? 23.9705 43.3815 10 l -0.8952 5.3333 44.3483 -Verdana.ttf 74 ? 23.9705 43.3815 11 i 1.0662 5.3333 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 12 1 0.9108 22.9445 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 13 | -0.9262 5.2036 55.4929 -Verdana.ttf 74 ? 23.9705 43.3815 14 N 1.4831 31.5514 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 15 f -1.1975 20.5259 44.3483 -Verdana.ttf 74 ? 23.9705 43.3815 16 g 10.7291 28.2003 44.4964 -Verdana.ttf 74 ? 23.9705 43.3815 17 d -0.8546 28.2003 45.5224 -Verdana.ttf 74 ? 23.9705 43.3815 18 W 1.2049 52.3887 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 19 s 10.4139 25.0150 34.0188 -Verdana.ttf 74 ? 23.9705 43.3815 20 c 10.0250 25.6820 34.0188 -Verdana.ttf 74 ? 23.9705 43.3815 21 u 11.7038 26.4669 32.8447 -Verdana.ttf 74 ? 23.9705 43.3815 22 3 0.1759 28.2074 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 23 ~ 16.0218 37.0038 17.5224 -Verdana.ttf 74 ? 23.9705 43.3815 24 # 1.3327 36.5186 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 25 O -0.0837 39.3996 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 26 ` -4.3120 11.8592 10.6850 -Verdana.ttf 74 ? 23.9705 43.3815 27 @ -0.0441 48.3778 49.6815 -Verdana.ttf 74 ? 23.9705 43.3815 28 F 1.2282 26.3478 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 29 S -0.0239 32.5147 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 30 p 10.5369 28.2003 44.4964 -Verdana.ttf 74 ? 23.9705 43.3815 31 “ -1.1159 23.0072 16.1408 -Verdana.ttf 74 ? 23.9705 43.3815 32 % 0.2249 54.3188 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 33 £ -0.1475 29.1741 43.3815 -Verdana.ttf 74 ? 23.9705 43.3815 34 . 35.3967 6.6555 8.1886 -Verdana.ttf 74 ? 23.9705 43.3815 35 2 -0.4901 28.3370 43.3815 -Verdana.ttf 74 ? 23.9705 43.3815 36 5 0.0990 27.5114 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 37 m 10.3326 46.3480 32.8447 -Verdana.ttf 74 ? 23.9705 43.3815 38 V 1.3428 37.5109 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 39 6 0.3075 29.6593 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 40 w 11.5471 42.9667 31.6705 -Verdana.ttf 74 ? 23.9705 43.3815 41 T 1.1075 35.8297 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 42 M 1.2881 37.7217 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 43 G -0.2543 38.0483 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 44 b -0.9120 28.2003 45.5224 -Verdana.ttf 74 ? 23.9705 43.3815 45 9 0.2057 29.6593 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 46 ; 11.3756 12.1891 42.1191 -Verdana.ttf 74 ? 23.9705 43.3815 47 D 1.0156 35.8587 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 48 L 1.3294 26.6777 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 49 y 11.6341 31.1449 43.3223 -Verdana.ttf 74 ? 23.9705 43.3815 50 ‘ -0.9229 11.5036 16.1408 -Verdana.ttf 74 ? 23.9705 43.3815 51 \ -0.8513 25.1446 53.0150 -Verdana.ttf 74 ? 23.9705 43.3815 52 R 1.2724 34.9855 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 53 < 8.3570 32.8447 32.8447 -Verdana.ttf 74 ? 23.9705 43.3815 54 4 1.1376 32.2369 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 55 8 -0.2105 29.9590 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 56 0 -0.1715 28.9448 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 57 A 0.9954 37.5109 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 58 E 0.8833 27.8774 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 59 B 1.2347 32.0295 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 60 v 11.7393 31.1449 31.6705 -Verdana.ttf 74 ? 23.9705 43.3815 61 k -0.9976 29.1741 44.3483 -Verdana.ttf 74 ? 23.9705 43.3815 62 J 0.9804 20.1703 43.3815 -Verdana.ttf 74 ? 23.9705 43.3815 63 U 1.2611 32.6187 43.3815 -Verdana.ttf 74 ? 23.9705 43.3815 64 j 1.0420 16.4964 53.8592 -Verdana.ttf 74 ? 23.9705 43.3815 65 ( -0.9801 17.3150 56.0000 -Verdana.ttf 74 ? 23.9705 43.3815 66 7 1.2260 29.1741 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 67 § -0.2738 27.0333 54.3965 -Verdana.ttf 74 ? 23.9705 43.3815 68 $ -1.2019 28.8186 54.8039 -Verdana.ttf 74 ? 23.9705 43.3815 69 € 0.1316 34.6555 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 70 / -0.7737 25.1446 53.0150 -Verdana.ttf 74 ? 23.9705 43.3815 71 C -0.3095 35.1627 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 72 * -0.9268 27.3888 26.3188 -Verdana.ttf 74 ? 23.9705 43.3815 73 ” -0.7389 23.0072 16.1408 -Verdana.ttf 74 ? 23.9705 43.3815 74 ? -0.2311 23.9705 43.3815 -Verdana.ttf 74 ? 23.9705 43.3815 75 { -0.9667 26.6962 55.4929 -Verdana.ttf 74 ? 23.9705 43.3815 76 } -1.1187 26.6962 55.4929 -Verdana.ttf 74 ? 23.9705 43.3815 77 , 35.1867 12.1891 18.6372 -Verdana.ttf 74 ? 23.9705 43.3815 78 I 0.9670 16.4442 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 79 ° -0.2575 22.7964 22.7964 -Verdana.ttf 74 ? 23.9705 43.3815 80 K 0.9097 33.3333 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 81 H 1.1894 32.7255 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 82 q 10.5397 28.2003 44.4964 -Verdana.ttf 74 ? 23.9705 43.3815 83 & 0.0134 41.1629 44.5557 -Verdana.ttf 74 ? 23.9705 43.3815 84 ’ -1.0406 11.5036 16.1408 -Verdana.ttf 74 ? 23.9705 43.3815 85 [ -0.8869 15.1741 55.4929 -Verdana.ttf 74 ? 23.9705 43.3815 86 - 22.2961 17.6705 4.8447 -Verdana.ttf 74 ? 23.9705 43.3815 87 Y 1.0809 35.8297 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 88 Q 0.0028 40.5737 54.5262 -Verdana.ttf 74 ? 23.9705 43.3815 89 " -1.1980 17.3150 16.3483 -Verdana.ttf 74 ? 23.9705 43.3815 90 ! 1.0838 5.4814 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 91 x 11.6211 31.1449 31.6705 -Verdana.ttf 74 ? 23.9705 43.3815 92 ) -0.8797 17.3150 56.0000 -Verdana.ttf 74 ? 23.9705 43.3815 93 = 16.2063 33.8114 16.4964 -Verdana.ttf 74 ? 23.9705 43.3815 94 + 7.3788 34.9855 34.9855 -Verdana.ttf 74 ? 23.9705 43.3815 95 X 0.9772 35.9074 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 96 » 11.0476 28.0000 28.0000 -Verdana.ttf 74 ? 23.9705 43.3815 97 ' -1.1680 6.1703 16.3483 -Verdana.ttf 74 ? 23.9705 43.3815 98 ¢ 1.6666 27.2855 51.6115 -Verdana.ttf 74 ? 23.9705 43.3815 99 Z 1.0740 33.2036 42.2074 -Verdana.ttf 74 ? 23.9705 43.3815 100 > 8.1058 32.8447 32.8447 -Verdana.ttf 74 ? 23.9705 43.3815 101 ® -0.1966 49.3445 49.3445 -Verdana.ttf 74 ? 23.9705 43.3815 102 © -0.2822 49.3445 49.3445 -Verdana.ttf 74 ? 23.9705 43.3815 103 ] -0.6667 15.1741 55.4929 -Verdana.ttf 74 ? 23.9705 43.3815 104 é -4.3073 28.8152 48.8629 -Verdana.ttf 74 ? 23.9705 43.3815 105 z 11.7980 25.5036 31.6705 -Verdana.ttf 74 ? 23.9705 43.3815 106 _ 48.4953 37.0038 3.3150 -Verdana.ttf 74 ? 23.9705 43.3815 107 ¥ 1.0055 31.1332 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 1 t 3.9229 20.1669 41.8484 -Verdana.ttf 75 { 26.6962 55.4929 2 h 0.0028 26.4669 44.3483 -Verdana.ttf 75 { 26.6962 55.4929 3 a 11.4299 26.7969 34.0188 -Verdana.ttf 75 { 26.6962 55.4929 4 n 11.5925 26.4669 32.8447 -Verdana.ttf 75 { 26.6962 55.4929 5 P 2.1774 27.8519 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 6 o 11.2123 29.3745 34.0188 -Verdana.ttf 75 { 26.6962 55.4929 7 e 11.2701 28.8152 34.0188 -Verdana.ttf 75 { 26.6962 55.4929 8 : 12.5196 6.6555 31.6705 -Verdana.ttf 75 { 26.6962 55.4929 9 r 12.7648 19.6817 31.6705 -Verdana.ttf 75 { 26.6962 55.4929 10 l 0.0366 5.3333 44.3483 -Verdana.ttf 75 { 26.6962 55.4929 11 i 2.1100 5.3333 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 12 1 2.0875 22.9445 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 13 | -0.0739 5.2036 55.4929 -Verdana.ttf 75 { 26.6962 55.4929 14 N 1.6602 31.5514 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 15 f -0.1585 20.5259 44.3483 -Verdana.ttf 75 { 26.6962 55.4929 16 g 11.6675 28.2003 44.4964 -Verdana.ttf 75 { 26.6962 55.4929 17 d -0.0120 28.2003 45.5224 -Verdana.ttf 75 { 26.6962 55.4929 18 W 2.1375 52.3887 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 19 s 11.2758 25.0150 34.0188 -Verdana.ttf 75 { 26.6962 55.4929 20 c 11.6031 25.6820 34.0188 -Verdana.ttf 75 { 26.6962 55.4929 21 u 12.6925 26.4669 32.8447 -Verdana.ttf 75 { 26.6962 55.4929 22 3 0.9585 28.2074 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 23 ~ 16.8035 37.0038 17.5224 -Verdana.ttf 75 { 26.6962 55.4929 24 # 2.1274 36.5186 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 25 O 0.8778 39.3996 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 26 ` -3.3910 11.8592 10.6850 -Verdana.ttf 75 { 26.6962 55.4929 27 @ 1.1234 48.3778 49.6815 -Verdana.ttf 75 { 26.6962 55.4929 28 F 1.8713 26.3478 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 29 S 1.2058 32.5147 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 30 p 11.4090 28.2003 44.4964 -Verdana.ttf 75 { 26.6962 55.4929 31 “ -0.0783 23.0072 16.1408 -Verdana.ttf 75 { 26.6962 55.4929 32 % 0.9519 54.3188 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 33 £ 1.0403 29.1741 43.3815 -Verdana.ttf 75 { 26.6962 55.4929 34 . 36.3503 6.6555 8.1886 -Verdana.ttf 75 { 26.6962 55.4929 35 2 1.0187 28.3370 43.3815 -Verdana.ttf 75 { 26.6962 55.4929 36 5 1.0172 27.5114 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 37 m 11.2258 46.3480 32.8447 -Verdana.ttf 75 { 26.6962 55.4929 38 V 2.0991 37.5109 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 39 6 0.7760 29.6593 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 40 w 12.6371 42.9667 31.6705 -Verdana.ttf 75 { 26.6962 55.4929 41 T 2.1010 35.8297 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 42 M 2.3263 37.7217 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 43 G 0.9369 38.0483 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 44 b 0.0860 28.2003 45.5224 -Verdana.ttf 75 { 26.6962 55.4929 45 9 0.7495 29.6593 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 46 ; 12.4382 12.1891 42.1191 -Verdana.ttf 75 { 26.6962 55.4929 47 D 2.2239 35.8587 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 48 L 2.2695 26.6777 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 49 y 12.8478 31.1449 43.3223 -Verdana.ttf 75 { 26.6962 55.4929 50 ‘ 0.0769 11.5036 16.1408 -Verdana.ttf 75 { 26.6962 55.4929 51 \ -0.2111 25.1446 53.0150 -Verdana.ttf 75 { 26.6962 55.4929 52 R 2.0861 34.9855 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 53 < 8.9663 32.8447 32.8447 -Verdana.ttf 75 { 26.6962 55.4929 54 4 1.8851 32.2369 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 55 8 0.8445 29.9590 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 56 0 1.0404 28.9448 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 57 A 2.1144 37.5109 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 58 E 1.8865 27.8774 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 59 B 2.2797 32.0295 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 60 v 12.7075 31.1449 31.6705 -Verdana.ttf 75 { 26.6962 55.4929 61 k 0.2615 29.1741 44.3483 -Verdana.ttf 75 { 26.6962 55.4929 62 J 2.1364 20.1703 43.3815 -Verdana.ttf 75 { 26.6962 55.4929 63 U 1.7948 32.6187 43.3815 -Verdana.ttf 75 { 26.6962 55.4929 64 j 2.3628 16.4964 53.8592 -Verdana.ttf 75 { 26.6962 55.4929 65 ( -0.0634 17.3150 56.0000 -Verdana.ttf 75 { 26.6962 55.4929 66 7 2.1528 29.1741 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 67 § 1.0118 27.0333 54.3965 -Verdana.ttf 75 { 26.6962 55.4929 68 $ -0.6327 28.8186 54.8039 -Verdana.ttf 75 { 26.6962 55.4929 69 € 0.9634 34.6555 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 70 / -0.2989 25.1446 53.0150 -Verdana.ttf 75 { 26.6962 55.4929 71 C 0.8119 35.1627 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 72 * 0.2518 27.3888 26.3188 -Verdana.ttf 75 { 26.6962 55.4929 73 ” -0.0846 23.0072 16.1408 -Verdana.ttf 75 { 26.6962 55.4929 74 ? 0.6711 23.9705 43.3815 -Verdana.ttf 75 { 26.6962 55.4929 75 { -0.1263 26.6962 55.4929 -Verdana.ttf 75 { 26.6962 55.4929 76 } 0.2778 26.6962 55.4929 -Verdana.ttf 75 { 26.6962 55.4929 77 , 36.0754 12.1891 18.6372 -Verdana.ttf 75 { 26.6962 55.4929 78 I 2.1172 16.4442 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 79 ° 0.9330 22.7964 22.7964 -Verdana.ttf 75 { 26.6962 55.4929 80 K 2.2769 33.3333 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 81 H 2.0745 32.7255 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 82 q 11.3464 28.2003 44.4964 -Verdana.ttf 75 { 26.6962 55.4929 83 & 0.9181 41.1629 44.5557 -Verdana.ttf 75 { 26.6962 55.4929 84 ’ 0.1586 11.5036 16.1408 -Verdana.ttf 75 { 26.6962 55.4929 85 [ 0.2927 15.1741 55.4929 -Verdana.ttf 75 { 26.6962 55.4929 86 - 22.8898 17.6705 4.8447 -Verdana.ttf 75 { 26.6962 55.4929 87 Y 1.9874 35.8297 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 88 Q 0.8735 40.5737 54.5262 -Verdana.ttf 75 { 26.6962 55.4929 89 " -0.1241 17.3150 16.3483 -Verdana.ttf 75 { 26.6962 55.4929 90 ! 1.8877 5.4814 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 91 x 12.7129 31.1449 31.6705 -Verdana.ttf 75 { 26.6962 55.4929 92 ) -0.0699 17.3150 56.0000 -Verdana.ttf 75 { 26.6962 55.4929 93 = 17.5363 33.8114 16.4964 -Verdana.ttf 75 { 26.6962 55.4929 94 + 8.3898 34.9855 34.9855 -Verdana.ttf 75 { 26.6962 55.4929 95 X 2.5786 35.9074 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 96 » 11.6193 28.0000 28.0000 -Verdana.ttf 75 { 26.6962 55.4929 97 ' -0.0889 6.1703 16.3483 -Verdana.ttf 75 { 26.6962 55.4929 98 ¢ 2.5533 27.2855 51.6115 -Verdana.ttf 75 { 26.6962 55.4929 99 Z 2.5118 33.2036 42.2074 -Verdana.ttf 75 { 26.6962 55.4929 100 > 9.0516 32.8447 32.8447 -Verdana.ttf 75 { 26.6962 55.4929 101 ® 0.9395 49.3445 49.3445 -Verdana.ttf 75 { 26.6962 55.4929 102 © 0.5836 49.3445 49.3445 -Verdana.ttf 75 { 26.6962 55.4929 103 ] 0.1274 15.1741 55.4929 -Verdana.ttf 75 { 26.6962 55.4929 104 é -3.4142 28.8152 48.8629 -Verdana.ttf 75 { 26.6962 55.4929 105 z 12.7195 25.5036 31.6705 -Verdana.ttf 75 { 26.6962 55.4929 106 _ 49.4643 37.0038 3.3150 -Verdana.ttf 75 { 26.6962 55.4929 107 ¥ 2.2192 31.1332 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 1 t 3.7729 20.1669 41.8484 -Verdana.ttf 76 } 26.6962 55.4929 2 h 0.0086 26.4669 44.3483 -Verdana.ttf 76 } 26.6962 55.4929 3 a 11.5501 26.7969 34.0188 -Verdana.ttf 76 } 26.6962 55.4929 4 n 11.5440 26.4669 32.8447 -Verdana.ttf 76 } 26.6962 55.4929 5 P 2.1200 27.8519 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 6 o 11.3778 29.3745 34.0188 -Verdana.ttf 76 } 26.6962 55.4929 7 e 11.1210 28.8152 34.0188 -Verdana.ttf 76 } 26.6962 55.4929 8 : 12.6287 6.6555 31.6705 -Verdana.ttf 76 } 26.6962 55.4929 9 r 12.6973 19.6817 31.6705 -Verdana.ttf 76 } 26.6962 55.4929 10 l 0.0889 5.3333 44.3483 -Verdana.ttf 76 } 26.6962 55.4929 11 i 2.2412 5.3333 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 12 1 2.3696 22.9445 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 13 | 0.0295 5.2036 55.4929 -Verdana.ttf 76 } 26.6962 55.4929 14 N 2.0726 31.5514 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 15 f -0.2764 20.5259 44.3483 -Verdana.ttf 76 } 26.6962 55.4929 16 g 11.6223 28.2003 44.4964 -Verdana.ttf 76 } 26.6962 55.4929 17 d -0.1806 28.2003 45.5224 -Verdana.ttf 76 } 26.6962 55.4929 18 W 2.0121 52.3887 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 19 s 11.5602 25.0150 34.0188 -Verdana.ttf 76 } 26.6962 55.4929 20 c 11.3795 25.6820 34.0188 -Verdana.ttf 76 } 26.6962 55.4929 21 u 12.5181 26.4669 32.8447 -Verdana.ttf 76 } 26.6962 55.4929 22 3 0.8412 28.2074 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 23 ~ 17.0299 37.0038 17.5224 -Verdana.ttf 76 } 26.6962 55.4929 24 # 2.1553 36.5186 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 25 O 1.0672 39.3996 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 26 ` -3.3214 11.8592 10.6850 -Verdana.ttf 76 } 26.6962 55.4929 27 @ 0.9134 48.3778 49.6815 -Verdana.ttf 76 } 26.6962 55.4929 28 F 2.0362 26.3478 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 29 S 0.8996 32.5147 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 30 p 11.5952 28.2003 44.4964 -Verdana.ttf 76 } 26.6962 55.4929 31 “ 0.2841 23.0072 16.1408 -Verdana.ttf 76 } 26.6962 55.4929 32 % 1.1412 54.3188 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 33 £ 0.7846 29.1741 43.3815 -Verdana.ttf 76 } 26.6962 55.4929 34 . 36.0418 6.6555 8.1886 -Verdana.ttf 76 } 26.6962 55.4929 35 2 1.0240 28.3370 43.3815 -Verdana.ttf 76 } 26.6962 55.4929 36 5 1.1311 27.5114 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 37 m 11.5700 46.3480 32.8447 -Verdana.ttf 76 } 26.6962 55.4929 38 V 2.3538 37.5109 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 39 6 1.0450 29.6593 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 40 w 12.7633 42.9667 31.6705 -Verdana.ttf 76 } 26.6962 55.4929 41 T 2.0639 35.8297 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 42 M 2.0307 37.7217 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 43 G 0.9998 38.0483 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 44 b 0.0786 28.2003 45.5224 -Verdana.ttf 76 } 26.6962 55.4929 45 9 0.8952 29.6593 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 46 ; 12.5573 12.1891 42.1191 -Verdana.ttf 76 } 26.6962 55.4929 47 D 2.1436 35.8587 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 48 L 1.8068 26.6777 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 49 y 12.8199 31.1449 43.3223 -Verdana.ttf 76 } 26.6962 55.4929 50 ‘ 0.1687 11.5036 16.1408 -Verdana.ttf 76 } 26.6962 55.4929 51 \ 0.2144 25.1446 53.0150 -Verdana.ttf 76 } 26.6962 55.4929 52 R 2.1860 34.9855 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 53 < 9.1514 32.8447 32.8447 -Verdana.ttf 76 } 26.6962 55.4929 54 4 2.2849 32.2369 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 55 8 0.9283 29.9590 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 56 0 0.9492 28.9448 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 57 A 2.0390 37.5109 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 58 E 1.9750 27.8774 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 59 B 2.0404 32.0295 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 60 v 12.5998 31.1449 31.6705 -Verdana.ttf 76 } 26.6962 55.4929 61 k 0.0915 29.1741 44.3483 -Verdana.ttf 76 } 26.6962 55.4929 62 J 1.9487 20.1703 43.3815 -Verdana.ttf 76 } 26.6962 55.4929 63 U 1.9696 32.6187 43.3815 -Verdana.ttf 76 } 26.6962 55.4929 64 j 2.3553 16.4964 53.8592 -Verdana.ttf 76 } 26.6962 55.4929 65 ( 0.0903 17.3150 56.0000 -Verdana.ttf 76 } 26.6962 55.4929 66 7 2.2134 29.1741 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 67 § 0.9740 27.0333 54.3965 -Verdana.ttf 76 } 26.6962 55.4929 68 $ -0.6996 28.8186 54.8039 -Verdana.ttf 76 } 26.6962 55.4929 69 € 0.7788 34.6555 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 70 / 0.2423 25.1446 53.0150 -Verdana.ttf 76 } 26.6962 55.4929 71 C 1.0071 35.1627 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 72 * -0.3565 27.3888 26.3188 -Verdana.ttf 76 } 26.6962 55.4929 73 ” 0.0286 23.0072 16.1408 -Verdana.ttf 76 } 26.6962 55.4929 74 ? 0.7922 23.9705 43.3815 -Verdana.ttf 76 } 26.6962 55.4929 75 { -0.0204 26.6962 55.4929 -Verdana.ttf 76 } 26.6962 55.4929 76 } -0.0441 26.6962 55.4929 -Verdana.ttf 76 } 26.6962 55.4929 77 , 35.9333 12.1891 18.6372 -Verdana.ttf 76 } 26.6962 55.4929 78 I 2.2120 16.4442 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 79 ° 1.1017 22.7964 22.7964 -Verdana.ttf 76 } 26.6962 55.4929 80 K 2.0559 33.3333 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 81 H 2.1598 32.7255 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 82 q 11.8214 28.2003 44.4964 -Verdana.ttf 76 } 26.6962 55.4929 83 & 0.7082 41.1629 44.5557 -Verdana.ttf 76 } 26.6962 55.4929 84 ’ 0.3388 11.5036 16.1408 -Verdana.ttf 76 } 26.6962 55.4929 85 [ -0.2850 15.1741 55.4929 -Verdana.ttf 76 } 26.6962 55.4929 86 - 23.0066 17.6705 4.8447 -Verdana.ttf 76 } 26.6962 55.4929 87 Y 2.2413 35.8297 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 88 Q 0.6725 40.5737 54.5262 -Verdana.ttf 76 } 26.6962 55.4929 89 " 0.0538 17.3150 16.3483 -Verdana.ttf 76 } 26.6962 55.4929 90 ! 2.1894 5.4814 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 91 x 12.5975 31.1449 31.6705 -Verdana.ttf 76 } 26.6962 55.4929 92 ) -0.1534 17.3150 56.0000 -Verdana.ttf 76 } 26.6962 55.4929 93 = 17.3816 33.8114 16.4964 -Verdana.ttf 76 } 26.6962 55.4929 94 + 8.6103 34.9855 34.9855 -Verdana.ttf 76 } 26.6962 55.4929 95 X 2.3418 35.9074 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 96 » 11.5606 28.0000 28.0000 -Verdana.ttf 76 } 26.6962 55.4929 97 ' 0.1552 6.1703 16.3483 -Verdana.ttf 76 } 26.6962 55.4929 98 ¢ 2.7370 27.2855 51.6115 -Verdana.ttf 76 } 26.6962 55.4929 99 Z 2.2312 33.2036 42.2074 -Verdana.ttf 76 } 26.6962 55.4929 100 > 9.3210 32.8447 32.8447 -Verdana.ttf 76 } 26.6962 55.4929 101 ® 1.1267 49.3445 49.3445 -Verdana.ttf 76 } 26.6962 55.4929 102 © 1.2651 49.3445 49.3445 -Verdana.ttf 76 } 26.6962 55.4929 103 ] 0.1618 15.1741 55.4929 -Verdana.ttf 76 } 26.6962 55.4929 104 é -3.6275 28.8152 48.8629 -Verdana.ttf 76 } 26.6962 55.4929 105 z 12.5269 25.5036 31.6705 -Verdana.ttf 76 } 26.6962 55.4929 106 _ 49.2636 37.0038 3.3150 -Verdana.ttf 76 } 26.6962 55.4929 107 ¥ 1.8796 31.1332 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 1 t -32.4919 20.1669 41.8484 -Verdana.ttf 77 , 12.1891 18.6372 2 h -36.2884 26.4669 44.3483 -Verdana.ttf 77 , 12.1891 18.6372 3 a -24.5690 26.7969 34.0188 -Verdana.ttf 77 , 12.1891 18.6372 4 n -24.6811 26.4669 32.8447 -Verdana.ttf 77 , 12.1891 18.6372 5 P -34.4000 27.8519 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 6 o -24.4826 29.3745 34.0188 -Verdana.ttf 77 , 12.1891 18.6372 7 e -24.6694 28.8152 34.0188 -Verdana.ttf 77 , 12.1891 18.6372 8 : -23.6640 6.6555 31.6705 -Verdana.ttf 77 , 12.1891 18.6372 9 r -23.5483 19.6817 31.6705 -Verdana.ttf 77 , 12.1891 18.6372 10 l -36.0327 5.3333 44.3483 -Verdana.ttf 77 , 12.1891 18.6372 11 i -34.1961 5.3333 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 12 1 -34.2365 22.9445 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 13 | -35.9391 5.2036 55.4929 -Verdana.ttf 77 , 12.1891 18.6372 14 N -33.9549 31.5514 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 15 f -36.3349 20.5259 44.3483 -Verdana.ttf 77 , 12.1891 18.6372 16 g -24.8066 28.2003 44.4964 -Verdana.ttf 77 , 12.1891 18.6372 17 d -36.1521 28.2003 45.5224 -Verdana.ttf 77 , 12.1891 18.6372 18 W -34.0587 52.3887 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 19 s -24.5908 25.0150 34.0188 -Verdana.ttf 77 , 12.1891 18.6372 20 c -24.5791 25.6820 34.0188 -Verdana.ttf 77 , 12.1891 18.6372 21 u -23.4521 26.4669 32.8447 -Verdana.ttf 77 , 12.1891 18.6372 22 3 -35.4120 28.2074 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 23 ~ -19.4891 37.0038 17.5224 -Verdana.ttf 77 , 12.1891 18.6372 24 # -34.0481 36.5186 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 25 O -34.8374 39.3996 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 26 ` -39.4793 11.8592 10.6850 -Verdana.ttf 77 , 12.1891 18.6372 27 @ -35.0170 48.3778 49.6815 -Verdana.ttf 77 , 12.1891 18.6372 28 F -34.1087 26.3478 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 29 S -35.2481 32.5147 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 30 p -24.5922 28.2003 44.4964 -Verdana.ttf 77 , 12.1891 18.6372 31 “ -36.1582 23.0072 16.1408 -Verdana.ttf 77 , 12.1891 18.6372 32 % -35.2665 54.3188 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 33 £ -35.2002 29.1741 43.3815 -Verdana.ttf 77 , 12.1891 18.6372 34 . 0.1335 6.6555 8.1886 -Verdana.ttf 77 , 12.1891 18.6372 35 2 -34.9919 28.3370 43.3815 -Verdana.ttf 77 , 12.1891 18.6372 36 5 -35.2981 27.5114 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 37 m -24.7430 46.3480 32.8447 -Verdana.ttf 77 , 12.1891 18.6372 38 V -33.9683 37.5109 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 39 6 -35.4167 29.6593 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 40 w -23.5070 42.9667 31.6705 -Verdana.ttf 77 , 12.1891 18.6372 41 T -34.1309 35.8297 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 42 M -34.1077 37.7217 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 43 G -35.0833 38.0483 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 44 b -36.3202 28.2003 45.5224 -Verdana.ttf 77 , 12.1891 18.6372 45 9 -35.1943 29.6593 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 46 ; -23.4819 12.1891 42.1191 -Verdana.ttf 77 , 12.1891 18.6372 47 D -34.1980 35.8587 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 48 L -33.8548 26.6777 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 49 y -23.4786 31.1449 43.3223 -Verdana.ttf 77 , 12.1891 18.6372 50 ‘ -36.1538 11.5036 16.1408 -Verdana.ttf 77 , 12.1891 18.6372 51 \ -36.1197 25.1446 53.0150 -Verdana.ttf 77 , 12.1891 18.6372 52 R -34.0558 34.9855 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 53 < -27.1244 32.8447 32.8447 -Verdana.ttf 77 , 12.1891 18.6372 54 4 -34.1226 32.2369 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 55 8 -35.3365 29.9590 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 56 0 -35.1512 28.9448 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 57 A -34.0263 37.5109 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 58 E -34.2625 27.8774 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 59 B -33.9034 32.0295 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 60 v -23.3343 31.1449 31.6705 -Verdana.ttf 77 , 12.1891 18.6372 61 k -36.1125 29.1741 44.3483 -Verdana.ttf 77 , 12.1891 18.6372 62 J -33.9400 20.1703 43.3815 -Verdana.ttf 77 , 12.1891 18.6372 63 U -33.7572 32.6187 43.3815 -Verdana.ttf 77 , 12.1891 18.6372 64 j -34.3201 16.4964 53.8592 -Verdana.ttf 77 , 12.1891 18.6372 65 ( -36.2230 17.3150 56.0000 -Verdana.ttf 77 , 12.1891 18.6372 66 7 -34.0021 29.1741 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 67 § -35.3540 27.0333 54.3965 -Verdana.ttf 77 , 12.1891 18.6372 68 $ -36.5545 28.8186 54.8039 -Verdana.ttf 77 , 12.1891 18.6372 69 € -35.3304 34.6555 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 70 / -36.0962 25.1446 53.0150 -Verdana.ttf 77 , 12.1891 18.6372 71 C -34.8574 35.1627 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 72 * -35.8738 27.3888 26.3188 -Verdana.ttf 77 , 12.1891 18.6372 73 ” -36.1967 23.0072 16.1408 -Verdana.ttf 77 , 12.1891 18.6372 74 ? -35.1779 23.9705 43.3815 -Verdana.ttf 77 , 12.1891 18.6372 75 { -35.8045 26.6962 55.4929 -Verdana.ttf 77 , 12.1891 18.6372 76 } -36.1164 26.6962 55.4929 -Verdana.ttf 77 , 12.1891 18.6372 77 , 0.1806 12.1891 18.6372 -Verdana.ttf 77 , 12.1891 18.6372 78 I -33.9419 16.4442 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 79 ° -35.5134 22.7964 22.7964 -Verdana.ttf 77 , 12.1891 18.6372 80 K -33.6924 33.3333 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 81 H -34.1509 32.7255 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 82 q -24.5425 28.2003 44.4964 -Verdana.ttf 77 , 12.1891 18.6372 83 & -35.2799 41.1629 44.5557 -Verdana.ttf 77 , 12.1891 18.6372 84 ’ -36.0726 11.5036 16.1408 -Verdana.ttf 77 , 12.1891 18.6372 85 [ -36.5709 15.1741 55.4929 -Verdana.ttf 77 , 12.1891 18.6372 86 - -13.0775 17.6705 4.8447 -Verdana.ttf 77 , 12.1891 18.6372 87 Y -34.2154 35.8297 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 88 Q -35.2930 40.5737 54.5262 -Verdana.ttf 77 , 12.1891 18.6372 89 " -36.2500 17.3150 16.3483 -Verdana.ttf 77 , 12.1891 18.6372 90 ! -33.8548 5.4814 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 91 x -23.5189 31.1449 31.6705 -Verdana.ttf 77 , 12.1891 18.6372 92 ) -36.0430 17.3150 56.0000 -Verdana.ttf 77 , 12.1891 18.6372 93 = -18.9523 33.8114 16.4964 -Verdana.ttf 77 , 12.1891 18.6372 94 + -27.6661 34.9855 34.9855 -Verdana.ttf 77 , 12.1891 18.6372 95 X -34.0456 35.9074 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 96 » -24.4486 28.0000 28.0000 -Verdana.ttf 77 , 12.1891 18.6372 97 ' -35.9982 6.1703 16.3483 -Verdana.ttf 77 , 12.1891 18.6372 98 ¢ -33.2558 27.2855 51.6115 -Verdana.ttf 77 , 12.1891 18.6372 99 Z -34.0985 33.2036 42.2074 -Verdana.ttf 77 , 12.1891 18.6372 100 > -27.0280 32.8447 32.8447 -Verdana.ttf 77 , 12.1891 18.6372 101 ® -35.1160 49.3445 49.3445 -Verdana.ttf 77 , 12.1891 18.6372 102 © -35.3242 49.3445 49.3445 -Verdana.ttf 77 , 12.1891 18.6372 103 ] -36.1462 15.1741 55.4929 -Verdana.ttf 77 , 12.1891 18.6372 104 é -39.3699 28.8152 48.8629 -Verdana.ttf 77 , 12.1891 18.6372 105 z -23.7529 25.5036 31.6705 -Verdana.ttf 77 , 12.1891 18.6372 106 _ 13.3421 37.0038 3.3150 -Verdana.ttf 77 , 12.1891 18.6372 107 ¥ -34.0456 31.1332 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 1 t 1.2904 20.1669 41.8484 -Verdana.ttf 78 I 16.4442 42.2074 2 h -1.9722 26.4669 44.3483 -Verdana.ttf 78 I 16.4442 42.2074 3 a 9.2652 26.7969 34.0188 -Verdana.ttf 78 I 16.4442 42.2074 4 n 9.4843 26.4669 32.8447 -Verdana.ttf 78 I 16.4442 42.2074 5 P -0.1374 27.8519 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 6 o 9.1589 29.3745 34.0188 -Verdana.ttf 78 I 16.4442 42.2074 7 e 9.2739 28.8152 34.0188 -Verdana.ttf 78 I 16.4442 42.2074 8 : 10.2561 6.6555 31.6705 -Verdana.ttf 78 I 16.4442 42.2074 9 r 10.4552 19.6817 31.6705 -Verdana.ttf 78 I 16.4442 42.2074 10 l -2.0283 5.3333 44.3483 -Verdana.ttf 78 I 16.4442 42.2074 11 i -0.0370 5.3333 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 12 1 0.0736 22.9445 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 13 | -2.4172 5.2036 55.4929 -Verdana.ttf 78 I 16.4442 42.2074 14 N 0.0086 31.5514 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 15 f -2.0153 20.5259 44.3483 -Verdana.ttf 78 I 16.4442 42.2074 16 g 9.3229 28.2003 44.4964 -Verdana.ttf 78 I 16.4442 42.2074 17 d -2.1408 28.2003 45.5224 -Verdana.ttf 78 I 16.4442 42.2074 18 W 0.2005 52.3887 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 19 s 9.3998 25.0150 34.0188 -Verdana.ttf 78 I 16.4442 42.2074 20 c 9.5103 25.6820 34.0188 -Verdana.ttf 78 I 16.4442 42.2074 21 u 10.1658 26.4669 32.8447 -Verdana.ttf 78 I 16.4442 42.2074 22 3 -1.3667 28.2074 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 23 ~ 14.6979 37.0038 17.5224 -Verdana.ttf 78 I 16.4442 42.2074 24 # 0.0000 36.5186 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 25 O -1.1774 39.3996 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 26 ` -5.5659 11.8592 10.6850 -Verdana.ttf 78 I 16.4442 42.2074 27 @ -1.4446 48.3778 49.6815 -Verdana.ttf 78 I 16.4442 42.2074 28 F 0.1360 26.3478 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 29 S -1.1176 32.5147 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 30 p 9.1781 28.2003 44.4964 -Verdana.ttf 78 I 16.4442 42.2074 31 “ -2.2783 23.0072 16.1408 -Verdana.ttf 78 I 16.4442 42.2074 32 % -1.0540 54.3188 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 33 £ -1.0348 29.1741 43.3815 -Verdana.ttf 78 I 16.4442 42.2074 34 . 34.1243 6.6555 8.1886 -Verdana.ttf 78 I 16.4442 42.2074 35 2 -0.9511 28.3370 43.3815 -Verdana.ttf 78 I 16.4442 42.2074 36 5 -1.2011 27.5114 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 37 m 9.4738 46.3480 32.8447 -Verdana.ttf 78 I 16.4442 42.2074 38 V 0.2808 37.5109 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 39 6 -1.2140 29.6593 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 40 w 10.2932 42.9667 31.6705 -Verdana.ttf 78 I 16.4442 42.2074 41 T -0.1066 35.8297 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 42 M -0.0788 37.7217 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 43 G -1.3384 38.0483 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 44 b -1.9399 28.2003 45.5224 -Verdana.ttf 78 I 16.4442 42.2074 45 9 -1.1031 29.6593 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 46 ; 10.4100 12.1891 42.1191 -Verdana.ttf 78 I 16.4442 42.2074 47 D -0.0293 35.8587 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 48 L -0.2629 26.6777 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 49 y 10.4543 31.1449 43.3223 -Verdana.ttf 78 I 16.4442 42.2074 50 ‘ -2.4027 11.5036 16.1408 -Verdana.ttf 78 I 16.4442 42.2074 51 \ -2.1263 25.1446 53.0150 -Verdana.ttf 78 I 16.4442 42.2074 52 R -0.2173 34.9855 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 53 < 6.9743 32.8447 32.8447 -Verdana.ttf 78 I 16.4442 42.2074 54 4 -0.0784 32.2369 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 55 8 -1.2285 29.9590 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 56 0 -1.2115 28.9448 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 57 A -0.0831 37.5109 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 58 E 0.0000 27.8774 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 59 B 0.0134 32.0295 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 60 v 10.6138 31.1449 31.6705 -Verdana.ttf 78 I 16.4442 42.2074 61 k -2.1423 29.1741 44.3483 -Verdana.ttf 78 I 16.4442 42.2074 62 J -0.1288 20.1703 43.3815 -Verdana.ttf 78 I 16.4442 42.2074 63 U -0.1668 32.6187 43.3815 -Verdana.ttf 78 I 16.4442 42.2074 64 j 0.0558 16.4964 53.8592 -Verdana.ttf 78 I 16.4442 42.2074 65 ( -2.2077 17.3150 56.0000 -Verdana.ttf 78 I 16.4442 42.2074 66 7 0.3315 29.1741 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 67 § -1.3344 27.0333 54.3965 -Verdana.ttf 78 I 16.4442 42.2074 68 $ -2.5223 28.8186 54.8039 -Verdana.ttf 78 I 16.4442 42.2074 69 € -1.2611 34.6555 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 70 / -2.1081 25.1446 53.0150 -Verdana.ttf 78 I 16.4442 42.2074 71 C -1.0011 35.1627 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 72 * -2.2682 27.3888 26.3188 -Verdana.ttf 78 I 16.4442 42.2074 73 ” -2.3832 23.0072 16.1408 -Verdana.ttf 78 I 16.4442 42.2074 74 ? -1.1139 23.9705 43.3815 -Verdana.ttf 78 I 16.4442 42.2074 75 { -1.9616 26.6962 55.4929 -Verdana.ttf 78 I 16.4442 42.2074 76 } -2.3994 26.6962 55.4929 -Verdana.ttf 78 I 16.4442 42.2074 77 , 34.0206 12.1891 18.6372 -Verdana.ttf 78 I 16.4442 42.2074 78 I 0.2191 16.4442 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 79 ° -1.2778 22.7964 22.7964 -Verdana.ttf 78 I 16.4442 42.2074 80 K -0.0370 33.3333 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 81 H -0.0206 32.7255 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 82 q 9.1884 28.2003 44.4964 -Verdana.ttf 78 I 16.4442 42.2074 83 & -1.3355 41.1629 44.5557 -Verdana.ttf 78 I 16.4442 42.2074 84 ’ -2.2044 11.5036 16.1408 -Verdana.ttf 78 I 16.4442 42.2074 85 [ -2.4292 15.1741 55.4929 -Verdana.ttf 78 I 16.4442 42.2074 86 - 20.8313 17.6705 4.8447 -Verdana.ttf 78 I 16.4442 42.2074 87 Y -0.0249 35.8297 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 88 Q -1.3250 40.5737 54.5262 -Verdana.ttf 78 I 16.4442 42.2074 89 " -2.1955 17.3150 16.3483 -Verdana.ttf 78 I 16.4442 42.2074 90 ! 0.1835 5.4814 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 91 x 10.4128 31.1449 31.6705 -Verdana.ttf 78 I 16.4442 42.2074 92 ) -1.7957 17.3150 56.0000 -Verdana.ttf 78 I 16.4442 42.2074 93 = 15.3339 33.8114 16.4964 -Verdana.ttf 78 I 16.4442 42.2074 94 + 6.3643 34.9855 34.9855 -Verdana.ttf 78 I 16.4442 42.2074 95 X 0.0370 35.9074 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 96 » 9.5567 28.0000 28.0000 -Verdana.ttf 78 I 16.4442 42.2074 97 ' -2.3548 6.1703 16.3483 -Verdana.ttf 78 I 16.4442 42.2074 98 ¢ 0.5164 27.2855 51.6115 -Verdana.ttf 78 I 16.4442 42.2074 99 Z -0.0047 33.2036 42.2074 -Verdana.ttf 78 I 16.4442 42.2074 100 > 7.1088 32.8447 32.8447 -Verdana.ttf 78 I 16.4442 42.2074 101 ® -1.1639 49.3445 49.3445 -Verdana.ttf 78 I 16.4442 42.2074 102 © -1.2539 49.3445 49.3445 -Verdana.ttf 78 I 16.4442 42.2074 103 ] -2.4066 15.1741 55.4929 -Verdana.ttf 78 I 16.4442 42.2074 104 é -5.5290 28.8152 48.8629 -Verdana.ttf 78 I 16.4442 42.2074 105 z 10.5369 25.5036 31.6705 -Verdana.ttf 78 I 16.4442 42.2074 106 _ 47.2398 37.0038 3.3150 -Verdana.ttf 78 I 16.4442 42.2074 107 ¥ -0.1628 31.1332 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 1 t 2.7105 20.1669 41.8484 -Verdana.ttf 79 ° 22.7964 22.7964 2 h -1.0598 26.4669 44.3483 -Verdana.ttf 79 ° 22.7964 22.7964 3 a 10.5854 26.7969 34.0188 -Verdana.ttf 79 ° 22.7964 22.7964 4 n 10.5768 26.4669 32.8447 -Verdana.ttf 79 ° 22.7964 22.7964 5 P 1.5340 27.8519 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 6 o 10.3874 29.3745 34.0188 -Verdana.ttf 79 ° 22.7964 22.7964 7 e 10.7108 28.8152 34.0188 -Verdana.ttf 79 ° 22.7964 22.7964 8 : 11.6167 6.6555 31.6705 -Verdana.ttf 79 ° 22.7964 22.7964 9 r 11.5529 19.6817 31.6705 -Verdana.ttf 79 ° 22.7964 22.7964 10 l -1.0152 5.3333 44.3483 -Verdana.ttf 79 ° 22.7964 22.7964 11 i 1.4245 5.3333 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 12 1 1.2394 22.9445 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 13 | -0.7447 5.2036 55.4929 -Verdana.ttf 79 ° 22.7964 22.7964 14 N 1.1207 31.5514 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 15 f -1.0690 20.5259 44.3483 -Verdana.ttf 79 ° 22.7964 22.7964 16 g 10.5282 28.2003 44.4964 -Verdana.ttf 79 ° 22.7964 22.7964 17 d -0.7509 28.2003 45.5224 -Verdana.ttf 79 ° 22.7964 22.7964 18 W 1.0686 52.3887 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 19 s 10.5340 25.0150 34.0188 -Verdana.ttf 79 ° 22.7964 22.7964 20 c 10.5032 25.6820 34.0188 -Verdana.ttf 79 ° 22.7964 22.7964 21 u 11.6697 26.4669 32.8447 -Verdana.ttf 79 ° 22.7964 22.7964 22 3 -0.2133 28.2074 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 23 ~ 15.9361 37.0038 17.5224 -Verdana.ttf 79 ° 22.7964 22.7964 24 # 1.1842 36.5186 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 25 O 0.0418 39.3996 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 26 ` -4.3539 11.8592 10.6850 -Verdana.ttf 79 ° 22.7964 22.7964 27 @ -0.0298 48.3778 49.6815 -Verdana.ttf 79 ° 22.7964 22.7964 28 F 1.2086 26.3478 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 29 S -0.0202 32.5147 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 30 p 10.3802 28.2003 44.4964 -Verdana.ttf 79 ° 22.7964 22.7964 31 “ -0.9561 23.0072 16.1408 -Verdana.ttf 79 ° 22.7964 22.7964 32 % -0.1335 54.3188 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 33 £ 0.0101 29.1741 43.3815 -Verdana.ttf 79 ° 22.7964 22.7964 34 . 35.3482 6.6555 8.1886 -Verdana.ttf 79 ° 22.7964 22.7964 35 2 0.0591 28.3370 43.3815 -Verdana.ttf 79 ° 22.7964 22.7964 36 5 0.0101 27.5114 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 37 m 10.7328 46.3480 32.8447 -Verdana.ttf 79 ° 22.7964 22.7964 38 V 0.7643 37.5109 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 39 6 0.0769 29.6593 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 40 w 11.6946 42.9667 31.6705 -Verdana.ttf 79 ° 22.7964 22.7964 41 T 1.3015 35.8297 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 42 M 1.0207 37.7217 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 43 G 0.0816 38.0483 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 44 b -0.9268 28.2003 45.5224 -Verdana.ttf 79 ° 22.7964 22.7964 45 9 -0.0384 29.6593 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 46 ; 12.0949 12.1891 42.1191 -Verdana.ttf 79 ° 22.7964 22.7964 47 D 1.3414 35.8587 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 48 L 1.0174 26.6777 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 49 y 11.6207 31.1449 43.3223 -Verdana.ttf 79 ° 22.7964 22.7964 50 ‘ -0.9711 11.5036 16.1408 -Verdana.ttf 79 ° 22.7964 22.7964 51 \ -0.8931 25.1446 53.0150 -Verdana.ttf 79 ° 22.7964 22.7964 52 R 1.2474 34.9855 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 53 < 8.1680 32.8447 32.8447 -Verdana.ttf 79 ° 22.7964 22.7964 54 4 1.1356 32.2369 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 55 8 -0.0870 29.9590 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 56 0 -0.2090 28.9448 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 57 A 1.2491 37.5109 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 58 E 1.1836 27.8774 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 59 B 1.2423 32.0295 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 60 v 11.5095 31.1449 31.6705 -Verdana.ttf 79 ° 22.7964 22.7964 61 k -1.1037 29.1741 44.3483 -Verdana.ttf 79 ° 22.7964 22.7964 62 J 1.1223 20.1703 43.3815 -Verdana.ttf 79 ° 22.7964 22.7964 63 U 1.2611 32.6187 43.3815 -Verdana.ttf 79 ° 22.7964 22.7964 64 j 1.0491 16.4964 53.8592 -Verdana.ttf 79 ° 22.7964 22.7964 65 ( -1.1027 17.3150 56.0000 -Verdana.ttf 79 ° 22.7964 22.7964 66 7 1.5947 29.1741 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 67 § 0.0638 27.0333 54.3965 -Verdana.ttf 79 ° 22.7964 22.7964 68 $ -1.4471 28.8186 54.8039 -Verdana.ttf 79 ° 22.7964 22.7964 69 € -0.0635 34.6555 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 70 / -0.7908 25.1446 53.0150 -Verdana.ttf 79 ° 22.7964 22.7964 71 C -0.2710 35.1627 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 72 * -0.9700 27.3888 26.3188 -Verdana.ttf 79 ° 22.7964 22.7964 73 ” -1.0009 23.0072 16.1408 -Verdana.ttf 79 ° 22.7964 22.7964 74 ? -0.0538 23.9705 43.3815 -Verdana.ttf 79 ° 22.7964 22.7964 75 { -0.8532 26.6962 55.4929 -Verdana.ttf 79 ° 22.7964 22.7964 76 } -0.8567 26.6962 55.4929 -Verdana.ttf 79 ° 22.7964 22.7964 77 , 35.2771 12.1891 18.6372 -Verdana.ttf 79 ° 22.7964 22.7964 78 I 1.4399 16.4442 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 79 ° 0.0000 22.7964 22.7964 -Verdana.ttf 79 ° 22.7964 22.7964 80 K 0.9431 33.3333 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 81 H 1.0737 32.7255 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 82 q 10.7109 28.2003 44.4964 -Verdana.ttf 79 ° 22.7964 22.7964 83 & 0.1922 41.1629 44.5557 -Verdana.ttf 79 ° 22.7964 22.7964 84 ’ -0.7894 11.5036 16.1408 -Verdana.ttf 79 ° 22.7964 22.7964 85 [ -0.9238 15.1741 55.4929 -Verdana.ttf 79 ° 22.7964 22.7964 86 - 22.1140 17.6705 4.8447 -Verdana.ttf 79 ° 22.7964 22.7964 87 Y 1.1117 35.8297 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 88 Q 0.0769 40.5737 54.5262 -Verdana.ttf 79 ° 22.7964 22.7964 89 " -1.1206 17.3150 16.3483 -Verdana.ttf 79 ° 22.7964 22.7964 90 ! 1.5072 5.4814 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 91 x 11.3751 31.1449 31.6705 -Verdana.ttf 79 ° 22.7964 22.7964 92 ) -0.8931 17.3150 56.0000 -Verdana.ttf 79 ° 22.7964 22.7964 93 = 16.8489 33.8114 16.4964 -Verdana.ttf 79 ° 22.7964 22.7964 94 + 7.2150 34.9855 34.9855 -Verdana.ttf 79 ° 22.7964 22.7964 95 X 1.2145 35.9074 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 96 » 10.8717 28.0000 28.0000 -Verdana.ttf 79 ° 22.7964 22.7964 97 ' -0.8494 6.1703 16.3483 -Verdana.ttf 79 ° 22.7964 22.7964 98 ¢ 1.6803 27.2855 51.6115 -Verdana.ttf 79 ° 22.7964 22.7964 99 Z 1.2179 33.2036 42.2074 -Verdana.ttf 79 ° 22.7964 22.7964 100 > 8.2890 32.8447 32.8447 -Verdana.ttf 79 ° 22.7964 22.7964 101 ® -0.0667 49.3445 49.3445 -Verdana.ttf 79 ° 22.7964 22.7964 102 © -0.1274 49.3445 49.3445 -Verdana.ttf 79 ° 22.7964 22.7964 103 ] -0.9268 15.1741 55.4929 -Verdana.ttf 79 ° 22.7964 22.7964 104 é -4.1415 28.8152 48.8629 -Verdana.ttf 79 ° 22.7964 22.7964 105 z 11.7893 25.5036 31.6705 -Verdana.ttf 79 ° 22.7964 22.7964 106 _ 48.3929 37.0038 3.3150 -Verdana.ttf 79 ° 22.7964 22.7964 107 ¥ 1.1309 31.1332 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 1 t 1.4529 20.1669 41.8484 -Verdana.ttf 80 K 33.3333 42.2074 2 h -2.1688 26.4669 44.3483 -Verdana.ttf 80 K 33.3333 42.2074 3 a 9.3199 26.7969 34.0188 -Verdana.ttf 80 K 33.3333 42.2074 4 n 9.3723 26.4669 32.8447 -Verdana.ttf 80 K 33.3333 42.2074 5 P 0.0167 27.8519 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 6 o 9.1701 29.3745 34.0188 -Verdana.ttf 80 K 33.3333 42.2074 7 e 9.1498 28.8152 34.0188 -Verdana.ttf 80 K 33.3333 42.2074 8 : 10.5768 6.6555 31.6705 -Verdana.ttf 80 K 33.3333 42.2074 9 r 10.7425 19.6817 31.6705 -Verdana.ttf 80 K 33.3333 42.2074 10 l -2.1469 5.3333 44.3483 -Verdana.ttf 80 K 33.3333 42.2074 11 i 0.3784 5.3333 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 12 1 -0.0134 22.9445 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 13 | -2.3229 5.2036 55.4929 -Verdana.ttf 80 K 33.3333 42.2074 14 N -0.0413 31.5514 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 15 f -1.9544 20.5259 44.3483 -Verdana.ttf 80 K 33.3333 42.2074 16 g 9.6804 28.2003 44.4964 -Verdana.ttf 80 K 33.3333 42.2074 17 d -2.2663 28.2003 45.5224 -Verdana.ttf 80 K 33.3333 42.2074 18 W 0.0533 52.3887 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 19 s 9.2199 25.0150 34.0188 -Verdana.ttf 80 K 33.3333 42.2074 20 c 9.4944 25.6820 34.0188 -Verdana.ttf 80 K 33.3333 42.2074 21 u 10.8781 26.4669 32.8447 -Verdana.ttf 80 K 33.3333 42.2074 22 3 -1.0958 28.2074 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 23 ~ 14.8157 37.0038 17.5224 -Verdana.ttf 80 K 33.3333 42.2074 24 # -0.1201 36.5186 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 25 O -1.2611 39.3996 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 26 ` -5.7020 11.8592 10.6850 -Verdana.ttf 80 K 33.3333 42.2074 27 @ -1.3414 48.3778 49.6815 -Verdana.ttf 80 K 33.3333 42.2074 28 F -0.3432 26.3478 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 29 S -1.0204 32.5147 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 30 p 9.4963 28.2003 44.4964 -Verdana.ttf 80 K 33.3333 42.2074 31 “ -2.1913 23.0072 16.1408 -Verdana.ttf 80 K 33.3333 42.2074 32 % -1.3370 54.3188 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 33 £ -1.5710 29.1741 43.3815 -Verdana.ttf 80 K 33.3333 42.2074 34 . 34.0688 6.6555 8.1886 -Verdana.ttf 80 K 33.3333 42.2074 35 2 -1.1270 28.3370 43.3815 -Verdana.ttf 80 K 33.3333 42.2074 36 5 -1.2597 27.5114 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 37 m 9.1960 46.3480 32.8447 -Verdana.ttf 80 K 33.3333 42.2074 38 V -0.2111 37.5109 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 39 6 -1.1447 29.6593 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 40 w 10.5768 42.9667 31.6705 -Verdana.ttf 80 K 33.3333 42.2074 41 T 0.2144 35.8297 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 42 M -0.1542 37.7217 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 43 G -1.0400 38.0483 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 44 b -2.1141 28.2003 45.5224 -Verdana.ttf 80 K 33.3333 42.2074 45 9 -1.1161 29.6593 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 46 ; 10.5633 12.1891 42.1191 -Verdana.ttf 80 K 33.3333 42.2074 47 D -0.0062 35.8587 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 48 L -0.1302 26.6777 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 49 y 10.3077 31.1449 43.3223 -Verdana.ttf 80 K 33.3333 42.2074 50 ‘ -2.0168 11.5036 16.1408 -Verdana.ttf 80 K 33.3333 42.2074 51 \ -2.3164 25.1446 53.0150 -Verdana.ttf 80 K 33.3333 42.2074 52 R -0.3935 34.9855 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 53 < 7.0000 32.8447 32.8447 -Verdana.ttf 80 K 33.3333 42.2074 54 4 0.1821 32.2369 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 55 8 -0.8680 29.9590 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 56 0 -1.2435 28.9448 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 57 A -0.0505 37.5109 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 58 E 0.0073 27.8774 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 59 B -0.1331 32.0295 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 60 v 10.5873 31.1449 31.6705 -Verdana.ttf 80 K 33.3333 42.2074 61 k -2.0814 29.1741 44.3483 -Verdana.ttf 80 K 33.3333 42.2074 62 J 0.0500 20.1703 43.3815 -Verdana.ttf 80 K 33.3333 42.2074 63 U 0.2662 32.6187 43.3815 -Verdana.ttf 80 K 33.3333 42.2074 64 j -0.1567 16.4964 53.8592 -Verdana.ttf 80 K 33.3333 42.2074 65 ( -2.1366 17.3150 56.0000 -Verdana.ttf 80 K 33.3333 42.2074 66 7 0.2806 29.1741 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 67 § -1.3236 27.0333 54.3965 -Verdana.ttf 80 K 33.3333 42.2074 68 $ -2.5775 28.8186 54.8039 -Verdana.ttf 80 K 33.3333 42.2074 69 € -0.8633 34.6555 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 70 / -2.1779 25.1446 53.0150 -Verdana.ttf 80 K 33.3333 42.2074 71 C -1.1371 35.1627 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 72 * -1.9769 27.3888 26.3188 -Verdana.ttf 80 K 33.3333 42.2074 73 ” -2.2722 23.0072 16.1408 -Verdana.ttf 80 K 33.3333 42.2074 74 ? -0.8086 23.9705 43.3815 -Verdana.ttf 80 K 33.3333 42.2074 75 { -1.9621 26.6962 55.4929 -Verdana.ttf 80 K 33.3333 42.2074 76 } -2.1601 26.6962 55.4929 -Verdana.ttf 80 K 33.3333 42.2074 77 , 34.2412 12.1891 18.6372 -Verdana.ttf 80 K 33.3333 42.2074 78 I 0.0352 16.4442 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 79 ° -0.9424 22.7964 22.7964 -Verdana.ttf 80 K 33.3333 42.2074 80 K 0.1893 33.3333 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 81 H 0.3450 32.7255 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 82 q 9.3041 28.2003 44.4964 -Verdana.ttf 80 K 33.3333 42.2074 83 & -0.9681 41.1629 44.5557 -Verdana.ttf 80 K 33.3333 42.2074 84 ’ -2.1326 11.5036 16.1408 -Verdana.ttf 80 K 33.3333 42.2074 85 [ -1.8462 15.1741 55.4929 -Verdana.ttf 80 K 33.3333 42.2074 86 - 20.7433 17.6705 4.8447 -Verdana.ttf 80 K 33.3333 42.2074 87 Y 0.0580 35.8297 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 88 Q -1.1774 40.5737 54.5262 -Verdana.ttf 80 K 33.3333 42.2074 89 " -2.1380 17.3150 16.3483 -Verdana.ttf 80 K 33.3333 42.2074 90 ! 0.0572 5.4814 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 91 x 10.3134 31.1449 31.6705 -Verdana.ttf 80 K 33.3333 42.2074 92 ) -2.1955 17.3150 56.0000 -Verdana.ttf 80 K 33.3333 42.2074 93 = 15.2974 33.8114 16.4964 -Verdana.ttf 80 K 33.3333 42.2074 94 + 6.2812 34.9855 34.9855 -Verdana.ttf 80 K 33.3333 42.2074 95 X -0.0692 35.9074 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 96 » 9.6206 28.0000 28.0000 -Verdana.ttf 80 K 33.3333 42.2074 97 ' -2.3657 6.1703 16.3483 -Verdana.ttf 80 K 33.3333 42.2074 98 ¢ 0.6909 27.2855 51.6115 -Verdana.ttf 80 K 33.3333 42.2074 99 Z -0.4729 33.2036 42.2074 -Verdana.ttf 80 K 33.3333 42.2074 100 > 7.2289 32.8447 32.8447 -Verdana.ttf 80 K 33.3333 42.2074 101 ® -1.2611 49.3445 49.3445 -Verdana.ttf 80 K 33.3333 42.2074 102 © -0.9608 49.3445 49.3445 -Verdana.ttf 80 K 33.3333 42.2074 103 ] -2.2178 15.1741 55.4929 -Verdana.ttf 80 K 33.3333 42.2074 104 é -5.4760 28.8152 48.8629 -Verdana.ttf 80 K 33.3333 42.2074 105 z 10.5587 25.5036 31.6705 -Verdana.ttf 80 K 33.3333 42.2074 106 _ 47.4124 37.0038 3.3150 -Verdana.ttf 80 K 33.3333 42.2074 107 ¥ -0.1850 31.1332 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 1 t 1.2697 20.1669 41.8484 -Verdana.ttf 81 H 32.7255 42.2074 2 h -2.5772 26.4669 44.3483 -Verdana.ttf 81 H 32.7255 42.2074 3 a 9.3341 26.7969 34.0188 -Verdana.ttf 81 H 32.7255 42.2074 4 n 9.3051 26.4669 32.8447 -Verdana.ttf 81 H 32.7255 42.2074 5 P 0.3591 27.8519 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 6 o 9.6026 29.3745 34.0188 -Verdana.ttf 81 H 32.7255 42.2074 7 e 9.5772 28.8152 34.0188 -Verdana.ttf 81 H 32.7255 42.2074 8 : 10.4499 6.6555 31.6705 -Verdana.ttf 81 H 32.7255 42.2074 9 r 10.4979 19.6817 31.6705 -Verdana.ttf 81 H 32.7255 42.2074 10 l -2.0049 5.3333 44.3483 -Verdana.ttf 81 H 32.7255 42.2074 11 i 0.1909 5.3333 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 12 1 0.0239 22.9445 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 13 | -2.5254 5.2036 55.4929 -Verdana.ttf 81 H 32.7255 42.2074 14 N -0.0976 31.5514 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 15 f -2.3994 20.5259 44.3483 -Verdana.ttf 81 H 32.7255 42.2074 16 g 9.4368 28.2003 44.4964 -Verdana.ttf 81 H 32.7255 42.2074 17 d -2.2919 28.2003 45.5224 -Verdana.ttf 81 H 32.7255 42.2074 18 W 0.2147 52.3887 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 19 s 9.2691 25.0150 34.0188 -Verdana.ttf 81 H 32.7255 42.2074 20 c 9.1788 25.6820 34.0188 -Verdana.ttf 81 H 32.7255 42.2074 21 u 10.6439 26.4669 32.8447 -Verdana.ttf 81 H 32.7255 42.2074 22 3 -1.2246 28.2074 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 23 ~ 14.6601 37.0038 17.5224 -Verdana.ttf 81 H 32.7255 42.2074 24 # -0.0471 36.5186 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 25 O -0.6584 39.3996 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 26 ` -5.7746 11.8592 10.6850 -Verdana.ttf 81 H 32.7255 42.2074 27 @ -0.8752 48.3778 49.6815 -Verdana.ttf 81 H 32.7255 42.2074 28 F 0.1161 26.3478 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 29 S -1.1666 32.5147 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 30 p 9.5223 28.2003 44.4964 -Verdana.ttf 81 H 32.7255 42.2074 31 “ -2.2102 23.0072 16.1408 -Verdana.ttf 81 H 32.7255 42.2074 32 % -0.9641 54.3188 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 33 £ -0.9630 29.1741 43.3815 -Verdana.ttf 81 H 32.7255 42.2074 34 . 34.0838 6.6555 8.1886 -Verdana.ttf 81 H 32.7255 42.2074 35 2 -1.1770 28.3370 43.3815 -Verdana.ttf 81 H 32.7255 42.2074 36 5 -1.0904 27.5114 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 37 m 9.4802 46.3480 32.8447 -Verdana.ttf 81 H 32.7255 42.2074 38 V -0.1879 37.5109 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 39 6 -1.1861 29.6593 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 40 w 10.3649 42.9667 31.6705 -Verdana.ttf 81 H 32.7255 42.2074 41 T 0.1168 35.8297 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 42 M -0.0519 37.7217 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 43 G -1.0471 38.0483 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 44 b -2.1210 28.2003 45.5224 -Verdana.ttf 81 H 32.7255 42.2074 45 9 -1.1084 29.6593 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 46 ; 10.2174 12.1891 42.1191 -Verdana.ttf 81 H 32.7255 42.2074 47 D 0.3171 35.8587 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 48 L 0.0831 26.6777 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 49 y 10.4354 31.1449 43.3223 -Verdana.ttf 81 H 32.7255 42.2074 50 ‘ -1.9736 11.5036 16.1408 -Verdana.ttf 81 H 32.7255 42.2074 51 \ -1.7789 25.1446 53.0150 -Verdana.ttf 81 H 32.7255 42.2074 52 R -0.6181 34.9855 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 53 < 7.0987 32.8447 32.8447 -Verdana.ttf 81 H 32.7255 42.2074 54 4 -0.1582 32.2369 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 55 8 -1.2714 29.9590 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 56 0 -1.1346 28.9448 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 57 A 0.0584 37.5109 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 58 E -0.2125 27.8774 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 59 B 0.0265 32.0295 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 60 v 10.7480 31.1449 31.6705 -Verdana.ttf 81 H 32.7255 42.2074 61 k -1.7669 29.1741 44.3483 -Verdana.ttf 81 H 32.7255 42.2074 62 J 0.1698 20.1703 43.3815 -Verdana.ttf 81 H 32.7255 42.2074 63 U -0.0533 32.6187 43.3815 -Verdana.ttf 81 H 32.7255 42.2074 64 j -0.2913 16.4964 53.8592 -Verdana.ttf 81 H 32.7255 42.2074 65 ( -2.3182 17.3150 56.0000 -Verdana.ttf 81 H 32.7255 42.2074 66 7 -0.1499 29.1741 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 67 § -1.2775 27.0333 54.3965 -Verdana.ttf 81 H 32.7255 42.2074 68 $ -2.4279 28.8186 54.8039 -Verdana.ttf 81 H 32.7255 42.2074 69 € -1.1356 34.6555 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 70 / -2.3965 25.1446 53.0150 -Verdana.ttf 81 H 32.7255 42.2074 71 C -1.3913 35.1627 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 72 * -1.8361 27.3888 26.3188 -Verdana.ttf 81 H 32.7255 42.2074 73 ” -2.0904 23.0072 16.1408 -Verdana.ttf 81 H 32.7255 42.2074 74 ? -1.2856 23.9705 43.3815 -Verdana.ttf 81 H 32.7255 42.2074 75 { -2.4826 26.6962 55.4929 -Verdana.ttf 81 H 32.7255 42.2074 76 } -2.0967 26.6962 55.4929 -Verdana.ttf 81 H 32.7255 42.2074 77 , 34.2898 12.1891 18.6372 -Verdana.ttf 81 H 32.7255 42.2074 78 I 0.3641 16.4442 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 79 ° -1.2294 22.7964 22.7964 -Verdana.ttf 81 H 32.7255 42.2074 80 K 0.0385 33.3333 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 81 H -0.0856 32.7255 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 82 q 9.3498 28.2003 44.4964 -Verdana.ttf 81 H 32.7255 42.2074 83 & -1.1356 41.1629 44.5557 -Verdana.ttf 81 H 32.7255 42.2074 84 ’ -1.9696 11.5036 16.1408 -Verdana.ttf 81 H 32.7255 42.2074 85 [ -2.1005 15.1741 55.4929 -Verdana.ttf 81 H 32.7255 42.2074 86 - 20.9653 17.6705 4.8447 -Verdana.ttf 81 H 32.7255 42.2074 87 Y 0.3729 35.8297 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 88 Q -1.3115 40.5737 54.5262 -Verdana.ttf 81 H 32.7255 42.2074 89 " -2.1865 17.3150 16.3483 -Verdana.ttf 81 H 32.7255 42.2074 90 ! -0.1374 5.4814 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 91 x 10.3585 31.1449 31.6705 -Verdana.ttf 81 H 32.7255 42.2074 92 ) -2.0614 17.3150 56.0000 -Verdana.ttf 81 H 32.7255 42.2074 93 = 15.3268 33.8114 16.4964 -Verdana.ttf 81 H 32.7255 42.2074 94 + 6.3451 34.9855 34.9855 -Verdana.ttf 81 H 32.7255 42.2074 95 X -0.0917 35.9074 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 96 » 9.3677 28.0000 28.0000 -Verdana.ttf 81 H 32.7255 42.2074 97 ' -2.1423 6.1703 16.3483 -Verdana.ttf 81 H 32.7255 42.2074 98 ¢ 0.2910 27.2855 51.6115 -Verdana.ttf 81 H 32.7255 42.2074 99 Z 0.0282 33.2036 42.2074 -Verdana.ttf 81 H 32.7255 42.2074 100 > 6.9242 32.8447 32.8447 -Verdana.ttf 81 H 32.7255 42.2074 101 ® -1.2463 49.3445 49.3445 -Verdana.ttf 81 H 32.7255 42.2074 102 © -1.3116 49.3445 49.3445 -Verdana.ttf 81 H 32.7255 42.2074 103 ] -2.0650 15.1741 55.4929 -Verdana.ttf 81 H 32.7255 42.2074 104 é -5.4829 28.8152 48.8629 -Verdana.ttf 81 H 32.7255 42.2074 105 z 10.7190 25.5036 31.6705 -Verdana.ttf 81 H 32.7255 42.2074 106 _ 47.3826 37.0038 3.3150 -Verdana.ttf 81 H 32.7255 42.2074 107 ¥ -0.3773 31.1332 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 1 t -7.7310 20.1669 41.8484 -Verdana.ttf 82 q 28.2003 44.4964 2 h -11.4666 26.4669 44.3483 -Verdana.ttf 82 q 28.2003 44.4964 3 a 0.1400 26.7969 34.0188 -Verdana.ttf 82 q 28.2003 44.4964 4 n 0.1023 26.4669 32.8447 -Verdana.ttf 82 q 28.2003 44.4964 5 P -9.4324 27.8519 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 6 o 0.0932 29.3745 34.0188 -Verdana.ttf 82 q 28.2003 44.4964 7 e 0.2691 28.8152 34.0188 -Verdana.ttf 82 q 28.2003 44.4964 8 : 1.2423 6.6555 31.6705 -Verdana.ttf 82 q 28.2003 44.4964 9 r 1.1136 19.6817 31.6705 -Verdana.ttf 82 q 28.2003 44.4964 10 l -11.4604 5.3333 44.3483 -Verdana.ttf 82 q 28.2003 44.4964 11 i -9.3729 5.3333 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 12 1 -9.3729 22.9445 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 13 | -11.5968 5.2036 55.4929 -Verdana.ttf 82 q 28.2003 44.4964 14 N -9.2392 31.5514 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 15 f -11.2395 20.5259 44.3483 -Verdana.ttf 82 q 28.2003 44.4964 16 g -0.3456 28.2003 44.4964 -Verdana.ttf 82 q 28.2003 44.4964 17 d -11.6349 28.2003 45.5224 -Verdana.ttf 82 q 28.2003 44.4964 18 W -9.7128 52.3887 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 19 s 0.0101 25.0150 34.0188 -Verdana.ttf 82 q 28.2003 44.4964 20 c -0.0327 25.6820 34.0188 -Verdana.ttf 82 q 28.2003 44.4964 21 u 1.0848 26.4669 32.8447 -Verdana.ttf 82 q 28.2003 44.4964 22 3 -10.5772 28.2074 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 23 ~ 5.2687 37.0038 17.5224 -Verdana.ttf 82 q 28.2003 44.4964 24 # -9.3776 36.5186 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 25 O -10.4600 39.3996 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 26 ` -15.0792 11.8592 10.6850 -Verdana.ttf 82 q 28.2003 44.4964 27 @ -10.6406 48.3778 49.6815 -Verdana.ttf 82 q 28.2003 44.4964 28 F -9.6068 26.3478 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 29 S -10.2408 32.5147 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 30 p -0.2100 28.2003 44.4964 -Verdana.ttf 82 q 28.2003 44.4964 31 “ -11.6857 23.0072 16.1408 -Verdana.ttf 82 q 28.2003 44.4964 32 % -10.5826 54.3188 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 33 £ -10.8344 29.1741 43.3815 -Verdana.ttf 82 q 28.2003 44.4964 34 . 24.6166 6.6555 8.1886 -Verdana.ttf 82 q 28.2003 44.4964 35 2 -10.4350 28.3370 43.3815 -Verdana.ttf 82 q 28.2003 44.4964 36 5 -10.7560 27.5114 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 37 m -0.1774 46.3480 32.8447 -Verdana.ttf 82 q 28.2003 44.4964 38 V -9.3891 37.5109 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 39 6 -10.2558 29.6593 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 40 w 1.1178 42.9667 31.6705 -Verdana.ttf 82 q 28.2003 44.4964 41 T -9.4840 35.8297 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 42 M -9.5488 37.7217 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 43 G -10.6786 38.0483 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 44 b -11.5051 28.2003 45.5224 -Verdana.ttf 82 q 28.2003 44.4964 45 9 -10.7570 29.6593 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 46 ; 1.2332 12.1891 42.1191 -Verdana.ttf 82 q 28.2003 44.4964 47 D -9.2771 35.8587 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 48 L -9.5434 26.6777 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 49 y 1.3674 31.1449 43.3223 -Verdana.ttf 82 q 28.2003 44.4964 50 ‘ -11.6443 11.5036 16.1408 -Verdana.ttf 82 q 28.2003 44.4964 51 \ -11.6378 25.1446 53.0150 -Verdana.ttf 82 q 28.2003 44.4964 52 R -9.6351 34.9855 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 53 < -2.0944 32.8447 32.8447 -Verdana.ttf 82 q 28.2003 44.4964 54 4 -9.3863 32.2369 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 55 8 -10.6714 29.9590 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 56 0 -10.4789 28.9448 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 57 A -9.2368 37.5109 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 58 E -9.5222 27.8774 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 59 B -9.4753 32.0295 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 60 v 0.9180 31.1449 31.6705 -Verdana.ttf 82 q 28.2003 44.4964 61 k -11.7328 29.1741 44.3483 -Verdana.ttf 82 q 28.2003 44.4964 62 J -9.3729 20.1703 43.3815 -Verdana.ttf 82 q 28.2003 44.4964 63 U -9.3331 32.6187 43.3815 -Verdana.ttf 82 q 28.2003 44.4964 64 j -9.4175 16.4964 53.8592 -Verdana.ttf 82 q 28.2003 44.4964 65 ( -11.5602 17.3150 56.0000 -Verdana.ttf 82 q 28.2003 44.4964 66 7 -9.1955 29.1741 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 67 § -10.3178 27.0333 54.3965 -Verdana.ttf 82 q 28.2003 44.4964 68 $ -12.2478 28.8186 54.8039 -Verdana.ttf 82 q 28.2003 44.4964 69 € -10.7027 34.6555 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 70 / -11.5435 25.1446 53.0150 -Verdana.ttf 82 q 28.2003 44.4964 71 C -10.5695 35.1627 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 72 * -11.6408 27.3888 26.3188 -Verdana.ttf 82 q 28.2003 44.4964 73 ” -11.3795 23.0072 16.1408 -Verdana.ttf 82 q 28.2003 44.4964 74 ? -10.5739 23.9705 43.3815 -Verdana.ttf 82 q 28.2003 44.4964 75 { -11.3896 26.6962 55.4929 -Verdana.ttf 82 q 28.2003 44.4964 76 } -11.4977 26.6962 55.4929 -Verdana.ttf 82 q 28.2003 44.4964 77 , 24.7544 12.1891 18.6372 -Verdana.ttf 82 q 28.2003 44.4964 78 I -9.4564 16.4442 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 79 ° -10.5739 22.7964 22.7964 -Verdana.ttf 82 q 28.2003 44.4964 80 K -9.4195 33.3333 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 81 H -9.4074 32.7255 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 82 q -0.3627 28.2003 44.4964 -Verdana.ttf 82 q 28.2003 44.4964 83 & -10.4364 41.1629 44.5557 -Verdana.ttf 82 q 28.2003 44.4964 84 ’ -11.3636 11.5036 16.1408 -Verdana.ttf 82 q 28.2003 44.4964 85 [ -11.2643 15.1741 55.4929 -Verdana.ttf 82 q 28.2003 44.4964 86 - 11.0772 17.6705 4.8447 -Verdana.ttf 82 q 28.2003 44.4964 87 Y -9.5036 35.8297 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 88 Q -10.6300 40.5737 54.5262 -Verdana.ttf 82 q 28.2003 44.4964 89 " -11.5036 17.3150 16.3483 -Verdana.ttf 82 q 28.2003 44.4964 90 ! -9.5141 5.4814 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 91 x 1.1640 31.1449 31.6705 -Verdana.ttf 82 q 28.2003 44.4964 92 ) -11.3114 17.3150 56.0000 -Verdana.ttf 82 q 28.2003 44.4964 93 = 6.0093 33.8114 16.4964 -Verdana.ttf 82 q 28.2003 44.4964 94 + -3.1333 34.9855 34.9855 -Verdana.ttf 82 q 28.2003 44.4964 95 X -9.3902 35.9074 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 96 » 0.0631 28.0000 28.0000 -Verdana.ttf 82 q 28.2003 44.4964 97 ' -11.9193 6.1703 16.3483 -Verdana.ttf 82 q 28.2003 44.4964 98 ¢ -8.5084 27.2855 51.6115 -Verdana.ttf 82 q 28.2003 44.4964 99 Z -9.4088 33.2036 42.2074 -Verdana.ttf 82 q 28.2003 44.4964 100 > -2.4712 32.8447 32.8447 -Verdana.ttf 82 q 28.2003 44.4964 101 ® -10.5201 49.3445 49.3445 -Verdana.ttf 82 q 28.2003 44.4964 102 © -10.6670 49.3445 49.3445 -Verdana.ttf 82 q 28.2003 44.4964 103 ] -11.2907 15.1741 55.4929 -Verdana.ttf 82 q 28.2003 44.4964 104 é -14.8710 28.8152 48.8629 -Verdana.ttf 82 q 28.2003 44.4964 105 z 1.0496 25.5036 31.6705 -Verdana.ttf 82 q 28.2003 44.4964 106 _ 38.1447 37.0038 3.3150 -Verdana.ttf 82 q 28.2003 44.4964 107 ¥ -9.3642 31.1332 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 1 t 2.8215 20.1669 41.8484 -Verdana.ttf 83 & 41.1629 44.5557 2 h -0.6976 26.4669 44.3483 -Verdana.ttf 83 & 41.1629 44.5557 3 a 10.4571 26.7969 34.0188 -Verdana.ttf 83 & 41.1629 44.5557 4 n 10.5474 26.4669 32.8447 -Verdana.ttf 83 & 41.1629 44.5557 5 P 1.1862 27.8519 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 6 o 10.4527 29.3745 34.0188 -Verdana.ttf 83 & 41.1629 44.5557 7 e 10.6638 28.8152 34.0188 -Verdana.ttf 83 & 41.1629 44.5557 8 : 11.5703 6.6555 31.6705 -Verdana.ttf 83 & 41.1629 44.5557 9 r 11.5234 19.6817 31.6705 -Verdana.ttf 83 & 41.1629 44.5557 10 l -1.0913 5.3333 44.3483 -Verdana.ttf 83 & 41.1629 44.5557 11 i 1.3102 5.3333 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 12 1 1.2213 22.9445 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 13 | -0.8959 5.2036 55.4929 -Verdana.ttf 83 & 41.1629 44.5557 14 N 1.4389 31.5514 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 15 f -1.0783 20.5259 44.3483 -Verdana.ttf 83 & 41.1629 44.5557 16 g 10.7215 28.2003 44.4964 -Verdana.ttf 83 & 41.1629 44.5557 17 d -1.3926 28.2003 45.5224 -Verdana.ttf 83 & 41.1629 44.5557 18 W 1.3381 52.3887 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 19 s 10.7778 25.0150 34.0188 -Verdana.ttf 83 & 41.1629 44.5557 20 c 10.5571 25.6820 34.0188 -Verdana.ttf 83 & 41.1629 44.5557 21 u 11.3759 26.4669 32.8447 -Verdana.ttf 83 & 41.1629 44.5557 22 3 0.1907 28.2074 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 23 ~ 15.8129 37.0038 17.5224 -Verdana.ttf 83 & 41.1629 44.5557 24 # 1.0559 36.5186 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 25 O -0.0741 39.3996 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 26 ` -4.0602 11.8592 10.6850 -Verdana.ttf 83 & 41.1629 44.5557 27 @ 0.1574 48.3778 49.6815 -Verdana.ttf 83 & 41.1629 44.5557 28 F 1.2082 26.3478 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 29 S 0.0831 32.5147 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 30 p 10.5132 28.2003 44.4964 -Verdana.ttf 83 & 41.1629 44.5557 31 “ -1.1724 23.0072 16.1408 -Verdana.ttf 83 & 41.1629 44.5557 32 % -0.1980 54.3188 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 33 £ -0.0101 29.1741 43.3815 -Verdana.ttf 83 & 41.1629 44.5557 34 . 35.2266 6.6555 8.1886 -Verdana.ttf 83 & 41.1629 44.5557 35 2 -0.1197 28.3370 43.3815 -Verdana.ttf 83 & 41.1629 44.5557 36 5 0.3178 27.5114 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 37 m 10.3135 46.3480 32.8447 -Verdana.ttf 83 & 41.1629 44.5557 38 V 1.3014 37.5109 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 39 6 0.3681 29.6593 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 40 w 11.5798 42.9667 31.6705 -Verdana.ttf 83 & 41.1629 44.5557 41 T 1.2035 35.8297 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 42 M 1.0432 37.7217 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 43 G 0.1173 38.0483 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 44 b -0.7893 28.2003 45.5224 -Verdana.ttf 83 & 41.1629 44.5557 45 9 0.2244 29.6593 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 46 ; 11.6820 12.1891 42.1191 -Verdana.ttf 83 & 41.1629 44.5557 47 D 1.1207 35.8587 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 48 L 1.0152 26.6777 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 49 y 11.6298 31.1449 43.3223 -Verdana.ttf 83 & 41.1629 44.5557 50 ‘ -1.1455 11.5036 16.1408 -Verdana.ttf 83 & 41.1629 44.5557 51 \ -0.8292 25.1446 53.0150 -Verdana.ttf 83 & 41.1629 44.5557 52 R 1.0588 34.9855 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 53 < 8.1426 32.8447 32.8447 -Verdana.ttf 83 & 41.1629 44.5557 54 4 1.1930 32.2369 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 55 8 0.0019 29.9590 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 56 0 -0.0033 28.9448 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 57 A 1.1103 37.5109 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 58 E 1.2307 27.8774 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 59 B 1.2083 32.0295 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 60 v 11.7394 31.1449 31.6705 -Verdana.ttf 83 & 41.1629 44.5557 61 k -0.6754 29.1741 44.3483 -Verdana.ttf 83 & 41.1629 44.5557 62 J 0.8208 20.1703 43.3815 -Verdana.ttf 83 & 41.1629 44.5557 63 U 1.3196 32.6187 43.3815 -Verdana.ttf 83 & 41.1629 44.5557 64 j 0.9550 16.4964 53.8592 -Verdana.ttf 83 & 41.1629 44.5557 65 ( -1.1561 17.3150 56.0000 -Verdana.ttf 83 & 41.1629 44.5557 66 7 1.2408 29.1741 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 67 § 0.1441 27.0333 54.3965 -Verdana.ttf 83 & 41.1629 44.5557 68 $ -1.5197 28.8186 54.8039 -Verdana.ttf 83 & 41.1629 44.5557 69 € 0.1154 34.6555 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 70 / -1.1368 25.1446 53.0150 -Verdana.ttf 83 & 41.1629 44.5557 71 C 0.2306 35.1627 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 72 * -0.9374 27.3888 26.3188 -Verdana.ttf 83 & 41.1629 44.5557 73 ” -1.1677 23.0072 16.1408 -Verdana.ttf 83 & 41.1629 44.5557 74 ? 0.3206 23.9705 43.3815 -Verdana.ttf 83 & 41.1629 44.5557 75 { -1.0350 26.6962 55.4929 -Verdana.ttf 83 & 41.1629 44.5557 76 } -1.1666 26.6962 55.4929 -Verdana.ttf 83 & 41.1629 44.5557 77 , 34.9644 12.1891 18.6372 -Verdana.ttf 83 & 41.1629 44.5557 78 I 1.2807 16.4442 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 79 ° -0.3334 22.7964 22.7964 -Verdana.ttf 83 & 41.1629 44.5557 80 K 1.3500 33.3333 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 81 H 1.0319 32.7255 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 82 q 10.5061 28.2003 44.4964 -Verdana.ttf 83 & 41.1629 44.5557 83 & 0.0620 41.1629 44.5557 -Verdana.ttf 83 & 41.1629 44.5557 84 ’ -0.7704 11.5036 16.1408 -Verdana.ttf 83 & 41.1629 44.5557 85 [ -1.2790 15.1741 55.4929 -Verdana.ttf 83 & 41.1629 44.5557 86 - 22.0535 17.6705 4.8447 -Verdana.ttf 83 & 41.1629 44.5557 87 Y 1.0918 35.8297 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 88 Q 0.1222 40.5737 54.5262 -Verdana.ttf 83 & 41.1629 44.5557 89 " -0.9753 17.3150 16.3483 -Verdana.ttf 83 & 41.1629 44.5557 90 ! 1.1741 5.4814 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 91 x 11.6298 31.1449 31.6705 -Verdana.ttf 83 & 41.1629 44.5557 92 ) -1.1128 17.3150 56.0000 -Verdana.ttf 83 & 41.1629 44.5557 93 = 17.0239 33.8114 16.4964 -Verdana.ttf 83 & 41.1629 44.5557 94 + 7.7964 34.9855 34.9855 -Verdana.ttf 83 & 41.1629 44.5557 95 X 1.1640 35.9074 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 96 » 10.8097 28.0000 28.0000 -Verdana.ttf 83 & 41.1629 44.5557 97 ' -1.4160 6.1703 16.3483 -Verdana.ttf 83 & 41.1629 44.5557 98 ¢ 1.6973 27.2855 51.6115 -Verdana.ttf 83 & 41.1629 44.5557 99 Z 1.0319 33.2036 42.2074 -Verdana.ttf 83 & 41.1629 44.5557 100 > 8.1607 32.8447 32.8447 -Verdana.ttf 83 & 41.1629 44.5557 101 ® 0.3334 49.3445 49.3445 -Verdana.ttf 83 & 41.1629 44.5557 102 © -0.1754 49.3445 49.3445 -Verdana.ttf 83 & 41.1629 44.5557 103 ] -0.9475 15.1741 55.4929 -Verdana.ttf 83 & 41.1629 44.5557 104 é -4.1915 28.8152 48.8629 -Verdana.ttf 83 & 41.1629 44.5557 105 z 11.7316 25.5036 31.6705 -Verdana.ttf 83 & 41.1629 44.5557 106 _ 48.5899 37.0038 3.3150 -Verdana.ttf 83 & 41.1629 44.5557 107 ¥ 1.3696 31.1332 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 1 t 3.5470 20.1669 41.8484 -Verdana.ttf 84 ’ 11.5036 16.1408 2 h 0.0399 26.4669 44.3483 -Verdana.ttf 84 ’ 11.5036 16.1408 3 a 11.5122 26.7969 34.0188 -Verdana.ttf 84 ’ 11.5036 16.1408 4 n 11.4666 26.4669 32.8447 -Verdana.ttf 84 ’ 11.5036 16.1408 5 P 2.0510 27.8519 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 6 o 11.4166 29.3745 34.0188 -Verdana.ttf 84 ’ 11.5036 16.1408 7 e 11.4666 28.8152 34.0188 -Verdana.ttf 84 ’ 11.5036 16.1408 8 : 12.5740 6.6555 31.6705 -Verdana.ttf 84 ’ 11.5036 16.1408 9 r 12.5057 19.6817 31.6705 -Verdana.ttf 84 ’ 11.5036 16.1408 10 l 0.1038 5.3333 44.3483 -Verdana.ttf 84 ’ 11.5036 16.1408 11 i 2.0313 5.3333 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 12 1 2.2441 22.9445 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 13 | 0.1668 5.2036 55.4929 -Verdana.ttf 84 ’ 11.5036 16.1408 14 N 2.1111 31.5514 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 15 f 0.0000 20.5259 44.3483 -Verdana.ttf 84 ’ 11.5036 16.1408 16 g 11.5939 28.2003 44.4964 -Verdana.ttf 84 ’ 11.5036 16.1408 17 d 0.0769 28.2003 45.5224 -Verdana.ttf 84 ’ 11.5036 16.1408 18 W 2.2279 52.3887 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 19 s 11.4565 25.0150 34.0188 -Verdana.ttf 84 ’ 11.5036 16.1408 20 c 11.1869 25.6820 34.0188 -Verdana.ttf 84 ’ 11.5036 16.1408 21 u 12.5537 26.4669 32.8447 -Verdana.ttf 84 ’ 11.5036 16.1408 22 3 1.0095 28.2074 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 23 ~ 16.7684 37.0038 17.5224 -Verdana.ttf 84 ’ 11.5036 16.1408 24 # 2.1408 36.5186 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 25 O 0.8869 39.3996 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 26 ` -3.5669 11.8592 10.6850 -Verdana.ttf 84 ’ 11.5036 16.1408 27 @ 0.9801 48.3778 49.6815 -Verdana.ttf 84 ’ 11.5036 16.1408 28 F 2.1375 26.3478 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 29 S 0.9268 32.5147 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 30 p 11.4637 28.2003 44.4964 -Verdana.ttf 84 ’ 11.5036 16.1408 31 “ -0.1422 23.0072 16.1408 -Verdana.ttf 84 ’ 11.5036 16.1408 32 % 1.0200 54.3188 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 33 £ 0.8375 29.1741 43.3815 -Verdana.ttf 84 ’ 11.5036 16.1408 34 . 36.2101 6.6555 8.1886 -Verdana.ttf 84 ’ 11.5036 16.1408 35 2 0.8865 28.3370 43.3815 -Verdana.ttf 84 ’ 11.5036 16.1408 36 5 0.7865 27.5114 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 37 m 11.5568 46.3480 32.8447 -Verdana.ttf 84 ’ 11.5036 16.1408 38 V 2.1807 37.5109 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 39 6 1.0118 29.6593 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 40 w 12.8061 42.9667 31.6705 -Verdana.ttf 84 ’ 11.5036 16.1408 41 T 2.1346 35.8297 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 42 M 2.0976 37.7217 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 43 G 1.1234 38.0483 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 44 b -0.0786 28.2003 45.5224 -Verdana.ttf 84 ’ 11.5036 16.1408 45 9 1.2243 29.6593 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 46 ; 12.7648 12.1891 42.1191 -Verdana.ttf 84 ’ 11.5036 16.1408 47 D 2.0505 35.8587 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 48 L 2.0135 26.6777 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 49 y 12.6777 31.1449 43.3223 -Verdana.ttf 84 ’ 11.5036 16.1408 50 ‘ 0.0831 11.5036 16.1408 -Verdana.ttf 84 ’ 11.5036 16.1408 51 \ 0.1288 25.1446 53.0150 -Verdana.ttf 84 ’ 11.5036 16.1408 52 R 2.1626 34.9855 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 53 < 8.9675 32.8447 32.8447 -Verdana.ttf 84 ’ 11.5036 16.1408 54 4 2.0505 32.2369 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 55 8 0.9268 29.9590 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 56 0 1.0186 28.9448 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 57 A 2.0861 37.5109 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 58 E 1.9736 27.8774 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 59 B 2.1143 32.0295 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 60 v 12.5783 31.1449 31.6705 -Verdana.ttf 84 ’ 11.5036 16.1408 61 k -0.0769 29.1741 44.3483 -Verdana.ttf 84 ’ 11.5036 16.1408 62 J 2.1408 20.1703 43.3815 -Verdana.ttf 84 ’ 11.5036 16.1408 63 U 2.0106 32.6187 43.3815 -Verdana.ttf 84 ’ 11.5036 16.1408 64 j 2.1442 16.4964 53.8592 -Verdana.ttf 84 ’ 11.5036 16.1408 65 ( -0.1140 17.3150 56.0000 -Verdana.ttf 84 ’ 11.5036 16.1408 66 7 1.9207 29.1741 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 67 § 0.7860 27.0333 54.3965 -Verdana.ttf 84 ’ 11.5036 16.1408 68 $ -0.3397 28.8186 54.8039 -Verdana.ttf 84 ’ 11.5036 16.1408 69 € 0.9667 34.6555 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 70 / 0.0903 25.1446 53.0150 -Verdana.ttf 84 ’ 11.5036 16.1408 71 C 1.0105 35.1627 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 72 * -0.2956 27.3888 26.3188 -Verdana.ttf 84 ’ 11.5036 16.1408 73 ” 0.0000 23.0072 16.1408 -Verdana.ttf 84 ’ 11.5036 16.1408 74 ? 0.8427 23.9705 43.3815 -Verdana.ttf 84 ’ 11.5036 16.1408 75 { -0.0476 26.6962 55.4929 -Verdana.ttf 84 ’ 11.5036 16.1408 76 } 0.3413 26.6962 55.4929 -Verdana.ttf 84 ’ 11.5036 16.1408 77 , 36.1596 12.1891 18.6372 -Verdana.ttf 84 ’ 11.5036 16.1408 78 I 2.0020 16.4442 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 79 ° 1.0139 22.7964 22.7964 -Verdana.ttf 84 ’ 11.5036 16.1408 80 K 1.9203 33.3333 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 81 H 2.3553 32.7255 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 82 q 11.5406 28.2003 44.4964 -Verdana.ttf 84 ’ 11.5036 16.1408 83 & 1.0940 41.1629 44.5557 -Verdana.ttf 84 ’ 11.5036 16.1408 84 ’ -0.0134 11.5036 16.1408 -Verdana.ttf 84 ’ 11.5036 16.1408 85 [ 0.0120 15.1741 55.4929 -Verdana.ttf 84 ’ 11.5036 16.1408 86 - 23.0321 17.6705 4.8447 -Verdana.ttf 84 ’ 11.5036 16.1408 87 Y 2.0505 35.8297 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 88 Q 1.1441 40.5737 54.5262 -Verdana.ttf 84 ’ 11.5036 16.1408 89 " -0.2470 17.3150 16.3483 -Verdana.ttf 84 ’ 11.5036 16.1408 90 ! 2.1456 5.4814 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 91 x 12.6345 31.1449 31.6705 -Verdana.ttf 84 ’ 11.5036 16.1408 92 ) -0.0769 17.3150 56.0000 -Verdana.ttf 84 ’ 11.5036 16.1408 93 = 17.4229 33.8114 16.4964 -Verdana.ttf 84 ’ 11.5036 16.1408 94 + 8.7877 34.9855 34.9855 -Verdana.ttf 84 ’ 11.5036 16.1408 95 X 2.1442 35.9074 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 96 » 11.5856 28.0000 28.0000 -Verdana.ttf 84 ’ 11.5036 16.1408 97 ' -0.0000 6.1703 16.3483 -Verdana.ttf 84 ’ 11.5036 16.1408 98 ¢ 2.5650 27.2855 51.6115 -Verdana.ttf 84 ’ 11.5036 16.1408 99 Z 2.4100 33.2036 42.2074 -Verdana.ttf 84 ’ 11.5036 16.1408 100 > 9.1986 32.8447 32.8447 -Verdana.ttf 84 ’ 11.5036 16.1408 101 ® 0.7067 49.3445 49.3445 -Verdana.ttf 84 ’ 11.5036 16.1408 102 © 1.0983 49.3445 49.3445 -Verdana.ttf 84 ’ 11.5036 16.1408 103 ] 0.0870 15.1741 55.4929 -Verdana.ttf 84 ’ 11.5036 16.1408 104 é -3.2535 28.8152 48.8629 -Verdana.ttf 84 ’ 11.5036 16.1408 105 z 12.5980 25.5036 31.6705 -Verdana.ttf 84 ’ 11.5036 16.1408 106 _ 49.4615 37.0038 3.3150 -Verdana.ttf 84 ’ 11.5036 16.1408 107 ¥ 2.0991 31.1332 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 1 t 3.4442 20.1669 41.8484 -Verdana.ttf 85 [ 15.1741 55.4929 2 h -0.0399 26.4669 44.3483 -Verdana.ttf 85 [ 15.1741 55.4929 3 a 11.1471 26.7969 34.0188 -Verdana.ttf 85 [ 15.1741 55.4929 4 n 11.4099 26.4669 32.8447 -Verdana.ttf 85 [ 15.1741 55.4929 5 P 2.2351 27.8519 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 6 o 11.5522 29.3745 34.0188 -Verdana.ttf 85 [ 15.1741 55.4929 7 e 11.6842 28.8152 34.0188 -Verdana.ttf 85 [ 15.1741 55.4929 8 : 12.9353 6.6555 31.6705 -Verdana.ttf 85 [ 15.1741 55.4929 9 r 12.8138 19.6817 31.6705 -Verdana.ttf 85 [ 15.1741 55.4929 10 l -0.1183 5.3333 44.3483 -Verdana.ttf 85 [ 15.1741 55.4929 11 i 2.6062 5.3333 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 12 1 2.0940 22.9445 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 13 | -0.1149 5.2036 55.4929 -Verdana.ttf 85 [ 15.1741 55.4929 14 N 2.0201 31.5514 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 15 f -0.0120 20.5259 44.3483 -Verdana.ttf 85 [ 15.1741 55.4929 16 g 11.4666 28.2003 44.4964 -Verdana.ttf 85 [ 15.1741 55.4929 17 d 0.1865 28.2003 45.5224 -Verdana.ttf 85 [ 15.1741 55.4929 18 W 2.0976 52.3887 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 19 s 11.7445 25.0150 34.0188 -Verdana.ttf 85 [ 15.1741 55.4929 20 c 11.4847 25.6820 34.0188 -Verdana.ttf 85 [ 15.1741 55.4929 21 u 12.5740 26.4669 32.8447 -Verdana.ttf 85 [ 15.1741 55.4929 22 3 0.8528 28.2074 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 23 ~ 16.9823 37.0038 17.5224 -Verdana.ttf 85 [ 15.1741 55.4929 24 # 1.9334 36.5186 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 25 O 0.7727 39.3996 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 26 ` -3.2103 11.8592 10.6850 -Verdana.ttf 85 [ 15.1741 55.4929 27 @ 1.1840 48.3778 49.6815 -Verdana.ttf 85 [ 15.1741 55.4929 28 F 2.0139 26.3478 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 29 S 1.2790 32.5147 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 30 p 11.2979 28.2003 44.4964 -Verdana.ttf 85 [ 15.1741 55.4929 31 “ 0.2488 23.0072 16.1408 -Verdana.ttf 85 [ 15.1741 55.4929 32 % 1.0571 54.3188 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 33 £ 1.2205 29.1741 43.3815 -Verdana.ttf 85 [ 15.1741 55.4929 34 . 36.2399 6.6555 8.1886 -Verdana.ttf 85 [ 15.1741 55.4929 35 2 1.0339 28.3370 43.3815 -Verdana.ttf 85 [ 15.1741 55.4929 36 5 0.7821 27.5114 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 37 m 11.5305 46.3480 32.8447 -Verdana.ttf 85 [ 15.1741 55.4929 38 V 2.1395 37.5109 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 39 6 1.1027 29.6593 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 40 w 12.7176 42.9667 31.6705 -Verdana.ttf 85 [ 15.1741 55.4929 41 T 2.3201 35.8297 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 42 M 2.1509 37.7217 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 43 G 1.0635 38.0483 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 44 b -0.1740 28.2003 45.5224 -Verdana.ttf 85 [ 15.1741 55.4929 45 9 0.8764 29.6593 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 46 ; 12.6838 12.1891 42.1191 -Verdana.ttf 85 [ 15.1741 55.4929 47 D 1.9264 35.8587 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 48 L 2.2178 26.6777 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 49 y 12.5004 31.1449 43.3223 -Verdana.ttf 85 [ 15.1741 55.4929 50 ‘ -0.0889 11.5036 16.1408 -Verdana.ttf 85 [ 15.1741 55.4929 51 \ 0.0427 25.1446 53.0150 -Verdana.ttf 85 [ 15.1741 55.4929 52 R 2.1174 34.9855 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 53 < 8.9512 32.8447 32.8447 -Verdana.ttf 85 [ 15.1741 55.4929 54 4 2.3120 32.2369 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 55 8 0.8466 29.9590 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 56 0 1.1017 28.9448 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 57 A 1.9740 37.5109 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 58 E 2.0726 27.8774 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 59 B 2.2279 32.0295 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 60 v 12.5138 31.1449 31.6705 -Verdana.ttf 85 [ 15.1741 55.4929 61 k 0.1378 29.1741 44.3483 -Verdana.ttf 85 [ 15.1741 55.4929 62 J 2.2649 20.1703 43.3815 -Verdana.ttf 85 [ 15.1741 55.4929 63 U 1.7995 32.6187 43.3815 -Verdana.ttf 85 [ 15.1741 55.4929 64 j 2.0918 16.4964 53.8592 -Verdana.ttf 85 [ 15.1741 55.4929 65 ( -0.0148 17.3150 56.0000 -Verdana.ttf 85 [ 15.1741 55.4929 66 7 2.0538 29.1741 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 67 § 0.7004 27.0333 54.3965 -Verdana.ttf 85 [ 15.1741 55.4929 68 $ -0.2751 28.8186 54.8039 -Verdana.ttf 85 [ 15.1741 55.4929 69 € 0.8830 34.6555 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 70 / 0.0000 25.1446 53.0150 -Verdana.ttf 85 [ 15.1741 55.4929 71 C 0.7802 35.1627 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 72 * -0.1302 27.3888 26.3188 -Verdana.ttf 85 [ 15.1741 55.4929 73 ” 0.1745 23.0072 16.1408 -Verdana.ttf 85 [ 15.1741 55.4929 74 ? 0.9566 23.9705 43.3815 -Verdana.ttf 85 [ 15.1741 55.4929 75 { -0.1600 26.6962 55.4929 -Verdana.ttf 85 [ 15.1741 55.4929 76 } 0.0039 26.6962 55.4929 -Verdana.ttf 85 [ 15.1741 55.4929 77 , 36.1967 12.1891 18.6372 -Verdana.ttf 85 [ 15.1741 55.4929 78 I 1.9334 16.4442 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 79 ° 0.8499 22.7964 22.7964 -Verdana.ttf 85 [ 15.1741 55.4929 80 K 1.7916 33.3333 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 81 H 2.1456 32.7255 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 82 q 11.3691 28.2003 44.4964 -Verdana.ttf 85 [ 15.1741 55.4929 83 & 0.6338 41.1629 44.5557 -Verdana.ttf 85 [ 15.1741 55.4929 84 ’ 0.0917 11.5036 16.1408 -Verdana.ttf 85 [ 15.1741 55.4929 85 [ 0.4502 15.1741 55.4929 -Verdana.ttf 85 [ 15.1741 55.4929 86 - 23.1103 17.6705 4.8447 -Verdana.ttf 85 [ 15.1741 55.4929 87 Y 1.8760 35.8297 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 88 Q 0.9264 40.5737 54.5262 -Verdana.ttf 85 [ 15.1741 55.4929 89 " 0.4788 17.3150 16.3483 -Verdana.ttf 85 [ 15.1741 55.4929 90 ! 2.0269 5.4814 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 91 x 12.8565 31.1449 31.6705 -Verdana.ttf 85 [ 15.1741 55.4929 92 ) -0.0903 17.3150 56.0000 -Verdana.ttf 85 [ 15.1741 55.4929 93 = 17.7164 33.8114 16.4964 -Verdana.ttf 85 [ 15.1741 55.4929 94 + 8.4787 34.9855 34.9855 -Verdana.ttf 85 [ 15.1741 55.4929 95 X 2.2427 35.9074 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 96 » 11.6679 28.0000 28.0000 -Verdana.ttf 85 [ 15.1741 55.4929 97 ' -0.2311 6.1703 16.3483 -Verdana.ttf 85 [ 15.1741 55.4929 98 ¢ 2.7961 27.2855 51.6115 -Verdana.ttf 85 [ 15.1741 55.4929 99 Z 2.1071 33.2036 42.2074 -Verdana.ttf 85 [ 15.1741 55.4929 100 > 9.5769 32.8447 32.8447 -Verdana.ttf 85 [ 15.1741 55.4929 101 ® 0.9937 49.3445 49.3445 -Verdana.ttf 85 [ 15.1741 55.4929 102 © 0.9369 49.3445 49.3445 -Verdana.ttf 85 [ 15.1741 55.4929 103 ] 0.0678 15.1741 55.4929 -Verdana.ttf 85 [ 15.1741 55.4929 104 é -3.5226 28.8152 48.8629 -Verdana.ttf 85 [ 15.1741 55.4929 105 z 12.8964 25.5036 31.6705 -Verdana.ttf 85 [ 15.1741 55.4929 106 _ 49.7187 37.0038 3.3150 -Verdana.ttf 85 [ 15.1741 55.4929 107 ¥ 2.1172 31.1332 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 1 t -19.3284 20.1669 41.8484 -Verdana.ttf 86 - 17.6705 4.8447 2 h -23.0908 26.4669 44.3483 -Verdana.ttf 86 - 17.6705 4.8447 3 a -11.5016 26.7969 34.0188 -Verdana.ttf 86 - 17.6705 4.8447 4 n -11.7025 26.4669 32.8447 -Verdana.ttf 86 - 17.6705 4.8447 5 P -20.9533 27.8519 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 6 o -11.4497 29.3745 34.0188 -Verdana.ttf 86 - 17.6705 4.8447 7 e -11.6776 28.8152 34.0188 -Verdana.ttf 86 - 17.6705 4.8447 8 : -10.4577 6.6555 31.6705 -Verdana.ttf 86 - 17.6705 4.8447 9 r -10.4942 19.6817 31.6705 -Verdana.ttf 86 - 17.6705 4.8447 10 l -23.1561 5.3333 44.3483 -Verdana.ttf 86 - 17.6705 4.8447 11 i -20.9903 5.3333 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 12 1 -20.9379 22.9445 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 13 | -22.8079 5.2036 55.4929 -Verdana.ttf 86 - 17.6705 4.8447 14 N -21.0283 31.5514 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 15 f -23.3983 20.5259 44.3483 -Verdana.ttf 86 - 17.6705 4.8447 16 g -11.6067 28.2003 44.4964 -Verdana.ttf 86 - 17.6705 4.8447 17 d -23.0052 28.2003 45.5224 -Verdana.ttf 86 - 17.6705 4.8447 18 W -20.9424 52.3887 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 19 s -11.4795 25.0150 34.0188 -Verdana.ttf 86 - 17.6705 4.8447 20 c -11.5280 25.6820 34.0188 -Verdana.ttf 86 - 17.6705 4.8447 21 u -10.2608 26.4669 32.8447 -Verdana.ttf 86 - 17.6705 4.8447 22 3 -22.0399 28.2074 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 23 ~ -6.4958 37.0038 17.5224 -Verdana.ttf 86 - 17.6705 4.8447 24 # -21.1041 36.5186 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 25 O -22.0842 39.3996 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 26 ` -26.2704 11.8592 10.6850 -Verdana.ttf 86 - 17.6705 4.8447 27 @ -22.1408 48.3778 49.6815 -Verdana.ttf 86 - 17.6705 4.8447 28 F -21.0860 26.3478 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 29 S -22.1524 32.5147 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 30 p -11.6895 28.2003 44.4964 -Verdana.ttf 86 - 17.6705 4.8447 31 “ -23.0289 23.0072 16.1408 -Verdana.ttf 86 - 17.6705 4.8447 32 % -22.0722 54.3188 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 33 £ -21.8974 29.1741 43.3815 -Verdana.ttf 86 - 17.6705 4.8447 34 . 13.3278 6.6555 8.1886 -Verdana.ttf 86 - 17.6705 4.8447 35 2 -22.0418 28.3370 43.3815 -Verdana.ttf 86 - 17.6705 4.8447 36 5 -22.0472 27.5114 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 37 m -11.6242 46.3480 32.8447 -Verdana.ttf 86 - 17.6705 4.8447 38 V -20.8663 37.5109 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 39 6 -21.8713 29.6593 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 40 w -10.2491 42.9667 31.6705 -Verdana.ttf 86 - 17.6705 4.8447 41 T -20.9427 35.8297 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 42 M -20.9725 37.7217 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 43 G -21.9155 38.0483 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 44 b -22.6120 28.2003 45.5224 -Verdana.ttf 86 - 17.6705 4.8447 45 9 -22.2481 29.6593 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 46 ; -10.3195 12.1891 42.1191 -Verdana.ttf 86 - 17.6705 4.8447 47 D -20.6722 35.8587 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 48 L -20.9960 26.6777 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 49 y -10.3333 31.1449 43.3223 -Verdana.ttf 86 - 17.6705 4.8447 50 ‘ -22.9023 11.5036 16.1408 -Verdana.ttf 86 - 17.6705 4.8447 51 \ -23.0960 25.1446 53.0150 -Verdana.ttf 86 - 17.6705 4.8447 52 R -20.9326 34.9855 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 53 < -13.7980 32.8447 32.8447 -Verdana.ttf 86 - 17.6705 4.8447 54 4 -20.7491 32.2369 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 55 8 -21.9217 29.9590 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 56 0 -22.0814 28.9448 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 57 A -20.9043 37.5109 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 58 E -20.6290 27.8774 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 59 B -20.9237 32.0295 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 60 v -10.4058 31.1449 31.6705 -Verdana.ttf 86 - 17.6705 4.8447 61 k -22.8297 29.1741 44.3483 -Verdana.ttf 86 - 17.6705 4.8447 62 J -20.9779 20.1703 43.3815 -Verdana.ttf 86 - 17.6705 4.8447 63 U -21.0230 32.6187 43.3815 -Verdana.ttf 86 - 17.6705 4.8447 64 j -20.8960 16.4964 53.8592 -Verdana.ttf 86 - 17.6705 4.8447 65 ( -22.9269 17.3150 56.0000 -Verdana.ttf 86 - 17.6705 4.8447 66 7 -20.8453 29.1741 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 67 § -21.7752 27.0333 54.3965 -Verdana.ttf 86 - 17.6705 4.8447 68 $ -23.2785 28.8186 54.8039 -Verdana.ttf 86 - 17.6705 4.8447 69 € -22.2961 34.6555 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 70 / -22.7126 25.1446 53.0150 -Verdana.ttf 86 - 17.6705 4.8447 71 C -22.0323 35.1627 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 72 * -22.9566 27.3888 26.3188 -Verdana.ttf 86 - 17.6705 4.8447 73 ” -23.1206 23.0072 16.1408 -Verdana.ttf 86 - 17.6705 4.8447 74 ? -21.8477 23.9705 43.3815 -Verdana.ttf 86 - 17.6705 4.8447 75 { -22.9480 26.6962 55.4929 -Verdana.ttf 86 - 17.6705 4.8447 76 } -23.0441 26.6962 55.4929 -Verdana.ttf 86 - 17.6705 4.8447 77 , 13.3799 12.1891 18.6372 -Verdana.ttf 86 - 17.6705 4.8447 78 I -20.7076 16.4442 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 79 ° -21.9939 22.7964 22.7964 -Verdana.ttf 86 - 17.6705 4.8447 80 K -20.7274 33.3333 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 81 H -20.8231 32.7255 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 82 q -11.7059 28.2003 44.4964 -Verdana.ttf 86 - 17.6705 4.8447 83 & -22.0486 41.1629 44.5557 -Verdana.ttf 86 - 17.6705 4.8447 84 ’ -22.9653 11.5036 16.1408 -Verdana.ttf 86 - 17.6705 4.8447 85 [ -23.1543 15.1741 55.4929 -Verdana.ttf 86 - 17.6705 4.8447 86 - 0.0798 17.6705 4.8447 -Verdana.ttf 86 - 17.6705 4.8447 87 Y -20.8448 35.8297 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 88 Q -22.1793 40.5737 54.5262 -Verdana.ttf 86 - 17.6705 4.8447 89 " -23.2480 17.3150 16.3483 -Verdana.ttf 86 - 17.6705 4.8447 90 ! -20.5972 5.4814 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 91 x -10.1487 31.1449 31.6705 -Verdana.ttf 86 - 17.6705 4.8447 92 ) -23.1177 17.3150 56.0000 -Verdana.ttf 86 - 17.6705 4.8447 93 = -5.5260 33.8114 16.4964 -Verdana.ttf 86 - 17.6705 4.8447 94 + -14.6792 34.9855 34.9855 -Verdana.ttf 86 - 17.6705 4.8447 95 X -20.7759 35.9074 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 96 » -11.0741 28.0000 28.0000 -Verdana.ttf 86 - 17.6705 4.8447 97 ' -22.8836 6.1703 16.3483 -Verdana.ttf 86 - 17.6705 4.8447 98 ¢ -20.2878 27.2855 51.6115 -Verdana.ttf 86 - 17.6705 4.8447 99 Z -20.7653 33.2036 42.2074 -Verdana.ttf 86 - 17.6705 4.8447 100 > -14.0896 32.8447 32.8447 -Verdana.ttf 86 - 17.6705 4.8447 101 ® -21.8564 49.3445 49.3445 -Verdana.ttf 86 - 17.6705 4.8447 102 © -22.0178 49.3445 49.3445 -Verdana.ttf 86 - 17.6705 4.8447 103 ] -23.0575 15.1741 55.4929 -Verdana.ttf 86 - 17.6705 4.8447 104 é -26.4581 28.8152 48.8629 -Verdana.ttf 86 - 17.6705 4.8447 105 z -10.4933 25.5036 31.6705 -Verdana.ttf 86 - 17.6705 4.8447 106 _ 26.5750 37.0038 3.3150 -Verdana.ttf 86 - 17.6705 4.8447 107 ¥ -20.6961 31.1332 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 1 t 1.8573 20.1669 41.8484 -Verdana.ttf 87 Y 35.8297 42.2074 2 h -1.9722 26.4669 44.3483 -Verdana.ttf 87 Y 35.8297 42.2074 3 a 9.6588 26.7969 34.0188 -Verdana.ttf 87 Y 35.8297 42.2074 4 n 9.1720 26.4669 32.8447 -Verdana.ttf 87 Y 35.8297 42.2074 5 P 0.1414 27.8519 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 6 o 9.3156 29.3745 34.0188 -Verdana.ttf 87 Y 35.8297 42.2074 7 e 9.1840 28.8152 34.0188 -Verdana.ttf 87 Y 35.8297 42.2074 8 : 10.7420 6.6555 31.6705 -Verdana.ttf 87 Y 35.8297 42.2074 9 r 10.2442 19.6817 31.6705 -Verdana.ttf 87 Y 35.8297 42.2074 10 l -2.5387 5.3333 44.3483 -Verdana.ttf 87 Y 35.8297 42.2074 11 i -0.3076 5.3333 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 12 1 -0.2038 22.9445 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 13 | -2.1005 5.2036 55.4929 -Verdana.ttf 87 Y 35.8297 42.2074 14 N -0.1874 31.5514 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 15 f -2.3156 20.5259 44.3483 -Verdana.ttf 87 Y 35.8297 42.2074 16 g 9.2638 28.2003 44.4964 -Verdana.ttf 87 Y 35.8297 42.2074 17 d -1.9264 28.2003 45.5224 -Verdana.ttf 87 Y 35.8297 42.2074 18 W -0.0033 52.3887 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 19 s 9.6156 25.0150 34.0188 -Verdana.ttf 87 Y 35.8297 42.2074 20 c 9.0646 25.6820 34.0188 -Verdana.ttf 87 Y 35.8297 42.2074 21 u 10.4912 26.4669 32.8447 -Verdana.ttf 87 Y 35.8297 42.2074 22 3 -1.1842 28.2074 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 23 ~ 14.7979 37.0038 17.5224 -Verdana.ttf 87 Y 35.8297 42.2074 24 # -0.0842 36.5186 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 25 O -0.9656 39.3996 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 26 ` -5.1516 11.8592 10.6850 -Verdana.ttf 87 Y 35.8297 42.2074 27 @ -1.1371 48.3778 49.6815 -Verdana.ttf 87 Y 35.8297 42.2074 28 F 0.1316 26.3478 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 29 S -1.1237 32.5147 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 30 p 9.2412 28.2003 44.4964 -Verdana.ttf 87 Y 35.8297 42.2074 31 “ -2.1898 23.0072 16.1408 -Verdana.ttf 87 Y 35.8297 42.2074 32 % -1.0944 54.3188 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 33 £ -1.0882 29.1741 43.3815 -Verdana.ttf 87 Y 35.8297 42.2074 34 . 34.0957 6.6555 8.1886 -Verdana.ttf 87 Y 35.8297 42.2074 35 2 -1.1164 28.3370 43.3815 -Verdana.ttf 87 Y 35.8297 42.2074 36 5 -1.5159 27.5114 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 37 m 9.2993 46.3480 32.8447 -Verdana.ttf 87 Y 35.8297 42.2074 38 V -0.1154 37.5109 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 39 6 -1.0486 29.6593 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 40 w 10.4701 42.9667 31.6705 -Verdana.ttf 87 Y 35.8297 42.2074 41 T 0.2839 35.8297 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 42 M 0.0519 37.7217 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 43 G -1.0974 38.0483 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 44 b -1.8406 28.2003 45.5224 -Verdana.ttf 87 Y 35.8297 42.2074 45 9 -0.9285 29.6593 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 46 ; 10.4831 12.1891 42.1191 -Verdana.ttf 87 Y 35.8297 42.2074 47 D -0.1673 35.8587 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 48 L -0.1432 26.6777 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 49 y 10.5887 31.1449 43.3223 -Verdana.ttf 87 Y 35.8297 42.2074 50 ‘ -2.3043 11.5036 16.1408 -Verdana.ttf 87 Y 35.8297 42.2074 51 \ -2.3817 25.1446 53.0150 -Verdana.ttf 87 Y 35.8297 42.2074 52 R -0.0577 34.9855 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 53 < 7.2143 32.8447 32.8447 -Verdana.ttf 87 Y 35.8297 42.2074 54 4 -0.1816 32.2369 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 55 8 -0.9050 29.9590 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 56 0 -1.2555 28.9448 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 57 A -0.1037 37.5109 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 58 E 0.2826 27.8774 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 59 B 0.0884 32.0295 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 60 v 10.8016 31.1449 31.6705 -Verdana.ttf 87 Y 35.8297 42.2074 61 k -2.0967 29.1741 44.3483 -Verdana.ttf 87 Y 35.8297 42.2074 62 J 0.0465 20.1703 43.3815 -Verdana.ttf 87 Y 35.8297 42.2074 63 U 0.4795 32.6187 43.3815 -Verdana.ttf 87 Y 35.8297 42.2074 64 j 0.1200 16.4964 53.8592 -Verdana.ttf 87 Y 35.8297 42.2074 65 ( -1.8557 17.3150 56.0000 -Verdana.ttf 87 Y 35.8297 42.2074 66 7 -0.0500 29.1741 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 67 § -1.0929 27.0333 54.3965 -Verdana.ttf 87 Y 35.8297 42.2074 68 $ -2.7520 28.8186 54.8039 -Verdana.ttf 87 Y 35.8297 42.2074 69 € -1.5725 34.6555 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 70 / -2.1028 25.1446 53.0150 -Verdana.ttf 87 Y 35.8297 42.2074 71 C -1.1251 35.1627 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 72 * -2.0991 27.3888 26.3188 -Verdana.ttf 87 Y 35.8297 42.2074 73 ” -2.0557 23.0072 16.1408 -Verdana.ttf 87 Y 35.8297 42.2074 74 ? -1.1746 23.9705 43.3815 -Verdana.ttf 87 Y 35.8297 42.2074 75 { -2.3923 26.6962 55.4929 -Verdana.ttf 87 Y 35.8297 42.2074 76 } -1.8865 26.6962 55.4929 -Verdana.ttf 87 Y 35.8297 42.2074 77 , 34.2404 12.1891 18.6372 -Verdana.ttf 87 Y 35.8297 42.2074 78 I 0.3695 16.4442 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 79 ° -1.1640 22.7964 22.7964 -Verdana.ttf 87 Y 35.8297 42.2074 80 K -0.4066 33.3333 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 81 H 0.0091 32.7255 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 82 q 9.2671 28.2003 44.4964 -Verdana.ttf 87 Y 35.8297 42.2074 83 & -1.2187 41.1629 44.5557 -Verdana.ttf 87 Y 35.8297 42.2074 84 ’ -2.1528 11.5036 16.1408 -Verdana.ttf 87 Y 35.8297 42.2074 85 [ -2.2025 15.1741 55.4929 -Verdana.ttf 87 Y 35.8297 42.2074 86 - 21.0921 17.6705 4.8447 -Verdana.ttf 87 Y 35.8297 42.2074 87 Y -0.1274 35.8297 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 88 Q -0.9804 40.5737 54.5262 -Verdana.ttf 87 Y 35.8297 42.2074 89 " -1.8894 17.3150 16.3483 -Verdana.ttf 87 Y 35.8297 42.2074 90 ! -0.0605 5.4814 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 91 x 10.4465 31.1449 31.6705 -Verdana.ttf 87 Y 35.8297 42.2074 92 ) -2.2265 17.3150 56.0000 -Verdana.ttf 87 Y 35.8297 42.2074 93 = 15.4083 33.8114 16.4964 -Verdana.ttf 87 Y 35.8297 42.2074 94 + 6.3274 34.9855 34.9855 -Verdana.ttf 87 Y 35.8297 42.2074 95 X 0.0139 35.9074 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 96 » 9.2423 28.0000 28.0000 -Verdana.ttf 87 Y 35.8297 42.2074 97 ' -1.9454 6.1703 16.3483 -Verdana.ttf 87 Y 35.8297 42.2074 98 ¢ 0.7144 27.2855 51.6115 -Verdana.ttf 87 Y 35.8297 42.2074 99 Z 0.0798 33.2036 42.2074 -Verdana.ttf 87 Y 35.8297 42.2074 100 > 6.8726 32.8447 32.8447 -Verdana.ttf 87 Y 35.8297 42.2074 101 ® -1.3366 49.3445 49.3445 -Verdana.ttf 87 Y 35.8297 42.2074 102 © -1.1415 49.3445 49.3445 -Verdana.ttf 87 Y 35.8297 42.2074 103 ] -2.1256 15.1741 55.4929 -Verdana.ttf 87 Y 35.8297 42.2074 104 é -5.7120 28.8152 48.8629 -Verdana.ttf 87 Y 35.8297 42.2074 105 z 10.3453 25.5036 31.6705 -Verdana.ttf 87 Y 35.8297 42.2074 106 _ 47.4610 37.0038 3.3150 -Verdana.ttf 87 Y 35.8297 42.2074 107 ¥ 0.2055 31.1332 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 1 t 2.9245 20.1669 41.8484 -Verdana.ttf 88 Q 40.5737 54.5262 2 h -1.2855 26.4669 44.3483 -Verdana.ttf 88 Q 40.5737 54.5262 3 a 10.6643 26.7969 34.0188 -Verdana.ttf 88 Q 40.5737 54.5262 4 n 10.5839 26.4669 32.8447 -Verdana.ttf 88 Q 40.5737 54.5262 5 P 1.3246 27.8519 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 6 o 10.2812 29.3745 34.0188 -Verdana.ttf 88 Q 40.5737 54.5262 7 e 10.3422 28.8152 34.0188 -Verdana.ttf 88 Q 40.5737 54.5262 8 : 11.5202 6.6555 31.6705 -Verdana.ttf 88 Q 40.5737 54.5262 9 r 11.6188 19.6817 31.6705 -Verdana.ttf 88 Q 40.5737 54.5262 10 l -0.8321 5.3333 44.3483 -Verdana.ttf 88 Q 40.5737 54.5262 11 i 1.2429 5.3333 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 12 1 1.0298 22.9445 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 13 | -1.0504 5.2036 55.4929 -Verdana.ttf 88 Q 40.5737 54.5262 14 N 1.6441 31.5514 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 15 f -0.8466 20.5259 44.3483 -Verdana.ttf 88 Q 40.5737 54.5262 16 g 10.4438 28.2003 44.4964 -Verdana.ttf 88 Q 40.5737 54.5262 17 d -0.9235 28.2003 45.5224 -Verdana.ttf 88 Q 40.5737 54.5262 18 W 1.4737 52.3887 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 19 s 10.4332 25.0150 34.0188 -Verdana.ttf 88 Q 40.5737 54.5262 20 c 10.3865 25.6820 34.0188 -Verdana.ttf 88 Q 40.5737 54.5262 21 u 11.8822 26.4669 32.8447 -Verdana.ttf 88 Q 40.5737 54.5262 22 3 -0.2206 28.2074 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 23 ~ 15.9022 37.0038 17.5224 -Verdana.ttf 88 Q 40.5737 54.5262 24 # 1.5924 36.5186 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 25 O -0.2177 39.3996 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 26 ` -3.8970 11.8592 10.6850 -Verdana.ttf 88 Q 40.5737 54.5262 27 @ 0.0134 48.3778 49.6815 -Verdana.ttf 88 Q 40.5737 54.5262 28 F 1.5486 26.3478 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 29 S 0.0547 32.5147 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 30 p 10.4321 28.2003 44.4964 -Verdana.ttf 88 Q 40.5737 54.5262 31 “ -1.1340 23.0072 16.1408 -Verdana.ttf 88 Q 40.5737 54.5262 32 % 0.3802 54.3188 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 33 £ 0.0816 29.1741 43.3815 -Verdana.ttf 88 Q 40.5737 54.5262 34 . 35.1729 6.6555 8.1886 -Verdana.ttf 88 Q 40.5737 54.5262 35 2 -0.0373 28.3370 43.3815 -Verdana.ttf 88 Q 40.5737 54.5262 36 5 0.0927 27.5114 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 37 m 10.7502 46.3480 32.8447 -Verdana.ttf 88 Q 40.5737 54.5262 38 V 1.1258 37.5109 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 39 6 -0.0066 29.6593 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 40 w 11.7791 42.9667 31.6705 -Verdana.ttf 88 Q 40.5737 54.5262 41 T 1.3913 35.8297 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 42 M 1.0530 37.7217 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 43 G -0.1001 38.0483 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 44 b -0.8227 28.2003 45.5224 -Verdana.ttf 88 Q 40.5737 54.5262 45 9 0.0251 29.6593 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 46 ; 11.6744 12.1891 42.1191 -Verdana.ttf 88 Q 40.5737 54.5262 47 D 1.2996 35.8587 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 48 L 1.1948 26.6777 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 49 y 11.6076 31.1449 43.3223 -Verdana.ttf 88 Q 40.5737 54.5262 50 ‘ -1.1359 11.5036 16.1408 -Verdana.ttf 88 Q 40.5737 54.5262 51 \ -1.1105 25.1446 53.0150 -Verdana.ttf 88 Q 40.5737 54.5262 52 R 1.1339 34.9855 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 53 < 7.9700 32.8447 32.8447 -Verdana.ttf 88 Q 40.5737 54.5262 54 4 1.2630 32.2369 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 55 8 0.1582 29.9590 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 56 0 -0.1941 28.9448 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 57 A 0.9838 37.5109 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 58 E 1.6518 27.8774 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 59 B 1.2011 32.0295 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 60 v 11.6958 31.1449 31.6705 -Verdana.ttf 88 Q 40.5737 54.5262 61 k -1.0556 29.1741 44.3483 -Verdana.ttf 88 Q 40.5737 54.5262 62 J 0.9893 20.1703 43.3815 -Verdana.ttf 88 Q 40.5737 54.5262 63 U 1.2408 32.6187 43.3815 -Verdana.ttf 88 Q 40.5737 54.5262 64 j 1.5220 16.4964 53.8592 -Verdana.ttf 88 Q 40.5737 54.5262 65 ( -0.8394 17.3150 56.0000 -Verdana.ttf 88 Q 40.5737 54.5262 66 7 1.1945 29.1741 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 67 § 0.2733 27.0333 54.3965 -Verdana.ttf 88 Q 40.5737 54.5262 68 $ -1.3683 28.8186 54.8039 -Verdana.ttf 88 Q 40.5737 54.5262 69 € -0.3695 34.6555 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 70 / -0.9653 25.1446 53.0150 -Verdana.ttf 88 Q 40.5737 54.5262 71 C 0.2905 35.1627 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 72 * -0.6870 27.3888 26.3188 -Verdana.ttf 88 Q 40.5737 54.5262 73 ” -1.1278 23.0072 16.1408 -Verdana.ttf 88 Q 40.5737 54.5262 74 ? -0.0485 23.9705 43.3815 -Verdana.ttf 88 Q 40.5737 54.5262 75 { -0.8797 26.6962 55.4929 -Verdana.ttf 88 Q 40.5737 54.5262 76 } -0.9798 26.6962 55.4929 -Verdana.ttf 88 Q 40.5737 54.5262 77 , 35.0217 12.1891 18.6372 -Verdana.ttf 88 Q 40.5737 54.5262 78 I 0.9416 16.4442 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 79 ° -0.1740 22.7964 22.7964 -Verdana.ttf 88 Q 40.5737 54.5262 80 K 1.3543 33.3333 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 81 H 1.2905 32.7255 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 82 q 10.3442 28.2003 44.4964 -Verdana.ttf 88 Q 40.5737 54.5262 83 & 0.0802 41.1629 44.5557 -Verdana.ttf 88 Q 40.5737 54.5262 84 ’ -0.9341 11.5036 16.1408 -Verdana.ttf 88 Q 40.5737 54.5262 85 [ -0.9963 15.1741 55.4929 -Verdana.ttf 88 Q 40.5737 54.5262 86 - 21.9699 17.6705 4.8447 -Verdana.ttf 88 Q 40.5737 54.5262 87 Y 1.3050 35.8297 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 88 Q -0.0134 40.5737 54.5262 -Verdana.ttf 88 Q 40.5737 54.5262 89 " -0.9529 17.3150 16.3483 -Verdana.ttf 88 Q 40.5737 54.5262 90 ! 1.1919 5.4814 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 91 x 11.6250 31.1449 31.6705 -Verdana.ttf 88 Q 40.5737 54.5262 92 ) -0.8898 17.3150 56.0000 -Verdana.ttf 88 Q 40.5737 54.5262 93 = 16.6691 33.8114 16.4964 -Verdana.ttf 88 Q 40.5737 54.5262 94 + 7.4034 34.9855 34.9855 -Verdana.ttf 88 Q 40.5737 54.5262 95 X 1.0439 35.9074 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 96 » 11.0638 28.0000 28.0000 -Verdana.ttf 88 Q 40.5737 54.5262 97 ' -0.9073 6.1703 16.3483 -Verdana.ttf 88 Q 40.5737 54.5262 98 ¢ 1.7166 27.2855 51.6115 -Verdana.ttf 88 Q 40.5737 54.5262 99 Z 0.8546 33.2036 42.2074 -Verdana.ttf 88 Q 40.5737 54.5262 100 > 7.9446 32.8447 32.8447 -Verdana.ttf 88 Q 40.5737 54.5262 101 ® 0.1288 49.3445 49.3445 -Verdana.ttf 88 Q 40.5737 54.5262 102 © -0.2206 49.3445 49.3445 -Verdana.ttf 88 Q 40.5737 54.5262 103 ] -0.8413 15.1741 55.4929 -Verdana.ttf 88 Q 40.5737 54.5262 104 é -4.2439 28.8152 48.8629 -Verdana.ttf 88 Q 40.5737 54.5262 105 z 11.7523 25.5036 31.6705 -Verdana.ttf 88 Q 40.5737 54.5262 106 _ 48.7226 37.0038 3.3150 -Verdana.ttf 88 Q 40.5737 54.5262 107 ¥ 1.1289 31.1332 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 1 t 3.5841 20.1669 41.8484 -Verdana.ttf 89 " 17.3150 16.3483 2 h 0.0667 26.4669 44.3483 -Verdana.ttf 89 " 17.3150 16.3483 3 a 11.4873 26.7969 34.0188 -Verdana.ttf 89 " 17.3150 16.3483 4 n 11.2824 26.4669 32.8447 -Verdana.ttf 89 " 17.3150 16.3483 5 P 2.4894 27.8519 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 6 o 11.3330 29.3745 34.0188 -Verdana.ttf 89 " 17.3150 16.3483 7 e 11.4637 28.8152 34.0188 -Verdana.ttf 89 " 17.3150 16.3483 8 : 12.6596 6.6555 31.6705 -Verdana.ttf 89 " 17.3150 16.3483 9 r 12.8652 19.6817 31.6705 -Verdana.ttf 89 " 17.3150 16.3483 10 l -0.2792 5.3333 44.3483 -Verdana.ttf 89 " 17.3150 16.3483 11 i 2.3494 5.3333 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 12 1 1.9000 22.9445 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 13 | -0.1408 5.2036 55.4929 -Verdana.ttf 89 " 17.3150 16.3483 14 N 2.3553 31.5514 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 15 f 0.1595 20.5259 44.3483 -Verdana.ttf 89 " 17.3150 16.3483 16 g 11.3999 28.2003 44.4964 -Verdana.ttf 89 " 17.3150 16.3483 17 d -0.0040 28.2003 45.5224 -Verdana.ttf 89 " 17.3150 16.3483 18 W 2.1275 52.3887 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 19 s 11.6237 25.0150 34.0188 -Verdana.ttf 89 " 17.3150 16.3483 20 c 11.5420 25.6820 34.0188 -Verdana.ttf 89 " 17.3150 16.3483 21 u 12.5489 26.4669 32.8447 -Verdana.ttf 89 " 17.3150 16.3483 22 3 1.1858 28.2074 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 23 ~ 17.2082 37.0038 17.5224 -Verdana.ttf 89 " 17.3150 16.3483 24 # 2.2014 36.5186 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 25 O 1.1858 39.3996 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 26 ` -3.0522 11.8592 10.6850 -Verdana.ttf 89 " 17.3150 16.3483 27 @ 0.8812 48.3778 49.6815 -Verdana.ttf 89 " 17.3150 16.3483 28 F 2.1807 26.3478 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 29 S 0.9605 32.5147 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 30 p 11.7347 28.2003 44.4964 -Verdana.ttf 89 " 17.3150 16.3483 31 “ -0.1149 23.0072 16.1408 -Verdana.ttf 89 " 17.3150 16.3483 32 % 1.1473 54.3188 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 33 £ 0.8764 29.1741 43.3815 -Verdana.ttf 89 " 17.3150 16.3483 34 . 36.3384 6.6555 8.1886 -Verdana.ttf 89 " 17.3150 16.3483 35 2 0.9302 28.3370 43.3815 -Verdana.ttf 89 " 17.3150 16.3483 36 5 1.1235 27.5114 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 37 m 11.4224 46.3480 32.8447 -Verdana.ttf 89 " 17.3150 16.3483 38 V 2.0338 37.5109 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 39 6 1.0571 29.6593 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 40 w 12.6243 42.9667 31.6705 -Verdana.ttf 89 " 17.3150 16.3483 41 T 2.6456 35.8297 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 42 M 2.0909 37.7217 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 43 G 1.0247 38.0483 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 44 b -0.2173 28.2003 45.5224 -Verdana.ttf 89 " 17.3150 16.3483 45 9 1.1165 29.6593 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 46 ; 12.6613 12.1891 42.1191 -Verdana.ttf 89 " 17.3150 16.3483 47 D 2.2239 35.8587 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 48 L 2.1793 26.6777 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 49 y 12.8080 31.1449 43.3223 -Verdana.ttf 89 " 17.3150 16.3483 50 ‘ 0.0823 11.5036 16.1408 -Verdana.ttf 89 " 17.3150 16.3483 51 \ 0.0827 25.1446 53.0150 -Verdana.ttf 89 " 17.3150 16.3483 52 R 1.8847 34.9855 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 53 < 9.3472 32.8447 32.8447 -Verdana.ttf 89 " 17.3150 16.3483 54 4 2.3116 32.2369 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 55 8 0.9004 29.9590 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 56 0 1.1959 28.9448 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 57 A 2.0385 37.5109 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 58 E 2.6748 27.8774 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 59 B 2.5406 32.0295 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 60 v 12.5989 31.1449 31.6705 -Verdana.ttf 89 " 17.3150 16.3483 61 k -0.1140 29.1741 44.3483 -Verdana.ttf 89 " 17.3150 16.3483 62 J 1.9802 20.1703 43.3815 -Verdana.ttf 89 " 17.3150 16.3483 63 U 2.0698 32.6187 43.3815 -Verdana.ttf 89 " 17.3150 16.3483 64 j 2.3610 16.4964 53.8592 -Verdana.ttf 89 " 17.3150 16.3483 65 ( 0.0845 17.3150 56.0000 -Verdana.ttf 89 " 17.3150 16.3483 66 7 2.4430 29.1741 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 67 § 0.8851 27.0333 54.3965 -Verdana.ttf 89 " 17.3150 16.3483 68 $ -0.4857 28.8186 54.8039 -Verdana.ttf 89 " 17.3150 16.3483 69 € 1.0817 34.6555 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 70 / 0.2253 25.1446 53.0150 -Verdana.ttf 89 " 17.3150 16.3483 71 C 0.8144 35.1627 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 72 * 0.0163 27.3888 26.3188 -Verdana.ttf 89 " 17.3150 16.3483 73 ” 0.3214 23.0072 16.1408 -Verdana.ttf 89 " 17.3150 16.3483 74 ? 0.8445 23.9705 43.3815 -Verdana.ttf 89 " 17.3150 16.3483 75 { -0.2869 26.6962 55.4929 -Verdana.ttf 89 " 17.3150 16.3483 76 } 0.1926 26.6962 55.4929 -Verdana.ttf 89 " 17.3150 16.3483 77 , 36.1429 12.1891 18.6372 -Verdana.ttf 89 " 17.3150 16.3483 78 I 2.1496 16.4442 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 79 ° 0.8318 22.7964 22.7964 -Verdana.ttf 89 " 17.3150 16.3483 80 K 1.9098 33.3333 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 81 H 2.3120 32.7255 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 82 q 11.4950 28.2003 44.4964 -Verdana.ttf 89 " 17.3150 16.3483 83 & 0.8652 41.1629 44.5557 -Verdana.ttf 89 " 17.3150 16.3483 84 ’ -0.0870 11.5036 16.1408 -Verdana.ttf 89 " 17.3150 16.3483 85 [ -0.0028 15.1741 55.4929 -Verdana.ttf 89 " 17.3150 16.3483 86 - 22.9178 17.6705 4.8447 -Verdana.ttf 89 " 17.3150 16.3483 87 Y 1.9482 35.8297 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 88 Q 1.1821 40.5737 54.5262 -Verdana.ttf 89 " 17.3150 16.3483 89 " 0.1023 17.3150 16.3483 -Verdana.ttf 89 " 17.3150 16.3483 90 ! 2.0538 5.4814 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 91 x 12.5105 31.1449 31.6705 -Verdana.ttf 89 " 17.3150 16.3483 92 ) -0.0755 17.3150 56.0000 -Verdana.ttf 89 " 17.3150 16.3483 93 = 17.6123 33.8114 16.4964 -Verdana.ttf 89 " 17.3150 16.3483 94 + 8.4149 34.9855 34.9855 -Verdana.ttf 89 " 17.3150 16.3483 95 X 2.1976 35.9074 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 96 » 11.4404 28.0000 28.0000 -Verdana.ttf 89 " 17.3150 16.3483 97 ' -0.1564 6.1703 16.3483 -Verdana.ttf 89 " 17.3150 16.3483 98 ¢ 2.6716 27.2855 51.6115 -Verdana.ttf 89 " 17.3150 16.3483 99 Z 2.0240 33.2036 42.2074 -Verdana.ttf 89 " 17.3150 16.3483 100 > 9.4157 32.8447 32.8447 -Verdana.ttf 89 " 17.3150 16.3483 101 ® 0.9134 49.3445 49.3445 -Verdana.ttf 89 " 17.3150 16.3483 102 © 0.9062 49.3445 49.3445 -Verdana.ttf 89 " 17.3150 16.3483 103 ] 0.0394 15.1741 55.4929 -Verdana.ttf 89 " 17.3150 16.3483 104 é -3.3838 28.8152 48.8629 -Verdana.ttf 89 " 17.3150 16.3483 105 z 12.7242 25.5036 31.6705 -Verdana.ttf 89 " 17.3150 16.3483 106 _ 50.1152 37.0038 3.3150 -Verdana.ttf 89 " 17.3150 16.3483 107 ¥ 2.1927 31.1332 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 1 t 1.4029 20.1669 41.8484 -Verdana.ttf 90 ! 5.4814 42.2074 2 h -2.1104 26.4669 44.3483 -Verdana.ttf 90 ! 5.4814 42.2074 3 a 9.2811 26.7969 34.0188 -Verdana.ttf 90 ! 5.4814 42.2074 4 n 9.4531 26.4669 32.8447 -Verdana.ttf 90 ! 5.4814 42.2074 5 P 0.2245 27.8519 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 6 o 9.5415 29.3745 34.0188 -Verdana.ttf 90 ! 5.4814 42.2074 7 e 9.4512 28.8152 34.0188 -Verdana.ttf 90 ! 5.4814 42.2074 8 : 10.4198 6.6555 31.6705 -Verdana.ttf 90 ! 5.4814 42.2074 9 r 10.5307 19.6817 31.6705 -Verdana.ttf 90 ! 5.4814 42.2074 10 l -2.1111 5.3333 44.3483 -Verdana.ttf 90 ! 5.4814 42.2074 11 i 0.1331 5.3333 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 12 1 -0.1107 22.9445 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 13 | -2.0639 5.2036 55.4929 -Verdana.ttf 90 ! 5.4814 42.2074 14 N 0.1360 31.5514 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 15 f -2.0937 20.5259 44.3483 -Verdana.ttf 90 ! 5.4814 42.2074 16 g 9.6750 28.2003 44.4964 -Verdana.ttf 90 ! 5.4814 42.2074 17 d -2.3081 28.2003 45.5224 -Verdana.ttf 90 ! 5.4814 42.2074 18 W -0.0134 52.3887 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 19 s 9.1045 25.0150 34.0188 -Verdana.ttf 90 ! 5.4814 42.2074 20 c 9.3628 25.6820 34.0188 -Verdana.ttf 90 ! 5.4814 42.2074 21 u 10.4100 26.4669 32.8447 -Verdana.ttf 90 ! 5.4814 42.2074 22 3 -1.0972 28.2074 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 23 ~ 14.5252 37.0038 17.5224 -Verdana.ttf 90 ! 5.4814 42.2074 24 # 0.0636 36.5186 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 25 O -1.2307 39.3996 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 26 ` -5.4915 11.8592 10.6850 -Verdana.ttf 90 ! 5.4814 42.2074 27 @ -1.0871 48.3778 49.6815 -Verdana.ttf 90 ! 5.4814 42.2074 28 F 0.0000 26.3478 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 29 S -1.0871 32.5147 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 30 p 9.3094 28.2003 44.4964 -Verdana.ttf 90 ! 5.4814 42.2074 31 “ -2.2206 23.0072 16.1408 -Verdana.ttf 90 ! 5.4814 42.2074 32 % -1.0573 54.3188 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 33 £ -1.2812 29.1741 43.3815 -Verdana.ttf 90 ! 5.4814 42.2074 34 . 33.8382 6.6555 8.1886 -Verdana.ttf 90 ! 5.4814 42.2074 35 2 -1.2909 28.3370 43.3815 -Verdana.ttf 90 ! 5.4814 42.2074 36 5 -1.0819 27.5114 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 37 m 9.4085 46.3480 32.8447 -Verdana.ttf 90 ! 5.4814 42.2074 38 V -0.0384 37.5109 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 39 6 -1.0991 29.6593 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 40 w 10.7589 42.9667 31.6705 -Verdana.ttf 90 ! 5.4814 42.2074 41 T -0.0101 35.8297 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 42 M -0.1668 37.7217 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 43 G -1.3529 38.0483 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 44 b -2.2144 28.2003 45.5224 -Verdana.ttf 90 ! 5.4814 42.2074 45 9 -1.1893 29.6593 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 46 ; 10.5235 12.1891 42.1191 -Verdana.ttf 90 ! 5.4814 42.2074 47 D -0.0505 35.8587 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 48 L -0.0106 26.6777 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 49 y 10.7008 31.1449 43.3223 -Verdana.ttf 90 ! 5.4814 42.2074 50 ‘ -1.8096 11.5036 16.1408 -Verdana.ttf 90 ! 5.4814 42.2074 51 \ -2.0121 25.1446 53.0150 -Verdana.ttf 90 ! 5.4814 42.2074 52 R 0.1241 34.9855 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 53 < 7.0413 32.8447 32.8447 -Verdana.ttf 90 ! 5.4814 42.2074 54 4 -0.3801 32.2369 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 55 8 -1.1774 29.9590 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 56 0 -1.4845 28.9448 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 57 A 0.1774 37.5109 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 58 E 0.2672 27.8774 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 59 B -0.0842 32.0295 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 60 v 10.6272 31.1449 31.6705 -Verdana.ttf 90 ! 5.4814 42.2074 61 k -2.0505 29.1741 44.3483 -Verdana.ttf 90 ! 5.4814 42.2074 62 J 0.1673 20.1703 43.3815 -Verdana.ttf 90 ! 5.4814 42.2074 63 U 0.0736 32.6187 43.3815 -Verdana.ttf 90 ! 5.4814 42.2074 64 j 0.1274 16.4964 53.8592 -Verdana.ttf 90 ! 5.4814 42.2074 65 ( -2.1408 17.3150 56.0000 -Verdana.ttf 90 ! 5.4814 42.2074 66 7 0.3432 29.1741 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 67 § -1.1001 27.0333 54.3965 -Verdana.ttf 90 ! 5.4814 42.2074 68 $ -2.7501 28.8186 54.8039 -Verdana.ttf 90 ! 5.4814 42.2074 69 € -1.2659 34.6555 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 70 / -2.1408 25.1446 53.0150 -Verdana.ttf 90 ! 5.4814 42.2074 71 C -1.0838 35.1627 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 72 * -2.1423 27.3888 26.3188 -Verdana.ttf 90 ! 5.4814 42.2074 73 ” -1.8438 23.0072 16.1408 -Verdana.ttf 90 ! 5.4814 42.2074 74 ? -1.0693 23.9705 43.3815 -Verdana.ttf 90 ! 5.4814 42.2074 75 { -2.0672 26.6962 55.4929 -Verdana.ttf 90 ! 5.4814 42.2074 76 } -2.0505 26.6962 55.4929 -Verdana.ttf 90 ! 5.4814 42.2074 77 , 34.0819 12.1891 18.6372 -Verdana.ttf 90 ! 5.4814 42.2074 78 I 0.1183 16.4442 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 79 ° -0.9176 22.7964 22.7964 -Verdana.ttf 90 ! 5.4814 42.2074 80 K 0.2663 33.3333 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 81 H -0.0831 32.7255 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 82 q 9.7059 28.2003 44.4964 -Verdana.ttf 90 ! 5.4814 42.2074 83 & -1.2713 41.1629 44.5557 -Verdana.ttf 90 ! 5.4814 42.2074 84 ’ -2.1677 11.5036 16.1408 -Verdana.ttf 90 ! 5.4814 42.2074 85 [ -2.4317 15.1741 55.4929 -Verdana.ttf 90 ! 5.4814 42.2074 86 - 20.9946 17.6705 4.8447 -Verdana.ttf 90 ! 5.4814 42.2074 87 Y -0.0842 35.8297 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 88 Q -1.2713 40.5737 54.5262 -Verdana.ttf 90 ! 5.4814 42.2074 89 " -2.3287 17.3150 16.3483 -Verdana.ttf 90 ! 5.4814 42.2074 90 ! -0.0099 5.4814 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 91 x 10.3994 31.1449 31.6705 -Verdana.ttf 90 ! 5.4814 42.2074 92 ) -1.8285 17.3150 56.0000 -Verdana.ttf 90 ! 5.4814 42.2074 93 = 15.5690 33.8114 16.4964 -Verdana.ttf 90 ! 5.4814 42.2074 94 + 6.5584 34.9855 34.9855 -Verdana.ttf 90 ! 5.4814 42.2074 95 X -0.1375 35.9074 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 96 » 9.5303 28.0000 28.0000 -Verdana.ttf 90 ! 5.4814 42.2074 97 ' -2.1413 6.1703 16.3483 -Verdana.ttf 90 ! 5.4814 42.2074 98 ¢ 0.3944 27.2855 51.6115 -Verdana.ttf 90 ! 5.4814 42.2074 99 Z -0.1273 33.2036 42.2074 -Verdana.ttf 90 ! 5.4814 42.2074 100 > 6.9905 32.8447 32.8447 -Verdana.ttf 90 ! 5.4814 42.2074 101 ® -1.0953 49.3445 49.3445 -Verdana.ttf 90 ! 5.4814 42.2074 102 © -1.2107 49.3445 49.3445 -Verdana.ttf 90 ! 5.4814 42.2074 103 ] -2.3625 15.1741 55.4929 -Verdana.ttf 90 ! 5.4814 42.2074 104 é -5.2887 28.8152 48.8629 -Verdana.ttf 90 ! 5.4814 42.2074 105 z 10.5235 25.5036 31.6705 -Verdana.ttf 90 ! 5.4814 42.2074 106 _ 47.3678 37.0038 3.3150 -Verdana.ttf 90 ! 5.4814 42.2074 107 ¥ 0.0841 31.1332 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 1 t -8.8144 20.1669 41.8484 -Verdana.ttf 91 x 31.1449 31.6705 2 h -12.8464 26.4669 44.3483 -Verdana.ttf 91 x 31.1449 31.6705 3 a -1.2231 26.7969 34.0188 -Verdana.ttf 91 x 31.1449 31.6705 4 n -1.1857 26.4669 32.8447 -Verdana.ttf 91 x 31.1449 31.6705 5 P -10.5707 27.8519 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 6 o -1.1382 29.3745 34.0188 -Verdana.ttf 91 x 31.1449 31.6705 7 e -1.2034 28.8152 34.0188 -Verdana.ttf 91 x 31.1449 31.6705 8 : -0.0115 6.6555 31.6705 -Verdana.ttf 91 x 31.1449 31.6705 9 r -0.1312 19.6817 31.6705 -Verdana.ttf 91 x 31.1449 31.6705 10 l -12.7220 5.3333 44.3483 -Verdana.ttf 91 x 31.1449 31.6705 11 i -10.6138 5.3333 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 12 1 -10.3970 22.9445 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 13 | -12.8018 5.2036 55.4929 -Verdana.ttf 91 x 31.1449 31.6705 14 N -10.5402 31.5514 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 15 f -12.8685 20.5259 44.3483 -Verdana.ttf 91 x 31.1449 31.6705 16 g -1.0704 28.2003 44.4964 -Verdana.ttf 91 x 31.1449 31.6705 17 d -12.6662 28.2003 45.5224 -Verdana.ttf 91 x 31.1449 31.6705 18 W -10.6548 52.3887 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 19 s -1.2034 25.0150 34.0188 -Verdana.ttf 91 x 31.1449 31.6705 20 c -1.1045 25.6820 34.0188 -Verdana.ttf 91 x 31.1449 31.6705 21 u 0.1977 26.4669 32.8447 -Verdana.ttf 91 x 31.1449 31.6705 22 3 -11.8379 28.2074 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 23 ~ 4.4022 37.0038 17.5224 -Verdana.ttf 91 x 31.1449 31.6705 24 # -10.6163 36.5186 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 25 O -11.5303 39.3996 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 26 ` -16.1630 11.8592 10.6850 -Verdana.ttf 91 x 31.1449 31.6705 27 @ -11.8571 48.3778 49.6815 -Verdana.ttf 91 x 31.1449 31.6705 28 F -10.4869 26.3478 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 29 S -11.6976 32.5147 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 30 p -1.2745 28.2003 44.4964 -Verdana.ttf 91 x 31.1449 31.6705 31 “ -12.6230 23.0072 16.1408 -Verdana.ttf 91 x 31.1449 31.6705 32 % -11.8445 54.3188 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 33 £ -11.6740 29.1741 43.3815 -Verdana.ttf 91 x 31.1449 31.6705 34 . 23.7062 6.6555 8.1886 -Verdana.ttf 91 x 31.1449 31.6705 35 2 -11.6798 28.3370 43.3815 -Verdana.ttf 91 x 31.1449 31.6705 36 5 -11.8837 27.5114 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 37 m -1.2053 46.3480 32.8447 -Verdana.ttf 91 x 31.1449 31.6705 38 V -10.2797 37.5109 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 39 6 -11.5841 29.6593 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 40 w -0.2072 42.9667 31.6705 -Verdana.ttf 91 x 31.1449 31.6705 41 T -10.7346 35.8297 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 42 M -10.7666 37.7217 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 43 G -11.6371 38.0483 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 44 b -12.6027 28.2003 45.5224 -Verdana.ttf 91 x 31.1449 31.6705 45 9 -11.4870 29.6593 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 46 ; -0.0557 12.1891 42.1191 -Verdana.ttf 91 x 31.1449 31.6705 47 D -10.4455 35.8587 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 48 L -10.5456 26.6777 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 49 y -0.0418 31.1449 43.3223 -Verdana.ttf 91 x 31.1449 31.6705 50 ‘ -13.0603 11.5036 16.1408 -Verdana.ttf 91 x 31.1449 31.6705 51 \ -12.7406 25.1446 53.0150 -Verdana.ttf 91 x 31.1449 31.6705 52 R -10.2678 34.9855 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 53 < -3.6444 32.8447 32.8447 -Verdana.ttf 91 x 31.1449 31.6705 54 4 -10.4869 32.2369 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 55 8 -11.7110 29.9590 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 56 0 -12.0158 28.9448 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 57 A -10.5739 37.5109 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 58 E -10.9343 27.8774 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 59 B -10.7309 32.0295 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 60 v 0.2085 31.1449 31.6705 -Verdana.ttf 91 x 31.1449 31.6705 61 k -12.7796 29.1741 44.3483 -Verdana.ttf 91 x 31.1449 31.6705 62 J -10.9272 20.1703 43.3815 -Verdana.ttf 91 x 31.1449 31.6705 63 U -10.5887 32.6187 43.3815 -Verdana.ttf 91 x 31.1449 31.6705 64 j -10.5897 16.4964 53.8592 -Verdana.ttf 91 x 31.1449 31.6705 65 ( -12.6729 17.3150 56.0000 -Verdana.ttf 91 x 31.1449 31.6705 66 7 -10.7042 29.1741 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 67 § -11.6088 27.0333 54.3965 -Verdana.ttf 91 x 31.1449 31.6705 68 $ -13.4139 28.8186 54.8039 -Verdana.ttf 91 x 31.1449 31.6705 69 € -11.5006 34.6555 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 70 / -12.7383 25.1446 53.0150 -Verdana.ttf 91 x 31.1449 31.6705 71 C -11.4124 35.1627 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 72 * -12.7652 27.3888 26.3188 -Verdana.ttf 91 x 31.1449 31.6705 73 ” -12.7619 23.0072 16.1408 -Verdana.ttf 91 x 31.1449 31.6705 74 ? -11.8147 23.9705 43.3815 -Verdana.ttf 91 x 31.1449 31.6705 75 { -12.5946 26.6962 55.4929 -Verdana.ttf 91 x 31.1449 31.6705 76 } -12.7324 26.6962 55.4929 -Verdana.ttf 91 x 31.1449 31.6705 77 , 23.5189 12.1891 18.6372 -Verdana.ttf 91 x 31.1449 31.6705 78 I -11.0136 16.4442 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 79 ° -11.7171 22.7964 22.7964 -Verdana.ttf 91 x 31.1449 31.6705 80 K -10.7292 33.3333 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 81 H -10.4438 32.7255 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 82 q -1.1847 28.2003 44.4964 -Verdana.ttf 91 x 31.1449 31.6705 83 & -11.5437 41.1629 44.5557 -Verdana.ttf 91 x 31.1449 31.6705 84 ’ -12.8584 11.5036 16.1408 -Verdana.ttf 91 x 31.1449 31.6705 85 [ -12.6675 15.1741 55.4929 -Verdana.ttf 91 x 31.1449 31.6705 86 - 10.2390 17.6705 4.8447 -Verdana.ttf 91 x 31.1449 31.6705 87 Y -10.8491 35.8297 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 88 Q -11.5158 40.5737 54.5262 -Verdana.ttf 91 x 31.1449 31.6705 89 " -12.5527 17.3150 16.3483 -Verdana.ttf 91 x 31.1449 31.6705 90 ! -10.6733 5.4814 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 91 x 0.0624 31.1449 31.6705 -Verdana.ttf 91 x 31.1449 31.6705 92 ) -12.8685 17.3150 56.0000 -Verdana.ttf 91 x 31.1449 31.6705 93 = 5.0017 33.8114 16.4964 -Verdana.ttf 91 x 31.1449 31.6705 94 + -4.6224 34.9855 34.9855 -Verdana.ttf 91 x 31.1449 31.6705 95 X -10.5099 35.9074 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 96 » -0.6181 28.0000 28.0000 -Verdana.ttf 91 x 31.1449 31.6705 97 ' -12.6128 6.1703 16.3483 -Verdana.ttf 91 x 31.1449 31.6705 98 ¢ -9.9205 27.2855 51.6115 -Verdana.ttf 91 x 31.1449 31.6705 99 Z -10.6079 33.2036 42.2074 -Verdana.ttf 91 x 31.1449 31.6705 100 > -3.2547 32.8447 32.8447 -Verdana.ttf 91 x 31.1449 31.6705 101 ® -11.8797 49.3445 49.3445 -Verdana.ttf 91 x 31.1449 31.6705 102 © -11.5808 49.3445 49.3445 -Verdana.ttf 91 x 31.1449 31.6705 103 ] -12.6306 15.1741 55.4929 -Verdana.ttf 91 x 31.1449 31.6705 104 é -16.0255 28.8152 48.8629 -Verdana.ttf 91 x 31.1449 31.6705 105 z -0.0500 25.5036 31.6705 -Verdana.ttf 91 x 31.1449 31.6705 106 _ 36.9511 37.0038 3.3150 -Verdana.ttf 91 x 31.1449 31.6705 107 ¥ -10.7175 31.1332 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 1 t 3.5600 20.1669 41.8484 -Verdana.ttf 92 ) 17.3150 56.0000 2 h 0.0533 26.4669 44.3483 -Verdana.ttf 92 ) 17.3150 56.0000 3 a 11.6781 26.7969 34.0188 -Verdana.ttf 92 ) 17.3150 56.0000 4 n 11.4676 26.4669 32.8447 -Verdana.ttf 92 ) 17.3150 56.0000 5 P 2.3201 27.8519 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 6 o 11.5304 29.3745 34.0188 -Verdana.ttf 92 ) 17.3150 56.0000 7 e 11.5170 28.8152 34.0188 -Verdana.ttf 92 ) 17.3150 56.0000 8 : 12.5004 6.6555 31.6705 -Verdana.ttf 92 ) 17.3150 56.0000 9 r 12.6777 19.6817 31.6705 -Verdana.ttf 92 ) 17.3150 56.0000 10 l 0.0577 5.3333 44.3483 -Verdana.ttf 92 ) 17.3150 56.0000 11 i 2.2605 5.3333 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 12 1 2.2297 22.9445 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 13 | -0.3442 5.2036 55.4929 -Verdana.ttf 92 ) 17.3150 56.0000 14 N 2.0775 31.5514 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 15 f -0.0856 20.5259 44.3483 -Verdana.ttf 92 ) 17.3150 56.0000 16 g 11.2312 28.2003 44.4964 -Verdana.ttf 92 ) 17.3150 56.0000 17 d -0.2409 28.2003 45.5224 -Verdana.ttf 92 ) 17.3150 56.0000 18 W 2.1303 52.3887 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 19 s 11.6603 25.0150 34.0188 -Verdana.ttf 92 ) 17.3150 56.0000 20 c 11.7785 25.6820 34.0188 -Verdana.ttf 92 ) 17.3150 56.0000 21 u 12.8834 26.4669 32.8447 -Verdana.ttf 92 ) 17.3150 56.0000 22 3 0.8217 28.2074 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 23 ~ 17.0020 37.0038 17.5224 -Verdana.ttf 92 ) 17.3150 56.0000 24 # 2.1408 36.5186 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 25 O 1.1513 39.3996 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 26 ` -3.2204 11.8592 10.6850 -Verdana.ttf 92 ) 17.3150 56.0000 27 @ 1.3613 48.3778 49.6815 -Verdana.ttf 92 ) 17.3150 56.0000 28 F 1.8746 26.3478 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 29 S 0.7110 32.5147 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 30 p 11.4902 28.2003 44.4964 -Verdana.ttf 92 ) 17.3150 56.0000 31 “ -0.2038 23.0072 16.1408 -Verdana.ttf 92 ) 17.3150 56.0000 32 % 1.0334 54.3188 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 33 £ 0.6693 29.1741 43.3815 -Verdana.ttf 92 ) 17.3150 56.0000 34 . 36.1226 6.6555 8.1886 -Verdana.ttf 92 ) 17.3150 56.0000 35 2 1.1959 28.3370 43.3815 -Verdana.ttf 92 ) 17.3150 56.0000 36 5 0.9696 27.5114 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 37 m 11.5482 46.3480 32.8447 -Verdana.ttf 92 ) 17.3150 56.0000 38 V 2.0149 37.5109 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 39 6 0.8575 29.6593 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 40 w 12.3345 42.9667 31.6705 -Verdana.ttf 92 ) 17.3150 56.0000 41 T 2.2164 35.8297 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 42 M 2.0836 37.7217 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 43 G 0.9667 38.0483 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 44 b 0.1947 28.2003 45.5224 -Verdana.ttf 92 ) 17.3150 56.0000 45 9 1.2445 29.6593 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 46 ; 12.6364 12.1891 42.1191 -Verdana.ttf 92 ) 17.3150 56.0000 47 D 2.0639 35.8587 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 48 L 2.2359 26.6777 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 49 y 12.6661 31.1449 43.3223 -Verdana.ttf 92 ) 17.3150 56.0000 50 ‘ -0.1715 11.5036 16.1408 -Verdana.ttf 92 ) 17.3150 56.0000 51 \ -0.2729 25.1446 53.0150 -Verdana.ttf 92 ) 17.3150 56.0000 52 R 2.0371 34.9855 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 53 < 8.9675 32.8447 32.8447 -Verdana.ttf 92 ) 17.3150 56.0000 54 4 2.2725 32.2369 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 55 8 1.0258 29.9590 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 56 0 1.1408 28.9448 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 57 A 1.9482 37.5109 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 58 E 2.1821 27.8774 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 59 B 1.9797 32.0295 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 60 v 12.7249 31.1449 31.6705 -Verdana.ttf 92 ) 17.3150 56.0000 61 k 0.1168 29.1741 44.3483 -Verdana.ttf 92 ) 17.3150 56.0000 62 J 2.3168 20.1703 43.3815 -Verdana.ttf 92 ) 17.3150 56.0000 63 U 2.2917 32.6187 43.3815 -Verdana.ttf 92 ) 17.3150 56.0000 64 j 2.0871 16.4964 53.8592 -Verdana.ttf 92 ) 17.3150 56.0000 65 ( 0.2173 17.3150 56.0000 -Verdana.ttf 92 ) 17.3150 56.0000 66 7 1.9362 29.1741 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 67 § 0.8455 27.0333 54.3965 -Verdana.ttf 92 ) 17.3150 56.0000 68 $ -0.4468 28.8186 54.8039 -Verdana.ttf 92 ) 17.3150 56.0000 69 € 1.0599 34.6555 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 70 / -0.2913 25.1446 53.0150 -Verdana.ttf 92 ) 17.3150 56.0000 71 C 1.2372 35.1627 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 72 * -0.0000 27.3888 26.3188 -Verdana.ttf 92 ) 17.3150 56.0000 73 ” 0.0663 23.0072 16.1408 -Verdana.ttf 92 ) 17.3150 56.0000 74 ? 0.9875 23.9705 43.3815 -Verdana.ttf 92 ) 17.3150 56.0000 75 { 0.0130 26.6962 55.4929 -Verdana.ttf 92 ) 17.3150 56.0000 76 } -0.0035 26.6962 55.4929 -Verdana.ttf 92 ) 17.3150 56.0000 77 , 35.8452 12.1891 18.6372 -Verdana.ttf 92 ) 17.3150 56.0000 78 I 2.0121 16.4442 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 79 ° 0.9649 22.7964 22.7964 -Verdana.ttf 92 ) 17.3150 56.0000 80 K 2.2330 33.3333 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 81 H 2.0922 32.7255 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 82 q 11.4430 28.2003 44.4964 -Verdana.ttf 92 ) 17.3150 56.0000 83 & 0.9004 41.1629 44.5557 -Verdana.ttf 92 ) 17.3150 56.0000 84 ’ -0.0474 11.5036 16.1408 -Verdana.ttf 92 ) 17.3150 56.0000 85 [ -0.1212 15.1741 55.4929 -Verdana.ttf 92 ) 17.3150 56.0000 86 - 22.9431 17.6705 4.8447 -Verdana.ttf 92 ) 17.3150 56.0000 87 Y 2.3527 35.8297 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 88 Q 1.1709 40.5737 54.5262 -Verdana.ttf 92 ) 17.3150 56.0000 89 " -0.0235 17.3150 16.3483 -Verdana.ttf 92 ) 17.3150 56.0000 90 ! 1.9797 5.4814 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 91 x 12.8133 31.1449 31.6705 -Verdana.ttf 92 ) 17.3150 56.0000 92 ) -0.0703 17.3150 56.0000 -Verdana.ttf 92 ) 17.3150 56.0000 93 = 17.6983 33.8114 16.4964 -Verdana.ttf 92 ) 17.3150 56.0000 94 + 8.4302 34.9855 34.9855 -Verdana.ttf 92 ) 17.3150 56.0000 95 X 2.4219 35.9074 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 96 » 11.9402 28.0000 28.0000 -Verdana.ttf 92 ) 17.3150 56.0000 97 ' 0.0922 6.1703 16.3483 -Verdana.ttf 92 ) 17.3150 56.0000 98 ¢ 2.8403 27.2855 51.6115 -Verdana.ttf 92 ) 17.3150 56.0000 99 Z 2.0026 33.2036 42.2074 -Verdana.ttf 92 ) 17.3150 56.0000 100 > 9.1654 32.8447 32.8447 -Verdana.ttf 92 ) 17.3150 56.0000 101 ® 1.1340 49.3445 49.3445 -Verdana.ttf 92 ) 17.3150 56.0000 102 © 0.8999 49.3445 49.3445 -Verdana.ttf 92 ) 17.3150 56.0000 103 ] -0.1288 15.1741 55.4929 -Verdana.ttf 92 ) 17.3150 56.0000 104 é -3.5179 28.8152 48.8629 -Verdana.ttf 92 ) 17.3150 56.0000 105 z 12.6226 25.5036 31.6705 -Verdana.ttf 92 ) 17.3150 56.0000 106 _ 49.4898 37.0038 3.3150 -Verdana.ttf 92 ) 17.3150 56.0000 107 ¥ 2.1999 31.1332 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 1 t -14.0668 20.1669 41.8484 -Verdana.ttf 93 = 33.8114 16.4964 2 h -17.5717 26.4669 44.3483 -Verdana.ttf 93 = 33.8114 16.4964 3 a -5.9683 26.7969 34.0188 -Verdana.ttf 93 = 33.8114 16.4964 4 n -5.7333 26.4669 32.8447 -Verdana.ttf 93 = 33.8114 16.4964 5 P -15.3406 27.8519 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 6 o -6.0188 29.3745 34.0188 -Verdana.ttf 93 = 33.8114 16.4964 7 e -5.8933 28.8152 34.0188 -Verdana.ttf 93 = 33.8114 16.4964 8 : -4.9817 6.6555 31.6705 -Verdana.ttf 93 = 33.8114 16.4964 9 r -5.0267 19.6817 31.6705 -Verdana.ttf 93 = 33.8114 16.4964 10 l -17.6228 5.3333 44.3483 -Verdana.ttf 93 = 33.8114 16.4964 11 i -15.6213 5.3333 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 12 1 -15.3609 22.9445 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 13 | -17.4556 5.2036 55.4929 -Verdana.ttf 93 = 33.8114 16.4964 14 N -15.3402 31.5514 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 15 f -17.5714 20.5259 44.3483 -Verdana.ttf 93 = 33.8114 16.4964 16 g -5.6847 28.2003 44.4964 -Verdana.ttf 93 = 33.8114 16.4964 17 d -17.5536 28.2003 45.5224 -Verdana.ttf 93 = 33.8114 16.4964 18 W -15.1513 52.3887 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 19 s -5.7678 25.0150 34.0188 -Verdana.ttf 93 = 33.8114 16.4964 20 c -6.1087 25.6820 34.0188 -Verdana.ttf 93 = 33.8114 16.4964 21 u -4.5802 26.4669 32.8447 -Verdana.ttf 93 = 33.8114 16.4964 22 3 -16.3808 28.2074 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 23 ~ -0.7559 37.0038 17.5224 -Verdana.ttf 93 = 33.8114 16.4964 24 # -15.4566 36.5186 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 25 O -16.5470 39.3996 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 26 ` -20.4785 11.8592 10.6850 -Verdana.ttf 93 = 33.8114 16.4964 27 @ -16.4047 48.3778 49.6815 -Verdana.ttf 93 = 33.8114 16.4964 28 F -15.4113 26.3478 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 29 S -16.7469 32.5147 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 30 p -6.0260 28.2003 44.4964 -Verdana.ttf 93 = 33.8114 16.4964 31 “ -17.5752 23.0072 16.1408 -Verdana.ttf 93 = 33.8114 16.4964 32 % -16.5186 54.3188 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 33 £ -16.8142 29.1741 43.3815 -Verdana.ttf 93 = 33.8114 16.4964 34 . 18.4454 6.6555 8.1886 -Verdana.ttf 93 = 33.8114 16.4964 35 2 -16.6873 28.3370 43.3815 -Verdana.ttf 93 = 33.8114 16.4964 36 5 -16.6996 27.5114 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 37 m -6.1755 46.3480 32.8447 -Verdana.ttf 93 = 33.8114 16.4964 38 V -15.4238 37.5109 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 39 6 -16.3663 29.6593 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 40 w -4.9807 42.9667 31.6705 -Verdana.ttf 93 = 33.8114 16.4964 41 T -15.2912 35.8297 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 42 M -15.2945 37.7217 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 43 G -16.4095 38.0483 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 44 b -17.8241 28.2003 45.5224 -Verdana.ttf 93 = 33.8114 16.4964 45 9 -16.6865 29.6593 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 46 ; -4.6592 12.1891 42.1191 -Verdana.ttf 93 = 33.8114 16.4964 47 D -15.3663 35.8587 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 48 L -15.2433 26.6777 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 49 y -4.4736 31.1449 43.3223 -Verdana.ttf 93 = 33.8114 16.4964 50 ‘ -17.5785 11.5036 16.1408 -Verdana.ttf 93 = 33.8114 16.4964 51 \ -17.6066 25.1446 53.0150 -Verdana.ttf 93 = 33.8114 16.4964 52 R -15.1845 34.9855 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 53 < -8.0344 32.8447 32.8447 -Verdana.ttf 93 = 33.8114 16.4964 54 4 -15.2498 32.2369 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 55 8 -16.6663 29.9590 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 56 0 -16.6283 28.9448 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 57 A -15.5843 37.5109 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 58 E -15.3801 27.8774 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 59 B -15.4613 32.0295 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 60 v -4.9051 31.1449 31.6705 -Verdana.ttf 93 = 33.8114 16.4964 61 k -17.3657 29.1741 44.3483 -Verdana.ttf 93 = 33.8114 16.4964 62 J -15.1697 20.1703 43.3815 -Verdana.ttf 93 = 33.8114 16.4964 63 U -15.5751 32.6187 43.3815 -Verdana.ttf 93 = 33.8114 16.4964 64 j -15.3710 16.4964 53.8592 -Verdana.ttf 93 = 33.8114 16.4964 65 ( -17.4973 17.3150 56.0000 -Verdana.ttf 93 = 33.8114 16.4964 66 7 -15.2535 29.1741 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 67 § -16.5681 27.0333 54.3965 -Verdana.ttf 93 = 33.8114 16.4964 68 $ -18.1523 28.8186 54.8039 -Verdana.ttf 93 = 33.8114 16.4964 69 € -16.7012 34.6555 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 70 / -17.7396 25.1446 53.0150 -Verdana.ttf 93 = 33.8114 16.4964 71 C -16.7177 35.1627 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 72 * -17.5002 27.3888 26.3188 -Verdana.ttf 93 = 33.8114 16.4964 73 ” -17.4984 23.0072 16.1408 -Verdana.ttf 93 = 33.8114 16.4964 74 ? -16.6159 23.9705 43.3815 -Verdana.ttf 93 = 33.8114 16.4964 75 { -17.5589 26.6962 55.4929 -Verdana.ttf 93 = 33.8114 16.4964 76 } -17.5648 26.6962 55.4929 -Verdana.ttf 93 = 33.8114 16.4964 77 , 18.3783 12.1891 18.6372 -Verdana.ttf 93 = 33.8114 16.4964 78 I -15.2676 16.4442 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 79 ° -16.6147 22.7964 22.7964 -Verdana.ttf 93 = 33.8114 16.4964 80 K -15.7276 33.3333 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 81 H -15.7064 32.7255 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 82 q -6.2335 28.2003 44.4964 -Verdana.ttf 93 = 33.8114 16.4964 83 & -16.3217 41.1629 44.5557 -Verdana.ttf 93 = 33.8114 16.4964 84 ’ -17.8713 11.5036 16.1408 -Verdana.ttf 93 = 33.8114 16.4964 85 [ -17.7430 15.1741 55.4929 -Verdana.ttf 93 = 33.8114 16.4964 86 - 5.7653 17.6705 4.8447 -Verdana.ttf 93 = 33.8114 16.4964 87 Y -15.5512 35.8297 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 88 Q -16.4769 40.5737 54.5262 -Verdana.ttf 93 = 33.8114 16.4964 89 " -17.3425 17.3150 16.3483 -Verdana.ttf 93 = 33.8114 16.4964 90 ! -15.7044 5.4814 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 91 x -4.7532 31.1449 31.6705 -Verdana.ttf 93 = 33.8114 16.4964 92 ) -17.2975 17.3150 56.0000 -Verdana.ttf 93 = 33.8114 16.4964 93 = 0.3061 33.8114 16.4964 -Verdana.ttf 93 = 33.8114 16.4964 94 + -9.0245 34.9855 34.9855 -Verdana.ttf 93 = 33.8114 16.4964 95 X -15.2209 35.9074 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 96 » -5.7479 28.0000 28.0000 -Verdana.ttf 93 = 33.8114 16.4964 97 ' -17.5695 6.1703 16.3483 -Verdana.ttf 93 = 33.8114 16.4964 98 ¢ -14.8423 27.2855 51.6115 -Verdana.ttf 93 = 33.8114 16.4964 99 Z -15.2835 33.2036 42.2074 -Verdana.ttf 93 = 33.8114 16.4964 100 > -8.2430 32.8447 32.8447 -Verdana.ttf 93 = 33.8114 16.4964 101 ® -16.4918 49.3445 49.3445 -Verdana.ttf 93 = 33.8114 16.4964 102 © -16.7748 49.3445 49.3445 -Verdana.ttf 93 = 33.8114 16.4964 103 ] -17.4825 15.1741 55.4929 -Verdana.ttf 93 = 33.8114 16.4964 104 é -20.9432 28.8152 48.8629 -Verdana.ttf 93 = 33.8114 16.4964 105 z -4.7867 25.5036 31.6705 -Verdana.ttf 93 = 33.8114 16.4964 106 _ 32.0651 37.0038 3.3150 -Verdana.ttf 93 = 33.8114 16.4964 107 ¥ -15.8622 31.1332 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 1 t -4.9216 20.1669 41.8484 -Verdana.ttf 94 + 34.9855 34.9855 2 h -8.2592 26.4669 44.3483 -Verdana.ttf 94 + 34.9855 34.9855 3 a 3.1893 26.7969 34.0188 -Verdana.ttf 94 + 34.9855 34.9855 4 n 2.8076 26.4669 32.8447 -Verdana.ttf 94 + 34.9855 34.9855 5 P -6.2697 27.8519 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 6 o 2.8899 29.3745 34.0188 -Verdana.ttf 94 + 34.9855 34.9855 7 e 3.5839 28.8152 34.0188 -Verdana.ttf 94 + 34.9855 34.9855 8 : 4.3427 6.6555 31.6705 -Verdana.ttf 94 + 34.9855 34.9855 9 r 3.9535 19.6817 31.6705 -Verdana.ttf 94 + 34.9855 34.9855 10 l -8.5397 5.3333 44.3483 -Verdana.ttf 94 + 34.9855 34.9855 11 i -6.1438 5.3333 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 12 1 -6.5432 22.9445 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 13 | -8.3663 5.2036 55.4929 -Verdana.ttf 94 + 34.9855 34.9855 14 N -6.0964 31.5514 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 15 f -8.4249 20.5259 44.3483 -Verdana.ttf 94 + 34.9855 34.9855 16 g 2.6836 28.2003 44.4964 -Verdana.ttf 94 + 34.9855 34.9855 17 d -8.6167 28.2003 45.5224 -Verdana.ttf 94 + 34.9855 34.9855 18 W -6.4551 52.3887 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 19 s 2.9764 25.0150 34.0188 -Verdana.ttf 94 + 34.9855 34.9855 20 c 2.7798 25.6820 34.0188 -Verdana.ttf 94 + 34.9855 34.9855 21 u 4.1120 26.4669 32.8447 -Verdana.ttf 94 + 34.9855 34.9855 22 3 -7.7586 28.2074 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 23 ~ 7.8369 37.0038 17.5224 -Verdana.ttf 94 + 34.9855 34.9855 24 # -6.4210 36.5186 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 25 O -7.6915 39.3996 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 26 ` -12.2922 11.8592 10.6850 -Verdana.ttf 94 + 34.9855 34.9855 27 @ -7.4226 48.3778 49.6815 -Verdana.ttf 94 + 34.9855 34.9855 28 F -6.1798 26.3478 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 29 S -7.4684 32.5147 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 30 p 2.8886 28.2003 44.4964 -Verdana.ttf 94 + 34.9855 34.9855 31 “ -9.0097 23.0072 16.1408 -Verdana.ttf 94 + 34.9855 34.9855 32 % -7.8566 54.3188 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 33 £ -7.5890 29.1741 43.3815 -Verdana.ttf 94 + 34.9855 34.9855 34 . 27.7031 6.6555 8.1886 -Verdana.ttf 94 + 34.9855 34.9855 35 2 -7.5798 28.3370 43.3815 -Verdana.ttf 94 + 34.9855 34.9855 36 5 -7.8278 27.5114 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 37 m 3.2378 46.3480 32.8447 -Verdana.ttf 94 + 34.9855 34.9855 38 V -6.1999 37.5109 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 39 6 -7.5068 29.6593 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 40 w 3.8178 42.9667 31.6705 -Verdana.ttf 94 + 34.9855 34.9855 41 T -6.4884 35.8297 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 42 M -6.4883 37.7217 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 43 G -7.7942 38.0483 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 44 b -8.5704 28.2003 45.5224 -Verdana.ttf 94 + 34.9855 34.9855 45 9 -7.6908 29.6593 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 46 ; 4.0169 12.1891 42.1191 -Verdana.ttf 94 + 34.9855 34.9855 47 D -6.2037 35.8587 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 48 L -6.6614 26.6777 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 49 y 3.9905 31.1449 43.3223 -Verdana.ttf 94 + 34.9855 34.9855 50 ‘ -8.6354 11.5036 16.1408 -Verdana.ttf 94 + 34.9855 34.9855 51 \ -8.7569 25.1446 53.0150 -Verdana.ttf 94 + 34.9855 34.9855 52 R -6.1577 34.9855 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 53 < 0.9624 32.8447 32.8447 -Verdana.ttf 94 + 34.9855 34.9855 54 4 -6.2312 32.2369 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 55 8 -7.5385 29.9590 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 56 0 -7.9117 28.9448 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 57 A -6.1605 37.5109 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 58 E -6.1971 27.8774 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 59 B -6.2671 32.0295 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 60 v 3.7612 31.1449 31.6705 -Verdana.ttf 94 + 34.9855 34.9855 61 k -8.7061 29.1741 44.3483 -Verdana.ttf 94 + 34.9855 34.9855 62 J -6.1717 20.1703 43.3815 -Verdana.ttf 94 + 34.9855 34.9855 63 U -6.4238 32.6187 43.3815 -Verdana.ttf 94 + 34.9855 34.9855 64 j -6.5166 16.4964 53.8592 -Verdana.ttf 94 + 34.9855 34.9855 65 ( -8.3143 17.3150 56.0000 -Verdana.ttf 94 + 34.9855 34.9855 66 7 -6.4787 29.1741 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 67 § -7.6706 27.0333 54.3965 -Verdana.ttf 94 + 34.9855 34.9855 68 $ -9.0582 28.8186 54.8039 -Verdana.ttf 94 + 34.9855 34.9855 69 € -7.4967 34.6555 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 70 / -8.4370 25.1446 53.0150 -Verdana.ttf 94 + 34.9855 34.9855 71 C -7.4649 35.1627 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 72 * -8.6814 27.3888 26.3188 -Verdana.ttf 94 + 34.9855 34.9855 73 ” -8.9669 23.0072 16.1408 -Verdana.ttf 94 + 34.9855 34.9855 74 ? -7.8965 23.9705 43.3815 -Verdana.ttf 94 + 34.9855 34.9855 75 { -8.2942 26.6962 55.4929 -Verdana.ttf 94 + 34.9855 34.9855 76 } -8.4048 26.6962 55.4929 -Verdana.ttf 94 + 34.9855 34.9855 77 , 27.8669 12.1891 18.6372 -Verdana.ttf 94 + 34.9855 34.9855 78 I -6.2643 16.4442 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 79 ° -7.7042 22.7964 22.7964 -Verdana.ttf 94 + 34.9855 34.9855 80 K -6.6965 33.3333 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 81 H -6.4369 32.7255 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 82 q 3.0615 28.2003 44.4964 -Verdana.ttf 94 + 34.9855 34.9855 83 & -7.7616 41.1629 44.5557 -Verdana.ttf 94 + 34.9855 34.9855 84 ’ -8.6730 11.5036 16.1408 -Verdana.ttf 94 + 34.9855 34.9855 85 [ -8.3427 15.1741 55.4929 -Verdana.ttf 94 + 34.9855 34.9855 86 - 14.4819 17.6705 4.8447 -Verdana.ttf 94 + 34.9855 34.9855 87 Y -6.4561 35.8297 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 88 Q -7.6889 40.5737 54.5262 -Verdana.ttf 94 + 34.9855 34.9855 89 " -8.5585 17.3150 16.3483 -Verdana.ttf 94 + 34.9855 34.9855 90 ! -6.1605 5.4814 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 91 x 4.0655 31.1449 31.6705 -Verdana.ttf 94 + 34.9855 34.9855 92 ) -8.3220 17.3150 56.0000 -Verdana.ttf 94 + 34.9855 34.9855 93 = 9.3277 33.8114 16.4964 -Verdana.ttf 94 + 34.9855 34.9855 94 + -0.2489 34.9855 34.9855 -Verdana.ttf 94 + 34.9855 34.9855 95 X -6.5421 35.9074 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 96 » 2.8363 28.0000 28.0000 -Verdana.ttf 94 + 34.9855 34.9855 97 ' -8.2951 6.1703 16.3483 -Verdana.ttf 94 + 34.9855 34.9855 98 ¢ -5.8346 27.2855 51.6115 -Verdana.ttf 94 + 34.9855 34.9855 99 Z -6.6454 33.2036 42.2074 -Verdana.ttf 94 + 34.9855 34.9855 100 > 0.5132 32.8447 32.8447 -Verdana.ttf 94 + 34.9855 34.9855 101 ® -7.6408 49.3445 49.3445 -Verdana.ttf 94 + 34.9855 34.9855 102 © -7.3746 49.3445 49.3445 -Verdana.ttf 94 + 34.9855 34.9855 103 ] -8.6198 15.1741 55.4929 -Verdana.ttf 94 + 34.9855 34.9855 104 é -11.8425 28.8152 48.8629 -Verdana.ttf 94 + 34.9855 34.9855 105 z 4.2084 25.5036 31.6705 -Verdana.ttf 94 + 34.9855 34.9855 106 _ 40.9559 37.0038 3.3150 -Verdana.ttf 94 + 34.9855 34.9855 107 ¥ -6.5378 31.1332 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 1 t 1.5941 20.1669 41.8484 -Verdana.ttf 95 X 35.9074 42.2074 2 h -1.9255 26.4669 44.3483 -Verdana.ttf 95 X 35.9074 42.2074 3 a 9.4829 26.7969 34.0188 -Verdana.ttf 95 X 35.9074 42.2074 4 n 8.9332 26.4669 32.8447 -Verdana.ttf 95 X 35.9074 42.2074 5 P 0.0870 27.8519 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 6 o 9.0773 29.3745 34.0188 -Verdana.ttf 95 X 35.9074 42.2074 7 e 9.1614 28.8152 34.0188 -Verdana.ttf 95 X 35.9074 42.2074 8 : 10.5927 6.6555 31.6705 -Verdana.ttf 95 X 35.9074 42.2074 9 r 10.7392 19.6817 31.6705 -Verdana.ttf 95 X 35.9074 42.2074 10 l -1.9544 5.3333 44.3483 -Verdana.ttf 95 X 35.9074 42.2074 11 i -0.2681 5.3333 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 12 1 0.1919 22.9445 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 13 | -1.9986 5.2036 55.4929 -Verdana.ttf 95 X 35.9074 42.2074 14 N -0.0370 31.5514 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 15 f -1.7901 20.5259 44.3483 -Verdana.ttf 95 X 35.9074 42.2074 16 g 8.9413 28.2003 44.4964 -Verdana.ttf 95 X 35.9074 42.2074 17 d -1.9808 28.2003 45.5224 -Verdana.ttf 95 X 35.9074 42.2074 18 W 0.2609 52.3887 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 19 s 9.6617 25.0150 34.0188 -Verdana.ttf 95 X 35.9074 42.2074 20 c 9.0081 25.6820 34.0188 -Verdana.ttf 95 X 35.9074 42.2074 21 u 10.4332 26.4669 32.8447 -Verdana.ttf 95 X 35.9074 42.2074 22 3 -0.8724 28.2074 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 23 ~ 14.8955 37.0038 17.5224 -Verdana.ttf 95 X 35.9074 42.2074 24 # -0.0080 36.5186 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 25 O -1.2140 39.3996 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 26 ` -5.4151 11.8592 10.6850 -Verdana.ttf 95 X 35.9074 42.2074 27 @ -1.5202 48.3778 49.6815 -Verdana.ttf 95 X 35.9074 42.2074 28 F -0.1389 26.3478 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 29 S -1.3203 32.5147 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 30 p 9.5779 28.2003 44.4964 -Verdana.ttf 95 X 35.9074 42.2074 31 “ -2.3950 23.0072 16.1408 -Verdana.ttf 95 X 35.9074 42.2074 32 % -1.4941 54.3188 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 33 £ -1.0910 29.1741 43.3815 -Verdana.ttf 95 X 35.9074 42.2074 34 . 34.1226 6.6555 8.1886 -Verdana.ttf 95 X 35.9074 42.2074 35 2 -0.8128 28.3370 43.3815 -Verdana.ttf 95 X 35.9074 42.2074 36 5 -1.0181 27.5114 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 37 m 9.5340 46.3480 32.8447 -Verdana.ttf 95 X 35.9074 42.2074 38 V -0.0326 37.5109 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 39 6 -1.3895 29.6593 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 40 w 10.6200 42.9667 31.6705 -Verdana.ttf 95 X 35.9074 42.2074 41 T 0.1360 35.8297 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 42 M -0.1868 37.7217 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 43 G -0.9963 38.0483 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 44 b -1.8213 28.2003 45.5224 -Verdana.ttf 95 X 35.9074 42.2074 45 9 -1.1546 29.6593 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 46 ; 10.6474 12.1891 42.1191 -Verdana.ttf 95 X 35.9074 42.2074 47 D -0.0251 35.8587 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 48 L 0.0167 26.6777 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 49 y 10.3283 31.1449 43.3223 -Verdana.ttf 95 X 35.9074 42.2074 50 ‘ -2.0585 11.5036 16.1408 -Verdana.ttf 95 X 35.9074 42.2074 51 \ -2.2489 25.1446 53.0150 -Verdana.ttf 95 X 35.9074 42.2074 52 R 0.2585 34.9855 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 53 < 6.9198 32.8447 32.8447 -Verdana.ttf 95 X 35.9074 42.2074 54 4 0.0462 32.2369 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 55 8 -1.1088 29.9590 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 56 0 -1.3914 28.9448 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 57 A -0.0471 37.5109 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 58 E 0.5709 27.8774 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 59 B 0.1745 32.0295 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 60 v 10.4282 31.1449 31.6705 -Verdana.ttf 95 X 35.9074 42.2074 61 k -2.5147 29.1741 44.3483 -Verdana.ttf 95 X 35.9074 42.2074 62 J 0.0103 20.1703 43.3815 -Verdana.ttf 95 X 35.9074 42.2074 63 U 0.1125 32.6187 43.3815 -Verdana.ttf 95 X 35.9074 42.2074 64 j -0.1701 16.4964 53.8592 -Verdana.ttf 95 X 35.9074 42.2074 65 ( -2.3201 17.3150 56.0000 -Verdana.ttf 95 X 35.9074 42.2074 66 7 -0.1427 29.1741 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 67 § -1.2121 27.0333 54.3965 -Verdana.ttf 95 X 35.9074 42.2074 68 $ -2.8962 28.8186 54.8039 -Verdana.ttf 95 X 35.9074 42.2074 69 € -1.3581 34.6555 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 70 / -2.2032 25.1446 53.0150 -Verdana.ttf 95 X 35.9074 42.2074 71 C -1.1802 35.1627 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 72 * -2.0030 27.3888 26.3188 -Verdana.ttf 95 X 35.9074 42.2074 73 ” -2.0335 23.0072 16.1408 -Verdana.ttf 95 X 35.9074 42.2074 74 ? -1.0838 23.9705 43.3815 -Verdana.ttf 95 X 35.9074 42.2074 75 { -1.8572 26.6962 55.4929 -Verdana.ttf 95 X 35.9074 42.2074 76 } -2.2577 26.6962 55.4929 -Verdana.ttf 95 X 35.9074 42.2074 77 , 34.0122 12.1891 18.6372 -Verdana.ttf 95 X 35.9074 42.2074 78 I 0.0776 16.4442 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 79 ° -1.3308 22.7964 22.7964 -Verdana.ttf 95 X 35.9074 42.2074 80 K -0.1926 33.3333 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 81 H -0.1802 32.7255 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 82 q 9.2946 28.2003 44.4964 -Verdana.ttf 95 X 35.9074 42.2074 83 & -1.0632 41.1629 44.5557 -Verdana.ttf 95 X 35.9074 42.2074 84 ’ -2.0942 11.5036 16.1408 -Verdana.ttf 95 X 35.9074 42.2074 85 [ -1.9421 15.1741 55.4929 -Verdana.ttf 95 X 35.9074 42.2074 86 - 20.9090 17.6705 4.8447 -Verdana.ttf 95 X 35.9074 42.2074 87 Y -0.1606 35.8297 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 88 Q -0.9733 40.5737 54.5262 -Verdana.ttf 95 X 35.9074 42.2074 89 " -2.0653 17.3150 16.3483 -Verdana.ttf 95 X 35.9074 42.2074 90 ! 0.0889 5.4814 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 91 x 10.4060 31.1449 31.6705 -Verdana.ttf 95 X 35.9074 42.2074 92 ) -2.3114 17.3150 56.0000 -Verdana.ttf 95 X 35.9074 42.2074 93 = 15.3095 33.8114 16.4964 -Verdana.ttf 95 X 35.9074 42.2074 94 + 6.3724 34.9855 34.9855 -Verdana.ttf 95 X 35.9074 42.2074 95 X 0.0700 35.9074 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 96 » 9.5428 28.0000 28.0000 -Verdana.ttf 95 X 35.9074 42.2074 97 ' -2.2722 6.1703 16.3483 -Verdana.ttf 95 X 35.9074 42.2074 98 ¢ 0.1704 27.2855 51.6115 -Verdana.ttf 95 X 35.9074 42.2074 99 Z 0.0870 33.2036 42.2074 -Verdana.ttf 95 X 35.9074 42.2074 100 > 6.9612 32.8447 32.8447 -Verdana.ttf 95 X 35.9074 42.2074 101 ® -1.2852 49.3445 49.3445 -Verdana.ttf 95 X 35.9074 42.2074 102 © -0.9617 49.3445 49.3445 -Verdana.ttf 95 X 35.9074 42.2074 103 ] -2.4763 15.1741 55.4929 -Verdana.ttf 95 X 35.9074 42.2074 104 é -5.4575 28.8152 48.8629 -Verdana.ttf 95 X 35.9074 42.2074 105 z 10.4231 25.5036 31.6705 -Verdana.ttf 95 X 35.9074 42.2074 106 _ 47.6492 37.0038 3.3150 -Verdana.ttf 95 X 35.9074 42.2074 107 ¥ 0.0370 31.1332 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 1 t -8.0870 20.1669 41.8484 -Verdana.ttf 96 » 28.0000 28.0000 2 h -11.8426 26.4669 44.3483 -Verdana.ttf 96 » 28.0000 28.0000 3 a -0.1276 26.7969 34.0188 -Verdana.ttf 96 » 28.0000 28.0000 4 n -0.1556 26.4669 32.8447 -Verdana.ttf 96 » 28.0000 28.0000 5 P -9.6220 27.8519 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 6 o -0.0719 29.3745 34.0188 -Verdana.ttf 96 » 28.0000 28.0000 7 e 0.0422 28.8152 34.0188 -Verdana.ttf 96 » 28.0000 28.0000 8 : 0.8393 6.6555 31.6705 -Verdana.ttf 96 » 28.0000 28.0000 9 r 0.9101 19.6817 31.6705 -Verdana.ttf 96 » 28.0000 28.0000 10 l -11.5869 5.3333 44.3483 -Verdana.ttf 96 » 28.0000 28.0000 11 i -9.4505 5.3333 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 12 1 -9.3240 22.9445 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 13 | -11.7129 5.2036 55.4929 -Verdana.ttf 96 » 28.0000 28.0000 14 N -9.5274 31.5514 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 15 f -11.7481 20.5259 44.3483 -Verdana.ttf 96 » 28.0000 28.0000 16 g -0.3242 28.2003 44.4964 -Verdana.ttf 96 » 28.0000 28.0000 17 d -11.5376 28.2003 45.5224 -Verdana.ttf 96 » 28.0000 28.0000 18 W -9.9899 52.3887 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 19 s 0.1728 25.0150 34.0188 -Verdana.ttf 96 » 28.0000 28.0000 20 c -0.1708 25.6820 34.0188 -Verdana.ttf 96 » 28.0000 28.0000 21 u 0.9710 26.4669 32.8447 -Verdana.ttf 96 » 28.0000 28.0000 22 3 -10.9350 28.2074 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 23 ~ 4.9006 37.0038 17.5224 -Verdana.ttf 96 » 28.0000 28.0000 24 # -9.4751 36.5186 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 25 O -10.9195 39.3996 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 26 ` -15.3993 11.8592 10.6850 -Verdana.ttf 96 » 28.0000 28.0000 27 @ -10.6827 48.3778 49.6815 -Verdana.ttf 96 » 28.0000 28.0000 28 F -9.5197 26.3478 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 29 S -10.7183 32.5147 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 30 p -0.2286 28.2003 44.4964 -Verdana.ttf 96 » 28.0000 28.0000 31 “ -11.9287 23.0072 16.1408 -Verdana.ttf 96 » 28.0000 28.0000 32 % -10.7381 54.3188 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 33 £ -10.6022 29.1741 43.3815 -Verdana.ttf 96 » 28.0000 28.0000 34 . 24.3039 6.6555 8.1886 -Verdana.ttf 96 » 28.0000 28.0000 35 2 -10.6557 28.3370 43.3815 -Verdana.ttf 96 » 28.0000 28.0000 36 5 -11.1704 27.5114 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 37 m -0.2900 46.3480 32.8447 -Verdana.ttf 96 » 28.0000 28.0000 38 V -9.6591 37.5109 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 39 6 -10.7842 29.6593 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 40 w 0.7832 42.9667 31.6705 -Verdana.ttf 96 » 28.0000 28.0000 41 T -9.3895 35.8297 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 42 M -9.7763 37.7217 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 43 G -10.8581 38.0483 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 44 b -11.3843 28.2003 45.5224 -Verdana.ttf 96 » 28.0000 28.0000 45 9 -10.7116 29.6593 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 46 ; 1.0219 12.1891 42.1191 -Verdana.ttf 96 » 28.0000 28.0000 47 D -9.6202 35.8587 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 48 L -9.5331 26.6777 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 49 y 0.9916 31.1449 43.3223 -Verdana.ttf 96 » 28.0000 28.0000 50 ‘ -11.4386 11.5036 16.1408 -Verdana.ttf 96 » 28.0000 28.0000 51 \ -11.7778 25.1446 53.0150 -Verdana.ttf 96 » 28.0000 28.0000 52 R -9.3293 34.9855 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 53 < -2.5657 32.8447 32.8447 -Verdana.ttf 96 » 28.0000 28.0000 54 4 -9.3443 32.2369 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 55 8 -10.8184 29.9590 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 56 0 -10.7545 28.9448 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 57 A -9.5850 37.5109 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 58 E -9.5596 27.8774 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 59 B -9.6158 32.0295 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 60 v 0.9478 31.1449 31.6705 -Verdana.ttf 96 » 28.0000 28.0000 61 k -11.7869 29.1741 44.3483 -Verdana.ttf 96 » 28.0000 28.0000 62 J -9.5159 20.1703 43.3815 -Verdana.ttf 96 » 28.0000 28.0000 63 U -9.5905 32.6187 43.3815 -Verdana.ttf 96 » 28.0000 28.0000 64 j -9.7471 16.4964 53.8592 -Verdana.ttf 96 » 28.0000 28.0000 65 ( -11.7952 17.3150 56.0000 -Verdana.ttf 96 » 28.0000 28.0000 66 7 -9.4799 29.1741 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 67 § -10.9042 27.0333 54.3965 -Verdana.ttf 96 » 28.0000 28.0000 68 $ -11.9424 28.8186 54.8039 -Verdana.ttf 96 » 28.0000 28.0000 69 € -10.5698 34.6555 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 70 / -11.4971 25.1446 53.0150 -Verdana.ttf 96 » 28.0000 28.0000 71 C -11.0399 35.1627 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 72 * -11.4255 27.3888 26.3188 -Verdana.ttf 96 » 28.0000 28.0000 73 ” -11.4358 23.0072 16.1408 -Verdana.ttf 96 » 28.0000 28.0000 74 ? -10.9374 23.9705 43.3815 -Verdana.ttf 96 » 28.0000 28.0000 75 { -11.8220 26.6962 55.4929 -Verdana.ttf 96 » 28.0000 28.0000 76 } -11.4269 26.6962 55.4929 -Verdana.ttf 96 » 28.0000 28.0000 77 , 24.2391 12.1891 18.6372 -Verdana.ttf 96 » 28.0000 28.0000 78 I -9.7396 16.4442 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 79 ° -10.4407 22.7964 22.7964 -Verdana.ttf 96 » 28.0000 28.0000 80 K -9.5659 33.3333 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 81 H -9.4986 32.7255 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 82 q -0.3343 28.2003 44.4964 -Verdana.ttf 96 » 28.0000 28.0000 83 & -10.9048 41.1629 44.5557 -Verdana.ttf 96 » 28.0000 28.0000 84 ’ -11.6678 11.5036 16.1408 -Verdana.ttf 96 » 28.0000 28.0000 85 [ -11.4837 15.1741 55.4929 -Verdana.ttf 96 » 28.0000 28.0000 86 - 11.2557 17.6705 4.8447 -Verdana.ttf 96 » 28.0000 28.0000 87 Y -9.7672 35.8297 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 88 Q -10.6746 40.5737 54.5262 -Verdana.ttf 96 » 28.0000 28.0000 89 " -11.5202 17.3150 16.3483 -Verdana.ttf 96 » 28.0000 28.0000 90 ! -9.6154 5.4814 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 91 x 1.1589 31.1449 31.6705 -Verdana.ttf 96 » 28.0000 28.0000 92 ) -11.6359 17.3150 56.0000 -Verdana.ttf 96 » 28.0000 28.0000 93 = 5.5256 33.8114 16.4964 -Verdana.ttf 96 » 28.0000 28.0000 94 + -3.3212 34.9855 34.9855 -Verdana.ttf 96 » 28.0000 28.0000 95 X -9.6134 35.9074 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 96 » 0.2548 28.0000 28.0000 -Verdana.ttf 96 » 28.0000 28.0000 97 ' -11.6047 6.1703 16.3483 -Verdana.ttf 96 » 28.0000 28.0000 98 ¢ -8.9937 27.2855 51.6115 -Verdana.ttf 96 » 28.0000 28.0000 99 Z -9.6605 33.2036 42.2074 -Verdana.ttf 96 » 28.0000 28.0000 100 > -2.3135 32.8447 32.8447 -Verdana.ttf 96 » 28.0000 28.0000 101 ® -10.5607 49.3445 49.3445 -Verdana.ttf 96 » 28.0000 28.0000 102 © -10.9130 49.3445 49.3445 -Verdana.ttf 96 » 28.0000 28.0000 103 ] -11.4761 15.1741 55.4929 -Verdana.ttf 96 » 28.0000 28.0000 104 é -15.1520 28.8152 48.8629 -Verdana.ttf 96 » 28.0000 28.0000 105 z 0.9534 25.5036 31.6705 -Verdana.ttf 96 » 28.0000 28.0000 106 _ 38.0813 37.0038 3.3150 -Verdana.ttf 96 » 28.0000 28.0000 107 ¥ -9.3660 31.1332 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 1 t 3.7980 20.1669 41.8484 -Verdana.ttf 97 ' 6.1703 16.3483 2 h -0.0943 26.4669 44.3483 -Verdana.ttf 97 ' 6.1703 16.3483 3 a 11.5704 26.7969 34.0188 -Verdana.ttf 97 ' 6.1703 16.3483 4 n 11.4166 26.4669 32.8447 -Verdana.ttf 97 ' 6.1703 16.3483 5 P 2.0533 27.8519 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 6 o 11.4013 29.3745 34.0188 -Verdana.ttf 97 ' 6.1703 16.3483 7 e 11.5036 28.8152 34.0188 -Verdana.ttf 97 ' 6.1703 16.3483 8 : 12.7148 6.6555 31.6705 -Verdana.ttf 97 ' 6.1703 16.3483 9 r 12.5105 19.6817 31.6705 -Verdana.ttf 97 ' 6.1703 16.3483 10 l 0.0399 5.3333 44.3483 -Verdana.ttf 97 ' 6.1703 16.3483 11 i 2.3081 5.3333 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 12 1 2.2446 22.9445 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 13 | 0.2909 5.2036 55.4929 -Verdana.ttf 97 ' 6.1703 16.3483 14 N 2.1434 31.5514 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 15 f -0.2296 20.5259 44.3483 -Verdana.ttf 97 ' 6.1703 16.3483 16 g 11.4166 28.2003 44.4964 -Verdana.ttf 97 ' 6.1703 16.3483 17 d 0.2057 28.2003 45.5224 -Verdana.ttf 97 ' 6.1703 16.3483 18 W 2.1557 52.3887 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 19 s 11.5479 25.0150 34.0188 -Verdana.ttf 97 ' 6.1703 16.3483 20 c 11.3397 25.6820 34.0188 -Verdana.ttf 97 ' 6.1703 16.3483 21 u 12.7870 26.4669 32.8447 -Verdana.ttf 97 ' 6.1703 16.3483 22 3 0.8797 28.2074 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 23 ~ 16.8155 37.0038 17.5224 -Verdana.ttf 97 ' 6.1703 16.3483 24 # 2.4677 36.5186 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 25 O 1.0436 39.3996 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 26 ` -3.3555 11.8592 10.6850 -Verdana.ttf 97 ' 6.1703 16.3483 27 @ 0.7495 48.3778 49.6815 -Verdana.ttf 97 ' 6.1703 16.3483 28 F 1.9000 26.3478 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 29 S 1.0585 32.5147 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 30 p 11.5083 28.2003 44.4964 -Verdana.ttf 97 ' 6.1703 16.3483 31 “ -0.2677 23.0072 16.1408 -Verdana.ttf 97 ' 6.1703 16.3483 32 % 1.0038 54.3188 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 33 £ 1.0556 29.1741 43.3815 -Verdana.ttf 97 ' 6.1703 16.3483 34 . 36.0087 6.6555 8.1886 -Verdana.ttf 97 ' 6.1703 16.3483 35 2 1.1608 28.3370 43.3815 -Verdana.ttf 97 ' 6.1703 16.3483 36 5 0.8365 27.5114 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 37 m 11.5406 46.3480 32.8447 -Verdana.ttf 97 ' 6.1703 16.3483 38 V 2.2206 37.5109 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 39 6 0.7994 29.6593 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 40 w 12.9088 42.9667 31.6705 -Verdana.ttf 97 ' 6.1703 16.3483 41 T 1.9750 35.8297 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 42 M 2.1071 37.7217 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 43 G 0.8140 38.0483 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 44 b -0.0076 28.2003 45.5224 -Verdana.ttf 97 ' 6.1703 16.3483 45 9 1.1959 29.6593 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 46 ; 12.5670 12.1891 42.1191 -Verdana.ttf 97 ' 6.1703 16.3483 47 D 2.1087 35.8587 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 48 L 2.1169 26.6777 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 49 y 12.8316 31.1449 43.3223 -Verdana.ttf 97 ' 6.1703 16.3483 50 ‘ -0.0199 11.5036 16.1408 -Verdana.ttf 97 ' 6.1703 16.3483 51 \ 0.1673 25.1446 53.0150 -Verdana.ttf 97 ' 6.1703 16.3483 52 R 1.9991 34.9855 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 53 < 8.9377 32.8447 32.8447 -Verdana.ttf 97 ' 6.1703 16.3483 54 4 2.3985 32.2369 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 55 8 0.9859 29.9590 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 56 0 0.9667 28.9448 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 57 A 2.1779 37.5109 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 58 E 2.1408 27.8774 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 59 B 1.9199 32.0295 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 60 v 12.6451 31.1449 31.6705 -Verdana.ttf 97 ' 6.1703 16.3483 61 k -0.2409 29.1741 44.3483 -Verdana.ttf 97 ' 6.1703 16.3483 62 J 2.2178 20.1703 43.3815 -Verdana.ttf 97 ' 6.1703 16.3483 63 U 2.1408 32.6187 43.3815 -Verdana.ttf 97 ' 6.1703 16.3483 64 j 1.9602 16.4964 53.8592 -Verdana.ttf 97 ' 6.1703 16.3483 65 ( 0.0889 17.3150 56.0000 -Verdana.ttf 97 ' 6.1703 16.3483 66 7 2.1375 29.1741 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 67 § 0.8869 27.0333 54.3965 -Verdana.ttf 97 ' 6.1703 16.3483 68 $ -0.2438 28.8186 54.8039 -Verdana.ttf 97 ' 6.1703 16.3483 69 € 1.0436 34.6555 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 70 / 0.1629 25.1446 53.0150 -Verdana.ttf 97 ' 6.1703 16.3483 71 C 1.0186 35.1627 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 72 * -0.0134 27.3888 26.3188 -Verdana.ttf 97 ' 6.1703 16.3483 73 ” 0.1302 23.0072 16.1408 -Verdana.ttf 97 ' 6.1703 16.3483 74 ? 1.0632 23.9705 43.3815 -Verdana.ttf 97 ' 6.1703 16.3483 75 { 0.1969 26.6962 55.4929 -Verdana.ttf 97 ' 6.1703 16.3483 76 } 0.0471 26.6962 55.4929 -Verdana.ttf 97 ' 6.1703 16.3483 77 , 36.2500 12.1891 18.6372 -Verdana.ttf 97 ' 6.1703 16.3483 78 I 2.1289 16.4442 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 79 ° 0.9196 22.7964 22.7964 -Verdana.ttf 97 ' 6.1703 16.3483 80 K 2.0976 33.3333 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 81 H 1.9722 32.7255 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 82 q 11.5953 28.2003 44.4964 -Verdana.ttf 97 ' 6.1703 16.3483 83 & 0.8312 41.1629 44.5557 -Verdana.ttf 97 ' 6.1703 16.3483 84 ’ 0.0000 11.5036 16.1408 -Verdana.ttf 97 ' 6.1703 16.3483 85 [ 0.0648 15.1741 55.4929 -Verdana.ttf 97 ' 6.1703 16.3483 86 - 23.2570 17.6705 4.8447 -Verdana.ttf 97 ' 6.1703 16.3483 87 Y 2.1408 35.8297 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 88 Q 0.8931 40.5737 54.5262 -Verdana.ttf 97 ' 6.1703 16.3483 89 " 0.1302 17.3150 16.3483 -Verdana.ttf 97 ' 6.1703 16.3483 90 ! 2.1509 5.4814 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 91 x 12.8152 31.1449 31.6705 -Verdana.ttf 97 ' 6.1703 16.3483 92 ) -0.1037 17.3150 56.0000 -Verdana.ttf 97 ' 6.1703 16.3483 93 = 17.8905 33.8114 16.4964 -Verdana.ttf 97 ' 6.1703 16.3483 94 + 8.6176 34.9855 34.9855 -Verdana.ttf 97 ' 6.1703 16.3483 95 X 1.9692 35.9074 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 96 » 11.7041 28.0000 28.0000 -Verdana.ttf 97 ' 6.1703 16.3483 97 ' 0.1759 6.1703 16.3483 -Verdana.ttf 97 ' 6.1703 16.3483 98 ¢ 2.7403 27.2855 51.6115 -Verdana.ttf 97 ' 6.1703 16.3483 99 Z 2.3196 33.2036 42.2074 -Verdana.ttf 97 ' 6.1703 16.3483 100 > 9.0683 32.8447 32.8447 -Verdana.ttf 97 ' 6.1703 16.3483 101 ® 0.9595 49.3445 49.3445 -Verdana.ttf 97 ' 6.1703 16.3483 102 © 0.8783 49.3445 49.3445 -Verdana.ttf 97 ' 6.1703 16.3483 103 ] -0.0283 15.1741 55.4929 -Verdana.ttf 97 ' 6.1703 16.3483 104 é -3.4175 28.8152 48.8629 -Verdana.ttf 97 ' 6.1703 16.3483 105 z 12.5740 25.5036 31.6705 -Verdana.ttf 97 ' 6.1703 16.3483 106 _ 49.6023 37.0038 3.3150 -Verdana.ttf 97 ' 6.1703 16.3483 107 ¥ 2.1274 31.1332 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 1 t 1.0998 20.1669 41.8484 -Verdana.ttf 98 ¢ 27.2855 51.6115 2 h -2.7367 26.4669 44.3483 -Verdana.ttf 98 ¢ 27.2855 51.6115 3 a 8.9400 26.7969 34.0188 -Verdana.ttf 98 ¢ 27.2855 51.6115 4 n 8.7877 26.4669 32.8447 -Verdana.ttf 98 ¢ 27.2855 51.6115 5 P -0.8624 27.8519 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 6 o 8.9531 29.3745 34.0188 -Verdana.ttf 98 ¢ 27.2855 51.6115 7 e 9.0261 28.8152 34.0188 -Verdana.ttf 98 ¢ 27.2855 51.6115 8 : 10.1110 6.6555 31.6705 -Verdana.ttf 98 ¢ 27.2855 51.6115 9 r 9.9733 19.6817 31.6705 -Verdana.ttf 98 ¢ 27.2855 51.6115 10 l -2.7438 5.3333 44.3483 -Verdana.ttf 98 ¢ 27.2855 51.6115 11 i -0.6111 5.3333 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 12 1 -0.7173 22.9445 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 13 | -2.6996 5.2036 55.4929 -Verdana.ttf 98 ¢ 27.2855 51.6115 14 N -0.4456 31.5514 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 15 f -2.7841 20.5259 44.3483 -Verdana.ttf 98 ¢ 27.2855 51.6115 16 g 8.7636 28.2003 44.4964 -Verdana.ttf 98 ¢ 27.2855 51.6115 17 d -2.4363 28.2003 45.5224 -Verdana.ttf 98 ¢ 27.2855 51.6115 18 W -0.3468 52.3887 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 19 s 8.7060 25.0150 34.0188 -Verdana.ttf 98 ¢ 27.2855 51.6115 20 c 8.5287 25.6820 34.0188 -Verdana.ttf 98 ¢ 27.2855 51.6115 21 u 10.1863 26.4669 32.8447 -Verdana.ttf 98 ¢ 27.2855 51.6115 22 3 -1.7224 28.2074 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 23 ~ 14.1348 37.0038 17.5224 -Verdana.ttf 98 ¢ 27.2855 51.6115 24 # -0.6184 36.5186 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 25 O -1.7775 39.3996 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 26 ` -6.2353 11.8592 10.6850 -Verdana.ttf 98 ¢ 27.2855 51.6115 27 @ -1.6136 48.3778 49.6815 -Verdana.ttf 98 ¢ 27.2855 51.6115 28 F -0.8207 26.3478 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 29 S -1.5988 32.5147 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 30 p 8.6219 28.2003 44.4964 -Verdana.ttf 98 ¢ 27.2855 51.6115 31 “ -2.7044 23.0072 16.1408 -Verdana.ttf 98 ¢ 27.2855 51.6115 32 % -1.4598 54.3188 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 33 £ -1.7020 29.1741 43.3815 -Verdana.ttf 98 ¢ 27.2855 51.6115 34 . 33.6264 6.6555 8.1886 -Verdana.ttf 98 ¢ 27.2855 51.6115 35 2 -1.9784 28.3370 43.3815 -Verdana.ttf 98 ¢ 27.2855 51.6115 36 5 -1.4561 27.5114 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 37 m 8.9589 46.3480 32.8447 -Verdana.ttf 98 ¢ 27.2855 51.6115 38 V -0.4732 37.5109 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 39 6 -1.9876 29.6593 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 40 w 9.9579 42.9667 31.6705 -Verdana.ttf 98 ¢ 27.2855 51.6115 41 T -0.2232 35.8297 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 42 M -0.4874 37.7217 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 43 G -1.9298 38.0483 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 44 b -2.7177 28.2003 45.5224 -Verdana.ttf 98 ¢ 27.2855 51.6115 45 9 -1.7536 29.6593 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 46 ; 10.1215 12.1891 42.1191 -Verdana.ttf 98 ¢ 27.2855 51.6115 47 D -0.6466 35.8587 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 48 L -0.4833 26.6777 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 49 y 9.6167 31.1449 43.3223 -Verdana.ttf 98 ¢ 27.2855 51.6115 50 ‘ -2.8207 11.5036 16.1408 -Verdana.ttf 98 ¢ 27.2855 51.6115 51 \ -3.0667 25.1446 53.0150 -Verdana.ttf 98 ¢ 27.2855 51.6115 52 R -0.5602 34.9855 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 53 < 6.4760 32.8447 32.8447 -Verdana.ttf 98 ¢ 27.2855 51.6115 54 4 -0.8769 32.2369 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 55 8 -1.8261 29.9590 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 56 0 -1.4884 28.9448 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 57 A -0.6043 37.5109 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 58 E -0.5834 27.8774 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 59 B -0.5098 32.0295 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 60 v 9.9390 31.1449 31.6705 -Verdana.ttf 98 ¢ 27.2855 51.6115 61 k -2.6858 29.1741 44.3483 -Verdana.ttf 98 ¢ 27.2855 51.6115 62 J -0.5947 20.1703 43.3815 -Verdana.ttf 98 ¢ 27.2855 51.6115 63 U -0.4965 32.6187 43.3815 -Verdana.ttf 98 ¢ 27.2855 51.6115 64 j -0.6821 16.4964 53.8592 -Verdana.ttf 98 ¢ 27.2855 51.6115 65 ( -2.6136 17.3150 56.0000 -Verdana.ttf 98 ¢ 27.2855 51.6115 66 7 -0.6999 29.1741 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 67 § -1.5504 27.0333 54.3965 -Verdana.ttf 98 ¢ 27.2855 51.6115 68 $ -3.2997 28.8186 54.8039 -Verdana.ttf 98 ¢ 27.2855 51.6115 69 € -1.6724 34.6555 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 70 / -2.7134 25.1446 53.0150 -Verdana.ttf 98 ¢ 27.2855 51.6115 71 C -1.5367 35.1627 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 72 * -2.7943 27.3888 26.3188 -Verdana.ttf 98 ¢ 27.2855 51.6115 73 ” -2.9144 23.0072 16.1408 -Verdana.ttf 98 ¢ 27.2855 51.6115 74 ? -1.8799 23.9705 43.3815 -Verdana.ttf 98 ¢ 27.2855 51.6115 75 { -2.4525 26.6962 55.4929 -Verdana.ttf 98 ¢ 27.2855 51.6115 76 } -2.7870 26.6962 55.4929 -Verdana.ttf 98 ¢ 27.2855 51.6115 77 , 33.6629 12.1891 18.6372 -Verdana.ttf 98 ¢ 27.2855 51.6115 78 I -0.7822 16.4442 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 79 ° -2.1014 22.7964 22.7964 -Verdana.ttf 98 ¢ 27.2855 51.6115 80 K -0.8639 33.3333 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 81 H -0.4376 32.7255 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 82 q 8.5993 28.2003 44.4964 -Verdana.ttf 98 ¢ 27.2855 51.6115 83 & -1.8141 41.1629 44.5557 -Verdana.ttf 98 ¢ 27.2855 51.6115 84 ’ -2.4752 11.5036 16.1408 -Verdana.ttf 98 ¢ 27.2855 51.6115 85 [ -2.8374 15.1741 55.4929 -Verdana.ttf 98 ¢ 27.2855 51.6115 86 - 20.4431 17.6705 4.8447 -Verdana.ttf 98 ¢ 27.2855 51.6115 87 Y -0.4841 35.8297 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 88 Q -1.6328 40.5737 54.5262 -Verdana.ttf 98 ¢ 27.2855 51.6115 89 " -2.6735 17.3150 16.3483 -Verdana.ttf 98 ¢ 27.2855 51.6115 90 ! -0.4659 5.4814 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 91 x 10.1127 31.1449 31.6705 -Verdana.ttf 98 ¢ 27.2855 51.6115 92 ) -2.5477 17.3150 56.0000 -Verdana.ttf 98 ¢ 27.2855 51.6115 93 = 15.1996 33.8114 16.4964 -Verdana.ttf 98 ¢ 27.2855 51.6115 94 + 5.9307 34.9855 34.9855 -Verdana.ttf 98 ¢ 27.2855 51.6115 95 X -0.5783 35.9074 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 96 » 9.0485 28.0000 28.0000 -Verdana.ttf 98 ¢ 27.2855 51.6115 97 ' -2.9114 6.1703 16.3483 -Verdana.ttf 98 ¢ 27.2855 51.6115 98 ¢ -0.0772 27.2855 51.6115 -Verdana.ttf 98 ¢ 27.2855 51.6115 99 Z -0.5558 33.2036 42.2074 -Verdana.ttf 98 ¢ 27.2855 51.6115 100 > 6.5131 32.8447 32.8447 -Verdana.ttf 98 ¢ 27.2855 51.6115 101 ® -2.0347 49.3445 49.3445 -Verdana.ttf 98 ¢ 27.2855 51.6115 102 © -1.5939 49.3445 49.3445 -Verdana.ttf 98 ¢ 27.2855 51.6115 103 ] -2.8077 15.1741 55.4929 -Verdana.ttf 98 ¢ 27.2855 51.6115 104 é -6.4573 28.8152 48.8629 -Verdana.ttf 98 ¢ 27.2855 51.6115 105 z 9.9677 25.5036 31.6705 -Verdana.ttf 98 ¢ 27.2855 51.6115 106 _ 46.7710 37.0038 3.3150 -Verdana.ttf 98 ¢ 27.2855 51.6115 107 ¥ -0.6879 31.1332 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 1 t 1.4308 20.1669 41.8484 -Verdana.ttf 99 Z 33.2036 42.2074 2 h -2.0501 26.4669 44.3483 -Verdana.ttf 99 Z 33.2036 42.2074 3 a 9.5671 26.7969 34.0188 -Verdana.ttf 99 Z 33.2036 42.2074 4 n 9.5030 26.4669 32.8447 -Verdana.ttf 99 Z 33.2036 42.2074 5 P 0.2010 27.8519 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 6 o 9.3200 29.3745 34.0188 -Verdana.ttf 99 Z 33.2036 42.2074 7 e 9.1926 28.8152 34.0188 -Verdana.ttf 99 Z 33.2036 42.2074 8 : 10.2600 6.6555 31.6705 -Verdana.ttf 99 Z 33.2036 42.2074 9 r 10.6272 19.6817 31.6705 -Verdana.ttf 99 Z 33.2036 42.2074 10 l -1.9247 5.3333 44.3483 -Verdana.ttf 99 Z 33.2036 42.2074 11 i 0.0011 5.3333 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 12 1 0.1004 22.9445 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 13 | -2.2750 5.2036 55.4929 -Verdana.ttf 99 Z 33.2036 42.2074 14 N 0.0558 31.5514 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 15 f -2.0048 20.5259 44.3483 -Verdana.ttf 99 Z 33.2036 42.2074 16 g 9.4521 28.2003 44.4964 -Verdana.ttf 99 Z 33.2036 42.2074 17 d -2.0995 28.2003 45.5224 -Verdana.ttf 99 Z 33.2036 42.2074 18 W -0.3754 52.3887 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 19 s 9.3646 25.0150 34.0188 -Verdana.ttf 99 Z 33.2036 42.2074 20 c 9.2291 25.6820 34.0188 -Verdana.ttf 99 Z 33.2036 42.2074 21 u 10.5843 26.4669 32.8447 -Verdana.ttf 99 Z 33.2036 42.2074 22 3 -1.4317 28.2074 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 23 ~ 14.9602 37.0038 17.5224 -Verdana.ttf 99 Z 33.2036 42.2074 24 # -0.0134 36.5186 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 25 O -1.3381 39.3996 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 26 ` -5.1692 11.8592 10.6850 -Verdana.ttf 99 Z 33.2036 42.2074 27 @ -0.9203 48.3778 49.6815 -Verdana.ttf 99 Z 33.2036 42.2074 28 F -0.2057 26.3478 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 29 S -1.3246 32.5147 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 30 p 9.6232 28.2003 44.4964 -Verdana.ttf 99 Z 33.2036 42.2074 31 “ -2.3762 23.0072 16.1408 -Verdana.ttf 99 Z 33.2036 42.2074 32 % -1.3395 54.3188 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 33 £ -0.8567 29.1741 43.3815 -Verdana.ttf 99 Z 33.2036 42.2074 34 . 34.0496 6.6555 8.1886 -Verdana.ttf 99 Z 33.2036 42.2074 35 2 -0.9569 28.3370 43.3815 -Verdana.ttf 99 Z 33.2036 42.2074 36 5 -0.9718 27.5114 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 37 m 9.0298 46.3480 32.8447 -Verdana.ttf 99 Z 33.2036 42.2074 38 V -0.0153 37.5109 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 39 6 -1.0035 29.6593 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 40 w 10.2678 42.9667 31.6705 -Verdana.ttf 99 Z 33.2036 42.2074 41 T -0.2684 35.8297 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 42 M 0.0663 37.7217 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 43 G -1.6442 38.0483 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 44 b -2.3377 28.2003 45.5224 -Verdana.ttf 99 Z 33.2036 42.2074 45 9 -0.8372 29.6593 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 46 ; 10.5183 12.1891 42.1191 -Verdana.ttf 99 Z 33.2036 42.2074 47 D -0.2619 35.8587 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 48 L -0.0606 26.6777 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 49 y 10.4114 31.1449 43.3223 -Verdana.ttf 99 Z 33.2036 42.2074 50 ‘ -2.1383 11.5036 16.1408 -Verdana.ttf 99 Z 33.2036 42.2074 51 \ -2.2464 25.1446 53.0150 -Verdana.ttf 99 Z 33.2036 42.2074 52 R 0.2582 34.9855 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 53 < 7.0178 32.8447 32.8447 -Verdana.ttf 99 Z 33.2036 42.2074 54 4 0.1980 32.2369 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 55 8 -1.2808 29.9590 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 56 0 -1.3852 28.9448 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 57 A 0.0479 37.5109 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 58 E 0.1504 27.8774 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 59 B 0.1212 32.0295 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 60 v 10.3541 31.1449 31.6705 -Verdana.ttf 99 Z 33.2036 42.2074 61 k -2.1964 29.1741 44.3483 -Verdana.ttf 99 Z 33.2036 42.2074 62 J -0.2960 20.1703 43.3815 -Verdana.ttf 99 Z 33.2036 42.2074 63 U 0.0342 32.6187 43.3815 -Verdana.ttf 99 Z 33.2036 42.2074 64 j 0.0312 16.4964 53.8592 -Verdana.ttf 99 Z 33.2036 42.2074 65 ( -2.2398 17.3150 56.0000 -Verdana.ttf 99 Z 33.2036 42.2074 66 7 -0.2255 29.1741 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 67 § -0.9569 27.0333 54.3965 -Verdana.ttf 99 Z 33.2036 42.2074 68 $ -2.6654 28.8186 54.8039 -Verdana.ttf 99 Z 33.2036 42.2074 69 € -1.2274 34.6555 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 70 / -2.2797 25.1446 53.0150 -Verdana.ttf 99 Z 33.2036 42.2074 71 C -1.2112 35.1627 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 72 * -1.8922 27.3888 26.3188 -Verdana.ttf 99 Z 33.2036 42.2074 73 ” -2.1706 23.0072 16.1408 -Verdana.ttf 99 Z 33.2036 42.2074 74 ? -0.7638 23.9705 43.3815 -Verdana.ttf 99 Z 33.2036 42.2074 75 { -2.3966 26.6962 55.4929 -Verdana.ttf 99 Z 33.2036 42.2074 76 } -2.1361 26.6962 55.4929 -Verdana.ttf 99 Z 33.2036 42.2074 77 , 33.9400 12.1891 18.6372 -Verdana.ttf 99 Z 33.2036 42.2074 78 I 0.0268 16.4442 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 79 ° -1.1208 22.7964 22.7964 -Verdana.ttf 99 Z 33.2036 42.2074 80 K -0.0633 33.3333 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 81 H -0.0817 32.7255 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 82 q 9.2724 28.2003 44.4964 -Verdana.ttf 99 Z 33.2036 42.2074 83 & -0.9083 41.1629 44.5557 -Verdana.ttf 99 Z 33.2036 42.2074 84 ’ -2.2744 11.5036 16.1408 -Verdana.ttf 99 Z 33.2036 42.2074 85 [ -1.9646 15.1741 55.4929 -Verdana.ttf 99 Z 33.2036 42.2074 86 - 20.9399 17.6705 4.8447 -Verdana.ttf 99 Z 33.2036 42.2074 87 Y -0.2358 35.8297 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 88 Q -1.2342 40.5737 54.5262 -Verdana.ttf 99 Z 33.2036 42.2074 89 " -2.1836 17.3150 16.3483 -Verdana.ttf 99 Z 33.2036 42.2074 90 ! 0.3728 5.4814 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 91 x 10.5873 31.1449 31.6705 -Verdana.ttf 99 Z 33.2036 42.2074 92 ) -1.8833 17.3150 56.0000 -Verdana.ttf 99 Z 33.2036 42.2074 93 = 15.3412 33.8114 16.4964 -Verdana.ttf 99 Z 33.2036 42.2074 94 + 6.2508 34.9855 34.9855 -Verdana.ttf 99 Z 33.2036 42.2074 95 X 0.1331 35.9074 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 96 » 9.5270 28.0000 28.0000 -Verdana.ttf 99 Z 33.2036 42.2074 97 ' -1.9900 6.1703 16.3483 -Verdana.ttf 99 Z 33.2036 42.2074 98 ¢ 0.4275 27.2855 51.6115 -Verdana.ttf 99 Z 33.2036 42.2074 99 Z 0.0991 33.2036 42.2074 -Verdana.ttf 99 Z 33.2036 42.2074 100 > 6.8313 32.8447 32.8447 -Verdana.ttf 99 Z 33.2036 42.2074 101 ® -1.3130 49.3445 49.3445 -Verdana.ttf 99 Z 33.2036 42.2074 102 © -1.1078 49.3445 49.3445 -Verdana.ttf 99 Z 33.2036 42.2074 103 ] -2.1735 15.1741 55.4929 -Verdana.ttf 99 Z 33.2036 42.2074 104 é -5.2199 28.8152 48.8629 -Verdana.ttf 99 Z 33.2036 42.2074 105 z 10.4566 25.5036 31.6705 -Verdana.ttf 99 Z 33.2036 42.2074 106 _ 47.3768 37.0038 3.3150 -Verdana.ttf 99 Z 33.2036 42.2074 107 ¥ -0.1321 31.1332 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 1 t -5.2718 20.1669 41.8484 -Verdana.ttf 100 > 32.8447 32.8447 2 h -9.1934 26.4669 44.3483 -Verdana.ttf 100 > 32.8447 32.8447 3 a 2.2032 26.7969 34.0188 -Verdana.ttf 100 > 32.8447 32.8447 4 n 2.3708 26.4669 32.8447 -Verdana.ttf 100 > 32.8447 32.8447 5 P -6.8597 27.8519 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 6 o 2.4780 29.3745 34.0188 -Verdana.ttf 100 > 32.8447 32.8447 7 e 2.2079 28.8152 34.0188 -Verdana.ttf 100 > 32.8447 32.8447 8 : 3.5400 6.6555 31.6705 -Verdana.ttf 100 > 32.8447 32.8447 9 r 3.7457 19.6817 31.6705 -Verdana.ttf 100 > 32.8447 32.8447 10 l -9.3693 5.3333 44.3483 -Verdana.ttf 100 > 32.8447 32.8447 11 i -7.2756 5.3333 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 12 1 -6.9068 22.9445 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 13 | -9.0284 5.2036 55.4929 -Verdana.ttf 100 > 32.8447 32.8447 14 N -7.0828 31.5514 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 15 f -9.3346 20.5259 44.3483 -Verdana.ttf 100 > 32.8447 32.8447 16 g 2.2963 28.2003 44.4964 -Verdana.ttf 100 > 32.8447 32.8447 17 d -9.0683 28.2003 45.5224 -Verdana.ttf 100 > 32.8447 32.8447 18 W -7.1566 52.3887 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 19 s 2.4545 25.0150 34.0188 -Verdana.ttf 100 > 32.8447 32.8447 20 c 2.2874 25.6820 34.0188 -Verdana.ttf 100 > 32.8447 32.8447 21 u 3.1677 26.4669 32.8447 -Verdana.ttf 100 > 32.8447 32.8447 22 3 -8.5158 28.2074 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 23 ~ 7.7737 37.0038 17.5224 -Verdana.ttf 100 > 32.8447 32.8447 24 # -6.9755 36.5186 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 25 O -7.8069 39.3996 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 26 ` -12.5863 11.8592 10.6850 -Verdana.ttf 100 > 32.8447 32.8447 27 @ -8.1987 48.3778 49.6815 -Verdana.ttf 100 > 32.8447 32.8447 28 F -7.5829 26.3478 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 29 S -8.4757 32.5147 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 30 p 2.1636 28.2003 44.4964 -Verdana.ttf 100 > 32.8447 32.8447 31 “ -8.7472 23.0072 16.1408 -Verdana.ttf 100 > 32.8447 32.8447 32 % -8.3559 54.3188 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 33 £ -7.9900 29.1741 43.3815 -Verdana.ttf 100 > 32.8447 32.8447 34 . 27.3057 6.6555 8.1886 -Verdana.ttf 100 > 32.8447 32.8447 35 2 -8.3601 28.3370 43.3815 -Verdana.ttf 100 > 32.8447 32.8447 36 5 -8.2152 27.5114 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 37 m 2.1636 46.3480 32.8447 -Verdana.ttf 100 > 32.8447 32.8447 38 V -7.0711 37.5109 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 39 6 -8.6639 29.6593 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 40 w 3.3955 42.9667 31.6705 -Verdana.ttf 100 > 32.8447 32.8447 41 T -7.0530 35.8297 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 42 M -7.0039 37.7217 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 43 G -7.8259 38.0483 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 44 b -9.4231 28.2003 45.5224 -Verdana.ttf 100 > 32.8447 32.8447 45 9 -8.3925 29.6593 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 46 ; 3.3080 12.1891 42.1191 -Verdana.ttf 100 > 32.8447 32.8447 47 D -7.0083 35.8587 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 48 L -6.9064 26.6777 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 49 y 3.3446 31.1449 43.3223 -Verdana.ttf 100 > 32.8447 32.8447 50 ‘ -9.5783 11.5036 16.1408 -Verdana.ttf 100 > 32.8447 32.8447 51 \ -8.9540 25.1446 53.0150 -Verdana.ttf 100 > 32.8447 32.8447 52 R -6.9275 34.9855 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 53 < -0.3580 32.8447 32.8447 -Verdana.ttf 100 > 32.8447 32.8447 54 4 -7.1091 32.2369 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 55 8 -8.0666 29.9590 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 56 0 -8.2352 28.9448 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 57 A -6.7273 37.5109 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 58 E -6.8578 27.8774 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 59 B -6.9960 32.0295 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 60 v 3.3758 31.1449 31.6705 -Verdana.ttf 100 > 32.8447 32.8447 61 k -8.9515 29.1741 44.3483 -Verdana.ttf 100 > 32.8447 32.8447 62 J -6.6051 20.1703 43.3815 -Verdana.ttf 100 > 32.8447 32.8447 63 U -7.2167 32.6187 43.3815 -Verdana.ttf 100 > 32.8447 32.8447 64 j -6.9645 16.4964 53.8592 -Verdana.ttf 100 > 32.8447 32.8447 65 ( -9.1720 17.3150 56.0000 -Verdana.ttf 100 > 32.8447 32.8447 66 7 -7.1129 29.1741 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 67 § -8.4556 27.0333 54.3965 -Verdana.ttf 100 > 32.8447 32.8447 68 $ -9.6377 28.8186 54.8039 -Verdana.ttf 100 > 32.8447 32.8447 69 € -8.2906 34.6555 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 70 / -9.3628 25.1446 53.0150 -Verdana.ttf 100 > 32.8447 32.8447 71 C -8.4683 35.1627 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 72 * -9.0137 27.3888 26.3188 -Verdana.ttf 100 > 32.8447 32.8447 73 ” -9.1919 23.0072 16.1408 -Verdana.ttf 100 > 32.8447 32.8447 74 ? -8.2007 23.9705 43.3815 -Verdana.ttf 100 > 32.8447 32.8447 75 { -9.1847 26.6962 55.4929 -Verdana.ttf 100 > 32.8447 32.8447 76 } -9.2563 26.6962 55.4929 -Verdana.ttf 100 > 32.8447 32.8447 77 , 26.9393 12.1891 18.6372 -Verdana.ttf 100 > 32.8447 32.8447 78 I -6.9336 16.4442 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 79 ° -8.1385 22.7964 22.7964 -Verdana.ttf 100 > 32.8447 32.8447 80 K -7.3780 33.3333 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 81 H -6.9428 32.7255 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 82 q 2.4041 28.2003 44.4964 -Verdana.ttf 100 > 32.8447 32.8447 83 & -8.0157 41.1629 44.5557 -Verdana.ttf 100 > 32.8447 32.8447 84 ’ -9.3995 11.5036 16.1408 -Verdana.ttf 100 > 32.8447 32.8447 85 [ -9.0718 15.1741 55.4929 -Verdana.ttf 100 > 32.8447 32.8447 86 - 13.7044 17.6705 4.8447 -Verdana.ttf 100 > 32.8447 32.8447 87 Y -6.9333 35.8297 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 88 Q -8.2156 40.5737 54.5262 -Verdana.ttf 100 > 32.8447 32.8447 89 " -9.4361 17.3150 16.3483 -Verdana.ttf 100 > 32.8447 32.8447 90 ! -6.9473 5.4814 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 91 x 3.5325 31.1449 31.6705 -Verdana.ttf 100 > 32.8447 32.8447 92 ) -9.0062 17.3150 56.0000 -Verdana.ttf 100 > 32.8447 32.8447 93 = 8.2448 33.8114 16.4964 -Verdana.ttf 100 > 32.8447 32.8447 94 + -0.8897 34.9855 34.9855 -Verdana.ttf 100 > 32.8447 32.8447 95 X -7.1785 35.9074 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 96 » 2.6181 28.0000 28.0000 -Verdana.ttf 100 > 32.8447 32.8447 97 ' -9.5830 6.1703 16.3483 -Verdana.ttf 100 > 32.8447 32.8447 98 ¢ -6.3430 27.2855 51.6115 -Verdana.ttf 100 > 32.8447 32.8447 99 Z -7.1729 33.2036 42.2074 -Verdana.ttf 100 > 32.8447 32.8447 100 > -0.0033 32.8447 32.8447 -Verdana.ttf 100 > 32.8447 32.8447 101 ® -8.0450 49.3445 49.3445 -Verdana.ttf 100 > 32.8447 32.8447 102 © -8.2684 49.3445 49.3445 -Verdana.ttf 100 > 32.8447 32.8447 103 ] -9.3135 15.1741 55.4929 -Verdana.ttf 100 > 32.8447 32.8447 104 é -12.4023 28.8152 48.8629 -Verdana.ttf 100 > 32.8447 32.8447 105 z 3.4682 25.5036 31.6705 -Verdana.ttf 100 > 32.8447 32.8447 106 _ 40.2725 37.0038 3.3150 -Verdana.ttf 100 > 32.8447 32.8447 107 ¥ -7.2017 31.1332 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 1 t 2.9065 20.1669 41.8484 -Verdana.ttf 101 ® 49.3445 49.3445 2 h -1.0009 26.4669 44.3483 -Verdana.ttf 101 ® 49.3445 49.3445 3 a 10.8064 26.7969 34.0188 -Verdana.ttf 101 ® 49.3445 49.3445 4 n 10.1746 26.4669 32.8447 -Verdana.ttf 101 ® 49.3445 49.3445 5 P 1.0757 27.8519 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 6 o 10.6206 29.3745 34.0188 -Verdana.ttf 101 ® 49.3445 49.3445 7 e 10.5540 28.8152 34.0188 -Verdana.ttf 101 ® 49.3445 49.3445 8 : 11.4390 6.6555 31.6705 -Verdana.ttf 101 ® 49.3445 49.3445 9 r 11.2496 19.6817 31.6705 -Verdana.ttf 101 ® 49.3445 49.3445 10 l -0.8976 5.3333 44.3483 -Verdana.ttf 101 ® 49.3445 49.3445 11 i 1.5999 5.3333 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 12 1 1.2362 22.9445 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 13 | -1.0095 5.2036 55.4929 -Verdana.ttf 101 ® 49.3445 49.3445 14 N 1.0636 31.5514 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 15 f -1.1719 20.5259 44.3483 -Verdana.ttf 101 ® 49.3445 49.3445 16 g 10.1203 28.2003 44.4964 -Verdana.ttf 101 ® 49.3445 49.3445 17 d -1.0470 28.2003 45.5224 -Verdana.ttf 101 ® 49.3445 49.3445 18 W 0.6374 52.3887 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 19 s 10.4660 25.0150 34.0188 -Verdana.ttf 101 ® 49.3445 49.3445 20 c 10.7865 25.6820 34.0188 -Verdana.ttf 101 ® 49.3445 49.3445 21 u 11.8047 26.4669 32.8447 -Verdana.ttf 101 ® 49.3445 49.3445 22 3 -0.0184 28.2074 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 23 ~ 15.4124 37.0038 17.5224 -Verdana.ttf 101 ® 49.3445 49.3445 24 # 0.9738 36.5186 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 25 O 0.0736 39.3996 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 26 ` -4.3621 11.8592 10.6850 -Verdana.ttf 101 ® 49.3445 49.3445 27 @ -0.0769 48.3778 49.6815 -Verdana.ttf 101 ® 49.3445 49.3445 28 F 1.1818 26.3478 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 29 S 0.5398 32.5147 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 30 p 10.2009 28.2003 44.4964 -Verdana.ttf 101 ® 49.3445 49.3445 31 “ -0.8645 23.0072 16.1408 -Verdana.ttf 101 ® 49.3445 49.3445 32 % 0.2659 54.3188 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 33 £ -0.0731 29.1741 43.3815 -Verdana.ttf 101 ® 49.3445 49.3445 34 . 35.2252 6.6555 8.1886 -Verdana.ttf 101 ® 49.3445 49.3445 35 2 0.2100 28.3370 43.3815 -Verdana.ttf 101 ® 49.3445 49.3445 36 5 -0.0103 27.5114 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 37 m 10.7057 46.3480 32.8447 -Verdana.ttf 101 ® 49.3445 49.3445 38 V 1.0409 37.5109 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 39 6 0.1215 29.6593 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 40 w 11.9310 42.9667 31.6705 -Verdana.ttf 101 ® 49.3445 49.3445 41 T 1.2229 35.8297 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 42 M 1.0603 37.7217 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 43 G -0.0471 38.0483 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 44 b -0.8260 28.2003 45.5224 -Verdana.ttf 101 ® 49.3445 49.3445 45 9 0.0817 29.6593 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 46 ; 11.7720 12.1891 42.1191 -Verdana.ttf 101 ® 49.3445 49.3445 47 D 0.9550 35.8587 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 48 L 1.1943 26.6777 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 49 y 11.6068 31.1449 43.3223 -Verdana.ttf 101 ® 49.3445 49.3445 50 ‘ -0.4821 11.5036 16.1408 -Verdana.ttf 101 ® 49.3445 49.3445 51 \ -1.0617 25.1446 53.0150 -Verdana.ttf 101 ® 49.3445 49.3445 52 R 1.0545 34.9855 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 53 < 8.0925 32.8447 32.8447 -Verdana.ttf 101 ® 49.3445 49.3445 54 4 0.6540 32.2369 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 55 8 -0.0225 29.9590 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 56 0 -0.5960 28.9448 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 57 A 1.4962 37.5109 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 58 E 1.7041 27.8774 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 59 B 1.3939 32.0295 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 60 v 11.8616 31.1449 31.6705 -Verdana.ttf 101 ® 49.3445 49.3445 61 k -0.8652 29.1741 44.3483 -Verdana.ttf 101 ® 49.3445 49.3445 62 J 1.3116 20.1703 43.3815 -Verdana.ttf 101 ® 49.3445 49.3445 63 U 1.2735 32.6187 43.3815 -Verdana.ttf 101 ® 49.3445 49.3445 64 j 0.9963 16.4964 53.8592 -Verdana.ttf 101 ® 49.3445 49.3445 65 ( -0.5939 17.3150 56.0000 -Verdana.ttf 101 ® 49.3445 49.3445 66 7 1.0141 29.1741 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 67 § -0.0658 27.0333 54.3965 -Verdana.ttf 101 ® 49.3445 49.3445 68 $ -1.1997 28.8186 54.8039 -Verdana.ttf 101 ® 49.3445 49.3445 69 € 0.0500 34.6555 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 70 / -0.8721 25.1446 53.0150 -Verdana.ttf 101 ® 49.3445 49.3445 71 C -0.0727 35.1627 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 72 * -1.0590 27.3888 26.3188 -Verdana.ttf 101 ® 49.3445 49.3445 73 ” -0.8797 23.0072 16.1408 -Verdana.ttf 101 ® 49.3445 49.3445 74 ? -0.4335 23.9705 43.3815 -Verdana.ttf 101 ® 49.3445 49.3445 75 { -1.2910 26.6962 55.4929 -Verdana.ttf 101 ® 49.3445 49.3445 76 } -1.2440 26.6962 55.4929 -Verdana.ttf 101 ® 49.3445 49.3445 77 , 35.0630 12.1891 18.6372 -Verdana.ttf 101 ® 49.3445 49.3445 78 I 1.6079 16.4442 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 79 ° -0.3635 22.7964 22.7964 -Verdana.ttf 101 ® 49.3445 49.3445 80 K 1.3142 33.3333 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 81 H 1.2818 32.7255 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 82 q 10.7441 28.2003 44.4964 -Verdana.ttf 101 ® 49.3445 49.3445 83 & -0.0462 41.1629 44.5557 -Verdana.ttf 101 ® 49.3445 49.3445 84 ’ -1.1848 11.5036 16.1408 -Verdana.ttf 101 ® 49.3445 49.3445 85 [ -0.9881 15.1741 55.4929 -Verdana.ttf 101 ® 49.3445 49.3445 86 - 21.6497 17.6705 4.8447 -Verdana.ttf 101 ® 49.3445 49.3445 87 Y 1.0714 35.8297 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 88 Q -0.2909 40.5737 54.5262 -Verdana.ttf 101 ® 49.3445 49.3445 89 " -0.9399 17.3150 16.3483 -Verdana.ttf 101 ® 49.3445 49.3445 90 ! 0.8761 5.4814 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 91 x 11.6549 31.1449 31.6705 -Verdana.ttf 101 ® 49.3445 49.3445 92 ) -0.7758 17.3150 56.0000 -Verdana.ttf 101 ® 49.3445 49.3445 93 = 16.5401 33.8114 16.4964 -Verdana.ttf 101 ® 49.3445 49.3445 94 + 7.4771 34.9855 34.9855 -Verdana.ttf 101 ® 49.3445 49.3445 95 X 1.2913 35.9074 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 96 » 10.5987 28.0000 28.0000 -Verdana.ttf 101 ® 49.3445 49.3445 97 ' -0.9080 6.1703 16.3483 -Verdana.ttf 101 ® 49.3445 49.3445 98 ¢ 1.4800 27.2855 51.6115 -Verdana.ttf 101 ® 49.3445 49.3445 99 Z 1.1063 33.2036 42.2074 -Verdana.ttf 101 ® 49.3445 49.3445 100 > 8.2982 32.8447 32.8447 -Verdana.ttf 101 ® 49.3445 49.3445 101 ® -0.1241 49.3445 49.3445 -Verdana.ttf 101 ® 49.3445 49.3445 102 © 0.2408 49.3445 49.3445 -Verdana.ttf 101 ® 49.3445 49.3445 103 ] -0.9504 15.1741 55.4929 -Verdana.ttf 101 ® 49.3445 49.3445 104 é -4.6815 28.8152 48.8629 -Verdana.ttf 101 ® 49.3445 49.3445 105 z 11.7875 25.5036 31.6705 -Verdana.ttf 101 ® 49.3445 49.3445 106 _ 48.7320 37.0038 3.3150 -Verdana.ttf 101 ® 49.3445 49.3445 107 ¥ 1.2593 31.1332 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 1 t 2.5568 20.1669 41.8484 -Verdana.ttf 102 © 49.3445 49.3445 2 h -1.1603 26.4669 44.3483 -Verdana.ttf 102 © 49.3445 49.3445 3 a 10.7089 26.7969 34.0188 -Verdana.ttf 102 © 49.3445 49.3445 4 n 10.8031 26.4669 32.8447 -Verdana.ttf 102 © 49.3445 49.3445 5 P 1.0264 27.8519 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 6 o 10.5268 29.3745 34.0188 -Verdana.ttf 102 © 49.3445 49.3445 7 e 10.5632 28.8152 34.0188 -Verdana.ttf 102 © 49.3445 49.3445 8 : 11.6874 6.6555 31.6705 -Verdana.ttf 102 © 49.3445 49.3445 9 r 11.5947 19.6817 31.6705 -Verdana.ttf 102 © 49.3445 49.3445 10 l -0.7741 5.3333 44.3483 -Verdana.ttf 102 © 49.3445 49.3445 11 i 1.5482 5.3333 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 12 1 1.1877 22.9445 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 13 | -0.8408 5.2036 55.4929 -Verdana.ttf 102 © 49.3445 49.3445 14 N 1.1208 31.5514 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 15 f -1.4021 20.5259 44.3483 -Verdana.ttf 102 © 49.3445 49.3445 16 g 10.6595 28.2003 44.4964 -Verdana.ttf 102 © 49.3445 49.3445 17 d -1.1471 28.2003 45.5224 -Verdana.ttf 102 © 49.3445 49.3445 18 W 1.2006 52.3887 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 19 s 10.4691 25.0150 34.0188 -Verdana.ttf 102 © 49.3445 49.3445 20 c 10.7436 25.6820 34.0188 -Verdana.ttf 102 © 49.3445 49.3445 21 u 11.6897 26.4669 32.8447 -Verdana.ttf 102 © 49.3445 49.3445 22 3 -0.0101 28.2074 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 23 ~ 15.6935 37.0038 17.5224 -Verdana.ttf 102 © 49.3445 49.3445 24 # 0.8800 36.5186 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 25 O 0.0658 39.3996 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 26 ` -4.1118 11.8592 10.6850 -Verdana.ttf 102 © 49.3445 49.3445 27 @ -0.1363 48.3778 49.6815 -Verdana.ttf 102 © 49.3445 49.3445 28 F 1.0537 26.3478 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 29 S -0.0222 32.5147 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 30 p 10.7364 28.2003 44.4964 -Verdana.ttf 102 © 49.3445 49.3445 31 “ -1.0202 23.0072 16.1408 -Verdana.ttf 102 © 49.3445 49.3445 32 % -0.0308 54.3188 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 33 £ 0.1298 29.1741 43.3815 -Verdana.ttf 102 © 49.3445 49.3445 34 . 35.4102 6.6555 8.1886 -Verdana.ttf 102 © 49.3445 49.3445 35 2 -0.0240 28.3370 43.3815 -Verdana.ttf 102 © 49.3445 49.3445 36 5 -0.4849 27.5114 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 37 m 10.5586 46.3480 32.8447 -Verdana.ttf 102 © 49.3445 49.3445 38 V 1.3972 37.5109 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 39 6 0.1280 29.6593 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 40 w 11.7496 42.9667 31.6705 -Verdana.ttf 102 © 49.3445 49.3445 41 T 1.0866 35.8297 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 42 M 1.2416 37.7217 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 43 G -0.1740 38.0483 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 44 b -0.9728 28.2003 45.5224 -Verdana.ttf 102 © 49.3445 49.3445 45 9 -0.2561 29.6593 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 46 ; 11.9064 12.1891 42.1191 -Verdana.ttf 102 © 49.3445 49.3445 47 D 1.1973 35.8587 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 48 L 1.3326 26.6777 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 49 y 11.9061 31.1449 43.3223 -Verdana.ttf 102 © 49.3445 49.3445 50 ‘ -0.9682 11.5036 16.1408 -Verdana.ttf 102 © 49.3445 49.3445 51 \ -1.2993 25.1446 53.0150 -Verdana.ttf 102 © 49.3445 49.3445 52 R 0.9561 34.9855 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 53 < 7.8639 32.8447 32.8447 -Verdana.ttf 102 © 49.3445 49.3445 54 4 0.9996 32.2369 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 55 8 0.2304 29.9590 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 56 0 -0.0681 28.9448 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 57 A 1.0247 37.5109 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 58 E 1.3259 27.8774 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 59 B 1.2774 32.0295 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 60 v 11.5242 31.1449 31.6705 -Verdana.ttf 102 © 49.3445 49.3445 61 k -1.1350 29.1741 44.3483 -Verdana.ttf 102 © 49.3445 49.3445 62 J 1.1242 20.1703 43.3815 -Verdana.ttf 102 © 49.3445 49.3445 63 U 1.2397 32.6187 43.3815 -Verdana.ttf 102 © 49.3445 49.3445 64 j 0.6460 16.4964 53.8592 -Verdana.ttf 102 © 49.3445 49.3445 65 ( -1.0955 17.3150 56.0000 -Verdana.ttf 102 © 49.3445 49.3445 66 7 0.8476 29.1741 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 67 § -0.0714 27.0333 54.3965 -Verdana.ttf 102 © 49.3445 49.3445 68 $ -1.7451 28.8186 54.8039 -Verdana.ttf 102 © 49.3445 49.3445 69 € 0.0769 34.6555 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 70 / -0.9776 25.1446 53.0150 -Verdana.ttf 102 © 49.3445 49.3445 71 C -0.0509 35.1627 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 72 * -0.8145 27.3888 26.3188 -Verdana.ttf 102 © 49.3445 49.3445 73 ” -0.7759 23.0072 16.1408 -Verdana.ttf 102 © 49.3445 49.3445 74 ? 0.3000 23.9705 43.3815 -Verdana.ttf 102 © 49.3445 49.3445 75 { -0.6823 26.6962 55.4929 -Verdana.ttf 102 © 49.3445 49.3445 76 } -0.8696 26.6962 55.4929 -Verdana.ttf 102 © 49.3445 49.3445 77 , 35.3123 12.1891 18.6372 -Verdana.ttf 102 © 49.3445 49.3445 78 I 1.0664 16.4442 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 79 ° 0.0774 22.7964 22.7964 -Verdana.ttf 102 © 49.3445 49.3445 80 K 1.1969 33.3333 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 81 H 1.2246 32.7255 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 82 q 10.7680 28.2003 44.4964 -Verdana.ttf 102 © 49.3445 49.3445 83 & -0.1676 41.1629 44.5557 -Verdana.ttf 102 © 49.3445 49.3445 84 ’ -1.0861 11.5036 16.1408 -Verdana.ttf 102 © 49.3445 49.3445 85 [ -0.7563 15.1741 55.4929 -Verdana.ttf 102 © 49.3445 49.3445 86 - 22.0968 17.6705 4.8447 -Verdana.ttf 102 © 49.3445 49.3445 87 Y 1.2952 35.8297 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 88 Q -0.1894 40.5737 54.5262 -Verdana.ttf 102 © 49.3445 49.3445 89 " -1.2656 17.3150 16.3483 -Verdana.ttf 102 © 49.3445 49.3445 90 ! 1.3442 5.4814 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 91 x 11.6613 31.1449 31.6705 -Verdana.ttf 102 © 49.3445 49.3445 92 ) -0.7672 17.3150 56.0000 -Verdana.ttf 102 © 49.3445 49.3445 93 = 16.3736 33.8114 16.4964 -Verdana.ttf 102 © 49.3445 49.3445 94 + 7.8087 34.9855 34.9855 -Verdana.ttf 102 © 49.3445 49.3445 95 X 1.4432 35.9074 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 96 » 10.9217 28.0000 28.0000 -Verdana.ttf 102 © 49.3445 49.3445 97 ' -1.2036 6.1703 16.3483 -Verdana.ttf 102 © 49.3445 49.3445 98 ¢ 1.4358 27.2855 51.6115 -Verdana.ttf 102 © 49.3445 49.3445 99 Z 1.2297 33.2036 42.2074 -Verdana.ttf 102 © 49.3445 49.3445 100 > 7.8858 32.8447 32.8447 -Verdana.ttf 102 © 49.3445 49.3445 101 ® -0.0961 49.3445 49.3445 -Verdana.ttf 102 © 49.3445 49.3445 102 © 0.1314 49.3445 49.3445 -Verdana.ttf 102 © 49.3445 49.3445 103 ] -0.7227 15.1741 55.4929 -Verdana.ttf 102 © 49.3445 49.3445 104 é -4.5067 28.8152 48.8629 -Verdana.ttf 102 © 49.3445 49.3445 105 z 12.0824 25.5036 31.6705 -Verdana.ttf 102 © 49.3445 49.3445 106 _ 48.5838 37.0038 3.3150 -Verdana.ttf 102 © 49.3445 49.3445 107 ¥ 1.2421 31.1332 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 1 t 3.6667 20.1669 41.8484 -Verdana.ttf 103 ] 15.1741 55.4929 2 h -0.1375 26.4669 44.3483 -Verdana.ttf 103 ] 15.1741 55.4929 3 a 11.5176 26.7969 34.0188 -Verdana.ttf 103 ] 15.1741 55.4929 4 n 11.5737 26.4669 32.8447 -Verdana.ttf 103 ] 15.1741 55.4929 5 P 2.0538 27.8519 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 6 o 11.4902 29.3745 34.0188 -Verdana.ttf 103 ] 15.1741 55.4929 7 e 11.3378 28.8152 34.0188 -Verdana.ttf 103 ] 15.1741 55.4929 8 : 12.6676 6.6555 31.6705 -Verdana.ttf 103 ] 15.1741 55.4929 9 r 12.5707 19.6817 31.6705 -Verdana.ttf 103 ] 15.1741 55.4929 10 l -0.1039 5.3333 44.3483 -Verdana.ttf 103 ] 15.1741 55.4929 11 i 2.3562 5.3333 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 12 1 2.1427 22.9445 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 13 | 0.0000 5.2036 55.4929 -Verdana.ttf 103 ] 15.1741 55.4929 14 N 2.3248 31.5514 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 15 f -0.0101 20.5259 44.3483 -Verdana.ttf 103 ] 15.1741 55.4929 16 g 11.0191 28.2003 44.4964 -Verdana.ttf 103 ] 15.1741 55.4929 17 d -0.2231 28.2003 45.5224 -Verdana.ttf 103 ] 15.1741 55.4929 18 W 2.0577 52.3887 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 19 s 11.3234 25.0150 34.0188 -Verdana.ttf 103 ] 15.1741 55.4929 20 c 11.4252 25.6820 34.0188 -Verdana.ttf 103 ] 15.1741 55.4929 21 u 12.6172 26.4669 32.8447 -Verdana.ttf 103 ] 15.1741 55.4929 22 3 0.9431 28.2074 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 23 ~ 16.9336 37.0038 17.5224 -Verdana.ttf 103 ] 15.1741 55.4929 24 # 2.0040 36.5186 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 25 O 1.0446 39.3996 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 26 ` -2.9354 11.8592 10.6850 -Verdana.ttf 103 ] 15.1741 55.4929 27 @ 1.0908 48.3778 49.6815 -Verdana.ttf 103 ] 15.1741 55.4929 28 F 2.0789 26.3478 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 29 S 1.1263 32.5147 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 30 p 11.5403 28.2003 44.4964 -Verdana.ttf 103 ] 15.1741 55.4929 31 “ -0.0870 23.0072 16.1408 -Verdana.ttf 103 ] 15.1741 55.4929 32 % 1.0716 54.3188 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 33 £ 1.0081 29.1741 43.3815 -Verdana.ttf 103 ] 15.1741 55.4929 34 . 36.3986 6.6555 8.1886 -Verdana.ttf 103 ] 15.1741 55.4929 35 2 1.2210 28.3370 43.3815 -Verdana.ttf 103 ] 15.1741 55.4929 36 5 0.7854 27.5114 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 37 m 11.4281 46.3480 32.8447 -Verdana.ttf 103 ] 15.1741 55.4929 38 V 1.9621 37.5109 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 39 6 1.1727 29.6593 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 40 w 12.4870 42.9667 31.6705 -Verdana.ttf 103 ] 15.1741 55.4929 41 T 2.1427 35.8297 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 42 M 1.8993 37.7217 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 43 G 1.0704 38.0483 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 44 b 0.0870 28.2003 45.5224 -Verdana.ttf 103 ] 15.1741 55.4929 45 9 1.1042 29.6593 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 46 ; 12.4985 12.1891 42.1191 -Verdana.ttf 103 ] 15.1741 55.4929 47 D 2.0538 35.8587 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 48 L 2.4364 26.6777 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 49 y 12.6364 31.1449 43.3223 -Verdana.ttf 103 ] 15.1741 55.4929 50 ‘ 0.0432 11.5036 16.1408 -Verdana.ttf 103 ] 15.1741 55.4929 51 \ -0.2489 25.1446 53.0150 -Verdana.ttf 103 ] 15.1741 55.4929 52 R 2.1779 34.9855 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 53 < 9.2515 32.8447 32.8447 -Verdana.ttf 103 ] 15.1741 55.4929 54 4 2.0611 32.2369 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 55 8 0.6692 29.9590 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 56 0 0.8706 28.9448 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 57 A 2.2013 37.5109 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 58 E 2.1836 27.8774 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 59 B 2.2117 32.0295 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 60 v 12.5450 31.1449 31.6705 -Verdana.ttf 103 ] 15.1741 55.4929 61 k 0.1673 29.1741 44.3483 -Verdana.ttf 103 ] 15.1741 55.4929 62 J 2.2260 20.1703 43.3815 -Verdana.ttf 103 ] 15.1741 55.4929 63 U 2.1183 32.6187 43.3815 -Verdana.ttf 103 ] 15.1741 55.4929 64 j 2.1803 16.4964 53.8592 -Verdana.ttf 103 ] 15.1741 55.4929 65 ( -0.0014 17.3150 56.0000 -Verdana.ttf 103 ] 15.1741 55.4929 66 7 2.2479 29.1741 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 67 § 0.8496 27.0333 54.3965 -Verdana.ttf 103 ] 15.1741 55.4929 68 $ -0.1420 28.8186 54.8039 -Verdana.ttf 103 ] 15.1741 55.4929 69 € 1.0004 34.6555 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 70 / -0.0427 25.1446 53.0150 -Verdana.ttf 103 ] 15.1741 55.4929 71 C 1.0470 35.1627 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 72 * -0.0648 27.3888 26.3188 -Verdana.ttf 103 ] 15.1741 55.4929 73 ” -0.0495 23.0072 16.1408 -Verdana.ttf 103 ] 15.1741 55.4929 74 ? 0.9359 23.9705 43.3815 -Verdana.ttf 103 ] 15.1741 55.4929 75 { 0.0890 26.6962 55.4929 -Verdana.ttf 103 ] 15.1741 55.4929 76 } 0.1110 26.6962 55.4929 -Verdana.ttf 103 ] 15.1741 55.4929 77 , 35.9956 12.1891 18.6372 -Verdana.ttf 103 ] 15.1741 55.4929 78 I 2.2312 16.4442 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 79 ° 0.8898 22.7964 22.7964 -Verdana.ttf 103 ] 15.1741 55.4929 80 K 2.3951 33.3333 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 81 H 2.1319 32.7255 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 82 q 11.6348 28.2003 44.4964 -Verdana.ttf 103 ] 15.1741 55.4929 83 & 0.8528 41.1629 44.5557 -Verdana.ttf 103 ] 15.1741 55.4929 84 ’ -0.1668 11.5036 16.1408 -Verdana.ttf 103 ] 15.1741 55.4929 85 [ -0.2220 15.1741 55.4929 -Verdana.ttf 103 ] 15.1741 55.4929 86 - 23.0730 17.6705 4.8447 -Verdana.ttf 103 ] 15.1741 55.4929 87 Y 2.5605 35.8297 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 88 Q 1.0571 40.5737 54.5262 -Verdana.ttf 103 ] 15.1741 55.4929 89 " 0.0380 17.3150 16.3483 -Verdana.ttf 103 ] 15.1741 55.4929 90 ! 2.1673 5.4814 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 91 x 12.8566 31.1449 31.6705 -Verdana.ttf 103 ] 15.1741 55.4929 92 ) 0.0903 17.3150 56.0000 -Verdana.ttf 103 ] 15.1741 55.4929 93 = 17.3316 33.8114 16.4964 -Verdana.ttf 103 ] 15.1741 55.4929 94 + 8.4374 34.9855 34.9855 -Verdana.ttf 103 ] 15.1741 55.4929 95 X 2.2289 35.9074 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 96 » 11.5751 28.0000 28.0000 -Verdana.ttf 103 ] 15.1741 55.4929 97 ' -0.0138 6.1703 16.3483 -Verdana.ttf 103 ] 15.1741 55.4929 98 ¢ 2.5879 27.2855 51.6115 -Verdana.ttf 103 ] 15.1741 55.4929 99 Z 2.2711 33.2036 42.2074 -Verdana.ttf 103 ] 15.1741 55.4929 100 > 8.9961 32.8447 32.8447 -Verdana.ttf 103 ] 15.1741 55.4929 101 ® 0.9605 49.3445 49.3445 -Verdana.ttf 103 ] 15.1741 55.4929 102 © 1.1219 49.3445 49.3445 -Verdana.ttf 103 ] 15.1741 55.4929 103 ] 0.1096 15.1741 55.4929 -Verdana.ttf 103 ] 15.1741 55.4929 104 é -3.4776 28.8152 48.8629 -Verdana.ttf 103 ] 15.1741 55.4929 105 z 12.5609 25.5036 31.6705 -Verdana.ttf 103 ] 15.1741 55.4929 106 _ 49.5500 37.0038 3.3150 -Verdana.ttf 103 ] 15.1741 55.4929 107 ¥ 1.9740 31.1332 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 1 t 6.7218 20.1669 41.8484 -Verdana.ttf 104 é 28.8152 48.8629 2 h 3.4237 26.4669 44.3483 -Verdana.ttf 104 é 28.8152 48.8629 3 a 14.9407 26.7969 34.0188 -Verdana.ttf 104 é 28.8152 48.8629 4 n 14.6722 26.4669 32.8447 -Verdana.ttf 104 é 28.8152 48.8629 5 P 5.6635 27.8519 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 6 o 14.6338 29.3745 34.0188 -Verdana.ttf 104 é 28.8152 48.8629 7 e 14.8941 28.8152 34.0188 -Verdana.ttf 104 é 28.8152 48.8629 8 : 16.0615 6.6555 31.6705 -Verdana.ttf 104 é 28.8152 48.8629 9 r 15.9552 19.6817 31.6705 -Verdana.ttf 104 é 28.8152 48.8629 10 l 3.3431 5.3333 44.3483 -Verdana.ttf 104 é 28.8152 48.8629 11 i 5.5285 5.3333 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 12 1 5.8165 22.9445 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 13 | 3.5461 5.2036 55.4929 -Verdana.ttf 104 é 28.8152 48.8629 14 N 5.2684 31.5514 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 15 f 3.2064 20.5259 44.3483 -Verdana.ttf 104 é 28.8152 48.8629 16 g 14.9864 28.2003 44.4964 -Verdana.ttf 104 é 28.8152 48.8629 17 d 3.3183 28.2003 45.5224 -Verdana.ttf 104 é 28.8152 48.8629 18 W 5.4861 52.3887 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 19 s 14.9211 25.0150 34.0188 -Verdana.ttf 104 é 28.8152 48.8629 20 c 14.5996 25.6820 34.0188 -Verdana.ttf 104 é 28.8152 48.8629 21 u 15.5820 26.4669 32.8447 -Verdana.ttf 104 é 28.8152 48.8629 22 3 4.3526 28.2074 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 23 ~ 19.7730 37.0038 17.5224 -Verdana.ttf 104 é 28.8152 48.8629 24 # 5.5550 36.5186 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 25 O 4.4475 39.3996 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 26 ` -0.2042 11.8592 10.6850 -Verdana.ttf 104 é 28.8152 48.8629 27 @ 4.4793 48.3778 49.6815 -Verdana.ttf 104 é 28.8152 48.8629 28 F 5.3175 26.3478 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 29 S 4.7835 32.5147 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 30 p 14.8765 28.2003 44.4964 -Verdana.ttf 104 é 28.8152 48.8629 31 “ 3.3612 23.0072 16.1408 -Verdana.ttf 104 é 28.8152 48.8629 32 % 4.2203 54.3188 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 33 £ 4.2944 29.1741 43.3815 -Verdana.ttf 104 é 28.8152 48.8629 34 . 39.5839 6.6555 8.1886 -Verdana.ttf 104 é 28.8152 48.8629 35 2 4.2496 28.3370 43.3815 -Verdana.ttf 104 é 28.8152 48.8629 36 5 4.0454 27.5114 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 37 m 14.7557 46.3480 32.8447 -Verdana.ttf 104 é 28.8152 48.8629 38 V 5.7167 37.5109 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 39 6 4.4448 29.6593 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 40 w 16.1302 42.9667 31.6705 -Verdana.ttf 104 é 28.8152 48.8629 41 T 5.6041 35.8297 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 42 M 5.5484 37.7217 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 43 G 4.2198 38.0483 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 44 b 3.2502 28.2003 45.5224 -Verdana.ttf 104 é 28.8152 48.8629 45 9 4.4596 29.6593 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 46 ; 16.1187 12.1891 42.1191 -Verdana.ttf 104 é 28.8152 48.8629 47 D 5.8227 35.8587 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 48 L 5.8361 26.6777 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 49 y 16.0779 31.1449 43.3223 -Verdana.ttf 104 é 28.8152 48.8629 50 ‘ 3.4237 11.5036 16.1408 -Verdana.ttf 104 é 28.8152 48.8629 51 \ 3.3497 25.1446 53.0150 -Verdana.ttf 104 é 28.8152 48.8629 52 R 5.6911 34.9855 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 53 < 12.5858 32.8447 32.8447 -Verdana.ttf 104 é 28.8152 48.8629 54 4 5.4371 32.2369 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 55 8 4.3160 29.9590 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 56 0 4.2439 28.9448 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 57 A 5.5454 37.5109 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 58 E 5.3309 27.8774 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 59 B 5.3641 32.0295 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 60 v 15.7654 31.1449 31.6705 -Verdana.ttf 104 é 28.8152 48.8629 61 k 3.4790 29.1741 44.3483 -Verdana.ttf 104 é 28.8152 48.8629 62 J 5.3203 20.1703 43.3815 -Verdana.ttf 104 é 28.8152 48.8629 63 U 5.2130 32.6187 43.3815 -Verdana.ttf 104 é 28.8152 48.8629 64 j 5.6055 16.4964 53.8592 -Verdana.ttf 104 é 28.8152 48.8629 65 ( 3.2705 17.3150 56.0000 -Verdana.ttf 104 é 28.8152 48.8629 66 7 5.6055 29.1741 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 67 § 4.3500 27.0333 54.3965 -Verdana.ttf 104 é 28.8152 48.8629 68 $ 3.0180 28.8186 54.8039 -Verdana.ttf 104 é 28.8152 48.8629 69 € 4.2956 34.6555 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 70 / 3.1871 25.1446 53.0150 -Verdana.ttf 104 é 28.8152 48.8629 71 C 4.4375 35.1627 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 72 * 3.3507 27.3888 26.3188 -Verdana.ttf 104 é 28.8152 48.8629 73 ” 3.3126 23.0072 16.1408 -Verdana.ttf 104 é 28.8152 48.8629 74 ? 4.4476 23.9705 43.3815 -Verdana.ttf 104 é 28.8152 48.8629 75 { 3.2123 26.6962 55.4929 -Verdana.ttf 104 é 28.8152 48.8629 76 } 3.1160 26.6962 55.4929 -Verdana.ttf 104 é 28.8152 48.8629 77 , 39.8154 12.1891 18.6372 -Verdana.ttf 104 é 28.8152 48.8629 78 I 5.2328 16.4442 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 79 ° 4.0700 22.7964 22.7964 -Verdana.ttf 104 é 28.8152 48.8629 80 K 5.5285 33.3333 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 81 H 5.4007 32.7255 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 82 q 15.0836 28.2003 44.4964 -Verdana.ttf 104 é 28.8152 48.8629 83 & 3.9434 41.1629 44.5557 -Verdana.ttf 104 é 28.8152 48.8629 84 ’ 3.5401 11.5036 16.1408 -Verdana.ttf 104 é 28.8152 48.8629 85 [ 3.4893 15.1741 55.4929 -Verdana.ttf 104 é 28.8152 48.8629 86 - 26.2612 17.6705 4.8447 -Verdana.ttf 104 é 28.8152 48.8629 87 Y 5.4180 35.8297 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 88 Q 4.4596 40.5737 54.5262 -Verdana.ttf 104 é 28.8152 48.8629 89 " 3.5437 17.3150 16.3483 -Verdana.ttf 104 é 28.8152 48.8629 90 ! 5.5618 5.4814 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 91 x 15.9178 31.1449 31.6705 -Verdana.ttf 104 é 28.8152 48.8629 92 ) 3.5445 17.3150 56.0000 -Verdana.ttf 104 é 28.8152 48.8629 93 = 20.9917 33.8114 16.4964 -Verdana.ttf 104 é 28.8152 48.8629 94 + 11.9514 34.9855 34.9855 -Verdana.ttf 104 é 28.8152 48.8629 95 X 5.5718 35.9074 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 96 » 15.1476 28.0000 28.0000 -Verdana.ttf 104 é 28.8152 48.8629 97 ' 3.2415 6.1703 16.3483 -Verdana.ttf 104 é 28.8152 48.8629 98 ¢ 6.0522 27.2855 51.6115 -Verdana.ttf 104 é 28.8152 48.8629 99 Z 5.8244 33.2036 42.2074 -Verdana.ttf 104 é 28.8152 48.8629 100 > 12.7064 32.8447 32.8447 -Verdana.ttf 104 é 28.8152 48.8629 101 ® 4.4948 49.3445 49.3445 -Verdana.ttf 104 é 28.8152 48.8629 102 © 4.1698 49.3445 49.3445 -Verdana.ttf 104 é 28.8152 48.8629 103 ] 3.1056 15.1741 55.4929 -Verdana.ttf 104 é 28.8152 48.8629 104 é -0.1921 28.8152 48.8629 -Verdana.ttf 104 é 28.8152 48.8629 105 z 15.7121 25.5036 31.6705 -Verdana.ttf 104 é 28.8152 48.8629 106 _ 52.8924 37.0038 3.3150 -Verdana.ttf 104 é 28.8152 48.8629 107 ¥ 5.5832 31.1332 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 1 t -8.8394 20.1669 41.8484 -Verdana.ttf 105 z 25.5036 31.6705 2 h -12.6027 26.4669 44.3483 -Verdana.ttf 105 z 25.5036 31.6705 3 a -1.1741 26.7969 34.0188 -Verdana.ttf 105 z 25.5036 31.6705 4 n -0.9789 26.4669 32.8447 -Verdana.ttf 105 z 25.5036 31.6705 5 P -10.8109 27.8519 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 6 o -1.0529 29.3745 34.0188 -Verdana.ttf 105 z 25.5036 31.6705 7 e -1.1429 28.8152 34.0188 -Verdana.ttf 105 z 25.5036 31.6705 8 : 0.1586 6.6555 31.6705 -Verdana.ttf 105 z 25.5036 31.6705 9 r 0.0636 19.6817 31.6705 -Verdana.ttf 105 z 25.5036 31.6705 10 l -12.7108 5.3333 44.3483 -Verdana.ttf 105 z 25.5036 31.6705 11 i -10.8006 5.3333 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 12 1 -10.4998 22.9445 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 13 | -12.3317 5.2036 55.4929 -Verdana.ttf 105 z 25.5036 31.6705 14 N -10.5123 31.5514 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 15 f -12.8133 20.5259 44.3483 -Verdana.ttf 105 z 25.5036 31.6705 16 g -0.9434 28.2003 44.4964 -Verdana.ttf 105 z 25.5036 31.6705 17 d -12.6378 28.2003 45.5224 -Verdana.ttf 105 z 25.5036 31.6705 18 W -10.6406 52.3887 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 19 s -1.0305 25.0150 34.0188 -Verdana.ttf 105 z 25.5036 31.6705 20 c -0.9137 25.6820 34.0188 -Verdana.ttf 105 z 25.5036 31.6705 21 u -0.0783 26.4669 32.8447 -Verdana.ttf 105 z 25.5036 31.6705 22 3 -11.4769 28.2074 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 23 ~ 4.1373 37.0038 17.5224 -Verdana.ttf 105 z 25.5036 31.6705 24 # -10.3211 36.5186 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 25 O -11.9196 39.3996 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 26 ` -16.1053 11.8592 10.6850 -Verdana.ttf 105 z 25.5036 31.6705 27 @ -12.0186 48.3778 49.6815 -Verdana.ttf 105 z 25.5036 31.6705 28 F -10.5302 26.3478 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 29 S -11.4082 32.5147 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 30 p -1.2602 28.2003 44.4964 -Verdana.ttf 105 z 25.5036 31.6705 31 “ -13.1122 23.0072 16.1408 -Verdana.ttf 105 z 25.5036 31.6705 32 % -11.6355 54.3188 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 33 £ -11.7716 29.1741 43.3815 -Verdana.ttf 105 z 25.5036 31.6705 34 . 23.4510 6.6555 8.1886 -Verdana.ttf 105 z 25.5036 31.6705 35 2 -11.4937 28.3370 43.3815 -Verdana.ttf 105 z 25.5036 31.6705 36 5 -11.6754 27.5114 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 37 m -1.3885 46.3480 32.8447 -Verdana.ttf 105 z 25.5036 31.6705 38 V -10.4364 37.5109 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 39 6 -11.5923 29.6593 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 40 w -0.0566 42.9667 31.6705 -Verdana.ttf 105 z 25.5036 31.6705 41 T -10.4066 35.8297 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 42 M -10.6652 37.7217 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 43 G -11.8231 38.0483 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 44 b -12.2548 28.2003 45.5224 -Verdana.ttf 105 z 25.5036 31.6705 45 9 -11.7802 29.6593 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 46 ; 0.0354 12.1891 42.1191 -Verdana.ttf 105 z 25.5036 31.6705 47 D -10.7037 35.8587 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 48 L -10.7589 26.6777 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 49 y -0.3240 31.1449 43.3223 -Verdana.ttf 105 z 25.5036 31.6705 50 ‘ -12.8242 11.5036 16.1408 -Verdana.ttf 105 z 25.5036 31.6705 51 \ -12.5230 25.1446 53.0150 -Verdana.ttf 105 z 25.5036 31.6705 52 R -10.4890 34.9855 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 53 < -3.5988 32.8447 32.8447 -Verdana.ttf 105 z 25.5036 31.6705 54 4 -10.6211 32.2369 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 55 8 -11.6845 29.9590 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 56 0 -11.6268 28.9448 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 57 A -10.2924 37.5109 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 58 E -10.7501 27.8774 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 59 B -10.5601 32.0295 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 60 v 0.2172 31.1449 31.6705 -Verdana.ttf 105 z 25.5036 31.6705 61 k -12.5634 29.1741 44.3483 -Verdana.ttf 105 z 25.5036 31.6705 62 J -10.6638 20.1703 43.3815 -Verdana.ttf 105 z 25.5036 31.6705 63 U -10.7309 32.6187 43.3815 -Verdana.ttf 105 z 25.5036 31.6705 64 j -10.6272 16.4964 53.8592 -Verdana.ttf 105 z 25.5036 31.6705 65 ( -12.4558 17.3150 56.0000 -Verdana.ttf 105 z 25.5036 31.6705 66 7 -10.3817 29.1741 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 67 § -11.7004 27.0333 54.3965 -Verdana.ttf 105 z 25.5036 31.6705 68 $ -13.1643 28.8186 54.8039 -Verdana.ttf 105 z 25.5036 31.6705 69 € -11.7643 34.6555 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 70 / -12.7666 25.1446 53.0150 -Verdana.ttf 105 z 25.5036 31.6705 71 C -11.4635 35.1627 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 72 * -12.6705 27.3888 26.3188 -Verdana.ttf 105 z 25.5036 31.6705 73 ” -12.5860 23.0072 16.1408 -Verdana.ttf 105 z 25.5036 31.6705 74 ? -11.7110 23.9705 43.3815 -Verdana.ttf 105 z 25.5036 31.6705 75 { -12.5642 26.6962 55.4929 -Verdana.ttf 105 z 25.5036 31.6705 76 } -12.8990 26.6962 55.4929 -Verdana.ttf 105 z 25.5036 31.6705 77 , 23.4838 12.1891 18.6372 -Verdana.ttf 105 z 25.5036 31.6705 78 I -10.6877 16.4442 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 79 ° -11.6549 22.7964 22.7964 -Verdana.ttf 105 z 25.5036 31.6705 80 K -10.5244 33.3333 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 81 H -10.5369 32.7255 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 82 q -1.2822 28.2003 44.4964 -Verdana.ttf 105 z 25.5036 31.6705 83 & -12.0389 41.1629 44.5557 -Verdana.ttf 105 z 25.5036 31.6705 84 ’ -12.6402 11.5036 16.1408 -Verdana.ttf 105 z 25.5036 31.6705 85 [ -12.6624 15.1741 55.4929 -Verdana.ttf 105 z 25.5036 31.6705 86 - 10.1738 17.6705 4.8447 -Verdana.ttf 105 z 25.5036 31.6705 87 Y -10.6167 35.8297 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 88 Q -11.6240 40.5737 54.5262 -Verdana.ttf 105 z 25.5036 31.6705 89 " -12.5138 17.3150 16.3483 -Verdana.ttf 105 z 25.5036 31.6705 90 ! -10.5273 5.4814 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 91 x -0.1004 31.1449 31.6705 -Verdana.ttf 105 z 25.5036 31.6705 92 ) -12.5119 17.3150 56.0000 -Verdana.ttf 105 z 25.5036 31.6705 93 = 5.1142 33.8114 16.4964 -Verdana.ttf 105 z 25.5036 31.6705 94 + -4.4572 34.9855 34.9855 -Verdana.ttf 105 z 25.5036 31.6705 95 X -10.5560 35.9074 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 96 » -0.8796 28.0000 28.0000 -Verdana.ttf 105 z 25.5036 31.6705 97 ' -12.6662 6.1703 16.3483 -Verdana.ttf 105 z 25.5036 31.6705 98 ¢ -10.0575 27.2855 51.6115 -Verdana.ttf 105 z 25.5036 31.6705 99 Z -10.5768 33.2036 42.2074 -Verdana.ttf 105 z 25.5036 31.6705 100 > -3.5808 32.8447 32.8447 -Verdana.ttf 105 z 25.5036 31.6705 101 ® -11.8351 49.3445 49.3445 -Verdana.ttf 105 z 25.5036 31.6705 102 © -11.8009 49.3445 49.3445 -Verdana.ttf 105 z 25.5036 31.6705 103 ] -12.2562 15.1741 55.4929 -Verdana.ttf 105 z 25.5036 31.6705 104 é -16.2585 28.8152 48.8629 -Verdana.ttf 105 z 25.5036 31.6705 105 z -0.0784 25.5036 31.6705 -Verdana.ttf 105 z 25.5036 31.6705 106 _ 36.9645 37.0038 3.3150 -Verdana.ttf 105 z 25.5036 31.6705 107 ¥ -10.8974 31.1332 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 1 t -45.7111 20.1669 41.8484 -Verdana.ttf 106 _ 37.0038 3.3150 2 h -49.3414 26.4669 44.3483 -Verdana.ttf 106 _ 37.0038 3.3150 3 a -38.1690 26.7969 34.0188 -Verdana.ttf 106 _ 37.0038 3.3150 4 n -37.9878 26.4669 32.8447 -Verdana.ttf 106 _ 37.0038 3.3150 5 P -47.3313 27.8519 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 6 o -38.3721 29.3745 34.0188 -Verdana.ttf 106 _ 37.0038 3.3150 7 e -38.1695 28.8152 34.0188 -Verdana.ttf 106 _ 37.0038 3.3150 8 : -36.5857 6.6555 31.6705 -Verdana.ttf 106 _ 37.0038 3.3150 9 r -36.6055 19.6817 31.6705 -Verdana.ttf 106 _ 37.0038 3.3150 10 l -49.5777 5.3333 44.3483 -Verdana.ttf 106 _ 37.0038 3.3150 11 i -47.5190 5.3333 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 12 1 -47.4035 22.9445 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 13 | -49.2381 5.2036 55.4929 -Verdana.ttf 106 _ 37.0038 3.3150 14 N -47.2658 31.5514 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 15 f -49.6172 20.5259 44.3483 -Verdana.ttf 106 _ 37.0038 3.3150 16 g -38.2078 28.2003 44.4964 -Verdana.ttf 106 _ 37.0038 3.3150 17 d -49.6138 28.2003 45.5224 -Verdana.ttf 106 _ 37.0038 3.3150 18 W -47.5783 52.3887 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 19 s -38.1430 25.0150 34.0188 -Verdana.ttf 106 _ 37.0038 3.3150 20 c -38.0628 25.6820 34.0188 -Verdana.ttf 106 _ 37.0038 3.3150 21 u -36.6260 26.4669 32.8447 -Verdana.ttf 106 _ 37.0038 3.3150 22 3 -48.6250 28.2074 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 23 ~ -32.6201 37.0038 17.5224 -Verdana.ttf 106 _ 37.0038 3.3150 24 # -47.4296 36.5186 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 25 O -48.4135 39.3996 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 26 ` -53.1732 11.8592 10.6850 -Verdana.ttf 106 _ 37.0038 3.3150 27 @ -48.8115 48.3778 49.6815 -Verdana.ttf 106 _ 37.0038 3.3150 28 F -47.6373 26.3478 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 29 S -48.8174 32.5147 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 30 p -37.8902 28.2003 44.4964 -Verdana.ttf 106 _ 37.0038 3.3150 31 “ -49.5105 23.0072 16.1408 -Verdana.ttf 106 _ 37.0038 3.3150 32 % -48.6802 54.3188 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 33 £ -48.7408 29.1741 43.3815 -Verdana.ttf 106 _ 37.0038 3.3150 34 . -13.3639 6.6555 8.1886 -Verdana.ttf 106 _ 37.0038 3.3150 35 2 -48.6457 28.3370 43.3815 -Verdana.ttf 106 _ 37.0038 3.3150 36 5 -48.7259 27.5114 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 37 m -38.2583 46.3480 32.8447 -Verdana.ttf 106 _ 37.0038 3.3150 38 V -47.4893 37.5109 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 39 6 -48.4062 29.6593 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 40 w -36.8218 42.9667 31.6705 -Verdana.ttf 106 _ 37.0038 3.3150 41 T -47.2013 35.8297 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 42 M -47.1030 37.7217 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 43 G -48.6794 38.0483 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 44 b -49.3635 28.2003 45.5224 -Verdana.ttf 106 _ 37.0038 3.3150 45 9 -48.1488 29.6593 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 46 ; -36.4911 12.1891 42.1191 -Verdana.ttf 106 _ 37.0038 3.3150 47 D -47.5337 35.8587 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 48 L -47.1786 26.6777 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 49 y -37.0606 31.1449 43.3223 -Verdana.ttf 106 _ 37.0038 3.3150 50 ‘ -49.4111 11.5036 16.1408 -Verdana.ttf 106 _ 37.0038 3.3150 51 \ -49.6596 25.1446 53.0150 -Verdana.ttf 106 _ 37.0038 3.3150 52 R -47.3356 34.9855 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 53 < -40.6152 32.8447 32.8447 -Verdana.ttf 106 _ 37.0038 3.3150 54 4 -47.5778 32.2369 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 55 8 -48.6930 29.9590 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 56 0 -48.4524 28.9448 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 57 A -47.1024 37.5109 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 58 E -47.4967 27.8774 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 59 B -47.5028 32.0295 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 60 v -36.7421 31.1449 31.6705 -Verdana.ttf 106 _ 37.0038 3.3150 61 k -49.0920 29.1741 44.3483 -Verdana.ttf 106 _ 37.0038 3.3150 62 J -47.3447 20.1703 43.3815 -Verdana.ttf 106 _ 37.0038 3.3150 63 U -47.3678 32.6187 43.3815 -Verdana.ttf 106 _ 37.0038 3.3150 64 j -47.4576 16.4964 53.8592 -Verdana.ttf 106 _ 37.0038 3.3150 65 ( -49.5504 17.3150 56.0000 -Verdana.ttf 106 _ 37.0038 3.3150 66 7 -47.5165 29.1741 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 67 § -48.8067 27.0333 54.3965 -Verdana.ttf 106 _ 37.0038 3.3150 68 $ -50.1712 28.8186 54.8039 -Verdana.ttf 106 _ 37.0038 3.3150 69 € -48.5453 34.6555 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 70 / -49.2457 25.1446 53.0150 -Verdana.ttf 106 _ 37.0038 3.3150 71 C -48.6004 35.1627 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 72 * -49.4510 27.3888 26.3188 -Verdana.ttf 106 _ 37.0038 3.3150 73 ” -49.1892 23.0072 16.1408 -Verdana.ttf 106 _ 37.0038 3.3150 74 ? -48.7452 23.9705 43.3815 -Verdana.ttf 106 _ 37.0038 3.3150 75 { -49.9701 26.6962 55.4929 -Verdana.ttf 106 _ 37.0038 3.3150 76 } -49.8641 26.6962 55.4929 -Verdana.ttf 106 _ 37.0038 3.3150 77 , -13.3086 12.1891 18.6372 -Verdana.ttf 106 _ 37.0038 3.3150 78 I -47.6788 16.4442 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 79 ° -48.2305 22.7964 22.7964 -Verdana.ttf 106 _ 37.0038 3.3150 80 K -47.5220 33.3333 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 81 H -47.5677 32.7255 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 82 q -38.1891 28.2003 44.4964 -Verdana.ttf 106 _ 37.0038 3.3150 83 & -48.8092 41.1629 44.5557 -Verdana.ttf 106 _ 37.0038 3.3150 84 ’ -49.6931 11.5036 16.1408 -Verdana.ttf 106 _ 37.0038 3.3150 85 [ -49.4885 15.1741 55.4929 -Verdana.ttf 106 _ 37.0038 3.3150 86 - -26.4643 17.6705 4.8447 -Verdana.ttf 106 _ 37.0038 3.3150 87 Y -47.8075 35.8297 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 88 Q -48.6745 40.5737 54.5262 -Verdana.ttf 106 _ 37.0038 3.3150 89 " -49.1967 17.3150 16.3483 -Verdana.ttf 106 _ 37.0038 3.3150 90 ! -47.3216 5.4814 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 91 x -36.8728 31.1449 31.6705 -Verdana.ttf 106 _ 37.0038 3.3150 92 ) -49.4130 17.3150 56.0000 -Verdana.ttf 106 _ 37.0038 3.3150 93 = -31.8758 33.8114 16.4964 -Verdana.ttf 106 _ 37.0038 3.3150 94 + -41.0790 34.9855 34.9855 -Verdana.ttf 106 _ 37.0038 3.3150 95 X -47.0636 35.9074 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 96 » -37.4415 28.0000 28.0000 -Verdana.ttf 106 _ 37.0038 3.3150 97 ' -49.8324 6.1703 16.3483 -Verdana.ttf 106 _ 37.0038 3.3150 98 ¢ -46.6807 27.2855 51.6115 -Verdana.ttf 106 _ 37.0038 3.3150 99 Z -47.5162 33.2036 42.2074 -Verdana.ttf 106 _ 37.0038 3.3150 100 > -40.3432 32.8447 32.8447 -Verdana.ttf 106 _ 37.0038 3.3150 101 ® -48.4040 49.3445 49.3445 -Verdana.ttf 106 _ 37.0038 3.3150 102 © -48.9678 49.3445 49.3445 -Verdana.ttf 106 _ 37.0038 3.3150 103 ] -49.6389 15.1741 55.4929 -Verdana.ttf 106 _ 37.0038 3.3150 104 é -52.8155 28.8152 48.8629 -Verdana.ttf 106 _ 37.0038 3.3150 105 z -36.5901 25.5036 31.6705 -Verdana.ttf 106 _ 37.0038 3.3150 106 _ 0.1269 37.0038 3.3150 -Verdana.ttf 106 _ 37.0038 3.3150 107 ¥ -47.5447 31.1332 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 1 t 1.8676 20.1669 41.8484 -Verdana.ttf 107 ¥ 31.1332 42.2074 2 h -1.9872 26.4669 44.3483 -Verdana.ttf 107 ¥ 31.1332 42.2074 3 a 9.2628 26.7969 34.0188 -Verdana.ttf 107 ¥ 31.1332 42.2074 4 n 9.5516 26.4669 32.8447 -Verdana.ttf 107 ¥ 31.1332 42.2074 5 P 0.0033 27.8519 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 6 o 9.4501 29.3745 34.0188 -Verdana.ttf 107 ¥ 31.1332 42.2074 7 e 9.4646 28.8152 34.0188 -Verdana.ttf 107 ¥ 31.1332 42.2074 8 : 10.5821 6.6555 31.6705 -Verdana.ttf 107 ¥ 31.1332 42.2074 9 r 10.6319 19.6817 31.6705 -Verdana.ttf 107 ¥ 31.1332 42.2074 10 l -2.2445 5.3333 44.3483 -Verdana.ttf 107 ¥ 31.1332 42.2074 11 i -0.0163 5.3333 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 12 1 -0.0505 22.9445 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 13 | -2.1052 5.2036 55.4929 -Verdana.ttf 107 ¥ 31.1332 42.2074 14 N -0.0356 31.5514 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 15 f -2.1242 20.5259 44.3483 -Verdana.ttf 107 ¥ 31.1332 42.2074 16 g 9.2300 28.2003 44.4964 -Verdana.ttf 107 ¥ 31.1332 42.2074 17 d -2.2817 28.2003 45.5224 -Verdana.ttf 107 ¥ 31.1332 42.2074 18 W -0.1668 52.3887 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 19 s 9.2330 25.0150 34.0188 -Verdana.ttf 107 ¥ 31.1332 42.2074 20 c 9.2830 25.6820 34.0188 -Verdana.ttf 107 ¥ 31.1332 42.2074 21 u 10.3799 26.4669 32.8447 -Verdana.ttf 107 ¥ 31.1332 42.2074 22 3 -1.2865 28.2074 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 23 ~ 15.2619 37.0038 17.5224 -Verdana.ttf 107 ¥ 31.1332 42.2074 24 # 0.3596 36.5186 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 25 O -1.2250 39.3996 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 26 ` -5.5372 11.8592 10.6850 -Verdana.ttf 107 ¥ 31.1332 42.2074 27 @ -1.3024 48.3778 49.6815 -Verdana.ttf 107 ¥ 31.1332 42.2074 28 F 0.0737 26.3478 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 29 S -1.3667 32.5147 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 30 p 8.8937 28.2003 44.4964 -Verdana.ttf 107 ¥ 31.1332 42.2074 31 “ -1.9939 23.0072 16.1408 -Verdana.ttf 107 ¥ 31.1332 42.2074 32 % -1.4556 54.3188 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 33 £ -1.1666 29.1741 43.3815 -Verdana.ttf 107 ¥ 31.1332 42.2074 34 . 34.0416 6.6555 8.1886 -Verdana.ttf 107 ¥ 31.1332 42.2074 35 2 -1.3540 28.3370 43.3815 -Verdana.ttf 107 ¥ 31.1332 42.2074 36 5 -1.0540 27.5114 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 37 m 9.5814 46.3480 32.8447 -Verdana.ttf 107 ¥ 31.1332 42.2074 38 V 0.2880 37.5109 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 39 6 -1.3154 29.6593 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 40 w 10.5104 42.9667 31.6705 -Verdana.ttf 107 ¥ 31.1332 42.2074 41 T 0.2495 35.8297 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 42 M 0.0000 37.7217 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 43 G -1.0348 38.0483 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 44 b -2.1380 28.2003 45.5224 -Verdana.ttf 107 ¥ 31.1332 42.2074 45 9 -0.7523 29.6593 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 46 ; 10.5101 12.1891 42.1191 -Verdana.ttf 107 ¥ 31.1332 42.2074 47 D -0.2034 35.8587 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 48 L 0.3209 26.6777 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 49 y 10.5322 31.1449 43.3223 -Verdana.ttf 107 ¥ 31.1332 42.2074 50 ‘ -2.0937 11.5036 16.1408 -Verdana.ttf 107 ¥ 31.1332 42.2074 51 \ -2.1111 25.1446 53.0150 -Verdana.ttf 107 ¥ 31.1332 42.2074 52 R -0.1241 34.9855 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 53 < 7.1745 32.8447 32.8447 -Verdana.ttf 107 ¥ 31.1332 42.2074 54 4 -0.1140 32.2369 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 55 8 -1.2713 29.9590 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 56 0 -1.0529 28.9448 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 57 A -0.2020 37.5109 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 58 E -0.3594 27.8774 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 59 B 0.1332 32.0295 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 60 v 10.6272 31.1449 31.6705 -Verdana.ttf 107 ¥ 31.1332 42.2074 61 k -2.1317 29.1741 44.3483 -Verdana.ttf 107 ¥ 31.1332 42.2074 62 J 0.0223 20.1703 43.3815 -Verdana.ttf 107 ¥ 31.1332 42.2074 63 U 0.1400 32.6187 43.3815 -Verdana.ttf 107 ¥ 31.1332 42.2074 64 j -0.2985 16.4964 53.8592 -Verdana.ttf 107 ¥ 31.1332 42.2074 65 ( -2.0611 17.3150 56.0000 -Verdana.ttf 107 ¥ 31.1332 42.2074 66 7 -0.0918 29.1741 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 67 § -1.1080 27.0333 54.3965 -Verdana.ttf 107 ¥ 31.1332 42.2074 68 $ -2.7164 28.8186 54.8039 -Verdana.ttf 107 ¥ 31.1332 42.2074 69 € -0.9954 34.6555 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 70 / -1.8347 25.1446 53.0150 -Verdana.ttf 107 ¥ 31.1332 42.2074 71 C -1.2763 35.1627 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 72 * -2.1812 27.3888 26.3188 -Verdana.ttf 107 ¥ 31.1332 42.2074 73 ” -2.3135 23.0072 16.1408 -Verdana.ttf 107 ¥ 31.1332 42.2074 74 ? -1.2107 23.9705 43.3815 -Verdana.ttf 107 ¥ 31.1332 42.2074 75 { -2.2812 26.6962 55.4929 -Verdana.ttf 107 ¥ 31.1332 42.2074 76 } -2.2112 26.6962 55.4929 -Verdana.ttf 107 ¥ 31.1332 42.2074 77 , 34.0438 12.1891 18.6372 -Verdana.ttf 107 ¥ 31.1332 42.2074 78 I 0.0418 16.4442 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 79 ° -1.2159 22.7964 22.7964 -Verdana.ttf 107 ¥ 31.1332 42.2074 80 K -0.3094 33.3333 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 81 H -0.1136 32.7255 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 82 q 9.3195 28.2003 44.4964 -Verdana.ttf 107 ¥ 31.1332 42.2074 83 & -1.2366 41.1629 44.5557 -Verdana.ttf 107 ¥ 31.1332 42.2074 84 ’ -2.1561 11.5036 16.1408 -Verdana.ttf 107 ¥ 31.1332 42.2074 85 [ -2.2279 15.1741 55.4929 -Verdana.ttf 107 ¥ 31.1332 42.2074 86 - 21.2282 17.6705 4.8447 -Verdana.ttf 107 ¥ 31.1332 42.2074 87 Y 0.0485 35.8297 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 88 Q -1.3581 40.5737 54.5262 -Verdana.ttf 107 ¥ 31.1332 42.2074 89 " -2.0981 17.3150 16.3483 -Verdana.ttf 107 ¥ 31.1332 42.2074 90 ! 0.0812 5.4814 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 91 x 10.7973 31.1449 31.6705 -Verdana.ttf 107 ¥ 31.1332 42.2074 92 ) -2.3505 17.3150 56.0000 -Verdana.ttf 107 ¥ 31.1332 42.2074 93 = 15.3612 33.8114 16.4964 -Verdana.ttf 107 ¥ 31.1332 42.2074 94 + 6.2548 34.9855 34.9855 -Verdana.ttf 107 ¥ 31.1332 42.2074 95 X 0.0337 35.9074 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 96 » 9.8397 28.0000 28.0000 -Verdana.ttf 107 ¥ 31.1332 42.2074 97 ' -2.1774 6.1703 16.3483 -Verdana.ttf 107 ¥ 31.1332 42.2074 98 ¢ 0.6966 27.2855 51.6115 -Verdana.ttf 107 ¥ 31.1332 42.2074 99 Z 0.0164 33.2036 42.2074 -Verdana.ttf 107 ¥ 31.1332 42.2074 100 > 7.0218 32.8447 32.8447 -Verdana.ttf 107 ¥ 31.1332 42.2074 101 ® -1.2743 49.3445 49.3445 -Verdana.ttf 107 ¥ 31.1332 42.2074 102 © -1.2260 49.3445 49.3445 -Verdana.ttf 107 ¥ 31.1332 42.2074 103 ] -2.0740 15.1741 55.4929 -Verdana.ttf 107 ¥ 31.1332 42.2074 104 é -5.4887 28.8152 48.8629 -Verdana.ttf 107 ¥ 31.1332 42.2074 105 z 10.6777 25.5036 31.6705 -Verdana.ttf 107 ¥ 31.1332 42.2074 106 _ 47.3106 37.0038 3.3150 -Verdana.ttf 107 ¥ 31.1332 42.2074 107 ¥ 0.1832 31.1332 42.2074 -Verdana_Bold.ttf 1 t 24.2160 42.3111 1 t -0.0222 24.2160 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 2 h -3.3579 32.3226 44.4239 -Verdana_Bold.ttf 1 t 24.2160 42.3111 3 a 7.9837 31.7954 34.3675 -Verdana_Bold.ttf 1 t 24.2160 42.3111 4 n 7.9704 32.3226 33.1555 -Verdana_Bold.ttf 1 t 24.2160 42.3111 5 P -1.2322 35.4165 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 6 o 7.7421 35.1202 34.3675 -Verdana_Bold.ttf 1 t 24.2160 42.3111 7 e 7.7514 33.9082 34.3675 -Verdana_Bold.ttf 1 t 24.2160 42.3111 8 : 9.1444 10.6752 31.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 9 r 9.2235 23.3151 31.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 10 l -3.1979 10.2160 44.4239 -Verdana_Bold.ttf 1 t 24.2160 42.3111 11 i -3.3571 10.2160 44.4239 -Verdana_Bold.ttf 1 t 24.2160 42.3111 12 1 -1.0611 28.7413 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 13 | -3.2387 8.4803 55.6923 -Verdana_Bold.ttf 1 t 24.2160 42.3111 14 N -0.9790 38.8363 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 15 f -3.2704 24.5271 44.4239 -Verdana_Bold.ttf 1 t 24.2160 42.3111 16 g 7.9422 33.5311 44.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 17 d -3.4277 33.5311 45.6359 -Verdana_Bold.ttf 1 t 24.2160 42.3111 18 W -1.2192 62.2208 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 19 s 7.8413 29.7391 34.3675 -Verdana_Bold.ttf 1 t 24.2160 42.3111 20 c 8.2280 29.6826 34.3675 -Verdana_Bold.ttf 1 t 24.2160 42.3111 21 u 9.1157 32.3226 33.1555 -Verdana_Bold.ttf 1 t 24.2160 42.3111 22 3 -2.3572 33.8052 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 23 ~ 12.2166 41.7840 19.3716 -Verdana_Bold.ttf 1 t 24.2160 42.3111 24 # -1.1162 41.8499 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 25 O -2.0753 43.9002 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 26 ` -6.4318 16.9477 11.2684 -Verdana_Bold.ttf 1 t 24.2160 42.3111 27 @ -2.3913 47.6808 50.1066 -Verdana_Bold.ttf 1 t 24.2160 42.3111 28 F -0.9992 30.2610 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 29 S -2.3235 36.6318 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 30 p 7.8115 33.5311 44.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 31 “ -3.2939 30.4239 16.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 32 % -2.5220 66.6496 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 33 £ -2.6833 33.7487 43.5231 -Verdana_Bold.ttf 1 t 24.2160 42.3111 34 . 29.7303 10.6752 11.2684 -Verdana_Bold.ttf 1 t 24.2160 42.3111 35 2 -2.1893 33.2780 43.5231 -Verdana_Bold.ttf 1 t 24.2160 42.3111 36 5 -1.3383 33.0639 43.5231 -Verdana_Bold.ttf 1 t 24.2160 42.3111 37 m 7.9436 52.4335 33.1555 -Verdana_Bold.ttf 1 t 24.2160 42.3111 38 V -0.9362 42.3111 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 39 6 -2.2898 34.8011 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 40 w 9.3794 54.7880 31.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 41 T -1.3198 37.2507 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 42 M -1.2638 44.7331 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 43 G -2.3429 40.2643 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 44 b -3.4798 33.5311 45.6359 -Verdana_Bold.ttf 1 t 24.2160 42.3111 45 9 -2.5143 34.8011 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 46 ; 9.1280 16.5721 42.6188 -Verdana_Bold.ttf 1 t 24.2160 42.3111 47 D -1.1905 40.2643 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 48 L -1.1759 30.5721 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 49 y 9.2945 35.6325 43.5196 -Verdana_Bold.ttf 1 t 24.2160 42.3111 50 ‘ -3.2791 15.2120 16.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 51 \ -3.0815 31.6359 53.7390 -Verdana_Bold.ttf 1 t 24.2160 42.3111 52 R -1.2206 41.1651 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 53 < 2.7840 38.0564 38.0564 -Verdana_Bold.ttf 1 t 24.2160 42.3111 54 4 -1.2758 37.2216 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 55 8 -2.5128 36.2291 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 56 0 -2.1334 35.0428 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 57 A -1.1007 43.5231 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 58 E -1.3540 30.7316 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 59 B -0.9376 36.1047 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 60 v 8.9941 35.6325 31.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 61 k -3.4536 34.5835 44.4239 -Verdana_Bold.ttf 1 t 24.2160 42.3111 62 J -1.1630 26.4804 43.5231 -Verdana_Bold.ttf 1 t 24.2160 42.3111 63 U -1.2465 38.0018 43.5231 -Verdana_Bold.ttf 1 t 24.2160 42.3111 64 j -3.6076 20.5270 56.0000 -Verdana_Bold.ttf 1 t 24.2160 42.3111 65 ( -3.3295 21.2683 56.0000 -Verdana_Bold.ttf 1 t 24.2160 42.3111 66 7 -1.0994 33.3716 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 67 § -2.3498 33.3731 54.7915 -Verdana_Bold.ttf 1 t 24.2160 42.3111 68 $ -4.3803 34.4240 55.1557 -Verdana_Bold.ttf 1 t 24.2160 42.3111 69 € -2.2019 38.7447 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 70 / -3.2661 31.6359 53.7390 -Verdana_Bold.ttf 1 t 24.2160 42.3111 71 C -2.2965 36.1047 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 72 * -3.4162 32.2547 29.2120 -Verdana_Bold.ttf 1 t 24.2160 42.3111 73 ” -3.4716 30.4239 16.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 74 ? -2.4952 28.4593 43.5231 -Verdana_Bold.ttf 1 t 24.2160 42.3111 75 { -3.0692 31.3248 55.6923 -Verdana_Bold.ttf 1 t 24.2160 42.3111 76 } -3.2672 31.3248 55.6923 -Verdana_Bold.ttf 1 t 24.2160 42.3111 77 , 29.7641 16.5721 21.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 78 I -1.0408 24.5157 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 79 ° -2.3793 24.0564 23.8404 -Verdana_Bold.ttf 1 t 24.2160 42.3111 80 K -1.2303 39.5761 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 81 H -1.2173 38.3656 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 82 q 7.9854 33.5311 44.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 83 & -2.5974 48.3675 44.7350 -Verdana_Bold.ttf 1 t 24.2160 42.3111 84 ’ -3.3240 15.2120 16.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 85 [ -3.4758 19.1555 55.6923 -Verdana_Bold.ttf 1 t 24.2160 42.3111 86 - 17.8296 21.9436 7.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 87 Y -1.3988 42.5237 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 88 Q -2.2861 43.9002 55.0992 -Verdana_Bold.ttf 1 t 24.2160 42.3111 89 " -3.3955 25.0523 16.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 90 ! -1.2984 11.4279 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 91 x 9.1922 36.6284 31.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 92 ) -3.2330 21.2683 56.0000 -Verdana_Bold.ttf 1 t 24.2160 42.3111 93 = 10.6356 36.4803 23.1556 -Verdana_Bold.ttf 1 t 24.2160 42.3111 94 + 3.2879 38.3675 38.3675 -Verdana_Bold.ttf 1 t 24.2160 42.3111 95 X -1.1947 42.3111 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 96 » 7.1499 35.2683 30.4239 -Verdana_Bold.ttf 1 t 24.2160 42.3111 97 ' -3.3281 9.8404 16.7316 -Verdana_Bold.ttf 1 t 24.2160 42.3111 98 ¢ -0.8961 30.9492 51.8404 -Verdana_Bold.ttf 1 t 24.2160 42.3111 99 Z -0.8208 35.7955 42.3111 -Verdana_Bold.ttf 1 t 24.2160 42.3111 100 > 3.1061 38.0564 38.0564 -Verdana_Bold.ttf 1 t 24.2160 42.3111 101 ® -2.4220 49.2683 49.2683 -Verdana_Bold.ttf 1 t 24.2160 42.3111 102 © -2.3771 49.2683 49.2683 -Verdana_Bold.ttf 1 t 24.2160 42.3111 103 ] -3.2823 19.1555 55.6923 -Verdana_Bold.ttf 1 t 24.2160 42.3111 104 é -7.0047 33.9082 48.9606 -Verdana_Bold.ttf 1 t 24.2160 42.3111 105 z 9.2108 29.7357 31.9436 -Verdana_Bold.ttf 1 t 24.2160 42.3111 106 _ 44.8588 41.6923 6.0564 -Verdana_Bold.ttf 1 t 24.2160 42.3111 107 ¥ -1.2951 38.9042 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 1 t 3.0642 24.2160 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 2 h -0.0644 32.3226 44.4239 -Verdana_Bold.ttf 2 h 32.3226 44.4239 3 a 11.3943 31.7954 34.3675 -Verdana_Bold.ttf 2 h 32.3226 44.4239 4 n 10.9474 32.3226 33.1555 -Verdana_Bold.ttf 2 h 32.3226 44.4239 5 P 2.2387 35.4165 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 6 o 11.4247 35.1202 34.3675 -Verdana_Bold.ttf 2 h 32.3226 44.4239 7 e 11.3156 33.9082 34.3675 -Verdana_Bold.ttf 2 h 32.3226 44.4239 8 : 12.3169 10.6752 31.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 9 r 12.5718 23.3151 31.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 10 l 0.2399 10.2160 44.4239 -Verdana_Bold.ttf 2 h 32.3226 44.4239 11 i 0.1009 10.2160 44.4239 -Verdana_Bold.ttf 2 h 32.3226 44.4239 12 1 1.7665 28.7413 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 13 | -0.3276 8.4803 55.6923 -Verdana_Bold.ttf 2 h 32.3226 44.4239 14 N 2.0797 38.8363 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 15 f 0.0189 24.5271 44.4239 -Verdana_Bold.ttf 2 h 32.3226 44.4239 16 g 11.2740 33.5311 44.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 17 d 0.0554 33.5311 45.6359 -Verdana_Bold.ttf 2 h 32.3226 44.4239 18 W 1.9612 62.2208 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 19 s 11.2894 29.7391 34.3675 -Verdana_Bold.ttf 2 h 32.3226 44.4239 20 c 11.3411 29.6826 34.3675 -Verdana_Bold.ttf 2 h 32.3226 44.4239 21 u 12.4232 32.3226 33.1555 -Verdana_Bold.ttf 2 h 32.3226 44.4239 22 3 0.8389 33.8052 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 23 ~ 15.5869 41.7840 19.3716 -Verdana_Bold.ttf 2 h 32.3226 44.4239 24 # 1.9768 41.8499 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 25 O 1.0829 43.9002 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 26 ` -3.2428 16.9477 11.2684 -Verdana_Bold.ttf 2 h 32.3226 44.4239 27 @ 0.2728 47.6808 50.1066 -Verdana_Bold.ttf 2 h 32.3226 44.4239 28 F 2.0728 30.2610 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 29 S 1.1166 36.6318 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 30 p 11.1838 33.5311 44.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 31 “ -0.1227 30.4239 16.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 32 % 1.0943 66.6496 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 33 £ 0.5638 33.7487 43.5231 -Verdana_Bold.ttf 2 h 32.3226 44.4239 34 . 33.0863 10.6752 11.2684 -Verdana_Bold.ttf 2 h 32.3226 44.4239 35 2 0.9204 33.2780 43.5231 -Verdana_Bold.ttf 2 h 32.3226 44.4239 36 5 2.2210 33.0639 43.5231 -Verdana_Bold.ttf 2 h 32.3226 44.4239 37 m 11.2263 52.4335 33.1555 -Verdana_Bold.ttf 2 h 32.3226 44.4239 38 V 2.0603 42.3111 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 39 6 0.7227 34.8011 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 40 w 12.7593 54.7880 31.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 41 T 2.0601 37.2507 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 42 M 1.8546 44.7331 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 43 G 0.9577 40.2643 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 44 b -0.0706 33.5311 45.6359 -Verdana_Bold.ttf 2 h 32.3226 44.4239 45 9 0.7779 34.8011 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 46 ; 12.4804 16.5721 42.6188 -Verdana_Bold.ttf 2 h 32.3226 44.4239 47 D 2.3323 40.2643 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 48 L 2.1816 30.5721 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 49 y 12.5702 35.6325 43.5196 -Verdana_Bold.ttf 2 h 32.3226 44.4239 50 ‘ 0.1862 15.2120 16.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 51 \ 0.3192 31.6359 53.7390 -Verdana_Bold.ttf 2 h 32.3226 44.4239 52 R 2.2535 41.1651 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 53 < 6.4011 38.0564 38.0564 -Verdana_Bold.ttf 2 h 32.3226 44.4239 54 4 1.8351 37.2216 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 55 8 0.8990 36.2291 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 56 0 1.0173 35.0428 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 57 A 2.3515 43.5231 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 58 E 2.0728 30.7316 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 59 B 2.1891 36.1047 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 60 v 12.0937 35.6325 31.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 61 k 0.1730 34.5835 44.4239 -Verdana_Bold.ttf 2 h 32.3226 44.4239 62 J 2.0768 26.4804 43.5231 -Verdana_Bold.ttf 2 h 32.3226 44.4239 63 U 2.1873 38.0018 43.5231 -Verdana_Bold.ttf 2 h 32.3226 44.4239 64 j 0.1734 20.5270 56.0000 -Verdana_Bold.ttf 2 h 32.3226 44.4239 65 ( 0.2019 21.2683 56.0000 -Verdana_Bold.ttf 2 h 32.3226 44.4239 66 7 2.0017 33.3716 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 67 § 0.6536 33.3731 54.7915 -Verdana_Bold.ttf 2 h 32.3226 44.4239 68 $ -0.5599 34.4240 55.1557 -Verdana_Bold.ttf 2 h 32.3226 44.4239 69 € 0.9920 38.7447 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 70 / 0.1241 31.6359 53.7390 -Verdana_Bold.ttf 2 h 32.3226 44.4239 71 C 0.8105 36.1047 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 72 * -0.1740 32.2547 29.2120 -Verdana_Bold.ttf 2 h 32.3226 44.4239 73 ” 0.0449 30.4239 16.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 74 ? 0.7683 28.4593 43.5231 -Verdana_Bold.ttf 2 h 32.3226 44.4239 75 { -0.2856 31.3248 55.6923 -Verdana_Bold.ttf 2 h 32.3226 44.4239 76 } 0.2315 31.3248 55.6923 -Verdana_Bold.ttf 2 h 32.3226 44.4239 77 , 32.9279 16.5721 21.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 78 I 2.4248 24.5157 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 79 ° 0.5914 24.0564 23.8404 -Verdana_Bold.ttf 2 h 32.3226 44.4239 80 K 2.1987 39.5761 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 81 H 2.1680 38.3656 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 82 q 11.0939 33.5311 44.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 83 & 0.8903 48.3675 44.7350 -Verdana_Bold.ttf 2 h 32.3226 44.4239 84 ’ -0.2332 15.2120 16.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 85 [ 0.1860 19.1555 55.6923 -Verdana_Bold.ttf 2 h 32.3226 44.4239 86 - 20.9480 21.9436 7.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 87 Y 1.9704 42.5237 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 88 Q 1.2179 43.9002 55.0992 -Verdana_Bold.ttf 2 h 32.3226 44.4239 89 " -0.1605 25.0523 16.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 90 ! 2.1742 11.4279 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 91 x 12.2511 36.6284 31.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 92 ) 0.0087 21.2683 56.0000 -Verdana_Bold.ttf 2 h 32.3226 44.4239 93 = 13.8864 36.4803 23.1556 -Verdana_Bold.ttf 2 h 32.3226 44.4239 94 + 6.6972 38.3675 38.3675 -Verdana_Bold.ttf 2 h 32.3226 44.4239 95 X 2.1161 42.3111 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 96 » 10.2932 35.2683 30.4239 -Verdana_Bold.ttf 2 h 32.3226 44.4239 97 ' -0.0870 9.8404 16.7316 -Verdana_Bold.ttf 2 h 32.3226 44.4239 98 ¢ 2.2466 30.9492 51.8404 -Verdana_Bold.ttf 2 h 32.3226 44.4239 99 Z 2.1450 35.7955 42.3111 -Verdana_Bold.ttf 2 h 32.3226 44.4239 100 > 6.5119 38.0564 38.0564 -Verdana_Bold.ttf 2 h 32.3226 44.4239 101 ® 1.1783 49.2683 49.2683 -Verdana_Bold.ttf 2 h 32.3226 44.4239 102 © 0.8490 49.2683 49.2683 -Verdana_Bold.ttf 2 h 32.3226 44.4239 103 ] 0.1086 19.1555 55.6923 -Verdana_Bold.ttf 2 h 32.3226 44.4239 104 é -3.2439 33.9082 48.9606 -Verdana_Bold.ttf 2 h 32.3226 44.4239 105 z 12.4837 29.7357 31.9436 -Verdana_Bold.ttf 2 h 32.3226 44.4239 106 _ 48.4074 41.6923 6.0564 -Verdana_Bold.ttf 2 h 32.3226 44.4239 107 ¥ 2.1355 38.9042 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 1 t -8.1823 24.2160 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 2 h -11.3145 32.3226 44.4239 -Verdana_Bold.ttf 3 a 31.7954 34.3675 3 a -0.0219 31.7954 34.3675 -Verdana_Bold.ttf 3 a 31.7954 34.3675 4 n -0.4113 32.3226 33.1555 -Verdana_Bold.ttf 3 a 31.7954 34.3675 5 P -8.7879 35.4165 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 6 o 0.0161 35.1202 34.3675 -Verdana_Bold.ttf 3 a 31.7954 34.3675 7 e -0.0120 33.9082 34.3675 -Verdana_Bold.ttf 3 a 31.7954 34.3675 8 : 1.2794 10.6752 31.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 9 r 1.4757 23.3151 31.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 10 l -10.9171 10.2160 44.4239 -Verdana_Bold.ttf 3 a 31.7954 34.3675 11 i -11.2256 10.2160 44.4239 -Verdana_Bold.ttf 3 a 31.7954 34.3675 12 1 -8.9598 28.7413 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 13 | -11.1804 8.4803 55.6923 -Verdana_Bold.ttf 3 a 31.7954 34.3675 14 N -9.2114 38.8363 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 15 f -11.2762 24.5271 44.4239 -Verdana_Bold.ttf 3 a 31.7954 34.3675 16 g 0.3264 33.5311 44.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 17 d -11.1378 33.5311 45.6359 -Verdana_Bold.ttf 3 a 31.7954 34.3675 18 W -8.9724 62.2208 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 19 s -0.0591 29.7391 34.3675 -Verdana_Bold.ttf 3 a 31.7954 34.3675 20 c -0.1625 29.6826 34.3675 -Verdana_Bold.ttf 3 a 31.7954 34.3675 21 u 1.0865 32.3226 33.1555 -Verdana_Bold.ttf 3 a 31.7954 34.3675 22 3 -10.3683 33.8052 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 23 ~ 3.5576 41.7840 19.3716 -Verdana_Bold.ttf 3 a 31.7954 34.3675 24 # -9.2336 41.8499 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 25 O -10.4020 43.9002 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 26 ` -14.7757 16.9477 11.2684 -Verdana_Bold.ttf 3 a 31.7954 34.3675 27 @ -10.6374 47.6808 50.1066 -Verdana_Bold.ttf 3 a 31.7954 34.3675 28 F -9.1064 30.2610 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 29 S -10.5011 36.6318 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 30 p 0.0780 33.5311 44.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 31 “ -11.3079 30.4239 16.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 32 % -10.5854 66.6496 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 33 £ -10.3515 33.7487 43.5231 -Verdana_Bold.ttf 3 a 31.7954 34.3675 34 . 22.0307 10.6752 11.2684 -Verdana_Bold.ttf 3 a 31.7954 34.3675 35 2 -10.6745 33.2780 43.5231 -Verdana_Bold.ttf 3 a 31.7954 34.3675 36 5 -9.0500 33.0639 43.5231 -Verdana_Bold.ttf 3 a 31.7954 34.3675 37 m 0.0153 52.4335 33.1555 -Verdana_Bold.ttf 3 a 31.7954 34.3675 38 V -9.0200 42.3111 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 39 6 -10.7407 34.8011 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 40 w 1.2000 54.7880 31.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 41 T -9.0918 37.2507 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 42 M -9.1614 44.7331 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 43 G -10.4560 40.2643 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 44 b -11.1806 33.5311 45.6359 -Verdana_Bold.ttf 3 a 31.7954 34.3675 45 9 -10.3766 34.8011 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 46 ; 0.9236 16.5721 42.6188 -Verdana_Bold.ttf 3 a 31.7954 34.3675 47 D -9.0830 40.2643 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 48 L -9.3722 30.5721 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 49 y 1.3772 35.6325 43.5196 -Verdana_Bold.ttf 3 a 31.7954 34.3675 50 ‘ -11.2499 15.2120 16.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 51 \ -11.3210 31.6359 53.7390 -Verdana_Bold.ttf 3 a 31.7954 34.3675 52 R -9.3268 41.1651 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 53 < -4.8873 38.0564 38.0564 -Verdana_Bold.ttf 3 a 31.7954 34.3675 54 4 -8.9162 37.2216 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 55 8 -10.5482 36.2291 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 56 0 -10.4525 35.0428 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 57 A -9.2869 43.5231 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 58 E -8.7503 30.7316 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 59 B -9.2106 36.1047 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 60 v 1.2403 35.6325 31.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 61 k -11.4973 34.5835 44.4239 -Verdana_Bold.ttf 3 a 31.7954 34.3675 62 J -8.8302 26.4804 43.5231 -Verdana_Bold.ttf 3 a 31.7954 34.3675 63 U -9.0561 38.0018 43.5231 -Verdana_Bold.ttf 3 a 31.7954 34.3675 64 j -11.6964 20.5270 56.0000 -Verdana_Bold.ttf 3 a 31.7954 34.3675 65 ( -11.3359 21.2683 56.0000 -Verdana_Bold.ttf 3 a 31.7954 34.3675 66 7 -9.3875 33.3716 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 67 § -10.2730 33.3731 54.7915 -Verdana_Bold.ttf 3 a 31.7954 34.3675 68 $ -11.8715 34.4240 55.1557 -Verdana_Bold.ttf 3 a 31.7954 34.3675 69 € -10.1044 38.7447 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 70 / -11.0351 31.6359 53.7390 -Verdana_Bold.ttf 3 a 31.7954 34.3675 71 C -10.6081 36.1047 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 72 * -11.0092 32.2547 29.2120 -Verdana_Bold.ttf 3 a 31.7954 34.3675 73 ” -11.3044 30.4239 16.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 74 ? -10.2598 28.4593 43.5231 -Verdana_Bold.ttf 3 a 31.7954 34.3675 75 { -11.3860 31.3248 55.6923 -Verdana_Bold.ttf 3 a 31.7954 34.3675 76 } -11.5692 31.3248 55.6923 -Verdana_Bold.ttf 3 a 31.7954 34.3675 77 , 21.9198 16.5721 21.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 78 I -9.1095 24.5157 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 79 ° -10.1247 24.0564 23.8404 -Verdana_Bold.ttf 3 a 31.7954 34.3675 80 K -9.1165 39.5761 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 81 H -9.4836 38.3656 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 82 q 0.0879 33.5311 44.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 83 & -10.3824 48.3675 44.7350 -Verdana_Bold.ttf 3 a 31.7954 34.3675 84 ’ -11.2058 15.2120 16.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 85 [ -11.8954 19.1555 55.6923 -Verdana_Bold.ttf 3 a 31.7954 34.3675 86 - 9.9750 21.9436 7.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 87 Y -9.1077 42.5237 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 88 Q -10.6229 43.9002 55.0992 -Verdana_Bold.ttf 3 a 31.7954 34.3675 89 " -11.1719 25.0523 16.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 90 ! -9.1541 11.4279 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 91 x 1.2806 36.6284 31.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 92 ) -11.0928 21.2683 56.0000 -Verdana_Bold.ttf 3 a 31.7954 34.3675 93 = 2.6685 36.4803 23.1556 -Verdana_Bold.ttf 3 a 31.7954 34.3675 94 + -4.7406 38.3675 38.3675 -Verdana_Bold.ttf 3 a 31.7954 34.3675 95 X -9.1677 42.3111 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 96 » -0.8969 35.2683 30.4239 -Verdana_Bold.ttf 3 a 31.7954 34.3675 97 ' -11.3155 9.8404 16.7316 -Verdana_Bold.ttf 3 a 31.7954 34.3675 98 ¢ -9.0014 30.9492 51.8404 -Verdana_Bold.ttf 3 a 31.7954 34.3675 99 Z -9.2844 35.7955 42.3111 -Verdana_Bold.ttf 3 a 31.7954 34.3675 100 > -4.7548 38.0564 38.0564 -Verdana_Bold.ttf 3 a 31.7954 34.3675 101 ® -10.2550 49.2683 49.2683 -Verdana_Bold.ttf 3 a 31.7954 34.3675 102 © -10.4435 49.2683 49.2683 -Verdana_Bold.ttf 3 a 31.7954 34.3675 103 ] -11.8534 19.1555 55.6923 -Verdana_Bold.ttf 3 a 31.7954 34.3675 104 é -14.6770 33.9082 48.9606 -Verdana_Bold.ttf 3 a 31.7954 34.3675 105 z 1.1008 29.7357 31.9436 -Verdana_Bold.ttf 3 a 31.7954 34.3675 106 _ 37.1822 41.6923 6.0564 -Verdana_Bold.ttf 3 a 31.7954 34.3675 107 ¥ -9.0947 38.9042 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 1 t -7.7771 24.2160 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 2 h -11.2854 32.3226 44.4239 -Verdana_Bold.ttf 4 n 32.3226 33.1555 3 a 0.1533 31.7954 34.3675 -Verdana_Bold.ttf 4 n 32.3226 33.1555 4 n -0.1753 32.3226 33.1555 -Verdana_Bold.ttf 4 n 32.3226 33.1555 5 P -9.1733 35.4165 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 6 o 0.1357 35.1202 34.3675 -Verdana_Bold.ttf 4 n 32.3226 33.1555 7 e 0.0526 33.9082 34.3675 -Verdana_Bold.ttf 4 n 32.3226 33.1555 8 : 1.2275 10.6752 31.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 9 r 1.1760 23.3151 31.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 10 l -11.2678 10.2160 44.4239 -Verdana_Bold.ttf 4 n 32.3226 33.1555 11 i -11.5487 10.2160 44.4239 -Verdana_Bold.ttf 4 n 32.3226 33.1555 12 1 -9.0486 28.7413 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 13 | -11.2089 8.4803 55.6923 -Verdana_Bold.ttf 4 n 32.3226 33.1555 14 N -9.2276 38.8363 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 15 f -11.2619 24.5271 44.4239 -Verdana_Bold.ttf 4 n 32.3226 33.1555 16 g 0.1225 33.5311 44.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 17 d -11.3544 33.5311 45.6359 -Verdana_Bold.ttf 4 n 32.3226 33.1555 18 W -9.3276 62.2208 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 19 s 0.1097 29.7391 34.3675 -Verdana_Bold.ttf 4 n 32.3226 33.1555 20 c 0.0979 29.6826 34.3675 -Verdana_Bold.ttf 4 n 32.3226 33.1555 21 u 0.8990 32.3226 33.1555 -Verdana_Bold.ttf 4 n 32.3226 33.1555 22 3 -10.5542 33.8052 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 23 ~ 4.0666 41.7840 19.3716 -Verdana_Bold.ttf 4 n 32.3226 33.1555 24 # -8.9741 41.8499 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 25 O -10.0491 43.9002 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 26 ` -14.8148 16.9477 11.2684 -Verdana_Bold.ttf 4 n 32.3226 33.1555 27 @ -10.2819 47.6808 50.1066 -Verdana_Bold.ttf 4 n 32.3226 33.1555 28 F -9.0896 30.2610 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 29 S -10.4847 36.6318 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 30 p 0.0000 33.5311 44.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 31 “ -11.0767 30.4239 16.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 32 % -10.4079 66.6496 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 33 £ -10.5806 33.7487 43.5231 -Verdana_Bold.ttf 4 n 32.3226 33.1555 34 . 21.9904 10.6752 11.2684 -Verdana_Bold.ttf 4 n 32.3226 33.1555 35 2 -10.3614 33.2780 43.5231 -Verdana_Bold.ttf 4 n 32.3226 33.1555 36 5 -8.8538 33.0639 43.5231 -Verdana_Bold.ttf 4 n 32.3226 33.1555 37 m 0.0076 52.4335 33.1555 -Verdana_Bold.ttf 4 n 32.3226 33.1555 38 V -9.1741 42.3111 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 39 6 -10.2819 34.8011 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 40 w 0.9900 54.7880 31.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 41 T -9.0919 37.2507 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 42 M -9.5038 44.7331 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 43 G -10.7127 40.2643 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 44 b -11.2091 33.5311 45.6359 -Verdana_Bold.ttf 4 n 32.3226 33.1555 45 9 -10.4003 34.8011 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 46 ; 1.2206 16.5721 42.6188 -Verdana_Bold.ttf 4 n 32.3226 33.1555 47 D -9.2326 40.2643 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 48 L -9.5682 30.5721 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 49 y 1.1260 35.6325 43.5196 -Verdana_Bold.ttf 4 n 32.3226 33.1555 50 ‘ -11.6606 15.2120 16.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 51 \ -11.2867 31.6359 53.7390 -Verdana_Bold.ttf 4 n 32.3226 33.1555 52 R -8.8706 41.1651 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 53 < -4.7721 38.0564 38.0564 -Verdana_Bold.ttf 4 n 32.3226 33.1555 54 4 -9.2263 37.2216 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 55 8 -10.4579 36.2291 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 56 0 -10.4626 35.0428 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 57 A -8.9440 43.5231 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 58 E -8.8045 30.7316 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 59 B -9.1636 36.1047 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 60 v 1.3513 35.6325 31.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 61 k -11.3935 34.5835 44.4239 -Verdana_Bold.ttf 4 n 32.3226 33.1555 62 J -9.1503 26.4804 43.5231 -Verdana_Bold.ttf 4 n 32.3226 33.1555 63 U -8.7870 38.0018 43.5231 -Verdana_Bold.ttf 4 n 32.3226 33.1555 64 j -11.3337 20.5270 56.0000 -Verdana_Bold.ttf 4 n 32.3226 33.1555 65 ( -11.2651 21.2683 56.0000 -Verdana_Bold.ttf 4 n 32.3226 33.1555 66 7 -9.0802 33.3716 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 67 § -10.2686 33.3731 54.7915 -Verdana_Bold.ttf 4 n 32.3226 33.1555 68 $ -12.0432 34.4240 55.1557 -Verdana_Bold.ttf 4 n 32.3226 33.1555 69 € -9.9451 38.7447 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 70 / -11.1083 31.6359 53.7390 -Verdana_Bold.ttf 4 n 32.3226 33.1555 71 C -10.3305 36.1047 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 72 * -10.9887 32.2547 29.2120 -Verdana_Bold.ttf 4 n 32.3226 33.1555 73 ” -11.3161 30.4239 16.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 74 ? -10.2964 28.4593 43.5231 -Verdana_Bold.ttf 4 n 32.3226 33.1555 75 { -11.1898 31.3248 55.6923 -Verdana_Bold.ttf 4 n 32.3226 33.1555 76 } -11.1467 31.3248 55.6923 -Verdana_Bold.ttf 4 n 32.3226 33.1555 77 , 22.0170 16.5721 21.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 78 I -9.1149 24.5157 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 79 ° -10.2659 24.0564 23.8404 -Verdana_Bold.ttf 4 n 32.3226 33.1555 80 K -8.9224 39.5761 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 81 H -9.3309 38.3656 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 82 q 0.0951 33.5311 44.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 83 & -10.2729 48.3675 44.7350 -Verdana_Bold.ttf 4 n 32.3226 33.1555 84 ’ -11.2648 15.2120 16.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 85 [ -11.2121 19.1555 55.6923 -Verdana_Bold.ttf 4 n 32.3226 33.1555 86 - 10.0464 21.9436 7.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 87 Y -9.2415 42.5237 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 88 Q -10.3776 43.9002 55.0992 -Verdana_Bold.ttf 4 n 32.3226 33.1555 89 " -11.4887 25.0523 16.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 90 ! -9.3225 11.4279 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 91 x 1.4519 36.6284 31.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 92 ) -11.0396 21.2683 56.0000 -Verdana_Bold.ttf 4 n 32.3226 33.1555 93 = 2.7280 36.4803 23.1556 -Verdana_Bold.ttf 4 n 32.3226 33.1555 94 + -4.3678 38.3675 38.3675 -Verdana_Bold.ttf 4 n 32.3226 33.1555 95 X -9.3395 42.3111 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 96 » -1.4130 35.2683 30.4239 -Verdana_Bold.ttf 4 n 32.3226 33.1555 97 ' -11.3780 9.8404 16.7316 -Verdana_Bold.ttf 4 n 32.3226 33.1555 98 ¢ -8.9308 30.9492 51.8404 -Verdana_Bold.ttf 4 n 32.3226 33.1555 99 Z -9.2774 35.7955 42.3111 -Verdana_Bold.ttf 4 n 32.3226 33.1555 100 > -4.9318 38.0564 38.0564 -Verdana_Bold.ttf 4 n 32.3226 33.1555 101 ® -10.7533 49.2683 49.2683 -Verdana_Bold.ttf 4 n 32.3226 33.1555 102 © -10.4007 49.2683 49.2683 -Verdana_Bold.ttf 4 n 32.3226 33.1555 103 ] -11.2865 19.1555 55.6923 -Verdana_Bold.ttf 4 n 32.3226 33.1555 104 é -14.4586 33.9082 48.9606 -Verdana_Bold.ttf 4 n 32.3226 33.1555 105 z 1.3984 29.7357 31.9436 -Verdana_Bold.ttf 4 n 32.3226 33.1555 106 _ 37.0772 41.6923 6.0564 -Verdana_Bold.ttf 4 n 32.3226 33.1555 107 ¥ -9.0652 38.9042 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 1 t 1.0111 24.2160 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 2 h -2.0648 32.3226 44.4239 -Verdana_Bold.ttf 5 P 35.4165 42.3111 3 a 8.7173 31.7954 34.3675 -Verdana_Bold.ttf 5 P 35.4165 42.3111 4 n 9.0577 32.3226 33.1555 -Verdana_Bold.ttf 5 P 35.4165 42.3111 5 P -0.2018 35.4165 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 6 o 8.9922 35.1202 34.3675 -Verdana_Bold.ttf 5 P 35.4165 42.3111 7 e 8.8303 33.9082 34.3675 -Verdana_Bold.ttf 5 P 35.4165 42.3111 8 : 10.5429 10.6752 31.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 9 r 10.5820 23.3151 31.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 10 l -2.1238 10.2160 44.4239 -Verdana_Bold.ttf 5 P 35.4165 42.3111 11 i -2.1742 10.2160 44.4239 -Verdana_Bold.ttf 5 P 35.4165 42.3111 12 1 -0.0172 28.7413 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 13 | -1.8189 8.4803 55.6923 -Verdana_Bold.ttf 5 P 35.4165 42.3111 14 N 0.1066 38.8363 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 15 f -2.2601 24.5271 44.4239 -Verdana_Bold.ttf 5 P 35.4165 42.3111 16 g 9.2992 33.5311 44.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 17 d -2.2474 33.5311 45.6359 -Verdana_Bold.ttf 5 P 35.4165 42.3111 18 W 0.0691 62.2208 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 19 s 9.1999 29.7391 34.3675 -Verdana_Bold.ttf 5 P 35.4165 42.3111 20 c 9.0033 29.6826 34.3675 -Verdana_Bold.ttf 5 P 35.4165 42.3111 21 u 10.2095 32.3226 33.1555 -Verdana_Bold.ttf 5 P 35.4165 42.3111 22 3 -0.9971 33.8052 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 23 ~ 13.3142 41.7840 19.3716 -Verdana_Bold.ttf 5 P 35.4165 42.3111 24 # 0.1395 41.8499 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 25 O -1.4612 43.9002 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 26 ` -5.7535 16.9477 11.2684 -Verdana_Bold.ttf 5 P 35.4165 42.3111 27 @ -1.4404 47.6808 50.1066 -Verdana_Bold.ttf 5 P 35.4165 42.3111 28 F -0.0134 30.2610 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 29 S -1.2006 36.6318 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 30 p 9.2013 33.5311 44.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 31 “ -2.1574 30.4239 16.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 32 % -1.6298 66.6496 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 33 £ -0.8879 33.7487 43.5231 -Verdana_Bold.ttf 5 P 35.4165 42.3111 34 . 31.0413 10.6752 11.2684 -Verdana_Bold.ttf 5 P 35.4165 42.3111 35 2 -1.3772 33.2780 43.5231 -Verdana_Bold.ttf 5 P 35.4165 42.3111 36 5 0.0788 33.0639 43.5231 -Verdana_Bold.ttf 5 P 35.4165 42.3111 37 m 9.0417 52.4335 33.1555 -Verdana_Bold.ttf 5 P 35.4165 42.3111 38 V -0.1244 42.3111 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 39 6 -1.0868 34.8011 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 40 w 10.2488 54.7880 31.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 41 T 0.0410 37.2507 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 42 M 0.0833 44.7331 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 43 G -1.2998 40.2643 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 44 b -1.9356 33.5311 45.6359 -Verdana_Bold.ttf 5 P 35.4165 42.3111 45 9 -1.5786 34.8011 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 46 ; 10.3842 16.5721 42.6188 -Verdana_Bold.ttf 5 P 35.4165 42.3111 47 D 0.1368 40.2643 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 48 L 0.3658 30.5721 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 49 y 10.8574 35.6325 43.5196 -Verdana_Bold.ttf 5 P 35.4165 42.3111 50 ‘ -2.0257 15.2120 16.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 51 \ -2.1513 31.6359 53.7390 -Verdana_Bold.ttf 5 P 35.4165 42.3111 52 R -0.0068 41.1651 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 53 < 4.1928 38.0564 38.0564 -Verdana_Bold.ttf 5 P 35.4165 42.3111 54 4 0.3254 37.2216 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 55 8 -1.3272 36.2291 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 56 0 -1.3375 35.0428 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 57 A -0.3239 43.5231 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 58 E 0.0180 30.7316 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 59 B -0.1827 36.1047 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 60 v 10.3931 35.6325 31.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 61 k -2.0681 34.5835 44.4239 -Verdana_Bold.ttf 5 P 35.4165 42.3111 62 J -0.1832 26.4804 43.5231 -Verdana_Bold.ttf 5 P 35.4165 42.3111 63 U 0.2590 38.0018 43.5231 -Verdana_Bold.ttf 5 P 35.4165 42.3111 64 j -2.1042 20.5270 56.0000 -Verdana_Bold.ttf 5 P 35.4165 42.3111 65 ( -2.4223 21.2683 56.0000 -Verdana_Bold.ttf 5 P 35.4165 42.3111 66 7 -0.1140 33.3716 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 67 § -0.9777 33.3731 54.7915 -Verdana_Bold.ttf 5 P 35.4165 42.3111 68 $ -2.4333 34.4240 55.1557 -Verdana_Bold.ttf 5 P 35.4165 42.3111 69 € -1.0030 38.7447 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 70 / -2.1675 31.6359 53.7390 -Verdana_Bold.ttf 5 P 35.4165 42.3111 71 C -1.1749 36.1047 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 72 * -2.1095 32.2547 29.2120 -Verdana_Bold.ttf 5 P 35.4165 42.3111 73 ” -2.1085 30.4239 16.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 74 ? -1.1904 28.4593 43.5231 -Verdana_Bold.ttf 5 P 35.4165 42.3111 75 { -2.2165 31.3248 55.6923 -Verdana_Bold.ttf 5 P 35.4165 42.3111 76 } -1.9824 31.3248 55.6923 -Verdana_Bold.ttf 5 P 35.4165 42.3111 77 , 31.3519 16.5721 21.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 78 I -0.0902 24.5157 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 79 ° -1.2870 24.0564 23.8404 -Verdana_Bold.ttf 5 P 35.4165 42.3111 80 K 0.0341 39.5761 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 81 H -0.2412 38.3656 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 82 q 9.4004 33.5311 44.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 83 & -1.3801 48.3675 44.7350 -Verdana_Bold.ttf 5 P 35.4165 42.3111 84 ’ -1.9972 15.2120 16.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 85 [ -2.1452 19.1555 55.6923 -Verdana_Bold.ttf 5 P 35.4165 42.3111 86 - 19.1002 21.9436 7.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 87 Y 0.2430 42.5237 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 88 Q -1.2173 43.9002 55.0992 -Verdana_Bold.ttf 5 P 35.4165 42.3111 89 " -1.9140 25.0523 16.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 90 ! -0.1096 11.4279 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 91 x 10.2594 36.6284 31.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 92 ) -2.2439 21.2683 56.0000 -Verdana_Bold.ttf 5 P 35.4165 42.3111 93 = 11.9779 36.4803 23.1556 -Verdana_Bold.ttf 5 P 35.4165 42.3111 94 + 4.2430 38.3675 38.3675 -Verdana_Bold.ttf 5 P 35.4165 42.3111 95 X -0.1349 42.3111 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 96 » 8.1935 35.2683 30.4239 -Verdana_Bold.ttf 5 P 35.4165 42.3111 97 ' -2.2586 9.8404 16.7316 -Verdana_Bold.ttf 5 P 35.4165 42.3111 98 ¢ 0.3400 30.9492 51.8404 -Verdana_Bold.ttf 5 P 35.4165 42.3111 99 Z -0.0147 35.7955 42.3111 -Verdana_Bold.ttf 5 P 35.4165 42.3111 100 > 4.2009 38.0564 38.0564 -Verdana_Bold.ttf 5 P 35.4165 42.3111 101 ® -0.8060 49.2683 49.2683 -Verdana_Bold.ttf 5 P 35.4165 42.3111 102 © -1.5743 49.2683 49.2683 -Verdana_Bold.ttf 5 P 35.4165 42.3111 103 ] -2.4041 19.1555 55.6923 -Verdana_Bold.ttf 5 P 35.4165 42.3111 104 é -5.3865 33.9082 48.9606 -Verdana_Bold.ttf 5 P 35.4165 42.3111 105 z 10.1125 29.7357 31.9436 -Verdana_Bold.ttf 5 P 35.4165 42.3111 106 _ 46.1629 41.6923 6.0564 -Verdana_Bold.ttf 5 P 35.4165 42.3111 107 ¥ -0.1204 38.9042 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 1 t -8.0608 24.2160 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 2 h -11.4101 32.3226 44.4239 -Verdana_Bold.ttf 6 o 35.1202 34.3675 3 a 0.3437 31.7954 34.3675 -Verdana_Bold.ttf 6 o 35.1202 34.3675 4 n -0.2028 32.3226 33.1555 -Verdana_Bold.ttf 6 o 35.1202 34.3675 5 P -9.5398 35.4165 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 6 o -0.0937 35.1202 34.3675 -Verdana_Bold.ttf 6 o 35.1202 34.3675 7 e 0.1440 33.9082 34.3675 -Verdana_Bold.ttf 6 o 35.1202 34.3675 8 : 0.7644 10.6752 31.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 9 r 1.1331 23.3151 31.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 10 l -11.3124 10.2160 44.4239 -Verdana_Bold.ttf 6 o 35.1202 34.3675 11 i -11.0749 10.2160 44.4239 -Verdana_Bold.ttf 6 o 35.1202 34.3675 12 1 -9.0344 28.7413 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 13 | -11.3526 8.4803 55.6923 -Verdana_Bold.ttf 6 o 35.1202 34.3675 14 N -9.1346 38.8363 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 15 f -11.2971 24.5271 44.4239 -Verdana_Bold.ttf 6 o 35.1202 34.3675 16 g -0.0065 33.5311 44.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 17 d -11.3500 33.5311 45.6359 -Verdana_Bold.ttf 6 o 35.1202 34.3675 18 W -9.0457 62.2208 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 19 s -0.1029 29.7391 34.3675 -Verdana_Bold.ttf 6 o 35.1202 34.3675 20 c -0.1556 29.6826 34.3675 -Verdana_Bold.ttf 6 o 35.1202 34.3675 21 u 1.0403 32.3226 33.1555 -Verdana_Bold.ttf 6 o 35.1202 34.3675 22 3 -10.3972 33.8052 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 23 ~ 4.0996 41.7840 19.3716 -Verdana_Bold.ttf 6 o 35.1202 34.3675 24 # -9.2046 41.8499 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 25 O -10.2217 43.9002 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 26 ` -14.5397 16.9477 11.2684 -Verdana_Bold.ttf 6 o 35.1202 34.3675 27 @ -10.4485 47.6808 50.1066 -Verdana_Bold.ttf 6 o 35.1202 34.3675 28 F -8.9663 30.2610 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 29 S -10.3935 36.6318 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 30 p -0.2440 33.5311 44.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 31 “ -11.4303 30.4239 16.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 32 % -10.4238 66.6496 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 33 £ -10.4416 33.7487 43.5231 -Verdana_Bold.ttf 6 o 35.1202 34.3675 34 . 22.0843 10.6752 11.2684 -Verdana_Bold.ttf 6 o 35.1202 34.3675 35 2 -10.4284 33.2780 43.5231 -Verdana_Bold.ttf 6 o 35.1202 34.3675 36 5 -9.0627 33.0639 43.5231 -Verdana_Bold.ttf 6 o 35.1202 34.3675 37 m 0.2681 52.4335 33.1555 -Verdana_Bold.ttf 6 o 35.1202 34.3675 38 V -8.9945 42.3111 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 39 6 -10.4114 34.8011 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 40 w 1.1199 54.7880 31.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 41 T -9.1007 37.2507 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 42 M -9.3181 44.7331 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 43 G -10.4797 40.2643 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 44 b -11.3054 33.5311 45.6359 -Verdana_Bold.ttf 6 o 35.1202 34.3675 45 9 -10.2334 34.8011 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 46 ; 1.0875 16.5721 42.6188 -Verdana_Bold.ttf 6 o 35.1202 34.3675 47 D -8.9409 40.2643 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 48 L -8.9977 30.5721 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 49 y 1.4724 35.6325 43.5196 -Verdana_Bold.ttf 6 o 35.1202 34.3675 50 ‘ -10.8297 15.2120 16.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 51 \ -10.8703 31.6359 53.7390 -Verdana_Bold.ttf 6 o 35.1202 34.3675 52 R -8.6704 41.1651 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 53 < -4.6717 38.0564 38.0564 -Verdana_Bold.ttf 6 o 35.1202 34.3675 54 4 -9.0399 37.2216 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 55 8 -10.1122 36.2291 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 56 0 -10.5334 35.0428 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 57 A -9.2527 43.5231 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 58 E -9.0652 30.7316 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 59 B -9.6780 36.1047 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 60 v 1.1159 35.6325 31.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 61 k -11.4526 34.5835 44.4239 -Verdana_Bold.ttf 6 o 35.1202 34.3675 62 J -9.5087 26.4804 43.5231 -Verdana_Bold.ttf 6 o 35.1202 34.3675 63 U -9.4198 38.0018 43.5231 -Verdana_Bold.ttf 6 o 35.1202 34.3675 64 j -11.2279 20.5270 56.0000 -Verdana_Bold.ttf 6 o 35.1202 34.3675 65 ( -11.2314 21.2683 56.0000 -Verdana_Bold.ttf 6 o 35.1202 34.3675 66 7 -9.1893 33.3716 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 67 § -10.6299 33.3731 54.7915 -Verdana_Bold.ttf 6 o 35.1202 34.3675 68 $ -12.1496 34.4240 55.1557 -Verdana_Bold.ttf 6 o 35.1202 34.3675 69 € -10.5417 38.7447 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 70 / -11.2296 31.6359 53.7390 -Verdana_Bold.ttf 6 o 35.1202 34.3675 71 C -10.5809 36.1047 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 72 * -11.3935 32.2547 29.2120 -Verdana_Bold.ttf 6 o 35.1202 34.3675 73 ” -11.1379 30.4239 16.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 74 ? -10.1891 28.4593 43.5231 -Verdana_Bold.ttf 6 o 35.1202 34.3675 75 { -11.1054 31.3248 55.6923 -Verdana_Bold.ttf 6 o 35.1202 34.3675 76 } -10.8490 31.3248 55.6923 -Verdana_Bold.ttf 6 o 35.1202 34.3675 77 , 21.9140 16.5721 21.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 78 I -8.8203 24.5157 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 79 ° -10.2523 24.0564 23.8404 -Verdana_Bold.ttf 6 o 35.1202 34.3675 80 K -9.1216 39.5761 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 81 H -9.1186 38.3656 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 82 q -0.1415 33.5311 44.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 83 & -10.3251 48.3675 44.7350 -Verdana_Bold.ttf 6 o 35.1202 34.3675 84 ’ -11.1716 15.2120 16.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 85 [ -11.4128 19.1555 55.6923 -Verdana_Bold.ttf 6 o 35.1202 34.3675 86 - 9.9262 21.9436 7.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 87 Y -9.1523 42.5237 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 88 Q -10.4013 43.9002 55.0992 -Verdana_Bold.ttf 6 o 35.1202 34.3675 89 " -11.1208 25.0523 16.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 90 ! -9.3851 11.4279 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 91 x 1.4253 36.6284 31.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 92 ) -11.0594 21.2683 56.0000 -Verdana_Bold.ttf 6 o 35.1202 34.3675 93 = 2.9963 36.4803 23.1556 -Verdana_Bold.ttf 6 o 35.1202 34.3675 94 + -4.7328 38.3675 38.3675 -Verdana_Bold.ttf 6 o 35.1202 34.3675 95 X -9.2050 42.3111 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 96 » -1.0475 35.2683 30.4239 -Verdana_Bold.ttf 6 o 35.1202 34.3675 97 ' -11.2996 9.8404 16.7316 -Verdana_Bold.ttf 6 o 35.1202 34.3675 98 ¢ -8.5615 30.9492 51.8404 -Verdana_Bold.ttf 6 o 35.1202 34.3675 99 Z -8.8943 35.7955 42.3111 -Verdana_Bold.ttf 6 o 35.1202 34.3675 100 > -4.8822 38.0564 38.0564 -Verdana_Bold.ttf 6 o 35.1202 34.3675 101 ® -10.6396 49.2683 49.2683 -Verdana_Bold.ttf 6 o 35.1202 34.3675 102 © -10.1366 49.2683 49.2683 -Verdana_Bold.ttf 6 o 35.1202 34.3675 103 ] -11.4104 19.1555 55.6923 -Verdana_Bold.ttf 6 o 35.1202 34.3675 104 é -14.6752 33.9082 48.9606 -Verdana_Bold.ttf 6 o 35.1202 34.3675 105 z 1.4196 29.7357 31.9436 -Verdana_Bold.ttf 6 o 35.1202 34.3675 106 _ 37.0056 41.6923 6.0564 -Verdana_Bold.ttf 6 o 35.1202 34.3675 107 ¥ -9.1634 38.9042 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 1 t -8.2155 24.2160 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 2 h -10.9168 32.3226 44.4239 -Verdana_Bold.ttf 7 e 33.9082 34.3675 3 a 0.1766 31.7954 34.3675 -Verdana_Bold.ttf 7 e 33.9082 34.3675 4 n 0.2461 32.3226 33.1555 -Verdana_Bold.ttf 7 e 33.9082 34.3675 5 P -9.0342 35.4165 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 6 o 0.2986 35.1202 34.3675 -Verdana_Bold.ttf 7 e 33.9082 34.3675 7 e 0.0836 33.9082 34.3675 -Verdana_Bold.ttf 7 e 33.9082 34.3675 8 : 1.2457 10.6752 31.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 9 r 1.2512 23.3151 31.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 10 l -11.4292 10.2160 44.4239 -Verdana_Bold.ttf 7 e 33.9082 34.3675 11 i -11.8151 10.2160 44.4239 -Verdana_Bold.ttf 7 e 33.9082 34.3675 12 1 -8.9575 28.7413 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 13 | -11.0497 8.4803 55.6923 -Verdana_Bold.ttf 7 e 33.9082 34.3675 14 N -8.9735 38.8363 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 15 f -11.1445 24.5271 44.4239 -Verdana_Bold.ttf 7 e 33.9082 34.3675 16 g 0.2013 33.5311 44.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 17 d -11.1574 33.5311 45.6359 -Verdana_Bold.ttf 7 e 33.9082 34.3675 18 W -9.0573 62.2208 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 19 s 0.0512 29.7391 34.3675 -Verdana_Bold.ttf 7 e 33.9082 34.3675 20 c -0.0829 29.6826 34.3675 -Verdana_Bold.ttf 7 e 33.9082 34.3675 21 u 0.9952 32.3226 33.1555 -Verdana_Bold.ttf 7 e 33.9082 34.3675 22 3 -10.0023 33.8052 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 23 ~ 4.1045 41.7840 19.3716 -Verdana_Bold.ttf 7 e 33.9082 34.3675 24 # -9.5269 41.8499 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 25 O -10.5954 43.9002 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 26 ` -14.4306 16.9477 11.2684 -Verdana_Bold.ttf 7 e 33.9082 34.3675 27 @ -10.4459 47.6808 50.1066 -Verdana_Bold.ttf 7 e 33.9082 34.3675 28 F -8.9594 30.2610 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 29 S -10.3215 36.6318 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 30 p 0.2063 33.5311 44.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 31 “ -11.1377 30.4239 16.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 32 % -10.2758 66.6496 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 33 £ -10.4526 33.7487 43.5231 -Verdana_Bold.ttf 7 e 33.9082 34.3675 34 . 22.0087 10.6752 11.2684 -Verdana_Bold.ttf 7 e 33.9082 34.3675 35 2 -10.2802 33.2780 43.5231 -Verdana_Bold.ttf 7 e 33.9082 34.3675 36 5 -9.2667 33.0639 43.5231 -Verdana_Bold.ttf 7 e 33.9082 34.3675 37 m 0.0328 52.4335 33.1555 -Verdana_Bold.ttf 7 e 33.9082 34.3675 38 V -9.2050 42.3111 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 39 6 -10.6093 34.8011 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 40 w 1.3062 54.7880 31.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 41 T -9.1045 37.2507 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 42 M -9.3504 44.7331 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 43 G -10.3216 40.2643 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 44 b -11.3877 33.5311 45.6359 -Verdana_Bold.ttf 7 e 33.9082 34.3675 45 9 -10.4522 34.8011 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 46 ; 1.0280 16.5721 42.6188 -Verdana_Bold.ttf 7 e 33.9082 34.3675 47 D -9.6635 40.2643 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 48 L -8.9365 30.5721 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 49 y 1.3132 35.6325 43.5196 -Verdana_Bold.ttf 7 e 33.9082 34.3675 50 ‘ -11.2129 15.2120 16.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 51 \ -11.2754 31.6359 53.7390 -Verdana_Bold.ttf 7 e 33.9082 34.3675 52 R -9.3282 41.1651 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 53 < -4.8721 38.0564 38.0564 -Verdana_Bold.ttf 7 e 33.9082 34.3675 54 4 -9.2861 37.2216 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 55 8 -10.3363 36.2291 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 56 0 -10.5755 35.0428 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 57 A -9.1098 43.5231 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 58 E -9.0815 30.7316 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 59 B -9.3113 36.1047 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 60 v 1.2490 35.6325 31.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 61 k -11.1987 34.5835 44.4239 -Verdana_Bold.ttf 7 e 33.9082 34.3675 62 J -9.4031 26.4804 43.5231 -Verdana_Bold.ttf 7 e 33.9082 34.3675 63 U -9.0890 38.0018 43.5231 -Verdana_Bold.ttf 7 e 33.9082 34.3675 64 j -11.2536 20.5270 56.0000 -Verdana_Bold.ttf 7 e 33.9082 34.3675 65 ( -11.1563 21.2683 56.0000 -Verdana_Bold.ttf 7 e 33.9082 34.3675 66 7 -9.4207 33.3716 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 67 § -10.5996 33.3731 54.7915 -Verdana_Bold.ttf 7 e 33.9082 34.3675 68 $ -11.8567 34.4240 55.1557 -Verdana_Bold.ttf 7 e 33.9082 34.3675 69 € -10.4905 38.7447 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 70 / -11.1814 31.6359 53.7390 -Verdana_Bold.ttf 7 e 33.9082 34.3675 71 C -10.1053 36.1047 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 72 * -11.2378 32.2547 29.2120 -Verdana_Bold.ttf 7 e 33.9082 34.3675 73 ” -11.5472 30.4239 16.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 74 ? -10.6742 28.4593 43.5231 -Verdana_Bold.ttf 7 e 33.9082 34.3675 75 { -11.2405 31.3248 55.6923 -Verdana_Bold.ttf 7 e 33.9082 34.3675 76 } -11.2581 31.3248 55.6923 -Verdana_Bold.ttf 7 e 33.9082 34.3675 77 , 22.0418 16.5721 21.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 78 I -9.1280 24.5157 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 79 ° -10.0811 24.0564 23.8404 -Verdana_Bold.ttf 7 e 33.9082 34.3675 80 K -9.6177 39.5761 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 81 H -9.0725 38.3656 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 82 q -0.1572 33.5311 44.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 83 & -10.5294 48.3675 44.7350 -Verdana_Bold.ttf 7 e 33.9082 34.3675 84 ’ -11.4396 15.2120 16.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 85 [ -11.4310 19.1555 55.6923 -Verdana_Bold.ttf 7 e 33.9082 34.3675 86 - 10.1752 21.9436 7.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 87 Y -9.3410 42.5237 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 88 Q -10.4531 43.9002 55.0992 -Verdana_Bold.ttf 7 e 33.9082 34.3675 89 " -11.0739 25.0523 16.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 90 ! -9.1176 11.4279 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 91 x 1.3940 36.6284 31.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 92 ) -11.0815 21.2683 56.0000 -Verdana_Bold.ttf 7 e 33.9082 34.3675 93 = 2.5057 36.4803 23.1556 -Verdana_Bold.ttf 7 e 33.9082 34.3675 94 + -4.7680 38.3675 38.3675 -Verdana_Bold.ttf 7 e 33.9082 34.3675 95 X -8.9850 42.3111 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 96 » -0.9794 35.2683 30.4239 -Verdana_Bold.ttf 7 e 33.9082 34.3675 97 ' -11.1602 9.8404 16.7316 -Verdana_Bold.ttf 7 e 33.9082 34.3675 98 ¢ -8.6325 30.9492 51.8404 -Verdana_Bold.ttf 7 e 33.9082 34.3675 99 Z -8.7928 35.7955 42.3111 -Verdana_Bold.ttf 7 e 33.9082 34.3675 100 > -4.7006 38.0564 38.0564 -Verdana_Bold.ttf 7 e 33.9082 34.3675 101 ® -10.5113 49.2683 49.2683 -Verdana_Bold.ttf 7 e 33.9082 34.3675 102 © -10.2548 49.2683 49.2683 -Verdana_Bold.ttf 7 e 33.9082 34.3675 103 ] -11.0641 19.1555 55.6923 -Verdana_Bold.ttf 7 e 33.9082 34.3675 104 é -14.5435 33.9082 48.9606 -Verdana_Bold.ttf 7 e 33.9082 34.3675 105 z 1.4888 29.7357 31.9436 -Verdana_Bold.ttf 7 e 33.9082 34.3675 106 _ 37.1610 41.6923 6.0564 -Verdana_Bold.ttf 7 e 33.9082 34.3675 107 ¥ -9.2117 38.9042 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 1 t -8.8994 24.2160 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 2 h -12.5308 32.3226 44.4239 -Verdana_Bold.ttf 8 : 10.6752 31.9436 3 a -1.1749 31.7954 34.3675 -Verdana_Bold.ttf 8 : 10.6752 31.9436 4 n -1.2120 32.3226 33.1555 -Verdana_Bold.ttf 8 : 10.6752 31.9436 5 P -10.1927 35.4165 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 6 o -1.1109 35.1202 34.3675 -Verdana_Bold.ttf 8 : 10.6752 31.9436 7 e -1.3404 33.9082 34.3675 -Verdana_Bold.ttf 8 : 10.6752 31.9436 8 : 0.2023 10.6752 31.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 9 r 0.1494 23.3151 31.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 10 l -12.5083 10.2160 44.4239 -Verdana_Bold.ttf 8 : 10.6752 31.9436 11 i -12.7617 10.2160 44.4239 -Verdana_Bold.ttf 8 : 10.6752 31.9436 12 1 -10.0597 28.7413 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 13 | -12.7049 8.4803 55.6923 -Verdana_Bold.ttf 8 : 10.6752 31.9436 14 N -10.5478 38.8363 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 15 f -12.6080 24.5271 44.4239 -Verdana_Bold.ttf 8 : 10.6752 31.9436 16 g -1.0165 33.5311 44.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 17 d -12.8762 33.5311 45.6359 -Verdana_Bold.ttf 8 : 10.6752 31.9436 18 W -10.3743 62.2208 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 19 s -0.8470 29.7391 34.3675 -Verdana_Bold.ttf 8 : 10.6752 31.9436 20 c -0.9474 29.6826 34.3675 -Verdana_Bold.ttf 8 : 10.6752 31.9436 21 u 0.0597 32.3226 33.1555 -Verdana_Bold.ttf 8 : 10.6752 31.9436 22 3 -11.5237 33.8052 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 23 ~ 2.7855 41.7840 19.3716 -Verdana_Bold.ttf 8 : 10.6752 31.9436 24 # -10.6289 41.8499 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 25 O -11.5338 43.9002 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 26 ` -15.6392 16.9477 11.2684 -Verdana_Bold.ttf 8 : 10.6752 31.9436 27 @ -11.5817 47.6808 50.1066 -Verdana_Bold.ttf 8 : 10.6752 31.9436 28 F -10.4289 30.2610 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 29 S -11.9441 36.6318 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 30 p -1.3335 33.5311 44.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 31 “ -12.4804 30.4239 16.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 32 % -11.8513 66.6496 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 33 £ -11.5860 33.7487 43.5231 -Verdana_Bold.ttf 8 : 10.6752 31.9436 34 . 20.6233 10.6752 11.2684 -Verdana_Bold.ttf 8 : 10.6752 31.9436 35 2 -11.6339 33.2780 43.5231 -Verdana_Bold.ttf 8 : 10.6752 31.9436 36 5 -10.3265 33.0639 43.5231 -Verdana_Bold.ttf 8 : 10.6752 31.9436 37 m -1.2047 52.4335 33.1555 -Verdana_Bold.ttf 8 : 10.6752 31.9436 38 V -10.2412 42.3111 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 39 6 -11.5043 34.8011 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 40 w -0.1908 54.7880 31.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 41 T -10.2533 37.2507 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 42 M -10.1585 44.7331 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 43 G -11.4114 40.2643 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 44 b -12.6665 33.5311 45.6359 -Verdana_Bold.ttf 8 : 10.6752 31.9436 45 9 -11.4838 34.8011 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 46 ; 0.3516 16.5721 42.6188 -Verdana_Bold.ttf 8 : 10.6752 31.9436 47 D -10.3601 40.2643 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 48 L -10.3844 30.5721 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 49 y -0.0990 35.6325 43.5196 -Verdana_Bold.ttf 8 : 10.6752 31.9436 50 ‘ -12.4433 15.2120 16.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 51 \ -12.6746 31.6359 53.7390 -Verdana_Bold.ttf 8 : 10.6752 31.9436 52 R -10.3842 41.1651 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 53 < -5.8586 38.0564 38.0564 -Verdana_Bold.ttf 8 : 10.6752 31.9436 54 4 -10.2536 37.2216 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 55 8 -11.6567 36.2291 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 56 0 -11.4950 35.0428 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 57 A -10.5482 43.5231 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 58 E -10.5870 30.7316 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 59 B -10.4223 36.1047 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 60 v 0.0755 35.6325 31.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 61 k -12.7015 34.5835 44.4239 -Verdana_Bold.ttf 8 : 10.6752 31.9436 62 J -10.4147 26.4804 43.5231 -Verdana_Bold.ttf 8 : 10.6752 31.9436 63 U -10.2610 38.0018 43.5231 -Verdana_Bold.ttf 8 : 10.6752 31.9436 64 j -12.3861 20.5270 56.0000 -Verdana_Bold.ttf 8 : 10.6752 31.9436 65 ( -12.5271 21.2683 56.0000 -Verdana_Bold.ttf 8 : 10.6752 31.9436 66 7 -10.3354 33.3716 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 67 § -11.7681 33.3731 54.7915 -Verdana_Bold.ttf 8 : 10.6752 31.9436 68 $ -13.1100 34.4240 55.1557 -Verdana_Bold.ttf 8 : 10.6752 31.9436 69 € -11.6659 38.7447 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 70 / -12.6987 31.6359 53.7390 -Verdana_Bold.ttf 8 : 10.6752 31.9436 71 C -11.6881 36.1047 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 72 * -12.3443 32.2547 29.2120 -Verdana_Bold.ttf 8 : 10.6752 31.9436 73 ” -12.3396 30.4239 16.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 74 ? -11.6614 28.4593 43.5231 -Verdana_Bold.ttf 8 : 10.6752 31.9436 75 { -12.5247 31.3248 55.6923 -Verdana_Bold.ttf 8 : 10.6752 31.9436 76 } -12.5270 31.3248 55.6923 -Verdana_Bold.ttf 8 : 10.6752 31.9436 77 , 20.4786 16.5721 21.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 78 I -10.3330 24.5157 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 79 ° -11.5795 24.0564 23.8404 -Verdana_Bold.ttf 8 : 10.6752 31.9436 80 K -10.4626 39.5761 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 81 H -10.4368 38.3656 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 82 q -1.1971 33.5311 44.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 83 & -11.6611 48.3675 44.7350 -Verdana_Bold.ttf 8 : 10.6752 31.9436 84 ’ -12.6099 15.2120 16.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 85 [ -12.3446 19.1555 55.6923 -Verdana_Bold.ttf 8 : 10.6752 31.9436 86 - 8.9759 21.9436 7.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 87 Y -10.3328 42.5237 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 88 Q -11.6742 43.9002 55.0992 -Verdana_Bold.ttf 8 : 10.6752 31.9436 89 " -12.2721 25.0523 16.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 90 ! -10.5561 11.4279 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 91 x 0.0943 36.6284 31.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 92 ) -12.3005 21.2683 56.0000 -Verdana_Bold.ttf 8 : 10.6752 31.9436 93 = 1.7373 36.4803 23.1556 -Verdana_Bold.ttf 8 : 10.6752 31.9436 94 + -5.7621 38.3675 38.3675 -Verdana_Bold.ttf 8 : 10.6752 31.9436 95 X -10.4579 42.3111 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 96 » -2.6487 35.2683 30.4239 -Verdana_Bold.ttf 8 : 10.6752 31.9436 97 ' -12.2910 9.8404 16.7316 -Verdana_Bold.ttf 8 : 10.6752 31.9436 98 ¢ -10.1021 30.9492 51.8404 -Verdana_Bold.ttf 8 : 10.6752 31.9436 99 Z -10.3589 35.7955 42.3111 -Verdana_Bold.ttf 8 : 10.6752 31.9436 100 > -6.1680 38.0564 38.0564 -Verdana_Bold.ttf 8 : 10.6752 31.9436 101 ® -11.5262 49.2683 49.2683 -Verdana_Bold.ttf 8 : 10.6752 31.9436 102 © -11.5811 49.2683 49.2683 -Verdana_Bold.ttf 8 : 10.6752 31.9436 103 ] -12.3886 19.1555 55.6923 -Verdana_Bold.ttf 8 : 10.6752 31.9436 104 é -15.6331 33.9082 48.9606 -Verdana_Bold.ttf 8 : 10.6752 31.9436 105 z 0.1881 29.7357 31.9436 -Verdana_Bold.ttf 8 : 10.6752 31.9436 106 _ 35.9215 41.6923 6.0564 -Verdana_Bold.ttf 8 : 10.6752 31.9436 107 ¥ -10.4217 38.9042 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 1 t -9.2844 24.2160 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 2 h -12.4318 32.3226 44.4239 -Verdana_Bold.ttf 9 r 23.3151 31.9436 3 a -1.2280 31.7954 34.3675 -Verdana_Bold.ttf 9 r 23.3151 31.9436 4 n -1.2296 32.3226 33.1555 -Verdana_Bold.ttf 9 r 23.3151 31.9436 5 P -9.9544 35.4165 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 6 o -1.2190 35.1202 34.3675 -Verdana_Bold.ttf 9 r 23.3151 31.9436 7 e -1.2580 33.9082 34.3675 -Verdana_Bold.ttf 9 r 23.3151 31.9436 8 : -0.0428 10.6752 31.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 9 r -0.1960 23.3151 31.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 10 l -12.7759 10.2160 44.4239 -Verdana_Bold.ttf 9 r 23.3151 31.9436 11 i -12.5199 10.2160 44.4239 -Verdana_Bold.ttf 9 r 23.3151 31.9436 12 1 -10.3132 28.7413 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 13 | -12.4804 8.4803 55.6923 -Verdana_Bold.ttf 9 r 23.3151 31.9436 14 N -10.6698 38.8363 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 15 f -12.5562 24.5271 44.4239 -Verdana_Bold.ttf 9 r 23.3151 31.9436 16 g -0.8540 33.5311 44.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 17 d -12.1651 33.5311 45.6359 -Verdana_Bold.ttf 9 r 23.3151 31.9436 18 W -10.5247 62.2208 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 19 s -1.0179 29.7391 34.3675 -Verdana_Bold.ttf 9 r 23.3151 31.9436 20 c -1.3494 29.6826 34.3675 -Verdana_Bold.ttf 9 r 23.3151 31.9436 21 u 0.1759 32.3226 33.1555 -Verdana_Bold.ttf 9 r 23.3151 31.9436 22 3 -11.7025 33.8052 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 23 ~ 2.6011 41.7840 19.3716 -Verdana_Bold.ttf 9 r 23.3151 31.9436 24 # -10.0893 41.8499 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 25 O -11.7489 43.9002 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 26 ` -15.7267 16.9477 11.2684 -Verdana_Bold.ttf 9 r 23.3151 31.9436 27 @ -11.4529 47.6808 50.1066 -Verdana_Bold.ttf 9 r 23.3151 31.9436 28 F -10.1398 30.2610 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 29 S -11.8034 36.6318 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 30 p -1.1178 33.5311 44.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 31 “ -12.4223 30.4239 16.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 32 % -11.5367 66.6496 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 33 £ -11.4605 33.7487 43.5231 -Verdana_Bold.ttf 9 r 23.3151 31.9436 34 . 20.4114 10.6752 11.2684 -Verdana_Bold.ttf 9 r 23.3151 31.9436 35 2 -11.8950 33.2780 43.5231 -Verdana_Bold.ttf 9 r 23.3151 31.9436 36 5 -10.3589 33.0639 43.5231 -Verdana_Bold.ttf 9 r 23.3151 31.9436 37 m -1.0218 52.4335 33.1555 -Verdana_Bold.ttf 9 r 23.3151 31.9436 38 V -10.4722 42.3111 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 39 6 -11.6659 34.8011 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 40 w -0.1263 54.7880 31.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 41 T -10.3636 37.2507 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 42 M -10.3574 44.7331 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 43 G -11.5842 40.2643 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 44 b -12.5754 33.5311 45.6359 -Verdana_Bold.ttf 9 r 23.3151 31.9436 45 9 -11.3888 34.8011 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 46 ; -0.1886 16.5721 42.6188 -Verdana_Bold.ttf 9 r 23.3151 31.9436 47 D -10.7205 40.2643 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 48 L -10.3628 30.5721 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 49 y 0.0230 35.6325 43.5196 -Verdana_Bold.ttf 9 r 23.3151 31.9436 50 ‘ -12.5582 15.2120 16.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 51 \ -12.2774 31.6359 53.7390 -Verdana_Bold.ttf 9 r 23.3151 31.9436 52 R -10.5056 41.1651 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 53 < -6.2975 38.0564 38.0564 -Verdana_Bold.ttf 9 r 23.3151 31.9436 54 4 -10.3884 37.2216 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 55 8 -11.5017 36.2291 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 56 0 -11.5675 35.0428 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 57 A -10.0883 43.5231 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 58 E -10.4695 30.7316 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 59 B -10.0352 36.1047 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 60 v -0.2412 35.6325 31.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 61 k -12.2136 34.5835 44.4239 -Verdana_Bold.ttf 9 r 23.3151 31.9436 62 J -10.3916 26.4804 43.5231 -Verdana_Bold.ttf 9 r 23.3151 31.9436 63 U -10.3661 38.0018 43.5231 -Verdana_Bold.ttf 9 r 23.3151 31.9436 64 j -12.5213 20.5270 56.0000 -Verdana_Bold.ttf 9 r 23.3151 31.9436 65 ( -12.4585 21.2683 56.0000 -Verdana_Bold.ttf 9 r 23.3151 31.9436 66 7 -10.5126 33.3716 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 67 § -11.6476 33.3731 54.7915 -Verdana_Bold.ttf 9 r 23.3151 31.9436 68 $ -13.1807 34.4240 55.1557 -Verdana_Bold.ttf 9 r 23.3151 31.9436 69 € -11.4925 38.7447 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 70 / -12.6265 31.6359 53.7390 -Verdana_Bold.ttf 9 r 23.3151 31.9436 71 C -11.5943 36.1047 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 72 * -12.1474 32.2547 29.2120 -Verdana_Bold.ttf 9 r 23.3151 31.9436 73 ” -12.2083 30.4239 16.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 74 ? -11.6771 28.4593 43.5231 -Verdana_Bold.ttf 9 r 23.3151 31.9436 75 { -12.3078 31.3248 55.6923 -Verdana_Bold.ttf 9 r 23.3151 31.9436 76 } -12.6643 31.3248 55.6923 -Verdana_Bold.ttf 9 r 23.3151 31.9436 77 , 20.8257 16.5721 21.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 78 I -10.0994 24.5157 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 79 ° -11.6306 24.0564 23.8404 -Verdana_Bold.ttf 9 r 23.3151 31.9436 80 K -10.8225 39.5761 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 81 H -10.2537 38.3656 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 82 q -0.9881 33.5311 44.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 83 & -11.6503 48.3675 44.7350 -Verdana_Bold.ttf 9 r 23.3151 31.9436 84 ’ -12.5213 15.2120 16.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 85 [ -12.3853 19.1555 55.6923 -Verdana_Bold.ttf 9 r 23.3151 31.9436 86 - 8.9451 21.9436 7.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 87 Y -10.3124 42.5237 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 88 Q -11.5675 43.9002 55.0992 -Verdana_Bold.ttf 9 r 23.3151 31.9436 89 " -12.6557 25.0523 16.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 90 ! -10.4050 11.4279 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 91 x -0.0073 36.6284 31.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 92 ) -12.3059 21.2683 56.0000 -Verdana_Bold.ttf 9 r 23.3151 31.9436 93 = 1.6361 36.4803 23.1556 -Verdana_Bold.ttf 9 r 23.3151 31.9436 94 + -5.8235 38.3675 38.3675 -Verdana_Bold.ttf 9 r 23.3151 31.9436 95 X -10.2416 42.3111 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 96 » -2.2610 35.2683 30.4239 -Verdana_Bold.ttf 9 r 23.3151 31.9436 97 ' -12.3306 9.8404 16.7316 -Verdana_Bold.ttf 9 r 23.3151 31.9436 98 ¢ -10.0531 30.9492 51.8404 -Verdana_Bold.ttf 9 r 23.3151 31.9436 99 Z -10.5328 35.7955 42.3111 -Verdana_Bold.ttf 9 r 23.3151 31.9436 100 > -5.7172 38.0564 38.0564 -Verdana_Bold.ttf 9 r 23.3151 31.9436 101 ® -11.6980 49.2683 49.2683 -Verdana_Bold.ttf 9 r 23.3151 31.9436 102 © -11.5425 49.2683 49.2683 -Verdana_Bold.ttf 9 r 23.3151 31.9436 103 ] -12.4260 19.1555 55.6923 -Verdana_Bold.ttf 9 r 23.3151 31.9436 104 é -15.7372 33.9082 48.9606 -Verdana_Bold.ttf 9 r 23.3151 31.9436 105 z 0.0535 29.7357 31.9436 -Verdana_Bold.ttf 9 r 23.3151 31.9436 106 _ 36.0658 41.6923 6.0564 -Verdana_Bold.ttf 9 r 23.3151 31.9436 107 ¥ -10.4155 38.9042 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 1 t 3.4028 24.2160 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 2 h -0.1590 32.3226 44.4239 -Verdana_Bold.ttf 10 l 10.2160 44.4239 3 a 11.0330 31.7954 34.3675 -Verdana_Bold.ttf 10 l 10.2160 44.4239 4 n 11.5077 32.3226 33.1555 -Verdana_Bold.ttf 10 l 10.2160 44.4239 5 P 1.9519 35.4165 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 6 o 11.1788 35.1202 34.3675 -Verdana_Bold.ttf 10 l 10.2160 44.4239 7 e 11.2645 33.9082 34.3675 -Verdana_Bold.ttf 10 l 10.2160 44.4239 8 : 12.6652 10.6752 31.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 9 r 12.3108 23.3151 31.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 10 l -0.0104 10.2160 44.4239 -Verdana_Bold.ttf 10 l 10.2160 44.4239 11 i -0.0128 10.2160 44.4239 -Verdana_Bold.ttf 10 l 10.2160 44.4239 12 1 2.0297 28.7413 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 13 | -0.1037 8.4803 55.6923 -Verdana_Bold.ttf 10 l 10.2160 44.4239 14 N 2.2194 38.8363 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 15 f 0.2346 24.5271 44.4239 -Verdana_Bold.ttf 10 l 10.2160 44.4239 16 g 11.3587 33.5311 44.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 17 d -0.0943 33.5311 45.6359 -Verdana_Bold.ttf 10 l 10.2160 44.4239 18 W 2.0077 62.2208 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 19 s 11.3801 29.7391 34.3675 -Verdana_Bold.ttf 10 l 10.2160 44.4239 20 c 11.4033 29.6826 34.3675 -Verdana_Bold.ttf 10 l 10.2160 44.4239 21 u 12.4044 32.3226 33.1555 -Verdana_Bold.ttf 10 l 10.2160 44.4239 22 3 0.9508 33.8052 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 23 ~ 15.4120 41.7840 19.3716 -Verdana_Bold.ttf 10 l 10.2160 44.4239 24 # 2.3434 41.8499 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 25 O 1.1765 43.9002 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 26 ` -3.4501 16.9477 11.2684 -Verdana_Bold.ttf 10 l 10.2160 44.4239 27 @ 0.7310 47.6808 50.1066 -Verdana_Bold.ttf 10 l 10.2160 44.4239 28 F 2.0534 30.2610 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 29 S 0.9002 36.6318 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 30 p 11.2709 33.5311 44.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 31 “ 0.0809 30.4239 16.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 32 % 0.8955 66.6496 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 33 £ 1.0922 33.7487 43.5231 -Verdana_Bold.ttf 10 l 10.2160 44.4239 34 . 33.2186 10.6752 11.2684 -Verdana_Bold.ttf 10 l 10.2160 44.4239 35 2 0.8515 33.2780 43.5231 -Verdana_Bold.ttf 10 l 10.2160 44.4239 36 5 2.1873 33.0639 43.5231 -Verdana_Bold.ttf 10 l 10.2160 44.4239 37 m 11.3184 52.4335 33.1555 -Verdana_Bold.ttf 10 l 10.2160 44.4239 38 V 1.9902 42.3111 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 39 6 0.7867 34.8011 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 40 w 12.5026 54.7880 31.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 41 T 2.0904 37.2507 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 42 M 1.9060 44.7331 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 43 G 1.1751 40.2643 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 44 b 0.2325 33.5311 45.6359 -Verdana_Bold.ttf 10 l 10.2160 44.4239 45 9 0.9008 34.8011 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 46 ; 12.4175 16.5721 42.6188 -Verdana_Bold.ttf 10 l 10.2160 44.4239 47 D 1.7457 40.2643 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 48 L 2.2751 30.5721 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 49 y 12.6067 35.6325 43.5196 -Verdana_Bold.ttf 10 l 10.2160 44.4239 50 ‘ 0.1658 15.2120 16.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 51 \ -0.1288 31.6359 53.7390 -Verdana_Bold.ttf 10 l 10.2160 44.4239 52 R 2.2032 41.1651 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 53 < 6.2926 38.0564 38.0564 -Verdana_Bold.ttf 10 l 10.2160 44.4239 54 4 2.1548 37.2216 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 55 8 0.7336 36.2291 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 56 0 0.8268 35.0428 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 57 A 2.3029 43.5231 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 58 E 1.9111 30.7316 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 59 B 2.3910 36.1047 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 60 v 12.6293 35.6325 31.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 61 k -0.0943 34.5835 44.4239 -Verdana_Bold.ttf 10 l 10.2160 44.4239 62 J 2.0628 26.4804 43.5231 -Verdana_Bold.ttf 10 l 10.2160 44.4239 63 U 2.2268 38.0018 43.5231 -Verdana_Bold.ttf 10 l 10.2160 44.4239 64 j -0.0706 20.5270 56.0000 -Verdana_Bold.ttf 10 l 10.2160 44.4239 65 ( -0.0255 21.2683 56.0000 -Verdana_Bold.ttf 10 l 10.2160 44.4239 66 7 2.0387 33.3716 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 67 § 0.7618 33.3731 54.7915 -Verdana_Bold.ttf 10 l 10.2160 44.4239 68 $ -0.6354 34.4240 55.1557 -Verdana_Bold.ttf 10 l 10.2160 44.4239 69 € 0.7227 38.7447 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 70 / 0.0292 31.6359 53.7390 -Verdana_Bold.ttf 10 l 10.2160 44.4239 71 C 0.8292 36.1047 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 72 * 0.0202 32.2547 29.2120 -Verdana_Bold.ttf 10 l 10.2160 44.4239 73 ” -0.0054 30.4239 16.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 74 ? 0.8008 28.4593 43.5231 -Verdana_Bold.ttf 10 l 10.2160 44.4239 75 { -0.1374 31.3248 55.6923 -Verdana_Bold.ttf 10 l 10.2160 44.4239 76 } 0.2702 31.3248 55.6923 -Verdana_Bold.ttf 10 l 10.2160 44.4239 77 , 33.3037 16.5721 21.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 78 I 2.1248 24.5157 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 79 ° 0.6371 24.0564 23.8404 -Verdana_Bold.ttf 10 l 10.2160 44.4239 80 K 1.8581 39.5761 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 81 H 2.1647 38.3656 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 82 q 11.1730 33.5311 44.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 83 & 0.9386 48.3675 44.7350 -Verdana_Bold.ttf 10 l 10.2160 44.4239 84 ’ -0.0019 15.2120 16.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 85 [ -0.0025 19.1555 55.6923 -Verdana_Bold.ttf 10 l 10.2160 44.4239 86 - 21.2240 21.9436 7.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 87 Y 2.3029 42.5237 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 88 Q 1.0166 43.9002 55.0992 -Verdana_Bold.ttf 10 l 10.2160 44.4239 89 " -0.1893 25.0523 16.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 90 ! 2.3136 11.4279 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 91 x 12.3915 36.6284 31.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 92 ) -0.0661 21.2683 56.0000 -Verdana_Bold.ttf 10 l 10.2160 44.4239 93 = 14.0519 36.4803 23.1556 -Verdana_Bold.ttf 10 l 10.2160 44.4239 94 + 6.2611 38.3675 38.3675 -Verdana_Bold.ttf 10 l 10.2160 44.4239 95 X 2.2017 42.3111 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 96 » 9.9612 35.2683 30.4239 -Verdana_Bold.ttf 10 l 10.2160 44.4239 97 ' -0.1037 9.8404 16.7316 -Verdana_Bold.ttf 10 l 10.2160 44.4239 98 ¢ 2.4667 30.9492 51.8404 -Verdana_Bold.ttf 10 l 10.2160 44.4239 99 Z 1.9815 35.7955 42.3111 -Verdana_Bold.ttf 10 l 10.2160 44.4239 100 > 6.3008 38.0564 38.0564 -Verdana_Bold.ttf 10 l 10.2160 44.4239 101 ® 0.9042 49.2683 49.2683 -Verdana_Bold.ttf 10 l 10.2160 44.4239 102 © 1.0329 49.2683 49.2683 -Verdana_Bold.ttf 10 l 10.2160 44.4239 103 ] 0.0076 19.1555 55.6923 -Verdana_Bold.ttf 10 l 10.2160 44.4239 104 é -3.2527 33.9082 48.9606 -Verdana_Bold.ttf 10 l 10.2160 44.4239 105 z 12.3574 29.7357 31.9436 -Verdana_Bold.ttf 10 l 10.2160 44.4239 106 _ 48.1695 41.6923 6.0564 -Verdana_Bold.ttf 10 l 10.2160 44.4239 107 ¥ 2.1893 38.9042 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 1 t 3.2095 24.2160 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 2 h -0.0885 32.3226 44.4239 -Verdana_Bold.ttf 11 i 10.2160 44.4239 3 a 11.4232 31.7954 34.3675 -Verdana_Bold.ttf 11 i 10.2160 44.4239 4 n 10.9391 32.3226 33.1555 -Verdana_Bold.ttf 11 i 10.2160 44.4239 5 P 2.1508 35.4165 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 6 o 11.3494 35.1202 34.3675 -Verdana_Bold.ttf 11 i 10.2160 44.4239 7 e 11.0753 33.9082 34.3675 -Verdana_Bold.ttf 11 i 10.2160 44.4239 8 : 12.4466 10.6752 31.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 9 r 12.5322 23.3151 31.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 10 l 0.0210 10.2160 44.4239 -Verdana_Bold.ttf 11 i 10.2160 44.4239 11 i 0.0914 10.2160 44.4239 -Verdana_Bold.ttf 11 i 10.2160 44.4239 12 1 2.2931 28.7413 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 13 | -0.1212 8.4803 55.6923 -Verdana_Bold.ttf 11 i 10.2160 44.4239 14 N 2.0758 38.8363 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 15 f 0.0816 24.5271 44.4239 -Verdana_Bold.ttf 11 i 10.2160 44.4239 16 g 11.3503 33.5311 44.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 17 d -0.0424 33.5311 45.6359 -Verdana_Bold.ttf 11 i 10.2160 44.4239 18 W 2.1647 62.2208 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 19 s 10.9048 29.7391 34.3675 -Verdana_Bold.ttf 11 i 10.2160 44.4239 20 c 11.0499 29.6826 34.3675 -Verdana_Bold.ttf 11 i 10.2160 44.4239 21 u 12.1251 32.3226 33.1555 -Verdana_Bold.ttf 11 i 10.2160 44.4239 22 3 0.8928 33.8052 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 23 ~ 15.3698 41.7840 19.3716 -Verdana_Bold.ttf 11 i 10.2160 44.4239 24 # 2.0185 41.8499 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 25 O 0.7580 43.9002 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 26 ` -3.2359 16.9477 11.2684 -Verdana_Bold.ttf 11 i 10.2160 44.4239 27 @ 0.7361 47.6808 50.1066 -Verdana_Bold.ttf 11 i 10.2160 44.4239 28 F 2.1291 30.2610 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 29 S 0.7753 36.6318 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 30 p 10.9993 33.5311 44.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 31 “ -0.0202 30.4239 16.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 32 % 1.0788 66.6496 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 33 £ 0.8832 33.7487 43.5231 -Verdana_Bold.ttf 11 i 10.2160 44.4239 34 . 33.3887 10.6752 11.2684 -Verdana_Bold.ttf 11 i 10.2160 44.4239 35 2 0.8527 33.2780 43.5231 -Verdana_Bold.ttf 11 i 10.2160 44.4239 36 5 2.0556 33.0639 43.5231 -Verdana_Bold.ttf 11 i 10.2160 44.4239 37 m 11.2146 52.4335 33.1555 -Verdana_Bold.ttf 11 i 10.2160 44.4239 38 V 1.9364 42.3111 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 39 6 0.6831 34.8011 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 40 w 12.3421 54.7880 31.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 41 T 2.1190 37.2507 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 42 M 2.1144 44.7331 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 43 G 0.8490 40.2643 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 44 b 0.0996 33.5311 45.6359 -Verdana_Bold.ttf 11 i 10.2160 44.4239 45 9 0.9823 34.8011 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 46 ; 12.3915 16.5721 42.6188 -Verdana_Bold.ttf 11 i 10.2160 44.4239 47 D 2.2071 40.2643 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 48 L 2.0359 30.5721 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 49 y 12.7620 35.6325 43.5196 -Verdana_Bold.ttf 11 i 10.2160 44.4239 50 ‘ 0.1846 15.2120 16.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 51 \ -0.0015 31.6359 53.7390 -Verdana_Bold.ttf 11 i 10.2160 44.4239 52 R 1.8778 41.1651 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 53 < 6.3276 38.0564 38.0564 -Verdana_Bold.ttf 11 i 10.2160 44.4239 54 4 2.0083 37.2216 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 55 8 1.1348 36.2291 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 56 0 0.7270 35.0428 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 57 A 2.1330 43.5231 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 58 E 1.9523 30.7316 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 59 B 2.2079 36.1047 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 60 v 12.3544 35.6325 31.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 61 k -0.0798 34.5835 44.4239 -Verdana_Bold.ttf 11 i 10.2160 44.4239 62 J 2.0696 26.4804 43.5231 -Verdana_Bold.ttf 11 i 10.2160 44.4239 63 U 2.1403 38.0018 43.5231 -Verdana_Bold.ttf 11 i 10.2160 44.4239 64 j -0.1440 20.5270 56.0000 -Verdana_Bold.ttf 11 i 10.2160 44.4239 65 ( 0.1860 21.2683 56.0000 -Verdana_Bold.ttf 11 i 10.2160 44.4239 66 7 2.1470 33.3716 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 67 § 1.1366 33.3731 54.7915 -Verdana_Bold.ttf 11 i 10.2160 44.4239 68 $ -0.6369 34.4240 55.1557 -Verdana_Bold.ttf 11 i 10.2160 44.4239 69 € 0.9635 38.7447 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 70 / 0.0132 31.6359 53.7390 -Verdana_Bold.ttf 11 i 10.2160 44.4239 71 C 0.8286 36.1047 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 72 * -0.0366 32.2547 29.2120 -Verdana_Bold.ttf 11 i 10.2160 44.4239 73 ” -0.3728 30.4239 16.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 74 ? 0.9839 28.4593 43.5231 -Verdana_Bold.ttf 11 i 10.2160 44.4239 75 { 0.1501 31.3248 55.6923 -Verdana_Bold.ttf 11 i 10.2160 44.4239 76 } 0.0086 31.3248 55.6923 -Verdana_Bold.ttf 11 i 10.2160 44.4239 77 , 33.4174 16.5721 21.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 78 I 2.0152 24.5157 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 79 ° 1.0397 24.0564 23.8404 -Verdana_Bold.ttf 11 i 10.2160 44.4239 80 K 2.3406 39.5761 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 81 H 1.9299 38.3656 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 82 q 11.3088 33.5311 44.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 83 & 0.9008 48.3675 44.7350 -Verdana_Bold.ttf 11 i 10.2160 44.4239 84 ’ 0.0914 15.2120 16.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 85 [ 0.1375 19.1555 55.6923 -Verdana_Bold.ttf 11 i 10.2160 44.4239 86 - 21.1000 21.9436 7.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 87 Y 2.0275 42.5237 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 88 Q 1.0085 43.9002 55.0992 -Verdana_Bold.ttf 11 i 10.2160 44.4239 89 " -0.0925 25.0523 16.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 90 ! 2.3051 11.4279 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 91 x 12.4804 36.6284 31.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 92 ) -0.0695 21.2683 56.0000 -Verdana_Bold.ttf 11 i 10.2160 44.4239 93 = 13.8539 36.4803 23.1556 -Verdana_Bold.ttf 11 i 10.2160 44.4239 94 + 6.3245 38.3675 38.3675 -Verdana_Bold.ttf 11 i 10.2160 44.4239 95 X 2.0232 42.3111 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 96 » 10.1566 35.2683 30.4239 -Verdana_Bold.ttf 11 i 10.2160 44.4239 97 ' -0.0870 9.8404 16.7316 -Verdana_Bold.ttf 11 i 10.2160 44.4239 98 ¢ 2.4449 30.9492 51.8404 -Verdana_Bold.ttf 11 i 10.2160 44.4239 99 Z 2.2531 35.7955 42.3111 -Verdana_Bold.ttf 11 i 10.2160 44.4239 100 > 6.2428 38.0564 38.0564 -Verdana_Bold.ttf 11 i 10.2160 44.4239 101 ® 0.3920 49.2683 49.2683 -Verdana_Bold.ttf 11 i 10.2160 44.4239 102 © 0.7274 49.2683 49.2683 -Verdana_Bold.ttf 11 i 10.2160 44.4239 103 ] 0.0917 19.1555 55.6923 -Verdana_Bold.ttf 11 i 10.2160 44.4239 104 é -3.3766 33.9082 48.9606 -Verdana_Bold.ttf 11 i 10.2160 44.4239 105 z 12.7470 29.7357 31.9436 -Verdana_Bold.ttf 11 i 10.2160 44.4239 106 _ 48.6769 41.6923 6.0564 -Verdana_Bold.ttf 11 i 10.2160 44.4239 107 ¥ 2.1153 38.9042 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 1 t 1.2508 24.2160 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 2 h -2.0563 32.3226 44.4239 -Verdana_Bold.ttf 12 1 28.7413 42.3111 3 a 8.8680 31.7954 34.3675 -Verdana_Bold.ttf 12 1 28.7413 42.3111 4 n 9.2095 32.3226 33.1555 -Verdana_Bold.ttf 12 1 28.7413 42.3111 5 P -0.0536 35.4165 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 6 o 9.0497 35.1202 34.3675 -Verdana_Bold.ttf 12 1 28.7413 42.3111 7 e 9.1684 33.9082 34.3675 -Verdana_Bold.ttf 12 1 28.7413 42.3111 8 : 10.2948 10.6752 31.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 9 r 10.5561 23.3151 31.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 10 l -2.1524 10.2160 44.4239 -Verdana_Bold.ttf 12 1 28.7413 42.3111 11 i -2.2018 10.2160 44.4239 -Verdana_Bold.ttf 12 1 28.7413 42.3111 12 1 0.3033 28.7413 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 13 | -2.0359 8.4803 55.6923 -Verdana_Bold.ttf 12 1 28.7413 42.3111 14 N 0.1625 38.8363 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 15 f -2.1923 24.5271 44.4239 -Verdana_Bold.ttf 12 1 28.7413 42.3111 16 g 9.0340 33.5311 44.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 17 d -1.9364 33.5311 45.6359 -Verdana_Bold.ttf 12 1 28.7413 42.3111 18 W 0.1578 62.2208 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 19 s 9.2099 29.7391 34.3675 -Verdana_Bold.ttf 12 1 28.7413 42.3111 20 c 9.4116 29.6826 34.3675 -Verdana_Bold.ttf 12 1 28.7413 42.3111 21 u 10.2102 32.3226 33.1555 -Verdana_Bold.ttf 12 1 28.7413 42.3111 22 3 -1.2192 33.8052 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 23 ~ 13.2526 41.7840 19.3716 -Verdana_Bold.ttf 12 1 28.7413 42.3111 24 # 0.0862 41.8499 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 25 O -1.1659 43.9002 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 26 ` -5.0776 16.9477 11.2684 -Verdana_Bold.ttf 12 1 28.7413 42.3111 27 @ -1.5614 47.6808 50.1066 -Verdana_Bold.ttf 12 1 28.7413 42.3111 28 F -0.2365 30.2610 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 29 S -1.2982 36.6318 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 30 p 9.0271 33.5311 44.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 31 “ -2.0922 30.4239 16.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 32 % -1.0190 66.6496 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 33 £ -1.0907 33.7487 43.5231 -Verdana_Bold.ttf 12 1 28.7413 42.3111 34 . 30.9143 10.6752 11.2684 -Verdana_Bold.ttf 12 1 28.7413 42.3111 35 2 -1.4869 33.2780 43.5231 -Verdana_Bold.ttf 12 1 28.7413 42.3111 36 5 -0.2224 33.0639 43.5231 -Verdana_Bold.ttf 12 1 28.7413 42.3111 37 m 9.4480 52.4335 33.1555 -Verdana_Bold.ttf 12 1 28.7413 42.3111 38 V -0.0673 42.3111 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 39 6 -1.1467 34.8011 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 40 w 10.4517 54.7880 31.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 41 T 0.1461 37.2507 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 42 M 0.1021 44.7331 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 43 G -1.2837 40.2643 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 44 b -2.0863 33.5311 45.6359 -Verdana_Bold.ttf 12 1 28.7413 42.3111 45 9 -1.0611 34.8011 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 46 ; 10.2196 16.5721 42.6188 -Verdana_Bold.ttf 12 1 28.7413 42.3111 47 D -0.0711 40.2643 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 48 L 0.1237 30.5721 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 49 y 10.3784 35.6325 43.5196 -Verdana_Bold.ttf 12 1 28.7413 42.3111 50 ‘ -2.0279 15.2120 16.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 51 \ -2.3710 31.6359 53.7390 -Verdana_Bold.ttf 12 1 28.7413 42.3111 52 R -0.3015 41.1651 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 53 < 4.1234 38.0564 38.0564 -Verdana_Bold.ttf 12 1 28.7413 42.3111 54 4 -0.1296 37.2216 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 55 8 -1.0461 36.2291 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 56 0 -1.1303 35.0428 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 57 A 0.0404 43.5231 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 58 E -0.2413 30.7316 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 59 B 0.1712 36.1047 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 60 v 10.2772 35.6325 31.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 61 k -2.1231 34.5835 44.4239 -Verdana_Bold.ttf 12 1 28.7413 42.3111 62 J -0.1062 26.4804 43.5231 -Verdana_Bold.ttf 12 1 28.7413 42.3111 63 U 0.3031 38.0018 43.5231 -Verdana_Bold.ttf 12 1 28.7413 42.3111 64 j -2.0272 20.5270 56.0000 -Verdana_Bold.ttf 12 1 28.7413 42.3111 65 ( -2.4198 21.2683 56.0000 -Verdana_Bold.ttf 12 1 28.7413 42.3111 66 7 -0.1123 33.3716 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 67 § -1.2471 33.3731 54.7915 -Verdana_Bold.ttf 12 1 28.7413 42.3111 68 $ -2.6738 34.4240 55.1557 -Verdana_Bold.ttf 12 1 28.7413 42.3111 69 € -1.0363 38.7447 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 70 / -1.8211 31.6359 53.7390 -Verdana_Bold.ttf 12 1 28.7413 42.3111 71 C -1.1375 36.1047 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 72 * -2.3360 32.2547 29.2120 -Verdana_Bold.ttf 12 1 28.7413 42.3111 73 ” -2.2017 30.4239 16.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 74 ? -0.8280 28.4593 43.5231 -Verdana_Bold.ttf 12 1 28.7413 42.3111 75 { -2.2077 31.3248 55.6923 -Verdana_Bold.ttf 12 1 28.7413 42.3111 76 } -2.0132 31.3248 55.6923 -Verdana_Bold.ttf 12 1 28.7413 42.3111 77 , 30.4757 16.5721 21.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 78 I -0.1234 24.5157 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 79 ° -0.8502 24.0564 23.8404 -Verdana_Bold.ttf 12 1 28.7413 42.3111 80 K 0.3279 39.5761 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 81 H 0.1694 38.3656 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 82 q 9.4439 33.5311 44.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 83 & -1.3404 48.3675 44.7350 -Verdana_Bold.ttf 12 1 28.7413 42.3111 84 ’ -1.8745 15.2120 16.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 85 [ -1.9963 19.1555 55.6923 -Verdana_Bold.ttf 12 1 28.7413 42.3111 86 - 19.3880 21.9436 7.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 87 Y -0.0766 42.5237 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 88 Q -1.0165 43.9002 55.0992 -Verdana_Bold.ttf 12 1 28.7413 42.3111 89 " -2.4025 25.0523 16.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 90 ! 0.3623 11.4279 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 91 x 10.2845 36.6284 31.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 92 ) -2.4356 21.2683 56.0000 -Verdana_Bold.ttf 12 1 28.7413 42.3111 93 = 11.9742 36.4803 23.1556 -Verdana_Bold.ttf 12 1 28.7413 42.3111 94 + 4.4217 38.3675 38.3675 -Verdana_Bold.ttf 12 1 28.7413 42.3111 95 X -0.2068 42.3111 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 96 » 8.4120 35.2683 30.4239 -Verdana_Bold.ttf 12 1 28.7413 42.3111 97 ' -2.1933 9.8404 16.7316 -Verdana_Bold.ttf 12 1 28.7413 42.3111 98 ¢ 0.0909 30.9492 51.8404 -Verdana_Bold.ttf 12 1 28.7413 42.3111 99 Z -0.1443 35.7955 42.3111 -Verdana_Bold.ttf 12 1 28.7413 42.3111 100 > 4.3742 38.0564 38.0564 -Verdana_Bold.ttf 12 1 28.7413 42.3111 101 ® -1.2334 49.2683 49.2683 -Verdana_Bold.ttf 12 1 28.7413 42.3111 102 © -1.1955 49.2683 49.2683 -Verdana_Bold.ttf 12 1 28.7413 42.3111 103 ] -2.3872 19.1555 55.6923 -Verdana_Bold.ttf 12 1 28.7413 42.3111 104 é -5.3717 33.9082 48.9606 -Verdana_Bold.ttf 12 1 28.7413 42.3111 105 z 10.4712 29.7357 31.9436 -Verdana_Bold.ttf 12 1 28.7413 42.3111 106 _ 46.4749 41.6923 6.0564 -Verdana_Bold.ttf 12 1 28.7413 42.3111 107 ¥ -0.2210 38.9042 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 1 t 3.0916 24.2160 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 2 h 0.0951 32.3226 44.4239 -Verdana_Bold.ttf 13 | 8.4803 55.6923 3 a 11.0575 31.7954 34.3675 -Verdana_Bold.ttf 13 | 8.4803 55.6923 4 n 11.2598 32.3226 33.1555 -Verdana_Bold.ttf 13 | 8.4803 55.6923 5 P 2.4335 35.4165 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 6 o 11.3944 35.1202 34.3675 -Verdana_Bold.ttf 13 | 8.4803 55.6923 7 e 11.3015 33.9082 34.3675 -Verdana_Bold.ttf 13 | 8.4803 55.6923 8 : 12.2515 10.6752 31.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 9 r 12.4804 23.3151 31.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 10 l 0.0025 10.2160 44.4239 -Verdana_Bold.ttf 13 | 8.4803 55.6923 11 i -0.0667 10.2160 44.4239 -Verdana_Bold.ttf 13 | 8.4803 55.6923 12 1 2.2949 28.7413 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 13 | 0.1316 8.4803 55.6923 -Verdana_Bold.ttf 13 | 8.4803 55.6923 14 N 2.0636 38.8363 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 15 f 0.0465 24.5271 44.4239 -Verdana_Bold.ttf 13 | 8.4803 55.6923 16 g 11.3764 33.5311 44.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 17 d -0.2558 33.5311 45.6359 -Verdana_Bold.ttf 13 | 8.4803 55.6923 18 W 1.8120 62.2208 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 19 s 11.1189 29.7391 34.3675 -Verdana_Bold.ttf 13 | 8.4803 55.6923 20 c 11.6351 29.6826 34.3675 -Verdana_Bold.ttf 13 | 8.4803 55.6923 21 u 12.6059 32.3226 33.1555 -Verdana_Bold.ttf 13 | 8.4803 55.6923 22 3 0.9081 33.8052 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 23 ~ 15.2416 41.7840 19.3716 -Verdana_Bold.ttf 13 | 8.4803 55.6923 24 # 2.2129 41.8499 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 25 O 0.8272 43.9002 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 26 ` -3.2849 16.9477 11.2684 -Verdana_Bold.ttf 13 | 8.4803 55.6923 27 @ 0.9721 47.6808 50.1066 -Verdana_Bold.ttf 13 | 8.4803 55.6923 28 F 1.9988 30.2610 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 29 S 1.1210 36.6318 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 30 p 10.9621 33.5311 44.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 31 “ -0.1072 30.4239 16.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 32 % 0.9998 66.6496 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 33 £ 0.8732 33.7487 43.5231 -Verdana_Bold.ttf 13 | 8.4803 55.6923 34 . 32.9897 10.6752 11.2684 -Verdana_Bold.ttf 13 | 8.4803 55.6923 35 2 0.9834 33.2780 43.5231 -Verdana_Bold.ttf 13 | 8.4803 55.6923 36 5 2.1016 33.0639 43.5231 -Verdana_Bold.ttf 13 | 8.4803 55.6923 37 m 11.3587 52.4335 33.1555 -Verdana_Bold.ttf 13 | 8.4803 55.6923 38 V 2.2845 42.3111 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 39 6 0.9321 34.8011 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 40 w 12.4063 54.7880 31.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 41 T 2.2456 37.2507 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 42 M 2.1765 44.7331 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 43 G 1.0776 40.2643 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 44 b 0.2738 33.5311 45.6359 -Verdana_Bold.ttf 13 | 8.4803 55.6923 45 9 0.5312 34.8011 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 46 ; 12.6273 16.5721 42.6188 -Verdana_Bold.ttf 13 | 8.4803 55.6923 47 D 2.0610 40.2643 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 48 L 1.9470 30.5721 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 49 y 12.3291 35.6325 43.5196 -Verdana_Bold.ttf 13 | 8.4803 55.6923 50 ‘ 0.0337 15.2120 16.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 51 \ -0.2279 31.6359 53.7390 -Verdana_Bold.ttf 13 | 8.4803 55.6923 52 R 1.8157 41.1651 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 53 < 6.2713 38.0564 38.0564 -Verdana_Bold.ttf 13 | 8.4803 55.6923 54 4 1.9243 37.2216 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 55 8 0.4621 36.2291 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 56 0 0.9792 35.0428 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 57 A 2.0370 43.5231 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 58 E 2.0297 30.7316 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 59 B 2.1941 36.1047 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 60 v 12.4857 35.6325 31.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 61 k -0.0882 34.5835 44.4239 -Verdana_Bold.ttf 13 | 8.4803 55.6923 62 J 1.8546 26.4804 43.5231 -Verdana_Bold.ttf 13 | 8.4803 55.6923 63 U 1.8889 38.0018 43.5231 -Verdana_Bold.ttf 13 | 8.4803 55.6923 64 j 0.1734 20.5270 56.0000 -Verdana_Bold.ttf 13 | 8.4803 55.6923 65 ( -0.0996 21.2683 56.0000 -Verdana_Bold.ttf 13 | 8.4803 55.6923 66 7 1.7663 33.3716 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 67 § 0.8219 33.3731 54.7915 -Verdana_Bold.ttf 13 | 8.4803 55.6923 68 $ -0.4444 34.4240 55.1557 -Verdana_Bold.ttf 13 | 8.4803 55.6923 69 € 0.8812 38.7447 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 70 / -0.1090 31.6359 53.7390 -Verdana_Bold.ttf 13 | 8.4803 55.6923 71 C 0.8490 36.1047 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 72 * -0.2284 32.2547 29.2120 -Verdana_Bold.ttf 13 | 8.4803 55.6923 73 ” 0.0370 30.4239 16.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 74 ? 1.0264 28.4593 43.5231 -Verdana_Bold.ttf 13 | 8.4803 55.6923 75 { -0.2718 31.3248 55.6923 -Verdana_Bold.ttf 13 | 8.4803 55.6923 76 } 0.1807 31.3248 55.6923 -Verdana_Bold.ttf 13 | 8.4803 55.6923 77 , 33.2556 16.5721 21.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 78 I 2.1056 24.5157 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 79 ° 0.8138 24.0564 23.8404 -Verdana_Bold.ttf 13 | 8.4803 55.6923 80 K 2.0718 39.5761 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 81 H 2.3602 38.3656 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 82 q 11.4615 33.5311 44.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 83 & 0.8152 48.3675 44.7350 -Verdana_Bold.ttf 13 | 8.4803 55.6923 84 ’ -0.2849 15.2120 16.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 85 [ 0.0205 19.1555 55.6923 -Verdana_Bold.ttf 13 | 8.4803 55.6923 86 - 21.2811 21.9436 7.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 87 Y 2.2597 42.5237 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 88 Q 0.8895 43.9002 55.0992 -Verdana_Bold.ttf 13 | 8.4803 55.6923 89 " 0.0741 25.0523 16.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 90 ! 2.2686 11.4279 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 91 x 12.4063 36.6284 31.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 92 ) 0.0823 21.2683 56.0000 -Verdana_Bold.ttf 13 | 8.4803 55.6923 93 = 13.7897 36.4803 23.1556 -Verdana_Bold.ttf 13 | 8.4803 55.6923 94 + 6.2545 38.3675 38.3675 -Verdana_Bold.ttf 13 | 8.4803 55.6923 95 X 2.2071 42.3111 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 96 » 10.2009 35.2683 30.4239 -Verdana_Bold.ttf 13 | 8.4803 55.6923 97 ' -0.1201 9.8404 16.7316 -Verdana_Bold.ttf 13 | 8.4803 55.6923 98 ¢ 2.4185 30.9492 51.8404 -Verdana_Bold.ttf 13 | 8.4803 55.6923 99 Z 2.0965 35.7955 42.3111 -Verdana_Bold.ttf 13 | 8.4803 55.6923 100 > 6.3477 38.0564 38.0564 -Verdana_Bold.ttf 13 | 8.4803 55.6923 101 ® 1.0531 49.2683 49.2683 -Verdana_Bold.ttf 13 | 8.4803 55.6923 102 © 0.9008 49.2683 49.2683 -Verdana_Bold.ttf 13 | 8.4803 55.6923 103 ] -0.1310 19.1555 55.6923 -Verdana_Bold.ttf 13 | 8.4803 55.6923 104 é -3.3219 33.9082 48.9606 -Verdana_Bold.ttf 13 | 8.4803 55.6923 105 z 12.8258 29.7357 31.9436 -Verdana_Bold.ttf 13 | 8.4803 55.6923 106 _ 48.4222 41.6923 6.0564 -Verdana_Bold.ttf 13 | 8.4803 55.6923 107 ¥ 2.0239 38.9042 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 1 t 0.9304 24.2160 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 2 h -2.0191 32.3226 44.4239 -Verdana_Bold.ttf 14 N 38.8363 42.3111 3 a 9.1795 31.7954 34.3675 -Verdana_Bold.ttf 14 N 38.8363 42.3111 4 n 9.2750 32.3226 33.1555 -Verdana_Bold.ttf 14 N 38.8363 42.3111 5 P 0.1280 35.4165 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 6 o 9.2513 35.1202 34.3675 -Verdana_Bold.ttf 14 N 38.8363 42.3111 7 e 9.1090 33.9082 34.3675 -Verdana_Bold.ttf 14 N 38.8363 42.3111 8 : 10.5728 10.6752 31.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 9 r 10.2852 23.3151 31.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 10 l -2.3665 10.2160 44.4239 -Verdana_Bold.ttf 14 N 38.8363 42.3111 11 i -1.9542 10.2160 44.4239 -Verdana_Bold.ttf 14 N 38.8363 42.3111 12 1 -0.0701 28.7413 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 13 | -2.2531 8.4803 55.6923 -Verdana_Bold.ttf 14 N 38.8363 42.3111 14 N 0.0774 38.8363 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 15 f -2.1215 24.5271 44.4239 -Verdana_Bold.ttf 14 N 38.8363 42.3111 16 g 8.9307 33.5311 44.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 17 d -1.7696 33.5311 45.6359 -Verdana_Bold.ttf 14 N 38.8363 42.3111 18 W -0.3385 62.2208 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 19 s 9.0782 29.7391 34.3675 -Verdana_Bold.ttf 14 N 38.8363 42.3111 20 c 9.0936 29.6826 34.3675 -Verdana_Bold.ttf 14 N 38.8363 42.3111 21 u 10.4158 32.3226 33.1555 -Verdana_Bold.ttf 14 N 38.8363 42.3111 22 3 -1.4430 33.8052 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 23 ~ 12.9594 41.7840 19.3716 -Verdana_Bold.ttf 14 N 38.8363 42.3111 24 # -0.0389 41.8499 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 25 O -1.3113 43.9002 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 26 ` -5.8739 16.9477 11.2684 -Verdana_Bold.ttf 14 N 38.8363 42.3111 27 @ -1.4739 47.6808 50.1066 -Verdana_Bold.ttf 14 N 38.8363 42.3111 28 F 0.0475 30.2610 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 29 S -1.3397 36.6318 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 30 p 8.9774 33.5311 44.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 31 “ -2.0931 30.4239 16.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 32 % -1.1721 66.6496 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 33 £ -1.3360 33.7487 43.5231 -Verdana_Bold.ttf 14 N 38.8363 42.3111 34 . 31.0298 10.6752 11.2684 -Verdana_Bold.ttf 14 N 38.8363 42.3111 35 2 -1.3103 33.2780 43.5231 -Verdana_Bold.ttf 14 N 38.8363 42.3111 36 5 0.1612 33.0639 43.5231 -Verdana_Bold.ttf 14 N 38.8363 42.3111 37 m 9.3719 52.4335 33.1555 -Verdana_Bold.ttf 14 N 38.8363 42.3111 38 V 0.2461 42.3111 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 39 6 -1.3912 34.8011 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 40 w 10.1889 54.7880 31.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 41 T 0.1128 37.2507 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 42 M -0.5658 44.7331 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 43 G -1.2319 40.2643 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 44 b -2.2045 33.5311 45.6359 -Verdana_Bold.ttf 14 N 38.8363 42.3111 45 9 -1.1516 34.8011 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 46 ; 10.5311 16.5721 42.6188 -Verdana_Bold.ttf 14 N 38.8363 42.3111 47 D -0.2217 40.2643 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 48 L 0.1346 30.5721 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 49 y 10.3969 35.6325 43.5196 -Verdana_Bold.ttf 14 N 38.8363 42.3111 50 ‘ -2.2527 15.2120 16.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 51 \ -2.3417 31.6359 53.7390 -Verdana_Bold.ttf 14 N 38.8363 42.3111 52 R 0.7050 41.1651 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 53 < 4.3389 38.0564 38.0564 -Verdana_Bold.ttf 14 N 38.8363 42.3111 54 4 -0.1883 37.2216 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 55 8 -1.1107 36.2291 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 56 0 -1.4577 35.0428 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 57 A 0.0563 43.5231 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 58 E -0.0287 30.7316 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 59 B 0.0918 36.1047 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 60 v 10.4795 35.6325 31.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 61 k -2.3789 34.5835 44.4239 -Verdana_Bold.ttf 14 N 38.8363 42.3111 62 J -0.1978 26.4804 43.5231 -Verdana_Bold.ttf 14 N 38.8363 42.3111 63 U 0.1110 38.0018 43.5231 -Verdana_Bold.ttf 14 N 38.8363 42.3111 64 j -2.0491 20.5270 56.0000 -Verdana_Bold.ttf 14 N 38.8363 42.3111 65 ( -1.6965 21.2683 56.0000 -Verdana_Bold.ttf 14 N 38.8363 42.3111 66 7 0.0389 33.3716 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 67 § -1.2100 33.3731 54.7915 -Verdana_Bold.ttf 14 N 38.8363 42.3111 68 $ -3.0119 34.4240 55.1557 -Verdana_Bold.ttf 14 N 38.8363 42.3111 69 € -1.1194 38.7447 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 70 / -2.0988 31.6359 53.7390 -Verdana_Bold.ttf 14 N 38.8363 42.3111 71 C -1.2624 36.1047 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 72 * -2.1317 32.2547 29.2120 -Verdana_Bold.ttf 14 N 38.8363 42.3111 73 ” -2.2470 30.4239 16.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 74 ? -0.9087 28.4593 43.5231 -Verdana_Bold.ttf 14 N 38.8363 42.3111 75 { -1.8547 31.3248 55.6923 -Verdana_Bold.ttf 14 N 38.8363 42.3111 76 } -2.2329 31.3248 55.6923 -Verdana_Bold.ttf 14 N 38.8363 42.3111 77 , 31.3829 16.5721 21.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 78 I 0.1283 24.5157 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 79 ° -1.3538 24.0564 23.8404 -Verdana_Bold.ttf 14 N 38.8363 42.3111 80 K 0.1856 39.5761 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 81 H 0.0776 38.3656 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 82 q 9.3665 33.5311 44.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 83 & -1.1904 48.3675 44.7350 -Verdana_Bold.ttf 14 N 38.8363 42.3111 84 ’ -2.1498 15.2120 16.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 85 [ -2.1580 19.1555 55.6923 -Verdana_Bold.ttf 14 N 38.8363 42.3111 86 - 19.3862 21.9436 7.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 87 Y 0.3302 42.5237 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 88 Q -1.3313 43.9002 55.0992 -Verdana_Bold.ttf 14 N 38.8363 42.3111 89 " -2.2398 25.0523 16.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 90 ! -0.0153 11.4279 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 91 x 10.2634 36.6284 31.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 92 ) -2.4052 21.2683 56.0000 -Verdana_Bold.ttf 14 N 38.8363 42.3111 93 = 11.9717 36.4803 23.1556 -Verdana_Bold.ttf 14 N 38.8363 42.3111 94 + 4.2795 38.3675 38.3675 -Verdana_Bold.ttf 14 N 38.8363 42.3111 95 X 0.3301 42.3111 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 96 » 7.9520 35.2683 30.4239 -Verdana_Bold.ttf 14 N 38.8363 42.3111 97 ' -2.1716 9.8404 16.7316 -Verdana_Bold.ttf 14 N 38.8363 42.3111 98 ¢ 0.2118 30.9492 51.8404 -Verdana_Bold.ttf 14 N 38.8363 42.3111 99 Z -0.0126 35.7955 42.3111 -Verdana_Bold.ttf 14 N 38.8363 42.3111 100 > 4.4569 38.0564 38.0564 -Verdana_Bold.ttf 14 N 38.8363 42.3111 101 ® -1.0501 49.2683 49.2683 -Verdana_Bold.ttf 14 N 38.8363 42.3111 102 © -1.1272 49.2683 49.2683 -Verdana_Bold.ttf 14 N 38.8363 42.3111 103 ] -2.6188 19.1555 55.6923 -Verdana_Bold.ttf 14 N 38.8363 42.3111 104 é -5.4170 33.9082 48.9606 -Verdana_Bold.ttf 14 N 38.8363 42.3111 105 z 10.2373 29.7357 31.9436 -Verdana_Bold.ttf 14 N 38.8363 42.3111 106 _ 46.5145 41.6923 6.0564 -Verdana_Bold.ttf 14 N 38.8363 42.3111 107 ¥ -0.0809 38.9042 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 1 t 3.3193 24.2160 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 2 h 0.1145 32.3226 44.4239 -Verdana_Bold.ttf 15 f 24.5271 44.4239 3 a 11.6925 31.7954 34.3675 -Verdana_Bold.ttf 15 f 24.5271 44.4239 4 n 11.1756 32.3226 33.1555 -Verdana_Bold.ttf 15 f 24.5271 44.4239 5 P 1.8916 35.4165 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 6 o 11.0258 35.1202 34.3675 -Verdana_Bold.ttf 15 f 24.5271 44.4239 7 e 11.4005 33.9082 34.3675 -Verdana_Bold.ttf 15 f 24.5271 44.4239 8 : 12.6192 10.6752 31.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 9 r 12.7288 23.3151 31.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 10 l -0.2165 10.2160 44.4239 -Verdana_Bold.ttf 15 f 24.5271 44.4239 11 i -0.2113 10.2160 44.4239 -Verdana_Bold.ttf 15 f 24.5271 44.4239 12 1 2.1157 28.7413 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 13 | 0.4070 8.4803 55.6923 -Verdana_Bold.ttf 15 f 24.5271 44.4239 14 N 1.7979 38.8363 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 15 f 0.0352 24.5271 44.4239 -Verdana_Bold.ttf 15 f 24.5271 44.4239 16 g 11.1577 33.5311 44.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 17 d 0.2667 33.5311 45.6359 -Verdana_Bold.ttf 15 f 24.5271 44.4239 18 W 2.3311 62.2208 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 19 s 11.4661 29.7391 34.3675 -Verdana_Bold.ttf 15 f 24.5271 44.4239 20 c 11.3576 29.6826 34.3675 -Verdana_Bold.ttf 15 f 24.5271 44.4239 21 u 12.3030 32.3226 33.1555 -Verdana_Bold.ttf 15 f 24.5271 44.4239 22 3 0.8671 33.8052 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 23 ~ 15.3695 41.7840 19.3716 -Verdana_Bold.ttf 15 f 24.5271 44.4239 24 # 1.8974 41.8499 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 25 O 1.0114 43.9002 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 26 ` -3.2338 16.9477 11.2684 -Verdana_Bold.ttf 15 f 24.5271 44.4239 27 @ 0.6371 47.6808 50.1066 -Verdana_Bold.ttf 15 f 24.5271 44.4239 28 F 2.1240 30.2610 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 29 S 0.8490 36.6318 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 30 p 11.2294 33.5311 44.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 31 “ -0.1449 30.4239 16.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 32 % 0.7177 66.6496 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 33 £ 0.8897 33.7487 43.5231 -Verdana_Bold.ttf 15 f 24.5271 44.4239 34 . 33.1954 10.6752 11.2684 -Verdana_Bold.ttf 15 f 24.5271 44.4239 35 2 0.8850 33.2780 43.5231 -Verdana_Bold.ttf 15 f 24.5271 44.4239 36 5 2.1157 33.0639 43.5231 -Verdana_Bold.ttf 15 f 24.5271 44.4239 37 m 11.1276 52.4335 33.1555 -Verdana_Bold.ttf 15 f 24.5271 44.4239 38 V 2.3449 42.3111 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 39 6 0.9773 34.8011 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 40 w 12.4126 54.7880 31.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 41 T 2.2397 37.2507 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 42 M 2.2045 44.7331 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 43 G 0.7255 40.2643 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 44 b -0.1708 33.5311 45.6359 -Verdana_Bold.ttf 15 f 24.5271 44.4239 45 9 0.8882 34.8011 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 46 ; 12.5858 16.5721 42.6188 -Verdana_Bold.ttf 15 f 24.5271 44.4239 47 D 2.0974 40.2643 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 48 L 2.2111 30.5721 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 49 y 12.5294 35.6325 43.5196 -Verdana_Bold.ttf 15 f 24.5271 44.4239 50 ‘ 0.0167 15.2120 16.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 51 \ 0.1230 31.6359 53.7390 -Verdana_Bold.ttf 15 f 24.5271 44.4239 52 R 2.3602 41.1651 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 53 < 6.2518 38.0564 38.0564 -Verdana_Bold.ttf 15 f 24.5271 44.4239 54 4 2.0152 37.2216 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 55 8 0.7547 36.2291 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 56 0 1.0702 35.0428 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 57 A 2.1647 43.5231 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 58 E 2.2017 30.7316 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 59 B 2.2791 36.1047 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 60 v 12.5348 35.6325 31.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 61 k -0.0816 34.5835 44.4239 -Verdana_Bold.ttf 15 f 24.5271 44.4239 62 J 1.9558 26.4804 43.5231 -Verdana_Bold.ttf 15 f 24.5271 44.4239 63 U 2.2194 38.0018 43.5231 -Verdana_Bold.ttf 15 f 24.5271 44.4239 64 j 0.0533 20.5270 56.0000 -Verdana_Bold.ttf 15 f 24.5271 44.4239 65 ( -0.2027 21.2683 56.0000 -Verdana_Bold.ttf 15 f 24.5271 44.4239 66 7 2.0164 33.3716 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 67 § 1.0401 33.3731 54.7915 -Verdana_Bold.ttf 15 f 24.5271 44.4239 68 $ -0.6916 34.4240 55.1557 -Verdana_Bold.ttf 15 f 24.5271 44.4239 69 € 0.7667 38.7447 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 70 / -0.0000 31.6359 53.7390 -Verdana_Bold.ttf 15 f 24.5271 44.4239 71 C 0.7696 36.1047 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 72 * 0.1484 32.2547 29.2120 -Verdana_Bold.ttf 15 f 24.5271 44.4239 73 ” -0.0998 30.4239 16.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 74 ? 0.8762 28.4593 43.5231 -Verdana_Bold.ttf 15 f 24.5271 44.4239 75 { 0.0360 31.3248 55.6923 -Verdana_Bold.ttf 15 f 24.5271 44.4239 76 } 0.0562 31.3248 55.6923 -Verdana_Bold.ttf 15 f 24.5271 44.4239 77 , 33.3401 16.5721 21.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 78 I 2.1752 24.5157 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 79 ° 0.6844 24.0564 23.8404 -Verdana_Bold.ttf 15 f 24.5271 44.4239 80 K 2.2220 39.5761 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 81 H 2.2248 38.3656 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 82 q 11.4614 33.5311 44.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 83 & 0.9406 48.3675 44.7350 -Verdana_Bold.ttf 15 f 24.5271 44.4239 84 ’ -0.2623 15.2120 16.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 85 [ -0.1731 19.1555 55.6923 -Verdana_Bold.ttf 15 f 24.5271 44.4239 86 - 21.2327 21.9436 7.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 87 Y 2.1647 42.5237 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 88 Q 1.2320 43.9002 55.0992 -Verdana_Bold.ttf 15 f 24.5271 44.4239 89 " -0.1407 25.0523 16.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 90 ! 2.0238 11.4279 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 91 x 12.8654 36.6284 31.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 92 ) -0.1774 21.2683 56.0000 -Verdana_Bold.ttf 15 f 24.5271 44.4239 93 = 14.0033 36.4803 23.1556 -Verdana_Bold.ttf 15 f 24.5271 44.4239 94 + 6.4427 38.3675 38.3675 -Verdana_Bold.ttf 15 f 24.5271 44.4239 95 X 1.8433 42.3111 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 96 » 10.2134 35.2683 30.4239 -Verdana_Bold.ttf 15 f 24.5271 44.4239 97 ' -0.0547 9.8404 16.7316 -Verdana_Bold.ttf 15 f 24.5271 44.4239 98 ¢ 2.4867 30.9492 51.8404 -Verdana_Bold.ttf 15 f 24.5271 44.4239 99 Z 2.0688 35.7955 42.3111 -Verdana_Bold.ttf 15 f 24.5271 44.4239 100 > 6.5435 38.0564 38.0564 -Verdana_Bold.ttf 15 f 24.5271 44.4239 101 ® 0.8638 49.2683 49.2683 -Verdana_Bold.ttf 15 f 24.5271 44.4239 102 © 1.0609 49.2683 49.2683 -Verdana_Bold.ttf 15 f 24.5271 44.4239 103 ] 0.2615 19.1555 55.6923 -Verdana_Bold.ttf 15 f 24.5271 44.4239 104 é -3.5275 33.9082 48.9606 -Verdana_Bold.ttf 15 f 24.5271 44.4239 105 z 12.3119 29.7357 31.9436 -Verdana_Bold.ttf 15 f 24.5271 44.4239 106 _ 48.7334 41.6923 6.0564 -Verdana_Bold.ttf 15 f 24.5271 44.4239 107 ¥ 2.2449 38.9042 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 1 t -7.7311 24.2160 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 2 h -11.2165 32.3226 44.4239 -Verdana_Bold.ttf 16 g 33.5311 44.7316 3 a 0.0128 31.7954 34.3675 -Verdana_Bold.ttf 16 g 33.5311 44.7316 4 n -0.0164 32.3226 33.1555 -Verdana_Bold.ttf 16 g 33.5311 44.7316 5 P -9.1329 35.4165 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 6 o 0.0174 35.1202 34.3675 -Verdana_Bold.ttf 16 g 33.5311 44.7316 7 e 0.1241 33.9082 34.3675 -Verdana_Bold.ttf 16 g 33.5311 44.7316 8 : 1.2711 10.6752 31.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 9 r 1.0631 23.3151 31.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 10 l -11.2093 10.2160 44.4239 -Verdana_Bold.ttf 16 g 33.5311 44.7316 11 i -11.2832 10.2160 44.4239 -Verdana_Bold.ttf 16 g 33.5311 44.7316 12 1 -9.2424 28.7413 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 13 | -11.0348 8.4803 55.6923 -Verdana_Bold.ttf 16 g 33.5311 44.7316 14 N -9.1830 38.8363 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 15 f -11.4721 24.5271 44.4239 -Verdana_Bold.ttf 16 g 33.5311 44.7316 16 g -0.2085 33.5311 44.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 17 d -11.0420 33.5311 45.6359 -Verdana_Bold.ttf 16 g 33.5311 44.7316 18 W -9.2276 62.2208 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 19 s 0.1519 29.7391 34.3675 -Verdana_Bold.ttf 16 g 33.5311 44.7316 20 c -0.0657 29.6826 34.3675 -Verdana_Bold.ttf 16 g 33.5311 44.7316 21 u 1.2221 32.3226 33.1555 -Verdana_Bold.ttf 16 g 33.5311 44.7316 22 3 -10.3781 33.8052 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 23 ~ 4.1439 41.7840 19.3716 -Verdana_Bold.ttf 16 g 33.5311 44.7316 24 # -8.9590 41.8499 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 25 O -10.4185 43.9002 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 26 ` -14.6600 16.9477 11.2684 -Verdana_Bold.ttf 16 g 33.5311 44.7316 27 @ -10.3675 47.6808 50.1066 -Verdana_Bold.ttf 16 g 33.5311 44.7316 28 F -9.2205 30.2610 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 29 S -10.2354 36.6318 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 30 p -0.2921 33.5311 44.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 31 “ -11.0907 30.4239 16.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 32 % -10.2892 66.6496 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 33 £ -9.8724 33.7487 43.5231 -Verdana_Bold.ttf 16 g 33.5311 44.7316 34 . 21.6234 10.6752 11.2684 -Verdana_Bold.ttf 16 g 33.5311 44.7316 35 2 -10.0038 33.2780 43.5231 -Verdana_Bold.ttf 16 g 33.5311 44.7316 36 5 -9.4074 33.0639 43.5231 -Verdana_Bold.ttf 16 g 33.5311 44.7316 37 m 0.0780 52.4335 33.1555 -Verdana_Bold.ttf 16 g 33.5311 44.7316 38 V -9.0733 42.3111 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 39 6 -10.2604 34.8011 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 40 w 1.5031 54.7880 31.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 41 T -9.2585 37.2507 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 42 M -9.4139 44.7331 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 43 G -10.5447 40.2643 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 44 b -11.2270 33.5311 45.6359 -Verdana_Bold.ttf 16 g 33.5311 44.7316 45 9 -10.2892 34.8011 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 46 ; 0.9928 16.5721 42.6188 -Verdana_Bold.ttf 16 g 33.5311 44.7316 47 D -9.3547 40.2643 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 48 L -9.1146 30.5721 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 49 y 0.8309 35.6325 43.5196 -Verdana_Bold.ttf 16 g 33.5311 44.7316 50 ‘ -11.1092 15.2120 16.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 51 \ -11.1221 31.6359 53.7390 -Verdana_Bold.ttf 16 g 33.5311 44.7316 52 R -9.5245 41.1651 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 53 < -4.4871 38.0564 38.0564 -Verdana_Bold.ttf 16 g 33.5311 44.7316 54 4 -9.2566 37.2216 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 55 8 -10.9102 36.2291 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 56 0 -10.4776 35.0428 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 57 A -9.0173 43.5231 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 58 E -9.1661 30.7316 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 59 B -9.0646 36.1047 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 60 v 1.2033 35.6325 31.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 61 k -11.4456 34.5835 44.4239 -Verdana_Bold.ttf 16 g 33.5311 44.7316 62 J -9.1124 26.4804 43.5231 -Verdana_Bold.ttf 16 g 33.5311 44.7316 63 U -9.1988 38.0018 43.5231 -Verdana_Bold.ttf 16 g 33.5311 44.7316 64 j -11.2342 20.5270 56.0000 -Verdana_Bold.ttf 16 g 33.5311 44.7316 65 ( -11.3375 21.2683 56.0000 -Verdana_Bold.ttf 16 g 33.5311 44.7316 66 7 -8.9404 33.3716 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 67 § -10.3092 33.3731 54.7915 -Verdana_Bold.ttf 16 g 33.5311 44.7316 68 $ -12.0779 34.4240 55.1557 -Verdana_Bold.ttf 16 g 33.5311 44.7316 69 € -10.2365 38.7447 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 70 / -11.8024 31.6359 53.7390 -Verdana_Bold.ttf 16 g 33.5311 44.7316 71 C -10.4978 36.1047 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 72 * -10.9963 32.2547 29.2120 -Verdana_Bold.ttf 16 g 33.5311 44.7316 73 ” -11.3007 30.4239 16.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 74 ? -10.4601 28.4593 43.5231 -Verdana_Bold.ttf 16 g 33.5311 44.7316 75 { -11.0877 31.3248 55.6923 -Verdana_Bold.ttf 16 g 33.5311 44.7316 76 } -11.3587 31.3248 55.6923 -Verdana_Bold.ttf 16 g 33.5311 44.7316 77 , 21.6161 16.5721 21.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 78 I -8.9095 24.5157 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 79 ° -10.3196 24.0564 23.8404 -Verdana_Bold.ttf 16 g 33.5311 44.7316 80 K -9.1233 39.5761 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 81 H -9.1858 38.3656 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 82 q 0.1639 33.5311 44.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 83 & -10.2537 48.3675 44.7350 -Verdana_Bold.ttf 16 g 33.5311 44.7316 84 ’ -11.1450 15.2120 16.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 85 [ -11.1208 19.1555 55.6923 -Verdana_Bold.ttf 16 g 33.5311 44.7316 86 - 9.8819 21.9436 7.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 87 Y -9.0170 42.5237 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 88 Q -10.3223 43.9002 55.0992 -Verdana_Bold.ttf 16 g 33.5311 44.7316 89 " -11.4040 25.0523 16.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 90 ! -9.4628 11.4279 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 91 x 1.4333 36.6284 31.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 92 ) -11.1906 21.2683 56.0000 -Verdana_Bold.ttf 16 g 33.5311 44.7316 93 = 2.5822 36.4803 23.1556 -Verdana_Bold.ttf 16 g 33.5311 44.7316 94 + -4.8720 38.3675 38.3675 -Verdana_Bold.ttf 16 g 33.5311 44.7316 95 X -9.2601 42.3111 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 96 » -1.0908 35.2683 30.4239 -Verdana_Bold.ttf 16 g 33.5311 44.7316 97 ' -11.4091 9.8404 16.7316 -Verdana_Bold.ttf 16 g 33.5311 44.7316 98 ¢ -8.9348 30.9492 51.8404 -Verdana_Bold.ttf 16 g 33.5311 44.7316 99 Z -9.2372 35.7955 42.3111 -Verdana_Bold.ttf 16 g 33.5311 44.7316 100 > -4.9893 38.0564 38.0564 -Verdana_Bold.ttf 16 g 33.5311 44.7316 101 ® -10.4814 49.2683 49.2683 -Verdana_Bold.ttf 16 g 33.5311 44.7316 102 © -10.0403 49.2683 49.2683 -Verdana_Bold.ttf 16 g 33.5311 44.7316 103 ] -11.2684 19.1555 55.6923 -Verdana_Bold.ttf 16 g 33.5311 44.7316 104 é -14.5500 33.9082 48.9606 -Verdana_Bold.ttf 16 g 33.5311 44.7316 105 z 1.5065 29.7357 31.9436 -Verdana_Bold.ttf 16 g 33.5311 44.7316 106 _ 36.9324 41.6923 6.0564 -Verdana_Bold.ttf 16 g 33.5311 44.7316 107 ¥ -9.0216 38.9042 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 1 t 3.2327 24.2160 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 2 h -0.2375 32.3226 44.4239 -Verdana_Bold.ttf 17 d 33.5311 45.6359 3 a 11.0525 31.7954 34.3675 -Verdana_Bold.ttf 17 d 33.5311 45.6359 4 n 11.3454 32.3226 33.1555 -Verdana_Bold.ttf 17 d 33.5311 45.6359 5 P 2.1653 35.4165 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 6 o 11.4070 35.1202 34.3675 -Verdana_Bold.ttf 17 d 33.5311 45.6359 7 e 11.2827 33.9082 34.3675 -Verdana_Bold.ttf 17 d 33.5311 45.6359 8 : 12.4063 10.6752 31.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 9 r 12.3896 23.3151 31.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 10 l 0.3309 10.2160 44.4239 -Verdana_Bold.ttf 17 d 33.5311 45.6359 11 i 0.5761 10.2160 44.4239 -Verdana_Bold.ttf 17 d 33.5311 45.6359 12 1 1.7548 28.7413 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 13 | 0.1471 8.4803 55.6923 -Verdana_Bold.ttf 17 d 33.5311 45.6359 14 N 2.1502 38.8363 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 15 f 0.3137 24.5271 44.4239 -Verdana_Bold.ttf 17 d 33.5311 45.6359 16 g 11.2630 33.5311 44.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 17 d 0.0115 33.5311 45.6359 -Verdana_Bold.ttf 17 d 33.5311 45.6359 18 W 1.9268 62.2208 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 19 s 11.1487 29.7391 34.3675 -Verdana_Bold.ttf 17 d 33.5311 45.6359 20 c 10.9999 29.6826 34.3675 -Verdana_Bold.ttf 17 d 33.5311 45.6359 21 u 12.2750 32.3226 33.1555 -Verdana_Bold.ttf 17 d 33.5311 45.6359 22 3 0.4611 33.8052 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 23 ~ 15.4650 41.7840 19.3716 -Verdana_Bold.ttf 17 d 33.5311 45.6359 24 # 2.1289 41.8499 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 25 O 1.2270 43.9002 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 26 ` -3.4597 16.9477 11.2684 -Verdana_Bold.ttf 17 d 33.5311 45.6359 27 @ 0.8786 47.6808 50.1066 -Verdana_Bold.ttf 17 d 33.5311 45.6359 28 F 1.9687 30.2610 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 29 S 1.1803 36.6318 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 30 p 11.4281 33.5311 44.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 31 “ -0.1486 30.4239 16.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 32 % 0.7047 66.6496 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 33 £ 0.8421 33.7487 43.5231 -Verdana_Bold.ttf 17 d 33.5311 45.6359 34 . 33.0069 10.6752 11.2684 -Verdana_Bold.ttf 17 d 33.5311 45.6359 35 2 0.9755 33.2780 43.5231 -Verdana_Bold.ttf 17 d 33.5311 45.6359 36 5 1.8126 33.0639 43.5231 -Verdana_Bold.ttf 17 d 33.5311 45.6359 37 m 11.5398 52.4335 33.1555 -Verdana_Bold.ttf 17 d 33.5311 45.6359 38 V 2.2733 42.3111 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 39 6 1.0736 34.8011 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 40 w 12.6711 54.7880 31.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 41 T 2.3308 37.2507 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 42 M 2.1629 44.7331 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 43 G 0.9868 40.2643 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 44 b 0.1708 33.5311 45.6359 -Verdana_Bold.ttf 17 d 33.5311 45.6359 45 9 0.9393 34.8011 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 46 ; 13.0067 16.5721 42.6188 -Verdana_Bold.ttf 17 d 33.5311 45.6359 47 D 1.9615 40.2643 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 48 L 1.8401 30.5721 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 49 y 12.6350 35.6325 43.5196 -Verdana_Bold.ttf 17 d 33.5311 45.6359 50 ‘ -0.2272 15.2120 16.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 51 \ -0.0875 31.6359 53.7390 -Verdana_Bold.ttf 17 d 33.5311 45.6359 52 R 2.1114 41.1651 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 53 < 6.3949 38.0564 38.0564 -Verdana_Bold.ttf 17 d 33.5311 45.6359 54 4 2.1295 37.2216 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 55 8 0.7396 36.2291 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 56 0 0.8557 35.0428 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 57 A 2.2124 43.5231 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 58 E 1.9322 30.7316 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 59 B 1.9801 36.1047 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 60 v 11.9228 35.6325 31.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 61 k -0.0798 34.5835 44.4239 -Verdana_Bold.ttf 17 d 33.5311 45.6359 62 J 2.0373 26.4804 43.5231 -Verdana_Bold.ttf 17 d 33.5311 45.6359 63 U 1.8476 38.0018 43.5231 -Verdana_Bold.ttf 17 d 33.5311 45.6359 64 j 0.3105 20.5270 56.0000 -Verdana_Bold.ttf 17 d 33.5311 45.6359 65 ( 0.0485 21.2683 56.0000 -Verdana_Bold.ttf 17 d 33.5311 45.6359 66 7 2.2359 33.3716 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 67 § 0.9037 33.3731 54.7915 -Verdana_Bold.ttf 17 d 33.5311 45.6359 68 $ -0.7127 34.4240 55.1557 -Verdana_Bold.ttf 17 d 33.5311 45.6359 69 € 1.2655 38.7447 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 70 / -0.2063 31.6359 53.7390 -Verdana_Bold.ttf 17 d 33.5311 45.6359 71 C 0.7960 36.1047 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 72 * -0.0917 32.2547 29.2120 -Verdana_Bold.ttf 17 d 33.5311 45.6359 73 ” 0.2714 30.4239 16.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 74 ? 0.7056 28.4593 43.5231 -Verdana_Bold.ttf 17 d 33.5311 45.6359 75 { 0.0606 31.3248 55.6923 -Verdana_Bold.ttf 17 d 33.5311 45.6359 76 } -0.1697 31.3248 55.6923 -Verdana_Bold.ttf 17 d 33.5311 45.6359 77 , 33.2757 16.5721 21.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 78 I 2.2381 24.5157 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 79 ° 0.4837 24.0564 23.8404 -Verdana_Bold.ttf 17 d 33.5311 45.6359 80 K 2.1339 39.5761 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 81 H 2.0027 38.3656 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 82 q 11.4490 33.5311 44.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 83 & 0.7255 48.3675 44.7350 -Verdana_Bold.ttf 17 d 33.5311 45.6359 84 ’ 0.3692 15.2120 16.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 85 [ 0.2601 19.1555 55.6923 -Verdana_Bold.ttf 17 d 33.5311 45.6359 86 - 21.2895 21.9436 7.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 87 Y 2.3185 42.5237 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 88 Q 0.5077 43.9002 55.0992 -Verdana_Bold.ttf 17 d 33.5311 45.6359 89 " -0.0005 25.0523 16.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 90 ! 2.0460 11.4279 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 91 x 12.2396 36.6284 31.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 92 ) -0.1401 21.2683 56.0000 -Verdana_Bold.ttf 17 d 33.5311 45.6359 93 = 13.9967 36.4803 23.1556 -Verdana_Bold.ttf 17 d 33.5311 45.6359 94 + 6.7156 38.3675 38.3675 -Verdana_Bold.ttf 17 d 33.5311 45.6359 95 X 2.4324 42.3111 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 96 » 10.2084 35.2683 30.4239 -Verdana_Bold.ttf 17 d 33.5311 45.6359 97 ' -0.0436 9.8404 16.7316 -Verdana_Bold.ttf 17 d 33.5311 45.6359 98 ¢ 2.7990 30.9492 51.8404 -Verdana_Bold.ttf 17 d 33.5311 45.6359 99 Z 2.4234 35.7955 42.3111 -Verdana_Bold.ttf 17 d 33.5311 45.6359 100 > 6.2481 38.0564 38.0564 -Verdana_Bold.ttf 17 d 33.5311 45.6359 101 ® 0.9712 49.2683 49.2683 -Verdana_Bold.ttf 17 d 33.5311 45.6359 102 © 1.0642 49.2683 49.2683 -Verdana_Bold.ttf 17 d 33.5311 45.6359 103 ] 0.0533 19.1555 55.6923 -Verdana_Bold.ttf 17 d 33.5311 45.6359 104 é -3.1542 33.9082 48.9606 -Verdana_Bold.ttf 17 d 33.5311 45.6359 105 z 12.5544 29.7357 31.9436 -Verdana_Bold.ttf 17 d 33.5311 45.6359 106 _ 48.2527 41.6923 6.0564 -Verdana_Bold.ttf 17 d 33.5311 45.6359 107 ¥ 2.0920 38.9042 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 1 t 0.9681 24.2160 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 2 h -1.7676 32.3226 44.4239 -Verdana_Bold.ttf 18 W 62.2208 42.3111 3 a 9.3191 31.7954 34.3675 -Verdana_Bold.ttf 18 W 62.2208 42.3111 4 n 9.0437 32.3226 33.1555 -Verdana_Bold.ttf 18 W 62.2208 42.3111 5 P 0.3078 35.4165 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 6 o 8.8629 35.1202 34.3675 -Verdana_Bold.ttf 18 W 62.2208 42.3111 7 e 8.9191 33.9082 34.3675 -Verdana_Bold.ttf 18 W 62.2208 42.3111 8 : 10.3674 10.6752 31.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 9 r 10.5829 23.3151 31.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 10 l -2.1280 10.2160 44.4239 -Verdana_Bold.ttf 18 W 62.2208 42.3111 11 i -2.5051 10.2160 44.4239 -Verdana_Bold.ttf 18 W 62.2208 42.3111 12 1 -0.3613 28.7413 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 13 | -2.0984 8.4803 55.6923 -Verdana_Bold.ttf 18 W 62.2208 42.3111 14 N -0.1395 38.8363 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 15 f -2.1704 24.5271 44.4239 -Verdana_Bold.ttf 18 W 62.2208 42.3111 16 g 9.2496 33.5311 44.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 17 d -2.0759 33.5311 45.6359 -Verdana_Bold.ttf 18 W 62.2208 42.3111 18 W -0.0692 62.2208 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 19 s 9.3161 29.7391 34.3675 -Verdana_Bold.ttf 18 W 62.2208 42.3111 20 c 8.9311 29.6826 34.3675 -Verdana_Bold.ttf 18 W 62.2208 42.3111 21 u 10.5685 32.3226 33.1555 -Verdana_Bold.ttf 18 W 62.2208 42.3111 22 3 -1.6879 33.8052 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 23 ~ 12.7905 41.7840 19.3716 -Verdana_Bold.ttf 18 W 62.2208 42.3111 24 # 0.0558 41.8499 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 25 O -1.1383 43.9002 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 26 ` -5.3174 16.9477 11.2684 -Verdana_Bold.ttf 18 W 62.2208 42.3111 27 @ -0.8389 47.6808 50.1066 -Verdana_Bold.ttf 18 W 62.2208 42.3111 28 F 0.0904 30.2610 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 29 S -1.3417 36.6318 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 30 p 8.9086 33.5311 44.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 31 “ -2.3276 30.4239 16.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 32 % -1.3430 66.6496 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 33 £ -1.1255 33.7487 43.5231 -Verdana_Bold.ttf 18 W 62.2208 42.3111 34 . 31.0523 10.6752 11.2684 -Verdana_Bold.ttf 18 W 62.2208 42.3111 35 2 -1.1429 33.2780 43.5231 -Verdana_Bold.ttf 18 W 62.2208 42.3111 36 5 -0.2380 33.0639 43.5231 -Verdana_Bold.ttf 18 W 62.2208 42.3111 37 m 9.5942 52.4335 33.1555 -Verdana_Bold.ttf 18 W 62.2208 42.3111 38 V 0.1936 42.3111 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 39 6 -1.3781 34.8011 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 40 w 10.3457 54.7880 31.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 41 T 0.1708 37.2507 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 42 M -0.2062 44.7331 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 43 G -1.1534 40.2643 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 44 b -1.8955 33.5311 45.6359 -Verdana_Bold.ttf 18 W 62.2208 42.3111 45 9 -1.2518 34.8011 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 46 ; 10.7618 16.5721 42.6188 -Verdana_Bold.ttf 18 W 62.2208 42.3111 47 D -0.4614 40.2643 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 48 L -0.0884 30.5721 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 49 y 10.4920 35.6325 43.5196 -Verdana_Bold.ttf 18 W 62.2208 42.3111 50 ‘ -1.4099 15.2120 16.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 51 \ -2.6833 31.6359 53.7390 -Verdana_Bold.ttf 18 W 62.2208 42.3111 52 R 0.5257 41.1651 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 53 < 4.0040 38.0564 38.0564 -Verdana_Bold.ttf 18 W 62.2208 42.3111 54 4 0.1356 37.2216 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 55 8 -0.9995 36.2291 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 56 0 -1.0516 35.0428 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 57 A -0.3494 43.5231 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 58 E 0.2201 30.7316 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 59 B 0.1611 36.1047 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 60 v 10.7846 35.6325 31.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 61 k -2.2297 34.5835 44.4239 -Verdana_Bold.ttf 18 W 62.2208 42.3111 62 J -0.0835 26.4804 43.5231 -Verdana_Bold.ttf 18 W 62.2208 42.3111 63 U -0.1697 38.0018 43.5231 -Verdana_Bold.ttf 18 W 62.2208 42.3111 64 j -2.3100 20.5270 56.0000 -Verdana_Bold.ttf 18 W 62.2208 42.3111 65 ( -1.8426 21.2683 56.0000 -Verdana_Bold.ttf 18 W 62.2208 42.3111 66 7 0.6875 33.3716 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 67 § -0.9739 33.3731 54.7915 -Verdana_Bold.ttf 18 W 62.2208 42.3111 68 $ -2.9737 34.4240 55.1557 -Verdana_Bold.ttf 18 W 62.2208 42.3111 69 € -1.2382 38.7447 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 70 / -2.0643 31.6359 53.7390 -Verdana_Bold.ttf 18 W 62.2208 42.3111 71 C -1.3183 36.1047 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 72 * -1.8711 32.2547 29.2120 -Verdana_Bold.ttf 18 W 62.2208 42.3111 73 ” -2.0785 30.4239 16.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 74 ? -1.4103 28.4593 43.5231 -Verdana_Bold.ttf 18 W 62.2208 42.3111 75 { -1.9339 31.3248 55.6923 -Verdana_Bold.ttf 18 W 62.2208 42.3111 76 } -1.7813 31.3248 55.6923 -Verdana_Bold.ttf 18 W 62.2208 42.3111 77 , 31.2914 16.5721 21.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 78 I 0.2044 24.5157 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 79 ° -1.0208 24.0564 23.8404 -Verdana_Bold.ttf 18 W 62.2208 42.3111 80 K 0.0050 39.5761 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 81 H 0.2444 38.3656 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 82 q 9.0900 33.5311 44.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 83 & -0.8050 48.3675 44.7350 -Verdana_Bold.ttf 18 W 62.2208 42.3111 84 ’ -1.8958 15.2120 16.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 85 [ -2.2166 19.1555 55.6923 -Verdana_Bold.ttf 18 W 62.2208 42.3111 86 - 19.5132 21.9436 7.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 87 Y 0.0853 42.5237 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 88 Q -0.6275 43.9002 55.0992 -Verdana_Bold.ttf 18 W 62.2208 42.3111 89 " -1.8120 25.0523 16.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 90 ! 0.0331 11.4279 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 91 x 10.4338 36.6284 31.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 92 ) -2.3043 21.2683 56.0000 -Verdana_Bold.ttf 18 W 62.2208 42.3111 93 = 12.3999 36.4803 23.1556 -Verdana_Bold.ttf 18 W 62.2208 42.3111 94 + 4.5952 38.3675 38.3675 -Verdana_Bold.ttf 18 W 62.2208 42.3111 95 X -0.0209 42.3111 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 96 » 8.4681 35.2683 30.4239 -Verdana_Bold.ttf 18 W 62.2208 42.3111 97 ' -1.9771 9.8404 16.7316 -Verdana_Bold.ttf 18 W 62.2208 42.3111 98 ¢ 0.4494 30.9492 51.8404 -Verdana_Bold.ttf 18 W 62.2208 42.3111 99 Z -0.0083 35.7955 42.3111 -Verdana_Bold.ttf 18 W 62.2208 42.3111 100 > 4.3633 38.0564 38.0564 -Verdana_Bold.ttf 18 W 62.2208 42.3111 101 ® -1.3436 49.2683 49.2683 -Verdana_Bold.ttf 18 W 62.2208 42.3111 102 © -1.6545 49.2683 49.2683 -Verdana_Bold.ttf 18 W 62.2208 42.3111 103 ] -1.9495 19.1555 55.6923 -Verdana_Bold.ttf 18 W 62.2208 42.3111 104 é -5.2186 33.9082 48.9606 -Verdana_Bold.ttf 18 W 62.2208 42.3111 105 z 10.3721 29.7357 31.9436 -Verdana_Bold.ttf 18 W 62.2208 42.3111 106 _ 46.6268 41.6923 6.0564 -Verdana_Bold.ttf 18 W 62.2208 42.3111 107 ¥ 0.2139 38.9042 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 1 t -7.8029 24.2160 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 2 h -11.0791 32.3226 44.4239 -Verdana_Bold.ttf 19 s 29.7391 34.3675 3 a 0.3044 31.7954 34.3675 -Verdana_Bold.ttf 19 s 29.7391 34.3675 4 n -0.0601 32.3226 33.1555 -Verdana_Bold.ttf 19 s 29.7391 34.3675 5 P -8.9379 35.4165 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 6 o -0.0036 35.1202 34.3675 -Verdana_Bold.ttf 19 s 29.7391 34.3675 7 e -0.2454 33.9082 34.3675 -Verdana_Bold.ttf 19 s 29.7391 34.3675 8 : 1.5003 10.6752 31.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 9 r 1.1971 23.3151 31.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 10 l -11.2411 10.2160 44.4239 -Verdana_Bold.ttf 19 s 29.7391 34.3675 11 i -11.4044 10.2160 44.4239 -Verdana_Bold.ttf 19 s 29.7391 34.3675 12 1 -8.8338 28.7413 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 13 | -11.1415 8.4803 55.6923 -Verdana_Bold.ttf 19 s 29.7391 34.3675 14 N -9.3719 38.8363 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 15 f -11.1385 24.5271 44.4239 -Verdana_Bold.ttf 19 s 29.7391 34.3675 16 g -0.0652 33.5311 44.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 17 d -11.0989 33.5311 45.6359 -Verdana_Bold.ttf 19 s 29.7391 34.3675 18 W -9.4007 62.2208 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 19 s 0.1167 29.7391 34.3675 -Verdana_Bold.ttf 19 s 29.7391 34.3675 20 c 0.0864 29.6826 34.3675 -Verdana_Bold.ttf 19 s 29.7391 34.3675 21 u 1.2334 32.3226 33.1555 -Verdana_Bold.ttf 19 s 29.7391 34.3675 22 3 -10.4348 33.8052 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 23 ~ 4.1215 41.7840 19.3716 -Verdana_Bold.ttf 19 s 29.7391 34.3675 24 # -9.4244 41.8499 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 25 O -10.8271 43.9002 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 26 ` -14.5576 16.9477 11.2684 -Verdana_Bold.ttf 19 s 29.7391 34.3675 27 @ -10.4673 47.6808 50.1066 -Verdana_Bold.ttf 19 s 29.7391 34.3675 28 F -9.0763 30.2610 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 29 S -10.4153 36.6318 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 30 p 0.0350 33.5311 44.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 31 “ -11.0519 30.4239 16.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 32 % -10.0544 66.6496 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 33 £ -10.2772 33.7487 43.5231 -Verdana_Bold.ttf 19 s 29.7391 34.3675 34 . 21.5794 10.6752 11.2684 -Verdana_Bold.ttf 19 s 29.7391 34.3675 35 2 -10.6136 33.2780 43.5231 -Verdana_Bold.ttf 19 s 29.7391 34.3675 36 5 -9.4351 33.0639 43.5231 -Verdana_Bold.ttf 19 s 29.7391 34.3675 37 m -0.0597 52.4335 33.1555 -Verdana_Bold.ttf 19 s 29.7391 34.3675 38 V -9.5295 42.3111 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 39 6 -10.1976 34.8011 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 40 w 1.2292 54.7880 31.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 41 T -9.3470 37.2507 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 42 M -9.3546 44.7331 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 43 G -10.4676 40.2643 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 44 b -11.3213 33.5311 45.6359 -Verdana_Bold.ttf 19 s 29.7391 34.3675 45 9 -10.3806 34.8011 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 46 ; 1.0162 16.5721 42.6188 -Verdana_Bold.ttf 19 s 29.7391 34.3675 47 D -9.1724 40.2643 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 48 L -8.9573 30.5721 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 49 y 1.2980 35.6325 43.5196 -Verdana_Bold.ttf 19 s 29.7391 34.3675 50 ‘ -11.4414 15.2120 16.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 51 \ -11.0635 31.6359 53.7390 -Verdana_Bold.ttf 19 s 29.7391 34.3675 52 R -9.3290 41.1651 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 53 < -4.9495 38.0564 38.0564 -Verdana_Bold.ttf 19 s 29.7391 34.3675 54 4 -9.1266 37.2216 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 55 8 -10.4651 36.2291 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 56 0 -10.2434 35.0428 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 57 A -8.9694 43.5231 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 58 E -9.0679 30.7316 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 59 B -8.9955 36.1047 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 60 v 1.3344 35.6325 31.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 61 k -11.4197 34.5835 44.4239 -Verdana_Bold.ttf 19 s 29.7391 34.3675 62 J -9.4449 26.4804 43.5231 -Verdana_Bold.ttf 19 s 29.7391 34.3675 63 U -8.9808 38.0018 43.5231 -Verdana_Bold.ttf 19 s 29.7391 34.3675 64 j -11.3054 20.5270 56.0000 -Verdana_Bold.ttf 19 s 29.7391 34.3675 65 ( -11.4606 21.2683 56.0000 -Verdana_Bold.ttf 19 s 29.7391 34.3675 66 7 -9.2325 33.3716 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 67 § -10.2527 33.3731 54.7915 -Verdana_Bold.ttf 19 s 29.7391 34.3675 68 $ -11.9226 34.4240 55.1557 -Verdana_Bold.ttf 19 s 29.7391 34.3675 69 € -10.4445 38.7447 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 70 / -11.2560 31.6359 53.7390 -Verdana_Bold.ttf 19 s 29.7391 34.3675 71 C -10.4383 36.1047 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 72 * -11.1767 32.2547 29.2120 -Verdana_Bold.ttf 19 s 29.7391 34.3675 73 ” -11.4385 30.4239 16.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 74 ? -10.4311 28.4593 43.5231 -Verdana_Bold.ttf 19 s 29.7391 34.3675 75 { -11.2715 31.3248 55.6923 -Verdana_Bold.ttf 19 s 29.7391 34.3675 76 } -11.5005 31.3248 55.6923 -Verdana_Bold.ttf 19 s 29.7391 34.3675 77 , 21.7753 16.5721 21.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 78 I -9.0652 24.5157 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 79 ° -10.1869 24.0564 23.8404 -Verdana_Bold.ttf 19 s 29.7391 34.3675 80 K -8.7566 39.5761 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 81 H -9.1280 38.3656 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 82 q -0.1375 33.5311 44.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 83 & -10.3124 48.3675 44.7350 -Verdana_Bold.ttf 19 s 29.7391 34.3675 84 ’ -11.2085 15.2120 16.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 85 [ -11.1026 19.1555 55.6923 -Verdana_Bold.ttf 19 s 29.7391 34.3675 86 - 9.8066 21.9436 7.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 87 Y -9.2099 42.5237 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 88 Q -10.2591 43.9002 55.0992 -Verdana_Bold.ttf 19 s 29.7391 34.3675 89 " -11.0366 25.0523 16.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 90 ! -9.0042 11.4279 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 91 x 1.4519 36.6284 31.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 92 ) -11.4077 21.2683 56.0000 -Verdana_Bold.ttf 19 s 29.7391 34.3675 93 = 2.5075 36.4803 23.1556 -Verdana_Bold.ttf 19 s 29.7391 34.3675 94 + -5.0922 38.3675 38.3675 -Verdana_Bold.ttf 19 s 29.7391 34.3675 95 X -8.9891 42.3111 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 96 » -1.0987 35.2683 30.4239 -Verdana_Bold.ttf 19 s 29.7391 34.3675 97 ' -11.2564 9.8404 16.7316 -Verdana_Bold.ttf 19 s 29.7391 34.3675 98 ¢ -9.1982 30.9492 51.8404 -Verdana_Bold.ttf 19 s 29.7391 34.3675 99 Z -8.9379 35.7955 42.3111 -Verdana_Bold.ttf 19 s 29.7391 34.3675 100 > -4.7213 38.0564 38.0564 -Verdana_Bold.ttf 19 s 29.7391 34.3675 101 ® -10.3324 49.2683 49.2683 -Verdana_Bold.ttf 19 s 29.7391 34.3675 102 © -10.3717 49.2683 49.2683 -Verdana_Bold.ttf 19 s 29.7391 34.3675 103 ] -11.3435 19.1555 55.6923 -Verdana_Bold.ttf 19 s 29.7391 34.3675 104 é -14.2282 33.9082 48.9606 -Verdana_Bold.ttf 19 s 29.7391 34.3675 105 z 1.1754 29.7357 31.9436 -Verdana_Bold.ttf 19 s 29.7391 34.3675 106 _ 36.9592 41.6923 6.0564 -Verdana_Bold.ttf 19 s 29.7391 34.3675 107 ¥ -9.3578 38.9042 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 1 t -7.8918 24.2160 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 2 h -11.0902 32.3226 44.4239 -Verdana_Bold.ttf 20 c 29.6826 34.3675 3 a -0.2373 31.7954 34.3675 -Verdana_Bold.ttf 20 c 29.6826 34.3675 4 n -0.2757 32.3226 33.1555 -Verdana_Bold.ttf 20 c 29.6826 34.3675 5 P -9.2163 35.4165 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 6 o 0.0033 35.1202 34.3675 -Verdana_Bold.ttf 20 c 29.6826 34.3675 7 e -0.1633 33.9082 34.3675 -Verdana_Bold.ttf 20 c 29.6826 34.3675 8 : 1.1303 10.6752 31.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 9 r 1.0658 23.3151 31.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 10 l -11.4664 10.2160 44.4239 -Verdana_Bold.ttf 20 c 29.6826 34.3675 11 i -11.2467 10.2160 44.4239 -Verdana_Bold.ttf 20 c 29.6826 34.3675 12 1 -9.0010 28.7413 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 13 | -11.3029 8.4803 55.6923 -Verdana_Bold.ttf 20 c 29.6826 34.3675 14 N -9.5306 38.8363 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 15 f -11.2738 24.5271 44.4239 -Verdana_Bold.ttf 20 c 29.6826 34.3675 16 g 0.2008 33.5311 44.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 17 d -11.3824 33.5311 45.6359 -Verdana_Bold.ttf 20 c 29.6826 34.3675 18 W -9.0437 62.2208 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 19 s 0.1595 29.7391 34.3675 -Verdana_Bold.ttf 20 c 29.6826 34.3675 20 c -0.0990 29.6826 34.3675 -Verdana_Bold.ttf 20 c 29.6826 34.3675 21 u 0.8435 32.3226 33.1555 -Verdana_Bold.ttf 20 c 29.6826 34.3675 22 3 -10.4098 33.8052 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 23 ~ 4.2888 41.7840 19.3716 -Verdana_Bold.ttf 20 c 29.6826 34.3675 24 # -9.2511 41.8499 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 25 O -10.1408 43.9002 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 26 ` -14.7613 16.9477 11.2684 -Verdana_Bold.ttf 20 c 29.6826 34.3675 27 @ -10.5030 47.6808 50.1066 -Verdana_Bold.ttf 20 c 29.6826 34.3675 28 F -9.1129 30.2610 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 29 S -10.2256 36.6318 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 30 p 0.0769 33.5311 44.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 31 “ -11.1267 30.4239 16.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 32 % -10.3931 66.6496 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 33 £ -10.5512 33.7487 43.5231 -Verdana_Bold.ttf 20 c 29.6826 34.3675 34 . 21.7056 10.6752 11.2684 -Verdana_Bold.ttf 20 c 29.6826 34.3675 35 2 -10.9994 33.2780 43.5231 -Verdana_Bold.ttf 20 c 29.6826 34.3675 36 5 -9.2515 33.0639 43.5231 -Verdana_Bold.ttf 20 c 29.6826 34.3675 37 m -0.0700 52.4335 33.1555 -Verdana_Bold.ttf 20 c 29.6826 34.3675 38 V -9.0821 42.3111 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 39 6 -10.5225 34.8011 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 40 w 1.2638 54.7880 31.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 41 T -9.1595 37.2507 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 42 M -9.3066 44.7331 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 43 G -10.5305 40.2643 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 44 b -11.2986 33.5311 45.6359 -Verdana_Bold.ttf 20 c 29.6826 34.3675 45 9 -10.5208 34.8011 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 46 ; 1.3128 16.5721 42.6188 -Verdana_Bold.ttf 20 c 29.6826 34.3675 47 D -9.2571 40.2643 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 48 L -8.9972 30.5721 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 49 y 1.4216 35.6325 43.5196 -Verdana_Bold.ttf 20 c 29.6826 34.3675 50 ‘ -11.3595 15.2120 16.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 51 \ -11.4965 31.6359 53.7390 -Verdana_Bold.ttf 20 c 29.6826 34.3675 52 R -9.2003 41.1651 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 53 < -5.2827 38.0564 38.0564 -Verdana_Bold.ttf 20 c 29.6826 34.3675 54 4 -9.0574 37.2216 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 55 8 -10.4098 36.2291 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 56 0 -10.5406 35.0428 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 57 A -9.1350 43.5231 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 58 E -8.9750 30.7316 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 59 B -9.2243 36.1047 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 60 v 1.1506 35.6325 31.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 61 k -11.3947 34.5835 44.4239 -Verdana_Bold.ttf 20 c 29.6826 34.3675 62 J -9.3392 26.4804 43.5231 -Verdana_Bold.ttf 20 c 29.6826 34.3675 63 U -9.1739 38.0018 43.5231 -Verdana_Bold.ttf 20 c 29.6826 34.3675 64 j -11.3784 20.5270 56.0000 -Verdana_Bold.ttf 20 c 29.6826 34.3675 65 ( -11.6600 21.2683 56.0000 -Verdana_Bold.ttf 20 c 29.6826 34.3675 66 7 -9.1045 33.3716 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 67 § -10.2824 33.3731 54.7915 -Verdana_Bold.ttf 20 c 29.6826 34.3675 68 $ -11.9746 34.4240 55.1557 -Verdana_Bold.ttf 20 c 29.6826 34.3675 69 € -10.5263 38.7447 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 70 / -11.1886 31.6359 53.7390 -Verdana_Bold.ttf 20 c 29.6826 34.3675 71 C -10.7044 36.1047 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 72 * -11.5873 32.2547 29.2120 -Verdana_Bold.ttf 20 c 29.6826 34.3675 73 ” -11.3054 30.4239 16.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 74 ? -10.1655 28.4593 43.5231 -Verdana_Bold.ttf 20 c 29.6826 34.3675 75 { -11.2314 31.3248 55.6923 -Verdana_Bold.ttf 20 c 29.6826 34.3675 76 } -11.0696 31.3248 55.6923 -Verdana_Bold.ttf 20 c 29.6826 34.3675 77 , 21.5676 16.5721 21.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 78 I -9.3200 24.5157 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 79 ° -10.1828 24.0564 23.8404 -Verdana_Bold.ttf 20 c 29.6826 34.3675 80 K -9.2379 39.5761 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 81 H -9.2473 38.3656 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 82 q -0.0337 33.5311 44.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 83 & -10.0667 48.3675 44.7350 -Verdana_Bold.ttf 20 c 29.6826 34.3675 84 ’ -11.2969 15.2120 16.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 85 [ -11.3601 19.1555 55.6923 -Verdana_Bold.ttf 20 c 29.6826 34.3675 86 - 9.7353 21.9436 7.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 87 Y -9.4307 42.5237 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 88 Q -10.6698 43.9002 55.0992 -Verdana_Bold.ttf 20 c 29.6826 34.3675 89 " -11.0918 25.0523 16.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 90 ! -9.2585 11.4279 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 91 x 1.0273 36.6284 31.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 92 ) -11.5365 21.2683 56.0000 -Verdana_Bold.ttf 20 c 29.6826 34.3675 93 = 2.5647 36.4803 23.1556 -Verdana_Bold.ttf 20 c 29.6826 34.3675 94 + -4.6829 38.3675 38.3675 -Verdana_Bold.ttf 20 c 29.6826 34.3675 95 X -9.1066 42.3111 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 96 » -0.9992 35.2683 30.4239 -Verdana_Bold.ttf 20 c 29.6826 34.3675 97 ' -11.1011 9.8404 16.7316 -Verdana_Bold.ttf 20 c 29.6826 34.3675 98 ¢ -8.7896 30.9492 51.8404 -Verdana_Bold.ttf 20 c 29.6826 34.3675 99 Z -8.9803 35.7955 42.3111 -Verdana_Bold.ttf 20 c 29.6826 34.3675 100 > -4.8825 38.0564 38.0564 -Verdana_Bold.ttf 20 c 29.6826 34.3675 101 ® -10.5054 49.2683 49.2683 -Verdana_Bold.ttf 20 c 29.6826 34.3675 102 © -10.4453 49.2683 49.2683 -Verdana_Bold.ttf 20 c 29.6826 34.3675 103 ] -11.4342 19.1555 55.6923 -Verdana_Bold.ttf 20 c 29.6826 34.3675 104 é -14.5236 33.9082 48.9606 -Verdana_Bold.ttf 20 c 29.6826 34.3675 105 z 1.5364 29.7357 31.9436 -Verdana_Bold.ttf 20 c 29.6826 34.3675 106 _ 37.2053 41.6923 6.0564 -Verdana_Bold.ttf 20 c 29.6826 34.3675 107 ¥ -9.4094 38.9042 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 1 t -9.2513 24.2160 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 2 h -12.5432 32.3226 44.4239 -Verdana_Bold.ttf 21 u 32.3226 33.1555 3 a -0.8352 31.7954 34.3675 -Verdana_Bold.ttf 21 u 32.3226 33.1555 4 n -1.2120 32.3226 33.1555 -Verdana_Bold.ttf 21 u 32.3226 33.1555 5 P -10.2926 35.4165 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 6 o -1.1652 35.1202 34.3675 -Verdana_Bold.ttf 21 u 32.3226 33.1555 7 e -1.1903 33.9082 34.3675 -Verdana_Bold.ttf 21 u 32.3226 33.1555 8 : 0.2052 10.6752 31.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 9 r 0.2792 23.3151 31.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 10 l -12.3748 10.2160 44.4239 -Verdana_Bold.ttf 21 u 32.3226 33.1555 11 i -12.6585 10.2160 44.4239 -Verdana_Bold.ttf 21 u 32.3226 33.1555 12 1 -10.7353 28.7413 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 13 | -12.6972 8.4803 55.6923 -Verdana_Bold.ttf 21 u 32.3226 33.1555 14 N -10.3114 38.8363 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 15 f -12.5678 24.5271 44.4239 -Verdana_Bold.ttf 21 u 32.3226 33.1555 16 g -1.2609 33.5311 44.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 17 d -12.8835 33.5311 45.6359 -Verdana_Bold.ttf 21 u 32.3226 33.1555 18 W -10.5711 62.2208 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 19 s -1.0293 29.7391 34.3675 -Verdana_Bold.ttf 21 u 32.3226 33.1555 20 c -1.0980 29.6826 34.3675 -Verdana_Bold.ttf 21 u 32.3226 33.1555 21 u 0.1861 32.3226 33.1555 -Verdana_Bold.ttf 21 u 32.3226 33.1555 22 3 -11.4647 33.8052 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 23 ~ 2.3835 41.7840 19.3716 -Verdana_Bold.ttf 21 u 32.3226 33.1555 24 # -10.6664 41.8499 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 25 O -11.6886 43.9002 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 26 ` -15.5793 16.9477 11.2684 -Verdana_Bold.ttf 21 u 32.3226 33.1555 27 @ -11.7462 47.6808 50.1066 -Verdana_Bold.ttf 21 u 32.3226 33.1555 28 F -10.0867 30.2610 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 29 S -11.5618 36.6318 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 30 p -1.1454 33.5311 44.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 31 “ -12.6184 30.4239 16.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 32 % -11.4844 66.6496 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 33 £ -11.9840 33.7487 43.5231 -Verdana_Bold.ttf 21 u 32.3226 33.1555 34 . 20.7694 10.6752 11.2684 -Verdana_Bold.ttf 21 u 32.3226 33.1555 35 2 -11.5030 33.2780 43.5231 -Verdana_Bold.ttf 21 u 32.3226 33.1555 36 5 -10.2228 33.0639 43.5231 -Verdana_Bold.ttf 21 u 32.3226 33.1555 37 m -1.5276 52.4335 33.1555 -Verdana_Bold.ttf 21 u 32.3226 33.1555 38 V -10.4476 42.3111 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 39 6 -11.9057 34.8011 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 40 w -0.0289 54.7880 31.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 41 T -10.3193 37.2507 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 42 M -10.2642 44.7331 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 43 G -11.8803 40.2643 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 44 b -12.4448 33.5311 45.6359 -Verdana_Bold.ttf 21 u 32.3226 33.1555 45 9 -11.2035 34.8011 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 46 ; 0.3555 16.5721 42.6188 -Verdana_Bold.ttf 21 u 32.3226 33.1555 47 D -10.2632 40.2643 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 48 L -10.2836 30.5721 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 49 y -0.0156 35.6325 43.5196 -Verdana_Bold.ttf 21 u 32.3226 33.1555 50 ‘ -12.3077 15.2120 16.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 51 \ -12.3973 31.6359 53.7390 -Verdana_Bold.ttf 21 u 32.3226 33.1555 52 R -10.4100 41.1651 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 53 < -5.9246 38.0564 38.0564 -Verdana_Bold.ttf 21 u 32.3226 33.1555 54 4 -10.2671 37.2216 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 55 8 -11.5215 36.2291 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 56 0 -11.4208 35.0428 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 57 A -10.3616 43.5231 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 58 E -10.7718 30.7316 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 59 B -10.0959 36.1047 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 60 v 0.2068 35.6325 31.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 61 k -12.4857 34.5835 44.4239 -Verdana_Bold.ttf 21 u 32.3226 33.1555 62 J -10.3701 26.4804 43.5231 -Verdana_Bold.ttf 21 u 32.3226 33.1555 63 U -10.1441 38.0018 43.5231 -Verdana_Bold.ttf 21 u 32.3226 33.1555 64 j -12.6573 20.5270 56.0000 -Verdana_Bold.ttf 21 u 32.3226 33.1555 65 ( -12.4480 21.2683 56.0000 -Verdana_Bold.ttf 21 u 32.3226 33.1555 66 7 -10.3088 33.3716 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 67 § -11.4953 33.3731 54.7915 -Verdana_Bold.ttf 21 u 32.3226 33.1555 68 $ -13.1172 34.4240 55.1557 -Verdana_Bold.ttf 21 u 32.3226 33.1555 69 € -11.6720 38.7447 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 70 / -12.2406 31.6359 53.7390 -Verdana_Bold.ttf 21 u 32.3226 33.1555 71 C -11.7365 36.1047 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 72 * -12.6358 32.2547 29.2120 -Verdana_Bold.ttf 21 u 32.3226 33.1555 73 ” -12.6498 30.4239 16.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 74 ? -11.6687 28.4593 43.5231 -Verdana_Bold.ttf 21 u 32.3226 33.1555 75 { -12.4829 31.3248 55.6923 -Verdana_Bold.ttf 21 u 32.3226 33.1555 76 } -12.5269 31.3248 55.6923 -Verdana_Bold.ttf 21 u 32.3226 33.1555 77 , 20.6925 16.5721 21.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 78 I -10.4456 24.5157 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 79 ° -11.5678 24.0564 23.8404 -Verdana_Bold.ttf 21 u 32.3226 33.1555 80 K -10.2979 39.5761 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 81 H -10.5679 38.3656 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 82 q -1.3080 33.5311 44.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 83 & -11.3207 48.3675 44.7350 -Verdana_Bold.ttf 21 u 32.3226 33.1555 84 ’ -12.3664 15.2120 16.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 85 [ -12.0713 19.1555 55.6923 -Verdana_Bold.ttf 21 u 32.3226 33.1555 86 - 8.8184 21.9436 7.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 87 Y -10.3568 42.5237 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 88 Q -11.9505 43.9002 55.0992 -Verdana_Bold.ttf 21 u 32.3226 33.1555 89 " -12.5002 25.0523 16.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 90 ! -10.3344 11.4279 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 91 x 0.1570 36.6284 31.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 92 ) -12.6956 21.2683 56.0000 -Verdana_Bold.ttf 21 u 32.3226 33.1555 93 = 1.5480 36.4803 23.1556 -Verdana_Bold.ttf 21 u 32.3226 33.1555 94 + -5.8670 38.3675 38.3675 -Verdana_Bold.ttf 21 u 32.3226 33.1555 95 X -10.2834 42.3111 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 96 » -2.5554 35.2683 30.4239 -Verdana_Bold.ttf 21 u 32.3226 33.1555 97 ' -12.3314 9.8404 16.7316 -Verdana_Bold.ttf 21 u 32.3226 33.1555 98 ¢ -10.3833 30.9492 51.8404 -Verdana_Bold.ttf 21 u 32.3226 33.1555 99 Z -10.2301 35.7955 42.3111 -Verdana_Bold.ttf 21 u 32.3226 33.1555 100 > -6.0654 38.0564 38.0564 -Verdana_Bold.ttf 21 u 32.3226 33.1555 101 ® -11.5330 49.2683 49.2683 -Verdana_Bold.ttf 21 u 32.3226 33.1555 102 © -11.4935 49.2683 49.2683 -Verdana_Bold.ttf 21 u 32.3226 33.1555 103 ] -12.7100 19.1555 55.6923 -Verdana_Bold.ttf 21 u 32.3226 33.1555 104 é -15.6364 33.9082 48.9606 -Verdana_Bold.ttf 21 u 32.3226 33.1555 105 z 0.1585 29.7357 31.9436 -Verdana_Bold.ttf 21 u 32.3226 33.1555 106 _ 35.8121 41.6923 6.0564 -Verdana_Bold.ttf 21 u 32.3226 33.1555 107 ¥ -10.4734 38.9042 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 1 t 2.6753 24.2160 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 2 h -0.9596 32.3226 44.4239 -Verdana_Bold.ttf 22 3 33.8052 44.7350 3 a 9.9255 31.7954 34.3675 -Verdana_Bold.ttf 22 3 33.8052 44.7350 4 n 10.1221 32.3226 33.1555 -Verdana_Bold.ttf 22 3 33.8052 44.7350 5 P 1.1817 35.4165 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 6 o 10.4419 35.1202 34.3675 -Verdana_Bold.ttf 22 3 33.8052 44.7350 7 e 10.2761 33.9082 34.3675 -Verdana_Bold.ttf 22 3 33.8052 44.7350 8 : 11.5327 10.6752 31.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 9 r 11.3575 23.3151 31.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 10 l -0.8663 10.2160 44.4239 -Verdana_Bold.ttf 22 3 33.8052 44.7350 11 i -0.8206 10.2160 44.4239 -Verdana_Bold.ttf 22 3 33.8052 44.7350 12 1 1.5665 28.7413 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 13 | -0.8548 8.4803 55.6923 -Verdana_Bold.ttf 22 3 33.8052 44.7350 14 N 1.0804 38.8363 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 15 f -0.7678 24.5271 44.4239 -Verdana_Bold.ttf 22 3 33.8052 44.7350 16 g 10.6442 33.5311 44.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 17 d -1.2075 33.5311 45.6359 -Verdana_Bold.ttf 22 3 33.8052 44.7350 18 W 0.7294 62.2208 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 19 s 10.3759 29.7391 34.3675 -Verdana_Bold.ttf 22 3 33.8052 44.7350 20 c 10.2706 29.6826 34.3675 -Verdana_Bold.ttf 22 3 33.8052 44.7350 21 u 11.6433 32.3226 33.1555 -Verdana_Bold.ttf 22 3 33.8052 44.7350 22 3 0.2933 33.8052 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 23 ~ 14.5457 41.7840 19.3716 -Verdana_Bold.ttf 22 3 33.8052 44.7350 24 # 1.3823 41.8499 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 25 O -0.3638 43.9002 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 26 ` -4.4258 16.9477 11.2684 -Verdana_Bold.ttf 22 3 33.8052 44.7350 27 @ -0.2206 47.6808 50.1066 -Verdana_Bold.ttf 22 3 33.8052 44.7350 28 F 1.3206 30.2610 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 29 S -0.2202 36.6318 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 30 p 10.0879 33.5311 44.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 31 “ -0.7539 30.4239 16.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 32 % 0.3391 66.6496 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 33 £ -0.0425 33.7487 43.5231 -Verdana_Bold.ttf 22 3 33.8052 44.7350 34 . 32.0978 10.6752 11.2684 -Verdana_Bold.ttf 22 3 33.8052 44.7350 35 2 -0.0837 33.2780 43.5231 -Verdana_Bold.ttf 22 3 33.8052 44.7350 36 5 1.0890 33.0639 43.5231 -Verdana_Bold.ttf 22 3 33.8052 44.7350 37 m 9.9567 52.4335 33.1555 -Verdana_Bold.ttf 22 3 33.8052 44.7350 38 V 1.2039 42.3111 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 39 6 0.0539 34.8011 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 40 w 11.7800 54.7880 31.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 41 T 1.6210 37.2507 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 42 M 1.0134 44.7331 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 43 G 0.2007 40.2643 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 44 b -1.0714 33.5311 45.6359 -Verdana_Bold.ttf 22 3 33.8052 44.7350 45 9 -0.1868 34.8011 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 46 ; 11.3898 16.5721 42.6188 -Verdana_Bold.ttf 22 3 33.8052 44.7350 47 D 1.1083 40.2643 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 48 L 1.1157 30.5721 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 49 y 11.8519 35.6325 43.5196 -Verdana_Bold.ttf 22 3 33.8052 44.7350 50 ‘ -1.1419 15.2120 16.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 51 \ -0.8914 31.6359 53.7390 -Verdana_Bold.ttf 22 3 33.8052 44.7350 52 R 1.0658 41.1651 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 53 < 5.1923 38.0564 38.0564 -Verdana_Bold.ttf 22 3 33.8052 44.7350 54 4 1.3500 37.2216 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 55 8 0.0214 36.2291 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 56 0 -0.0831 35.0428 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 57 A 1.2025 43.5231 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 58 E 1.0414 30.7316 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 59 B 1.0723 36.1047 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 60 v 11.4441 35.6325 31.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 61 k -1.0786 34.5835 44.4239 -Verdana_Bold.ttf 22 3 33.8052 44.7350 62 J 1.5229 26.4804 43.5231 -Verdana_Bold.ttf 22 3 33.8052 44.7350 63 U 1.1421 38.0018 43.5231 -Verdana_Bold.ttf 22 3 33.8052 44.7350 64 j -1.0234 20.5270 56.0000 -Verdana_Bold.ttf 22 3 33.8052 44.7350 65 ( -0.5920 21.2683 56.0000 -Verdana_Bold.ttf 22 3 33.8052 44.7350 66 7 1.2078 33.3716 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 67 § -0.3653 33.3731 54.7915 -Verdana_Bold.ttf 22 3 33.8052 44.7350 68 $ -1.4311 34.4240 55.1557 -Verdana_Bold.ttf 22 3 33.8052 44.7350 69 € 0.0650 38.7447 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 70 / -1.0005 31.6359 53.7390 -Verdana_Bold.ttf 22 3 33.8052 44.7350 71 C 0.1640 36.1047 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 72 * -1.2266 32.2547 29.2120 -Verdana_Bold.ttf 22 3 33.8052 44.7350 73 ” -0.9879 30.4239 16.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 74 ? 0.1777 28.4593 43.5231 -Verdana_Bold.ttf 22 3 33.8052 44.7350 75 { -0.9256 31.3248 55.6923 -Verdana_Bold.ttf 22 3 33.8052 44.7350 76 } -0.9490 31.3248 55.6923 -Verdana_Bold.ttf 22 3 33.8052 44.7350 77 , 32.4440 16.5721 21.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 78 I 0.7138 24.5157 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 79 ° 0.1126 24.0564 23.8404 -Verdana_Bold.ttf 22 3 33.8052 44.7350 80 K 0.9794 39.5761 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 81 H 1.3989 38.3656 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 82 q 10.0998 33.5311 44.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 83 & -0.3277 48.3675 44.7350 -Verdana_Bold.ttf 22 3 33.8052 44.7350 84 ’ -0.8989 15.2120 16.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 85 [ -0.7188 19.1555 55.6923 -Verdana_Bold.ttf 22 3 33.8052 44.7350 86 - 20.4952 21.9436 7.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 87 Y 1.2739 42.5237 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 88 Q -0.2667 43.9002 55.0992 -Verdana_Bold.ttf 22 3 33.8052 44.7350 89 " -1.0383 25.0523 16.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 90 ! 1.2495 11.4279 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 91 x 11.5429 36.6284 31.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 92 ) -0.8428 21.2683 56.0000 -Verdana_Bold.ttf 22 3 33.8052 44.7350 93 = 13.0898 36.4803 23.1556 -Verdana_Bold.ttf 22 3 33.8052 44.7350 94 + 5.8871 38.3675 38.3675 -Verdana_Bold.ttf 22 3 33.8052 44.7350 95 X 1.4224 42.3111 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 96 » 9.2783 35.2683 30.4239 -Verdana_Bold.ttf 22 3 33.8052 44.7350 97 ' -1.0178 9.8404 16.7316 -Verdana_Bold.ttf 22 3 33.8052 44.7350 98 ¢ 1.4957 30.9492 51.8404 -Verdana_Bold.ttf 22 3 33.8052 44.7350 99 Z 1.5035 35.7955 42.3111 -Verdana_Bold.ttf 22 3 33.8052 44.7350 100 > 5.2888 38.0564 38.0564 -Verdana_Bold.ttf 22 3 33.8052 44.7350 101 ® 0.1401 49.2683 49.2683 -Verdana_Bold.ttf 22 3 33.8052 44.7350 102 © 0.1739 49.2683 49.2683 -Verdana_Bold.ttf 22 3 33.8052 44.7350 103 ] -1.1276 19.1555 55.6923 -Verdana_Bold.ttf 22 3 33.8052 44.7350 104 é -4.2943 33.9082 48.9606 -Verdana_Bold.ttf 22 3 33.8052 44.7350 105 z 11.6575 29.7357 31.9436 -Verdana_Bold.ttf 22 3 33.8052 44.7350 106 _ 47.6547 41.6923 6.0564 -Verdana_Bold.ttf 22 3 33.8052 44.7350 107 ¥ 1.3070 38.9042 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 1 t -11.9152 24.2160 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 2 h -15.4396 32.3226 44.4239 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 3 a -3.9942 31.7954 34.3675 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 4 n -4.1903 32.3226 33.1555 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 5 P -13.0999 35.4165 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 6 o -4.1712 35.1202 34.3675 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 7 e -3.9784 33.9082 34.3675 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 8 : -3.0011 10.6752 31.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 9 r -3.1323 23.3151 31.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 10 l -15.0101 10.2160 44.4239 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 11 i -15.1674 10.2160 44.4239 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 12 1 -13.1081 28.7413 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 13 | -14.9912 8.4803 55.6923 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 14 N -13.6858 38.8363 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 15 f -15.4469 24.5271 44.4239 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 16 g -4.3572 33.5311 44.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 17 d -15.2673 33.5311 45.6359 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 18 W -12.9378 62.2208 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 19 s -4.1352 29.7391 34.3675 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 20 c -4.0562 29.6826 34.3675 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 21 u -3.0510 32.3226 33.1555 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 22 3 -14.7443 33.8052 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 23 ~ 0.6022 41.7840 19.3716 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 24 # -13.3505 41.8499 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 25 O -14.7167 43.9002 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 26 ` -19.1202 16.9477 11.2684 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 27 @ -14.7917 47.6808 50.1066 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 28 F -13.2656 30.2610 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 29 S -14.5359 36.6318 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 30 p -3.8543 33.5311 44.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 31 “ -15.6357 30.4239 16.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 32 % -14.5772 66.6496 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 33 £ -14.2166 33.7487 43.5231 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 34 . 18.0586 10.6752 11.2684 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 35 2 -14.7368 33.2780 43.5231 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 36 5 -13.2135 33.0639 43.5231 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 37 m -4.1525 52.4335 33.1555 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 38 V -13.5143 42.3111 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 39 6 -14.0280 34.8011 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 40 w -2.6969 54.7880 31.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 41 T -13.5539 37.2507 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 42 M -13.4103 44.7331 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 43 G -14.5230 40.2643 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 44 b -15.0617 33.5311 45.6359 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 45 9 -14.5511 34.8011 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 46 ; -2.8756 16.5721 42.6188 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 47 D -13.5547 40.2643 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 48 L -13.1219 30.5721 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 49 y -2.7510 35.6325 43.5196 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 50 ‘ -15.8345 15.2120 16.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 51 \ -15.3587 31.6359 53.7390 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 52 R -13.1667 41.1651 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 53 < -9.1502 38.0564 38.0564 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 54 4 -13.2426 37.2216 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 55 8 -14.1984 36.2291 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 56 0 -14.0044 35.0428 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 57 A -13.4231 43.5231 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 58 E -13.1853 30.7316 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 59 B -12.9320 36.1047 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 60 v -2.9567 35.6325 31.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 61 k -15.5184 34.5835 44.4239 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 62 J -13.3679 26.4804 43.5231 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 63 U -13.5438 38.0018 43.5231 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 64 j -15.2972 20.5270 56.0000 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 65 ( -15.4047 21.2683 56.0000 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 66 7 -13.1135 33.3716 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 67 § -14.5442 33.3731 54.7915 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 68 $ -16.0458 34.4240 55.1557 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 69 € -14.3101 38.7447 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 70 / -15.2771 31.6359 53.7390 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 71 C -14.4219 36.1047 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 72 * -15.3508 32.2547 29.2120 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 73 ” -15.5644 30.4239 16.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 74 ? -14.5630 28.4593 43.5231 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 75 { -15.2835 31.3248 55.6923 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 76 } -15.7440 31.3248 55.6923 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 77 , 17.5052 16.5721 21.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 78 I -13.3804 24.5157 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 79 ° -15.1030 24.0564 23.8404 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 80 K -13.0952 39.5761 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 81 H -13.1011 38.3656 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 82 q -3.8377 33.5311 44.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 83 & -14.7917 48.3675 44.7350 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 84 ’ -15.2598 15.2120 16.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 85 [ -15.2337 19.1555 55.6923 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 86 - 6.3181 21.9436 7.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 87 Y -13.0225 42.5237 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 88 Q -14.7807 43.9002 55.0992 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 89 " -15.2165 25.0523 16.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 90 ! -13.3087 11.4279 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 91 x -2.7430 36.6284 31.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 92 ) -15.2540 21.2683 56.0000 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 93 = -1.2901 36.4803 23.1556 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 94 + -8.7809 38.3675 38.3675 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 95 X -13.3583 42.3111 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 96 » -4.9598 35.2683 30.4239 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 97 ' -15.2774 9.8404 16.7316 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 98 ¢ -12.8200 30.9492 51.8404 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 99 Z -12.9528 35.7955 42.3111 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 100 > -9.4958 38.0564 38.0564 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 101 ® -14.5953 49.2683 49.2683 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 102 © -14.7541 49.2683 49.2683 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 103 ] -15.3870 19.1555 55.6923 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 104 é -18.8077 33.9082 48.9606 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 105 z -2.8474 29.7357 31.9436 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 106 _ 32.8880 41.6923 6.0564 -Verdana_Bold.ttf 23 ~ 41.7840 19.3716 107 ¥ -13.1431 38.9042 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 1 t 1.3008 24.2160 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 2 h -2.3276 32.3226 44.4239 -Verdana_Bold.ttf 24 # 41.8499 42.3111 3 a 8.9992 31.7954 34.3675 -Verdana_Bold.ttf 24 # 41.8499 42.3111 4 n 9.2464 32.3226 33.1555 -Verdana_Bold.ttf 24 # 41.8499 42.3111 5 P -0.1821 35.4165 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 6 o 9.5006 35.1202 34.3675 -Verdana_Bold.ttf 24 # 41.8499 42.3111 7 e 8.9318 33.9082 34.3675 -Verdana_Bold.ttf 24 # 41.8499 42.3111 8 : 10.0920 10.6752 31.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 9 r 10.4561 23.3151 31.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 10 l -2.5981 10.2160 44.4239 -Verdana_Bold.ttf 24 # 41.8499 42.3111 11 i -2.2852 10.2160 44.4239 -Verdana_Bold.ttf 24 # 41.8499 42.3111 12 1 -0.1681 28.7413 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 13 | -2.2624 8.4803 55.6923 -Verdana_Bold.ttf 24 # 41.8499 42.3111 14 N -0.1003 38.8363 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 15 f -2.1927 24.5271 44.4239 -Verdana_Bold.ttf 24 # 41.8499 42.3111 16 g 9.1348 33.5311 44.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 17 d -2.0165 33.5311 45.6359 -Verdana_Bold.ttf 24 # 41.8499 42.3111 18 W -0.0356 62.2208 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 19 s 9.0096 29.7391 34.3675 -Verdana_Bold.ttf 24 # 41.8499 42.3111 20 c 9.1684 29.6826 34.3675 -Verdana_Bold.ttf 24 # 41.8499 42.3111 21 u 10.1240 32.3226 33.1555 -Verdana_Bold.ttf 24 # 41.8499 42.3111 22 3 -1.4419 33.8052 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 23 ~ 13.3068 41.7840 19.3716 -Verdana_Bold.ttf 24 # 41.8499 42.3111 24 # 0.1087 41.8499 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 25 O -1.2600 43.9002 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 26 ` -5.4102 16.9477 11.2684 -Verdana_Bold.ttf 24 # 41.8499 42.3111 27 @ -1.0476 47.6808 50.1066 -Verdana_Bold.ttf 24 # 41.8499 42.3111 28 F -0.0461 30.2610 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 29 S -1.3821 36.6318 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 30 p 9.4644 33.5311 44.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 31 “ -2.0389 30.4239 16.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 32 % -1.4262 66.6496 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 33 £ -1.3401 33.7487 43.5231 -Verdana_Bold.ttf 24 # 41.8499 42.3111 34 . 30.9114 10.6752 11.2684 -Verdana_Bold.ttf 24 # 41.8499 42.3111 35 2 -1.3516 33.2780 43.5231 -Verdana_Bold.ttf 24 # 41.8499 42.3111 36 5 0.2947 33.0639 43.5231 -Verdana_Bold.ttf 24 # 41.8499 42.3111 37 m 9.1810 52.4335 33.1555 -Verdana_Bold.ttf 24 # 41.8499 42.3111 38 V 0.1778 42.3111 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 39 6 -0.7683 34.8011 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 40 w 9.9792 54.7880 31.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 41 T 0.1325 37.2507 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 42 M 0.0769 44.7331 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 43 G -1.5203 40.2643 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 44 b -2.0759 33.5311 45.6359 -Verdana_Bold.ttf 24 # 41.8499 42.3111 45 9 -1.3310 34.8011 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 46 ; 10.2492 16.5721 42.6188 -Verdana_Bold.ttf 24 # 41.8499 42.3111 47 D 0.0039 40.2643 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 48 L 0.1923 30.5721 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 49 y 10.4034 35.6325 43.5196 -Verdana_Bold.ttf 24 # 41.8499 42.3111 50 ‘ -1.8513 15.2120 16.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 51 \ -1.9039 31.6359 53.7390 -Verdana_Bold.ttf 24 # 41.8499 42.3111 52 R -0.0192 41.1651 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 53 < 4.1565 38.0564 38.0564 -Verdana_Bold.ttf 24 # 41.8499 42.3111 54 4 -0.0098 37.2216 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 55 8 -1.3657 36.2291 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 56 0 -0.8773 35.0428 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 57 A -0.3225 43.5231 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 58 E -0.1586 30.7316 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 59 B 0.2478 36.1047 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 60 v 10.5289 35.6325 31.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 61 k -2.3071 34.5835 44.4239 -Verdana_Bold.ttf 24 # 41.8499 42.3111 62 J -0.0802 26.4804 43.5231 -Verdana_Bold.ttf 24 # 41.8499 42.3111 63 U -0.2710 38.0018 43.5231 -Verdana_Bold.ttf 24 # 41.8499 42.3111 64 j -1.9669 20.5270 56.0000 -Verdana_Bold.ttf 24 # 41.8499 42.3111 65 ( -1.7486 21.2683 56.0000 -Verdana_Bold.ttf 24 # 41.8499 42.3111 66 7 -0.0630 33.3716 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 67 § -1.1836 33.3731 54.7915 -Verdana_Bold.ttf 24 # 41.8499 42.3111 68 $ -3.0301 34.4240 55.1557 -Verdana_Bold.ttf 24 # 41.8499 42.3111 69 € -1.0680 38.7447 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 70 / -1.8149 31.6359 53.7390 -Verdana_Bold.ttf 24 # 41.8499 42.3111 71 C -1.3360 36.1047 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 72 * -2.0965 32.2547 29.2120 -Verdana_Bold.ttf 24 # 41.8499 42.3111 73 ” -2.1021 30.4239 16.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 74 ? -1.3361 28.4593 43.5231 -Verdana_Bold.ttf 24 # 41.8499 42.3111 75 { -2.0302 31.3248 55.6923 -Verdana_Bold.ttf 24 # 41.8499 42.3111 76 } -2.0126 31.3248 55.6923 -Verdana_Bold.ttf 24 # 41.8499 42.3111 77 , 30.9642 16.5721 21.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 78 I 0.4017 24.5157 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 79 ° -1.2526 24.0564 23.8404 -Verdana_Bold.ttf 24 # 41.8499 42.3111 80 K 0.1815 39.5761 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 81 H -0.0158 38.3656 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 82 q 9.1758 33.5311 44.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 83 & -1.1008 48.3675 44.7350 -Verdana_Bold.ttf 24 # 41.8499 42.3111 84 ’ -1.8640 15.2120 16.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 85 [ -2.2639 19.1555 55.6923 -Verdana_Bold.ttf 24 # 41.8499 42.3111 86 - 19.4130 21.9436 7.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 87 Y -0.0564 42.5237 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 88 Q -1.2397 43.9002 55.0992 -Verdana_Bold.ttf 24 # 41.8499 42.3111 89 " -2.1687 25.0523 16.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 90 ! -0.0714 11.4279 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 91 x 10.4590 36.6284 31.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 92 ) -1.9884 21.2683 56.0000 -Verdana_Bold.ttf 24 # 41.8499 42.3111 93 = 11.7012 36.4803 23.1556 -Verdana_Bold.ttf 24 # 41.8499 42.3111 94 + 4.2962 38.3675 38.3675 -Verdana_Bold.ttf 24 # 41.8499 42.3111 95 X -0.0574 42.3111 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 96 » 8.3379 35.2683 30.4239 -Verdana_Bold.ttf 24 # 41.8499 42.3111 97 ' -1.6804 9.8404 16.7316 -Verdana_Bold.ttf 24 # 41.8499 42.3111 98 ¢ 0.4842 30.9492 51.8404 -Verdana_Bold.ttf 24 # 41.8499 42.3111 99 Z 0.1659 35.7955 42.3111 -Verdana_Bold.ttf 24 # 41.8499 42.3111 100 > 4.2914 38.0564 38.0564 -Verdana_Bold.ttf 24 # 41.8499 42.3111 101 ® -1.2215 49.2683 49.2683 -Verdana_Bold.ttf 24 # 41.8499 42.3111 102 © -1.1309 49.2683 49.2683 -Verdana_Bold.ttf 24 # 41.8499 42.3111 103 ] -2.1308 19.1555 55.6923 -Verdana_Bold.ttf 24 # 41.8499 42.3111 104 é -5.5293 33.9082 48.9606 -Verdana_Bold.ttf 24 # 41.8499 42.3111 105 z 10.2159 29.7357 31.9436 -Verdana_Bold.ttf 24 # 41.8499 42.3111 106 _ 46.1744 41.6923 6.0564 -Verdana_Bold.ttf 24 # 41.8499 42.3111 107 ¥ -0.1649 38.9042 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 1 t 2.5502 24.2160 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 2 h -0.9513 32.3226 44.4239 -Verdana_Bold.ttf 25 O 43.9002 44.7350 3 a 10.2380 31.7954 34.3675 -Verdana_Bold.ttf 25 O 43.9002 44.7350 4 n 10.3603 32.3226 33.1555 -Verdana_Bold.ttf 25 O 43.9002 44.7350 5 P 1.2210 35.4165 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 6 o 10.4169 35.1202 34.3675 -Verdana_Bold.ttf 25 O 43.9002 44.7350 7 e 10.4141 33.9082 34.3675 -Verdana_Bold.ttf 25 O 43.9002 44.7350 8 : 11.7062 10.6752 31.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 9 r 11.5879 23.3151 31.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 10 l -1.3607 10.2160 44.4239 -Verdana_Bold.ttf 25 O 43.9002 44.7350 11 i -0.9761 10.2160 44.4239 -Verdana_Bold.ttf 25 O 43.9002 44.7350 12 1 1.0107 28.7413 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 13 | -1.1519 8.4803 55.6923 -Verdana_Bold.ttf 25 O 43.9002 44.7350 14 N 0.8922 38.8363 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 15 f -0.8915 24.5271 44.4239 -Verdana_Bold.ttf 25 O 43.9002 44.7350 16 g 10.4446 33.5311 44.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 17 d -0.6803 33.5311 45.6359 -Verdana_Bold.ttf 25 O 43.9002 44.7350 18 W 1.3264 62.2208 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 19 s 10.5482 29.7391 34.3675 -Verdana_Bold.ttf 25 O 43.9002 44.7350 20 c 10.1692 29.6826 34.3675 -Verdana_Bold.ttf 25 O 43.9002 44.7350 21 u 11.6089 32.3226 33.1555 -Verdana_Bold.ttf 25 O 43.9002 44.7350 22 3 0.0559 33.8052 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 23 ~ 14.8710 41.7840 19.3716 -Verdana_Bold.ttf 25 O 43.9002 44.7350 24 # 0.8839 41.8499 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 25 O 0.0424 43.9002 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 26 ` -4.4227 16.9477 11.2684 -Verdana_Bold.ttf 25 O 43.9002 44.7350 27 @ 0.2458 47.6808 50.1066 -Verdana_Bold.ttf 25 O 43.9002 44.7350 28 F 1.3251 30.2610 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 29 S -0.3601 36.6318 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 30 p 10.9077 33.5311 44.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 31 “ -0.9194 30.4239 16.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 32 % -0.0789 66.6496 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 33 £ 0.2731 33.7487 43.5231 -Verdana_Bold.ttf 25 O 43.9002 44.7350 34 . 31.9847 10.6752 11.2684 -Verdana_Bold.ttf 25 O 43.9002 44.7350 35 2 0.2028 33.2780 43.5231 -Verdana_Bold.ttf 25 O 43.9002 44.7350 36 5 1.0967 33.0639 43.5231 -Verdana_Bold.ttf 25 O 43.9002 44.7350 37 m 10.2960 52.4335 33.1555 -Verdana_Bold.ttf 25 O 43.9002 44.7350 38 V 0.9597 42.3111 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 39 6 -0.3987 34.8011 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 40 w 11.4116 54.7880 31.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 41 T 1.0644 37.2507 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 42 M 1.2875 44.7331 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 43 G -0.1650 40.2643 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 44 b -0.8025 33.5311 45.6359 -Verdana_Bold.ttf 25 O 43.9002 44.7350 45 9 0.0066 34.8011 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 46 ; 11.6330 16.5721 42.6188 -Verdana_Bold.ttf 25 O 43.9002 44.7350 47 D 1.4278 40.2643 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 48 L 1.2072 30.5721 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 49 y 11.4560 35.6325 43.5196 -Verdana_Bold.ttf 25 O 43.9002 44.7350 50 ‘ -0.7202 15.2120 16.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 51 \ -0.9570 31.6359 53.7390 -Verdana_Bold.ttf 25 O 43.9002 44.7350 52 R 1.4184 41.1651 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 53 < 5.5128 38.0564 38.0564 -Verdana_Bold.ttf 25 O 43.9002 44.7350 54 4 0.9101 37.2216 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 55 8 -0.1349 36.2291 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 56 0 0.2130 35.0428 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 57 A 0.8986 43.5231 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 58 E 1.1932 30.7316 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 59 B 1.2455 36.1047 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 60 v 11.4103 35.6325 31.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 61 k -0.8689 34.5835 44.4239 -Verdana_Bold.ttf 25 O 43.9002 44.7350 62 J 1.2739 26.4804 43.5231 -Verdana_Bold.ttf 25 O 43.9002 44.7350 63 U 1.2390 38.0018 43.5231 -Verdana_Bold.ttf 25 O 43.9002 44.7350 64 j -0.9042 20.5270 56.0000 -Verdana_Bold.ttf 25 O 43.9002 44.7350 65 ( -0.9900 21.2683 56.0000 -Verdana_Bold.ttf 25 O 43.9002 44.7350 66 7 1.6327 33.3716 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 67 § -0.2910 33.3731 54.7915 -Verdana_Bold.ttf 25 O 43.9002 44.7350 68 $ -1.4492 34.4240 55.1557 -Verdana_Bold.ttf 25 O 43.9002 44.7350 69 € -0.0111 38.7447 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 70 / -0.8296 31.6359 53.7390 -Verdana_Bold.ttf 25 O 43.9002 44.7350 71 C -0.1277 36.1047 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 72 * -0.6796 32.2547 29.2120 -Verdana_Bold.ttf 25 O 43.9002 44.7350 73 ” -0.9606 30.4239 16.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 74 ? -0.0199 28.4593 43.5231 -Verdana_Bold.ttf 25 O 43.9002 44.7350 75 { -1.1066 31.3248 55.6923 -Verdana_Bold.ttf 25 O 43.9002 44.7350 76 } -0.5540 31.3248 55.6923 -Verdana_Bold.ttf 25 O 43.9002 44.7350 77 , 31.9963 16.5721 21.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 78 I 0.9468 24.5157 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 79 ° 0.0454 24.0564 23.8404 -Verdana_Bold.ttf 25 O 43.9002 44.7350 80 K 0.9397 39.5761 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 81 H 1.5231 38.3656 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 82 q 10.4628 33.5311 44.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 83 & 0.1437 48.3675 44.7350 -Verdana_Bold.ttf 25 O 43.9002 44.7350 84 ’ -0.9228 15.2120 16.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 85 [ -0.8782 19.1555 55.6923 -Verdana_Bold.ttf 25 O 43.9002 44.7350 86 - 20.4929 21.9436 7.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 87 Y 1.4521 42.5237 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 88 Q 0.1198 43.9002 55.0992 -Verdana_Bold.ttf 25 O 43.9002 44.7350 89 " -0.8258 25.0523 16.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 90 ! 1.6031 11.4279 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 91 x 11.5608 36.6284 31.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 92 ) -1.2032 21.2683 56.0000 -Verdana_Bold.ttf 25 O 43.9002 44.7350 93 = 12.7299 36.4803 23.1556 -Verdana_Bold.ttf 25 O 43.9002 44.7350 94 + 5.7401 38.3675 38.3675 -Verdana_Bold.ttf 25 O 43.9002 44.7350 95 X 1.3998 42.3111 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 96 » 8.8638 35.2683 30.4239 -Verdana_Bold.ttf 25 O 43.9002 44.7350 97 ' -1.1772 9.8404 16.7316 -Verdana_Bold.ttf 25 O 43.9002 44.7350 98 ¢ 1.4197 30.9492 51.8404 -Verdana_Bold.ttf 25 O 43.9002 44.7350 99 Z 0.8710 35.7955 42.3111 -Verdana_Bold.ttf 25 O 43.9002 44.7350 100 > 5.5158 38.0564 38.0564 -Verdana_Bold.ttf 25 O 43.9002 44.7350 101 ® -0.0776 49.2683 49.2683 -Verdana_Bold.ttf 25 O 43.9002 44.7350 102 © 0.4045 49.2683 49.2683 -Verdana_Bold.ttf 25 O 43.9002 44.7350 103 ] -0.7421 19.1555 55.6923 -Verdana_Bold.ttf 25 O 43.9002 44.7350 104 é -4.4678 33.9082 48.9606 -Verdana_Bold.ttf 25 O 43.9002 44.7350 105 z 11.9053 29.7357 31.9436 -Verdana_Bold.ttf 25 O 43.9002 44.7350 106 _ 47.2655 41.6923 6.0564 -Verdana_Bold.ttf 25 O 43.9002 44.7350 107 ¥ 1.2671 38.9042 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 1 t 6.8302 24.2160 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 2 h 3.1998 32.3226 44.4239 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 3 a 14.2108 31.7954 34.3675 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 4 n 14.3495 32.3226 33.1555 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 5 P 5.4672 35.4165 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 6 o 14.6245 35.1202 34.3675 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 7 e 14.5265 33.9082 34.3675 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 8 : 15.4605 10.6752 31.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 9 r 16.1214 23.3151 31.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 10 l 3.3655 10.2160 44.4239 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 11 i 3.0934 10.2160 44.4239 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 12 1 5.3217 28.7413 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 13 | 3.2900 8.4803 55.6923 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 14 N 5.3118 38.8363 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 15 f 3.3882 24.5271 44.4239 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 16 g 14.3952 33.5311 44.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 17 d 3.2286 33.5311 45.6359 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 18 W 5.4140 62.2208 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 19 s 14.5802 29.7391 34.3675 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 20 c 14.5823 29.6826 34.3675 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 21 u 15.8403 32.3226 33.1555 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 22 3 4.3367 33.8052 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 23 ~ 18.4171 41.7840 19.3716 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 24 # 5.5870 41.8499 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 25 O 3.7134 43.9002 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 26 ` 0.2808 16.9477 11.2684 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 27 @ 4.0776 47.6808 50.1066 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 28 F 5.2174 30.2610 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 29 S 4.1328 36.6318 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 30 p 14.6417 33.5311 44.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 31 “ 3.4449 30.4239 16.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 32 % 4.5814 66.6496 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 33 £ 4.2314 33.7487 43.5231 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 34 . 36.6144 10.6752 11.2684 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 35 2 3.8718 33.2780 43.5231 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 36 5 5.6578 33.0639 43.5231 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 37 m 14.8211 52.4335 33.1555 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 38 V 5.2561 42.3111 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 39 6 4.1404 34.8011 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 40 w 15.8606 54.7880 31.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 41 T 5.2865 37.2507 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 42 M 5.5517 44.7331 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 43 G 4.3207 40.2643 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 44 b 3.1614 33.5311 45.6359 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 45 9 4.1482 34.8011 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 46 ; 15.7371 16.5721 42.6188 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 47 D 5.3944 40.2643 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 48 L 5.1604 30.5721 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 49 y 15.9382 35.6325 43.5196 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 50 ‘ 3.1470 15.2120 16.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 51 \ 3.2721 31.6359 53.7390 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 52 R 5.3470 41.1651 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 53 < 9.7968 38.0564 38.0564 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 54 4 5.6331 37.2216 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 55 8 4.4466 36.2291 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 56 0 4.4606 35.0428 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 57 A 5.3357 43.5231 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 58 E 5.6754 30.7316 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 59 B 5.3465 36.1047 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 60 v 15.6317 35.6325 31.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 61 k 3.3287 34.5835 44.4239 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 62 J 5.5610 26.4804 43.5231 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 63 U 5.4822 38.0018 43.5231 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 64 j 3.3099 20.5270 56.0000 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 65 ( 3.3274 21.2683 56.0000 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 66 7 5.6051 33.3716 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 67 § 4.1347 33.3731 54.7915 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 68 $ 2.7494 34.4240 55.1557 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 69 € 4.1367 38.7447 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 70 / 3.4238 31.6359 53.7390 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 71 C 3.9615 36.1047 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 72 * 3.3416 32.2547 29.2120 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 73 ” 3.5301 30.4239 16.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 74 ? 4.0571 28.4593 43.5231 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 75 { 3.4192 31.3248 55.6923 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 76 } 3.3434 31.3248 55.6923 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 77 , 36.4825 16.5721 21.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 78 I 4.9538 24.5157 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 79 ° 4.0497 24.0564 23.8404 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 80 K 5.3835 39.5761 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 81 H 5.4977 38.3656 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 82 q 14.5638 33.5311 44.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 83 & 4.1055 48.3675 44.7350 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 84 ’ 3.3395 15.2120 16.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 85 [ 3.4511 19.1555 55.6923 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 86 - 24.5124 21.9436 7.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 87 Y 5.3016 42.5237 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 88 Q 4.1302 43.9002 55.0992 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 89 " 3.5693 25.0523 16.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 90 ! 5.3135 11.4279 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 91 x 15.4767 36.6284 31.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 92 ) 3.3929 21.2683 56.0000 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 93 = 17.2846 36.4803 23.1556 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 94 + 10.0471 38.3675 38.3675 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 95 X 5.1507 42.3111 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 96 » 13.8839 35.2683 30.4239 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 97 ' 3.1198 9.8404 16.7316 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 98 ¢ 5.7745 30.9492 51.8404 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 99 Z 5.5442 35.7955 42.3111 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 100 > 9.6192 38.0564 38.0564 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 101 ® 4.3127 49.2683 49.2683 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 102 © 4.3069 49.2683 49.2683 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 103 ] 3.3172 19.1555 55.6923 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 104 é -0.1110 33.9082 48.9606 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 105 z 15.6583 29.7357 31.9436 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 106 _ 51.4223 41.6923 6.0564 -Verdana_Bold.ttf 26 ` 16.9477 11.2684 107 ¥ 5.4811 38.9042 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 1 t 2.4517 24.2160 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 2 h -0.6885 32.3226 44.4239 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 3 a 10.4656 31.7954 34.3675 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 4 n 10.1308 32.3226 33.1555 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 5 P 1.4610 35.4165 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 6 o 10.4499 35.1202 34.3675 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 7 e 10.0341 33.9082 34.3675 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 8 : 11.4793 10.6752 31.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 9 r 11.8272 23.3151 31.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 10 l -0.8111 10.2160 44.4239 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 11 i -0.8356 10.2160 44.4239 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 12 1 1.6114 28.7413 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 13 | -1.1591 8.4803 55.6923 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 14 N 1.1330 38.8363 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 15 f -1.2414 24.5271 44.4239 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 16 g 10.4382 33.5311 44.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 17 d -0.8086 33.5311 45.6359 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 18 W 1.1050 62.2208 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 19 s 10.2682 29.7391 34.3675 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 20 c 10.4531 29.6826 34.3675 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 21 u 11.3638 32.3226 33.1555 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 22 3 -0.1444 33.8052 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 23 ~ 14.5362 41.7840 19.3716 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 24 # 1.0041 41.8499 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 25 O -0.1954 43.9002 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 26 ` -4.2419 16.9477 11.2684 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 27 @ -0.2595 47.6808 50.1066 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 28 F 1.5210 30.2610 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 29 S -0.2097 36.6318 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 30 p 10.2590 33.5311 44.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 31 “ -0.8536 30.4239 16.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 32 % -0.0638 66.6496 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 33 £ 0.1202 33.7487 43.5231 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 34 . 32.0747 10.6752 11.2684 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 35 2 0.3095 33.2780 43.5231 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 36 5 1.2348 33.0639 43.5231 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 37 m 10.5763 52.4335 33.1555 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 38 V 1.0907 42.3111 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 39 6 0.6386 34.8011 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 40 w 11.5242 54.7880 31.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 41 T 1.1856 37.2507 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 42 M 1.1000 44.7331 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 43 G -0.1035 40.2643 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 44 b -0.7156 33.5311 45.6359 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 45 9 -0.3033 34.8011 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 46 ; 11.6568 16.5721 42.6188 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 47 D 1.0248 40.2643 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 48 L 1.4318 30.5721 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 49 y 11.5217 35.6325 43.5196 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 50 ‘ -1.1008 15.2120 16.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 51 \ -0.7920 31.6359 53.7390 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 52 R 1.2062 41.1651 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 53 < 5.4031 38.0564 38.0564 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 54 4 1.4556 37.2216 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 55 8 0.0344 36.2291 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 56 0 -0.1484 35.0428 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 57 A 1.6548 43.5231 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 58 E 0.9936 30.7316 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 59 B 1.5532 36.1047 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 60 v 11.6219 35.6325 31.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 61 k -1.1617 34.5835 44.4239 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 62 J 1.3151 26.4804 43.5231 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 63 U 1.3531 38.0018 43.5231 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 64 j -0.9879 20.5270 56.0000 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 65 ( -0.6339 21.2683 56.0000 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 66 7 0.7452 33.3716 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 67 § -0.0006 33.3731 54.7915 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 68 $ -1.4791 34.4240 55.1557 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 69 € -0.1349 38.7447 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 70 / -0.9761 31.6359 53.7390 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 71 C 0.2612 36.1047 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 72 * -1.0602 32.2547 29.2120 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 73 ” -0.8269 30.4239 16.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 74 ? 0.0572 28.4593 43.5231 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 75 { -0.5635 31.3248 55.6923 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 76 } -0.9447 31.3248 55.6923 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 77 , 32.3631 16.5721 21.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 78 I 0.9021 24.5157 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 79 ° 0.1316 24.0564 23.8404 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 80 K 1.1406 39.5761 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 81 H 1.2446 38.3656 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 82 q 10.3305 33.5311 44.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 83 & 0.1282 48.3675 44.7350 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 84 ’ -0.8715 15.2120 16.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 85 [ -1.0707 19.1555 55.6923 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 86 - 20.3095 21.9436 7.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 87 Y 1.5097 42.5237 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 88 Q 0.0312 43.9002 55.0992 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 89 " -0.9184 25.0523 16.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 90 ! 0.9611 11.4279 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 91 x 11.6426 36.6284 31.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 92 ) -0.6857 21.2683 56.0000 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 93 = 12.9864 36.4803 23.1556 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 94 + 5.7096 38.3675 38.3675 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 95 X 1.2634 42.3111 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 96 » 8.9877 35.2683 30.4239 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 97 ' -0.7734 9.8404 16.7316 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 98 ¢ 1.5598 30.9492 51.8404 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 99 Z 1.3565 35.7955 42.3111 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 100 > 5.3569 38.0564 38.0564 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 101 ® -0.1972 49.2683 49.2683 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 102 © -0.4803 49.2683 49.2683 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 103 ] -0.7739 19.1555 55.6923 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 104 é -4.0522 33.9082 48.9606 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 105 z 11.3760 29.7357 31.9436 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 106 _ 47.2762 41.6923 6.0564 -Verdana_Bold.ttf 27 @ 47.6808 50.1066 107 ¥ 1.2403 38.9042 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 1 t 1.1177 24.2160 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 2 h -2.1504 32.3226 44.4239 -Verdana_Bold.ttf 28 F 30.2610 42.3111 3 a 9.3929 31.7954 34.3675 -Verdana_Bold.ttf 28 F 30.2610 42.3111 4 n 9.2749 32.3226 33.1555 -Verdana_Bold.ttf 28 F 30.2610 42.3111 5 P -0.0163 35.4165 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 6 o 9.0978 35.1202 34.3675 -Verdana_Bold.ttf 28 F 30.2610 42.3111 7 e 9.3457 33.9082 34.3675 -Verdana_Bold.ttf 28 F 30.2610 42.3111 8 : 10.1980 10.6752 31.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 9 r 10.4361 23.3151 31.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 10 l -2.2262 10.2160 44.4239 -Verdana_Bold.ttf 28 F 30.2610 42.3111 11 i -2.6689 10.2160 44.4239 -Verdana_Bold.ttf 28 F 30.2610 42.3111 12 1 -0.0021 28.7413 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 13 | -1.9572 8.4803 55.6923 -Verdana_Bold.ttf 28 F 30.2610 42.3111 14 N 0.0864 38.8363 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 15 f -2.0950 24.5271 44.4239 -Verdana_Bold.ttf 28 F 30.2610 42.3111 16 g 8.9675 33.5311 44.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 17 d -2.1694 33.5311 45.6359 -Verdana_Bold.ttf 28 F 30.2610 42.3111 18 W 0.0749 62.2208 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 19 s 9.1285 29.7391 34.3675 -Verdana_Bold.ttf 28 F 30.2610 42.3111 20 c 9.1624 29.6826 34.3675 -Verdana_Bold.ttf 28 F 30.2610 42.3111 21 u 10.4843 32.3226 33.1555 -Verdana_Bold.ttf 28 F 30.2610 42.3111 22 3 -0.8776 33.8052 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 23 ~ 12.9608 41.7840 19.3716 -Verdana_Bold.ttf 28 F 30.2610 42.3111 24 # 0.1168 41.8499 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 25 O -1.1585 43.9002 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 26 ` -5.3688 16.9477 11.2684 -Verdana_Bold.ttf 28 F 30.2610 42.3111 27 @ -1.3626 47.6808 50.1066 -Verdana_Bold.ttf 28 F 30.2610 42.3111 28 F 0.1525 30.2610 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 29 S -1.4005 36.6318 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 30 p 9.1657 33.5311 44.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 31 “ -2.0679 30.4239 16.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 32 % -1.1184 66.6496 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 33 £ -1.0562 33.7487 43.5231 -Verdana_Bold.ttf 28 F 30.2610 42.3111 34 . 31.2557 10.6752 11.2684 -Verdana_Bold.ttf 28 F 30.2610 42.3111 35 2 -1.4648 33.2780 43.5231 -Verdana_Bold.ttf 28 F 30.2610 42.3111 36 5 0.2008 33.0639 43.5231 -Verdana_Bold.ttf 28 F 30.2610 42.3111 37 m 9.3704 52.4335 33.1555 -Verdana_Bold.ttf 28 F 30.2610 42.3111 38 V -0.0957 42.3111 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 39 6 -1.0692 34.8011 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 40 w 10.4902 54.7880 31.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 41 T 0.1212 37.2507 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 42 M 0.0755 44.7331 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 43 G -1.2758 40.2643 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 44 b -1.8746 33.5311 45.6359 -Verdana_Bold.ttf 28 F 30.2610 42.3111 45 9 -1.3099 34.8011 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 46 ; 10.6658 16.5721 42.6188 -Verdana_Bold.ttf 28 F 30.2610 42.3111 47 D 0.0010 40.2643 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 48 L -0.2167 30.5721 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 49 y 10.5664 35.6325 43.5196 -Verdana_Bold.ttf 28 F 30.2610 42.3111 50 ‘ -2.1204 15.2120 16.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 51 \ -2.1368 31.6359 53.7390 -Verdana_Bold.ttf 28 F 30.2610 42.3111 52 R -0.1018 41.1651 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 53 < 4.6066 38.0564 38.0564 -Verdana_Bold.ttf 28 F 30.2610 42.3111 54 4 -0.4480 37.2216 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 55 8 -1.0371 36.2291 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 56 0 -1.1155 35.0428 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 57 A 0.1105 43.5231 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 58 E -0.0090 30.7316 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 59 B -0.3387 36.1047 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 60 v 10.4219 35.6325 31.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 61 k -2.0004 34.5835 44.4239 -Verdana_Bold.ttf 28 F 30.2610 42.3111 62 J -0.1586 26.4804 43.5231 -Verdana_Bold.ttf 28 F 30.2610 42.3111 63 U -0.0424 38.0018 43.5231 -Verdana_Bold.ttf 28 F 30.2610 42.3111 64 j -1.8976 20.5270 56.0000 -Verdana_Bold.ttf 28 F 30.2610 42.3111 65 ( -2.1647 21.2683 56.0000 -Verdana_Bold.ttf 28 F 30.2610 42.3111 66 7 -0.0620 33.3716 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 67 § -1.1959 33.3731 54.7915 -Verdana_Bold.ttf 28 F 30.2610 42.3111 68 $ -2.9126 34.4240 55.1557 -Verdana_Bold.ttf 28 F 30.2610 42.3111 69 € -1.0386 38.7447 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 70 / -1.9052 31.6359 53.7390 -Verdana_Bold.ttf 28 F 30.2610 42.3111 71 C -1.4823 36.1047 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 72 * -2.0873 32.2547 29.2120 -Verdana_Bold.ttf 28 F 30.2610 42.3111 73 ” -2.0130 30.4239 16.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 74 ? -1.3433 28.4593 43.5231 -Verdana_Bold.ttf 28 F 30.2610 42.3111 75 { -2.1387 31.3248 55.6923 -Verdana_Bold.ttf 28 F 30.2610 42.3111 76 } -2.0333 31.3248 55.6923 -Verdana_Bold.ttf 28 F 30.2610 42.3111 77 , 30.9636 16.5721 21.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 78 I -0.2228 24.5157 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 79 ° -1.0312 24.0564 23.8404 -Verdana_Bold.ttf 28 F 30.2610 42.3111 80 K -0.1272 39.5761 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 81 H -0.0846 38.3656 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 82 q 9.0926 33.5311 44.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 83 & -1.2570 48.3675 44.7350 -Verdana_Bold.ttf 28 F 30.2610 42.3111 84 ’ -2.3190 15.2120 16.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 85 [ -1.8254 19.1555 55.6923 -Verdana_Bold.ttf 28 F 30.2610 42.3111 86 - 19.0773 21.9436 7.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 87 Y -0.3391 42.5237 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 88 Q -1.2402 43.9002 55.0992 -Verdana_Bold.ttf 28 F 30.2610 42.3111 89 " -2.2823 25.0523 16.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 90 ! -0.2782 11.4279 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 91 x 10.4426 36.6284 31.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 92 ) -2.2049 21.2683 56.0000 -Verdana_Bold.ttf 28 F 30.2610 42.3111 93 = 11.9823 36.4803 23.1556 -Verdana_Bold.ttf 28 F 30.2610 42.3111 94 + 4.5390 38.3675 38.3675 -Verdana_Bold.ttf 28 F 30.2610 42.3111 95 X 0.0407 42.3111 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 96 » 8.1955 35.2683 30.4239 -Verdana_Bold.ttf 28 F 30.2610 42.3111 97 ' -2.2815 9.8404 16.7316 -Verdana_Bold.ttf 28 F 30.2610 42.3111 98 ¢ -0.0690 30.9492 51.8404 -Verdana_Bold.ttf 28 F 30.2610 42.3111 99 Z -0.0437 35.7955 42.3111 -Verdana_Bold.ttf 28 F 30.2610 42.3111 100 > 3.8423 38.0564 38.0564 -Verdana_Bold.ttf 28 F 30.2610 42.3111 101 ® -1.0569 49.2683 49.2683 -Verdana_Bold.ttf 28 F 30.2610 42.3111 102 © -1.0759 49.2683 49.2683 -Verdana_Bold.ttf 28 F 30.2610 42.3111 103 ] -2.2575 19.1555 55.6923 -Verdana_Bold.ttf 28 F 30.2610 42.3111 104 é -5.5671 33.9082 48.9606 -Verdana_Bold.ttf 28 F 30.2610 42.3111 105 z 10.2906 29.7357 31.9436 -Verdana_Bold.ttf 28 F 30.2610 42.3111 106 _ 46.1650 41.6923 6.0564 -Verdana_Bold.ttf 28 F 30.2610 42.3111 107 ¥ -0.1695 38.9042 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 1 t 2.4758 24.2160 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 2 h -0.8649 32.3226 44.4239 -Verdana_Bold.ttf 29 S 36.6318 44.7350 3 a 10.1196 31.7954 34.3675 -Verdana_Bold.ttf 29 S 36.6318 44.7350 4 n 10.3466 32.3226 33.1555 -Verdana_Bold.ttf 29 S 36.6318 44.7350 5 P 1.2322 35.4165 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 6 o 10.6202 35.1202 34.3675 -Verdana_Bold.ttf 29 S 36.6318 44.7350 7 e 10.3923 33.9082 34.3675 -Verdana_Bold.ttf 29 S 36.6318 44.7350 8 : 11.6188 10.6752 31.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 9 r 11.2573 23.3151 31.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 10 l -1.0322 10.2160 44.4239 -Verdana_Bold.ttf 29 S 36.6318 44.7350 11 i -0.7644 10.2160 44.4239 -Verdana_Bold.ttf 29 S 36.6318 44.7350 12 1 1.2044 28.7413 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 13 | -0.9311 8.4803 55.6923 -Verdana_Bold.ttf 29 S 36.6318 44.7350 14 N 1.2984 38.8363 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 15 f -0.9778 24.5271 44.4239 -Verdana_Bold.ttf 29 S 36.6318 44.7350 16 g 10.1161 33.5311 44.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 17 d -0.7430 33.5311 45.6359 -Verdana_Bold.ttf 29 S 36.6318 44.7350 18 W 1.1912 62.2208 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 19 s 10.6000 29.7391 34.3675 -Verdana_Bold.ttf 29 S 36.6318 44.7350 20 c 10.2298 29.6826 34.3675 -Verdana_Bold.ttf 29 S 36.6318 44.7350 21 u 11.2792 32.3226 33.1555 -Verdana_Bold.ttf 29 S 36.6318 44.7350 22 3 -0.0305 33.8052 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 23 ~ 14.6690 41.7840 19.3716 -Verdana_Bold.ttf 29 S 36.6318 44.7350 24 # 1.0904 41.8499 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 25 O -0.2782 43.9002 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 26 ` -4.2188 16.9477 11.2684 -Verdana_Bold.ttf 29 S 36.6318 44.7350 27 @ 0.0677 47.6808 50.1066 -Verdana_Bold.ttf 29 S 36.6318 44.7350 28 F 0.8716 30.2610 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 29 S -0.1383 36.6318 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 30 p 10.2996 33.5311 44.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 31 “ -0.8383 30.4239 16.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 32 % 0.1107 66.6496 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 33 £ -0.2420 33.7487 43.5231 -Verdana_Bold.ttf 29 S 36.6318 44.7350 34 . 32.2201 10.6752 11.2684 -Verdana_Bold.ttf 29 S 36.6318 44.7350 35 2 0.1542 33.2780 43.5231 -Verdana_Bold.ttf 29 S 36.6318 44.7350 36 5 1.1749 33.0639 43.5231 -Verdana_Bold.ttf 29 S 36.6318 44.7350 37 m 10.4354 52.4335 33.1555 -Verdana_Bold.ttf 29 S 36.6318 44.7350 38 V 0.8629 42.3111 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 39 6 0.0334 34.8011 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 40 w 11.4881 54.7880 31.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 41 T 1.0160 37.2507 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 42 M 1.5379 44.7331 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 43 G -0.1379 40.2643 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 44 b -1.2760 33.5311 45.6359 -Verdana_Bold.ttf 29 S 36.6318 44.7350 45 9 -0.0648 34.8011 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 46 ; 11.5548 16.5721 42.6188 -Verdana_Bold.ttf 29 S 36.6318 44.7350 47 D 0.9831 40.2643 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 48 L 1.2703 30.5721 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 49 y 11.6090 35.6325 43.5196 -Verdana_Bold.ttf 29 S 36.6318 44.7350 50 ‘ -0.8806 15.2120 16.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 51 \ -0.8885 31.6359 53.7390 -Verdana_Bold.ttf 29 S 36.6318 44.7350 52 R 0.9874 41.1651 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 53 < 5.7736 38.0564 38.0564 -Verdana_Bold.ttf 29 S 36.6318 44.7350 54 4 1.2418 37.2216 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 55 8 -0.1720 36.2291 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 56 0 -0.0751 35.0428 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 57 A 1.2101 43.5231 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 58 E 1.0447 30.7316 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 59 B 1.1223 36.1047 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 60 v 11.7026 35.6325 31.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 61 k -0.7508 34.5835 44.4239 -Verdana_Bold.ttf 29 S 36.6318 44.7350 62 J 1.3015 26.4804 43.5231 -Verdana_Bold.ttf 29 S 36.6318 44.7350 63 U 1.0859 38.0018 43.5231 -Verdana_Bold.ttf 29 S 36.6318 44.7350 64 j -0.9893 20.5270 56.0000 -Verdana_Bold.ttf 29 S 36.6318 44.7350 65 ( -0.8630 21.2683 56.0000 -Verdana_Bold.ttf 29 S 36.6318 44.7350 66 7 0.8323 33.3716 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 67 § -0.1443 33.3731 54.7915 -Verdana_Bold.ttf 29 S 36.6318 44.7350 68 $ -1.6093 34.4240 55.1557 -Verdana_Bold.ttf 29 S 36.6318 44.7350 69 € 0.2720 38.7447 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 70 / -1.2022 31.6359 53.7390 -Verdana_Bold.ttf 29 S 36.6318 44.7350 71 C -0.0429 36.1047 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 72 * -0.4982 32.2547 29.2120 -Verdana_Bold.ttf 29 S 36.6318 44.7350 73 ” -0.5567 30.4239 16.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 74 ? 0.2082 28.4593 43.5231 -Verdana_Bold.ttf 29 S 36.6318 44.7350 75 { -1.3496 31.3248 55.6923 -Verdana_Bold.ttf 29 S 36.6318 44.7350 76 } -0.6728 31.3248 55.6923 -Verdana_Bold.ttf 29 S 36.6318 44.7350 77 , 32.3792 16.5721 21.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 78 I 1.1651 24.5157 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 79 ° -0.2327 24.0564 23.8404 -Verdana_Bold.ttf 29 S 36.6318 44.7350 80 K 1.7031 39.5761 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 81 H 1.3076 38.3656 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 82 q 10.3367 33.5311 44.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 83 & -0.2177 48.3675 44.7350 -Verdana_Bold.ttf 29 S 36.6318 44.7350 84 ’ -0.7745 15.2120 16.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 85 [ -1.0268 19.1555 55.6923 -Verdana_Bold.ttf 29 S 36.6318 44.7350 86 - 20.3369 21.9436 7.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 87 Y 0.8346 42.5237 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 88 Q -0.0016 43.9002 55.0992 -Verdana_Bold.ttf 29 S 36.6318 44.7350 89 " -0.7802 25.0523 16.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 90 ! 1.1350 11.4279 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 91 x 11.8680 36.6284 31.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 92 ) -0.8860 21.2683 56.0000 -Verdana_Bold.ttf 29 S 36.6318 44.7350 93 = 13.1934 36.4803 23.1556 -Verdana_Bold.ttf 29 S 36.6318 44.7350 94 + 5.5651 38.3675 38.3675 -Verdana_Bold.ttf 29 S 36.6318 44.7350 95 X 1.1371 42.3111 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 96 » 9.2970 35.2683 30.4239 -Verdana_Bold.ttf 29 S 36.6318 44.7350 97 ' -1.0797 9.8404 16.7316 -Verdana_Bold.ttf 29 S 36.6318 44.7350 98 ¢ 1.5019 30.9492 51.8404 -Verdana_Bold.ttf 29 S 36.6318 44.7350 99 Z 1.4858 35.7955 42.3111 -Verdana_Bold.ttf 29 S 36.6318 44.7350 100 > 5.6459 38.0564 38.0564 -Verdana_Bold.ttf 29 S 36.6318 44.7350 101 ® 0.1875 49.2683 49.2683 -Verdana_Bold.ttf 29 S 36.6318 44.7350 102 © 0.0889 49.2683 49.2683 -Verdana_Bold.ttf 29 S 36.6318 44.7350 103 ] -0.6098 19.1555 55.6923 -Verdana_Bold.ttf 29 S 36.6318 44.7350 104 é -4.0997 33.9082 48.9606 -Verdana_Bold.ttf 29 S 36.6318 44.7350 105 z 11.7573 29.7357 31.9436 -Verdana_Bold.ttf 29 S 36.6318 44.7350 106 _ 47.8171 41.6923 6.0564 -Verdana_Bold.ttf 29 S 36.6318 44.7350 107 ¥ 1.2440 38.9042 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 1 t -7.8421 24.2160 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 2 h -11.4832 32.3226 44.4239 -Verdana_Bold.ttf 30 p 33.5311 44.7316 3 a -0.0424 31.7954 34.3675 -Verdana_Bold.ttf 30 p 33.5311 44.7316 4 n -0.0762 32.3226 33.1555 -Verdana_Bold.ttf 30 p 33.5311 44.7316 5 P -9.1533 35.4165 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 6 o 0.1662 35.1202 34.3675 -Verdana_Bold.ttf 30 p 33.5311 44.7316 7 e 0.0976 33.9082 34.3675 -Verdana_Bold.ttf 30 p 33.5311 44.7316 8 : 1.2200 10.6752 31.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 9 r 1.1822 23.3151 31.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 10 l -11.0637 10.2160 44.4239 -Verdana_Bold.ttf 30 p 33.5311 44.7316 11 i -11.7157 10.2160 44.4239 -Verdana_Bold.ttf 30 p 33.5311 44.7316 12 1 -9.2790 28.7413 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 13 | -11.4956 8.4803 55.6923 -Verdana_Bold.ttf 30 p 33.5311 44.7316 14 N -9.0243 38.8363 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 15 f -11.1140 24.5271 44.4239 -Verdana_Bold.ttf 30 p 33.5311 44.7316 16 g -0.2246 33.5311 44.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 17 d -11.5833 33.5311 45.6359 -Verdana_Bold.ttf 30 p 33.5311 44.7316 18 W -9.4247 62.2208 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 19 s -0.1342 29.7391 34.3675 -Verdana_Bold.ttf 30 p 33.5311 44.7316 20 c 0.1418 29.6826 34.3675 -Verdana_Bold.ttf 30 p 33.5311 44.7316 21 u 1.0288 32.3226 33.1555 -Verdana_Bold.ttf 30 p 33.5311 44.7316 22 3 -10.4575 33.8052 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 23 ~ 4.1849 41.7840 19.3716 -Verdana_Bold.ttf 30 p 33.5311 44.7316 24 # -8.9249 41.8499 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 25 O -10.4323 43.9002 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 26 ` -14.6319 16.9477 11.2684 -Verdana_Bold.ttf 30 p 33.5311 44.7316 27 @ -10.4884 47.6808 50.1066 -Verdana_Bold.ttf 30 p 33.5311 44.7316 28 F -9.1799 30.2610 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 29 S -10.0699 36.6318 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 30 p 0.0036 33.5311 44.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 31 “ -11.3619 30.4239 16.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 32 % -10.2419 66.6496 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 33 £ -10.2684 33.7487 43.5231 -Verdana_Bold.ttf 30 p 33.5311 44.7316 34 . 21.9797 10.6752 11.2684 -Verdana_Bold.ttf 30 p 33.5311 44.7316 35 2 -10.3604 33.2780 43.5231 -Verdana_Bold.ttf 30 p 33.5311 44.7316 36 5 -9.0721 33.0639 43.5231 -Verdana_Bold.ttf 30 p 33.5311 44.7316 37 m 0.3281 52.4335 33.1555 -Verdana_Bold.ttf 30 p 33.5311 44.7316 38 V -9.2152 42.3111 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 39 6 -10.2723 34.8011 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 40 w 1.1263 54.7880 31.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 41 T -9.1085 37.2507 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 42 M -9.3685 44.7331 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 43 G -10.1957 40.2643 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 44 b -11.4062 33.5311 45.6359 -Verdana_Bold.ttf 30 p 33.5311 44.7316 45 9 -10.6454 34.8011 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 46 ; 1.3338 16.5721 42.6188 -Verdana_Bold.ttf 30 p 33.5311 44.7316 47 D -9.2790 40.2643 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 48 L -8.9304 30.5721 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 49 y 1.2648 35.6325 43.5196 -Verdana_Bold.ttf 30 p 33.5311 44.7316 50 ‘ -11.2857 15.2120 16.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 51 \ -10.8512 31.6359 53.7390 -Verdana_Bold.ttf 30 p 33.5311 44.7316 52 R -8.7362 41.1651 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 53 < -4.8235 38.0564 38.0564 -Verdana_Bold.ttf 30 p 33.5311 44.7316 54 4 -9.2425 37.2216 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 55 8 -10.6534 36.2291 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 56 0 -10.1790 35.0428 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 57 A -9.2869 43.5231 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 58 E -8.9134 30.7316 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 59 B -9.7226 36.1047 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 60 v 1.4692 35.6325 31.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 61 k -11.1544 34.5835 44.4239 -Verdana_Bold.ttf 30 p 33.5311 44.7316 62 J -9.0105 26.4804 43.5231 -Verdana_Bold.ttf 30 p 33.5311 44.7316 63 U -9.3268 38.0018 43.5231 -Verdana_Bold.ttf 30 p 33.5311 44.7316 64 j -11.3028 20.5270 56.0000 -Verdana_Bold.ttf 30 p 33.5311 44.7316 65 ( -10.9684 21.2683 56.0000 -Verdana_Bold.ttf 30 p 33.5311 44.7316 66 7 -8.9264 33.3716 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 67 § -10.4739 33.3731 54.7915 -Verdana_Bold.ttf 30 p 33.5311 44.7316 68 $ -11.8007 34.4240 55.1557 -Verdana_Bold.ttf 30 p 33.5311 44.7316 69 € -10.7114 38.7447 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 70 / -10.8773 31.6359 53.7390 -Verdana_Bold.ttf 30 p 33.5311 44.7316 71 C -10.3631 36.1047 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 72 * -11.5238 32.2547 29.2120 -Verdana_Bold.ttf 30 p 33.5311 44.7316 73 ” -10.9219 30.4239 16.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 74 ? -10.4169 28.4593 43.5231 -Verdana_Bold.ttf 30 p 33.5311 44.7316 75 { -11.6681 31.3248 55.6923 -Verdana_Bold.ttf 30 p 33.5311 44.7316 76 } -11.3742 31.3248 55.6923 -Verdana_Bold.ttf 30 p 33.5311 44.7316 77 , 21.8577 16.5721 21.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 78 I -8.9636 24.5157 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 79 ° -10.3315 24.0564 23.8404 -Verdana_Bold.ttf 30 p 33.5311 44.7316 80 K -9.0594 39.5761 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 81 H -9.1023 38.3656 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 82 q 0.1601 33.5311 44.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 83 & -9.9570 48.3675 44.7350 -Verdana_Bold.ttf 30 p 33.5311 44.7316 84 ’ -11.3943 15.2120 16.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 85 [ -11.1622 19.1555 55.6923 -Verdana_Bold.ttf 30 p 33.5311 44.7316 86 - 9.7233 21.9436 7.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 87 Y -9.1066 42.5237 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 88 Q -10.2608 43.9002 55.0992 -Verdana_Bold.ttf 30 p 33.5311 44.7316 89 " -11.2824 25.0523 16.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 90 ! -9.1904 11.4279 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 91 x 1.1764 36.6284 31.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 92 ) -11.3141 21.2683 56.0000 -Verdana_Bold.ttf 30 p 33.5311 44.7316 93 = 2.7970 36.4803 23.1556 -Verdana_Bold.ttf 30 p 33.5311 44.7316 94 + -4.4196 38.3675 38.3675 -Verdana_Bold.ttf 30 p 33.5311 44.7316 95 X -9.0797 42.3111 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 96 » -1.3590 35.2683 30.4239 -Verdana_Bold.ttf 30 p 33.5311 44.7316 97 ' -11.4784 9.8404 16.7316 -Verdana_Bold.ttf 30 p 33.5311 44.7316 98 ¢ -8.8200 30.9492 51.8404 -Verdana_Bold.ttf 30 p 33.5311 44.7316 99 Z -9.3440 35.7955 42.3111 -Verdana_Bold.ttf 30 p 33.5311 44.7316 100 > -4.6928 38.0564 38.0564 -Verdana_Bold.ttf 30 p 33.5311 44.7316 101 ® -10.4074 49.2683 49.2683 -Verdana_Bold.ttf 30 p 33.5311 44.7316 102 © -10.3227 49.2683 49.2683 -Verdana_Bold.ttf 30 p 33.5311 44.7316 103 ] -11.5114 19.1555 55.6923 -Verdana_Bold.ttf 30 p 33.5311 44.7316 104 é -14.3798 33.9082 48.9606 -Verdana_Bold.ttf 30 p 33.5311 44.7316 105 z 1.3124 29.7357 31.9436 -Verdana_Bold.ttf 30 p 33.5311 44.7316 106 _ 37.0914 41.6923 6.0564 -Verdana_Bold.ttf 30 p 33.5311 44.7316 107 ¥ -8.8389 38.9042 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 1 t 3.4213 24.2160 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 2 h 0.1381 32.3226 44.4239 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 3 a 11.3692 31.7954 34.3675 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 4 n 11.5999 32.3226 33.1555 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 5 P 2.1252 35.4165 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 6 o 10.9027 35.1202 34.3675 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 7 e 11.2531 33.9082 34.3675 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 8 : 12.9694 10.6752 31.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 9 r 12.3235 23.3151 31.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 10 l 0.0562 10.2160 44.4239 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 11 i -0.0477 10.2160 44.4239 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 12 1 1.9061 28.7413 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 13 | -0.2514 8.4803 55.6923 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 14 N 2.2970 38.8363 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 15 f 0.1356 24.5271 44.4239 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 16 g 11.3228 33.5311 44.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 17 d 0.2274 33.5311 45.6359 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 18 W 2.4215 62.2208 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 19 s 11.3141 29.7391 34.3675 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 20 c 11.3269 29.6826 34.3675 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 21 u 12.7855 32.3226 33.1555 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 22 3 0.8938 33.8052 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 23 ~ 15.6311 41.7840 19.3716 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 24 # 1.9435 41.8499 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 25 O 0.6554 43.9002 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 26 ` -3.7270 16.9477 11.2684 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 27 @ 0.6699 47.6808 50.1066 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 28 F 2.1712 30.2610 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 29 S 0.7634 36.6318 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 30 p 11.1951 33.5311 44.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 31 “ -0.0280 30.4239 16.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 32 % 0.7716 66.6496 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 33 £ 0.5600 33.7487 43.5231 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 34 . 33.2030 10.6752 11.2684 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 35 2 0.7620 33.2780 43.5231 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 36 5 1.8229 33.0639 43.5231 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 37 m 11.3794 52.4335 33.1555 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 38 V 1.9773 42.3111 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 39 6 0.7508 34.8011 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 40 w 12.5674 54.7880 31.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 41 T 2.4121 37.2507 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 42 M 2.3162 44.7331 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 43 G 0.7897 40.2643 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 44 b 0.1646 33.5311 45.6359 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 45 9 0.9059 34.8011 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 46 ; 12.6117 16.5721 42.6188 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 47 D 1.7994 40.2643 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 48 L 1.9591 30.5721 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 49 y 12.4397 35.6325 43.5196 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 50 ‘ 0.0101 15.2120 16.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 51 \ 0.0917 31.6359 53.7390 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 52 R 2.0286 41.1651 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 53 < 6.1585 38.0564 38.0564 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 54 4 2.1128 37.2216 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 55 8 1.0531 36.2291 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 56 0 0.9926 35.0428 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 57 A 2.2395 43.5231 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 58 E 2.2709 30.7316 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 59 B 2.0058 36.1047 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 60 v 12.5495 35.6325 31.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 61 k -0.0446 34.5835 44.4239 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 62 J 2.3143 26.4804 43.5231 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 63 U 2.2848 38.0018 43.5231 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 64 j -0.1569 20.5270 56.0000 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 65 ( -0.1251 21.2683 56.0000 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 66 7 2.0852 33.3716 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 67 § 0.9285 33.3731 54.7915 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 68 $ -0.8081 34.4240 55.1557 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 69 € 0.7325 38.7447 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 70 / 0.1080 31.6359 53.7390 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 71 C 0.8552 36.1047 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 72 * -0.2500 32.2547 29.2120 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 73 ” 0.0928 30.4239 16.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 74 ? 0.8936 28.4593 43.5231 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 75 { 0.0533 31.3248 55.6923 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 76 } -0.2371 31.3248 55.6923 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 77 , 33.0612 16.5721 21.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 78 I 2.2320 24.5157 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 79 ° 1.1066 24.0564 23.8404 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 80 K 1.8421 39.5761 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 81 H 2.0671 38.3656 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 82 q 11.1173 33.5311 44.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 83 & 0.5646 48.3675 44.7350 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 84 ’ -0.0247 15.2120 16.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 85 [ 0.2188 19.1555 55.6923 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 86 - 21.3626 21.9436 7.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 87 Y 2.1791 42.5237 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 88 Q 0.9934 43.9002 55.0992 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 89 " 0.2074 25.0523 16.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 90 ! 2.0869 11.4279 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 91 x 12.4586 36.6284 31.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 92 ) -0.1157 21.2683 56.0000 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 93 = 13.8820 36.4803 23.1556 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 94 + 6.4304 38.3675 38.3675 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 95 X 2.1074 42.3111 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 96 » 10.2250 35.2683 30.4239 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 97 ' 0.4361 9.8404 16.7316 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 98 ¢ 2.7367 30.9492 51.8404 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 99 Z 2.0718 35.7955 42.3111 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 100 > 6.4168 38.0564 38.0564 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 101 ® 1.2243 49.2683 49.2683 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 102 © 1.1875 49.2683 49.2683 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 103 ] -0.2188 19.1555 55.6923 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 104 é -3.1988 33.9082 48.9606 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 105 z 12.6938 29.7357 31.9436 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 106 _ 48.6099 41.6923 6.0564 -Verdana_Bold.ttf 31 “ 30.4239 16.7316 107 ¥ 1.9938 38.9042 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 1 t 2.0060 24.2160 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 2 h -0.6848 32.3226 44.4239 -Verdana_Bold.ttf 32 % 66.6496 44.7350 3 a 9.8491 31.7954 34.3675 -Verdana_Bold.ttf 32 % 66.6496 44.7350 4 n 10.7248 32.3226 33.1555 -Verdana_Bold.ttf 32 % 66.6496 44.7350 5 P 1.0992 35.4165 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 6 o 10.1188 35.1202 34.3675 -Verdana_Bold.ttf 32 % 66.6496 44.7350 7 e 10.4218 33.9082 34.3675 -Verdana_Bold.ttf 32 % 66.6496 44.7350 8 : 11.2030 10.6752 31.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 9 r 11.1441 23.3151 31.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 10 l -1.1315 10.2160 44.4239 -Verdana_Bold.ttf 32 % 66.6496 44.7350 11 i -0.8046 10.2160 44.4239 -Verdana_Bold.ttf 32 % 66.6496 44.7350 12 1 1.4210 28.7413 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 13 | -0.8641 8.4803 55.6923 -Verdana_Bold.ttf 32 % 66.6496 44.7350 14 N 0.6760 38.8363 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 15 f -0.4314 24.5271 44.4239 -Verdana_Bold.ttf 32 % 66.6496 44.7350 16 g 10.0252 33.5311 44.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 17 d -1.1869 33.5311 45.6359 -Verdana_Bold.ttf 32 % 66.6496 44.7350 18 W 1.5139 62.2208 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 19 s 9.8247 29.7391 34.3675 -Verdana_Bold.ttf 32 % 66.6496 44.7350 20 c 10.2108 29.6826 34.3675 -Verdana_Bold.ttf 32 % 66.6496 44.7350 21 u 11.6437 32.3226 33.1555 -Verdana_Bold.ttf 32 % 66.6496 44.7350 22 3 -0.3301 33.8052 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 23 ~ 14.4167 41.7840 19.3716 -Verdana_Bold.ttf 32 % 66.6496 44.7350 24 # 1.2764 41.8499 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 25 O -0.5649 43.9002 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 26 ` -3.4237 16.9477 11.2684 -Verdana_Bold.ttf 32 % 66.6496 44.7350 27 @ -0.3930 47.6808 50.1066 -Verdana_Bold.ttf 32 % 66.6496 44.7350 28 F 1.3282 30.2610 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 29 S -0.3000 36.6318 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 30 p 10.4053 33.5311 44.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 31 “ -1.2316 30.4239 16.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 32 % -0.3189 66.6496 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 33 £ 0.3518 33.7487 43.5231 -Verdana_Bold.ttf 32 % 66.6496 44.7350 34 . 32.6452 10.6752 11.2684 -Verdana_Bold.ttf 32 % 66.6496 44.7350 35 2 -0.1889 33.2780 43.5231 -Verdana_Bold.ttf 32 % 66.6496 44.7350 36 5 1.6463 33.0639 43.5231 -Verdana_Bold.ttf 32 % 66.6496 44.7350 37 m 9.9285 52.4335 33.1555 -Verdana_Bold.ttf 32 % 66.6496 44.7350 38 V 1.2980 42.3111 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 39 6 0.2054 34.8011 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 40 w 11.1812 54.7880 31.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 41 T 1.2182 37.2507 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 42 M 1.7934 44.7331 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 43 G -0.1843 40.2643 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 44 b -0.6481 33.5311 45.6359 -Verdana_Bold.ttf 32 % 66.6496 44.7350 45 9 0.3677 34.8011 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 46 ; 12.2143 16.5721 42.6188 -Verdana_Bold.ttf 32 % 66.6496 44.7350 47 D 0.9414 40.2643 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 48 L 1.5620 30.5721 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 49 y 11.3407 35.6325 43.5196 -Verdana_Bold.ttf 32 % 66.6496 44.7350 50 ‘ -0.8839 15.2120 16.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 51 \ -0.2555 31.6359 53.7390 -Verdana_Bold.ttf 32 % 66.6496 44.7350 52 R 1.1954 41.1651 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 53 < 5.2642 38.0564 38.0564 -Verdana_Bold.ttf 32 % 66.6496 44.7350 54 4 1.1342 37.2216 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 55 8 -0.1640 36.2291 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 56 0 0.1685 35.0428 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 57 A 1.5679 43.5231 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 58 E 0.9088 30.7316 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 59 B 0.9696 36.1047 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 60 v 11.5979 35.6325 31.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 61 k -1.0559 34.5835 44.4239 -Verdana_Bold.ttf 32 % 66.6496 44.7350 62 J 0.9062 26.4804 43.5231 -Verdana_Bold.ttf 32 % 66.6496 44.7350 63 U 0.8184 38.0018 43.5231 -Verdana_Bold.ttf 32 % 66.6496 44.7350 64 j -0.5189 20.5270 56.0000 -Verdana_Bold.ttf 32 % 66.6496 44.7350 65 ( -1.3776 21.2683 56.0000 -Verdana_Bold.ttf 32 % 66.6496 44.7350 66 7 1.1588 33.3716 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 67 § -0.3771 33.3731 54.7915 -Verdana_Bold.ttf 32 % 66.6496 44.7350 68 $ -2.1535 34.4240 55.1557 -Verdana_Bold.ttf 32 % 66.6496 44.7350 69 € 0.0376 38.7447 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 70 / -1.1651 31.6359 53.7390 -Verdana_Bold.ttf 32 % 66.6496 44.7350 71 C -0.0923 36.1047 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 72 * -1.0224 32.2547 29.2120 -Verdana_Bold.ttf 32 % 66.6496 44.7350 73 ” -0.9964 30.4239 16.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 74 ? -0.0731 28.4593 43.5231 -Verdana_Bold.ttf 32 % 66.6496 44.7350 75 { -0.7370 31.3248 55.6923 -Verdana_Bold.ttf 32 % 66.6496 44.7350 76 } -0.9062 31.3248 55.6923 -Verdana_Bold.ttf 32 % 66.6496 44.7350 77 , 31.8265 16.5721 21.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 78 I 1.6861 24.5157 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 79 ° 0.3157 24.0564 23.8404 -Verdana_Bold.ttf 32 % 66.6496 44.7350 80 K 1.0321 39.5761 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 81 H 1.2584 38.3656 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 82 q 9.8808 33.5311 44.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 83 & -0.1031 48.3675 44.7350 -Verdana_Bold.ttf 32 % 66.6496 44.7350 84 ’ -1.2034 15.2120 16.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 85 [ -1.3096 19.1555 55.6923 -Verdana_Bold.ttf 32 % 66.6496 44.7350 86 - 20.3960 21.9436 7.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 87 Y 1.4042 42.5237 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 88 Q -0.0963 43.9002 55.0992 -Verdana_Bold.ttf 32 % 66.6496 44.7350 89 " -1.4116 25.0523 16.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 90 ! 1.0484 11.4279 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 91 x 11.5653 36.6284 31.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 92 ) -1.1362 21.2683 56.0000 -Verdana_Bold.ttf 32 % 66.6496 44.7350 93 = 13.0585 36.4803 23.1556 -Verdana_Bold.ttf 32 % 66.6496 44.7350 94 + 6.3119 38.3675 38.3675 -Verdana_Bold.ttf 32 % 66.6496 44.7350 95 X 1.2472 42.3111 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 96 » 8.8046 35.2683 30.4239 -Verdana_Bold.ttf 32 % 66.6496 44.7350 97 ' -1.4747 9.8404 16.7316 -Verdana_Bold.ttf 32 % 66.6496 44.7350 98 ¢ 1.6402 30.9492 51.8404 -Verdana_Bold.ttf 32 % 66.6496 44.7350 99 Z 1.3444 35.7955 42.3111 -Verdana_Bold.ttf 32 % 66.6496 44.7350 100 > 5.2657 38.0564 38.0564 -Verdana_Bold.ttf 32 % 66.6496 44.7350 101 ® -0.1872 49.2683 49.2683 -Verdana_Bold.ttf 32 % 66.6496 44.7350 102 © -0.2299 49.2683 49.2683 -Verdana_Bold.ttf 32 % 66.6496 44.7350 103 ] -1.6256 19.1555 55.6923 -Verdana_Bold.ttf 32 % 66.6496 44.7350 104 é -3.9214 33.9082 48.9606 -Verdana_Bold.ttf 32 % 66.6496 44.7350 105 z 11.7525 29.7357 31.9436 -Verdana_Bold.ttf 32 % 66.6496 44.7350 106 _ 47.3279 41.6923 6.0564 -Verdana_Bold.ttf 32 % 66.6496 44.7350 107 ¥ 1.4875 38.9042 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 1 t 2.2130 24.2160 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 2 h -1.1339 32.3226 44.4239 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 3 a 10.4536 31.7954 34.3675 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 4 n 10.6292 32.3226 33.1555 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 5 P 1.3292 35.4165 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 6 o 10.4085 35.1202 34.3675 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 7 e 10.3614 33.9082 34.3675 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 8 : 11.4400 10.6752 31.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 9 r 11.5486 23.3151 31.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 10 l -0.5860 10.2160 44.4239 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 11 i -0.9033 10.2160 44.4239 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 12 1 1.3548 28.7413 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 13 | -0.8803 8.4803 55.6923 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 14 N 1.0273 38.8363 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 15 f -1.1354 24.5271 44.4239 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 16 g 10.0797 33.5311 44.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 17 d -0.8291 33.5311 45.6359 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 18 W 1.2045 62.2208 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 19 s 10.5786 29.7391 34.3675 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 20 c 10.3852 29.6826 34.3675 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 21 u 11.3974 32.3226 33.1555 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 22 3 0.1215 33.8052 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 23 ~ 14.3690 41.7840 19.3716 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 24 # 1.1612 41.8499 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 25 O 0.0053 43.9002 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 26 ` -4.3714 16.9477 11.2684 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 27 @ -0.0681 47.6808 50.1066 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 28 F 1.4213 30.2610 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 29 S -0.1263 36.6318 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 30 p 10.0980 33.5311 44.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 31 “ -0.5004 30.4239 16.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 32 % 0.0213 66.6496 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 33 £ 0.0195 33.7487 43.5231 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 34 . 32.3676 10.6752 11.2684 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 35 2 -0.0903 33.2780 43.5231 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 36 5 1.0521 33.0639 43.5231 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 37 m 10.2527 52.4335 33.1555 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 38 V 1.2860 42.3111 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 39 6 -0.1375 34.8011 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 40 w 11.7108 54.7880 31.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 41 T 1.3102 37.2507 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 42 M 1.1183 44.7331 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 43 G 0.2183 40.2643 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 44 b -0.9481 33.5311 45.6359 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 45 9 -0.1324 34.8011 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 46 ; 11.4373 16.5721 42.6188 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 47 D 1.5319 40.2643 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 48 L 1.0400 30.5721 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 49 y 11.3896 35.6325 43.5196 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 50 ‘ -1.1173 15.2120 16.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 51 \ -0.7788 31.6359 53.7390 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 52 R 1.2661 41.1651 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 53 < 5.4808 38.0564 38.0564 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 54 4 1.1535 37.2216 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 55 8 -0.2659 36.2291 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 56 0 -0.1528 35.0428 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 57 A 1.2239 43.5231 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 58 E 1.6890 30.7316 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 59 B 1.1368 36.1047 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 60 v 11.4077 35.6325 31.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 61 k -1.0754 34.5835 44.4239 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 62 J 1.2731 26.4804 43.5231 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 63 U 0.7905 38.0018 43.5231 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 64 j -0.6212 20.5270 56.0000 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 65 ( -1.1531 21.2683 56.0000 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 66 7 1.1241 33.3716 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 67 § 0.1774 33.3731 54.7915 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 68 $ -1.6210 34.4240 55.1557 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 69 € -0.1611 38.7447 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 70 / -0.6408 31.6359 53.7390 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 71 C -0.2819 36.1047 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 72 * -0.3447 32.2547 29.2120 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 73 ” -0.7364 30.4239 16.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 74 ? 0.0068 28.4593 43.5231 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 75 { -0.7049 31.3248 55.6923 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 76 } -0.9830 31.3248 55.6923 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 77 , 32.1584 16.5721 21.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 78 I 0.9835 24.5157 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 79 ° -0.0650 24.0564 23.8404 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 80 K 1.4478 39.5761 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 81 H 1.0777 38.3656 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 82 q 10.4252 33.5311 44.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 83 & 0.2467 48.3675 44.7350 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 84 ’ -1.0451 15.2120 16.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 85 [ -0.7241 19.1555 55.6923 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 86 - 20.3547 21.9436 7.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 87 Y 1.2605 42.5237 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 88 Q 0.1187 43.9002 55.0992 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 89 " -0.8200 25.0523 16.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 90 ! 1.1130 11.4279 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 91 x 11.5456 36.6284 31.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 92 ) -0.7897 21.2683 56.0000 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 93 = 12.8972 36.4803 23.1556 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 94 + 5.4467 38.3675 38.3675 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 95 X 1.0569 42.3111 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 96 » 8.9481 35.2683 30.4239 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 97 ' -0.8933 9.8404 16.7316 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 98 ¢ 1.3938 30.9492 51.8404 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 99 Z 1.3726 35.7955 42.3111 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 100 > 5.2643 38.0564 38.0564 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 101 ® -0.5493 49.2683 49.2683 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 102 © -0.2127 49.2683 49.2683 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 103 ] -0.8369 19.1555 55.6923 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 104 é -4.1248 33.9082 48.9606 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 105 z 11.7490 29.7357 31.9436 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 106 _ 47.5789 41.6923 6.0564 -Verdana_Bold.ttf 33 £ 33.7487 43.5231 107 ¥ 1.3962 38.9042 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 1 t -29.7861 24.2160 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 2 h -33.2099 32.3226 44.4239 -Verdana_Bold.ttf 34 . 10.6752 11.2684 3 a -21.7369 31.7954 34.3675 -Verdana_Bold.ttf 34 . 10.6752 11.2684 4 n -21.8377 32.3226 33.1555 -Verdana_Bold.ttf 34 . 10.6752 11.2684 5 P -30.9484 35.4165 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 6 o -21.7623 35.1202 34.3675 -Verdana_Bold.ttf 34 . 10.6752 11.2684 7 e -21.9112 33.9082 34.3675 -Verdana_Bold.ttf 34 . 10.6752 11.2684 8 : -20.7669 10.6752 31.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 9 r -20.4945 23.3151 31.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 10 l -33.5506 10.2160 44.4239 -Verdana_Bold.ttf 34 . 10.6752 11.2684 11 i -32.9325 10.2160 44.4239 -Verdana_Bold.ttf 34 . 10.6752 11.2684 12 1 -31.1464 28.7413 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 13 | -33.5001 8.4803 55.6923 -Verdana_Bold.ttf 34 . 10.6752 11.2684 14 N -30.9614 38.8363 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 15 f -33.1987 24.5271 44.4239 -Verdana_Bold.ttf 34 . 10.6752 11.2684 16 g -22.1433 33.5311 44.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 17 d -33.2666 33.5311 45.6359 -Verdana_Bold.ttf 34 . 10.6752 11.2684 18 W -30.9187 62.2208 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 19 s -21.8524 29.7391 34.3675 -Verdana_Bold.ttf 34 . 10.6752 11.2684 20 c -21.9303 29.6826 34.3675 -Verdana_Bold.ttf 34 . 10.6752 11.2684 21 u -20.4112 32.3226 33.1555 -Verdana_Bold.ttf 34 . 10.6752 11.2684 22 3 -32.2619 33.8052 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 23 ~ -17.9296 41.7840 19.3716 -Verdana_Bold.ttf 34 . 10.6752 11.2684 24 # -30.7670 41.8499 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 25 O -32.4339 43.9002 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 26 ` -36.0753 16.9477 11.2684 -Verdana_Bold.ttf 34 . 10.6752 11.2684 27 @ -32.2547 47.6808 50.1066 -Verdana_Bold.ttf 34 . 10.6752 11.2684 28 F -30.9705 30.2610 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 29 S -32.1005 36.6318 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 30 p -21.8832 33.5311 44.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 31 “ -33.2292 30.4239 16.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 32 % -32.1982 66.6496 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 33 £ -32.2720 33.7487 43.5231 -Verdana_Bold.ttf 34 . 10.6752 11.2684 34 . -0.0914 10.6752 11.2684 -Verdana_Bold.ttf 34 . 10.6752 11.2684 35 2 -32.3418 33.2780 43.5231 -Verdana_Bold.ttf 34 . 10.6752 11.2684 36 5 -31.1370 33.0639 43.5231 -Verdana_Bold.ttf 34 . 10.6752 11.2684 37 m -22.0106 52.4335 33.1555 -Verdana_Bold.ttf 34 . 10.6752 11.2684 38 V -31.0433 42.3111 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 39 6 -32.3065 34.8011 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 40 w -21.0256 54.7880 31.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 41 T -31.0604 37.2507 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 42 M -31.2594 44.7331 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 43 G -32.3185 40.2643 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 44 b -33.3148 33.5311 45.6359 -Verdana_Bold.ttf 34 . 10.6752 11.2684 45 9 -32.2100 34.8011 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 46 ; -20.7630 16.5721 42.6188 -Verdana_Bold.ttf 34 . 10.6752 11.2684 47 D -31.2560 40.2643 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 48 L -30.8473 30.5721 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 49 y -20.8772 35.6325 43.5196 -Verdana_Bold.ttf 34 . 10.6752 11.2684 50 ‘ -33.1061 15.2120 16.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 51 \ -33.2506 31.6359 53.7390 -Verdana_Bold.ttf 34 . 10.6752 11.2684 52 R -30.8106 41.1651 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 53 < -26.8236 38.0564 38.0564 -Verdana_Bold.ttf 34 . 10.6752 11.2684 54 4 -30.9051 37.2216 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 55 8 -32.3399 36.2291 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 56 0 -31.9859 35.0428 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 57 A -30.8499 43.5231 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 58 E -31.0427 30.7316 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 59 B -31.1939 36.1047 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 60 v -20.6723 35.6325 31.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 61 k -33.1722 34.5835 44.4239 -Verdana_Bold.ttf 34 . 10.6752 11.2684 62 J -31.1723 26.4804 43.5231 -Verdana_Bold.ttf 34 . 10.6752 11.2684 63 U -31.1906 38.0018 43.5231 -Verdana_Bold.ttf 34 . 10.6752 11.2684 64 j -33.1530 20.5270 56.0000 -Verdana_Bold.ttf 34 . 10.6752 11.2684 65 ( -33.1555 21.2683 56.0000 -Verdana_Bold.ttf 34 . 10.6752 11.2684 66 7 -30.8149 33.3716 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 67 § -32.1643 33.3731 54.7915 -Verdana_Bold.ttf 34 . 10.6752 11.2684 68 $ -33.9549 34.4240 55.1557 -Verdana_Bold.ttf 34 . 10.6752 11.2684 69 € -32.2176 38.7447 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 70 / -32.9810 31.6359 53.7390 -Verdana_Bold.ttf 34 . 10.6752 11.2684 71 C -32.1651 36.1047 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 72 * -33.1584 32.2547 29.2120 -Verdana_Bold.ttf 34 . 10.6752 11.2684 73 ” -33.1432 30.4239 16.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 74 ? -32.2640 28.4593 43.5231 -Verdana_Bold.ttf 34 . 10.6752 11.2684 75 { -33.2498 31.3248 55.6923 -Verdana_Bold.ttf 34 . 10.6752 11.2684 76 } -33.3387 31.3248 55.6923 -Verdana_Bold.ttf 34 . 10.6752 11.2684 77 , 0.0457 16.5721 21.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 78 I -31.1349 24.5157 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 79 ° -32.1683 24.0564 23.8404 -Verdana_Bold.ttf 34 . 10.6752 11.2684 80 K -31.0744 39.5761 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 81 H -31.0723 38.3656 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 82 q -21.6145 33.5311 44.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 83 & -32.1345 48.3675 44.7350 -Verdana_Bold.ttf 34 . 10.6752 11.2684 84 ’ -33.4631 15.2120 16.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 85 [ -33.2467 19.1555 55.6923 -Verdana_Bold.ttf 34 . 10.6752 11.2684 86 - -11.7465 21.9436 7.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 87 Y -30.9995 42.5237 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 88 Q -32.5263 43.9002 55.0992 -Verdana_Bold.ttf 34 . 10.6752 11.2684 89 " -33.1257 25.0523 16.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 90 ! -31.0917 11.4279 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 91 x -20.4937 36.6284 31.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 92 ) -33.1823 21.2683 56.0000 -Verdana_Bold.ttf 34 . 10.6752 11.2684 93 = -18.7801 36.4803 23.1556 -Verdana_Bold.ttf 34 . 10.6752 11.2684 94 + -26.6921 38.3675 38.3675 -Verdana_Bold.ttf 34 . 10.6752 11.2684 95 X -31.0003 42.3111 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 96 » -22.6472 35.2683 30.4239 -Verdana_Bold.ttf 34 . 10.6752 11.2684 97 ' -33.2812 9.8404 16.7316 -Verdana_Bold.ttf 34 . 10.6752 11.2684 98 ¢ -30.4560 30.9492 51.8404 -Verdana_Bold.ttf 34 . 10.6752 11.2684 99 Z -31.0434 35.7955 42.3111 -Verdana_Bold.ttf 34 . 10.6752 11.2684 100 > -26.7457 38.0564 38.0564 -Verdana_Bold.ttf 34 . 10.6752 11.2684 101 ® -32.2518 49.2683 49.2683 -Verdana_Bold.ttf 34 . 10.6752 11.2684 102 © -31.9980 49.2683 49.2683 -Verdana_Bold.ttf 34 . 10.6752 11.2684 103 ] -33.4424 19.1555 55.6923 -Verdana_Bold.ttf 34 . 10.6752 11.2684 104 é -36.4875 33.9082 48.9606 -Verdana_Bold.ttf 34 . 10.6752 11.2684 105 z -20.6324 29.7357 31.9436 -Verdana_Bold.ttf 34 . 10.6752 11.2684 106 _ 15.1065 41.6923 6.0564 -Verdana_Bold.ttf 34 . 10.6752 11.2684 107 ¥ -30.9099 38.9042 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 1 t 2.6729 24.2160 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 2 h -0.8951 32.3226 44.4239 -Verdana_Bold.ttf 35 2 33.2780 43.5231 3 a 10.5313 31.7954 34.3675 -Verdana_Bold.ttf 35 2 33.2780 43.5231 4 n 10.5147 32.3226 33.1555 -Verdana_Bold.ttf 35 2 33.2780 43.5231 5 P 1.1075 35.4165 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 6 o 9.9936 35.1202 34.3675 -Verdana_Bold.ttf 35 2 33.2780 43.5231 7 e 10.5536 33.9082 34.3675 -Verdana_Bold.ttf 35 2 33.2780 43.5231 8 : 11.4438 10.6752 31.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 9 r 11.5155 23.3151 31.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 10 l -0.4980 10.2160 44.4239 -Verdana_Bold.ttf 35 2 33.2780 43.5231 11 i -0.8436 10.2160 44.4239 -Verdana_Bold.ttf 35 2 33.2780 43.5231 12 1 1.0581 28.7413 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 13 | -0.5206 8.4803 55.6923 -Verdana_Bold.ttf 35 2 33.2780 43.5231 14 N 1.3081 38.8363 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 15 f -0.8479 24.5271 44.4239 -Verdana_Bold.ttf 35 2 33.2780 43.5231 16 g 10.2866 33.5311 44.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 17 d -1.0875 33.5311 45.6359 -Verdana_Bold.ttf 35 2 33.2780 43.5231 18 W 1.2683 62.2208 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 19 s 10.3743 29.7391 34.3675 -Verdana_Bold.ttf 35 2 33.2780 43.5231 20 c 10.1005 29.6826 34.3675 -Verdana_Bold.ttf 35 2 33.2780 43.5231 21 u 11.2657 32.3226 33.1555 -Verdana_Bold.ttf 35 2 33.2780 43.5231 22 3 0.2973 33.8052 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 23 ~ 14.4704 41.7840 19.3716 -Verdana_Bold.ttf 35 2 33.2780 43.5231 24 # 0.8478 41.8499 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 25 O 0.1354 43.9002 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 26 ` -4.4243 16.9477 11.2684 -Verdana_Bold.ttf 35 2 33.2780 43.5231 27 @ -0.0769 47.6808 50.1066 -Verdana_Bold.ttf 35 2 33.2780 43.5231 28 F 1.7665 30.2610 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 29 S -0.0086 36.6318 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 30 p 10.3758 33.5311 44.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 31 “ -0.9144 30.4239 16.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 32 % 0.0079 66.6496 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 33 £ 0.0391 33.7487 43.5231 -Verdana_Bold.ttf 35 2 33.2780 43.5231 34 . 32.3001 10.6752 11.2684 -Verdana_Bold.ttf 35 2 33.2780 43.5231 35 2 0.0870 33.2780 43.5231 -Verdana_Bold.ttf 35 2 33.2780 43.5231 36 5 1.0212 33.0639 43.5231 -Verdana_Bold.ttf 35 2 33.2780 43.5231 37 m 10.3704 52.4335 33.1555 -Verdana_Bold.ttf 35 2 33.2780 43.5231 38 V 1.0349 42.3111 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 39 6 -0.2494 34.8011 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 40 w 11.3291 54.7880 31.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 41 T 0.9997 37.2507 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 42 M 1.1818 44.7331 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 43 G 0.1374 40.2643 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 44 b -0.8716 33.5311 45.6359 -Verdana_Bold.ttf 35 2 33.2780 43.5231 45 9 0.1980 34.8011 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 46 ; 11.8357 16.5721 42.6188 -Verdana_Bold.ttf 35 2 33.2780 43.5231 47 D 0.9111 40.2643 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 48 L 0.9389 30.5721 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 49 y 11.7170 35.6325 43.5196 -Verdana_Bold.ttf 35 2 33.2780 43.5231 50 ‘ -1.0010 15.2120 16.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 51 \ -0.8094 31.6359 53.7390 -Verdana_Bold.ttf 35 2 33.2780 43.5231 52 R 1.1749 41.1651 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 53 < 5.4923 38.0564 38.0564 -Verdana_Bold.ttf 35 2 33.2780 43.5231 54 4 1.4631 37.2216 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 55 8 0.0201 36.2291 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 56 0 0.0580 35.0428 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 57 A 1.0301 43.5231 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 58 E 0.9888 30.7316 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 59 B 1.2194 36.1047 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 60 v 11.5523 35.6325 31.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 61 k -0.9712 34.5835 44.4239 -Verdana_Bold.ttf 35 2 33.2780 43.5231 62 J 1.1231 26.4804 43.5231 -Verdana_Bold.ttf 35 2 33.2780 43.5231 63 U 1.0731 38.0018 43.5231 -Verdana_Bold.ttf 35 2 33.2780 43.5231 64 j -0.8688 20.5270 56.0000 -Verdana_Bold.ttf 35 2 33.2780 43.5231 65 ( -0.6823 21.2683 56.0000 -Verdana_Bold.ttf 35 2 33.2780 43.5231 66 7 1.1974 33.3716 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 67 § -0.3761 33.3731 54.7915 -Verdana_Bold.ttf 35 2 33.2780 43.5231 68 $ -1.9035 34.4240 55.1557 -Verdana_Bold.ttf 35 2 33.2780 43.5231 69 € -0.0960 38.7447 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 70 / -0.9513 31.6359 53.7390 -Verdana_Bold.ttf 35 2 33.2780 43.5231 71 C 0.1846 36.1047 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 72 * -0.7299 32.2547 29.2120 -Verdana_Bold.ttf 35 2 33.2780 43.5231 73 ” -1.0319 30.4239 16.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 74 ? 0.2729 28.4593 43.5231 -Verdana_Bold.ttf 35 2 33.2780 43.5231 75 { -1.1463 31.3248 55.6923 -Verdana_Bold.ttf 35 2 33.2780 43.5231 76 } -0.9620 31.3248 55.6923 -Verdana_Bold.ttf 35 2 33.2780 43.5231 77 , 32.4300 16.5721 21.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 78 I 1.3144 24.5157 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 79 ° -0.0202 24.0564 23.8404 -Verdana_Bold.ttf 35 2 33.2780 43.5231 80 K 1.2624 39.5761 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 81 H 1.2371 38.3656 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 82 q 10.5385 33.5311 44.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 83 & -0.0593 48.3675 44.7350 -Verdana_Bold.ttf 35 2 33.2780 43.5231 84 ’ -1.2820 15.2120 16.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 85 [ -0.9643 19.1555 55.6923 -Verdana_Bold.ttf 35 2 33.2780 43.5231 86 - 19.9986 21.9436 7.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 87 Y 0.9848 42.5237 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 88 Q -0.0435 43.9002 55.0992 -Verdana_Bold.ttf 35 2 33.2780 43.5231 89 " -0.8084 25.0523 16.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 90 ! 1.1218 11.4279 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 91 x 11.5568 36.6284 31.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 92 ) -1.1617 21.2683 56.0000 -Verdana_Bold.ttf 35 2 33.2780 43.5231 93 = 13.0815 36.4803 23.1556 -Verdana_Bold.ttf 35 2 33.2780 43.5231 94 + 5.4967 38.3675 38.3675 -Verdana_Bold.ttf 35 2 33.2780 43.5231 95 X 1.1074 42.3111 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 96 » 9.4357 35.2683 30.4239 -Verdana_Bold.ttf 35 2 33.2780 43.5231 97 ' -0.7194 9.8404 16.7316 -Verdana_Bold.ttf 35 2 33.2780 43.5231 98 ¢ 1.4255 30.9492 51.8404 -Verdana_Bold.ttf 35 2 33.2780 43.5231 99 Z 1.3121 35.7955 42.3111 -Verdana_Bold.ttf 35 2 33.2780 43.5231 100 > 5.6117 38.0564 38.0564 -Verdana_Bold.ttf 35 2 33.2780 43.5231 101 ® -0.1838 49.2683 49.2683 -Verdana_Bold.ttf 35 2 33.2780 43.5231 102 © -0.2718 49.2683 49.2683 -Verdana_Bold.ttf 35 2 33.2780 43.5231 103 ] -0.9212 19.1555 55.6923 -Verdana_Bold.ttf 35 2 33.2780 43.5231 104 é -4.1292 33.9082 48.9606 -Verdana_Bold.ttf 35 2 33.2780 43.5231 105 z 11.5223 29.7357 31.9436 -Verdana_Bold.ttf 35 2 33.2780 43.5231 106 _ 47.3596 41.6923 6.0564 -Verdana_Bold.ttf 35 2 33.2780 43.5231 107 ¥ 1.1914 38.9042 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 1 t 1.5200 24.2160 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 2 h -2.3925 32.3226 44.4239 -Verdana_Bold.ttf 36 5 33.0639 43.5231 3 a 8.9630 31.7954 34.3675 -Verdana_Bold.ttf 36 5 33.0639 43.5231 4 n 9.0431 32.3226 33.1555 -Verdana_Bold.ttf 36 5 33.0639 43.5231 5 P -0.0519 35.4165 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 6 o 9.1239 35.1202 34.3675 -Verdana_Bold.ttf 36 5 33.0639 43.5231 7 e 9.1618 33.9082 34.3675 -Verdana_Bold.ttf 36 5 33.0639 43.5231 8 : 10.8439 10.6752 31.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 9 r 10.1815 23.3151 31.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 10 l -1.8546 10.2160 44.4239 -Verdana_Bold.ttf 36 5 33.0639 43.5231 11 i -2.3040 10.2160 44.4239 -Verdana_Bold.ttf 36 5 33.0639 43.5231 12 1 0.5540 28.7413 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 13 | -2.2689 8.4803 55.6923 -Verdana_Bold.ttf 36 5 33.0639 43.5231 14 N 0.4476 38.8363 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 15 f -2.2339 24.5271 44.4239 -Verdana_Bold.ttf 36 5 33.0639 43.5231 16 g 9.3566 33.5311 44.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 17 d -2.0926 33.5311 45.6359 -Verdana_Bold.ttf 36 5 33.0639 43.5231 18 W -0.1734 62.2208 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 19 s 9.1829 29.7391 34.3675 -Verdana_Bold.ttf 36 5 33.0639 43.5231 20 c 9.1152 29.6826 34.3675 -Verdana_Bold.ttf 36 5 33.0639 43.5231 21 u 9.8916 32.3226 33.1555 -Verdana_Bold.ttf 36 5 33.0639 43.5231 22 3 -1.4606 33.8052 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 23 ~ 13.0449 41.7840 19.3716 -Verdana_Bold.ttf 36 5 33.0639 43.5231 24 # -0.0426 41.8499 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 25 O -0.7147 43.9002 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 26 ` -5.4014 16.9477 11.2684 -Verdana_Bold.ttf 36 5 33.0639 43.5231 27 @ -1.3984 47.6808 50.1066 -Verdana_Bold.ttf 36 5 33.0639 43.5231 28 F -0.0079 30.2610 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 29 S -1.4196 36.6318 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 30 p 9.2665 33.5311 44.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 31 “ -2.0732 30.4239 16.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 32 % -1.2885 66.6496 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 33 £ -1.2422 33.7487 43.5231 -Verdana_Bold.ttf 36 5 33.0639 43.5231 34 . 31.1047 10.6752 11.2684 -Verdana_Bold.ttf 36 5 33.0639 43.5231 35 2 -1.1800 33.2780 43.5231 -Verdana_Bold.ttf 36 5 33.0639 43.5231 36 5 0.3181 33.0639 43.5231 -Verdana_Bold.ttf 36 5 33.0639 43.5231 37 m 9.0621 52.4335 33.1555 -Verdana_Bold.ttf 36 5 33.0639 43.5231 38 V -0.0544 42.3111 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 39 6 -1.3926 34.8011 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 40 w 10.4209 54.7880 31.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 41 T 0.0673 37.2507 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 42 M -0.1792 44.7331 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 43 G -1.6662 40.2643 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 44 b -1.7725 33.5311 45.6359 -Verdana_Bold.ttf 36 5 33.0639 43.5231 45 9 -1.1768 34.8011 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 46 ; 10.2384 16.5721 42.6188 -Verdana_Bold.ttf 36 5 33.0639 43.5231 47 D 0.1893 40.2643 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 48 L 0.1242 30.5721 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 49 y 10.4194 35.6325 43.5196 -Verdana_Bold.ttf 36 5 33.0639 43.5231 50 ‘ -1.9264 15.2120 16.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 51 \ -2.1639 31.6359 53.7390 -Verdana_Bold.ttf 36 5 33.0639 43.5231 52 R -0.0913 41.1651 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 53 < 4.1230 38.0564 38.0564 -Verdana_Bold.ttf 36 5 33.0639 43.5231 54 4 0.2971 37.2216 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 55 8 -1.3424 36.2291 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 56 0 -1.3070 35.0428 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 57 A -0.0494 43.5231 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 58 E -0.2377 30.7316 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 59 B 0.0296 36.1047 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 60 v 10.3405 35.6325 31.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 61 k -2.0954 34.5835 44.4239 -Verdana_Bold.ttf 36 5 33.0639 43.5231 62 J -0.1045 26.4804 43.5231 -Verdana_Bold.ttf 36 5 33.0639 43.5231 63 U 0.2489 38.0018 43.5231 -Verdana_Bold.ttf 36 5 33.0639 43.5231 64 j -2.2588 20.5270 56.0000 -Verdana_Bold.ttf 36 5 33.0639 43.5231 65 ( -2.3007 21.2683 56.0000 -Verdana_Bold.ttf 36 5 33.0639 43.5231 66 7 0.0039 33.3716 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 67 § -0.9197 33.3731 54.7915 -Verdana_Bold.ttf 36 5 33.0639 43.5231 68 $ -2.8749 34.4240 55.1557 -Verdana_Bold.ttf 36 5 33.0639 43.5231 69 € -1.2332 38.7447 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 70 / -2.2434 31.6359 53.7390 -Verdana_Bold.ttf 36 5 33.0639 43.5231 71 C -1.2558 36.1047 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 72 * -2.1128 32.2547 29.2120 -Verdana_Bold.ttf 36 5 33.0639 43.5231 73 ” -2.0191 30.4239 16.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 74 ? -1.4272 28.4593 43.5231 -Verdana_Bold.ttf 36 5 33.0639 43.5231 75 { -2.2052 31.3248 55.6923 -Verdana_Bold.ttf 36 5 33.0639 43.5231 76 } -2.1204 31.3248 55.6923 -Verdana_Bold.ttf 36 5 33.0639 43.5231 77 , 30.9895 16.5721 21.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 78 I -0.0922 24.5157 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 79 ° -0.9165 24.0564 23.8404 -Verdana_Bold.ttf 36 5 33.0639 43.5231 80 K -0.1960 39.5761 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 81 H 0.2251 38.3656 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 82 q 9.3968 33.5311 44.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 83 & -1.2378 48.3675 44.7350 -Verdana_Bold.ttf 36 5 33.0639 43.5231 84 ’ -2.1571 15.2120 16.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 85 [ -2.1840 19.1555 55.6923 -Verdana_Bold.ttf 36 5 33.0639 43.5231 86 - 18.9343 21.9436 7.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 87 Y 0.0951 42.5237 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 88 Q -1.3119 43.9002 55.0992 -Verdana_Bold.ttf 36 5 33.0639 43.5231 89 " -1.9851 25.0523 16.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 90 ! -0.1510 11.4279 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 91 x 9.8814 36.6284 31.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 92 ) -2.0616 21.2683 56.0000 -Verdana_Bold.ttf 36 5 33.0639 43.5231 93 = 12.1495 36.4803 23.1556 -Verdana_Bold.ttf 36 5 33.0639 43.5231 94 + 4.5617 38.3675 38.3675 -Verdana_Bold.ttf 36 5 33.0639 43.5231 95 X -0.1327 42.3111 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 96 » 7.8612 35.2683 30.4239 -Verdana_Bold.ttf 36 5 33.0639 43.5231 97 ' -2.0272 9.8404 16.7316 -Verdana_Bold.ttf 36 5 33.0639 43.5231 98 ¢ 0.2628 30.9492 51.8404 -Verdana_Bold.ttf 36 5 33.0639 43.5231 99 Z -0.1840 35.7955 42.3111 -Verdana_Bold.ttf 36 5 33.0639 43.5231 100 > 4.4926 38.0564 38.0564 -Verdana_Bold.ttf 36 5 33.0639 43.5231 101 ® -1.3461 49.2683 49.2683 -Verdana_Bold.ttf 36 5 33.0639 43.5231 102 © -1.0904 49.2683 49.2683 -Verdana_Bold.ttf 36 5 33.0639 43.5231 103 ] -2.3128 19.1555 55.6923 -Verdana_Bold.ttf 36 5 33.0639 43.5231 104 é -5.4247 33.9082 48.9606 -Verdana_Bold.ttf 36 5 33.0639 43.5231 105 z 10.5833 29.7357 31.9436 -Verdana_Bold.ttf 36 5 33.0639 43.5231 106 _ 46.3890 41.6923 6.0564 -Verdana_Bold.ttf 36 5 33.0639 43.5231 107 ¥ -0.0471 38.9042 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 1 t -7.7914 24.2160 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 2 h -11.3171 32.3226 44.4239 -Verdana_Bold.ttf 37 m 52.4335 33.1555 3 a -0.0082 31.7954 34.3675 -Verdana_Bold.ttf 37 m 52.4335 33.1555 4 n -0.3424 32.3226 33.1555 -Verdana_Bold.ttf 37 m 52.4335 33.1555 5 P -9.1397 35.4165 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 6 o 0.1645 35.1202 34.3675 -Verdana_Bold.ttf 37 m 52.4335 33.1555 7 e -0.1950 33.9082 34.3675 -Verdana_Bold.ttf 37 m 52.4335 33.1555 8 : 1.0648 10.6752 31.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 9 r 1.0610 23.3151 31.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 10 l -11.4701 10.2160 44.4239 -Verdana_Bold.ttf 37 m 52.4335 33.1555 11 i -11.1460 10.2160 44.4239 -Verdana_Bold.ttf 37 m 52.4335 33.1555 12 1 -8.8977 28.7413 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 13 | -11.4565 8.4803 55.6923 -Verdana_Bold.ttf 37 m 52.4335 33.1555 14 N -8.8039 38.8363 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 15 f -11.5223 24.5271 44.4239 -Verdana_Bold.ttf 37 m 52.4335 33.1555 16 g 0.2304 33.5311 44.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 17 d -11.3249 33.5311 45.6359 -Verdana_Bold.ttf 37 m 52.4335 33.1555 18 W -9.4613 62.2208 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 19 s 0.0340 29.7391 34.3675 -Verdana_Bold.ttf 37 m 52.4335 33.1555 20 c -0.0526 29.6826 34.3675 -Verdana_Bold.ttf 37 m 52.4335 33.1555 21 u 1.1654 32.3226 33.1555 -Verdana_Bold.ttf 37 m 52.4335 33.1555 22 3 -10.3255 33.8052 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 23 ~ 4.0378 41.7840 19.3716 -Verdana_Bold.ttf 37 m 52.4335 33.1555 24 # -9.3220 41.8499 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 25 O -10.5830 43.9002 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 26 ` -14.0458 16.9477 11.2684 -Verdana_Bold.ttf 37 m 52.4335 33.1555 27 @ -10.3521 47.6808 50.1066 -Verdana_Bold.ttf 37 m 52.4335 33.1555 28 F -8.9157 30.2610 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 29 S -10.4686 36.6318 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 30 p -0.3957 33.5311 44.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 31 “ -11.1427 30.4239 16.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 32 % -10.5173 66.6496 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 33 £ -10.5500 33.7487 43.5231 -Verdana_Bold.ttf 37 m 52.4335 33.1555 34 . 22.1425 10.6752 11.2684 -Verdana_Bold.ttf 37 m 52.4335 33.1555 35 2 -10.9251 33.2780 43.5231 -Verdana_Bold.ttf 37 m 52.4335 33.1555 36 5 -8.9258 33.0639 43.5231 -Verdana_Bold.ttf 37 m 52.4335 33.1555 37 m 0.3549 52.4335 33.1555 -Verdana_Bold.ttf 37 m 52.4335 33.1555 38 V -9.2533 42.3111 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 39 6 -10.3697 34.8011 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 40 w 1.4568 54.7880 31.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 41 T -9.2494 37.2507 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 42 M -9.4996 44.7331 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 43 G -10.1962 40.2643 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 44 b -11.3622 33.5311 45.6359 -Verdana_Bold.ttf 37 m 52.4335 33.1555 45 9 -10.2322 34.8011 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 46 ; 1.4182 16.5721 42.6188 -Verdana_Bold.ttf 37 m 52.4335 33.1555 47 D -9.3358 40.2643 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 48 L -9.4817 30.5721 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 49 y 0.9831 35.6325 43.5196 -Verdana_Bold.ttf 37 m 52.4335 33.1555 50 ‘ -11.4180 15.2120 16.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 51 \ -11.3702 31.6359 53.7390 -Verdana_Bold.ttf 37 m 52.4335 33.1555 52 R -9.4242 41.1651 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 53 < -5.1143 38.0564 38.0564 -Verdana_Bold.ttf 37 m 52.4335 33.1555 54 4 -9.3208 37.2216 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 55 8 -10.5038 36.2291 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 56 0 -10.2419 35.0428 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 57 A -9.1574 43.5231 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 58 E -9.1406 30.7316 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 59 B -8.8949 36.1047 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 60 v 1.3938 35.6325 31.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 61 k -10.7904 34.5835 44.4239 -Verdana_Bold.ttf 37 m 52.4335 33.1555 62 J -9.3435 26.4804 43.5231 -Verdana_Bold.ttf 37 m 52.4335 33.1555 63 U -9.1636 38.0018 43.5231 -Verdana_Bold.ttf 37 m 52.4335 33.1555 64 j -11.1697 20.5270 56.0000 -Verdana_Bold.ttf 37 m 52.4335 33.1555 65 ( -11.3817 21.2683 56.0000 -Verdana_Bold.ttf 37 m 52.4335 33.1555 66 7 -9.2713 33.3716 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 67 § -10.5019 33.3731 54.7915 -Verdana_Bold.ttf 37 m 52.4335 33.1555 68 $ -12.0999 34.4240 55.1557 -Verdana_Bold.ttf 37 m 52.4335 33.1555 69 € -10.4089 38.7447 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 70 / -11.1380 31.6359 53.7390 -Verdana_Bold.ttf 37 m 52.4335 33.1555 71 C -10.1495 36.1047 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 72 * -11.4937 32.2547 29.2120 -Verdana_Bold.ttf 37 m 52.4335 33.1555 73 ” -11.4452 30.4239 16.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 74 ? -10.5335 28.4593 43.5231 -Verdana_Bold.ttf 37 m 52.4335 33.1555 75 { -10.8816 31.3248 55.6923 -Verdana_Bold.ttf 37 m 52.4335 33.1555 76 } -11.2222 31.3248 55.6923 -Verdana_Bold.ttf 37 m 52.4335 33.1555 77 , 21.6721 16.5721 21.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 78 I -9.2583 24.5157 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 79 ° -10.5346 24.0564 23.8404 -Verdana_Bold.ttf 37 m 52.4335 33.1555 80 K -9.3270 39.5761 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 81 H -9.0790 38.3656 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 82 q -0.2817 33.5311 44.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 83 & -10.4373 48.3675 44.7350 -Verdana_Bold.ttf 37 m 52.4335 33.1555 84 ’ -11.1320 15.2120 16.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 85 [ -11.4951 19.1555 55.6923 -Verdana_Bold.ttf 37 m 52.4335 33.1555 86 - 10.1672 21.9436 7.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 87 Y -9.1738 42.5237 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 88 Q -10.3608 43.9002 55.0992 -Verdana_Bold.ttf 37 m 52.4335 33.1555 89 " -11.6745 25.0523 16.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 90 ! -9.1222 11.4279 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 91 x 0.6567 36.6284 31.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 92 ) -11.5356 21.2683 56.0000 -Verdana_Bold.ttf 37 m 52.4335 33.1555 93 = 2.7015 36.4803 23.1556 -Verdana_Bold.ttf 37 m 52.4335 33.1555 94 + -4.4882 38.3675 38.3675 -Verdana_Bold.ttf 37 m 52.4335 33.1555 95 X -9.2863 42.3111 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 96 » -1.0071 35.2683 30.4239 -Verdana_Bold.ttf 37 m 52.4335 33.1555 97 ' -11.3334 9.8404 16.7316 -Verdana_Bold.ttf 37 m 52.4335 33.1555 98 ¢ -8.8542 30.9492 51.8404 -Verdana_Bold.ttf 37 m 52.4335 33.1555 99 Z -8.9568 35.7955 42.3111 -Verdana_Bold.ttf 37 m 52.4335 33.1555 100 > -5.0500 38.0564 38.0564 -Verdana_Bold.ttf 37 m 52.4335 33.1555 101 ® -10.4202 49.2683 49.2683 -Verdana_Bold.ttf 37 m 52.4335 33.1555 102 © -10.3266 49.2683 49.2683 -Verdana_Bold.ttf 37 m 52.4335 33.1555 103 ] -10.8793 19.1555 55.6923 -Verdana_Bold.ttf 37 m 52.4335 33.1555 104 é -14.8944 33.9082 48.9606 -Verdana_Bold.ttf 37 m 52.4335 33.1555 105 z 1.4523 29.7357 31.9436 -Verdana_Bold.ttf 37 m 52.4335 33.1555 106 _ 37.0323 41.6923 6.0564 -Verdana_Bold.ttf 37 m 52.4335 33.1555 107 ¥ -8.8072 38.9042 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 1 t 0.9276 24.2160 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 2 h -2.0236 32.3226 44.4239 -Verdana_Bold.ttf 38 V 42.3111 42.3111 3 a 9.7076 31.7954 34.3675 -Verdana_Bold.ttf 38 V 42.3111 42.3111 4 n 9.4559 32.3226 33.1555 -Verdana_Bold.ttf 38 V 42.3111 42.3111 5 P -0.2566 35.4165 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 6 o 9.0573 35.1202 34.3675 -Verdana_Bold.ttf 38 V 42.3111 42.3111 7 e 9.1344 33.9082 34.3675 -Verdana_Bold.ttf 38 V 42.3111 42.3111 8 : 10.5083 10.6752 31.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 9 r 10.3191 23.3151 31.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 10 l -1.9585 10.2160 44.4239 -Verdana_Bold.ttf 38 V 42.3111 42.3111 11 i -2.2307 10.2160 44.4239 -Verdana_Bold.ttf 38 V 42.3111 42.3111 12 1 0.0692 28.7413 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 13 | -2.2963 8.4803 55.6923 -Verdana_Bold.ttf 38 V 42.3111 42.3111 14 N -0.3305 38.8363 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 15 f -1.9220 24.5271 44.4239 -Verdana_Bold.ttf 38 V 42.3111 42.3111 16 g 8.9466 33.5311 44.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 17 d -2.3739 33.5311 45.6359 -Verdana_Bold.ttf 38 V 42.3111 42.3111 18 W -0.1283 62.2208 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 19 s 9.1254 29.7391 34.3675 -Verdana_Bold.ttf 38 V 42.3111 42.3111 20 c 9.0293 29.6826 34.3675 -Verdana_Bold.ttf 38 V 42.3111 42.3111 21 u 10.4503 32.3226 33.1555 -Verdana_Bold.ttf 38 V 42.3111 42.3111 22 3 -1.4067 33.8052 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 23 ~ 13.1174 41.7840 19.3716 -Verdana_Bold.ttf 38 V 42.3111 42.3111 24 # -0.1543 41.8499 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 25 O -0.9366 43.9002 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 26 ` -5.3911 16.9477 11.2684 -Verdana_Bold.ttf 38 V 42.3111 42.3111 27 @ -1.3588 47.6808 50.1066 -Verdana_Bold.ttf 38 V 42.3111 42.3111 28 F 0.1294 30.2610 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 29 S -1.2515 36.6318 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 30 p 9.3145 33.5311 44.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 31 “ -2.2768 30.4239 16.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 32 % -1.2167 66.6496 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 33 £ -1.3764 33.7487 43.5231 -Verdana_Bold.ttf 38 V 42.3111 42.3111 34 . 31.0535 10.6752 11.2684 -Verdana_Bold.ttf 38 V 42.3111 42.3111 35 2 -1.0241 33.2780 43.5231 -Verdana_Bold.ttf 38 V 42.3111 42.3111 36 5 0.3329 33.0639 43.5231 -Verdana_Bold.ttf 38 V 42.3111 42.3111 37 m 9.2729 52.4335 33.1555 -Verdana_Bold.ttf 38 V 42.3111 42.3111 38 V -0.2623 42.3111 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 39 6 -1.1072 34.8011 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 40 w 10.2828 54.7880 31.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 41 T -0.2609 37.2507 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 42 M -0.1090 44.7331 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 43 G -1.3249 40.2643 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 44 b -2.0543 33.5311 45.6359 -Verdana_Bold.ttf 38 V 42.3111 42.3111 45 9 -1.1793 34.8011 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 46 ; 10.1622 16.5721 42.6188 -Verdana_Bold.ttf 38 V 42.3111 42.3111 47 D -0.1798 40.2643 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 48 L -0.1201 30.5721 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 49 y 10.4306 35.6325 43.5196 -Verdana_Bold.ttf 38 V 42.3111 42.3111 50 ‘ -1.8060 15.2120 16.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 51 \ -1.9266 31.6359 53.7390 -Verdana_Bold.ttf 38 V 42.3111 42.3111 52 R 0.3905 41.1651 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 53 < 4.1817 38.0564 38.0564 -Verdana_Bold.ttf 38 V 42.3111 42.3111 54 4 0.2120 37.2216 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 55 8 -1.2836 36.2291 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 56 0 -1.0727 35.0428 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 57 A 0.2238 43.5231 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 58 E 0.0917 30.7316 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 59 B -0.0856 36.1047 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 60 v 10.3121 35.6325 31.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 61 k -1.8669 34.5835 44.4239 -Verdana_Bold.ttf 38 V 42.3111 42.3111 62 J 0.0087 26.4804 43.5231 -Verdana_Bold.ttf 38 V 42.3111 42.3111 63 U 0.1755 38.0018 43.5231 -Verdana_Bold.ttf 38 V 42.3111 42.3111 64 j -1.8459 20.5270 56.0000 -Verdana_Bold.ttf 38 V 42.3111 42.3111 65 ( -2.1437 21.2683 56.0000 -Verdana_Bold.ttf 38 V 42.3111 42.3111 66 7 0.1499 33.3716 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 67 § -1.3864 33.3731 54.7915 -Verdana_Bold.ttf 38 V 42.3111 42.3111 68 $ -2.5029 34.4240 55.1557 -Verdana_Bold.ttf 38 V 42.3111 42.3111 69 € -1.1601 38.7447 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 70 / -1.9985 31.6359 53.7390 -Verdana_Bold.ttf 38 V 42.3111 42.3111 71 C -1.6153 36.1047 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 72 * -2.0812 32.2547 29.2120 -Verdana_Bold.ttf 38 V 42.3111 42.3111 73 ” -2.0043 30.4239 16.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 74 ? -1.2153 28.4593 43.5231 -Verdana_Bold.ttf 38 V 42.3111 42.3111 75 { -2.0995 31.3248 55.6923 -Verdana_Bold.ttf 38 V 42.3111 42.3111 76 } -2.0225 31.3248 55.6923 -Verdana_Bold.ttf 38 V 42.3111 42.3111 77 , 31.1113 16.5721 21.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 78 I 0.1187 24.5157 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 79 ° -1.4625 24.0564 23.8404 -Verdana_Bold.ttf 38 V 42.3111 42.3111 80 K -0.1730 39.5761 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 81 H 0.1875 38.3656 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 82 q 9.2996 33.5311 44.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 83 & -1.6301 48.3675 44.7350 -Verdana_Bold.ttf 38 V 42.3111 42.3111 84 ’ -2.0816 15.2120 16.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 85 [ -2.0754 19.1555 55.6923 -Verdana_Bold.ttf 38 V 42.3111 42.3111 86 - 18.9102 21.9436 7.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 87 Y -0.0816 42.5237 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 88 Q -1.3961 43.9002 55.0992 -Verdana_Bold.ttf 38 V 42.3111 42.3111 89 " -2.1947 25.0523 16.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 90 ! 0.3752 11.4279 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 91 x 10.5735 36.6284 31.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 92 ) -2.0926 21.2683 56.0000 -Verdana_Bold.ttf 38 V 42.3111 42.3111 93 = 12.1419 36.4803 23.1556 -Verdana_Bold.ttf 38 V 42.3111 42.3111 94 + 4.4823 38.3675 38.3675 -Verdana_Bold.ttf 38 V 42.3111 42.3111 95 X -0.1015 42.3111 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 96 » 8.1391 35.2683 30.4239 -Verdana_Bold.ttf 38 V 42.3111 42.3111 97 ' -2.0980 9.8404 16.7316 -Verdana_Bold.ttf 38 V 42.3111 42.3111 98 ¢ 0.1425 30.9492 51.8404 -Verdana_Bold.ttf 38 V 42.3111 42.3111 99 Z -0.2042 35.7955 42.3111 -Verdana_Bold.ttf 38 V 42.3111 42.3111 100 > 4.1857 38.0564 38.0564 -Verdana_Bold.ttf 38 V 42.3111 42.3111 101 ® -1.1973 49.2683 49.2683 -Verdana_Bold.ttf 38 V 42.3111 42.3111 102 © -1.5222 49.2683 49.2683 -Verdana_Bold.ttf 38 V 42.3111 42.3111 103 ] -2.2942 19.1555 55.6923 -Verdana_Bold.ttf 38 V 42.3111 42.3111 104 é -5.6584 33.9082 48.9606 -Verdana_Bold.ttf 38 V 42.3111 42.3111 105 z 10.3864 29.7357 31.9436 -Verdana_Bold.ttf 38 V 42.3111 42.3111 106 _ 46.1004 41.6923 6.0564 -Verdana_Bold.ttf 38 V 42.3111 42.3111 107 ¥ 0.1417 38.9042 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 1 t 2.3859 24.2160 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 2 h -0.9346 32.3226 44.4239 -Verdana_Bold.ttf 39 6 34.8011 44.7350 3 a 10.4598 31.7954 34.3675 -Verdana_Bold.ttf 39 6 34.8011 44.7350 4 n 10.7612 32.3226 33.1555 -Verdana_Bold.ttf 39 6 34.8011 44.7350 5 P 1.2173 35.4165 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 6 o 10.6732 35.1202 34.3675 -Verdana_Bold.ttf 39 6 34.8011 44.7350 7 e 10.4676 33.9082 34.3675 -Verdana_Bold.ttf 39 6 34.8011 44.7350 8 : 11.4305 10.6752 31.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 9 r 11.3503 23.3151 31.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 10 l -0.6705 10.2160 44.4239 -Verdana_Bold.ttf 39 6 34.8011 44.7350 11 i -0.9332 10.2160 44.4239 -Verdana_Bold.ttf 39 6 34.8011 44.7350 12 1 1.4663 28.7413 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 13 | -1.3167 8.4803 55.6923 -Verdana_Bold.ttf 39 6 34.8011 44.7350 14 N 1.0140 38.8363 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 15 f -0.8019 24.5271 44.4239 -Verdana_Bold.ttf 39 6 34.8011 44.7350 16 g 10.2362 33.5311 44.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 17 d -1.0038 33.5311 45.6359 -Verdana_Bold.ttf 39 6 34.8011 44.7350 18 W 1.0652 62.2208 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 19 s 10.2066 29.7391 34.3675 -Verdana_Bold.ttf 39 6 34.8011 44.7350 20 c 10.1210 29.6826 34.3675 -Verdana_Bold.ttf 39 6 34.8011 44.7350 21 u 11.5842 32.3226 33.1555 -Verdana_Bold.ttf 39 6 34.8011 44.7350 22 3 -0.2710 33.8052 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 23 ~ 14.7267 41.7840 19.3716 -Verdana_Bold.ttf 39 6 34.8011 44.7350 24 # 1.2727 41.8499 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 25 O 0.1168 43.9002 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 26 ` -3.9474 16.9477 11.2684 -Verdana_Bold.ttf 39 6 34.8011 44.7350 27 @ 0.1901 47.6808 50.1066 -Verdana_Bold.ttf 39 6 34.8011 44.7350 28 F 1.0708 30.2610 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 29 S 0.0000 36.6318 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 30 p 10.8185 33.5311 44.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 31 “ -0.8127 30.4239 16.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 32 % 0.1111 66.6496 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 33 £ -0.2605 33.7487 43.5231 -Verdana_Bold.ttf 39 6 34.8011 44.7350 34 . 32.0804 10.6752 11.2684 -Verdana_Bold.ttf 39 6 34.8011 44.7350 35 2 -0.3804 33.2780 43.5231 -Verdana_Bold.ttf 39 6 34.8011 44.7350 36 5 1.3316 33.0639 43.5231 -Verdana_Bold.ttf 39 6 34.8011 44.7350 37 m 10.2102 52.4335 33.1555 -Verdana_Bold.ttf 39 6 34.8011 44.7350 38 V 1.0832 42.3111 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 39 6 -0.0813 34.8011 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 40 w 11.7381 54.7880 31.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 41 T 1.0463 37.2507 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 42 M 1.1404 44.7331 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 43 G -0.3109 40.2643 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 44 b -1.0934 33.5311 45.6359 -Verdana_Bold.ttf 39 6 34.8011 44.7350 45 9 0.1436 34.8011 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 46 ; 11.2951 16.5721 42.6188 -Verdana_Bold.ttf 39 6 34.8011 44.7350 47 D 1.4434 40.2643 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 48 L 1.3220 30.5721 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 49 y 11.5943 35.6325 43.5196 -Verdana_Bold.ttf 39 6 34.8011 44.7350 50 ‘ -0.9683 15.2120 16.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 51 \ -1.2226 31.6359 53.7390 -Verdana_Bold.ttf 39 6 34.8011 44.7350 52 R 1.3365 41.1651 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 53 < 5.3202 38.0564 38.0564 -Verdana_Bold.ttf 39 6 34.8011 44.7350 54 4 1.2544 37.2216 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 55 8 -0.2885 36.2291 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 56 0 -0.2019 35.0428 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 57 A 0.9605 43.5231 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 58 E 1.1799 30.7316 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 59 B 1.0393 36.1047 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 60 v 11.3690 35.6325 31.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 61 k -1.0541 34.5835 44.4239 -Verdana_Bold.ttf 39 6 34.8011 44.7350 62 J 1.4451 26.4804 43.5231 -Verdana_Bold.ttf 39 6 34.8011 44.7350 63 U 1.5707 38.0018 43.5231 -Verdana_Bold.ttf 39 6 34.8011 44.7350 64 j -1.0239 20.5270 56.0000 -Verdana_Bold.ttf 39 6 34.8011 44.7350 65 ( -1.0931 21.2683 56.0000 -Verdana_Bold.ttf 39 6 34.8011 44.7350 66 7 0.8986 33.3716 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 67 § 0.1949 33.3731 54.7915 -Verdana_Bold.ttf 39 6 34.8011 44.7350 68 $ -1.4459 34.4240 55.1557 -Verdana_Bold.ttf 39 6 34.8011 44.7350 69 € -0.1084 38.7447 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 70 / -0.9721 31.6359 53.7390 -Verdana_Bold.ttf 39 6 34.8011 44.7350 71 C -0.2143 36.1047 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 72 * -0.5857 32.2547 29.2120 -Verdana_Bold.ttf 39 6 34.8011 44.7350 73 ” -0.8364 30.4239 16.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 74 ? -0.0502 28.4593 43.5231 -Verdana_Bold.ttf 39 6 34.8011 44.7350 75 { -0.8532 31.3248 55.6923 -Verdana_Bold.ttf 39 6 34.8011 44.7350 76 } -1.0316 31.3248 55.6923 -Verdana_Bold.ttf 39 6 34.8011 44.7350 77 , 32.3584 16.5721 21.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 78 I 0.8615 24.5157 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 79 ° -0.2971 24.0564 23.8404 -Verdana_Bold.ttf 39 6 34.8011 44.7350 80 K 1.1760 39.5761 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 81 H 1.2398 38.3656 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 82 q 10.1790 33.5311 44.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 83 & 0.0273 48.3675 44.7350 -Verdana_Bold.ttf 39 6 34.8011 44.7350 84 ’ -1.2683 15.2120 16.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 85 [ -0.7761 19.1555 55.6923 -Verdana_Bold.ttf 39 6 34.8011 44.7350 86 - 20.6149 21.9436 7.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 87 Y 0.9276 42.5237 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 88 Q -0.0346 43.9002 55.0992 -Verdana_Bold.ttf 39 6 34.8011 44.7350 89 " -0.8998 25.0523 16.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 90 ! 0.8607 11.4279 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 91 x 11.3459 36.6284 31.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 92 ) -0.5432 21.2683 56.0000 -Verdana_Bold.ttf 39 6 34.8011 44.7350 93 = 13.1903 36.4803 23.1556 -Verdana_Bold.ttf 39 6 34.8011 44.7350 94 + 6.0094 38.3675 38.3675 -Verdana_Bold.ttf 39 6 34.8011 44.7350 95 X 1.2127 42.3111 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 96 » 9.3198 35.2683 30.4239 -Verdana_Bold.ttf 39 6 34.8011 44.7350 97 ' -0.8890 9.8404 16.7316 -Verdana_Bold.ttf 39 6 34.8011 44.7350 98 ¢ 1.2520 30.9492 51.8404 -Verdana_Bold.ttf 39 6 34.8011 44.7350 99 Z 1.0832 35.7955 42.3111 -Verdana_Bold.ttf 39 6 34.8011 44.7350 100 > 5.6969 38.0564 38.0564 -Verdana_Bold.ttf 39 6 34.8011 44.7350 101 ® -0.0004 49.2683 49.2683 -Verdana_Bold.ttf 39 6 34.8011 44.7350 102 © -0.1708 49.2683 49.2683 -Verdana_Bold.ttf 39 6 34.8011 44.7350 103 ] -0.9832 19.1555 55.6923 -Verdana_Bold.ttf 39 6 34.8011 44.7350 104 é -4.6316 33.9082 48.9606 -Verdana_Bold.ttf 39 6 34.8011 44.7350 105 z 11.4199 29.7357 31.9436 -Verdana_Bold.ttf 39 6 34.8011 44.7350 106 _ 47.3432 41.6923 6.0564 -Verdana_Bold.ttf 39 6 34.8011 44.7350 107 ¥ 1.5004 38.9042 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 1 t -9.1066 24.2160 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 2 h -12.9335 32.3226 44.4239 -Verdana_Bold.ttf 40 w 54.7880 31.9436 3 a -1.1953 31.7954 34.3675 -Verdana_Bold.ttf 40 w 54.7880 31.9436 4 n -1.4350 32.3226 33.1555 -Verdana_Bold.ttf 40 w 54.7880 31.9436 5 P -10.2913 35.4165 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 6 o -1.4339 35.1202 34.3675 -Verdana_Bold.ttf 40 w 54.7880 31.9436 7 e -1.0295 33.9082 34.3675 -Verdana_Bold.ttf 40 w 54.7880 31.9436 8 : -0.3690 10.6752 31.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 9 r -0.1285 23.3151 31.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 10 l -12.5639 10.2160 44.4239 -Verdana_Bold.ttf 40 w 54.7880 31.9436 11 i -12.3116 10.2160 44.4239 -Verdana_Bold.ttf 40 w 54.7880 31.9436 12 1 -10.2744 28.7413 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 13 | -12.3214 8.4803 55.6923 -Verdana_Bold.ttf 40 w 54.7880 31.9436 14 N -10.3719 38.8363 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 15 f -12.5431 24.5271 44.4239 -Verdana_Bold.ttf 40 w 54.7880 31.9436 16 g -1.0048 33.5311 44.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 17 d -12.4244 33.5311 45.6359 -Verdana_Bold.ttf 40 w 54.7880 31.9436 18 W -10.6264 62.2208 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 19 s -0.9646 29.7391 34.3675 -Verdana_Bold.ttf 40 w 54.7880 31.9436 20 c -0.8047 29.6826 34.3675 -Verdana_Bold.ttf 40 w 54.7880 31.9436 21 u -0.2028 32.3226 33.1555 -Verdana_Bold.ttf 40 w 54.7880 31.9436 22 3 -11.3180 33.8052 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 23 ~ 2.7672 41.7840 19.3716 -Verdana_Bold.ttf 40 w 54.7880 31.9436 24 # -10.0422 41.8499 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 25 O -11.7891 43.9002 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 26 ` -15.5477 16.9477 11.2684 -Verdana_Bold.ttf 40 w 54.7880 31.9436 27 @ -11.8837 47.6808 50.1066 -Verdana_Bold.ttf 40 w 54.7880 31.9436 28 F -10.1350 30.2610 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 29 S -11.2604 36.6318 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 30 p -1.4202 33.5311 44.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 31 “ -12.3268 30.4239 16.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 32 % -11.4751 66.6496 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 33 £ -11.2668 33.7487 43.5231 -Verdana_Bold.ttf 40 w 54.7880 31.9436 34 . 20.4836 10.6752 11.2684 -Verdana_Bold.ttf 40 w 54.7880 31.9436 35 2 -11.5795 33.2780 43.5231 -Verdana_Bold.ttf 40 w 54.7880 31.9436 36 5 -10.4926 33.0639 43.5231 -Verdana_Bold.ttf 40 w 54.7880 31.9436 37 m -1.2773 52.4335 33.1555 -Verdana_Bold.ttf 40 w 54.7880 31.9436 38 V -10.5315 42.3111 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 39 6 -11.4812 34.8011 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 40 w 0.1811 54.7880 31.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 41 T -10.1862 37.2507 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 42 M -10.3543 44.7331 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 43 G -11.4395 40.2643 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 44 b -12.6485 33.5311 45.6359 -Verdana_Bold.ttf 40 w 54.7880 31.9436 45 9 -11.5030 34.8011 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 46 ; -0.3551 16.5721 42.6188 -Verdana_Bold.ttf 40 w 54.7880 31.9436 47 D -9.9934 40.2643 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 48 L -10.1566 30.5721 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 49 y 0.1803 35.6325 43.5196 -Verdana_Bold.ttf 40 w 54.7880 31.9436 50 ‘ -12.8344 15.2120 16.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 51 \ -12.5829 31.6359 53.7390 -Verdana_Bold.ttf 40 w 54.7880 31.9436 52 R -10.2031 41.1651 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 53 < -6.0830 38.0564 38.0564 -Verdana_Bold.ttf 40 w 54.7880 31.9436 54 4 -10.0674 37.2216 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 55 8 -11.4598 36.2291 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 56 0 -11.8915 35.0428 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 57 A -11.0032 43.5231 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 58 E -10.3720 30.7316 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 59 B -10.2817 36.1047 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 60 v -0.1959 35.6325 31.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 61 k -12.6823 34.5835 44.4239 -Verdana_Bold.ttf 40 w 54.7880 31.9436 62 J -10.2634 26.4804 43.5231 -Verdana_Bold.ttf 40 w 54.7880 31.9436 63 U -10.7213 38.0018 43.5231 -Verdana_Bold.ttf 40 w 54.7880 31.9436 64 j -12.2058 20.5270 56.0000 -Verdana_Bold.ttf 40 w 54.7880 31.9436 65 ( -12.5883 21.2683 56.0000 -Verdana_Bold.ttf 40 w 54.7880 31.9436 66 7 -10.7486 33.3716 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 67 § -11.7563 33.3731 54.7915 -Verdana_Bold.ttf 40 w 54.7880 31.9436 68 $ -13.0127 34.4240 55.1557 -Verdana_Bold.ttf 40 w 54.7880 31.9436 69 € -11.6659 38.7447 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 70 / -12.3984 31.6359 53.7390 -Verdana_Bold.ttf 40 w 54.7880 31.9436 71 C -11.6404 36.1047 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 72 * -12.4660 32.2547 29.2120 -Verdana_Bold.ttf 40 w 54.7880 31.9436 73 ” -12.6660 30.4239 16.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 74 ? -11.7164 28.4593 43.5231 -Verdana_Bold.ttf 40 w 54.7880 31.9436 75 { -12.4532 31.3248 55.6923 -Verdana_Bold.ttf 40 w 54.7880 31.9436 76 } -12.2512 31.3248 55.6923 -Verdana_Bold.ttf 40 w 54.7880 31.9436 77 , 20.9843 16.5721 21.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 78 I -10.3694 24.5157 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 79 ° -11.5412 24.0564 23.8404 -Verdana_Bold.ttf 40 w 54.7880 31.9436 80 K -10.1025 39.5761 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 81 H -9.9788 38.3656 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 82 q -1.3478 33.5311 44.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 83 & -11.6065 48.3675 44.7350 -Verdana_Bold.ttf 40 w 54.7880 31.9436 84 ’ -12.4391 15.2120 16.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 85 [ -12.4304 19.1555 55.6923 -Verdana_Bold.ttf 40 w 54.7880 31.9436 86 - 8.7949 21.9436 7.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 87 Y -10.5123 42.5237 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 88 Q -12.0711 43.9002 55.0992 -Verdana_Bold.ttf 40 w 54.7880 31.9436 89 " -12.5934 25.0523 16.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 90 ! -10.0649 11.4279 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 91 x 0.0500 36.6284 31.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 92 ) -12.1458 21.2683 56.0000 -Verdana_Bold.ttf 40 w 54.7880 31.9436 93 = 2.0127 36.4803 23.1556 -Verdana_Bold.ttf 40 w 54.7880 31.9436 94 + -5.9970 38.3675 38.3675 -Verdana_Bold.ttf 40 w 54.7880 31.9436 95 X -10.5695 42.3111 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 96 » -2.6041 35.2683 30.4239 -Verdana_Bold.ttf 40 w 54.7880 31.9436 97 ' -12.5877 9.8404 16.7316 -Verdana_Bold.ttf 40 w 54.7880 31.9436 98 ¢ -9.8764 30.9492 51.8404 -Verdana_Bold.ttf 40 w 54.7880 31.9436 99 Z -10.2754 35.7955 42.3111 -Verdana_Bold.ttf 40 w 54.7880 31.9436 100 > -5.7285 38.0564 38.0564 -Verdana_Bold.ttf 40 w 54.7880 31.9436 101 ® -11.6960 49.2683 49.2683 -Verdana_Bold.ttf 40 w 54.7880 31.9436 102 © -11.7977 49.2683 49.2683 -Verdana_Bold.ttf 40 w 54.7880 31.9436 103 ] -12.1799 19.1555 55.6923 -Verdana_Bold.ttf 40 w 54.7880 31.9436 104 é -15.9186 33.9082 48.9606 -Verdana_Bold.ttf 40 w 54.7880 31.9436 105 z 0.0713 29.7357 31.9436 -Verdana_Bold.ttf 40 w 54.7880 31.9436 106 _ 35.9687 41.6923 6.0564 -Verdana_Bold.ttf 40 w 54.7880 31.9436 107 ¥ -10.6104 38.9042 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 1 t 0.8292 24.2160 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 2 h -1.9025 32.3226 44.4239 -Verdana_Bold.ttf 41 T 37.2507 42.3111 3 a 9.1706 31.7954 34.3675 -Verdana_Bold.ttf 41 T 37.2507 42.3111 4 n 8.9716 32.3226 33.1555 -Verdana_Bold.ttf 41 T 37.2507 42.3111 5 P 0.1242 35.4165 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 6 o 9.5553 35.1202 34.3675 -Verdana_Bold.ttf 41 T 37.2507 42.3111 7 e 9.1233 33.9082 34.3675 -Verdana_Bold.ttf 41 T 37.2507 42.3111 8 : 10.5533 10.6752 31.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 9 r 10.5083 23.3151 31.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 10 l -2.3667 10.2160 44.4239 -Verdana_Bold.ttf 41 T 37.2507 42.3111 11 i -2.1536 10.2160 44.4239 -Verdana_Bold.ttf 41 T 37.2507 42.3111 12 1 0.0407 28.7413 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 13 | -2.3113 8.4803 55.6923 -Verdana_Bold.ttf 41 T 37.2507 42.3111 14 N -0.0519 38.8363 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 15 f -2.0219 24.5271 44.4239 -Verdana_Bold.ttf 41 T 37.2507 42.3111 16 g 8.9379 33.5311 44.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 17 d -2.0236 33.5311 45.6359 -Verdana_Bold.ttf 41 T 37.2507 42.3111 18 W -0.3162 62.2208 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 19 s 9.1955 29.7391 34.3675 -Verdana_Bold.ttf 41 T 37.2507 42.3111 20 c 9.2103 29.6826 34.3675 -Verdana_Bold.ttf 41 T 37.2507 42.3111 21 u 10.4097 32.3226 33.1555 -Verdana_Bold.ttf 41 T 37.2507 42.3111 22 3 -1.0586 33.8052 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 23 ~ 13.0168 41.7840 19.3716 -Verdana_Bold.ttf 41 T 37.2507 42.3111 24 # 0.0367 41.8499 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 25 O -1.4640 43.9002 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 26 ` -5.2803 16.9477 11.2684 -Verdana_Bold.ttf 41 T 37.2507 42.3111 27 @ -1.2606 47.6808 50.1066 -Verdana_Bold.ttf 41 T 37.2507 42.3111 28 F -0.1198 30.2610 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 29 S -0.9852 36.6318 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 30 p 9.0460 33.5311 44.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 31 “ -2.2201 30.4239 16.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 32 % -1.3469 66.6496 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 33 £ -1.5301 33.7487 43.5231 -Verdana_Bold.ttf 41 T 37.2507 42.3111 34 . 31.3749 10.6752 11.2684 -Verdana_Bold.ttf 41 T 37.2507 42.3111 35 2 -1.2496 33.2780 43.5231 -Verdana_Bold.ttf 41 T 37.2507 42.3111 36 5 0.2234 33.0639 43.5231 -Verdana_Bold.ttf 41 T 37.2507 42.3111 37 m 9.0678 52.4335 33.1555 -Verdana_Bold.ttf 41 T 37.2507 42.3111 38 V -0.3162 42.3111 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 39 6 -1.3770 34.8011 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 40 w 10.5728 54.7880 31.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 41 T 0.1349 37.2507 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 42 M -0.1971 44.7331 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 43 G -1.2342 40.2643 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 44 b -2.1910 33.5311 45.6359 -Verdana_Bold.ttf 41 T 37.2507 42.3111 45 9 -1.2773 34.8011 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 46 ; 10.2517 16.5721 42.6188 -Verdana_Bold.ttf 41 T 37.2507 42.3111 47 D 0.0683 40.2643 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 48 L 0.1349 30.5721 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 49 y 10.4100 35.6325 43.5196 -Verdana_Bold.ttf 41 T 37.2507 42.3111 50 ‘ -2.3247 15.2120 16.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 51 \ -2.3091 31.6359 53.7390 -Verdana_Bold.ttf 41 T 37.2507 42.3111 52 R -0.2422 41.1651 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 53 < 4.1298 38.0564 38.0564 -Verdana_Bold.ttf 41 T 37.2507 42.3111 54 4 0.0842 37.2216 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 55 8 -1.3826 36.2291 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 56 0 -1.1803 35.0428 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 57 A -0.0394 43.5231 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 58 E 0.2922 30.7316 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 59 B -0.1389 36.1047 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 60 v 10.3276 35.6325 31.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 61 k -1.9867 34.5835 44.4239 -Verdana_Bold.ttf 41 T 37.2507 42.3111 62 J -0.0922 26.4804 43.5231 -Verdana_Bold.ttf 41 T 37.2507 42.3111 63 U -0.0935 38.0018 43.5231 -Verdana_Bold.ttf 41 T 37.2507 42.3111 64 j -2.1128 20.5270 56.0000 -Verdana_Bold.ttf 41 T 37.2507 42.3111 65 ( -2.0628 21.2683 56.0000 -Verdana_Bold.ttf 41 T 37.2507 42.3111 66 7 0.1209 33.3716 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 67 § -1.1057 33.3731 54.7915 -Verdana_Bold.ttf 41 T 37.2507 42.3111 68 $ -3.0667 34.4240 55.1557 -Verdana_Bold.ttf 41 T 37.2507 42.3111 69 € -1.1547 38.7447 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 70 / -1.6704 31.6359 53.7390 -Verdana_Bold.ttf 41 T 37.2507 42.3111 71 C -1.3404 36.1047 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 72 * -2.2421 32.2547 29.2120 -Verdana_Bold.ttf 41 T 37.2507 42.3111 73 ” -2.1590 30.4239 16.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 74 ? -1.2195 28.4593 43.5231 -Verdana_Bold.ttf 41 T 37.2507 42.3111 75 { -1.9981 31.3248 55.6923 -Verdana_Bold.ttf 41 T 37.2507 42.3111 76 } -1.8157 31.3248 55.6923 -Verdana_Bold.ttf 41 T 37.2507 42.3111 77 , 31.0457 16.5721 21.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 78 I 0.0015 24.5157 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 79 ° -0.9449 24.0564 23.8404 -Verdana_Bold.ttf 41 T 37.2507 42.3111 80 K 0.1112 39.5761 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 81 H -0.0473 38.3656 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 82 q 9.0267 33.5311 44.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 83 & -1.3305 48.3675 44.7350 -Verdana_Bold.ttf 41 T 37.2507 42.3111 84 ’ -1.9334 15.2120 16.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 85 [ -2.0387 19.1555 55.6923 -Verdana_Bold.ttf 41 T 37.2507 42.3111 86 - 19.3214 21.9436 7.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 87 Y -0.5376 42.5237 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 88 Q -1.3747 43.9002 55.0992 -Verdana_Bold.ttf 41 T 37.2507 42.3111 89 " -2.0891 25.0523 16.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 90 ! -0.1721 11.4279 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 91 x 10.4528 36.6284 31.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 92 ) -2.2758 21.2683 56.0000 -Verdana_Bold.ttf 41 T 37.2507 42.3111 93 = 12.1459 36.4803 23.1556 -Verdana_Bold.ttf 41 T 37.2507 42.3111 94 + 4.4195 38.3675 38.3675 -Verdana_Bold.ttf 41 T 37.2507 42.3111 95 X -0.2138 42.3111 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 96 » 8.0966 35.2683 30.4239 -Verdana_Bold.ttf 41 T 37.2507 42.3111 97 ' -1.7935 9.8404 16.7316 -Verdana_Bold.ttf 41 T 37.2507 42.3111 98 ¢ 0.3884 30.9492 51.8404 -Verdana_Bold.ttf 41 T 37.2507 42.3111 99 Z -0.0385 35.7955 42.3111 -Verdana_Bold.ttf 41 T 37.2507 42.3111 100 > 4.2202 38.0564 38.0564 -Verdana_Bold.ttf 41 T 37.2507 42.3111 101 ® -1.3679 49.2683 49.2683 -Verdana_Bold.ttf 41 T 37.2507 42.3111 102 © -1.2432 49.2683 49.2683 -Verdana_Bold.ttf 41 T 37.2507 42.3111 103 ] -1.8385 19.1555 55.6923 -Verdana_Bold.ttf 41 T 37.2507 42.3111 104 é -5.4736 33.9082 48.9606 -Verdana_Bold.ttf 41 T 37.2507 42.3111 105 z 10.4694 29.7357 31.9436 -Verdana_Bold.ttf 41 T 37.2507 42.3111 106 _ 46.1605 41.6923 6.0564 -Verdana_Bold.ttf 41 T 37.2507 42.3111 107 ¥ -0.2623 38.9042 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 1 t 0.9427 24.2160 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 2 h -2.0904 32.3226 44.4239 -Verdana_Bold.ttf 42 M 44.7331 42.3111 3 a 9.5613 31.7954 34.3675 -Verdana_Bold.ttf 42 M 44.7331 42.3111 4 n 9.0929 32.3226 33.1555 -Verdana_Bold.ttf 42 M 44.7331 42.3111 5 P 0.0062 35.4165 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 6 o 9.0564 35.1202 34.3675 -Verdana_Bold.ttf 42 M 44.7331 42.3111 7 e 9.3252 33.9082 34.3675 -Verdana_Bold.ttf 42 M 44.7331 42.3111 8 : 10.5756 10.6752 31.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 9 r 10.0023 23.3151 31.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 10 l -2.4904 10.2160 44.4239 -Verdana_Bold.ttf 42 M 44.7331 42.3111 11 i -2.0948 10.2160 44.4239 -Verdana_Bold.ttf 42 M 44.7331 42.3111 12 1 0.2368 28.7413 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 13 | -1.9838 8.4803 55.6923 -Verdana_Bold.ttf 42 M 44.7331 42.3111 14 N -0.2485 38.8363 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 15 f -2.0111 24.5271 44.4239 -Verdana_Bold.ttf 42 M 44.7331 42.3111 16 g 9.3673 33.5311 44.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 17 d -2.0456 33.5311 45.6359 -Verdana_Bold.ttf 42 M 44.7331 42.3111 18 W 0.3471 62.2208 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 19 s 9.2692 29.7391 34.3675 -Verdana_Bold.ttf 42 M 44.7331 42.3111 20 c 9.3345 29.6826 34.3675 -Verdana_Bold.ttf 42 M 44.7331 42.3111 21 u 10.0095 32.3226 33.1555 -Verdana_Bold.ttf 42 M 44.7331 42.3111 22 3 -1.0316 33.8052 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 23 ~ 13.3903 41.7840 19.3716 -Verdana_Bold.ttf 42 M 44.7331 42.3111 24 # -0.0420 41.8499 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 25 O -1.3200 43.9002 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 26 ` -5.5315 16.9477 11.2684 -Verdana_Bold.ttf 42 M 44.7331 42.3111 27 @ -1.4886 47.6808 50.1066 -Verdana_Bold.ttf 42 M 44.7331 42.3111 28 F 0.1050 30.2610 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 29 S -1.5709 36.6318 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 30 p 9.5936 33.5311 44.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 31 “ -2.3972 30.4239 16.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 32 % -1.4087 66.6496 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 33 £ -1.5311 33.7487 43.5231 -Verdana_Bold.ttf 42 M 44.7331 42.3111 34 . 31.0845 10.6752 11.2684 -Verdana_Bold.ttf 42 M 44.7331 42.3111 35 2 -1.1397 33.2780 43.5231 -Verdana_Bold.ttf 42 M 44.7331 42.3111 36 5 0.0591 33.0639 43.5231 -Verdana_Bold.ttf 42 M 44.7331 42.3111 37 m 9.4840 52.4335 33.1555 -Verdana_Bold.ttf 42 M 44.7331 42.3111 38 V 0.1731 42.3111 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 39 6 -1.1907 34.8011 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 40 w 10.6117 54.7880 31.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 41 T -0.1272 37.2507 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 42 M -0.0058 44.7331 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 43 G -1.1699 40.2643 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 44 b -2.1236 33.5311 45.6359 -Verdana_Bold.ttf 42 M 44.7331 42.3111 45 9 -1.0189 34.8011 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 46 ; 10.2091 16.5721 42.6188 -Verdana_Bold.ttf 42 M 44.7331 42.3111 47 D -0.0287 40.2643 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 48 L -0.1126 30.5721 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 49 y 10.3528 35.6325 43.5196 -Verdana_Bold.ttf 42 M 44.7331 42.3111 50 ‘ -2.4206 15.2120 16.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 51 \ -2.0028 31.6359 53.7390 -Verdana_Bold.ttf 42 M 44.7331 42.3111 52 R 0.0822 41.1651 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 53 < 4.2145 38.0564 38.0564 -Verdana_Bold.ttf 42 M 44.7331 42.3111 54 4 -0.1095 37.2216 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 55 8 -1.4762 36.2291 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 56 0 -1.0327 35.0428 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 57 A 0.0207 43.5231 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 58 E 0.1339 30.7316 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 59 B -0.0143 36.1047 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 60 v 10.1226 35.6325 31.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 61 k -2.0166 34.5835 44.4239 -Verdana_Bold.ttf 42 M 44.7331 42.3111 62 J -0.1660 26.4804 43.5231 -Verdana_Bold.ttf 42 M 44.7331 42.3111 63 U -0.2575 38.0018 43.5231 -Verdana_Bold.ttf 42 M 44.7331 42.3111 64 j -2.2413 20.5270 56.0000 -Verdana_Bold.ttf 42 M 44.7331 42.3111 65 ( -2.4191 21.2683 56.0000 -Verdana_Bold.ttf 42 M 44.7331 42.3111 66 7 0.1907 33.3716 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 67 § -1.3165 33.3731 54.7915 -Verdana_Bold.ttf 42 M 44.7331 42.3111 68 $ -2.4372 34.4240 55.1557 -Verdana_Bold.ttf 42 M 44.7331 42.3111 69 € -1.5181 38.7447 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 70 / -1.9307 31.6359 53.7390 -Verdana_Bold.ttf 42 M 44.7331 42.3111 71 C -1.3012 36.1047 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 72 * -2.4531 32.2547 29.2120 -Verdana_Bold.ttf 42 M 44.7331 42.3111 73 ” -1.9567 30.4239 16.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 74 ? -1.0367 28.4593 43.5231 -Verdana_Bold.ttf 42 M 44.7331 42.3111 75 { -1.7830 31.3248 55.6923 -Verdana_Bold.ttf 42 M 44.7331 42.3111 76 } -2.2435 31.3248 55.6923 -Verdana_Bold.ttf 42 M 44.7331 42.3111 77 , 31.4479 16.5721 21.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 78 I -0.0650 24.5157 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 79 ° -0.8746 24.0564 23.8404 -Verdana_Bold.ttf 42 M 44.7331 42.3111 80 K 0.1458 39.5761 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 81 H 0.1159 38.3656 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 82 q 9.2697 33.5311 44.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 83 & -1.0778 48.3675 44.7350 -Verdana_Bold.ttf 42 M 44.7331 42.3111 84 ’ -1.9825 15.2120 16.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 85 [ -1.9029 19.1555 55.6923 -Verdana_Bold.ttf 42 M 44.7331 42.3111 86 - 19.5658 21.9436 7.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 87 Y 0.2803 42.5237 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 88 Q -1.2163 43.9002 55.0992 -Verdana_Bold.ttf 42 M 44.7331 42.3111 89 " -2.1329 25.0523 16.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 90 ! 0.0928 11.4279 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 91 x 10.3189 36.6284 31.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 92 ) -1.8117 21.2683 56.0000 -Verdana_Bold.ttf 42 M 44.7331 42.3111 93 = 12.3245 36.4803 23.1556 -Verdana_Bold.ttf 42 M 44.7331 42.3111 94 + 4.3285 38.3675 38.3675 -Verdana_Bold.ttf 42 M 44.7331 42.3111 95 X 0.2132 42.3111 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 96 » 8.2630 35.2683 30.4239 -Verdana_Bold.ttf 42 M 44.7331 42.3111 97 ' -2.0980 9.8404 16.7316 -Verdana_Bold.ttf 42 M 44.7331 42.3111 98 ¢ 0.2704 30.9492 51.8404 -Verdana_Bold.ttf 42 M 44.7331 42.3111 99 Z 0.2737 35.7955 42.3111 -Verdana_Bold.ttf 42 M 44.7331 42.3111 100 > 4.0639 38.0564 38.0564 -Verdana_Bold.ttf 42 M 44.7331 42.3111 101 ® -1.3132 49.2683 49.2683 -Verdana_Bold.ttf 42 M 44.7331 42.3111 102 © -1.2322 49.2683 49.2683 -Verdana_Bold.ttf 42 M 44.7331 42.3111 103 ] -1.8196 19.1555 55.6923 -Verdana_Bold.ttf 42 M 44.7331 42.3111 104 é -5.4199 33.9082 48.9606 -Verdana_Bold.ttf 42 M 44.7331 42.3111 105 z 10.4840 29.7357 31.9436 -Verdana_Bold.ttf 42 M 44.7331 42.3111 106 _ 45.8965 41.6923 6.0564 -Verdana_Bold.ttf 42 M 44.7331 42.3111 107 ¥ 0.1756 38.9042 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 1 t 2.1058 24.2160 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 2 h -0.7908 32.3226 44.4239 -Verdana_Bold.ttf 43 G 40.2643 44.7350 3 a 10.5050 31.7954 34.3675 -Verdana_Bold.ttf 43 G 40.2643 44.7350 4 n 10.4931 32.3226 33.1555 -Verdana_Bold.ttf 43 G 40.2643 44.7350 5 P 0.8355 35.4165 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 6 o 10.1236 35.1202 34.3675 -Verdana_Bold.ttf 43 G 40.2643 44.7350 7 e 10.4085 33.9082 34.3675 -Verdana_Bold.ttf 43 G 40.2643 44.7350 8 : 11.6655 10.6752 31.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 9 r 11.4715 23.3151 31.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 10 l -1.2539 10.2160 44.4239 -Verdana_Bold.ttf 43 G 40.2643 44.7350 11 i -0.9364 10.2160 44.4239 -Verdana_Bold.ttf 43 G 40.2643 44.7350 12 1 1.4255 28.7413 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 13 | -0.5547 8.4803 55.6923 -Verdana_Bold.ttf 43 G 40.2643 44.7350 14 N 1.1454 38.8363 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 15 f -0.9407 24.5271 44.4239 -Verdana_Bold.ttf 43 G 40.2643 44.7350 16 g 10.5461 33.5311 44.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 17 d -0.6291 33.5311 45.6359 -Verdana_Bold.ttf 43 G 40.2643 44.7350 18 W 1.0905 62.2208 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 19 s 10.3182 29.7391 34.3675 -Verdana_Bold.ttf 43 G 40.2643 44.7350 20 c 10.2862 29.6826 34.3675 -Verdana_Bold.ttf 43 G 40.2643 44.7350 21 u 11.7737 32.3226 33.1555 -Verdana_Bold.ttf 43 G 40.2643 44.7350 22 3 -0.0191 33.8052 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 23 ~ 14.1262 41.7840 19.3716 -Verdana_Bold.ttf 43 G 40.2643 44.7350 24 # 1.0562 41.8499 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 25 O 0.4190 43.9002 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 26 ` -4.2310 16.9477 11.2684 -Verdana_Bold.ttf 43 G 40.2643 44.7350 27 @ 0.4562 47.6808 50.1066 -Verdana_Bold.ttf 43 G 40.2643 44.7350 28 F 1.4608 30.2610 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 29 S -0.0304 36.6318 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 30 p 10.4600 33.5311 44.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 31 “ -1.1427 30.4239 16.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 32 % -0.2048 66.6496 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 33 £ -0.3119 33.7487 43.5231 -Verdana_Bold.ttf 43 G 40.2643 44.7350 34 . 32.4008 10.6752 11.2684 -Verdana_Bold.ttf 43 G 40.2643 44.7350 35 2 0.1389 33.2780 43.5231 -Verdana_Bold.ttf 43 G 40.2643 44.7350 36 5 1.2496 33.0639 43.5231 -Verdana_Bold.ttf 43 G 40.2643 44.7350 37 m 10.1254 52.4335 33.1555 -Verdana_Bold.ttf 43 G 40.2643 44.7350 38 V 1.0953 42.3111 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 39 6 0.0853 34.8011 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 40 w 11.9405 54.7880 31.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 41 T 1.2153 37.2507 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 42 M 1.2350 44.7331 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 43 G -0.0535 40.2643 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 44 b -0.6421 33.5311 45.6359 -Verdana_Bold.ttf 43 G 40.2643 44.7350 45 9 0.0076 34.8011 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 46 ; 11.6389 16.5721 42.6188 -Verdana_Bold.ttf 43 G 40.2643 44.7350 47 D 1.1366 40.2643 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 48 L 1.2669 30.5721 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 49 y 11.9345 35.6325 43.5196 -Verdana_Bold.ttf 43 G 40.2643 44.7350 50 ‘ -0.7778 15.2120 16.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 51 \ -0.6621 31.6359 53.7390 -Verdana_Bold.ttf 43 G 40.2643 44.7350 52 R 1.1888 41.1651 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 53 < 5.4085 38.0564 38.0564 -Verdana_Bold.ttf 43 G 40.2643 44.7350 54 4 1.1492 37.2216 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 55 8 0.0210 36.2291 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 56 0 -0.0130 35.0428 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 57 A 1.2892 43.5231 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 58 E 1.0418 30.7316 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 59 B 1.5307 36.1047 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 60 v 11.5281 35.6325 31.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 61 k -0.9409 34.5835 44.4239 -Verdana_Bold.ttf 43 G 40.2643 44.7350 62 J 1.3683 26.4804 43.5231 -Verdana_Bold.ttf 43 G 40.2643 44.7350 63 U 1.1369 38.0018 43.5231 -Verdana_Bold.ttf 43 G 40.2643 44.7350 64 j -0.7123 20.5270 56.0000 -Verdana_Bold.ttf 43 G 40.2643 44.7350 65 ( -1.1025 21.2683 56.0000 -Verdana_Bold.ttf 43 G 40.2643 44.7350 66 7 1.3051 33.3716 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 67 § 0.0288 33.3731 54.7915 -Verdana_Bold.ttf 43 G 40.2643 44.7350 68 $ -1.6166 34.4240 55.1557 -Verdana_Bold.ttf 43 G 40.2643 44.7350 69 € 0.3293 38.7447 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 70 / -0.9473 31.6359 53.7390 -Verdana_Bold.ttf 43 G 40.2643 44.7350 71 C 0.0259 36.1047 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 72 * -1.1735 32.2547 29.2120 -Verdana_Bold.ttf 43 G 40.2643 44.7350 73 ” -1.0867 30.4239 16.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 74 ? 0.1647 28.4593 43.5231 -Verdana_Bold.ttf 43 G 40.2643 44.7350 75 { -0.8677 31.3248 55.6923 -Verdana_Bold.ttf 43 G 40.2643 44.7350 76 } -1.2245 31.3248 55.6923 -Verdana_Bold.ttf 43 G 40.2643 44.7350 77 , 32.1205 16.5721 21.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 78 I 1.3364 24.5157 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 79 ° -0.0789 24.0564 23.8404 -Verdana_Bold.ttf 43 G 40.2643 44.7350 80 K 1.2471 39.5761 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 81 H 1.3518 38.3656 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 82 q 10.0284 33.5311 44.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 83 & 0.1487 48.3675 44.7350 -Verdana_Bold.ttf 43 G 40.2643 44.7350 84 ’ -1.0423 15.2120 16.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 85 [ -0.8852 19.1555 55.6923 -Verdana_Bold.ttf 43 G 40.2643 44.7350 86 - 20.3000 21.9436 7.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 87 Y 1.2873 42.5237 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 88 Q 0.0494 43.9002 55.0992 -Verdana_Bold.ttf 43 G 40.2643 44.7350 89 " -0.7263 25.0523 16.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 90 ! 1.4826 11.4279 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 91 x 11.4388 36.6284 31.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 92 ) -0.7500 21.2683 56.0000 -Verdana_Bold.ttf 43 G 40.2643 44.7350 93 = 13.3444 36.4803 23.1556 -Verdana_Bold.ttf 43 G 40.2643 44.7350 94 + 6.0508 38.3675 38.3675 -Verdana_Bold.ttf 43 G 40.2643 44.7350 95 X 1.3818 42.3111 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 96 » 9.2281 35.2683 30.4239 -Verdana_Bold.ttf 43 G 40.2643 44.7350 97 ' -0.9721 9.8404 16.7316 -Verdana_Bold.ttf 43 G 40.2643 44.7350 98 ¢ 1.2992 30.9492 51.8404 -Verdana_Bold.ttf 43 G 40.2643 44.7350 99 Z 1.0332 35.7955 42.3111 -Verdana_Bold.ttf 43 G 40.2643 44.7350 100 > 5.5257 38.0564 38.0564 -Verdana_Bold.ttf 43 G 40.2643 44.7350 101 ® -0.0694 49.2683 49.2683 -Verdana_Bold.ttf 43 G 40.2643 44.7350 102 © 0.2847 49.2683 49.2683 -Verdana_Bold.ttf 43 G 40.2643 44.7350 103 ] -1.2109 19.1555 55.6923 -Verdana_Bold.ttf 43 G 40.2643 44.7350 104 é -4.2472 33.9082 48.9606 -Verdana_Bold.ttf 43 G 40.2643 44.7350 105 z 11.3767 29.7357 31.9436 -Verdana_Bold.ttf 43 G 40.2643 44.7350 106 _ 47.5476 41.6923 6.0564 -Verdana_Bold.ttf 43 G 40.2643 44.7350 107 ¥ 1.4620 38.9042 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 1 t 3.3728 24.2160 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 2 h -0.2270 32.3226 44.4239 -Verdana_Bold.ttf 44 b 33.5311 45.6359 3 a 11.6289 31.7954 34.3675 -Verdana_Bold.ttf 44 b 33.5311 45.6359 4 n 11.2821 32.3226 33.1555 -Verdana_Bold.ttf 44 b 33.5311 45.6359 5 P 2.0620 35.4165 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 6 o 10.8956 35.1202 34.3675 -Verdana_Bold.ttf 44 b 33.5311 45.6359 7 e 11.2666 33.9082 34.3675 -Verdana_Bold.ttf 44 b 33.5311 45.6359 8 : 12.1838 10.6752 31.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 9 r 12.5627 23.3151 31.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 10 l 0.2601 10.2160 44.4239 -Verdana_Bold.ttf 44 b 33.5311 45.6359 11 i -0.0346 10.2160 44.4239 -Verdana_Bold.ttf 44 b 33.5311 45.6359 12 1 2.2690 28.7413 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 13 | 0.0077 8.4803 55.6923 -Verdana_Bold.ttf 44 b 33.5311 45.6359 14 N 2.5967 38.8363 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 15 f -0.0222 24.5271 44.4239 -Verdana_Bold.ttf 44 b 33.5311 45.6359 16 g 10.8096 33.5311 44.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 17 d -0.4724 33.5311 45.6359 -Verdana_Bold.ttf 44 b 33.5311 45.6359 18 W 2.2941 62.2208 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 19 s 11.5082 29.7391 34.3675 -Verdana_Bold.ttf 44 b 33.5311 45.6359 20 c 11.4800 29.6826 34.3675 -Verdana_Bold.ttf 44 b 33.5311 45.6359 21 u 12.7371 32.3226 33.1555 -Verdana_Bold.ttf 44 b 33.5311 45.6359 22 3 1.1852 33.8052 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 23 ~ 14.9296 41.7840 19.3716 -Verdana_Bold.ttf 44 b 33.5311 45.6359 24 # 2.0174 41.8499 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 25 O 0.7573 43.9002 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 26 ` -3.1556 16.9477 11.2684 -Verdana_Bold.ttf 44 b 33.5311 45.6359 27 @ 1.0960 47.6808 50.1066 -Verdana_Bold.ttf 44 b 33.5311 45.6359 28 F 2.0663 30.2610 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 29 S 0.9923 36.6318 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 30 p 11.4391 33.5311 44.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 31 “ -0.0033 30.4239 16.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 32 % 0.6849 66.6496 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 33 £ 0.9535 33.7487 43.5231 -Verdana_Bold.ttf 44 b 33.5311 45.6359 34 . 33.5445 10.6752 11.2684 -Verdana_Bold.ttf 44 b 33.5311 45.6359 35 2 1.2527 33.2780 43.5231 -Verdana_Bold.ttf 44 b 33.5311 45.6359 36 5 2.1109 33.0639 43.5231 -Verdana_Bold.ttf 44 b 33.5311 45.6359 37 m 11.4194 52.4335 33.1555 -Verdana_Bold.ttf 44 b 33.5311 45.6359 38 V 2.2119 42.3111 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 39 6 0.5756 34.8011 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 40 w 12.3022 54.7880 31.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 41 T 1.7666 37.2507 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 42 M 1.7283 44.7331 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 43 G 0.9940 40.2643 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 44 b -0.0653 33.5311 45.6359 -Verdana_Bold.ttf 44 b 33.5311 45.6359 45 9 0.9865 34.8011 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 46 ; 12.4042 16.5721 42.6188 -Verdana_Bold.ttf 44 b 33.5311 45.6359 47 D 2.2423 40.2643 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 48 L 2.4229 30.5721 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 49 y 12.4601 35.6325 43.5196 -Verdana_Bold.ttf 44 b 33.5311 45.6359 50 ‘ -0.2562 15.2120 16.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 51 \ 0.0284 31.6359 53.7390 -Verdana_Bold.ttf 44 b 33.5311 45.6359 52 R 1.8887 41.1651 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 53 < 5.8080 38.0564 38.0564 -Verdana_Bold.ttf 44 b 33.5311 45.6359 54 4 1.9174 37.2216 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 55 8 1.0090 36.2291 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 56 0 1.1724 35.0428 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 57 A 1.6675 43.5231 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 58 E 1.9854 30.7316 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 59 B 2.2430 36.1047 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 60 v 12.4063 35.6325 31.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 61 k -0.1720 34.5835 44.4239 -Verdana_Bold.ttf 44 b 33.5311 45.6359 62 J 2.2960 26.4804 43.5231 -Verdana_Bold.ttf 44 b 33.5311 45.6359 63 U 2.2535 38.0018 43.5231 -Verdana_Bold.ttf 44 b 33.5311 45.6359 64 j -0.1942 20.5270 56.0000 -Verdana_Bold.ttf 44 b 33.5311 45.6359 65 ( 0.0148 21.2683 56.0000 -Verdana_Bold.ttf 44 b 33.5311 45.6359 66 7 2.0879 33.3716 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 67 § 0.7469 33.3731 54.7915 -Verdana_Bold.ttf 44 b 33.5311 45.6359 68 $ -0.5309 34.4240 55.1557 -Verdana_Bold.ttf 44 b 33.5311 45.6359 69 € 0.8599 38.7447 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 70 / -0.2149 31.6359 53.7390 -Verdana_Bold.ttf 44 b 33.5311 45.6359 71 C 0.7955 36.1047 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 72 * -0.5379 32.2547 29.2120 -Verdana_Bold.ttf 44 b 33.5311 45.6359 73 ” 0.1111 30.4239 16.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 74 ? 0.6095 28.4593 43.5231 -Verdana_Bold.ttf 44 b 33.5311 45.6359 75 { -0.1043 31.3248 55.6923 -Verdana_Bold.ttf 44 b 33.5311 45.6359 76 } 0.0378 31.3248 55.6923 -Verdana_Bold.ttf 44 b 33.5311 45.6359 77 , 33.2551 16.5721 21.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 78 I 2.4403 24.5157 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 79 ° 0.9062 24.0564 23.8404 -Verdana_Bold.ttf 44 b 33.5311 45.6359 80 K 2.0825 39.5761 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 81 H 2.2468 38.3656 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 82 q 11.1905 33.5311 44.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 83 & 0.9408 48.3675 44.7350 -Verdana_Bold.ttf 44 b 33.5311 45.6359 84 ’ 0.0000 15.2120 16.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 85 [ 0.1288 19.1555 55.6923 -Verdana_Bold.ttf 44 b 33.5311 45.6359 86 - 21.4671 21.9436 7.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 87 Y 2.3474 42.5237 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 88 Q 0.4990 43.9002 55.0992 -Verdana_Bold.ttf 44 b 33.5311 45.6359 89 " -0.0035 25.0523 16.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 90 ! 2.4058 11.4279 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 91 x 12.3534 36.6284 31.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 92 ) 0.0508 21.2683 56.0000 -Verdana_Bold.ttf 44 b 33.5311 45.6359 93 = 14.1526 36.4803 23.1556 -Verdana_Bold.ttf 44 b 33.5311 45.6359 94 + 6.4025 38.3675 38.3675 -Verdana_Bold.ttf 44 b 33.5311 45.6359 95 X 2.0548 42.3111 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 96 » 10.0583 35.2683 30.4239 -Verdana_Bold.ttf 44 b 33.5311 45.6359 97 ' 0.2179 9.8404 16.7316 -Verdana_Bold.ttf 44 b 33.5311 45.6359 98 ¢ 2.3571 30.9492 51.8404 -Verdana_Bold.ttf 44 b 33.5311 45.6359 99 Z 1.8984 35.7955 42.3111 -Verdana_Bold.ttf 44 b 33.5311 45.6359 100 > 6.2898 38.0564 38.0564 -Verdana_Bold.ttf 44 b 33.5311 45.6359 101 ® 1.1761 49.2683 49.2683 -Verdana_Bold.ttf 44 b 33.5311 45.6359 102 © 0.4582 49.2683 49.2683 -Verdana_Bold.ttf 44 b 33.5311 45.6359 103 ] -0.1288 19.1555 55.6923 -Verdana_Bold.ttf 44 b 33.5311 45.6359 104 é -3.2776 33.9082 48.9606 -Verdana_Bold.ttf 44 b 33.5311 45.6359 105 z 12.4394 29.7357 31.9436 -Verdana_Bold.ttf 44 b 33.5311 45.6359 106 _ 48.2784 41.6923 6.0564 -Verdana_Bold.ttf 44 b 33.5311 45.6359 107 ¥ 2.1754 38.9042 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 1 t 2.4981 24.2160 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 2 h -0.8171 32.3226 44.4239 -Verdana_Bold.ttf 45 9 34.8011 44.7350 3 a 10.2710 31.7954 34.3675 -Verdana_Bold.ttf 45 9 34.8011 44.7350 4 n 10.3909 32.3226 33.1555 -Verdana_Bold.ttf 45 9 34.8011 44.7350 5 P 1.2580 35.4165 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 6 o 10.3593 35.1202 34.3675 -Verdana_Bold.ttf 45 9 34.8011 44.7350 7 e 10.5260 33.9082 34.3675 -Verdana_Bold.ttf 45 9 34.8011 44.7350 8 : 11.1646 10.6752 31.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 9 r 11.5350 23.3151 31.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 10 l -0.7532 10.2160 44.4239 -Verdana_Bold.ttf 45 9 34.8011 44.7350 11 i -0.8634 10.2160 44.4239 -Verdana_Bold.ttf 45 9 34.8011 44.7350 12 1 1.2268 28.7413 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 13 | -1.2124 8.4803 55.6923 -Verdana_Bold.ttf 45 9 34.8011 44.7350 14 N 0.8739 38.8363 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 15 f -0.9354 24.5271 44.4239 -Verdana_Bold.ttf 45 9 34.8011 44.7350 16 g 10.2830 33.5311 44.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 17 d -0.9508 33.5311 45.6359 -Verdana_Bold.ttf 45 9 34.8011 44.7350 18 W 1.2951 62.2208 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 19 s 10.4027 29.7391 34.3675 -Verdana_Bold.ttf 45 9 34.8011 44.7350 20 c 10.3636 29.6826 34.3675 -Verdana_Bold.ttf 45 9 34.8011 44.7350 21 u 11.5371 32.3226 33.1555 -Verdana_Bold.ttf 45 9 34.8011 44.7350 22 3 0.0455 33.8052 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 23 ~ 14.2840 41.7840 19.3716 -Verdana_Bold.ttf 45 9 34.8011 44.7350 24 # 1.3149 41.8499 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 25 O 0.0216 43.9002 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 26 ` -4.2481 16.9477 11.2684 -Verdana_Bold.ttf 45 9 34.8011 44.7350 27 @ 0.2683 47.6808 50.1066 -Verdana_Bold.ttf 45 9 34.8011 44.7350 28 F 1.4187 30.2610 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 29 S -0.0135 36.6318 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 30 p 10.2840 33.5311 44.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 31 “ -0.9120 30.4239 16.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 32 % -0.0534 66.6496 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 33 £ 0.1763 33.7487 43.5231 -Verdana_Bold.ttf 45 9 34.8011 44.7350 34 . 32.5165 10.6752 11.2684 -Verdana_Bold.ttf 45 9 34.8011 44.7350 35 2 0.2724 33.2780 43.5231 -Verdana_Bold.ttf 45 9 34.8011 44.7350 36 5 1.0126 33.0639 43.5231 -Verdana_Bold.ttf 45 9 34.8011 44.7350 37 m 10.5569 52.4335 33.1555 -Verdana_Bold.ttf 45 9 34.8011 44.7350 38 V 1.3034 42.3111 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 39 6 0.0021 34.8011 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 40 w 11.6223 54.7880 31.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 41 T 1.5132 37.2507 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 42 M 1.0454 44.7331 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 43 G -0.0848 40.2643 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 44 b -1.1273 33.5311 45.6359 -Verdana_Bold.ttf 45 9 34.8011 44.7350 45 9 0.2030 34.8011 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 46 ; 11.5685 16.5721 42.6188 -Verdana_Bold.ttf 45 9 34.8011 44.7350 47 D 1.3437 40.2643 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 48 L 1.1630 30.5721 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 49 y 11.4165 35.6325 43.5196 -Verdana_Bold.ttf 45 9 34.8011 44.7350 50 ‘ -1.0484 15.2120 16.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 51 \ -0.6587 31.6359 53.7390 -Verdana_Bold.ttf 45 9 34.8011 44.7350 52 R 1.2588 41.1651 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 53 < 5.6840 38.0564 38.0564 -Verdana_Bold.ttf 45 9 34.8011 44.7350 54 4 1.1793 37.2216 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 55 8 -0.0465 36.2291 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 56 0 0.3162 35.0428 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 57 A 1.0688 43.5231 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 58 E 1.3320 30.7316 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 59 B 1.1648 36.1047 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 60 v 11.6228 35.6325 31.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 61 k -0.9257 34.5835 44.4239 -Verdana_Bold.ttf 45 9 34.8011 44.7350 62 J 1.1083 26.4804 43.5231 -Verdana_Bold.ttf 45 9 34.8011 44.7350 63 U 1.6683 38.0018 43.5231 -Verdana_Bold.ttf 45 9 34.8011 44.7350 64 j -1.0268 20.5270 56.0000 -Verdana_Bold.ttf 45 9 34.8011 44.7350 65 ( -1.1523 21.2683 56.0000 -Verdana_Bold.ttf 45 9 34.8011 44.7350 66 7 1.4865 33.3716 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 67 § 0.0198 33.3731 54.7915 -Verdana_Bold.ttf 45 9 34.8011 44.7350 68 $ -1.8700 34.4240 55.1557 -Verdana_Bold.ttf 45 9 34.8011 44.7350 69 € -0.0525 38.7447 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 70 / -0.7328 31.6359 53.7390 -Verdana_Bold.ttf 45 9 34.8011 44.7350 71 C 0.2381 36.1047 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 72 * -0.7380 32.2547 29.2120 -Verdana_Bold.ttf 45 9 34.8011 44.7350 73 ” -0.7561 30.4239 16.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 74 ? 0.0471 28.4593 43.5231 -Verdana_Bold.ttf 45 9 34.8011 44.7350 75 { -0.5270 31.3248 55.6923 -Verdana_Bold.ttf 45 9 34.8011 44.7350 76 } -1.1166 31.3248 55.6923 -Verdana_Bold.ttf 45 9 34.8011 44.7350 77 , 32.3105 16.5721 21.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 78 I 1.1870 24.5157 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 79 ° -0.0355 24.0564 23.8404 -Verdana_Bold.ttf 45 9 34.8011 44.7350 80 K 1.4569 39.5761 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 81 H 1.3786 38.3656 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 82 q 10.3324 33.5311 44.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 83 & 0.2275 48.3675 44.7350 -Verdana_Bold.ttf 45 9 34.8011 44.7350 84 ’ -1.0837 15.2120 16.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 85 [ -1.1218 19.1555 55.6923 -Verdana_Bold.ttf 45 9 34.8011 44.7350 86 - 20.4315 21.9436 7.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 87 Y 0.9377 42.5237 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 88 Q 0.3046 43.9002 55.0992 -Verdana_Bold.ttf 45 9 34.8011 44.7350 89 " -1.1295 25.0523 16.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 90 ! 1.5274 11.4279 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 91 x 11.8049 36.6284 31.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 92 ) -0.9078 21.2683 56.0000 -Verdana_Bold.ttf 45 9 34.8011 44.7350 93 = 13.0458 36.4803 23.1556 -Verdana_Bold.ttf 45 9 34.8011 44.7350 94 + 5.9086 38.3675 38.3675 -Verdana_Bold.ttf 45 9 34.8011 44.7350 95 X 1.5159 42.3111 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 96 » 9.1215 35.2683 30.4239 -Verdana_Bold.ttf 45 9 34.8011 44.7350 97 ' -0.7259 9.8404 16.7316 -Verdana_Bold.ttf 45 9 34.8011 44.7350 98 ¢ 1.4791 30.9492 51.8404 -Verdana_Bold.ttf 45 9 34.8011 44.7350 99 Z 1.1532 35.7955 42.3111 -Verdana_Bold.ttf 45 9 34.8011 44.7350 100 > 5.4324 38.0564 38.0564 -Verdana_Bold.ttf 45 9 34.8011 44.7350 101 ® 0.1486 49.2683 49.2683 -Verdana_Bold.ttf 45 9 34.8011 44.7350 102 © 0.0356 49.2683 49.2683 -Verdana_Bold.ttf 45 9 34.8011 44.7350 103 ] -0.6870 19.1555 55.6923 -Verdana_Bold.ttf 45 9 34.8011 44.7350 104 é -4.1828 33.9082 48.9606 -Verdana_Bold.ttf 45 9 34.8011 44.7350 105 z 11.4507 29.7357 31.9436 -Verdana_Bold.ttf 45 9 34.8011 44.7350 106 _ 47.0552 41.6923 6.0564 -Verdana_Bold.ttf 45 9 34.8011 44.7350 107 ¥ 1.0433 38.9042 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 1 t -8.8832 24.2160 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 2 h -12.3317 32.3226 44.4239 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 3 a -1.2749 31.7954 34.3675 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 4 n -1.3904 32.3226 33.1555 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 5 P -10.4031 35.4165 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 6 o -1.1792 35.1202 34.3675 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 7 e -1.2725 33.9082 34.3675 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 8 : 0.1942 10.6752 31.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 9 r -0.1883 23.3151 31.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 10 l -12.4649 10.2160 44.4239 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 11 i -12.3973 10.2160 44.4239 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 12 1 -10.2953 28.7413 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 13 | -12.4597 8.4803 55.6923 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 14 N -10.4455 38.8363 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 15 f -12.3160 24.5271 44.4239 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 16 g -1.0972 33.5311 44.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 17 d -12.6695 33.5311 45.6359 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 18 W -10.3346 62.2208 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 19 s -1.1990 29.7391 34.3675 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 20 c -1.2120 29.6826 34.3675 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 21 u -0.1012 32.3226 33.1555 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 22 3 -11.6746 33.8052 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 23 ~ 2.4077 41.7840 19.3716 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 24 # -10.3524 41.8499 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 25 O -11.8033 43.9002 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 26 ` -16.2629 16.9477 11.2684 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 27 @ -11.3996 47.6808 50.1066 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 28 F -10.3103 30.2610 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 29 S -11.9038 36.6318 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 30 p -1.3379 33.5311 44.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 31 “ -12.6236 30.4239 16.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 32 % -11.4334 66.6496 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 33 £ -11.7688 33.7487 43.5231 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 34 . 20.8645 10.6752 11.2684 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 35 2 -11.6746 33.2780 43.5231 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 36 5 -10.3945 33.0639 43.5231 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 37 m -1.3951 52.4335 33.1555 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 38 V -10.3675 42.3111 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 39 6 -11.4925 34.8011 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 40 w -0.0897 54.7880 31.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 41 T -10.4618 37.2507 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 42 M -10.5569 44.7331 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 43 G -11.5715 40.2643 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 44 b -12.7287 33.5311 45.6359 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 45 9 -11.5587 34.8011 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 46 ; -0.0447 16.5721 42.6188 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 47 D -10.5968 40.2643 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 48 L -10.4593 30.5721 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 49 y 0.4257 35.6325 43.5196 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 50 ‘ -12.6920 15.2120 16.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 51 \ -12.5213 31.6359 53.7390 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 52 R -10.4233 41.1651 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 53 < -6.3760 38.0564 38.0564 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 54 4 -10.4708 37.2216 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 55 8 -11.7294 36.2291 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 56 0 -11.5988 35.0428 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 57 A -10.2469 43.5231 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 58 E -10.4057 30.7316 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 59 B -10.1973 36.1047 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 60 v -0.0889 35.6325 31.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 61 k -12.4804 34.5835 44.4239 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 62 J -10.3629 26.4804 43.5231 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 63 U -10.0737 38.0018 43.5231 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 64 j -12.6033 20.5270 56.0000 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 65 ( -12.4403 21.2683 56.0000 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 66 7 -10.4518 33.3716 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 67 § -11.6046 33.3731 54.7915 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 68 $ -12.9624 34.4240 55.1557 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 69 € -11.7775 38.7447 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 70 / -12.5112 31.6359 53.7390 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 71 C -11.3815 36.1047 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 72 * -12.2029 32.2547 29.2120 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 73 ” -12.5343 30.4239 16.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 74 ? -11.6173 28.4593 43.5231 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 75 { -12.6091 31.3248 55.6923 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 76 } -12.5707 31.3248 55.6923 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 77 , 20.6879 16.5721 21.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 78 I -10.5474 24.5157 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 79 ° -11.5542 24.0564 23.8404 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 80 K -10.3614 39.5761 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 81 H -10.3503 38.3656 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 82 q -1.2700 33.5311 44.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 83 & -11.6699 48.3675 44.7350 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 84 ’ -12.5083 15.2120 16.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 85 [ -12.7081 19.1555 55.6923 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 86 - 8.7865 21.9436 7.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 87 Y -10.4473 42.5237 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 88 Q -11.4690 43.9002 55.0992 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 89 " -12.7129 25.0523 16.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 90 ! -10.2863 11.4279 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 91 x 0.2345 36.6284 31.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 92 ) -12.6293 21.2683 56.0000 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 93 = 1.7863 36.4803 23.1556 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 94 + -5.9170 38.3675 38.3675 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 95 X -10.4840 42.3111 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 96 » -2.1182 35.2683 30.4239 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 97 ' -12.5205 9.8404 16.7316 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 98 ¢ -10.3659 30.9492 51.8404 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 99 Z -10.4684 35.7955 42.3111 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 100 > -6.1373 38.0564 38.0564 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 101 ® -11.5795 49.2683 49.2683 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 102 © -11.8692 49.2683 49.2683 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 103 ] -12.5598 19.1555 55.6923 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 104 é -15.7979 33.9082 48.9606 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 105 z 0.0848 29.7357 31.9436 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 106 _ 35.5769 41.6923 6.0564 -Verdana_Bold.ttf 46 ; 16.5721 42.6188 107 ¥ -10.3719 38.9042 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 1 t 1.1504 24.2160 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 2 h -2.3627 32.3226 44.4239 -Verdana_Bold.ttf 47 D 40.2643 42.3111 3 a 8.8115 31.7954 34.3675 -Verdana_Bold.ttf 47 D 40.2643 42.3111 4 n 8.8731 32.3226 33.1555 -Verdana_Bold.ttf 47 D 40.2643 42.3111 5 P 0.0199 35.4165 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 6 o 9.4329 35.1202 34.3675 -Verdana_Bold.ttf 47 D 40.2643 42.3111 7 e 8.8958 33.9082 34.3675 -Verdana_Bold.ttf 47 D 40.2643 42.3111 8 : 10.4380 10.6752 31.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 9 r 10.5167 23.3151 31.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 10 l -1.9719 10.2160 44.4239 -Verdana_Bold.ttf 47 D 40.2643 42.3111 11 i -2.1495 10.2160 44.4239 -Verdana_Bold.ttf 47 D 40.2643 42.3111 12 1 -0.0532 28.7413 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 13 | -2.1502 8.4803 55.6923 -Verdana_Bold.ttf 47 D 40.2643 42.3111 14 N -0.0036 38.8363 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 15 f -1.8298 24.5271 44.4239 -Verdana_Bold.ttf 47 D 40.2643 42.3111 16 g 9.3908 33.5311 44.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 17 d -1.8709 33.5311 45.6359 -Verdana_Bold.ttf 47 D 40.2643 42.3111 18 W -0.0885 62.2208 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 19 s 9.1482 29.7391 34.3675 -Verdana_Bold.ttf 47 D 40.2643 42.3111 20 c 9.0733 29.6826 34.3675 -Verdana_Bold.ttf 47 D 40.2643 42.3111 21 u 10.3227 32.3226 33.1555 -Verdana_Bold.ttf 47 D 40.2643 42.3111 22 3 -1.2802 33.8052 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 23 ~ 13.0903 41.7840 19.3716 -Verdana_Bold.ttf 47 D 40.2643 42.3111 24 # -0.0494 41.8499 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 25 O -1.1518 43.9002 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 26 ` -5.5714 16.9477 11.2684 -Verdana_Bold.ttf 47 D 40.2643 42.3111 27 @ -1.1325 47.6808 50.1066 -Verdana_Bold.ttf 47 D 40.2643 42.3111 28 F -0.0298 30.2610 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 29 S -1.0327 36.6318 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 30 p 9.0214 33.5311 44.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 31 “ -1.8064 30.4239 16.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 32 % -1.2131 66.6496 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 33 £ -1.3138 33.7487 43.5231 -Verdana_Bold.ttf 47 D 40.2643 42.3111 34 . 30.9793 10.6752 11.2684 -Verdana_Bold.ttf 47 D 40.2643 42.3111 35 2 -1.2092 33.2780 43.5231 -Verdana_Bold.ttf 47 D 40.2643 42.3111 36 5 0.0677 33.0639 43.5231 -Verdana_Bold.ttf 47 D 40.2643 42.3111 37 m 9.1188 52.4335 33.1555 -Verdana_Bold.ttf 47 D 40.2643 42.3111 38 V 0.0757 42.3111 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 39 6 -1.0467 34.8011 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 40 w 10.2546 54.7880 31.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 41 T 0.0570 37.2507 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 42 M 0.1940 44.7331 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 43 G -1.0572 40.2643 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 44 b -1.9779 33.5311 45.6359 -Verdana_Bold.ttf 47 D 40.2643 42.3111 45 9 -1.2382 34.8011 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 46 ; 10.4555 16.5721 42.6188 -Verdana_Bold.ttf 47 D 40.2643 42.3111 47 D -0.0702 40.2643 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 48 L 0.0768 30.5721 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 49 y 10.7223 35.6325 43.5196 -Verdana_Bold.ttf 47 D 40.2643 42.3111 50 ‘ -2.3535 15.2120 16.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 51 \ -1.9282 31.6359 53.7390 -Verdana_Bold.ttf 47 D 40.2643 42.3111 52 R -0.2682 41.1651 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 53 < 4.4280 38.0564 38.0564 -Verdana_Bold.ttf 47 D 40.2643 42.3111 54 4 -0.0035 37.2216 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 55 8 -1.3431 36.2291 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 56 0 -1.1768 35.0428 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 57 A -0.4286 43.5231 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 58 E 0.1321 30.7316 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 59 B -0.1302 36.1047 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 60 v 10.3371 35.6325 31.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 61 k -2.0464 34.5835 44.4239 -Verdana_Bold.ttf 47 D 40.2643 42.3111 62 J -0.1320 26.4804 43.5231 -Verdana_Bold.ttf 47 D 40.2643 42.3111 63 U -0.2198 38.0018 43.5231 -Verdana_Bold.ttf 47 D 40.2643 42.3111 64 j -2.4194 20.5270 56.0000 -Verdana_Bold.ttf 47 D 40.2643 42.3111 65 ( -2.5869 21.2683 56.0000 -Verdana_Bold.ttf 47 D 40.2643 42.3111 66 7 0.0146 33.3716 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 67 § -1.1500 33.3731 54.7915 -Verdana_Bold.ttf 47 D 40.2643 42.3111 68 $ -3.2897 34.4240 55.1557 -Verdana_Bold.ttf 47 D 40.2643 42.3111 69 € -1.5193 38.7447 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 70 / -2.3330 31.6359 53.7390 -Verdana_Bold.ttf 47 D 40.2643 42.3111 71 C -1.0006 36.1047 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 72 * -2.4323 32.2547 29.2120 -Verdana_Bold.ttf 47 D 40.2643 42.3111 73 ” -1.9380 30.4239 16.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 74 ? -1.1931 28.4593 43.5231 -Verdana_Bold.ttf 47 D 40.2643 42.3111 75 { -2.3579 31.3248 55.6923 -Verdana_Bold.ttf 47 D 40.2643 42.3111 76 } -2.1262 31.3248 55.6923 -Verdana_Bold.ttf 47 D 40.2643 42.3111 77 , 30.8205 16.5721 21.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 78 I 0.2922 24.5157 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 79 ° -1.2214 24.0564 23.8404 -Verdana_Bold.ttf 47 D 40.2643 42.3111 80 K 0.1425 39.5761 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 81 H 0.0094 38.3656 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 82 q 9.2978 33.5311 44.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 83 & -1.1511 48.3675 44.7350 -Verdana_Bold.ttf 47 D 40.2643 42.3111 84 ’ -1.8513 15.2120 16.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 85 [ -2.4262 19.1555 55.6923 -Verdana_Bold.ttf 47 D 40.2643 42.3111 86 - 19.1538 21.9436 7.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 87 Y 0.1150 42.5237 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 88 Q -1.2623 43.9002 55.0992 -Verdana_Bold.ttf 47 D 40.2643 42.3111 89 " -2.1210 25.0523 16.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 90 ! 0.1568 11.4279 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 91 x 10.4963 36.6284 31.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 92 ) -2.3928 21.2683 56.0000 -Verdana_Bold.ttf 47 D 40.2643 42.3111 93 = 12.1566 36.4803 23.1556 -Verdana_Bold.ttf 47 D 40.2643 42.3111 94 + 4.8380 38.3675 38.3675 -Verdana_Bold.ttf 47 D 40.2643 42.3111 95 X -0.0004 42.3111 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 96 » 7.8902 35.2683 30.4239 -Verdana_Bold.ttf 47 D 40.2643 42.3111 97 ' -2.0868 9.8404 16.7316 -Verdana_Bold.ttf 47 D 40.2643 42.3111 98 ¢ 0.6579 30.9492 51.8404 -Verdana_Bold.ttf 47 D 40.2643 42.3111 99 Z 0.2822 35.7955 42.3111 -Verdana_Bold.ttf 47 D 40.2643 42.3111 100 > 4.0077 38.0564 38.0564 -Verdana_Bold.ttf 47 D 40.2643 42.3111 101 ® -1.2627 49.2683 49.2683 -Verdana_Bold.ttf 47 D 40.2643 42.3111 102 © -1.4548 49.2683 49.2683 -Verdana_Bold.ttf 47 D 40.2643 42.3111 103 ] -1.9738 19.1555 55.6923 -Verdana_Bold.ttf 47 D 40.2643 42.3111 104 é -5.1497 33.9082 48.9606 -Verdana_Bold.ttf 47 D 40.2643 42.3111 105 z 10.5563 29.7357 31.9436 -Verdana_Bold.ttf 47 D 40.2643 42.3111 106 _ 46.1984 41.6923 6.0564 -Verdana_Bold.ttf 47 D 40.2643 42.3111 107 ¥ 0.2518 38.9042 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 1 t 1.0881 24.2160 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 2 h -2.3709 32.3226 44.4239 -Verdana_Bold.ttf 48 L 30.5721 42.3111 3 a 9.0935 31.7954 34.3675 -Verdana_Bold.ttf 48 L 30.5721 42.3111 4 n 9.1157 32.3226 33.1555 -Verdana_Bold.ttf 48 L 30.5721 42.3111 5 P 0.1052 35.4165 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 6 o 9.1603 35.1202 34.3675 -Verdana_Bold.ttf 48 L 30.5721 42.3111 7 e 9.1450 33.9082 34.3675 -Verdana_Bold.ttf 48 L 30.5721 42.3111 8 : 10.5276 10.6752 31.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 9 r 10.7052 23.3151 31.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 10 l -1.9692 10.2160 44.4239 -Verdana_Bold.ttf 48 L 30.5721 42.3111 11 i -1.7717 10.2160 44.4239 -Verdana_Bold.ttf 48 L 30.5721 42.3111 12 1 -0.0638 28.7413 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 13 | -2.3568 8.4803 55.6923 -Verdana_Bold.ttf 48 L 30.5721 42.3111 14 N 0.1255 38.8363 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 15 f -2.3070 24.5271 44.4239 -Verdana_Bold.ttf 48 L 30.5721 42.3111 16 g 8.9120 33.5311 44.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 17 d -1.9224 33.5311 45.6359 -Verdana_Bold.ttf 48 L 30.5721 42.3111 18 W 0.0751 62.2208 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 19 s 9.1305 29.7391 34.3675 -Verdana_Bold.ttf 48 L 30.5721 42.3111 20 c 9.0652 29.6826 34.3675 -Verdana_Bold.ttf 48 L 30.5721 42.3111 21 u 10.4377 32.3226 33.1555 -Verdana_Bold.ttf 48 L 30.5721 42.3111 22 3 -1.2518 33.8052 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 23 ~ 12.9884 41.7840 19.3716 -Verdana_Bold.ttf 48 L 30.5721 42.3111 24 # 0.0511 41.8499 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 25 O -1.4262 43.9002 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 26 ` -5.3375 16.9477 11.2684 -Verdana_Bold.ttf 48 L 30.5721 42.3111 27 @ -0.9774 47.6808 50.1066 -Verdana_Bold.ttf 48 L 30.5721 42.3111 28 F -0.3932 30.2610 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 29 S -1.5932 36.6318 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 30 p 9.2089 33.5311 44.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 31 “ -1.6280 30.4239 16.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 32 % -1.0418 66.6496 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 33 £ -1.2293 33.7487 43.5231 -Verdana_Bold.ttf 48 L 30.5721 42.3111 34 . 31.3022 10.6752 11.2684 -Verdana_Bold.ttf 48 L 30.5721 42.3111 35 2 -0.8897 33.2780 43.5231 -Verdana_Bold.ttf 48 L 30.5721 42.3111 36 5 -0.3527 33.0639 43.5231 -Verdana_Bold.ttf 48 L 30.5721 42.3111 37 m 9.0787 52.4335 33.1555 -Verdana_Bold.ttf 48 L 30.5721 42.3111 38 V 0.2677 42.3111 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 39 6 -1.4470 34.8011 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 40 w 10.3311 54.7880 31.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 41 T -0.1134 37.2507 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 42 M -0.2082 44.7331 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 43 G -1.3595 40.2643 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 44 b -2.1429 33.5311 45.6359 -Verdana_Bold.ttf 48 L 30.5721 42.3111 45 9 -1.1336 34.8011 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 46 ; 10.6723 16.5721 42.6188 -Verdana_Bold.ttf 48 L 30.5721 42.3111 47 D 0.0891 40.2643 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 48 L -0.1857 30.5721 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 49 y 10.2638 35.6325 43.5196 -Verdana_Bold.ttf 48 L 30.5721 42.3111 50 ‘ -2.0433 15.2120 16.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 51 \ -2.2413 31.6359 53.7390 -Verdana_Bold.ttf 48 L 30.5721 42.3111 52 R -0.1395 41.1651 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 53 < 4.4360 38.0564 38.0564 -Verdana_Bold.ttf 48 L 30.5721 42.3111 54 4 0.1975 37.2216 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 55 8 -1.2922 36.2291 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 56 0 -1.2257 35.0428 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 57 A 0.0235 43.5231 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 58 E -0.0572 30.7316 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 59 B -0.2173 36.1047 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 60 v 10.4550 35.6325 31.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 61 k -2.2123 34.5835 44.4239 -Verdana_Bold.ttf 48 L 30.5721 42.3111 62 J 0.0821 26.4804 43.5231 -Verdana_Bold.ttf 48 L 30.5721 42.3111 63 U 0.2821 38.0018 43.5231 -Verdana_Bold.ttf 48 L 30.5721 42.3111 64 j -2.2902 20.5270 56.0000 -Verdana_Bold.ttf 48 L 30.5721 42.3111 65 ( -2.0283 21.2683 56.0000 -Verdana_Bold.ttf 48 L 30.5721 42.3111 66 7 -0.1918 33.3716 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 67 § -0.8632 33.3731 54.7915 -Verdana_Bold.ttf 48 L 30.5721 42.3111 68 $ -2.4716 34.4240 55.1557 -Verdana_Bold.ttf 48 L 30.5721 42.3111 69 € -1.2085 38.7447 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 70 / -2.1539 31.6359 53.7390 -Verdana_Bold.ttf 48 L 30.5721 42.3111 71 C -1.3868 36.1047 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 72 * -2.3253 32.2547 29.2120 -Verdana_Bold.ttf 48 L 30.5721 42.3111 73 ” -1.9066 30.4239 16.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 74 ? -1.3933 28.4593 43.5231 -Verdana_Bold.ttf 48 L 30.5721 42.3111 75 { -2.2935 31.3248 55.6923 -Verdana_Bold.ttf 48 L 30.5721 42.3111 76 } -2.0171 31.3248 55.6923 -Verdana_Bold.ttf 48 L 30.5721 42.3111 77 , 30.7252 16.5721 21.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 78 I 0.1593 24.5157 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 79 ° -1.1399 24.0564 23.8404 -Verdana_Bold.ttf 48 L 30.5721 42.3111 80 K 0.1881 39.5761 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 81 H -0.1313 38.3656 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 82 q 9.2473 33.5311 44.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 83 & -1.3102 48.3675 44.7350 -Verdana_Bold.ttf 48 L 30.5721 42.3111 84 ’ -2.0729 15.2120 16.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 85 [ -1.9782 19.1555 55.6923 -Verdana_Bold.ttf 48 L 30.5721 42.3111 86 - 19.4120 21.9436 7.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 87 Y -0.0932 42.5237 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 88 Q -1.2076 43.9002 55.0992 -Verdana_Bold.ttf 48 L 30.5721 42.3111 89 " -1.9157 25.0523 16.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 90 ! -0.2540 11.4279 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 91 x 10.4049 36.6284 31.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 92 ) -2.0616 21.2683 56.0000 -Verdana_Bold.ttf 48 L 30.5721 42.3111 93 = 12.0755 36.4803 23.1556 -Verdana_Bold.ttf 48 L 30.5721 42.3111 94 + 4.6565 38.3675 38.3675 -Verdana_Bold.ttf 48 L 30.5721 42.3111 95 X -0.0500 42.3111 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 96 » 8.3223 35.2683 30.4239 -Verdana_Bold.ttf 48 L 30.5721 42.3111 97 ' -1.9360 9.8404 16.7316 -Verdana_Bold.ttf 48 L 30.5721 42.3111 98 ¢ 0.6626 30.9492 51.8404 -Verdana_Bold.ttf 48 L 30.5721 42.3111 99 Z 0.0025 35.7955 42.3111 -Verdana_Bold.ttf 48 L 30.5721 42.3111 100 > 4.1167 38.0564 38.0564 -Verdana_Bold.ttf 48 L 30.5721 42.3111 101 ® -1.1014 49.2683 49.2683 -Verdana_Bold.ttf 48 L 30.5721 42.3111 102 © -1.3096 49.2683 49.2683 -Verdana_Bold.ttf 48 L 30.5721 42.3111 103 ] -2.1931 19.1555 55.6923 -Verdana_Bold.ttf 48 L 30.5721 42.3111 104 é -5.5345 33.9082 48.9606 -Verdana_Bold.ttf 48 L 30.5721 42.3111 105 z 10.3721 29.7357 31.9436 -Verdana_Bold.ttf 48 L 30.5721 42.3111 106 _ 46.2666 41.6923 6.0564 -Verdana_Bold.ttf 48 L 30.5721 42.3111 107 ¥ -0.1854 38.9042 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 1 t -8.9453 24.2160 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 2 h -12.5718 32.3226 44.4239 -Verdana_Bold.ttf 49 y 35.6325 43.5196 3 a -1.0391 31.7954 34.3675 -Verdana_Bold.ttf 49 y 35.6325 43.5196 4 n -1.2893 32.3226 33.1555 -Verdana_Bold.ttf 49 y 35.6325 43.5196 5 P -10.3023 35.4165 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 6 o -1.1518 35.1202 34.3675 -Verdana_Bold.ttf 49 y 35.6325 43.5196 7 e -0.8325 33.9082 34.3675 -Verdana_Bold.ttf 49 y 35.6325 43.5196 8 : -0.1354 10.6752 31.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 9 r 0.4815 23.3151 31.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 10 l -12.9312 10.2160 44.4239 -Verdana_Bold.ttf 49 y 35.6325 43.5196 11 i -12.8773 10.2160 44.4239 -Verdana_Bold.ttf 49 y 35.6325 43.5196 12 1 -10.0930 28.7413 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 13 | -12.1360 8.4803 55.6923 -Verdana_Bold.ttf 49 y 35.6325 43.5196 14 N -10.5377 38.8363 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 15 f -12.3832 24.5271 44.4239 -Verdana_Bold.ttf 49 y 35.6325 43.5196 16 g -1.3685 33.5311 44.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 17 d -12.2943 33.5311 45.6359 -Verdana_Bold.ttf 49 y 35.6325 43.5196 18 W -10.4167 62.2208 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 19 s -0.8478 29.7391 34.3675 -Verdana_Bold.ttf 49 y 35.6325 43.5196 20 c -0.9856 29.6826 34.3675 -Verdana_Bold.ttf 49 y 35.6325 43.5196 21 u 0.1860 32.3226 33.1555 -Verdana_Bold.ttf 49 y 35.6325 43.5196 22 3 -11.2330 33.8052 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 23 ~ 2.9762 41.7840 19.3716 -Verdana_Bold.ttf 49 y 35.6325 43.5196 24 # -10.4579 41.8499 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 25 O -11.6066 43.9002 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 26 ` -16.0110 16.9477 11.2684 -Verdana_Bold.ttf 49 y 35.6325 43.5196 27 @ -11.5008 47.6808 50.1066 -Verdana_Bold.ttf 49 y 35.6325 43.5196 28 F -10.3661 30.2610 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 29 S -11.7280 36.6318 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 30 p -1.1850 33.5311 44.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 31 “ -12.4216 30.4239 16.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 32 % -11.7223 66.6496 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 33 £ -11.3943 33.7487 43.5231 -Verdana_Bold.ttf 49 y 35.6325 43.5196 34 . 20.7471 10.6752 11.2684 -Verdana_Bold.ttf 49 y 35.6325 43.5196 35 2 -11.6651 33.2780 43.5231 -Verdana_Bold.ttf 49 y 35.6325 43.5196 36 5 -10.5441 33.0639 43.5231 -Verdana_Bold.ttf 49 y 35.6325 43.5196 37 m -0.7138 52.4335 33.1555 -Verdana_Bold.ttf 49 y 35.6325 43.5196 38 V -10.2762 42.3111 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 39 6 -11.5692 34.8011 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 40 w 0.0683 54.7880 31.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 41 T -10.2801 37.2507 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 42 M -10.4086 44.7331 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 43 G -11.5273 40.2643 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 44 b -12.3174 33.5311 45.6359 -Verdana_Bold.ttf 49 y 35.6325 43.5196 45 9 -11.8433 34.8011 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 46 ; -0.2677 16.5721 42.6188 -Verdana_Bold.ttf 49 y 35.6325 43.5196 47 D -10.4093 40.2643 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 48 L -10.2542 30.5721 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 49 y 0.0000 35.6325 43.5196 -Verdana_Bold.ttf 49 y 35.6325 43.5196 50 ‘ -12.4405 15.2120 16.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 51 \ -12.5353 31.6359 53.7390 -Verdana_Bold.ttf 49 y 35.6325 43.5196 52 R -10.4968 41.1651 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 53 < -6.0433 38.0564 38.0564 -Verdana_Bold.ttf 49 y 35.6325 43.5196 54 4 -10.3857 37.2216 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 55 8 -11.6637 36.2291 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 56 0 -11.8795 35.0428 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 57 A -10.3103 43.5231 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 58 E -10.3132 30.7316 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 59 B -10.5818 36.1047 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 60 v -0.1892 35.6325 31.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 61 k -12.4976 34.5835 44.4239 -Verdana_Bold.ttf 49 y 35.6325 43.5196 62 J -10.1859 26.4804 43.5231 -Verdana_Bold.ttf 49 y 35.6325 43.5196 63 U -10.1837 38.0018 43.5231 -Verdana_Bold.ttf 49 y 35.6325 43.5196 64 j -12.5213 20.5270 56.0000 -Verdana_Bold.ttf 49 y 35.6325 43.5196 65 ( -12.5294 21.2683 56.0000 -Verdana_Bold.ttf 49 y 35.6325 43.5196 66 7 -10.2994 33.3716 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 67 § -11.2661 33.3731 54.7915 -Verdana_Bold.ttf 49 y 35.6325 43.5196 68 $ -13.0452 34.4240 55.1557 -Verdana_Bold.ttf 49 y 35.6325 43.5196 69 € -11.4793 38.7447 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 70 / -12.5062 31.6359 53.7390 -Verdana_Bold.ttf 49 y 35.6325 43.5196 71 C -11.4827 36.1047 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 72 * -12.5267 32.2547 29.2120 -Verdana_Bold.ttf 49 y 35.6325 43.5196 73 ” -12.4581 30.4239 16.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 74 ? -11.8418 28.4593 43.5231 -Verdana_Bold.ttf 49 y 35.6325 43.5196 75 { -12.2742 31.3248 55.6923 -Verdana_Bold.ttf 49 y 35.6325 43.5196 76 } -12.5318 31.3248 55.6923 -Verdana_Bold.ttf 49 y 35.6325 43.5196 77 , 20.4308 16.5721 21.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 78 I -10.2334 24.5157 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 79 ° -11.5158 24.0564 23.8404 -Verdana_Bold.ttf 49 y 35.6325 43.5196 80 K -10.3523 39.5761 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 81 H -10.2888 38.3656 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 82 q -1.2548 33.5311 44.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 83 & -11.6437 48.3675 44.7350 -Verdana_Bold.ttf 49 y 35.6325 43.5196 84 ’ -12.4742 15.2120 16.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 85 [ -12.4725 19.1555 55.6923 -Verdana_Bold.ttf 49 y 35.6325 43.5196 86 - 9.0172 21.9436 7.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 87 Y -10.4871 42.5237 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 88 Q -11.6691 43.9002 55.0992 -Verdana_Bold.ttf 49 y 35.6325 43.5196 89 " -12.3805 25.0523 16.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 90 ! -9.8414 11.4279 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 91 x -0.3483 36.6284 31.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 92 ) -12.2548 21.2683 56.0000 -Verdana_Bold.ttf 49 y 35.6325 43.5196 93 = 1.4786 36.4803 23.1556 -Verdana_Bold.ttf 49 y 35.6325 43.5196 94 + -5.9044 38.3675 38.3675 -Verdana_Bold.ttf 49 y 35.6325 43.5196 95 X -10.1464 42.3111 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 96 » -2.5961 35.2683 30.4239 -Verdana_Bold.ttf 49 y 35.6325 43.5196 97 ' -12.6151 9.8404 16.7316 -Verdana_Bold.ttf 49 y 35.6325 43.5196 98 ¢ -9.8247 30.9492 51.8404 -Verdana_Bold.ttf 49 y 35.6325 43.5196 99 Z -10.4540 35.7955 42.3111 -Verdana_Bold.ttf 49 y 35.6325 43.5196 100 > -6.3447 38.0564 38.0564 -Verdana_Bold.ttf 49 y 35.6325 43.5196 101 ® -11.9644 49.2683 49.2683 -Verdana_Bold.ttf 49 y 35.6325 43.5196 102 © -11.6071 49.2683 49.2683 -Verdana_Bold.ttf 49 y 35.6325 43.5196 103 ] -12.5875 19.1555 55.6923 -Verdana_Bold.ttf 49 y 35.6325 43.5196 104 é -16.0430 33.9082 48.9606 -Verdana_Bold.ttf 49 y 35.6325 43.5196 105 z 0.1508 29.7357 31.9436 -Verdana_Bold.ttf 49 y 35.6325 43.5196 106 _ 35.8661 41.6923 6.0564 -Verdana_Bold.ttf 49 y 35.6325 43.5196 107 ¥ -10.4738 38.9042 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 1 t 3.5597 24.2160 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 2 h 0.0943 32.3226 44.4239 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 3 a 11.4700 31.7954 34.3675 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 4 n 11.4569 32.3226 33.1555 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 5 P 1.9826 35.4165 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 6 o 11.5191 35.1202 34.3675 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 7 e 11.4620 33.9082 34.3675 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 8 : 12.4527 10.6752 31.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 9 r 12.5721 23.3151 31.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 10 l -0.2626 10.2160 44.4239 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 11 i 0.0519 10.2160 44.4239 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 12 1 2.2013 28.7413 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 13 | -0.0620 8.4803 55.6923 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 14 N 2.3210 38.8363 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 15 f -0.2390 24.5271 44.4239 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 16 g 11.2684 33.5311 44.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 17 d -0.2358 33.5311 45.6359 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 18 W 2.1095 62.2208 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 19 s 11.4415 29.7391 34.3675 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 20 c 11.3246 29.6826 34.3675 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 21 u 12.3255 32.3226 33.1555 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 22 3 1.0979 33.8052 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 23 ~ 15.4350 41.7840 19.3716 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 24 # 1.9869 41.8499 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 25 O 0.4949 43.9002 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 26 ` -2.9573 16.9477 11.2684 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 27 @ 1.0920 47.6808 50.1066 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 28 F 2.0250 30.2610 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 29 S 1.0163 36.6318 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 30 p 11.2324 33.5311 44.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 31 “ 0.0000 30.4239 16.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 32 % 0.9839 66.6496 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 33 £ 1.0311 33.7487 43.5231 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 34 . 32.9807 10.6752 11.2684 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 35 2 0.9407 33.2780 43.5231 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 36 5 2.2478 33.0639 43.5231 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 37 m 11.4163 52.4335 33.1555 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 38 V 1.9556 42.3111 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 39 6 0.9441 34.8011 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 40 w 12.6610 54.7880 31.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 41 T 1.9260 37.2507 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 42 M 2.0461 44.7331 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 43 G 0.6890 40.2643 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 44 b -0.0656 33.5311 45.6359 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 45 9 0.9959 34.8011 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 46 ; 12.3994 16.5721 42.6188 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 47 D 1.9840 40.2643 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 48 L 2.0149 30.5721 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 49 y 12.5458 35.6325 43.5196 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 50 ‘ 0.0494 15.2120 16.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 51 \ -0.2960 31.6359 53.7390 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 52 R 1.8825 41.1651 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 53 < 6.3473 38.0564 38.0564 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 54 4 2.1660 37.2216 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 55 8 1.1041 36.2291 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 56 0 1.0471 35.0428 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 57 A 2.0729 43.5231 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 58 E 1.9675 30.7316 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 59 B 2.2020 36.1047 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 60 v 12.4509 35.6325 31.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 61 k -0.0572 34.5835 44.4239 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 62 J 1.9739 26.4804 43.5231 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 63 U 1.8580 38.0018 43.5231 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 64 j 0.0000 20.5270 56.0000 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 65 ( 0.0809 21.2683 56.0000 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 66 7 2.2427 33.3716 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 67 § 1.1185 33.3731 54.7915 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 68 $ -0.8901 34.4240 55.1557 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 69 € 0.9360 38.7447 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 70 / 0.1310 31.6359 53.7390 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 71 C 0.9008 36.1047 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 72 * -0.1860 32.2547 29.2120 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 73 ” -0.1074 30.4239 16.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 74 ? 1.1428 28.4593 43.5231 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 75 { -0.2131 31.3248 55.6923 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 76 } 0.0544 31.3248 55.6923 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 77 , 33.0764 16.5721 21.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 78 I 1.8494 24.5157 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 79 ° 0.9008 24.0564 23.8404 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 80 K 2.0225 39.5761 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 81 H 2.1276 38.3656 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 82 q 11.4127 33.5311 44.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 83 & 1.0383 48.3675 44.7350 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 84 ’ 0.0850 15.2120 16.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 85 [ 0.1241 19.1555 55.6923 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 86 - 21.2984 21.9436 7.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 87 Y 1.9826 42.5237 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 88 Q 0.9477 43.9002 55.0992 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 89 " 0.0123 25.0523 16.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 90 ! 2.0696 11.4279 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 91 x 12.5100 36.6284 31.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 92 ) 0.3350 21.2683 56.0000 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 93 = 13.5615 36.4803 23.1556 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 94 + 6.2676 38.3675 38.3675 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 95 X 2.1589 42.3111 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 96 » 9.9565 35.2683 30.4239 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 97 ' 0.0245 9.8404 16.7316 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 98 ¢ 2.3336 30.9492 51.8404 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 99 Z 2.1207 35.7955 42.3111 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 100 > 6.7921 38.0564 38.0564 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 101 ® 1.0570 49.2683 49.2683 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 102 © 0.6597 49.2683 49.2683 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 103 ] -0.2576 19.1555 55.6923 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 104 é -3.3509 33.9082 48.9606 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 105 z 12.3646 29.7357 31.9436 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 106 _ 48.2992 41.6923 6.0564 -Verdana_Bold.ttf 50 ‘ 15.2120 16.7316 107 ¥ 2.0474 38.9042 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 1 t 3.5203 24.2160 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 2 h 0.1522 32.3226 44.4239 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 3 a 11.1295 31.7954 34.3675 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 4 n 11.6363 32.3226 33.1555 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 5 P 2.0460 35.4165 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 6 o 11.3972 35.1202 34.3675 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 7 e 11.2164 33.9082 34.3675 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 8 : 12.1545 10.6752 31.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 9 r 12.5083 23.3151 31.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 10 l 0.0155 10.2160 44.4239 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 11 i -0.0623 10.2160 44.4239 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 12 1 2.0322 28.7413 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 13 | 0.1100 8.4803 55.6923 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 14 N 2.3855 38.8363 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 15 f 0.0251 24.5271 44.4239 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 16 g 11.1973 33.5311 44.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 17 d -0.0066 33.5311 45.6359 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 18 W 2.0628 62.2208 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 19 s 11.2482 29.7391 34.3675 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 20 c 11.1568 29.6826 34.3675 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 21 u 12.3483 32.3226 33.1555 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 22 3 0.6169 33.8052 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 23 ~ 15.3938 41.7840 19.3716 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 24 # 2.0926 41.8499 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 25 O 0.9664 43.9002 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 26 ` -3.4781 16.9477 11.2684 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 27 @ 0.8158 47.6808 50.1066 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 28 F 2.1708 30.2610 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 29 S 0.7289 36.6318 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 30 p 11.3976 33.5311 44.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 31 “ 0.0479 30.4239 16.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 32 % 0.9368 66.6496 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 33 £ 1.0599 33.7487 43.5231 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 34 . 33.3166 10.6752 11.2684 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 35 2 0.8258 33.2780 43.5231 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 36 5 1.8980 33.0639 43.5231 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 37 m 11.4617 52.4335 33.1555 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 38 V 1.9157 42.3111 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 39 6 1.2233 34.8011 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 40 w 12.4739 54.7880 31.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 41 T 1.8725 37.2507 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 42 M 1.8585 44.7331 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 43 G 0.9643 40.2643 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 44 b -0.0679 33.5311 45.6359 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 45 9 1.1377 34.8011 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 46 ; 12.7756 16.5721 42.6188 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 47 D 2.1527 40.2643 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 48 L 2.0509 30.5721 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 49 y 12.5649 35.6325 43.5196 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 50 ‘ -0.1302 15.2120 16.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 51 \ 0.1633 31.6359 53.7390 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 52 R 2.4262 41.1651 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 53 < 6.2406 38.0564 38.0564 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 54 4 2.1226 37.2216 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 55 8 1.0389 36.2291 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 56 0 0.8845 35.0428 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 57 A 2.0860 43.5231 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 58 E 2.1355 30.7316 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 59 B 1.9514 36.1047 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 60 v 12.2626 35.6325 31.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 61 k 0.0200 34.5835 44.4239 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 62 J 1.9099 26.4804 43.5231 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 63 U 2.2823 38.0018 43.5231 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 64 j -0.1723 20.5270 56.0000 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 65 ( 0.5056 21.2683 56.0000 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 66 7 2.0915 33.3716 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 67 § 0.7885 33.3731 54.7915 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 68 $ -0.8319 34.4240 55.1557 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 69 € 0.8288 38.7447 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 70 / -0.2514 31.6359 53.7390 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 71 C 0.7006 36.1047 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 72 * 0.0298 32.2547 29.2120 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 73 ” 0.4603 30.4239 16.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 74 ? 1.0957 28.4593 43.5231 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 75 { 0.2413 31.3248 55.6923 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 76 } -0.0848 31.3248 55.6923 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 77 , 33.0325 16.5721 21.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 78 I 2.2694 24.5157 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 79 ° 0.9147 24.0564 23.8404 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 80 K 2.2455 39.5761 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 81 H 1.6793 38.3656 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 82 q 11.3135 33.5311 44.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 83 & 0.8270 48.3675 44.7350 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 84 ’ -0.1843 15.2120 16.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 85 [ -0.0197 19.1555 55.6923 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 86 - 21.2309 21.9436 7.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 87 Y 2.0758 42.5237 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 88 Q 0.8655 43.9002 55.0992 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 89 " 0.1593 25.0523 16.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 90 ! 2.1463 11.4279 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 91 x 12.6265 36.6284 31.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 92 ) 0.0292 21.2683 56.0000 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 93 = 14.2817 36.4803 23.1556 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 94 + 6.5000 38.3675 38.3675 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 95 X 2.3301 42.3111 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 96 » 10.4819 35.2683 30.4239 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 97 ' -0.1219 9.8404 16.7316 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 98 ¢ 2.6443 30.9492 51.8404 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 99 Z 2.2280 35.7955 42.3111 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 100 > 6.3652 38.0564 38.0564 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 101 ® 0.8387 49.2683 49.2683 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 102 © 0.5668 49.2683 49.2683 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 103 ] 0.3181 19.1555 55.6923 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 104 é -3.3968 33.9082 48.9606 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 105 z 12.4416 29.7357 31.9436 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 106 _ 48.3362 41.6923 6.0564 -Verdana_Bold.ttf 51 \ 31.6359 53.7390 107 ¥ 2.3819 38.9042 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 1 t 1.0515 24.2160 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 2 h -2.3075 32.3226 44.4239 -Verdana_Bold.ttf 52 R 41.1651 42.3111 3 a 9.1294 31.7954 34.3675 -Verdana_Bold.ttf 52 R 41.1651 42.3111 4 n 9.0303 32.3226 33.1555 -Verdana_Bold.ttf 52 R 41.1651 42.3111 5 P -0.1349 35.4165 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 6 o 9.2408 35.1202 34.3675 -Verdana_Bold.ttf 52 R 41.1651 42.3111 7 e 8.8251 33.9082 34.3675 -Verdana_Bold.ttf 52 R 41.1651 42.3111 8 : 10.3903 10.6752 31.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 9 r 10.1696 23.3151 31.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 10 l -2.1127 10.2160 44.4239 -Verdana_Bold.ttf 52 R 41.1651 42.3111 11 i -2.2377 10.2160 44.4239 -Verdana_Bold.ttf 52 R 41.1651 42.3111 12 1 -0.1316 28.7413 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 13 | -2.1872 8.4803 55.6923 -Verdana_Bold.ttf 52 R 41.1651 42.3111 14 N 0.2068 38.8363 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 15 f -2.3565 24.5271 44.4239 -Verdana_Bold.ttf 52 R 41.1651 42.3111 16 g 8.9400 33.5311 44.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 17 d -1.6279 33.5311 45.6359 -Verdana_Bold.ttf 52 R 41.1651 42.3111 18 W 0.1006 62.2208 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 19 s 9.0702 29.7391 34.3675 -Verdana_Bold.ttf 52 R 41.1651 42.3111 20 c 8.9428 29.6826 34.3675 -Verdana_Bold.ttf 52 R 41.1651 42.3111 21 u 10.3162 32.3226 33.1555 -Verdana_Bold.ttf 52 R 41.1651 42.3111 22 3 -0.9661 33.8052 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 23 ~ 13.5491 41.7840 19.3716 -Verdana_Bold.ttf 52 R 41.1651 42.3111 24 # -0.1095 41.8499 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 25 O -1.2687 43.9002 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 26 ` -5.6039 16.9477 11.2684 -Verdana_Bold.ttf 52 R 41.1651 42.3111 27 @ -1.4804 47.6808 50.1066 -Verdana_Bold.ttf 52 R 41.1651 42.3111 28 F -0.1296 30.2610 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 29 S -1.2980 36.6318 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 30 p 8.9862 33.5311 44.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 31 “ -2.1410 30.4239 16.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 32 % -1.3919 66.6496 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 33 £ -1.3374 33.7487 43.5231 -Verdana_Bold.ttf 52 R 41.1651 42.3111 34 . 31.1316 10.6752 11.2684 -Verdana_Bold.ttf 52 R 41.1651 42.3111 35 2 -1.1191 33.2780 43.5231 -Verdana_Bold.ttf 52 R 41.1651 42.3111 36 5 0.0922 33.0639 43.5231 -Verdana_Bold.ttf 52 R 41.1651 42.3111 37 m 8.7597 52.4335 33.1555 -Verdana_Bold.ttf 52 R 41.1651 42.3111 38 V 0.2533 42.3111 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 39 6 -1.4114 34.8011 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 40 w 10.3045 54.7880 31.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 41 T 0.1126 37.2507 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 42 M 0.0612 44.7331 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 43 G -1.2077 40.2643 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 44 b -2.0460 33.5311 45.6359 -Verdana_Bold.ttf 52 R 41.1651 42.3111 45 9 -1.4408 34.8011 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 46 ; 10.7063 16.5721 42.6188 -Verdana_Bold.ttf 52 R 41.1651 42.3111 47 D -0.2796 40.2643 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 48 L -0.2677 30.5721 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 49 y 10.4213 35.6325 43.5196 -Verdana_Bold.ttf 52 R 41.1651 42.3111 50 ‘ -2.1915 15.2120 16.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 51 \ -2.1469 31.6359 53.7390 -Verdana_Bold.ttf 52 R 41.1651 42.3111 52 R -0.0025 41.1651 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 53 < 4.2561 38.0564 38.0564 -Verdana_Bold.ttf 52 R 41.1651 42.3111 54 4 -0.1282 37.2216 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 55 8 -1.4350 36.2291 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 56 0 -1.0745 35.0428 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 57 A 0.1929 43.5231 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 58 E 0.0539 30.7316 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 59 B -0.2749 36.1047 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 60 v 10.2807 35.6325 31.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 61 k -2.2247 34.5835 44.4239 -Verdana_Bold.ttf 52 R 41.1651 42.3111 62 J -0.3159 26.4804 43.5231 -Verdana_Bold.ttf 52 R 41.1651 42.3111 63 U 0.0486 38.0018 43.5231 -Verdana_Bold.ttf 52 R 41.1651 42.3111 64 j -2.1095 20.5270 56.0000 -Verdana_Bold.ttf 52 R 41.1651 42.3111 65 ( -1.9754 21.2683 56.0000 -Verdana_Bold.ttf 52 R 41.1651 42.3111 66 7 0.1168 33.3716 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 67 § -1.4822 33.3731 54.7915 -Verdana_Bold.ttf 52 R 41.1651 42.3111 68 $ -2.6417 34.4240 55.1557 -Verdana_Bold.ttf 52 R 41.1651 42.3111 69 € -1.3455 38.7447 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 70 / -1.9333 31.6359 53.7390 -Verdana_Bold.ttf 52 R 41.1651 42.3111 71 C -1.1295 36.1047 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 72 * -1.9268 32.2547 29.2120 -Verdana_Bold.ttf 52 R 41.1651 42.3111 73 ” -1.8397 30.4239 16.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 74 ? -0.9878 28.4593 43.5231 -Verdana_Bold.ttf 52 R 41.1651 42.3111 75 { -2.0729 31.3248 55.6923 -Verdana_Bold.ttf 52 R 41.1651 42.3111 76 } -2.0444 31.3248 55.6923 -Verdana_Bold.ttf 52 R 41.1651 42.3111 77 , 30.9222 16.5721 21.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 78 I -0.0987 24.5157 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 79 ° -0.9135 24.0564 23.8404 -Verdana_Bold.ttf 52 R 41.1651 42.3111 80 K 0.0345 39.5761 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 81 H 0.3413 38.3656 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 82 q 9.1552 33.5311 44.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 83 & -1.2961 48.3675 44.7350 -Verdana_Bold.ttf 52 R 41.1651 42.3111 84 ’ -1.9427 15.2120 16.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 85 [ -2.4500 19.1555 55.6923 -Verdana_Bold.ttf 52 R 41.1651 42.3111 86 - 19.4587 21.9436 7.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 87 Y -0.0174 42.5237 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 88 Q -1.1984 43.9002 55.0992 -Verdana_Bold.ttf 52 R 41.1651 42.3111 89 " -2.0132 25.0523 16.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 90 ! -0.0769 11.4279 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 91 x 10.4248 36.6284 31.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 92 ) -2.1229 21.2683 56.0000 -Verdana_Bold.ttf 52 R 41.1651 42.3111 93 = 11.6395 36.4803 23.1556 -Verdana_Bold.ttf 52 R 41.1651 42.3111 94 + 4.4677 38.3675 38.3675 -Verdana_Bold.ttf 52 R 41.1651 42.3111 95 X -0.0148 42.3111 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 96 » 7.8336 35.2683 30.4239 -Verdana_Bold.ttf 52 R 41.1651 42.3111 97 ' -2.2155 9.8404 16.7316 -Verdana_Bold.ttf 52 R 41.1651 42.3111 98 ¢ 0.3054 30.9492 51.8404 -Verdana_Bold.ttf 52 R 41.1651 42.3111 99 Z -0.0514 35.7955 42.3111 -Verdana_Bold.ttf 52 R 41.1651 42.3111 100 > 4.2547 38.0564 38.0564 -Verdana_Bold.ttf 52 R 41.1651 42.3111 101 ® -1.2428 49.2683 49.2683 -Verdana_Bold.ttf 52 R 41.1651 42.3111 102 © -1.3754 49.2683 49.2683 -Verdana_Bold.ttf 52 R 41.1651 42.3111 103 ] -2.2842 19.1555 55.6923 -Verdana_Bold.ttf 52 R 41.1651 42.3111 104 é -5.4475 33.9082 48.9606 -Verdana_Bold.ttf 52 R 41.1651 42.3111 105 z 10.2288 29.7357 31.9436 -Verdana_Bold.ttf 52 R 41.1651 42.3111 106 _ 46.5267 41.6923 6.0564 -Verdana_Bold.ttf 52 R 41.1651 42.3111 107 ¥ -0.1105 38.9042 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 1 t -3.0989 24.2160 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 2 h -6.2343 32.3226 44.4239 -Verdana_Bold.ttf 53 < 38.0564 38.0564 3 a 5.1676 31.7954 34.3675 -Verdana_Bold.ttf 53 < 38.0564 38.0564 4 n 4.7178 32.3226 33.1555 -Verdana_Bold.ttf 53 < 38.0564 38.0564 5 P -4.2325 35.4165 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 6 o 4.9282 35.1202 34.3675 -Verdana_Bold.ttf 53 < 38.0564 38.0564 7 e 5.1464 33.9082 34.3675 -Verdana_Bold.ttf 53 < 38.0564 38.0564 8 : 6.2117 10.6752 31.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 9 r 6.3742 23.3151 31.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 10 l -6.4584 10.2160 44.4239 -Verdana_Bold.ttf 53 < 38.0564 38.0564 11 i -6.2869 10.2160 44.4239 -Verdana_Bold.ttf 53 < 38.0564 38.0564 12 1 -4.1394 28.7413 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 13 | -5.9508 8.4803 55.6923 -Verdana_Bold.ttf 53 < 38.0564 38.0564 14 N -4.0715 38.8363 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 15 f -6.6156 24.5271 44.4239 -Verdana_Bold.ttf 53 < 38.0564 38.0564 16 g 5.0994 33.5311 44.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 17 d -6.5417 33.5311 45.6359 -Verdana_Bold.ttf 53 < 38.0564 38.0564 18 W -4.3285 62.2208 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 19 s 5.2460 29.7391 34.3675 -Verdana_Bold.ttf 53 < 38.0564 38.0564 20 c 4.5303 29.6826 34.3675 -Verdana_Bold.ttf 53 < 38.0564 38.0564 21 u 5.8753 32.3226 33.1555 -Verdana_Bold.ttf 53 < 38.0564 38.0564 22 3 -5.6616 33.8052 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 23 ~ 9.1682 41.7840 19.3716 -Verdana_Bold.ttf 53 < 38.0564 38.0564 24 # -4.0995 41.8499 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 25 O -5.5757 43.9002 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 26 ` -9.5302 16.9477 11.2684 -Verdana_Bold.ttf 53 < 38.0564 38.0564 27 @ -5.1335 47.6808 50.1066 -Verdana_Bold.ttf 53 < 38.0564 38.0564 28 F -4.5185 30.2610 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 29 S -5.1616 36.6318 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 30 p 4.7194 33.5311 44.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 31 “ -6.4573 30.4239 16.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 32 % -5.3658 66.6496 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 33 £ -5.3379 33.7487 43.5231 -Verdana_Bold.ttf 53 < 38.0564 38.0564 34 . 26.6016 10.6752 11.2684 -Verdana_Bold.ttf 53 < 38.0564 38.0564 35 2 -5.6592 33.2780 43.5231 -Verdana_Bold.ttf 53 < 38.0564 38.0564 36 5 -4.4517 33.0639 43.5231 -Verdana_Bold.ttf 53 < 38.0564 38.0564 37 m 4.8987 52.4335 33.1555 -Verdana_Bold.ttf 53 < 38.0564 38.0564 38 V -4.3206 42.3111 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 39 6 -5.4056 34.8011 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 40 w 6.2718 54.7880 31.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 41 T -4.3464 37.2507 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 42 M -3.9467 44.7331 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 43 G -5.8036 40.2643 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 44 b -6.7051 33.5311 45.6359 -Verdana_Bold.ttf 53 < 38.0564 38.0564 45 9 -5.3148 34.8011 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 46 ; 5.8020 16.5721 42.6188 -Verdana_Bold.ttf 53 < 38.0564 38.0564 47 D -4.3226 40.2643 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 48 L -4.2831 30.5721 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 49 y 5.9090 35.6325 43.5196 -Verdana_Bold.ttf 53 < 38.0564 38.0564 50 ‘ -6.3605 15.2120 16.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 51 \ -6.1224 31.6359 53.7390 -Verdana_Bold.ttf 53 < 38.0564 38.0564 52 R -4.1767 41.1651 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 53 < -0.1806 38.0564 38.0564 -Verdana_Bold.ttf 53 < 38.0564 38.0564 54 4 -4.1547 37.2216 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 55 8 -5.5280 36.2291 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 56 0 -5.5422 35.0428 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 57 A -4.1262 43.5231 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 58 E -4.3551 30.7316 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 59 B -4.2949 36.1047 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 60 v 6.0182 35.6325 31.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 61 k -6.2825 34.5835 44.4239 -Verdana_Bold.ttf 53 < 38.0564 38.0564 62 J -4.1089 26.4804 43.5231 -Verdana_Bold.ttf 53 < 38.0564 38.0564 63 U -4.2625 38.0018 43.5231 -Verdana_Bold.ttf 53 < 38.0564 38.0564 64 j -6.3714 20.5270 56.0000 -Verdana_Bold.ttf 53 < 38.0564 38.0564 65 ( -6.1139 21.2683 56.0000 -Verdana_Bold.ttf 53 < 38.0564 38.0564 66 7 -4.5804 33.3716 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 67 § -5.3625 33.3731 54.7915 -Verdana_Bold.ttf 53 < 38.0564 38.0564 68 $ -6.9963 34.4240 55.1557 -Verdana_Bold.ttf 53 < 38.0564 38.0564 69 € -5.5839 38.7447 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 70 / -6.5203 31.6359 53.7390 -Verdana_Bold.ttf 53 < 38.0564 38.0564 71 C -5.3483 36.1047 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 72 * -6.4133 32.2547 29.2120 -Verdana_Bold.ttf 53 < 38.0564 38.0564 73 ” -6.3562 30.4239 16.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 74 ? -5.4800 28.4593 43.5231 -Verdana_Bold.ttf 53 < 38.0564 38.0564 75 { -6.4064 31.3248 55.6923 -Verdana_Bold.ttf 53 < 38.0564 38.0564 76 } -6.1720 31.3248 55.6923 -Verdana_Bold.ttf 53 < 38.0564 38.0564 77 , 26.9490 16.5721 21.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 78 I -4.1909 24.5157 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 79 ° -5.5907 24.0564 23.8404 -Verdana_Bold.ttf 53 < 38.0564 38.0564 80 K -4.4476 39.5761 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 81 H -4.1096 38.3656 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 82 q 4.6839 33.5311 44.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 83 & -5.4973 48.3675 44.7350 -Verdana_Bold.ttf 53 < 38.0564 38.0564 84 ’ -6.1835 15.2120 16.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 85 [ -6.3255 19.1555 55.6923 -Verdana_Bold.ttf 53 < 38.0564 38.0564 86 - 14.9358 21.9436 7.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 87 Y -4.4288 42.5237 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 88 Q -5.3364 43.9002 55.0992 -Verdana_Bold.ttf 53 < 38.0564 38.0564 89 " -6.4564 25.0523 16.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 90 ! -4.0466 11.4279 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 91 x 6.2387 36.6284 31.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 92 ) -6.8040 21.2683 56.0000 -Verdana_Bold.ttf 53 < 38.0564 38.0564 93 = 7.7470 36.4803 23.1556 -Verdana_Bold.ttf 53 < 38.0564 38.0564 94 + 0.3891 38.3675 38.3675 -Verdana_Bold.ttf 53 < 38.0564 38.0564 95 X -4.0657 42.3111 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 96 » 3.7683 35.2683 30.4239 -Verdana_Bold.ttf 53 < 38.0564 38.0564 97 ' -6.2119 9.8404 16.7316 -Verdana_Bold.ttf 53 < 38.0564 38.0564 98 ¢ -3.7248 30.9492 51.8404 -Verdana_Bold.ttf 53 < 38.0564 38.0564 99 Z -4.4278 35.7955 42.3111 -Verdana_Bold.ttf 53 < 38.0564 38.0564 100 > 0.0213 38.0564 38.0564 -Verdana_Bold.ttf 53 < 38.0564 38.0564 101 ® -5.4086 49.2683 49.2683 -Verdana_Bold.ttf 53 < 38.0564 38.0564 102 © -5.1884 49.2683 49.2683 -Verdana_Bold.ttf 53 < 38.0564 38.0564 103 ] -6.4169 19.1555 55.6923 -Verdana_Bold.ttf 53 < 38.0564 38.0564 104 é -9.6009 33.9082 48.9606 -Verdana_Bold.ttf 53 < 38.0564 38.0564 105 z 6.4838 29.7357 31.9436 -Verdana_Bold.ttf 53 < 38.0564 38.0564 106 _ 41.9609 41.6923 6.0564 -Verdana_Bold.ttf 53 < 38.0564 38.0564 107 ¥ -4.3896 38.9042 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 1 t 1.3113 24.2160 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 2 h -2.1415 32.3226 44.4239 -Verdana_Bold.ttf 54 4 37.2216 42.3111 3 a 8.7588 31.7954 34.3675 -Verdana_Bold.ttf 54 4 37.2216 42.3111 4 n 8.9089 32.3226 33.1555 -Verdana_Bold.ttf 54 4 37.2216 42.3111 5 P 0.3853 35.4165 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 6 o 8.9623 35.1202 34.3675 -Verdana_Bold.ttf 54 4 37.2216 42.3111 7 e 9.2911 33.9082 34.3675 -Verdana_Bold.ttf 54 4 37.2216 42.3111 8 : 10.2214 10.6752 31.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 9 r 10.5371 23.3151 31.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 10 l -2.1060 10.2160 44.4239 -Verdana_Bold.ttf 54 4 37.2216 42.3111 11 i -1.9989 10.2160 44.4239 -Verdana_Bold.ttf 54 4 37.2216 42.3111 12 1 0.0193 28.7413 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 13 | -2.0639 8.4803 55.6923 -Verdana_Bold.ttf 54 4 37.2216 42.3111 14 N 0.0148 38.8363 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 15 f -2.0999 24.5271 44.4239 -Verdana_Bold.ttf 54 4 37.2216 42.3111 16 g 9.2992 33.5311 44.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 17 d -2.1955 33.5311 45.6359 -Verdana_Bold.ttf 54 4 37.2216 42.3111 18 W -0.2822 62.2208 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 19 s 9.4247 29.7391 34.3675 -Verdana_Bold.ttf 54 4 37.2216 42.3111 20 c 8.7776 29.6826 34.3675 -Verdana_Bold.ttf 54 4 37.2216 42.3111 21 u 9.9667 32.3226 33.1555 -Verdana_Bold.ttf 54 4 37.2216 42.3111 22 3 -1.1169 33.8052 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 23 ~ 13.2718 41.7840 19.3716 -Verdana_Bold.ttf 54 4 37.2216 42.3111 24 # -0.0269 41.8499 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 25 O -1.5581 43.9002 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 26 ` -5.6729 16.9477 11.2684 -Verdana_Bold.ttf 54 4 37.2216 42.3111 27 @ -1.3201 47.6808 50.1066 -Verdana_Bold.ttf 54 4 37.2216 42.3111 28 F 0.1881 30.2610 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 29 S -1.0821 36.6318 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 30 p 9.2192 33.5311 44.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 31 “ -2.3805 30.4239 16.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 32 % -1.0100 66.6496 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 33 £ -0.7477 33.7487 43.5231 -Verdana_Bold.ttf 54 4 37.2216 42.3111 34 . 30.9406 10.6752 11.2684 -Verdana_Bold.ttf 54 4 37.2216 42.3111 35 2 -1.2613 33.2780 43.5231 -Verdana_Bold.ttf 54 4 37.2216 42.3111 36 5 0.2034 33.0639 43.5231 -Verdana_Bold.ttf 54 4 37.2216 42.3111 37 m 9.0740 52.4335 33.1555 -Verdana_Bold.ttf 54 4 37.2216 42.3111 38 V 0.0848 42.3111 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 39 6 -0.9512 34.8011 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 40 w 10.1776 54.7880 31.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 41 T 0.0088 37.2507 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 42 M 0.0842 44.7331 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 43 G -1.5622 40.2643 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 44 b -2.2068 33.5311 45.6359 -Verdana_Bold.ttf 54 4 37.2216 42.3111 45 9 -1.1303 34.8011 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 46 ; 10.4952 16.5721 42.6188 -Verdana_Bold.ttf 54 4 37.2216 42.3111 47 D 0.1760 40.2643 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 48 L -0.2187 30.5721 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 49 y 10.3993 35.6325 43.5196 -Verdana_Bold.ttf 54 4 37.2216 42.3111 50 ‘ -2.0631 15.2120 16.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 51 \ -2.0602 31.6359 53.7390 -Verdana_Bold.ttf 54 4 37.2216 42.3111 52 R 0.0427 41.1651 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 53 < 4.2435 38.0564 38.0564 -Verdana_Bold.ttf 54 4 37.2216 42.3111 54 4 0.2605 37.2216 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 55 8 -1.3745 36.2291 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 56 0 -1.2671 35.0428 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 57 A -0.1647 43.5231 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 58 E -0.0171 30.7316 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 59 B 0.1644 36.1047 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 60 v 10.6617 35.6325 31.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 61 k -2.0488 34.5835 44.4239 -Verdana_Bold.ttf 54 4 37.2216 42.3111 62 J 0.0253 26.4804 43.5231 -Verdana_Bold.ttf 54 4 37.2216 42.3111 63 U -0.0468 38.0018 43.5231 -Verdana_Bold.ttf 54 4 37.2216 42.3111 64 j -2.3070 20.5270 56.0000 -Verdana_Bold.ttf 54 4 37.2216 42.3111 65 ( -2.1885 21.2683 56.0000 -Verdana_Bold.ttf 54 4 37.2216 42.3111 66 7 0.0361 33.3716 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 67 § -1.2033 33.3731 54.7915 -Verdana_Bold.ttf 54 4 37.2216 42.3111 68 $ -2.8073 34.4240 55.1557 -Verdana_Bold.ttf 54 4 37.2216 42.3111 69 € -1.0350 38.7447 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 70 / -2.2373 31.6359 53.7390 -Verdana_Bold.ttf 54 4 37.2216 42.3111 71 C -1.3109 36.1047 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 72 * -2.1319 32.2547 29.2120 -Verdana_Bold.ttf 54 4 37.2216 42.3111 73 ” -1.8743 30.4239 16.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 74 ? -0.9371 28.4593 43.5231 -Verdana_Bold.ttf 54 4 37.2216 42.3111 75 { -2.4110 31.3248 55.6923 -Verdana_Bold.ttf 54 4 37.2216 42.3111 76 } -2.4062 31.3248 55.6923 -Verdana_Bold.ttf 54 4 37.2216 42.3111 77 , 30.9046 16.5721 21.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 78 I -0.0121 24.5157 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 79 ° -1.3182 24.0564 23.8404 -Verdana_Bold.ttf 54 4 37.2216 42.3111 80 K 0.3998 39.5761 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 81 H 0.1826 38.3656 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 82 q 9.0174 33.5311 44.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 83 & -1.2951 48.3675 44.7350 -Verdana_Bold.ttf 54 4 37.2216 42.3111 84 ’ -2.1200 15.2120 16.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 85 [ -2.2009 19.1555 55.6923 -Verdana_Bold.ttf 54 4 37.2216 42.3111 86 - 19.0365 21.9436 7.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 87 Y -0.0232 42.5237 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 88 Q -0.8883 43.9002 55.0992 -Verdana_Bold.ttf 54 4 37.2216 42.3111 89 " -2.0307 25.0523 16.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 90 ! -0.1176 11.4279 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 91 x 10.3836 36.6284 31.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 92 ) -2.3805 21.2683 56.0000 -Verdana_Bold.ttf 54 4 37.2216 42.3111 93 = 11.8910 36.4803 23.1556 -Verdana_Bold.ttf 54 4 37.2216 42.3111 94 + 4.4046 38.3675 38.3675 -Verdana_Bold.ttf 54 4 37.2216 42.3111 95 X 0.1090 42.3111 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 96 » 8.3093 35.2683 30.4239 -Verdana_Bold.ttf 54 4 37.2216 42.3111 97 ' -2.4146 9.8404 16.7316 -Verdana_Bold.ttf 54 4 37.2216 42.3111 98 ¢ 0.4158 30.9492 51.8404 -Verdana_Bold.ttf 54 4 37.2216 42.3111 99 Z 0.2310 35.7955 42.3111 -Verdana_Bold.ttf 54 4 37.2216 42.3111 100 > 4.1839 38.0564 38.0564 -Verdana_Bold.ttf 54 4 37.2216 42.3111 101 ® -1.1866 49.2683 49.2683 -Verdana_Bold.ttf 54 4 37.2216 42.3111 102 © -1.0371 49.2683 49.2683 -Verdana_Bold.ttf 54 4 37.2216 42.3111 103 ] -2.1647 19.1555 55.6923 -Verdana_Bold.ttf 54 4 37.2216 42.3111 104 é -5.4207 33.9082 48.9606 -Verdana_Bold.ttf 54 4 37.2216 42.3111 105 z 10.1895 29.7357 31.9436 -Verdana_Bold.ttf 54 4 37.2216 42.3111 106 _ 46.2620 41.6923 6.0564 -Verdana_Bold.ttf 54 4 37.2216 42.3111 107 ¥ -0.0889 38.9042 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 1 t 2.5934 24.2160 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 2 h -0.8323 32.3226 44.4239 -Verdana_Bold.ttf 55 8 36.2291 44.7350 3 a 10.4994 31.7954 34.3675 -Verdana_Bold.ttf 55 8 36.2291 44.7350 4 n 10.5794 32.3226 33.1555 -Verdana_Bold.ttf 55 8 36.2291 44.7350 5 P 1.4188 35.4165 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 6 o 10.0960 35.1202 34.3675 -Verdana_Bold.ttf 55 8 36.2291 44.7350 7 e 10.2706 33.9082 34.3675 -Verdana_Bold.ttf 55 8 36.2291 44.7350 8 : 11.5996 10.6752 31.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 9 r 11.5102 23.3151 31.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 10 l -0.7727 10.2160 44.4239 -Verdana_Bold.ttf 55 8 36.2291 44.7350 11 i -0.7010 10.2160 44.4239 -Verdana_Bold.ttf 55 8 36.2291 44.7350 12 1 1.2309 28.7413 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 13 | -0.8145 8.4803 55.6923 -Verdana_Bold.ttf 55 8 36.2291 44.7350 14 N 1.3666 38.8363 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 15 f -0.8120 24.5271 44.4239 -Verdana_Bold.ttf 55 8 36.2291 44.7350 16 g 10.1010 33.5311 44.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 17 d -0.6825 33.5311 45.6359 -Verdana_Bold.ttf 55 8 36.2291 44.7350 18 W 1.2908 62.2208 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 19 s 9.8598 29.7391 34.3675 -Verdana_Bold.ttf 55 8 36.2291 44.7350 20 c 10.2858 29.6826 34.3675 -Verdana_Bold.ttf 55 8 36.2291 44.7350 21 u 11.9059 32.3226 33.1555 -Verdana_Bold.ttf 55 8 36.2291 44.7350 22 3 -0.2572 33.8052 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 23 ~ 14.4428 41.7840 19.3716 -Verdana_Bold.ttf 55 8 36.2291 44.7350 24 # 1.4159 41.8499 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 25 O -0.0373 43.9002 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 26 ` -4.1549 16.9477 11.2684 -Verdana_Bold.ttf 55 8 36.2291 44.7350 27 @ -0.1324 47.6808 50.1066 -Verdana_Bold.ttf 55 8 36.2291 44.7350 28 F 1.5035 30.2610 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 29 S 0.1988 36.6318 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 30 p 10.4550 33.5311 44.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 31 “ -0.7325 30.4239 16.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 32 % 0.1832 66.6496 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 33 £ -0.1745 33.7487 43.5231 -Verdana_Bold.ttf 55 8 36.2291 44.7350 34 . 32.3871 10.6752 11.2684 -Verdana_Bold.ttf 55 8 36.2291 44.7350 35 2 0.1288 33.2780 43.5231 -Verdana_Bold.ttf 55 8 36.2291 44.7350 36 5 1.2095 33.0639 43.5231 -Verdana_Bold.ttf 55 8 36.2291 44.7350 37 m 10.5289 52.4335 33.1555 -Verdana_Bold.ttf 55 8 36.2291 44.7350 38 V 1.0252 42.3111 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 39 6 -0.0235 34.8011 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 40 w 11.4137 54.7880 31.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 41 T 1.1230 37.2507 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 42 M 1.1907 44.7331 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 43 G -0.0474 40.2643 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 44 b -1.0645 33.5311 45.6359 -Verdana_Bold.ttf 55 8 36.2291 44.7350 45 9 0.2028 34.8011 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 46 ; 11.7436 16.5721 42.6188 -Verdana_Bold.ttf 55 8 36.2291 44.7350 47 D 1.1014 40.2643 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 48 L 1.4129 30.5721 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 49 y 11.6165 35.6325 43.5196 -Verdana_Bold.ttf 55 8 36.2291 44.7350 50 ‘ -0.7369 15.2120 16.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 51 \ -1.2251 31.6359 53.7390 -Verdana_Bold.ttf 55 8 36.2291 44.7350 52 R 1.4581 41.1651 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 53 < 5.7312 38.0564 38.0564 -Verdana_Bold.ttf 55 8 36.2291 44.7350 54 4 0.9656 37.2216 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 55 8 -0.5870 36.2291 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 56 0 -0.0654 35.0428 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 57 A 0.9726 43.5231 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 58 E 1.2066 30.7316 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 59 B 1.4093 36.1047 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 60 v 11.3989 35.6325 31.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 61 k -0.8875 34.5835 44.4239 -Verdana_Bold.ttf 55 8 36.2291 44.7350 62 J 1.5120 26.4804 43.5231 -Verdana_Bold.ttf 55 8 36.2291 44.7350 63 U 1.2472 38.0018 43.5231 -Verdana_Bold.ttf 55 8 36.2291 44.7350 64 j -1.0158 20.5270 56.0000 -Verdana_Bold.ttf 55 8 36.2291 44.7350 65 ( -0.8583 21.2683 56.0000 -Verdana_Bold.ttf 55 8 36.2291 44.7350 66 7 1.4927 33.3716 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 67 § 0.0143 33.3731 54.7915 -Verdana_Bold.ttf 55 8 36.2291 44.7350 68 $ -1.6460 34.4240 55.1557 -Verdana_Bold.ttf 55 8 36.2291 44.7350 69 € -0.0741 38.7447 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 70 / -1.2862 31.6359 53.7390 -Verdana_Bold.ttf 55 8 36.2291 44.7350 71 C -0.1104 36.1047 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 72 * -1.1118 32.2547 29.2120 -Verdana_Bold.ttf 55 8 36.2291 44.7350 73 ” -1.0545 30.4239 16.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 74 ? 0.0457 28.4593 43.5231 -Verdana_Bold.ttf 55 8 36.2291 44.7350 75 { -0.5106 31.3248 55.6923 -Verdana_Bold.ttf 55 8 36.2291 44.7350 76 } -1.1649 31.3248 55.6923 -Verdana_Bold.ttf 55 8 36.2291 44.7350 77 , 32.3374 16.5721 21.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 78 I 1.0756 24.5157 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 79 ° -0.1758 24.0564 23.8404 -Verdana_Bold.ttf 55 8 36.2291 44.7350 80 K 0.9528 39.5761 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 81 H 1.0618 38.3656 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 82 q 10.5287 33.5311 44.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 83 & -0.0537 48.3675 44.7350 -Verdana_Bold.ttf 55 8 36.2291 44.7350 84 ’ -0.8066 15.2120 16.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 85 [ -1.0282 19.1555 55.6923 -Verdana_Bold.ttf 55 8 36.2291 44.7350 86 - 20.2753 21.9436 7.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 87 Y 1.1076 42.5237 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 88 Q -0.1740 43.9002 55.0992 -Verdana_Bold.ttf 55 8 36.2291 44.7350 89 " -0.7195 25.0523 16.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 90 ! 1.1243 11.4279 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 91 x 11.3755 36.6284 31.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 92 ) -0.7006 21.2683 56.0000 -Verdana_Bold.ttf 55 8 36.2291 44.7350 93 = 13.3360 36.4803 23.1556 -Verdana_Bold.ttf 55 8 36.2291 44.7350 94 + 5.6801 38.3675 38.3675 -Verdana_Bold.ttf 55 8 36.2291 44.7350 95 X 1.0040 42.3111 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 96 » 9.5142 35.2683 30.4239 -Verdana_Bold.ttf 55 8 36.2291 44.7350 97 ' -1.0128 9.8404 16.7316 -Verdana_Bold.ttf 55 8 36.2291 44.7350 98 ¢ 1.6086 30.9492 51.8404 -Verdana_Bold.ttf 55 8 36.2291 44.7350 99 Z 1.1346 35.7955 42.3111 -Verdana_Bold.ttf 55 8 36.2291 44.7350 100 > 5.4588 38.0564 38.0564 -Verdana_Bold.ttf 55 8 36.2291 44.7350 101 ® -0.0169 49.2683 49.2683 -Verdana_Bold.ttf 55 8 36.2291 44.7350 102 © -0.0000 49.2683 49.2683 -Verdana_Bold.ttf 55 8 36.2291 44.7350 103 ] -0.9552 19.1555 55.6923 -Verdana_Bold.ttf 55 8 36.2291 44.7350 104 é -4.2688 33.9082 48.9606 -Verdana_Bold.ttf 55 8 36.2291 44.7350 105 z 11.4453 29.7357 31.9436 -Verdana_Bold.ttf 55 8 36.2291 44.7350 106 _ 47.5831 41.6923 6.0564 -Verdana_Bold.ttf 55 8 36.2291 44.7350 107 ¥ 0.9134 38.9042 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 1 t 2.4194 24.2160 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 2 h -1.4010 32.3226 44.4239 -Verdana_Bold.ttf 56 0 35.0428 44.7350 3 a 10.1910 31.7954 34.3675 -Verdana_Bold.ttf 56 0 35.0428 44.7350 4 n 10.3808 32.3226 33.1555 -Verdana_Bold.ttf 56 0 35.0428 44.7350 5 P 1.3523 35.4165 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 6 o 10.3595 35.1202 34.3675 -Verdana_Bold.ttf 56 0 35.0428 44.7350 7 e 10.4132 33.9082 34.3675 -Verdana_Bold.ttf 56 0 35.0428 44.7350 8 : 11.7247 10.6752 31.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 9 r 11.8571 23.3151 31.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 10 l -1.1185 10.2160 44.4239 -Verdana_Bold.ttf 56 0 35.0428 44.7350 11 i -0.8526 10.2160 44.4239 -Verdana_Bold.ttf 56 0 35.0428 44.7350 12 1 1.3292 28.7413 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 13 | -0.8181 8.4803 55.6923 -Verdana_Bold.ttf 56 0 35.0428 44.7350 14 N 1.4765 38.8363 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 15 f -1.0876 24.5271 44.4239 -Verdana_Bold.ttf 56 0 35.0428 44.7350 16 g 10.6368 33.5311 44.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 17 d -1.0419 33.5311 45.6359 -Verdana_Bold.ttf 56 0 35.0428 44.7350 18 W 1.3043 62.2208 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 19 s 10.4233 29.7391 34.3675 -Verdana_Bold.ttf 56 0 35.0428 44.7350 20 c 10.2181 29.6826 34.3675 -Verdana_Bold.ttf 56 0 35.0428 44.7350 21 u 11.6959 32.3226 33.1555 -Verdana_Bold.ttf 56 0 35.0428 44.7350 22 3 0.1274 33.8052 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 23 ~ 14.7586 41.7840 19.3716 -Verdana_Bold.ttf 56 0 35.0428 44.7350 24 # 1.4142 41.8499 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 25 O 0.2718 43.9002 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 26 ` -4.2720 16.9477 11.2684 -Verdana_Bold.ttf 56 0 35.0428 44.7350 27 @ 0.3395 47.6808 50.1066 -Verdana_Bold.ttf 56 0 35.0428 44.7350 28 F 1.0732 30.2610 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 29 S -0.0123 36.6318 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 30 p 10.4260 33.5311 44.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 31 “ -0.6097 30.4239 16.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 32 % -0.2026 66.6496 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 33 £ -0.0163 33.7487 43.5231 -Verdana_Bold.ttf 56 0 35.0428 44.7350 34 . 31.7477 10.6752 11.2684 -Verdana_Bold.ttf 56 0 35.0428 44.7350 35 2 0.0342 33.2780 43.5231 -Verdana_Bold.ttf 56 0 35.0428 44.7350 36 5 0.9424 33.0639 43.5231 -Verdana_Bold.ttf 56 0 35.0428 44.7350 37 m 10.4579 52.4335 33.1555 -Verdana_Bold.ttf 56 0 35.0428 44.7350 38 V 1.4171 42.3111 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 39 6 -0.0394 34.8011 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 40 w 11.4977 54.7880 31.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 41 T 0.9610 37.2507 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 42 M 1.0947 44.7331 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 43 G 0.0500 40.2643 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 44 b -0.8023 33.5311 45.6359 -Verdana_Bold.ttf 56 0 35.0428 44.7350 45 9 -0.0263 34.8011 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 46 ; 11.7283 16.5721 42.6188 -Verdana_Bold.ttf 56 0 35.0428 44.7350 47 D 1.0751 40.2643 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 48 L 1.1303 30.5721 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 49 y 11.5318 35.6325 43.5196 -Verdana_Bold.ttf 56 0 35.0428 44.7350 50 ‘ -0.6751 15.2120 16.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 51 \ -0.5010 31.6359 53.7390 -Verdana_Bold.ttf 56 0 35.0428 44.7350 52 R 1.6331 41.1651 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 53 < 5.3944 38.0564 38.0564 -Verdana_Bold.ttf 56 0 35.0428 44.7350 54 4 1.2798 37.2216 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 55 8 0.0008 36.2291 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 56 0 0.1532 35.0428 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 57 A 1.2038 43.5231 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 58 E 1.2995 30.7316 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 59 B 1.0400 36.1047 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 60 v 11.8076 35.6325 31.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 61 k -0.7807 34.5835 44.4239 -Verdana_Bold.ttf 56 0 35.0428 44.7350 62 J 0.9085 26.4804 43.5231 -Verdana_Bold.ttf 56 0 35.0428 44.7350 63 U 1.0838 38.0018 43.5231 -Verdana_Bold.ttf 56 0 35.0428 44.7350 64 j -1.0935 20.5270 56.0000 -Verdana_Bold.ttf 56 0 35.0428 44.7350 65 ( -0.6278 21.2683 56.0000 -Verdana_Bold.ttf 56 0 35.0428 44.7350 66 7 1.0637 33.3716 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 67 § 0.0940 33.3731 54.7915 -Verdana_Bold.ttf 56 0 35.0428 44.7350 68 $ -1.5044 34.4240 55.1557 -Verdana_Bold.ttf 56 0 35.0428 44.7350 69 € 0.2562 38.7447 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 70 / -0.9599 31.6359 53.7390 -Verdana_Bold.ttf 56 0 35.0428 44.7350 71 C -0.0154 36.1047 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 72 * -0.8120 32.2547 29.2120 -Verdana_Bold.ttf 56 0 35.0428 44.7350 73 ” -0.9911 30.4239 16.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 74 ? -0.1052 28.4593 43.5231 -Verdana_Bold.ttf 56 0 35.0428 44.7350 75 { -0.8400 31.3248 55.6923 -Verdana_Bold.ttf 56 0 35.0428 44.7350 76 } -0.7836 31.3248 55.6923 -Verdana_Bold.ttf 56 0 35.0428 44.7350 77 , 32.3803 16.5721 21.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 78 I 1.3308 24.5157 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 79 ° -0.0407 24.0564 23.8404 -Verdana_Bold.ttf 56 0 35.0428 44.7350 80 K 1.1158 39.5761 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 81 H 1.2482 38.3656 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 82 q 10.6349 33.5311 44.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 83 & -0.1068 48.3675 44.7350 -Verdana_Bold.ttf 56 0 35.0428 44.7350 84 ’ -0.8584 15.2120 16.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 85 [ -0.8154 19.1555 55.6923 -Verdana_Bold.ttf 56 0 35.0428 44.7350 86 - 20.2805 21.9436 7.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 87 Y 1.4013 42.5237 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 88 Q 0.3164 43.9002 55.0992 -Verdana_Bold.ttf 56 0 35.0428 44.7350 89 " -1.0184 25.0523 16.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 90 ! 1.0332 11.4279 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 91 x 11.6449 36.6284 31.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 92 ) -0.9147 21.2683 56.0000 -Verdana_Bold.ttf 56 0 35.0428 44.7350 93 = 12.9174 36.4803 23.1556 -Verdana_Bold.ttf 56 0 35.0428 44.7350 94 + 5.8471 38.3675 38.3675 -Verdana_Bold.ttf 56 0 35.0428 44.7350 95 X 1.2128 42.3111 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 96 » 9.2935 35.2683 30.4239 -Verdana_Bold.ttf 56 0 35.0428 44.7350 97 ' -0.7120 9.8404 16.7316 -Verdana_Bold.ttf 56 0 35.0428 44.7350 98 ¢ 1.4178 30.9492 51.8404 -Verdana_Bold.ttf 56 0 35.0428 44.7350 99 Z 1.2795 35.7955 42.3111 -Verdana_Bold.ttf 56 0 35.0428 44.7350 100 > 5.6485 38.0564 38.0564 -Verdana_Bold.ttf 56 0 35.0428 44.7350 101 ® 0.3028 49.2683 49.2683 -Verdana_Bold.ttf 56 0 35.0428 44.7350 102 © 0.2498 49.2683 49.2683 -Verdana_Bold.ttf 56 0 35.0428 44.7350 103 ] -0.8115 19.1555 55.6923 -Verdana_Bold.ttf 56 0 35.0428 44.7350 104 é -4.1805 33.9082 48.9606 -Verdana_Bold.ttf 56 0 35.0428 44.7350 105 z 11.5962 29.7357 31.9436 -Verdana_Bold.ttf 56 0 35.0428 44.7350 106 _ 47.2456 41.6923 6.0564 -Verdana_Bold.ttf 56 0 35.0428 44.7350 107 ¥ 1.2451 38.9042 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 1 t 1.4329 24.2160 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 2 h -2.1560 32.3226 44.4239 -Verdana_Bold.ttf 57 A 43.5231 42.3111 3 a 9.3599 31.7954 34.3675 -Verdana_Bold.ttf 57 A 43.5231 42.3111 4 n 9.2732 32.3226 33.1555 -Verdana_Bold.ttf 57 A 43.5231 42.3111 5 P 0.2652 35.4165 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 6 o 9.0240 35.1202 34.3675 -Verdana_Bold.ttf 57 A 43.5231 42.3111 7 e 9.1199 33.9082 34.3675 -Verdana_Bold.ttf 57 A 43.5231 42.3111 8 : 10.7929 10.6752 31.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 9 r 10.5465 23.3151 31.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 10 l -2.5121 10.2160 44.4239 -Verdana_Bold.ttf 57 A 43.5231 42.3111 11 i -2.0358 10.2160 44.4239 -Verdana_Bold.ttf 57 A 43.5231 42.3111 12 1 -0.0667 28.7413 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 13 | -1.7810 8.4803 55.6923 -Verdana_Bold.ttf 57 A 43.5231 42.3111 14 N -0.0804 38.8363 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 15 f -1.8768 24.5271 44.4239 -Verdana_Bold.ttf 57 A 43.5231 42.3111 16 g 9.0830 33.5311 44.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 17 d -2.1426 33.5311 45.6359 -Verdana_Bold.ttf 57 A 43.5231 42.3111 18 W 0.4639 62.2208 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 19 s 8.9346 29.7391 34.3675 -Verdana_Bold.ttf 57 A 43.5231 42.3111 20 c 9.1179 29.6826 34.3675 -Verdana_Bold.ttf 57 A 43.5231 42.3111 21 u 10.7371 32.3226 33.1555 -Verdana_Bold.ttf 57 A 43.5231 42.3111 22 3 -1.1737 33.8052 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 23 ~ 13.0638 41.7840 19.3716 -Verdana_Bold.ttf 57 A 43.5231 42.3111 24 # 0.2187 41.8499 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 25 O -1.6171 43.9002 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 26 ` -5.2517 16.9477 11.2684 -Verdana_Bold.ttf 57 A 43.5231 42.3111 27 @ -1.1058 47.6808 50.1066 -Verdana_Bold.ttf 57 A 43.5231 42.3111 28 F 0.1217 30.2610 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 29 S -1.2951 36.6318 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 30 p 8.9044 33.5311 44.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 31 “ -2.1180 30.4239 16.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 32 % -0.8177 66.6496 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 33 £ -1.7074 33.7487 43.5231 -Verdana_Bold.ttf 57 A 43.5231 42.3111 34 . 30.9700 10.6752 11.2684 -Verdana_Bold.ttf 57 A 43.5231 42.3111 35 2 -1.2957 33.2780 43.5231 -Verdana_Bold.ttf 57 A 43.5231 42.3111 36 5 -0.4581 33.0639 43.5231 -Verdana_Bold.ttf 57 A 43.5231 42.3111 37 m 9.1466 52.4335 33.1555 -Verdana_Bold.ttf 57 A 43.5231 42.3111 38 V 0.0835 42.3111 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 39 6 -1.2656 34.8011 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 40 w 10.4796 54.7880 31.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 41 T -0.1942 37.2507 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 42 M -0.1819 44.7331 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 43 G -1.4573 40.2643 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 44 b -2.1666 33.5311 45.6359 -Verdana_Bold.ttf 57 A 43.5231 42.3111 45 9 -1.0194 34.8011 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 46 ; 10.3658 16.5721 42.6188 -Verdana_Bold.ttf 57 A 43.5231 42.3111 47 D 0.0174 40.2643 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 48 L 0.2636 30.5721 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 49 y 10.1896 35.6325 43.5196 -Verdana_Bold.ttf 57 A 43.5231 42.3111 50 ‘ -2.1338 15.2120 16.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 51 \ -2.0907 31.6359 53.7390 -Verdana_Bold.ttf 57 A 43.5231 42.3111 52 R -0.1709 41.1651 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 53 < 4.4292 38.0564 38.0564 -Verdana_Bold.ttf 57 A 43.5231 42.3111 54 4 0.1255 37.2216 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 55 8 -1.3237 36.2291 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 56 0 -1.2667 35.0428 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 57 A -0.2275 43.5231 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 58 E -0.1588 30.7316 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 59 B 0.1106 36.1047 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 60 v 10.2852 35.6325 31.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 61 k -1.7823 34.5835 44.4239 -Verdana_Bold.ttf 57 A 43.5231 42.3111 62 J 0.0275 26.4804 43.5231 -Verdana_Bold.ttf 57 A 43.5231 42.3111 63 U 0.1202 38.0018 43.5231 -Verdana_Bold.ttf 57 A 43.5231 42.3111 64 j -2.1265 20.5270 56.0000 -Verdana_Bold.ttf 57 A 43.5231 42.3111 65 ( -1.9955 21.2683 56.0000 -Verdana_Bold.ttf 57 A 43.5231 42.3111 66 7 0.4255 33.3716 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 67 § -1.2000 33.3731 54.7915 -Verdana_Bold.ttf 57 A 43.5231 42.3111 68 $ -2.6248 34.4240 55.1557 -Verdana_Bold.ttf 57 A 43.5231 42.3111 69 € -1.2453 38.7447 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 70 / -1.8533 31.6359 53.7390 -Verdana_Bold.ttf 57 A 43.5231 42.3111 71 C -0.9990 36.1047 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 72 * -1.9354 32.2547 29.2120 -Verdana_Bold.ttf 57 A 43.5231 42.3111 73 ” -1.8549 30.4239 16.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 74 ? -0.9294 28.4593 43.5231 -Verdana_Bold.ttf 57 A 43.5231 42.3111 75 { -2.3469 31.3248 55.6923 -Verdana_Bold.ttf 57 A 43.5231 42.3111 76 } -1.5825 31.3248 55.6923 -Verdana_Bold.ttf 57 A 43.5231 42.3111 77 , 30.8930 16.5721 21.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 78 I -0.3191 24.5157 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 79 ° -1.3526 24.0564 23.8404 -Verdana_Bold.ttf 57 A 43.5231 42.3111 80 K 0.0896 39.5761 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 81 H 0.0099 38.3656 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 82 q 9.3206 33.5311 44.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 83 & -1.0765 48.3675 44.7350 -Verdana_Bold.ttf 57 A 43.5231 42.3111 84 ’ -2.2673 15.2120 16.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 85 [ -2.0080 19.1555 55.6923 -Verdana_Bold.ttf 57 A 43.5231 42.3111 86 - 19.1019 21.9436 7.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 87 Y -0.1664 42.5237 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 88 Q -1.0138 43.9002 55.0992 -Verdana_Bold.ttf 57 A 43.5231 42.3111 89 " -1.9126 25.0523 16.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 90 ! -0.0262 11.4279 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 91 x 10.3077 36.6284 31.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 92 ) -2.1626 21.2683 56.0000 -Verdana_Bold.ttf 57 A 43.5231 42.3111 93 = 11.7447 36.4803 23.1556 -Verdana_Bold.ttf 57 A 43.5231 42.3111 94 + 4.4693 38.3675 38.3675 -Verdana_Bold.ttf 57 A 43.5231 42.3111 95 X 0.2072 42.3111 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 96 » 7.9591 35.2683 30.4239 -Verdana_Bold.ttf 57 A 43.5231 42.3111 97 ' -1.9050 9.8404 16.7316 -Verdana_Bold.ttf 57 A 43.5231 42.3111 98 ¢ 0.2793 30.9492 51.8404 -Verdana_Bold.ttf 57 A 43.5231 42.3111 99 Z 0.2861 35.7955 42.3111 -Verdana_Bold.ttf 57 A 43.5231 42.3111 100 > 4.5503 38.0564 38.0564 -Verdana_Bold.ttf 57 A 43.5231 42.3111 101 ® -1.0179 49.2683 49.2683 -Verdana_Bold.ttf 57 A 43.5231 42.3111 102 © -1.1584 49.2683 49.2683 -Verdana_Bold.ttf 57 A 43.5231 42.3111 103 ] -2.0560 19.1555 55.6923 -Verdana_Bold.ttf 57 A 43.5231 42.3111 104 é -5.4315 33.9082 48.9606 -Verdana_Bold.ttf 57 A 43.5231 42.3111 105 z 10.6326 29.7357 31.9436 -Verdana_Bold.ttf 57 A 43.5231 42.3111 106 _ 46.2421 41.6923 6.0564 -Verdana_Bold.ttf 57 A 43.5231 42.3111 107 ¥ -0.0875 38.9042 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 1 t 1.1905 24.2160 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 2 h -2.4119 32.3226 44.4239 -Verdana_Bold.ttf 58 E 30.7316 42.3111 3 a 9.1459 31.7954 34.3675 -Verdana_Bold.ttf 58 E 30.7316 42.3111 4 n 9.5097 32.3226 33.1555 -Verdana_Bold.ttf 58 E 30.7316 42.3111 5 P 0.3064 35.4165 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 6 o 9.1024 35.1202 34.3675 -Verdana_Bold.ttf 58 E 30.7316 42.3111 7 e 9.0254 33.9082 34.3675 -Verdana_Bold.ttf 58 E 30.7316 42.3111 8 : 10.1035 10.6752 31.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 9 r 10.2232 23.3151 31.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 10 l -2.2254 10.2160 44.4239 -Verdana_Bold.ttf 58 E 30.7316 42.3111 11 i -2.2829 10.2160 44.4239 -Verdana_Bold.ttf 58 E 30.7316 42.3111 12 1 0.1759 28.7413 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 13 | -2.3474 8.4803 55.6923 -Verdana_Bold.ttf 58 E 30.7316 42.3111 14 N 0.2009 38.8363 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 15 f -2.3540 24.5271 44.4239 -Verdana_Bold.ttf 58 E 30.7316 42.3111 16 g 9.4737 33.5311 44.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 17 d -2.4098 33.5311 45.6359 -Verdana_Bold.ttf 58 E 30.7316 42.3111 18 W 0.0492 62.2208 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 19 s 8.8778 29.7391 34.3675 -Verdana_Bold.ttf 58 E 30.7316 42.3111 20 c 8.9903 29.6826 34.3675 -Verdana_Bold.ttf 58 E 30.7316 42.3111 21 u 10.5690 32.3226 33.1555 -Verdana_Bold.ttf 58 E 30.7316 42.3111 22 3 -0.9457 33.8052 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 23 ~ 13.3316 41.7840 19.3716 -Verdana_Bold.ttf 58 E 30.7316 42.3111 24 # -0.1056 41.8499 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 25 O -1.0832 43.9002 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 26 ` -5.7220 16.9477 11.2684 -Verdana_Bold.ttf 58 E 30.7316 42.3111 27 @ -1.1754 47.6808 50.1066 -Verdana_Bold.ttf 58 E 30.7316 42.3111 28 F -0.0262 30.2610 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 29 S -1.2008 36.6318 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 30 p 9.2656 33.5311 44.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 31 “ -2.0867 30.4239 16.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 32 % -0.9593 66.6496 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 33 £ -1.3198 33.7487 43.5231 -Verdana_Bold.ttf 58 E 30.7316 42.3111 34 . 30.7074 10.6752 11.2684 -Verdana_Bold.ttf 58 E 30.7316 42.3111 35 2 -1.2317 33.2780 43.5231 -Verdana_Bold.ttf 58 E 30.7316 42.3111 36 5 0.1127 33.0639 43.5231 -Verdana_Bold.ttf 58 E 30.7316 42.3111 37 m 9.1211 52.4335 33.1555 -Verdana_Bold.ttf 58 E 30.7316 42.3111 38 V -0.3488 42.3111 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 39 6 -1.4510 34.8011 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 40 w 10.5449 54.7880 31.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 41 T -0.0669 37.2507 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 42 M 0.0494 44.7331 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 43 G -1.4013 40.2643 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 44 b -2.3280 33.5311 45.6359 -Verdana_Bold.ttf 58 E 30.7316 42.3111 45 9 -1.1237 34.8011 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 46 ; 10.3029 16.5721 42.6188 -Verdana_Bold.ttf 58 E 30.7316 42.3111 47 D -0.1922 40.2643 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 48 L -0.0496 30.5721 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 49 y 10.6504 35.6325 43.5196 -Verdana_Bold.ttf 58 E 30.7316 42.3111 50 ‘ -1.8881 15.2120 16.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 51 \ -2.2191 31.6359 53.7390 -Verdana_Bold.ttf 58 E 30.7316 42.3111 52 R 0.3997 41.1651 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 53 < 4.4599 38.0564 38.0564 -Verdana_Bold.ttf 58 E 30.7316 42.3111 54 4 -0.2138 37.2216 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 55 8 -1.2599 36.2291 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 56 0 -1.1353 35.0428 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 57 A -0.0008 43.5231 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 58 E -0.0900 30.7316 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 59 B 0.1763 36.1047 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 60 v 10.4456 35.6325 31.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 61 k -2.1632 34.5835 44.4239 -Verdana_Bold.ttf 58 E 30.7316 42.3111 62 J -0.2514 26.4804 43.5231 -Verdana_Bold.ttf 58 E 30.7316 42.3111 63 U 0.3477 38.0018 43.5231 -Verdana_Bold.ttf 58 E 30.7316 42.3111 64 j -2.2643 20.5270 56.0000 -Verdana_Bold.ttf 58 E 30.7316 42.3111 65 ( -2.2799 21.2683 56.0000 -Verdana_Bold.ttf 58 E 30.7316 42.3111 66 7 0.0370 33.3716 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 67 § -1.5457 33.3731 54.7915 -Verdana_Bold.ttf 58 E 30.7316 42.3111 68 $ -3.1299 34.4240 55.1557 -Verdana_Bold.ttf 58 E 30.7316 42.3111 69 € -1.3013 38.7447 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 70 / -1.9369 31.6359 53.7390 -Verdana_Bold.ttf 58 E 30.7316 42.3111 71 C -1.4988 36.1047 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 72 * -2.2271 32.2547 29.2120 -Verdana_Bold.ttf 58 E 30.7316 42.3111 73 ” -2.2025 30.4239 16.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 74 ? -1.1428 28.4593 43.5231 -Verdana_Bold.ttf 58 E 30.7316 42.3111 75 { -2.3609 31.3248 55.6923 -Verdana_Bold.ttf 58 E 30.7316 42.3111 76 } -2.2424 31.3248 55.6923 -Verdana_Bold.ttf 58 E 30.7316 42.3111 77 , 31.3642 16.5721 21.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 78 I -0.2401 24.5157 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 79 ° -1.1177 24.0564 23.8404 -Verdana_Bold.ttf 58 E 30.7316 42.3111 80 K -0.0638 39.5761 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 81 H 0.3957 38.3656 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 82 q 8.6751 33.5311 44.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 83 & -1.3630 48.3675 44.7350 -Verdana_Bold.ttf 58 E 30.7316 42.3111 84 ’ -2.3700 15.2120 16.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 85 [ -2.1984 19.1555 55.6923 -Verdana_Bold.ttf 58 E 30.7316 42.3111 86 - 18.9869 21.9436 7.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 87 Y -0.1111 42.5237 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 88 Q -1.1597 43.9002 55.0992 -Verdana_Bold.ttf 58 E 30.7316 42.3111 89 " -1.9873 25.0523 16.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 90 ! 0.0014 11.4279 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 91 x 10.2000 36.6284 31.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 92 ) -2.6673 21.2683 56.0000 -Verdana_Bold.ttf 58 E 30.7316 42.3111 93 = 11.5392 36.4803 23.1556 -Verdana_Bold.ttf 58 E 30.7316 42.3111 94 + 4.4693 38.3675 38.3675 -Verdana_Bold.ttf 58 E 30.7316 42.3111 95 X -0.0657 42.3111 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 96 » 8.0003 35.2683 30.4239 -Verdana_Bold.ttf 58 E 30.7316 42.3111 97 ' -2.2832 9.8404 16.7316 -Verdana_Bold.ttf 58 E 30.7316 42.3111 98 ¢ 0.2460 30.9492 51.8404 -Verdana_Bold.ttf 58 E 30.7316 42.3111 99 Z -0.0543 35.7955 42.3111 -Verdana_Bold.ttf 58 E 30.7316 42.3111 100 > 4.1633 38.0564 38.0564 -Verdana_Bold.ttf 58 E 30.7316 42.3111 101 ® -0.9243 49.2683 49.2683 -Verdana_Bold.ttf 58 E 30.7316 42.3111 102 © -1.1197 49.2683 49.2683 -Verdana_Bold.ttf 58 E 30.7316 42.3111 103 ] -2.0646 19.1555 55.6923 -Verdana_Bold.ttf 58 E 30.7316 42.3111 104 é -5.8051 33.9082 48.9606 -Verdana_Bold.ttf 58 E 30.7316 42.3111 105 z 10.5946 29.7357 31.9436 -Verdana_Bold.ttf 58 E 30.7316 42.3111 106 _ 46.2695 41.6923 6.0564 -Verdana_Bold.ttf 58 E 30.7316 42.3111 107 ¥ -0.0551 38.9042 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 1 t 1.1350 24.2160 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 2 h -1.8390 32.3226 44.4239 -Verdana_Bold.ttf 59 B 36.1047 42.3111 3 a 9.2560 31.7954 34.3675 -Verdana_Bold.ttf 59 B 36.1047 42.3111 4 n 9.2499 32.3226 33.1555 -Verdana_Bold.ttf 59 B 36.1047 42.3111 5 P 0.2064 35.4165 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 6 o 8.8832 35.1202 34.3675 -Verdana_Bold.ttf 59 B 36.1047 42.3111 7 e 9.4002 33.9082 34.3675 -Verdana_Bold.ttf 59 B 36.1047 42.3111 8 : 10.5266 10.6752 31.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 9 r 10.2122 23.3151 31.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 10 l -1.9858 10.2160 44.4239 -Verdana_Bold.ttf 59 B 36.1047 42.3111 11 i -2.0686 10.2160 44.4239 -Verdana_Bold.ttf 59 B 36.1047 42.3111 12 1 -0.0630 28.7413 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 13 | -2.1425 8.4803 55.6923 -Verdana_Bold.ttf 59 B 36.1047 42.3111 14 N -0.3291 38.8363 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 15 f -2.1610 24.5271 44.4239 -Verdana_Bold.ttf 59 B 36.1047 42.3111 16 g 9.2705 33.5311 44.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 17 d -1.8658 33.5311 45.6359 -Verdana_Bold.ttf 59 B 36.1047 42.3111 18 W -0.1332 62.2208 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 19 s 9.3748 29.7391 34.3675 -Verdana_Bold.ttf 59 B 36.1047 42.3111 20 c 9.4312 29.6826 34.3675 -Verdana_Bold.ttf 59 B 36.1047 42.3111 21 u 10.6723 32.3226 33.1555 -Verdana_Bold.ttf 59 B 36.1047 42.3111 22 3 -0.9533 33.8052 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 23 ~ 13.2922 41.7840 19.3716 -Verdana_Bold.ttf 59 B 36.1047 42.3111 24 # -0.1815 41.8499 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 25 O -0.9270 43.9002 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 26 ` -5.8823 16.9477 11.2684 -Verdana_Bold.ttf 59 B 36.1047 42.3111 27 @ -1.1230 47.6808 50.1066 -Verdana_Bold.ttf 59 B 36.1047 42.3111 28 F -0.1187 30.2610 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 29 S -1.2105 36.6318 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 30 p 9.3276 33.5311 44.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 31 “ -2.1869 30.4239 16.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 32 % -1.1798 66.6496 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 33 £ -1.4322 33.7487 43.5231 -Verdana_Bold.ttf 59 B 36.1047 42.3111 34 . 31.2644 10.6752 11.2684 -Verdana_Bold.ttf 59 B 36.1047 42.3111 35 2 -1.1388 33.2780 43.5231 -Verdana_Bold.ttf 59 B 36.1047 42.3111 36 5 -0.1695 33.0639 43.5231 -Verdana_Bold.ttf 59 B 36.1047 42.3111 37 m 8.9670 52.4335 33.1555 -Verdana_Bold.ttf 59 B 36.1047 42.3111 38 V 0.1738 42.3111 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 39 6 -1.5440 34.8011 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 40 w 10.3564 54.7880 31.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 41 T 0.1633 37.2507 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 42 M -0.0391 44.7331 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 43 G -1.2407 40.2643 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 44 b -2.6486 33.5311 45.6359 -Verdana_Bold.ttf 59 B 36.1047 42.3111 45 9 -1.3620 34.8011 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 46 ; 10.6568 16.5721 42.6188 -Verdana_Bold.ttf 59 B 36.1047 42.3111 47 D -0.0971 40.2643 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 48 L 0.1397 30.5721 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 49 y 10.2542 35.6325 43.5196 -Verdana_Bold.ttf 59 B 36.1047 42.3111 50 ‘ -2.2260 15.2120 16.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 51 \ -2.3104 31.6359 53.7390 -Verdana_Bold.ttf 59 B 36.1047 42.3111 52 R 0.2238 41.1651 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 53 < 3.8912 38.0564 38.0564 -Verdana_Bold.ttf 59 B 36.1047 42.3111 54 4 0.1929 37.2216 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 55 8 -1.2562 36.2291 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 56 0 -1.2618 35.0428 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 57 A -0.0465 43.5231 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 58 E -0.2495 30.7316 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 59 B 0.1336 36.1047 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 60 v 10.3536 35.6325 31.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 61 k -2.1218 34.5835 44.4239 -Verdana_Bold.ttf 59 B 36.1047 42.3111 62 J -0.0612 26.4804 43.5231 -Verdana_Bold.ttf 59 B 36.1047 42.3111 63 U -0.3094 38.0018 43.5231 -Verdana_Bold.ttf 59 B 36.1047 42.3111 64 j -2.1167 20.5270 56.0000 -Verdana_Bold.ttf 59 B 36.1047 42.3111 65 ( -2.3372 21.2683 56.0000 -Verdana_Bold.ttf 59 B 36.1047 42.3111 66 7 -0.1271 33.3716 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 67 § -1.1364 33.3731 54.7915 -Verdana_Bold.ttf 59 B 36.1047 42.3111 68 $ -2.4961 34.4240 55.1557 -Verdana_Bold.ttf 59 B 36.1047 42.3111 69 € -1.4297 38.7447 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 70 / -2.3182 31.6359 53.7390 -Verdana_Bold.ttf 59 B 36.1047 42.3111 71 C -1.1130 36.1047 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 72 * -2.2579 32.2547 29.2120 -Verdana_Bold.ttf 59 B 36.1047 42.3111 73 ” -2.2239 30.4239 16.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 74 ? -1.0494 28.4593 43.5231 -Verdana_Bold.ttf 59 B 36.1047 42.3111 75 { -2.0278 31.3248 55.6923 -Verdana_Bold.ttf 59 B 36.1047 42.3111 76 } -1.9586 31.3248 55.6923 -Verdana_Bold.ttf 59 B 36.1047 42.3111 77 , 31.1196 16.5721 21.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 78 I 0.0370 24.5157 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 79 ° -1.2303 24.0564 23.8404 -Verdana_Bold.ttf 59 B 36.1047 42.3111 80 K 0.3363 39.5761 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 81 H -0.2960 38.3656 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 82 q 9.4776 33.5311 44.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 83 & -0.9861 48.3675 44.7350 -Verdana_Bold.ttf 59 B 36.1047 42.3111 84 ’ -2.1322 15.2120 16.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 85 [ -2.2643 19.1555 55.6923 -Verdana_Bold.ttf 59 B 36.1047 42.3111 86 - 19.1374 21.9436 7.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 87 Y 0.0958 42.5237 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 88 Q -1.3328 43.9002 55.0992 -Verdana_Bold.ttf 59 B 36.1047 42.3111 89 " -2.1981 25.0523 16.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 90 ! -0.2231 11.4279 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 91 x 10.0528 36.6284 31.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 92 ) -1.9649 21.2683 56.0000 -Verdana_Bold.ttf 59 B 36.1047 42.3111 93 = 11.9100 36.4803 23.1556 -Verdana_Bold.ttf 59 B 36.1047 42.3111 94 + 4.4529 38.3675 38.3675 -Verdana_Bold.ttf 59 B 36.1047 42.3111 95 X -0.0582 42.3111 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 96 » 7.9186 35.2683 30.4239 -Verdana_Bold.ttf 59 B 36.1047 42.3111 97 ' -1.7105 9.8404 16.7316 -Verdana_Bold.ttf 59 B 36.1047 42.3111 98 ¢ 0.3934 30.9492 51.8404 -Verdana_Bold.ttf 59 B 36.1047 42.3111 99 Z -0.0586 35.7955 42.3111 -Verdana_Bold.ttf 59 B 36.1047 42.3111 100 > 4.3323 38.0564 38.0564 -Verdana_Bold.ttf 59 B 36.1047 42.3111 101 ® -1.1687 49.2683 49.2683 -Verdana_Bold.ttf 59 B 36.1047 42.3111 102 © -0.8525 49.2683 49.2683 -Verdana_Bold.ttf 59 B 36.1047 42.3111 103 ] -1.9999 19.1555 55.6923 -Verdana_Bold.ttf 59 B 36.1047 42.3111 104 é -5.1900 33.9082 48.9606 -Verdana_Bold.ttf 59 B 36.1047 42.3111 105 z 10.3124 29.7357 31.9436 -Verdana_Bold.ttf 59 B 36.1047 42.3111 106 _ 46.2000 41.6923 6.0564 -Verdana_Bold.ttf 59 B 36.1047 42.3111 107 ¥ 0.1759 38.9042 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 1 t -9.1352 24.2160 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 2 h -12.3558 32.3226 44.4239 -Verdana_Bold.ttf 60 v 35.6325 31.9436 3 a -1.2797 31.7954 34.3675 -Verdana_Bold.ttf 60 v 35.6325 31.9436 4 n -1.2576 32.3226 33.1555 -Verdana_Bold.ttf 60 v 35.6325 31.9436 5 P -10.4770 35.4165 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 6 o -1.2298 35.1202 34.3675 -Verdana_Bold.ttf 60 v 35.6325 31.9436 7 e -0.9192 33.9082 34.3675 -Verdana_Bold.ttf 60 v 35.6325 31.9436 8 : -0.1714 10.6752 31.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 9 r 0.1582 23.3151 31.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 10 l -12.3406 10.2160 44.4239 -Verdana_Bold.ttf 60 v 35.6325 31.9436 11 i -12.6052 10.2160 44.4239 -Verdana_Bold.ttf 60 v 35.6325 31.9436 12 1 -10.7299 28.7413 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 13 | -12.3867 8.4803 55.6923 -Verdana_Bold.ttf 60 v 35.6325 31.9436 14 N -10.0605 38.8363 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 15 f -12.2685 24.5271 44.4239 -Verdana_Bold.ttf 60 v 35.6325 31.9436 16 g -1.2436 33.5311 44.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 17 d -12.6172 33.5311 45.6359 -Verdana_Bold.ttf 60 v 35.6325 31.9436 18 W -10.2326 62.2208 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 19 s -1.3945 29.7391 34.3675 -Verdana_Bold.ttf 60 v 35.6325 31.9436 20 c -0.8804 29.6826 34.3675 -Verdana_Bold.ttf 60 v 35.6325 31.9436 21 u -0.2036 32.3226 33.1555 -Verdana_Bold.ttf 60 v 35.6325 31.9436 22 3 -11.1898 33.8052 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 23 ~ 2.7330 41.7840 19.3716 -Verdana_Bold.ttf 60 v 35.6325 31.9436 24 # -10.2744 41.8499 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 25 O -11.5073 43.9002 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 26 ` -15.9048 16.9477 11.2684 -Verdana_Bold.ttf 60 v 35.6325 31.9436 27 @ -11.6046 47.6808 50.1066 -Verdana_Bold.ttf 60 v 35.6325 31.9436 28 F -10.5286 30.2610 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 29 S -11.6891 36.6318 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 30 p -1.2195 33.5311 44.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 31 “ -12.1690 30.4239 16.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 32 % -11.5342 66.6496 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 33 £ -11.6497 33.7487 43.5231 -Verdana_Bold.ttf 60 v 35.6325 31.9436 34 . 20.8939 10.6752 11.2684 -Verdana_Bold.ttf 60 v 35.6325 31.9436 35 2 -11.3941 33.2780 43.5231 -Verdana_Bold.ttf 60 v 35.6325 31.9436 36 5 -10.2745 33.0639 43.5231 -Verdana_Bold.ttf 60 v 35.6325 31.9436 37 m -1.4099 52.4335 33.1555 -Verdana_Bold.ttf 60 v 35.6325 31.9436 38 V -10.4074 42.3111 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 39 6 -11.7808 34.8011 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 40 w -0.1695 54.7880 31.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 41 T -10.3636 37.2507 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 42 M -10.4598 44.7331 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 43 G -11.4898 40.2643 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 44 b -12.6099 33.5311 45.6359 -Verdana_Bold.ttf 60 v 35.6325 31.9436 45 9 -11.4877 34.8011 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 46 ; 0.0932 16.5721 42.6188 -Verdana_Bold.ttf 60 v 35.6325 31.9436 47 D -10.1926 40.2643 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 48 L -10.2608 30.5721 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 49 y 0.0309 35.6325 43.5196 -Verdana_Bold.ttf 60 v 35.6325 31.9436 50 ‘ -12.3951 15.2120 16.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 51 \ -12.7698 31.6359 53.7390 -Verdana_Bold.ttf 60 v 35.6325 31.9436 52 R -10.0425 41.1651 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 53 < -6.3672 38.0564 38.0564 -Verdana_Bold.ttf 60 v 35.6325 31.9436 54 4 -10.5104 37.2216 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 55 8 -11.5789 36.2291 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 56 0 -11.4878 35.0428 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 57 A -10.4042 43.5231 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 58 E -10.3215 30.7316 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 59 B -10.2826 36.1047 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 60 v 0.2144 35.6325 31.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 61 k -12.4789 34.5835 44.4239 -Verdana_Bold.ttf 60 v 35.6325 31.9436 62 J -10.3212 26.4804 43.5231 -Verdana_Bold.ttf 60 v 35.6325 31.9436 63 U -10.1956 38.0018 43.5231 -Verdana_Bold.ttf 60 v 35.6325 31.9436 64 j -12.3131 20.5270 56.0000 -Verdana_Bold.ttf 60 v 35.6325 31.9436 65 ( -12.3861 21.2683 56.0000 -Verdana_Bold.ttf 60 v 35.6325 31.9436 66 7 -10.0319 33.3716 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 67 § -11.5363 33.3731 54.7915 -Verdana_Bold.ttf 60 v 35.6325 31.9436 68 $ -13.2135 34.4240 55.1557 -Verdana_Bold.ttf 60 v 35.6325 31.9436 69 € -11.4474 38.7447 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 70 / -12.4379 31.6359 53.7390 -Verdana_Bold.ttf 60 v 35.6325 31.9436 71 C -11.3957 36.1047 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 72 * -12.3767 32.2547 29.2120 -Verdana_Bold.ttf 60 v 35.6325 31.9436 73 ” -12.3948 30.4239 16.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 74 ? -11.9442 28.4593 43.5231 -Verdana_Bold.ttf 60 v 35.6325 31.9436 75 { -12.4118 31.3248 55.6923 -Verdana_Bold.ttf 60 v 35.6325 31.9436 76 } -12.4587 31.3248 55.6923 -Verdana_Bold.ttf 60 v 35.6325 31.9436 77 , 20.3326 16.5721 21.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 78 I -10.1778 24.5157 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 79 ° -11.5741 24.0564 23.8404 -Verdana_Bold.ttf 60 v 35.6325 31.9436 80 K -10.3147 39.5761 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 81 H -10.6900 38.3656 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 82 q -1.2714 33.5311 44.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 83 & -11.4904 48.3675 44.7350 -Verdana_Bold.ttf 60 v 35.6325 31.9436 84 ’ -12.5132 15.2120 16.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 85 [ -12.4764 19.1555 55.6923 -Verdana_Bold.ttf 60 v 35.6325 31.9436 86 - 8.9440 21.9436 7.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 87 Y -10.2319 42.5237 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 88 Q -11.4831 43.9002 55.0992 -Verdana_Bold.ttf 60 v 35.6325 31.9436 89 " -12.9193 25.0523 16.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 90 ! -10.1794 11.4279 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 91 x 0.2514 36.6284 31.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 92 ) -12.2144 21.2683 56.0000 -Verdana_Bold.ttf 60 v 35.6325 31.9436 93 = 1.3052 36.4803 23.1556 -Verdana_Bold.ttf 60 v 35.6325 31.9436 94 + -6.1827 38.3675 38.3675 -Verdana_Bold.ttf 60 v 35.6325 31.9436 95 X -10.4441 42.3111 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 96 » -2.1245 35.2683 30.4239 -Verdana_Bold.ttf 60 v 35.6325 31.9436 97 ' -12.3519 9.8404 16.7316 -Verdana_Bold.ttf 60 v 35.6325 31.9436 98 ¢ -9.7044 30.9492 51.8404 -Verdana_Bold.ttf 60 v 35.6325 31.9436 99 Z -10.4147 35.7955 42.3111 -Verdana_Bold.ttf 60 v 35.6325 31.9436 100 > -5.9945 38.0564 38.0564 -Verdana_Bold.ttf 60 v 35.6325 31.9436 101 ® -11.4916 49.2683 49.2683 -Verdana_Bold.ttf 60 v 35.6325 31.9436 102 © -11.6746 49.2683 49.2683 -Verdana_Bold.ttf 60 v 35.6325 31.9436 103 ] -12.2833 19.1555 55.6923 -Verdana_Bold.ttf 60 v 35.6325 31.9436 104 é -15.7158 33.9082 48.9606 -Verdana_Bold.ttf 60 v 35.6325 31.9436 105 z 0.1792 29.7357 31.9436 -Verdana_Bold.ttf 60 v 35.6325 31.9436 106 _ 36.0629 41.6923 6.0564 -Verdana_Bold.ttf 60 v 35.6325 31.9436 107 ¥ -10.1561 38.9042 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 1 t 3.4589 24.2160 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 2 h 0.1712 32.3226 44.4239 -Verdana_Bold.ttf 61 k 34.5835 44.4239 3 a 11.2804 31.7954 34.3675 -Verdana_Bold.ttf 61 k 34.5835 44.4239 4 n 11.0521 32.3226 33.1555 -Verdana_Bold.ttf 61 k 34.5835 44.4239 5 P 2.2214 35.4165 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 6 o 11.3614 35.1202 34.3675 -Verdana_Bold.ttf 61 k 34.5835 44.4239 7 e 11.2441 33.9082 34.3675 -Verdana_Bold.ttf 61 k 34.5835 44.4239 8 : 13.1007 10.6752 31.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 9 r 12.3432 23.3151 31.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 10 l -0.1637 10.2160 44.4239 -Verdana_Bold.ttf 61 k 34.5835 44.4239 11 i 0.0399 10.2160 44.4239 -Verdana_Bold.ttf 61 k 34.5835 44.4239 12 1 2.5299 28.7413 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 13 | -0.2192 8.4803 55.6923 -Verdana_Bold.ttf 61 k 34.5835 44.4239 14 N 1.9633 38.8363 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 15 f -0.2797 24.5271 44.4239 -Verdana_Bold.ttf 61 k 34.5835 44.4239 16 g 11.3216 33.5311 44.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 17 d 0.2893 33.5311 45.6359 -Verdana_Bold.ttf 61 k 34.5835 44.4239 18 W 1.9875 62.2208 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 19 s 10.9902 29.7391 34.3675 -Verdana_Bold.ttf 61 k 34.5835 44.4239 20 c 11.3870 29.6826 34.3675 -Verdana_Bold.ttf 61 k 34.5835 44.4239 21 u 12.5721 32.3226 33.1555 -Verdana_Bold.ttf 61 k 34.5835 44.4239 22 3 0.9893 33.8052 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 23 ~ 15.5001 41.7840 19.3716 -Verdana_Bold.ttf 61 k 34.5835 44.4239 24 # 1.9546 41.8499 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 25 O 0.7832 43.9002 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 26 ` -3.4934 16.9477 11.2684 -Verdana_Bold.ttf 61 k 34.5835 44.4239 27 @ 1.0013 47.6808 50.1066 -Verdana_Bold.ttf 61 k 34.5835 44.4239 28 F 2.2418 30.2610 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 29 S 0.8066 36.6318 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 30 p 11.4128 33.5311 44.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 31 “ 0.0975 30.4239 16.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 32 % 1.2037 66.6496 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 33 £ 0.7235 33.7487 43.5231 -Verdana_Bold.ttf 61 k 34.5835 44.4239 34 . 33.3986 10.6752 11.2684 -Verdana_Bold.ttf 61 k 34.5835 44.4239 35 2 0.8561 33.2780 43.5231 -Verdana_Bold.ttf 61 k 34.5835 44.4239 36 5 1.8473 33.0639 43.5231 -Verdana_Bold.ttf 61 k 34.5835 44.4239 37 m 11.2555 52.4335 33.1555 -Verdana_Bold.ttf 61 k 34.5835 44.4239 38 V 2.1120 42.3111 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 39 6 0.8453 34.8011 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 40 w 12.1604 54.7880 31.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 41 T 2.3186 37.2507 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 42 M 2.4020 44.7331 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 43 G 0.5236 40.2643 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 44 b 0.2504 33.5311 45.6359 -Verdana_Bold.ttf 61 k 34.5835 44.4239 45 9 1.0541 34.8011 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 46 ; 12.3791 16.5721 42.6188 -Verdana_Bold.ttf 61 k 34.5835 44.4239 47 D 2.2329 40.2643 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 48 L 1.9355 30.5721 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 49 y 12.6462 35.6325 43.5196 -Verdana_Bold.ttf 61 k 34.5835 44.4239 50 ‘ -0.0519 15.2120 16.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 51 \ 0.0100 31.6359 53.7390 -Verdana_Bold.ttf 61 k 34.5835 44.4239 52 R 2.2795 41.1651 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 53 < 6.2460 38.0564 38.0564 -Verdana_Bold.ttf 61 k 34.5835 44.4239 54 4 2.0616 37.2216 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 55 8 0.9407 36.2291 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 56 0 0.8947 35.0428 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 57 A 2.0692 43.5231 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 58 E 2.2801 30.7316 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 59 B 2.0018 36.1047 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 60 v 12.2376 35.6325 31.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 61 k -0.1840 34.5835 44.4239 -Verdana_Bold.ttf 61 k 34.5835 44.4239 62 J 1.8056 26.4804 43.5231 -Verdana_Bold.ttf 61 k 34.5835 44.4239 63 U 2.1934 38.0018 43.5231 -Verdana_Bold.ttf 61 k 34.5835 44.4239 64 j -0.0943 20.5270 56.0000 -Verdana_Bold.ttf 61 k 34.5835 44.4239 65 ( -0.0391 21.2683 56.0000 -Verdana_Bold.ttf 61 k 34.5835 44.4239 66 7 2.0416 33.3716 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 67 § 0.8610 33.3731 54.7915 -Verdana_Bold.ttf 61 k 34.5835 44.4239 68 $ -0.5889 34.4240 55.1557 -Verdana_Bold.ttf 61 k 34.5835 44.4239 69 € 1.1676 38.7447 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 70 / 0.2663 31.6359 53.7390 -Verdana_Bold.ttf 61 k 34.5835 44.4239 71 C 1.1392 36.1047 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 72 * 0.1090 32.2547 29.2120 -Verdana_Bold.ttf 61 k 34.5835 44.4239 73 ” -0.1792 30.4239 16.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 74 ? 0.5458 28.4593 43.5231 -Verdana_Bold.ttf 61 k 34.5835 44.4239 75 { 0.0094 31.3248 55.6923 -Verdana_Bold.ttf 61 k 34.5835 44.4239 76 } -0.1465 31.3248 55.6923 -Verdana_Bold.ttf 61 k 34.5835 44.4239 77 , 33.0460 16.5721 21.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 78 I 2.1869 24.5157 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 79 ° 0.8802 24.0564 23.8404 -Verdana_Bold.ttf 61 k 34.5835 44.4239 80 K 2.1613 39.5761 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 81 H 1.9192 38.3656 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 82 q 11.4636 33.5311 44.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 83 & 0.8124 48.3675 44.7350 -Verdana_Bold.ttf 61 k 34.5835 44.4239 84 ’ -0.4408 15.2120 16.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 85 [ -0.3887 19.1555 55.6923 -Verdana_Bold.ttf 61 k 34.5835 44.4239 86 - 21.1305 21.9436 7.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 87 Y 1.8743 42.5237 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 88 Q 0.8937 43.9002 55.0992 -Verdana_Bold.ttf 61 k 34.5835 44.4239 89 " -0.4091 25.0523 16.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 90 ! 2.0671 11.4279 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 91 x 12.1788 36.6284 31.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 92 ) -0.0932 21.2683 56.0000 -Verdana_Bold.ttf 61 k 34.5835 44.4239 93 = 14.1785 36.4803 23.1556 -Verdana_Bold.ttf 61 k 34.5835 44.4239 94 + 6.4828 38.3675 38.3675 -Verdana_Bold.ttf 61 k 34.5835 44.4239 95 X 2.3233 42.3111 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 96 » 10.0094 35.2683 30.4239 -Verdana_Bold.ttf 61 k 34.5835 44.4239 97 ' -0.0493 9.8404 16.7316 -Verdana_Bold.ttf 61 k 34.5835 44.4239 98 ¢ 2.2036 30.9492 51.8404 -Verdana_Bold.ttf 61 k 34.5835 44.4239 99 Z 2.0333 35.7955 42.3111 -Verdana_Bold.ttf 61 k 34.5835 44.4239 100 > 6.3031 38.0564 38.0564 -Verdana_Bold.ttf 61 k 34.5835 44.4239 101 ® 0.7753 49.2683 49.2683 -Verdana_Bold.ttf 61 k 34.5835 44.4239 102 © 1.0526 49.2683 49.2683 -Verdana_Bold.ttf 61 k 34.5835 44.4239 103 ] 0.2387 19.1555 55.6923 -Verdana_Bold.ttf 61 k 34.5835 44.4239 104 é -3.3190 33.9082 48.9606 -Verdana_Bold.ttf 61 k 34.5835 44.4239 105 z 12.3508 29.7357 31.9436 -Verdana_Bold.ttf 61 k 34.5835 44.4239 106 _ 48.3156 41.6923 6.0564 -Verdana_Bold.ttf 61 k 34.5835 44.4239 107 ¥ 2.1848 38.9042 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 1 t 1.0806 24.2160 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 2 h -2.3508 32.3226 44.4239 -Verdana_Bold.ttf 62 J 26.4804 43.5231 3 a 8.9688 31.7954 34.3675 -Verdana_Bold.ttf 62 J 26.4804 43.5231 4 n 8.9540 32.3226 33.1555 -Verdana_Bold.ttf 62 J 26.4804 43.5231 5 P -0.2461 35.4165 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 6 o 9.3435 35.1202 34.3675 -Verdana_Bold.ttf 62 J 26.4804 43.5231 7 e 9.2484 33.9082 34.3675 -Verdana_Bold.ttf 62 J 26.4804 43.5231 8 : 10.1161 10.6752 31.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 9 r 10.2297 23.3151 31.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 10 l -2.3335 10.2160 44.4239 -Verdana_Bold.ttf 62 J 26.4804 43.5231 11 i -2.1987 10.2160 44.4239 -Verdana_Bold.ttf 62 J 26.4804 43.5231 12 1 -0.2593 28.7413 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 13 | -2.1817 8.4803 55.6923 -Verdana_Bold.ttf 62 J 26.4804 43.5231 14 N -0.0177 38.8363 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 15 f -2.3562 24.5271 44.4239 -Verdana_Bold.ttf 62 J 26.4804 43.5231 16 g 9.1409 33.5311 44.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 17 d -2.0348 33.5311 45.6359 -Verdana_Bold.ttf 62 J 26.4804 43.5231 18 W -0.0646 62.2208 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 19 s 9.2325 29.7391 34.3675 -Verdana_Bold.ttf 62 J 26.4804 43.5231 20 c 9.1473 29.6826 34.3675 -Verdana_Bold.ttf 62 J 26.4804 43.5231 21 u 10.2017 32.3226 33.1555 -Verdana_Bold.ttf 62 J 26.4804 43.5231 22 3 -1.2313 33.8052 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 23 ~ 13.4276 41.7840 19.3716 -Verdana_Bold.ttf 62 J 26.4804 43.5231 24 # 0.0378 41.8499 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 25 O -1.2815 43.9002 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 26 ` -5.5672 16.9477 11.2684 -Verdana_Bold.ttf 62 J 26.4804 43.5231 27 @ -0.9367 47.6808 50.1066 -Verdana_Bold.ttf 62 J 26.4804 43.5231 28 F -0.1394 30.2610 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 29 S -1.3907 36.6318 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 30 p 9.0040 33.5311 44.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 31 “ -2.0993 30.4239 16.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 32 % -1.3386 66.6496 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 33 £ -1.3459 33.7487 43.5231 -Verdana_Bold.ttf 62 J 26.4804 43.5231 34 . 30.8135 10.6752 11.2684 -Verdana_Bold.ttf 62 J 26.4804 43.5231 35 2 -1.5301 33.2780 43.5231 -Verdana_Bold.ttf 62 J 26.4804 43.5231 36 5 -0.4024 33.0639 43.5231 -Verdana_Bold.ttf 62 J 26.4804 43.5231 37 m 9.1472 52.4335 33.1555 -Verdana_Bold.ttf 62 J 26.4804 43.5231 38 V -0.1777 42.3111 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 39 6 -1.4028 34.8011 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 40 w 10.3305 54.7880 31.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 41 T 0.0675 37.2507 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 42 M -0.0911 44.7331 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 43 G -1.3063 40.2643 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 44 b -2.3208 33.5311 45.6359 -Verdana_Bold.ttf 62 J 26.4804 43.5231 45 9 -1.2148 34.8011 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 46 ; 10.5056 16.5721 42.6188 -Verdana_Bold.ttf 62 J 26.4804 43.5231 47 D 0.1162 40.2643 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 48 L -0.3007 30.5721 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 49 y 10.4500 35.6325 43.5196 -Verdana_Bold.ttf 62 J 26.4804 43.5231 50 ‘ -1.9360 15.2120 16.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 51 \ -2.0417 31.6359 53.7390 -Verdana_Bold.ttf 62 J 26.4804 43.5231 52 R -0.1638 41.1651 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 53 < 4.2339 38.0564 38.0564 -Verdana_Bold.ttf 62 J 26.4804 43.5231 54 4 -0.0396 37.2216 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 55 8 -1.1659 36.2291 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 56 0 -1.3959 35.0428 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 57 A -0.1342 43.5231 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 58 E -0.1288 30.7316 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 59 B -0.4807 36.1047 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 60 v 10.4201 35.6325 31.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 61 k -2.4146 34.5835 44.4239 -Verdana_Bold.ttf 62 J 26.4804 43.5231 62 J 0.0000 26.4804 43.5231 -Verdana_Bold.ttf 62 J 26.4804 43.5231 63 U 0.1091 38.0018 43.5231 -Verdana_Bold.ttf 62 J 26.4804 43.5231 64 j -2.0960 20.5270 56.0000 -Verdana_Bold.ttf 62 J 26.4804 43.5231 65 ( -2.1167 21.2683 56.0000 -Verdana_Bold.ttf 62 J 26.4804 43.5231 66 7 0.1670 33.3716 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 67 § -1.4270 33.3731 54.7915 -Verdana_Bold.ttf 62 J 26.4804 43.5231 68 $ -2.6029 34.4240 55.1557 -Verdana_Bold.ttf 62 J 26.4804 43.5231 69 € -1.0262 38.7447 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 70 / -2.1128 31.6359 53.7390 -Verdana_Bold.ttf 62 J 26.4804 43.5231 71 C -1.0307 36.1047 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 72 * -1.9898 32.2547 29.2120 -Verdana_Bold.ttf 62 J 26.4804 43.5231 73 ” -1.8533 30.4239 16.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 74 ? -1.5304 28.4593 43.5231 -Verdana_Bold.ttf 62 J 26.4804 43.5231 75 { -2.1870 31.3248 55.6923 -Verdana_Bold.ttf 62 J 26.4804 43.5231 76 } -2.3179 31.3248 55.6923 -Verdana_Bold.ttf 62 J 26.4804 43.5231 77 , 31.1359 16.5721 21.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 78 I -0.3835 24.5157 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 79 ° -1.2086 24.0564 23.8404 -Verdana_Bold.ttf 62 J 26.4804 43.5231 80 K 0.2522 39.5761 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 81 H 0.1436 38.3656 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 82 q 9.1716 33.5311 44.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 83 & -0.9442 48.3675 44.7350 -Verdana_Bold.ttf 62 J 26.4804 43.5231 84 ’ -2.2717 15.2120 16.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 85 [ -2.4027 19.1555 55.6923 -Verdana_Bold.ttf 62 J 26.4804 43.5231 86 - 18.9793 21.9436 7.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 87 Y 0.0763 42.5237 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 88 Q -1.1117 43.9002 55.0992 -Verdana_Bold.ttf 62 J 26.4804 43.5231 89 " -2.2506 25.0523 16.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 90 ! -0.3189 11.4279 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 91 x 10.3499 36.6284 31.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 92 ) -2.3373 21.2683 56.0000 -Verdana_Bold.ttf 62 J 26.4804 43.5231 93 = 11.8325 36.4803 23.1556 -Verdana_Bold.ttf 62 J 26.4804 43.5231 94 + 4.6797 38.3675 38.3675 -Verdana_Bold.ttf 62 J 26.4804 43.5231 95 X 0.0148 42.3111 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 96 » 8.0048 35.2683 30.4239 -Verdana_Bold.ttf 62 J 26.4804 43.5231 97 ' -1.7231 9.8404 16.7316 -Verdana_Bold.ttf 62 J 26.4804 43.5231 98 ¢ 0.6329 30.9492 51.8404 -Verdana_Bold.ttf 62 J 26.4804 43.5231 99 Z 0.1690 35.7955 42.3111 -Verdana_Bold.ttf 62 J 26.4804 43.5231 100 > 4.3245 38.0564 38.0564 -Verdana_Bold.ttf 62 J 26.4804 43.5231 101 ® -0.9446 49.2683 49.2683 -Verdana_Bold.ttf 62 J 26.4804 43.5231 102 © -1.3487 49.2683 49.2683 -Verdana_Bold.ttf 62 J 26.4804 43.5231 103 ] -2.0037 19.1555 55.6923 -Verdana_Bold.ttf 62 J 26.4804 43.5231 104 é -5.3065 33.9082 48.9606 -Verdana_Bold.ttf 62 J 26.4804 43.5231 105 z 10.6209 29.7357 31.9436 -Verdana_Bold.ttf 62 J 26.4804 43.5231 106 _ 46.1568 41.6923 6.0564 -Verdana_Bold.ttf 62 J 26.4804 43.5231 107 ¥ -0.1634 38.9042 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 1 t 1.2175 24.2160 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 2 h -2.1500 32.3226 44.4239 -Verdana_Bold.ttf 63 U 38.0018 43.5231 3 a 9.2016 31.7954 34.3675 -Verdana_Bold.ttf 63 U 38.0018 43.5231 4 n 9.2142 32.3226 33.1555 -Verdana_Bold.ttf 63 U 38.0018 43.5231 5 P 0.5061 35.4165 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 6 o 8.9336 35.1202 34.3675 -Verdana_Bold.ttf 63 U 38.0018 43.5231 7 e 9.1588 33.9082 34.3675 -Verdana_Bold.ttf 63 U 38.0018 43.5231 8 : 10.3564 10.6752 31.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 9 r 10.4201 23.3151 31.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 10 l -2.2107 10.2160 44.4239 -Verdana_Bold.ttf 63 U 38.0018 43.5231 11 i -1.8728 10.2160 44.4239 -Verdana_Bold.ttf 63 U 38.0018 43.5231 12 1 -0.0018 28.7413 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 13 | -1.9134 8.4803 55.6923 -Verdana_Bold.ttf 63 U 38.0018 43.5231 14 N -0.0021 38.8363 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 15 f -1.9714 24.5271 44.4239 -Verdana_Bold.ttf 63 U 38.0018 43.5231 16 g 9.0788 33.5311 44.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 17 d -2.4350 33.5311 45.6359 -Verdana_Bold.ttf 63 U 38.0018 43.5231 18 W -0.0260 62.2208 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 19 s 9.3380 29.7391 34.3675 -Verdana_Bold.ttf 63 U 38.0018 43.5231 20 c 9.0271 29.6826 34.3675 -Verdana_Bold.ttf 63 U 38.0018 43.5231 21 u 10.3704 32.3226 33.1555 -Verdana_Bold.ttf 63 U 38.0018 43.5231 22 3 -1.3710 33.8052 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 23 ~ 13.4439 41.7840 19.3716 -Verdana_Bold.ttf 63 U 38.0018 43.5231 24 # 0.0212 41.8499 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 25 O -1.0029 43.9002 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 26 ` -5.7721 16.9477 11.2684 -Verdana_Bold.ttf 63 U 38.0018 43.5231 27 @ -1.1638 47.6808 50.1066 -Verdana_Bold.ttf 63 U 38.0018 43.5231 28 F 0.2013 30.2610 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 29 S -1.3048 36.6318 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 30 p 9.0148 33.5311 44.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 31 “ -1.7483 30.4239 16.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 32 % -1.6009 66.6496 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 33 £ -1.5192 33.7487 43.5231 -Verdana_Bold.ttf 63 U 38.0018 43.5231 34 . 30.8104 10.6752 11.2684 -Verdana_Bold.ttf 63 U 38.0018 43.5231 35 2 -1.3498 33.2780 43.5231 -Verdana_Bold.ttf 63 U 38.0018 43.5231 36 5 0.0620 33.0639 43.5231 -Verdana_Bold.ttf 63 U 38.0018 43.5231 37 m 9.2482 52.4335 33.1555 -Verdana_Bold.ttf 63 U 38.0018 43.5231 38 V 0.1441 42.3111 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 39 6 -1.3048 34.8011 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 40 w 10.5097 54.7880 31.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 41 T 0.0544 37.2507 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 42 M 0.0976 44.7331 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 43 G -1.4591 40.2643 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 44 b -1.9614 33.5311 45.6359 -Verdana_Bold.ttf 63 U 38.0018 43.5231 45 9 -0.8851 34.8011 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 46 ; 10.2993 16.5721 42.6188 -Verdana_Bold.ttf 63 U 38.0018 43.5231 47 D 0.2007 40.2643 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 48 L -0.0790 30.5721 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 49 y 10.6466 35.6325 43.5196 -Verdana_Bold.ttf 63 U 38.0018 43.5231 50 ‘ -1.9915 15.2120 16.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 51 \ -2.3258 31.6359 53.7390 -Verdana_Bold.ttf 63 U 38.0018 43.5231 52 R 0.0506 41.1651 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 53 < 4.6756 38.0564 38.0564 -Verdana_Bold.ttf 63 U 38.0018 43.5231 54 4 0.1840 37.2216 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 55 8 -1.3133 36.2291 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 56 0 -1.2091 35.0428 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 57 A -0.2144 43.5231 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 58 E 0.0773 30.7316 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 59 B 0.1692 36.1047 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 60 v 10.3442 35.6325 31.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 61 k -2.4612 34.5835 44.4239 -Verdana_Bold.ttf 63 U 38.0018 43.5231 62 J 0.1684 26.4804 43.5231 -Verdana_Bold.ttf 63 U 38.0018 43.5231 63 U -0.1195 38.0018 43.5231 -Verdana_Bold.ttf 63 U 38.0018 43.5231 64 j -2.0652 20.5270 56.0000 -Verdana_Bold.ttf 63 U 38.0018 43.5231 65 ( -2.2329 21.2683 56.0000 -Verdana_Bold.ttf 63 U 38.0018 43.5231 66 7 0.4162 33.3716 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 67 § -1.3648 33.3731 54.7915 -Verdana_Bold.ttf 63 U 38.0018 43.5231 68 $ -2.5060 34.4240 55.1557 -Verdana_Bold.ttf 63 U 38.0018 43.5231 69 € -1.4365 38.7447 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 70 / -2.0490 31.6359 53.7390 -Verdana_Bold.ttf 63 U 38.0018 43.5231 71 C -1.0505 36.1047 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 72 * -2.1737 32.2547 29.2120 -Verdana_Bold.ttf 63 U 38.0018 43.5231 73 ” -2.1451 30.4239 16.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 74 ? -1.3879 28.4593 43.5231 -Verdana_Bold.ttf 63 U 38.0018 43.5231 75 { -2.4346 31.3248 55.6923 -Verdana_Bold.ttf 63 U 38.0018 43.5231 76 } -1.8165 31.3248 55.6923 -Verdana_Bold.ttf 63 U 38.0018 43.5231 77 , 31.3133 16.5721 21.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 78 I 0.2468 24.5157 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 79 ° -1.1188 24.0564 23.8404 -Verdana_Bold.ttf 63 U 38.0018 43.5231 80 K 0.1124 39.5761 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 81 H -0.1821 38.3656 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 82 q 8.8759 33.5311 44.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 83 & -1.2031 48.3675 44.7350 -Verdana_Bold.ttf 63 U 38.0018 43.5231 84 ’ -1.8792 15.2120 16.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 85 [ -2.2805 19.1555 55.6923 -Verdana_Bold.ttf 63 U 38.0018 43.5231 86 - 19.2315 21.9436 7.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 87 Y -0.0778 42.5237 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 88 Q -1.3201 43.9002 55.0992 -Verdana_Bold.ttf 63 U 38.0018 43.5231 89 " -2.0740 25.0523 16.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 90 ! -0.2675 11.4279 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 91 x 10.2408 36.6284 31.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 92 ) -1.9688 21.2683 56.0000 -Verdana_Bold.ttf 63 U 38.0018 43.5231 93 = 11.2802 36.4803 23.1556 -Verdana_Bold.ttf 63 U 38.0018 43.5231 94 + 4.2788 38.3675 38.3675 -Verdana_Bold.ttf 63 U 38.0018 43.5231 95 X -0.0104 42.3111 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 96 » 7.7548 35.2683 30.4239 -Verdana_Bold.ttf 63 U 38.0018 43.5231 97 ' -1.9583 9.8404 16.7316 -Verdana_Bold.ttf 63 U 38.0018 43.5231 98 ¢ 0.3132 30.9492 51.8404 -Verdana_Bold.ttf 63 U 38.0018 43.5231 99 Z -0.0935 35.7955 42.3111 -Verdana_Bold.ttf 63 U 38.0018 43.5231 100 > 4.2575 38.0564 38.0564 -Verdana_Bold.ttf 63 U 38.0018 43.5231 101 ® -1.4021 49.2683 49.2683 -Verdana_Bold.ttf 63 U 38.0018 43.5231 102 © -0.9282 49.2683 49.2683 -Verdana_Bold.ttf 63 U 38.0018 43.5231 103 ] -1.7776 19.1555 55.6923 -Verdana_Bold.ttf 63 U 38.0018 43.5231 104 é -5.4342 33.9082 48.9606 -Verdana_Bold.ttf 63 U 38.0018 43.5231 105 z 10.6023 29.7357 31.9436 -Verdana_Bold.ttf 63 U 38.0018 43.5231 106 _ 46.2744 41.6923 6.0564 -Verdana_Bold.ttf 63 U 38.0018 43.5231 107 ¥ 0.0455 38.9042 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 1 t 3.2359 24.2160 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 2 h 0.1701 32.3226 44.4239 -Verdana_Bold.ttf 64 j 20.5270 56.0000 3 a 11.5044 31.7954 34.3675 -Verdana_Bold.ttf 64 j 20.5270 56.0000 4 n 11.1123 32.3226 33.1555 -Verdana_Bold.ttf 64 j 20.5270 56.0000 5 P 2.0023 35.4165 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 6 o 11.3800 35.1202 34.3675 -Verdana_Bold.ttf 64 j 20.5270 56.0000 7 e 11.1896 33.9082 34.3675 -Verdana_Bold.ttf 64 j 20.5270 56.0000 8 : 12.3368 10.6752 31.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 9 r 12.7182 23.3151 31.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 10 l 0.0576 10.2160 44.4239 -Verdana_Bold.ttf 64 j 20.5270 56.0000 11 i 0.0025 10.2160 44.4239 -Verdana_Bold.ttf 64 j 20.5270 56.0000 12 1 2.1694 28.7413 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 13 | -0.3173 8.4803 55.6923 -Verdana_Bold.ttf 64 j 20.5270 56.0000 14 N 1.7523 38.8363 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 15 f 0.3372 24.5271 44.4239 -Verdana_Bold.ttf 64 j 20.5270 56.0000 16 g 11.4261 33.5311 44.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 17 d 0.0370 33.5311 45.6359 -Verdana_Bold.ttf 64 j 20.5270 56.0000 18 W 2.1187 62.2208 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 19 s 11.1317 29.7391 34.3675 -Verdana_Bold.ttf 64 j 20.5270 56.0000 20 c 11.4259 29.6826 34.3675 -Verdana_Bold.ttf 64 j 20.5270 56.0000 21 u 12.3563 32.3226 33.1555 -Verdana_Bold.ttf 64 j 20.5270 56.0000 22 3 0.8796 33.8052 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 23 ~ 15.3630 41.7840 19.3716 -Verdana_Bold.ttf 64 j 20.5270 56.0000 24 # 2.1913 41.8499 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 25 O 0.7634 43.9002 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 26 ` -3.0445 16.9477 11.2684 -Verdana_Bold.ttf 64 j 20.5270 56.0000 27 @ 0.7202 47.6808 50.1066 -Verdana_Bold.ttf 64 j 20.5270 56.0000 28 F 2.3852 30.2610 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 29 S 0.6331 36.6318 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 30 p 11.4538 33.5311 44.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 31 “ -0.2612 30.4239 16.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 32 % 0.8605 66.6496 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 33 £ 1.3179 33.7487 43.5231 -Verdana_Bold.ttf 64 j 20.5270 56.0000 34 . 32.9051 10.6752 11.2684 -Verdana_Bold.ttf 64 j 20.5270 56.0000 35 2 0.8860 33.2780 43.5231 -Verdana_Bold.ttf 64 j 20.5270 56.0000 36 5 1.8107 33.0639 43.5231 -Verdana_Bold.ttf 64 j 20.5270 56.0000 37 m 11.2684 52.4335 33.1555 -Verdana_Bold.ttf 64 j 20.5270 56.0000 38 V 1.8364 42.3111 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 39 6 1.0009 34.8011 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 40 w 12.5160 54.7880 31.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 41 T 1.8724 37.2507 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 42 M 1.9715 44.7331 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 43 G 0.8037 40.2643 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 44 b -0.1560 33.5311 45.6359 -Verdana_Bold.ttf 64 j 20.5270 56.0000 45 9 0.5592 34.8011 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 46 ; 12.6083 16.5721 42.6188 -Verdana_Bold.ttf 64 j 20.5270 56.0000 47 D 2.1049 40.2643 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 48 L 1.9368 30.5721 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 49 y 12.5250 35.6325 43.5196 -Verdana_Bold.ttf 64 j 20.5270 56.0000 50 ‘ -0.3268 15.2120 16.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 51 \ -0.0432 31.6359 53.7390 -Verdana_Bold.ttf 64 j 20.5270 56.0000 52 R 2.4673 41.1651 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 53 < 6.5136 38.0564 38.0564 -Verdana_Bold.ttf 64 j 20.5270 56.0000 54 4 2.1153 37.2216 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 55 8 1.0358 36.2291 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 56 0 0.6914 35.0428 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 57 A 1.9840 43.5231 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 58 E 2.1390 30.7316 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 59 B 1.9858 36.1047 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 60 v 12.6433 35.6325 31.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 61 k 0.0519 34.5835 44.4239 -Verdana_Bold.ttf 64 j 20.5270 56.0000 62 J 2.2887 26.4804 43.5231 -Verdana_Bold.ttf 64 j 20.5270 56.0000 63 U 1.9927 38.0018 43.5231 -Verdana_Bold.ttf 64 j 20.5270 56.0000 64 j 0.2350 20.5270 56.0000 -Verdana_Bold.ttf 64 j 20.5270 56.0000 65 ( -0.1066 21.2683 56.0000 -Verdana_Bold.ttf 64 j 20.5270 56.0000 66 7 2.1159 33.3716 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 67 § 1.0869 33.3731 54.7915 -Verdana_Bold.ttf 64 j 20.5270 56.0000 68 $ -0.6840 34.4240 55.1557 -Verdana_Bold.ttf 64 j 20.5270 56.0000 69 € 1.2196 38.7447 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 70 / 0.1313 31.6359 53.7390 -Verdana_Bold.ttf 64 j 20.5270 56.0000 71 C 0.7721 36.1047 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 72 * 0.2757 32.2547 29.2120 -Verdana_Bold.ttf 64 j 20.5270 56.0000 73 ” -0.1704 30.4239 16.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 74 ? 0.9887 28.4593 43.5231 -Verdana_Bold.ttf 64 j 20.5270 56.0000 75 { 0.1321 31.3248 55.6923 -Verdana_Bold.ttf 64 j 20.5270 56.0000 76 } -0.2978 31.3248 55.6923 -Verdana_Bold.ttf 64 j 20.5270 56.0000 77 , 33.1689 16.5721 21.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 78 I 2.0610 24.5157 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 79 ° 0.7432 24.0564 23.8404 -Verdana_Bold.ttf 64 j 20.5270 56.0000 80 K 1.8292 39.5761 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 81 H 1.9470 38.3656 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 82 q 11.5553 33.5311 44.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 83 & 0.9075 48.3675 44.7350 -Verdana_Bold.ttf 64 j 20.5270 56.0000 84 ’ 0.1037 15.2120 16.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 85 [ -0.0943 19.1555 55.6923 -Verdana_Bold.ttf 64 j 20.5270 56.0000 86 - 21.0311 21.9436 7.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 87 Y 1.5749 42.5237 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 88 Q 1.0006 43.9002 55.0992 -Verdana_Bold.ttf 64 j 20.5270 56.0000 89 " 0.0094 25.0523 16.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 90 ! 2.0329 11.4279 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 91 x 12.5377 36.6284 31.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 92 ) -0.0006 21.2683 56.0000 -Verdana_Bold.ttf 64 j 20.5270 56.0000 93 = 14.0500 36.4803 23.1556 -Verdana_Bold.ttf 64 j 20.5270 56.0000 94 + 6.6764 38.3675 38.3675 -Verdana_Bold.ttf 64 j 20.5270 56.0000 95 X 2.1218 42.3111 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 96 » 10.0938 35.2683 30.4239 -Verdana_Bold.ttf 64 j 20.5270 56.0000 97 ' 0.2206 9.8404 16.7316 -Verdana_Bold.ttf 64 j 20.5270 56.0000 98 ¢ 2.1920 30.9492 51.8404 -Verdana_Bold.ttf 64 j 20.5270 56.0000 99 Z 2.1554 35.7955 42.3111 -Verdana_Bold.ttf 64 j 20.5270 56.0000 100 > 6.5772 38.0564 38.0564 -Verdana_Bold.ttf 64 j 20.5270 56.0000 101 ® 1.0190 49.2683 49.2683 -Verdana_Bold.ttf 64 j 20.5270 56.0000 102 © 0.9738 49.2683 49.2683 -Verdana_Bold.ttf 64 j 20.5270 56.0000 103 ] -0.4463 19.1555 55.6923 -Verdana_Bold.ttf 64 j 20.5270 56.0000 104 é -3.3194 33.9082 48.9606 -Verdana_Bold.ttf 64 j 20.5270 56.0000 105 z 11.9579 29.7357 31.9436 -Verdana_Bold.ttf 64 j 20.5270 56.0000 106 _ 48.3566 41.6923 6.0564 -Verdana_Bold.ttf 64 j 20.5270 56.0000 107 ¥ 1.9268 38.9042 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 1 t 3.2175 24.2160 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 2 h 0.2543 32.3226 44.4239 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 3 a 11.1519 31.7954 34.3675 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 4 n 11.2488 32.3226 33.1555 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 5 P 2.1508 35.4165 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 6 o 11.2017 35.1202 34.3675 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 7 e 11.2758 33.9082 34.3675 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 8 : 12.5155 10.6752 31.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 9 r 12.4669 23.3151 31.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 10 l 0.1408 10.2160 44.4239 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 11 i 0.2678 10.2160 44.4239 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 12 1 2.2137 28.7413 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 13 | 0.1901 8.4803 55.6923 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 14 N 2.1704 38.8363 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 15 f -0.1477 24.5271 44.4239 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 16 g 11.2433 33.5311 44.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 17 d -0.0544 33.5311 45.6359 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 18 W 2.1842 62.2208 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 19 s 11.2122 29.7391 34.3675 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 20 c 11.2602 29.6826 34.3675 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 21 u 12.2760 32.3226 33.1555 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 22 3 0.8058 33.8052 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 23 ~ 15.3611 41.7840 19.3716 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 24 # 2.0951 41.8499 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 25 O 0.8066 43.9002 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 26 ` -3.2751 16.9477 11.2684 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 27 @ 1.3126 47.6808 50.1066 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 28 F 2.1435 30.2610 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 29 S 1.0628 36.6318 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 30 p 11.0225 33.5311 44.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 31 “ 0.0073 30.4239 16.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 32 % 0.9480 66.6496 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 33 £ 0.8288 33.7487 43.5231 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 34 . 33.0083 10.6752 11.2684 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 35 2 0.7735 33.2780 43.5231 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 36 5 2.1527 33.0639 43.5231 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 37 m 11.1347 52.4335 33.1555 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 38 V 1.8836 42.3111 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 39 6 0.9008 34.8011 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 40 w 12.4796 54.7880 31.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 41 T 2.2441 37.2507 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 42 M 2.2082 44.7331 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 43 G 1.0408 40.2643 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 44 b 0.1800 33.5311 45.6359 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 45 9 0.7586 34.8011 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 46 ; 12.4136 16.5721 42.6188 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 47 D 1.9687 40.2643 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 48 L 2.2416 30.5721 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 49 y 12.4199 35.6325 43.5196 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 50 ‘ 0.5114 15.2120 16.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 51 \ 0.0796 31.6359 53.7390 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 52 R 1.6399 41.1651 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 53 < 6.1633 38.0564 38.0564 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 54 4 2.0584 37.2216 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 55 8 0.8276 36.2291 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 56 0 0.9546 35.0428 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 57 A 1.9235 43.5231 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 58 E 2.0518 30.7316 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 59 B 2.3143 36.1047 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 60 v 12.6401 35.6325 31.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 61 k 0.1345 34.5835 44.4239 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 62 J 2.3359 26.4804 43.5231 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 63 U 2.1676 38.0018 43.5231 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 64 j 0.1842 20.5270 56.0000 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 65 ( 0.1331 21.2683 56.0000 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 66 7 1.9559 33.3716 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 67 § 0.9912 33.3731 54.7915 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 68 $ -0.6413 34.4240 55.1557 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 69 € 1.0330 38.7447 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 70 / 0.2076 31.6359 53.7390 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 71 C 0.8211 36.1047 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 72 * -0.0741 32.2547 29.2120 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 73 ” 0.1349 30.4239 16.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 74 ? 0.7641 28.4593 43.5231 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 75 { 0.1515 31.3248 55.6923 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 76 } -0.0547 31.3248 55.6923 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 77 , 33.2296 16.5721 21.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 78 I 2.3086 24.5157 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 79 ° 1.1508 24.0564 23.8404 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 80 K 1.8675 39.5761 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 81 H 2.2065 38.3656 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 82 q 11.0109 33.5311 44.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 83 & 0.8918 48.3675 44.7350 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 84 ’ 0.0572 15.2120 16.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 85 [ -0.1630 19.1555 55.6923 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 86 - 21.4119 21.9436 7.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 87 Y 2.2517 42.5237 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 88 Q 1.1163 43.9002 55.0992 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 89 " -0.0410 25.0523 16.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 90 ! 2.0965 11.4279 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 91 x 12.5100 36.6284 31.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 92 ) 0.2149 21.2683 56.0000 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 93 = 13.6550 36.4803 23.1556 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 94 + 6.5173 38.3675 38.3675 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 95 X 1.9960 42.3111 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 96 » 10.3884 35.2683 30.4239 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 97 ' 0.3418 9.8404 16.7316 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 98 ¢ 2.3221 30.9492 51.8404 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 99 Z 2.1749 35.7955 42.3111 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 100 > 6.5223 38.0564 38.0564 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 101 ® 0.9944 49.2683 49.2683 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 102 © 1.0692 49.2683 49.2683 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 103 ] 0.3817 19.1555 55.6923 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 104 é -3.4668 33.9082 48.9606 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 105 z 12.4796 29.7357 31.9436 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 106 _ 48.5815 41.6923 6.0564 -Verdana_Bold.ttf 65 ( 21.2683 56.0000 107 ¥ 2.1103 38.9042 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 1 t 1.1486 24.2160 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 2 h -2.3729 32.3226 44.4239 -Verdana_Bold.ttf 66 7 33.3716 42.3111 3 a 9.0555 31.7954 34.3675 -Verdana_Bold.ttf 66 7 33.3716 42.3111 4 n 8.9383 32.3226 33.1555 -Verdana_Bold.ttf 66 7 33.3716 42.3111 5 P -0.1169 35.4165 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 6 o 9.1462 35.1202 34.3675 -Verdana_Bold.ttf 66 7 33.3716 42.3111 7 e 8.8879 33.9082 34.3675 -Verdana_Bold.ttf 66 7 33.3716 42.3111 8 : 10.5195 10.6752 31.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 9 r 10.5643 23.3151 31.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 10 l -1.7152 10.2160 44.4239 -Verdana_Bold.ttf 66 7 33.3716 42.3111 11 i -2.4778 10.2160 44.4239 -Verdana_Bold.ttf 66 7 33.3716 42.3111 12 1 -0.1936 28.7413 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 13 | -2.4813 8.4803 55.6923 -Verdana_Bold.ttf 66 7 33.3716 42.3111 14 N 0.0233 38.8363 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 15 f -2.1119 24.5271 44.4239 -Verdana_Bold.ttf 66 7 33.3716 42.3111 16 g 9.2086 33.5311 44.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 17 d -2.0541 33.5311 45.6359 -Verdana_Bold.ttf 66 7 33.3716 42.3111 18 W 0.0208 62.2208 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 19 s 9.6867 29.7391 34.3675 -Verdana_Bold.ttf 66 7 33.3716 42.3111 20 c 9.0148 29.6826 34.3675 -Verdana_Bold.ttf 66 7 33.3716 42.3111 21 u 10.3450 32.3226 33.1555 -Verdana_Bold.ttf 66 7 33.3716 42.3111 22 3 -1.1158 33.8052 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 23 ~ 13.2186 41.7840 19.3716 -Verdana_Bold.ttf 66 7 33.3716 42.3111 24 # 0.0068 41.8499 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 25 O -0.8553 43.9002 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 26 ` -5.4836 16.9477 11.2684 -Verdana_Bold.ttf 66 7 33.3716 42.3111 27 @ -1.3243 47.6808 50.1066 -Verdana_Bold.ttf 66 7 33.3716 42.3111 28 F -0.0138 30.2610 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 29 S -1.1140 36.6318 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 30 p 8.9852 33.5311 44.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 31 “ -1.7722 30.4239 16.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 32 % -1.1012 66.6496 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 33 £ -1.4191 33.7487 43.5231 -Verdana_Bold.ttf 66 7 33.3716 42.3111 34 . 31.0908 10.6752 11.2684 -Verdana_Bold.ttf 66 7 33.3716 42.3111 35 2 -1.2198 33.2780 43.5231 -Verdana_Bold.ttf 66 7 33.3716 42.3111 36 5 -0.1173 33.0639 43.5231 -Verdana_Bold.ttf 66 7 33.3716 42.3111 37 m 8.9782 52.4335 33.1555 -Verdana_Bold.ttf 66 7 33.3716 42.3111 38 V 0.1234 42.3111 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 39 6 -1.2922 34.8011 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 40 w 10.2085 54.7880 31.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 41 T 0.0535 37.2507 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 42 M 0.0719 44.7331 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 43 G -0.7672 40.2643 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 44 b -1.9455 33.5311 45.6359 -Verdana_Bold.ttf 66 7 33.3716 42.3111 45 9 -1.0430 34.8011 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 46 ; 10.4546 16.5721 42.6188 -Verdana_Bold.ttf 66 7 33.3716 42.3111 47 D 0.1508 40.2643 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 48 L 0.4466 30.5721 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 49 y 10.2280 35.6325 43.5196 -Verdana_Bold.ttf 66 7 33.3716 42.3111 50 ‘ -2.1546 15.2120 16.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 51 \ -1.9414 31.6359 53.7390 -Verdana_Bold.ttf 66 7 33.3716 42.3111 52 R -0.3580 41.1651 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 53 < 4.0381 38.0564 38.0564 -Verdana_Bold.ttf 66 7 33.3716 42.3111 54 4 -0.1425 37.2216 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 55 8 -1.0259 36.2291 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 56 0 -1.3566 35.0428 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 57 A 0.0095 43.5231 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 58 E 0.1550 30.7316 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 59 B -0.2350 36.1047 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 60 v 10.3037 35.6325 31.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 61 k -2.3870 34.5835 44.4239 -Verdana_Bold.ttf 66 7 33.3716 42.3111 62 J -0.0222 26.4804 43.5231 -Verdana_Bold.ttf 66 7 33.3716 42.3111 63 U 0.0528 38.0018 43.5231 -Verdana_Bold.ttf 66 7 33.3716 42.3111 64 j -2.3203 20.5270 56.0000 -Verdana_Bold.ttf 66 7 33.3716 42.3111 65 ( -2.0947 21.2683 56.0000 -Verdana_Bold.ttf 66 7 33.3716 42.3111 66 7 -0.1432 33.3716 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 67 § -1.2783 33.3731 54.7915 -Verdana_Bold.ttf 66 7 33.3716 42.3111 68 $ -2.4816 34.4240 55.1557 -Verdana_Bold.ttf 66 7 33.3716 42.3111 69 € -1.2399 38.7447 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 70 / -2.2412 31.6359 53.7390 -Verdana_Bold.ttf 66 7 33.3716 42.3111 71 C -1.2028 36.1047 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 72 * -2.2696 32.2547 29.2120 -Verdana_Bold.ttf 66 7 33.3716 42.3111 73 ” -2.0219 30.4239 16.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 74 ? -1.0463 28.4593 43.5231 -Verdana_Bold.ttf 66 7 33.3716 42.3111 75 { -2.2847 31.3248 55.6923 -Verdana_Bold.ttf 66 7 33.3716 42.3111 76 } -1.9820 31.3248 55.6923 -Verdana_Bold.ttf 66 7 33.3716 42.3111 77 , 31.0277 16.5721 21.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 78 I -0.1422 24.5157 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 79 ° -1.2312 24.0564 23.8404 -Verdana_Bold.ttf 66 7 33.3716 42.3111 80 K 0.0431 39.5761 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 81 H -0.0809 38.3656 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 82 q 8.9858 33.5311 44.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 83 & -1.2126 48.3675 44.7350 -Verdana_Bold.ttf 66 7 33.3716 42.3111 84 ’ -2.2684 15.2120 16.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 85 [ -1.7591 19.1555 55.6923 -Verdana_Bold.ttf 66 7 33.3716 42.3111 86 - 19.0720 21.9436 7.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 87 Y 0.1698 42.5237 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 88 Q -1.2465 43.9002 55.0992 -Verdana_Bold.ttf 66 7 33.3716 42.3111 89 " -1.9373 25.0523 16.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 90 ! 0.1091 11.4279 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 91 x 10.2739 36.6284 31.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 92 ) -2.2506 21.2683 56.0000 -Verdana_Bold.ttf 66 7 33.3716 42.3111 93 = 11.9003 36.4803 23.1556 -Verdana_Bold.ttf 66 7 33.3716 42.3111 94 + 4.7900 38.3675 38.3675 -Verdana_Bold.ttf 66 7 33.3716 42.3111 95 X 0.1023 42.3111 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 96 » 8.0538 35.2683 30.4239 -Verdana_Bold.ttf 66 7 33.3716 42.3111 97 ' -2.1355 9.8404 16.7316 -Verdana_Bold.ttf 66 7 33.3716 42.3111 98 ¢ 0.0488 30.9492 51.8404 -Verdana_Bold.ttf 66 7 33.3716 42.3111 99 Z -0.0244 35.7955 42.3111 -Verdana_Bold.ttf 66 7 33.3716 42.3111 100 > 4.4339 38.0564 38.0564 -Verdana_Bold.ttf 66 7 33.3716 42.3111 101 ® -1.0997 49.2683 49.2683 -Verdana_Bold.ttf 66 7 33.3716 42.3111 102 © -0.9760 49.2683 49.2683 -Verdana_Bold.ttf 66 7 33.3716 42.3111 103 ] -1.4475 19.1555 55.6923 -Verdana_Bold.ttf 66 7 33.3716 42.3111 104 é -5.0630 33.9082 48.9606 -Verdana_Bold.ttf 66 7 33.3716 42.3111 105 z 10.5792 29.7357 31.9436 -Verdana_Bold.ttf 66 7 33.3716 42.3111 106 _ 46.4191 41.6923 6.0564 -Verdana_Bold.ttf 66 7 33.3716 42.3111 107 ¥ 0.0213 38.9042 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 1 t 2.3979 24.2160 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 2 h -0.9240 32.3226 44.4239 -Verdana_Bold.ttf 67 § 33.3731 54.7915 3 a 10.4332 31.7954 34.3675 -Verdana_Bold.ttf 67 § 33.3731 54.7915 4 n 10.2621 32.3226 33.1555 -Verdana_Bold.ttf 67 § 33.3731 54.7915 5 P 1.2025 35.4165 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 6 o 10.3579 35.1202 34.3675 -Verdana_Bold.ttf 67 § 33.3731 54.7915 7 e 10.8050 33.9082 34.3675 -Verdana_Bold.ttf 67 § 33.3731 54.7915 8 : 11.7925 10.6752 31.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 9 r 11.8099 23.3151 31.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 10 l -0.7278 10.2160 44.4239 -Verdana_Bold.ttf 67 § 33.3731 54.7915 11 i -0.8793 10.2160 44.4239 -Verdana_Bold.ttf 67 § 33.3731 54.7915 12 1 1.2254 28.7413 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 13 | -0.8891 8.4803 55.6923 -Verdana_Bold.ttf 67 § 33.3731 54.7915 14 N 0.9334 38.8363 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 15 f -0.6639 24.5271 44.4239 -Verdana_Bold.ttf 67 § 33.3731 54.7915 16 g 10.0480 33.5311 44.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 17 d -0.8983 33.5311 45.6359 -Verdana_Bold.ttf 67 § 33.3731 54.7915 18 W 1.1004 62.2208 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 19 s 10.4906 29.7391 34.3675 -Verdana_Bold.ttf 67 § 33.3731 54.7915 20 c 10.3138 29.6826 34.3675 -Verdana_Bold.ttf 67 § 33.3731 54.7915 21 u 11.8561 32.3226 33.1555 -Verdana_Bold.ttf 67 § 33.3731 54.7915 22 3 0.1001 33.8052 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 23 ~ 14.4419 41.7840 19.3716 -Verdana_Bold.ttf 67 § 33.3731 54.7915 24 # 1.2710 41.8499 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 25 O -0.0177 43.9002 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 26 ` -4.6206 16.9477 11.2684 -Verdana_Bold.ttf 67 § 33.3731 54.7915 27 @ -0.3153 47.6808 50.1066 -Verdana_Bold.ttf 67 § 33.3731 54.7915 28 F 1.5351 30.2610 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 29 S 0.2035 36.6318 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 30 p 10.4355 33.5311 44.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 31 “ -1.2879 30.4239 16.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 32 % -0.0307 66.6496 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 33 £ -0.2308 33.7487 43.5231 -Verdana_Bold.ttf 67 § 33.3731 54.7915 34 . 32.3357 10.6752 11.2684 -Verdana_Bold.ttf 67 § 33.3731 54.7915 35 2 0.4264 33.2780 43.5231 -Verdana_Bold.ttf 67 § 33.3731 54.7915 36 5 1.0955 33.0639 43.5231 -Verdana_Bold.ttf 67 § 33.3731 54.7915 37 m 10.3740 52.4335 33.1555 -Verdana_Bold.ttf 67 § 33.3731 54.7915 38 V 1.3143 42.3111 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 39 6 0.0943 34.8011 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 40 w 11.4967 54.7880 31.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 41 T 1.5212 37.2507 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 42 M 1.2784 44.7331 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 43 G -0.2212 40.2643 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 44 b -0.5587 33.5311 45.6359 -Verdana_Bold.ttf 67 § 33.3731 54.7915 45 9 0.0649 34.8011 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 46 ; 11.2630 16.5721 42.6188 -Verdana_Bold.ttf 67 § 33.3731 54.7915 47 D 1.3354 40.2643 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 48 L 1.4486 30.5721 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 49 y 11.2358 35.6325 43.5196 -Verdana_Bold.ttf 67 § 33.3731 54.7915 50 ‘ -0.8903 15.2120 16.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 51 \ -0.6032 31.6359 53.7390 -Verdana_Bold.ttf 67 § 33.3731 54.7915 52 R 1.0994 41.1651 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 53 < 5.1349 38.0564 38.0564 -Verdana_Bold.ttf 67 § 33.3731 54.7915 54 4 1.4379 37.2216 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 55 8 0.1307 36.2291 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 56 0 0.3522 35.0428 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 57 A 1.1354 43.5231 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 58 E 0.9539 30.7316 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 59 B 1.3548 36.1047 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 60 v 11.5516 35.6325 31.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 61 k -0.8145 34.5835 44.4239 -Verdana_Bold.ttf 67 § 33.3731 54.7915 62 J 1.2911 26.4804 43.5231 -Verdana_Bold.ttf 67 § 33.3731 54.7915 63 U 1.3217 38.0018 43.5231 -Verdana_Bold.ttf 67 § 33.3731 54.7915 64 j -1.0906 20.5270 56.0000 -Verdana_Bold.ttf 67 § 33.3731 54.7915 65 ( -1.1269 21.2683 56.0000 -Verdana_Bold.ttf 67 § 33.3731 54.7915 66 7 0.8265 33.3716 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 67 § 0.1829 33.3731 54.7915 -Verdana_Bold.ttf 67 § 33.3731 54.7915 68 $ -1.1833 34.4240 55.1557 -Verdana_Bold.ttf 67 § 33.3731 54.7915 69 € -0.0284 38.7447 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 70 / -0.9379 31.6359 53.7390 -Verdana_Bold.ttf 67 § 33.3731 54.7915 71 C -0.1556 36.1047 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 72 * -1.1624 32.2547 29.2120 -Verdana_Bold.ttf 67 § 33.3731 54.7915 73 ” -1.1562 30.4239 16.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 74 ? 0.0064 28.4593 43.5231 -Verdana_Bold.ttf 67 § 33.3731 54.7915 75 { -1.0015 31.3248 55.6923 -Verdana_Bold.ttf 67 § 33.3731 54.7915 76 } -0.8173 31.3248 55.6923 -Verdana_Bold.ttf 67 § 33.3731 54.7915 77 , 32.1575 16.5721 21.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 78 I 1.1746 24.5157 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 79 ° -0.1546 24.0564 23.8404 -Verdana_Bold.ttf 67 § 33.3731 54.7915 80 K 1.1425 39.5761 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 81 H 1.3454 38.3656 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 82 q 10.3115 33.5311 44.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 83 & 0.0572 48.3675 44.7350 -Verdana_Bold.ttf 67 § 33.3731 54.7915 84 ’ -0.7863 15.2120 16.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 85 [ -0.8613 19.1555 55.6923 -Verdana_Bold.ttf 67 § 33.3731 54.7915 86 - 20.6479 21.9436 7.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 87 Y 1.3408 42.5237 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 88 Q -0.0518 43.9002 55.0992 -Verdana_Bold.ttf 67 § 33.3731 54.7915 89 " -0.8113 25.0523 16.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 90 ! 1.3775 11.4279 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 91 x 11.5795 36.6284 31.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 92 ) -1.1757 21.2683 56.0000 -Verdana_Bold.ttf 67 § 33.3731 54.7915 93 = 13.1515 36.4803 23.1556 -Verdana_Bold.ttf 67 § 33.3731 54.7915 94 + 5.5807 38.3675 38.3675 -Verdana_Bold.ttf 67 § 33.3731 54.7915 95 X 0.8839 42.3111 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 96 » 9.9750 35.2683 30.4239 -Verdana_Bold.ttf 67 § 33.3731 54.7915 97 ' -0.9109 9.8404 16.7316 -Verdana_Bold.ttf 67 § 33.3731 54.7915 98 ¢ 1.6383 30.9492 51.8404 -Verdana_Bold.ttf 67 § 33.3731 54.7915 99 Z 1.2866 35.7955 42.3111 -Verdana_Bold.ttf 67 § 33.3731 54.7915 100 > 5.2565 38.0564 38.0564 -Verdana_Bold.ttf 67 § 33.3731 54.7915 101 ® 0.0660 49.2683 49.2683 -Verdana_Bold.ttf 67 § 33.3731 54.7915 102 © -0.1403 49.2683 49.2683 -Verdana_Bold.ttf 67 § 33.3731 54.7915 103 ] -1.0058 19.1555 55.6923 -Verdana_Bold.ttf 67 § 33.3731 54.7915 104 é -4.1533 33.9082 48.9606 -Verdana_Bold.ttf 67 § 33.3731 54.7915 105 z 11.7202 29.7357 31.9436 -Verdana_Bold.ttf 67 § 33.3731 54.7915 106 _ 47.1441 41.6923 6.0564 -Verdana_Bold.ttf 67 § 33.3731 54.7915 107 ¥ 1.2270 38.9042 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 1 t 3.9975 24.2160 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 2 h 0.6049 32.3226 44.4239 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 3 a 11.9919 31.7954 34.3675 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 4 n 12.0326 32.3226 33.1555 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 5 P 2.8009 35.4165 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 6 o 12.0256 35.1202 34.3675 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 7 e 11.8779 33.9082 34.3675 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 8 : 13.1141 10.6752 31.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 9 r 13.0164 23.3151 31.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 10 l 0.6285 10.2160 44.4239 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 11 i 0.6221 10.2160 44.4239 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 12 1 2.9909 28.7413 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 13 | 0.6184 8.4803 55.6923 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 14 N 3.0497 38.8363 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 15 f 0.3912 24.5271 44.4239 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 16 g 12.2525 33.5311 44.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 17 d 0.3928 33.5311 45.6359 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 18 W 2.6459 62.2208 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 19 s 11.9094 29.7391 34.3675 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 20 c 12.1493 29.6826 34.3675 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 21 u 13.2844 32.3226 33.1555 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 22 3 1.1198 33.8052 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 23 ~ 15.9437 41.7840 19.3716 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 24 # 3.0660 41.8499 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 25 O 1.3728 43.9002 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 26 ` -2.5966 16.9477 11.2684 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 27 @ 1.6474 47.6808 50.1066 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 28 F 2.7072 30.2610 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 29 S 1.7939 36.6318 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 30 p 11.8436 33.5311 44.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 31 “ 0.6360 30.4239 16.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 32 % 1.6255 66.6496 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 33 £ 1.3334 33.7487 43.5231 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 34 . 33.6023 10.6752 11.2684 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 35 2 1.6907 33.2780 43.5231 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 36 5 2.3999 33.0639 43.5231 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 37 m 12.1049 52.4335 33.1555 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 38 V 2.6519 42.3111 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 39 6 1.3759 34.8011 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 40 w 13.1423 54.7880 31.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 41 T 2.8658 37.2507 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 42 M 2.9540 44.7331 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 43 G 1.5937 40.2643 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 44 b 0.7099 33.5311 45.6359 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 45 9 1.5815 34.8011 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 46 ; 13.3302 16.5721 42.6188 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 47 D 2.6601 40.2643 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 48 L 2.9869 30.5721 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 49 y 12.9394 35.6325 43.5196 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 50 ‘ 0.6543 15.2120 16.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 51 \ 0.5947 31.6359 53.7390 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 52 R 2.6136 41.1651 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 53 < 6.7865 38.0564 38.0564 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 54 4 2.9342 37.2216 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 55 8 1.4891 36.2291 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 56 0 1.6416 35.0428 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 57 A 2.7381 43.5231 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 58 E 2.7867 30.7316 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 59 B 2.9470 36.1047 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 60 v 13.1384 35.6325 31.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 61 k 0.5807 34.5835 44.4239 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 62 J 3.0480 26.4804 43.5231 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 63 U 2.8562 38.0018 43.5231 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 64 j 0.3788 20.5270 56.0000 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 65 ( 0.6880 21.2683 56.0000 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 66 7 3.3172 33.3716 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 67 § 1.2450 33.3731 54.7915 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 68 $ -0.0917 34.4240 55.1557 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 69 € 1.5290 38.7447 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 70 / 0.3701 31.6359 53.7390 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 71 C 1.7588 36.1047 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 72 * 0.6594 32.2547 29.2120 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 73 ” 0.7259 30.4239 16.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 74 ? 1.2515 28.4593 43.5231 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 75 { 0.7544 31.3248 55.6923 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 76 } 0.5218 31.3248 55.6923 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 77 , 33.9259 16.5721 21.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 78 I 2.7917 24.5157 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 79 ° 1.4305 24.0564 23.8404 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 80 K 2.9876 39.5761 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 81 H 2.8755 38.3656 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 82 q 11.9495 33.5311 44.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 83 & 1.3868 48.3675 44.7350 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 84 ’ 0.7853 15.2120 16.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 85 [ 0.5626 19.1555 55.6923 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 86 - 21.9897 21.9436 7.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 87 Y 2.8751 42.5237 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 88 Q 1.2983 43.9002 55.0992 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 89 " 0.8833 25.0523 16.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 90 ! 2.8789 11.4279 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 91 x 13.0174 36.6284 31.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 92 ) 0.5955 21.2683 56.0000 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 93 = 14.6929 36.4803 23.1556 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 94 + 7.3285 38.3675 38.3675 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 95 X 2.5219 42.3111 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 96 » 10.7872 35.2683 30.4239 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 97 ' 0.5008 9.8404 16.7316 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 98 ¢ 2.9502 30.9492 51.8404 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 99 Z 2.8820 35.7955 42.3111 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 100 > 7.5401 38.0564 38.0564 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 101 ® 1.8461 49.2683 49.2683 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 102 © 1.4781 49.2683 49.2683 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 103 ] 0.7693 19.1555 55.6923 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 104 é -2.4343 33.9082 48.9606 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 105 z 13.1187 29.7357 31.9436 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 106 _ 48.9761 41.6923 6.0564 -Verdana_Bold.ttf 68 $ 34.4240 55.1557 107 ¥ 3.0893 38.9042 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 1 t 2.1062 24.2160 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 2 h -0.4169 32.3226 44.4239 -Verdana_Bold.ttf 69 € 38.7447 44.7350 3 a 10.3517 31.7954 34.3675 -Verdana_Bold.ttf 69 € 38.7447 44.7350 4 n 10.2699 32.3226 33.1555 -Verdana_Bold.ttf 69 € 38.7447 44.7350 5 P 1.3139 35.4165 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 6 o 10.2731 35.1202 34.3675 -Verdana_Bold.ttf 69 € 38.7447 44.7350 7 e 10.2441 33.9082 34.3675 -Verdana_Bold.ttf 69 € 38.7447 44.7350 8 : 11.3303 10.6752 31.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 9 r 11.4478 23.3151 31.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 10 l -0.9289 10.2160 44.4239 -Verdana_Bold.ttf 69 € 38.7447 44.7350 11 i -0.6991 10.2160 44.4239 -Verdana_Bold.ttf 69 € 38.7447 44.7350 12 1 0.7368 28.7413 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 13 | -1.1507 8.4803 55.6923 -Verdana_Bold.ttf 69 € 38.7447 44.7350 14 N 1.4760 38.8363 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 15 f -1.0979 24.5271 44.4239 -Verdana_Bold.ttf 69 € 38.7447 44.7350 16 g 10.1369 33.5311 44.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 17 d -0.8428 33.5311 45.6359 -Verdana_Bold.ttf 69 € 38.7447 44.7350 18 W 1.4640 62.2208 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 19 s 10.4392 29.7391 34.3675 -Verdana_Bold.ttf 69 € 38.7447 44.7350 20 c 10.1405 29.6826 34.3675 -Verdana_Bold.ttf 69 € 38.7447 44.7350 21 u 11.3786 32.3226 33.1555 -Verdana_Bold.ttf 69 € 38.7447 44.7350 22 3 -0.2039 33.8052 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 23 ~ 14.7827 41.7840 19.3716 -Verdana_Bold.ttf 69 € 38.7447 44.7350 24 # 1.2468 41.8499 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 25 O 0.0479 43.9002 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 26 ` -4.4337 16.9477 11.2684 -Verdana_Bold.ttf 69 € 38.7447 44.7350 27 @ -0.1701 47.6808 50.1066 -Verdana_Bold.ttf 69 € 38.7447 44.7350 28 F 1.3698 30.2610 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 29 S 0.1868 36.6318 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 30 p 10.3490 33.5311 44.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 31 “ -1.1654 30.4239 16.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 32 % 0.1125 66.6496 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 33 £ 0.2663 33.7487 43.5231 -Verdana_Bold.ttf 69 € 38.7447 44.7350 34 . 32.1176 10.6752 11.2684 -Verdana_Bold.ttf 69 € 38.7447 44.7350 35 2 0.0845 33.2780 43.5231 -Verdana_Bold.ttf 69 € 38.7447 44.7350 36 5 1.2189 33.0639 43.5231 -Verdana_Bold.ttf 69 € 38.7447 44.7350 37 m 9.9671 52.4335 33.1555 -Verdana_Bold.ttf 69 € 38.7447 44.7350 38 V 1.0174 42.3111 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 39 6 0.2601 34.8011 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 40 w 11.4993 54.7880 31.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 41 T 1.0652 37.2507 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 42 M 1.0789 44.7331 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 43 G -0.0777 40.2643 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 44 b -0.7194 33.5311 45.6359 -Verdana_Bold.ttf 69 € 38.7447 44.7350 45 9 0.5491 34.8011 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 46 ; 11.8105 16.5721 42.6188 -Verdana_Bold.ttf 69 € 38.7447 44.7350 47 D 1.3542 40.2643 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 48 L 1.0125 30.5721 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 49 y 11.5200 35.6325 43.5196 -Verdana_Bold.ttf 69 € 38.7447 44.7350 50 ‘ -1.0172 15.2120 16.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 51 \ -0.7396 31.6359 53.7390 -Verdana_Bold.ttf 69 € 38.7447 44.7350 52 R 1.0164 41.1651 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 53 < 5.2524 38.0564 38.0564 -Verdana_Bold.ttf 69 € 38.7447 44.7350 54 4 1.1617 37.2216 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 55 8 0.1813 36.2291 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 56 0 -0.0827 35.0428 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 57 A 1.0164 43.5231 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 58 E 1.2274 30.7316 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 59 B 1.0937 36.1047 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 60 v 11.8850 35.6325 31.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 61 k -0.7260 34.5835 44.4239 -Verdana_Bold.ttf 69 € 38.7447 44.7350 62 J 1.0270 26.4804 43.5231 -Verdana_Bold.ttf 69 € 38.7447 44.7350 63 U 1.0516 38.0018 43.5231 -Verdana_Bold.ttf 69 € 38.7447 44.7350 64 j -0.8055 20.5270 56.0000 -Verdana_Bold.ttf 69 € 38.7447 44.7350 65 ( -1.1581 21.2683 56.0000 -Verdana_Bold.ttf 69 € 38.7447 44.7350 66 7 1.0476 33.3716 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 67 § -0.1299 33.3731 54.7915 -Verdana_Bold.ttf 69 € 38.7447 44.7350 68 $ -1.7140 34.4240 55.1557 -Verdana_Bold.ttf 69 € 38.7447 44.7350 69 € 0.2825 38.7447 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 70 / -0.9869 31.6359 53.7390 -Verdana_Bold.ttf 69 € 38.7447 44.7350 71 C 0.1662 36.1047 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 72 * -0.6234 32.2547 29.2120 -Verdana_Bold.ttf 69 € 38.7447 44.7350 73 ” -0.6904 30.4239 16.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 74 ? -0.0983 28.4593 43.5231 -Verdana_Bold.ttf 69 € 38.7447 44.7350 75 { -1.0535 31.3248 55.6923 -Verdana_Bold.ttf 69 € 38.7447 44.7350 76 } -1.0322 31.3248 55.6923 -Verdana_Bold.ttf 69 € 38.7447 44.7350 77 , 32.4912 16.5721 21.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 78 I 1.2772 24.5157 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 79 ° -0.1843 24.0564 23.8404 -Verdana_Bold.ttf 69 € 38.7447 44.7350 80 K 1.3857 39.5761 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 81 H 1.0850 38.3656 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 82 q 10.6016 33.5311 44.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 83 & -0.3605 48.3675 44.7350 -Verdana_Bold.ttf 69 € 38.7447 44.7350 84 ’ -0.8957 15.2120 16.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 85 [ -0.9513 19.1555 55.6923 -Verdana_Bold.ttf 69 € 38.7447 44.7350 86 - 20.4252 21.9436 7.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 87 Y 0.9481 42.5237 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 88 Q 0.0998 43.9002 55.0992 -Verdana_Bold.ttf 69 € 38.7447 44.7350 89 " -0.6589 25.0523 16.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 90 ! 1.0930 11.4279 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 91 x 11.8204 36.6284 31.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 92 ) -0.8504 21.2683 56.0000 -Verdana_Bold.ttf 69 € 38.7447 44.7350 93 = 12.8228 36.4803 23.1556 -Verdana_Bold.ttf 69 € 38.7447 44.7350 94 + 5.7883 38.3675 38.3675 -Verdana_Bold.ttf 69 € 38.7447 44.7350 95 X 1.2120 42.3111 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 96 » 8.9096 35.2683 30.4239 -Verdana_Bold.ttf 69 € 38.7447 44.7350 97 ' -0.8030 9.8404 16.7316 -Verdana_Bold.ttf 69 € 38.7447 44.7350 98 ¢ 1.4125 30.9492 51.8404 -Verdana_Bold.ttf 69 € 38.7447 44.7350 99 Z 1.3731 35.7955 42.3111 -Verdana_Bold.ttf 69 € 38.7447 44.7350 100 > 5.6175 38.0564 38.0564 -Verdana_Bold.ttf 69 € 38.7447 44.7350 101 ® -0.2654 49.2683 49.2683 -Verdana_Bold.ttf 69 € 38.7447 44.7350 102 © -0.1126 49.2683 49.2683 -Verdana_Bold.ttf 69 € 38.7447 44.7350 103 ] -0.8721 19.1555 55.6923 -Verdana_Bold.ttf 69 € 38.7447 44.7350 104 é -4.0546 33.9082 48.9606 -Verdana_Bold.ttf 69 € 38.7447 44.7350 105 z 11.5607 29.7357 31.9436 -Verdana_Bold.ttf 69 € 38.7447 44.7350 106 _ 47.2769 41.6923 6.0564 -Verdana_Bold.ttf 69 € 38.7447 44.7350 107 ¥ 1.4520 38.9042 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 1 t 3.5000 24.2160 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 2 h -0.0589 32.3226 44.4239 -Verdana_Bold.ttf 70 / 31.6359 53.7390 3 a 10.9906 31.7954 34.3675 -Verdana_Bold.ttf 70 / 31.6359 53.7390 4 n 11.3453 32.3226 33.1555 -Verdana_Bold.ttf 70 / 31.6359 53.7390 5 P 2.1916 35.4165 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 6 o 11.4474 35.1202 34.3675 -Verdana_Bold.ttf 70 / 31.6359 53.7390 7 e 10.9978 33.9082 34.3675 -Verdana_Bold.ttf 70 / 31.6359 53.7390 8 : 12.4242 10.6752 31.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 9 r 12.5210 23.3151 31.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 10 l 0.2746 10.2160 44.4239 -Verdana_Bold.ttf 70 / 31.6359 53.7390 11 i -0.1285 10.2160 44.4239 -Verdana_Bold.ttf 70 / 31.6359 53.7390 12 1 2.2731 28.7413 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 13 | -0.4239 8.4803 55.6923 -Verdana_Bold.ttf 70 / 31.6359 53.7390 14 N 1.8560 38.8363 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 15 f -0.1865 24.5271 44.4239 -Verdana_Bold.ttf 70 / 31.6359 53.7390 16 g 10.9021 33.5311 44.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 17 d -0.3046 33.5311 45.6359 -Verdana_Bold.ttf 70 / 31.6359 53.7390 18 W 1.7439 62.2208 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 19 s 11.3766 29.7391 34.3675 -Verdana_Bold.ttf 70 / 31.6359 53.7390 20 c 11.0262 29.6826 34.3675 -Verdana_Bold.ttf 70 / 31.6359 53.7390 21 u 12.5732 32.3226 33.1555 -Verdana_Bold.ttf 70 / 31.6359 53.7390 22 3 1.1741 33.8052 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 23 ~ 15.3689 41.7840 19.3716 -Verdana_Bold.ttf 70 / 31.6359 53.7390 24 # 2.0671 41.8499 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 25 O 0.7963 43.9002 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 26 ` -3.4035 16.9477 11.2684 -Verdana_Bold.ttf 70 / 31.6359 53.7390 27 @ 1.3723 47.6808 50.1066 -Verdana_Bold.ttf 70 / 31.6359 53.7390 28 F 2.1161 30.2610 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 29 S 0.7539 36.6318 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 30 p 11.2145 33.5311 44.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 31 “ -0.2004 30.4239 16.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 32 % 0.7303 66.6496 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 33 £ 1.0412 33.7487 43.5231 -Verdana_Bold.ttf 70 / 31.6359 53.7390 34 . 33.4304 10.6752 11.2684 -Verdana_Bold.ttf 70 / 31.6359 53.7390 35 2 0.4824 33.2780 43.5231 -Verdana_Bold.ttf 70 / 31.6359 53.7390 36 5 2.1494 33.0639 43.5231 -Verdana_Bold.ttf 70 / 31.6359 53.7390 37 m 11.4418 52.4335 33.1555 -Verdana_Bold.ttf 70 / 31.6359 53.7390 38 V 2.0983 42.3111 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 39 6 0.7227 34.8011 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 40 w 12.5322 54.7880 31.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 41 T 2.1400 37.2507 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 42 M 1.8524 44.7331 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 43 G 1.2844 40.2643 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 44 b -0.0795 33.5311 45.6359 -Verdana_Bold.ttf 70 / 31.6359 53.7390 45 9 0.4741 34.8011 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 46 ; 12.5264 16.5721 42.6188 -Verdana_Bold.ttf 70 / 31.6359 53.7390 47 D 2.0264 40.2643 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 48 L 2.2509 30.5721 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 49 y 12.3257 35.6325 43.5196 -Verdana_Bold.ttf 70 / 31.6359 53.7390 50 ‘ 0.0385 15.2120 16.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 51 \ -0.2765 31.6359 53.7390 -Verdana_Bold.ttf 70 / 31.6359 53.7390 52 R 2.2565 41.1651 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 53 < 6.3016 38.0564 38.0564 -Verdana_Bold.ttf 70 / 31.6359 53.7390 54 4 2.0417 37.2216 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 55 8 0.5133 36.2291 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 56 0 1.0575 35.0428 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 57 A 2.0134 43.5231 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 58 E 1.7057 30.7316 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 59 B 2.0421 36.1047 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 60 v 12.6842 35.6325 31.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 61 k 0.3008 34.5835 44.4239 -Verdana_Bold.ttf 70 / 31.6359 53.7390 62 J 2.0869 26.4804 43.5231 -Verdana_Bold.ttf 70 / 31.6359 53.7390 63 U 2.2478 38.0018 43.5231 -Verdana_Bold.ttf 70 / 31.6359 53.7390 64 j 0.5271 20.5270 56.0000 -Verdana_Bold.ttf 70 / 31.6359 53.7390 65 ( -0.0777 21.2683 56.0000 -Verdana_Bold.ttf 70 / 31.6359 53.7390 66 7 2.1092 33.3716 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 67 § 1.0674 33.3731 54.7915 -Verdana_Bold.ttf 70 / 31.6359 53.7390 68 $ -0.8056 34.4240 55.1557 -Verdana_Bold.ttf 70 / 31.6359 53.7390 69 € 0.9008 38.7447 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 70 / 0.2877 31.6359 53.7390 -Verdana_Bold.ttf 70 / 31.6359 53.7390 71 C 0.7573 36.1047 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 72 * -0.3740 32.2547 29.2120 -Verdana_Bold.ttf 70 / 31.6359 53.7390 73 ” 0.0352 30.4239 16.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 74 ? 0.7556 28.4593 43.5231 -Verdana_Bold.ttf 70 / 31.6359 53.7390 75 { -0.3173 31.3248 55.6923 -Verdana_Bold.ttf 70 / 31.6359 53.7390 76 } -0.3446 31.3248 55.6923 -Verdana_Bold.ttf 70 / 31.6359 53.7390 77 , 33.1124 16.5721 21.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 78 I 2.4159 24.5157 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 79 ° 0.8025 24.0564 23.8404 -Verdana_Bold.ttf 70 / 31.6359 53.7390 80 K 1.9932 39.5761 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 81 H 2.0743 38.3656 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 82 q 10.8756 33.5311 44.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 83 & 0.8839 48.3675 44.7350 -Verdana_Bold.ttf 70 / 31.6359 53.7390 84 ’ 0.2501 15.2120 16.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 85 [ -0.1875 19.1555 55.6923 -Verdana_Bold.ttf 70 / 31.6359 53.7390 86 - 21.6239 21.9436 7.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 87 Y 2.0217 42.5237 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 88 Q 0.3756 43.9002 55.0992 -Verdana_Bold.ttf 70 / 31.6359 53.7390 89 " 0.0951 25.0523 16.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 90 ! 2.1350 11.4279 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 91 x 12.5835 36.6284 31.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 92 ) -0.1317 21.2683 56.0000 -Verdana_Bold.ttf 70 / 31.6359 53.7390 93 = 14.4019 36.4803 23.1556 -Verdana_Bold.ttf 70 / 31.6359 53.7390 94 + 6.2687 38.3675 38.3675 -Verdana_Bold.ttf 70 / 31.6359 53.7390 95 X 2.2503 42.3111 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 96 » 10.2481 35.2683 30.4239 -Verdana_Bold.ttf 70 / 31.6359 53.7390 97 ' -0.1316 9.8404 16.7316 -Verdana_Bold.ttf 70 / 31.6359 53.7390 98 ¢ 2.2354 30.9492 51.8404 -Verdana_Bold.ttf 70 / 31.6359 53.7390 99 Z 2.0427 35.7955 42.3111 -Verdana_Bold.ttf 70 / 31.6359 53.7390 100 > 6.2808 38.0564 38.0564 -Verdana_Bold.ttf 70 / 31.6359 53.7390 101 ® 0.8599 49.2683 49.2683 -Verdana_Bold.ttf 70 / 31.6359 53.7390 102 © 0.8580 49.2683 49.2683 -Verdana_Bold.ttf 70 / 31.6359 53.7390 103 ] 0.1101 19.1555 55.6923 -Verdana_Bold.ttf 70 / 31.6359 53.7390 104 é -3.4067 33.9082 48.9606 -Verdana_Bold.ttf 70 / 31.6359 53.7390 105 z 12.7337 29.7357 31.9436 -Verdana_Bold.ttf 70 / 31.6359 53.7390 106 _ 48.3994 41.6923 6.0564 -Verdana_Bold.ttf 70 / 31.6359 53.7390 107 ¥ 2.2684 38.9042 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 1 t 2.7163 24.2160 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 2 h -0.7749 32.3226 44.4239 -Verdana_Bold.ttf 71 C 36.1047 44.7350 3 a 10.7532 31.7954 34.3675 -Verdana_Bold.ttf 71 C 36.1047 44.7350 4 n 10.1685 32.3226 33.1555 -Verdana_Bold.ttf 71 C 36.1047 44.7350 5 P 1.2932 35.4165 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 6 o 10.2859 35.1202 34.3675 -Verdana_Bold.ttf 71 C 36.1047 44.7350 7 e 10.3712 33.9082 34.3675 -Verdana_Bold.ttf 71 C 36.1047 44.7350 8 : 11.7785 10.6752 31.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 9 r 11.4263 23.3151 31.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 10 l -0.7823 10.2160 44.4239 -Verdana_Bold.ttf 71 C 36.1047 44.7350 11 i -0.5793 10.2160 44.4239 -Verdana_Bold.ttf 71 C 36.1047 44.7350 12 1 1.2069 28.7413 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 13 | -1.0086 8.4803 55.6923 -Verdana_Bold.ttf 71 C 36.1047 44.7350 14 N 0.8142 38.8363 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 15 f -0.6039 24.5271 44.4239 -Verdana_Bold.ttf 71 C 36.1047 44.7350 16 g 10.6301 33.5311 44.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 17 d -1.0837 33.5311 45.6359 -Verdana_Bold.ttf 71 C 36.1047 44.7350 18 W 1.3023 62.2208 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 19 s 10.4738 29.7391 34.3675 -Verdana_Bold.ttf 71 C 36.1047 44.7350 20 c 10.2613 29.6826 34.3675 -Verdana_Bold.ttf 71 C 36.1047 44.7350 21 u 11.5675 32.3226 33.1555 -Verdana_Bold.ttf 71 C 36.1047 44.7350 22 3 -0.0416 33.8052 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 23 ~ 14.5488 41.7840 19.3716 -Verdana_Bold.ttf 71 C 36.1047 44.7350 24 # 1.0912 41.8499 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 25 O -0.1134 43.9002 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 26 ` -3.9214 16.9477 11.2684 -Verdana_Bold.ttf 71 C 36.1047 44.7350 27 @ -0.2352 47.6808 50.1066 -Verdana_Bold.ttf 71 C 36.1047 44.7350 28 F 1.2173 30.2610 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 29 S -0.1711 36.6318 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 30 p 10.4713 33.5311 44.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 31 “ -0.7695 30.4239 16.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 32 % 0.0255 66.6496 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 33 £ -0.2339 33.7487 43.5231 -Verdana_Bold.ttf 71 C 36.1047 44.7350 34 . 32.3625 10.6752 11.2684 -Verdana_Bold.ttf 71 C 36.1047 44.7350 35 2 0.1944 33.2780 43.5231 -Verdana_Bold.ttf 71 C 36.1047 44.7350 36 5 0.9054 33.0639 43.5231 -Verdana_Bold.ttf 71 C 36.1047 44.7350 37 m 10.5873 52.4335 33.1555 -Verdana_Bold.ttf 71 C 36.1047 44.7350 38 V 1.2030 42.3111 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 39 6 0.1307 34.8011 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 40 w 11.5731 54.7880 31.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 41 T 1.0185 37.2507 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 42 M 1.4210 44.7331 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 43 G -0.0202 40.2643 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 44 b -1.0359 33.5311 45.6359 -Verdana_Bold.ttf 71 C 36.1047 44.7350 45 9 -0.2613 34.8011 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 46 ; 11.4841 16.5721 42.6188 -Verdana_Bold.ttf 71 C 36.1047 44.7350 47 D 0.5699 40.2643 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 48 L 1.3690 30.5721 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 49 y 11.7649 35.6325 43.5196 -Verdana_Bold.ttf 71 C 36.1047 44.7350 50 ‘ -1.0626 15.2120 16.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 51 \ -1.0589 31.6359 53.7390 -Verdana_Bold.ttf 71 C 36.1047 44.7350 52 R 1.0136 41.1651 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 53 < 5.2820 38.0564 38.0564 -Verdana_Bold.ttf 71 C 36.1047 44.7350 54 4 1.2728 37.2216 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 55 8 0.0287 36.2291 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 56 0 0.0935 35.0428 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 57 A 1.2133 43.5231 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 58 E 1.0874 30.7316 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 59 B 1.3338 36.1047 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 60 v 11.5098 35.6325 31.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 61 k -0.7239 34.5835 44.4239 -Verdana_Bold.ttf 71 C 36.1047 44.7350 62 J 1.0408 26.4804 43.5231 -Verdana_Bold.ttf 71 C 36.1047 44.7350 63 U 1.1805 38.0018 43.5231 -Verdana_Bold.ttf 71 C 36.1047 44.7350 64 j -0.9498 20.5270 56.0000 -Verdana_Bold.ttf 71 C 36.1047 44.7350 65 ( -0.8699 21.2683 56.0000 -Verdana_Bold.ttf 71 C 36.1047 44.7350 66 7 1.0878 33.3716 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 67 § 0.0983 33.3731 54.7915 -Verdana_Bold.ttf 71 C 36.1047 44.7350 68 $ -1.5190 34.4240 55.1557 -Verdana_Bold.ttf 71 C 36.1047 44.7350 69 € -0.1562 38.7447 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 70 / -0.8930 31.6359 53.7390 -Verdana_Bold.ttf 71 C 36.1047 44.7350 71 C 0.0148 36.1047 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 72 * -0.8814 32.2547 29.2120 -Verdana_Bold.ttf 71 C 36.1047 44.7350 73 ” -0.7957 30.4239 16.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 74 ? 0.0222 28.4593 43.5231 -Verdana_Bold.ttf 71 C 36.1047 44.7350 75 { -1.0896 31.3248 55.6923 -Verdana_Bold.ttf 71 C 36.1047 44.7350 76 } -0.8656 31.3248 55.6923 -Verdana_Bold.ttf 71 C 36.1047 44.7350 77 , 32.3620 16.5721 21.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 78 I 0.9198 24.5157 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 79 ° -0.0194 24.0564 23.8404 -Verdana_Bold.ttf 71 C 36.1047 44.7350 80 K 1.2341 39.5761 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 81 H 1.1845 38.3656 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 82 q 10.2635 33.5311 44.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 83 & -0.1212 48.3675 44.7350 -Verdana_Bold.ttf 71 C 36.1047 44.7350 84 ’ -0.8661 15.2120 16.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 85 [ -0.5691 19.1555 55.6923 -Verdana_Bold.ttf 71 C 36.1047 44.7350 86 - 20.3774 21.9436 7.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 87 Y 0.8999 42.5237 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 88 Q -0.1286 43.9002 55.0992 -Verdana_Bold.ttf 71 C 36.1047 44.7350 89 " -0.7907 25.0523 16.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 90 ! 1.0971 11.4279 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 91 x 11.6295 36.6284 31.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 92 ) -0.3657 21.2683 56.0000 -Verdana_Bold.ttf 71 C 36.1047 44.7350 93 = 12.7963 36.4803 23.1556 -Verdana_Bold.ttf 71 C 36.1047 44.7350 94 + 5.7003 38.3675 38.3675 -Verdana_Bold.ttf 71 C 36.1047 44.7350 95 X 1.1119 42.3111 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 96 » 9.2225 35.2683 30.4239 -Verdana_Bold.ttf 71 C 36.1047 44.7350 97 ' -0.8120 9.8404 16.7316 -Verdana_Bold.ttf 71 C 36.1047 44.7350 98 ¢ 1.5216 30.9492 51.8404 -Verdana_Bold.ttf 71 C 36.1047 44.7350 99 Z 0.9942 35.7955 42.3111 -Verdana_Bold.ttf 71 C 36.1047 44.7350 100 > 5.3545 38.0564 38.0564 -Verdana_Bold.ttf 71 C 36.1047 44.7350 101 ® 0.0374 49.2683 49.2683 -Verdana_Bold.ttf 71 C 36.1047 44.7350 102 © 0.2217 49.2683 49.2683 -Verdana_Bold.ttf 71 C 36.1047 44.7350 103 ] -0.6235 19.1555 55.6923 -Verdana_Bold.ttf 71 C 36.1047 44.7350 104 é -4.3511 33.9082 48.9606 -Verdana_Bold.ttf 71 C 36.1047 44.7350 105 z 11.9328 29.7357 31.9436 -Verdana_Bold.ttf 71 C 36.1047 44.7350 106 _ 47.4045 41.6923 6.0564 -Verdana_Bold.ttf 71 C 36.1047 44.7350 107 ¥ 1.4933 38.9042 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 1 t 3.1698 24.2160 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 2 h 0.1861 32.3226 44.4239 -Verdana_Bold.ttf 72 * 32.2547 29.2120 3 a 11.4258 31.7954 34.3675 -Verdana_Bold.ttf 72 * 32.2547 29.2120 4 n 11.1040 32.3226 33.1555 -Verdana_Bold.ttf 72 * 32.2547 29.2120 5 P 2.3711 35.4165 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 6 o 11.2708 35.1202 34.3675 -Verdana_Bold.ttf 72 * 32.2547 29.2120 7 e 11.0602 33.9082 34.3675 -Verdana_Bold.ttf 72 * 32.2547 29.2120 8 : 12.5583 10.6752 31.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 9 r 12.6509 23.3151 31.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 10 l 0.2167 10.2160 44.4239 -Verdana_Bold.ttf 72 * 32.2547 29.2120 11 i -0.0596 10.2160 44.4239 -Verdana_Bold.ttf 72 * 32.2547 29.2120 12 1 2.1081 28.7413 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 13 | 0.1308 8.4803 55.6923 -Verdana_Bold.ttf 72 * 32.2547 29.2120 14 N 2.2017 38.8363 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 15 f 0.1367 24.5271 44.4239 -Verdana_Bold.ttf 72 * 32.2547 29.2120 16 g 11.1478 33.5311 44.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 17 d -0.2663 33.5311 45.6359 -Verdana_Bold.ttf 72 * 32.2547 29.2120 18 W 2.1350 62.2208 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 19 s 11.0882 29.7391 34.3675 -Verdana_Bold.ttf 72 * 32.2547 29.2120 20 c 11.3882 29.6826 34.3675 -Verdana_Bold.ttf 72 * 32.2547 29.2120 21 u 12.3744 32.3226 33.1555 -Verdana_Bold.ttf 72 * 32.2547 29.2120 22 3 0.6426 33.8052 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 23 ~ 15.4066 41.7840 19.3716 -Verdana_Bold.ttf 72 * 32.2547 29.2120 24 # 2.2242 41.8499 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 25 O 0.9502 43.9002 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 26 ` -3.2827 16.9477 11.2684 -Verdana_Bold.ttf 72 * 32.2547 29.2120 27 @ 0.8490 47.6808 50.1066 -Verdana_Bold.ttf 72 * 32.2547 29.2120 28 F 2.1181 30.2610 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 29 S 0.7593 36.6318 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 30 p 11.0939 33.5311 44.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 31 “ -0.0416 30.4239 16.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 32 % 1.1132 66.6496 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 33 £ 0.6932 33.7487 43.5231 -Verdana_Bold.ttf 72 * 32.2547 29.2120 34 . 33.1087 10.6752 11.2684 -Verdana_Bold.ttf 72 * 32.2547 29.2120 35 2 0.9992 33.2780 43.5231 -Verdana_Bold.ttf 72 * 32.2547 29.2120 36 5 1.9799 33.0639 43.5231 -Verdana_Bold.ttf 72 * 32.2547 29.2120 37 m 11.5583 52.4335 33.1555 -Verdana_Bold.ttf 72 * 32.2547 29.2120 38 V 2.1117 42.3111 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 39 6 0.8098 34.8011 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 40 w 12.2806 54.7880 31.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 41 T 1.9379 37.2507 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 42 M 1.9418 44.7331 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 43 G 1.0772 40.2643 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 44 b 0.0605 33.5311 45.6359 -Verdana_Bold.ttf 72 * 32.2547 29.2120 45 9 0.6567 34.8011 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 46 ; 12.7106 16.5721 42.6188 -Verdana_Bold.ttf 72 * 32.2547 29.2120 47 D 1.9205 40.2643 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 48 L 1.9321 30.5721 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 49 y 12.2997 35.6325 43.5196 -Verdana_Bold.ttf 72 * 32.2547 29.2120 50 ‘ -0.1328 15.2120 16.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 51 \ 0.1861 31.6359 53.7390 -Verdana_Bold.ttf 72 * 32.2547 29.2120 52 R 2.2524 41.1651 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 53 < 6.1507 38.0564 38.0564 -Verdana_Bold.ttf 72 * 32.2547 29.2120 54 4 2.1498 37.2216 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 55 8 0.9076 36.2291 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 56 0 1.0159 35.0428 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 57 A 2.1056 43.5231 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 58 E 2.2360 30.7316 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 59 B 2.1546 36.1047 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 60 v 12.5210 35.6325 31.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 61 k 0.0178 34.5835 44.4239 -Verdana_Bold.ttf 72 * 32.2547 29.2120 62 J 2.2711 26.4804 43.5231 -Verdana_Bold.ttf 72 * 32.2547 29.2120 63 U 2.1628 38.0018 43.5231 -Verdana_Bold.ttf 72 * 32.2547 29.2120 64 j 0.4526 20.5270 56.0000 -Verdana_Bold.ttf 72 * 32.2547 29.2120 65 ( -0.2758 21.2683 56.0000 -Verdana_Bold.ttf 72 * 32.2547 29.2120 66 7 2.3818 33.3716 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 67 § 0.7278 33.3731 54.7915 -Verdana_Bold.ttf 72 * 32.2547 29.2120 68 $ -0.7846 34.4240 55.1557 -Verdana_Bold.ttf 72 * 32.2547 29.2120 69 € 1.0319 38.7447 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 70 / -0.1370 31.6359 53.7390 -Verdana_Bold.ttf 72 * 32.2547 29.2120 71 C 0.9245 36.1047 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 72 * 0.4015 32.2547 29.2120 -Verdana_Bold.ttf 72 * 32.2547 29.2120 73 ” 0.1100 30.4239 16.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 74 ? 1.0484 28.4593 43.5231 -Verdana_Bold.ttf 72 * 32.2547 29.2120 75 { 0.1081 31.3248 55.6923 -Verdana_Bold.ttf 72 * 32.2547 29.2120 76 } -0.0684 31.3248 55.6923 -Verdana_Bold.ttf 72 * 32.2547 29.2120 77 , 32.9816 16.5721 21.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 78 I 1.8204 24.5157 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 79 ° 1.1011 24.0564 23.8404 -Verdana_Bold.ttf 72 * 32.2547 29.2120 80 K 1.8690 39.5761 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 81 H 2.0998 38.3656 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 82 q 11.3029 33.5311 44.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 83 & 1.1337 48.3675 44.7350 -Verdana_Bold.ttf 72 * 32.2547 29.2120 84 ’ 0.1890 15.2120 16.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 85 [ -0.1130 19.1555 55.6923 -Verdana_Bold.ttf 72 * 32.2547 29.2120 86 - 21.2478 21.9436 7.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 87 Y 2.1658 42.5237 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 88 Q 1.0648 43.9002 55.0992 -Verdana_Bold.ttf 72 * 32.2547 29.2120 89 " -0.0109 25.0523 16.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 90 ! 2.3741 11.4279 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 91 x 12.2943 36.6284 31.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 92 ) -0.1221 21.2683 56.0000 -Verdana_Bold.ttf 72 * 32.2547 29.2120 93 = 14.2971 36.4803 23.1556 -Verdana_Bold.ttf 72 * 32.2547 29.2120 94 + 6.4004 38.3675 38.3675 -Verdana_Bold.ttf 72 * 32.2547 29.2120 95 X 2.2987 42.3111 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 96 » 10.4023 35.2683 30.4239 -Verdana_Bold.ttf 72 * 32.2547 29.2120 97 ' 0.1646 9.8404 16.7316 -Verdana_Bold.ttf 72 * 32.2547 29.2120 98 ¢ 2.2904 30.9492 51.8404 -Verdana_Bold.ttf 72 * 32.2547 29.2120 99 Z 2.3264 35.7955 42.3111 -Verdana_Bold.ttf 72 * 32.2547 29.2120 100 > 6.3225 38.0564 38.0564 -Verdana_Bold.ttf 72 * 32.2547 29.2120 101 ® 0.9814 49.2683 49.2683 -Verdana_Bold.ttf 72 * 32.2547 29.2120 102 © 1.3027 49.2683 49.2683 -Verdana_Bold.ttf 72 * 32.2547 29.2120 103 ] -0.2358 19.1555 55.6923 -Verdana_Bold.ttf 72 * 32.2547 29.2120 104 é -3.4042 33.9082 48.9606 -Verdana_Bold.ttf 72 * 32.2547 29.2120 105 z 12.3947 29.7357 31.9436 -Verdana_Bold.ttf 72 * 32.2547 29.2120 106 _ 47.9636 41.6923 6.0564 -Verdana_Bold.ttf 72 * 32.2547 29.2120 107 ¥ 2.2528 38.9042 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 1 t 3.1441 24.2160 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 2 h 0.1510 32.3226 44.4239 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 3 a 11.3674 31.7954 34.3675 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 4 n 11.3630 32.3226 33.1555 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 5 P 2.3272 35.4165 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 6 o 11.0007 35.1202 34.3675 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 7 e 11.3004 33.9082 34.3675 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 8 : 12.5496 10.6752 31.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 9 r 12.6538 23.3151 31.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 10 l 0.2541 10.2160 44.4239 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 11 i 0.0943 10.2160 44.4239 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 12 1 1.9486 28.7413 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 13 | -0.0668 8.4803 55.6923 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 14 N 2.1120 38.8363 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 15 f 0.0000 24.5271 44.4239 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 16 g 11.4548 33.5311 44.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 17 d -0.0130 33.5311 45.6359 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 18 W 2.0704 62.2208 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 19 s 11.5541 29.7391 34.3675 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 20 c 11.3414 29.6826 34.3675 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 21 u 12.7141 32.3226 33.1555 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 22 3 0.7522 33.8052 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 23 ~ 15.4914 41.7840 19.3716 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 24 # 2.1519 41.8499 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 25 O 1.0470 43.9002 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 26 ` -3.4238 16.9477 11.2684 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 27 @ 0.6212 47.6808 50.1066 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 28 F 2.0127 30.2610 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 29 S 0.9441 36.6318 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 30 p 11.3198 33.5311 44.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 31 “ 0.0829 30.4239 16.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 32 % 0.9379 66.6496 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 33 £ 0.7555 33.7487 43.5231 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 34 . 32.9883 10.6752 11.2684 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 35 2 0.7977 33.2780 43.5231 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 36 5 2.2862 33.0639 43.5231 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 37 m 10.9862 52.4335 33.1555 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 38 V 2.2110 42.3111 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 39 6 0.9429 34.8011 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 40 w 12.7633 54.7880 31.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 41 T 2.2133 37.2507 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 42 M 2.4756 44.7331 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 43 G 0.8733 40.2643 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 44 b -0.1367 33.5311 45.6359 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 45 9 1.0437 34.8011 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 46 ; 12.7162 16.5721 42.6188 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 47 D 2.0052 40.2643 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 48 L 2.1103 30.5721 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 49 y 12.2594 35.6325 43.5196 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 50 ‘ 0.0903 15.2120 16.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 51 \ 0.0889 31.6359 53.7390 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 52 R 2.2128 41.1651 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 53 < 6.3667 38.0564 38.0564 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 54 4 2.1568 37.2216 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 55 8 0.9719 36.2291 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 56 0 0.4784 35.0428 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 57 A 2.1330 43.5231 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 58 E 2.1448 30.7316 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 59 B 1.8447 36.1047 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 60 v 12.3808 35.6325 31.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 61 k -0.0749 34.5835 44.4239 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 62 J 2.2262 26.4804 43.5231 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 63 U 2.3406 38.0018 43.5231 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 64 j -0.0831 20.5270 56.0000 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 65 ( 0.1053 21.2683 56.0000 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 66 7 2.2531 33.3716 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 67 § 0.9100 33.3731 54.7915 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 68 $ -0.8724 34.4240 55.1557 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 69 € 1.0107 38.7447 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 70 / -0.1313 31.6359 53.7390 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 71 C 0.9256 36.1047 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 72 * 0.0053 32.2547 29.2120 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 73 ” -0.0138 30.4239 16.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 74 ? 0.6658 28.4593 43.5231 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 75 { 0.0846 31.3248 55.6923 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 76 } 0.1349 31.3248 55.6923 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 77 , 32.9663 16.5721 21.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 78 I 2.1243 24.5157 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 79 ° 1.1480 24.0564 23.8404 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 80 K 1.9429 39.5761 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 81 H 2.1049 38.3656 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 82 q 11.2935 33.5311 44.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 83 & 0.7918 48.3675 44.7350 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 84 ’ 0.1971 15.2120 16.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 85 [ 0.1212 19.1555 55.6923 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 86 - 21.1622 21.9436 7.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 87 Y 2.0211 42.5237 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 88 Q 0.8885 43.9002 55.0992 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 89 " -0.0312 25.0523 16.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 90 ! 2.3555 11.4279 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 91 x 12.3250 36.6284 31.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 92 ) -0.0122 21.2683 56.0000 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 93 = 14.2817 36.4803 23.1556 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 94 + 6.5375 38.3675 38.3675 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 95 X 1.9437 42.3111 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 96 » 10.0522 35.2683 30.4239 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 97 ' 0.0028 9.8404 16.7316 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 98 ¢ 2.3721 30.9492 51.8404 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 99 Z 2.0149 35.7955 42.3111 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 100 > 6.4769 38.0564 38.0564 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 101 ® 1.0132 49.2683 49.2683 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 102 © 0.8605 49.2683 49.2683 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 103 ] 0.3443 19.1555 55.6923 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 104 é -3.5177 33.9082 48.9606 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 105 z 12.2798 29.7357 31.9436 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 106 _ 48.6527 41.6923 6.0564 -Verdana_Bold.ttf 73 ” 30.4239 16.7316 107 ¥ 2.2739 38.9042 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 1 t 2.3759 24.2160 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 2 h -0.7912 32.3226 44.4239 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 3 a 10.3473 31.7954 34.3675 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 4 n 10.4773 32.3226 33.1555 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 5 P 1.3084 35.4165 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 6 o 10.3431 35.1202 34.3675 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 7 e 10.2797 33.9082 34.3675 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 8 : 11.4936 10.6752 31.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 9 r 11.5141 23.3151 31.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 10 l -0.7810 10.2160 44.4239 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 11 i -0.8178 10.2160 44.4239 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 12 1 1.3901 28.7413 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 13 | -0.7241 8.4803 55.6923 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 14 N 1.2725 38.8363 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 15 f -0.8436 24.5271 44.4239 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 16 g 10.4618 33.5311 44.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 17 d -0.9946 33.5311 45.6359 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 18 W 1.1979 62.2208 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 19 s 10.2739 29.7391 34.3675 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 20 c 10.3277 29.6826 34.3675 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 21 u 11.8548 32.3226 33.1555 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 22 3 0.0903 33.8052 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 23 ~ 14.5035 41.7840 19.3716 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 24 # 1.3528 41.8499 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 25 O -0.2426 43.9002 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 26 ` -4.3443 16.9477 11.2684 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 27 @ -0.0224 47.6808 50.1066 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 28 F 1.3841 30.2610 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 29 S -0.1004 36.6318 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 30 p 10.5838 33.5311 44.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 31 “ -0.6371 30.4239 16.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 32 % 0.1615 66.6496 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 33 £ -0.1127 33.7487 43.5231 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 34 . 32.2547 10.6752 11.2684 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 35 2 0.1883 33.2780 43.5231 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 36 5 0.9881 33.0639 43.5231 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 37 m 10.6007 52.4335 33.1555 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 38 V 1.2224 42.3111 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 39 6 -0.1348 34.8011 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 40 w 12.0239 54.7880 31.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 41 T 1.3510 37.2507 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 42 M 1.5235 44.7331 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 43 G 0.0735 40.2643 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 44 b -1.0356 33.5311 45.6359 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 45 9 0.1375 34.8011 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 46 ; 11.4165 16.5721 42.6188 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 47 D 1.3433 40.2643 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 48 L 1.5584 30.5721 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 49 y 11.4780 35.6325 43.5196 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 50 ‘ -1.0293 15.2120 16.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 51 \ -0.9738 31.6359 53.7390 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 52 R 1.0634 41.1651 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 53 < 5.3687 38.0564 38.0564 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 54 4 1.1255 37.2216 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 55 8 0.0616 36.2291 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 56 0 0.0241 35.0428 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 57 A 1.1854 43.5231 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 58 E 1.5801 30.7316 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 59 B 1.2552 36.1047 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 60 v 11.3632 35.6325 31.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 61 k -0.9940 34.5835 44.4239 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 62 J 1.2139 26.4804 43.5231 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 63 U 1.1848 38.0018 43.5231 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 64 j -1.2324 20.5270 56.0000 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 65 ( -0.7670 21.2683 56.0000 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 66 7 1.2827 33.3716 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 67 § -0.1093 33.3731 54.7915 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 68 $ -1.4946 34.4240 55.1557 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 69 € -0.2325 38.7447 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 70 / -0.7231 31.6359 53.7390 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 71 C 0.0090 36.1047 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 72 * -0.8091 32.2547 29.2120 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 73 ” -1.0103 30.4239 16.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 74 ? 0.0452 28.4593 43.5231 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 75 { -0.9854 31.3248 55.6923 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 76 } -1.1885 31.3248 55.6923 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 77 , 32.2220 16.5721 21.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 78 I 1.2914 24.5157 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 79 ° -0.0527 24.0564 23.8404 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 80 K 0.7917 39.5761 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 81 H 1.2562 38.3656 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 82 q 10.4993 33.5311 44.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 83 & 0.2453 48.3675 44.7350 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 84 ’ -0.9581 15.2120 16.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 85 [ -0.6456 19.1555 55.6923 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 86 - 20.3976 21.9436 7.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 87 Y 1.2120 42.5237 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 88 Q -0.1473 43.9002 55.0992 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 89 " -0.9282 25.0523 16.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 90 ! 0.9751 11.4279 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 91 x 11.3870 36.6284 31.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 92 ) -0.9393 21.2683 56.0000 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 93 = 12.9527 36.4803 23.1556 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 94 + 5.8870 38.3675 38.3675 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 95 X 1.4292 42.3111 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 96 » 9.3426 35.2683 30.4239 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 97 ' -0.9173 9.8404 16.7316 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 98 ¢ 1.6396 30.9492 51.8404 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 99 Z 1.3034 35.7955 42.3111 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 100 > 5.1869 38.0564 38.0564 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 101 ® -0.2483 49.2683 49.2683 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 102 © 0.1749 49.2683 49.2683 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 103 ] -0.6556 19.1555 55.6923 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 104 é -3.9340 33.9082 48.9606 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 105 z 11.5317 29.7357 31.9436 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 106 _ 47.2954 41.6923 6.0564 -Verdana_Bold.ttf 74 ? 28.4593 43.5231 107 ¥ 1.1971 38.9042 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 1 t 3.3774 24.2160 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 2 h 0.1583 32.3226 44.4239 -Verdana_Bold.ttf 75 { 31.3248 55.6923 3 a 11.4195 31.7954 34.3675 -Verdana_Bold.ttf 75 { 31.3248 55.6923 4 n 11.4976 32.3226 33.1555 -Verdana_Bold.ttf 75 { 31.3248 55.6923 5 P 2.1879 35.4165 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 6 o 11.2959 35.1202 34.3675 -Verdana_Bold.ttf 75 { 31.3248 55.6923 7 e 11.2586 33.9082 34.3675 -Verdana_Bold.ttf 75 { 31.3248 55.6923 8 : 12.1978 10.6752 31.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 9 r 12.1695 23.3151 31.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 10 l -0.0870 10.2160 44.4239 -Verdana_Bold.ttf 75 { 31.3248 55.6923 11 i 0.1004 10.2160 44.4239 -Verdana_Bold.ttf 75 { 31.3248 55.6923 12 1 2.2957 28.7413 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 13 | 0.1157 8.4803 55.6923 -Verdana_Bold.ttf 75 { 31.3248 55.6923 14 N 2.1984 38.8363 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 15 f 0.1367 24.5271 44.4239 -Verdana_Bold.ttf 75 { 31.3248 55.6923 16 g 11.1834 33.5311 44.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 17 d -0.1408 33.5311 45.6359 -Verdana_Bold.ttf 75 { 31.3248 55.6923 18 W 2.3319 62.2208 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 19 s 10.9441 29.7391 34.3675 -Verdana_Bold.ttf 75 { 31.3248 55.6923 20 c 11.1111 29.6826 34.3675 -Verdana_Bold.ttf 75 { 31.3248 55.6923 21 u 12.7619 32.3226 33.1555 -Verdana_Bold.ttf 75 { 31.3248 55.6923 22 3 0.8469 33.8052 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 23 ~ 15.2266 41.7840 19.3716 -Verdana_Bold.ttf 75 { 31.3248 55.6923 24 # 2.5369 41.8499 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 25 O 0.8711 43.9002 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 26 ` -3.3178 16.9477 11.2684 -Verdana_Bold.ttf 75 { 31.3248 55.6923 27 @ 0.7218 47.6808 50.1066 -Verdana_Bold.ttf 75 { 31.3248 55.6923 28 F 2.0976 30.2610 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 29 S 1.2352 36.6318 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 30 p 11.4717 33.5311 44.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 31 “ -0.0378 30.4239 16.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 32 % 0.7959 66.6496 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 33 £ 1.4199 33.7487 43.5231 -Verdana_Bold.ttf 75 { 31.3248 55.6923 34 . 33.2055 10.6752 11.2684 -Verdana_Bold.ttf 75 { 31.3248 55.6923 35 2 0.9456 33.2780 43.5231 -Verdana_Bold.ttf 75 { 31.3248 55.6923 36 5 2.2786 33.0639 43.5231 -Verdana_Bold.ttf 75 { 31.3248 55.6923 37 m 11.2912 52.4335 33.1555 -Verdana_Bold.ttf 75 { 31.3248 55.6923 38 V 2.1833 42.3111 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 39 6 0.8283 34.8011 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 40 w 12.1775 54.7880 31.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 41 T 2.1254 37.2507 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 42 M 1.8391 44.7331 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 43 G 1.1638 40.2643 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 44 b -0.0025 33.5311 45.6359 -Verdana_Bold.ttf 75 { 31.3248 55.6923 45 9 0.9761 34.8011 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 46 ; 12.5857 16.5721 42.6188 -Verdana_Bold.ttf 75 { 31.3248 55.6923 47 D 2.2496 40.2643 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 48 L 2.2243 30.5721 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 49 y 12.5298 35.6325 43.5196 -Verdana_Bold.ttf 75 { 31.3248 55.6923 50 ‘ 0.3619 15.2120 16.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 51 \ 0.0802 31.6359 53.7390 -Verdana_Bold.ttf 75 { 31.3248 55.6923 52 R 2.2492 41.1651 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 53 < 6.3765 38.0564 38.0564 -Verdana_Bold.ttf 75 { 31.3248 55.6923 54 4 2.2377 37.2216 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 55 8 0.8425 36.2291 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 56 0 0.6986 35.0428 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 57 A 2.3690 43.5231 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 58 E 2.0793 30.7316 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 59 B 2.0667 36.1047 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 60 v 12.1260 35.6325 31.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 61 k -0.2250 34.5835 44.4239 -Verdana_Bold.ttf 75 { 31.3248 55.6923 62 J 2.2021 26.4804 43.5231 -Verdana_Bold.ttf 75 { 31.3248 55.6923 63 U 1.8813 38.0018 43.5231 -Verdana_Bold.ttf 75 { 31.3248 55.6923 64 j -0.1043 20.5270 56.0000 -Verdana_Bold.ttf 75 { 31.3248 55.6923 65 ( -0.0238 21.2683 56.0000 -Verdana_Bold.ttf 75 { 31.3248 55.6923 66 7 2.1766 33.3716 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 67 § 1.0397 33.3731 54.7915 -Verdana_Bold.ttf 75 { 31.3248 55.6923 68 $ -0.5440 34.4240 55.1557 -Verdana_Bold.ttf 75 { 31.3248 55.6923 69 € 1.4521 38.7447 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 70 / -0.0951 31.6359 53.7390 -Verdana_Bold.ttf 75 { 31.3248 55.6923 71 C 0.7098 36.1047 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 72 * 0.0082 32.2547 29.2120 -Verdana_Bold.ttf 75 { 31.3248 55.6923 73 ” -0.2431 30.4239 16.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 74 ? 0.6975 28.4593 43.5231 -Verdana_Bold.ttf 75 { 31.3248 55.6923 75 { 0.3376 31.3248 55.6923 -Verdana_Bold.ttf 75 { 31.3248 55.6923 76 } 0.0399 31.3248 55.6923 -Verdana_Bold.ttf 75 { 31.3248 55.6923 77 , 33.2271 16.5721 21.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 78 I 2.0239 24.5157 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 79 ° 0.5797 24.0564 23.8404 -Verdana_Bold.ttf 75 { 31.3248 55.6923 80 K 1.8205 39.5761 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 81 H 1.6280 38.3656 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 82 q 11.4930 33.5311 44.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 83 & 0.7944 48.3675 44.7350 -Verdana_Bold.ttf 75 { 31.3248 55.6923 84 ’ 0.0019 15.2120 16.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 85 [ -0.1023 19.1555 55.6923 -Verdana_Bold.ttf 75 { 31.3248 55.6923 86 - 21.4062 21.9436 7.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 87 Y 2.1079 42.5237 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 88 Q 0.9873 43.9002 55.0992 -Verdana_Bold.ttf 75 { 31.3248 55.6923 89 " 0.0823 25.0523 16.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 90 ! 2.1128 11.4279 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 91 x 12.4012 36.6284 31.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 92 ) 0.0492 21.2683 56.0000 -Verdana_Bold.ttf 75 { 31.3248 55.6923 93 = 13.9283 36.4803 23.1556 -Verdana_Bold.ttf 75 { 31.3248 55.6923 94 + 6.5473 38.3675 38.3675 -Verdana_Bold.ttf 75 { 31.3248 55.6923 95 X 1.9528 42.3111 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 96 » 10.5729 35.2683 30.4239 -Verdana_Bold.ttf 75 { 31.3248 55.6923 97 ' -0.0658 9.8404 16.7316 -Verdana_Bold.ttf 75 { 31.3248 55.6923 98 ¢ 2.1231 30.9492 51.8404 -Verdana_Bold.ttf 75 { 31.3248 55.6923 99 Z 2.1498 35.7955 42.3111 -Verdana_Bold.ttf 75 { 31.3248 55.6923 100 > 6.4662 38.0564 38.0564 -Verdana_Bold.ttf 75 { 31.3248 55.6923 101 ® 0.8681 49.2683 49.2683 -Verdana_Bold.ttf 75 { 31.3248 55.6923 102 © 0.8239 49.2683 49.2683 -Verdana_Bold.ttf 75 { 31.3248 55.6923 103 ] -0.2296 19.1555 55.6923 -Verdana_Bold.ttf 75 { 31.3248 55.6923 104 é -3.2019 33.9082 48.9606 -Verdana_Bold.ttf 75 { 31.3248 55.6923 105 z 12.6337 29.7357 31.9436 -Verdana_Bold.ttf 75 { 31.3248 55.6923 106 _ 48.3465 41.6923 6.0564 -Verdana_Bold.ttf 75 { 31.3248 55.6923 107 ¥ 2.0768 38.9042 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 1 t 3.5082 24.2160 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 2 h 0.1774 32.3226 44.4239 -Verdana_Bold.ttf 76 } 31.3248 55.6923 3 a 11.3748 31.7954 34.3675 -Verdana_Bold.ttf 76 } 31.3248 55.6923 4 n 11.0725 32.3226 33.1555 -Verdana_Bold.ttf 76 } 31.3248 55.6923 5 P 1.9873 35.4165 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 6 o 11.3594 35.1202 34.3675 -Verdana_Bold.ttf 76 } 31.3248 55.6923 7 e 11.1927 33.9082 34.3675 -Verdana_Bold.ttf 76 } 31.3248 55.6923 8 : 12.3427 10.6752 31.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 9 r 12.7409 23.3151 31.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 10 l -0.4619 10.2160 44.4239 -Verdana_Bold.ttf 76 } 31.3248 55.6923 11 i -0.0979 10.2160 44.4239 -Verdana_Bold.ttf 76 } 31.3248 55.6923 12 1 2.3283 28.7413 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 13 | -0.0804 8.4803 55.6923 -Verdana_Bold.ttf 76 } 31.3248 55.6923 14 N 2.3606 38.8363 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 15 f -0.0841 24.5271 44.4239 -Verdana_Bold.ttf 76 } 31.3248 55.6923 16 g 11.1277 33.5311 44.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 17 d 0.0259 33.5311 45.6359 -Verdana_Bold.ttf 76 } 31.3248 55.6923 18 W 2.2500 62.2208 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 19 s 11.2233 29.7391 34.3675 -Verdana_Bold.ttf 76 } 31.3248 55.6923 20 c 11.4529 29.6826 34.3675 -Verdana_Bold.ttf 76 } 31.3248 55.6923 21 u 12.7404 32.3226 33.1555 -Verdana_Bold.ttf 76 } 31.3248 55.6923 22 3 0.9374 33.8052 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 23 ~ 15.2860 41.7840 19.3716 -Verdana_Bold.ttf 76 } 31.3248 55.6923 24 # 1.8038 41.8499 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 25 O 0.8980 43.9002 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 26 ` -3.2032 16.9477 11.2684 -Verdana_Bold.ttf 76 } 31.3248 55.6923 27 @ 1.0210 47.6808 50.1066 -Verdana_Bold.ttf 76 } 31.3248 55.6923 28 F 2.1089 30.2610 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 29 S 0.9358 36.6318 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 30 p 11.5785 33.5311 44.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 31 “ 0.0598 30.4239 16.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 32 % 0.8211 66.6496 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 33 £ 0.7779 33.7487 43.5231 -Verdana_Bold.ttf 76 } 31.3248 55.6923 34 . 33.3674 10.6752 11.2684 -Verdana_Bold.ttf 76 } 31.3248 55.6923 35 2 0.7906 33.2780 43.5231 -Verdana_Bold.ttf 76 } 31.3248 55.6923 36 5 2.1063 33.0639 43.5231 -Verdana_Bold.ttf 76 } 31.3248 55.6923 37 m 11.2285 52.4335 33.1555 -Verdana_Bold.ttf 76 } 31.3248 55.6923 38 V 1.9177 42.3111 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 39 6 0.7079 34.8011 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 40 w 12.2888 54.7880 31.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 41 T 2.0460 37.2507 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 42 M 1.9419 44.7331 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 43 G 0.7936 40.2643 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 44 b -0.3408 33.5311 45.6359 -Verdana_Bold.ttf 76 } 31.3248 55.6923 45 9 0.9881 34.8011 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 46 ; 12.5286 16.5721 42.6188 -Verdana_Bold.ttf 76 } 31.3248 55.6923 47 D 2.4058 40.2643 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 48 L 1.9908 30.5721 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 49 y 12.6905 35.6325 43.5196 -Verdana_Bold.ttf 76 } 31.3248 55.6923 50 ‘ 0.0838 15.2120 16.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 51 \ -0.1770 31.6359 53.7390 -Verdana_Bold.ttf 76 } 31.3248 55.6923 52 R 2.1081 41.1651 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 53 < 6.1364 38.0564 38.0564 -Verdana_Bold.ttf 76 } 31.3248 55.6923 54 4 2.1185 37.2216 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 55 8 1.0407 36.2291 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 56 0 1.0030 35.0428 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 57 A 2.3202 43.5231 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 58 E 1.9927 30.7316 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 59 B 2.1647 36.1047 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 60 v 12.6170 35.6325 31.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 61 k 0.0675 34.5835 44.4239 -Verdana_Bold.ttf 76 } 31.3248 55.6923 62 J 1.9856 26.4804 43.5231 -Verdana_Bold.ttf 76 } 31.3248 55.6923 63 U 2.0105 38.0018 43.5231 -Verdana_Bold.ttf 76 } 31.3248 55.6923 64 j 0.1325 20.5270 56.0000 -Verdana_Bold.ttf 76 } 31.3248 55.6923 65 ( 0.1124 21.2683 56.0000 -Verdana_Bold.ttf 76 } 31.3248 55.6923 66 7 1.9910 33.3716 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 67 § 0.9926 33.3731 54.7915 -Verdana_Bold.ttf 76 } 31.3248 55.6923 68 $ -0.6293 34.4240 55.1557 -Verdana_Bold.ttf 76 } 31.3248 55.6923 69 € 0.9494 38.7447 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 70 / 0.1276 31.6359 53.7390 -Verdana_Bold.ttf 76 } 31.3248 55.6923 71 C 1.0873 36.1047 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 72 * 0.3055 32.2547 29.2120 -Verdana_Bold.ttf 76 } 31.3248 55.6923 73 ” -0.1323 30.4239 16.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 74 ? 0.7484 28.4593 43.5231 -Verdana_Bold.ttf 76 } 31.3248 55.6923 75 { 0.4031 31.3248 55.6923 -Verdana_Bold.ttf 76 } 31.3248 55.6923 76 } -0.2099 31.3248 55.6923 -Verdana_Bold.ttf 76 } 31.3248 55.6923 77 , 33.1316 16.5721 21.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 78 I 2.3443 24.5157 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 79 ° 0.7630 24.0564 23.8404 -Verdana_Bold.ttf 76 } 31.3248 55.6923 80 K 2.6795 39.5761 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 81 H 2.0556 38.3656 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 82 q 11.1892 33.5311 44.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 83 & 0.7669 48.3675 44.7350 -Verdana_Bold.ttf 76 } 31.3248 55.6923 84 ’ -0.0523 15.2120 16.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 85 [ 0.0370 19.1555 55.6923 -Verdana_Bold.ttf 76 } 31.3248 55.6923 86 - 21.5440 21.9436 7.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 87 Y 2.0674 42.5237 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 88 Q 0.7782 43.9002 55.0992 -Verdana_Bold.ttf 76 } 31.3248 55.6923 89 " 0.2865 25.0523 16.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 90 ! 1.9739 11.4279 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 91 x 12.5019 36.6284 31.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 92 ) -0.0119 21.2683 56.0000 -Verdana_Bold.ttf 76 } 31.3248 55.6923 93 = 13.7992 36.4803 23.1556 -Verdana_Bold.ttf 76 } 31.3248 55.6923 94 + 6.6692 38.3675 38.3675 -Verdana_Bold.ttf 76 } 31.3248 55.6923 95 X 2.2367 42.3111 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 96 » 10.0513 35.2683 30.4239 -Verdana_Bold.ttf 76 } 31.3248 55.6923 97 ' -0.3383 9.8404 16.7316 -Verdana_Bold.ttf 76 } 31.3248 55.6923 98 ¢ 2.4955 30.9492 51.8404 -Verdana_Bold.ttf 76 } 31.3248 55.6923 99 Z 2.1828 35.7955 42.3111 -Verdana_Bold.ttf 76 } 31.3248 55.6923 100 > 6.6323 38.0564 38.0564 -Verdana_Bold.ttf 76 } 31.3248 55.6923 101 ® 0.7831 49.2683 49.2683 -Verdana_Bold.ttf 76 } 31.3248 55.6923 102 © 0.8113 49.2683 49.2683 -Verdana_Bold.ttf 76 } 31.3248 55.6923 103 ] 0.0400 19.1555 55.6923 -Verdana_Bold.ttf 76 } 31.3248 55.6923 104 é -3.2828 33.9082 48.9606 -Verdana_Bold.ttf 76 } 31.3248 55.6923 105 z 12.2989 29.7357 31.9436 -Verdana_Bold.ttf 76 } 31.3248 55.6923 106 _ 48.0998 41.6923 6.0564 -Verdana_Bold.ttf 76 } 31.3248 55.6923 107 ¥ 1.9235 38.9042 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 1 t -29.7579 24.2160 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 2 h -33.3977 32.3226 44.4239 -Verdana_Bold.ttf 77 , 16.5721 21.9436 3 a -21.5980 31.7954 34.3675 -Verdana_Bold.ttf 77 , 16.5721 21.9436 4 n -21.9267 32.3226 33.1555 -Verdana_Bold.ttf 77 , 16.5721 21.9436 5 P -31.3028 35.4165 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 6 o -21.8614 35.1202 34.3675 -Verdana_Bold.ttf 77 , 16.5721 21.9436 7 e -21.8983 33.9082 34.3675 -Verdana_Bold.ttf 77 , 16.5721 21.9436 8 : -20.7332 10.6752 31.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 9 r -20.5850 23.3151 31.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 10 l -33.1156 10.2160 44.4239 -Verdana_Bold.ttf 77 , 16.5721 21.9436 11 i -32.8891 10.2160 44.4239 -Verdana_Bold.ttf 77 , 16.5721 21.9436 12 1 -31.0399 28.7413 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 13 | -33.0944 8.4803 55.6923 -Verdana_Bold.ttf 77 , 16.5721 21.9436 14 N -31.2085 38.8363 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 15 f -33.4880 24.5271 44.4239 -Verdana_Bold.ttf 77 , 16.5721 21.9436 16 g -21.9019 33.5311 44.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 17 d -33.2368 33.5311 45.6359 -Verdana_Bold.ttf 77 , 16.5721 21.9436 18 W -31.1690 62.2208 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 19 s -21.8789 29.7391 34.3675 -Verdana_Bold.ttf 77 , 16.5721 21.9436 20 c -21.9242 29.6826 34.3675 -Verdana_Bold.ttf 77 , 16.5721 21.9436 21 u -20.7933 32.3226 33.1555 -Verdana_Bold.ttf 77 , 16.5721 21.9436 22 3 -32.3010 33.8052 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 23 ~ -17.7084 41.7840 19.3716 -Verdana_Bold.ttf 77 , 16.5721 21.9436 24 # -31.2162 41.8499 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 25 O -31.9923 43.9002 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 26 ` -36.5194 16.9477 11.2684 -Verdana_Bold.ttf 77 , 16.5721 21.9436 27 @ -32.2619 47.6808 50.1066 -Verdana_Bold.ttf 77 , 16.5721 21.9436 28 F -31.1531 30.2610 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 29 S -32.4314 36.6318 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 30 p -21.8871 33.5311 44.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 31 “ -33.1008 30.4239 16.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 32 % -32.2539 66.6496 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 33 £ -32.2637 33.7487 43.5231 -Verdana_Bold.ttf 77 , 16.5721 21.9436 34 . -0.1840 10.6752 11.2684 -Verdana_Bold.ttf 77 , 16.5721 21.9436 35 2 -32.3073 33.2780 43.5231 -Verdana_Bold.ttf 77 , 16.5721 21.9436 36 5 -31.2240 33.0639 43.5231 -Verdana_Bold.ttf 77 , 16.5721 21.9436 37 m -21.9538 52.4335 33.1555 -Verdana_Bold.ttf 77 , 16.5721 21.9436 38 V -31.1349 42.3111 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 39 6 -32.1604 34.8011 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 40 w -20.5816 54.7880 31.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 41 T -31.2259 37.2507 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 42 M -31.1308 44.7331 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 43 G -32.3497 40.2643 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 44 b -33.1156 33.5311 45.6359 -Verdana_Bold.ttf 77 , 16.5721 21.9436 45 9 -32.0841 34.8011 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 46 ; -20.7492 16.5721 42.6188 -Verdana_Bold.ttf 77 , 16.5721 21.9436 47 D -30.8001 40.2643 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 48 L -30.9564 30.5721 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 49 y -20.6639 35.6325 43.5196 -Verdana_Bold.ttf 77 , 16.5721 21.9436 50 ‘ -32.9048 15.2120 16.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 51 \ -33.2408 31.6359 53.7390 -Verdana_Bold.ttf 77 , 16.5721 21.9436 52 R -31.0225 41.1651 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 53 < -26.5650 38.0564 38.0564 -Verdana_Bold.ttf 77 , 16.5721 21.9436 54 4 -31.1676 37.2216 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 55 8 -32.3072 36.2291 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 56 0 -32.1518 35.0428 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 57 A -31.0826 43.5231 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 58 E -31.0831 30.7316 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 59 B -30.7862 36.1047 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 60 v -20.7492 35.6325 31.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 61 k -33.1432 34.5835 44.4239 -Verdana_Bold.ttf 77 , 16.5721 21.9436 62 J -31.1326 26.4804 43.5231 -Verdana_Bold.ttf 77 , 16.5721 21.9436 63 U -30.9658 38.0018 43.5231 -Verdana_Bold.ttf 77 , 16.5721 21.9436 64 j -33.3290 20.5270 56.0000 -Verdana_Bold.ttf 77 , 16.5721 21.9436 65 ( -33.1536 21.2683 56.0000 -Verdana_Bold.ttf 77 , 16.5721 21.9436 66 7 -31.1720 33.3716 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 67 § -31.9717 33.3731 54.7915 -Verdana_Bold.ttf 77 , 16.5721 21.9436 68 $ -33.9220 34.4240 55.1557 -Verdana_Bold.ttf 77 , 16.5721 21.9436 69 € -32.1571 38.7447 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 70 / -33.2063 31.6359 53.7390 -Verdana_Bold.ttf 77 , 16.5721 21.9436 71 C -32.4995 36.1047 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 72 * -33.2296 32.2547 29.2120 -Verdana_Bold.ttf 77 , 16.5721 21.9436 73 ” -33.1469 30.4239 16.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 74 ? -32.1158 28.4593 43.5231 -Verdana_Bold.ttf 77 , 16.5721 21.9436 75 { -33.0551 31.3248 55.6923 -Verdana_Bold.ttf 77 , 16.5721 21.9436 76 } -32.8726 31.3248 55.6923 -Verdana_Bold.ttf 77 , 16.5721 21.9436 77 , -0.0638 16.5721 21.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 78 I -31.0419 24.5157 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 79 ° -32.3658 24.0564 23.8404 -Verdana_Bold.ttf 77 , 16.5721 21.9436 80 K -30.8225 39.5761 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 81 H -31.1730 38.3656 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 82 q -22.1427 33.5311 44.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 83 & -32.0754 48.3675 44.7350 -Verdana_Bold.ttf 77 , 16.5721 21.9436 84 ’ -33.2138 15.2120 16.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 85 [ -32.8917 19.1555 55.6923 -Verdana_Bold.ttf 77 , 16.5721 21.9436 86 - -11.7002 21.9436 7.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 87 Y -31.3979 42.5237 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 88 Q -32.3037 43.9002 55.0992 -Verdana_Bold.ttf 77 , 16.5721 21.9436 89 " -33.4137 25.0523 16.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 90 ! -30.9912 11.4279 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 91 x -20.6449 36.6284 31.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 92 ) -33.2255 21.2683 56.0000 -Verdana_Bold.ttf 77 , 16.5721 21.9436 93 = -18.9278 36.4803 23.1556 -Verdana_Bold.ttf 77 , 16.5721 21.9436 94 + -26.3762 38.3675 38.3675 -Verdana_Bold.ttf 77 , 16.5721 21.9436 95 X -30.9571 42.3111 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 96 » -22.8050 35.2683 30.4239 -Verdana_Bold.ttf 77 , 16.5721 21.9436 97 ' -33.1059 9.8404 16.7316 -Verdana_Bold.ttf 77 , 16.5721 21.9436 98 ¢ -30.4999 30.9492 51.8404 -Verdana_Bold.ttf 77 , 16.5721 21.9436 99 Z -30.9349 35.7955 42.3111 -Verdana_Bold.ttf 77 , 16.5721 21.9436 100 > -26.7578 38.0564 38.0564 -Verdana_Bold.ttf 77 , 16.5721 21.9436 101 ® -32.2118 49.2683 49.2683 -Verdana_Bold.ttf 77 , 16.5721 21.9436 102 © -32.3991 49.2683 49.2683 -Verdana_Bold.ttf 77 , 16.5721 21.9436 103 ] -32.9058 19.1555 55.6923 -Verdana_Bold.ttf 77 , 16.5721 21.9436 104 é -36.6116 33.9082 48.9606 -Verdana_Bold.ttf 77 , 16.5721 21.9436 105 z -20.4972 29.7357 31.9436 -Verdana_Bold.ttf 77 , 16.5721 21.9436 106 _ 15.3531 41.6923 6.0564 -Verdana_Bold.ttf 77 , 16.5721 21.9436 107 ¥ -31.0007 38.9042 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 1 t 0.8151 24.2160 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 2 h -2.0933 32.3226 44.4239 -Verdana_Bold.ttf 78 I 24.5157 42.3111 3 a 9.0984 31.7954 34.3675 -Verdana_Bold.ttf 78 I 24.5157 42.3111 4 n 8.9440 32.3226 33.1555 -Verdana_Bold.ttf 78 I 24.5157 42.3111 5 P -0.0449 35.4165 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 6 o 9.0692 35.1202 34.3675 -Verdana_Bold.ttf 78 I 24.5157 42.3111 7 e 8.9067 33.9082 34.3675 -Verdana_Bold.ttf 78 I 24.5157 42.3111 8 : 10.1855 10.6752 31.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 9 r 10.0515 23.3151 31.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 10 l -2.2499 10.2160 44.4239 -Verdana_Bold.ttf 78 I 24.5157 42.3111 11 i -1.9445 10.2160 44.4239 -Verdana_Bold.ttf 78 I 24.5157 42.3111 12 1 -0.0755 28.7413 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 13 | -1.9002 8.4803 55.6923 -Verdana_Bold.ttf 78 I 24.5157 42.3111 14 N -0.0831 38.8363 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 15 f -1.8303 24.5271 44.4239 -Verdana_Bold.ttf 78 I 24.5157 42.3111 16 g 9.0502 33.5311 44.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 17 d -1.8772 33.5311 45.6359 -Verdana_Bold.ttf 78 I 24.5157 42.3111 18 W -0.0889 62.2208 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 19 s 9.0574 29.7391 34.3675 -Verdana_Bold.ttf 78 I 24.5157 42.3111 20 c 9.4042 29.6826 34.3675 -Verdana_Bold.ttf 78 I 24.5157 42.3111 21 u 10.2772 32.3226 33.1555 -Verdana_Bold.ttf 78 I 24.5157 42.3111 22 3 -0.8957 33.8052 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 23 ~ 13.4069 41.7840 19.3716 -Verdana_Bold.ttf 78 I 24.5157 42.3111 24 # 0.0515 41.8499 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 25 O -0.9515 43.9002 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 26 ` -5.4535 16.9477 11.2684 -Verdana_Bold.ttf 78 I 24.5157 42.3111 27 @ -1.3505 47.6808 50.1066 -Verdana_Bold.ttf 78 I 24.5157 42.3111 28 F 0.0043 30.2610 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 29 S -1.3505 36.6318 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 30 p 9.2082 33.5311 44.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 31 “ -1.6832 30.4239 16.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 32 % -1.0410 66.6496 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 33 £ -1.2141 33.7487 43.5231 -Verdana_Bold.ttf 78 I 24.5157 42.3111 34 . 31.2890 10.6752 11.2684 -Verdana_Bold.ttf 78 I 24.5157 42.3111 35 2 -1.0832 33.2780 43.5231 -Verdana_Bold.ttf 78 I 24.5157 42.3111 36 5 0.0943 33.0639 43.5231 -Verdana_Bold.ttf 78 I 24.5157 42.3111 37 m 9.0181 52.4335 33.1555 -Verdana_Bold.ttf 78 I 24.5157 42.3111 38 V -0.0465 42.3111 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 39 6 -1.3548 34.8011 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 40 w 10.1869 54.7880 31.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 41 T -0.1582 37.2507 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 42 M 0.0770 44.7331 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 43 G -1.3589 40.2643 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 44 b -1.9974 33.5311 45.6359 -Verdana_Bold.ttf 78 I 24.5157 42.3111 45 9 -0.7266 34.8011 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 46 ; 9.9634 16.5721 42.6188 -Verdana_Bold.ttf 78 I 24.5157 42.3111 47 D 0.1269 40.2643 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 48 L 0.1571 30.5721 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 49 y 10.3776 35.6325 43.5196 -Verdana_Bold.ttf 78 I 24.5157 42.3111 50 ‘ -1.9528 15.2120 16.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 51 \ -2.2045 31.6359 53.7390 -Verdana_Bold.ttf 78 I 24.5157 42.3111 52 R -0.0920 41.1651 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 53 < 4.1049 38.0564 38.0564 -Verdana_Bold.ttf 78 I 24.5157 42.3111 54 4 0.1909 37.2216 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 55 8 -1.3523 36.2291 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 56 0 -0.9895 35.0428 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 57 A -0.1681 43.5231 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 58 E -0.0028 30.7316 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 59 B 0.1897 36.1047 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 60 v 10.1888 35.6325 31.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 61 k -2.1016 34.5835 44.4239 -Verdana_Bold.ttf 78 I 24.5157 42.3111 62 J -0.1084 26.4804 43.5231 -Verdana_Bold.ttf 78 I 24.5157 42.3111 63 U -0.1803 38.0018 43.5231 -Verdana_Bold.ttf 78 I 24.5157 42.3111 64 j -2.0272 20.5270 56.0000 -Verdana_Bold.ttf 78 I 24.5157 42.3111 65 ( -1.7040 21.2683 56.0000 -Verdana_Bold.ttf 78 I 24.5157 42.3111 66 7 0.2562 33.3716 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 67 § -0.9881 33.3731 54.7915 -Verdana_Bold.ttf 78 I 24.5157 42.3111 68 $ -2.6395 34.4240 55.1557 -Verdana_Bold.ttf 78 I 24.5157 42.3111 69 € -1.4815 38.7447 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 70 / -2.1541 31.6359 53.7390 -Verdana_Bold.ttf 78 I 24.5157 42.3111 71 C -1.1749 36.1047 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 72 * -1.9705 32.2547 29.2120 -Verdana_Bold.ttf 78 I 24.5157 42.3111 73 ” -2.2441 30.4239 16.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 74 ? -1.0825 28.4593 43.5231 -Verdana_Bold.ttf 78 I 24.5157 42.3111 75 { -2.1672 31.3248 55.6923 -Verdana_Bold.ttf 78 I 24.5157 42.3111 76 } -1.8922 31.3248 55.6923 -Verdana_Bold.ttf 78 I 24.5157 42.3111 77 , 31.1258 16.5721 21.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 78 I -0.1011 24.5157 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 79 ° -1.2012 24.0564 23.8404 -Verdana_Bold.ttf 78 I 24.5157 42.3111 80 K 0.1807 39.5761 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 81 H 0.1963 38.3656 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 82 q 9.3708 33.5311 44.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 83 & -1.0389 48.3675 44.7350 -Verdana_Bold.ttf 78 I 24.5157 42.3111 84 ’ -1.9893 15.2120 16.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 85 [ -2.0691 19.1555 55.6923 -Verdana_Bold.ttf 78 I 24.5157 42.3111 86 - 19.3239 21.9436 7.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 87 Y -0.0519 42.5237 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 88 Q -1.0447 43.9002 55.0992 -Verdana_Bold.ttf 78 I 24.5157 42.3111 89 " -2.0225 25.0523 16.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 90 ! -0.0022 11.4279 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 91 x 10.5609 36.6284 31.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 92 ) -2.1121 21.2683 56.0000 -Verdana_Bold.ttf 78 I 24.5157 42.3111 93 = 11.8295 36.4803 23.1556 -Verdana_Bold.ttf 78 I 24.5157 42.3111 94 + 4.4682 38.3675 38.3675 -Verdana_Bold.ttf 78 I 24.5157 42.3111 95 X 0.2789 42.3111 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 96 » 8.1252 35.2683 30.4239 -Verdana_Bold.ttf 78 I 24.5157 42.3111 97 ' -2.1920 9.8404 16.7316 -Verdana_Bold.ttf 78 I 24.5157 42.3111 98 ¢ 0.1378 30.9492 51.8404 -Verdana_Bold.ttf 78 I 24.5157 42.3111 99 Z 0.2094 35.7955 42.3111 -Verdana_Bold.ttf 78 I 24.5157 42.3111 100 > 4.3460 38.0564 38.0564 -Verdana_Bold.ttf 78 I 24.5157 42.3111 101 ® -0.9733 49.2683 49.2683 -Verdana_Bold.ttf 78 I 24.5157 42.3111 102 © -1.3871 49.2683 49.2683 -Verdana_Bold.ttf 78 I 24.5157 42.3111 103 ] -1.8288 19.1555 55.6923 -Verdana_Bold.ttf 78 I 24.5157 42.3111 104 é -5.2162 33.9082 48.9606 -Verdana_Bold.ttf 78 I 24.5157 42.3111 105 z 10.3723 29.7357 31.9436 -Verdana_Bold.ttf 78 I 24.5157 42.3111 106 _ 46.0280 41.6923 6.0564 -Verdana_Bold.ttf 78 I 24.5157 42.3111 107 ¥ 0.0798 38.9042 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 1 t 2.7342 24.2160 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 2 h -1.3416 32.3226 44.4239 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 3 a 10.4686 31.7954 34.3675 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 4 n 10.2186 32.3226 33.1555 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 5 P 1.2862 35.4165 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 6 o 9.9265 35.1202 34.3675 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 7 e 10.5313 33.9082 34.3675 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 8 : 11.4982 10.6752 31.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 9 r 11.4420 23.3151 31.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 10 l -0.8320 10.2160 44.4239 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 11 i -0.9937 10.2160 44.4239 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 12 1 1.0307 28.7413 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 13 | -0.6513 8.4803 55.6923 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 14 N 1.1115 38.8363 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 15 f -1.1334 24.5271 44.4239 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 16 g 10.5447 33.5311 44.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 17 d -1.2586 33.5311 45.6359 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 18 W 0.8076 62.2208 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 19 s 10.2051 29.7391 34.3675 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 20 c 10.3844 29.6826 34.3675 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 21 u 11.5803 32.3226 33.1555 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 22 3 -0.0279 33.8052 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 23 ~ 14.2983 41.7840 19.3716 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 24 # 1.2127 41.8499 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 25 O 0.0447 43.9002 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 26 ` -4.2321 16.9477 11.2684 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 27 @ 0.0432 47.6808 50.1066 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 28 F 1.0486 30.2610 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 29 S 0.0500 36.6318 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 30 p 10.2572 33.5311 44.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 31 “ -0.7177 30.4239 16.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 32 % -0.1171 66.6496 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 33 £ 0.3886 33.7487 43.5231 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 34 . 32.3576 10.6752 11.2684 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 35 2 0.1227 33.2780 43.5231 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 36 5 1.0896 33.0639 43.5231 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 37 m 10.1869 52.4335 33.1555 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 38 V 1.2850 42.3111 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 39 6 -0.1813 34.8011 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 40 w 11.4892 54.7880 31.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 41 T 1.0835 37.2507 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 42 M 1.2893 44.7331 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 43 G 0.1774 40.2643 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 44 b -0.9967 33.5311 45.6359 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 45 9 -0.0745 34.8011 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 46 ; 11.3556 16.5721 42.6188 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 47 D 1.3216 40.2643 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 48 L 1.2984 30.5721 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 49 y 11.7231 35.6325 43.5196 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 50 ‘ -1.0545 15.2120 16.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 51 \ -1.1460 31.6359 53.7390 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 52 R 1.1533 41.1651 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 53 < 5.2601 38.0564 38.0564 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 54 4 1.3999 37.2216 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 55 8 0.2630 36.2291 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 56 0 -0.0320 35.0428 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 57 A 1.4500 43.5231 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 58 E 0.8830 30.7316 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 59 B 1.0273 36.1047 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 60 v 11.3855 35.6325 31.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 61 k -1.0467 34.5835 44.4239 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 62 J 1.6843 26.4804 43.5231 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 63 U 1.4235 38.0018 43.5231 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 64 j -1.0823 20.5270 56.0000 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 65 ( -1.3889 21.2683 56.0000 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 66 7 1.2533 33.3716 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 67 § 0.0393 33.3731 54.7915 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 68 $ -1.6082 34.4240 55.1557 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 69 € -0.2042 38.7447 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 70 / -0.7943 31.6359 53.7390 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 71 C -0.0494 36.1047 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 72 * -0.7745 32.2547 29.2120 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 73 ” -0.8015 30.4239 16.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 74 ? -0.1860 28.4593 43.5231 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 75 { -0.9748 31.3248 55.6923 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 76 } -1.0821 31.3248 55.6923 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 77 , 32.2257 16.5721 21.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 78 I 1.1692 24.5157 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 79 ° -0.1864 24.0564 23.8404 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 80 K 1.0145 39.5761 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 81 H 0.8014 38.3656 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 82 q 10.0159 33.5311 44.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 83 & -0.0500 48.3675 44.7350 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 84 ’ -0.7860 15.2120 16.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 85 [ -0.5799 19.1555 55.6923 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 86 - 20.5042 21.9436 7.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 87 Y 1.1101 42.5237 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 88 Q -0.1421 43.9002 55.0992 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 89 " -1.1044 25.0523 16.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 90 ! 1.2446 11.4279 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 91 x 11.5139 36.6284 31.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 92 ) -0.8387 21.2683 56.0000 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 93 = 13.2677 36.4803 23.1556 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 94 + 5.7345 38.3675 38.3675 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 95 X 1.1202 42.3111 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 96 » 9.3768 35.2683 30.4239 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 97 ' -0.8225 9.8404 16.7316 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 98 ¢ 1.2891 30.9492 51.8404 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 99 Z 1.2417 35.7955 42.3111 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 100 > 5.5464 38.0564 38.0564 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 101 ® -0.2365 49.2683 49.2683 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 102 © 0.0399 49.2683 49.2683 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 103 ] -0.8224 19.1555 55.6923 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 104 é -4.3026 33.9082 48.9606 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 105 z 11.7145 29.7357 31.9436 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 106 _ 47.6277 41.6923 6.0564 -Verdana_Bold.ttf 79 ° 24.0564 23.8404 107 ¥ 1.0548 38.9042 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 1 t 1.1183 24.2160 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 2 h -2.0254 32.3226 44.4239 -Verdana_Bold.ttf 80 K 39.5761 42.3111 3 a 8.8850 31.7954 34.3675 -Verdana_Bold.ttf 80 K 39.5761 42.3111 4 n 9.1651 32.3226 33.1555 -Verdana_Bold.ttf 80 K 39.5761 42.3111 5 P 0.3319 35.4165 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 6 o 9.1067 35.1202 34.3675 -Verdana_Bold.ttf 80 K 39.5761 42.3111 7 e 9.1937 33.9082 34.3675 -Verdana_Bold.ttf 80 K 39.5761 42.3111 8 : 10.3291 10.6752 31.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 9 r 10.5714 23.3151 31.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 10 l -2.1196 10.2160 44.4239 -Verdana_Bold.ttf 80 K 39.5761 42.3111 11 i -2.1333 10.2160 44.4239 -Verdana_Bold.ttf 80 K 39.5761 42.3111 12 1 -0.0519 28.7413 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 13 | -2.5603 8.4803 55.6923 -Verdana_Bold.ttf 80 K 39.5761 42.3111 14 N 0.0688 38.8363 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 15 f -2.1795 24.5271 44.4239 -Verdana_Bold.ttf 80 K 39.5761 42.3111 16 g 8.9696 33.5311 44.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 17 d -2.1577 33.5311 45.6359 -Verdana_Bold.ttf 80 K 39.5761 42.3111 18 W 0.2231 62.2208 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 19 s 8.9850 29.7391 34.3675 -Verdana_Bold.ttf 80 K 39.5761 42.3111 20 c 9.3513 29.6826 34.3675 -Verdana_Bold.ttf 80 K 39.5761 42.3111 21 u 10.1963 32.3226 33.1555 -Verdana_Bold.ttf 80 K 39.5761 42.3111 22 3 -1.5628 33.8052 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 23 ~ 12.8489 41.7840 19.3716 -Verdana_Bold.ttf 80 K 39.5761 42.3111 24 # -0.1428 41.8499 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 25 O -0.9958 43.9002 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 26 ` -5.1441 16.9477 11.2684 -Verdana_Bold.ttf 80 K 39.5761 42.3111 27 @ -1.1601 47.6808 50.1066 -Verdana_Bold.ttf 80 K 39.5761 42.3111 28 F 0.0609 30.2610 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 29 S -0.8923 36.6318 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 30 p 9.0993 33.5311 44.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 31 “ -2.2496 30.4239 16.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 32 % -0.6980 66.6496 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 33 £ -1.2574 33.7487 43.5231 -Verdana_Bold.ttf 80 K 39.5761 42.3111 34 . 30.8286 10.6752 11.2684 -Verdana_Bold.ttf 80 K 39.5761 42.3111 35 2 -0.7898 33.2780 43.5231 -Verdana_Bold.ttf 80 K 39.5761 42.3111 36 5 -0.1285 33.0639 43.5231 -Verdana_Bold.ttf 80 K 39.5761 42.3111 37 m 9.1706 52.4335 33.1555 -Verdana_Bold.ttf 80 K 39.5761 42.3111 38 V -0.0130 42.3111 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 39 6 -1.0865 34.8011 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 40 w 10.2912 54.7880 31.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 41 T -0.0010 37.2507 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 42 M -0.0996 44.7331 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 43 G -1.2757 40.2643 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 44 b -2.0012 33.5311 45.6359 -Verdana_Bold.ttf 80 K 39.5761 42.3111 45 9 -0.9173 34.8011 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 46 ; 10.3293 16.5721 42.6188 -Verdana_Bold.ttf 80 K 39.5761 42.3111 47 D 0.0471 40.2643 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 48 L 0.0177 30.5721 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 49 y 10.3384 35.6325 43.5196 -Verdana_Bold.ttf 80 K 39.5761 42.3111 50 ‘ -2.1875 15.2120 16.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 51 \ -2.0832 31.6359 53.7390 -Verdana_Bold.ttf 80 K 39.5761 42.3111 52 R 0.1306 41.1651 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 53 < 4.2785 38.0564 38.0564 -Verdana_Bold.ttf 80 K 39.5761 42.3111 54 4 -0.0903 37.2216 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 55 8 -1.1694 36.2291 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 56 0 -1.2857 35.0428 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 57 A -0.1578 43.5231 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 58 E 0.0243 30.7316 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 59 B -0.2572 36.1047 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 60 v 10.6498 35.6325 31.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 61 k -2.2522 34.5835 44.4239 -Verdana_Bold.ttf 80 K 39.5761 42.3111 62 J -0.0708 26.4804 43.5231 -Verdana_Bold.ttf 80 K 39.5761 42.3111 63 U -0.0689 38.0018 43.5231 -Verdana_Bold.ttf 80 K 39.5761 42.3111 64 j -2.0724 20.5270 56.0000 -Verdana_Bold.ttf 80 K 39.5761 42.3111 65 ( -2.1883 21.2683 56.0000 -Verdana_Bold.ttf 80 K 39.5761 42.3111 66 7 -0.1236 33.3716 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 67 § -1.5114 33.3731 54.7915 -Verdana_Bold.ttf 80 K 39.5761 42.3111 68 $ -2.6579 34.4240 55.1557 -Verdana_Bold.ttf 80 K 39.5761 42.3111 69 € -1.0918 38.7447 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 70 / -1.8789 31.6359 53.7390 -Verdana_Bold.ttf 80 K 39.5761 42.3111 71 C -1.2921 36.1047 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 72 * -2.0122 32.2547 29.2120 -Verdana_Bold.ttf 80 K 39.5761 42.3111 73 ” -1.9616 30.4239 16.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 74 ? -1.2004 28.4593 43.5231 -Verdana_Bold.ttf 80 K 39.5761 42.3111 75 { -2.4114 31.3248 55.6923 -Verdana_Bold.ttf 80 K 39.5761 42.3111 76 } -2.1527 31.3248 55.6923 -Verdana_Bold.ttf 80 K 39.5761 42.3111 77 , 30.9528 16.5721 21.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 78 I -0.0134 24.5157 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 79 ° -1.3988 24.0564 23.8404 -Verdana_Bold.ttf 80 K 39.5761 42.3111 80 K 0.1578 39.5761 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 81 H -0.1939 38.3656 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 82 q 9.1081 33.5311 44.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 83 & -1.6259 48.3675 44.7350 -Verdana_Bold.ttf 80 K 39.5761 42.3111 84 ’ -2.4305 15.2120 16.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 85 [ -2.3101 19.1555 55.6923 -Verdana_Bold.ttf 80 K 39.5761 42.3111 86 - 18.9749 21.9436 7.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 87 Y -0.0471 42.5237 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 88 Q -1.4720 43.9002 55.0992 -Verdana_Bold.ttf 80 K 39.5761 42.3111 89 " -2.1600 25.0523 16.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 90 ! 0.5117 11.4279 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 91 x 10.3650 36.6284 31.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 92 ) -1.8771 21.2683 56.0000 -Verdana_Bold.ttf 80 K 39.5761 42.3111 93 = 11.8683 36.4803 23.1556 -Verdana_Bold.ttf 80 K 39.5761 42.3111 94 + 4.3608 38.3675 38.3675 -Verdana_Bold.ttf 80 K 39.5761 42.3111 95 X -0.0745 42.3111 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 96 » 8.2048 35.2683 30.4239 -Verdana_Bold.ttf 80 K 39.5761 42.3111 97 ' -1.9567 9.8404 16.7316 -Verdana_Bold.ttf 80 K 39.5761 42.3111 98 ¢ 0.0613 30.9492 51.8404 -Verdana_Bold.ttf 80 K 39.5761 42.3111 99 Z 0.1826 35.7955 42.3111 -Verdana_Bold.ttf 80 K 39.5761 42.3111 100 > 4.5066 38.0564 38.0564 -Verdana_Bold.ttf 80 K 39.5761 42.3111 101 ® -1.1241 49.2683 49.2683 -Verdana_Bold.ttf 80 K 39.5761 42.3111 102 © -1.3896 49.2683 49.2683 -Verdana_Bold.ttf 80 K 39.5761 42.3111 103 ] -2.2812 19.1555 55.6923 -Verdana_Bold.ttf 80 K 39.5761 42.3111 104 é -5.2968 33.9082 48.9606 -Verdana_Bold.ttf 80 K 39.5761 42.3111 105 z 10.3824 29.7357 31.9436 -Verdana_Bold.ttf 80 K 39.5761 42.3111 106 _ 46.1823 41.6923 6.0564 -Verdana_Bold.ttf 80 K 39.5761 42.3111 107 ¥ -0.1991 38.9042 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 1 t 1.5052 24.2160 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 2 h -1.8937 32.3226 44.4239 -Verdana_Bold.ttf 81 H 38.3656 42.3111 3 a 9.0032 31.7954 34.3675 -Verdana_Bold.ttf 81 H 38.3656 42.3111 4 n 9.1915 32.3226 33.1555 -Verdana_Bold.ttf 81 H 38.3656 42.3111 5 P -0.3214 35.4165 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 6 o 9.0939 35.1202 34.3675 -Verdana_Bold.ttf 81 H 38.3656 42.3111 7 e 9.1324 33.9082 34.3675 -Verdana_Bold.ttf 81 H 38.3656 42.3111 8 : 10.3620 10.6752 31.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 9 r 10.4064 23.3151 31.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 10 l -2.0768 10.2160 44.4239 -Verdana_Bold.ttf 81 H 38.3656 42.3111 11 i -2.2824 10.2160 44.4239 -Verdana_Bold.ttf 81 H 38.3656 42.3111 12 1 0.1233 28.7413 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 13 | -2.4201 8.4803 55.6923 -Verdana_Bold.ttf 81 H 38.3656 42.3111 14 N -0.0519 38.8363 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 15 f -1.9754 24.5271 44.4239 -Verdana_Bold.ttf 81 H 38.3656 42.3111 16 g 9.3588 33.5311 44.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 17 d -2.1766 33.5311 45.6359 -Verdana_Bold.ttf 81 H 38.3656 42.3111 18 W -0.1137 62.2208 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 19 s 8.9437 29.7391 34.3675 -Verdana_Bold.ttf 81 H 38.3656 42.3111 20 c 9.1499 29.6826 34.3675 -Verdana_Bold.ttf 81 H 38.3656 42.3111 21 u 10.4905 32.3226 33.1555 -Verdana_Bold.ttf 81 H 38.3656 42.3111 22 3 -1.5892 33.8052 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 23 ~ 13.6261 41.7840 19.3716 -Verdana_Bold.ttf 81 H 38.3656 42.3111 24 # -0.2548 41.8499 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 25 O -1.2243 43.9002 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 26 ` -5.5336 16.9477 11.2684 -Verdana_Bold.ttf 81 H 38.3656 42.3111 27 @ -1.2167 47.6808 50.1066 -Verdana_Bold.ttf 81 H 38.3656 42.3111 28 F 0.0917 30.2610 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 29 S -1.3023 36.6318 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 30 p 9.2819 33.5311 44.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 31 “ -1.9231 30.4239 16.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 32 % -1.3606 66.6496 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 33 £ -0.7068 33.7487 43.5231 -Verdana_Bold.ttf 81 H 38.3656 42.3111 34 . 31.0525 10.6752 11.2684 -Verdana_Bold.ttf 81 H 38.3656 42.3111 35 2 -1.3346 33.2780 43.5231 -Verdana_Bold.ttf 81 H 38.3656 42.3111 36 5 -0.1709 33.0639 43.5231 -Verdana_Bold.ttf 81 H 38.3656 42.3111 37 m 9.0400 52.4335 33.1555 -Verdana_Bold.ttf 81 H 38.3656 42.3111 38 V -0.0337 42.3111 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 39 6 -1.0688 34.8011 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 40 w 10.4953 54.7880 31.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 41 T 0.1357 37.2507 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 42 M -0.0918 44.7331 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 43 G -1.0428 40.2643 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 44 b -1.9376 33.5311 45.6359 -Verdana_Bold.ttf 81 H 38.3656 42.3111 45 9 -0.9996 34.8011 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 46 ; 10.3573 16.5721 42.6188 -Verdana_Bold.ttf 81 H 38.3656 42.3111 47 D 0.0462 40.2643 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 48 L -0.0024 30.5721 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 49 y 10.3463 35.6325 43.5196 -Verdana_Bold.ttf 81 H 38.3656 42.3111 50 ‘ -2.2118 15.2120 16.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 51 \ -2.3936 31.6359 53.7390 -Verdana_Bold.ttf 81 H 38.3656 42.3111 52 R 0.0967 41.1651 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 53 < 4.5048 38.0564 38.0564 -Verdana_Bold.ttf 81 H 38.3656 42.3111 54 4 -0.2710 37.2216 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 55 8 -1.1661 36.2291 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 56 0 -1.2673 35.0428 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 57 A -0.0489 43.5231 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 58 E 0.0303 30.7316 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 59 B -0.2322 36.1047 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 60 v 10.2110 35.6325 31.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 61 k -2.0495 34.5835 44.4239 -Verdana_Bold.ttf 81 H 38.3656 42.3111 62 J 0.0198 26.4804 43.5231 -Verdana_Bold.ttf 81 H 38.3656 42.3111 63 U -0.1532 38.0018 43.5231 -Verdana_Bold.ttf 81 H 38.3656 42.3111 64 j -2.0556 20.5270 56.0000 -Verdana_Bold.ttf 81 H 38.3656 42.3111 65 ( -1.9496 21.2683 56.0000 -Verdana_Bold.ttf 81 H 38.3656 42.3111 66 7 -0.2498 33.3716 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 67 § -1.4562 33.3731 54.7915 -Verdana_Bold.ttf 81 H 38.3656 42.3111 68 $ -2.7154 34.4240 55.1557 -Verdana_Bold.ttf 81 H 38.3656 42.3111 69 € -1.2175 38.7447 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 70 / -1.9652 31.6359 53.7390 -Verdana_Bold.ttf 81 H 38.3656 42.3111 71 C -1.0292 36.1047 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 72 * -2.0500 32.2547 29.2120 -Verdana_Bold.ttf 81 H 38.3656 42.3111 73 ” -2.2492 30.4239 16.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 74 ? -1.4661 28.4593 43.5231 -Verdana_Bold.ttf 81 H 38.3656 42.3111 75 { -2.2118 31.3248 55.6923 -Verdana_Bold.ttf 81 H 38.3656 42.3111 76 } -2.1423 31.3248 55.6923 -Verdana_Bold.ttf 81 H 38.3656 42.3111 77 , 31.1114 16.5721 21.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 78 I -0.0088 24.5157 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 79 ° -1.3354 24.0564 23.8404 -Verdana_Bold.ttf 81 H 38.3656 42.3111 80 K 0.2590 39.5761 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 81 H 0.1862 38.3656 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 82 q 9.1239 33.5311 44.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 83 & -0.9315 48.3675 44.7350 -Verdana_Bold.ttf 81 H 38.3656 42.3111 84 ’ -2.4112 15.2120 16.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 85 [ -2.3277 19.1555 55.6923 -Verdana_Bold.ttf 81 H 38.3656 42.3111 86 - 19.2865 21.9436 7.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 87 Y -0.2986 42.5237 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 88 Q -1.1628 43.9002 55.0992 -Verdana_Bold.ttf 81 H 38.3656 42.3111 89 " -2.1167 25.0523 16.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 90 ! -0.1207 11.4279 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 91 x 10.4019 36.6284 31.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 92 ) -1.7135 21.2683 56.0000 -Verdana_Bold.ttf 81 H 38.3656 42.3111 93 = 11.8117 36.4803 23.1556 -Verdana_Bold.ttf 81 H 38.3656 42.3111 94 + 4.5486 38.3675 38.3675 -Verdana_Bold.ttf 81 H 38.3656 42.3111 95 X 0.0758 42.3111 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 96 » 7.8584 35.2683 30.4239 -Verdana_Bold.ttf 81 H 38.3656 42.3111 97 ' -2.0704 9.8404 16.7316 -Verdana_Bold.ttf 81 H 38.3656 42.3111 98 ¢ 0.1899 30.9492 51.8404 -Verdana_Bold.ttf 81 H 38.3656 42.3111 99 Z 0.0249 35.7955 42.3111 -Verdana_Bold.ttf 81 H 38.3656 42.3111 100 > 4.2999 38.0564 38.0564 -Verdana_Bold.ttf 81 H 38.3656 42.3111 101 ® -0.9603 49.2683 49.2683 -Verdana_Bold.ttf 81 H 38.3656 42.3111 102 © -1.3365 49.2683 49.2683 -Verdana_Bold.ttf 81 H 38.3656 42.3111 103 ] -1.9923 19.1555 55.6923 -Verdana_Bold.ttf 81 H 38.3656 42.3111 104 é -5.6477 33.9082 48.9606 -Verdana_Bold.ttf 81 H 38.3656 42.3111 105 z 10.2311 29.7357 31.9436 -Verdana_Bold.ttf 81 H 38.3656 42.3111 106 _ 45.9634 41.6923 6.0564 -Verdana_Bold.ttf 81 H 38.3656 42.3111 107 ¥ -0.0677 38.9042 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 1 t -7.6683 24.2160 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 2 h -11.1773 32.3226 44.4239 -Verdana_Bold.ttf 82 q 33.5311 44.7316 3 a -0.2148 31.7954 34.3675 -Verdana_Bold.ttf 82 q 33.5311 44.7316 4 n 0.2314 32.3226 33.1555 -Verdana_Bold.ttf 82 q 33.5311 44.7316 5 P -9.3675 35.4165 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 6 o 0.4016 35.1202 34.3675 -Verdana_Bold.ttf 82 q 33.5311 44.7316 7 e 0.1741 33.9082 34.3675 -Verdana_Bold.ttf 82 q 33.5311 44.7316 8 : 1.1986 10.6752 31.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 9 r 1.0832 23.3151 31.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 10 l -11.7495 10.2160 44.4239 -Verdana_Bold.ttf 82 q 33.5311 44.7316 11 i -11.3155 10.2160 44.4239 -Verdana_Bold.ttf 82 q 33.5311 44.7316 12 1 -8.9589 28.7413 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 13 | -11.6076 8.4803 55.6923 -Verdana_Bold.ttf 82 q 33.5311 44.7316 14 N -9.4416 38.8363 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 15 f -11.1647 24.5271 44.4239 -Verdana_Bold.ttf 82 q 33.5311 44.7316 16 g -0.0899 33.5311 44.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 17 d -11.3663 33.5311 45.6359 -Verdana_Bold.ttf 82 q 33.5311 44.7316 18 W -8.9812 62.2208 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 19 s -0.2018 29.7391 34.3675 -Verdana_Bold.ttf 82 q 33.5311 44.7316 20 c -0.1532 29.6826 34.3675 -Verdana_Bold.ttf 82 q 33.5311 44.7316 21 u 1.1913 32.3226 33.1555 -Verdana_Bold.ttf 82 q 33.5311 44.7316 22 3 -10.2750 33.8052 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 23 ~ 3.9798 41.7840 19.3716 -Verdana_Bold.ttf 82 q 33.5311 44.7316 24 # -9.4766 41.8499 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 25 O -10.4783 43.9002 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 26 ` -14.5398 16.9477 11.2684 -Verdana_Bold.ttf 82 q 33.5311 44.7316 27 @ -10.0606 47.6808 50.1066 -Verdana_Bold.ttf 82 q 33.5311 44.7316 28 F -9.3236 30.2610 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 29 S -10.4608 36.6318 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 30 p 0.1744 33.5311 44.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 31 “ -10.9859 30.4239 16.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 32 % -10.3972 66.6496 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 33 £ -10.5236 33.7487 43.5231 -Verdana_Bold.ttf 82 q 33.5311 44.7316 34 . 21.7579 10.6752 11.2684 -Verdana_Bold.ttf 82 q 33.5311 44.7316 35 2 -10.2841 33.2780 43.5231 -Verdana_Bold.ttf 82 q 33.5311 44.7316 36 5 -9.2215 33.0639 43.5231 -Verdana_Bold.ttf 82 q 33.5311 44.7316 37 m 0.0853 52.4335 33.1555 -Verdana_Bold.ttf 82 q 33.5311 44.7316 38 V -9.1704 42.3111 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 39 6 -10.6396 34.8011 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 40 w 1.3687 54.7880 31.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 41 T -9.0935 37.2507 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 42 M -9.2626 44.7331 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 43 G -10.2377 40.2643 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 44 b -11.2936 33.5311 45.6359 -Verdana_Bold.ttf 82 q 33.5311 44.7316 45 9 -10.1458 34.8011 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 46 ; 0.9543 16.5721 42.6188 -Verdana_Bold.ttf 82 q 33.5311 44.7316 47 D -9.0951 40.2643 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 48 L -9.1595 30.5721 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 49 y 0.9937 35.6325 43.5196 -Verdana_Bold.ttf 82 q 33.5311 44.7316 50 ‘ -11.2627 15.2120 16.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 51 \ -11.5369 31.6359 53.7390 -Verdana_Bold.ttf 82 q 33.5311 44.7316 52 R -9.1013 41.1651 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 53 < -4.6750 38.0564 38.0564 -Verdana_Bold.ttf 82 q 33.5311 44.7316 54 4 -9.2329 37.2216 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 55 8 -10.2747 36.2291 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 56 0 -10.3258 35.0428 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 57 A -8.8403 43.5231 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 58 E -9.3264 30.7316 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 59 B -9.1291 36.1047 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 60 v 1.4562 35.6325 31.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 61 k -11.1735 34.5835 44.4239 -Verdana_Bold.ttf 82 q 33.5311 44.7316 62 J -9.1926 26.4804 43.5231 -Verdana_Bold.ttf 82 q 33.5311 44.7316 63 U -9.5727 38.0018 43.5231 -Verdana_Bold.ttf 82 q 33.5311 44.7316 64 j -11.7415 20.5270 56.0000 -Verdana_Bold.ttf 82 q 33.5311 44.7316 65 ( -11.2684 21.2683 56.0000 -Verdana_Bold.ttf 82 q 33.5311 44.7316 66 7 -9.0854 33.3716 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 67 § -10.1982 33.3731 54.7915 -Verdana_Bold.ttf 82 q 33.5311 44.7316 68 $ -11.4039 34.4240 55.1557 -Verdana_Bold.ttf 82 q 33.5311 44.7316 69 € -10.2050 38.7447 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 70 / -11.2298 31.6359 53.7390 -Verdana_Bold.ttf 82 q 33.5311 44.7316 71 C -10.3147 36.1047 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 72 * -10.8808 32.2547 29.2120 -Verdana_Bold.ttf 82 q 33.5311 44.7316 73 ” -11.5446 30.4239 16.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 74 ? -10.0710 28.4593 43.5231 -Verdana_Bold.ttf 82 q 33.5311 44.7316 75 { -11.4571 31.3248 55.6923 -Verdana_Bold.ttf 82 q 33.5311 44.7316 76 } -11.2223 31.3248 55.6923 -Verdana_Bold.ttf 82 q 33.5311 44.7316 77 , 21.5807 16.5721 21.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 78 I -9.0101 24.5157 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 79 ° -10.2299 24.0564 23.8404 -Verdana_Bold.ttf 82 q 33.5311 44.7316 80 K -9.2117 39.5761 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 81 H -9.1135 38.3656 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 82 q 0.0490 33.5311 44.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 83 & -10.2987 48.3675 44.7350 -Verdana_Bold.ttf 82 q 33.5311 44.7316 84 ’ -11.4195 15.2120 16.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 85 [ -11.4510 19.1555 55.6923 -Verdana_Bold.ttf 82 q 33.5311 44.7316 86 - 9.9999 21.9436 7.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 87 Y -9.1362 42.5237 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 88 Q -10.2387 43.9002 55.0992 -Verdana_Bold.ttf 82 q 33.5311 44.7316 89 " -11.1572 25.0523 16.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 90 ! -9.1204 11.4279 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 91 x 1.4908 36.6284 31.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 92 ) -11.0801 21.2683 56.0000 -Verdana_Bold.ttf 82 q 33.5311 44.7316 93 = 2.9028 36.4803 23.1556 -Verdana_Bold.ttf 82 q 33.5311 44.7316 94 + -4.6363 38.3675 38.3675 -Verdana_Bold.ttf 82 q 33.5311 44.7316 95 X -9.4084 42.3111 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 96 » -0.9699 35.2683 30.4239 -Verdana_Bold.ttf 82 q 33.5311 44.7316 97 ' -11.2933 9.8404 16.7316 -Verdana_Bold.ttf 82 q 33.5311 44.7316 98 ¢ -8.8287 30.9492 51.8404 -Verdana_Bold.ttf 82 q 33.5311 44.7316 99 Z -9.1045 35.7955 42.3111 -Verdana_Bold.ttf 82 q 33.5311 44.7316 100 > -5.0700 38.0564 38.0564 -Verdana_Bold.ttf 82 q 33.5311 44.7316 101 ® -10.4190 49.2683 49.2683 -Verdana_Bold.ttf 82 q 33.5311 44.7316 102 © -10.5126 49.2683 49.2683 -Verdana_Bold.ttf 82 q 33.5311 44.7316 103 ] -11.4401 19.1555 55.6923 -Verdana_Bold.ttf 82 q 33.5311 44.7316 104 é -14.5724 33.9082 48.9606 -Verdana_Bold.ttf 82 q 33.5311 44.7316 105 z 1.0857 29.7357 31.9436 -Verdana_Bold.ttf 82 q 33.5311 44.7316 106 _ 37.3913 41.6923 6.0564 -Verdana_Bold.ttf 82 q 33.5311 44.7316 107 ¥ -8.8830 38.9042 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 1 t 2.6126 24.2160 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 2 h -1.1481 32.3226 44.4239 -Verdana_Bold.ttf 83 & 48.3675 44.7350 3 a 9.9798 31.7954 34.3675 -Verdana_Bold.ttf 83 & 48.3675 44.7350 4 n 10.3731 32.3226 33.1555 -Verdana_Bold.ttf 83 & 48.3675 44.7350 5 P 1.1880 35.4165 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 6 o 10.2670 35.1202 34.3675 -Verdana_Bold.ttf 83 & 48.3675 44.7350 7 e 10.2399 33.9082 34.3675 -Verdana_Bold.ttf 83 & 48.3675 44.7350 8 : 11.3491 10.6752 31.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 9 r 11.3744 23.3151 31.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 10 l -1.0844 10.2160 44.4239 -Verdana_Bold.ttf 83 & 48.3675 44.7350 11 i -0.8883 10.2160 44.4239 -Verdana_Bold.ttf 83 & 48.3675 44.7350 12 1 1.2137 28.7413 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 13 | -0.9617 8.4803 55.6923 -Verdana_Bold.ttf 83 & 48.3675 44.7350 14 N 0.8795 38.8363 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 15 f -0.7622 24.5271 44.4239 -Verdana_Bold.ttf 83 & 48.3675 44.7350 16 g 9.9209 33.5311 44.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 17 d -0.8151 33.5311 45.6359 -Verdana_Bold.ttf 83 & 48.3675 44.7350 18 W 1.0478 62.2208 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 19 s 10.4337 29.7391 34.3675 -Verdana_Bold.ttf 83 & 48.3675 44.7350 20 c 10.0626 29.6826 34.3675 -Verdana_Bold.ttf 83 & 48.3675 44.7350 21 u 11.6341 32.3226 33.1555 -Verdana_Bold.ttf 83 & 48.3675 44.7350 22 3 -0.2238 33.8052 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 23 ~ 14.5130 41.7840 19.3716 -Verdana_Bold.ttf 83 & 48.3675 44.7350 24 # 1.2192 41.8499 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 25 O -0.3372 43.9002 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 26 ` -4.2505 16.9477 11.2684 -Verdana_Bold.ttf 83 & 48.3675 44.7350 27 @ -0.1444 47.6808 50.1066 -Verdana_Bold.ttf 83 & 48.3675 44.7350 28 F 1.4223 30.2610 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 29 S 0.0945 36.6318 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 30 p 10.2282 33.5311 44.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 31 “ -0.8141 30.4239 16.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 32 % -0.1590 66.6496 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 33 £ 0.1408 33.7487 43.5231 -Verdana_Bold.ttf 83 & 48.3675 44.7350 34 . 32.4246 10.6752 11.2684 -Verdana_Bold.ttf 83 & 48.3675 44.7350 35 2 -0.3185 33.2780 43.5231 -Verdana_Bold.ttf 83 & 48.3675 44.7350 36 5 1.6923 33.0639 43.5231 -Verdana_Bold.ttf 83 & 48.3675 44.7350 37 m 10.0170 52.4335 33.1555 -Verdana_Bold.ttf 83 & 48.3675 44.7350 38 V 1.1272 42.3111 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 39 6 0.0821 34.8011 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 40 w 11.7151 54.7880 31.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 41 T 1.1003 37.2507 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 42 M 1.4002 44.7331 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 43 G 0.0465 40.2643 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 44 b -0.7268 33.5311 45.6359 -Verdana_Bold.ttf 83 & 48.3675 44.7350 45 9 0.1522 34.8011 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 46 ; 11.3651 16.5721 42.6188 -Verdana_Bold.ttf 83 & 48.3675 44.7350 47 D 1.4722 40.2643 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 48 L 0.9029 30.5721 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 49 y 11.8596 35.6325 43.5196 -Verdana_Bold.ttf 83 & 48.3675 44.7350 50 ‘ -1.0977 15.2120 16.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 51 \ -0.9272 31.6359 53.7390 -Verdana_Bold.ttf 83 & 48.3675 44.7350 52 R 0.9216 41.1651 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 53 < 5.4158 38.0564 38.0564 -Verdana_Bold.ttf 83 & 48.3675 44.7350 54 4 0.8050 37.2216 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 55 8 0.0479 36.2291 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 56 0 -0.1241 35.0428 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 57 A 1.5326 43.5231 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 58 E 1.4172 30.7316 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 59 B 1.2364 36.1047 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 60 v 11.6126 35.6325 31.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 61 k -1.0134 34.5835 44.4239 -Verdana_Bold.ttf 83 & 48.3675 44.7350 62 J 1.0162 26.4804 43.5231 -Verdana_Bold.ttf 83 & 48.3675 44.7350 63 U 1.1716 38.0018 43.5231 -Verdana_Bold.ttf 83 & 48.3675 44.7350 64 j -1.2647 20.5270 56.0000 -Verdana_Bold.ttf 83 & 48.3675 44.7350 65 ( -1.1038 21.2683 56.0000 -Verdana_Bold.ttf 83 & 48.3675 44.7350 66 7 1.9252 33.3716 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 67 § -0.2241 33.3731 54.7915 -Verdana_Bold.ttf 83 & 48.3675 44.7350 68 $ -1.5916 34.4240 55.1557 -Verdana_Bold.ttf 83 & 48.3675 44.7350 69 € -0.2223 38.7447 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 70 / -0.7446 31.6359 53.7390 -Verdana_Bold.ttf 83 & 48.3675 44.7350 71 C 0.1760 36.1047 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 72 * -0.6964 32.2547 29.2120 -Verdana_Bold.ttf 83 & 48.3675 44.7350 73 ” -0.7528 30.4239 16.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 74 ? 0.0041 28.4593 43.5231 -Verdana_Bold.ttf 83 & 48.3675 44.7350 75 { -0.7848 31.3248 55.6923 -Verdana_Bold.ttf 83 & 48.3675 44.7350 76 } -1.1921 31.3248 55.6923 -Verdana_Bold.ttf 83 & 48.3675 44.7350 77 , 32.1382 16.5721 21.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 78 I 1.2279 24.5157 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 79 ° 0.3558 24.0564 23.8404 -Verdana_Bold.ttf 83 & 48.3675 44.7350 80 K 1.4499 39.5761 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 81 H 1.4241 38.3656 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 82 q 10.4706 33.5311 44.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 83 & -0.0889 48.3675 44.7350 -Verdana_Bold.ttf 83 & 48.3675 44.7350 84 ’ -0.6943 15.2120 16.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 85 [ -0.9461 19.1555 55.6923 -Verdana_Bold.ttf 83 & 48.3675 44.7350 86 - 20.3047 21.9436 7.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 87 Y 1.3099 42.5237 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 88 Q 0.0684 43.9002 55.0992 -Verdana_Bold.ttf 83 & 48.3675 44.7350 89 " -0.7297 25.0523 16.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 90 ! 1.0001 11.4279 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 91 x 11.6252 36.6284 31.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 92 ) -0.9265 21.2683 56.0000 -Verdana_Bold.ttf 83 & 48.3675 44.7350 93 = 13.3516 36.4803 23.1556 -Verdana_Bold.ttf 83 & 48.3675 44.7350 94 + 5.6514 38.3675 38.3675 -Verdana_Bold.ttf 83 & 48.3675 44.7350 95 X 1.2265 42.3111 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 96 » 9.3062 35.2683 30.4239 -Verdana_Bold.ttf 83 & 48.3675 44.7350 97 ' -0.8395 9.8404 16.7316 -Verdana_Bold.ttf 83 & 48.3675 44.7350 98 ¢ 1.6329 30.9492 51.8404 -Verdana_Bold.ttf 83 & 48.3675 44.7350 99 Z 1.4462 35.7955 42.3111 -Verdana_Bold.ttf 83 & 48.3675 44.7350 100 > 5.3316 38.0564 38.0564 -Verdana_Bold.ttf 83 & 48.3675 44.7350 101 ® 0.2016 49.2683 49.2683 -Verdana_Bold.ttf 83 & 48.3675 44.7350 102 © -0.1472 49.2683 49.2683 -Verdana_Bold.ttf 83 & 48.3675 44.7350 103 ] -0.9097 19.1555 55.6923 -Verdana_Bold.ttf 83 & 48.3675 44.7350 104 é -4.3170 33.9082 48.9606 -Verdana_Bold.ttf 83 & 48.3675 44.7350 105 z 11.4166 29.7357 31.9436 -Verdana_Bold.ttf 83 & 48.3675 44.7350 106 _ 47.6492 41.6923 6.0564 -Verdana_Bold.ttf 83 & 48.3675 44.7350 107 ¥ 1.2342 38.9042 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 1 t 3.4931 24.2160 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 2 h -0.0399 32.3226 44.4239 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 3 a 11.2377 31.7954 34.3675 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 4 n 11.3385 32.3226 33.1555 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 5 P 2.0523 35.4165 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 6 o 11.3108 35.1202 34.3675 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 7 e 11.3641 33.9082 34.3675 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 8 : 12.1952 10.6752 31.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 9 r 12.1576 23.3151 31.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 10 l -0.0000 10.2160 44.4239 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 11 i -0.0754 10.2160 44.4239 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 12 1 2.0523 28.7413 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 13 | -0.1868 8.4803 55.6923 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 14 N 2.4357 38.8363 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 15 f -0.2724 24.5271 44.4239 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 16 g 11.4328 33.5311 44.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 17 d -0.0210 33.5311 45.6359 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 18 W 2.1492 62.2208 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 19 s 11.3943 29.7391 34.3675 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 20 c 11.1334 29.6826 34.3675 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 21 u 12.4960 32.3226 33.1555 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 22 3 0.8788 33.8052 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 23 ~ 15.4490 41.7840 19.3716 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 24 # 2.0816 41.8499 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 25 O 1.0045 43.9002 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 26 ` -3.6448 16.9477 11.2684 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 27 @ 1.1877 47.6808 50.1066 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 28 F 1.9692 30.2610 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 29 S 0.9008 36.6318 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 30 p 11.2645 33.5311 44.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 31 “ -0.0831 30.4239 16.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 32 % 0.5493 66.6496 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 33 £ 0.8465 33.7487 43.5231 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 34 . 33.2162 10.6752 11.2684 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 35 2 0.8152 33.2780 43.5231 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 36 5 2.3650 33.0639 43.5231 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 37 m 11.1497 52.4335 33.1555 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 38 V 1.9427 42.3111 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 39 6 0.9087 34.8011 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 40 w 12.2943 54.7880 31.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 41 T 2.2361 37.2507 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 42 M 2.1934 44.7331 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 43 G 0.9552 40.2643 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 44 b -0.1782 33.5311 45.6359 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 45 9 0.8846 34.8011 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 46 ; 12.5322 16.5721 42.6188 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 47 D 1.8754 40.2643 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 48 L 2.3805 30.5721 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 49 y 12.5019 35.6325 43.5196 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 50 ‘ -0.2847 15.2120 16.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 51 \ -0.3549 31.6359 53.7390 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 52 R 2.0679 41.1651 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 53 < 6.4545 38.0564 38.0564 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 54 4 2.2470 37.2216 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 55 8 0.7577 36.2291 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 56 0 0.9023 35.0428 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 57 A 2.2934 43.5231 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 58 E 2.0023 30.7316 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 59 B 2.2032 36.1047 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 60 v 12.3664 35.6325 31.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 61 k -0.0587 34.5835 44.4239 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 62 J 1.8425 26.4804 43.5231 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 63 U 2.0200 38.0018 43.5231 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 64 j -0.2444 20.5270 56.0000 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 65 ( -0.1201 21.2683 56.0000 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 66 7 1.9433 33.3716 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 67 § 0.9329 33.3731 54.7915 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 68 $ -0.6753 34.4240 55.1557 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 69 € 0.9650 38.7447 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 70 / -0.0440 31.6359 53.7390 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 71 C 0.7721 36.1047 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 72 * -0.0795 32.2547 29.2120 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 73 ” -0.0000 30.4239 16.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 74 ? 1.2588 28.4593 43.5231 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 75 { -0.0381 31.3248 55.6923 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 76 } 0.0044 31.3248 55.6923 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 77 , 33.2411 16.5721 21.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 78 I 2.0232 24.5157 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 79 ° 1.0350 24.0564 23.8404 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 80 K 1.9268 39.5761 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 81 H 1.9212 38.3656 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 82 q 11.2953 33.5311 44.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 83 & 0.6730 48.3675 44.7350 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 84 ’ -0.0533 15.2120 16.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 85 [ -0.0716 19.1555 55.6923 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 86 - 21.2152 21.9436 7.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 87 Y 2.1038 42.5237 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 88 Q 0.8002 43.9002 55.0992 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 89 " -0.0890 25.0523 16.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 90 ! 2.4145 11.4279 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 91 x 12.5236 36.6284 31.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 92 ) -0.0976 21.2683 56.0000 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 93 = 13.8288 36.4803 23.1556 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 94 + 6.6576 38.3675 38.3675 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 95 X 2.0816 42.3111 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 96 » 10.2908 35.2683 30.4239 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 97 ' -0.2350 9.8404 16.7316 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 98 ¢ 2.4638 30.9492 51.8404 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 99 Z 1.6972 35.7955 42.3111 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 100 > 6.5482 38.0564 38.0564 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 101 ® 1.0210 49.2683 49.2683 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 102 © 0.7600 49.2683 49.2683 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 103 ] 0.0733 19.1555 55.6923 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 104 é -3.0853 33.9082 48.9606 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 105 z 12.6139 29.7357 31.9436 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 106 _ 48.4592 41.6923 6.0564 -Verdana_Bold.ttf 84 ’ 15.2120 16.7316 107 ¥ 2.3849 38.9042 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 1 t 3.1630 24.2160 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 2 h 0.0323 32.3226 44.4239 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 3 a 11.1766 31.7954 34.3675 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 4 n 11.0032 32.3226 33.1555 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 5 P 2.3132 35.4165 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 6 o 10.9954 35.1202 34.3675 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 7 e 10.9633 33.9082 34.3675 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 8 : 12.4037 10.6752 31.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 9 r 12.2500 23.3151 31.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 10 l 0.0543 10.2160 44.4239 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 11 i 0.0917 10.2160 44.4239 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 12 1 2.3616 28.7413 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 13 | 0.3730 8.4803 55.6923 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 14 N 2.1495 38.8363 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 15 f -0.1892 24.5271 44.4239 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 16 g 11.4875 33.5311 44.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 17 d -0.0533 33.5311 45.6359 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 18 W 2.2104 62.2208 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 19 s 11.1366 29.7391 34.3675 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 20 c 11.2611 29.6826 34.3675 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 21 u 12.7223 32.3226 33.1555 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 22 3 0.7833 33.8052 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 23 ~ 15.3401 41.7840 19.3716 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 24 # 2.1128 41.8499 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 25 O 1.1144 43.9002 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 26 ` -3.5013 16.9477 11.2684 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 27 @ 0.8066 47.6808 50.1066 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 28 F 2.2234 30.2610 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 29 S 0.7148 36.6318 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 30 p 11.2098 33.5311 44.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 31 “ -0.1037 30.4239 16.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 32 % 1.0782 66.6496 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 33 £ 0.6567 33.7487 43.5231 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 34 . 32.9854 10.6752 11.2684 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 35 2 0.8422 33.2780 43.5231 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 36 5 2.0729 33.0639 43.5231 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 37 m 11.4020 52.4335 33.1555 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 38 V 1.9630 42.3111 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 39 6 0.8272 34.8011 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 40 w 12.7567 54.7880 31.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 41 T 2.0351 37.2507 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 42 M 2.0657 44.7331 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 43 G 1.1704 40.2643 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 44 b 0.1374 33.5311 45.6359 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 45 9 0.5931 34.8011 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 46 ; 12.6783 16.5721 42.6188 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 47 D 2.3867 40.2643 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 48 L 2.1153 30.5721 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 49 y 12.3748 35.6325 43.5196 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 50 ‘ 0.0770 15.2120 16.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 51 \ -0.3388 31.6359 53.7390 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 52 R 2.0359 41.1651 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 53 < 6.2554 38.0564 38.0564 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 54 4 1.8566 37.2216 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 55 8 0.9303 36.2291 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 56 0 0.7670 35.0428 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 57 A 2.1613 43.5231 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 58 E 2.2027 30.7316 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 59 B 2.2085 36.1047 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 60 v 12.6836 35.6325 31.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 61 k 0.0547 34.5835 44.4239 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 62 J 1.9282 26.4804 43.5231 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 63 U 2.1288 38.0018 43.5231 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 64 j -0.1417 20.5270 56.0000 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 65 ( -0.3830 21.2683 56.0000 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 66 7 2.2387 33.3716 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 67 § 0.9974 33.3731 54.7915 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 68 $ -0.5002 34.4240 55.1557 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 69 € 0.8084 38.7447 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 70 / 0.1414 31.6359 53.7390 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 71 C 0.9849 36.1047 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 72 * 0.1195 32.2547 29.2120 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 73 ” 0.0321 30.4239 16.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 74 ? 0.9083 28.4593 43.5231 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 75 { 0.0795 31.3248 55.6923 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 76 } 0.0234 31.3248 55.6923 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 77 , 33.0863 16.5721 21.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 78 I 1.9822 24.5157 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 79 ° 1.0009 24.0564 23.8404 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 80 K 1.8855 39.5761 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 81 H 2.0945 38.3656 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 82 q 11.4770 33.5311 44.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 83 & 1.1384 48.3675 44.7350 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 84 ’ 0.1422 15.2120 16.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 85 [ -0.0831 19.1555 55.6923 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 86 - 21.2663 21.9436 7.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 87 Y 2.1254 42.5237 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 88 Q 0.7123 43.9002 55.0992 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 89 " 0.0348 25.0523 16.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 90 ! 1.9908 11.4279 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 91 x 12.5597 36.6284 31.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 92 ) -0.0292 21.2683 56.0000 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 93 = 13.7983 36.4803 23.1556 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 94 + 6.5162 38.3675 38.3675 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 95 X 2.1998 42.3111 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 96 » 10.2275 35.2683 30.4239 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 97 ' 0.0094 9.8404 16.7316 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 98 ¢ 1.9973 30.9492 51.8404 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 99 Z 1.9391 35.7955 42.3111 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 100 > 6.3678 38.0564 38.0564 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 101 ® 1.0869 49.2683 49.2683 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 102 © 0.6092 49.2683 49.2683 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 103 ] 0.1821 19.1555 55.6923 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 104 é -3.3988 33.9082 48.9606 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 105 z 12.4750 29.7357 31.9436 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 106 _ 48.2930 41.6923 6.0564 -Verdana_Bold.ttf 85 [ 19.1555 55.6923 107 ¥ 1.8818 38.9042 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 1 t -18.1417 24.2160 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 2 h -21.2400 32.3226 44.4239 -Verdana_Bold.ttf 86 - 21.9436 7.9436 3 a -9.7577 31.7954 34.3675 -Verdana_Bold.ttf 86 - 21.9436 7.9436 4 n -9.9773 32.3226 33.1555 -Verdana_Bold.ttf 86 - 21.9436 7.9436 5 P -19.3989 35.4165 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 6 o -9.7501 35.1202 34.3675 -Verdana_Bold.ttf 86 - 21.9436 7.9436 7 e -9.8138 33.9082 34.3675 -Verdana_Bold.ttf 86 - 21.9436 7.9436 8 : -8.8558 10.6752 31.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 9 r -8.6491 23.3151 31.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 10 l -21.2484 10.2160 44.4239 -Verdana_Bold.ttf 86 - 21.9436 7.9436 11 i -21.3662 10.2160 44.4239 -Verdana_Bold.ttf 86 - 21.9436 7.9436 12 1 -19.2547 28.7413 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 13 | -21.4274 8.4803 55.6923 -Verdana_Bold.ttf 86 - 21.9436 7.9436 14 N -18.8867 38.8363 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 15 f -21.0422 24.5271 44.4239 -Verdana_Bold.ttf 86 - 21.9436 7.9436 16 g -9.8605 33.5311 44.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 17 d -21.3494 33.5311 45.6359 -Verdana_Bold.ttf 86 - 21.9436 7.9436 18 W -19.4398 62.2208 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 19 s -10.3205 29.7391 34.3675 -Verdana_Bold.ttf 86 - 21.9436 7.9436 20 c -9.9749 29.6826 34.3675 -Verdana_Bold.ttf 86 - 21.9436 7.9436 21 u -8.6912 32.3226 33.1555 -Verdana_Bold.ttf 86 - 21.9436 7.9436 22 3 -20.0911 33.8052 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 23 ~ -5.8975 41.7840 19.3716 -Verdana_Bold.ttf 86 - 21.9436 7.9436 24 # -19.2324 41.8499 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 25 O -20.5057 43.9002 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 26 ` -24.9678 16.9477 11.2684 -Verdana_Bold.ttf 86 - 21.9436 7.9436 27 @ -20.5560 47.6808 50.1066 -Verdana_Bold.ttf 86 - 21.9436 7.9436 28 F -19.0032 30.2610 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 29 S -20.3074 36.6318 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 30 p -9.8279 33.5311 44.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 31 “ -21.4105 30.4239 16.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 32 % -20.4070 66.6496 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 33 £ -20.6222 33.7487 43.5231 -Verdana_Bold.ttf 86 - 21.9436 7.9436 34 . 11.8344 10.6752 11.2684 -Verdana_Bold.ttf 86 - 21.9436 7.9436 35 2 -20.0990 33.2780 43.5231 -Verdana_Bold.ttf 86 - 21.9436 7.9436 36 5 -19.1555 33.0639 43.5231 -Verdana_Bold.ttf 86 - 21.9436 7.9436 37 m -10.1167 52.4335 33.1555 -Verdana_Bold.ttf 86 - 21.9436 7.9436 38 V -18.8993 42.3111 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 39 6 -20.4361 34.8011 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 40 w -8.7959 54.7880 31.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 41 T -19.1353 37.2507 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 42 M -19.3111 44.7331 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 43 G -20.5250 40.2643 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 44 b -21.2788 33.5311 45.6359 -Verdana_Bold.ttf 86 - 21.9436 7.9436 45 9 -20.4603 34.8011 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 46 ; -8.5964 16.5721 42.6188 -Verdana_Bold.ttf 86 - 21.9436 7.9436 47 D -19.1037 40.2643 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 48 L -19.1740 30.5721 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 49 y -8.5069 35.6325 43.5196 -Verdana_Bold.ttf 86 - 21.9436 7.9436 50 ‘ -21.2709 15.2120 16.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 51 \ -21.6700 31.6359 53.7390 -Verdana_Bold.ttf 86 - 21.9436 7.9436 52 R -19.2977 41.1651 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 53 < -14.9310 38.0564 38.0564 -Verdana_Bold.ttf 86 - 21.9436 7.9436 54 4 -19.0674 37.2216 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 55 8 -20.5083 36.2291 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 56 0 -20.1203 35.0428 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 57 A -19.0354 43.5231 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 58 E -18.9443 30.7316 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 59 B -19.2008 36.1047 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 60 v -8.7656 35.6325 31.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 61 k -21.0247 34.5835 44.4239 -Verdana_Bold.ttf 86 - 21.9436 7.9436 62 J -19.2347 26.4804 43.5231 -Verdana_Bold.ttf 86 - 21.9436 7.9436 63 U -19.0328 38.0018 43.5231 -Verdana_Bold.ttf 86 - 21.9436 7.9436 64 j -21.2885 20.5270 56.0000 -Verdana_Bold.ttf 86 - 21.9436 7.9436 65 ( -21.0090 21.2683 56.0000 -Verdana_Bold.ttf 86 - 21.9436 7.9436 66 7 -18.9896 33.3716 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 67 § -20.6189 33.3731 54.7915 -Verdana_Bold.ttf 86 - 21.9436 7.9436 68 $ -21.9760 34.4240 55.1557 -Verdana_Bold.ttf 86 - 21.9436 7.9436 69 € -20.3683 38.7447 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 70 / -21.2503 31.6359 53.7390 -Verdana_Bold.ttf 86 - 21.9436 7.9436 71 C -20.1252 36.1047 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 72 * -21.1685 32.2547 29.2120 -Verdana_Bold.ttf 86 - 21.9436 7.9436 73 ” -21.2885 30.4239 16.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 74 ? -20.3769 28.4593 43.5231 -Verdana_Bold.ttf 86 - 21.9436 7.9436 75 { -21.1988 31.3248 55.6923 -Verdana_Bold.ttf 86 - 21.9436 7.9436 76 } -21.0636 31.3248 55.6923 -Verdana_Bold.ttf 86 - 21.9436 7.9436 77 , 11.8695 16.5721 21.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 78 I -19.1601 24.5157 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 79 ° -20.4618 24.0564 23.8404 -Verdana_Bold.ttf 86 - 21.9436 7.9436 80 K -19.2444 39.5761 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 81 H -19.3962 38.3656 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 82 q -10.0874 33.5311 44.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 83 & -20.5743 48.3675 44.7350 -Verdana_Bold.ttf 86 - 21.9436 7.9436 84 ’ -21.3626 15.2120 16.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 85 [ -21.4039 19.1555 55.6923 -Verdana_Bold.ttf 86 - 21.9436 7.9436 86 - -0.1740 21.9436 7.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 87 Y -19.3155 42.5237 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 88 Q -20.6444 43.9002 55.0992 -Verdana_Bold.ttf 86 - 21.9436 7.9436 89 " -21.3566 25.0523 16.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 90 ! -19.2247 11.4279 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 91 x -9.1586 36.6284 31.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 92 ) -20.9633 21.2683 56.0000 -Verdana_Bold.ttf 86 - 21.9436 7.9436 93 = -7.4591 36.4803 23.1556 -Verdana_Bold.ttf 86 - 21.9436 7.9436 94 + -14.9028 38.3675 38.3675 -Verdana_Bold.ttf 86 - 21.9436 7.9436 95 X -18.8586 42.3111 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 96 » -10.9034 35.2683 30.4239 -Verdana_Bold.ttf 86 - 21.9436 7.9436 97 ' -20.9488 9.8404 16.7316 -Verdana_Bold.ttf 86 - 21.9436 7.9436 98 ¢ -18.7621 30.9492 51.8404 -Verdana_Bold.ttf 86 - 21.9436 7.9436 99 Z -18.9788 35.7955 42.3111 -Verdana_Bold.ttf 86 - 21.9436 7.9436 100 > -14.8756 38.0564 38.0564 -Verdana_Bold.ttf 86 - 21.9436 7.9436 101 ® -19.9783 49.2683 49.2683 -Verdana_Bold.ttf 86 - 21.9436 7.9436 102 © -20.4303 49.2683 49.2683 -Verdana_Bold.ttf 86 - 21.9436 7.9436 103 ] -21.0626 19.1555 55.6923 -Verdana_Bold.ttf 86 - 21.9436 7.9436 104 é -24.5923 33.9082 48.9606 -Verdana_Bold.ttf 86 - 21.9436 7.9436 105 z -8.8577 29.7357 31.9436 -Verdana_Bold.ttf 86 - 21.9436 7.9436 106 _ 27.2650 41.6923 6.0564 -Verdana_Bold.ttf 86 - 21.9436 7.9436 107 ¥ -18.9673 38.9042 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 1 t 1.4116 24.2160 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 2 h -2.3047 32.3226 44.4239 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 3 a 9.2380 31.7954 34.3675 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 4 n 9.0692 32.3226 33.1555 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 5 P -0.3030 35.4165 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 6 o 9.0622 35.1202 34.3675 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 7 e 9.1473 33.9082 34.3675 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 8 : 10.5087 10.6752 31.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 9 r 10.3009 23.3151 31.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 10 l -1.9329 10.2160 44.4239 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 11 i -2.1210 10.2160 44.4239 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 12 1 -0.0535 28.7413 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 13 | -1.7958 8.4803 55.6923 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 14 N -0.1294 38.8363 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 15 f -1.9815 24.5271 44.4239 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 16 g 9.2960 33.5311 44.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 17 d -2.1350 33.5311 45.6359 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 18 W -0.1616 62.2208 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 19 s 8.9951 29.7391 34.3675 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 20 c 8.8834 29.6826 34.3675 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 21 u 10.6466 32.3226 33.1555 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 22 3 -1.1174 33.8052 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 23 ~ 13.2618 41.7840 19.3716 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 24 # 0.0027 41.8499 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 25 O -0.9047 43.9002 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 26 ` -5.3112 16.9477 11.2684 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 27 @ -1.1988 47.6808 50.1066 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 28 F 0.1177 30.2610 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 29 S -1.2282 36.6318 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 30 p 9.2009 33.5311 44.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 31 “ -1.9411 30.4239 16.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 32 % -0.8183 66.6496 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 33 £ -1.4154 33.7487 43.5231 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 34 . 31.2869 10.6752 11.2684 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 35 2 -1.1514 33.2780 43.5231 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 36 5 0.1394 33.0639 43.5231 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 37 m 9.3304 52.4335 33.1555 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 38 V 0.0490 42.3111 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 39 6 -1.2287 34.8011 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 40 w 10.2907 54.7880 31.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 41 T 0.2116 37.2507 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 42 M 0.0471 44.7331 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 43 G -1.2854 40.2643 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 44 b -2.2032 33.5311 45.6359 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 45 9 -0.9395 34.8011 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 46 ; 10.2266 16.5721 42.6188 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 47 D -0.0136 40.2643 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 48 L -0.0721 30.5721 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 49 y 10.6299 35.6325 43.5196 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 50 ‘ -1.8281 15.2120 16.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 51 \ -1.8771 31.6359 53.7390 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 52 R 0.0301 41.1651 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 53 < 4.2306 38.0564 38.0564 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 54 4 0.0149 37.2216 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 55 8 -1.3053 36.2291 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 56 0 -1.0144 35.0428 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 57 A 0.2097 43.5231 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 58 E 0.1720 30.7316 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 59 B 0.0058 36.1047 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 60 v 10.0700 35.6325 31.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 61 k -2.2795 34.5835 44.4239 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 62 J 0.0838 26.4804 43.5231 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 63 U 0.5934 38.0018 43.5231 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 64 j -2.1729 20.5270 56.0000 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 65 ( -2.2977 21.2683 56.0000 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 66 7 -0.0411 33.3716 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 67 § -1.2757 33.3731 54.7915 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 68 $ -3.0412 34.4240 55.1557 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 69 € -1.0543 38.7447 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 70 / -1.7718 31.6359 53.7390 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 71 C -1.1323 36.1047 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 72 * -1.8869 32.2547 29.2120 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 73 ” -2.0907 30.4239 16.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 74 ? -1.2159 28.4593 43.5231 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 75 { -2.4335 31.3248 55.6923 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 76 } -1.8479 31.3248 55.6923 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 77 , 31.0306 16.5721 21.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 78 I 0.0354 24.5157 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 79 ° -1.1270 24.0564 23.8404 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 80 K 0.0896 39.5761 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 81 H 0.0709 38.3656 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 82 q 8.9916 33.5311 44.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 83 & -1.0410 48.3675 44.7350 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 84 ’ -1.7714 15.2120 16.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 85 [ -2.0359 19.1555 55.6923 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 86 - 19.3696 21.9436 7.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 87 Y -0.4427 42.5237 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 88 Q -1.2086 43.9002 55.0992 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 89 " -2.1070 25.0523 16.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 90 ! 0.0276 11.4279 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 91 x 10.4278 36.6284 31.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 92 ) -2.1866 21.2683 56.0000 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 93 = 11.6343 36.4803 23.1556 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 94 + 4.8508 38.3675 38.3675 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 95 X -0.0532 42.3111 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 96 » 7.9128 35.2683 30.4239 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 97 ' -2.3707 9.8404 16.7316 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 98 ¢ 0.2583 30.9492 51.8404 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 99 Z 0.0594 35.7955 42.3111 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 100 > 4.0311 38.0564 38.0564 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 101 ® -1.1778 49.2683 49.2683 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 102 © -1.3710 49.2683 49.2683 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 103 ] -2.1816 19.1555 55.6923 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 104 é -5.3304 33.9082 48.9606 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 105 z 10.4325 29.7357 31.9436 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 106 _ 46.3859 41.6923 6.0564 -Verdana_Bold.ttf 87 Y 42.5237 42.3111 107 ¥ 0.1740 38.9042 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 1 t 2.0317 24.2160 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 2 h -1.4029 32.3226 44.4239 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 3 a 10.5886 31.7954 34.3675 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 4 n 10.3377 32.3226 33.1555 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 5 P 1.3731 35.4165 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 6 o 10.6509 35.1202 34.3675 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 7 e 10.2411 33.9082 34.3675 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 8 : 11.9775 10.6752 31.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 9 r 11.5531 23.3151 31.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 10 l -0.6246 10.2160 44.4239 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 11 i -0.9052 10.2160 44.4239 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 12 1 1.6152 28.7413 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 13 | -0.9295 8.4803 55.6923 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 14 N 1.2667 38.8363 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 15 f -0.9292 24.5271 44.4239 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 16 g 10.4155 33.5311 44.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 17 d -0.8663 33.5311 45.6359 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 18 W 0.9650 62.2208 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 19 s 10.6151 29.7391 34.3675 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 20 c 10.3806 29.6826 34.3675 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 21 u 11.5874 32.3226 33.1555 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 22 3 0.1922 33.8052 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 23 ~ 14.6380 41.7840 19.3716 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 24 # 1.2768 41.8499 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 25 O -0.0293 43.9002 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 26 ` -4.1458 16.9477 11.2684 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 27 @ 0.2099 47.6808 50.1066 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 28 F 1.1328 30.2610 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 29 S -0.1802 36.6318 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 30 p 9.9087 33.5311 44.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 31 “ -1.0961 30.4239 16.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 32 % -0.0027 66.6496 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 33 £ -0.4092 33.7487 43.5231 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 34 . 32.4778 10.6752 11.2684 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 35 2 0.0090 33.2780 43.5231 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 36 5 1.3433 33.0639 43.5231 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 37 m 10.4184 52.4335 33.1555 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 38 V 1.4320 42.3111 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 39 6 -0.2695 34.8011 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 40 w 11.1330 54.7880 31.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 41 T 1.4846 37.2507 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 42 M 1.2474 44.7331 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 43 G 0.1921 40.2643 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 44 b -0.8933 33.5311 45.6359 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 45 9 -0.0840 34.8011 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 46 ; 11.4409 16.5721 42.6188 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 47 D 1.5159 40.2643 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 48 L 1.3416 30.5721 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 49 y 11.6270 35.6325 43.5196 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 50 ‘ -0.8414 15.2120 16.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 51 \ -0.8619 31.6359 53.7390 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 52 R 0.8598 41.1651 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 53 < 5.3486 38.0564 38.0564 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 54 4 0.9755 37.2216 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 55 8 -0.1050 36.2291 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 56 0 -0.0178 35.0428 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 57 A 1.0670 43.5231 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 58 E 1.0870 30.7316 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 59 B 1.5561 36.1047 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 60 v 11.7583 35.6325 31.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 61 k -1.0518 34.5835 44.4239 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 62 J 1.4282 26.4804 43.5231 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 63 U 1.5523 38.0018 43.5231 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 64 j -0.7659 20.5270 56.0000 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 65 ( -0.9701 21.2683 56.0000 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 66 7 1.4601 33.3716 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 67 § -0.0914 33.3731 54.7915 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 68 $ -2.0696 34.4240 55.1557 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 69 € 0.1621 38.7447 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 70 / -0.8778 31.6359 53.7390 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 71 C -0.0376 36.1047 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 72 * -0.9926 32.2547 29.2120 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 73 ” -1.1939 30.4239 16.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 74 ? 0.0309 28.4593 43.5231 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 75 { -0.7096 31.3248 55.6923 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 76 } -1.1518 31.3248 55.6923 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 77 , 32.3497 16.5721 21.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 78 I 1.1329 24.5157 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 79 ° 0.1433 24.0564 23.8404 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 80 K 1.2076 39.5761 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 81 H 1.0326 38.3656 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 82 q 10.3193 33.5311 44.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 83 & -0.1493 48.3675 44.7350 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 84 ’ -1.1729 15.2120 16.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 85 [ -0.8310 19.1555 55.6923 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 86 - 20.2646 21.9436 7.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 87 Y 1.0961 42.5237 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 88 Q -0.0787 43.9002 55.0992 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 89 " -0.4441 25.0523 16.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 90 ! 1.2343 11.4279 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 91 x 11.6546 36.6284 31.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 92 ) -0.7362 21.2683 56.0000 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 93 = 13.1042 36.4803 23.1556 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 94 + 5.8816 38.3675 38.3675 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 95 X 1.1504 42.3111 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 96 » 9.1594 35.2683 30.4239 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 97 ' -1.3190 9.8404 16.7316 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 98 ¢ 1.5649 30.9492 51.8404 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 99 Z 1.3012 35.7955 42.3111 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 100 > 5.6293 38.0564 38.0564 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 101 ® -0.0336 49.2683 49.2683 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 102 © -0.3609 49.2683 49.2683 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 103 ] -0.8166 19.1555 55.6923 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 104 é -4.5028 33.9082 48.9606 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 105 z 11.8888 29.7357 31.9436 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 106 _ 47.8914 41.6923 6.0564 -Verdana_Bold.ttf 88 Q 43.9002 55.0992 107 ¥ 1.1297 38.9042 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 1 t 3.1833 24.2160 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 2 h 0.0338 32.3226 44.4239 -Verdana_Bold.ttf 89 " 25.0523 16.7316 3 a 11.3351 31.7954 34.3675 -Verdana_Bold.ttf 89 " 25.0523 16.7316 4 n 11.4697 32.3226 33.1555 -Verdana_Bold.ttf 89 " 25.0523 16.7316 5 P 2.1601 35.4165 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 6 o 10.9513 35.1202 34.3675 -Verdana_Bold.ttf 89 " 25.0523 16.7316 7 e 11.2572 33.9082 34.3675 -Verdana_Bold.ttf 89 " 25.0523 16.7316 8 : 12.5779 10.6752 31.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 9 r 12.4710 23.3151 31.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 10 l 0.1316 10.2160 44.4239 -Verdana_Bold.ttf 89 " 25.0523 16.7316 11 i 0.1231 10.2160 44.4239 -Verdana_Bold.ttf 89 " 25.0523 16.7316 12 1 2.5419 28.7413 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 13 | -0.1038 8.4803 55.6923 -Verdana_Bold.ttf 89 " 25.0523 16.7316 14 N 2.3269 38.8363 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 15 f 0.0846 24.5271 44.4239 -Verdana_Bold.ttf 89 " 25.0523 16.7316 16 g 11.3300 33.5311 44.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 17 d -0.1343 33.5311 45.6359 -Verdana_Bold.ttf 89 " 25.0523 16.7316 18 W 2.3866 62.2208 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 19 s 11.0852 29.7391 34.3675 -Verdana_Bold.ttf 89 " 25.0523 16.7316 20 c 11.1872 29.6826 34.3675 -Verdana_Bold.ttf 89 " 25.0523 16.7316 21 u 12.3530 32.3226 33.1555 -Verdana_Bold.ttf 89 " 25.0523 16.7316 22 3 0.9103 33.8052 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 23 ~ 15.4553 41.7840 19.3716 -Verdana_Bold.ttf 89 " 25.0523 16.7316 24 # 2.0320 41.8499 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 25 O 0.8983 43.9002 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 26 ` -3.2762 16.9477 11.2684 -Verdana_Bold.ttf 89 " 25.0523 16.7316 27 @ 1.0619 47.6808 50.1066 -Verdana_Bold.ttf 89 " 25.0523 16.7316 28 F 2.2906 30.2610 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 29 S 0.9426 36.6318 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 30 p 11.4392 33.5311 44.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 31 “ -0.2348 30.4239 16.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 32 % 0.9581 66.6496 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 33 £ 0.6749 33.7487 43.5231 -Verdana_Bold.ttf 89 " 25.0523 16.7316 34 . 33.0797 10.6752 11.2684 -Verdana_Bold.ttf 89 " 25.0523 16.7316 35 2 0.5554 33.2780 43.5231 -Verdana_Bold.ttf 89 " 25.0523 16.7316 36 5 1.9370 33.0639 43.5231 -Verdana_Bold.ttf 89 " 25.0523 16.7316 37 m 11.4738 52.4335 33.1555 -Verdana_Bold.ttf 89 " 25.0523 16.7316 38 V 1.9429 42.3111 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 39 6 0.7883 34.8011 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 40 w 12.3131 54.7880 31.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 41 T 2.3896 37.2507 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 42 M 2.3315 44.7331 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 43 G 0.7409 40.2643 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 44 b 0.0070 33.5311 45.6359 -Verdana_Bold.ttf 89 " 25.0523 16.7316 45 9 0.9008 34.8011 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 46 ; 12.4054 16.5721 42.6188 -Verdana_Bold.ttf 89 " 25.0523 16.7316 47 D 2.2326 40.2643 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 48 L 2.1577 30.5721 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 49 y 12.1949 35.6325 43.5196 -Verdana_Bold.ttf 89 " 25.0523 16.7316 50 ‘ 0.0601 15.2120 16.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 51 \ 0.1403 31.6359 53.7390 -Verdana_Bold.ttf 89 " 25.0523 16.7316 52 R 2.0932 41.1651 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 53 < 6.3943 38.0564 38.0564 -Verdana_Bold.ttf 89 " 25.0523 16.7316 54 4 2.2662 37.2216 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 55 8 0.8836 36.2291 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 56 0 0.8613 35.0428 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 57 A 2.3164 43.5231 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 58 E 2.0046 30.7316 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 59 B 1.9711 36.1047 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 60 v 12.4520 35.6325 31.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 61 k 0.0759 34.5835 44.4239 -Verdana_Bold.ttf 89 " 25.0523 16.7316 62 J 2.3439 26.4804 43.5231 -Verdana_Bold.ttf 89 " 25.0523 16.7316 63 U 2.1434 38.0018 43.5231 -Verdana_Bold.ttf 89 " 25.0523 16.7316 64 j 0.0504 20.5270 56.0000 -Verdana_Bold.ttf 89 " 25.0523 16.7316 65 ( -0.0903 21.2683 56.0000 -Verdana_Bold.ttf 89 " 25.0523 16.7316 66 7 1.7979 33.3716 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 67 § 0.7780 33.3731 54.7915 -Verdana_Bold.ttf 89 " 25.0523 16.7316 68 $ -0.6555 34.4240 55.1557 -Verdana_Bold.ttf 89 " 25.0523 16.7316 69 € 1.0430 38.7447 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 70 / -0.0282 31.6359 53.7390 -Verdana_Bold.ttf 89 " 25.0523 16.7316 71 C 0.9418 36.1047 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 72 * 0.2284 32.2547 29.2120 -Verdana_Bold.ttf 89 " 25.0523 16.7316 73 ” 0.1907 30.4239 16.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 74 ? 0.7680 28.4593 43.5231 -Verdana_Bold.ttf 89 " 25.0523 16.7316 75 { -0.1963 31.3248 55.6923 -Verdana_Bold.ttf 89 " 25.0523 16.7316 76 } -0.1483 31.3248 55.6923 -Verdana_Bold.ttf 89 " 25.0523 16.7316 77 , 32.8476 16.5721 21.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 78 I 2.2823 24.5157 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 79 ° 0.8975 24.0564 23.8404 -Verdana_Bold.ttf 89 " 25.0523 16.7316 80 K 1.8754 39.5761 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 81 H 2.2237 38.3656 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 82 q 11.3573 33.5311 44.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 83 & 0.7397 48.3675 44.7350 -Verdana_Bold.ttf 89 " 25.0523 16.7316 84 ’ 0.1977 15.2120 16.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 85 [ -0.0788 19.1555 55.6923 -Verdana_Bold.ttf 89 " 25.0523 16.7316 86 - 21.2330 21.9436 7.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 87 Y 2.2470 42.5237 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 88 Q 0.7609 43.9002 55.0992 -Verdana_Bold.ttf 89 " 25.0523 16.7316 89 " 0.2691 25.0523 16.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 90 ! 2.1380 11.4279 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 91 x 12.4026 36.6284 31.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 92 ) -0.2401 21.2683 56.0000 -Verdana_Bold.ttf 89 " 25.0523 16.7316 93 = 13.9663 36.4803 23.1556 -Verdana_Bold.ttf 89 " 25.0523 16.7316 94 + 6.5723 38.3675 38.3675 -Verdana_Bold.ttf 89 " 25.0523 16.7316 95 X 1.9793 42.3111 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 96 » 10.1105 35.2683 30.4239 -Verdana_Bold.ttf 89 " 25.0523 16.7316 97 ' -0.0151 9.8404 16.7316 -Verdana_Bold.ttf 89 " 25.0523 16.7316 98 ¢ 1.9780 30.9492 51.8404 -Verdana_Bold.ttf 89 " 25.0523 16.7316 99 Z 2.0923 35.7955 42.3111 -Verdana_Bold.ttf 89 " 25.0523 16.7316 100 > 6.3243 38.0564 38.0564 -Verdana_Bold.ttf 89 " 25.0523 16.7316 101 ® 1.1771 49.2683 49.2683 -Verdana_Bold.ttf 89 " 25.0523 16.7316 102 © 0.7218 49.2683 49.2683 -Verdana_Bold.ttf 89 " 25.0523 16.7316 103 ] -0.3116 19.1555 55.6923 -Verdana_Bold.ttf 89 " 25.0523 16.7316 104 é -3.0724 33.9082 48.9606 -Verdana_Bold.ttf 89 " 25.0523 16.7316 105 z 12.5472 29.7357 31.9436 -Verdana_Bold.ttf 89 " 25.0523 16.7316 106 _ 48.5399 41.6923 6.0564 -Verdana_Bold.ttf 89 " 25.0523 16.7316 107 ¥ 1.9815 38.9042 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 1 t 0.9857 24.2160 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 2 h -2.2079 32.3226 44.4239 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 3 a 9.2420 31.7954 34.3675 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 4 n 9.1132 32.3226 33.1555 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 5 P -0.0465 35.4165 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 6 o 9.2223 35.1202 34.3675 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 7 e 9.2161 33.9082 34.3675 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 8 : 10.3624 10.6752 31.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 9 r 10.0945 23.3151 31.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 10 l -2.2812 10.2160 44.4239 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 11 i -2.2085 10.2160 44.4239 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 12 1 -0.0990 28.7413 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 13 | -1.7587 8.4803 55.6923 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 14 N -0.1100 38.8363 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 15 f -2.0272 24.5271 44.4239 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 16 g 9.3728 33.5311 44.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 17 d -2.3891 33.5311 45.6359 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 18 W -0.1658 62.2208 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 19 s 9.4197 29.7391 34.3675 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 20 c 9.0440 29.6826 34.3675 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 21 u 10.5137 32.3226 33.1555 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 22 3 -1.2175 33.8052 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 23 ~ 13.0753 41.7840 19.3716 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 24 # 0.1349 41.8499 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 25 O -1.1216 43.9002 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 26 ` -5.5781 16.9477 11.2684 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 27 @ -1.2120 47.6808 50.1066 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 28 F 0.1198 30.2610 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 29 S -1.1342 36.6318 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 30 p 8.9322 33.5311 44.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 31 “ -1.9854 30.4239 16.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 32 % -1.1755 66.6496 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 33 £ -1.0448 33.7487 43.5231 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 34 . 30.9651 10.6752 11.2684 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 35 2 -1.0515 33.2780 43.5231 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 36 5 0.2474 33.0639 43.5231 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 37 m 9.3585 52.4335 33.1555 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 38 V -0.1127 42.3111 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 39 6 -1.3091 34.8011 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 40 w 10.3595 54.7880 31.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 41 T 0.0700 37.2507 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 42 M 0.1285 44.7331 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 43 G -0.9197 40.2643 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 44 b -2.0758 33.5311 45.6359 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 45 9 -1.1366 34.8011 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 46 ; 10.0898 16.5721 42.6188 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 47 D 0.2490 40.2643 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 48 L 0.0025 30.5721 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 49 y 10.2917 35.6325 43.5196 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 50 ‘ -2.1097 15.2120 16.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 51 \ -1.8872 31.6359 53.7390 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 52 R -0.1255 41.1651 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 53 < 3.9279 38.0564 38.0564 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 54 4 -0.2207 37.2216 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 55 8 -1.1971 36.2291 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 56 0 -1.4311 35.0428 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 57 A -0.0309 43.5231 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 58 E -0.1846 30.7316 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 59 B 0.1327 36.1047 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 60 v 10.3675 35.6325 31.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 61 k -2.2821 34.5835 44.4239 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 62 J 0.2706 26.4804 43.5231 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 63 U 0.0039 38.0018 43.5231 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 64 j -1.9815 20.5270 56.0000 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 65 ( -2.1100 21.2683 56.0000 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 66 7 0.3555 33.3716 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 67 § -1.3062 33.3731 54.7915 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 68 $ -2.5636 34.4240 55.1557 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 69 € -1.1057 38.7447 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 70 / -2.4665 31.6359 53.7390 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 71 C -1.0520 36.1047 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 72 * -2.0906 32.2547 29.2120 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 73 ” -2.4303 30.4239 16.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 74 ? -1.1350 28.4593 43.5231 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 75 { -2.3589 31.3248 55.6923 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 76 } -2.2150 31.3248 55.6923 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 77 , 31.1351 16.5721 21.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 78 I -0.0086 24.5157 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 79 ° -1.3926 24.0564 23.8404 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 80 K -0.0883 39.5761 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 81 H -0.0475 38.3656 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 82 q 9.0696 33.5311 44.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 83 & -1.1336 48.3675 44.7350 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 84 ’ -2.3424 15.2120 16.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 85 [ -2.1541 19.1555 55.6923 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 86 - 19.1561 21.9436 7.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 87 Y 0.1801 42.5237 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 88 Q -0.9605 43.9002 55.0992 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 89 " -2.2902 25.0523 16.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 90 ! -0.0082 11.4279 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 91 x 10.4068 36.6284 31.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 92 ) -2.2772 21.2683 56.0000 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 93 = 12.0487 36.4803 23.1556 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 94 + 4.5078 38.3675 38.3675 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 95 X 0.1436 42.3111 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 96 » 7.8801 35.2683 30.4239 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 97 ' -1.9988 9.8404 16.7316 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 98 ¢ 0.3111 30.9492 51.8404 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 99 Z 0.2183 35.7955 42.3111 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 100 > 4.1993 38.0564 38.0564 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 101 ® -1.0288 49.2683 49.2683 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 102 © -1.3084 49.2683 49.2683 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 103 ] -2.1120 19.1555 55.6923 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 104 é -5.5528 33.9082 48.9606 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 105 z 10.1303 29.7357 31.9436 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 106 _ 46.2892 41.6923 6.0564 -Verdana_Bold.ttf 90 ! 11.4279 42.3111 107 ¥ 0.1366 38.9042 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 1 t -8.8893 24.2160 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 2 h -12.3552 32.3226 44.4239 -Verdana_Bold.ttf 91 x 36.6284 31.9436 3 a -1.0375 31.7954 34.3675 -Verdana_Bold.ttf 91 x 36.6284 31.9436 4 n -1.0906 32.3226 33.1555 -Verdana_Bold.ttf 91 x 36.6284 31.9436 5 P -10.2892 35.4165 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 6 o -1.1718 35.1202 34.3675 -Verdana_Bold.ttf 91 x 36.6284 31.9436 7 e -1.3787 33.9082 34.3675 -Verdana_Bold.ttf 91 x 36.6284 31.9436 8 : 0.0274 10.6752 31.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 9 r -0.0043 23.3151 31.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 10 l -12.2644 10.2160 44.4239 -Verdana_Bold.ttf 91 x 36.6284 31.9436 11 i -12.5612 10.2160 44.4239 -Verdana_Bold.ttf 91 x 36.6284 31.9436 12 1 -10.2717 28.7413 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 13 | -12.2511 8.4803 55.6923 -Verdana_Bold.ttf 91 x 36.6284 31.9436 14 N -10.2013 38.8363 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 15 f -12.4780 24.5271 44.4239 -Verdana_Bold.ttf 91 x 36.6284 31.9436 16 g -1.2990 33.5311 44.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 17 d -12.3120 33.5311 45.6359 -Verdana_Bold.ttf 91 x 36.6284 31.9436 18 W -10.3524 62.2208 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 19 s -1.2013 29.7391 34.3675 -Verdana_Bold.ttf 91 x 36.6284 31.9436 20 c -1.2147 29.6826 34.3675 -Verdana_Bold.ttf 91 x 36.6284 31.9436 21 u -0.0943 32.3226 33.1555 -Verdana_Bold.ttf 91 x 36.6284 31.9436 22 3 -11.4053 33.8052 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 23 ~ 2.6049 41.7840 19.3716 -Verdana_Bold.ttf 91 x 36.6284 31.9436 24 # -10.5293 41.8499 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 25 O -11.2193 43.9002 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 26 ` -15.5686 16.9477 11.2684 -Verdana_Bold.ttf 91 x 36.6284 31.9436 27 @ -11.7548 47.6808 50.1066 -Verdana_Bold.ttf 91 x 36.6284 31.9436 28 F -10.1284 30.2610 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 29 S -11.5309 36.6318 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 30 p -1.2671 33.5311 44.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 31 “ -12.4685 30.4239 16.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 32 % -11.4791 66.6496 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 33 £ -11.4712 33.7487 43.5231 -Verdana_Bold.ttf 91 x 36.6284 31.9436 34 . 20.3853 10.6752 11.2684 -Verdana_Bold.ttf 91 x 36.6284 31.9436 35 2 -11.4611 33.2780 43.5231 -Verdana_Bold.ttf 91 x 36.6284 31.9436 36 5 -10.4313 33.0639 43.5231 -Verdana_Bold.ttf 91 x 36.6284 31.9436 37 m -1.4713 52.4335 33.1555 -Verdana_Bold.ttf 91 x 36.6284 31.9436 38 V -10.3787 42.3111 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 39 6 -11.4093 34.8011 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 40 w 0.1204 54.7880 31.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 41 T -10.3191 37.2507 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 42 M -10.4593 44.7331 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 43 G -11.8034 40.2643 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 44 b -12.5158 33.5311 45.6359 -Verdana_Bold.ttf 91 x 36.6284 31.9436 45 9 -11.5329 34.8011 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 46 ; 0.0353 16.5721 42.6188 -Verdana_Bold.ttf 91 x 36.6284 31.9436 47 D -10.2089 40.2643 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 48 L -10.4404 30.5721 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 49 y 0.0156 35.6325 43.5196 -Verdana_Bold.ttf 91 x 36.6284 31.9436 50 ‘ -12.7466 15.2120 16.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 51 \ -12.6146 31.6359 53.7390 -Verdana_Bold.ttf 91 x 36.6284 31.9436 52 R -10.2989 41.1651 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 53 < -6.2442 38.0564 38.0564 -Verdana_Bold.ttf 91 x 36.6284 31.9436 54 4 -10.4108 37.2216 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 55 8 -11.8533 36.2291 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 56 0 -11.4777 35.0428 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 57 A -10.4713 43.5231 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 58 E -10.6180 30.7316 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 59 B -10.4899 36.1047 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 60 v -0.1887 35.6325 31.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 61 k -12.8103 34.5835 44.4239 -Verdana_Bold.ttf 91 x 36.6284 31.9436 62 J -10.7040 26.4804 43.5231 -Verdana_Bold.ttf 91 x 36.6284 31.9436 63 U -10.2884 38.0018 43.5231 -Verdana_Bold.ttf 91 x 36.6284 31.9436 64 j -12.5234 20.5270 56.0000 -Verdana_Bold.ttf 91 x 36.6284 31.9436 65 ( -12.4814 21.2683 56.0000 -Verdana_Bold.ttf 91 x 36.6284 31.9436 66 7 -10.3907 33.3716 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 67 § -11.7997 33.3731 54.7915 -Verdana_Bold.ttf 91 x 36.6284 31.9436 68 $ -13.7026 34.4240 55.1557 -Verdana_Bold.ttf 91 x 36.6284 31.9436 69 € -11.3158 38.7447 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 70 / -12.3708 31.6359 53.7390 -Verdana_Bold.ttf 91 x 36.6284 31.9436 71 C -11.5133 36.1047 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 72 * -12.9191 32.2547 29.2120 -Verdana_Bold.ttf 91 x 36.6284 31.9436 73 ” -12.3912 30.4239 16.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 74 ? -11.5124 28.4593 43.5231 -Verdana_Bold.ttf 91 x 36.6284 31.9436 75 { -12.6857 31.3248 55.6923 -Verdana_Bold.ttf 91 x 36.6284 31.9436 76 } -12.5874 31.3248 55.6923 -Verdana_Bold.ttf 91 x 36.6284 31.9436 77 , 20.3378 16.5721 21.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 78 I -10.1140 24.5157 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 79 ° -11.6538 24.0564 23.8404 -Verdana_Bold.ttf 91 x 36.6284 31.9436 80 K -10.2947 39.5761 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 81 H -10.4027 38.3656 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 82 q -1.1022 33.5311 44.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 83 & -11.2472 48.3675 44.7350 -Verdana_Bold.ttf 91 x 36.6284 31.9436 84 ’ -12.6186 15.2120 16.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 85 [ -12.9049 19.1555 55.6923 -Verdana_Bold.ttf 91 x 36.6284 31.9436 86 - 8.8114 21.9436 7.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 87 Y -10.5017 42.5237 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 88 Q -11.5828 43.9002 55.0992 -Verdana_Bold.ttf 91 x 36.6284 31.9436 89 " -12.5408 25.0523 16.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 90 ! -10.1351 11.4279 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 91 x -0.0464 36.6284 31.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 92 ) -12.4063 21.2683 56.0000 -Verdana_Bold.ttf 91 x 36.6284 31.9436 93 = 1.5205 36.4803 23.1556 -Verdana_Bold.ttf 91 x 36.6284 31.9436 94 + -5.6121 38.3675 38.3675 -Verdana_Bold.ttf 91 x 36.6284 31.9436 95 X -10.8673 42.3111 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 96 » -2.3504 35.2683 30.4239 -Verdana_Bold.ttf 91 x 36.6284 31.9436 97 ' -12.7075 9.8404 16.7316 -Verdana_Bold.ttf 91 x 36.6284 31.9436 98 ¢ -10.1888 30.9492 51.8404 -Verdana_Bold.ttf 91 x 36.6284 31.9436 99 Z -10.2883 35.7955 42.3111 -Verdana_Bold.ttf 91 x 36.6284 31.9436 100 > -6.3753 38.0564 38.0564 -Verdana_Bold.ttf 91 x 36.6284 31.9436 101 ® -11.3615 49.2683 49.2683 -Verdana_Bold.ttf 91 x 36.6284 31.9436 102 © -11.2133 49.2683 49.2683 -Verdana_Bold.ttf 91 x 36.6284 31.9436 103 ] -12.2961 19.1555 55.6923 -Verdana_Bold.ttf 91 x 36.6284 31.9436 104 é -15.6906 33.9082 48.9606 -Verdana_Bold.ttf 91 x 36.6284 31.9436 105 z 0.1961 29.7357 31.9436 -Verdana_Bold.ttf 91 x 36.6284 31.9436 106 _ 36.1553 41.6923 6.0564 -Verdana_Bold.ttf 91 x 36.6284 31.9436 107 ¥ -10.3324 38.9042 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 1 t 3.4690 24.2160 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 2 h -0.1253 32.3226 44.4239 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 3 a 11.3526 31.7954 34.3675 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 4 n 11.2054 32.3226 33.1555 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 5 P 2.2039 35.4165 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 6 o 11.2967 35.1202 34.3675 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 7 e 11.2923 33.9082 34.3675 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 8 : 12.5026 10.6752 31.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 9 r 12.3557 23.3151 31.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 10 l 0.2493 10.2160 44.4239 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 11 i 0.0854 10.2160 44.4239 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 12 1 2.1877 28.7413 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 13 | -0.0749 8.4803 55.6923 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 14 N 2.0105 38.8363 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 15 f 0.0325 24.5271 44.4239 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 16 g 11.3721 33.5311 44.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 17 d 0.2953 33.5311 45.6359 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 18 W 2.1684 62.2208 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 19 s 11.4462 29.7391 34.3675 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 20 c 11.2684 29.6826 34.3675 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 21 u 12.6571 32.3226 33.1555 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 22 3 0.7445 33.8052 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 23 ~ 15.6101 41.7840 19.3716 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 24 # 2.3729 41.8499 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 25 O 0.7539 43.9002 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 26 ` -3.1140 16.9477 11.2684 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 27 @ 0.6325 47.6808 50.1066 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 28 F 2.1613 30.2610 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 29 S 0.6371 36.6318 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 30 p 10.9952 33.5311 44.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 31 “ -0.2180 30.4239 16.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 32 % 0.5546 66.6496 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 33 £ 0.9008 33.7487 43.5231 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 34 . 33.2606 10.6752 11.2684 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 35 2 0.5328 33.2780 43.5231 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 36 5 2.2315 33.0639 43.5231 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 37 m 11.3068 52.4335 33.1555 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 38 V 1.9717 42.3111 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 39 6 0.8667 34.8011 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 40 w 12.4840 54.7880 31.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 41 T 2.1682 37.2507 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 42 M 1.8739 44.7331 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 43 G 0.6809 40.2643 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 44 b -0.4343 33.5311 45.6359 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 45 9 1.0804 34.8011 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 46 ; 12.4472 16.5721 42.6188 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 47 D 2.3050 40.2643 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 48 L 1.9887 30.5721 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 49 y 12.2116 35.6325 43.5196 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 50 ‘ 0.0265 15.2120 16.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 51 \ -0.1076 31.6359 53.7390 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 52 R 2.3103 41.1651 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 53 < 6.2224 38.0564 38.0564 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 54 4 2.1042 37.2216 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 55 8 0.7828 36.2291 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 56 0 0.7194 35.0428 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 57 A 2.2902 43.5231 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 58 E 1.8066 30.7316 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 59 B 2.0261 36.1047 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 60 v 12.3952 35.6325 31.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 61 k 0.1726 34.5835 44.4239 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 62 J 2.1075 26.4804 43.5231 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 63 U 1.8640 38.0018 43.5231 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 64 j -0.0864 20.5270 56.0000 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 65 ( -0.1066 21.2683 56.0000 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 66 7 2.1388 33.3716 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 67 § 0.9687 33.3731 54.7915 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 68 $ -0.7798 34.4240 55.1557 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 69 € 0.7818 38.7447 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 70 / 0.1041 31.6359 53.7390 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 71 C 1.0894 36.1047 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 72 * 0.2502 32.2547 29.2120 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 73 ” -0.0093 30.4239 16.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 74 ? 0.7619 28.4593 43.5231 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 75 { 0.0311 31.3248 55.6923 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 76 } -0.0324 31.3248 55.6923 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 77 , 33.2887 16.5721 21.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 78 I 2.0522 24.5157 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 79 ° 0.5348 24.0564 23.8404 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 80 K 2.1994 39.5761 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 81 H 2.0163 38.3656 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 82 q 11.5632 33.5311 44.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 83 & 0.6842 48.3675 44.7350 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 84 ’ 0.0424 15.2120 16.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 85 [ -0.0626 19.1555 55.6923 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 86 - 21.5332 21.9436 7.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 87 Y 2.1488 42.5237 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 88 Q 0.7918 43.9002 55.0992 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 89 " -0.1852 25.0523 16.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 90 ! 2.0967 11.4279 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 91 x 12.3872 36.6284 31.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 92 ) 0.2540 21.2683 56.0000 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 93 = 14.0706 36.4803 23.1556 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 94 + 6.5796 38.3675 38.3675 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 95 X 2.2840 42.3111 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 96 » 10.1156 35.2683 30.4239 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 97 ' 0.3714 9.8404 16.7316 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 98 ¢ 2.4251 30.9492 51.8404 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 99 Z 2.3020 35.7955 42.3111 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 100 > 6.2436 38.0564 38.0564 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 101 ® 0.9103 49.2683 49.2683 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 102 © 1.2041 49.2683 49.2683 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 103 ] -0.2430 19.1555 55.6923 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 104 é -3.2521 33.9082 48.9606 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 105 z 12.5416 29.7357 31.9436 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 106 _ 48.2362 41.6923 6.0564 -Verdana_Bold.ttf 92 ) 21.2683 56.0000 107 ¥ 1.9753 38.9042 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 1 t -10.2845 24.2160 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 2 h -13.6467 32.3226 44.4239 -Verdana_Bold.ttf 93 = 36.4803 23.1556 3 a -3.0151 31.7954 34.3675 -Verdana_Bold.ttf 93 = 36.4803 23.1556 4 n -3.3102 32.3226 33.1555 -Verdana_Bold.ttf 93 = 36.4803 23.1556 5 P -12.2051 35.4165 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 6 o -2.6220 35.1202 34.3675 -Verdana_Bold.ttf 93 = 36.4803 23.1556 7 e -2.9380 33.9082 34.3675 -Verdana_Bold.ttf 93 = 36.4803 23.1556 8 : -1.7920 10.6752 31.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 9 r -1.2994 23.3151 31.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 10 l -13.5790 10.2160 44.4239 -Verdana_Bold.ttf 93 = 36.4803 23.1556 11 i -13.7047 10.2160 44.4239 -Verdana_Bold.ttf 93 = 36.4803 23.1556 12 1 -12.0333 28.7413 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 13 | -14.0462 8.4803 55.6923 -Verdana_Bold.ttf 93 = 36.4803 23.1556 14 N -11.7135 38.8363 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 15 f -14.0822 24.5271 44.4239 -Verdana_Bold.ttf 93 = 36.4803 23.1556 16 g -2.9064 33.5311 44.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 17 d -14.1731 33.5311 45.6359 -Verdana_Bold.ttf 93 = 36.4803 23.1556 18 W -11.8043 62.2208 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 19 s -2.8090 29.7391 34.3675 -Verdana_Bold.ttf 93 = 36.4803 23.1556 20 c -2.3071 29.6826 34.3675 -Verdana_Bold.ttf 93 = 36.4803 23.1556 21 u -1.1793 32.3226 33.1555 -Verdana_Bold.ttf 93 = 36.4803 23.1556 22 3 -12.9936 33.8052 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 23 ~ 1.2879 41.7840 19.3716 -Verdana_Bold.ttf 93 = 36.4803 23.1556 24 # -11.6625 41.8499 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 25 O -13.5360 43.9002 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 26 ` -17.4143 16.9477 11.2684 -Verdana_Bold.ttf 93 = 36.4803 23.1556 27 @ -12.8359 47.6808 50.1066 -Verdana_Bold.ttf 93 = 36.4803 23.1556 28 F -11.9147 30.2610 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 29 S -12.9166 36.6318 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 30 p -2.6287 33.5311 44.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 31 “ -13.9749 30.4239 16.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 32 % -12.8256 66.6496 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 33 £ -12.9522 33.7487 43.5231 -Verdana_Bold.ttf 93 = 36.4803 23.1556 34 . 19.0455 10.6752 11.2684 -Verdana_Bold.ttf 93 = 36.4803 23.1556 35 2 -13.0049 33.2780 43.5231 -Verdana_Bold.ttf 93 = 36.4803 23.1556 36 5 -11.9982 33.0639 43.5231 -Verdana_Bold.ttf 93 = 36.4803 23.1556 37 m -2.4567 52.4335 33.1555 -Verdana_Bold.ttf 93 = 36.4803 23.1556 38 V -11.9181 42.3111 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 39 6 -13.0322 34.8011 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 40 w -1.2940 54.7880 31.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 41 T -11.7699 37.2507 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 42 M -11.6507 44.7331 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 43 G -13.0998 40.2643 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 44 b -13.9436 33.5311 45.6359 -Verdana_Bold.ttf 93 = 36.4803 23.1556 45 9 -12.6566 34.8011 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 46 ; -1.4985 16.5721 42.6188 -Verdana_Bold.ttf 93 = 36.4803 23.1556 47 D -11.9928 40.2643 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 48 L -11.9049 30.5721 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 49 y -1.3008 35.6325 43.5196 -Verdana_Bold.ttf 93 = 36.4803 23.1556 50 ‘ -14.2811 15.2120 16.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 51 \ -14.0114 31.6359 53.7390 -Verdana_Bold.ttf 93 = 36.4803 23.1556 52 R -11.4903 41.1651 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 53 < -7.3018 38.0564 38.0564 -Verdana_Bold.ttf 93 = 36.4803 23.1556 54 4 -12.1835 37.2216 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 55 8 -13.4799 36.2291 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 56 0 -12.9247 35.0428 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 57 A -11.5883 43.5231 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 58 E -11.6638 30.7316 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 59 B -12.0765 36.1047 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 60 v -1.6231 35.6325 31.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 61 k -14.3332 34.5835 44.4239 -Verdana_Bold.ttf 93 = 36.4803 23.1556 62 J -11.8850 26.4804 43.5231 -Verdana_Bold.ttf 93 = 36.4803 23.1556 63 U -11.5131 38.0018 43.5231 -Verdana_Bold.ttf 93 = 36.4803 23.1556 64 j -13.9057 20.5270 56.0000 -Verdana_Bold.ttf 93 = 36.4803 23.1556 65 ( -13.7839 21.2683 56.0000 -Verdana_Bold.ttf 93 = 36.4803 23.1556 66 7 -11.9431 33.3716 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 67 § -13.2910 33.3731 54.7915 -Verdana_Bold.ttf 93 = 36.4803 23.1556 68 $ -14.7365 34.4240 55.1557 -Verdana_Bold.ttf 93 = 36.4803 23.1556 69 € -12.9393 38.7447 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 70 / -13.9136 31.6359 53.7390 -Verdana_Bold.ttf 93 = 36.4803 23.1556 71 C -12.8258 36.1047 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 72 * -13.9198 32.2547 29.2120 -Verdana_Bold.ttf 93 = 36.4803 23.1556 73 ” -14.1206 30.4239 16.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 74 ? -13.2751 28.4593 43.5231 -Verdana_Bold.ttf 93 = 36.4803 23.1556 75 { -13.5546 31.3248 55.6923 -Verdana_Bold.ttf 93 = 36.4803 23.1556 76 } -13.8698 31.3248 55.6923 -Verdana_Bold.ttf 93 = 36.4803 23.1556 77 , 19.1355 16.5721 21.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 78 I -11.6590 24.5157 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 79 ° -13.0499 24.0564 23.8404 -Verdana_Bold.ttf 93 = 36.4803 23.1556 80 K -11.9045 39.5761 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 81 H -12.0182 38.3656 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 82 q -2.8340 33.5311 44.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 83 & -13.2134 48.3675 44.7350 -Verdana_Bold.ttf 93 = 36.4803 23.1556 84 ’ -14.1926 15.2120 16.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 85 [ -14.0741 19.1555 55.6923 -Verdana_Bold.ttf 93 = 36.4803 23.1556 86 - 7.3519 21.9436 7.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 87 Y -11.7609 42.5237 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 88 Q -12.9351 43.9002 55.0992 -Verdana_Bold.ttf 93 = 36.4803 23.1556 89 " -14.2327 25.0523 16.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 90 ! -11.9448 11.4279 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 91 x -1.4526 36.6284 31.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 92 ) -14.0427 21.2683 56.0000 -Verdana_Bold.ttf 93 = 36.4803 23.1556 93 = -0.0879 36.4803 23.1556 -Verdana_Bold.ttf 93 = 36.4803 23.1556 94 + -7.0348 38.3675 38.3675 -Verdana_Bold.ttf 93 = 36.4803 23.1556 95 X -11.4969 42.3111 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 96 » -3.8623 35.2683 30.4239 -Verdana_Bold.ttf 93 = 36.4803 23.1556 97 ' -14.0890 9.8404 16.7316 -Verdana_Bold.ttf 93 = 36.4803 23.1556 98 ¢ -11.6730 30.9492 51.8404 -Verdana_Bold.ttf 93 = 36.4803 23.1556 99 Z -11.7561 35.7955 42.3111 -Verdana_Bold.ttf 93 = 36.4803 23.1556 100 > -7.6705 38.0564 38.0564 -Verdana_Bold.ttf 93 = 36.4803 23.1556 101 ® -13.3716 49.2683 49.2683 -Verdana_Bold.ttf 93 = 36.4803 23.1556 102 © -13.3971 49.2683 49.2683 -Verdana_Bold.ttf 93 = 36.4803 23.1556 103 ] -14.2388 19.1555 55.6923 -Verdana_Bold.ttf 93 = 36.4803 23.1556 104 é -17.1665 33.9082 48.9606 -Verdana_Bold.ttf 93 = 36.4803 23.1556 105 z -1.4684 29.7357 31.9436 -Verdana_Bold.ttf 93 = 36.4803 23.1556 106 _ 34.5237 41.6923 6.0564 -Verdana_Bold.ttf 93 = 36.4803 23.1556 107 ¥ -12.0203 38.9042 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 1 t -3.5922 24.2160 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 2 h -6.9789 32.3226 44.4239 -Verdana_Bold.ttf 94 + 38.3675 38.3675 3 a 4.6157 31.7954 34.3675 -Verdana_Bold.ttf 94 + 38.3675 38.3675 4 n 4.3505 32.3226 33.1555 -Verdana_Bold.ttf 94 + 38.3675 38.3675 5 P -4.3247 35.4165 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 6 o 4.8567 35.1202 34.3675 -Verdana_Bold.ttf 94 + 38.3675 38.3675 7 e 4.9285 33.9082 34.3675 -Verdana_Bold.ttf 94 + 38.3675 38.3675 8 : 5.9520 10.6752 31.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 9 r 6.0959 23.3151 31.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 10 l -6.2737 10.2160 44.4239 -Verdana_Bold.ttf 94 + 38.3675 38.3675 11 i -6.2393 10.2160 44.4239 -Verdana_Bold.ttf 94 + 38.3675 38.3675 12 1 -4.2509 28.7413 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 13 | -6.9572 8.4803 55.6923 -Verdana_Bold.ttf 94 + 38.3675 38.3675 14 N -4.4812 38.8363 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 15 f -6.7139 24.5271 44.4239 -Verdana_Bold.ttf 94 + 38.3675 38.3675 16 g 4.7680 33.5311 44.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 17 d -6.8096 33.5311 45.6359 -Verdana_Bold.ttf 94 + 38.3675 38.3675 18 W -4.6238 62.2208 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 19 s 4.6678 29.7391 34.3675 -Verdana_Bold.ttf 94 + 38.3675 38.3675 20 c 4.9109 29.6826 34.3675 -Verdana_Bold.ttf 94 + 38.3675 38.3675 21 u 6.0164 32.3226 33.1555 -Verdana_Bold.ttf 94 + 38.3675 38.3675 22 3 -5.9843 33.8052 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 23 ~ 8.6860 41.7840 19.3716 -Verdana_Bold.ttf 94 + 38.3675 38.3675 24 # -4.6640 41.8499 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 25 O -6.0238 43.9002 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 26 ` -10.0341 16.9477 11.2684 -Verdana_Bold.ttf 94 + 38.3675 38.3675 27 @ -5.6555 47.6808 50.1066 -Verdana_Bold.ttf 94 + 38.3675 38.3675 28 F -4.3855 30.2610 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 29 S -5.4498 36.6318 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 30 p 4.6057 33.5311 44.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 31 “ -6.3638 30.4239 16.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 32 % -5.6893 66.6496 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 33 £ -5.3487 33.7487 43.5231 -Verdana_Bold.ttf 94 + 38.3675 38.3675 34 . 26.8839 10.6752 11.2684 -Verdana_Bold.ttf 94 + 38.3675 38.3675 35 2 -5.5232 33.2780 43.5231 -Verdana_Bold.ttf 94 + 38.3675 38.3675 36 5 -4.4356 33.0639 43.5231 -Verdana_Bold.ttf 94 + 38.3675 38.3675 37 m 4.7063 52.4335 33.1555 -Verdana_Bold.ttf 94 + 38.3675 38.3675 38 V -4.4399 42.3111 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 39 6 -5.7801 34.8011 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 40 w 6.2965 54.7880 31.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 41 T -4.3882 37.2507 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 42 M -4.8654 44.7331 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 43 G -5.6078 40.2643 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 44 b -6.7954 33.5311 45.6359 -Verdana_Bold.ttf 94 + 38.3675 38.3675 45 9 -5.8388 34.8011 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 46 ; 6.1341 16.5721 42.6188 -Verdana_Bold.ttf 94 + 38.3675 38.3675 47 D -4.6066 40.2643 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 48 L -4.1450 30.5721 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 49 y 6.0271 35.6325 43.5196 -Verdana_Bold.ttf 94 + 38.3675 38.3675 50 ‘ -6.5012 15.2120 16.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 51 \ -6.7547 31.6359 53.7390 -Verdana_Bold.ttf 94 + 38.3675 38.3675 52 R -4.6623 41.1651 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 53 < -0.1773 38.0564 38.0564 -Verdana_Bold.ttf 94 + 38.3675 38.3675 54 4 -4.3491 37.2216 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 55 8 -5.6488 36.2291 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 56 0 -5.6431 35.0428 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 57 A -4.5516 43.5231 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 58 E -4.6085 30.7316 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 59 B -4.5103 36.1047 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 60 v 6.1264 35.6325 31.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 61 k -6.4255 34.5835 44.4239 -Verdana_Bold.ttf 94 + 38.3675 38.3675 62 J -4.3624 26.4804 43.5231 -Verdana_Bold.ttf 94 + 38.3675 38.3675 63 U -4.3246 38.0018 43.5231 -Verdana_Bold.ttf 94 + 38.3675 38.3675 64 j -6.2353 20.5270 56.0000 -Verdana_Bold.ttf 94 + 38.3675 38.3675 65 ( -6.6020 21.2683 56.0000 -Verdana_Bold.ttf 94 + 38.3675 38.3675 66 7 -4.2318 33.3716 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 67 § -5.6399 33.3731 54.7915 -Verdana_Bold.ttf 94 + 38.3675 38.3675 68 $ -7.0930 34.4240 55.1557 -Verdana_Bold.ttf 94 + 38.3675 38.3675 69 € -5.4005 38.7447 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 70 / -6.6463 31.6359 53.7390 -Verdana_Bold.ttf 94 + 38.3675 38.3675 71 C -5.8611 36.1047 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 72 * -6.4424 32.2547 29.2120 -Verdana_Bold.ttf 94 + 38.3675 38.3675 73 ” -6.9941 30.4239 16.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 74 ? -5.6389 28.4593 43.5231 -Verdana_Bold.ttf 94 + 38.3675 38.3675 75 { -6.7148 31.3248 55.6923 -Verdana_Bold.ttf 94 + 38.3675 38.3675 76 } -6.8280 31.3248 55.6923 -Verdana_Bold.ttf 94 + 38.3675 38.3675 77 , 26.4346 16.5721 21.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 78 I -4.6176 24.5157 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 79 ° -5.7577 24.0564 23.8404 -Verdana_Bold.ttf 94 + 38.3675 38.3675 80 K -4.3441 39.5761 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 81 H -4.8379 38.3656 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 82 q 4.6119 33.5311 44.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 83 & -5.5627 48.3675 44.7350 -Verdana_Bold.ttf 94 + 38.3675 38.3675 84 ’ -6.8673 15.2120 16.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 85 [ -6.4219 19.1555 55.6923 -Verdana_Bold.ttf 94 + 38.3675 38.3675 86 - 14.9338 21.9436 7.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 87 Y -4.7024 42.5237 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 88 Q -6.0672 43.9002 55.0992 -Verdana_Bold.ttf 94 + 38.3675 38.3675 89 " -6.4915 25.0523 16.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 90 ! -4.5683 11.4279 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 91 x 5.9583 36.6284 31.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 92 ) -6.5759 21.2683 56.0000 -Verdana_Bold.ttf 94 + 38.3675 38.3675 93 = 7.1885 36.4803 23.1556 -Verdana_Bold.ttf 94 + 38.3675 38.3675 94 + -0.2264 38.3675 38.3675 -Verdana_Bold.ttf 94 + 38.3675 38.3675 95 X -4.6054 42.3111 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 96 » 3.7378 35.2683 30.4239 -Verdana_Bold.ttf 94 + 38.3675 38.3675 97 ' -6.5577 9.8404 16.7316 -Verdana_Bold.ttf 94 + 38.3675 38.3675 98 ¢ -4.0198 30.9492 51.8404 -Verdana_Bold.ttf 94 + 38.3675 38.3675 99 Z -4.3862 35.7955 42.3111 -Verdana_Bold.ttf 94 + 38.3675 38.3675 100 > -0.2654 38.0564 38.0564 -Verdana_Bold.ttf 94 + 38.3675 38.3675 101 ® -5.7582 49.2683 49.2683 -Verdana_Bold.ttf 94 + 38.3675 38.3675 102 © -5.3286 49.2683 49.2683 -Verdana_Bold.ttf 94 + 38.3675 38.3675 103 ] -6.5584 19.1555 55.6923 -Verdana_Bold.ttf 94 + 38.3675 38.3675 104 é -9.8830 33.9082 48.9606 -Verdana_Bold.ttf 94 + 38.3675 38.3675 105 z 5.9911 29.7357 31.9436 -Verdana_Bold.ttf 94 + 38.3675 38.3675 106 _ 42.0332 41.6923 6.0564 -Verdana_Bold.ttf 94 + 38.3675 38.3675 107 ¥ -4.4990 38.9042 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 1 t 1.1677 24.2160 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 2 h -1.9160 32.3226 44.4239 -Verdana_Bold.ttf 95 X 42.3111 42.3111 3 a 8.9022 31.7954 34.3675 -Verdana_Bold.ttf 95 X 42.3111 42.3111 4 n 8.7303 32.3226 33.1555 -Verdana_Bold.ttf 95 X 42.3111 42.3111 5 P -0.1282 35.4165 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 6 o 9.3584 35.1202 34.3675 -Verdana_Bold.ttf 95 X 42.3111 42.3111 7 e 8.8876 33.9082 34.3675 -Verdana_Bold.ttf 95 X 42.3111 42.3111 8 : 10.2107 10.6752 31.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 9 r 10.3719 23.3151 31.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 10 l -2.0635 10.2160 44.4239 -Verdana_Bold.ttf 95 X 42.3111 42.3111 11 i -2.0072 10.2160 44.4239 -Verdana_Bold.ttf 95 X 42.3111 42.3111 12 1 -0.0949 28.7413 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 13 | -2.5818 8.4803 55.6923 -Verdana_Bold.ttf 95 X 42.3111 42.3111 14 N 0.0155 38.8363 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 15 f -2.0686 24.5271 44.4239 -Verdana_Bold.ttf 95 X 42.3111 42.3111 16 g 8.9995 33.5311 44.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 17 d -2.0200 33.5311 45.6359 -Verdana_Bold.ttf 95 X 42.3111 42.3111 18 W 0.0900 62.2208 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 19 s 8.8121 29.7391 34.3675 -Verdana_Bold.ttf 95 X 42.3111 42.3111 20 c 8.8328 29.6826 34.3675 -Verdana_Bold.ttf 95 X 42.3111 42.3111 21 u 10.2486 32.3226 33.1555 -Verdana_Bold.ttf 95 X 42.3111 42.3111 22 3 -1.4815 33.8052 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 23 ~ 13.1672 41.7840 19.3716 -Verdana_Bold.ttf 95 X 42.3111 42.3111 24 # -0.3761 41.8499 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 25 O -1.3742 43.9002 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 26 ` -5.0618 16.9477 11.2684 -Verdana_Bold.ttf 95 X 42.3111 42.3111 27 @ -1.1659 47.6808 50.1066 -Verdana_Bold.ttf 95 X 42.3111 42.3111 28 F 0.0893 30.2610 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 29 S -0.7698 36.6318 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 30 p 8.7739 33.5311 44.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 31 “ -2.4136 30.4239 16.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 32 % -1.1248 66.6496 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 33 £ -1.3901 33.7487 43.5231 -Verdana_Bold.ttf 95 X 42.3111 42.3111 34 . 31.1761 10.6752 11.2684 -Verdana_Bold.ttf 95 X 42.3111 42.3111 35 2 -1.1641 33.2780 43.5231 -Verdana_Bold.ttf 95 X 42.3111 42.3111 36 5 0.2383 33.0639 43.5231 -Verdana_Bold.ttf 95 X 42.3111 42.3111 37 m 9.1945 52.4335 33.1555 -Verdana_Bold.ttf 95 X 42.3111 42.3111 38 V 0.3897 42.3111 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 39 6 -1.3890 34.8011 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 40 w 10.1297 54.7880 31.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 41 T 0.1194 37.2507 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 42 M 0.1062 44.7331 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 43 G -1.3785 40.2643 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 44 b -1.9378 33.5311 45.6359 -Verdana_Bold.ttf 95 X 42.3111 42.3111 45 9 -1.2260 34.8011 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 46 ; 10.2758 16.5721 42.6188 -Verdana_Bold.ttf 95 X 42.3111 42.3111 47 D 0.3385 40.2643 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 48 L -0.1249 30.5721 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 49 y 10.3997 35.6325 43.5196 -Verdana_Bold.ttf 95 X 42.3111 42.3111 50 ‘ -2.1984 15.2120 16.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 51 \ -2.2099 31.6359 53.7390 -Verdana_Bold.ttf 95 X 42.3111 42.3111 52 R 0.1256 41.1651 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 53 < 4.1782 38.0564 38.0564 -Verdana_Bold.ttf 95 X 42.3111 42.3111 54 4 0.0317 37.2216 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 55 8 -1.0549 36.2291 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 56 0 -1.0110 35.0428 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 57 A -0.0769 43.5231 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 58 E 0.0704 30.7316 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 59 B 0.0644 36.1047 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 60 v 10.4716 35.6325 31.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 61 k -1.5951 34.5835 44.4239 -Verdana_Bold.ttf 95 X 42.3111 42.3111 62 J 0.2433 26.4804 43.5231 -Verdana_Bold.ttf 95 X 42.3111 42.3111 63 U -0.4143 38.0018 43.5231 -Verdana_Bold.ttf 95 X 42.3111 42.3111 64 j -1.8172 20.5270 56.0000 -Verdana_Bold.ttf 95 X 42.3111 42.3111 65 ( -2.0649 21.2683 56.0000 -Verdana_Bold.ttf 95 X 42.3111 42.3111 66 7 0.1602 33.3716 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 67 § -1.4278 33.3731 54.7915 -Verdana_Bold.ttf 95 X 42.3111 42.3111 68 $ -2.8050 34.4240 55.1557 -Verdana_Bold.ttf 95 X 42.3111 42.3111 69 € -1.2638 38.7447 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 70 / -2.2793 31.6359 53.7390 -Verdana_Bold.ttf 95 X 42.3111 42.3111 71 C -1.2479 36.1047 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 72 * -1.9350 32.2547 29.2120 -Verdana_Bold.ttf 95 X 42.3111 42.3111 73 ” -2.2065 30.4239 16.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 74 ? -1.3289 28.4593 43.5231 -Verdana_Bold.ttf 95 X 42.3111 42.3111 75 { -1.7760 31.3248 55.6923 -Verdana_Bold.ttf 95 X 42.3111 42.3111 76 } -1.9829 31.3248 55.6923 -Verdana_Bold.ttf 95 X 42.3111 42.3111 77 , 30.8278 16.5721 21.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 78 I -0.2840 24.5157 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 79 ° -1.5016 24.0564 23.8404 -Verdana_Bold.ttf 95 X 42.3111 42.3111 80 K -0.1091 39.5761 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 81 H 0.0326 38.3656 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 82 q 9.0918 33.5311 44.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 83 & -1.3657 48.3675 44.7350 -Verdana_Bold.ttf 95 X 42.3111 42.3111 84 ’ -1.9120 15.2120 16.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 85 [ -2.0542 19.1555 55.6923 -Verdana_Bold.ttf 95 X 42.3111 42.3111 86 - 19.1079 21.9436 7.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 87 Y -0.1965 42.5237 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 88 Q -1.1971 43.9002 55.0992 -Verdana_Bold.ttf 95 X 42.3111 42.3111 89 " -2.1733 25.0523 16.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 90 ! 0.3475 11.4279 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 91 x 10.4769 36.6284 31.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 92 ) -1.8915 21.2683 56.0000 -Verdana_Bold.ttf 95 X 42.3111 42.3111 93 = 12.0462 36.4803 23.1556 -Verdana_Bold.ttf 95 X 42.3111 42.3111 94 + 4.4514 38.3675 38.3675 -Verdana_Bold.ttf 95 X 42.3111 42.3111 95 X 0.0893 42.3111 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 96 » 7.7382 35.2683 30.4239 -Verdana_Bold.ttf 95 X 42.3111 42.3111 97 ' -2.2416 9.8404 16.7316 -Verdana_Bold.ttf 95 X 42.3111 42.3111 98 ¢ 0.2197 30.9492 51.8404 -Verdana_Bold.ttf 95 X 42.3111 42.3111 99 Z -0.2935 35.7955 42.3111 -Verdana_Bold.ttf 95 X 42.3111 42.3111 100 > 4.3781 38.0564 38.0564 -Verdana_Bold.ttf 95 X 42.3111 42.3111 101 ® -0.9235 49.2683 49.2683 -Verdana_Bold.ttf 95 X 42.3111 42.3111 102 © -1.0165 49.2683 49.2683 -Verdana_Bold.ttf 95 X 42.3111 42.3111 103 ] -2.1163 19.1555 55.6923 -Verdana_Bold.ttf 95 X 42.3111 42.3111 104 é -5.3901 33.9082 48.9606 -Verdana_Bold.ttf 95 X 42.3111 42.3111 105 z 10.3317 29.7357 31.9436 -Verdana_Bold.ttf 95 X 42.3111 42.3111 106 _ 46.0353 41.6923 6.0564 -Verdana_Bold.ttf 95 X 42.3111 42.3111 107 ¥ -0.1394 38.9042 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 1 t -6.9241 24.2160 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 2 h -9.7575 32.3226 44.4239 -Verdana_Bold.ttf 96 » 35.2683 30.4239 3 a 1.1218 31.7954 34.3675 -Verdana_Bold.ttf 96 » 35.2683 30.4239 4 n 0.9970 32.3226 33.1555 -Verdana_Bold.ttf 96 » 35.2683 30.4239 5 P -8.1499 35.4165 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 6 o 1.0016 35.1202 34.3675 -Verdana_Bold.ttf 96 » 35.2683 30.4239 7 e 1.2235 33.9082 34.3675 -Verdana_Bold.ttf 96 » 35.2683 30.4239 8 : 2.5468 10.6752 31.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 9 r 2.4535 23.3151 31.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 10 l -9.9007 10.2160 44.4239 -Verdana_Bold.ttf 96 » 35.2683 30.4239 11 i -10.2208 10.2160 44.4239 -Verdana_Bold.ttf 96 » 35.2683 30.4239 12 1 -7.9417 28.7413 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 13 | -10.1670 8.4803 55.6923 -Verdana_Bold.ttf 96 » 35.2683 30.4239 14 N -8.0873 38.8363 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 15 f -9.9730 24.5271 44.4239 -Verdana_Bold.ttf 96 » 35.2683 30.4239 16 g 1.2715 33.5311 44.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 17 d -10.5054 33.5311 45.6359 -Verdana_Bold.ttf 96 » 35.2683 30.4239 18 W -8.3019 62.2208 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 19 s 1.2804 29.7391 34.3675 -Verdana_Bold.ttf 96 » 35.2683 30.4239 20 c 0.9175 29.6826 34.3675 -Verdana_Bold.ttf 96 » 35.2683 30.4239 21 u 2.1985 32.3226 33.1555 -Verdana_Bold.ttf 96 » 35.2683 30.4239 22 3 -9.5103 33.8052 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 23 ~ 5.1588 41.7840 19.3716 -Verdana_Bold.ttf 96 » 35.2683 30.4239 24 # -7.8257 41.8499 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 25 O -9.4317 43.9002 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 26 ` -13.8202 16.9477 11.2684 -Verdana_Bold.ttf 96 » 35.2683 30.4239 27 @ -9.3583 47.6808 50.1066 -Verdana_Bold.ttf 96 » 35.2683 30.4239 28 F -7.7066 30.2610 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 29 S -9.5737 36.6318 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 30 p 0.7237 33.5311 44.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 31 “ -10.0844 30.4239 16.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 32 % -9.4820 66.6496 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 33 £ -9.5476 33.7487 43.5231 -Verdana_Bold.ttf 96 » 35.2683 30.4239 34 . 23.0657 10.6752 11.2684 -Verdana_Bold.ttf 96 » 35.2683 30.4239 35 2 -9.3883 33.2780 43.5231 -Verdana_Bold.ttf 96 » 35.2683 30.4239 36 5 -8.1828 33.0639 43.5231 -Verdana_Bold.ttf 96 » 35.2683 30.4239 37 m 1.1853 52.4335 33.1555 -Verdana_Bold.ttf 96 » 35.2683 30.4239 38 V -8.0644 42.3111 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 39 6 -9.6853 34.8011 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 40 w 2.3003 54.7880 31.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 41 T -8.0034 37.2507 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 42 M -8.0767 44.7331 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 43 G -9.3234 40.2643 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 44 b -10.5279 33.5311 45.6359 -Verdana_Bold.ttf 96 » 35.2683 30.4239 45 9 -9.6341 34.8011 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 46 ; 2.1442 16.5721 42.6188 -Verdana_Bold.ttf 96 » 35.2683 30.4239 47 D -8.0690 40.2643 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 48 L -8.2054 30.5721 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 49 y 2.2412 35.6325 43.5196 -Verdana_Bold.ttf 96 » 35.2683 30.4239 50 ‘ -10.2815 15.2120 16.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 51 \ -10.0330 31.6359 53.7390 -Verdana_Bold.ttf 96 » 35.2683 30.4239 52 R -8.2993 41.1651 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 53 < -3.8468 38.0564 38.0564 -Verdana_Bold.ttf 96 » 35.2683 30.4239 54 4 -8.2298 37.2216 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 55 8 -9.5089 36.2291 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 56 0 -9.5444 35.0428 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 57 A -7.9663 43.5231 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 58 E -7.8500 30.7316 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 59 B -8.2208 36.1047 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 60 v 2.1878 35.6325 31.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 61 k -10.1963 34.5835 44.4239 -Verdana_Bold.ttf 96 » 35.2683 30.4239 62 J -8.2151 26.4804 43.5231 -Verdana_Bold.ttf 96 » 35.2683 30.4239 63 U -8.1006 38.0018 43.5231 -Verdana_Bold.ttf 96 » 35.2683 30.4239 64 j -10.4304 20.5270 56.0000 -Verdana_Bold.ttf 96 » 35.2683 30.4239 65 ( -10.2962 21.2683 56.0000 -Verdana_Bold.ttf 96 » 35.2683 30.4239 66 7 -8.0169 33.3716 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 67 § -9.3307 33.3731 54.7915 -Verdana_Bold.ttf 96 » 35.2683 30.4239 68 $ -10.7220 34.4240 55.1557 -Verdana_Bold.ttf 96 » 35.2683 30.4239 69 € -9.3810 38.7447 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 70 / -10.1386 31.6359 53.7390 -Verdana_Bold.ttf 96 » 35.2683 30.4239 71 C -9.2521 36.1047 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 72 * -9.9877 32.2547 29.2120 -Verdana_Bold.ttf 96 » 35.2683 30.4239 73 ” -9.8932 30.4239 16.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 74 ? -9.5473 28.4593 43.5231 -Verdana_Bold.ttf 96 » 35.2683 30.4239 75 { -10.2472 31.3248 55.6923 -Verdana_Bold.ttf 96 » 35.2683 30.4239 76 } -10.0864 31.3248 55.6923 -Verdana_Bold.ttf 96 » 35.2683 30.4239 77 , 23.1141 16.5721 21.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 78 I -8.0875 24.5157 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 79 ° -9.5189 24.0564 23.8404 -Verdana_Bold.ttf 96 » 35.2683 30.4239 80 K -7.9255 39.5761 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 81 H -8.2581 38.3656 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 82 q 1.3158 33.5311 44.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 83 & -9.3479 48.3675 44.7350 -Verdana_Bold.ttf 96 » 35.2683 30.4239 84 ’ -10.3271 15.2120 16.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 85 [ -10.2398 19.1555 55.6923 -Verdana_Bold.ttf 96 » 35.2683 30.4239 86 - 10.7684 21.9436 7.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 87 Y -8.1985 42.5237 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 88 Q -9.3527 43.9002 55.0992 -Verdana_Bold.ttf 96 » 35.2683 30.4239 89 " -10.0785 25.0523 16.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 90 ! -8.6422 11.4279 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 91 x 2.1263 36.6284 31.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 92 ) -9.9651 21.2683 56.0000 -Verdana_Bold.ttf 96 » 35.2683 30.4239 93 = 3.6937 36.4803 23.1556 -Verdana_Bold.ttf 96 » 35.2683 30.4239 94 + -3.8249 38.3675 38.3675 -Verdana_Bold.ttf 96 » 35.2683 30.4239 95 X -8.0513 42.3111 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 96 » -0.2358 35.2683 30.4239 -Verdana_Bold.ttf 96 » 35.2683 30.4239 97 ' -9.7745 9.8404 16.7316 -Verdana_Bold.ttf 96 » 35.2683 30.4239 98 ¢ -7.7906 30.9492 51.8404 -Verdana_Bold.ttf 96 » 35.2683 30.4239 99 Z -8.4566 35.7955 42.3111 -Verdana_Bold.ttf 96 » 35.2683 30.4239 100 > -3.7947 38.0564 38.0564 -Verdana_Bold.ttf 96 » 35.2683 30.4239 101 ® -9.6096 49.2683 49.2683 -Verdana_Bold.ttf 96 » 35.2683 30.4239 102 © -9.3411 49.2683 49.2683 -Verdana_Bold.ttf 96 » 35.2683 30.4239 103 ] -10.1919 19.1555 55.6923 -Verdana_Bold.ttf 96 » 35.2683 30.4239 104 é -13.4381 33.9082 48.9606 -Verdana_Bold.ttf 96 » 35.2683 30.4239 105 z 2.1678 29.7357 31.9436 -Verdana_Bold.ttf 96 » 35.2683 30.4239 106 _ 37.9114 41.6923 6.0564 -Verdana_Bold.ttf 96 » 35.2683 30.4239 107 ¥ -8.2433 38.9042 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 1 t 3.4198 24.2160 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 2 h -0.1119 32.3226 44.4239 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 3 a 11.1062 31.7954 34.3675 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 4 n 11.1651 32.3226 33.1555 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 5 P 1.9812 35.4165 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 6 o 11.1741 35.1202 34.3675 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 7 e 11.0450 33.9082 34.3675 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 8 : 12.6736 10.6752 31.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 9 r 12.4394 23.3151 31.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 10 l -0.1009 10.2160 44.4239 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 11 i -0.0664 10.2160 44.4239 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 12 1 2.1248 28.7413 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 13 | -0.0025 8.4803 55.6923 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 14 N 2.1062 38.8363 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 15 f -0.0094 24.5271 44.4239 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 16 g 11.1233 33.5311 44.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 17 d 0.0230 33.5311 45.6359 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 18 W 2.4175 62.2208 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 19 s 11.1697 29.7391 34.3675 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 20 c 11.1414 29.6826 34.3675 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 21 u 12.8347 32.3226 33.1555 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 22 3 0.8815 33.8052 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 23 ~ 15.3946 41.7840 19.3716 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 24 # 2.0105 41.8499 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 25 O 0.8714 43.9002 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 26 ` -3.5257 16.9477 11.2684 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 27 @ 0.9803 47.6808 50.1066 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 28 F 2.1186 30.2610 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 29 S 0.9042 36.6318 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 30 p 11.5671 33.5311 44.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 31 “ 0.2757 30.4239 16.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 32 % 0.9505 66.6496 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 33 £ 1.1852 33.7487 43.5231 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 34 . 33.3510 10.6752 11.2684 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 35 2 0.9465 33.2780 43.5231 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 36 5 2.3041 33.0639 43.5231 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 37 m 11.2737 52.4335 33.1555 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 38 V 1.9586 42.3111 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 39 6 1.0126 34.8011 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 40 w 12.5746 54.7880 31.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 41 T 2.0160 37.2507 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 42 M 2.0700 44.7331 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 43 G 0.8955 40.2643 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 44 b 0.0741 33.5311 45.6359 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 45 9 0.8700 34.8011 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 46 ; 12.4764 16.5721 42.6188 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 47 D 2.1622 40.2643 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 48 L 2.0490 30.5721 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 49 y 12.6100 35.6325 43.5196 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 50 ‘ -0.1123 15.2120 16.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 51 \ -0.0181 31.6359 53.7390 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 52 R 2.2075 41.1651 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 53 < 6.6385 38.0564 38.0564 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 54 4 2.2968 37.2216 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 55 8 0.9325 36.2291 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 56 0 1.1873 35.0428 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 57 A 2.1858 43.5231 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 58 E 1.7911 30.7316 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 59 B 1.8461 36.1047 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 60 v 12.1031 35.6325 31.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 61 k 0.1009 34.5835 44.4239 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 62 J 2.0264 26.4804 43.5231 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 63 U 2.0782 38.0018 43.5231 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 64 j -0.0864 20.5270 56.0000 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 65 ( 0.0000 21.2683 56.0000 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 66 7 2.1787 33.3716 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 67 § 0.9008 33.3731 54.7915 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 68 $ -1.0138 34.4240 55.1557 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 69 € 0.8889 38.7447 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 70 / -0.1407 31.6359 53.7390 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 71 C 0.9258 36.1047 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 72 * 0.1684 32.2547 29.2120 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 73 ” -0.0735 30.4239 16.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 74 ? 0.7749 28.4593 43.5231 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 75 { -0.0054 31.3248 55.6923 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 76 } 0.0792 31.3248 55.6923 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 77 , 33.3329 16.5721 21.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 78 I 2.0610 24.5157 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 79 ° 0.7101 24.0564 23.8404 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 80 K 2.0018 39.5761 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 81 H 2.1117 38.3656 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 82 q 11.1334 33.5311 44.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 83 & 0.7579 48.3675 44.7350 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 84 ’ -0.2710 15.2120 16.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 85 [ 0.0012 19.1555 55.6923 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 86 - 21.3260 21.9436 7.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 87 Y 2.1498 42.5237 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 88 Q 0.6366 43.9002 55.0992 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 89 " 0.0059 25.0523 16.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 90 ! 2.0559 11.4279 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 91 x 12.4006 36.6284 31.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 92 ) -0.0951 21.2683 56.0000 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 93 = 14.1644 36.4803 23.1556 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 94 + 6.6778 38.3675 38.3675 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 95 X 2.0755 42.3111 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 96 » 10.1862 35.2683 30.4239 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 97 ' -0.0363 9.8404 16.7316 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 98 ¢ 2.5134 30.9492 51.8404 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 99 Z 2.0185 35.7955 42.3111 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 100 > 6.6287 38.0564 38.0564 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 101 ® 0.9259 49.2683 49.2683 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 102 © 0.9146 49.2683 49.2683 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 103 ] -0.1437 19.1555 55.6923 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 104 é -3.4511 33.9082 48.9606 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 105 z 12.7225 29.7357 31.9436 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 106 _ 48.2144 41.6923 6.0564 -Verdana_Bold.ttf 97 ' 9.8404 16.7316 107 ¥ 1.9433 38.9042 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 1 t 0.9453 24.2160 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 2 h -2.6470 32.3226 44.4239 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 3 a 8.9747 31.7954 34.3675 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 4 n 9.1736 32.3226 33.1555 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 5 P -0.2058 35.4165 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 6 o 8.7286 35.1202 34.3675 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 7 e 8.7940 33.9082 34.3675 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 8 : 9.9632 10.6752 31.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 9 r 10.1305 23.3151 31.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 10 l -1.9348 10.2160 44.4239 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 11 i -2.6291 10.2160 44.4239 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 12 1 -0.4323 28.7413 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 13 | -2.3756 8.4803 55.6923 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 14 N -0.3786 38.8363 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 15 f -2.1116 24.5271 44.4239 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 16 g 8.5646 33.5311 44.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 17 d -2.6963 33.5311 45.6359 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 18 W -0.4720 62.2208 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 19 s 8.8665 29.7391 34.3675 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 20 c 8.7201 29.6826 34.3675 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 21 u 10.2536 32.3226 33.1555 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 22 3 -1.5582 33.8052 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 23 ~ 12.6125 41.7840 19.3716 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 24 # -0.0603 41.8499 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 25 O -1.5927 43.9002 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 26 ` -5.9711 16.9477 11.2684 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 27 @ -1.5169 47.6808 50.1066 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 28 F -0.2399 30.2610 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 29 S -1.3864 36.6318 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 30 p 8.8205 33.5311 44.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 31 “ -2.2828 30.4239 16.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 32 % -1.6245 66.6496 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 33 £ -1.4000 33.7487 43.5231 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 34 . 31.0001 10.6752 11.2684 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 35 2 -1.6178 33.2780 43.5231 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 36 5 -0.2133 33.0639 43.5231 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 37 m 9.1798 52.4335 33.1555 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 38 V -0.3924 42.3111 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 39 6 -1.5335 34.8011 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 40 w 10.2915 54.7880 31.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 41 T -0.3184 37.2507 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 42 M -0.3669 44.7331 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 43 G -1.5984 40.2643 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 44 b -2.6640 33.5311 45.6359 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 45 9 -1.9045 34.8011 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 46 ; 9.8450 16.5721 42.6188 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 47 D -0.1123 40.2643 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 48 L -0.6321 30.5721 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 49 y 10.0839 35.6325 43.5196 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 50 ‘ -2.3750 15.2120 16.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 51 \ -2.1174 31.6359 53.7390 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 52 R -0.2168 41.1651 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 53 < 3.8687 38.0564 38.0564 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 54 4 -0.5143 37.2216 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 55 8 -1.7091 36.2291 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 56 0 -1.8593 35.0428 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 57 A -0.1776 43.5231 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 58 E -0.3401 30.7316 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 59 B -0.2611 36.1047 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 60 v 10.2456 35.6325 31.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 61 k -2.3933 34.5835 44.4239 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 62 J -0.3448 26.4804 43.5231 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 63 U -0.3698 38.0018 43.5231 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 64 j -2.5940 20.5270 56.0000 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 65 ( -2.4531 21.2683 56.0000 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 66 7 -0.3822 33.3716 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 67 § -1.5663 33.3731 54.7915 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 68 $ -3.2860 34.4240 55.1557 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 69 € -1.5971 38.7447 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 70 / -2.5284 31.6359 53.7390 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 71 C -1.5076 36.1047 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 72 * -2.1698 32.2547 29.2120 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 73 ” -2.4739 30.4239 16.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 74 ? -1.4860 28.4593 43.5231 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 75 { -2.6072 31.3248 55.6923 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 76 } -2.3984 31.3248 55.6923 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 77 , 30.4447 16.5721 21.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 78 I -0.2824 24.5157 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 79 ° -1.5326 24.0564 23.8404 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 80 K -0.3655 39.5761 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 81 H -0.4432 38.3656 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 82 q 8.5184 33.5311 44.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 83 & -1.3864 48.3675 44.7350 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 84 ’ -2.3076 15.2120 16.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 85 [ -2.6497 19.1555 55.6923 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 86 - 19.1043 21.9436 7.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 87 Y -0.3701 42.5237 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 88 Q -1.7781 43.9002 55.0992 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 89 " -2.6056 25.0523 16.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 90 ! -0.1630 11.4279 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 91 x 10.2219 36.6284 31.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 92 ) -2.6771 21.2683 56.0000 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 93 = 11.5132 36.4803 23.1556 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 94 + 3.9595 38.3675 38.3675 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 95 X -0.0152 42.3111 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 96 » 7.8460 35.2683 30.4239 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 97 ' -2.7124 9.8404 16.7316 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 98 ¢ 0.2518 30.9492 51.8404 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 99 Z -0.4885 35.7955 42.3111 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 100 > 3.9874 38.0564 38.0564 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 101 ® -1.3000 49.2683 49.2683 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 102 © -1.6293 49.2683 49.2683 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 103 ] -2.7319 19.1555 55.6923 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 104 é -5.8857 33.9082 48.9606 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 105 z 10.1704 29.7357 31.9436 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 106 _ 46.1699 41.6923 6.0564 -Verdana_Bold.ttf 98 ¢ 30.9492 51.8404 107 ¥ -0.2241 38.9042 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 1 t 1.2685 24.2160 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 2 h -2.3570 32.3226 44.4239 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 3 a 9.1552 31.7954 34.3675 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 4 n 9.1080 32.3226 33.1555 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 5 P 0.0623 35.4165 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 6 o 9.2866 35.1202 34.3675 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 7 e 9.1733 33.9082 34.3675 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 8 : 10.3885 10.6752 31.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 9 r 10.3488 23.3151 31.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 10 l -2.0503 10.2160 44.4239 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 11 i -1.8426 10.2160 44.4239 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 12 1 0.2724 28.7413 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 13 | -2.3434 8.4803 55.6923 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 14 N -0.3141 38.8363 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 15 f -1.9401 24.5271 44.4239 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 16 g 8.9940 33.5311 44.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 17 d -1.9618 33.5311 45.6359 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 18 W -0.0455 62.2208 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 19 s 9.2387 29.7391 34.3675 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 20 c 9.1514 29.6826 34.3675 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 21 u 10.1959 32.3226 33.1555 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 22 3 -1.1379 33.8052 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 23 ~ 13.2555 41.7840 19.3716 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 24 # -0.3005 41.8499 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 25 O -1.0296 43.9002 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 26 ` -4.9899 16.9477 11.2684 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 27 @ -1.1473 47.6808 50.1066 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 28 F 0.1615 30.2610 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 29 S -1.1192 36.6318 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 30 p 9.3544 33.5311 44.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 31 “ -2.2239 30.4239 16.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 32 % -1.5671 66.6496 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 33 £ -1.2851 33.7487 43.5231 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 34 . 30.8062 10.6752 11.2684 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 35 2 -1.3749 33.2780 43.5231 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 36 5 -0.3983 33.0639 43.5231 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 37 m 9.1898 52.4335 33.1555 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 38 V 0.1422 42.3111 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 39 6 -1.2576 34.8011 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 40 w 10.2803 54.7880 31.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 41 T 0.0547 37.2507 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 42 M 0.0219 44.7331 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 43 G -1.1593 40.2643 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 44 b -2.1467 33.5311 45.6359 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 45 9 -1.1957 34.8011 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 46 ; 10.2200 16.5721 42.6188 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 47 D -0.1876 40.2643 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 48 L 0.1786 30.5721 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 49 y 9.8796 35.6325 43.5196 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 50 ‘ -2.1341 15.2120 16.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 51 \ -2.4723 31.6359 53.7390 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 52 R -0.0514 41.1651 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 53 < 4.1960 38.0564 38.0564 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 54 4 0.0789 37.2216 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 55 8 -0.9640 36.2291 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 56 0 -1.1795 35.0428 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 57 A -0.2840 43.5231 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 58 E 0.2632 30.7316 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 59 B 0.2235 36.1047 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 60 v 10.4935 35.6325 31.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 61 k -2.3563 34.5835 44.4239 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 62 J -0.0839 26.4804 43.5231 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 63 U -0.0093 38.0018 43.5231 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 64 j -2.3718 20.5270 56.0000 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 65 ( -1.9853 21.2683 56.0000 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 66 7 -0.1539 33.3716 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 67 § -1.2159 33.3731 54.7915 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 68 $ -3.0347 34.4240 55.1557 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 69 € -1.4352 38.7447 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 70 / -1.9914 31.6359 53.7390 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 71 C -1.2025 36.1047 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 72 * -2.1650 32.2547 29.2120 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 73 ” -2.2988 30.4239 16.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 74 ? -1.5512 28.4593 43.5231 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 75 { -2.1906 31.3248 55.6923 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 76 } -1.9634 31.3248 55.6923 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 77 , 30.9538 16.5721 21.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 78 I 0.1259 24.5157 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 79 ° -1.1446 24.0564 23.8404 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 80 K 0.0785 39.5761 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 81 H -0.0461 38.3656 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 82 q 8.9366 33.5311 44.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 83 & -1.1109 48.3675 44.7350 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 84 ’ -2.0757 15.2120 16.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 85 [ -2.0066 19.1555 55.6923 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 86 - 19.0652 21.9436 7.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 87 Y -0.1745 42.5237 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 88 Q -0.9848 43.9002 55.0992 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 89 " -2.2945 25.0523 16.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 90 ! -0.1160 11.4279 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 91 x 10.1241 36.6284 31.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 92 ) -2.3046 21.2683 56.0000 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 93 = 11.9826 36.4803 23.1556 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 94 + 4.5169 38.3675 38.3675 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 95 X -0.1225 42.3111 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 96 » 8.3939 35.2683 30.4239 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 97 ' -2.2590 9.8404 16.7316 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 98 ¢ 0.3147 30.9492 51.8404 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 99 Z 0.0385 35.7955 42.3111 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 100 > 4.4831 38.0564 38.0564 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 101 ® -1.2083 49.2683 49.2683 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 102 © -1.4061 49.2683 49.2683 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 103 ] -2.3931 19.1555 55.6923 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 104 é -5.2375 33.9082 48.9606 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 105 z 10.1240 29.7357 31.9436 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 106 _ 46.2678 41.6923 6.0564 -Verdana_Bold.ttf 99 Z 35.7955 42.3111 107 ¥ -0.1782 38.9042 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 1 t -3.1392 24.2160 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 2 h -6.2078 32.3226 44.4239 -Verdana_Bold.ttf 100 > 38.0564 38.0564 3 a 4.9564 31.7954 34.3675 -Verdana_Bold.ttf 100 > 38.0564 38.0564 4 n 4.5388 32.3226 33.1555 -Verdana_Bold.ttf 100 > 38.0564 38.0564 5 P -4.2783 35.4165 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 6 o 5.0783 35.1202 34.3675 -Verdana_Bold.ttf 100 > 38.0564 38.0564 7 e 4.7512 33.9082 34.3675 -Verdana_Bold.ttf 100 > 38.0564 38.0564 8 : 6.2815 10.6752 31.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 9 r 6.2294 23.3151 31.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 10 l -6.3134 10.2160 44.4239 -Verdana_Bold.ttf 100 > 38.0564 38.0564 11 i -6.4772 10.2160 44.4239 -Verdana_Bold.ttf 100 > 38.0564 38.0564 12 1 -4.4438 28.7413 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 13 | -6.3397 8.4803 55.6923 -Verdana_Bold.ttf 100 > 38.0564 38.0564 14 N -4.0907 38.8363 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 15 f -6.4294 24.5271 44.4239 -Verdana_Bold.ttf 100 > 38.0564 38.0564 16 g 4.8830 33.5311 44.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 17 d -6.5308 33.5311 45.6359 -Verdana_Bold.ttf 100 > 38.0564 38.0564 18 W -3.9511 62.2208 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 19 s 4.8535 29.7391 34.3675 -Verdana_Bold.ttf 100 > 38.0564 38.0564 20 c 4.9329 29.6826 34.3675 -Verdana_Bold.ttf 100 > 38.0564 38.0564 21 u 6.0407 32.3226 33.1555 -Verdana_Bold.ttf 100 > 38.0564 38.0564 22 3 -5.3557 33.8052 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 23 ~ 9.1977 41.7840 19.3716 -Verdana_Bold.ttf 100 > 38.0564 38.0564 24 # -4.3491 41.8499 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 25 O -5.3702 43.9002 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 26 ` -9.5974 16.9477 11.2684 -Verdana_Bold.ttf 100 > 38.0564 38.0564 27 @ -5.0495 47.6808 50.1066 -Verdana_Bold.ttf 100 > 38.0564 38.0564 28 F -4.3702 30.2610 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 29 S -5.4108 36.6318 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 30 p 4.6991 33.5311 44.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 31 “ -6.4524 30.4239 16.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 32 % -5.0535 66.6496 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 33 £ -5.2885 33.7487 43.5231 -Verdana_Bold.ttf 100 > 38.0564 38.0564 34 . 27.1060 10.6752 11.2684 -Verdana_Bold.ttf 100 > 38.0564 38.0564 35 2 -5.3602 33.2780 43.5231 -Verdana_Bold.ttf 100 > 38.0564 38.0564 36 5 -4.2960 33.0639 43.5231 -Verdana_Bold.ttf 100 > 38.0564 38.0564 37 m 4.7870 52.4335 33.1555 -Verdana_Bold.ttf 100 > 38.0564 38.0564 38 V -4.2141 42.3111 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 39 6 -5.6008 34.8011 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 40 w 5.7030 54.7880 31.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 41 T -4.1241 37.2507 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 42 M -4.4332 44.7331 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 43 G -5.5567 40.2643 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 44 b -6.3055 33.5311 45.6359 -Verdana_Bold.ttf 100 > 38.0564 38.0564 45 9 -5.3690 34.8011 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 46 ; 5.7957 16.5721 42.6188 -Verdana_Bold.ttf 100 > 38.0564 38.0564 47 D -4.2307 40.2643 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 48 L -4.1910 30.5721 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 49 y 5.7585 35.6325 43.5196 -Verdana_Bold.ttf 100 > 38.0564 38.0564 50 ‘ -6.6938 15.2120 16.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 51 \ -6.4567 31.6359 53.7390 -Verdana_Bold.ttf 100 > 38.0564 38.0564 52 R -4.4863 41.1651 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 53 < -0.2357 38.0564 38.0564 -Verdana_Bold.ttf 100 > 38.0564 38.0564 54 4 -4.3331 37.2216 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 55 8 -5.3306 36.2291 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 56 0 -5.6339 35.0428 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 57 A -4.2312 43.5231 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 58 E -4.3892 30.7316 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 59 B -4.6635 36.1047 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 60 v 6.0056 35.6325 31.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 61 k -6.4518 34.5835 44.4239 -Verdana_Bold.ttf 100 > 38.0564 38.0564 62 J -4.3798 26.4804 43.5231 -Verdana_Bold.ttf 100 > 38.0564 38.0564 63 U -4.2484 38.0018 43.5231 -Verdana_Bold.ttf 100 > 38.0564 38.0564 64 j -6.4376 20.5270 56.0000 -Verdana_Bold.ttf 100 > 38.0564 38.0564 65 ( -6.5431 21.2683 56.0000 -Verdana_Bold.ttf 100 > 38.0564 38.0564 66 7 -4.3101 33.3716 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 67 § -5.4444 33.3731 54.7915 -Verdana_Bold.ttf 100 > 38.0564 38.0564 68 $ -7.1813 34.4240 55.1557 -Verdana_Bold.ttf 100 > 38.0564 38.0564 69 € -5.1442 38.7447 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 70 / -6.8420 31.6359 53.7390 -Verdana_Bold.ttf 100 > 38.0564 38.0564 71 C -5.4360 36.1047 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 72 * -6.6035 32.2547 29.2120 -Verdana_Bold.ttf 100 > 38.0564 38.0564 73 ” -6.1848 30.4239 16.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 74 ? -5.3823 28.4593 43.5231 -Verdana_Bold.ttf 100 > 38.0564 38.0564 75 { -6.4156 31.3248 55.6923 -Verdana_Bold.ttf 100 > 38.0564 38.0564 76 } -6.5187 31.3248 55.6923 -Verdana_Bold.ttf 100 > 38.0564 38.0564 77 , 26.3467 16.5721 21.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 78 I -4.0835 24.5157 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 79 ° -5.7496 24.0564 23.8404 -Verdana_Bold.ttf 100 > 38.0564 38.0564 80 K -4.2550 39.5761 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 81 H -3.8353 38.3656 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 82 q 4.8324 33.5311 44.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 83 & -5.6945 48.3675 44.7350 -Verdana_Bold.ttf 100 > 38.0564 38.0564 84 ’ -6.8208 15.2120 16.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 85 [ -6.5927 19.1555 55.6923 -Verdana_Bold.ttf 100 > 38.0564 38.0564 86 - 14.6711 21.9436 7.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 87 Y -4.4719 42.5237 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 88 Q -5.4514 43.9002 55.0992 -Verdana_Bold.ttf 100 > 38.0564 38.0564 89 " -6.3763 25.0523 16.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 90 ! -4.3222 11.4279 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 91 x 5.9039 36.6284 31.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 92 ) -6.5534 21.2683 56.0000 -Verdana_Bold.ttf 100 > 38.0564 38.0564 93 = 8.1271 36.4803 23.1556 -Verdana_Bold.ttf 100 > 38.0564 38.0564 94 + 0.4257 38.3675 38.3675 -Verdana_Bold.ttf 100 > 38.0564 38.0564 95 X -4.2936 42.3111 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 96 » 3.8749 35.2683 30.4239 -Verdana_Bold.ttf 100 > 38.0564 38.0564 97 ' -6.3800 9.8404 16.7316 -Verdana_Bold.ttf 100 > 38.0564 38.0564 98 ¢ -3.9935 30.9492 51.8404 -Verdana_Bold.ttf 100 > 38.0564 38.0564 99 Z -4.4926 35.7955 42.3111 -Verdana_Bold.ttf 100 > 38.0564 38.0564 100 > -0.0741 38.0564 38.0564 -Verdana_Bold.ttf 100 > 38.0564 38.0564 101 ® -5.1572 49.2683 49.2683 -Verdana_Bold.ttf 100 > 38.0564 38.0564 102 © -5.8492 49.2683 49.2683 -Verdana_Bold.ttf 100 > 38.0564 38.0564 103 ] -6.5775 19.1555 55.6923 -Verdana_Bold.ttf 100 > 38.0564 38.0564 104 é -9.4056 33.9082 48.9606 -Verdana_Bold.ttf 100 > 38.0564 38.0564 105 z 6.1555 29.7357 31.9436 -Verdana_Bold.ttf 100 > 38.0564 38.0564 106 _ 41.9760 41.6923 6.0564 -Verdana_Bold.ttf 100 > 38.0564 38.0564 107 ¥ -4.5476 38.9042 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 1 t 2.1209 24.2160 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 2 h -1.0804 32.3226 44.4239 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 3 a 10.7135 31.7954 34.3675 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 4 n 10.4914 32.3226 33.1555 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 5 P 1.2501 35.4165 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 6 o 10.4542 35.1202 34.3675 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 7 e 10.1669 33.9082 34.3675 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 8 : 11.6310 10.6752 31.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 9 r 11.9674 23.3151 31.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 10 l -1.1875 10.2160 44.4239 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 11 i -0.9693 10.2160 44.4239 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 12 1 1.0630 28.7413 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 13 | -1.1719 8.4803 55.6923 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 14 N 1.6270 38.8363 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 15 f -0.8393 24.5271 44.4239 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 16 g 10.2889 33.5311 44.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 17 d -1.2195 33.5311 45.6359 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 18 W 0.8328 62.2208 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 19 s 10.2717 29.7391 34.3675 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 20 c 10.3432 29.6826 34.3675 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 21 u 11.7620 32.3226 33.1555 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 22 3 0.0789 33.8052 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 23 ~ 14.1582 41.7840 19.3716 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 24 # 1.1393 41.8499 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 25 O 0.3345 43.9002 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 26 ` -4.3591 16.9477 11.2684 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 27 @ -0.2835 47.6808 50.1066 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 28 F 1.2916 30.2610 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 29 S 0.0187 36.6318 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 30 p 10.5193 33.5311 44.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 31 “ -1.2971 30.4239 16.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 32 % 0.3763 66.6496 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 33 £ 0.3192 33.7487 43.5231 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 34 . 32.0020 10.6752 11.2684 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 35 2 -0.1679 33.2780 43.5231 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 36 5 1.2378 33.0639 43.5231 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 37 m 10.4525 52.4335 33.1555 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 38 V 1.6011 42.3111 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 39 6 -0.0846 34.8011 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 40 w 11.4166 54.7880 31.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 41 T 1.5926 37.2507 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 42 M 1.1404 44.7331 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 43 G 0.1783 40.2643 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 44 b -0.5838 33.5311 45.6359 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 45 9 -0.0305 34.8011 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 46 ; 11.4844 16.5721 42.6188 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 47 D 1.6087 40.2643 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 48 L 1.4257 30.5721 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 49 y 11.2791 35.6325 43.5196 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 50 ‘ -0.7930 15.2120 16.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 51 \ -1.4564 31.6359 53.7390 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 52 R 0.9756 41.1651 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 53 < 5.8414 38.0564 38.0564 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 54 4 1.0502 37.2216 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 55 8 -0.1325 36.2291 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 56 0 -0.3162 35.0428 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 57 A 1.1949 43.5231 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 58 E 1.2054 30.7316 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 59 B 1.5682 36.1047 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 60 v 11.6215 35.6325 31.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 61 k -1.0106 34.5835 44.4239 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 62 J 1.1494 26.4804 43.5231 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 63 U 0.9204 38.0018 43.5231 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 64 j -0.8152 20.5270 56.0000 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 65 ( -0.9358 21.2683 56.0000 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 66 7 0.9465 33.3716 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 67 § -0.0246 33.3731 54.7915 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 68 $ -1.7232 34.4240 55.1557 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 69 € 0.0726 38.7447 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 70 / -0.7202 31.6359 53.7390 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 71 C -0.0637 36.1047 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 72 * -1.3109 32.2547 29.2120 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 73 ” -0.9296 30.4239 16.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 74 ? -0.0948 28.4593 43.5231 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 75 { -1.3207 31.3248 55.6923 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 76 } -0.7803 31.3248 55.6923 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 77 , 32.3019 16.5721 21.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 78 I 1.1326 24.5157 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 79 ° 0.1818 24.0564 23.8404 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 80 K 0.7843 39.5761 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 81 H 0.9717 38.3656 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 82 q 10.2918 33.5311 44.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 83 & -0.4952 48.3675 44.7350 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 84 ’ -0.8781 15.2120 16.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 85 [ -0.7100 19.1555 55.6923 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 86 - 20.3333 21.9436 7.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 87 Y 1.1681 42.5237 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 88 Q 0.1563 43.9002 55.0992 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 89 " -1.0109 25.0523 16.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 90 ! 1.4062 11.4279 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 91 x 11.2409 36.6284 31.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 92 ) -0.8922 21.2683 56.0000 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 93 = 12.8726 36.4803 23.1556 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 94 + 5.9089 38.3675 38.3675 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 95 X 1.2176 42.3111 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 96 » 9.6020 35.2683 30.4239 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 97 ' -0.9157 9.8404 16.7316 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 98 ¢ 1.7080 30.9492 51.8404 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 99 Z 1.0825 35.7955 42.3111 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 100 > 5.5060 38.0564 38.0564 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 101 ® 0.5622 49.2683 49.2683 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 102 © -0.1712 49.2683 49.2683 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 103 ] -0.8532 19.1555 55.6923 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 104 é -3.9678 33.9082 48.9606 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 105 z 11.1875 29.7357 31.9436 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 106 _ 47.5977 41.6923 6.0564 -Verdana_Bold.ttf 101 ® 49.2683 49.2683 107 ¥ 1.3590 38.9042 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 1 t 2.9062 24.2160 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 2 h -0.7801 32.3226 44.4239 -Verdana_Bold.ttf 102 © 49.2683 49.2683 3 a 10.5834 31.7954 34.3675 -Verdana_Bold.ttf 102 © 49.2683 49.2683 4 n 9.9529 32.3226 33.1555 -Verdana_Bold.ttf 102 © 49.2683 49.2683 5 P 0.9617 35.4165 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 6 o 10.8231 35.1202 34.3675 -Verdana_Bold.ttf 102 © 49.2683 49.2683 7 e 10.0788 33.9082 34.3675 -Verdana_Bold.ttf 102 © 49.2683 49.2683 8 : 11.3560 10.6752 31.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 9 r 11.6270 23.3151 31.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 10 l -1.1550 10.2160 44.4239 -Verdana_Bold.ttf 102 © 49.2683 49.2683 11 i -0.6861 10.2160 44.4239 -Verdana_Bold.ttf 102 © 49.2683 49.2683 12 1 1.2681 28.7413 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 13 | -0.9032 8.4803 55.6923 -Verdana_Bold.ttf 102 © 49.2683 49.2683 14 N 1.1506 38.8363 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 15 f -1.3287 24.5271 44.4239 -Verdana_Bold.ttf 102 © 49.2683 49.2683 16 g 10.3476 33.5311 44.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 17 d -0.8872 33.5311 45.6359 -Verdana_Bold.ttf 102 © 49.2683 49.2683 18 W 1.1740 62.2208 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 19 s 10.7793 29.7391 34.3675 -Verdana_Bold.ttf 102 © 49.2683 49.2683 20 c 10.1749 29.6826 34.3675 -Verdana_Bold.ttf 102 © 49.2683 49.2683 21 u 11.4244 32.3226 33.1555 -Verdana_Bold.ttf 102 © 49.2683 49.2683 22 3 -0.2817 33.8052 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 23 ~ 14.4287 41.7840 19.3716 -Verdana_Bold.ttf 102 © 49.2683 49.2683 24 # 1.2451 41.8499 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 25 O 0.0758 43.9002 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 26 ` -4.0294 16.9477 11.2684 -Verdana_Bold.ttf 102 © 49.2683 49.2683 27 @ -0.1630 47.6808 50.1066 -Verdana_Bold.ttf 102 © 49.2683 49.2683 28 F 1.2143 30.2610 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 29 S 0.4063 36.6318 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 30 p 10.0344 33.5311 44.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 31 “ -0.9049 30.4239 16.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 32 % -0.1658 66.6496 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 33 £ 0.2488 33.7487 43.5231 -Verdana_Bold.ttf 102 © 49.2683 49.2683 34 . 32.3254 10.6752 11.2684 -Verdana_Bold.ttf 102 © 49.2683 49.2683 35 2 0.0370 33.2780 43.5231 -Verdana_Bold.ttf 102 © 49.2683 49.2683 36 5 1.1447 33.0639 43.5231 -Verdana_Bold.ttf 102 © 49.2683 49.2683 37 m 10.6133 52.4335 33.1555 -Verdana_Bold.ttf 102 © 49.2683 49.2683 38 V 0.9717 42.3111 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 39 6 -0.0973 34.8011 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 40 w 11.1225 54.7880 31.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 41 T 1.4442 37.2507 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 42 M 0.9260 44.7331 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 43 G 0.1155 40.2643 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 44 b -1.2470 33.5311 45.6359 -Verdana_Bold.ttf 102 © 49.2683 49.2683 45 9 0.2118 34.8011 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 46 ; 11.9524 16.5721 42.6188 -Verdana_Bold.ttf 102 © 49.2683 49.2683 47 D 1.1066 40.2643 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 48 L 1.3187 30.5721 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 49 y 11.6377 35.6325 43.5196 -Verdana_Bold.ttf 102 © 49.2683 49.2683 50 ‘ -1.3326 15.2120 16.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 51 \ -1.2916 31.6359 53.7390 -Verdana_Bold.ttf 102 © 49.2683 49.2683 52 R 0.8181 41.1651 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 53 < 5.3399 38.0564 38.0564 -Verdana_Bold.ttf 102 © 49.2683 49.2683 54 4 1.3019 37.2216 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 55 8 -0.0485 36.2291 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 56 0 0.0845 35.0428 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 57 A 1.0573 43.5231 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 58 E 1.3648 30.7316 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 59 B 1.3095 36.1047 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 60 v 11.4838 35.6325 31.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 61 k -0.7271 34.5835 44.4239 -Verdana_Bold.ttf 102 © 49.2683 49.2683 62 J 1.1866 26.4804 43.5231 -Verdana_Bold.ttf 102 © 49.2683 49.2683 63 U 1.5967 38.0018 43.5231 -Verdana_Bold.ttf 102 © 49.2683 49.2683 64 j -0.8093 20.5270 56.0000 -Verdana_Bold.ttf 102 © 49.2683 49.2683 65 ( -0.9067 21.2683 56.0000 -Verdana_Bold.ttf 102 © 49.2683 49.2683 66 7 1.3673 33.3716 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 67 § 0.1033 33.3731 54.7915 -Verdana_Bold.ttf 102 © 49.2683 49.2683 68 $ -1.3470 34.4240 55.1557 -Verdana_Bold.ttf 102 © 49.2683 49.2683 69 € 0.0927 38.7447 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 70 / -0.6234 31.6359 53.7390 -Verdana_Bold.ttf 102 © 49.2683 49.2683 71 C -0.0000 36.1047 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 72 * -0.9372 32.2547 29.2120 -Verdana_Bold.ttf 102 © 49.2683 49.2683 73 ” -0.7442 30.4239 16.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 74 ? -0.0741 28.4593 43.5231 -Verdana_Bold.ttf 102 © 49.2683 49.2683 75 { -0.9146 31.3248 55.6923 -Verdana_Bold.ttf 102 © 49.2683 49.2683 76 } -1.2055 31.3248 55.6923 -Verdana_Bold.ttf 102 © 49.2683 49.2683 77 , 32.1654 16.5721 21.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 78 I 0.9597 24.5157 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 79 ° -0.1085 24.0564 23.8404 -Verdana_Bold.ttf 102 © 49.2683 49.2683 80 K 1.3354 39.5761 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 81 H 0.8607 38.3656 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 82 q 10.1024 33.5311 44.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 83 & 0.0806 48.3675 44.7350 -Verdana_Bold.ttf 102 © 49.2683 49.2683 84 ’ -0.9734 15.2120 16.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 85 [ -0.2895 19.1555 55.6923 -Verdana_Bold.ttf 102 © 49.2683 49.2683 86 - 20.2283 21.9436 7.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 87 Y 1.6723 42.5237 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 88 Q 0.1531 43.9002 55.0992 -Verdana_Bold.ttf 102 © 49.2683 49.2683 89 " -1.0185 25.0523 16.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 90 ! 1.1843 11.4279 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 91 x 11.4761 36.6284 31.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 92 ) -0.7072 21.2683 56.0000 -Verdana_Bold.ttf 102 © 49.2683 49.2683 93 = 13.0276 36.4803 23.1556 -Verdana_Bold.ttf 102 © 49.2683 49.2683 94 + 5.8637 38.3675 38.3675 -Verdana_Bold.ttf 102 © 49.2683 49.2683 95 X 1.0931 42.3111 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 96 » 9.4413 35.2683 30.4239 -Verdana_Bold.ttf 102 © 49.2683 49.2683 97 ' -0.9678 9.8404 16.7316 -Verdana_Bold.ttf 102 © 49.2683 49.2683 98 ¢ 1.8678 30.9492 51.8404 -Verdana_Bold.ttf 102 © 49.2683 49.2683 99 Z 1.1251 35.7955 42.3111 -Verdana_Bold.ttf 102 © 49.2683 49.2683 100 > 5.8750 38.0564 38.0564 -Verdana_Bold.ttf 102 © 49.2683 49.2683 101 ® -0.1945 49.2683 49.2683 -Verdana_Bold.ttf 102 © 49.2683 49.2683 102 © -0.0644 49.2683 49.2683 -Verdana_Bold.ttf 102 © 49.2683 49.2683 103 ] -1.2398 19.1555 55.6923 -Verdana_Bold.ttf 102 © 49.2683 49.2683 104 é -4.2666 33.9082 48.9606 -Verdana_Bold.ttf 102 © 49.2683 49.2683 105 z 11.9543 29.7357 31.9436 -Verdana_Bold.ttf 102 © 49.2683 49.2683 106 _ 47.3125 41.6923 6.0564 -Verdana_Bold.ttf 102 © 49.2683 49.2683 107 ¥ 1.1616 38.9042 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 1 t 3.5256 24.2160 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 2 h -0.3250 32.3226 44.4239 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 3 a 11.3915 31.7954 34.3675 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 4 n 11.3753 32.3226 33.1555 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 5 P 2.2851 35.4165 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 6 o 10.9065 35.1202 34.3675 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 7 e 11.0902 33.9082 34.3675 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 8 : 12.5570 10.6752 31.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 9 r 12.6414 23.3151 31.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 10 l 0.0806 10.2160 44.4239 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 11 i -0.1974 10.2160 44.4239 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 12 1 1.8276 28.7413 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 13 | -0.1829 8.4803 55.6923 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 14 N 2.0603 38.8363 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 15 f 0.1408 24.5271 44.4239 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 16 g 10.9633 33.5311 44.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 17 d 0.2248 33.5311 45.6359 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 18 W 2.0103 62.2208 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 19 s 10.9474 29.7391 34.3675 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 20 c 11.4257 29.6826 34.3675 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 21 u 12.2939 32.3226 33.1555 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 22 3 0.9879 33.8052 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 23 ~ 15.5572 41.7840 19.3716 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 24 # 2.2708 41.8499 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 25 O 1.0536 43.9002 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 26 ` -3.3982 16.9477 11.2684 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 27 @ 0.6623 47.6808 50.1066 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 28 F 2.1008 30.2610 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 29 S 0.7397 36.6318 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 30 p 11.2979 33.5311 44.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 31 “ 0.2105 30.4239 16.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 32 % 0.6683 66.6496 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 33 £ 0.5448 33.7487 43.5231 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 34 . 33.0214 10.6752 11.2684 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 35 2 0.8544 33.2780 43.5231 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 36 5 1.9807 33.0639 43.5231 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 37 m 10.8877 52.4335 33.1555 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 38 V 2.0146 42.3111 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 39 6 1.4352 34.8011 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 40 w 12.3861 54.7880 31.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 41 T 2.2402 37.2507 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 42 M 1.9321 44.7331 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 43 G 0.9267 40.2643 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 44 b -0.0918 33.5311 45.6359 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 45 9 0.8936 34.8011 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 46 ; 12.5268 16.5721 42.6188 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 47 D 2.4530 40.2643 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 48 L 1.8875 30.5721 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 49 y 12.7606 35.6325 43.5196 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 50 ‘ -0.0951 15.2120 16.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 51 \ -0.0018 31.6359 53.7390 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 52 R 2.4953 41.1651 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 53 < 6.5769 38.0564 38.0564 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 54 4 2.2700 37.2216 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 55 8 0.9062 36.2291 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 56 0 0.9609 35.0428 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 57 A 2.2880 43.5231 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 58 E 2.0470 30.7316 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 59 B 2.3286 36.1047 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 60 v 12.5573 35.6325 31.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 61 k -0.0572 34.5835 44.4239 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 62 J 2.3650 26.4804 43.5231 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 63 U 2.0211 38.0018 43.5231 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 64 j 0.1782 20.5270 56.0000 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 65 ( -0.0202 21.2683 56.0000 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 66 7 1.7846 33.3716 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 67 § 1.0575 33.3731 54.7915 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 68 $ -0.9106 34.4240 55.1557 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 69 € 0.7511 38.7447 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 70 / -0.2027 31.6359 53.7390 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 71 C 0.9749 36.1047 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 72 * 0.2090 32.2547 29.2120 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 73 ” 0.0602 30.4239 16.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 74 ? 0.7013 28.4593 43.5231 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 75 { 0.1860 31.3248 55.6923 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 76 } -0.1860 31.3248 55.6923 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 77 , 33.5318 16.5721 21.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 78 I 2.2219 24.5157 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 79 ° 0.7385 24.0564 23.8404 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 80 K 2.2528 39.5761 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 81 H 2.1941 38.3656 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 82 q 11.4544 33.5311 44.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 83 & 1.0720 48.3675 44.7350 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 84 ’ 0.0413 15.2120 16.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 85 [ 0.1046 19.1555 55.6923 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 86 - 21.2111 21.9436 7.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 87 Y 2.0250 42.5237 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 88 Q 0.7437 43.9002 55.0992 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 89 " -0.0754 25.0523 16.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 90 ! 1.8238 11.4279 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 91 x 12.4876 36.6284 31.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 92 ) 0.1436 21.2683 56.0000 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 93 = 14.2021 36.4803 23.1556 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 94 + 6.7786 38.3675 38.3675 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 95 X 2.1016 42.3111 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 96 » 10.2356 35.2683 30.4239 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 97 ' -0.1364 9.8404 16.7316 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 98 ¢ 2.4268 30.9492 51.8404 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 99 Z 1.9951 35.7955 42.3111 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 100 > 6.2239 38.0564 38.0564 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 101 ® 0.5769 49.2683 49.2683 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 102 © 0.5374 49.2683 49.2683 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 103 ] -0.0519 19.1555 55.6923 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 104 é -3.4180 33.9082 48.9606 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 105 z 12.4794 29.7357 31.9436 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 106 _ 48.2811 41.6923 6.0564 -Verdana_Bold.ttf 103 ] 19.1555 55.6923 107 ¥ 2.1081 38.9042 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 1 t 6.8388 24.2160 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 2 h 3.4413 32.3226 44.4239 -Verdana_Bold.ttf 104 é 33.9082 48.9606 3 a 14.6639 31.7954 34.3675 -Verdana_Bold.ttf 104 é 33.9082 48.9606 4 n 14.9918 32.3226 33.1555 -Verdana_Bold.ttf 104 é 33.9082 48.9606 5 P 5.3498 35.4165 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 6 o 15.0052 35.1202 34.3675 -Verdana_Bold.ttf 104 é 33.9082 48.9606 7 e 14.8729 33.9082 34.3675 -Verdana_Bold.ttf 104 é 33.9082 48.9606 8 : 15.6732 10.6752 31.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 9 r 15.8545 23.3151 31.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 10 l 3.2852 10.2160 44.4239 -Verdana_Bold.ttf 104 é 33.9082 48.9606 11 i 3.4791 10.2160 44.4239 -Verdana_Bold.ttf 104 é 33.9082 48.9606 12 1 5.4267 28.7413 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 13 | 3.3672 8.4803 55.6923 -Verdana_Bold.ttf 104 é 33.9082 48.9606 14 N 5.3378 38.8363 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 15 f 3.4579 24.5271 44.4239 -Verdana_Bold.ttf 104 é 33.9082 48.9606 16 g 14.4585 33.5311 44.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 17 d 3.2729 33.5311 45.6359 -Verdana_Bold.ttf 104 é 33.9082 48.9606 18 W 5.5552 62.2208 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 19 s 14.6098 29.7391 34.3675 -Verdana_Bold.ttf 104 é 33.9082 48.9606 20 c 14.4869 29.6826 34.3675 -Verdana_Bold.ttf 104 é 33.9082 48.9606 21 u 15.7627 32.3226 33.1555 -Verdana_Bold.ttf 104 é 33.9082 48.9606 22 3 4.1701 33.8052 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 23 ~ 18.6268 41.7840 19.3716 -Verdana_Bold.ttf 104 é 33.9082 48.9606 24 # 5.3190 41.8499 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 25 O 4.3290 43.9002 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 26 ` 0.3822 16.9477 11.2684 -Verdana_Bold.ttf 104 é 33.9082 48.9606 27 @ 4.1434 47.6808 50.1066 -Verdana_Bold.ttf 104 é 33.9082 48.9606 28 F 5.3339 30.2610 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 29 S 4.1641 36.6318 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 30 p 14.9789 33.5311 44.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 31 “ 3.0980 30.4239 16.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 32 % 4.4407 66.6496 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 33 £ 4.2155 33.7487 43.5231 -Verdana_Bold.ttf 104 é 33.9082 48.9606 34 . 36.5010 10.6752 11.2684 -Verdana_Bold.ttf 104 é 33.9082 48.9606 35 2 4.1448 33.2780 43.5231 -Verdana_Bold.ttf 104 é 33.9082 48.9606 36 5 4.9324 33.0639 43.5231 -Verdana_Bold.ttf 104 é 33.9082 48.9606 37 m 14.6008 52.4335 33.1555 -Verdana_Bold.ttf 104 é 33.9082 48.9606 38 V 5.3910 42.3111 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 39 6 4.1920 34.8011 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 40 w 15.8210 54.7880 31.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 41 T 5.3578 37.2507 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 42 M 5.2443 44.7331 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 43 G 4.2376 40.2643 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 44 b 3.6290 33.5311 45.6359 -Verdana_Bold.ttf 104 é 33.9082 48.9606 45 9 4.1608 34.8011 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 46 ; 15.4298 16.5721 42.6188 -Verdana_Bold.ttf 104 é 33.9082 48.9606 47 D 5.5352 40.2643 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 48 L 5.8050 30.5721 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 49 y 15.8113 35.6325 43.5196 -Verdana_Bold.ttf 104 é 33.9082 48.9606 50 ‘ 3.5776 15.2120 16.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 51 \ 3.0001 31.6359 53.7390 -Verdana_Bold.ttf 104 é 33.9082 48.9606 52 R 5.3110 41.1651 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 53 < 9.9534 38.0564 38.0564 -Verdana_Bold.ttf 104 é 33.9082 48.9606 54 4 5.4450 37.2216 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 55 8 4.0983 36.2291 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 56 0 4.4995 35.0428 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 57 A 5.3775 43.5231 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 58 E 5.5156 30.7316 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 59 B 5.6015 36.1047 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 60 v 15.5349 35.6325 31.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 61 k 3.1974 34.5835 44.4239 -Verdana_Bold.ttf 104 é 33.9082 48.9606 62 J 5.4110 26.4804 43.5231 -Verdana_Bold.ttf 104 é 33.9082 48.9606 63 U 5.3077 38.0018 43.5231 -Verdana_Bold.ttf 104 é 33.9082 48.9606 64 j 3.2089 20.5270 56.0000 -Verdana_Bold.ttf 104 é 33.9082 48.9606 65 ( 3.7370 21.2683 56.0000 -Verdana_Bold.ttf 104 é 33.9082 48.9606 66 7 5.2249 33.3716 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 67 § 4.2319 33.3731 54.7915 -Verdana_Bold.ttf 104 é 33.9082 48.9606 68 $ 2.4844 34.4240 55.1557 -Verdana_Bold.ttf 104 é 33.9082 48.9606 69 € 4.3470 38.7447 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 70 / 3.6850 31.6359 53.7390 -Verdana_Bold.ttf 104 é 33.9082 48.9606 71 C 4.0101 36.1047 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 72 * 3.1999 32.2547 29.2120 -Verdana_Bold.ttf 104 é 33.9082 48.9606 73 ” 2.9141 30.4239 16.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 74 ? 4.6040 28.4593 43.5231 -Verdana_Bold.ttf 104 é 33.9082 48.9606 75 { 3.1471 31.3248 55.6923 -Verdana_Bold.ttf 104 é 33.9082 48.9606 76 } 3.2064 31.3248 55.6923 -Verdana_Bold.ttf 104 é 33.9082 48.9606 77 , 36.7850 16.5721 21.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 78 I 5.5610 24.5157 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 79 ° 4.3663 24.0564 23.8404 -Verdana_Bold.ttf 104 é 33.9082 48.9606 80 K 5.4426 39.5761 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 81 H 5.3222 38.3656 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 82 q 14.3239 33.5311 44.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 83 & 4.0699 48.3675 44.7350 -Verdana_Bold.ttf 104 é 33.9082 48.9606 84 ’ 3.5652 15.2120 16.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 85 [ 3.4821 19.1555 55.6923 -Verdana_Bold.ttf 104 é 33.9082 48.9606 86 - 24.6523 21.9436 7.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 87 Y 5.4947 42.5237 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 88 Q 4.1918 43.9002 55.0992 -Verdana_Bold.ttf 104 é 33.9082 48.9606 89 " 3.3926 25.0523 16.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 90 ! 5.2475 11.4279 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 91 x 15.6303 36.6284 31.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 92 ) 3.3646 21.2683 56.0000 -Verdana_Bold.ttf 104 é 33.9082 48.9606 93 = 17.6180 36.4803 23.1556 -Verdana_Bold.ttf 104 é 33.9082 48.9606 94 + 9.6900 38.3675 38.3675 -Verdana_Bold.ttf 104 é 33.9082 48.9606 95 X 5.1292 42.3111 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 96 » 13.1209 35.2683 30.4239 -Verdana_Bold.ttf 104 é 33.9082 48.9606 97 ' 3.3883 9.8404 16.7316 -Verdana_Bold.ttf 104 é 33.9082 48.9606 98 ¢ 5.5651 30.9492 51.8404 -Verdana_Bold.ttf 104 é 33.9082 48.9606 99 Z 5.4626 35.7955 42.3111 -Verdana_Bold.ttf 104 é 33.9082 48.9606 100 > 9.7220 38.0564 38.0564 -Verdana_Bold.ttf 104 é 33.9082 48.9606 101 ® 4.5847 49.2683 49.2683 -Verdana_Bold.ttf 104 é 33.9082 48.9606 102 © 3.8959 49.2683 49.2683 -Verdana_Bold.ttf 104 é 33.9082 48.9606 103 ] 3.3359 19.1555 55.6923 -Verdana_Bold.ttf 104 é 33.9082 48.9606 104 é -0.0453 33.9082 48.9606 -Verdana_Bold.ttf 104 é 33.9082 48.9606 105 z 15.8623 29.7357 31.9436 -Verdana_Bold.ttf 104 é 33.9082 48.9606 106 _ 51.6404 41.6923 6.0564 -Verdana_Bold.ttf 104 é 33.9082 48.9606 107 ¥ 5.3352 38.9042 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 1 t -9.0567 24.2160 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 2 h -12.3925 32.3226 44.4239 -Verdana_Bold.ttf 105 z 29.7357 31.9436 3 a -1.2002 31.7954 34.3675 -Verdana_Bold.ttf 105 z 29.7357 31.9436 4 n -0.9206 32.3226 33.1555 -Verdana_Bold.ttf 105 z 29.7357 31.9436 5 P -10.2390 35.4165 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 6 o -1.1163 35.1202 34.3675 -Verdana_Bold.ttf 105 z 29.7357 31.9436 7 e -1.0418 33.9082 34.3675 -Verdana_Bold.ttf 105 z 29.7357 31.9436 8 : -0.1501 10.6752 31.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 9 r -0.0589 23.3151 31.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 10 l -12.4615 10.2160 44.4239 -Verdana_Bold.ttf 105 z 29.7357 31.9436 11 i -12.1824 10.2160 44.4239 -Verdana_Bold.ttf 105 z 29.7357 31.9436 12 1 -10.5237 28.7413 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 13 | -12.3846 8.4803 55.6923 -Verdana_Bold.ttf 105 z 29.7357 31.9436 14 N -10.1793 38.8363 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 15 f -12.4509 24.5271 44.4239 -Verdana_Bold.ttf 105 z 29.7357 31.9436 16 g -1.3252 33.5311 44.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 17 d -12.2889 33.5311 45.6359 -Verdana_Bold.ttf 105 z 29.7357 31.9436 18 W -10.1372 62.2208 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 19 s -0.9815 29.7391 34.3675 -Verdana_Bold.ttf 105 z 29.7357 31.9436 20 c -0.9934 29.6826 34.3675 -Verdana_Bold.ttf 105 z 29.7357 31.9436 21 u -0.2852 32.3226 33.1555 -Verdana_Bold.ttf 105 z 29.7357 31.9436 22 3 -11.4649 33.8052 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 23 ~ 2.8906 41.7840 19.3716 -Verdana_Bold.ttf 105 z 29.7357 31.9436 24 # -10.3277 41.8499 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 25 O -11.4316 43.9002 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 26 ` -16.1224 16.9477 11.2684 -Verdana_Bold.ttf 105 z 29.7357 31.9436 27 @ -11.5836 47.6808 50.1066 -Verdana_Bold.ttf 105 z 29.7357 31.9436 28 F -10.5050 30.2610 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 29 S -11.8120 36.6318 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 30 p -1.3426 33.5311 44.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 31 “ -12.3468 30.4239 16.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 32 % -11.5204 66.6496 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 33 £ -11.4852 33.7487 43.5231 -Verdana_Bold.ttf 105 z 29.7357 31.9436 34 . 20.5968 10.6752 11.2684 -Verdana_Bold.ttf 105 z 29.7357 31.9436 35 2 -11.6060 33.2780 43.5231 -Verdana_Bold.ttf 105 z 29.7357 31.9436 36 5 -10.7107 33.0639 43.5231 -Verdana_Bold.ttf 105 z 29.7357 31.9436 37 m -1.4707 52.4335 33.1555 -Verdana_Bold.ttf 105 z 29.7357 31.9436 38 V -10.1811 42.3111 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 39 6 -11.4985 34.8011 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 40 w 0.0363 54.7880 31.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 41 T -10.4445 37.2507 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 42 M -10.2956 44.7331 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 43 G -11.8260 40.2643 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 44 b -12.4394 33.5311 45.6359 -Verdana_Bold.ttf 105 z 29.7357 31.9436 45 9 -11.5378 34.8011 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 46 ; -0.0639 16.5721 42.6188 -Verdana_Bold.ttf 105 z 29.7357 31.9436 47 D -10.3332 40.2643 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 48 L -10.3747 30.5721 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 49 y 0.0094 35.6325 43.5196 -Verdana_Bold.ttf 105 z 29.7357 31.9436 50 ‘ -12.3084 15.2120 16.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 51 \ -12.4678 31.6359 53.7390 -Verdana_Bold.ttf 105 z 29.7357 31.9436 52 R -10.5317 41.1651 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 53 < -5.9361 38.0564 38.0564 -Verdana_Bold.ttf 105 z 29.7357 31.9436 54 4 -10.4342 37.2216 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 55 8 -11.3839 36.2291 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 56 0 -11.5209 35.0428 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 57 A -10.0776 43.5231 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 58 E -10.4814 30.7316 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 59 B -10.3877 36.1047 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 60 v -0.2199 35.6325 31.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 61 k -12.5628 34.5835 44.4239 -Verdana_Bold.ttf 105 z 29.7357 31.9436 62 J -10.2758 26.4804 43.5231 -Verdana_Bold.ttf 105 z 29.7357 31.9436 63 U -10.5067 38.0018 43.5231 -Verdana_Bold.ttf 105 z 29.7357 31.9436 64 j -12.2396 20.5270 56.0000 -Verdana_Bold.ttf 105 z 29.7357 31.9436 65 ( -12.3842 21.2683 56.0000 -Verdana_Bold.ttf 105 z 29.7357 31.9436 66 7 -10.1445 33.3716 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 67 § -11.6361 33.3731 54.7915 -Verdana_Bold.ttf 105 z 29.7357 31.9436 68 $ -13.1384 34.4240 55.1557 -Verdana_Bold.ttf 105 z 29.7357 31.9436 69 € -11.5062 38.7447 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 70 / -12.4564 31.6359 53.7390 -Verdana_Bold.ttf 105 z 29.7357 31.9436 71 C -11.4326 36.1047 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 72 * -12.8964 32.2547 29.2120 -Verdana_Bold.ttf 105 z 29.7357 31.9436 73 ” -12.6548 30.4239 16.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 74 ? -11.6165 28.4593 43.5231 -Verdana_Bold.ttf 105 z 29.7357 31.9436 75 { -12.2338 31.3248 55.6923 -Verdana_Bold.ttf 105 z 29.7357 31.9436 76 } -12.8335 31.3248 55.6923 -Verdana_Bold.ttf 105 z 29.7357 31.9436 77 , 20.8127 16.5721 21.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 78 I -10.3258 24.5157 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 79 ° -11.5861 24.0564 23.8404 -Verdana_Bold.ttf 105 z 29.7357 31.9436 80 K -10.4659 39.5761 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 81 H -10.1361 38.3656 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 82 q -1.4358 33.5311 44.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 83 & -11.7064 48.3675 44.7350 -Verdana_Bold.ttf 105 z 29.7357 31.9436 84 ’ -12.3480 15.2120 16.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 85 [ -12.6178 19.1555 55.6923 -Verdana_Bold.ttf 105 z 29.7357 31.9436 86 - 8.5746 21.9436 7.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 87 Y -10.2856 42.5237 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 88 Q -11.4428 43.9002 55.0992 -Verdana_Bold.ttf 105 z 29.7357 31.9436 89 " -12.4770 25.0523 16.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 90 ! -10.5051 11.4279 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 91 x 0.0112 36.6284 31.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 92 ) -12.6067 21.2683 56.0000 -Verdana_Bold.ttf 105 z 29.7357 31.9436 93 = 1.5420 36.4803 23.1556 -Verdana_Bold.ttf 105 z 29.7357 31.9436 94 + -5.8177 38.3675 38.3675 -Verdana_Bold.ttf 105 z 29.7357 31.9436 95 X -10.1733 42.3111 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 96 » -2.2273 35.2683 30.4239 -Verdana_Bold.ttf 105 z 29.7357 31.9436 97 ' -12.5044 9.8404 16.7316 -Verdana_Bold.ttf 105 z 29.7357 31.9436 98 ¢ -9.8286 30.9492 51.8404 -Verdana_Bold.ttf 105 z 29.7357 31.9436 99 Z -10.1235 35.7955 42.3111 -Verdana_Bold.ttf 105 z 29.7357 31.9436 100 > -6.0781 38.0564 38.0564 -Verdana_Bold.ttf 105 z 29.7357 31.9436 101 ® -11.2675 49.2683 49.2683 -Verdana_Bold.ttf 105 z 29.7357 31.9436 102 © -11.2966 49.2683 49.2683 -Verdana_Bold.ttf 105 z 29.7357 31.9436 103 ] -12.7527 19.1555 55.6923 -Verdana_Bold.ttf 105 z 29.7357 31.9436 104 é -15.8759 33.9082 48.9606 -Verdana_Bold.ttf 105 z 29.7357 31.9436 105 z 0.1471 29.7357 31.9436 -Verdana_Bold.ttf 105 z 29.7357 31.9436 106 _ 35.8900 41.6923 6.0564 -Verdana_Bold.ttf 105 z 29.7357 31.9436 107 ¥ -10.2129 38.9042 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 1 t -45.1633 24.2160 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 2 h -48.4270 32.3226 44.4239 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 3 a -37.0418 31.7954 34.3675 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 4 n -37.1185 32.3226 33.1555 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 5 P -45.7592 35.4165 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 6 o -37.1265 35.1202 34.3675 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 7 e -37.2822 33.9082 34.3675 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 8 : -36.2404 10.6752 31.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 9 r -35.8701 23.3151 31.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 10 l -48.5605 10.2160 44.4239 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 11 i -48.0929 10.2160 44.4239 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 12 1 -46.2315 28.7413 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 13 | -48.6654 8.4803 55.6923 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 14 N -45.9093 38.8363 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 15 f -48.2878 24.5271 44.4239 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 16 g -37.5714 33.5311 44.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 17 d -48.2897 33.5311 45.6359 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 18 W -46.5530 62.2208 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 19 s -37.1267 29.7391 34.3675 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 20 c -36.9131 29.6826 34.3675 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 21 u -36.0830 32.3226 33.1555 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 22 3 -47.6551 33.8052 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 23 ~ -32.8857 41.7840 19.3716 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 24 # -46.1917 41.8499 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 25 O -47.4620 43.9002 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 26 ` -51.5890 16.9477 11.2684 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 27 @ -47.5145 47.6808 50.1066 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 28 F -46.1014 30.2610 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 29 S -47.2452 36.6318 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 30 p -37.2013 33.5311 44.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 31 “ -48.4684 30.4239 16.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 32 % -47.5499 66.6496 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 33 £ -47.5152 33.7487 43.5231 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 34 . -15.2937 10.6752 11.2684 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 35 2 -47.2069 33.2780 43.5231 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 36 5 -46.1895 33.0639 43.5231 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 37 m -37.0102 52.4335 33.1555 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 38 V -46.1205 42.3111 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 39 6 -47.1236 34.8011 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 40 w -35.9962 54.7880 31.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 41 T -46.6043 37.2507 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 42 M -46.3210 44.7331 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 43 G -47.4902 40.2643 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 44 b -48.6948 33.5311 45.6359 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 45 9 -47.4220 34.8011 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 46 ; -35.6939 16.5721 42.6188 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 47 D -46.3582 40.2643 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 48 L -46.2242 30.5721 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 49 y -36.4412 35.6325 43.5196 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 50 ‘ -48.0811 15.2120 16.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 51 \ -48.5986 31.6359 53.7390 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 52 R -46.2160 41.1651 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 53 < -41.9890 38.0564 38.0564 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 54 4 -46.4929 37.2216 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 55 8 -47.0232 36.2291 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 56 0 -47.5946 35.0428 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 57 A -46.3086 43.5231 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 58 E -46.3100 30.7316 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 59 B -46.5784 36.1047 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 60 v -35.6201 35.6325 31.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 61 k -48.4306 34.5835 44.4239 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 62 J -45.9383 26.4804 43.5231 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 63 U -46.2938 38.0018 43.5231 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 64 j -48.3870 20.5270 56.0000 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 65 ( -48.3156 21.2683 56.0000 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 66 7 -45.9147 33.3716 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 67 § -47.6968 33.3731 54.7915 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 68 $ -49.1291 34.4240 55.1557 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 69 € -47.3612 38.7447 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 70 / -48.3612 31.6359 53.7390 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 71 C -47.7449 36.1047 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 72 * -48.3536 32.2547 29.2120 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 73 ” -48.3510 30.4239 16.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 74 ? -47.2316 28.4593 43.5231 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 75 { -48.0364 31.3248 55.6923 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 76 } -48.7383 31.3248 55.6923 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 77 , -15.3879 16.5721 21.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 78 I -46.1341 24.5157 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 79 ° -47.5422 24.0564 23.8404 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 80 K -46.1114 39.5761 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 81 H -46.2304 38.3656 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 82 q -36.8390 33.5311 44.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 83 & -47.3702 48.3675 44.7350 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 84 ’ -48.6250 15.2120 16.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 85 [ -48.4695 19.1555 55.6923 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 86 - -27.0958 21.9436 7.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 87 Y -46.0676 42.5237 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 88 Q -47.5961 43.9002 55.0992 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 89 " -48.2299 25.0523 16.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 90 ! -46.5713 11.4279 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 91 x -36.0786 36.6284 31.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 92 ) -48.6334 21.2683 56.0000 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 93 = -34.7222 36.4803 23.1556 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 94 + -42.0430 38.3675 38.3675 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 95 X -46.5086 42.3111 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 96 » -38.2520 35.2683 30.4239 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 97 ' -48.5060 9.8404 16.7316 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 98 ¢ -46.1419 30.9492 51.8404 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 99 Z -46.5454 35.7955 42.3111 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 100 > -41.9846 38.0564 38.0564 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 101 ® -47.6085 49.2683 49.2683 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 102 © -47.2770 49.2683 49.2683 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 103 ] -48.2328 19.1555 55.6923 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 104 é -51.3041 33.9082 48.9606 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 105 z -35.8208 29.7357 31.9436 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 106 _ 0.0431 41.6923 6.0564 -Verdana_Bold.ttf 106 _ 41.6923 6.0564 107 ¥ -46.4320 38.9042 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 1 t 1.4253 24.2160 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 2 h -1.8056 32.3226 44.4239 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 3 a 9.0528 31.7954 34.3675 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 4 n 9.3842 32.3226 33.1555 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 5 P -0.1302 35.4165 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 6 o 8.9274 35.1202 34.3675 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 7 e 8.9824 33.9082 34.3675 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 8 : 10.4175 10.6752 31.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 9 r 10.6077 23.3151 31.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 10 l -2.1787 10.2160 44.4239 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 11 i -1.8437 10.2160 44.4239 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 12 1 0.0746 28.7413 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 13 | -2.2067 8.4803 55.6923 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 14 N -0.2566 38.8363 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 15 f -2.2898 24.5271 44.4239 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 16 g 9.1747 33.5311 44.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 17 d -1.8883 33.5311 45.6359 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 18 W 0.0263 62.2208 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 19 s 9.3841 29.7391 34.3675 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 20 c 9.2820 29.6826 34.3675 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 21 u 10.1530 32.3226 33.1555 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 22 3 -1.2914 33.8052 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 23 ~ 13.1333 41.7840 19.3716 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 24 # 0.1472 41.8499 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 25 O -1.1453 43.9002 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 26 ` -5.5430 16.9477 11.2684 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 27 @ -1.2871 47.6808 50.1066 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 28 F 0.0885 30.2610 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 29 S -1.0550 36.6318 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 30 p 9.0105 33.5311 44.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 31 “ -2.1470 30.4239 16.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 32 % -0.9150 66.6496 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 33 £ -1.0243 33.7487 43.5231 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 34 . 31.1781 10.6752 11.2684 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 35 2 -1.5856 33.2780 43.5231 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 36 5 -0.2939 33.0639 43.5231 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 37 m 9.3459 52.4335 33.1555 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 38 V -0.1183 42.3111 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 39 6 -0.9113 34.8011 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 40 w 10.5501 54.7880 31.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 41 T 0.1200 37.2507 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 42 M -0.0610 44.7331 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 43 G -1.1835 40.2643 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 44 b -1.9148 33.5311 45.6359 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 45 9 -1.3124 34.8011 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 46 ; 10.2862 16.5721 42.6188 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 47 D -0.0821 40.2643 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 48 L 0.2144 30.5721 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 49 y 10.2733 35.6325 43.5196 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 50 ‘ -2.0667 15.2120 16.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 51 \ -2.0482 31.6359 53.7390 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 52 R 0.0893 41.1651 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 53 < 4.4013 38.0564 38.0564 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 54 4 0.1285 37.2216 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 55 8 -1.0726 36.2291 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 56 0 -1.4286 35.0428 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 57 A -0.0015 43.5231 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 58 E 0.0658 30.7316 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 59 B -0.0080 36.1047 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 60 v 10.4396 35.6325 31.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 61 k -1.8675 34.5835 44.4239 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 62 J -0.2159 26.4804 43.5231 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 63 U -0.4419 38.0018 43.5231 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 64 j -2.3050 20.5270 56.0000 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 65 ( -2.0365 21.2683 56.0000 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 66 7 -0.0802 33.3716 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 67 § -1.5395 33.3731 54.7915 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 68 $ -2.8708 34.4240 55.1557 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 69 € -1.1602 38.7447 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 70 / -2.1613 31.6359 53.7390 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 71 C -1.1677 36.1047 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 72 * -2.2116 32.2547 29.2120 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 73 ” -2.1610 30.4239 16.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 74 ? -1.0340 28.4593 43.5231 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 75 { -2.4704 31.3248 55.6923 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 76 } -2.0548 31.3248 55.6923 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 77 , 31.1257 16.5721 21.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 78 I -0.3134 24.5157 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 79 ° -0.9590 24.0564 23.8404 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 80 K 0.0540 39.5761 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 81 H -0.2529 38.3656 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 82 q 9.1358 33.5311 44.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 83 & -1.1648 48.3675 44.7350 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 84 ’ -2.0417 15.2120 16.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 85 [ -2.2126 19.1555 55.6923 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 86 - 19.0224 21.9436 7.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 87 Y 0.1400 42.5237 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 88 Q -1.4194 43.9002 55.0992 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 89 " -2.0595 25.0523 16.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 90 ! -0.2440 11.4279 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 91 x 10.0520 36.6284 31.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 92 ) -2.1552 21.2683 56.0000 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 93 = 11.8151 36.4803 23.1556 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 94 + 4.2430 38.3675 38.3675 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 95 X -0.1230 42.3111 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 96 » 7.9841 35.2683 30.4239 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 97 ' -1.9867 9.8404 16.7316 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 98 ¢ 0.2578 30.9492 51.8404 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 99 Z 0.0543 35.7955 42.3111 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 100 > 3.9477 38.0564 38.0564 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 101 ® -1.1358 49.2683 49.2683 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 102 © -0.9232 49.2683 49.2683 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 103 ] -2.3832 19.1555 55.6923 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 104 é -5.5366 33.9082 48.9606 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 105 z 10.4908 29.7357 31.9436 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 106 _ 46.4263 41.6923 6.0564 -Verdana_Bold.ttf 107 ¥ 38.9042 42.3111 107 ¥ 0.2263 38.9042 42.3111 diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.cube.word-freq b/thirdparty/Tesseract-OCR/tessdata/eng.cube.word-freq deleted file mode 100755 index b5347b286a..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.cube.word-freq +++ /dev/null @@ -1,171802 +0,0 @@ -A 25752 -A's 53271 -AA 44130 -AAA 48292 -AAACN 53729 -AAAI 64657 -AAAS 51000 -AAB 62469 -AAC 52940 -AACC 62066 -AACE 61940 -AACR 60856 -AACS 63792 -AACSB 65170 -AAD 61818 -AADC 64657 -AAE 60762 -AAF 61362 -AAFC 63077 -AAG 59424 -AAI 57399 -AAJ 61940 -AAL 63792 -AALS 64657 -AAM 56935 -AAMCO 62469 -AAMI 61699 -AAMT 65452 -AAN 61818 -AAP 54078 -AAPG 64423 -AAPL 58860 -AAPM 61940 -AAPT 60580 -AAR 56356 -AARON 58313 -AARP 53695 -AAS 55684 -AASA 61051 -AASB 61152 -AASHTO 61152 -AAT 60000 -AATCC 64905 -AAU 56324 -AAUP 59164 -AAV 61699 -AAdvantage 63245 -AB 44154 -ABA 49359 -ABADI 63792 -ABAP 58365 -ABATE 65170 -ABB 55373 -ABBA 55992 -ABBEY 61362 -ABBOTT 63991 -ABBREVIATIONS 61584 -ABBY 63991 -ABBYY 60157 -ABC 43273 -ABC's 54023 -ABCD 58802 -ABCDE 65452 -ABCDEFGHIJKLM 62762 -ABCDEFGHIJKLMNOPQRSTUVWXYZ 56200 -ABCINDYA 61472 -ABCNews 62917 -ABCs 57785 -ABD 59292 -ABDC 63601 -ABDUL 63991 -ABE 59491 -ABEL 64201 -ABERDEEN 62917 -ABET 63601 -ABF 61699 -ABH 64905 -ABI 56231 -ABILITIES 61362 -ABILITY 59848 -ABIT 61256 -ABIX 63077 -ABK 64905 -ABL 62613 -ABLE 55711 -ABM 60238 -ABMs 62613 -ABN 51113 -ABNF 53662 -ABNORMAL 65170 -ABO 56652 -ABORIGINAL 62917 -ABORT 64905 -ABOUT 40373 -ABOVE 54380 -ABP 59630 -ABPP 65170 -ABQ 61699 -ABR 56721 -ABRAHAM 60762 -ABRC 58860 -ABROAD 63601 -ABRSM 65452 -ABS 50299 -ABSA 64423 -ABSENCE 59630 -ABSENT 58919 -ABSOLUTE 57566 -ABSOLUTELY 57970 -ABSORPTION 63601 -ABSTRACT 45519 -ABSTRACTS 60405 -ABT 51358 -ABTA 60762 -ABU 60856 -ABUSE 56721 -ABV 63601 -ABX 64905 -ABest 65452 -ABs 62762 -AC 42189 -ACA 54706 -ACACIA 62613 -ACAD 63601 -ACADEMIC 55448 -ACADEMICS 61152 -ACADEMY 54114 -ACAP 60492 -ACAT 62613 -ACB 61472 -ACBL 64905 -ACC 49365 -ACCA 59491 -ACCC 56687 -ACCELERATION 64657 -ACCELERATOR 65170 -ACCENT 60238 -ACCEPT 55202 -ACCEPTABLE 62331 -ACCEPTANCE 60952 -ACCEPTED 55906 -ACCEPTING 61472 -ACCES 61152 -ACCESS 49505 -ACCESSIBILITY 59848 -ACCESSIBLE 62613 -ACCESSING 65170 -ACCESSION 63245 -ACCESSORIES 49620 -ACCESSORY 60580 -ACCIDENT 59039 -ACCIDENTS 63077 -ACCION 62196 -ACCO 63792 -ACCOMMODATION 55849 -ACCOMMODATIONS 63245 -ACCOMPLISHMENTS 63245 -ACCORD 58470 -ACCORDANCE 59424 -ACCORDING 59491 -ACCORDION 62331 -ACCOUNT 48557 -ACCOUNTABILITY 60856 -ACCOUNTANT 64657 -ACCOUNTING 56170 -ACCOUNTS 55274 -ACCP 65452 -ACCREDITATION 62469 -ACCS 65452 -ACCT 64657 -ACCURACY 60580 -ACCURATE 62762 -ACD 57358 -ACDC 61818 -ACDSee 54133 -ACE 49190 -ACEA 65452 -ACEC 58523 -ACEN 61699 -ACEO 65452 -ACER 56652 -ACERT 62469 -ACES 58979 -ACETATE 65170 -ACF 57482 -ACFT 64905 -ACG 58470 -ACGIH 62196 -ACH 59227 -ACHIEVE 62196 -ACHIEVED 64905 -ACHIEVEMENT 62917 -ACHIEVEMENTS 63077 -ACHIEVING 64905 -ACI 53865 -ACID 53779 -ACIDS 59923 -ACIS 65452 -ACJacob 65170 -ACK 57399 -ACKNOWLEDGE 62331 -ACKNOWLEDGEMENT 61256 -ACKNOWLEDGEMENTS 56862 -ACKNOWLEDGMENT 59848 -ACKNOWLEDGMENTS 55552 -ACL 50750 -ACLActivityLog 62613 -ACLD 63077 -ACLEntry 54479 -ACLS 62469 -ACLU 55348 -ACLs 63419 -ACM 42176 -ACM's 59923 -ACMA 60000 -ACME 58802 -ACN 57970 -ACNE 63792 -ACNFP 62613 -ACO 60670 -ACOA 60238 -ACOG 61152 -ACORN 53271 -ACORN's 62762 -ACOUS 60952 -ACOUSTIC 59227 -ACOUSTICS 59227 -ACP 54902 -ACPI 61152 -ACPO 63792 -ACQUIRED 63991 -ACQUISITION 59630 -ACQUISITIONS 64423 -ACR 56110 -ACRE 63419 -ACRES 57160 -ACRONYMS 63419 -ACROSS 56452 -ACRYLIC 61818 -ACS 46572 -ACSC 59491 -ACSF 64905 -ACT 45994 -ACTA 57440 -ACTF 63601 -ACTH 57696 -ACTIN 57785 -ACTING 60238 -ACTION 48363 -ACTIONS 57876 -ACTIVATE 62613 -ACTIVATED 64423 -ACTIVATION 62613 -ACTIVE 53454 -ACTIVITIES 48131 -ACTIVITY 53138 -ACTOR 64201 -ACTORS 61818 -ACTRESS 63245 -ACTS 60762 -ACTU 61051 -ACTUAL 56827 -ACTUALLY 59491 -ACTUATOR 63991 -ACU 57831 -ACUI 64657 -ACURA 60670 -ACUTE 57831 -ACW 63991 -ACX 63991 -ACerS 62917 -ACh 58262 -AChE 56862 -AChR 57440 -ACs 64201 -AD 44095 -ADA 51660 -ADAM 55037 -ADAMS 55084 -ADAMSON 65170 -ADAPT 63991 -ADAPTATION 62613 -ADAPTER 57524 -ADAPTERS 63991 -ADAPTIVE 61362 -ADAPTOR 62196 -ADB 54946 -ADB's 63245 -ADC 51974 -ADCC 65452 -ADCO 64201 -ADCOCK 63991 -ADCP 63419 -ADCs 63419 -ADD 45730 -ADDED 52765 -ADDENDUM 62917 -ADDICT 63792 -ADDICTION 63991 -ADDING 60157 -ADDISON 62469 -ADDITION 59491 -ADDITIONAL 51741 -ADDITIONS 61152 -ADDRESS 49022 -ADDRESSES 60238 -ADDRESSING 64423 -ADDS 65170 -ADDY 63419 -ADE 60405 -ADEA 63419 -ADEJE 57785 -ADELAIDE 59357 -ADELE 61699 -ADEM 64905 -ADEQ 62917 -ADEQUATE 64905 -ADES 64201 -ADEs 65170 -ADF 56721 -ADFT 64201 -ADG 61362 -ADH 59039 -ADHD 43965 -ADHESIVE 62196 -ADI 57160 -ADIA 65170 -ADIDAS 58632 -ADIL 65452 -ADIRONDACK 64201 -ADInstruments 65452 -ADJ 62762 -ADJACENT 61818 -ADJOURN 63601 -ADJOURNED 64201 -ADJOURNMENT 57970 -ADJUST 64201 -ADJUSTABLE 59560 -ADJUSTED 59357 -ADJUSTER 63245 -ADJUSTING 64657 -ADJUSTMENT 58745 -ADJUSTMENTS 61940 -ADK 62469 -ADKINS 62196 -ADL 58417 -ADM 56324 -ADMD 63991 -ADMIN 53331 -ADMINISTRATION 52996 -ADMINISTRATIVE 55323 -ADMINISTRATOR 60321 -ADMINISTRATOR'S 64657 -ADMIRAL 65452 -ADMISSION 58745 -ADMISSIONS 59101 -ADMITS 62066 -ADN 64905 -ADO 59357 -ADOBE 56452 -ADOLESCENT 64423 -ADOPT 61940 -ADOPTED 52210 -ADOPTING 63077 -ADOPTION 58470 -ADORABLE 63077 -ADOT 63991 -ADP 54622 -ADPCM 60000 -ADPKD 65170 -ADR 51630 -ADRAC 64657 -ADREM 62917 -ADRIAN 60405 -ADRIANA 65452 -ADRIENNE 63991 -ADRIFT 64423 -ADRs 63792 -ADS 50046 -ADSI 58632 -ADSL 51148 -ADSM 65452 -ADT 54601 -ADTRAN 62331 -ADULT 51867 -ADULTHOOD 62613 -ADULTS 59702 -ADV 58365 -ADVANCE 55398 -ADVANCED 46351 -ADVANCEMENT 62917 -ADVANCES 62762 -ADVANTAGE 58065 -ADVANTAGES 63077 -ADVENTURE 56791 -ADVENTURES 59491 -ADVERSE 62469 -ADVERTISE 49240 -ADVERTISEMENT 44948 -ADVERTISEMENTS 58470 -ADVERTISER 62066 -ADVERTISERS 58470 -ADVERTISING 51358 -ADVICE 53346 -ADVISED 57084 -ADVISOR 62331 -ADVISORS 62917 -ADVISORY 55963 -ADVOCACY 62196 -ADVOCATE 63077 -ADVrider 63077 -ADW 63991 -ADempiere 65170 -ADs 59774 -AE 48638 -AEA 58212 -AEB 61699 -AEC 56827 -AECOM 64201 -AED 53470 -AEDES 64657 -AEDST 62066 -AEDT 58802 -AEDs 63077 -AEE 62762 -AEG 54835 -AEGIS 65170 -AEGON 65452 -AEM 56324 -AEO 60580 -AEP 58860 -AER 58162 -AERC 63419 -AERIAL 54283 -AERO 60492 -AEROSOL 63077 -AEROSPACE 61699 -AERP 63077 -AES 53226 -AESA 65170 -AEST 50314 -AET 65170 -AETV 64905 -AEV 64657 -AEX 65170 -AEs 64201 -AF 46508 -AFA 59039 -AFAIK 61472 -AFB 53533 -AFBI 64423 -AFC 50469 -AFD 64657 -AFDC 63601 -AFE 59491 -AFF 63077 -AFFAIR 62196 -AFFAIRES 63991 -AFFAIRS 49097 -AFFECT 62331 -AFFECTED 61584 -AFFECTING 61472 -AFFIDAVIT 65170 -AFFILIATE 56585 -AFFILIATED 63792 -AFFILIATES 55711 -AFFILIATION 64423 -AFFINITY 64657 -AFFIRMED 62613 -AFFORDABLE 58860 -AFG 61940 -AFGHANISTAN 60157 -AFI 54041 -AFI's 63419 -AFIO 63792 -AFK 64657 -AFL 50646 -AFLAC 65170 -AFLOAT 63991 -AFLP 64657 -AFM 53662 -AFN 64657 -AFP 52244 -AFR 56485 -AFRC 65452 -AFRICA 53010 -AFRICAN 54992 -AFS 56721 -AFSC 63077 -AFSCME 63077 -AFT 58065 -AFTEIS 62066 -AFTER 49070 -AFTERNOON 59923 -AFTERWORLD 64423 -AFTRA 62613 -AFV 63245 -AFX 59923 -AG 45251 -AG's 64423 -AGA 56452 -AGAIN 53899 -AGAINST 52954 -AGARWAL 62196 -AGATA 62917 -AGAZINE 65170 -AGB 58523 -AGC 56551 -AGCO 63792 -AGD 62469 -AGE 49739 -AGED 62917 -AGEING 63245 -AGENCE 63792 -AGENCIES 56585 -AGENCY 49223 -AGENDA 49429 -AGENDAS 64657 -AGENT 54519 -AGENTS 55578 -AGES 59039 -AGEs 63077 -AGF 63245 -AGFC 65170 -AGG 59848 -AGGREGATE 58688 -AGH 63991 -AGI 57238 -AGING 61256 -AGIs 54749 -AGL 58017 -AGM 54170 -AGN 56200 -AGNES 62469 -AGO 59630 -AGP 54924 -AGR 64423 -AGRE 60321 -AGREE 57122 -AGREED 61362 -AGREEMENT 50966 -AGREEMENTCONTRIBUTION 64423 -AGREEMENTS 60000 -AGREES 62613 -AGRICULTURAL 56324 -AGRICULTURE 51349 -AGS 60321 -AGT 59164 -AGTEK 60321 -AGTH 63419 -AGU 58979 -AGW 63792 -AH 49308 -AHA 53517 -AHC 63991 -AHCI 63991 -AHEAD 61362 -AHF 60580 -AHI 58860 -AHIMA 63601 -AHL 57482 -AHM 58162 -AHMAD 63077 -AHMED 62917 -AHMEDABAD 65170 -AHORA 65452 -AHP 58470 -AHR 64905 -AHRC 64657 -AHRQ 63792 -AHS 57009 -AHSCT 64657 -AHV 62331 -AI 47891 -AIA 56110 -AIAA 59630 -AIAN 59357 -AIAS 64905 -AIB 58417 -AIC 59227 -AICPA 64201 -AICTE 64905 -AIChE 62762 -AID 52423 -AIDA 62066 -AIDE 63419 -AIDS 42091 -AIE 63419 -AIEEE 64423 -AIF 58417 -AIG 52435 -AIG's 63245 -AIGA 62613 -AIHW 63419 -AII 65452 -AIK 65170 -AIL 62331 -AIM 43509 -AIME 60492 -AIMS 58065 -AIN 60000 -AIN'T 59774 -AINT 60000 -AIO 58577 -AIP 59357 -AIPA 63601 -AIPAC 63991 -AIR 47286 -AIRBUS 64423 -AIRC 64423 -AIRCRAFT 57696 -AIRE 65452 -AIRES 64657 -AIRF 61818 -AIRLINE 62917 -AIRLINES 62066 -AIRPORT 54096 -AIRPORTS 64905 -AIRS 62762 -AIRSOFT 57923 -AIRWORTHINESS 64423 -AIS 55906 -AISLE 61584 -AIST 63601 -AIT 54439 -AITO 65170 -AIU 56110 -AIWA 59039 -AIX 55348 -AJ 46739 -AJ's 60670 -AJA 64201 -AJAX 48169 -AJB 64201 -AJC 55657 -AJGA 60762 -AJJ 64423 -AJK 65452 -AJM 63245 -AJNR 63077 -AJP 55793 -AJPH 65170 -AJR 57876 -AJS 62066 -AJWG 65170 -AK 46086 -AKA 51425 -AKAI 63077 -AKAMacC 64423 -AKAs 63601 -AKC 54399 -AKDT 63991 -AKE 64423 -AKG 55202 -AKIN 63601 -AKM 63991 -AKON 63792 -AKOTA 63991 -AKR 64201 -AKS 64657 -AKT 60762 -AL 42319 -ALA 53301 -ALABAMA 56021 -ALADDIN 63792 -ALAIN 65170 -ALAMA 63077 -ALAMANCE 64657 -ALAN 51814 -ALARM 56756 -ALARMS 62613 -ALAS 63991 -ALASKA 55657 -ALASKAN 64905 -ALAXX 63991 -ALB 61256 -ALBA 59630 -ALBANIA 60157 -ALBANIAN 65170 -ALBANY 58365 -ALBERT 56551 -ALBERTA 59292 -ALBERTO 62196 -ALBION 64905 -ALBRECHT 65452 -ALBUM 53597 -ALBUMS 57524 -ALBUQUERQUE 65170 -ALC 60078 -ALCL 62469 -ALCO 65452 -ALCOHOL 58577 -ALCOHOLIC 63792 -ALCS 53813 -ALD 62613 -ALDEN 63077 -ALDH 62066 -ALDI 63077 -ALDS 60670 -ALDURAZYME 60238 -ALE 60238 -ALEJANDRO 61472 -ALEKS 61152 -ALEPH 63245 -ALERT 53124 -ALERTS 49325 -ALEX 55014 -ALEXA 65452 -ALEXANDER 56080 -ALEXANDRA 63419 -ALEXANDRIA 65170 -ALEXIS 62613 -ALF 60856 -ALFA 59424 -ALFRED 59101 -ALFREDO 62613 -ALFY 65452 -ALFguy 64657 -ALGAE 65452 -ALGERIA 60157 -ALGOL 64657 -ALGORITHM 61051 -ALGORITHMS 59630 -ALH 65452 -ALHAMBRA 64905 -ALI 56791 -ALIAS 58632 -ALICE 58313 -ALICIA 61362 -ALIEN 58632 -ALIENS 62331 -ALIGNMENT 62762 -ALIS 60670 -ALISON 60952 -ALIVE 60405 -ALJ 60238 -ALK 64201 -ALKALINE 65170 -ALL 39077 -ALLAH 62331 -ALLAN 59424 -ALLDATA 65452 -ALLDATASHEET 62331 -ALLEGIANCE 62066 -ALLEMAGNE 56388 -ALLEN 55226 -ALLEY 63991 -ALLIANCE 57566 -ALLIANSIE 65170 -ALLIED 59039 -ALLIGATOR 65452 -ALLISON 62196 -ALLOCATION 60580 -ALLOW 57160 -ALLOWANCE 65170 -ALLOWED 60492 -ALLOY 58632 -ALLOYS 62469 -ALLTEL 59039 -ALLUSIONS 64201 -ALLY 65452 -ALM 59702 -ALMA 60000 -ALMIGHTY 65170 -ALMOND 62196 -ALMOST 58365 -ALMS 57199 -ALND 65452 -ALO 60000 -ALOHA 65452 -ALONE 58860 -ALONG 58470 -ALOO 64905 -ALOT 58523 -ALP 59227 -ALPHA 57399 -ALPHABETICAL 65452 -ALPHARETTA 65452 -ALPINE 60492 -ALPINESTAR 64905 -ALPS 63245 -ALR 60856 -ALREADY 56935 -ALRI 65170 -ALS 54096 -ALSA 65170 -ALSO 48067 -ALT 54946 -ALTA 61940 -ALTER 61152 -ALTERATION 63077 -ALTERATIONS 63991 -ALTERNATE 60321 -ALTERNATIVE 56420 -ALTERNATIVES 63991 -ALTHOUGH 65170 -ALTITUDE 63077 -ALTO 62762 -ALTON 64657 -ALU 58745 -ALUKA 46247 -ALUMINIUM 63077 -ALUMINUM 56485 -ALUMNI 59424 -ALVIN 60856 -ALWAYS 52040 -ALX 63792 -ALZADO 62196 -AM 30922 -AMA 52244 -AMAA 53746 -AMAN 65170 -AMANA 61818 -AMANDA 59227 -AMAR 63077 -AMARC 65452 -AMAS 61362 -AMATEUR 59848 -AMATEURS 64905 -AMAZING 55130 -AMAZON 57876 -AMAZONIA 64201 -AMB 59774 -AMBASSADOR 63601 -AMBER 58113 -AMBOYNA 65452 -AMBROSE 64201 -AMBULANCE 63991 -AMC 50424 -AMC's 62066 -AMComment 65452 -AMD 45972 -AMD's 59164 -AME 53712 -AMEC 62613 -AMELIA 61472 -AMEN 64657 -AMENDED 58860 -AMENDING 58632 -AMENDMENT 55684 -AMENDMENTS 59424 -AMENITIES 59848 -AMER 59630 -AMERICA 50164 -AMERICA'S 61362 -AMERICAN 48030 -AMERICANA 65452 -AMERICANS 60670 -AMERICAS 59292 -AMERICAblog 62917 -AMERITRADE 61152 -AMERY 56485 -AMES 59357 -AMEX 54059 -AMF 58113 -AMFlagged 62762 -AMG 52805 -AMH 63792 -AMHERST 62196 -AMHR 56721 -AMI 55474 -AMIGA 65170 -AMIGO 64201 -AMIGOS 64201 -AMINO 62196 -AMIS 63077 -AMISTAD 63245 -AMIT 64905 -AML 57970 -AMLouise 65452 -AMM 55793 -AMMUNITION 64657 -AMN 65452 -AMO 58688 -AMONG 57785 -AMOR 57831 -AMORPHOUS 64905 -AMOS 63419 -AMOUNT 52899 -AMOUNTS 62762 -AMP 51793 -AMPA 58523 -AMPK 60000 -AMPLIFIED 63991 -AMPLIFIER 60492 -AMPLIFIERS 63077 -AMPLITUDE 65170 -AMPS 63245 -AMPTIAC 63991 -AMPTP 63991 -AMR 53361 -AMRF 64905 -AMRO 59101 -AMS 52280 -AMSA 63077 -AMSA's 64423 -AMSOIL 56080 -AMSTERDAM 61362 -AMT 56262 -AMUSEMENT 64657 -AMV 53830 -AMVETS 61051 -AMX 59292 -AMY 56324 -AMZ 64201 -AN 43742 -ANA 56618 -ANAHEIM 65452 -ANAL 59848 -ANALOG 59702 -ANALYSES 62762 -ANALYSIS 48341 -ANALYST 60762 -ANALYTICAL 59630 -ANALYZER 64905 -ANALYZING 63419 -ANAND 65452 -ANATOMY 61472 -ANAVINI 63792 -ANBU 63245 -ANC 55423 -ANCA 58470 -ANCESTRY 65170 -ANCHO 64905 -ANCHOR 60157 -ANCHORAGE 64905 -ANCIAL 65452 -ANCIENT 60238 -AND 32816 -ANDA 62762 -ANDERSON 54857 -ANDHRA 60856 -ANDORRA 60405 -ANDRE 60856 -ANDREA 59164 -ANDREAS 64657 -ANDRES 63419 -ANDREW 52699 -ANDREWS 59424 -ANDY 56262 -ANESTH 65170 -ANF 58162 -ANG 53813 -ANGEL 54622 -ANGELA 58313 -ANGELES 53124 -ANGELINA 54188 -ANGELO 63991 -ANGELS 57923 -ANGIE 65452 -ANGLE 58860 -ANGLES 64657 -ANGOLA 60952 -ANGRY 62762 -ANGUAGE 65452 -ANGUILLA 61940 -ANGUS 59923 -ANI 58065 -ANIL 64657 -ANIMA 64657 -ANIMAL 54041 -ANIMALS 57046 -ANIMATED 60856 -ANIMATION 62762 -ANIME 61362 -ANION 64201 -ANISTON 65170 -ANITA 61699 -ANKARA 63601 -ANKLE 65170 -ANN 52085 -ANNA 55250 -ANNALS 58523 -ANNE 56972 -ANNETTE 60856 -ANNEX 57278 -ANNIE 61051 -ANNIVERSARY 57785 -ANNOTATED 59848 -ANNOUNCE 64201 -ANNOUNCED 62469 -ANNOUNCEMENT 57923 -ANNOUNCEMENTS 55793 -ANNOUNCES 58802 -ANNOYING 65170 -ANNUAL 50484 -ANNUEL 64905 -ANNUITY 58860 -ANNUM 64905 -ANNs 64905 -ANO 62196 -ANONYMOUS 62196 -ANOR 60078 -ANOTHER 53796 -ANOVA 52411 -ANOVAs 64201 -ANP 58162 -ANRC 65452 -ANS 58688 -ANSEF 65452 -ANSI 53361 -ANSP 57318 -ANSWER 54685 -ANSWERED 62917 -ANSWERS 58632 -ANSYS 60321 -ANT 58417 -ANTAGONISTS 65452 -ANTARA 61362 -ANTARCTICA 61818 -ANTEC 64657 -ANTED 63077 -ANTENNA 58919 -ANTENNAS 59774 -ANTHEM 64201 -ANTHONY 55604 -ANTHROPOLOGIE 61699 -ANTHROPOLOGY 65452 -ANTI 60078 -ANTIBODIES 63601 -ANTIBODY 61256 -ANTICIPATED 65452 -ANTIGEN 64905 -ANTIGENS 64423 -ANTIGUA 61699 -ANTILLES 61362 -ANTIMICROBIAL 65452 -ANTIPARASITIC 63991 -ANTIQBOOK 64905 -ANTIQUE 54283 -ANTIQUES 61051 -ANTIVIRUS 62469 -ANTM 59774 -ANTOINETTE 65452 -ANTON 64905 -ANTONIO 57199 -ANTOnline 63792 -ANTS 61584 -ANU 61362 -ANVSOFT 64657 -ANWR 61584 -ANX 65170 -ANXIETY 63792 -ANY 44243 -ANYBODY 63077 -ANYONE 55963 -ANYTHING 55578 -ANYTIME 65452 -ANYWHERE 59491 -ANZ 55107 -ANZAC 61051 -ANZLIC 64657 -ANd 64657 -AO 52387 -AOA 61256 -AOAC 62762 -AOB 65452 -AOC 57653 -AOCS 64201 -AOD 63245 -AOE 63601 -AOEGuy 63419 -AOF 62469 -AOFM 58979 -AOFO 65452 -AOIPM 61818 -AOK 65170 -AOL 38247 -AOL's 52845 -AOM 64905 -AON 64201 -AONB 63245 -AOP 56200 -AOR 62066 -AORN 64657 -AOS 55793 -AOSD 64905 -AOTC 63245 -AOpen 60952 -AP 42511 -AP's 63245 -APA 50101 -APAC 61256 -APACHE 63991 -APAR 64657 -APART 63601 -APARTMENT 57482 -APARTMENTS 57831 -APB 63077 -APBD 64905 -APC 50101 -APCD 63601 -APCs 61472 -APD 59101 -APDIP 65170 -APE 59357 -APEC 58065 -APEX 58979 -APF 62331 -APG 58919 -APH 61818 -APHA 61940 -APHIS 64657 -API 42893 -API's 64905 -APICS 65452 -APIO 62762 -APIP 64423 -APIs 43282 -APJ 64657 -APL 55906 -APLAR 63601 -APLC 63245 -APM 59227 -APMED 61818 -APMP 61051 -APN 56585 -APNIC 64657 -APO 54023 -APOC 63991 -APOCALYPSE 63077 -APOLLO 61472 -APOLOGIES 61152 -APP 57785 -APPALACHIAN 65452 -APPARATUS 52351 -APPAREL 56262 -APPEAL 54540 -APPEALS 54479 -APPEAR 60405 -APPEARANCE 59774 -APPEARANCES 64905 -APPEARING 64657 -APPEARS 61256 -APPELLANT 65170 -APPELLATE 61940 -APPENDICES 63077 -APPENDIX 52280 -APPI 59491 -APPL 56791 -APPLE 52954 -APPLES 63991 -APPLIANCE 62196 -APPLIANCES 59702 -APPLICABILITY 64905 -APPLICABLE 53630 -APPLICANT 56791 -APPLICANTS 63792 -APPLICATION 48501 -APPLICATIONS 51899 -APPLIED 55849 -APPLIES 58919 -APPLY 52778 -APPLYING 63245 -APPOINTED 62613 -APPOINTMENT 57524 -APPOINTMENTS 57160 -APPRAISAL 62196 -APPRECIATE 63077 -APPRECIATION 63245 -APPROACH 56293 -APPROACHES 59491 -APPROPRIATE 59164 -APPROPRIATION 63991 -APPROPRIATIONS 62613 -APPROVAL 53361 -APPROVALS 65170 -APPROVE 59164 -APPROVED 51453 -APPROVES 63601 -APPROVING 58417 -APPROX 65452 -APPROXIMATE 62613 -APPROXIMATELY 64905 -APPS 65170 -APPT 64423 -APR 50040 -APRICOT 62469 -APRIL 49789 -APRILIA 63601 -APRN 60670 -APRSWXNET 58212 -APS 50646 -APSE 64201 -APSF 61051 -APSR 62469 -APT 55373 -APT's 65452 -APTA 61818 -APTS 64905 -APU 61256 -APV 60762 -APW 59560 -APX 61818 -APY 60580 -APs 61472 -AQ 51482 -AQA 60405 -AQF 65452 -AQHA 59357 -AQHYA 63601 -AQI 62196 -AQIS 64423 -AQMD 61699 -AQT 63792 -AQUA 60238 -AQUARIUM 61472 -AQUATIC 63601 -AQUENT 63245 -AQUI 63601 -AQUIESSE 64905 -AQUOS 59424 -AR 43927 -ARA 59424 -ARAB 56687 -ARABIA 59774 -ARABIC 61818 -ARAMARK 60078 -ARB 57566 -ARBA 65170 -ARBITRATION 65452 -ARBOR 62917 -ARBROATH 65170 -ARBS 63601 -ARC 51942 -ARC's 64905 -ARCA 63601 -ARCADE 58417 -ARCH 57923 -ARCHER 62196 -ARCHERY 65170 -ARCHIE 64905 -ARCHITECT 61818 -ARCHITECTS 63601 -ARCHITECTURAL 57831 -ARCHITECTURE 58162 -ARCHIVAL 64657 -ARCHIVE 45578 -ARCHIVED 59630 -ARCHIVES 49913 -ARCHON 65170 -ARCO 61699 -ARCS 64423 -ARCSERVE 64657 -ARCTIC 61940 -ARCs 64905 -ARCserve 59292 -ARD 58919 -ARDC 60856 -ARDEN 65452 -ARDIDEN 64201 -ARDS 58262 -ARE 43042 -AREA 48501 -AREAS 52622 -AREN'T 63991 -ARENA 60321 -ARERR 64423 -ARES 64201 -ARF 56485 -ARG 62196 -ARGE 63077 -ARGENTINA 58212 -ARGUMENT 62762 -ARH 64201 -ARI 57524 -ARIA 58577 -ARIEL 63991 -ARIN 64423 -ARINC 64657 -ARIS 59491 -ARISE 63601 -ARISING 55793 -ARIZONA 55657 -ARK 61256 -ARKANSAS 57160 -ARKive 63077 -ARL 61699 -ARLHS 63991 -ARLINGTON 59491 -ARM 49707 -ARMA 60762 -ARMANI 63419 -ARMED 62917 -ARMENIA 60762 -ARMM 63077 -ARMOUR 64201 -ARMS 56021 -ARMSTRONG 59774 -ARMY 53346 -ARMac 54170 -ARN 60000 -ARNOLD 58417 -ARO 62917 -AROG 60492 -AROMA 64657 -ARON 65452 -AROUND 53746 -ARP 57482 -ARPA 63245 -ARPES 63601 -ARPT 65452 -ARQ 63419 -ARR 62613 -ARRANGEMENT 57741 -ARRANGEMENTS 60238 -ARRANON 63792 -ARRAY 57696 -ARREST 60762 -ARRESTED 64657 -ARRIVAL 61818 -ARRIVALS 57318 -ARRIVE 63601 -ARRIVED 65452 -ARRL 62331 -ARROW 56585 -ARROYO 63245 -ARRSE 65452 -ARS 54479 -ARSENAL 62469 -ART 46766 -ARTCC 63245 -ARTE 65170 -ARTERY 64423 -ARTHRITIS 59491 -ARTHUR 55526 -ARTICLE 44553 -ARTICLES 44980 -ARTIFICIAL 58313 -ARTISAN 65452 -ARTIST 52411 -ARTISTDirect 63077 -ARTISTIC 63991 -ARTISTS 52233 -ARTISTdirect 55274 -ARTPRICE 62469 -ARTS 50906 -ARTSPROJEKT 58417 -ARTWORK 61818 -ARUBA 61472 -ARUN 61699 -ARUNDEL 65170 -ARUP 63601 -ARV 58745 -ARVO 64657 -ARW 63991 -ARX 64423 -ARY 63792 -AS 41638 -ASA 52085 -ASACP 64657 -ASAE 60238 -ASAP 52982 -ASAT 64905 -ASB 58802 -ASBESTOS 60856 -ASBESTOSIS 61472 -ASBMB 55154 -ASC 51772 -ASCAP 60492 -ASCE 56388 -ASCENT 63077 -ASCII 51835 -ASCLEPIADACEAE 65452 -ASCO 54643 -ASCOT 63245 -ASCSM 64423 -ASCs 65170 -ASD 55684 -ASDA 63077 -ASE 55821 -ASEAN 52872 -ASEH 65170 -ASEM 57831 -ASESINAS 65452 -ASF 55202 -ASFA 60000 -ASG 59702 -ASH 57741 -ASHA 63792 -ASHANTI 62762 -ASHCROFT 58065 -ASHEVILLE 64657 -ASHI 63792 -ASHLAND 60157 -ASHLEE 64657 -ASHLEY 55793 -ASHOK 63991 -ASHP 63077 -ASHRAE 61584 -ASHTON 62196 -ASI 56110 -ASIA 52256 -ASIAN 55711 -ASIAROOMS 65170 -ASIC 55348 -ASIC's 64201 -ASICS 57831 -ASICs 62469 -ASID 64905 -ASIO 62613 -ASIS 62196 -ASK 51590 -ASKED 58577 -ASKING 62613 -ASKS 64657 -ASL 56935 -ASLA 60856 -ASLT 60238 -ASM 50734 -ASME 55154 -ASML 63991 -ASMX 61051 -ASN 59424 -ASO 62613 -ASOS 53662 -ASP 47764 -ASPCA 60856 -ASPECTS 57609 -ASPEN 61818 -ASPET 64201 -ASPH 64657 -ASPHALT 57923 -ASPI 62917 -ASPIRE 62469 -ASPIRIN 62196 -ASPWorldTour 59491 -ASPX 63991 -ASQ 61152 -ASR 58417 -ASROCK 65170 -ASRS 61362 -ASRock 58979 -ASS 54560 -ASSAULT 61940 -ASSAY 62331 -ASSE 64201 -ASSEMBLIES 64905 -ASSEMBLY 54245 -ASSESS 65170 -ASSESSED 62917 -ASSESSING 61256 -ASSESSMENT 51266 -ASSESSMENTNUMBER 58523 -ASSESSMENTS 62331 -ASSET 58162 -ASSETS 56551 -ASSIGNED 62196 -ASSIGNMENT 61051 -ASSIGNMENTS 65452 -ASSIST 57696 -ASSISTANCE 53407 -ASSISTANT 53646 -ASSISTED 64423 -ASSL 61818 -ASSN 63991 -ASSOC 58802 -ASSOCIATE 57741 -ASSOCIATED 54992 -ASSOCIATES 53241 -ASSOCIATION 50881 -ASSOCIATIONS 64201 -ASSORTED 64423 -ASSP 61152 -ASST 63792 -ASSUME 64201 -ASSUMES 65170 -ASSURANCE 59560 -ASSY 62331 -AST 52447 -ASTA 62331 -ASTD 60670 -ASTER 65170 -ASTHMA 63601 -ASTM 51131 -ASTON 61472 -ASTORIA 63245 -ASTRA 61256 -ASTRO 62196 -ASTROLOGY 62917 -ASTRONOMY 63792 -ASU 54560 -ASUS 46950 -ASUSTeK 62917 -ASV 61051 -ASW 59774 -ASX 55202 -ASYLUM 60405 -AT 41141 -ATA 48949 -ATAC 61699 -ATAHOTEL 60000 -ATAPI 63792 -ATB 60157 -ATC 54133 -ATCA 59424 -ATCC 54946 -ATD 63601 -ATE 57696 -ATEX 63792 -ATF 58365 -ATG 55014 -ATH 63077 -ATHENA 64657 -ATHENS 61584 -ATHLETE 64905 -ATHLETIC 60492 -ATHLETICS 58745 -ATI 47895 -ATI's 62613 -ATIS 63792 -ATK 59039 -ATKINSON 62917 -ATL 53124 -ATLANTA 57566 -ATLANTIC 57278 -ATLAS 55250 -ATLEAST 64423 -ATLL 64657 -ATM 48954 -ATM's 63601 -ATME 65170 -ATMEL 64905 -ATMOSPHERE 63077 -ATMOSPHERIC 64423 -ATMs 54341 -ATN 61051 -ATO 58979 -ATOL 56756 -ATOM 53196 -ATOMIC 60238 -ATOMISER 57741 -ATP 47170 -ATPase 54792 -ATR 59227 -ATRL 64905 -ATS 54283 -ATSB 65170 -ATSC 59292 -ATSDR 63991 -ATT 56200 -ATTACH 62196 -ATTACHED 58632 -ATTACHMENT 56518 -ATTACHMENTS 64423 -ATTACK 56791 -ATTEMPT 61940 -ATTEND 61818 -ATTENDANCE 60321 -ATTENDANT 65452 -ATTENDING 63601 -ATTENTION 56972 -ATTI 65170 -ATTIC 62066 -ATTITUDE 63991 -ATTORNEY 54207 -ATTORNEYS 61699 -ATTRACT 64201 -ATTRACTIONS 57609 -ATTRACTIVE 64905 -ATV 48105 -ATV's 59491 -ATVs 56935 -ATW 61940 -ATWT 62196 -ATX 51985 -ATi 59039 -ATryn 63792 -ATs 64423 -AU 41136 -AUA 60405 -AUBREY 64905 -AUBURN 60952 -AUC 57160 -AUCKLAND 53899 -AUCTION 55130 -AUCTIONS 59101 -AUD 49179 -AUDI 53917 -AUDIENCE 60321 -AUDIO 50122 -AUDIOBOOKS 58577 -AUDIOLOGY 63792 -AUDIONEWS 63077 -AUDIOVOX 64423 -AUDIT 56687 -AUDITING 64201 -AUDITOR 60856 -AUDREY 61584 -AUG 52673 -AUGUST 50940 -AUGUSTA 62196 -AUGUSTINE 65452 -AUIS 65452 -AUMUND 63991 -AUO 62613 -AUP 61362 -AUR 62762 -AURA 61818 -AURORA 61584 -AUS 53377 -AUSIEX 64423 -AUSSIE 62762 -AUST 63792 -AUSTIN 56972 -AUSTRALIA 50654 -AUSTRALIAN 54283 -AUSTRALIE 61472 -AUSTRIA 57318 -AUSTRIAN 62469 -AUT 59560 -AUTHENTIC 56518 -AUTHOR 50881 -AUTHOR'S 55711 -AUTHORITIES 60856 -AUTHORITY 54170 -AUTHORIZATION 59630 -AUTHORIZE 65170 -AUTHORIZED 57785 -AUTHORIZING 59164 -AUTHORS 56551 -AUTO 47867 -AUTOBIOGRAPHY 65170 -AUTOCAD 63792 -AUTODESK 63792 -AUTOGRAPHED 60238 -AUTOHARP 62066 -AUTOMATED 58470 -AUTOMATIC 55448 -AUTOMATICALLY 61051 -AUTOMATION 62066 -AUTOMOBILE 59848 -AUTOMOTIVE 54664 -AUTONOMIC 65452 -AUTONOMOUS 64657 -AUTOS 56652 -AUTUMN 60405 -AUVs 63245 -AUX 59774 -AUXILIARY 63245 -AV 44783 -AVA 60492 -AVAILABILITY 56485 -AVAILABLE 42838 -AVAL 63792 -AVALANCHE 63077 -AVALON 62469 -AVANT 64201 -AVATAR 65452 -AVC 55849 -AVCHD 59491 -AVE 50192 -AVEC 63419 -AVENT 64201 -AVENTURA 62196 -AVENUE 51731 -AVERAGE 54706 -AVERAGES 63077 -AVERY 59491 -AVF 55657 -AVG 50848 -AVH 63601 -AVHRR 65452 -AVI 49070 -AVIAN 63601 -AVIATION 56618 -AVID 60321 -AVIS 64905 -AVIV 63419 -AVL 62613 -AVM 60762 -AVN 57160 -AVOID 59702 -AVOIDING 64423 -AVON 59491 -AVP 58860 -AVR 56080 -AVRIL 63991 -AVS 50974 -AVSIM 63601 -AVVID 65452 -AVX 63245 -AVerMedia 64201 -AW 51000 -AWA 62762 -AWARD 53182 -AWARDED 62331 -AWARDING 64423 -AWARDS 52661 -AWARE 63991 -AWARENESS 60952 -AWAY 54857 -AWB 62196 -AWC 61051 -AWD 54835 -AWE 61940 -AWESOME 55014 -AWF 63601 -AWG 57785 -AWGN 63245 -AWHONN 63601 -AWI 62196 -AWIS 62469 -AWK 64657 -AWL 63419 -AWM 63792 -AWN 65452 -AWNING 64905 -AWOL 60157 -AWP 61152 -AWS 55604 -AWSOME 63601 -AWT 61362 -AWTS 65452 -AWW 59491 -AWWA 62917 -AX 55130 -AXA 56899 -AXE 58577 -AXIAL 61472 -AXIOM 63419 -AXIS 60078 -AXLE 61472 -AXO 65452 -AXS 62613 -AY 51377 -AYE 65452 -AYER 62917 -AYES 62066 -AYP 55373 -AYR 59630 -AZ 37942 -AZClose 65452 -AZERBAIJAN 60405 -AZN 64657 -AZO 63601 -AZTEC 61256 -AZX 62613 -AZZ 64657 -AZoM 65452 -AZoNetwork 63792 -Aa 57741 -AaB 65452 -Aaa 63419 -Aachen 58113 -Aad 64201 -Aadays 60952 -Aaj 62762 -Aaja 63991 -Aakash 65452 -Aaland 61362 -Aalborg 55423 -Aaliyah 57653 -Aamir 56551 -Aan 64201 -Aanbiedingen 65452 -Aang 62917 -Aankondigingen 62469 -Aanmelden 64657 -Aap 63245 -Aardvark 59560 -Aarhus 52996 -Aarne 61699 -Aaron 45448 -Aaron's 57653 -AaronCF 63245 -AaronCF's 65452 -Aaroniero 62613 -Aarons 62917 -Aaronson 65170 -Aarti 60321 -Aarushi 64905 -Aastra 60952 -Ab 51303 -AbD 64423 -Aba 62469 -Ababa 60078 -Abacus 55849 -Abad 62066 -Abaddon 64905 -Abadi 65170 -Abadia 65452 -Abajo 63792 -Abalone 60952 -Abana 65452 -Abandon 59164 -Abandoned 53847 -Abandoning 63991 -Abandonment 59630 -Abarat 65170 -Abarth 62917 -Abate 65452 -Abatement 56262 -Abattoir 65452 -Abba 57831 -Abbas 54902 -Abbe 62469 -Abbett 65170 -Abbeville 60321 -Abbey 48178 -Abbeys 64657 -Abbie 59357 -Abbot 58860 -Abbots 62917 -Abbotsford 53423 -Abbott 49926 -Abbott's 61818 -Abbotts 63792 -Abboud 60670 -Abbreviated 55604 -Abbreviation 59292 -Abbreviations 51846 -Abby 53109 -Abc 59848 -Abcam 58113 -Abd 61051 -Abdalla 64201 -Abdallah 63245 -Abdel 59424 -Abdi 63991 -Abdicate 54023 -Abdomen 58860 -Abdominal 52130 -Abdominals 65170 -Abdominoplasty 65452 -Abdou 65170 -Abdu 64905 -Abducted 60078 -Abduction 58577 -Abdul 51312 -Abdulaziz 65452 -Abdulla 61584 -Abdullah 54601 -Abe 53377 -Abe's 59848 -AbeBooks 60405 -Abebooks 60000 -Abecedarius 64657 -Abel 53286 -Abel's 63077 -Abelian 59227 -Abell 60580 -Abella 64657 -Abelson 65452 -Abend 62762 -Abenteuer 65452 -Aber 60670 -Abercrombie 53779 -Aberdare 60321 -Aberdeen 48672 -Aberdeenshire 55631 -Aberdyfi 59630 -Abernathy 62917 -Aberrant 62331 -Aberration 64657 -Abertura 63991 -Aberystwyth 50335 -Abhi 64905 -Abhijit 62469 -Abhishek 56551 -Abi 57009 -AbiWord 61584 -Abid 65170 -Abidjan 61584 -Abierto 62469 -Abies 63077 -Abigail 53533 -Abigail's 64905 -Abilene 55250 -Abilities 56518 -Ability 48464 -AbilityOne 63792 -Abingdon 57440 -Abington 58577 -Abinto 65452 -Abit 57970 -Abita 61256 -Abitibi 64657 -Abkhaz 63792 -Abkhazia 58212 -Abkhazian 62917 -Ablation 59101 -Able 50242 -Ableton 56756 -Abner 60492 -Abney 64905 -Abnorm 64423 -Abnormal 53581 -Abnormalities 58365 -Abnormality 65452 -Abnova 63991 -Abo 62066 -Aboard 58470 -Abobo 64423 -Abode 62917 -Abogados 62613 -Abolish 61152 -Abolition 59227 -Aboriginal 47611 -Aboriginals 64657 -Aborigines 62331 -Aborted 62613 -Abortion 43982 -Abortions 63077 -Aborto 64905 -Abou 61472 -Abound 62917 -About 27847 -AboutStaffAdvertisePressJobs 55934 -AboutUS 62066 -AboutUs 46560 -Above 46050 -Aboveground 65452 -Abpromise 64657 -Abra 63245 -Abracadabra 64905 -Abraham 48980 -Abraham's 61940 -Abrahams 59848 -Abrahamson 64657 -Abrahamsson 62066 -Abrakurrie 63419 -Abram 60000 -Abramoff 65170 -Abramovich 63991 -Abrams 54813 -Abramson 59227 -Abrasion 63077 -Abrasive 58745 -Abrasives 58979 -Abraxas 62613 -Abreu 60670 -Abridged 57566 -Abril 59039 -Abroad 46340 -Abrus 62917 -Abruzzi 63245 -Abruzzo 62917 -Abs 52858 -Absalom 63419 -Absarokee 65170 -Abscess 63991 -Abschied 65170 -Abscisic 64201 -Absence 53124 -Absences 64905 -Absent 54096 -Absentee 51113 -Absenteeism 65452 -Absinth 64657 -Absinthe 58688 -Absit 61584 -Absolut 59848 -Absolute 47819 -AbsoluteHome 65170 -Absolutely 50242 -Absolution 64905 -Absorb 61940 -Absorbance 59560 -Absorbent 63601 -Absorber 58979 -Absorbers 63077 -Absorbing 63245 -Absorption 53066 -Abstinence 60000 -Abstract 35546 -AbstractMap 65452 -AbstractPlus 39770 -Abstracting 55578 -Abstraction 60762 -Abstracts 46723 -Absurd 61362 -Absynth 60492 -Abt 57318 -Abteilung 61940 -Abu 47815 -Abubakr 64201 -Abuja 60157 -Abul 64905 -Abundance 57122 -Abundant 58802 -Abuse 36637 -Abused 57785 -Abuser 63245 -Abuses 63991 -Abusing 61584 -Abusive 53565 -Abutment 65452 -Abysmal 64905 -Abyss 55398 -Abyssal 63991 -Abyssinian 61818 -Ac 56110 -AcChoR 62066 -AcE 65170 -AcOH 65170 -Acacia 53095 -Acad 48381 -Acadamy 65170 -Academe 53361 -Academia 55250 -Academic 41724 -Academics 49986 -Academies 56899 -Academy 40151 -Academy's 60238 -Acadia 56899 -Acadian 61051 -Acadiana 62066 -Académie 64905 -Acai 53597 -Acampo 63792 -Acanthamoeba 64905 -Acanthopale 64201 -Acanthospermum 65170 -Acapella 63601 -Acappella 64201 -Acapulco 57278 -Acard 63245 -Acasa 62762 -Acc 53517 -Accademia 65170 -Accel 60670 -Accelerade 65170 -Accelerate 55684 -Accelerated 53361 -Accelerates 60157 -Accelerating 57278 -Acceleration 52622 -Accelerator 51541 -Accelerators 57046 -Accelero 65170 -Accelerometer 63601 -Accent 50766 -Accents 51166 -Accentuate 58632 -Accenture 55657 -Accept 50220 -Acceptable 51473 -Acceptance 50461 -Accepted 42746 -Accepting 54151 -Acceptor 64657 -Accepts 51670 -Acceso 63792 -Accesories 57358 -Accesorios 64657 -Access 36574 -AccessAtlanta 61256 -AccessMedicine 60157 -AccessMyLibrary 55821 -Accessability 62196 -Accessed 56452 -Accesses 64905 -Accessibility 39478 -Accessible 50823 -Accessiblity 63991 -Accessing 45490 -Accession 48386 -AccessionNumber 60321 -Accesskey 62066 -Accesskeys 63245 -Accessoires 61818 -Accessoreis 65452 -Accessori 65170 -Accessories 35459 -AccessoriesFreightliner 63991 -AccessoriesInternational 65452 -AccessoriesKenworth 64905 -AccessoriesPeterbilt 63601 -Accessorize 62469 -Accessory 48877 -Acciacca 61818 -Accident 46395 -Accidental 54601 -Accidentally 61584 -Accidents 47360 -Acclaim 58313 -Acclaimed 57831 -Accolade 63991 -Accolades 58802 -Accom 65170 -Accomm 61699 -Accommodate 65452 -Accommodates 62917 -Accommodating 65170 -Accommodation 43615 -Accommodations 49229 -Accomodation 55793 -Accomodations 58688 -Accompanied 62469 -Accompaniment 58802 -Accompany 60952 -Accompanying 60238 -Accomplished 61940 -Accomplishment 63419 -Accomplishments 56618 -Accor 60157 -Accord 49764 -Accordance 62762 -According 40910 -Accordingly 58979 -Accordion 54835 -Accords 63419 -Account 34921 -AccountOrder 65452 -Accountability 50136 -Accountable 60580 -Accountancy 53066 -Accountant 50873 -Accountants 51000 -Accountemps 62331 -Accounting 42549 -Accounts 44493 -Accoustic 64657 -Accra 60321 -Accreditation 49517 -Accreditations 58262 -Accredited 51349 -Accrediting 64905 -Accretion 63419 -Accrington 58017 -Accrual 61818 -Accrued 61256 -Accson 65452 -Acct 61940 -Accu 60000 -AccuSync 64905 -AccuWeather 60078 -Accueil 48571 -AccueilApplications 65170 -AccueilQuoi 64423 -Accum 62331 -Accumulate 65452 -Accumulated 59923 -Accumulating 62613 -Accumulation 56518 -Accumulative 64201 -Accumulator 56862 -Accupril 63991 -Accuracy 50662 -Accurate 51721 -Accurately 61699 -Accusations 59774 -Accused 54479 -Accuses 61940 -Accutane 60405 -Accutron 64423 -Accy's 61940 -Acdece 64905 -Ace 47110 -Aceh 57923 -Acekard 63991 -Acer 47947 -Acerca 61472 -Aces 54114 -Acetabular 63792 -Acetaminophen 60238 -Acetate 58162 -Acetic 59923 -Acetone 60580 -Acetonitrile 61940 -Acetyl 61699 -Acetylation 63991 -Acetylcholine 62613 -Acetylcholinesterase 63601 -Acetylene 64657 -Acevedo 62917 -Ach 62613 -Achaiah 64905 -Acharya 60078 -Achat 65170 -Ache 63419 -Acheron 65452 -Aches 56756 -Acheson 60492 -Acheter 52765 -Achetez 65452 -Achieve 52387 -Achieved 59630 -Achievement 48949 -Achievements 52141 -Achiever 64657 -Achievers 60670 -Achieves 57278 -Achieving 52699 -Achille 62066 -Achilles 56972 -Achim 62331 -Aching 63419 -Achmed 59923 -Achtung 64423 -Achyranthes 62613 -Achyutha 65452 -Aci 65452 -Acid 46138 -Acide 64423 -Acidic 60321 -Acidification 64905 -Acidity 62917 -Acido 65170 -Acidobacteria 63419 -Acidophilus 64905 -Acids 49302 -Acinetobacter 59227 -Aciphex 62917 -Ack 63991 -Acker 60078 -Ackerman 58417 -Ackland 58017 -Ackles 61256 -Ackley 64201 -Ackman 65170 -Acknowledge 60492 -Acknowledged 64657 -Acknowledgement 56324 -Acknowledgements 49359 -Acknowledging 62196 -Acknowledgment 58417 -Acknowledgments 52913 -Ackroyd 64657 -Acland 65452 -Acme 53646 -Acne 49257 -Acntx 63991 -Acokanthera 62469 -Acoli 65452 -Acolyte 62762 -AcomData 63601 -Acomplia 58212 -Aconcagua 63991 -Aconex 64423 -Aconitum 64657 -Acordes 65452 -Acorn 50890 -Acorns 60238 -Acoso 63792 -Acosta 60321 -Acoust 62066 -Acoustic 46115 -Acoustica 61584 -Acoustical 58523 -Acoustics 52954 -Acoustik 64201 -Acqua 59630 -AcquaJoy 62469 -Acquaintances 65170 -Acquainted 64657 -Acquire 53712 -Acquired 52496 -Acquirer 62613 -Acquirers 63419 -Acquires 52913 -Acquiring 57084 -Acquis 64423 -Acquisition 46934 -Acquisitions 51340 -Acre 54622 -Acreage 56899 -Acres 49578 -Acridine 63077 -Acro 64905 -AcroIEHlprObj 65452 -Acrobat 43250 -Acrobatic 63991 -Acrobatics 63077 -Acrobats 64423 -Acronis 55578 -Acronym 55500 -Acronyms 50646 -Acropolis 58523 -Acros 60762 -Across 46739 -Acrostic 63991 -Acryl 65170 -Acrylamide 63792 -Acrylic 51453 -Acrylics 63601 -Act 37415 -Act's 62196 -Acta 45104 -Actaris 64657 -Actelion 61051 -Actes 64423 -Actin 60238 -Acting 48571 -Actinic 63245 -Actinobacillus 61584 -Actinopterygii 63991 -Action 38326 -ActionScript 54170 -Actionable 65170 -Actions 46107 -Actionscript 56585 -Actiontec 61152 -Activ 64657 -ActivCard 63792 -Activa 64201 -Activate 48996 -Activated 53124 -Activates 61584 -Activating 46803 -Activation 48363 -Activator 58979 -Active 38538 -ActiveMQ 62762 -ActiveObjectX 63991 -ActiveRain 55226 -ActiveSync 57046 -ActiveX 50040 -Actively 58745 -Actives 61152 -Activesync 63792 -Activewear 55906 -Activex 62196 -Actividad 60952 -Actividades 62613 -Activin 65452 -Activision 54902 -Activision's 65452 -Activism 51690 -Activison's 64201 -Activist 55037 -Activists 57524 -Activites 59702 -Activities 41160 -Activity 41353 -Activité 61152 -Actix 61256 -Acton 53613 -Actor 48327 -Actor's 59292 -Actors 48954 -Actos 60580 -Actress 49274 -Actresses 51511 -Acts 48590 -Actuación 63419 -Actual 47931 -ActualTests 65170 -Actualités 64423 -Actually 49821 -Actuals 61362 -Actuarial 56293 -Actuaries 62762 -Actuary 62613 -Actuated 64905 -Actuation 63077 -Actuator 58417 -Actuators 56551 -Acuity 62331 -Acumen 61051 -Acuna 65452 -Acupressure 62613 -Acupuncture 52459 -Acupuncturist 63077 -Acura 47252 -AcuraZine 64905 -Acushnet 63991 -Acute 48309 -Acuvue 60580 -Acworth 60078 -Acxiom 58262 -Acyclovir 58632 -Ad 38362 -AdBrite 59923 -AdMob 61818 -AdSense 49296 -AdShrink 63601 -AdTech 57482 -AdWords 52805 -Ada 52435 -Adachi 63077 -Adages 64657 -Adagio 58802 -Adah 63792 -Adair 55738 -Adak 64905 -Adalat 64657 -Adam 42268 -Adam's 56356 -AdamTanase 62469 -Adama 63077 -Adami 64201 -Adamkiewicz 64657 -Adamo 62917 -Adams 44272 -Adams's 62066 -AdamsUSA 63245 -Adamson 58017 -Adamstown 62469 -Adana 64201 -Adapt 60405 -Adaptability 65452 -Adaptable 60078 -Adaptation 53712 -Adaptations 60856 -Adaptec 56518 -Adapted 54188 -Adapter 46112 -Adapters 47485 -Adapting 56262 -Adaptive 50476 -Adaptor 53899 -Adaptors 56687 -Adapts 63792 -Adar 65452 -Adasen 65452 -Adaya 63991 -Adbrite 64657 -Adbusters 64905 -Adcock 62469 -Adcom 64905 -Add 28623 -AddOns 64657 -AddRow 61152 -AddThis 47645 -Adda 63991 -Addams 58313 -Added 33047 -Addenbrooke's 61818 -Addenda 63601 -Addendum 56452 -Adder 60492 -Adderall 57046 -Adderley 62613 -Addex 65170 -Addict 50164 -Addicted 54399 -Addicting 59101 -Addictio 60952 -Addiction 47863 -Addictions 57609 -Addictive 56827 -Addicts 53762 -Addie 59923 -Adding 47304 -Addington 62066 -Addis 56551 -Addison 52622 -Addison's 60238 -Addition 50591 -Additional 37588 -Additionally 55684 -Additions 45096 -Additive 58113 -Additives 55274 -Additonal 64201 -Addlestone 61699 -Addo 63419 -Addon 60000 -Addons 55604 -Addr 60321 -Address 38355 -AddressBooks 64201 -Addressable 65452 -Addressed 60492 -Addresses 49157 -Addressing 52818 -Adds 50227 -Addthis 65452 -Addy 62762 -Addysg 63419 -Ade 60670 -Adebayor 62613 -Adecco 57399 -Adee 63419 -Adega 64905 -Adel 58470 -Adela 63601 -Adelaide 46365 -Adelaide's 61699 -AdelaideNow 59848 -Adelante 64657 -Adelanto 62613 -Adele 54813 -Adele's 65452 -Adelina 62196 -Adeline 59848 -Adelman 60952 -Adelphi 60238 -Adelphia 63077 -Adem 64657 -Aden 56827 -Adena 64423 -Adenine 62762 -Adenium 60321 -Adenocarcinoma 59774 -Adenodolichos 61699 -Adenoid 63601 -Adenosine 58017 -Adenovirus 59630 -Adenylate 63601 -Adept 58065 -Adequacy 62066 -Adequate 53988 -Aderholt 63991 -Ades 63245 -Adesso 61362 -Adhd 65170 -Adhere 63419 -Adherence 58470 -Adherent 65170 -Adhering 64423 -Adhesion 55963 -Adhesive 53377 -Adhesives 53729 -Adi 57160 -Adiantum 63245 -Adicio 64657 -Adicionar 58162 -Adicts 63792 -Adidas 49092 -Adiga 64657 -Adil 60405 -Adin 61818 -Adina 61256 -Adinutsa's 63792 -Adio 60157 -Adios 60492 -Adipex 54540 -Adipose 62066 -Adirondack 54264 -Adirondacks 62196 -Adis 56110 -Aditi 60856 -Aditya 59164 -Adium 63792 -Adivasi 63245 -Adj 60492 -Adjacent 55738 -Adjective 61472 -Adjectives 60321 -Adjoining 60856 -Adjourn 60580 -Adjourned 61152 -Adjournment 58262 -Adjudicated 64905 -Adjudication 59039 -Adjunct 56420 -Adjunctive 63792 -Adjust 51772 -Adjustable 47947 -Adjusted 53454 -Adjuster 58979 -Adjusters 59424 -Adjustible 64905 -Adjusting 56324 -Adjustment 50906 -Adjustments 54643 -Adjusts 60670 -Adjutant 62066 -Adjuvant 58365 -Adkins 57046 -Adlai 64905 -Adland 64657 -Adler 53501 -Adler's 65452 -Adlets 65170 -Adlington 64905 -Adload 65452 -Adm 60321 -Admin 43512 -Admin's 64201 -AdminApp 65452 -Administer 58919 -Administered 56899 -Administering 58313 -Administración 62066 -Administracja 62917 -Administration 40011 -Administration's 56551 -AdministrationDiplomatic 65452 -AdministrationProcess 54380 -AdministrationServer 63991 -Administrationman 54727 -Administrations 61472 -Administrative 43228 -Administrator 43552 -Administrator's 56485 -Administrators 49529 -Admins 54664 -Admiral 46365 -Admirals 60952 -Admiralty 55500 -Admire 61362 -Admired 60492 -Admirer 63419 -Admissible 64423 -Admission 47353 -Admissions 47410 -Admit 58919 -Admits 56200 -Admittance 65170 -Admitted 58113 -Admittedly 63991 -Admitting 63601 -Adnan 56293 -Adnan's 65170 -Ado 60321 -AdoMet 64905 -Adobe 39617 -Adobe's 43121 -Adolesc 57696 -Adolescence 52534 -Adolescent 48515 -Adolescents 55552 -Adolf 54749 -Adolfo 59630 -Adolph 57318 -Adolphe 62196 -Adolphus 61152 -Adoni 65170 -Adonis 59424 -Adonline 60492 -Adopt 51590 -Adoptable 59774 -Adopted 52315 -Adoptee 58632 -Adoptee's 59702 -Adopting 56791 -Adoption 47184 -Adoptions 56618 -Adoptive 59227 -Adopts 58632 -Adorable 55423 -Adorama 57785 -Adoration 60856 -Adore 60670 -Adored 61818 -Adoring 65452 -Adorno 63601 -Adotube 65452 -Adrants 64423 -AdreView 63601 -Adrenal 56652 -Adrenalin 60762 -Adrenaline 55448 -Adrenergic 63601 -Adrenocortical 63991 -Adresse 61152 -Adria 61584 -Adriaan 61472 -Adriamycin 61818 -Adrian 47392 -AdrianStrays 65170 -Adriana 52725 -Adriann 64905 -Adrianna 60157 -Adrianne 60238 -Adriano 59630 -Adriatic 57609 -Adrien 58313 -Adrienne 55250 -Adrift 61584 -Ads 39516 -Adsense 51700 -Adsorption 55711 -Adtech 62196 -Adtran 63077 -Adu 63419 -Adult 39284 -AdultCare 64905 -Adulte 63792 -Adultery 62066 -Adulthood 62196 -Adulto 63991 -Adults 46102 -Adv 53746 -Advair 59848 -Advameg 59848 -Advance 44299 -Advanced 32813 -Advancement 49959 -Advancements 62196 -Advances 47143 -Advancing 56791 -Advani 60000 -Advanstar 65452 -Advanta 60856 -Advantage 44510 -Advantages 51060 -Advantec 65170 -Advantix 63077 -Advent 52940 -AdventNet 63245 -Adventist 54151 -Adventur 59923 -Adventure 42214 -Adventurer 57609 -Adventurers 61051 -Adventures 45488 -Adventuress 64905 -Adventurous 60078 -Adverbs 62613 -Advergaming 60670 -Adversary 64201 -Adverse 52423 -Advert 51377 -Advertise 33581 -Advertised 55766 -Advertisement 38806 -Advertisements 47943 -Advertiser 45979 -Advertiser's 64423 -Advertisers 43462 -Advertising 35660 -Advertisment 54560 -Advertisments 58017 -Adverts 53052 -Advice 40211 -AdviceFor 63792 -Advices 63991 -Advil 64905 -Advise 57009 -Advised 63077 -Adviser 51425 -Adviser's 65452 -Advisers 54419 -Advises 62331 -Advising 54419 -Advisor 45191 -Advisor's 61818 -Advisories 53899 -Advisors 50461 -Advisory 43307 -AdvoCare 62469 -Advocacy 47859 -Advocate 50537 -Advocates 54245 -Advocating 64905 -Adware 56420 -Adwords 55963 -Ady 62613 -Adz 65170 -Adzooks 64905 -Ae 56791 -AeA 64201 -Aedeagal 65452 -Aedes 62331 -Aegan 60580 -Aegean 56652 -Aegilops 62331 -Aegis 54813 -Aegon 63991 -Aegwynn 59774 -Aelia 64905 -Aelita 65452 -Aelux 64905 -Aen 64423 -Aenean 61584 -Aeneas 64657 -Aeneid 65170 -AengusJames 62762 -Aeolian 63077 -Aeon 61051 -Aer 52268 -Aerating 65452 -Aeration 60238 -Aerator 63419 -Aerators 63792 -Aerial 49190 -Aerials 57440 -Aerie 58065 -Aerio 63077 -Aeris 62469 -Aerize 65170 -Aero 52007 -AeroBed 64201 -AeroGarden 60952 -Aerobatic 64657 -Aerobatics 64905 -Aerobed 62331 -Aerobic 55738 -Aerobics 56485 -Aerobie 63991 -Aerodrome 60580 -Aerodynamic 61362 -Aerodynamics 62196 -Aeroflex 64905 -Aeroflot 52609 -Aerofuel 63419 -Aerographer's 51888 -Aeromexico 50006 -Aeromonas 61940 -Aeromotive 65170 -Aeronautic 63601 -Aeronautical 57566 -Aeronautics 53377 -Aeroparque 63792 -Aeroplane 60580 -Aeropostale 60157 -Aeropuerto 65170 -Aeroquip 64423 -Aeros 64905 -Aerosmith 54133 -Aerosol 55014 -Aerosoles 63245 -Aerosols 63245 -Aerospace 48595 -Aerostar 64905 -Aerotek 56585 -Aertel 64201 -Aerts 65452 -Aesop 63245 -Aesop's 65170 -Aesth 63419 -Aesthetic 55250 -Aesthetics 54170 -Aether 63601 -Aetna 53316 -Af 59560 -Afar 59357 -Afb 63601 -Aff 60238 -Affair 52051 -Affaires 62762 -Affairs 41831 -Affect 53407 -Affected 53899 -Affecting 55738 -Affection 60952 -Affective 56687 -Affects 53882 -Affenpinscher 64905 -Afferent 64201 -Afficher 63419 -Affidavit 56452 -Affidavits 63792 -Affiliate 39736 -Affiliated 53196 -Affiliates 43189 -Affiliation 49670 -Affiliations 51931 -Affine 62613 -Affinity 53796 -Affirmation 60238 -Affirmations 62066 -Affirmative 54835 -Affirmed 60405 -Affirming 63991 -Affirms 56687 -Affleck 58017 -Affliates 65452 -Afflicted 63601 -Afflicting 63419 -Affliction 58365 -Affluent 62917 -Afford 56585 -Affordability 56652 -Affordable 46963 -Affymetrix 57785 -Afganistan 64905 -Afghan 48736 -Afghani 59039 -Afghanis 63245 -Afghanistan 43790 -Afghanistan's 59560 -Afghans 58365 -Afi 61472 -Aficio 60000 -Aficionado 59560 -Aflac 61472 -Aflatoxin 64905 -Afloat 61818 -Afni 63601 -Afonso 65170 -Afr 57653 -Afra 65452 -Afraid 54992 -Africa 36721 -Africa's 50530 -African 38013 -Africana 63792 -Africanist 63601 -Africans 53485 -Africare 62762 -Afridi 61818 -Afrigator 64657 -Afrika 56200 -Afrikaans 53331 -Afrikaanse 64905 -Afrique 59227 -Afro 55552 -Afrobeat's 62917 -Afroman 64905 -Aft 62469 -Aftab 62331 -After 34966 -AfterDawn 58262 -Afterburner 61584 -Aftercare 61818 -Afterdawn 58313 -Afterhours 63991 -Afterimage 54059 -Afterlife 62066 -Aftermarket 54151 -Aftermath 56485 -Afternic 61940 -Afternoon 48882 -Afternoons 62613 -Afters 65452 -Aftersales 63077 -Afterschool 61362 -Aftershave 62066 -Aftershock 63991 -Afterward 65452 -Afterwards 57278 -Afterworld 59357 -AfterworldTV 61051 -Afton 59848 -Afviste 63419 -Afzal 64905 -Ag 50591 -AgExporter 53830 -Aga 57696 -Again 44810 -Against 43375 -Agamaggan 59560 -Agape 61818 -Agar 58262 -Agaricus 61818 -Agarose 63601 -Agartala 63077 -Agarwal 56687 -Agassi 61152 -Agassiz 63792 -Agata 64423 -Agate 59357 -Agatha 56262 -Agathosma 61699 -Agatti 65452 -Agave 61051 -Agawam 64657 -Age 39563 -Aged 51017 -Agee 63792 -Ageing 51444 -Agel 55250 -Ageless 63077 -Agence 57399 -Agencia 63077 -Agencies 44526 -Agency 40469 -Agency's 53899 -Agenda 43950 -Agendas 48199 -Agendus 61256 -Agent 40969 -Agent's 57084 -AgentContext 54226 -Agente 64423 -Agents 41969 -Ager 65452 -Agere 63601 -Ages 47130 -Agfa 59774 -Aggarwal 60670 -Aggie 57524 -Aggies 54857 -Aggiungi 56899 -Aggramar 59292 -Aggravated 59357 -Aggregate 53746 -Aggregated 61699 -Aggregates 59923 -Aggregating 63245 -Aggregation 56140 -Aggregator 57358 -Aggregators 60321 -Aggression 58523 -Aggressive 53438 -Aggressively 64905 -Agha 64201 -Aghia 64201 -Aghios 63991 -Agia 64905 -Agile 53646 -Agilent 54321 -Agility 54360 -Agim 64423 -Agincourt 62469 -Aging 48165 -Agios 62331 -Agitated 63792 -Agitator 63077 -Agito 64201 -Agius 63419 -Agnes 52291 -Agnetha 65452 -Agnew 59774 -Agnieszka 60856 -Agnihotri 65452 -Agnitum 64657 -Agno 63077 -Agnostic 58802 -Agnosticism 54360 -Agnus 63245 -Ago 45939 -Agoda 62613 -Agog 60405 -Agogo 63792 -Agonist 59292 -Agonists 63077 -Agony 56585 -Agora 60670 -Agoraphobia 62613 -Agostino 64905 -Agosto 59424 -Agoura 56972 -Agra 53470 -Agrarian 57238 -Agrawal 58745 -Agree 50013 -Agreeability 65452 -Agreed 55766 -Agreeing 64201 -Agreement 38863 -AgreementPrivacy 63419 -Agreements 48491 -Agrees 56618 -Agregar 64905 -Agri 60078 -Agribusiness 55250 -Agric 56687 -Agricola 58523 -Agricole 64905 -Agricultura 65452 -Agricultural 43688 -Agriculture 42413 -Agriculture's 62331 -Agridome 64201 -Agrigento 61699 -Agritourism 64201 -Agriturismo 63601 -Agro 61152 -Agrobacterium 59630 -Agrochemical 63245 -Agroforestry 61362 -Agron 62613 -Agronomy 58017 -Agrotechnology 63419 -Agua 55348 -Aguas 64905 -Aguascalientes 64423 -Aguero 65170 -Aguila 58523 -Aguilar 58523 -Aguilas 63792 -Aguilera 50774 -Aguilera's 64905 -Aguirre 60000 -Agung 64201 -Agus 63077 -Agusta 60670 -Agustin 57238 -Agustín 65170 -Agyness 61699 -Ah 51550 -Aha 63245 -Ahab 62917 -Ahead 47150 -Ahearn 65452 -Aheloy 64657 -Ahern 60238 -Ahh 60157 -Ahhh 62613 -Ahi 63419 -Ahir 62917 -Ahmad 53167 -Ahmadi 63601 -Ahmadinejad 56551 -Ahmadinejad's 62613 -Ahmadiyya 64905 -Ahmed 49476 -Ahmedabad 52411 -Ahmet 59848 -Ahn 58212 -Ahn'Qiraj 56518 -Ahnentafel 64423 -Ahora 58577 -Ahoy 61818 -Ahrens 62613 -Ahsan 60580 -Ahtisaari 62613 -Ahuja 62066 -Ahwatukee 64423 -Ai 52509 -AiG 63792 -AiO 64657 -Aiba 64657 -Aichi 59424 -Aid 42622 -Aid's 64657 -Aida 56791 -Aidan 57122 -Aide 50476 -Aide's 59227 -Aided 53662 -Aiden 57785 -Aides 55014 -Aiding 63077 -Aids 46803 -Aiello 64423 -Aigner 61940 -Aika 64905 -Aiken 53485 -Aiki 64657 -AikiWeb 65452 -Aikido 55474 -Aikikai 64201 -Aikman 65452 -Aiko 62917 -Ail 64905 -Aileen 58313 -Ailes 63991 -Ailey 63601 -Ailing 61256 -Ailments 62066 -Ailsa 62917 -Ailton 65170 -Aim 52303 -AimPoint 63792 -Aimed 59101 -Aimee 54005 -Aimersoft 61472 -Aimhigher 64201 -Aiming 61051 -Aimmap 64423 -Aimpoint 58688 -Aims 48063 -Ain 59424 -Ain't 49553 -Aina 64657 -Aine 62917 -Ainsley 63792 -Ainslie 62917 -Ainsworth 60157 -Aint 56356 -Aintree 57785 -Aion 59164 -Aiptek 61818 -Air 34150 -Air's 63077 -AirAsia 63792 -AirLink 61152 -AirMax 65170 -AirPlus 65452 -AirPort 56388 -AirPremier 63077 -AirTran 50832 -Airantou 64423 -Airbag 57876 -Airbags 60952 -Airbase 59774 -Airbed 62917 -Airbender 58860 -Airblaster 64657 -Airboat 63991 -Airborne 49847 -Airbourne 59491 -Airbrush 58470 -Airbrushing 64423 -Airbus 54005 -Aircel 63991 -Aircon 63419 -Aircooled 62469 -Aircore 64657 -Aircraft 46351 -Aircraftman 51888 -Aircrafts 65170 -Aircraftwoman 57524 -Aircrew 54041 -Airdrie 58688 -Aire 56862 -Aired 61152 -Airedale 61699 -Aires 52496 -Airey 63419 -Airfare 52018 -Airfares 57653 -Airfield 58745 -Airfix 63991 -Airflo 64657 -Airflow 58113 -Airforce 61362 -Airframe 63601 -Airframes 64423 -Airgas 64201 -Airguns 61362 -Airhead 62613 -Airing 59491 -Airjet 64423 -Airlie 57696 -Airlift 62331 -Airline 44127 -Airliner 65170 -Airliners 54924 -Airlines 36298 -Airllines 52982 -Airmail 57160 -Airman 45809 -Airmen 61584 -Aironet 60000 -Airparks 64201 -Airplane 50171 -Airplanes 54540 -Airplay 63245 -Airpoints 64905 -Airport 40180 -Airport's 63245 -Airports 46537 -Airs 59164 -Airset 61818 -Airship 62762 -Airshow 58113 -Airshows 64201 -Airsoft 51531 -Airspace 62196 -Airstream 62196 -Airstrip 64657 -Airtel 56140 -Airtime 63419 -Airtours 63792 -Airwave 63991 -Airwaves 59039 -Airway 55398 -Airways 40903 -Airwolf 64201 -Airwoman 60405 -Airworthiness 60580 -Airy 59101 -Aisa 61362 -Aiseesoft 60078 -Aisha 59560 -Aishiteruze 64905 -Aishwarya 53392 -Aisin 64657 -Aisle 57440 -AisleDash 58113 -Aisles 60238 -Aisleyne 65170 -Aisling 61818 -Aitchison 61152 -Aitken 59630 -Aitkin 64201 -Aiwa 65452 -Aix 62762 -Aixam 62196 -Aizawa 64201 -Aizawl 65170 -Aizen 61051 -Aj 60078 -Aja 60492 -Ajab 63419 -Ajanta 65170 -Ajax 50446 -Ajay 54946 -Ajilon 63245 -Ajit 60580 -Ajith 59774 -Ajman 63419 -Ajmer 61152 -Ajo 65452 -Ajouter 61152 -Ajouté 61256 -Ak 60492 -Aka 57399 -Akad 60492 -Akadema 63991 -Akademi 61699 -Akademie 61584 -Akademii 63419 -Akademiks 63792 -Akagi 63077 -Akai 58979 -Akaike 63991 -Akaka 65170 -Akama 60405 -Akamai 59039 -Akan 63245 -Akane 60238 -Akaroa 64201 -Akasaka 63991 -Akash 63245 -Akatsuki 60000 -Akbar 55821 -Akdeniz 64905 -Ake 65170 -Akemi 64423 -Aker 60321 -Akerman 63991 -Akers 60492 -Akhtar 58745 -Aki 56791 -Akihabara 61051 -Akihiko 62613 -Akihiro 62613 -Akiko 60405 -Akimoto 64905 -Akin 59292 -Akinori 63419 -Akins 63601 -Akio 62331 -Akira 54059 -Akismet 56935 -Akita 57399 -Akitas 65170 -Akiva 65452 -Akiyama 63792 -Akiyoshi 65170 -Akkadian 64657 -Ako 62469 -AkoComment 65452 -Akon 50774 -Akon's 61699 -Akoustik 64423 -Akoya 61152 -Akram 62331 -Akrapovic 65170 -Akron 52509 -Akshay 56721 -Aksum 57609 -Aksumite 62917 -Akt 58632 -Aktiengesellschaft 62917 -Aktion 65452 -Aktuelle 61818 -Aku 61584 -Akula 62469 -Akuma 62469 -Akzo 63991 -Al 41052 -Al'Akir 64201 -Al's 53182 -AlCl 64657 -AlGaAs 62762 -AlJazeeraEnglish 62066 -AlN 60405 -Ala 55793 -Alaa 63601 -Alabama 41038 -Alabama's 61699 -Alabaster 59292 -Alacer 65170 -Alachua 59848 -Alacra 57741 -Aladdin 55500 -Aladdin's 61584 -Alafia 63991 -Alagoas 60492 -Alaibot 64905 -Alain 52712 -Alaina 64657 -Alaiye 61152 -Alam 57876 -Alama 63792 -Alamance 60670 -Alameda 51772 -Alamitos 61051 -Alamo 54419 -Alamogordo 64905 -Alamos 54283 -Alamosa 63419 -Alan 42638 -Alan's 61362 -Alana 56687 -Aland 59292 -Alangium 63077 -Alanine 61362 -Alanis 53882 -Alanna 61699 -Alannah 64657 -Alans 64905 -Alanya 61940 -Alaotra 65452 -Alappuzha 64201 -Alara 62331 -Alarcon 63991 -Alaris 64905 -Alarm 47011 -Alarmed 65170 -Alarming 61818 -Alarms 51600 -Alas 58688 -Alasdair 59774 -Alaska 40404 -Alaska'a 65170 -Alaska's 57009 -Alaskan 51349 -Alaskans 61699 -Alastair 54096 -Alawar 63991 -Alb 64657 -Alba 50060 -Alba's 62331 -Albacete 64905 -Albacore 63419 -Alban 58860 -Albanese 62613 -Albania 45919 -Albanian 50991 -Albanians 60856 -Albano 65452 -Albans 54399 -Albany 46918 -Albany's 65452 -Albarn 64423 -Albatron 63077 -Albatross 60078 -Albedo 65452 -Albee 62066 -Albemarle 58919 -Alben 63601 -Albergo 63792 -Alberni 61472 -Albers 61256 -Albert 44796 -Alberta 44007 -Alberta's 58262 -Albertans 62762 -Alberti 65452 -Albertina 64905 -Alberto 51293 -Alberton 60157 -Alberts 60492 -Albertson 61256 -Albertson's 63792 -Albertsons 59560 -Albertville 57831 -Albi 62613 -Albian 65452 -Albin 62613 -Albino 57831 -Albion 52233 -Albizia 62917 -Albizuris 60670 -Albom 64657 -Albrecht 57566 -Albright 57199 -Albritton 62331 -Albufeira 58860 -Album 40395 -AlbumUseful 64905 -Albumen 64423 -Albumin 59039 -Albums 42319 -Albuquerque 48001 -Albury 59630 -Albus 62613 -Albuterol 63601 -Alcala 64657 -Alcalde 63601 -Alcan 59702 -Alcantara 62331 -Alcatel 55107 -Alcatraz 58417 -Alcaz 65452 -Alcazar 65170 -Alcester 58979 -Alchemea 64905 -Alchemist 54170 -Alchemy 52051 -Alchymy 63991 -Alcibiades 65452 -Alcina 65170 -Alco 64423 -Alcoa 55992 -Alcock 63991 -Alcohol 44894 -Alcoholic 53517 -Alcoholics 57653 -Alcoholism 54096 -Alcohols 63991 -Alcon 62331 -Alcorn 59101 -Alcott 65452 -Ald 64423 -Alda 63991 -Aldactone 63419 -Aldana 65452 -Aldara 65170 -Aldauth 65452 -Aldbourne 60952 -Aldehyde 64201 -Alden 55934 -Alder 56388 -Aldergrove 65170 -Alderley 60952 -Alderman 53286 -Aldermanic 62613 -Aldermen 57970 -Alderney 64201 -Aldershot 58470 -Alderson 61584 -Alderwood 64657 -Aldgate 62331 -Aldi 60856 -Aldo 56324 -Aldolase 64423 -Aldon 65452 -Aldor 63077 -Aldous 63077 -Aldrich 56791 -Aldridge 56756 -Aldrin 62613 -Ale 50514 -AleX 60078 -Alea 65452 -Alec 52996 -Alecia 65452 -Aled 62331 -Aledo 62469 -Alege 63991 -Alegre 60078 -Alegria 63601 -Aleister 62196 -Alejandra 59560 -Alejandro 52622 -Alek 63991 -Aleks 62066 -Aleksandar 62762 -Aleksander 63601 -Aleksandr 59227 -Aleksandra 61584 -Aleksey 64657 -Alektra 63991 -Alemania 65452 -Alemannisch 58577 -Alemtuzumab 65452 -Alena 60670 -Alenia 63792 -Alentejo 64905 -Aleph 60856 -Aleppo 58577 -Alergy 64423 -Alert 37964 -AlertNet 61584 -Alerter 64423 -Alerting 44082 -Alertpay 63419 -Alerts 39223 -AlertsReceive 61152 -Ales 57399 -Alesana 65170 -Alesha 60078 -Alesis 58860 -Alessandra 55154 -Alessandria 62762 -Alessandro 53256 -Alessi 59702 -Alessia 61362 -Alessio 62196 -Aletha 64905 -Aletsch 65170 -Aleutian 59774 -Aleve 60405 -Alex 42316 -Alex's 59357 -AlexBarchiesi 65170 -Alexa 46471 -Alexander 43718 -Alexander's 59630 -Alexanders 64657 -Alexandr 64905 -Alexandra 49633 -Alexandra's 64423 -Alexandre 54879 -Alexandria 50469 -Alexandrite 65452 -Alexandros 62331 -Alexandru 62331 -Alexei 58017 -Alexey 59357 -Alexi 63792 -Alexia 57785 -Alexion 62613 -Alexis 50242 -Alexstrasza 60580 -Alf 59357 -Alfa 49108 -Alfalfa 59491 -Alfamega 62066 -Alfano 64423 -Alfaro 64657 -Alferd 63991 -Alfie 58417 -Alfonse 65452 -Alfonso 54924 -Alford 58262 -Alfred 47064 -Alfred's 63601 -Alfredo 53729 -Alfredsson 64905 -Alfresco 59292 -Alfreton 65452 -Algae 56021 -Algal 64657 -Algarve 56518 -Algebra 52062 -Algebraic 55250 -Algebras 60405 -Algemeen 62762 -Algemene 60492 -Alger 60238 -Algeria 46040 -Algerian 56618 -Algernon 65170 -Alghero 61940 -Algiers 59702 -Alginate 62917 -Algo 63792 -Algom 64905 -Algoma 62762 -Algona 63419 -Algonquin 56021 -Algor 64905 -Algorithm 50966 -Algorithme 63991 -Algorithmic 60000 -Algorithmics 64201 -Algorithms 50402 -Algoritmo 64201 -Alhaji 64905 -Alhambra 55934 -Ali 45697 -Ali'den 64905 -Ali's 59424 -Alia 59164 -Aliant 60157 -Alias 53746 -Aliases 54302 -Alibaba 49429 -Alibi 59702 -Alibris 50285 -Alicante 57046 -Alice 45590 -Alice's 60670 -Alicia 47760 -Alicia's 64201 -Alida 64657 -Alien 48327 -Alienate 56551 -Alienation 61584 -Aliens 52007 -Alienware 54188 -Alife 62613 -Aligarh 63991 -Align 55299 -Aligned 61472 -Aligning 59923 -Alignment 50654 -Alignments 64905 -Alii 64201 -Alike 52832 -Alimama 57046 -Aliment 58632 -Alimentarius 62196 -Alimentary 62762 -Alimenticia 65170 -Alimony 57278 -Alin 64423 -Alina 56972 -Aline 58745 -Alinsky 64423 -Alinta 63991 -Alipay 57046 -Aliph 63991 -Aliphatic 63419 -Aliquam 63245 -Aliquots 57785 -Alireza 63077 -Alisa 57741 -Alisdair 64657 -Alisha 58212 -Aliso 58065 -Alisoft 57046 -Alison 48422 -Alison's 62066 -Alissa 60321 -Alistair 53286 -Alister 63419 -Alita 64201 -Alitalia 49639 -Alito 62469 -Alive 47464 -AliveDownload 58212 -Alix 59848 -Aliyah 65170 -Aliyev 61472 -Aliza 64423 -Alizee 62762 -Alka 62917 -Alkali 61818 -Alkaline 52940 -Alkalinity 64657 -Alki 64657 -Alkire 64201 -Alkmaar 64905 -Alkyd 64201 -Alkyl 61699 -Alkylating 64657 -All 25967 -All's 62066 -AllAfrica 62469 -AllCDCovers 61584 -AllClose 61152 -AllDocuments 62469 -AllEntries 62469 -AllExperts 56293 -AllHealthCareJobs 63991 -AllHealthcareJobs 65170 -AllPosters 59848 -AllPreferences 65170 -AllRefine 55578 -AllTheWeb 62331 -Alla 57238 -Allaah 62917 -Allah 51711 -Allah's 59560 -Allahabad 55250 -Allakhazam 63077 -Allan 47070 -Allan's 65452 -Allard 57609 -Allardyce 63792 -Allasio 62762 -Alle 53485 -Allee 61472 -Allegan 63991 -Allegany 60580 -Allegations 60670 -Alleged 56652 -Allegedly 60000 -Alleges 65170 -Alleghany 60078 -Allegheny 54792 -Allegiance 57009 -Allegiant 49541 -Allegis 64657 -Allegra 55738 -Allegretto 63792 -Allegro 55906 -Allein 63601 -Allele 58979 -Alleles 65170 -Allelic 63245 -Alleluia 65452 -Allen 42803 -Allen's 55373 -Allenby 62331 -Allendale 60405 -Allende 61818 -Allenna 63245 -Allens 63792 -Allentown 54946 -Alleppey 62331 -Aller 61584 -Allerdale 65170 -Allergan 63991 -Allergen 60405 -Allergens 62066 -Allergic 56140 -Allergies 50766 -Allergists 63991 -Allergy 45666 -Alleria 61051 -Allerton 59357 -Alles 60078 -Alleviate 64657 -Alleviation 62331 -Alley 49841 -Alleyne 65170 -Alleys 62331 -Allgemein 61051 -Allgemeine 57876 -Allgemeines 65452 -Alli 59292 -Alliance 43668 -Alliance's 61472 -Alliances 54005 -Alliant 59702 -Allianz 58262 -Allibaba 63991 -Allie 55657 -Allied 47123 -AlliedModders 63991 -AlliedSignal 65170 -Allien 61256 -Allies 54519 -Alligator 56140 -Alligators 63792 -Allin 63077 -Allis 60238 -Allison 48619 -Allison's 62196 -Allister 64657 -Alliston 61362 -Allium 62917 -Allman 57696 -Allmusic 64423 -Allmänna 60762 -Allo 63245 -Alloa 57199 -Allocate 65452 -Allocated 60856 -Allocating 64657 -Allocation 51330 -Allocations 58113 -Allocution 61818 -Allogeneic 62196 -Allograft 62613 -Allok 62613 -Allopathic 62917 -Allosteric 64905 -Allotment 57358 -Allotments 60952 -Allow 49234 -AllowOverride 62917 -Allowable 59848 -Allowance 53952 -Allowances 56652 -Alloway 62917 -Allowed 50782 -Allowing 56972 -Allows 51814 -Alloy 50646 -Alloys 55552 -AlloysMolten 59227 -Allrecipes 59292 -Allred 61472 -Allscripts 64201 -Allsop 63991 -Allsopp 64657 -Allstar 57970 -Allstars 55711 -Allstarz 65452 -Allstate 53182 -Allstate's 63077 -Allston 60492 -Allstream 64905 -Allsvenskan 64423 -Alltec 65452 -Alltel 51650 -Alltop 60952 -Allure 48949 -Alluring 64423 -Allusions 63077 -Alluvial 64423 -Allway 64657 -Allwebco 65170 -Ally 54706 -Allylic 65452 -Allyn 56388 -Allyson 59424 -Alm 61472 -Alma 52435 -Almac 64905 -Almaden 62196 -Almadrava 65170 -Almagro 62762 -Almanac 51238 -Almanacs 61256 -Almas 64423 -Almaty 60670 -Almeida 56756 -Almeria 56827 -Almerimar 61472 -Almería 63601 -Almeyda 62762 -Almighty 56021 -Almodóvar 63077 -Almodóvar's 64201 -Almond 52752 -Almonds 58313 -Almonte 63991 -Almost 45912 -Alnor 65170 -Alnwick 61584 -Aloe 53167 -Aloft 62066 -Aloha 48586 -AlohaVideoGod 65452 -Alois 64905 -Alok 60580 -Alomar 62762 -Alon 59039 -Alone 48605 -Along 46506 -Alongside 58802 -Alonso 54770 -Alonsus 64657 -Alonzo 56862 -Alonzo's 65170 -Aloo 61940 -Alopecia 60405 -Alor 63991 -Alora 62762 -Alot 58417 -Alou 63792 -Aloud 55552 -Alouette 62613 -Alouettes 61256 -Aloysius 63077 -Alp 62917 -Alpaca 58919 -Alpacas 61152 -Alpe 63245 -Alpen 61818 -Alpena 62469 -Alper 62331 -Alpert 60000 -Alpes 62331 -Alpha 45553 -AlphaDEX 64657 -Alphabat 63419 -Alphabeat 63601 -Alphabet 51293 -Alphabetic 59101 -Alphabetical 47859 -Alphabetically 54879 -Alphabetize 60856 -Alphabets 61051 -Alphanumeric 62196 -Alpharetta 53549 -Alphas 64657 -Alphason 65170 -Alphaville 61256 -Alphawatch 64657 -Alphonsa 64905 -Alphonse 62196 -Alphonso 62469 -Alpina 58417 -Alpine 47702 -Alpine's 65452 -Alpinestars 65170 -Alprazolam 57741 -Alps 53882 -Alquiler 56231 -Already 41304 -Alright 54581 -Als 59424 -Alsace 59630 -Alsatian 63601 -Alsip 63601 -Also 37291 -Alsop 65452 -Alsto's 65170 -Alstom 62331 -Alston 56324 -Alt 53081 -Alta 52521 -AltaVista 58802 -Altace 63991 -Altadena 64905 -Altaf 64657 -Altai 60762 -Altair 60238 -Altamira 64905 -Altamont 59101 -Altamonte 57482 -Altar 55299 -Altavista 60856 -Alte 60580 -Altea 60670 -Altec 57122 -Altech 64905 -Alter 51229 -AlterNet 61051 -Altera 60856 -Alterac 54879 -Alteran 64657 -Alteration 56485 -Alterations 54245 -Altercation 62331 -Altered 53470 -Altering 60492 -Alterman 63077 -Alternate 48109 -AlternateColor 65452 -Alternates 65170 -Alternating 59560 -Alternativ 64905 -Alternative 38934 -Alternatively 54643 -Alternatives 50372 -Alternator 56687 -Alternators 59774 -Alternet 63601 -Alters 60856 -Altezza 63245 -Altgeld 63245 -Althea 62613 -Althetics 63792 -Although 38632 -Althouse 60405 -Althusser 64905 -Altick 64423 -Altima 55578 -Altimeter 63991 -Altiris 63419 -Altitude 55014 -Altium 61256 -Altius 60580 -Altix 64423 -Altman 56262 -Altman's 64423 -Altmann 65452 -Alto 49218 -Altogether 59560 -Altoids 64905 -Alton 52832 -Altona 58632 -Altoona 59923 -Altos 58470 -Altova 63245 -Altra 65170 -Altrec 61362 -Altres 63991 -Altria 63245 -Altrincham 62066 -Altruism 64905 -Altura 62917 -Altus 63419 -Alu 60492 -Alucard 62613 -Aluka 40179 -Aluka's 50599 -Alum 58017 -Alumina 60000 -Aluminium 50840 -Aluminum 46508 -Alumna 63419 -Alumnae 59039 -Alumni 43815 -Alumnus 60856 -Alun 59560 -Aluport 65452 -Aluratek 65452 -Alva 60157 -Alvarado 57199 -Alvarez 51867 -Alvarion 63991 -Alvaro 58065 -Alvear 64423 -Alvechurch 65452 -Alveolar 60952 -Alves 58523 -Alvin 51211 -Alvin's 63419 -Alvis 62762 -Alviso 62469 -Alvord 59491 -Alwar 63991 -Always 44421 -Alwyn 65170 -Aly 57566 -Alyce 60762 -Alycia 62331 -Alyn 64905 -Alyson 56791 -Alyssa 52315 -Alzada 65452 -Alzado 64201 -Alzheimer 57358 -Alzheimer's 47279 -Alzheimers 59227 -Am 40484 -AmBisome 62331 -AmCham 64657 -AmEx 61152 -AmSouth 63792 -AmTech 63077 -Ama 60000 -Amabile 63419 -Amabile's 64905 -Amable 65170 -Amada 59774 -Amadeo 64657 -Amadeus 56021 -Amadis 65170 -Amado 62469 -Amador 57653 -Amadou 64201 -Amaenaideyo 61940 -Amaia 59357 -Amal 63245 -Amalaki 61472 -Amalfi 59292 -Amalgamated 61051 -Amalgamation 64905 -Amalia 62762 -Amalie 64423 -Aman 57741 -Aman'Thul 60952 -Amana 56388 -Amanat 61472 -Amanda 45782 -Amanda's 60238 -Amandla 62613 -Amani 62917 -Amanita 62762 -Amano 61051 -Amapedia 50350 -Amapá 60952 -Amar 56935 -Amara 60492 -Amaral 62917 -Amaranth 60321 -Amardeep 65170 -Amare 62469 -Amaretto 62613 -Amari 61940 -Amarillo 54770 -Amarone 63991 -Amaroni 64423 -Amarth 61818 -Amartya 64905 -Amaryl 63245 -Amat 65170 -Amateur 45258 -Amateurs 53762 -Amati 64201 -Amato 59164 -Amato's 64201 -Amatsuki 64423 -Amatuer 60952 -Amaury 64201 -Amaya 65452 -Amaze 63991 -Amazes 65452 -Amazin 64201 -Amazing 44223 -Amazingly 60952 -Amazon 38203 -Amazon's 55154 -AmazonShoes 62762 -AmazonUnbox 62917 -Amazonas 58802 -Amazonia 62469 -Amazonian 60762 -Amazons 62331 -Amb 63419 -Amba 64905 -Ambala 63077 -Ambani 64423 -Ambassadeur 63245 -Ambassador 49353 -Ambassador's 64905 -Ambassadors 53712 -Ambedkar 62762 -Amber 47321 -Amberley 63991 -Ambermile 64423 -Ambiance 56827 -Ambien 49302 -Ambience 57524 -Ambient 50469 -Ambiental 63245 -Ambiente 60238 -Ambiguity 60856 -Ambiguous 61362 -Ambinder 61818 -Ambit 61362 -Ambition 56262 -Ambitions 57160 -Ambitious 60078 -Ambivalence 64201 -Ambler 60952 -Ambleside 62331 -Amblygonite 62469 -Amboseli 65170 -Amboy 56862 -Amboyna 64201 -Ambra 64905 -Ambre 62331 -Ambridge 63601 -Ambrose 54643 -Ambrosia 56972 -Ambrosian 65170 -Ambrosio 57399 -Ambulance 51368 -Ambulances 62613 -Ambulat 63601 -Ambulatory 55849 -Ambullneo 61940 -Ambush 58212 -Ambystoma 65452 -Amcor 60856 -Amd 62762 -Amdocs 64423 -Amdt 65452 -Ame 62066 -Amedeo 63245 -Ameenpur 64423 -Ameer 64905 -Ameiva 65452 -Amelia 52256 -Amelie 60405 -Amen 57358 -Amend 58017 -Amended 52233 -Amending 57318 -Amendment 47147 -Amendment's 62917 -Amendments 51531 -Amends 61472 -Amenities 48204 -Amenity 57741 -Amer 55299 -AmeraDeck 63077 -Amerada 65170 -Amercian 64423 -AmeriCorps 60405 -AmericInn 65170 -America 36076 -America's 42623 -American 32399 -American's 59164 -Americana 53796 -Americanized 64657 -Americano 65452 -Americans 40871 -Americar 65170 -Americas 44029 -Americus 63601 -Amerie 62066 -Amerika 61152 -Ameriplan 61362 -Ameriprise 64657 -AmerisourceBergen 60238 -Amerisuites 64423 -Ameritas 64201 -Ameritrade 63245 -Amerivent 64657 -Ameriwood 58065 -Amerock 58262 -Amersham 54879 -Amerson 64657 -Ames 53712 -Amesbury 63419 -Amethyst 55348 -Amex 58860 -Amgen 60952 -Amgylchedd 63077 -Amharic 58919 -Amherst 53167 -Amherstburg 61584 -Amhrán 65170 -Ami 55299 -Amici 60492 -Amick 64905 -Amicon 65452 -Amicus 60492 -Amid 55226 -Amida 61940 -Amidala 64201 -Amide 62196 -Amidon 63245 -Amidst 59923 -Amie 56388 -Amiga 56356 -Amigo 59923 -Amigos 56420 -Amik 62066 -Amilo 64657 -Amin 57876 -Amina 62917 -Amine 62469 -Amines 63792 -Amino 51293 -Amir 55398 -Amira 62196 -Amis 60078 -Amish 54321 -Amisha 61699 -Amistad 62613 -Amit 54857 -Amitabh 55877 -Amitai 59491 -Amity 58745 -Amityville 62613 -Amjad 63601 -Amlib 62917 -Amlodipine 61584 -Amma 61584 -Amman 56827 -Ammanford 64657 -Ammar 62196 -Ammen 64905 -Ammo 53286 -Ammon 61699 -Ammonia 57199 -Ammonium 57524 -Ammunition 54857 -Amnesia 61584 -Amnesty 53182 -Amniotic 64657 -Amo 59039 -Amoco 59227 -Amodau 63419 -Amoeba 61051 -Amoi 64201 -Amok 64201 -Amon 55604 -Among 43314 -Amongst 56231 -Amor 52327 -Amora 63792 -Amore 58979 -Amores 65170 -Amorous 63792 -Amorphous 57199 -Amortization 59227 -Amory 62196 -Amos 52940 -Amount 46460 -Amounts 56080 -Amour 59702 -Amoxapine 65170 -Amoxicillin 60157 -Amoxil 62066 -Amp 50379 -Amparo 64905 -Amped 61940 -Ampeg 60856 -Amperage 65452 -Ampere 65452 -Ampersand 60321 -Amphenol 60157 -Amphetamine 61472 -Amphibia 64905 -Amphibian 56231 -Amphibians 57923 -Amphibious 61940 -Amphitheater 58212 -Amphitheatre 59357 -Ample 59227 -Amplification 55178 -Amplified 56756 -Amplifier 50591 -Amplifiers 51482 -Amplify 63419 -Amplifying 63792 -Amplitude 57970 -Amplitudes 64423 -Amps 52765 -Amputation 63419 -Amputee 65170 -Amr 58212 -Amravati 65170 -Amrit 60078 -Amrita 56687 -Amritsar 55373 -Amro 60762 -Amsco 65452 -Amsoil 62762 -Amstel 62762 -Amstell 64423 -Amsterdam 46714 -Amsterdam's 64423 -Amstrad 59702 -Amt 61584 -Amtico 61472 -Amtrak 55877 -Amtrak's 64905 -Amu 62469 -Amulet 62613 -Amun 64201 -Amundsen 64201 -Amuro 65170 -Amuse 61584 -Amusement 50484 -Amusements 60405 -Amusing 61362 -Amuso 64657 -Amuzgo 64905 -Amv 65170 -Amway 61051 -Amy 42924 -Amy's 57358 -AmyJane 63991 -Amylase 64657 -Amylin 64905 -Amyloid 61699 -Amyotrophic 62196 -Amyuni 63601 -Amzu 64657 -Amélie 63991 -América 58113 -Amérique 59491 -An 34054 -AnD 64423 -Ana 47120 -Ana's 64905 -Anaad 64905 -Anaahat 64905 -Anabaena 62331 -Anabolic 55552 -Anachronos 64657 -Anaconda 58017 -Anacortes 60762 -Anacostia 63419 -Anadarko 64657 -Anadolu 63792 -Anaemia 62613 -Anaerobic 59357 -Anaesth 61051 -Anaesthesia 55793 -Anaesthesiol 57785 -Anaesthetic 64657 -Anaesthetics 64905 -Anafranil 64905 -Anagram 62917 -Anagrams 63601 -Anaheim 49633 -Anahi 64657 -Anais 60952 -Anak 63601 -Anakin 59227 -Anal 47067 -Analg 59039 -Analgesia 61940 -Analgesic 62196 -Analgesics 62469 -Analog 46871 -AnalogX 64423 -Analogous 61152 -Analogs 64201 -Analogue 55766 -Analogues 63991 -Analogy 60856 -Analy 64201 -Analyse 53646 -Analyser 62196 -Analysers 62196 -Analyses 51406 -Analysing 60856 -Analysis 37885 -AnalysisRumors 61818 -Analyst 44585 -Analysts 51211 -Analyte 63419 -Analytic 56551 -Analytica 64201 -Analytical 48450 -Analytics 48524 -Analyze 53779 -Analyzed 61940 -Analyzer 51590 -Analyzers 57696 -Analyzes 61152 -Analyzing 54581 -Anam 64423 -Anamorphic 60238 -Anand 53271 -AnandTech 61472 -Ananda 59101 -Anansi 61818 -Anant 64657 -Anantapur 63245 -Anantara 65452 -Ananth 64423 -Anantha 64905 -Ananzi 63991 -Anaphothrips 65452 -Anaphylaxis 63792 -Anaplasma 63077 -Anarchism 62762 -Anarchist 59560 -Anarchists 63601 -Anarchy 53882 -Anas 62762 -Anastacia 58212 -Anastasia 54601 -Anastasio 63792 -Anastasius 62917 -Anat 56551 -Anata 63419 -Anathema 62762 -Anatole 65170 -Anatoli 64201 -Anatolia 61152 -Anatolian 60321 -Anatoly 61362 -Anatom 62613 -Anatomia 62917 -Anatomic 58417 -Anatomical 56756 -Anatomy 47097 -Anatomía 63419 -Anau 61818 -Anavini 62469 -Anaximander 63991 -Anaya 60856 -Anbar 61818 -Anberlin 59774 -Anca 63245 -Ancaster 64657 -Ancelotti 65170 -Ancestor 62066 -Ancestors 56170 -Ancestral 56899 -Ancestry 49173 -Anchen 61940 -Anchor 49535 -Anchorage 47529 -Anchored 64657 -Anchoress 62762 -Anchoring 61584 -Anchorman 64657 -Anchors 56324 -Anchovy 65170 -Ancient 46379 -Ancients 58688 -Ancillary 56862 -Ancistrocladus 62762 -Ancona 58523 -Ancor 63245 -And 31406 -Anda 58919 -Andalou 60856 -Andalucia 59292 -Andalucía 62331 -Andalusia 61472 -Andalusian 61152 -Andaman 56356 -Andante 59774 -Andean 57318 -Ander 63419 -Anders 53256 -Andersen 53196 -Andersen's 62613 -Anderson 43273 -Anderson's 56324 -Andersonville 62331 -Andersson 56721 -Anderton 57318 -Anderton's 64905 -Andes 54813 -Andheri 61256 -Andhra 50424 -Andi 57566 -Andiamo 65170 -Andie 61051 -Andina 62469 -Andis 65452 -Ando 58313 -Andorhal 60670 -Andorra 46806 -Andou 63601 -Andover 53630 -Andra 59039 -Andrade 58113 -Andras 63792 -Andre 49262 -Andre's 63419 -Andrea 46296 -Andrea's 61818 -Andreae 63792 -Andreas 46604 -Andreasen 64657 -Andree 64905 -Andreea 60670 -Andreev 61699 -Andrei 53865 -Andrej 62196 -Andres 54023 -Andress 63245 -Andretti 63077 -Andrew 40695 -Andrew's 55738 -AndrewMinter 63419 -Andrews 48399 -Andrey 60000 -Andria 63245 -Andries 60856 -Andriy 63077 -Andro 64201 -Androgen 60670 -Androgens 62762 -Android 49553 -Android's 65170 -Androl 61051 -Andrologia 63245 -Andrology 60405 -Andromeda 59292 -Andropogon 65452 -Andros 63077 -Androscoggin 64423 -Andrus 62917 -Andry 65452 -Andrzej 57785 -André 54643 -Andrés 58523 -Andsnes 63991 -Andy 43112 -Andy's 55578 -Andzel 63991 -Ane 64657 -Anecdotal 65452 -Anecdotes 63077 -Aneel 64423 -Anelka 64905 -Anemia 56356 -Anemone 60000 -Anemos 65452 -Anessa 64657 -Anesth 58113 -Anesthesia 52872 -Anesthesiologist 62917 -Anesthesiologists 61362 -Anesthesiology 54151 -Anesthetic 62762 -Anesthetics 63991 -Anesthetist 62762 -Anesthetists 65170 -Aneta 63792 -Anetheron 59848 -Anetta 61940 -Anette 60321 -Aneurysm 61472 -Aneurysms 63991 -Anew 64423 -AnexTEK 65452 -Anfang 64201 -Anfield 60078 -Anfänger 62917 -Anfängerfehler 63419 -Ang 51502 -AngII 65170 -AngMarTV 63601 -Ange 60856 -Angebot 65170 -Angebote 64905 -Angel 42603 -Angel's 57566 -Angela 47080 -Angela's 60856 -Angeles 38764 -Angelholms 63601 -Angeli 64201 -Angelic 57009 -Angelica 55373 -Angelides 64201 -Angelika 60238 -Angelina 47307 -Angelina's 63792 -Angeline 62331 -Angelini 65170 -Angelique 56551 -Angelis 64657 -Angell 59702 -Angello 65452 -Angelo 51825 -Angelos 63792 -Angelotti 62613 -Angelotti's 62762 -Angelou 61699 -Angels 45488 -Angelus 60157 -Anger 52609 -Angers 60238 -Angewandte 63077 -Angi 64905 -Angie 51166 -Angie's 63792 -Angier 62066 -Angina 61362 -Angiogenesis 59702 -Angiographic 64905 -Angiography 60321 -Angiology 64201 -Angioplasty 62917 -Angiospermae 59848 -Angiotensin 57046 -Angkor 60762 -Anglais 49371 -Angle 50387 -Angled 59774 -Angler 56021 -Angler's 64905 -Anglers 57785 -Angles 55963 -Anglesey 56110 -Angleterre 62331 -Anglia 54399 -Anglian 58688 -Anglican 50292 -Anglicanism 65452 -Anglicans 61584 -Anglicare 64657 -Angling 55500 -Anglo 57199 -AngloINFO 60000 -Anglophone 63792 -Anglos 64905 -Anglès 63077 -Angmar 64905 -Angola 46043 -Angolan 63245 -Angora 61818 -Angra 60762 -Angraecum 60670 -Angry 51052 -Angst 59227 -Angsty 62613 -Anguilla 47184 -Angular 58802 -Angulogerina 64905 -Angus 49796 -Angélica 65452 -Anh 60238 -Anheuser 63077 -Anhui 56791 -Anhydrase 64657 -Anhydride 65452 -Anhydrous 64905 -Ani 57566 -AniLinkz 65170 -Ania 63601 -Anibal 64657 -Anika 62613 -Anil 54519 -Aniline 64905 -Anim 54041 -Anima 60762 -Animal 40496 -Animal's 64657 -Animalia 59039 -Animals 41934 -Animaniacs 64657 -Animas 61940 -Animate 63245 -Animated 48265 -Animation 43947 -Animations 52778 -Animator 55877 -Animators 62469 -Animatrix 60405 -Anime 41908 -AnimeOnDVD 65452 -AnimePile 63991 -Animes 63601 -Animist 60580 -Animorphic 65170 -Animosity 64423 -Anion 60580 -Anionic 64905 -Anions 65452 -Anish 63792 -Anisophyllea 63419 -Anisotropic 59227 -Anisotropy 63245 -AnisotropyThin 59227 -Aniston 43916 -Aniston's 61699 -Anita 48902 -Anita's 63991 -Anixter 61472 -Anja 58688 -Anjali 60405 -Anjan 65170 -Anjelica 64201 -Anji 63991 -Anjos 63245 -Anjouan 65452 -Anjum 63077 -Anka 60492 -Ankara 56420 -Anke 61152 -Ankeny 60670 -Anker 63601 -Ankerberg 62613 -Ankers 64905 -Ankh 63419 -Ankit 63991 -Ankita 62331 -Ankle 51358 -Anklet 63601 -Anklets 61472 -Ankur 61584 -Ankush 64423 -Ankylosing 63601 -Ankündigungen 62469 -Anmelden 62613 -Ann 41469 -Ann's 58212 -Anna 43866 -Anna's 58919 -AnnaSophia 61818 -Annabel 58802 -Annabell 63419 -Annabelle 58065 -Annabels 64657 -Annable 64657 -Annalara 63991 -Annalee 65452 -Annaleigh 62762 -Annaler 60321 -Annales 57696 -Annals 48796 -Annamalai 61152 -Annamaria 64657 -Annan 57566 -Annandale 57831 -Annapolis 51974 -Annas 64657 -Anne 43441 -Anne's 55060 -Annealed 62762 -Annealing 59848 -Annecy 63419 -Annee 64423 -Anneke 64201 -Annem 64201 -Annemarie 62917 -Annenberg 59630 -Annerley 65452 -Annes 59702 -Annette 52074 -Annex 48482 -Annexation 60670 -Annexe 59227 -Annexes 59357 -Annexin 63991 -Annexure 60078 -Anni 59774 -Annick 61584 -Annie 48368 -Annie's 59424 -Annihilation 60952 -Annihilator 65452 -Annika 58745 -Anniston 59292 -Anniversaries 54479 -Anniversary 45041 -Annmarie 63601 -Anno 59702 -Annona 62762 -Annonces 60492 -Annotate 60670 -Annotated 55552 -Annotation 57009 -Annotations 52187 -Annoucements 58745 -Announce 50234 -Announced 51415 -Announcement 46304 -Announcements 40473 -Announcer 60321 -Announces 43002 -Announcing 55299 -Annoy 63991 -Annoyances 61940 -Annoyed 63991 -Annoying 55992 -Annu 57653 -Annuaire 61472 -Annual 38972 -Annualized 59923 -Annually 56791 -Annuals 59774 -Annuities 56356 -Annuity 55373 -Annular 63991 -Annulment 63077 -Annum 63245 -Annunciation 64201 -Annville 65170 -Anny 64657 -Année 63991 -Ano 60670 -Anode 63601 -Anodic 64657 -Anodized 62066 -Anodizing 65452 -Anointed 62917 -Anointing 63792 -Anois 59630 -Anoka 63601 -Anolon 59923 -Anomalies 57566 -Anomalous 59101 -Anomaly 59491 -Anon 57399 -Anonidium 63245 -Anonym 64423 -Anonymity 61818 -Anonymous 42202 -AnonymousFinder 64657 -Anonymously 58065 -Anoop 65452 -Anopheles 59774 -Anorak 64905 -Anorexia 58919 -Anorganische 65452 -Anorthosis 62196 -Anos 65452 -Another 39400 -Anouk 62762 -Anousheh 64657 -Anping 62066 -Anritsu 63792 -Ans 63419 -Ansa 65452 -Ansar 61051 -Ansari 59848 -Anse 64657 -Ansearch 62469 -Ansel 60238 -Ansell 62762 -Anselm 60762 -Anselmo 61584 -Anseriformes 63991 -Ansett 52832 -Ansley 60670 -Anson 56862 -Ansonia 63419 -Anstey 64423 -Answer 36176 -AnswerBank 63601 -Answerbag 52399 -Answered 50033 -Answerer 51166 -Answerers 58979 -Answering 53438 -Answers 36759 -AnswrMe 63245 -Ansys 64657 -Ant 51330 -Antabuse 64423 -Antacids 61256 -Antagonism 64657 -Antagonist 59923 -Antagonists 61940 -Antal 63419 -Antalya 57785 -Antananarivo 64905 -Antara 64423 -Antarctic 51541 -Antarctica 48143 -Antares 60157 -Antari 65452 -Antaris 64657 -Antartica 64201 -Ante 59227 -Anteater 62331 -Antebellum 64201 -Antec 53934 -Antec's 65452 -Antecedents 64423 -Antelope 57199 -Antena 63077 -Antenatal 61256 -Antenna 49207 -Antennae 63077 -Antennas 53182 -Anterior 54380 -Antex 62469 -Anthea 64423 -Anthem 52509 -Anthems 58017 -Anthephora 63792 -Anthericum 63601 -Anthocleista 62469 -Anthologies 57524 -Anthology 52447 -Anthony 42946 -Anthony's 57399 -Anthospermum 64905 -Anthracene 64423 -Anthracite 60670 -Anthrax 57318 -Anthro 62917 -AnthroSource 65170 -Anthropogenic 65170 -Anthropol 64905 -Anthropological 57696 -Anthropologie 56687 -Anthropologist 61818 -Anthropologists 64201 -Anthropology 49713 -Anthropometric 60952 -Anthropometry 61152 -Anthroposophical 65452 -Anti 46909 -AntiPatterns 64905 -AntiSpam 60856 -AntiSpyware 58365 -AntiVir 58745 -AntiVirus 51721 -Antibac 64423 -Antibacterial 58860 -Antibes 63077 -Antibiot 63601 -Antibiotic 54992 -Antibiotics 54727 -Antibodies 50040 -Antibody 52351 -Antica 65170 -Anticancer 59774 -Antichrist 61362 -Anticipate 63245 -Anticipated 57482 -Anticipating 61940 -Anticipation 60078 -Anticipatory 60580 -Antico 63601 -Anticoagulant 63792 -Anticonvulsants 64201 -Anticorruption 63792 -Anticosti 65452 -Antics 58577 -Antidepressant 61362 -Antidepressants 58162 -Antidote 62331 -Antidotes 64657 -Antidumping 64201 -Antietam 65170 -Antifreeze 62331 -Antifungal 60492 -Antifungals 61699 -Antigen 54170 -Antigenic 61472 -Antigens 58860 -Antigone 63792 -Antigua 46451 -Antihistamines 63419 -Antihypertensive 61152 -Antik 64201 -Antillana 64201 -Antillas 63419 -Antilles 46797 -Antilock 65452 -Antimalarial 64657 -Antimicrob 56080 -Antimicrobial 53679 -Antimima 64657 -Antimony 63792 -Antineoplastic 60492 -Antioch 55604 -Antioxidant 56827 -Antioxidants 56827 -Antipode 63601 -Antipolis 64423 -Antiprotozoals 64905 -Antipsychotic 64905 -Antipsychotics 64657 -Antiqbook 61362 -Antiqua 61472 -Antiquarian 58577 -Antiquariat 63419 -Antique 46772 -Antiqued 60078 -Antiques 45751 -Antiquities 58919 -Antiquity 59560 -Antiretroviral 62469 -Antisense 59039 -Antiseptic 64657 -Antiserum 62196 -Antismoking 62917 -Antisocial 60405 -Antisoma 64201 -Antispam 63792 -Antispyware 61152 -Antitheses 65170 -Antitrust 53038 -Antitumor 61818 -Antiviral 58470 -Antivirals 60762 -Antivirus 45347 -Antiwar 64657 -Antje 64423 -Antler 58212 -Antlers 62196 -Antofagasta 65452 -Antoine 53746 -Antoinette 57238 -Antolin 64657 -Anton 51122 -Antone 64905 -Antonella 57358 -Antoni 60238 -Antonia 57318 -Antonidas 60856 -Antonie 63792 -Antonin 60238 -Antonina 64905 -Antonio 42452 -Antonio's 61256 -Antonios 65452 -Antonis 63245 -Antonius 63601 -Antonov 58979 -Antony 54581 -Antonyms 60238 -Antrim 53934 -Ants 52435 -Antsy 64905 -Antti 60078 -Antwan 64657 -Antwerp 55992 -Antwerpen 62196 -Antworten 59560 -António 60157 -Anu 59164 -Anub'arak 60952 -Anubis 62613 -Anuj 64423 -Anuncie 65452 -Anuncio 63419 -Anuncios 64201 -Anunturi 62196 -Anup 64201 -Anupam 58523 -Anuradha 61472 -Anurag 62469 -Anus 61362 -Anusara 62917 -Anuschka 62917 -Anushka 61051 -Anvil 57278 -Anvilmar 59848 -Användning 60762 -Anwar 57566 -Anxiety 45054 -Anxious 60321 -Any 37029 -AnyDVD 57046 -AnyWho 61051 -Anya 56827 -Anybody 51060 -Anycool 61940 -Anydvd 64905 -Anyhow 62762 -Anymore 57876 -Anyone 42380 -Anyplace 64657 -Anything 46503 -Anytime 50040 -Anyway 51814 -Anyways 58577 -Anywhere 47907 -Anyword 63245 -Anz 62331 -Anza 60856 -Anzac 60405 -Anzeige 63991 -Anzu 64201 -Análisis 56899 -Ao 55711 -AoC 61152 -AoE 63601 -AoPSWiki 63245 -Aoccdrnig 65452 -Aoi 61818 -Aoife 62762 -Aoki 57199 -Aol 61940 -Aomori 61152 -Aon 57970 -Aone 63419 -Aopen 64201 -Aor 63077 -Aorta 63601 -Aortic 56200 -Aoshi 60952 -Aoshima 64657 -Aosta 62196 -Aotearoa 57970 -Aoyama 61362 -Ap 57009 -ApEn 60580 -ApH 65452 -ApJ 61256 -ApS 61940 -Apa 60856 -Apacer 64201 -Apache 46868 -Apacs 63601 -Apalachee 65452 -Apalachicola 64657 -Aparato 55474 -Aparna 64905 -Aparrtment 64423 -Apart 48436 -Apartado 61051 -Apartamentos 63601 -Apartheid 57524 -Apartheid's 65452 -Aparthotel 59774 -Apartmani 63077 -Apartment 44373 -Apartments 40827 -Apathy 59101 -Apatow 63245 -Apc 65170 -Apdusa 63419 -Ape 55226 -ApecSoft 65452 -Apeldoorn 64905 -Aperitif 65452 -Apertura 64423 -Aperture 52074 -Apes 58577 -Apex 51303 -ApexSQL 60321 -Apexi 65452 -Apgar 60157 -Aphanizomenon 62613 -Aphex 60580 -Aphids 63077 -Aphis 65170 -Aphodius 60321 -Aphrodite 59227 -Api 59164 -Apiary 62613 -Apical 60762 -Apidos 65170 -Apis 62917 -Aplastic 63792 -Aplicaciones 61940 -Aplications 60952 -Aplicação 63792 -Aplus 65452 -Aplysia 63601 -Apmis 63601 -Apna 61699 -Apnea 56585 -Apo 61362 -Apocalypse 53316 -Apocalyptic 62762 -Apocalyptica 56518 -Apocalypto 65452 -Apocrine 63991 -Apogee 59848 -Apolipoprotein 60580 -Apollo 48169 -Apollo's 63991 -Apollonia 63077 -Apolo 63792 -Apologetics 57440 -Apologies 54770 -Apologize 58417 -Apologizes 62331 -Apology 57653 -Aponte 63991 -Apoorva 64423 -Apophis 65452 -Apopka 59227 -Apoptosis 54969 -Apoptotic 60762 -Apoptygma 63419 -Apostle 56080 -Apostles 57970 -Apostolic 57199 -Apostolos 63792 -Apotex 62469 -Apothecary 59923 -App 46167 -AppLoop 65452 -AppScout 59630 -AppStore 61699 -Appa 65452 -Appalachia 61152 -Appalachian 52339 -Appaloosa 54581 -Appar 62066 -Apparatus 50726 -Appareil 55552 -Appareils 65170 -Apparel 41475 -Apparels 63077 -Apparent 57009 -Apparently 50270 -Apparition 64201 -Appartements 64905 -Appartment 64657 -Appeal 47314 -Appealing 59357 -Appeals 45984 -Appear 53407 -Appearance 50220 -Appearances 52315 -Appeared 61051 -Appearing 58919 -Appears 51026 -Appel 62469 -Appellant 53970 -Appellant's 59923 -Appellants 59164 -Appellate 52712 -Appellation 64201 -Appellations 57399 -Appellee 60762 -Appellees 65452 -Append 61472 -AppendToTextList 65452 -Appendices 56140 -Appendix 45143 -Appendixes 61051 -Appetit 58523 -Appetite 55684 -Appetizer 56935 -Appetizers 54133 -Appl 49070 -Applauds 62917 -Applause 58802 -Apple 37447 -Apple's 49751 -AppleCare 61699 -AppleHDA 65452 -AppleOne 61051 -AppleScript 59227 -AppleScripts 63792 -AppleSource 59923 -AppleTV 60670 -AppleWorks 60492 -Applebaum 62066 -Applebee's 58262 -Applebees 63991 -Appleby 59227 -Applegat 61051 -Applegate 51888 -Applegate's 60856 -Appleone 62469 -Apples 52872 -Applesauce 63792 -Applescript 63601 -Appleseed 61584 -Applet 56972 -Appleton 53066 -Applets 62066 -Applewood 64423 -Appleyard 62613 -Applian 63991 -Appliance 47968 -Appliances 42342 -Applic 62331 -Applicability 59101 -Applicable 50799 -Applicant 49847 -Applicant's 57970 -Applicants 49726 -Application 38077 -Applications 39184 -Applicaton 65452 -Applicator 57831 -Applicators 60856 -Applied 42711 -Applies 55992 -Appling 64201 -Applique 61256 -Appliquée 59491 -Apply 41571 -Applying 49572 -Appoint 62196 -Appointed 54041 -Appointee 65170 -Appointing 64905 -Appointment 48624 -Appointments 50815 -Appoints 52635 -Appomattox 61362 -Apportionment 63419 -Appraisal 47248 -Appraisals 55423 -Appraise 59424 -Appraised 62469 -Appraiser 54902 -Appraisers 54059 -Appreciate 57238 -Appreciated 62331 -Appreciating 65170 -Appreciation 51034 -Appreciative 61940 -Apprendi 62917 -Apprentice 47980 -Apprentices 61051 -Apprenticeship 56110 -Apprenticeships 58470 -Approach 45400 -Approaches 51550 -Approaching 54664 -Appropriate 50766 -Appropriately 63991 -Appropriateness 62331 -Appropriation 58313 -Appropriations 54023 -Approval 47050 -Approvals 54245 -Approve 51550 -Approved 45008 -Approves 57318 -Approving 57278 -Approx 55877 -Approximate 52699 -Approximately 48624 -Approximation 56324 -Apps 42854 -Appt 65452 -Appz 60321 -Appétit 49828 -Apr 36127 -Apraxia 63991 -Aprendizaje 64657 -Apres 62762 -Apress 60856 -Apricorn 62613 -Apricot 56972 -Apricots 64423 -April 33279 -April's 61051 -Aprile 65170 -Aprilia 52791 -Apron 52256 -Aprons 55526 -Apropo 63419 -Apropos 60492 -Après 64423 -Apsara 62196 -Apsiphortica 62917 -Apsley 64905 -Apso 63991 -Apt 53517 -Aptana 63419 -Aptitude 59630 -Aptos 62331 -Apts 56050 -Apu 65452 -Apulia 62762 -Aq 65170 -Aqaba 64201 -Aqua 48791 -AquaLogic 61362 -AquaScat 65452 -AquaStar 62066 -Aquabot 65170 -Aquaculture 54041 -Aqualisa 63245 -Aqualung 63245 -Aquaman 63419 -Aquamarine 60670 -Aquamite 61472 -Aquapac 62762 -Aquaphor 62613 -Aquaria 61362 -Aquarian 61362 -Aquarion 64201 -Aquarium 48548 -Aquariums 55657 -Aquarius 51700 -Aquatic 50484 -Aquatica 63419 -Aquatics 53746 -Aquavision 64657 -Aquazone 64423 -Aqueduct 62917 -Aqueous 56080 -Aqui 60856 -Aquifer 59424 -Aquifers 63601 -Aquila 61472 -Aquileia 65452 -Aquinas 57122 -Aquino 58919 -Aquisition 65452 -Aquitaine 59774 -Aquos 59848 -Aquí 65452 -Ar 51963 -ArKO 60580 -ArXiv 65452 -Ara 56687 -Arab 42071 -Arabella 60157 -Arabesque 62762 -Arabi 65170 -Arabia 44406 -Arabia's 60157 -Arabian 49400 -Arabians 64905 -Arabic 45597 -Arabica 62469 -Arabidopsis 52062 -Arabiya 63792 -Arable 64423 -Arabs 55657 -Arachidonic 62917 -Arachne 65170 -Arad 62469 -Arado 64201 -Arafat 58860 -Arafat's 63419 -Aragon 58065 -Aragonese 64423 -Aragonés 55711 -Aragorn 60670 -Aragón 63419 -Arai 59039 -Arakawa 62331 -Araki 63792 -Aral 62196 -Araldite 62331 -Aram 58262 -Arama 63077 -Aramaic 58688 -Aramark 61699 -Aramis 61940 -Aran 60238 -Arana 65170 -Aranda 63792 -Araneta 63991 -Aranjuez 62762 -Aransas 59491 -Arapaho 59424 -Arapahoe 57696 -Ararat 61472 -Aras 61362 -Arash 59101 -Arashi 61256 -Arathi 55684 -Arathor 59164 -Araujo 61818 -Arava 63245 -Aravind 63245 -Arawaza 62613 -Araya 63245 -Arbeit 61940 -Arbiter 60580 -Arbitrage 61362 -Arbitrarily 65452 -Arbitrary 58577 -Arbitration 51721 -Arbitrator 61940 -Arbitrators 64657 -Arbitron 65452 -Arbon 64201 -Arbonne 64201 -Arbor 50915 -Arboretum 56420 -Arboriculture 65170 -Arborist 63991 -Arbors 61472 -Arbour 59039 -Arbre 60492 -Arbroath 59923 -Arbuckle 60856 -Arbutus 65452 -Arby 61362 -Arby's 61256 -Arc 51434 -Arc'teryx 62469 -ArcGIS 58919 -ArcIMS 65452 -ArcSoft 64423 -ArcView 63245 -Arca 64905 -Arcachon 60856 -Arcade 44597 -Arcades 59923 -Arcadia 53517 -Arcadian 63245 -Arcana 59630 -Arcane 56721 -Arcanum 65170 -Arcata 57876 -Arcatraz 62762 -Arce 65170 -Arcelie 65452 -Arcelor 64201 -ArcelorMittal 64657 -Arch 45343 -ArchLord 61584 -Archaea 60492 -Archaeal 64905 -Archaeol 63419 -Archaeologica 63419 -Archaeological 53301 -Archaeologist 61256 -Archaeologists 61152 -Archaeology 50249 -Archaeometry 63419 -Archaic 62196 -Archana 63601 -Archangel 60856 -Archbishop 52256 -Archbishop's 64423 -Archdeacon 65452 -Archdiocese 56356 -Archduke 61818 -Arche 59357 -Arched 65452 -Archeological 61362 -Archeology 60580 -Archer 51825 -Archer's 63245 -Archerd 61152 -Archers 57084 -Archery 50101 -Arches 57046 -Archetype 61256 -ArchiCAD 62066 -Archibald 56827 -Archicathedral 64905 -Archie 53934 -Archie's 60321 -Archiform 65452 -Archimedes 60952 -Archimonde 60157 -Archinect 65170 -Archipelago 58065 -Archiplanet 59424 -Architect 48600 -Architect's 62762 -Architects 48806 -Architectural 45268 -Architecture 42962 -ArchitectureWeek 63419 -Architectures 55578 -Architektur 63991 -Archiv 59630 -Archival 54519 -Archive 35367 -Archived 48038 -Archiver 59560 -Archives 37102 -Archivestuff 65170 -Archiving 54170 -Archivio 65452 -Archivist 59227 -Archivists 61584 -Archivo 60321 -Archivos 62762 -Archlord 63601 -Archon 63991 -Archos 54969 -Archulet 61051 -Archuleta 53167 -Archway 61362 -Archwilio'r 63601 -Arcilla 63792 -Arco 59357 -Arcola 63792 -Arcos 63792 -Arcs 61940 -Arcsin 65170 -Arcteryx 64905 -Arctic 48505 -Arctica 63792 -Arctium 63077 -Arctostaphylos 64423 -Arcturius 60492 -Arcturus 64657 -Arcuri 64905 -Ard 59039 -Ardara 64423 -Ardell 62762 -Arden 52661 -Ardennes 63419 -Ardent 64905 -Ardleigh 63792 -Ardmore 60492 -Ardour 64905 -Ards 64657 -Ardsley 61699 -Arduino 63245 -Ardy 63601 -Are 35570 -Area 36362 -Area's 58212 -Areal 64905 -Areas 43169 -Arebbush 64905 -Areca 65452 -Arecibo 65170 -Aredhel 64657 -Aredia 64905 -Aree 65170 -Areeya'S 64905 -Aref 63991 -Arellano 62196 -Aren't 52752 -Aren'ta 61051 -Arena 44563 -Arenal 63077 -Arenas 53095 -Arends 65170 -Arendt 64657 -Arenson 62917 -Arequipa 59424 -Ares 54835 -Arete 63991 -Aretha 55578 -Arey 59923 -Arezzo 61818 -Arg 55711 -Argent 56021 -Argenta 64905 -Argentina 41598 -Argentina's 59101 -Argentine 52927 -Argentinean 59560 -Argentinian 57970 -Argentinien 64657 -Argentino 60762 -Argento 60157 -Argento's 65170 -Arginine 59702 -Argo 59491 -ArgoUML 64423 -Argon 58113 -Argonauts 59101 -Argonne 58212 -Argos 55877 -Argosy 57524 -Arguably 62196 -Argue 61362 -Argued 59491 -Arguing 60492 -Argument 55738 -Arguments 55398 -Argus 53952 -Argyle 55084 -Argyll 55766 -Arh 63077 -Arhanes 64657 -Arhiva 60157 -Arhontiko 64905 -Ari 54264 -Aria 52303 -Ariadne 62196 -Arial 54770 -Arian 63245 -Ariana 59101 -Ariane 60856 -Arianna 58313 -Arianne 64201 -Arias 58919 -Ariat 61940 -Ariba 63419 -Arica 63991 -Aricept 63077 -Arid 58470 -Aridi 62066 -Arie 59702 -Ariel 51783 -Ariel's 63245 -Arielle 60492 -Aries 52085 -Arif 60405 -Arik 59923 -Arima 62196 -Arimidex 62762 -Arindam 65452 -Aris 61818 -Arise 61940 -Arising 59774 -Arison 64657 -Arist 63601 -Arista 60000 -Aristida 62066 -Aristides 62917 -Aristo 64657 -Aristocort 64657 -Aristocrat 60492 -Aristolochia 65452 -Ariston 60157 -Aristotelian 59227 -Aristotle 56420 -Aristotle's 64423 -Arithmetic 56791 -Ariza 60321 -Arizona 40249 -Arizona's 57084 -Arjan 60492 -Arjen 63245 -Arjun 58162 -Arjuna 62066 -Ark 52399 -Arka 64423 -Arkadelphia 61699 -Arkady 65170 -Arkanoid 62331 -Arkansas 41953 -Arkh 63601 -Arkham 62331 -Arkin 63792 -Arkiv 65170 -Arkon 63601 -Arkwright 63245 -Arlanda 64657 -Arlberg 64657 -Arle 59923 -Arlee 64423 -Arlen 58417 -Arlene 55578 -Arles 63991 -Arline 64657 -Arlington 47272 -Arlo 62762 -Arlyn 60238 -Arm 47943 -Arm's 61584 -ArmA 64905 -Arma 64657 -Armada 53331 -Armadale 61362 -Armadillo 58979 -Armageddon 55684 -Armagh 53813 -Armagnac 64905 -Armalite 63601 -Armament 61940 -Arman 63419 -Armand 55992 -Armando 55226 -Armani 51752 -Armas 62469 -Armature 64657 -Armband 61699 -Armbar 65170 -Armchair 56972 -Armchairs 64905 -Armed 47500 -Armen 61940 -Armenia 46040 -Armenian 51415 -Armenians 59848 -Armfield 65170 -Armidale 61256 -Armies 59292 -Armin 54992 -Arming 63245 -Arminia 64905 -Armistead 65452 -Armistice 61256 -Armitage 57696 -Armoire 56972 -Armoires 60670 -Armor 49285 -Armored 53377 -Armorial 53361 -Armory 53988 -Armour 51293 -Armoured 63077 -Armpit 64423 -Armrest 64905 -Arms 44968 -Armsby 60321 -Armstrong 47656 -Armstrong's 61940 -Armwood 64657 -Army 41284 -Army's 56551 -Arnage 63991 -Arnaud 56827 -Arnaz 65170 -Arndale 64423 -Arndt 60762 -Arne 57482 -Arnel 63245 -Arnelle 65452 -Arnett 60670 -Arnette 63991 -Arnheim 63601 -Arnhem 57876 -Arnica 62917 -Arnie 58262 -Arnis 63792 -Arno 58262 -Arnold 46918 -Arnold's 59630 -Arnon 63991 -Arnot 62762 -Arnott 63792 -Aro 62917 -Arocha 65452 -Aroclor 61699 -Aroha 65452 -Aroma 53917 -Aromas 62613 -Aromat 65452 -Aromatase 65170 -Aromatherapy 53066 -Aromatic 56200 -Aromatics 62917 -Aron 58162 -Arona 62762 -Aronson 61051 -Aroostook 64201 -Aroq 65452 -Arora 56551 -Aros 62917 -Around 43090 -Arousal 62469 -Arp 63077 -Arpaio's 65452 -Arps 61699 -Arpt 63991 -Arqiva 65452 -Arquette 60492 -Arquivo 58313 -Arquivos 64905 -Arr 61699 -Arraignment 63077 -Arran 58577 -Arrancar 64423 -Arrange 54643 -Arranged 56324 -Arrangement 51122 -Arrangements 51321 -Arranger 60762 -Arranges 65452 -Arranging 59560 -Array 49886 -ArrayList 64423 -Arrays 55154 -Arrears 60580 -Arrest 52521 -Arrested 51008 -Arrests 54664 -ArrffdudeInc 63077 -Arrhenius 59101 -Arrhythmia 63792 -Arrhythmias 62469 -Arriba 61152 -Arrieta 65170 -Arrigo 61818 -Arrington 60762 -Arriola 65452 -Arriva 63245 -Arrival 49246 -Arrivals 49157 -Arrive 53865 -Arrived 55877 -Arrives 54902 -Arriving 55154 -Arrogance 61940 -Arrogant 61699 -Arron 63601 -Arrow 46395 -Arrowhead 55107 -Arrows 54459 -Arrowsmith 63245 -Arrowtown 63792 -Arroyo 54479 -Ars 56140 -Arse 61472 -Arsenal 48741 -Arsenal's 62613 -Arsenault 63601 -Arsene 61152 -Arseneau 65452 -Arsenic 57046 -Arsenio 64201 -Arshad 62066 -Arshavin 64657 -Arson 58577 -Art 35020 -Art's 60238 -ArtForum 54114 -ArtMoney 62613 -ArtServe 61472 -Arta 64201 -Artabotrys 63991 -Artbeats 58313 -Artbook 63991 -Artbox 64201 -Arte 55178 -Arteaga 65452 -Artech 64423 -Artefacts 61362 -Artem 63601 -Artemia 64423 -Artemio 65170 -Artemis 54133 -Artemisia 60321 -Arterial 54581 -Arteries 61362 -Arterioscler 63991 -Arteriovenous 62196 -Artery 55500 -Artes 60670 -Artesanato 64657 -Artesia 60000 -Artesian 61940 -Artest 62196 -Arteta 63601 -Artfact 65452 -Artful 54096 -Artfully 64201 -Arthas 59424 -Arthouse 63991 -Arthritis 48866 -Arthroplasty 63245 -Arthropoda 59848 -Arthropods 63077 -Arthroscopic 62762 -Arthroscopy 62196 -Arthur 44608 -Arthur's 57923 -Arthurian 59101 -Arthurs 63419 -Arti 62469 -Artic 60856 -Artichoke 59424 -Artichokes 64657 -Article 33581 -Article's 61940 -Articles 31314 -Articole 64423 -Articolo 64201 -Articulate 64201 -Articulated 60856 -Articulating 64423 -Articulation 62066 -Artie 59227 -Artif 63991 -Artifact 59702 -Artifacts 56293 -Artificial 48080 -Artikel 57278 -Artillery 55323 -Artimus 64905 -Artis 60952 -Artisan 53211 -ArtisanNewsService 62762 -Artisans 60157 -Artist 41197 -Artist's 52648 -ArtistOrMaker 63792 -Artista 60492 -Artistas 62613 -Artiste 63991 -Artistes 62613 -Artistic 51358 -Artistry 60762 -Artists 40751 -Arto 63245 -Artois 61362 -Artprice 56899 -Artrella 64657 -Arts 34324 -Artsopolis 65170 -Artsy 63077 -Artur 61362 -Arturia 64423 -Arturo 57122 -Artwork 49240 -Artworker 64201 -Artworks 57876 -Arty 61152 -Artz 64201 -Artículo 62762 -Artículos 63245 -Aru 62331 -Aruba 46584 -Aruban 64657 -Arugula 62613 -Arun 55299 -Aruna 63792 -Arunachal 59039 -Arunachala 60670 -Arundel 56452 -Arundhati 63792 -Arup 62331 -Arusha 63077 -Arvada 59164 -Arvin 62917 -Arvind 59560 -Arvo 65170 -Ary 65170 -Arya 58860 -Aryan 60157 -Aryans 65170 -Arye 64201 -Arygos 60492 -Arzneimittelforschung 62917 -Arztl 63601 -As 32640 -AsIII 62917 -AsO 64201 -AsV 59164 -Asa 56080 -Asad 62613 -Asada 63245 -Asahi 60405 -Asahidake 64423 -Asai 64657 -Asakura 65170 -Asakusa 63991 -Asam 65452 -Asami 64423 -Asan 64905 -Asano 63245 -Asante 60492 -Asap 63601 -Asaph 62469 -Asashoryu 62613 -Asatte 64657 -Asbestos 46757 -Asbestosis 55738 -Asbury 55766 -Asc 59923 -Ascari 63601 -Ascaris 59560 -Ascend 62613 -Ascendant 63419 -Ascending 46729 -Ascendo 58860 -Ascension 54360 -Ascent 57318 -Asch 64423 -Ascher 63792 -Ascii 60078 -Ascites 61362 -Ascomycetes 63991 -Ascorbic 59774 -Ascot 54902 -Ascott 65170 -Asda 57970 -Asean 62917 -Aseptic 63077 -Asesinas 62917 -Asgard 62196 -Asghar 65170 -Ash 47752 -Ash's 60405 -Asha 58162 -Ashamed 63991 -Ashampoo 59164 -Ashanti 56485 -Ashbourne 62196 -Ashbrook 64423 -Ashburn 59164 -Ashburton 58212 -Ashbury 62613 -Ashby 56652 -Ashcraft 63245 -Ashcroft 58113 -Ashdown 60952 -Ashe 57084 -Asheboro 62196 -Ashen 62331 -Ashenvale 60321 -Asher 55766 -Asheron's 62613 -Ashes 52118 -Asheville 52913 -Ashfield 59039 -Ashford 52791 -Ashgabat 65452 -Ashgrove 65170 -Ashish 58365 -Ashkenazi 62917 -Ashland 51793 -Ashlee 52845 -Ashleigh 56827 -Ashley 44522 -Ashley's 58577 -Ashlin 60000 -Ashlyn 64423 -Ashlynn 62196 -Ashman 65170 -Ashmore 57831 -Ashok 54924 -Ashoka 60000 -Ashore 63601 -Ashpalt 65452 -Ashraf 60492 -Ashram 61940 -Ashridge 60762 -Ashtabula 60670 -Ashtanga 62613 -Ashtech 63601 -Ashton 50726 -Ashtray 62762 -Ashtrays 64201 -Ashu 64905 -Ashutosh 63991 -Ashwagandha 63991 -Ashwell 59491 -Ashwini 65452 -Ashwood 64905 -Ashworth 55552 -Asi 61152 -Asia 38798 -Asia's 55448 -AsiaInfo 61818 -AsiaPulse 64423 -AsiaRooms 58919 -AsiaStock 62196 -Asiaing 61256 -Asian 39699 -AsianFanatics 63419 -Asiana 62066 -Asians 54685 -Asiantaeth 63601 -Asiarooms 62917 -Asiatic 59292 -Asics 57238 -Aside 51835 -Asides 62196 -Asie 63077 -Asien 64423 -Asif 58313 -Asim 63419 -Asimov 64423 -Asin 63077 -Ask 37705 -AskART 60580 -AskMeFi 62917 -AskMen 63419 -Asked 41592 -Asker 52141 -Asker's 49639 -Askew 62469 -Askin 63792 -Asking 49602 -Askmewhats 62469 -Asko 61940 -Asks 55398 -Askville 55398 -Aslam 62196 -Aslan 62066 -Asleep 58365 -Asli 65452 -Asma 61152 -Asmara 62066 -Asn 62066 -Asnault 65452 -Asner 65170 -Aso 58979 -Asoc 64905 -Asociación 62331 -Asoka 65452 -Asolo 63077 -Asp 56972 -Asparagus 57566 -Aspartate 64905 -Aspartic 63419 -Aspect 49553 -Aspects 50966 -Aspen 51193 -AspenTech 64423 -Aspens 60762 -Asperger 62331 -Asperger's 59630 -Aspergers 64201 -Aspergillosis 63245 -Aspergillus 55107 -Asphalt 53038 -Aspheric 63419 -Aspirant 64905 -Aspirated 60580 -Aspiration 60078 -Aspirations 62196 -Aspire 51680 -Aspirin 57566 -Aspiring 59702 -Aspley 65452 -Asplund 65170 -Aspyr 64423 -Asquith 61472 -Asrock 63601 -Ass 46859 -Ass'n 64657 -AssHoleFever 64423 -AssMan 60762 -Assad 60670 -Assaf 63077 -Assam 54059 -Assamese 59164 -Assasins 63792 -Assassin 54857 -Assassin's 56452 -Assassination 57653 -Assassins 57696 -Assault 48482 -Assaulted 64201 -Assaults 64201 -Assay 51856 -Assays 55631 -Assemblage 61152 -Assemble 58162 -Assembled 57653 -Assembler 57876 -Assembles 64423 -Assemblies 53038 -Assembling 60157 -Assembly 43497 -Assembly's 62917 -Assemblyman 59424 -Assemblymember 60856 -Assemblywoman 65170 -Assen 65170 -Assent 63991 -Assert 65452 -Asserting 65170 -Assertiveness 65170 -Asses 57524 -Assess 53565 -Assessable 65170 -Assessed 55423 -Assesses 64905 -Assessing 51008 -Assessment 42081 -Assessments 51078 -Assessor 53182 -Assessor's 57653 -Assessors 57831 -Asset 45823 -Assets 48464 -Asshole 59039 -Assholes 62762 -Assi 64905 -Assia 63419 -Assign 57566 -Assigned 52484 -Assignee 56324 -Assignees 61818 -Assigning 55906 -Assignment 48801 -Assignments 52221 -Assigns 60670 -Assimilation 55373 -Assisi 59164 -Assist 49417 -Assistance 42718 -Assistant 40240 -Assistants 52291 -Assisted 50615 -Assisting 54706 -Assistive 54835 -Assists 55474 -Assn 57009 -Assoc 50328 -Assocation 63077 -Associate 43526 -Associate's 57238 -Associated 42715 -AssociatedPress 58745 -Associates 42442 -Associating 64423 -Association 36879 -Association's 53865 -Associations 47706 -Associative 62196 -Assorted 49429 -Assortment 57524 -Assortments 63601 -Assos 63245 -Asst 56791 -Assume 52244 -Assumed 60078 -Assumes 60762 -Assuming 51043 -Assumption 56021 -Assumptions 56721 -Assurance 48055 -Assurances 58919 -Assurant 62762 -Assure 59227 -Assured 57609 -Assuring 63245 -Assy 57482 -Assyrian 57970 -Assyrians 65452 -Assyriska 62762 -Ast 61362 -Asta 65170 -Astaire 62331 -Astalavista 65170 -Astana 61256 -Astaxanthin 63991 -Astbury 61051 -Astepro 65452 -Aster 57970 -Asteraceae 64201 -Asterisk 53970 -Asterisks 60762 -Asterix 61699 -Asteroid 55849 -Asteroids 59292 -Asthma 48576 -Asthmatic 64905 -Asti 65452 -Astigmatism 60492 -Astin 64201 -Astley 58860 -Aston 48524 -Astonish 64201 -Astonishing 62066 -Astor 56899 -Astor's 65452 -Astoria 53988 -Astounding 62762 -Astra 53138 -AstraZeneca 57238 -Astragalus 61699 -Astral 54946 -Astras 65452 -Astraware 57358 -Astribank 63245 -Astrid 58802 -Astringent 65170 -Astro 52534 -Astrobiology 59357 -Astroglide 62469 -Astrologer 65452 -Astrological 61051 -Astrology 49152 -Astron 61362 -Astronaut 57831 -Astronautics 59491 -Astronauts 58802 -Astronomer 60670 -Astronomers 60405 -Astronomical 52752 -Astronomy 47702 -Astronuc 62762 -Astroparticle 58979 -Astrophotography 62917 -Astrophysical 57399 -Astrophysics 52187 -Astros 53779 -Astrum 63792 -Asturian 63991 -Asturianu 53630 -Asturias 59702 -Astute 64657 -Asuka 59357 -Asuncion 63077 -Asura 65452 -Asus 47559 -Asustek 63792 -Asylum 49802 -Asymmetric 56140 -Asymmetrical 61940 -Asymmetry 61818 -Asymptomatic 61584 -Asymptotic 58417 -Asynchronous 56518 -Aszune 64423 -At 34134 -Ata 63601 -Atacama 62469 -Atacand 64423 -Atal 64657 -Atal'Hakkar 62331 -Atalanta 61362 -Atami 65452 -Atarax 63991 -Atari 51541 -Ataris 63419 -Atascadero 61472 -Ataturk 63601 -Atatürk 63077 -Ataxia 63419 -Atchison 60492 -Atco 62331 -Ate 55423 -Atego 64905 -Atel 65170 -Atelier 57358 -Aten 63601 -Atención 65452 -Ateneo 57566 -Atenolol 64423 -Aterciopelados 61152 -Ath 64905 -Athabasca 60670 -Athan 64657 -Athanasios 65170 -Athanasius 64423 -Atheism 53052 -Atheist 55373 -Atheists 58313 -Atheletes 64905 -Athena 52725 -Athenaeum 64423 -Athenian 58632 -Athenians 63077 -Athens 43372 -Atheros 59702 -Atherosclerosis 58979 -Atherosclerotic 64905 -Atherstone 61818 -Atherton 57831 -Athi 65452 -Athlete 52459 -Athlete's 59923 -Athletes 50074 -Athletic 44794 -Athletics 44686 -Athlon 52927 -Athlone 61362 -Athol 61362 -Athy 60492 -Ati 60157 -Atif 62613 -Ativan 57609 -Atkin 64423 -Atkins 52210 -Atkinson 51825 -Atkinson's 64905 -Atl 62066 -Atlanta 40879 -Atlanta's 57440 -Atlantean 64657 -Atlantic 42221 -Atlantica 61699 -Atlantique 62762 -Atlantis 50074 -Atlas 45987 -Atlases 59164 -Atlassian 49682 -Atleast 63792 -Atletico 58017 -Atlus 62331 -Atlético 64201 -Atm 63077 -Atma 63792 -Atmel 58065 -Atmel's 63601 -Atmos 62613 -Atmosphere 53066 -Atmospheres 63792 -Atmospheric 50365 -Ato 65452 -AtoZ 63245 -Atoka 63792 -Atoll 57199 -Atom 44972 -Atomic 47276 -Atomica 64905 -Atomik 65452 -Atomix 64905 -Atoms 58417 -Atonement 60580 -Atop 60952 -Atopic 62469 -Atorvastatin 58802 -Atrazine 62762 -Atreyu 61051 -Atria 61940 -Atrial 56170 -Atrio 64657 -Atrios 61472 -Atriplex 64201 -Atrium 57009 -Atrix 64423 -Atrocities 63991 -Atrophy 61940 -Atropine 62917 -Atrovent 64657 -Atsuko 65452 -Atsushi 59357 -Att 59630 -Atta 63245 -Attach 51996 -Attache 64657 -Attached 48701 -Attaches 60580 -Attaching 60321 -Attachment 49012 -Attachments 51396 -Attaché 63077 -Attack 45270 -Attacked 58162 -Attacker 62469 -Attackers 65452 -Attacking 60078 -Attacknine 65170 -Attacks 49411 -Attainment 57238 -Attanasio 65170 -Attempt 55274 -Attempted 59424 -Attempting 57785 -Attempts 54560 -Attenborough 60492 -Attend 52018 -Attendance 49720 -Attendant 55766 -Attendants 60238 -Attended 53331 -Attendee 61472 -Attendees 54835 -Attending 53865 -Attendings 62613 -Attends 60492 -Attention 48726 -Attentional 65170 -Attenuated 64201 -Attenuates 65452 -Attenuation 58745 -Attenuator 63077 -Attestation 63991 -Atti 65452 -Attic 52635 -Attica 58919 -Attics 61152 -Atticus 58365 -Attila 59357 -Attiliator 65452 -Attire 58860 -Attitude 52221 -Attitudes 54133 -Attleboro 61940 -Attleborough 62762 -Attorney 42241 -Attorney's 54114 -Attorneys 44528 -Attract 56231 -Attractants 61584 -Attracting 58313 -Attraction 49566 -Attractions 43220 -Attractive 53746 -Attractor 63991 -Attracts 60157 -Attributable 65452 -Attribute 54879 -Attributed 63601 -Attributes 53010 -Attribution 49240 -Attributional 64423 -Attrition 62917 -Attwood 64423 -Atty 56935 -Atul 60157 -Atv 60580 -Atwater 58745 -Atwood 55793 -Atypical 58688 -Atypon 49511 -Au 50285 -Aub 63991 -Auberge 61584 -Aubergine 64423 -Aubert 61584 -Aubin 64201 -Aubin's 64657 -Aubrey 54499 -Aubry 63419 -Auburn 47891 -Auburndale 60321 -Aubusson 64905 -Auchenai 62762 -Auchindoun 57524 -Auckland 46634 -Auckland's 60762 -Aucoin 64657 -Auction 42604 -Auctioned 65452 -Auctioneer 58979 -Auctioneers 56170 -Auctions 44569 -Aucune 65170 -Aud 60321 -Audacious 64657 -Audacity 56935 -Aude 63991 -Audemars 62469 -Auden 63077 -Audi 44789 -Audi's 62762 -Audible 58113 -Audibles 61818 -Audience 46742 -Audiences 55934 -Audigier 61940 -Audigy 57609 -Audiko 63601 -Audio 36411 -AudioBooks 62917 -AudioFile 62917 -AudioNews 62917 -AudioSource 65170 -AudioSparx 63792 -AudioVideo 54902 -Audiobook 55250 -Audiobooks 50019 -Audiocast 64201 -Audiokarma 65452 -Audiologist 62917 -Audiologists 63601 -Audiology 55684 -Audiophile 63792 -Audiophiles 64423 -Audios 61256 -Audioscrobbler 64423 -Audioslave 61256 -Audiovisual 58919 -Audiovox 54439 -Audit 45470 -Audited 57923 -Auditing 52007 -Audition 54924 -Auditioning 62917 -Auditions 52571 -Auditor 50940 -Auditor's 57831 -Auditorium 53052 -Auditoriums 65170 -Auditors 56021 -Auditory 57046 -Audits 55037 -Audix 64905 -Audlem 63991 -Audley 63601 -Audra 59702 -Audrey 51043 -Audrina 57046 -Audubon 54946 -Auer 62066 -Auerbach 61940 -Auf 57199 -Aufrufe 60321 -Aug 34892 -Auger 56791 -Augie 62469 -Augmentation 55604 -Augmented 58688 -Augmentin 62762 -Augsburg 59774 -August 32953 -August's 64905 -Augusta 48648 -Augustana 62196 -Auguste 59630 -Augustin 59774 -Augustine 52778 -Augustine's 61699 -Augustinian 64657 -Augusto 59292 -Augustus 56618 -Auk 65452 -Auld 59424 -Ault 62917 -Aum 63991 -Aun 63792 -Aung 59560 -Aunque 63991 -Aunt 52018 -Auntie 57238 -Aunts 63245 -Aunty 58802 -Aur 57923 -Aura 53762 -Aural 60580 -Aurangabad 56324 -Auraria 65170 -Auras 65170 -Aurel 60952 -Aurela 64905 -Aurelia 63419 -Aurelie 64423 -Aurelio 62917 -Aurelius 63601 -Aureus 63419 -Auriga 65170 -Aurion 64905 -Auris 63245 -Aurora 47931 -Aurore 63991 -Aus 54479 -AusSoft 64657 -Auschwitz 60078 -Ausiello 61472 -Auslogics 63245 -Aussi 64201 -Aussie 49500 -AussieWeb 63245 -Aussies 56231 -Aussieweb 63601 -Aust 50234 -Austell 60856 -Austen 54459 -Austen's 62196 -Austereo 64201 -Austin 41455 -Austin's 58632 -AustinWolv 63245 -Austinist 63245 -Austins 65452 -Austrade 60157 -Austral 59630 -Australas 56618 -Australasia 54207 -Australasian 53779 -Australes 65170 -Australi 65170 -Australia 35628 -Australia's 47544 -Australian 38992 -Australian's 64905 -Australiana 64657 -Australians 52872 -Australias 65452 -Australien 65452 -Australis 65170 -Austria 41303 -Austria's 51052 -Austriaca 62762 -Austrian 48731 -Austrians 60952 -Austronesian 65170 -Aut 62762 -Auta 62613 -Autechre 61699 -Auteur 63601 -Auth 58365 -AuthSP 60580 -Authentic 50522 -Authenticate 63991 -Authenticated 61152 -Authentication 51229 -Authenticity 57923 -Authentics 63991 -Author 34209 -Author's 50461 -AuthorCrossing 60405 -AuthorTracker 62762 -Authored 56791 -Authoring 51113 -Authorisation 59848 -Authorised 54439 -Authoritative 58577 -Authorities 50101 -Authority 42481 -Authority's 56585 -Authorization 51670 -Authorizations 63419 -Authorize 56899 -Authorized 48711 -Authorizes 63792 -Authorizing 57440 -Authors 39108 -AuthorsDen 63991 -Authorship 63601 -Authorware 57122 -Autism 49157 -Autistic 54601 -Auto 36225 -AutoBackup 64423 -AutoCAD 52484 -AutoCad 64905 -AutoCheck 61362 -AutoCult 62469 -AutoDWG 61940 -AutoDesk 62762 -AutoIt 61584 -AutoLocate 65452 -AutoLust 62066 -AutoMate 65170 -AutoNation 60670 -AutoNetwork 59702 -AutoPatcher 59848 -AutoPlay 51721 -AutoReload 63245 -AutoRun 59357 -AutoSpies 64657 -AutoSport 64657 -AutoTheme 62469 -AutoTrader 61940 -AutoUpdate 63419 -AutoZone 56618 -Autoantibodies 61818 -Autobahn 60856 -Autobiographical 64201 -Autobiography 54479 -Autoblog 48445 -AutoblogGreen 56140 -Autobody 63601 -Autobot 59039 -Autobots 61472 -Autocad 58365 -Autocar 61256 -Autoclave 63991 -Autoconf 65170 -Autocrine 64905 -Autocross 60856 -Autocrossing 64423 -Autodesk 52622 -Autoflo 65452 -Autofocus 61940 -Autoglass 61940 -Autograph 55793 -Autographed 52622 -Autographs 56140 -Autoharp 62762 -Autohaus 65452 -Autoimmune 57278 -Autoimmunity 62917 -Autoloader 64657 -Autoloaders 64201 -Autologous 60856 -Automagically 63419 -Automakers 59848 -Automata 58212 -Automate 57876 -Automated 48372 -Automatic 43737 -Automatica 63601 -Automatically 52198 -Automating 59292 -Automation 46301 -Automation's 64905 -Automaton 61584 -Automator 59164 -Automattic 54601 -Automerged 64657 -Autometer 60580 -Automize 65170 -Automobile 47895 -Automobiles 50469 -Automobilia 63419 -Automotive 40077 -Automotives 62762 -Automotix 58113 -Autonet 62917 -Autonom 63601 -Autonoma 63077 -Autonomic 58065 -Autonomous 53361 -Autonomy 57876 -Autopac 64657 -Autopano 64657 -Autopia 54133 -Autopilot 60157 -Autoplay 51570 -Autoplaying 43531 -Autopsy 57876 -Autoquake 63991 -Autor 60238 -Autoradiography 64905 -Autoregressive 64905 -Autoresponder 63419 -Autoroute 64905 -Autorun 63077 -Autos 37077 -Autosomal 60670 -Autosport 65452 -Autostar 60670 -Autosvia 62331 -Autozone 62613 -Autre 63245 -Autres 59630 -Autry 61699 -Autumn 46555 -Autumn's 61699 -Autumnal 63077 -Autumnwatch 61256 -Autónoma 60670 -Auvergne 61152 -Aux 58577 -Auxerre 61472 -Auxiliary 52268 -Av 53597 -AvMed 64201 -Ava 53346 -Avago 65170 -Avail 56862 -Availability 43271 -Available 37034 -Availablity 64905 -Availity 63419 -Avalanche 52521 -Avalanches 65170 -Avalide 64905 -Avalon 49028 -Avalos 64905 -Avance 63245 -Avandamet 62762 -Avandia 57653 -Avani 65170 -Avanquest 62469 -Avant 53331 -AvantGo 60952 -Avante 64201 -Avantgarde 63419 -Avanti 54601 -Avaric 65170 -Avast 57399 -Avastin 65452 -Avatar 37332 -Avatars 54023 -Avaya 52791 -Ave 41647 -Avebury 63419 -Avec 56935 -Aveda 58979 -Avedon 61472 -Aveeno 63601 -Aveiro 65452 -Avena 62331 -Avene 62613 -Avenel 63601 -Avenged 55906 -Avenger 55963 -Avengers 55154 -Avenida 58313 -Avenir 64201 -Avent 60580 -Aventis 62469 -Aventura 56080 -Aventuras 59923 -Avenue 40669 -Avenues 57524 -Aveo 60321 -Aver 65170 -Avera 64657 -Average 39622 -Averaged 61818 -Averages 54023 -Averaging 59292 -Averatec 59424 -Averett 64423 -Averill 63792 -Aversion 62762 -Avert 64201 -Avery 51069 -Avery's 64905 -Averys 63077 -Aves 62917 -Avex 61362 -Avg 48524 -Avge 64905 -Avi 52845 -Avia 62196 -Avian 51953 -Avianca 52818 -Aviano 65452 -Aviansie 65452 -Aviary 62469 -Aviation 41108 -Aviator 55348 -Aviators 62917 -Avid 53301 -Aviemore 60157 -Avignon 60405 -Avila 56756 -Aviles 64423 -Avilla 65452 -Avimal 65170 -Avinash 63077 -Avion 63792 -Avionics 58802 -Avira 58017 -Avirex 64657 -Avis 55552 -Avision 64423 -Aviso 61818 -Avisos 64657 -AvistaZ 62469 -Avital 63991 -Aviv 52256 -Aviva 57831 -Avivo 65452 -Avner 64905 -Avnet 57009 -Avoca 59630 -Avocado 57009 -Avocent 63419 -Avodart 62066 -Avoid 42533 -Avoidable 65452 -Avoidance 56262 -Avoided 65170 -Avoiding 53485 -Avoids 64201 -Avon 48605 -Avon's 61256 -Avondale 56721 -Avoriaz 65170 -Avorn 65452 -Avr 62613 -Avra 64905 -Avraham 61818 -Avril 51266 -Avro 61584 -Avs 63077 -Avviste 63419 -Avvo 62762 -Avy 62469 -Aw 59164 -Awa 63601 -Awad 63077 -Awadhi 63077 -Await 60580 -Awaiting 55107 -Awaits 62331 -Awake 56388 -Awaken 60405 -Awakened 65452 -Awakening 54078 -Awakenings 63991 -Awana 64423 -Award 40910 -Awarded 51783 -Awardee 65170 -Awardees 64657 -Awarding 61152 -Awards 39109 -AwardsTime 53813 -Aware 56721 -Awareness 46663 -Awash 64423 -Away 44384 -Aways 60580 -Awe 62613 -Aweigh 64657 -Awesome 47577 -Awesomeness 64905 -Awful 54399 -Awhile 60405 -Awkward 59039 -Awning 55474 -Awnings 56551 -Awol 60762 -Awsome 60405 -Aww 58212 -Awww 62917 -Ax 58065 -Axa 63601 -Axe 53438 -Axed 63245 -Axel 53762 -Axelay 64905 -Axelrod 61362 -Axes 58417 -Axi 64201 -Axia 62917 -Axial 54226 -Axillary 62196 -Axim 56551 -Axio 60952 -Axiom 57696 -Axioms 63991 -Axioskop 62469 -Axiovert 60952 -Axis 51248 -Axl 59424 -Axle 53407 -Axles 60321 -Axminster 62917 -Axon 61256 -Axonal 64905 -Axtell 61584 -Axwell 62917 -Ay 57831 -AyD 64657 -Aya 58262 -Ayaan 65170 -Ayacucho 62331 -Ayah 65170 -Ayaka 64657 -Ayakashi 62066 -Ayako 60952 -Ayala 58802 -Ayam 65452 -Ayanami 63245 -Ayashi 62331 -Ayatollah 61472 -Aycliffe 63419 -Ayden 63792 -Aydin 62613 -Aye 53613 -Ayelet 65452 -Ayer 54341 -Ayers 52375 -Ayes 62196 -Ayesha 58688 -Aygo 64201 -Ayia 59774 -Ayko 64905 -Aykroyd 64657 -Ayla 64423 -Aylesbury 55766 -Aylesford 63991 -Aylward 65452 -Ayman 60670 -Aymara 62613 -Ayn 59227 -Aynsley 64423 -Ayo 59848 -Ayodhya 64657 -Ayoub 64201 -Ayr 56687 -Ayre 63419 -Ayres 58577 -Ayrshire 53952 -Ayrton 64905 -Ayton 65452 -Ayu 63419 -Ayub 63077 -Ayuda 57278 -Ayumi 56756 -Ayurveda 55373 -Ayurvedic 56420 -Ayutthaya 65170 -Az 55226 -Aza 62469 -Azad 58365 -Azadi 64201 -Azadirachta 64905 -Azalea 60580 -Azam 60952 -Azamara 52280 -Azania 65452 -Azar 63792 -Azathioprine 63245 -Azcárraga 65452 -Azden 63419 -Azerbaidjan 60952 -Azerbaijan 45664 -Azerbaijan's 64905 -Azerbaijani 56687 -Azeri 59491 -Azeroth 59630 -Azevedo 61584 -Azgalor 60492 -Azide 64905 -Azienda 64905 -Azim 65170 -Azimut 58802 -Azimuth 60000 -Azithromycin 64423 -Aziz 57524 -Azkaban 60580 -Aznar 65170 -Azone 64423 -Azonic 64657 -Azorei 65452 -Azores 58162 -Azote 64905 -Azria 59491 -Azriel 61699 -Azshara 57741 -Aztec 54643 -Azteca 63792 -Aztech 62917 -Aztecs 60157 -Aztek 56935 -Aztex 63991 -Aztlan 64905 -Azul 56935 -Azulfidine 65452 -Azuma 63245 -Azumanga 61051 -Azumi 63077 -Azur 63245 -Azure 55060 -Azuremyst 57009 -Azureus 54560 -Azusa 59227 -Azz 61940 -Azzam 64423 -Azzaman 65452 -Azzarello 63077 -Azzaro 63792 -Azzurri 63991 -Añadir 60492 -Año 59848 -Años 65452 -B 34344 -B'Av 63419 -B'Omer 63792 -B'Tselem 61472 -B'day 63077 -B'nai 60670 -B'rith 65452 -B's 56293 -BA 45015 -BAA 55766 -BABA 63792 -BABE 58919 -BABES 58979 -BABIES 60492 -BABY 51610 -BABYLON 58688 -BAC 54360 -BACC 63419 -BACHATERO 63601 -BACHELOR 63419 -BACK 45581 -BACKGROUND 48811 -BACKING 64657 -BACKORDER 65170 -BACKPACK 61256 -BACKS 63991 -BACKSTAGE 63792 -BACKSTROKE 65452 -BACKUP 61818 -BACKYARD 64657 -BACON 62613 -BACS 63601 -BACTERIA 64657 -BACTERIAL 62613 -BAD 51444 -BADGE 61940 -BADGER 64657 -BADGES 63991 -BADIM 59923 -BADLIPPSPRINGE 55738 -BAE 55274 -BAECs 64201 -BAFTA 63792 -BAG 52339 -BAGGS 62196 -BAGHDAD 63419 -BAGPIPE 65170 -BAGS 53597 -BAH 64201 -BAHAMA 61362 -BAHAMAS 58523 -BAHRAIN 60670 -BAI 62469 -BAIL 64657 -BAILEY 58802 -BAITS 64905 -BAJA 63077 -BAJO 64423 -BAK 61818 -BAKE 62917 -BAKED 58523 -BAKER 57440 -BAKERS 63991 -BAKERY 61362 -BAKING 63792 -BAL 55631 -BALANCE 56110 -BALANCED 62066 -BALANCING 62469 -BALD 64905 -BALDWIN 61256 -BALE 64423 -BALF 63792 -BALI 63245 -BALL 54419 -BALLAD 61051 -BALLAST 64423 -BALLET 60238 -BALLOON 64657 -BALLOT 62196 -BALLOTS 64905 -BALLS 59630 -BALLYNAHINCH 62196 -BALM 64905 -BALTIC 64423 -BALTIMORE 59848 -BAM 57399 -BAMA 63792 -BAMBI 64201 -BAMBOO 62613 -BAN 57440 -BANANA 62331 -BANANAS 65452 -BAND 52118 -BANDA 61051 -BANDIT 62762 -BANDS 59491 -BANE 64201 -BANG 60492 -BANGALORE 57358 -BANGBROS 62469 -BANGKOK 57358 -BANGLADESH 57358 -BANGOR 64201 -BANJO 58577 -BANK 48861 -BANKER 63419 -BANKERS 63077 -BANKING 57653 -BANKRUPTCY 59630 -BANKS 58523 -BANNED 58688 -BANNER 60321 -BANNERS 63792 -BANQUET 61584 -BANZAI 57741 -BAO 63601 -BAP 63991 -BAPAC 64905 -BAPTIST 62762 -BAR 51406 -BARACK 59357 -BARB 64905 -BARBADOS 59702 -BARBARA 57046 -BARBECUE 61362 -BARBER 62331 -BARBIE 60321 -BARBUDA 62066 -BARC 62331 -BARCELONA 60952 -BARCODE 61152 -BARE 61362 -BARF 63077 -BARGAIN 56140 -BARGAINS 59424 -BARIL 65452 -BARK 65452 -BARKER 61940 -BARKLEY 65452 -BARN 58262 -BARNES 61362 -BAROLO 63077 -BAROQUE 63601 -BARR 63991 -BARREL 61472 -BARRETT 63245 -BARRIER 59774 -BARRIERS 61940 -BARRINGTON 63991 -BARRON 64657 -BARRY 56899 -BARS 56687 -BART 54685 -BARTLETT 65170 -BARTON 61699 -BAS 57084 -BASCOM 54399 -BASE 53796 -BASEBALL 55766 -BASEBALLS 65170 -BASED 53392 -BASELINE 63991 -BASEMENT 62196 -BASES 62917 -BASF 55154 -BASH 61472 -BASIC 52725 -BASICS 60321 -BASIL 63991 -BASIN 60157 -BASIS 56791 -BASKET 55423 -BASKETBALL 54770 -BASKETS 63077 -BASQUE 65170 -BASS 53346 -BASSETT 65170 -BASSOON 64657 -BAT 57122 -BATAK 59560 -BATCH 62613 -BATE 64201 -BATES 63991 -BATH 54879 -BATHROOM 58313 -BATHROOMS 65170 -BATHURST 65452 -BATIK 64905 -BATMAN 62331 -BATON 62469 -BATS 61584 -BATT 63601 -BATTER 64201 -BATTERIES 57609 -BATTERY 54499 -BATTLE 56420 -BATTLESHIP 65452 -BAU 62917 -BAUER 64657 -BAVC 62613 -BAW 64423 -BAY 51087 -BAYER 61699 -BAYFIELD 64905 -BAZAAR 65170 -BAe 65170 -BB 43708 -BB's 63077 -BBA 57653 -BBB 48377 -BBBOnLine 55474 -BBBOnline 63077 -BBC 35143 -BBC's 54059 -BBCSO 59039 -BBCWorldwide 61584 -BBCi 57009 -BBCode 55552 -BBD 61362 -BBDO 64423 -BBE 60492 -BBG 65170 -BBH 65170 -BBJ 65170 -BBK 62066 -BBL 59039 -BBM 61362 -BBMF 63419 -BBN 63792 -BBP 58860 -BBQ 47266 -BBQ'rs 65170 -BBQ's 63601 -BBQs 60492 -BBR 58313 -BBS 54770 -BBSRC 58262 -BBT 64905 -BBUF 61818 -BBV 63419 -BBW 53211 -BBY 63419 -BBall 65452 -BBcode 65452 -BBs 60492 -BBtv 64423 -BC 42248 -BC's 59164 -BCA 55849 -BCAA 61818 -BCB 59560 -BCBG 57009 -BCBGMAXAZRIA 59491 -BCBGirls 61362 -BCC 56050 -BCCI 63419 -BCD 58688 -BCDEFGHIJKLMNOPQRSTUV 64657 -BCE 56200 -BCEAO 63991 -BCF 64905 -BCG 54706 -BCH 58860 -BCI 58632 -BCID 63077 -BCIT 64201 -BCL 58577 -BCLs 60492 -BCM 57399 -BCMA 58632 -BCN 62762 -BCO 65452 -BCP 60580 -BCR 57482 -BCRP 64201 -BCS 53597 -BCT 58470 -BCTGM 62762 -BCTV 60952 -BCU 64905 -BCVA 64423 -BCcampus 63077 -BCoV 65452 -BD 48067 -BDA 59848 -BDAY 63792 -BDC 59227 -BDD 60580 -BDDC 63419 -BDE 61818 -BDH 65452 -BDI 60670 -BDJ 58860 -BDL 60157 -BDM 61051 -BDNF 56140 -BDO 59702 -BDP 60405 -BDR 64905 -BDS 56140 -BDSM 54170 -BDT 63601 -BE 42031 -BEA 54969 -BEAC 64423 -BEACH 51856 -BEACHES 64201 -BEACON 61472 -BEADED 61152 -BEADS 59848 -BEAM 54924 -BEAMS 63245 -BEAN 59101 -BEANO 64905 -BEANS 59491 -BEAR 55849 -BEARD 63792 -BEARING 58313 -BEARINGS 62196 -BEARS 60078 -BEARdocs 63991 -BEAST 52559 -BEAT 55299 -BEATLES 60000 -BEATPORT 64423 -BEATRICE 64201 -BEATS 59774 -BEAUFORT 63077 -BEAUMONT 63419 -BEAUTIFUL 54096 -BEAUTY 53865 -BEAVER 60670 -BEAVERCREEK 61152 -BEAVERTON 64201 -BEB 62066 -BEBE 60405 -BEBO 61818 -BEC 57785 -BECAUSE 54341 -BECK 61818 -BECKER 59357 -BECKHAM 65170 -BECKY 64201 -BECOME 55130 -BECOMES 61472 -BECOMING 63601 -BED 53970 -BEDDING 63077 -BEDFORD 59702 -BEDROOM 55274 -BEDROOMS 60670 -BEDS 57524 -BEE 56293 -BEEF 57199 -BEEN 49614 -BEER 56652 -BEES 64905 -BEETLE 62469 -BEEZ 63245 -BEF 59491 -BEFORE 49285 -BEG 64657 -BEGIN 55373 -BEGINNING 59101 -BEGINNINGS 65452 -BEGINS 60762 -BEHALF 61256 -BEHAVIOR 58860 -BEHAVIORAL 61940 -BEHAVIOUR 62613 -BEHIND 55250 -BEI 65170 -BEIGE 60952 -BEIJING 54969 -BEING 54151 -BEKO 63601 -BEL 60492 -BELARUS 60157 -BELFAST 59039 -BELGIAN 62196 -BELGIUM 57084 -BELGRADE 62469 -BELIEFS 64201 -BELIEVE 54664 -BELIZE 59923 -BELKIN 60492 -BELL 54622 -BELLA 60670 -BELLE 60000 -BELLEVUE 64201 -BELLMOUTH 65170 -BELLS 62762 -BELLY 63419 -BELMONT 61256 -BELOW 53581 -BELT 56551 -BELTS 63792 -BEML 65452 -BEN 53712 -BENCH 59227 -BENCHMARK 63419 -BEND 57785 -BENDIGO 63245 -BENEDICT 62469 -BENEFICIAL 61472 -BENEFICIARY 64905 -BENEFIT 56293 -BENEFITS 53882 -BENGAL 61362 -BENGALI 63991 -BENGALS 64657 -BENIN 60321 -BENJAMIN 59560 -BENNETT 60856 -BENNETTS 63792 -BENNY 62066 -BENQ 63419 -BENSON 64423 -BENT 61699 -BENTLEY 60000 -BENTON 63077 -BENZ 61051 -BEO 63792 -BEOLINGUS 64905 -BEP 63991 -BER 54879 -BERG 63601 -BERGER 61940 -BERKELEY 62469 -BERKSHIRE 56452 -BERLIN 57970 -BERMUDA 59491 -BERNARD 56050 -BERNIE 64905 -BERRY 59357 -BERT 64423 -BERU 65170 -BES 59630 -BESPOKE 64657 -BESR 56827 -BESS 64657 -BEST 44005 -BESTSELLERS 64201 -BET 52029 -BET's 63245 -BETA 51731 -BETH 61472 -BETHEL 63792 -BETHLEHEM 64423 -BETHPAGE 64201 -BETTE 64657 -BETTER 52472 -BETTIE 65170 -BETTING 62066 -BETTS 64905 -BETTY 59101 -BETWEEN 51550 -BEULA 54264 -BEV 59774 -BEVERAGE 60952 -BEVERAGES 62469 -BEVERLEY 63245 -BEVERLY 57524 -BEWARE 61818 -BEYONCE 60952 -BEYOND 53613 -BEd 64423 -BF 51825 -BFA 58365 -BFAD 65452 -BFB 64905 -BFD 61940 -BFF 55963 -BFFs 65170 -BFG 56721 -BFGoodrich 64423 -BFI 56827 -BFK 65170 -BFL 64201 -BFME 63601 -BFN 64657 -BFO 64905 -BFP 60762 -BFS 61940 -BFSI 64905 -BFX 64423 -BG 49847 -BG's 64657 -BGA 58017 -BGAN 63991 -BGB 64657 -BGEN 52435 -BGG 60856 -BGK 65170 -BGL 64423 -BGM 61584 -BGN 59292 -BGP 60492 -BGPP 61818 -BGR 63991 -BGS 62762 -BGT 63077 -BGreg 65170 -BH 51909 -BHAA 64905 -BHARAT 64657 -BHC 64657 -BHD 59357 -BHEL 64201 -BHF 64423 -BHG 63245 -BHI 61152 -BHK 57566 -BHM 63991 -BHO 61940 -BHOPAL 65452 -BHP 54005 -BHPian 59357 -BHR 63077 -BHS 59164 -BHT 57741 -BHUTAN 61256 -BI 50623 -BIA 57440 -BIANCA 63601 -BIAS 59164 -BIB 63601 -BIBLE 58262 -BIBLIOGRAPHIC 62066 -BIBLIOGRAPHY 60000 -BIC 59923 -BICEPS 61940 -BICYCLE 62762 -BID 51931 -BIDDER 60078 -BIDDERS 60856 -BIDDING 59424 -BIDEN 61256 -BIDEN'S 63419 -BIDS 56356 -BIE 63792 -BIEA 58577 -BIEN 64657 -BIENVENUE 65452 -BIF 65170 -BIG 46329 -BIGGER 61362 -BIGGEST 57440 -BIGMack 65452 -BIKE 53423 -BIKES 59702 -BIKING 60321 -BIKINI 60580 -BIL 64201 -BILBAO 65170 -BILL 50898 -BILLBOARD 64905 -BILLERICA 65452 -BILLIE 63245 -BILLING 57566 -BILLION 60492 -BILLS 59227 -BILLY 59039 -BIM 60321 -BIN 58979 -BINARY 62762 -BIND 61818 -BINDER 63077 -BINDING 58365 -BINDINGS 65170 -BINDU 61362 -BINGO 58113 -BIO 52622 -BIOCHEMICAL 60952 -BIOCHEMISTRY 61472 -BIOGRAPHICAL 61940 -BIOGRAPHIES 63991 -BIOGRAPHY 56231 -BIOLOGIC 65452 -BIOLOGICAL 57238 -BIOLOGY 56356 -BIOMED 61362 -BIOMEDICAL 63245 -BIONICLE 64905 -BIOPHYSICAL 61940 -BIOPHYSICS 63077 -BIOPSY 64657 -BIORB 63991 -BIOS 49633 -BIOSILK 65452 -BIOTECH 63991 -BIOTECHNOLOGY 55684 -BIPIN 64905 -BIR 60157 -BIRCH 64201 -BIRD 55474 -BIRDS 57831 -BIRMINGHAM 56585 -BIRN 63601 -BIRTH 55552 -BIRTHDAY 52818 -BIRTHDAYS 65170 -BIS 55963 -BISCUIT 64423 -BISCUITS 63601 -BISH 63601 -BISHOP 60000 -BISMARCK 64201 -BISS 64905 -BIST 59702 -BIT 57524 -BITC 61699 -BITCH 59164 -BITCHES 63601 -BITE 59630 -BITRE 64423 -BITS 59039 -BITTORRENT 61818 -BITUMINOUS 61699 -BIW 62613 -BIZ 58688 -BJ 49458 -BJ's 58470 -BJF 64201 -BJJ 63419 -BJM 65452 -BJP 56452 -BJS 62469 -BJU 60405 -BK 48776 -BKG 63792 -BKK 62917 -BKLYN 64423 -BKN 63792 -BKS 63991 -BL 49802 -BLA 63601 -BLACK 46529 -BLACKBERRY 59774 -BLACKBURN 63601 -BLACKOUT 64201 -BLACKPOOL 65452 -BLACKS 63245 -BLADE 57653 -BLADES 59774 -BLAINE 65452 -BLAIR 61256 -BLAKE 60762 -BLAME 62762 -BLANC 64423 -BLANCA 64423 -BLANCH 65170 -BLANK 59848 -BLANKET 63419 -BLASSREI 59164 -BLASSREITER 58919 -BLAST 55323 -BLATANT 64423 -BLAZE 64905 -BLAZER 60670 -BLAZERS 64905 -BLC 64905 -BLD 62762 -BLDC 65452 -BLDG 60405 -BLDGBLOG 64423 -BLEACH 64905 -BLEACHERS 63245 -BLED 65452 -BLEM 64423 -BLEND 62613 -BLENDED 64201 -BLESS 59424 -BLESSED 61152 -BLIND 59164 -BLING 64201 -BLIP 62066 -BLISS 62196 -BLITZ 64905 -BLK 55526 -BLM 56862 -BLN 63077 -BLO 61362 -BLOB 63245 -BLOC 62613 -BLOCK 52913 -BLOCKBUSTER 62917 -BLOCKED 63077 -BLOCKING 63991 -BLOCKS 60762 -BLOG 46572 -BLOGGER 60000 -BLOGGERS 61584 -BLOGGING 60856 -BLOGROLL 61699 -BLOGS 48816 -BLOGs 64423 -BLONDE 61818 -BLOOD 53970 -BLOODY 64201 -BLOOM 64657 -BLOOMBERG 62331 -BLOOMINGTON 62762 -BLOSSOM 63991 -BLOW 59774 -BLOWER 58313 -BLOWN 65452 -BLOWOUT 65170 -BLP 61699 -BLR 61584 -BLS 59774 -BLT 56420 -BLU 59491 -BLUE 47859 -BLUEGRASS 63991 -BLUES 57160 -BLUETOOTH 59560 -BLUF 64905 -BLUFF 63601 -BLVD 54207 -BM 50514 -BMA 56518 -BMAF 59491 -BMB 63991 -BMC 50662 -BMD 54992 -BME 56080 -BMF 60321 -BMG 54226 -BMGs 63419 -BMH 63077 -BMI 51473 -BMJ 44068 -BMLSAVES 53882 -BMO 59039 -BMP 55906 -BMPs 59491 -BMR 63792 -BMRA 64905 -BMRSEB 63245 -BMS 57566 -BMT 60405 -BMV 59039 -BMW 42381 -BMW's 58979 -BMWA 64657 -BMWs 64201 -BMX 49739 -BN 53485 -BNA 63601 -BNC 57482 -BND 63077 -BNET 33699 -BNET's 64905 -BNF 62613 -BNI 61362 -BNIB 60000 -BNIP 60405 -BNL 63419 -BNN 56791 -BNO 63792 -BNP 50476 -BNR 61584 -BNS 61472 -BNSC 64905 -BNSF 59424 -BNWT 59630 -BNY 65452 -BO 54857 -BOA 57160 -BOARD 46048 -BOARDMAN 60078 -BOARDS 53882 -BOAT 54924 -BOATING 62762 -BOATS 58632 -BOB 52661 -BOBBY 58919 -BOBR 63419 -BOC 55657 -BOCA 63077 -BOCC 64905 -BOCES 63991 -BOCH 64423 -BOD 59164 -BODIES 60000 -BODILY 65170 -BODY 49608 -BOE 59848 -BOEING 64905 -BOF 64423 -BOG 65452 -BOGO 64423 -BOI 61152 -BOILER 64423 -BOILING 64905 -BOIS 64657 -BOISE 65170 -BOJ 64657 -BOJF 61256 -BOK 65452 -BOKER 63601 -BOL 61940 -BOLD 59164 -BOLIVIA 58860 -BOLLE 62762 -BOLLYWOOD 61256 -BOLOGNA 64201 -BOLT 57785 -BOLTON 61699 -BOLTS 63419 -BOM 60405 -BOMA 63419 -BOMB 60405 -BOMBAY 64423 -BOMBER 62469 -BON 60157 -BOND 54924 -BONDAGE 62469 -BONDED 65452 -BONDING 64423 -BONDS 56231 -BONE 56862 -BONED 63792 -BONES 61051 -BONGO 64905 -BONITA 63601 -BONNER 65452 -BONNIE 61940 -BONUS 55084 -BONUSES 65170 -BOO 59491 -BOOB 63991 -BOOBS 62331 -BOOGIE 62762 -BOOK 47353 -BOOKING 58417 -BOOKINGS 62613 -BOOKLET 65170 -BOOKMARK 52739 -BOOKMARKS 55821 -BOOKMOBILE 65452 -BOOKS 47252 -BOOKSHELF 64905 -BOOKSTORE 61152 -BOOL 62196 -BOOLEAN 64657 -BOOM 59630 -BOOMERANG 65170 -BOOMs 62917 -BOOST 59630 -BOOSTING 63245 -BOOT 58523 -BOOTH 61152 -BOOTS 56827 -BOOTY 64201 -BOOZE 64201 -BOP 58802 -BOPA 65170 -BOPD 65452 -BOR 60952 -BORDER 60405 -BORDERS 65170 -BORE 63991 -BORED 65170 -BORING 61472 -BORIS 65170 -BORN 57440 -BORO 65452 -BOROUGH 55037 -BOS 55448 -BOSCH 59424 -BOSD 61818 -BOSE 62762 -BOSNIA 60492 -BOSS 55474 -BOSTON 53167 -BOSTONITES 64657 -BOT 58313 -BOTANICAL 63419 -BOTH 52375 -BOTSWANA 61152 -BOTTLE 59357 -BOTTLES 61152 -BOTTOM 54879 -BOTW 65452 -BOTY 60321 -BOUGHT 60000 -BOULDER 64905 -BOULEVARD 61256 -BOUNCE 64905 -BOUND 59164 -BOUNDARIES 64657 -BOUNDARY 60157 -BOUNTY 64423 -BOURKE 62331 -BOUT 59774 -BOUTIQUE 59923 -BOUVET 62613 -BOUZOUKI 62762 -BOVINE 64905 -BOW 57970 -BOWEN 63245 -BOWL 55500 -BOWLING 58688 -BOWLS 63419 -BOWMAN 64905 -BOX 46557 -BOXED 62331 -BOXES 59292 -BOXING 58523 -BOY 53438 -BOYD 61256 -BOYLE 62613 -BOYS 51521 -BOYZ 62196 -BOZ 65170 -BOZOK 65452 -BP 47544 -BP's 63077 -BPA 56452 -BPD 56551 -BPE 62762 -BPEL 61256 -BPF 64905 -BPG 64905 -BPH 58523 -BPI 60762 -BPL 62196 -BPM 54321 -BPMN 59848 -BPN 65452 -BPO 54879 -BPP 65452 -BPR 61152 -BPRS 61699 -BPS 59424 -BPSK 62917 -BPV 60762 -BPW 64201 -BPX 64201 -BPY 65452 -BPs 65452 -BQ 59702 -BQN 65452 -BQO 64905 -BR 47431 -BRA 58313 -BRAC 62331 -BRACELET 60078 -BRACELETS 64657 -BRACKET 59039 -BRAD 58860 -BRADFORD 59227 -BRADLEY 58262 -BRADSHAW 64201 -BRADY 62762 -BRAIN 57122 -BRAINS 65452 -BRAKE 54879 -BRAKES 60670 -BRAMPTON 65170 -BRANCH 53934 -BRAND 48265 -BRANDON 59560 -BRANDS 54813 -BRANDY 64423 -BRANT 57566 -BRANTLEY 65170 -BRASIL 61584 -BRASS 56293 -BRAUN 63792 -BRAVE 58745 -BRAVES 64201 -BRAVIA 58365 -BRAVO 60856 -BRAXTON 64905 -BRAZIL 55766 -BRAZILIAN 61472 -BRB 63419 -BRC 60856 -BRD 61940 -BRE 60762 -BREA 64201 -BREACH 61584 -BREAD 57399 -BREAK 55906 -BREAKER 64423 -BREAKFAST 57199 -BREAKING 54283 -BREAKS 59848 -BREAKTHROUGH 65170 -BREAST 57160 -BREATH 63419 -BREATHING 63601 -BREE 63601 -BREED 62469 -BREEDING 63991 -BREEZE 64905 -BREITLING 64423 -BRENDA 60000 -BRENDAN 63601 -BRENNER 65452 -BRENT 62762 -BRENTWOOD 65170 -BRESIL 63792 -BRET 64905 -BRETT 59292 -BREW 65452 -BREWSTER 64657 -BRFSS 62469 -BRI 59848 -BRIAN 54560 -BRIBERY 65170 -BRIC 65452 -BRICK 59774 -BRICKS 63601 -BRIDAL 58523 -BRIDE 61940 -BRIDGE 54133 -BRIDGES 60405 -BRIDGET 65452 -BRIDGING 63419 -BRIE 63991 -BRIEF 51590 -BRIEFING 60078 -BRIEFLY 64423 -BRIEFS 61818 -BRIG 60238 -BRIGADE 62469 -BRIGHT 56324 -BRIGHTON 58470 -BRILL 61362 -BRILLIANT 64423 -BRING 56485 -BRINGING 63792 -BRINGS 64905 -BRISBANE 57399 -BRISTOL 59164 -BRIT 64423 -BRITAIN 59848 -BRITISH 52339 -BRITNEY 57785 -BRITTANY 57524 -BRITTNEY 64905 -BRK 63077 -BRL 58802 -BRM 63077 -BRN 63419 -BRO 59292 -BROAD 61051 -BROADBAND 59848 -BROADCAST 58577 -BROADCASTING 60856 -BROADER 65452 -BROADWAY 57566 -BROCHURE 58802 -BROCHURES 63991 -BROKE 61362 -BROKEN 58417 -BROKER 60856 -BROKERAGE 64201 -BROKERS 60321 -BROMLEY 65170 -BRONX 64423 -BRONZE 58470 -BROOCH 63601 -BROOK 60321 -BROOKE 63419 -BROOKINGS 63601 -BROOKLYN 58523 -BROOKS 58802 -BROOME 62196 -BROOMWADE 65452 -BROS 59560 -BROTHER 57482 -BROTHERS 55448 -BROUGHT 63991 -BROWARD 65170 -BROWN 50865 -BROWNS 63991 -BROWSE 47143 -BROWSER 61051 -BROWSING 63792 -BRP 62469 -BRS 62196 -BRST 65170 -BRT 64423 -BRU 64905 -BRUCE 55274 -BRUMMELL 63419 -BRUNEI 61256 -BRUNO 61699 -BRUNSWICK 56721 -BRUSH 59630 -BRUSHES 60000 -BRUSSELS 64201 -BRW 63419 -BRYA 64905 -BRYAN 58802 -BRYANT 60856 -BRYCE 63792 -BS 46793 -BSA 52327 -BSAC 65170 -BSB 59101 -BSC 55552 -BSD 52375 -BSE 53377 -BSF 60856 -BSG 62331 -BSI 58688 -BSL 60492 -BSM 61584 -BSN 56551 -BSNL 53729 -BSO 62196 -BSOD 58919 -BSP 58017 -BSR 61051 -BSS 58860 -BST 49196 -BSTC 63419 -BSTRACT 63792 -BSU 62917 -BSW 58802 -BSartist 65170 -BSc 55084 -BSkyB 60856 -BT 46105 -BT's 61699 -BTA 62066 -BTB 63077 -BTC 58577 -BTCA 61051 -BTCC 63601 -BTCV 63991 -BTEC 59491 -BTI 60078 -BTJunkie 63991 -BTK 61699 -BTL 61584 -BTN 61940 -BTO 61818 -BTP 56356 -BTR 59039 -BTS 56452 -BTT 64657 -BTU 53917 -BTUs 65170 -BTW 55084 -BTX 62613 -BU 51541 -BUA 62196 -BUBBLE 60580 -BUCHANAN 63991 -BUCK 61818 -BUCKET 60762 -BUCKEYE 63419 -BUCKLE 63991 -BUCKS 57785 -BUD 59357 -BUDAPEST 65170 -BUDDHA 63601 -BUDDY 59630 -BUDGET 50974 -BUDGETING 62917 -BUDGETS 64905 -BUELL 61362 -BUENA 63245 -BUENOS 63245 -BUF 63601 -BUFFALO 59630 -BUFFER 61940 -BUFFET 65170 -BUFFETT 63991 -BUFR 61584 -BUG 57970 -BUGLE 64657 -BUGS 61584 -BUICK 57696 -BUILD 56293 -BUILDER 59491 -BUILDER'S 61362 -BUILDERS 60078 -BUILDING 50537 -BUILDINGS 59292 -BUILT 58745 -BUKIT 64657 -BUL 65452 -BULB 62196 -BULBS 60580 -BULGARIA 58262 -BULK 56756 -BULKHEAD 64201 -BULL 58162 -BULLDOG 63792 -BULLDOGS 65170 -BULLER 46622 -BULLET 61940 -BULLETIN 54519 -BULLETS 64423 -BULLOCK 65170 -BULLS 60238 -BUM 57566 -BUMP 63077 -BUMPER 60856 -BUN 62613 -BUNBURY 63601 -BUNCH 62917 -BUNCOMBE 62331 -BUNDLE 58417 -BUNDLES 60856 -BUNDY 61584 -BUNK 60492 -BUNKER 63601 -BUNN 62762 -BUNNY 61940 -BUPA 63792 -BUQuest 64657 -BUR 65170 -BURA 61152 -BURBERRY 65452 -BURCH 64657 -BURDEKIN 63601 -BURDEN 64201 -BUREAU 56293 -BURGER 63601 -BURGESS 65452 -BURGLARY 62066 -BURGUNDY 62066 -BURIED 64423 -BURKE 62917 -BURKINA 61699 -BURL 64423 -BURLINGTON 60952 -BURMA 65170 -BURN 59848 -BURNER 61940 -BURNETT 64201 -BURNING 60952 -BURNS 58632 -BURRITO 65170 -BURROS 64201 -BURST 62469 -BURTON 58470 -BURUNDI 61699 -BURY 65452 -BUS 54601 -BUSES 64657 -BUSH 56827 -BUSINESS 44475 -BUSINESSES 59774 -BUST 62196 -BUSTED 65452 -BUSY 61152 -BUT 47664 -BUTCHER 63077 -BUTLER 59101 -BUTT 63077 -BUTTE 65452 -BUTTER 58802 -BUTTERFLY 60078 -BUTTON 57318 -BUTTONS 61584 -BUY 46204 -BUYER 58365 -BUYERS 58688 -BUYING 54969 -BUYS 63245 -BUZZ 58017 -BUZZNET 64905 -BV 46769 -BVC 60580 -BVDV 64201 -BVH 65452 -BVI 61818 -BVLGARI 63601 -BVMUndergroundHipHop 61472 -BVS 64905 -BVT 64423 -BW 49682 -BWC 62331 -BWH 59164 -BWI 60580 -BWIA 63991 -BWM 64657 -BWO 64423 -BWP 60856 -BWR 64905 -BWSR 63792 -BWV 57609 -BWW 61051 -BX 54902 -BY 40433 -BYE 60670 -BYO 59774 -BYOB 61472 -BYP 63077 -BYRON 63792 -BYTE 62762 -BYU 54992 -BZ 57524 -BZA 65452 -BZD 62613 -Ba 51610 -BaF 65452 -BaP 64423 -BaSrCu 63077 -Baa 62066 -Baad 63245 -Baal 63077 -Baan 56585 -Baas 64423 -Bab 63991 -Baba 53549 -Babak 62613 -Babalu 65452 -Babar 64201 -Babb 60321 -Babbage 64423 -Babbitt 61472 -Babble 58860 -Babbler 62613 -Babbling 64657 -Babcock 54622 -Babe 48629 -Babel 55250 -BabelFish 60000 -Babelgum 63991 -Baber 65452 -Babergh 64201 -Babes 47417 -Babette 61362 -Babi 61362 -Babiana 64905 -Babies 45565 -Babin 62917 -Babolat 62331 -Baboon 65170 -Babs 61699 -Babson 59560 -Babu 57653 -Baby 36687 -Baby's 55226 -BabyAge 61362 -BabyCenter 54835 -BabyCentre 65170 -BabyLegs 65452 -BabyZone 64423 -Babyboi 62196 -Babybotte 60952 -Babydoll 60078 -Babydolls 63245 -Babyface 60157 -Babyliss 59101 -Babylock 65170 -Babylon 51202 -Babylonian 61818 -Babys 62613 -Babyshambles 65452 -Babysitter 57482 -Babysitters 57199 -Babysitting 57923 -Babywear 64657 -Babywearing 63077 -Babyz 60856 -Bac 62762 -Baca 58745 -Bacall 63601 -Bacardi 58417 -Bacarra 62613 -Baccalaureate 58802 -Baccarat 57923 -Bacchi 62762 -Bacchus 58313 -Bacco 63991 -Bach 50832 -Bach's 59848 -Bachan 65452 -Bacharach 59774 -Bachchan 56721 -Bache 64905 -Bachelor 46874 -Bachelor's 50848 -Bachelorette 53779 -Bachelors 55657 -Bacher 61940 -Bachman 58632 -Bachmann 54857 -Bachmann's 61152 -Bachna 60580 -Bacillus 52074 -Back 32425 -BackEnd 63601 -BackOffice 63601 -BackOnTopps 59923 -BackTrack 64657 -BackUp 63419 -Backboard 63077 -Backbone 57785 -Backcountry 57199 -Backdoor 62066 -Backdrop 61256 -Backdrops 64905 -Backed 55906 -Backend 58113 -Backer 61940 -Backers 57923 -Backfile 65170 -Backfiles 65170 -Backfill 65170 -Backfire 60856 -Backflip 62066 -Backflow 63792 -Backgammon 57199 -Background 43967 -BackgroundColor 61940 -Backgrounder 61051 -Backgrounders 62196 -Backgrounds 48519 -Backhand 61940 -Backhoe 58577 -Backing 53847 -Backlash 60762 -Backless 62762 -Backlight 59774 -Backlinks 55604 -Backlit 59702 -Backlog 60078 -Backman 63601 -Backorder 55821 -Backorders 62917 -Backpack 50136 -Backpacker 58262 -BackpackerMagazine 63601 -Backpackers 56170 -Backpacking 55373 -Backpacks 50890 -Backplane 63601 -Backplate 65452 -Backports 55299 -Backrest 62762 -Backroads 63077 -Backroom 63601 -Backs 52609 -Backscatter 60321 -Backseat 60157 -Backside 64201 -Backspin 65452 -Backsplash 61584 -Backsplashes 63419 -Backstage 49196 -Backstory 62196 -Backstreet 55849 -Backstroke 61699 -Backtrack 65452 -Backup 42976 -Backups 57482 -Backus 64201 -Backward 57970 -Backwards 59774 -Backwash 60762 -Backwater 62762 -Backwaters 64423 -Backwoods 62613 -Backyard 51531 -Backyardigans 61256 -Bacolod 61051 -Bacon 50832 -Bacon's 62613 -Bacteria 52210 -Bacterial 51560 -Bactericidal 63991 -Bacteriol 57566 -Bacteriological 62613 -Bacteriology 57970 -Bacteriophage 62331 -Bacterium 64905 -Bacteroides 64201 -Bactroban 59774 -Bactérie 63601 -Bacula 65170 -Bad 37803 -Bad's 61472 -Bada 62613 -Badajoz 62613 -Badal 64423 -Badan 63077 -Badass 61699 -Badawi 64423 -Badd 63077 -Baddeley 63077 -Baddest 62613 -Bade 64423 -Baden 55500 -Bader 58632 -Badfinger 65452 -Badge 47283 -Badger 52303 -Badgers 57440 -Badges 49296 -Badgley 57831 -Badia 63419 -Badlands 58065 -Badly 58313 -Badman 63601 -Badminton 51996 -Badpuppy 65170 -Badr 63077 -Badri 64905 -Badric 62762 -Badu 58632 -Bae 61940 -Baeble 64423 -Baek 64657 -Baelgun 60670 -Baer 56935 -Baers 63991 -Baez 60952 -Bafa 63245 -Baffin 62469 -Baffle 63792 -Baffled 60952 -Baffler 64423 -Bag 42038 -Baga 64201 -Bagby 65170 -Bagdad 62762 -Bagel 58313 -Bagels 56388 -Bagg 61818 -Baggage 55906 -Baggallini 59702 -Bagged 62469 -Bagger 63245 -Baggett 61818 -Bagging 63991 -Baggins 64657 -Baggot 64905 -Baggs 63601 -Baggy 62331 -Bagh 63077 -Baghdad 50046 -Baghdad's 63601 -Baghdatis 65452 -Bagi 64905 -Baginsky 64657 -Bagless 58919 -Bagley 61256 -Bagman 63991 -Bagnall 65170 -Bago 64201 -Bagong 63419 -Bagpipe 65170 -Bagpipes 63077 -Bags 41738 -Bagsbuy 61362 -Bagster 60670 -Baguette 60405 -Baguio 59357 -Bah 64201 -Baha 59630 -Baha'i 57358 -Baha'is 64657 -Baha'u'llah 65452 -Bahadur 59702 -Bahadurgarh 65170 -Bahai 62469 -Bahama 55766 -Bahamas 44666 -Bahamasair 52968 -Bahamian 60000 -Bahamut 61051 -Bahar 62331 -Bahasa 48368 -BahasaIndonesia 57160 -Bahia 55684 -Bahk 62762 -Bahl 64423 -Bahn 60580 -Bahnhof 62762 -Bahr 62066 -Bahrain 45585 -Bahraini 61362 -Bahram 65452 -Bahru 61152 -Baht 55474 -Bahu 61940 -Bai 56110 -Baia 62762 -Baidu 62331 -Baie 60670 -Baier 63991 -Baikal 61584 -Bail 54207 -Baila 62762 -Bailando 64201 -Baile 60157 -Bailey 48182 -Bailey's 57524 -Baileys 60238 -Bailiff 62613 -Bailing 63991 -Baillie 62196 -Bailout 48776 -Bailouts 65170 -Bails 61818 -Baily 64201 -Bain 56356 -Bainbridge 55526 -Baines 60670 -Bains 61152 -Bair 62196 -Baird 54835 -Baird's 63792 -Bairnsdale 64905 -Bairro 65452 -Bairstow 62331 -Bais 63245 -Baissea 64657 -Bait 52622 -Baits 56791 -Baja 52280 -BajaCactus 65170 -Bajaj 58313 -Bajaur 63792 -Bajo 61152 -Bajos 64201 -Bajwa 63601 -Bak 58212 -Baka 60670 -Bakaly 65452 -Bake 50638 -Baked 51396 -Bakelite 60856 -Baker 44761 -Baker's 55037 -Bakeries 55250 -Bakers 55526 -Bakersfield 52280 -Bakery 49867 -Bakes 64657 -Bakeware 57278 -Bakewell 61818 -Baki 65170 -Baking 49972 -Bakke 63245 -Bakken 65452 -Bakker 58802 -Baklava 63991 -Bakoven 63419 -Bakshi 65452 -Bakteriol 63991 -Bakthi 65452 -Baku 57876 -Bakugan 57923 -Bakumatsu 64201 -Bal 57831 -Bala 56485 -Balachandran 65170 -Balaclava 64905 -Balai 63792 -Balaji 59923 -Balak 59560 -Balakrishnan 64657 -Balamory 62762 -Balan 59702 -Balance 45249 -Balanced 52886 -Balancer 62331 -Balancers 64423 -Balances 56827 -Balanchine 64905 -Balanchine's 65452 -Balancing 52661 -Balanites 63077 -Balasubramanian 64905 -Balaton 63991 -Balazs 63077 -Balboa 55500 -Balch 60580 -Balchik 65170 -Balcombe 64423 -Balconies 63601 -Balcony 53613 -Bald 53454 -Baldelli 62613 -Baldessarini 65452 -Baldev 65170 -Baldi 65452 -Balding 61584 -Baldivis 64657 -Baldness 62762 -Baldo 65452 -Baldock 65170 -Baldor 60321 -Baldrige 64423 -Baldur's 58417 -Baldwin 49268 -Baldwin's 64657 -Baldwins 62469 -Baldy 65170 -Bale 55226 -Balearic 56080 -Balearics 59491 -Balefill 64657 -Balen 65170 -Balenciaga 57524 -Balers 64657 -Bales 60238 -Balfour 55906 -Balfour's 65452 -Balham 62331 -Bali 46115 -Bali's 62469 -BaliMermaid 64657 -Balin 62762 -Balinese 58212 -Baliye 60856 -Balk 63419 -Balkan 53847 -Balkans 55578 -Balkin 64905 -Balkinization 63245 -Balko 65170 -Ball 42116 -Ball's 62917 -BallHype 60078 -Balla 64201 -Ballack 59630 -Ballad 55202 -Ballade 64201 -Ballads 59702 -Ballantine 60952 -Ballantine's 65170 -Ballantyne 60405 -Ballarat 55766 -Ballard 51996 -Ballas 64423 -Ballast 55154 -Ballasts 62762 -Ballater 64657 -Ballbusting 64423 -Ballentine 64905 -Baller 61051 -Ballerina 57923 -Ballers 63419 -Ballesteros 58688 -Ballet 49163 -Ballets 61472 -Ballfield 65170 -Ballhype 62613 -Ballicom 62917 -Ballin 65452 -Ballina 61472 -Ballinger 64423 -Ballinteer 64423 -Ballistic 58212 -Ballistics 64201 -Ballistix 60856 -Ballmer 57084 -Balloch 65170 -Ballon 61584 -Balloon 50469 -Ballooning 60492 -Balloons 52872 -Balloony 64905 -Ballot 53095 -Balloting 64905 -Ballotpedia 65452 -Ballots 59848 -Ballou 62469 -Ballpark 57399 -Ballpen 55037 -Ballpoint 60670 -Ballroom 51052 -Balls 47607 -Ballsbridge 64905 -Ballston 61362 -Bally 56080 -Bally's 64657 -Ballyclare 64905 -Ballymena 59702 -Ballymun 64201 -Ballyshannon 63792 -Ballz 64201 -Balm 54992 -Balmain 58113 -Balmer 63601 -Balmoral 58365 -Balms 64423 -Balnazzar 59491 -Baloch 64657 -Balochistan 64201 -Balog 65170 -Balogh 63601 -Balquhidder 64657 -Balrog 65170 -Balsa 61699 -Balsam 60405 -Balsamic 60762 -Balt 63601 -Baltes 63245 -Balthasar 65452 -Balthaser 65170 -Balthazar 62469 -Balthier 64423 -Balti 62613 -Baltic 50840 -Baltimore 43230 -Baltimore's 60405 -Balto 65452 -Balun 65170 -Balustrade 65452 -Balwinder 65452 -Balwyn 65170 -Balzac 64657 -Balzer 64657 -Bam 57876 -BamHI 56200 -Bama 58979 -BamaNation 59702 -Bamako 65170 -Bambaataa 63792 -Bambang 64905 -Bambara 59424 -Bambee 62917 -Bamber 62762 -Bamberg 58262 -Bamberger 64905 -Bambi 58417 -Bambini 64657 -Bambino 63419 -Bamboo 49405 -Bamboozle 65170 -Bambu 64905 -Bamburgh 64201 -Bamburi 61256 -Bamfield 64905 -Bamford 61940 -Bampton 65170 -Ban 48208 -Ban'ethil 65452 -BanManPro 59424 -Bana 60000 -Banach 54643 -Banal 64905 -Banana 49157 -BananaBucks 63991 -BananaStock 61699 -Bananarama 61051 -Bananas 53646 -Bananastock 65170 -Banaras 63601 -Banashankari 65170 -Banbridge 62917 -Banbury 57122 -Banc 60405 -Banca 59923 -Banco 54439 -Bancorp 54622 -Bancroft 54924 -Bancshares 61256 -Bancuri 65170 -Band 40326 -Band's 58745 -BandWidth 64905 -Banda 53066 -Bandage 61152 -Bandages 62196 -Bandai 55474 -Bandana 61256 -Bandanas 60405 -Bandar 60952 -Bandara 61362 -Bandari 65170 -Bandas 63792 -Bande 64201 -Bandeau 62762 -Banded 59848 -Banden 64657 -Bandera 60000 -Banderas 60492 -Bandhan 63077 -Bandicoot 62066 -Banding 61940 -Bandit 55448 -Bandito 65170 -Bandits 58802 -Bando 64423 -Bandolier 64201 -Bandon 59630 -Bandpass 62469 -Bandra 61940 -Bands 46449 -Bandsaw 64201 -Bandstand 62762 -Bandsters 60000 -Bandung 58577 -Bandwagon 62331 -Bandwidth 48991 -Bandy 63245 -Bane 58313 -Banerjee 57046 -Banff 53066 -Banffshire 62917 -Banfield 62762 -Bang 48586 -Bangalore 47283 -Bangaru 61362 -Bangbros 62066 -Bangbus 65452 -Banged 60580 -Banger 59774 -Bangers 58745 -Bangin 64423 -Banging 59702 -Bangkok 46152 -Bangkok's 64201 -Bangla 55766 -Banglades 65452 -Bangladesh 44583 -Bangladesh's 63077 -Bangladeshi 56721 -Bangladeshis 65452 -Bangle 55373 -Bangles 56935 -Bango 64657 -Bangor 52968 -Bangs 57084 -Bangsamoro 61818 -Banhart 61472 -Bani 63601 -Banish 64201 -Banister 60157 -Banja 64657 -Banjara 64423 -Banjo 53438 -Banjos 62613 -Banjul 63792 -Bank 37490 -Bank's 53095 -BankAtlantic 63077 -BankShamil 63991 -Banka 65452 -Bankai 64657 -Bankcard 64905 -Banke 64905 -Banker 51463 -Banker's 56756 -Bankers 54096 -Bankhead 61940 -Banking 42629 -Banknorth 63077 -Banknotes 60952 -Bankrate 59491 -Bankrupt 61699 -Bankruptcies 59357 -Bankruptcy 44537 -Banks 42337 -Banksia 63077 -Bankside 65170 -Bankstown 59227 -Banksy 56827 -Banksy's 64201 -Banlieue 63792 -Bannack 65452 -Bannan 64423 -Banned 49886 -Banner 44954 -Bannerer 65170 -Bannerman 64423 -Banners 50033 -Banning 58065 -Bannister 58919 -Bannockburn 63077 -Bannon 63245 -Banoo 60952 -Banos 58017 -Banque 58860 -Banquet 49285 -Banqueting 62331 -Banquets 61256 -Bans 58688 -Bansal 62196 -Banshee 60000 -Bansko 60762 -Banstead 63419 -Banta 62917 -Bantam 57199 -Banteay 63077 -Banter 56485 -Bantex 58417 -Banting 65170 -Banton 63245 -Bantry 62331 -Bantu 60580 -Bantuan 62196 -Banu 65452 -Banus 58577 -Banville 61584 -Banyan 60321 -Banyo 65452 -Banzai 59560 -BanzaiOnline 62762 -Bao 56262 -Baobab 65452 -Bape 61699 -Baptism 56231 -Baptismal 64905 -Baptist 46285 -Baptista 63077 -Baptiste 59292 -Baptists 61940 -Baptized 62917 -Bar 38948 -Bar's 62762 -Bara 61584 -Baraboo 60405 -Barack 40240 -Barack's 60762 -BarackTV 57923 -Barak 57278 -Baraka 58979 -Baran 63792 -Barangay 57970 -Barangays 65452 -Barat 60856 -Barats 61256 -Barb 53679 -Barb's 64201 -Barba 60762 -Barbados 45855 -Barbara 43684 -Barbara's 60856 -Barbarella 62613 -Barbaresco 65170 -Barbarian 58162 -Barbarian's 65452 -Barbarians 60157 -Barbaro 64657 -Barbary 62469 -Barbe 64423 -Barbeau 63419 -Barbecue 50782 -Barbecued 60405 -Barbecues 60492 -Barbecuing 64201 -Barbed 59292 -Barbee 62917 -Barbell 61584 -Barbells 64657 -Barbeque 55500 -Barbeques 65170 -Barber 49296 -Barber's 62613 -Barbera 60078 -Barbering 65452 -Barbers 56585 -Barbershop 61699 -Barberton 64905 -Barberville 64657 -Barbet 65170 -Barbi 63792 -Barbican 51620 -Barbie 48861 -Barbieanne 63601 -Barbieri 62196 -Barbies 61940 -Barbizon 64657 -Barbosa 60405 -Barbour 57696 -Barbra 57831 -Barbreck 65452 -Barbs 57831 -Barbuda 47311 -Barby 65452 -Barca 61152 -Barcel 64423 -Barcelo 62066 -Barcelona 47314 -Barcelona's 64201 -Barceloneta 62762 -Barclay 55992 -Barclaycard 62196 -Barclays 51942 -Barco 60762 -Barcode 51377 -Barcodes 64657 -Barcoding 64201 -Bard 55684 -Bardeen 65452 -Bardem 58365 -Barden 64201 -Bardia 61362 -Bardon 63419 -Bardot 61940 -Bards 62066 -Bardstown 63991 -Bardwell 65170 -Bare 49511 -Bareback 56972 -Barebacking 64201 -Barebone 57524 -Barebones 58688 -Barefoot 54321 -Bareilles 58065 -Bareilly 65452 -Barely 54969 -BarelyPolitical 64657 -Barenaked 57278 -Barenboim 64423 -Barents 60492 -Bares 63601 -Barewalls 62762 -Barfield 63419 -Barfland 64905 -Barfly 64905 -Bargain 45216 -Bargaining 56687 -Bargains 47420 -Barge 58802 -Barger 60762 -Barges 63792 -Barghouti 65452 -Bargmann 65170 -Barham 62917 -Bari 58113 -Bariatric 56899 -Baril 64905 -Bariloche 62762 -Baring 62613 -Barisan 63245 -Barista 58802 -Baritone 60492 -Barium 58065 -Bark 53423 -Barker 50026 -Barker's 59774 -Barkers 63991 -Barkha 63792 -Barking 53226 -Barkley 55178 -Barks 60492 -Barksdale 61584 -Barkshire 63792 -Barley 53613 -Barleycorn 64905 -Barlow 54188 -Barman 64657 -Barmera 63419 -Barminski 65170 -Barn 48314 -Barna 62066 -Barnabas 60157 -Barnaby 61699 -Barnacle 60762 -Barnard 55963 -Barnardgirl 63077 -Barnardo's 62917 -Barnegat 62613 -Barnes 47939 -Barnes's 65452 -Barnesville 65170 -Barnet 53830 -Barnett 53167 -Barney 51034 -Barney's 58979 -Barneys 59923 -Barnhart 62196 -Barnhill 61362 -Barnoldswick 62762 -Barns 59491 -Barnsley 53517 -Barnstable 60078 -Barnstaple 62331 -Barnum 59039 -Barnwell 62762 -Barnyard 59848 -Barocco 64423 -Baroda 60238 -Barolo 58470 -Barometer 61051 -Barometric 65452 -Baron 49841 -Baron's 63419 -Barone 58313 -Baroness 57278 -Baronetage 60078 -Barons 59292 -Baroque 53470 -Barossa 58065 -Barr 52571 -Barr's 63792 -Barra 57482 -Barrack 58632 -Barracks 57278 -Barracuda 54479 -Barrage 59164 -Barranco 65452 -Barranquilla 64201 -Barras 64905 -Barratt 61940 -Barre 57122 -Barred 60157 -Barrel 50591 -Barrels 57238 -Barren 60952 -Barrens 56899 -Barrera 61818 -Barret 63419 -Barrett 50734 -Barrett's 58017 -Barrhaven 64423 -Barrhead 57318 -Barricade 63601 -Barrick 60856 -Barrie 51140 -BarrieMiles 62917 -Barrier 50881 -Barriers 52559 -Barring 62066 -Barrington 52739 -Barrio 56791 -Barrios 63245 -Barrister 61152 -Barristers 61472 -Barro 61584 -Barron 54399 -Barron's 53646 -Barrons 59292 -Barros 58470 -Barroso 61256 -Barrow 53392 -Barrowman 60078 -Barrows 60856 -Barry 44727 -Barry's 56324 -Barrymore 55474 -Barrymore's 64905 -Barróg 65170 -Bars 42771 -Barshai 64657 -Barska 63601 -Barsoom 64905 -Barstool 62917 -Barstools 62469 -Barstow 60856 -Bart 51211 -Bart's 62917 -Barta 65452 -Bartek 64657 -Bartel 63601 -Bartels 62613 -Bartender 57009 -Bartenders 53952 -Bartending 60952 -Barter 59039 -Barteria 63077 -Barth 59630 -Barthel 64905 -Barthelemy 59848 -Barthes 63792 -Barthilas 60856 -Bartholomeusz 64201 -Bartholomew 58017 -Bartholomew's 61256 -Barthélemy 62469 -Bartimaeus 65170 -Bartleby 61940 -Bartlesville 62196 -Bartlet 59923 -Bartlett 51804 -Bartlett's 62331 -Bartley 60492 -Bartok 63792 -Bartoli 63245 -Bartolini 64201 -Bartolo 62762 -Bartolomeo 59164 -Barton 49336 -Barton's 62469 -Bartonella 62917 -Bartosz 63077 -Bartow 58979 -Bartram 63245 -Barts 59101 -Bartsch 65170 -Barty 64657 -Bartz 62196 -Baru 61584 -Baruch 58745 -Barun 65170 -Barus 64905 -Barut 61152 -Barwa 64905 -Barware 58523 -Barwick 63991 -Barwon 63991 -Baryon 64657 -Baryshnikov 64423 -Bas 56452 -Basa 64423 -Basal 54439 -Basalt 57876 -Basaran 63792 -Bascal 65452 -Basco 65452 -Bascom 63245 -Base 41931 -Baseball 39696 -Baseball's 58262 -Baseballs 62613 -Baseband 62331 -Basecamp 64423 -Based 40780 -Basel 52007 -Baseline 48882 -Basement 50192 -Basements 60580 -Basen 63792 -Basenji 62469 -Basenotes 63419 -Bases 53847 -Basescu 64423 -Bash 51963 -Basha 65452 -Bashar 64423 -Basher 65170 -Bashing 61818 -Bashir 59923 -Bashirah 64201 -Bashkir 63245 -Basic 39786 -Basically 52584 -Basics 45585 -Basidiospores 62196 -Basie 63601 -Basil 53010 -Basil's 64423 -Basildon 57609 -Basile 63792 -Basilica 58688 -Basilicata 60856 -Basilisk 62762 -Basin 47664 -Basing 61940 -Basinger 60856 -Basingstoke 57046 -Basins 55821 -Basis 51731 -Basix 64657 -Baska 65452 -Basket 42796 -Basketball 40112 -Basketballs 64201 -Baskets 48576 -Baskin 62917 -Basking 58919 -Basle 63601 -Basmati 64201 -Basque 53138 -Basques 64657 -Basquiat 64905 -Basra 57440 -Bass 43303 -Bassai 63419 -Bassani 64423 -Bassas 60238 -Basse 62613 -Basses 58688 -Basset 59424 -Bassetlaw 65170 -Bassett 55130 -Bassey 61699 -Basshunter 56862 -Bassi 64423 -Bassin 63245 -Bassinet 60670 -Bassinets 56356 -Bassist 61584 -Bassline 56862 -Bassmaster 64201 -Bassmasters 63991 -Basso 61152 -Basson 63419 -Bassoon 59357 -Basswood 64657 -Bast 62066 -Bastarache 64657 -Bastard 55323 -Bastardly 60952 -Bastards 59923 -Bastia 64905 -Bastian 60492 -Bastiat 65452 -Bastien 60157 -Bastille 60580 -Bastion 60000 -Bastogne 64905 -Bastrop 60856 -Bastyr 65452 -Basu 57009 -Bat 49992 -Bataan 63077 -Bataille 63601 -Batak 60405 -Batali 61940 -Batanga 60580 -Batavia 58365 -Batch 49739 -BatchCampaign 63991 -Batchelor 60952 -Batches 62066 -Bate 60856 -Bateau 58577 -Batelco 58523 -Bateman 57970 -Batemans 62196 -Baten 62331 -Bates 50873 -Bateson 61584 -Batesville 61940 -Batgirl 63245 -Bath 42846 -Bath's 64905 -Bathgate 63419 -Bathing 54321 -Bathory 63792 -Bathrobe 59039 -Bathrobes 62331 -Bathroom 46050 -Bathrooms 48505 -Baths 48975 -Bathtime 63245 -Bathtub 56652 -Bathtubs 62613 -Bathurst 55448 -Bathymetric 64905 -Bathyraja 64657 -Batik 60670 -Batis 63792 -Batista 57696 -Batiste 65170 -Batley 62469 -Batman 46569 -Batman's 61051 -Batmobile 64905 -Batok 65452 -Batol 64423 -Baton 48949 -Batons 64657 -Batra 62613 -Batre 61818 -Bats 53423 -Batsford 64905 -Batson 62613 -Batt 62762 -Battaglia 63419 -Battal 61362 -Battalion 53517 -Battalions 61256 -Battech 61152 -Battelle 57566 -Battelle's 63419 -Batten 61051 -Batter 57482 -Battered 60157 -Batterie 60952 -Batteries 44859 -Batters 65170 -Battersby 64201 -Battersea 57923 -Battery 42467 -Batting 53316 -Battista 63601 -Battisti 62469 -Battle 43131 -BattleCruiser 64423 -BattleField 63792 -Battlecruiser 61152 -Battledome 59774 -Battlefield 49458 -Battlefields 63245 -Battleford 61584 -Battlefront 56652 -Battlegr 62762 -Battleground 56293 -Battlegrounds 56618 -Battlegroup 57696 -Battles 52546 -Battleship 58523 -Battleships 64905 -Battlestar 53010 -Battlestations 65452 -Battletoads 64423 -Battling 57970 -Batu 62196 -Bau 64905 -Baucus 64657 -Baud 61584 -Baudelaire 62762 -Bauer 50742 -Baugh 63991 -Baughman 63419 -Bauhaus 60238 -Baulkham 61940 -Baum 55398 -Bauman 61362 -Baumann 59560 -Baume 61051 -Baumeister 65170 -Baumgarten 64657 -Baumgartner 61818 -Baur 64201 -Bausch 58688 -Baustoffe 65170 -Bautista 59357 -Bava 63991 -Bavaria 57876 -Bavarian 55373 -Bawa 64657 -Bawaba 64423 -Bawah 65452 -Baws 63991 -Bax 55766 -Baxaras 64905 -Baxley 64201 -Baxter 51043 -Baxter's 65170 -Bay 37810 -Bay's 57923 -BayImg 57696 -BayWords 57696 -Baya 62196 -Bayada 59560 -Bayan 62762 -Bayantel 64905 -Bayard 59630 -Baybee 65452 -Bayberry 64423 -Bayer 52661 -Bayern 55373 -Bayes 60321 -Bayesian 52778 -Bayfield 62196 -Bayfront 62196 -Bayh 61584 -Bayless 61818 -Bayley 62762 -Bayleys 63601 -Bayliner 59702 -Baylis 63419 -Bayliss 61472 -Baylor 51721 -Baymont 60856 -Bayne 64423 -Bayonet 62066 -Bayonne 58802 -Bayou 52725 -Bayreuth 64657 -Bays 54622 -Bayshore 60157 -Bayside 54360 -Bayswater 60000 -Baytown 60157 -Bayview 57278 -Bayville 64201 -Baywatch 60580 -Baywood 62917 -Baz 60078 -Baza 62613 -Bazaar 51257 -Bazaars 64201 -Bazan 64657 -Bazar 62066 -Bazooka 60078 -Bazzar 64905 -Bazzaz 64905 -Bb 55373 -Bball 65170 -Bbc 61256 -Bbq 60762 -Bbw 61818 -Bc 61256 -Bcc 61362 -Bcd 59630 -Bch 64657 -Bd 59227 -Bday 59923 -Bdfd 63077 -Bdrm 62762 -Bdsm 64905 -Be 34841 -BeNOR 63792 -BeOS 54459 -Bea 56935 -Beach 37609 -Beach's 63077 -BeachBody 64657 -Beachbody 61940 -Beachcomber 63792 -Beaches 50006 -Beachfront 55578 -Beachley 59848 -Beachmere 64423 -Beachner 64657 -Beachport 63991 -Beachside 62613 -Beachwear 63077 -Beachwood 60856 -Beacon 49745 -Beacons 60078 -Beaconsfield 59357 -Bead 51600 -Beaded 53597 -Beading 58802 -Beadle 64657 -Beads 50343 -Beadworks 64657 -Beagle 55474 -Beagles 61584 -Beak 63601 -Beaker 61152 -Beal 59560 -Beal's 65452 -Beale 58313 -Beall 62469 -Bealls 64201 -Beals 60157 -Beam 50094 -Beaman 65170 -Beamer 61256 -Beaming 62066 -Beaminster 64905 -Beamline 65452 -Beams 56827 -Bean 48345 -Bean's 62469 -Beane 64905 -Beanie 52423 -Beanies 57318 -Beano 63245 -Beans 50758 -Beanstalk 58745 -Beantown 61051 -Bear 43573 -Bear's 59164 -BearFlix 63991 -BearShare 60321 -Bearcat 63601 -Bearcats 59923 -Beard 53882 -Bearded 56791 -Bearden 63601 -Beardie 65170 -Beards 62762 -Beardsley 62613 -Bearer 58162 -Bearers 65452 -Bearing 51229 -BearingPoint 64905 -Bearings 53549 -Bearish 61584 -Bearpaw 63419 -Bears 45031 -Bearshare 65170 -Bearskin 52940 -Beart 62196 -Beartooth 64905 -Beary 65452 -Beasley 56080 -Beasley's 65452 -Beast 50335 -Beastiality 63601 -Beastie 55398 -Beastmaster 63245 -Beasts 56935 -Beat 44477 -BeatLab 65170 -Beata 61152 -Beatbox 55906 -Beatboxing 65452 -Beatdown 61584 -Beate 62331 -Beaten 55766 -Beater 59491 -Beaters 63601 -Beating 53226 -Beatitudes 64905 -Beatle 60157 -Beatles 48721 -Beatnik 65170 -Beaton 62331 -Beatport 57046 -Beatrice 55250 -Beatrix 57278 -Beatriz 58065 -Beats 50530 -Beattie 57785 -Beatty 55526 -Beatty's 65170 -Beaty 65452 -Beatz 60238 -Beau 54283 -Beauchamp 60670 -Beaudesert 64905 -Beaudoin 63991 -Beaufort 53988 -Beaujolais 65170 -Beaulieu 59039 -Beaumaris 61362 -Beaumont 54096 -Beaupain 60000 -Beauregard 60670 -Beaute 63419 -Beautician 65170 -Beauties 56687 -Beautification 58688 -Beautiful 42913 -Beautifully 54685 -Beauty 37533 -Beauty's 61152 -Beauté 61818 -Beauvais 65452 -Beauvoir 63991 -Beaux 62331 -Beaver 50350 -Beavercreek 64423 -Beavers 56388 -Beaverton 57831 -Beavis 56827 -Beazley 64423 -Bebe 56687 -BebeSounds 63991 -Bebington 63991 -Bebo 44865 -Bebop 57278 -Bec 62066 -Became 50006 -Because 39854 -Becca 56899 -Beccary 62066 -Beccles 63991 -Becher 64423 -Bechler 63419 -Bechler's 64905 -Bechtel 60405 -Bechuanaland 61152 -Beck 48571 -Beck's 60952 -Beckenham 61472 -Becker 51731 -Becker's 61699 -Beckerman 62762 -Beckers 61472 -Becket 62469 -Beckett 54857 -Beckett's 65170 -Beckford 58417 -Beckham 49163 -Beckham's 60157 -Becki 61051 -Beckie 63991 -Beckinsale 58017 -Beckley 57741 -Beckman 54706 -Beckmann 62469 -Becks 59164 -Beckton 62066 -Beckwith 60405 -Becky 50328 -Becky's 63245 -Beclomethasone 65452 -Beco 64423 -Become 41120 -Becomes 52686 -Becoming 49828 -Becta 58979 -Becton 58745 -Bed 41366 -Bedale 65170 -Bedard 62917 -Bedazzled 64905 -Bedding 46941 -Beddington 64905 -Beddow 64423 -Bede 62917 -Bedell 65170 -Bedesem 64423 -Bedfellows 63792 -Bedford 48706 -Bedfordshire 51670 -Bedi 60405 -Bedingfi 62469 -Bedingfield 54706 -Bedlam 60405 -Bedlington 61818 -Bedminster 65170 -Bedok 63991 -Bedouin 60157 -Bedrock 60405 -Bedroom 44853 -Bedrooms 47034 -Bedrosian 64423 -Beds 46491 -Bedside 58017 -Bedsits 63245 -Bedskirt 61818 -Bedtime 56324 -Bedwetting 62331 -Bedworld 64423 -Bedworth 63991 -Bee 46884 -Bee's 61051 -Beeb 63419 -Beebe 60157 -Beech 53095 -Beecham 61818 -Beechcraft 63991 -Beecher 59357 -Beeches 63991 -Beechill 65452 -Beechmont 64657 -Beechwood 60856 -Beechworth 63419 -Beecroft 64423 -Beef 47919 -Beefy 63792 -Beehive 59039 -Beek 59702 -Beekeeper 65452 -Beekeepers 62613 -Beekeeping 65452 -Beekman 61818 -Beeler 65452 -Beeline 62331 -Beeman 64657 -Beemer 65452 -BeemerRiderBoB 62917 -Been 45758 -Beene 62469 -Beenie 64657 -Beenleigh 62762 -Beep 60000 -Beer 44117 -Beer's 65170 -BeerAdvocate 59424 -BeerBandit 64657 -BeerFly 64657 -Beerdom 59848 -Beers 54835 -Bees 50402 -Beesley 63419 -Beeston 64657 -Beeswax 61051 -Beet 57399 -Beethoven 54133 -Beethoven's 58113 -Beetle 52018 -Beetlejuice 60856 -Beetles 58212 -Beetroot 61152 -Beets 61362 -Beez 63245 -Before 40010 -Beg 60762 -Bega 60405 -Began 57785 -Beggar's 60580 -Beggars 59702 -Begging 62762 -Beggs 62917 -Begin 49163 -Begining 61818 -Beginner 48454 -Beginner's 53882 -Beginners 49789 -Beginning 45857 -Beginnings 55711 -Begins 49376 -Begley 62917 -Begonia 61051 -Begum 64201 -Begun 59702 -Behalf 57609 -Behance 59424 -Behar 60580 -Behav 54643 -Behave 62917 -Behaving 60321 -Behavior 46714 -Behavioral 47293 -Behaviors 57524 -Behaviour 51284 -Behavioural 54992 -Behaviours 62066 -Beheaded 65452 -Behemoth 59491 -Behind 44289 -Behold 58802 -Beholder 62331 -Behr 59848 -Behrens 60492 -Behring 63792 -Behringer 55821 -Behçet's 62762 -Bei 53970 -Beige 52198 -Beijing 43303 -Beijing's 57923 -Beilstein 63077 -Being 44174 -Beings 61362 -Beirut 54041 -Beit 60000 -Beitrag 61472 -Beiträge 60492 -Bejeweled 58802 -Bejoording 62917 -Bekele 64423 -Bekijk 64201 -Bekins 64905 -Bekman 64657 -Beko 61051 -Bel 51804 -Bela 55578 -Belaevski 63077 -Belafonte 64423 -Belair 61152 -Belanger 63601 -Belarus 45574 -Belarusian 55793 -Belated 61584 -Belay 63991 -Belcher 61256 -Belchertown 62469 -Belconnen 64905 -Belden 58523 -Belding 64423 -Belek 56899 -Belem 65452 -Belen 60856 -Beleriand 65170 -Belew 65170 -Belews 61818 -Beleza 65170 -Belfast 48404 -Belfer 62331 -Belford 63792 -Belfry 61699 -Belg 61051 -Belgaum 62917 -Belge 62762 -Belgian 48662 -Belgians 63601 -Belgica 64905 -Belgie 65452 -Belgien 65452 -Belgique 54479 -Belgium 41563 -Belgium's 63419 -België 57278 -Belgrade 54813 -Belgrano 65170 -Belgrave 59164 -Belgravia 61940 -Belichick 59774 -Belief 55711 -Beliefnet 63245 -Beliefs 53830 -Believe 47057 -Believed 61472 -Believer 59702 -Believers 58632 -Believes 62331 -Believing 57278 -Belinda 54581 -Belize 46063 -Belk 63077 -Belkan 64905 -Belkin 50402 -Belknap 60078 -Bell 43129 -Bell's 55323 -BellSouth 56050 -BellSouth's 62762 -Bella 48519 -Bella's 59848 -BellaSugar 64423 -Bellacor 58802 -Belladonna 60492 -Bellagio 59227 -Bellaire 60492 -Bellamy 58745 -Bellarmine 64201 -Bellary 63601 -Bellas 61362 -Bellavista 61472 -Bellazon 64657 -Bellbrook 64905 -Belle 47489 -Bellefontaine 63419 -Bellerive 64423 -Bellerophon 65170 -Bellerose 65170 -Belles 62331 -Belleview 61940 -Belleville 51580 -Bellevue 51772 -Bellezza 63077 -Bellflower 60321 -Belli 63601 -Bellies 64657 -Belling 62469 -Bellingen 62469 -Bellingham 53882 -Bellini 61051 -Bellis 63991 -Bellissimo 57318 -Belliveau 57009 -Bellmore 65452 -Bello 58577 -Belloc 65452 -Bellona 62917 -Bellow 63601 -Bellows 58632 -Bellport 65452 -Bells 51752 -Bellshill 65170 -Belltown 62066 -Bellu 62762 -Bellucci 58802 -Bellville 63077 -Bellwether 63245 -Bellwood 60856 -Belly 49860 -BellyBelly 58688 -Bellydance 62917 -Belmar 61584 -Belmondo 62762 -Belmont 49860 -Belmore 62331 -Belo 56935 -Belohlavek 56110 -Beloit 56687 -Belong 56324 -Belonging 62066 -Belongs 59491 -Beloved 55526 -Below 43948 -Belper 63991 -Belsize 63991 -Belsky 64657 -Belson 65170 -Belt 45792 -Beltane 65452 -Belted 59357 -Belting 65170 -Beltline 63419 -Belton 59774 -Beltramino 64423 -Beltran 60580 -Belts 50101 -Beltsville 63077 -Beltway 57524 -BeltwayBlips 60492 -Beluga 59702 -Belushi 62917 -Belushis 65170 -Belvedere 55657 -Belvidere 61362 -Belvo 62762 -Belvoir 60238 -Bement 64905 -Bemidji 60405 -Bemis 57970 -Ben 40537 -Ben's 56170 -BenQ 53813 -Benadryl 63991 -Benalla 63245 -Benalmadena 64657 -Benassi 57358 -Benatar 63601 -Benavides 65170 -Benazir 57524 -Benbow 64423 -Bench 49572 -Benched 62066 -Benches 55060 -Benchmade 61818 -Benchmark 52152 -Benchmarking 53813 -Benchmarks 53226 -Benchrest 63601 -Benchtop 59923 -Benckiser 64905 -Bend 48821 -Benda 65452 -Bendel 64201 -Bender 54096 -Bender's 63991 -Benders 61051 -Bendigo 54969 -Bending 56110 -Bendis 64201 -Bendix 59630 -Bends 61152 -Bene 63792 -Beneath 53899 -Benedetti 63245 -Benedetto 62331 -Benedict 51731 -Benedict's 62613 -Benedictine 56687 -Benediction 65452 -Benedikt 64423 -Benefactor 62917 -Benefactors 63792 -Beneficial 56899 -Beneficially 63792 -Beneficiaries 61584 -Beneficiary 60670 -Benefit 46592 -Benefiting 61152 -Benefits 41951 -Benelli 60078 -Benelux 57084 -Benenson 63601 -Benet 60762 -Beneteau 62613 -Benetton 61584 -Benevolent 59630 -Benfica 62469 -Benfield 63077 -Bengal 52315 -Bengali 51846 -Bengals 52221 -Benge 63601 -Bengt 62066 -Benham 63991 -Beni 58632 -Benicia 63245 -Benicio 61940 -Benidorm 56200 -Benign 54857 -Benigno 63245 -Benihana 63419 -Benim 60670 -Benin 46966 -Benita 62196 -Benitez 57524 -Benitez's 65452 -Benito 56935 -Benjamin 46334 -Benjamin's 63991 -Benji 58017 -Benjy 64657 -Benn 59227 -Benner 63991 -Bennet 60670 -Bennett 47883 -Bennett's 60856 -Bennetts 61256 -Bennie 61818 -Bennigan's 63419 -Benning 62066 -Bennington 58577 -Bennison 62196 -Benno 64423 -Benny 51220 -Benny's 64905 -Beno 64905 -Benoit 53377 -Benq 60238 -Benross 64657 -Bens 59848 -Bensalem 61152 -Bensenville 63077 -Bensley 64201 -Benson 51690 -Benson's 62613 -Bensonhurst 64423 -Bent 53746 -Bentebent 63991 -Bentennoyado 63245 -Bentham 59848 -Benthic 62762 -Bentley 48252 -Bentley's 62469 -Bento 56262 -Benton 50983 -Bentonville 63077 -Bentz 64905 -Benumof 65452 -Benutzer 63419 -Benutzerbild 62613 -Benyamine 65170 -Benz 51835 -Benz's 61584 -BenzWorld 64201 -Benzene 58745 -Benzing 65170 -Benzodiazepine 64423 -Benzodiazepines 60952 -Benzyl 63792 -Beograd 63077 -Beolingus 64657 -Beowulf 57566 -Beppe 58162 -Beppo 62331 -Bequest 61940 -Bequests 63601 -Ber 65452 -Berardi 64423 -Beratung 64657 -Berbatov 61051 -Berber 60238 -Berd 65170 -Bere 64423 -Berea 60157 -Berean 64201 -Bereaved 64423 -Bereavement 56324 -Bereavements 64201 -Bereich 62613 -Berens 63991 -Berenson 64201 -Berenstain 65170 -Beresford 58470 -Beresfords 62917 -Beret 60952 -Bereta 61152 -Beretta 57046 -Berg 50791 -Berg's 60856 -Berga 61051 -Bergamo 62196 -Bergaueria 62066 -Bergdorf 64657 -Berge 63077 -Bergen 52256 -Bergener 64423 -Bergenfield 62331 -Berger 51985 -Bergerac 64905 -Bergeron 59923 -Berghaus 63077 -Berghe 64905 -Bergin 63245 -Bergman 55107 -Bergman's 62196 -Bergmann 62331 -Bergquist 63792 -Bergstrom 52339 -Berhad 62331 -Bericht 64905 -Berichte 64905 -Berimbau 64657 -Bering 56356 -Beringer 62066 -Berisha 64201 -Berita 64905 -Berjaya 64905 -Berk 61699 -Berkel 60405 -Berkeley 46546 -Berkeley's 62917 -Berkhamsted 61699 -Berklee 56972 -Berkley 55738 -Berkline 62613 -Berkman 61472 -Berkowitz 60000 -Berks 57876 -Berkshire 49602 -Berkshires 60238 -Berkus 64423 -Berle 64905 -BerliOS 58745 -Berlin 44664 -Berlin's 59848 -Berlina 62613 -Berliner 59424 -Berlingo 63601 -Berlioz 65170 -Berlusconi 58979 -Berlusconi's 64905 -Berman 52765 -Berman's 60238 -Bermejo 65170 -Bermejo's 62917 -Bermondsey 63419 -Bermuda 45448 -Bermuda's 64201 -Bermudas 63792 -Bermudez 64905 -Bern 56324 -Bern's 63991 -Berna 60321 -Bernadette 56388 -Bernadine 64905 -Bernadino 64423 -Bernadou 64905 -Bernal 59357 -Bernalillo 63419 -Bernanke 53613 -Bernard 46973 -Bernard's 65170 -Bernardi 64423 -Bernardino 50484 -Bernardo 57609 -Bernards 64423 -Bernasconi 65452 -Bernd 55821 -Berndt 62066 -Berne 60157 -Berner 61818 -Bernese 60856 -Bernhard 54835 -Bernhardt 59923 -Bernice 55992 -Bernie 52118 -Bernie's 64423 -Bernier 60405 -Bernina 64657 -Bernini's 65170 -Bernoulli 58365 -Bernroider 64201 -Bernstein 53138 -Bernstein's 61818 -Berra 62066 -Berri 59774 -Berrien 64201 -Berries 56652 -Berroco 64905 -Berry 46909 -Berry's 60580 -Berryessa 64657 -Berryfeather 61699 -Berryhill 64905 -Berryman 60856 -Berserk 57440 -Berserker 62331 -Bersham 62917 -Bersted 65170 -Bert 53581 -Berta 62196 -Bertapelle 61584 -Bertelsmann 60157 -Berth 61051 -Bertha 55821 -Berthold 62762 -Berthoud 64905 -Berti 62917 -Bertie 59560 -Bertier 60762 -Bertil 65452 -Bertin 65452 -Bertini 61818 -Berto 65170 -Bertolucci 65170 -Berton 65170 -Bertone 63601 -Bertrab 65452 -Bertram 56756 -Bertrand 56050 -Bertsch 65452 -Bertuzzi 61472 -Berube 63601 -Berwick 55202 -Berwickshire 62613 -Berwyn 60078 -Beryl 57653 -Beryllium 62196 -Berzerk 63245 -Besant 60952 -Besar 65170 -Beschreibung 61584 -Bescon 64657 -Bese 65452 -Beside 56791 -Besides 47931 -Besieged 65452 -Beskryf 64657 -Beso 64201 -Besoin 63419 -Bespoke 56200 -Bess 57084 -Bessel 60856 -Bessemer 58688 -Bessie 58313 -Besson 63991 -Bessy 64905 -Best 33697 -Best's 62196 -BestBuy 62196 -BestPicks 61152 -Besta 64201 -Bestar 64905 -Beste 60952 -Bestel 60492 -Bestiality 61362 -Bestiary 61699 -Bestival 64201 -BestofMedia 63077 -Bestofmedia 60492 -Bestop 63991 -Bests 59774 -Bestseller 59560 -Bestsellers 44351 -Bestselling 55604 -Bestway 63991 -Besucher 65452 -Beswick 63077 -Bet 49732 -BetUS 65452 -Beta 41857 -Betacam 59227 -Betalbatim 63991 -Betancourt 60492 -Betapace 65170 -Betas 61818 -Betcha 64201 -Bete 62917 -Betfair 61818 -Beth 47381 -Beth's 61584 -Bethany 52858 -Bethe 61472 -Bethel 53485 -Bethenny 65170 -Bethesda 54245 -Bethlehem 52074 -Bethnal 60492 -Bethpage 64905 -Bethune 60405 -Bethyl 61818 -Betis 59164 -Beto 60856 -Betrayal 58979 -Betrayed 59491 -Betrayers 65452 -Bets 52141 -Betsey 55738 -Betseyville 62762 -Betsy 53095 -Betsy's 64657 -Betta 58113 -Bette 52872 -Bettencourt 64423 -Bettendorf 62331 -Better 41828 -BetterWorld 64657 -Betterman 64905 -Betti 65170 -Bettie 59039 -Bettina 60952 -Betting 47972 -Bettis 63991 -Bettman 63245 -Bettor's 62613 -Betts 57009 -Betty 47107 -Betty's 60405 -Bettye 62917 -Betula 63077 -Between 43771 -Betz 64657 -Beulah 59227 -Beutler 63245 -Bev 55398 -Bevan 60157 -Bevel 55500 -Beveled 63419 -Beverage 46471 -BeverageFactory 65170 -Beverages 49388 -Beveridge 62331 -Beverley 55793 -Beverly 45809 -Bevery 58113 -Bevin 61940 -Bevington 65170 -Bevis 63077 -Beware 49268 -Beweging 62613 -Bewertung 59357 -Bewitched 59774 -Bex 62917 -Bexar 60238 -Bexhill 62613 -Bexley 54969 -Bexleyheath 64657 -Bextor 61699 -Bextra 58860 -Bey 60238 -Beyaz 63792 -Beyblade 58919 -BeyeNETWORK 60238 -Beyer 58113 -Beyerdynamic 65452 -Beynon 63991 -Beyonce 48741 -Beyonce's 57923 -Beyoncé 58745 -Beyond 41985 -BeyondUnreal 65452 -Bez 64657 -Bezbednost 63419 -Bezel 57358 -Bezier 63991 -Bezirk 65452 -Bf 63245 -Bg 63792 -BglII 62917 -Bh 65452 -Bhabha 64201 -Bhagat 61584 -Bhagavad 64657 -Bhagwan 61940 -Bhagwat 63077 -Bhagwati 63991 -Bhai 58860 -Bhairav 62469 -Bhajans 61584 -Bhakti 64423 -Bhalla 64201 -Bhan 64905 -Bhandari 63601 -Bhandarkar 65170 -Bhangra 55474 -Bhanu 65170 -Bharadwaj 62762 -Bharat 55084 -Bharata 65170 -Bharati 63792 -Bharatiya 61818 -Bharatpur 63419 -Bhardwaj 63419 -Bhargava 63077 -Bharti 58745 -Bharuch 64201 -Bhaskar 59923 -Bhat 60952 -Bhatia 61472 -Bhatkal 63792 -Bhatnagar 65170 -Bhatt 59491 -Bhattacharya 60856 -Bhattacharyya 63077 -Bhatti 63419 -Bhavan 63245 -Bhavani 64423 -Bhavnagar 62917 -Bhawan 64423 -Bhd 55474 -Bhi 59923 -Bhilai 65452 -Bho 64657 -Bhojpuri 60405 -Bhool 64905 -Bhopal 54902 -Bhs 59292 -Bhubaneshwar 56585 -Bhubaneswar 61699 -Bhuj 62917 -Bhushan 65170 -Bhutan 46563 -Bhutto 55373 -Bhutto's 60238 -Bi 51113 -BiCMOS 62613 -BiH 60492 -BiOrb 58919 -Bia 60762 -Biafra 62762 -Bian 64657 -Bianca 54264 -Bianca's 63792 -Bianchi 56585 -Bianco 60078 -Biante 64423 -Biappa 64423 -Biarritz 57970 -Bias 51920 -Biase 65170 -Biased 61699 -Biases 64423 -Biathlon 58802 -Biaxin 59357 -Bib 52559 -BibSonomy 58470 -BibT 46973 -BibTeX 48609 -BibTex 51275 -Bibb 60405 -Bibbs 63991 -Bibby 63245 -Bibel 65170 -Bibeln 64905 -Biber 65452 -Bibi 59630 -Bibiana 64657 -Bibione 65452 -Bible 42458 -Bible's 64905 -Bibles 52029 -Biblia 62066 -Biblical 50646 -Biblically 64423 -Biblio 60952 -Bibliographic 52609 -Bibliographical 64905 -Bibliographies 53952 -Bibliography 47504 -Bibliometrics 55299 -Biblioteca 60157 -Bibliotheca 64905 -Bibliothèque 65452 -Bibs 58365 -Bibsonomy 46899 -Bibtex 65170 -Bic 59164 -Bicarbonate 64657 -Bice 61584 -Bicentennial 58365 -Bicep 61699 -Biceps 62613 -Bicester 60405 -Bichon 58065 -Bickel 64657 -Bickerton 65452 -Bickford 64423 -Bickley 65452 -Bicknell 64657 -Bicol 62196 -Bicone 61584 -Bicycle 47374 -Bicycles 50292 -Bicyclic 65452 -Bicycling 57238 -Bid 41188 -Bidar 62762 -Biddeford 64905 -Bidder 53066 -Bidders 56687 -Bidding 51825 -BiddingForGood 63601 -Biddle 59774 -Biddulph 64201 -Bide 62066 -Bideford 64201 -Biden 46073 -Biden's 57122 -Bidet 63601 -Bidets 62613 -Bidirectional 61051 -Bids 42852 -Bidston 65452 -Bidwell 64657 -Biederman 64423 -Biedermann 64423 -Biehl 65170 -Biel 51953 -Bielefeld 59774 -Bien 58017 -Biennale 61472 -Biennial 54380 -Biennium 65452 -Bienvenido 63991 -Bienvenidos 62762 -Bienvenue 62917 -Bier 60238 -Bierman 65452 -Bieta 59491 -Biever 57440 -Biff 62066 -Biffle 62066 -Biffy 63601 -Bifidobacterium 61584 -Bifocal 61699 -Bifold 65452 -Bifurcation 64905 -Big 35951 -BigAdmin 63991 -BigCharts 58262 -BigFooty 59292 -BigOven 62331 -BigPond 56021 -BigScreen 63245 -BigSoccer 58802 -BigYard 63245 -Bigazines 63991 -Bigelow 60000 -Bigfish 65170 -Bigfoot 56518 -Bigfoot's 61940 -Bigfork 62331 -Bigg 60405 -Biggar 60670 -Bigger 51996 -Biggest 48034 -Biggie 58523 -Biggin 61256 -Biggleswade 64905 -Biggs 57741 -Bighorn 60157 -Bight 62331 -Bigotry 64657 -Bigpond 61699 -Bigs 65452 -Bigshot 59101 -Bihan 64423 -Bihar 54459 -Bihari 61818 -Bij 63419 -Bijan 64657 -Bijapur 63991 -Bijele 63419 -Bijou 59357 -Bijoux 63419 -Biju 65452 -Bika 61362 -Bikaner 62613 -Bike 42778 -BikeRadar 61362 -Biker 53286 -Bikers 57278 -Bikes 45300 -Biking 50710 -Bikini 47073 -Bikinis 58470 -Bikram 64423 -Bikudo 65170 -Bil 61940 -Bilal 59491 -Bilaspur 62917 -Bilateral 54078 -Bilateria 64657 -Bilbao 55992 -Bilbo 62469 -Bild 59357 -Bildarchiv 61940 -Bilder 59227 -Bilderberg 63792 -Bilderlounge 60670 -Bile 58523 -Bilerico 65452 -Biles 65452 -Bilge 60321 -Bilgola 63991 -Biliary 59292 -Bilinear 64657 -Bilingual 50006 -Bilingualism 62469 -Biljanic's 64905 -Bill 38503 -Bill's 53934 -Billabong 54283 -Billard 63991 -Billboar 60157 -Billboard 50270 -Billboard's 63792 -Billboards 58523 -Billed 60321 -Billede 64657 -Billeder 60762 -Billerica 64423 -Billericay 61940 -Billet 56110 -Billiam 64657 -Billiard 55738 -Billiards 53052 -Billick 63991 -Billie 52725 -Billig 63077 -Billing 47710 -Billingham 60856 -Billings 52805 -Billingsley 56170 -Billington 63601 -Billion 48336 -Billionaire 59560 -Billionaires 62613 -Billions 58523 -Billiton 59039 -Billoo 65452 -Bills 48021 -Billy 44567 -Billy's 57653 -Biloba 63245 -Biloxi 56972 -Bilson 58017 -Bilstein 59630 -Bilston 63245 -Bilt 64423 -Biltmore 56721 -Bilton 62613 -Bim 65170 -Bimal 65452 -Bimbo 61584 -Bimini 62196 -Bimmer 62762 -Bimmerfest 61818 -Bimmerforums 61584 -Bin 48135 -Bina 60952 -Binaries 61818 -Binary 49488 -Binatone 64657 -Binaural 62196 -Bind 57876 -BindView 63245 -Binder 50306 -Binders 55849 -Bindery 65452 -Bindi 64201 -Binding 48390 -BindingList 63991 -Bindings 55373 -Binds 59292 -Binfield 64905 -Bing 52778 -Binge 59292 -Bingen 61256 -Bingham 55992 -Binghamton 56452 -Bingley 62196 -Bingo 48826 -Bingochecker 65170 -Binh 60492 -Bini 64423 -Binion 63245 -Binion's 63792 -Binkley 64201 -Binks 65452 -Binney 59702 -Binnie 64657 -Binns 63792 -Binocular 57482 -Binoculars 51974 -Binomial 60762 -Bins 55060 -Binsin 64201 -Bintan 60321 -Bio 46616 -BioAssay 38286 -BioBased 64905 -BioChemical 64657 -BioInfoBank 65170 -BioMed 53952 -BioPharma 61940 -BioPortfolio 62613 -BioRUST 64423 -BioScience 64201 -BioSentral 60157 -BioShock 53301 -BioSpace 65170 -BioWare 59630 -BioWare's 65170 -Bioaccumulation 65170 -Bioactive 62331 -Bioanalytical 63419 -Bioassay 63991 -Bioavailability 62762 -Biobehav 63419 -Biochem 48771 -Biochemical 51650 -Biochemicals 61472 -Biochemistry 48395 -Biochim 53988 -Biochimica 59630 -Biochimie 64905 -Biocompare 54151 -Biocompare's 65170 -Biocon 62066 -Bioconjugate 61584 -Biodefense 62613 -Biodegradable 59357 -Biodegradation 60856 -Biodiesel 53226 -Biodiversity 48861 -Bioenergy 60762 -Bioengineering 58919 -Bioethics 56756 -Biofeedback 62613 -Biofilm 63792 -Biofilms 64905 -Bioforce 63419 -Biofuel 60405 -Biofuels 57046 -Biogas 61940 -Biogen 61699 -Biogenesis 65170 -Biogenic 64423 -Biogeochemistry 64905 -Biogeographic 63419 -Biogeography 59630 -Biogeosciences 63792 -Biographical 51953 -Biographies 49809 -Biography 43196 -Biohazard 62196 -Bioinformatics 51415 -Bioinorganic 65170 -Bioinspiration 59560 -Biokhim 62917 -Biol 45234 -Biolabs 64905 -Bioline 60856 -Biolock 65452 -Biologia 60405 -Biologic 61152 -Biological 45461 -Biologically 62469 -Biologicals 60952 -Biologics 61584 -Biologie 59491 -Biologist 60405 -Biologists 56687 -Biology 42880 -Biología 62331 -Biomacromolecules 61584 -Biomarker 61940 -Biomarkers 57524 -Biomass 56080 -Biomaterials 59227 -BiomaterialsBiotechnologyCeramics 59227 -Biomech 62331 -Biomechanical 59774 -Biomechanics 57160 -Biomed 54770 -Biomedical 48567 -Biomedicine 62196 -Biomedics 64201 -Biometric 56262 -Biometrics 55226 -Biometry 64657 -Biomimetic 63419 -Biomimetics 59101 -Biomol 61940 -Biomolecular 57923 -Biomolecules 58802 -Bion 64905 -Bionic 54341 -Bionicle 60670 -Bioorganic 63245 -Biopharmaceutical 63792 -Biopharmaceuticals 65452 -Biophys 50553 -Biophysica 59848 -Biophysical 56721 -Biophysics 57046 -Bioprocess 64423 -Biopsies 62613 -Biopsy 57199 -Bioreactor 62066 -Bioremediation 64657 -Biorust 61699 -Bios 48021 -Biosafety 63245 -Biosci 63792 -Bioscience 53226 -Biosciences 54341 -Biosecurity 56262 -Biosensors 63792 -Bioshock 57199 -Biosilk 64201 -Biosolids 62331 -Biosphere 59923 -Biosphère's 64905 -Biostar 59101 -Biostatistics 57566 -Biosynthesis 58113 -Biosynthetic 64905 -Biosystems 57696 -Biotec 62196 -Biotech 50718 -Biotechnical 59424 -Biotechnol 59630 -Biotechnologies 63991 -Biotechnology 47187 -Bioterrorism 60856 -Biotest 63792 -Biotherm 62331 -Biotin 59357 -Biotinylated 64657 -Biotropica 63419 -Bioware 63077 -Bip 62917 -Bipartisan 64201 -Bipartisanship 65452 -Bipasha 57524 -Biphasic 61051 -Biplane 65170 -Bipolar 50782 -Bipot 64905 -Bir 59164 -Birbeck 65452 -Birch 51877 -Birchmore 61362 -Birchwood 60762 -Bird 44122 -Bird's 55963 -BirdLife 62469 -Birdcage 61699 -Birdhouse 60321 -Birdhouses 64201 -Birdie 58860 -Birdies 64423 -Birding 55226 -Birdland 62196 -Birdman 60856 -Birds 47266 -Birdsall 64201 -Birdseye 65170 -Birdsong 63991 -Birdwatching 60762 -Birdwood 63601 -Birdy 59630 -Birger 65170 -Birgit 61584 -Birgitta 63077 -Birgu 65452 -Birkbeck 61818 -Birkdale 62917 -Birkenhead 58919 -Birkenstock 59774 -Birkhead 61940 -Birkin 63792 -Birks 60952 -Birla 59292 -Birman 63991 -Birmingham 43697 -Birmingham's 62762 -Birnbaum 65170 -Birney 62469 -Biro 63245 -Biron 64657 -Birr 61584 -Birth 44094 -Birthdate 59774 -Birthday 42827 -Birthdays 50081 -Birthing 61152 -Birthmarks 63245 -Birthplace 57696 -Births 52765 -Birthstone 58523 -Birthstones 63792 -Biryani 61940 -Bis 58470 -Bisbal 61699 -Bisbee 59702 -Biscayne 58313 -Bischof 65452 -Bischoff 61152 -Bisco 64201 -Biscotti 61699 -Biscuit 55060 -Biscuits 53746 -Bisel 65170 -Bisex 63077 -Bisexual 54581 -Bish 63991 -Bishan 64905 -Bishkek 63419 -Bishop 46966 -Bishop's 57084 -Bishops 55084 -Bishopsgate 65452 -Bishvat 63991 -Bislama 63991 -Bisley 64905 -Bismarck 55299 -Bismark 62196 -Bismuth 62196 -Bisnis 64201 -Bison 55604 -Bisons 62469 -Bisphenol 59774 -Bisphosphonates 65170 -Bisping 56231 -Bisque 58979 -Bissau 54560 -Bisseau 62613 -Bissell 58313 -Bisson 62613 -Bissonnette 65452 -Bistro 50213 -Bistros 63245 -Biswas 61152 -Bit 47500 -BitComet 55906 -BitDefender 57440 -BitDig 62613 -BitLocker 62613 -BitSpirit 63077 -BitTorrent 48109 -BitTorrentMonster 58470 -BitZip 59227 -Bitch 51202 -BitchLess 61818 -Bitches 56899 -Bitchless 60405 -Bitchwax 61472 -Bite 51358 -Bites 49268 -Bitesize 59560 -Biting 58919 -Bitmap 60405 -Bitmunk 65452 -Bitoni 60321 -Bitpedia 60321 -Bitrate 57482 -Bits 49566 -Bitstream 63792 -Bitsy 63601 -Bitte 60238 -Bitten 58745 -Bitter 53196 -Bitterness 56791 -Bitterroot 65452 -Bitters 65170 -Bittersweet 57923 -Bittle 64905 -Bittman 64657 -Bittner 65170 -Bitton 64423 -Bittorrent 55849 -Bitty 58417 -BittyBrowser 63419 -Bitumen 64657 -Bituminous 63991 -Bitzi 61699 -Biull 65170 -Bivariate 63419 -Bivens 64423 -Bivvy 65452 -Biweekly 64657 -Bix 64905 -Bixby 60321 -Bixee 62762 -Biz 44909 -BizBash 62917 -BizBuySell 63792 -BizChair 64201 -BizRate 42852 -BizRate's 58860 -BizTalk 50940 -BizTech 60670 -BizWeek 65452 -Bizarre 51087 -Bizarro 57122 -Bizkit 58577 -Bizrate 59560 -Bizwiki 60670 -Bizzare 63419 -Bizzle 64905 -Bizzy 63077 -Bj 59923 -Bjarne 62196 -Bjerrum 62469 -Bjindaho 64423 -Bjoern 63792 -Bjork 57084 -Bjorke 64905 -Bjorklund 63792 -Bjorn 55323 -Björk 59164 -Björn 57970 -Bjørn 63077 -Bk 58065 -Bl 57122 -Bla 63077 -Blabber 63077 -Blaby 62469 -Black 34760 -Black's 58577 -BlackBaller 65452 -BlackBerry 43544 -BlackBerrys 64423 -BlackBook 62066 -BlackBox 63245 -BlackHawk 62613 -BlackJack 57609 -BlackRock 61940 -BlackStar 55552 -Blackadder 61051 -Blackalicious 63077 -Blackaman 64423 -Blackbaud 64905 -Blackberries 62066 -Blackberry 48913 -Blackbird 56585 -Blackboard 53454 -Blackbook 65170 -Blackbur 64905 -Blackburn 50249 -Blackburn's 64657 -Blackcomb 62469 -Blackcurrant 65170 -Blackened 61152 -Blacker 63601 -Blackfathom 60321 -Blackfeet 60405 -Blackfive 61818 -Blackfoot 62613 -Blackford 64423 -Blackfriars 59702 -Blackhand 59923 -Blackhawk 57358 -Blackhawks 55107 -Blackheads 64657 -Blackheath 61584 -Blackie 62762 -Blackjack 53565 -Blacklake 63991 -Blacklight 60762 -Blacklist 57923 -Blacklisted 63792 -Blackmail 62917 -Blackman 57524 -Blackmon 63991 -Blackmore 61051 -Blackmore's 64657 -Blackmores 62613 -Blackmun 65170 -Blackness 61699 -Blackout 54792 -Blackouts 63245 -Blackpool 51157 -Blackrock 54399 -Blacks 51772 -Blacksburg 60492 -Blackshear 61051 -Blacksmith 60952 -Blacksmithing 55631 -Blacksmiths 63991 -Blackstar 64201 -Blackstock 63601 -Blackstone 55178 -Blackstone's 61818 -Blackstreet 61818 -Blacktea 63991 -Blackthorne 60856 -Blacktop 62917 -Blacktown 61256 -Blackwater 55014 -Blackwatertown 64905 -Blackwell 45763 -Blackwell's 60157 -Blackwing 57440 -Blackwood 58365 -Bladder 53271 -Blade 46877 -Blade's 56899 -BladeCenter 61152 -BladeSystem 64657 -Bladefist 59357 -Bladen 59630 -Blader 62331 -Blades 50726 -Blaenau 60000 -Blaenavon 59357 -Blagoevgrad 63419 -Blagojevich 62613 -Blah 55934 -Blahnik 63601 -Blaikie 64201 -Blaine 53679 -Blair 47875 -Blair's 56935 -Blairgowrie 63245 -Blairsville 64201 -Blais 63601 -Blaisdell 64657 -Blaise 59702 -Blak 64423 -Blake 47335 -Blake's 59630 -Blakeley 61584 -Blakely 60405 -Blakemore 63245 -Blakeney 62917 -Blakes 63792 -Blakey 58212 -Blalock 60157 -Blam 63601 -Blame 52635 -Blamed 63419 -Blames 62613 -Blaming 61699 -Blanc 52686 -Blanca 55154 -Blanch 65170 -Blanchard 55448 -Blanchardstown 65170 -Blanche 56231 -Blanchester 64905 -Blanchet 63419 -Blanchett 57566 -Blanchette 61152 -Blanco 53865 -Bland 58470 -Blandford 61152 -Blanding 64905 -Blane 65170 -Blaney 64423 -Blank 48736 -Blanka 65452 -Blankenship 59923 -Blanket 51434 -Blankets 52805 -Blankie 64657 -Blanks 56935 -Blanton 57084 -Blantyre 63991 -Blarney 60157 -Blas 61472 -Blaser 63077 -Blasi 65170 -Blasio 63991 -Blasphemy 64905 -Blass 61699 -Blassreiter 62917 -Blast 49124 -Blasted 59039 -Blaster 52029 -Blasters 61152 -Blasting 59357 -Blasts 57785 -Blatant 60580 -Blather 63792 -Blatt 59702 -Blatter 62917 -Blau 61699 -Blaupunkt 61472 -Blaustein 63792 -Blawg 57876 -BlawgSearch 56452 -Blawgs 64657 -Blaxploitation 64423 -Blaylock 63991 -Blaze 51814 -Blazeguard 60952 -Blazer 52546 -Blazers 52268 -Blazes 64201 -Blazin 63601 -Blazing 56899 -Bld 63419 -Bldg 54792 -Bleach 50234 -Bleached 61699 -Bleacher 55226 -Bleachers 53830 -Bleaching 60238 -Bleak 60580 -Bleakley 61051 -Blechacz 62331 -Bled 62331 -Bledel 60952 -Bledsoe 60238 -Bleecker 61699 -Bleed 55992 -Bleeding 50372 -Bleeds 65170 -Bleek 61472 -Bleep 63077 -Blemish 61051 -Blend 50615 -Blended 55423 -Blender 52791 -Blenders 57609 -Blendimages 65452 -Blending 57046 -Blends 55398 -Blenheim 58745 -Bless 52187 -Blessed 51482 -Blessing 54622 -Blessings 54023 -Bletchley 61256 -Blethen 64201 -Bleu 55226 -Bleue 62066 -Blevins 62066 -Blew 60492 -Blewett 65452 -Blick 61051 -Blidge 65452 -Blidget 63245 -Blige 56170 -Bligh 59774 -Blight 60580 -Blimp 59848 -Blinc 63077 -Blind 48156 -Blinded 59702 -Blinder 62917 -Blindfold 65452 -Blinding 63245 -Blindness 55274 -Blinds 53052 -Blindside 65452 -Bling 53646 -Blink 52661 -BlinkBits 59848 -BlinkList 49033 -Blinkbits 58262 -Blinkies 64201 -Blinking 63991 -Blinklist 52521 -Blinkx 61818 -Blinky 65170 -Blinn 63601 -Blip 61818 -Blips 64201 -Bliss 51511 -Blissey 64905 -Blissful 62613 -Blister 58919 -Blisters 63077 -Blithe 63245 -Blitz 53377 -Blitzen 63601 -Blitzer 62613 -Blitzkrieg 62331 -Blix 60856 -Blizz 61152 -BlizzCon 54685 -Blizzard 48305 -Blizzard's 61256 -Blizzcon 60580 -Blk 55877 -Bll 61940 -Bln 64905 -Bloated 62469 -Bloating 65170 -Blob 58523 -BlobFisk 62331 -Blobs 65452 -Bloc 52210 -Bloch 57566 -Block 37962 -Blockade 58860 -Blockage 63991 -Blockbuster 51752 -Blockbusters 64423 -Blocked 53712 -Blocker 55178 -Blockers 56972 -Blocking 53346 -Blocks 49906 -Blodgett 56899 -Bloemfontein 60492 -Blof 63601 -Blog 31400 -Blog's 62917 -BlogBookmark 64201 -BlogCatalog 50638 -BlogFree 63245 -BlogHer 58017 -BlogLines 64423 -BlogMarks 59039 -BlogMemes 63245 -BlogNetNews 65452 -BlogRoll 60238 -BlogShares 60580 -BlogTalkRadio 59292 -Blogads 61472 -Blogarama 57566 -Blogarithm 60952 -Blogazine 55849 -Blogazines 55821 -Blogcast 64201 -Blogcritics 60000 -Blogcrowds 64423 -Blogdom 60078 -Blogged 45833 -Blogger 44079 -Blogger's 61362 -Bloggers 47847 -BloggersAdvertiseSitemapAbout 59848 -Blogging 46332 -Blogging's 59491 -BloggingBuyouts 57278 -BloggingStocks 50949 -Bloggingheads 60321 -Bloggingstocks 62469 -Bloggy 62196 -Bloglines 45909 -Blogmarks 53712 -Blogmemes 63792 -Blogologist 65452 -Blogosphere 50932 -Blogpire 61940 -Blogrings 62917 -Blogroll 45853 -Blogrolls 64201 -Blogrunner 63077 -Blogs 35472 -Blogsearch 58802 -Blogslot 64905 -Blogsmith 58632 -Blogspot 58262 -Blogspotting 64423 -Blogster 62762 -Blogsvine 61818 -Blogwire 60856 -Blogwise 64905 -Blogz 62762 -Blois 64201 -Blok 63792 -Bloke 65452 -Blokus 63991 -Blomberg 64201 -Blomqvist 64905 -Blomus 63991 -Blond 54946 -Blonde 48552 -Blonder 64657 -Blondes 55657 -Blondie 55631 -Blonds 65452 -Blonsky 65170 -Blood 41558 -BloodRayne 63792 -BloodZ 60952 -Bloodbath 64423 -Bloodborne 62613 -Blooded 64423 -Bloodfeather 62762 -Bloodgood 64905 -Bloodhoof 59357 -Bloodhound 57199 -Bloodless 64423 -Bloodline 60000 -Bloodlines 65452 -Bloodlust 62196 -Bloodmyst 60762 -Bloods 58745 -Bloodscalp 59357 -Bloodshed 65452 -Bloodshot 62613 -Bloodworth 65452 -Bloody 50957 -Bloom 49566 -Bloom's 63245 -Bloomberg 48519 -Bloomberg's 56293 -Bloomer 60952 -Bloomers 65452 -Bloomfield 51846 -Bloomfields 65170 -Blooming 55992 -Bloomingdale 57831 -Bloomingdale's 58979 -Bloomington 52886 -Blooms 55107 -Bloomsburg 63077 -Bloomsbury 57009 -Bloons 60670 -Blooper 62196 -Bloopers 56862 -Bloor 58470 -Bloque 64201 -Blossom 53182 -Blossoms 57741 -Blot 56551 -Blots 60580 -Blotter 56200 -Blotters 65452 -Blotting 61584 -Blount 58417 -Blountville 65170 -Blouse 56485 -Blouses 57160 -Bloviators 64657 -Blow 50630 -Blowback 63601 -Blower 52954 -Blowers 55821 -Blowfish 62917 -Blowing 55711 -Blowjob 54459 -Blowjobs 58162 -Blown 57876 -Blowout 55274 -Blowouts 61362 -Blows 56293 -Blox 59630 -Blu 52303 -BluRay 61256 -Blue 36830 -Blue's 57831 -BlueAnt 59491 -BlueCross 60762 -BlueEFFICIENCY 62331 -BlueIce 63792 -BlueMoon 61940 -BlueShield 61051 -BlueSoleil 63991 -BlueSquare 64657 -BlueTooth 63419 -BlueWater 63991 -Bluebell 61818 -Blueberries 58860 -Blueberry 54023 -Bluebird 56231 -Bluebirds 64657 -Bluebonnet 62762 -Bluebook 63792 -Bluebot 63245 -Bluefield 61152 -Bluefish 64657 -Bluefly 58802 -Bluefoot 53695 -Bluegill 65452 -Bluegrass 51996 -Bluehost 64423 -Blueiscoool 63601 -Bluelight 64657 -Blueline 64905 -Bluelist 61362 -Bluemoon 63077 -Blueprint 55037 -Blueprints 54835 -Blues 43563 -Bluesea 65170 -Bluesoleil 64905 -Bluest 65452 -Bluestone 61362 -Bluetooth 44161 -Bluetrek 63601 -Bluewater 58860 -Bluey 65452 -Bluff 50991 -Bluffs 57785 -Bluffton 60580 -Blum 56935 -Blumberg 61256 -Blume 60157 -Blumen 63077 -Blumenfeld 62331 -Blumenthal 58262 -Blumer 64201 -Blumlein 64657 -Blundell 61472 -Blunder 64657 -Blunders 60238 -Blunkett 61699 -Blunt 52982 -Blunt's 65170 -Blunts 65170 -Blur 56293 -Bluray 63991 -Blurb 59039 -Blurbers 65452 -Blurbs 50638 -Blurred 61362 -Blurry 60762 -Blurtit 57399 -Bluse 63601 -Blush 56324 -Blushing 65170 -Blvd 46619 -Bly 60580 -Blyth 60238 -Blythe 56652 -Blümchen 61699 -Bm 60238 -Bmax 62196 -Bmpr 62331 -Bmw 55684 -Bmx 60762 -Bn 58262 -BnOPNB 64201 -Bnav 65170 -Bnet 43268 -Bnew 63077 -Bo 50150 -Bo'ness 63991 -BoA 61940 -BoB 59164 -BoC 64201 -BoD 65452 -BoE 65170 -BoHeMieN 63419 -Boa 56050 -Boambee 65452 -Boao 64423 -Boar 60670 -Boar's 64657 -Board 34113 -Board's 52725 -BoardGameGeek 58212 -BoardReader 58523 -BoardReader's 62613 -Boarder 60000 -Boarding 51377 -Boardman 59227 -Boardroom 58979 -Boards 39867 -Boardshort 64657 -Boardshorts 58470 -Boardwalk 56110 -Boas 61584 -Boasting 60492 -Boat 43705 -Boatbuilding 65170 -Boater 61584 -Boater's 65452 -Boaters 62196 -Boathouse 60405 -Boating 48970 -Boats 44287 -Boatswain's 50220 -Boatyard 63601 -Boaz 58979 -Bob 39932 -Bob's 53316 -Boba 61362 -Bobaflex 63077 -Bobbi 54992 -Bobbie 56935 -Bobbin 57084 -Bobbing 65452 -Bobbins 65170 -Bobbitt 63991 -Bobble 57009 -Bobblehead 61818 -Bobbleheads 60000 -Bobby 45967 -Bobby's 58979 -Bobbys 60405 -Bobcat 57696 -Bobcats 53470 -Bobo 57609 -Bobrick 65452 -Bobs 60157 -Bobsleigh 64657 -Bobtail 63792 -Boca 48682 -Bocangel 63792 -Bocas 63601 -Bocca 65452 -Bocce 61051 -Boccia 64423 -Bocconi 62469 -Bocelli 60321 -Boch 60157 -Bochum 59357 -Bock 57238 -Bod 60580 -Boda 61051 -Bodacious 63077 -Bode 59923 -Bodega 59227 -Bodegas 63991 -Boden 59424 -Bodhi 62331 -Bodhisattva 62762 -Bodie 63991 -Bodied 61940 -Bodies 49739 -Bodily 61818 -Bodine 63991 -Bodkin 63419 -Bodleian 63792 -Bodmin 62917 -Bodo 61940 -Bodog 58417 -Bodom 62066 -Bodrum 59560 -Bods 63792 -Bodum 64905 -Body 39052 -Body's 62469 -BodyBlog 58417 -BodyGuardz 62613 -BodySpace 57482 -Bodyboard 60856 -Bodyboarding 63077 -Bodyboards 63601 -Bodybuilder 59292 -Bodybuilders 62469 -Bodybuilding 53241 -Bodycare 64657 -Bodycote 63419 -Bodyglide 64905 -Bodyguard 61051 -Bodypack 65452 -Bodyscan 65452 -Bodyshaper 65452 -Bodyshop 60492 -Bodyslam 60492 -Bodysuit 59292 -Bodysuits 61472 -Bodywork 58632 -Bodyworks 63792 -Bodzin 62762 -Boe 64905 -Boehm 61472 -Boehner 62331 -Boehringer 58313 -Boeing 49092 -Boeing's 60157 -Boer 57524 -Boerne 63792 -Boers 61362 -Boerum 62196 -Boesdal 61818 -Boettcher 65170 -BofA 62066 -Bog 57009 -Bogaerdt 62762 -Bogan 62917 -Bogard 65170 -Bogart 59039 -Bogda 63601 -Bogdan 60670 -Boge 62613 -Bogen 59923 -Boggs 57741 -Boggy 64657 -Bogie 65170 -Bogle 64423 -Bogmalo 62066 -Bogner 62066 -Bognor 57482 -Bogor 64423 -Bogota 58417 -Bogotá 64201 -Bogs 65452 -Bogue 63419 -Bogus 58688 -Bogut 61699 -Boh 64201 -Bohannon 65452 -Boheme 63077 -Bohemia 56585 -Bohemian 55766 -Bohemians 62917 -Bohl 65452 -Bohm 64657 -Bohmian 64905 -Bohn 59560 -Bohning 63601 -Boho 61699 -Bohol 64905 -Bohr 60405 -Bohra 61051 -Boi 57482 -Boil 57566 -Boiled 60000 -Boiler 53549 -Boilermaker 65452 -Boilermakers 60078 -Boilerplate 64657 -Boilers 56518 -Boilie 65452 -Boilies 61584 -Boiling 54664 -Boing 51257 -BoingBoing 63077 -Boingo 60952 -Boiron 65452 -Bois 56756 -Boise 48274 -Boivin 64657 -Bojan 60856 -Bok 58212 -Bokashi 64423 -Boker 58065 -BokerPlus 64905 -Bokmal 64657 -Boks 60670 -Boksburg 63601 -Boku 61152 -Bokura 63792 -Bokusatsu 62917 -Bol 58745 -Bola 64657 -Bolan 62469 -Boland 61051 -Bolas 65452 -Bold 48821 -BoldChat 65170 -Boldchat 59292 -Bolded 62196 -Bolder 64905 -Boldface 65452 -Boldin 64905 -Boldly 63077 -Boldt 65170 -Bole 64423 -Bolero 59292 -Boleros 65170 -Boletín 63601 -Boleyn 58919 -Bolg 64657 -Bolger 63792 -Bolin 63419 -Bolingbroke 60321 -Bolingbrook 60238 -Bolivar 57046 -Bolivarian 64423 -Bolivia 45021 -Bolivia's 61472 -Bolivian 56262 -Boliviano 62196 -Boll 57399 -Bolle 58212 -Bollea 64657 -Boller 61940 -Bolling 61256 -Bollinger 58417 -Bolly 64657 -BollyJaan 65452 -Bollywood 46170 -Bollywood's 63792 -BollywoodSARGAM 55963 -Bolo 63792 -Bologna 53286 -Bolognese 63419 -Bolsa 58979 -Bolsheviks 65170 -Bolshoi 61256 -Bolsover 63601 -Bolster 62469 -Bolsters 63991 -Bolt 51166 -Bolted 65170 -Bolthouse 65452 -Bolton 49371 -Bolton's 63792 -Bolts 53712 -Boltzmann 55992 -Boltzmann's 61584 -Bolum 62066 -Bolus 56110 -Bolzano 63601 -Bom 61362 -Boman 65170 -Bomb 50285 -Bomba 63419 -Bombadier 57524 -Bombardier 57653 -Bombardment 62469 -Bombay 52699 -Bomber 53597 -Bomberman 55348 -Bomberos 64657 -Bombers 55657 -Bombing 57199 -Bombings 63419 -Bombo 65452 -Bombs 56050 -Bombshell 60580 -Bombyx 62469 -Bomex 57199 -Bomfunk 65452 -Bon 44907 -BonPrix 65170 -Bona 59039 -Bonaire 55037 -BonaireTalker 62196 -Bonanza 55474 -Bonaparte 61152 -Bonar 60952 -Bonaventure 59923 -Bonavista 64423 -Bond 44021 -Bond's 61699 -Bondage 53138 -Bonde 63601 -Bonded 56862 -Bonderman 63991 -Bondhus 64657 -Bondi 55631 -Bonding 55323 -Bondoc 64905 -Bonds 48208 -Bondurant 64657 -Bondy 63419 -Bone 45794 -Bonechewer 60238 -Bonefish 65170 -Bonekickers 65170 -Boneless 61584 -Bonen 63601 -Boner 61699 -Bonerama 65170 -Bones 49745 -BonesMahoney 64905 -Boney 59630 -Boneyard 63792 -Bonferroni 60580 -Bonferroni's 65170 -Bonfield 63792 -Bonfire 58262 -Bong 56021 -Bongo 55793 -Bonham 57696 -Bonhams 64905 -Boniface 59630 -Bonifacio 62469 -Bonilla 64905 -Boning 63991 -Bonita 54399 -Bonito 60000 -Bonjour 58979 -Bonk 61818 -Bonn 56200 -Bonnaroo 59702 -Bonne 59491 -Bonnell 65452 -Bonnemaison 65170 -Bonner 55849 -Bonners 64201 -Bonnet 57696 -Bonnets 65452 -Bonneville 56021 -Bonney 60492 -Bonnie 49559 -Bonnie's 62917 -Bonnier 63419 -Bonnington 64905 -Bonnisan 59164 -Bonny 57923 -Bono 52534 -Bono's 61256 -Bonobo 62613 -Bonovox 65170 -Bons 64423 -Bonsai 56021 -Bonsall 65452 -Bontrager 61584 -Bontril 57876 -Bonus 45919 -Bonuses 54706 -Bonwit 63991 -Bony 65452 -Boo 52280 -Boo'd 63991 -BooRah 62331 -Boob 55877 -Boobie 65170 -Boobies 61818 -Boobs 51293 -Booby 61472 -Boodle 60321 -Booed 62066 -Booey 64201 -Boog 65170 -Boogaloo 65170 -Boogeyman 61818 -Boogie 52435 -Booher 65452 -Book 35237 -Book's 65170 -BookBrowse 64201 -BookCrossing 57278 -BookMark 60000 -BookMate 57741 -BookRags 62196 -BookSense 65170 -Booka 63601 -Bookable 62613 -Bookbag 54245 -Bookbinder 64423 -Bookbinding 64201 -Bookcase 58470 -Bookcases 57009 -Bookcliff 65452 -Bookclub 62196 -Bookcrossing 63245 -Booked 58745 -Bookends 60580 -Booker 53052 -Bookfairs 62331 -Bookie 63077 -Booking 47332 -BookingCenter 63601 -Bookings 50469 -Bookish 61256 -Bookkeeper 58113 -Bookkeeping 54170 -Booklet 55323 -Booklets 58523 -Booklist 60580 -Booklists 64905 -Booklover 64905 -Bookmakers 62762 -Bookman 61472 -Bookmark 36903 -BookmarkTag 56972 -Bookmarkable 61940 -Bookmarked 58577 -Bookmarker 64657 -Bookmarking 49234 -Bookmarklet 61699 -Bookmarks 42425 -Bookmobile 60580 -Books 32433 -BooksOnBoard 62613 -Bookseller 54245 -Booksellers 55398 -Bookshelf 47919 -Bookshelves 63077 -Bookshop 50416 -Bookshops 63601 -Bookslut 64905 -Bookstore 46982 -Bookstores 55631 -Booktopia 62196 -Bookworm 60157 -Bookworms 63077 -Bookyards 63991 -Boolean 51211 -Boolian 62196 -Boom 47420 -Boombox 61051 -Boomboxes 61940 -Boome 64905 -Boomer 55604 -Boomerang 57653 -Boomers 55849 -Booming 61051 -Boomkat 63077 -Booms 62762 -Boomtown 63792 -Boon 55578 -Boondall 64657 -Boondock 63077 -Boondocks 59227 -Boondoggle 64905 -Boone 51463 -BooneDog 64905 -Boonen 65170 -Boones 64657 -Boonton 64657 -Boonville 62613 -Boop 57009 -Boortz 64657 -Boos 60580 -Boosey 62613 -Boosh 61362 -Boosie 59702 -Boost 48148 -Boosted 62196 -Booster 50446 -Boosters 56899 -Boosting 58113 -Boosts 58262 -Boot 46197 -BootCD 65170 -Bootable 63077 -Bootcamp 56388 -Bootcut 58417 -Booted 63419 -Booth 48501 -Boothe 63601 -Booths 59039 -Bootie 60952 -Booties 58860 -Booting 57318 -Bootle 61584 -Bootleg 54245 -Bootlegs 63077 -Bootloader 64905 -Bootlover's 65170 -Boots 44610 -BootsnAll 60157 -Bootstrap 63419 -Bootstrapping 65170 -Booty 51122 -Booyah 54479 -Booz 62613 -Booze 58162 -Boozer 63601 -Boozhy 62469 -Bop 58262 -Bopp 64423 -Bor 64657 -Bora 53988 -Boracay 58162 -Borage 62917 -Borah 63991 -Boral 65170 -Boras 65452 -Borat 58017 -Borat's 64905 -Borax 64905 -Borchert 65452 -Bord 60157 -Borda 61051 -Borda's 65452 -Bordeaux 51942 -Bordello 63077 -Borden 57358 -Bordentown 63419 -Border 47562 -Bordering 63245 -Borderlands 63601 -Borderless 63245 -Borderline 54946 -Borders 48826 -Bordertown 65452 -Bordesley 65170 -Bordetella 60078 -Bordon 64657 -Bordwell 65452 -Bore 54902 -Boreal 58365 -Borealis 60000 -Boreas 60670 -Bored 54992 -Boredom 58365 -Boreham 59702 -Borehamwood 64905 -Borehole 64657 -Borel 62331 -Boren 60762 -Borer 63991 -Borg 56388 -Borgata 64423 -Borger 63077 -Borges 60078 -Borghese 62613 -Borgia 65170 -Borgir 60492 -Borgo 63991 -Boric 62469 -Boring 52496 -Boris 51175 -Borisov 64423 -Borixon 63245 -Borja 62762 -Bork 62613 -Borla 62469 -Borland 55274 -Borman 64905 -Bormuth 60670 -Born 45184 -Borne 61940 -Bornean 62066 -Borneman 63792 -Borneo 57741 -Bornes 64657 -Bornholm 64201 -BorninSe 59357 -Bornstein 59560 -Boro 57876 -Boron 57238 -Boronia 64201 -Borosilicate 63991 -Borough 45232 -Borough's 63077 -Boroughs 54581 -Borovets 62613 -Borowitz 63419 -Borrego 60952 -Borrelia 59039 -Borris 64905 -Borromeo 62066 -Borrow 56262 -Borrowed 60492 -Borrower 51640 -Borrower's 60492 -Borrowers 57318 -Borrowing 56485 -Borrowings 64657 -Borsa 62066 -Borst 62066 -Borstal 63601 -Borthwick 65170 -Borussia 61051 -Bory 63792 -Borzoi 64201 -Bos 58802 -BosDates 63991 -Bosal 56452 -Bosanski 55014 -Bosca 65170 -Boscastle 63077 -Bosch 48274 -Boscia 63601 -Bosco 58162 -Boscobel 64905 -Boscom 64201 -Boscov 65452 -Boscov's 57831 -Boscovs 65452 -Bose 52375 -Bosh 54170 -Bosley 61362 -Bosnia 45879 -Bosnian 53038 -Boson 64905 -Bosphorus 64905 -Bosque 61584 -Bosra 65170 -Boss 46497 -Boss's 60952 -Bossa 58417 -Bosse 64423 -Bosses 57238 -Bossi 61472 -Bossier 59630 -Bossip 62331 -Bossman 64657 -Bossy 63419 -Bostock 64423 -Boston 38739 -Boston's 56140 -BostonPimpDaddy 64905 -Bostonian 62196 -Bostrichids 65170 -Bostridge 61362 -Bostrom 63245 -Bostwick 63792 -Boswell 59292 -Bosworth 55877 -Bot 51060 -BotCon 59039 -Bota 64423 -Botafogo 65452 -Botahtaung 64657 -Botan 62762 -Botanic 45319 -Botanica 59292 -Botanical 48482 -Botanicals 59227 -Botanische 57923 -Botany 50815 -Botched 64201 -Botetourt 63991 -Both 40380 -Botha 63601 -Bothell 58860 -Bother 60952 -Bothrops 63601 -Bothwell 59491 -Bothy 64905 -Botnet 65452 -Botox 53695 -Botryosphaeria 59774 -Botrytis 63419 -Bots 55398 -Botswana 45604 -Botswana's 63792 -Bott 59923 -Botta 63419 -Bottega 61362 -Botti 64905 -Botting 64657 -Bottle 47214 -Bottled 56140 -Bottleneck 64905 -Bottles 49913 -Bottling 59039 -Bottom 44705 -BottomLinePrice 62469 -Bottomless 61818 -Bottomley 64905 -Bottoms 55738 -Botulinum 61940 -Bouchard 59923 -Bouche 62331 -Boucher 58313 -Boucheron 63601 -Boucherville 60078 -Boucle 64905 -Boudica 63991 -Boudoir 62469 -Boudreau 62762 -Boudreaux 62331 -Bougainville 61256 -Bough 62066 -Bought 45249 -Boughton 61940 -Bouguereau 63601 -Bouillon 65170 -Bouin 63245 -Boul 62917 -Boulanger 65452 -Boulder 48806 -Boulderfist 58212 -Bouldering 59560 -Boulders 63792 -Boulevard 47574 -Boulogne 59101 -Boulton 61051 -Boulud 65452 -Boulware 65452 -Bouma 65452 -Bouman 63601 -Bounce 52435 -BounceBack 65170 -Bouncer 59164 -Bouncers 60580 -Bounces 62331 -Bouncing 57278 -Bouncy 57482 -Bound 50630 -Boundaries 54380 -Boundary 51238 -Bounded 60492 -Bounding 62196 -Boundless 62066 -Bounds 56518 -Bounties 64905 -Bountiful 59630 -Bounty 53052 -Bouquet 52954 -Bouquets 56791 -Bourassa 64423 -Bourbon 55631 -Bourbonnais 62613 -Bourdain 62762 -Bourdon 63601 -Bourgas 63792 -Bourgeois 58919 -Bourget 62917 -Bourgogne 64423 -Bourgoin 64423 -Bourjois 63792 -Bourke 55578 -Bourne 52118 -Bourne's 65452 -Bournemouth 50206 -Bourque 64201 -Bourse 63077 -Bourton 64657 -Bousquet 63245 -Bout 58365 -Boutilier 62762 -Boutin 64905 -Boutique 47984 -Boutiques 57653 -Bouton 64201 -Boutonnieres 65452 -Boutros 65452 -Bouts 64657 -Boutwells 62917 -Bouvet 51229 -Bouvier 60492 -Bove 63991 -Boveri 65170 -Boveri's 62196 -Bovey 63245 -Bovina 62469 -Bovine 54151 -Bow 46969 -Bowden 55877 -Bowden's 65452 -Bowditch 62331 -Bowdoin 56899 -Bowdon 60952 -Bowe 61362 -Bowel 53517 -Bowen 51804 -Bowen's 59227 -Bowens 64201 -Bower 58162 -Bowerman 65452 -Bowers 54664 -Bowery 58313 -Bowes 56756 -Bowflex 62331 -Bowhunter 64657 -Bowhunters 59848 -Bowhunting 59164 -Bowie 52118 -Bowker 62917 -Bowl 44857 -Bowler 58979 -Bowlers 63245 -Bowles 58017 -Bowling 46226 -Bowls 50568 -Bowman 52673 -Bowman's 64905 -Bowmanville 65170 -Bowness 63601 -Bowral 63991 -Bows 55738 -Bowser 57653 -Bowtie 65170 -Bowyer 60000 -Box 36916 -Boxall 64905 -Boxcar 63601 -Boxed 53517 -Boxee 65452 -Boxer 51762 -Boxers 58065 -Boxes 45211 -Boxford 64657 -Boxfresh 64657 -Boxhead 63792 -Boxing 44709 -BoxingManiac 64905 -Boxman 62066 -Boxset 63792 -Boxsets 63419 -Boxshot 58065 -Boxster 59227 -Boxter 62917 -Boxwood 62196 -BoxxX 63601 -Boxxet 52699 -Boxxx 62066 -Boy 41389 -Boy's 53301 -Boyce 56551 -Boycott 57741 -Boycotts 65452 -Boyd 50832 -Boyd's 62066 -Boyden 65452 -Boyds 64201 -Boyer 56687 -Boyes 63792 -Boyfriend 54283 -Boyfriends 64423 -Boyhood 63792 -Boykin 63601 -Boylan 62066 -Boyle 53729 -Boyle's 63991 -Boylston 58979 -Boyne 59164 -Boynton 52221 -Boys 42188 -Boyt 65170 -Boyz 53024 -Boyzone 60238 -Boz 61584 -Boze 65452 -Bozeman 56618 -Bozo 61051 -Bozok 64423 -Bp 61584 -Bq 64657 -Br 47431 -Bra 49726 -Braathens 52699 -Brabant 61818 -Brabham 64905 -Brabois 49440 -Brabus 57923 -Brac 61472 -Bracco 64423 -Brace 54459 -Bracelet 49285 -Bracelets 49470 -Bracers 61818 -Braces 56080 -Brachial 61584 -Brachiaria 63991 -Brachytherapy 63601 -Bracing 62613 -Bracken 60321 -Bracket 50249 -Bracketology 64657 -Brackets 52559 -Brackett 62196 -Brackish 61699 -Brackley 64201 -Bracknell 55202 -Bracks 65452 -Brad 44496 -Brad's 60580 -Bradbury 57923 -Braddock 59292 -Braden 57482 -Bradenton 52872 -Bradfield 64905 -Bradford 46622 -Bradford's 64201 -Bradley 47464 -Bradley's 62196 -Bradman 62917 -Brads 64657 -Bradshaw 54479 -Bradshaw's 65452 -Bradstreet 61051 -Bradt 63419 -Bradwell 65452 -Brady 49296 -Brady's 58688 -Bradyrhizobium 61472 -Brae 64423 -Braedon 65170 -Braemar 62917 -Braff 61818 -Brafix 57399 -Brag 58417 -Braga 57831 -Bragg 53301 -Bragging 59491 -Braham 64905 -Brahim 63991 -Brahma 59774 -Brahman 60157 -Brahmas 64657 -Brahmi 57440 -Brahmin 62469 -Brahmins 65170 -Brahms 58919 -Braid 57831 -Braided 58262 -Braiding 61699 -Braids 60762 -Braidwood 64423 -Brailes 63245 -Braille 55178 -Brain 44146 -Brain's 64201 -Brainchild 64905 -Braindumps 61818 -Brainerd 59560 -Brainiac 63077 -Brainpower 65170 -Brains 53865 -Brainstorm 58212 -Brainstorming 60405 -Braintree 57970 -Brainwave 63991 -Brainy 62917 -Braised 57653 -Braithwaite 60580 -Brak 63245 -Brake 46877 -Braker 64905 -Brakes 49400 -Braking 56862 -Bram 58162 -Bramall 64905 -Braman 60492 -Brambilla 63245 -Bramble 64423 -Bramley 58470 -Brammer 64423 -Brampton 54023 -Bramwell 65170 -Bran 57399 -Branca 62331 -Branch 43737 -BranchNet 64423 -Branched 63419 -Branches 51931 -Branching 59357 -Branco 59357 -Brand 39932 -Brand's 62331 -BrandNewDay 65170 -BrandWrite 64905 -Branded 53970 -Brandeis 57696 -Branden 60952 -Brandenburg 57566 -Brandes 60670 -Brandi 50949 -Branding 45845 -Branding's 63245 -Brandis 63601 -Brandish 64201 -Brandnew 59923 -Brando 55766 -Brando's 61584 -Brandon 46523 -Brandon's 62196 -Brands 42976 -Brandt 54264 -Brandy 51610 -Brandy's 65452 -Brandywine 59702 -Branford 60492 -Brangelina 61152 -Brangwyn 61584 -Branham 64201 -Branigan 65170 -Branislav 64905 -Branko 63077 -Brankovic 65452 -Brannan 63991 -Brannigan 60492 -Brannon 62469 -Branson 51772 -Branson's 64905 -Branston 64423 -Brant 55060 -Brantano 65452 -Brantford 53746 -Brantley 60078 -Bras 52996 -Braselton 59702 -Brash 62762 -Brasher 61051 -Brasil 49400 -Brasileira 58919 -Brasileiro 57009 -Brasilia 62196 -Brasilien 64423 -Brasov 61472 -Brass 46769 -Brasserie 57785 -Brassica 59357 -Brasswind 64201 -Braswell 64905 -Brat 58688 -Brathan 63991 -Brathay 65170 -Bratislava 56687 -Bratman 65452 -Brats 63991 -Bratt 63077 -Brattice 63601 -Brattle 64905 -Brattleboro 59039 -Bratton 61362 -Bratwurst 64905 -Bratz 55323 -Braue 64657 -Brauer 64423 -Braun 52029 -Braunfels 61152 -Braunschweig 60580 -Brava 58979 -Brave 52187 -Braveheart 62917 -Bravenet 61051 -Braver 65170 -Bravery 61152 -Braves 52085 -Bravia 56356 -Bravo 50560 -Bravo's 64657 -Bravos 65452 -Brawl 47456 -Brawler 63077 -Brawlers 62196 -Brawley 61362 -Braxton 56356 -Bray 54992 -Braylon 65170 -Brayton 61362 -Braz 65452 -Brazen 60078 -Brazil 40398 -Brazil's 55906 -Brazilian 46301 -Brazilians 61051 -Brazillian 64657 -Brazing 62762 -Brazoria 61818 -Brazos 58365 -Brazzaville 64423 -Brazzers 60952 -BrdU 60238 -Bre 63792 -Brea 55711 -Breach 56518 -Breached 63601 -Breaches 63245 -Bread 47687 -Breadcrumb 57399 -Breadcrumbs 60238 -Breaded 63077 -Breads 54946 -Breadth 63601 -Break 44097 -BreakFree 57482 -Breakage 64657 -Breakaway 60000 -Breakbeat 56356 -Breakdance 62066 -Breakdancing 62066 -Breakdown 49201 -Breakdowns 60762 -Breaker 54059 -Breakers 53613 -Breakfast 43184 -Breakfasts 47899 -Breakfree 63792 -Breaking 42968 -Breakout 54622 -Breakroom 63245 -Breaks 48629 -Breakthrough 53847 -Breakthroughs 64423 -Breakup 59630 -Breakups 63792 -Breakwater 62917 -Bream 60157 -Brean 65170 -Breanna 63991 -Breast 43381 -Breasted 60952 -Breastfeeding 52845 -Breastplate 64201 -Breasts 54770 -Breath 50686 -Breathable 60952 -Breathe 53124 -Breather 63991 -Breathing 53211 -Breathless 62613 -Breathtaking 60670 -Breaux 64657 -Brechin 64201 -Brecht 62469 -Breck 63077 -Breckenridge 53917 -Brecker 64905 -Breckinridge 64905 -Breckland 62917 -Brecksville 65170 -Brecon 57653 -Bred 59491 -Breda 61051 -Bree 56935 -Breech 64905 -Breeches 63601 -Breed 50178 -Breeder 57199 -Breeder's 65170 -Breeders 52118 -Breeding 52221 -Breedlove 62196 -Breeds 54207 -Breedsoft 62613 -Breen 59702 -Brees 60405 -Breese 64657 -Breeze 51752 -Breezes 57741 -Breezy 55992 -Breguet 62331 -Breil 63077 -Breiner 62762 -Breiseáin 59560 -Breitbart 65170 -Breitling 56388 -Brembo 59292 -Bremen 55274 -Bremer 55657 -Bremerhaven 64201 -Bremerton 55398 -Bremner 63245 -Bren 60762 -Brenan 59702 -Brenda 49657 -Brenda's 63792 -Brendan 50576 -Brendel 64905 -Brenden 61256 -Brenderup 65170 -Brendes 63792 -Brendon 57923 -Brenig 64657 -Brenly 64657 -Brenna 62066 -Brennan 51909 -Brennan's 64423 -Brenner 57358 -Brenner's 64657 -Brenntag 64657 -Brent 48278 -Brentano 64657 -Brentford 59560 -Brentham 64201 -Brenton 60580 -Brentwood 53454 -Brera 64201 -Brereton 65170 -Brescia 61699 -Breslin 61152 -Breslow 61051 -Bressler 65452 -Brest 62613 -Bret 55348 -Bretagne 60078 -Bretford 62762 -Brethren 58919 -Breton 52791 -Brett 46787 -Brett's 61940 -Bretton 58313 -Breuer 62613 -Brevard 55373 -Breville 60580 -Brew 52447 -Brewed 61940 -Brewer 53010 -Brewer's 60238 -Breweries 57046 -Brewers 51804 -Brewery 53138 -Brewfest 61584 -Brewing 51825 -Brewmasters 63601 -Brewpub 60952 -Brewpubs 65170 -Brews 61699 -Brewster 53988 -Brewster's 65452 -Breyer 61256 -Brezhnev 65170 -Brezhoneg 57084 -Bri 57970 -Bria 63601 -Brian 40832 -Brian's 57482 -BrianGreenwood 62613 -Briana 58262 -Brianna 56721 -Brianne 61940 -Brians 65452 -Briar 59424 -Briarcliff 59923 -Briarcliffe 61472 -Briard 65170 -Briarwood 62469 -Briatore 64905 -Bribery 60000 -Bribes 65170 -Bribie 64423 -Brice 59560 -Brick 48721 -Brickell 60670 -Bricker 63792 -Brickfield 64657 -Brickfish 59292 -Bricklayers 63601 -Brickman 60492 -Bricks 53470 -Brickstone 63419 -Brickwork 65170 -Brickyard 62196 -Bridal 46449 -Bridalwave 64201 -Bride 46821 -Bride's 60157 -Brides 49108 -Brideshead 63991 -Bridesmaid 56356 -Bridesmaids 58577 -Bridezilla 60157 -Bridge 42301 -Bridgeable 62469 -Bridged 63792 -Bridgehampton 61051 -Bridgeman 61584 -Bridgend 56050 -Bridgeport 53454 -Bridger 59101 -Bridges 50006 -Bridgestone 55274 -Bridget 52375 -Bridgeton 57970 -Bridgetown 61051 -Bridgett 64905 -Bridgette 58979 -Bridgeview 63792 -Bridgewater 53392 -Bridgeway 63792 -Bridgfords 65452 -Bridging 53695 -Bridgman 63077 -Bridgnorth 61818 -Bridgwater 58979 -Bridle 59560 -Bridlewood 62613 -Bridlington 61699 -Brie 59560 -Brief 38722 -Briefcase 53010 -Briefcases 61472 -Briefing 49446 -Briefings 55604 -Briefly 54902 -Briefs 50983 -Brielle 64905 -Brien 62066 -BrienTA 59560 -Brier 60762 -Briere 61940 -Brierfield 65170 -Brierley 58919 -Brieskorn 64905 -Brig 57566 -Brigada 63245 -Brigade 52268 -Brigades 59774 -Brigadier 52872 -Brigantine 63077 -Brigette 64905 -Briggs 53081 -Brigham 53899 -Brighouse 60405 -Bright 46648 -Bright's 63245 -BrightSource 61818 -Brightcast 64657 -Brightcove 60670 -Brighten 58802 -Brightening 63601 -Brighter 57524 -Brightest 60405 -Brightkite 64423 -Brightly 64657 -Brightmail 60238 -Brightman 59227 -Brightness 55684 -Brighton 45949 -Brighton's 62469 -Brights 63419 -Brightside 63245 -Brigid 60670 -Brigid's 64201 -Brigitta 63245 -Brigitte 55631 -Briley 64423 -Brill 57399 -Brilliance 58745 -Brilliant 51899 -Brilliantly 65452 -Brillouin 59923 -Brim 61818 -Brimbank 63991 -Brimfield 62613 -Brimstone 65452 -Brin 61699 -Brincando 63601 -Brindle 65452 -Brindley 64423 -Brine 60157 -Bring 45611 -Bringing 50537 -Brings 51550 -Brinig 63792 -Brinig's 64905 -Brink 51406 -Brink's 63991 -Brinker 58417 -Brinker's 60580 -Brinkley 53970 -Brinkman 63792 -Brinkmann 63419 -Brinks 64423 -Brinley 65452 -Brinson 57923 -Brinton 64423 -Brio 60670 -Brioche 62762 -Brion 64905 -Bris 63077 -Brisa 63792 -Brisbane 45734 -Brisbane's 61051 -Briscoe 59491 -Brisingr 65170 -Brisket 60952 -Brissenden 65170 -Bristle 59164 -Bristlecone 65170 -Bristol 44672 -Bristol's 64201 -Bristow 57923 -Brit 52327 -Brita 60492 -Britain 43359 -Britain's 48991 -Britains 61362 -Britannia 55604 -Britannica 42322 -Britannica's 64423 -Britax 57122 -Britcar 64423 -Brite 56021 -Britian 64905 -British 37146 -Britishness 65452 -Britney 44480 -Britney's 57199 -BritneyLuver 61818 -Brito 59560 -Briton 60000 -Britons 55037 -Brits 55711 -Britt 54041 -Britt's 62066 -Britta 62469 -Brittany 50766 -Britten 59630 -Brittle 60856 -Brittney 57524 -Britto 63991 -Britton 56356 -Brivis 64905 -Brix 63245 -Brixham 63792 -Brixton 56420 -Brkt 60405 -Brno 51867 -Bro 55060 -Broa 64905 -Broad 48949 -BroadBand 56485 -BroadVision 65452 -Broadband 43324 -BroadbandTV 63991 -BroadbandTVFashion 63601 -Broadbeach 58860 -Broadbent 62066 -Broadcast 46947 -Broadcaster 58745 -Broadcasters 57199 -Broadcasting 46017 -Broadcasts 56080 -Broadcloth 65452 -Broadcom 55906 -Broaden 59357 -Broadening 63419 -Broader 60580 -Broadfield 64657 -Broadhead 65170 -Broadhurst 63419 -Broadlane 64905 -Broadley 63601 -Broadly 63077 -Broadmeadow 65170 -Broadmoor 64201 -Broads 58632 -Broadside 65170 -Broadstairs 60405 -Broadus 63245 -Broadview 59702 -Broadwater 62762 -Broadway 44990 -Broadway's 61051 -Broadweave 60405 -Broadwell 61699 -Broan 60492 -Brocade 57923 -Brocco 63419 -Broccoli 55130 -Broce 64657 -Brocheré 63601 -Brochure 47675 -Brochures 50321 -Brock 51931 -Brockley 64905 -Brockman 61940 -Brockovich 64423 -Brockport 59424 -Brockton 57358 -Brockville 59774 -Brockway 63077 -Brockwell 65170 -Brocton 65452 -Brod 63601 -Brodatz 63792 -Broder 61362 -Broderbund 62917 -Broderick 56050 -Brodeur 60492 -Brodhead 65170 -Brodie 57609 -Brodit 62331 -Brodrick 64657 -Brodsky 60762 -Brodspec 65452 -Brody 54643 -Broennimann 62066 -Brogan 59227 -Broil 61256 -Broiled 61818 -Broiler 62331 -Broilers 65170 -Brokaw 59560 -Broke 55060 -Brokeback 59923 -Broken 46079 -Broker 46726 -Broker's 61940 -Brokerage 51814 -Brokered 64657 -Brokers 48265 -Broking 62331 -Brolga 63419 -Brolin 60238 -Brom 56862 -Bromberg 61362 -Brome 64905 -Bromide 57524 -Bromilow 61472 -Bromine 63991 -Bromley 53182 -Bromo 63419 -Brompton 57278 -Bromsgrove 62196 -Bromus 65452 -Bromwich 56551 -Bron 63077 -Bronchial 57653 -Bronchitis 62066 -Bronchoalveolar 64201 -Bronchoscopy 63245 -Bronco 56791 -Bronco's 56827 -Broncos 50957 -Bronfman 65452 -Bronson 57923 -Bronstein 63419 -Bronte 56687 -Bronwen 63601 -Bronwyn 61256 -Bronx 49670 -Bronze 47339 -Bronzebeard 59491 -Bronzer 60856 -Bronzeville 64657 -Brooch 58212 -Brooches 58365 -Brood 57199 -Brook 48726 -Brook's 65170 -Brookdale 60856 -Brooke 48496 -Brooke's 61699 -Brooker 60321 -Brookes 58162 -Brookfield 54664 -Brookhaven 55963 -Brookings 55226 -Brookland 63077 -Brooklands 60405 -Brooklet 65452 -Brookline 57199 -Brooklyn 45228 -Brooklyn's 60580 -BrooklynVegan 62331 -Brooks 47297 -Brookshire 62917 -Brookside 57046 -Brookstone 59848 -Brooksville 59357 -Brookview 64905 -Brookville 60492 -Brookwood 62917 -Broom 57009 -Broomball 62469 -Broome 56324 -Broomfield 58802 -Brooms 61051 -Brophy 62469 -Bros 50832 -Brosh 65452 -Brosnan 60000 -Brosseau 64905 -Broström 65170 -Brot 63792 -Broth 61051 -Brotha 64657 -Brothel 64905 -Brothels 63991 -Brother 43890 -Brother's 58017 -BrotherSoft 62613 -Brotherhood 52496 -Brotherly 63245 -Brothers 42814 -Brothersoft 57876 -Brough 62469 -Brougham 65170 -Brought 48913 -Broughton 56110 -Broussard 60856 -Brouwer 62331 -Brow 56935 -Broward 52411 -Brower 62196 -Brown 39231 -Brown's 52018 -Brownback 60321 -Browne 53934 -Browne's 64201 -Brownell 64423 -Brownfield 59702 -Brownfields 60492 -Brownian 60238 -Brownie 55448 -Brownies 56356 -Browning 52472 -Browning's 64423 -Brownings 64423 -Brownlee 62469 -Brownlow 61472 -Browns 50865 -Brownsburg 64423 -Brownsea 63077 -Brownstein 62331 -Brownstone 60856 -Brownstoner 62613 -Brownstown 62917 -Brownsville 57046 -Brownswood 64201 -Brownz 63077 -Brows 64423 -Browse 33301 -Browsealoud 57609 -Browser 44806 -Browsers 48731 -Browsing 48126 -Broxbourne 63419 -Broxton 63991 -Broyhill 65452 -Broyles 64905 -Bru 62196 -Brubaker 61362 -Brubeck 62762 -Bruce 42770 -Bruce's 60078 -Brucella 59702 -Bruchids 65170 -Bruck 64905 -Bruckhaus 64905 -Bruckheimer 63419 -Bruckner 61152 -Bruder 64201 -Bruegel 64905 -Bruford 65452 -Brugada 61256 -Bruges 58523 -Brugge 63245 -Bruhn 65170 -Bruin 59227 -Bruins 51974 -Bruise 63077 -Bruised 61940 -Bruiser 64657 -Bruises 64423 -Bruja 64201 -Bruker 57084 -Brule 60670 -Brulee 63419 -Brum 63991 -Brumbies 65452 -Brumby 61256 -Brummell 63245 -Brun 62917 -Bruna 62762 -Brunch 53695 -Brundage 64905 -Brundall 64201 -Brundlefly 64201 -Brune 64905 -Bruneau 63077 -Brunei 46125 -Brunel 57358 -Brunello 62762 -Bruner 63991 -Brunet 60492 -Brunette 53934 -Brunettes 58979 -Bruni 57566 -Brunia 62762 -Brunner 58417 -Bruno 50387 -Bruno's 63419 -Bruns 61362 -Brunson 61818 -Brunswick 46531 -Brunt 62917 -Brunton 60670 -Brus 64905 -Bruschetta 61818 -Brush 48731 -BrushMarQ 64423 -Brushed 55037 -Brushes 52233 -Brushing 60157 -Brushless 55084 -Brushstrokes 65170 -Brushwood 64423 -Brushy 65170 -Brussel 62917 -Brussels 49268 -Brut 57653 -Brutal 54380 -Brutality 62066 -Brute 58745 -Bruton 61584 -Brutus 60952 -Bruty 59292 -Bruxelles 59560 -Bruyette 65452 -Bruyn 65452 -Bry 64201 -Bryan 46102 -Bryan's 60321 -Bryans 65452 -Bryanston 65452 -Bryant 48186 -Bryant's 60000 -Bryce 52832 -Brydon 64201 -Bryn 54770 -Bryndis 63077 -Brynmawr 62331 -Brynn 64423 -Bryon 63419 -Bryony 64423 -Bryson 56862 -Brzezinski 62613 -Bs 59101 -Bschool 64905 -Bsn 65170 -Bsns 59923 -Bsus 63792 -Bt 55631 -Btls 65170 -Btn 65452 -Btrieve 65170 -Btu 61584 -Btw 61584 -Bu 54622 -BuOOH 62331 -Bub 62613 -Bubba 55766 -Bubba's 62762 -Bubble 48600 -BubbleShare 65452 -Bubblegum 59702 -Bubbles 54096 -Bubblewrap 64201 -Bubbling 64657 -Bubbly 60238 -Buble 60762 -Buc 62917 -Buca 60000 -Buccal 62762 -Buccaneer 60238 -Buccaneers 54096 -Bucci 63245 -Buccleuch 65452 -Buch 58065 -Buchan 61256 -Buchanan 51846 -Buchanan's 64423 -Bucharest 53052 -Bucher 62469 -Buchheit 62613 -Buchholz 60000 -Buchner 64423 -Buchwald 65452 -Buck 48487 -Buck's 62196 -Buckaroo 64905 -Buckcherry 62331 -Bucket 52018 -Buckethead 64905 -Buckets 57970 -Buckeye 54479 -Buckeyes 55423 -Buckhannon 60405 -Buckhead 60000 -Buckhorn 63792 -Buckhurst 64423 -Bucking 64657 -Buckingham 52141 -Buckinghamshire 51909 -Buckland 57741 -Buckle 53485 -Buckles 56485 -Buckley 52546 -Buckley's 62917 -Buckling 64423 -Buckman 58523 -Buckmaster 64423 -Buckmiller 62917 -Buckminster 61584 -Bucknell 60492 -Buckner 59424 -Bucknuts 61362 -Bucks 49639 -Buckshot 61256 -Buckshot's 64201 -Buckskin 61152 -Buckthorn 65452 -Bucktown 63245 -Buckwheat 63991 -Bucky 55578 -Bucs 56140 -Bucuresti 60856 -Bud 51453 -Bud's 61699 -Buda 60580 -Budabless 64905 -Budapest 49707 -Budd 55906 -Budd's 64423 -Budden 59292 -Buddha 50654 -Buddha's 58632 -Buddhafield 64905 -Buddhas 65170 -Buddhism 52152 -Buddhist 50328 -Buddhists 58745 -Buddies 52351 -Budding 61152 -Buddy 45669 -Buddy's 63991 -BuddyMarks 64423 -BuddyTV 62613 -Bude 62331 -Budgell 65452 -Budget 42285 -Budgetary 60492 -Budgeted 63419 -Budgeting 52546 -Budgets 55963 -Budi 63601 -Budnick 65170 -Budo 61256 -Budock 59630 -Budokai 58577 -Buds 57970 -Budweiser 58262 -Budworth 57278 -Buecker 61584 -Buehler 63419 -Buell 56652 -Bueller's 64423 -Buen 62917 -Buena 51492 -Buenaventura 64905 -Bueno 60580 -Buenos 49841 -Buf 64905 -Buff 55084 -Buffalo 44425 -Buffalo's 62917 -Buffaloes 62331 -Buffer 52096 -Buffered 60952 -BufferedImage 64423 -Buffering 62196 -Buffers 58417 -Buffet 50576 -Buffets 60405 -Buffett 53010 -Buffett's 61584 -Buffing 62762 -Buffington 63792 -Buffon 61472 -Buffs 61584 -Buffy 53485 -Bufo 64905 -Buford 57199 -Bug 44472 -Bug's 64905 -BugTraq 63601 -Bugaboo 60000 -Bugatti 54005 -Bugger 62469 -Buggies 60238 -Buggy 55552 -Bugis 65170 -Bugle 59292 -Bugs 46242 -Bugsy 65452 -Bugtracker 64657 -Bugz 65170 -Bugzilla 59923 -Buhl 62469 -Buhler 64657 -Bui 60670 -Buick 48431 -Build 41412 -BuildCollection 64423 -Buildcore 58979 -Builder 45176 -Builder's 60157 -Builders 46503 -Building 38061 -Buildings 46846 -Buildingtalk 64905 -Buildout 64905 -Builds 53882 -Buildup 63991 -Built 45076 -Builth 63991 -Buisness 61472 -Buje 64905 -Buju 63601 -Bukantz 64905 -Bukhari 64905 -Bukit 55906 -Bukkake 60000 -Bukowski 63245 -Buku 64657 -Bula 57876 -Bulan 63991 -Bulawayo 63245 -Bulb 51511 -Bulbagarden 63991 -Bulbine 63077 -Bulbophyllum 65452 -Bulbostylis 65452 -Bulbs 50484 -Bulbul 65452 -Bulent 63991 -Bulfinch's 64423 -Bulgari 63419 -Bulgaria 44067 -Bulgaria's 61256 -Bulgarian 48191 -Bulgarians 63419 -Bulge 61818 -Bulger 63792 -Bulges 64905 -Bulging 63077 -Bulimia 55793 -Bulk 46354 -Bulkeley 65452 -Bulkhead 61699 -Bulking 65452 -Bulky 60000 -Bull 45583 -Bull's 61472 -Bullard 59101 -Bulldog 52818 -Bulldogs 50966 -Bulldozer 65452 -Bulle 62613 -Buller 61472 -Bullet 49854 -Bulletin 43272 -Bulletins 46212 -Bulletpr 59164 -Bulletproof 55398 -Bullets 55226 -Bullfrog 62469 -Bullhead 60157 -Bulli 63419 -Bullies 62613 -Bullington 62917 -Bullion 57653 -Bullish 58688 -Bullitt 60856 -Bullmastiff 63991 -Bulloch 58979 -Bullock 54059 -Bullous 64657 -Bullpen 59848 -Bulls 49745 -Bullseye 59227 -Bullshit 59923 -Bullwinkle 62469 -Bully 54706 -Bullying 54380 -Bulmer 65452 -Bulova 60078 -Bult 64423 -Bultic 61818 -Bulverde 63245 -Bum 55934 -Bumble 55178 -Bumblebee 61256 -Bumbo 64657 -Bummer 62331 -Bump 52832 -Bumped 62331 -Bumper 48687 -Bumpers 57440 -Bumping 65170 -Bumps 58632 -Bumpshack 64423 -Bumpy 64201 -Bumpzee 60856 -Bums 60405 -Bun 56388 -Buna 64905 -Bunbury 56356 -Bunce 64657 -Bunch 54188 -Bunchball 60000 -Bunches 63991 -Buncombe 58365 -Bund 62196 -Bundaberg 59424 -Bundchen 56551 -Bundesanstalt 65170 -Bundesbank 63792 -Bundesliga 54992 -Bundi 65170 -Bundle 50046 -Bundled 57696 -Bundles 53729 -Bundling 63792 -Bundt 65452 -Bundy 57440 -Bung 64423 -Bungalow 53865 -Bungalows 57566 -Bunge 60078 -Bungee 59424 -Bungie 54041 -Bungie's 57440 -Bungle 62196 -Bunion 64905 -Bunk 54902 -Bunker 54479 -Bunkers 64201 -Bunn 58577 -Bunnie 64657 -Bunnies 54813 -Bunnings 65170 -Bunny 49633 -Bunratty 59227 -Buns 59227 -Bunsen 63077 -Bunting 59923 -Bunton 61940 -Bunty 63991 -Bunyan 63419 -Buon 64201 -Buona 64905 -Buonpane 61818 -Buoy 56899 -Buoyancy 63991 -Buoyant 63077 -Buoys 65452 -Bupa 62762 -Bupropion 58745 -Bur 61699 -Burak 62613 -Burana 65452 -Burbank 53779 -Burberry 54114 -Burch 53934 -Burcu 61818 -Burda 53729 -Burdekin 60000 -Burden 55604 -Burdens 62613 -Burdett 62196 -Burdick 62613 -Burdock 63419 -Burdon 64201 -Bure 64657 -Bureau 42391 -Bureau's 59560 -Bureaucracy 62331 -Bureaucratic 64657 -Bureaus 58688 -Buren 57238 -Burfi 62331 -Burford 63245 -Burg 58979 -Burgas 63245 -Burge 61051 -Burger 49815 -Burgers 52996 -Burgess 52472 -Burgh 61362 -Burghley 64423 -Burgin 64423 -Burglar 57278 -Burglaries 64201 -Burglary 57318 -Burgman 63419 -Burgos 61362 -Burgoyne 65170 -Burgundy 52927 -Buri 61472 -Burial 51248 -Burials 60952 -Buried 54096 -Burien 63601 -Burj 59227 -Burk 63419 -Burka 65170 -Burke 49163 -Burke's 53182 -Burkersdorf 64657 -Burkes 63991 -Burkett 62469 -Burkhard 61584 -Burkhardt 62613 -Burkhart 64657 -Burkholder 65170 -Burkholderia 63245 -Burkina 46831 -Burkitt 64423 -Burkitt's 63792 -Burks 60321 -Burl 58017 -Burlap 63991 -Burleigh 61051 -Burleson 59101 -Burlesque 59560 -Burley 57084 -Burlingame 57741 -Burlington 49054 -Burma 51330 -Burma's 65452 -Burman 61051 -Burmese 53679 -Burn 47445 -Burnaby 55631 -Burned 58313 -Burner 50856 -Burners 53501 -Burnet 58919 -Burnett 53407 -Burnett's 64905 -Burney 63419 -Burnham 55578 -Burnie 59774 -Burning 45785 -BurningInstalling 65452 -Burnished 63991 -Burnley 53847 -Burnout 52982 -Burns 48314 -Burnside 54946 -Burnsville 60000 -Burnt 54207 -Burnzy 64423 -Burp 60321 -Burpham 63077 -Burpy 65452 -Burr 55500 -Burra 65452 -Burrard 65452 -Burrell 57653 -Burress 59630 -Burridge 64423 -Burrill 64201 -Burris 61051 -Burrito 58577 -Burritos 64423 -Burroughs 56756 -Burrow 62613 -Burrows 58113 -Burrs 65452 -Burs 64201 -Bursa 58417 -Bursaries 62196 -Bursary 61472 -Bursitis 62469 -Burson 63601 -Burst 53423 -Burstein 63077 -Bursting 60952 -Bursts 60762 -Burt 52996 -Burt's 59848 -Burton 47807 -Burton's 56110 -Burtt 63419 -Burund 60952 -Burundi 47207 -Burwell 62469 -Burwood 60492 -Bury 49932 -Burzum 65452 -Bus 43827 -Busan 55963 -Busby 57785 -Busca 63245 -Buscador 63991 -Buscar 58417 -Buscemi 62917 -Busch 52351 -Buses 52141 -Busey 61152 -Bush 40571 -Bush's 49834 -BushTorrent 58212 -Bushcare 64905 -Bushell 65170 -Bushes 60856 -Bushey 59923 -Bushfire 62469 -Bushido 61699 -Bushing 59491 -Bushings 58802 -Bushland 62917 -Bushless 63792 -Bushman 62917 -Bushmaster 63601 -Bushnell 55154 -Bushs 64905 -Bushwick 60157 -Bushy 61699 -Busines 63601 -Business 28783 -BusinessCards 63991 -BusinessFinder 63077 -BusinessObjects 57923 -BusinessWeek 52399 -BusinessWire 65452 -Businesses 42786 -Businessman 59357 -Businessmen 61472 -Buskirk 64657 -Busnes 64423 -Busou 62917 -Buspar 58979 -Busquets 65452 -Buss 61472 -Busse 61472 -Busselton 64423 -Bussiness 64201 -Bussola 65170 -Bust 51700 -Busta 53196 -Bustamante 64657 -Busted 54207 -Buster 52496 -Buster's 62613 -Busters 56935 -Bustier 61152 -Bustiers 64201 -Busting 61472 -Bustling 64201 -Bustos 64905 -Busts 59923 -Busty 50074 -Busway 64201 -Busy 50387 -But 33498 -Butadiene 64905 -Butalbital 60157 -Butane 62469 -Butch 54749 -Butcher 53882 -Butchers 57009 -Butchi 63601 -Bute 57084 -Butea 62469 -Butera 64905 -Butkus 63419 -Butler 47756 -Butler's 59923 -Butlers 63077 -Butlins 59357 -Butrint 60492 -Butt 49986 -Butta 65452 -Butte 52954 -Butter 48944 -Buttercream 63245 -Buttercup 61940 -Buttered 60492 -Butterfield 57876 -Butterfinger 62066 -Butterflies 55130 -Butterfly 47943 -Butterick 64423 -Buttermere 61472 -Buttermilk 61152 -Butternut 57482 -Butters 60580 -Butterscotch 61051 -Butterworth 56356 -Butterworths 63601 -Buttery 62917 -Buttes 63792 -Butthead 59491 -Butthole 62066 -Buttiauxella 64905 -Buttman 65170 -Button 43488 -Buttonhole 64657 -Buttons 47562 -Buttonwood 64657 -Butts 54283 -Buttwoman 64423 -Butuan 63991 -Butyl 62613 -Buu's 58365 -Buuren 57482 -Bux 62762 -Buxton 57238 -Buy 32833 -Buy's 65170 -BuyCanada 59227 -BuyItNow 61584 -BuyMusic 64657 -BuyNow 62917 -BuySell 59424 -BuyTV 54706 -Buyback 58113 -Buybacks 64423 -Buyer 42652 -Buyer's 48126 -BuyerZone 60078 -Buyers 44720 -Buying 40881 -Buyout 61051 -Buyouts 63601 -Buys 49979 -Buyside 65170 -Buzmob 60856 -Buzz 43415 -BuzzFeed 58802 -BuzzMachine 61584 -BuzzSugar 64905 -Buzzard 60762 -Buzzcocks 58860 -Buzzed 61472 -Buzzer 58802 -Buzzes 60492 -Buzzflash 64657 -Buzzi 65452 -Buzzillions 61256 -Buzzin 65170 -Buzzing 62469 -Buzznet 57785 -Buzztime 60762 -Buzzword 62613 -Buzzwords 65170 -Buzzworthy 59491 -BvD 61818 -Bvlgari 58979 -Bw 64905 -Bwana 63991 -Bway 65452 -Bwrdd 65170 -Bx 64905 -By 30917 -ByVal 56585 -Byala 63792 -Byard 61256 -Byblos 62917 -Bydgoszcz 59292 -Bye 49319 -Byelorussian 65170 -Byers 58365 -Byfield 64905 -Bygone 64423 -Byker 65452 -Bylaw 57970 -Bylaws 54321 -Byline 62613 -Bylot 64201 -Bynes 59560 -Bynum 57696 -Byousoku 65452 -Bypass 51600 -Bypassing 60492 -Byrd 53646 -Byrd's 64657 -Byrds 62066 -Byrne 51931 -Byrne's 62917 -Byrnes 58745 -Byron 49815 -Byron's 62469 -Bysshe 60670 -Bystander 63419 -Byte 55849 -Bytes 50560 -Bythotrephes 60762 -Byung 64201 -Byway 60000 -Byways 62196 -Byxbee 63792 -Byzance 64905 -Byzantine 54283 -Byzantium 61818 -Bz 65170 -Bárbara 65170 -Bâthie 62917 -Béatrice 64905 -Béla 62613 -Bóg 62917 -Bölüm 56862 -Börse 60078 -Búsqueda 56080 -Bücher 62917 -Bülent 65170 -Bündchen 64905 -C 33512 -C'est 56388 -C'mon 57876 -C's 57399 -CA 35009 -CA's 64905 -CAA 55963 -CAAT 65170 -CAB 54459 -CABAL 58262 -CABARRUS 65170 -CABBAGE 62917 -CABE 63991 -CABG 58417 -CABI 60856 -CABIN 59560 -CABINET 56324 -CABINETS 64657 -CABLE 52164 -CABLES 57653 -CABO 62469 -CABS 60321 -CAC 55323 -CACC 64423 -CACHE 61940 -CACI 62469 -CAD 46893 -CADA 63792 -CADD 63245 -CADDO 60405 -CADET 64905 -CADILLAC 59164 -CADIS 64201 -CADRE 63077 -CADW 64905 -CADalyst 54096 -CAE 57238 -CAF 57609 -CAFE 55578 -CAFR 59848 -CAFRA 63991 -CAFÉ 64657 -CAG 54560 -CAGE 58577 -CAGED 64423 -CAGES 64201 -CAGR 62762 -CAH 63601 -CAI 59491 -CAICOS 62762 -CAIR 65170 -CAIRNS 60952 -CAKE 54770 -CAKES 59848 -CAL 55552 -CALC 61584 -CALCIUM 62196 -CALCULATE 64905 -CALCULATED 63991 -CALCULATION 60580 -CALCULATIONS 64423 -CALCULATOR 59560 -CALCULATORS 63991 -CALDER 64423 -CALDWELL 62196 -CALEB 64423 -CALEDONIA 61362 -CALENDAR 48046 -CALENDARS 58017 -CALENDARSAVE 62196 -CALFED 61362 -CALGARY 61051 -CALI 62066 -CALIBER 64423 -CALIBRATION 62613 -CALICO 62469 -CALIF 63991 -CALIFORNIA 49847 -CALL 47157 -CALLAWAY 65452 -CALLED 57876 -CALLING 56518 -CALLIOPE 63991 -CALLS 57741 -CALM 61940 -CALORIES 65452 -CALS 54519 -CALVERT 64905 -CALVIN 60238 -CALZAGI 61584 -CAM 51095 -CAMARO 62469 -CAMBODIA 60157 -CAMBRIDGE 57696 -CAMCORDER 59630 -CAMCORDERS 60952 -CAMDEN 61362 -CAME 59292 -CAMELS 64423 -CAMERA 52858 -CAMERAS 57318 -CAMERON 60078 -CAMEROON 61256 -CAMINO 64423 -CAMO 59039 -CAMOUFLAGE 65170 -CAMP 55631 -CAMPAIGN 55107 -CAMPAIGNS 63991 -CAMPBELL 57046 -CAMPEONATO 65452 -CAMPER 63601 -CAMPING 57358 -CAMPO 64657 -CAMPS 63991 -CAMPUS 55373 -CAMS 59491 -CAMs 62469 -CAN 45922 -CAN'T 55474 -CANADA 49417 -CANADA'S 65452 -CANADIAN 54360 -CANAL 63245 -CANARY 64423 -CANBERRA 63245 -CANC 64423 -CANCEL 58979 -CANCELLATION 61256 -CANCELLED 57970 -CANCER 52597 -CANCION 64201 -CANDID 64657 -CANDIDATE 58919 -CANDIDATES 59491 -CANDLE 62917 -CANDLES 62469 -CANDY 57831 -CANE 63419 -CANNABIS 63991 -CANNED 64201 -CANNES 65170 -CANNON 60856 -CANNOT 55500 -CANOE 60238 -CANON 53581 -CANOPY 65170 -CANPAGES 59164 -CANS 65170 -CANT 57160 -CANTER 65170 -CANTERBURY 63601 -CANTO 65170 -CANTON 61362 -CANVAS 57696 -CANVEY 64905 -CANYON 59039 -CAO 59227 -CAP 51078 -CAPA 60078 -CAPABILITIES 63792 -CAPABILITY 64201 -CAPABLE 65452 -CAPACITOR 63792 -CAPACITORS 63601 -CAPACITY 55037 -CAPD 60492 -CAPE 55226 -CAPITAL 51899 -CAPITALAND 57084 -CAPITALS 64423 -CAPITOL 60492 -CAPM 61699 -CAPR 65170 -CAPS 53565 -CAPSULES 64905 -CAPT 60157 -CAPTAIN 57566 -CAPTCHA 56791 -CAPTION 64657 -CAPTURE 64423 -CAR 48055 -CARA 64905 -CARAMELL 63601 -CARAVAN 60492 -CARB 55500 -CARBIDE 64201 -CARBON 54601 -CARCINOMA 63601 -CARD 49670 -CARDBOARD 63419 -CARDIAC 61584 -CARDIFF 63792 -CARDIN 64201 -CARDINAL 62917 -CARDINALS 64905 -CARDIOIDE 64905 -CARDIOSOURCE 65170 -CARDIOTHORAC 62196 -CARDIOVASC 59774 -CARDIOVASCULAR 63419 -CARDS 50856 -CARE 48296 -CAREC 61152 -CAREER 52648 -CAREERS 53226 -CAREFULLY 60580 -CARES 62762 -CAREY 58919 -CARFAX 51387 -CARGO 59039 -CARI 65452 -CARIBBEAN 59923 -CARIES 65170 -CARING 63077 -CARL 57358 -CARLA 62613 -CARLE 63419 -CARLISLE 62196 -CARLO 62196 -CARLOS 59039 -CARLTON 60000 -CARLYLE 63601 -CARMEL 62917 -CARMEN 60762 -CARMIKE 65170 -CARNAVAL 65170 -CARNEGIE 63419 -CARNIVAL 62066 -CAROL 57741 -CAROLE 63077 -CAROLINA 52886 -CAROLINE 61362 -CAROLYN 61940 -CARP 59702 -CARPENTER 61584 -CARPENTERS 64423 -CARPET 59424 -CARR 62762 -CARRA 65452 -CARRERAS 59774 -CARRIAGE 63419 -CARRIE 65452 -CARRIED 57741 -CARRIER 56862 -CARRIERS 61051 -CARROLL 60321 -CARROT 63077 -CARRY 50750 -CARRYING 61699 -CARS 50454 -CARSDIRECT 61940 -CARSON 59848 -CART 49001 -CARTA 63419 -CARTE 65452 -CARTEL 60952 -CARTELS 57785 -CARTER 58632 -CARTON 58979 -CARTOON 59774 -CARTOONS 59848 -CARTRIDGE 59923 -CARTRIDGES 61584 -CARVED 62917 -CARY 64657 -CARYN 65170 -CARandDRIVER 63991 -CAS 51531 -CASA 55578 -CASA's 62917 -CASAS 64201 -CASCADE 62469 -CASE 47526 -CASES 54946 -CASEY 61472 -CASH 52496 -CASHIER 64201 -CASING 64657 -CASINO 58860 -CASINOS 63792 -CASIO 61818 -CASKET 63991 -CASPER 65170 -CASS 59560 -CASSANDRA 63419 -CASSEROLE 62613 -CASSETTE 63245 -CAST 53952 -CASTING 62762 -CASTLE 57696 -CASTRO 64201 -CASUAL 61362 -CASUALARCADE 64201 -CASUALTY 62196 -CASWELL 63991 -CAT 48174 -CAT'S 65170 -CATALINA 65452 -CATALOG 48515 -CATALOGS 65170 -CATALOGUE 59491 -CATALYST 62196 -CATALYSTS 64201 -CATALYTIC 65452 -CATAWBA 62469 -CATCH 60670 -CATEGORIES 49886 -CATEGORY 51974 -CATERING 60078 -CATERPILLAR 63419 -CATHEDRAL 64657 -CATHERINE 58577 -CATHETER 65170 -CATHOLIC 57122 -CATHY 64201 -CATIA 60952 -CATO 65170 -CATS 58162 -CATSI 64423 -CATTLE 62917 -CATV 60952 -CAU 63419 -CAUCASUS 58017 -CAUGHT 62196 -CAUSA 64657 -CAUSE 55766 -CAUSED 58802 -CAUSES 58802 -CAUTION 59774 -CAV 63792 -CAVALERA 64201 -CAVALIER 64657 -CAVALLI 60580 -CAVE 60492 -CAVERSHAM 65170 -CAVITY 64423 -CAYMAN 58979 -CB 48274 -CBA 56293 -CBB 59923 -CBBC 49033 -CBC 47752 -CBC's 64423 -CBClarke 63419 -CBCnews 63792 -CBCtv 65452 -CBD 51953 -CBE 56110 -CBF 56262 -CBG 61051 -CBGB 63419 -CBGB's 64905 -CBH 64423 -CBI 55178 -CBINDUSTRY 65452 -CBIZ 65170 -CBK 62066 -CBL 63601 -CBM 63792 -CBN 57399 -CBO 58523 -CBORD 64423 -CBOT 64423 -CBOs 64657 -CBP 58365 -CBR 54151 -CBRE 63077 -CBRL 64657 -CBRN 62917 -CBRNE 63991 -CBS 35664 -CBS's 60492 -CBSA 63601 -CBSE 60000 -CBT 57696 -CBU 63991 -CBW 64905 -CBX 61699 -CBeebies 51814 -CC 43516 -CC's 61362 -CCA 53679 -CCAHTE 60762 -CCAS 63991 -CCAir 52982 -CCB 55631 -CCBYSA 53392 -CCBill 63601 -CCC 53286 -CCCI 65452 -CCCP 59491 -CCCS 64657 -CCD 50115 -CCDA 63601 -CCDC 64905 -CCDs 64905 -CCE 63991 -CCF 57084 -CCFC 64423 -CCFL 62469 -CCFO 64905 -CCG 57566 -CCH 59164 -CCHF 61584 -CCI 54813 -CCIE 59630 -CCJ 63792 -CCK 58979 -CCL 59923 -CCLRC 62066 -CCM 56827 -CCN 64657 -CCNA 57122 -CCNMatthews 64201 -CCNP 61152 -CCO 57440 -CCP 59039 -CCPC 62762 -CCPH 60157 -CCPH's 65452 -CCR 56420 -CCRS 61818 -CCRT 62331 -CCS 55037 -CCSD 63419 -CCSM 64905 -CCSQA 65170 -CCST 63077 -CCT 58688 -CCTM 64657 -CCTV 49919 -CCU 60952 -CCUM 62469 -CCV 60762 -CCW 62196 -CCX 62331 -CCXML 63245 -CCl 59357 -CCleaner 60856 -CD 37074 -CD'S 61256 -CD's 52233 -CDA 56200 -CDAD 65452 -CDATA 62917 -CDB 60000 -CDBG 56262 -CDBurnerXP 61472 -CDC 50285 -CDC's 62917 -CDCl 55766 -CDCovers 64201 -CDDA 64201 -CDDB 64423 -CDE 57482 -CDEC 64905 -CDED 64423 -CDER 65452 -CDF 57358 -CDFreaks 57482 -CDG 53256 -CDH 65452 -CDI 54643 -CDJ 64423 -CDK 64423 -CDKitchen 65170 -CDL 55202 -CDM 55877 -CDMA 53301 -CDN 56827 -CDNB 65170 -CDNOW 64657 -CDO 58745 -CDONTS 64905 -CDP 59101 -CDR 54439 -CDRA 64201 -CDRH 63991 -CDROM 56324 -CDRP 63792 -CDRW 61256 -CDRs 60238 -CDS 52256 -CDT 47619 -CDU 65452 -CDV 63245 -CDW 50129 -CDX 63419 -CDbaby 64423 -CDcovers 65170 -CDs 43778 -CE 45615 -CEA 53779 -CEB 53746 -CEBU 62762 -CEC 55604 -CECE 63991 -CECT 59923 -CED 58365 -CEDAR 59039 -CEDC 64657 -CEDEX 65170 -CEDIA 59923 -CEE 57696 -CEES 64905 -CEF 64423 -CEFCU 65170 -CEH 61940 -CEHJ 63991 -CEI 61472 -CEILING 58802 -CEIRPP 60238 -CEL 57785 -CELDT 62196 -CELEB 59039 -CELEBRATE 62613 -CELEBRATES 63077 -CELEBRATING 64423 -CELEBRATION 60670 -CELEBRATIONS 62331 -CELEBRITIES 58632 -CELEBRITY 54992 -CELEBS 55448 -CELIA 63077 -CELINE 58979 -CELL 44029 -CELLO 65170 -CELLS 56293 -CELLULAR 57741 -CELT 63991 -CELTIC 59164 -CELTICS 63792 -CEM 58979 -CEMA 64423 -CEMENT 59424 -CEMETERY 61940 -CEN 58688 -CENS 63792 -CENSUS 60321 -CENT 60238 -CENTENNIAL 63601 -CENTER 46687 -CENTERBEAM 63601 -CENTERS 56652 -CENTERVILLE 64201 -CENTRAL 48970 -CENTRE 49620 -CENTRES 59630 -CENTRO 60952 -CENTS 64423 -CENTURY 54380 -CEO 43403 -CEO's 59039 -CEOs 55037 -CEP 56388 -CEPA 64423 -CEPOL 64657 -CEPR 53052 -CEQ 65170 -CEQA 60670 -CER 60492 -CERAMIC 58745 -CERCLA 59491 -CEREAL 64423 -CEREMONY 65452 -CERES 61818 -CERF 65452 -CERN 52509 -CERT 55849 -CERTAIN 56935 -CERTIFICATE 54581 -CERTIFICATES 53613 -CERTIFICATION 56935 -CERTIFICATIONS 63991 -CERTIFIED 55552 -CERTIFY 64657 -CERTIORARI 64657 -CES 51104 -CESAR 60492 -CESSNA 63419 -CEST 55037 -CESifo 56170 -CET 50321 -CEU 59292 -CEU's 61584 -CEUs 64201 -CEV 64423 -CF 46506 -CFA 51963 -CFB 54727 -CFC 58470 -CFCC 63991 -CFCs 62331 -CFD 52818 -CFDA 60405 -CFDs 62613 -CFE 61256 -CFF 64201 -CFH 62469 -CFI 62469 -CFIA 65452 -CFL 53407 -CFLAGS 65452 -CFLs 61940 -CFM 57084 -CFMEU 64905 -CFML 61699 -CFNM 65170 -CFO 52244 -CFOs 59923 -CFP 56170 -CFR 48841 -CFS 55423 -CFT 65452 -CFTC 63419 -CFTR 58979 -CFU 59227 -CFW 58802 -CFWSE 61472 -CFX 62613 -CG 49240 -CGA 58313 -CGAL 63991 -CGB 64657 -CGC 57831 -CGD 61472 -CGE 63245 -CGFA 65170 -CGFNS 64657 -CGG 62196 -CGH 62917 -CGI 52609 -CGIAR 58417 -CGM 58860 -CGMS 65452 -CGO 63245 -CGPRT 64201 -CGPublisher 59357 -CGR 59357 -CGRP 62917 -CGS 60405 -CGT 60238 -CGV 64905 -CGV's 64905 -CH 44192 -CHA 58688 -CHACARRON 63601 -CHAD 59357 -CHADS 65452 -CHAIM 63792 -CHAIN 56687 -CHAINS 61699 -CHAIR 55130 -CHAIRMAN 55877 -CHAIRMAN'S 63991 -CHAIRS 60580 -CHALLENGE 54096 -CHALLENGES 57876 -CHAM 64423 -CHAMBER 55849 -CHAMBERLAIN 64423 -CHAMBERS 60157 -CHAMP 59630 -CHAMPAGNE 62613 -CHAMPAIGN 60321 -CHAMPION 58577 -CHAMPIONS 61584 -CHAMPIONSHIP 57122 -CHAMPIONSHIPS 60856 -CHAN 60321 -CHANCE 56021 -CHANCES 63245 -CHANDIGARH 62917 -CHANDLER 63077 -CHANDRA 64201 -CHANEL 60238 -CHANG 61584 -CHANGE 49103 -CHANGED 59424 -CHANGER 64905 -CHANGES 53316 -CHANGING 57923 -CHANIA 63991 -CHANNEL 51909 -CHANNELS 56231 -CHANNELWEB 65452 -CHANT 64201 -CHAOS 60492 -CHAPEL 58802 -CHAPMAN 63991 -CHAPS 65170 -CHAPTER 48897 -CHAPTERS 62762 -CHAR 62196 -CHARACTER 57609 -CHARACTERISTICS 54622 -CHARACTERIZATION 60670 -CHARACTERS 61699 -CHARCOAL 65170 -CHARGE 56827 -CHARGED 60670 -CHARGER 58523 -CHARGERS 60580 -CHARGES 57524 -CHARGING 64657 -CHARITABLE 57970 -CHARITIES 65452 -CHARITY 57318 -CHARLES 51531 -CHARLESTON 60762 -CHARLIE 59774 -CHARLOTTE 57238 -CHARM 60157 -CHARMS 60492 -CHART 55154 -CHARTER 59039 -CHARTERED 65452 -CHARTERS 62917 -CHARTS 55037 -CHAS 64201 -CHASE 56687 -CHASING 62331 -CHASSIS 64201 -CHAT 53109 -CHATEAU 61699 -CHATHAM 60952 -CHATROOM 63419 -CHB 64423 -CHBC 60762 -CHC 59491 -CHCA 59491 -CHCH 59039 -CHCl 62196 -CHD 55877 -CHE 61362 -CHEAP 55037 -CHEAPER 64423 -CHEAPEST 64201 -CHEAT 60670 -CHEATS 56485 -CHECK 49086 -CHECKBOOK 57566 -CHECKBOOK's 62613 -CHECKED 61940 -CHECKING 63991 -CHECKLIST 59774 -CHECKOUT 55323 -CHECKS 56687 -CHEER 62762 -CHEERLEADER 65170 -CHEERLEADING 63601 -CHEERS 62196 -CHEESE 54946 -CHEETAH 65452 -CHEF 59923 -CHEFS 62469 -CHEK 59101 -CHELMSFORD 65170 -CHELSEA 58577 -CHELTENHAM 63991 -CHEM 61472 -CHEMICAL 49986 -CHEMICALS 55500 -CHEMISTRY 54643 -CHEMOTHERAPY 64905 -CHEN 57741 -CHENERY 65452 -CHENEY 63077 -CHENG 64201 -CHENNAI 63419 -CHER 64423 -CHERAB 64905 -CHEROKEE 58577 -CHERRY 57923 -CHERS 65452 -CHERYL 62762 -CHESAPEAKE 63792 -CHESHIRE 58365 -CHESS 60405 -CHEST 57741 -CHESTER 58688 -CHESTNUT 60762 -CHEVELLE 65452 -CHEVROLET 54879 -CHEVRON 64201 -CHEVY 57524 -CHEW 64905 -CHEWING 64905 -CHF 50702 -CHH 63792 -CHI 54207 -CHIC 58212 -CHICAGO 53138 -CHICAS 63601 -CHICK 60000 -CHICKEN 53613 -CHICKS 64201 -CHICO 65170 -CHIEF 55060 -CHIEFS 62469 -CHIHUAHUA 61472 -CHILD 52130 -CHILD'S 65452 -CHILDCARE 62917 -CHILDHOOD 61818 -CHILDREN 52018 -CHILDREN'S 57199 -CHILDRENS 59630 -CHILE 57399 -CHILI 63077 -CHILL 63601 -CHILTON 65170 -CHIMICA 61152 -CHIMNEY 63077 -CHIN 62762 -CHINA 49913 -CHINE 60157 -CHINESE 54207 -CHIP 56551 -CHIPS 60238 -CHIRP 63991 -CHIS 61362 -CHISEL 64657 -CHIVAS 61699 -CHK 64905 -CHL 60762 -CHLOE 63419 -CHLORIDE 62917 -CHM 59227 -CHMP 62762 -CHN 60238 -CHO 55738 -CHOCOLATE 55766 -CHOI 64423 -CHOICE 53407 -CHOICES 58802 -CHOIR 61699 -CHOKE 59357 -CHOLESTEROL 62917 -CHONG 65170 -CHOOL 63792 -CHOOSE 53226 -CHOP 59491 -CHOPPED 62917 -CHORAL 63991 -CHORD 61051 -CHORDS 64905 -CHORUS 57482 -CHOSEN 61584 -CHOU 63792 -CHOW 41332 -CHOWDER 64423 -CHOWHOUND 58523 -CHOWTour 60762 -CHP 57199 -CHR 59424 -CHRD 65170 -CHRIS 53286 -CHRIST 58523 -CHRISTCHURCH 62613 -CHRISTENDOM 64657 -CHRISTIAN 54749 -CHRISTIE 63419 -CHRISTINA 60157 -CHRISTINE 59774 -CHRISTMAS 51731 -CHRISTOPHER 55849 -CHROMATIC 65452 -CHROMATOGRAPHY 63792 -CHROME 56972 -CHRONIC 60078 -CHRONICLE 61051 -CHRONICLES 62613 -CHRYSLER 60078 -CHS 54685 -CHT 64201 -CHU 59560 -CHUCK 58212 -CHUNG 64657 -CHUPAcabra 64905 -CHURCH 53301 -CHURCHES 63991 -CHURCHILL 64905 -CHW 59560 -CHWs 64423 -CHiPs 64905 -CHiram 65170 -CI 46711 -CIA 50662 -CIA's 61699 -CIALIS 63419 -CIARA 63991 -CIAT 63792 -CIB 64905 -CIBA 62066 -CIBC 57440 -CIC 54879 -CICS 54360 -CID 53485 -CIDA 64201 -CIDER 65170 -CIDNP 62331 -CIDR 62917 -CIE 60405 -CIELAB 64657 -CIELO 64423 -CIENCE 63991 -CIF 58860 -CIFOR 65170 -CIG 63792 -CIGARETTE 62762 -CIGARS 64905 -CIGNA 59039 -CIH 63991 -CII 60580 -CIID 62469 -CIITA 58632 -CILS 60157 -CIM 59227 -CIMA 65170 -CIMT 63245 -CIN 58113 -CINCINNATI 60405 -CINDY 62469 -CINEMA 56388 -CINEMAS 59774 -CINEMATIC 64201 -CINGULAR 63991 -CINQUECENTO 64201 -CIO 49388 -CIOL 65452 -CIOs 56080 -CIP 56972 -CIPI 64905 -CIPO 51650 -CIR 56899 -CIRC 60157 -CIRCA 63077 -CIRCLE 55552 -CIRCLES 64201 -CIRCUIT 53865 -CIRCUITS 59702 -CIRCULAR 60157 -CIRCULATION 62066 -CIRCUMSTANCES 62917 -CIRCUS 62917 -CIS 51257 -CISA 63792 -CISCO 54969 -CISD 63991 -CISSP 63601 -CISTI 63991 -CISTI's 63601 -CIT 55934 -CITATION 54770 -CITE 54813 -CITED 51942 -CITES 58919 -CITGO 64423 -CITI 64657 -CITIES 54749 -CITIZEN 58523 -CITIZENS 58162 -CITIZENSHIP 62917 -CITRIS 60492 -CITROEN 61256 -CITRUS 63419 -CITT 64905 -CITY 43299 -CITY'S 64423 -CITYOFPLACENTIA 62066 -CIV 62762 -CIVIC 57358 -CIVIL 53533 -CIVILIZATION 65452 -CIW 64905 -CIWS 62196 -CIs 63991 -CIty 64201 -CJ 47706 -CJ's 62917 -CJC 62917 -CJD 61256 -CJLog 64423 -CJN 61472 -CJNT 59560 -CJR 58577 -CK 51034 -CKC 61152 -CKD 64657 -CKE 60238 -CKS 64423 -CKY 65452 -CL 47660 -CLA 54727 -CLACKAMAS 63792 -CLAIBORNE 62917 -CLAIM 55474 -CLAIMANT 63991 -CLAIMED 60762 -CLAIMS 51590 -CLAIR 63601 -CLAIRE 61472 -CLAMP 59848 -CLAMPS 63601 -CLAN 63245 -CLAPTON 64905 -CLARA 60952 -CLARE 62331 -CLAREMONT 63419 -CLARENCE 61362 -CLARFIELD 65170 -CLARINET 64657 -CLARITY 63419 -CLARK 56652 -CLARKE 60952 -CLARiiON 61699 -CLAS 63601 -CLASH 61472 -CLASP 60078 -CLASS 49017 -CLASSE 62469 -CLASSES 56652 -CLASSIC 52913 -CLASSICAL 57609 -CLASSICS 60405 -CLASSIFICATION 55963 -CLASSIFIED 56021 -CLASSIFIEDS 51113 -CLASSROOM 59424 -CLAUDE 61699 -CLAUDIA 62469 -CLAY 57923 -CLAYS 64201 -CLAYTON 60405 -CLC 59774 -CLD 54245 -CLE 48459 -CLEAN 55130 -CLEANED 64657 -CLEANER 60762 -CLEANERS 62469 -CLEANING 56293 -CLEANUP 64201 -CLEAR 53917 -CLEARANCE 54749 -CLEARING 62762 -CLEARLY 63419 -CLEARWATER 62917 -CLEAVAGE 64905 -CLEC 63601 -CLEMSON 61362 -CLEO 58802 -CLEOPR 61818 -CLERICAL 64905 -CLERK 55992 -CLERK'S 63419 -CLEVELAND 55906 -CLF 63601 -CLG 63077 -CLI 56687 -CLIA 65170 -CLIC 63245 -CLICK 44986 -CLICKING 60405 -CLIE 64657 -CLIENT 55107 -CLIENTS 58688 -CLIFF 62469 -CLIFFORD 59923 -CLIFTON 61256 -CLIMATE 56652 -CLIMBING 62917 -CLINIC 56293 -CLINICAL 53010 -CLINICS 62762 -CLINT 63077 -CLINTON 57696 -CLIP 54302 -CLIPART 64905 -CLIPPER 62196 -CLIPS 55657 -CLIVE 65170 -CLK 56324 -CLKOC 64201 -CLL 58162 -CLLEGE 63419 -CLM 57741 -CLO 63419 -CLOCK 59292 -CLOCKS 64657 -CLOMID 64423 -CLONE 60856 -CLONES 65170 -CLOS 63419 -CLOSE 49886 -CLOSED 50734 -CLOSEOUT 63601 -CLOSEOUTS 57238 -CLOSER 63601 -CLOSET 63792 -CLOSING 58162 -CLOSURE 60952 -CLOTH 64657 -CLOTHES 59292 -CLOTHING 52661 -CLOUD 57609 -CLOUDS 60580 -CLOUDY 58365 -CLOWN 64423 -CLP 59357 -CLR 53746 -CLS 57609 -CLSI 63991 -CLSID 62762 -CLT 62469 -CLTV 60078 -CLUB 48468 -CLUBS 55963 -CLUE 63245 -CLUSTAL 65170 -CLUSTER 60000 -CLUSTERS 65170 -CLUTCH 59560 -CLUTTERBUCK 64423 -CLV 65452 -CLYDE 62613 -CLZ 65452 -CM 46742 -CM's 64905 -CMA 54499 -CMAJ 57199 -CMAQ 64201 -CMB 57831 -CMBR 63601 -CMBS 64905 -CMC 53865 -CMCC 56791 -CMCS 64905 -CMD 57440 -CMDB 61940 -CMDs 61472 -CME 46947 -CMEA 65452 -CMEC 61818 -CMF 58860 -CMFDA 64657 -CMG 60952 -CMH 60321 -CMHC 64905 -CMI 53746 -CMJ 56420 -CMK 64657 -CML 58113 -CMM 55474 -CMMI 61051 -CMMS 64201 -CMN 62762 -CMO 59630 -CMOS 49783 -CMP 56485 -CMPS 57970 -CMR 57278 -CMS 47687 -CMSA 63991 -CMSMS 64423 -CMT 55084 -CMTC 64905 -CMU 58577 -CMV 54664 -CMW 65170 -CMX 60000 -CMY 62331 -CMYK 58688 -CMa 64657 -CN 49274 -CNA 55130 -CNAME 63245 -CNB 63991 -CNBC 51550 -CNBC's 61818 -CNC 50060 -CND 63991 -CNE 63077 -CNEL 63991 -CNES 64201 -CNET 35561 -CNET's 55474 -CNETTV 63077 -CNEWS 62917 -CNG 58632 -CNH 64657 -CNHI 58313 -CNL 61699 -CNM 63792 -CNN 46097 -CNN's 56324 -CNNSI 65170 -CNO 63792 -CNOC 60952 -CNP 61256 -CNR 59923 -CNRS 57318 -CNS 51731 -CNT 59491 -CNV 58688 -CNW 56452 -CNX 58688 -CNY 56110 -CNet 64657 -CO 39431 -COA 57440 -COACH 56452 -COACHES 59491 -COACHING 61472 -COAL 59227 -COALFIELDS 65170 -COALITION 63077 -COAST 54439 -COASTAL 58313 -COASTERS 64905 -COASTLINE 64423 -COAT 59491 -COATED 61152 -COATING 59164 -COATINGS 64423 -COATS 61472 -COAX 62917 -COB 63991 -COBALT 63991 -COBB 61699 -COBBLER 65170 -COBBLESTONE 65452 -COBIT 65170 -COBOL 61818 -COBRA 56551 -COBRAE 59923 -COBY 64657 -COC 56388 -COCA 59357 -COCH 63792 -COCK 62196 -COCKER 64657 -COCKS 64905 -COCKTAIL 65170 -COCKTAILS 62762 -COCO 65452 -COCOA 64423 -COCONUT 62196 -COCOS 62331 -COCs 65452 -COD 47577 -CODA 64423 -CODE 48557 -CODEC 65452 -CODEN 51122 -CODES 56972 -CODEX 64905 -CODING 60952 -CODY 63419 -COE 59491 -COED 61818 -COEFFICIENT 63601 -COEX 64201 -COF 65170 -COFCO 65452 -COFFEE 55226 -COG 58577 -COGIC 54924 -COGNITIVE 63601 -COGS 64423 -COH 64905 -COHEN 59039 -COI 59039 -COIL 60321 -COIMBATORE 65452 -COIN 57566 -COINS 61472 -COIs 62196 -COKE 62613 -COL 57399 -COLA 58979 -COLBY 61362 -COLD 54601 -COLDWELL 63419 -COLE 61256 -COLEMAN 59848 -COLH 64905 -COLI 62196 -COLIBRA 65452 -COLIN 60238 -COLL 63991 -COLLABORATION 63792 -COLLABORATIVE 65452 -COLLAGEN 63991 -COLLAPSE 64905 -COLLAR 64201 -COLLEAGUE 57831 -COLLEAGUES 56140 -COLLECT 58417 -COLLECTABLE 62613 -COLLECTABLES 63245 -COLLECTED 64657 -COLLECTIBLE 64657 -COLLECTIBLES 59357 -COLLECTING 63077 -COLLECTION 48581 -COLLECTIONS 49223 -COLLECTIVE 62196 -COLLECTOR 60157 -COLLECTOR'S 61051 -COLLECTORS 61472 -COLLEEN 64657 -COLLEGE 49796 -COLLEGEPROFILE 64657 -COLLEGES 60856 -COLLEGIATE 64657 -COLLIER 64657 -COLLINS 56972 -COLLISION 61051 -COLLOID 64657 -COLOGNE 63991 -COLOMBIA 58523 -COLON 62613 -COLONEL 63792 -COLONIAL 62917 -COLONY 61699 -COLOR 51521 -COLORADO 54439 -COLORED 58577 -COLORING 64905 -COLORS 43942 -COLOUR 55877 -COLOURS 62762 -COLT 61584 -COLTS 65452 -COLUMBIA 54601 -COLUMBUS 56827 -COLUMN 57440 -COLUMNISTS 57785 -COLUMNS 55906 -COM 47656 -COMAND 64657 -COMAR 65170 -COMBAT 60000 -COMBI 64657 -COMBINATION 59774 -COMBINE 60580 -COMBINED 55684 -COMBO 57970 -COMBUSTION 60078 -COMCAST 65452 -COME 51783 -COMEDK 65170 -COMEDY 58113 -COMES 56080 -COMET 62762 -COMEX 63601 -COMException 65452 -COMFORT 57741 -COMIC 58632 -COMICS 59227 -COMING 52778 -COMITE 64657 -COMLEX 62762 -COMM 57199 -COMMAND 57524 -COMMANDER 63792 -COMMANDS 64905 -COMME 65170 -COMMENT 46560 -COMMENTARY 56862 -COMMENTED 59357 -COMMENTS 47585 -COMMERCE 54170 -COMMERCIAL 50807 -COMMISSION 49847 -COMMISSIONER 56618 -COMMISSIONERS 57278 -COMMISSIONS 62066 -COMMIT 64905 -COMMITMENT 61472 -COMMITMENTS 65170 -COMMITTEE 43784 -COMMITTEES 57199 -COMMODITIES 61472 -COMMODITY 61940 -COMMODORE 63991 -COMMON 54419 -COMMONS 64905 -COMMONWEALTH 57876 -COMMUNICATE 58577 -COMMUNICATING 65452 -COMMUNICATION 53211 -COMMUNICATIONS 48491 -COMMUNICATOR 60952 -COMMUNICATORS 64905 -COMMUNITIES 56687 -COMMUNITY 45576 -COMMWORLD 64657 -COMO 58745 -COMOROS 62066 -COMP 57278 -COMPACT 58417 -COMPANIES 55348 -COMPANION 63991 -COMPANY 46027 -COMPAQ 57399 -COMPARATIVE 58470 -COMPARE 56388 -COMPARED 63991 -COMPARISON 56262 -COMPARISONS 65170 -COMPARTIR 64905 -COMPASS 60321 -COMPATIBILITY 63792 -COMPATIBLE 60856 -COMPENSATION 56293 -COMPETE 64423 -COMPETITION 50848 -COMPETITIONS 60762 -COMPETITIVE 60321 -COMPETITIVENESS 63601 -COMPILATION 61940 -COMPILED 63245 -COMPLAINT 60321 -COMPLAINTS 60952 -COMPLETE 51570 -COMPLETED 58313 -COMPLETELY 59039 -COMPLETING 62331 -COMPLETION 60762 -COMPLEX 57653 -COMPLEXES 62917 -COMPLEXITY 62196 -COMPLIANCE 56110 -COMPLIANT 60952 -COMPLICATIONS 63077 -COMPLY 64423 -COMPONENT 57653 -COMPONENTS 56262 -COMPOSER 63601 -COMPOSERS 65452 -COMPOSITE 59491 -COMPOSITES 64201 -COMPOSITION 54857 -COMPOSITIONS 58313 -COMPOUND 59292 -COMPOUNDS 58313 -COMPREHENSIVE 60405 -COMPRESSED 59227 -COMPRESSION 61152 -COMPRESSOR 59630 -COMPRISING 60321 -COMPROMISO 64905 -COMPTON 64201 -COMPTROLLER 63792 -COMPULSORY 65452 -COMPUTATION 62196 -COMPUTATIONAL 64657 -COMPUTER 49566 -COMPUTERS 56452 -COMPUTING 58313 -COMSOL 64905 -COMSYS 65452 -COMTEX 61699 -COMTI 62762 -CON 52459 -CONC 54207 -CONCACAF 58688 -CONCENTRATION 60238 -CONCENTRATIONS 62469 -CONCEPT 58577 -CONCEPTS 58860 -CONCEPTUAL 63991 -CONCERN 62469 -CONCERNING 60952 -CONCERNS 61472 -CONCERT 55107 -CONCERTO 65452 -CONCERTS 59491 -CONCESSIONS 62066 -CONCESSIONSCONTRIBUTION 63991 -CONCHORDS 63077 -CONCLUDING 65170 -CONCLUSION 53454 -CONCLUSIONS 53241 -CONCORD 57876 -CONCORDE 60405 -CONCRETE 54399 -CONCUR 62331 -CONCURRENCE 63991 -CONCURRENT 65170 -COND 63601 -CONDE 64905 -CONDENSED 63792 -CONDENSER 65170 -CONDITION 54133 -CONDITIONAL 63601 -CONDITIONER 61584 -CONDITIONING 59560 -CONDITIONS 48970 -CONDO 60580 -CONDOMINIUM 63077 -CONDOS 64423 -CONDUCT 59292 -CONDUCTED 63601 -CONE 61256 -CONF 65452 -CONFERENCE 47133 -CONFERENCES 58688 -CONFESSIONS 65452 -CONFETTI 65452 -CONFIDENCE 59848 -CONFIDENTIAL 57696 -CONFIDENTIALITY 61940 -CONFIGURABLE 65170 -CONFIGURATION 59424 -CONFIGURATIONS 64657 -CONFIRM 61472 -CONFIRMATION 60078 -CONFIRMED 61362 -CONFIRMS 64905 -CONFLICT 60321 -CONFLICTS 65452 -CONFORMITY 65170 -CONFUSED 64657 -CONGENITAL 63792 -CONGO 60580 -CONGRATS 63601 -CONGRATULATIONS 60762 -CONGRESS 56518 -CONGRESSIONAL 56862 -CONJUGATES 65452 -CONJUNTO 65170 -CONMEBOL 64657 -CONN 55766 -CONNECT 58162 -CONNECTED 58745 -CONNECTICUT 57278 -CONNECTING 62762 -CONNECTION 54749 -CONNECTIONS 59491 -CONNECTIVITY 64905 -CONNECTOR 58212 -CONNECTORS 59702 -CONNIE 62613 -CONNOR 63245 -CONRAD 62613 -CONS 63601 -CONSCIOUS 65452 -CONSECUTIVE 64657 -CONSENSUS 61051 -CONSENT 55014 -CONSEQUENCES 62762 -CONSEQUENTIAL 56293 -CONSERVANCY 63419 -CONSERVATION 57278 -CONSERVATIVE 65170 -CONSERVATORY 64201 -CONSIDER 60238 -CONSIDERATION 60405 -CONSIDERATIONS 59848 -CONSIDERED 59227 -CONSIDERING 65170 -CONSOLE 58017 -CONSOLES 64423 -CONSOLIDATED 59923 -CONSOLIDATION 60856 -CONSPIRACY 62469 -CONST 61940 -CONSTANT 61584 -CONSTELLATION 65170 -CONSTITUTION 62196 -CONSTITUTIONAL 61584 -CONSTR 54479 -CONSTRAIN 65452 -CONSTRAINT 64423 -CONSTRAINTS 61699 -CONSTRUCTION 49651 -CONSULT 61940 -CONSULTANCY 59702 -CONSULTANT 57876 -CONSULTANTS 57199 -CONSULTATION 56972 -CONSULTATIONS 65170 -CONSULTATIVE 64201 -CONSULTING 54439 -CONSUMABLES 63077 -CONSUMER 54078 -CONSUMERS 62196 -CONSUMPTION 61584 -CONT 63419 -CONTACT 41607 -CONTACTS 55474 -CONTAIN 64657 -CONTAINED 58802 -CONTAINER 58162 -CONTAINERS 62613 -CONTAINING 58162 -CONTAINMENT 64905 -CONTAINS 60238 -CONTEMPORARY 59491 -CONTENT 47211 -CONTENTS 45466 -CONTENTdm 60762 -CONTEST 55107 -CONTESTS 56518 -CONTEXT 59101 -CONTINENTAL 59774 -CONTINGENT 65452 -CONTINUATION 63077 -CONTINUE 56827 -CONTINUED 57923 -CONTINUES 60952 -CONTINUING 60238 -CONTINUOUS 57609 -CONTOUR 65452 -CONTRA 62613 -CONTRACEPTIVE 65452 -CONTRACT 52315 -CONTRACTING 60580 -CONTRACTOR 58262 -CONTRACTORS 57046 -CONTRACTS 60157 -CONTRAST 64657 -CONTRIBUTE 60405 -CONTRIBUTED 62613 -CONTRIBUTING 64423 -CONTRIBUTION 57970 -CONTRIBUTIONS 56585 -CONTRIBUTOR 64657 -CONTRIBUTORS 58577 -CONTROL 48126 -CONTROLLED 59560 -CONTROLLER 58365 -CONTROLLERS 64657 -CONTROLLING 60405 -CONTROLS 57482 -CONUS 61818 -CONVECTION 65170 -CONVENIENCE 60157 -CONVENIENT 63077 -CONVENTION 57084 -CONVENTIONAL 64423 -CONVERGENCE 62917 -CONVERSATION 61256 -CONVERSATIONS 58417 -CONVERSE 62196 -CONVERSION 57160 -CONVERT 62469 -CONVERTER 59848 -CONVERTIBLE 62331 -CONVERTING 64657 -CONVEYING 64657 -CONVEYOR 65170 -CONVICTED 63601 -CONWAY 65452 -COO 56080 -COOH 60238 -COOK 55631 -COOK'S 64657 -COOKBOOK 62613 -COOKBOOKS 60762 -COOKED 64657 -COOKIE 62613 -COOKIES 58470 -COOKING 57160 -COOL 53038 -COOLER 61051 -COOLING 57653 -COOLPIX 63245 -COOMERA 64657 -COONTAILS 62762 -COOP 64905 -COOPER 58470 -COOPERATION 60762 -COOPERATIVE 60952 -COOPÉRATION 64201 -COORDINATE 65452 -COORDINATING 65452 -COORDINATION 64423 -COORDINATOR 59357 -COORGANISERS 64905 -COOS 64201 -COP 56551 -COPA 65452 -COPD 56518 -COPE 64905 -COPENHAGEN 63792 -COPIES 59164 -COPPA 63245 -COPPER 57009 -COPS 60492 -COPY 53847 -COPYING 61152 -COPYRIGHT 44601 -COPYRIGHTED 59491 -COPYRIGHTS 64657 -COR 60078 -CORAL 61152 -CORBA 58470 -CORD 60405 -CORDIC 65170 -CORDIS 63419 -CORDLESS 63245 -CORDUROY 64423 -CORE 52739 -COREY 64423 -CORGI 61940 -CORK 58313 -CORN 56452 -CORNEAL 64657 -CORNELIUS 63245 -CORNELL 64657 -CORNER 53934 -CORNERS 64423 -CORNET 64423 -CORNWALL 64423 -COROLLA 60670 -COROLLARY 64905 -CORONA 62613 -CORONADO 58632 -CORP 52387 -CORPORATE 51482 -CORPORATION 49458 -CORPORATIONS 63077 -CORPS 61818 -CORPUS 63601 -CORR 61818 -CORRECT 59227 -CORRECTED 61051 -CORRECTING 63245 -CORRECTION 56356 -CORRECTIONAL 65170 -CORRECTIONS 60238 -CORRELATION 62469 -CORRESPONDENCE 58979 -CORRESPONDENT 63245 -CORRESPONDING 65452 -CORRIDOR 64201 -CORROSION 64657 -CORRUGATED 63991 -CORRUPTION 63792 -CORSA 64423 -CORSAIR 62469 -CORSET 62331 -CORT 64657 -CORTE 62613 -CORTLAND 65452 -CORVETTE 59164 -CORY 61584 -COS 56827 -COSHH 65452 -COSI 61699 -COSIS 65452 -COSM 65170 -COSMETIC 61699 -COSMETICS 62469 -COSMIC 62196 -COSMOS 61699 -COST 51069 -COSTA 54380 -COSTCO 63792 -COSTS 54622 -COSTUME 54170 -COSTUMES 57278 -COT 59292 -COTA 59101 -COTATI 63991 -COTE 60405 -COTM 59848 -COTS 58212 -COTTAGE 60321 -COTTAGES 63792 -COTTON 55398 -COU 63792 -COUCH 62196 -COUGAR 63601 -COULD 54499 -COUNCIL 46909 -COUNCILLOR 63991 -COUNCILLORS 64657 -COUNCILMAN 62917 -COUNCILS 63245 -COUNSEL 59039 -COUNSELING 61940 -COUNSELLING 62762 -COUNSELOR 64201 -COUNT 58113 -COUNTDOWN 63601 -COUNTER 54360 -COUNTERS 65170 -COUNTIES 59630 -COUNTING 63419 -COUNTRIES 53485 -COUNTRY 49713 -COUNTS 64201 -COUNTY 45699 -COUPE 59424 -COUPLE 61256 -COUPLED 63991 -COUPLER 64423 -COUPLES 62917 -COUPLING 62613 -COUPLINGS 61584 -COUPON 60157 -COUPONS 61362 -COURIER 62331 -COURSE 52484 -COURSES 56262 -COURT 48682 -COURTESY 60856 -COURTHOUSE 64201 -COURTNEY 64423 -COURTS 59848 -COURTYARD 64423 -COUTURE 60238 -COVE 60580 -COVENANT 65452 -COVENANTS 63419 -COVENTRY 60238 -COVER 51104 -COVERAGE 55877 -COVERED 58802 -COVERING 63419 -COVERS 51368 -COVINGTON 65452 -COW 60405 -COWBOY 58860 -COWBOYS 65452 -COWELL 63792 -COX 58162 -CP 47656 -CP's 64905 -CPA 50454 -CPA's 63601 -CPAN 60952 -CPAP 54706 -CPAs 59630 -CPB 58162 -CPC 54207 -CPCI 63991 -CPD 53865 -CPE 55657 -CPEB 62917 -CPF 59164 -CPG 58365 -CPH 62613 -CPI 54245 -CPK 62917 -CPL 54813 -CPLEX 64905 -CPLR 64201 -CPM 53779 -CPN 62469 -CPO 57278 -CPOE 64201 -CPP 59227 -CPPS 63077 -CPQ 64201 -CPR 51772 -CPS 52886 -CPSC 52315 -CPSE 63077 -CPSP 62613 -CPT 54857 -CPU 45155 -CPU's 62066 -CPUs 52327 -CPV 63419 -CPW 56935 -CPX 60762 -CPZ 63601 -CPi 63419 -CPs 57876 -CPt 65452 -CPx 65452 -CQ 56080 -CQB 64423 -CQC 63077 -CQL 63419 -CQO 61818 -CQTest 64905 -CR 47194 -CRA 56021 -CRAB 59923 -CRACK 57160 -CRACKED 59424 -CRACKING 63245 -CRACKS 61699 -CRADLE 65452 -CRAFT 55250 -CRAFTS 59164 -CRAIG 56862 -CRAIGSBIRTHDAY 58162 -CRANBERRY 63419 -CRANE 60670 -CRANK 63245 -CRAP 61940 -CRAPAUD 64423 -CRASH 58065 -CRATE 64905 -CRAVE 62066 -CRAWFORD 60078 -CRAY 65170 -CRAZY 56862 -CRB 57653 -CRBC 61940 -CRBs 62469 -CRC 52268 -CRD 57831 -CRE 55684 -CREAM 55130 -CREATE 50957 -CREATED 60405 -CREATING 61362 -CREATION 59101 -CREATIONS 63601 -CREATIVE 53882 -CREATIVITY 61699 -CREATOR 62762 -CREB 63601 -CREDIT 51434 -CREDITS 55154 -CREDO 63991 -CREE 64905 -CREEDMOOR 65170 -CREEK 51867 -CREEPSVILLE 64657 -CREEPY 65452 -CREME 63792 -CREP 62196 -CRESCENT 57876 -CREST 60952 -CREW 53662 -CRF 58745 -CRG 60321 -CRH 57923 -CRI 59923 -CRIA 62331 -CRICKET 58162 -CRICOS 56899 -CRIME 54283 -CRIMES 61472 -CRIMINAL 55552 -CRIN 64657 -CRIS 62917 -CRISIS 58979 -CRISP 64201 -CRISTIANO 64657 -CRISTINA 63991 -CRITERIA 56293 -CRITERION 58632 -CRITICAL 58162 -CRITICISM 63077 -CRITIQUE 64905 -CRITTERS 63419 -CRJ 61818 -CRL 58417 -CRLF 64201 -CRM 42676 -CRMs 62331 -CRN 57831 -CRNA 63077 -CRNAs 64905 -CRO 62331 -CROATIA 58919 -CROCHE 59164 -CROCHET 63601 -CROCODILE 64423 -CROIX 61584 -CROOKS 64201 -CROP 59848 -CROPS 64423 -CROSBY 63419 -CROSS 53066 -CROSSING 61256 -CROSSROADS 62762 -CROSSWALK 65452 -CROW 65452 -CROWD 61818 -CROWDER 64423 -CROWN 57160 -CROYDON 64423 -CRP 55474 -CRR 61818 -CRS 52648 -CRSP 64905 -CRT 51248 -CRTC 61584 -CRU 58523 -CRUCIAL 63991 -CRUDE 63792 -CRUISE 57440 -CRUISER 60000 -CRUISES 61472 -CRUNK 64657 -CRUSH 63245 -CRUST 65170 -CRUX 63601 -CRUZ 58979 -CRV 61051 -CRX 60321 -CRY 60952 -CRYSTAL 54749 -CRYSTALS 60157 -CS 45287 -CSA 51600 -CSA's 65170 -CSAC 63419 -CSAs 62331 -CSB 56899 -CSC 53729 -CSC's 62331 -CSCI 63077 -CSCIC 63991 -CSCO 62762 -CSCS 61152 -CSCW 63245 -CSD 54540 -CSDM 64201 -CSE 55578 -CSEA 63077 -CSF 54643 -CSFB 65170 -CSG 61472 -CSH 60762 -CSHB 64905 -CSI 49435 -CSIC 63601 -CSIR 62917 -CSIRO 53847 -CSIS 64905 -CSK 65170 -CSKA 61472 -CSL 59227 -CSM 57566 -CSN 55154 -CSO 54664 -CSOD 64905 -CSOT 65452 -CSOs 65452 -CSP 56687 -CSPAN 58632 -CSR 52051 -CSRs 63077 -CSRwire 63077 -CSS 43991 -CSSA 63419 -CST 49285 -CSTV 55877 -CSU 55323 -CSUB 63419 -CSUSB 62331 -CSUs 64905 -CSV 53934 -CSX 58212 -CSharp 63601 -CSpot 61256 -CString 64423 -CT 41178 -CTA 54360 -CTB 62613 -CTBT 63991 -CTC 55684 -CTCF 63792 -CTCL 60405 -CTD 58745 -CTE 60321 -CTEM 64905 -CTF 58262 -CTG 58745 -CTH 63991 -CTI 58417 -CTIA 52584 -CTK 61818 -CTL 54946 -CTM 61940 -CTO 56050 -CTP 58017 -CTPA 64201 -CTPF 63991 -CTR 56140 -CTRA 62469 -CTRL 58745 -CTS 53917 -CTSNet 60000 -CTT 60670 -CTU 58802 -CTV 54685 -CTVglobemedia 57278 -CTW 63991 -CTX 58860 -CTY 62762 -CTs 65452 -CU 51909 -CUA 63601 -CUB 63601 -CUBA 57318 -CUBE 60238 -CUBIC 65170 -CUC 61472 -CUDA 64423 -CUE 61051 -CUES 60492 -CUFF 63419 -CUIAB 62469 -CUIDADO 65452 -CUISINE 63792 -CULINARY 64201 -CULT 61940 -CULTIVATION 63792 -CULTURAL 57399 -CULTURE 52968 -CULTURES 62613 -CUM 58162 -CUMBERLAND 59227 -CUMMINS 63792 -CUMSHOT 65452 -CUMULATIVE 64201 -CUNNINGHAM 64201 -CUNY 60000 -CUP 53988 -CUPBOARD 63792 -CUPE 63601 -CUPS 60405 -CURB 62613 -CURE 56899 -CURING 63077 -CURIOUS 59292 -CURL 62762 -CURRENCY 57923 -CURRENT 46520 -CURRENTLY 58919 -CURRICULUM 58065 -CURRITUCK 64905 -CURRY 58802 -CURSOR 63792 -CURTAIN 63792 -CURTAINS 63245 -CURTIS 59039 -CURVE 63601 -CURVES 62469 -CUSA 59923 -CUSD 61818 -CUSIP 62917 -CUSTODY 63419 -CUSTOM 52484 -CUSTOMER 48354 -CUSTOMERS 56485 -CUSTOMIZE 60405 -CUSTOMS 61256 -CUT 54151 -CUTE 58113 -CUTIE 65452 -CUTLER 65170 -CUTOUT 62469 -CUTS 62066 -CUTTER 63991 -CUTTING 57399 -CUZ 59702 -CV 45692 -CVA 60000 -CVAD 63601 -CVB 58212 -CVC 61152 -CVD 55934 -CVE 57046 -CVF 62762 -CVG 61152 -CVI 61256 -CVM 65452 -CVN 65452 -CVO 61940 -CVP 62917 -CVR 62762 -CVS 48278 -CVSS 62196 -CVSZilla 63077 -CVT 59424 -CVV 63601 -CVs 56721 -CW 47456 -CW's 63792 -CWA 62613 -CWB 61152 -CWC 59164 -CWD 63991 -CWEB 65452 -CWEEK 63245 -CWI 64905 -CWIS 62762 -CWM 65452 -CWO 57524 -CWP 63077 -CWR 61051 -CWS 59292 -CWSU 60238 -CWT 63419 -CX 56618 -CXC 63601 -CXL 63245 -CXO 59560 -CXX 63419 -CY 51793 -CYA 63077 -CYBER 61818 -CYC 63077 -CYCLE 56452 -CYCLES 60762 -CYCLING 59164 -CYCLOP 65452 -CYFERnet 65452 -CYGWIN 54857 -CYL 63245 -CYLINDER 58802 -CYLINDERS 63601 -CYNTHIA 60157 -CYP 57876 -CYPRESS 62469 -CYPRUS 58523 -CYRUS 60580 -CYS 65452 -CYT 63991 -CZ 49657 -CZCS 63077 -CZE 63792 -CZECH 55963 -CZF 64423 -CZK 57831 -CZs 65452 -Ca 45979 -CaCO 62196 -CaCl 55684 -CaF 62762 -CaMKII 64905 -CaO 62469 -CaS 64201 -CaaS 63991 -Caan 65452 -Cab 49234 -Cabal 55398 -Caballero 58365 -Caballo 60078 -Cabana 58688 -Cabanas 63601 -Cabaret 53917 -Cabarrus 59491 -Cabbage 55202 -Cabbagetown 65452 -Cabbie 65452 -Cabby 64423 -Cabela's 54879 -Cabelas 61940 -Cabell 62613 -Cabernet 52686 -Cabeza 64905 -Cabin 49695 -Cabinet 44796 -Cabinetry 58470 -Cabinets 48261 -Cabins 52472 -Cable 41408 -Cable's 64905 -Cables 44414 -Cablevision 57318 -Cabling 56899 -Cabo 53662 -Caboodle 63601 -Caboolture 59292 -Caboose 61051 -Caborca 63419 -Cabos 58979 -Cabot 57160 -Cabra 63419 -Cabral 62066 -Cabrales 65452 -Cabrel 63419 -Cabrera 56231 -Cabrillo 62917 -Cabrini 65170 -Cabrio 57122 -Cabriolet 53392 -Cabs 57741 -Cacao 64423 -Caceres 61152 -Cachan 64423 -Cacharel 61256 -Cache 49770 -CacheLimit 62196 -CacheSize 63601 -Cached 50782 -Caches 64423 -Caching 57785 -Caco 63601 -Cacti 64423 -Cactus 53865 -Cad 59424 -Cada 63077 -Cadac 65452 -Cadalyst 62066 -Cadastral 63077 -Cadbury 54946 -Cadbury's 62762 -Cadburys 65170 -Caddie 62917 -Caddies 62331 -Caddo 59357 -Caddy 55684 -Cade 58745 -Caden 65452 -Cadena 62066 -Cadence 56420 -Cader 65452 -Cadet 48638 -Cadets 58313 -Cadillac 47050 -Cadillacs 64423 -Cadiz 61051 -Cadmium 57653 -Cadogan 62917 -Cadre 63077 -Caduceus 64657 -Cadwell 65452 -Cady 61256 -Cae 62762 -Caedmon's 64905 -Cael 65452 -Caelestrasz 60952 -Caen 61256 -Caenorhabditis 58212 -Caerdydd 64423 -Caerleon 64905 -Caernarfon 60492 -Caerphilly 57876 -Caesar 53679 -Caesar's 58860 -Caesarean 61584 -Caesars 58065 -Caf 63419 -Cafe 42546 -Cafe's 62613 -CafePress 54749 -Cafes 52411 -Cafeteria 56050 -Caffe 57524 -Caffeine 55711 -Cafferty 64423 -Caffieri 65170 -Caffè 64423 -Caflisch 65170 -Cafè 60952 -Café 49541 -Cafés 59101 -Cagayan 59848 -Cage 50094 -Caged 60405 -Cages 55084 -Cagiva 62469 -Cagle 63991 -Cagliari 60321 -Cahier 64905 -Cahiers 60492 -Cahill 56518 -Cahir 65452 -Cahn 62613 -Cahokia 65452 -Cahoon 63991 -Cai 56827 -Caicos 47431 -Caifanes 61818 -Caillat 58577 -Caillou 63601 -Caiman 63792 -Cain 54419 -Caine 58212 -Cainer 64423 -Cains 64657 -Cairn 56862 -Cairne 60078 -Cairngorm 64905 -Cairngorms 64905 -Cairns 51511 -Cairo 51415 -Caisse 63077 -Caisson 63991 -Caithness 59164 -Caitlin 52712 -Caitlyn 63419 -Caius 61472 -Caixa 61051 -Cajal 64657 -Cajon 57923 -Cajun 53533 -Cajuns 64657 -Cakchiquel 64905 -Cake 45268 -CakePHP 61818 -Cakes 49229 -Cakewalk 58313 -Cal 48005 -Cal's 63077 -CalComp 65452 -Cala 57160 -Calabasas 60580 -Calabash 64905 -Calabrese 61362 -Calabria 56721 -Calacanis 64657 -Calais 57696 -Calamari 62469 -Calamity 59848 -Calamus 64201 -Calan 59101 -Calandra 63601 -Calaveras 59424 -Calaway 64905 -Calc 57122 -Calcagnie 57318 -Calcif 62613 -Calcification 62762 -Calcio 60405 -Calcite 63419 -Calcitonin 63245 -Calcium 48614 -Calcul 64201 -Calculate 46343 -Calculated 53331 -Calculates 61152 -Calculating 55992 -Calculation 51953 -Calculations 54114 -Calculator 44433 -Calculators 47266 -Calculus 55934 -Calcutta 55178 -Caldari 63419 -Calder 56452 -Caldera 61256 -Calderdale 57831 -Calderon 57923 -Calderon's 65452 -Calderwood 62917 -Calderón 63792 -Caldew 63991 -Caldwell 51312 -Cale 59923 -Caleb 54302 -Caleb's 63077 -CalebSchmerge 63419 -Caledon 60762 -Caledonia 47318 -Caledonian 57831 -Calendar 35923 -CalendarDateTime 65452 -CalendarOddsPhotos 61818 -CalendarServer 64657 -Calendario 63077 -Calendars 43749 -Calender 57482 -Calendrier 63792 -Calendula 60670 -Calera 62066 -Calerga 65170 -Calero 65452 -Caleta 62613 -Calexico 60405 -Caley 63419 -Calf 56170 -Calflora 63792 -Calfskin 63245 -Calgarians 65452 -Calgary 45477 -Calgary's 62469 -Calgon 64423 -Calhoun 53662 -Cali 54245 -Caliban 62917 -Caliber 52327 -Calibrate 62613 -Calibrated 61472 -Calibrating 62762 -Calibration 51690 -Calibrator 63991 -Calibrators 62762 -Calibre 57566 -Calibur 56050 -Calico 56687 -Calicut 62613 -Calida 64905 -Calidad 62469 -Caliendo 60580 -Caliente 58979 -Calif 58745 -Califone 63245 -California 36177 -California's 51069 -Californian 54560 -Californians 57741 -Californication 55552 -Caligiuri 64905 -Caligula 62331 -Calinx 64905 -Caliper 58417 -Calipers 58919 -Caliphate 63419 -Calisphere 60405 -Calista 60405 -Calistoga 59357 -Calistrat 65452 -Calkins 62469 -Call 36428 -CallBack 64657 -CallManager 62613 -CallVantage 60405 -Calla 60762 -CallableStatement 65170 -Callaghan 62613 -Callahan 56551 -Callan 59630 -Callander 61584 -Callandor 65452 -Callas 63991 -Callaway 52546 -Callback 60762 -Calle 55226 -Called 49452 -Callen 65170 -Caller 50122 -Callers 61699 -Calliden 64905 -Callie 58470 -Calligaris 65170 -Calligraphy 56080 -Calling 47823 -Calliope 63991 -Calliopes 65170 -Callisto 59227 -CalloftheDog 62469 -Callous 65170 -Callout 64201 -Calloway 59424 -Calls 45601 -Callsign 64657 -Callum 57653 -Callus 65170 -Cally 65452 -Calm 52886 -Calming 59702 -Calne 63792 -Calor 65452 -Caloric 63991 -Calorie 52571 -CalorieKing 64423 -Calories 51690 -Calorimeter 64201 -Calorimetry 64905 -Caloundra 62196 -Calpain 64905 -Calpe 62762 -Calphalon 60492 -Calsada 65452 -Caltech 59491 -Calter 64201 -Caltex 60856 -Calton 63991 -Caltrans 60492 -Calum 60321 -Calumet 53226 -Calvados 64423 -Calvary 54792 -Calvatia 63601 -Calvert 51425 -Calves 60492 -Calvin 48148 -Calvinism 63077 -Calvinist 65452 -Calvinists 64201 -Calvo 62762 -Calypso 56551 -Calyx 59357 -Calzada 64657 -Calzaghe 58860 -Calzone 65170 -Cam 47406 -Cam'ron 63419 -Cam's 64905 -Camacho 61051 -Camara 61584 -Camargo 61472 -Camarillo 58365 -Camarines 64201 -Camaro 52268 -Camaros 65170 -Camas 62066 -Cambell 64423 -Camber 61256 -Camberley 58212 -Camberwell 61472 -Cambio 61051 -Cambodia 45116 -Cambodia's 61818 -Cambodian 53917 -Cambodians 64423 -Camborne 63792 -Cambrai 65452 -Cambria 55448 -Cambrian 57358 -Cambridge 43408 -Cambridgeshire 51620 -Cambs 62196 -Cambuslang 63601 -Camby 62066 -Camcorder 48996 -Camcorders 45732 -Camden 48638 -Came 51731 -Camel 53256 -CamelBak 62066 -Camelback 59491 -Camelbak 60405 -Cameleon 59702 -Camelia 64905 -Camellia 58162 -Camelot 54664 -Camels 61699 -Cameltoe 63991 -Camembert 63419 -Camenzuli 63991 -Cameo 56862 -Camera 39699 -Cameraman 63792 -Cameras 40537 -Cameron 46742 -Cameron's 58313 -Cameroon 45685 -Cameroonian 64423 -Cameroons 64423 -Cameroun 62613 -Camfrog 61256 -Cami 59848 -Camila 59357 -Camilla 54879 -Camille 53899 -Camilleri 64201 -Camilli 64657 -Camillo 64201 -Camillus 64201 -Camilo 62762 -Caminita 60670 -Camino 53331 -Camis 62917 -Camisole 62917 -Camisoles 62331 -Camlab 65452 -Cammenga 63601 -Camo 53613 -Camouflage 55250 -Camp 42485 -Campagnolo 59702 -Campaign 42820 -Campaign's 64905 -Campaigner 65452 -Campaigners 64657 -Campaigning 58979 -Campaigns 50040 -Campanas 61940 -Campane 64905 -Campanelli 62331 -Campanha 64905 -Campania 58688 -Campanile 61152 -Campari 65452 -Campbell 45232 -Campbell's 56293 -Campbells 60580 -Campbelltown 61472 -Campden 63991 -Campeche 63077 -Campeonato 62196 -Camper 52399 -Camperdown 61152 -Campero 64657 -Campers 54879 -Campervan 62917 -Campervans 62917 -Campfire 57084 -Campfires 65452 -Campfyre 65452 -Campground 52622 -Campgrounds 53679 -Campinas 63245 -Camping 44533 -Campion 60952 -Camplin 62066 -Campmor 62469 -Campo 55500 -Camponotus 65170 -Campos 56262 -Campout 65170 -Camps 48643 -Campsie 62917 -Campsite 57876 -Campsites 60078 -Campton 65452 -Campus 42459 -Campuses 57278 -Campy 64905 -Campylobacter 58017 -Camron 64423 -Camrose 60952 -Camry 55684 -Camryn 64657 -Cams 48682 -Camshaft 59424 -Camtasia 62469 -Camus 59630 -Can 36757 -Can't 42445 -CanJet 52913 -CanLII 58417 -CanWest 62762 -Cana 56262 -Canaan 55684 -Canaan's 65452 -Canaccord 63419 -Canada 34808 -Canada's 47772 -CanadaMexicoBrazil 65452 -Canadair 65170 -Canadas 64905 -Canadian 38843 -Canadiana 65452 -Canadians 50270 -Canadiens 53917 -Canady 64423 -Canal 48122 -Canale 65452 -Canali 64657 -Canalo 62066 -Canals 60492 -Canam 64905 -Canandaigua 60762 -Canara 61940 -Canard 65170 -Canaria 58860 -Canarias 63792 -Canaries 60952 -Canario 64423 -Canary 50774 -Canasta 64657 -Canavan 63245 -Canaveral 60321 -Canberra 48450 -Canberra's 65452 -Canby 62613 -Cancel 42207 -Canceled 61256 -Canceling 62469 -Cancellation 51202 -Cancellations 56452 -Cancelled 55202 -Cancelling 61699 -Cancels 61818 -Cancer 38087 -Cancer's 64657 -CancerChrom 39953 -CancerChromosomes 42790 -Cancers 58262 -Cancion 64423 -Canciones 54096 -Canción 65452 -Cancun 50932 -Cancún 59702 -Candace 54151 -Candela 63077 -Candelabra 60952 -Candi 58577 -Candice 53533 -Candid 54749 -Candida 51660 -Candidacy 62917 -Candidate 46218 -Candidate's 59630 -Candidates 42095 -Candide 63077 -Candidiasis 64905 -Candids 57609 -Candie 64201 -Candied 63792 -Candies 56356 -Candin 64201 -Candle 48629 -Candleholders 59491 -Candlelamp 63245 -Candlelight 59292 -Candlemass 62762 -Candler 59039 -Candles 48234 -Candlestick 59292 -Candlesticks 63792 -Candlewood 58577 -Cando 64201 -Candy 44911 -Candybar 65170 -Cane 51996 -Canela 65170 -Caner 65452 -Canes 60670 -Canesten 64657 -Caney 65170 -Canfas 61584 -Canfield 58919 -Cangas 64905 -Canibus 61699 -Canim 63601 -Canin 61699 -Canina 63077 -Canine 53196 -Canines 63245 -Canis 60952 -Canisius 59227 -Canister 55154 -Canisters 60157 -Canker 63077 -Canmore 60157 -Cann 61818 -Canna 58979 -Cannabis 54902 -Cannady 64905 -Canned 53830 -Cannel 63991 -Cannery 60000 -Cannes 52315 -Cannibal 56551 -Cannibalism 63601 -Cannibals 64423 -Canning 54749 -Cannister 63991 -Cannock 59101 -Cannon 49626 -Cannonball 58365 -Cannondale 57923 -Cannons 58802 -Cannot 48524 -Canny 64905 -Cano 59039 -CanoScan 65170 -Canoe 52472 -Canoeing 54902 -Canoes 59848 -Canoga 58065 -Canola 59774 -Canolfan 64905 -Canon 41758 -Canon's 56721 -Canonical 51238 -Canons 61818 -Canopies 57876 -Canopus 60762 -Canopy 54560 -Canpages 53485 -Cans 53392 -Canseco 59774 -Cant 53565 -Canta 63601 -Cantabile 60856 -Cantabria 62469 -Cantata 63419 -Canteen 58417 -Canteens 62469 -Canter 60078 -Cantera 64657 -Canterbury 49482 -Canterbury's 65452 -Canthium 65170 -Cantilever 61584 -Cantillon 59491 -Cantilo 64657 -Cantina 56356 -Canto 58745 -Canton 50865 -Cantonese 55323 -Cantonment 64657 -Cantor 56791 -Cantos 61362 -Cantrell 59424 -Cantu 63792 -Cantus 63245 -Cantwell 62917 -Canuck 59164 -Canucks 55526 -Canvas 47057 -Canvases 65452 -Canvass 64657 -Canvassing 61940 -Canvey 64657 -Canwest 53917 -Canyon 45979 -Canyoneering 63991 -Canyoning 65170 -Canyons 58979 -Canzoni 55178 -Cao 55299 -Cap 45484 -Cap'n 61256 -Capa 63792 -Capabilities 52085 -Capability 53211 -Capable 57084 -Capacitance 57566 -Capacities 61818 -Capacitive 63245 -Capacitor 57238 -Capacitors 57524 -Capacity 45789 -Capalaba 65452 -Capaldi 63991 -Caparo 63077 -Capcity 63601 -Capcom 53796 -Capcom's 62762 -Cape 40810 -Cape's 61472 -CapeCodToday 63077 -Capea 63419 -Capel 61051 -Capella 56972 -Capelli 64201 -Capello 60580 -Caper 61152 -Capers 60078 -Capes 61362 -Capetown 64201 -Capezio 58745 -Capgemini 62469 -Capilano 64657 -Capillaries 64905 -Capillary 56170 -Capistrano 59101 -Capita 55934 -Capital 39499 -Capital's 63601 -Capitalism 54078 -Capitalist 58212 -Capitalists 62469 -Capitalization 61152 -Capitalize 63792 -Capitalized 57318 -Capitalizing 63601 -Capitals 54439 -Capitan 59774 -Capitol 47034 -CapitolMusic 58262 -Capitola 62469 -Capitulo 55398 -Caplan 59101 -Caplets 60856 -Caplio 60492 -Capo 55552 -Capoeira 59560 -Capone 59923 -Capone's 65170 -Capos 65452 -Capote 63245 -Capoten 59491 -Cappadocia 60952 -Capped 59923 -Cappella 62066 -Cappelli 65170 -Cappello 64657 -Capper 63792 -Capping 61818 -Capps 61940 -Cappuccino 56756 -Capra 62917 -Caprese 64201 -Capresso 59848 -Capri 52609 -Capriccio 63601 -Caprice 57482 -Capricorn 51985 -Capris 59560 -Capron 65170 -Caps 48856 -Capsicum 62331 -Capstone 58860 -Capsular 63419 -Capsule 52940 -Capsules 52661 -Capt 57278 -CaptIO 63601 -Captain 42841 -Captain's 56110 -Captains 57876 -Captcha 59923 -Caption 51148 -Captioned 62762 -Captioning 60492 -Captions 58919 -Captiva 61051 -Captivate 59630 -Captivating 63077 -Captive 57160 -CaptiveWorks 60952 -Captives 65452 -Captivity 61256 -Captopril 63792 -Captor 63991 -Capture 48055 -Captured 56687 -Captures 58262 -Capturing 56388 -Captus 64657 -Capuchin 62196 -Capusotto 61584 -Caputo 62762 -Car 34703 -Car's 64201 -CarAndGPS 65170 -CarBargains 64905 -CarBook 61472 -CarDataVideo 63419 -CarDomain 58632 -CarFinder 62613 -CarGurus 63245 -CarMate 63077 -CarMax 64657 -CarPC 65452 -CarSoup 63419 -CarSpace 60856 -Cara 53762 -Carabiner 63077 -Carabiners 61152 -Caracas 58162 -Caracol 65452 -Caractere 65170 -Caradoc 64657 -Caradon 64423 -Carafe 57440 -Carafes 65452 -Caraga 63601 -Caraibi 64657 -Caramel 53597 -Caramelized 63991 -Caramelldansen 63245 -Caran 64657 -Carano 59774 -Caras 64657 -Carat 56140 -Carats 59227 -Caravan 48711 -Caravanning 62469 -Caravans 53533 -Caravelle 63077 -Caraway 64905 -Caray 62066 -Carb 53917 -Carbamazepine 63792 -Carberry 63077 -Carbide 54479 -Carbine 61362 -Carbo 64657 -Carbohydrate 55130 -Carbohydrates 56200 -Carbon 45125 -CarbonFree 64905 -Carbonara 65170 -Carbonate 58523 -Carbondale 59848 -Carbone 59560 -Carbonfund 65170 -Carbonic 61818 -Carboniferous 62613 -Carbonless 65452 -Carbonyl 62917 -Carbowax 63792 -Carboxylic 62613 -Carbs 58577 -Carburetor 59848 -Carburetors 60762 -Carcass 60238 -Carcharhinus 64657 -Carcinogenesis 58162 -Carcinogenicity 63792 -Carcinoma 55849 -Carcinomas 65170 -Card 37620 -CardBus 59774 -CardPAC 65452 -CardRunners 63077 -CardScan 64201 -CardSpace 59424 -Cardamom 65452 -Cardboard 54439 -Cardbus 65170 -Cardcaptor 61256 -Carded 63077 -Carden 60670 -Cardenal 64657 -Cardenas 62066 -Cardholder 62196 -Cardholder's 62066 -Cardholders 65452 -Cardiac 48861 -Cardiff 46395 -Cardiff's 63991 -Cardigan 54813 -Cardigans 59774 -Cardillo 64423 -Cardin 56899 -Cardinal 49880 -Cardinal's 62762 -Cardinals 49535 -Cardinia 64905 -Cardio 54601 -CardioMetab 63792 -Cardiol 53662 -Cardiologia 65452 -Cardiologist 61472 -Cardiologists 61152 -Cardiology 49417 -Cardiometabolic 62469 -Cardiomyocytes 64657 -Cardiomyopathy 64201 -Cardiopathie 65452 -Cardiopatía 65452 -Cardiopulmonary 60321 -Cardiothorac 59039 -Cardiothoracic 57970 -Cardiovasc 51104 -Cardiovascular 47307 -Cardioverter 63419 -Cardizem 58979 -Cardmaking 64423 -Cardo 63245 -Cardona 61699 -Cardone 63601 -Cardoso 63991 -Cardoza 64905 -Cardozo 62917 -Cards 38071 -Cardstock 64423 -Cardura 59164 -Cardwell 62469 -Care 35233 -Care's 60580 -CareFirst 62762 -Career 38809 -CareerBuilder 48771 -CareerLink 62613 -CareerOne 55084 -Careerjet 60000 -Careers 37383 -Carefree 60238 -Carefresh 64423 -Careful 55202 -Carefully 55474 -Caregiver 56652 -Caregivers 52739 -Caregiving 58113 -Careless 62613 -Carell 61818 -Caremark 61699 -Caren 63991 -Carer 59560 -Carers 57122 -Cares 53970 -Caress 61152 -Caressa 65170 -Carestream 65452 -CaretCategory 65452 -CaretNoteID 65170 -Caretaker 62331 -Caretakers 64905 -Carew 61051 -Carex 62613 -Carey 47997 -Carey's 61472 -Careysburg 62917 -Carfax 62196 -Carfind 62613 -Carga 65452 -Cargill 60078 -Cargo 48287 -Carhartt 58065 -Cari 61152 -Carib 61940 -Caribana 65170 -Caribbean 42638 -Caribbean's 63077 -Caribe 57653 -Caribeños 65452 -Cariboo 61940 -Caribou 56618 -Carica 63245 -Caricature 59848 -Caricatures 60405 -Caries 60238 -Carillon 63792 -Carin 62613 -Carina 55934 -Carindale 63991 -Carine 61584 -Caring 50949 -Carino 62331 -Carioca 64423 -Carisma 64905 -Carisoprodol 58162 -Carissa 61584 -Caritas 60952 -Cariñena 65452 -Carl 44968 -Carl's 60952 -Carla 51026 -Carla's 65170 -Carle 57696 -Carlene 63419 -Carles 63419 -Carleton 55202 -Carley 62917 -Carli 59164 -Carlie 63419 -Carlile 64657 -Carlin 56140 -Carling 55373 -Carlingford 64905 -Carlisle 50522 -Carlito 61472 -Carlito's 64657 -Carll 65170 -Carlo 48633 -Carlock 64201 -Carlos 45608 -Carlotta 63245 -Carlow 55934 -Carlsbad 55348 -Carlsberg 59848 -Carlsen 63991 -Carlson 50710 -Carlson's 63077 -Carlsson 60580 -Carlton 50306 -Carlton's 64423 -Carly 54005 -Carlyle 55849 -Carlyn 61818 -Carma 63991 -Carmack 65170 -Carmageddon 65170 -Carmakers 65170 -Carman 60952 -Carmarthen 63792 -Carmarthenshire 57831 -Carmel 51113 -Carmela 63601 -Carmelita 63077 -Carmelite 64201 -Carmella 58688 -Carmelo 58313 -Carmen 48970 -Carmi 63245 -Carmichael 56420 -Carmike 60762 -Carmina 63792 -Carmine 59227 -Carmody 61818 -Carmona 62469 -Carn 63601 -Carnac 64905 -Carnage 58523 -Carnahan 61818 -Carnal 62066 -Carnality 64201 -Carnarvon 57696 -Carnatic 60762 -Carnation 60670 -Carnaval 58417 -Carne 62196 -Carnegie 49218 -Carneiro 63792 -Carnell 65452 -Carneros 64201 -Carnes 60670 -Carney 56972 -Carnie 65170 -Carnitas 65170 -Carnitine 63991 -Carnival 46711 -Carnivals 62469 -Carnivora 62196 -Carnivore 62469 -Carnivorous 62762 -Carnot 65452 -Carnoustie 62762 -Caro 58212 -Carol 45226 -Carol's 60580 -Carola 58262 -Carole 52351 -Carolia 65170 -Carolin 65452 -Carolina 38043 -Carolina's 52725 -Carolinas 57318 -Caroline 47664 -Caroline's 64905 -Caroling 64905 -Carolinians 63077 -Carolla 64657 -Carols 57653 -Carolus 63991 -Carolyn 49135 -Caron 57238 -Carondelet 64201 -Carotene 64201 -Carotid 55250 -Carouge 64423 -Carousel 55631 -Carp 52411 -Carpal 56827 -Carparks 63245 -Carpathian 60762 -Carpathians 63245 -Carpe 58632 -Carpenter 51184 -Carpenter's 63601 -Carpenters 56899 -Carpentersville 64657 -Carpentier 63419 -Carpentry 54188 -Carper 64657 -Carpet 46356 -Carpetbagger 62613 -Carpeted 62331 -Carpeting 60405 -Carpets 51660 -Carphone 57238 -Carpool 57084 -Carport 61051 -Carports 53392 -Carr 50678 -Carr's 61584 -Carrabba's 64657 -Carradine 63245 -Carrara 61699 -Carrasco 65170 -Carraway 63601 -Carrboro 62066 -Carre 63601 -Carrefour 61051 -Carreira 63792 -Carrel 64905 -Carrell 63991 -Carrera 53988 -Carreras 62613 -Carretera 62917 -Carrey 58577 -Carriage 53024 -Carriages 62331 -Carribbean 65170 -Carribean 58577 -Carrick 58417 -Carrickfergus 65452 -Carrie 47964 -Carrie's 59039 -Carried 53138 -Carrier 47581 -Carriers 48501 -Carries 58745 -Carrillo 61940 -Carrington 58523 -Carrion 61472 -Carriwell 63245 -Carrizo 61940 -Carrol 61362 -Carroll 48067 -Carroll's 62613 -Carrollton 55906 -Carrom 65170 -Carros 62613 -Carrot 53729 -Carrots 57440 -Carrs 62762 -Carrside 65452 -Carruthers 62469 -Carry 49529 -Carryall 64201 -Carrying 50662 -Carryout 63991 -Carryovers 59357 -Cars 37033 -CarsDirect 57160 -Carsales 65452 -Carseat 63991 -Carsguide 62917 -Carshalton 62066 -Carson 49330 -Carson's 63419 -Carsten 59227 -Carstensen 65452 -Carswell 64423 -Cart 36440 -CartOrder 64201 -Carta 59630 -Cartagena 60952 -Cartan 63077 -Cartas 64657 -Carte 56200 -Cartel 54902 -Cartels 64657 -Carter 46020 -Carter's 57199 -Carteret 59630 -Carters 62762 -Cartersville 59424 -Carterville 63601 -Cartesian 56420 -Carthage 57831 -Carthy 65452 -Cartier 54245 -Cartilage 59702 -Cartman 58802 -Cartographic 64201 -Cartography 60492 -Carton 56899 -Cartons 60492 -Cartoon 46549 -CartoonStock 57160 -Cartooning 63792 -Cartoonist 61699 -Cartoons 46404 -Cartref 64423 -Cartridge 49365 -Cartridges 48174 -Carts 50454 -Cartwright 57524 -Carty 61940 -Carus 65452 -Caruso 58017 -Carvajal 61940 -Carvalho 59227 -Carve 58860 -Carved 55711 -Carvedilol 65170 -Carver 53729 -Carvers 65452 -Carvery 63419 -Carvey 63991 -Carville 63077 -Carvin 59424 -Carving 54749 -Carvings 62469 -Carvoeiro 64657 -Carwash 62469 -Cary 49336 -Caryl 62469 -Caryn 60670 -Cas 57696 -Casa 48404 -Casablanca 55684 -Casadei 61699 -Casal 64423 -Casale 63419 -Casall 61472 -Casanova 59702 -Casas 59292 -Casavant 64423 -Casbah 63077 -Cascada 59702 -Cascade 51415 -Cascades 57741 -Cascadia 61152 -Cascading 57876 -Cascais 64905 -Cascio 62196 -Casco 61152 -Case 38329 -CaseMail 61362 -Casebook 57741 -Casein 63077 -Caseload 63991 -Casement 62469 -Casemix 65452 -Cases 41712 -Casework 65170 -Casey 47346 -Casey's 60238 -Cash 41237 -CashPro 65452 -Cashback 55500 -Cashel 61940 -Cashes 63991 -Cashew 59702 -Cashews 65170 -Cashflow 59039 -Cashier 57318 -Cashier's 61152 -Cashiers 58313 -Cashin 63245 -Cashing 58919 -Cashman 61584 -Cashmere 55154 -Casi 63419 -Casilla 64657 -Casimir 61584 -Casing 57970 -Casings 63245 -Casino 43698 -Casinos 51000 -Casio 50087 -Casio's 64657 -Casita 61256 -Casitas 65452 -Cask 60856 -Casket 60000 -Caskets 64201 -Caso 60321 -Casodex 58802 -Cason 64905 -Caspar 60157 -Caspase 62613 -Casper 55107 -Caspian 54207 -Cass 53454 -Cassa 64423 -Cassadaga 65452 -Cassady 65170 -Cassandra 53988 -Cassandra's 64657 -Cassava 61051 -Cassel 58802 -Casselberry 63601 -Cassell 60157 -Casserly 65170 -Casserole 53346 -Casseroles 58113 -Cassette 50006 -Cassettes 57831 -Casshern 65170 -Cassi 63792 -Cassia 60670 -Cassiano 62066 -Cassidy 52256 -Cassie 53377 -Cassin 62613 -Cassini 58802 -Cassino 64657 -Cassiopeia 64657 -Cassis 63077 -Cassius 58262 -Cassy 63792 -Cast 43991 -Casta 61152 -Castaic 63601 -Castaneda 63991 -Castaway 57318 -Caste 59357 -Castel 61472 -Castell 60321 -Castellano 60952 -Castellanos 63991 -Castelli 60952 -Castello 59357 -Castelluccio 61051 -Castelo 59774 -Caster 60157 -Casters 59039 -Castes 65452 -Castiglione 64905 -Castile 62762 -Castilian 63601 -Castilla 59101 -Castille 63419 -Castilleja 65452 -Castillo 53712 -Casting 49119 -Castings 57696 -Castle 44220 -CastleCops 58470 -Castlebar 62762 -Castledawson 64905 -Castleford 61152 -Castlereagh 60762 -Castles 53646 -Castleton 60000 -Castletown 64657 -Castlevania 58919 -Castlewood 63077 -Castor 56827 -Castors 65170 -Castration 65452 -Castro 50734 -Castro's 63245 -Castrol 60580 -Castroneves 61699 -Castros 65170 -Castroville 65170 -Casts 59560 -Casual 45939 -Casually 64657 -Casuals 61051 -Casualties 57084 -Casualty 53196 -Casuarina 64905 -Caswell 56899 -Cat 42288 -Cat's 56050 -CataList 56721 -Catacomb 61256 -Catacombs 62917 -Catagories 61051 -Catahoula 59848 -Catala 64657 -Catalan 52062 -Catalano 64423 -Catalase 61818 -Catalin 63991 -Catalina 52210 -Catalog 38935 -CatalogRFQ 64657 -Cataloging 58745 -Catalogs 49979 -Catalogu 61362 -Catalogue 45076 -Catalogues 54005 -Cataloguing 65170 -Catalonia 57970 -Catalunya 59848 -Cataluña 63245 -Catalysis 57741 -Catalyst 49834 -Catalysts 58262 -Catalytic 54813 -Catalyzed 64657 -Català 50553 -Catamaran 62331 -Catamounts 64905 -Catan 62917 -Catania 59560 -Catapult 59923 -Catapults 64201 -Cataract 55084 -Cataracts 62613 -Catarina 59292 -Catastrophe 58979 -Catastrophes 64423 -Catastrophic 60078 -Catatonia 65170 -Catawba 58802 -Catch 48323 -Catcher 56293 -Catchers 59101 -Catches 59101 -Catching 55037 -Catchment 55552 -Catchments 63077 -Catchphrase 64905 -Catchy 62196 -Cate 54857 -Catechism 61940 -Catedral 60405 -Categorias 64905 -Categorical 61818 -Categories 35001 -CategoriesHome 64657 -Categorisation 63077 -Categorization 62613 -Categorize 61584 -Categorized 60762 -Category 37738 -Categorías 63991 -Cater 58262 -Catered 57923 -Caterer 59292 -Caterers 53167 -Caterham 58162 -Caterina 61940 -Catering 46387 -Caterpillar 53729 -Cates 58212 -Cateye 61051 -Catfight 65452 -Catfish 56200 -Catford 61362 -Cath 59560 -Cathal 58919 -Catharina 64423 -Catharine 59292 -Catharines 52244 -Cathay 51425 -Cathcart 63792 -Cathedral 49608 -Cathedrals 61818 -Cathepsin 63245 -Catherine 45972 -Catherine's 60000 -Catherines 62762 -Cathet 65452 -Catheter 57524 -Catheterization 63601 -Catheters 60405 -Cathie 62762 -Cathleen 62331 -Cathode 59630 -Catholic 42532 -Catholicism 55766 -Catholics 52198 -Catholique 63601 -Cathryn 62331 -Cathy 49770 -Cathy's 60492 -Catia 61818 -Cation 61051 -Cationic 63419 -Cations 62469 -Catlin 57831 -Catlins 64657 -Catnip 60405 -Cato 57046 -Catolico 64905 -Caton 63792 -Catonsville 63245 -Catoosa 64201 -Catrall 63245 -Catrina 64905 -Catriona 62196 -Cats 46004 -CatsAngel 63419 -Catskill 59227 -Catskills 61256 -Catster 60952 -Catt 63792 -Cattaneo 64905 -Cattaraugus 64657 -Catteries 63792 -Cattery 62469 -Cattle 51008 -Cattlemen's 61584 -Cattolica 65170 -Cattrall 63419 -Catv 65170 -Catwalk 55821 -Catwoman 58688 -Catz 61940 -Catálogo 64201 -Catégorie 64423 -Caucasian 51275 -Caucasians 63601 -Caucasus 55107 -Cauchy 58212 -Caucus 53679 -Caucuses 62917 -Caudalie 65170 -Caudle 65452 -Caught 49086 -Caulder 65170 -Cauldron 61940 -Caulfield 58802 -Cauliflower 60670 -Caulk 62762 -Caulking 63077 -Causal 60238 -Causality 65452 -Causation 63792 -Cause 46763 -Caused 55130 -Causes 48464 -Causeway 57199 -Causey's 63245 -Causing 58313 -Caustic 60238 -Caution 55274 -Cautionary 59357 -Cautions 63245 -Cautious 60492 -Cav 61584 -Cava 63601 -Cavalcade 63991 -Cavalera 64423 -Cavalier 54245 -Cavaliers 53271 -Cavallari 61362 -Cavalli 56518 -Cavallo 63077 -Cavalry 55684 -Cavan 56140 -Cavanagh 62917 -Cavanaugh 61940 -Cavazos 64657 -Cave 49012 -Caveat 61256 -Caveats 63792 -Caveman 61256 -Cavemen 63245 -Cavendish 57923 -Cavern 57653 -Caverns 55552 -Caversham 63792 -Caves 55274 -Caviar 54813 -Caviezel 59424 -Cavin 63601 -Caving 61940 -Cavitation 64905 -Cavite 61818 -Cavities 63419 -Cavity 57122 -Cavs 59774 -Cawdor 61818 -Cawley 62762 -Caxton 64201 -Cay 58313 -Cayce 61818 -Cayenne 56388 -Caylee 59702 -Cayley 63792 -Cayman 45544 -Cayo 62469 -Cayuga 58577 -Caz 64657 -Cazador 64423 -Cazenove 63991 -Cazenovia 63419 -Cb 63792 -Cbeebies 64905 -Cbg 65452 -Cbs 62917 -Cc 59774 -Cccp 60157 -Cctv 62196 -Cd 50292 -Cd's 63245 -CdCI 63991 -CdCovers 62331 -CdR 65452 -CdS 58745 -CdSe 61818 -Cdk 63245 -Cdn 62917 -Cds 59292 -Ce 53630 -CeBIT 58577 -CeCe 64201 -CeO 59630 -CePA 63991 -Ceanothus 65452 -Cease 59164 -Ceasers 58688 -Cebu 53813 -Cebuano 55178 -Ceca 61472 -Cecchetti 63991 -Cece 62762 -Cecelia 62196 -Cech 62331 -Ceci 62066 -Cecil 51660 -Cecile 60762 -Cecilia 53917 -Cecily 62469 -Cedar 46178 -CedarBoards 65170 -Cedarburg 60580 -Cedars 60157 -Cedarville 61152 -Cedarwood 64657 -Cedex 48726 -Cedi 64905 -Cedille 65170 -Ceding 65170 -Cedric 55821 -Cedrus 64657 -Cee 59702 -Cees 64201 -Cefn 62469 -Cefuroxime 64657 -Ceili 63245 -Ceiling 48468 -Ceilings 52927 -Cel 60238 -Celadon 64201 -Celanese 62196 -Celcius 64905 -Cele 61818 -Celeb 48354 -CelebAmour 64905 -CelebTV 63991 -Celebitchy 63077 -Celebrate 50067 -Celebrated 60157 -Celebrates 53081 -Celebrating 52118 -Celebration 47024 -Celebrations 48067 -Celebrex 57524 -Celebridiot 62613 -Celebrit 63991 -Celebrites 64905 -Celebrities 43746 -Celebrity 38942 -CelebrityWonder 63601 -Celebs 48445 -Celebslam 64201 -Celebutante 64201 -Celebuzz 63245 -Celecoxib 63077 -Celene 64657 -Celentano 63245 -Celerant 63991 -Celeron 55299 -Celery 59292 -Celeste 55274 -Celestial 55423 -Celestine 62762 -Celestion 60000 -Celestron 59357 -Celexa 55604 -Celia 56618 -Celiac 57653 -Celica 58212 -Celina 56687 -Celine 50499 -Celio 64201 -Celis 62331 -Cell 37062 -CellC 64905 -CellOne 63601 -Cellar 53970 -Cellars 56551 -Cellcom 63792 -Cellet 63792 -Cello 54226 -Cellophane 65452 -Cellphone 54078 -Cellphones 55793 -Cells 42254 -Cellular 44772 -Cellule 61818 -Cellulite 59101 -Cellulitis 62469 -Celluloid 61051 -Cellulose 57318 -Celok 64657 -Celsius 57399 -Celso 61472 -Celt 64905 -Celtel 64905 -Celtic 46546 -Celtics 51721 -Celts 58113 -Cem 61256 -Cement 51069 -Cemented 63419 -Cements 60952 -Cemetary 60762 -Cemeteries 51620 -Cemetery 47630 -Cemex 65452 -Cems 64905 -Cen 60856 -Cena 55178 -Cenarion 58262 -Cenarius 60670 -Cengage 48624 -Cenk 64423 -Cenozoic 60762 -Censor 61940 -Censored 62917 -Censorship 56050 -Census 43896 -Censuses 63601 -Cent 50615 -CentER 65452 -CentOS 55154 -Centar 64657 -Centaur 57566 -Centaurea 65452 -Centauri 61818 -Centauro 64657 -Centaurus 61818 -Centenarian 63419 -Centenario 65452 -Centenary 55657 -Centennial 50314 -Center 32533 -Center'd 64657 -Center's 54023 -CenterAdvertiser 63991 -CenterSite 64201 -Centered 58212 -Centerfold 59848 -Centering 63245 -Centerline 61051 -Centerpiece 56110 -Centerpieces 58632 -Centerpoint 65170 -Centers 42104 -Centerstage 62917 -Centervia 62331 -Centerville 57318 -Centex 62196 -Centimeter 64423 -Centr 60670 -Centra 60952 -Centrafuse 65170 -Central 36027 -Central's 61051 -CentralDepartments 64905 -Centrale 62917 -Centralia 59630 -Centralized 57785 -Centrally 58523 -Centre 37408 -Centre's 57199 -Centrebet 63601 -Centred 64657 -Centrelink 59424 -Centrepiece 61362 -Centres 47245 -Centreville 61472 -Centrex 63991 -Centric 59101 -Centrifugal 57046 -Centrifuge 58919 -Centrino 56420 -Centrist 61699 -Centro 49979 -Centrosome 64905 -Centrum 57741 -Cents 55906 -Centura 64905 -Centuries 58632 -Centurion 56170 -Century 43396 -CenturyMedia 63245 -Ceo 58688 -Ceol 64423 -Cephalalgia 61940 -Cephalexin 60856 -Cephalopod 64905 -Cepia 65452 -Cer 60238 -Cera 59491 -Cerambycids 65170 -Ceramic 47070 -Ceramics 52221 -Ceramide 63419 -Ceratocystis 63991 -Cerberus 58979 -Cerca 60670 -Cerddoriaeth 63419 -Cereal 54041 -Cereals 57399 -Cereb 61699 -Cerebellar 64201 -Cerebral 52699 -Cerebrospinal 63601 -Cerebrovascular 60000 -Ceredigion 58313 -Ceremonial 57566 -Ceremonies 54992 -Ceremony 50129 -Cerenkov 63792 -Ceres 57696 -Cereus 65452 -Cerf 63792 -Ceri 63077 -Cerificate 63792 -Cerin 64905 -Cerio 61818 -Cerise 63991 -Cerium 65170 -Cermak 62469 -Cerne 63991 -Cerner 57482 -Cero 63991 -Cerra 64657 -Cerrado 63792 -Cerrito 61362 -Cerritos 58313 -Cerro 57785 -Cerrone 64201 -Cerruti 63601 -Cert 57122 -CertaPro 63601 -Certain 48359 -CertainTeed 64657 -Certainly 52927 -Certainty 62762 -Certegy 63245 -Certificaition 63077 -Certificate 43534 -CertificateAuthorityOrg 64905 -CertificateExpiration 64905 -Certificated 60000 -Certificates 43301 -Certification 44269 -Certifications 51148 -Certified 41708 -CertifierFile 64657 -CertifierPassword 64423 -Certify 63245 -Certifying 60000 -Cerulean 61940 -Cervantes 60321 -Cervelo 62762 -Cervical 51630 -Cervix 60670 -Cerwin 61362 -Cerys 64423 -Ces 62196 -CesT 65170 -Cesar 54283 -Cesare 59923 -Cesarean 59560 -Cesc 62613 -Cesk 58919 -Cesky 60670 -Cessation 57009 -Cessna 55963 -Cessnock 62196 -Cesta 65170 -Cet 63792 -Cetera 60670 -Cette 60078 -Cetus 65452 -Ceuta 61940 -Ceviche 64905 -Ceylon 58365 -Cezanne 63792 -Cezar 63419 -Cf 62613 -Cg 63991 -Cgc 64201 -Ch 50469 -ChE 61584 -ChIP 65170 -Cha 53124 -ChaCha 63077 -Chabad 60762 -Chablis 62762 -Chabon 63419 -Chabot 62613 -Chabraja 59774 -Chabraja's 62469 -Chacala 60238 -Chace 57318 -Chacha 63077 -Chachapoyas 63792 -Chaco 56585 -Chacon 63245 -Chad 44696 -Chad's 60157 -Chadbourne 65452 -Chadd 65452 -Chadds 63245 -Chadian 63991 -Chadians 63991 -Chadron 64905 -Chadwell 62917 -Chadwick 54992 -Chadwick's 60670 -Chadwicks 64905 -Chae 61584 -Chafee 64201 -Chafers 65452 -Chaffee 63245 -Chaffey 62917 -Chaffin 62762 -Chagall 61584 -Chagas 64201 -Chagos 65170 -Chagrin 60580 -Chai 55604 -Chaim 61362 -Chain 44292 -Chained 63601 -Chainmail 64201 -Chainring 64905 -Chainrings 62469 -Chains 48682 -Chainsaw 56356 -Chainsaws 60856 -Chainsets 65170 -Chainsmoke 64905 -Chainstore 61472 -Chaintech 64423 -Chair 44172 -Chair's 59923 -Chaired 63077 -Chairlift 64905 -Chairman 43618 -Chairman's 56452 -Chairmen 63077 -Chairperson 53271 -Chairpersons 64201 -Chairs 47615 -Chairwoman 61472 -Chaise 55202 -Chait 64423 -Chaitanya 64905 -Chaitén 60952 -Chaizu 65452 -Chak 62196 -Chaka 59424 -Chakra 58162 -Chakrabarty 65170 -Chakraborty 62066 -Chakras 62066 -Chal 62331 -Chala 62917 -Chale 62917 -Chalet 54283 -Chalets 58113 -Chaleur 65170 -Chalfont 59164 -Chalice 60000 -Chalk 53485 -Chalkboard 62613 -Chalke 63419 -Chall 63601 -Challe 61699 -ChalleNGe 62613 -Challeng 60078 -Challenge 42738 -Challenged 59039 -Challenger 51974 -Challengers 61472 -Challenges 48327 -Challenging 54969 -Challis 64905 -Chalmers 56050 -Chaloner 60670 -Cham 59630 -Chama 61256 -Chamakh 62762 -Chamber 44224 -Chamber's 62762 -Chamberlain 53813 -Chamberlin 60762 -Chambers 48826 -Chambersburg 64905 -Chambery 63419 -Chamblee 60580 -Chambon 65452 -Chambord 63991 -Chambre 63991 -Chameleon 55793 -Chamillionaire 57923 -Chaminade 63245 -Chamois 60952 -Chamomile 62917 -Chamonix 59848 -Chamorro 60762 -Chamoru 65452 -Champ 52339 -Champa 64423 -Champagne 50129 -Champagnes 64657 -Champaign 55849 -Champion 45098 -Champion's 64657 -Championnat 64423 -Champions 46432 -Championship 44125 -Championships 47984 -Champlain 58313 -Champlin 63077 -Champloo 61584 -Champs 53226 -Chan 49758 -Chan's 60856 -Chana 62196 -Chance 47276 -Chancel 64905 -Chancellery 64657 -Chancellor 51303 -Chancellor's 59292 -Chancellors 64423 -Chancery 58470 -Chances 53167 -Chand 59630 -Chanda 60405 -Chandelier 54341 -ChandelierCurrey 63792 -Chandeliers 56899 -Chander 64657 -Chandi 65170 -Chandigarh 52447 -Chandler 50873 -Chandler's 65170 -Chandlers 63419 -Chandlery 63077 -Chandni 64423 -Chandon 62917 -Chandos 61152 -Chandra 53361 -Chandran 61472 -Chandrasekaran 62917 -Chandrasekhar 64657 -Chandrayaan 59923 -Chandy 63792 -Chanel 51358 -Chanelle 59101 -Chaney 58632 -Chang 49815 -Chang's 58688 -Changchun 60321 -Change 35616 -ChangeLog 59227 -Changeable 64201 -Changed 49663 -Changeling 53679 -Changelog 57923 -Changeover 63419 -Changer 54360 -Changers 57524 -Changes 41843 -Changeset 54924 -Changi 60078 -Changing 45845 -Changsha 60238 -Changzhou 59227 -Chanhassen 65170 -Chania 63792 -Channahon 64905 -Channel 36639 -Channel's 59101 -ChannelWeb 65452 -Channeled 64905 -Channeling 62613 -Channels 37620 -Channing 57122 -Chanson 61362 -Chansons 62762 -Chant 56721 -Chantada 65452 -Chantal 56110 -Chante 63601 -Chantecaille 64423 -Chantel 63419 -Chantelle 58417 -Chanterelle 63601 -Chanticleer 64201 -Chantilly 57876 -Chanting 63419 -Chantix 63601 -Chants 60000 -Chanukah 59923 -Chanute 63601 -Chao 55766 -Chaos 48638 -Chaosbolt 63077 -Chaoslava 65170 -Chaotic 55631 -ChaoticSoul 62469 -Chaoyang 63991 -Chap 55500 -Chapala 62613 -Chaparral 60321 -Chapel 46040 -Chapelle 62331 -Chapels 61472 -Chaperone 62613 -Chapin 57653 -Chaplain 56972 -Chaplaincy 63077 -Chaplains 62762 -Chaplet 61699 -Chaplets 64657 -Chaplin 56862 -Chapman 49732 -Chapman's 60580 -Chappel 65170 -Chappell 58632 -Chappelle 56721 -Chappelle's 57609 -Chaps 60670 -Chapt 58162 -Chapter 39409 -Chapters 47737 -Char 58365 -Chara 62613 -Characins 65452 -Character 44329 -Characterisation 59491 -Characteristic 54581 -Characteristics 47424 -Characterization 48562 -Characterizations 65452 -Characterize 64657 -Characterized 64201 -Characterizing 62917 -Characters 45889 -Charade 64905 -Charan 63991 -Charboneau 63792 -Charboneau's 63991 -Charcoal 53346 -Charcot 63792 -Chard 59774 -Chardin 64657 -Chardon 63991 -Chardonnay 52927 -Charen 65170 -Charest 63245 -Charge 47087 -Charged 53196 -Charger 47515 -Chargers 47622 -Charges 47005 -Charging 53301 -Chari 61699 -Charice 61818 -Charing 59702 -Chariot 56721 -Chariots 62331 -Charis 63792 -Charisma 57831 -Charismatic 60492 -Charitable 51425 -Charities 49633 -Chariton 64905 -Charity 46027 -Charl 64657 -Charla 64657 -Charlaine 63245 -Charlatans 62762 -Charlemagne 60580 -Charlene 55178 -Charleroi 63991 -Charles 39937 -Charleston 46543 -Charleston's 64657 -Charlestown 54924 -Charleville 62613 -Charlevoix 61152 -Charley 55877 -Charley's 64201 -Charli 63077 -Charlie 44129 -Charlie's 54969 -Charlies 62331 -Charlize 54792 -Charlo 63419 -Charlotte 43074 -Charlotte's 59560 -Charlottes 64905 -Charlottesville 57358 -Charlottetown 54302 -Charlton 52351 -Charlton's 64905 -Charly 58979 -Charm 48761 -Charmaine 59424 -Charman 60952 -Charme 64657 -Charmed 56420 -Charmer 58802 -Charmeuse 57609 -Charmin 64657 -Charming 54302 -Charms 49113 -Charney 64657 -Charnwood 59774 -Charo 65452 -Charon 64423 -Charpentier 65452 -Charrette 64905 -Charron 63792 -Chars 63077 -Charset 59357 -Chart 42462 -Charter 44558 -Chartered 51762 -Charterhouse 63077 -Charteris 64201 -Charters 51856 -Charting 55906 -Chartres 65170 -Chartreuse 59292 -Charts 41747 -Chartwell 65452 -Chas 56420 -Chase 46245 -Chase's 63991 -Chaser 56021 -Chasers 62613 -Chases 62762 -Chasey 63792 -Chasing 53679 -Chasis 64905 -Chaska 62331 -Chasm 59039 -Chasseur 64201 -Chassis 51690 -Chast 64201 -Chastain 64657 -Chastity 62469 -Chat 39446 -ChatBox 58919 -Chatboard 60580 -Chatboards 63792 -Chatbox 63419 -Chateau 51846 -Chateaubriand 65452 -Chateauneuf 62762 -Chatelaine 63792 -Chatellerault 62613 -Chatfield 60157 -Chatham 50678 -Chatroom 57160 -Chatrooms 62613 -Chats 53081 -Chatswood 60492 -Chatsworth 56721 -Chattahoochee 60580 -Chattanooga 49828 -Chatter 52673 -ChatterBank 63245 -Chatterbox 60238 -Chatteris 61362 -Chatterjee 59702 -Chatting 59101 -Chattisgarh 65170 -Chattopadhyay 64657 -Chaturthi 64905 -Chaturvedi 63419 -Chatzky 65452 -Chau 58417 -Chaucer 59848 -Chaucer's 63245 -Chaudhary 61051 -Chaudhry 62196 -Chaudhuri 64657 -Chauffeur 59630 -Chauhan 59292 -Chauncey 61152 -Chaurasia 63991 -Chautauqua 59848 -Chauvet 62066 -Chauvin 63419 -Chaves 61472 -Chavez 51996 -Chavez's 62917 -Chavo 64201 -Chavos 63601 -Chaweng 62331 -Chawla 59227 -Chaylee 57009 -Chaz 59491 -Chazz 65452 -ChchNPV 63601 -Che 53533 -Cheadle 56140 -Cheap 39819 -CheapAir 63245 -CheapSmells 64905 -CheapTickets 57318 -Cheaper 55578 -Cheapest 51166 -Cheapflights 62196 -Cheaply 61472 -Cheapo 63792 -CheapoAir 63419 -CheapoAirHotels 63419 -Cheapskate 65170 -Cheaptickets 62613 -Cheasapeake 65452 -Cheat 48692 -CheatBook 62917 -Cheated 60856 -Cheater 59491 -Cheaters 61472 -Cheatham 62762 -Cheating 52040 -Cheats 39704 -CheatsCodesGuides 56687 -Cheb 60856 -Chebyshev 58470 -Chechen 58919 -Chechnya 58802 -Check 35618 -Checkbook 60321 -Checkbooks 64423 -Checked 50046 -Checker 50615 -Checkerboard 64201 -Checkered 59357 -Checkers 56862 -Checkin 65170 -Checking 49553 -Checklist 46365 -Checklists 57785 -Checkmate 63245 -Checkout 44309 -Checkpoint 55178 -Checkpoints 62469 -Checks 49651 -Checksum 60762 -Checkup 60856 -Cheddar 55226 -Cheddar's 64201 -Chee 56618 -Cheech 59774 -Cheechoo 62613 -Cheek 56485 -Cheeks 59357 -Cheeky 57609 -Cheeni 61940 -Cheer 51610 -Cheerful 61940 -Cheering 61362 -Cheerios 61940 -Cheerleader 51867 -Cheerleaders 53454 -Cheerleading 53613 -Cheers 49353 -Cheese 46149 -Cheeseburger 61940 -Cheesecake 54664 -Cheesecakes 63601 -Cheeseman 64905 -Cheeses 62762 -Cheesesteak 65170 -Cheesy 57923 -Cheeta 63991 -Cheetah 54499 -Cheetahs 64201 -Cheetham 62613 -Cheetos 64423 -Cheeze 65452 -Chef 46488 -Chef's 55684 -ChefMoz 65170 -Chefs 52175 -Chehalis 64657 -Cheikh 61584 -Chek 63792 -Chekhov 63991 -Chelan 61584 -Chelating 64657 -Chelation 64657 -Chelios 64905 -Chelmer 65452 -Chelmsford 53549 -Chelodina 63792 -Chelona 61940 -Cheloor 63991 -Chelsea 46045 -Chelsea's 60856 -Chelsey 62762 -Chelsie 64201 -Cheltenham 52411 -Chelyabinsk 63077 -Chem 48913 -ChemChronicles 59101 -ChemPort 54078 -Chemical 40922 -Chemically 60157 -Chemicals 47097 -Chemie 57876 -Chemin 62066 -Chemis 64905 -Chemise 58577 -Chemises 63792 -Chemist 54992 -Chemist's 64423 -Chemistry 42694 -ChemistryMassSpec 63601 -ChemistryPhysicsNMR 62331 -ChemistryResearchNMR 65452 -Chemists 57238 -Chemisty 64423 -Chemjobs 62469 -Chemnitz 63419 -Chemo 63991 -Chemokine 62917 -Chemokines 64657 -Chemonics 63991 -Chemosphere 64905 -Chemotaxis 61818 -Chemother 56231 -Chemotherapeutic 64423 -Chemotherapy 53138 -Chemport 56518 -Chemsoc 57160 -Chemtura 63792 -Chemung 62469 -Chen 46584 -Chen's 62196 -Chena 65452 -Chenango 61256 -Chenery 65452 -Cheney 52546 -Cheney's 60670 -Cheng 51406 -Chengdu 56652 -Chenier 63245 -Chenille 57741 -Chenin 65452 -Chennai 48454 -Chenoa 65170 -Chenoweth 60670 -Cheon 65170 -Cheong 60157 -Chepstow 59227 -Cheque 53712 -Chequers 63991 -Cheques 58802 -Cher 55107 -Cherbourg 63991 -Cheri 57238 -Cheri's 59491 -Cherie 56231 -Cherish 60000 -Cherished 59774 -Cheriton 64905 -Chermside 62917 -Chern 63245 -Chernobyl 56170 -Chernoff 65170 -Cherokee 48165 -Cherokees 65170 -Cherries 58162 -Cherry 45773 -Cherryville 60762 -Cherrywood 63792 -Chertoff 63077 -Chertsey 61051 -Cherub 63077 -Cherwell 64201 -Chery 65170 -Cheryl 48055 -Cheryl's 64423 -ChesTM 62613 -Chesapeake 49251 -Chesham 58365 -Cheshire 49190 -Cheshunt 63601 -Chesney 55526 -Chesnutt 63601 -Chess 48001 -Chesser 62613 -Chessington 61818 -Chesson 64657 -Chest 46523 -Chester 47300 -Chester's 64657 -Chesterfield 53052 -Chesterton 56652 -Chesterville 65452 -Chestnut 51406 -Chestnuts 63991 -Chests 57160 -Chet 54749 -Chetan 62196 -Chetek 63991 -Cheung 55448 -Chev 64423 -Cheval 64905 -Chevalier 57970 -Chevelle 57199 -Cheverly 62331 -Cheviot 61940 -Chevrole 64201 -Chevrolet 43632 -Chevrolet's 64201 -Chevron 53485 -ChevronTexaco 62917 -Chevy 47353 -Chevy's 61051 -Chew 56050 -Chew's 64905 -Chewable 61256 -Chewbacca 65170 -Chewing 57009 -Chews 59630 -Chewy 60238 -Chex 62917 -Cheyenne 52051 -Cheyne 63077 -Chez 55578 -Chg 61940 -Chgset 62469 -Chhattisgarh 57566 -Chi 47741 -Chia 58212 -Chiang 52198 -Chiangmai 62331 -Chianti 58979 -Chiao 62469 -Chiapas 60952 -Chiara 59101 -Chiarello 62469 -Chiari 64905 -Chiaroscuro 65452 -Chiasson 64905 -Chiba 56618 -Chibi 60580 -Chic 50799 -Chica 59164 -Chicago 37633 -Chicago's 52699 -ChicagoLive 61256 -Chicagoan 64201 -Chicagoans 64201 -Chicagoist 62613 -Chicagoland 55657 -Chicagoland's 61051 -Chicane 61940 -Chicano 58365 -Chicanos 65452 -Chicas 59101 -Chicco 58979 -Chichen 63601 -Chichester 55849 -Chick 50263 -Chick's 64201 -Chicka 62469 -Chickadee 64423 -Chickahauk 58919 -Chickasaw 60238 -Chickasha 59560 -Chicken 43534 -Chickenpox 62917 -Chickens 55934 -Chickpea 59630 -Chicks 51473 -Chiclayo 65452 -Chico 54992 -Chico's 60078 -Chicony 65452 -Chicopee 60670 -Chicory 62762 -Chicos 64423 -Chics 64423 -Chidambaram 61051 -Chie 64905 -Chief 39249 -Chief's 58212 -Chiefs 50081 -Chieftain 60856 -Chieftains 64905 -Chiemsee 63991 -Chien 56827 -Chievo 63601 -Chiffon 55992 -Chih 63245 -Chihuahua 49608 -Chihuahuas 61699 -Chika 62613 -Chikara 63792 -Chil 65452 -Child 39428 -Child's 52051 -ChildCount 65170 -Childbirth 55348 -Childcare 50940 -Childers 58919 -Childhood 47997 -Childhood's 63792 -Childish 63419 -Childminder 60856 -Childminders 60321 -Childminding 65170 -Childproofing 64423 -Children 39426 -Children's 40538 -Childrens 48454 -Childrenswear 64905 -Childress 57609 -Childs 55877 -Childsavers 62469 -Chile 43832 -Chile's 62762 -Chilean 53813 -Chileon 63245 -Chiles 55992 -Chili 50499 -Chili's 60856 -Chilis 64657 -Chill 51321 -Chilled 58919 -Chiller 59164 -Chillers 60492 -Chilli 56452 -Chillicothe 61362 -Chillin 62762 -Chilling 59227 -Chilliwack 59848 -Chillout 58262 -Chills 61152 -Chilly 63077 -Chilo 63601 -Chiltern 58860 -Chilton 58365 -Chim 57046 -Chimaira 62917 -Chime 58979 -Chimera 60670 -Chimeric 63991 -Chimes 57482 -Chimica 58313 -Chimie 61584 -Chiming 59848 -Chimiothérapie 64905 -Chimney 52739 -Chimneys 60078 -Chimp 58065 -Chimpanzee 60856 -Chimps 60580 -Chin 52484 -Chin's 63792 -China 35419 -China's 47150 -Chinameca 62917 -Chinanteco 64905 -Chinato 60762 -Chinatown 52913 -Chinchilla 59292 -Chine 64905 -Chinese 37770 -ChinesePod 64905 -Ching 55474 -Chingford 61818 -Chingy 61584 -Chinmoy 65452 -Chinn 61362 -Chinn's 64201 -Chino 54399 -Chinon 61584 -Chinook 55448 -Chintakayala 63601 -Chintz 62762 -Chios 63991 -Chip 47028 -ChipDocs 65170 -Chipboard 61256 -Chipewyan 65170 -Chipman 65452 -Chipmunk 60492 -Chipmunks 59292 -Chipotle 58860 -Chipped 65170 -Chippendale 60405 -Chippenham 56756 -Chipper 62613 -Chippewa 56140 -Chippewas 64657 -Chipping 57970 -Chips 48985 -Chipset 53226 -Chipsets 61940 -Chiqui 63601 -Chiquita 65170 -Chir 54226 -Chirac 60952 -Chirag 65170 -Chiral 60078 -Chirality 65452 -Chiranjeevi 62331 -Chirk 63991 -Chiron 61818 -Chiropodists 61051 -Chiropractic 48148 -Chiropractor 56080 -Chiropractors 54643 -Chirp 64423 -Chirurgie 59630 -Chis 57609 -Chisago 61940 -Chisel 62762 -Chisels 63991 -Chisholm 57876 -Chisinau 62196 -Chislehurst 63601 -Chiswick 58745 -Chit 54245 -ChitChat 64657 -Chita 65170 -Chitika 61051 -Chitin 62196 -Chitinase 65170 -Chitosan 63077 -Chitose 64423 -Chitra 63601 -Chittagong 60856 -Chittenden 63419 -Chitty 63792 -Chiu 57524 -Chivalry 64657 -Chivas 57440 -Chive 65452 -Chivers 63419 -Chix 61256 -Chk 65452 -Chl 62917 -Chlamydia 54857 -Chlamydomonas 61940 -Chloe 50394 -Chloe's 62331 -Chlorate 62917 -Chlorella 61051 -Chlorhexidine 65452 -Chloride 55178 -Chlorinated 60238 -Chlorine 56021 -Chlorophyll 60856 -Chlorophytum 62917 -Chloroplast 62762 -Chlorpromazine 63792 -Chloé 62917 -Cho 53407 -Cho'gall 59101 -Choa 65170 -Choate 62331 -Chobe 62066 -Chobits 60492 -Choc 60405 -Choco 61584 -Chocobo 60492 -Chocolat 60078 -Chocolate 43294 -Chocolates 51963 -Chocolatier 63077 -Chocolatiers 64657 -Chocorua 62196 -Choctaw 58113 -Choe 64201 -Choffel 64905 -Choi 53865 -Choice 43048 -ChoiceFX 65452 -ChoicePoint 61818 -Choices 47311 -Choir 49770 -Choirs 61584 -Choise 64905 -Choisy 64201 -Choke 56452 -Choker 64201 -Chokers 64657 -Choking 60405 -Chol 64201 -Chole 64201 -Cholera 60321 -Cholesterol 50615 -Choline 62196 -Cholinergic 63419 -Cholinesterase 64657 -Chomp 64201 -Chomsky 59039 -Chon 63601 -Chonda 63601 -Chondathan 62762 -Chondathans 61362 -Chondroitin 59227 -Chong 54857 -Chongqing 56791 -Chonnam 65170 -Choo 57199 -Choon 64423 -Choose 36701 -Chooser 59560 -Chooses 54170 -Choosing 45556 -Chop 52982 -Chopard 59491 -Chophouse 64201 -Chopin 54096 -Chopin's 65170 -Chopped 56652 -Chopper 53301 -Choppers 56293 -Chopping 62469 -Chopra 54601 -Chops 57653 -Chopsticks 62917 -Chor 61472 -Choral 52648 -Chorale 61362 -Chord 52805 -Chordata 62196 -Chordie 64201 -Chords 48938 -Chordstrike 65452 -Choreographer 63991 -Choreography 58523 -Chores 64657 -Chori 63601 -Chorionic 64657 -Chorizo 64201 -Chorley 57160 -Chorleywood 65452 -Chorlton 64657 -Chorney 65170 -Chornobyl 63601 -Choroidal 65170 -Chorus 51140 -Chose 56231 -Chosen 47634 -Chota 63792 -Choteau 64423 -Chou 56687 -Choudhary 61152 -Choudhury 64201 -Choupana 63991 -Chow 52712 -Chow's 63419 -Chowan 60580 -Chowder 57741 -Chowdhury 60238 -Chowhound 54078 -Chowhounding 54969 -Chowk 62762 -Choy 61152 -Chr 59227 -Chresmoda 64657 -Chriqui 62331 -Chris 38701 -Chris's 58523 -Chrisman 65452 -Chrismas 61699 -Chriss 64905 -Chrissie 59101 -Chrissy 56356 -Christ 44311 -Christ's 53501 -Christa 58365 -Christchurch 51492 -Christe 62469 -Christel 63077 -Christelle 64423 -Christen 61152 -Christendom 64657 -Christening 57440 -Christensen 52927 -Christenson 58745 -Christer 61152 -Christi 51541 -Christiaan 65170 -Christian 38838 -Christian's 59630 -Christiana 61362 -Christiane 60856 -Christianity 47533 -Christians 48436 -Christiansburg 64201 -Christiansen 56899 -Christianson 62196 -Christie 50379 -Christie's 58017 -Christies 65452 -Christin 59101 -Christina 45870 -Christina's 60321 -Christine 46099 -Christine's 61256 -Christleton 64201 -Christma 62066 -Christmas 38176 -Christmases 65452 -Christo 62196 -Christof 63419 -Christology 62196 -Christoph 53485 -Christophe 55226 -Christopher 43472 -Christopher's 60952 -ChristopherBollyn 65452 -Christos 59357 -Christus 64423 -Christy 52141 -Chroma 60405 -Chromaggus 59101 -Chromatic 60762 -Chromatin 58262 -Chromatogr 58017 -Chromatographic 60670 -Chromatographie 63245 -Chromatography 53847 -Chrome 46778 -Chromed 64905 -Chromite 61584 -Chromium 56687 -Chromogenic 63601 -Chromosomal 57876 -Chromosome 54969 -Chromosomes 61699 -Chromosorb 63792 -Chron 62762 -Chronic 47160 -ChronicBleaus 64905 -Chronicle 46443 -Chronicle's 63419 -ChronicleLive 64657 -Chronicles 48118 -Chronister 65170 -Chrono 55226 -Chronograph 55474 -Chronological 56080 -Chronologically 56170 -Chronology 56972 -Chronos 61256 -Chrous 64905 -Chrysalis 64905 -Chrysanthemum 62613 -Chrysler 45321 -Chrysler's 57358 -Chrysotile 61818 -Chrystal 64905 -Chrétien 64423 -Chto 62331 -Chu 53762 -Chua 58523 -Chuan 59424 -Chuang 60762 -Chub 60321 -Chubb 58632 -Chubbler 63991 -Chubby 56324 -Chuck 45264 -Chuck's 60157 -Chuckles 65170 -Chucks 63245 -Chucky 62196 -Chufa 64657 -Chugh 63991 -Chugoku 64657 -Chui 64423 -Chukar 64905 -Chukka 59491 -Chul 64423 -Chula 54902 -Chulalongkorn 62613 -Chulmleigh 64201 -Chum 62613 -Chumbawamba 64905 -Chump 62469 -Chumphon 64657 -Chun 55323 -Chung 52118 -Chunghwa 63991 -Chunk 59101 -Chunks 62066 -Chunky 56551 -Chupacabra 62613 -Church 38950 -Church's 56827 -Churches 47756 -Churchill 50694 -Churchill's 61699 -Churchtown 65452 -Churchville 64657 -Churn 64657 -Chute 60238 -Chutes 63245 -Chutney 60321 -Chuunin 61472 -Chuvash 64423 -Chwarae 54727 -Chyna 62469 -Chávez 59560 -Château 58262 -Ci 56935 -Cia 63419 -Ciacci 64423 -Cialis 48882 -Cian 64423 -Ciao 47511 -Ciara 53196 -Ciaran 59702 -Ciarán 63601 -Ciba 61051 -Cibola 63792 -Cicada 58688 -Cicadas 65452 -Ciccone 60238 -Cicely 63601 -Cicer 65452 -Cicero 55578 -Cicerone 64201 -Cichlid 63991 -Cichlids 59357 -Ciclo 61362 -Cid 58802 -Cidade 65170 -Cider 56652 -Cie 61584 -Ciel 63792 -Cielito 65170 -Cielo 61256 -Ciencia 59424 -Ciencias 57122 -Cienega 63245 -Científica 59630 -Ciera 61472 -Cierra 63991 -Cigar 53485 -Cigarette 53392 -Cigarettes 54706 -Cigars 54096 -Cigna 62331 -Cilantro 62613 -Cilia 62331 -Cilio 64423 -Cilla 63601 -Cilmi 62762 -Cilostazol 63991 -Cima 65170 -Cimarron 60321 -Cimcon 63245 -Cimento 65170 -Cimetidine 64905 -Cin 64657 -Cinch 59101 -Cincher 63419 -Cincinatti 65170 -Cincinnati 44808 -Cincinnati's 64201 -Cincinnatus 65452 -Cinco 56518 -Cinco's 63077 -Cincom 60952 -Cincy 63419 -Cinder 64201 -Cinderela 65452 -Cinderella 52447 -Cinderella's 64201 -Cindi 60321 -Cindy 47321 -Cindy's 62331 -Cine 55934 -Cinelli 63077 -Cinema 43531 -CinemaNow 64905 -Cinemark 58577 -Cinemas 50299 -Cinematheque 64905 -Cinematic 56356 -Cinematical 51340 -Cinematographer 60670 -Cinematography 58065 -Cinemax 62917 -Cineplex 62331 -Cinergy 63792 -Cineworld 64423 -Cingular 50718 -Cini 63991 -Cink 63601 -Cinnabar 65170 -Cinnaminson 64423 -Cinnamon 52752 -Cinnamond 61152 -Cinque 59491 -Cinryze 63601 -Cinta 63792 -Cintas 62917 -Cintecele 65170 -Cinzia 63991 -Cinéma 65452 -Cipher 60856 -Cipriani 61152 -Cipriano 62613 -Cipro 58417 -Ciprofloxacin 60238 -Cir 54813 -Circ 55299 -Circa 55202 -Circadian 58745 -Circe 65452 -Circle 43638 -Circles 52886 -Circleville 63077 -Circling 65170 -CircuiTree 65170 -Circuit 42988 -Circuit's 61940 -Circuito 64423 -Circuitry 62196 -Circuits 51804 -Circular 48726 -Circulars 55178 -Circulating 56899 -Circulation 49017 -Circulator 64657 -Circulators 64905 -Circulatory 58919 -Circumcision 59491 -Circumference 64657 -Circumferential 64657 -Circumstance 62469 -Circumstances 59164 -Circus 49626 -Cirencester 62917 -Cirillo 64423 -Ciro 64657 -Cirque 53095 -Cirrhosis 58979 -Cirrus 57741 -Cirugía 60856 -Cisco 44140 -Cisco's 58979 -Cisneros 60492 -Cisplatin 63245 -Cisse 64657 -Cissy 65452 -Cistercian 60580 -Cit 62066 -Cita 64423 -Citadel 52872 -Citadines 62917 -Citalopram 59491 -Citar 63077 -Citas 63991 -Citation 37317 -Citations 45281 -Cite 45137 -CiteBase 53934 -CiteGeist 61940 -CiteSeer 57199 -CiteSeerX 57696 -CiteSeerXbeta 59424 -CiteULike 46370 -CiteUlike 46865 -Citebase 64905 -Cited 34989 -Cites 59292 -Citeulike 60000 -Citgo 60952 -Citi 52472 -Citibank 53052 -Citic 63792 -Cities 40307 -Citigate 64905 -Citigroup 52559 -Citigroup's 64423 -Citing 42649 -Citizen 45949 -Citizen's 56200 -CitizenSE 64423 -Citizens 47136 -Citizenship 49529 -Citra 64657 -Citrate 59039 -Citric 61699 -Citrine 59848 -Citrix 52327 -Citroen 52805 -Citron 64423 -Citroën 60238 -Citrus 51387 -Citta 64423 -City 31394 -City's 48721 -CityBeat 62613 -CityGuide 51793 -CityNews 65452 -CitySearch 62066 -CitySquares 56585 -Cityguide 63991 -Cityscape 55711 -Cityscapes 63419 -Citysearch 43142 -Citywide 58262 -Citywire 60238 -Cité 64423 -Ciudad 55604 -Civ 58860 -CiviCRM 60762 -Civic 45833 -CivicPlus 51406 -Civica 64423 -Civics 59424 -Civil 40897 -Civilian 51157 -Civilians 61152 -Civilisation 62613 -Civilization 51511 -Civilizations 56262 -Civilized 64201 -Civitan 64201 -Civitas 65452 -Civitello 62331 -Ciências 63792 -Cj 62331 -Ck 60856 -Cl 48923 -ClCH 65452 -ClO 65170 -Cla 63601 -Clack 63245 -Clackamas 57084 -Clackmannanshire 59848 -Clacton 61818 -Clad 58860 -Claddagh 59424 -Cladding 60492 -Cladistics 63077 -Cladophora 64905 -Claes 60321 -Claiborne 55552 -Claim 45558 -Claimant 55552 -Claimant's 62762 -Claimants 63419 -Claimed 58979 -Claiming 53517 -Claims 43832 -Clair 53470 -Claire 47589 -Claire's 58979 -Clairemont 64657 -Clairol 62917 -Clalit 63991 -Clam 57609 -ClamWin 63991 -Clamaran 65452 -Clambake 65452 -Clamp 55578 -Clamping 61940 -Clamps 55202 -Clams 62331 -Clamshell 61940 -Clan 49113 -ClanBase 65452 -Clancy 55274 -Clancy's 52622 -Clancys 64423 -Clandestine 63245 -Clank 55323 -Clannad 60000 -Clans 54283 -Clanton 64423 -Clap 58470 -Clapham 56140 -Clapp 61699 -Clapping 65170 -Clapsticks 61152 -Clapton 54023 -Clara 48139 -Clare 49458 -Claremont 54439 -Claremore 65452 -Clarence 51814 -Clarendon 54857 -Clarenville 63792 -Claret 58860 -Clarice 62613 -Claridge 63077 -Clarification 55154 -Clarifications 56110 -Clarified 64201 -Clarifier 64905 -Clarifiers 63245 -Clarifies 61051 -Clarify 59848 -Clarifying 60670 -Clarinet 55934 -Clarinex 57122 -Clarington 64201 -Clarins 58313 -Clarion 51340 -Claris 65452 -Clarissa 60000 -Clarita 57970 -Clarithromycin 64423 -Claritin 61362 -Clarity 53779 -Clark 43659 -Clark's 55906 -Clarke 48731 -Clarke's 60321 -Clarks 54041 -Clarksburg 61051 -Clarkson 51211 -Clarkson's 63245 -Clarkston 58688 -Clarksville 57122 -Claro 60762 -Clary 62196 -Clases 62331 -Clash 51406 -Clashes 61699 -Clasp 53729 -Clasps 61584 -Class 37549 -ClassLoader 63792 -ClassOnDemand 65170 -Classe 63077 -Classes 42309 -ClassesScholarshipsFind 65452 -Classic 39806 -ClassicGamer 62917 -ClassicStock 62196 -Classical 42653 -Classically 63792 -Classicals 65170 -Classico 58577 -Classics 44744 -Classifiations 57440 -Classification 44087 -Classifications 54360 -Classified 44755 -Classifieds 38264 -ClassifiedsCar 64657 -Classifier 62917 -Classify 61940 -Classifying 61152 -Classik 65170 -Classique 63792 -Classixx 62917 -Classless 65170 -Classmate 60762 -Classmates 52484 -Classroom 46280 -Classrooms 56972 -Classy 56687 -Clatsop 60670 -Claud 63077 -Claude 50476 -Claudette 61472 -Claudia 50292 -Claudine 60157 -Claudio 52484 -Claudius 61699 -Claus 51340 -Clause 51550 -Clausen 59774 -Clauses 59292 -Clava 65170 -Clave 64201 -Claw 54770 -Claws 60157 -Clawson 61152 -Claxton 59101 -Clay 46587 -Clay's 64905 -Clayfield 64905 -Clayman 65452 -Claymation 64201 -Claymont 64657 -Claymore 59923 -Claypool 58577 -Clays 60670 -Clayton 48933 -Clayton's 63601 -Cle 61152 -Clea 63601 -Clean 43806 -CleanUp 57440 -Cleaned 59227 -Cleaner 47687 -CleanerSeventh 65170 -Cleaners 47915 -Cleaning 43172 -Cleanliness 53196 -Cleanroom 61256 -Cleans 59774 -Cleanse 55037 -Cleanser 56050 -Cleansers 59039 -Cleanses 65452 -Cleansing 53301 -Cleantech 57609 -Cleanup 53630 -Cleanway 64201 -Clear 37761 -ClearAllTabs 63419 -ClearCase 65170 -ClearCollection 64423 -ClearOne 64423 -Clearance 44572 -Clearances 62613 -Clearblue 64657 -Clearcoat 60952 -Cleared 59560 -Clearfield 60492 -Clearing 50815 -Clearinghouse 56170 -Clearkote 64423 -Clearlake 62331 -Clearly 52175 -Clears 59630 -Clearspace 63991 -Clearview 61584 -Clearview's 64657 -Clearwater 51266 -Clearwire 61584 -Cleary 57160 -Cleator 63245 -Cleats 57923 -Cleavage 55877 -Cleave 65452 -Cleaver 61362 -Cleburne 62469 -Cleef 64657 -Cleese 62066 -Cleethorpes 63991 -Clef 60952 -Cleft 59424 -Clegg 59039 -Clejani 62917 -Cleland 61472 -Clem 61256 -Clematis 56140 -Clemenceau 64657 -Clemens 53899 -Clement 54560 -Clement's 64657 -Clemente 56420 -Clementi 61472 -Clementine 60321 -Clements 56791 -Clemmons 65452 -Clemons 60856 -Clemson 51368 -Clemson's 62469 -Cleo 57318 -Cleopatra 54622 -Cleopatra's 62331 -Clerc 64657 -Clergy 56899 -Cleric 60321 -ClericBlackDave 63601 -Clerical 53346 -Clerk 44802 -Clerk's 54023 -Clerkenwell 60580 -Clerks 55060 -Clermont 57524 -Cletus 61152 -Cleve 60580 -Clevedon 63245 -Cleveland 42835 -Cleveland's 62066 -Clever 56050 -Cleverly 65170 -Cleves 63601 -Cleviprex 63601 -Clevo 60492 -Clevver 65170 -Cliath 65170 -Cliche 61584 -Cliches 64657 -Cliché 62196 -Click 30253 -ClickAJob 59101 -ClickBank 63419 -ClickFix 63792 -ClickOnce 60952 -ClickZ 61584 -Clickability 62762 -Clickable 61940 -Clickbank 62196 -Clicked 59848 -Clickee 56452 -Clicker 62917 -Clickindia 64905 -Clicking 48786 -Clicks 53613 -Clicky 61472 -Client 42374 -Client's 58745 -Cliente 64657 -Clientele 62469 -Clients 44463 -Clif 57970 -Cliff 48751 -Cliff's 64905 -Cliffe 64905 -Cliffhanger 63601 -Clifford 50815 -Clifford's 64657 -Cliffortia 63601 -Cliffs 55130 -CliffsNotes 62331 -Cliffside 62469 -Clift 63419 -Clifton 51293 -Cliftonville 63245 -Clik 63601 -ClimaCool 59560 -Climacool 65452 -Climate 43548 -Climatic 60492 -Climatological 62469 -Climatologist 63419 -Climatology 62331 -Climax 58470 -Climb 54041 -Climbathon 63991 -Climbed 64201 -Climber 60157 -Climbers 59164 -Climbing 48766 -Climbs 61699 -Clin 42993 -Clinch 56420 -Clincher 63077 -Cline 56485 -Cling 61699 -Clings 64423 -Clinic 44830 -Clinic's 63245 -Clinica 60670 -Clinical 39800 -Clinically 58745 -Clinicals 62613 -Clinician 60078 -Clinicians 58313 -Clinicopathologic 64905 -Clinics 48296 -Clinique 53470 -Clinoril 61584 -Clint 51312 -Clinton 43286 -Clinton's 52739 -Clintons 59702 -Clintonville 64657 -Clio 56827 -Clioquinol 62066 -Clip 44182 -ClipArt 60856 -Clipart 53988 -Clipboard 37963 -Clipboards 63077 -Clipe 61051 -Clipless 64905 -Clipmarks 59424 -Clipped 64657 -Clipper 53865 -Clippers 49959 -Clipperton 60405 -Clipping 57046 -Clippings 57358 -Clips 44468 -Clipse 63991 -Clique 59101 -Cliquez 60580 -Clit 59702 -Clitheroe 63792 -Clitoral 63077 -Clits 65452 -Clive 51425 -Clix 64905 -Cllr 52198 -Cllrs 62066 -Clo 64201 -Cloak 56110 -Cloakdeath 62762 -Cloaking 61584 -Cloakroom 58919 -Clobberpalooza 64657 -Clock 45549 -Clocking 61152 -Clocks 48381 -Clocktower 63245 -Clockwise 63419 -Clockwork 55992 -Clog 59039 -Clogged 63991 -Clogs 57524 -Cloisonne 61699 -Cloister 63792 -Cloisters 55299 -Clomid 55107 -Clomiphene 64201 -Clonal 61362 -Clonazepam 59292 -Clone 49092 -CloneCD 62917 -CloneDVD 59491 -Cloned 60238 -Clonee 63601 -Cloner 61584 -Clones 55849 -Clonidine 63601 -Cloning 44323 -Clonmel 64657 -Clontarf 61699 -Clooney 54096 -Clooney's 65452 -Clopidogrel 64905 -Clore 65452 -Cloris 58860 -Clorox 60000 -Clos 59039 -Close 35709 -Closed 44193 -Closely 59491 -Closeout 57084 -Closeouts 55178 -Closer 49847 -Closers 63245 -Closes 52096 -Closest 53081 -Closet 50081 -Closets 58262 -Closeup 61051 -Closeups 64423 -Closing 46903 -Closings 53988 -Clostridium 55037 -Closure 53271 -Closures 55849 -Clot 64905 -Cloth 50499 -Clothe 65170 -Clothes 46852 -Clothesbuy 63991 -Clothespin 64905 -Clothiers 62917 -Clothing 38388 -Cloths 58470 -Clots 64201 -Cloud 44666 -Clouded 65452 -Clouds 50670 -Cloudveil 64423 -Cloudy 50350 -Clough 59039 -Clouse 65170 -Clouser 65170 -Clout 55793 -Cloutier 65170 -Clove 62066 -Clover 51396 -Cloverdale 59774 -Cloverfield 57741 -Cloves 63419 -Clovis 57923 -Clow 65170 -Clown 52622 -Clowney 64905 -Clowning 63601 -Clowns 55793 -Cloyd 60952 -Clu 62613 -Club 35790 -Club's 55684 -ClubSmug 60580 -Clubber 65170 -Clubbers 62066 -Clubbing 55821 -Clubcard 62762 -Clube 63245 -Clubhouse 53917 -Clubland 64201 -Clubman 61818 -Clubplanet 63601 -Clubs 41735 -Clubseventeen 63245 -Clubvibes 61051 -Clubwear 63245 -Clue 57741 -Clueless 58919 -Clues 57831 -Cluetrain 59039 -Cluj 60321 -Clumber 65170 -Clumsy 63601 -Clunkillymore 63245 -Cluny 62762 -Cluster 39360 -Clustered 58919 -Clustering 54727 -Clusters 42580 -Clutch 50856 -Clutches 57318 -Clutter 56170 -Clwyd 60238 -Clwydian 62066 -Clyde 50873 -Clydesdale 59491 -Clymer 61152 -Clyne 65452 -Clyro 65452 -Clément 63077 -Cm 56585 -CmapServer 59923 -CmapTools 59923 -Cmaps 59923 -Cmax 62613 -CmdrObot 65452 -Cmts 62469 -Cn 59630 -Cnc 61699 -Cnet 65452 -Cnetnews 63245 -Cnr 58017 -Cntr 57399 -Cnty 64657 -Co 42711 -Co's 61051 -CoA 54992 -CoB 64657 -CoBlitz 56687 -CoCaLo 64657 -CoCo 61362 -CoCr 63077 -CoD 61362 -CoH 59491 -CoM 62196 -CoO 64201 -CoP 65452 -CoPilot 63419 -CoQ 63419 -CoS 63419 -CoUNCIL 62469 -CoV 64657 -CoWare 64905 -Coach 44451 -Coach's 58417 -Coached 65452 -Coachella 57440 -Coaches 49572 -Coaching 47228 -Coachman 64905 -Coachmen 60856 -Coachworks 64905 -Coagulation 60157 -Coakley 63991 -Coal 48496 -Coalfield 60078 -Coalition 47799 -Coalition's 63991 -Coalitions 65170 -Coalville 62762 -Coarse 57160 -Coast 40278 -Coast's 63991 -Coastal 46304 -Coaster 51931 -Coasters 56972 -Coastguard 60952 -Coasting 62613 -Coastline 59630 -Coasts 61940 -Coat 46893 -Coatbridge 63792 -Coated 53882 -Coates 56231 -Coatesville 62917 -Coating 52175 -Coatings 52375 -Coats 50615 -Coauthor 58802 -Coax 57358 -Coaxial 56972 -Cob 60238 -Cobain 58919 -Cobalt 51856 -Cobar 65170 -Cobb 51996 -Cobble 59848 -Cobbler 60952 -Cobblers 62762 -Cobblestone 60405 -Cobbs 61051 -Cobden 64657 -Coben 63991 -Cobh 62613 -Cobham 63601 -Cobian 63245 -Cobo 63077 -Cobol 61818 -Cobourg 60762 -Cobra 48801 -Cobras 62917 -Coburg 61472 -Coburn 59630 -Coby 56420 -Coca 53565 -Cocaine 53712 -Cocalo 63245 -Cochin 53796 -Cochise 58919 -Cochlear 59039 -Cochran 55552 -Cochrane 53286 -Cociendo 64201 -Cocina 60238 -Cock 49789 -Cockatiel 63601 -Cockatiels 63245 -Cockatoo 59357 -Cockayne 62613 -Cockburn 59039 -Cocker 54078 -Cockermouth 59292 -Cockers 65170 -Cockeysville 64657 -Cockle 62917 -Cockpit 57046 -Cockrell 64657 -Cockroaches 60856 -Cocks 53830 -Cocktail 48944 -Cocktails 51122 -Cocky 59101 -Coco 52085 -Coco's 61940 -Cocoa 50545 -Coconino 63991 -Coconut 49919 -Cocoon 58262 -Cocos 49535 -Cocteau 57831 -Cod 49584 -Coda 58523 -Codd 63077 -Coddington 64423 -Code 36755 -CodeBank 62613 -CodeBreakers 63991 -CodeFile 64423 -CodeGuru 59702 -CodePersonalize 63601 -CodePlex 61699 -CodeProject 65170 -CodeWarrior 62331 -Codebreaker 61152 -Codec 54114 -Codecs 56687 -Coded 57785 -Codehaus 59164 -Codeine 57970 -Codejock 61699 -Codemasters 58802 -Codename 63601 -Codependence 60856 -Coder 55084 -Coders 60762 -Codes 41712 -Codex 56485 -Codigo 62613 -Coding 48256 -Codon 64201 -Codsall 63419 -Cody 49608 -Cody's 62762 -Coe 56935 -Coed 57566 -Coeds 61584 -Coefficient 56388 -Coefficients 58523 -Coelho 60856 -Coeliac 61051 -Coen 57653 -Coenzyme 59923 -Coercion 63991 -Coetzee 65170 -Coeur 54170 -Coexistence 60000 -CofE 55500 -Cofactor 64201 -Coffee 41745 -Coffee's 57160 -CoffeeCup 61584 -Coffeehouse 56388 -Coffeehouses 64201 -Coffeemaker 62066 -Coffeemakers 63077 -Coffees 62613 -Coffey 56721 -Coffin 57238 -Coffins 63792 -Coffman 58212 -Coffman's 64657 -Coffs 58212 -Cog 59774 -Cogan 62469 -Cogeneration 61584 -Cogent 62917 -Coghlan 63419 -Cogito 64423 -Cogn 63991 -Cognac 58802 -Cognigens 62331 -Cognition 56899 -Cognitive 49274 -Cognizant 63419 -Cognos 58113 -Cohabitation 63792 -Cohan 63419 -Cohasset 59630 -Coheed 58470 -Cohen 47972 -Cohen's 59774 -Coherence 57653 -Coherent 57785 -Cohesion 60238 -Cohn 56420 -Coho 62196 -Cohomology 61256 -Cohort 56687 -Cohosh 64905 -Coie 64657 -Coil 52339 -Coiled 63792 -Coilfang 57876 -Coiling 64905 -Coils 59491 -Coimbatore 53662 -Coimbra 64423 -Coin 48771 -Coincidence 63419 -Coins 47741 -Coir 61152 -Coit 64905 -Cojimar 60670 -Coke 51741 -Coker 56140 -Cokesbury 63419 -Cokie 64657 -Cokin 63991 -Coking 65452 -Col 53517 -Cola 52927 -Colac 62917 -Colada 61152 -Colamco 64905 -Colangelo 65452 -Colbert 52062 -Colbert's 64657 -Colbie 56756 -Colborne 57566 -Colburn 61818 -Colby 53882 -Colca 60856 -Colchester 52899 -Colchicine 63245 -Cold 42982 -ColdFusion 51835 -ColdGear 61362 -Coldcut 63245 -Colder 63077 -Coldest 60238 -Coldfield 59630 -Coldfusion 58979 -Coldharbour 63991 -Coldplay 50026 -Coldplay's 65170 -Colds 59164 -Coldsnap 63991 -Coldstream 63419 -Coldwater 58577 -Coldwell 52423 -Cole 46503 -Cole's 59923 -Coleccion 65452 -Colección 64657 -Coleco 64905 -Colecovision 64201 -Coleen 63245 -Coleg 64657 -Colegio 59848 -Colegiul 64201 -Coleman 48178 -Coleman's 60762 -Coleoptera 64905 -Coleraine 60078 -Coleridge 61256 -Coles 56021 -Coleshill 63077 -Coleslaw 63991 -Colette 57653 -Coleus 63419 -Coley 62762 -Colfax 58979 -Colfer 63991 -Colgan 62613 -Colgate 56687 -Coli 63991 -Colibri 62469 -Colic 62066 -Coliform 63601 -Coliforms 63792 -Colima 62469 -Colin 45369 -Colin's 64657 -Colina 65452 -Colinas 62917 -Colindale 64423 -Coliseum 54380 -Colitis 59560 -Coll 49999 -Collab 63419 -CollabNet 61152 -Collaborate 57160 -Collaborates 65452 -Collaborating 58113 -Collaboration 47346 -Collaborations 58212 -Collaborative 47559 -Collaborators 57831 -Collage 54946 -Collagen 54479 -Collages 65170 -Collapse 45746 -CollapseAllSections 62613 -Collapsed 61152 -Collapses 64657 -Collapsible 59630 -Collapsing 63601 -Collar 51406 -Collard 59702 -Collards 64657 -Collared 62469 -Collars 54133 -Collated 64201 -Collateral 55398 -Colle 60157 -Colleague 53917 -Colleagues 58860 -Collect 51899 -Collectable 60321 -Collectables 51670 -Collected 51434 -Collectible 51899 -Collectibles 45360 -Collecting 51248 -Collection 37231 -Collections 38027 -Collective 50006 -Collective's 64905 -Collectively 63245 -Collector 49913 -Collector's 53361 -Collectors 49541 -Collects 61362 -Colleen 50164 -ColleenM 64201 -College 34049 -College's 55423 -CollegeHumor 50670 -Collegeboxes 65452 -Colleges 44766 -Collegeville 64201 -Collegian 60580 -Collegiate 49291 -Collegium 61699 -Collet 63419 -Colleton 63792 -Collett 64905 -Collette 59491 -Colley 63077 -Colleyville 59630 -Collezioni 64423 -Collide 55631 -Collider 57440 -Colliders 65452 -Collie 54479 -Collier 53779 -Colliers 58523 -Collierville 64201 -Colliery 63991 -Collies 62917 -Colligo 65170 -Collin 55299 -Collinge 65170 -Collings 64423 -Collingswood 62762 -Collingwood 54581 -Collins 45298 -Collins's 61699 -Collinson 65452 -Collinsville 59702 -Collinwood 64905 -Collis 64423 -Collision 51521 -Collisions 59702 -Collison 63419 -Collocation 64423 -Colloid 58979 -Colloidal 58802 -Colloids 61472 -Colloque 65452 -Colloquia 55604 -Colloquium 56200 -Collum 64657 -Collymore 64905 -Colm 60238 -Colma 64423 -Colman 60762 -Colmar 64423 -Colmes 58523 -Colnago 63991 -Colne 57122 -Colo 60952 -Colocation 59227 -Cologne 51580 -Colognes 62331 -Coloma 63991 -Colombari 65452 -Colombe 64201 -Colombia 44413 -Colombia's 62613 -Colombian 52152 -Colombiana 64657 -Colombians 65452 -Colombo 55578 -Colon 49946 -Colonel 44787 -Colonels 62196 -Colones 63792 -Colonia 61152 -Colonial 47791 -Colonialism 62469 -Colonials 64423 -Colonic 58262 -Colonie 63601 -Colonies 56420 -Colonist 56756 -Colonization 57046 -Colonna 63792 -Colonnade 60952 -Colonoscopy 63991 -Colony 51877 -Colophon 61256 -Color 40059 -ColorEdge 63792 -ColorObject 54341 -ColorPicker 64905 -Colorado 39672 -Colorado's 55348 -Coloration 62613 -Colorblock 64423 -Colorect 63419 -Colorectal 55037 -Colored 50409 -Colorful 53485 -Coloriage 65452 -Colorimetric 63991 -Coloring 52387 -Colorless 62917 -Colors 45867 -Colosimo 64201 -Colossal 59164 -Colosseum 58262 -Colossians 61051 -Colossus 57653 -Colostrum 65170 -Colour 46258 -Coloured 55906 -Colourful 60157 -Colouring 59774 -Colours 52534 -Colposcopy 65452 -Colquhoun 65170 -Colquitt 63991 -Colson 61472 -Colston 61818 -Colstrip 61362 -Colt 52496 -Colter 64657 -Colton 57696 -Coltrane 56585 -Coltri 63601 -Colts 50379 -Coluber 65170 -Columba 64201 -ColumbaOphidia 62917 -Columban 65452 -Columbia 40367 -Columbia's 59491 -Columbian 57696 -Columbiana 62917 -Columbine 58688 -Columbo 64657 -Columbus 44390 -Column 47231 -ColumnCount 60580 -ColumnNames 62917 -ColumnValues 61940 -Columnist 53988 -Columnists 44596 -Columns 45332 -Colusa 59101 -Colville 57876 -Colvin 58212 -Colwell 62196 -Colwyn 59491 -Colyton 65170 -Colón 64201 -Com 48887 -ComScore 64423 -Coma 58017 -Comair 64905 -Comal 62066 -Comaltepec 64905 -Comanche 58113 -Comatose 65170 -Comb 57084 -Combat 46123 -Combatants 64423 -Combating 59039 -Combe 61256 -Combed 65170 -Combi 56551 -Combination 50270 -Combinational 64657 -Combinations 56021 -Combinatorial 56356 -Combinatorics 59227 -Combine 51521 -Combined 47721 -Combines 55348 -Combining 51752 -Combo 47041 -ComboBox 63077 -Combos 55014 -Combretum 61051 -Combs 54226 -Combustible 59774 -Combustion 54499 -Combustor 64657 -Comcast 50060 -Comcast's 64657 -Comdev 63601 -Comdial 64905 -Come 41824 -Comeau 61818 -Comeback 56080 -Comebacks 52411 -Comedian 55500 -Comedians 56756 -Comedic 62066 -Comedies 55178 -Comedy 40407 -ComedySportz 57785 -Comenius 64423 -Comentario 64657 -Comentarios 58017 -Comer 59039 -Comercial 59101 -Comercio 63245 -Comerford 61584 -Comerica 63792 -Comes 46781 -Comet 52118 -Cometh 63077 -Cometic 64657 -Comets 58365 -Comfort 45746 -Comfortable 52661 -Comfortably 61818 -Comforter 57696 -Comforters 57609 -Comforts 58688 -Comfrey 64657 -Comfy 58688 -Comfyde 65452 -Comhairle 65452 -Comic 45929 -Comical 59848 -Comicon 63601 -Comics 43379 -Comin 62917 -Cominco 64905 -Coming 42534 -Comisión 63792 -Comiskey 64905 -Comission 61818 -Comité 61699 -Comix 60762 -Comm 48697 -CommCat 65170 -Comma 63077 -Commack 62613 -Command 44937 -CommandCentral 58113 -Commandant 61362 -Commander 44827 -Commander's 63792 -CommanderShiro 65452 -Commanders 59848 -Commanding 59424 -Commandment 60762 -Commandments 54170 -Commando 53679 -Commandos 62613 -Commands 54321 -Commas 64201 -Comme 57970 -Commelina 63601 -Commemorating 65170 -Commemoration 62196 -Commemorative 55821 -Commemoratives 64905 -Commence 61152 -Commenced 60762 -Commencement 54946 -Commences 60580 -Commencing 61256 -Commend 61362 -Commendation 63077 -Commendatore 64201 -Commended 61818 -Commensurate 65452 -Comment 33993 -CommentComments 55299 -CommentLuv 64905 -CommentTimeJan 64423 -CommentTimeJul 61699 -CommentVote 65452 -Commentaries 53934 -Commentary 41163 -Commentator 62762 -Commentators 59774 -Commented 48609 -Commenter 58802 -Commenters 60078 -Commenting 53392 -Comments 32397 -CommentsChronological 63419 -Commerce 43104 -Commerce's 64423 -CommerceBankOnline 62196 -Commercebank 65452 -Commercial 38840 -Commercialisation 61472 -Commercialization 59039 -Commercially 60078 -Commercials 49006 -Commerical 60000 -Commerzbank 65170 -Commie 64905 -Comming 64423 -Commiphora 64423 -Commish 64657 -Commision 60321 -Commissary 62762 -Commission 38740 -Commission's 50832 -Commissioned 57318 -Commissioner 44179 -Commissioner's 54380 -Commissioners 48013 -Commissioning 53581 -Commissions 49847 -Commit 52327 -Commitee 63077 -Commitment 50094 -Commitments 55154 -Commits 54560 -Committ 65170 -Committe 63991 -Committed 55963 -Committee 38123 -Committee's 55250 -Committees 46903 -Committing 62917 -Commodities 50492 -Commodity 51502 -Commodore 50164 -Commodore's 65452 -Commodores 60762 -Common 41486 -CommonSense 61818 -CommonUserName 64423 -Commonly 55202 -Commons 38055 -CommonsHelper 62917 -Commonwealth 45924 -Commonwealth's 61051 -Commotion 64905 -Comms 58919 -Commun 54283 -Communal 57741 -Communauté 62762 -Commune 62762 -Communi 65452 -CommuniTee 61051 -Communic 63077 -Communicable 57318 -Communicate 53038 -Communicated 59039 -Communicates 64201 -Communicating 56110 -Communication 40493 -Communications 39575 -CommunicationsTourismPhoto 65170 -Communicative 61472 -Communicator 55107 -Communicators 60492 -Communion 53485 -Communique 62196 -Communiqué 62331 -Communiqués 65170 -Communism 57970 -Communist 50484 -Communists 58523 -Communities 41891 -Community 31082 -Community's 60238 -CommunityGuide 61940 -CommunityJobsHelp 62196 -CommunitySEO 64201 -Commutative 63601 -Commute 57566 -Commuter 55423 -Commuters 62917 -Commuting 53988 -Como 51312 -Comodo 53762 -Comorbidity 63991 -Comoros 47381 -Comox 63419 -Comp 47968 -CompAlube 63601 -CompTIA 58860 -CompUSA 58632 -Compact 44321 -CompactFlash 57084 -CompactPCI 65170 -CompactWithOptions 64423 -Compaction 59630 -Compactor 61256 -Compactors 59923 -Compacts 63792 -Compagnie 62469 -Compal 60762 -Companhia 64657 -Companies 39041 -Companion 50522 -Companions 58017 -Companionship 64423 -Company 33206 -Company's 47328 -Compaq 48178 -Comparable 55684 -Comparables 61362 -Comparative 47238 -Comparator 60157 -Comparators 63419 -Compare 37128 -Compared 49229 -Comparer 65452 -Compares 60000 -Comparing 50439 -Comparison 43160 -Comparisons 49517 -Comparten 65452 -Compartir 63419 -Compartment 55992 -Compartments 64905 -Compass 49476 -Compasses 60321 -Compassion 55299 -Compassionate 59491 -Compatability 61818 -Compatibility 48791 -Compatible 48030 -Compelling 62066 -Compendium 57238 -Compensated 63245 -Compensating 64905 -Compensation 45583 -Compensatory 62331 -Compete 54096 -Competed 63792 -Competence 56262 -Competences 64905 -Competencies 56585 -Competency 54207 -Competent 57785 -Competing 54321 -Competition 44630 -Competitions 45804 -Competitive 47442 -Competitiveness 57084 -Competitor 56110 -Competitor's 64423 -Competitors 52339 -Compilation 48629 -Compilations 53746 -Compile 58470 -Compiled 54479 -Compiler 55154 -Compiler's 63077 -Compilers 59101 -Compiling 55906 -Comping 62613 -Compiz 60580 -Complain 51620 -Complainant 56687 -Complainant's 63077 -Complainants 61818 -Complaining 62613 -Complaint 48938 -Complaints 46778 -Compleat 61584 -Complejo 63245 -Complement 57399 -Complementary 52805 -Complementation 63991 -Complements 59923 -Completa 64905 -Complete 37676 -Completed 47187 -Completely 52130 -Completeness 59923 -Completers 58262 -Completes 52845 -Completing 56140 -Completion 50256 -Complex 46015 -ComplexPolynomial 65452 -Complexe 64201 -Complexes 53533 -Complexion 60321 -Complexity 53646 -Compliance 43902 -Compliant 52818 -Complicated 54560 -Complicating 65170 -Complication 61584 -Complications 53646 -Complies 62762 -Compliment 53241 -Complimentary 51312 -Compliments 54114 -Complore 51482 -Complutense 64423 -Comply 58979 -Complying 62066 -Component 46480 -ComponentArtSCStamp 54170 -ComponentOne 60492 -ComponentSource 65170 -Componenten 60580 -Componenti 62469 -Components 43012 -ComponentsFeaturesSupportLogisticsEmploymentContact 64657 -Comportement 63792 -Compose 56518 -Composed 55684 -Composer 50033 -Composers 54321 -Composing 60321 -Composit 64423 -Composite 48928 -Composites 55226 -Compositing 63419 -Composition 49371 -Compositional 63601 -Compositions 58860 -Compost 55274 -Compostela 61256 -Composting 56518 -Composé 57160 -Compound 34713 -Compounding 57653 -Compounds 52233 -Compra 63792 -Comprar 58417 -Compras 62917 -Comprehension 57970 -Comprehensive 45501 -Compress 60856 -Compressed 54792 -Compressible 65170 -Compression 49966 -Compressive 61699 -Compressor 52496 -Compressors 54133 -Comprised 63077 -Comprises 63245 -Comprising 61818 -Compromise 56972 -Comps 58577 -Compson 62196 -Comptech 63077 -Comptia 64657 -Compton 52387 -Compton's 61472 -Comptroller 51293 -Comptroller's 60762 -Compu 63991 -CompuServe 64905 -CompuVest 64657 -Compucessory 64423 -Compuesto 59227 -Compulife 62762 -Compulsive 57238 -Compulsory 56972 -Comput 57831 -Computability 64657 -Computable 64201 -Computation 51620 -Computational 47626 -Computations 62066 -Compute 57122 -Computed 54924 -Computer 35885 -Computer's 63792 -ComputerWorld 65170 -Computergram 65170 -Computerisation 64657 -Computerised 62613 -Computerized 55178 -Computers 38453 -Computerworld 53847 -Computes 65452 -Computex 60856 -Computing 41863 -Compuvest 63077 -Compuware 62469 -Comrade 55250 -Comrades 63991 -Comsat 64423 -Comstock 54226 -Comte 62066 -Comtech 64657 -Comtex 65452 -Comune 63077 -Comunicación 64657 -Comunicação 64201 -Comunidad 55934 -Comunidade 65452 -Comverse 63792 -Con 49017 -ConA 62917 -ConAgra 60856 -Conair 59101 -Conan 50285 -Conant 63077 -Conaway 62331 -Conaxsat 64201 -Conboy 64657 -Conc 61818 -Concacaf 63991 -Concanavalin 65170 -Concave 61256 -Conceal 65452 -Concealed 58417 -Concealer 58365 -Concealers 65452 -Concealment 63601 -Concedes 52899 -Conceited 63419 -Conceive 56080 -Conceived 62917 -Concentra 60238 -Concentrate 54813 -Concentrated 57609 -Concentrates 63077 -Concentrating 63792 -Concentration 51406 -Concentrations 54399 -Concentrator 61362 -Concentrators 63077 -Concentric 62917 -Concentricity 62613 -Concepcion 61940 -Concepción 65452 -Concept 46194 -Conception 55793 -Conceptions 63245 -Conceptos 64657 -Concepts 47445 -Conceptual 53124 -Concer 60000 -Concern 52130 -Concerned 53796 -Concerning 51899 -Concerns 50394 -Concert 43373 -Concerted 63792 -Concertgebouw 65452 -Concertina 63792 -Concerto 51846 -Concertos 59227 -Concerts 47589 -Concession 55934 -Concessionary 64905 -Concessions 54341 -Concetta 63601 -Conch 61472 -Concha 62762 -Conchita 63991 -Concho 64657 -Conchords 59164 -Concierge 52559 -Concierto 60580 -Conciliation 60078 -Concise 54499 -Conclave 61818 -Concluded 64905 -Concludes 60762 -Concluding 57696 -Conclusion 48399 -Conclusions 48872 -Concomitant 61584 -Concord 49919 -Concordance 55578 -Concorde 52725 -Concordia 52327 -Concorso 63991 -Concours 57160 -Concourse 59164 -Concrete 46557 -Concurrency 59039 -Concurrent 53124 -Concurrently 65170 -Concurso 63601 -Concursuri 62469 -Concussion 59630 -Cond 62196 -Condado 63792 -Conde 54283 -Condemnation 61818 -Condemned 59164 -Condemns 61051 -Condens 62917 -Condensate 63077 -Condensation 59164 -Condensed 52074 -Condenser 56231 -Condensers 64905 -Condensing 61362 -Condesa 59702 -Condi 60321 -Condiciones 62762 -Condiment 62917 -Condiments 56972 -Condit 63245 -Condition 44761 -Conditional 52521 -Conditionally 64201 -Conditioned 58365 -Conditioner 52686 -Conditioners 52858 -Conditioning 47177 -Conditions 35773 -ConditionsPrivacy 62331 -Condo 47935 -Condo's 60321 -Condoleeza 64657 -Condoleezza 56935 -Condolences 59702 -Condom 57741 -Condominium 52007 -Condominiums 54264 -Condoms 55178 -Condon 58212 -Condor 55963 -Condos 48629 -Condotel 65170 -Conds 62762 -Conduct 47493 -Conducta 63601 -Conductance 63419 -Conducted 56485 -Conducting 54992 -Conduction 60762 -Conductive 61256 -Conductivity 57399 -Conductor 53301 -Conductors 59424 -Conducts 60321 -Conduit 58262 -Conduits 64423 -Condé 47741 -CondéNet 60405 -Cone 52521 -Conejo 60762 -Conejos 65170 -Conergy 63601 -Cones 59101 -Conestoga 63991 -Conexant 62066 -Coney 54946 -Conf 55398 -Confection 64905 -Confectionary 62196 -Confectionery 55766 -Confections 63991 -Confederacy 60492 -Confederate 52363 -Confederates 63419 -Confederation 55250 -Confederations 64657 -Confer 64423 -Conference 37618 -Conferences 44246 -Conferencing 52739 -Confers 62469 -Confess 65452 -Confesses 64657 -Confession 54078 -Confessional 56827 -Confessions 51202 -Confetti 58860 -Confidence 50446 -Confident 58065 -Confidential 49119 -Confidentiality 54749 -Config 57318 -Configurable 58919 -Configuration 45638 -Configurations 57278 -Configurator 58802 -Configurators 62762 -Configure 52622 -Configured 63792 -Configures 63077 -Configuring 51087 -Confined 59292 -Confinement 62917 -Confirm 49834 -Confirmation 50823 -Confirmed 51996 -Confirming 61584 -Confirms 56791 -Confiscation 65452 -Conflict 47839 -Conflicting 60762 -Conflicts 53952 -Confluence 51293 -Confluent 64657 -Confocal 59292 -Conform 63245 -Conformal 63077 -Conformance 60405 -Conformation 60078 -Conformational 58860 -Conformed 63419 -Conforming 64201 -Conformity 58979 -Conforms 62917 -Confront 63792 -Confrontation 55014 -Confronted 64905 -Confronting 60238 -Confronts 63792 -Confucian 62613 -Confucianism 65170 -Confucious 64423 -Confucius 60405 -Confuse 63419 -Confused 54601 -Confusing 61152 -Confusion 54813 -Conférence 62613 -Cong 60157 -Conga 62917 -Congeniality 63419 -Congenital 52661 -Congest 63601 -Congestion 54749 -Congestive 55821 -Congleton 62613 -Conglomerate 63245 -Conglomerates 65170 -Congo 45404 -Congo's 62196 -Congolese 61472 -Congrats 52303 -Congratulates 65452 -Congratulating 62066 -Congratulation 60762 -Congratulations 49060 -Congregation 56518 -Congregational 55906 -Congregations 61256 -Congres 65452 -Congreso 64201 -Congress 41964 -Congress's 63245 -Congresses 61152 -Congressional 47919 -Congressman 53517 -Congressmen 61584 -Congresswoman 59630 -Congrès 56324 -Conia 60856 -Conical 62066 -Conifer 60856 -Coniferous 65170 -Conifers 64657 -Coniston 60952 -Conjecture 62066 -Conjugate 58365 -Conjugated 59702 -Conjugates 62613 -Conjugation 58802 -Conjunction 62066 -Conjunctivitis 61818 -Conjunto 64905 -Conjure 65170 -Conjures 60492 -Conklin 59702 -Conley 56293 -Conlin 62613 -Conlon 62066 -Conn 57785 -Connacht 62196 -Connah's 61699 -Connaught 58632 -Connaughton 65170 -Conneaut 63245 -Connect 43672 -Connected 49720 -Connecticut 41816 -Connecticut's 60856 -Connecting 48756 -Connectingindia 65452 -Connection 44244 -Connections 46027 -Connective 61152 -Connectivity 49371 -Connector 49336 -Connectors 47947 -Connects 55793 -Connell 57785 -Connelly 55934 -Connemara 62196 -Conner 55474 -Connerly 64905 -Conners 63991 -Connery 59560 -Connex 64423 -Connexion 60405 -Connexions 56756 -Connick 61818 -Connie 50702 -Connie's 64423 -ConnieK 60238 -Connoisseur 59101 -Connoisseurs 64423 -Connolly 54302 -Connor 50890 -Connor's 64905 -Connors 58688 -Connotea 43957 -Conoco 61152 -ConocoPhillips 59774 -Conophytum 65452 -Conor 55274 -Conover 58979 -Conquer 52007 -Conquered 63419 -Conquering 61051 -Conqueror 59702 -Conquerors 61940 -Conquers 63601 -Conquest 54459 -Conquistador 63792 -Conrad 48653 -Conrad's 60580 -Conrado 61362 -Conrail 65452 -Conran 61699 -Conroe 60580 -Conroy 56080 -Cons 52210 -Conscience 59560 -Conscientious 62196 -Conscious 55373 -Consciousness 54706 -Consecutive 56485 -Conseil 60078 -Conseils 64905 -Consejo 60670 -ConsenSys 63245 -Consensus 51953 -Consent 50662 -Consents 58688 -Consequence 61362 -Consequences 53662 -Consequently 56231 -Conservancy 54041 -Conservancy's 65170 -Conservation 43821 -Conservationists 64423 -Conservatism 60405 -Conservative 47964 -Conservatives 52559 -Conservatoire 60321 -Conservatories 58979 -Conservatory 54245 -Conserve 59923 -Conserved 42714 -Conserving 61152 -Consett 63792 -Conshohocken 63991 -Consider 45994 -Considerable 56518 -Considerar 63991 -Consideration 51690 -Considerations 51293 -Considered 53124 -Considering 49330 -Considers 57785 -Considine 64657 -Consignment 55500 -Consignments 63245 -Consist 64905 -Consistency 56231 -Consistent 52940 -Consistently 59039 -Consisting 61472 -Consists 62762 -Consolation 62762 -Console 46089 -Consoles 47768 -Consolidate 57399 -Consolidated 50507 -Consolidating 61472 -Consolidation 45671 -Consolidator 64905 -Consonant 65452 -Consort 58632 -Consortia 59923 -Consortium 49880 -Conspicuous 64657 -Conspiracy 51492 -Const 56721 -Constable 55154 -Constables 60670 -Constabulary 58313 -Constance 54519 -Constant 50150 -Constanta 64657 -Constante 63792 -Constantia 62469 -Constantin 59227 -Constantine 55398 -Constantine's 65452 -Constantineau 61699 -Constantino 64423 -Constantinople 59292 -Constantinos 63792 -Constantinou 59164 -Constantly 59923 -Constants 58212 -Constellation 56420 -Constellations 62196 -Constipation 55963 -Constituencies 63077 -Constituency 59227 -Constituent 59923 -Constituents 59923 -Constitutes 65170 -Constitution 46194 -Constitution's 64423 -Constitutional 50136 -Constitutionality 63601 -Constitutions 58523 -Constitutive 60952 -Constr 65452 -Constrained 59039 -Constraint 56231 -Constraints 54133 -Construct 54419 -Constructed 54540 -Constructing 56021 -Construction 38843 -Constructions 59357 -Constructive 57278 -Constructivism 65452 -Constructivist 63601 -Constructor 54133 -Constructors 60580 -Constructs 58745 -Consuelo 65170 -Consul 57831 -Consular 53917 -Consulate 53038 -Consulates 56827 -Consult 51078 -Consulta 64657 -Consultancies 62331 -Consultancy 49070 -Consultant 44241 -Consultant's 61051 -Consultants 45010 -Consultation 45645 -Consultations 51434 -Consultative 55963 -Consulted 65170 -Consultee 65452 -Consultees 63419 -Consulting 43032 -Consults 65170 -Consumable 60321 -Consumables 52256 -Consume 61584 -Consumed 62917 -Consumer 39257 -Consumer's 61256 -Consumerism 62066 -Consumerist 58365 -ConsumeristFlickr 63245 -ConsumeristScams 65452 -Consumers 47964 -Consumes 65170 -Consuming 60952 -Consummation 65452 -Consumption 50560 -Consus 64423 -Cont 61051 -Cont'd 64657 -Conta 65170 -Contact 27967 -Contact's 63419 -ContactUs 63245 -Contactar 65170 -Contacte 64905 -Contacting 46660 -Contactless 60238 -Contacto 59491 -Contactos 65170 -Contacts 38233 -ContactsBlock 60580 -Contador 63245 -Contagion 62196 -Contagious 61051 -Contain 58919 -Contained 56485 -Container 49388 -Containers 50865 -Containing 54114 -Containment 57358 -Contains 49190 -Contam 63601 -Contaminación 65452 -Contaminant 58065 -Contaminants 59702 -Contaminated 56485 -Contamination 56551 -Contant 64905 -Contato 65452 -Contatti 63792 -Contax 63601 -Conte 56293 -Contec 62066 -Contech 62613 -Contemplating 63245 -Contemplation 62613 -Contemplative 64905 -Contempo 65452 -Contemporaries 65170 -Contemporary 45188 -Contempt 59101 -Contender 57482 -Contenders 58802 -Contenido 64905 -Content 33471 -ContentAgenda 58470 -ContentAsText 65452 -ContentBecome 55934 -ContentLink 63077 -ContentLoadingObserver 64201 -ContentNext 62917 -ContentSubType 65452 -ContentThanks 65170 -ContentType 62066 -Contented 64423 -Contention 63991 -Contentions 64905 -Contentment 65170 -Contents 37281 -Contessa 55578 -Contest 42141 -Contestant 60670 -Contestants 57653 -Contested 61699 -Contesting 64657 -Contests 43601 -Context 48148 -Contexts 60405 -Contextual 55631 -Contextually 62469 -Conti 57399 -Contig 63419 -Contigo 64905 -Contiguous 60952 -Contiki 65452 -Contin 64657 -Continence 63601 -Continent 55107 -Continental 44875 -Continental's 64201 -Continents 55711 -Contingencies 61472 -Contingency 56200 -Contingent 58417 -Continual 62613 -Continually 64657 -Continuation 56652 -Continue 44140 -Continued 47464 -Continues 50923 -Continuing 47464 -Continuity 51670 -Continuous 47748 -Continuously 58313 -Continuum 56200 -Contour 54151 -ContourCube 65170 -Contoured 62196 -Contouring 61152 -Contours 58979 -Contra 52886 -Contraband 64201 -Contraception 56618 -Contraceptive 57876 -Contraceptives 61940 -Contract 41362 -Contracted 60952 -Contractile 63419 -Contracting 49517 -Contraction 59848 -Contractions 63245 -Contractor 46226 -Contractor's 59560 -Contractors 43487 -Contracts 45777 -Contractual 60000 -Contracture 65452 -Contradiction 64657 -Contradictions 56170 -Contraindications 59630 -Contralateral 64201 -Contraption 62469 -Contrarian 63991 -Contrary 53813 -Contrast 50439 -Contrasting 60492 -Contrasts 64905 -Contreras 59039 -Contribute 43944 -Contributed 53109 -Contributes 60762 -Contributing 48716 -Contribution 48109 -Contributions 46998 -Contributor 47768 -Contributor's 65452 -Contributors 46979 -Control 36304 -ControlScan 59424 -Controle 64905 -Controllable 65170 -Controlled 49113 -Controller 44821 -Controller's 61051 -Controllers 50053 -Controlling 52661 -Controlman 51888 -Controls 45039 -Controversial 56935 -Controversies 52597 -Controversy 53712 -Contry 63245 -Contrôle 63792 -Contáctenos 65452 -Conundrum 62331 -Conv 63991 -Convalescent 60856 -Convection 58523 -Convective 64905 -Convector 65170 -Convegno 64201 -Convencion 65170 -Convención 64657 -Convene 64423 -Convener 65452 -Convenience 51650 -Conveniences 63792 -Convenient 53271 -Conveniently 57440 -Convenor 65170 -Convent 57876 -Convention 43153 -Convention's 65170 -Conventional 51157 -Conventions 52198 -Converge 63419 -Converged 57358 -Convergence 51920 -Convergent 60580 -Converging 64201 -Convergys 64905 -Convers 63245 -Conversation 49523 -Conversational 58745 -Conversations 50439 -Converse 53095 -Conversely 63792 -Conversion 47269 -Conversions 52818 -Convert 47238 -ConvertXtoDVD 63601 -Converted 56935 -Converter 42648 -Converters 52534 -Convertible 49229 -Convertibles 57696 -Converting 52699 -Convertor 58860 -Convertors 62469 -Converts 55793 -Convex 59774 -Convey 65452 -Conveyance 62196 -Conveyancing 58919 -Conveying 59560 -Conveyor 55037 -Conveyors 55992 -Convict 61699 -Convicted 56388 -Conviction 57566 -Convictions 60580 -Convicts 63792 -Convince 60580 -Convinced 62331 -Convo 64423 -Convocation 57046 -Convolution 63601 -Convoy 60670 -Conway 50213 -Conway's 63991 -Conwell 64905 -Conwy 57696 -Conyac 65452 -Conyers 59630 -Conéctate 64423 -Coo 64201 -CooL 61472 -Cooder 63077 -Coogan 60952 -Coogee 60856 -Coogi 64657 -Cook 42841 -Cook'n 60492 -Cook's 53109 -Cookalon 64657 -Cookalong 62613 -Cookbook 49906 -Cookbooks 51650 -Cooke 53630 -Cooke's 63991 -Cooked 56388 -Cooker 52496 -Cookers 54770 -Cookery 56721 -Cookeville 64657 -Cookie 46226 -Cookies 43936 -Cooking 42751 -Cookout 62917 -Cooks 53988 -Cooksets 62066 -Cookshop 65452 -Cookson 61472 -Cooktop 56862 -Cooktops 62331 -Cooktown 61940 -Cookware 50277 -Cool 41311 -CoolChaser 50898 -CoolChasers 62469 -CoolIT 65170 -CoolMax 64905 -Coolabah 63792 -Coolangatta 63077 -Coolant 58113 -Coolants 64905 -Coolaroo 64423 -Cooldown 64201 -Coole 65170 -Cooled 60670 -Cooler 49899 -CoolerMaster 64905 -Coolermaster 63245 -Coolers 52484 -Coolest 53613 -Cooley 56687 -Coolidge 56551 -Cooling 46086 -Coolio 58919 -Cooliris 64423 -Coolmax 63991 -Coolmine 64423 -Coolpix 55373 -Cools 58802 -Coolsat 56972 -Coolstreaming 63419 -Coolstyle 63419 -Coolum 65452 -Coolwall 63077 -Cooly 64201 -Cooma 62762 -Coomassie 58523 -Coombe 61362 -Coombs 60762 -Coomera 62469 -Coon 56791 -Coonawarra 65452 -Cooney 59424 -Coonhound 61362 -Coons 62917 -Coop 55014 -Cooper 45470 -Cooper's 57009 -Cooperate 61051 -Cooperating 62331 -Cooperation 48034 -Cooperative 46247 -Cooperatives 60321 -Coopers 57785 -Cooperstown 57653 -Coops 61584 -Coordinate 54946 -Coordinated 56050 -Coordinates 55202 -Coordinating 53501 -Coordination 49620 -Coordinator 46288 -Coordinator's 65170 -Coordinators 53301 -Coorg 61152 -Coorong 64423 -Coorparoo 64423 -Coors 55906 -Coos 59923 -Coosa 64657 -Coot 65452 -Coote 64657 -Cooter 63245 -Coovadia 65170 -Cop 52791 -Copa 53454 -Copacabana 62196 -Copan 65452 -Copaxone 65452 -Cope 54643 -Copeland 53746 -Copeland's 62762 -Copenhagen 49620 -Copernic 65452 -Copernican 65170 -Copernicus 55178 -Copied 50249 -Copier 53662 -Copiers 54770 -Copies 50321 -Coping 52858 -Copland 64201 -Copley 57399 -Copolymer 62762 -Copolymers 62066 -Coppa 62917 -Coppell 60238 -Copper 47471 -Copperas 63601 -Copperfield 60000 -Copperfox 63601 -Copperhead 62917 -Coppermine 59227 -Coppin 60492 -Coppola 56324 -Coppola's 65452 -Cops 52778 -Copter 62066 -Copthorne 60762 -Coptic 61256 -Copy 41068 -CopyColumn 62917 -CopyItemToDocument 65452 -CopyRight 58860 -Copyblogger 65170 -Copycat 63245 -Copying 51931 -Copyleft 60157 -Copyright 30217 -Copyrighted 56231 -Copyrights 46418 -Copyscape 58979 -Copystar 65170 -Copywriter 59491 -Copywriting 55274 -Coq 59923 -Coquette 62469 -Coquille 65452 -Coquitlam 56231 -Cor 54023 -Cora 56324 -Coral 47044 -Coraline 64905 -Corals 59227 -Coralville 65170 -Coram 62196 -Corazon 57440 -Corazón 63601 -Corbett 56262 -Corbin 55250 -Corbina 65170 -Corbis 55274 -Corbusier 63792 -Corbusier's 64905 -Corby 55963 -Corcoran 56200 -Corcovado 64905 -Cord 50365 -Corda 61584 -Cordage 65452 -Corday 65452 -Corded 58113 -Cordele 65170 -Cordelia 62762 -Cordell 62066 -Cordero 59848 -Cordes 63991 -Cordial 62196 -Cordillera 59560 -Cordless 48629 -Cordoba 57160 -Cordon 60321 -Cordova 56756 -Cords 55657 -Cordura 62196 -Corduroy 58262 -Cordycepin 64657 -Core 40659 -CoreMedical 65170 -CoreNucleotide 65170 -Corea 61699 -Corecess 62613 -Cored 64423 -Coreg 61699 -Corel 52648 -CorelDRAW 61256 -CorelDraw 63245 -Corelle 61818 -Corelli 65452 -Corelli's 63991 -Corellia 65170 -Coremetrics 63245 -Coren 64905 -Cores 59923 -Corey 50718 -Corey's 64423 -Corfe 62762 -Corfu 56200 -Corgan 63792 -Corgi 54380 -Corgis 65452 -Cori 61051 -Coriander 61256 -Corie 64423 -Coriell 64905 -Corin 64905 -Corina 58919 -Corinex 60321 -Corinna 59039 -Corinne 56170 -Corinth 58113 -Corinthian 56420 -Corinthians 55323 -Coriolis 60952 -Corioliss 64905 -Cork 48017 -Corker 64201 -Corks 63792 -Corkscrew 62331 -Corkscrews 64905 -Corky 58113 -Corky's 64657 -Corleone 62196 -Corley 61051 -Corliss 62917 -Corll 59424 -Corluka 64657 -Cormac 59560 -Cormack 64201 -Corman 63419 -Cormier 60157 -Cormorant 63792 -Corn 45504 -Cornbread 62469 -Cornea 62066 -Corneal 56485 -Corned 59848 -Cornelia 56652 -Cornelian 65452 -Cornelio 64905 -Cornelis 62469 -Cornelius 55154 -Cornell 48377 -Cornell's 63792 -Corner 42692 -Cornered 61584 -Cornering 62762 -Corners 53454 -Cornerstone 53454 -Cornescu 65170 -Cornet 60238 -Cornett 64905 -Cornette 65170 -Cornflower 65170 -Cornhusker 65170 -Cornhuskers 59702 -Cornice 65170 -Corning 53423 -Cornish 55526 -Corns 62196 -Cornstarch 64657 -Cornucopia 63245 -Cornwall 48256 -Cornwallis 64201 -Cornwell 59039 -Corny 65452 -Cornyn 65170 -Coro 59923 -Corolla 54114 -Corollary 55274 -Corolle 63991 -Coromandel 56200 -Coron 65170 -Corona 52375 -Coronado 54341 -Coronal 61940 -Coronandel 63077 -Coronary 52040 -Coronas 63601 -Coronation 55738 -Coronavirus 64905 -Coroner 57084 -Coroner's 62762 -Coroners 64201 -Coronet 62196 -Corp 45737 -Corp's 63601 -Corpo 63419 -Corporal 47221 -Corporat 61818 -Corporate 38327 -Corporates 60952 -Corporation 38746 -Corporation's 54685 -Corporations 51193 -Corps 47438 -Corpse 56452 -Corpses 62331 -Corpsman 53038 -Corpus 50492 -Corr 59227 -Corrado 57440 -Corral 57566 -Corralejo 65170 -Correa 59357 -Correct 47748 -Correctable 65452 -Corrected 54540 -Correcting 59039 -Correction 49926 -Correctional 53438 -Corrections 42058 -Corrective 57318 -Correctly 61152 -Correctness 60856 -Corrector 60762 -Corrects 63419 -Correia 61256 -Correlate 65170 -Correlated 58860 -Correlates 60157 -Correlating 65170 -Correlation 51660 -Correlations 56756 -Correll 62469 -Corrente 62613 -Correo 61940 -Correspondence 47907 -Correspondent 52198 -Correspondents 57970 -Corresponding 45867 -Corridor 52244 -Corridors 60157 -Corrie 56293 -Corrigan 59101 -Corrigendum 61256 -Corrigin 64657 -Corrine 59630 -Corrosion 53241 -Corrosive 64657 -Corrs 57876 -Corrugated 53712 -Corrupt 56050 -Corrupted 62469 -Corruption 52315 -Corry 62762 -Corsa 57358 -Corsage 63601 -Corsages 64201 -Corsair 52546 -Corse 63792 -Corset 55373 -Corsets 58860 -Corsham 64201 -Corsi 61584 -Corsica 58860 -Corsican 61051 -Corso 57785 -Corson 64423 -Corsten 62469 -Cort 60078 -Corte 58802 -Cortera 64201 -Cortes 56721 -Cortex 56518 -Cortexa 62469 -Cortez 57009 -Corti 59491 -Cortical 57741 -Corticosteroids 61256 -Cortina 61472 -Cortinarius 62613 -Cortisol 61051 -Cortland 55821 -Cortlandt 61051 -Corto 64201 -Cortona 65452 -Cortés 65170 -Corum 60405 -Coruna 60762 -Corus 56721 -Coruña 65170 -Corvallis 57482 -Corvette 47585 -Corvetteforum 63245 -Corvettes 54770 -Corvus 63601 -Corwen 61940 -Corwin 58919 -Cory 51140 -Corydalis 65170 -Corydon 64905 -Coryell 61051 -Corynebacterium 59424 -Corzine 59227 -Cos 55500 -Cosa 64201 -Cosabella 64905 -Cosas 64657 -Cosby 57970 -Coscia 64905 -Cosco 60492 -Cosford 64201 -Cosgrove 58577 -Cosh 65170 -Coshocton 60952 -Cosi 59101 -Cosine 65452 -Cosmeceuticals 63792 -Cosmet 59848 -Cosmetic 46843 -Cosmetics 46726 -Cosmetology 58065 -Cosmic 52164 -CosmicDebris 64201 -Cosmicdot 63792 -Cosmo 54380 -CosmoGirl 64423 -Cosmodome 64905 -Cosmological 62469 -Cosmology 54770 -Cosmopolitan 55250 -Cosmos 53779 -Cosméticos 64201 -Cosplay 55877 -Cossack 61940 -Cossacks 64201 -Cost 41847 -CostWorks 63245 -Costa 41902 -Costanzo 63601 -Costas 58632 -Costco 54207 -Coste 63419 -Costello 52712 -Costello's 63792 -Coster 65452 -Costes 61699 -Costing 58417 -Costly 59630 -Costner 60952 -Costs 45567 -Costume 43469 -Costumed 63601 -Costumes 42103 -Costus 56899 -Costworks 65170 -Cosworth 63077 -Cosy 61362 -Cot 56021 -Cota 54479 -Cotabato 65452 -Cotati 61051 -Cotbed 65170 -Cote 45831 -Cotes 61362 -Cotesia 63991 -Cotillard 64423 -Cotillion 63991 -Coto 63077 -Coton 63601 -Cotonou 63991 -Cots 58860 -Cotswold 55299 -Cotswolds 59164 -Cott 63991 -Cotta 60856 -Cottage 47544 -Cottages 50357 -Cottbus 61699 -Cotter 58919 -Cottesloe 61152 -Cottier 62917 -Cottingham 64201 -Cottle 62613 -Cotto 60000 -Cotton 45155 -Cottonseed 63991 -Cottonwood 56585 -Cottrell 61584 -Cotulla 63245 -Coty 62613 -Cou 65452 -Couch 52778 -Couche 63245 -Couches 64905 -Couette 61256 -Cougar 53662 -Cougars 54226 -Cough 55107 -Coughing 61699 -Coughlan 63601 -Coughlin 58162 -Coughs 63077 -Could 42800 -Coulda 60492 -Couldn't 53066 -Couldnt 65452 -Coulee 60078 -Couleur 65452 -Coulomb 54622 -Coulomb's 62613 -Coulonge 64657 -Coulson 58919 -Coulter 53630 -Coulterville 65452 -Coulthard 64905 -Coulton 63991 -Coumadin 62196 -Coun 65170 -Council 35151 -Council's 48139 -CouncilMember 64423 -Councillor 47504 -Councillors 51017 -Councilman 53211 -Councilmember 50974 -Councilmembers 57741 -Councilmen 65452 -Councilor 57046 -Councilors 62762 -Councilperson 55877 -Councils 50394 -Councilwoman 59774 -Counsel 47103 -Counsel's 63077 -Counseling 47218 -Counselling 51721 -Counsellor 58979 -Counsellors 63077 -Counselor 50678 -Counselor's 63792 -Counselors 54540 -Count 45444 -Countdown 49476 -Countdowns 60670 -Counted 58523 -Counter 46141 -Counterfeit 56935 -Countering 63245 -Countermeasures 63792 -Counterparts 63419 -Counterparty 63077 -Counterpoint 64905 -Counterpunch 62917 -Counters 53485 -Countershafts 64423 -Counterstrike 61362 -Counterterrorism 59039 -Countertop 57524 -Countertops 54643 -Countertransference 64423 -Countess 58313 -Counties 47067 -Counting 50686 -Countless 60762 -Countries 44215 -Country 36326 -Country's 60321 -Countryfile 64423 -Countryside 52472 -Countrywide 55526 -Counts 52725 -County 33887 -County's 51835 -Countywide 58802 -Coup 57785 -Coupe 48274 -Coupee 63601 -Coupes 57923 -Coupeville 65452 -Coupland 65452 -Couple 49867 -Couple's 63991 -Coupled 55849 -Coupler 59923 -Couplers 59164 -Couples 49207 -Coupling 54581 -Couplings 60078 -Coupon 46520 -Coupons 43308 -Coupé 60405 -Cour 61818 -Courage 54283 -Courageous 60952 -Courant 52198 -Courchevel 62613 -Couric 55526 -Couric's 61940 -Courier 48913 -Couriers 58313 -Couristan 64657 -Cournot 65452 -Courriel 49394 -Courrier 64905 -Cours 61362 -Course 40927 -CourseSmart 64423 -Courses 41893 -Courseware 58860 -Coursework 56293 -Court 36822 -Court's 52399 -CourtWatch 63991 -Courtenay 59357 -Courteney 59560 -Courteous 63419 -Courter 64657 -Courtesy 49802 -Courthouse 51670 -Courting 60157 -Courtland 61584 -Courtney 49860 -Courtney's 64657 -Courtneys 63792 -Courtright 64905 -Courtroom 58745 -Courts 44894 -Courtship 61472 -Courtside 62613 -Courtyard 52363 -Courtyards 65170 -Couscous 62762 -Cousin 55684 -Cousins 56791 -Cousteau 64423 -Coutinho 65170 -Coutts 62196 -Couture 49388 -Cov 63792 -Covalent 63601 -Covariance 65452 -Cove 48726 -Covell 62917 -Coven 60238 -Covenant 52968 -Covenants 60238 -Covent 55793 -Coventry 48395 -Cover 40315 -Coverage 43700 -Coverages 63601 -Coverall 64905 -Coveralls 62762 -Coverdell 64905 -Covered 49986 -Covering 51396 -Coverings 55500 -Coverlet 64657 -Covers 43408 -Coverspreview 63245 -Covert 56324 -Coverup 65452 -Coveted 62917 -Covey 60321 -Coville 64423 -Covina 57122 -Covington 54601 -Cow 50409 -Cow's 62917 -Cowan 55226 -Coward 55711 -Coward's 64657 -Cowardly 62762 -Cowbell 60856 -Cowboy 49229 -Cowboy's 64423 -Cowboys 48182 -Cowbridge 65452 -Cowden 63991 -Cowell 55274 -Cowen 57278 -Cowes 61256 -Coweta 61699 -Cowgirl 55849 -Cowgirls 63419 -Cowichan 62469 -Cowie 62762 -Cowl 60580 -Cowles 60580 -Cowley 58802 -Cowling 60321 -Cowlitz 59164 -Cowon 56972 -Coworking 64201 -Cowra 63991 -Cows 54992 -Cowtown 63792 -Cox 47080 -Cox's 60000 -Coxe 64905 -Coxiella 65452 -Coxon 63792 -Coxsackie 64905 -Coy 60856 -Coyle 57238 -Coyne 60952 -Coyote 52559 -Coyotes 55992 -Coz 62613 -Cozaar 63991 -Cozumel 57653 -Cozy 54857 -Cp 57318 -CpG 55526 -CpNagJ 64423 -Cpa 63419 -Cpanel 60856 -Cpe 64905 -Cpl 63419 -Cpls 65170 -Cpt 65170 -Cpu 60670 -Cr 49108 -CrOtALiTo 63792 -Crab 51453 -Crabapple 61818 -Crabb 63991 -Crabby 62917 -Crabs 60952 -Crabtree 56080 -Crack 46269 -CrackBerry 56262 -Crackdown 59039 -Cracked 53899 -Cracker 54283 -Crackers 56862 -Cracking 54727 -Crackle 54041 -Crackled 65452 -Cracks 51511 -Cracow 62196 -Craddick 65170 -Craddock 59774 -Cradle 52085 -Cradles 57440 -Cradley 64423 -Craft 45669 -Crafted 56485 -Crafter 63601 -Crafters 59702 -Crafting 55423 -Craftmade 64423 -Crafton 62066 -Crafts 43232 -Craftsman 53241 -Craftsmanship 63601 -Craftsmen 59101 -Craftster 59923 -Crafty 54792 -Crag 61256 -Cragin 60580 -Craig 43984 -Craig's 57696 -Craigavon 64423 -Craiggie 65452 -Craigie 59039 -Craigieburn 62613 -Craigs 62762 -Craigslist 55373 -Craik 59923 -Crain 59848 -Crain's 56862 -Craiova 62613 -Cram 57653 -Cramayel 64905 -Cramer 51772 -Cramer's 57440 -Crammer 64423 -Cramp 62469 -Cramps 62066 -Crampton 61362 -Cranberries 58065 -Cranberry 52622 -Cranbourne 62331 -Cranbrook 58162 -Cranbury 64657 -Crandall 60405 -Crane 49880 -Cranes 54727 -Cranfield 60078 -Cranford 58262 -Cranial 60762 -Craniofac 62331 -Craniofacial 62762 -Cranium 63991 -Crank 52858 -Cranks 59560 -Crankset 63601 -Cranksets 63077 -Crankshaft 62066 -Cranky 56862 -Cranleigh 65170 -Cranmer 64905 -Cranston 58262 -Crap 55631 -Crapo 64201 -Crapper 64657 -Crappie 63792 -Crappy 57876 -Craps 57970 -Cras 62196 -Crash 46827 -CrashTV 60000 -Crashed 58162 -Crasher 61051 -Crashers 60000 -Crashes 56080 -Crashing 60492 -Crass 65452 -Crassostrea 61362 -Crassula 63245 -Crataegus 62469 -Crate 53934 -Crater 55684 -Craters 64423 -Crates 57566 -Crating 63245 -Crave 50081 -Craven 55130 -Craving 61362 -Cravings 61472 -Crawfish 61699 -Crawford 48658 -Crawford's 62469 -Crawfordsville 65452 -Crawfordville 62762 -Crawl 55657 -Crawler 49867 -Crawley 56293 -Crawling 59357 -Crawls 60238 -Cray 60670 -Crayfish 63245 -Crayola 59101 -Crayon 57566 -Crayons 57923 -Crayton 64423 -Craze 57609 -Crazed 61256 -Crazies 65170 -Craziest 63792 -Crazy 44718 -CrazyNutz 65452 -CrazySales 64423 -Crazyfists 64905 -Crd 61472 -Cre 64423 -Crea 65170 -Cream 44103 -Creamed 61362 -Creamer 59227 -Creamery 58802 -Creamfields 63792 -Creampie 56899 -Creampies 62196 -Creams 56518 -Creamy 55130 -Crean 62613 -Crear 63792 -Crease 64423 -Creatas 55474 -Create 36486 -CreateColumn 62917 -CreateCopy 64423 -CreateDXLExporter 64905 -CreateDXLImporter 64905 -CreateDateTime 64905 -CreateDocument 64423 -CreateFTIndex 63601 -CreateFromTemplate 63991 -CreateLog 64201 -CreateName 64423 -CreateNewsletter 64201 -CreateNoteCollection 63601 -CreateObject 61699 -CreateOutline 63792 -CreateReplica 63245 -CreateRichTextParagraphStyle 64423 -CreateTimer 64423 -CreateView 64423 -CreateViewNav 62917 -CreateViewNavFrom 62917 -CreateViewNavFromCategory 62917 -CreateViewNavFromChildren 62613 -CreateViewNavFromDescendants 62613 -CreateViewNavMaxLevel 62331 -CreateXSLTransformer 64423 -Created 43998 -Creates 52725 -Creatine 56262 -Creating 41993 -Creatinine 61699 -Creation 46881 -Creationism 61584 -Creationist 61699 -Creationists 63991 -Creations 51202 -Creative 39733 -Creative's 62469 -CreativeAndCulturalIndustries 64905 -Creatives 60321 -Creativity 51349 -Creator 46367 -Creator's 63792 -Creators 53361 -Creature 53301 -Creatures 52805 -Crecente 64423 -Creche 62762 -Creches 65170 -Cred 64423 -Creda 59702 -Credence 63991 -Credential 59164 -Credentialing 60405 -Credentials 54360 -Credenzas 61818 -Credibility 57696 -Credible 62762 -Credit 36770 -CreditWire 64201 -Credited 59227 -Creditor 62331 -Creditors 58017 -Credits 43280 -Credo 59774 -Cree 53865 -Creech 63601 -Creed 52152 -Creedence 57741 -Creek 41270 -Creek's 63077 -Creeks 62066 -Creekside 56110 -Creel 60762 -Creep 56756 -Creeper 60670 -Creepers 59630 -Creeping 61699 -Creeps 63419 -Creepshow 64905 -Creepy 56356 -Creer 64657 -Creighton 54188 -Cremation 57358 -Crematories 62331 -Crematorium 62762 -Creme 54188 -Cremer 61584 -Cremona 64657 -Cremorne 64423 -Crenshaw 60000 -Creo 63601 -CreoLogic 57831 -Creole 54560 -Crepe 60238 -Crepes 62331 -Cres 62613 -Crescendo 63792 -Crescent 48882 -Crescenta 62917 -Crescenzo 65452 -Crespo 61362 -Cress 64657 -Cressida 62917 -Cresswell 63601 -Crest 47843 -Crested 56485 -Crestline 63245 -Crestock 62066 -Creston 60321 -Crestor 59630 -Crestron 60856 -Crests 61051 -Crestview 60670 -Crestwood 58113 -Creswell 62762 -Creswick 62469 -Cretaceous 54749 -Cretan 63077 -Crete 54096 -Creuset 59848 -Creutz 65170 -Creve 63419 -Crevice 64905 -Crew 44919 -Crew's 64201 -CrewMax 65452 -Crewe 55178 -Crewkerne 64201 -Crewneck 58860 -Crews 56080 -Crh 64657 -Cri 61940 -Crib 51148 -Cribb 63419 -Cribbage 63792 -Cribbs 65452 -Cribs 52198 -Criccieth 64423 -Crichton 60321 -Cricinfo 57278 -Crick 62917 -Cricket 43678 -Cricketer 65170 -Crickets 60321 -Crickler 62762 -Cricklewood 62469 -Cricut 64905 -Crider 63077 -Cried 58860 -Crier 60492 -Cries 59774 -Crikey 62917 -Crime 40231 -Crimea 62917 -Crimean 60321 -Crimes 50702 -Crimestopper 63419 -Crimestoppers 59702 -Criminal 42932 -Criminals 55084 -Criminology 55274 -Crimp 59101 -Crimpers 64657 -Crimson 50545 -Crinkle 61256 -Crip 60238 -Cripple 59292 -Crippled 62196 -Crips 63991 -Cris 58577 -Crisco 64657 -Crises 57923 -Crisis 44447 -Crisp 54706 -Crispin 57970 -Crisps 61152 -Crispy 55793 -Criss 58162 -Crissy 58065 -Crist 58417 -Crista 63077 -Cristal 57785 -Cristian 58212 -Cristiana 60856 -Cristiano 53346 -Cristianos 60492 -Cristina 51752 -Cristo 58017 -Cristobal 61472 -Cristy 63419 -Crit 53454 -Criteria 47951 -Criterion 55348 -Critic 51963 -Critic's 57046 -Critical 44718 -Critically 59227 -Criticism 51211 -Criticisms 63419 -Criticizes 59039 -Critics 50081 -Critique 49952 -Critiquer's 60157 -Critiques 54622 -Crittenden 61152 -Critter 57831 -Critters 56935 -Crm 65170 -Crna 61051 -Cro 64423 -Croat 61472 -Croatia 44863 -Croatia's 65170 -Croatian 49676 -Croc 58417 -Croce 62469 -Crochet 52256 -Crocheted 61818 -Crocheting 58745 -Crochê 65452 -Crock 58262 -Crocker 55631 -Crockery 61818 -Crockett 56935 -Crockpot 59702 -Crocodile 54857 -Crocosmia 64905 -Crocs 57238 -Crocus 61940 -Croft 54835 -Croft's 63419 -Crofton 62066 -Crofts 61051 -Crohn 64423 -Crohn's 54226 -Crohns 63245 -Croissance 65452 -Croix 54399 -Croke 61472 -Crom 63601 -Cromarty 63419 -Cromatografía 63991 -Crombez 62917 -Crombie 62331 -Crome 65452 -Cromer 60762 -Crompton 61472 -Cromwell 55657 -Cron 64657 -Cronbach's 61362 -Crone 62196 -Cronenberg 61940 -Cronin 59491 -Cronkite 65170 -Crono 62196 -Cronous 63991 -Cronulla 60580 -Crook 57084 -Crook's 64657 -Crooked 54380 -Crooks 55738 -Croom 63792 -Crop 49783 -Cropped 58577 -Cropper 63077 -Cropping 61940 -Crops 50157 -Croquet 60078 -Crore 61472 -Crores 65170 -Crosbie 62469 -Crosby 52872 -Crosby's 63792 -Crosley 60321 -Crosman 63792 -Cross 41298 -CrossFire 61051 -CrossFireX 62917 -CrossFit 60580 -CrossLoop 64905 -CrossOver 62066 -CrossRef 45461 -CrossRef's 60492 -CrossTalk 62066 -Crossbar 60238 -Crossbones 62469 -Crossbow 57009 -Crossbows 63245 -Crossdresser 63792 -Crosse 54479 -Crossed 57876 -Crosses 55793 -Crossfade 61362 -Crossfire 55766 -Crossflow 59630 -Crosshair 65170 -Crosshairs 63245 -Crossing 48667 -Crossings 58262 -Crossland 64423 -Crossley 61940 -Crosslinking 64423 -Crossman 63601 -Crossover 53316 -Crossovers 60405 -Crossrail 65170 -Crossroad 62331 -Crossroads 52858 -Crosstalk 62331 -Crosstown 64201 -Crossville 58417 -Crosswalk 62762 -Crosswater 60405 -Crossway 60762 -Crossword 50040 -Crosswords 51783 -Crostini 63245 -Crotalaria 62762 -Crotch 62613 -Croton 58745 -Crotty 65170 -Crouch 56618 -Crouching 61472 -Crouse 64423 -Croutons 64201 -Crow 50545 -Crow's 62331 -Crowd 52765 -Crowded 58262 -Crowder 58523 -Crowds 57876 -Crowdsourcing 65170 -Crowe 55323 -Crowell 60492 -Crowes 60762 -Crowfoot 63601 -Crowhurst 64423 -Crowle 62917 -Crowley 55250 -Crowley's 63792 -Crown 44328 -Crown's 62196 -Crowne 53988 -Crowned 60762 -Crowning 63991 -Crowns 55323 -Crows 53316 -Crowther 61051 -Crowthorne 64657 -Croydon 51425 -Crozier 64201 -Crs 59491 -Crt 60321 -Cru 57741 -Cruces 52423 -Crucial 53052 -Crucible 57358 -Crucifix 63991 -Crucifixes 63245 -Crucifixion 62331 -Crude 52584 -Crue 55992 -Crue's 65452 -Cruel 55631 -Cruella 62917 -Cruelty 56862 -Crug 59227 -Cruickshank 61362 -Cruise 39353 -Cruise's 62762 -CruiseBook 61472 -CruiseDex 52435 -Cruisedex 52435 -Cruiser 49006 -Cruisers 56791 -Cruiserweight 62469 -Cruises 39353 -Cruisin 65452 -Cruising 48318 -Crum 59292 -Crumb 59923 -Crumble 61584 -Crumbs 62762 -Crump 60856 -Crumpler 60762 -Crunch 52085 -CrunchGear 63077 -Crunches 64201 -Crunchie 65170 -Crunching 63991 -Crunchy 58802 -Crunchyland 65170 -Crunk 59774 -Crunkstar 62196 -Crusade 51793 -Crusader 56021 -Crusaders 56551 -Crusades 61699 -Cruse 62917 -Crush 45811 -Crushed 58470 -Crusher 58745 -Crushermate 64201 -Crushers 62469 -Crushes 62613 -Crushing 58417 -Crushridge 59424 -Crusis 64423 -Crusoe 58577 -Crust 56687 -Crustacea 64905 -Crustacean 64201 -Crustaceans 63792 -Crustal 65170 -Crusted 64657 -Crutcher 63245 -Crutchfield 59164 -Crux 62469 -Cruz 46855 -Cruze 63991 -Cruzer 57160 -Cry 45455 -Crybaby 63792 -Cryer 64905 -Crying 57084 -Cryo 64905 -Cryogenic 61256 -Cryonics 44787 -Cryospheric 65452 -Cryostat 64201 -Crypt 58470 -Cryptic 57785 -Crypto 59424 -CryptoExpert 65170 -Cryptococcus 62469 -Cryptographic 53813 -Cryptography 56935 -Cryptology 64201 -Cryptopsy 63245 -Cryptosporidium 57084 -Crypts 62066 -Crysis 50966 -Cryst 64201 -Crystal 41856 -Crystal's 64201 -Crystalis 65452 -Crystalline 57785 -Crystallinity 65452 -Crystallization 58313 -Crystallogr 60157 -Crystallographic 59424 -Crystallographica 55178 -Crystallography 57160 -Crystals 53301 -Crytek 64423 -Crème 60238 -Crédit 64423 -Críticas 58979 -Crüe 60856 -Cs 55348 -CsA 61472 -CsCl 60952 -CsI 65170 -Csaba 62196 -Csi 62613 -Cspot 61940 -Css 60157 -Ct 50199 -Cte 62196 -Cthulhu 59039 -Ctr 53271 -Ctrl 57122 -Cty 59491 -Cu 47522 -CuBr 65170 -CuCl 61152 -CuFt 60000 -CuGeO 65452 -CuK 65170 -CuO 56452 -CuSO 65170 -Cuando 60952 -Cuanza 61362 -Cuardaigh 58919 -Cuatro 65170 -Cub 53024 -Cuba 44567 -Cuba's 50823 -Cuban 48667 -Cuban's 64905 -Cubana 60952 -Cubano 62066 -Cubans 59227 -Cubase 57696 -Cubbie 63077 -Cubby 64423 -Cube 49207 -Cubed 63792 -Cuber 64201 -Cubes 56324 -Cubic 53407 -Cubicle 60078 -Cubicles 61584 -Cubism 62762 -Cubist 62613 -Cubs 48781 -Cucamonga 58688 -Cucina 59774 -Cuckold 62762 -Cuckoo 60492 -Cuckoo's 63792 -Cucumber 57970 -Cucumbers 64905 -Cucurbita 64657 -Cucusoft 57278 -Cuda 64657 -Cudahy 63991 -Cuddle 59491 -Cuddler 64423 -Cuddly 60157 -Cuddy 60670 -Cue 54706 -Cuenca 63077 -Cuenta 62469 -Cuernavaca 63077 -Cuerpo 65452 -Cuervo 65170 -Cues 59702 -Cueshe 64423 -Cuesta 60856 -Cueto 64657 -Cuevas 63077 -Cuff 53392 -Cuffed 64905 -Cufflinks 53377 -Cuffs 58802 -Cui 61362 -Cuidado 61940 -Cuil 64201 -Cuisinart 55849 -Cuisine 47756 -Cuisines 56050 -Cuivre 64201 -Cul 62196 -Culbertson 60000 -Culdcept 63991 -Culex 63419 -Culicids 65170 -Culinaire 53746 -Culinary 49511 -Culkin 64201 -Cullen 53346 -Cullen's 61472 -Culler 64201 -Culley 64201 -Culligan 65170 -Cullinan 65452 -Culling 64905 -Cullman 59630 -Cullompton 64201 -Cullum 63419 -Culp 64905 -Culpa 64905 -Culpeper 61256 -Culpepper 59560 -Culprits 64905 -Cult 47863 -Cultist 63077 -Cultivar 64201 -Cultivars 63245 -Cultivate 64905 -Cultivated 63245 -Cultivating 61051 -Cultivation 58017 -Cultivator 65452 -Cultivators 64657 -Cultivo 64905 -Cults 59848 -Cultura 57524 -Cultural 42429 -Culturally 60405 -Culture 39340 -Cultured 54499 -Cultures 48996 -Culver 54601 -Culvert 62196 -Culverts 64905 -Cum 50074 -Cumberland 50108 -Cumbernauld 64201 -Cumbia 62762 -Cumbria 50365 -Cumbrian 63419 -Cumin 61256 -Cuming 63245 -Cumming 56652 -Cummings 53970 -Cummins 53392 -Cums 63419 -Cumshot 56140 -Cumshots 57741 -Cumulative 53695 -Cumulus 60405 -Cunard 51856 -Cunaviche 62469 -Cunha 60580 -Cunliffe 62331 -Cunnilingus 64423 -Cunning 62331 -Cunningham 52521 -Cunningham's 64905 -Cunt 59164 -Cuomo 57970 -Cup 40461 -Cupboard 58979 -Cupboards 61472 -Cupcake 54540 -Cupcakes 55154 -Cupertino 57876 -Cupid 58017 -Cupid's 63245 -Cupless 63792 -Cupping 63792 -Cuppy 62762 -Cupra 62331 -Cups 50026 -Cur 61818 -Cura 61362 -Curacao 56652 -Curated 60856 -Curator 57524 -Curatorial 54321 -Curators 59923 -Curaçao 62613 -Curb 53423 -Curbed 53882 -Curbing 61940 -Curbs 61940 -Curbside 61940 -Curcumin 62762 -Curd 63991 -Cure 49001 -CureZone 60238 -Cured 60856 -Cures 55992 -Curfew 61256 -Curiam 63077 -Curie 55500 -Curing 57358 -Curio 59702 -Curios 62917 -Curiosities 62613 -Curiosity 58365 -Curious 51953 -Curiously 63991 -Curis 63991 -Curitiba 57741 -Curl 52268 -CurleeDST 64657 -Curler 62917 -Curlers 64905 -Curlew 63419 -Curley 62066 -Curlin 63601 -Curling 54601 -Curls 59923 -Curly 54685 -Curmudgeon 61818 -Curr 55821 -Curran 56080 -Currant 63077 -Currants 65170 -Currencies 50750 -Currency 45162 -Current 34878 -CurrentAccessLevel 62613 -CurrentAgent 63419 -CurrentDatabase 62469 -CurrentField 63601 -CurrentRow 62331 -Currently 42821 -Currents 55604 -Currey 62613 -Curricula 60078 -Curricular 59630 -Curriculum 46167 -Currie 55423 -Curried 61940 -Currier 63792 -Currin 60670 -Currington 61584 -Currituck 58979 -Currumbin 63991 -Curry 50718 -Currys 57970 -Curse 52546 -Cursed 59560 -Curses 63245 -Cursive 60321 -Curso 60078 -Cursor 58417 -Cursors 56721 -Cursos 63792 -Cursum 65170 -Curt 53377 -Curtain 52291 -Curtains 53361 -Curtin 57653 -Curtis 47799 -Curtis's 57741 -Curtiss 59702 -Curvaceous 65452 -Curvature 62331 -Curve 49590 -Curved 56518 -Curves 53167 -Curvy 60762 -Curzon 60000 -Cusack 59292 -Cusco 57831 -Cushing 57923 -Cushing's 58577 -Cushion 53679 -Cushioned 62762 -Cushions 55684 -Cushman 57524 -Cusick 61472 -Cusp 65170 -Cusseta 62762 -Cust 62613 -Custard 59227 -Custer 56420 -Custodial 58745 -Custodian 56324 -Custody 50476 -Custom 39205 -Customary 63792 -Customer 35465 -Customer's 58860 -Customers 42848 -Customisation 59560 -Customise 53109 -Customised 59491 -Customizable 55526 -Customization 49262 -Customizations 61256 -Customize 41398 -Customized 49523 -Customizing 54005 -Customs 48005 -Cut 43388 -Cutan 60670 -Cutaneous 56050 -Cutaway 57399 -Cutcaster 63077 -Cute 46359 -Cuteness 65452 -Cutest 59848 -Cuthbert 55738 -Cuthbertson 64657 -Cuticle 65170 -Cutie 54226 -Cuties 57160 -Cutis 64423 -Cutlass 60238 -Cutler 54835 -Cutlery 53271 -Cutline 57741 -Cutoff 61584 -Cutout 59227 -Cutouts 60492 -Cutright 64657 -Cuts 49103 -Cutscene 61818 -Cutscenes 63792 -Cuttack 63419 -Cutter 51000 -Cutters 52886 -Cutting 47021 -Cuttings 62613 -Cuttlebug 64905 -Cuttlefish 60762 -Cutts 62917 -Cutty 64201 -Cutz 60321 -Cuvee 63792 -Cuvée 64905 -Cuyahoga 54643 -Cuz 56485 -Cuzco 63077 -Cv 62196 -Cvjetno 64905 -Cvs 64423 -Cw 61940 -Cwm 65170 -Cwmbran 62469 -Cx 61362 -CxMS 65170 -CxS 62331 -CxS's 64905 -Cy 56791 -CyB 64423 -Cyan 57876 -Cyanide 59630 -Cyanine 63991 -Cyanobacteria 63077 -Cyanobacterial 65170 -Cyanogen 65170 -Cyanotic 64423 -Cyber 49076 -CyberCoders 59039 -CyberKnife 64201 -CyberLink 60762 -CyberMedia 65170 -CyberPower 60492 -CyberRentals 63991 -CyberWaste 63419 -Cyberbullying 65452 -Cybercafepro 63991 -Cybercrime 63245 -Cyberduck 63419 -Cybergun 63792 -Cyberhome 64905 -Cyberlink 60405 -Cybernet 64657 -Cybernetic 65452 -Cybernetics 59848 -Cyberpunk 61051 -Cybersecurity 62917 -Cybershot 60405 -Cybersource 62469 -Cyberspace 56021 -Cyberstar 64423 -Cyberstore 62613 -Cybertron 63077 -Cybertrust 61699 -Cybook 62331 -Cybooks 62613 -Cyborg 59630 -Cyclades 61818 -Cyclamen 65452 -Cycle 45944 -CycleOps 64905 -Cycler 65452 -Cyclery 63792 -Cycles 51762 -Cyclic 54969 -Cyclical 62762 -Cyclin 62469 -Cycling 44738 -Cyclist 58802 -Cyclists 60492 -Cyclo 62196 -Cyclocross 57876 -Cyclohexanone 65170 -Cyclon 65452 -Cyclone 53052 -Cyclones 56721 -Cyclophosphamide 62762 -Cyclops 58313 -CyclopsScott 65452 -Cyclosporine 61584 -Cyclotron 62613 -Cyd 65452 -Cydebot 63077 -Cydia 63419 -Cygnet 63419 -Cygnus 57199 -Cygwin 61256 -Cyl 59164 -Cylch 63601 -Cylinder 49966 -Cylinders 55877 -Cylindrical 58523 -Cylon 63077 -Cymbal 59101 -Cymbals 61472 -Cymbalta 62469 -Cymer 64657 -Cymorth 58860 -Cymphonix 63419 -Cymraeg 54857 -Cymru 56935 -Cyn 64905 -Cyndi 57358 -Cyne 64905 -Cyngor 59774 -Cynic 61818 -Cynical 63245 -Cynometra 63419 -Cynon 58162 -Cynthia 47791 -Cynthia's 62469 -Cypha 65452 -Cypher 62331 -Cypress 50726 -Cyprian 62613 -Cypriot 57831 -Cyprus 44246 -Cyr 63245 -Cyrano 60762 -Cyril 55373 -Cyrillic 65170 -Cyrus 44674 -Cyrus's 65452 -Cys 59164 -Cyst 62469 -Cystectomy 64657 -Cysteine 61152 -Cystic 54245 -Cystine 64905 -Cystitis 60670 -Cysts 61152 -Cysylltu 64423 -Cysylltwch 64657 -Cytherea 62917 -CytoSport 63991 -Cytochemistry 64657 -Cytochrome 57482 -Cytodyne 63991 -Cytogenet 64201 -Cytogenetic 61818 -Cytogenetics 63077 -Cytogenix 63792 -Cytokine 56972 -Cytokines 59774 -Cytology 63077 -Cytomegalovirus 61699 -Cytometry 59164 -Cytopathology 61818 -Cytoplasmic 60078 -Cytoskeletal 65170 -Cytoskeleton 64657 -Cytosolic 62917 -Cytosport 64905 -Cytotoxic 60856 -Cytotoxicity 60405 -Cyworld 60952 -Cz 59357 -Czar 60321 -Czardas 63077 -Czech 41788 -CzechTrade 65170 -Czechoslovak 60670 -Czechoslovakia 53899 -Czechoslovakian 64657 -Czechs 61940 -Cài 63601 -Cécile 64905 -Cédric 59491 -Céline 57970 -Célula 62066 -Cénie 65452 -César 60238 -Cézanne 65170 -Código 64423 -Cómo 61256 -Córdoba 61152 -Côte 53038 -Côtes 64423 -Côté 63792 -Cüneyt 61256 -D 35225 -D'Addario 64201 -D'Agostino 60157 -D'Alessio 65452 -D'Amato 62469 -D'Ambrosio 63245 -D'Amico 63419 -D'Amore 64905 -D'Andrea 65170 -D'Angelo 61152 -D'Antoni 64201 -D'Arc 62196 -D'Arcy 60952 -D'Black 64423 -D'Este 65170 -D'IVOIRE 61584 -D'Ivoire 52712 -D'Oeuvre 64905 -D'Or 61256 -D'Souza 59560 -D'UN 64905 -D'ivoire 59164 -D's 56262 -DA 45074 -DA's 63245 -DAB 54749 -DAC 53256 -DACP 62917 -DACS 58162 -DAD 57318 -DADA 63419 -DADDY 58577 -DADE 63601 -DADIO 64201 -DAE 62762 -DAEMON 58745 -DAEWOO 60492 -DAEs 62917 -DAF 58919 -DAFF 65452 -DAG 60405 -DAI 62469 -DAIHATSU 63991 -DAILY 50949 -DAIRY 58860 -DAISA 64423 -DAISY 57785 -DAKOTA 56110 -DAL 59357 -DALE 57923 -DALI 64423 -DALLAS 55631 -DALTON 62331 -DALY 62469 -DALiM 65170 -DAM 56899 -DAMAGE 57970 -DAMAGED 62196 -DAMAGES 54133 -DAME 60321 -DAMIAN 62917 -DAMN 56862 -DAMON 63245 -DAMS 64423 -DAN 54857 -DAN'S 61256 -DANA 60321 -DANCE 52303 -DANCEHALL 63991 -DANCER 64905 -DANCERS 64201 -DANCING 57278 -DANDY 63792 -DANE 62331 -DANGER 63077 -DANGEROUS 56170 -DANIEL 53882 -DANIELLE 62196 -DANIELS 62066 -DANISH 61362 -DANIWEB 65170 -DANKA 62917 -DANM 65170 -DANNY 58802 -DANOBAT 64905 -DANS 61818 -DAO 58745 -DAOC 63077 -DAP 54685 -DAPI 62613 -DAQ 61256 -DAR 59702 -DARBY 63601 -DARD 65170 -DARE 56140 -DARK 53865 -DARKNESS 64423 -DARLING 63991 -DARLINGTON 63601 -DARPA 58745 -DARRELL 65452 -DARREN 61152 -DARRYL 65452 -DART 58979 -DARTMOUTH 64423 -DARUSSALAM 62066 -DARWIN 63792 -DARYL 65452 -DAS 55849 -DASH 56485 -DASHBOARD 62917 -DASMA 63792 -DAT 52845 -DATA 45857 -DATABASE 55398 -DATABASES 59101 -DATALOGIC 64201 -DATASCOPE 64423 -DATE 47489 -DATED 57785 -DATES 54879 -DATING 56652 -DATS 64423 -DATs 64657 -DAU 64423 -DAUGHTER 59491 -DAV 62613 -DAVE 54813 -DAVEE 65170 -DAVENPORT 58919 -DAVEY 60157 -DAVID 47891 -DAVIDSON 57399 -DAVIE 65452 -DAVIES 59630 -DAVIS 54857 -DAViS 64905 -DAW 62196 -DAWG 63077 -DAWGS 65170 -DAWN 59164 -DAWSON 62469 -DAX 59923 -DAXsector 63991 -DAY 45170 -DAYCARE 62917 -DAYS 50185 -DAYTIME 63792 -DAYTON 53581 -DAYTONA 65170 -DAZ 60157 -DAdams 64905 -DAs 64423 -DB 45441 -DBA 52423 -DBAs 62917 -DBC 62469 -DBCS 64657 -DBD 60405 -DBE 64657 -DBF 57831 -DBH 61940 -DBI 65170 -DBKP 63601 -DBL 59702 -DBLP 52327 -DBM 63419 -DBMS 59292 -DBP 58065 -DBQ 64905 -DBR 60856 -DBRS 59357 -DBS 54399 -DBSK 61699 -DBSTalk 61362 -DBTBA 65170 -DBV 65452 -DBX 62196 -DBZ 55821 -DBs 63991 -DC 38135 -DC's 57923 -DCA 56551 -DCAA 60952 -DCAD 58417 -DCAM 61152 -DCB 59702 -DCC 55578 -DCCC 62762 -DCD 59227 -DCE 62331 -DCEO 64201 -DCEmu 54835 -DCF 59702 -DCFH 65452 -DCFS 63601 -DCG 61362 -DCH 64657 -DCI 61051 -DCIS 59774 -DCJS 65170 -DCL 61940 -DCLG 63991 -DCM 60078 -DCMA 63792 -DCMS 64905 -DCMT 62917 -DCNet 65452 -DCO 65170 -DCOM 61584 -DCOP 63792 -DCOPArg 63419 -DCOPRef 64423 -DCOPReply 61584 -DCP 57440 -DCPs 61472 -DCR 59923 -DCS 55877 -DCSF 60762 -DCT 58113 -DCU 62613 -DCUMC 63792 -DCV 59630 -DCist 64423 -DCompose 65452 -DCs 57696 -DD 47201 -DDA 58919 -DDB 59848 -DDC 60856 -DDD 58919 -DDE 62469 -DDF 54685 -DDFs 63077 -DDH 65452 -DDI 62613 -DDK 63601 -DDL 51131 -DDLSpot 64657 -DDM 61362 -DDO 60670 -DDOE 63792 -DDP 63601 -DDQ 64905 -DDR 50734 -DDRII 64905 -DDS 50087 -DDSx 65452 -DDT 57653 -DDU 63245 -DDlsilo 64423 -DDoS 65452 -DE 41304 -DEA 54601 -DEAD 53988 -DEADLINE 58017 -DEADLY 64423 -DEAE 63077 -DEAF 60952 -DEAL 55398 -DEALER 57741 -DEALERS 56652 -DEALING 63792 -DEALS 54706 -DEAN 57278 -DEANNE 65170 -DEAR 56791 -DEARDORFF 65170 -DEATH 52268 -DEATHS 61699 -DEB 61940 -DEBATE 60078 -DEBBIE 61818 -DEBIT 64905 -DEBORAH 59101 -DEBRA 62331 -DEBS 64201 -DEBT 57876 -DEBTS 64905 -DEBUG 60670 -DEBUT 63991 -DEC 51541 -DECA 63077 -DECADE 63419 -DECAL 61699 -DECALS 62066 -DECATUR 63991 -DECAY 64905 -DECC 63245 -DECEASED 64657 -DECEMBER 51580 -DECIDE 64201 -DECIDED 65170 -DECISION 52559 -DECISIONS 56899 -DECK 57696 -DECKS 64905 -DECLARATION 57199 -DECLARATIONS 61818 -DECLARE 62613 -DECLARING 63792 -DECO 58979 -DECODING 65452 -DECOMMISSIONING 64201 -DECOMPOSITION 62762 -DECOR 59164 -DECORATING 62066 -DECORATION 65452 -DECORATIONS 62762 -DECORATIVE 59774 -DECREASE 65452 -DECS 62917 -DECT 58162 -DED 62331 -DEDICATED 60238 -DEDICATION 62613 -DEDUCTION 63077 -DEE 60492 -DEED 60405 -DEEDS 64657 -DEEMED 65170 -DEEP 55130 -DEEPER 61818 -DEER 58065 -DEERE 60492 -DEERFIELD 63792 -DEF 56618 -DEFAULT 59227 -DEFECT 65170 -DEFECTIVE 64657 -DEFECTS 64201 -DEFENCE 61584 -DEFEND 64423 -DEFENDANT 57970 -DEFENDER 64201 -DEFENSE 57046 -DEFENSIVE 64905 -DEFERRED 62613 -DEFICIENCY 62917 -DEFICIT 65170 -DEFINE 62613 -DEFINED 62917 -DEFINING 63991 -DEFINITELY 62066 -DEFINITION 56485 -DEFINITIONS 57358 -DEFRA 62469 -DEFT 62331 -DEFY 64201 -DEG 61472 -DEGRADATION 62469 -DEGREE 58113 -DEGREES 59923 -DEI 61152 -DEIS 64905 -DEKALB 64201 -DEKO 63419 -DEL 51953 -DELAWARE 57318 -DELAY 58065 -DELAYED 64201 -DELAYS 64423 -DELEGATE 65170 -DELEGATED 60952 -DELEGATES 63077 -DELEGATION 63792 -DELETE 56827 -DELETED 63991 -DELHI 54601 -DELI 60856 -DELICIOUS 61940 -DELIVER 61152 -DELIVERED 58577 -DELIVERING 63991 -DELIVERY 51502 -DELL 53746 -DELLA 62469 -DELPHI 65170 -DELSA 60670 -DELTA 56518 -DELUX 65452 -DELUXE 56972 -DEM 53712 -DEMAND 55348 -DEMANDS 63991 -DEMO 53485 -DEMOCRACY 61818 -DEMOCRAT 62066 -DEMOCRATIC 56050 -DEMOGRAPHIC 65170 -DEMOGRAPHICS 63601 -DEMOLITION 62196 -DEMON 64201 -DEMONSTRATION 62613 -DEMONSTRATIONS 63419 -DEMOS 60157 -DEMS 65170 -DEN 56972 -DENIC 63601 -DENIED 63077 -DENIES 63419 -DENIM 57876 -DENISE 61362 -DENISON 65452 -DENMARK 57440 -DENNIS 56585 -DENNY 63991 -DENR 62762 -DENSITY 59702 -DENTAL 54792 -DENTIST 61940 -DENTISTRY 61818 -DENVER 57609 -DENY 65452 -DENYING 63601 -DEO 62066 -DEP 54302 -DEP's 63991 -DEPARTMENT 47054 -DEPARTMENTAL 63991 -DEPARTMENTS 56080 -DEPARTURE 61818 -DEPENDENCE 65170 -DEPOSIT 59101 -DEPOSITION 64657 -DEPOSITS 63245 -DEPOT 60238 -DEPRESSION 62196 -DEPT 56356 -DEPTH 57358 -DEPUTY 59101 -DEQ 58860 -DER 56324 -DERBY 61256 -DEREK 62066 -DERIVATIVE 65170 -DERIVATIVES 59560 -DERIVED 64201 -DERRICK 64657 -DES 51193 -DESA 64657 -DESAI 64905 -DESC 53392 -DESCARGA 65170 -DESCARGAR 65170 -DESCRIBE 64657 -DESCRIBED 61362 -DESCRIPTION 45929 -DESCRIPTIONS 60670 -DESDE 62917 -DESERT 58470 -DESERVE 65452 -DESI 61051 -DESIGN 47691 -DESIGNATED 60762 -DESIGNATION 60238 -DESIGNED 59630 -DESIGNER 55766 -DESIGNERS 61699 -DESIGNING 63419 -DESIGNS 56324 -DESIRE 61699 -DESIRED 62762 -DESK 55084 -DESKTOP 58113 -DESKTOPS 63991 -DESLEY 65452 -DESMO 63601 -DESO 61472 -DESPERATE 64905 -DESPITE 65452 -DESSERT 61051 -DESSERTS 64423 -DESTINATION 60580 -DESTINATIONS 59292 -DESTINY 64657 -DESTROY 64201 -DESTRUCTION 63601 -DESY 62196 -DET 59039 -DETACHED 63792 -DETAIL 55604 -DETAILED 52351 -DETAILS 48751 -DETECTING 64905 -DETECTION 57318 -DETECTIVE 63792 -DETECTOR 60157 -DETECTORS 61152 -DETENTION 65170 -DETERGENT 65170 -DETERMINANTS 63601 -DETERMINATION 57009 -DETERMINE 63601 -DETERMINED 61584 -DETERMINING 60321 -DETRAINMENT 65452 -DETROIT 57046 -DEUCE 65452 -DEUTSCH 60670 -DEUTSCHE 64657 -DEUTSCHLAND 65452 -DEV 56518 -DEVAUGHN 63245 -DEVDase 65452 -DEVELOMENT 59424 -DEVELOP 61152 -DEVELOPED 60580 -DEVELOPER 60492 -DEVELOPERS 62469 -DEVELOPING 56935 -DEVELOPMENT 44590 -DEVELOPMENTAL 60856 -DEVELOPMENTS 53407 -DEVELOPPEMENTS 64905 -DEVI 64905 -DEVICE 51330 -DEVICES 54540 -DEVIL 59491 -DEVILS 64657 -DEVITA 64201 -DEVON 59630 -DEVONSHIRE 65452 -DEVONagent 65452 -DEW 63601 -DEWALT 58688 -DEWEY 63792 -DEWPT 63419 -DEX 62469 -DEXA 61818 -DEXTER 59491 -DEY 61584 -DF 50150 -DFA 59101 -DFAS 59848 -DFB 62917 -DFC 60405 -DFE 59702 -DFG 61940 -DFHMQCON 64905 -DFHMQLOT 60856 -DFHMQTRU 60856 -DFI 57923 -DFID 63601 -DFJ 64201 -DFL 59630 -DFM 65170 -DFO 57609 -DFP 61940 -DFPS 61152 -DFR 63077 -DFS 58417 -DFT 56756 -DFU 63419 -DFW 54360 -DFX 60670 -DFómh 62331 -DG 48487 -DGA 64905 -DGB 61699 -DGD 64905 -DGG 64905 -DGK 65170 -DGS 61051 -DH 47077 -DH's 64905 -DHA 54924 -DHB 63245 -DHC 61362 -DHCP 53630 -DHEA 60000 -DHF 64905 -DHFR 61362 -DHH 60321 -DHHS 58919 -DHI 64905 -DHL 56518 -DHMH 65452 -DHP 63991 -DHPC 61940 -DHR 62331 -DHS 50966 -DHSS 64657 -DHT 57653 -DHTML 55474 -DI 50343 -DIA 57923 -DIABETES 61362 -DIABETIC 64657 -DIABLO 62469 -DIAGF 64657 -DIAGNOESTIC 64657 -DIAGNOSIS 58262 -DIAGNOSTIC 60000 -DIAGNOSTICS 65452 -DIAGRAM 60405 -DIAL 62613 -DIALOGUE 62613 -DIALYSIS 64201 -DIAMETER 60078 -DIAMOND 55323 -DIAMONDS 60321 -DIANA 59923 -DIANE 59491 -DIAPER 64905 -DIAPHRAGM 65452 -DIARIES 63419 -DIARY 57399 -DIAS 64201 -DIAZ 65170 -DIC 56140 -DICE 58262 -DICK 59101 -DICKINSON 64905 -DICOM 64201 -DICTIONARY 62762 -DID 52029 -DIDDY 64657 -DIDGERIDOO 63419 -DIDN'T 59560 -DIDNT 63792 -DIE 53729 -DIECAST 59101 -DIED 64905 -DIEGO 56618 -DIEGO'S 61699 -DIELECTRIC 63601 -DIES 61472 -DIESEL 54380 -DIET 56324 -DIETARY 65452 -DIETS 61940 -DIF 61940 -DIFFERENCE 61256 -DIFFERENCES 63991 -DIFFERENT 55226 -DIFFERENTIAL 60157 -DIFFERENTIATION 63419 -DIFFUSION 63601 -DIFX 64423 -DIG 59039 -DIGEST 60078 -DIGG 52622 -DIGI 64905 -DIGIC 64657 -DIGITAL 49566 -DII 63601 -DIL 63991 -DILLON 62196 -DIM 61152 -DIME 64201 -DIMENSION 60078 -DIMENSIONS 57199 -DIMM 53970 -DIMMs 60321 -DIMOY 61256 -DIN 52447 -DINA 65170 -DINERO 65452 -DINETTE 62762 -DING 63991 -DINING 55274 -DINNER 57482 -DINO 64905 -DINOSAUR 62917 -DINOSAURS 65452 -DIO 62917 -DIODE 60321 -DIODES 63245 -DION 60762 -DIOR 63419 -DIOS 63077 -DIOXIDE 63991 -DIP 55474 -DIPECHO 64657 -DIPLOMA 61152 -DIPLOMATIC 63792 -DIPSTICK 64905 -DIR 55178 -DIRECT 51846 -DIRECTED 57970 -DIRECTION 56050 -DIRECTIONAL 63419 -DIRECTIONS 52597 -DIRECTIVE 62762 -DIRECTIVES 64905 -DIRECTLY 60157 -DIRECTOR 53301 -DIRECTOR'S 62196 -DIRECTORATE 43605 -DIRECTORIES 58979 -DIRECTORS 56050 -DIRECTORY 50966 -DIRECTV 52725 -DIRK 63245 -DIRT 58523 -DIRTY 58745 -DIS 53830 -DISA 64201 -DISABILITIES 62196 -DISABILITY 60321 -DISABLED 58745 -DISADVANTAGED 62917 -DISASTER 60078 -DISC 54419 -DISCARDED 63077 -DISCHARGE 59923 -DISCIPLINE 61818 -DISCLAIM 61256 -DISCLAIMER 51340 -DISCLAIMS 60580 -DISCLOSURE 57399 -DISCLOSURES 65170 -DISCO 58212 -DISCOGRAPHY 60492 -DISCONTINUE 64201 -DISCONTINUED 63601 -DISCOUNT 53847 -DISCOUNTED 65170 -DISCOUNTS 57482 -DISCOVER 58919 -DISCOVERED 65452 -DISCOVERY 58417 -DISCRETE 61362 -DISCRIMINATION 63601 -DISCS 59292 -DISCUSS 57318 -DISCUSSION 46637 -DISCUSSIONS 55711 -DISD 61818 -DISEASE 55474 -DISEASES 58688 -DISH 55474 -DISHES 62917 -DISHWASHER 63991 -DISINFECTANT 65170 -DISK 58017 -DISMISSAL 64423 -DISMISSED 62613 -DISNEY 55631 -DISORDER 61818 -DISORDERS 60670 -DISPATCH 63792 -DISPENSER 62762 -DISPENSERS 63991 -DISPENSING 65452 -DISPERSION 62196 -DISPLACEMENT 63792 -DISPLAY 53597 -DISPLAYNAME 55448 -DISPLAYS 62469 -DISPOSAL 59227 -DISPOSITION 60157 -DISPUTE 63792 -DISQUS 59848 -DISS 65452 -DISSATISFIED 64201 -DISSERTATION 64657 -DISSERTATIONS 63792 -DIST 61584 -DISTANCE 56293 -DISTANCES 63792 -DISTINCT 63792 -DISTINGUISHED 64423 -DISTINGUISHING 64423 -DISTRESS 63601 -DISTRIBUTED 60952 -DISTRIBUTING 65170 -DISTRIBUTION 52886 -DISTRIBUTIONS 59357 -DISTRIBUTOR 63601 -DISTRIBUTORS 61051 -DISTRICT 44751 -DISTRICTS 62196 -DIT 60952 -DITA 61584 -DITOR 64423 -DITP 65170 -DIV 57831 -DIVA 58262 -DIVE 63419 -DIVER 65452 -DIVERS 63245 -DIVERSE 64905 -DIVERSITY 59702 -DIVIDEND 65170 -DIVINE 61472 -DIVING 62196 -DIVISION 46590 -DIVISIONS 63991 -DIVORCE 61472 -DIVX 57199 -DIX 65452 -DIXIE 60238 -DIXON 60238 -DIY 44567 -DIYNetwork 63601 -DIYs 63077 -DJ 39827 -DJ's 54360 -DJIA 57741 -DJIBOUTI 61818 -DJK 63419 -DJNocturnal 64423 -DJS 61362 -DJVU 62613 -DJWebsiteDesigner 64905 -DJing 58919 -DJs 51060 -DK 50040 -DKA 64657 -DKF 62066 -DKK 51434 -DKNY 56050 -DKO 62066 -DKON 60000 -DKP 62762 -DKW 63077 -DL 46086 -DLA 57785 -DLAI 61818 -DLB 63991 -DLC 54439 -DLF 61152 -DLG 64201 -DLK 59702 -DLL 53882 -DLL's 64657 -DLLME 63077 -DLLs 60000 -DLM 61818 -DLO 64657 -DLP 54078 -DLR 59491 -DLS 60321 -DLT 62196 -DLX 60762 -DListed 65452 -DM 46162 -DM's 63991 -DMA 54341 -DMARD 64201 -DMB 59164 -DMC 54245 -DMCA 49695 -DMCC 65170 -DMCs 63991 -DMD 54581 -DME 58577 -DMEM 56080 -DMF 57318 -DMFS 63601 -DMFT 63245 -DMG 58577 -DMH 61699 -DMI 58919 -DMIF 63991 -DMJ 59227 -DMJM 63991 -DMK 64423 -DML 62613 -DMM 59424 -DMMB 62762 -DMMP 59227 -DMN 57440 -DMNA 65170 -DMO 56721 -DMOZ 58212 -DMP 61699 -DMPC 65452 -DMR 57831 -DMS 57609 -DMSO 55578 -DMT 57785 -DMU 62066 -DMV 52712 -DMW 60157 -DMX 54581 -DMZ 56899 -DMs 58470 -DN 51600 -DNA 39033 -DNAPL 62469 -DNAngel 63245 -DNAs 55500 -DNAse 65452 -DNB 63077 -DNC 51238 -DND 63991 -DNF 55934 -DNForum 59774 -DNL 61699 -DNN 57741 -DNO 63792 -DNP 60078 -DNR 53517 -DNRC 63601 -DNS 46877 -DNSstuff 62917 -DNT 62331 -DNV 61256 -DNase 57524 -DO 43369 -DO'S 61051 -DO's 65452 -DOA 56756 -DOAJ 55250 -DOAKTOWN 64423 -DOB 56170 -DOBRO 63792 -DOC 52233 -DOCK 62762 -DOCKET 58979 -DOCS 64657 -DOCSIS 60157 -DOCTOR 57696 -DOCTORS 59702 -DOCTRINE 63601 -DOCUMENT 53934 -DOCUMENTARY 61699 -DOCUMENTATION 58365 -DOCUMENTS 54969 -DOD 51953 -DOD's 60670 -DODGE 55552 -DODGERS 60952 -DODSON 65170 -DOE 51387 -DOE's 60856 -DOES 51148 -DOESN'T 58919 -DOESNT 62196 -DOF 58979 -DOG 52423 -DOGG 64905 -DOGS 58065 -DOH 58365 -DOHC 55323 -DOHERTY 64423 -DOI 44834 -DOIN 63419 -DOING 56721 -DOJ 56618 -DOL 59292 -DOLCE 59424 -DOLE 65452 -DOLL 56293 -DOLLAR 57696 -DOLLARS 58802 -DOLLS 56935 -DOLLY 63245 -DOLPHIN 62469 -DOM 55014 -DOMA 65170 -DOMAIN 51026 -DOMAINS 61699 -DOME 62331 -DOMESTIC 57122 -DOMINGO 63077 -DOMINICA 61699 -DOMINICAN 59923 -DOMINION 65452 -DOMO 61152 -DON 54749 -DON'T 50006 -DON'TS 61699 -DONALD 55604 -DONATE 56687 -DONATED 64905 -DONATION 60238 -DONATIONS 61152 -DONCASTER 64657 -DONE 55500 -DONNA 58365 -DONOR 61818 -DONORS 62613 -DONOVAN 58523 -DONT 52858 -DONUTS 63419 -DOO 57923 -DOOM 60856 -DOONEY 62613 -DOOR 53138 -DOORS 58365 -DOP 62066 -DOPE 62196 -DOPPLER 64905 -DOR 58017 -DORA 65170 -DORCHESTER 65170 -DORE 62613 -DORIS 62331 -DOROTHY 62196 -DORSET 62613 -DORs 64657 -DOS 51122 -DOSAGE 61699 -DOSBox 64657 -DOSE 55398 -DOST 61940 -DOSY 62066 -DOT 50915 -DOT's 64201 -DOTHAN 64201 -DOTS 59774 -DOU 58017 -DOUBLE 51700 -DOUBLES 64905 -DOUBT 65452 -DOUG 62066 -DOUGH 64201 -DOUGLAS 54419 -DOVE 62613 -DOVER 57399 -DOVID 64657 -DOW 58262 -DOWC 65170 -DOWN 50774 -DOWNHILL 64657 -DOWNLOAD 47050 -DOWNLOADED 64201 -DOWNLOADING 64657 -DOWNLOADS 51620 -DOWNS 62613 -DOWNTOWN 59039 -DOXA 60238 -DOYLE 61818 -DOs 64201 -DP 47927 -DPA 59491 -DPBS 64905 -DPC 58745 -DPD 60856 -DPE 63991 -DPF 65170 -DPG 65452 -DPH 58860 -DPHIQ 64905 -DPI 53346 -DPJ 65170 -DPL 61940 -DPM 56652 -DPMS 64657 -DPN 64657 -DPP 58113 -DPPH 60952 -DPR 58417 -DPRK 57741 -DPS 53779 -DPT 61699 -DPV 63419 -DPW 58113 -DPX 65452 -DPhil 64201 -DPhp 64905 -DQ 58417 -DQFN 64423 -DQG 63792 -DQM 62613 -DQS 61256 -DR 45386 -DRA 63077 -DRAFT 51867 -DRAG 63419 -DRAGON 58212 -DRAGONFLY 62331 -DRAGONS 63419 -DRAIN 59227 -DRAINAGE 59630 -DRAKE 59491 -DRAM 55037 -DRAMA 58919 -DRAPSINA 64657 -DRAUSY 65170 -DRAW 58162 -DRAWER 62066 -DRAWING 57785 -DRAWINGS 53066 -DRAWN 63419 -DRB 60405 -DRBC 64423 -DRC 53988 -DRE 59357 -DREAM 54360 -DREAMS 58065 -DRESS 53182 -DRESSES 58017 -DRESSING 63991 -DREW 59424 -DREXEL 64905 -DRG 56791 -DRI 59560 -DRIED 64657 -DRIFT 62469 -DRILL 58313 -DRILLING 57009 -DRINK 57009 -DRINKING 61584 -DRINKS 59848 -DRIP 64657 -DRITAN 63419 -DRIVE 49325 -DRIVEN 60000 -DRIVER 54283 -DRIVERS 55793 -DRIVES 62196 -DRIVEWAY 64905 -DRIVING 55299 -DRJ 65170 -DRL 59227 -DRM 52198 -DRO 56756 -DROD 62331 -DROP 54188 -DROPPING 65452 -DROPS 62613 -DRP 60238 -DRS 56420 -DRUAGA 56791 -DRUG 54459 -DRUGS 56972 -DRUM 55448 -DRUMMOND 56262 -DRUMS 61699 -DRUNK 62917 -DRW 61472 -DRX 65452 -DRY 55992 -DRYER 61940 -DRYING 65452 -DS 41382 -DS's 64201 -DSA 57785 -DSB 61256 -DSBs 62917 -DSC 53331 -DSCC 62917 -DSD 61051 -DSDHA 65170 -DSE 59560 -DSF 62196 -DSG 60157 -DSHS 63245 -DSI 59227 -DSL 46477 -DSLAM 64657 -DSLR 55552 -DSLRs 65452 -DSM 55130 -DSN 56721 -DSO 63245 -DSP 51017 -DSPs 62917 -DSR 59848 -DSRS 63077 -DSS 47328 -DSSS 65452 -DSSTox 61940 -DST 56021 -DSTI 59774 -DSTO 63991 -DSTT 65452 -DSU 63077 -DSUs 65170 -DSW 59774 -DSWD 64905 -DSX 61940 -DServe 64423 -DSi 57566 -DSpace 46020 -DT 50101 -DTA 62196 -DTC 57278 -DTCC 61472 -DTD 59292 -DTE 60952 -DTF 63245 -DTG 63419 -DTH 59424 -DTI 58417 -DTIC 62469 -DTIC's 56231 -DTK 65170 -DTL 63601 -DTM 57785 -DTMF 64201 -DTN 62331 -DTP 58802 -DTPA 64423 -DTR 59848 -DTS 54302 -DTT 60078 -DTTC 61818 -DTU 61362 -DTV 52699 -DU 51783 -DUAL 54479 -DUANE 64423 -DUB 56862 -DUBAI 61256 -DUBAMED 62196 -DUBLIN 57440 -DUBZ 64201 -DUC 63419 -DUCATI 63601 -DUCATION 65452 -DUCK 60762 -DUCKS 65452 -DUCT 63245 -DUDE 61152 -DUDLEY 63077 -DUE 53830 -DUFF 65170 -DUFFY 61152 -DUI 47493 -DUKA 63792 -DUKE 59292 -DUKES 64657 -DULCIMER 64423 -DULUTH 64423 -DULY 63991 -DUM 62762 -DUMB 61256 -DUMBO 61818 -DUMMY 63991 -DUMP 62331 -DUMPED 64423 -DUN 62469 -DUNCAN 60670 -DUNDEE 63792 -DUNE 65170 -DUNEDIN 63792 -DUNERS 61256 -DUNK 64423 -DUNN 61940 -DUNS 62613 -DUO 57970 -DUOGARD 65452 -DUP 60952 -DUPLEX 60321 -DUPLICATE 63245 -DUPLIN 64201 -DUPLO 63792 -DURAN 63601 -DURANGO 63601 -DURATION 59630 -DURHAM 59101 -DURING 52447 -DURTY 65170 -DUST 58365 -DUSTIN 64423 -DUT 64201 -DUTCH 60078 -DUTCHWEST 64423 -DUTIES 58113 -DUTY 56050 -DV 49553 -DVB 55631 -DVBRip 64905 -DVBViewer 63419 -DVC 60000 -DVCAM 62762 -DVD 34880 -DVD'S 63991 -DVD'er 54770 -DVD's 51131 -DVDFab 57696 -DVDR 57653 -DVDRIP 59923 -DVDRW 61152 -DVDRiP 57566 -DVDRip 49939 -DVDS 57970 -DVDSCR 58860 -DVDSP 63792 -DVDVHSCDAll 59848 -DVDrip 56652 -DVDs 40906 -DVI 51248 -DVLA 57238 -DVM 58632 -DVP 64423 -DVR 50026 -DVRs 55963 -DVS 58017 -DVSX 60580 -DVT 58365 -DW 49076 -DWARF 63077 -DWC 63792 -DWDM 62196 -DWELLING 64423 -DWG 55992 -DWI 50213 -DWIGHT 63601 -DWNT 63245 -DWORD 60580 -DWP 60321 -DWR 56827 -DWS 61152 -DWSmith 62331 -DWTS 59039 -DX 50881 -DXA 59357 -DXB 64423 -DXF 57318 -DXG 64201 -DXVNL 62331 -DXi 65170 -DXplain 65452 -DY 57609 -DYC 60670 -DYE 62762 -DYING 61940 -DYLAN 61940 -DYMO 63419 -DYNA 63601 -DYNAMIC 57524 -DYNAMICS 58470 -DYNAMIQUE 62917 -DYNAMITE 63792 -DYNO 60856 -DZ 58632 -DZone 60405 -Da 44980 -DaCosta 65452 -DaKine 61699 -DaPenningtons 63792 -DaUserbarMaker 61584 -DaVBMan 62613 -DaVinci 60952 -DaVita 65170 -Daan 63792 -Daas 65170 -Daath 64657 -Dab 64657 -Dabber 60856 -Dabble 63792 -Dabney 64423 -Dabs 63077 -Dac 65452 -Daca 65170 -Dace 64657 -Dacha 65452 -Dachshund 58417 -Dacia 59164 -Dacor 62762 -Dacorum 63419 -Dacre 61818 -Dacron 65170 -Dacula 64657 -Dad 46625 -Dad's 54499 -DadLabs 62469 -DadSeattle 62331 -Dada 57160 -Dadar 64905 -Daddario 64201 -Daddies 62066 -Daddio's 64657 -Daddy 47283 -Daddy's 55604 -DaddyPaycheck 64657 -Dade 54643 -Dadi 63601 -Dado 63792 -Dados 65170 -Dadra 60321 -Dads 53346 -Dae 60670 -Daedalus 59101 -Daedric 64201 -Daegu 58577 -Daemon 58212 -Daerah 62762 -Daewoo 52559 -Daf 63792 -Dafa 63077 -Daffodil 61940 -Daffodils 63792 -Daffy 60580 -Dafoe 60580 -Daft 53988 -Daftar 62613 -Dafydd 62331 -Dag 58417 -Dagenham 55398 -Dagger 55130 -Daggers 58417 -Daggerspine 59491 -Daggett 64657 -Dagmar 61051 -Dagny 65452 -Dagoberto 65452 -Dagon 63419 -Dah 63991 -DahVeed 65452 -Dahl 54439 -Dahlback 64201 -Dahle 63077 -Dahlgren 57399 -Dahli 62762 -Dahlia 57923 -Dahlin 63991 -Dahlonega 65452 -Dahon 59227 -Dai 55906 -Daigaku 65170 -Daignière 63792 -Daihatsu 55274 -Daiichi 62762 -Daiji 65170 -Dail 61940 -Dailey 59227 -Dailies 60952 -Daily 36649 -Daily's 65170 -DailyCandy 63419 -DailyMotion 60078 -DailyTunes 60856 -Dailymotion 50940 -Daimler 55604 -DaimlerChrysler 60000 -Dain 61940 -Dainese 65170 -Daintree 59164 -Daioh 62196 -Daiquiri 64201 -Dairies 64657 -Dairy 47634 -Daisies 56551 -Daisuke 59702 -Daisy 49986 -Daiwa 58802 -Daj 65170 -Dakar 56388 -Dake 61051 -Dakine 51560 -Dakota 40678 -Dakota's 61584 -Dakotacare 62917 -Dakotas 64423 -Dal 55604 -Dalai 54023 -Dalal 63991 -Dalaran 59039 -Dalasi 64201 -Dalat 62917 -Dalby 61940 -Dale 45492 -Dale's 60856 -Dalek 58470 -Daleks 63245 -Dalene 64905 -Daler 65452 -Dales 58632 -Daley 55373 -Dalgarno 65452 -Dalgety 64905 -Dalhousie 57524 -Dali 56262 -Dali's 64657 -Dalia 64201 -Dalian 56862 -Dalila 64201 -Dalit 61584 -Dalits 62066 -Dalkeith 63245 -Dalkey 65452 -Dalla 62331 -Dallaglio 64657 -Dallas 40800 -Dalles 64657 -Dally 64905 -Dalmatas 65170 -Dalmatia 64201 -Dalmatian 59039 -Dalmatians 65170 -Dalmation 64657 -Dalrymple 62613 -Dalston 61256 -Daltile 63077 -Dalton 51193 -Dalvengyr 60952 -Daly 52007 -Daly's 63245 -Dalyan 63419 -Dalziel 60078 -Dalí 62196 -Dam 50019 -Dama 63601 -Damage 46865 -Damaged 54519 -Damages 55934 -Damaging 62917 -Daman 60078 -Damaraland 65170 -Damas 63601 -Damascus 54540 -Damask 59164 -Dame 49505 -Damen 59923 -Dames 61818 -Dameware 59560 -Damian 51312 -Damiano 65170 -Damien 52387 -Damier 58470 -Damion 61818 -Damir 63792 -Damm 62613 -Dammam 61818 -Damme 60762 -Damn 49821 -Damnation 57831 -Damned 57084 -Damnwells 62613 -Damon 51175 -Damon's 64423 -Damp 59424 -Damper 59702 -Dampers 62331 -Dampier 62469 -Damping 60078 -Dams 59560 -Dan 41661 -Dan's 55711 -DanC 64423 -Dana 47641 -Dana's 61051 -Danae 62762 -Danaher 65452 -Danang 63991 -Danaus 63991 -Danbury 56140 -Danby 57566 -Dance 39732 -DanceHatx 64201 -DanceJam 64423 -Danceflash 61472 -Dancefloor 62613 -Dancehall 56935 -Dancer 52141 -Dancers 53630 -Dances 54479 -Dancewear 60157 -Dancin 63601 -Dancing 44778 -Dancy 64201 -Dandelion 58688 -Dandenong 60238 -Dandie 64905 -Dandruff 64423 -Dandy 56140 -Dane 51034 -Daneel 62917 -Danelectro 59630 -Danes 56551 -Danesfort 65452 -Danforth 59630 -Danfoss 65452 -Dang 57238 -Danger 49130 -Dangerfield 65452 -Dangerous 46446 -Dangerously 61472 -Dangers 54380 -Dangle 58470 -Dangling 61818 -Dango 58919 -Dani 53988 -Dani's 58470 -DaniWeb 57741 -Dania 58860 -Danian 61940 -Danica 53712 -Danie 65452 -Daniel 41127 -Daniel's 53813 -Daniela 55526 -Daniele 57199 -Daniella 59424 -Danielle 49257 -Danielle's 64905 -Daniels 51184 -Danielson 59923 -Danii 63991 -Danijel 62917 -Danijela 63792 -Danilo 59101 -Danio 64905 -Danisco 64657 -Danish 45787 -Danity 56899 -Daniusoft 61051 -Dank 60405 -Danke 61256 -Danko 62331 -Danks 64201 -Danmar 64905 -Danmark 55657 -Dann 56862 -Danna 62196 -Danner 56420 -Danni 58065 -Dannible 64657 -Dannii 59292 -Danny 45870 -Danny's 58860 -Dano 65452 -Danone 65170 -Dans 56293 -Danse 60405 -Dansk 45979 -Danske 60321 -Danskin 63991 -Dansko 60000 -Dansville 65170 -Dante 54581 -Dante's 59702 -Danton 62331 -Danube 55766 -Danuta 64657 -Danvers 59702 -Danville 55657 -Danwei 60580 -Dany 59630 -Danza 58802 -Danze 61699 -Danzig 59774 -Danziger 63419 -Dança 65170 -Dao 58365 -Daoud 65170 -Dap 64201 -Daphne 53024 -Daphne's 64905 -Daphnia 59424 -Dapkus 62331 -Dapper 55037 -Dappled 65452 -Dar 53565 -Dara 58065 -Darby 55398 -Darby's 63077 -Darcy 54601 -Darcy's 61584 -Darden 58802 -Dare 51752 -Daredevil 59039 -Darel 64905 -Daren 61818 -Dares 60157 -Darfield 63792 -Darfur 52423 -Dargaville 64905 -Dargis 65452 -Dari 59292 -Daria 58577 -Darian 63792 -Darien 56935 -Darin 57009 -Darina 64657 -Daring 51610 -Dario 55299 -Darius 54264 -Dariush 65452 -Darjeeling 56200 -Dark 40573 -DarkKnight 64657 -DarkMindZ 65452 -DarkPhire 61472 -DarkTwilightFox 63245 -Darkane 62331 -Darkblue 65170 -Darke 62196 -Darkened 63792 -Darker 58162 -Darkest 56356 -Darkfall 60580 -Darkly 60952 -Darkmoon 59357 -Darkness 49608 -Darko 58577 -Darkroom 55821 -Darks 65452 -Darkshore 60238 -Darkside 58262 -Darksorrow 64423 -Darkspear 57923 -Darkstalkers 62196 -Darkstar 62066 -Darl 63077 -Darla 59164 -Darlene 54560 -Darley 60492 -Darlin 64423 -Darling 51482 -Darling's 63991 -Darlinghurst 61818 -Darlings 63601 -Darlington 52805 -Darmstadt 60238 -Darn 57609 -Darna 65452 -Darnassus 60580 -Darnell 57970 -Daron 63601 -Darphin 65452 -Darque 64201 -Darragh 63792 -Darraweit 64201 -Darrel 58979 -Darrell 52712 -Darren 48404 -Darrin 58577 -Darrow 62196 -Darrowmere 60856 -Darryl 52765 -Darryn 65452 -Darshan 60856 -Dart 53952 -Dartford 56791 -Darth 53331 -Dartmoor 58688 -Dartmouth 52085 -Darts 52739 -Darussalam 48716 -Darvin 65170 -Darvocet 59774 -Darvon 61051 -Darwen 55711 -Darwin 48368 -Darwin's 57609 -Darwinian 59560 -Darwinism 63245 -Daryl 53882 -Das 49124 -Dasa 64657 -Dasara 64201 -Dasavatharam 60952 -Daschle 64657 -Dasgupta 62331 -Dash 49584 -Dasha 64201 -Dashade 64423 -Dashboard 45889 -Dashboards 61472 -Dashed 59774 -Dashes 63245 -Dashiell 64423 -Dashing 62331 -Dasma 65452 -Dass 62196 -Dassault 60000 -Dat 55178 -DatPiff 65452 -Data 34052 -Data's 64423 -DataBase 63601 -DataCenter 64657 -DataComm 65452 -DataCore 65452 -DataDirect 60670 -DataGrid 60000 -DataGridView 65170 -DataMap 63792 -DataMax 64657 -DataMirror 63991 -DataQuest 64423 -DataSet 39913 -DataSets 42790 -DataSource 65452 -DataSourceName 64905 -DataTraveler 60405 -DataXtend 61152 -Databank 60670 -Database 37918 -DatabaseNotebook 61699 -Databases 40790 -Databinding 60238 -Datacard 63601 -Datacenter 57318 -Datacom 65452 -Datafarm 65452 -Datagrid 64201 -Datalogic 59848 -Datamation 62331 -Datamax 62613 -Datamonitor 60492 -Dataset 55684 -Datasets 57238 -Datasheet 50350 -Datasheets 54041 -Datatype 63991 -Date 33481 -DateFmt 61362 -DatePicker 65452 -DateRange 54459 -DateTime 53438 -Datebook 61472 -Datecode 65452 -Dated 52484 -Datei 64201 -Datel 60670 -Dateline 56356 -Daten 61362 -Datenblatt 61256 -Datenschutz 61584 -DateofCreation 63792 -Dates 44923 -Datewise 57440 -Dath'Remar 60492 -Dati 64905 -Dating 40003 -Dato 63991 -Datos 61699 -Datsun 55373 -Datsuns 65452 -Datta 57696 -Datu 64905 -Datuk 61152 -Datum 58365 -Datura 64201 -Dau 62917 -Daub 65452 -Daudi 64905 -Daugherty 60762 -Daughter 50136 -Daughter's 58417 -Daughters 53679 -Daughtry 58523 -Daum 64423 -Dauner 65452 -Daunte 63419 -Dauphin 57278 -Dauphine 65170 -Davalos 65452 -Davao 58632 -Dave 41455 -Dave's 52571 -Davee 64905 -Davenham 61362 -Davenport 51804 -Daventry 61472 -Daves 59357 -Davey 55130 -Daviau 65452 -David 35258 -David's 52256 -DavidRowen 63077 -Davida 61818 -Davide 57876 -Davidoff 55738 -Davids 58745 -Davidson 48182 -Davidson's 63792 -Davie 57970 -Davies 49319 -Davies's 63077 -Daviess 60238 -Davin 63077 -Davina 60762 -Davis 42448 -Davis's 59848 -Davison 57482 -Davoren 64905 -Davos 60078 -Davy 55738 -Daw 62331 -Dawa 64657 -Dawe 65452 -Daweh 63601 -Dawes 56485 -Dawg 57238 -DawgDay 64423 -Dawgs 53286 -Dawkins 57046 -Dawley 62331 -Dawlish 64905 -Dawn 45495 -Dawn's 62917 -Dawning 65170 -Dawson 50694 -Dawson's 61699 -Dax 58017 -Daxian 65170 -Daxter 57785 -Day 34397 -Day's 56080 -Daya 61940 -Dayal 64423 -Dayan 64201 -Dayana 56050 -Daybed 61584 -Daybeds 64657 -Daybook 64423 -Daybreak 60157 -Daycare 54643 -Daydream 58979 -Daydreams 64905 -Dayenn 62762 -Dayhoff 63077 -Dayle 64201 -Daylife 54005 -Daylight 52339 -Dayna 61152 -Daynard 65452 -Dayoan 61818 -Daypack 64423 -Daypacks 62196 -Days 38729 -Dayspring 64201 -Daystar 62331 -Daytime 51463 -Dayton 48949 -Daytona 49972 -Daytrotter 64657 -Daz 60157 -Dazaifu 58470 -Daze 56972 -Dazed 60670 -Dazzle 57238 -Dazzling 59848 -Db 56324 -DbDirectory 54341 -Dba 63419 -Dbl 63792 -Dbz 61818 -Dc 56050 -Dd 64423 -Dds 62613 -De 39690 -DeAndre 65170 -DeAngelo 63077 -DeAnna 65170 -DeArmond 63245 -DeBary 65170 -DeCarlo 64905 -DeFrancesco 62917 -DeFranco 61940 -DeGeneres 53847 -DeGraw 59630 -DeKaP 65452 -DeKalb 56756 -DeLana 60000 -DeLong 59923 -DeLonge 64905 -DeLonghi 58113 -DeLorean 63245 -DeLorme 65452 -DeLuca 63419 -DeLuna 64423 -DeMarco 60670 -DeMarini 61256 -DeMatha 58065 -DeMille 64657 -DeNiro 65170 -DePaul 57009 -DePauw 59227 -DeRosa 64423 -DeSean 65452 -DeSmogBlog 64423 -DeSoto 58470 -DeVille 61818 -DeVito 62066 -DeVlieg 65170 -DeVries 63991 -DeVry 55202 -DeWALT 59923 -DeWalt 57653 -DeWayne 63077 -DeWitt 57122 -DeYoung 64201 -Dea 63077 -Deacon 54924 -Deacon's 64905 -Deaconess 60000 -Deacons 59630 -Deactivate 65170 -Deactivated 64657 -Dead 41374 -Deadbeat 60157 -Deadheads 65452 -Deadliest 59039 -Deadlift 64657 -Deadline 49405 -Deadlines 54170 -Deadlock 63991 -Deadlocked 62469 -Deadly 51157 -Deadman 63601 -Deadmines 59630 -Deadpool 64905 -Deadspace 60492 -Deadspin 60078 -DeadspinIsiah 63419 -DeadspinLive 65170 -Deadwind 60952 -Deadwood 59923 -Deaf 51248 -Deafness 59357 -Deakin 59560 -Deakins 65452 -Deal 43671 -DealBook 61940 -DealExtreme 62469 -DealTaker 62331 -DealTime 55934 -Dealbreaker 64657 -Dealer 42948 -Dealer's 59357 -Dealers 42734 -Dealership 54133 -Dealerships 55992 -Dealhack 64657 -Dealighted 61152 -Dealing 51060 -Dealings 61584 -Dealmaker 65170 -Dealmakers 65170 -Deals 37785 -DealsCars 61152 -Dealscape 64423 -Dealt 62066 -Dean 44024 -Dean's 53271 -Deana 61699 -Deane 59227 -Deanery 63245 -Deanna 55906 -Deanne 62066 -Deano 65170 -Deans 56518 -Dear 44180 -DearS 65170 -DearSugar 63601 -Dearborn 53952 -Dearden 63419 -Dearest 60492 -Dears 62917 -Dearth 62331 -Deas 61940 -Death 40901 -Death's 64905 -Deathknell 65170 -Deathly 57609 -Deathmatch 59848 -Deaths 49157 -Deathskull 64423 -Deathsquad 64905 -Deathwatch 63419 -Deathwing 58979 -Deathwish 62762 -Deaton 63991 -Deauville 58523 -Deauvono 64657 -Deauxma 65170 -Deb 52913 -Deb's 63792 -Debacle 62613 -Debate 45166 -Debaters 63245 -Debates 49639 -Debating 60762 -Debbi 63419 -Debbie 48811 -Debbie's 63991 -Debby 58162 -Debenhams 61699 -Debentures 62917 -Debevoise 64657 -Debi 58979 -Debian 50537 -Debio 65170 -Debiopharm 63991 -Debit 52752 -Debonair 65170 -Debora 62762 -Deborah 47435 -Deborah's 64423 -Debord 64201 -Debra 50206 -Debrecen 65452 -Debrief 65170 -Debris 56827 -Debs 49547 -Debt 42260 -Debtor 58979 -Debtor's 63792 -Debtors 60078 -Debts 56110 -Debug 53256 -Debugger 56721 -Debugging 55934 -Debunked 63991 -Debunking 60157 -Debussy 62469 -Debut 52778 -Debutante 62066 -Debuting 65170 -Debuts 56021 -Debye 58802 -Dec 36195 -Deca 62917 -Decade 53501 -Decade's 62762 -Decadence 63991 -Decadent 61472 -Decades 57046 -Decaf 62762 -Decaffeinated 64423 -Decal 55631 -Decale 64657 -Decals 52411 -Decanter 58470 -Decanters 62917 -Decanting 61699 -Decathlon 65452 -Decatur 52546 -Decay 54419 -Decaying 65170 -Decca 61699 -Deccan 59424 -Deceased 57238 -Deceit 64905 -Deceiver 64657 -December 34202 -Decemberists 63077 -Decency 64201 -Decent 52996 -Decentralization 60762 -Decentralized 58113 -Decepticons 63419 -Deception 56791 -Deceptive 62196 -Dechert 65170 -Decibel 62917 -Decide 54685 -Decided 54439 -Decides 57653 -Deciding 56231 -Deciduous 62469 -Decimal 58212 -DecimalFormat 65170 -Decimals 63245 -Deciphering 64905 -Decision 43156 -Decisions 49022 -Decisive 57653 -Deck 47585 -Deckard 63601 -Deckard's 65452 -Deckelman 64905 -Decker 51321 -Deckers 65452 -Decking 58745 -Deckman 65170 -Decks 52472 -Declan 55423 -Declarant 64905 -Declaration 48450 -Declarations 57566 -Declarative 62917 -Declaratory 61051 -Declare 56110 -Declared 57084 -Declares 52872 -Declaring 61152 -Decleor 63601 -Decline 53630 -Declined 63245 -Declines 59292 -Declining 58745 -Declutter 61472 -Deco 51741 -DecoLav 62613 -Decode 58313 -Decoded 59560 -Decoder 52913 -Decoders 61818 -Decoding 57160 -Decolav 64201 -Decolonization 64905 -Decommissioning 61584 -Decompiler 60078 -Decomposing 63245 -Decomposition 56262 -Decompression 61699 -Deconstructed 55423 -Deconstructing 63601 -Deconstruction 64657 -Decontamination 63601 -Deconvolution 65170 -Decor 45838 -Decora 58802 -Decorah 62917 -Decorate 55250 -Decorated 57524 -Decorating 47507 -Decoration 49886 -Decorations 49657 -Decorative 47420 -Decorator 57482 -Decorators 55130 -Decorlux 63419 -Decoupage 65170 -Decoupling 64201 -Decoy 62917 -Decoys 61152 -Decrease 48756 -Decreased 55552 -Decreases 60492 -Decreasing 60000 -Decree 54601 -Decrees 64423 -Decryper 65170 -Decrypt 62917 -Decrypter 61152 -Decryption 63245 -Dect 63077 -Deda 62917 -Dede 63077 -Dedham 62331 -Dedicate 55130 -Dedicated 47668 -DedicatedNOW 65170 -Dedicates 63601 -Dedication 55154 -Dedications 61818 -Deductible 59101 -Deduction 58262 -Deductions 59923 -Dee 48938 -Dee's 62917 -DeeJay 65170 -Deeb 64657 -Deed 53813 -Deeds 53533 -Deegan 63792 -Deejay 60670 -Deel 62331 -Deeley 64905 -Deemed 60670 -Deen 57970 -Deena 61051 -Deep 43124 -Deepa 61699 -Deepak 56756 -Deepavali 62331 -Deepawali 63077 -Deepen 58688 -Deepening 62469 -Deeper 55578 -Deepest 61256 -Deepika 55934 -Deeply 60238 -Deeprun 61152 -Deeps 60580 -Deepthroat 62917 -Deepwater 62762 -Deer 46989 -Deere 51804 -Deerfield 54023 -Deerhoof 57653 -Deerhound 65452 -Deerhunter 63245 -Deering 61472 -Dees 60952 -DeesDivineDesigns 64905 -Deeside 59923 -Deewana 64657 -Deez 61152 -Deezer 63245 -Def 51358 -Defamation 61699 -Defamatory 60762 -Defamer 57653 -Defamercharlie 63991 -Defamerelisabeth 65452 -Default 44089 -Defaulted 62762 -Defaults 57741 -Defcon 63077 -Defeased 63601 -Defeat 53988 -Defeated 62331 -Defeating 63601 -Defeats 60952 -Defect 53124 -Defected 64201 -Defective 52818 -Defects 52152 -Defence 47187 -Defences 63601 -Defend 53095 -Defendant 51640 -Defendant's 57278 -Defendants 56356 -Defender 50734 -Defenders 57009 -Defending 55130 -Defends 57923 -Defense 42244 -Defense's 63601 -Defenses 61362 -Defensive 52351 -Defensor 65170 -Defer 63991 -Deferral 63245 -Deferred 55631 -Defers 64905 -Defi 63077 -Defiance 57970 -Defiant 59923 -Defias 60000 -Defibrillator 58470 -Defibrillators 59292 -Deficiencies 59560 -Deficiency 53646 -Deficient 60762 -Deficit 53865 -Deficits 58802 -Definately 60078 -Define 49834 -Defined 53095 -Defines 57876 -Defining 51814 -Definite 60238 -Definitely 51425 -Definition 45182 -DefinitionBiology 61472 -DefinitionMedicine 61472 -Definitions 49006 -Definitive 51453 -Deflation 62196 -Deflection 62917 -Deflectometer 64657 -Deflector 58262 -Deflectors 63245 -Defloration 63245 -Defnyddio 64905 -Defoe 61051 -Deford 64657 -Deforestation 62469 -Deformable 65170 -Deformation 57084 -Deformations 65452 -Deformed 65452 -Defra 61472 -Defrag 63245 -Defragment 63077 -Defragmentation 63991 -Defrost 60856 -Defroster 64905 -Defrostmode 62196 -Deftones 59424 -Defunct 63419 -Defy 55398 -Defying 57741 -Deg 61051 -Degas 62762 -Degenerate 64905 -Degeneration 57009 -Degenerative 59560 -Degeneres 62762 -Degg 62066 -Degradation 55711 -Degrade 64905 -Degrassi 60078 -Degraw 63991 -Degreaser 65452 -Degreasers 65452 -Degreasing 64657 -Degree 43836 -Degrees 45088 -Degussa 64201 -Dehaviland 64657 -Dehli 65170 -Dehradun 62469 -Dehumidifier 60952 -Dehumidifiers 56293 -Dehydrated 63419 -Dehydration 60580 -Dehydrogenase 60762 -Dei 56687 -Deiat 65170 -Deichkind 61152 -Deicide 63077 -Deidre 60952 -Deighton 64905 -Deilvery 58577 -Dein 62469 -Deine 58212 -Deion 61362 -Deir 62613 -Deirdre 58523 -Deitel 63991 -Deities 63077 -Deity 58860 -Deja 56551 -DejaView 60670 -Dejan 61362 -Dek 64423 -Deka 63077 -Dekalb 59292 -Dekaron 64201 -Deke 61699 -Dekh 63792 -Dekker 60952 -Del 45243 -DelIcioUs 64201 -Dela 61818 -Delacorte 64201 -Delacroix 63991 -Delafield 65452 -Delage 65170 -Delahaye 64657 -Delain 64905 -Delamere 63991 -Deland 63419 -Delaney 55423 -Delano 58860 -Delany 60000 -Delany's 61818 -Delaunay 57084 -Delavan 64201 -Delaware 42685 -Delaware's 64657 -Delay 50081 -DelayUpdates 65452 -Delayed 51700 -Delaying 63601 -Delays 48841 -Delbert 60405 -Delco 60856 -Delegate 53361 -Delegated 55037 -Delegates 53138 -Delegation 55107 -Delegations 61256 -Deleon 64905 -Delerium 62066 -Delete 43824 -DeleteDocument 62196 -DeleteRow 62066 -Deleted 53052 -Deletes 63245 -Deleting 56262 -Deletion 55793 -Deletions 64423 -Deleuze 65170 -Delf 64423 -Delfield 65452 -Delfin 62762 -Delfino 63601 -Delft 56452 -Delgado 56827 -Delhaize 63792 -Delhi 44563 -Delhi's 64201 -Deli 50646 -Delia 55448 -Deliberate 62196 -Deliberation 62196 -Deliberations 64423 -Deliberative 64423 -Delicacies 64423 -Delicate 58470 -Delicatessen 58065 -Delicatessens 60321 -Delicious 44688 -Deliciously 65452 -Delight 52805 -Delighted 63077 -Delightful 59491 -Delightfully 64905 -Delights 57524 -Delilah 57653 -Delile 61584 -Delimited 55500 -Delineation 61051 -Delinquency 59560 -Delinquent 58365 -Delirious 60952 -Delirium 58919 -Delis 61940 -Delish 65170 -Delisted 62917 -Deliv 65452 -Deliver 51340 -Deliverable 64657 -Deliverables 61699 -Deliverance 58523 -Delivered 46625 -Deliveries 55684 -Delivering 53316 -Delivers 52622 -Delivery 39646 -Delkin 64201 -Dell 41717 -Dell's 56862 -Della 55398 -Dellaco 65452 -Delle 64423 -Dells 55631 -Dellums 63792 -Delmar 59424 -Delmarva 63419 -Deloitte 52913 -Deloitte's 64905 -Delon 63419 -Delonas 63077 -Delonghi 57609 -Delonte 64905 -Delorean 61362 -Delores 60321 -Delos 61152 -Delp 63245 -Delphi 50607 -Delphine 61699 -Delray 55793 -Delrin 64905 -Delt 62066 -Delta 43697 -Delta's 59630 -Deltaanime 64905 -Deltech 63245 -Delton 63077 -Deltona 62917 -Deluca 64905 -Deluge 54601 -Deluna 61940 -Delusion 61152 -Delusions 62196 -Delux 62196 -Deluxe 44435 -Delve 63601 -Dem 52164 -Demand 43721 -DemandFactor 64423 -Demande 61472 -Demanded 65170 -Demanding 60492 -Demands 56262 -Demarco 62762 -Demarest 65170 -Demdaco 65170 -Demented 64201 -Dementia 53485 -Dementieva 63419 -Demers 64201 -Demeter 60856 -Demetri 62331 -Demetrios 61818 -Demetrius 59292 -Demi 50537 -Demigod 64657 -Demimonde 63077 -Deming 61051 -Demir 62613 -Demirel 63792 -Demis 62196 -Demise 59923 -Demitasse 64657 -Demmi 64905 -Demo 44480 -Demo's 65170 -Democracies 62917 -Democracy 46918 -Democrat 48292 -Democratic 42243 -Democratization 64905 -Democrats 45892 -Demographic 50991 -Demographics 48318 -Demography 58313 -Demolish 63991 -Demolished 60321 -Demolition 52096 -Demon 50615 -Demon's 62196 -Demonax 64657 -Demonia 64905 -Demonic 60856 -Demonoid 61256 -Demonology 65452 -Demons 53485 -Demonstrate 55274 -Demonstrated 54005 -Demonstrates 56485 -Demonstrating 59923 -Demonstration 51453 -Demonstrations 56862 -Demonstrative 65452 -Demonstrator 63991 -Demonstrators 62066 -Demonte 64905 -Demos 50129 -Demosthenes 65170 -Demotivational 63991 -Dempsey 55107 -Dempster 59357 -Dems 53361 -Demystified 61472 -Demystifying 59848 -Den 48776 -DenRA 59923 -Dena 59292 -Denali 53517 -Denarau 63991 -Denaro 65452 -Denavir 63792 -Denbigh 57566 -Denbighshire 58017 -Denbow 64905 -Denby 57923 -Dench 65170 -Dendritic 59774 -Dendrobium 62196 -Dene 62917 -Deneck 64201 -Denes 65170 -Deneuve 61818 -Deneuve's 63792 -Deneve 58919 -Deng 57084 -Dengue 58745 -Denham 57238 -Deni 62613 -Denial 53565 -Denice 65452 -Denied 56652 -Denier 64905 -Deniers 62762 -Denies 56652 -Denilson 64905 -Denim 50553 -Denimology 65170 -Denis 51275 -Denisa 63601 -Denise 48327 -Denise's 64201 -Denison 56827 -Denitrification 65170 -Deniz 60670 -Denke 65452 -Denman 61362 -Denmark 42470 -Denmark's 58860 -Denn 65170 -Dennen 65170 -Denner 62331 -Dennett 64657 -Denney 64423 -Denning 62762 -Dennis 44138 -Dennis's 65452 -Dennison 58860 -Dennou 63991 -Denny 53301 -Denny's 58523 -Denomination 62469 -Denominations 63792 -Denon 54835 -Denote 58417 -Denotes 59560 -Denoting 63601 -Denounce 65170 -Denounced 65452 -Denounces 63991 -Denpasar 63077 -Dense 58979 -Densely 65452 -Densetsu 62613 -Densification 65452 -Densities 61699 -Densitometry 65170 -Density 49701 -Densité 64423 -Denso 62613 -Dent 49130 -Dental 42658 -Dentarg 59560 -Dente 64423 -Dentist 49834 -Dentistry 47907 -Dentists 47811 -Dentofacial 61584 -Denton 52765 -Dents 65170 -Denture 63245 -Dentures 60238 -Denver 42014 -Denver's 59630 -Denville 62613 -Deny 58979 -Denying 63245 -Denys 62196 -Denyse 63077 -Denzel 57440 -Denzil 64657 -Deo 60157 -Deodorant 56324 -Deodorants 60580 -Deodorizing 59848 -Deol 60580 -Deon 64657 -Deore 64201 -Deoxyribonucleic 64657 -Dep 60000 -Dep't 61362 -DepED 64657 -DepOsit 64201 -Depakote 65170 -Depart 54114 -Departament 57923 -Departamento 54226 -Departed 60670 -Departement 59774 -Departing 54459 -Department 33321 -Department's 52210 -Departmental 52968 -Departments 41036 -Departs 61362 -Departure 49860 -DepartureLife 62917 -Departures 56518 -Depeche 53952 -Depend 60856 -Dependability 64423 -Dependable 59101 -Dependant 62762 -Dependence 54622 -Dependencies 60078 -Dependency 54879 -Dependent 54341 -Dependents 63601 -Depending 48831 -Depends 54023 -Depicting 59424 -Depiction 65170 -Depicts 62066 -Depleted 62469 -Depletion 57524 -Deploy 56618 -Deployed 61152 -Deploying 56485 -Deployment 49584 -Deployments 61256 -Deploys 60492 -Depo 63077 -Depolarization 63991 -Deportation 59491 -Deporte 64657 -Deportes 59227 -Deportivo 60078 -Deposit 47964 -Depositary 61699 -Deposited 58162 -Depositing 62331 -Deposition 56050 -Depository 58313 -Deposits 53331 -Depot 46598 -Depot's 62917 -Depots 63601 -Depp 53695 -Deprecated 55526 -Depreciation 55877 -Depress 63601 -Depressants 65452 -Depressed 57278 -Depressing 63991 -Depression 46491 -Depressive 57122 -Deprivation 57440 -Deprived 63077 -Dept 47968 -Deptford 58919 -Depth 46274 -Depths 57696 -Depts 58745 -Depucelage 62762 -Deputies 58417 -Deputy 45690 -Der 49108 -Dera 64905 -Derailed 64423 -Derailleur 60321 -Derailleurs 61152 -Derangement 65452 -Derbi 62469 -Derby 47031 -Derbyan 64201 -Derbyshire 50702 -Derdian 61940 -Derecho 64423 -Derechos 63419 -Deregulation 60078 -Dereham 63419 -Derek 47228 -Derek's 62762 -Derelict 63792 -Dereon 65452 -Derick 64423 -Derik 63419 -Dering 53226 -Deripaska 62331 -Derivation 59491 -Derivative 53454 -Derivatives 52622 -Derive 58919 -Derived 55578 -Deriving 62762 -Derlam 61818 -Derm 61472 -Derma 63419 -Dermaheal 64905 -Dermal 60321 -Dermalogica 57238 -Dermat 63792 -Dermatitis 57876 -Dermatol 50234 -Dermatologic 60157 -Dermatological 64423 -Dermatologist 60000 -Dermatologists 62196 -Dermatology 49336 -Dermatopathology 64201 -Dermititis 65452 -Dermoid 59560 -Dermot 57970 -Dern 63419 -Dernière 65170 -Derogatory 63991 -Deron 62613 -Derrick 52096 -Derrida 61362 -Derringer 63792 -Derry 54023 -Dersler 63601 -Dervis 63245 -Derwent 59292 -Deryck 64905 -Des 46651 -Desa 64905 -Desai 58745 -Desalination 59560 -Desalter 64905 -Desarrollo 59491 -Desay 63792 -Desc 57358 -Descarga 61940 -Descargar 59227 -Descargas 63419 -Descartes 62613 -Descendancy 62613 -Descendant 62066 -DescendantCount 65170 -Descendants 57741 -Descending 47067 -Descent 56827 -Descente 63077 -Deschamps 63245 -Deschanel 61699 -Deschutes 60856 -Describe 49017 -Described 58212 -Describes 55631 -Describing 57653 -Descripción 64423 -Description 36891 -Descriptions 49614 -Descriptive 50402 -Descriptor 59630 -Descriptors 54749 -Desde 63245 -Deselect 57970 -DeselectAll 60580 -Deseret 47672 -Desert 46651 -Deserted 58919 -Deserts 59101 -Deserve 57199 -Deserves 62469 -Desh 64201 -Deshedding 65170 -Deshi 64423 -Deshmukh 63991 -Deshpande 62613 -Desi 51415 -Design 34763 -Design's 62066 -DesignCommunity 63991 -DesignCorner 63245 -DesignInfo 62613 -DesignJet 64905 -DesignLine 59491 -DesignTemplateName 62613 -Designate 59630 -Designated 44770 -Designating 65170 -Designation 53746 -Designations 55130 -Designed 44505 -Designer 42591 -Designer's 59491 -DesignerLinensOutlet 63991 -Designers 47544 -Designfragen 60580 -Designing 50335 -Designjet 59702 -Designo 59424 -Designs 44312 -Designz 65452 -Desirable 58523 -Desire 52387 -Desired 55604 -Desiree 58979 -Desires 59630 -Desiring 61362 -Desist 62331 -Desjardins 60762 -Desk 40587 -DeskJet 63419 -DeskTop 64657 -DeskWriter 65452 -Desking 65170 -Deskjet 54207 -Desks 52818 -Deskstar 63601 -Desktop 40506 -Desktops 46534 -Desmarais 64201 -Desmond 54946 -Desolace 60762 -Desolation 62066 -Desoto 59923 -Despair 59039 -Despatch 63245 -Desperado 62331 -Desperados 62469 -Desperate 50306 -Desperately 59357 -Desperation 62066 -Despina 65452 -Despite 43501 -Desplatsia 63245 -Desporto 65170 -Despre 65170 -Desrosiers 65452 -Dessert 51104 -Desserts 50033 -Dest 56791 -Destin 56551 -Destination 46133 -Destinations 44855 -Destinator 63601 -Destined 63077 -Destino 65452 -Destiny 51122 -Destiny's 57399 -Destress 64201 -Destromath 60078 -Destroy 53501 -Destroyed 58162 -Destroyer 53316 -Destroyers 61584 -Destroying 59292 -Destroys 59774 -Destruction 50530 -Destructive 60492 -Destructo 64657 -Destructoid 59923 -Destructor 63991 -Det 55398 -Detach 62196 -Detachable 57785 -Detached 53662 -Detachment 59702 -Detail 45131 -Detailed 43351 -Detailer 60952 -Detailers 63601 -Detailing 52699 -Details 34230 -DetailsAdd 60670 -DetailsHide 63601 -Detained 63419 -Detainee 59702 -Detainees 61152 -Detaled 61472 -Detaljeret 63991 -Detect 55877 -Detected 58365 -Detecting 55202 -Detection 46976 -Detective 49394 -Detectives 54706 -Detector 51630 -Detectors 52175 -Detects 58979 -Detektivbyrån 58860 -Detention 53847 -Deter 63792 -Detergent 57278 -Detergents 60000 -Deterioration 62762 -Determinant 64423 -Determinants 55711 -Determination 48199 -Determinations 58919 -Determine 51293 -Determined 55552 -Determines 59101 -Determining 52597 -Deterministic 60670 -Deterrence 63792 -Deterrent 64905 -Deters 64905 -Dethecus 60952 -Detheroc 60952 -Dethklok 63991 -Detlev 65452 -Detonation 64201 -Detonator 65452 -Detour 58745 -Detours 62762 -Detox 53796 -Detoxification 57741 -Detoxify 63419 -Detrick 65170 -Detritus 65170 -Detroit 42695 -Detroit's 52351 -Dette 64201 -Dettori 63792 -Deuce 55552 -Deuces 63077 -Deum 65452 -Deus 55178 -Deustch 54992 -Deutch 62762 -Deuter 61818 -Deuteronomy 61051 -Deutsch 41424 -Deutsche 48721 -Deutschen 61472 -Deutscher 60762 -Deutsches 58632 -Deutschland 48186 -Deutschsprachige 55821 -Deutz 63792 -Deux 54245 -Dev 45872 -DevCenters 63077 -DevHook 63601 -DevX 62613 -DevZone 64423 -Deva 60492 -Deval 63077 -Devan 64201 -Devanahalli 64657 -Devaney 65452 -Devastating 64423 -Devastation 60321 -Devcon 63601 -Devdas 65452 -Devel 61256 -Devellion 64201 -Develop 47645 -Developable 62613 -Developed 46998 -Developement 62613 -Developer 39352 -Developer's 51846 -DeveloperWorks 64905 -Developers 41748 -Developing 46107 -Development 33991 -Development's 63077 -Developmental 48887 -Developmentally 62613 -Developments 48624 -Develops 56200 -Deven 64423 -Devendra 59702 -Devenish 64905 -Devens 65452 -Dever 63245 -Devereaux 63077 -Devereux 62762 -Deveson 64201 -Devgan 65170 -Devi 56687 -Deviance 62196 -Deviant 49559 -DeviantART 61472 -DeviantArt 62469 -Deviantart 64657 -Deviants 64201 -Deviation 49262 -Deviations 47424 -Device 44140 -DeviceNet 65452 -Devices 42650 -Devicescape 63419 -Devil 46255 -Devil's 51877 -DevilDriver 61818 -Devilish 62762 -Deville 60078 -Devils 49828 -Devin 54685 -Devine 54059 -Devious 52447 -Deviously 55060 -Deviousness 52954 -Devizes 60952 -Devlin 57358 -Devnet 64423 -Devo 61472 -Devoe 62066 -Devoid 65452 -Devolved 65452 -Devon 47442 -Devon's 65170 -Devonian 63601 -Devonport 58919 -Devonshire 56110 -Devoted 57876 -Devotee 61584 -Devotees 64423 -Devotion 59357 -Devotional 55037 -Devotionals 58523 -Devotions 59292 -Devs 62917 -Dew 52913 -Dewalt 58860 -Dewan 62917 -Dewar 60762 -Dewatering 61940 -Dewayne 63601 -Dewberry 64423 -Dewevre 64905 -Dewey 51996 -Dewey's 61818 -Deweyan 65170 -Dewi 61818 -Dewitt 62613 -Dewormers 65170 -Dewsbury 61256 -Dex 57524 -Dexamethasone 60238 -Dexedrine 64201 -Dexigner 65452 -Dexter 49841 -Dexter's 60670 -Dexterity 61152 -Dextroamphetamine 65452 -Dey 59101 -Deyn 62066 -Dez 62066 -Deze 64905 -Dezel 65170 -Dezember 62196 -Df 60952 -DfES 59923 -DfT 63991 -Dh 62196 -Dhaba 65170 -Dhabi 51550 -Dhaest 62469 -Dhaka 55934 -Dhamma 65170 -Dhan 64905 -Dhanbad 65452 -Dhanush 60492 -Dhar 63991 -Dharam 64657 -Dharamsala 65170 -Dharamshala 64905 -Dharm 64905 -Dharma 55373 -Dharmendra 63419 -Dharwad 64657 -Dhawan 64423 -Dhillon 63245 -Dhl 61472 -Dhol 64423 -Dhoni 60856 -Dhoom 61472 -Dhue 65170 -Dhupia 62066 -Di 47090 -DiCaprio 58417 -DiFranco 62613 -DiGi 59491 -DiMaggio 61818 -DiNapoli 65170 -DiNau 64423 -DiNotte 65170 -DiPietro 65452 -DiRT 65170 -Dia 53316 -Diab 60762 -Diabetes 44231 -Diabetic 51877 -Diabetics 61584 -Diabetologia 62469 -Diablo 48182 -Diablos 64905 -Diabolic 60000 -Diabolui 65170 -Diadora 58919 -Diageo 61256 -Diagn 58577 -Diagnose 57876 -Diagnosed 57970 -Diagnoses 60492 -Diagnosing 58365 -Diagnosis 47559 -Diagnostic 47471 -Diagnostics 51017 -Diagnóstico 65452 -Diagonal 57440 -Diagram 51131 -Diagramme 63792 -Diagramming 62613 -Diagrams 54114 -Dial 49405 -Dialect 61940 -Dialectic 63245 -Dialectica 63601 -Dialectical 63991 -Dialects 64423 -Dialed 65170 -Dialer 58113 -Dialing 58688 -Dialling 63245 -Diallo 63601 -Dialog 54245 -DialogBoxCanceled 63601 -Dialogg 58688 -Dialogic 63991 -Dialogs 62196 -Dialogue 51793 -Dialogues 55849 -Dialup 59848 -Dialysis 55014 -Diamant 61699 -Diamante 59774 -Diamar 62196 -Diameter 51846 -Diamond 41740 -Diamond's 63792 -DiamondBack 64423 -Diamondback 59848 -Diamondbacks 53549 -Diamonds 48459 -Diamonique 64905 -Dian 62196 -Diana 47540 -Diana's 60492 -Diane 46950 -Diane's 64201 -Dianella 62331 -Dianna 59424 -Dianne 52996 -Diao 64201 -Diapason 64657 -Diaper 50742 -Diapering 59101 -Diapers 56356 -Diaphanous 63419 -Diaphragm 58688 -Diaphragmatic 64657 -Diaries 51721 -Diario 60238 -Diarrhea 56293 -Diarrhoea 63601 -Diary 46274 -Dias 58632 -Diaspora 55963 -Diastolic 59491 -Diatomaceous 65170 -Diaz 50379 -Diaz's 64657 -Diazepam 56110 -Diba 64905 -Dibaba 65452 -Dibenzodioxins 64905 -Dibner 65170 -Dibowitz 65452 -Dibrugarh 65452 -Diccionario 63601 -Dice 50431 -Dice's 65170 -Diced 60492 -Dicer 58979 -Dicey 64423 -Dich 60762 -Dichroic 65170 -Diciembre 64905 -Dick 45739 -Dick's 57199 -Dickens 54581 -Dickens's 62331 -Dickenson 61699 -Dickerson 57482 -Dickey 56935 -Dickie 58313 -Dickies 56972 -Dickinson 50599 -Dicks 55684 -Dickson 54835 -Dickstein 65170 -Diclofenac 62762 -Dicom 65452 -Dicotyledones 60762 -Dictaphone 59357 -Dictate 59630 -Dictation 58212 -Dictator 61472 -Dictators 65170 -Dictionaries 50164 -Dictionary 38610 -DictionaryMedicine 61472 -Dictionnaire 62762 -Dictyostelium 57278 -Did 40599 -Didactic 63792 -Didcot 62762 -Diddle 65170 -Diddley 61152 -Diddy 53729 -Diderot 62917 -Didgeridoo 64905 -Didi 63245 -Didier 55992 -Didn't 47791 -Didnt 62196 -Dido 55448 -Dido's 64905 -Didrex 55423 -Die 44282 -Diebler 60238 -Diebold 59923 -Diecast 53565 -Diecidue 63991 -Dieckmann 65452 -Diecut 64423 -Died 51358 -Diedrich 64201 -Dieffenbachia 63991 -Diego 40660 -Diego's 57440 -Dieguito 65170 -Diehl 59923 -Dielectric 54264 -Dielectrics 61699 -Diels 60321 -Diem 57970 -Dien 63419 -Diener 64201 -Dienstagabendrennen 63991 -Dieppe 64657 -Dierks 61152 -Dies 50782 -Diese 59491 -Diesel 44823 -Diesels 63245 -Diesen 65452 -Dieser 59923 -Dieses 61818 -Diet 41999 -Dietary 49809 -Dieter 55657 -Dietetic 59848 -Dietetics 59923 -Diethyl 64905 -Diethylpropion 61940 -Dietician 62917 -Dieting 54622 -Dietitian 61362 -Dietitians 60762 -Dietmar 57785 -Dietrich 57160 -Diets 53052 -Dietz 59774 -Dietzel 60670 -Dieu 62469 -Dieulafoy's 64423 -Dieux 65170 -Diez 63419 -Dif 62917 -Difax 64423 -Difco 65452 -Diff 45232 -Differ 61584 -Difference 48359 -Differences 49130 -Different 45371 -Differential 48677 -Differentially 63245 -Differentials 61699 -Differentiate 63077 -Differentiated 60157 -Differentiating 61472 -Differentiation 53241 -Differently 61584 -Differin 60952 -Differing 62762 -Differs 64201 -Difficult 54133 -Difficulties 53796 -Difficulty 55631 -Diffraction 55552 -Diffrax 63077 -Diffs 56585 -Diffuse 57084 -Diffused 64657 -Diffuser 59702 -Diffusers 60580 -Diffusion 47668 -DiffusionDeformation 59227 -Diflucan 57653 -Dig 50694 -Digable 65452 -Digby 58162 -Digby's 65170 -Digest 41863 -Digestion 56200 -Digestive 51731 -Digests 59101 -Digg 36354 -DiggAboutLogin 58523 -Digger 56452 -Diggers 60952 -Diggin 63245 -Digging 56356 -Diggit 64657 -Diggnation 57876 -Diggs 58162 -Dighton 63601 -Digi 56721 -DigiChannel 62917 -DigiGuide 64657 -Digibox 64657 -Digicam 63991 -Digicams 63077 -Digicel 64657 -Digidave 60856 -Digidesign 60238 -Digifusion 61152 -Digihome 61362 -Digilib 65452 -Digimax 60078 -Digimon 53361 -Digipak 64905 -Digistock 62066 -Digit 54096 -Digital 34375 -Digital's 63601 -DigitalLife 61940 -Digitalis 63601 -Digitally 57696 -Digitalvision 65452 -Digitech 60762 -Digitisation 64657 -Digitization 53377 -Digitized 63419 -Digitizer 61940 -Digitizing 58523 -Digits 58632 -Digium 62066 -Digiwave 63077 -Digna 65452 -Dignity 57696 -Digoxin 60856 -Digs 60238 -Digweed 63991 -Dihydroxyindole 65170 -Diigo 55500 -Diino 60580 -Dijin 64657 -Dijk 62762 -Dijkstra 64201 -Dijon 58113 -Dike 63991 -Dil 54226 -Dilantin 59848 -Dilatation 62469 -Dilated 60078 -Dilbert 58919 -Dildo 55448 -Dildos 57482 -Dilek 63077 -Dilemma 55821 -Dilemmas 59630 -Dilger 61818 -Dili 61940 -Diligence 58688 -Diligent 63077 -Dilip 60000 -Dill 55299 -Dillan 65170 -Dillard 58162 -Dillard's 60238 -Diller 61699 -Dilley 60238 -Dillinger 60238 -Dillingham 62469 -Dillion 64423 -Dillon 52152 -Dillon's 63601 -Dilly 62613 -Diltiazem 63245 -Dilute 59630 -Diluted 59560 -Dilution 60157 -Dilutions 64905 -Dilwale 65452 -Dilworth 64423 -Dilys 63792 -Dim 50074 -Dima 62469 -Dimas 60670 -Dimbleby 62331 -Dime 56935 -Dimebag 64423 -Dimension 50807 -Dimensional 55130 -Dimensions 46463 -Dimer 64905 -Dimeric 65170 -Dimerization 65452 -Dimes 58632 -Dimethyl 63792 -Dimi 64423 -Diminished 64905 -Diminishing 65170 -Dimitar 61051 -Dimitra 64905 -Dimitri 57399 -Dimitrios 61940 -Dimitris 59702 -Dimitrov 63991 -Dimitry 64201 -Dimless 65452 -Dimmer 61584 -Dimmers 63792 -Dimming 64201 -Dimmu 59560 -Dimon 65170 -Dimond 63792 -Dimou 64423 -Dimple 61818 -Dimplex 59101 -Din 55274 -Dina 56050 -Dinah 59491 -Dinamo 62469 -Dinan 62917 -Dinar 53679 -Dinara 64657 -Dinard 65452 -Dinarobin 59560 -Dinars 60670 -Dinas 61472 -Dine 54770 -Diner 52256 -Diner's 59848 -Dinero 62917 -Diners 54924 -Dinesh 58979 -Dinette 59630 -Ding 55274 -Dingbats 64423 -Dinghies 62917 -Dinghy 60157 -Dingle 61051 -Dingman 59039 -Dingo 58417 -Dingwall 63077 -Dinh 62196 -Dinheiro 62331 -Dini 65452 -Dining 41169 -DiningGuide 61152 -Dinix 63991 -Dink 60952 -Dinka 61940 -Dinkins 61699 -Dinky 58212 -Dinmont 63991 -Dinner 44619 -Dinners 52913 -Dinnerware 51814 -Dinning 61699 -Dino 53712 -Dino's 65170 -Dinos 63077 -Dinosaur 52622 -Dinosaurs 55014 -Dinsdale 63245 -Dinsmore 65170 -Dinu 64201 -Dinwiddie 64423 -Dio 59491 -Diocesan 59357 -Diocese 53630 -Diocletian 63245 -Diocletian's 63991 -Diode 55348 -Diodes 58523 -Diogenes 62613 -Diogo 61818 -Diogu 65452 -Diol 63792 -Dion 49758 -Dion's 63245 -Dione 59923 -Dioner 65452 -Dionex 62469 -Dionne 57278 -Dionysus 61699 -Diop 65170 -Dior 52791 -Diora 63419 -Diorama 60856 -Dioramas 65170 -Dios 58417 -Dioula 64201 -Diovan 59630 -Dioxide 54946 -Dioxins 64905 -Dip 51856 -Dipanjan 63991 -Dipartimento 54439 -Diphtheria 61051 -Diplo 61152 -Diplodia 62613 -Diploma 47607 -Diplomacy 54360 -Diplomas 57278 -Diplomat 57122 -Diplomate 65452 -Diplomatic 53746 -Diplomats 60762 -Dipole 61472 -Dipped 61584 -Dipper 63991 -Dipperz 64905 -Dipping 59560 -Dippy 64657 -Dips 58212 -Dipset 64201 -Diptera 62613 -Dir 54706 -Dirac 57399 -Dire 55107 -Direc 63601 -DirecTV 55821 -Dirección 63792 -Direct 39421 -DirectDial 63419 -DirectDraw 63991 -DirectGov 58065 -DirectPlay 63792 -DirectRoute 65170 -DirectShow 60000 -DirectSound 63419 -DirectX 52062 -Directed 48776 -Directeur 65452 -Directgov 54380 -Directigen 62066 -Directing 57653 -Direction 49505 -Directional 55604 -Directions 38597 -DirectionsMap 63792 -Directive 49701 -Directives 56050 -Directly 51377 -Director 38458 -Director's 52187 -Directorate 48731 -Directorates 61940 -Directories 45481 -Directorio 60856 -Directors 43783 -Directory 34878 -Directs 60762 -Directv 59848 -Direkt 64657 -Dirge 62469 -Dirham 57785 -Dirichlet 61256 -Dirigo 62469 -Dirk 51920 -Dirksen 62066 -Dirndl 64423 -Dirt 48345 -Dirtbike 65170 -Dirtbombs 64905 -Dirty 45848 -Dirtyjay 64423 -Dis 48562 -Disa 64423 -Disab 63419 -Disabil 59702 -Disabilities 46480 -Disability 44905 -Disable 52472 -Disabled 47555 -Disablement 65452 -Disabling 59039 -Disadvantage 63077 -Disadvantaged 55323 -Disadvantages 56791 -Disaggregated 65170 -Disagree 54245 -Disagreement 63419 -Disallowed 65170 -Disambiguation 59164 -Disappear 64201 -Disappearance 59357 -Disappeared 62331 -Disappearing 60405 -Disappears 63245 -Disappointed 59424 -Disappointing 59491 -Disappointment 60952 -Disarmament 58860 -Disassembling 62331 -Disassembly 63419 -Disaster 46099 -Disasters 52886 -Disb 65452 -Disbanded 64423 -Disbelief 65452 -Disbursement 63077 -Disbursements 60670 -Disbursing 54643 -Disc 45122 -DiscPainter 63792 -Discard 56827 -Discarded 59774 -Discerning 63077 -Discernment 63601 -Discharge 51731 -Discharged 61818 -Discharges 59560 -Disciple 57358 -Disciples 58745 -Discipleship 57876 -Disciplinary 53917 -Discipline 50492 -Disciplined 61818 -Disciplines 56827 -Disclaimer 37470 -Disclaimers 39373 -Disclose 61940 -Disclosed 60492 -Disclosing 65170 -Disclosure 47367 -Disclosures 54835 -Disco 47706 -DiscoStan 59702 -Discografia 61940 -Discographie 57696 -Discographies 63601 -Discography 50974 -Discogs 53346 -Discomfort 63077 -Disconnect 56140 -Disconnected 63245 -Disconnection 65452 -Discontent 65170 -Discontinuation 65170 -Discontinue 63419 -Discontinued 53095 -Discord 62613 -Discos 61818 -Discotheque 65170 -Discount 40831 -Discounted 52130 -Discounters 62917 -Discounting 64423 -Discounts 46138 -Discourages 65452 -Discourse 56080 -Discourses 63601 -Discover 41645 -Discovered 55657 -Discoverer 60405 -Discoveries 56420 -Discovering 54188 -Discovers 61362 -Discovery 43977 -DiscoveryID 63419 -Discreet 57278 -Discrepancies 63077 -Discrepancy 62762 -Discrete 52765 -Discretion 62469 -Discretionary 57524 -Discrimination 49559 -Discs 51293 -Discurso 65170 -Discus 57876 -Discusion 64423 -Discusiones 63077 -Discuss 41905 -Discussant 64423 -Discussed 50832 -Discusses 54835 -Discussing 55711 -Discussion 34449 -DiscussionNext 65452 -Discussioni 65170 -Discussions 38931 -Discussão 64657 -Discworld 63991 -Disease 42428 -Diseased 63792 -Diseases 44811 -Disequilibrium 65452 -Diseño 60856 -Disgaea 60856 -Disgrace 63792 -Disgruntled 63991 -Disguise 58470 -Disgusted 62066 -Disgusting 57876 -Dish 47603 -Dishes 50454 -Dishmachines 65170 -Dishonest 62762 -Dishonesty 65452 -Dishonor 63245 -Dishwasher 51899 -Dishwashers 53729 -Dishwashing 60580 -Disinfectant 57160 -Disinfectants 63991 -Disinfection 60405 -Disintegration 65452 -Disk 46157 -Diskeeper 58688 -Disko 63792 -Disks 56791 -Diskus 59774 -Diskusi 61584 -Diskussion 59630 -Dislike 63601 -Disliked 59560 -Dislikes 64201 -Dislocated 64905 -Dislocation 62762 -Dislocations 62917 -Dismal 59164 -Dismantlers 65170 -Dismantling 61584 -Dismay 64657 -Dismemberment 63601 -Dismiss 61152 -Dismissal 59491 -Dismissed 59702 -Dismisses 63991 -Disney 42000 -Disney's 52351 -Disneyana 64905 -Disneyland 53081 -Disneys 64905 -Disobedience 65452 -Disodium 62762 -Disord 60670 -Disorder 48552 -Disordered 58365 -Disorderly 62196 -Disorders 42879 -Disparate 63077 -Disparities 59923 -Disparity 61940 -Dispatch 51690 -Dispatched 56110 -Dispatcher 61699 -Dispatches 54499 -Dispatching 63601 -Dispel 63991 -Dispensaries 65452 -Dispensed 63077 -Dispenser 54302 -Dispensers 53271 -Dispensing 57785 -Dispersal 63792 -Dispersed 62469 -Dispersion 57358 -Dispersions 63991 -Displaced 60321 -Displacement 55060 -Displacements 65170 -Display 36873 -DisplayResources 65452 -DisplayRooms 65452 -DisplayTwisties 65452 -Displayed 57524 -Displaying 44679 -Displays 47424 -Disponible 65452 -Dispos 65452 -Disposable 53052 -Disposables 62762 -Disposal 49529 -Disposals 59848 -Dispose 60580 -Disposed 60238 -Disposing 63419 -Disposition 54439 -Dispute 50742 -Disputed 61051 -Disputes 55323 -Disqualification 63419 -Disqualified 64905 -Disque 65452 -Disqus 55711 -Disraeli 63991 -Disregard 63792 -Disrespect 63792 -Disrupt 63419 -Disrupted 63077 -Disruption 58262 -Disruptions 65452 -Disruptive 57440 -Disrupts 65452 -Diss 61256 -Dissatisfied 57524 -Dissected 63991 -Dissecting 61051 -Dissection 58688 -Dissector 63991 -Disseminated 63991 -Dissemination 56170 -Dissent 58979 -Dissenting 62762 -Dissertation 53865 -Dissertations 54321 -Disses 61699 -Dissident 61362 -Dissimilarity 63601 -Dissipation 60952 -Dissipative 64905 -Dissociation 60405 -Dissociative 64201 -Dissolution 57084 -Dissolve 62613 -Dissolved 58632 -Dist 55014 -Distal 61152 -Distance 42118 -Distances 54835 -Distant 55474 -DistantCousin 61940 -Distemper 64657 -Distillate 61362 -Distillation 62331 -Distilled 61051 -Distiller 63601 -Distillers 60856 -Distillery 61940 -Distilling 65170 -Distinct 55992 -Distinction 56452 -Distinctions 64657 -Distinctive 55766 -Distinctly 64423 -Distinguish 65452 -Distinguished 51721 -Distinguishing 60078 -Distorted 60405 -Distortion 54813 -Distortions 57876 -Distracted 62331 -Distraction 60078 -Distractions 60856 -Distress 55604 -Distressed 56618 -Distrib 62469 -Distribución 63077 -Distribute 56899 -Distributed 47002 -Distributing 56652 -Distribution 42551 -Distributional 63419 -Distributions 53517 -Distributive 64201 -Distributor 47919 -Distributors 48781 -District 36456 -District's 56262 -Districts 49559 -Distrito 59292 -Distro 59560 -Distros 65170 -Disturb 63991 -Disturbance 58577 -Disturbances 60157 -Disturbed 55060 -Disturbia 52303 -Disturbing 58802 -Disulfide 63077 -Dit 60405 -Dita 58523 -Ditch 56452 -Ditches 63419 -Ditching 64423 -Ditka 63245 -Dito 62066 -Ditties 64905 -Ditto 55934 -Dittrich 65452 -Diu 59630 -Diuretics 62917 -Diurnal 63419 -Div 51425 -DivX 51140 -DivXunavailable 63991 -Diva 50499 -Diva's 61152 -Divan 61818 -Divas 54540 -Dive 49701 -Divehi 65452 -Diver 55274 -Diver's 64905 -Divergence 60670 -Divergent 61472 -Diverging 63601 -Divers 54685 -Diverse 53024 -Diversey 64657 -Diversification 59630 -Diversified 56231 -Diversify 63991 -Diversion 56972 -Diversions 50199 -Diversity 45513 -Diverter 64201 -Diverticulitis 63991 -Dives 60405 -Divestment 64423 -Divi 64905 -Divide 52571 -Divided 54946 -Dividend 50285 -Dividends 54170 -Divider 57785 -Dividers 57696 -Divides 61256 -Dividing 60000 -Divina 63419 -Divination 61362 -Divine 49429 -Diving 47935 -Divinity 53138 -Divisible 64657 -Division 39256 -Division's 57609 -Divisional 55766 -Divisions 50328 -División 64657 -Divison 65170 -Divo 56585 -Divoká 64423 -Divorce 45222 -Divorced 57399 -Divorces 61152 -Divot 64905 -Divx 54360 -Divya 60856 -Diwali 51783 -Diwan 64657 -Dix 57160 -Dixie 50949 -Dixieland 61818 -Dixit 58979 -Dixon 49578 -Dixon's 61818 -Dixons 56862 -Diy 62613 -Diya 60157 -Diyala 63601 -Diz 63419 -Dizi 63245 -Dizm 62066 -Dizol 63601 -Dizon 62613 -Dizon's 64423 -Dizzee 60078 -Dizziness 62196 -Dizzy 55578 -Dj 47496 -Dj's 60856 -Django 58065 -Djembe 62917 -Djibouti 47266 -Djiboutil 60952 -Djokovic 58919 -Djordjevic 63792 -Djs 60856 -Dk 58979 -Dkk 62331 -Dkr 60492 -Dl 61699 -Dl's 62613 -Dlamini 64905 -Dlink 62196 -Dlisted 61152 -Dll 59560 -Dm 57970 -Dmitri 57653 -Dmitriy 65170 -Dmitry 56324 -DmitryLitvintsev 61472 -Dmoz 57785 -Dmytro 64657 -Dn 65452 -DnB 61256 -Dna 59923 -Dnata 64201 -Dngrsone 60762 -DnldMgr 63077 -Dns 65452 -Dnt 62066 -Do 34463 -Do's 58688 -DoCoMo 58979 -DoD 52315 -DoDD 65452 -DoDI 65452 -DoF 63245 -DoS 59227 -Doan 60856 -Doane 63419 -Dobb's 63601 -Dobbin 64905 -Dobbins 63245 -Dobbs 56862 -Dobby 63601 -DobbyTheSeaTurtle 65452 -Dobe 65170 -Doberman 59702 -Dobie 63419 -Doble 60762 -Dobra 61256 -Dobrev 63077 -Dobro 60670 -Dobson 52778 -Dobson's 64657 -Dobsonian 63419 -Dobyns 62331 -Doc 47960 -Doc's 58523 -Docent 64201 -Docherty 64423 -Dock 50256 -Dockendorf 65170 -Dockers 58417 -Docket 51492 -Dockets 55552 -Docking 53729 -Docklands 52954 -Docks 55202 -Dockside 59227 -Docs 50164 -Docstoc 61699 -Doctor 42825 -Doctor's 53581 -Doctoral 52584 -Doctorate 54096 -Doctorow 65170 -Doctors 43624 -Doctrinal 63245 -Doctrine 54264 -Doctrines 64657 -DocuShare 60952 -Document 38136 -DocumentCollection 54360 -DocumentContext 63077 -DocumentRoot 65452 -Documentaries 54419 -Documentary 47683 -Documentation 41062 -Documentations 64657 -Documented 59101 -Documenting 59164 -Documentos 63792 -Documents 39127 -DocumentsDate 65452 -DocumentsOnline 62066 -Documentum 58262 -Dodaj 60321 -Dodd 54519 -Dodd's 59357 -Dodds 59227 -Dodecanese 63601 -Dodge 43154 -Dodgeball 59164 -Dodger 57199 -Dodgers 48821 -Dodging 64657 -Dodgy 63419 -Dodo 61152 -Dodonaea 63792 -Dodson 56231 -Doe 53301 -Doerr 63601 -Does 39636 -Doesn't 48533 -Doesnt 60405 -Dofus 59227 -Dog 39489 -Dog's 57785 -Dogan 63419 -Dogfight 64201 -Dogfights 64423 -Dogfish 63601 -Dogfunk 63419 -Dogg 51996 -Dogg's 63601 -Doggie 56972 -Doggles 65452 -Doggone 63077 -Doggy 52534 -Doggystyle 64201 -Doghouse 58065 -Dogma 60580 -Dogo 64657 -Dogon 60580 -Dogpile 58979 -Dogs 44057 -Dogster 60238 -Dogtown 60762 -Dogtra 64423 -Dogue 65452 -Dogwood 57831 -Dogz 63601 -Dogzen 60580 -Doh 63991 -Doha 54902 -Doheny 64423 -Doherty 53485 -Dohme 65452 -Doi 60762 -Doig 64657 -Doin 62469 -Doing 46690 -Doings 58262 -Dojo 55711 -Doki 62066 -Dokken 60321 -Doktor 63245 -Dokument 64657 -Dokumentacja 63419 -Dokumentation 61152 -Dol 64657 -Dolan 55821 -Dolby 49251 -Dolce 50823 -Dold 63792 -Doldinger 65452 -Dole 57440 -Dolio 64657 -Dolittle 64657 -Doll 47664 -Doll's 62196 -Dollar 43243 -Dollard 62917 -Dollars 46466 -Dolled 64201 -Dollhouse 58470 -Dollhouses 60952 -Dollie 65170 -Dollies 58365 -Dollop 61584 -Dolls 45017 -Dolly 51700 -Dolly's 64423 -Dollymix 65452 -Dollz 63419 -Dolomedes 62762 -Dolomite 62762 -Dolor 63419 -Dolores 55274 -Dolorosa 64201 -Dolph 62331 -Dolphin 50033 -Dolphins 50454 -Dolphy 62762 -Dolton 63077 -Dom 52996 -Domain 34364 -DomainTools 53423 -Domaine 57566 -Domainname 61818 -Domains 37890 -Doman 65170 -Domayne 65452 -Dome 50865 -Domecq 62613 -Domed 63419 -Domenech 63419 -Domenic 64201 -Domenico 58262 -Domes 61940 -Domesday 62917 -Domest 64905 -Domestic 43916 -Domesticated 64201 -Domestics 61699 -Domiciliary 63245 -Domina 63077 -Dominance 57923 -Dominant 55014 -Dominate 56050 -Dominated 65170 -Dominates 62469 -Dominating 64905 -Domination 55060 -Dominator 56972 -Dominators 64905 -Dominatrix 62331 -Domine 65452 -Domingo 53847 -Dominguez 57084 -Domingão 64201 -Domini 63991 -Dominic 52256 -Dominic's 65452 -Dominica 46934 -Dominica's 62762 -Dominican 44390 -Dominicana 62469 -Dominicans 63601 -Dominick 59702 -Dominick's 65452 -Dominik 58688 -Dominio 63419 -Dominion 51502 -Dominique 53695 -Domino 47772 -Domino's 57566 -Dominoes 61051 -Dominos 61699 -Dominus 64657 -Domiporta 63991 -Domo 63245 -Domotec 65170 -Domus 59848 -Don 42955 -Don's 59101 -Don't 37332 -Don'ts 57741 -DonWon 60000 -Dona 56652 -Donaghy 64423 -Donahue 58979 -Donal 58262 -Donald 44644 -Donald's 60952 -Donalds 63601 -Donaldson 54749 -Donan 65452 -Donate 38396 -Donated 58632 -Donatella 62613 -Donatello 63991 -Donates 58688 -Donati 65170 -Donating 58577 -Donation 48682 -Donations 48552 -Donato 60670 -Donators 60580 -Donatus 64905 -Donavon 65170 -Doncaster 52899 -Donde 61256 -Dondero 63077 -Done 48399 -Donec 62066 -Donegal 54835 -Donegan 65170 -Donen 65452 -Donetsk 59491 -Dong 52051 -Dongbu 60670 -Dongguan 61940 -Dongle 57653 -Dongs 63601 -Doni 64423 -Donic 63792 -Donington 59292 -Donita 65452 -Donkey 52725 -Donkeys 56356 -Donley 63601 -Donn 62613 -Donna 46406 -Donna's 60000 -Donnas 60856 -Donncha 61699 -Donne 60405 -Donnell 63419 -Donnelley 63991 -Donnelly 56551 -Donnellys 63245 -Donner 58632 -Donnie 53899 -Donnington 64201 -Donny 55448 -Donnybrook 63792 -Données 64201 -Donoghue 64657 -Donohoe 65452 -Donohue 61584 -Donor 50856 -Donors 51095 -DonorsChoose 62613 -Donovan 52423 -Donovan's 65170 -Dons 57696 -Donsuemor 63601 -Dont 49038 -DontStayIn 61051 -Donte 62331 -Donut 57482 -Donuts 52913 -Donutz 65170 -Donzelli 63792 -Donzi 64657 -Doo 51877 -Doobie 59848 -Dooce 63991 -Doodle 57696 -Doodlebug 62917 -Doodles 56324 -Doody 64657 -Doogie 60000 -Dookie 62196 -Dookieball 63991 -Dooku 63077 -Dooley 59101 -Doolittle 58802 -Doom 50242 -Doomed 56140 -Doomhammer 58802 -Doomsday 57653 -Doon 62762 -Doonan 62762 -Dooney 57970 -Door 42876 -Doorbell 63077 -Doorman 63792 -Doormat 64423 -Doormats 63792 -Doorn 61818 -Doors 45074 -Doorstep 64905 -Doorstops 63419 -Doorway 60405 -Doosan 63792 -Dopamine 57046 -Dopaminergic 64905 -Dope 54601 -Doped 63245 -Doping 60078 -Dopod 56618 -Doppler 48882 -Dor 61940 -Dora 52327 -Dora's 62762 -Dorada 59702 -Dorado 52805 -Doraemon 64657 -Doral 59424 -Doran 58017 -Dorcas 63245 -Dorcel 61940 -Dorchester 53882 -Dordogne 65170 -Dordrecht 64905 -Dordt 65452 -Dore 62917 -Doreen 56899 -Doren 63245 -Dorf 60670 -Dorfman 64657 -Dorgan 64657 -Dori 61472 -Doria 64423 -Dorian 55202 -Doric 64201 -Dorie 63792 -Dorinda 64423 -Doris 52411 -Dorit 65452 -Doritos 64657 -Dork 62066 -Dorking 59560 -Dorling 59039 -Dorm 55448 -Dorma 65170 -Dorman 59292 -Dormer 62917 -Dormia 64905 -Dormitory 61472 -Dorms 65170 -Dorn 60492 -Dornan 65452 -Dornbusch 64201 -Dorner 61051 -Dornier 65170 -Dornoch 65452 -Doro 61584 -Doron 62331 -Doronicum 62331 -Dorota 64201 -Dorothea 58632 -Dorotheanthus 63792 -Dorothy 49325 -Dorothy's 65170 -DorothyCorrick 62613 -Dorper 64201 -Dorr 63991 -Dorrie 63419 -Dorris 63991 -Dorrit 58979 -Dorsal 59702 -Dorsch 63792 -Dorset 49739 -Dorsett 63792 -Dorsey 55766 -Dorsey's 64905 -Dortmund 54560 -Dorval 64201 -Dory 62066 -Dory's 64423 -Dos 52521 -DosR 64905 -Dosage 52661 -Dosages 63991 -Dosanjh 61818 -Dose 50815 -Dosen 63245 -Doses 58860 -Dosh 58577 -Dosimetrist 62331 -Dosimetry 58802 -Dosing 58523 -Dosis 65170 -Dospan 64657 -Doss 60952 -Dossier 59630 -Dossiers 64905 -Dost 63792 -Dostana 60952 -Dostinex 60238 -Dostoevsky 63792 -Dot 46871 -DotA 60000 -DotAsia 61699 -DotNet 62469 -DotNetKicks 61362 -DotNetNuke 57970 -DotNetSlackers 62331 -Dota 60078 -Dothan 59164 -Dotlrn 64423 -Dots 53796 -Dotson 62762 -Dotted 59357 -Dottie 59292 -Dotty 63245 -Doty 60078 -Dou 63991 -Douala 64657 -Double 41389 -DoubleClick 58470 -Doubleday 59702 -Doublepost 64657 -Doubles 55711 -Doubletree 57741 -Doubling 55657 -Doubly 64423 -Doubt 53746 -Doubtful 61362 -Doubts 56618 -Doucet 61818 -Doucette 65170 -Douche 63991 -Doug 45657 -Doug's 61362 -DougAlder 63245 -Dougal 60321 -Dougan 64201 -Dough 55423 -Doughboy 63245 -Dougherty 56791 -Doughnut 62762 -Doughnuts 63077 -Doughty 58577 -Doughty's 63792 -Dougie 61152 -Douglas 43625 -Douglas's 64657 -Douglass 56262 -Douglaston 63792 -Douglasville 59357 -Doujin 64423 -Doujinshi 62196 -Doula 64657 -Doulas 64905 -Doulton 59227 -Dounce 64423 -Dourdan 64657 -Douro 65170 -Douthat 65452 -Doutzen 64905 -Dov 62469 -Dove 49926 -Dove's 65452 -Dovel 64423 -Dover 50199 -Dover's 64423 -Doves 59630 -Dovetail 62196 -Dovizioso 63245 -Dow 46112 -Dow's 60762 -Dowager 64905 -Dowco 65452 -Dowd 56862 -Dowel 58919 -Dowell 60762 -Dower 63419 -Dowie 63792 -Dowling 56756 -Dowload 62917 -Down 40466 -Down's 58745 -DownArchive 65170 -Downarrow 54439 -Downblouse 65170 -Downdraft 63991 -Downeast 62613 -Downer 60492 -Downers 56585 -Downes 60856 -Downey 53124 -Downfall 61051 -Downgrade 61362 -Downgrades 57046 -Downham 60856 -Downhill 56420 -Downie 58860 -Downing 54341 -DowningSt 63601 -Downingtown 63419 -Downlaod 64657 -Downlight 62917 -Downlights 61152 -Downline 64657 -Downliner 64657 -Downlink 62331 -Download 32181 -DownloadNova 54321 -DownloadProfessional 62762 -DownloadReactor 60762 -DownloadSend 60405 -DownloadSquad 54341 -DownloadWarez 57278 -Downloadable 50476 -Downloadables 62917 -Downloaded 44723 -Downloader 51856 -Downloaders 64657 -Downloading 49639 -Downloads 36273 -Downpayment 64657 -Downregulation 64905 -Downriggers 64905 -Downs 50192 -Downside 63792 -Downsize 64201 -Downsizing 60856 -Downspouts 58113 -Downstairs 60856 -Downstream 56862 -Downtempo 56551 -Downtime 58262 -Downtown 44768 -Downtowns 65170 -Downturn 56935 -Downunder 61940 -Downward 60856 -Downy 64201 -Dowsing 64905 -Dowson 65170 -Dox 65452 -Doxa 64905 -Doxazosin 65452 -Doxorubicin 62331 -Doxycycline 63245 -Doxygen 61362 -Doyle 51425 -Doyle's 62917 -Doylestown 60405 -Dozen 52927 -Dozens 54245 -Dozer 63077 -Dozier 61940 -Doña 63245 -Dp 62917 -DprA 65170 -Dr 40163 -DrAwesome 61051 -DrAwesome's 64657 -DrDoc 65170 -DrIgis 63792 -DrMoray 65452 -DrPill 63792 -Drab 63991 -Drabble 64905 -Drabenstott 65452 -Drache 65452 -Draco 56231 -Draconis 65452 -Dracula 53695 -Dracula's 62331 -Dracus 64657 -Drader 65170 -Draenei 59227 -Draenor 58860 -Draft 44134 -Drafted 61362 -Drafter 62331 -Drafthouse 64657 -Drafting 54946 -Drafts 54622 -Draftsman 54439 -Drag 47867 -Dragan 61152 -Dragana 60321 -Draganfly 64423 -Drage 64657 -Drager 63991 -Dragged 65170 -Dragger 65170 -Dragging 58262 -Drago 61940 -Dragon 44164 -Dragon's 56388 -DragonBall 61699 -DragonDollars 63991 -DragonFable 59702 -DragonGoddess 64201 -Dragonaut 63077 -Dragonball 55202 -Dragonblight 58860 -Dragonflies 62917 -Dragonflight 59292 -Dragonfly 54226 -Dragonforce 61584 -Dragonheart 65452 -Dragonmaw 59292 -Dragons 50402 -Dragoon 61051 -Dragoons 62196 -Dragostea 64423 -Drags 65170 -Dragster 53066 -Dragstrip 63601 -Dragway 63601 -Drain 50461 -Drainage 51580 -Draining 64201 -Drains 58688 -Drak'thul 59630 -Draka 59848 -Drake 49435 -Drake's 57524 -Draken 64657 -Drakensberg 63792 -Drakes 60762 -Drakkar 65452 -Drala 63419 -Dram 61256 -Drama 44406 -Dramas 56388 -Dramatic 52661 -Dramatically 60405 -Dramatis 65452 -Drang 64905 -Drank 62331 -Drape 62331 -Draper 53882 -Draper's 64905 -Draperies 61818 -Drapery 59702 -Drapes 59923 -Drastic 63419 -Draught 61362 -Draupadi 64905 -Drauss 63991 -Dravid 62196 -Draw 46887 -Drawdown 65452 -Drawer 52175 -Drawers 56420 -Drawing 46729 -Drawings 49488 -Drawn 55552 -Draws 54770 -Drawstring 59848 -Dray 64905 -Drayton 55821 -Drayton's 65170 -Dre 54341 -Drea 63419 -Dread 56618 -Dreaded 64657 -Dreadful 59774 -Dreadlocks 64423 -Dreadmaul 60952 -Dreadnaught 62917 -Dreadnought 57199 -Dream 42297 -Dream's 64423 -DreamBox 62469 -DreamHost 65452 -DreamWeaver 64905 -DreamWorks 58688 -Dreambox 60157 -Dreamcast 51953 -Dreamcatcher 63077 -Dreamed 63792 -Dreamer 55793 -Dreamers 59774 -Dreamfinder 60952 -Dreamgirls 63245 -Dreamhost 60492 -Dreaming 52609 -Dreamland 58979 -Dreamliner 63419 -Dreams 46167 -Dreamtime 62469 -Dreamweaver 52051 -Dreamworks 60580 -Dreamy 61699 -Dreamz 65452 -Dred 63245 -Dredge 62613 -Dredging 60321 -Dreher 63792 -Dreiser 60762 -Dreiser's 63245 -Dremel 60405 -Drenalin 64905 -Drench 63245 -Drenden 60952 -Drennan 61818 -Drescher 63077 -Dresden 53712 -Dresdner 61256 -Dress 42264 -Dressage 56231 -Dressed 54706 -Dresser 56485 -Dressers 59630 -Dresses 47235 -Dressing 50940 -Dressings 58979 -Dressler 64657 -Dressmakers 63419 -Dressup 54302 -Dressy 61940 -Drew 47392 -Drew's 61472 -Drewes 65452 -Drews 64905 -Drexel 53066 -Drexler 64423 -Dreyer 64905 -Dreyfus 58262 -Dreyfuss 61362 -Drezner 62331 -Dri 60952 -Dribble 64201 -Dried 52699 -Driehaus 64657 -Drier 60580 -Dries 59848 -Drift 52435 -Drifter 57923 -Drifters 61818 -Drifting 55373 -Driftwood 58919 -Drill 49511 -DrillSpot 63245 -Drilled 61256 -Driller 62066 -Drillers 64905 -Drilling 50630 -Drills 54078 -Drink 42972 -Drinker 62196 -Drinkers 62917 -Drinking 48491 -Drinks 47120 -Drinkware 53066 -Drinkwater 64201 -Drip 56687 -Dripping 60238 -Driscoll 57009 -Driskill 64657 -Drive 39514 -Drivel 62066 -Driveline 61584 -Driven 51762 -Driver 41917 -Driver's 53729 -DriverGuide 61472 -DriverHeaven 64423 -DriverScan 64201 -Drivers 44666 -Drives 44558 -Driveshaft 63601 -Drivetime 64905 -Drivetrain 54992 -Driveway 55821 -Driveways 61362 -Driving 42060 -Drizzle 60492 -Dro 62331 -Drobo 61699 -Drogas 65170 -Drogba 62196 -Drogheda 61256 -Droid 60238 -Droit 61362 -Droits 62762 -Droitwich 63601 -Dromore 63077 -Dromoz 65170 -Drona 58979 -Drone 58802 -Drones 63077 -Droog 62469 -Drool 64905 -Drop 44779 -DropDownList 63792 -Dropdown 61699 -Dropkick 61152 -Droplet 63991 -Dropout 56862 -Dropouts 62917 -Dropped 54857 -Dropper 64423 -Dropping 55423 -Droppings 64201 -Drops 51060 -Dropship 61256 -Dropshipping 63245 -Dros 64423 -Drosha 60000 -Drosophila 51293 -Drought 54360 -Drouin 62331 -Drove 58745 -Drover 63245 -Drow 64905 -Drown 62331 -Drowned 61256 -Drowning 57199 -Drowns 63077 -Drowsiness 64201 -Drowsy 64657 -Drs 58470 -Drtyrock 65452 -Dru 59848 -Druaga 64201 -Drucker 59630 -Drude 64905 -Drudge 56080 -Drug 39019 -Drugs 44433 -Drugstore 58017 -Drugstores 64905 -Druid 52018 -Druids 56110 -Druk 64905 -Drum 45627 -Drumheller 63601 -Drumkits 65452 -Drumline 63077 -Drumm 65452 -Drummer 54188 -Drummers 60670 -Drumming 58065 -Drummond 55631 -Drummondville 55299 -Drummoyne 59227 -Drums 49313 -Drumset 63419 -Drumsticks 60000 -Drumz 64905 -Drunk 50328 -Drunkard 62613 -Drunken 53813 -Drunks 65452 -Drupal 51211 -Drury 56756 -Drusilla 64201 -Dry 45131 -Dryas 64657 -Dryden 58577 -Drydock 64905 -Dryer 51095 -Dryers 53038 -Drying 54264 -Dryland 58919 -Drysdale 62469 -Drywall 55448 -Drège 63601 -Ds 58262 -Dsl 63792 -Dsus 64905 -Dt 61256 -Dtsch 58688 -Du 48533 -DuBois 61256 -DuMaurier 61472 -DuPage 57785 -DuPont 54540 -DuWop 64201 -Dua 60238 -Dual 43694 -DualShock 65452 -Dualband 61584 -Duality 60157 -Duals 64657 -Duan 63991 -Duane 52818 -Duarte 57358 -Duathlon 58470 -Dub 50220 -Dub's 65452 -Dubai 45266 -Dubai's 61584 -Dubbed 58577 -Dubbing 63991 -Dubbo 58979 -Dube 60238 -Dubfire 60762 -Dubin 63419 -Dublin 43324 -Dublin's 61256 -Dubliner 62917 -Dubliners 60856 -Dubna 64657 -Dubner 57318 -Dubois 57122 -Dubosc 63991 -Dubplate 65170 -Dubro 64905 -Dubrovnik 57609 -Dubs 61472 -Dubstep 60000 -Dubuque 55474 -Dubya 61051 -Duc 60952 -Duca 61818 -Ducane 64657 -Ducasse 64905 -Ducati 53679 -Duce 64423 -Duchamp 63077 -Ducharme 60492 -Duchenne 63245 -Duchesne 63077 -Duchess 52752 -Duchovny 56324 -Duchy 62066 -Duck 48477 -Duckett 64201 -Duckie 62917 -Duckies 62196 -Duckling 63245 -Ducks 51434 -Duckworth 60670 -Ducky 59560 -Duct 54321 -Ductal 64905 -Ducted 63419 -Ductile 57358 -Ducting 61940 -Ducts 60321 -Ductwork 65452 -Duda 62917 -Dudaktan 65452 -Duddy 62762 -Dude 51069 -Dudek 64905 -Dudes 55711 -Dudley 50129 -Duds 63245 -Due 43165 -Duel 54041 -Duele 64201 -Dueling 55130 -Duelist 62196 -Duels 61256 -Dues 54207 -Duesenberg 61940 -Duet 55107 -Duets 59164 -Duff 50848 -Duff's 65452 -Duffel 57785 -Duffels 60952 -Dufferin 61699 -Duffey 64657 -Duffie 63991 -Duffield 63601 -Duffle 58365 -Duffy 52609 -Duffy's 63792 -Dufossé 63245 -Dufour 61818 -Dug 62762 -Dugan 58523 -Dugg 58162 -Duggan 58688 -Dugger 62917 -Dugout 61152 -Duh 63245 -Duhamel 60856 -Dui 61362 -Duis 62762 -Duisburg 61152 -Duk 65170 -Dukakis 63245 -Duke 45052 -Duke's 58212 -Dukes 53695 -Dulbecco's 56972 -Dulce 59227 -Dulcepixels 65452 -Dulcimer 60492 -Dulhann 61940 -Dull 58979 -Dulles 52280 -Duluth 54207 -Dulux 62066 -Dulwich 59164 -Dum 57653 -Duma 61472 -Dumaguete 64657 -Dumas 56935 -Dumb 52648 -Dumbarton 61152 -Dumbass 64657 -Dumbbell 62613 -Dumbbells 62196 -Dumbell 65452 -Dumber 63601 -Dumbest 55992 -Dumbledore 62066 -Dumbo 62613 -Dumfries 53934 -Dumfriesshire 61940 -Dummies 52411 -Dummy 53646 -Dumont 59560 -Dump 50750 -Dumped 59630 -Dumper 60238 -Dumping 57831 -Dumpling 64905 -Dumplings 61256 -Dumps 59848 -Dumpster 58745 -Dumpsters 65452 -Dumpty 65170 -Dun 54540 -Dunas 65452 -Dunaway 64657 -Dunbar 55250 -Dunbartonshire 56935 -Dunblane 65170 -Dunc 63991 -Duncan 47737 -Duncan's 58802 -Duncanville 62066 -Dundalk 57831 -Dundas 57358 -Dundee 50081 -Dundonald 63419 -Dundrum 65452 -Dune 54792 -Dunedin 53182 -Dunemaul 58860 -Dunes 55037 -Dunfermline 54946 -Dunford 65452 -Dung 61362 -Dungannon 61362 -Dungarvan 63991 -Dungeness 62762 -Dungeon 52198 -Dungeons 50940 -Dungy 59357 -Dunham 54059 -Dunham's 65170 -Dunhill 60856 -Dunia 63991 -Duniya 65170 -Dunk 53917 -Dunkel 63601 -Dunkeld 63077 -Dunkin 57358 -Dunkirk 61152 -Dunks 60000 -Dunlap 58065 -Dunlavy 64905 -Dunleavy 64201 -Dunlop 52739 -Dunmore 61940 -Dunmow 65452 -Dunn 50213 -Dunn's 60762 -Dunne 56452 -Dunner 65170 -Dunnett 64201 -Dunnett's 65170 -Dunning 58365 -Dunno 61699 -Dunnville 58688 -Dunoon 65170 -Dunphy 64657 -Dunraven 65452 -Duns 65170 -Dunseith 65452 -Dunst 57785 -Dunstable 59923 -Dunstan 62613 -Dunwoody 58745 -Duo 46631 -Duodenal 62613 -Duofem 63419 -Duomo 61699 -Duong 64201 -Duos 63792 -Dupage 64423 -Dupe 62469 -Duper 62196 -Dupes 63792 -Duplex 51220 -Duplexes 63077 -Duplicate 50372 -Duplicates 59848 -Duplicating 59774 -Duplication 55226 -Duplicator 59702 -Duplicators 57440 -Duplin 60952 -Duplo 62762 -Dupont 54749 -Dupre 65170 -Dupree 61472 -Dupri 61152 -Dupuis 62917 -Dupuyer 65452 -Duque 61152 -Duquesne 60238 -Dura 57524 -DuraMax 65170 -DuraTech 64423 -Durability 57741 -Durable 52303 -Durables 64905 -Duracell 56420 -Durack 63601 -Dural 64657 -Duramax 57785 -Duran 54059 -Durance 63245 -Durand 58577 -Durango 53549 -Durant 58417 -Durante 61584 -Durasoft 63245 -Duration 48801 -Duratrax 63419 -Durban 51888 -Durbanville 65170 -Durbin 57696 -Durden 61362 -Durem 64423 -Durex 62762 -Durfee 65452 -Durga 60078 -Durgapur 64657 -Durgesh 65452 -Durham 46637 -Durham's 65452 -During 39693 -Durkee 65452 -Durkheim 62469 -Durkheim's 62762 -Duro 59164 -Duron 64201 -Durotan 60492 -Durotar 60238 -Durrani 64423 -Durrant 62762 -Dursley 65452 -Durst 60405 -Durty 65170 -Duryodhana 64423 -Durée 62762 -Dus 59292 -Dusan 61818 -Dushanbe 62613 -Dushku 62066 -Dusit 63792 -Dusk 56862 -Duskwood 57970 -Dusky 62331 -Dusseldorf 60157 -Dust 49141 -Dustbin 64657 -Dusted 61152 -Duster 58262 -Dusters 64657 -Dustin 51660 -Dustin's 65170 -Dusting 62613 -Dustwallow 60580 -Dusty 53630 -Dut 64201 -Dutch 42424 -Dutchess 58919 -Dutchman 59227 -Dutchman's 62762 -Dutchmen 63419 -Duthil 64905 -Duties 52280 -Dutt 57876 -Dutta 57160 -Dutton 56356 -Duty 44387 -Duval 56080 -Duvall 59227 -Duvet 55299 -Duvets 60580 -Duwi 65452 -Dux 61256 -Duxbury 63077 -Duynhoven 64657 -Duyurular 63601 -Duzer 63245 -Duzzit 64423 -Dv 64423 -DvDRip 64423 -DvDrip 59702 -Dvd 49376 -Dvdmux 64423 -Dvdr 62066 -Dvdrip 55448 -Dvds 59702 -Dvdscr 62917 -Dvir 65452 -Dvorak 57970 -Dwadashi 65452 -Dwain 64201 -Dwarf 52280 -Dwarfs 61584 -Dwarven 63991 -Dwarves 60157 -Dwayne 53729 -Dwell 59292 -DwellStudio 65452 -Dweller 64201 -Dwellers 62469 -Dwelling 54560 -Dwellings 58017 -Dwi 63245 -Dwight 51248 -Dworkin 65452 -Dwyane 59774 -Dwyer 56140 -Dx 61051 -DxExMxOxN 64201 -DxlExporter 54399 -DxlImporter 54341 -Dy 61256 -Dyadic 65452 -Dyan 65170 -Dyck 60157 -Dydd 62917 -Dye 53361 -Dyed 61362 -Dyeing 61152 -Dyer 55107 -Dyes 59101 -Dyfed 62613 -Dying 51492 -Dyk 60580 -Dyke 56293 -Dykes 58212 -Dykstra 64423 -Dylan 48283 -Dylan's 57785 -Dylon 64905 -Dymatize 63419 -Dymo 63245 -Dymocks 59560 -Dyn 65170 -Dyna 59630 -Dynagrip 64905 -Dynamat 64657 -Dynamic 44657 -Dynamical 57278 -Dynamically 61152 -Dynamics 45655 -DynamicsNeuromuscular 64657 -Dynamique 60580 -Dynamite 53813 -Dynamix 64657 -Dynamo 55014 -Dynamode 59101 -Dynamos 65452 -Dynan 61152 -Dynastic 61699 -Dynasties 61584 -Dynasty 51275 -Dynaudio 63601 -Dynegy 65452 -Dynix 52484 -Dyno 55578 -Dynojet 63077 -Dynpro 64657 -Dysart 64201 -Dysfunction 54946 -Dysfunctional 62469 -Dysfunctions 65170 -Dyslexia 52765 -Dyslexic 62331 -Dyson 53470 -Dyson's 65452 -Dysphagia 64657 -Dysplasia 63419 -Dyspnea 65452 -Dystopia 65452 -Dystrophy 59357 -Dz 64423 -Dziobas 63077 -Dzone 64423 -Dzongkha 62066 -DÉVELOPPEMENT 64657 -Dáil 64201 -Dé 62917 -Décor 52423 -Défense 64201 -Déjà 61940 -Département 60670 -Développement 57923 -Día 57199 -Díaz 61051 -Dökümü 59357 -Düsseldorf 56899 -E 34520 -E's 59774 -EA 45816 -EA's 58365 -EAA 60762 -EAC 57831 -EACH 50514 -EACLE 62917 -EAD 62469 -EADS 58979 -EAE 63991 -EAFE 65452 -EAG 64657 -EAGLE 54946 -EAGLES 60492 -EAHA 61256 -EAI 56972 -EAL 64201 -EALING 63601 -EALTH 60856 -EAM 62762 -EAMG 61472 -EAN 60321 -EAP 57122 -EAR 57399 -EARL 59702 -EARLIER 65452 -EARLS 64905 -EARLY 53662 -EARN 56899 -EARNED 64201 -EARNINGS 58313 -EARRING 64657 -EARRINGS 62066 -EARS 63077 -EARTH 55963 -EARTHQUAKE 61818 -EAS 56324 -EASA 61472 -EASE 64201 -EASIER 64905 -EASILY 61699 -EASPORTS 57238 -EAST 48265 -EASTER 61472 -EASTERN 53970 -EASTMAN 65170 -EASTON 63601 -EASTSIDE 64423 -EASTWOOD 65170 -EASY 52062 -EAT 55274 -EATING 61152 -EATON 62469 -EATS 65452 -EAU 60405 -EAW 62196 -EAX 60238 -EArt 61940 -EB 50424 -EBA 61818 -EBACE 57609 -EBAY 54857 -EBB 63991 -EBC 58860 -EBD 65170 -EBI 65170 -EBIT 62762 -EBITDA 59424 -EBL 61940 -EBLUL 63792 -EBM 58017 -EBO 65452 -EBONY 63077 -EBOOK 64423 -EBOOKEE 56452 -EBOOKS 64905 -EBOOT 64905 -EBP 64657 -EBPWLFillPatch 61584 -EBR 65452 -EBRD 61472 -EBRI 64657 -EBRU 60856 -EBS 60157 -EBSCO 57970 -EBSCO's 60238 -EBSCOadmin 64657 -EBSCOhost 54749 -EBT 61940 -EBV 57278 -EBW 61940 -EBay 58470 -EBook 64423 -EBooks 58802 -EBs 63991 -EC 46063 -EC's 61940 -ECA 56231 -ECA's 64423 -ECAC 62469 -ECAH 61818 -ECAR 63991 -ECB 56585 -ECBO 61818 -ECC 55348 -ECCC 63601 -ECCMID 59491 -ECCO 60000 -ECCS 64905 -ECD 56791 -ECDL 62196 -ECE 55877 -ECF 61051 -ECG 52303 -ECGs 64423 -ECH 64201 -ECHL 60492 -ECHO 57609 -ECHR 62469 -ECI 59491 -ECJ 64423 -ECKO 63792 -ECL 54439 -ECLA 63991 -ECLIPSE 59630 -ECM 54114 -ECMA 65170 -ECMO 58688 -ECMWF 65170 -ECN 57160 -ECO 54879 -ECOLOGICAL 64201 -ECOLOGY 60405 -ECOMMERCE 63245 -ECONOMIC 52459 -ECONOMICALLY 64423 -ECONOMICS 52435 -ECONOMIES 60078 -ECONOMY 56293 -ECONOMYCanadian 65170 -ECOSOC 65452 -ECP 56935 -ECPlaza 59923 -ECR 58313 -ECS 55299 -ECSC 63601 -ECSU 63792 -ECT 56756 -ECTACO 61256 -ECTION 60157 -ECTS 61051 -ECU 53271 -ECUADOR 60157 -ECVE 64657 -ECW 56518 -ECoG 62762 -ECommerce 61940 -ED 47126 -EDA 56200 -EDC 56050 -EDD 57278 -EDDIE 60405 -EDDM 56899 -EDDY 65452 -EDEN 60321 -EDERAL 62613 -EDF 55500 -EDGAR 55299 -EDGE 51909 -EDHEC 64201 -EDI 54459 -EDINBURGH 60157 -EDIRC 58577 -EDIROL 62331 -EDISON 62331 -EDIT 55474 -EDITED 63792 -EDITH 63792 -EDITING 62066 -EDITION 52051 -EDITIONS 57238 -EDITOR 53316 -EDITOR'S 56262 -EDITORIAL 54749 -EDITORIALS 61818 -EDITORS 60405 -EDL 61152 -EDM 55299 -EDMOND 64201 -EDMONTON 63792 -EDMS 61818 -EDMUND 63419 -EDN 54560 -EDO 61699 -EDP 56827 -EDPS 64905 -EDR 58162 -EDS 56262 -EDSA 63601 -EDT 42331 -EDTA 53485 -EDU 55793 -EDUARDO 63077 -EDUCATION 46282 -EDUCATIONAL 54706 -EDUCATOR 61051 -EDUCATORS 65452 -EDUCAUSE 55604 -EDWARD 53847 -EDWARDS 59227 -EDWG 62917 -EDWIN 58860 -EDX 63601 -EE 46123 -EEA 56972 -EEB 65170 -EEC 56140 -EECA 62917 -EECCA 63601 -EECS 63245 -EED 65452 -EEDA 62331 -EEE 54969 -EEF 60856 -EEG 52699 -EEK 59923 -EELS 63792 -EEO 52622 -EEOC 61584 -EEPROM 55711 -EES 65452 -EEStor 65170 -EET 62066 -EEUU 65452 -EF 48954 -EFA 60238 -EFAs 64657 -EFE 65452 -EFERENCES 60762 -EFF 59101 -EFFECT 53124 -EFFECTIVE 55037 -EFFECTIVENESS 60762 -EFFECTS 51387 -EFFICACY 65170 -EFFICIENCY 54664 -EFFICIENT 62762 -EFFORT 63419 -EFFORTS 62331 -EFI 56293 -EFINITION 64905 -EFL 58017 -EFM 65170 -EFP 63991 -EFS 60952 -EFSF 64201 -EFT 56262 -EFTel 65170 -EFX 59424 -EG 51140 -EGA 63601 -EGCG 57399 -EGEE 64423 -EGF 55934 -EGFP 64201 -EGFR 56518 -EGG 59702 -EGGS 63077 -EGGX 62066 -EGI 65170 -EGISTER 63077 -EGL 64423 -EGM 57084 -EGNOS 58470 -EGO 58860 -EGP 61818 -EGPCS 63991 -EGR 56972 -EGS 59491 -EGT 65452 -EGTA 59923 -EGU 60580 -EGYPT 58745 -EGYPTIAN 62331 -EGeezer 62066 -EGov 63601 -EH 52832 -EHCI 63419 -EHD 64201 -EHH 65452 -EHNA 59630 -EHO 62917 -EHP 61362 -EHR 60405 -EHS 58470 -EHSL 65452 -EHT 65452 -EHV 65170 -EI 49371 -EIA 53646 -EIB 62917 -EIC 60321 -EID 60492 -EIDE 64657 -EIEIO 64201 -EIFS 61818 -EIGHT 57122 -EIGHTH 63419 -EIKI 65170 -EIL 62196 -EIM 64657 -EIN 55084 -EINSTEIN 64423 -EIONET 56518 -EIR 59702 -EIS 54749 -EISSN 56935 -EIT 62762 -EITC 63601 -EITHER 58577 -EIU 55107 -EIZO 64201 -EIfEL 64201 -EJ 50343 -EJB 56080 -EJP 65452 -EJs 56452 -EK 54151 -EKATI 65452 -EKG 59491 -EL 46693 -ELA 57399 -ELAINE 61152 -ELAR 63991 -ELASTIC 64657 -ELBOW 61256 -ELC 61362 -ELCA 61818 -ELDER 65452 -ELDERLY 61818 -ELDORADO 63792 -ELEANOR 64201 -ELEC 62331 -ELECT 61051 -ELECTED 62762 -ELECTION 53438 -ELECTIONS 55992 -ELECTORAL 64423 -ELECTRA 64657 -ELECTRIC 51026 -ELECTRICAL 53038 -ELECTRICIAN 63991 -ELECTRICITY 60670 -ELECTRO 60238 -ELECTRODE 61940 -ELECTROLYTIC 64423 -ELECTROMAGNETIC 61362 -ELECTRON 57524 -ELECTRONIC 51541 -ELECTRONICS 52818 -ELEGANT 62196 -ELEM 61818 -ELEMENT 56972 -ELEMENTARY 56972 -ELEMENTS 58979 -ELENA 63601 -ELEPHANT 61818 -ELEV 65170 -ELEVATED 65452 -ELEVATION 60580 -ELEVATOR 61256 -ELEVATORS 65452 -ELEVENTH 64657 -ELException 63991 -ELF 60078 -ELGIN 65452 -ELI 59164 -ELIAS 65170 -ELICOS 64201 -ELIGIBILITY 57831 -ELIGIBLE 59491 -ELIMINATION 62917 -ELIOT 61362 -ELISA 51783 -ELISABETH 64423 -ELISAs 65452 -ELISE 62917 -ELISPOT 64201 -ELISpot 62066 -ELITE 56452 -ELIZA 63792 -ELIZABETH 54380 -ELJAR 63792 -ELJVIR 63245 -ELK 60952 -ELL 58632 -ELLA 62331 -ELLE 60952 -ELLEN 59164 -ELLIOT 64905 -ELLIOTT 60157 -ELLIPTICAL 64201 -ELLIS 58802 -ELLISON 60000 -ELM 59630 -ELMO 61256 -ELN 65452 -ELO 63245 -ELP 61584 -ELS 61256 -ELSA 62917 -ELSE 56791 -ELSEVIER 59774 -ELSEWHERE 62917 -ELT 58017 -ELTON 62469 -ELV 63245 -ELVIRA 64905 -ELVIS 59923 -ELY 63991 -EM 48256 -EMA 56827 -EMAAR 61818 -EMAAR's 62066 -EMAGE 63419 -EMAIL 44456 -EMAILED 64201 -EMAILS 64905 -EMAP 65170 -EMAS 61699 -EMB 62196 -EMBA 65170 -EMBARCADERO 65452 -EMBARGO 65170 -EMBASSY 60952 -EMBED 48918 -EMBL 61940 -EMBO 55448 -EMBODIMENT 58919 -EMBODIMENTS 58313 -EMBOSSED 64423 -EMBRACE 64201 -EMBROIDERED 61362 -EMBROIDERY 63245 -EMC 50026 -EMC's 64657 -EMCI 57696 -EMCO 64657 -EMCOR 64423 -EMD 57440 -EME 63792 -EMEA 55474 -EMEP 65452 -EMERALD 61818 -EMERGENCIES 63419 -EMERGENCY 51721 -EMERGING 61584 -EMERSON 57278 -EMF 57358 -EMG 54226 -EMH 61472 -EMI 50991 -EMILE 65452 -EMILY 60492 -EMINENCE 59424 -EMIRATES 60762 -EMIS 65452 -EMISSION 60000 -EMISSIONS 59101 -EMITTING 65170 -EMIX 61940 -EMJ 63792 -EMM 63991 -EMMA 59630 -EMMANUEL 63792 -EMO 60238 -EMORY 63601 -EMOTIONAL 63792 -EMP 56618 -EMPIRE 57876 -EMPIRICAL 64423 -EMPLOYED 63792 -EMPLOYEE 56356 -EMPLOYEES 56687 -EMPLOYER 58688 -EMPLOYERS 60856 -EMPLOYMENT 49789 -EMPOWERMENT 63077 -EMPTY 59164 -EMR 57653 -EMS 47980 -EMSA 61940 -EMSRS 61818 -EMSs 65452 -EMT 54519 -EMTALA 62762 -EMTs 63245 -EMU 56110 -EMULSION 64905 -EMV 64201 -EMail 56021 -EMobile 63419 -EN 45479 -ENA 64905 -ENABLE 60856 -ENABLED 63245 -ENACTED 63419 -ENAMEL 64423 -ENB 65170 -ENC 63245 -ENCANTADORA 61256 -ENCLOSED 63601 -ENCLOSURE 63601 -ENCLOSURES 64905 -ENCO 65452 -ENCODING 64905 -ENCORE 63419 -ENCOUNTER 65452 -ENCOURAGING 63601 -ENCYCLOPEDIA 64423 -END 48716 -ENDEAVOUR 64201 -ENDED 60856 -ENDIF 62066 -ENDING 59101 -ENDO 64423 -ENDOCRINE 64657 -ENDOCRINOLOGY 59292 -ENDORSED 64423 -ENDORSEMENT 65170 -ENDS 56756 -ENE 59101 -ENEMY 61818 -ENERAL 63601 -ENERGY 48067 -ENFIELD 60321 -ENFORCEMENT 57046 -ENG 53081 -ENGAGE 65170 -ENGAGEMENT 60856 -ENGINE 52673 -ENGINEER 55299 -ENGINEERED 63077 -ENGINEERING 51043 -ENGINEERS 60078 -ENGINES 59491 -ENGL 63991 -ENGLAND 53729 -ENGLISCH 55631 -ENGLISH 50791 -ENGRAVED 64657 -ENHANCE 63077 -ENHANCED 58860 -ENHANCEMENT 62066 -ENHANCING 60670 -ENI 62469 -ENJOY 55060 -ENLARGE 58262 -ENLISTMENT 64905 -ENMU 62613 -ENNIS 59357 -ENO 62469 -ENOUGH 59292 -ENQUIRIES 61699 -ENQUIRY 61152 -ENR 60670 -ENRICHMENTS 64201 -ENROLLMENT 62762 -ENS 59424 -ENSEMBLE 62762 -ENSO 61940 -ENSURE 61051 -ENSURING 63792 -ENT 53796 -ENTER 52375 -ENTERED 62613 -ENTERING 64423 -ENTERPRISE 50898 -ENTERPRISES 56170 -ENTERTAINING 64905 -ENTERTAINMENT 49494 -ENTHUSIAST 63792 -ENTIRE 56652 -ENTITLED 62762 -ENTITLEMENT 65452 -ENTITY 58417 -ENTRANCE 59424 -ENTREPRENEURSHIP 63991 -ENTRIES 55060 -ENTRY 53331 -ENU 64905 -ENUtxt 65452 -ENV 56518 -ENVELOPE 63245 -ENVELOPMENT 57923 -ENVIRONMENT 49584 -ENVIRONMENTAL 50670 -ENVIRONMENTS 64201 -ENVY 65170 -ENZO 65170 -ENZYME 61472 -ENZYMES 63077 -EO 54439 -EOC 58860 -EOD 60078 -EODD 62613 -EOE 61152 -EOF 56827 -EOFs 64905 -EOI 63601 -EOL 61818 -EON 63991 -EOR 62066 -EOS 49926 -EOTO 63792 -EP 46387 -EP's 65170 -EPA 47070 -EPA's 56585 -EPABX 65452 -EPARTMENT 63792 -EPC 57741 -EPCOS 63077 -EPCRA 65452 -EPCs 64201 -EPD 64201 -EPDM 59848 -EPEC 59039 -EPF 65452 -EPFL 59774 -EPG 58860 -EPI 59039 -EPIC 56485 -EPICS 62469 -EPIDEMIOLOGY 63419 -EPIRB 64201 -EPISODE 57009 -EPISODES 55202 -EPK 61818 -EPL 58065 -EPM 62762 -EPMA 64905 -EPMD 64423 -EPO 55299 -EPORT 62196 -EPORTS 64657 -EPOXY 63077 -EPP 58632 -EPPING 64905 -EPPO 63601 -EPR 54133 -EPRI 64657 -EPROM 63077 -EPS 50357 -EPSON 57278 -EPSPs 63792 -EPSRC 59774 -EPT 59702 -EPX 63601 -EPrints 61256 -EPs 59357 -EQ 53010 -EQOA 62917 -EQT 62196 -EQUAL 58313 -EQUALITY 60952 -EQUALIZATION 64201 -EQUALIZED 62331 -EQUATION 64423 -EQUATIONS 62196 -EQUATORIAL 61472 -EQUESTRIAN 62331 -EQUILIBRIUM 60670 -EQUINE 63991 -EQUIP 61256 -EQUIPMENT 49620 -EQUIPOS 65170 -EQUITY 56899 -EQUIVALENT 63991 -EQUIVALENTS 64905 -ER 47637 -ERA 53038 -ERAS 64201 -ERB 62469 -ERC 57399 -ERCP 65170 -ERD 63245 -ERECTION 64201 -ERES 63245 -ERF 60762 -ERFORMANCE 63991 -ERG 60078 -ERI 63991 -ERIC 43548 -ERICA 63601 -ERICSSON 57831 -ERIE 62762 -ERIK 61584 -ERIKS 63601 -ERIM 60670 -ERIN 61940 -ERISA 59630 -ERITREA 61472 -ERK 57238 -ERM 58979 -ERMA 60856 -ERNEST 60952 -ERNESTO 65170 -ERNIE 64423 -EROS 63077 -EROSION 64905 -EROTIC 63792 -ERP 49076 -ERPs 62066 -ERR 61818 -ERROR 51600 -ERRORS 59424 -ERS 59227 -ERT 62331 -ERTL 64657 -ERVICES 62066 -ES 45843 -ESA 52954 -ESA's 62469 -ESAB 65452 -ESB 58313 -ESC 54151 -ESCADA 65170 -ESCAP 65170 -ESCAPE 59923 -ESCHERICHIA 63792 -ESCM 64423 -ESCORT 61818 -ESCORTS 58577 -ESCROW 62917 -ESD 54749 -ESDP 64201 -ESE 57653 -ESEARCH 65170 -ESEM 63601 -ESET 54601 -ESF 58688 -ESFjs 63792 -ESG 59357 -ESI 56518 -ESIGN 62196 -ESKENAZI 64905 -ESL 48595 -ESM 63419 -ESMTP 58688 -ESO 56452 -ESOL 59630 -ESOP 65452 -ESOT 63601 -ESP 53865 -ESPA 57238 -ESPAGNE 62066 -ESPE 65452 -ESPECIALLY 60321 -ESPERO 64423 -ESPN 46310 -ESPN's 61256 -ESPNU 57696 -ESPNsoccernet 58313 -ESPON 65170 -ESPRIT 61584 -ESPY 63991 -ESQ 59774 -ESR 57009 -ESRB 55793 -ESRC 59702 -ESRD 59848 -ESRI 55373 -ESS 55398 -ESSAY 61584 -ESSAYS 59702 -ESSELTE 62469 -ESSENCE 63792 -ESSENCES 65452 -ESSENTIAL 56899 -ESSENTIALS 60952 -ESSEX 58417 -EST 35671 -ESTA 61256 -ESTABLISH 64905 -ESTABLISHED 61362 -ESTABLISHING 61256 -ESTABLISHMENT 61362 -ESTAS 65452 -ESTATE 49246 -ESTATES 57399 -ESTE 60580 -ESTER 64657 -ESTEREL 64423 -ESTES 65452 -ESTHER 63077 -ESTIMATE 58632 -ESTIMATED 59101 -ESTIMATES 61256 -ESTIMATING 62917 -ESTIMATION 59560 -ESTIMATOR 57278 -ESTONIA 59491 -ESTs 58523 -ESU 65452 -ESULTS 60856 -ESV 59923 -ESX 55226 -ESky 63792 -ET 42223 -ETA 54902 -ETB 63077 -ETC 54685 -ETD 60952 -ETDs 63792 -ETE 63419 -ETERNAL 64423 -ETERNITY 64905 -ETF 53597 -ETFO 64657 -ETFs 51700 -ETH 57970 -ETHERNET 61472 -ETHICAL 61818 -ETHICS 59702 -ETHIOPIA 60670 -ETHNIC 63077 -ETHODS 64905 -ETI 58745 -ETJ 63991 -ETK 65452 -ETL 57122 -ETM 63077 -ETN 65170 -ETO 62762 -ETOP 61699 -ETP 64423 -ETR 64201 -ETS 57831 -ETSI 59630 -ETTA 64905 -ETUC 64423 -ETV 63419 -ETX 61472 -EU 42766 -EU's 56050 -EUC 61818 -EUCLID 63601 -EUGENE 57009 -EUI 63601 -EUL 63077 -EULA 53917 -EUMEDGRID 63419 -EUPHONIUM 63601 -EUR 44234 -EUREKA 59702 -EURO 52968 -EUROBAROMETER 64905 -EUROPA 60321 -EUROPAGES 63792 -EUROPE 52559 -EUROPEAN 51321 -EUROTEL 62917 -EUS 64423 -EUSP 62196 -EUT 63792 -EUV 59702 -EUW 64423 -EUdict 60405 -EUs 61256 -EV 51321 -EVA 49517 -EVACUATION 64201 -EVALUATING 64657 -EVALUATION 53241 -EVAN 62762 -EVANS 57046 -EVANSTON 62762 -EVAPORATION 65452 -EVDO 61362 -EVE 53361 -EVELYN 63245 -EVEN 52622 -EVENING 58745 -EVENT 48801 -EVENTS 44545 -EVER 51877 -EVERCOOL 61152 -EVEREST 60238 -EVERETT 60762 -EVERGREEN 62066 -EVERY 51275 -EVERYBODY 61051 -EVERYDAY 60762 -EVERYONE 55766 -EVERYTHING 54540 -EVERYWHERE 63991 -EVGA 55373 -EVI 64201 -EVIDENCE 54540 -EVIEW 62469 -EVIL 56935 -EVLA 65452 -EVM 61051 -EVO 54581 -EVOL 64905 -EVOLUTION 58979 -EVOLUTIONARY 64905 -EVOLVING 64423 -EVP 59491 -EVS 60405 -EW 50143 -EWA 62762 -EWC 65170 -EWP 65170 -EWS 60762 -EX 50591 -EXACT 56972 -EXACTLY 57046 -EXAFS 62331 -EXAM 60000 -EXAMINATION 58802 -EXAMINATIONS 63792 -EXAMINER 63419 -EXAMPLE 54264 -EXAMPLES 57278 -EXC 60762 -EXCEED 62066 -EXCEL 59630 -EXCELLENCE 59357 -EXCELLENT 55226 -EXCEPT 57876 -EXCEPTION 65170 -EXCEPTIONS 65170 -EXCESS 59357 -EXCHANGE 53438 -EXCHANGES 62917 -EXCITED 63991 -EXCITING 61699 -EXCLUDED 56756 -EXCLUDING 64201 -EXCLUSION 58212 -EXCLUSIONS 65452 -EXCLUSIVE 52411 -EXCLUSIVELY 63419 -EXCLUSIVES 60405 -EXCLUSIVO 62762 -EXCRETION 63601 -EXCURSION 64201 -EXCUSE 65452 -EXD 54664 -EXE 57609 -EXEC 56721 -EXECUTE 63792 -EXECUTED 64423 -EXECUTION 63792 -EXECUTIVE 46714 -EXECUTIVE'S 64657 -EXECUTIVES 62331 -EXEMPT 63245 -EXEMPTION 62762 -EXERCISE 58365 -EXERCISES 65452 -EXETER 62196 -EXHAUST 59774 -EXHIBIT 55934 -EXHIBITION 58802 -EXHIBITIONS 60492 -EXHIBITOR 64905 -EXHIBITS 60670 -EXIF 57609 -EXILE 65452 -EXIST 61472 -EXISTING 55348 -EXISTS 62066 -EXIT 55992 -EXITOS 65452 -EXNGN 61584 -EXOTIC 62331 -EXP 55934 -EXPAND 59560 -EXPANDED 62331 -EXPANDS 64423 -EXPANSION 58365 -EXPECT 63077 -EXPECTATION 62196 -EXPECTATIONS 61699 -EXPECTED 61256 -EXPEDITED 63601 -EXPENDITURE 57696 -EXPENDITURES 57046 -EXPENSE 62613 -EXPENSES 61256 -EXPERIENCE 52899 -EXPERIENCED 61051 -EXPERIENCES 59292 -EXPERIMENT 61940 -EXPERIMENTAL 51368 -EXPERIMENTS 60856 -EXPERT 55348 -EXPERTISE 65170 -EXPERTS 59292 -EXPIRATION 64657 -EXPIRED 57358 -EXPIRES 64905 -EXPLAIN 64905 -EXPLAINS 64657 -EXPLANATION 60670 -EXPLANATORY 63991 -EXPLORATION 62469 -EXPLORE 57831 -EXPLORER 58802 -EXPLOSION 60405 -EXPN 62613 -EXPO 56021 -EXPORT 53331 -EXPORTERS 61699 -EXPORTS 61940 -EXPOSED 62613 -EXPOSURE 57696 -EXPR 64201 -EXPRESS 51942 -EXPRESSED 60670 -EXPRESSION 59292 -EXPRESSIONS 64905 -EXPRESSLY 59424 -EXT 55398 -EXTEND 63419 -EXTENDED 55821 -EXTENDING 64423 -EXTENSION 56652 -EXTENSIONS 62917 -EXTENSIVE 65170 -EXTENT 58113 -EXTERIOR 57970 -EXTERNAL 55963 -EXTRA 52858 -EXTRACT 59164 -EXTRACTION 61152 -EXTRAS 56791 -EXTREME 55793 -EXTREMELY 59357 -EXXON 64657 -EY 59292 -EYE 54226 -EYEE 63792 -EYEGLASSES 64905 -EYES 56972 -EZ 50220 -EZINE 60670 -EZR 64423 -EZTV 63601 -Ea 59630 -Each 38739 -Eadie 61362 -Eads 60492 -Eady 64423 -Eagan 58212 -Eager 58802 -Eagerly 65170 -Eagle 43726 -Eagle's 55578 -Eagles 46868 -Eaglesham 62196 -Eaglesoft 64657 -Eagleville 64201 -Eales 65452 -Ealing 53917 -Eames 60157 -Eamon 58979 -Eamonn 62469 -Ean 64201 -Eanes 65452 -Ear 48887 -EarBuds 64657 -Earbud 64905 -Earbuds 63792 -Earhart 63077 -Earl 47839 -Earl's 61699 -Earle 56231 -Earlene 64657 -Earley 60856 -Earlham 60762 -Earlier 48581 -Earliest 55849 -Earlimart 62331 -Earls 57084 -Earlsfield 63245 -Earlville 64423 -Early 40643 -Earlybird 61940 -Earlyears 65170 -Earmarks 60762 -Earn 46073 -Earned 54879 -Earner 64905 -Earnest 58162 -Earnhardt 54969 -Earning 52778 -Earnings 45949 -Earns 57923 -Earnshaw 65170 -Earobics 63245 -Earp 60952 -Earphone 58523 -Earphones 56721 -Earring 54581 -Earrings 47018 -Ears 53865 -Earshot 65452 -Earth 40205 -Earth's 52244 -EarthLink 64657 -EarthWeb 64201 -Earthbound 61472 -Earthcaller 62917 -Earthen 57009 -Earthling 64201 -Earthlink 62331 -Earthly 62917 -Earthquake 51974 -Earthquakes 54835 -Earthrise 65452 -Earthrumental 65170 -Earths 64657 -Earthsea 64905 -Earthweb 64657 -Earthwork 63991 -Earthworks 63601 -Earthworm 63792 -Earthy 63792 -Ease 50402 -Easel 59560 -Easels 60157 -Easement 61818 -Easements 63991 -Eases 63792 -Easier 54005 -Easiest 58162 -Easily 49932 -Easiness 63792 -Easing 62331 -Easington 64201 -Easingwold 63991 -Easley 60238 -Eason 62196 -East 35063 -East's 62762 -EastEnders 55500 -Eastaugh 65170 -Eastbay 59491 -Eastbound 61699 -Eastbourne 55877 -Eastchester 64423 -EastenderFan 64657 -Eastenders 60580 -Easter 45551 -Easterbrook 64201 -Eastern 40552 -Eastgate 59560 -Eastham 60580 -Easthampton 61699 -Easting 64201 -Eastlake 60078 -Eastland 61051 -Eastleigh 61472 -Eastman 54439 -Easton 51762 -Easton's 63601 -Eastpak 55178 -Eastpointe 64423 -Eastport 64905 -Eastridge 64201 -Eastside 55448 -Eastview 64201 -Eastwick 63077 -Eastwood 52210 -Eastwood's 59424 -Easy 40233 -EasyEdit 63245 -EasyLyte 65452 -EasyShare 57831 -EasyTide 63077 -EasyTroller 62762 -Easyjet 52872 -Easyriders 65170 -Easyshare 63792 -Eat 45934 -Eaten 59774 -Eater 52327 -Eater's 58162 -Eateries 64657 -Eaters 58577 -Eatery 58365 -Eating 42387 -EatingWell 64657 -Eaton 52096 -Eats 51293 -Eau 49695 -Eaves 63601 -Eavesdropping 63991 -Eazy 57318 -Eb 57524 -Ebates 64657 -Ebay 49946 -Ebb 57440 -Ebbert 63792 -Ebbets 64905 -Ebbw 62917 -Ebel 61472 -Eben 61699 -Ebenezer 58632 -Eberhard 61699 -Eberhardt 63991 -Eberhart 62331 -Eberle 62613 -Eberron 63991 -Ebersole 64423 -Ebert 57160 -Ebert's 64657 -Ebisu 62613 -Eble 61152 -Ebola 62331 -Ebon 63991 -Ebony 49651 -Ebook 54902 -Ebookee 64657 -Ebooks 51220 -EbooksDL 56452 -Ebrahim 61818 -Ebrington 65170 -Ebru 59357 -Ebsco 64201 -Ebstein's 65170 -Ebuyer 65170 -Ebvo 63601 -Eby 64905 -Ec 61362 -Ecademy 60321 -Ecard 63991 -EcardClick 61584 -Ecards 59164 -Ecce 63601 -Eccentric 61051 -Eccentricity 63991 -Eccles 59848 -Ecclesia 60762 -Ecclesiastes 60492 -Ecclesiastical 59560 -Eccleston 60952 -Ecclestone 62613 -Ecco 58979 -Echelon 58577 -Echevarria 64905 -Echeverria 65170 -Echidna 65170 -Echidne 63077 -Echinacea 58745 -Echinococcus 62613 -Echo 48482 -EchoStar 61584 -EchoViz 64201 -Echocardiogram 65452 -Echocardiographic 61152 -Echocardiography 58417 -Echoes 55060 -Echoing 59702 -Echols 62469 -Echostar 64657 -Echuca 61472 -Eck 64657 -Eckardt 64657 -Eckel 64657 -Ecker 58262 -Eckerd 63601 -Eckert 58688 -Eckhart 60952 -Eckman 63991 -Ecko 58919 -Eckstein 62762 -EclectiCollections 62196 -Eclectic 53533 -Eclipse 47903 -Eclipsepedia 65452 -Eclipses 64905 -Eco 49070 -EcoFocus 64905 -EcoHomes 63991 -EcoRI 55474 -EcoRV 65170 -Ecobank 63991 -Ecography 63245 -Ecol 53762 -Ecole 55992 -Ecological 51473 -Ecologically 65170 -Ecologist 64657 -Ecologue 59424 -Ecology 47675 -Ecology's 64201 -Ecommerce 50394 -Ecomvia 65170 -Econ 50865 -EconLog 64657 -EconPapers 48377 -Econo 55552 -Econoline 58919 -Econometric 57084 -Econometrica 62066 -Econometrics 58470 -Economia 61362 -Economic 38939 -Economica 62469 -Economical 58860 -Economically 56862 -Economics 40695 -Economides 64905 -Economie 62469 -Economies 56262 -Economist 49670 -Economist's 61362 -Economists 56356 -Economy 41964 -Economía 62331 -Econpapers 56080 -Ecosport 58470 -Ecostore 56170 -Ecosyst 63601 -Ecosystem 55500 -Ecosystems 56721 -Ecotourism 59227 -Ecotoxicology 63419 -Ecoulement 62917 -Ecru 63601 -Ecsta 65170 -Ecstacy 62331 -Ecstasy 57741 -Ecstatic 64905 -Ectopic 59357 -Ector 64905 -Ecuación 64657 -Ecuador 44931 -Ecuadorean 64657 -Ecuadorian 59774 -Ecumenical 59848 -Ecumenism 64423 -Ecvv 57399 -Eczema 55154 -Ed 43068 -Ed's 57653 -EdD 65452 -EdFed 65170 -EdKopinski 62917 -Eda 65170 -Edad 62613 -Edam 59923 -Edd 60492 -Edda 59424 -Eddie 46387 -Eddie's 60078 -Eddy 52609 -Eddyville 64905 -Ede 63991 -Edel 65170 -Edelbrock 61362 -Edelman 59357 -Edelstein 60492 -Edelweiss 59491 -Edema 61699 -Eden 48363 -Eden's 63792 -Edenbridge 62917 -Edenh 60157 -Edenvale 65452 -Eder 62762 -Edexcel 61699 -Edgar 49458 -Edgardo 64905 -Edgbaston 63245 -Edge 44142 -EdgeCast 64423 -EdgeSight 64201 -Edgebrook 65452 -Edgecombe 61699 -Edged 64657 -Edgefield 64657 -Edgehill 63792 -Edgeio 62469 -Edgemont 64657 -Edger 62196 -Edgerrin 64657 -Edgerson 64657 -Edgerton 60580 -Edges 59424 -Edgewall 53286 -Edgewater 56021 -Edgewood 57609 -Edgeworth 63419 -Edging 60238 -Edguy 61940 -Edgware 60856 -Edgy 55992 -Edi 61584 -Edible 53988 -Edibles 60078 -Edict 63991 -Edie 57122 -Edificio 63077 -Edimax 65170 -Edina 58632 -Edinboro 63601 -Edinburg 62331 -Edinburgh 45019 -Edinburgh's 61256 -Edinger 65170 -Edirne 61051 -Edirol 58745 -Edison 50227 -Edison's 60078 -Edisto 59491 -Edit 37832 -EditMode 63419 -EditPad 64201 -EditTablePlugin 64905 -Editable 62196 -Edited 47107 -Editeur 49212 -Edith 51772 -Editing 46167 -Edition 38360 -Editions 47619 -Editon 64657 -Editor 40963 -Editor's 46390 -Editorial 41473 -Editoriale 65170 -Editorials 47445 -Editors 45193 -Edits 56862 -Edman 61362 -Edmond 54813 -Edmonds 54078 -Edmondson 60078 -Edmonson 64905 -Edmonton 46837 -Edmonton's 63991 -Edmund 51877 -Edmundo 62066 -Edmunds 54114 -Edna 53630 -Edo 58313 -Edouard 59039 -Eds 63419 -Edsall 65452 -Edsel 62066 -Edson 57970 -Edt 61472 -Edu 60078 -EduGaming 64657 -EduMine 63419 -Eduard 57318 -Eduardo 52818 -Edublogs 65452 -Edubuntu 61818 -Educ 52712 -Educación 61256 -Educate 55877 -Educated 58688 -Educating 56827 -Education 33513 -Education's 58632 -Educational 41399 -Educative 65170 -Educator 52399 -Educator's 61256 -Educators 50815 -Edun 64657 -Edvard 62066 -Edward 42413 -Edward's 59560 -Edwardian 57876 -Edwards 46136 -Edwards's 60762 -Edwardsville 60000 -Edwin 49633 -Edwin's 65452 -Edwina 62469 -Edy 64423 -Ee 59702 -Eee 50623 -EeePC 64423 -Eek 63601 -Eel 61362 -Eels 59560 -Een 58577 -Eerie 62066 -Eero 62469 -Eesti 53988 -Eeyore 63601 -Ef 61940 -Efe 63419 -Efecto 60762 -Efendi 65452 -Efex 63245 -Eff 62762 -Effect 42783 -Effective 44869 -EffectiveUserName 62762 -Effectively 55992 -Effectiveness 51377 -Effector 61152 -Effects 41576 -Effervescent 62469 -Effet 59923 -Effexor 57653 -Effi 65170 -Efficacité 63601 -Efficacy 53256 -Efficiencies 61699 -Efficiency 47919 -Efficient 49190 -Efficiently 63245 -Effie 61152 -Effient 63419 -Effigy 64657 -Effingham 58919 -Effluent 59227 -Efflux 63792 -Effort 51690 -Effortless 61472 -Efforts 51721 -Eficacia 63601 -Eforcity 64657 -Efrain 63601 -Efron 50670 -Eft 57923 -Efteling 61940 -Eg 54902 -Egan 56110 -Egan's 65170 -Egbert 63991 -Ege 64201 -Eger 64423 -Egerton 61472 -Egg 47526 -EggXpert 64905 -Egger 62196 -Eggers 61584 -Eggert 63077 -Eggheads 54283 -Eggleston 59702 -Eggnog 65452 -Eggplant 55821 -Eggs 50560 -Eggshell 64201 -Egham 60405 -Egil 64905 -Eglinton 61699 -Eglo 65452 -Egmond 64905 -Egmont 63792 -Ego 52886 -Egon 60952 -Egotastic 64905 -Egremont 62613 -Egret 63991 -Eguisheim 64201 -Egypt 43169 -Egypt's 57524 -Egyptian 48199 -Egyptians 57482 -Egyptology 62469 -Eh 59774 -Ehime 62469 -Ehlers 62331 -Ehrenberg 63601 -Ehrlich 56050 -Ehrlichia 60670 -Ehrman 61051 -Ehrmann 64657 -Ehsan 63991 -Ehud 57482 -Ei 59101 -Eibach 55578 -Eichenlaub 64423 -Eichhorn 65170 -Eichler 61584 -Eichten 63991 -Eicon 65170 -Eid 55474 -Eider 65452 -Eidos 57923 -Eien 60762 -Eiffel 54540 -Eiger 63419 -Eight 47147 -Eighteen 55500 -Eighteenth 59702 -Eighth 52472 -Eighties 60670 -Eights 61472 -Eighty 58313 -Eigse 65452 -Eiht 65452 -Eiji 63077 -Eijk 60670 -Eiken 65452 -Eiki 63601 -Eiko 63077 -Eilat 63245 -Eildon 65452 -Eile 62917 -Eilean 62613 -Eileen 51772 -Eilon 62331 -Eilts 65452 -Eimear 64905 -Eimer 65452 -Eimeria 64905 -Ein 55323 -Einar 63419 -Einarus 64905 -Einaudi 62917 -Eindhoven 56618 -Eine 60000 -Eines 64423 -Einfach 65170 -Eingetragen 63077 -Einhorn 63601 -Eins 64905 -Einstein 50040 -Einstein's 57970 -Einsteins 63991 -Eintracht 65452 -Eintrag 65452 -Eircom 60238 -Eire 58860 -Eireann 63991 -Eisele 63792 -Eisen 62762 -Eisenberg 57440 -Eisenhauer 64423 -Eisenhower 54245 -Eisenhower's 65452 -Eisenia 65170 -Eisenstein 62762 -Eisler 65452 -Eisner 60078 -Eisteddfod 64657 -Eitan 65452 -Either 48436 -Eitrigg 60856 -Eiyuu 64423 -Ej 63077 -Ejaculation 57440 -Ejay 64905 -Ejaz 65170 -Eject 63991 -Ejection 62066 -Ejectment 64905 -Ejector 64423 -Ek 53470 -Eka 64905 -Ekadashi 65170 -Ekalaka 65452 -Ekaterina 63991 -Ekaterinburg 62917 -Eker 63419 -Eki 65452 -Ekim 61152 -Eklenti 63601 -Eklund 62196 -Eko 63077 -Eksp 59774 -Ekstenzije 63419 -Ekstra 63991 -Ekstraklasa 64905 -Ekta 64905 -El 39223 -Ela 61256 -Elaborate 63077 -Elaboration 64201 -Elaeophorbia 65452 -Elaine 50220 -Elaine's 64905 -Elakelaiset 64657 -Elam 60157 -Elan 55711 -Elana 61051 -Elance 61940 -Elantra 59357 -Elapsed 60580 -Elastic 53646 -Elastica 65452 -Elasticity 62066 -Elasticized 65170 -Elastomer 63792 -Elastomers 63419 -Elation 65170 -Elavil 58417 -Elba 58860 -Elbe 62762 -Elbert 58688 -Elbit 63601 -Elbow 52597 -Elbows 56687 -Elbridge 61256 -Elburn 65452 -Eldan 65452 -Eldar 59039 -Elder 47395 -Elderberry 59101 -Eldercare 64423 -Elderly 50949 -Elders 57318 -Eldest 65170 -Eldon 58577 -Eldorado 55821 -Eldre'Thalas 60762 -Eldred 61940 -Eldredge 61256 -Eldridge 59560 -Eldritch 65452 -Ele 62066 -Eleaf 61472 -Eleanor 51888 -Elearning 64657 -Elebini 63792 -Elec 59227 -Elect 56756 -Elected 49992 -Electing 64423 -Election 39787 -Elections 45072 -Elective 57278 -Electives 59923 -Electoral 49240 -Electorate 61699 -Electors 63245 -Electr 64201 -Electra 54096 -Electric 40028 -Electric's 62613 -ElectricArtists 63601 -Electrical 41722 -Electrically 62762 -Electricals 57278 -Electrician 49633 -Electrician's 50178 -Electricians 54360 -Electricity 48431 -Electrics 56935 -Electrification 61699 -Electro 48902 -Electrocard 63601 -Electrocardiogram 63792 -Electrocardiographic 64905 -Electrocardiography 64905 -Electrochemical 56756 -Electrochemistry 63601 -Electrode 56935 -Electrodermal 65170 -Electrodes 58577 -Electroencephalogr 65170 -Electroencephalography 64201 -Electrol 65452 -Electroless 63601 -Electroluminescent 63991 -Electrolux 53630 -Electrolysis 59424 -Electrolyte 58688 -Electrolytes 62066 -Electrolytic 61051 -Electromagnetic 53729 -Electromagnetics 62613 -Electromechanical 59923 -Electromyography 63991 -Electron 48567 -Electronic 38961 -Electronica 52472 -Electronical 65170 -Electronically 59848 -Electronics 37047 -Electronicstalk 59101 -Electronique 64423 -Electronista 64423 -Electronix 61818 -Electrons 59227 -Electrophoresis 57609 -Electrophoretic 57653 -Electrophysiol 59923 -Electrophysiological 60405 -Electrophysiology 59164 -Electropolishing 65452 -Electroporation 65452 -Electrospray 65452 -Electrostatic 56827 -Electrotechnical 65170 -Electrotechnology 63077 -Electroweak 65452 -Elects 62196 -Elefante 65452 -Elegance 54622 -Elegant 48776 -Elegantly 63601 -Elegy 56791 -Eleitoral 64423 -Elekta 65452 -Elektra 58802 -Elektrik 65452 -Elektro 63419 -ElektroPhysik 63601 -Elektronik 61051 -Elem 54479 -Element 47649 -Elemental 53331 -Elementary 42178 -Elemento 65452 -Elements 47167 -Elemis 62613 -Elen 64905 -Elena 51303 -Elena's 63991 -Elenco 63792 -Eleni 59560 -Eleocharis 65170 -Eleonora 62066 -Elephant 49500 -Elephants 54207 -Elevate 63245 -Elevated 53899 -Elevating 63792 -Elevation 52096 -Elevations 60078 -Elevator 51963 -Elevators 55107 -Eleven 50983 -Eleventh 54835 -Eley 63792 -Elf 51531 -Elfen 59292 -Elfin 64657 -Elfman 61940 -Elford 58919 -Elford's 64905 -Elfwood 58632 -Elgar 58860 -Elgg 63601 -Elgin 53407 -Eli 49899 -Eli's 64423 -Elia 58313 -Elian 64657 -Eliana 61584 -Eliane 63792 -Elias 54078 -Eliasson 65452 -Elica 64657 -Elicitation 64905 -Elida 57696 -Elie 57785 -Eliezer 62613 -Eligibility 50234 -Eligible 47787 -Elihu 61818 -Elijah 54419 -Elim 62331 -Eliminate 53346 -Eliminated 63077 -Eliminates 58523 -Eliminating 55906 -Elimination 53454 -Eliminator 56485 -Eliminators 64905 -Elimite 59923 -Elimu 64905 -Elin 61051 -Elina 61818 -Elinor 60670 -Elio 60580 -Eliot 51630 -Eliot's 58417 -Elisa 52765 -Elisabeth 52375 -Elisabetta 62066 -Elise 53454 -Eliseo 60405 -Elisha 54302 -Elissa 60762 -Elite 44397 -EliteXC 60405 -Elites 61818 -Elixir 56791 -Eliza 52648 -Elizabeth 41770 -Elizabeth's 59039 -Elizabethan 56324 -Elizabethtown 60238 -Elizalde 62066 -Elk 49559 -Elkay 61256 -Elke 58745 -Elkhart 56756 -Elkhorn 61152 -Elkhound 65170 -Elkin 62917 -Elkins 55738 -Elko 60952 -Elkridge 62066 -Elks 59923 -Elkton 60952 -Ell 62331 -Ella 51590 -Elladan 64905 -Elland 63077 -Elle 51942 -ElleMagazine 64201 -Ellen 46055 -Ellen's 61699 -Ellensburg 63601 -Ellenton 62196 -Eller 60580 -Ellerslie 64657 -Ellery 61584 -Ellesmere 58979 -Elli 62196 -Ellice 65170 -Ellicott 59424 -Ellie 54341 -Ellie's 64423 -Ellijay 64905 -Elliman 60492 -Ellin 65170 -Ellingson 62469 -Ellington 55500 -Elliot 50192 -Elliot's 63601 -Elliott 47741 -Elliott's 64657 -Ellipse 64423 -Ellipsis 64201 -Elliptic 59491 -Elliptical 57524 -Ellis 46708 -Ellison 54380 -Ellisport 63601 -Elliston 63077 -Ellsbury 63792 -Ellsworth 56356 -Ellum 63792 -Ellusionist 63991 -Ellwood 62066 -Elly 61818 -Ellyn 57318 -Ellyson 64423 -Elm 51330 -Elma 60580 -Elmar 62762 -Elmbridge 62613 -Elmendorf 65452 -Elmer 54245 -Elmer's 62762 -Elmers 65452 -Elmhurst 56551 -Elmira 58470 -Elmo 52387 -Elmo's 61472 -Elmont 64201 -Elmore 58065 -Elms 60952 -Elmwood 55578 -Elna 64905 -Elnard 65452 -Elo 60670 -Elodie 62469 -Eloisa 65452 -Eloise 58802 -Elomi 65452 -Elon 58470 -Elonex 64201 -Elongated 63245 -Elongation 62331 -Eloquence 64201 -Eloy 65170 -Elrod 63991 -Els 57440 -Elsa 56791 -ElsaWin 61362 -Elsdon 64201 -Else 45058 -Else's 64201 -Elsevier 43361 -Elsevier's 65452 -Elsewhere 51793 -Elshiekh 63991 -Elsi 62613 -Elsie 57160 -Elsinore 61472 -Elsner 65452 -Elson 60762 -Elspeth 60321 -Elston 61472 -Elta 62762 -Eltham 60762 -Elton 51620 -Elune 57831 -Elusive 60000 -Elution 60157 -Elva 61472 -Elvan 64905 -Elven 61699 -Elves 56687 -Elvin 62196 -Elvira 58262 -Elvis 47831 -Elway 62066 -Elwood 56388 -Elwyn 64905 -Elwynn 60580 -Ely 54770 -Elymus 63245 -Elyria 59357 -Elyse 60492 -Elysees 64657 -Elysian 59357 -Elysium 62613 -Elzire 65170 -Elément 65452 -Em 51387 -Ema 63991 -Emaar 60762 -Emacs 55934 -Emad 65170 -Emagine 63601 -Email 31641 -Emailed 47474 -EmailedTransactions 61818 -Emailing 63419 -Emails 52256 -Emam 63991 -Emancipation 59774 -Emanuel 53917 -Emanuela 62917 -Emanuele 57046 -Emap 59491 -Emax 65452 -Embankment 56935 -Embarassing 65170 -Embarcadero 60321 -Embargo 51220 -Embark 60952 -Embarq 59357 -Embarrassed 61940 -Embarrassing 58979 -Embarrassment 62917 -Embassies 55060 -Embassy 47815 -Embassy's 65452 -Embed 40709 -Embeddable 55526 -Embedded 48586 -EmbeddedObject 54399 -EmbeddedObjects 62331 -Embedding 54946 -Embeds 65452 -Embellished 61362 -Embellishment 62762 -Embellishments 59424 -Ember 53565 -Embers 63419 -Emberstorm 65170 -Emblem 56293 -Emblems 58470 -Embodied 61472 -Embodiment 60952 -Embodiments 60157 -Embolization 62613 -Embossed 56791 -Embossing 60580 -Embrace 53081 -Embraces 62917 -Embracing 59101 -Embraer 60580 -Embroidered 52363 -Embroidery 50507 -Embry 65452 -Embryo 57084 -Embryol 60492 -Embryology 60157 -Embryonic 58212 -Embryos 59164 -Emcee 64423 -Emcor 63991 -EmediateAd 62331 -Emelianenko 64657 -Emeline 61940 -Emenee 64905 -Emer 60856 -Emerald 46640 -Emeralds 63419 -Emerg 55793 -Emerge 60670 -Emergence 56791 -Emergencies 52622 -Emergency 41487 -Emergent 58065 -Emerges 60670 -Emerging 47349 -Emeric 64905 -Emerica 61152 -Emerick 63245 -Emeril 59630 -Emeriss 64905 -Emerita 65452 -Emeritus 54749 -Emerson 50694 -Emerson's 64657 -Emery 53882 -Emeryville 61940 -Emi 60405 -Emigrant 61256 -Emigrants 64423 -Emigration 60000 -Emil 55604 -Emile 56388 -Emilia 56140 -Emiliano 63419 -Emilie 57609 -Emilio 55934 -Emily 45946 -Emily's 56652 -Emin 62066 -Eminem 48477 -Eminem's 65452 -Eminence 56972 -Eminent 58577 -Emini 55992 -Emir 60157 -Emirate 59560 -Emirates 44378 -Emission 51580 -Emissions 50782 -Emit 63077 -Emitter 62762 -Emitting 59923 -Emlyn 64905 -Emma 46420 -Emma's 60078 -Emmanuel 52546 -Emmanuelle 57122 -Emmaus 62066 -Emme 65170 -Emmerdale 58417 -Emmerich 61940 -Emmerson 63245 -Emmet 60952 -Emmett 58262 -Emmi 63991 -Emmis 64201 -Emmitt 63245 -Emmons 63077 -Emmott 65452 -Emmure 63077 -Emmy 49999 -Emmylou 52886 -Emmys 51974 -Emo 52686 -Emo's 65170 -Emoglobe 63991 -Emory 53153 -Emotes 64905 -Emoticon 62917 -Emoticons 57318 -Emotion 56021 -Emotional 50192 -Emotionally 63792 -Emotions 54114 -Emotive 61818 -Emoto 64905 -Emp 62469 -Empanadas 63245 -Empathy 60321 -Emperor 50499 -Emperor's 58688 -Emperors 60321 -Empey 65452 -Emphasis 54581 -Emphasize 63792 -Emphasizes 63419 -Emphasizing 62917 -Emphysema 63601 -Empire 45092 -Empire's 63419 -Empires 51570 -Empirical 51700 -Empl 62917 -Empleo 63792 -Emploi 62613 -Emplois 63792 -Employ 59039 -Employability 63419 -Employed 55274 -Employee 41978 -Employee's 58365 -Employees 46149 -Employer 45008 -Employer's 58688 -Employers 46012 -Employing 57122 -Employment 39083 -Emporia 60405 -Emporio 54969 -Emporis 55766 -Emporium 55250 -Empower 57046 -Empowered 61256 -Empowering 56827 -Empowerment 54302 -Empowers 63991 -Empreinte 64657 -Empresa 57160 -Empresarial 64905 -Empresas 64657 -Empress 55202 -Emptiness 63792 -Empty 48751 -Emptying 64905 -Empyreal 65170 -Empyrean 64423 -Emre 61256 -Ems 64905 -Emsam 60157 -Emsworth 64201 -Emu 56262 -Emulate 65452 -Emulation 55323 -Emulator 53211 -Emulators 55037 -Emule 62917 -Emulsion 60321 -Emulsions 65452 -En 43954 -EnCana 62196 -EnGenius 64657 -EnScript 64201 -Ena 64905 -Enable 47596 -EnableFolder 64423 -Enabled 51996 -Enabler 64423 -Enables 55274 -Enabling 52739 -Enacted 62066 -Enalapril 65170 -Enamel 55130 -Enameled 60405 -Enamels 64905 -Enamelysin 65170 -Enantioselective 63419 -Enbridge 63601 -Encanto 61699 -Encapsulation 61699 -Encarnacion 63792 -Encarta 55014 -Enceladus 62331 -Encephalartos 63991 -Encephalitis 62066 -Encephalopathy 65452 -Enchant 59923 -Enchanted 53597 -Enchanting 54706 -Enchantment 59923 -Enchantments 63245 -Enchilada 63077 -Enchiladas 62917 -Enciclopedia 64905 -Encik 64905 -Encinitas 59227 -Encino 61362 -Enclave 58577 -Enclose 64201 -Enclosed 55448 -Enclosing 65452 -Enclosure 52375 -Enclosures 52845 -Encode 62196 -Encoded 61472 -Encoder 54792 -Encoders 59702 -Encoding 53712 -Encompass 62762 -Encore 52899 -Encounter 55014 -Encountered 64905 -Encountering 65170 -Encounters 54749 -Encourage 53712 -Encouraged 60952 -Encouragement 58745 -Encourages 60000 -Encouraging 55992 -Encroachment 64423 -Encrypt 60321 -Encrypted 59774 -Encryption 49809 -Encuentra 62066 -Encuentro 62613 -Encuesta 65452 -Encyclical 65170 -Encyclicals 62066 -Encyclo 63991 -Encyclocentral 63601 -Encyclopaedia 53882 -Encyclopedia 42384 -Encyclopedias 55684 -Encyclopedic 64905 -Encyclopædia 47276 -Encéfalo 62613 -Encéphale 62613 -End 39383 -EndIf 63991 -EndNote 45191 -EndNotes 57278 -EndSection 57609 -EndSubSection 62066 -EndWar 59923 -Enda 65452 -Endangered 51888 -Ende 61051 -Endeavor 60000 -Endeavors 60580 -Endeavour 58065 -Ended 51620 -Endemic 62469 -Endep 59292 -Ender 61940 -Enderby 63245 -Enders 62613 -Endgame 59774 -Endgames 63077 -Endicott 60670 -Ending 48332 -Endings 61152 -Endive 60856 -Endless 52387 -Endnote 58417 -Endnotes 62613 -Endo 57831 -EndoCart 64905 -Endocr 64905 -Endocrine 52584 -Endocrinol 52315 -Endocrinologist 61940 -Endocrinology 49867 -Endod 61051 -Endodontic 59424 -Endodontics 60492 -Endodontists 64423 -Endogenous 56485 -Endokrinol 64905 -Endologix 62613 -Endometrial 61818 -Endometriosis 59357 -Endoplasmic 63792 -Endorse 58212 -Endorsed 58523 -Endorsement 51909 -Endorsements 52725 -Endorses 51238 -Endorsing 65170 -Endosc 58979 -Endoscopic 56756 -Endoscopy 57238 -Endothelial 55226 -Endothelin 61818 -Endothelium 65452 -Endotoxin 61472 -Endovascular 60078 -Endowed 60000 -Endowment 53182 -Endowments 58577 -Endpoint 50974 -Endpoints 62917 -Endre 63991 -Ends 47427 -Endura 62613 -Endurance 53361 -Enduring 58162 -Enduringly 63419 -Enduro 59560 -Endymion 60238 -Ene 64201 -Enea 64905 -Enema 59848 -Enemies 55107 -Enemy 50263 -Energetic 59774 -Energetics 61362 -Energi 65452 -Energia 61584 -Energie 56518 -Energies 58365 -Energise 64423 -Energize 60405 -Energized 65452 -Energizer 55552 -Energizing 63077 -Energomash 65452 -Energon 60078 -Energy 36988 -Energy's 58065 -Energía 63419 -Enermax 58802 -Enero 62469 -Enesco 63991 -Enews 62762 -Enfamil 64657 -Enfant 62762 -Enfants 63077 -Enferm 62917 -Enfermedad 61362 -Enfermedades 64905 -Enfield 50974 -Enforce 61152 -Enforcement 45481 -Enforcer 61362 -Enforcing 61152 -Eng 49234 -Engadget 45840 -Engadine 65170 -Engage 55226 -Engaged 55657 -Engagement 47879 -Engagements 52752 -Engager 62613 -Engages 64423 -Engaging 55178 -Engel 56262 -Engelberg 63601 -Engelbert 64423 -Engelhardt 62917 -Engelmann 64905 -Engels 61584 -Engelsk 63077 -Engenharia 63601 -Engg 65452 -Engin 61584 -Engine 39699 -Engineer 41883 -Engineer's 57970 -Engineered 53081 -Engineering 37641 -Engineeringtalk 62066 -Engineers 46282 -Enginehead 64657 -Engineman 53796 -Engines 45472 -Engl 52256 -England 37704 -England's 52256 -Englander 64423 -Engle 61152 -Englehart 65452 -Engler 65170 -Englewood 53241 -Englisch 58313 -Englische 63077 -English 32967 -Englishman 56899 -Englishman's 65170 -Englishmen 61152 -Englishtown 64423 -Englund 63245 -Engng 60670 -Engr 65452 -Engraftment 65452 -Engraved 55578 -Engraver 64905 -Engravers 62762 -Engraving 57318 -Engvall 63792 -Enh 65170 -Enhance 50321 -Enhanced 46953 -Enhancement 49108 -Enhancements 51095 -Enhancer 57358 -Enhancers 59292 -Enhances 54749 -Enhancing 53729 -Enhydra 64657 -Eni 65452 -Enid 58162 -Enigma 53917 -Enigmatic 63245 -Enishi 61699 -Enix 56050 -Enjoi 62613 -Enjoy 44366 -Enjoyable 63991 -Enjoyed 59491 -Enjoying 55060 -Enjoyment 61699 -Enjoys 60078 -Enkei 60157 -Enki 62917 -Enlace 64905 -Enlaces 58979 -Enlarge 44154 -Enlarged 56262 -Enlargement 54360 -Enlargements 65170 -Enlarger 62066 -Enlargers 64905 -Enlarging 65452 -Enlight 64201 -Enlighten 63077 -Enlightened 60238 -Enlightenment 56080 -Enlist 61051 -Enlisted 55934 -Enlistment 62762 -Enlistments 63245 -Enna 61940 -Ennead 64423 -Ennely 61818 -Ennio 58523 -Ennion 65452 -Ennis 56293 -Enniscorthy 65170 -Enniskillen 64423 -Eno 59039 -Enoch 59164 -Enochian 61699 -Enoggera 65452 -Enology 64201 -Enon 63991 -Enormous 62917 -Enos 62196 -Enotes 65452 -Enough 48648 -Enquire 54005 -Enquirer 56652 -Enquiries 51175 -Enquiry 49359 -Enquête 65170 -Enrica 63991 -Enrich 59424 -Enriched 59923 -Enriching 64905 -Enrichment 54770 -Enrico 53746 -Enright 64201 -Enrique 52886 -Enrol 62613 -Enroll 55657 -Enrolled 55738 -Enrolling 62762 -Enrollment 45765 -Enrollments 64657 -Enrolment 56972 -Enron 54813 -Enron's 62762 -Enroute 65452 -Ensayo 63792 -Ensdorff 64905 -Ensembl 60580 -Ensemble 49952 -Ensembles 57785 -Ensen 64201 -Ensenada 62917 -Ensiferum 58745 -Ensign 52130 -Ensuite 58860 -Ensure 49376 -Ensures 56862 -Ensuring 53865 -Ent 56972 -Entamoeba 60856 -Entangled 63601 -Entebbe 64657 -Entec 65452 -Entegra 62469 -Entei 64905 -Enter 37450 -Enteral 59702 -Enterasys 63077 -Entercom 64201 -Entered 56899 -Entergy 59774 -Enteric 62196 -Entering 51026 -Enteritis 60078 -Enterobacter 61940 -Enterobacteriaceae 63245 -Enterococcus 59164 -Enterovirus 65452 -Enterprise 39416 -EnterpriseStorageForum 65170 -Enterprises 42024 -Enterprising 63991 -Enters 53485 -Entertaiment 64905 -Entertain 59923 -Entertainer 56791 -Entertainers 57278 -Entertaining 45659 -Entertainment 34513 -Entertainment's 61940 -Entertainments 59227 -Enthought 65452 -Enthralled 63419 -Enthusiasm 59101 -Enthusiast 50686 -Enthusiastic 62469 -Enthusiasts 56231 -Enticing 64905 -Entire 44243 -Entirely 59039 -Entities 53882 -Entitled 60762 -Entitlement 59923 -Entitlements 61584 -Entity 51406 -Entombed 64657 -Entomol 55202 -Entomological 61362 -Entomologist 65170 -Entomology 56721 -Entourage 55323 -Entra 65170 -Entrada 61699 -Entradas 61472 -Entrainment 65452 -Entrance 49726 -Entrances 62917 -Entrants 62613 -Entrapment 63419 -Entrar 63991 -Entre 58979 -Entrecard 63077 -Entree 59357 -Entrees 58523 -Entrega 64201 -Entrenchement 65170 -Entrenchment 63601 -Entrepreneur 49234 -Entrepreneur's 62917 -Entrepreneurial 55274 -Entrepreneurs 51193 -Entrepreneurship 50638 -Entreprises 65452 -Entrevista 60321 -Entrez 54581 -Entries 42036 -Entropia 64657 -Entropy 58313 -Entrust 62762 -Entry 40467 -EntryCount 62613 -Entryway 60405 -Entrée 62066 -Ents 59227 -Entwicklerforum 60580 -Entwicklung 62613 -Entwistle 64201 -Enuff 65452 -Enum 65452 -Enumclaw 63077 -Enumeration 57524 -Env 59164 -Envelope 50726 -Envelopes 53952 -Enviada 59702 -Enviado 64657 -Enviar 55849 -Envios 63601 -Envir 64201 -Enviro 60405 -Enviroment 63792 -Enviromental 61940 -Environ 51580 -Environment 38661 -Environment's 65170 -Environmental 38975 -Environmentalism 62469 -Environmentalist 64201 -Environmentalists 53286 -Environmentally 52982 -Environments 50906 -Environnement 60952 -Environs 63792 -Enviroquip 63991 -Envision 59774 -Envisioning 63419 -Envoy 57160 -Envoy's 64657 -Envoyer 46480 -Envy 55631 -Envío 62331 -Enya 60952 -Enyce 62613 -Enzima 63419 -Enzo 55250 -Enzymatic 55821 -Enzyme 51293 -Enzymes 55766 -Enzymol 63792 -Enzymology 63245 -Eo 62762 -EoD 64905 -Eocene 60492 -Eoghan 61472 -Eoin 58212 -Eola 63991 -Eon 60670 -Eonar 59357 -Eons 55202 -Eos 54924 -Eosinophil 63077 -Eosinophilic 64905 -Eosinophils 63419 -Ep 51387 -Epa 65170 -Epc 60952 -Epcos 64657 -Epcot 62066 -Eph 62469 -Ephedra 59491 -Ephedrine 58979 -Ephemera 60762 -Ephemeral 59164 -Ephesians 58632 -Ephesus 61256 -Ephraim 58113 -Ephrata 61940 -Epi 51931 -Epic 48590 -Epica 64905 -Epicardial 65170 -Epicenter 52521 -Epicor 63792 -Epics 61256 -Epicure 61699 -Epicurean 62331 -Epicurious 53695 -Epidemic 56862 -Epidemics 65452 -Epidemiol 54924 -Epidemiologic 58979 -Epidemiological 57876 -Epidemiology 50576 -Epidermal 58365 -Epidural 60157 -Epigenetic 63792 -Epigenetics 64657 -Epigraph 64423 -Epigraphy 63077 -Epil 63601 -Epilady 65452 -Epilator 61472 -Epilators 65452 -Epilepsia 59702 -Epilepsy 51721 -Epilogue 60762 -Epinephrine 63419 -Epinions 52858 -Epiphany 57399 -Epiphone 55906 -Episcopal 51229 -Episcopalians 65170 -Episode 40799 -Episodes 45050 -Episodic 63077 -Episodio 63792 -Epistemology 65452 -Epistle 60580 -Epistles 62762 -Epitaph 63245 -Epitaxial 61699 -Epithelial 56721 -Epithelioid 61362 -Epithelium 62917 -Epitome 61472 -Epitope 64657 -Epix 62066 -Epoch 60078 -Epon 63601 -Epona 62917 -Epoque 65170 -Epos 60856 -Epox 62331 -Epoxides 64423 -Epoxy 52913 -Eppa 63601 -Eppendorf 60856 -Epperson 63245 -Epping 59039 -Eppley 64905 -Eppraisal 63419 -Epps 60238 -Eprints 63419 -Epsilon 55849 -Epsom 55711 -Epson 46915 -Epstein 54770 -Epub 52062 -Epworth 61472 -Eq 57238 -Equal 46837 -EqualLogic 65452 -Equalities 60762 -Equality 49986 -Equalization 58065 -Equalizer 57609 -Equalizers 61256 -Equally 56420 -Equals 58417 -Equant 65170 -Equation 49313 -Equations 50387 -Equator 60952 -Equatorial 47581 -Equestrian 50607 -EquiTool 64201 -Equifax 59923 -Equilibria 60580 -Equilibrium 54133 -Equimpment 64423 -Equine 53301 -Equinix 59774 -Equinox 54419 -Equip 52210 -Equipage 65452 -Equipe 62613 -Equipment 37141 -Equipmentman 51888 -Equipments 55578 -Equipo 62613 -Equipped 55526 -Equipping 62613 -Equitable 59164 -Equitation 62762 -Equities 54835 -Equitorial 64423 -Equity 43934 -Equivalence 60580 -Equivalency 64423 -Equivalent 52982 -Equivalents 56827 -Equus 60321 -Er 54133 -Era 50013 -EraaUK 64201 -Eradication 60405 -Eragon 58523 -Eragrostis 64423 -Eran 59774 -Eras 61818 -Erase 56293 -Erased 64657 -Eraser 55423 -Erasers 61699 -Erasing 62196 -Erasmus 53830 -Erastus 64423 -Erasure 62196 -Erato 65452 -Erb 59923 -Erbacher 62917 -Erbario 61940 -Erbe 63601 -Erbin 62331 -Erciyespor 60238 -Erdle 65452 -Erdogan 65170 -Erdos 64905 -Ere 65170 -Erect 60238 -Erectile 55060 -Erecting 65452 -Erection 54835 -Erector 58162 -Erectors 61362 -Eredar 60580 -Eredivisie 60157 -Erementar 61472 -Eres 61256 -Erez 63077 -Erfurt 64423 -Ergebnisse 61818 -Ergebnisseite 65452 -Ergo 57084 -Ergon 64201 -Ergonomic 55963 -Ergonomically 65170 -Ergonomics 52546 -Ergotron 63991 -Erhard 59560 -Erhardt 63991 -Eri 65452 -Eric 41893 -Eric's 59560 -Erica 50599 -Erica's 65452 -Ericameria 58523 -Ericeira 61362 -Erich 55604 -Erichsen 63601 -Erick 57009 -Ericka 63991 -Erickson 54360 -Ericson 61051 -Ericsson 43450 -Ericsson's 61256 -Erie 50840 -Erik 48571 -Erik's 64201 -Erika 52198 -Eriksen 61584 -Erikson 62469 -Eriksson 56324 -Eriksson's 63419 -Erin 48687 -Erin's 61940 -Eris 62613 -Erith 59560 -Eritrea 47057 -Eritrean 61940 -Erk 65452 -Erkki 63991 -Erland 65170 -Erlang 63991 -Erlangen 63792 -Erlanger 64657 -Erlbaum 60580 -Erle 64423 -Erlenmeyer 62196 -Erlich 63245 -Erlinda 62917 -Erliste 61362 -Erma 63792 -Erman 63792 -Ermenegildo 65170 -Ermira 65170 -Erna 61362 -Ernakulam 62066 -Erne 64201 -Ernest 50227 -Ernest's 65452 -Ernestine 63792 -Ernesto 57482 -Ernie 51293 -Ernie's 64657 -Ernst 51700 -Ero 62331 -Erode 64905 -Erodes 62196 -Erol 63419 -Eros 55684 -Erosion 54005 -Erotic 49234 -Erotica 52496 -Eroticy 60157 -Erotik 60762 -Erowid 64201 -Err 61051 -Errand 65170 -Errata 58470 -Erratic 61256 -Erratum 58470 -Errol 57609 -Error 42940 -Errored 65170 -Errors 49119 -Erskine 60670 -Erste 61940 -Erte 64905 -Ertl 63245 -Erté 61472 -Eruption 61256 -Ervin 57876 -Erving 63077 -Erwan 63419 -Erweiterte 63245 -Erwin 54479 -Erwinia 60762 -Erykah 58523 -Erythema 61940 -Erythrocyte 61584 -Erythrocytes 64201 -Erythromycin 62917 -Erythropoietin 63077 -Es 51985 -Esa 62066 -Esato 63792 -Esau 62917 -Esc 60238 -Escada 59491 -Escaflowne 61818 -Escalade 57358 -Escalante 63601 -Escalate 60762 -Escalating 64657 -Escalation 61152 -Escalator 65452 -Escalona 59491 -Escambia 61940 -Escapade 63077 -Escape 46705 -Escaped 62762 -Escapes 52351 -Escaping 60670 -Escapism 65170 -Escapist 62917 -Escarpment 64905 -Escentuals 55423 -Eschaton 60762 -Escher 61699 -Escherichia 48826 -Esclavo 65170 -Esco 64201 -Escobar 59923 -Escola 62331 -Escolar 63991 -Escondido 54969 -Escort 51321 -Escorted 61818 -Escorts 49701 -Escovedo 64201 -Escrow 53066 -Escudo 61699 -Escuela 60000 -Ese 63792 -Eseries 62762 -Eset 61584 -Esha 60670 -Esher 63077 -Esk 64201 -Eskdale 62469 -Eskimo 56080 -Eskimos 58802 -Esko 64423 -Eskom 62066 -Esky 60856 -Esme 61699 -Esmee 65170 -Esmeralda 61362 -Esmond 64905 -Eso 62331 -Esophageal 58577 -Esophagus 58802 -Esoteric 59424 -Esp 57399 -Espa 62196 -Espace 59848 -Espacio 63245 -Espada 58577 -Espadrilles 63077 -Espagne 64201 -Espagnol 64905 -Espana 56791 -Espanol 50263 -Espanola 60952 -Espanta 64905 -Espanyol 62331 -España 50067 -Español 39309 -Española 60238 -Especial 61051 -Especially 48991 -Espectrometría 63077 -Espectáculo 64201 -Espen 61940 -Esperance 61699 -Esperanto 50646 -Esperanza 58523 -Espero 63245 -Espinado 64423 -Espiner 63792 -Espinosa 61256 -Espinoza 60670 -Espionage 59424 -Espirito 65170 -Espiritu 65452 -Esplanade 57653 -Espn 65170 -Espoo 63601 -Esposito 58365 -Espressione 64905 -Espresso 50242 -Esprit 55711 -Esprits 65452 -Espírito 64905 -Esq 61699 -Esquimalt 63792 -Esquire 54302 -EsquireMag 64905 -Esra 65170 -Essa 62613 -Essai 59702 -Essaouira 61584 -Essar 64657 -Essay 49777 -Essays 47190 -Esse 63601 -Esselbach 64657 -Esselte 62917 -Essen 57318 -Essence 50277 -Essences 59923 -Essendon 59848 -Essent 65452 -Essential 44563 -Essentially 57084 -Essentials 46748 -Esser 63601 -Essex 45826 -Essie 65170 -Essien 65452 -Esso 62762 -Est 53662 -Esta 56293 -Establish 52280 -Established 49682 -Establishes 58417 -Establishing 53485 -Establishment 51211 -Establishments 54727 -Estación 63601 -Estadio 63245 -Estado 56972 -Estados 56972 -Estadual 62331 -Estalagem 59630 -Estancia 63419 -Estar 64201 -Estas 63601 -Estate 33355 -Estates 46871 -Este 55604 -Esteban 57440 -Estee 57876 -Esteem 59630 -Estefan 61699 -Estefania 65452 -Estella 60405 -Estelle 55202 -Estep 65452 -Estepona 63245 -Ester 55906 -Esterases 64905 -Esterbrook 64657 -Estero 64657 -Esters 63991 -Estes 54770 -Estevan 63601 -Esteve 63792 -Esteves 59491 -Estevez 63077 -Esther 51825 -Esthet 62917 -Esthetic 65170 -Esthetician 62917 -Esthetics 60762 -Esthwaite 60000 -Estilo 64657 -Estimate 48427 -Estimated 44442 -Estimates 48427 -Estimating 53729 -Estimation 51238 -Estimator 55578 -Estimators 63601 -Estland 64657 -Esto 63245 -Estomago 65452 -Estonia 45080 -Estonia's 64201 -Estonian 51415 -Estoque 63245 -Estoril 60321 -Estoy 63245 -Estrada 56420 -Estradiol 61051 -Estranged 65452 -Estrela 64905 -Estrella 58979 -Estrellas 62196 -Estremeñu 58065 -Estria 65452 -Estrogen 54992 -Estrogens 61362 -Estructura 60405 -Estuaries 62917 -Estuarine 64201 -Estuary 57696 -Estudiantes 65452 -Estudio 53138 -Estudios 59923 -Está 64423 -Estée 64423 -Esubscribe 63077 -Esurance 63991 -Et 50791 -EtOAc 64423 -EtOH 60238 -Eta 60856 -Etat 63991 -Etats 61699 -Etc 53729 -Etcetera 61699 -Etch 59101 -Etched 58688 -Etching 59424 -Etchingham 64905 -Ete 64657 -Eteach 64905 -Etech 65170 -Eten 61818 -Eterna 65170 -Eternal 50357 -Eternia 64201 -Eternity 53454 -Ethan 51415 -Ethanol 53182 -EtheRx 64423 -Ethel 55373 -Ether 57785 -Ethereal 59164 -Etheridge 57831 -Ethernet 46237 -Ethers 63792 -Ethic 62762 -Ethical 49732 -Ethicon 63077 -Ethics 43101 -Ethie 64905 -Ethier 63419 -Ethiopia 45624 -Ethiopian 52996 -Ethiopians 62331 -Ethletic 62917 -Ethmoid 64905 -Ethnic 48761 -Ethnicities 65452 -Ethnicity 53241 -Ethnobotanical 64905 -Ethnographic 62196 -Ethnography 63601 -Ethnology 63601 -Ethology 61940 -Ethos 59491 -Ethridge 64657 -Ethyl 58212 -Ethylene 57970 -Ethylène 65170 -Etiam 65452 -Etienne 55711 -Etihad 59357 -Etiology 60321 -Etiquetas 64905 -Etiquette 49726 -Etisal 64657 -Etisalat 63419 -Etna 60157 -Etnies 58365 -Eto 62469 -Etobicoke 58688 -Etoile 63245 -Etomite 64905 -Eton 58365 -Etonic 64905 -Etosha 62917 -Etowah 63245 -Etre 64201 -Etro 61584 -Etronics 64657 -Etruscan 62762 -Ets 65452 -Etsy 54023 -Etta 57122 -Ettinger 64201 -Ettore 63419 -Etude 53066 -Etudes 60580 -Etymology 58212 -Etymotic 63601 -Etzel 62762 -Eu 55604 -Euan 62917 -Eubanks 62066 -Eucalyptus 57399 -Eucharist 57482 -Eucharistic 61362 -Euchre 61818 -Eucla 61818 -Euclid 55250 -Euclidean 54264 -Eudemons 64657 -Eudora 58417 -Euflexxa 61940 -Eugen 60856 -Eugene 47231 -Eugenes 61256 -Eugenia 57399 -Eugenics 62613 -Eugenie 61152 -Eugenio 61051 -Euglena 65452 -Eugène 62762 -Eukanuba 65452 -Eukaryot 63601 -Eukaryota 62196 -Eukaryotic 58577 -Eula 65170 -Euler 56585 -Euler's 62613 -Eulerian 61051 -Euless 63077 -Eulogy 64657 -Eulophia 64423 -Eumundi 64201 -Eun 57785 -Eunice 57440 -Eunos 63991 -Euphorbia 60000 -Euphoria 57696 -Euphoric 47224 -Euphrates 62762 -Euplotes 64201 -Eur 47752 -EurActiv 61152 -Eurail 60157 -Eurand 65170 -Eurasia 57199 -Eurasian 54005 -Eurax 60078 -Eure 63991 -Eureka 50522 -Eurema 65452 -Eurex 65452 -Euripides 60580 -Euro 44109 -EuroCup 64905 -EuroInvestor 61152 -Eurobarometer 63245 -Euroblog 63991 -Eurochoices 63601 -Eurodam 65452 -Eurogamer 56899 -Eurogamers 60321 -Euroleague 61051 -Euroline 65170 -Euromillions 61699 -Euromoney 63991 -Euromonitor 62917 -Euronext 58802 -Europa 51000 -Europace 63991 -Europcar 62917 -Europe 37728 -Europe's 50957 -European 37046 -Europeans 52725 -Europes 65452 -Europhysics 59292 -Europäisches 62613 -Européen 63991 -Euros 54023 -Eurosport 57009 -Eurostar 59227 -Eurostat 60078 -Eurostile 63991 -Eurosurveillance 62762 -Eurotek 64657 -Eurotherm 62917 -Eurotrip 63419 -Eurovision 54664 -Eurozone 63601 -Eurythmics 61051 -Euskara 52521 -Eustace 63991 -Eustachian 62196 -Eustatius 61152 -Eustis 61051 -Euston 60405 -Eutelsat 64201 -Euthanasia 59923 -Eutrophic 65452 -Ev 59848 -Eva 47024 -Eva's 63991 -Evacuated 62917 -Evacuation 54151 -Evacuees 63077 -Evade 62066 -Eval 59292 -Evaluación 62331 -Evaluate 51762 -Evaluated 59039 -Evaluates 61818 -Evaluating 52339 -Evaluation 43130 -Evaluations 54360 -Evaluative 59357 -Evaluator 59630 -Evaluators 65170 -Evalyn 65452 -Evan 49033 -Evan's 62613 -Evander 63792 -Evanescence 56324 -Evangel 63601 -Evangelical 53917 -Evangelicals 61472 -Evangeline 58262 -Evangelion 57084 -Evangelism 55250 -Evangelist 55711 -Evangelista 60157 -Evangelistic 64657 -Evanovich 63077 -Evans 45929 -Evanston 55500 -Evansville 54170 -Evaporation 57524 -Evaporative 60078 -Evaporator 61472 -Evasion 61818 -Evasive 61256 -Eve 47024 -Eve's 63601 -Evecare 60238 -Evel 62762 -Evelina 63245 -Eveline 65170 -Evelyn 51492 -Evelyn's 64905 -Evelyne 63245 -Even 39913 -Evenementen 65452 -Evenflo 60670 -Evening 45302 -Eveninger 64423 -Evenings 58632 -Evens 62917 -Event 38329 -EventArgs 59424 -EventLoopFlag 65170 -Eventective 61152 -Eventful 56200 -Eventi 65452 -Eventide 56652 -Eventide's 65170 -Eventing 58365 -Eventos 59630 -Events 33685 -Eventually 53392 -Ever 43051 -EverBank 64657 -EverQuest 55130 -EverX 63792 -Everard 64905 -Everclear 63991 -Evercore 64905 -Everday 63792 -Eveready 61472 -Everest 51731 -Everett 51570 -Everette 64905 -Everex 63419 -Everglades 58017 -Evergreen 50873 -Everhart 63245 -Everight 64657 -Everio 61699 -Everitt 65452 -Everlast 56899 -Everlasting 57876 -Everlight 58688 -Everly 59424 -Evermore 64423 -Everquest 60238 -Evers 61152 -Everson 60762 -Eversong 60856 -Evert 60762 -Everton 51793 -Every 40484 -EveryBlock 57199 -EveryZing 62762 -Everybody 49596 -Everybody's 55711 -Everybodys 62196 -Everyday 47515 -Everyman 60670 -Everyone 44519 -Everyone's 49336 -Everyones 63419 -Everythi 62917 -Everything 41011 -Everything's 57876 -Everytime 56200 -Everywhere 52832 -Eves 62066 -Evesham 58632 -Evga 63601 -Evgeni 63245 -Evgeny 62196 -Evi 63419 -Evia 64657 -Evian 61940 -Eviction 60321 -Evictions 64423 -Evidence 45524 -Evidences 65170 -Evident 60157 -Evidently 60321 -Evie 61152 -Evil 45127 -Evil's 65170 -Evinrude 62613 -Evista 61699 -Evisu 60492 -Evita 58802 -Evite 51444 -Evo 49739 -Evoke 64657 -Evol 57482 -Evolution 44087 -Evolutionary 52521 -Evolutions 61256 -Evolva 63792 -Evolve 59039 -Evolved 57923 -Evolver 63601 -Evolves 65452 -Evolving 55934 -Evra 57566 -Ewa 57741 -Ewald 63245 -Ewan 55323 -Ewart 63245 -Ewch 65170 -Ewe 60157 -Ewell 60856 -Ewen 60856 -Ewido 64905 -Ewing 54519 -Ewing's 58688 -Ex 47170 -ExPASy 62917 -Exact 47544 -ExactTarget 63991 -Exactly 53762 -Exalted 60405 -Exam 46874 -Examen 64201 -Examination 47843 -Examinations 54380 -Examine 55526 -Examined 61051 -Examiner 48964 -Examiner's 62613 -Examiners 52534 -Examines 57358 -Examining 55014 -Example 45497 -Examples 46563 -Exams 50957 -Exc 60670 -Excalibur 55250 -Excavating 59101 -Excavation 55684 -Excavations 60405 -Excavator 59848 -Excavators 61584 -Exceed 57970 -Exceeded 62613 -Exceeding 56862 -Exceeds 59560 -Excel 44970 -Excel's 65452 -Excelence 65452 -Excelente 64905 -Excelerator 62196 -Excellence 45565 -Excellency 59039 -Excellent 42989 -Excelsior 56080 -Except 47895 -Exception 51434 -Exceptional 52622 -Exceptionally 61818 -Exceptions 54685 -Excercise 62762 -Excerpt 51434 -Excerpted 56110 -Excerpts 53917 -Excess 51942 -Excessive 54207 -Excessively 64905 -Exchange 39943 -Exchange's 64423 -Exchangeable 65452 -Exchanger 62613 -Exchangers 60492 -Exchanges 50718 -Exchanging 60856 -Exchequer 63601 -Excimer 63419 -Excise 56452 -Excision 61256 -Excitation 57009 -Excitatory 65170 -Excite 48501 -Excited 56972 -Excitement 60238 -Exciter 62917 -Exciting 52954 -Exclaim 65452 -Exclamation 63077 -Exclude 55060 -Excluded 56935 -Excludes 60157 -Excluding 55084 -Exclusion 55500 -Exclusions 60492 -Exclusiv 63792 -Exclusive 43799 -Exclusively 55821 -Exclusives 50840 -Excretion 59923 -Excursion 51069 -Excursions 55250 -Excuse 54170 -Excuses 61472 -Exe 59630 -Exec 46395 -ExecProcedure 62331 -Execs 61256 -Executable 57653 -Execute 54399 -Executec 64201 -Executed 57399 -Executes 63601 -Executing 59491 -Execution 50791 -Executioner 63991 -Executions 61152 -Executive 38705 -Executive's 56827 -Executives 48928 -Executor 64201 -Executus 59630 -Exedy 65452 -Exel 60952 -Exell 58745 -Exelon 62066 -Exempla 62762 -Exemplar 64423 -Exemplary 59357 -Exempt 55657 -Exempted 56021 -Exemption 53847 -Exemptions 58162 -Exerc 64905 -Exercisable 62196 -Exercise 43488 -Exercised 62196 -Exercises 50718 -Exercising 58745 -Exergy 62762 -Exetel 60078 -Exeter 49152 -Exfoliating 63991 -Exfoliation 64657 -Exh 65170 -Exhale 63991 -Exhaust 47611 -Exhausted 64201 -Exhaustion 64905 -Exhaustive 63419 -Exhausts 59560 -Exhedra 63991 -Exhibit 48067 -Exhibited 61699 -Exhibiting 62613 -Exhibition 45606 -Exhibitions 47325 -Exhibitor 55178 -Exhibitors 54245 -Exhibits 51846 -Exide 63419 -Exif 57970 -Exige 63991 -Exile 55107 -Exiled 58523 -Exiles 61584 -Exilim 58577 -Exim 62331 -Exist 60238 -Existence 55793 -Existential 62469 -Existentialist 63245 -Existing 46903 -Exists 63245 -Exit 47342 -Exitialis 65170 -Exiting 61699 -Exitos 63601 -Exits 59164 -Exmoor 61472 -Exmouth 56324 -Exocrine 65170 -Exocytosis 63601 -Exodar 58262 -Exoddus 65452 -Exodus 53066 -Exogenous 61051 -Exon 57609 -Exorcism 64201 -Exorcist 62066 -Exospeed 64201 -Exot 64423 -Exotic 49458 -Exotica 60670 -Exotics 56618 -Exp 46514 -Expand 42344 -ExpandAllSections 62917 -Expandable 56200 -Expanded 50227 -Expander 57084 -Expanding 52818 -Expands 50328 -Expansion 47748 -Expansions 58979 -Expansive 65452 -Expat 53695 -Expatica 61584 -Expatriate 63245 -Expatriates 63419 -Expats 56935 -Expect 49999 -Expectancy 61256 -ExpectancyOccupationsCivil 62917 -Expectant 62762 -Expectation 62917 -Expectations 53081 -Expected 48851 -Expecting 55578 -Expects 58979 -Expedia 47367 -Expedia's 60157 -Expediency 64905 -Expedite 62917 -Expedited 53470 -Expedition 50492 -Expeditionary 60952 -Expeditions 51026 -Expelled 62613 -Expendable 63245 -Expenditure 50898 -Expenditures 51985 -Expense 50734 -Expenses 49639 -Expensive 53899 -Exper 62762 -Experian 57399 -Experience 41630 -Experienced 47980 -Experiences 48918 -Experiencing 57440 -Experientia 60952 -Experiential 58979 -Experiment 48296 -Experimental 43901 -Experimentally 63419 -Experimentation 60405 -Experimenting 63991 -Experiments 49783 -Expert 40751 -Expert's 60952 -ExpertLaw 64905 -ExpertVillage 64423 -Expertise 49511 -Experts 43344 -Expiration 51521 -Expire 59227 -Expired 51996 -Expires 54479 -Expiring 54643 -Expiry 53796 -Explain 51444 -Explained 53361 -Explaining 56827 -Explains 53712 -Explanation 53746 -Explanations 57831 -Explanatory 54059 -Explicit 49511 -Explode 59491 -Exploded 65170 -Exploding 58417 -Exploit 56485 -Exploitability 65170 -Exploitation 56485 -Exploited 59774 -Exploiting 58523 -Exploits 55348 -Exploración 61940 -Exploration 48581 -Explorations 57238 -Exploratory 57741 -Explore 38085 -ExploreTV 60405 -Explored 60321 -Explorer 43490 -Explorer's 61256 -ExplorerX 63245 -Explorers 53952 -Explores 59560 -Exploring 49038 -Explosion 52571 -Explosions 59491 -Explosive 55604 -Explosives 57566 -Expo 46086 -ExpoTV 57970 -Exponent 60952 -Exponential 59164 -Exponentially 65170 -Export 41088 -Exported 62613 -Exporter 54419 -Exporters 52351 -Exporting 55299 -Exports 53712 -Expos 57358 -Expose 59164 -Exposed 52244 -Exposes 61472 -Exposing 58212 -Exposition 54170 -Expositions 61362 -Expositor 61818 -Expository 62066 -Exposure 47431 -Exposures 60000 -Expr 64905 -Expresión 65452 -Express 39543 -ExpressCard 62331 -ExpressJet 52739 -ExpressWriter 62917 -Expressed 56899 -Expresses 61472 -Expressindia 64657 -Expressing 57160 -Expression 45838 -ExpressionEngine 61584 -Expressionism 62066 -Expressionist 64905 -Expressions 50966 -Expressive 59560 -Expresso 61940 -Expressway 55963 -Expt 63245 -Expulsion 65452 -Expy 64201 -Exquisite 56231 -Ext 52435 -Extech 60952 -Exteel 64423 -Extend 52164 -Extenda 60078 -Extendable 64423 -Extended 44444 -ExtendedStay 63601 -Extender 54459 -Extenders 60078 -Extending 52399 -Extends 55130 -Extensa 63077 -Extensibility 58113 -Extensible 58979 -Extension 43714 -Extensions 47931 -Extensis 59292 -Extensive 51175 -Extensively 65170 -Extent 54643 -Extention 64657 -Extentions 64423 -Exterior 46745 -Exteriors 59774 -Exterminating 64201 -Exterminator 64905 -Exterminators 65452 -External 41641 -Externally 62917 -Externe 64201 -Externship 64657 -Extinct 60321 -Extinction 57199 -Extinguisher 58113 -Extinguishers 59164 -Extinguishing 59630 -Exton 61940 -Extra 42845 -Extracellular 56899 -Extracorporeal 63991 -Extracranial 65452 -Extract 50623 -Extracted 59560 -Extracting 58860 -Extraction 51473 -Extractions 63991 -Extractive 63245 -Extractor 55448 -Extractors 62762 -Extracts 55154 -Extracurricular 61584 -Extradition 63991 -Extragalactic 65170 -Extramural 62917 -Extranet 58065 -Extranets 64201 -Extraordinaire 59101 -Extraordinary 52954 -Extrapolation 64905 -Extras 46915 -Extrasolar 61584 -Extraterrestrial 62196 -Extravagant 65170 -Extravaganza 57046 -Extrawelt 64423 -Extrem 64201 -Extrema 63419 -Extremadura 64201 -Extreme 43805 -ExtremeTech 61256 -ExtremeView 64905 -Extremely 50476 -Extremes 60238 -Extremism 63601 -Extremist 60856 -Extremity 63077 -Extrication 63991 -Extrinsic 63601 -Extruded 61699 -Extrusion 58365 -Extrusions 63077 -Exum 65452 -Exxon 54245 -ExxonMobil 57876 -Ey 63991 -Eyal 63245 -Eye 41097 -EyeCandy 65452 -EyeClops 64201 -EyeTV 61584 -EyeToy 61940 -Eyeball 62469 -Eyebrow 58417 -Eyebrows 63077 -Eyecam 63419 -Eyecandy 64201 -Eyecare 61940 -Eyed 52699 -Eyeglass 62917 -Eyeglasses 55604 -Eyelash 59848 -Eyelashes 62196 -Eyelet 61256 -Eyelid 61256 -Eyelids 62196 -Eyeliner 61051 -Eyepiece 62469 -Eyepieces 62469 -Eyes 45499 -Eyeshadow 57199 -Eyeshadows 64201 -Eyeshield 62331 -Eyesight 62613 -Eyewear 51406 -Eyewitness 57482 -Eyez 63792 -Eyl 62469 -Eyre 55906 -Ez 60405 -Ezaki 61818 -Eze 65170 -Ezekiel 57923 -Ezequiel 65170 -Ezine 54188 -EzineArticles 51931 -Ezines 56050 -Ezra 55274 -Ezy 64905 -EzyDVD 64657 -F 35375 -F's 64657 -FA 47374 -FA's 65170 -FAA 52164 -FAA's 63419 -FAB 56420 -FABIA 64657 -FABRIC 55398 -FABRICATION 60952 -FABRICS 62066 -FABRIQUE 65452 -FABULOUS 60856 -FAC 54946 -FACC 62613 -FACE 52375 -FACEBOOK 56080 -FACES 59101 -FACIAL 60952 -FACILITATING 63419 -FACILITATION 64423 -FACILITIES 53646 -FACILITY 56356 -FACING 60580 -FACITED 61699 -FACS 56110 -FACSCalibur 65170 -FACScan 64657 -FACT 55578 -FACTOID 60405 -FACTOR 56324 -FACTORS 55711 -FACTORY 55631 -FACTS 54706 -FACTSHEETS 64201 -FACTUAL 63991 -FACULTY 55474 -FAD 57566 -FADE 62613 -FAF 64423 -FAFSA 57653 -FAG 57238 -FAI 59630 -FAIL 54622 -FAILED 61051 -FAILURE 56021 -FAILURES 63601 -FAIR 54059 -FAIRBANKS 61818 -FAIRBORN 63419 -FAIRCHILD 60762 -FAIREST 64423 -FAIRFAX 59164 -FAIRFIELD 61472 -FAIRHAVEN 64657 -FAIRS 62066 -FAIRVIEW 62917 -FAIRY 61699 -FAIS 58688 -FAITH 58417 -FAK 63991 -FAKE 58212 -FAL 62469 -FALCON 60321 -FALKLAND 62196 -FALL 52622 -FALLEN 63245 -FALLING 63419 -FALLS 53438 -FALSE 56935 -FAM 58212 -FAME 58745 -FAMICOM 58688 -FAMILIES 57482 -FAMILY 48269 -FAMOUS 59630 -FAMU 62613 -FAN 52175 -FANCAST 60670 -FANCIE 60492 -FANCY 56862 -FANDANGO 60492 -FANG 64905 -FANN 64657 -FANNON 62762 -FANS 56262 -FANTASTIC 58365 -FANTASY 54419 -FANTOM 64905 -FANalyst 51229 -FANaylst 63245 -FAO 53316 -FAO's 63077 -FAOSTAT 58745 -FAP 59560 -FAQ 34269 -FAQ'S 58162 -FAQ's 46918 -FAQResearchAll 59923 -FAQS 55060 -FAQs 38857 -FAR 53934 -FARC 63792 -FARE 52496 -FAREWELL 65170 -FARGO 63245 -FARK 60580 -FARM 53882 -FARMERS 60492 -FARMING 64905 -FARMINGDALE 57609 -FARMINGTON 65170 -FARMS 58632 -FARO 59923 -FAROE 61152 -FARR 65170 -FARRELL 65170 -FAS 55578 -FASB 65452 -FASEB 57318 -FASHION 50865 -FASHIONISTA 59702 -FASHIONS 64201 -FASO 61256 -FAST 51387 -FASTA 61152 -FASTENERS 64201 -FASTER 60580 -FASTEST 61699 -FAT 54341 -FATAL 61472 -FATE 62762 -FATF 57278 -FATHER 58577 -FATHER'S 64905 -FATIGUE 64905 -FATS 63245 -FATTY 62613 -FAU 58065 -FAULT 64201 -FAULTY 61818 -FAUX 63792 -FAV 61818 -FAVOR 62613 -FAVORITE 54879 -FAVORITES 55578 -FAVORITESshare 56140 -FAVOURITE 59702 -FAVOURITES 63991 -FAVRE 62331 -FAX 50067 -FAY 64657 -FAYETTE 64201 -FAYETTEVILLE 65170 -FAs 65452 -FB 48269 -FBA 65170 -FBC 61818 -FBG 63792 -FBGA 63991 -FBI 48624 -FBI's 61051 -FBIM 63991 -FBL 63991 -FBLA 64423 -FBLC 64423 -FBM 61699 -FBO 62613 -FBP 63991 -FBR 61699 -FBS 55154 -FBT 63601 -FBTR 64201 -FBV 64201 -FC 44827 -FC's 62917 -FCA 62066 -FCAT 60405 -FCB 62469 -FCC 49553 -FCC's 62613 -FCCC 62066 -FCCLA 62613 -FCCPT 62066 -FCD 64905 -FCE 62066 -FCF 60856 -FCG 62331 -FCH 63419 -FCI 58017 -FCK 64905 -FCKeditor 64905 -FCL 64657 -FCM 63245 -FCN 61940 -FCO 58262 -FCP 58470 -FCS 55037 -FCSN 65452 -FCT 63245 -FCU 59774 -FCUK 64657 -FCX 64201 -FCoE 65170 -FD 52256 -FDA 47417 -FDA's 59630 -FDC 58860 -FDD 62066 -FDDI 61818 -FDEP 59424 -FDG 63601 -FDI 52387 -FDIC 53970 -FDIC's 63991 -FDInet 61051 -FDL 60000 -FDM 63077 -FDNY 61051 -FDO 62917 -FDOT 62762 -FDR 57653 -FDR's 65170 -FDS 63077 -FDTD 62917 -FDU 64657 -FE 50094 -FEA 57923 -FEAR 53597 -FEARS 63601 -FEASIBILITY 64423 -FEAST 62917 -FEAT 65452 -FEATHER 64423 -FEATURE 54792 -FEATURED 48643 -FEATURES 47976 -FEATURING 60405 -FEB 53286 -FEBRUARY 49488 -FEBS 55526 -FEC 55684 -FECA 63601 -FED 59560 -FEDERAL 52062 -FEDERATED 62469 -FEDERATION 58745 -FEDEX 59923 -FEDS 65170 -FEE 53712 -FEED 53712 -FEEDBACK 44964 -FEEDING 60492 -FEEDINGTHEDESIRE 64657 -FEEDJIT 58745 -FEEDS 51630 -FEEL 55526 -FEELING 62762 -FEELS 62331 -FEES 54245 -FEET 56231 -FEF 65452 -FEH 63077 -FEHB 65452 -FEI 56862 -FEIN 64657 -FEINBERG 64657 -FEL 63792 -FELD 60952 -FELICIANO 63991 -FELIPE 65452 -FELL 62917 -FELLOW 63245 -FELLOWS 64201 -FELLOWSHIP 62196 -FELT 61699 -FEM 57923 -FEMA 52725 -FEMA's 63792 -FEMALE 49809 -FEMALES 62762 -FEMJOY 59227 -FEMS 54946 -FENCE 58523 -FENCES 64423 -FENCING 61699 -FENDER 62331 -FENG 62762 -FENGYANGXIN 64657 -FENWAY 64657 -FEP 63601 -FER 63991 -FERC 58979 -FERDINAND 61584 -FERENC 63077 -FERGIE 63245 -FERGUSON 61940 -FERN 62917 -FERNANDEZ 60580 -FERNANDO 63077 -FERPA 63077 -FERRARI 59774 -FERRER 63601 -FERRET 65452 -FERRY 62613 -FERTILITY 62066 -FERTILIZER 62917 -FES 59164 -FESR 63792 -FEST 59848 -FESTIVAL 54792 -FESTIVALS 59357 -FET 55963 -FETAC 65452 -FETAL 62762 -FETISH 60492 -FETs 61362 -FEV 60856 -FEVER 58802 -FEW 55906 -FF 49135 -FFA 54685 -FFAs 63245 -FFB 59560 -FFC 60078 -FFCollective 65452 -FFF 61362 -FFG 63991 -FFH 65170 -FFI 63245 -FFICE 62917 -FFL 57609 -FFM 61362 -FFORT 64657 -FFP 59630 -FFR 60952 -FFS 61584 -FFT 56021 -FFVII 60762 -FFX 62066 -FFXI 58417 -FFXIclopedia 59774 -FFXX 63991 -FFanatic 64657 -FG 52496 -FGA 63991 -FGENESH 65452 -FGF 59923 -FGFs 63601 -FGI 64201 -FGM 61818 -FGPG 64905 -FH 52484 -FHA 53095 -FHC 59630 -FHCs 64905 -FHF 60157 -FHLMC 65170 -FHM 56262 -FHMC 65452 -FHP 61362 -FHR 64201 -FHS 64423 -FHT 64657 -FHV 59923 -FHWA 61584 -FI 49246 -FIA 55657 -FIAMMA 62066 -FIAT 58017 -FIB 61818 -FIBA 59491 -FIBER 56935 -FIBERGLASS 64905 -FIBERS 64423 -FIBRE 60670 -FIC 56231 -FICA 65452 -FICC 63245 -FICO 58860 -FICTION 55906 -FID 61152 -FIDCO 64657 -FIDDLE 62196 -FIDELITY 62196 -FIDL 65170 -FIDUCIARY 63601 -FIE 65452 -FIELD 49262 -FIELDS 59039 -FIESTA 61818 -FIFA 48882 -FIFE 65452 -FIFO 55793 -FIFTH 56618 -FIG 58017 -FIGHT 56140 -FIGHTER 61818 -FIGHTERS 62196 -FIGHTING 59292 -FIGO 62613 -FIGS 65170 -FIGURE 49006 -FIGURES 56140 -FII 62331 -FIJI 58919 -FILE 49376 -FILED 56324 -FILES 55578 -FILEnetworks 63601 -FILExt 60078 -FILING 55963 -FILIPINO 65170 -FILL 60405 -FILLED 60856 -FILLER 63601 -FILLFACTOR 64423 -FILLING 63245 -FILM 51060 -FILMS 55631 -FILMThe 61940 -FILTER 53712 -FILTERS 58470 -FILTRATION 64905 -FIM 57970 -FIN 54992 -FINA 64905 -FINAL 49701 -FINALE 64657 -FINALLY 55202 -FINALS 61472 -FINANCE 49124 -FINANCES 63991 -FINANCIAL 48440 -FINANCIALS 63991 -FINANCING 57084 -FIND 44163 -FINDER 58365 -FINDING 59292 -FINDINGS 57084 -FINDLAW 59702 -FINDLAY 64905 -FINDS 60321 -FINE 53316 -FINES 63601 -FINEST 63245 -FINGER 60405 -FINGERS 65452 -FINISH 57358 -FINISHED 61152 -FINISHES 63601 -FINISHING 64423 -FINLAND 56452 -FINN 65452 -FINNISH 64905 -FINRA 57278 -FINTRAC 61940 -FIONA 63792 -FIOS 59848 -FIP 63792 -FIPS 58065 -FIR 55373 -FIRE 50053 -FIREARM 64201 -FIREARMS 62066 -FIRED 64201 -FIREPLACE 63991 -FIRES 63419 -FIREWIRE 64423 -FIREWORKS 65170 -FIRM 56231 -FIRMS 62917 -FIRMWARE 64657 -FIRST 45744 -FIRTH 63792 -FIS 59848 -FISA 60321 -FISCAL 52118 -FISCHER 65452 -FISH 53182 -FISHER 56687 -FISHERIES 57009 -FISHING 55323 -FIST 64657 -FIT 52609 -FITC 59491 -FITCH 65170 -FITNESS 52085 -FITS 58113 -FITTED 60762 -FITTING 59039 -FITTINGS 59292 -FITZGERALD 63077 -FIVB 59630 -FIVE 53729 -FIX 56140 -FIXE 58523 -FIXED 56518 -FIXES 64657 -FIXING 64657 -FIXTURE 62469 -FIXTURES 60405 -FIZZ 63792 -FJ 50607 -FJD 61699 -FK 55398 -FL 38319 -FLA 57238 -FLAC 55037 -FLAG 54643 -FLAGS 58262 -FLAGSTAFF 62469 -FLAIR 63991 -FLAME 60321 -FLAMES 63792 -FLANGE 63077 -FLAP 64905 -FLARE 58919 -FLASH 52996 -FLASHING 62762 -FLAT 55014 -FLATS 61472 -FLAVOR 64905 -FLC 64201 -FLCC 62613 -FLCL 61472 -FLD 60000 -FLDS 61940 -FLECTOR 64423 -FLEECE 61940 -FLEET 61362 -FLEETWOOD 61940 -FLEMING 60856 -FLETCHER 62613 -FLEX 59491 -FLEXI 65170 -FLEXIBILITY 62196 -FLEXIBLE 59630 -FLFR 64905 -FLG 65170 -FLI 63077 -FLICKR 62762 -FLICKS 61472 -FLIGHT 55631 -FLIGHTS 61818 -FLINT 64201 -FLIP 60670 -FLIR 62613 -FLIX 64905 -FLM 63077 -FLO 58632 -FLOAT 57238 -FLOATING 62917 -FLOOD 59630 -FLOOR 53226 -FLOORING 62469 -FLOORS 63245 -FLOR 65170 -FLORA 61152 -FLORAL 59630 -FLORENCE 58979 -FLORENTINE 65170 -FLORES 64201 -FLORIDA 51996 -FLORIST 62331 -FLORISTS 64657 -FLOUR 61818 -FLOW 54360 -FLOWER 58745 -FLOWERS 56324 -FLOWS 60238 -FLOYD 61472 -FLP 59039 -FLR 62613 -FLS 65452 -FLSA 60321 -FLT 59702 -FLTC 64905 -FLU 63419 -FLUFF 65170 -FLUID 57831 -FLUIDS 63601 -FLUKE 62331 -FLUORESCENT 64201 -FLUSH 61818 -FLUTE 61818 -FLUX 62613 -FLV 50192 -FLW 61584 -FLY 54643 -FLYER 63991 -FLYERS 63991 -FLYING 58365 -FLYMO 62469 -FM 44269 -FM's 63419 -FMA 58802 -FMAM 64657 -FMB 64905 -FMC 59424 -FMCG 58860 -FMD 58745 -FMDV 61699 -FMF 63077 -FMG 63601 -FMI 64905 -FMLA 60856 -FMP 62613 -FMR 61584 -FMRC 65452 -FMS 58212 -FMV 61940 -FMVSS 64657 -FMVs 63419 -FMX 61940 -FMitsubishi 63601 -FN 53679 -FNA 64423 -FNAB 64905 -FNAL 65170 -FNC 59164 -FNCU 63077 -FNGLA 65452 -FNMA 61362 -FNMTV 58313 -FNO 65452 -FNR 59774 -FNRI 63245 -FNS 63419 -FNULNU 64657 -FNX 64423 -FO 56231 -FOAF 64657 -FOAM 62613 -FOB 52221 -FOC 62469 -FOCUS 54023 -FOD 62066 -FOE 64905 -FOF 65170 -FOG 60762 -FOI 55178 -FOIA 54792 -FOIL 53361 -FOL 62066 -FOLD 62613 -FOLDED 65170 -FOLDER 63245 -FOLDERS 65170 -FOLDING 62066 -FOLEY 62196 -FOLIOfn 63792 -FOLK 59630 -FOLKLORE 65452 -FOLKS 64201 -FOLLOW 57923 -FOLLOWING 52968 -FOM 63991 -FOMC 63245 -FON 63077 -FONS 63792 -FONT 59101 -FONTENELLE 65452 -FONTS 52927 -FOO 64423 -FOOD 49777 -FOODS 56585 -FOOL 65452 -FOOT 57653 -FOOTAGE 62331 -FOOTBALL 51660 -FOOTNOTE 64905 -FOOTNOTES 60405 -FOOTWEAR 59164 -FOP 58262 -FOR 35419 -FORANE 63991 -FORBES 65170 -FORBIDDEN 65452 -FORCE 51856 -FORCED 62066 -FORCES 58802 -FORCIPOL 64423 -FORCON 65170 -FORD 51122 -FORE 61256 -FORECAST 56862 -FORECASTS 65170 -FORECLOSURE 64905 -FORECLOSURES 65452 -FOREIGN 54792 -FORENSIC 64423 -FOREST 52164 -FORESTER 63419 -FORESTRY 61256 -FOREVER 56518 -FOREWORD 61699 -FOREX 56585 -FORGE 62469 -FORGET 59357 -FORGOT 61051 -FORGOTTEN 64423 -FORK 61472 -FORKS 64201 -FORM 49394 -FORMAC 63792 -FORMAL 57741 -FORMAT 57009 -FORMATION 58745 -FORMATS 63601 -FORMATTED 64423 -FORMED 64657 -FORMER 56585 -FORMING 60952 -FORMS 54041 -FORMULA 58688 -FORMULATION 62196 -FORMULATIONS 63077 -FORNARINA 64905 -FORSYTH 63419 -FORT 52954 -FORTH 61584 -FORTRAN 61584 -FORTUNE 57358 -FORTUNER 65170 -FORUM 46651 -FORUMS 48381 -FORWARD 56827 -FOS 63991 -FOSS 61818 -FOSSIL 64905 -FOSTER 59848 -FOT 64657 -FOTM 64905 -FOTO 63601 -FOTOLOG 58577 -FOTOS 63792 -FOTW 63419 -FOUL 59424 -FOUND 53813 -FOUNDATION 51349 -FOUNDATIONS 62613 -FOUNDRY 65170 -FOUNTAIN 60580 -FOUR 51266 -FOURTH 57876 -FOURnet 64905 -FOV 59774 -FOWLER 62196 -FOX 46775 -FOXI 61940 -FOXNews 65452 -FP 51157 -FPA 59630 -FPC 60000 -FPF 64201 -FPG 63601 -FPGA 53392 -FPGAs 60238 -FPI 64657 -FPL 58979 -FPM 64423 -FPO 57923 -FPP 65170 -FPR 63601 -FPS 52435 -FPSS 55963 -FPT 60492 -FPU 64657 -FPV 60000 -FPinfomart 61940 -FQ 62066 -FQuick 64657 -FR 46426 -FRA 58262 -FRACTION 63601 -FRACTIONS 63601 -FRAGMENTATION 65452 -FRAGRANCE 61818 -FRAM 63245 -FRAME 54188 -FRAMED 59164 -FRAMES 52686 -FRAMEWORK 57358 -FRAMING 61362 -FRAMINGHAM 63792 -FRANCAIS 60952 -FRANCE 51804 -FRANCES 61472 -FRANCHISE 60952 -FRANCIS 55906 -FRANCISCO 55250 -FRANCO 63077 -FRANCOIS 63601 -FRANK 53646 -FRANKENSTEIN 63601 -FRANKFURT 64905 -FRANKIE 62469 -FRANKLIN 56200 -FRANZ 61362 -FRAO 65452 -FRAP 64905 -FRASER 61051 -FRAUD 58632 -FRB 58523 -FRC 62917 -FRCC 64905 -FRCL 64905 -FRCP 62469 -FRCS 63419 -FRE 63601 -FREAK 60157 -FREAKING 63245 -FRED 57653 -FREDA 63077 -FREDDIE 64657 -FREDERICK 58979 -FREE 36729 -FREEBIES 65452 -FREEDOM 56791 -FREEEBIES 63419 -FREEMAN 60405 -FREESTYLE 59491 -FREEWARE 65452 -FREEWAY 63419 -FREEZE 62762 -FREEZER 64905 -FREEZING 64423 -FREIGHT 59424 -FRELIMO 63792 -FREMANTLE 62196 -FREMONT 63419 -FRENCH 51670 -FREQ 63601 -FREQUENCIES 65170 -FREQUENCY 56356 -FREQUENTLY 59774 -FRESH 53970 -FRESHERS 58262 -FRESHNESS 65452 -FRESNO 63077 -FRET 63245 -FRF 62196 -FRG 63077 -FRI 56110 -FRICKINAWESOME 64905 -FRICTION 62917 -FRIDAY 50199 -FRIDAY'S 64657 -FRIDAYS 62331 -FRIDGE 60580 -FRIED 59227 -FRIEDMAN 63991 -FRIEDRICH 64657 -FRIEND 51166 -FRIENDLY 57122 -FRIENDPRINT 62066 -FRIENDS 50019 -FRIENDSHIP 61152 -FRINGE 61818 -FRITZ 65170 -FRM 63419 -FRO 65170 -FROG 61256 -FROM 41463 -FRONT 51482 -FRONTIER 62196 -FRONTLINE 58470 -FROST 61152 -FROSTBITTEN 64423 -FROSTING 63991 -FROZEN 60405 -FRP 58113 -FRPP 64905 -FRS 60000 -FRUIT 56293 -FRY 62066 -FRx 62613 -FS 49234 -FSA 52351 -FSA's 64201 -FSAI 64657 -FSB 55274 -FSBO 49972 -FSC 54041 -FSD 61256 -FSF 61362 -FSFE 61152 -FSG 61472 -FSH 56140 -FSI 58017 -FSIS 63601 -FSK 63792 -FSL 61818 -FSM 59424 -FSMD 63077 -FSN 60238 -FSO 59357 -FSP 61940 -FSR 61818 -FSS 58979 -FST 62613 -FSU 55274 -FSV 62917 -FSX 59702 -FSi 63601 -FT 49119 -FTA 52051 -FTAA 64423 -FTB 64423 -FTC 54792 -FTCA 62196 -FTD 55821 -FTE 55299 -FTE's 64423 -FTEs 64201 -FTF 62613 -FTI 63601 -FTIR 54664 -FTIndexFrequency 62613 -FTL 62331 -FTM 63991 -FTO 62917 -FTP 48491 -FTR 61472 -FTS 59101 -FTSE 54419 -FTSearch 57741 -FTSearchRange 63991 -FTSearchScore 62196 -FTTH 62762 -FTV 55274 -FTW 57566 -FTX 64657 -FU 58313 -FUBAR 62066 -FUCHS 64657 -FUCK 53109 -FUCKED 61051 -FUCKIN 61362 -FUCKING 57084 -FUD 63792 -FUDGE 64423 -FUDforum 64423 -FUE 65170 -FUEL 53746 -FUELING 61152 -FUELS 65170 -FUENTES 64905 -FUGITIVE 63792 -FUJI 60856 -FUJIFILM 62917 -FUJITSU 53597 -FULL 45578 -FULLER 62762 -FULLERTON 63077 -FULLTEXT 57566 -FULLY 57482 -FULT 64201 -FULTON 61818 -FUN 50234 -FUNCTION 54096 -FUNCTIONAL 59164 -FUNCTIONALITY 62613 -FUNCTIONS 57876 -FUND 50499 -FUNDAMENTAL 62066 -FUNDAMENTALS 62469 -FUNDED 62762 -FUNDING 55226 -FUNDRAISING 63792 -FUNDS 54749 -FUNERAL 60856 -FUNHOUSE 65170 -FUNK 59292 -FUNKY 63991 -FUNNEL 63419 -FUNNY 54622 -FUNimation 61051 -FUQUA 65170 -FUR 60580 -FURL 57923 -FURNACE 64905 -FURNISHED 63245 -FURNISHINGS 65170 -FURNITURE 54302 -FURTHER 52375 -FURUKAWA 65170 -FURY 62762 -FUSE 61818 -FUSES 65452 -FUSION 58577 -FUTUNA 62917 -FUTURE 51521 -FUTURES 62469 -FUZZY 64423 -FV 58065 -FVC 64905 -FVD 65170 -FVIII 63077 -FW 47787 -FWA 64423 -FWB 63991 -FWD 56551 -FWDCAL 64657 -FWHM 58313 -FWIW 63601 -FWM 64657 -FWP 62613 -FWS 61940 -FWSM 63991 -FWT 63991 -FX 48662 -FXO 64201 -FXS 64201 -FXText 64657 -FY 47120 -FYE 63419 -FYI 54302 -FYR 58979 -FYRO 61256 -FYROM 62762 -FZ 56791 -Fa 56170 -FaHCSIA 62196 -Fab 49783 -FabSugar 60238 -Fabbri 64657 -Fabby 64423 -Faber 54857 -Faberge 62917 -Fabia 60670 -Fabian 56110 -Fabiana 62196 -Fabiano 59923 -Fabien 58577 -Fabienne 64905 -Fabio 52584 -Fabiola 64905 -Fable 47559 -Fables 58860 -Fabolous 58919 -Fabra 65452 -Fabre 63601 -Fabregas 62469 -Fabric 46989 -Fabricant 62613 -Fabricated 58632 -Fabricating 61940 -Fabrication 51580 -Fabrications 63245 -Fabricators 59039 -Fabrice 58523 -Fabricius 65452 -Fabriclive 65452 -Fabrics 52818 -Fabrik 62331 -Fabris 64201 -Fabrizio 55711 -Fabry 61256 -Fabtech 64905 -Fabulous 50476 -Fabulously 63991 -Fac 60580 -Facade 61256 -Face 40129 -FaceBook 57122 -FaceSync 64657 -Facebok 63419 -Facebook 36654 -Facebook's 61818 -Facebreaker 63792 -Faced 55711 -Faceless 64657 -Facelift 60078 -Faceoff 57785 -Faceplate 63077 -Facepunch 65452 -Faces 48781 -Facet 62066 -Faceted 58365 -Facets 62613 -Fachbereich 64423 -Facial 48687 -Facials 56721 -Facile 65452 -Facilitate 58313 -Facilitated 60405 -Facilitates 61472 -Facilitating 59702 -Facilitation 57278 -Facilitator 57524 -Facilitators 62066 -Facilites 65452 -Facilities 42185 -Facility 45352 -Facing 51492 -Facsimile 57160 -Fact 47167 -FactBites 58979 -FactSet 63792 -Factbook 58162 -Facteur 58688 -Factfile 65170 -Faction 58113 -Factions 56485 -Factiva 61818 -Facto 65170 -Factor 44655 -Factorial 64905 -Factories 57009 -Factoring 58919 -Factors 46197 -Factory 44197 -Factory's 64657 -Facts 43490 -Factsheet 57524 -Factsheets 58162 -Factual 57876 -Factz 64423 -Faculdade 60856 -Facultad 56791 -Faculte 64657 -Faculties 56827 -Faculty 41559 -FacultyOfScience 63419 -FacultyOfTechnology 63792 -Faculté 59491 -Fad 62066 -Fada 64905 -Fade 54499 -Faded 57831 -Fader 61152 -Fades 61818 -Fadi 65452 -Fadia 60952 -Fadil 65452 -Fading 57238 -Fadler 65452 -Fado 63991 -Fads 64905 -Fae 62613 -Faecal 61584 -Faerie 57084 -Faeries 64201 -Faeroe 58417 -Faery 65170 -Fafa 59357 -Fafarazzi 63419 -Fag 62917 -Fagan 58745 -Faggot 64905 -Fagonia 65170 -Fagor 62613 -Fah 63991 -Fahad 65452 -Fahd 62917 -Fahey 59292 -Fahim 64201 -Fahmy 65170 -Fahrenheit 54380 -Fahy 63419 -Fai 62469 -Faia 65170 -Fail 51867 -Failed 50638 -Failing 54706 -Failover 57653 -Fails 56972 -Failsafe 65170 -Failure 46506 -Failures 56420 -Fain 63419 -Faint 60000 -Fainting 62066 -Fair 41211 -Fair's 62066 -FairTax 64657 -Fairbank 63601 -Fairbanks 53729 -Fairbourne 63077 -Fairburn 62331 -Fairchild 54133 -Faire 54479 -Fairey 61051 -Fairfax 49240 -Fairfield 49038 -Fairford 65170 -Fairground 63077 -Fairgrounds 54360 -Fairhaven 60000 -Fairies 57084 -Fairing 65452 -Fairlane 64905 -Fairlawn 61699 -Fairleigh 60580 -Fairless 65170 -Fairlie 64905 -Fairly 55578 -Fairmont 53331 -Fairmount 59560 -Fairness 56388 -Fairplay 63077 -Fairport 60856 -Fairs 49713 -Fairtrade 59560 -Fairview 52351 -Fairway 54664 -Fairways 52940 -Fairweather 65170 -Fairy 48459 -Fairyland 63792 -Fairytale 56021 -Fairytales 63991 -Faisal 61584 -Faison 65452 -Faith 43428 -Faith's 64905 -Faithbase 57831 -Faithful 55084 -Faithfull 59357 -Faithless 61584 -Faiths 60856 -Faiz 61699 -Fajardo 63991 -Fajen 65170 -Fajitas 64905 -Fake 46915 -Fakenham 63991 -Fakes 61940 -Faking 63601 -Fakultät 64905 -Fal 65170 -Falafel 61699 -Falah 64657 -Falco 56972 -Falcon 50213 -FalconStor 62196 -Falcone 61472 -Falconer 58017 -Falcons 51463 -Faldo 63077 -Fale 63991 -Falk 56791 -Falke 64905 -Falken 62613 -Falkirk 55711 -Falkland 47737 -Falklands 61472 -Fall 38892 -Fall's 62762 -Falla 63991 -Fallacy 61584 -Fallback 64657 -Fallbrook 60238 -Fallen 50576 -Fallicambarus 65170 -Fallin 64905 -Falling 49841 -Fallon 55738 -Fallopian 64201 -Fallot 62613 -Fallout 48269 -Fallow 64657 -Falls 43526 -Fallston 63245 -Fallsview 62917 -Fallujah 63419 -Falmer 65452 -Falmouth 56420 -False 48533 -Falsehood 65452 -Falsify 63601 -Falstaff 63792 -Falter 61584 -Faltoyano 65452 -Falun 58919 -Falwell 61940 -Fam 53316 -Fama 59357 -Famagusta 62762 -Fame 46669 -Famed 61256 -Famer 59630 -Famers 63991 -Famicom 56452 -Familia 57318 -Familial 57122 -Familiar 54969 -Familiarity 59702 -Familiarize 65170 -Familie 62469 -Families 43944 -Familitchi 64905 -Familiy 65452 -Famille 64657 -Family 34414 -Family's 57696 -FamilyHart 58017 -FamilySearchWiki 63077 -Famine 59227 -Famke 64657 -Famoksaiyan 64657 -Famous 45763 -Famvir 63077 -Fan 40366 -Fan's 57970 -FanArt 64201 -FanCraftic 65452 -FanForce 64423 -FanHouse 52130 -FanIQ 60670 -FanNation 62196 -FanPost 64201 -FanPosts 58979 -FanShots 61472 -Fanart 60762 -Fanatic 54770 -Fanatical 64657 -Fanatics 57358 -Fanboy 49789 -Fanboys 64905 -Fancast 57440 -Fanciful 65452 -Fanclub 58577 -Fanclubs 61051 -Fanconi 64201 -Fancy 49113 -Fandango 54226 -Fandom 60078 -Fane 64201 -Faneuil 62613 -Fanfare 62066 -Fanfic 65452 -Fanfiction 60321 -Fang 55202 -Fangs 63991 -Fanhouse 57785 -Fania 62066 -Fanlisting 65452 -Fanmail 64657 -Fann 64905 -Fanner 63245 -Fannie 50823 -Fannin 60321 -Fanning 56721 -Fanny 54360 -Fanon 63419 -Fanpages 63077 -Fanpop 63601 -Fans 43197 -FansBrowse 64657 -FansDuplicates 64905 -FansEdge 63991 -Fanshawe 64423 -Fansite 58017 -Fansites 59101 -Fansub 61940 -Fansubs 64201 -Fanta 62331 -Fantadream 65452 -Fantagraphics 64905 -Fantasia 56262 -Fantasie 61699 -Fantasies 56420 -Fantasma 63077 -Fantastic 47381 -FantasticFiction 62917 -Fantastically 62469 -Fantastico 63077 -Fantastischen 61256 -Fantasy 38965 -Fanti 64905 -Fantini 63991 -Fantom 62066 -Fantomas 65170 -Fanuc 62331 -Fanzone 63419 -Faq 53646 -Faq's 62066 -Faqs 57440 -Far 44086 -FarCry 62613 -Fara 62331 -Faraday 57238 -Faradoc 63419 -Farah 57482 -Faraway 63245 -Farber 58802 -Farberware 63077 -Farce 63245 -Fare 50492 -Fareed 62762 -Fareham 57199 -Farenheit 64657 -Fares 50402 -Farewell 52423 -Fargo 51275 -Farhad 61472 -Farhan 63792 -Farhi 65170 -Faria 62613 -Farias 65452 -Faribault 62066 -Farid 61362 -Farida 65170 -Faridabad 60580 -Farina 60952 -Farinas 63601 -Faring 65452 -Faringdon 65452 -Faris 58262 -Fark 48327 -Farka 65170 -Farkas 60762 -Farleigh 61940 -Farley 57122 -Farm 42044 -Farmall 62762 -Farman 64657 -Farmar 65170 -Farmed 65170 -Farmer 48944 -Farmer's 54792 -Farmers 47737 -Farmersville 63419 -Farmhouse 58017 -Farmhouses 65452 -Farming 50372 -Farmingdale 61051 -Farmington 51963 -Farmland 58212 -Farms 48524 -Farmstay 61818 -Farmstead 63991 -Farmyard 63991 -Farmzone 61818 -Farnam 64657 -Farnborough 56585 -Farndon 63991 -Farnell 61362 -Farnham 55250 -Farnsworth 60492 -Faro 55877 -Faroe 48959 -Faroese 61699 -Faron 64423 -Farooq 62331 -Farouk 60492 -Farquhar 64423 -Farr 57199 -Farrage 65452 -Farragher 60762 -Farragut 62469 -Farrah 60000 -Farrakhan 60405 -Farrar 59774 -Farrell 52175 -Farrell's 63419 -Farrelly 62917 -Farrer 63245 -Farrier 63245 -Farringdon 61584 -Farrington 62613 -Farris 61256 -Farrow 58365 -Farrukh 65170 -Farry 64657 -Farscape 62917 -Farsi 56324 -Farsound 64657 -Farstriders 61051 -Fart 58745 -Farther 61699 -Farthing 63419 -Farting 61940 -Farts 62917 -Farwell 63419 -Farzal 64657 -Fas 55906 -FasL 59424 -FasTrak 64201 -Fasano 64657 -Faschingsrat 65452 -Fascia 60952 -Fascias 65170 -Fasciitis 60856 -Fascinating 57046 -Fascination 60670 -Fasciola 65452 -Fascism 60670 -Fascist 60157 -Fashion 38247 -Fashionable 57318 -Fashioned 57199 -Fashionista 56551 -Fashionistas 58979 -Fashions 54560 -Faso 46937 -Fass 64657 -Fassbinder 63419 -Fassel 65452 -Fast 40608 -FastCGI 63991 -FastDigest 62917 -FastTrack 58523 -Fastback 60405 -Fastball 64905 -Fasten 64905 -Fastenal 60321 -Fastener 59039 -Fasteners 53988 -Fastening 58745 -Faster 50402 -Fastest 52040 -Fastin 59357 -Fasting 57970 -Fastmail 63991 -Fastpitch 60492 -Fastream 62613 -Fastserve 64657 -Fat 43948 -FatWallet 61152 -Fata 65452 -Fatah 60000 -Fatal 50670 -Fatale 62331 -Fatalities 60492 -Fatality 58919 -Fatally 61699 -Fatback 64657 -Fatboy 56293 -Fate 51266 -Fate's 65170 -Fateh 61472 -Fatehpur 64905 -Fates 63077 -Fath 63991 -Father 45441 -Father's 47672 -Fatherhood 59101 -Fathering 53565 -Fathers 51640 -Fathom 60000 -Fatigue 51521 -Fatigues 64201 -Fatih 60762 -Fatima 56518 -Fatman 64423 -Fats 54969 -Fatt 60492 -Fatty 51888 -Fatwa 62613 -Faucet 55202 -Faucets 54041 -Faucherea 63601 -Faulk 61152 -Faulkner 54706 -Faulkner's 63601 -Faulks 62917 -Faull 65170 -Fault 50949 -Faults 58860 -Faulty 59923 -Faun 65170 -Fauna 55398 -Fauquier 61256 -Faure 61818 -Faust 53549 -Faustino 65452 -Fausto 62331 -Faustão 63991 -Faux 51570 -Fav 55348 -Fava 65170 -Fave 51752 -Faved 63991 -Favela 64201 -Faversham 61699 -Faves 53361 -Favicon 58365 -Favor 53597 -Favorable 60321 -Favored 61699 -Favorite 37889 -Favorited 53762 -Favoriten 63792 -Favorites 35969 -Favoritism 65170 -Favoritos 62613 -Favors 49828 -Favour 62762 -Favoured 63077 -Favourite 46345 -Favourites 48088 -Favours 62469 -Favre 50277 -Favre's 62762 -Favreau 63419 -Favs 60321 -Fawcett 58017 -Fawcitt 62196 -Fawkes 60238 -Fawlty 62331 -Fawn 58313 -Fax 40257 -Faxed 65452 -Faxes 57122 -Faxing 61818 -Faxless 63245 -Fay 54133 -Faye 54685 -Fayed 63419 -Fayette 53517 -Fayetteville 53646 -Fayre 62613 -Faz 64657 -Fazer 64201 -Fazio 61818 -Fb 64201 -Fc 54727 -FcR 65452 -FcRIII 64423 -Fd 63601 -Fda 63792 -Fe 45578 -FeAl 60670 -FeCl 58065 -FeO 63419 -FeTTo 64423 -FeTiP 61940 -FeV 63991 -Fea 62066 -Fear 47194 -Feared 63419 -Fearful 63419 -Fearing 61699 -Fearless 55323 -Fearne 64657 -Fears 52268 -Feasibility 54321 -Feasible 65170 -Feast 52187 -Feasterville 64423 -Feasting 60952 -Feasts 60762 -Feat 52210 -Feather 52303 -Feathered 62066 -Feathermoon 59630 -Featherpost 62917 -Feathers 56791 -Featherstone 60580 -Featherweight 63077 -Feats 58802 -Feature 42689 -Featured 34857 -Features 37338 -FeaturesApproved 65452 -Featurette 60492 -Featuring 47660 -Feb 36290 -Febery 64657 -Febrero 64423 -Febrile 63601 -Februar 60000 -Februari 63601 -February 34087 -February's 63792 -Febuary 63792 -Feburary 54399 -Fecal 58365 -Feces 62469 -Fecha 62469 -Fed 48071 -Fed's 58577 -FedEx 51953 -Fedde 60000 -Fede 64657 -Feder 61818 -Federal 38140 -Federalism 60157 -Federalist 59774 -Federally 61699 -Federals 65452 -Federated 51387 -Federation 44274 -Federation's 61362 -Federations 60000 -Federer 55178 -Federer's 64657 -Federica 61584 -Federico 55552 -Federline 58802 -Fedex 55934 -Fedor 59774 -Fedora 49411 -FedoraProject 65170 -Fedorov 63991 -Fedquip 64423 -Feds 53970 -Fee 45662 -Fee's 63601 -Feed 36549 -FeedBack 60762 -FeedBlitz 55448 -FeedBurner 49103 -FeedCentral 60952 -FeedLounge 60078 -FeedMeLinks 65452 -FeedSnag 53301 -Feedba 64423 -Feedback 34764 -Feedbacks 61940 -Feedburner 57238 -Feeder 52521 -Feeders 53988 -Feeding 49229 -Feedjit 52845 -Feeds 39073 -Feedster 56652 -Feedstock 63991 -Feedthrough 63991 -Feel 45045 -Feeley 65452 -Feelgood 62469 -Feelin 64657 -Feeling 49157 -Feelings 55877 -Feels 51974 -Feeney 58802 -Feenstra 65170 -Fees 45448 -Feet 47283 -Fehr 62331 -Fei 56110 -Feigenbaum 64657 -Feil 64657 -Feiler 63419 -Fein 58688 -Feinberg 60238 -Feingold 58688 -Feinstein 58365 -Feiss 57566 -Feist 56972 -Feistritzer 64905 -Feisty 57524 -Feit 61818 -Fekete 61940 -Fekkai 63245 -Fel 62917 -Fela 64201 -Feld 59848 -Felden 63245 -Feldenkrais 64905 -Felder 58745 -Feldman 54902 -Feldmann 62613 -Feldstein 63792 -Felice 59560 -Felicia 55178 -Feliciano 58802 -Felicidade 64423 -Felicity 57009 -Felina 57609 -Feline 55226 -Felipe 53630 -Feliratok 62762 -Feliu 64201 -Felix 50694 -Felixstowe 61699 -Feliz 57278 -Felker 64905 -Fell 54283 -Fella 58860 -Feller 64201 -Felli 65452 -Felling 64201 -Fellini 63419 -Fellini's 63991 -Fellow 49359 -Fellowes 57009 -Fellows 51650 -Fellowship 48682 -Fellowships 53613 -Fells 60856 -Felltalet 65452 -Felon 61584 -Felonies 63991 -Felonious 64423 -Felons 65452 -Felony 58162 -Felt 51396 -Felted 64905 -Feltham 60000 -Felting 63991 -Felton 57831 -Felts 65452 -Feltz 64201 -Felwood 59357 -Fem 64201 -FemDom 64657 -Femail 60670 -Female 41180 -Females 52327 -Femdom 59164 -Femelle 65170 -Femi 65170 -Femina 64201 -Feminine 56827 -Feminism 57160 -Feminist 54601 -Feministe 61818 -Feministing 60952 -Feminists 62917 -Femjoy 61472 -Femme 54813 -Femmes 61818 -Femoral 60000 -Femtocell 64905 -Femtosecond 64423 -Fen 60321 -Fence 51293 -Fenced 60952 -Fences 55821 -Fenchurch 63419 -Fencing 49952 -Fenda 60000 -Fender 49682 -Fender's 64657 -Fenders 59424 -Fendi 56420 -Fenech 64905 -Fenelon 61584 -Fenerbahce 60157 -Fenerbahçe 62917 -Feng 50350 -Fengniao 63245 -Fenian 63245 -Fenimore 63792 -Fenix 57566 -Fenland 62066 -Fenn 61584 -Fennec 63792 -Fennel 59702 -Fennell 61152 -Fenner 61051 -Fennimore 64657 -Fenopy 54770 -Fenris 60856 -Fens 64657 -Fenske 64657 -Fenster 63792 -Fentanyl 61818 -Fenton 53109 -Fenty 61051 -Fenway 55552 -Fenwick 58470 -Fenzl 63991 -Fer 61256 -FerAl 65170 -Feral 57084 -Feralas 60580 -Ferd 64657 -Ferdi 64905 -Ferdinand 52982 -Ferdinando 64201 -Ferenc 62331 -Fergal 64201 -Fergie 52584 -Fergie's 64423 -Fergus 56485 -Ferguson 49348 -Ferguson's 62196 -Fergusson 63245 -Feri 64201 -Feria 59923 -Ferihegy 65452 -Ferma 65452 -Fermacell 64657 -Ferman 65452 -Fermanagh 56585 -Fermat's 64423 -Ferment 65170 -Fermentation 59101 -Fermented 62762 -Fermentors 61584 -Fermi 52968 -Fermilab 60492 -Fermoy 64905 -Fern 54459 -Fernald 61152 -Fernand 64423 -Fernanda 60321 -Fernandes 55500 -Fernandez 52546 -Fernandina 62196 -Fernando 48806 -FernandoIchicabeza 64905 -Ferndale 57358 -Ferndown 65452 -Fernie 61940 -Ferns 61256 -Ferntree 61584 -Fernwood 63792 -Ferny 63792 -Fernández 57785 -Feros 64423 -Ferragamo 60856 -Ferran 62917 -Ferrara 58065 -Ferrari 47044 -Ferrari's 63601 -Ferraris 62196 -Ferraristyle 65170 -Ferraro 62613 -Ferre 61256 -Ferreira 56293 -Ferreiro 65170 -Ferrel 64657 -Ferrell 53796 -Ferrell's 61818 -Ferrellgas 64423 -Ferrer 56324 -Ferrera 60405 -Ferrero 59848 -Ferrers 64905 -Ferret 54727 -Ferret's 63991 -Ferretmore 65452 -Ferrets 60157 -Ferretti 60670 -Ferri 64201 -Ferric 61584 -Ferrick 62066 -Ferrier 62066 -Ferries 55423 -Ferris 54059 -Ferrite 62469 -Ferritin 65170 -Ferro 57653 -Ferroelectric 62469 -Ferroelectrics 61256 -Ferromagnetic 65452 -Ferrous 60670 -Ferry 49764 -Fertil 57696 -Fertile 61051 -Fertilisation 65452 -Fertiliser 64201 -Fertilisers 62469 -Fertility 51229 -Fertilization 60321 -Fertilizer 56420 -Fertilizers 60157 -Fertitta 65170 -Ferumoxytol 64201 -Fervent 61940 -Fes 59923 -Fest 49867 -Festa 58113 -Festina 64201 -Festival 40730 -Festival's 62613 -Festivals 46806 -Festive 56618 -Festivities 61584 -Festool 64657 -Fests 63419 -Festuca 63991 -Festung 64905 -Festus 62196 -Feta 60952 -Fetal 52007 -Fetch 58632 -FetchBatchSize 62196 -Fetched 59630 -Fetches 57318 -Fetching 59227 -Fete 61818 -Fethard 64201 -Fethiye 64657 -Fetish 50026 -Fetishes 63792 -Fett 61699 -Fetter 62917 -Fettuccine 63792 -Fetus 62331 -Fetzer 62469 -Feud 58632 -Feudal 61584 -Feuer 60580 -Feuille 63601 -Fev 65452 -Fever 49663 -Feversham 64657 -Few 47939 -Fewer 48697 -Fewest 65170 -Fey 51492 -Fey's 58919 -Feyenoord 61584 -Feyerabend 63792 -Feynman 57440 -Fez 59630 -Ff 65452 -Ffordd 64423 -Fg 61940 -Fi 50530 -FiBL 63601 -FiO 61472 -FiOS 57609 -Fiabe 64423 -Fiamma 60952 -Fiance 63419 -Fiancee 64905 -Fiasco 56080 -Fiat 50591 -Fibber 65452 -Fiber 46852 -Fiberglass 52791 -Fibers 55107 -Fibonacci 57876 -Fibra 64657 -Fibre 51266 -Fibreglass 61584 -Fibres 59630 -Fibrillation 60952 -Fibrin 63245 -Fibrinogen 61256 -Fibroblast 59560 -Fibroblasts 61818 -Fibroid 61362 -Fibromyalgia 54499 -Fibronectin 62469 -Fibrosis 55526 -Fibrous 61699 -Fibs 65452 -Fibula 63245 -Fic 61818 -Fiche 60238 -Fichiers 61818 -Fichter 65170 -Fick 63991 -Fick's 65170 -Ficlets 65170 -Ficoll 63245 -Fics 62613 -Fiction 42254 -FictionAlley 65170 -Fictional 59101 -Fictionist 63245 -Fictions 61472 -Fictionwise 65170 -Fictitious 59848 -Ficus 65170 -Fiddle 55423 -Fiddler 57876 -Fiddler's 64423 -Fiddlers 64423 -Fiddles 65170 -Fide 65452 -Fidel 57009 -Fidelis 62917 -Fidelity 52423 -Fides 63419 -Fidget 62613 -Fidler 64905 -Fido 59164 -Fidos 64657 -Fiduciary 58860 -Fieberbrunn 63991 -Fiebre 64657 -Fiedler 61051 -Field 39867 -Field's 62066 -FieldAppendText 62469 -FieldClear 62613 -FieldContains 62613 -FieldExpectedDataType 62469 -FieldGetText 62613 -FieldHelp 63601 -FieldID 62613 -FieldInfo 62613 -FieldName 62613 -FieldNativeDataType 62613 -FieldSetText 62331 -FieldSize 62613 -Fieldbus 64423 -Fieldcrest 65452 -Fielder 60762 -Fieldhouse 63991 -Fielding 55906 -Fields 45638 -Fieldstone 64905 -Fieldtrips 65452 -Fieldwork 60762 -Fiend 61362 -Fiennes 61584 -Fiera 64201 -Fierce 57318 -FierceBiotech 65452 -Fieri 63077 -Fiero 56687 -Fierro 64201 -Fiery 57318 -Fiesta 49828 -Fiestas 63991 -Fifa 54059 -Fife 52571 -Fifi 59424 -Fifteen 52635 -Fifteenth 60856 -Fifth 46435 -Fifties 61940 -Fifty 52233 -Fig 49986 -FigSearch 64201 -Figaro 58417 -Figen 64201 -Figgas 63991 -Fight 45012 -Fighter 47903 -Fighters 50439 -Fighting 46607 -Fights 51266 -Fightstar 64905 -Figo 65452 -Figs 56862 -Figueroa 58017 -Figural 63792 -Figurative 57440 -Figure 37041 -Figured 61256 -Figures 44853 -Figurine 56862 -Figurines 55299 -Figuring 62331 -Fiji 45417 -Fiji's 63792 -Fijian 59560 -Fike 64905 -Fil 62613 -Fila 57278 -Filament 62196 -Filaments 62762 -File 35354 -FileAttachment 64905 -FileBuzz 63077 -FileFormat 62613 -FileFortune 61818 -FileFront 55202 -FileMaker 54727 -FileName 60856 -FilePath 61362 -FilePlanet 55578 -FilePreserver 61818 -FileShack 60856 -FileType 63419 -FileUp 62762 -FileZilla 63077 -Filecloud 58313 -Filed 42201 -Filefront 62066 -Filemaker 56791 -Filename 54151 -Filer 56618 -Files 41570 -FilesTube 62613 -Filesharing 64201 -Filesize 58523 -Filesystem 61940 -Filet 60856 -Filetype 63792 -Filho 64423 -Filiatrault 64201 -Filigree 62917 -Filing 45833 -Filings 50101 -Filip 58470 -Filipacchi 61818 -Filipe 63601 -Filipina 56652 -Filipinas 61940 -Filipino 49584 -Filipinos 57318 -Filippa 62469 -Filippo 59357 -Fill 47266 -Fille 63419 -Filled 51985 -Filler 54992 -Fillers 55474 -Fillet 60157 -Fillets 64905 -Fillies 63991 -Filling 52303 -Fillings 59774 -Fillion 62196 -Fillmore 52221 -Fillo 65170 -Fills 59101 -Filly 60856 -Film 37755 -FilmBaby 62469 -FilmDisc 62196 -Filmco 60670 -Filme 57831 -Filmed 55423 -Filmer 64423 -Filmes 65170 -Filmfare 60952 -Filmi 63245 -Filming 55963 -Filmmaker 58065 -Filmmakers 56452 -Filmmaking 58802 -Filmographies 55348 -Filmography 49789 -Filmore 62762 -Films 42680 -Filmstrip 58860 -Filmy 64423 -Filo 62917 -Filomena 63245 -Fils 63077 -Filson 59101 -Filter 42546 -Filtered 56935 -Filtering 52805 -Filters 45835 -Filth 54813 -Filthy 57046 -Filtration 53301 -Filtrete 65452 -Fimo 63419 -Fin 54041 -Fina 64657 -Final 40034 -Finale 52954 -Finalist 55877 -Finalists 56200 -Finalize 59164 -Finalizing 65170 -Finally 47607 -Finallybuyingaboat 64905 -Finals 50949 -Financ 63991 -Finance 37099 -Finance's 64905 -Financed 60952 -Finances 49758 -Financia 64201 -Financial 36427 -FinancialContent 65170 -FinancialExpress 63245 -Financially 62066 -Financials 50638 -Financier 62917 -Financing 45515 -Finanzas 64423 -Finasteride 64201 -Finbar 65170 -Finca 63419 -Finch 53746 -Fincher 63419 -Finches 60405 -Finchley 59292 -Find 29914 -FindArticles 52085 -FindFreeTimeDialog 62331 -FindFreeTimeDialogEx 62331 -FindLaw 42187 -FindLaw's 55766 -FindPage 61584 -FindPublishCommunityJoin 59227 -FindString 62331 -FindStuff's 64423 -Finda 65170 -Finder 41880 -Finders 55500 -Finding 43803 -FindingKing 62331 -Findings 50227 -Findlaw 59491 -Findlaw's 57785 -Findlay 57440 -Findley 62469 -Finds 48234 -Fine 41945 -FineDrive 65170 -FinePix 57046 -FinePrint 64657 -FineReader 61256 -Finegan 64657 -Finely 59227 -Fineness 65452 -Finepix 62613 -Finer 61472 -Finerider 64905 -Fines 55154 -Finesse 57318 -Finest 53010 -Fingal 58802 -Finger 49505 -Fingerboard 65170 -Fingerhut 63792 -Fingering 60157 -Fingerless 65170 -Fingerpicking 65452 -Fingerprint 54664 -Fingerprinting 60580 -Fingerprints 61940 -Fingers 52484 -Fingerstyle 60952 -Fingertip 65170 -Fingertips 55398 -Finglas 65170 -Fingringhoe 65170 -Finis 63601 -Finisar 63991 -Finish 46903 -Finished 50033 -Finisher 62196 -Finishers 60580 -Finishes 54207 -Finishing 50416 -Finite 52635 -Fink 56388 -Finke 63792 -Finkelstein 60238 -Finland 42750 -Finland's 62469 -Finlandia 64905 -Finlay 59292 -Finley 55202 -Finn 50242 -Finnair 63077 -Finnegan 58802 -Finnerty 65170 -Finney 60321 -Finnie 63245 -Finnigan 61051 -Finnish 47140 -Finns 63077 -Finntroll 61472 -Fino 62469 -Fins 57046 -Finsbury 59630 -Fiona 49886 -Fionn 64201 -Fiorano 64657 -Fiordland 63419 -Fiore 59292 -Fiorelli 63792 -Fiorentina 58523 -Fiorentino 61818 -Fiori 63792 -Fioricet 57524 -Fiorina 64657 -Fir 57238 -Fire 38516 -FireBoard 58632 -FireFox 53762 -FireOne 63991 -FireRed 59923 -FireStore 63792 -FireStorm 64423 -FireWire 51541 -Firearm 57160 -Firearms 51963 -Fireball 58470 -Fireballs 65170 -Firebird 53377 -Fireblade 64423 -Firebox 60952 -Firebug 64201 -Firecracker 64201 -Firecrackers 65452 -Firecrotch 60762 -Fired 53646 -Firedoglake 61051 -Firefighter 54581 -Firefighters 54360 -Firefighting 59560 -Fireflies 62066 -Firefly 55084 -Firefox 42621 -Firefox's 63419 -Firegirl 64423 -Firehawk 52832 -Firehouse 57278 -Fireman 53346 -Fireman's 63419 -Firemen 63077 -Firenze 59227 -Fireplace 49423 -Fireplaces 51321 -Firepower 63419 -Fireproof 55398 -Fireproofing 62917 -Fires 52940 -Fireside 60157 -Firestarter 62066 -Firestation 64423 -Firestone 54439 -Firestorm 58632 -Fireteam 58017 -Firetrap 63991 -Firetree 60238 -Firewall 50046 -Firewalls 50087 -Firewater 65170 -Firewire 53581 -Firewood 60670 -Firework 61940 -Fireworks 50357 -Firing 53533 -Firion 65452 -Firm 43297 -Firm's 59164 -FirmSite 64657 -FirmSites 64423 -Firma 60405 -Firming 63792 -Firmly 65452 -Firms 48980 -Firmware 50192 -Firmwares 60580 -Firs 62613 -First 32503 -First's 65452 -FirstClass 62469 -FirstEnergy 62469 -FirstGov 62917 -FirstPrevNext 65452 -FirstRow 62613 -Firstfleet 65170 -Firstly 58113 -Firstname 63991 -Firsts 61584 -Firth 57009 -Fiscal 45882 -Fischer 50678 -Fischer's 64905 -Fischers 62469 -Fischerspooner 61256 -Fiserv 59702 -Fish 41617 -FishBase 60952 -FishEye 58745 -FishGeeks 64905 -Fishbone 62066 -Fishbowl 62469 -Fishburn 65170 -Fishburne 62469 -Fished 59357 -Fishel 63245 -Fisher 46280 -Fisher's 56420 -Fisheries 48590 -Fisherman 56899 -Fisherman's 57923 -Fishermans 63245 -Fishermen 59101 -Fishermen's 63077 -Fishers 57009 -Fishery 54924 -Fishes 57785 -Fisheye 62917 -Fishfinders 62917 -Fishguard 62613 -Fishing 41608 -Fishkill 63792 -Fishkin 64905 -Fishman 57482 -Fishnet 58802 -Fishnets 64905 -Fishtail 62917 -Fishy 60580 -Fisica 58919 -Fisichella 64657 -Fisk 57831 -Fisk's 65452 -Fiskars 63419 -Fiske 63245 -Fisker 64657 -Fission 61152 -Fissipedia 63245 -Fist 53256 -Fistful 61472 -Fisting 57741 -Fists 61362 -Fistula 63419 -Fit 44338 -FitTV 62066 -Fitch 49770 -Fitch's 62917 -Fitchburg 60952 -Fitchette 63991 -Fite 62917 -Fitment 60952 -Fitna 65170 -Fitness 38491 -Fitouts 64905 -Fits 50379 -Fitted 51303 -Fitter 60952 -Fitters 62917 -Fitting 53052 -Fittings 50815 -Fitts 61699 -Fitz 58017 -FitzGerald 61940 -Fitzgerald 51026 -Fitzgerald's 62066 -Fitzhugh 64423 -Fitzpatrick 55963 -Fitzroy 57609 -Fitzsimmons 63245 -Fitzsimons 60952 -Fitzwilliam 61152 -Fitzy 54245 -Fitzy's 58632 -Fiumicino 62917 -Five 40542 -Fives 56140 -Fix 45222 -FixCam 63245 -FixYa 50314 -Fixation 58860 -Fixed 44086 -Fixer 60580 -Fixes 54170 -Fixing 53630 -Fixings 61256 -Fixit 64423 -Fixture 54321 -Fixtures 48861 -Fixup 63991 -Fiz 65452 -Fizber 55202 -Fizik 62917 -Fiziol 62613 -Fizz 60492 -Fizzy 63245 -Fjord 61256 -Fjords 65170 -Fl 54264 -Fla 60762 -FlaBot 65452 -Flac 62331 -Flaca 64657 -Flacco 63792 -Flack 60670 -Flag 39687 -Flagellar 65170 -Flagg 63601 -Flagged 58162 -Flagging 62469 -Flagler 57199 -Flagpoles 62469 -Flags 48519 -Flagship 55766 -Flagstaff 55604 -Flagstone 62469 -Flahavan 65170 -Flaherty 57358 -Flaine 63991 -Flair 56200 -Flaite 64905 -Flak 64905 -Flake 59424 -Flaked 65452 -Flakes 60856 -Flaky 62331 -Flam 64657 -Flambeau 61256 -Flamborough 61584 -Flamboyant 61940 -Flame 50060 -Flamebait 58688 -Flameless 64905 -Flamenco 57199 -Flames 49815 -Flamethrower 63077 -Flaming 52447 -Flamingo 55657 -Flamingos 63419 -Flammability 61472 -Flammable 60000 -Flanagan 55423 -Flanagan's 65452 -Flanders 52996 -Flandres 65452 -Flange 55766 -Flanged 64423 -Flanges 62331 -Flank 61152 -Flanker 64201 -Flanking 64905 -Flannel 56356 -Flannery 59357 -Flap 52765 -Flapper 61362 -Flaps 58979 -Flare 55178 -Flared 62196 -Flares 60238 -Flash 36293 -FlashCards 61256 -FlashFlight 63601 -FlashGet 63245 -FlashPoint 64657 -Flashaholic 62469 -Flashback 56972 -Flashbacks 60952 -Flashcard 64201 -Flashcards 57160 -Flasher 56652 -Flashers 62917 -Flashes 54664 -Flashing 53407 -Flashlight 53646 -Flashlights 53346 -Flashman 64423 -Flashman's 63991 -Flashpoint 55578 -Flashy 62917 -Flask 58919 -Flasks 61472 -Flaspohler 59227 -Flat 41853 -FlatOut 63419 -FlatPack 62613 -Flatbed 57046 -Flatbush 60000 -Flathead 58113 -Flatiron 59923 -Flatline 63601 -Flatmates 59039 -Flatout 63991 -Flatow 65170 -Flats 49639 -Flatshare 57524 -Flatshares 64423 -Flatt 63792 -Flatten 62762 -Flatter 62917 -Flattering 62917 -Flattest 64657 -Flatts 56721 -Flatware 56170 -Flatwoods 65452 -Flatwork 65170 -Flaunt 63245 -Flav 62917 -Flava 60492 -Flavell 64905 -Flavia 62331 -Flavin 62196 -Flavio 59702 -Flavius 63601 -Flavonoids 64657 -Flavor 46055 -Flavored 56262 -Flavoring 64657 -Flavorpill 64201 -Flavors 46846 -Flavour 59101 -Flavoured 62196 -Flavours 58523 -Flavoursome 65170 -Flaw 59101 -Flawed 56972 -Flawless 58632 -Flaws 59848 -Flax 58313 -Flaxmere 63601 -Flaxseed 64201 -Flay 57440 -Flay's 64657 -Fld 65452 -Fle 62613 -Flea 50726 -Fleas 60952 -Fleck 59101 -Flector 60000 -Fledermaus 65452 -Fledgling 61256 -Flee 55934 -Fleece 50416 -Fleeces 63792 -Fleeing 59227 -Fleer 64905 -Flees 64201 -Fleet 47622 -Fleeting 64423 -Fleets 63245 -Fleetwood 52210 -Fleihan 64657 -Fleischer 60580 -Fleischman 62331 -Fleischmann 61362 -Fleishman 64905 -Fleming 51899 -Fleming's 64423 -Flemington 60492 -Flemish 56080 -Flemming 62469 -Flensberg 63991 -Flensburg 65452 -Flere 61584 -Flesch 57653 -Flesh 53847 -Fleshbot 65452 -FleshbotNSFW 60321 -Fleshlight 62066 -Fleshman 60580 -Fleshwarper 65452 -Fletch 63077 -Fletcher 50940 -Fletcher's 63077 -Fleur 55963 -Fleurieu 59292 -Fleurs 64657 -Fleurville 58688 -Fleury 61818 -Flew 59702 -Flex 48217 -FlexMED 62917 -Flexeril 59357 -Flexi 59923 -Flexibilities 65452 -Flexibility 53271 -Flexible 47194 -Flexicredit 65170 -Flexifoil 60762 -Flexor 63601 -Flexplan 60238 -Flext 64201 -Flextronics 60492 -Flexural 62613 -Flick 56200 -Flicker 60405 -Flickering 63792 -Flickr 41327 -FlickrBlog 51257 -Flicks 57876 -Flier 61362 -Fliers 63419 -Flies 53613 -Flight 41935 -FlightAware 62331 -FlightBook 61472 -FlightDexWhat's 52818 -FlightStats 52387 -Flightdex 52818 -Flightless 65170 -Flightplan 64201 -Flights 42319 -FlightsDestination 61152 -Fliiby 57923 -Flinders 55323 -Fling 57318 -Flinger 63991 -Flinn 63792 -Flint 51560 -Flintlock 62469 -Flintoff 63601 -Flintridge 62762 -Flintshire 59039 -Flintstone 62469 -Flintstones 55274 -Flip 48395 -FlipUp 62917 -Flipper 64201 -Flippers 63601 -Flipping 58860 -Flips 62613 -Flipside 57696 -Flirt 52118 -Flirting 59848 -Flirty 60078 -Flite 60762 -Flix 60670 -FlixFlux 60078 -Flixdisc 62196 -Flixster 56899 -Flo 51377 -Float 52927 -Floatation 63077 -Floater 62762 -Floaters 64201 -Floating 51974 -Floats 57524 -Flobots 57696 -Flock 53392 -Flockhart 62469 -Flog 58688 -Flogging 59774 -Flom 62469 -Flomax 62469 -Flood 47717 -Flooded 65452 -Flooding 55299 -Floodlight 64201 -Floodplain 58860 -Floods 55274 -Floor 42754 -Floorcare 64423 -Flooring 47238 -Floorplan 60762 -Floorplans 60856 -Floors 51220 -Floorspace 63601 -Floorstanders 64423 -Floorstanding 62331 -Flop 55992 -Flopping 64905 -Floppy 53813 -Flops 57876 -Floquil 65452 -Flor 57609 -Flora 47976 -Floral 48538 -Florals 58688 -Florence 46742 -Florencia 65170 -Florensia 63245 -Florent 59774 -Florentine 58979 -Flores 53813 -Florham 61152 -Flori 65170 -Florian 56862 -Floriculture 64905 -Florida 37065 -Florida's 51368 -Floridian 61818 -Floridians 63601 -Florin 58919 -Florio 60000 -Florissant 63601 -Florist 49376 -Floristry 63601 -Florists 47980 -Florsheim 61256 -Flory 60321 -Flos 65452 -Floss 58113 -Flossing 65452 -Flossmoor 62066 -Floste 65170 -Flot 64423 -Flotation 61152 -Floto 64905 -Flotsam 63792 -Flounder 62066 -Flour 53256 -Flourishes 63991 -Flourishing 65452 -Flow 44699 -Flowchart 62196 -Flowcrete 64423 -Flower 44365 -FlowerAdvisor 65170 -Flowering 57009 -Flowers 40145 -Flowery 62066 -Flowing 59164 -Flowmaster 60580 -Flowmeter 59227 -Flowmeters 60580 -Flows 54380 -Floyd 48381 -Floyd's 63245 -Floyds 65452 -Flr 64657 -Flt 62331 -Flu 49092 -Fluconazole 62917 -Fluctuation 62613 -Fluctuations 60952 -Flue 60856 -Fluency 61699 -Fluent 57831 -Fluff 60078 -Fluffy 57785 -Flug 64201 -Flugtag 62613 -Fluid 48933 -Fluids 54770 -Flujo 64423 -Fluka 63601 -Fluke 56080 -Flunisolide 63077 -Fluor 59227 -Fluorescein 63601 -Fluorescence 53010 -Fluorescent 52778 -Fluorescents 62469 -Fluoridation 64201 -Fluoride 54685 -Fluorinated 63991 -Fluorine 60238 -Fluoroquinolone 65170 -Fluoroscopy 62762 -Fluoxetine 61472 -Flurry 65452 -Flush 51275 -Flushed 63419 -Flushes 64905 -Flushing 54601 -Flute 52484 -Fluted 62917 -Flutes 59292 -Fluticasone 64905 -Flutter 60078 -Fluvastatin 62469 -Fluvial 64657 -Flux 51340 -Fluxblog 63991 -Flv 57318 -Fly 45116 -Fly'n 65170 -FlyFF 64905 -FlyLow 64657 -Flybe 61152 -Flyby 64423 -Flycatcher 61699 -Flycell 64201 -Flyer 50213 -FlyerTalk 60078 -Flyers 50865 -Flyff 61152 -Flyfishing 64657 -Flyin 65452 -Flying 45780 -FlyingGiants 64657 -Flyleaf 61051 -Flymo 59560 -Flynn 52739 -Flynn's 64201 -Flynt 62066 -Flyout 63601 -Flyover 64423 -Flywheel 58065 -Flywheels 64905 -Flèche 65452 -Flüela 62917 -Fm 55250 -FmHA 65452 -Fmd 64905 -Fmt 56935 -Fn 60405 -Fo 59292 -FoF 63792 -FoI 63792 -FoR 62762 -Foal 61699 -Foals 60580 -Foam 49893 -Foaming 61051 -Fob 60492 -Foc 61152 -Focal 51275 -Fock 63601 -Focus 42430 -Focused 54023 -Focuses 55849 -Focusing 54540 -Focusrite 63991 -Fodder 61584 -Fodor 61699 -Fodor's 55631 -Foe 60856 -Foerster 63991 -Foes 56485 -Foetal 64657 -Fog 52085 -Fogarty 60856 -Fogdog 65452 -Fogel 62469 -Fogerty 58523 -Fogg 60321 -Foggy 59227 -Foghat 63601 -Foghorn 62917 -Fogle 63792 -Foglia 65170 -Fogo 65452 -Foi 63991 -Foie 62331 -Foil 52339 -Foiled 63419 -Foils 60670 -Foire 64423 -Fokker 57524 -Fokus 65452 -Fol 63991 -Folate 60238 -Fold 52118 -Foldable 63245 -Foldables 62196 -Folded 58470 -Folder 47931 -FolderReferences 65452 -FolderReferencesEnabled 62613 -Folders 50136 -Folding 49103 -Folds 55849 -Folens 56899 -Foley 51166 -Foley's 63245 -Folge 60078 -Folger 58523 -Folia 59424 -Foliage 54439 -Foliar 64201 -Folic 57046 -Folie 60670 -Folio 54439 -Folios 62331 -Folk 46329 -Folkd 58577 -Folkestone 58212 -Folklife 62762 -Folklore 53361 -Folks 54727 -Folkston 63792 -Folktales 63792 -Folkways 61818 -Folletos 65452 -Follett 55963 -Follicle 63419 -Follicular 61584 -Follieri 62196 -Follies 58802 -Follistatin 65170 -Follow 43895 -Followed 53454 -Follower 58417 -Followers 51752 -Following 43281 -Follows 57238 -Followup 56827 -Followups 59491 -Folly 57122 -Folsom 55226 -Fomor 62331 -Fon 61472 -Fonality 63792 -Fonction 64423 -Fond 56293 -Fonda 56262 -Fondant 63419 -Fondation 60856 -Fondazione 60856 -Fondly 62613 -Fonds 59848 -Fondue 58365 -Fone 64423 -Fong 58919 -Fons 63245 -Fonseca 59923 -Fonsi 63419 -Font 44205 -FontColor 61362 -FontFace 61051 -FontPath 62762 -FontPointSize 61152 -FontStyle 61152 -Fontaine 57696 -Fontainebleau 63077 -Fontan 61472 -Fontana 55274 -Fontanafredda 62762 -Fontanini 63077 -Fonte 64423 -Fontenot 64657 -Fontes 63792 -Fontographer 65170 -Fonts 49081 -Fonz 61472 -Fonzworth 63991 -Foo 50840 -Foobar 65452 -Food 34414 -FoodCollection 62066 -FoodShapes 62196 -Foodborne 63419 -Foodbuzz 64423 -Foodie 56687 -Foodie's 64423 -FoodieNess 64905 -Foodies 62196 -Foods 44703 -Foodservice 54078 -Foodstuff 62917 -Foodstuffs 55963 -Fool 50087 -Fool's 57440 -Fooled 63419 -Fooling 63991 -Foolish 58017 -Foolishness 65452 -Foolproof 63792 -Fools 54560 -Fooly 63601 -Foosball 60000 -Foose 63245 -Foot 45894 -FootJoy 65452 -FootSmart 62613 -Footage 48533 -Footages 65452 -Football 36409 -Football's 63077 -FootballNation 63792 -Footballer 60492 -Footballers 64201 -Footballs 56972 -Footboards 65452 -Footbridge 61818 -Footcare 64905 -Foote 55934 -Footed 62613 -Footer 50143 -Foothill 56021 -Foothills 54560 -Footie 62613 -Footing 62917 -Footjoy 64423 -Footlocker 64905 -Footlong 62469 -Footloose 59424 -Footnote 59292 -Footnotes 55107 -Footpath 62762 -Footpaths 61940 -Footprint 55084 -Footprints 55738 -Footrest 64905 -Footrests 64657 -Footsie 63601 -Footsteps 58919 -Footwear 47363 -Footwork 63245 -Footy 54685 -For 28536 -ForFour 64905 -Fora 60856 -ForaTV 65452 -Forage 58017 -Foraging 62066 -Foraker 65170 -Foray 62331 -Forbearance 64905 -Forbes 48918 -ForbesAutos 63245 -ForbesLife 61472 -Forbid 64423 -Forbidden 50742 -Forbush 65170 -Force 39941 -Force's 59848 -ForceWare 59101 -Forced 50799 -Forceps 61256 -Forces 46076 -Forcing 60238 -Ford 40119 -Ford's 54664 -Forde 62331 -Fordham 55657 -Fordilla 63991 -Fords 58802 -Fordyce 65452 -Fore 54188 -Forearm 59774 -Forecast 42589 -ForecastForecast 65170 -Forecaster 58802 -Forecasters 63245 -Forecasting 54059 -Forecasts 50040 -Foreclosed 56756 -Foreclosure 46587 -Foreclosures 46806 -Forefoot 63419 -Forefront 53830 -Foreground 64423 -Forehand 63792 -Forehead 60856 -Foreign 41161 -Foreigner 58065 -Foreigners 57970 -Foreman 55299 -Foremost 60405 -Foren 63601 -Forename 63245 -Foreningen 62762 -Forensic 50314 -ForensicMailArchiver 65452 -Forensics 53211 -Forenza 63601 -Foreplay 61472 -Forerunner 58162 -Foreshore 60405 -Foresight 57009 -Forest 41104 -Forest's 63991 -Forested 63245 -Forester 56021 -Foresters 61472 -Forestier 63792 -Forestry 47672 -Forests 49639 -Forestville 60762 -Foret 63077 -Forever 45949 -Foreword 54835 -Forex 48283 -Forfar 63991 -Forfeit 65170 -Forfeited 61699 -Forfeiture 61256 -Forgan 63077 -Forge 50234 -Forged 55877 -Forgery 63419 -Forges 64201 -Forget 48208 -Forgetfulness 64905 -Forgets 63245 -Forgetting 56791 -Forging 58313 -Forgive 55604 -Forgiven 62613 -Forgiveness 57009 -Forgiving 63245 -Forgot 39004 -Forgotten 45572 -Forint 58017 -Fork 48477 -Forked 63077 -Forklift 55274 -Forklifts 60405 -Forklædt 64905 -Forks 52725 -Forlani 63077 -Form 39495 -FormUsers 63991 -Forma 58417 -Formac 63792 -Formal 48413 -Formaldehyde 58919 -Formally 61699 -Forman 58523 -Format 43004 -Formation 48756 -Formations 60492 -Formative 59848 -Formato 62613 -Formats 49633 -Formatted 60492 -FormattedSearch 64657 -Formatting 54133 -Formby 62066 -Forme 62331 -Formed 55684 -Formentera 63991 -Former 44982 -Formerly 54581 -Formica 63991 -Forming 55060 -Formosa 58212 -Formosan 64905 -Forms 39751 -Formula 45060 -Formulae 62613 -Formulary 59630 -Formulas 53301 -Formulate 64657 -Formulated 60157 -Formulating 63077 -Formulation 56110 -Formulations 57399 -Formulator 62066 -Formule 61362 -Fornaio 63991 -Fornarina 63419 -Forney 61256 -Foro 57741 -Foros 60580 -Forplay 64905 -Forres 61699 -Forrest 51650 -Forrestal 63245 -Forrester 54622 -Forreston 65452 -Forsaken 60762 -Forsberg 61940 -Forsch 63419 -Forschung 62331 -Forschungsgemeinschaft 63077 -Forschungszentrum 62196 -Forshee 61818 -Forside 63991 -Forster 56585 -Forstwissen 63601 -Forsyte 64423 -Forsyth 54023 -Forsythe 59848 -Fort 39621 -Fortaleza 61362 -Fortbild 63601 -Forte 54902 -Fortean 62331 -Fortec 60000 -Fortes 62196 -Forth 56110 -Forthcoming 51531 -FortiGate 63601 -FortiGuard 58113 -Fortier 65170 -Fortified 60321 -Fortin 63419 -Fortine 64905 -Fortinet 61472 -Fortis 55578 -Fortitude 60157 -Fortnightly 63792 -Fortran 54581 -Fortress 51630 -Forts 60670 -Fortschr 61256 -Fortuna 54792 -Fortunate 63245 -Fortunately 55130 -Fortunato 60078 -Fortune 47211 -Fortune's 62196 -Fortunes 61362 -Fortuny 65452 -Fortwo 64905 -Forty 53646 -Forum 31702 -Forum's 59560 -ForumShow 63601 -Forumer 59039 -Forums 32124 -Forward 42325 -Forwarded 61699 -Forwarder 61940 -Forwarders 62196 -Forwarding 53533 -Forwards 62066 -Forwood 63601 -Forza 58688 -Forzieri 61940 -Forêt 62613 -Fosamax 62066 -Fosgate 59560 -Foshan 58417 -Foss 59774 -Fosse 60952 -Fossett 63991 -Fossett's 65452 -Fossil 51521 -Fossils 53613 -Fossum 64905 -Foster 45492 -Foster's 59164 -Fostering 56687 -Fosters 62331 -Fostex 60492 -Fostoria 62196 -Fotki 64423 -Foto 51835 -FotoMix 64905 -Fotografia 62762 -Fotografía 64657 -Fotolia 56935 -Fotolog 50686 -Fotomate 60078 -Fotos 53392 -Fotosearch 56080 -Fouad 60762 -Foucault 60000 -Foucault's 61940 -Fought 60580 -Foul 56518 -Fouling 65170 -Fouls 60856 -Found 42443 -FoundLocally 65170 -Foundation 36841 -Foundation's 55014 -Foundational 64201 -Foundations 50199 -Founded 50185 -Founder 50469 -Founder's 61051 -Founders 54946 -Founding 53124 -Foundries 64423 -Foundry 52635 -Fountain 48278 -Fountainhead 64423 -Fountains 52521 -Four 40827 -FourFourTwo 65452 -Fourbody 65452 -Fourche 65452 -Fourier 50292 -Fourmost 65452 -Fournier 57084 -Fournier's 63419 -Fourplay 64201 -Fours 60670 -Foursome 63419 -Foursquare 60492 -Fourstar 62762 -Fourteen 54479 -Fourteenth 57318 -Fourth 45811 -Foust 64201 -Fowl 58065 -Fowler 53182 -Fowler's 62762 -Fox 41995 -Fox's 56110 -FoxNews 65452 -FoxPro 54360 -Foxboro 63245 -Foxborough 63792 -Foxconn 58860 -Foxcroft 60000 -Foxes 58212 -Foxglove 64905 -Foxhound 63419 -Foxit 59923 -Foxtel 64905 -Foxtons 57923 -Foxtrot 61362 -Foxwoods 64423 -Foxworthy 63991 -Foxx 55821 -Foxxx 65452 -Foxy 55154 -FoxyTunes 60580 -Foy 60078 -Foye 63245 -Foyer 58262 -Foyle 62469 -Foz 59774 -Fozzie 64657 -Fozzy 64905 -Fp 65170 -Fpl 64905 -Fr 48408 -Fra 62613 -Frac 63245 -Fractal 56687 -Fractalfungi 63991 -Fractals 61472 -Fraction 54245 -Fractional 57009 -Fractionation 60238 -Fractions 55500 -Fractious 62469 -Fracture 52141 -FractureEarth 59227 -Fractured 61256 -Fractures 57482 -Frade 64905 -Fraenkel 65452 -Frag 61472 -Fraga 64201 -Fragen 59560 -Fraggle 58688 -Fragile 56585 -Fragman 63245 -Fragment 58523 -Fragmentation 59357 -Fragmented 63792 -Fragments 55738 -Fragonard 62469 -Fragrance 48368 -Fragrances 50402 -Fragrant 61699 -Frags 58365 -Fraiche 63792 -Frail 60952 -Fraime 64423 -Frakes 58313 -Fraley 65170 -Fram 63991 -Frame 44353 -FrameMaker 60762 -Framebuffer 65452 -Framed 46494 -Frameless 63991 -Framer 65452 -Framers 62917 -Frames 46572 -Framework 42471 -Frameworks 53196 -Framing 52198 -Framingham 56388 -Framlington 64657 -Frampton 59702 -Fran 52411 -FranGzCz 64201 -FranMichaels 63792 -Franc 50256 -Franca 63077 -Francais 53316 -Francaise 60000 -France 36708 -France's 53865 -Frances 49886 -Francesc 64657 -Francesca 54419 -Franceschini 65170 -Francesco 52291 -Franchi 61818 -Franchise 46587 -Franchisee 62762 -Franchisees 63601 -Franchises 51293 -Franchising 53066 -Franchisor 65170 -Franchize 62331 -Francia 61818 -Francik 61152 -Francine 56356 -Francis 44302 -Franciscan 57696 -Franciscans 64905 -Francisco 39408 -Francisco's 56262 -Francisella 61818 -Franck 57785 -Franco 52339 -Franco's 63991 -Francois 53746 -Francoise 59357 -Francona 63419 -Franconia 64657 -Francophone 58688 -Francophonie 63077 -Francs 58212 -Franglo 63419 -Frank 40883 -Frank's 55500 -Franke 59424 -Frankel 57609 -Franken 52303 -Frankenreiter 61940 -Frankenstein 55398 -Frankenstein's 62066 -Frankford 59774 -Frankfort 57440 -Frankfurt 49713 -Frankfurter 62469 -Frankie 52597 -Frankie's 64201 -Franklin 43802 -Franklin's 58313 -Frankly 62331 -Franklyn 61699 -Franks 56862 -Frankston 59774 -Franky 62762 -Franny 64657 -Frans 58577 -Franschhoek 62613 -Fransisco 64201 -Fransmanni 64905 -Franti 64905 -Frantic 60405 -Frantisek 63601 -Frantz 63077 -Franz 51202 -Franzen 60952 -Franziska 62613 -Français 39726 -Française 59039 -François 55130 -Françoise 61362 -Fraps 60670 -Fraser 48643 -Fraser's 61940 -Fraserburgh 64423 -Frasers 62762 -Frases 62469 -Frasier 59101 -Frat 62917 -Fratelli 62469 -Fratellis 61699 -Frater 65170 -Fraternal 60078 -Fraternities 62613 -Fraternity 55552 -Fratton 65170 -Fratyr 65452 -Frau 58523 -Fraud 46702 -Frauds 60856 -Fraudulant 63991 -Fraudulent 57696 -Frauen 61699 -Fraunhofer 58632 -Frawley 64657 -Fray 53646 -Frayne 64905 -Frazer 57785 -Frazer's 63601 -Frazier 55711 -Frcs 61584 -Fre 62196 -Freak 50545 -Freaker 64905 -Freaking 64905 -Freakonomics 58365 -Freakout 65170 -Freaks 52435 -Freakshow 62613 -Freaky 55631 -Freche 64657 -Freckle 63991 -Freckles 59227 -Frecuencia 65452 -Fred 44267 -Fred's 57566 -Freda 61699 -Freddie 49201 -Freddy 53271 -Freddy's 60238 -Frederator 63245 -Frederic 54245 -Frederica 65452 -Frederick 47356 -Frederick's 64423 -Fredericks 63077 -Fredericksburg 56388 -Frederico 64657 -Fredericton 53501 -Frederik 58632 -Frederiksberg 61818 -Frederiksen 64905 -Fredo 60762 -Fredonia 63245 -Fredric 62331 -Fredrick 59424 -Fredrickson 63077 -Fredrik 56585 -Fredriksson 59292 -Fredy 64423 -Free 30120 -FreeAdultPersonals 65170 -FreeAgent 61362 -FreeBSD 55060 -FreeDOS 63419 -FreeFind 60670 -FreeIndex 62066 -FreeLoader 63991 -FreeMove 64905 -FreeOnes 58017 -FreePint 62469 -FreeStyle 65452 -FreeTimeSearch 64423 -FreeType 62613 -FreeWare 65452 -Freeads 58632 -Freebase 61584 -Freebie 58212 -Freebies 51017 -Freebird 65452 -Freeburg 65170 -Freecom 60670 -Freecycle 63601 -Freed 58919 -Freedict 57653 -Freedman 56721 -Freedom 39598 -Freedom's 61818 -Freedoms 59630 -Freefall 63991 -Freeflow 64423 -Freeform 58523 -Freehand 60492 -Freehold 55906 -Freeholder 63601 -FreeinDC 65452 -Freeing 62331 -Freel 62331 -Freelance 49494 -Freelancer 59227 -Freelancers 60000 -Freelancing 63419 -Freeland 59774 -Freelander 63245 -Freeloader 65452 -Freely 57084 -Freeman 49713 -Freeman's 62196 -Freemans 64905 -Freemasonry 61699 -Freemasons 62917 -Freeones 55738 -Freeper 62469 -Freephone 62469 -Freeplay 62613 -Freeport 54770 -Freer 65452 -Freeride 58212 -Freeroll 61818 -Freerolls 64423 -Frees 63991 -Freesat 58365 -Freescale 60078 -Freeserve 65170 -Freestanding 56231 -Freestar 65170 -Freestone 64423 -Freestyle 49296 -Freestylers 64201 -Freetown 61152 -Freeview 53331 -Freeware 45258 -Freewares 65170 -Freeway 53662 -Freeways 63077 -Freewheel 63792 -Freewheeling 63419 -Freeze 52496 -Freezer 52899 -Freezers 54380 -Freezes 64201 -Freezing 56518 -Freezone 65170 -Frege's 65452 -Frehley 62917 -Frei 63419 -Freiburg 57831 -Freie 54770 -Freight 49470 -Freighter 63419 -Freightliner 59101 -Freire 62762 -Freitag 65452 -Freitas 61699 -Frelinghuysen 64905 -Fremantle 56262 -Fremont 51358 -Fremvisning 63419 -French 36872 -French's 64201 -Frenchman 59164 -Frenchman's 65452 -Frenchmen 63991 -Frenchtown 64423 -Frenchy 65170 -Frensham 64423 -Frente 61472 -Frenzy 54302 -Freon 61584 -Freq 61051 -Frequencies 57741 -Frequency 46595 -Frequent 50026 -Frequently 42341 -Frere 61940 -Fresco 61472 -Fresenius 62917 -Fresh 43233 -FreshLook 63991 -FreshPatents 63419 -FreshWap 58212 -Freshcling 63792 -Freshen 64657 -Freshener 60580 -Fresheners 60762 -Fresher 57318 -Freshers 59357 -Freshest 61818 -Freshfields 63601 -Freshly 56618 -Freshman 52221 -Freshmen 52778 -Freshness 58162 -Freshpak 64423 -Freshrpms 60670 -Freshwater 51017 -Freshy 64657 -Fresnel 59630 -Fresno 49764 -Fret 63077 -Fretboard 63991 -Frets 59292 -Freud 53865 -Freud's 58802 -Freudian 60078 -Freund 58017 -Freund's 63077 -Freunde 64905 -Freunden 65452 -Freundlich 62762 -Frew 64423 -Frey 55821 -Freya 57046 -Fri 40115 -Friar 60580 -Friars 60000 -Fribourg 64201 -Frick 60492 -Fricke 60762 -Friction 54685 -Frida 57440 -Friday 38934 -Friday's 50678 -Fridays 52280 -Fridge 51899 -Fridges 59424 -Fridley 63245 -Fried 50256 -FriedClamFanatic 64423 -Frieda 61051 -Friedberg 65170 -Friedel 63419 -Friedland 63792 -Friedlander 64201 -Friedman 51877 -Friedman's 60492 -Friedmann 63245 -Friedreich's 62469 -Friedrich 53167 -Friel 60670 -Frieling 59848 -Friend 36771 -Friend's 48882 -FriendFeed 57160 -FriendFinder 63601 -Friender 65170 -Friendfeed 64423 -Friendfinder 64905 -Friendlies 64905 -Friendly 42761 -Friends 36330 -FriendsEAT 63245 -Friendship 49388 -Friendships 62469 -Friendsite 64201 -Friendster 49758 -Friendswood 62066 -Friendzii 63245 -Frienster 63419 -Friern 65170 -Fries 54727 -Friese 64423 -Friesen 62196 -Friesian 62917 -Friesland 64423 -Frieze 61699 -Frigate 59227 -Frigates 63792 -Fright 57653 -Frightened 61362 -Frightening 65452 -Frigidaire 55084 -Friis 63077 -Frill 62762 -Frills 61362 -Frimley 64201 -Fring 63077 -Fringe 50881 -Fringed 60952 -Frings 64905 -Frinton 63991 -Frio 63601 -Fripp 63245 -Frisbee 55849 -Frisch 62066 -Frisco 55084 -Frise 60078 -Frisell 65452 -Frisian 59630 -Frisky 61362 -Frist 64201 -Frith 57122 -Frits 63792 -Fritsch 64201 -Fritters 64657 -Fritz 53138 -Friuli 64905 -Friulian 65170 -Frizinghall 64905 -Frizz 61940 -Frm 56518 -Fro 64201 -Frobenius 62196 -Frock 63077 -Frode 65452 -Frodo 63792 -Frodsham 56618 -Froedtert 64905 -Froelich 63991 -Froese 65170 -Frog 49482 -Frogger 59848 -Froggy 62613 -Frogs 54946 -Frogwatch 59227 -Frohlich 65452 -Froid 65452 -Frolic 64201 -From 31861 -Frome 59227 -Fromm 61051 -Frommer 64657 -Frommer's 55821 -Fron 65452 -Fronds 62762 -Front 37532 -FrontBridge 64657 -FrontDoor 61256 -FrontMan 65170 -FrontPage 54321 -FrontX 63991 -Frontage 59292 -Frontal 56585 -Frontcourts 64201 -Frontenac 59923 -Frontend 57696 -Frontera 62331 -Frontgate 60856 -Frontier 46687 -Frontier's 64657 -Frontiers 55014 -Frontières 65170 -Frontlin 60952 -Frontline 52597 -Frontlines 63077 -Frontman 63792 -Frontmatter 61051 -Frontpage 52597 -Fronts 59491 -Froogle 63792 -Frost 48781 -Frost's 63991 -Frostbite 64201 -Frosted 55906 -Frostfire 63245 -Frosting 58632 -Frostman 57785 -Frostmane 59357 -Frostmourne 59923 -Frostwhisper 64657 -Frostwolf 58523 -Frosty 57482 -Froude 64905 -Frown 65170 -Frozen 48436 -Frucci 64905 -Fructis 63991 -Fructose 60580 -Frugal 52303 -Frugality 64905 -Fruit 45708 -Fruita 60078 -Fruitcake 59774 -Fruitful 64201 -Fruitland 64423 -Fruits 51034 -Fruitvale 63077 -Fruity 59101 -Frum 59923 -Frusciante 64905 -Frustrated 57238 -Frustration 58688 -Fruvous 64905 -Fruzsina 63991 -Fry 50343 -Fry's 59292 -Frye 55877 -Fryer 58017 -Fryers 58802 -Frying 60078 -Frypans 65452 -Frys 62066 -Frère 64657 -Frédéric 57440 -Fs 63077 -Fsbo 63077 -Fst 65452 -Ft 50343 -Ftc 64657 -Ftd 64657 -Ftp 60762 -FtsZ 64905 -Ftv 59101 -Fu 49081 -Fuad 64905 -Fubar 64423 -Fuca 62469 -Fuchs 56972 -Fuchsia 58632 -Fuck 47467 -Fucked 51541 -Fucker 62066 -Fuckers 60238 -Fuckin 59560 -Fucking 50242 -Fucks 57009 -Fucus 64657 -Fudan 61472 -Fudd 61699 -Fudge 55274 -Fue 65170 -Fuego 59630 -Fuel 42657 -Fueled 59560 -Fueling 59630 -Fuels 52712 -Fuente 58365 -Fuentes 58417 -Fuerte 61699 -Fuerteventura 60238 -Fuerza 61699 -Fug 59101 -Fuga 64657 -Fugazi 63419 -Fuge 65170 -Fugees 65452 -Fugitive 56862 -Fugitives 62762 -Fugue 61584 -Fuhrer 64905 -Fujairah 64201 -Fuji 50840 -FujiFilm 64905 -FujiNow 64201 -Fujian 57009 -Fujifilm 54540 -Fujii 62469 -Fujikawa 60670 -Fujimoto 61940 -Fujisaka 62613 -Fujisawa 62196 -Fujita 58470 -Fujitsu 49092 -Fujitsu's 65170 -Fujiwara 58313 -Fujiya 64423 -Fuk 65452 -Fukuda 61699 -Fukui 61152 -Fukunaga 64905 -Fukuoka 56485 -Fukushima 61152 -Fukuyama 64423 -Fulah 65170 -Fulbright 56324 -Fulcrum 59560 -Fuld 63245 -Fulda 65170 -Fulfill 60762 -Fulfilled 65452 -Fulfilling 62917 -Fulfillment 52927 -Fulfilment 64423 -Fulford 65170 -Fulham 52622 -Full 33183 -FullDls 57358 -FullImage 62762 -FullScreen 65452 -FullText 59164 -Fullblood 58745 -Fulldls 57482 -Fuller 52198 -Fuller's 61940 -Fullerton 54540 -Fullmetal 57741 -Fullness 63419 -Fullscreen 56687 -Fullsize 61152 -Fulltext 53109 -Fulltime 60762 -Fullversion 63077 -Fully 47021 -Fulmer 61584 -Fulton 50492 -Fults 63419 -Fultz 64423 -Fulvio 63991 -Fumarate 64657 -Fumble 64423 -Fumbles 64423 -Fume 62917 -Fumes 65452 -Fumie 62762 -Fumio 63792 -Fumo 64905 -Fumoffu 64905 -Fun 39382 -FunAdvice 63601 -FunNotes 64905 -FunTrivia 61362 -FunWall 62469 -Funafuti 65452 -Funambol 63077 -Func 61818 -Funchal 60238 -Función 64657 -Funct 60078 -Function 45706 -Functional 47050 -Functionality 55711 -Functionalized 64423 -Functionally 60856 -Functioning 58919 -Functions 47887 -Fund 40465 -Fund's 57970 -FundRace 60952 -FundUtopia 65170 -Funda 65452 -Fundación 61584 -Fundam 62762 -Fundamental 51034 -Fundamentalism 64657 -Fundamentalist 62917 -Fundamentals 50476 -Fundação 65170 -Funded 53830 -Funder 62066 -Funders 60580 -Funding 44896 -Fundrace 58113 -Fundraise 53813 -Fundraiser 54264 -Fundraisers 57876 -Fundraising 47533 -Funds 43820 -Fundy 62066 -Funeral 45378 -Funerals 55274 -Fung 58365 -Fungal 56200 -Fungi 54581 -Fungicides 65170 -Fungus 58162 -Funhouse 56551 -Funjet 64905 -Funk 49828 -Funkadelic 65170 -Funke 61362 -Funkhouser 65452 -Funky 50726 -Funmap 62613 -Funnel 56231 -Funnies 58017 -Funniest 55657 -Funny 41424 -Funschool 65452 -Fuori 63991 -Fuqua 60238 -Fur 51762 -FurReal 64657 -Furano 64905 -Furby 62066 -Furcal 64423 -Furey 63077 -Furie 64423 -Furies 62469 -Furikabutte 65452 -Furious 55250 -Furl 41428 -Furled 64423 -Furlong 59101 -Furman 55423 -Furminator 63601 -Furnace 53211 -Furnaces 57609 -Furnes 62762 -Furness 59774 -Furnevel 61152 -Furnish 61818 -Furnished 53597 -Furnishers 63792 -Furnishing 56585 -Furnishings 45867 -Furniture 39118 -FurnitureBuzz 64423 -Furnitures 62917 -Furosemide 64201 -Furr 63601 -Furriers 62762 -Furry 57876 -Furs 59702 -Furst 62469 -Furstenberg 59227 -Furtado 54969 -Furth 63077 -Further 43195 -Furthermore 54560 -Furukawa 63601 -Furuno 59848 -Fury 50662 -Furyk 65452 -Fusarium 58212 -Fusco 61256 -Fuse 54207 -FuseTalk 60762 -Fusebox 61818 -Fused 59424 -Fuselage 64201 -Fuser 64201 -Fuses 59774 -Fushigi 57696 -Fusilli 64201 -Fusing 59357 -Fusion 46581 -Fusobacterium 65170 -Fuss 59848 -Fussball 64905 -Fussy 63245 -Fusxion 65170 -Futaba 61256 -Futakoi 65452 -Futatsuki 63792 -Futbol 57876 -Futebol 63991 -Futian 62917 -Futile 65452 -Futility 63601 -Futon 56791 -Futons 57566 -Futsal 58632 -Futuna 49296 -Futura 57009 -Futurama 58860 -Future 41112 -Future's 64423 -FutureCorps 60952 -Futureheads 65170 -Futuremark 62613 -Futures 49359 -Futuris 63077 -Futurist 60670 -Futuristic 58065 -Futurists 64423 -Futurity 59292 -Futuro 63601 -Fuze 59424 -Fuzhou 64423 -Fuzion 63991 -Fuzz 57566 -Fuzzies 64905 -Fuzzy 51963 -Fv 63245 -Fw 63245 -Fwy 61362 -Fx 57238 -FxCop 64657 -Fxg 63792 -Fy 64905 -Fylde 59630 -Fyn 63792 -Fyne 64423 -Fynsk 64905 -Fyodor 61699 -Fyshwick 64905 -Fédération 64423 -Féin 61818 -Félix 65170 -Fête 61584 -Física 61472 -FðzÞ 65452 -Fómhair 62331 -Fórum 61362 -För 64905 -Förster 64905 -Føj 63991 -Fútbol 62331 -Für 60856 -Fürth 60856 -G 36108 -G'day 64201 -G's 55963 -GA 40038 -GAA 54622 -GAAP 55250 -GABA 54992 -GABAA 64423 -GABAergic 60321 -GABBANA 60321 -GABON 61472 -GABRIEL 61584 -GAC 53865 -GAD 63077 -GADGET 64423 -GADGETS 61152 -GAE 64905 -GAF 59560 -GAFFIGAN 61818 -GAG 57009 -GAGA 65452 -GAGE 63991 -GAGs 63077 -GAIA 61152 -GAIL 62762 -GAIN 59357 -GAINS 62917 -GAK 65170 -GAL 58417 -GALA 57876 -GALATASARAY 64423 -GALAXIES 65170 -GALAXY 59039 -GALE 63991 -GALILEO 60762 -GALLAGHER 63991 -GALLERIA 62469 -GALLERIES 50263 -GALLERY 49234 -GALLON 60078 -GALORE 65452 -GALVANIZED 65452 -GAM 62762 -GAMBIA 61699 -GAMBLE 64657 -GAMBLING 63601 -GAME 48221 -GAMECUBE 62762 -GAMER 64423 -GAMERS 65452 -GAMES 47290 -GAMEware 63245 -GAMING 53565 -GAMMA 60670 -GAMS 64905 -GANA 65452 -GANDHI 64657 -GANG 61584 -GAO 55849 -GAOT 63601 -GAP 54601 -GAPDH 58113 -GAR 57199 -GARAGE 56388 -GARBAGE 56452 -GARCH 65170 -GARCIA 61152 -GARDEN 52673 -GARDENING 63419 -GARDENS 57653 -GARDNER 62762 -GARFIELD 63245 -GARG 63419 -GARH 64657 -GARLAND 64201 -GARLIC 64905 -GARMENT 64423 -GARMIN 59101 -GARNER 64905 -GARNET 64423 -GARRETT 62917 -GARROS 64201 -GARRY 65452 -GARTH 64657 -GARY 55552 -GAS 49906 -GASB 62762 -GASES 61362 -GASKET 55348 -GASOILA 64657 -GASTON 63419 -GASTRIC 64905 -GASTROENTEROLOGY 65452 -GAT 58919 -GATA 62613 -GATE 56140 -GATES 60238 -GATEWAY 58365 -GATHERING 62613 -GATORS 62762 -GATT 60405 -GAUGE 59491 -GAUGES 61940 -GAVE 62331 -GAY 54706 -GAZ 60856 -GAZETTE 57009 -GAs 61818 -GB 40737 -GBA 49802 -GBAtemp 58919 -GBBT 63991 -GBC 60000 -GBH 64201 -GBIF 61256 -GBM 62917 -GBP 47955 -GBR 58688 -GBS 57653 -GBX 64201 -GBrowse 63601 -GBs 57084 -GC 47839 -GCA 60157 -GCAO 61152 -GCC 53662 -GCDB 64905 -GCE 61818 -GCF 63792 -GCG 61051 -GCH 64905 -GCI 63419 -GCL 60321 -GCM 61362 -GCN 60952 -GCP 56140 -GCR 65170 -GCS 54946 -GCSE 52141 -GCSEs 61472 -GCT 59424 -GCV 65170 -GD 51700 -GDA 63792 -GDB 62613 -GDC 57440 -GDF 61699 -GDG 64201 -GDH 60762 -GDI 56200 -GDL 61152 -GDM 61940 -GDNF 60492 -GDP 49065 -GDR 60580 -GDS 59848 -GDVII 62917 -GE 46079 -GE's 63245 -GEA 57785 -GEAR 53167 -GEARBOX 64657 -GEARS 63991 -GEC 61699 -GED 52752 -GEDA 59292 -GEDCOMs 63792 -GEE 62762 -GEEK 63601 -GEELONG 63991 -GEES 61699 -GEF 58745 -GEFORCE 63419 -GEH 64657 -GEIA 64905 -GEICO 56420 -GEIS 65452 -GEL 58262 -GELDER 65452 -GELMINI 64657 -GEM 57609 -GEMINI 60670 -GEMM 55793 -GEMS 58979 -GEMZAR 63991 -GEN 55849 -GENDARMERIE 60405 -GENDER 59630 -GENE 57741 -GENEALOGY 63077 -GENEART 64201 -GENECARD 63991 -GENERAL 45756 -GENERAL'S 64905 -GENERATING 62762 -GENERATION 56972 -GENERATIONS 61940 -GENERATOR 58262 -GENERATORS 61699 -GENERIC 60405 -GENES 60952 -GENESIS 58688 -GENETIC 59923 -GENETICS 60321 -GENEVA 60762 -GENIUS 62066 -GENOA 65452 -GENRE 62066 -GENRES 60321 -GENSAT 38290 -GENTLE 62917 -GENUINE 58365 -GENUKI 60078 -GEO 35425 -GEOFF 61818 -GEOFFREY 64201 -GEOGRAPHIC 61152 -GEOGRAPHICAL 64657 -GEOGRAPHY 61699 -GEOLOGICAL 62917 -GEOLOGY 63077 -GEOPAK 62917 -GEOPHYSICAL 64905 -GEORGE 51741 -GEORGES 64201 -GEORGETOWN 64423 -GEORGIA 53847 -GEORGIAN 64423 -GEOS 65170 -GER 57831 -GERALD 58523 -GERARD 61584 -GERBER 65452 -GERD 55578 -GERIATRIC 55323 -GERMAN 54792 -GERMANY 54096 -GERRY 63245 -GERVAIS 64905 -GET 45008 -GETAWAY 65170 -GETS 56452 -GETTIN 65452 -GETTING 55037 -GETTY 65452 -GEXA 64423 -GF 50343 -GFA 62066 -GFAP 62331 -GFCI 63419 -GFDL 51257 -GFE 63601 -GFF 64905 -GFI 57831 -GFM 64657 -GFN 65452 -GFP 55154 -GFR 58523 -GFS 59923 -GFT 64905 -GFW 59774 -GFX 57122 -GFY 64905 -GForge 59630 -GG 51700 -GGA 58745 -GGC 61818 -GGG 59491 -GGP 64905 -GGT 58212 -GGUS 60580 -GH 50067 -GHANA 59357 -GHB 61362 -GHC 62196 -GHD 57609 -GHETTO 65452 -GHG 54321 -GHGs 63601 -GHI 63245 -GHIA 62469 -GHOST 57122 -GHOSTS 63991 -GHP 63601 -GHQ 62762 -GHS 56935 -GHSERFE 65170 -GHSboySoccerGre 62613 -GHW 63601 -GHWT 58688 -GHZ 60856 -GHz 46537 -GI 48496 -GIA 58688 -GIAC 61699 -GIACOMO 64423 -GIANNA 65452 -GIANT 55060 -GIANTS 60321 -GIBBS 64423 -GIBRALTAR 61256 -GIBSON 60321 -GIC 62066 -GID 64657 -GIDL 63792 -GIF 52051 -GIFT 49070 -GIFTS 51660 -GIFs 62196 -GIG 57358 -GIGA 62762 -GIGABYTE 60321 -GIGS 64657 -GIL 57741 -GILBERT 59774 -GILDA 64905 -GILES 63419 -GILL 61699 -GILLETTE 64423 -GILMORE 63991 -GILT 63419 -GIM 64905 -GIMP 55684 -GIN 62469 -GINA 60238 -GINGER 61699 -GINGERBREAD 65452 -GINO 62469 -GIORGIO 60580 -GIOVANNI 63245 -GIP 65170 -GIRARDIN 61256 -GIRL 51783 -GIRLFRIEND 64423 -GIRLS 50277 -GIS 47406 -GIST 64657 -GIT 63419 -GITHINJI 63792 -GIULIANI 65170 -GIVE 52845 -GIVEAWAYS 64201 -GIVEN 57696 -GIVES 61362 -GIVI 62762 -GIVING 58919 -GIs 63792 -GIy 63245 -GJ 51193 -GJS 58313 -GK 51783 -GKS 60670 -GL 48731 -GLA 58919 -GLAAD 64201 -GLAD 60670 -GLADE 64423 -GLADSTONE 63077 -GLANCE 62762 -GLAND 65452 -GLASGOW 60405 -GLASS 53533 -GLASSES 61584 -GLAST 57318 -GLAZED 64201 -GLBT 55299 -GLBTA 65170 -GLC 59774 -GLE 58745 -GLEBE 65452 -GLEN 58113 -GLENN 57831 -GLENWOOD 64423 -GLG 60157 -GLH 62762 -GLI 57653 -GLIDE 63245 -GLITCH 65170 -GLK 62613 -GLM 62613 -GLO 60762 -GLOBAL 50157 -GLOBALISATION 60580 -GLOBALIZATION 51078 -GLOBE 58162 -GLOCK 64657 -GLORIA 60580 -GLORY 60670 -GLOSS 63419 -GLOSSARY 57046 -GLOUCESTER 63991 -GLOVE 61818 -GLOVES 57653 -GLOW 59923 -GLP 58470 -GLR 63601 -GLS 55552 -GLT 60492 -GLUCOSE 64423 -GLUE 63792 -GLUTATHIONE 64423 -GLUTEN 64905 -GLX 58417 -GLa 62469 -GLb 63419 -GM 44289 -GM's 56899 -GMA 52778 -GMAC 56791 -GMAT 54245 -GMB 62196 -GMBH 57278 -GMC 47060 -GMCs 62762 -GMD 64201 -GME 62917 -GMFCS 63792 -GMG 64905 -GMI 64201 -GML 64657 -GMM 60238 -GMMR 63245 -GMO 61472 -GMP 54264 -GMPCS 59923 -GMR 60952 -GMS 54857 -GMT 39340 -GMTAugust 65170 -GMTJanuary 61362 -GMTTime 65452 -GMTV 63792 -GMU 64423 -GMV 63077 -GMX 65170 -GMa 62196 -GMail 61362 -GMb 62331 -GMs 60580 -GN 53286 -GNA 65452 -GNC 59292 -GND 54005 -GNI 60762 -GNIAR 65452 -GNIS 65170 -GNM 55178 -GNN 64423 -GNOME 55423 -GNP 58162 -GNR 60238 -GNSS 62331 -GNT 62469 -GNU 44329 -GNVQ 64201 -GNX 64201 -GO 42721 -GOA 60405 -GOAL 56618 -GOALS 58365 -GOAT 62066 -GOCCP 61699 -GOD 51550 -GOD'S 60670 -GODDESS 65170 -GODS 59630 -GOES 55373 -GOF 64657 -GOG 65452 -GOGAT 65452 -GOGO 59774 -GOH 64905 -GOI 63991 -GOIN 63419 -GOING 53454 -GOL 63077 -GOLA 65452 -GOLD 49336 -GOLDBERG 63419 -GOLDEN 54264 -GOLDRUSH 60238 -GOLDSMITH 65170 -GOLDSTEIN 65170 -GOLF 51104 -GOM 63077 -GOMEZ 63419 -GON 62613 -GONDER 62469 -GONE 56585 -GONNA 58860 -GONZALES 63245 -GONZALEZ 63419 -GOO 59848 -GOOD 47318 -GOODBYE 62196 -GOODFACEBOOK 60580 -GOODHOPE 62066 -GOODIES 63245 -GOODMAN 63792 -GOODS 54969 -GOOG 57970 -GOOGLE 56110 -GOOMALLING 58470 -GOOSE 63245 -GOP 47248 -GOP's 60580 -GOPENH 63419 -GOPUSA 61362 -GORDON 57238 -GORE 64905 -GORGEOUS 59630 -GORMAN 65170 -GORP 65452 -GORP's 64657 -GOSH 63792 -GOSPEL 60321 -GOSS 60321 -GOSSIP 58017 -GOST 64201 -GOT 51463 -GOTHIC 63792 -GOTO 59630 -GOTTA 60078 -GOTV 64905 -GOULD 63792 -GOURMET 62469 -GOV 54188 -GOVERNANCE 50431 -GOVERNING 59848 -GOVERNMENT 50060 -GOVERNMENTAL 63792 -GOVERNMENTS 62917 -GOVERNOR 56652 -GOVERNOR'S 64905 -GOVERNORS 65452 -GOVT 63419 -GOs 63991 -GP 46247 -GP's 60670 -GPA 53038 -GPC 57970 -GPCR 61256 -GPCRs 63245 -GPD 65170 -GPE 64657 -GPF 64201 -GPG 63601 -GPI 60000 -GPIB 59292 -GPIO 64905 -GPL 51996 -GPM 58017 -GPO 53746 -GPP 62762 -GPR 57318 -GPRS 55657 -GPS 38826 -GPSMAP 61818 -GPSS 63601 -GPT 62762 -GPU 54207 -GPUs 58113 -GPW 64905 -GPX 59164 -GPa 58113 -GPlusMedia 61818 -GPs 52913 -GPx 64905 -GQ 49076 -GR 49296 -GRA 65170 -GRAB 61256 -GRACE 56862 -GRACIAS 63792 -GRAD 61584 -GRADE 53533 -GRADES 58113 -GRADING 61152 -GRADUATE 53847 -GRADUATES 61152 -GRADUATION 61472 -GRAFFITI 60492 -GRAHAM 57084 -GRAIN 60492 -GRAINS 64423 -GRAMMAR 63792 -GRAMMY 63991 -GRAN 60000 -GRANADA 65452 -GRAND 52130 -GRANDE 60238 -GRANGE 62762 -GRANITE 59560 -GRANT 53746 -GRANTED 59923 -GRANTING 63991 -GRANTS 55604 -GRANVILLE 55766 -GRAPE 59630 -GRAPEVINE 64657 -GRAPH 58688 -GRAPHIC 58017 -GRAPHICS 54188 -GRAPHITE 64201 -GRAPHIX 61818 -GRASS 58212 -GRATIS 61699 -GRAVE 60670 -GRAVES 65170 -GRAVITY 62066 -GRAVY 65452 -GRAW 61584 -GRAY 56827 -GRAYSON 64201 -GRAZING 63792 -GRB 59357 -GRBs 62762 -GRC 56551 -GRCH 57923 -GRE 53138 -GREASE 60000 -GREAT 46931 -GREATER 57440 -GREATEST 57318 -GREATLY 63245 -GREATNO 62917 -GREECE 57084 -GREEK 59702 -GREEN 49229 -GREENE 60000 -GREENHOUSE 59491 -GREENLAND 60078 -GREENS 62613 -GREENSBORO 65452 -GREENVILLE 62469 -GREENWOOD 63245 -GREETING 62917 -GREETINGS 63419 -GREG 57876 -GREGORY 57785 -GRENADA 61699 -GRENADINES 63077 -GRENOUILLE 64905 -GRESHAM 64423 -GRETCHEN 63991 -GREY 57318 -GREYHOUND 64201 -GREYS 60952 -GREYSTANES 65452 -GREYSTOKE 61584 -GREYSTONE 60000 -GRF 59848 -GRFC 63419 -GRI 61051 -GRID 57160 -GRIFFIN 60952 -GRIFFITH 65452 -GRIFFITHS 63792 -GRILL 59424 -GRILLE 64201 -GRILLED 61472 -GRIMS 58860 -GRIN 59101 -GRINDER 65170 -GRINDING 64657 -GRIP 60238 -GRIPS 63245 -GRIZZLY 62196 -GRN 61584 -GRO 64905 -GROCERY 62469 -GROOMING 62762 -GROOVE 64201 -GROSS 58860 -GROSSKILO 64905 -GROTE 64905 -GROUND 55202 -GROUNDS 60856 -GROUNDWATER 63792 -GROUP 47167 -GROUPE 63601 -GROUPS 52832 -GROVE 55130 -GROVES 65452 -GROW 57278 -GROWING 60580 -GROWN 62196 -GROWTH 52765 -GRP 58802 -GRR 65452 -GRRE 65170 -GRS 63792 -GRT 53346 -GRU 62917 -GRUB 61818 -GRUP 63077 -GRUPO 60580 -GRY 64657 -GReddy 63419 -GS 47827 -GSA 52107 -GSB 58470 -GSC 54341 -GSD 60000 -GSE 59630 -GSEs 65452 -GSF 62331 -GSH 55963 -GSI 56756 -GSK 59923 -GSKA 64423 -GSKB 64423 -GSL 58632 -GSLs 61472 -GSM 47935 -GSMA 65452 -GSMS 63419 -GSN 61818 -GSO 62196 -GSP 58802 -GSR 58632 -GSS 36189 -GST 51229 -GSTs 64423 -GSW 55178 -GSX 60492 -GSXR 58860 -GT 45174 -GT's 65170 -GTA 47737 -GTAIV 63419 -GTB 61940 -GTC 58262 -GTD 60078 -GTDC 63792 -GTE 59357 -GTEC 65170 -GTG 61051 -GTI 54005 -GTK 56293 -GTL 63792 -GTM 61940 -GTO 55014 -GTP 54207 -GTPase 58417 -GTPases 63077 -GTR 55849 -GTS 54835 -GTT 60078 -GTV 60078 -GTX 52327 -GTi 62066 -GU 54399 -GUAA 64657 -GUACAMOLE 65170 -GUADELOUPE 61818 -GUAM 60157 -GUANGZHOU 63245 -GUARANTEE 55992 -GUARANTEED 57482 -GUARANTEES 62066 -GUARD 58212 -GUARDIAN 60157 -GUARDS 60321 -GUATEMALA 61051 -GUBA 63601 -GUCCI 63077 -GUD 62196 -GUERNSEY 65452 -GUESS 52096 -GUEST 54770 -GUESTBOOK 59164 -GUESTLIST 65452 -GUESTS 60492 -GUGM 65452 -GUI 50584 -GUIANA 62196 -GUID 61051 -GUIDANCE 56452 -GUIDE 47157 -GUIDED 64905 -GUIDELINES 57160 -GUIDES 54207 -GUIDING 65170 -GUILD 59923 -GUILDFORD 65452 -GUILLOCHE 65170 -GUILTY 60157 -GUINEA 56551 -GUINNESS 63077 -GUITAR 53331 -GUITARS 63419 -GUIs 63792 -GUJARAT 61051 -GULF 57696 -GUM 60762 -GUN 55821 -GUNN 64657 -GUNS 58113 -GUO 65170 -GUP 63077 -GUPTA 60405 -GURL 64905 -GURU 61584 -GUS 60405 -GUST 63792 -GUSTAV 63077 -GUSTO 63077 -GUT 64423 -GUY 57160 -GUYANA 61584 -GUYS 56935 -GV 54643 -GVA 61472 -GVF 64657 -GVHD 63792 -GVO 60580 -GVRP 64423 -GVW 63792 -GW 49566 -GWANN 64905 -GWB 64423 -GWE 63601 -GWM 61818 -GWP 64905 -GWR 64905 -GWS 60762 -GWT 59292 -GWU 64657 -GX 55178 -GXP 63419 -GY 58577 -GYLLENHAAL 63245 -GYM 59630 -GYMNASTICS 58919 -GYN 64201 -GYPSY 63245 -GZ 61362 -GZIP 48672 -GZS 60078 -Ga 52164 -GaAlAs 64201 -GaAs 54283 -GaGa 56972 -GaLz 65452 -GaN 57876 -GaP 63245 -GaSb 65452 -Gaal 61940 -Gaara 60762 -Gab 60157 -Gaba 63991 -Gabba 57278 -Gabbana 54245 -Gabbard 64657 -Gabber 63245 -Gabbery 54341 -Gabbly 61362 -Gabby 57046 -Gabe 54835 -Gabel 63245 -Gabelli 65452 -Gabino 65452 -Gable 57876 -Gabler 65452 -Gables 56262 -Gabon 46423 -Gabor 55274 -Gaborik 64905 -Gaborone 63601 -Gabriel 48063 -Gabriel's 60952 -Gabriela 57046 -Gabriele 56899 -Gabriella 55226 -Gabrielle 54133 -Gaby 57440 -Gach 65452 -Gacy 64905 -Gad 64657 -GadBall 64905 -Gadd 63601 -Gaddafi 63792 -Gaddis 64423 -Gadel 62331 -Gadget 47005 -GadgetBlips 63991 -Gadgeteer 63991 -Gadgetell 63601 -Gadgetry 65170 -Gadgets 41273 -Gadi 65170 -Gadling 55992 -Gadling's 63601 -Gadsden 60157 -Gaebler 65452 -Gaeilge 53124 -Gael 59039 -Gaelic 51931 -Gaels 63792 -Gaeri's 63991 -Gaerne 64657 -Gaetano 61699 -Gaff 63792 -Gaffe 63991 -Gaffer 63601 -Gaffes 64423 -Gaffney 59702 -Gag 57238 -Gaga 60157 -Gagan 61940 -Gage 55178 -Gages 64905 -Gaggenau 63991 -Gaggia 58919 -Gagging 63601 -Gagliano 65452 -Gagne 61152 -Gagner 64905 -Gagnon 59630 -Gags 61472 -Gahan 64201 -Gahanna 61256 -Gahdhoo 56452 -Gahran 60856 -Gai 60078 -Gaia 51387 -Gaiam 57923 -Gaiden 53762 -Gail 48510 -Gail's 64423 -Gaillard 63792 -Gaim 63601 -Gaiman 57160 -Gaiman's 63419 -Gain 45977 -Gained 63419 -Gainer 64905 -Gainers 59774 -Gaines 57482 -Gainesville 52712 -Gainey 64201 -Gaining 57238 -Gains 51814 -Gainsborough 58632 -Gainsbourg 60762 -Gainward 62762 -Gairloch 64905 -Gait 59630 -Gaiters 61051 -Gaither 59491 -Gaithersburg 58262 -Gaius 61818 -Gajski 60856 -Gakic 65452 -Gakkai 55037 -Gakuen 61256 -Gakuin 63077 -Gal 52725 -Gal's 64657 -GalCer 64423 -Gala 51140 -Galactic 52927 -Galactica 53779 -Galactrix 61362 -Galadriel 65170 -Galaga 64423 -Galahad 65452 -Galan 64423 -Galant 61152 -Galante 63601 -Galanthus 63601 -Galapagos 55526 -Galata 64657 -Galatasaray 61256 -Galati 64201 -Galatians 60762 -Galatry 65170 -Galatta 65452 -Galaup 62917 -Galax 63601 -Galaxie 61152 -Galaxies 54727 -Galaxy 47702 -Galaxy's 65452 -Galaz's 65452 -Galbraith 58417 -Gale 44964 -Gale's 65452 -Galea 63792 -Galeax 64657 -Galego 52484 -Galen 56452 -Galena 57524 -Galera 64423 -Galeria 60157 -Galerie 56420 -Galeries 62917 -Galerija 64905 -Galerkin 62066 -Galery 65170 -Galería 64905 -Gales 62917 -Galesburg 61362 -Galetka 61699 -Gali 60405 -Galicia 59848 -Galician 56585 -Galil 64201 -Galilean 64423 -Galilee 61584 -Galileo 54727 -Galina 61940 -Galindo 63077 -Galinsky 64201 -Galitzine 64657 -Gall 57524 -GallFire 63792 -Gallacher 63601 -Gallagher 51377 -Gallagher's 64905 -Gallant 60856 -Gallant's 64423 -Gallardo 55299 -Gallas 61584 -Gallatin 57609 -Gallaudet 60157 -Gallbladder 59848 -Galle 60952 -Gallego 62331 -Gallegos 60492 -Gallen 62196 -Galleon 62196 -Galleri 65170 -Galleria 54622 -Gallerie 63077 -Galleries 40961 -Gallery 36267 -Gallery's 62469 -Galley 56791 -Galli 64201 -Galliano 61940 -Gallic 61362 -Gallicantu 61940 -Gallien 64905 -Galligan 62196 -Gallipoli 60238 -Gallium 59164 -Gallo 56080 -Gallon 52954 -Gallons 59630 -Gallop 62331 -Galloping 61362 -Galloway 53271 -Gallows 61699 -Gallstones 65170 -Gallup 54499 -Gallus 63601 -Galois 61256 -Galore 54727 -Gals 56972 -Galstad 65170 -Galt 59630 -Galton 62331 -Galvanised 63245 -Galvanized 55604 -Galveston 52913 -Galvez 63792 -Galvin 60321 -Galway 51942 -Galápagos 61256 -Gama 62331 -Gamasutra 63077 -Gamba 62762 -Gambia 46989 -Gambian 62762 -Gambier 59292 -Gambino 60492 -Gambit 60405 -Gamble 53331 -Gambler 60856 -Gamblers 61051 -Gambling 47679 -Gamboa 64201 -Gambon 65452 -Gambro 64657 -Game 35710 -Game's 61584 -GameAmp 63419 -GameArena 62469 -GameBanshee 63245 -GameBase 51303 -GameBattles 58065 -GameBoy 58065 -GameCore 61152 -GameCube 49394 -GameDaily 58919 -GameDay 61699 -GameFAQs 48165 -GameFly 60078 -GameGrep 60405 -GameHouse 62762 -GameLink 62331 -GameNet 63245 -GamePlay 60762 -GamePro 57524 -GameRankings 58417 -GameShark 65452 -GameSpot 39592 -GameSpotPosted 63792 -GameSpy 52648 -GameStats 54902 -GameStop 56585 -GameTab 61940 -GameTap 65170 -GameTime 63792 -GameTracker 65452 -GameTrailers 59424 -GameVideos 60000 -GameZone 59560 -Gameboy 54439 -Gamecock 62917 -Gamecocks 58113 -Gamecube 53438 -Gameday 55738 -Gamelan 61256 -Gameloft 63792 -Gamepad 61051 -Gamepads 64423 -Gameplanet 64423 -Gameplay 46903 -Gamer 51330 -Gamer's 57399 -GamerBlips 62066 -GamerMetrics 56756 -Gamera 64423 -Gamercard 63419 -Gameroom 63991 -Gamers 49429 -Gamerscore 65452 -Gamersyde 65452 -Gamertag 62066 -Gamerz 64657 -GamerzPlanet 59227 -Games 32398 -GamesRadar 60952 -Gameshark 64423 -Gamespot 59164 -Gamestation 64657 -Gamestop 61051 -Gamestore 64657 -Gametab 64905 -Gametime 65452 -Gametrailers 63077 -Gamez 61940 -Gaming 40000 -Gaming's 65170 -Gamma 52351 -Gammarus 62762 -Gammon 61940 -Gan 56618 -Gana 63419 -Ganado 63419 -Gananoque 61699 -Ganapati 65452 -Ganda 62917 -Gandalf 64423 -Gander 60856 -Gandhi 52387 -Gandhi's 64423 -Gandhinagar 61940 -Gandy 63991 -Ganesan 65452 -Ganesh 57609 -Ganesha 59630 -Gang 47947 -Ganga 60952 -Gangbang 57566 -Gangbangs 64657 -Ganges 61699 -Gangland 62196 -Ganglia 55398 -Ganglion 64201 -Gangliosides 64905 -Gangrene 64657 -Gangs 58065 -Gangsta 54114 -Gangstarr 60856 -Gangstas 65170 -Gangster 54792 -Gangsters 60238 -Gangtok 62917 -Ganguly 59774 -Ganja 59923 -Ganley 61940 -Gann 63245 -Gannett 48101 -Gannon 58313 -Gano 65452 -Ganoderma 62331 -Ganondorf 65452 -Ganong 63245 -Gans 62066 -Ganson 64201 -Gansu 59560 -Gant 60580 -Gantry 63419 -Gants 64423 -Gantt 60238 -Gantz 59774 -Ganymede 63419 -Ganz 59227 -Gao 56170 -Gap 48557 -Gaping 62331 -Gaps 54664 -Gar 60157 -Garage 42306 -GarageBand 57741 -GarageSale 61472 -Garageband 63419 -Garages 54664 -Garaging 65452 -Garamond 64657 -Garand 63245 -Garathorn 62066 -Garb 64657 -Garbage 50890 -Garber 61256 -Garbo 58470 -Garcia 48118 -Garcia's 62917 -Garciaparra 63991 -Garcinia 61699 -Garcons 61699 -García 56899 -Gard 61584 -Garda 56791 -Gardai 63792 -Gardaland 63991 -Gardasil 63601 -Garde 60000 -Garden 35050 -Garden's 64657 -GardenWeb 55526 -Gardena 60952 -Gardendale 64423 -Gardener 55107 -Gardener's 59357 -Gardeners 57318 -Gardenia 60856 -Gardening 46009 -Gardens 44475 -Gardiner 56110 -Gardner 48985 -Gardner's 59923 -Gare 57831 -Gareth 52752 -Garett 63419 -Garey 63601 -Garfield 50718 -Garfunkel 57876 -Garg 61584 -Gargoyle 60492 -Gargoyles 63245 -Gari 63991 -Garibaldi 61362 -Garin 63419 -Garithos 60856 -Garland 52315 -Garlands 64905 -Garlic 50758 -Garlock 65452 -Garment 53196 -Garments 55992 -Garmin 47859 -Garmin's 63601 -Garnaut 64905 -Garneau 62331 -Garner 52725 -Garner's 65452 -Garnet 54601 -Garnett 56485 -Garni 62469 -Garnier 59292 -Garnish 60238 -Garofalo 60762 -Garon 64423 -Garona 60856 -Garr 63792 -Garrard 60762 -Garrats 63991 -Garret 59164 -Garrett 50314 -Garrett's 63792 -Garrick 61584 -Garriott 62762 -Garrison 52141 -Garritan 62613 -Garrity 63792 -Garros 65170 -Garry 53211 -Garry's 62917 -Garryowen 63077 -Garside 65452 -Garson 63245 -Garstang 64201 -Garston 64657 -Garten 58802 -Garter 57524 -Garters 61362 -Garth 52635 -Gartmore 65452 -Gartner 54399 -Gartner's 64423 -Gartside 65452 -Garuda 52244 -Garvan 63792 -Garvey 57970 -Garvin 59923 -Garvin's 64423 -Garwood 63792 -Gary 42325 -Gary's 59039 -Garyvdh 61051 -Garza 57278 -Garé 63419 -Gas 39701 -Gascoigne 65170 -Gascoyne 63419 -Gaseous 60157 -Gases 56652 -Gash 63077 -Gasification 62196 -Gaskarth 64905 -Gaskell 65452 -Gasket 54643 -Gaskets 56200 -Gaskill 64201 -Gaskins 65170 -Gaslamp 59774 -Gaslight 62331 -Gasol 62331 -Gasoline 51415 -Gaspar 60952 -Gaspard 61256 -Gaspari 62762 -Gass 62762 -Gasser 63991 -Gast 61584 -Gastar 64657 -Gasthof 63991 -Gastineau 64657 -Gaston 54601 -Gastonia 63991 -Gastric 52996 -Gastritis 64905 -Gastro 59560 -Gastroenterol 53533 -Gastroenterological 63792 -Gastroenterology 50171 -Gastroesophageal 60670 -Gastrointest 59923 -Gastrointestinal 53346 -Gastron 63245 -Gastronomy 57482 -Gastropub 63245 -Gastropubs 63077 -Gastrorgasm 64657 -Gat 63792 -Gata 63245 -Gatco 64201 -Gate 45694 -GateHouse 58313 -Gatecrasher 64657 -Gated 56652 -Gatehouse 60492 -Gatekeeper 62331 -Gatekeepers 62613 -Gates 46957 -Gateshead 54727 -Gateway 44373 -Gateways 54560 -Gather 52778 -Gathered 59923 -Gathering 50033 -Gatherings 55906 -Gathright 62469 -Gatien 64905 -Gatineau 59702 -Gating 63601 -Gatlin 62196 -Gatlinburg 60856 -Gatling 64201 -Gato 60078 -Gator 53226 -GatorCases 64905 -Gatorade 59774 -Gators 54857 -Gatos 57524 -Gatsby 61940 -Gatti 61051 -Gatto 62066 -Gatwick 54188 -Gauche 62762 -Gaucher 61699 -Gaucho 63077 -Gauchos 64905 -Gauci 64423 -Gaudi 63601 -Gaudin's 64905 -Gaudino 63077 -Gauge 51220 -Gauges 53934 -Gaughan 63601 -Gauging 59630 -Gauguin 64657 -Gaul 63077 -Gaulle 60238 -Gault 63601 -Gaultier 58365 -Gaunt 63601 -Gauntlet 58470 -Gauntlets 62917 -Gaurav 60405 -Gauri 62196 -Gauss 57199 -GaussFrontPage 64423 -Gaussian 49789 -Gaussians 64201 -Gautam 59357 -Gauteng 53182 -Gauthier 59923 -Gautier 60856 -Gauze 62469 -Gav 64201 -Gavaskar 63419 -Gave 53138 -Gavekort 60856 -Gavel 59227 -Gavia 62917 -Gavilan 61152 -Gavin 48991 -Gavin's 63792 -Gawain 61472 -Gawker 55398 -GawkerCrime 61699 -Gawler 57741 -Gay 40194 -Gay's 64423 -GayPatriot 64201 -Gaya 58365 -Gayathri 63601 -Gayatri 58919 -Gaye 55274 -Gaye's 65452 -Gayest 63077 -Gayle 54685 -Gaylord 56356 -Gaynor 57482 -Gayot 64657 -Gays 55821 -Gaytown 64905 -Gaz 59101 -Gaza 51060 -Gazal 64905 -Gaze 60238 -Gazebo 58365 -Gazebos 62613 -Gazelle 61940 -Gazeta 63792 -GazettE 61940 -Gazette 46868 -Gazette's 65452 -Gazetteer 56827 -Gazettes 62917 -Gazi 61584 -Gazi'nin 63991 -Gazing 61940 -Gazpacho 65452 -Gazprom 59357 -Gazz 64657 -Gazzetta 64657 -Gb 53533 -GbOse 65170 -Gbps 60762 -Gbytes 62469 -Gc 65170 -Gch 62762 -Gd 57923 -GdOCl 63245 -GdViewer 65170 -Gdansk 59357 -Gdisk 63991 -Gdn 63991 -Gdynia 58417 -Ge 53762 -GeForce 48771 -GeV 53779 -Gea 64905 -Gear 40043 -Gear's 61584 -GearLog 61584 -GearShrine 62331 -GearWrench 61472 -Gearbox 59101 -Gearboxes 63601 -Geared 62066 -Gearhart 65170 -Gearhead 63245 -Gearing 59630 -Gearlog 64201 -Gears 47626 -Gearwire 62762 -Geary 57653 -Geass 55578 -Geauga 61051 -Geaux 63792 -Geb 64657 -Gebhard 64905 -Gebruik 65170 -Geburtshilfe 64201 -Gece 62469 -Gecko 55448 -Gecko's 63991 -Geckos 60856 -Ged 64657 -Geddes 60856 -Geddy 62469 -Gedichte 65452 -Gedling 62066 -Gedo 64423 -Gee 53934 -Gee's 61472 -Geek 48633 -GeekBuddies 63991 -GeekChat 63991 -GeekDad 54499 -GeekList 63792 -GeekLists 56420 -GeekMod 63991 -GeekQuestions 63991 -Geekdad 63601 -Geekery 65170 -Geeklog 64657 -Geeks 52074 -Geeky 58523 -Geekzone 65452 -Geelong 53153 -Geemarc 65170 -Geen 65452 -Geena 61584 -Geer 63245 -Geert 58162 -Gees 55373 -Geese 60238 -Geet 64657 -Geeta 59848 -Geez 64657 -Geezer 63077 -Gefen 60492 -Geffen 58632 -Geforce 56899 -Gehan 65170 -Gehl 60580 -Gehrig 65452 -Gehrig's 63601 -Gehry 62469 -Geib 64905 -Geico 59424 -Geiger 57440 -Geil 63991 -Geile 64423 -Geille 64657 -Gein 65452 -Geir 61699 -Geiriadur 64657 -Geiriau 65452 -Geisha 57399 -Geisinger 64423 -Geisler 61699 -Geist 60078 -Geka 60157 -Gekitou 65452 -Gekko 63419 -Geko 65452 -Gel 48821 -GelDiamonds 60321 -Gelade 65170 -Gelatin 56721 -Gelato 61256 -Gelb 61051 -Gelber 65170 -Geld 64657 -Gelder 63991 -Gelding 58802 -Geldings 64201 -Geldof 59424 -Gelert 64905 -Gelfand 63792 -Geli 64657 -Gell 65452 -Gellar 58802 -Geller 59039 -Gelman 64905 -Gels 56324 -Gem 50890 -Gem's 65170 -GemStone 60078 -GemXpresso 64657 -Gemcitabine 63077 -Gemeinde 63419 -Gemeinhardt 63991 -Gemfields 64423 -Gemini 49720 -Geminids 65170 -Gemma 54005 -Gemmell 64201 -Gems 51660 -Gemstar 62613 -Gemstone 53241 -Gemstones 55877 -Gen 47252 -GenBank 39864 -GenCore 64201 -GenForum 61362 -GenWeb 64905 -GenYES 64423 -Gena 59292 -Genbank 64905 -Genco 64423 -Gendarme 64905 -Gender 44465 -Genders 63419 -Gendreau 65170 -Gendron 64423 -Gene 34337 -Gene's 65170 -GeneCard 65170 -GeneChing 65452 -GeneChip 65452 -GeneID 64657 -GeneScreen 63601 -GeneTex 64905 -Genealogical 55578 -Genealogist 65452 -Genealogy 47060 -Geneeskd 63245 -Genel 61362 -Genelec 61152 -Genelia 63419 -Genentech 60952 -Geneology 64201 -Gener 63991 -Genera 61699 -General 32380 -General's 53630 -Generale 58688 -Generali 63601 -Generalised 64657 -Generalist 59923 -Generalitati 64201 -Generalities 65170 -Generalization 61472 -Generalized 53517 -Generalizing 64657 -Generally 51284 -Generals 55226 -Generate 50192 -Generated 50372 -Generates 60238 -Generating 52221 -Generation 43839 -Generational 64423 -Generations 49602 -Generative 60580 -Generator 46815 -Generators 51620 -Generel 60321 -Generelt 60157 -Generic 45056 -Generics 61256 -Generis 65452 -Generosity 64905 -Generous 56618 -Generously 63991 -Genes 50932 -Genesee 56687 -Geneseo 60078 -Genesio 61051 -Genesis 47424 -Genesys 58802 -Genet 52118 -Genetic 46934 -Genetica 65170 -Genetically 57524 -Genetics 47507 -Geneva 48292 -Geneve 60321 -Genevieve 56293 -Geneviève 65452 -Geng 64657 -Genghis 59424 -Genicom 64905 -Genie 54188 -Genin 60321 -Genindx 61940 -Genistein 65170 -Genital 54459 -Genitourinary 60321 -Genius 48538 -Genji 62762 -Genjuros 64905 -Gennady 61051 -Gennaio 64905 -Gennaro 61472 -Gennes 61584 -Genny 64905 -Geno 64657 -Geno's 64905 -Genoa 56293 -Genocide 56585 -Genoff 61818 -Genome 36088 -Genomes 63077 -Genomic 53316 -Genomics 54283 -Genotype 59774 -Genotypes 62762 -Genotypic 64423 -Genotyping 59039 -Genova 59923 -Genovese 64657 -Genpact 64423 -Genpak 64423 -Genre 48519 -Genres 47988 -Genscan 65452 -Gensco 64201 -Genshiken 61256 -Gent 57653 -Gente 59848 -Gentile 59039 -Gentiles 63601 -Gentle 52130 -Gentleman 56200 -Gentleman's 62196 -Gentlemen 55060 -Gentlemen's 60492 -Gentlemens 64905 -Gently 56388 -Gentoo 54283 -Gentrification 62196 -Gentry 55793 -Gents 54879 -Genuine 48836 -Genuinely 65452 -Genus 53052 -Genzyme 60238 -Genzyme's 64905 -Genève 56021 -Geo 51008 -GeoAtlas 62196 -GeoBeats 65170 -GeoCommunity 65452 -GeoMicro 60762 -GeoRef 56293 -GeoToolkit 59923 -GeoTrust 60580 -GeoURL 65452 -GeoVision 65452 -Geoanalyt 63601 -Geoarchaeology 65452 -Geobacter 63419 -Geobiology 63601 -Geobrowser 63245 -Geocacher 64423 -Geocaches 63991 -Geocaching 57831 -Geochemical 58212 -Geochemistry 59424 -Geocomp 62917 -Geodesic 64201 -Geodesy 61584 -Geodetic 58470 -Geodynamics 65170 -Geof 61362 -Geoff 49777 -Geoff's 64657 -Geoffrey 50507 -Geoffrey's 63245 -Geofluids 63601 -Geog 59164 -Geografiska 60157 -Geograph 64423 -Geographer 58688 -Geographers 61362 -Geographic 46474 -Geographical 52007 -Geographically 64905 -Geographies 65170 -Geography 44740 -Geol 60492 -Geologic 57524 -Geological 48562 -Geologist 61256 -Geologists 60856 -Geology 48913 -Geomatics 57238 -Geomechanics 64657 -Geometric 53813 -Geometrical 61818 -Geometry 50758 -GeometryConverter 65452 -Geomorphology 61256 -Geophys 58365 -Geophysical 53109 -Geophysics 55178 -Geopolitics 63792 -Geordie 60492 -Georg 54096 -George 38141 -George's 52546 -Georges 51931 -Georgetown 49388 -Georgette 57923 -Georgi 62066 -Georgia 38640 -Georgia's 55906 -Georgian 49758 -Georgiana 61362 -Georgians 59357 -Georgie 57876 -Georgina 56231 -Georgios 63792 -Georgopulos 63077 -Georgy 63245 -Geoscience 56862 -Geosciences 57876 -Geospatial 56170 -Geostand 63601 -Geosynthetics 63792 -Geotechnical 56262 -Geothermal 55226 -Geotrust 63419 -Geox 65452 -Gephardt 65452 -Ger 60238 -Gera 64657 -Gerace 63419 -Gerad 61699 -Geraghty 63419 -Geraint 60952 -Gerais 61051 -Gerakan 62469 -Geral 59923 -Gerald 48413 -Gerald's 65452 -Geraldine 54770 -Geraldo 60856 -Geraldton 61818 -Geranium 61940 -Gerard 50094 -Gerardi 65452 -Gerardo 60078 -Gerben 64657 -Gerber 53182 -Gerbera 63991 -Gerbil 60670 -Gerbils 61818 -Gerd 58745 -Gerda 61472 -Gere 61152 -Geren 64905 -Gergana 65452 -Gergely 64657 -Gergen 64423 -Gerhard 54459 -Gerhards 63601 -Gerhardt 62613 -Gerhart 63991 -Geri 56262 -Geriatr 57524 -Geriatric 53331 -Geriatrics 57160 -Gericke 65452 -Gericom 63991 -Gerlach 63792 -Germ 56791 -Germain 55766 -Germaine 61699 -German 39559 -Germania 64423 -Germanic 57238 -Germanium 63991 -Germano 65170 -Germans 52280 -Germantown 55877 -Germany 37334 -Germany's 53331 -Germination 60856 -Germplasm 59702 -Germs 61152 -Gernot 56618 -Gero 65452 -Gerodontology 63601 -Gerold 64657 -Geronimo 58802 -Gerontol 58417 -Gerontological 64657 -Gerontology 59292 -Gerrard 56721 -Gerrards 63245 -Gerretse 60321 -Gerri 63991 -Gerrit 62469 -Gerritsen 64201 -Gerrold 62331 -Gerry 50718 -Gerry's 64201 -Gers 64201 -Gershon 60238 -Gershwin 60762 -Gerson 61152 -Gerstner 63991 -Gert 59923 -Gertie 65170 -Gertrude 56050 -Gerunds 63991 -Gervais 55849 -Ges 63601 -Gesamte 62196 -Geschichte 60762 -Geschiedenis 65452 -Gesellschaft 58745 -Gestalt 60238 -Gestapo 63077 -Gestation 64657 -Gestational 58313 -Gestetner 61584 -Gestion 61051 -Gestiva 64423 -Gestión 65170 -Gesture 62066 -Gestures 59357 -Gesunde 63601 -Gesundheit 64905 -Get 31389 -Get'er 64201 -GetAgent 65452 -GetAllDocumentsByKey 61818 -GetAllEntriesByKey 61818 -GetAmped 63792 -GetAttachment 65452 -GetBackers 63991 -GetChild 60078 -GetColumn 61818 -GetCurrent 65452 -GetDataBack 62917 -GetDatabase 64423 -GetDbDirectory 64423 -GetDocumentByID 65452 -GetDocumentByKey 61818 -GetDocumentByUNID 65452 -GetDocumentByURL 65452 -GetEntry 62917 -GetEntryByKey 61584 -GetEnvironmentString 64905 -GetEnvironmentValue 64905 -GetError 64201 -GetErrorMessage 64201 -GetExtendedErrorMessage 64201 -GetFirst 63792 -GetFirstDocument 60078 -GetFirstItem 65452 -GetForm 65452 -GetItemValue 65452 -GetItemValueCustomDataBytes 65452 -GetItemValueDateTimeArray 64423 -GetLSDOMasterRevision 65170 -GetLast 63601 -GetLastDocument 59848 -GetMIMEEntity 61818 -GetNext 63419 -GetNextCategory 65452 -GetNextDocument 59848 -GetNextSibling 58688 -GetNth 65452 -GetNthDocument 60856 -GetObject 61584 -GetOption 65452 -GetParameter 62917 -GetParameterName 62917 -GetParent 63601 -GetParentDocument 61256 -GetPos 65452 -GetPosition 65452 -GetPost 63991 -GetPrev 63245 -GetPrevCategory 65452 -GetPrevDocument 59630 -GetPrevEntity 65170 -GetPrevSibling 58365 -GetPrice 64423 -GetProfileDocument 65452 -GetReceivedItemText 64423 -GetRight 65170 -GetRowStatus 62762 -GetScheduleData 65452 -GetSchedulerObject 61940 -GetSelectedText 62066 -GetSmart 65170 -GetSomeHeaders 65452 -GetTheJob 63419 -GetURLHeaderInfo 65452 -GetUserPolicySettings 64657 -GetValue 62762 -GetValueCustomDataBytes 64657 -GetValueDateTimeArray 64905 -GetView 65452 -Geta 64905 -Getafe 62196 -Getaway 52268 -Getaways 51867 -Gethin 63077 -Gethsemane 65452 -Geto 62331 -Getprice 52210 -Gets 45683 -Getta 65452 -Getter 61940 -Gettin 61472 -Getting 41061 -Getty 45809 -Gettysburg 56452 -Getz 58802 -Geum 63792 -Gevalia 65170 -Gewecke 64423 -Geyer 64657 -Geyser 61051 -Gezondheid 64905 -Gf 61940 -GfK 64201 -Gfarm 63077 -Gg 63991 -Ghai 63419 -Ghajini 64657 -Ghalib 63991 -Ghana 45241 -Ghana's 64423 -Ghanaian 58979 -Ghandi 65170 -Ghanian 63792 -Ghar 60952 -Ghats 63792 -Ghazal 63601 -Ghazals 62066 -Ghazi 64905 -Ghaziabad 61152 -Ghd 63792 -Ghee 64423 -Ghenady 65170 -Ghent 55992 -Gheorghe 63792 -Ghetto 52459 -Ghia 60670 -Ghibli 63077 -Ghirardelli 64201 -Ghoatwhore 63991 -Ghosh 57831 -Ghost 44590 -Ghostburster 65452 -Ghostbusters 59630 -Ghostdancer 64657 -Ghostface 61362 -Ghostlands 57278 -Ghostly 58632 -Ghosts 53256 -Ghoul 61818 -Ghoulish 58577 -Ghouls 62917 -Ghraib 59560 -Ghulam 60405 -Ghunghat 64905 -Ghyll 63991 -Ghz 58017 -Gi 55849 -GiB 58802 -GiGi 63792 -Gia 57358 -Giacomo 57923 -Giada 58365 -Giada's 64657 -Giallo 63419 -Giamatti 63419 -Giambi 60762 -Giambi's 62469 -Gian 59630 -Giancarlo 59630 -Gianfranco 59923 -Giang 63601 -Gianluca 59630 -Gianna 56827 -Gianni 56687 -Giannini 62917 -Giannis 63077 -Giant 46497 -Giant's 63991 -Giants 46514 -Giardia 58212 -Gib 63792 -Gibb 59702 -Gibbon 56170 -Gibbons 54439 -Gibbs 51560 -Gibbs's 65452 -Gibby 65452 -Gibco 64201 -Gibraltar 46463 -Gibran 62762 -Gibson 47224 -Gibson's 57831 -Gibsons 64423 -Giclee 53597 -Giclees 64905 -Giclée 61256 -Giddens 65170 -Gidding 64657 -Giddy 62917 -Gidea 63245 -Gideon 56080 -Gideon's 64657 -Gidget 64657 -Giemsa 62917 -Gif 56756 -Giff 63245 -Giffen 64657 -Giffnock 63245 -Gifford 56551 -Gifs 60000 -Gift 36876 -GiftCards 63419 -Giftcards 61699 -Gifted 53847 -Gifting 56687 -Gifts 38037 -Giftware 59491 -Giftwrap 62196 -Gifu 62469 -Gig 49097 -Giga 59292 -GigaGolf 64905 -GigaMAN 65452 -GigaOM 60492 -GigaOm 65452 -GigaPower 65452 -GigaSpaces 62917 -GigaTrust 62917 -Gigabeat 64905 -Gigabit 50915 -Gigablast 64423 -Gigabyte 50678 -Gigabytes 63792 -Gigantic 60078 -Gigaset 54792 -Giggle 61362 -GiggleSugar 64905 -Giggles 61472 -Giggs 62469 -Gigi 55657 -Gigli 62196 -Giglio 63245 -Gigmasters 64657 -Gignac 63601 -GignoSystem 63419 -Gigolo 63245 -Gigs 52940 -Giguere 63245 -Gigwise 61362 -Gijon 62762 -Gijutsu 65170 -Gil 50499 -Gila 60078 -Gilad 60078 -Gilani 65170 -Gilardino 64905 -Gilbert 47823 -Gilbert's 63601 -Gilberto 58262 -Gilberts 65170 -Gilbertson 64657 -Gilbride 63991 -Gilby 64905 -Gilchrist 56972 -Gilda 62066 -Gildan 61940 -Gilded 59848 -Gilead 60580 -Gilera 63077 -Giles 51650 -Gilesgate 63077 -Gilford 62469 -Gilg 57696 -Gilgamesh 62613 -Gilgen 63245 -Gilkey 65170 -Gill 51095 -Gill's 65170 -Gillan 60492 -Gillard 62331 -Gillen 62196 -Gilles 54133 -Gillespie 55084 -Gillett 61940 -Gillette 54622 -Gillette's 63601 -Gilli 64201 -Gilliam 60492 -Gillian 52954 -Gillie 63077 -Gillies 61362 -Gilligan 63792 -Gilligan's 60952 -Gilliland 60856 -Gilling 65452 -Gillingham 57741 -Gillis 58365 -Gillispie 60952 -Gillman 63245 -Gillmor 63601 -Gills 64201 -Gilly 63792 -Gilman 55448 -Gilman's 62066 -Gilmer 61362 -Gilmore 53124 -Gilmour 56721 -Gilneas 60952 -Gilpin 63792 -Gilroy 56452 -Gilson 60762 -Gilt 63792 -Gimbal 60238 -Gimeno 64905 -Gimme 52268 -Gimmick 63601 -Gimp 57278 -GimpThumbSize 64657 -Gin 54792 -Gina 49602 -Gina's 62917 -Ginecol 64201 -Ginekol 60321 -Ging 65452 -Ginga 64657 -Ginger 50328 -Gingerbread 58688 -Gingham 62762 -Gingrich 59164 -Gini 60670 -Ginkgo 58745 -Ginn 61940 -Ginny 57482 -Ginny's 64423 -Gino 56231 -Gino's 63792 -Ginobili 64657 -Ginsberg 59923 -Ginsburg 61362 -Ginseng 58313 -Gintama 61699 -Ginter 64657 -Ginuwine 62196 -Ginx 64905 -Ginyu 65170 -Ginza 61362 -Gio 58577 -Giochi 61256 -Gioia 63991 -Giordano 60078 -Giorgio 52845 -Giorgos 62331 -Giorno 63077 -Giotto 63991 -Giovanna 61152 -Giovanni 51257 -Gippsland 55631 -Gipson 63419 -Gipsy 60238 -Giraffe 55711 -Girard 57009 -Girardeau 59424 -Girardi 58113 -Girardin 64905 -Girbaud 65452 -Girdle 63601 -Giri 62469 -Girish 62917 -Girl 39813 -Girl's 52210 -Girlfriend 51909 -Girlfriend's 65452 -Girlfriends 56862 -Girlicious 63792 -Girlie 59227 -Girls 39555 -Girlsplayboys 65170 -Girly 54041 -Girlz 59164 -Girma 65452 -Giro 57482 -Girolamo 64423 -Girona 59424 -Giroux 62331 -Girton 61256 -GisaJobs 60157 -Gisborne 57199 -Gisela 62331 -Gisele 54170 -Giselle 58523 -Gish 62762 -Gist 63077 -Git 57046 -Gita 60405 -Gitar 64423 -Gite 64657 -Gites 64905 -Gitex 58523 -Githinji 63601 -Gitmo 63245 -Gitta 65452 -Gitte 64905 -Gittins 65170 -Gitzo 63991 -Giulia 57876 -Giuliana 65170 -Giuliani 53066 -Giuliani's 61584 -Giuliano 61584 -Giulio 60078 -Giuseppe 53271 -Give 40709 -GiveForward 65452 -Giveaway 52447 -Giveaways 53196 -Given 44978 -Givenchy 56420 -Givens 60157 -Giver 61051 -Gives 49476 -Givi 59101 -Giving 46307 -Giza 59923 -Gizmachi 63991 -Gizmo 56518 -Gizmodo 53865 -Gizmodothank 63601 -Gizmondo 65170 -Gizmos 52899 -Gjerde 65452 -Gk 65452 -Gl 61699 -Glabrae 64657 -Glace 62762 -Glacial 59491 -Glacier 50957 -Glaciers 59702 -Glaciology 63245 -Glad 50898 -Glade 56452 -Glades 58162 -Gladiator 55423 -Gladiator's 60321 -Gladiators 58470 -Gladiolus 60238 -Gladius 64905 -Gladstone 54023 -Gladwell 61584 -Gladwin 62196 -Gladys 54749 -Glam 52927 -Glamor 64905 -Glamorgan 53182 -Glamorous 60321 -Glamour 47702 -Glamour's 64201 -Glance 50584 -Gland 59774 -Glande 64657 -Glands 57970 -Glandular 64201 -Glanville 63077 -Glare 62917 -Glas 57566 -Glaser 57876 -Glasgow 46032 -Glasgow's 63991 -Glaslyn 65170 -Glass 41145 -GlassFish 60670 -Glassblowing 60492 -Glassboro 64905 -Glassell 64201 -Glasser 61818 -Glasses 49645 -Glassfish 62196 -Glasshouse 60405 -Glassman 61699 -Glassware 52648 -Glassy 63419 -Glasto 63991 -Glastonbury 54059 -Glastron 62196 -Glaswegian 64905 -Glau 63077 -Glauber 61051 -Glaucoma 56140 -Glaus 65170 -Glavin 61362 -Glaxo 60670 -GlaxoSmithKline 57785 -Glaze 58577 -Glazed 57440 -Glazer 59630 -Glazier 62762 -Glaziers 61152 -Glazing 55552 -GlcNAc 64201 -Glcp 63419 -Gleam 64657 -Gleaming 61584 -Gleaner 62469 -Gleason 56618 -Glebe 57785 -Glee 56899 -Gleeson 58365 -Glen 45802 -Glen's 65170 -Glenbrook 64201 -Glencoe 57524 -Glenda 56935 -Glendale 51069 -Glendalough 64423 -Glendalyn 63419 -Glendive 63245 -Glendon 64657 -Glendora 62917 -Gleneagles 63419 -Glenelg 61584 -Glenfield 61256 -Glengarry 61256 -Glenmore 61152 -Glenn 46899 -Glenn's 63419 -Glenna 61472 -Glennon 61256 -Glenorchy 62331 -Glenrothes 59923 -Glens 58365 -Glenside 63419 -Glentoran 63792 -Glentress 64657 -Glenview 57923 -Glenville 62762 -Glenwood 54360 -Gli 59491 -Glial 63245 -Gliannisettanta 62762 -Glick 60321 -Glickman 64423 -Glico 61818 -Glide 56140 -Glider 55448 -Gliders 60000 -Gliding 61584 -Glimmer 63077 -Glimpse 57524 -Glioma 65170 -Glitch 57876 -GlitchShow 63792 -Glitches 57482 -Glitnir 64201 -Glitter 49240 -Glitterati 63077 -Glittering 63077 -Glitters 56356 -Glittery 64905 -Glitz 59292 -Gln 62331 -Glo 57482 -Global 36997 -GlobalLogic 64905 -GlobalSpec 55448 -Globalisation 58470 -Globalism 63792 -Globalization 52484 -Globally 58577 -Globalsat 63601 -Globalstar 62613 -Globe 45294 -Globe's 63419 -GlobeAuto 62613 -GlobeNewswire 62331 -Globeinvestor 62762 -Globemedia 64657 -Globes 51680 -Globetrotter 64423 -Globetrotters 63792 -Globo 62066 -Globrix 61472 -Globular 64657 -Globus 58860 -Glock 55877 -Glocker 65170 -Glockers 62762 -Glofiish 63419 -Glogs 59774 -Glogster 64201 -Glomerular 63245 -Glomus 64201 -Gloom 59164 -Gloomy 61256 -Glorfindeal 64201 -Gloria 49739 -Gloria's 64905 -Glories 65452 -Glorieta 62331 -Glorietta 65452 -Gloriosa 60157 -Glorioso 61152 -Glorious 53597 -Glory 48256 -Gloryhole 65170 -Glos 64905 -Gloss 52673 -Glossaries 58860 -Glossary 42428 -Glossonema 63601 -Glossop 60856 -Glossy 54283 -Gloster 62066 -Glottertal 61362 -Gloucester 49251 -Gloucestershire 50285 -Glove 51814 -Glover 52739 -Glover's 64423 -Gloves 46824 -Glow 51175 -Glowimages 65452 -Glowing 53211 -Glows 63792 -Glu 58523 -Glucagon 61362 -Gluck 62066 -Glucksman 65452 -Glucocorticoids 62613 -Glucophage 58860 -Glucosamine 56485 -Glucose 52968 -Glue 52175 -Glued 61699 -Glues 61584 -Gluing 63991 -Glut 61051 -Glutamate 58745 -Glutamic 63792 -Glutamine 58745 -Glutathione 58745 -Gluten 55398 -Gluttony 63601 -Gly 59357 -Glycemic 58212 -Glycerin 63601 -Glycerine 65170 -Glycerol 63077 -Glyceryl 60000 -Glycine 59491 -Glycobiology 63245 -Glycogen 58979 -Glycol 62469 -Glycolic 61472 -Glycolipid 64905 -Glycomics 63245 -Glycoprotein 61051 -Glycoproteins 64201 -Glycosaminoglycan 65170 -Glyde 63792 -Glyn 60238 -Glyndwr 61699 -Glynis 64657 -Glynn 58365 -Glyph 60952 -Glyphs 59357 -Glándula 64423 -Glück 64423 -Gm 57653 -Gmail 50129 -GmbH 47339 -Gmbh 64201 -Gmc 61940 -Gmetad 59101 -Gmetrics 61152 -Gmina 63419 -Gn 61256 -GnRH 59491 -Gnarls 59774 -Gnas 60856 -Gnawa 64905 -Gnd 62331 -Gnewkowskis 64657 -Gnidia 64423 -Gnocchi 63077 -Gnome 51463 -Gnomeregan 57609 -Gnomes 62917 -Gnostic 60856 -Gnu 61940 -GnuPG 60670 -Gnutella 63077 -Go 32235 -GoDaddy 59227 -GoFish 64201 -GoGo 63077 -GoLite 63792 -GoLive 62066 -GoMod 62762 -GoPets 64657 -GoPhone 63245 -GoPro 64905 -GoSMILE 63792 -GoStay 62066 -GoTo 62613 -GoToMeeting 63245 -GoToMyPC 65452 -GoW 62331 -Goa 49809 -Goad 64657 -Goal 48182 -Goalie 57122 -Goality 62917 -Goalkeeper 57399 -Goalkeeping 61256 -Goals 47147 -Goalscorer 63991 -Goaltender 61818 -Goan 63245 -Goapele 62917 -Goat 50694 -Goat's 65170 -Goatherds 61584 -Goats 57009 -Gobbi 60492 -Gobble 61256 -Gobbler 64905 -Gober 63991 -Gobi 59923 -Gobierno 61818 -Gobind 64423 -Goble 62762 -Goblet 58688 -Goblets 64905 -Goblin 56585 -GoblinX 65452 -Goblins 60405 -Gobo 64423 -Goby 63245 -Goce 62613 -God 38849 -God's 45676 -GodTube 62917 -Goda 63245 -Godalming 61051 -Godard 60078 -Godavari 64423 -Godby 59630 -Goddamn 65170 -Goddard 54857 -Goddard's 63419 -Goddess 50507 -Goddesses 61818 -Goderich 61051 -Godfather 54540 -Godfrey 54188 -Godhead 62917 -Godin 58212 -Godin's 63245 -Godiva 58745 -Godless 63245 -Godley 64201 -Godly 60856 -Godmother 61699 -Godoy 62762 -Godrej 63601 -Gods 51473 -Godse 65170 -Godskitchen 61584 -Godsmack 60492 -Godspeed 63077 -Godt 59630 -Godunov 64423 -Godwin 59848 -Godzilla 55037 -Goebel 60238 -Goedel 62762 -Goel 61818 -Goes 45542 -Goethe 58313 -Goethe's 61940 -Goetz 59774 -Goetze 65452 -Gofal 62917 -Goff 57876 -Gogg 63991 -Goggin 63419 -Goggins 65452 -Goggle 58017 -Goggles 52982 -Gogh 56721 -Gogo 64423 -Gogol 63245 -Goh 60157 -Gohan 64423 -Goi 62331 -Goin 59101 -Goines 65170 -Going 43694 -Goings 62469 -Goiás 65452 -Goji 59357 -Gojira 64423 -Gojoe 65170 -Gok 62066 -Goku 58262 -Gokusen 64423 -Gol 58365 -Gola 62066 -Golan 61152 -Golconda 62066 -Gold 38197 -Gold's 57785 -Golda 65170 -Goldberg 51690 -Goldberg's 62917 -Goldberger 65170 -Goldblatt 61699 -Goldblum 63991 -Golden 41527 -Golden's 65170 -GoldenCAN 60238 -Goldenberg 64905 -Goldendoodle 65452 -Goldeneye 63245 -Goldenrod 61472 -Goldenseal 62196 -Golder 64657 -Golders 60952 -Goldfarb 60856 -Goldfields 60580 -Goldfinch 65452 -Goldfinger 62762 -Goldfish 55274 -Goldfrapp 57399 -Goldie 56388 -Goldilocks 60492 -Goldin 61699 -Golding 61699 -Goldjobs 63419 -Goldline 65452 -Goldman 50299 -Goldman's 61940 -Goldmine 60321 -Goldreich 64201 -Golds 60856 -Goldsboro 60670 -Goldschmidt 64201 -Goldsmith 55849 -Goldsmiths 62613 -Goldstein 52635 -Goldstein's 63419 -Goldsteins 64657 -Goldstone 59630 -Goldsworthy 65170 -Goldtone 65170 -Goldwater 58417 -Goldwater's 62613 -Goldwing 63601 -Goldwyn 63245 -Goldy 64423 -Golem 62196 -Golesi 62196 -Goleta 62066 -Golf 36497 -Golf's 63245 -GolfLink 63077 -Golfer 59630 -Golfer's 62469 -Golfers 58313 -Golfing 55766 -Golfsmith 59491 -Golgi 54341 -Goliath 48300 -Goliath's 56935 -Golightly 64201 -Golly 62469 -Golmaal 60078 -Golson 65452 -Golub 63792 -Golungo 62469 -Gomadic 62196 -Gomer 65170 -Gomes 57831 -Gomez 49847 -Gomorrah 62066 -Gon 62196 -Gonadotropin 64657 -Goncalves 64657 -Gonder 63419 -Gondola 63077 -Gondry 65452 -Gone 46245 -Gong 54207 -Gongs 65170 -Goninon 59227 -Gonna 50630 -Gonorrhea 65170 -Gonsalves 62613 -Gonville 63991 -Gonz 65452 -Gonzaga 56485 -Gonzales 53256 -Gonzalez 51034 -Gonzalo 59424 -Gonzo 55423 -González 58113 -Gonçalves 62331 -Goo 53646 -GooDoff 65170 -Gooch 59923 -Goochland 60856 -Good 33183 -GoodCleanTech 60157 -GoodTech 59923 -Goodale 64201 -Goodall 59357 -Goodby 65452 -Goodbye 50394 -Goodbyes 63601 -Goodchild 64657 -Goode 57399 -Goodell 60952 -Gooden 62613 -Goodfellas 62762 -Goodfellow 61940 -Goodhue 62613 -Goodie 59702 -Goodies 53630 -Goodin 65452 -Gooding 61472 -Goodison 62331 -Goodland 64905 -Goodlett 64423 -Goodlettsville 65452 -Goodman 52256 -Goodman's 63792 -Goodmans 62196 -Goodness 56687 -Goodnight 57318 -Goodreads 61256 -Goodrem 60492 -Goodrich 55793 -Goodridge 61699 -Goods 42532 -Goodshoot 60000 -Goodson 63245 -Goodspeed 60000 -Goodwill 54643 -Goodwin 53454 -Goodwin's 65452 -Goodwins 62917 -Goodwood 58262 -Goodwrench 63245 -Goodwyn 61699 -Goody 57122 -Goodyear 54133 -Gooey 58919 -Goof 62469 -Goofs 62469 -Goofy 59164 -GoogLe 63991 -Google 32029 -Google's 50006 -GoogleBot 65170 -Googlebot 60405 -Googled 63245 -Googleholic 64905 -Googles 61818 -Googling 56050 -Goole 62331 -Goolsby 65452 -Goolwa 63245 -Goomalling 62469 -Goombella 65452 -Goon 60000 -Goondiwindi 65452 -Gooner 63601 -Goong 65170 -Goonies 63601 -Goons 64657 -Goorin 62762 -Goose 51680 -Goose's 65170 -Gooseberry 63077 -Goosebumps 63601 -Goosen 61940 -Gooseneck 58470 -Goossens 64657 -Gopal 57696 -Gopher 55657 -Gophers 58470 -Gopi 64657 -Gopika 63245 -Gor 61051 -Gora 61051 -Gorakhpur 63419 -Goran 58212 -Gorath 65452 -Gorbachev 57970 -Gorbachev's 63601 -Gord 60157 -Gorda 61051 -Gordie 65170 -Gordo 61818 -Gordon 43682 -Gordon's 57653 -Gordonii 62917 -Gordons 63419 -Gordy 62613 -Gore 49541 -Gore's 58979 -Gorecki 64657 -Gorefiend 60492 -Gorell 61699 -Goren 62917 -Goreng 64423 -Gorey 61818 -Gorge 54041 -Gorgeous 50492 -Gorges 60000 -Gorgon 63991 -Gorgonnash 60762 -Gorgonzola 63792 -Gorgoroth 63792 -Gorham 58919 -Gori 60492 -Gorilla 51899 -GorillaSushi 65452 -Gorillagram 63991 -Gorillas 60238 -Gorillaz 57482 -Goring 64423 -Gorkha 62917 -Gorman 56485 -Gormley 61256 -Gorn 64657 -Goro 65452 -Gorontalo 64657 -Gorski 64423 -Gorteria 63792 -Gorton 63601 -Gory 64657 -Gosche 65452 -Gosfield 61472 -Gosford 57831 -Gosforth 63792 -Gosh 61699 -Goshen 56110 -Gosling 58470 -Gospel 47641 -Gospels 59491 -Gosport 58262 -Goss 55657 -Gossage 65452 -Gossamer 62917 -Gossard 64905 -Gosselin 61584 -Gossett 62762 -Gossip 44002 -Gossips 59164 -Gossypium 60492 -Goswami 61699 -Got 41235 -GotFrag 61818 -Gotcha 59560 -Goth 54226 -Gotham 53662 -Gothamist 57876 -Gothenburg 58365 -Gothia 64905 -Gothic 49979 -Goths 64905 -Gotlieb 63245 -Goto 49854 -GotoBottom 61940 -GotoChild 64657 -GotoEntry 64423 -GotoField 62066 -GotoFirst 64423 -GotoFirstDocument 63991 -GotoLast 63991 -GotoLastDocument 63991 -GotoNextCategory 63792 -GotoNextField 64905 -GotoNextSibling 63991 -GotoParent 63601 -GotoPos 63245 -GotoPrevCategory 63245 -GotoPrevField 64905 -GotoPrevSibling 63245 -GotoTop 61818 -Gotoh 61362 -Gotoku 64905 -Gotshal 62469 -Gott 61152 -Gotta 50185 -GottaDeal 65170 -Gotten 64657 -Gottfried 59923 -Gotti 61051 -Gottlieb 56935 -Gottliebsen 64423 -Gottschalk 65452 -Gottwald 65452 -Gotz 65170 -Goud 65452 -Gouda 62469 -Gouden 61940 -Gouger 64905 -Gough 57238 -Gouin 65170 -Goulart 62469 -Goulburn 58113 -Gould 53346 -Gould's 65452 -Goulet 61362 -Gourd 63991 -Gourde 63792 -Gourds 64201 -Gourmet 43373 -Gout 59560 -Gouvernement 63792 -Gov 54005 -Gov't 51630 -GovHK 64423 -GovTrack 65170 -Govaerts 63792 -Govan 65170 -Gove 61818 -Govemors 64657 -Goverment 60000 -Govern 64201 -Governance 45855 -Governed 63792 -Governing 51942 -Government 36138 -Government's 50522 -Governmental 53109 -Governments 51131 -Governor 44565 -Governor's 50807 -Governors 50983 -Govinda 60492 -Govino 60580 -Govt 52584 -Gow 62613 -Gowan 65170 -Gowanus 61152 -Gower 58577 -Gown 55631 -Gowns 54459 -Goya 59227 -Goyal 62613 -Goyder 64657 -Goydos 65170 -Gozo 61051 -Gp 59292 -Gps 56618 -GpsGate 64657 -Gq 65170 -Gr 56050 -Gra 65170 -Graaf 58017 -Graaff 63991 -Graal 64657 -Grab 48964 -Grabber 56080 -Grabbing 62613 -Grabbit 63245 -Grabeel 65170 -Graber 62196 -Grable 62762 -Grabowski 65170 -Grabs 58860 -Grace 45594 -Grace's 63245 -Graceful 58577 -Gracehill 64905 -Graceland 61472 -Gracenote 65170 -Graces 61472 -Graceville 64905 -Gracia 59164 -Gracias 57524 -Gracie 55274 -Graciela 63419 -Gracilaria 62469 -Gracious 60856 -Graco 56862 -Graczyk 65452 -Grad 51650 -Grade 40864 -Gradebook 64905 -Graded 57653 -Grader 62066 -Graders 62066 -Grades 49440 -Gradient 55348 -Gradients 63077 -Gradina 65452 -Grading 52029 -Gradius 62196 -Grado 60238 -Grads 59848 -Gradual 63991 -Gradually 59424 -Graduate 42213 -Graduated 57970 -Graduates 52597 -Graduating 61584 -Graduation 48796 -Graduations 63245 -Grady 54685 -Graefes 65170 -Graeme 53630 -Graf 55821 -Graff 59491 -Graffiti 50654 -Grafh 63601 -Grafica 61584 -Grafik 64657 -Grafix 60952 -Graft 56972 -Grafted 61362 -Grafting 59848 -Grafton 55154 -Grafts 60952 -Graham 45228 -Graham's 59774 -GrahamSkan 65170 -Grahame 60238 -Grahams 64905 -Grail 59292 -Grain 49388 -GrainGenes 64905 -Grainger 58313 -Grainne 64905 -Grains 54857 -Grainy 62762 -Gram 53729 -Grama 64905 -Grambling 61818 -Grameen 61818 -Gramercy 56756 -Gramineae 63991 -Gramm 62469 -Gramma 64905 -Grammaire 62196 -Grammar 49764 -Grammarphobia 65170 -Grammars 64423 -Grammatical 64423 -Grammatically 62196 -Grammer 60078 -Grammophon 63991 -Grammy 52559 -Grammys 56862 -Gramophone 60492 -Grampa 65452 -Grampian 57318 -Grams 58017 -Gran 49739 -GranTurismo 64905 -Granada 52435 -Granade 63419 -Granado 60078 -Granary 63991 -Granbury 63245 -Granby 53109 -Grand 38339 -Grandad 63991 -Grandchildren 62331 -Granddaughter 65170 -Grande 47622 -Grandes 60580 -Grandeur 62613 -Grandfather 57009 -Grandfather's 64423 -Grandhotel 63245 -Grandin 59424 -Grandjean 65452 -Grandma 53746 -Grandma's 57399 -Grandmaster 55526 -Grandmasue 65170 -Grandmother 51670 -Grandmother's 62762 -Grandmothers 64423 -Grandoe 57278 -Grandpa 57009 -Grandpa's 60492 -Grandparent 60856 -Grandparent's 65452 -Grandparenting 65452 -Grandparents 51996 -Grands 61362 -Grandson 61256 -Grandstand 58313 -Grandstream 65170 -Grandview 55877 -Grange 51640 -Granger 55299 -Granholm 61818 -Granite 49523 -Grannies 64657 -Granny 54207 -Granny's 64423 -Granodiorite 65452 -Granola 60762 -Granpaw 61472 -Grant 42243 -Grant's 59292 -GrantAccess 65452 -GrantWhite 64423 -Granted 54969 -Grantee 58262 -Grantees 65452 -Granth 63077 -Grantham 57009 -Granting 55711 -Grantley 63245 -Grantmaking 63419 -Grantor 62196 -Grantor's 65170 -Grants 44844 -Granular 55348 -Granulated 62613 -Granulation 63991 -Granule 62613 -Granules 60405 -Granulocyte 63245 -Granville 55373 -Grape 51229 -Grapefruit 57084 -Grapes 56972 -Grapeseed 64423 -Grapevine 55014 -Graph 49464 -GraphPad 64657 -Grapher 63991 -Graphic 43353 -Graphical 53454 -Graphically 65170 -Graphics 40629 -Graphing 59848 -Graphisoft 63077 -Graphite 53517 -Graphix 58919 -Graphs 53286 -Grappa 65452 -Grapple 64201 -Grappler 65452 -Grappling 60762 -Gras 54188 -Grasmere 62331 -Grasp 60856 -Grasping 64905 -Grass 48239 -Grasse 63419 -Grasses 59292 -Grasshopper 57785 -Grasshoppers 64423 -Grassi 62762 -Grassland 58979 -Grasslands 63077 -Grasso 61584 -Grassroots 55373 -Grassy 60078 -Grate 62613 -Grated 62066 -Grateful 53010 -Grater 63792 -Grates 63419 -Gratin 62196 -Grating 60321 -Gratings 63601 -Gratiot 61152 -Gratis 55631 -Gratitude 59491 -Graton 65452 -Grattan 63601 -Gratuit 63245 -Gratuite 63991 -Gratuitous 64905 -Gratuits 64657 -Gratz 63077 -Gravatar 55299 -Gravatt 60238 -Grave 52423 -Grave's 64657 -Gravel 53847 -Gravely 63245 -Gravenhurst 65452 -Graves 52152 -Gravesend 60321 -Gravesham 64905 -Graveside 64905 -Graveyard 53917 -Gravion 64423 -Gravis 59101 -Gravitation 60238 -Gravitational 61699 -Gravitron 65170 -Gravity 50545 -Gravure 63792 -Gravy 55202 -Gray 45078 -Gray's 57831 -Graybar 64657 -Graydon 62469 -Grayhill 64905 -Grayling 62331 -Grays 56293 -Grayscale 65170 -Grayslake 59424 -Grayson 55202 -Graystone 65170 -Graz 60238 -Grazia 61818 -Graziano 62762 -Grazie 63419 -Grazing 57785 -Grazr 65452 -Grazza 63991 -Grazza's 64905 -Grbac 64423 -Grd 62066 -Gre 61940 -Grease 52256 -Greasemonkey 63601 -Greasy 60670 -Great 35758 -GreatSchools 52597 -Greater 43206 -Greatest 45919 -Greathouse 64423 -Greatly 61940 -Greatness 59491 -Greats 56170 -Greatschools 64657 -Greaves 57653 -Greazygeo 64201 -Grebe 63419 -Grebo 63245 -Grech 65452 -Grecian 59630 -Greco 57440 -Greddy 62331 -Greece 42434 -Greece's 62066 -Greed 57278 -Greedy 57440 -Greek 42522 -Greeks 54419 -Greektown 61940 -Greeley 56756 -Greely 64201 -Green 35986 -Green's 53712 -GreenCine 63077 -GreenJackets 61818 -GreenPepper 64905 -GreenSmith 65170 -GreenTech 60078 -Greenacre 63419 -Greenacres 62196 -Greenapple 65452 -Greenback 61362 -Greenbank 64657 -Greenbaum 64657 -Greenbelt 58417 -Greenberg 54096 -Greenblatt 64657 -Greenbrae 65452 -Greenbriar 63077 -Greenbrier 57970 -Greenbush 61256 -Greencastle 61051 -Greencycles 63601 -Greendale 63601 -Greene 49207 -Greene's 59702 -Greener 55906 -Greenery 65452 -Greenest 64905 -Greenfield 52411 -Greenfields 65452 -Greenfingered 63077 -Greenford 63245 -Greengrass 63601 -Greengrocers 64657 -Greenhalgh 60157 -Greenhill 58577 -Greenhills 62762 -Greenhornes 64657 -Greenhouse 51229 -Greenhouses 56452 -Greening 55526 -Greenland 47034 -Greenlandic 64657 -Greenleaf 59560 -Greenlee 62196 -Greenlight 61362 -Greenock 64657 -Greenough 62066 -Greenpeace 55684 -Greenpoint 57831 -Greenport 63419 -Greens 51590 -Greensand 65170 -Greensboro 50710 -Greensburg 57923 -Greenslade 62613 -Greensleeves 65452 -Greenslopes 65170 -Greenspan 48046 -Greenspan's 61818 -Greenstein 65452 -Greenstone 58919 -Greentree 63792 -Greenup 65452 -Greenview 62469 -Greenville 49458 -Greenwald 55526 -Greenway 55992 -Greenways 60952 -Greenwell 63077 -Greenwich 49108 -Greenwood 50431 -Greer 55299 -Greet 56972 -Greeters 63991 -Greeting 48345 -Greetings 49268 -Greets 62066 -Greetz 64201 -Greg 43805 -Greg's 59292 -Gregg 52661 -Greggs 64905 -Gregoire 60492 -Gregor 55849 -Gregorian 56518 -Gregorio 59923 -Gregory 46760 -Gregory's 63601 -Gregson 64657 -Greif 64657 -Greifeld 64905 -Greig 61699 -Greiner 59630 -Greinke 61256 -Greist 64657 -Gremlin 64201 -Gremlins 60670 -Grenache 61818 -Grenada 46622 -Grenade 58802 -Grenades 63601 -Grenadier 60405 -Grenadines 48314 -Grendel 63077 -Grenfell 63419 -Grenier 60000 -Grenoble 59424 -Grenson 61699 -Grenville 61152 -Gres 64657 -Gresham 56551 -Greta 55373 -Gretchen 54399 -Gretel 61699 -Gretna 57278 -Gretsch 60078 -Gretta 65452 -Gretzky 58979 -Greve 65170 -Grew 59164 -Grewal 60670 -Grey 45098 -Grey's 51511 -Greyfriars 64657 -Greyhawk 64201 -Greyhound 52982 -Greyhounds 58417 -Greylock 61584 -Greymane 60580 -Greymouth 61940 -Greys 57653 -Greystone 61699 -Greythorn 65170 -Greywater 64905 -Gribble 64423 -Grice 63991 -Grid 44878 -GridICE 61362 -GridView 63601 -Griddle 59357 -Griddles 63991 -Grider 65170 -Gridiron 55274 -Gridley 65452 -Gridlock 61940 -Grids 58688 -Gridskipper 62762 -Grief 53952 -Grieg 62917 -Grier 58919 -Grierson 65452 -Gries 62469 -Griese 63077 -Grievance 58745 -Grievances 60078 -Grievant 60492 -Grieve 62331 -Grieving 54151 -Grievous 63601 -Griff 64201 -Griffey 59039 -Griffin 48726 -Griffin's 62066 -Griffins 63991 -Griffith 50607 -Griffith's 63991 -Griffiths 54749 -Griffon 57122 -Griggs 59702 -Grigio 60580 -Grignard 63419 -Grigsby 65170 -Grihalva 61584 -Grihalva's 63245 -Griineisen 65452 -Grill 45106 -Grille 52085 -Grilled 52152 -Grilles 58262 -Grilling 56080 -Grillo 56652 -Grills 52712 -Grillz 63601 -Grim 55631 -Grimaldi 64423 -Grime 59164 -Grimes 56231 -Grimley 65452 -Grimm 56485 -Grimm's 63077 -Grimmett 64423 -Grimmjow 63601 -Grimoire 63601 -Grimsby 57199 -Grimshaw 62331 -Grimwood 63991 -Grin 60762 -Grinberg 63991 -Grinch 60952 -Grind 53865 -GrindTV 60952 -Grindavik 62613 -Grindco 64905 -Grindcore 61256 -Grindelwald 65170 -Grinder 54041 -Grinders 56687 -Grindhouse 62469 -Grinding 54399 -Grinds 62613 -Gringo 61051 -Grinnell 59560 -Grinning 64905 -Grinstead 58365 -Grinstein 63601 -Grip 50584 -Gripe 62469 -Gripes 64905 -Gripper 63601 -Gripping 61940 -Grips 53882 -Gris 59702 -Grisham 60000 -Grisly 60492 -Grissom 58919 -Grist 59774 -Gristmill 64201 -Griswold 61472 -Grit 59164 -Grits 60762 -Gritty 61699 -Grizzlies 54857 -Grizzly 54439 -Gro 63077 -Groaned 57609 -Groban 59101 -Grocer 61818 -Groceries 55604 -Grocers 58688 -Grocery 44169 -Groen 61472 -Groeneveld 63077 -Groep 63991 -Groesbeck 64423 -Groff 64201 -Grofit 60762 -Grog 64423 -Grogan 62331 -Grohe 58313 -Grohl 62469 -Grohtherm 61940 -Groin 63991 -Grokster 63601 -Grolier 64423 -Groller's 64423 -Gromer 64905 -Gromicko 64905 -Gromit 65452 -Grommet 64657 -Grommets 61940 -Groningen 58417 -Groom 54078 -Groom's 63077 -Groomer 63245 -Groomers 63077 -Grooming 49645 -Grooms 61152 -Groomsmen 60952 -Groot 60492 -Groots 64905 -Groove 50734 -Grooved 65170 -Groover 64657 -Groovers 64423 -Grooves 57318 -Groovy 53470 -Groping 65170 -Gros 59923 -Grosbeak 64423 -Grose 64905 -Gross 45765 -Grosse 55821 -Grossi 65170 -Grossman 54581 -Grossman's 64657 -Grossmith 63077 -Grossmont 64905 -Grosso 61256 -Grosvenor 56972 -Grote 60580 -Grotesque 64905 -Groth 63601 -Groton 57160 -Grotto 60580 -Groucho 60321 -Grouchy 63601 -Ground 43674 -Groundbreaking 59923 -Grounded 59702 -Groundhog 61584 -Grounding 55711 -Groundlings 63792 -Groundnut 63991 -Grounds 50630 -Groundskeeper 65452 -Groundspeak 58632 -Groundswell 62762 -Groundwater 53153 -Groundwork 61940 -Groundworks 63601 -Group 33931 -Group's 50966 -GroupAdmin 63792 -GroupServer 64657 -GroupWise 63601 -Groupe 56585 -Grouped 61699 -Groupee 60157 -Grouper 61699 -Groupie 57318 -Grouping 58523 -Groups 36755 -Groupsets 62331 -Groupsex 63991 -Groupware 57696 -Groupwise 64423 -Grouse 60238 -Grout 60238 -Grouting 60157 -Grove 44366 -Groveland 62613 -Grover 54992 -Groves 56420 -Groveton 64201 -Grow 47293 -Grower 61152 -Growers 56827 -Growing 45924 -Growl 65452 -Growler 63245 -Grown 53917 -GrownUps 59630 -Grows 53377 -Growth 42515 -Große 64201 -Grp 62469 -Grrl 62917 -Grub 55877 -Grubb 58802 -Grubbs 62331 -Gruber 58688 -Grud 65170 -Grudge 58979 -Gruen 63245 -Gruesome 63991 -Grumman 54059 -Grumpy 58262 -Grundfos 64905 -Grundig 61256 -Grundy 57876 -Gruner 64201 -Grunge 56050 -Grunt 60238 -Grunts 64423 -Grunwald 63077 -Grup 59227 -Grupo 52712 -Grupos 63245 -Gruppe 65170 -Gruppen 63792 -Gruppo 61818 -Gruso 64423 -Grutor 65170 -Gruul 65170 -Gruul's 60492 -Gry 64423 -Gryffindor 59848 -Grylls 63077 -Gryphon 59630 -Grzegorz 63792 -Grégoire 63792 -Grêmio 60321 -Grüne 63419 -Grüße 62762 -Gs 61256 -Gsm 62196 -Gstaad 63245 -Gswiss 63792 -Gt 56518 -Gta 61699 -Gti 61818 -Gtr 63245 -Gtx 61584 -Gu 57199 -Gua 64657 -Guacamole 63245 -Guadalajara 56899 -Guadalcanal 64905 -Guadalupe 56140 -Guadeloupe 47349 -Guage 64201 -Guam 45746 -Guan 57831 -Guana 65170 -Guanacaste 64201 -Guanajuato 61818 -Guang 58688 -Guangdong 54380 -Guangsheng 64905 -Guangxi 59774 -Guangzhou 53847 -Guanine 63991 -Guano 61362 -Guantanamo 54096 -Guantnamo 59292 -Guantánamo 59630 -Guanzon 63991 -Guapo 64905 -Guar 65452 -Guarani 57785 -Guarantee 44569 -Guaranteed 47489 -Guarantees 53695 -Guarantor 64201 -Guaranty 58860 -Guard 45031 -Guard's 63601 -Guardar 63419 -Guarded 62066 -Guardia 52327 -Guardian 41395 -Guardian's 61152 -GuardianEcostore 64423 -GuardianFilms 62331 -Guardians 57741 -Guardianship 58577 -Guardianships 65170 -Guarding 61362 -Guardiola 62469 -Guardrail 63419 -Guards 51953 -Guardsman 65452 -Guardsmen 62331 -Guarentee 65452 -Guarneri 63245 -Guat 60952 -Guatemala 45243 -Guatemalan 60000 -Guava 61818 -Guay 64657 -Guayaquil 57653 -Guazzelli 63077 -Guballa 65452 -Gubernatorial 62196 -Gucci 51425 -Gud 63245 -Gude 62613 -Gudivada 62917 -Gudrun 63792 -Guedes 64657 -Guelph 52725 -Guenter 65170 -Guenther 60321 -Guerilla 58470 -Guerin 61584 -Guerlain 59848 -Guernica 65452 -Guernicus 65452 -Guernsey 51284 -Guerra 54643 -Guerre 63991 -Guerrero 53729 -Guerrilla 56899 -Guess 48638 -Guessing 61362 -Guest 38849 -Guest's 63077 -GuestBook 63419 -Guestbook 47935 -Guestbooks 61472 -Guesthouse 56862 -Guesthouses 58212 -Guestlist 60157 -Guestlists 62066 -Guestrin 63601 -Guestrooms 63245 -Guests 46457 -Guetta 58919 -Guevara 59630 -Gufs 65170 -Guggenheim 56721 -Guggenheimer 65452 -Gugino 64657 -Guglielmi 63991 -Guglielmo 61584 -Guha 63991 -Gui 60762 -Guia 60000 -Guiana 47907 -Guida 61818 -Guida's 63245 -Guidance 47307 -Guidant 59923 -Guide 34162 -Guide's 61818 -GuideYellow 63077 -Guidebook 55821 -Guidebooks 61051 -Guidecraft 64423 -Guided 48629 -Guideline 53917 -Guidelines 37812 -Guides 37777 -GuidesVacation 61152 -Guiding 53038 -Guidlines 65170 -Guido 54924 -Guidry 62196 -Guild 45999 -GuildWiki 64201 -Guilder 61256 -Guilderland 64201 -Guildford 51122 -Guildhall 59560 -Guilds 52496 -Guile 61699 -Guilford 54380 -Guilin 63792 -Guillaume 54399 -Guillem 64905 -Guillemot 62331 -Guillen 59227 -Guillermo 54601 -Guillotine 62762 -Guillow 65452 -Guilmartin 63601 -Guilt 57785 -Guiltiest 63991 -Guilty 51888 -Guim 64905 -Guimaraes 65452 -Guin 63601 -Guinea 41985 -Guinean 64657 -Guiness 62469 -Guinevere 63991 -Guinness 52130 -Guinot 65452 -Guirao 65452 -Guiry 65170 -Guitar 39884 -Guitare 65170 -Guitarist 58065 -Guitarists 61699 -Guitarra 60157 -Guitars 49097 -Guiyang 65170 -Guizhou 60238 -Gujarat 52968 -Gujarati 55202 -Gul 59164 -Gul'dan 60952 -Gulati 64423 -Gulbarga 60762 -Gulbis 63792 -Gulch 55631 -Gulf 44514 -Gulfport 60492 -Gulfstream 61152 -Gulia 65452 -Gull 56827 -Gullah 61818 -Gullit 62762 -Gulliver 62917 -Gulliver's 65170 -Gulls 63601 -Gullwing 65170 -Gully 56827 -Gulu 65170 -Gum 50906 -Gumatj 65170 -Gumball 63792 -Gumbel 63792 -Gumbo 62331 -Gumby 59227 -Gummi 61051 -Gummy 57653 -Gump 58113 -Gumpert 63991 -Gums 60580 -Gumtree 47911 -Gumus 61472 -Gun 45070 -GunZ 63991 -Guna 65452 -Gunbarrel 64657 -Gunbound 61256 -Gunbuster 64657 -Gund 59848 -Gundam 52175 -Gundersen 63792 -Gunderson 61152 -Gunes 62196 -Gunfight 60321 -Gunfire 61584 -Gung 63077 -Gungrave 64657 -Gunilla 63245 -Gunma 63601 -Gunman 59357 -Gunmen 60856 -Gunmetal 61362 -Gunn 53695 -Gunn's 63245 -Gunnar 57318 -Gunnedah 65452 -Gunner 57876 -Gunner's 54560 -Gunners 60000 -Gunnery 54399 -Gunning 62066 -Gunnison 56756 -Gunns 63601 -Gunny 60952 -Gunpowder 61472 -Guns 45037 -GunsAmerica 57785 -Gunship 63792 -Gunslinger 59560 -Gunsmithing 61051 -Gunsmiths 60000 -Gunsmoke 65452 -Gunso 64905 -Gunter 57653 -Gunther 57084 -Gunthorp 62331 -Guntime 63245 -Guntur 64201 -Gunung 62331 -Gunz 59491 -Guo 55631 -GupShup 63245 -Gupta 52559 -Gur 61051 -Gurdwara 63991 -Gurgaon 55711 -Guristas 64423 -Gurkha 60157 -Gurkhas 61362 -Gurl 61584 -Gurley 63245 -Gurnee 58802 -Gurney 60856 -Gurpreet 64201 -Gurren 60238 -Guru 47044 -Guru's 60492 -Gurubashi 60670 -Gurudwara 65452 -Gurung 63991 -Gurus 55821 -Guruvayoor 63792 -Gurwen 65452 -Gury 62762 -Gus 53970 -Gusev 65452 -Gusset 61256 -Gust 60762 -Gustaf 63792 -Gustafson 60321 -Gustafsson 62613 -Gustav 50623 -Gustav's 65452 -Gustave 59560 -Gustavia 63077 -Gustavo 55178 -Gustavsson 65170 -Gustavus 61256 -Guster 64201 -Gustin 65452 -Gusto 59101 -Gusts 65170 -Gustto 65170 -Gut 54341 -Guten 63601 -Gutenberg 55348 -Guthrie 54302 -Guthrie's 65452 -Gutierrez 54114 -Gutmann 65170 -Guts 60321 -Gutsy 55202 -Gutta 64423 -Guttenberg 64905 -Gutter 54302 -Guttering 64201 -Gutters 55154 -Guttman 64423 -Guus 63792 -Guwahati 60492 -Guy 43139 -Guy's 54302 -Guyana 46384 -Guyanese 62469 -Guyer 64657 -Guyot 63419 -Guys 47507 -Guyton 65170 -Guyver 61818 -Guzen 63601 -Guzman 58577 -Guzzanti 63601 -Guzzi 61362 -Guzzler 63245 -Guárdalo 63991 -Guía 65170 -Guías 63991 -Gwalior 62469 -Gwangju 64657 -Gwar 63077 -Gwasanaethau 62613 -Gwaun 64423 -Gweini 64905 -Gwen 50623 -Gwendolyn 59227 -Gwent 57046 -Gwilym 64657 -Gwinnett 56324 -Gwybodaeth 64657 -Gwydir 65452 -Gwyn 61152 -Gwynedd 56518 -Gwyneth 54992 -Gwynn 62331 -Gwynne 62469 -Gx 62917 -Gy 57876 -GyPSii 63077 -Gyan 62196 -Gye 64657 -Gyllenhaal 55250 -Gym 47694 -Gymboree 60856 -Gymnasium 57084 -Gymnasiums 65170 -Gymnast 63077 -Gymnastic 61818 -Gymnastics 50799 -Gymnodinium 65452 -Gympie 63077 -Gymraeg 62917 -Gyms 53581 -Gyn 60405 -Gynaecol 56551 -Gynaecological 64657 -Gynaecology 58919 -Gynakol 64657 -Gynecol 52164 -Gynecologic 60000 -Gynecological 58523 -Gynecologist 63077 -Gynecologists 59164 -Gynecology 51920 -Gynecomastia 64423 -Gyo 62469 -Gypsies 58802 -Gypsum 59292 -Gypsy 51220 -Gyr 61472 -Gyre 60856 -Gyro 60078 -Gyros 60238 -Gyroscope 63601 -Gyula 64657 -György 63792 -Gz 64905 -GzP 60000 -Gzip'd 59357 -Gzzz 64657 -GÜNDES 62331 -Gàidhlig 64905 -Gábor 61940 -Gästebuch 65170 -Gävle 65452 -Gå 63601 -Gène 62196 -Génie 65452 -Général 64905 -Génétique 64657 -Gérard 59630 -Gómez 60762 -Górecki 64423 -Gödel 62613 -Göm 62917 -Göran 62196 -Göreme 65452 -Göteborg 58745 -Göttingen 63792 -Göttinger 61051 -Günter 60856 -Günther 63792 -Gürkan 64905 -Güven 65452 -H 35637 -HA 46696 -HAART 60762 -HAB 64423 -HABA 63991 -HABIT 61472 -HABITAT 63601 -HABITS 64657 -HAC 65452 -HACCP 57923 -HACER 64905 -HACIENDA 59560 -HACK 60492 -HACKER 46218 -HACKNEY 64423 -HAD 52699 -HADLEY 64423 -HAF 64905 -HAGUE 64905 -HAHA 59227 -HAHAHA 62066 -HAHAHAHA 62066 -HAI 58860 -HAIER 64423 -HAIL 63601 -HAINES 62469 -HAIR 52584 -HAITI 60952 -HAKATA 61256 -HAL 56518 -HALE 62762 -HALF 53796 -HALIFAX 63792 -HALL 52074 -HALLE 65170 -HALLMARK 63245 -HALLOWEEN 54341 -HALLS 64423 -HALO 58113 -HAM 59227 -HAMA 61256 -HAMAX 64657 -HAMBURG 64423 -HAMILTON 57084 -HAMMER 58065 -HAMMOND 62762 -HAMPSHIRE 54749 -HAMPSTEAD 61584 -HAMPTON 58262 -HAN 63419 -HANCOCK 61472 -HAND 52845 -HANDBAG 62066 -HANDBAGS 50949 -HANDBOOK 61940 -HANDED 65170 -HANDHELD 60670 -HANDICAP 65170 -HANDLE 56080 -HANDLING 56420 -HANDMADE 61256 -HANDS 56618 -HANDY 62613 -HANG 60238 -HANGER 62917 -HANGERS 64423 -HANGING 62196 -HANK 65452 -HANNA 65452 -HANNAH 61152 -HANOVER 62331 -HANS 61584 -HANSEN 61940 -HANSON 63077 -HAP 58262 -HAPPEN 62469 -HAPPENED 62469 -HAPPENING 61472 -HAPPENS 61584 -HAPPINESS 65452 -HAPPY 49745 -HAPTER 62469 -HAPs 61699 -HAR 59774 -HARBOR 58860 -HARBOUR 59357 -HARBOURS 64201 -HARD 52164 -HARDCORE 57482 -HARDER 63419 -HARDING 63991 -HARDWARE 54207 -HARDWOOD 64905 -HARDY 60670 -HARINGEY 65170 -HARLEM 63991 -HARLEY 59923 -HARLOW 64657 -HARM 63419 -HARMFUL 62613 -HARMONICA 63419 -HARMONISATION 62469 -HARMONY 62331 -HARNESS 62469 -HAROLD 58688 -HARON 62469 -HARP 60856 -HARPER 61699 -HARPSICHORD 65170 -HARRIET 64201 -HARRINGTON 62469 -HARRIS 55552 -HARRISBURG 61256 -HARRISON 58313 -HARRODS 64905 -HARRY 56110 -HART 60157 -HARTFORD 61818 -HARTING 63419 -HARVARD 60580 -HARVEST 60078 -HARVEY 60157 -HARYANA 63792 -HAS 47807 -HASBRO 65452 -HASH 64657 -HASHIMOTO 65170 -HASP 58979 -HASTAC 61818 -HASTINGS 60952 -HAT 54813 -HATCH 62469 -HATE 54207 -HATED 64423 -HATER 65452 -HATES 63601 -HATFIELD 62917 -HATS 59101 -HAUNTED 63077 -HAUTE 62469 -HAV 59292 -HAVE 45178 -HAVEN 61362 -HAVING 54078 -HAW 65452 -HAWAII 56021 -HAWAIIAN 61152 -HAWK 58417 -HAWKINS 61699 -HAWKS 65452 -HAWTHORNE 64423 -HAWX 63601 -HAY 61584 -HAYASHI 64657 -HAYDEN 62196 -HAYES 61940 -HAYNES 65452 -HAYS 60492 -HAYWARD 63991 -HAYWOOD 64657 -HAZ 64905 -HAZARD 59774 -HAZARDOUS 57524 -HAZARDS 62762 -HAZE 65170 -HAZEL 61818 -HAZMAT 62917 -HB 48711 -HBA 59923 -HBAs 62196 -HBC 63077 -HBCU 64657 -HBD 65170 -HBF 63245 -HBK 64905 -HBL 63792 -HBM 65452 -HBO 52130 -HBO's 60856 -HBOS 57876 -HBP 58262 -HBR 63601 -HBS 58212 -HBSS 62469 -HBT 59164 -HBTs 62762 -HBV 55398 -HBeAg 64201 -HBsAg 58113 -HC 48897 -HCA 56518 -HCAs 63601 -HCC 56388 -HCD 59923 -HCF 64657 -HCFA 64423 -HCFC 63792 -HCFCs 63077 -HCG 58802 -HCGHcg 65170 -HCH 61051 -HCHO 63792 -HCI 57122 -HCL 54096 -HCM 60078 -HCMC 61152 -HCMV 63792 -HCN 62613 -HCO 58212 -HCP 62066 -HCPC 65452 -HCR 60238 -HCS 60952 -HCT 65170 -HCTF 62917 -HCTMs 64905 -HCV 51406 -HCW 63991 -HCl 53095 -HD 40465 -HD's 64423 -HDA 65170 -HDACi 64657 -HDB 54622 -HDC 57696 -HDCP 57785 -HDD 48609 -HDDVD 64201 -HDDs 64905 -HDF 64423 -HDFC 57653 -HDHD 62066 -HDI 60405 -HDL 54245 -HDLC 64201 -HDLll 65170 -HDMI 48204 -HDNet 63419 -HDP 65170 -HDPE 57876 -HDR 53346 -HDS 59491 -HDT 63991 -HDTV 45389 -HDTV's 61051 -HDTVs 55448 -HDV 56356 -HDX 62613 -HDi 62066 -HE 46969 -HE'S 61152 -HEA 58632 -HEAD 50178 -HEADER 62613 -HEADLIGHT 60762 -HEADLINE 63991 -HEADLINES 50122 -HEADNOTE 63419 -HEADPHONES 63792 -HEADQUARTERS 59630 -HEADS 58688 -HEADSET 62066 -HEADSETS 65170 -HEAL 62066 -HEALING 60157 -HEALTH 45828 -HEALTHCARE 56231 -HEALTHJOBSUK 54813 -HEALTHY 56827 -HEALTHZONE 64201 -HEALTHeCAREERS 64905 -HEAR 56585 -HEARD 57440 -HEARING 53454 -HEARINGS 60238 -HEARS 65452 -HEART 51974 -HEARTS 59357 -HEAT 53581 -HEATED 60670 -HEATER 59164 -HEATERS 64201 -HEATH 59227 -HEATHER 59923 -HEATHROW 64201 -HEATING 57440 -HEATSINK 62917 -HEAVEN 59357 -HEAVY 54857 -HEB 60238 -HEC 58577 -HEC's 63077 -HECTOR 65452 -HED 64657 -HEE 62469 -HEEL 63245 -HEELS 63245 -HEFCE 62469 -HEFL 64657 -HEHE 65170 -HEI 63419 -HEIDI 63792 -HEIGHT 56652 -HEIGHTS 55684 -HEIKO 62917 -HEIRS 64905 -HEK 60952 -HEKHartmann 64657 -HEL 62066 -HELD 53830 -HELEN 58979 -HELENA 59424 -HELENE 64423 -HELICOPTER 62469 -HELIX 64657 -HELL 55274 -HELLENIC 65170 -HELLIS 62331 -HELLO 56388 -HELLP 62762 -HELMET 58802 -HELMETS 62762 -HELO 64657 -HELOC 62469 -HELP 41518 -HELPDESK 65452 -HELPFUL 60762 -HELPING 59848 -HELPLINE 65170 -HELPS 62066 -HELVETICA 63245 -HEM 65452 -HEMI 64905 -HEMP 58979 -HEMT 61584 -HEN 57923 -HENDERSON 58113 -HENDON 59357 -HENDRIX 64657 -HENLEY 65170 -HENRY 53470 -HEP 55060 -HEPA 56080 -HEPATIC 64423 -HEPES 57440 -HER 51640 -HERA 61051 -HERALD 63245 -HERB 63077 -HERBAL 60492 -HERBERT 59923 -HERBS 61584 -HERCULES 61940 -HERE 44062 -HERE'S 62613 -HEREBY 57009 -HEREC 64657 -HEREFORD 65170 -HEREIN 61940 -HERGESTELLT 63245 -HERITAGE 55793 -HERMAN 62469 -HERMES 62613 -HERMOSA 65452 -HERNANDEZ 61818 -HERO 56827 -HEROES 59848 -HERON 60952 -HERRERA 63245 -HERSHEY 63601 -HERSZENHORN 64657 -HERZEGOVINA 62196 -HES 59923 -HESPERIA 64905 -HESS 63991 -HESSD 65170 -HET 62917 -HEU 63792 -HEV 63077 -HEWITT 65170 -HEWLETT 63077 -HEX 63419 -HEXAGON 62331 -HEXUS 62613 -HEY 53167 -HF 49726 -HFA 60580 -HFBoards 64905 -HFC 60762 -HFCS 65452 -HFCs 63991 -HFEF 64201 -HFIP 64905 -HFN 65170 -HFS 58113 -HFSS 64905 -HFSW 61818 -HFT 61818 -HG 52546 -HGF 63601 -HGH 58065 -HGNC 63419 -HGT 64657 -HGTV 52872 -HGTVFrontDoor 64657 -HGTVPro 57524 -HGV 57160 -HH 49596 -HHH 61940 -HHI 64905 -HHMI 63991 -HHO 63077 -HHP 59774 -HHR 60670 -HHS 56200 -HHSC 63991 -HHT 64905 -HHUA 64423 -HHonors 61051 -HI 45659 -HIA 64423 -HIB 58860 -HIC 61362 -HICKORY 62066 -HICKS 64201 -HICSS 62196 -HID 53470 -HIDA 65452 -HIDDEN 58417 -HIDE 61152 -HIE 64423 -HIFI 59227 -HIGGINS 62613 -HIGH 46418 -HIGHER 55738 -HIGHEST 58577 -HIGHLAND 61152 -HIGHLANDS 63601 -HIGHLIGHT 62331 -HIGHLIGHTS 54419 -HIGHLY 57923 -HIGHS 58919 -HIGHTRAIL 63601 -HIGHWAY 55766 -HIGHWAYS 64657 -HIH 65452 -HII 63792 -HIIT 61818 -HIKING 64657 -HILARY 62196 -HILL 50710 -HILLARY 61940 -HILLS 55373 -HILLSBOROUGH 63991 -HILTON 56200 -HILUX 62331 -HIM 53882 -HIMACHAL 64423 -HIN 62917 -HINARI 60670 -HINDI 59923 -HINDU 60762 -HINGE 61362 -HINT 65170 -HINTS 61584 -HIO 64905 -HIP 53729 -HIPAA 54264 -HIPC 64201 -HIPPA 62613 -HIPS 60670 -HIPs 58688 -HIRE 58262 -HIRING 59702 -HIS 50514 -HISAR 65170 -HISE 61818 -HISPANIC 60157 -HISPANOS 65452 -HIST 63991 -HISTORIC 58632 -HISTORICAL 56551 -HISTORY 47911 -HIT 53899 -HITACHI 58919 -HITB 63601 -HITCH 64657 -HITECH 63991 -HITS 55934 -HIV 44286 -HJ 51069 -HJC 59702 -HJR 63419 -HJT 59292 -HK 49946 -HKD 55992 -HKPRO 65452 -HKS 58313 -HKU 60492 -HKUST 62762 -HL 50220 -HLA 54341 -HLB 65170 -HLC 65170 -HLCM 58745 -HLCP 59292 -HLH 61472 -HLM 62762 -HLP 65452 -HLR 63245 -HLS 58802 -HLSW 62196 -HLTH 65452 -HM 47442 -HMA 64905 -HMAS 61362 -HMB 58365 -HMBC 62917 -HMC 57696 -HMCS 61362 -HMD 64905 -HMDA 64905 -HMDS 63601 -HME 61699 -HMF 63245 -HMG 60157 -HMI 59774 -HML 61051 -HMM 56518 -HMMs 61051 -HMO 54005 -HMOs 59292 -HMP 57876 -HMR 60492 -HMRC 62331 -HMS 53138 -HMSO 63991 -HMT 64657 -HMV 56050 -HMX 64423 -HN 56485 -HND 61051 -HNL 62469 -HNN 65170 -HNO 58113 -HNPCC 61472 -HNS 64201 -HNTB 65452 -HO 51349 -HOA 56080 -HOAX 65452 -HOB 64423 -HOBART 63991 -HOBBIES 62066 -HOBBY 57923 -HOBO 63792 -HOBOKEN 65452 -HOC 62331 -HOCKEY 55060 -HOD 64657 -HOE 65452 -HOF 58417 -HOFFMAN 60238 -HOFer 63245 -HOG 59702 -HOGAN 64657 -HOK 64905 -HOL 63792 -HOLA 62331 -HOLD 55552 -HOLDEN 58162 -HOLDER 57084 -HOLDERS 59101 -HOLDING 57923 -HOLDINGS 57831 -HOLDS 60321 -HOLE 56972 -HOLES 62331 -HOLIDAY 54078 -HOLIDAYCARDS 63245 -HOLIDAYS 56618 -HOLISTIC 65170 -HOLLA 61818 -HOLLAND 57440 -HOLLIS 65452 -HOLLOW 61152 -HOLLOWAY 64201 -HOLLY 58417 -HOLLYWOOD 55711 -HOLMES 61699 -HOLSET 64201 -HOLT 63792 -HOLY 56293 -HOMBRE 63077 -HOME 37837 -HOMELAND 62762 -HOMELESS 64657 -HOMEMADE 62196 -HOMENotebook 61699 -HOMEPAGE 53970 -HOMER 61152 -HOMES 53377 -HOMESTEAD 63245 -HOMME 65452 -HOMO 61699 -HON 54946 -HONCode 61818 -HONDA 51963 -HONDURAS 60321 -HONEST 62917 -HONEY 60321 -HONEYMOON 64201 -HONEYWELL 64423 -HONG 55398 -HONGKONG 64905 -HONOLULU 63991 -HONOR 59774 -HONORABLE 60492 -HONORARY 64657 -HONORS 60405 -HONOUR 63601 -HONcode 53712 -HOOD 57482 -HOODED 64201 -HOODEO 63601 -HOODIES 64905 -HOOK 59702 -HOOKER 64905 -HOON 65452 -HOOP 64905 -HOOPS 63419 -HOOVER 62066 -HOP 55398 -HOPE 51434 -HOPKINS 59560 -HOPPE 63991 -HORIZON 62066 -HORIZONTAL 59164 -HORMONE 61584 -HORN 60000 -HORNE 63991 -HORNY 62196 -HOROSCOPE 62469 -HOROSCOPES 60952 -HOROWHENUA 64905 -HORRIBLE 64423 -HORROR 59424 -HORRORS 64657 -HORSE 54499 -HORSEFLY 64423 -HORSES 60157 -HORTON 61940 -HOS 64657 -HOSE 57923 -HOSP 64201 -HOSPICE 62196 -HOSPITAL 52559 -HOSPITALITY 59560 -HOSPITALS 62066 -HOST 57566 -HOSTED 62917 -HOSTEL 62066 -HOSTING 57278 -HOSTS 63601 -HOT 45341 -HOTEL 50492 -HOTELS 51974 -HOTLINE 63991 -HOTTEST 58417 -HOU 60405 -HOUR 56485 -HOURLY 62066 -HOURS 52141 -HOUSE 47931 -HOUSEHOLD 59101 -HOUSES 60157 -HOUSING 52484 -HOUSTON 56021 -HOV 64905 -HOVIMA 64201 -HOW 46340 -HOWARD 55992 -HOWE 64423 -HOWELL 62917 -HOWEVER 59424 -HOWTO 55684 -HOWTOs 59848 -HOY 64201 -HOw 64423 -HP 39581 -HP's 56356 -HPA 56972 -HPAEs 65452 -HPAI 64423 -HPAL 63077 -HPB 64423 -HPC 55578 -HPCC 62469 -HPF 60492 -HPGL 64905 -HPI 57399 -HPLC 50710 -HPM 63792 -HPMC 64201 -HPN 65170 -HPO 59774 -HPP 62331 -HPR 64905 -HPRS 63419 -HPRT 61051 -HPS 56080 -HPSEC 63077 -HPSS 63991 -HPT 63601 -HPTLC 60492 -HPUX 64423 -HPV 50726 -HQ 46229 -HQT 64423 -HR 43391 -HRA 57566 -HRC 56420 -HRCrossing 64423 -HRD 59491 -HREM 62066 -HREOC 62613 -HRG 60856 -HRH 58577 -HRI 59923 -HRIS 63792 -HRK 61584 -HRM 58162 -HRMS 62331 -HRO 65170 -HRP 58262 -HRQL 63419 -HRS 56652 -HRSG 65170 -HRT 56021 -HRTEM 64423 -HRTF 63792 -HRV 63419 -HRW 63245 -HS 46423 -HSA 56356 -HSAs 60670 -HSB 62196 -HSBC 50726 -HSBC's 63991 -HSC 54245 -HSCEI 65452 -HSCs 62762 -HSD 63601 -HSDPA 54419 -HSE 55107 -HSF 64657 -HSG 62917 -HSI 54283 -HSK 63792 -HSLAB 62469 -HSM 54479 -HSMM 65452 -HSMN 64905 -HSN 50966 -HSNO 65170 -HSP 61584 -HSP's 64657 -HSPA 60492 -HSPN 64657 -HSR 64905 -HSRC 61472 -HSS 55934 -HST 57923 -HSU 62196 -HSUPA 64657 -HSUS 65170 -HSV 56899 -HSW 58979 -HT 49365 -HTC 46272 -HTC's 62066 -HTF 59774 -HTFR 61699 -HTG 64905 -HTH 59227 -HTK 60078 -HTL 61940 -HTM 63991 -HTML 38505 -HTMLHelp 64423 -HTN 61051 -HTO 62196 -HTP 58745 -HTPC 55154 -HTR 63419 -HTS 57199 -HTTP 48756 -HTTPS 58919 -HTX 64905 -HU 55323 -HUANG 63792 -HUB 56140 -HUBBARD 63991 -HUBBLE 65170 -HUBER 65170 -HUCMSCs 64423 -HUD 53796 -HUDA 64657 -HUDF 63792 -HUDGENS 62196 -HUDSON 53581 -HUF 58065 -HUFFPOST'S 60238 -HUG 63792 -HUGE 51453 -HUGH 61152 -HUGHES 59848 -HUGO 61472 -HUGS 62331 -HUI 64657 -HULK 59848 -HULL 59164 -HUM 62613 -HUMAN 50409 -HUMANITIES 62762 -HUMANS 64201 -HUMBERSIDE 62331 -HUMBLE 65170 -HUME 63077 -HUMIDITY 62066 -HUMIRA 63991 -HUMMER 53501 -HUMOR 63419 -HUMOUR 64657 -HUMP 63991 -HUN 59848 -HUNDRED 60952 -HUNDREDS 61584 -HUNG 63245 -HUNGARY 59039 -HUNGER 65452 -HUNGRY 64657 -HUNT 57046 -HUNTER 57785 -HUNTERS 62917 -HUNTING 59357 -HUNTINGTON 62196 -HURON 62469 -HURRICANE 56231 -HURRY 62066 -HURT 61699 -HURTS 64423 -HURUNUI 64905 -HUS 64905 -HUSA 65170 -HUSBAND 61699 -HUSKY 61699 -HUSQVARNA 61362 -HUT 63991 -HUTT 59774 -HUVEC 61472 -HUVECs 59101 -HV 52805 -HVAC 50178 -HVACR 64201 -HVB 65452 -HVDC 61584 -HVL 64423 -HVLC 60952 -HVLP 65452 -HVOF 65170 -HVS 61584 -HW 50431 -HWE 64423 -HWK 65452 -HWND 64905 -HWP 56356 -HWS 65452 -HWV 64657 -HWW 65170 -HWY 56452 -HX 58262 -HXTT 63991 -HY 57653 -HYALURONAN 62469 -HYBRID 59357 -HYD 64201 -HYDE 60405 -HYDERABAD 61472 -HYDMOD 63077 -HYDRAULIC 58688 -HYDRAULICS 65452 -HYDRO 63792 -HYDROCHLORIDE 65170 -HYDROGEN 56791 -HYGIENE 63601 -HYIP 64423 -HYLAND 64423 -HYPE 62613 -HYPER 63991 -HYPERLINK 65452 -HYPOALLERGENIC 61152 -HYSICS 62469 -HYUNDAI 58979 -HZ 58860 -Ha 49770 -Ha'aretz 65452 -HaAtzma'ut 63792 -HaSV 64657 -HaSho'ah 63991 -Haag 60078 -Haale 63601 -Haan 58113 -Haapsalu 61699 -Haar 57238 -Haaretz 61152 -Haarlem 64423 -Haart 64905 -Haas 54399 -Haasan 62066 -Haase 64905 -Haba 60856 -Habakkuk 63419 -Habana 61152 -Habanero 63419 -Habbo 60670 -Habe 65452 -Habeas 60762 -Haber 60157 -Haberdashery 65170 -Haberler 64905 -Haberleri 63419 -Habermas 63601 -Habermas's 65170 -Habersham 63419 -Habib 59164 -Habibi 63601 -Habilitation 63245 -Habit 55684 -Habitaciones 62917 -Habitat 50185 -Habitation 64905 -Habitats 59039 -Habits 54399 -Habitual 63419 -Habla 59491 -Hablamos 65452 -Habra 58688 -Habre 65170 -Habs 59560 -Habsburg 63419 -Habu 62917 -Haburchak 64905 -Hacc 65170 -Hace 63991 -Hacer 62762 -Hacettepe 64201 -Hach 63245 -Hachem 64657 -Hachette 60762 -Hacienda 55631 -Hack 51425 -HackPolice 64905 -Hacked 58470 -Hackensack 60405 -Hacker 53138 -Hacker's 62196 -Hackers 55934 -Hackescher 64423 -Hackett 57399 -Hackettstown 65170 -Hacking 50782 -Hackman 62917 -Hackney 53746 -Hacks 49488 -Hacksaw 62331 -Hacky 63991 -Had 46950 -Hadassah 63601 -Haddad 59848 -Haddington 64657 -Haddix 61472 -Haddock 61362 -Haddon 57440 -Haddonfield 64423 -Haden 62196 -Hades 60492 -Hadfield 62331 -Hadi 60952 -Hadith 59560 -Haditha 64657 -Hadley 54479 -Hadlow 65170 -Hadras 65170 -Hadrian 62613 -Hadrian's 64201 -Hadron 58860 -Hae 60238 -Haematol 55992 -Haematologica 64905 -Haematology 58577 -Haemophilia 60856 -Haemophilus 59491 -Haemost 61472 -Haemostasis 61699 -Hafan 61818 -Haffner 64423 -Hafield 62613 -Hafiz 64905 -Hafner 62196 -Hag 63077 -Haga 61051 -Hagan 58365 -Hagar 59292 -Hage 65170 -Hagedorn 62469 -Hagel 63077 -Hageman 64905 -Hagen 55906 -Hagens 64423 -Hager 60078 -Hagerman 63077 -Hagerstown 58802 -Hagersville 64905 -Hagerty 62469 -Haggard 58162 -Haggerty 61472 -Hagges 65170 -Haggis 63245 -Hagiwara 64905 -Haglan 61699 -Hagley 63245 -Hagman 62066 -Hagstrom 58470 -Hague 55398 -Hah 65452 -Haha 55934 -Hahaha 61256 -Hahahaha 65170 -Hahei 64905 -Hahn 55348 -Hahn's 62762 -Hai 50615 -Haibane 65452 -Haida 63077 -Haider 56899 -Haider's 65170 -Haier 56862 -Haifa 56388 -Haig 60321 -Haigh 60492 -Haight 59424 -Haiku 56518 -Hail 52899 -Haile 61051 -Hailed 64201 -Hailey 58065 -Hailing 63601 -Hailsham 62613 -Hailuogou 60492 -Haim 60952 -Haima 61940 -Hain 58417 -Hainan 58979 -Haines 55711 -Hainesport 64657 -Haiphong 65452 -Hair 40618 -Hairball 61362 -Haircare 61818 -Haircut 56972 -Haircuts 59164 -Hairdresser 59923 -Hairdressers 55014 -Hairdressing 56862 -Hairdryer 57566 -Hairdryers 61818 -Haired 61818 -Hairless 62469 -Hairline 64201 -Hairloss 63991 -Hairpin 63077 -Hairs 62762 -Hairspray 57970 -Hairston 61472 -Hairstyle 56110 -Hairstyles 52472 -Hairstyling 62469 -Hairstylist 64905 -Hairstylists 64201 -Hairy 52635 -Haiti 45989 -Haitian 55821 -Haitians 65170 -Haj 62917 -Haji 60000 -Hajime 59774 -Hajj 57609 -Hak 64423 -Hakan 59848 -Hakata 57238 -Hake 63245 -Hakeem 65170 -Hakim 61051 -Hakka 63245 -Hakkar 59630 -Hakone 63245 -Hakuba 61584 -Hakusho 62613 -Hal 49873 -Hal's 65452 -Hala 61818 -Halal 59630 -Halaman 65170 -Halberd 65170 -Halcrow 62917 -Halcyon 61051 -Haldane 64657 -Haldeman 64905 -Haldimand 64657 -Hale 51434 -Haledon 64657 -Halen 55373 -Hales 60670 -Halesowen 63077 -Halex 63792 -Haley 52739 -Haley's 65452 -Half 43839 -Halfling 63419 -Halfmoon 65170 -Halford 63792 -Halfords 62331 -Halfpenny 63601 -Halftime 61362 -Halftrack 64657 -Halfway 56080 -Haliburton 56827 -Halibut 59424 -Halide 62196 -Halifax 48252 -Halim 64657 -Halitosis 65452 -Hall 39180 -Hall's 57238 -Halla 61940 -Hallack 60238 -Hallam 59491 -Hallandale 62917 -Hallarn 65452 -Hallberg 65452 -Halle 52765 -Hallelujah 59424 -Hallenbeck 62066 -Haller 61940 -Hallett 58802 -Hallettsville 64201 -Halley 61818 -Halli 61818 -Halliburton 59039 -Halliday 59039 -Hallie 60856 -Hallion 65452 -Halliwell 57009 -Halll 65452 -Hallman 64201 -Hallmark 52845 -Hallmarked 63601 -Hallo 59560 -Halloran 64423 -Hallow's 61051 -Hallowe'en 58523 -Hallowed 63077 -Hallowee 58313 -Halloween 39453 -HalloweenAdventure's 64905 -Hallows 56518 -Halls 50568 -Hallstatt 64657 -Hallstrom 64657 -Hallucinations 63245 -Hallucinogen 63419 -Hallway 59560 -Halmgar 63077 -Halo 44500 -Halobacterium 63792 -Halogen 55448 -Halon 63077 -Halong 63601 -Halopedia 59630 -Halos 63077 -Halper 61051 -Halperin 60762 -Halpern 60670 -Halpin 65452 -Halsall 64423 -Halsey 60321 -Halstad 64905 -Halstead 59774 -Halsted 63077 -Halston 61472 -Halt 58632 -Haltech 64423 -Halter 53533 -Halters 63792 -Haltom 63419 -Halton 55906 -Halts 64657 -Halverson 62917 -Halves 60580 -Halvorson 64657 -Halwa 64905 -Ham 49196 -Ham's 62917 -Hama 58632 -Hamachi 64657 -Hamad 64423 -Hamada 63601 -Hamamatsu 61818 -Hamann 61940 -Hamar 64657 -Hamas 55014 -Hamasaki 59357 -Hamat 65452 -Hambleton 61584 -Hamblin 63601 -Hambrecht 63601 -Hamburg 48933 -Hamburger 54857 -Hamburgers 57741 -Hamdard 63991 -Hamden 59227 -Hamed 63419 -Hameed 65452 -Hamel 60856 -Hamelin 64905 -Hamels 57831 -Hameo 64905 -Hamer 59292 -Hamid 56518 -Hamil 58802 -Hamill 62469 -Hamilton 43836 -Hamilton's 57653 -Hamiltonian 52858 -Hamiltonians 64201 -Hamish 57358 -Hamlet 55348 -Hamlets 57160 -Hamlin 56827 -Hamline 65452 -Hamm 52739 -Hamm's 64423 -Hammacher 62066 -Hammack 59702 -Hammam 63419 -Hammamet 58470 -Hamman 59774 -Hammar 62762 -Hammel 57653 -Hammell 63991 -Hammer 48609 -Hammered 59164 -Hammerfall 63792 -Hammerhead 60492 -Hammers 55963 -Hammersley 63245 -Hammersmith 53899 -Hammerstein 61699 -Hammett 63077 -Hammill 64201 -Hamming 58113 -Hammock 57440 -Hammock's 65170 -Hammocks 59491 -Hammon 64657 -Hammond 51550 -Hammonds 62762 -Hamner 64905 -Hampden 57160 -Hamper 60078 -Hampers 55526 -Hampshire 42141 -Hampshire's 62917 -Hampson 63601 -Hampstead 55821 -Hampton 46250 -Hamptons 53138 -Hamrick 65452 -Hams 60078 -Hamster 53662 -Hamsters 59560 -Hamstring 62762 -Hamtramck 65170 -Hamza 61256 -Han 51877 -HanDBase 58745 -Hana 52940 -Hanafi 64201 -Hanalei 64423 -Hanan 58523 -Hanayome 63601 -Hanbun 65170 -Hanbury 64201 -Hance 61256 -Hancock 49541 -Hancox 64423 -Hand 42148 -Handango 56972 -Handbag 51531 -Handbags 47467 -Handball 53695 -Handbells 63792 -Handbook 41690 -Handbooks 57160 -Handbrake 64657 -Handbuch 63077 -Handcraft 63245 -Handcrafted 55906 -Handcuff 62196 -Handcuffs 61818 -Handed 56080 -Handel 57609 -Handel's 64201 -Handful 60670 -Handguards 64905 -Handgun 58262 -Handgunner 53454 -Handguns 59292 -Handheld 48928 -Handhelds 49720 -Handicap 52152 -Handicapped 55766 -Handicapping 59560 -Handicaps 65170 -Handicraft 61584 -Handicrafts 57876 -Handimail 62917 -Handing 63991 -Handisplay 61362 -Handjob 57278 -Handjobs 60238 -Handkerchief 65452 -Handle 49092 -Handlebar 56262 -Handlebars 55250 -Handled 62066 -Handler 54857 -Handler's 63601 -Handlers 59560 -Handles 52315 -Handley 59923 -Handling 42999 -Handlungsvollmacht 65452 -Handmade 50940 -Handout 57358 -Handouts 56862 -Handover 63419 -Handpainted 62196 -Handphones 62331 -Handpicked 63792 -Handpiece 65170 -Handprint 63792 -Handrail 63419 -Handrails 65170 -Hands 45867 -Handset 53779 -Handsets 57046 -Handsfree 55821 -Handshake 62917 -Handsome 56388 -Handspring 60405 -Handwashing 63601 -Handwriting 56935 -Handwritten 63245 -Handy 50171 -Handycam 56551 -Handyman 54207 -Hanes 55348 -Haney 60580 -Hanford 58979 -Hang 50314 -HangTime 63792 -Hangar 58017 -Hanger 53762 -Hangers 55274 -Hanging 50292 -Hangings 62196 -Hangman 60078 -Hangout 56827 -Hangouts 58745 -Hangover 58919 -Hangs 61152 -Hangzhou 56420 -Hanh 62917 -Hani 61818 -Hania 65170 -Hanif 63792 -Hanis 61152 -Hanjin 65170 -Hank 49821 -Hank's 59424 -Hankel 64201 -Hankering 65452 -Hankey 65170 -Hankins 64201 -Hanks 54969 -Hanky 63077 -Hanley 57009 -Hanlon 61584 -Hanmer 61362 -Hann 64657 -Hanna 51963 -Hanna's 63991 -Hannah 46503 -Hannah's 63792 -Hannan 55684 -Hannay 65452 -Hanne 61584 -Hannes 60157 -Hannibal 55766 -Hannigan 58313 -Hannity 56324 -Hannon 60762 -Hannover 56687 -Hanns 64201 -Hannu 61051 -Hanoi 53454 -Hanon 64423 -Hanover 51017 -Hanrahan 62917 -Hans 48230 -Hansa 61152 -Hansard 56935 -Hansbrough 63601 -Hanscom 62762 -Hansel 61256 -Hansen 50122 -Hansen's 63077 -Hansgrohe 62196 -Hansika 65170 -Hanson 50060 -Hanson's 63601 -Hanspeter 63601 -Hanssen 63792 -Hansson 62331 -Hants 61362 -Hantsweb 61256 -Hantuchova 65452 -Hanukah 62762 -Hanukkah 57278 -Hanuman 60157 -Hanwell 65170 -Hanwha 63991 -Hany 63245 -Hanyang 63601 -Hao 58065 -Haomarush 59424 -Hap 62762 -HapMap 63991 -Hapeville 64657 -Hapkido 63245 -Haplotype 63245 -Haplotypes 65452 -Happ 63419 -Happen 52534 -Happened 52752 -Happenin 63419 -Happening 52118 -Happenings 54459 -Happens 51942 -Happier 62469 -Happiest 54560 -Happily 56293 -Happiness 51257 -Happs 65452 -Happy 41095 -Happyflower 64423 -Happyness 63419 -Haq 64423 -Haque 61362 -Har 58365 -Hara 58417 -Harada 60580 -Harajuku 58577 -Harald 57046 -Haralson 64201 -Harare 57160 -Harassing 60405 -Harassment 48624 -Harb 62613 -Harbaugh 63245 -Harbhajan 60321 -Harbin 59292 -Harbinger 60000 -Harbison 64201 -Harboe 61362 -Harbor 45213 -Harborne 64905 -Harborough 58470 -Harbors 62762 -Harborside 63419 -Harborview 64657 -Harbour 48766 -Harbourfront 65452 -Harbourside 63245 -Harcourt 56420 -Harcourts 64423 -Hard 40263 -Hardaway 64905 -Hardback 53038 -Hardball 57238 -Hardcastle 65170 -Hardcopy 61940 -Hardcore 46301 -Hardcover 48261 -Hardcovers 63792 -Harddisk 63601 -Harddrive 64657 -Hardee 61699 -Hardee's 64201 -Harden 58632 -Hardened 62066 -Hardening 62917 -Harder 55906 -Hardest 57238 -Hardesty 64423 -Hardie 61699 -Hardin 54170 -Hardin's 65452 -Hardiness 60670 -Harding 52484 -Harding's 63601 -Hardison 64905 -Hardly 55849 -Hardman 61940 -Hardness 58523 -Hardshell 65452 -Hardship 60856 -Hardships 60492 -Hardstyle 56293 -Hardtail 64423 -Hardtop 61152 -Hardware 37818 -HardwareZone 57278 -Hardwear 56140 -Hardwick 58162 -Hardwicke 65170 -Hardwire 62917 -Hardwood 51140 -Hardwoods 60157 -Hardy 48327 -Hardy's 61940 -Hare 55107 -Harem 60321 -Haren 63792 -Hares 64201 -Harewood 63601 -Harford 54924 -Hargett 65170 -Harghita 64657 -Hargitay 62331 -Hargrave 61818 -Hargreaves 57970 -Hargrove 60856 -Hari 54622 -Haribo 63245 -Haridwar 61584 -Hariharan 64423 -Haring 58860 -Haringey 56324 -Hariprasad 63792 -Hariri 65170 -Haris 63792 -Harish 64905 -Hark 63601 -Harken 61584 -Harker 61256 -Harkin 60321 -Harkins 60856 -Harkness 60492 -Harlan 55474 -Harland 60492 -Harlech 65170 -Harlem 51580 -Harlem's 65170 -Harlequin 56551 -Harlequins 59923 -Harley 49417 -Harley's 65452 -HarleyQuinn 65170 -Harleys 64905 -Harlin 62331 -Harlingen 61699 -Harlington 62917 -Harlock 64657 -Harlow 54879 -Harlowton 64905 -Harm 55552 -Harm's 64905 -Harman 53779 -Harmful 57923 -Harmless 61940 -Harmon 53970 -Harmonia 62196 -Harmonic 56140 -Harmonica 56262 -Harmonicas 63077 -Harmonics 64657 -Harmonie 64423 -Harmonies 65452 -Harmonisation 61256 -Harmonix 59560 -Harmonization 61362 -Harmonize 64657 -Harmonized 60078 -Harmony 47799 -Harms 57876 -Harness 51104 -Harnesses 55963 -Harnessing 61818 -Harnett 57741 -Harney 60952 -Haro 59491 -Harold 47577 -Harold's 63245 -Haron 64905 -Harp 52725 -Harpe 64905 -Harpenden 60580 -Harper 48114 -Harper's 55323 -HarperCollins 56618 -Harpers 57923 -Harpo 61256 -Harpoon 63077 -Harps 62196 -Harpsichord 62331 -Harrah 60405 -Harrah's 58313 -Harrahs 64657 -Harrassment 65452 -Harrell 58577 -Harrelson 59101 -Harri 63245 -Harrie 64657 -Harrier 60078 -Harriers 61256 -Harries 64201 -Harriet 52187 -Harriett 63991 -Harriette 65452 -Harrigan 63601 -Harriman 61362 -Harrington 52725 -Harrington's 65452 -Harris 44073 -Harris's 61699 -Harrisburg 53917 -Harrison 46329 -Harrison's 59292 -Harrisonburg 61051 -Harrisonville 65452 -Harrisville 61256 -Harrod 62917 -Harrods 58860 -Harrogate 55398 -Harrold 64423 -Harrop 64905 -Harrow 51772 -Harry 42507 -Harry's 56293 -Harsh 58523 -Harsha 63601 -Hart 48300 -Hart's 60405 -Harta 63601 -Harte 60492 -Hartel 65170 -Harter 62066 -Hartford 47968 -Hartford's 63601 -Hartge 60762 -Harti 64423 -Hartke 63077 -Hartland 61152 -Hartlepool 54664 -Hartley 52521 -Hartley's 63245 -Hartline 64201 -Hartman 54360 -Hartman's 62469 -Hartmann 57440 -Hartmut 62613 -Hartnell 64657 -Hartnett 58979 -Hartnup 64423 -Harts 64657 -Hartsdale 65170 -Hartsfield 65452 -Hartson 61256 -Hartsville 64657 -Hartung 65170 -Hartville 63792 -Hartwell 57358 -Hartwick 65452 -Hartwig 61818 -Hartz 64905 -Hartzell 65170 -Haru 63991 -Haruhi 59357 -Haruka 61051 -Haruko 65452 -Harum 63245 -Harumi 64905 -Harun 63991 -Haruna 64423 -Haruno 63245 -Haruo 64905 -Harv 62762 -Harvard 45145 -Harvard's 59923 -Harvest 47224 -Harvested 63991 -Harvester 59630 -Harvesters 63991 -Harvesting 57009 -Harvey 46769 -Harvey's 58745 -Harveys 60157 -Harvick 60405 -Harvmac 61472 -Harwich 57609 -Harwin 65170 -Harwood 56652 -Haryana 55178 -Has 41770 -HasItem 63792 -HasRowChanged 62917 -Hasan 56050 -Hasbro 54946 -Hasbro's 65452 -Hasbrouck 62762 -Hascup 64201 -Haseeno 61584 -Hasegawa 59101 -Haseley 64657 -Haseltine 64423 -Hash 53847 -HashMap 60762 -HashPassword 64905 -Hashanah 61472 -Hashem 62762 -Hashemi 65452 -Hashes 65170 -Hashim 65170 -Hashimoto 58313 -Hashimoto's 61699 -Hashing 62469 -Hashmi 63245 -Hashtable 64905 -Hasidic 62331 -Hasina 65170 -Hasire 64905 -Haske 61818 -Haskell 55766 -Haskin 63077 -Haskins 60670 -Haslam 62331 -Haslemere 63601 -Hasler 62469 -Haslett 62331 -Hasn't 61362 -Hasna 65452 -Hass 63792 -Hassall 65170 -Hassan 53454 -Hassanya 64905 -Hasse 61940 -Hasselbeck 58262 -Hasselblad 63077 -Hasselhoff 57785 -Hassell 63991 -Hassle 56899 -Hassler 64201 -Hassles 65170 -Hassock 62762 -Hassocks 63601 -Hasta 60492 -Haste 58262 -Hastert 64423 -Hastings 50033 -Hasty 62917 -Haswell 63601 -Hat 44375 -Hat's 62066 -Hata 64657 -Hatch 52832 -Hatchback 53438 -Hatchbacks 60670 -Hatcher 56452 -Hatcheries 62469 -Hatchery 60078 -Hatches 64423 -Hatchet 59164 -Hatching 64201 -Hate 42892 -Hatebreed 57741 -Hated 58065 -Hateful 58919 -Hately 63792 -Hatemail 65170 -Hater 60670 -Haters 59774 -Hates 54264 -Hatfield 54879 -Hath 63077 -Hatha 62331 -Hathaway 53423 -Hathaway's 57609 -Hathway's 62196 -Hating 63245 -Hatley 63419 -Hato 62613 -Hatred 60321 -Hats 46628 -Hatshepsut 64905 -Hatsukaichi 62613 -Hatsune 64657 -Hatta 65170 -Hatter 60492 -Hatteras 60405 -Hatters 65452 -Hattie 57741 -Hattiesburg 61362 -Hatton 57318 -Hattori 64423 -Hattrick 61362 -Hatz 64423 -Hau 64905 -Hauck 63077 -Hauer 61256 -Haug 62469 -Haugan 65452 -Haugen 63792 -Haugh 64905 -Haughton 62613 -Haukaas 62762 -Hauke 65452 -Haul 57482 -Haulage 58523 -Hauler 60580 -Haulers 63419 -Hauling 56862 -Haunt 62196 -Haunted 49966 -Haunting 55992 -Hauntings 63077 -Haunts 59039 -Hauppauge 56618 -Haupt 62066 -Hauptnavigation 63419 -Hauraki 65170 -Haus 57970 -Hausa 58417 -Hauschka 63792 -Hausdorff 60952 -Hause 62613 -Hausen 65170 -Hauser 58632 -Hausfeld 63601 -Hausman 65170 -Hausmann 64423 -Hauspie 63077 -Haut 58417 -Haute 54005 -Hautkrankheiten 64423 -Hava 64657 -Havaianas 56388 -Havana 53095 -Havana's 64905 -Havanese 65170 -Havant 58065 -Havasu 60238 -Have 37103 -Havel 62917 -Haveli 58860 -Havelock 58919 -Haven 47500 -Haven't 52411 -Havens 60670 -Havent 61940 -Haverford 60492 -Haverfordwest 64657 -Haverhill 58745 -Havering 57199 -Haverty's 65170 -HavertyS 63601 -Havertys 63419 -Haves 61362 -Haviland 63077 -Havilland 60580 -Having 42236 -Havoc 57318 -Havok 61699 -Havre 57741 -Haw 60952 -Hawa 59560 -Hawai 65452 -Hawai'i 57084 -Hawaii 41252 -Hawaii's 58688 -Hawaiian 46149 -Hawaiians 62762 -Hawes 61051 -Hawg 62331 -Hawg's 65170 -Hawick 64905 -Hawk 49038 -Hawk's 57876 -Hawke 59424 -Hawke's 58632 -Hawken 64905 -Hawker 55552 -Hawkers 64423 -Hawkes 55084 -Hawkesbury 58113 -Hawkeye 59164 -Hawkeyes 59101 -Hawkgirl 64657 -Hawking 56324 -Hawkins 51670 -Hawks 51157 -Hawksley 65452 -Hawkwind 64201 -Hawley 59227 -Hawn 62331 -Haworth 54622 -Haws 62469 -Hawthorn 55373 -Hawthorne 51453 -Hawtin 65170 -Hay 50357 -Hayabusa 59774 -Hayakawa 64201 -Hayashi 57653 -Hayat 62613 -Hayate 59923 -Hayden 48811 -Hayden's 64201 -Haydn 58860 -Haydon 64423 -Haye 63792 -Hayek 55793 -Hayes 48887 -Hayfever 64657 -Hayfield 64423 -Hayle 64201 -Haylee 65452 -Hayley 54207 -Haylie 63077 -Hayling 62917 -Hayman 59357 -Haymarket 53882 -Hayne 64657 -Haynes 52739 -Haynesville 63991 -Hays 52968 -Hayseed 63792 -Haystack 63991 -Hayter 63601 -Hayward 52712 -Haywards 59848 -Haywood 56827 -Hayworth 63077 -Hayy 62066 -Haz 58979 -HazMat 61818 -Hazan 64905 -Hazara 61818 -Hazard 50638 -Hazardous 49802 -Hazards 53331 -Haze 53695 -Hazel 52152 -Hazelden 64657 -Hazell 59227 -Hazelnut 58688 -Hazelton 63245 -Hazelwood 60492 -Hazen 59848 -Hazing 62613 -Hazlehurst 64905 -Hazleton 63419 -Hazlewood 65452 -Hazlitt 62613 -Hazmat 59774 -Hazrat 65452 -Hazy 63991 -Hazzard 60952 -Hb 55578 -HbA 64201 -HbR 62917 -Hbchase 56388 -Hc 63419 -Hcg 59101 -Hci 61940 -Hcl 56827 -Hcy 58577 -Hd 58212 -Hdd 65452 -Hdmi 64201 -Hdtv 58470 -He 32775 -He'd 55373 -He'll 53865 -He's 44163 -HeLa 53438 -Head 39988 -Head's 65170 -HeadRoom 64657 -Headache 51856 -Headaches 55178 -Headband 58065 -Headbands 61940 -Headbangers 57399 -Headboard 58523 -Headboards 59292 -Headcandy 58632 -Headcover 64423 -Headcovers 59560 -Headed 55060 -Headend 64657 -Header 48996 -HeaderAlignment 61152 -HeaderFontColor 61152 -HeaderFontFace 61362 -HeaderFontPointSize 61152 -HeaderFontStyle 61051 -HeaderLines 62331 -HeaderObjects 64905 -Headers 54601 -Headgear 61818 -Headgears 64423 -Headhunter 61584 -Headhunters 61818 -Heading 50823 -Headingley 61940 -Headings 55657 -Headlamp 61472 -Headlamps 59923 -Headland 61472 -Headlands 65452 -Headless 59923 -Headley 62196 -Headlight 52752 -Headlights 56050 -Headline 47787 -Headliner 63991 -Headliners 63245 -Headlines 41462 -Headmaster 62613 -Headphone 53779 -Headphones 48314 -Headphoneus 64423 -Headquarter 63991 -Headquartered 55793 -Headquarters 46906 -Headrest 58919 -Headrests 64201 -Headroom 62613 -Heads 47819 -Headset 49119 -Headsets 50365 -Headshot 63245 -Headshots 59357 -Headstone 59101 -Headstones 64423 -Headstrong 63077 -Headteacher 61472 -Headteachers 64201 -Headwaters 62613 -Headway 63419 -Headwear 56050 -Headwinds 62613 -Heady 65170 -Heal 54133 -Heald 62762 -Healdsburg 61152 -Healer 61152 -Healers 63419 -Healesville 63419 -Healey 56356 -Healing 47349 -HealingMagic 61256 -Heals 63419 -Health 29712 -Health's 58262 -HealthCare 56231 -HealthCentral 63792 -HealthDay 64905 -HealthDotCom 63601 -HealthFund 62196 -HealthGrades 55178 -HealthInsite 59774 -HealthLink 60952 -HealthRanker 63792 -HealthSouth 61362 -HealthSpace 59560 -HealthVault 57609 -Healthc 59848 -Healthcare 41734 -Healthcheck 64905 -HealtheCareers 64905 -Healthful 59923 -Healthier 57524 -Healthiest 63077 -Healthletter 56356 -Healthline 61584 -Healthwise 59227 -Healthy 42643 -Healy 55084 -Heaney 60952 -Heanor 64657 -Heap 57399 -Heaps 57970 -Hear 47286 -Heard 48161 -Hearing 45652 -Hearings 52411 -Hearn 60856 -Hearne 60580 -Hears 59774 -Hearse 62196 -Hearst 53485 -Heart 39450 -Heart's 61051 -HeartMath 62469 -HeartStart 59630 -Heartache 61818 -Heartbeat 55793 -Heartbreak 58632 -Heartbreaker 62066 -Heartbreakers 60856 -Heartbreaking 64201 -Heartbroken 63077 -Heartburn 57524 -Hearted 61584 -Heartfelt 64657 -Heartgard 65452 -Hearth 55657 -Hearthside 62613 -Heartland 51888 -Heartlands 63419 -Heartless 58212 -Hearts 47370 -Heartwalk 64423 -Heartwarming 65170 -Heartwood 60670 -Heartworm 60492 -Hearty 57566 -Heat 43583 -Heat's 63991 -HeatGear 62331 -Heated 52622 -Heater 50299 -Heaters 50277 -Heath 47915 -Heath's 63792 -Heathcote 60762 -Heathen 61818 -Heather 45540 -Heather's 60000 -Heathers 65452 -Heathfield 59357 -Heathkit 65170 -Heathrow 51867 -Heating 45012 -Heatkeeper 64201 -Heatley 62762 -Heatly 61362 -Heaton 58802 -Heatran 64657 -Heats 56452 -Heatshrink 65452 -Heatsink 60321 -Heatsinks 58523 -Heatwave 59491 -Heauville 62196 -Heaven 46827 -Heaven's 59039 -Heavenly 52096 -Heavens 57876 -HeavensDust 63245 -Heavies 64657 -Heaviest 62331 -Heavily 61699 -Heavy 44312 -Heavyweight 54835 -Heavyweights 64657 -Heb 61051 -Hebbal 65170 -Hebbian 65452 -Hebd 62762 -Hebden 63419 -Hebe 64423 -Hebei 57609 -Hebel 63077 -Heber 59630 -Hebert 57482 -Hebraic 62917 -Hebrew 47780 -Hebrews 56827 -Hebrides 61472 -Hebron 56293 -Hechanova 64905 -Hecht 58745 -Heck 55178 -Hecke 65170 -Hecker 62196 -Heckler 62066 -Heckman 62469 -Hectares 63077 -Hectic 63792 -Hector 53182 -Hed 59923 -Hedberg 61472 -Hedda 64201 -Hedge 49296 -Hedgehog 51275 -Hedger 65170 -Hedges 58262 -Hedging 60670 -Hedland 62196 -Hedley 59357 -Hedlund 63419 -Hedman 64423 -Hedonism 61818 -Hedrick 61362 -Hedrons 64423 -Hedwig 63077 -Hee 56687 -Heeb 64657 -Heed 63792 -Heel 50424 -Heelan 64201 -Heeling 65170 -Heels 51630 -Heelys 58065 -Heenan 64657 -Heep 65170 -Heer 59630 -Heerenveen 63419 -Heeroma 63077 -Hees 64905 -Hef 61256 -Hef's 57482 -Hefei 61940 -Heffernan 59292 -Heffner 63601 -Hefner 57970 -Hefner's 64905 -Heft 62613 -Hefty 60856 -Hegarty 64423 -Hegel 61699 -Hegel's 63077 -Hegemon 63601 -Hegemony 65452 -Hegre 63601 -Heh 62331 -Hehe 63991 -Hei 61818 -Heian 64657 -Heiankyo 64423 -Heide 63419 -Heidegger 61940 -Heidelberg 53024 -Heidelberger 65170 -Heiden 64201 -Heidensohn 63991 -Heidi 48501 -Heidi's 63792 -Heifers 64201 -Height 47147 -Heighten 64423 -Heights 44113 -Heigl 56721 -Heike 61051 -Heikki 60762 -Heiko 61940 -Heil 61152 -Heilman 63419 -Heilongjiang 59848 -Heim 62469 -Heimarbeit 65170 -Hein 59923 -HeinOnline 55500 -Heine 57524 -Heine's 63991 -Heineken 55711 -Heinemann 60321 -Heiner 63601 -Heinesen 65170 -Heiney 64423 -Heinlein 59292 -Heino 64905 -Heinrich 54727 -Heinrichs 64423 -Heintz 63419 -Heinz 52584 -Heir 61818 -Heiress 63419 -Heirloom 55793 -Heirs 62613 -Heise 64423 -Heisei 62331 -Heisenberg 59227 -Heiser 65170 -Heisler 65170 -Heisman 56721 -Heist 59774 -Hej 63991 -Hejlik 65452 -Hekate 64657 -Hel 58919 -Hela 63419 -Held 50074 -Helden 62917 -Heldenbuch 65170 -Helder 64201 -Helen 45987 -Helen's 59560 -Helena 46409 -Helene 55037 -Helens 54601 -Helensburgh 62917 -Heleva 60078 -Heleva's 65452 -Helfer 63601 -Helfrich 65170 -Helga 60000 -Helge 61362 -Helgenberger 65452 -Heli 56231 -Helical 59848 -Helicase 64905 -Helichrysum 64423 -Helicobacter 52791 -Helicon 62331 -Helicopter 49926 -Helicopters 53301 -Helier 64201 -Helio 56420 -Helios 57482 -Heliport 65452 -Helis 61584 -Helium 53052 -Helium's 60952 -Helix 48938 -HelixCommunity 53952 -Hell 46809 -Hell's 52327 -Hella 57785 -Hellas 60856 -Hellboy 53662 -Hellcat 63419 -Helle 64423 -Hellenic 57741 -Hellenistic 61472 -Heller 54664 -Heller's 64905 -Hellfire 54188 -Hellgate 59101 -Hellman 61699 -Hellmann 64657 -Hellmuth 64423 -Hello 43615 -HelloMetro 62762 -Hellogoodbye 64423 -Helloween 59292 -Hellraiser 63245 -Hells 56050 -Hellscream 59164 -Hellsing 57046 -Hellwig 64423 -Helly 60762 -Helm 55060 -Helmand 60952 -Helmer 64905 -Helmet 49452 -Helmets 50983 -Helmholtz 60762 -Helms 56518 -Helmsley 61699 -Helmut 54924 -Helmuth 64423 -Helo 61152 -Help 28369 -HelpConnections 63792 -HelpContact 55934 -HelpContents 63077 -HelpDesk 60405 -HelpLine 64905 -HelpMy 57696 -HelpSearchMembersCalendar 58802 -Helpdesk 53095 -Helped 56293 -Helper 52622 -Helpers 56485 -Helpful 44827 -Helpfulness 58745 -Helping 48381 -Helpless 64201 -Helpline 55684 -Helplines 64201 -Helpman 61362 -Helproom 65452 -Helps 49388 -Helsing 62613 -Helsingborg 65170 -Helsingin 64201 -Helsinki 51425 -Heltah 58802 -Helter 61051 -Helton 60856 -Helvetica 60762 -Helzberg 63077 -Hem 59101 -Hema 61940 -Hemangioma 62331 -Hemant 62196 -Hematite 61940 -Hematol 59491 -Hematologic 64423 -Hematological 65452 -Hematology 53882 -Hematopoietic 59424 -Hembra 65170 -Hembree 65452 -Heme 62469 -Hemel 55684 -Hemet 63601 -Hemi 58919 -Hemingway 56231 -Hemingway's 62762 -Hemisphere 56862 -Hemispheric 64423 -Hemline 62066 -Hemlock 59101 -Hemme 63077 -Hemmer 64201 -Hemmings 61152 -Hemodialysis 59774 -Hemodynamic 60405 -Hemodynamics 64201 -Hemoglobin 60078 -Hemolytic 63601 -Hemophilia 63077 -Hemorrhage 61940 -Hemorrhagic 61699 -Hemorrhoid 65452 -Hemorrhoids 60580 -Hemostasis 64201 -Hemp 55373 -Hempfield 65170 -Hemphill 60405 -Hempshopper 63991 -Hempstead 55154 -Hemscott 63077 -Hemsky 61472 -Hemsley 64657 -Hemsted 61584 -Hen 53109 -Henan 56721 -Hence 49476 -Henchman 62762 -Henckels 64657 -Henderson 48716 -Henderson's 62613 -Hendersonville 60405 -Hendon 60157 -Hendrick 59630 -Hendricks 53095 -Hendrickson 60321 -Hendrik 58365 -Hendriks 63991 -Hendrix 53226 -Hendrix's 64423 -Hendry 59560 -Heng 60762 -Henge 62331 -Henican 63792 -Henk 60078 -Henke 61362 -Henkel 60157 -Henle 64423 -Henley 51953 -Henleys 63077 -Henlow 64905 -Henman 61584 -Henna 58417 -Henne 62469 -Hennepin 55604 -Hennessey 61362 -Hennessy 58979 -HennessyRob 65452 -Henney 63792 -Henning 56652 -Henny 63601 -Henri 52712 -Henrico 58745 -Henrietta 57609 -Henriette 62613 -Henrik 54059 -Henriksen 59560 -Henrique 61472 -Henriques 63601 -Henry 41775 -Henry's 56050 -Henryk 62762 -Henrys 65452 -Hens 58313 -Hensel 65452 -Henshall 64905 -Henshaw 63991 -Hensley 60952 -Henson 55738 -Henstridge 62469 -Hentai 52339 -Heol 64423 -Hep 62066 -Hepa 64201 -Heparin 58688 -Hepat 63419 -Hepatic 54321 -Hepatitis 51008 -Hepatobiliary 63991 -Hepatocellular 61256 -Hepatocyte 64657 -Hepatocytes 62469 -Hepatogastroenterology 63991 -Hepatol 58365 -Hepatology 54685 -Hepburn 55526 -Hepes 62066 -Hepworth 63792 -Her 40255 -Hera 59560 -Heraeus 59702 -Heraklion 59357 -Herald 43702 -Herald's 64657 -Heraldic 61256 -Heraldry 60670 -Heralds 65452 -Herb 49713 -Herbaceous 64201 -Herbal 48067 -Herbalife 60856 -Herbalism 57046 -Herbals 60238 -Herbarium 54749 -Herbed 65170 -Herbert 49038 -Herbert's 61584 -Herbicide 60405 -Herbicides 63792 -Herbie 55849 -Herbier 57358 -Herbig 62196 -Herbs 49828 -Herbst 60157 -Herc 64905 -Hercegovina 60670 -Herceptin 61699 -Hercule 63245 -Herculean 65452 -Hercules 54264 -Herd 53865 -Herder 63601 -Herding 63419 -Here 34614 -Here's 42493 -Hereafter 64657 -Heredia 64201 -Hereditary 58523 -Hereditas 63601 -Heredity 58802 -Hereford 52886 -Herefordshire 53377 -Herein 61256 -Hereinafter 58688 -Herero 63991 -Heres 56420 -Heresy 61051 -Heretic 60762 -Heri 64201 -Herida 65452 -Heriot 64905 -Heritability 64201 -Heritage 41658 -Herken 61699 -Herkimer 59101 -Herlihy 55631 -Herma 64905 -Herman 50966 -Herman's 60405 -Hermann 55526 -Hermanos 61940 -Hermanson 64423 -Hermanus 64201 -Hermeneutics 63077 -Hermes 53316 -Hermetic 63991 -Hermione 59424 -Hermiston 64201 -Hermit 60762 -Hermitage 56388 -Hermite 63077 -Hermitian 60405 -Hermon 62196 -Hermosa 57741 -Hermosillo 63419 -Hermès 64201 -Hernan 59848 -Hernandez 51909 -Hernando 57399 -Herndon 57009 -Herne 58470 -Hernia 57440 -Herniated 62917 -Hernán 65170 -Hernández 61256 -Hero 44153 -Hero's 58365 -HeroClix 62613 -Herod 59357 -Heroes 43896 -Heroic 55963 -Heroin 57785 -HeroinAddikt 63245 -Heroine 61152 -Heroines 63792 -Herold 62613 -Heron 53377 -Herons 63419 -Heros 59227 -Herp 63419 -Herpes 52673 -Herpesvirus 62762 -Herpetological 65170 -Herpological 65170 -Herr 56420 -Herramientas 64423 -Herren 64657 -Herrera 54459 -Herrick 59560 -Herrin 61818 -Herring 54226 -Herring's 65452 -Herringbone 60078 -Herrington 60492 -Herriot 61699 -Herrman 64657 -Herrmann 59848 -Herron 59560 -Hers 60157 -Hersam 64657 -Herschel 59357 -Herself 55578 -Hersey 63601 -Hersh 61472 -Hershberger 59702 -Hershbergers 62066 -Hershey 55178 -Hershey's 59424 -Hershman 65452 -Herska 63991 -Herskovits 61472 -Hert 65452 -Hertford 57831 -Hertfordshire 51095 -Hertha 62469 -Herts 56935 -Hertsmere 65170 -Hertz 53746 -Hertzberg 63419 -Hertzler 63991 -Herve 60321 -Hervey 59491 -Hervé 60580 -Herz 59357 -Herzberg 65170 -Herzegovina 47413 -Herzegowina 56200 -Herzen 63991 -Herzigova 64905 -Herzing 63792 -Herzl 62613 -Herzog 57970 -Hes 58470 -Hesiod 64201 -Hesketh 63601 -Heskett 62066 -Hesperia 56356 -Hesperian 63792 -Hesperus 64905 -Hess 53830 -Hesse 60000 -Hessen 63077 -Hessenberg 64423 -Hessian 61584 -Hesston 65452 -Hester 56827 -Heston 59560 -Het 54879 -Hetero 64657 -Heterocyclic 60492 -Heterogeneity 59491 -Heterogeneous 56324 -Heterologous 63419 -Heterosexual 61051 -Heterotopic 62613 -Hetherington 63419 -Hethersett 65452 -Hetil 64423 -Heuer 56687 -Heures 65170 -Heuristic 59424 -Heusen 64657 -Heute 65170 -Heuvel 64657 -Hevea 62331 -Hewes 62469 -Hewett 62196 -Hewitt 51321 -Hewlett 52559 -Hewson 63245 -Hex 52085 -HexD 65170 -Hexadecimal 64657 -Hexagon 58688 -Hexagonal 59227 -Hexen 63419 -Hexham 60405 -Hexxagon 63991 -Hey 42194 -HeyBub 65452 -HeyMonkeyBrain 63601 -Heya 60670 -Heydar 65170 -Heyday 63991 -Heyford 65170 -Heyman 61472 -Heythrop 61818 -Heywood 61256 -Heyy 62066 -Hezbollah 58470 -Hezekiah 63245 -Hf 63792 -Hg 52107 -Hh 61051 -Hho 63077 -Hi 40957 -HiFi 57609 -HiJackThis 64905 -HiSoftware 65452 -HiT 64657 -Hialeah 59774 -Hiatal 65452 -Hiatt 60952 -Hiatus 60000 -Hiawatha 60078 -Hib 63077 -Hibachi 63245 -Hibbard 58860 -Hibben 65170 -Hibbert 62469 -Hibbing 61584 -Hibernate 57970 -Hibernation 63077 -Hibernia 64657 -Hibernian 59560 -Hibiscus 56862 -Hibs 60492 -Hiccups 64423 -Hick 62762 -Hickam 65170 -Hickey 55107 -Hickman 56899 -Hickory 51463 -Hicks 52699 -Hickson 64201 -Hicksville 62469 -Hid 64905 -Hidalgo 57831 -Hidamari 64905 -Hidden 44473 -HiddenChars 63601 -Hide 34967 -Hideaki 60856 -Hideaway 56452 -Hideki 59630 -Hidenori 64905 -Hideo 60405 -Hideous 62331 -Hideout 57278 -Hider 62613 -Hides 56110 -Hideto 65170 -Hideyuki 62917 -Hiding 54419 -Hie 63991 -Hier 58417 -Hierarchical 55226 -Hierarchies 62762 -Hierarchy 52996 -Hiern 60762 -Hieroglyphics 61051 -Hifi 54519 -Hifonics 64657 -Hig 61940 -Higashi 63792 -Higdon 64905 -Higginbotham 65452 -Higgins 52198 -Higginson 64905 -Higgs 54622 -High 33878 -High's 63245 -HighBeam 47760 -HighTech 65170 -HighWire 48731 -Higham 64201 -Highbridge 62066 -Highbury 57923 -Highchair 65170 -Highchairs 62196 -Higher 42948 -Highest 43516 -Highfield 60321 -Highgate 58417 -Highland 46757 -Highlander 54685 -Highlanders 58802 -Highlands 48954 -Highligh 65170 -Highlight 46040 -Highlighted 55299 -Highlighter 62331 -Highlighters 60238 -Highlighting 60492 -Highlights 44686 -HighlightsMore 64657 -Highline 62066 -Highly 47424 -Highness 62917 -Highnote 63792 -Highplain 61152 -Highpoint 63991 -Highs 51610 -Highschool 61362 -Highslide 59923 -Highsmith 65170 -Highspeed 57358 -Hight 63792 -Hightech 61699 -Hightower 60321 -Highveld 63991 -Highway 43187 -Highways 52459 -Highwind 62331 -Highwire 64905 -Highwood 59923 -Higley 62613 -Higuchi 63419 -Higurashi 59164 -Hii 65452 -Hija 62917 -Hijab 56652 -Hijabs 65452 -Hijack 57653 -HijackThis 53865 -Hijacked 65452 -Hijackers 64905 -Hijacking 63419 -Hijau 63792 -Hijinks 64905 -Hijo 65452 -Hikari 57923 -Hikaru 55500 -Hike 53934 -Hiker 60321 -Hikers 63991 -Hikes 58113 -Hiking 47780 -Hil 61472 -Hila 65170 -Hilaire 64423 -Hilal 62196 -Hilarie 65452 -Hilario 64201 -Hilarious 55474 -Hilarity 61940 -Hilary 49488 -Hilary's 64905 -Hilbert 55373 -Hilda 57318 -Hilde 63245 -Hildebrand 61818 -Hildebrandt 63419 -Hildegard 65170 -Hildreth 63245 -Hileman 63601 -Hilfe 53597 -Hilfiger 54643 -Hiligaynon 64905 -Hill 38967 -Hill's 55348 -Hillard 64201 -Hillary 46063 -Hillary's 58745 -Hillbillies 64657 -Hillbilly 58212 -Hillclimb 61818 -Hillcrest 55578 -Hillel 56388 -Hillel's 65452 -Hillenbrand 63991 -Hiller 61152 -Hillerd 63792 -Hillerman 65452 -Hilliard 57653 -Hillier 61152 -Hillingdon 56140 -Hillis 64423 -Hillman 56618 -Hills 41889 -Hillsboro 55963 -Hillsborough 52886 -Hillsbrad 58577 -Hillsdale 56170 -Hillside 53988 -Hillsong 57482 -Hilltop 57566 -Hilltoppers 65452 -Hillview 61152 -Hilly 63991 -Hilo 57741 -Hilson 58113 -Hilti 64657 -Hilton 43034 -Hilton's 56452 -Hilux 60000 -Him 46918 -Himachal 55552 -Himalaya 56972 -Himalayan 55474 -Himalayas 57831 -Himanshu 62469 -Himba 63419 -Hime 61940 -Himes 60856 -Himesh 62917 -Himitsu 61940 -Himmel 65170 -Himmelstoss 59039 -Himmler 63991 -Himodel 60670 -Himself 51920 -Hin 56935 -Hina 58802 -Hinata 64201 -Hinchinbrook 64423 -Hinckley 57084 -Hind 57831 -HindIII 55849 -Hindawi 59039 -Hinder 58162 -Hindi 46912 -Hindley 64423 -Hindman 64657 -Hindmarch 63601 -Hindmarsh 62196 -Hindraf 63077 -Hinds 58802 -Hindsight 62762 -Hindu 46717 -Hinduism 55992 -Hindus 56687 -Hindustan 55037 -Hindustani 62196 -Hine 62613 -Hiner 65452 -Hines 52954 -Hinesburg 64905 -Hing 64201 -Hinge 56021 -Hinged 60670 -Hinges 56324 -Hingham 59923 -Hingis 65452 -Hinkle 61699 -Hinkley 62066 -Hino 62331 -Hinojosa 63419 -Hinrich 64201 -Hinsdale 58162 -Hinshaw 64201 -Hinsley 62613 -Hinson 61699 -Hint 56827 -Hinterland 62066 -Hinterlands 60580 -Hinton 55604 -Hints 47120 -Hinyokika 65170 -Hinze 63792 -Hinzugefügt 63792 -Hip 44570 -HipHop 58065 -Hipage 64905 -Hiphop 62917 -Hipp 64657 -Hipparcos 63601 -Hippie 56899 -Hippies 63245 -Hippo 58745 -Hippocampal 59630 -Hippocampus 64201 -Hippocratea 62762 -Hippocrates 63077 -Hippocratic 64905 -Hippodrome 60670 -Hippopotamus 63991 -Hippos 63991 -Hippy 60157 -Hippyshopper 64201 -Hips 57876 -Hipster 56899 -Hipsters 63991 -Hirai 61940 -Hiram 55766 -Hirano 60078 -Hirata 64423 -Hird 64423 -Hire 44223 -Hired 52244 -Hirefire 64423 -Hires 55821 -Hiri 64423 -Hiring 46769 -Hiro 59292 -Hiroaki 60157 -Hirokazu 60762 -Hiroki 61584 -Hiroko 62613 -Hiromi 62066 -Hiromitsu 64423 -Hirose 60580 -Hiroshi 54245 -Hiroshige 64423 -Hiroshima 54924 -Hirota 64423 -Hirotani 65452 -Hiroyuki 58262 -Hirsch 54188 -Hirschberg 65170 -Hirschfeld 63991 -Hirschman 64657 -Hirsh 63601 -Hirshhorn 64905 -Hirslanden 64423 -Hirst 57482 -Hirsutism 65452 -His 37681 -Hisar 63792 -Hisham 60000 -Hislop 60157 -Hispana 65452 -Hispanic 45754 -Hispanics 55154 -Hispano 62196 -Hist 56110 -HistCite 62917 -Histamine 63419 -Histidine 62331 -Histoacryl 65452 -Histochem 60580 -Histochemical 60762 -Histochemistry 61362 -Histocompatibility 62917 -Histogram 60078 -Histograms 63601 -Histoire 61362 -Histol 60856 -Histologic 59424 -Histological 56420 -Histology 57482 -Histone 58632 -Histopathologic 63601 -Histopathological 61472 -Histopathology 57970 -Histoplasma 64657 -Histor 65170 -Historia 56652 -Historian 56420 -Historian's 65452 -Historians 52074 -Historias 64905 -Historic 44229 -Historical 41983 -Historically 57524 -Histories 50461 -Historiography 65170 -Historique 63792 -History 33657 -History's 60492 -História 59848 -Histórico 59923 -Hit 45237 -Hitachi 49670 -Hitachi's 64423 -Hitch 53813 -Hitchcock 54857 -Hitchcock's 63601 -Hitched 62762 -Hitchens 59774 -Hitches 59039 -Hitchhiker 62331 -Hitchhiker's 61940 -Hitchhikers 65170 -Hitchin 60952 -Hitec 61472 -Hitech 62762 -Hither 64905 -Hitler 51008 -Hitler's 54519 -Hitlist 62066 -Hitman 56862 -Hitmen 64423 -Hitomi 58470 -Hitoshi 60952 -Hitpoints 63792 -Hits 43260 -Hitsugaya 64657 -Hitt 64201 -Hitter 61051 -Hitters 61472 -Hitting 54969 -Hittite 63601 -Hitwise 60078 -Hitz 61699 -Hiv 62613 -Hive 51570 -Hives 59357 -Hix 64423 -Hix's 65452 -Hixon 64905 -Hiya 58919 -Hizb 64423 -Hizbullah 63245 -Hizey 61818 -Hk 64423 -Hl 62762 -Hla 63419 -Hlth 63419 -Hm 63792 -Hmm 57970 -Hmmm 58632 -Hmong 58632 -Ho 47197 -Ho's 62469 -HoH 62469 -HoMedics 65452 -Hoa 59560 -Hoadley 64201 -Hoag 64657 -Hoagland 65170 -Hoang 62066 -Hoar 64657 -Hoard 63419 -Hoare 64657 -Hoary 57609 -Hoax 57524 -Hoaxes 65170 -Hob 60856 -Hobart 50394 -Hobbes 61699 -Hobbico 63601 -Hobbies 44324 -Hobbit 58632 -Hobbits 62066 -Hobbs 53630 -Hobby 47489 -Hobbyist 62613 -Hobbyists 64905 -Hobbyzone 65452 -Hobe 63419 -Hoberman 64657 -Hobgoblin 63991 -Hobie 61051 -Hobo 56080 -Hoboken 56262 -Hobos 62469 -Hobs 61584 -Hobson 56140 -Hobson's 63792 -Hobsons 63601 -Hoc 55398 -Hoch 63419 -Hochevar 63077 -Hochschild 63601 -Hochschule 61051 -Hochstein 65170 -Hock 60762 -Hockessin 64657 -Hockey 42513 -Hockey's 64905 -Hocking 59630 -Hockley 61818 -Hockney 63792 -Hocus 63077 -Hodder 63245 -Hoddesdon 64657 -Hodes 64657 -Hodge 54302 -Hodges 55578 -Hodgkin 60670 -Hodgkin's 56652 -Hodgkins 62917 -Hodgkinson 63991 -Hodgman 62469 -Hodgson 56585 -Hodson 61152 -Hoe 57122 -Hoechst 59357 -Hoefnagel 65452 -Hoehne 64905 -Hoek 63601 -Hoekstra 64657 -Hoes 58919 -Hoey 62917 -Hof 60238 -Hofer 60157 -Hoff 56388 -Hoffa 63245 -Hoffenheim 64657 -Hoffer 64201 -Hoffleit 61818 -Hoffman 49926 -Hoffman's 62331 -Hoffmann 56140 -Hoffmeister 64657 -Hoffnung 62917 -Hofman 63601 -Hofmann 58523 -Hofstra 55877 -Hog 54622 -Hoga 63991 -Hogan 50350 -Hogan's 58919 -Hogarth 62762 -Hoge 64201 -Hogeschool 64657 -Hogfish 63792 -Hogg 56585 -Hoggard 64905 -Hogi 62066 -Hogmanay 65452 -Hogs 57831 -Hogue 61940 -Hogwarts 57358 -Hoh 60952 -Hohe 65452 -Hohenheim 63601 -Hohner 59560 -Hoi 58919 -Hoist 60078 -Hoisting 64905 -Hoists 59292 -Hoja 64657 -Hokage 62066 -Hoke 60405 -Hokey 65170 -Hokie 64657 -Hokies 59227 -Hokitika 63601 -Hokkaido 55552 -Hokkien 61051 -Hoku 63991 -Hol 65170 -Hola 58688 -Holabird 65170 -Holand 62762 -Holborn 58577 -Holbrook 57696 -Holby 59848 -Holcomb 60492 -Holcombe 63245 -Hold 45843 -Hold'em 55849 -Holdall 63991 -Holdalls 63601 -Holdem 54813 -Holden 51052 -Holden's 62331 -Holder 47683 -Holder's 62469 -Holderness 63419 -Holders 48562 -Holding 48025 -Holdings 46957 -Holdman 64905 -Holdridge 65170 -Holds 50270 -Holdsworth 62066 -Holdup 65170 -Hole 47980 -Holes 52130 -Holey 65452 -Holgate 65452 -Holger 59292 -Holguin 65452 -Holi 63601 -Holic 65170 -Holiday 39642 -HolidayCity 65452 -Holidays 41012 -Holiness 58577 -Holistic 51590 -Holla 58065 -Holladay 63419 -Holland 45326 -Holland's 60078 -Hollandaise 64905 -Hollander 60238 -Hollands 61940 -Hollen 63991 -Hollenbach 65170 -Hollenbeck 54969 -Hollenden 64905 -Holler 60762 -Holley 57831 -Holliday 57278 -Hollie 59848 -Hollies 62196 -Holling 62762 -Hollinger 61472 -Hollingsworth 62066 -Hollington 62196 -Hollins 62469 -Hollis 56972 -Hollister 55877 -Holliston 64657 -Holloman 60580 -Hollow 49190 -Holloway 52411 -Hollows 64905 -Hollowtech 64657 -Holly 47107 -Holly's 60321 -Hollyoaks 59774 -Hollyscoop 60580 -Hollywood 41768 -Hollywood's 55274 -Hollywoodland 62331 -Holm 58470 -Holman 57046 -Holmberg 65170 -Holmdel 63991 -Holme 58979 -Holmer 62331 -Holmes 47047 -Holmfirth 64423 -Holmgren 60670 -Holmstrom 63991 -Holocaust 51434 -Holocene 58688 -Hologram 58017 -Holograms 62331 -Holographic 59164 -Holography 63601 -Holograpic 65170 -Holos 65170 -Holotype 53138 -Holroyd 60762 -Hols 63601 -Holset 63601 -Holst 63792 -Holstein 58417 -Holster 58313 -Holsters 56687 -Holt 51570 -Holter 61362 -Holton 59292 -Holtz 58745 -Holtzman 62196 -Holy 43573 -Holyhead 61051 -Holyoke 56452 -Holyrood 60762 -Holywell 62066 -Holz 63419 -Holzer 64905 -Hom 62469 -Homa 63792 -Homage 61152 -Homan 65452 -Hombre 54727 -Hombres 58065 -Home 25853 -Home's 57524 -HomeAbout 60762 -HomeAway 62331 -HomeBrowse 56935 -HomeCare 63419 -HomeCinema 64423 -HomeCollege 65170 -HomeEmailPrintTopSite 60670 -HomeFind 65452 -HomeGain 61472 -HomeHotelsHot 61152 -HomePage 51113 -HomePlug 62917 -HomePost 62196 -HomeRegister 64201 -HomeScape 58162 -HomeSearch 64905 -HomeSite 61152 -HomeTech 63991 -HomeTerms 59848 -HomeVideo 61699 -Homebase 63601 -Homebirth 64905 -Homeboy 62917 -Homebrew 53256 -Homebuilder 65170 -Homebuilders 63077 -Homebuilding 62066 -Homebuilt 64905 -Homebush 61472 -Homebuy 63792 -Homebuyer 61051 -Homebuyers 61818 -Homebuying 63245 -Homecare 58745 -Homeclick 61699 -Homecoming 50710 -Homedics 62066 -Homefind 64905 -Homefinder 65170 -Homefront 62196 -Homegrown 57122 -Homeland 47167 -Homeless 51996 -Homelessness 56231 -Homelife 63991 -Homelite 61699 -Homemade 50067 -Homemaker 61940 -Homemakers 63792 -Homemaking 64657 -Homenagem 64657 -Homeopathic 57199 -Homeopathy 56356 -Homeostasis 64657 -Homeowner 55934 -Homeowner's 60762 -Homeowners 51377 -Homeownership 58745 -Homepage 39986 -Homepages 60580 -Homer 49906 -Homer's 60580 -Homeric 65170 -Homeroom 61152 -Homers 63077 -Homerton 62469 -Homes 38020 -HomesRentalsForeclosuresHome 62196 -Homeschool 53196 -Homeschoolers 64423 -Homeschooling 56862 -Homesick 63077 -Homesite 59774 -Homespun 59560 -Homestar 61818 -Homestay 58745 -Homestead 51963 -Homesteading 63601 -Homestyle 61152 -Homethinking 62331 -Hometown 50074 -Homeward 63792 -Homeware 60405 -Homewares 56231 -Homewise 63419 -Homewood 56356 -Homework 49707 -Homeworks 65170 -Homeworld 65452 -Homicidal 64201 -Homicide 55552 -Homicides 65452 -Homies 64905 -Homily 62066 -Homing 63601 -Hominid 64905 -Hominy 65170 -Homme 53712 -Homo 54813 -Homocysteine 62196 -Homoeopathic 60952 -Homogeneous 60492 -HomoloGene 38280 -Homologous 62066 -Homologue 65452 -Homology 61940 -Homophobia 61152 -Homosassa 63792 -Homosexual 58632 -Homosexuality 59630 -Homozygous 63792 -Hon 53392 -Hon'ble 61699 -Honaljmirigy 65452 -Honcho 63991 -Honda 42334 -Honda's 59101 -HondaJet 64201 -Hondas 63601 -Hondo 61818 -Honduran 58745 -Honduras 45843 -Hone 62331 -Honea 62066 -Honeoye 65452 -Hones 63792 -Honesdale 63792 -Honest 53066 -Honestly 59424 -Honesty 57970 -Honey 47402 -Honey's 64657 -HoneyBee 63792 -Honeybee 60952 -Honeycomb 61256 -Honeycutt 60952 -Honeydew 63991 -Honeymoon 51275 -Honeymooners 64905 -Honeymoons 56899 -Honeypot 64423 -Honeys 61256 -Honeysuckle 61584 -Honeywell 53438 -Hong 39183 -HongKong 61584 -Hongda 65452 -Hongkong 58919 -Honig 62613 -Honing 64423 -Honiton 62762 -Honk 65452 -Honky 61818 -Honma 65170 -Honolulu 45444 -Honor 45400 -Honora 63991 -Honorable 51087 -Honorary 53423 -Honore 62613 -Honored 55060 -Honorees 64423 -Honoring 56862 -Honors 42687 -Honour 55274 -Honourable 56110 -Honoured 62066 -Honours 54439 -Hons 65452 -Hoo 61362 -Hoobastank 59774 -Hooch 65452 -Hoochie 63077 -Hood 46887 -Hood's 61584 -Hooded 50758 -Hoodia 55526 -Hoodie 51590 -Hoodies 53830 -Hoodlum 64657 -Hoodman 61472 -Hoodoo 63419 -Hoods 54519 -Hoody 55154 -Hoodz 65170 -Hoof 60321 -Hook 49505 -Hookah 61818 -Hooked 57046 -Hooker 54581 -Hookers 59774 -Hooking 58212 -Hooks 52164 -Hooksett 63077 -Hookup 58979 -Hookups 60238 -Hooley 65452 -Hooligan 64201 -Hooligans 62066 -Hoon 56293 -Hoong 65170 -Hoop 52339 -Hooper 56324 -Hooping 65170 -Hoopla 65452 -Hoople 63601 -Hoops 52040 -Hooray 60000 -Hoosen 65170 -Hoosick 59227 -Hoosier 56899 -Hoosiers 58212 -Hoot 59491 -Hooter 64905 -Hooters 57440 -Hootie 63077 -Hoots 63792 -Hoover 50136 -Hoover's 54264 -Hooverphonic 64905 -Hoovers 59292 -Hop 45066 -Hope 42046 -Hope's 63245 -Hopedale 65170 -Hopeful 61472 -Hopefully 49505 -Hopefuls 64905 -Hopeless 61584 -Hopelessly 65170 -Hopes 52484 -Hopewell 58802 -Hopf 59560 -Hopfield 63601 -Hopi 58745 -Hoping 56262 -Hopital 64423 -Hopkins 46245 -Hopkinson 62066 -Hopkinsville 64657 -Hopkinton 62762 -Hopman 64423 -Hoppa 64201 -Hoppe 60238 -Hopper 54133 -HopperTF 62066 -Hoppers 60580 -Hopping 59292 -Hops 60157 -Hopscotch 64657 -Hopson 64905 -Hopwood 64905 -Hoquiam 65170 -Hor 63601 -Hora 57009 -Horace 54151 -Horacio 63077 -Horan 63792 -Horatio 57785 -Horch 65452 -Horchow 62196 -Horde 51783 -Horeca 64657 -Horgan 61699 -Hori 62331 -Horii 65170 -Horiuchi 64657 -Horizon 47504 -Horizons 52699 -Horizont 65170 -Horizontal 46321 -Horizontally 63991 -Horizonte 60670 -Horley 64201 -Horlogerie 65452 -Horm 63419 -Hormel 61940 -Hormona 62469 -Hormonal 57046 -Hormone 52062 -Hormones 57318 -Horn 49103 -Horna 64201 -Hornaday 65452 -Hornady 62762 -Hornby 58688 -Horncastle 64657 -Hornchurch 55014 -Horne 56356 -Horned 56791 -Hornell 64657 -Horner 56262 -Horner's 65170 -Hornet 55202 -Hornets 53038 -Hornig 65452 -Horning 63991 -Horns 54835 -Hornsby 58688 -Hornsey 62331 -Horny 51463 -Horomia 63991 -Horoscope 47791 -Horoscopes 44528 -Horowitz 55448 -Horrible 56827 -Horrible's 63792 -Horrocks 64201 -Horror 45585 -HorrorManga 62917 -Horrors 58523 -Horry 61584 -Hors 59164 -Horse 41858 -Horse's 61362 -Horseback 55398 -Horseman 59491 -Horsemanship 63792 -Horsemen 61362 -Horsepower 57785 -Horserace 60670 -Horseracing 61940 -Horseradish 59424 -Horses 46809 -Horseshoe 54992 -Horseshoes 64201 -Horsey 60952 -Horsham 56200 -Horsley 62196 -Horst 57084 -Horstman 65452 -Hort 64905 -Horta 64201 -Hortense 65170 -Horticulturae 64905 -Horticultural 56756 -Horticulture 53613 -Horticulturist 64905 -Hortiplex 62469 -Horton 52291 -Horton's 63419 -Hortons 59424 -Horus 59424 -Horvath 59491 -Horwitz 61472 -Horwood 64905 -HorzScrollBar 63245 -Hos 64657 -Hosa 62917 -Hosaka 64201 -Hosanna 64423 -Hose 49873 -Hosea 62066 -Hoseflex 63991 -Hoses 55274 -Hoshasen 65452 -Hoshi 62066 -Hoshino 61818 -Hosiery 57566 -Hoskin 64905 -Hoskins 59560 -Hosni 64905 -Hosoi 65452 -Hosokawa 62762 -Hosp 53712 -Hospice 50949 -Hospices 63419 -Hospital 39790 -Hospital's 59702 -Hospitalier 60762 -Hospitalist 57566 -Hospitalists 64201 -Hospitality 47100 -Hospitalization 60952 -Hospitalized 59702 -Hospitals 45137 -Hoss 63601 -Hossa 62613 -Hossain 62917 -Hossam 63991 -Hossein 62613 -Hosseini 61699 -Host 43924 -HostBaby 62469 -HostGator 63077 -HostPapa 61584 -Hostage 59039 -Hostages 64423 -Hostal 59702 -Hosted 43645 -Hostel 50270 -Hostelling 63601 -Hostels 49584 -Hostess 56170 -Hostetler 63245 -Hostgator 65170 -Hostile 58212 -Hostility 63419 -Hosting 39401 -Hostname 58113 -Hosts 49296 -Hosur 63077 -Hot 36037 -HotBot 63991 -HotChalk 62331 -HotDog 64201 -HotFreeLayouts 64905 -HotFrog 57876 -HotJobs 47675 -HotList 64423 -HotLog 60321 -HotProperty 59774 -HotSpot 53779 -HotSpotText 65452 -HotSpotTextStyle 65170 -HotSync 64905 -HotText 64201 -HotU 62613 -HotUKDeals 65452 -Hota 63792 -Hotaling 64201 -Hotaru 64657 -Hotbox 64657 -Hotcakes 61472 -Hotchkis 63991 -Hotchkiss 61699 -Hotcourses 54622 -Hotdog 64423 -Hotei 64657 -Hotel 34745 -Hotel's 60952 -HotelChatter 59848 -HotelClub 62613 -HotelRent 61472 -HotelbyClass 63601 -Hoteles 56388 -Hotelier 63991 -Hoteliers 62331 -Hotell 52496 -Hotels 35256 -Hotfix 61818 -Hotfrog 60157 -Hothouse 63792 -HotinOKC 64657 -Hotjobs 52164 -Hotline 50726 -Hotlines 60000 -Hotlink 64201 -Hotlinks 62469 -Hotlist 59357 -Hotmail 44211 -Hotness 59702 -Hotpoint 55500 -Hotrod 65452 -Hots 64905 -Hotshot 64905 -Hotspot 54969 -Hotspots 55877 -Hotspur 56935 -Hott 61362 -Hotta 65170 -Hotter 61472 -Hottest 48097 -Hottie 55526 -Hotties 53882 -Hotton 64905 -Hottub 62917 -Hotty 62196 -Hotwife 62613 -Hotwire 48247 -Hotz 65452 -Hou 57358 -Houari 65452 -Houdini 58065 -Hough 54813 -Houghton 50638 -Houkou 64905 -Houle 62762 -Houlihan 63792 -Houma 58919 -Houmas 63991 -Hound 51700 -Hound's 63792 -Hounds 59630 -Houndstooth 62331 -Hounslow 54226 -Hour 43377 -Hourglass 58745 -Hourly 49720 -Hours 40957 -Housatonic 62196 -House 34849 -House's 58860 -HouseHandler 60762 -Houseboat 59923 -Houseboats 60856 -Housebreaking 65170 -Housecat 64905 -Housed 61472 -Household 45484 -Householder 61256 -Householders 64201 -Households 53392 -Housekeeper 61584 -Housekeeping 52571 -Housemate 65170 -Houseplants 61818 -Houser 60952 -Houses 43654 -Houseshare 61362 -Houseware 60856 -Housewares 52280 -Housewarming 58860 -Housewife 56972 -Housewiv 64657 -Housewives 51043 -Housework 64201 -Housing 39983 -HousingZone 58688 -Housings 60000 -Housman 63792 -Houston 40381 -Houston's 58017 -Houstonisimo 63991 -Houstonist 63601 -Hout 63419 -Houta 61152 -Houten 63601 -Hove 53423 -Hover 56551 -Hovercraft 64423 -Hovering 64423 -Hovey 65170 -Hovnanian 65170 -How 31150 -How'd 61818 -How's 53762 -HowStuffWorks 55906 -HowTo 57278 -Howard 42782 -Howard's 55821 -HowardForums 56862 -Howards 63077 -Howarth 59702 -Howcast 55552 -Howden 64657 -Howdy 57741 -Howe 52521 -Howell 51942 -Howell's 64201 -Howells 59848 -Howes 61051 -However 44964 -Howey 65170 -Howick 63245 -Howie 55552 -Howie's 63601 -Howitzer 64905 -Howl 61152 -Howl's 64657 -Howland 58919 -Howler 63077 -Howlers 63991 -Howlett 62331 -Howley 63077 -Howlin 65170 -Howling 59101 -Howls 64905 -Howrah 63419 -Hows 57238 -Howser 65452 -Howson 65170 -Howto 54264 -HowtoForge 62762 -Howtos 55849 -Hox 65170 -Hoxton 57696 -Hoy 54005 -Hoya 56791 -Hoyas 63991 -Hoyer 60762 -Hoyle 59702 -Hoyo 63419 -Hoyt 56827 -Hp 53517 -HpaII 61940 -Hq 64657 -Hr 57160 -Hradhouse 65452 -HrcA 63601 -Hrithik 58262 -Hrs 58688 -Hrvatska 61051 -Hrvatski 52584 -Hryvnia 62613 -Hs 61940 -Hsiang 63792 -Hsiao 62196 -Hsieh 61051 -Hsien 62066 -Hsin 62066 -Hsinchu 63601 -Hsing 62762 -Hsu 54560 -Hsueh 65452 -Ht 60321 -Htc 63792 -Html 54992 -HtmlTableCell 65452 -Hts 63419 -Http 59560 -HttpURL 57831 -Hu 51211 -Hua 53423 -Huachuca 63991 -Huahine 61818 -Huai 61584 -Huan 62331 -Huang 49777 -Huaraz 65170 -Huard 64423 -Huawei 57440 -Huazhong 65170 -Hub 46280 -HubOnline 60580 -HubPages 59491 -Hubbard 53024 -Hubbel 64905 -Hubbell 59424 -Hubber 62196 -Hubbers 62469 -Hubble 54321 -Hubbub 63601 -Hubby 60492 -Hubcap 65170 -Hubei 57831 -Huber 55877 -Huberman 64201 -Hubert 53934 -Hubli 63077 -Hubpages 62331 -Hubrings 64657 -Hubs 50815 -Hubtivity 62613 -Huck 58919 -Huckabee 54792 -Huckabee's 61818 -Huckelberry 64905 -Huckleberry 60762 -Hucknall 64657 -Hud 60157 -Hudak 64423 -Huddersfield 53138 -Huddle 60856 -Huddleston 61152 -Hudební 59424 -Hudgens 51482 -Hudgins 64201 -Hudpleje 62917 -Hudson 44614 -Hudson's 48524 -Hudsonville 62196 -Hudsucker 62469 -Hue 57440 -Huebner 62917 -Hueco 65452 -Huelva 62917 -Hueneme 59357 -Huerta 61818 -Huet 63419 -Huevos 64201 -Huey 57653 -Huff 57440 -Huff's 64201 -HuffPost 53182 -HuffPost's 58470 -Huffington 52029 -HuffingtonPost 64905 -Huffman 57318 -Huffpost 58979 -Huffy 63991 -Hug 55604 -Huge 46202 -Huger 64423 -Hugg 61362 -Huggable 59101 -Hugged 62196 -Hugger 60856 -Huggies 64657 -Hugging 60952 -Huggins 60762 -Hugh 47772 -Hugh's 64657 -Hughart 64905 -Hughes 47453 -Hughes's 64905 -HughesNet 61256 -Hughley 64201 -Hugo 49828 -Hugo's 65170 -Hugs 53630 -Huguenot 63419 -Hugues 62762 -Huguley 64905 -Huh 58577 -Huhne 65170 -Huhtaniemi 65452 -Hui 53779 -Huis 65170 -Huizhu 60492 -Huizinga 65170 -Hula 57566 -Hulbert 61362 -Hulda 61152 -Hulett 65452 -Hulk 49783 -Hull 47745 -Hull's 63419 -Hullabaloo 61584 -Hulme 63245 -Hulse 62066 -Hulsey 64423 -Hultgren 63419 -Hulu 52648 -Hum 49873 -Huma 65452 -Human 36600 -Humana 56324 -Humane 52673 -Humanism 62917 -Humanist 61584 -Humanistic 61362 -Humanitarian 52175 -Humanities 47721 -Humanity 53316 -Humanoid 59292 -Humans 49860 -Humantics 64657 -Humax 56862 -Humber 53438 -Humberside 54479 -Humbert 63245 -Humberto 60078 -Humble 54664 -Humboldt 52872 -Humbucker 63077 -Hume 55154 -Humes 64423 -Humic 64657 -Humid 63245 -Humidifier 61699 -Humidifiers 58523 -Humidity 53286 -Humidor 63792 -Humidors 64423 -Humiliation 61940 -Humility 61940 -Hummel 56827 -Hummels 64905 -Hummer 50185 -Humminbird 64657 -Humming 63419 -Hummingbird 56140 -Hummingbirds 62066 -Hummus 61152 -Humor 45321 -Humoral 64423 -Humorous 54078 -Humour 53865 -Hump 59357 -Humpback 62613 -Humphrey 53470 -Humphrey's 61472 -Humphreys 57238 -Humphries 58802 -Humphry 65170 -Humphrys 63601 -Humppa 65170 -Humps 65452 -Humpty 62066 -Humsurfer 61472 -Humsurfers 63419 -Humvee 61699 -Hun 58632 -Hunan 57238 -Hunchback 62762 -Hundley 65452 -Hundred 51741 -Hundreds 49274 -Hung 52954 -Hungaria 65452 -Hungarian 47427 -Hungarians 63077 -Hungary 43471 -Hungary's 63991 -Hunger 52686 -Hungerford 62762 -Hungry 51600 -Hunk 59101 -Hunks 58802 -Hunky 61818 -Hunley 64905 -Hunstanton 65170 -Hunt 45826 -Hunt's 60952 -Hunted 62196 -Hunter 43435 -Hunter's 55992 -Hunterdon 59227 -Hunters 49906 -Huntersville 64905 -Hunting 45116 -Huntingdon 55849 -Huntingdonshire 63792 -Huntington 48970 -Huntington's 58365 -Huntingtons 64423 -Huntley 57399 -Huntly 64201 -Hunton 62762 -Hunts 56021 -Huntsman 58470 -Huntsville 53917 -Hunziker 62331 -Huong 62613 -Huq 64905 -Hur 62196 -Hurd 58632 -Hurdle 59424 -Hurdles 59923 -Hurghada 58979 -Hurley 51473 -Hurley's 63077 -Hurling 59491 -Huron 54685 -Hurrah 62613 -Hurray 64423 -Hurricane 45112 -Hurricanes 49834 -Hurry 53153 -Hurst 54499 -Hurst's 63991 -Hurstbourne 64905 -Hurston 65170 -Hurstville 63419 -Hurt 52164 -Hurtado 62469 -Hurting 58262 -Hurts 53196 -Hurwitz 59164 -Hus 62917 -Husaberg 63991 -Husain 63419 -Husband 51166 -Husband's 57358 -Husbandry 58802 -Husbands 60238 -Huseyin 65170 -Hush 54360 -Husk 64201 -Husker 60856 -Huskers 62613 -Huskie 64657 -Huskies 55084 -Husky 53712 -Huson 64905 -Husqvarna 57696 -Huss 63601 -Hussain 55274 -Hussam 65452 -Hussein 49783 -Hussein's 58262 -Hussey 59774 -Hussy 65170 -Husted 64201 -Hustla 64201 -Hustle 51680 -Hustler 54969 -Huston 57653 -Husuni 63419 -Hut 51985 -Hutch 56585 -Hutcheon 62762 -Hutcherson 64423 -Hutches 60856 -Hutcheson 63601 -Hutchings 62331 -Hutchins 58417 -Hutchinson 51340 -Hutchinson's 64423 -Hutchison 58212 -Huts 63792 -Hutson 61699 -Hutt 57009 -Hutton 56080 -Hutu 65170 -Huub 62613 -Huw 61362 -Hux 65170 -Huxley 57970 -Huy 62469 -Huygens 58113 -Huynh 64201 -Huzinaga 64423 -Hv 63419 -Hvac 60580 -Hvatayet 65452 -Hw 65170 -Hwa 59630 -Hwan 64201 -Hwang 56935 -Hwy 47768 -Hx 64905 -Hy 62331 -Hyacinth 60670 -Hyakko 65452 -Hyaluronan 62331 -Hyaluronic 62066 -Hyams 60952 -Hyannis 60952 -Hyatt 49860 -Hyattsville 61051 -Hyborian 60405 -Hybrid 45756 -HybridZ 64905 -Hybridization 57358 -Hybrids 55202 -Hyco 64657 -Hyd 51321 -Hydatid 63792 -Hydatidiform 64905 -Hyde 49285 -Hyder 63991 -Hyderabad 49670 -Hyderabadi 65170 -Hydra 55202 -Hydranautics 60952 -Hydrangea 62196 -Hydrant 62613 -Hydrate 62066 -Hydrated 65452 -Hydrating 57238 -Hydration 54924 -Hydraulic 50507 -Hydraulics 57524 -Hydraxis 60670 -Hydref 64905 -Hydride 62762 -Hydro 52327 -Hydrocarbon 59491 -Hydrocarbons 60492 -Hydrocephalus 64423 -Hydrochloric 62066 -Hydrochloride 57696 -Hydrochlorothiazide 61051 -Hydrocodone 55130 -Hydrocollator 65170 -Hydrocortisone 60078 -Hydrocotyle 63245 -Hydrodynamic 61152 -Hydroelectric 59630 -Hydrogel 64201 -Hydrogen 50686 -Hydrogenated 64905 -Hydrogenation 62613 -Hydrogeology 63419 -Hydrographic 57238 -Hydrography 64905 -Hydrolase 63991 -Hydrolases 63077 -Hydrologic 60321 -Hydrological 61472 -Hydrology 56618 -Hydrolysis 58802 -Hydrometer 64657 -Hydronic 62917 -Hydronics 64657 -Hydrophilic 61940 -Hydrophobic 62469 -Hydroponic 59101 -Hydroponics 57741 -Hydropower 59923 -Hydrostatic 61818 -Hydrotherapy 59101 -Hydrothermal 64201 -Hydroxide 61940 -Hydroxy 62196 -Hydroxyapatite 64657 -Hydroxycut 65452 -Hydroxyl 63419 -Hye 57524 -Hyena 64657 -Hyg 56862 -Hygena 58979 -Hygiene 50734 -Hygienic 60856 -Hygienist 59101 -Hygienists 63601 -Hygyrchedd 62196 -Hyjal 55877 -Hylan 63991 -Hyland 58860 -Hyland's 64201 -Hylton 61152 -Hyman 58688 -Hymenoptera 62331 -Hymn 56356 -Hymnal 63991 -Hymne 64905 -Hymns 57831 -Hynde 62762 -Hynes 57741 -Hynix 61699 -Hyogo 62469 -Hyori 65452 -Hyoscyamine 64905 -Hyosung 63419 -Hypa 64657 -Hype 52534 -Hypebeast 64657 -Hyper 53081 -HyperLink 59227 -HyperLocal 63419 -HyperTeX 63419 -HyperTerminal 63601 -HyperX 62917 -Hyperactive 61818 -Hyperactivity 58162 -Hyperbaric 61940 -Hyperbolic 60405 -Hypercholesterolemia 65452 -Hyperemesis 65170 -Hyperglycemia 63792 -Hyperhidrosis 64201 -Hyperhomocysteinemia 65452 -Hypericum 63792 -Hyperion 54540 -Hyperlink 59491 -Hyperlinks 61818 -Hyperlite 65452 -Hypermedia 62066 -Hyperosmotic 63245 -Hyperplasia 62331 -Hypersensitivity 61818 -Hypersonic 65170 -Hyperspace 65170 -Hyperspectral 65452 -Hypertech 64201 -Hypertens 61699 -Hypertension 50101 -Hypertensive 61051 -Hypertext 55738 -Hyperthermia 65452 -Hyperthyroidism 63792 -Hypertonic 64905 -Hypertrophic 63601 -Hypertrophy 61818 -Hyphomicrobium 60492 -HypnoBirthing 64905 -Hypnosis 52940 -Hypnotherapy 58365 -Hypnotic 59774 -Hypnotist 65452 -Hypnotize 65452 -Hypo 63792 -HypoVereinsbank 62331 -Hypoallergenic 64201 -Hypochlorite 62762 -Hypocrisy 60580 -Hypocrites 65170 -Hypoglycemia 60670 -Hypotension 63245 -Hypothalamic 64905 -Hypothermia 60670 -Hypotheses 61699 -Hypothesis 56021 -Hypothetical 61584 -Hypothyroid 64905 -Hypothyroidism 61051 -Hypoxia 60000 -Hypoxic 63077 -Hyrule 63245 -Hyscience 65170 -Hysham 64905 -Hysol 64423 -Hysterectomy 61362 -Hysteresis 62196 -Hysteria 60580 -Hysterical 64905 -Hythe 61051 -Hytrin 64423 -Hyun 58212 -Hyundai 46843 -Hyundai's 64905 -Hyung 63792 -Hyver 61256 -Hyves 54059 -Hyvää 64905 -Hywel 65452 -Hz 48552 -Håkan 62331 -Héctor 63601 -Hélène 62196 -Hónaljmirigy 62917 -Hôpital 57696 -Hôtel 57785 -Hôtels 65170 -Höjdare 61362 -Hölderlin 65452 -I 22780 -I'D 63601 -I'LL 59630 -I'M 52210 -I'VE 60492 -I'am 64423 -I'd 39388 -I'l 64905 -I'll 39046 -I'm 32813 -I'mThatGuy 65452 -I'ma 49828 -I'mma 63245 -I's 60000 -I'v 64201 -I've 36231 -IA 43974 -IAA 56585 -IAAF 61584 -IAAL 63077 -IAB 57653 -IAC 53167 -IACMR 64201 -IAD 61584 -IAE 61940 -IAEA 54857 -IAF 63601 -IAFD 63792 -IAFF 64201 -IAG 61818 -IAH 65452 -IAI 60670 -IAIN 64657 -IAM 58365 -IAN 56972 -IANA 61699 -IANS 61699 -IAP 61362 -IAPS 65452 -IAPs 65170 -IAQ 59424 -IAR 58688 -IARC 61362 -IAS 53934 -IASB 64201 -IASC 62331 -IAT 57831 -IATA 55014 -IAU 58632 -IB 49458 -IBA 59491 -IBANEZ 62917 -IBB 61362 -IBC 56862 -IBD 58365 -IBDN 65452 -IBE 65452 -IBERIA 59491 -IBEW 63077 -IBEX 63601 -IBF 63792 -IBI 64657 -IBIS 64201 -IBIZA 62917 -IBM 41965 -IBM's 56356 -IBMT 64423 -IBN 59357 -IBP 64201 -IBRA 64905 -IBRARAM 64657 -IBRD 61472 -IBS 54924 -IBSF 64905 -IBTimes 64657 -IBU 63601 -IBook 65452 -IC 45450 -ICA 52805 -ICAI 63601 -ICANN 52447 -ICANN's 64905 -ICANNWiki 63792 -ICAO 55793 -ICARDA 65452 -ICASSP 64201 -ICBC 63991 -ICC 51511 -ICCTA 64657 -ICCVAM 63601 -ICD 56618 -ICDL 62917 -ICDs 62196 -ICE 49992 -ICEBERG 63991 -ICED 63077 -ICEL 63792 -ICELAND 59560 -ICEM 61362 -ICEQ 63601 -ICES 60238 -ICF 59560 -ICFP 63601 -ICG 60321 -ICH 59702 -ICHAEL 64905 -ICI 58632 -ICICI 54749 -ICID 58577 -ICIS 55299 -ICISWiki 62066 -ICIT 59357 -ICJ 64905 -ICJIA 63245 -ICL 58523 -ICM 58365 -ICMAT 59101 -ICMP 59848 -ICN 59227 -ICO 62469 -ICOA 64905 -ICOM 63991 -ICON 55906 -ICONOCLA 60670 -ICONOCLASTS 60670 -ICONS 62917 -ICOS 65452 -ICP 53865 -ICPSR 64905 -ICQ 50766 -ICQI 61818 -ICR 58313 -ICRA 58065 -ICRC 57524 -ICRP 60670 -ICS 54005 -ICSD 60000 -ICSE 63419 -ICSI 61256 -ICSU 63245 -ICT 46859 -ICTP 59923 -ICTs 63077 -ICU 52739 -ICUs 63245 -ICV 62917 -ICVTS 60762 -ICZM 61152 -ICs 56110 -ID 39443 -ID's 59923 -IDA 55578 -IDAHO 57482 -IDAK 57122 -IDAutomation 64423 -IDB 62613 -IDBI 65170 -IDC 53779 -IDD 60405 -IDDM 65452 -IDE 49302 -IDEA 53153 -IDEAL 58017 -IDEALS 55226 -IDEAS 49382 -IDEC 63991 -IDENT 56791 -IDENTIFICATION 56231 -IDENTIFIED 65170 -IDENTIFIER 64423 -IDENTIFY 61051 -IDENTIFYING 63792 -IDENTITY 60405 -IDEO 65170 -IDES 59292 -IDEs 54321 -IDF 57046 -IDG 52107 -IDG's 65452 -IDI 63792 -IDIS 62613 -IDL 60952 -IDLE 60238 -IDLH 63991 -IDLO 65452 -IDM 58577 -IDN 59424 -IDNR 62196 -IDOE 62917 -IDOL 62613 -IDOLE 61584 -IDOT 63419 -IDP 57084 -IDPH 63991 -IDPs 61699 -IDR 56452 -IDRC 61362 -IDS 50476 -IDSA 62762 -IDT 59848 -IDU 64905 -IDW 62469 -IDWS 61584 -IDX 57831 -IDeA 64905 -IDs 54706 -IE 46555 -IE's 64423 -IEA 58860 -IEAM 61152 -IEC 54321 -IED 59774 -IEDM 63792 -IEDR 64657 -IEE 56110 -IEEE 39818 -IEF 62331 -IEG 57741 -IEICE 57653 -IELTS 57609 -IEMA 60856 -IEP 55448 -IEPA 62762 -IES 59630 -IESE 63792 -IESG 64905 -IET 63419 -IETF 56652 -IEW 63792 -IF 44827 -IFA 56140 -IFAD 63991 -IFAD's 64201 -IFAM 62196 -IFAT 62917 -IFAW 64423 -IFB 61818 -IFBB 62917 -IFC 52982 -IFD 64905 -IFE 64657 -IFES 64657 -IFF 63419 -IFI 61051 -IFILM 63991 -IFIP 62469 -IFM 63991 -IFN 58979 -IFO 63077 -IFP 61699 -IFPI 65452 -IFR 61152 -IFRA 64657 -IFRAME 61362 -IFRC 65452 -IFRS 58688 -IFS 57358 -IFT 58162 -IFrame 65170 -IG 53779 -IGA 56791 -IGBARAS 61940 -IGBT 62917 -IGC 63601 -IGF 60321 -IGFET 59630 -IGFETs 60670 -IGG 63077 -IGH 65170 -IGI 59848 -IGM 62762 -IGMP 64905 -IGN 49707 -IGN's 56170 -IGNITION 63077 -IGNORE 63601 -IGNOU 62066 -IGP 63601 -IGR 61584 -IGS 60078 -IGT 60856 -IGURE 63245 -IGWB 65170 -IGaCoS 64905 -IH 53038 -IHBI 60952 -IHC 57741 -IHD 63077 -IHE 65170 -IHG 62762 -IHH 61940 -IHL 62469 -IHMC 58745 -IHOP 62613 -IHS 59923 -IHSA 64201 -IHT 55107 -IHT's 60405 -II 36593 -II's 59774 -IIA 58745 -IIB 59630 -IIC 61940 -IID 63601 -IIE 65452 -IIFA 63792 -IIHF 61362 -III 40136 -III's 62469 -IIIA 61818 -IIIB 60952 -IIIC 63792 -IIIa 62762 -IIIb 64201 -IIL 62196 -IIM 58745 -IIMB 64201 -IIP 64423 -IIPS 63991 -IIR 57238 -IIRC 64657 -IIRL 63601 -IIS 50514 -IISS 65452 -IIT 56170 -IITA 64905 -IITs 64657 -IIa 59227 -IIb 60000 -IIs 61818 -IJ 50915 -IJJF 64657 -IJK 65170 -IK 56721 -IKE 60762 -IKEA 54560 -IKEAFANS 62469 -IKEDA 64201 -IKF 65452 -IKK 63245 -IKON 63601 -IL 38977 -ILA 62762 -ILC 60952 -ILCS 58802 -ILD 62762 -ILE 63792 -ILI 63792 -ILL 54992 -ILLEGAL 57440 -ILLIAMSON 64201 -ILLINOIS 54560 -ILLNESS 63245 -ILLS 65452 -ILLUSTRATED 62331 -ILLUSTRATION 62066 -ILLUSTRATIONS 61699 -ILLUSTRATOR 64657 -ILM 60238 -ILO 56618 -ILOG 63792 -ILP 62469 -ILR 63245 -ILRI 64657 -ILS 56721 -ILSS 62469 -ILVKT 65452 -ILX 64423 -ILY 63792 -IM 41420 -IMA 56080 -IMAC 64905 -IMAGE 50499 -IMAGERY 64905 -IMAGES 53052 -IMAGINE 62331 -IMAGING 58113 -IMAM 63419 -IMAP 56899 -IMAPS 64657 -IMAX 53286 -IMB 59774 -IMBA 64423 -IMC 55178 -IMCs 65452 -IMD 60238 -IMDB 54879 -IMDb 41092 -IMDbPro 51238 -IMDbTV 51303 -IME 62762 -IMEC 64201 -IMEEM 52339 -IMEI 58577 -IMF 50227 -IMG 54706 -IMGT 62469 -IMHO 59101 -IMI 60078 -IMJ 64201 -IML 63419 -IMM 64905 -IMMA 65170 -IMMEDIATE 52832 -IMMEDIATELY 58802 -IMMIGRANT 63792 -IMMIGRANTS 64201 -IMMIGRATION 58523 -IMMULITE 65452 -IMMUNE 61584 -IMMUNITY 65452 -IMO 54360 -IMP 58113 -IMPACT 51660 -IMPACTADORAS 63991 -IMPACTS 63792 -IMPAIRMENT 64201 -IMPERIAL 60952 -IMPLAN 65170 -IMPLANT 64201 -IMPLEMENT 64201 -IMPLEMENTATION 53762 -IMPLEMENTING 61940 -IMPLICATIONS 56420 -IMPLIED 54902 -IMPORT 57609 -IMPORTANCE 61362 -IMPORTANT 51396 -IMPORTED 62196 -IMPORTS 61818 -IMPOSSIBLE 65452 -IMPRESSIONS 64201 -IMPROVE 57482 -IMPROVED 58113 -IMPROVEMENT 55226 -IMPROVEMENTS 56935 -IMPROVING 57399 -IMR 64905 -IMS 53899 -IMSI 60238 -IMSL 62613 -IMSLP 62917 -IMT 59560 -IMU 63792 -IMVU 58262 -IMarEST 65452 -IMechE 63245 -IMs 62469 -IN 34894 -INA 59702 -INABILITY 59630 -INAC 63991 -INACCURACIES 63245 -INAH 63792 -INAPPROPRIATE 64657 -INB 64201 -INBOX 62613 -INC 46020 -INCA 63792 -INCENTIVES 63077 -INCH 55474 -INCHES 59491 -INCI 63077 -INCIDENCE 63601 -INCIDENT 61256 -INCIDENTAL 59923 -INCIS 63077 -INCITS 63245 -INCLUDE 54581 -INCLUDED 56110 -INCLUDES 57566 -INCLUDING 52765 -INCLUSION 64657 -INCLUSIVE 63419 -INCOME 53882 -INCOMPLETE 64905 -INCONNU 65452 -INCORPORATED 54969 -INCORPORATION 62613 -INCORRECT 65170 -INCOSE 65452 -INCREASE 57084 -INCREASED 60952 -INCREASES 62762 -INCREASING 61152 -INCREDIBLE 60856 -INCURRED 65452 -IND 56110 -INDE 64905 -INDEED 59357 -INDEMNIFICATION 64657 -INDEMNITY 64201 -INDEPENDENCE 60952 -INDEPENDENT 55684 -INDEX 46705 -INDEXES 64423 -INDIA 49229 -INDIAN 52858 -INDIANA 55934 -INDIANAPOLIS 62196 -INDIANS 63792 -INDICATE 65170 -INDICATED 62917 -INDICATES 61818 -INDICATIONS 64423 -INDICATOR 61152 -INDICATORS 56791 -INDICES 63245 -INDIE 61940 -INDIRECT 62469 -INDIVIDUAL 55711 -INDIVIDUALES 65452 -INDIVIDUALS 61472 -INDL 65170 -INDONESIA 56518 -INDOOR 59357 -INDS 63419 -INDUCED 60000 -INDUCTION 64657 -INDUSTRIAL 51531 -INDUSTRIES 53470 -INDUSTRY 48672 -INDY 62762 -INE 64657 -INEQUALITY 65170 -INF 53377 -INFANT 60157 -INFANTS 62917 -INFECTED 64201 -INFECTION 60492 -INFECTIONS 63991 -INFECTIOUS 63601 -INFERNO 64201 -INFERTILITY 65452 -INFINITE 62066 -INFINITI 61699 -INFINITY 60078 -INFLATABLE 64905 -INFLATION 62196 -INFLUENCE 57399 -INFLUENCES 65452 -INFLUENZA 64905 -INFN 61818 -INFO 47060 -INFOCon 64201 -INFORM 63077 -INFORMAL 57566 -INFORMATION 42784 -INFORMATIONAL 64423 -INFORMED 60078 -INFORMS 64201 -INFOSYS 64905 -INFRARED 61472 -INFRASTRUCTURE 57238 -INFRINGEMENT 62762 -INFUSION 63792 -ING 51909 -INGERSOLL 65170 -INGRAM 64905 -INGREDIENT 63792 -INGREDIENTS 59101 -INH 59702 -INHIBITION 63077 -INHIBITOR 64201 -INHIBITORS 61362 -INI 61256 -INIS 64657 -INIST 44937 -INIT 65170 -INITIAL 58688 -INITIATIVE 61051 -INITIATIVES 60762 -INJ 61699 -INJECTION 58417 -INJECTOR 63792 -INJURIES 63792 -INJURY 58802 -INK 54946 -INKJET 65170 -INL 62196 -INLAND 64905 -INLET 62762 -INLINE 62762 -INM 59774 -INMARSAT 64423 -INN 54857 -INNER 59227 -INNOVATEK 60670 -INNOVATION 55657 -INNOVATIONS 64201 -INNOVATIVE 61051 -INNS 64905 -INO 61818 -INORGANIC 63077 -INOVA 64423 -INP 58919 -INPUT 54992 -INPUTS 65452 -INQ 64657 -INQUIRER 58523 -INQUIRIES 59923 -INQUIRY 60157 -INR 53331 -INRA 60856 -INRIA 56687 -INRnews 63601 -INS 56050 -INSANE 63245 -INSECT 65170 -INSECTICIDES 63077 -INSERM 60000 -INSERT 54499 -INSERTS 65170 -INSET 65170 -INSIDE 51257 -INSIDER 61940 -INSIGHT 62196 -INSIGHTS 63419 -INSOUND 63792 -INSPEC 54341 -INSPECT 62917 -INSPECTED 65452 -INSPECTION 56356 -INSPECTIONS 63419 -INSPECTOR 60856 -INSPECTORS 65170 -INSPIRATION 61472 -INSPIRATIONAL 63077 -INSPIRE 64423 -INSPIRED 61256 -INSPIRON 63792 -INST 58688 -INSTALL 57970 -INSTALLATION 54792 -INSTALLATIONS 58688 -INSTALLED 60492 -INSTALLER 64423 -INSTALLING 63601 -INSTANT 56231 -INSTANTLY 62469 -INSTEAD 62331 -INSTEON 63601 -INSTITUTE 53392 -INSTITUTES 63601 -INSTITUTION 61051 -INSTITUTIONAL 55992 -INSTITUTIONS 58523 -INSTRUCTION 57741 -INSTRUCTIONAL 60238 -INSTRUCTIONS 54560 -INSTRUCTOR 63601 -INSTRUMENT 58470 -INSTRUMENTAL 61699 -INSTRUMENTATION 63419 -INSTRUMENTS 56080 -INSULATED 63792 -INSULATION 60856 -INSULIN 62613 -INSURANCE 49886 -INSURED 65170 -INSURER 64905 -INSURERS 63245 -INT 55060 -INT'L 63077 -INTAKE 61362 -INTC 62917 -INTEGER 57876 -INTEGRA 63601 -INTEGRAL 58919 -INTEGRATED 56485 -INTEGRATION 58262 -INTEGRATIVE 65452 -INTEGRITY 60492 -INTEL 54924 -INTELLECTUAL 58802 -INTELLIGENCE 56080 -INTELLIGENT 61940 -INTENDED 60405 -INTENSITY 64201 -INTENSIVE 63245 -INTENT 63077 -INTENTION 64201 -INTER 62613 -INTERACT 61940 -INTERACTION 61362 -INTERACTIONS 60580 -INTERACTIVE 56021 -INTERCOM 63601 -INTERCONNECT 64905 -INTEREST 52280 -INTERESTED 59039 -INTERESTING 62469 -INTERESTS 58523 -INTERFACE 56452 -INTERFACES 59630 -INTERFERENCE 63419 -INTERGOVERNMENTAL 62331 -INTERIM 61362 -INTERIOR 55793 -INTERIORS 63601 -INTERMEDIATE 56972 -INTERN 62917 -INTERNAL 54226 -INTERNATIONAL 45989 -INTERNATIONALE 62917 -INTERNET 48109 -INTERNSHIP 62613 -INTERPRETATION 60762 -INTERREG 61472 -INTERSECTION 63601 -INTERSTATE 63792 -INTERVAL 63601 -INTERVENTION 62196 -INTERVIEW 55500 -INTERVIEWS 56110 -INTEVIEW 63991 -INTI 65452 -INTIS 63991 -INTL 57084 -INTO 49986 -INTOSAI 63419 -INTOXICATED 61818 -INTRANET 64905 -INTRAVENOUS 65452 -INTRO 60952 -INTRODUCED 59357 -INTRODUCES 63792 -INTRODUCING 61584 -INTRODUCTION 45298 -INTRODUCTIONS 63601 -INUYASHA 65170 -INV 64201 -INVALID 62917 -INVENTION 48496 -INVENTORY 58262 -INVERCARGILL 64657 -INVERSION 64657 -INVERTER 64657 -INVESCO 64423 -INVEST 61051 -INVESTIGATION 58417 -INVESTIGATIONS 60580 -INVESTING 57084 -INVESTMENT 52210 -INVESTMENTS 58470 -INVESTOR 57876 -INVESTORS 59923 -INVISIBLE 62613 -INVITATION 56862 -INVITATIONS 63077 -INVITE 58523 -INVITED 60078 -INVITES 64905 -INVOCATION 61256 -INVOICE 61362 -INVOLVED 57741 -INVOLVEMENT 59923 -INVOLVING 63077 -INX 64905 -INXS 60321 -IO 51772 -IOC 54399 -IOC's 64905 -IODC 61699 -IODE 63245 -IOException 61940 -IOGEAR 63792 -IOGear 61818 -IOL 52051 -IOM 62066 -IOMAT 64201 -ION 55250 -IONIC 63419 -IONS 63792 -IOP 52096 -IOR 63601 -IOS 54170 -IOTA 60238 -IOU 65170 -IOUSA 64905 -IOUT 64423 -IOV 65452 -IOWA 56050 -IOWST 65452 -IP 39173 -IP's 60492 -IPA 53679 -IPAQ 63077 -IPB 51122 -IPC 48766 -IPCC 57009 -IPCI 65170 -IPCS 64423 -IPCheck 64423 -IPCop 62331 -IPD 58688 -IPDS 65170 -IPE 63991 -IPF 59424 -IPFW 65170 -IPG 63419 -IPHONE 58417 -IPI 56518 -IPL 54664 -IPLAN 62331 -IPM 56140 -IPMI 62762 -IPMN 63792 -IPN 58979 -IPNRA 61818 -IPO 50514 -IPOD 55060 -IPOs 54924 -IPP 62917 -IPPBX 64905 -IPR 54813 -IPRA 61472 -IPRS 61818 -IPS 55793 -IPSC 64423 -IPSJ 64201 -IPSN 64905 -IPSS 62469 -IPSWICH 62196 -IPSec 60157 -IPSs 63245 -IPT 58212 -IPTA 63245 -IPTC 65170 -IPTG 63077 -IPTV 52164 -IPV 63419 -IPVOICE 65452 -IPX 63419 -IPhone 58632 -IPod 56485 -IPs 60670 -IPsec 62762 -IQ 49720 -IQEC 61584 -IQR 64905 -IQs 64201 -IR 45535 -IRA 51690 -IRA's 64905 -IRAN 60238 -IRAQ 55474 -IRAQI 63077 -IRAS 62469 -IRATE 65170 -IRAs 57318 -IRB 56687 -IRC 45936 -IRCCS 64423 -IRD 61256 -IRE 59424 -IRELAND 54059 -IRENE 64201 -IRES 62469 -IRF 63601 -IRFU 64905 -IRGC 56972 -IRI 59039 -IRIN 64657 -IRIS 55578 -IRISH 54879 -IRIX 63245 -IRL 55448 -IRLANDE 64905 -IRM 60321 -IRMA 65452 -IRO 64423 -IROCB 63601 -IROL 64905 -IRON 53729 -IRONMAN 65170 -IRONS 65170 -IRP 61818 -IRQ 58802 -IRR 60670 -IRREGULAR 63792 -IRRI 61051 -IRRIGATION 63601 -IRS 48629 -IRST 62917 -IRT 62066 -IRTP 56791 -IRU 63419 -IRVINE 63991 -IRVING 60078 -IRWIN 63991 -IS 39666 -ISA 51793 -ISAAC 58577 -ISABELLA 63245 -ISAC 63419 -ISAKMP 56862 -ISAPI 62066 -ISAs 60405 -ISB 61584 -ISBN 44134 -ISBNs 62917 -ISBT 63601 -ISC 57566 -ISCA 64201 -ISCHEMIA 65452 -ISCHow 64201 -ISCUSSION 62762 -ISD 53712 -ISDA 60580 -ISDN 54151 -ISDS 63991 -ISE 59292 -ISF 61472 -ISG 62762 -ISGP 64201 -ISH 60492 -ISHN 63419 -ISHS 59039 -ISI 47879 -ISIN 59164 -ISIS 56050 -ISK 59227 -ISL 59491 -ISLAM 59774 -ISLAMIC 57566 -ISLAND 50906 -ISLANDS 50638 -ISLE 62613 -ISLINGTON 60580 -ISM 54813 -ISMN 62469 -ISN 62196 -ISN'T 62331 -ISNA 65170 -ISNT 65452 -ISO 44284 -ISOCAM 64905 -ISOLATED 63077 -ISOLATION 61818 -ISOPHOT 64657 -ISOs 62196 -ISP 48269 -ISP's 61152 -ISPs 52315 -ISR 48186 -ISRAEL 56140 -ISRAELI 62469 -ISRO 62066 -ISS 53241 -ISSA 61584 -ISSCC 59227 -ISSE 65452 -ISSIR 62613 -ISSN 44661 -ISSR 65452 -ISSUANCE 64657 -ISSUE 46912 -ISSUED 58577 -ISSUES 46906 -IST 49038 -IST'S 63245 -ISTANBUL 62469 -ISTEP 63792 -ISTH 62196 -ISTRICT 64201 -ISU 55226 -ISUZU 61584 -ISV 54992 -ISVs 57278 -IT 36971 -IT'S 51942 -IT's 63245 -ITA 54519 -ITAA 65452 -ITALIA 62762 -ITALIAN 56021 -ITALIANO 62066 -ITALIE 59357 -ITALY 53762 -ITB 59357 -ITBOX 65170 -ITC 54643 -ITD 59560 -ITE 58979 -ITEC 61699 -ITEM 47976 -ITEMS 48682 -ITEX 65170 -ITEXPO 64905 -ITF 59491 -ITG 61940 -ITH 64201 -ITI 59164 -ITIL 51899 -ITINERARY 63077 -ITIS 61699 -ITL 62917 -ITM 56935 -ITMJ 64423 -ITN 55604 -ITNT 64423 -ITO 58979 -ITP 56791 -ITPro 55037 -ITR 63419 -ITRC 52435 -ITRONIX 61818 -ITS 47733 -ITSM 62331 -ITSMWatch 65170 -ITSP 65170 -ITT 53630 -ITTF 62469 -ITTV 63601 -ITU 54419 -ITU's 65170 -ITUATION 63077 -ITUNES 61472 -ITV 53865 -ITV's 60762 -ITW 61051 -ITWeb 65170 -ITWorld 64423 -ITX 65452 -ITY 60856 -ITZ 61940 -ITs 64905 -ITtoolbox 54519 -ITunes 61152 -ITworld 62196 -IU 53454 -IUBMB 64905 -IUCN 57566 -IUD 59923 -IUFRO 65170 -IUI 63792 -IUPAC 62196 -IUPUI 63991 -IUR 64905 -IV 41218 -IVA 56585 -IVAN 62066 -IVAW 64423 -IVB 64657 -IVC 57970 -IVD 59848 -IVE 62762 -IVES 64657 -IVF 55178 -IVIg 63991 -IVOMEC 65452 -IVORY 60856 -IVP 64657 -IVR 58365 -IVS 64423 -IVT 63077 -IVY 61152 -IVa 65452 -IVs 65452 -IW 54581 -IWA 65170 -IWC 57785 -IWF 62196 -IWG 60670 -IWMI 65170 -IWOOT 62331 -IWR 62762 -IWS 63792 -IWW 61940 -IX 50599 -IXUS 57199 -IY 64201 -IYP 63601 -IZ 58365 -IZA 56170 -IZOD 65170 -IZZY 64423 -Ia 56452 -Iacobucci 65170 -Iacono 60670 -Iago 63991 -Iaido 64657 -Iain 52609 -Iaith 65170 -Iam 59164 -Iams 57440 -Ian 44035 -Ian's 60321 -IanO 63792 -Iannis 62066 -Ianto 61699 -Iasi 62196 -Iason 60000 -Iatrogenic 63991 -Ib 57399 -Iba 63991 -Ibanez 55500 -Ibaraki 59039 -Ibarra 61584 -Ibbotson 64657 -Iberia 51825 -Iberian 57696 -Iberostar 63792 -Iberville 62613 -Ibex 56110 -Ibias 61584 -Ibiasl 64423 -Ibis 54151 -Ibiza 51095 -Ibizan 62917 -Ibm 61940 -Ibn 55657 -Ibo 60762 -Ibook 65170 -Ibrahim 54664 -Ibrahimovic 64423 -Ibrox 61256 -Ibs 65170 -Ibsen 61362 -Ibu 65170 -Ibuprofen 62917 -Ic 59560 -Ica 64657 -Icahn 61256 -Icarus 59774 -Ice 41730 -IceQueenieScully 61699 -IceRocket 54727 -Iceberg 58212 -Icebox 65170 -Icebreaker 62331 -Icecrown 60238 -Iced 54857 -Icehouse 62762 -Iceland 44535 -Iceland's 59848 -Icelandair 52752 -Icelanders 63991 -Icelandic 51078 -Iceman 61051 -Icerocket 64201 -Ices 63077 -Icesave 62762 -Icewind 59292 -Ich 52982 -Ichabod 64905 -Ichi 62331 -Ichiban 64201 -Ichigo 55084 -Ichigo's 63792 -Ichihashi 63245 -Ichikawa 64201 -Ichiro 57741 -Ichthyol 63792 -Ichthyology 64657 -Icicle 64201 -Icing 58688 -Icio 60000 -Icke 65170 -Icky 61362 -Iclaprim 63601 -Icom 52673 -Icon 40857 -IconBuffet 65170 -Iconator 63077 -Iconian 64905 -Iconic 60078 -Iconocast 62613 -Iconoclast 63245 -Iconotec 60157 -Icons 46491 -Icy 57609 -Id 50136 -IdUrd 63245 -Ida 52954 -Idabel 65452 -Idaho 42497 -Idaho's 60952 -Idan 60762 -Ide 57831 -Idea 47467 -IdeaPad 59101 -IdeaStorm 63792 -Ideal 47619 -Idealism 62613 -Idealist 62469 -Ideally 55448 -Ideals 64423 -Idearc 52609 -Ideas 42080 -Idec 63792 -Idella 63991 -Identical 56293 -Identifiable 58688 -Identification 45711 -Identifications 61940 -Identified 56551 -Identifier 48687 -Identifiers 58632 -Identifies 57785 -Identify 47710 -Identifying 51238 -Identities 55398 -Identity 46255 -Ideological 62469 -Ideologies 65452 -Ideology 57696 -Idi 63601 -Idina 65452 -Idiom 62066 -Idioma 62331 -Idiomatic 62469 -Idioms 54059 -Idiopathic 59164 -Idiosyncratic 64201 -Idiot 54879 -Idiot's 60856 -Idiots 57009 -Iditarod 60405 -Idk 64423 -Idle 54581 -Idler 60762 -Idlers 61818 -Idlewild 61472 -Idling 64657 -Ido 54685 -Idol 47194 -Idol's 63792 -Idolator 60000 -Idolatry 64201 -Idole 64905 -Idolos 60000 -Idols 54992 -Idris 62762 -Idyllwild 64905 -Ie 59164 -Iechyd 63991 -Iemma 63991 -Ieuan 64657 -If 29230 -Ifa 64423 -Ifill 60856 -Iflash 64423 -Iflove 64657 -Ifo 63077 -Iftar 65452 -Ifugao 61699 -Ig 55738 -IgA 54459 -IgE 55107 -IgG 48692 -IgGl 63245 -IgM 52571 -IgV 65452 -Iga 63991 -Igakkai 64423 -Igaku 62469 -Iganga 63077 -Igarashi 63601 -Igbaras 57440 -Igbo 60157 -Igcabugao 63991 -Iggy 56652 -Iglesia 60321 -Iglesias 55500 -Igloo 58688 -Iglu 64905 -Ign 62331 -Ignace 65452 -Ignacio 56756 -Ignatian 62917 -Ignatius 56791 -Ignaz 63792 -Igneous 64201 -Ignis 65452 -Ignite 58162 -Ignited 63245 -Ignites 64657 -Ignition 52233 -Ignorance 58065 -Ignorant 62917 -Ignore 44348 -Ignored 51434 -Ignores 61940 -Ignoring 58212 -IgoUgo 57831 -Igor 52051 -Iguana 60952 -Iguanas 64905 -Iguassu 65452 -Iguazu 65170 -Igy 65170 -Ih 61152 -IhNSCs 64905 -Ihe 60000 -Ihnen 61584 -Ihr 59227 -Ihre 57653 -Ihrem 65170 -Ihren 63792 -Ii 54170 -Iii 59292 -Iisa 60321 -Iizuka 65170 -Ijin 56231 -Ik 57482 -Ikari 62066 -Ikaria 63991 -Ikarus 65170 -Ike 50461 -Ike's 61472 -Ikea 57160 -Ikebukuro 62762 -Ikeda 57696 -Ikegami 65452 -Ikelite 61362 -Ikkarim 64423 -Ikkitousen 61362 -Iklan 64201 -Ikon 60670 -Ikons 62331 -Il 47947 -Ila 63077 -Ilan 58860 -Ilana 62331 -Ilaria 65170 -Ilayaraja 61362 -Ile 56551 -Ileana 61256 -Ilene 61362 -Iles 61152 -Ileus 63792 -Ilex 62331 -Ilford 57399 -Ilha 62066 -Ilham 61472 -Ilhan 63419 -Ilia 62066 -Iliad 61051 -Iliffe 65170 -Ilizarov 62196 -Ilka 65170 -Ilkeston 63601 -Ilkley 62331 -Ill 50791 -Illa 63077 -Illawarra 56293 -Illegal 49097 -IllegalArgumentException 63601 -Illegally 63419 -Illegals 56050 -Illes 63792 -Illex 64423 -Illia 63419 -Illich 63601 -Illicit 57318 -Illidan 58745 -Illingworth 64423 -Illini 57238 -Illiniwek 64905 -Illinois 39801 -Illness 51043 -Illnesses 58017 -Ills 63991 -Illumina 62917 -Illuminated 54664 -Illuminati 59357 -Illuminating 58365 -Illumination 56899 -Illuminations 63077 -Illuminator 64657 -Illusion 52661 -Illusionist 64905 -Illusions 55060 -Illusory 64201 -Illustra 62917 -Illustrate 65452 -Illustrated 49141 -Illustrated's 60078 -Illustrates 56652 -Illustrating 64657 -Illustration 48169 -Illustrations 52007 -Illustrative 61940 -Illustrator 50646 -Illustrators 58577 -Illustrious 63991 -Illusttank 62196 -Illy 65452 -Ilo 63991 -Ilocano 65170 -Ilocos 60670 -Iloilo 55849 -Ilona 59848 -Ilonggo 65452 -Ils 63245 -Ilsa 65452 -Ilse 61818 -Ilustração 64657 -Ilya 59292 -Im 44333 -Im'a 64657 -ImClone 60078 -ImTOO 56420 -Ima 58979 -Imac 63792 -Image 35122 -ImageHit 62196 -ImageMagick 61818 -ImageMix 62196 -ImageQuant 60762 -ImageReady 63991 -ImageRunner 65170 -ImageShack 63601 -ImageShop 62196 -ImageState 59227 -Imagekind 57160 -Imagemore 64657 -Imagen 63077 -Imagenes 59424 -Imagens 58113 -Imager 61362 -Imagerie 64905 -Imagery 54902 -Images 37305 -Imageshop 65452 -Imagezoo 64905 -Imagify 63601 -Imaginarium 63419 -Imaginary 56293 -Imagination 54078 -Imaginations 62613 -Imaginative 61472 -Imagine 48609 -Imagined 63792 -Imaging 44842 -Imagining 63601 -Imago 62331 -Imai 62196 -Imam 57440 -Iman 57440 -Imation 61152 -Imax 63991 -Imbalance 64423 -Imbruglia 58313 -Imdb 59630 -Imei 64657 -Imelda 64905 -Imelody 63792 -Imes 65452 -Imex 63991 -Img 63991 -Imi 65452 -Imiliarasiago 65170 -Imipramine 65452 -Imitation 56899 -Imitrex 64423 -Imlay 64423 -Imm 63991 -Imma 63419 -Immaculate 56585 -Immanuel 59292 -Immature 60492 -Immediate 47997 -Immediately 52029 -Immelman 64905 -Immense 64905 -Immerse 61584 -Immersed 65170 -Immersion 54664 -Immersive 63245 -Immigrant 53746 -Immigrants 54096 -Immigration 41462 -Imminent 63792 -Immo 63601 -Immobilien 62613 -Immobilier 65452 -Immobilization 63077 -Immobilized 62331 -Immobilizer 63601 -Immokalee 62469 -Immonen 65170 -Immoral 65452 -Immortal 53438 -Immortality 60580 -Immortals 61472 -Immun 59424 -Immune 51463 -Immunisation 58860 -Immunity 54059 -Immunization 53695 -Immunizations 60856 -Immunoassay 63419 -Immunoblot 60762 -Immunoblotting 61699 -Immunochemical 62917 -Immunochemicals 63601 -Immunochemistry 62196 -Immunocytochemical 63419 -Immunocytochemistry 61152 -Immunodeficiency 56687 -Immunodiffusion 64201 -Immunoelectron 63991 -Immunofluorescence 58313 -Immunogenet 61051 -Immunogenetics 64657 -Immunogenicity 63991 -Immunoglobulin 59923 -Immunohistochemical 55766 -Immunohistochemistry 56324 -Immunol 51349 -Immunolocalization 64657 -Immunologic 61699 -Immunological 59424 -Immunologists 63601 -Immunology 46666 -Immunomodulators 64657 -Immunopathol 64905 -Immunopathology 65452 -Immunoprecipitation 59292 -Immunoreactive 64201 -Immunoreactivity 63991 -Immunostaining 61472 -Immunosuppression 63991 -Immunosuppressive 61699 -Immunosuppressives 63991 -Immunotherapy 61818 -Immutable 61472 -Imogen 58262 -Imogene 64657 -Imp 60856 -Impact 43322 -Impacted 63601 -Impacting 63419 -Impacto 62917 -Impacts 53679 -Impaired 54264 -Impairment 55526 -Impairments 62917 -Impala 55274 -Impaled 63077 -Impartial 65170 -Impasse 64657 -Impatient 64423 -Impeach 62469 -Impeachment 58523 -Impedance 54857 -Impede 61362 -Impeller 63792 -Impellers 64423 -Impending 62331 -Imperative 60856 -Imperatives 65170 -Imperfect 59039 -Imperfections 65170 -Imperfects 62917 -Imperial 46837 -Imperialism 61472 -Imperium 61818 -Impersonation 51502 -Impersonator 62613 -Impersonators 61362 -Impetigo 63245 -Impex 63792 -Imphal 64657 -Impl 63245 -Implant 53361 -Implantable 59424 -Implantation 58417 -Implanted 62469 -Implants 53712 -Implement 53361 -Implementation 45939 -Implementations 61256 -Implemented 54902 -Implementing 50983 -Implements 57278 -Implication 58212 -Implications 49645 -Implicit 57609 -Implied 60670 -Implode 63419 -Implosion 64905 -Import 46555 -Importance 50881 -Important 43517 -Importation 62917 -Imported 52327 -Importer 57923 -Importers 53095 -Importing 54380 -Imports 50476 -Impose 65170 -Imposed 63792 -Imposing 64423 -Impossibility 64905 -Impossible 54096 -Impotence 57399 -Impound 63077 -Impresario 60238 -Impress 58065 -Impressed 60952 -Impression 54946 -Impressionism 62762 -Impressionist 61152 -Impressionists 64201 -Impressions 51762 -Impressive 56551 -Impressum 52886 -Impreza 53485 -Imprimer 61940 -Imprimir 60952 -Imprint 50409 -Imprinted 60238 -Imprinting 61940 -Imprints 62066 -Imprisoned 63991 -Imprisonment 63601 -Improbable 57609 -Impromptu 63419 -Improper 55423 -Improv 56170 -Improve 43110 -Improved 47679 -Improvement 42638 -Improvements 48791 -Improves 54151 -Improving 48726 -Improvisation 59923 -Improvisations 64905 -Improvised 64905 -Imps 65452 -Impulse 54685 -Impulsive 63245 -Impurities 63601 -Impurity 62917 -Imran 56080 -Imray 64905 -Imre 62613 -Imus 58470 -Imusic 62331 -Imágenes 57084 -In 26293 -InAs 60952 -InBev 62613 -InComponent 64657 -InCopy 64657 -InDepth 64905 -InDesign 55274 -InFocus 56721 -InGaAs 60405 -InGaAsP 63792 -InN 62613 -InP 58017 -InPreviewPane 63245 -InRegister 64201 -InSb 61940 -InSign 64905 -InSinkErator 63601 -InStep 62469 -InStyle 60670 -InTime 63991 -InTouch 63245 -Ina 55877 -Inability 61699 -Inaccurate 60492 -Inactivation 57696 -Inactive 54879 -Inactivity 61152 -Inadequate 58417 -Inadvertent 65452 -Inala 64201 -Inappropriate 47083 -Inara 63601 -Inari 60762 -Inasmuch 63792 -Inaugural 54969 -Inaugurals 64657 -Inauguration 59774 -Inboard 60492 -Inbound 56485 -Inbox 43191 -Inbred 61940 -Inbreeding 64423 -Inbursa 64657 -Inc 39017 -Inc's 61051 -IncGamers 65452 -Inca 56585 -Incandescent 59702 -Incapacity 63419 -Incarcerated 63419 -Incarceration 61818 -Incarnate 62613 -Incarnation 62762 -Incas 61818 -Incase 59424 -Ince 61940 -Incekum 61584 -Incendiary 59702 -Incense 56518 -Incentive 50726 -Incentives 50469 -Inception 60670 -Incest 57831 -Inch 46646 -Inchcape 63991 -Incheon 61152 -Inches 51856 -Inching 59923 -Incidence 53746 -Incident 50416 -Incidental 60952 -Incidentally 63419 -Incidents 53746 -Incineration 64905 -Incinerator 63245 -Incipient 65452 -Incipio 64905 -Incirlik 64201 -Incision 63419 -Incisive 56388 -Incite 64905 -Incl 54226 -Inclination 64423 -Incline 60157 -Inclined 62196 -Include 45756 -Included 46144 -Includes 44005 -Including 46766 -Inclusion 52141 -Inclusions 62613 -Inclusive 52327 -Incognito 61256 -Incoherent 64201 -Income 42791 -Incomes 65452 -Incoming 54479 -Incompatible 64423 -Incompetence 65452 -Incompetent 61818 -Incomplete 52858 -Inconsistencies 65170 -Inconsistency 65170 -Inconsistent 61472 -Incontinence 56756 -Inconvenient 58745 -Incorporate 56485 -Incorporated 46307 -Incorporates 62613 -Incorporating 56080 -Incorporation 51492 -Incorrect 50545 -Incoterms 61699 -Increase 44648 -Increased 48131 -Increases 51229 -Increasing 49645 -Increasingly 60405 -Incredible 48496 -Incredibles 61584 -Incredibly 59292 -Increment 58632 -Incremental 55821 -Increments 63077 -Incroyable 64905 -Incubate 63077 -Incubation 55348 -Incubations 65170 -Incubator 56791 -Incubators 62613 -Incubus 55849 -Incumbent 59630 -Incumbents 62917 -Incurred 65452 -Incyte 62762 -Ind 54439 -Indaba 63077 -Indah 63991 -Indalico 60000 -Indebtedness 64905 -Indecent 61256 -Indecision 61152 -Indeed 49229 -Indefinite 62917 -Indemnification 59702 -Indemnified 65170 -Indemnity 58162 -IndentLevel 65170 -Indentation 64905 -Independance 64657 -Independant 61256 -Independence 46491 -Independent 41560 -Independent's 64905 -Independently 56200 -Independents 55877 -Indepth 60078 -Inder 65170 -Inderscience 59923 -Indescribable 62196 -Indesign 63245 -Indesit 60000 -Indestructible 60321 -Index 35884 -IndexCopernicus 53646 -Indexed 52872 -Indexer 43058 -Indexes 52233 -Indexing 50890 -Indi 63245 -India 36351 -India's 48638 -IndiaMART 62066 -Indiabulls 62762 -Indian 38015 -IndianPad 62613 -Indiana 40050 -Indiana's 58688 -Indianapolis 44738 -Indianola 64657 -Indians 46827 -Indiantown 65452 -Indiatimes 56972 -IndiatimeslMy 63792 -Indic 61051 -Indica 62066 -Indicate 55423 -Indicated 60580 -Indicates 52018 -Indicating 64905 -Indication 58262 -Indications 54992 -Indicative 61940 -Indicator 50234 -Indicators 49435 -Indice 60952 -Indices 51406 -Indico 61699 -Indicolite 64201 -Indicted 59227 -Indictment 62331 -Indictments 64657 -Indie 46766 -IndieBound 60321 -Indien 64657 -Indies 53549 -Indifference 63601 -Indifferent 64657 -Indigenous 49670 -Indigent 61362 -Indigestion 63419 -Indigo 51630 -Indio 57741 -Indira 57318 -Indirect 52291 -Indispensable 61584 -Indispose 64905 -Indium 59630 -Individual 43492 -Individualism 65452 -Individuality 62762 -Individualized 58577 -Individually 58470 -Individuals 48300 -Indo 57318 -Indochina 64201 -Indochine 62331 -Indoctrination 65452 -Indolent 63991 -Indomethacin 62613 -Indonesia 40736 -Indonesia's 59357 -Indonesian 48336 -Indonesians 64201 -Indoor 45477 -Indooroopilly 63991 -Indoors 56231 -Indore 54969 -Indorock 64423 -Indra 60238 -InduSign 60670 -Induce 61584 -Induced 54170 -Induces 59164 -Inducible 63991 -Inducing 64423 -Inductance 63419 -Inductee 64657 -Inductees 65452 -Induction 49394 -Inductive 59491 -Inductively 64201 -Inductor 61362 -Inductors 61940 -Indulge 58577 -Indulgence 56899 -Indus 58745 -Indust 56324 -Industri 63077 -Industria 60321 -Industrial 38833 -Industrialization 63419 -Industrials 58919 -Industrie 60000 -Industrielle 65170 -Industries 40347 -Industry 36972 -Industry's 56687 -Indusval 63419 -Indy 51541 -IndyBest 60078 -IndyCar 54924 -IndyGov 63792 -IndyMac 59923 -Indymedia 59560 -Ine 59560 -Ineffective 60238 -Inefficient 65170 -Inelastic 64423 -Ineligible 64657 -Ineo 64905 -Inequalities 60580 -Inequality 55766 -Inergize 63601 -Inert 63601 -Inertia 60238 -Inertial 64201 -Ines 59227 -Inet 65170 -Inevitable 62066 -Inexpensive 56200 -Inez 60405 -Inf 57399 -Infact 63077 -Infamous 58632 -InfamousHill 62917 -Infamy 64905 -Infancy 62331 -Infant 47445 -Infante 64905 -Infantile 60078 -Infantry 52411 -Infants 50553 -Infarct 61256 -Infarction 59227 -Infecc 65170 -Infección 64201 -Infect 50446 -Infected 55226 -Infection 48692 -Infections 51184 -Infectious 48796 -Infekt 64905 -Inference 58262 -Inferior 59848 -Infernal 59774 -Inferno 53899 -Inferred 64657 -Inferring 63419 -Infertility 53865 -Infestation 62469 -Infested 60157 -Infidel 61362 -Infidelity 58802 -Infield 60670 -Infill 65170 -Infiltration 59923 -Infineon 56687 -InfiniBand 62613 -Infinite 49201 -Infiniti 47445 -Infinitive 65452 -Infinity 51104 -Infinity's 65452 -Infirmary 58745 -Inflammation 55500 -Inflammatory 55130 -Inflatable 51211 -Inflatables 58365 -Inflated 63991 -Inflation 52303 -Inflationary 65170 -Inflected 65452 -Inflight 64657 -Inflorescence 61818 -Inflorescences 64905 -Influence 47248 -Influenced 57876 -Influencer 64657 -Influences 52472 -Influencing 58162 -Influential 57440 -Influenza 52375 -Influx 63792 -Info 33626 -InfoBase 52845 -InfoCenter 64905 -InfoHash 64657 -InfoHistoryForeign 65452 -InfoMine 56388 -InfoNet 63991 -InfoPath 56862 -InfoPrint 57199 -InfoQ 64657 -InfoSec 63792 -InfoTech 64423 -InfoUSA 54879 -InfoWorld 58365 -Infobase 63077 -Infobox 63991 -Infocomm 63792 -Infocus 59424 -Infographics 63792 -Infoimaging 61940 -Infoline 63991 -Infolink 60078 -Infolink's 64657 -Infomation 55766 -Infomedia 63991 -Infomercial 62066 -Infopath 64657 -Infopeople 63601 -Infoplease 57160 -Infopop 64423 -Infoprint 60238 -Infor 64201 -Inform 53024 -Informa 52635 -InformaCast 62917 -Informacion 64201 -Información 57440 -Informal 53646 -Informant 61818 -Informasjon 62066 -Informatica 57084 -Informatics 51095 -Informatie 64201 -Informatik 61699 -Information 30667 -InformationTechnologyCrossing 64905 -InformationWeek 54749 -Informational 55474 -Informationen 60157 -Informations 53712 -Informatique 61584 -Informative 56551 -Informazioni 63601 -Informed 52559 -Informer 58688 -Informing 62196 -Informit 60238 -Informix 56080 -Informática 62613 -Infos 59039 -Infoscience 63245 -Infoserve 58919 -Infoshop 62469 -Infospace 62613 -Infosys 59560 -Infotainment 65170 -Infotec 64657 -Infotech 55657 -Infotel 64657 -Infoterra 63419 -Infotrieve 59702 -Infovision 63077 -Infoworld 61152 -Infra 56618 -Infragistics 65452 -Infrared 48746 -Infrastructure 44764 -Infrastructures 57876 -Infringement 52472 -Infringements 58802 -Infringing 64423 -Infuse 64657 -Infused 62196 -Infusion 55448 -Infusions 64423 -Ing 62469 -Inga 61584 -Ingalls 59774 -Inge 59774 -Ingegneria 64423 -Ingelheim 61362 -Ingen 57524 -Ingenieria 65170 -Ingeniería 63792 -Ingenio 60238 -Ingenious 63991 -Ingenta 41224 -IngentaConnect 39288 -Ingenuity 62196 -Inger 62613 -Ingersoll 55604 -Ingest 56356 -Ingestion 61584 -Ingham 59702 -Ingle 62469 -Ingles 57318 -Ingleside 62331 -Inglesina 64423 -Inglewood 56293 -Inglis 61472 -Inglés 63792 -Ingmar 60078 -Ingo 57238 -Ingomar 64905 -Ingraham 59702 -Ingram 53066 -Ingredient 54226 -Ingredients 47843 -Ingres 64657 -Ingrid 52739 -Inground 63077 -Ingrown 64657 -Ings 64905 -Inhabit 65452 -Inhabitants 61818 -Inhabitat 61818 -Inhalation 58688 -Inhale 61699 -Inhaled 62066 -Inhaler 59848 -Inhalers 63991 -Inhalt 60580 -Inhambane 64423 -Inherent 61472 -Inherit 62331 -Inheritance 54023 -Inherited 60492 -Inherits 61362 -Inhibit 64423 -Inhibited 64423 -Inhibiteur 64905 -Inhibiting 64657 -Inhibition 50678 -Inhibitor 57046 -Inhibitors 54499 -Inhibitory 58113 -Inhibits 58365 -Inhomogeneous 64905 -Inhouse 63991 -Ini 63991 -Inicio 56110 -Init 61472 -Initial 43942 -Initialization 62469 -Initialize 57831 -InitializeUsingNotesUserName 64905 -Initializes 64201 -Initializing 64201 -Initially 53695 -Initials 57785 -Initiate 57160 -Initiated 59560 -Initiates 58745 -Initiating 59923 -Initiation 54207 -Initiative 46097 -Initiatives 48949 -Initiator 64423 -Initio 62613 -Inject 61472 -Injectable 60670 -Injected 59848 -Injecting 64657 -Injection 48887 -Injections 57318 -Injector 57831 -Injectors 61699 -Injunction 61818 -Injunctions 62613 -Injured 53613 -Injures 65170 -Injuries 46648 -Injury 44052 -Injustice 63245 -Injustices 65452 -Ink 45506 -InkJet 60238 -Inka 62469 -Inked 63601 -Inkjet 49899 -Inkpen 65170 -Inks 56452 -Inkscape 61472 -Inkster 63792 -Inktomi 63792 -Inky 63792 -Inland 51396 -Inlay 59424 -Inlet 54419 -Inline 52805 -Inlined 65170 -Inmagic 59702 -Inman 55226 -Inmarsat 61051 -Inmate 56935 -Inmate's 64905 -Inmates 58745 -Inn 40099 -Inn's 63419 -Inna 61584 -Innate 63419 -Inne 63792 -Inner 47293 -Innere 64905 -Innerleithen 65452 -Innervation 63792 -Innes 59164 -Inning 64201 -Innings 58162 -Innis 63792 -Innisfail 64423 -Innisfil 61818 -Innkeeper 63419 -Innkeepers 61584 -Inno 61472 -InnoDB 63792 -InnoTrans 65452 -Innocence 55323 -Innocent 53423 -Innocents 63077 -Innostream 63991 -Innova 58632 -Innovate 56356 -Innovatek 56021 -Innovating 61152 -Innovation 44764 -Innovations 50742 -Innovative 48464 -Innovator 61362 -Innovators 58313 -Inns 50856 -Innsbruck 59039 -Innuendo 64905 -Ino 63991 -Inoculated 64201 -Inoculation 64657 -Inoculum 64423 -Inorg 64657 -Inorganic 52996 -Inositol 61362 -Inotropic 64423 -Inoue 56721 -Inouye 61940 -Inova 58113 -Inovix 64657 -Inox 65170 -Inpatient 56231 -Inpharma 62762 -Inpho 64905 -Inport 64423 -Inpro 64423 -Input 45168 -InputDevice 63245 -InputStream 61584 -Inputs 55906 -Inq 63601 -Inquest 62762 -Inquire 47911 -Inquirer 52597 -Inquires 60952 -Inquiries 49867 -Inquiring 64657 -Inquiry 46282 -Inquisition 60405 -Inquisitive 62762 -Inquisitor 62196 -Inrange 58417 -Ins 54946 -InsP 64657 -Insalata 65170 -Insane 53407 -Insanely 63245 -InsanelyMac 54992 -Insanity 55178 -Insatiable 63077 -Inscribed 62613 -Inscription 55474 -Inscriptions 60492 -Inseam 60670 -Insect 51570 -Insecta 61362 -Insecticide 60000 -Insecticides 61472 -Insects 54096 -Insecurity 62196 -Insel 63419 -Insemination 63792 -Insert 47883 -InsertText 61699 -Inserted 61940 -Inserting 59560 -Insertion 55060 -Insertions 63991 -Inserts 53024 -Inservice 64657 -Inset 57046 -Insets 63991 -Inshore 60321 -Inside 40161 -InsideLineVideo 62196 -InsideOut 62917 -InsideOutPix 62066 -InsideRIA 64905 -InsideWeb 62331 -Insideout 64657 -Insider 39732 -Insider's 59039 -Insiderpages 53081 -Insiders 53952 -Insidious 64905 -Insight 41953 -Insightful 61472 -Insights 47871 -Insignia 54770 -Insignificant 65170 -Insist 63419 -Insite 59848 -Insitute 64657 -Insitutions 62331 -Insofar 62066 -Insole 62917 -Insoles 59039 -Insoluble 62469 -Insolvency 56862 -Insolvent 64905 -Insomnia 53153 -Insomniac 62613 -Insound 63077 -Insp 61940 -Inspec 59491 -Inspect 57160 -Inspected 58979 -Inspecting 62469 -Inspection 46191 -Inspections 50584 -Inspector 49405 -Inspector's 63601 -Inspectorate 58523 -Inspectors 54059 -Inspiración 65452 -Inspiration 49376 -Inspirational 51511 -Inspirations 58065 -Inspiratory 64905 -Inspire 54749 -Inspired 49523 -Inspires 61472 -Inspirestock 60670 -Inspiring 55604 -Inspiron 49212 -Inst 53501 -InstaApply 62762 -InstaOffice 65452 -InstaPundit 64201 -Instability 59424 -Instablogs 63792 -Instagram 59491 -Instalacija 60580 -Instalación 61818 -Instalacja 63419 -Install 44720 -InstallShield 57358 -Installatie 60580 -Installation 42610 -Installations 52940 -Installed 50654 -Installer 50966 -Installers 52832 -Installing 49103 -Installment 58065 -Installs 58113 -Instance 54706 -Instances 57876 -Instant 41665 -InstantCast 62762 -InstantSite 61699 -Instanta 64201 -Instantaneous 62066 -Instantly 52752 -Instapundit 58577 -Instat 59560 -Instawares 58860 -Instead 46757 -Instigator 65452 -Instinct 55037 -Instincts 59560 -Institue 64905 -Institut 49511 -Institute 37074 -Institute's 52509 -Institutes 41855 -Institutet 64657 -Institution 47611 -Institution's 63601 -Institutional 44740 -Institutionalized 63991 -Institutions 43805 -Instituto 51590 -Instituut 63792 -Instock 58417 -Instore 63792 -Instr 62196 -Instron 62469 -Instruct 64201 -Instructable 63991 -Instructables 61256 -Instructed 65452 -Instructing 64905 -Instruction 46681 -Instructional 48533 -Instructions 44187 -Instructor 49173 -Instructor's 58802 -Instructors 52447 -Instructs 63601 -Instrum 64201 -Instrument 47863 -Instrumental 50379 -Instrumentals 58313 -Instrumentation 51293 -Instrumentman 54727 -Instruments 40967 -InstututeForQuantumComputingBFG 63077 -Insufficiency 61362 -Insufficient 58162 -Insulated 52141 -Insulating 59164 -Insulation 51087 -Insulators 63077 -Insulin 51856 -Insult 61051 -Insulting 57238 -Insults 61256 -Insurance 35566 -Insurances 58745 -Insure 60856 -Insured 53695 -Insurer 57046 -Insurer's 62917 -Insurers 56021 -Insurgency 61152 -Insurgent 61940 -Insurgents 64423 -Insuring 64905 -Insurrection 64657 -Insync 65452 -Int 43896 -Int'l 47395 -Intact 59424 -Intake 49633 -Intakes 58802 -Intangible 60238 -Intangibles 65170 -InteSoft 60580 -Intec 63991 -Integer 54380 -Integers 64905 -Integr 62762 -Integra 54770 -Integrable 63991 -Integral 54245 -Integrals 61362 -Integrate 53438 -Integrated 43895 -Integrates 59227 -Integrating 50750 -Integration 44819 -Integrations 63077 -Integrative 53301 -Integrator 57122 -Integrators 61584 -Integrin 63077 -Integrity 50263 -Integumentary 65452 -Integy 64905 -Intel 41744 -Intel's 54902 -InteliStaf 62331 -Intell 59702 -Intellect 57609 -Intellectual 44944 -IntelliChoice 64657 -IntelliJ 61940 -IntelliMouse 65170 -IntelliTalk 65452 -IntelliTouch 65452 -IntelliVue 65452 -Intelligence 43724 -Intelligencer 58523 -Intelligencia 63245 -Intelligent 47955 -Intellivision 61584 -Intempo 61472 -Intended 48533 -Intense 53485 -Intensifies 65452 -Intensify 64657 -Intensities 65452 -Intensitivity 60856 -Intensity 53729 -Intensive 49707 -Intensives 65452 -Intenso 64905 -Intent 52739 -Intention 58313 -IntentionOne 62762 -Intentional 60078 -Intentionally 64905 -Intentions 58313 -Intenze 65170 -Inter 51415 -InterBase 63419 -InterContinental 55323 -InterMESH 64201 -InterNACHI 60856 -InterPro 61818 -InterQual 64423 -InterScience 59039 -InterSector 63077 -InterSystems 57609 -InterVideo 65170 -Interacción 62762 -Interact 49348 -Interacting 58577 -Interaction 39732 -Interactions 50087 -Interactive 40905 -Interactive's 64201 -Interactives 59491 -Interactivity 58113 -Interacts 61256 -Interagency 55849 -Interbank 62196 -Interbase 57009 -Interbike 61584 -Intercalation 65170 -Intercell 64423 -Intercellular 63792 -Intercept 61472 -Interception 63601 -Interceptions 64201 -Interceptor 58632 -Interceptors 62469 -Intercepts 64905 -Intercession 65452 -Interchange 54439 -Interchangeable 60856 -Intercity 63419 -Intercollegiate 57084 -Intercom 58162 -Intercoms 60492 -Interconnect 57440 -Interconnected 63601 -Interconnection 57524 -Interconnects 60492 -Intercontinental 51377 -Intercooler 61256 -Intercourse 62066 -Intercultural 57653 -Interdepartmental 63792 -Interdependence 64657 -Interdisciplinary 52686 -Interest 42083 -Interested 44657 -Interesting 45897 -Interestingly 57785 -Interests 45549 -Interexchange 65452 -Interface 44859 -Interfaces 52040 -InterfacesTextures 59227 -Interfacial 61362 -Interfacing 60580 -Interfaith 56618 -Interfax 65452 -Interference 54879 -Interfering 65452 -Interferometer 63991 -Interferometry 63601 -Interferon 58860 -Intergalactic 62613 -Intergenerational 60321 -Intergovernmental 54902 -Intergraph 61051 -Intergraph's 65452 -Intergrated 65452 -Intergroup 62613 -Interim 49821 -Interinstitutional 64657 -Interior 43446 -Interior's 65170 -Interiors 50654 -Interlaken 59039 -Interleaved 65170 -Interleukin 60000 -Interlibrary 56388 -Interline 62762 -Interlingua 62469 -Interlink 56585 -Interlocal 62762 -Interlock 63077 -Interlocking 58745 -Interlude 57358 -Intermec 60856 -Intermedia 64657 -Intermediaries 63419 -Intermediary 62331 -Intermediate 47548 -Intermediates 60238 -Interment 58017 -Intermezzo 63601 -Intermission 64657 -Intermittent 55552 -Intermix 64657 -Intermodal 60856 -Intermolecular 63419 -Intermountain 60492 -Intern 48996 -Internacional 56388 -Internacionales 63792 -Internado 64423 -Internal 42422 -Internally 60580 -Internals 63601 -Internation 63991 -International 31590 -International's 58417 -Internationale 58017 -Internationales 63991 -Internationalisation 64905 -Internationalist 64423 -Internationalization 60078 -Internationally 57785 -Internationals 54685 -Internazionale 60492 -Interne 60856 -Internet 34253 -Internet's 54360 -InternetLevel 63991 -InternetNews 63601 -Internets 60000 -Internetwork 63792 -Internetworking 62917 -Internews 65452 -Internist 60762 -Internists 63245 -Internode 60078 -Interns 56972 -Internship 50881 -Internships 49494 -Interop 56452 -Interoperability 51266 -Interoperable 65170 -Interperiodica 63419 -Interpersonal 55821 -Interphase 62917 -Interplay 61362 -Interpol 58802 -Interpolation 58065 -Interpret 60952 -Interpretation 51284 -Interpretations 60078 -Interpreter 56585 -Interpreters 59630 -Interpreting 54601 -Interpretive 57741 -Interprofessional 64905 -Interracial 52387 -Interregional 63601 -Interrogation 60238 -Interrogations 60670 -Interrupt 56687 -Interrupted 62469 -Interruption 62613 -Interruptions 64905 -Interrupts 64201 -Interscholastic 63991 -Interscience 60856 -Interscope 62331 -Intersect 63077 -Intersection 51550 -Intersections 62613 -Intersil 62469 -Interstate 48811 -Interstellar 60952 -Intersting 65452 -Interstitial 58745 -Intertech 64657 -Intertemporal 63991 -Intertoto 65170 -Intertrade 65452 -Interv 60762 -Interval 54114 -Intervals 60405 -Interven 60492 -Intervene 63601 -Intervent 65452 -Intervention 50560 -Interventional 55014 -Interventions 55060 -Intervertebral 64905 -Intervie 61472 -Interview 40303 -Interviewed 58688 -Interviewees 65452 -Interviewer 60856 -Interviewers 61152 -Interviewing 51899 -Interviews 42622 -InterviewsPromotional 64657 -Intervista 61940 -Interweave 64423 -Interweb 64423 -Interwoven 65452 -Intestin 65170 -Intestinal 55084 -Intestine 63419 -Intestino 64905 -Intex 62066 -Intifada 63991 -Intimacy 57046 -Intimate 53934 -Intimates 57160 -Intimidation 62613 -Intimidator 65452 -Intl 52886 -Intnl 65170 -Into 44241 -IntoMobile 60580 -Intocable 61152 -Intolerance 59923 -Intonation 65452 -Intouch 65170 -Intoxicated 62469 -Intoxication 62469 -Intra 62196 -IntraLase 63077 -IntraServe 62917 -Intracellular 55906 -Intracerebral 65452 -Intracoastal 63792 -Intracranial 60762 -Intraday 54041 -Intraductal 64657 -Intralipid 65452 -Intramolecular 62196 -Intramural 58632 -Intramurals 60238 -Intranasal 64905 -Intranet 50923 -Intranets 61152 -Intraocular 62066 -Intraoperative 58313 -Intraoral 65452 -Intraspecific 65170 -Intrastate 65452 -Intrathecal 65170 -Intrauterine 64657 -Intravascular 62331 -Intravenous 55877 -Intravitreal 64657 -Intrepid 52752 -Intricate 62762 -Intrigue 60952 -Intrigued 64423 -Intriguing 63601 -Intrinsic 57609 -Intro 48059 -Introducción 64201 -Introduce 50710 -Introduced 54581 -Introduces 50890 -Introducing 48872 -Introduction 38836 -Introductions 49257 -Introductory 53167 -Intromit 64657 -Intron 65452 -Intros 56080 -Introspective 65452 -IntruShield 65170 -Intruder 57440 -Intrusion 54499 -Intrusive 64423 -Intubation 64423 -Intuit 55849 -Intuition 58313 -Intuitive 56293 -Intute 63245 -Inu 62331 -InuYasha 61362 -Inuit 59292 -Inuktitut 60580 -Inula 62762 -Inulin 65452 -Inupiaq 65452 -Inurl 63245 -Inuyasha 56231 -Inv 59630 -Invacare 63419 -Invade 60321 -Invader 59357 -Invaders 55014 -Invades 65452 -Invalid 50424 -Invaluable 65170 -Invariant 55578 -Invariants 65170 -Invasion 50662 -Invasions 64423 -Invasive 55323 -Invector 65170 -Invenda 63419 -Invenio 59630 -Invensys 63792 -Invent 60405 -Invented 59774 -Inventing 61472 -Invention 50974 -Inventiones 63792 -Inventions 58113 -Inventive 64423 -Inventor 52096 -Inventor's 64657 -Inventories 57923 -Inventors 56050 -Inventory 44791 -Inver 60078 -Invercargill 60405 -Inverclyde 62196 -Invergordon 65170 -Inverness 52040 -Inverse 54581 -Inversion 57653 -Invert 54479 -Invertebrata 63991 -Invertebrate 59227 -Invertebrates 59227 -Inverted 57566 -Inverter 57199 -Inverters 58212 -Inverts 63601 -Inverurie 65170 -Invesco 61152 -Invest 47041 -InvestSMART 62469 -Investec 61940 -Invested 62917 -Investigaciones 59227 -Investigación 61940 -Investigate 55250 -Investigated 61051 -Investigates 57046 -Investigating 55963 -Investigation 47060 -Investigational 59774 -Investigations 49651 -Investigative 52996 -Investigator 52484 -Investigators 50492 -Investigação 59491 -Investing 43443 -Investment 40797 -Investments 45782 -Investopedia 62917 -Investor 43531 -Investor's 57741 -Investors 46831 -Invests 62066 -Invicta 57785 -Invictus 64201 -Invigorating 62066 -Invincible 58313 -Invisalign 61472 -InvisiTasking 64657 -Invisibility 64905 -Invisible 50402 -Invision 51711 -InvisionFree 63792 -Invitation 50840 -Invitational 52484 -Invitations 50484 -Invite 44748 -Invited 53316 -Invites 55014 -Inviting 59702 -Invitrogen 56585 -Invocation 60321 -Invoice 53010 -Invoices 58688 -Invoicing 63601 -Invoke 62762 -Invoked 64905 -Invoking 61940 -Involuntary 62066 -Involve 58365 -Involved 48533 -Involvement 49932 -Involves 62917 -Involving 56021 -Inward 62331 -Inwood 60492 -Inxs 59702 -Inyo 59848 -Inzaghi 65170 -Inzane 64657 -Início 62066 -Io 55373 -IoD 62613 -Ioan 64201 -Ioannis 61699 -Iodide 63991 -Iodine 58802 -Iogear 63991 -Iola 64201 -Iolo 64657 -Iomega 56324 -Ion 50270 -Iona 56452 -Ionamin 57970 -Ione 61818 -Ionescu 64423 -Ionia 63601 -Ionian 59560 -Ionic 55934 -Ionics 62066 -Ionization 60856 -Ionized 63792 -Ionizer 65452 -Ionizing 61940 -Ions 57399 -Ionut 64423 -Iori 64905 -Iota 62196 -IowSt 64905 -Iowa 41017 -Iowa's 57741 -Iowan 64423 -Iowans 62196 -Ip 57199 -Ipanema 61362 -Ipaq 58365 -Ipc 64657 -Iphone 51670 -Ipod 51211 -Ipods 61051 -Ipoh 65170 -Ipowerweb 60492 -Ippo 63601 -Ipratropium 58162 -Ipsilon 58065 -Ipsum 62196 -Ipswich 50242 -Iqaluit 64905 -Iqbal 58417 -Iquitos 61472 -Ir 55226 -IrCC 65170 -IrDA 60492 -Ira 52622 -Irae 62469 -Iran 43015 -Iran's 53182 -Irani 64201 -Iranian 49732 -Iranians 57923 -Iraq 40695 -Iraq's 52832 -Iraqi 45797 -Iraqis 53779 -Irazzle 64423 -Irby 65452 -Ire 58417 -Iredell 61699 -Ireland 38515 -Ireland's 54879 -Irelands 63792 -Irena 61256 -Irene 51368 -Irfan 60078 -Irfanview 62917 -Irian 64905 -Iridescent 62613 -Iridium 58017 -Iridology 61472 -Irie 63419 -Iriel 63792 -Irigy 59560 -Irina 54439 -Iris 50823 -Irish 42072 -Irishman 61362 -Irizarry 65170 -Irkutsk 63419 -Irma 56110 -Irmo 63419 -Irohanihoheto 65170 -Irom 64905 -Iron 42274 -IronStarks 64423 -Ironbark 61256 -Ironclad 60952 -Irondequoit 64201 -Ironforge 58745 -Ironic 60321 -Ironically 60670 -Ironing 55060 -Ironman 55202 -Ironmongery 63991 -Irons 53066 -Ironside 60238 -Ironton 65170 -Ironwood 60762 -Ironwork 63077 -Ironworkers 65452 -Ironworks 61051 -Irony 60492 -Iroquois 55526 -Irradiated 64423 -Irradiation 57358 -Irrational 60670 -Irrawaddy 65452 -Irregular 55766 -Irrelevant 60078 -Irresistable 64905 -Irresistible 57923 -Irrespective 60762 -Irresponsible 63792 -Irreversibility 65170 -Irreversible 62917 -Irrigated 60238 -Irrigation 50646 -Irritable 56485 -Irritant 64423 -Irritating 64905 -Irritation 63245 -Irs 61818 -Irshad 64905 -Irv 61362 -Irvin 56324 -Irvin's 65452 -Irvine 50545 -Irvine's 65170 -Irving 49651 -Irving's 63419 -Irvingia 65452 -Irvington 59848 -Irwin 52509 -Irwin's 63245 -Irwindale 64905 -Is 34125 -IsAccentSensitiveSort 61152 -IsAdminNames 63077 -IsAdminReaderAuthor 62066 -IsAdminServer 64905 -IsAuthors 64423 -IsBeginOfData 62762 -IsCalendar 62196 -IsCaseSensitiveSort 61152 -IsCategorized 63077 -IsCategory 59702 -IsCertificateAuthorityAvailable 64423 -IsClusterReplication 62613 -IsConfigurationDirectory 62613 -IsConflict 61256 -IsCurrentAccessPublicReader 62613 -IsCurrentAccessPublicWriter 62613 -IsDST 63991 -IsDefaultView 62331 -IsDelayUpdates 65452 -IsDesignLockingEnabled 62196 -IsDirectoryCatalog 62331 -IsDocument 64905 -IsDocumentLockingEnabled 62331 -IsEncrypted 61472 -IsEndOfData 62917 -IsExtendedAccess 63245 -IsFTIndexed 62196 -IsField 61152 -IsFolder 62066 -IsFontBold 61051 -IsFontItalic 61051 -IsFontStrikethrough 61152 -IsFontUnderline 61152 -IsFormula 61051 -IsHeaderFontBold 61051 -IsHeaderFontItalic 61051 -IsHeaderFontStrikethrough 60952 -IsHeaderFontUnderline 60856 -IsHidden 59923 -IsHideDetail 60762 -IsHierarchical 60580 -IsIcon 60762 -IsInMultiDbIndexing 62196 -IsInService 62331 -IsIncludeFormulas 65452 -IsLink 62196 -IsModified 62917 -IsMultiDbSearch 62331 -IsNames 65452 -IsNewDoc 62917 -IsNewNote 64905 -IsNotesAgent 65170 -IsNull 65170 -IsNumberAttribParens 60762 -IsNumberAttribPercent 60580 -IsNumberAttribPunctuated 60492 -IsOnServer 63601 -IsOnline 64201 -IsOpen 62196 -IsPendingDelete 62066 -IsPrivate 60952 -IsPrivateAddressBook 62066 -IsProfile 64905 -IsProhibitDesignRefresh 62066 -IsProtectReaders 63077 -IsProtectUsers 65452 -IsProtected 65170 -IsPublic 64657 -IsPublicAddressBook 62066 -IsReaders 65170 -IsResize 60492 -IsResortAscending 60580 -IsResortDescending 60321 -IsResortToView 60321 -IsResponse 59560 -IsResultSetAvailable 62917 -IsSecondaryResort 60238 -IsSecondaryResortDescending 60238 -IsShowTwistie 60238 -IsSigned 62331 -IsSortDescending 60078 -IsSorted 59491 -IsSubForm 64423 -IsSummary 65452 -IsTotal 64657 -IsUniformAccess 63419 -IsUseCertificateAuthority 63601 -IsValid 61362 -IsValueAltered 63245 -IsValueNull 63077 -IsWebAgent 65170 -Isa 56200 -Isaac 48913 -Isaac's 60580 -Isaacs 60405 -Isaacson 62196 -Isaak 62613 -Isabel 52609 -Isabella 52280 -Isabelle 54360 -Isadore 63991 -Isai 61472 -Isaiah 52496 -Isaiah's 64657 -Isak 63601 -Isao 61818 -Isbell 64905 -Ischaemic 64423 -Ischemia 59357 -Ischemic 57609 -Ischia 65452 -Iscritto 64905 -Ise 63601 -Iselin 65170 -Isenberg 64905 -Isfahan 63792 -Ish 61362 -Isha 61699 -Isham 63245 -Ishaq 65170 -Ishida 60670 -Ishiguro 65170 -Ishihara 61818 -Ishii 58979 -Ishikawa 58523 -Ishmael 61472 -Ishq 60952 -Ishtar 63792 -Isiah 55657 -Isidore 64201 -Isidro 60952 -Isilon 61940 -Ising 57785 -Isis 55037 -Iskcon 65452 -Isl 58688 -Isla 54283 -Islam 47087 -Islam's 62331 -Islamabad 55107 -Islamic 45457 -Islamism 65170 -Islamist 57609 -Islamists 61940 -Islamophobia 64905 -Islamorada 63991 -Island 36882 -Island's 56231 -Islander 51793 -Islanders 50630 -Islands 36827 -Islas 62331 -Islay 62066 -Isle 45751 -Isles 49867 -Islet 59560 -Islets 63991 -Isleworth 63419 -Isley 61584 -Islington 54479 -Islip 57923 -Ismael 62066 -Ismail 56721 -Ismaili 61256 -Ismajli 64905 -Isn't 48677 -Isnt 63077 -Iso 56972 -Isobar 65452 -Isobel 60856 -Isoelectric 62331 -Isoflurane 65170 -Isoforms 65452 -Isola 62469 -Isolate 60238 -Isolated 52648 -Isolates 58212 -Isolating 61362 -Isolation 50220 -Isolde 63991 -Isolectotype 60321 -Isolepis 64657 -Isoleucine 65452 -Isom 64905 -Isomerase 65452 -Isometric 61256 -Isonema 65170 -Isoniazid 64423 -Isopropyl 64657 -Isosorbide 63077 -Isosyntype 59560 -Isothermal 59702 -Isotope 58523 -Isotopes 60670 -Isotopic 60157 -Isotype 50328 -Isp 63245 -Israel 41266 -Israel's 52635 -Israeli 46681 -Israelis 56518 -Israelite 65452 -Israelites 61584 -Israels 62331 -Iss 61818 -Issa 61256 -Issac 60492 -Issaquah 58919 -Issey 61256 -Issuable 64905 -Issuance 56756 -Issue 34761 -Issued 46751 -Issuer 55448 -Issuer's 62331 -Issuers 59491 -Issues 36780 -Issuing 59039 -Issykitty 64423 -Ist 57970 -Istanbul 51731 -Istebna 61051 -Isthmus 61051 -Istituto 55299 -Isto 62917 -Istoriia 65170 -Istria 63601 -Istvan 63601 -István 64657 -Isuzu 50906 -It 28912 -It'S 63792 -It'd 58745 -It'll 53779 -It's 34238 -ItDownloadSend 62613 -ItPrint 58577 -Ita 58470 -Itachi 59630 -Ital 57122 -Italeri 63077 -Italia 48221 -Italian 40097 -Italiana 56721 -Italiane 61472 -Italiani 64657 -Italiano 42058 -Italians 56518 -Italic 54399 -Italicized 64657 -Italics 62066 -Italien 63601 -Italo 61256 -Italy 38416 -Italy's 55934 -Itanium 60238 -Itasca 60157 -Itawamba 63077 -Itazura 63601 -Itch 59164 -Itching 61472 -Itchy 56756 -Itech 61472 -Item 36705 -Item's 63077 -ItemName 60238 -Itemized 64657 -Items 37823 -Iterated 64657 -Iteration 60157 -Iterations 64905 -Iterative 58262 -Iterator 63245 -Ithaca 56110 -Ithaka 46563 -Itineraries 55299 -Itinerary 52351 -Ito 55684 -Ito's 65452 -Itoh 60238 -Itraconazole 65170 -Itronix 63792 -Its 39513 -Itself 55373 -Itsukushima 63077 -Itsy 63991 -Itt 63245 -Itty 60405 -Itunes 57923 -Itupeva 63601 -Itz 64423 -Itza 64905 -Itzhak 64201 -Itzulpenaren 63419 -Iu 58745 -Iv 57923 -Iva 61051 -Ivalice 58017 -Ivan 48975 -Ivana 59292 -Ivanell 63077 -Ivanhoe 59923 -Ivanka 61699 -Ivanov 58860 -Ivanova 64905 -Ivanovic 61362 -Ivanovich 62917 -Ivar 57009 -Ive 51434 -Iveco 63077 -Iver 60670 -Iversen 65170 -Iverson 54946 -Iverson's 63245 -Ives 55877 -Ivete 60580 -Ivey 58470 -Ivf 61940 -Ivica 63245 -Ivins 61362 -Ivo 58745 -Ivoire 58313 -Ivonne 61699 -Ivonne's 65452 -Ivor 60670 -Ivorian 65452 -Ivory 48323 -Ivy 49739 -Iván 62469 -Iwamura 64657 -Iwan 64201 -Iwasaki 61051 -Iwata 60856 -Iwate 64657 -Iwelumo 63991 -Iwi 64905 -Iwill 64201 -Iwo 60405 -Iwona 65452 -Ix 60762 -Ixia 62917 -Ixiaro 64423 -Ixodes 63419 -Ixtapa 63419 -Ixus 60492 -Ixy 63077 -Iya 65452 -Iyengar 62469 -Iyer 58688 -Iz 60580 -IzPack 65452 -Izabel 64657 -Izakaya 64905 -Ize 65452 -Izhevsk 65170 -Izibor 58365 -Izmir 60000 -Izod 64201 -Izu 64905 -Izumi 57318 -Izvestiya 58113 -Izzard 63991 -Izzie 61940 -Izzo 61472 -Izzy 58313 -Iñigo 63419 -J 33169 -J'ai 60405 -J's 58860 -JA 45531 -JAA 61051 -JAB 63601 -JAC 61152 -JACC 64657 -JACI 50424 -JACK 52832 -JACKET 56551 -JACKETS 57923 -JACKIE 59424 -JACKSON 53024 -JACKSONVILLE 62762 -JACOB 59357 -JACOBS 59923 -JACQUELINE 62917 -JACQUES 64905 -JAD 64657 -JADE 58577 -JAE 61940 -JAERI 61699 -JAF 57609 -JAG 61256 -JAGUAR 59848 -JAH 61818 -JAI 63601 -JAIL 61699 -JAIME 64201 -JAIN 61472 -JAK 64905 -JAKE 58113 -JAKKS 58688 -JAL 58802 -JALAN 63077 -JAM 55373 -JAMA 50129 -JAMAHIRIYA 63991 -JAMAICA 57741 -JAMAICAN 65170 -JAMAevidence 63991 -JAMES 48009 -JAMIE 58688 -JAMIROQUAI 63245 -JAMMU 63245 -JAMS 63419 -JAN 52725 -JANA 62613 -JANE 55963 -JANET 57609 -JANICE 63419 -JANITORIAL 65170 -JANUARY 48856 -JAP 60580 -JAPAN 51166 -JAPANESE 55526 -JAPON 57046 -JAR 58745 -JARDA 63077 -JARDINE 65170 -JARDINES 65170 -JARED 63792 -JARS 63245 -JARVIS 65452 -JARs 64423 -JAS 62762 -JASCO 65452 -JASMINE 63419 -JASN 63601 -JASON 56388 -JASPER 59774 -JAT 63991 -JAV 60000 -JAVA 55821 -JAVASCRIPT 62196 -JAVIER 63991 -JAWS 64657 -JAX 61940 -JAXB 59491 -JAXRException 65452 -JAY 55154 -JAY'S 65452 -JAYS 64201 -JAZZ 54059 -JAlbum 64905 -JB 48552 -JB's 64201 -JBA 64657 -JBBTE 56324 -JBC 55578 -JBI 62331 -JBJS 63077 -JBL 54857 -JBN 63245 -JBOD 65170 -JBS 64423 -JBoss 54059 -JBuilder 60078 -JC 45470 -JCA 64657 -JCAHO 60952 -JCB 56585 -JCC 59923 -JCEM 65170 -JCF 61940 -JCI 59923 -JCK 59774 -JCM 58113 -JCO 59491 -JCP 60580 -JCPenney 54499 -JCR 62331 -JCS 60492 -JCT 64201 -JCVD 62066 -JCW 63792 -JCal 60762 -JD 45479 -JD's 64423 -JDA 65170 -JDBC 55631 -JDDG 60856 -JDF 63419 -JDK 56935 -JDM 56262 -JDPower 64201 -JDS 58979 -JE 48629 -JEAN 57970 -JEANNE 64657 -JEANS 57696 -JEB 61699 -JEC 63991 -JED 64423 -JEE 63245 -JEEP 56721 -JEF 63991 -JEFF 56140 -JEFFERSON 56862 -JEFFREY 58262 -JEL 51104 -JELLO 63077 -JELLY 61584 -JEM 59292 -JEMS 60580 -JEN 63792 -JENKINS 64657 -JENKS 64201 -JENNA 63991 -JENNIFER 54601 -JENNINGS 65452 -JENNY 59848 -JENSEN 61818 -JEOL 62469 -JEPSON 62917 -JEREMIAH 65452 -JEREMY 59923 -JEROME 62613 -JERRY 55849 -JERSEY 53597 -JERUSALEM 62469 -JESS 63991 -JESSE 59227 -JESSICA 55323 -JESSIE 64657 -JESUS 55934 -JET 54770 -JETP 62331 -JETS 64423 -JEWEL 62331 -JEWELLERY 59164 -JEWELRY 55107 -JEWELS 65170 -JEWISH 58919 -JF 49590 -JFC 61362 -JFK 54835 -JFL 62196 -JFrame 62066 -JFreeChart 64201 -JG 49535 -JH 47286 -JHB 62196 -JHE 63077 -JHEP 65452 -JHM 64201 -JHP 64201 -JI 55992 -JIANG 64201 -JIC 63601 -JIFFY 62469 -JIGSAW 65170 -JIJU 64657 -JIL 65452 -JILL 61362 -JIM 53038 -JIMENEZ 65452 -JIMI 64201 -JIMMY 56652 -JIN 63077 -JINMA 63077 -JIP 65170 -JIRA 52584 -JIS 60078 -JISC 61152 -JIT 62196 -JJ 46607 -JJ's 61472 -JJB 61940 -JJM 61699 -JK 48101 -JKA 65452 -JKD 61699 -JKL 63601 -JL 46071 -JLA 58860 -JLP 63991 -JLS 63991 -JLT 64201 -JLU 63601 -JLo 65170 -JLorraine 65452 -JM 45287 -JMAR 62762 -JMB 62613 -JMC 63077 -JMD 62469 -JME 62331 -JMET 64423 -JMG 64201 -JMM 63792 -JMNM 56324 -JMP 61940 -JMS 58162 -JMU 63245 -JMX 65170 -JMcK 64657 -JMeter 65452 -JN 53988 -JNCO 64201 -JNDI 61699 -JNE 65452 -JNJ 64201 -JNK 60670 -JNM 65452 -JNanoR 56324 -JO 51953 -JOAN 58745 -JOANNA 64657 -JOANNE 63792 -JOAQUIN 64423 -JOB 49429 -JOBS 48653 -JOBSEEKER 63419 -JOC 64423 -JOCK 60321 -JOCURI 63792 -JOD 65170 -JOE 52315 -JOEL 60157 -JOEY 61699 -JOHN 45959 -JOHN'S 63601 -JOHNNIE 63419 -JOHNNY 57238 -JOHNS 59164 -JOHNSON 53762 -JOHNSTON 60238 -JOHO 65452 -JOIN 45879 -JOINING 62613 -JOINS 64201 -JOINT 51570 -JOINTS 63792 -JOKE 64423 -JOKER 64905 -JOKES 62762 -JOLIE 58632 -JOLLY 65452 -JOM 64657 -JON 58470 -JONAS 59292 -JONATHAN 57318 -JONES 54321 -JONNY 65170 -JOOLA 65170 -JOR 63991 -JORDAN 55684 -JORGE 62613 -JOSA 59491 -JOSE 55373 -JOSEPH 51996 -JOSEPHINE 62066 -JOSH 58113 -JOSHUA 57923 -JOSIAH 65452 -JOUR 62469 -JOURNAL 43242 -JOURNALISM 65452 -JOURNALS 53454 -JOURNEY 59848 -JOY 57160 -JOYCE 60321 -JP 45178 -JP's 62196 -JPA 58162 -JPC 62331 -JPCRD 59702 -JPEG 49417 -JPEGs 63419 -JPET 61472 -JPG 54946 -JPL 55226 -JPM 57653 -JPME 64201 -JPMORGAN 63991 -JPMorgan 53952 -JPN 57524 -JPR 65452 -JPS 60762 -JPY 52940 -JPost 65170 -JQ 58860 -JR 45914 -JR's 62917 -JRA 62066 -JRC 59848 -JRE 63077 -JRG 63077 -JRL 59774 -JRO 63245 -JRR 60321 -JRuby 60157 -JRun 61256 -JS 47540 -JSA 63077 -JSC 56485 -JSE 59491 -JSF 55448 -JSL 62196 -JSM 61051 -JSON 59702 -JSP 53377 -JSR 57278 -JSST 61051 -JST 53917 -JSTOR 47939 -JScript 53988 -JStrike 63991 -JT 49152 -JT's 61584 -JTA 64201 -JTAG 61256 -JTC 64905 -JTD 62066 -JTG 64905 -JTL 63601 -JTS 61362 -JTable 64423 -JU 58523 -JUAN 57831 -JUDGE 52996 -JUDGES 62917 -JUDGMENT 59039 -JUDICIAL 58979 -JUDITH 62469 -JUDY 57160 -JUEZ 65170 -JUGS 62331 -JUICE 59923 -JUICY 65452 -JUILLET 65452 -JUKEBOX 63991 -JUKI 58017 -JUL 53952 -JULIA 59702 -JULIAN 61818 -JULIE 59227 -JULIET 63601 -JULIO 63792 -JULIUS 63792 -JULY 50484 -JUMBO 60157 -JUMP 56721 -JUMPER 57160 -JUN 54151 -JUNCTION 60000 -JUNE 49670 -JUNGLE 59702 -JUNIOR 52546 -JUNIORS 64201 -JUNIPER 63601 -JUNK 62917 -JUNO 64905 -JUPITER 64905 -JURISDICTION 60952 -JURIST 65452 -JURY 60405 -JUS 58523 -JUST 47435 -JUSTICE 54499 -JUSTIFICATION 64905 -JUSTIN 58577 -JUVENILE 60157 -JUnit 61362 -JV 49060 -JVB 65452 -JVC 51017 -JVC's 64657 -JVI 60952 -JVM 61051 -JW 46663 -JWC 64657 -JWG 64905 -JWI's 64905 -JWP 62613 -JWS 63077 -JWT 64905 -JX 63077 -JXME 65170 -JY 56618 -JZ 57741 -Ja 51985 -Jaa 64905 -Jaakko 64423 -Jaan 59702 -Jaane 57122 -Jaap 60157 -Jab 56756 -Jabal 63792 -Jabalpur 61051 -Jabba 64657 -Jabber 61051 -Jabberwocky 63077 -Jablonski 63991 -Jaboatão 64905 -Jabra 56756 -Jabs 65452 -Jaburoalhu 56452 -Jac 61362 -Jacaranda 63792 -Jace 59424 -Jacek 60000 -Jachimowicz 64905 -Jaci 63991 -Jacinta 62469 -Jacinto 58162 -Jack 40584 -Jack's 52899 -Jackal 58979 -Jackarse 62331 -Jackass 56687 -Jacke 63991 -Jacked 63601 -Jackel 65452 -Jacket 45184 -Jackets 46797 -Jacki 61152 -Jackie 47831 -Jackie's 62917 -Jackman 59491 -Jacko 63792 -Jackpot 55906 -Jackpots 64201 -Jackrabbit 62917 -Jacks 52399 -Jackson 41592 -Jackson's 52187 -Jacksons 62613 -Jacksonville 45678 -Jacksonville's 64423 -Jacky 58523 -Jaclyn 58632 -Jaco 59560 -Jacob 46896 -Jacob's 56899 -Jacobean 62917 -Jacobi 58688 -Jacobian 59630 -Jacobite 65170 -Jacobs 49470 -Jacobsen 57482 -Jacobson 53865 -Jacobus 63419 -Jacoby 60000 -Jacquard 58577 -Jacque 59039 -Jacqueline 51387 -Jacquelyn 61362 -Jacques 49262 -Jacqui 57609 -Jacquie 60952 -Jacuzzi 55299 -Jad 63792 -Jada 56324 -Jadakiss 60000 -Jadavpur 64657 -Jade 49452 -Jade's 64657 -Jaded 61940 -Jaden 62469 -Jadu 61152 -Jae 56827 -Jaedenar 59491 -Jaeger 58688 -Jaf 63245 -Jaffa 61699 -Jaffe 56687 -Jaffer 63991 -Jaffna 62613 -Jaffray 64905 -Jag 57238 -Jaga 65170 -Jagadish 65452 -Jagan 63991 -Jagannath 63792 -Jagannathan 63991 -Jagdeo 64657 -Jagdish 62331 -Jager 60405 -Jagermeister 59491 -Jagex 64423 -Jagged 59039 -Jagger 55934 -Jagger's 64905 -Jagiellonian 64423 -Jagjit 63792 -Jagr 63419 -Jags 61699 -Jaguar 48178 -Jaguars 54188 -Jah 55578 -Jahan 63245 -Jahangir 65170 -Jahn 59491 -Jahr 61940 -Jahre 59491 -Jahren 63419 -Jai 54946 -Jaiku 59702 -Jail 51087 -Jailbait 65452 -Jailbreak 55934 -Jailbroken 60321 -Jailed 59292 -Jailhouse 64657 -Jails 62917 -Jaime 51888 -Jaimie 62613 -Jain 54499 -Jaina 63245 -JaincoTech 64657 -Jainism 61362 -Jaipur 51680 -Jairo 63419 -Jaisalmer 60321 -Jaiswal 65170 -Jaitley 62469 -Jajah 65452 -Jak 55060 -Jakalope 65452 -Jakarta 51963 -Jakaya 64657 -Jake 47177 -Jake's 58470 -Jakes 59039 -Jaki 63245 -Jakki 61818 -Jakks 59774 -Jako 64657 -Jakob 56585 -Jakub 60762 -Jal 63077 -Jalal 62917 -Jalan 55448 -Jalandhar 55793 -Jalapeno 59227 -Jalen 63991 -Jali 63792 -Jalisco 60157 -Jalopnik 60952 -JalopnikOfficial 65452 -Jalopnikcustom 64905 -Jalopy 64201 -Jalouse 65452 -Jalowiec 59774 -Jam 47266 -Jam's 65452 -JamBase 63245 -Jama 63601 -Jamaal 61940 -Jamahiriya 53813 -Jamaica 43999 -Jamaica's 63991 -Jamaican 53517 -Jamaicans 65170 -Jamal 55766 -Jaman 64657 -Jamar 60321 -Jamba 59292 -Jambalaya 65170 -Jambi 63245 -Jamboree 57160 -Jameel 65452 -Jamel 63077 -Jamelia 64423 -Jamendo 61472 -James 36827 -James's 57009 -Jamescart 64905 -Jameson 52198 -Jamestown 55398 -Jamey 59774 -Jami 61051 -Jamia 59923 -Jamie 45347 -Jamie's 57609 -Jamieson 57358 -Jamil 62613 -Jamin 63792 -Jamiroquai 62066 -Jamis 62331 -Jamison 58470 -Jammer 62196 -Jammie 63991 -Jammin 63419 -Jamming 60762 -Jammu 54969 -Jammy 63991 -Jamnagar 56687 -Jamo 60762 -Jams 56262 -Jamshedpur 61362 -Jamster 62331 -Jamu 65452 -Jan 35464 -Jan's 60000 -JanSport 58979 -Jana 53630 -Janaki 63419 -Janata 60670 -Jancis 64201 -Jane 43405 -Jane's 55684 -JaneW 60405 -Janeane 64423 -Janeen 65452 -Janeiro 52435 -Janelle 56972 -Janene 65452 -Janes 57831 -Janesville 56899 -Janet 45929 -Janet's 64657 -Janette 61051 -Janeway 63991 -Jang 57122 -Jani 62469 -Janice 50584 -Janie 57831 -Janina 64423 -Janine 55578 -Janis 54170 -Janitor 58979 -Janitorial 53167 -Janitors 62196 -Janka 64657 -Janke 64423 -Jankovic 59039 -Jann 62469 -Janna 61584 -Janne 60405 -Janney 64905 -Janofsky 65452 -Janome 62917 -Janos 60762 -Janse 65170 -Jansen 55906 -Jansing 64905 -Janson 63991 -Jansport 59039 -Janssen 58162 -Janssens 64423 -Jansson 64657 -Janta 64201 -Jantzen 64657 -Januar 59848 -Januari 63245 -January 33789 -Janus 56388 -JanusVonHeuten 64423 -Janusz 58745 -Janzen 64423 -Jap 58802 -Japan 36792 -Japan's 49500 -Japanese 38986 -Japanther 65170 -Japon 62331 -Japundit 65170 -Jaqueline 64905 -Jaques 61472 -Jar 52387 -Jara 64201 -Jarabe 63245 -Jaramillo 64423 -Jardim 64905 -Jardin 56293 -Jardine 57741 -Jardín 64905 -Jared 50060 -Jared's 65170 -Jaren 65452 -JarethDallis 63077 -Jargon 56080 -Jarhead 63077 -Jari 60238 -Jarman 62331 -Jarndyce 62613 -Jaro 64423 -Jaromir 65170 -Jaron 65452 -Jaroslav 61472 -Jarre 64423 -Jarred 63792 -Jarrell 64657 -Jarret 63601 -Jarrett 54341 -Jarrod 60670 -Jarrow 59923 -Jars 56140 -Jarvis 53454 -Jas 58632 -Jasco 62762 -Jase 64905 -Jasmin 56756 -Jasmine 51963 -Jasminum 64423 -Jasna 63991 -Jasob 62196 -Jason 42048 -Jason's 58745 -JasonDouglas 63991 -Jasons 60762 -Jasper 50638 -JasperReports 61362 -Jaspers 62196 -Jaspersoft 62917 -Jaswant 62917 -Jaswinder 64423 -Jatin 63991 -Jaton 65170 -Jatropha 60670 -Jauhari 65170 -Jaume 62196 -Jaunted 64657 -Java 40390 -Java's 64905 -JavaDoc 59774 -JavaFX 64657 -JavaOne 62613 -JavaRanch 64657 -JavaScript 39680 -JavaScripts 63991 -JavaServer 61940 -JavaThread 64201 -JavaWorld 59630 -Javad 65170 -Javadoc 64423 -Javanese 58470 -Javascript 45737 -Javed 59164 -Javelin 57440 -Javier 51974 -Javier's 65452 -Javits 62469 -Javon 62762 -Javscript 63245 -Jaw 54902 -Jawa 59702 -Jawad 63245 -Jawahar 63991 -Jawaharlal 62066 -Jawbone 59227 -Jaworski 61940 -Jaws 58113 -Jax 56687 -Jaxon 64201 -Jaxx 58113 -Jay 43821 -Jay's 57524 -Jaya 55130 -Jayant 62331 -Jayanti 63601 -Jaycar 65452 -Jayco 59848 -Jayde 62331 -Jayden 59227 -Jaye 60238 -Jayhawk 63601 -Jayhawks 57970 -Jayme 59292 -Jaymes 63419 -Jayna 63601 -Jayne 54813 -Jaynes 64201 -Jays 53256 -Jayshree 65170 -Jayson 57084 -Jaz 61472 -Jazeera 59227 -Jazmin 60157 -Jazmine 58802 -Jazz 41961 -JazzSet 62469 -Jazzanova 64201 -Jazze 65452 -Jazzercise 61940 -Jazzwise 65170 -Jazzy 57399 -Jbl 65452 -Jc 63601 -Jd 64905 -Je 52886 -Jealous 59292 -Jealousy 60856 -Jean 43761 -Jean's 61152 -Jeane 62613 -Jeanerette 65170 -Jeanette 54078 -Jeanette's 65170 -Jeanie 60762 -Jeanine 59560 -Jeanna 64657 -Jeanne 51835 -Jeannette 58262 -Jeannie 57482 -Jeannine 62196 -Jeans 46687 -Jeary 64905 -Jeb 58470 -Jebel 60492 -Jebus 65452 -Jed 56231 -Jeddah 58313 -Jedi 51492 -Jee 63077 -Jeep 44377 -Jeepers 59774 -JeepersMedia 61051 -Jeeps 57199 -Jeers 62331 -Jeet 58065 -Jeevan 62613 -Jeeves 57653 -Jeezy 53081 -Jef 61362 -Jefe 65170 -Jeff 41844 -Jeff's 57923 -Jeffco 62762 -Jefferies 58365 -Jeffers 62469 -Jefferson 45749 -Jefferson's 62331 -Jeffersonville 58523 -Jeffery 55500 -Jefferys 64905 -Jeffree 65170 -Jeffrey 45751 -Jeffrey's 65452 -Jeffreys 62196 -Jeffries 59101 -Jeffry 65170 -Jeffs 62917 -Jeg 63792 -Jehan 64905 -Jehovah 63245 -Jehovah's 58523 -Jekyll 57238 -Jel 63792 -Jelena 54879 -Jelinek 62762 -Jellies 59702 -Jello 58860 -Jelly 52130 -Jellyfish 61584 -Jelsoft 43848 -Jem 59292 -Jemez 61584 -Jemima 59923 -Jemison 62066 -Jemma 63601 -Jems 65170 -Jen 50074 -Jen's 60856 -Jena 56827 -Jenaveve 62331 -Jeng 64423 -Jenga 63792 -Jeni 60762 -Jenico 61818 -Jenifer 59424 -Jenin 62469 -Jenkin 63601 -Jenkins 50702 -JenkinsRose 65452 -Jenkinson 64905 -Jenkintown 64657 -Jenks 60157 -Jenn 54302 -Jenna 49553 -Jenna's 64657 -Jenner 57970 -Jenni 55060 -Jennie 54560 -Jennifer 39685 -Jennifer's 61256 -Jennings 51731 -Jenny 46678 -Jenny's 61472 -Jenolan 62469 -Jenova 64905 -Jens 53934 -Jensen 48524 -Jensen's 63245 -Jenson 60405 -Jentina 64905 -Jentz 64201 -Jeol 64423 -Jeon 64423 -Jeong 59923 -Jeopardy 57970 -Jeph 64423 -Jeppesen 59702 -Jeppson 64423 -Jepson 56551 -Jeqq 63792 -Jer 63245 -Jerald 63419 -Jere 63991 -Jered 65170 -Jeremiah 52673 -Jeremie 64905 -Jeremy 46068 -Jeremy's 61818 -Jerez 60492 -Jeri 59164 -Jericho 52609 -Jerk 57318 -Jerking 60580 -Jerks 62917 -Jerky 59424 -Jermain 64423 -Jermaine 55711 -Jermyn 63792 -Jernigan 63991 -Jeroen 58688 -Jerome 50416 -Jerome's 65452 -Jerre 65170 -Jerri 63991 -Jerrod 63991 -Jerrold 64423 -Jerry 44468 -Jerry's 46778 -Jersey 39400 -Jersey's 57046 -Jerseys 51026 -Jerusalem 49168 -Jerusalem's 64201 -Jervis 58162 -Jerzy 59491 -Jes 61051 -Jeskola 65452 -Jesmond 65452 -Jesolo 63991 -Jesper 59491 -Jess 51877 -Jess's 64657 -Jessamine 64905 -Jesse 46511 -Jesse's 61256 -Jessen 65452 -Jessi 60157 -Jessica 42754 -Jessica's 59227 -Jessie 52496 -Jessie's 64657 -Jessika 65170 -Jessup 59357 -Jessy 62613 -Jest 61940 -Jester 57238 -Jesters 65170 -Jesu 61940 -Jesuit 55877 -Jesuits 61584 -Jesup 64905 -Jesus 42471 -Jesus's 63419 -Jesús 59774 -Jet 44343 -Jet's 64657 -JetBlue 49657 -JetFlash 65170 -Jetboil 63792 -Jeter 57238 -Jethro 58523 -Jeti 65170 -Jetje 59774 -Jets 49022 -Jetski 60670 -Jetsons 61818 -Jetstar 59164 -Jetstream 63077 -Jett 59560 -Jetta 51942 -Jette 65452 -Jetted 60405 -Jetty 57440 -Jetway 63601 -Jetzt 60492 -Jeu 61818 -Jeune 64201 -Jeunesse 62066 -Jeux 55084 -Jew 54096 -Jewel 50122 -Jewelcrafting 56110 -Jeweled 59292 -Jeweler 60952 -Jewelers 54207 -Jewelery 63245 -Jewell 57278 -Jeweller 64657 -Jewellers 57609 -Jewellery 45029 -Jewellry 59101 -Jewelry 39488 -Jewels 54041 -Jewett 58262 -Jewish 43314 -Jewlery 63991 -Jewry 64201 -Jews 48252 -Jez 63991 -Jezebel 58313 -JezebelOprah 65452 -Jezebelpot 63245 -Jezel 65170 -Jha 59923 -Jhansi 65170 -Jharkhand 57440 -Jhon 65170 -Ji 54902 -JiWire 62917 -Jia 55202 -Jiabao 63419 -Jian 57696 -Jiang 53729 -Jiangsu 56262 -Jianguo 63077 -Jiangxi 58470 -Jiangyin 62066 -Jiao 61362 -Jiaotong 62331 -Jib 62917 -JibJab 58523 -Jibbitz 64201 -Jibboom 63419 -Jide 63419 -Jie 57238 -Jiejia 65452 -Jiesheng 61256 -Jiffy 57876 -Jig 56827 -Jiggy 63419 -Jigme 63077 -Jigmi 65170 -Jigoku 59039 -Jigs 60321 -Jigsaw 50357 -Jigsaw's 61699 -Jigsaws 60952 -Jihad 55154 -Jikan 63245 -Jikto 63991 -Jil 61818 -Jilin 59491 -Jill 46855 -Jill's 61362 -Jillian 55037 -Jilly 63419 -Jim 40113 -Jim's 55178 -Jima 62469 -Jimbaran 63601 -Jimbo 59560 -Jimenez 56485 -Jimi 53438 -Jimmie 54685 -Jimmy 44721 -Jimmy's 57609 -JimmyBo 64201 -Jimny 61699 -Jims 63419 -Jiménez 61584 -Jin 52447 -Jinan 62066 -Jindal 58632 -Jing 54341 -Jingle 56388 -Jingu 61051 -Jingyuan 63792 -Jini 64905 -Jinja 62917 -Jinks 62469 -Jinn 63991 -Jinnah 63991 -Jinpohu 63792 -Jintao 61256 -Jinx 62762 -Jira 63991 -Jiraiya 61584 -Jiraya 65170 -Jiri 60321 -Jiro 62469 -Jism 65452 -Jitsu 61472 -Jitter 61699 -Jitterbug 63077 -Jittery 65170 -Jiu 60762 -Jiujiang 64657 -Jive 54005 -Jizz 61152 -Jj 64657 -Jkt 56756 -Jl 62196 -Jmol 65452 -Jn 61051 -Jnana 65170 -Jnr 63601 -Jo 47493 -Jo's 60321 -JoAnn 59039 -JoAnne 63792 -JoJo 57009 -Joachim 55299 -Joakim 60321 -Joan 47005 -Joan's 63601 -Joana 63245 -Joanie 62469 -Joann 58802 -Joanna 51113 -Joanna's 62613 -Joanne 50270 -Joao 58365 -Joaquim 63077 -Joaquin 52858 -Joaquín 63792 -Job 34582 -Job's 61472 -JobCentral 64905 -JobCircle 65170 -JobFish 65452 -JobList 64423 -JobPost 62469 -JobSearch 59560 -JobTarget 65452 -Joba 63419 -Joba's 63077 -Jobat 63792 -Jobbing 65452 -Jobboom 60492 -Jobcentre 62762 -Jobdango 64657 -Jobfind 64905 -Jobim 63601 -Jobin 65452 -Jobing 62917 -Jobless 59848 -Jobs 31552 -Jobs's 60492 -JobsToday 65170 -Jobseeker 62196 -Jobseekers 61699 -Jobseeking 60078 -Jobsite 58470 -Jobskills 62613 -Jobster 60405 -Joby 62196 -Joc 59164 -Jocelyn 56356 -Jochen 59101 -Jock 56356 -Jockey 54151 -Jockeys 57923 -Jockin 57609 -Jockos 65452 -Jocks 61940 -Jocuri 56791 -Jodha 63601 -Jodhaa 63991 -Jodhpur 58262 -Jodi 53392 -Jodie 53746 -Jodo 62917 -Jody 53470 -Jody's 65170 -Joe 39457 -Joe's 50718 -JoeAnt 64657 -JoeHamiltonPhotography 64657 -Joel 46133 -Joel's 63601 -Joell 63792 -Joelle 62066 -Joerg 59164 -Joes 56972 -Joesph 65170 -Joey 49234 -Joey's 60952 -Joffe 60952 -Joffrey 63601 -Jog 62469 -Joga 62762 -Jogger 59101 -Joggers 62331 -Jogging 56827 -Jogi 64657 -Jogos 57238 -Joh 63419 -Johan 51444 -Johan's 64657 -Johann 52107 -Johanna 54969 -Johannes 53124 -Johannesburg 49285 -Johannine 64423 -Johannson 64905 -Johansen 59848 -Johanson 59848 -Johansson 52559 -Johar 62917 -Johhny 65452 -John 33344 -John's 47385 -JohnArmagh 64423 -Johnathan 59039 -Johnathon 64905 -Johne's 64201 -Johnna 65452 -Johnnie 54664 -Johnny 44213 -Johnny's 59424 -Johns 47417 -Johnsbury 64201 -Johnson 40664 -Johnson's 52447 -Johnsons 60952 -Johnsonville 64423 -Johnsson 65452 -Johnston 48766 -Johnston's 62469 -Johnstone 58365 -Johnstown 55877 -Johny 63419 -Johor 58313 -Joi 60762 -Joico 65452 -Joie 61256 -Join 32063 -JoinTour 63792 -Joined 46045 -Joiner 55849 -Joiners 60952 -Joinery 58113 -Joinex 65170 -Joining 52459 -Joins 50670 -Joint 43085 -Jointly 59702 -Joints 55060 -Jojo 58470 -Jojo's 64657 -Jojoba 65452 -Joke 50881 -Joker 51963 -Joker's 60157 -Jokers 61699 -Jokes 47136 -Jolanda 61362 -Jolande 65170 -Jolene 57318 -Joli 63419 -Jolie 47859 -Jolie's 60856 -Joliet 56485 -Jolla 54992 -Jollee 65170 -Jolley 64657 -Jolly 54560 -Jolt 63245 -Joly 62331 -Joma 64201 -Jomtien 63245 -Jon 43183 -Jon's 60238 -Jonah 53392 -Jonas 46480 -Jonata 62917 -Jonathan 43767 -Jonathan's 60580 -Jonathon 56721 -Jone 64423 -Jones 40452 -Jones's 59848 -Jonesboro 58162 -Jonestown 62762 -Jonesville 63419 -Jonesy 61472 -Jonette 62066 -Jonezetta 65170 -Jong 53271 -Jongerendag 64905 -Jongg 59357 -Jongkind 64657 -Joni 56551 -Jonna 65170 -Jonnie 65452 -Jonny 54207 -Jono 64201 -Jonquil 65452 -Jonson 60492 -Jonson's 62917 -Jonsson 60856 -Joo 60238 -Jooksev 63991 -Jools 58417 -Joombie 57923 -Joomla 47577 -JoomlaShack 65452 -JoomlaWatch 65452 -JoomlaWorks 55084 -Joomlashack 63245 -Joon 61051 -Joondalup 62196 -Joong 63419 -Joop 63077 -Joos 63419 -Joost 57696 -Joplin 55766 -Joppa 60580 -Jordan 41814 -Jordan's 57160 -Jordana 63792 -Jordanian 56140 -Jordanians 65452 -Jordans 60078 -Jorden 60321 -Jordi 57741 -Jordin 52244 -Jordon 62917 -Jordy 63991 -Jorg 57238 -Jorge 50799 -Jorgen 63077 -Jorgensen 59630 -Jorgenson 64201 -Jorhat 64657 -Joris 61152 -Jorma 61699 -Jorn 65452 -Jornada 62066 -Jory 64905 -Jos 57970 -JosAH 62066 -Jose 42211 -Jose's 63245 -Josef 53286 -Josefina 63792 -Josefine 65170 -Josep 59630 -Joseph 41422 -Joseph's 53392 -Josepha 63792 -Josephine 53646 -Josephs 61472 -Josephson 59292 -Josephus 63245 -Josey 58417 -Josh 44544 -Josh's 59292 -Joshi 56021 -Joshua 47445 -Joshua's 62196 -Josiah 57482 -Josie 55107 -Josip 64657 -Joslin 60856 -Joslyn 63991 -Joss 53796 -Jossip 62331 -Jost 59848 -Jostens 64657 -José 50136 -Jota 62762 -Joti 64905 -Jottings 64201 -Jotun 65170 -Joubert 65170 -Jouko 64657 -Joule 63991 -Joules 64657 -Jounin 62331 -Jouning 62613 -Jour 59292 -Jourdan 64201 -Journal 32617 -Journal's 59101 -JournalLive 64201 -JournalSeek 65170 -Journaling 61362 -Journalism 45222 -Journalist 50662 -Journalistic 58262 -Journalists 52472 -Journals 36923 -Journerdism 63792 -Journey 45457 -Journey's 64657 -JourneyEd 57609 -Journeyman 56080 -Journeys 55821 -Journos 63792 -Joust 63991 -Jovan 63792 -Jovani 57923 -Jovanovic 63991 -Jovem 65452 -Joven 64657 -Jovi 48913 -Jovian 63419 -Jovovich 60580 -Jowell 63245 -Joy 46887 -Joy's 63077 -Joya 61940 -Joyce 49319 -Joyce's 61818 -Joye 63419 -Joyeux 64657 -Joyful 58802 -Joyita 62917 -Joyner 59702 -Joyous 64657 -Joyride 65170 -Joys 54380 -Joystick 57785 -Joysticks 60405 -Joystiq 50718 -Jozef 60762 -João 57482 -Joël 61362 -Jp 61256 -Jpc's 63792 -Jpeg 60580 -Jpg 59702 -Jpn 55963 -Jpop 65452 -Jr 47776 -Jr's 62196 -Js 62196 -Jt 62469 -Ju 55323 -JuJitsu 64905 -JuJu 64423 -Juan 44721 -Juan's 65452 -Juana 61362 -Juanda 64905 -Juande 63601 -Juanes 60856 -Juanita 56935 -Juarez 58860 -Jubail 60952 -Jubei'Thos 60492 -Jubii 65452 -Jubilant 63601 -Jubilee 53241 -Juco 65452 -Jud 62762 -Judah 56050 -Judaic 61940 -Judaica 59560 -Judaism 53485 -Judas 54992 -Judd 54302 -Jude 51321 -Jude's 61940 -Judge 42941 -Judge's 58162 -Judged 64905 -Judgement 54946 -Judgements 64201 -Judges 51104 -Judging 54133 -Judgment 51406 -Judgments 57238 -Judi 57970 -Judicature 65170 -Judicial 48505 -Judiciary 54479 -Judie 63245 -Judith 48055 -Judo 54341 -Judson 59164 -Judy 47067 -Judy's 60405 -Judío 59164 -Jue 64423 -Juego 62762 -Juegos 59491 -Juels 65170 -Juelz 57876 -Juergen 60580 -Jug 57278 -Juggalo 63077 -Juggernaut 61818 -Juggle 64657 -Juggler 59848 -Juggling 59923 -Juggs 61051 -Jugs 60670 -Juha 61256 -Juhi 61584 -Juhu 64201 -Juice 47173 -JuiceDrops 62196 -Juiced 61152 -Juiceman 63991 -Juicer 59101 -Juicers 59774 -Juices 59424 -Juicy 50940 -Juilliard 62331 -Jujitsu 64201 -Juju 58417 -Juke 60580 -Jukebox 52291 -JukeboxUploaderFacebookOLPC 55963 -Jukeboxes 64905 -Jukka 64423 -Jul 35388 -Julai 63792 -Julbo 64657 -Jule 64201 -Julep 62469 -Jules 51909 -Julho 63419 -Juli 55793 -Julia 46748 -Julia's 61472 -Julian 48230 -Julian's 64423 -Juliana 55552 -Juliane 65452 -Julianna 61051 -Julianne 55107 -Juliano 65452 -Julie 45060 -Julie's 55849 -Julien 55423 -Julienne 64423 -Juliet 53423 -Julieta 59491 -Juliette 56687 -Julington 64423 -Julio 53010 -Julio's 64657 -Julius 51473 -Julián 63991 -July 32657 -July's 65452 -Jumble 60670 -Jumbo 51590 -Jumeirah 59164 -Jump 36459 -JumpBacks 62196 -JumpBox 64905 -JumpTV 60078 -JumpUp 64201 -Jumpcut 59848 -Jumped 63991 -Jumper 52472 -Jumpers 58017 -Jumpgate 63077 -Jumpin 65452 -Jumping 52447 -Jumps 55107 -Jumpstart 59702 -Jumpstyle 63601 -Jumpsuit 57923 -Jumptags 57785 -Jun 35706 -Junaid 62917 -Junaluska 61362 -Junction 48964 -Junctions 63077 -Juncus 63991 -June 32839 -June's 63245 -Juneau 54706 -Juneau's 64423 -Jung 52399 -Jung's 63419 -Junge 63601 -Jungfrau 63245 -Jungle 48726 -Junho 63991 -Juni 57741 -Juniata 65170 -Junichiro 65452 -Junie 63077 -Junio 62331 -Junior 40864 -Junior's 61362 -Juniors 50710 -Juniper 53024 -Juniperus 60492 -Junjou 64423 -Junk 50615 -JunkFood 63792 -Junkers 63792 -Junkets 64657 -Junkfood 59227 -Junkie 53501 -Junkies 57524 -Junko 62469 -Junky 63792 -Junkyard 61051 -Juno 52752 -Juno's 64905 -Junobo 60762 -Junonia 63601 -Junot 63991 -Junta 61256 -Junto 65170 -Junttidiskokunkku 65170 -Jupiler 63792 -Jupiter 51752 -Jupiter's 61818 -JupiterImages 60580 -JupiterOnlineMedia 59101 -JupiterResearch 63419 -Jupiterimages 58313 -Jupitermedia 53934 -Jupitus 63419 -Jura 58979 -Jurado 63991 -Juraj 65452 -Jurassic 52256 -Jurcevic 65170 -Jurgen 60321 -Jurgens 65452 -Juried 63419 -Juries 63991 -Juris 60078 -Jurisdiction 54969 -Jurisdictional 63077 -Jurisdictions 54133 -Jurisprudence 59630 -Jurist 64201 -Jurjus 64201 -Jurkat 61152 -Jurong 61256 -Juror 59702 -Jurors 60670 -Jurupa 65452 -Jury 50742 -Jurys 58313 -Jus 59101 -Jussi 61699 -Just 35949 -JustAnswer 50568 -JustJared 63991 -JustTeenSite 63601 -JustUs 64657 -Justa 64657 -Justdial 63601 -Juste 63245 -Justia 54151 -Justice 41279 -Justice's 62331 -Justices 54499 -Justicia 63792 -Justification 57318 -Justified 63601 -Justify 61362 -Justin 44092 -Justin's 59923 -Justina 64423 -Justine 55154 -Justo 62762 -Justus 61472 -Jute 58162 -Jutland 61818 -Jutsu 60321 -Juttner 65452 -Juuso 65452 -Juv 61362 -Juve 64201 -Juvenile 45972 -Juveniles 61699 -Juventud 63792 -Juventus 56080 -Juxtapoz 63077 -Juxx 61699 -Juárez 62762 -Jv 61256 -Jvc 61256 -Jw 64905 -Jy 62613 -Jyothi 64905 -Jyoti 59923 -Jyotish 64657 -Jython 63991 -Jyväskylä 64905 -János 62066 -Jérôme 62613 -Jóvenes 64423 -József 63792 -Jô 61818 -Jörg 57318 -Jørgen 65170 -Jørgensen 65170 -Júlia 63419 -Jülich 65170 -Jürgen 57524 -K 36444 -K'Nex 64905 -K's 61256 -KA 51835 -KABC 65170 -KABUSHIKI 61699 -KAC 64657 -KACO 63245 -KACZOR 62469 -KAERCHER 61152 -KAG 61818 -KAHN 65452 -KAI 61699 -KAIF 63991 -KAIKOURA 63077 -KAIPARA 64201 -KAISER 61256 -KAISHA 62469 -KAIST 65452 -KAL 62469 -KALAMOSBOOKS 62331 -KALCO 64905 -KAM 63419 -KAMAL 64201 -KAN 64905 -KANE 62331 -KANG 63419 -KANSAS 55423 -KANT 65170 -KANYE 64423 -KAP 63792 -KAPITI 63991 -KAPLAN 62469 -KAPPA 63792 -KAPRANI 65452 -KAR 62066 -KARACHI 64423 -KARAOKE 56021 -KARATE 63077 -KARDASHIAN 59357 -KARE 61818 -KAREN 58365 -KARI 65170 -KARL 60238 -KARMA 60670 -KARMANN 63601 -KARNATAKA 63245 -KART 65170 -KAS 64423 -KASAM 63077 -KASHMIR 63077 -KAT 58065 -KATA 59292 -KATE 57084 -KATHERINE 61699 -KATHLEEN 59560 -KATHRYN 65170 -KATHY 61699 -KATIE 59923 -KATO 63792 -KATP 61256 -KATRINA 60405 -KATV 64423 -KATY 62469 -KATZ 63792 -KAUFMAN 64905 -KAWASAKI 58688 -KAWERAU 63991 -KAY 59491 -KAZAKHSTAN 60762 -KB 41274 -KBA 63419 -KBB 60078 -KBC 57524 -KBD 64657 -KBHomes 65170 -KBPS 61362 -KBR 64657 -KBS 63792 -KBox 65452 -KBr 61818 -KBs 56140 -KBytes 52423 -KC 49688 -KCA 63991 -KCAL 65170 -KCBS 62469 -KCC 60762 -KCD 58919 -KCI 59774 -KCI's 64657 -KCL 64657 -KCM 63991 -KCMO 62917 -KCN 60580 -KCNC 64201 -KCRW 58745 -KCSR 63792 -KCTS 61051 -KCl 55992 -KD 52635 -KDC 63245 -KDDI 61584 -KDE 52571 -KDKA 64657 -KDM 65170 -KDP 61940 -KDR 62196 -KDS 60157 -KDWP 61940 -KE 49076 -KEANE 64657 -KEATS 65170 -KEC 63077 -KEDCO 63792 -KEE 64423 -KEELEY 65452 -KEEN 65452 -KEEP 52141 -KEEPER 60856 -KEEPING 61940 -KEEPS 63077 -KEF 61256 -KEGG 61362 -KEI 63601 -KEITH 57122 -KEL 65170 -KELLER 63792 -KELLEY 63419 -KELLOGGS 64905 -KELLY 54706 -KELSO 65452 -KEM 54439 -KEN 56899 -KENDALL 64657 -KENDRA 64657 -KENMORE 63991 -KENNEDY 57970 -KENNEL 64657 -KENNETH 56687 -KENNY 61472 -KENS 64423 -KENSINGTON 62196 -KENT 57785 -KENTUCKY 56756 -KENWOOD 64657 -KENYA 59101 -KEO 65170 -KEP 60580 -KEPT 62762 -KER 64423 -KERALA 63077 -KERN 64201 -KERR 63245 -KERRY 65170 -KERSHAW 63792 -KES 63245 -KET 61940 -KETC 61051 -KETTERING 64657 -KEV 65170 -KEVF 64423 -KEVIN 55398 -KEXP 62196 -KEY 48624 -KEYBOARD 59630 -KEYGEN 63792 -KEYPADS 65452 -KEYS 58745 -KEYSTONE 64905 -KEYWORD 57741 -KEYWORDS 54835 -KF 55060 -KFA 65452 -KFC 56551 -KFI 65452 -KFS 65452 -KFWB 62917 -KG 52074 -KGB 58162 -KGC 65452 -KGET 65170 -KGS 63077 -KGW 63792 -KGaA 64657 -KH 52315 -KHAN 58979 -KHL 65452 -KHOU 63792 -KHPA 65452 -KHR 63601 -KHS 62066 -KHZ 62196 -KHz 59702 -KI 55821 -KIA 56972 -KICK 59560 -KICKS 62762 -KID 56652 -KIDDERMINSTER 59774 -KIDNEY 61818 -KIDS 49919 -KILL 54479 -KILLED 59560 -KILLER 59491 -KILLING 63077 -KILLS 65170 -KIM 53392 -KIMBERLY 63419 -KIN 62762 -KINASE 65170 -KIND 56356 -KINDLY 65170 -KINDS 63419 -KINEMATICS 65452 -KINESIOLOGY 65170 -KINETIC 61818 -KINETICS 62917 -KING 50726 -KING'S 61362 -KINGDOM 53010 -KINGFISHER 62066 -KINGS 57199 -KINGSTON 58365 -KIOSK 64657 -KIRIBATI 60492 -KIRK 61362 -KIRSTEN 64201 -KIS 62196 -KISER 64657 -KISS 52635 -KISSED 61818 -KISSES 64905 -KISSING 61472 -KIT 49919 -KITCHEN 54581 -KITCHENS 64423 -KITS 55526 -KITT 65452 -KITTS 62469 -KITTY 62066 -KITV 64657 -KIWI 65170 -KIXA 64905 -KIXAfemale 63601 -KJ 51931 -KJV 59774 -KK 52411 -KKAdminException 57160 -KKH 63419 -KKK 61362 -KKM 65452 -KKR 61818 -KL 49012 -KLACID 61472 -KLAXXON 64657 -KLC 63991 -KLCC 65170 -KLEIN 59702 -KLM 51531 -KLODZINSKI 65452 -KLSoft 64201 -KM 49860 -KMC 59702 -KMD 62613 -KME 64201 -KMF 62613 -KMFDM 63419 -KMG 60492 -KMH 61584 -KMI 60952 -KML 53286 -KMPH 64201 -KMPlayer 63601 -KMR 64423 -KMRL 62762 -KMS 60157 -KMT 62762 -KMitnick 63792 -KN 55299 -KNEE 58212 -KNEW 61152 -KNIFE 60670 -KNIGHT 58065 -KNIGHTS 63419 -KNIT 61940 -KNITTING 62469 -KNIVES 59848 -KNL 64201 -KNO 60238 -KNOB 61152 -KNOBS 64423 -KNOCK 65452 -KNOLL 63419 -KNOPPIX 63792 -KNOW 49553 -KNOWLEDGE 55423 -KNOWN 58745 -KNOWS 60405 -KNOX 61584 -KNOXVILLE 65452 -KNUCKLE 64905 -KNX 58523 -KO 50898 -KOA 62331 -KOBAYASHI 63601 -KOBE 61584 -KOCH 62066 -KOCHANSKI 60157 -KODAK 57831 -KOF 59560 -KOFY 64905 -KOH 58577 -KOHLER 62196 -KOL 61818 -KOLKATA 63419 -KOMATSU 63245 -KOMO 61256 -KONE 65452 -KONG 55711 -KONI 62762 -KONICA 61256 -KOOL 62917 -KOR 63991 -KORE 61699 -KOREA 56899 -KOREAN 61152 -KORG 62917 -KOS 63245 -KOSDAQ 64423 -KOSH 65452 -KOSHER 62917 -KOTOR 61699 -KOVR 65170 -KOs 65452 -KOvideo 59357 -KP 53830 -KPA 63601 -KPC 65452 -KPENV 64657 -KPH 62066 -KPI 62917 -KPIX 64423 -KPIs 61818 -KPL 64657 -KPLU 60078 -KPLU's 64905 -KPMG 53952 -KPN 63601 -KPO 64657 -KPT 63991 -KQED 63991 -KR 52018 -KRAFT 61472 -KRAMER 63245 -KRAVITZ 64423 -KRDO 64201 -KRETCHMER 59101 -KREation 63991 -KRG 62917 -KRIS 64905 -KRISHNA 63245 -KRISTEN 65452 -KRISTIN 61818 -KRK 62066 -KRON 60762 -KRONE 62762 -KROQ 65170 -KRS 60157 -KRSM 62613 -KRW 59101 -KRY 62762 -KRYSTAL 64423 -KRYTEN 58417 -KRZR 58577 -KS 44487 -KSA 57358 -KSAT 65452 -KSC 62066 -KSDI 65452 -KSE 64423 -KSEE 64905 -KSHV 65452 -KSI 62331 -KSL 60762 -KSLA 60492 -KSR 63991 -KST 65452 -KSU 62469 -KSinR 61472 -KT 52968 -KTH 60000 -KTK 64905 -KTLA 57785 -KTM 53361 -KTP 61256 -KTR 64423 -KTS 64657 -KTVT 65170 -KTX 64201 -KU 53746 -KUALA 62196 -KUDOS 64905 -KUED 64657 -KUL 63077 -KULCHA 64657 -KULeuven 57923 -KUMAR 55037 -KUMITE 56862 -KUNG 64905 -KURIL 60405 -KURO 65170 -KURT 62196 -KUSTWAN 65452 -KUTV 63419 -KUWAIT 59702 -KUbuntu 64423 -KV 54792 -KVA 64423 -KVCD 63792 -KVD 62613 -KVH 63991 -KVM 52546 -KVMs 63419 -KVN 63601 -KVP 65170 -KVR 55963 -KVRAF 65452 -KVRwiki 65452 -KW 51293 -KWD 64423 -KX 59292 -KXLY 62613 -KY 44323 -KYB 60670 -KYB's 65170 -KYLE 60952 -KYLIE 61940 -KYOCERA 62066 -KYOTO 65452 -KYRGYZSTAN 61584 -KYW 64423 -KZ 59560 -KZN 60157 -KZT 65452 -Ka 51541 -Ka'anapali 65452 -KaSandra 63601 -Kaanapali 62196 -Kab 64201 -Kaba 60492 -Kabab 65452 -Kabbalah 60000 -Kabel 65170 -KabelSchlepp 63601 -Kabhi 58802 -Kabila 64905 -Kabir 59848 -Kabob 62469 -Kabobs 63245 -Kaboodle 50966 -Kaboodlers 58688 -Kaboom 62066 -Kaboose 62613 -Kabuki 58313 -Kabul 54581 -Kabupaten 64657 -Kabuto 63991 -Kabuverdianu 64905 -Kabyle 61152 -Kacey 60580 -Kachina 64423 -Kaci 64423 -Kaczor 64201 -Kadam 65170 -Kaden 63601 -Kadena 58632 -Kader 63792 -Kadi 64201 -Kadima 60952 -Kadina 64905 -Kadir 62762 -Kady 64657 -Kaeding 65170 -Kael 65452 -Kael'thas 60157 -Kaelin 64657 -Kaen 64657 -Kaeo 64201 -Kafe 62917 -Kaffeemühle 64905 -Kafka 61584 -Kagakkai 63991 -Kagaku 59039 -Kagan 59848 -Kagawa 64423 -Kage 61940 -Kagem 64657 -Kagoshima 61051 -Kah 63419 -Kahan 61818 -Kahana 63991 -Kahane 62613 -Kahani 63792 -Kahiin 65452 -Kahl 64905 -Kahler 59774 -Kahlil 64201 -Kahlo 59164 -Kahlua 63245 -Kahn 54023 -Kahne 60238 -Kaho 62917 -Kahr 65170 -Kahului 63792 -Kahuna 62066 -Kai 51804 -Kai's 61152 -Kaiba 63601 -Kaif 54685 -Kaiji 62196 -Kaiju 62469 -Kaikoura 62613 -Kaila 62066 -Kailash 61362 -Kailua 58577 -Kain 61472 -Kaine 62066 -Kainji 64905 -Kaipara 64201 -Kairie 63792 -Kairos 64657 -Kaisa 64657 -Kaiser 49394 -Kaiser's 64423 -Kaiserslautern 62066 -Kaisha 65170 -Kaitaia 63601 -Kaiten 64905 -Kaitlin 59357 -Kaitlyn 57785 -Kaitos 64905 -Kaitou 63601 -Kaiya 65452 -Kaizen 60238 -Kaj 62613 -Kajama 63245 -Kajmer 62469 -Kajol 60157 -Kajukenbo 58523 -Kaka 59560 -Kakadu 61472 -Kakashi 61940 -Kaki 62469 -Kakinada 62762 -Kako 64201 -Kaku 63792 -Kakusan 63792 -Kal 59630 -Kala 59630 -Kaladi 64905 -Kalahari 61256 -Kalai 64657 -Kalakaua 64657 -Kalam 62613 -Kalama 63792 -Kalamata 64657 -Kalamazoo 54059 -Kalan 61699 -Kalanchoe 59491 -Kalani 63245 -Kalas 63601 -Kalashnikov 64905 -Kalb 61584 -Kalba 62613 -Kalbarri 63601 -Kalco 60580 -Kale 58802 -Kaleb 64423 -Kalecgos 60078 -Kaleidoscope 58860 -Kaleigh 63991 -Kalender 62196 -Kaley 62469 -Kalgoorlie 61256 -Kali 59039 -Kalikas 64423 -Kalil 65452 -Kalimantan 61152 -Kalimba 65170 -Kalimdor 59227 -Kalinga 63601 -Kaliningrad 57358 -Kalispell 59774 -Kalkhoven 64905 -Kalki 64657 -Kallasvuo 64905 -Kalle 62613 -Kalli 64201 -Kallista 65452 -Kalman 56551 -Kalmar 63601 -Kalmbach 60157 -Kalorama 63419 -Kalorik 64423 -Kalpana 64423 -Kalua 64201 -Kalundborg 64905 -Kalvos 64201 -Kalyan 60952 -Kam 58065 -Kama 57696 -Kamae 64201 -Kamagra 64657 -Kamakura 63601 -Kamal 54133 -Kamala 60856 -Kaman 63792 -Kamar 64201 -Kamara 61584 -Kamas 65170 -Kamasutra 59630 -Kamchatka 63077 -Kamehameha 61818 -Kamei 65452 -Kamel 63419 -Kameleon 61940 -Kamelot 63601 -Kamen 58113 -Kamer 63792 -Kamera 60670 -Kameron 65452 -Kami 58802 -Kamichama 64657 -Kamigawa 61362 -Kamikaze 57046 -Kamil 60492 -Kamilla 64423 -Kamins 61472 -Kaminski 64423 -Kaminsky 63245 -Kamion 65452 -Kamiondzije 63991 -Kamisama 60580 -Kamiya 65170 -Kamla 64905 -Kamloops 53167 -Kamora 65452 -Kamp 58632 -Kampala 58802 -Kampen 65170 -Kampf 62762 -Kampmann 64905 -Kampong 60762 -Kampung 63245 -Kamran 62331 -Kamrul 61584 -Kan 56935 -KanMed 64905 -KanYe 65452 -Kana 62196 -Kanab 65170 -Kanada 63077 -Kanagawa 58470 -Kanai 65452 -Kanal 59848 -Kananaskis 61472 -Kanata 61699 -Kanawha 61472 -Kanazawa 58212 -Kanban 65452 -Kanchanaburi 64657 -Kanda 61256 -Kandahar 60000 -Kandarian 64905 -Kander 62613 -Kandi 56452 -Kandinsky 59848 -Kandy 59491 -Kane 50150 -Kane's 59560 -Kanebo 65452 -Kaneko 61818 -Kanellis 62917 -Kaneohe 60670 -Kanes 65170 -Kaneva 60405 -Kang 53762 -Kanga 63991 -Kangana 62331 -Kangaroo 55323 -Kangaroos 59101 -Kangen 62469 -Kangol 63991 -Kangoo 60580 -Kanji 57084 -Kankakee 60000 -Kann 64423 -Kanna 65452 -Kannada 52899 -Kannagi 62917 -Kannan 61256 -Kannapolis 60492 -Kanner 64423 -Kanno 62762 -Kannur 61699 -Kano 57278 -Kanokon 62917 -Kanon 60952 -Kanoodle 59630 -Kanpur 54969 -Kansai 60000 -Kansans 63419 -Kansas 39755 -Kant 58212 -Kantaoui 63245 -Kanteen 61584 -Kanter 63245 -Kanth 65452 -Kantian 65170 -Kanto 61362 -Kantor 60405 -Kanu 65170 -Kanuri 64905 -Kanyakumari 65170 -Kanye 48736 -Kanye's 64657 -Kanyomozi 64905 -Kao 59101 -Kaohsiung 60856 -Kaolin 65452 -Kaori 63245 -Kaoru 61699 -Kaos 60762 -Kaotik 63792 -Kap 63601 -Kapadia 63601 -Kapalua 63419 -Kapamilya 64657 -Kapha 63991 -Kapil 60405 -Kapiolani 65452 -Kapital 63792 -Kapiti 62066 -Kapka 62469 -Kaplan 50157 -Kapolei 61699 -Kapono 65170 -Kapoor 52712 -Kapoor's 64657 -Kaposi's 57876 -Kapp 63601 -Kappa 51856 -Kapped 64905 -Kappeln 60856 -Kappos 64201 -Kappy 58860 -Kapri 65170 -Kapur 60405 -Kapuskasing 61472 -Kapuso 63601 -Kar 57440 -Kara 52521 -Karabakh 65170 -Karachi 52686 -Karadzic 63991 -Karaja 64423 -Karajan 64657 -Karak 64201 -Karaka 65452 -Karam 61818 -Karama 64657 -Karamar 65452 -Karan 56262 -Karangahape 61699 -Karaoke 43860 -Karas 62469 -Karat 62331 -Karate 50758 -Karayiannas 61818 -Karazhan 57399 -Karbon 64423 -Karcher 62196 -Kardashian 51974 -Kardashian's 65170 -Kardashians 65170 -Kardinal 56231 -Kardon 57482 -Kare 57741 -Kareem 59560 -Kareena 56050 -Karel 57696 -Karen 44287 -Karen's 58017 -Karenina 65452 -Kargath 60762 -Karger 56170 -Kari 54059 -Kariba 64423 -Karierre 63419 -Karim 56756 -Karima 60762 -Karin 53182 -Karina 54560 -Karina's 63419 -Karine 61152 -Karishma 63419 -Karisma 61584 -Karissa 61818 -Kariyushi 61472 -Karki 65170 -Karl 47335 -Karl's 64423 -Karla 57399 -Karla's 64201 -Karlene 65452 -Karlheinz 64905 -Karli 60670 -Karlie 62469 -Karlin 65452 -Karloff 65452 -Karlovy 61152 -Karlson 65170 -Karlsruhe 57653 -Karlsson 61584 -Karlstad 64905 -Karma 50101 -Karmaloop 60492 -Karman 65452 -Karmann 62762 -Karmanos 64423 -Karmel 63601 -Karmic 64201 -Karnage 62613 -Karnak 65170 -Karnal 63601 -Karnataka 50932 -Karnes 62917 -Karns 64905 -Karo 61051 -Karol 60405 -Karolina 60405 -Karolinska 57696 -Karolyi 62066 -Karon 58417 -Karoo 62066 -Karp 61152 -Karpathos 64905 -Karr 60670 -Karratha 63077 -Karri 62331 -Karriere 63077 -Karrine 63245 -Karst 60405 -Karsten 59424 -Kart 50394 -Karta 63991 -Karte 61584 -Kartel 63601 -Kartell 65452 -Kartheiser 60238 -Karthik 62066 -Kartik 65452 -Karting 58212 -Karts 60952 -Karu 65170 -Karun 63601 -Karunanidhi 62469 -Karunesh 63601 -Karvy 65452 -Karwan 61362 -Karwar 65170 -Karyn 60762 -Karyna 60670 -Karyotype 65452 -Karz 63077 -Karzai 60078 -Karzzz 64201 -Kas 62762 -Kasabian 60952 -Kasai 63419 -Kasam 64657 -Kasco 64423 -Kase 63077 -Kasei 63991 -Kasey 56687 -Kash 57399 -Kasha 63245 -Kashi 61940 -Kashimashi 64905 -Kashish 63245 -Kashkari 65170 -Kashmir 50678 -Kashmiri 57318 -Kashyap 60670 -Kasia 64201 -Kasih 65452 -Kasihku 65452 -Kasim 61362 -Kaskaskia 64657 -Kaskus 63991 -Kaspar 64423 -Kasparov 63601 -Kasper 58745 -Kaspersky 50940 -Kass 59164 -Kassel 60762 -Kassin 63792 -Kassner 58688 -Kasson 64657 -Kasten 65170 -Kastner 65452 -Kasturi 64905 -Kasumi 62196 -Kasungu 61699 -Kat 51368 -Kat's 62196 -Kata 55877 -Katadyn 63419 -Katalin 63792 -Katalog 60580 -Katana 57009 -Katanga 64201 -Katanning 65452 -Katarina 58577 -Katarzyna 62469 -Katatonia 64905 -Katayama 63245 -Katchaman's 61584 -Kate 44169 -Kate's 56200 -Katee 62613 -Kategorie 63419 -Kategorien 64423 -Kateikyoushi 63792 -Katelin 65452 -Katelyn 59560 -Katerina 59357 -Kates 61051 -Kath 56618 -Katha 62331 -Kathanayakudu 62762 -Katharina 59164 -Katharine 53301 -Kathe 59292 -Katherine 48208 -Katheryn 64905 -Kathi 60952 -Kathie 59101 -Kathleen 48252 -Kathlyn 63077 -Kathmandu 57653 -Katholieke 60157 -Kathrin 61362 -Kathryn 50607 -Kathy 46590 -Kathy's 61472 -Kathys 65170 -Kati 62331 -Katia 60580 -Katie 45671 -Katie's 61152 -Katina 64201 -Katinas 64201 -Katine 55226 -Katingan 62196 -Kativu 62613 -Katja 57741 -Katmai 47160 -Kato 56452 -Katona 56935 -Katona's 63419 -Katowice 59424 -Katrin 60762 -Katrina 48186 -Katrina's 47170 -Katrine 65170 -Kats 62613 -Katsu 63601 -Katsuhiro 64657 -Katsumi 61699 -Katsura 65170 -Katt 60856 -Katy 47960 -Katya 62917 -Katz 52459 -Katz's 64905 -Katzman 63601 -Kau 64423 -Kauai 56170 -Kauffman 57653 -Kaufman 54302 -Kaufman's 65452 -Kaufmann 58632 -Kaukauna 59923 -Kaul 61362 -Kaulitz 61472 -Kaun 64201 -Kaunas 57482 -Kaupthing 61818 -Kaur 58919 -Kaushal 64657 -Kaushik 61940 -Kauss 63601 -Kava 59164 -Kavanagh 58262 -Kavaratti 63419 -Kaveh 64657 -Kaveri 64905 -Kavi 61584 -Kavita 61362 -Kavitha 61584 -Kavos 64201 -Kavu 62066 -Kavya 64423 -Kaw 65170 -Kawaguchi 64657 -Kawai 60000 -Kawaii 53646 -Kawakami 63245 -Kawamata 62331 -Kawamoto 63245 -Kawamura 59039 -Kawanishi 64905 -Kawartha 54727 -Kawasaki 49899 -Kawashima 64657 -Kawau 64905 -Kawneer 60321 -Kay 47835 -Kay's 58745 -KayCee 60580 -Kaya 56652 -Kayak 51783 -KayakDD 64201 -Kayaking 54023 -Kayako 61256 -Kayaks 57831 -Kayan 65170 -Kayden 61818 -Kaye 54770 -Kaye's 64201 -Kayla 54581 -Kaylani 63601 -Kaylee 62196 -Kayleigh 60000 -Kayne 62469 -Kays 60492 -Kayser 64201 -Kayseri 59560 -Kaysha 64657 -Kaysville 61584 -Kaz 59424 -Kazaa 63991 -Kazachstan 61818 -Kazakh 56551 -Kazakhstan 45648 -Kazakhstan's 65170 -Kazakstan 59357 -Kazama 60952 -Kazan 59774 -Kaze 59164 -Kazimierz 63601 -Kaziranga 64905 -Kazmir 57318 -Kazoku 61818 -Kazu 62917 -Kazuhiko 64657 -Kazuhiro 62613 -Kazuki 61472 -Kazuma 61362 -Kazunori 63991 -Kazuo 58577 -Kazuya 62917 -Kazuyoshi 64423 -Kazzak 63077 -Kb 46234 -Kbps 54902 -Kbyte 60952 -Kbytes 61051 -Kc 61362 -Kd 59164 -KdV 64201 -Ke 52534 -Kea 61472 -Kean 60580 -Keane 53109 -Keane's 64423 -Keanu 57440 -Kearney 54245 -Kearns 57923 -Kearny 59923 -Kearse 62196 -Keath 65170 -Keating 53970 -Keaton 58017 -Keats 56485 -Keats's 60856 -Keauhou 65170 -Keay 65170 -Kebab 60580 -Kebabs 63792 -Keble 62917 -Kecantikan 64905 -Keck 58065 -Keckler 62917 -Kedah 64423 -Keddy 64905 -Kedron 62331 -Keds 53865 -Kedzie 65452 -Kee 58065 -Keeani 65452 -Keeble 63792 -Keefe 62066 -Keefer 61152 -Keeffe 65452 -Keegan 56388 -Keegan's 65452 -Keegy 61472 -Keel 60762 -Keele 60856 -Keeler 61051 -Keeley 57238 -Keeling 62196 -Keely 62196 -Keen 52805 -Keenan 54749 -Keenan's 65170 -Keene 56585 -Keeneland 62196 -Keener 62613 -Keep 40625 -KeepandShare 62917 -Keeper 51590 -Keeper's 61940 -Keepers 52315 -Keepin 62196 -Keeping 42283 -Keeps 52739 -Keepsake 57399 -Keepsakes 58688 -Keeptouch 65170 -Keer 64657 -Kees 60321 -Keeshond 64905 -Keeway 61940 -Keewaydin 62762 -Kefalonia 60762 -Keg 61152 -Kegan 59292 -Kegel 63419 -Kehna 64657 -Kehoe 60856 -Kehr 65452 -Kei 58919 -Keibler 58919 -Keighley 59702 -Keiichi 62917 -Keiji 63601 -Keiko 58632 -Keil 58688 -Keillor 62331 -Keilor 65170 -Keim 64905 -Kein 65170 -Keine 62762 -Keio 62469 -Keir 64905 -Keira 54685 -Keiser 58262 -Keisha 61051 -Keisuke 62196 -Keita 63601 -Keitel 65452 -Keith 43802 -Keith's 58162 -KeithCar 64657 -Keizer 58313 -Kekchi 64905 -Keke 61699 -Kekkaishi 63792 -Kekona 63077 -Kel 59424 -Kel'Thuzad 60762 -Kelair 64423 -Kelana 63419 -Kelantan 63991 -Kelby 63792 -Kelepolo 63419 -Keli 63991 -Kelis 59039 -Kelkoo 58212 -Kell 58262 -Kellahin 65452 -Kellam 65170 -Kelle 64905 -Kelleher 59357 -Kellen 60405 -Keller 49559 -Kellerman 62762 -Kellett 65452 -Kelley 49001 -Kelley's 65170 -Kelli 55500 -Kellie 55631 -Kellock 63419 -Kellogg 55348 -Kellogg's 61051 -Kells 61472 -Kelly 42401 -Kelly's 55348 -KellyLA 61152 -Kellyco 64657 -Kellys 62066 -Kellysearch 54540 -Kelme 63245 -Kelowna 52886 -Kelp 60952 -Kelsey 54226 -Kelseyville 64201 -Kelsi 65170 -Kelsie 65170 -Kelso 56110 -Kelso's 64201 -Kelton 64423 -Kelty 55398 -Kelvin 54601 -Kemah 58162 -Kemal 58919 -Kembali 64423 -Kembla 64201 -Kemble 62762 -Kemeko 65170 -Kemer 64905 -Kemet 65452 -Kemetic 62331 -Kemp 53796 -Kemp's 63245 -Kempe 65170 -Kemper 58745 -Kempf 64657 -Kempinski 60492 -Kempner 64423 -Kemps 61152 -Kempsey 62331 -Kempthorne 65452 -Kempton 61818 -Ken 44271 -Ken's 58417 -Kenai 57876 -Kenan 60405 -Kenda 62917 -Kendal 58313 -Kendall 52609 -Kendall's 61362 -Kendallville 63419 -Kendo 59357 -Kendra 53167 -Kendrick 57970 -Kendriya 65452 -Kenedy 59101 -Keng 63792 -Kenge 64905 -Keni 64905 -Kenichi 57653 -Kenilworth 57009 -Kenji 56652 -Kenkyu 61051 -Kenmare 65452 -Kenmore 53988 -Kenn 61472 -Kenna 60078 -Kennametal 61699 -Kennard 61940 -Kennebec 60580 -Kennebunkport 65170 -Kennedy 45129 -Kennedy's 56899 -Kennedys 61584 -Kennel 53196 -Kennels 52927 -Kenner 60078 -Kennesaw 57696 -Kennet 61818 -Kenneth 45833 -Kennett 61051 -Kennewick 61472 -Kenney 58802 -Kennington 60952 -Kennison 63991 -Kenny 47725 -Kenny's 60762 -KennyT 64905 -Keno 59491 -Kenobi 60952 -Kenora 59039 -Kenosha 59923 -Kenpo 61152 -Kenroy 64905 -Kensal 62331 -Kenseth 60762 -Kenshin 56687 -Kensie 64423 -Kensington 49720 -Kent 44380 -Kent's 60952 -Kenta 63077 -Kentfield 64905 -Kenting 63077 -Kentish 61152 -Kenton 56972 -Kentucky 41186 -Kentucky's 60670 -Kentville 65170 -Kentwood 58745 -Kenuf 61818 -Kenwood 53271 -Kenworth 55766 -Kenworthy 63792 -Kenya 43689 -Kenya's 59292 -Kenyan 53813 -Kenyans 62469 -Kenyatta 64423 -Kenyon 55202 -Kenzi 63419 -Kenzi's 65452 -Kenzie 59491 -Kenzo 60238 -Keo 64905 -Keogh 59848 -Keough 64201 -Keowee 64905 -Keown 64905 -Kepler 62331 -Kepler's 65170 -Keplerian 63792 -Keppel 63601 -Keppra 64201 -Kept 56899 -Ker 61818 -Kerala 49038 -Kerasotes 61818 -Kerastase 60492 -Kerb 62066 -Kerberized 61818 -Kerberos 55604 -Kerbside 61699 -Kercher 63601 -Keren 63077 -Kerguelen 63245 -Keri 53517 -Kerikeri 63245 -Kerio 60762 -Kerja 61818 -Kerkorian 65170 -Kerman 63077 -Kermani 64657 -Kermit 53813 -Kern 53549 -Kern's 63991 -Kernan 62613 -Kernel 48515 -Kernels 63419 -Kernen 63419 -Kerner 65452 -Kerns 63077 -Keron 65170 -Keroro 63601 -Kerosene 59560 -Kerouac 63601 -Kerr 50799 -Kerr's 63077 -Kerri 55552 -Kerrie 62613 -Kerrier 63792 -Kerrigan 61940 -Kerrville 63077 -Kerry 47496 -Kerry's 60670 -Kersey 63601 -Kershaw 58113 -Kerstin 60952 -Kerwin 63792 -Kerzner 64201 -Kesehatan 63991 -Kesh 63792 -Kessel 63601 -Kessinger 57831 -Kessler 55526 -Kester 64905 -Kesteven 63245 -Kestrel 61584 -Keswick 55178 -Ketamine 65170 -Ketchikan 58313 -Ketchum 59560 -Ketchup 60856 -Ketelshagen 62066 -Keto 63792 -Ketone 62917 -Ketones 62613 -Kettering 55793 -Kettle 51846 -Kettlebell 60078 -Kettlebells 65452 -Kettler 58162 -Kettles 58417 -Kettner 64905 -Keung 64657 -Keurig 59774 -Kev 57609 -Kevan 63419 -Kevbert 65170 -Keven 65452 -Kevin 41593 -Kevin's 55552 -Kevlar 54023 -Kevyn 65170 -Kew 50670 -Kewanee 63601 -Keweenaw 64201 -Kewell 63419 -KewlBox 63601 -Key 38674 -Key's 64657 -KeyCite 63419 -KeyCorp 65452 -KeyGen 62196 -KeyWords 64423 -Keyblade 63419 -Keyboard 46486 -Keyboards 49065 -Keychain 53613 -Keychains 53952 -Keyed 62613 -Keyes 57524 -Keygen 49959 -Keygens 55474 -Keyhole 61940 -Keyless 56293 -Keylogger 58365 -Keyloggers 64423 -Keymaker 61818 -Keynes 50807 -Keynes's 64905 -Keynesian 58262 -Keynote 52484 -Keynotes 62613 -Keypad 56485 -Keypads 60762 -Keyport 64905 -Keypress 63792 -Keyra 63601 -Keyring 60238 -Keyrings 61472 -Keys 46301 -Keyser 63077 -Keyshawn 64201 -Keyshia 57831 -Keyspan 65452 -Keystone 52130 -Keystroke 61256 -Keystrokes 65452 -Keytar 62331 -Keyword 42589 -Keywords 41001 -Kf 65170 -Kforce 59164 -Kg 55398 -Kgs 64905 -Kh 63991 -Khabar 65170 -Khabibulin 65170 -Khadgar 59424 -Khai 63245 -Khajuraho 64905 -Khaki 54302 -Khalaf 64423 -Khaled 56080 -Khaleda 64657 -Khaleej 65452 -Khaleel 65452 -Khali 63991 -Khaliah 64423 -Khalid 57923 -Khalifa 61362 -Khalil 59491 -Khalsa 60762 -Khamhaeng 64657 -Khan 47349 -Khan's 59774 -Khana 65452 -Khandelwal 62066 -Khanh 62331 -Khanna 59630 -Khao 58212 -Kharagpur 63077 -Kharanos 65452 -Kharkiv 62196 -Kharkov 60238 -Khartoum 59923 -Khatri 62613 -Khawaja 65452 -Khaya 62469 -Khaz 60580 -Khaz'goroth 60856 -Kher 58979 -Khiladi 65452 -Khir 59848 -Khirurgiia 65170 -Khlebnikov 64905 -Khlebnikov's 64905 -Khloe 63245 -Khlong 65452 -Khmer 55963 -Kho 65170 -Khoa 64657 -Khoi 62331 -Khoj 61699 -Khomeini 63419 -Khon 63245 -Khong 64423 -Khoo 61699 -Khor 61699 -Khosla 62613 -Khosravi 65170 -Khoury 63077 -Khronos 63419 -Khrushchev 63991 -Khuda 64905 -Khujo 64201 -Khulna 60157 -Khun 63991 -Khurana 64423 -Khurram 63601 -Khwaja 65170 -Khyber 62762 -Ki 52074 -KiB 63245 -KiERO 60762 -Kia 48114 -Kialla 64905 -Kiama 62331 -Kian 63077 -Kiana 62613 -Kiara 61152 -Kiawah 60492 -Kiba 60078 -Kibaki 65452 -Kibet 63077 -Kibo 64423 -Kichler 57609 -Kick 49423 -KickApps 63077 -Kickapoo 61940 -Kickass 64423 -Kickback 64201 -Kickball 61818 -Kickboxing 59101 -Kicked 59424 -Kicker 55963 -Kickers 63419 -Kickin 64201 -Kicking 54114 -Kickoff 55992 -Kicks 52982 -Kickstart 62613 -Kid 45457 -Kid's 50178 -KidCo 64905 -KidKraft 62469 -KidSay 65170 -Kidd 53970 -Kidda 61362 -Kidde 59630 -Kidder 61472 -Kidderminster 60405 -Kiddie 58365 -Kiddies 64201 -Kidding 60952 -Kiddo 64201 -Kiddy 64905 -Kidman 54622 -Kidnap 59227 -Kidnapped 61152 -Kidnapping 59164 -Kidney 48786 -Kidneys 63792 -Kids 37740 -KidsPost 60952 -Kidsline 61472 -Kidz 57084 -Kiefer 57609 -Kieffer 63077 -Kiehl's 64657 -Kiel 57009 -Kielortallee 63991 -Kiely 59560 -Kiera 63792 -Kieran 56518 -Kierkegaard 60762 -Kiernan 60762 -Kieron 63245 -Kies 65452 -Kieth 64657 -Kiev 55299 -Kiewit 64423 -Kiffin 64905 -Kigali 61362 -Kihei 62331 -Kijiji 43860 -Kikai 65170 -Kikansetsu 64657 -Kiki 57009 -Kiki's 64423 -Kikizo 65170 -Kiko 60492 -Kikuchi 62762 -Kikuyu 63419 -Kil 64423 -Kil'jaeden 60078 -Kila 64905 -Kilauea 63792 -Kilbourne 61940 -Kilbride 61256 -Kilburn 56972 -Kilby 63419 -Kilda 56551 -Kildare 54321 -Kildares 64657 -Kiley 59227 -Kilgore 60856 -Kilgour 61818 -Kili 62613 -Kilian 61940 -Kilimanjaro 56485 -Kilkee 65452 -Kilkenny 55154 -Kill 46191 -Killa 58212 -Killah 61584 -Killarney 58365 -Killbuck 65452 -Killdozer 58919 -Killed 49841 -Killeen 60580 -Killen 62196 -Killer 47559 -Killergram 64657 -Killers 51660 -Killerspin 62066 -Killian 58979 -Killing 50409 -Killingly 64657 -Killings 59923 -Killington 63792 -Killingworth 63991 -Kills 51680 -Killswitch 59491 -Killzone 54341 -Kilmacrennan 57440 -Kilmarnock 53407 -Kilmartin 65170 -Kilmer 63077 -Kilmore 65452 -Kiln 57970 -Kilns 65452 -Kilo 61584 -Kilobytes 65170 -Kilometers 58919 -Kilometres 60952 -Kilpatrick 56262 -Kilrogg 59039 -Kilroy 64657 -Kilrush 61940 -Kilt 64905 -Kiltarlity 64423 -Kilwa 58017 -Kim 42599 -Kim's 57741 -Kimani 63419 -Kimball 55348 -Kimber 59630 -Kimberlee 62613 -Kimberley 54706 -Kimberly 49500 -Kimble 61152 -Kimbo 55766 -Kimbrough 61051 -Kimchi 63601 -Kimi 56262 -Kimmel 52791 -Kimmerling 63991 -Kimmie 63245 -Kimmo 64201 -Kimmy 62331 -Kimo 64423 -Kimono 58065 -Kimonos 61152 -Kimora 60000 -Kimpton 59357 -Kimura 56652 -Kimura's 65170 -Kimya 61472 -Kin 57009 -Kina 56972 -Kinabalu 63419 -Kinard 65170 -Kinase 54005 -Kinases 63077 -Kincaid 56356 -Kincardine 59630 -Kincardineshire 63792 -Kind 47733 -Kinda 55250 -Kinder 56756 -KinderCare 63792 -Kindergarden 62917 -Kindergarten 50108 -Kindersley 60492 -Kindest 64905 -Kindle 46797 -Kindly 57399 -Kindness 58113 -Kindo 59774 -Kindred 55631 -Kinds 57009 -Kindy 62613 -Kine 61818 -Kinematic 60670 -Kinematics 61362 -Kinequip 63991 -Kinerase 65452 -Kinesiology 57358 -Kinesis 63419 -Kinetic 52221 -Kinetico 64423 -Kinetics 53438 -Kineton 61940 -King 38890 -King's 48174 -KingCo 64905 -KingHarvest 64657 -KingKong 65170 -Kingaroy 59848 -Kingbor 64657 -Kingda 65452 -Kingdom 37359 -Kingdom's 59848 -Kingdoms 54706 -Kingfish 63991 -Kingfisher 55604 -Kinghorn 63792 -Kingman 56050 -Kingpin 60762 -Kingpins 62613 -Kings 44121 -Kingsborough 65452 -Kingsbridge 61362 -Kingsbury 57696 -Kingsford 61256 -Kingsgate 62331 -Kingshill 65170 -Kingsland 59630 -Kingsley 54992 -Kingsnorth 64905 -Kingsolver 65452 -Kingspan 64905 -Kingsport 53779 -Kingston 45671 -Kingston's 65452 -Kingstown 61152 -Kingsville 62762 -Kingsway 57831 -Kingswinford 64905 -Kingswood 60157 -Kington 63792 -Kingwood 60856 -Kingz 65452 -Kini 63792 -Kinja 61152 -Kink 62066 -Kinkade 56420 -Kinki 60321 -Kinko's 63245 -Kinkos 62917 -Kinks 58470 -Kinky 55323 -Kinley 64423 -Kinloch 64201 -Kinnaird 64423 -Kinnear 60321 -Kinnevik 63419 -Kinney 58802 -Kinng 63245 -Kino 59101 -Kinoshita 61472 -Kinozo 65452 -Kinross 58577 -Kinsale 65170 -Kinsella 60762 -Kinser 62917 -Kinsey 56791 -Kinsey's 64423 -Kinshasa 56485 -Kinship 58313 -Kinships 64423 -Kinski 65452 -Kinsley 62331 -Kinsman 62917 -Kinston 59923 -Kintera 63991 -Kinyarwanda 61152 -Kinz 63991 -Kinzie 62613 -Kio 62331 -Kiosk 54601 -Kiosks 54792 -Kiowa 60405 -Kip 56262 -Kipahulu 63991 -Kipling 58688 -Kiplinger 60492 -Kiplinger's 56585 -Kipp 60670 -Kipper 64657 -Kippur 58113 -Kir 65170 -Kira 57046 -Kiran 57524 -Kirby 50654 -Kirby's 63077 -Kircher 64905 -Kirchhoff 61472 -Kirchner 60157 -Kirchzarten 62762 -Kirghiz 64423 -Kirgistan 65452 -Kiri 63991 -Kiribati 47570 -Kirilenko 65170 -Kirill 62917 -Kirin 59164 -Kirja 63077 -Kirk 49388 -Kirk's 64201 -Kirkby 60000 -Kirkcaldy 61152 -Kirkcudbrightshire 64201 -Kirke 64905 -Kirkham 62066 -Kirkintilloch 65452 -Kirkland 54706 -Kirklees 57653 -Kirklin 63792 -Kirkman 62469 -Kirkpatrick 57566 -Kirksville 62613 -Kirkuk 62917 -Kirkus 62762 -Kirkwood 56518 -Kirn 64905 -Kiros 65452 -Kirov 61940 -Kirpan 65170 -Kirribilli 60580 -Kirsch 59560 -Kirschner 62613 -Kirsten 52886 -Kirstie 58860 -Kirstin 61940 -Kirsty 54992 -Kirtland 63077 -Kirtsy 64905 -Kirundi 63601 -Kirwan 60000 -Kis 65452 -Kisame 63419 -Kiseki 63601 -Kiser 63245 -Kish 60856 -Kishan 62917 -Kishi 60670 -Kishimoto 60405 -Kishor 64657 -Kishore 58860 -Kismat 62331 -Kismet 59424 -Kiso 65452 -Kiss 45877 -Kisschasy 62613 -Kissed 54419 -Kisser 58919 -Kisses 54479 -Kissimmee 54096 -Kissing 53286 -Kissinger 60321 -Kissy 65170 -Kistler 62331 -Kisumu 65170 -Kiswahili 62762 -Kit 38939 -Kita 59702 -Kitagawa 65452 -Kitajima 65170 -Kitamura 62469 -Kitano 64423 -Kitasato 64201 -Kitchen 39432 -KitchenAid 53865 -Kitchenaid 62613 -Kitchener 52040 -Kitchenette 63601 -Kitchenettes 64657 -Kitchens 51888 -Kitchenware 57831 -Kitchin 65170 -Kite 53271 -Kiteboarding 59227 -Kites 57122 -Kitesurfing 61584 -Kitimat 64905 -Kiting 64657 -Kitmeout 64423 -Kitmondo 64423 -Kitna 63792 -Kits 43265 -Kitsap 54969 -Kitsch 61256 -Kitsilano 65452 -Kitson 60856 -Kitsune 61362 -Kitt 61362 -Kittanning 65452 -Kitten 53779 -Kittens 55373 -Kittery 60580 -Kittie 63245 -Kitties 63419 -Kittin 64423 -Kittitas 64201 -Kittle 65452 -Kittredge 62331 -Kitts 48199 -Kitty 48505 -Kiva 56935 -Kiwanis 56721 -Kiwi 52559 -KiwiSaver 62469 -Kiwini 55299 -Kiwis 58365 -Kix 62613 -Kiya 63419 -Kiyo 64657 -Kiyosaki 61699 -Kiyoshi 61256 -Kj 64657 -Kjeldahl 64657 -Kjell 62331 -Kjetil 64657 -Kjos 65170 -Kl 64657 -Klaas 59227 -Klabin 64657 -Klacid 61940 -Klagenfurt 62917 -Klamath 56721 -Klan 61051 -Klang 60405 -Klann 62331 -Klar 64905 -Klara 63991 -Klarich 62331 -Klarsfeld 64905 -Klas 64423 -Klass 62917 -Klasse 64905 -Klassen 63792 -Klatt 65452 -Klaudia 65170 -Klaus 51942 -Klausner 61472 -Klauzole 64905 -Klavier 64423 -Klavierauszug 65452 -Klaxons 60238 -Klay 65452 -Klayman 63991 -Klean 61362 -Klebsiella 58860 -Klee 61818 -Kleeb 62917 -Kleen 60492 -Kleenex 62196 -Kleiman 63419 -Klein 47456 -Klein's 62196 -Kleinberg 65170 -Kleine 60952 -Kleiner 58979 -Kleines 62196 -Kleinman 63601 -Kleinrock 63245 -Kleinschmidt 64657 -Klemen 62613 -Klemens 64905 -Klemm 63245 -Klenow 64905 -Kletskerk 64657 -Klezmer 65170 -Klick 64905 -Klicken 65170 -Klickitat 62762 -Klik 59848 -Klimt 58688 -Klin 55084 -Kline 55474 -Kline's 65170 -Kling 61362 -Klinger 64201 -Klingon 59774 -Klinik 58523 -Klinikum 61818 -Klink 65452 -Klint 59491 -Klip 61818 -Klipsch 58417 -Klique 64905 -Klis 65170 -Klitschko 64201 -Klondike 58802 -Klonopin 61940 -Kloof 63419 -Klose 63792 -Klotz 62917 -Klotzsch 65452 -Klub 59227 -Klubberud 61818 -Kluetmeier 60856 -Kluge 65170 -Klugman 65452 -Klum 54706 -Klum's 65170 -Klutho 61472 -Klutznick 62469 -Kluwer 53695 -Klux 61818 -Km 52954 -Kmail 63601 -Kmart 53712 -Kms 62469 -Kn 64905 -Knack 63792 -Knacks 65170 -Knapp 57653 -Knauer 64423 -Knauf 63245 -Knaus 60238 -Knead 61818 -Kneading 64905 -Knebworth 64905 -Knecht 64423 -Knee 50192 -KneeDraggers 62762 -Kneeling 60952 -Knees 60321 -Kneis 65170 -Knesset 61940 -Knew 55821 -Knick 62613 -Knickerbocker 62762 -Knickers 61152 -Knicks 51931 -Knievel 62613 -Knife 48861 -Knifes 65170 -Knight 43924 -Knight's 59491 -Knightley 55604 -Knightly 64905 -Knighton 63245 -Knights 48001 -Knightsbridge 59774 -Knipe 65452 -Knit 50646 -Knits 57199 -Knitted 57785 -Knitter 64423 -Knitter's 64423 -Knitters 63245 -Knitting 50143 -Knitty 64423 -Knitwear 58365 -Knives 48562 -Knob 53830 -Knobby 60762 -Knobs 54264 -Knock 53485 -Knockdown 62331 -Knocked 55631 -Knockers 60238 -Knockgraffon 65452 -Knocking 60856 -Knockoff 64423 -Knockout 56652 -Knockouts 62469 -Knocks 57876 -Knoevenagel 63419 -Knog 63601 -Knol 61818 -Knoll 56140 -Knolls 61152 -Knollwood 65452 -Knollys 65452 -Knoop 64423 -Knopf 62613 -Knopfler 60405 -Knoppix 61472 -Knorr 60670 -Knot 53917 -Knots 59164 -Knott 59292 -Knotted 63419 -Knotts 64905 -Knotty 61584 -Know 41298 -KnowAbout 62762 -Knowing 51148 -Knowingly 65452 -Knowle 62066 -Knowledge 41938 -KnowledgeBase 59039 -KnowledgeShare 64905 -Knowledgeable 60580 -Knowledgebase 55130 -Knowledges 61362 -Knowles 52007 -Knowlton 63792 -Known 48169 -Knows 51248 -Knowshon 60157 -Knowsley 57696 -Knox 50832 -Knoxville 49899 -Knuckle 57358 -Knucklehead 64905 -Knuckles 59702 -Knudsen 61699 -Knudson 64905 -Knurled 64657 -Knut 60762 -Knuth 63792 -Knutsford 61584 -Knutson 60762 -Knysna 59227 -Ko 51550 -KoRn 59424 -Koa 60157 -Koala 57923 -Kobayashi 57278 -Kobe 50553 -Kobe's 64423 -Kobi 63245 -Koblenz 64423 -Kobold 64905 -Koby 65452 -Koc 64423 -Koch 52686 -Koch's 65452 -Kochi 55578 -Koda 61152 -Kodachrome 65452 -Kodak 49097 -Kodak's 63792 -Kodama 61699 -Kode 63077 -Kodiak 58365 -Kodo 63792 -Kodomo 62917 -Kody 62066 -Koehler 60670 -Koehn 63419 -Koei 62066 -Koen 57785 -Koenig 59039 -Koenigsberg 64657 -Koenigsegg 56200 -Koenkai 65452 -Koeppel 64657 -Koerner 62196 -Koes 64657 -Kofax 59848 -Koffiehuis 64657 -Kofi 58313 -Kofta 65452 -Koga 63792 -Kogan 59101 -Kogarah 65170 -Kogyo 63245 -Koh 51148 -Kohala 62469 -Koharu 65452 -Kohima 64905 -Kohl 57923 -Kohl's 56262 -Kohlberg 64657 -Kohler 54419 -Kohli 65452 -Kohls 64201 -Kohn 56756 -Kohring 59292 -Koi 53899 -Koichi 59702 -Koihime 63245 -Koike 60762 -Koinonia 63245 -Koirala 63077 -Koizumi 62196 -Kojak 61362 -Koji 57609 -Kojima 60000 -Kok 57318 -Koka 64201 -Koki 62613 -Kokkari 63792 -Koko 59227 -Kokomo 59227 -Kokoro 63077 -Kol 62469 -Kola 61256 -Kolar 63792 -Kolb 60580 -Kolbas 64905 -Kolber 62066 -Kolbrener 63419 -Kolcraft 65452 -Kole 65452 -Kolhapur 60952 -Kolkata 51122 -Kolkatta 65452 -Koll 64657 -Kollam 62762 -Koller 61152 -Kollywood 61256 -Kolmogorov 65452 -Koln 64905 -Kolo 62762 -Kolossos 64905 -Kom 65452 -Komatsu 60405 -Kombat 53081 -Kombo 64201 -Komedi 60321 -Komen 58523 -Komentar 61699 -Komi 63601 -Komik 64201 -Komitee 63419 -Komment 65170 -Kommentar 62613 -Kommentare 61584 -Kommentarer 64657 -Kommerciel 63419 -Kommersiell 60670 -Kommunikation 63601 -Komodo 59848 -Komori 64657 -Komp 62762 -Kompakt 65452 -Kompass 64201 -Komplementmed 64905 -Komplete 59848 -Komponen 63419 -Kompressor 65170 -Komputer 64657 -Kon 59630 -Kona 53952 -Konami 56080 -Koncelik 58113 -Kondo 58802 -Kondô 63601 -Kone 60078 -Konerko 64423 -Konfabulator 60670 -Konferenzbeitrag 63419 -Kong 39720 -Kong's 57084 -Kongers 64423 -Kongo 63077 -Kongregate 59424 -Kongsberg 62917 -Koni 60580 -Konic 63991 -Konica 55578 -Konig 61362 -Koning 64423 -Koninklijke 64201 -Konishi 63991 -Konjugation 64657 -Konkan 65452 -Konkani 59630 -Konkel 61051 -Konnection 63077 -Konno 65170 -Kono 60856 -Konocti 64657 -Konoha 57009 -Konohagakure 63601 -Konqueror 62917 -Konrad 57358 -Kons 65452 -Konshens 62762 -Konstantin 58212 -Konstantinos 60000 -Kontakt 51275 -Kontaktinformation 63792 -Kontera 63792 -Konto 62917 -Kontraband 65170 -Kontrol 63792 -Kontron 64905 -Kony 65170 -Konya 63419 -Konzerthaus 64905 -Koo 58212 -Koodo 63792 -Kooi 64201 -Kookaburra 61256 -Kooks 57009 -Kool 54399 -Koolspace 65170 -Koon 63991 -Koonce 63419 -Koons 61472 -Koontz 58417 -Koonunga 64423 -Koop 61940 -Koopa 64657 -Koopman 64657 -Kootenai 62762 -Kootenay 63601 -Kopaonik 64905 -Kopatich 65452 -Kopecky 65170 -Koper 63419 -Kopf 63991 -Kopi 65452 -Kopin 62762 -Kopitiam 61818 -Koplow 65452 -Kopp 63991 -Koppelman 64657 -Koppenhaver 63991 -Koppert 63601 -Kops 65452 -Kor 63245 -Kor'gall 64905 -Kora 64423 -Koramangala 65452 -Koran 59292 -Koray 65452 -Korbi 64905 -Korda 65170 -Kore 58688 -Korea 39850 -Korea's 54439 -KoreaMed 55963 -Korean 42430 -Koreans 56356 -Koreas 61472 -Koreatown 64423 -Koren 64201 -Korey 62331 -Korg 53361 -Korgath 60670 -Korhonen 64423 -Kori 61051 -Korialstrasz 60952 -Korine 64657 -Korman 62917 -Korn 52635 -Kornberg 64201 -Korner 56972 -Koro 58688 -Korot 65452 -Korres 61362 -Kors 57609 -Kort 65170 -Korte 63991 -Korum 64201 -Koruna 56388 -Koruny 65170 -Korver 64201 -Kory 61699 -Kos 54727 -Kosai 65452 -Kosaka 65452 -Koscheck 63077 -Kose 65170 -Koshada 65170 -Kosher 51877 -Koshi 62196 -Koshkin 64423 -Kosi 62331 -Kosice 65170 -Koski 65170 -Kosmetik 65452 -Kosmos 62917 -Kosova 60000 -Kosovo 51825 -Kosovo's 64657 -Koss 59292 -Kosslbachtal 64905 -Kosta 61051 -Kostas 60856 -Kostenlos 65452 -Koster 62917 -Kot 59491 -KotOR 60580 -Kota 54264 -Kotak 63601 -Kotaku 58745 -KotakuImpressions 64201 -Kotha 61818 -Kothari 59848 -Kotler 65452 -Koto 60492 -Kotobukiya 64201 -Kottayam 60856 -Kotter 60952 -Kottke 62469 -Kottom 63419 -Kottonmouth 61940 -Kou 63792 -Kouchner 63245 -Kournikova 56687 -Kourtney 63077 -Kouta 62613 -Kouwenhoven 63245 -Kouzes 65170 -Kovac 63991 -Kovacs 61051 -Koval 63245 -Kovalainen 65452 -Kovalam 61256 -Kovalev 64201 -Kovácsovics 62196 -Kowa 65452 -Kowal 64657 -Kowalski 61051 -Kowloon 60405 -Koyama 60952 -Koyker 65170 -Koz 62196 -Kozak 63601 -Kozerawski 64657 -Kozhikode 59357 -Kozlov 62762 -Kozlowski 63077 -Kp 64201 -KpnI 63792 -Kr 61051 -KrF 64201 -Kraak 63077 -Krab 64905 -Krabi 55448 -Kracinski 63792 -Kracker 62917 -Kradwell 63792 -Kraehe 64905 -Kraemer 61152 -Kraft 51899 -Kraftwerk 62613 -Kraig 64423 -Krakauer 64657 -Kraken 64423 -Krakow 55684 -Krakowski 63792 -Kraków 63601 -Krall 63601 -Kramer 52712 -Kramer's 64423 -Krantz 63601 -Kranz 65170 -Krasinski 63792 -Krasnodar 60078 -Kratos 63991 -Kratz 63245 -Kraul 61051 -Kraus 59101 -Krause 55474 -Krauser 61699 -Krauss 58523 -Krauthammer 61940 -Krav 63601 -Krave 60856 -Kravis 63077 -Kravitz 58065 -Krawczyk 64201 -Kray 64905 -Kraze 63991 -Krazy 58745 -Kream 64905 -Kreator 64657 -Krebs 58523 -Kredi 62613 -Kredit 64905 -Kreg 62613 -Kreglinger 61472 -Kreiner 63792 -Kreis 64657 -Kreislauf 60952 -Kreme 60157 -Kremer 61152 -Kremikovtzi 65452 -Kremlin 57923 -Kremmling 63419 -Kren 64423 -Krendl 64657 -Krenek 60405 -Krengel 63792 -Krenn 65170 -Krentz 59702 -Krentzman 64657 -Krenz 58745 -Krenzel 64905 -Krenzer 64423 -Kress 62196 -Kreuk 62331 -Kreuz 63991 -Kreviazuk 61472 -Krew 64201 -Krewe 63792 -Kreydenweiss 65452 -Krider's 63077 -Krieg 62613 -Krieger 55849 -Krill 61584 -Kring 61584 -Kringle 64657 -Krinjabo 62469 -Kripalu 64423 -Kripke 65452 -Kris 50424 -Krish 62066 -Krishan 63792 -Krishna 52521 -Krishna's 64657 -Krishnamurthy 64201 -Krishnan 59164 -Krisko 64657 -Krispy 59227 -Kriss 61584 -Krissy 59923 -Krista 56452 -Kristal 60580 -Kristanna 64905 -Kristen 50094 -Kristen's 63991 -Kristensen 62613 -Kristi 55178 -Kristian 56972 -Kristiansand 65452 -Kristianstad 62066 -Kristie 58802 -Kristin 50129 -Kristina 54226 -Kristine 56050 -Kristof 58979 -Kristofer 64905 -Kristol 64423 -Kristopher 60762 -Kristy 52954 -Kristyn 62613 -Krisztina 64905 -Kriya 65170 -Kroc 64905 -Kroeger 64423 -Kroes 63792 -Krofft 61584 -Kroger 55107 -Krogh 64201 -Krohn 62762 -Krol 64201 -Kroll 60157 -Krom 63245 -Krome 61940 -Kron 61256 -Krona 54380 -Krone 53597 -Kronecker 60762 -Kroner 56420 -Kronor 61584 -Kronos 57278 -Krooked 63419 -Kroon 57696 -Kropf 63991 -Krsna 60321 -Krstur 60952 -Kru 61472 -Krueger 56262 -Krug 61940 -Kruger 54283 -Krugman 51078 -Krugman's 59630 -Krull 64423 -Krum 64657 -Krumlov 65170 -Krung 64657 -Krupa 63077 -Krupp 60580 -Krups 60157 -Kruse 57084 -Kruse's 65452 -Krusell 64657 -Krush 62917 -Krusteaz 62066 -Krusty 60580 -Krutch 63077 -Kruz 64657 -Krylon 64657 -Krylov 64423 -Krypto 60762 -Krypton 60670 -Kryptonite 60856 -Krystal 54879 -Krystle 65452 -Krystyna 62331 -Krzysztof 60157 -Ks 60157 -Ksubi 63792 -Kt 59630 -Ku 54857 -Kua 64423 -Kuala 50966 -Kuali 64423 -Kuan 61051 -Kuang 64657 -Kuantan 64423 -Kuanyama 65452 -Kubacki 63991 -Kubica 65452 -Kubla 65170 -Kubo 60492 -Kubota 58162 -Kubrick 59774 -Kubrick's 63245 -Kubuntu 55202 -Kubwa 63792 -Kuch 63601 -Kuching 63601 -Kucinich 57440 -Kuda 65170 -Kudlow 61940 -Kudo 58417 -KudoSurf 61472 -KudoZ 57653 -Kudos 52858 -Kudu 62331 -Kudzu 60856 -Kuehl 64657 -Kuen 64201 -Kuerten 65452 -Kugler 63991 -Kuhio 63792 -Kuhl 64657 -Kuhlman 64423 -Kuhn 52399 -Kui 64905 -Kuiper 64423 -Kuipers 64657 -Kuitpo 65170 -Kul 58802 -Kula 60492 -Kulick 65170 -Kulkarni 60157 -Kullu 63991 -Kult 63419 -Kultur 61940 -Kultura 64657 -Kum 59923 -Kuma 60670 -Kumamoto 60670 -Kumar 48576 -Kumara 62613 -Kumarakom 64905 -Kumari 62917 -Kumasi 65452 -Kumble 60952 -Kumeu 65452 -Kumho 62469 -Kumi 58979 -Kumite 62331 -Kun 56827 -Kuna 56518 -Kunal 60580 -Kundalini 58802 -Kunde 63245 -Kunden 63991 -Kundrat 64657 -Kune 61362 -Kung 49893 -Kungfu 64201 -Kuni 62917 -Kunihiko 65452 -Kunis 59292 -Kunkel 63245 -Kunming 57199 -Kunst 60670 -Kunstabteilung 59164 -Kunsthalle 65170 -Kunth 62066 -Kuntz 65170 -Kuntze 62196 -Kununurra 60670 -Kunz 60321 -Kunze 62066 -Kuo 58688 -Kuopio 63991 -Kup 65170 -Kupffer 58313 -Kupicha 62469 -Kur 64657 -Kura 63601 -Kurata 65452 -Kuraudo's 63991 -Kuraymat 61362 -Kurd 64657 -Kurdish 51974 -Kurdistan 54924 -Kurds 56652 -Kuri 64423 -Kurihara 64657 -Kurkova 63419 -Kurland 63991 -Kurnool 65170 -Kuro 61699 -Kuroda 62917 -Kurogane 63792 -Kurosaki 61940 -Kurosawa 62331 -Kursus 63601 -Kurt 48567 -Kurt's 65452 -Kurth 65170 -Kurtis 61256 -Kurtlar 59774 -Kurtz 57524 -Kurtzman 59164 -Kuru 64423 -Kurukshetra 65452 -Kurume 65170 -Kurupt 65170 -Kuruvi 65170 -Kuryakyn 64905 -Kurylenko 61818 -Kurz 61940 -Kurzweil 60157 -Kus 65170 -Kusadasi 61362 -Kusanagi 64905 -Kuselan 63991 -Kush 59630 -Kushal 65452 -Kushiel's 64905 -Kushner 61699 -Kustom 59630 -Kut 63601 -Kuta 59560 -Kutandala 64423 -Kutch 65170 -Kutcher 58577 -Kutless 62196 -Kutna 61152 -Kutsuttu 64657 -Kutt 62066 -Kuttawa 64423 -Kutztown 62066 -Kuwait 45019 -Kuwait's 64905 -Kuwaiti 56935 -Kuz 65452 -Kuzma 63792 -Kuznetsov 65170 -Kuznetsova 63792 -Kv 65452 -Kvaerner 65452 -Kvantovaya 62917 -Kw 63601 -Kwa 64657 -KwaZulu 58523 -Kwacha 60856 -Kwai 60856 -Kwak 64657 -Kwame 57482 -Kwan 55474 -Kwan's 64905 -Kwang 61818 -Kwangju 65452 -Kwanten 63419 -Kwanza 64423 -Kwanzaa 58860 -Kwari 64905 -Kwartler 60856 -Kwek 64657 -Kweli 62331 -Kwik 59101 -Kwikies 61940 -Kwikset 65452 -Kwinana 64201 -Kwoff 60856 -Kwok 60157 -Kwon 57358 -Kwong 60078 -Kx 62917 -Kxine 65170 -Ky 56756 -Kya 59774 -Kyalami 64423 -Kyat 63991 -Kyauktada 61051 -Kyi 61584 -Kyiv 57609 -Kyklos 63792 -Kyla 58262 -Kyle 47262 -Kyle's 62613 -Kylee 65452 -Kyles 64905 -Kylie 51931 -Kylix 64657 -Kym 59923 -Kymco 58919 -Kynapid 63601 -Kyneton 65170 -Kyo 58017 -Kyobu 62762 -Kyocera 53438 -Kyodo 58262 -Kyokai 65452 -Kyoko 60321 -Kyokushin 57923 -Kyosho 59923 -Kyoto 49494 -Kyou 62066 -Kyouran 64657 -Kyowa 65170 -Kyra 59357 -Kyrenia 62917 -Kyrgystan 65170 -Kyrgyz 56200 -Kyrgyzstan 46834 -Kyriad 62066 -Kyriakos 61940 -Kyrie 64201 -Kyron 62762 -Kyser 64423 -Kyte 62613 -Kyu 60856 -Kyung 59630 -Kyungpook 64905 -Kyushu 56935 -Kyuss 64657 -Kähler 63991 -Käthe 65452 -Köhler 65170 -Köln 60321 -König 63792 -København 64423 -Künstler 60321 -Küçük 64905 -L 35747 -L'Air 64905 -L'Amour 63419 -L'ENERGIE 63601 -L'INDUSTRIE 64905 -L'Inondazione 60078 -L'Occitane 61818 -L'Oreal 57160 -L'amour 64423 -L'oreal 63245 -L's 61051 -LA 39576 -LA's 57358 -LAA 55202 -LAAs 65170 -LAB 53762 -LABEL 56324 -LABELING 65452 -LABELS 59774 -LABOR 55934 -LABORATORIES 57831 -LABORATORY 56140 -LABOUR 53988 -LABS 59357 -LAC 57238 -LACE 59424 -LACEA 61818 -LACIE 62469 -LACK 61818 -LACORS 65452 -LACOSTE 64905 -LACROSSE 64201 -LACS 63991 -LACSEA 61818 -LACY 64905 -LAD 57831 -LADD 63991 -LADDER 61584 -LADDERS 65170 -LADIES 55849 -LADIEZ 65170 -LADY 54207 -LAF 61472 -LAFAYETTE 62762 -LAG 62469 -LAGUNA 62331 -LAH 65452 -LAHSA 65170 -LAI 61051 -LAID 62917 -LAIER 65170 -LAK 63792 -LAKE 50576 -LAKERS 62196 -LAKES 58919 -LAKESIDE 63792 -LAKEVIEW 58017 -LAKEWOOD 58802 -LAL 58262 -LAM 58017 -LAMA 65452 -LAMAR 63077 -LAMB 58688 -LAMBERT 62762 -LAMBORGHINI 64423 -LAMBRA 61940 -LAME 60321 -LAMICTAL 63601 -LAMINATED 60078 -LAMP 54207 -LAMPS 59702 -LAMS 61940 -LAN 47831 -LANA 64657 -LANARKSHIRE 63419 -LANCASHIRE 61699 -LANCASTER 61699 -LANCE 63419 -LANCIA 65170 -LAND 50026 -LANDFILL 61472 -LANDING 61152 -LANDMARKS 64657 -LANDS 60580 -LANDSCAPE 58065 -LANDSCAPES 63991 -LANDSCAPING 61152 -LANE 52765 -LANG 60321 -LANGUAGE 54419 -LANGUAGES 55423 -LANKA 59560 -LANL 61362 -LANNING 64201 -LANOXIN 64657 -LANSING 63601 -LANTERN 61152 -LANYARDS 64657 -LANs 58802 -LAO 54419 -LAOH 64905 -LAOS 65452 -LAP 60405 -LAPD 57084 -LAPTOP 57238 -LAPTOPS 57923 -LAPTg 63601 -LAR 62066 -LARA 62613 -LARGE 51017 -LARGER 58979 -LARGEST 59560 -LARK 64657 -LARNER 63601 -LARP 59491 -LARPs 63419 -LARRY 56356 -LARSON 61940 -LAS 52597 -LASER 55906 -LASERS 64201 -LASIK 54023 -LASR 65452 -LAST 47496 -LAT 51783 -LATA 63077 -LATCH 61472 -LATE 55657 -LATER 58365 -LATEST 47130 -LATEX 65170 -LATHANE 60078 -LATHE 64905 -LATIN 55552 -LATINA 63601 -LATINO 59424 -LATINOAMERICANO 65170 -LATITUDE 61051 -LATTICE 64423 -LATVIA 59923 -LATimes 57122 -LAU 63792 -LAUDERDALE 61584 -LAUGH 65452 -LAUGHING 63792 -LAUNCH 57358 -LAUNCHED 65452 -LAUNCHES 60405 -LAUNCHcast 56050 -LAUNDRY 60762 -LAURA 57653 -LAUREL 62762 -LAUREN 59292 -LAURENCE 63601 -LAURENT 64423 -LAURIE 63419 -LAVA 63245 -LAVELLE 64905 -LAVENDER 63419 -LAVIGNE 63991 -LAVISH 64905 -LAW 49285 -LAWN 59292 -LAWRENCE 56687 -LAWS 57318 -LAWSON 63419 -LAWSUIT 60952 -LAWYER 58313 -LAWYERS 63419 -LAX 54835 -LAY 63601 -LAYER 54902 -LAYERS 62762 -LAYOUT 55084 -LAYOUTS 60952 -LAYUP 59101 -LAZY 64657 -LAist 59702 -LAs 62066 -LB 49584 -LBA 64905 -LBBB 65170 -LBC 61472 -LBD 59039 -LBF 64657 -LBH 64423 -LBJ 60856 -LBL 57653 -LBM 62469 -LBNL 62917 -LBO 62613 -LBP 55992 -LBS 56021 -LBV 65452 -LBW 65170 -LBZ 63792 -LBs 64201 -LC 48274 -LCA 60000 -LCB 65170 -LCBO 64657 -LCC 56935 -LCCN 57653 -LCConnection 59923 -LCCurrency 63245 -LCD 41301 -LCD's 62917 -LCDR 63991 -LCDatetime 63245 -LCDs 56652 -LCE 63792 -LCF 58577 -LCField 60000 -LCFieldlist 59357 -LCG 60492 -LCH 65452 -LCI 64201 -LCL 62066 -LCM 62066 -LCMV 59923 -LCN 63419 -LCNumeric 63245 -LCP 62762 -LCR 55604 -LCS 56388 -LCST 63792 -LCSW 63991 -LCSession 61051 -LCStream 60157 -LCT 61584 -LCV 63419 -LCVD 64423 -LCoS 61256 -LCs 62917 -LD 50387 -LDA 58979 -LDAP 53124 -LDC 57440 -LDCs 57923 -LDF 61584 -LDG 63245 -LDH 56935 -LDI 65170 -LDL 51793 -LDN 63077 -LDO 61940 -LDP 57278 -LDPC 58919 -LDPE 61699 -LDQM 64657 -LDR 60405 -LDS 54835 -LDV 64201 -LE 48059 -LEA 55793 -LEAD 55250 -LEADER 57046 -LEADERS 59774 -LEADERSHIP 56324 -LEADING 58632 -LEADS 60856 -LEAF 57160 -LEAFED 63991 -LEAFS 63991 -LEAGUE 53695 -LEAGUES 64657 -LEAH 63792 -LEAK 62613 -LEAKAGE 63077 -LEAKED 64657 -LEAN 62331 -LEAP 58162 -LEARJET 62762 -LEARN 53301 -LEARNED 63601 -LEARNER 62762 -LEARNERS 65170 -LEARNING 53081 -LEASE 57785 -LEASING 62917 -LEAST 55992 -LEATHER 52339 -LEAVE 53970 -LEAVES 60078 -LEAVING 62196 -LEAs 62762 -LEBANON 59039 -LEC 62066 -LECTURE 54380 -LECTURES 62469 -LED 43254 -LED's 57741 -LEDC 65170 -LEDER 65170 -LEDs 51700 -LEE 51140 -LEED 55154 -LEEDS 60670 -LEEP 65170 -LEFT 51793 -LEG 57318 -LEGACY 58802 -LEGAL 50192 -LEGALI 65452 -LEGEND 55684 -LEGENDARY 64423 -LEGENDS 60762 -LEGION 63792 -LEGISLATION 58162 -LEGISLATIVE 57440 -LEGISLATURE 61152 -LEGO 50568 -LEGS 61699 -LEH 65170 -LEHIGH 65452 -LEI 58212 -LEIBENSTEIN 65170 -LEICESTER 63601 -LEIGH 60952 -LEISURE 57009 -LEITH 65452 -LEMAY 63077 -LEMMA 61584 -LEMON 58017 -LEN 64905 -LENA 59848 -LENDER 63601 -LENDING 64201 -LENGKONG 62917 -LENGTH 55250 -LENNON 64657 -LENNY 62196 -LENOIR 65452 -LENOVO 54727 -LENOX 65170 -LENS 55202 -LENSES 62331 -LEO 56262 -LEON 58979 -LEONA 64201 -LEONARD 59292 -LEONE 61051 -LEONG 62613 -LEOPARD 61256 -LEOTARD 60856 -LEOTARDS 59774 -LEP 56262 -LEPC 59923 -LEROY 65170 -LES 53081 -LESABRE 63601 -LESBIAN 59039 -LESIONS 64657 -LESLIE 59164 -LESOTHO 61818 -LESS 53762 -LESSON 59101 -LESSONS 55963 -LESTER 64657 -LESWELL 65170 -LET 51741 -LET'S 58860 -LETRAS 64201 -LETS 58577 -LETTER 51985 -LETTERS 52175 -LETTING 63601 -LEU 64201 -LEUKEMIA 64201 -LEV 64423 -LEVEL 51330 -LEVELS 56262 -LEVER 58212 -LEVERKUSEN 64905 -LEVI 62331 -LEVIN 63601 -LEVINE 64201 -LEVITRA 65170 -LEVOTHYROXINE 65452 -LEVY 61256 -LEW 64905 -LEWIS 55684 -LEX 65170 -LEXAR 60952 -LEXINGTON 61362 -LEXIS 62917 -LEXMARK 61584 -LEXUS 60078 -LEYLAND 65452 -LEZ 62917 -LF 49553 -LFC 60405 -LFDTS 63991 -LFE 63077 -LFO 58212 -LFR 63077 -LFS 57741 -LFT 63077 -LFTB 64657 -LFW 65170 -LG 43142 -LG's 60078 -LGA 57046 -LGB 61940 -LGBT 50623 -LGBTQ 65452 -LGC 61362 -LGD 65170 -LGF 62917 -LGI 63792 -LGM 64657 -LGN 64657 -LGPL 60238 -LGR 65452 -LGS 63991 -LGT 63419 -LGU 61256 -LGUs 64905 -LGV 64905 -LH 48687 -LHA 62469 -LHC 55992 -LHD 58919 -LHP 62613 -LHR 63991 -LHRH 59702 -LHS 60000 -LHX 63991 -LI 50192 -LIABILITIES 58688 -LIABILITY 53438 -LIABLE 56452 -LIAISON 63419 -LIAM 65452 -LIAN 64657 -LIB 56021 -LIBERAL 63419 -LIBERIA 61362 -LIBERO 63419 -LIBERTY 56388 -LIBOR 61362 -LIBRARIANS 55107 -LIBRARIES 59101 -LIBRARY 50599 -LIBS 60762 -LIBYAN 63077 -LIC 59923 -LICENCE 59357 -LICENCES 64905 -LICENSE 52778 -LICENSED 59357 -LICENSEE 64423 -LICENSES 62196 -LICENSING 55014 -LICK 63792 -LID 57741 -LIDAR 63991 -LIE 60157 -LIEBHERR 62469 -LIECHTENSTEIN 61472 -LIES 59923 -LIEUTENANT 55526 -LIF 63419 -LIFAU 64905 -LIFE 47241 -LIFEBOOK 65170 -LIFEFORM 63077 -LIFESIZE 63792 -LIFESTYLE 54302 -LIFESTYLES 63601 -LIFETIME 60078 -LIFO 59164 -LIFT 58919 -LIFTER 64905 -LIFTS 64905 -LIGHT 50213 -LIGHTBOX 61472 -LIGHTBOXES 61699 -LIGHTED 65170 -LIGHTER 64423 -LIGHTHOUSE 55250 -LIGHTING 55684 -LIGHTNING 60157 -LIGHTS 56585 -LIGO 64657 -LIH 65452 -LIHTC 63792 -LII 63245 -LIKE 47694 -LIKED 63792 -LIKELY 62469 -LIKES 63792 -LIL 55684 -LILAC 64423 -LILLY 62613 -LILY 63077 -LIM 60405 -LIMA 61940 -LIME 59424 -LIMERICK 61362 -LIMESTONE 62762 -LIMIT 55906 -LIMITAR 65170 -LIMITATION 55877 -LIMITATIONS 59630 -LIMITED 45685 -LIMITING 63792 -LIMITS 58262 -LIMOUSINE 64905 -LIMS 63601 -LIN 57566 -LINCOLN 56356 -LINCOLNSHIRE 64905 -LINCOM 59227 -LINDA 55657 -LINDEN 62613 -LINDSAY 59491 -LINDSEY 64657 -LINE 49682 -LINEAR 58577 -LINED 63792 -LINEN 63991 -LINER 62066 -LINERS 65452 -LINES 56687 -LING 64657 -LINGERIE 62066 -LINK 49663 -LINKAGES 64657 -LINKED 61584 -LINKING 63991 -LINKS 44815 -LINKSYS 60670 -LINQ 54170 -LINUX 56551 -LINZ 62331 -LION 55684 -LIONS 61818 -LIP 58745 -LIPCA 63245 -LIPID 65170 -LIPS 61699 -LIPSTICK 63991 -LIPTON 62066 -LIQUID 55849 -LIQUIDS 64905 -LIQUOR 58417 -LIRR 65452 -LIS 57785 -LISA 55299 -LISBON 62762 -LISBURN 65452 -LISP 62613 -LIST 47819 -LISTA 65452 -LISTED 53830 -LISTEN 51721 -LISTENING 60856 -LISTER 57831 -LISTING 54151 -LISTINGS 52609 -LISTINGSAVE 62066 -LISTS 54459 -LISTSERV 51463 -LIT 61699 -LITA 63991 -LITE 58262 -LITERACY 61699 -LITERARY 60580 -LITERATURE 54813 -LITHIUM 62196 -LITHUANIA 60078 -LITIGATION 60078 -LITTLE 51113 -LITTLETON 62613 -LIU 58212 -LIV 62066 -LIVE 45919 -LIVED 64905 -LIVER 59923 -LIVERPOOL 57609 -LIVES 58212 -LIVESTAR 65170 -LIVESTOCK 60952 -LIVESTRONG 63792 -LIVIN 64657 -LIVING 51349 -LIVINGSTON 56420 -LIZ 61584 -LIfe 63077 -LIne 65452 -LJ 48080 -LJR 65452 -LJS 61940 -LK 53762 -LKB 63077 -LKQ 65452 -LKR 64423 -LL 49097 -LLAVE 63601 -LLB 56972 -LLBLGen 65170 -LLBean 63792 -LLC 38116 -LLC's 62066 -LLCO 65170 -LLEDO 65452 -LLG 65170 -LLM 60405 -LLNL 61940 -LLOYD 58632 -LLP 45997 -LLRXBuzz 57278 -LLY 65452 -LLoyd 63601 -LM 49959 -LMA 62196 -LMAO 58365 -LMC 62066 -LME 63077 -LMF 62917 -LMFAO 64657 -LMG 64657 -LMI 60952 -LMJ 63792 -LML 62917 -LMM 63991 -LMN 65170 -LMNs 65170 -LMOTP 60762 -LMP 61152 -LMR 65452 -LMS 56551 -LMT 64905 -LN 51463 -LNA 62762 -LNB 58017 -LNC 63991 -LNCS 58860 -LNCaP 62917 -LNE 63991 -LNG 55014 -LNI 63991 -LNP 65170 -LNT 61362 -LO 51640 -LOA 61584 -LOAD 54902 -LOADED 61362 -LOADING 55711 -LOADS 61472 -LOAF 64423 -LOAN 54360 -LOANS 56080 -LOB 62762 -LOBBY 63419 -LOBBYING 62762 -LOBO 65170 -LOBSTER 61940 -LOC 55657 -LOCA 64657 -LOCAL 47413 -LOCALE 63792 -LOCALIZATION 65452 -LOCALLY 62917 -LOCALS 65452 -LOCATE 64201 -LOCATED 56170 -LOCATION 48938 -LOCATIONS 55738 -LOCATOR 57566 -LOCC 64657 -LOCI 61051 -LOCK 55107 -LOCKED 63601 -LOCKER 64905 -LOCKING 62066 -LOCKOUT 64423 -LOCKS 62066 -LOCKSS 65170 -LOCO 61699 -LOCOS 58802 -LOD 59227 -LODGE 59774 -LODGING 61256 -LOF 64657 -LOFI 62066 -LOFT 61051 -LOG 48152 -LOGAN 59702 -LOGGED 63601 -LOGGING 60952 -LOGIC 57831 -LOGICAL 61362 -LOGIN 46748 -LOGISTICS 58979 -LOGITECH 61584 -LOGO 54969 -LOGON 62762 -LOGOS 62762 -LOGOUT 65452 -LOGS 64905 -LOH 63419 -LOHAN 62613 -LOHAN'S 64657 -LOI 61472 -LOIS 64201 -LOL 47839 -LOLA 62331 -LOLITA 63601 -LOM 64905 -LON 62762 -LONDON 47080 -LONE 60000 -LONELY 64657 -LONG 49500 -LONGABERGER 64657 -LONGER 58577 -LOO 64905 -LOOK 51590 -LOOKIN 65170 -LOOKING 51531 -LOOKS 59630 -LOOP 57318 -LOOPS 61152 -LOOSE 60405 -LOP 64423 -LOPEZ 58979 -LOR 63792 -LORD 52559 -LORENZ 64423 -LORETTA 64657 -LORI 62762 -LORRAINE 64905 -LOS 48638 -LOSE 58979 -LOSING 64657 -LOSS 53533 -LOSSARY 65170 -LOSSES 63077 -LOST 52832 -LOSTPROPHETS 64905 -LOT 49972 -LOTHIAN 64905 -LOTION 64905 -LOTMA 63077 -LOTR 59164 -LOTRO 60157 -LOTS 54170 -LOTT 62613 -LOTTERY 58860 -LOTTO 59292 -LOTUS 60762 -LOU 62066 -LOUD 59560 -LOUIE 63245 -LOUIS 54540 -LOUISE 60238 -LOUISIANA 56021 -LOUISVILLE 63077 -LOUNGE 57199 -LOVE 44705 -LOVED 56827 -LOVEFiLM 54946 -LOVELY 59424 -LOVEQUiZ 63601 -LOVER 60952 -LOVERS 61051 -LOVES 56452 -LOVING 60000 -LOW 49783 -LOWE 63991 -LOWELL 59357 -LOWER 53549 -LOWEST 58470 -LOWS 59227 -LOX 61584 -LOYALTY 65452 -LP 45426 -LP's 63419 -LPA 58017 -LPB 65170 -LPC 56452 -LPD 61362 -LPE 64905 -LPF 65170 -LPFG 64657 -LPG 54005 -LPGA 57399 -LPH 59424 -LPI 62917 -LPL 59491 -LPM 64423 -LPN 57122 -LPNs 62917 -LPO 60238 -LPP 63419 -LPR 63077 -LPS 52233 -LPT 60762 -LPs 58162 -LQ 50321 -LR 50335 -LRA 59424 -LRAT 64201 -LRB 60078 -LRC 60405 -LRD 64423 -LRG 60238 -LRP 61256 -LRQA 60492 -LRR 62196 -LRRD 64201 -LRT 61818 -LRU 61699 -LS 48638 -LSA 56899 -LSASS 64657 -LSAT 61584 -LSB 57318 -LSBU 62469 -LSBs 65452 -LSC 56827 -LSD 55657 -LSE 57009 -LSF 64905 -LSI 56021 -LSID 64201 -LSM 57122 -LSN 64657 -LSO 64201 -LSP 57122 -LSPA 62331 -LSPs 62331 -LSR 63419 -LSS 60580 -LST 60238 -LSU 51888 -LSU's 64423 -LSW 61818 -LSX 56756 -LSZH 64657 -LT 49880 -LTA 59357 -LTB 63419 -LTC 57609 -LTCCP 64201 -LTD 44619 -LTE 58212 -LTGP 62331 -LTI 63077 -LTL 56485 -LTM 61152 -LTO 59702 -LTP 56420 -LTR 57160 -LTRs 64201 -LTS 57741 -LTTE 58688 -LTU 61152 -LTV 61051 -LTX 63419 -LTZ 58262 -LU 54499 -LUA 63419 -LUBE 61152 -LUBRICANT 62066 -LUBRICANTS 63419 -LUBRIPLATE 65452 -LUBS 63601 -LUC 63991 -LUCA 64657 -LUCAS 59292 -LUCIA 60856 -LUCK 58262 -LUCKY 58313 -LUCY 59923 -LUFC 61152 -LUGGAGE 58802 -LUIS 58919 -LUKE 61256 -LUKOIL 62762 -LUMBER 62613 -LUMIX 64423 -LUMO 62613 -LUMPUR 65452 -LUN 63419 -LUNA 59227 -LUNCH 56935 -LUND 62917 -LUNG 58688 -LURE 64905 -LUSH 58017 -LUST 58745 -LUTHER 61584 -LUTHERAN 64423 -LUTON 65170 -LUV 55274 -LUX 62196 -LUXE 64905 -LUXEMBOURG 59560 -LUXOR 64201 -LUXURY 57084 -LUZ 65170 -LV 49223 -LVA 65452 -LVD 62331 -LVDS 59491 -LVEF 61152 -LVH 60157 -LVL 57358 -LVM 59039 -LVN 62196 -LVRS 65452 -LVT 63991 -LW 53830 -LWA 64201 -LWB 61584 -LWC 65170 -LWGMS 61940 -LWIA 62917 -LWWOnline 53779 -LX 49452 -LXI 63991 -LXR 64201 -LXer 60405 -LY 52029 -LYDIA 64423 -LYING 64905 -LYLE 60856 -LYN 62331 -LYNCH 62613 -LYNDA 64423 -LYNN 57785 -LYNNE 63419 -LYOFOAM 64905 -LYON 62066 -LYRICS 47619 -LYRICSBOX 63792 -LYRICSMODE 60157 -LZ 59357 -LZR 62469 -La 38039 -LaBelle 62917 -LaBeouf 58417 -LaBounty 65170 -LaCie 52648 -LaCrosse 60157 -LaDainian 60952 -LaDy 64201 -LaFayette 65452 -LaFrance 62196 -LaGrange 58365 -LaGuardia 61152 -LaLa 64201 -LaMont 62331 -LaMontagne 60238 -LaPorte 60492 -LaRoche 65170 -LaRouche 63991 -LaRue 61940 -LaSalle 55578 -LaShawn 63792 -LaTeX 54245 -LaTex 65170 -LaToya 63077 -LaValle 65170 -LaVelle 62066 -LaWall 62331 -LaZr 64201 -Laan 63245 -Laat 63245 -Lab 43295 -Lab's 62613 -LabChart 62762 -LabVIEW 56452 -Laban 61256 -Labcorp 65452 -Label 44018 -Labeled 58365 -Labeler 63991 -Labeling 53630 -Labelle 60157 -Labelled 61256 -Labelling 57160 -Labels 44109 -LabforCulture 64201 -Labi 64201 -Labia 64201 -Labial 65170 -Labonte 60856 -Labor 42109 -Labor's 61051 -Laboratoire 54560 -Laboratoires 65170 -Laboratories 48067 -Laboratorio 60238 -Laboratoriums 63792 -Laboratory 43009 -Laboratory's 63991 -Laboratório 64657 -Laborer 59630 -Laborers 63792 -Labour 45659 -Labour's 58262 -Labourer 62196 -Labrada 63991 -Labradoodle 62613 -Labrador 48861 -Labradors 63077 -Labret 61256 -Labriola 64423 -Labs 41731 -Labtec 59227 -Labview 63601 -Labyrinth 53226 -Lac 52954 -Lacan 63077 -Lace 49758 -Laced 65170 -Laces 58919 -Lacey 53917 -Lacey's 63601 -LaceyLichiPhotography 64657 -Lach 62613 -Lachey 58979 -Lachlan 60238 -Lachman 65170 -Lachmann 64905 -Laci 65170 -Lacie 58113 -Lack 49701 -Lackawanna 60952 -Lackey 60492 -Lacking 58365 -Lackland 63601 -Lacks 60405 -Laclede 62469 -Lacombe 60000 -Lacon 65170 -Laconia 60321 -Lacoste 55348 -Lacouette 64905 -Lacquer 58745 -Lacquered 64423 -Lacquers 64423 -Lacroix 58802 -Lacrosse 48741 -Lacs 59227 -Lact 63601 -Lactate 60580 -Lactating 64201 -Lactation 58065 -Lactic 58802 -Lactobacillus 57084 -Lactococcus 62762 -Lactose 59848 -Lactulose 64657 -Lacuna 60238 -Lacy 57199 -Lad 57923 -Lada 58632 -Ladakh 60762 -Ladakhi 64905 -Ladbroke 60856 -Ladbrokes 60157 -Ladd 58212 -Ladder 50306 -Ladders 53613 -Laden 53167 -Laden's 60321 -Ladera 60078 -Ladies 43730 -Ladino 61940 -Ladislav 64657 -Ladle 61818 -Ladner 63077 -Lado 64905 -Lads 60580 -Ladson 63245 -Ladue 63991 -Lady 43454 -Lady's 56485 -LadyBug 63792 -Ladybird 61472 -Ladyboy 58919 -Ladybrille 62762 -Ladybug 56050 -Ladyhawke 64905 -Ladysmith 63245 -Ladytron 60670 -Lae 65452 -Laegeforen 65452 -Laeger 63991 -Laelia 62469 -Laem 64657 -Laemmle's 64905 -Laemmli 60670 -Laer 64201 -Laetitia 61051 -Laetoli 63991 -Lafarge 63077 -Lafayette 50026 -Lafferty 60580 -Lafleur 63792 -Lafont 65170 -Lafragancia 65452 -Lag 57566 -Lagan 63601 -Lagann 61152 -Lagasse 63245 -Lage 60492 -Lager 58017 -Lagerfeld 58212 -Lagerlöf 64423 -Lago 56721 -Lagoa 64201 -Lagonda 65452 -Lagoon 52609 -Lagos 55226 -Lagrange 58065 -Lagrangian 55250 -Lagu 62917 -Laguna 50122 -Lagunitas 63601 -Laguntza 63419 -Lah 63419 -Lahaina 60078 -Lahey 65170 -Lahiri 63601 -Lahore 54813 -Lahr 64201 -Lahti 63419 -Lai 54226 -Laid 56452 -Laidback 64423 -Laidlaw 61940 -Laidley 64905 -Laight 65452 -Laika 63245 -Laila 59164 -Laima 62331 -Lain 60157 -Laine 54005 -Lainey 64905 -Laing 60157 -Lainie 63792 -Lair 51580 -Laird 58262 -Laissez 63601 -Laithwaites 61940 -Lajitas 65452 -Lak 61152 -Lakai 62066 -Lakanto 63991 -Lakatos 61362 -Lake 36996 -Lake's 65452 -Lakefront 59039 -Lakehead 64657 -Lakeland 52521 -Lakeman 63419 -Laken 65452 -Lakeport 60952 -Laker 62762 -Lakeridge 65452 -Lakers 50150 -Lakes 45362 -Lakeshore 56110 -Lakeside 52622 -Laketown 65452 -Lakeview 51856 -Lakeville 57609 -Lakeway 64657 -Lakewood 52244 -Lakh 62917 -Lakhs 59227 -Lakin 62196 -Lakisha 64905 -Lakme 59227 -Lakota 59227 -LakshaDweep 61256 -Lakshadweep 58632 -Lakshmi 57278 -Lal 55448 -Lala 57831 -Lalique 62762 -Lalit 61818 -Lalitha 65452 -Lalli 65452 -Lally 60856 -Lalo 63991 -Lalonde 64905 -Lalor 61699 -Lalu 64657 -Lam 53256 -Lam's 64201 -Lama 53316 -Lama's 64201 -Lamacq 64423 -Laman 63601 -Lamang 60321 -Lamar 53153 -Lamas 63245 -Lamaze 61699 -Lamb 49639 -Lamb's 62066 -Lamba 60078 -Lambda 53138 -Lambeau 62613 -Lambert 50087 -Lamberto 63077 -Lambertville 64905 -Lambeth 54096 -Lambo 61472 -Lamborghini 49359 -Lambretta 63077 -Lambs 58688 -Lambskin 60157 -Lambton 62762 -Lambunao 63991 -Lame 55274 -Lamellar 65170 -Lament 60670 -Lamentations 65452 -Lamictal 60492 -Lamina 62331 -Laminar 61699 -Laminate 53196 -Laminated 56756 -Laminates 61256 -Laminating 58162 -Lamination 62469 -Laminators 60157 -Lamington 64905 -Lamisil 61362 -Lamivudine 63991 -Lamm 61152 -Lammas 65170 -Lammermoor 64423 -Lamont 57482 -Lamotrigine 62196 -Lamp 47356 -Lampang 65452 -Lampard 61362 -Lampasas 65170 -Lampe 57318 -Lampert 57566 -Lampeter 61051 -Lamping 63792 -Lampkins 63601 -Lamplighter 64905 -Lampoon 60580 -Lampoon's 64657 -Lampranthus 63991 -Lamps 48156 -Lampwork 64905 -Lamson 60670 -Lamu 63792 -Lamune 65452 -Lamy 64905 -Lan 54685 -Lana 53286 -Lanai 59164 -Lanark 60492 -Lanarkshire 53010 -Lancashire 48309 -Lancaster 47518 -Lance 47656 -Lance's 64657 -Lancelot 58688 -Lancer 52221 -Lancers 62613 -Lancet 53095 -Lanchester 64657 -Lancia 56262 -Lancing 63419 -Lancome 55821 -Lancs 55578 -Lanczos 63991 -Lancôme 65452 -Land 38941 -Land's 64201 -Landa 62917 -Landaa 65170 -Landau 57046 -Landcare 55963 -Landcruiser 64423 -Lande 62331 -Landeau 65452 -Landed 56420 -Lander 55766 -Landers 58919 -Landes 59039 -Landfall 63991 -Landfill 53346 -Landfills 60157 -Landforms 63601 -Landing 49336 -Landings 60000 -Landis 55877 -Landline 58017 -Landlocked 62331 -Landlord 52622 -Landlord's 61584 -Landlords 56140 -Landman 65452 -Landmann 65170 -Landmark 50087 -Landmark's 60762 -Landmarks 52130 -Lando 65452 -Landon 58365 -Landover 65170 -Landowner 62196 -Landowners 62331 -Landrieu 65452 -Landrover 62066 -Landrum 60670 -Landry 56110 -Landry's 63245 -Lands 49873 -Landsat 57440 -Landsbanki 64201 -Landsborough 63792 -Landscape 45590 -Landscaped 62613 -Landscaper 63419 -Landscapers 55738 -Landscapes 51721 -Landscaping 49044 -Landslide 59101 -Landwehr 63077 -Landy 62196 -Landyachtz 64657 -Lane 43461 -Lane's 62613 -Lanegan 63077 -Lanes 53485 -Laney 60580 -Lang 49796 -Lang's 63419 -Langa 64201 -Langage 59630 -Langan 65170 -Langdon 57046 -Lange 53882 -Langella 60000 -Langenbecks 65170 -Langer 60238 -Langerhans 60405 -Langerman 65452 -Langevin 62762 -Langfang 65170 -Langford 57524 -Langham 59630 -Langhorne 63792 -Langkawi 62762 -Langlands 63792 -Langley 52609 -Langlois 62613 -Langmuir 55500 -Langone 65452 -Langston 59039 -Langton 63601 -Language 36788 -Languages 42612 -Languagues 62331 -Langue 49382 -Languedoc 62196 -Lanham 60670 -Lani 60670 -Lanier 55631 -Lanka 44522 -Lanka's 62613 -Lankan 54664 -Lankford 65452 -Lanna 65452 -Lannie 65452 -Lanning 61940 -Lanny 58860 -Lanoxin 63601 -Lansbury 64905 -Lansdale 61818 -Lansdown 63419 -Lansdowne 57741 -Lanseria 65170 -Lansing 52280 -Lansky 63419 -Lanta 60762 -Lantana 62066 -Lantern 52152 -Lanterns 55934 -Lantus 63419 -Lantz 62469 -Lanvin 60321 -Lanyard 56110 -Lanyards 57923 -Lanza 62917 -Lanzar 65170 -Lanzarote 58470 -Lanzhou 60670 -Lao 49952 -Laoghaire 61584 -Laois 57278 -Laos 47201 -Laotian 61940 -Lap 53256 -Laparoscopic 57358 -Laparoscopy 62762 -Lape 65170 -Lapeer 57923 -Lapel 56262 -Lapham 63419 -Lapidus 62762 -Lapin 64423 -Lapis 63077 -Laplace 55398 -Laplacian 62762 -Lapland 62066 -Lapointe 62762 -Laporte 60238 -Lappe 64423 -Lapping 63991 -Lappland 64905 -Lappé 65452 -Lapras 63991 -LapresseAffaires 63792 -Laps 61699 -Lapse 62613 -Lapsed 65170 -Lapses 65170 -Lapthorne 61362 -Laptop 42260 -Laptops 43234 -Lar 64201 -Lara 50702 -Larabie 64657 -Laramie 57160 -Larceny 60670 -Larch 62469 -Larcher 62917 -Larchmont 62613 -Lard 64423 -Lardner 61818 -Laredo 56652 -Laren 62917 -Large 39823 -Largehearted 63991 -Largely 62613 -Larger 40187 -Larges 64423 -Largest 46592 -Largo 54540 -Lari 63601 -Lariat 61362 -Larimer 60157 -Larisa 63077 -Larissa 58162 -Lark 57609 -Larkhall 62762 -Larkin 57785 -Larkins 64423 -Larkspur 61152 -Larmor 65170 -Larnaca 61472 -Larne 63419 -Laroche 63991 -Larrabee 63245 -Larrea 65170 -Larry 43850 -Larry's 58417 -LarryHN 64657 -Larrys 64423 -Lars 52315 -Larsen 54727 -Larson 52559 -Larson's 63601 -Larsson 58365 -Larter 59923 -Larue 63077 -Larva 65170 -Larvae 60405 -Larval 61940 -Lary 65170 -Laryngeal 63991 -Laryngol 59702 -Laryngology 65170 -Laryngopharyngeal 62613 -Laryngoscope 62613 -Las 39994 -Lasagna 57046 -Lasagne 59039 -Lasalle 60405 -Lascivious 62469 -Laser 43372 -LaserBolt 63991 -LaserJet 51660 -Laserjet 59630 -Lasers 53109 -Laserschwert 62066 -Lash 58212 -Lashed 59424 -Lasher 60078 -Lashes 58802 -Lashkar 65452 -Lashley 61818 -Lasik 56170 -Lasioglossum 65170 -Lasix 61818 -Lasker 60157 -Laskin 65452 -Lasky 65452 -Lass 62469 -Lassa 65170 -Lasse 61362 -Lassen 58919 -Lasser 63419 -Lasseter 64423 -Lassi 65170 -Lassie 60000 -Lassiter 63077 -Lasso 57482 -LassoTech 63419 -Last 32012 -LastBuildTime 63991 -LastExitStatus 63077 -LastFM 62613 -LastFTIndexed 61584 -LastFixup 61584 -LastLine 65452 -LastModified 57482 -LastRow 63077 -LastRun 60856 -Laster 64905 -Lastest 61152 -Lasting 55014 -Lastly 60762 -Lastminute 65452 -Lastname 65452 -Lasts 60580 -Laswell 63419 -Lasyk 64201 -Laszlo 60762 -Lat 55323 -LatAm 65452 -LatPro 64423 -Lata 62613 -Latah 64201 -Latch 58745 -Latches 60670 -Late 44683 -LateRooms 63077 -Lateline 61818 -Lately 56110 -Latency 57696 -Latent 58417 -Later 45463 -Lateral 53346 -Latest 34507 -Latex 52534 -Latha 63792 -Latham 56420 -Lathan 65452 -Lathe 59848 -Lathes 61818 -Lathrop 60762 -Latico 64201 -Latif 63792 -Latifah 59039 -Latimer 58523 -Latin 41124 -Latina 49251 -Latinas 55474 -Latino 43675 -Latinoamericano 64657 -Latinos 51570 -Latins 64657 -Latitude 48552 -Latitudes 65170 -Lato 63991 -Latour 60580 -Latourette 57524 -Latoya 63245 -Latrobe 59702 -Lats 60952 -Latta 61940 -Latte 57399 -Latter 60078 -Lattice 54226 -Lattices 64905 -Lattimore 60670 -Latur 65452 -Latvia 45082 -Latvia's 64201 -Latvian 51731 -Latviešu 54857 -Latvija 64905 -Latvijas 64657 -Lau 54792 -Laub 64423 -Lauciani 65452 -Laud 64905 -Lauda 62066 -Laude 61940 -Lauder 57318 -Lauderdale 45845 -Laue 65170 -Lauer 55398 -Lauffer 58470 -Laugh 50750 -Laughed 63419 -Laughing 52423 -Laughlin 57358 -Laughs 57399 -Laughter 56170 -Laughton 64423 -Launceston 56485 -Launch 45002 -Launched 51996 -Launcher 56585 -Launchers 59227 -Launches 47241 -Launching 56324 -Launchpad 55037 -Laundering 57741 -Laundries 61051 -Laundromat 61362 -Laundry 47449 -Lauper 60670 -Laur 64423 -Laura 43877 -Laura's 58113 -Laurance 64657 -Laure 60670 -Laurea 64657 -Laureate 57970 -Laureates 63991 -Laurel 49494 -Laurell 63601 -Laurels 65170 -Lauren 45143 -Lauren's 61256 -Laurence 51550 -Laurens 58860 -LaurensTravels 62331 -Laurent 51453 -Laurentian 60000 -Laurentiis 61584 -Laurette 64905 -Lauri 60952 -Laurie 49657 -Laurie's 65170 -Laurier 55526 -Laurin 65452 -Lauritzen 63245 -Lauro 62762 -Laursen 65452 -Laurson 62066 -Laurus 65170 -Lauryn 59039 -Lausanne 56935 -Laut 62469 -Lautan 63601 -Lauterbach 64657 -Lav 63601 -Lava 54360 -Lavaca 62917 -Lavage 64657 -Laval 57482 -Lavalier 65170 -Lavan 62917 -Lavasoft 61584 -Lavatory 62917 -Lavazza 63245 -Lave 64657 -Lavell 63419 -Lavelle 62613 -Lavendar 64657 -Lavender 51377 -Laver 63991 -Laveranues 65452 -Laverda 64905 -Laverne 62469 -Laverty 64201 -Lavery 61051 -Lavi 64657 -Lavigne 52845 -Lavin 62196 -Lavina 63245 -Lavinia 61256 -Lavish 64905 -Lavoie 64657 -Lavon 65452 -Lavrov 65452 -Law 34478 -Law's 61584 -LawCrawler 61940 -Lawak 64657 -Lawford 63245 -Lawful 64201 -Lawhead 62613 -Lawler 59227 -Lawless 57084 -Lawley 64657 -Lawlor 58365 -Lawmaker 63601 -Lawmakers 55178 -Lawn 45583 -LawnSite 65170 -Lawncare 65170 -Lawndale 59164 -Lawnmower 60492 -Lawnmowerman 61940 -Lawnmowers 63077 -Lawns 58745 -Lawrence 44254 -Lawrence's 60952 -Lawrenceburg 61051 -Lawrenceville 56356 -Lawrie 62469 -Lawry's 65452 -Laws 43902 -Lawson 51711 -Lawsuit 51358 -Lawsuits 56110 -Lawton 56170 -Lawyer 41542 -Lawyer's 60321 -Lawyers 42928 -Lax 58017 -Laxative 61818 -Laxey 64905 -Laxman 62469 -Laxmi 61940 -Lay 50898 -Lay's 63419 -Layali 61940 -Layaway 62762 -Laycock 65170 -Layer 48005 -Layered 56862 -Layering 61699 -Layers 53256 -Layette 63077 -Laying 55711 -Layla 56935 -Layman 63419 -Layne 58470 -Layoff 63245 -Layoffs 55526 -Layout 46197 -Layouts 42634 -Lays 60492 -Layton 55963 -Laz 64657 -Lazar 59227 -Lazar's 63245 -Lazard 62066 -Lazaro 61584 -Lazarus 57524 -Lazer 61051 -Laziness 63077 -Lazio 56827 -Lazo 64423 -Lazu 59923 -Lazy 52268 -LazyLoad 64657 -LazyTown 55373 -Lazzaro 63077 -Lb 57160 -Lbs 57566 -Lc 63077 -Lcd 57199 -Ld 62331 -Le 41807 -LeAnn 60856 -LeAnna 64905 -LeBaron 63245 -LeBeau 63601 -LeBel 65170 -LeBlanc 58017 -LeBow 63792 -LeBron 56452 -LeCompte 64657 -LeFevre 64905 -LeMans 61256 -LeMay 64657 -LePage 62917 -LeRoi 65452 -LeRoy 59424 -LeSabre 63991 -LeSportsac 64905 -Lea 50638 -Leach 56935 -Leaching 61472 -Leachman 58919 -Leacock 64201 -Lead 43258 -Leadbetter 63991 -Leaded 59491 -Leader 44059 -Leader's 59292 -Leaderboard 53196 -Leaderboards 58745 -Leaders 45262 -Leadership 41538 -Leading 44579 -Leadon 64201 -Leads 43692 -Leadtek 60405 -Leadville 61940 -Leaf 47839 -LeafGreen 63245 -Leaflet 56262 -Leaflets 57399 -Leafs 52913 -Leafy 60762 -League 38659 -League's 59101 -Leagues 49274 -Leah 51104 -Leah's 63419 -Leahy 59292 -Leak 53630 -Leakage 57831 -Leake 63792 -Leaked 56021 -Leakey 64423 -Leaking 62917 -Leaks 58577 -Leaky 60856 -Leal 61584 -Leama 61818 -Leamington 55398 -Lean 49999 -Leander 61584 -Leandra 61152 -Leandro 56791 -Leaner 65170 -Leaning 59630 -Leann 60238 -Leanna 63077 -Leanne 54770 -Leap 54188 -LeapFrog 60238 -Leapfrog 62196 -Leaphart 64657 -Leaping 63601 -Leaps 62917 -Leapster 64905 -Lear 56420 -Learjet 60580 -Learn 35608 -Learned 51680 -Learner 54321 -Learner's 53038 -Learners 54283 -Learning 38362 -Learnings 64905 -Learns 58365 -Learnt 64423 -Leary 58113 -Leas 63419 -Lease 46778 -Leased 57046 -Leasehold 57970 -Leases 55084 -Leash 58212 -Leashes 57199 -Leasing 48933 -Least 48887 -Leather 42032 -Leatherback 65452 -Leatherette 61940 -Leatherhead 59630 -Leatherheads 60952 -Leatherman 55738 -Leathers 60952 -Leatherwolf 61584 -Leatherwood 63245 -Leatherworking 55657 -Leave 39531 -Leavenworth 56356 -Leaver 64905 -Leavers 63991 -Leaves 48496 -Leaving 48487 -Leavitt 59491 -Leavitt's 63991 -Leavy 64905 -Leawood 62917 -Leb 64423 -Lebanese 52635 -Lebanon 44408 -Lebanon's 63077 -Lebedev 60078 -Lebel 65452 -Leben 55604 -Leber 62917 -Lebesgue 61051 -Leblanc 58979 -Lebovitz 64423 -Lebowski 61940 -Lebron 58212 -Lebrun 65452 -Lecce 61256 -Lech 60952 -Leche 63245 -Lechner 64657 -Lecithin 63419 -Leckey 63601 -Leclerc 61818 -Lecomte 65170 -Lect 61818 -Lecterns 63601 -Lectionary 63601 -Lectotype 61699 -Lecture 47603 -Lecturer 52472 -Lecturers 59424 -Lectures 49867 -Lectureship 64201 -Led 49113 -Leda 62613 -Ledbetter 62196 -Ledbury 63792 -Lede 65452 -Leder 64905 -Lederberg 64423 -Lederer 60952 -Lederhosen 64201 -Lederle 65170 -Lederman 63991 -Ledesma 62331 -Ledford 60762 -Ledge 58365 -Ledger 51492 -Ledger's 60405 -Ledges 63601 -Ledphoot 64905 -Leduc 58688 -Ledyard 65170 -Lee 39617 -Lee's 52339 -LeeKirksey 63601 -LeeLee 65170 -Leeann 63601 -Leech 56585 -Leeched 61584 -Leecher 65452 -Leecher's 65170 -Leechers 54946 -Leechs 62469 -Leechvideo 63419 -Leed's 65170 -Leederville 64423 -Leeds 46165 -Leeghoofd 65170 -Leek 59101 -Leeks 63991 -Leela 59848 -Leelanau 60405 -Leelee 61940 -Leeman 63245 -Leen 62469 -Leena 61818 -Leenks 64201 -Leer 62331 -Leeroy 65452 -Lees 55934 -Leesburg 56110 -Leeson 63245 -Leesville 63991 -Leeuw 62762 -Leeuwen 62613 -Leeuwenhoek 65452 -Leeward 61152 -Lefebvre 62917 -Lefevre 64201 -Leff 64201 -Lefont 64423 -Left 42919 -Left's 60952 -LeftMargin 65452 -Leftfield 56420 -Leftism 64905 -Leftist 61699 -Lefton 64201 -Leftover 62331 -Leftovers 60405 -Leftward 65452 -Lefty 58577 -Leg 48300 -LegCo 63792 -Lega 65170 -Legacies 62066 -Legacy 46020 -Legal 35162 -LegalConnection 59774 -LegalTerms 55934 -LegalZoom 63601 -Legalise 65170 -Legalities 64201 -Legality 58860 -Legalization 64905 -Legalize 64423 -Legalized 65170 -Legally 55992 -Legalman 54727 -Legals 57609 -Legaspi 64657 -Legato 64201 -Legend 43565 -Legend's 64423 -Legenda 63792 -Legendary 51931 -Legendas 62196 -Legendia 61818 -Legendre 62331 -Legends 47420 -Leger 58470 -Legg 56452 -Legge 65452 -Legged 61699 -Leggett 60580 -Legging 62613 -Leggings 55934 -LeggoPoker 64905 -Leggy 64201 -Leghorn 60405 -Legian 64201 -Legion 50394 -Legionella 57741 -Legions 61362 -Legislation 47562 -Legislative 45987 -Legislator 58417 -Legislators 58262 -Legislature 49464 -Legislature's 64423 -Legislatures 63245 -Legit 55631 -Legitimacy 64905 -Legitimate 58113 -Legnahoory 64905 -Lego 49966 -Legolas 65452 -Legos 64423 -Legrand 64201 -Legs 50365 -Leguizamo 65452 -Legumes 64657 -Leh 61152 -Lehane 64201 -Lehi 64657 -Lehigh 49529 -Lehighton 65170 -Lehman 49802 -Lehman's 61051 -Lehmann 57653 -Lehn 65452 -Lehner 63991 -Lehr 64905 -Lehrer 59560 -Lehrman 64201 -Lehrstuhl 64423 -Lei 53241 -Leia 60580 -Leib 63601 -Leibniz 65170 -Leibovitz 61940 -Leibowitz 64201 -Leica 53301 -Leicester 48084 -Leicestershire 51590 -Leichhardt 60856 -Leiden 55202 -Leif 56935 -Leifer 63601 -Leigh 48970 -Leigh's 64201 -Leight 65170 -Leighton 52062 -Leila 57876 -Leilani 65170 -Leinart 64905 -Leinberger 65452 -Leinster 57609 -Leipzig 54380 -Leis 64423 -Leishmania 58632 -Leisure 42061 -Leitch 60952 -Leiter 59039 -Leiter's 63991 -Leith 58745 -Leitich 62469 -Leitner 64423 -Leitrim 57785 -Leitz 64905 -Lejeune 64423 -Lek 57160 -Lekhraj 63601 -Leki 62331 -Lekker 63245 -Lela 59164 -Leland 56972 -Lelia 64905 -Lelouch 61256 -Lely 65452 -Lem 64657 -Lemaire 64657 -Leman 63419 -Lemania 65452 -Lemans 61152 -Lemar 62613 -Lemay 62762 -Lemforder 62196 -Lemieux 59774 -Lemire 64657 -Lemke 64657 -Lemma 49651 -Lemmas 65452 -Lemme 61152 -Lemming 60580 -Lemming's 63792 -Lemmings 63419 -Lemmon 59357 -Lemmontree 64657 -Lemmy 64657 -Lemna 63991 -Lemnos 64905 -Lemon 48080 -Lemonade 55373 -Lemond 65452 -Lemondrop 64905 -Lemongrass 61818 -Lemons 58860 -Lemont 60856 -Lemony 60492 -Lemos 62469 -Lemp 63991 -Lempicka 63077 -Lempira 62613 -Lemur 63419 -Len 51996 -Lena 53729 -Lenard 64905 -Lenco 63601 -Lend 58860 -Lender 52085 -Lender's 62917 -Lenders 53729 -Lending 50185 -LendingTree 59848 -Lends 64201 -Lene 60078 -Lenexa 60952 -Leng 61362 -Lenght 61584 -Lengo 64905 -Length 45304 -Lengthening 64423 -Lengths 60580 -Lengua 65452 -Lenguaje 63601 -Lenhart 63077 -Lenin 59101 -Lenin's 63419 -Leningrad 58523 -Leniuchowo 61362 -Lenka 61940 -Lenmar 60405 -Lennar 62469 -Lennard 64905 -Lennart 61051 -Lennie 62196 -Lennon 52221 -Lennon's 62917 -Lennox 55423 -Lennoxtown 63991 -Lenny 53679 -Leno 55906 -Leno's 64905 -Lenoir 58065 -Lenora 62066 -Lenore 62066 -Lenovo 48440 -Lenovo's 62196 -Lenox 52062 -Lens 46443 -Lensbaby 61256 -Lense 61152 -Lenser 64423 -Lenses 47170 -Lensmaster 63419 -Lenssen 65170 -Lent 57358 -Lenten 61362 -Lenticular 62469 -Lentil 59039 -Lentils 62331 -Lentivirus 65170 -Lento 64905 -Lents 64657 -Lentz 60856 -Lenz 60321 -Lenz's 65170 -Leo 46757 -Leo's 56972 -LeoVince 63419 -Leominster 60000 -Leon 46837 -Leon's 63077 -LeonPayne 63792 -Leona 49873 -Leonard 47474 -Leonard's 62066 -Leonardo 51752 -Leonardo's 60762 -Leonards 59702 -Leonardtown 64423 -Leone 46032 -Leone's 65170 -Leonean 63601 -Leonel 62331 -Leong 58212 -Leongatha 64905 -Leonhard 63419 -Leoni 60321 -Leonid 58745 -Leonidas 61940 -Leonie 58919 -Leonor 62066 -Leonora 63601 -Leopard 48436 -Leopards 63419 -Leopold 55906 -Leopold's 64423 -Leopoldo 62613 -Leora 65452 -Leotards 63601 -Lepage 61362 -Lepidoptera 60157 -Lepore 61940 -Leppard 57970 -Leprechaun 60405 -Leprosy 59923 -Leptin 60238 -Leptospira 65452 -Ler 62331 -Lerch 65452 -Lerman 63419 -Lerner 57278 -Lernout 62469 -Leroy 53533 -Lerten 64423 -Lerten's 62917 -Les 44927 -Lesa 63601 -Lesage 65170 -Lesbian 44888 -Lesbians 53167 -Lesbo 62196 -Lesbos 64423 -Lescol 61152 -Lesezeichen 64657 -Lesh 64201 -Lesion 59923 -Lesions 57785 -Lesley 52584 -Leslie 47286 -Leslie's 60321 -Lesnar 61699 -Lesotho 46815 -Less 42970 -Lessard 64905 -Lessee 60670 -Lesser 54133 -Lessig 62917 -Lessing 63991 -Lesson 46282 -Lessons 45015 -Lessor 61256 -Lessors 64201 -Lest 59560 -Leste 60321 -Lester 51963 -Lester's 63991 -Leszek 64423 -Let 38954 -Let's 42950 -Leta 65452 -Letchworth 58065 -Leth 63792 -Lethaia 63792 -Lethal 54924 -Lethality 65170 -Lethargy 63245 -Lethbridge 52832 -Lethe 63245 -Lethon 60952 -Leticia 61256 -Letitia 64201 -Letizia 65170 -Leto 61362 -Letra 59774 -Letras 50299 -Lets 48464 -LetsSingIt 60157 -Letssingit 62762 -Lett 53882 -Letter 42869 -Letterbox 64657 -Letterhead 60952 -Letterheads 61584 -Lettering 55202 -Letterkenny 63991 -Letterman 52584 -Letterman's 63601 -Letterpress 61818 -Letters 41624 -Letting 52584 -Lettings 55060 -Lettre 63991 -Letts 63792 -Lettuce 58065 -Letty 62469 -Letzebuergesh 64905 -Letzte 62762 -Leu 54749 -LeuKalm 62613 -Leucine 62066 -Leuconostoc 63419 -Leukaemia 61051 -Leukemia 53882 -Leukoc 64657 -Leukocyte 59424 -Leukocytes 64657 -Leukotriene 64423 -Leumeta 64201 -Leung 56827 -Leupold 57970 -Leuven 57440 -Lev 55821 -Leva 64905 -Levande 64905 -Levant 61256 -Levante 61584 -Levaquin 60078 -Levee 62762 -Level 38728 -LevelStar 65170 -Leveling 54023 -Levelland 62066 -Levellers 64905 -Levelling 63792 -Levels 45251 -Leven 60405 -Levenger 62331 -Levenson 63601 -Leventhal 63792 -Lever 52571 -Leverage 56200 -Leveraged 60856 -Leverages 64201 -Leveraging 57199 -Levering 65452 -Leverkusen 62066 -Levers 56452 -Levert 65170 -Leveson 65452 -Levesque 63077 -Levi 52673 -Levi's 56687 -Leviathan 58523 -Levies 63077 -Levin 52472 -Levin's 65452 -Levine 51415 -Levine's 61472 -Levinson 59292 -Levis 60238 -Levit 63991 -Levitation 64423 -Leviticus 58162 -Leviton 59357 -Levitra 49834 -Levitt 56485 -Levittown 61818 -Levitz 65170 -Levon 59560 -Levonorgestrel 64423 -Levothyroxine 65170 -Levski 65170 -Levy 50081 -Levy's 61152 -Levys 63792 -Lew 55037 -Lewd 60856 -Lewes 56899 -Lewin 60238 -Lewinsky 62066 -Lewis 42462 -Lewis's 60405 -Lewisburg 63601 -Lewisham 55154 -Lewiston 59039 -Lewistown 61584 -Lewisville 59702 -Lewy 60580 -Lex 53729 -Lexa 62331 -Lexan 62613 -Lexapro 56935 -Lexar 56585 -Lexi 56972 -Lexibase 61699 -Lexical 61584 -Lexicon 55849 -Lexie 61051 -Lexington 48005 -Lexis 58802 -LexisNexis 53438 -Lexmark 49446 -Lexum 60321 -Lexus 47402 -Lexy 64201 -Ley 56485 -Leyden 61699 -Leydig 54946 -Leyes 65170 -Leyking 61818 -Leyla 65452 -Leyland 57046 -Leys 62613 -Leyte 60000 -Leyton 58162 -Leytonstone 63792 -Lezley 63245 -León 58470 -Lf 62331 -Lg 54399 -Lge 61818 -Lh 63792 -Lhasa 56420 -Lhd 62066 -Lhe 59630 -Lhuillier 63792 -Li 46266 -Li'l 61362 -Li's 61584 -LiCl 60580 -LiF 62469 -LiL 63601 -LiLo 65452 -LiMiTED 63245 -LiMo 63245 -LiNbO 63792 -Lia 57566 -Lia's 64657 -Liab 61256 -Liabilities 56262 -Liability 46531 -Liable 65452 -Liaise 62613 -Liaising 64423 -Liaison 51752 -Liaisons 61051 -Liam 51396 -Liam's 64423 -Lian 58017 -Liana 62331 -Liane 62196 -Liang 55107 -Lianne 61818 -Liao 56140 -Liaoning 59560 -Liar 57970 -Liars 55821 -Liason 64657 -Lib 53241 -Liban 64905 -Libary 65452 -Libbey 59039 -Libby 53423 -Libby's 62331 -Libel 62917 -Liber 61362 -Libera 63991 -Liberal 46666 -Liberalisation 62613 -Liberalism 59702 -Liberalization 60321 -Liberally 63601 -Liberals 53796 -Liberate 63419 -Liberated 61818 -Liberating 65452 -Liberation 51293 -Liberator 63601 -Liberec 65452 -Liberia 46711 -Liberia's 65170 -Liberian 57482 -Liberman 65452 -Libertad 64423 -Libertadores 61584 -Libertarian 55474 -Libertarians 60762 -Libertas 61699 -Liberte 52899 -Liberties 55934 -Libertine 63077 -Libertines 64201 -Libertini 64657 -Liberty 43729 -Liberty's 59774 -Libertyville 60157 -Libido 59848 -Libor 62066 -Libr 59424 -Libra 52280 -Librairie 63077 -Libram 61472 -Librarian 50033 -Librarian's 63077 -Librarians 43957 -Libraries 43168 -Library 33333 -Library's 55821 -LibraryThing 55500 -Libre 56862 -Libri 64423 -Libris 59227 -Libro 62469 -Libros 51473 -Libs 61699 -Libya 47500 -Libya's 64423 -Libyan 52268 -Lic 62469 -Licance 63991 -Lice 54114 -Licence 49388 -Licenced 62196 -Licences 55423 -License 39628 -Licensed 46514 -Licensee 55299 -Licensee's 63077 -Licensees 59491 -Licenses 47668 -Licensing 43765 -Licensor 62613 -Licensure 53952 -Liceul 65170 -Licey 65452 -Lich 52085 -Lichen 62917 -Lichfield 57199 -Licht 62331 -Lichtenstein 60405 -Lick 54499 -Licker 63077 -Lickin 63991 -Licking 56200 -Licks 58632 -Licorice 59424 -Lid 55178 -Lida 62331 -Lidar 63419 -Lidcombe 62917 -Liddell 57831 -Liddle 64657 -Liddy 61940 -LiddyRules 65452 -Lidell 63792 -Lidge 62917 -Lidia 61362 -Lidl 64423 -Lido 56585 -Lidocaine 63245 -Lids 57524 -Lie 50136 -Lieb 62196 -Liebe 57358 -Lieber 61584 -Lieberman 53779 -Liebermann 63419 -Lieberson 64423 -Liebert 64423 -Liebherr 60580 -Liebman 63991 -Liechtenstein 46634 -Lied 55992 -Lieder 62469 -Liege 61362 -Lien 54341 -Lienert 60321 -Liens 56687 -Lies 48614 -Lietuva 64905 -Lietuviškai 60856 -Lieu 61152 -Lieutenant 42218 -Liev 62917 -Lieven 63792 -Liew 64423 -Life 34335 -Life's 52534 -LifeART 61818 -LifeBook 54419 -LifeCam 62196 -LifeCell 62469 -LifeCell's 65170 -LifeDrive 65452 -LifeForm 63077 -LifePath 64905 -LifeSharers 65170 -LifeStages 65452 -LifeStyle 58262 -LifeWay 57741 -LifeWork 65452 -Lifeboat 60321 -Lifeboatman 60405 -Lifebook 63419 -Lifecasting 65452 -Lifecycle 53882 -Lifecycles 64201 -Lifeguard 61362 -Lifehacker 56388 -LifehackerShopping 63792 -Lifehouse 59560 -Lifeless 63601 -Lifelike 63419 -Lifeline 54749 -Lifelines 61472 -Lifelong 54170 -Lifer 64201 -Liferay 63601 -Lifes 63077 -Lifesavers 64201 -Lifesaving 62762 -Lifesciences 61362 -Lifeson 63991 -Lifespan 60000 -Lifestages 63991 -Lifestream 63419 -Lifestyle 40693 -Lifestyles 51211 -Lifetime 48084 -Lifetimes 63601 -Lifeventure 60157 -Lifewise 62917 -Liffey 63792 -Lifshitz 65170 -Lift 47839 -LiftMaster 60157 -Lifted 60952 -Lifter 61362 -Lifters 64201 -Lifting 52351 -Liftmaster 63077 -Liftoff 62331 -Lifts 53081 -Lig 62917 -Liga 53970 -Ligaen 64423 -Ligament 63245 -Ligand 58577 -Ligands 62196 -Ligation 64201 -Ligeti 63077 -Liggett 63601 -Light 38988 -Light's 62917 -LightBridge 63419 -LightEffects 64905 -LightInTheBox 62917 -LightScribe 60238 -LightTPD 53952 -Lightbody 64905 -Lightbox 46922 -Lightboxes 58212 -Lightbringer 59101 -Lightbulb 64657 -Lightbulbs 64201 -Lighted 55738 -Lighten 62469 -Lightenex 64201 -Lightening 57696 -Lighter 53138 -Lighters 58417 -Lightfoot 61152 -Lighthouse 50774 -Lighthouses 57440 -Lighting 41566 -Lightings 63792 -Lightly 56756 -Lightner 62613 -Lightning 47883 -Lightning's 59292 -Lightninghoof 60580 -Lightroom 55448 -Lights 43656 -LightsLED 63245 -Lightsaber 58262 -Lightscribe 62917 -Lightspeed 58417 -Lighttpd 56200 -Lightwater 63245 -Lightwave 54133 -Lightweight 51069 -Lightx 63601 -Lightyear 61362 -Ligier 62469 -Lignan 64905 -Ligne 62613 -Lignée 64423 -Ligonier 63077 -Ligue 56200 -Liguria 60492 -Ligurian 64657 -Lijiang 64657 -Lijit 59227 -Like 37158 -Liked 50249 -Likelihood 58632 -Likely 53597 -Likeness 61472 -Likert 63077 -Likes 52546 -Likewise 55793 -Liki 62917 -Liking 63077 -Likud 61818 -Lil 45428 -Lil's 65452 -Lila 56687 -Lilac 56388 -Lilangeni 63419 -Lilburn 62613 -Lileks 62917 -Liles 63419 -Lili 58802 -Lilia 61152 -Lilian 58470 -Liliana 60670 -Lilies 57482 -Lilisto 64657 -Lilith 62066 -Lilium 62917 -Lilja 65170 -Lilla 61818 -Lillard 64201 -Lille 55992 -Lilley 63077 -Lilli 65170 -Lillia 63419 -Lillian 54170 -Lillie 59560 -Lillies 64423 -Lilliput 63419 -Lilly 51550 -Lilly's 62613 -LillyLikes 65170 -Lilo 61699 -Lily 49113 -Lily's 62469 -Lilydale 65170 -Lilypie 62196 -Lim 53182 -Lima 50081 -Liman 64905 -Limassol 63245 -Limavady 64657 -Limb 56200 -Limba 65452 -Limbaugh 54706 -Limbo 59357 -Limbs 62196 -Limburg 62196 -Limca 64905 -Lime 51026 -LimeWire 55711 -Limehouse 62917 -Limekiln 65452 -Limelight 60000 -Limerick 53167 -Limes 63419 -Limestone 54706 -Limeum 62613 -Limewire 58065 -Liming 65170 -Limit 45655 -LimitRevisions 61584 -LimitUpdatedBy 61472 -Limitation 55684 -Limitations 52913 -Limited 39091 -Limited's 61152 -Limiter 61256 -Limiting 55934 -Limitless 63419 -Limits 41868 -Limnology 65452 -Limo 55526 -Limoges 60492 -Limon 59774 -Limos 58979 -Limousin 62613 -Limousine 52040 -Limousines 55448 -Limp 56827 -Limpopo 58745 -Limulus 64423 -Lin 49726 -Lina 58417 -Linacre 64423 -Linares 61362 -Linas 59923 -Linc 61584 -Linciau 63601 -Linco 64905 -Lincoln 42652 -Lincoln's 56262 -Lincolnshire 49452 -Lincolnwood 61152 -Lincs 61472 -Lind 57831 -Linda 43821 -Linda's 60670 -Lindab 63419 -Lindale 65452 -Lindam 64657 -Lindauer 65170 -Lindberg 58688 -Lindbergh 52141 -Lindblad 52221 -Linde 58632 -Lindell 64201 -Lindeman 63792 -Lindemann 65452 -Lindemans 64201 -Linden 51580 -Lindenberg 63419 -Lindenhurst 62613 -Lindenwood 64657 -Linder 59848 -Linders 62331 -Lindgren 61584 -Lindholm 63991 -Lindisfarne 63792 -Lindley 57318 -Lindner 62613 -Lindo 61818 -Lindon 61051 -Lindos 64423 -Lindquist 62469 -Lindqvist 65452 -Lindsay 45833 -Lindsay's 64201 -Lindsey 51492 -Lindstrom 59357 -Lindt 62469 -Lindvall 65452 -Lindy 57696 -Line 38656 -Line's 61051 -Linea 58017 -Lineage 51762 -Linear 47044 -Linearity 61051 -Linearized 65452 -Linebacker 59357 -Linebackers 63792 -Linecard 63077 -Lined 54946 -Linehan 62331 -Lineker 59923 -Lineman 64201 -Linen 52459 -Linens 51920 -Liner 52509 -Liners 54059 -Lines 41660 -Lineup 53286 -Lineups 65170 -Linfield 62762 -Linford 64657 -Ling 53549 -Lingala 61362 -Linge 65452 -Linger 60492 -Lingerie 46640 -Lingering 63601 -Lingfield 60157 -Lingle 64423 -Lingo 58417 -Lingua 63419 -Lingual 65452 -Linguine 64423 -Linguist 65170 -Linguistic 54560 -Linguistics 50143 -Linguists 64657 -Lingus 52423 -LingvoSoft 62196 -Linh 61699 -Lining 56356 -Linings 63245 -Link 34823 -Link's 61362 -LinkBack 45345 -LinkBacks 49296 -LinkEmailShareTwitter 54283 -LinkOut 39765 -LinkShare 63601 -LinkaGoGo 61362 -Linkage 54540 -Linkages 60492 -Linkagogo 64201 -Linkarena 57831 -Linked 48866 -LinkedIn 44480 -Linkedin 56618 -Linker 60492 -Linkers 65170 -Linkin 51000 -Linking 42759 -Linklater 63991 -Linkleri 60321 -Linkpendium 65170 -Linkroll 64657 -Links 24448 -LinksList 60856 -LinksMarker 64201 -Linksys 51349 -Linky 64657 -Linköping 60157 -Linley 60762 -Linlithgow 64423 -Linn 54519 -Linnea 62066 -Linney 63419 -Lino 59774 -Linoleic 63792 -Linoleum 60321 -Linon 64201 -Linotype 61256 -Linq 61818 -Lins 62613 -Linseed 63077 -Linsey 64423 -Lint 58113 -Linthicum 62917 -Linton 57696 -Linu 60157 -Linus 56756 -Linux 39764 -LinuxInsider 60952 -LinuxWorld 57482 -Linville 63601 -Linwood 58860 -Linx 62762 -Linz 59424 -Linzi 64905 -Lion 47622 -Lion's 59630 -Lionbridge 62196 -Lionel 52280 -Lioness 63991 -Lionhead 62613 -Lionheart 59357 -Lions 48174 -Lionsgate 58860 -LionsgateShop 62917 -Lior 63991 -Liotta 63991 -Liouville 63991 -Lip 49405 -LipSense 61699 -Lipase 65170 -Lipford 64657 -Lipid 51600 -Lipids 55684 -Lipitor 48677 -Lipman 60238 -Lipo 63601 -Lipofectamine 63991 -Lipofectin 65452 -Lipoic 61256 -Lipoid 65170 -Lipopolysaccharide 63792 -Lipoprotein 59424 -Lipoproteins 63991 -Liposomes 62613 -Liposuction 57318 -Lipper 60157 -Lippert 64905 -Lippi 64905 -Lippincott 50242 -Lippman 62196 -Lips 50848 -Lipschitz 60856 -Lipscomb 60762 -Lipsey 61584 -Lipson 61818 -Lipstick 51985 -Lipsy 64423 -Lipton 57923 -Liquefaction 65452 -Liquefied 61152 -Liqueur 59227 -Liqueurs 64201 -Liquid 45424 -LiquidX 64423 -Liquidation 57609 -Liquidator 64657 -Liquidators 61940 -Liquide 63792 -Liquidity 54946 -Liquids 58523 -Liquor 49488 -Liquorice 65452 -Liquors 58113 -Lira 55906 -Lire 64201 -Lirias 58745 -Lirik 61940 -Lis 56791 -Lisa 43720 -Lisa's 59357 -LisaNova 54792 -Lisbeth 63991 -Lisboa 59039 -Lisbon 48590 -Lisburn 57046 -Lise 60078 -Lisi 61152 -Lisinopril 64423 -Liskeard 63245 -Lisle 58470 -Lismore 57318 -Lisp 60238 -Liss 59630 -Lissa 62613 -Lissajous 63077 -Lissette 65170 -List 31743 -ListInDbCatalog 61584 -ListMotor 64905 -ListRemove 60000 -ListSep 60238 -ListView 61584 -ListViewItem 62762 -Lista 58688 -Listas 65170 -Liste 58065 -Listed 42881 -Listen 40923 -Listened 59491 -Listener 48399 -Listeners 50522 -Listening 47160 -Listens 60670 -Lister 53438 -Listeria 57653 -Listers 60078 -Listes 61940 -Listing 38872 -Listings 38152 -Liston 63601 -Listowel 59292 -Lists 39854 -Listserv 58470 -Liszt 61051 -Lit 53138 -Lita 60000 -Litas 60762 -Litchfield 55526 -Lite 46637 -LiteOn 62917 -Litem 65452 -Liteon 62196 -Liter 54059 -Literacy 48314 -Literal 58919 -Literally 59630 -Literals 64201 -Literary 47103 -Literate 63419 -Literati 62762 -Literatur 64905 -Literature 42861 -Literatures 60238 -Literotica 63601 -Liters 64423 -Lites 60856 -Litespeed 63991 -Lithgow 59560 -Lithia 62331 -Lithium 51700 -Litho 62762 -Lithograph 62469 -Lithographer 54727 -Lithographic 63419 -Lithographs 64201 -Lithography 59560 -Lithonia 61584 -Lithopolis 61818 -Lithuania 45155 -Lithuania's 63792 -Lithuanian 50957 -Litigation 47424 -Lititz 65452 -Litman 65170 -Litmus 62613 -Lito 63792 -Litrato 60856 -Litre 56756 -Litres 58632 -Litt 64423 -Littelfuse 62469 -Litter 52791 -Litterarum 63792 -Litters 64423 -Little 38767 -Little's 62196 -LittleBigPlanet 52818 -Littlefield 60078 -Littlehampton 61699 -Littlejohn 63792 -Littles 65170 -Littlest 60078 -Littleton 54706 -Littlewood 63077 -Littlewoods 60405 -Littman 63991 -Litton 59848 -Littoral 63792 -Liturgical 58065 -Liturgy 57199 -Litvack 64657 -Litvinenko 64657 -Litwin 64657 -Liu 48296 -Liukin 61940 -Liv 55604 -Livable 62331 -Live 35202 -Live's 63245 -LiveCD 60580 -LiveCams 64905 -LiveCycle 60492 -LiveDaily 51312 -LiveDeal 62613 -LiveJournal 53095 -LivePerson 58802 -LiveShow 63792 -LiveState 58017 -LiveUpdate 60078 -LiveVideo 56972 -LiveWire 58417 -Liveaboard 63792 -Liveaboards 65170 -Livebearers 63792 -Liveblog 61152 -Liveblogging 63991 -Lived 56485 -Livejournal 61051 -Liveleak 65452 -Livelihood 61362 -Livelihoods 58365 -Livelink 63077 -Lively 53346 -Liveperson 59101 -Liver 47964 -Livermore 53746 -Livermore's 65170 -Liverpool 44282 -Liverpool's 58632 -Livers 62331 -Liversedge 65452 -Livery 60952 -Lives 48459 -Livesets 63792 -Livesey 64201 -Livestation 63245 -Livestock 50409 -Livewire 64423 -Livi 65170 -Livia 64657 -Livin 61699 -Living 37331 -Livingroom 64423 -Livingston 52074 -Livingstone 56935 -Liviu 61362 -Livni 57653 -Livonia 58745 -Livorno 64905 -Livre 58979 -Livres 61152 -Livro 64657 -Livy 62331 -Lixin 64423 -Liyang 62613 -Liz 47611 -Liz's 62066 -Liza 53988 -Lizard 54479 -Lizards 59227 -Lizella 64657 -Lizz 63077 -Lizzard 65452 -Lizzi 65170 -Lizzie 54749 -Lizzy 55552 -Liège 61152 -Ljubi 64905 -Ljubljana 56485 -Ljungberg 62613 -Lk 59039 -Ll 59491 -Lladro 58365 -Llama 59560 -Llamas 61584 -Llandaff 65452 -Llandrindod 63601 -Llandudno 59292 -Llandygai 64201 -Llane 60078 -Llanelli 60078 -Llanes 61818 -Llangollen 61362 -Llano 61584 -Llantrisant 62469 -Llanystumdwy 65452 -Llc 52339 -Lledo 64905 -Lleida 65170 -Lleol 63991 -Llewellyn 57278 -Llewelyn 63991 -Lleyton 64905 -Lloegr 63792 -Lloret 62469 -Lloyd 47592 -Lloyd's 56827 -Lloydminster 63792 -Lloyds 53695 -Llp 61152 -Llyn 63077 -Lm 64905 -Ln 50710 -Lng 64201 -Lo 48482 -LoCo 51550 -LoHud 65170 -LoL 62762 -LoVe 63077 -LoVeLy 65170 -Loa 61362 -Loach 65452 -Load 45697 -Loaded 52447 -Loader 53796 -Loaders 58162 -Loading 42839 -Loadmaster 64905 -Loads 53226 -Loaf 57876 -Loafer 63077 -Loafers 59560 -Loafing 60952 -Loam 64657 -Loan 41371 -Loans 40078 -LoansSearch 64905 -Loathing 59560 -Loaves 63792 -Lobatto 62196 -Lobby 51762 -Lobbying 56485 -Lobbyist 58417 -Lobbyists 58919 -Lobe 62762 -Lobel 64905 -Lobelville 62762 -Lobia 63792 -Loblaw 64423 -Lobo 57318 -Lobos 56618 -Lobster 51846 -Loc 57696 -Loca 61699 -Local 33722 -LocalID 64905 -LocalJobSearch 60856 -LocalTime 65452 -Locale 60405 -Locales 61940 -Localeze 51660 -Localisation 49173 -Localities 58065 -Locality 54813 -Localization 53485 -Localized 57970 -Locallectual 63991 -Locally 53196 -Locals 56827 -Locanda 63792 -Locarno 63792 -Locate 48363 -LocateRow 63419 -Located 45486 -Locatelli 64905 -Locating 56452 -Location 36838 -Locational 65170 -Locations 41817 -Locator 46136 -Locators 60078 -Loch 52018 -Lochaber 59848 -Lochearnhead 65452 -Lochner 65452 -Loci 61584 -Lock 46821 -LockHolders 57831 -LockProvisional 57482 -Lockable 62917 -Lockbox 64905 -Lockdown 53899 -Locke 56080 -Locke's 62762 -Locked 50372 -Locker 51700 -Lockerbie 61051 -Lockergnome 60580 -Lockers 55711 -Locket 61940 -Lockets 63245 -Lockett 63792 -Lockhart 57566 -Lockheed 53597 -Locking 52872 -Locklear 60321 -Lockman 63077 -Lockout 61699 -Lockpick 64657 -Lockport 60000 -Lockridge 65452 -Locks 49939 -Locksley 65452 -Locksmith 47668 -Locksmiths 55992 -Lockwood 57696 -Lockyer 60405 -Loco 55793 -LocoRoco 62331 -Locomia 62917 -Locomotion 60952 -Locomotive 59039 -Locomotives 65170 -Locomotor 64657 -Locos 63991 -Loctite 60856 -Locum 60670 -Locus 55992 -Locust 52559 -Locusts 63245 -Loddon 61472 -Lode 60238 -Loder 58313 -Lodge 44581 -Lodged 65452 -Lodger 61472 -Lodges 53153 -Lodging 46543 -Lodgings 62762 -Lodhi 64201 -Lodi 57160 -Lodo 60238 -Lodz 64201 -Loeb 57482 -Loeffler 62469 -Loew 62917 -Loew's 62469 -Loewe 62917 -Loewen 60238 -Loews 57122 -Lofgren 63077 -Loft 49113 -Lofton 63419 -Lofts 55226 -Loftus 60321 -Lofty 59774 -Log 33732 -LogEc 63792 -LogIn 64423 -LogMeIn 62331 -Logan 47485 -Logan's 61940 -Logansport 60078 -Loganville 62196 -Logarithmic 64423 -Logbook 59357 -Logfile 60492 -Logged 44248 -Logger 55578 -Loggerhead 63077 -Loggers 64905 -Loggia 65452 -Logging 51867 -Loggins 63245 -Logic 46751 -Logica 62066 -Logical 53882 -Logics 61818 -Logility 65170 -Login 33222 -Logins 62331 -Logistic 56551 -Logistical 62066 -Logistics 45501 -Logit 64905 -Logitech 47927 -Logitech's 65170 -Logix 64657 -Logo 39435 -Logon 54924 -Logos 49979 -Logout 46058 -Logs 51148 -Logsdon 63991 -Logue 62331 -Logynon 60238 -Loh 59357 -Lohan 48562 -Lohan's 58688 -Lohman 65452 -Lohmann 64905 -Lohner 63419 -Lohr 63792 -Loi 60321 -Loin 62613 -Loire 58919 -Lois 51650 -Loita 65452 -Loja 64905 -Lojban 62613 -Lok 56170 -Lokal 63991 -Lokam 62469 -Loken 64657 -Loki 57566 -Lokku 65452 -Loko 64657 -Loksatta 62196 -Lol 53153 -Lola 50898 -Lola's 64423 -Loli 61584 -Lolita 55084 -Lolitas 64657 -Lollapalooza 61256 -Lolli 54622 -Lollipop 53454 -Lollipops 64657 -Lolly 61256 -Lollywood 61699 -Lolo 60157 -Loma 54264 -Lomas 61699 -Lomax 60580 -Lomb 59923 -Lombard 54380 -Lombardi 56356 -Lombardia 64423 -Lombardo 60762 -Lombardy 61362 -Lombok 62469 -Lomein 64423 -Lomi 64423 -Lomita 63792 -Lomo 63077 -Lomond 58802 -Lomonosov 64423 -Lompoc 62196 -Lon 55500 -LonWorks 64201 -Lond 64423 -Londen 53138 -London 35086 -London's 48653 -LondonMonthly's 65452 -Londonderry 56356 -Londoner 62196 -Londoner's 64905 -Londoners 59774 -Londres 61256 -Lone 48781 -Loneliness 58979 -Lonely 49302 -LonelyPlanet 60856 -Loner 64423 -Lonesome 57399 -Lonestar 60000 -Lonewolf 65170 -Loney 61584 -Long 38283 -Long's 62613 -LongRecordDisplay 59923 -Longaberger 60078 -Longacre 64905 -Longboard 60952 -Longboards 62331 -Longboat 64657 -Longbow 63077 -Longbridge 63991 -Longchamp 58417 -Longdendale 62196 -Longer 49992 -Longest 54188 -Longevity 56293 -Longfellow 59774 -Longfield 64201 -Longford 56356 -Longgang 61256 -Longhair 60670 -Longhorn 57440 -Longhorns 54857 -Longines 60856 -Longing 62196 -Longitude 55154 -Longitudinal 54360 -Longleaf 64905 -Longley 60405 -Longline 63991 -Longman 58017 -Longmeadow 63077 -Longmont 56293 -Longneck 64905 -Longo 60405 -Longoria 54005 -Longoria's 64657 -Longparish 62762 -Longreach 62762 -Longs 58802 -Longshore 62469 -Longshots 63245 -Longsleeve 63991 -Longtime 59292 -Longueuil 65452 -Longview 58017 -Longwell 65452 -Longwood 56935 -Loni 61940 -Lonnie 55526 -Lonny 64201 -Lonoke 63601 -Lonsdale 56262 -Loo 60580 -Looby 61940 -Looe 63991 -Look 35540 -LookSmart 59923 -LookTorrent 58313 -Lookalikes 63991 -Looked 56356 -Looker 64201 -Lookers 62762 -Lookin 59039 -Looking 40214 -Lookout 55060 -Looks 45622 -Looksmart 65452 -Lookup 45875 -Lookups 62917 -Looky 64657 -Loom 58632 -Looming 62331 -Loomis 59227 -Looms 57696 -Loon 57741 -Looney 53746 -Loong 62469 -Loonie 60321 -Loop 47041 -LoopNet 54643 -Looper 63601 -Loopholes 61940 -Looping 60952 -Loops 54946 -Loopy 59164 -Loos 61051 -Loose 49966 -Loosely 61256 -Loosen 62917 -Loosening 65170 -Loosing 63792 -Loot 57009 -Looted 62331 -Looting 63077 -Loox 61472 -Lop 63792 -Lope 64423 -Lopes 59702 -Lopez 47717 -Lopez's 63245 -Lops 61699 -Lor 63792 -Lora 57923 -Lorain 58688 -Loraine 63991 -Loran 65452 -Loranthus 60952 -Lorazepam 58017 -Lorber 65452 -Lorca 63601 -Lord 41838 -Lord's 54096 -LordOfWar 64423 -Lordi 62066 -Lords 50766 -Lordship 64201 -Lore 52315 -Loreal 59292 -Lorebook 63792 -Loreen 61152 -Loreena 63419 -Lorelei 61472 -Lorelle 64201 -Lorem 54399 -Loren 55084 -Lorena 58523 -Lorentz 56827 -Lorentzian 60321 -Lorenz 55934 -Lorenz's 61584 -Lorenzen 65452 -Lorenzo 51846 -Loreto 62917 -Loretta 54924 -Loretto 65170 -Lorex 63245 -Lori 49246 -Lori's 62196 -Lorie 60492 -Lorient 62469 -Lorik 64657 -Lorimer 64201 -Lorin 61152 -Loring 61584 -Lorinser 65170 -Loris 60492 -Lorman 63991 -Lorna 55711 -Lorne 57358 -Loronix 64905 -Lorraine 51741 -Lorre 65170 -Lorri 61699 -Lorrie 60580 -Lorry 60078 -Lortab 58860 -Lorton 63792 -Lorwyn 62762 -Lory 65170 -Los 37001 -Losartan 62917 -Lose 46909 -Losec 60762 -Loser 54643 -Losers 57238 -Loses 53779 -Losi 61472 -Losier 65452 -Losing 50906 -Loss 42489 -Losses 54170 -Lossless 59424 -Lossy 62469 -Lost 40751 -Lostpedia 65170 -Lostprophets 62066 -Lot 43905 -Lot's 63991 -LotRO 64423 -Lotfi 64657 -Lothar 58162 -Lothian 53286 -Lothians 62196 -Loti 63419 -Lotion 52597 -Lotions 57009 -Lotito 64657 -Lotka's 65452 -Lots 46199 -Lotsa 63601 -Lott 57696 -Lotta 60078 -Lotte 60670 -Lotteries 55202 -Lottery 45676 -Lottery's 64657 -Lotti 61362 -Lottie 62196 -Lotto 52496 -Lotus 45203 -LotusScript 49382 -Lotz 63792 -Lou 48292 -Lou's 61152 -Louboutin 55906 -Loud 52661 -Louder 60000 -Loudness 62613 -Loudon 58919 -Loudoun 54992 -Loudspeaker 61051 -Loudspeakers 58577 -Lough 58919 -Loughborough 55274 -Loughe 64905 -Lougheed 63077 -Loughlin 62762 -Loughrey 61584 -Loughton 64657 -Louie 54770 -Louie's 61699 -Louis 41035 -Louisa 55299 -Louise 46735 -Louise's 63419 -Louisiana 42134 -Louisiana's 62917 -Louisiane 63601 -Louisville 47180 -Louisville's 64905 -LouisvilleLip 63077 -Louk 63792 -Lounge 42478 -Lounger 61584 -Lounges 53613 -Loungewear 63991 -Lounging 65452 -Loup 64905 -Lourdes 55552 -Loureiro 64905 -Lourenço 64657 -Lousiana 65452 -Lousy 62917 -Louth 56140 -Louvain 65170 -Louver 65170 -Louvre 56140 -Lov 62066 -Lovable 64657 -Lovastatin 62196 -Lovato 53316 -Love 36290 -Love's 56827 -LoveHoney 61152 -LoveToKnow 60078 -Lovebox 63601 -Lovebug 61818 -Lovecraft 61256 -Loved 49274 -Lovee 64905 -Lovegrove 63419 -Lovejoy 60670 -Lovelace 60580 -Loveland 55178 -Loveless 59101 -Loveline 64423 -Lovelineshows 63601 -Lovell 55877 -Lovells 63792 -Lovely 49429 -Lovemaking 65170 -Lover 50957 -Lover's 58113 -Loverblush 63245 -Loverboy 65170 -Lovers 49359 -Loves 48143 -Loveseat 63601 -Loveseats 62917 -Lovesong 64423 -Lovestruck 65452 -Lovett 59560 -Lovey 65452 -Loveys 64905 -Lovin 58632 -Lovina 63792 -Loving 50840 -Lovo 64905 -Low 38337 -Low's 64905 -LowPriceShopper 64423 -Lowa 65170 -Lowcountry 63991 -Lowdown 59491 -Lowe 50576 -Lowe's 52164 -Lowell 51026 -Lowell's 63792 -Lowen 64905 -Lowenberg 65170 -Lowenstein 59630 -Lowepro 56652 -Lower 43541 -Lowercase 65452 -Lowered 63991 -Lowering 56356 -Lowers 54924 -Lowery 58212 -Lowes 56652 -Lowest 43930 -Lowestoft 59702 -Lowfat 65452 -Lowland 60000 -Lowlands 62066 -Lowlife 63991 -Lowman 64905 -Lowndes 60157 -Lowongan 65170 -Lowrance 59491 -Lowrey 65452 -Lowrider 58470 -Lowrie 65452 -Lowry 55178 -Lows 52752 -Lowy 64905 -Lox 59560 -Loxton 61818 -Loy 60000 -Loyal 54188 -Loyalhanna 55963 -Loyalist 64201 -Loyalty 53597 -Loyd 60670 -Loyola 53286 -Loz 64657 -Lozano 58860 -Lozenges 62762 -Lp 60078 -Ls 62196 -Lt 55348 -Ltd 38318 -Ltd's 52886 -Lu 51453 -LuLu 62762 -LuPone 61940 -Lua 59774 -Luachra 64201 -Luan 63792 -Luana 62613 -Luang 64423 -Luangwa 63792 -Luann 65170 -Luanne 63601 -Luau 57876 -Luba 63792 -Lubbock 54749 -Lube 53423 -Lubes 60238 -Lubicz 62066 -Lubin 61256 -Lublin 61940 -Lubomir 64657 -Lubricant 55323 -Lubricants 54226 -Lubricated 65170 -Lubricating 63991 -Lubrication 55793 -Luby 65452 -Luc 54170 -Luca 52996 -Lucan 61699 -Lucario 62762 -Lucas 47702 -LucasArts 61152 -Lucasfilm 62613 -Lucasol 63419 -Lucca 60492 -Lucci 64657 -Luce 57970 -Lucene 61699 -Lucent 55084 -Lucent's 64657 -Lucerne 57084 -Lucero 61472 -Lucey 62469 -Lucha 60580 -Luci 61940 -Lucia 46022 -Lucian 57785 -Luciana 59292 -Lucianne 65170 -Luciano 55877 -Lucid 58745 -Lucida 59923 -Lucidity 65170 -Lucie 53038 -Lucien 57278 -Lucifer 58065 -Luciferase 63077 -Lucile 61699 -Lucille 56356 -Lucinda 55107 -Lucio 59774 -Lucire 64905 -Lucite 64423 -Lucius 58065 -Luck 50213 -Luckey 62762 -Luckie 64905 -Luckiest 61472 -Luckily 55037 -Lucknow 53813 -Luckovich 65170 -Lucky 45228 -Lucrative 63792 -Lucretia 64657 -Lucy 46906 -Lucy's 59923 -Lud 60952 -Luda 64657 -Ludacris 54151 -Ludhiana 55202 -Ludington 64201 -Ludlow 56021 -Ludlum's 59848 -Ludmila 64905 -Ludo 62469 -Ludovic 59848 -Ludovico 62762 -Ludwig 52609 -Lue 64423 -Luella 61584 -Luff 62917 -Luffy 64423 -Lufkin 61940 -Luft 61818 -Lufthansa 49190 -Luftwaffe 62469 -Lug 60952 -Lugano 61818 -Lugar 61818 -Luge 63601 -Luger 62762 -Luggage 46569 -Lughat 64905 -Lughnasa 65170 -Lugo 60580 -Lugol's 63601 -Lui 61051 -Luigi 54245 -Luigi's 65452 -Luis 47406 -Luisa 57566 -Luise 65170 -Luister 56827 -Luiz 56200 -Lujan 64201 -Luk 63077 -Luka 58523 -Lukas 56585 -Lukasiewicz 64905 -Lukasz 63245 -Luke 46480 -Luke's 54946 -Lukes 61152 -Lula 58632 -Luleå 63077 -Lullabies 63792 -Lullaby 54706 -Lullabye 65452 -Lulu 54727 -Lulworth 63077 -Luly 65170 -Lum 60238 -Luma 63792 -Lumar 63792 -Lumbar 56791 -Lumber 51340 -Lumberjack 62917 -Lumberjacks 64657 -Lumberton 61940 -Lumby 65170 -Lumbye 63419 -Lumen 61051 -Lumens 56721 -Lumet 65452 -Lumiere 61256 -Lumina 61584 -Luminance 62066 -Luminaries 60856 -Luminary 64201 -Lumines 65170 -Luminescence 60670 -Luminescent 63601 -Luminosity 63792 -Luminous 58113 -Luminox 64905 -Lumix 54879 -Lumley 60000 -Lumlux 65452 -Lummi 64905 -Lump 58688 -Lumpkin 61362 -Lumps 64201 -Lumpur 53010 -Lumpy 61699 -Lumsden 61940 -Lumut 65170 -Lun 59702 -Luna 50150 -Luna's 65452 -Lunachicks 62066 -Lunacy 64657 -Lunar 52622 -Lunarpages 64201 -Lunatic 61584 -Lunatics 61940 -Lunch 45522 -Lunchbox 58313 -Lunchboxes 64657 -Luncheon 54170 -Lunches 59774 -Lunchtime 60157 -Lund 52399 -Lundberg 59101 -Lundgren 61818 -Lundin 65170 -Lunds 65452 -Lundstrom 63792 -Lundy 59630 -Lune 60762 -Lunenburg 61584 -Lunesta 65452 -Lung 47339 -Lungeing 65452 -Lungs 59227 -Luni 65170 -Lunia 62196 -Lunn 60670 -Lunsford 60078 -Lunt 62762 -Luo 56972 -Luong 61699 -Luoyang 65170 -Lup 64905 -Lupa 65170 -Lupe 55107 -Lupin 59630 -Lupine 62331 -Lupita 63419 -Lupo 59774 -Lupton 60321 -Lupus 55657 -Luque 64905 -Lurch 64657 -Lurching 65452 -Lure 54133 -Lures 54601 -Lurie 63419 -Luring 63991 -Lurk 60405 -Lurker 58365 -Lurking 57741 -Lurks 61818 -Lusaka 62917 -Luscious 57009 -Luscombe 65170 -Lush 55526 -LushTracks 62196 -Lushpix 55226 -Lusi 59774 -Lusitania 64657 -Lusk 60321 -Lussier 64657 -Lusso 63601 -Lust 54023 -Luster 60762 -Lustig 62917 -Lustre 60492 -Lustrous 64423 -Lusty 61818 -Lusztig 63792 -Lute 57440 -Lutein 64423 -Luteinizing 63245 -Luther 49330 -Luther's 63601 -Lutheran 49196 -Lutherans 62469 -Lutherville 63077 -Luthor 62762 -Luton 50081 -Luton's 65170 -Lutte 63245 -Lutterworth 64905 -Luttinger 63991 -Lutwyche 65452 -Lutz 56050 -Luu 65452 -Luv 49860 -Luvana 65452 -Luvox 64657 -Luvs 61051 -Lux 53729 -Luxe 54622 -Luxembourg 44876 -Luxembourgish 61818 -Luxemburg 60405 -LuxeoN 62917 -Luxeon 64201 -Luxist 56262 -Luxor 56899 -Luxuries 60238 -Luxurious 54581 -Luxuriously 65170 -Luxury 43539 -Luxx 64201 -Luz 54302 -Luzern 65170 -Luzerne 62613 -Luzernerhof 64657 -Luzon 62066 -Luís 62613 -Lv 59227 -Lviv 59774 -Lvivhost 61699 -Lvl 58365 -Lx 63792 -Ly 59491 -LyNz 63991 -Lyall 63792 -Lyapunov 58860 -Lyashchenko 65452 -Lybrand 64423 -Lycans 62917 -Lycantropii 65452 -Lyceum 60238 -Lycian 59292 -Lycoming 62331 -Lycopene 62469 -Lycopodium 64905 -Lycos 54835 -Lycra 57318 -Lydia 52559 -Lydian 63077 -Lydon 57923 -Lye 61256 -Lyell 60580 -Lyfe 60492 -Lyi 65452 -Lyin 64423 -Lying 56356 -Lykke 61699 -Lyla 65170 -Lyle 53182 -Lyles 64905 -Lym 62066 -Lyman 55849 -Lyme 52712 -Lymington 62917 -Lymm 65452 -Lymnaea 64423 -Lymph 57046 -Lymphatic 60157 -Lymphocyte 58802 -Lymphocytes 58688 -Lymphocytic 62762 -Lymphoid 62331 -Lymphoma 55348 -Lymphomas 64657 -Lyn 54879 -Lynbrook 64423 -Lynch 48801 -Lynch's 61051 -Lynchburg 58860 -Lynching 64905 -Lynchmeister 64423 -Lynda 53301 -Lynden 64905 -Lyndhurst 59774 -Lyndon 55154 -Lyndsay 64423 -Lyndsey 61256 -Lyne 60405 -Lynette 57566 -Lyng 63792 -Lynley 64905 -Lynn 45118 -Lynn's 62196 -Lynndale 64657 -Lynne 51303 -Lynnette 64423 -Lynnster 63245 -Lynnwood 59039 -Lynsay 64201 -Lynsey 62762 -Lynskey 63991 -Lynton 63601 -Lynwood 60762 -Lynx 54341 -Lynyrd 58688 -Lyon 50734 -Lyonnais 61152 -Lyons 51996 -Lyophilized 65452 -Lyra 59227 -Lyric 53316 -LyricWiki 59560 -Lyrica 63991 -Lyrical 56652 -Lyrichord 62917 -Lyricist 63245 -Lyrics 35027 -LyricsMode 59101 -LyricsVideoArtistSimilar 54283 -Lyrique 62469 -Lyris 63419 -Lys 56518 -LysU 65170 -Lysate 63601 -Lysates 60238 -Lyset 64657 -Lysholm 65170 -Lysine 59357 -Lysis 63077 -Lysol 62066 -Lysosomal 64905 -Lyte 63419 -Lytham 59630 -Lytle 58632 -Lyttelton 62917 -Lytton 62613 -Lz 63601 -László 63245 -Länder 63792 -Léa 65452 -Léon 60321 -Léonard 65452 -Lévy 64201 -Lëtzebuergesch 56899 -Línea 62469 -Língua 65170 -Líricas 64423 -López 58212 -Lübeck 65452 -M 33931 -M's 59357 -MA 39315 -MAA 57609 -MAAC 57876 -MAB 61699 -MAC 46520 -MACADAMIA 64657 -MACARRON 63601 -MACAU 62613 -MACD 63792 -MACDONALD 62917 -MACE 61940 -MACEDONIA 62613 -MACGREGOR 65452 -MACH 64657 -MACHE 65170 -MACHINE 50742 -MACHINERY 58262 -MACHINES 57440 -MACHINING 61940 -MACK 62469 -MACKENZIE 60580 -MACMILLAN 63601 -MACQUARIE 61818 -MACRO 59424 -MACROECONOMIC 63991 -MACS 64423 -MACUL 63792 -MACs 63245 -MAD 52968 -MADAGASCAR 61256 -MADAME 60580 -MADD 63601 -MADDEN 62762 -MADE 49979 -MADHYA 63601 -MADIS 55821 -MADISON 57278 -MADNESS 61940 -MADONNA 58577 -MADRID 60580 -MADtv 59164 -MAE 58688 -MAF 58802 -MAFF 62331 -MAFIA 61818 -MAG 55604 -MAGAZINE 51238 -MAGAZINES 55154 -MAGENTA 65452 -MAGGIE 62469 -MAGIC 54969 -MAGIX 63792 -MAGNESIUM 64423 -MAGNET 60238 -MAGNETIC 56324 -MAGNETICS 65170 -MAGNETS 65452 -MAGNIFICENT 64905 -MAGNUM 61362 -MAGS 64423 -MAH 60321 -MAHA 65452 -MAHARASHTRA 59491 -MAHOGANY 64423 -MAI 60238 -MAID 61818 -MAIDEN 61940 -MAIK 60078 -MAIL 52085 -MAILBAG 64657 -MAILING 54946 -MAIN 45879 -MAINE 57696 -MAINS 62613 -MAINSTREAM 64905 -MAINT 64905 -MAINTAIN 62196 -MAINTAINED 65452 -MAINTAINING 62762 -MAINTENANCE 53010 -MAIS 64905 -MAISON 62762 -MAJ 63419 -MAJESTIC 64657 -MAJESTY 63991 -MAJOR 52007 -MAK 63245 -MAKATI 65452 -MAKE 47028 -MAKER 61818 -MAKERS 63419 -MAKES 56140 -MAKEUP 60856 -MAKEZINE 60762 -MAKI 65170 -MAKING 53196 -MAL 62196 -MALAGA 64423 -MALAWI 61152 -MALAY 63245 -MALAYALAM 64657 -MALAYSIA 56935 -MALAYSIAN 64423 -MALCOLM 62469 -MALDEN 60952 -MALDI 62331 -MALDIVES 60670 -MALE 54969 -MALES 63991 -MALI 61152 -MALL 58262 -MALO 65170 -MALONE 62331 -MALOSSI 61818 -MALT 61699 -MALTA 60157 -MAM 61699 -MAMA 60580 -MAME 60856 -MAMI 65452 -MAMMA 64657 -MAN 49758 -MANA 63245 -MANAGE 61256 -MANAGED 57785 -MANAGEMENT 47080 -MANAGER 51238 -MANAGER'S 64657 -MANAGERIAL 57741 -MANAGERS 58470 -MANAGING 57440 -MANAWATU 62613 -MANCHESTER 56170 -MANDATORY 62469 -MANDOLIN 64201 -MANDY 59702 -MANETs 63077 -MANGA 63419 -MANGANESE 64201 -MANGO 64423 -MANHATTAN 58919 -MANHOLE 62762 -MANIA 63792 -MANIFESTO 65452 -MANIFOLD 62762 -MANILA 61940 -MANITOBA 63792 -MANN 62066 -MANNEQUIN 65452 -MANNING 62917 -MANOR 59292 -MANPOWER 64905 -MANSFIELD 61584 -MANSION 63991 -MANSIONS 65170 -MANSON 64905 -MANU 63991 -MANUAL 53109 -MANUALS 62613 -MANUEL 60856 -MANUFACTURE 59357 -MANUFACTURED 61472 -MANUFACTURER 55657 -MANUFACTURER'S 62613 -MANUFACTURERS 58262 -MANUFACTURING 53882 -MANUKAU 60952 -MANUSCRIPT 58523 -MANY 53066 -MAO 62469 -MAORIZ 65170 -MAP 45499 -MAPCAs 65170 -MAPI 63245 -MAPK 56687 -MAPLE 57923 -MAPP 64201 -MAPPING 60000 -MAPS 53729 -MAQUINA 62331 -MAR 52198 -MARATHON 60000 -MARBLE 59039 -MARC 51580 -MARCH 49417 -MARCHING 64423 -MARCIA 65452 -MARCO 61699 -MARCOS 63991 -MARCUS 61818 -MARE 63601 -MARGARET 55963 -MARGIELA 63792 -MARI 64201 -MARIA 55906 -MARIAH 60492 -MARIAN 62066 -MARIANA 60321 -MARIE 57566 -MARIJ 65170 -MARIJA 58523 -MARIJUANA 63419 -MARILYN 58577 -MARIMBA 63991 -MARIN 61818 -MARINA 58017 -MARINE 54023 -MARINES 62917 -MARINO 61051 -MARIO 58365 -MARION 58212 -MARITAL 64905 -MARITIME 60952 -MARJORIE 63991 -MARK 51060 -MARKED 61362 -MARKER 62917 -MARKERS 63792 -MARKET 48985 -MARKETING 51825 -MARKETPLACE 57399 -MARKETS 54096 -MARKING 61472 -MARKS 58577 -MARLBOROUGH 60238 -MARLEY 60856 -MARLIN 63245 -MARQUEE 64905 -MARQUIS 65170 -MARRIAGE 57970 -MARRIED 61051 -MARRIOTT 61584 -MARS 56899 -MARSEILLE 65452 -MARSH 61584 -MARSHA 65170 -MARSHALL 55578 -MARSHALLCITY 63077 -MART 59039 -MARTA 62469 -MARTHA 60238 -MARTIAL 62762 -MARTIN 52435 -MARTIN'S 65170 -MARTINEZ 61362 -MARTINI 58745 -MARTINIQUE 61818 -MARTY 62469 -MARVEL 55877 -MARVIN 61940 -MARX 63419 -MARXIST 64201 -MARY 52375 -MARY'S 64905 -MARYLAND 57696 -MARYSVILLE 65170 -MAS 53746 -MASCARAS 63991 -MASERATI 62917 -MASH 61699 -MASK 59357 -MASKS 63792 -MASON 60580 -MASON'S 65170 -MASONRY 61584 -MASS 54499 -MASSACHUSETTS 56721 -MASSACRE 64201 -MASSAGE 58262 -MASSEY 62613 -MASSIVE 59039 -MAST 63601 -MASTER 49676 -MASTERCARD 60157 -MASTERPIECES 65452 -MASTERS 57876 -MASTERTON 62613 -MASTERTRONIC 65170 -MAT 56827 -MATADOR 64423 -MATCH 56518 -MATCHES 63991 -MATCHING 58162 -MATE 60952 -MATERIAL 52886 -MATERIALS 47321 -MATERNITY 63601 -MATES 65452 -MATH 56935 -MATHEMATICAL 60405 -MATHEMATICS 58017 -MATHEW 65452 -MATHEWS 62762 -MATHS 61818 -MATIERE 64657 -MATL 64657 -MATLAB 55398 -MATRICES 64201 -MATRIX 56140 -MATS 61818 -MATSUSHITA 61051 -MATT 56551 -MATTE 61362 -MATTEL 64657 -MATTER 55398 -MATTERS 56293 -MATTHEW 58212 -MATTHEWS 61818 -MATTRESS 56972 -MATURE 62469 -MATUTE 63077 -MAU 64201 -MAUI 63792 -MAUREEN 64905 -MAURICE 62762 -MAURITANIA 61362 -MAURITIUS 60856 -MAURO 63991 -MAW 62196 -MAX 49880 -MAXAZRIA 63245 -MAXELL 63991 -MAXI 57970 -MAXIM 60405 -MAXIMAG 64905 -MAXIMUM 54879 -MAXTOR 64201 -MAXWELL 61699 -MAXX 62917 -MAXdev 63991 -MAY 46123 -MAYA 61584 -MAYBE 60492 -MAYEN 62762 -MAYER 63245 -MAYHEM 61818 -MAYNARD 63991 -MAYO 62917 -MAYOR 55657 -MAYORAL 65452 -MAYOTTE 62331 -MAZDA 56972 -MAb 56518 -MAbs 60238 -MB 37206 -MB's 65170 -MBA 45751 -MBAs 58979 -MBB 56231 -MBBS 59491 -MBC 58417 -MBCA 64905 -MBE 57876 -MBES 63419 -MBF 61584 -MBG 62917 -MBH 64423 -MBI 61584 -MBIA 64905 -MBJ 63991 -MBK 64423 -MBL 53865 -MBLC 61472 -MBM 61940 -MBNA 62066 -MBO 62331 -MBP 56050 -MBPs 65452 -MBR 59923 -MBRP 64905 -MBRS 64657 -MBS 57122 -MBSA 63077 -MBSR 63245 -MBT 60492 -MBTA 62917 -MBTI 64657 -MBean 61940 -MBendi 63419 -MBit 55578 -MBitKerko 61152 -MBitPesquisar 62469 -MBitSearch 60952 -MBitSzukaj 61152 -MBps 64201 -MBs 54341 -MBytes 62917 -MC 45275 -MC's 60078 -MCA 53813 -MCAD 63601 -MCAFEE 63792 -MCAS 59164 -MCAT 58162 -MCB 57399 -MCC 55821 -MCCAIN 57923 -MCCARTHY 63419 -MCCOY 61051 -MCCS 63601 -MCD 58745 -MCDA 57160 -MCDB 63245 -MCDONALD 60856 -MCE 57278 -MCF 58745 -MCFG 62917 -MCG 60856 -MCGRAW 65170 -MCGREW 62762 -MCGUIRE 65170 -MCH 59923 -MCI 54946 -MCK 64905 -MCKAIL 59491 -MCKENZIE 64657 -MCKINNEY 65452 -MCL 56200 -MCLE 61699 -MCLG 65170 -MCLGs 65170 -MCLs 64423 -MCM 58212 -MCMC 61699 -MCMS 63077 -MCMV 59292 -MCN 61051 -MCO 63077 -MCP 56652 -MCQUEEN 65170 -MCR 57358 -MCS 58017 -MCSA 61051 -MCSD 63792 -MCSE 56551 -MCT 59424 -MCTS 61256 -MCU 57741 -MCV 58802 -MCW 62331 -MCX 62762 -MCs 61256 -MD 38816 -MD's 64905 -MDA 52858 -MDAC 64201 -MDB 61699 -MDC 56388 -MDCK 61256 -MDD 62762 -MDDOT 64905 -MDDS 62917 -MDE 63077 -MDF 58802 -MDG 59560 -MDGs 60492 -MDH 65170 -MDI 60078 -MDK 65170 -MDL 57238 -MDM 52818 -MDMA 56585 -MDOT 63077 -MDP 59039 -MDPC 63601 -MDPro 62066 -MDR 56388 -MDS 56551 -MDT 53865 -MDU 62613 -MDW 63991 -MDX 60580 -MDaemon 63245 -MDs 61472 -ME 41807 -MEA 59357 -MEAC 58523 -MEAD 63245 -MEADOW 60952 -MEADOWS 60670 -MEAG 64201 -MEAL 61256 -MEALS 62066 -MEAN 57318 -MEANING 60078 -MEANS 56935 -MEAP 63991 -MEASURABLE 63991 -MEASURE 58860 -MEASURED 63245 -MEASUREMENT 56231 -MEASUREMENTS 59227 -MEASURES 56862 -MEASURING 55348 -MEAT 57524 -MEATS 65452 -MEB 60580 -MEC 59164 -MECCA 61256 -MECHANIC 61256 -MECHANICAL 55578 -MECHANICS 60762 -MECHANISM 58365 -MECHANISMS 61051 -MED 54902 -MEDAL 58262 -MEDC 59848 -MEDFORD 61584 -MEDIA 47548 -MEDIAN 63601 -MEDICAID 62613 -MEDICAL 49511 -MEDICARE 62613 -MEDICATION 63601 -MEDICINE 52175 -MEDICINES 65170 -MEDIEVAL 63077 -MEDINA 63991 -MEDITATION 64201 -MEDITERRANEAN 62613 -MEDIUM 54041 -MEDLEY 64201 -MEDLINE 35322 -MEE 64201 -MEERUT 56080 -MEET 54226 -MEETING 46660 -MEETINGS 45699 -MEETS 60856 -MEF 59292 -MEFs 58113 -MEG 57199 -MEGA 57084 -MEGAN 62613 -MEGANE 62613 -MEGAPIXEL 63991 -MEI 61818 -MEIER 65452 -MEIR 64905 -MEJOR 63077 -MEK 64657 -MEL 58470 -MELANIE 61699 -MELBOURNE 55738 -MELISSA 60238 -MELODY 62196 -MELON 64657 -MELROSE 65452 -MELT 64201 -MELVIN 61584 -MEM 54813 -MEMBER 49547 -MEMBERS 49207 -MEMBERSHIP 52954 -MEMBERSHIPS 63077 -MEMBRANE 61362 -MEMBRANES 65170 -MEMO 60405 -MEMORABILIA 63601 -MEMORANDUM 56972 -MEMOREX 63245 -MEMORIAL 56021 -MEMORIES 61584 -MEMORY 52673 -MEMOS 60670 -MEMPHIS 61256 -MEMRI 62762 -MEMS 55448 -MEN 50807 -MEN'S 53934 -MENA 59774 -MENDOCINO 65170 -MENLO 63991 -MENS 54341 -MENSAJE 64657 -MENSWEAR 64905 -MENTAL 56485 -MENTION 62331 -MENTIONED 65170 -MENTOR 64201 -MENU 53024 -MENUS 59560 -MEP 56791 -MEPS 63601 -MEPs 58577 -MER 56972 -MERCEDES 59292 -MERCER 62917 -MERCHANDISE 58313 -MERCHANT 62196 -MERCHANTABILITY 55766 -MERCHANTS 64657 -MERCURY 58979 -MERCY 60856 -MEREDITH 63991 -MERGE 63792 -MERGER 63419 -MERGERS 65170 -MERIAL 64905 -MERIDIAN 63792 -MERIT 60405 -MERLIN 62613 -MERRILL 64201 -MERRY 61152 -MERRYLANDS 65452 -MERSEYSIDE 62066 -MERTZ 46646 -MES 58017 -MESA 58365 -MESFET 61699 -MESH 58688 -MESOTHELIOMA 56356 -MESS 60078 -MESSAGE 49999 -MESSAGES 56110 -MESSAGING 64657 -MESSENGER 60078 -MET 55821 -META 57238 -METABOLIC 64201 -METABOLISM 57566 -METADATA 62066 -METAL 51387 -METALLIC 60405 -METALLICA 60856 -METALLURGICAL 63077 -METALS 59491 -METAR 61818 -METEOROLOGICAL 64657 -METER 59292 -METERS 60000 -METH 63601 -METHOCEL 65452 -METHOD 46995 -METHODE 65452 -METHODIKA 64657 -METHODIST 63601 -METHODOLOGICAL 63419 -METHODOLOGY 58745 -METHODS 46299 -METHYL 64423 -METRIC 60670 -METRO 54969 -METROPOLITAN 56585 -METS 59227 -MEU 62331 -MEURSAULT 63245 -MEV 64201 -MEWS 65452 -MEX 65452 -MEXICAN 60238 -MEXICO 52387 -MEYER 62613 -MEd 64905 -MF 46809 -MFA 54133 -MFB 60856 -MFC 53597 -MFCM 65170 -MFD 64201 -MFF 64423 -MFG 50185 -MFHT 64905 -MFI 57609 -MFIs 61152 -MFJ 60000 -MFL 63991 -MFM 62196 -MFN 64423 -MFP 56140 -MFR 59292 -MFS 58065 -MFT 62196 -MG 47988 -MG's 64905 -MGA 57524 -MGB 61940 -MGC 60492 -MGCP 62469 -MGE 61051 -MGF 61584 -MGH 63792 -MGI 59560 -MGIB 65170 -MGM 54321 -MGM's 63991 -MGMT 56080 -MGN 59702 -MGO 63077 -MGP 63245 -MGR 62613 -MGS 59039 -MGT 61152 -MGW 63792 -MH 47325 -MHA 60157 -MHC 52509 -MHD 60580 -MHEG 64657 -MHI 63991 -MHL 65452 -MHM 64657 -MHOC 62469 -MHP 57358 -MHR 63792 -MHRA 65452 -MHS 62469 -MHT 63077 -MHX 65170 -MHZ 62196 -MHz 47453 -MI 41297 -MIA 50906 -MIAMI 55631 -MIAMISBURG 65452 -MIB 56972 -MIC 54399 -MICAMATION 64201 -MICE 58745 -MICHAEL 49135 -MICHAELS 64657 -MICHAUD 64201 -MICHEL 60157 -MICHELE 60157 -MICHELLE 57440 -MICHIGAN 55500 -MICK 63077 -MICKEL 63991 -MICKEY 62917 -MICR 63601 -MICRO 55474 -MICROBIOL 62613 -MICROBIOLOGY 61584 -MICROGENICS 64657 -MICROLINE 62762 -MICROMINE 63077 -MICRONESIA 64905 -MICROPHONE 63245 -MICROPHONES 65170 -MICROPOLITAN 63792 -MICROSCOPIC 65170 -MICROSCOPY 64905 -MICROSOFT 52597 -MICROSTAR 65170 -MICROSYSTEMS 64201 -MICROWAVE 56935 -MICs 60157 -MID 54622 -MIDAS 63991 -MIDDLE 53226 -MIDDLESEX 62196 -MIDDLETON 62762 -MIDI 49365 -MIDLAND 62066 -MIDLANDS 58162 -MIDNIGHT 59227 -MIDP 59923 -MIDRAND 63601 -MIDS 59774 -MIDWAY 63792 -MIDWEST 55226 -MIDlet 60670 -MIE 63419 -MIEK 64905 -MIELE 65452 -MIEPs 65170 -MIF 59774 -MIG 56262 -MIGA 61362 -MIGHT 57785 -MIGHTY 60238 -MIGRATION 55738 -MIGUEL 59848 -MII 59292 -MIKA 64657 -MIKE 53712 -MIL 55657 -MILAN 58262 -MILANO 62917 -MILD 64423 -MILE 58262 -MILEAGE 63792 -MILES 54879 -MILESTONE 65452 -MILEY 60405 -MILF 51340 -MILF's 62613 -MILFORD 63991 -MILFs 60078 -MILITARY 53316 -MILK 56388 -MILL 54245 -MILLENIUM 65170 -MILLENNIUM 57653 -MILLER 54835 -MILLING 64423 -MILLION 55711 -MILLIONS 61362 -MILLS 56862 -MILO 64201 -MILTON 60157 -MILWAUKEE 61584 -MIM 60492 -MIMD 60670 -MIME 50766 -MIMEEntity 54264 -MIMEHeader 54133 -MIMI 64905 -MIMIC 65452 -MIMO 57609 -MIN 52534 -MIND 56518 -MINDS 63991 -MINDSET 65452 -MINDY 65452 -MINDYKOWSKI 65170 -MINE 56972 -MINER 64905 -MINERAL 59039 -MINERALS 62469 -MINERVA 65170 -MINES 61940 -MING 62762 -MINI 48413 -MINIATURE 62331 -MINICOM 62762 -MINIKIT 65170 -MINIMAL 65170 -MINIMUM 55474 -MINING 57831 -MINISTER 58745 -MINISTERIAL 60000 -MINISTERS 63991 -MINISTRIES 62066 -MINISTRY 55202 -MINIs 61152 -MINNEAPOLIS 61940 -MINNESOTA 55793 -MINNIE 63792 -MINOGUE 62762 -MINOLTA 62066 -MINOR 57609 -MINORITY 64905 -MINS 65170 -MINT 54622 -MINTEX 64423 -MINUS 64201 -MINUTE 56827 -MINUTES 48741 -MIO 60078 -MIP 57524 -MIPS 57831 -MIQUELON 63245 -MIR 61051 -MIRA 63991 -MIRACLE 60321 -MIRAGE 62762 -MIRANDA 63792 -MIRIAM 58523 -MIRROR 57831 -MIRRORS 62331 -MIS 54519 -MISC 56485 -MISCATEGORIZED 65452 -MISCELLANEOUS 54992 -MISHRA 64905 -MISS 51600 -MISSED 54992 -MISSILE 64905 -MISSING 58212 -MISSION 53423 -MISSIONARY 64905 -MISSIONS 59560 -MISSISSIPPI 57566 -MISSOURI 55474 -MISSY 65170 -MIST 61818 -MISTAKE 64423 -MISTER 64201 -MISTRESS 63792 -MISTY 63245 -MISUSE 65170 -MIT 47413 -MIT's 61362 -MITCH 64657 -MITCHELL 58212 -MITI 65452 -MITIGATION 64905 -MITRE 62762 -MITS 64201 -MITSUBISHI 56140 -MIU 61584 -MIX 52351 -MIXED 57084 -MIXER 60856 -MIXES 62613 -MIXING 56618 -MIXTAPE 60405 -MIXTURE 60405 -MIXTURES 65170 -MIXX 64905 -MJ 47073 -MJD 65170 -MJG 62469 -MJM 62613 -MJT 65170 -MK 50299 -MKB 65170 -MKE 65452 -MKII 61940 -MKS 60952 -MKT 63245 -MKV 56200 -MKWEB 64657 -MKX 60238 -MKZ 61472 -ML 47784 -MLA 50576 -MLAB 63792 -MLAs 65170 -MLB 39669 -MLC 57609 -MLD 62917 -MLG 52007 -MLK 58017 -MLL 62331 -MLM 53081 -MLP 60000 -MLPA 64201 -MLR 61256 -MLS 45768 -MLSs 63077 -MLT 58802 -MM 47057 -MMA 48067 -MMB 64423 -MMC 54499 -MMD 62613 -MMF 57876 -MMG 60492 -MMH 64905 -MMI 60405 -MMIC 63991 -MMII 62331 -MMIII 57741 -MMIS 64905 -MMK 65452 -MML 58745 -MMM 56585 -MMO 51453 -MMOD 59630 -MMOG 58688 -MMOGold 64657 -MMORPG 51377 -MMORPGs 59630 -MMOs 61256 -MMOtaku 64905 -MMP 57696 -MMPI 64657 -MMPOG 64905 -MMPs 63792 -MMR 56791 -MMRuth 60078 -MMS 52832 -MMSE 61152 -MMT 61362 -MMTV 57278 -MMU 62762 -MMV 63792 -MMVI 63991 -MMVII 59101 -MMVIII 50270 -MMWR 59164 -MMX 58065 -MMe 63991 -MMi 62331 -MN 41711 -MNA 64423 -MNC 60405 -MNCs 61818 -MND 60856 -MNE 64657 -MNEs 64201 -MNF 63077 -MNG 57009 -MNH 65170 -MNP 61362 -MNR 60856 -MNRAS 62469 -MNS 59227 -MNSS 62762 -MNT 57923 -MNTS 60580 -MO 42057 -MOA 59424 -MOAB 64423 -MOB 58523 -MOBI 64201 -MOBIL 62613 -MOBILE 46757 -MOBILES 65452 -MOBILITY 61584 -MOBILIZATION 64905 -MOBO 60492 -MOBY 64657 -MOC 62196 -MOCLDY 63245 -MOCVD 61818 -MOD 52886 -MODE 54459 -MODEL 48473 -MODELING 59101 -MODELLING 62762 -MODELO 65170 -MODELS 53533 -MODEM 58113 -MODERATE 62917 -MODERATOR 61699 -MODERN 56021 -MODES 62762 -MODIFICATION 58632 -MODIFICATIONS 60157 -MODIFIED 59357 -MODIFY 60238 -MODIS 59702 -MODS 60670 -MODULAR 59164 -MODULATION 63077 -MODULE 57876 -MODULES 61584 -MODs 64905 -MOE 57923 -MOF 64905 -MOG 53970 -MOGs 63991 -MOH 61472 -MOHAMAD 63077 -MOHAMED 64657 -MOHAMMAD 65452 -MOHAMMED 63792 -MOI 58802 -MOISTURE 65170 -MOJO 60157 -MOL 59292 -MOLD 63245 -MOLDED 64423 -MOLDING 64201 -MOLDOVA 63077 -MOLE 63792 -MOLECULAR 56485 -MOLECULE 64657 -MOLECULES 61699 -MOLI 64423 -MOLLUS 64657 -MOLLY 62469 -MOLP 60856 -MOLYNEUX 64423 -MOM 54459 -MOMENT 59424 -MOMENTS 61584 -MOMMA 65170 -MOMO 59424 -MOMP 64657 -MOMS 63792 -MOMania 65170 -MOMs 62066 -MON 54341 -MONA 63601 -MONACO 60405 -MONDAY 51741 -MONDAYS 65452 -MONDO 65170 -MONETARY 59560 -MONEY 49535 -MONGJANG 65170 -MONGOLIA 61472 -MONICA 59039 -MONIQUE 62917 -MONITOR 55226 -MONITORING 54770 -MONITORS 62613 -MONK 64423 -MONKEY 60670 -MONKEYS 65452 -MONO 59560 -MONOCLE 61584 -MONROE 58417 -MONSEY 62469 -MONSTER 56585 -MONSTERS 63419 -MONTANA 57318 -MONTE 60405 -MONTENEGRO 61051 -MONTEREY 61152 -MONTERO 63245 -MONTGOMERY 59357 -MONTH 51600 -MONTHLY 54560 -MONTHS 57609 -MONTREAL 60856 -MONTROSE 62196 -MONTSERRAT 61940 -MONTY 63077 -MONUMENT 62917 -MOODY 64657 -MOON 55657 -MOONLIGHT 62066 -MOORE 57160 -MOOSE 61584 -MOP 59774 -MOPED 63245 -MOPS 61818 -MOR 56170 -MORAL 64201 -MORE 39496 -MORENO 63419 -MORGAN 54902 -MORI 61818 -MORLEY 64657 -MORNING 56262 -MOROCCO 60000 -MORPHOLOGY 64905 -MORRELL 62331 -MORRIS 58417 -MORRISON 58979 -MORSE 65170 -MORTAL 62469 -MORTALITY 63077 -MORTAR 65452 -MORTGAGE 55500 -MORTGAGES 60000 -MORTIMER 63245 -MORTON 61699 -MOS 52459 -MOSAIC 60157 -MOSCHINO 65452 -MOSCOW 61256 -MOSES 63419 -MOSFET 54946 -MOSFETs 60321 -MOSH 65170 -MOSHE 62196 -MOSL 64905 -MOSQUITO 65170 -MOSS 57609 -MOST 42798 -MOSTLY 62613 -MOT 54879 -MOTEL 60238 -MOTELS 62331 -MOTH 65452 -MOTHER 56485 -MOTHER'S 63245 -MOTHERBOARD 61818 -MOTHERS 62469 -MOTION 51610 -MOTIONS 62331 -MOTIVATION 64657 -MOTO 58162 -MOTOCROSS 64657 -MOTOR 52018 -MOTORAZR 65452 -MOTORCYCLE 57399 -MOTORCYCLES 63245 -MOTORIZED 65170 -MOTORIZR 64905 -MOTOROLA 55934 -MOTORRADJACKE 64201 -MOTORS 57278 -MOTORSPORT 61472 -MOTU 60580 -MOTUEKA 63077 -MOTUL 64657 -MOU 57009 -MOUNT 53581 -MOUNTAIN 53597 -MOUNTAINS 64905 -MOUNTED 61940 -MOUNTING 58802 -MOUNTS 64905 -MOUSE 56935 -MOUSEPAD 60762 -MOUTH 61051 -MOV 54540 -MOVE 55130 -MOVED 55084 -MOVEMENT 58577 -MOVEMENTS 62917 -MOVERS 63419 -MOVES 62331 -MOVIE 49841 -MOVIES 49578 -MOVING 56827 -MOWER 65170 -MOZAMBIQUE 60856 -MOZART 62613 -MP 45446 -MP's 57046 -MPA 56021 -MPAA 54601 -MPABM 65452 -MPC 55500 -MPD 62066 -MPE 62066 -MPEG 50242 -MPEP 63245 -MPF 59630 -MPFR 58860 -MPG 51814 -MPH 52074 -MPI 56110 -MPIC 65452 -MPIO 65452 -MPL 61472 -MPLAB 63419 -MPLOYMENT 65452 -MPLS 57696 -MPM 59560 -MPMI 56827 -MPN 57566 -MPNFL 62917 -MPO 56110 -MPP 60580 -MPQAP 62331 -MPR 61818 -MPRA 61256 -MPS 55631 -MPSA 63077 -MPSS 61472 -MPT 58802 -MPTP 59227 -MPV 57785 -MPVs 61818 -MPa 54946 -MPhil 65452 -MPlayer 63991 -MPs 52375 -MQ 57923 -MQM 64423 -MQTRU 61818 -MQW 63792 -MR 46239 -MRA 56356 -MRAM 65170 -MRAP 62331 -MRC 54245 -MRCOG 64905 -MRCP 61584 -MRD 61584 -MRE 61699 -MREINZ 59923 -MRF 61818 -MRG 63419 -MRI 47710 -MRI's 63792 -MRINetwork 63419 -MRIS 63991 -MRIs 64657 -MRJ 64657 -MRL 61472 -MRM 61051 -MRN 64201 -MRO 57122 -MRP 57923 -MRR 60580 -MRRP 63077 -MRS 51690 -MRSA 51846 -MRT 54685 -MRTG 65452 -MRV 64657 -MRX 61818 -MS 40245 -MSA 50019 -MSB 61584 -MSBuild 59702 -MSC 49382 -MSCI 59424 -MSCs 62331 -MSD 55963 -MSDE 62613 -MSDN 49657 -MSDS 53331 -MSDict 64201 -MSE 57160 -MSF 54283 -MSFN 62762 -MSFT 57524 -MSG 55014 -MSGi 63991 -MSH 61152 -MSHS 63601 -MSI 49847 -MSIE 54560 -MSIL 64905 -MSK 61472 -MSL 61472 -MSM 54540 -MSMR 65170 -MSN 37420 -MSN's 63245 -MSNA 59702 -MSNBC 50469 -MSNBC's 61584 -MSNSign 64657 -MSO 60405 -MSOC 65170 -MSP 55934 -MSPs 62066 -MSR 57524 -MSRM 62613 -MSRP 51899 -MSS 59227 -MSSM 62613 -MSSQL 60000 -MST 52765 -MSTRKRFT 60238 -MSU 52712 -MSU's 65452 -MSV 60405 -MSW 56585 -MSX 63245 -MSXML 62762 -MSc 54245 -MSpace 64201 -MSs 64657 -MT 44888 -MTA 56618 -MTB 51541 -MTBF 64423 -MTC 59357 -MTD 58919 -MTF 62196 -MTFC 64423 -MTG 58212 -MTH 61584 -MTHFR 64423 -MTI 60670 -MTK 63245 -MTL 58365 -MTM 58802 -MTN 58365 -MTNA 65452 -MTNL 64905 -MTO 56262 -MTP 61472 -MTR 59923 -MTRR 64905 -MTS 54399 -MTSE 64201 -MTT 55992 -MTU 59630 -MTV 43869 -MTV's 57876 -MTVU 60670 -MTWRF 62613 -MTX 53882 -MTech 64423 -MTom 62066 -MTs 60952 -MU 50439 -MUA 63419 -MUAH 63419 -MUAHHH 65452 -MUCH 51157 -MUCHO 64905 -MUD 61051 -MUDDY 65170 -MUDO 63601 -MUFC 60000 -MUFFINS 62762 -MUFFLER 65170 -MUG 61152 -MUGEN 62331 -MUHA 63991 -MUHAMMAD 64657 -MUJER 64905 -MUJERES 64201 -MULLED 65170 -MULLER 63245 -MULLINS 65452 -MULTI 54835 -MULTILATERAL 65170 -MULTIMASTER 64201 -MULTIMEDIA 54096 -MULTIPLE 55821 -MUM 60952 -MUMBAI 58313 -MUMBO 64201 -MUMPS 57524 -MUN 57199 -MUNDO 62066 -MUNI 60078 -MUNICIPAL 53109 -MUNICIPALITY 61362 -MUNIN 63245 -MUR 64657 -MURAL 62762 -MURDER 58632 -MURPHY 59164 -MURRAY 54479 -MUSC 64905 -MUSCLE 58017 -MUSE 59630 -MUSEUM 56420 -MUSEUMS 62331 -MUSHROOM 64423 -MUSHROOMS 64905 -MUSIC 45279 -MUSICA 61362 -MUSICAL 56756 -MUSICIANS 63419 -MUSLIM 61699 -MUST 46986 -MUSTANG 60321 -MUSTARD 63245 -MUTATION 64657 -MUTUAL 60321 -MUX 63991 -MUY 63792 -MUZZLE 64657 -MV 50372 -MVA 61051 -MVC 56551 -MVD 61051 -MVHS 64905 -MVM 65170 -MVNO 65452 -MVP 49001 -MVP's 64905 -MVPs 60000 -MVR 61940 -MVS 59491 -MW 47399 -MWC 58802 -MWD 62331 -MWF 62469 -MWG 65452 -MWH 64423 -MWI 64657 -MWNT 62066 -MWS 63991 -MWSOC 64201 -MWg 61362 -MWh 64423 -MX 47574 -MXC 64905 -MXL 62917 -MXN 61256 -MXO 64201 -MXR 63991 -MXit 63419 -MY 40554 -MYANMAR 61256 -MYB 61472 -MYCAREER 54341 -MYCN 61362 -MYERS 57358 -MYL 63601 -MYOB 61940 -MYOCARDIAL 63792 -MYOOX 61152 -MYPlaces 62331 -MYR 58577 -MYRTLE 63991 -MYSELF 62066 -MYSPACE 54857 -MYSQL 62917 -MYSTERY 60856 -MYSTIC 60762 -MYT 61940 -MYTH 65452 -MYTHS 63991 -MYTravelGuide 58523 -MYX 64657 -MYabsolutearts 65170 -MZ 57741 -Ma 48105 -MaKe 65452 -MaMa 63792 -Maa 60952 -Maaco 62613 -Maan 63792 -Maar 61152 -Maarten 54770 -Maas 59357 -Maasai 60000 -Maastricht 56050 -Maayan 63792 -Mabaso 65452 -Mabe 59774 -Mabel 57122 -Mabinogi 61584 -Mable 60670 -Mableton 63792 -Mabou 65170 -Mabry 63077 -Maburaho 61362 -Mac 38250 -Mac's 57199 -MacArthur 54560 -MacBlips 63991 -MacBook 45826 -MacBooks 57482 -MacCallum 63792 -MacColl 62917 -MacCragh 61818 -MacDiarmid 64657 -MacDonald 52673 -MacDonald's 65452 -MacDowell 65170 -MacEwan 61940 -MacFarlane 62613 -MacFarlane's 65170 -MacFixIt 52818 -MacGregor 57278 -MacGyver 61472 -MacIntosh 63419 -MacIntyre 62066 -MacKay 58979 -MacKenzie 57566 -MacKimmie 62066 -MacKinnon 62066 -MacLachlan 65452 -MacLean 59848 -MacLellan 65170 -MacLeod 58577 -MacMall 62762 -MacMillan 60762 -MacMost 57524 -MacNN 60492 -MacNee 65452 -MacNeil 63601 -MacNeillie 62762 -MacNewsWorld 61152 -MacOS 54283 -MacOSX 57741 -MacPherson 58577 -MacPro 62196 -MacQuoid 63077 -MacRAE'S 53762 -MacRAE's 56170 -MacRae 64905 -MacRumors 57566 -MacServerIP 60238 -MacSlash 64657 -MacSpeech 61818 -MacTalk 64905 -MacTech 63991 -MacUser 57358 -MacVideo 64905 -MacWorld 62331 -Maca 62196 -Macabre 60238 -Macaca 62762 -Macadamia 63077 -Macalester 65452 -Macalister 63245 -Macally 59630 -Macanudo 63601 -Macao 50476 -Macao's 63077 -Macaque 64423 -Macarena 64657 -Macaroni 58979 -Macarthur 59923 -Macau 47691 -Macau's 64905 -Macaulay 58688 -Macaw 61051 -Macbeth 56485 -Macbook 53533 -Macbooks 63077 -Macca 62762 -Maccabi 63419 -Macclesfield 56899 -Maccoll 65452 -Macdonald 54969 -Macdonald's 64905 -Mace 55014 -Macedon 61472 -Macedonia 46167 -Macedonian 52699 -Macedonians 63419 -Maceo 64657 -Macfarlane 62196 -Macgregor 62613 -Mach 54283 -Macha 62917 -Machado 60492 -Machel 64201 -Machen 64423 -Macher 63601 -Machesney 62917 -Machete 63792 -Machi 65170 -Machiavelli 59848 -Machiavellian 65170 -Machida 63245 -Machina 61940 -Machine 41478 -Machine's 64905 -Machined 60856 -Machinery 45528 -Machines 44452 -Machinima 58632 -Machining 53024 -Machinist 57199 -Machinist's 51888 -Machinists 61256 -Macho 59630 -Machol 64657 -Macht 63991 -Machu 58417 -Machynlleth 63792 -Macias 63601 -Maciej 60238 -Macintosh 48796 -Macintyre 64201 -Mack 50357 -Mack's 61472 -Mackay 54540 -Macken 59923 -Mackenzie 53662 -Mackerel 62613 -Mackey 58212 -Mackie 55084 -Mackinac 60952 -Mackinaw 62331 -Mackintosh 63792 -Macklin 62066 -Macks 64201 -Maclaren 59357 -Maclean 59923 -Maclean's 65452 -Macleay 63991 -Macleod 59774 -Macmillan 52872 -Maco 63991 -Macomb 55274 -Macomber 63991 -Macon 53109 -Macpac 64905 -Macpherson 59630 -Macquarie 51996 -Macrame 63077 -Macro 50553 -MacroMAP 64905 -Macrobiotic 64905 -Macrochelodina 65452 -Macroeconomic 56170 -Macroeconomics 57785 -Macromedia 48230 -Macromedia's 60580 -Macromolecular 59292 -Macromolecules 59630 -Macrophage 59357 -Macrophages 60078 -Macros 52872 -Macroscopic 61152 -Macross 57399 -Macrovision 60670 -Macs 53109 -Mactan 65170 -Mactopia 62469 -Macular 58417 -Macworld 50122 -Macy 56262 -Macy's 51008 -Macys 65170 -Mad 46282 -MadSci 62331 -Mada 63245 -Madagascar 45951 -Madalyn 65170 -Madam 57482 -Madama 64905 -Madame 53095 -Madan 59164 -Madara 63792 -Madball 63077 -Madcap 62331 -Madcon 61584 -Madd 64657 -Madden 48459 -Maddie 57741 -Maddie's 65452 -Maddon 60405 -Maddow 60157 -Maddox 57609 -Maddux 64201 -Maddy 58919 -Made 41638 -Madeira 52982 -Madeleine 54245 -Madeleines 60580 -Madeline 53813 -Madeline's 63245 -Madelyn 62469 -Mademoiselle 62196 -Maden 64423 -Mader 63077 -Madera 56452 -Madero 65452 -Madge 60238 -Madgex 51996 -Madhavan 61152 -Madhu 61584 -Madhuri 59039 -Madhusudan 60238 -Madhya 56262 -Madi 63792 -Madigan 61472 -Madikwe 63601 -Madina 62331 -Madinah 64905 -Madingley 65452 -Madison 44540 -Madison's 61472 -Madisonville 64201 -Madisuns 64423 -Madly 64657 -Madman 58065 -Madmen 62917 -Madness 49828 -Madoc 62917 -Madonna 45444 -Madonna's 55849 -Madoran 60762 -Madox 64905 -Madras 55226 -Madre 57876 -Madrid 46457 -Madrid's 63077 -Madrigal 61584 -Madrona 65452 -Mads 62196 -Madsen 57566 -Madu 65170 -Madura 61051 -Madurai 55014 -Maduro 58745 -Mae 49578 -Mae'r 63991 -Mae's 61051 -Maecenas 64201 -Maeda 59560 -Maegan 64657 -Maelo 62613 -Maelstrom 57566 -Maem 62469 -Maemo 64657 -Maersk 62469 -Maerua 60405 -Maes 60952 -Maesteg 62762 -Maestro 54770 -Maeva 65452 -Maeve 61818 -Mafalda 60670 -Mafeking 65170 -Maffei 65452 -Mafia 50774 -MafiaScum 61584 -Mafra 64657 -Mafraq 64201 -Mag 50823 -Maga 59101 -Magalluf 65452 -Magarin 61818 -Magatama 65452 -Magazin 62762 -Magazine 36820 -Magazine's 54419 -Magazines 41763 -Magda 60492 -Magdalen 60492 -Magdalena 57923 -Magdalene 58577 -Magdeburg 63991 -Mage 52107 -Magedson 60321 -Magee 58113 -Magellan 53485 -Magellanic 62762 -Magenta 58745 -Magento 59101 -Mages 55578 -Maggi 59774 -MaggiB 60238 -Maggiano's 64657 -Maggie 49626 -Maggie's 58919 -Maggio 61584 -Maggiore 60078 -Maggot 61818 -Maggots 64201 -Maggs 63601 -Maggy 64423 -Maghreb 62917 -Magi 59702 -Magia 65452 -Magic 41834 -MagicYellow 59424 -Magica 61584 -Magical 51157 -Magician 54706 -Magicians 60078 -Magick 60580 -Magickal 65170 -Magik 63419 -Magikano 64905 -Magill 61152 -Magimix 60856 -Magister 62762 -Magister's 63419 -Magisterial 57609 -Magisters 62331 -Magistrate 54439 -Magistrate's 63792 -Magistrates 58523 -Magix 59164 -Maglev 65452 -Magli 64201 -Maglite 64423 -Magma 58860 -Magn 64201 -Magna 54321 -Magnaflow 60856 -Magnani 65170 -Magnaporthe 64423 -Magnavox 61472 -Magners 60492 -Magnesite 65170 -Magnesium 52899 -Magnet 48846 -Magnetek 64905 -Magnetic 46537 -Magnetically 65452 -Magnetics 60000 -Magnetism 58417 -Magnetization 64201 -Magneto 60321 -Magnetron 64657 -Magnets 49847 -Magni 65170 -Magnificat 62469 -Magnification 60321 -Magnificent 55226 -Magnified 64423 -Magnifier 58470 -Magnifiers 58262 -Magnifique 64905 -Magnify 56388 -Magnifying 57482 -Magnitude 60238 -Magnolia 51122 -Magnoliacom 60856 -Magnoliophyta 64657 -Magnum 52007 -Magnus 55084 -Magnuson 62196 -Magnussen 63991 -Magnusson 65170 -Magnustouch 64905 -Mago 64201 -Magpie 58919 -Magpies 60762 -Magritte 64423 -Mags 56551 -Magtheridon 58365 -Magtheridon's 60000 -Maguey 62613 -Maguire 56140 -Magura 62762 -Magus 56618 -Magyar 49529 -Magyarország 63245 -Mah 55877 -MahJongg 63077 -Maha 58632 -Mahabharata 64657 -Mahablog 64905 -Mahaffey 64905 -Mahagony 65452 -Mahajan 62066 -Mahal 55738 -Mahalo 56756 -Mahan 62196 -Mahar 62331 -Maharaj 62762 -Maharaja 59774 -Maharaja's 65452 -Maharaji 62762 -Maharashtra 51825 -Maharastra 64657 -Maharey 64423 -Maharishi 62613 -Mahathir 64423 -Mahatma 56618 -Mahayana 64201 -Mahdi 61362 -Mahe 65452 -Mahendra 62066 -Maher 53746 -Maher's 65452 -Mahesh 57970 -Mahi 59292 -Mahima 63245 -Mahindra 54879 -Mahjong 57399 -Mahjongg 59491 -Mahler 61818 -Mahmood 61699 -Mahmoud 55226 -Mahmud 61152 -Mahogany 53153 -Mahomed 62331 -Mahomet 63601 -Mahon 57785 -Mahoney 54902 -Mahoning 59774 -Mahopac 61152 -Mahoraba 65452 -Mahou 59702 -Mahuta 64201 -Mahzen 62196 -Mai 50164 -Maia 58162 -Maid 51312 -Maida 61362 -Maiden 48697 -Maidenhead 54685 -Maidens 63792 -Maids 57970 -Maidstone 55711 -Maier 59101 -Maiev 60952 -Maigret 64905 -Maik 65452 -Maiko 59491 -Mail 37241 -Mail's 62917 -MailSpeaker 65452 -MailWasher 62613 -Mailbag 57785 -Mailbox 53392 -Mailboxes 59424 -Maile 62066 -Mailed 62917 -Mailer 56262 -Mailers 59702 -Mailing 43256 -MailingList 63245 -Mailinglist 61699 -Mailings 63601 -MaillMake 63792 -Maillon 64423 -Maillot 65452 -Mailman 62469 -Mailorder 65452 -Mailrings 65452 -Mailroom 61699 -Mails 62066 -Mailusers 64201 -Main 34520 -MainFrame 57741 -MainStreet 64423 -Maina 62613 -Mainboard 59560 -Mainboards 60580 -Maine 41398 -Maine's 59164 -Maines 65452 -Mainframe 56420 -Mainframes 61472 -Maing 63792 -Maingate 60952 -Mainichi 63792 -Mainland 53052 -Mainline 57653 -Mainly 56420 -Maino 61818 -Mainpage 63419 -Mains 54096 -Mainscreen 62917 -Mainship 62917 -Mainspring 64905 -Mainstream 53392 -Mainstreaming 60580 -Mainstreet 61362 -Maint 53729 -Maintain 50335 -Maintained 50949 -Maintainer 59491 -Maintainers 63077 -Maintaining 52725 -Maintains 55821 -Maintenance 41497 -Mainz 59101 -Maio 61940 -Mair 62917 -Maire 58313 -Mairead 63245 -Mairi 65452 -Mais 56935 -Maison 56050 -Maisonette 63245 -Maisonneuve 63419 -Maisons 63991 -Maisto 62066 -Maitland 56687 -Maitre 63601 -Maitreya 64905 -Maize 57831 -Maj 60238 -Maja 59357 -Majesco 64657 -Majestic 49821 -Majesty 53470 -Majesty's 55849 -Majic 62469 -Majid 59357 -Majik 63077 -Majikthise 64423 -Majin 59923 -MajinSaha 64657 -Majlis 61256 -Majolica 60670 -Major 39758 -Major's 64905 -MajorGeeks 60321 -Majora's 64423 -Majorca 56324 -Majority 52339 -Majoron 64657 -Majorova 63245 -Majors 52899 -Majumdar 62613 -Majutsu 65452 -Mak 57653 -Makai 64423 -Makati 56021 -Makaveli 64657 -Make 36067 -MakeDamnSure 65452 -MakeResponse 63601 -MakeUp 63245 -MakeUseOf 65170 -Makefile 59560 -Makeover 50314 -Makeovers 56140 -Makepeace 61362 -Maker 45470 -Maker's 62066 -Makers 48638 -Makes 45281 -Makeup 46266 -Makeupsquare 63601 -Makhtesh 63991 -Maki 59424 -Makin 61472 -Making 40879 -Makino 62917 -Makita 57696 -Makkah 64201 -Mako 59848 -Makoto 57970 -Makowski 65170 -Makowsky 63077 -Maksim 61818 -Maksymenko 61152 -Mal 53662 -Mal'Ganis 60238 -Mala 60238 -Malabar 60157 -Malabsorption 65452 -Malacca 60580 -Malachi 58470 -Malachite 62613 -Malachy 63792 -Maladie 61584 -Maladies 63991 -Malaga 55423 -Malagasy 59702 -Malaguti 64905 -Malahide 65452 -Malai 64423 -Malaika 61699 -Malaise 62762 -Malaita 64201 -Malakar 63245 -Malamute 62331 -Malang 64905 -Malaria 53501 -Malate 63077 -Malavasi 65452 -Malavida 60000 -Malawi 46092 -Malay 52832 -Malaya 61818 -Malayalam 52256 -Malayan 64201 -Malayer 63419 -Malays 63419 -Malaysia 41169 -Malaysia's 57609 -Malaysiakini 64657 -Malaysian 47819 -Malaysians 60952 -Malbec 60492 -Malcolm 49212 -Malcolm's 63245 -Malcom 60157 -Malden 57482 -Maldini 64905 -Maldive 63601 -Maldives 46048 -Maldivian 62613 -Maldon 61699 -Maldonado 61362 -Maldron 60078 -Male 41091 -Maleate 64905 -Malegaon 63792 -Malek 61051 -Malem 64905 -Malema 64905 -Males 51899 -Malesevic 65452 -Malet 65452 -Malevich 61818 -Malevich's 63792 -Malevolent 65452 -Malformation 64657 -Malformations 63419 -Malfoy 58365 -Malfunction 61940 -Malfunctions 63419 -Malfurion 60762 -Malhação 65170 -Malheur 63245 -Malhotra 61362 -Mali 46463 -Malia 62613 -Malian 62331 -Malibu 51377 -Malic 64905 -Malice 59491 -Malicious 57741 -Malick 63792 -Malignancy 62196 -Malignant 53167 -Malik 54946 -Malika 62917 -Maliki 61256 -Malin 57046 -Malina 61940 -Malinda 62917 -Malini 65452 -Malinick 64423 -Malinka 65170 -Malinois 63991 -Malis 65452 -Malka 64905 -Malkin 55906 -Malkmus 65170 -Malkovich 63419 -Mall 45289 -Mallampati 63419 -Mallar 60670 -Mallard 57278 -Mallcore 62066 -Malle 63419 -Mallee 58688 -Maller 65452 -Mallet 59923 -Mallets 63245 -Mallett 63245 -Mallick 63245 -Mallika 58017 -Mallinckrodt 64423 -Malling 62762 -Malloch 65170 -Mallorca 52752 -Mallory 56200 -Mallow 65452 -Malloy 60492 -Malls 50890 -Mallu 57970 -Mallya 62762 -Malmesbury 63419 -Malmo 62196 -Malmsteen 60952 -Malmud 64201 -Malmö 60670 -Malnutrition 60238 -Malo 59101 -Malone 52778 -Maloney 55631 -Maloof 63245 -Malorne 61051 -Malou 63419 -Malouf 64201 -Maloula 65452 -Maloun 65452 -Malpas 58017 -Malpractice 49049 -Malt 56080 -Malta 45164 -Malta's 62066 -Maltese 53470 -Malti 65452 -Malton 56827 -Maltreatment 64657 -Malus 64905 -Malvern 54857 -Malware 52459 -Malwarebytes 64657 -Malwebolence 62196 -Malyalam 63991 -Malygos 59774 -Mam 62196 -Mama 48781 -Mama's 55877 -Maman 64201 -Mamaroneck 63601 -Mamas 57785 -Mamasource 64657 -Mamba 64201 -Mambo 52832 -Mambots 55906 -Mame 63245 -Mamet 63077 -Mamet's 64657 -Mami 62066 -Mamie 61940 -Mamiya 59848 -Mamma 52778 -Mammal 57399 -Mammalia 54749 -Mammalian 55849 -Mammals 55299 -Mammary 60492 -Mammogram 63245 -Mammography 57524 -Mammoth 53830 -Mammy 65452 -Mamoru 62613 -Mampi 64423 -Mamta 62196 -Man 38124 -Man's 50514 -ManTech 63991 -Mana 54685 -Manabi 65452 -Manabu 63991 -Manado 64423 -Manag 58212 -Manage 41825 -ManageMobile 61362 -Manageability 58979 -Manageable 65170 -Managed 46061 -Management 33247 -Management's 59292 -Manager 36922 -Manager's 54078 -Managerial 55526 -Managers 46269 -Manages 56652 -Managing 41138 -Managment 59424 -Managua 62066 -Manakin 63601 -Manali 61256 -Manama 56262 -ManandWifeTV 57440 -Manas 59848 -Manassas 57238 -Manat 61584 -Manatee 55398 -Manaudou 64657 -Manaus 65170 -Manawatu 58919 -Manayunk 64201 -Mancha 62196 -Manchest 59101 -Manchester 42301 -Manchester's 62613 -Manchu 61818 -Manchurian 63601 -Mancina 63601 -Mancini 58802 -Mancuso 63991 -Manda 57046 -Mandaba 65170 -Mandakani 61940 -Mandal 60000 -Mandala 60078 -Mandalay 58113 -Mandamus 62762 -Mandan 63245 -Mandap 63419 -Mandarin 51229 -Mandarina 65452 -Mandate 55738 -Mandated 64201 -Mandates 61472 -Mandatory 53301 -Mandeep 64657 -Mandel 59039 -Mandela 54226 -Mandela's 63601 -Mandelbrot 64657 -Mandell 62196 -Mandelson 58577 -Mandeville 58979 -Mandi 60078 -Mandible 65170 -Mandibular 62613 -Mandigo 59101 -Mandingo 58802 -Mandir 59164 -Mandira 62917 -Mando 64905 -Mandolin 55604 -Mandolins 65452 -Mandrake 58632 -Mandriva 53952 -Mandurah 58470 -Mandy 50848 -Mandy's 63245 -Mane 58162 -Maneatis 63991 -Manele 65170 -Manes 64201 -Manet 63991 -Manette 63792 -Maneuver 62196 -Maney 61940 -Manfred 55684 -Manfredo 65452 -Manfrotto 62331 -Manga 48590 -Mangal 63991 -Mangalore 54770 -Mangan 60405 -Manganese 55500 -Mangano 65170 -Mangas 61940 -Mangatawhiri 65452 -Mange 64423 -Mangement 59164 -Manger 59491 -Mangere 62762 -Manges 63245 -Mangia 62066 -Mangini 62762 -Mango 52472 -Mangos 65452 -Mangosteen 57785 -Mangrove 62196 -Mangroves 64905 -Mangum 59774 -Manhasset 62196 -Manhattan 45347 -Manhattan's 59357 -Manhatten 64905 -Manheim 61584 -Manhole 59101 -Manhood 62469 -Manhunt 60952 -Mani 58417 -Mania 49834 -Maniac 56791 -Maniacs 59292 -Maniax 63991 -Manic 57358 -Manicure 56551 -Manicures 61584 -Manifest 58417 -Manifestation 62613 -Manifestations 60580 -Manifesting 63245 -Manifesto 53392 -Manifold 55348 -Manifolds 60856 -Manik 62331 -Manila 49405 -Manilla 63077 -Manilow 59774 -Manion 63077 -Manipal 65170 -Manipulate 64201 -Manipulating 63077 -Manipulation 52872 -Manipulative 62066 -Manipulatives 62469 -Manipulator 61818 -Manipur 58313 -Manish 57358 -Manisha 62469 -Manitoba 47668 -Manitou 58523 -Manitoulin 65452 -Manitowish 64905 -Manitowoc 58365 -Manjimup 63245 -Manju 65452 -Manjula 63991 -Mankato 57831 -Mankind 57440 -Mankiw 61699 -Mankiw's 65452 -Manley 56618 -Manlio 65170 -Manly 53865 -Manmade 63991 -Manmohan 57524 -Mann 50591 -Mann's 61699 -Manna 60856 -Manne 64657 -Manned 63419 -Mannequin 57238 -Mannequins 64201 -Manner 59357 -Manners 54560 -Mannheim 57318 -Manni 65452 -Mannie 62469 -Manning 49302 -Manning's 60000 -Manningham 64657 -Mannington 62469 -Mannion 61940 -MannishBoy 65452 -Mannix 63601 -Mannoroth 60762 -Manns 60405 -Manny 50940 -Manny's 64657 -Mano 57160 -Manoa 61256 -Manohar 64905 -Manohari 63991 -Manohla 65452 -Manoir 64905 -Manoj 58688 -Manolo 57970 -Manolo's 65452 -Manon 62331 -Manone 64423 -Manoogian 64201 -Manor 47456 -Manor's 64905 -Manors 63601 -Manorville 65452 -Manos 63792 -Manotel 65170 -Manowar 65170 -Manpower 55552 -Mans 53934 -Mansairaku 64905 -Mansbridge 64423 -Manse 64905 -Mansell 62613 -Mansfield 51175 -Mansion 50654 -Mansions 57609 -Manslaughter 63245 -Manson 53038 -Manson's 63419 -Mansoor 62762 -Mansour 58860 -Mansoura 61818 -Mansur 62196 -Manswers 65170 -Manta 52339 -Manteca 61818 -Mantel 56200 -Mantels 62196 -Mantis 56899 -Mantle 58162 -Manton 65452 -Mantra 55014 -Mantras 62066 -Mantua 61818 -Manu 56756 -Manual 42083 -Manually 58919 -Manuals 48093 -Manuel 49022 -Manuel's 64657 -Manuela 59424 -Manuf 64423 -Manufactory 62469 -Manufacture 52739 -Manufactured 49541 -Manufacturer 43351 -Manufacturer's 53095 -Manufacturers 43389 -Manufactures 56972 -Manufacturing 42074 -Manufacturingtalk 61940 -Manuka 63991 -Manukau 57876 -Manulife 63419 -Manure 59774 -Manus 65170 -Manuscript 46569 -Manuscripts 55014 -Manvel 60405 -Manville 60580 -Manx 59848 -Many 38723 -Manzanillo 63792 -Manzanita 65170 -Manzano 63792 -Manze 63077 -Manzo 64905 -Maná 64657 -Mao 53796 -Mao's 61940 -Maoist 60238 -Maoists 62613 -Maori 50514 -Maou 62917 -Map 31073 -MapCollapse 61584 -MapInfo 59630 -MapPoint 56452 -MapQuest 45775 -MapSend 64657 -MapSource 65170 -Mapa 57566 -Mapas 64657 -Mapes 64905 -Maphack 65170 -Maple 46409 -MapleStory 56652 -MapleTip 64201 -Mapleleaf 65452 -Maples 61152 -Mapleton 62196 -Maplewood 57482 -Maplin 59630 -Maploader 64905 -Mapmarker 52818 -Maponics 62331 -Mapp 63077 -Mappa 63601 -Mapped 55992 -Mapper 57440 -Mappers 64905 -Mapping 47702 -Mappings 62917 -Mapplethorpe 63419 -Mapquest 51521 -Maps 38817 -Mapsco 59357 -Mapuche 65452 -Maputo 58979 -Maquette 63991 -Maqui 62469 -Maquiladora 57696 -Maquoketa 63601 -Mar 35798 -MarSOC 64201 -Mara 54226 -Maracaibo 61256 -Maradona 60157 -Marae 65452 -Marah 65452 -Marais 59491 -Maral 65170 -Maralyn 64423 -Maran 61699 -Marana 61051 -Maranatha 61699 -Maranello 60492 -Maranon 64657 -Marantz 58017 -Marat 61362 -Maratea 64657 -Marathi 55084 -Marathokampos 63245 -Marathon 48139 -Marathons 63077 -Marauder 60670 -Marauders 61699 -Maraudon 61051 -Marbella 58688 -Marble 49802 -Marbled 63991 -Marblehead 61940 -Marbles 59424 -Marburg 60762 -Marburger 65452 -Marbury 60000 -Marbut 60762 -Marc 44630 -Marc's 62917 -Marca 65170 -Marcasite 64423 -Marceau 60670 -Marcel 51396 -Marcela 59774 -Marcell 63077 -Marcella 58577 -Marcelle 63245 -Marcello 57084 -Marcellus 62196 -Marcelo 56324 -March 33340 -March's 64905 -Marcha 62066 -Marchal 65452 -Marchand 62196 -Marchant 62196 -Marche 59560 -Marcheline 63792 -Marches 63601 -Marchese 64423 -Marchesini 61362 -Marchetti 62917 -Marching 51835 -Marché 61256 -Marci 60078 -Marcia 52351 -Marciano 56899 -Marcie 62469 -Marcil 64201 -Marcin 59491 -Marcio 63991 -Marco 47960 -Marco's 59923 -Marconi 58745 -Marcos 52141 -Marcotte 65452 -Marcu 65452 -Marcum 61818 -Marcus 46800 -Marcy 56862 -Mardell 65170 -Marden 63077 -Mardi 53646 -Mardis 65452 -Marduk 61472 -Mardy 62762 -Mare 52085 -Marechal 63792 -Maree 62066 -Mareeba 64657 -Marek 56293 -Marella 61818 -Marelli 64423 -Maren 63077 -Marengo 60762 -Mares 59292 -Maresh 65452 -Marfa 64905 -Marfan 59164 -Marg 60000 -Marga 63792 -Margao 65170 -Margaret 45402 -Margaret's 59357 -Margarets 65452 -Margaretta 64905 -Margarine 63601 -Margarita 53485 -Margaritas 64423 -Margaritaville 63601 -Margate 57785 -Margaux 63245 -Marge 55766 -Margeaux's 64905 -Margery 62196 -Margherita 61256 -Margie 57609 -Margin 52858 -Marginal 55849 -Margins 57653 -Margit 63601 -Margo 57238 -Margolin 65452 -Margolis 60078 -Margot 55934 -Margret 63245 -Marguerite 57653 -Margulies 63077 -Mari 54946 -Maria 43258 -Maria's 58470 -Mariachi 60580 -Mariah 48933 -Mariah's 62917 -Mariam 61362 -Marian 51942 -Mariana 48217 -Marianas 60157 -Mariani 63792 -Marianna 57609 -Marianne 52739 -Mariano 56972 -Maribel 62331 -Maric 63991 -Maricopa 56293 -Marie 44473 -Marie's 60321 -Marieke 64905 -Mariel 64423 -Mariela 63419 -Mariella 62613 -Marielle 64657 -Maries 64657 -Marietta 52559 -Mariette 62613 -Marigold 60078 -Marigot 64657 -Marihuana 64423 -Marija 59630 -Marijuana 51000 -Marika 63077 -Marikina 64423 -Mariko 62469 -Marillion 57482 -Marilyn 47592 -Marilyn's 61584 -Marilynn 64905 -Marimba 62613 -Marin 49541 -Marina 47266 -Marina's 64905 -Marinada 63245 -Marinade 60670 -Marinades 62331 -Marinara 62917 -Marinas 56200 -Marinate 63419 -Marinated 61472 -Marine 41302 -Marine's 65170 -Marineland 63077 -Marinelli 64657 -Mariner 55178 -Mariner's 63601 -Mariners 51610 -Marines 51814 -Marinette 64201 -Marini 61940 -Marino 46742 -Marino's 65170 -Mario 44045 -Mario's 58417 -Marion 48093 -Marion's 65170 -Marionette 63601 -Marios 62196 -Mariposa 58113 -Maris 58688 -Marisa 53109 -Mariscal 65170 -Mariscos 57009 -Mariska 60762 -Marisol 63077 -Marissa 55657 -Marist 56721 -Marista 61362 -Maristas 59424 -Marit 63077 -Marital 53423 -Maritim 63419 -Maritime 48226 -Maritimes 57923 -Maritimo 64423 -Maritza 65452 -Marius 56110 -Mariusz 63792 -Mariya 65452 -Mariza 62469 -Marió 65170 -Marja 65452 -Marjan 62917 -Marjorie 52940 -Mark 36496 -Mark's 54902 -MarkForDelete 65452 -Markarian 65170 -Markdale 62762 -Marke 63991 -Marked 35881 -Markee 63792 -Marker 51670 -Markers 51610 -Market 36865 -Market's 58860 -MarketBeat 65452 -MarketPlace 55037 -MarketWatch 52315 -Marketa 62331 -Marketed 59039 -Marketer 58162 -Marketer's 65170 -Marketers 56827 -Marketing 36876 -MarketingProfs 65452 -MarketingVOX 63792 -Marketingservicestalk 65452 -Marketplace 41240 -Marketplaces 65170 -Markets 41104 -Marketwatch 58523 -Marketwire 61152 -Markey 61362 -Markham 55578 -Markie 63792 -Marking 51856 -Markings 58632 -Markku 64423 -Markland 63601 -Markley 63601 -Markman 60580 -Marko 56618 -Marko's 64905 -Markos 62331 -Markov 50108 -Markovian 62917 -Markowitz 61256 -Marks 48174 -Marksman 64657 -Marksmanship 62917 -Markt 58979 -Markup 54540 -Markus 52534 -Markwort 64905 -Marky 61362 -Marky's 65452 -Marl 64423 -Marla 58417 -Marland 64905 -Marlboro 57084 -Marlborough 53052 -Marlee 64423 -Marleen 60580 -Marlena 65170 -Marlene 55014 -Marlex 60856 -Marley 50067 -Marley's 64423 -Marlies 65170 -Marlin 52459 -Marling 64201 -Marlins 53423 -Marlo 62762 -Marloes 65170 -Marlon 54581 -Marlow 57318 -Marlowe 59491 -Marlton 64657 -Marly 64423 -Marlyn 64201 -Marlyse 65452 -Marmaduke 62917 -Marmalade 58979 -Marmara 60952 -Marmaris 62331 -Marmite 65170 -Marmol 61051 -Marmot 56618 -Marne 59292 -Marner 64905 -Marni 62331 -Marnie 61051 -Marnier 64423 -Maroc 59848 -Maron 62331 -Maroney 63792 -Maroochydore 63077 -Maroon 50638 -Marotta 65170 -Maroubra 62196 -Marpac 62613 -Marple 64423 -Marquardt 61472 -Marque 58860 -Marquee 55604 -Marquees 62331 -Marques 56935 -Marquesas 64905 -Marquess 62331 -Marquette 53423 -Marquez 56110 -Marquis 53679 -Marquise 60580 -Marr 58745 -Marra 60492 -Marrakech 56356 -Marrakesh 57653 -Marrero 63601 -Marri 64905 -Marriage 44531 -Marriages 55154 -Marrickville 62762 -Married 48505 -Marries 63991 -Marriot 62613 -Marriott 47641 -Marriott's 60157 -Marrone 64201 -Marrow 55684 -Marrs 62331 -Marry 55500 -Marrying 61818 -Marrón 62066 -Mars 46112 -Marsa 64657 -Marsal 65170 -Marsala 64657 -Marsalis 61051 -Marsares 64905 -Marsch 65452 -Marschall 62762 -Marsden 55154 -Marseille 54321 -Marseilles 59227 -Marsh 49553 -Marsh's 63601 -Marsha 55178 -Marshal 55037 -Marshal's 61256 -Marshall 42902 -Marshall's 58745 -Marshallese 64657 -Marshalls 58212 -Marshalltown 62331 -Marshals 59630 -Marshes 60321 -Marshfield 57440 -Marshmallow 60157 -Marshmallows 65452 -Marsteller 65452 -Marsters 63419 -Marston 58745 -Marston's 65170 -Mart 51396 -Marta 55130 -Marte 61699 -Martel 58688 -Martell 59424 -Martello 65170 -Marten 59424 -Martens 58860 -Marth 62762 -Martha 46089 -Martha's 56388 -MarthaStewart 62066 -Marthe 65170 -Marti 57923 -Martial 46757 -MartialTalk 65452 -Martian 55793 -Martians 64201 -Martijn 58860 -Martin 39786 -Martin's 52244 -MartinRacingPerf 64905 -Martina 54133 -Martindale 61256 -Martine 58523 -Martineau 61051 -Martinelli 64905 -Martinez 50599 -Martingale 65170 -Martini 52051 -Martinique 47388 -Martinis 61472 -Martino 60078 -Martins 54264 -Martinsburg 59848 -Martinsville 56551 -Martinus 62762 -Martius 65452 -Marton 61699 -Martorelli 59702 -Marts 63792 -Martti 63792 -Marty 49596 -Marty's 61940 -Martyn 56652 -Martyr 59357 -Martyrdom 63245 -Martyrs 59774 -Martz 62331 -Martín 59848 -Martínez 58860 -Maru 62917 -Marui 61256 -Maruti 57238 -Maruyama 63077 -Marv 62613 -Marvel 47637 -Marvell 60856 -Marvellous 62917 -Marvelous 58470 -Marvels 59491 -Marvin 49893 -Marvin's 63077 -Marwan 62469 -Marware 65170 -Marwari 65452 -Marwick 64905 -Marx 52765 -Marx's 62917 -Marxian 63419 -Marxism 59630 -Marxist 56687 -Marxists 64657 -Mary 39537 -Mary's 49336 -MaryAnn 64657 -MaryEllen 63601 -MaryShop 64657 -Maryam 60000 -Maryan 61584 -Maryann 59491 -Maryanne 64423 -Marybeth 64657 -Maryborough 58802 -Marygrove 64657 -Maryland 41038 -Maryland's 58017 -Marylebone 57653 -Marylin 58979 -Marylou 64905 -Marymount 59923 -Maryn 64905 -Maryport 63601 -Marys 55348 -Maryse 63991 -Marysville 57318 -Maryville 59039 -Marz 64905 -Marzipan 60580 -Marzo 61472 -Marzocchi 61051 -Maré 64905 -María 55793 -Mas 54459 -Masa 62762 -Masaaki 62762 -Masada 64423 -Masafumi 63991 -Masaharu 63991 -Masahiko 61940 -Masahiro 59424 -Masai 58860 -Masakazu 64423 -Masaki 60670 -Masako 62196 -Masala 51502 -Masami 62613 -Masanori 63991 -Masao 62917 -Masaru 65452 -Masaryk 58688 -Masashi 62196 -Masato 61051 -Masatoshi 63419 -Masayuki 60856 -Mascara 56551 -Maschinenbau 63419 -Mascot 54770 -Mascots 59357 -Mascotte 65452 -Masculine 61699 -Masculinity 64201 -Mase 63601 -Masekela 64905 -Maserati 51202 -Maseru 65170 -Mash 53779 -Masha 61472 -Mashable 61256 -Mashed 58577 -Masher 59039 -Mashhad 64905 -Mashonaland 65170 -Mashpee 62762 -Mashreq 61152 -Mashup 57609 -Mashups 59292 -Masi 58065 -Masini 61472 -Masjid 58919 -Mask 49435 -Masked 58860 -Masking 57876 -Masks 51000 -Maslin 65170 -Maslov 64201 -Maso 64423 -Masog 65452 -Mason 46534 -Mason's 60670 -Masonic 53597 -Masonite 65170 -Masonry 52546 -Masons 59101 -Masood 60670 -Masoods 63419 -Maspalomas 64905 -Masque 58979 -Masquer 61256 -Masquerade 56518 -Masques 63991 -Mass 43777 -MassCHIP 64905 -MassHousing 61152 -MassMutual 64905 -Massa 58470 -Massachusetts 40788 -Massacre 53679 -Massage 45650 -Massager 59774 -Massagers 58979 -Massages 61362 -Massaging 62762 -Massapequa 62762 -Massaro 61362 -Massaron 59774 -Masscool 64201 -Masse 63792 -Massel 64905 -Massena 64905 -Masser 60670 -Masses 56972 -Massey 53847 -Massie 59491 -Massif 62331 -Massillon 63601 -Massimiliano 64201 -Massimo 55992 -Massive 49614 -MassiveBlips 63077 -Massively 54835 -Masson 59774 -Masson's 65170 -Massoud 64905 -Mast 56021 -Masta 63245 -Mastectomy 63077 -Master 39011 -Master's 50040 -MasterCard 50242 -MasterControl 63991 -MasterCraft 60580 -Mastercard 53899 -Masterclass 57785 -Masterclasses 64423 -Mastercraft 62331 -Mastered 63077 -Masterful 61940 -Mastering 52062 -Mastermind 57923 -Mastermix 62066 -Masterpiece 55821 -Masterpieces 58417 -Masterplan 59560 -Masterprint 65452 -Masters 45821 -Masterseek 65452 -Masterson 60952 -Masterton 60405 -Masterworks 60157 -Mastery 55992 -Masthead 52546 -Masti 60238 -Mastic 62762 -Mastiff 57199 -Mastodon 62066 -Masts 64657 -Masturbate 64201 -Masturbates 64905 -Masturbating 59923 -Masturbation 54188 -Masturbators 64657 -Masuda 60580 -Masur 62613 -Mat 49470 -MatLab 59039 -Mata 57046 -Matador 56652 -Matagorda 63077 -Matanzas 65452 -Matauri 60157 -Matava 64905 -Match 42122 -Matcha 65170 -Matchbox 56324 -Matchday 58688 -Matched 56791 -Matcher 55934 -Matches 46491 -Matching 45599 -Matchless 64905 -Matchlight 58212 -Matchmaker 59702 -Matchmaking 57278 -Matchstick 62613 -Matchup 62917 -Matchups 59630 -Mate 42676 -Matej 64423 -Mateo 52423 -Mateos 65452 -Mater 54302 -Matera 64657 -Materazzi 65170 -Materia 61051 -Material 43223 -Materialism 65452 -Materials 39588 -Materiel 59164 -Materielman 62613 -Maternal 51640 -Maternity 48243 -Mates 56721 -Mateus 62917 -Math 44442 -MathLink 64905 -MathML 46931 -MathWorks 58979 -MathWorld 64657 -Mathematica 55202 -Mathematical 46215 -Mathematically 63792 -Mathematicians 62762 -Mathematics 43469 -Mathematik 63077 -Matheney 65452 -Mather 58417 -Mathers 62613 -Matheson 57566 -Mathew 54792 -Mathews 55738 -Mathewson 65452 -Mathfuzzlog 62613 -Mathias 56452 -Mathieu 55552 -Mathieu's 65452 -Mathilda 63991 -Mathilde 61940 -Mathis 56485 -Maths 53407 -Mathur 59848 -Mathura 62469 -Mathworks 63601 -Mati 65452 -Matias 60762 -Matic 61940 -Matilda 55578 -Matilde 65170 -Matin 63419 -Matinee 61584 -Mating 58523 -Matisse 57923 -Matisyahu 61584 -Matisz 65452 -Matix 59039 -Matiz 63991 -Matlab 55793 -Matlacha 63419 -Matlock 59357 -Mato 62613 -Matondkar 64657 -Matos 63245 -Matra 64657 -Matranga 59357 -Matric 62066 -Matrices 60000 -Matriculation 61362 -Matrigel 65452 -Matrimonial 56899 -Matrimonials 58979 -Matrimony 60492 -Matrix 45540 -Matron 64905 -Matrox 56721 -Mats 49682 -Matshita 60952 -Matson 60580 -Matstone 65170 -Matsubara 63419 -Matsuda 60000 -Matsui 60157 -Matsumoto 57923 -Matsumura 64905 -Matsumushi 64423 -Matsuo 63245 -Matsuoka 62917 -Matsuri 62917 -Matsushima 64905 -Matsushita 56756 -Matsuura 64423 -Matsuyama 63245 -Matsuzaka 62066 -Matt 41616 -Matt's 56791 -MattCasters 63245 -Mattapan 65452 -Matte 52661 -Matted 62917 -Mattei 62917 -Mattel 54581 -Matteo 56721 -Matter 45064 -Matterhorn 62762 -Mattern 64423 -Matters 45501 -Matteson 61051 -Matthew 43454 -Matthew's 59292 -Matthews 49124 -Matthey 65452 -Matthias 53301 -Matthieu 60580 -Matti 58860 -Mattias 61818 -Mattie 58860 -Matting 61362 -Mattingly 61256 -Mattioli 64657 -Mattmovie 64423 -Matton 64423 -Mattoon 60321 -Mattox 65452 -Mattress 50766 -Mattress's 65170 -Mattresses 54078 -Mattson 59923 -Mattsson 65170 -Matty 58523 -Maturation 61051 -Mature 47328 -Matures 63991 -Maturity 55877 -Matusik 65170 -Matusow 64657 -Matz 63792 -Matériau 60952 -Mau 59560 -Maud 56585 -Mauda 63245 -Maude 58688 -Maudie 64905 -Maudsley 64423 -Maugham 61584 -Maui 49720 -Maul 57482 -Maulana 63077 -Mauldin 63792 -Maule 65170 -Mauls 61362 -Maumee 63991 -Maun 64905 -Mauna 61256 -Maunganui 63601 -Maupin 61584 -Maur 65452 -Maura 56899 -Maureen 46392 -Maurer 58470 -Maurice 50277 -Mauricio 57876 -Maurie 64423 -Mauris 65170 -Mauritania 47057 -Mauritanian 63601 -Mauritian 63419 -Mauritius 45835 -Maurizio 56687 -Mauro 55821 -Maury 58212 -Maurya 64423 -Maus 60856 -Mauser 64905 -Mausoleum 60492 -Mauss 63077 -Mauss's 64657 -Mauve 63419 -Mauviel 64423 -Mav 62762 -Maven 53597 -Mavens 61472 -Maver 65452 -Maverick 53517 -Mavericks 53830 -Mavic 61256 -Mavis 58745 -Mavs 64905 -Maw 60952 -Mawes 60405 -Mawr 58632 -Mawson 63245 -Max 41276 -Max's 59774 -MaxBat 60405 -MaxConsole 62917 -MaxDB 64905 -MaxLevel 63601 -MaxMara 65452 -MaxPreps 42013 -MaxRows 62331 -MaxSize 62917 -Maxam 65452 -Maxed 65452 -Maxell 59560 -Maxey 65452 -Maxfield 64201 -Maxfli 60321 -Maxi 53630 -Maxicare 64905 -Maxie 64423 -Maxillary 62469 -Maxillofac 58523 -Maxillofacial 56827 -Maxim 50758 -Maxim's 62613 -Maxima 54902 -Maximal 58470 -Maxime 59164 -Maximilian 60000 -Maximinus 65170 -Maximise 65170 -Maximising 64201 -Maximize 54499 -Maximizer 63245 -Maximizes 64657 -Maximizing 58017 -Maximo 60157 -Maximov 65170 -Maxims 65452 -Maximum 44140 -Maximus 56110 -Maximuscle 64657 -Maxine 55373 -Maxis 58262 -Maxon 59560 -Maxpreps 65170 -Maxtech 65452 -Maxthon 61051 -Maxtor 54341 -Maxtor's 63245 -Maxum 63991 -Maxwell 50220 -Maxwell's 58523 -Maxwellian 62469 -Maxx 55348 -Maxxima 61699 -Maxxis 60492 -Maxxum 64423 -May 31049 -May's 58365 -Maya 48872 -Mayall 64657 -Mayan 55526 -Mayank 65170 -Mayawati 65452 -Maybach 53613 -Maybank 64201 -Maybe 42762 -Maybelle 64657 -Maybelline 63245 -Mayberry 62196 -Mayda 63601 -Mayday 60492 -Mayen 51330 -Mayer 51229 -Mayer's 61472 -Mayers 65170 -Mayerthorpe 62066 -Mayes 60405 -Mayfair 54540 -Mayfield 54879 -Mayflower 57440 -Mayhem 52872 -Mayhew 61362 -Mayline 63991 -Maynard 54706 -Maynard's 65452 -Mayne 61584 -Maynooth 63077 -Mayo 49028 -Mayonnaise 56485 -Mayor 43214 -Mayor's 51248 -Mayoral 58979 -Mayorga 64423 -Mayors 57923 -Mayotte 48633 -Mayport 64657 -Mayra 62613 -Mayrhofen 64423 -Mays 55793 -Maysville 63419 -Maytag 55107 -Maytals 64201 -Mayumi 62762 -Mayville 61362 -Mayweather 60000 -Maywood 58802 -Maz 65452 -Maza 65452 -Mazar 65452 -Mazatlan 59357 -Mazaya 64657 -Mazda 45629 -Mazda's 63991 -Mazdaspeed 63792 -Maze 54207 -Mazel 63792 -Mazen 63077 -Mazes 63601 -MazikBeats 64905 -Mazinkaiser 61472 -Mazo 65452 -Mazowiecka 62917 -Mazrigos 64657 -Mazur 63991 -Mazurka 62762 -Mazza 63245 -Mazzi 61818 -Mb 41343 -Mba 65170 -MbePoint 64657 -MbeSendCommand 62917 -MbeSendDataPoint 63419 -Mbeki 61256 -Mbit 62762 -Mbp 65170 -Mbps 54078 -Mbytes 62469 -Mc 48756 -McAdam 64201 -McAdams 54857 -McAdoo 63419 -McAfee 48292 -McAleer 64905 -McAlister 60580 -McAllen 60078 -McAllister 57318 -McAlpine 64201 -McAndrew 64657 -McArdle 59774 -McArthur 58262 -McAteer 64657 -McAuley 61051 -McAuliffe 62331 -McAvoy 61152 -McBain 65452 -McBone 63245 -McBride 55014 -McBryde 63419 -McBush 64657 -McCAIN 62469 -McCabe 56452 -McCafferty 64201 -McCaffery 64201 -McCaffrey 61699 -McCain 38646 -McCain's 45673 -McCains 58162 -McCaint 65452 -McCalister 62196 -McCalister's 64423 -McCall 55202 -McCall's 63991 -McCallie 65452 -McCallum 58470 -McCandless 61940 -McCann 54170 -McCann's 65170 -McCargo 64423 -McCarran 52571 -McCarren 63601 -McCarron 62469 -McCarry 65452 -McCarter 64657 -McCarthy 50932 -McCarthy's 62762 -McCarthyism 65170 -McCartney 51148 -McCartney's 61152 -McCarty 59630 -McCarver 63792 -McCaskill 64423 -McCaslin 63245 -McCauley 62066 -McCaw 63991 -McClain 59424 -McClanahan 65452 -McClane 65170 -McClaren 59702 -McClatchy 56021 -McClean 65170 -McCleary 64201 -McClellan 57524 -McClelland 60952 -McClendon 60405 -McClendon's 64657 -McClintock 56585 -McClinton 64201 -McCloskey 63419 -McCloud 60670 -McClure 56972 -McClurg 65452 -McClurkin 64201 -McCluskey 65170 -McCollum 61940 -McComas 64423 -McComb 61699 -McCombs 65452 -McConaughey 60157 -McConnell 53695 -McConville 64657 -McCook 64201 -McCool 59424 -McCord 61051 -McCorkle 63601 -McCormack 57199 -McCormick 52584 -McCourt 65452 -McCowan 62762 -McCown 64423 -McCoy 52805 -McCoy's 62196 -McCoys 65452 -McCracken 58979 -McCrary 63419 -McCray 63077 -McCrea 60762 -McCready 65452 -McCreary 62762 -McCrory 62066 -McCue 63792 -McCullagh 62613 -McCulloch 56485 -McCullough 55934 -McCully 63991 -McCumber 65452 -McCune 65170 -McCurdy 62613 -McCurry 65170 -McCusker 65452 -McCutcheon 62613 -McD 64201 -McDaniel 57440 -McDavid 63419 -McDermott 56231 -McDevitt 62469 -McDonald 48918 -McDonald's 51541 -McDonalds 54946 -McDonnell 56687 -McDonough 54499 -McDougall 60762 -McDowall 62331 -McDowell 54302 -McDuffie 62917 -McEliece's 65170 -McElroy 58860 -McEnroe 59491 -McEntire 60762 -McEvoy 61152 -McEwan 60670 -McEwen 60405 -McFadden 57009 -McFall 65170 -McFargus 65170 -McFarland 57160 -McFarlane 57199 -McFly 56899 -McG 62917 -McGahee 63991 -McGarr 63077 -McGarry 62762 -McGarvey 64201 -McGaw 65452 -McGee 54380 -McGee's 65170 -McGeechan 65452 -McGhee 63991 -McGill 52739 -McGinley 61699 -McGinn 65170 -McGinnis 61051 -McGinty 62917 -McGladrey 65170 -McGlynn 63991 -McGonagle 65452 -McGough 63419 -McGovern 58632 -McGowan 56388 -McGrady 62917 -McGrane 65452 -McGrath 53533 -McGrath's 65170 -McGraw 53613 -McGreevey 63419 -McGregor 55423 -McGrew 64201 -McGruff 64905 -McGuigan 63792 -McGuinn 65170 -McGuinness 60580 -McGuinty 60762 -McGuire 54459 -McGwire 64201 -McHale 61818 -McHenry 57696 -McHugh 57524 -McIlroy 65452 -McIlvaine 65170 -McInnes 64905 -McIntire 63991 -McIntosh 55526 -McIntyre 55578 -McIver 64905 -McKINLEY 63792 -McKay 54792 -McKay's 64657 -McKean 60762 -McKee 55423 -McKeen 65452 -McKeesport 64201 -McKeever 61818 -McKellar 62469 -McKelvey 63245 -McKendree 65452 -McKenna 55711 -McKennitt 64905 -McKenzie 52791 -McKeon 62196 -McKeown 62196 -McKesson 55604 -McKibben 63991 -McKie 62469 -McKinlay 65170 -McKinley 54399 -McKinney 53010 -McKinnon 58162 -McKinsey 57440 -McKinzey 63419 -McKittrick 65170 -McKnight 58113 -McLACHLAN 64423 -McLachlan 58919 -McLachlin 64657 -McLagan 65452 -McLain 63077 -McLane 64905 -McLaren 53712 -McLaren's 63792 -McLarnon 63991 -McLaughl 61362 -McLaughlin 53613 -McLean 52363 -McLee 60670 -McLeish 63419 -McLellan 59630 -McLemore 60762 -McLendon 65170 -McLennan 59848 -McLeod 55130 -McLoughlin 61256 -McLuhan 65170 -McMILLAN 64423 -McMahan 64905 -McMahon 55250 -McMahon's 63419 -McManus 58313 -McMaster 55398 -McMichael 63245 -McMillan 55604 -McMillin 62762 -McMinn 63991 -McMinnville 64657 -McMullan 62613 -McMullen 59424 -McMurdo 61940 -McMurray 53138 -McMurry 65452 -McNab 65170 -McNabb 58162 -McNair 57653 -McNally 57046 -McNamara 57084 -McNamee 63245 -McNaught 62917 -McNaughton 61699 -McNeal 62331 -McNeely 63601 -McNeese 61940 -McNeil 57122 -McNeill 58523 -McNeilly 64423 -McNett 64657 -McNish 65452 -McNulty 59630 -McNutt 64423 -McParland 63245 -McPartland's 62469 -McPhail 65170 -McPhee 57566 -McPherson 56585 -McQ 64657 -McQuade 65170 -McQuaid 64201 -McQueen 54924 -McQuinn 64201 -McRae 56618 -McReynolds 63245 -McSPI 62469 -McShane 63077 -McShortstuff 65170 -McStagger 64905 -McSweeney 65170 -McSweeney's 64201 -McTaggart 62196 -McTigue 65452 -McVeigh 63792 -McVey 65452 -McWhertor 64201 -McWhirter 63991 -McWilliams 60492 -Mcafee 63792 -Mcallen 65452 -Mcallister 63245 -Mcbride 64423 -Mccain 56585 -Mccall 65452 -Mccann 64905 -Mccarthy 63601 -Mccartney 60000 -Mcconnell 64201 -Mccoy 65452 -Mcculloch 63991 -Mcdonald 57876 -Mcdonalds 64905 -Mcgrath 65170 -Mcgraw 62066 -Mchenry 65170 -Mcintosh 64423 -Mckee 65170 -Mckenzie 60157 -Mckinley 62066 -Mclaren 62613 -Mclaughlin 63077 -Mclean 61256 -Mcleod 62613 -Mcmahon 65452 -Mcnally 58417 -Mcneela 61818 -Mcp 64905 -Mcpherson 64905 -Mcqueen 63792 -Mcrae 65170 -Md 55474 -Me 35578 -Me's 64423 -MeCN 63601 -MeFi 62331 -MeL 58262 -MeOH 60000 -MeSH 42547 -MeV 52954 -Mea 60762 -Meacham 62613 -Mead 53917 -Meade 54133 -Meador 63792 -Meadors 63601 -Meadow 50932 -Meadowbrook 58017 -Meadowdale 65452 -Meadowlands 59702 -Meadowlark 63601 -Meadows 50446 -Meadowview 65170 -Meads 62917 -Meagan 58688 -Meaghan 58065 -Meagher 59101 -Meal 49867 -Meals 49529 -Mealtime 62917 -Mean 44114 -Meander 64423 -Meanderings 63991 -Meaning 50074 -Meaningful 58113 -Meaningless 65452 -Meanings 57122 -Means 48287 -Meant 57923 -Meantime 63991 -Meanwhile 54581 -Meare 57653 -Meare's 63419 -Mearns 60952 -Mears 59491 -Measles 60000 -Measurable 63792 -Measure 48413 -Measured 54041 -Measurement 45594 -Measurements 49645 -Measures 47694 -Measuring 48846 -Meat 46909 -Meatball 61818 -Meatballs 59630 -Meath 54924 -Meatloaf 61051 -Meatpacking 61472 -Meats 56140 -Mebane 64201 -Mecanique 64905 -Mecanismo 61472 -Mecca 55014 -Mech 57653 -MechQuest 63419 -MechSE 63077 -Mecha 62762 -Mechanar 61818 -Mechanic 48687 -Mechanic's 63792 -Mechanica 63991 -Mechanical 44675 -Mechanically 65452 -Mechanics 48413 -MechanicsMechatronicMetals 59227 -Mechanicsburg 63792 -Mechanicsville 61256 -Mechanism 50991 -Mechanisms 51867 -Mechanistic 62469 -Mechanix 64423 -Mechanized 64905 -Mechatronics 62762 -Meche 61699 -Mechel 64423 -Mechelle 64423 -Mecho 64657 -Meck 60952 -Mecklenburg 56652 -Med 40792 -MedCalc 63991 -MedElite 64423 -MedFools 65452 -MedGem 65452 -MedHelp 54706 -MedNotes 60670 -MedTech 61699 -MedTerms 63792 -MedWatch 62917 -Medaka 63991 -Medal 48706 -Medalist 61152 -Medallion 57046 -Medallions 61584 -Medals 52256 -Medan 64423 -Medanki 63792 -Medaphene 62917 -Meddelanden 63245 -Meddelelser 60580 -Meddling 65452 -Medea 64657 -Medecine 63419 -Medeiros 62762 -Medellin 59630 -Medeor 65452 -Mederma 62762 -Medeski 61256 -Medex 64905 -Medfield 64423 -Medfinds 65170 -Medford 54226 -Medi 61940 -MediLexicon 63991 -Media 33036 -Media's 56420 -MediaCenter 65170 -MediaCentre 65452 -MediaNews 60078 -MediaPlayer 63601 -MediaPro 64423 -MediaShift 64423 -MediaSmart 62613 -MediaSpan 65452 -MediaWiki 39158 -Mediacast 65452 -Mediadaten 65170 -Mediadesign 57970 -Mediaeval 63245 -Medial 60762 -Mediamatic 62196 -Median 48418 -Medians 63991 -Medias 63419 -Mediaset 65452 -Mediasonic 63991 -Mediate 63077 -Mediated 57923 -Mediates 61152 -Mediating 63245 -Mediation 52062 -Mediator 60238 -Mediators 60321 -Mediaweek 63792 -Mediawiki 64423 -Medic 57440 -Medica 59630 -Medicago 64657 -Medicaid 48372 -Medical 34867 -Medically 61940 -Medicare 46966 -Medicare's 64423 -Medicated 62196 -Medication 50350 -Medications 51193 -Medici 59848 -Medicina 56618 -Medicinal 52845 -Medicine 36579 -Medicine's 64423 -MedicineNet 60856 -Medicines 52244 -Medicinska 62469 -Medicom 61940 -Medics 62613 -Medicus 59630 -Medien 61256 -Medieval 48821 -Medifast 59774 -Medill 62613 -Medina 53271 -Medindia 63419 -Medinek 61818 -Medio 58162 -Mediocre 61256 -Mediocrity 64905 -Medion 60000 -Medios 65170 -Meditate 61818 -Meditation 51175 -Meditations 58688 -Mediterranean 45648 -Mediterraneo 63792 -Medium 43200 -Mediums 61699 -Medivh 60238 -Mediz 63601 -Medizin 60856 -Medizinische 61256 -Medknow 63245 -Medley 53695 -Medline 52954 -MedlinePlus 61152 -Medlock 64423 -Medrano 65170 -Meds 56721 -Medscape 51630 -Medtronic 60238 -Medullary 65170 -Medusa 60000 -Medved 62196 -Medvedev 60952 -Medway 53196 -Medword 65170 -Medwyn 62469 -Mee 56293 -MeeVee 59357 -Meebo 61362 -Meech 65452 -Meehan 59630 -Meek 58632 -Meeker 61699 -Meeks 59560 -Meelis 63245 -Meena 60952 -Meeps 61818 -Meer 59848 -Meera 60405 -Meerkat 63792 -Meerut 63077 -Meese 65452 -Meester 55037 -Meet 40240 -Meeting 38799 -Meetings 43099 -Meets 48624 -Meetup 45400 -Meetups 51600 -Mefeedia 56862 -Meg 52141 -Mega 47235 -MegaFlow 64905 -MegaPixel 63245 -MegaRAID 62762 -Megabit 64657 -Megabyte 64905 -Megabytes 53952 -Megachurch 65452 -Megadeth 58745 -Megadrive 65170 -Megalithic 64423 -Megaman 55657 -Megami 58365 -Megamix 59774 -Megan 47725 -Megan's 60580 -Megane 57970 -Megapack 62469 -Megaphone 62762 -Megapixel 56618 -Megapixels 56972 -Megaplex 63419 -Megapolis 65452 -Megarotic 62762 -Megastore 61818 -Megatech 61152 -Megatron 60856 -Megatv 63077 -Megaupload 54041 -Megavideo 63792 -Megaware 65170 -Megawatts 64423 -Megawhat 64657 -Meggett 63991 -Meghalaya 58417 -Meghan 55992 -Meghna 63792 -Mego 62917 -Megs 61818 -Megson 64905 -Meguiar's 62917 -Meguiars 65452 -Megumi 62762 -Meh 61051 -Meharry 59357 -Mehdi 60238 -Mehlich 63792 -Mehmed 63991 -Mehmet 57440 -Mehndi 63792 -Mehr 60321 -Mehran 64905 -Mehrdad 63245 -Mehrotra 64657 -Mehta 53316 -Mehul 65170 -Mei 55423 -Meier 56388 -Meier's 57876 -Meierhof 64657 -Meighan 64657 -Meigs 62917 -Meijer 57923 -Meiji 59560 -Meike 63792 -Meikle 62762 -Meiko 59560 -Mein 53153 -Meindl 64657 -Meine 61584 -Meineke 61472 -Meio 62613 -Meiosis 64905 -Meir 60078 -Meira 63991 -Meisel 64905 -Meisner 61940 -Meissner 60321 -Meister 60157 -Meithrin 63792 -Meixner 65170 -Meizu 64423 -Mejia 62613 -Mejor 61699 -Mejores 64657 -Mek 62762 -Mekong 57482 -Mel 48697 -Mel's 60670 -Mela 59774 -Melaka 62469 -Melaleuca 64201 -Melamine 56231 -Melancholy 56420 -Melanie 49494 -Melanin 63419 -Melanoma 55657 -Melasma 63601 -Melatonin 58365 -Melayu 52107 -MelayuNorsk 54360 -Melb 65452 -Melba 61362 -Melbourne 43261 -Melbourne's 58632 -Melcher 64905 -Melchert 64657 -Melchior 63792 -Meldrum 64905 -Mele 61699 -Melee 54727 -Meleklerden 64905 -Melendez 60762 -Melford 64201 -Melfort 62917 -Melgar 65452 -Melhor 65170 -Melhores 65452 -Melia 59923 -Melick 65170 -Melina 60580 -Melinda 53124 -Melisa 63601 -Meliss 62613 -Melissa 46379 -Melissa's 63077 -Melitta 63792 -Melksham 63792 -Melle 65170 -Mellel 63245 -Mellencamp 60580 -Mellin 61584 -Mellitus 59702 -Mello 58745 -Mellon 52571 -Mellor 62469 -Mellotron 65452 -Mellow 55552 -Melly 61940 -Melo 60000 -Melodic 58802 -Melodie 63991 -Melodies 59101 -Melodrama 64423 -Melody 51731 -Meloidogyne 63792 -Melon 54879 -Meloni 63601 -Melons 61818 -Melony 65170 -Meloy 64423 -Melquiades 65170 -Melrose 53124 -Melson 61152 -Melt 54096 -Meltdown 52584 -Melted 62762 -Melting 54302 -Melton 54041 -Melts 61472 -Meltzer 62331 -Melua 61051 -Melville 54226 -Melville's 64905 -Melvin 53779 -Melvindale 64657 -Melvins 64905 -Melvyn 62066 -Melyssa 65452 -Mem 57696 -Member 32257 -Member's 48436 -Memberlist 49999 -Members 35965 -Membership 41422 -Memberships 50848 -Membrane 50865 -Membranes 56687 -Membre 64423 -Membres 63991 -Meme 57482 -Memento 63601 -Memeo 62613 -Memeorandum 63991 -Memes 60670 -Memo 51846 -Memoir 57084 -Memoirs 52699 -Memon 60856 -Memorabilia 47615 -Memorable 52559 -Memoranda 58523 -Memorandum 51953 -Memorandums 63991 -Memorex 54302 -Memoria 61472 -Memorial 42854 -Memorial's 64905 -Memorials 54341 -Memoriam 56585 -Memoriams 65452 -Memories 47496 -Memorize 64423 -Memory 38829 -Memos 58365 -Memphis 45110 -Memórias 65170 -Men 40689 -Men's 38477 -MenDotStyle 64201 -Mena 56618 -Menace 53813 -Menachem 63601 -Menage 63792 -Menagerie 63419 -Menahem 65452 -Menangle 65452 -Menard 61256 -Menasha 62917 -Mencia 63419 -Mencken 62331 -Mencken's 64905 -Mend 58313 -Mende 60492 -Mendel 61699 -Mendelian 61699 -Mendelsohn 62917 -Mendelson 63792 -Mendelssohn 60580 -Mendenhall 59424 -Mendes 54380 -Mendez 58632 -Mendig 65170 -Mendigo 63077 -Mending 62762 -Mendip 63991 -Mendocino 57970 -Mendon 62066 -Mendonca 64423 -Mendonça 63601 -Mendota 60952 -Mendoza 55684 -Mendy 62762 -Meneame 59101 -Menendez 62762 -Menezes 55154 -Meng 56972 -Mengde 64657 -Menge 65452 -Mengedoth 62469 -Meni 65452 -Meniere's 65170 -Menifee 64423 -Meniketti 62917 -Meningeal 64905 -Meningitis 58113 -Meningococcal 61472 -Menino 64423 -Meniscus 65452 -Menlo 53454 -Menninger 64657 -Menno 61362 -Mennonite 56972 -Mennonites 63792 -Menomena 65170 -Menominee 64423 -Menomonee 58417 -Menon 58688 -Menopausal 61584 -Menopause 52534 -Menorah 60321 -Menorahs 65452 -Menorca 59227 -Menounos 61256 -Mens 44161 -Mensa 62196 -Mensaje 64201 -Mensajes 64201 -Mensano 62066 -Mensch 62613 -Menschen 62762 -Menstrual 58688 -Menstruation 62066 -Menswear 57238 -Ment 55202 -Menta 64423 -Mental 41153 -Mentalism 64201 -Mentalist 63419 -Mentality 60952 -Mentally 57524 -Mente 63792 -Menthol 62196 -Mentill 64423 -Mention 53196 -Mentioned 53533 -Mentions 57741 -Mento 63991 -Mentone 64657 -Mentor 51825 -Mentoring 53646 -Mentors 56262 -Mentorship 63077 -Mentos 62917 -Menu 40841 -MenuPix 63419 -Menudo 62762 -Menuet 64657 -Menuhin 63419 -Menuism 54439 -Menus 48345 -Menzel 62066 -Menzies 58470 -Meo 64657 -Meola 64423 -Meow 58262 -Mephisto 62613 -Mephitis 64201 -Mepis 64657 -Mequon 63991 -Mer 56050 -MerCruiser 63419 -Mera 59630 -Merah 62613 -Meranda 64201 -Merc 58802 -Mercado 57876 -Mercantil 60762 -Mercantila 65170 -Mercantile 56231 -Mercaptopurine 64423 -Mercator 61472 -Merced 55130 -Mercedes 47406 -Mercedez 64201 -Mercenaries 53813 -Mercenary 58313 -Mercer 50591 -Merch 57358 -Merchandise 46162 -Merchandiser 59848 -Merchandisers 64423 -Merchandising 53052 -Merchant 42316 -Merchant's 57440 -MerchantCircle 45168 -Merchants 48836 -Merci 58017 -Mercia 61818 -Mercier 56452 -Merciful 64201 -Merciless 63601 -Merck 52256 -Merck's 64423 -Merckens 65170 -Merckx 65452 -Mercola 62469 -Mercosur 62066 -Mercruiser 63077 -Mercure 57440 -Mercurial 65170 -Mercurio 64657 -Mercury 45535 -Mercury's 62066 -Mercutio 63792 -Mercy 50923 -Merdeka 64201 -Mere 55631 -Meredith 50576 -Meredith's 63792 -Merely 62331 -Merengue 63792 -Meret 64905 -Merete 64423 -Merge 53331 -Merged 56899 -Merger 52085 -Mergers 52210 -Merges 63792 -Merging 57609 -Meri 57566 -Merial 64201 -Meribel 65452 -Merida 59357 -Meriden 59848 -Meridex 65170 -Meridia 58065 -Meridian 50129 -Meridien 58313 -Meridious 65452 -Merimbula 63419 -Meringue 61699 -Merino 57238 -Merion 62066 -Merit 51762 -Meritage 63792 -Meritline 64201 -Meritorious 62469 -Merits 62066 -Meriva 65452 -Meriwether 61051 -Merkel 58017 -Merkin 64657 -Merkle 62917 -Merkley 63419 -Merkur 58919 -Merl 60492 -Merle 56551 -Merlin 52496 -Merling 63792 -Merlo 65452 -Merlot 54096 -Merlyn 65452 -Mermaid 53597 -Mermaids 62066 -Meron 64423 -Merona 64201 -Merovingian 64905 -Merrell 58470 -Merri 65170 -Merriam 60238 -Merrick 56262 -Merrie 61051 -Merrifield 63991 -Merrill 49764 -Merrillville 63077 -Merrily 62469 -Merrimac 60670 -Merrimack 58313 -Merriman 60762 -Merrion 62066 -Merrionette 64201 -Merritt 53679 -Merrow 58523 -Merry 50094 -Merrylands 63991 -Mersey 59101 -Merseybeat 63077 -Merseyrail 62196 -Merseyside 51888 -Merson 65170 -Merten 58979 -Mertens 61152 -Merthyr 54706 -Merton 54188 -Merton's 64657 -Meru 62762 -Merv 60952 -Mervyn 59101 -Mervyns 64657 -Merwe 64423 -Meryl 56687 -Merz 61362 -Mes 58365 -Mesa 45831 -Mesaj 64657 -Mesenchymal 61362 -Mesenteric 63245 -Mesh 47875 -Meshes 59039 -Meshing 59630 -Meslay 64657 -MesoWest 62917 -Mesoamerican 64201 -Mesoblast 62762 -Mesolithic 65170 -Meson 64657 -Mesopotamia 60000 -Mesopotamian 63991 -Mesoscale 64423 -Mesoscopic 59630 -Mesothelioma 43871 -Mesothelioms 61256 -Mesotherapy 65170 -Mesoyi 62066 -Mesozoic 60157 -Mesquite 56618 -Mess 49893 -Message 34292 -MessageBoard 63991 -MessageLabs 63792 -MessageLibrary 65170 -Messageboard 56551 -Messageboards 55711 -Messager 63792 -Messages 40030 -Messaging 47170 -Messe 58802 -Messed 64423 -Messenger 41839 -Messengers 55766 -Messer 60492 -Messerschmitt 61051 -Messi 57482 -Messiah 53407 -Messianic 59357 -Messier 63792 -Messina 58860 -Messing 59227 -Messner 63991 -Messrs 61472 -Messy 55793 -Mest 63601 -Mestre 63419 -Mesure 60670 -Met 45349 -Met's 62196 -MetArt 65170 -MetLife 57696 -Meta 46263 -MetaCafe 64905 -MetaCart 56388 -MetaCartSign 59424 -MetaFilter 55711 -MetaFrame 62331 -MetaLib 63792 -MetaPress 58979 -MetaStock 60580 -MetaTalk 58212 -MetaTrader 63601 -Metab 55202 -Metabo 64423 -Metaboli 63245 -Metabolic 52635 -Metabolism 50815 -Metabolite 62613 -Metabolites 61584 -Metacafe 50476 -Metacritic 49482 -Metadata 40941 -Metafile 63245 -Metafilter 60157 -Metagenics 62762 -Metairie 59848 -Metal 40002 -Metalcore 60670 -Metalhead 58162 -Metalingus 63077 -Metallic 49446 -Metallica 48677 -Metallica's 64905 -Metallum 63601 -Metallurgica 65170 -Metallurgical 57440 -Metallurgy 55226 -Metals 48256 -MetalsMagnetic 59227 -Metalware 64657 -Metalwork 61940 -Metalworking 57566 -Metamora 63419 -Metamorph 62469 -Metamorphic 64201 -Metamorphoses 64657 -Metamorphosis 60580 -Metaphase 64201 -Metaphilosophy 63601 -Metaphor 59702 -Metaphors 61699 -Metaphysical 60580 -Metaphysics 60856 -Metasearch 57358 -Metastable 55766 -Metastandards 64201 -Metastases 62331 -Metastasis 60492 -Metastatic 58417 -Metaweb 64201 -Metblogs 61940 -Metcalf 58688 -Metcalfe 58065 -Meteo 61051 -Meteor 56262 -Meteora 65170 -Meteorite 62762 -Meteorites 64201 -Meteorological 51985 -Meteorologisk 65170 -Meteorologist 62917 -Meteorology 55766 -Meteors 63077 -Meter 44535 -Metered 64201 -Metering 55657 -Meters 51963 -Metformin 62762 -Meth 56518 -Methadone 57741 -Methamphetamine 62331 -Methane 57876 -Methanococcus 64657 -Methanol 59702 -Metheny 64657 -Methinks 64905 -Methionine 61940 -Method 43447 -Methodist 49268 -Methodists 63601 -Methodius 63601 -Methodological 58523 -Methodologies 54283 -Methodology 50292 -Methods 41981 -Methotrexate 58632 -Methuen 61818 -Methven 64201 -Methyl 55448 -Methylation 59702 -Methylene 63077 -Methylphenidate 62613 -Metin 61940 -Metis 61818 -Metlife 64201 -Metolius 62762 -Metonymic 63991 -Metra 60856 -Metranidazol 60762 -Metre 56585 -Metres 58802 -Metric 51511 -Metrics 51482 -Metro 42779 -Metro's 63077 -MetroHealth 62613 -MetroLyrics 63792 -MetroPCS 62469 -MetroReach 64657 -MetroWest 63077 -Metrobank 64657 -Metroblogging 61699 -Metrobus 64657 -Metrocall 64423 -Metrodome 64201 -Metroeconomica 63792 -Metroid 54857 -Metroland 59702 -Metrolink 60321 -Metrologia 59292 -Metrologic 61940 -Metrology 59292 -Metromix 50394 -Metron 65170 -Metronet 64423 -Metronome 60321 -Metronomes 63792 -Metropass 64423 -Metroplex 61051 -Metropole 63245 -Metropolis 53646 -Metropolitan 43586 -Metropolitan's 65170 -Metrorail 63419 -Metros 61152 -Metrosexual 65452 -Metrowerks 64423 -Mets 49400 -Metso 62613 -Mette 63245 -Mettler 63991 -Metz 57653 -Metzger 61362 -Metzler 63245 -Meu 59923 -Meum 62762 -Meursault 64657 -Meus 65170 -Meuwissen 65452 -Mev 63245 -Mew 55738 -Mews 58523 -Mewtwo 65170 -Mex 56899 -MexR 60856 -Mexia 65452 -Mexicali 64201 -Mexican 43977 -Mexicana 52175 -Mexicano 61152 -Mexicanos 65170 -Mexicans 56420 -Mexico 37623 -Mexico's 54727 -Mey 63792 -Meyda 62762 -Meyer 49017 -Meyer's 58919 -Meyers 54601 -Meyrin 64423 -Meza 63792 -Mezco 65452 -Mezuzah 63991 -Mezzanine 58632 -Mezzo 62917 -Meán 61472 -Mfg 52399 -Mfr 54813 -Mfr's 61362 -Mfrs 61940 -Mfume 64201 -Mg 48314 -MgB 62469 -MgCl 53095 -MgO 58470 -MgSO 58919 -MgTiO 59227 -Mga 59164 -Mgmt 51434 -Mgr 56021 -Mgt 58212 -Mhuire 65452 -Mhz 60670 -Mi 49049 -MiB 52996 -MiG 64657 -MiGente 57831 -MiLB 63991 -MiNi 64657 -MiP 65170 -MiTAC 62331 -Mia 50122 -Mia's 63245 -Miah 61699 -Miami 40486 -Miami's 59292 -Miamisburg 60000 -Mian 62762 -Miao 63245 -Miartusova 63419 -Miata 56262 -Mic 52423 -Mica 56791 -Micaela 62613 -Micah 55178 -Mice 48533 -Micellar 65452 -Mich 58262 -Micha 61051 -Michael 36431 -Michael's 52805 -Michaela 58212 -Michaelangelo 63601 -Michaelis 62613 -Michaels 51741 -Michaelson 60492 -Michal 57278 -Michalak 64905 -Michalek 61152 -Michalski 65452 -Michaud 61256 -Michaux 64201 -Miche 65170 -Micheal 57046 -Michel 48736 -Michela 61584 -Michelangelo 57009 -Michelangelo's 64201 -Michele 49163 -Michelin 53301 -Michelin's 63245 -Micheline 64657 -Michell 65452 -Michelle 43174 -Michelle's 59424 -MichelleMatarSweetSixteen 63991 -Michelli 63077 -Michelman 64657 -Michelob 65170 -Michels 61362 -Michelson 60000 -Michi 62917 -Michiana 62469 -Michie 64201 -Michiel 61472 -Michigan 39564 -Michigan's 55398 -Michikawa 65170 -Michiko 61362 -Michizane 63792 -Michèle 63991 -Mick 49701 -Mick's 64657 -Mickel 64201 -Mickelson 59357 -Mickey 48980 -Mickey's 60580 -Mickeys 64905 -Mickie 58065 -Mickiewicz 63792 -Micky 58979 -Mico 64905 -Micon 64201 -Micra 63991 -Micrel 64905 -Micro 44905 -Micro's 64423 -MicroFlight 65452 -MicroPlace 50906 -MicroRotofor 65170 -MicroSD 60078 -MicroSoft 65170 -MicroStation 64905 -MicroStrategy 65452 -Microanalysis 65452 -Microarray 56756 -Microarrays 61472 -Microbadges 62762 -Microbe 61256 -MicrobeWorld 56140 -Microbes 60000 -Microbial 53565 -Microbiol 49873 -Microbiological 59424 -Microbiologie 65170 -Microbiology 48230 -Microboards 65170 -Microbrews 59292 -Microcar 61699 -Microcassette 64201 -Microchip 58979 -Microcode 64657 -Microcomputer 62066 -Microcomputers 64905 -Microcontroller 59491 -Microcontrollers 58745 -Microcredit 62917 -Microcystis 61584 -Microdermabrasion 58802 -Microdochium 64201 -Microeconomic 64423 -Microeconomics 60580 -Microelectronic 58688 -Microelectronics 56231 -Microengineering 59292 -Microfiber 55631 -Microfiche 50923 -Microfilm 60157 -Microfinance 54664 -Microfluidic 63991 -Microfluidics 64905 -Microform 63991 -Microformats 65452 -Microglia 63792 -Micrographs 65452 -Microhardness 65452 -Microinjection 64657 -Micromachining 65452 -Micromechanics 59039 -Micromedex 62762 -Micron 54706 -Micronesia 47839 -Micronic 61699 -Micronutrient 62196 -Microorganisms 61584 -Microparticles 64657 -Microphone 51570 -Microphones 51721 -Microprocessor 58113 -Microprocessors 60321 -Microproducts 64905 -Micros 62331 -Microsatellite 61584 -Microsc 61940 -Microscale 64201 -Microscope 54041 -Microscopes 56827 -Microscopic 56293 -Microscopical 64201 -Microscopie 63792 -Microscopy 53095 -Microscopía 65452 -Microsemi 61472 -Microsite 63077 -Microsoft 35127 -Microsoft's 48821 -Microsofts 63792 -Microsomal 63419 -Microsporum 64905 -Microstar 65452 -Microstrip 61472 -Microstructural 62917 -Microstructure 58262 -Microstructures 63245 -Microsurgery 64423 -Microswitch 60405 -Microsymposium 60580 -Microsystems 52496 -Microtech 65170 -Microtek 61152 -Microtel 62917 -Microtubule 61472 -Microtubules 64657 -Microvascular 64657 -Microwave 48413 -Microwaves 56485 -Mics 58523 -Micscape 65452 -Mid 47011 -MidWest 64657 -Midas 57653 -Midazolam 57696 -Midcap 64657 -Midday 57358 -Middelburg 62762 -Middle 39210 -Middlebelt 65452 -Middleboro 64905 -Middlebrook 65170 -Middleburg 59292 -Middlebury 60157 -Middlefield 61362 -Middlemarch 63991 -Middlesbrough 51148 -Middlesex 51113 -Middleton 52940 -Middleton's 64905 -Middletown 52886 -Middleware 55906 -Middleweight 60238 -Middlewich 61256 -Mideast 57238 -Midfield 63077 -Midfielder 59424 -Midge 63245 -Midget 54685 -Midgets 59292 -Midi 53646 -Midis 62762 -Midkiff 65170 -Midland 48726 -Midlands 45809 -Midler 60762 -Midlevel 59039 -Midlife 62469 -Midlothian 55014 -Midna 60762 -Midnight 46531 -Midnight's 65170 -Midnite 63792 -Mido 62917 -Midori 59357 -Midpoint 62196 -Midrand 57358 -Midrange 62196 -Mids 62613 -Midseason 62762 -Midshipman 54601 -Midshipmen 64201 -Midsize 56324 -Midst 64201 -Midstream 61818 -Midsummer 57046 -Midterm 59774 -Midtown 50873 -Midtronics 65170 -Midvale 63601 -Midway 49446 -Midway's 65452 -Midweek 58162 -Midweight 64905 -Midwest 44617 -Midwestern 56050 -Midwife 57358 -Midwifery 52509 -Midwinter 63601 -Midwives 59039 -Midwood 63792 -Mie 58860 -Mieka 62469 -Mieka's 63792 -Miele 54519 -Mielec 63991 -Mien 62331 -Mier 65452 -Mierke 64657 -Miers 63991 -Mies 63601 -Miettinen 64423 -Mifflin 52635 -Mig 61362 -Might 48199 -Mighty 48413 -Mignon 61818 -Migraine 53066 -Migraines 58919 -Migrant 55014 -Migrants 60000 -Migrate 60238 -Migrates 64905 -Migrating 55250 -Migration 47679 -Migrations 62613 -Migratory 60157 -Migros 64201 -Miguel 48970 -Mihaela 63991 -Mihai 59424 -Mihaly 65170 -Miharu 63419 -Mihir 64905 -Miho 62469 -Mihov 64657 -Mihály 65170 -Mii 58212 -Mijas 60580 -Mijn 61699 -Mik 63991 -Mika 55500 -Mikado 63419 -Mikael 57160 -Mikaela 65170 -Mikasa 58979 -Mikayla 63419 -Mike 39192 -Mike's 52968 -Mikel 60078 -Mikes 57785 -Mikey 55084 -Mikhail 54749 -Mikheil 64201 -Miki 57923 -Mikkel 63419 -Mikkelsen 63792 -Mikko 61699 -Miklos 62196 -Miklós 64423 -Miko 59227 -Mikrobiol 59101 -Mikron 62469 -Mikrotik 63245 -Miku 65452 -Mikulski 65452 -Mil 54360 -Mila 57084 -Milagre 65452 -Milagros 64905 -Milam 61699 -Milan 47570 -Milan's 63419 -Milanese 65452 -Milango 65170 -Milani 58979 -Milano 51772 -Milano's 62331 -Milbank 59560 -Milbank's 61940 -Milberg 63419 -Milburn 63601 -Mild 52805 -Mildenhall 63601 -Mildew 60492 -Mildly 63792 -Mildred 55849 -Mildura 61256 -Mile 45961 -MileMaven 52982 -MileSplit 59560 -Mileage 48706 -Milena 59630 -Milenio 63792 -Miler 64201 -Miles 43294 -Milestone 52791 -Milestones 53470 -Miley 44644 -Miley's 62331 -Milf 54023 -Milford 51985 -Milfs 61152 -Mili 62066 -Milian 58212 -Miliary 65452 -Miliband 60238 -Milieu 60762 -Milieux 60078 -Mililani 60000 -Milind 63601 -Militant 60078 -Militants 60492 -Militaria 60078 -Military 40488 -Militia 56791 -Militias 62196 -Milk 47077 -MilkDrop 63991 -Milka 63601 -Milken 58919 -Milking 59848 -Milkmen 64905 -Milkround 63077 -Milkshake 62066 -Milkweed 65170 -Milky 55299 -Mill 45537 -Mill's 62917 -Milla 58212 -Millage 59164 -Millan 61699 -Millan's 64905 -Millar 56420 -Millard 57238 -Millbank 64423 -Millbrae 62469 -Millbrook 57923 -Millburn 64657 -Millcreek 63077 -Mille 59039 -Milled 63077 -Milledgeville 63601 -Millen 54023 -Millencolin 61699 -Millenia 64201 -Millenium 55299 -Millennia 63991 -Millennial 64201 -Millennials 65452 -Millennium 47031 -Miller 42321 -Miller's 53485 -Millers 59560 -Millersburg 63792 -Millersville 63077 -Millerton 65170 -Millet 61051 -Millets 65452 -Milli 55849 -MilliARC 63245 -Millian 64423 -Millicent 59424 -Millicom 65452 -Millie 55631 -Millie's 65452 -Milligan 58313 -Milligrams 61051 -Millikan 64423 -Milliken 59774 -Millikin 63601 -Millimeter 60952 -Milling 55274 -Millington 58417 -Million 43639 -Millionaire 53196 -Millionaire's 63077 -Millionaires 61152 -Millions 48309 -Millipore 56899 -Millis 64201 -Millman 63792 -Millmate 64201 -Millpond 64201 -Mills 45168 -Millstone 63245 -Milltown 60762 -Millville 61472 -Millwall 58065 -Millward 64657 -Millwood 62613 -Millwork 59560 -Millwright 64423 -Milly 58017 -Milne 56935 -Milner 58162 -Milnor 65170 -Milo 54792 -Milonakis 65452 -Milonga 62196 -Milonic 62613 -Milos 60492 -Milosevic 62066 -Milpitas 56935 -Milsons 64657 -Milstein 65452 -Milt 60670 -Milter 64201 -Milton 46687 -Milton's 61362 -Milwaukee 44679 -Milwaukee's 60580 -Milwaukie 60762 -Mim 63601 -Mimaki 63991 -Mimbo 63419 -Mime 57358 -MimeMultipartReader 64657 -Mimi 54479 -Mimic 64201 -Mimicking 63601 -Mimics 65170 -Mimosa 59101 -Mims 61940 -Mimsy 63991 -Min 46855 -MinGW 63991 -Mina 55821 -Minami 63601 -Minamoto 59491 -Minangkabau 64423 -Minas 58162 -Minatitlan 63419 -Minato 60492 -Minaya 65452 -Minburn 61699 -Mince 62469 -Minced 63601 -Minchin 59774 -Mind 43857 -Mind's 60580 -MindManager 62331 -MindSoft 61362 -MindTouch 64423 -MindValley 61699 -Mindanao 57876 -Mindat 65170 -Minded 60952 -Minden 59292 -Minder 63792 -Mindful 59774 -Mindfulness 58523 -Minding 61699 -Mindjet 60078 -Mindless 57831 -Mindoro 60952 -Mindray 65452 -Minds 52496 -Mindscape 63601 -Mindset 61818 -Mindstorms 62469 -Mindy 55373 -Mindz 64905 -Mine 46340 -Mine's 61152 -Mined 63245 -Minefield 59923 -Minehead 62196 -Mineman 54727 -Mineo 64201 -Mineola 61818 -Miner 53630 -Miner's 63077 -Mineral 47449 -Minerale 63601 -Mineralization 61152 -Mineralogical 61584 -Mineralogist 64905 -Mineralogy 60405 -Minerals 48491 -Miners 57122 -Minersville 62917 -Minerva 52686 -Minerval 63077 -Mines 50234 -Minesweeper 62762 -Mineweb 65170 -Mineworkers 63991 -Ming 51985 -Minghui 63991 -Mingle 60157 -Mingo 65170 -Mingus 61584 -Minh 53581 -Minha 61152 -Mini 41471 -MiniDV 59848 -MiniDisc 64657 -MiniSAR 64657 -Miniatura 63419 -Miniature 50568 -Miniatures 53167 -Minibar 63601 -Miniblotter 64201 -Minibore 63601 -Minibus 63419 -Minichamps 64423 -Miniclip 63792 -Minicom 58113 -Minidigital 64423 -Minidisc 64657 -Minigames 63991 -Minigolf 62917 -Minikuku 64905 -Minimal 49841 -Minimalism 63792 -Minimalist 58417 -Minimally 59923 -Minimisation 64657 -Minimise 61472 -Minimization 60405 -Minimize 51406 -Minimizer 63991 -Minimizes 64905 -Minimizing 57970 -Minimoto 60157 -Minimum 43842 -Minimums 63601 -Minin 64423 -Mining 45549 -Mining's 64657 -Mininova 48877 -Minion 62917 -Minions 59560 -Minis 56021 -Minisode 54540 -Minissha 61256 -Minister 42182 -Minister's 53211 -Ministerial 54264 -Ministerio 61362 -Ministers 50328 -Ministries 49365 -Ministry 41888 -Ministry's 60238 -Ministère 60856 -Minit 61940 -Minitab 63792 -Minium 64905 -Minivan 57741 -Minivans 59357 -Mink 56200 -Minka 59357 -Minkowski 61362 -Minky 65452 -Minmatar 64905 -Minn 61051 -Minna 59774 -Minneapolis 45777 -Minnehaha 63991 -Minnelli 59227 -Minnesota 40431 -Minnesota's 57440 -Minnesotans 64201 -Minnetonka 56110 -Minnick 62917 -Minnie 53241 -Minnillo 60856 -Minnis 62613 -Minnow 63077 -Mino 63601 -Minogue 54133 -Minogue's 64423 -Minolta 53952 -Minor 45669 -Minorca 64201 -Minorities 55711 -Minority 48892 -Minors 55500 -Minoru 61051 -Minot 56170 -Minotaur 60492 -Minoura 63419 -Minox 57440 -Mins 57923 -Minsk 57122 -Minster 58745 -Minstrel 60078 -Minstrels 62331 -Mint 48533 -Mintel 61152 -Minter 62762 -Minto 62613 -Minton 61699 -Mints 59702 -Minturn 61818 -Minty 62469 -Mintz 61699 -Minuet 63245 -Minune 62917 -Minus 51772 -Minute 45410 -Minuteman 60580 -Minutemen 59848 -Minutes 41303 -Minuto 64423 -Minx 60492 -Minyanville 62762 -Mio 53970 -Miocene 58979 -Miquel 61940 -Miquelon 48923 -Mir 56485 -Mira 53813 -Mirabella 62762 -Miracle 50372 -Miracles 55373 -Miracola 65170 -Miraculous 62196 -Mirada 61362 -Mirador 64423 -Mirae 61699 -Miraflores 61472 -Mirage 52040 -Mirah 64201 -Mirai 61051 -Miramar 57566 -Miramax 62762 -Miramichi 62917 -Miran 64905 -Miranda 51492 -Mirandés 61051 -Miraplacid 62331 -Mirapuri 65170 -Mircea 61051 -Mirch 62613 -Mirchi 61472 -Mire 64423 -Mireille 56972 -Mirek 64423 -Mirela 64657 -Mirfield 63077 -Miri 55014 -Miriam 52496 -Mirjam 62613 -Mirkarimi 64423 -Mirko 60762 -Mirkovic 61051 -Mirna 64905 -Miro 56420 -Miron 64423 -Miroslav 59101 -Mirren 58688 -Mirrodin 64657 -Mirror 45164 -Mirror's 58017 -Mirrored 58262 -Mirroring 58313 -Mirrorred 64423 -Mirrors 48422 -Mirsada 64423 -Mirth 61256 -Mirtle 63792 -Mirvac 65452 -Miryam 65452 -Mirza 56791 -Mis 58113 -Misa 61818 -Misadventures 62762 -Misaki 61699 -Misanthropic 65452 -Misappropriation 65170 -Misc 44900 -Miscarriage 59848 -Miscategorized 53052 -Miscellanea 60762 -Miscellaneous 41509 -Miscellanious 65452 -Miscellany 55793 -Mischa 55906 -Mischief 56935 -Mischievous 64905 -Mischka 64201 -Misco 59357 -Misconceptions 60238 -Misconduct 57970 -Misdemeanor 63077 -Misdemeanors 64905 -Misdiagnosis 58017 -Mise 62066 -Miser 64423 -Miserable 59923 -Miserables 61699 -Misery 54727 -Mises 55992 -Misfit 61152 -Misfits 58113 -Mish 63077 -Misha 57831 -MishaS 65452 -Mishap 65170 -Mishary 61472 -Mishawaka 63419 -Misheard 61940 -Mishima 63245 -Mishka 63077 -Mishkan 65452 -Mishra 58212 -Mishraji 65452 -Misia 64423 -Misiones 65452 -Misión 65170 -Miskito 65452 -Misleading 60000 -Mismatch 61256 -Miso 62613 -Misono 63419 -Misplaced 61472 -Misra 62066 -Misrepresentation 64905 -Miss 41783 -MissPop 64423 -MissPowerPoint 63792 -Missa 59630 -Missal 63792 -Missed 52221 -Missenden 63245 -Misses 55631 -Missi 63991 -Missile 51211 -Missiles 57831 -Missing 46118 -Mission 41253 -Mission's 65170 -Missional 62917 -Missionaries 59491 -Missionary 54283 -Missions 50823 -Mississauga 49860 -Mississippi 42213 -Mississippi's 61472 -Missle 64201 -Missoni 61818 -Missoula 55793 -Missouri 41046 -Missouri's 60238 -Missourian 63419 -Missourians 64905 -Misspelled 63792 -Misstep 65170 -Missy 51560 -Missy's 64657 -Mist 52712 -Mista 64201 -Mistake 57122 -Mistaken 61699 -Mistakes 43826 -Mister 50568 -MisterWong 60492 -Misti 63792 -Misting 64657 -Mistletoe 62613 -Mistral 61699 -Mistress 53847 -Mistresses 62196 -Mistrial 64423 -Mistry 64423 -Mists 63601 -Misty 53301 -Mistylook 61699 -Misunderstood 61051 -Misuse 56972 -Misys 64657 -Miszellen 61256 -Misès 65170 -Mit 57278 -Mita 60157 -Mitac 59292 -Mitch 50314 -Mitch's 63601 -Mitcham 59560 -Mitchel 61051 -Mitchell 45092 -Mitchell's 57122 -Mitchells 64423 -Mitchum 62917 -Mite 58417 -Mitek 63245 -Mitel 59923 -Miter 60321 -Mites 61699 -Mitford 62196 -Mitglieder 63601 -Mithramycin 63419 -Mithrandir 63792 -Mithun 64657 -Mitigate 61699 -Mitigating 64201 -Mitigation 53565 -Mito 62762 -Mitochondria 59848 -Mitochondrial 54399 -Mitomycin 64657 -Mitosis 64423 -Mitotic 61152 -Mitra 57653 -Mitral 60000 -Mitre 58262 -Mitrovica 61362 -Mitsu 63419 -Mitsuba 65170 -Mitsubishi 45643 -Mitsubishi's 63792 -Mitsui 60238 -Mitsumi 65170 -Mitsuo 64905 -Mitt 54540 -Mittagong 63991 -Mittal 60405 -Mitte 62196 -Mitteilungen 64905 -Mitten 62066 -Mittens 57482 -Mittin 65452 -Mitts 58365 -Mitutoyo 63419 -Mitzi 62762 -Mitzvah 58065 -Mitzvahs 63991 -Miu 57923 -Miura 58860 -Miva 60670 -MivaScript 61940 -Miwa 64657 -Miwon 65452 -Mix 44100 -Mixcraft 65170 -Mixed 45027 -Mixer 50599 -Mixers 52725 -Mixes 53256 -Mixing 50807 -Mixology 65452 -Mixon 63077 -Mixtape 53830 -Mixtapes 57876 -Mixture 56791 -Mixtures 59424 -Mixx 47460 -Mixxer 60762 -MixxingBowl 62917 -Miyagi 60492 -Miyake 60321 -Miyako 65170 -Miyamoto 57399 -Miyata 63601 -Miyazaki 59848 -Miyuki 63077 -Miz 60321 -Mizell 62762 -Mizner 63991 -Mizoguchi 64201 -Mizoram 58262 -Mizrachi 63991 -Mizrahi 60580 -Mizu 64905 -Mizuho 63991 -Mizuki 60000 -Mizuno 54264 -Mizz 62196 -Mizzou 62066 -Mj 64905 -MjTunes 65452 -Mk 54835 -MkII 65452 -Mkt 58802 -Mktg 62762 -Mkts 63419 -Ml 58313 -Mladen 62613 -Mladick 65170 -Mlb 60078 -Mlle 65452 -Mm 56585 -Mme 59774 -Mmm 61362 -Mmmm 64423 -Mmorpg 63077 -Mn 52484 -MnCl 64423 -MnO 61152 -MnP 64423 -Mnemosyne 62066 -Mnf 59491 -Mnfrs 55963 -Mngt 65170 -Mo 47024 -Mo's 63077 -MoCo 61699 -MoD 58113 -MoDaCo 61362 -MoGraph 65452 -MoH 64423 -MoJo 60405 -MoM 62762 -MoMA 60238 -MoReq 65170 -MoS 63792 -MoU 59774 -MoV 62196 -Moab 58262 -Moai 62762 -Moakler 59039 -Moan 60157 -Moana 60856 -Moat 59039 -Mob 51166 -Mobango 64905 -Mobb 58688 -Mobeni 62066 -Mobi 59774 -Mobil 54519 -Mobile 33941 -Mobile's 64423 -MobileCastle 65170 -MobileMe 55657 -MobileMonday 65452 -MobileReference 64657 -MobileStor 64657 -MobileWitch 65170 -Mobiledia 65452 -Mobilemaths 64423 -Mobileoo 65452 -Mobiles 47611 -Mobilis 64905 -Mobilising 64423 -Mobilit 63077 -Mobility 46557 -Mobilization 58632 -Mobilize 62917 -Mobilizes 65170 -Mobilizing 61818 -Mobiola 63419 -Mobipocket 54207 -Mobissimo 63245 -Mobius 60321 -Mobley 61152 -Moblin 60321 -Moblog 64201 -Moblogic 42201 -Mobo 62066 -Mobs 61256 -Mobster 63792 -Mobsters 54341 -Moby 53271 -MobyGames 62331 -Moc 61472 -Mocca 64657 -Moccasin 61051 -Moccasins 59357 -Mocha 56050 -Mochi 62917 -Mock 49218 -Mocking 63792 -Mockingbird 59292 -Mocks 63792 -Mocs 64201 -Mod 47482 -ModCenter 56652 -ModMyMoto 64423 -Moda 58065 -Modal 56420 -Modalities 61362 -Modality 60762 -Modan 58065 -Modchip 59164 -Modded 63077 -Modder 61051 -Modding 52521 -Mode 44800 -Modechart 65452 -Model 38467 -ModelBall 60856 -Modelbouw 64657 -Modeled 63077 -Modeler 61152 -Modelers 65170 -Modeling 46312 -Modelización 63792 -Modell 62331 -Modell's 63245 -Modeller 64423 -Modelling 50514 -Modellista 62196 -Modelo 58688 -Modelos 64905 -Models 42164 -Modelsport 63792 -Modem 50067 -Modems 52303 -Modena 56972 -Moder 60321 -Moderate 47100 -Moderated 56721 -Moderately 56170 -Moderates 64657 -Moderating 64905 -Moderation 52686 -Moderato 62196 -Moderator 43392 -Moderators 49201 -Modern 41251 -Moderne 63245 -Modernisation 60670 -Modernising 62196 -Modernism 60952 -Modernist 62469 -Modernity 61940 -Modernization 57524 -Modernizing 64905 -Modes 50949 -Modeselektor 65170 -Modest 54835 -Modesto 55578 -Modesty 62196 -Modi 62331 -Modifiable 65452 -Modification 51266 -Modifications 49972 -Modified 44458 -Modifier 59702 -Modifiers 61818 -Modifies 61256 -Modify 49246 -Modifying 57009 -Modigliani 63245 -Modine 59848 -Modiolus 62613 -Modo 63419 -Modoc 61818 -Mods 47935 -Modu 61362 -Modul 61940 -Modular 49173 -Modularity 64905 -Modulate 63601 -Modulated 62613 -Modulates 62331 -Modulating 64905 -Modulation 53316 -Modulator 58470 -Modulators 62762 -Module 45243 -Moduler 60321 -Modules 48269 -Moduli 59164 -Modulos 63419 -Modulus 60580 -Modus 58632 -Modyfikacje 63419 -Modèle 59101 -Modélisation 63077 -Moe 55250 -Moe's 63245 -Moebius 63991 -Moeller 60000 -Moen 57876 -Moet 62613 -Moff 65170 -Moffat 58919 -Moffatt 64905 -Moffett 59923 -Moffitt 58802 -Mofile 64905 -Mofo 65170 -Mog 64905 -Moga 65452 -Mogadishu 62917 -Mogae 65170 -Mogan 61818 -Mogens 64201 -Moggers 62762 -Moggi 62469 -Moghul 64657 -Mogi 61940 -Mogul 56687 -Moguls 63991 -Mogwai 60492 -Mohair 62469 -Mohali 59292 -Mohamad 60670 -Mohamed 52996 -Mohammad 53729 -Mohammed 52141 -Mohammedan 64423 -Mohan 54992 -Mohandas 64423 -Mohanlal 65170 -Mohanta 63419 -Mohanty 65170 -Mohave 61362 -Mohawk 53423 -Mohd 61472 -Mohegan 59101 -Mohicans 62917 -Mohinder 64905 -Mohit 56899 -Mohler 61051 -Mohr 58688 -Mohs 63419 -Mohsen 63419 -Mohsin 65452 -Moi 57046 -MoinMoin 64657 -Moines 50522 -Moir 61152 -Moira 58688 -Mois 65452 -Moises 62331 -Moishescu 65170 -Moissy 63245 -Moist 58113 -Moisture 52661 -Moisturiser 64201 -Moisturising 65452 -Moisturizer 59227 -Moisturizers 62469 -Moisturizing 58523 -Moja 65452 -Mojacar 58162 -Mojave 56388 -Moje 64905 -Mojito 59164 -Mojitos 64905 -Mojo 51650 -Mok 60856 -Mok'Nathal 61051 -Moka 65452 -Mokau 65452 -Mokena 59630 -Moki 64905 -Mokke 64905 -Moksha 62917 -Mol 47972 -Molalla 64423 -Molar 60078 -Molasses 61699 -Mold 50357 -Moldable 58632 -Moldavia 59848 -Moldavian 63245 -Molded 55684 -Molden 64905 -Molding 55631 -Moldings 62469 -Moldova 46557 -Moldova's 62917 -Moldovan 61584 -Molds 57609 -Moldy 62917 -Mole 52291 -Molecular 42632 -Molecule 55250 -Molecules 56972 -Moles 62196 -Molesey 63419 -Moleskine 61152 -Molestation 62469 -Molesworth 64657 -Molex 61152 -Molina 57876 -Molinari 65170 -Moline 57696 -Molino 60670 -Molise 65452 -Molitor 63991 -Moll 60078 -Molle 63601 -Moller 60000 -Mollie 60580 -Molloy 59923 -Mollusca 62331 -Molluscan 63419 -Molluscs 63991 -Molly 49070 -Molly's 62196 -Molnar 63601 -Molokai 60856 -Moloney 61940 -Molotov 61818 -Molson 58745 -Molt 64201 -Molten 54924 -Moltke 64657 -Molto 63245 -Molton 62613 -Moly 63245 -Molybdate 64657 -Molybdenum 58017 -Molyneux 62469 -Mom 45159 -Mom's 53286 -MomSeattle 62331 -Mombasa 59491 -Momeni 63991 -Moment 48567 -Momentive 61472 -Momentos 65452 -Moments 47931 -Momentum 52673 -Momentus 63077 -Momma 53762 -Momma's 60670 -Mommas 64657 -Mommie 65452 -Mommies 62066 -Mommy 50328 -Mommy's 60078 -Momo 60157 -Momordica 62613 -Moms 48913 -Momsen 56324 -Momsen's 64657 -Momus 60856 -Mon 39958 -MonOCDE 62917 -Mona 52435 -Monaco 45574 -Monadnock 65452 -Monaghan 54439 -Monahan 61818 -Monarch 53138 -Monarchs 61152 -Monarchy 60405 -Monaro 63077 -Monash 54096 -Monasteries 64905 -Monastery 55448 -Monastic 59357 -Monasticism 64905 -Monastir 61584 -Monat 59424 -Monatsbl 62762 -Monatsschr 64423 -Monaural 64657 -Monavie 64905 -Monbiot 64201 -Monch 60762 -Moncks 63601 -Monckton 64657 -Moncrieff 64905 -Moncton 53346 -Mond 63601 -Mondavi 62331 -Monday 40177 -Monday's 54459 -Mondays 52712 -Monde 57399 -Mondello 64201 -Mondeo 61152 -Mondera 63792 -Mondial 57609 -Mondo 53392 -Mondotek 65170 -Mondrian 62331 -Monee 63601 -Monessen 65170 -Monet 57238 -Monetary 48706 -Monetization 63245 -Monetize 64905 -Monetizing 65170 -Monette 63419 -Money 36616 -Money's 59848 -MoneyGram 65452 -MoneySavers 63419 -MoneySaving 51193 -MoneySavingExpert 64905 -Moneyback 64905 -Moneybookers 65452 -Moneycontrol 61584 -Moneymaker 64657 -Moneyweb 64201 -Mong 61362 -Monger 60952 -Mongo 62066 -Mongol 56262 -Mongolia 45951 -Mongolian 53256 -Mongols 58017 -Mongoose 56140 -Mongrel 62469 -Moni 62066 -Monica 47028 -Monica's 63601 -Monies 64423 -Monika 54706 -Moniker 64657 -Monique 52399 -Monit 61940 -Monitor 42680 -Monitor's 65170 -MonitorIT 63601 -Monitored 59424 -Monitoring 44243 -Monitors 44823 -Monk 51060 -Monk's 63419 -Monkees 63245 -Monkey 47024 -Monkey's 63077 -Monkeys 52597 -Monks 56324 -Monkton 60321 -Monmouth 52913 -Monmouthshire 59227 -Monnaies 61472 -Mono 51835 -Monoamine 63419 -Monochromatic 63077 -Monochrome 56324 -Monocle 62917 -Monoclonal 53454 -Monocotyledones 65170 -Monocular 62613 -Monoculars 64423 -Monocytes 62917 -Monod 63792 -Monofilament 62613 -Monogatari 59848 -Monogr 62613 -Monogram 54560 -Monogrammed 59491 -Monograms 62917 -Monograph 56452 -Monographs 55226 -Monohydrate 65452 -Monolayer 64657 -Monolith 60856 -Monolithic 60238 -Monologue 63077 -Monologues 60321 -Monomer 62196 -Monomeric 65170 -Monomers 65452 -Monon 63419 -Monona 61940 -Monongahela 62613 -Mononoke 62331 -Mononuclear 64423 -Monophonic 64657 -Monophonics 64201 -Monopole 65452 -Monopoly 55107 -Monorail 60000 -Monospaced 58017 -Monotone 64423 -Monotype 60492 -Monounsaturated 61152 -Monova 64657 -Monoxide 56756 -Monro 62917 -Monroe 46486 -Monroe's 62613 -Monroeville 59774 -Monrovia 59292 -Mons 62196 -Monsanto 58688 -Monserrat 65170 -Monsieur 58919 -Monsignor 62196 -Monson 60670 -Monsoon 55202 -Monster 44159 -Monster's 62469 -Monsterindia 59357 -Monsters 50630 -Monstrous 61472 -Mont 54499 -Monta 64905 -MontaVista 64201 -Montag 56452 -Montage 54902 -Montages 65452 -Montagna 64201 -Montagne 60492 -Montagu 60000 -Montague 56721 -Montalbano 65452 -Montalvo 63419 -Montana 42031 -Montana's 58860 -Montane 61256 -Montano 64905 -Montauk 58262 -Montblanc 64423 -Montcalm 65170 -Montclair 54992 -Monte 47370 -Montebello 60078 -Montecatini 63245 -Montecito 62331 -Montecrossa 64201 -Montefiore 63245 -Montego 57160 -Monteiro 62613 -Monteith 65170 -Montel 63419 -Montell 61051 -Montelukast 63991 -Montenegro 48256 -Montepulciano 60157 -Monterey 49720 -Montero 57482 -Monterosso 60492 -Monterrey 55526 -Montes 61362 -Montessori 53485 -Monteverde 64423 -Monteverdi 65170 -Montevideo 60405 -Montevina 63419 -Montez 63792 -Montezuma 57318 -Montfort 61152 -Montgomerie 64657 -Montgomery 47002 -Montgomery's 61818 -Montgomeryville 65452 -Month 39465 -Month's 56972 -Monthly 41467 -Months 43265 -Monti 60492 -Monticello 54969 -Montille 61584 -Montini 60238 -Montlake 63601 -Montmartre 61818 -Montour 64905 -Montoya 59039 -Montparnasse 63077 -Montpelier 58212 -Montpellier 54540 -Montrail 65452 -Montreal 45882 -Montreal's 62196 -Montrealers 65170 -Montreux 59630 -Montrose 54601 -Montrouge 65452 -Montréal 51690 -Montserrat 47760 -Montville 58979 -Monty 52521 -Monty's 63245 -MontyMan 65170 -Monument 50040 -Monumental 58632 -Monuments 54226 -Monvillea 61472 -Monza 60856 -Moo 55448 -Mood 51396 -Moodboard 65452 -Moodie 65170 -Moodle 55500 -Moods 56452 -Moody 52280 -Moody's 53392 -Moog 58065 -Moogle 64657 -Mook 62066 -Mookie 63245 -Moolah 63991 -Moomba 64905 -Moon 43254 -Moon's 59357 -Moonbear 63792 -Moone 60670 -Moonee 60580 -Mooney 53746 -Moonglade 58979 -Moonkin 61472 -Moonlight 53361 -Moonraker 64201 -Moonrise 64201 -Moonrunner 60580 -Moons 60856 -Moonshine 60405 -Moonspell 61584 -Moonstone 60762 -Moonta 65170 -Moontide 64423 -Moonves 65170 -Moonwalk 60492 -Moony 62469 -Moor 53196 -Moorcroft 65452 -Moore 44045 -Moore's 54264 -Moorea 62762 -Moorehead 64905 -Moores 56972 -Moorestown 58365 -Mooresville 61584 -Moorhead 60580 -Mooring 60238 -Moorings 62762 -Moorish 58632 -Moorland 63991 -Moorlands 64905 -Moorman 65452 -Moorooka 65170 -Moorpark 60762 -Moors 58417 -Moos 62917 -Moose 51396 -Moosehead 63245 -Moosejaw 60580 -Moot 60238 -Moov 63991 -Mop 57524 -Mopar 56827 -Moparts 64201 -Moped 60670 -Mopeds 61699 -Mops 60492 -Moqtada 65452 -Mor 58017 -Mora 55578 -Moraes 61051 -Morag 63419 -Moraga 63792 -Moraine 62613 -Moral 52175 -Morale 63245 -Morales 52872 -Morality 57653 -Morals 61818 -Moran 52805 -Moran's 65170 -Morand 64905 -Morandi 62196 -Morass 62469 -Moratorium 63601 -Moravec 65170 -Moravia 63077 -Moravian 60238 -Moray 57278 -Morayfield 65452 -Morayshire 64905 -Morb 63077 -Morbi 63991 -Morbid 59292 -Morbidity 57970 -Morbo 62613 -Morcheeba 60670 -Mord 58860 -MordeaniisChaos 62066 -Mordecai 65170 -Mordechai 64201 -Morden 60952 -More 27856 -More's 65170 -MoreMy 56756 -MoreOct 63419 -MoreRSS 63245 -Morea 64423 -Moreau 58365 -Morecambe 58365 -Moree 62196 -Moreen 65452 -Morehead 57046 -Morehouse 58860 -Moreira 62613 -Morel 61256 -Moreland 56899 -Morelia 63419 -Morell 64905 -Morelli 62613 -Morello 63991 -Morelos 59848 -Moremi 65452 -Morena 61362 -Morenci 65452 -Morenita 65452 -Moreno 52085 -Moreover 55060 -Moresby 60952 -Moreton 56518 -Moretti 61584 -Morey 59164 -Morford 64657 -Morgado 63601 -Morgan 43392 -Morgan's 56652 -Morgana 62469 -Morgane 63419 -Morgans 60492 -Morganton 63077 -Morgantown 60405 -Morgen 63991 -Morgenstern 63077 -Morgue 61472 -Mori 55500 -Moria 59630 -Moriah 62469 -Moriarty 60078 -Moriches 63991 -Morimoto 62917 -Morin 59164 -Morini 65170 -Moris 65170 -Morishita 63419 -Morisset 59702 -Morissette 55793 -Morita 59039 -Moritz 57741 -Mork 64657 -Morley 55657 -Mormon 53286 -Mormonism 63601 -Mormons 59491 -Morn 63991 -Morne 58860 -Morning 42477 -Mornings 59630 -Morningside 57653 -Morningstar 55906 -Morningstar's 64423 -Morningtide 64201 -Mornington 56687 -Moro 58113 -Moroccan 53662 -Morocco 44408 -Moroder 65452 -Morogh 60762 -Moron 61472 -Morons 63991 -Moroso 64657 -Morpeth 63991 -Morph 60762 -MorphVOX 62762 -Morpher 61152 -Morphettville 61940 -Morpheus 57399 -Morphine 57399 -Morphing 62196 -Morphogenesis 63601 -Morphogenetic 62331 -Morphol 61051 -Morphologic 64657 -Morphological 56618 -Morphology 55323 -Morphometric 62196 -Morphy 62469 -Morrell 58577 -Morricone 61699 -Morrill 60321 -Morrilton 64201 -Morris 45343 -Morris's 64423 -Morrisey 63792 -Morrison 48928 -Morrison's 61256 -Morrisons 63077 -Morrissey 56140 -Morristown 57696 -Morrisville 60492 -Morro 60762 -Morrow 54283 -Morrowind 61152 -Morse 52198 -Mort 57923 -Mortagage 54321 -Mortage 65452 -Mortal 51856 -Mortality 51670 -Mortals 65170 -Mortar 57199 -Morte 61256 -Mortem 64423 -Morten 58745 -Mortensen 60405 -Mortenson 63991 -Mortgage 40708 -Mortgages 44830 -Mortification 62762 -Mortimer 56687 -Mortlake 63601 -Mortlock 63792 -Morton 50461 -Morton's 59357 -Mortuary 60856 -Morus 64657 -Moruya 65452 -Morvelaira 64657 -Morven 64201 -Morwell 65170 -Morwenstow 65170 -Moryasi 65452 -Morzine 63792 -Mos 57524 -Mosaic 50906 -Mosaics 57238 -Mosby 60492 -Mosca 64905 -Moschino 59774 -Moscone 61051 -Moscow 46418 -Moscow's 59702 -Mose 64905 -Mosel 64657 -Moseley 58860 -Moser 54946 -Moses 49429 -Mosh 62917 -Moshe 57160 -Mosher 60492 -Moshi 61940 -Moskos 63601 -Moskowitz 64201 -Moskva 64905 -Moskvitch 63792 -Moslem 61940 -Mosler 61584 -Mosley 54302 -Mosman 54749 -Mosport 63991 -Mosque 53597 -Mosqueda 62613 -Mosques 60952 -Mosquito 52268 -Mosquitoes 60762 -Moss 48404 -Mossad 64423 -Mossbauer 64201 -Mossberg 60238 -Mosse 63792 -Mossel 63077 -Mossley 63419 -Mossy 60238 -Most 32682 -Mostaccioli 65452 -Mostafa 61940 -Mostar 63601 -Mosterton 62917 -Mostly 48501 -Mostra 64201 -Mostrar 62066 -Mostyn 63991 -Mosul 59292 -Mot 56652 -MotB 63991 -Mota 63245 -Motability 62196 -Motaquote 64657 -Motard 64905 -Mote 65170 -Motegi 64657 -Motel 47851 -Motels 50306 -Moth 57609 -Mother 43471 -Mother's 49371 -Motherboard 50046 -Motherboards 50379 -Mothercare 59164 -Motherfucker 63601 -Motherhood 55963 -Mothering 60238 -MotheringDotCommune 62917 -Motherly 61940 -Mothers 50492 -Mothership 62196 -Motherwell 56262 -Moths 61472 -Moti 61699 -Motif 58523 -Motifs 61472 -Motil 61699 -Motility 61256 -Motilium 61699 -Motion 43472 -MotionMaker 62331 -MotionMakerOur 55934 -MotionMakers 54499 -MotionMakersBecome 55934 -Motions 57399 -Motiv 65452 -Motivate 60000 -Motivated 57741 -Motivating 60492 -Motivation 52051 -Motivational 52597 -Motivations 64905 -Motivator 64657 -Motive 58979 -Motives 63601 -Motlanthe 63991 -Motley 52351 -Moto 51026 -MotoGP 54302 -Motocaddy 64905 -Motocross 54706 -Motor 41236 -MotorCycle 65452 -MotorStorm 58802 -MotorTrend 61699 -Motorbike 55299 -Motorbikes 54643 -Motorboat 65170 -Motorcars 63419 -Motorcraft 64905 -Motorcycle 44402 -Motorcycles 47548 -Motorcycling 62917 -Motorcyclist 60078 -Motorcyclists 62917 -Motorcyle 63792 -Motorhea 65170 -Motorhead 57084 -Motorhome 56050 -Motorhomes 55631 -Motoring 48199 -Motorised 61256 -Motorist 63991 -Motorists 59560 -Motorized 52845 -Motorola 43031 -Motorola's 56756 -Motorplex 65170 -Motorpoint 64905 -Motorrad 61699 -Motors 42696 -Motorshow 65452 -Motorsport 47500 -Motorsports 49867 -Motorstorm 62917 -Motorway 59630 -Motos 60670 -Motown 54479 -Motrin 63245 -Mots 63991 -Mott 55934 -Mott's 63245 -Motta 62762 -Motte 63419 -Mottled 65452 -Motto 59292 -Mottram 60157 -Motu 60762 -Motueka 60856 -Motul 65170 -Motus 63991 -Motörhead 62469 -Mou 60952 -Mouglalis 63792 -Mould 56827 -Moulded 62762 -Moulding 56756 -Mouldings 60078 -Moulds 59357 -Moulin 56862 -Moulinex 64657 -Moulins 64423 -Moulton 59491 -Moultrie 57923 -Mound 55060 -Mounds 59630 -Mounier 65452 -Mount 41136 -Mountable 65452 -Mountain 40004 -Mountain's 63077 -Mountaineer 57009 -MountaineerGreen 64423 -Mountaineering 57318 -Mountaineers 59630 -Mountains 46334 -Mountainside 64657 -Mountainsmith 62331 -Mountaintop 64201 -Mountainview 64423 -Mountbatten 64905 -Mounted 50545 -Mounties 64905 -Mounting 50277 -Mountlake 63245 -Mounts 49972 -Moura 65452 -Mourad 64905 -Mourinho 61152 -Mourne 62469 -Mourning 56899 -Mourns 64201 -Mouse 43634 -MousePlanet 65452 -Mousemat 63991 -Mouseover 61699 -Mousepad 57160 -Mousepads 56231 -Mouser 55934 -Moussa 61051 -Moussaoui 64201 -Mousse 57238 -Moustache 61818 -Moustafa 65170 -Mouth 47733 -MouthShut 60078 -Mouthfeel 65170 -Mouthful 65452 -Mouthpiece 63601 -Mouthpieces 64905 -Mouths 60405 -Mouthwash 65170 -Mouton 62762 -Mouvement 64423 -Mov 64201 -Movable 51814 -Movado 58017 -Movant 64201 -Movant's 65170 -Movants 62331 -Movavi 63991 -Move 44192 -Moveable 61051 -Moved 48831 -Movember 62762 -Movement 46944 -Movements 54302 -Mover 56972 -Movers 47895 -Moves 49979 -Movie 36875 -MovieBlips 63792 -MovieLink 64657 -MovieTime 60492 -MovieTome 55037 -MovieWeb 63792 -Moviefone 52778 -Movies 34483 -Movietone 62066 -Moviez 63245 -Movil 63991 -Movimiento 64201 -Movin 63991 -Moving 42647 -Movoto 63077 -Movs 65170 -Mow 61699 -Mowat 63419 -Mowatt 61940 -Mowbray 59424 -Mower 53316 -Mowers 56050 -Mowing 60405 -Mowry 64423 -Moxa 62613 -Moxie 60405 -MoxieQ 65452 -Moxos 63419 -Moxy 62917 -Moy 62917 -Moya 62331 -Moyea 63601 -Moyen 64423 -Moyer 57482 -Moyers 58979 -Moyes 60762 -Moylan 61818 -Moyles 58802 -Moynahan 64201 -Moyne 65452 -Moynihan 60670 -Moyo 61152 -Moz 64657 -Mozambican 59164 -Mozambique 46004 -Mozart 52187 -Mozart's 57970 -Mozilla 48477 -Mozilla's 62196 -MozillaZine 59702 -Mozy 65170 -Mozzarella 58065 -Mp 59774 -Mpc 62066 -MpcStar 64423 -Mpeg 60078 -Mpegs 64423 -Mpg 63601 -Mpls 64905 -MplsSteve 63991 -Mpumalanga 57046 -Mr 39901 -MrExcel 61256 -MrSID 64657 -MrSkin 65452 -MrT 64423 -MrTalented 65452 -Mraz 53301 -Mri 62762 -Mrs 45773 -Ms 46359 -Msg 54399 -MsgBox 64423 -Msgs 63991 -Msn 57318 -Msp 64905 -MspI 64657 -Mt 49886 -Mtb 63792 -Mtg 58577 -Mtge 63419 -Mtn 57524 -Mtoe 64905 -Mtv 61051 -Mu 53847 -MuAh 60000 -MuCommander 64423 -MuHa 63601 -Muang 61051 -Muay 55348 -Mubarak 60000 -Much 43792 -MuchMusic 61818 -MuchVibe 65452 -Mucha 65452 -Muchas 63419 -Mucho 62917 -Muck 59702 -Muckler 63601 -Muckraker 63245 -Mucosal 60238 -Mucus 63991 -Mud 51772 -Mudabala 64905 -Mudanjiang 65170 -Mudcat 63991 -Mudd 57653 -Muddy 55014 -Mudgee 63245 -Mudgeeraba 62762 -Mudguards 63245 -Mudvayne 61472 -Mudville 63077 -Mueller 53762 -Muench 64423 -Muenchen 64905 -Muenster 64905 -Muerte 58470 -Muertos 59848 -Muesli 64905 -Muff 62331 -Muffin 56262 -Muffins 55423 -Muffler 55250 -Mufflers 56324 -Mufti 62196 -Mug 50799 -Mug'thol 60670 -Mugabe 56551 -Mugabe's 63419 -Mugdha 64657 -Mugen 58632 -Mugging 62762 -Muggle 63792 -Muggs 61152 -Mughal 59702 -Mugla 62762 -Mugler 63419 -Mugs 48687 -Mugshot 63601 -Mugshots 65452 -Muha 63077 -Muhabbet 64657 -Muhammad 51463 -Muhammad's 64201 -Muhammed 59774 -Muhlenberg 62917 -Mui 61256 -Muir 55992 -Muirhead 63601 -Muito 63419 -Mujahideen 60078 -Mujer 57440 -Mujeres 57923 -Mujhe 63792 -Mujra 61472 -Muka 62469 -Mukesh 61699 -Mukherjee 57199 -Mukhopadhyay 65170 -Mukhtar 65452 -Mukilteo 61818 -Mukul 64423 -Mulally 64423 -Mulan 64423 -Mulberry 56231 -Mulcahy 62613 -Mulch 60952 -Mulching 63792 -Mulder 57160 -Muldoon 62331 -Mule 55738 -Mules 56420 -Mulgore 60952 -Mulgrave 63077 -Mulhern 64423 -Mulholland 59560 -Mull 58632 -Mulla 65170 -Mullah 62762 -Mullahs 65452 -Mullally 62762 -Mullan 63077 -Mullen 57399 -Muller 54023 -Muller's 64423 -Mullet 60492 -Mullholland 64905 -Mulligan 57970 -Mullin 58632 -Mullingar 64201 -Mullins 54601 -Mullis 64905 -Mulls 64905 -Mulroney 61256 -Multan 63245 -Multi 45831 -MultiBus 65170 -MultiCheckbox 65452 -MultiJet 61699 -MultiMedia 53988 -MultiSync 62762 -MultiVu 64423 -Multiagent 64201 -Multiband 65170 -Multibeam 65452 -Multibox 64201 -Multiboxing 61362 -Multibyte 62331 -Multicast 57696 -Multicenter 61256 -Multichannel 55877 -Multichoice 65170 -Multicolor 59227 -Multicolored 63601 -Multicomponent 65170 -Multicore 64423 -Multicultural 51690 -Multiculturalism 61818 -Multidimensional 59292 -Multidisciplinary 57278 -Multidrug 62762 -Multifamily 57440 -Multifocal 63077 -Multiformat 65452 -Multifunction 54226 -Multifunctional 58802 -Multigrid 65170 -Multihazard 65452 -Multilanguage 59848 -Multilateral 60321 -Multilateralism 60670 -Multilayer 60238 -Multilevel 61152 -Multilinear 64657 -Multilingual 53138 -Multilingualism 63792 -Multimap 60078 -Multimedia 40525 -Multimeric 64423 -Multimeter 62613 -Multimeters 61051 -Multimodal 61584 -Multimode 60321 -Multimodecards 64905 -Multinational 55821 -Multinationals 64423 -Multipack 65452 -Multipacks 64423 -Multipath 64657 -Multiplayer 51415 -Multiple 43348 -Multiples 60405 -Multiplex 56262 -Multiplexed 65170 -Multiplexer 62917 -Multiplexers 62196 -Multiplexing 62762 -Multiplication 56618 -Multiplicative 64905 -Multiplicity 64905 -Multiplied 62196 -Multiplier 60856 -Multipliers 63077 -Multiply 56791 -MultiplyLogo 60670 -Multiplying 61699 -Multipoint 62762 -Multiprocessor 61940 -Multipurpose 58745 -Multiracial 63419 -Multiresolution 64423 -Multiroom 65452 -Multiscale 62762 -Multisector 63991 -Multispectral 64423 -Multisport 63077 -Multistage 62917 -Multistate 64201 -Multitasking 60492 -Multitrack 64657 -Multitronic 64905 -Multitude 64905 -Multiuser 64905 -Multivariable 62917 -Multivariate 55202 -Multiverse 61940 -Multivitamin 61584 -Multivitamins 61940 -Multnomah 58979 -Multum 59560 -Multum's 65452 -Mulvehill 64201 -Mulvey 63991 -Mulvihill 65452 -Mum 53331 -Mum's 62066 -Mumba 63991 -Mumbai 46435 -Mumbai's 64657 -Mumblings 64905 -Mumbo 63419 -Mumford 61152 -Mumia 61584 -Mummers 59848 -Mummies 60580 -Mummy 54245 -Mumps 63077 -Mums 57566 -Mumsnet 63792 -Mumtaz 63991 -Mun 60492 -Muna 64201 -Muncaster 65452 -Munch 60157 -Munchen 62469 -Munchies 61362 -Munchkin 60000 -Muncie 58802 -Mund 65170 -Munda 65452 -Mundane 60856 -Mundas 64201 -Mundelein 59630 -Mundi 59292 -Mundial 59164 -Mundo 56356 -Mundus 64201 -Mundy 63991 -Munford 64201 -Mung 64423 -Mungo 63245 -Munguia 64657 -Muni 59292 -Munich 49979 -Municipal 44859 -Municipalities 54946 -Municipality 51804 -Municipality's 65170 -Municipio 62331 -Munir 64423 -Munitions 63077 -Munizzi 63419 -Munk 64905 -Munksgaard 65170 -Munn 60321 -Munna 62331 -Munnar 63601 -Munoz 58860 -Munro 56293 -Munroe 60762 -Munson 59227 -Munster 53454 -Muntele 63792 -Munya 61472 -Muon 64657 -Muphoran 61256 -Muppet 55552 -Muppets 59848 -Mur 65170 -Mura 63991 -Murad 57160 -Muradin 60405 -Murai 63601 -Murakami 59491 -Mural 54601 -Murali 62762 -Murals 55130 -Murano 56110 -Murat 58313 -Murata 58979 -Murawiec 63991 -Murayama 64657 -Murchison 58802 -Murcia 55552 -Murcielago 60856 -Murda 64423 -Murder 48017 -Murdered 59424 -Murderer 63419 -Murderers 65452 -Murdering 65452 -Murderous 64423 -Murders 57238 -Murdoch 52940 -Murdoch's 60670 -Murdock 58860 -Murex 65170 -Murfreesboro 56388 -Muriel 57084 -Murillo 64201 -Murine 57831 -Murloc 54245 -Murlocs 61699 -Murmur 63245 -Murmurs 63419 -Muro 63792 -Murph 64201 -Murphey 62917 -Murphree 65452 -Murphy 46726 -Murphy's 55299 -Murphys 57440 -Murphysboro 65452 -Murr 59702 -Murrah 65452 -Murray 45197 -Murray's 59424 -Murrayfield 65170 -Murrayville 65452 -Murrell 62762 -Murrieta 54380 -Murrow 62331 -Murrumbidgee 61584 -Murry 63991 -Murs 56899 -Murtagh 63419 -Murtha 60492 -Murtha's 65452 -Murthy 61256 -Murugan 64423 -Murwillumbah 63792 -Mus 58745 -Musa 57399 -Musab 62469 -Musashi 64657 -Musca 65170 -Muscarinic 62762 -Muscat 57084 -Muscatine 58632 -Muschick 65170 -Muscle 46906 -MuscleTech 61256 -Muscles 56200 -Muscletech 58065 -Muscling 61362 -Muscogee 65452 -Muscular 56551 -Musculoskeletal 55934 -Muse 51492 -Muse's 63991 -MuseBook 63792 -Musee 61818 -Museen 65170 -Museo 55373 -Muses 61256 -Museu 59292 -Museum 40105 -Museum's 57741 -MuseumKids 55934 -MuseumMile 65170 -Museums 46071 -Museveni 60405 -Musgrave 61818 -Mush 59630 -Musharraf 54560 -Musharraf's 61584 -Mushkin 58688 -Mushroom 51600 -Mushrooms 54969 -Mushtaq 63245 -Mushy 64423 -Music 30757 -Music's 60580 -MusicAnimeApplicationsAssortedGamesHandheldNo 61472 -MusicBrainz 61584 -MusicMoz 65452 -MusicStrands 64905 -MusicWeb 62917 -Musica 52940 -Musical 40749 -Musicale 64201 -Musicales 63077 -Musically 63991 -Musicals 52818 -Musician 50949 -Musician's 55793 -Musicians 49758 -Musiciansfriend 62196 -Musick 63245 -Musicmatch 63419 -Musicological 64423 -Musicology 62331 -Musicroom 56899 -Musics 51762 -Musictory 58212 -Musik 53597 -Musikhaus 59227 -Musikmesse 64201 -Musing 64657 -Musings 52256 -Musiq 61940 -Musique 57609 -Musk 61818 -Muskaan 65452 -Muskego 65170 -Muskegon 59848 -Musketeers 60856 -Muskie 60856 -Muskingum 61362 -Muskogee 57046 -Muskoka 57923 -Muskrat 64657 -Muslim 45982 -Muslim's 64201 -Muslimah 63792 -Muslims 49494 -Muslin 61051 -Musou 62066 -Muss 61256 -Mussel 60856 -Musselburgh 63991 -Musselman 65170 -Mussels 59630 -Musser 61940 -Mussina 64423 -Mussolini 60157 -Must 43950 -Mustache 62066 -Mustafa 55060 -Mustang 47286 -Mustang's 65170 -Mustangs 55274 -Mustapha 63991 -Mustard 53917 -Mustards 65452 -Mustek 62066 -Muster 62917 -Musto 62762 -Musume 62917 -Muswell 62917 -Muswellbrook 65452 -Musée 59424 -Muséum 52534 -MutT 62762 -Mutable 65452 -Mutagenesis 60157 -Mutagenicity 64657 -Mutant 52597 -Mutants 57046 -Mutat 62196 -Mutated 64423 -Mutation 54321 -Mutational 62613 -Mutations 54519 -Mute 57009 -Muth 64423 -Mutha 64657 -Muti 61818 -Mutilated 62917 -Mutilation 61818 -Mutiny 59101 -Muto 64905 -Mutoh 59292 -Mutou 64905 -Mutsy 65452 -Mutt 58365 -Muttalib 63245 -Mutter 63601 -Mutton 60492 -Mutu 62331 -Mutual 45969 -Mutual's 64905 -Mutuals 65170 -Mutzabaugh 52778 -Muu 60762 -Muvico 65170 -Mux 63601 -Muy 60157 -Muzak 64657 -Muze 51877 -Muzica 60000 -Muziek 63991 -Muzik 57696 -Muzika 63419 -Muzike 64905 -Muzyka 65452 -Muzzle 61256 -Muñoz 60492 -Mv 63601 -Mw 61699 -MwA 64657 -Mwave 64657 -Mwy 64201 -Mx 60405 -My 27808 -MyAOL 60670 -MyAccount 61472 -MyArchive 62917 -MyAvatars 63601 -MyBB 61940 -MyBO 50923 -MyBatanga 57399 -MyBlog 65170 -MyBlogLog 56262 -MyBluRay 64423 -MyBook 63077 -MyBroadband 64905 -MyCareer 58523 -MyCareerBuilder 52018 -MyCheats 62066 -MyCiteSeer 59424 -MyCompete 62066 -MyCrimeSpace 64423 -MyDD 60157 -MyDS 64423 -MyDamnChannel 59491 -MyDebates 63792 -MyDice 61699 -MyESPN 57238 -MyEXPRESS 63245 -MyEclipse 61940 -MyEpi 60762 -MyEurovision 63601 -MyFonts 62469 -MyFox 62762 -MyGen 63601 -MyHeritage 58979 -MyHome 62762 -MyHotComments 50074 -MyIndiatimes 61699 -MyJSTOR 58417 -MyList 53762 -MyM 64201 -MyMSN 57923 -MyMail 61584 -MyMeL 63991 -MyMedia 64657 -MyMovies 56551 -MyNME 60492 -MyNewPlace 65170 -MyNewPlace's 65452 -MyNews 60321 -MyNuts 64657 -MyOECD 53830 -MyPSP 64657 -MyPage 63601 -MyPal 63792 -MyPlay 64657 -MyProfile 64201 -MyQJ 62196 -MyResume 61699 -MyRideTV 65170 -MySQL 45031 -MySeattlePix 61584 -MySims 63245 -MySnag 58470 -MySpace 36256 -MySpace's 51473 -MySpaceTV 53565 -MySpacea 46181 -MySql 63601 -MyStrands 63601 -MyThomas 62066 -MyTravelGuide 65170 -MyUsefilm 60078 -MyVideoDaily 65170 -MyVimo 59227 -MyWeb 51610 -MyWii 58860 -MyWire 65452 -MyWireless 64201 -MyYahoo 58065 -MyZazzle 54005 -Mya 55906 -Myakka 65452 -Myanmar 46922 -Myasthenia 61584 -Myatt 64657 -Myc 61940 -Myce 63991 -Mycobacterial 63419 -Mycobacterium 53934 -Mycological 62066 -Mycology 60856 -Mycophenolate 63245 -Mycoplasma 57238 -Mycorrhizal 61940 -Mycoses 60952 -Mycosis 64423 -Mycota 65452 -MydienMusic 63601 -Myelin 64657 -Myeloid 62331 -Myeloma 58688 -Myer 60157 -Myers 46812 -Myerson 61256 -Myhrman 61584 -Myint 65170 -Mykonos 59424 -Mylan 61699 -Mylar 58065 -Myleene 65452 -Mylene 63077 -Myles 56262 -Mylex 63419 -Mylo 62613 -Mynx 63419 -Myo 63991 -Myocardial 54601 -Myocardium 64201 -Myocyte 63991 -Myocytes 63245 -Myofascial 65170 -Myon 64201 -Myopia 64657 -Myosin 58632 -Myotis 65452 -Mypage 61051 -Myr 60238 -Myra 57318 -Myriad 60321 -Myriam 60580 -Myrick 64201 -Myris 64905 -Myrna 58365 -Myron 56585 -Myrrdin 63991 -Myrrh 64201 -Myrtle 46595 -Myself 50898 -Mysims 59630 -Mysore 55684 -Myspace 42185 -Mysql 60321 -Myst 58212 -Mystere 59227 -Mysteries 52845 -Mysterio 60238 -Mysterious 54188 -Mystery 45304 -MysteryTV 60856 -Mystic 52062 -Mystical 57160 -Mysticism 60078 -Mystics 59164 -Mystik 65452 -Mystique 57923 -Myth 50840 -MythBusters 62762 -MythDora 65452 -MythTV 61256 -Mythbuntu 58065 -Mythbusters 59292 -Mythic 59227 -Mythical 61152 -Mythological 61362 -Mythologie 63991 -Mythology 54059 -Mythos 59774 -Myths 51731 -Mytilus 60238 -Myung 62469 -Myvi 65452 -Myweb 61940 -Myx 65452 -Myxer 59292 -Myxter 65170 -Mz 59164 -MÁS 63419 -Málaga 59292 -Máquina 64423 -Mário 64657 -Márquez 63245 -Más 58162 -Mães 63077 -Mädchen 62613 -Mämmelä 61818 -März 62196 -Mærsk 64905 -Mécanique 63991 -Mécanisme 62066 -Médecine 59560 -Média 65452 -Médias 65452 -Médicale 63991 -Médoc 62917 -Méndez 64657 -Méribel 60492 -Méridien 60405 -Métabolisme 65452 -Métal 60580 -Méthode 56324 -Métis 61256 -Método 57318 -México 52778 -Mónica 65170 -Mössbauer 62613 -Mötley 61584 -Møller 61940 -Músculo 64657 -Música 56170 -Músicas 62066 -Müller 57238 -München 56791 -Münster 65452 -Müzik 62762 -N 34873 -N's 63792 -NA 44385 -NAA 58577 -NAACP 56021 -NAB 55738 -NABWEEKLY 64657 -NAC 55793 -NACC 63245 -NACE 63077 -NACHE 63792 -NACHT 65170 -NACIONAL 65452 -NACO 65170 -NAD 52534 -NADA 59702 -NADH 57238 -NADL 61818 -NADP 62613 -NADPH 57831 -NADU 62613 -NAEP 64657 -NAF 54133 -NAFLD 58919 -NAFSA 65452 -NAFTA 56324 -NAG 57084 -NAGA 64657 -NAGAR 59227 -NAHB 63991 -NAHUM 64201 -NAI 61256 -NAIA 59227 -NAIC 60580 -NAICS 55738 -NAIDOC 63991 -NAIF 63245 -NAIL 59774 -NAILS 63991 -NAIM 63601 -NAIP 63245 -NAIR 60078 -NAIROBI 60078 -NAIS 64905 -NAIT 64423 -NAJA 64423 -NAKED 58417 -NAL 63077 -NALC 65452 -NALYSIS 63792 -NAM 57122 -NAMCO 65452 -NAME 45718 -NAMED 59491 -NAMES 54419 -NAMI 62762 -NAMIBIA 60952 -NAMM 58417 -NAMME 58065 -NAN 65170 -NANA 61699 -NANCE 61940 -NANCY 57524 -NAND 59101 -NANFA 64201 -NANO 58632 -NANOG 64657 -NANOSAT 64201 -NANPA 65170 -NAO 62469 -NAOMI 62762 -NAP 58113 -NAPA 58262 -NAPFTDS 64423 -NAPIER 60952 -NAPLES 64657 -NAPOLEON 63419 -NAPS 65452 -NAR 57970 -NARA 61940 -NARAL 63245 -NARC 61584 -NARI 61699 -NARRATIVE 64201 -NARROW 58417 -NARS 58365 -NARUTO 62613 -NAS 50560 -NASA 45782 -NASA's 54133 -NASCAR 44454 -NASCAR's 62469 -NASD 60762 -NASDAQ 52725 -NASH 58632 -NASHVILLE 61584 -NASIOC 57970 -NASS 64201 -NASSAU 64423 -NASSP 62469 -NASTY 61472 -NAT 54226 -NATALIA 63601 -NATALIE 64201 -NATASHA 64905 -NATE 61152 -NATHAN 60238 -NATHANIEL 63601 -NATICK 64201 -NATION 55323 -NATION'S 64905 -NATIONAL 45919 -NATIONALITY 64657 -NATIONALS 63077 -NATIONS 58688 -NATIONWIDE 59227 -NATIVE 58802 -NATL 60405 -NATO 49135 -NATO's 62331 -NATURAL 52040 -NATURALLY 62469 -NATURE 55107 -NATWEST 63245 -NAU 61940 -NAUGHTY 63792 -NAURU 62066 -NAUTICA 64905 -NAV 55178 -NAVAIR 65452 -NAVAL 58065 -NAVARRO 65170 -NAVESINK 65452 -NAVFAC 63419 -NAVIGATE 65452 -NAVIGATION 53779 -NAVIGATOR 61699 -NAVSEA 63245 -NAVSUP 63077 -NAVTEQ 59491 -NAVY 55526 -NAVs 63991 -NAZA 64905 -NAZI 65170 -NAmb 65170 -NB 49246 -NBA 41285 -NBA's 61051 -NBATV 64201 -NBC 46631 -NBC's 53899 -NBD 60670 -NBDE 62196 -NBEO 63245 -NBER 52210 -NBG 62917 -NBGA 64657 -NBIC 65170 -NBME 64905 -NBN 59039 -NBQX 62762 -NBR 56356 -NBS 57238 -NBT 65452 -NBU 64905 -NC 38367 -NCA 59227 -NCAA 40085 -NCAA's 65452 -NCAAB 64657 -NCAAF 60078 -NCAAs 62613 -NCAC 63601 -NCADP 64423 -NCAP 65170 -NCAR 60000 -NCAS 65452 -NCB 60492 -NCBA 62469 -NCBI 36326 -NCBI's 42782 -NCC 55202 -NCCC 63991 -NCCE 65452 -NCCU 63601 -NCD 63245 -NCD's 64657 -NCDC 65452 -NCDOT 62762 -NCE 63245 -NCEE 63792 -NCES 61584 -NCETM 62066 -NCGS 63792 -NCH 57524 -NCHA 63991 -NCHRP 63792 -NCHS 63419 -NCI 56652 -NCIC 64423 -NCIMB 64905 -NCIS 55793 -NCIX 57084 -NCJ 52954 -NCJRS 53331 -NCL 59630 -NCLB 57876 -NCLEX 62613 -NCM 63601 -NCN 61256 -NCNM 64905 -NCO 58212 -NCP 58523 -NCPC 65452 -NCPDP 59227 -NCPKFLAT 62066 -NCPR 65170 -NCQ 60238 -NCQA 65170 -NCR 53153 -NCS 59292 -NCSA 64657 -NCSL 64423 -NCSS 61940 -NCSU 53485 -NCSoft 65452 -NCT 60321 -NCTA 65170 -NCTC 63077 -NCTE 59630 -NCTM 63601 -NCVER 65170 -NCW 63792 -NCX 64423 -NCard 64423 -NCsoft 62331 -ND 46020 -NDA 57399 -NDAD 62917 -NDB 60856 -NDC 56585 -NDCC 65452 -NDD 62331 -NDE 60321 -NDF 62469 -NDGA 60856 -NDI 61584 -NDIS 63245 -NDMP 64905 -NDOT 61584 -NDP 54419 -NDR 63792 -NDS 53153 -NDSU 60580 -NDT 58632 -NDTIS 57566 -NDTV 58113 -NE 42710 -NEA 54924 -NEAL 62917 -NEAR 52913 -NEARBY 60580 -NEAREST 59227 -NEARLY 62469 -NEAT 63601 -NEBRASKA 58162 -NEC 46488 -NEC's 65170 -NECA 61256 -NECESSARY 60157 -NECK 59424 -NECKLACE 56972 -NECKLACES 65452 -NECN 58802 -NED 60157 -NEDA 60580 -NEDSS 58802 -NEE 65170 -NEED 49405 -NEEDED 55250 -NEEDLE 60492 -NEEDLES 64423 -NEEDS 53796 -NEET 63419 -NEF 61818 -NEFA 61818 -NEFF 65452 -NEGATIVE 60000 -NEGF 63991 -NEGLIGENCE 60492 -NEGOTIATING 64201 -NEGOTIATION 65170 -NEGRO 64423 -NEI 62331 -NEIGHBORHOOD 57653 -NEIGHBORHOODS 63601 -NEIGHBORS 65170 -NEIGHBOURHOOD 64905 -NEIL 56756 -NEITHER 62917 -NEJM 57785 -NEL 65170 -NELLY 65452 -NELSON 54302 -NEM 62917 -NEMA 57358 -NEMO 60078 -NEN 62613 -NENA 64201 -NEO 57199 -NEON 60670 -NEONATAL 64423 -NEP 53712 -NEPA 60157 -NEPAD 61818 -NEPAL 59848 -NER 64657 -NERC 60405 -NERD 58470 -NERGY 65452 -NERO 61472 -NERVE 63245 -NERVOUS 63245 -NES 51580 -NESDIS 63991 -NESIC 64657 -NEST 61362 -NESTED 57566 -NESTLE 64423 -NESTOR 64423 -NESW 63419 -NET 49979 -NETGEAR 57970 -NETHERLANDS 55963 -NETPRO 65452 -NETS 62613 -NETWORK 48959 -NETWORKING 57318 -NETWORKS 56200 -NEU 58212 -NEURAL 62331 -NEUROSCIENCE 64905 -NEUTRAL 61256 -NEUTRON 64423 -NEVA 63601 -NEVADA 57278 -NEVER 49505 -NEVILLE 64201 -NEVIS 62196 -NEW 37835 -NEWARK 63991 -NEWCASTLE 59560 -NEWCAVES 65170 -NEWELL 61152 -NEWER 64905 -NEWEST 58017 -NEWFOUNDLAND 64657 -NEWGROUNDS 60321 -NEWHALL 64905 -NEWINGTON 65170 -NEWLY 60856 -NEWMAN 61472 -NEWMARKET 65452 -NEWMDB 64201 -NEWPORT 57876 -NEWS 39219 -NEWSLETTER 51026 -NEWSLETTERS 55014 -NEWSPAPER 59702 -NEWSPAPERS 58860 -NEWSROOM 60762 -NEWSROUND 55711 -NEWSVINE 61051 -NEWSWEEK 64657 -NEWSWIRE 63792 -NEWTON 56935 -NEWTOWN 63419 -NEX 65170 -NEXRAD 61818 -NEXT 45997 -NEXTEL 61362 -NEXUS 64905 -NEXYGEN 61818 -NF 51680 -NFA 60492 -NFB 58745 -NFC 53226 -NFHS 61051 -NFIP 61940 -NFL 38389 -NFL's 55684 -NFLPA 64657 -NFO 57524 -NFOEC 61699 -NFORMATION 63601 -NFOdb 61051 -NFP 62762 -NFPA 55250 -NFS 54813 -NFSA 53988 -NFT 60492 -NFTS 59848 -NFusion 63792 -NG 50206 -NGA 60952 -NGC 52029 -NGF 57876 -NGI 63991 -NGK 58802 -NGL 64201 -NGM 64905 -NGN 62196 -NGO 52725 -NGO's 62331 -NGOs 52375 -NGP 63601 -NGS 63419 -NGSX 65170 -NGUYEN 64201 -NGV 64201 -NH 42924 -NHANES 65170 -NHB 64423 -NHBC 64423 -NHC 59774 -NHCP 63077 -NHI 65170 -NHK 58577 -NHL 43159 -NHL's 61940 -NHLBI 62762 -NHMRC 62196 -NHP 60952 -NHPC 65452 -NHR 63419 -NHRA 54664 -NHS 43404 -NHTSA 59630 -NHVSS 65452 -NHibernate 62331 -NI 49060 -NIA 63792 -NIAC 64905 -NIAGARA 62613 -NIAID 63245 -NIAS 61940 -NIB 55060 -NIC 53485 -NICARAGUA 60856 -NICE 51731 -NICHD 64201 -NICHOLAS 58745 -NICHOLS 60157 -NICHOLSON 63245 -NICK 57831 -NICKEL 61256 -NICKROLE 62066 -NICKY 65452 -NICMOS 64657 -NICO 59164 -NICOFEST 62613 -NICOLAS 64201 -NICOLE 57358 -NICQL 63792 -NICS 65170 -NICU 58745 -NICs 62066 -NIDA 64657 -NIDDK 63792 -NIDDM 63245 -NIE 55423 -NIEHS 62196 -NIELSEN 65170 -NIFTY 64201 -NIGEL 65452 -NIGER 61152 -NIGERIA 58802 -NIGGA 60762 -NIGGAS 64905 -NIGHT 50791 -NIGHTCLUB 63991 -NIGHTLIFE 61152 -NIGHTMARE 62331 -NIGHTS 58365 -NIH 41984 -NIHR 63601 -NIHSS 62469 -NII 61940 -NIIT 64201 -NIJ 63245 -NIK 64423 -NIKE 56080 -NIKEiD 64905 -NIKKI 63601 -NIKON 58470 -NIL 59357 -NILE 64657 -NIM 61362 -NIMH 59923 -NIMS 60157 -NIN 60157 -NINA 61152 -NINDS 63077 -NINE 58802 -NINETEENTH 64657 -NINJA 61940 -NINTENDO 58417 -NINTH 61051 -NIO 62331 -NIOSH 56972 -NIP 56862 -NIPDAU 63419 -NIPPLES 64201 -NIPPON 60856 -NIPrint 63792 -NIR 58523 -NIRS 63991 -NIS 56080 -NISC 61699 -NISSAN 54770 -NIST 56200 -NIT 59039 -NITE 64423 -NITED 65170 -NITRIC 65452 -NITROGEN 60405 -NIU 62917 -NIUE 61818 -NIV 56721 -NIX 58065 -NIXON 62469 -NIrV 64201 -NJ 40585 -NJ's 64657 -NJC 62469 -NJCAA 63245 -NJIT 61818 -NJStar 64423 -NK 49065 -NKJV 61472 -NKN 64657 -NKOTB 64423 -NKT 63077 -NKorea 64905 -NL 47871 -NLA 62469 -NLB 64201 -NLC 61940 -NLCS 56652 -NLD 61152 -NLDA 61818 -NLDS 64423 -NLG 62613 -NLGW 61699 -NLH 61472 -NLM 39790 -NLO 59560 -NLP 55226 -NLR 52559 -NLRB 57741 -NLRC 61940 -NLS 61940 -NLT 61362 -NLU 62917 -NM 44882 -NMA 62917 -NMAC 61699 -NMAS 63601 -NMB 62066 -NMC 58979 -NMD 63991 -NMDA 53346 -NME 53970 -NME's 64201 -NMEA 60238 -NMED 63991 -NMFS 62917 -NMHC 64657 -NMI 60238 -NMJ 65170 -NMM 62917 -NMN 64657 -NMOS 62762 -NMP 60492 -NMR 46837 -NMRA 59424 -NMS 59774 -NMSA 63601 -NMSSM 65170 -NMT 62196 -NMTOKEN 57923 -NN 53485 -NNDB 65170 -NNE 60405 -NNN 58745 -NNR 64905 -NNT 65452 -NNTP 64201 -NNW 59702 -NO 39386 -NOAA 52752 -NOAA's 63419 -NOAH 62331 -NOB 61818 -NOBEL 64423 -NOBLE 59702 -NOBODY 60492 -NOC 58577 -NOCHE 64423 -NOD 57238 -NOE 59848 -NOEL 64201 -NOESY 63792 -NOFA 65170 -NOFX 62331 -NOHFC 63419 -NOI 63601 -NOIR 65170 -NOISE 57970 -NOITU 64423 -NOK 55526 -NOKIA 54879 -NOL 62613 -NOLA 61472 -NOLAN 63991 -NOM 60856 -NOMAD 64423 -NOMINAL 65452 -NOMINATED 64657 -NOMINATIONS 62613 -NOMINEES 63792 -NON 54857 -NONE 50832 -NONFICTION 63991 -NONI 64905 -NONK 64201 -NONLINEAR 64657 -NONPROFIT 64423 -NOODLE 65452 -NOODLES 63601 -NOON 60000 -NOP 58860 -NOPI 62331 -NOR 54170 -NORA 62613 -NORDIC 61940 -NORDSTROM 64423 -NORE 63245 -NORFOLK 57160 -NORITAKE 65170 -NORM 63991 -NORMAL 55992 -NORMAN 57876 -NORML 65452 -NORRIS 62469 -NORTE 63077 -NORTEL 63419 -NORTH 46815 -NORTHAMPTON 64657 -NORTHEAST 60762 -NORTHERN 52913 -NORTHSIDE 63991 -NORTHWEST 58262 -NORTHWESTERN 65170 -NORTHWOOD 62613 -NORTON 58113 -NORWAY 57399 -NORWEGIAN 64423 -NORWICH 57318 -NORWOOD 63419 -NOS 54078 -NOSE 61699 -NOSTRIN 61818 -NOT 39350 -NOTARY 63991 -NOTATION 64905 -NOTCOT 65452 -NOTE 49777 -NOTEBOOK 57876 -NOTEBOOKS 63077 -NOTED 62066 -NOTES 50476 -NOTHING 55084 -NOTICE 50006 -NOTICES 55906 -NOTIFICATION 57358 -NOTIFICATIONS 65170 -NOTIFIED 64201 -NOTIFY 62196 -NOTORIOUS 65452 -NOTRE 62196 -NOTTINGHAM 59227 -NOTTINGHAMSHIRE 61940 -NOUVEAU 65170 -NOV 53052 -NOVA 56200 -NOVAK 62331 -NOVEL 57923 -NOVELL 64423 -NOVELS 65170 -NOVELTY 59227 -NOVEMBER 51238 -NOVI 65452 -NOVICA 61584 -NOVICE 58688 -NOVO 62331 -NOW 43340 -NOWHERE 65452 -NOX 64905 -NOZZLE 61362 -NOx 56518 -NP 49423 -NPA 58470 -NPAs 64657 -NPB 63245 -NPBA 65452 -NPC 52765 -NPCs 56791 -NPD 58417 -NPDES 61940 -NPE 61940 -NPG 51157 -NPH 63419 -NPI 59774 -NPIS 61818 -NPL 61256 -NPM 63792 -NPN 58417 -NPO 59227 -NPOESS 63991 -NPP 58523 -NPQ 62331 -NPR 50915 -NPR's 58417 -NPRM 64201 -NPS 55684 -NPT 57009 -NPV 60238 -NPWS 64201 -NPY 57358 -NPs 62331 -NQ 61152 -NQF 63792 -NQcontent 64657 -NR 49559 -NRA 56518 -NRC 50940 -NRCC 61152 -NRCS 57046 -NRCan 65452 -NRDC 64905 -NRE 64905 -NRF 62066 -NRG 58577 -NRHA 65452 -NRI 55274 -NRJ 63991 -NRK 61940 -NRL 55084 -NRM 56721 -NRMA 57482 -NRMP 61584 -NRO 63077 -NRRL 62917 -NRS 61584 -NRT 61940 -NRVC 62469 -NRW 63991 -NS 46310 -NSA 55934 -NSAID 62613 -NSAIDs 57358 -NSBA 63601 -NSBC 62331 -NSBR 64423 -NSC 56293 -NSCB 63077 -NSCLC 58065 -NSCs 64657 -NSD 61256 -NSDL 62762 -NSDQ 63792 -NSE 55348 -NSF 51104 -NSF's 64657 -NSFW 55178 -NSG 64423 -NSHP 64657 -NSI 58212 -NSIC 63419 -NSK 65170 -NSL 63991 -NSM 61818 -NSN 59357 -NSO 62066 -NSP 60762 -NSPS 59357 -NSR 55821 -NSS 59560 -NST 59702 -NSTI 63792 -NSTITUTE 65170 -NSU 58919 -NSW 43214 -NSX 59424 -NT 45004 -NTA 60670 -NTB 63792 -NTC 59774 -NTCDA 64657 -NTD 64201 -NTE 63991 -NTERNATIONAL 65452 -NTEXT 63601 -NTF 65170 -NTFS 54924 -NTG 64657 -NTI 60492 -NTIS 57923 -NTL 58577 -NTM 63991 -NTN 62917 -NTP 56687 -NTR 62469 -NTRODUCTION 56388 -NTRP 62613 -NTS 59630 -NTSB 62331 -NTSC 51266 -NTT 54969 -NTU 62066 -NU 54813 -NUC 62469 -NUCLEAR 51846 -NUCLEIC 62917 -NUCLEOTIDE 65452 -NUDE 56518 -NUEVO 58802 -NUI 64423 -NULL 51996 -NUM 60856 -NUMARK 64423 -NUMBER 47346 -NUMBERS 55398 -NUMERI 62196 -NUMERICAL 57122 -NUMEROUS 65452 -NUON 65452 -NURSE 51846 -NURSERY 58017 -NURSES 62331 -NURSING 54560 -NUS 57741 -NUT 57399 -NUTRIENT 64657 -NUTRITION 56585 -NUTRITIONAL 65170 -NUTS 60405 -NUnit 63419 -NUnitASP 65170 -NV 44716 -NVC 61940 -NVI 64905 -NVIDIA 49028 -NVIDIA's 63792 -NVIRONMENTAL 63991 -NVQ 57653 -NVR 64423 -NVS 61051 -NVidia 60078 -NW 44542 -NWA 56293 -NWC 65452 -NWFP 62762 -NWI 62613 -NWJOBS 63991 -NWN 54226 -NWO 59491 -NWP 62917 -NWR 58065 -NWS 56972 -NWT 51963 -NWTF 63991 -NWapartments 63077 -NWautos 62613 -NWhomes 63077 -NWjobs 62469 -NWsource 57970 -NX 57876 -NXE 64201 -NXG 64905 -NXP 56170 -NXS 65452 -NXT 57399 -NXg 65170 -NY 36183 -NY's 61152 -NYAS 61940 -NYC 44397 -NYC's 57970 -NYCI 62331 -NYCRR 63077 -NYDER 65170 -NYE 59292 -NYG 63792 -NYHA 59923 -NYI 65452 -NYLON 55821 -NYMEX 60580 -NYP 57566 -NYPD 55631 -NYPL 64905 -NYPost 60078 -NYR 65452 -NYS 53501 -NYSE 51570 -NYSERDA 64201 -NYT 48143 -NYT's 58745 -NYTVF 57923 -NYTimes 61256 -NYU 54706 -NYU's 62469 -NYUonline 64201 -NYX 63601 -NYY 62066 -NZ 45084 -NZ's 63991 -NZB 61584 -NZBs 65452 -NZD 55684 -NZDT 64201 -NZETC 65452 -NZIS 63245 -NZJ 54969 -NZNO 63601 -NZPA 61940 -NZS 64905 -NZX 64423 -NZXT 61584 -Na 46242 -NaBH 63991 -NaCI 61940 -NaCl 51266 -NaF 58365 -NaH 61362 -NaHCO 57831 -NaN 57238 -NaNO 61051 -NaNoWriMo 60238 -NaOH 53712 -Naa 60492 -Naam 62066 -Naamua 63245 -Naan 61362 -Naar 63991 -Naaru 60238 -Naas 62613 -Naat 63792 -Nab 63077 -Nabari 62762 -Nabaztag 63419 -Nabble 59101 -Nabeul 65452 -Nabi 61940 -Nabiac 64657 -Nabil 61256 -Nabisco 62331 -Nablus 64201 -Nabokov 62762 -Nabucco 65170 -Nach 57009 -Nachman 65452 -Nacho 58365 -Nachos 61584 -Nachricht 62762 -Nachrichten 59923 -Nachschau 63419 -Nacht 60321 -Nacional 52351 -Nacionales 64905 -Nación 65452 -Nacogdoches 62917 -Nada 57278 -Nadal 56170 -Nadas 63419 -Nadav 64657 -Nadeau 64905 -Nadeem 61940 -Nader 55323 -Nader's 65170 -Nadeshiko 63245 -Nadezhda 65170 -Nadi 62196 -Nadia 54479 -Nadie 61152 -Nadine 55084 -Nadir 63245 -Nadja 60580 -Nadler 63077 -Nadroj 65452 -Nadu 50983 -Nady 60856 -Nadya 65452 -Nae 63792 -Naeem 63991 -Naeger 64201 -Nafpaktos 64905 -Nag 61256 -Naga 59039 -Nagai 60492 -Nagaland 57970 -Nagano 60321 -Nagaoka 64905 -Nagar 53361 -Nagarjuna 62613 -Nagasaki 58262 -Nagasarete 64423 -Nagasawa 64657 -Nagase 65170 -Nagashima 65170 -Nagata 64423 -Nagel 59101 -Nagging 59491 -Nagi 63991 -Nagin 62331 -Nagios 58470 -Nagle 62762 -Nagoya 53865 -Nagpal 63245 -Nagpur 53597 -Nagrand 56791 -Nags 61152 -Nagy 58688 -Nah 58162 -Nahe 62762 -Nahi 62331 -Nahin 62762 -Nahm 60238 -Nahuatl 61584 -Nahum 63601 -Nai 59702 -Naidoo 63077 -Naidu 60670 -Naif 62196 -Naija 65170 -Naik 63077 -Nail 48487 -Nailed 62613 -Nailer 61051 -Nailers 60078 -Nailing 64201 -Nails 51000 -Naim 60000 -Naina 63991 -Nainital 64201 -Naipaul 64657 -Nair 57741 -Naira 61472 -Nairaland 62917 -Nairn 60580 -Nairobi 54519 -Naito 63077 -Naive 60580 -Naja 64905 -Najaf 64657 -Najib 63601 -Najoomi 64905 -Nak 64657 -Naka 60762 -Nakagawa 62613 -Nakai 64201 -Nakajima 58979 -Nakamichi 64423 -Nakamura 55274 -Nakanishi 64657 -Nakano 60078 -Nakao 63419 -Nakashima 65452 -Nakata 63991 -Nakatani 64905 -Nakayama 60670 -Naked 47140 -Nakheel 59164 -Nakhon 63419 -Nakita 62613 -Naknek 64423 -Nakties 63601 -Naku 59039 -Nakusp 64657 -Nala 64657 -Nalbandian 62331 -Nalco 61472 -Naleczow 65170 -Nalgene 61818 -Nalin 63991 -Nalini 62196 -Nall 61256 -Naloxone 64657 -Nam 49218 -Nama 61362 -Namaste 57696 -Namath 63991 -Nambia 64423 -Nambour 65452 -Nambucca 63419 -Namco 56518 -Name 33657 -Name's 64905 -NamePros 64905 -NameVirtualHost 64201 -Namecheap 59560 -Named 48576 -NamedElement 64423 -Nameless 61940 -Namely 63792 -Namen 63991 -Nameplate 65170 -Names 39786 -Namesake 62613 -Namespace 56827 -Namgyal 64657 -Nami 60238 -Namibia 45770 -Namibia's 65452 -Namibian 61362 -Namie 63245 -Namiko 64423 -Naming 54341 -Namitha 61818 -Nampa 61699 -Namur 63419 -Namutoni 65170 -Nan 54643 -Nana 53882 -Nana's 64905 -Nanaimo 52661 -Nanak 61472 -Nance 58802 -Nanchang 64423 -Nanci 64423 -Nancie 63792 -Nancy 44233 -Nancy's 58632 -Nanda 59630 -Nandan 65452 -Nandi 64905 -Nanette 59039 -Nang 57046 -Nanguang 65170 -Nani 59630 -Nanjing 55684 -Nanking 64201 -Nanna 64657 -Nannerl 64657 -Nannie 63601 -Nannies 56618 -Nanning 59702 -Nannon 64905 -Nanny 52040 -Nano 47622 -NanoOS 64657 -NanoTools 64657 -Nanocomposites 64201 -Nanocrystalline 55906 -Nanocrystals 65452 -Nanocurriculum 63991 -Nanogen 65452 -Nanoha 64423 -Nanomanufacturing 62331 -Nanomaterials 61818 -NanomaterialsPolymers 59227 -Nanoparticle 63245 -Nanoparticles 60000 -Nanos 64423 -Nanoscale 58470 -Nanoscience 61362 -Nanostructured 62917 -Nanostructures 62762 -Nanotation 62469 -Nanotech 56585 -Nanotechnology 52244 -Nanotube 61256 -Nanotubes 59292 -Nanowerk 64423 -Nanowire 65170 -Nantes 56935 -Nanton 62331 -Nantucket 54902 -Nantwich 58745 -Nanyang 59774 -Nao 60670 -Naoki 60762 -Naoko 62196 -Naomi 50630 -Naor 63601 -Naot 63601 -Nap 60157 -Napa 50234 -Napali 63991 -Napalm 61584 -Napanee 61818 -Naperville 54560 -Naphthalene 62066 -Napier 54023 -Napisy 61584 -Napkin 57741 -Napkins 57970 -Naples 48581 -Napoleon 51985 -Napoleon's 60492 -Napoleonic 59292 -Napoli 55448 -Napolitano 61472 -Nappa 60078 -Nappies 60856 -Napping 64905 -Nappy 57358 -Naprosyn 61472 -Naproxen 61472 -Napster 54188 -Napulak 61152 -Nar 64201 -Nara 59227 -Naracoorte 64657 -Narada 64201 -Narain 62917 -Narang 64657 -Naranjo 65170 -Narasimha 63601 -Narayan 58262 -Narayana 61472 -Narayanan 62762 -Narberth 59774 -Narciso 62917 -Narcissism 62331 -Narcissistic 65170 -Narcissus 58523 -Narco 63991 -Narcolepsy 63991 -Narcoleptic 63601 -Narcotic 58212 -Narcotics 58577 -Nardelli 64657 -Nardi 63077 -Nardin 64201 -Narellan 64201 -Narendra 61584 -Naresh 61699 -Nargis 63792 -Nari 63991 -Nariman 64657 -Narita 61472 -Narnia 55963 -Narrabri 65170 -Narragansett 60492 -Narrated 59164 -Narration 65170 -Narrative 54207 -Narratives 59702 -Narrator 59774 -Narrisch 61152 -Narrow 44187 -Narrowed 57084 -Narrowing 59630 -Narrows 59702 -Naruto 45809 -Naruto's 63419 -Narva 64201 -Nas 54005 -Nasa 60492 -Nasal 54226 -Nascar 53438 -Nascent 64905 -Nascimento 63419 -Nasdaq 50277 -Naseem 65452 -Naser 65452 -Nash 50270 -Nash's 63077 -Nasheed 60078 -Nashik 56388 -Nashoba 64657 -Nashua 56293 -Nashville 44246 -Nashville's 60952 -Nasi 61818 -Nasik 64423 -Nasional 63991 -Nasir 62066 -Nason 61256 -Nasr 64657 -Nasrallah 65452 -Nassar 64657 -Nassau 51349 -Nasser 60670 -Nassim 64423 -Nassua 65170 -Nast 47259 -Nastia 61472 -Nasty 52648 -Nat 51453 -Nat'l 58212 -NatWest 59039 -Nata 65170 -Natacha 63077 -Natal 54360 -Natale 60000 -Natalee 64201 -Natali 62196 -Natalia 54059 -Natalie 47733 -Nataly 65170 -Natalya 64423 -Natarajan 62613 -Natasa 64657 -Natascha 62613 -Natasha 49676 -Natasja 65170 -Natchez 56388 -Natchitoches 63792 -Nate 49966 -Nate's 64657 -Nath 58313 -Nathalie 55250 -Nathaly 62917 -Nathan 47077 -Nathan's 62066 -Nathanael 64905 -Nathaniel 53153 -Nathanson 60670 -Nathrezim 60580 -Nati 64905 -Natick 58919 -Nation 43340 -Nation's 53038 -NationMaster 57482 -Nationaal 60078 -National 31966 -National's 62762 -NationalGeographic 62917 -Nationale 58745 -Nationalism 58632 -Nationalist 57160 -Nationalists 63792 -Nationalities 61152 -Nationality 54133 -Nationalization 64905 -Nationally 57696 -Nationals 49739 -Nations 43174 -Nationwide 46922 -Natit 63991 -Native 43353 -NativeValueIndex 64201 -Natives 58802 -Nativity 56080 -Natl 49893 -Natn'l 65452 -Nato 58313 -Natok 60670 -Natomas 60952 -Natriuretic 64423 -Natrol 57046 -Natrona 62469 -Nats 60762 -Natsu 62066 -Natsume 61818 -Natta 61818 -Nattura 63077 -Natty 57785 -Natuarl 65170 -Natur 64905 -Natura 59357 -Natural 38636 -Naturalism 63991 -Naturalist 58417 -Naturalistic 63991 -Naturalists 63991 -Naturalization 55323 -Naturalizer 59101 -Naturally 51877 -NaturallySpeaking 62762 -Naturals 54479 -Nature 40553 -Nature's 51856 -NatureServe 64423 -NatureWorks 64423 -Naturelle 61051 -Natures 55711 -Natureworks 63245 -Naturforsch 63601 -Naturopath 64423 -Naturopathic 59630 -Naturopathy 62917 -Naturwissenschaften 64201 -Natwest 62917 -Nau 63077 -Naughton 60580 -Naughty 49986 -Naughy 64905 -Nauk 56585 -Nauka 61152 -Nauman 63991 -Naumann 63792 -Nauru 47637 -Nausea 57970 -Nautica 55423 -Nautical 53407 -Nautico 63991 -Nautilus 57876 -Nautiner 63077 -Nauvoo 64201 -Nav 50974 -NavBarSetText 61818 -NavBarSpinnerStart 64657 -NavBarSpinnerStop 64657 -Nava 59774 -Navagation 64657 -Navaho 64201 -Navajo 54459 -Naval 47318 -Navan 62917 -Navara 63245 -Navarra 62331 -Navarre 59848 -Navarro 55107 -Navas 63077 -Navassa 60238 -Naveed 62917 -Naveen 61256 -Navel 58688 -Naver 64657 -Navesink 65452 -Navi 57923 -NaviSite 62469 -Navidad 59164 -Navies 64657 -Navigate 50242 -Navigating 56388 -Navigation 36537 -Navigational 60078 -Navigator 49376 -Navigator's 64905 -Navigators 62066 -Navigon 60078 -Navin 62331 -Navini 63792 -Navionics 64657 -Navistar 63792 -Navman 56420 -Navneet 64905 -Navratilova 65452 -Navstel 63601 -Navteq 62762 -Navy 43056 -Navy's 57696 -NavyLT 65170 -Naw 63792 -Nawab 64905 -Nawaz 60492 -Naxos 55448 -Naxxramas 60321 -Nay 61256 -Nayak 61584 -Nayantara 63419 -Nayanthara 64423 -Nayar 65452 -Nayarit 61699 -Naylor 59357 -Nays 62196 -Naz 62917 -Nazar 61818 -Nazarene 56452 -Nazareth 57046 -Nazca 60670 -Nazgrel 60762 -Nazgul 61472 -Nazi 51257 -Nazi's 64905 -Nazionale 59039 -Nazir 65452 -Nazis 55526 -Nazism 65170 -Nazjatar 61152 -Naztech 59164 -Nazwa 60000 -Nb 53124 -NbN 64423 -Nba 57046 -Nbc 63245 -Nbr 63245 -Nc 59848 -Nd 55398 -NdFeB 64657 -NdeI 62917 -Ndebele 61940 -Ndiswrapper 64201 -Ndonga 64905 -Ne 50983 -NeW 63991 -NeXT 65170 -Nea 62917 -Neagle 63419 -Neal 50053 -Neal's 62331 -Neale 59424 -Neamt 62469 -Neanderthal 60670 -Neanderthals 63601 -Neapolitan 60321 -Neapolitans 62066 -Near 42542 -Nearby 42237 -Nearer 65452 -Nearest 49240 -Nearing 57046 -Nearly 48109 -Nears 56388 -Neat 57009 -Neath 56080 -Neatly 64657 -Neatorama 60321 -Nebelung 65170 -Nebo 62917 -Nebraska 42540 -Nebraska's 60856 -Nebula 58065 -Nec 58745 -Neca 64423 -Necessary 53988 -Necessities 59292 -Necessity 58688 -Neches 63419 -Neck 47445 -Necker 60952 -Necklace 48548 -Necklaces 50906 -Neckline 64201 -Neckpro 62762 -Necks 58979 -Necktie 63245 -Neckties 60580 -Neckwear 63601 -Necro 64201 -Necromancer 64905 -Necropsy 64905 -Necrosis 58860 -Necross 60580 -Nectar 54170 -Nectarine 65452 -Necture 61940 -Ned 53485 -Ned's 63245 -Neda 65170 -Nederland 51453 -Nederlander 64423 -Nederlands 43850 -Nederlandse 56324 -Nedlands 64201 -Nedstat 64423 -Nee 60157 -Need 37864 -Needed 48581 -Needful 65452 -Needham 57009 -Needing 59292 -Needle 52954 -Needlecraft 64905 -Needleman 64201 -Needlepoint 62917 -Needles 54245 -Needless 54264 -Needlework 58745 -Needs 44522 -Needy 60952 -Needza 64905 -Neekin 63792 -Neel 60492 -Neelam 62331 -Neeley 64905 -Neely 58162 -Neelys 60492 -Neem 61940 -Neenah 62196 -Neer 64657 -Neeraj 63419 -Nees 61940 -Neeson 63792 -Neetu 63601 -Nef 63991 -Nefertiti 63792 -Neff 55906 -Neg 58688 -Negara 60762 -Negative 47335 -Negatively 64201 -Negatives 62469 -Negativity 64905 -Negeri 65452 -Negev 60952 -Negi 65170 -Neglect 57399 -Neglected 58365 -Neglecting 64905 -Negligence 58065 -Negligent 64201 -Negligible 61940 -Negocio 63601 -Negocios 62613 -Negotiable 51711 -Negotiate 56791 -Negotiated 61051 -Negotiating 56791 -Negotiation 53392 -Negotiations 53988 -Negotiator 61362 -Negotiators 64657 -Negra 60321 -Negreanu 65452 -Negri 62469 -Negril 57785 -Negro 52447 -Negroes 61152 -Negroponte 61051 -Negros 60580 -Negus 64905 -Neha 58417 -Nehalem 61699 -Nehemiah 61152 -Neher 64905 -Nehring 64657 -Nehru 57876 -Nei 62066 -Neidio 61584 -Neier 65452 -Neighbor 51131 -Neighbor's 62469 -Neighborhood 43856 -Neighborhoods 48731 -Neighboring 59702 -Neighborly 60670 -Neighbors 51257 -Neighbour 57440 -Neighbourhood 52152 -Neighbourhoods 59560 -Neighbouring 59560 -Neighbours 54902 -Neihart 64905 -Neil 44749 -Neil's 61362 -Neill 57876 -Neils 65170 -Neilsen 64657 -Neilso 64905 -Neilson 58802 -Neilston 61940 -Neiman 55578 -Neisseria 56585 -Neither 47120 -Nejc 65170 -Neji 64657 -Neko 60762 -Nel 60762 -Nell 56862 -Nella 60580 -Nelle 65170 -Nellie 56756 -Nellis 64423 -Nelly 52118 -Nels 64201 -Nelson 44755 -Nelson's 57696 -Nelsons 64201 -Nelsonword 63419 -Nelspruit 60762 -Nem 63245 -Nema 63991 -Nemanja 64905 -Nematode 63077 -Nematodes 62613 -Nemcova 60238 -Nemec 62613 -Nemesia 64657 -Nemesis 55963 -Nemeth 62196 -Nemo 54946 -Nemoto 65452 -Nemours 60157 -Nena 59923 -Nenagh 63991 -Nene 61699 -Neneh 65452 -Neng 64201 -Neo 51387 -NeoBasic 65452 -NeoCulexor 63419 -NeoGeo 61256 -NeoPM 60762 -NeoPa 62066 -NeoPower 64657 -NeoTrace 61940 -NeoWiki 60952 -Neoclassical 61472 -Neocon 64657 -Neocron 63245 -Neodymium 62469 -Neolithic 58688 -Neologism 62917 -Neon 51396 -Neonat 63601 -Neonatal 52739 -Neonates 65170 -Neonatology 61152 -Neonode 64905 -Neopets 55373 -Neophyte 61584 -Neopian 63077 -Neoplasia 64657 -Neoplasm 63792 -Neoplasms 61256 -Neoplastic 63792 -Neoprene 56721 -Neoproterozoic 63419 -Neoregelia 61362 -Neos 62762 -Neosat 64905 -Neoseeker 58470 -Neosho 60405 -Neospora 63792 -Neostyle 65170 -Neotel 62469 -Neotropical 62917 -Neovo 65452 -Neowin 59774 -Neowinian 65170 -Nepal 44768 -Nepal's 60952 -Nepalese 56050 -Nepali 54946 -Nepalis 65170 -Nepean 59774 -Nephew 55423 -Nephrol 57399 -Nephrology 52673 -Nephron 63601 -Nephropathy 65452 -Neptulon 64657 -Neptune 54499 -Neptune's 65170 -Neptunes 63419 -Ner'zhul 60078 -Nera 64423 -Nerang 65452 -Neransk 65170 -Nerd 54727 -Nerds 58162 -Nerdy 61152 -Nereus 64423 -Nerf 58162 -Neri 61362 -Nerja 64905 -Nerney 63991 -Nero 49251 -Nero's 64905 -Neruda 62469 -Nerv 58860 -Nerve 51985 -Nerves 60238 -Nervilia 65452 -Nervosa 63419 -Nervous 52303 -Nery 63792 -Nes 64657 -Nesbit 62196 -Nesbitt 60856 -Nescafe 61152 -Nesconset 65452 -Nese 62196 -Nesey 63077 -Neshaminy 64657 -Nespas 65452 -Nespresso 65170 -Ness 53970 -Nessa 64423 -Nessie 63419 -Nessun 63245 -Nessus 64905 -Nest 50734 -Nesta 63601 -Neste 59491 -Nested 52597 -Nesting 57609 -Nestle 56080 -Nestled 58017 -Nestlé 60405 -Neston 60580 -Nestor 58688 -Nestoria 61362 -Nests 65170 -Net 41830 -Net's 60670 -NetApp 59292 -NetAudioAds 65170 -NetBIOS 65170 -NetBSD 63991 -NetBackup 54601 -NetBeans 56420 -NetBook 63792 -NetCom 64201 -NetCorps 60762 -NetFlix 63601 -NetFlow 58802 -NetGear 62196 -NetID 64201 -NetLibrary 64905 -NetMeeting 64201 -NetNames 62469 -NetNews 62469 -NetObjects 64905 -NetOpacs 63077 -NetRegs 62469 -NetRing 62917 -NetRunner 62762 -NetShare 65452 -NetSupport 60405 -NetVibes 63419 -NetWare 61051 -NetWeaver 54419 -Netaji 63419 -Netanyahu 63077 -Netaudio 65170 -Netbackup 63419 -Netball 52635 -Netbeans 64657 -Netbook 55578 -Netbooks 57278 -Netbuyer 64423 -Netcare 61699 -Netcom 58688 -Netconf 64201 -Netcong 63601 -Netconnect 63419 -Netcool 64657 -Netcorp 65170 -Netcraft 63991 -Netfinity 64201 -Netfirms 54857 -Netflix 52339 -NetflixTry 62331 -Netfriends 63245 -Netgear 54005 -Neth 59923 -Nether 55793 -Netherbury 64201 -Netherland 57238 -Netherlands 40276 -Netherstorm 60580 -Netherton 61051 -Neti 63077 -Netiquette 64905 -Netizens 63601 -Netlabels 60157 -Netley 65170 -Netlink 65452 -Netmums 61818 -Neto 62196 -Netopia 62469 -Netra 62762 -Netrebko 61051 -Netroots 63991 -Nets 50387 -Netscape 47002 -Netspace 62196 -Netsuke 59702 -Nettie 60856 -Netting 59630 -Nettle 59164 -Nettles 63245 -Nettleton 65170 -Nettuno 64657 -NettwerkMusic 58417 -Netvibes 48996 -Netvouz 53865 -Netware 54170 -Network 35266 -Network's 57084 -Networked 56652 -Networker 64201 -Networkers 62613 -Networking 40125 -Networks 39019 -Networx 60492 -Neu 60078 -NeuStar 64657 -Neuadd 61818 -Neubauer 63245 -Neubauten 62613 -Neuberger 61152 -Neuburg 65452 -Neue 56756 -Neuer 61256 -Neues 64423 -Neuf 64201 -Neufeld 63601 -Neuhaus 63601 -Neuigkeiten 63991 -Neuman 61051 -Neumann 54643 -Neumann's 64201 -Neural 49932 -Neuro 57609 -Neuroanatomy 63792 -Neurobiol 60492 -Neurobiology 58313 -Neuroblastoma 61699 -Neurochem 58979 -Neurochemistry 61699 -Neurochir 61152 -Neurodegenerative 62331 -Neurodevelopmental 65170 -Neuroendocrine 64905 -Neuroendocrinol 62762 -Neuroendocrinology 63245 -Neurogastroenterol 63419 -Neuroimaging 59292 -Neurol 51377 -Neurologic 58523 -Neurological 53038 -Neurologist 63245 -Neurologists 61940 -Neurology 48866 -Neuromodulation 62613 -Neuromuscular 57696 -Neuron 58065 -Neuronal 57566 -Neurons 55877 -Neurontin 63245 -Neuropathic 62917 -Neuropathol 59292 -Neuropathology 61051 -Neuropathy 63077 -Neuropeptide 62762 -Neuropharmacology 64423 -Neurophysiol 58745 -Neurophysiological 65170 -Neurophysiology 60492 -Neuropsychiatric 61818 -Neuropsychiatrica 63601 -Neuropsychiatry 60856 -Neuropsychological 60157 -Neuropsychology 57785 -Neuropsychopharmacology 64905 -Neuroradiol 63601 -Neuroradiology 58577 -Neuroreport 65170 -Neurosci 54540 -Neuroscience 49906 -Neurosciences 60580 -Neurosis 65452 -Neurospora 59560 -Neurosurg 56756 -Neurosurgeon 65452 -Neurosurgery 54133 -Neurosurgical 64423 -Neurotheca 63991 -Neurotic 65170 -Neurotransmitter 64201 -Neurotrophic 64905 -Neusat 64423 -Neuse 63601 -Neuspeed 60670 -Neuss 63991 -Neustadt 65170 -Neuter 64201 -Neutral 47047 -Neutrality 55299 -Neutralization 64201 -Neutralizer 64905 -Neutralizing 64905 -Neutrik 64657 -Neutrino 60405 -Neutrogena 57741 -Neutron 55526 -Neutrophil 60000 -Neutrophils 62196 -Nev 63245 -Neva 59630 -Nevada 42283 -Nevada's 60856 -Nevaeh 64201 -Nevalyashka 64201 -Neve 59357 -Never 42124 -Neverender 61256 -Neverending 63077 -Neverland 60670 -Nevermind 60321 -Nevermore 65170 -Nevertheless 56687 -Neverwinter 53533 -Neves 63601 -Nevill 64423 -Neville 54188 -Nevin 61051 -Nevins 61584 -Nevis 48067 -Nevo 61699 -Nevropatol 65170 -New 26563 -NewDay 53988 -NewMail 64905 -NewMarket 65170 -NewSong 65452 -NewTeeVee 62196 -NewTorrents 55578 -NewWayiQ 61818 -NewYork 62613 -Newark 48088 -Newb 64657 -Newberg 65452 -Newberry 57199 -Newbery 60492 -Newbie 46149 -Newbies 56110 -Newbold 62196 -Newborn 51444 -Newborns 60492 -Newbridge 59774 -Newburgh 59424 -Newbury 54749 -Newburyport 59923 -Newby 61472 -Newcastle 45683 -Newcastle's 62469 -Newco 62762 -Newcomb 61152 -Newcomer 57160 -Newcomer's 64423 -Newcomers 55766 -Newegg 56687 -Newell 55963 -Newer 44117 -Newest 40601 -NewestNewNews 64657 -Newfie 60952 -Newfield 62331 -Newfoundland 49268 -Newgate 62613 -Newgrounds 58802 -Newhall 63077 -Newham 54560 -Newhart 60856 -Newhaven 63077 -Newhouse 60492 -Newington 57609 -Newkirk 63601 -Newland 61584 -Newlands 60000 -Newly 48985 -Newlywed 62066 -Newlyweds 60952 -Newman 48586 -Newman's 59491 -Newmar 64657 -Newmark 60405 -Newmarket 54879 -Newmont 62196 -Newnan 61818 -Newnham 63077 -Newport 46027 -Newquay 59560 -Newry 59702 -News 27642 -News's 65452 -NewsAlloy 64201 -NewsBiology 61152 -NewsBlaze 60762 -NewsBloggers 64905 -NewsBot 59424 -NewsBurst 64201 -NewsBusters 64657 -NewsCartoon 63601 -NewsCartoons 64657 -NewsCenter 65452 -NewsChannel 58577 -NewsCred 65170 -NewsDaily 64201 -NewsDesk 55060 -NewsFeed 64657 -NewsFlash 63419 -NewsForge 63601 -NewsGator 51463 -NewsHour 60405 -NewsLetter 65170 -NewsMedicine 61472 -NewsMy 61818 -NewsNow 63991 -NewsRadio 60492 -NewsRoom 63601 -NewsStand 60492 -NewsTrack 64657 -NewsTrust 64657 -NewsU 55766 -NewsVine 53762 -NewsWatch 55849 -NewsWire 64657 -Newsagent 55766 -Newsagents 57609 -Newsarama 63792 -Newsbeat 62469 -Newsblog 55226 -Newsboys 61699 -Newsburst 56618 -Newscast 61818 -Newsday 50599 -Newsday's 64657 -Newsdesk 62469 -Newser 60000 -Newseum 64905 -Newsfeed 57278 -Newsfeeds 51846 -Newsflash 53762 -Newsgator 56791 -Newsgroup 56551 -Newsgroups 55060 -Newsham 65170 -Newshound 62917 -Newsletter 37876 -Newsletters 38982 -Newsline 58745 -Newslines 65452 -Newslink 62762 -Newslinks 60856 -Newsmaker 61699 -Newsmakers 61472 -Newsnight 56324 -Newsom 55963 -Newsom's 64905 -Newsome 62762 -Newsosaur 62469 -Newspaper 43009 -Newspapers 44984 -Newspreview 63245 -Newsquest 57653 -Newsquest's 61584 -Newsradio 64657 -Newsroom 46760 -Newsround 54835 -Newsstand 59101 -Newsstands 63991 -Newstead 64657 -Newstin 61472 -NewstinMap 64423 -Newsvine 44392 -Newsweek 53630 -Newsweek's 63419 -Newsweekly 57609 -Newswire 47784 -Newswire's 64657 -NewswireToday 61584 -Newswires 59848 -Newsworthy 55793 -Newswyre 64201 -Newt 56972 -Newt's 65452 -Newtek 65452 -Newton 46969 -Newton's 55526 -Newtonian 57696 -Newtonville 63991 -Newtown 54643 -Newtownabbey 62196 -Newtownards 63792 -Newtson 65452 -Newydd 62331 -Newyddion 58860 -Newyork 63419 -Newz 63077 -NexStar 63792 -NexTag 49815 -Nexans 65170 -Nexen 64423 -Nexis 63419 -Nexium 56293 -Nexo 64905 -Nexstar 60238 -Next 32579 -NextBio 65170 -NextFest 65452 -NextGen 63792 -NextRow 63601 -NextSTAT 64657 -NextSmallThings 57122 -NextStudent 62331 -Nextag 65170 -Nextar 63792 -Nextel 50507 -Nexto 65170 -Nextraker 57318 -Nextraker's 63077 -Nexus 54581 -Nexxus 60238 -Ney 63991 -Neyo 63077 -Nez 61472 -Nf 63991 -Nfl 48217 -Ng 53597 -Nga 58365 -Ngai 64201 -Ngaio 64905 -Ngan 64657 -Ngaoundéré 63792 -Ngati 61818 -Nght 63991 -Ngo 59101 -Ngoc 61584 -Ngorongoro 63077 -Ngultrum 64201 -Nguyen 52791 -Nh 61472 -Nha 59357 -Nhat 61699 -Nhe 63991 -Nhl 62762 -Nhs 65452 -Nhà 64905 -Ni 48118 -NiCad 63077 -NiCd 62196 -NiCr 64905 -NiGHTS 65170 -NiMH 56791 -NiO 64423 -Nia 57358 -Niacin 59923 -Niagara 47307 -Niagara's 64657 -Niagra 64657 -Niakhar 63792 -Niall 57046 -Niamey 62917 -Niamh 60157 -Nias 62613 -Nib 63991 -Nibbles 63419 -Nibiru 63991 -Nic 54459 -Nica 65170 -Nicaragua 45777 -Nicaraguan 58860 -Nicci 64657 -Niccolo 64905 -Nice 43726 -Nicely 58313 -Nicer 62196 -Niceville 64201 -Niche 52739 -Niches 63601 -Nichi 62917 -Nichia 64657 -Nichol 62196 -Nichola 65452 -Nicholas 45636 -Nichole 56618 -Nicholle 58523 -Nicholls 56388 -Nichols 52152 -Nicholson 52496 -Nicholson's 64905 -Nicht 64201 -Nici 64657 -Nick 42612 -Nick's 56618 -Nickel 50599 -Nickelback 53301 -Nickelodeon 54770 -Nickelodeon's 64905 -Nickels 61362 -Nickerson 59491 -Nicki 57609 -Nickie 65452 -Nicklas 63792 -Nicklaus 60492 -Nickle 61699 -Nicklin 65452 -Nickname 51931 -Nicknamed 63991 -Nicknames 60762 -Nickolas 65452 -Nicks 57122 -Nicky 52686 -Nicky's 65170 -Nico 56110 -Nicobar 59101 -Nicol 57566 -Nicola 52018 -Nicolae 62917 -Nicolai 59164 -Nicolas 50416 -Nicolau 65452 -Nicolaus 62196 -Nicole 45047 -Nicole's 60078 -Nicolet 60856 -Nicoletta 64657 -Nicolette 60952 -Nicoll 63991 -Nicollet 62469 -Nicollette 60856 -Nicolls 64423 -Nicolosi 63991 -Nicolson 63601 -Nicorette 62469 -Nicosia 60078 -Nicotiana 59702 -Nicotine 56262 -Nicotinic 64657 -Nid 63419 -Nida 63991 -Nidan 64201 -Niddrie 64423 -Nidesoft 61256 -Nido 62762 -Nie 60405 -Niece 62066 -Niedersachsen 64201 -Niederwasser 65452 -Niehaus 63601 -Niel 55037 -Niels 56231 -Nielsen 50446 -Nielsen's 61362 -Nielson 62331 -Nieman 62762 -Niemann 63245 -Niemeyer 65170 -Nieminen 64905 -Niet 65170 -Nieto 60321 -Nietzsche 56452 -Nietzsche's 62613 -Nieuport 64905 -Nieuw 64657 -Nieuwe 62917 -Nieuws 61584 -Nieves 62066 -Nifedipine 62762 -Nifong 62196 -Nifty 57440 -Nig 62917 -Nigam 60580 -Nigel 50108 -Nigella 56899 -Niger 46488 -Niger's 62469 -Nigeria 44549 -Nigeria's 58113 -Nigerian 52597 -Nigerians 64201 -Nigga 57482 -Niggas 61818 -Niggaz 62331 -Nigger 63792 -Night 39086 -Night's 56420 -NightRender 64423 -Nightclub 53241 -Nightclubs 53485 -Nightfall 59164 -Nightforce 63419 -Nightgown 65170 -Nighthawk 58162 -Nighthawks 64905 -Nightingale 56485 -Nightlife 46102 -Nightlight 63419 -Nightly 52351 -Nightmare 50019 -Nightmares 56485 -Nights 45627 -Nightshade 62762 -Nightshift 65170 -Nightspots 65452 -Nightstand 62917 -Nightstands 62066 -Nighttime 60670 -Nightwear 60238 -Nightwing 64201 -Nightwish 56791 -Niguel 60762 -Nihal 64905 -Nihilists 62066 -Nihon 58065 -Niigata 59227 -Nijmegen 59923 -Nik 56021 -Nika 58162 -Nike 44540 -Nike's 63419 -Nikhil 57482 -Niki 54706 -Nikita 55711 -Nikka 64201 -Nikkei 56080 -Nikki 48892 -Nikki's 62196 -Nikko 55906 -Nikkole 61152 -Nikkor 60856 -Nikky 63792 -Nikkyo 65452 -Niklas 59923 -Niko 56080 -Nikola 59292 -Nikolai 56452 -Nikolaos 61940 -Nikolas 61362 -Nikolaus 63991 -Nikolay 61584 -Nikole 64657 -Nikolic 65452 -Nikon 46261 -Nikon's 61818 -Nikonians 61818 -Nikos 59774 -Nikwax 61256 -Nil 52484 -Nila 64905 -Nile 51590 -Niles 54879 -Nilesh 65170 -Nill 64657 -Nilo 62917 -Nils 57831 -Nilsen 62196 -Nilsson 55849 -Nim's 63419 -Nima 64905 -Nimble 64657 -NimbleX 64657 -Nimbus 59357 -Nimes 62469 -Nimitz 64657 -NimmyPaul 64201 -Nimo 65170 -Nimoy 65452 -Nimrod 61699 -Nin 60952 -Nina 48336 -Nina's 60492 -NinaOdell 63792 -Nine 46310 -Niner 64905 -Niners 60492 -Nines 63991 -Nineteen 56618 -Nineteenth 57741 -Nineties 64657 -Ninety 58313 -Nineveh 64905 -Ninewells 65452 -Ning 53796 -Ningaloo 60856 -Ningbo 55274 -Ningxia 60856 -Ninh 63077 -Nini 65452 -Ninja 46868 -Ninja's 64423 -NinjaTrader 64905 -Ninjas 59164 -Ninn 61472 -Nino 55552 -Ninos 64423 -Nintendo 41539 -Nintendo's 54601 -Ninth 52399 -Niobium 64657 -Nioxin 64657 -Nip 58365 -Nipawin 62469 -Nipissing 65170 -Nipomo 60321 -Nipper 65170 -Nipple 55526 -Nipples 57653 -Nippon 49663 -Nir 62917 -Nirah 65452 -Nirmal 63245 -Nirmala 65170 -Niro 57524 -Niroshta 63077 -Nirvana 52233 -Nirwana 63792 -Nis 61362 -Nisan 64423 -Nisbet 61362 -Nise 64905 -Nish 62917 -Nisha 61940 -Nishant 64201 -Nishanth 63601 -Nishi 61256 -Nishida 63601 -Nishikawa 63601 -Nishiki 65170 -Nishimura 61584 -Nishino 63991 -Niskanen 65170 -Nisley 65452 -Nismo 62613 -Nisqually 63991 -Nissan 43682 -Nissan's 63077 -Nissen 59560 -Nissho 64905 -Nissim 63792 -Nissin 65170 -Nistelrooy 64201 -Nita 61584 -Nite 54479 -NiteIze 63601 -NiteRider 64905 -Nitendo 64201 -Nites 63792 -Nitin 59164 -Nitrate 57084 -Nitrates 60580 -Nitrest 65170 -Nitric 54360 -Nitride 62613 -Nitrile 60856 -Nitrite 61472 -Nitro 51275 -NitroVol 61472 -Nitrocellulose 61818 -Nitrogen 51974 -Nitros 64423 -Nitrosomonas 63991 -Nitrous 56080 -Nitrox 60580 -Nittany 56721 -Nitto 60952 -Nitty 65452 -Nitzer 64905 -Niu 61051 -Niue 48318 -Nivea 61472 -Niveau 65452 -Nivel 64657 -Niven 62196 -Niwot 62331 -Nix 59357 -Nixdorf 64201 -Nixie 65170 -Nixon 49234 -Nixon's 61051 -Nizam 63991 -Nizhniy 60856 -Nizhny 64423 -Nizoral 65452 -Niña 63419 -Niño 59039 -Niños 64423 -Nj 59164 -Njord 65452 -Nk 64201 -Nkok 65170 -Nkwichi 60856 -Nl 61699 -Nm 56324 -Nmap 65452 -Nn 63601 -Nnapulitano 57524 -No 30799 -NoHo 63419 -NoPE 65452 -NoScript 60580 -NoVA 65170 -Noa 60952 -Noah 51700 -Noah's 55526 -Noahs 64905 -Noam 58523 -Nob 59424 -Nobby 63991 -Nobel 47363 -Nobel's 65170 -Nobility 61699 -Noble 48882 -Noble's 65452 -Nobles 64423 -Noblesse 63991 -Noblesville 59491 -Noblis 62613 -Nobody 49012 -Nobody's 57785 -Noboru 63077 -Nobuhiro 64905 -Nobunaga's 62762 -Nobuo 62613 -Nobuyuki 62762 -Noch 64201 -Noche 58919 -Noches 65452 -Nocioni 64201 -Nock 65170 -Nocti 65170 -Noctua 65452 -Nocturna 65452 -Nocturnal 57122 -Nocturne 60952 -Nocturnes 62613 -Nod 57199 -Noda 64423 -Nodal 60157 -Nodame 61362 -Noddy 62469 -Node 50865 -NodePath 63991 -NodeThirtyThree 64423 -Nodes 54664 -Noe 58065 -Noein 64423 -Noel 50306 -Noelia 63991 -Noelle 59702 -Noemi 64201 -Nog 60492 -Noga 64423 -Nogales 63601 -Nogaro 63991 -Noggin 63792 -Nogizaka 64657 -Noguchi 61940 -Nogueira 62917 -Noho 63601 -Noi 57785 -Noida 56388 -Noir 51825 -Noire 62469 -Noise 47201 -NoiseFuel 62196 -Noises 62196 -Noisy 60000 -Noite 64657 -Noize 61472 -Nok 63077 -Nokia 40363 -Nokia's 57046 -Nokomis 61818 -Nol 64905 -Nola 59491 -Nolan 52280 -Nolan's 64423 -Noland 61472 -Nolasco 64657 -Nolensville 65170 -Nolin 63991 -Nolita 61152 -Noll 59774 -Nollie 61699 -Nolo 63792 -Nols 63419 -Nolte 61584 -Nom 59560 -Noma 64423 -Nomad 54835 -Nomadic 59491 -Nomads 60321 -Nomar 64905 -Nombre 59164 -Nome 59848 -Nomenclature 57046 -Nomi 64423 -Nomina 63792 -Nominal 54924 -Nominate 55526 -Nominated 53010 -Nominating 58113 -Nomination 54581 -Nominations 50328 -Nominee 57440 -Nominees 56899 -Nomis 63601 -Noms 64905 -Nomura 60492 -Non 45222 -NonProfit 62917 -NonStop 63077 -NonZealot 63601 -Nona 61818 -Nonalcoholic 65170 -Nonbreaking 62613 -Noncommercial 56231 -Nondestructive 61362 -Nondiscrimination 61362 -None 39453 -Nonequilibrium 64657 -Nonesuch 62613 -Nonetheless 62762 -Nonfiction 49223 -Nong 63792 -Nongovernmental 63991 -Noni 57318 -Nonidet 59424 -Nonimmigrant 64905 -Noninv 63601 -Noninvasive 59702 -Nonlin 61940 -Nonlinear 52051 -Nonlinearity 58523 -Nonmusical 64657 -Nonnumerical 64905 -Nonparametric 62196 -Nonpoint 61472 -Nonprescription 65170 -Nonprofi 64905 -Nonprofit 50185 -Nonprofits 56021 -Nonproliferation 64201 -Nonpublic 62917 -Nonrequired 63991 -Nonresident 62762 -Nonsense 51793 -Nonspecific 61362 -Nonsteroidal 65452 -Nonstick 61362 -Nonstop 60078 -Nontaxable 63792 -Nontraditional 60405 -Nonverbal 64423 -Nonviolence 62917 -Nonwoven 60580 -Nonwovens 61818 -Noo 59848 -Noob 56585 -Noodle 53286 -Noodles 54813 -Nook 57876 -Noon 51293 -Noonan 58470 -Noone 62331 -Noor 58417 -NoorSaaz 65170 -Noosa 55711 -Noose 60762 -Nop 64201 -Nope 57482 -Nor 49135 -NorCal 61362 -Nora 52571 -Nora's 63792 -Norah 55202 -Norah's 53917 -Norberg 65452 -Norbert 56618 -Norberto 63991 -Norbury 58065 -Norcent 62066 -Norco 57440 -Norcross 57122 -Nord 53423 -Nordea 62613 -Nordegren 64201 -Nordeman 61940 -Norden 59491 -Nordenfelt 65170 -Nordeng 65170 -Nordengen 65452 -Nordic 49860 -NordicTrack 63991 -Nordin 63077 -Nordine 65452 -Nordisk 60762 -Nordlund 64657 -Nordrassil 59630 -Nordstrom 52982 -Noreen 59848 -Norelco 62066 -Norepinephrine 65452 -Norfolk 44617 -Norgannon 60670 -Norge 56050 -Norham 62917 -Nori 62196 -Noriega 59630 -Noriko 61940 -Norilsk 63419 -Norinco 62917 -Norio 63991 -Noritake 62196 -Noriyuki 65452 -Norlin 65452 -Norling 63792 -Norm 52778 -Norma 52968 -Normal 44197 -Normalan 60856 -Normale 60580 -Normalised 64423 -Normality 60856 -Normalization 58523 -Normalize 64905 -Normalized 58065 -Normalizing 65452 -Normally 51974 -Normals 61051 -Norman 45828 -Norman's 61472 -Normand 63419 -Normandie 63991 -Normandy 55250 -Normans 62331 -Normanton 63077 -Normative 60321 -Norms 59774 -Norn 64201 -Norpro 63991 -Norrath 59424 -Norridge 64423 -Norrie 60078 -Norris 50726 -Norris's 64423 -Norristown 62066 -Norse 57923 -Norseman 64201 -Norsk 46809 -Norske 61584 -Norte 55084 -Nortech 64423 -Nortel 53899 -North 33030 -North's 60762 -NorthStar 62613 -NorthWest 61584 -Northallerton 65452 -Northam 61818 -Northampton 50469 -Northamptonshire 52673 -Northanger 64201 -Northants 59491 -Northborough 64657 -Northbound 59424 -Northbridge 61362 -Northbrook 57009 -Northcentral 63601 -Northcliff 65170 -Northcliffe 61818 -Northcote 62066 -Northcott 64905 -Northeast 46483 -Northeastern 50033 -Northen 65170 -Northern 38583 -Northerner 56140 -Northfield 56231 -Northgate 57160 -Northglenn 61699 -Northlake 61051 -Northland 51825 -Northlands 62613 -Northline 65452 -Northolt 64423 -Northpark 60670 -Northpoint 65452 -Northport 60321 -Northrend 57524 -Northridge 56356 -Northrop 53746 -Northrup 63792 -Northshire 65452 -Northshore 61472 -Northside 56721 -Northstar 55398 -Northumberland 51660 -Northumbria 60000 -Northumbrian 64423 -Northup 65452 -Northview 63245 -Northville 59848 -Northwave 63792 -Northway 64657 -Northwest 42714 -Northwest's 63792 -Northwestern 48496 -Northwich 58017 -Northwick 64905 -Northwind 65452 -Northwood 57009 -Northwoods 61699 -Norton 46457 -Norton's 63991 -Norv 61940 -Norvasc 58577 -Norwalk 54813 -Norway 42519 -Norway's 60856 -Norwegian 45058 -Norwegians 63991 -Norwell 63792 -Norwich 48756 -Norwood 52805 -Nos 55373 -Nose 51521 -Noses 64201 -Nosferatu 62613 -Nosocomial 60580 -Nosotros 61152 -Nossa 63077 -Nostale 64657 -Nostalgia 54380 -Nostalgic 59630 -Nostra 63245 -Nostradamus 60952 -Nostrand 61818 -Not 33485 -NotI 63792 -Nota 64657 -Notable 52699 -Notables 62196 -Notably 64423 -Notaries 60000 -Notarized 65170 -Notary 53988 -Notas 64905 -Notation 55906 -Notations 64201 -Notch 55766 -Notched 63077 -Note 39159 -NoteBook 62762 -NoteCollection 54023 -NoteID 62613 -NoteWhen 64905 -Notebook 43851 -Notebooks 46815 -Noted 56551 -Noten 64657 -Notepad 56721 -Notepads 64423 -Notes 40093 -NotesACL 59923 -NotesACLEntry 59357 -NotesAdministrationProcess 58919 -NotesAgent 58745 -NotesColor 64423 -NotesColorObject 57785 -NotesDOMAttributeNode 56388 -NotesDOMCDATASectionNode 59227 -NotesDOMCharacterDataNode 56388 -NotesDOMCommentNode 59292 -NotesDOMDocumentFragmentNode 59292 -NotesDOMDocumentNode 56452 -NotesDOMDocumentTypeNode 59357 -NotesDOMElementNode 56518 -NotesDOMEntityNode 59292 -NotesDOMEntityReferenceNode 59292 -NotesDOMNamedNodeMap 56452 -NotesDOMNode 56518 -NotesDOMNodeList 56518 -NotesDOMNotationNode 56518 -NotesDOMParser 56518 -NotesDOMProcessingInstructionNode 56388 -NotesDOMTextNode 56388 -NotesDOMXMLDeclNode 56388 -NotesDXLExporter 56388 -NotesDXLImporter 56324 -NotesDatabase 57440 -NotesDateRange 57609 -NotesDateTime 57741 -NotesDbDirectory 57440 -NotesDocument 57482 -NotesDocumentCollection 56485 -NotesEmbeddedObject 56293 -NotesForm 55992 -NotesInternational 55793 -NotesItem 55604 -NotesLog 55299 -NotesMIMEEntity 55107 -NotesMIMEHeader 54969 -NotesName 54924 -NotesNewsletter 54727 -NotesNoteCollection 54622 -NotesOutline 54479 -NotesOutlineEntry 54283 -NotesRegistration 54133 -NotesReplication 53970 -NotesReplicationEntry 54005 -NotesRichTextDocLink 54059 -NotesRichTextItem 54041 -NotesRichTextNavigator 53899 -NotesRichTextParagraphStyle 53865 -NotesRichTextRange 53597 -NotesRichTextSection 53470 -NotesRichTextStyle 53454 -NotesRichTextTab 53301 -NotesRichTextTable 53316 -NotesSAXAttributeList 53331 -NotesSAXException 53392 -NotesSAXParser 53392 -NotesSession 53346 -NotesStream 53423 -NotesTimer 53361 -NotesUIDatabase 53346 -NotesUIDocument 53138 -NotesUIScheduler 53256 -NotesUIView 53182 -NotesUIWorkspace 53066 -NotesURL 57238 -NotesVersion 63601 -NotesView 53024 -NotesViewColumn 52584 -NotesViewEntry 52363 -NotesViewEntryCollection 52375 -NotesViewNavigator 52244 -NotesXMLProcessor 52233 -NotesXSLTransformer 52210 -Noteworthy 59848 -Noth 62196 -Nothin 62613 -Nothing 44148 -Nothing's 61256 -Notice 40076 -Noticeboard 58919 -Noticed 61256 -Notices 39601 -Noticias 53392 -Noticing 65170 -Notification 46307 -Notifications 49751 -Notified 59491 -Notifier 61818 -Notifies 65452 -Notify 44248 -Noting 57524 -Notion 57696 -Notional 64201 -Notions 60321 -Notizie 61051 -Notoriety 61362 -Notorious 54399 -Notre 49959 -Nottawasaga 61362 -Notte 62469 -Nottie 64423 -Notting 57160 -Nottingham 47283 -Nottinghamshire 51974 -Notts 58417 -Notun 65452 -Notwithstanding 53423 -Notícias 64423 -Notícies 62762 -Nou 63792 -Nouba 61818 -Nougami 63601 -Nougat 63991 -Noumea 64657 -Noun 57238 -Nouns 59702 -Nour 61818 -Nouri 63601 -Nouriel 63419 -Nourish 61584 -Nourishing 60762 -Nourison 60492 -Nous 56021 -Nouveau 54380 -Nouveautés 63991 -Nouvel 63601 -Nouvelle 54969 -Nouvelles 60157 -Nov 35531 -Nova 45112 -NovaScale 60670 -NovaView 60856 -Novacek 65452 -Novak 53646 -Novak's 64423 -Novara 64657 -Novarip 64423 -Novartis 54643 -Novas 63792 -Novatech 60952 -Novatel 64201 -Novation 60762 -Novato 60580 -Novator 64905 -Novaya 63792 -Novel 47090 -Novela 65452 -Novelist 61472 -Novell 50957 -Novell's 64657 -Novella 62066 -Novelli 64423 -Novels 51284 -Novelties 54023 -Novelty 51303 -November 33948 -November's 62331 -Novembre 61152 -Novena 64657 -Novgorod 62469 -Novi 55578 -Novica 62613 -Novice 52699 -Novices 63245 -Novick 63792 -Noviembre 63792 -Novo 56899 -Novos 65170 -Novosibirsk 57741 -Novosti 63077 -Novotel 55793 -Novotna 65452 -Novozymes 65452 -Novskova 65452 -Novus 60321 -Novy 63991 -Now 33178 -Now's 58802 -NowLog 64657 -NowPublic 56293 -NowTorrents 57399 -Nowadays 58017 -Nowak 61699 -Nowe 65170 -Nowell 61051 -Nowhere 52399 -Nowitzki 59491 -Nowpublic 63792 -Nowra 63601 -Nox 60492 -Noxious 60580 -Noxon 64657 -Noy 65170 -Noyce 65170 -Noyes 59774 -Nozio 64201 -Nozomi 63419 -Nozomu 62066 -Nozzle 58632 -Nozzles 60670 -Noël 61584 -Np 61699 -Nplate 63419 -Nr 56140 -Ns 61940 -Nseries 60078 -Nsw 65170 -Nt 60238 -Nth 60670 -Nts 65452 -Ntsc 64657 -Nu 52805 -NuCorp 64905 -NuTone 62331 -NuWood 63792 -Nuala 64657 -Nuance 58523 -Nuashonraithe 59560 -Nubian 60492 -Nubile 63991 -Nubiles 57741 -Nubmer 64657 -Nubuck 58688 -Nucci 65170 -Nuch 63419 -Nucl 54581 -Nuclear 43862 -Nuclease 64905 -Nucleation 63245 -Nuclei 60078 -Nucleic 51425 -Nucleoside 62613 -Nucleotide 35117 -Nucleotides 62066 -Nucleus 56862 -Nucor 64201 -Nude 46862 -Nudes 54581 -Nudge 61699 -Nudie 65170 -Nudist 61051 -Nudity 51312 -Nudix 60238 -Nueces 61051 -Nueropathy 65170 -Nuestra 60580 -Nuestro 61152 -Nueva 56170 -Nuevas 60492 -Nuevo 54096 -Nuevos 64905 -Nuff 61051 -Nuffield 59424 -Nuffnang 65170 -Nugent 55323 -Nugent's 65452 -Nugget 57009 -Nuggets 53271 -Nuh 63792 -Nui 59848 -Nuijten 65170 -Nuisance 58113 -Nuisances 63419 -Nuit 61256 -Nuk 62762 -Nuke 57399 -Nukem 59164 -Nukes 62613 -Null 53712 -NullPointerException 63991 -Nulla 63792 -Nullam 63991 -Nullarbor 63601 -Nullsoft 63077 -Num 55274 -NumColumns 63601 -NumParameters 63601 -NumRows 63419 -NumSum 61940 -Numa 61699 -Numan 65452 -Numancia 65452 -Numark 56827 -Numb 58470 -Numbah 64657 -Number 36167 -NumberAttrib 60078 -NumberDigits 60078 -NumberFormat 58802 -Numbered 59702 -Numbering 59164 -Numbers 44416 -Numbness 63419 -Numeracy 59848 -Numeral 65170 -Numerals 65452 -Numerex 60670 -Numeric 57970 -NumericUpDown 65452 -Numerical 49291 -Numero 62331 -Numerology 60405 -Numerous 51931 -Numismatic 62196 -Numéro 64201 -Nun 58802 -Nun's 64423 -Nunavut 52447 -Nunc 61584 -Nunca 61051 -Nunchuk 63419 -Nuneaton 58919 -Nunes 59424 -Nunez 58860 -Nunn 58065 -Nuno 60078 -Nuns 59848 -Nuova 62469 -Nuovo 61362 -Nuptse 64905 -Nupur 64905 -Nur 60157 -Nurburgring 63792 -Nuremberg 58262 -Nuri 61256 -Nuria 64423 -Nuriootpa 65452 -Nurofen 64423 -Nurs 50742 -Nurse 44208 -Nurse's 62917 -Nurseries 54023 -Nursery 46681 -Nurses 48949 -Nursing 42026 -NursingBritish 63991 -Nurture 61051 -Nurturing 58979 -Nurudin 64657 -Nusa 59848 -Nusbaum 65452 -Nusrat 63419 -Nussbaum 62762 -Nusselt 62196 -Nut 50270 -Nutcracker 58162 -Nutcrackers 64657 -Nutech 63792 -Nutella 61699 -Nutini 63991 -Nutley 63991 -Nutmeg 60492 -Nutr 53024 -Nutra 65170 -Nutraceuticals 59774 -Nutrex 63792 -Nutri 63792 -NutriSystem 61940 -Nutriceuticals 64423 -Nutrient 54380 -Nutrients 57524 -Nutrilite 63601 -Nutrition 41885 -NutritionData 60321 -Nutritional 51017 -Nutritionals 63245 -Nutritionist 60405 -Nutritionists 61818 -Nutritious 61818 -Nutritive 63077 -Nuts 50545 -Nutshell 57482 -Nutt 59774 -Nuttall 63077 -Nutter 61584 -Nuttin 63792 -Nutty 59101 -Nutz 62613 -Nuun 64423 -Nuva 65452 -Nuveen 65452 -Nuvi 54664 -Nuvian 64905 -Nuvo 65452 -Nuweiba 59101 -Nuys 56585 -Nv 62196 -Nvidia 52141 -Nvidia's 62917 -Nw 56585 -Nwanoku 64201 -Nwobhm 63419 -Nwt's 65170 -Nx 58745 -NxM 63792 -Ny 55631 -Nya 65170 -Nyack 62613 -Nyassa 63792 -Nyc 60856 -Nye 55552 -Nygard 59164 -Nyhedsbrev 65452 -Nyiregyhaza 63245 -Nyko 63991 -Nylabone 64657 -Nylink 64657 -Nylon 49713 -NylonMagazineTV 61256 -Nylons 61699 -Nymph 60856 -Nymphaea 63077 -Nyngan 65452 -Nynorsk 62331 -Nyoman 64657 -Nyomi 63991 -Nyquist 60762 -Nystrom 63792 -Nyy 63991 -Nz 62917 -NÃO 64201 -Náhuatl 64905 -Não 60492 -Nächste 65170 -Ní 63601 -Número 63245 -Núñez 64423 -Nürburgring 63601 -Nürnberg 60157 -O 36306 -O'BRIEN 62469 -O'Brian 60952 -O'Brien 49939 -O'Brien's 61472 -O'Byrne 62196 -O'CONNOR 61699 -O'Callaghan 61152 -O'Clock 59848 -O'Connell 54727 -O'Connor 51131 -O'Connor's 61584 -O'DONIS 63419 -O'Day 60762 -O'Dea 61584 -O'Dell 60321 -O'Doherty 64423 -O'Donnell 53138 -O'Donoghue 65170 -O'Donovan 65170 -O'Driscoll 63991 -O'Duffy 63601 -O'Dwyer 65452 -O'Fallon 61256 -O'Farrell 62066 -O'Gara 64423 -O'Gorman 62331 -O'Grady 58417 -O'Halloran 60952 -O'Hanlon 64657 -O'Hara 56862 -O'Hare 51396 -O'Hurley 62066 -O'Kane 63245 -O'Keefe 59039 -O'Keeffe 60238 -O'Lakes 65170 -O'Leary 56618 -O'Loughlin 64201 -O'Malley 56388 -O'Malley's 64657 -O'Meara 62917 -O'Melveny 61818 -O'NEILL 64423 -O'Neal 53917 -O'Neal's 64905 -O'Neil 56862 -O'Neill 52130 -O'Neill's 59424 -O'REILLY 65452 -O'Regan 64657 -O'Reilly 49578 -O'Reilly's 61584 -O'Riordan 61152 -O'Rourke 59702 -O'SULLIVAN 64657 -O'Shaughnessy 60670 -O'Shea 57566 -O'Sullivan 54264 -O'Toole 59101 -O'all 64657 -O'clock 63792 -O'doherty 64657 -O'donnel 64905 -O'donnell 59164 -O'neal 61362 -O's 57238 -OA 49279 -OAA 61472 -OAC 61256 -OAD 56551 -OAG 62762 -OAH 60762 -OAI 61940 -OAIster 63991 -OAK 54041 -OAKLAND 61152 -OAKLEY 61940 -OAKS 60078 -OAKWOOD 63601 -OAM 62613 -OAN 62469 -OAO 58745 -OAR 61152 -OARE 60856 -OASIS 57440 -OAT 60762 -OATH 65452 -OATMEAL 64657 -OAV 64905 -OAuth 60762 -OB 53256 -OBA 64201 -OBAMA 52699 -OBC 58523 -OBD 59424 -OBDII 62762 -OBE 60238 -OBERNDORF 64905 -OBESTAT 61940 -OBEY 64423 -OBGYN 63991 -OBIS 63077 -OBITS 61818 -OBITUARIES 58313 -OBJECT 55934 -OBJECTIVE 60078 -OBJECTIVES 56652 -OBJECTS 59101 -OBLIGATION 62469 -OBLIGATIONS 62917 -OBO 55906 -OBOE 64423 -OBP 60321 -OBR 65170 -OBS 64423 -OBSERVATION 62066 -OBSERVATIONS 59292 -OBSERVATORY 64201 -OBSERVED 63601 -OBSERVER 65452 -OBSTETRICS 64905 -OBTAIN 62469 -OBTAINED 58162 -OBTAINING 63419 -OBX 62331 -OC 48501 -OCA 62613 -OCARINA 63991 -OCAS 65452 -OCAU 62066 -OCB 61256 -OCC 56756 -OCCA 63991 -OCCASION 63245 -OCCASIONS 62066 -OCCUPANCY 63601 -OCCUPATION 62469 -OCCUPATIONAL 59491 -OCCUPATIONS 63601 -OCCUPIED 63077 -OCCURRED 62066 -OCCURRENCE 64423 -OCD 57741 -OCEAN 54879 -OCEANIA 65170 -OCF 63601 -OCG 65170 -OCGA 64657 -OCH 59039 -OCHA 61940 -OCHS 62613 -OCI 60762 -OCIDate 62613 -OCIS 59848 -OCLC 58860 -OCM 61051 -OCO 64201 -OCP 60078 -OCR 49135 -OCS 57160 -OCT 49860 -OCTAVIA 64657 -OCTOBER 48653 -OCW 60952 -OCX 56756 -OCZ 52221 -OCs 62613 -OD 49919 -ODA 57084 -ODB 63077 -ODBC 54540 -ODBCConnection 59560 -ODBCQuery 60238 -ODBCResultSet 59164 -ODC 63077 -ODD 60000 -ODDS 61362 -ODE 57046 -ODEL 65170 -ODEO 64201 -ODEs 63419 -ODF 59560 -ODI 57046 -ODIN 62331 -ODM 59630 -ODMR 60492 -ODN 63245 -ODOR 64423 -ODOT 61152 -ODP 56170 -ODPM 62066 -ODS 57238 -ODT 61362 -ODU 64905 -ODYSSEY 63245 -OE 51511 -OEA 57609 -OECD 44736 -OECD'S 64423 -OECD's 63792 -OED 63601 -OEF 64423 -OEI 64201 -OEM 45218 -OEM's 63419 -OEMs 58113 -OEN 65170 -OES 57399 -OF 32105 -OFAC 65452 -OFC 57696 -OFDM 55631 -OFF 46855 -OFFENSE 64423 -OFFENSES 62196 -OFFENSIVE 61940 -OFFER 52029 -OFFERED 59491 -OFFERING 59424 -OFFERINGS 64905 -OFFERS 53729 -OFFICE 47304 -OFFICER 54360 -OFFICERS 55849 -OFFICES 56356 -OFFICIAL 51184 -OFFICIALLY 59923 -OFFICIALS 60762 -OFFICIEL 62917 -OFFLINE 57278 -OFFSAP 64905 -OFFSET 62196 -OFFSHORE 61362 -OFFSPRING 65452 -OFG 62066 -OFLA 64201 -OFM 60580 -OFR 65452 -OFS 61362 -OFSTED 60856 -OFT 57566 -OFTEN 63245 -OFW 60492 -OG 55526 -OGA 62331 -OGC 56652 -OGCDP 62917 -OGD 64201 -OGDEN 64905 -OGG 56021 -OGI 64657 -OGIO 63245 -OGM 58860 -OGNL 65452 -OGS 62196 -OGT 58802 -OH 40079 -OHA 60762 -OHC 61818 -OHCI 62469 -OHCs 61940 -OHDOT 59357 -OHIO 53346 -OHL 60078 -OHM 63792 -OHN 62613 -OHP 63991 -OHS 55299 -OHSAS 64657 -OHSS 63419 -OHSU 58262 -OHV 59227 -OI 56687 -OIA 64905 -OIC 55500 -OID 62762 -OIE 63419 -OIG 60078 -OIL 50299 -OILS 60762 -OIRO 64201 -OIS 63792 -OISE 64905 -OJ 51220 -OJ's 64423 -OJO 61051 -OJP 63077 -OJSC 61152 -OJT 63792 -OK 41305 -OK'd 64657 -OKAY 63991 -OKC 58745 -OKI 54302 -OKIFAX 62917 -OKIPAGE 62331 -OKLA 63792 -OKLAHOMA 54992 -OKs 58262 -OL 53917 -OLA 63419 -OLAP 54601 -OLC 60000 -OLD 48975 -OLDER 58745 -OLDHAM 64423 -OLE 54749 -OLED 57566 -OLGA 59774 -OLICY 63991 -OLIS 54792 -OLIVE 58979 -OLIVER 59101 -OLIVIA 63601 -OLM 65170 -OLN 65170 -OLP 65452 -OLPC 58017 -OLR 62331 -OLRM 64657 -OLS 59848 -OLSEN 64905 -OLSON 64905 -OLT 65170 -OLTP 63792 -OLUME 65452 -OLX 64201 -OLYMPIA 63792 -OLYMPIC 55274 -OLYMPICS 59774 -OLYMPUS 60952 -OM 52832 -OMA 61152 -OMAHA 63991 -OMAN 60078 -OMAP 62331 -OMAR 63077 -OMB 54207 -OMC 56618 -OMD 59848 -OME 60405 -OMEGA 57358 -OMEN 64657 -OMFG 61051 -OMFS 65452 -OMG 51931 -OMI 65452 -OMIA 38291 -OMIM 35443 -OML 62331 -OMNI 59923 -OMNIA 64657 -OMP 61940 -OMR 63792 -OMS 58113 -OMU 62917 -OMV 63601 -OMX 63077 -OMe 64423 -ON 37106 -ONA 58745 -ONCE 56420 -ONCLUSION 62469 -ONCOLOGY 63991 -OND 64905 -ONDEMAND 64905 -ONE 43246 -ONEREPUBLIC 63601 -ONES 62066 -ONEXONE 57653 -ONG 61362 -ONGC 61584 -ONGOING 63419 -ONID 65452 -ONION 61152 -ONIONS 65452 -ONIX 59424 -ONLINE 45135 -ONLY 44838 -ONLYTORRENTS 62613 -ONO 62917 -ONS 57696 -ONSET 65452 -ONT 58113 -ONTARIO 55821 -ONTENTS 65170 -ONTO 64905 -ONYX 65170 -ONeill 65452 -OO 53746 -OOC 59848 -OOD 64657 -OOO 59039 -OOP 61699 -OOTP 65452 -OOXML 64657 -OOhrs 62469 -OOo 63601 -OP 51415 -OP's 62917 -OPA 60856 -OPAC 62196 -OPAL 64423 -OPAMP 63419 -OPB 63601 -OPC 57653 -OPCW 61152 -OPCs 64905 -OPD 63991 -OPE 57278 -OPEC 50654 -OPEC's 63601 -OPEL 60762 -OPEN 49076 -OPENED 64201 -OPENER 64201 -OPENING 54581 -OPENINGS 61699 -OPENS 61940 -OPERA 59292 -OPERATE 61699 -OPERATED 61818 -OPERATES 65452 -OPERATING 54540 -OPERATION 54380 -OPERATIONAL 59630 -OPERATIONS 53485 -OPERATOR 58313 -OPERATORS 60580 -OPEV 64423 -OPG 63991 -OPHTHALMIC 64423 -OPI 56140 -OPIE 65452 -OPINION 51700 -OPINIONS 58745 -OPIS 62469 -OPK 63792 -OPM 55448 -OPML 55398 -OPN 63419 -OPO 61051 -OPOLSKI 55877 -OPOTIKI 61584 -OPP 59630 -OPPORTUNITIES 54005 -OPPORTUNITY 56388 -OPPOSITE 63792 -OPPOSITION 64657 -OPPs 64423 -OPR 60856 -OPRAH 57084 -OPS 58417 -OPT 56293 -OPTIC 62613 -OPTICAL 54170 -OPTICS 58632 -OPTIMAL 64423 -OPTIMIZATION 60238 -OPTIMUM 63792 -OPTIO 65170 -OPTION 56170 -OPTIONAL 57741 -OPTIONS 52141 -OPTO 63991 -OPTOCOUPLER 63792 -OPTOMETRY 64423 -OPUS 63991 -OQO 59424 -OR 37815 -ORA 64423 -ORAC 65452 -ORACLE 60405 -ORAL 56080 -ORAN 61818 -ORANGE 53565 -ORANGECOUNTYGATEWAYDR 62066 -ORB 62331 -ORBIT 62613 -ORBITAL 63245 -ORBITZ 60952 -ORC 58417 -ORCA 65170 -ORCH 62469 -ORCHARD 61051 -ORCHESTRA 57238 -ORCS 59702 -ORD 57084 -ORDAINED 61940 -ORDER 45969 -ORDERED 57199 -ORDERING 56899 -ORDERS 53952 -ORDINANCE 52913 -ORDINANCES 60762 -ORDINARY 57566 -ORE 63245 -ORECAST 62762 -OREGON 55154 -ORF 55500 -ORFs 59491 -ORG 59164 -ORGAN 61256 -ORGANIC 56791 -ORGANISATION 60321 -ORGANISATIONAL 63419 -ORGANISATIONS 59491 -ORGANIZATION 54749 -ORGANIZATIONAL 60856 -ORGANIZATIONS 58313 -ORGANIZED 63991 -ORGANIZER 64905 -ORGANIZERS 64423 -ORGANIZING 63419 -ORGAO 65170 -ORI 64905 -ORIC 60580 -ORIENT 65170 -ORIENTAL 61584 -ORIENTATION 62917 -ORIGIN 59702 -ORIGINAL 51104 -ORIGINALLY 64657 -ORIGINALS 64423 -ORIGINS 63077 -ORION 59164 -ORISSA 62469 -ORK 61584 -ORL 60580 -ORLANDO 59848 -ORLD 64905 -ORLEANS 59630 -ORLive 65452 -ORM 62762 -ORNAMENT 64423 -ORNL 61940 -ORNs 65170 -ORO 63419 -ORPHEUS 64657 -ORQJ 63991 -ORR 63991 -ORS 52635 -ORTH 62917 -ORV 61699 -OReilly 62762 -ORiNOCO 62762 -ORs 63419 -OS 40128 -OS's 63792 -OSA 50094 -OSB 59292 -OSC 57199 -OSCAR 58688 -OSCE 59923 -OSCILLATOR 65170 -OSCON 65452 -OSCR 65452 -OSCommerce 59923 -OSD 56518 -OSDir 55014 -OSE 64423 -OSF 62469 -OSG 63601 -OSGeo 63419 -OSGi 62762 -OSH 57696 -OSHA 52007 -OSHA's 63601 -OSHIP 64423 -OSHS 61818 -OSI 56080 -OSLO 64657 -OSM 59039 -OSNews 59774 -OSP 60405 -OSPF 64201 -OSRAM 62331 -OSS 54835 -OST 53153 -OSTI 62762 -OSU 52411 -OSU's 64905 -OSV 53712 -OSX 52648 -OSes 62469 -OSs 63419 -OStatic 60405 -OT 49834 -OTA 56485 -OTAGO 64657 -OTB 60405 -OTC 52559 -OTCBB 63601 -OTE 53454 -OTF 59774 -OTFCC 63419 -OTG 63077 -OTH 61256 -OTHER 44208 -OTHERS 56110 -OTHERWISE 57876 -OTIS 62469 -OTLB 65452 -OTM 62917 -OTN 65452 -OTO 62917 -OTOP 62469 -OTOROHANGA 61584 -OTP 56140 -OTR 60157 -OTROS 65452 -OTS 57923 -OTSA 65170 -OTST 61818 -OTT 61818 -OTTAWA 58802 -OTTO 63991 -OTs 63419 -OU 52752 -OUA 65170 -OUNTY 64657 -OUP 61584 -OUR 44361 -OURNAL 58313 -OUSA 63245 -OUT 44751 -OUTBACK 65452 -OUTBOARD 62917 -OUTCOME 59039 -OUTCOMES 59164 -OUTDOOR 54879 -OUTDOORS 60405 -OUTER 61152 -OUTERWEAR 64423 -OUTFIT 59774 -OUTFITS 61152 -OUTING 64201 -OUTLAY 63991 -OUTLET 58745 -OUTLETS 62469 -OUTLINE 57046 -OUTLOOK 57566 -OUTLYING 62917 -OUTPUT 56231 -OUTPUTS 63077 -OUTREACH 63601 -OUTS 64905 -OUTSIDE 55877 -OUTSOURCING 65452 -OUTSTANDING 58065 -OV 54879 -OVA 53988 -OVAL 60321 -OVC 64423 -OVD 63077 -OVEN 62762 -OVER 48949 -OVERALL 53613 -OVERHEAD 65452 -OVERLAND 62917 -OVERLAY 65170 -OVERNIGHT 60405 -OVERNMENT 64657 -OVERSEAS 56652 -OVERSIGHT 61472 -OVERVIEW 53153 -OVNI 62469 -OVX 61699 -OW 57238 -OWA 59848 -OWASP 61472 -OWC 62917 -OWE 64657 -OWEN 61818 -OWENS 60405 -OWK 60321 -OWL 57876 -OWN 51600 -OWNED 59292 -OWNER 55373 -OWNER'S 64423 -OWNERS 58162 -OWNERSHIP 60670 -OWNS 62613 -OX 57084 -OXFORD 54924 -OXIDATION 62613 -OXIDE 61256 -OXLEY 63245 -OXO 61818 -OXYGEN 59702 -OY 62066 -OYC 63077 -OYSTER 59848 -OYTO 64201 -OZ 51202 -OZONE 60856 -OZR 63991 -OZTENNIS 64423 -OZZY 65170 -OZone 60670 -OZtion 57785 -Oa 65452 -Oahu 53646 -Oak 43752 -Oak's 65452 -Oakbrook 57696 -Oakdale 58262 -Oakenfold 62196 -Oakes 58802 -Oakfield 60670 -Oakglen 64905 -Oakham 61472 -Oakhurst 62196 -Oakland 44306 -Oakland's 63792 -Oaklands 62196 -Oaklawn 64905 -Oakleigh 64657 -Oakley 50840 -Oakmont 63601 -Oakridge 63077 -Oaks 48278 -Oakton 63991 -Oakville 55274 -Oakwell 64201 -Oakwood 53646 -Oamaru 58632 -Oana 64423 -Oaphnia 63792 -Oar 62196 -Oars 64201 -Oasis 48662 -Oasys 65452 -Oat 59357 -Oates 57440 -Oath 58632 -Oatlands 64657 -Oatmeal 56324 -Oats 58162 -Oaxaca 59101 -Oaxacan 60580 -Ob 60580 -Oba 59923 -Obadiah 64905 -Obagi 62762 -Obama 36189 -Obama's 44029 -Obamas 60762 -Oban 60856 -Obedience 55500 -Obelisk 64905 -Ober 64905 -Oberammergau 57122 -Oberg 63991 -Oberhausen 64423 -Oberholser 64423 -Oberland 65452 -Oberleutnant 63245 -Oberlin 59560 -Obermeyer 63601 -Oberoi 58979 -Oberon 61472 -Oberst 62469 -Obes 61256 -Obese 58577 -Obesity 50484 -Obey 57278 -Obi 58065 -Obie 58365 -Obispo 56756 -Obit 64657 -Obits 58745 -Obituaries 44794 -Obituary 51541 -Obj 64201 -Object 43893 -ObjectMethod 62066 -ObjectWeb 65452 -Objection 59848 -Objectionable 54479 -Objectional 52029 -Objections 59357 -Objective 50670 -Objectives 49382 -Objectivity 64905 -Objects 46136 -Objet 65452 -Oblast 63077 -Obligation 56551 -Obligations 55423 -Obligatory 62331 -Oblique 58523 -Oblivion 50507 -Oblong 63991 -Obnoxious 63991 -Oboe 59491 -Obras 65452 -Obrigado 64657 -Obrint 59292 -Obrázok 59774 -Obs 58979 -Obscene 61584 -Obscenities 53361 -Obscenity 63245 -Obscura 63601 -Obscure 58417 -Obscurity 64905 -Observance 61256 -Observances 64905 -Observation 51473 -Observational 59630 -Observations 49986 -Observatoire 64905 -Observatories 62331 -Observatory 52198 -Observe 56324 -Observed 52765 -Observer 46412 -Observer's 65452 -Observers 59101 -Observes 63077 -Observing 56050 -Obsessed 55107 -Obsession 54096 -Obsessions 60856 -Obsessive 59491 -Obsessives 60405 -Obsidian 57046 -Obsolescence 65170 -Obsolete 55373 -Obsoleted 61051 -Obst 61699 -Obstacle 58919 -Obstacles 56585 -Obstet 50840 -Obstetric 57831 -Obstetrical 62762 -Obstetrician 63245 -Obstetricians 57785 -Obstetrics 50115 -Obstructed 64423 -Obstruction 58979 -Obstructive 58212 -Obtain 52244 -Obtained 55821 -Obtaining 54685 -Obtains 61584 -Obvious 58745 -Obviously 51521 -Obá 62762 -Oc 60321 -OcUK 65452 -Ocak 64657 -Ocala 52130 -Ocampo 61051 -Ocarina 57831 -Occ 62066 -Occasion 50974 -Occasional 54170 -Occasionally 55178 -Occasions 49926 -Occidental 55323 -Occitan 55373 -Occlusion 60580 -Occlusive 64905 -Occoquan 63991 -Occult 56935 -Occup 57831 -Occupancy 55014 -Occupant 61940 -Occupants 62066 -Occupation 49873 -Occupational 46307 -Occupations 53847 -Occupied 53630 -Occupier 64423 -Occupying 63991 -Occur 62196 -Occurred 62762 -Occurrence 55578 -Occurrences 61362 -Occurring 63991 -Occurs 62469 -Ocean 42824 -Ocean's 58745 -Oceana 59848 -Oceanfront 57358 -Oceania 48464 -Oceanian 63991 -Oceanic 53167 -Oceano 64657 -Oceanogr 63601 -Oceanographic 58470 -Oceanography 56652 -Oceans 52327 -Oceanside 54924 -Oceanus 64657 -Oceanview 60078 -Ocelot 62196 -Och 63792 -Ochenduszko 61362 -Ocho 57160 -Ochoa 59560 -Ochre 63601 -Ochsner 64423 -Ockendon 60078 -Ocoee 61256 -Oconee 57970 -Oconomowoc 59702 -Oconto 64905 -Ocotillo 64905 -Ocracoke 64423 -Oct 30745 -Octagon 56388 -Octagonal 62331 -Octal 64423 -Octane 57831 -Octave 57046 -Octavia 57046 -Octavian 62469 -Octavio 63245 -Octet 64201 -Octo 65452 -October 30729 -October's 61152 -OctoberString 65452 -Octobre 61940 -Octopus 55154 -Octopussy 65170 -Octubre 60000 -Ocular 56140 -Océan 64201 -Od 62331 -Oda 59630 -Oday 60952 -Odd 49033 -OddParents 64201 -Oddball 65170 -Oddballz 65452 -Odden 60078 -Oddi 62613 -Oddie 63792 -Oddities 57318 -Oddly 53847 -Oddo 57399 -Odds 49173 -Oddschecker 59774 -Oddspot 64905 -Oddworld 64657 -Oddy 62469 -Ode 54499 -Odea 63991 -Odean 65170 -Oded 61699 -Odell 60492 -Oden 57831 -Odense 62196 -Odeo 59357 -Odeon 58979 -Oder 64657 -Oderigi 60157 -Odessa 55274 -Odette 58919 -Odie 64905 -Odin 58688 -Odinga 61362 -Odio 60238 -Odo 64423 -Odom 58688 -Odometer 61699 -Odontol 65170 -Odor 54622 -Odour 61362 -Ody 65170 -Odysseas 65170 -Odysseus 62066 -Odyssey 49614 -Oe 61472 -Oech 65452 -Oedipus 60670 -Oeics 65170 -Oekaki 62613 -Oem 62613 -Oeming 65452 -Oesterlund 64905 -Oetiker 65170 -Oetker 63245 -Oey 62613 -Of 32493 -Ofc 60952 -Ofcom 56551 -Ofelia 63245 -Ofer 63991 -Oferta 64905 -Ofertas 60405 -Off 37855 -OffTheBus 64423 -Offa 63245 -Offa's 65452 -Offaly 56021 -Offbeat 47207 -Offenbach 64905 -Offence 63991 -Offences 59702 -Offend 60492 -Offender 53712 -Offenders 54581 -Offending 61699 -Offense 55711 -Offenses 60157 -Offensive 48846 -Offer 42218 -Offered 47559 -Offering 46480 -Offerings 53746 -Offerman 64905 -Offeror 62331 -Offers 39226 -Offi 63245 -Offical 57440 -Office 33687 -Office's 59039 -OfficeJet 62196 -OfficeLocations 63419 -OfficeMax 59292 -OfficeScan 65452 -OfficeTeam 63601 -Officeholder 65170 -Officejet 55631 -Officer 38592 -Officer's 56388 -Officers 46318 -Offices 43939 -Official 38530 -Officially 52303 -Officials 47748 -Officiant 63792 -Officiants 58017 -Officiating 61584 -Officine 63991 -Offishall 57009 -Offline 42445 -Offload 65452 -Offroad 55154 -Offroading 63077 -Offs 63419 -Offseason 61472 -Offset 53746 -Offsets 63245 -Offshore 48882 -Offshoring 62469 -Offside 60157 -Offsite 54792 -Offspring 55250 -Offtopic 59923 -Offtopics 63419 -Oficial 61818 -Oficina 62066 -Ofloxacin 59292 -Oflu 62762 -Ofna 64905 -Ofsted 57876 -Oftalmol 64657 -Ofte 63245 -Often 48944 -Og 60670 -Ogasawara 63419 -Ogata 65170 -Ogawa 59491 -Ogden 54096 -Ogeechee 64905 -Ogenaarekhua 64657 -Ogg 59491 -Ogilvie 61152 -Ogilvy 60078 -Ogio 59630 -Ogle 62469 -Oglesby 62613 -Oglethorpe 61256 -Ogos 64905 -Ogre 60078 -Ogu 65452 -Ogura 63077 -Oh 42336 -OhMyApartment 63077 -OhThePeacock 62762 -Ohana 60580 -Ohara 65452 -Ohashi 64201 -Ohh 59227 -Ohhh 60078 -Ohio 38991 -Ohio's 57923 -OhioLINK 62613 -Ohlins 60670 -Ohloh 58802 -Ohlone 63792 -Ohlsen 64423 -Ohlsson 64905 -Ohm 56652 -Ohmic 65170 -Ohms 61584 -Ohne 64905 -Ohno 60321 -Ohrid 64905 -Ohta 61152 -Oi 56551 -Oikocredit 56687 -Oikos 60952 -Oil 39864 -Oil's 62066 -Oiled 60952 -Oiler 59424 -Oilers 53423 -Oilfield 61584 -Oils 50416 -Oilsands 63601 -Oilseed 64201 -Oilseeds 65452 -Oily 58313 -Oink 64905 -Ointment 61818 -Oishii 63792 -Oita 61940 -Oj 65452 -Ojai 60157 -Ojeda 64423 -Ojibwa 63792 -Ojibway 62066 -Ojo 62066 -Ojon 63245 -Ojos 62613 -Ok 48786 -Oka 60952 -Okada 60952 -Okaloosa 61584 -Okami 62613 -Okamoto 59491 -Okan 65452 -Okanagan 57160 -Okanogan 61472 -Okara 64201 -Okavango 61256 -Okay 51238 -Okayama 59292 -Okazaki 61940 -Okeechobee 60000 -Okehampton 61940 -Okemo 64657 -Okerlund 63792 -Okeroa 65452 -Okey 65170 -Oki 57876 -Okidata 58979 -Okie 63991 -Okina 60157 -Okinawa 54946 -Okinawan 63419 -Okita 65452 -Okkervil 64201 -Okla 63419 -Oklahoma 40598 -Oklahoma's 58632 -Oklahoman 63077 -Oklahomans 64423 -Oko 64201 -Okoboji 63792 -Okoker 60000 -Okotoks 65170 -Okra 63991 -Okrug 63419 -Oksana 61818 -Okt 61472 -Oktibbeha 63991 -Oktober 55526 -Oktoberfest 54380 -Okuda 64905 -Okuma 63245 -Okumura 64905 -Ol 58212 -Ola 56652 -Olaf 56485 -Olanzapine 62762 -Olas 63245 -Olathe 57741 -Olav 61584 -Olax 62613 -Olay 60670 -Olazabal 65170 -Olbermann 55373 -Olbermann's 63792 -Olcott 64201 -Olcott's 64423 -Old 37970 -Oldbod 65170 -Oldbury 62613 -Olde 54419 -Olden 64657 -Oldenburg 61051 -Oldenwilde 65170 -Older 42252 -Oldest 42560 -Oldfield 58577 -Oldguy 65170 -Oldham 52805 -Oldie 63792 -Oldies 52913 -Oldman 61362 -Olds 58017 -Oldschool 64657 -Oldsmobile 53988 -Oldtown 63601 -Ole 51541 -OleOle 64657 -Olea 64905 -Olean 62917 -Oleander 62196 -Olefin 63601 -Oleg 55657 -Oleh 64657 -Oleic 65452 -Oleksiy 65452 -Olen 64905 -Olena 63991 -Olentangy 62066 -Olesen 63601 -Olevia 60157 -OlexijL 63792 -Olfactory 62066 -Olga 52765 -Oli 58919 -Oligo 63991 -Oligocene 59039 -Oligodendrocytes 64905 -Oligodynamic 61472 -Oligonucleotide 61051 -Oligonucleotides 64657 -Olimar 61818 -Olimpia 64201 -Olin 57609 -Olinda 62331 -Olinger 64201 -Olio 65452 -Oliphant 61584 -Oliva 57160 -Olivain 64905 -Olivares 64657 -Olive 47374 -Oliveira 57199 -Oliver 46253 -Oliver's 60078 -Olivera 63245 -Oliveros 62196 -Olivers 65452 -Olives 57653 -Olivet 63419 -Olivetti 60000 -Olivia 49464 -Olivia's 63792 -Olivier 52765 -Olli 62762 -Ollie 56518 -Olly 62196 -Olmak 61940 -Olmedo 64657 -Olmert 58688 -Olmert's 64423 -Olmos 62762 -Olmstead 62066 -Olmsted 56140 -Olney 57609 -Olof 62066 -Olsen 50277 -Olsen's 63419 -Olsenbanden 65452 -Olsens 65170 -Olson 51303 -Olson's 61256 -Olsson 58802 -Olszewski 65452 -Olufsen 63077 -Olvera 62331 -Oly 64201 -Olympia 51560 -Olympiad 61152 -Olympiadas 63792 -Olympian 52818 -Olympians 58262 -Olympic 42888 -Olympics 43359 -Olympique 59227 -Olympos 64657 -Olympus 48450 -Olypian 65452 -Om 51783 -Oma 65452 -Omagh 58162 -Omaha 47883 -Omak 64657 -Oman 45843 -Omani 61699 -Omar 50537 -Omari 64905 -Omarion 61051 -Ombragé 64201 -Ombre 62331 -Ombudsman 50742 -Omega 48169 -OmegaPirate 63601 -OmegaPlex 59702 -Omelet 65170 -Omelette 62613 -Omen 58113 -Omens 65452 -Omer 59039 -Omg 61472 -Omgili 58860 -Omi 65170 -Omicron 58860 -Omics 62917 -Omid 65170 -Omissions 64423 -Omit 63419 -Omitted 61818 -Ommaney 64905 -Omni 52648 -OmniBook 61362 -OmniMount 64657 -OmniReelLife 62196 -Omnia 56551 -Omnibus 58113 -Omnidirectional 65452 -Omnipage 64905 -Omnis 63077 -Omniture 62066 -Omnivore's 62066 -Omron 57318 -Omsk 65170 -On 30783 -OnBehalfOf 63991 -OnBoard 57970 -OnDemand 59164 -OnHelp 62917 -OnLine 55373 -OnLoad 61818 -OnLy 65170 -OnSite 64423 -OnStar 53346 -OnSubmit 62917 -OnUnload 62762 -Ona 62762 -Onalaska 64905 -Onan 62196 -Onassis 63792 -Onboard 56618 -Oncaea 64657 -Once 40134 -OncoLink 63419 -Oncogene 59039 -Oncol 53256 -Oncologist 61472 -Oncologists 65170 -Oncology 48672 -Oncorhynchus 65170 -Onda 61818 -Ondansetron 64201 -Onde 62762 -Onder 63991 -Ondergrondtv 63601 -Ondertitels 61584 -Ondine 64905 -One 33308 -One's 55793 -OneCall 65170 -OneCare 55992 -OneCart 61472 -OneClick 61472 -OneGreatFamily 60580 -OneNote 59560 -OnePass 59357 -OneRepublic 62066 -OneStat 62613 -OneStation 64905 -OneTouch 59774 -OneTravel 63245 -OneWorld 61472 -Oneal 64905 -Onegai 61472 -Oneida 53095 -Oneness 55552 -Oneonta 61051 -Ones 51867 -Oneself 64905 -Onesie 60580 -Onesies 59702 -Oneview 59702 -Ong 57399 -Ongar 64423 -Ongoing 51560 -Onhop 64905 -Oni 60670 -Onicha 62762 -Onin 64201 -Onion 50484 -Onions 56756 -Onis 64905 -Onision 64423 -Onitsuka 63792 -Onizuka 62917 -Onkelz 65452 -Onkyo 56935 -Online 31177 -Online's 57160 -Only 36491 -OnlyTorrents 63077 -Onlytorrents 61699 -Onmyouji 64657 -Onna 64905 -Ono 56170 -Ono's 63077 -Onofre 65452 -Onondaga 60000 -Ons 58688 -Onsale 61818 -Onsen 61584 -Onset 58113 -Onshore 63077 -Onsite 55373 -Onslaught 58523 -Onslow 58860 -Onstage 62331 -Ont 63991 -Ontarians 64905 -Ontario 41589 -Ontario's 57399 -OntarioJobsInCanada 63792 -Onteniente 64423 -Onto 60952 -Ontogeny 65452 -Ontologies 61051 -Ontology 56756 -Ontos 63792 -Ontrack 64423 -Onur 61152 -Onward 62196 -Onyx 54096 -Onyxia 59292 -Onyxia's 61051 -Onze 65170 -Oo 58577 -Ooch 63601 -Oocytes 62196 -Oodle 52635 -Ooh 55202 -Ook 65452 -Ookla 60157 -Oolong 59491 -Ooltewah 59292 -Oommen 64905 -Oomph 59292 -Ooo 64201 -Oooh 63245 -Ooooh 65452 -Oops 57524 -Ootmarsum 64905 -Ooty 58802 -Op 52982 -OpEdNews 65170 -OpRisk 65170 -Opa 64423 -Opacity 62917 -Opal 53646 -Opalesque 60580 -Opals 65452 -Opaque 58802 -Opaques 62196 -Opdyke 64201 -Opec 57876 -Oped 63419 -Opel 54023 -Opelika 64905 -Opell 65170 -Open 35419 -OpenACS 59424 -OpenAIR 65452 -OpenBSD 58745 -OpenBoards 63601 -OpenByReplicaID 65452 -OpenCCM 64423 -OpenCourseWare 58262 -OpenCube 59292 -OpenDS 63601 -OpenForum 64657 -OpenGL 53952 -OpenID 55821 -OpenIfModified 65452 -OpenLDAP 63601 -OpenMP 63991 -OpenMail 64423 -OpenManage 60321 -OpenMoko 65452 -OpenNTF 64905 -OpenOffice 59357 -OpenPaste 65170 -OpenPhrases 65170 -OpenQNX 64905 -OpenSSH 61256 -OpenSSL 56140 -OpenSUSE 64905 -OpenSim 64201 -OpenSocial 64423 -OpenSolaris 57318 -OpenSource 61051 -OpenSuSE 64905 -OpenSuber 65170 -OpenSubtitles 56652 -OpenSuse 57923 -OpenTable 65452 -OpenType 59491 -OpenURL 46793 -OpenVMS 55014 -OpenVP 64201 -OpenView 59848 -OpenWithFailover 64423 -OpenWorld 62613 -OpenWrt 59630 -OpenX 64657 -Opened 55154 -Opener 53485 -Openers 54946 -Opening 43806 -Openings 49482 -Openlist 55423 -Openly 62066 -Openmoko 64657 -Openness 60238 -Opens 47153 -Openssl 64423 -Opensubtitles 63245 -Oper 61699 -Opera 44447 -Opera's 61584 -Operands 63077 -Operant 64201 -Operas 58688 -Operate 56262 -Operated 52725 -Operates 57970 -Operatic 61699 -Operating 41257 -Operation 45023 -Operational 48139 -Operations 42042 -Operative 56388 -Operatives 65452 -Operator 46628 -Operator's 59491 -Operators 49701 -Operetta 64657 -Operon 64657 -Opes 63077 -Opeth 60952 -Oph 62762 -Ophelia 58745 -Ophir 63245 -Ophtalmol 61940 -Ophthal 62613 -Ophthalmic 56021 -Ophthalmol 51284 -Ophthalmologic 64657 -Ophthalmologist 63991 -Ophthalmologists 58919 -Ophthalmology 50890 -Opiate 59923 -Opie 57696 -Opin 55578 -Opinii 64905 -Opinion 37713 -Opinionated 62762 -Opinions 43790 -Opioid 60405 -Opis 64423 -Opium 58065 -Opn 59702 -Oporto 65452 -Opp 61256 -Oppenheim 62196 -Oppenheimer 59560 -Oppo 60762 -Opponent 56972 -Opponents 56420 -Opportunies 65170 -Opportunistic 60157 -Opportunites 60492 -Opportunities 40707 -Opportunity 44810 -Oppose 59848 -Opposed 62762 -Opposes 61256 -Opposing 57399 -Opposite 54813 -Opposites 59424 -Opposition 52411 -Oppression 64905 -Opps 62613 -Oprah 50484 -Oprah's 55992 -Opry 61362 -Opryland 63792 -Ops 53952 -Opslaan 54005 -Opt 55226 -Opteron 55552 -Opti 65452 -OptiBoard 63077 -OptiFix 63245 -OptiPlex 59702 -Optiarc 65452 -Optic 52872 -Optical 42987 -Optically 61256 -Opticalman 54727 -Optician 65170 -Opticians 53066 -Opticon 64423 -Optics 44435 -OpticsInfoBase 60321 -OpticsPlanet 64423 -Optik 64423 -Optima 54581 -Optimal 50053 -Optimality 62613 -Optimisation 55323 -Optimise 63601 -Optimised 61051 -Optimising 65170 -Optimism 59164 -Optimist 58632 -Optimistic 59424 -Optimists 64905 -Optimización 64201 -Optimization 46301 -Optimizations 64423 -Optimize 53952 -Optimized 54419 -Optimizer 54341 -Optimizers 59039 -Optimizes 62066 -Optimizing 54792 -Optimum 53316 -Optimus 56687 -Opting 64423 -Optio 53729 -Option 44433 -Optional 45389 -Optionally 62331 -Optionetics 64201 -Options 38197 -Optiplex 62613 -Optix 64201 -Opto 61699 -Optoelectronic 62469 -Optoelectronics 59039 -Optom 64201 -Optoma 59702 -Optometric 61699 -Optometrist 60856 -Optometrists 56618 -Optometry 54581 -Optra 61051 -Optreden 63077 -Optronics 61472 -Optus 55348 -OptusNet 61818 -Opulence 63792 -Opuntia 64423 -Opus 53517 -Or 38435 -Ora 58262 -Oracle 43237 -Oracle's 59101 -OracleAS 56551 -Oral 44343 -Orally 64423 -Oram 64201 -Oran 64905 -Orang 62613 -Orange 41185 -Orange's 63077 -OrangeCD 63792 -Orangeburg 59101 -Orangemen 60238 -Oranges 57696 -Orangevale 64905 -Orangeville 59774 -Orangutan 61256 -Orangutans 65170 -Oratorio 59424 -Orb 57238 -Orbach 64905 -Orban 63245 -Orbea 62613 -Orbis 60405 -Orbison 63245 -Orbit 51229 -Orbital 55849 -Orbiter 57482 -Orbiting 63991 -Orbits 63245 -Orbitz 51541 -Orble 60952 -Orbs 65170 -Orbscan 64423 -Orc 56721 -Orca 57696 -Orcas 61940 -Orchant 65170 -Orchard 49584 -Orchards 58860 -Orchestra 45662 -Orchestra's 65452 -Orchestral 47630 -Orchestras 61472 -Orchestration 62196 -Orchestre 60762 -Orchid 53346 -Orchids 56388 -Orcinus 62196 -Orcs 60238 -Orcutt 61818 -Ord 58979 -Orda 62917 -Ordained 64905 -Orden 63991 -Order 34572 -Orderable 63792 -Ordered 53241 -Ordering 46207 -Orderly 62613 -Orders 43639 -Ordinance 48001 -Ordinances 50823 -Ordinarily 64905 -Ordinary 48711 -Ordination 63991 -Ordnance 54857 -Ordnanceman 54727 -Ordo 61699 -Ordonez 64905 -Ordos 64423 -Ordovician 61051 -Ordre 64657 -Ordway 62331 -Ore 54835 -Oreck 60405 -Oregano 58417 -Oregon 40462 -Oregon's 55934 -Oregonian 57653 -Oregons 64423 -Orem 55934 -Oren 59039 -Oreo 60492 -Ores 64657 -Oreste 65452 -Orff 61940 -Orford 62066 -Org 53271 -OrgDirectoryPath 63601 -Orga 65170 -Organ 50136 -Organic 43260 -Organically 62196 -Organics 52858 -Organisation 47150 -Organisational 53196 -Organisations 50178 -Organische 64905 -Organise 61051 -Organised 57160 -Organiser 59101 -Organisers 55849 -Organising 57358 -Organism 59227 -Organisms 58065 -Organist 62469 -Organización 64905 -Organization 42171 -Organization's 58919 -Organizational 48221 -Organizations 44019 -Organize 52609 -Organized 52107 -Organizer 50402 -Organizers 51590 -Organizes 64201 -Organizing 50484 -Organometallic 60952 -Organometallics 60157 -Organs 56110 -Organza 62917 -Orgasm 55821 -Orgasms 61472 -Orgel 65452 -Orgies 62613 -Orginal 63991 -Orgrimmar 59101 -Orgs 61152 -Orgy 54792 -Orhan 61256 -Ori 62331 -Oriana 64905 -Orica 64201 -Oriel 58365 -Orient 50053 -Oriental 48721 -Orientation 49336 -Orientations 62613 -Oriente 65452 -Oriented 52584 -Orienteering 61584 -Orifice 64423 -Orig 58860 -Origami 57440 -Origen 64201 -Origin 47745 -OriginImmigration 62917 -Original 39876 -Originality 58745 -Originally 40223 -Originals 53501 -Originated 62196 -Originating 59292 -Origination 61584 -Originator 62331 -Originators 65170 -Origins 50742 -Orillia 61051 -Orin 62066 -Orinda 61584 -Oring 65170 -Orinoco 61940 -Oriol 64423 -Oriole 59848 -Orioles 52559 -Orion 50906 -Oris 63601 -Orisa 63419 -Orissa 55130 -Oritavancin 65452 -Oriya 59560 -Orkin 62917 -Orkney 54992 -Orkneys 64905 -Orkut 54902 -Orla 59164 -Orland 54857 -Orlando 42273 -Orlando's 62762 -Orleans 43306 -Orlistat 63601 -Orlov 65170 -Orly 62917 -Orman 61472 -Orme 61818 -Ormesby 64905 -Ormond 56827 -Ormonde 63792 -Ormskirk 58979 -Ornament 52303 -Ornamental 55738 -Ornaments 51104 -Ornate 60078 -Ornette 62196 -Ornithologie 63792 -Ornithology 60157 -Oro 54479 -Orochi 61152 -Orochimaru 64201 -Oromo 59923 -Orono 64657 -Oronoco 65170 -Oropharyngeal 65452 -Oroville 61584 -Orozco 61256 -Orphan 54902 -Orphanage 60238 -Orphaned 61256 -Orphans 58688 -Orpheum 59774 -Orpheus 59774 -Orpington 61472 -Orquesta 62196 -Orr 55448 -Orrico 64201 -Orrin 62917 -Ors 65452 -Orsay 61152 -Orsi 64905 -Orson 56551 -Ort 63991 -Ortaca 64201 -Ortega 55877 -Ortelius 62331 -Orth 65452 -Orthaheel 63991 -Ortho 55226 -Orthod 57160 -Orthodontic 57609 -Orthodontics 55084 -Orthodontist 61362 -Orthodontists 61699 -Orthodox 51284 -Orthodoxy 60580 -Orthogonal 59774 -Orthologs 58688 -Orthology 64905 -Orthop 53501 -Orthopaedic 53124 -Orthopaedics 55226 -Orthopedic 52268 -Orthopedics 55500 -Orthophoto 63991 -Orthotic 61152 -Orthotics 60952 -Ortigas 61152 -Ortiz 53597 -Ortofon 64201 -Orton 55178 -Ortop 65170 -Ortronics 60856 -Oru 64201 -Orv 61818 -Orville 58523 -Orvis 57278 -Orwell 57318 -Orwellian 64201 -Oryx 60762 -Oryza 60238 -Orzo 64201 -Os 54792 -OsCommerce 63991 -Osa 63245 -Osage 57876 -Osaka 51312 -Osama 52635 -Osamu 60238 -Osasuna 64657 -Osborn 57876 -Osborne 50856 -Osbourne 54685 -Osburn 65170 -Oscar 47241 -Oscar's 62613 -Oscars 52805 -Osceola 56585 -Oscillating 60157 -Oscillation 61051 -Oscillations 63792 -Oscillator 58417 -Oscillators 64657 -Oscilloscope 60670 -Oscilloscopes 62917 -Oscommerce 62066 -Osean 62762 -Osetia 61940 -Osgood 61472 -Osgoode 63245 -Osha 64657 -Oshawa 52832 -Osher 60952 -Oshkosh 57923 -Osho 61152 -Osim 61584 -Osiris 58979 -Oskaloosa 63245 -Oskar 58365 -Osler 64657 -Oslin 64657 -Oslo 49365 -Osman 59164 -Osmania 64201 -Osment 64657 -Osmium 64423 -Osmond 59227 -Osmonds 65452 -Osmosis 59848 -Osmotic 61472 -Oso 61940 -Osorio 61940 -Osorno 64201 -Ospedale 60670 -Ospina 62613 -Osprey 54857 -Ospreys 61818 -Osram 61051 -Osseo 64657 -Ossetia 57785 -Ossetian 62469 -Ossett 64201 -Ossian 63245 -Ossining 61584 -Ost 58262 -Osta 62196 -Ostatnio 64905 -Osteen 62469 -Ostend 64423 -Ostendorf 65452 -Osteoarthritis 58212 -Osteomyelitis 64657 -Osteopath 63601 -Osteopathic 55631 -Osteopaths 63419 -Osteopathy 61818 -Osteoporosis 53970 -Oster 59491 -Osterman 62762 -Ostet 65170 -Ostomy 62762 -Ostrander 64905 -Ostrava 65452 -Ostrich 59227 -Ostrobothnia 64201 -Ostrom 63601 -Ostrosky 65170 -Ostrow 63245 -Osvaldo 62762 -Oswald 55526 -Oswald's 65170 -Oswaldo 59491 -Oswalt 62196 -Oswego 55250 -Oswell 65452 -Oswestry 62613 -Ot 59702 -Ota 59292 -Otago 54041 -Otaku 59292 -Otani 63991 -Otc 62196 -Otchinjau 62469 -Otek 65170 -Otel 62331 -Otero 59774 -Othello 57609 -Other 30771 -Other's 63245 -Otherness 65170 -Others 43422 -Otherwise 51349 -Othman 65452 -Otic 65170 -Otis 52559 -Otitis 62331 -Otley 61362 -Oto 65170 -Otol 58745 -Otolaryngol 55963 -Otolaryngology 55526 -Otome 63991 -Otorhinolaryngol 61940 -Otro 64905 -Otros 61940 -Otsego 61152 -Otsuka 64905 -Ott 57831 -Ottawa 45909 -Ottawa's 62613 -Ottaway 64201 -Otten 65170 -Otter 54902 -Otterbein 62917 -Otterbox 63792 -Otters 64657 -Ottery 65170 -Otto 51600 -Otto's 61051 -Ottobre 65170 -Ottoman 51835 -Ottomans 58523 -Ottumwa 63419 -Otway 64657 -Oty 63991 -Ou 56827 -Ouachita 64423 -Oubridge 60670 -Ouch 58212 -Oud 64201 -Oude 62762 -Oudenburg 65170 -Oudtshoorn 64423 -Ouellette 63601 -Ouest 61584 -Ought 62469 -Oughta 64905 -Ouguiya 63245 -Oui 64905 -Ouija 62196 -Ould 64905 -Oulton 63077 -Oulu 58113 -Ounce 58632 -Ounces 56972 -Our 32128 -OurSports 63419 -OurStage 64657 -Ouran 58860 -Ouro 63077 -Ours 57524 -Ourselves 60078 -Ousted 65170 -Out 37204 -OutKast 63792 -OutParcel 63601 -OutPersonals 62469 -OutSpark 63077 -Outage 58632 -Outages 60238 -Outback 52387 -Outboard 55474 -Outboards 57876 -Outbound 57046 -Outbreak 56485 -Outbreaks 60952 -Outbuilding 64657 -Outbuildings 62613 -Outcast 60000 -Outcome 51444 -Outcomes 50129 -Outcry 57524 -Outdated 57278 -Outdoor 39932 -Outdoors 42554 -Outdoorsman 63991 -Outed 59702 -Outen 62762 -Outer 48643 -Outerspace 64657 -Outerwear 50164 -Outfit 55202 -Outfits 54439 -Outfitter 59630 -Outfitters 51974 -Outfitting 62331 -Outflow 64905 -Outgoing 57084 -Outhouse 64201 -Outil 63991 -Outils 64657 -Outing 57318 -Outings 59491 -Outkast 58802 -Outland 56935 -Outlander 61699 -Outlands 64657 -Outlaw 54770 -Outlaws 58470 -Outlawz 65170 -Outlay 62762 -Outlet 45039 -Outletbuy 63077 -Outlets 52609 -Outline 45479 -OutlineEntry 53988 -Outlined 64657 -Outlines 53361 -Outlining 64905 -Outlook 43574 -Outlooks 59560 -Outlying 52198 -Outpatient 54540 -Outpatients 65170 -Outperform 62066 -Outplacement 62196 -Outpost 55060 -Output 46395 -OutputDebugString 65170 -Outputs 55631 -Outrage 59101 -Outraged 63077 -Outrageous 58577 -Outreach 48327 -Outrigger 59292 -Outright 57609 -Outrights 60000 -Outro 61818 -Outros 64905 -Outrunner 64657 -Outs 57318 -Outside 45084 -Outside's 63792 -Outsider 54835 -Outsiders 60078 -Outskirts 61362 -Outsource 58365 -Outsourced 61051 -Outsourcing 49602 -Outspark 62762 -Outstanding 48386 -Outstate 64657 -Outta 57653 -Outtakes 59491 -Outubro 62917 -Outward 60856 -Outwell 64905 -Outwits 64657 -Ouverture 64905 -Ov 61584 -Ova 63419 -Oval 49319 -Ovals 64657 -Ovando 65170 -Ovarian 53830 -Ovary 60321 -Ovation 56080 -OvationTV 62469 -Ove 60580 -Ovechkin 62469 -Oven 50185 -Ovens 51931 -Over 38243 -OverDrive 54924 -OverNight 65170 -Overactive 62762 -Overall 40900 -Overalls 60580 -Overberg 65452 -Overboard 62469 -Overbrook 64201 -Overcast 56972 -Overclock 62331 -Overclocked 62469 -Overclockers 58470 -Overclocking 53454 -Overcoat 65452 -Overcome 46307 -Overcoming 55963 -Overdosage 65170 -Overdose 55821 -Overdraft 63601 -Overdrive 55154 -Overdue 64423 -Overexpression 57566 -Overflow 56200 -Overhaul 58065 -Overhauling 63601 -Overhauser 64201 -Overhead 52818 -Overheads 65170 -Overheard 58417 -Overheating 63077 -Overhill 64657 -Overholt 65452 -Overkill 58860 -Overland 52221 -Overlap 60321 -Overlapping 59292 -Overlay 53256 -Overlays 59774 -Overload 55821 -Overloaded 65452 -Overloading 63991 -Overlook 58577 -Overlooked 58745 -Overlooking 60238 -Overlord 58745 -Overlords 64905 -Overly 63601 -Overman 61051 -Overnight 46040 -Overpass 65170 -Overpayment 60952 -Overpayments 64905 -Overpriced 63245 -Overrated 61699 -Override 61472 -Overrides 60321 -Overruled 63077 -Overrun 62762 -Oversea 63245 -Overseas 47140 -Oversee 61256 -Overseeing 65452 -Overseer 62331 -Overseers 60000 -Oversees 63991 -Oversettelser 63419 -Oversight 53712 -Oversigt 65452 -Oversize 58313 -Oversized 55821 -Overstated 58802 -Overstock 53970 -Overstocked 65452 -Overstrand 65452 -Overstreet 62917 -Oversættelser 63419 -Overtime 57524 -Overton 58470 -Overton's 65452 -Overture 55604 -Overturn 65452 -Overturns 61940 -Overused 63601 -Overview 38101 -Overviews 60321 -Overwater 65170 -Overweight 55766 -Overwhelmed 63077 -Overwhelming 64201 -Overzicht 63245 -Ovi 62917 -Ovid 50150 -Ovid's 56262 -Oviedo 60580 -Ovni 63991 -Ovo 63245 -Ovulation 56935 -Ow 62917 -Owain 63991 -Owasso 60238 -Owe 60405 -Owed 64657 -Owen 46781 -Owen's 60405 -Owens 51104 -Owensboro 65170 -Owensville 63991 -Owes 63419 -Owing 56110 -Owings 56485 -Owl 51985 -Owl's 64201 -Owls 55738 -Own 41424 -Ownage 64423 -Owned 49566 -Owner 43896 -Owner's 52496 -OwnerIQ 56721 -OwnerVisitReportMap 64201 -Owners 46296 -Ownership 48350 -Owning 55423 -Owns 58365 -Owosso 64905 -Owsley 64905 -Ox 56585 -Oxbow 62469 -Oxbridge 63792 -Oxenham 65452 -Oxfam 56551 -Oxfam's 59101 -Oxford 41366 -Oxford's 65170 -Oxfords 64657 -Oxfordshire 51963 -Oxi 59702 -Oxia 62469 -Oxidase 62331 -Oxidation 55154 -OxidationDefects 59227 -Oxidative 56827 -Oxide 52327 -Oxides 60321 -OxidesComposites 59227 -Oxidising 63792 -Oxidized 62196 -Oxidoreductases 64201 -Oxley 57199 -Oxnard 56935 -Oxo 62469 -Oxoid 64657 -Oxon 59923 -Oxonomics 63792 -Oxted 64201 -Oxy 61362 -Oxyacetylene 63077 -Oxycodone 61818 -Oxycontin 58577 -Oxygen 49482 -Oxygenation 65170 -Oxymoron 65452 -Oxytocin 62917 -Oy 55963 -Oya 63991 -Oyama 65170 -Oye 61362 -Oyj 62066 -Oyster 52152 -Oysters 58470 -Oyu 65170 -Oyun 61362 -Oyunlar 65452 -Oz 49476 -Ozaki 64905 -Ozark 56356 -Ozarks 56652 -Ozaukee 62613 -Ozawa 59774 -Ozdirect 62196 -Ozer 63991 -Ozford 64201 -Ozinga 64201 -Ozma 65170 -Ozman 65452 -Ozone 52351 -Ozzfest 62469 -Ozzie 59101 -Ozzy 55738 -OÀC 64423 -P 35064 -P's 58979 -P'word 64657 -PA 38315 -PA's 62331 -PAA 58919 -PAB 59848 -PABA 64657 -PABLO 60405 -PABS 64201 -PABX 63991 -PAC 50932 -PACAP 58577 -PACC 62917 -PACCAR 65170 -PACE 56200 -PACER 60000 -PACIFIC 54770 -PACK 52725 -PACKAGE 52899 -PACKAGES 57278 -PACKAGING 56827 -PACKARD 62762 -PACKED 64423 -PACKERS 63991 -PACKET 62469 -PACKETS 65170 -PACKING 60580 -PACKS 59227 -PACS 55849 -PACT 61152 -PACs 59630 -PAD 54792 -PADDY 63601 -PADI 59774 -PADIS 62196 -PADRECC 63077 -PADS 56551 -PAE 60670 -PAEDIATRICA 64423 -PAF 59101 -PAG 58632 -PAGE 45277 -PAGES 50940 -PAH 55934 -PAHA 61152 -PAHs 56324 -PAI 58162 -PAID 53533 -PAIGE 63419 -PAIL 56687 -PAIN 54902 -PAINT 56356 -PAINTBALL 62762 -PAINTED 58979 -PAINTER 65452 -PAINTING 56827 -PAINTINGS 64905 -PAINTS 63792 -PAIR 55992 -PAIRS 62066 -PAIS 63245 -PAK 61584 -PAKISTAN 57399 -PAL 49732 -PALACE 59292 -PALAU 61152 -PALE 64657 -PALERMO 64657 -PALESTINE 64201 -PALESTINIAN 63991 -PALF 63077 -PALIN 57831 -PALIN'S 63419 -PALLET 63419 -PALM 56262 -PALMER 61818 -PALMERSTON 57785 -PALMS 62917 -PALO 63601 -PALS 55348 -PALtv 60405 -PAM 55877 -PAMELA 61152 -PAMPA 64657 -PAN 54664 -PANAMA 59491 -PANASONIC 52954 -PANCAKE 65170 -PANDA 63601 -PANDORA 64905 -PANEL 53241 -PANELS 60157 -PANGOLAT 64423 -PANIC 60952 -PANICS 64905 -PANKRATION 62613 -PANPIPES 65170 -PANTHER 63077 -PANTHERS 65452 -PANTONE 62469 -PANTRY 62762 -PANTS 56899 -PANTY 64657 -PAO 59101 -PAOD 65170 -PAP 55084 -PAPA 62917 -PAPAKURA 61472 -PAPER 50101 -PAPERBACK 60405 -PAPERS 52673 -PAPUA 61362 -PAQ 65170 -PAR 55766 -PARA 55552 -PARADE 57970 -PARADIGM 65170 -PARADISE 59630 -PARADOX 65170 -PARAGON 64423 -PARAGRAPH 62331 -PARAGUAY 61256 -PARALLEL 58262 -PARAMETER 58577 -PARAMETERS 58212 -PARAMOUNT 64657 -PARC 62613 -PARCEL 57970 -PARCELS 62762 -PARDEEVILLE 64905 -PARENT 56324 -PARENTAL 63245 -PARENTCENTRAL 64201 -PARENTING 63245 -PARENTS 56899 -PARI 63419 -PARIS 51711 -PARISH 59101 -PARK 47293 -PARKER 57524 -PARKING 54924 -PARKINSN 60670 -PARKS 56356 -PARKWAY 62196 -PARLAK 56721 -PARLIAMENT 60856 -PARMA 65452 -PAROISSE 64905 -PAROLE 60321 -PARP 59039 -PARROT 62469 -PARS 59774 -PART 46960 -PARTE 57318 -PARTIAL 59227 -PARTIALLY 64657 -PARTICIPANTS 57524 -PARTICIPATE 61472 -PARTICIPATING 64657 -PARTICIPATION 58523 -PARTICLE 63792 -PARTICLES 63077 -PARTICULAR 53533 -PARTICULARLY 63792 -PARTICULARS 62469 -PARTIES 56756 -PARTITION 64905 -PARTNER 55084 -PARTNERS 53316 -PARTNERSHIP 57084 -PARTNERSHIPS 61584 -PARTNERSrss 64905 -PARTS 50957 -PARTY 48643 -PAS 54857 -PASADENA 65452 -PASCAL 65452 -PASO 61256 -PASS 52686 -PASSAGE 62762 -PASSED 55423 -PASSENGER 56721 -PASSES 63077 -PASSING 60238 -PASSION 60492 -PASSIVE 64201 -PASSPORT 61152 -PASSWORD 55604 -PAST 51741 -PASTA 61152 -PASTE 61152 -PASTELES 62762 -PASTOR 62196 -PASTRY 64905 -PAT 55107 -PATA 60000 -PATCH 56518 -PATCHES 62917 -PATCHWORK 59292 -PATEL 64905 -PATENT 57785 -PATENTS 52899 -PATH 56324 -PATHFINDER 64423 -PATHOLOGY 63991 -PATHS 65452 -PATHWAYS 64201 -PATIENT 52832 -PATIENTS 53970 -PATIO 63077 -PATRICIA 57399 -PATRICK 55821 -PATRIOT 60580 -PATRIOTS 63419 -PATRIZIA 64201 -PATROL 60580 -PATRON 63601 -PATTERN 56324 -PATTERNS 54924 -PATTERSON 62066 -PATTI 64657 -PAUL 50815 -PAULA 63077 -PAULO 65452 -PAUSE 64201 -PAVE 63601 -PAVEMENT 60000 -PAVEMENTS 63601 -PAVILION 59702 -PAVING 61940 -PAW 60238 -PAWS 61699 -PAX 57046 -PAY 51909 -PAYABLE 60238 -PAYE 62613 -PAYG 61472 -PAYING 60078 -PAYLOAD 60157 -PAYMENT 51793 -PAYMENTS 56935 -PAYNE 58065 -PAYPAL 55793 -PAYROLL 63792 -PAYS 61818 -PAs 60157 -PB 49959 -PBA 58745 -PBB 61584 -PBC 58577 -PBD 63077 -PBDI 63077 -PBE 57970 -PBF 62331 -PBFA 60952 -PBI 62762 -PBIB 62196 -PBK 65170 -PBL 56262 -PBM 63245 -PBMC 57278 -PBMCs 58577 -PBN 61362 -PBP 60157 -PBPK 63245 -PBR 56618 -PBS 47157 -PBSC 59702 -PBT 61051 -PBX 47526 -PBs 61472 -PBwiki 65170 -PC 35992 -PC's 54581 -PCA 54439 -PCAC 64905 -PCAT 62066 -PCB 50799 -PCBs 55423 -PCC 55552 -PCCM 63419 -PCCP 64423 -PCD 57970 -PCDI 64657 -PCDJ 64657 -PCDS 62469 -PCE 60670 -PCF 61699 -PCG 64423 -PCGS 60670 -PCH 60580 -PCHRD 65452 -PCHardwareBlips 63991 -PCI 44132 -PCIE 59923 -PCIe 57482 -PCJ 63077 -PCL 56356 -PCLDY 62331 -PCLaw 61818 -PCLawPro 64657 -PCLinuxOS 61584 -PCM 54479 -PCMCIA 54302 -PCMH 65170 -PCMag 60492 -PCMagCast 62469 -PCMagCasts 62469 -PCN 62469 -PCNA 56721 -PCO 59292 -PCOS 56551 -PCP 55037 -PCPs 62762 -PCR 45010 -PCRE 62762 -PCRs 63077 -PCS 51266 -PCSO 65452 -PCSOs 64657 -PCT 45551 -PCT's 65170 -PCTV 61940 -PCTs 60762 -PCU 61152 -PCV 58577 -PCW 55202 -PCYC 64201 -PCat 64657 -PCr 61940 -PCs 46818 -PD 47883 -PDA 44531 -PDA's 59702 -PDAs 45517 -PDB 55711 -PDC 52198 -PDD 65170 -PDE 58802 -PDEs 62331 -PDF 35070 -PDF's 63991 -PDFlib 60952 -PDFs 51000 -PDGF 59774 -PDH 64201 -PDI 58577 -PDIP 65170 -PDL 60762 -PDMS 58979 -PDN 64657 -PDO 60952 -PDP 57199 -PDQ 60580 -PDR 54499 -PDS 56972 -PDT 40288 -PDTV 57009 -PDU 61818 -PDUs 64905 -PDW 65170 -PDX 57122 -PDZ 64657 -PDair 62331 -PDs 64905 -PE 46497 -PEA 61699 -PEACE 53934 -PEACH 61362 -PEACHES 61152 -PEAK 56585 -PEAKED 64657 -PEANUT 61472 -PEAR 58365 -PEARCE 64423 -PEARL 55934 -PEARSON 61584 -PEAS 64905 -PEASE 63601 -PEATE 65452 -PEBBLE 63077 -PEBL 63792 -PEC 59774 -PECVD 63419 -PED 61818 -PEDAL 61051 -PEDERI 59923 -PEDESTAL 64905 -PEDIATRIC 62066 -PEDIATRICS 58860 -PEDRO 59702 -PEEK 60856 -PEEL 62762 -PEEP 61818 -PEER 58919 -PEERLESS 58313 -PEFR 65170 -PEG 53917 -PEGDA 63245 -PEGGY 62066 -PEH 63792 -PEI 56585 -PEJ 63077 -PEL 60492 -PELORUS 64657 -PELs 63601 -PEM 58860 -PEMBROKE 64657 -PEMD 61699 -PEN 56050 -PENALTIES 64657 -PENALTY 63792 -PENDANT 59702 -PENDING 60492 -PENDLETON 63077 -PENDREV 63991 -PENELOPE 65170 -PENETRATION 65170 -PENG 63792 -PENGUIN 62196 -PENINSULA 61362 -PENN 60000 -PENNSYLVANIA 55398 -PENNY 62196 -PENSACOLA 62066 -PENSION 59164 -PENSIONS 64905 -PENTAX 53597 -PENZANCE 65170 -PEO 58470 -PEOPLE 47332 -PEOPLE'S 57009 -PEOPLE's 65170 -PEOPLES 62066 -PEP 53952 -PEPCK 63419 -PEPE 62066 -PEPFAR 63419 -PEPPA 60856 -PEPPER 60670 -PEPPERMINT 64201 -PEPPERS 64423 -PEPSI 61256 -PEPTIDE 65170 -PER 48590 -PERA 62066 -PERC 62066 -PERCENT 57160 -PERCENTAGE 60856 -PERCUSSION 61818 -PERCY 62613 -PERE 65452 -PEREZ 64657 -PERF 63419 -PERFECT 54643 -PERFECTION 65170 -PERFORM 61940 -PERFORMANCE 49789 -PERFORMANCES 64201 -PERFORMED 62762 -PERFORMER 64905 -PERFORMERS 65452 -PERFORMING 55448 -PERFUME 64905 -PERIDOT 65452 -PERIOD 54360 -PERIODIC 64657 -PERIODICAL 49854 -PERIODICALLY 63601 -PERIODS 65452 -PERIPHERAL 61940 -PERKINS 62762 -PERL 61256 -PERM 63245 -PERMALINK 63991 -PERMANENT 59923 -PERMISSIBLE 64905 -PERMISSION 57238 -PERMISSIONS 64423 -PERMIT 55963 -PERMITS 61362 -PERMITTED 59101 -PERO 63991 -PERPETUAL 62762 -PERRY 54969 -PERS 61152 -PERSIAN 64201 -PERSON 53182 -PERSONAL 49906 -PERSONALISED 59774 -PERSONALITY 61584 -PERSONALIZED 65452 -PERSONALLY 65170 -PERSONALS 62331 -PERSONNEL 55500 -PERSONS 57238 -PERSPECTIVE 58365 -PERSPECTIVES 59848 -PERT 65452 -PERTH 60762 -PERU 57399 -PES 53241 -PEST 61362 -PESTICIDE 63419 -PESTICIDES 56862 -PESTICIDESNUMBER 64423 -PET 49240 -PETA 56756 -PETA's 64905 -PETCO 53211 -PETE 57009 -PETER 52559 -PETERBOROUGH 63991 -PETERS 61051 -PETERSBURG 64657 -PETERSON 60670 -PETG 64657 -PETITE 65170 -PETITION 58979 -PETMAN 59848 -PETRA 60952 -PETROL 62762 -PETROLEUM 58688 -PETS 57009 -PETsMART 65452 -PEUGEOT 60157 -PEX 58745 -PEs 65170 -PF 49146 -PFA 60078 -PFAD 64423 -PFC 54643 -PFD 59491 -PFDs 61584 -PFE 63419 -PFET 63601 -PFF 63792 -PFG 60238 -PFGE 59848 -PFI 57399 -PFIZER 65452 -PFJ 57696 -PFLAG 62613 -PFM 64905 -PFO 63991 -PFPA 63792 -PFS 61584 -PFT 62613 -PFU 59357 -PFW 64657 -PFdesign 65170 -PFs 63077 -PG 46146 -PGA 49049 -PGBs 63419 -PGCE 63077 -PGD 62331 -PGE 55226 -PGES 64201 -PGF 57482 -PGI 62613 -PGK 62762 -PGM 58802 -PGMs 64423 -PGND 64423 -PGO 63792 -PGP 54857 -PGR 61699 -PGRN 61699 -PGT 63077 -PGW 64423 -PGs 63792 -PH 49146 -PHA 56827 -PHANTOM 62469 -PHARMA 60238 -PHARMACEUTICAL 58523 -PHARMACEUTICALS 62066 -PHARMACIST 65452 -PHARMACOLOGY 62762 -PHARMACY 57923 -PHASE 54685 -PHAT 64905 -PHB 61699 -PHBE 64423 -PHBG 61818 -PHBH 56935 -PHBL 61940 -PHC 63077 -PHD 56791 -PHE 62917 -PHELPS 64657 -PHENIX 64423 -PHENTERMINE 64201 -PHF 60405 -PHFD 65452 -PHH 63601 -PHI 55348 -PHIL 56899 -PHILADELPHIA 57524 -PHILCORPS 64905 -PHILIP 58113 -PHILIPPINE 62196 -PHILIPPINES 55877 -PHILIPS 55906 -PHILLIES 60321 -PHILLIP 61584 -PHILLIPS 56791 -PHILLY 64905 -PHILOSOPHY 58860 -PHL 61472 -PHM 58632 -PHO 63792 -PHOENIX 56862 -PHONE 49541 -PHONES 54643 -PHONO 64201 -PHOSPHATE 63077 -PHOTO 47507 -PHOTOGRAPH 61818 -PHOTOGRAPHER 63077 -PHOTOGRAPHERS 62762 -PHOTOGRAPHS 62196 -PHOTOGRAPHY 55474 -PHOTOS 46045 -PHOTOSHOP 62469 -PHP 42820 -PHP's 64423 -PHPSESSID 63245 -PHR 63991 -PHS 56518 -PHT 61818 -PHX 62613 -PHY 57358 -PHYLLIS 64657 -PHYS 64201 -PHYSICAL 52399 -PHYSICIAN 61256 -PHYSICIANS 62331 -PHYSICS 55130 -PHYSIOLOGICAL 64905 -PHYSIOLOGY 58745 -PI 48643 -PI's 64423 -PIA 58688 -PIAA 60762 -PIAGGIO 63419 -PIANC 63419 -PIANO 57785 -PIB 62613 -PIC 53565 -PICA 65170 -PICC 65170 -PICCATTA 65452 -PICK 55657 -PICKEL 61152 -PICKS 53646 -PICKUP 59702 -PICNIC 61940 -PICS 54664 -PICTURE 51122 -PICTURES 51762 -PID 56231 -PIE 56618 -PIECE 55500 -PIECES 59357 -PIEDMONT 63077 -PIEDMONTESE 65170 -PIER 61940 -PIERCE 58113 -PIERRE 58212 -PIES 63077 -PIF 61051 -PIG 57399 -PIGS 63991 -PII 59424 -PIII 63077 -PIK 63601 -PIKE 59292 -PIKfyve 60670 -PIL 64905 -PILATES 64657 -PILATUS 62613 -PILL 61256 -PILLAI 64201 -PILLOW 65170 -PILLOWS 65452 -PILLS 62066 -PILOT 55474 -PIM 53988 -PIMCO 62196 -PIMP 59923 -PIMs 64201 -PIN 50220 -PINE 54770 -PINEAPPLE 61362 -PINES 62469 -PING 59560 -PINK 52609 -PINKS 65170 -PINNACLE 63419 -PINOLE 64657 -PINOT 65170 -PINOY 61940 -PINRO 64657 -PINS 58065 -PIO 56791 -PIONEER 57084 -PIP 56721 -PIPE 55552 -PIPELINE 64657 -PIPER 65170 -PIPES 61472 -PIR 59101 -PIRATE 61256 -PIRATES 60670 -PIRSA 63792 -PIS 63077 -PISA 57122 -PISS 65452 -PISTOL 63245 -PISTONS 64423 -PIT 56420 -PITA 64905 -PITBULL 63601 -PITCAIRN 62469 -PITCH 60952 -PITI 65452 -PITT 61152 -PITTSBURGH 58919 -PITUITARY 65452 -PIU 63601 -PIV 62196 -PIX 59227 -PIXEL 64201 -PIXELS 63991 -PIXI 64423 -PIXMA 58365 -PIXmania 63991 -PIZZA 56324 -PIs 60492 -PJ 48186 -PJ's 60405 -PJAK 62469 -PJD 65452 -PJIRC 63245 -PJM 60078 -PJP 64905 -PJTV 65170 -PK 50499 -PKA 60762 -PKC 53630 -PKCD 64657 -PKCM 64657 -PKF 64423 -PKG 60856 -PKI 58919 -PKK 61940 -PKR 58470 -PKU 61940 -PKWY 62066 -PL 47907 -PLA 57318 -PLACE 49196 -PLACED 61362 -PLACEMENT 60492 -PLACEMENTS 63077 -PLACES 56485 -PLACING 65170 -PLAID 62469 -PLAIN 58262 -PLAINS 61472 -PLAINTIFF 63077 -PLAN 49494 -PLANE 60856 -PLANES 64423 -PLANET 58470 -PLANETARY 64905 -PLANNED 60078 -PLANNER 58979 -PLANNERS 64423 -PLANNING 49620 -PLANO 62762 -PLANS 54399 -PLANT 52872 -PLANTATION 62762 -PLANTING 64423 -PLANTRONICS 63419 -PLANTS 54439 -PLAR 65452 -PLASMA 56293 -PLASTIC 54302 -PLASTICS 60321 -PLAT 58745 -PLATA 60321 -PLATE 54059 -PLATED 60580 -PLATES 58919 -PLATFORM 59491 -PLATFORMS 61584 -PLATINUM 56618 -PLATO 65170 -PLAY 49639 -PLAYA 63077 -PLAYBOY 58523 -PLAYED 61362 -PLAYER 53882 -PLAYERS 54835 -PLAYGIRL 64657 -PLAYGROUND 64201 -PLAYING 57482 -PLAYLIST 61051 -PLAYOFFS 64423 -PLAYS 60238 -PLAYSTATION 57046 -PLAZA 59101 -PLB 59164 -PLBuyer 65170 -PLC 48581 -PLCC 60952 -PLCCenter 65452 -PLCs 63077 -PLD 57046 -PLDC 63419 -PLDI 65452 -PLDs 65170 -PLE 64657 -PLEASANT 59560 -PLEASE 45224 -PLEASURE 61818 -PLEDGE 58577 -PLENTY 60157 -PLENUM 65452 -PLH 64423 -PLL 56485 -PLLA 61362 -PLLC 53796 -PLM 61256 -PLN 56935 -PLO 59292 -PLOP 65170 -PLOT 58979 -PLOTKOWSKI 65452 -PLOTS 65170 -PLOW 63245 -PLP 57970 -PLR 63419 -PLS 56899 -PLSS 63419 -PLT 61472 -PLU 61940 -PLUG 57653 -PLUGINS 64905 -PLUGS 61256 -PLUM 59702 -PLUMBING 59227 -PLUNGER 65452 -PLUS 49285 -PLUSH 60492 -PLWHA 64423 -PLX 64423 -PLYMOUTH 59292 -PLZ 58417 -PLZT 61818 -PLease 61472 -PLoS 51444 -PM 29297 -PM's 57741 -PMA 54924 -PMB 55178 -PMC 35353 -PMCs 64201 -PMD 62066 -PMDG 63991 -PME 62196 -PMF 62196 -PMFlagged 63991 -PMG 60952 -PMH 63419 -PMI 55906 -PMID 54622 -PML 61472 -PMMA 58523 -PMN 55766 -PMNs 58523 -PMO 59357 -PMOG 61699 -PMOL 64201 -PMOS 60492 -PMP 55348 -PMPs 64905 -PMR 59101 -PMRW 62917 -PMS 54601 -PMSA 57970 -PMSF 63991 -PMT 59357 -PMTCT 63601 -PMU 62613 -PMs 59357 -PN 51387 -PNA 58745 -PNAS 49218 -PNB 62196 -PNC 54399 -PND 60952 -PNEUMATIC 60952 -PNG 51953 -PNL 60078 -PNP 55500 -PNPM 63601 -PNR 63601 -PNS 60078 -PNUD 64905 -PNW 58979 -PNY 57084 -PO 40467 -PO's 63792 -POA 57566 -POAC 63245 -POACEAE 65452 -POAT 62917 -POB 58688 -POBox 56452 -POC 58632 -POCKET 58577 -POCO 63991 -POD 54540 -PODCAST 57609 -PODCASTS 56021 -PODIATRY 63792 -PODS 63419 -POE 62613 -POEM 63792 -POEMS 61940 -POETRY 59424 -POF 63601 -POGO 64201 -POI 57122 -POINT 52096 -POINTE 64201 -POINTER 64201 -POINTS 54380 -POISON 63245 -POISSON 64657 -POIs 61818 -POKEMON 63245 -POKER 55604 -POKERSTARS 63991 -POL 58162 -POLAND 56262 -POLAR 60952 -POLARIS 60157 -POLARIZED 65170 -POLAROID 64423 -POLE 61699 -POLICE 52280 -POLICIES 53377 -POLICY 44863 -POLISH 60238 -POLISHED 64657 -POLISHING 63991 -POLITICAL 52635 -POLITICIANS 65170 -POLITICO 65452 -POLITICS 52423 -POLITIQUEDE 65452 -POLK 63245 -POLL 55631 -POLLING 65170 -POLLS 57696 -POLLUTION 59292 -POLO 57831 -POLY 60952 -POLYESTER 62917 -POLYMER 56791 -POLYMERS 62762 -POLYNESIA 62196 -POLYPROPYLENE 65170 -POLYURETHANE 65170 -POM 64423 -POMC 63077 -PON 64423 -POND 60078 -PONTIAC 59357 -PONTOTOC 59424 -PONV 61818 -PONY 63419 -POO 64905 -POOH 64905 -POOL 53934 -POOLE 64201 -POOLS 60000 -POOP 64657 -POOPIE 63245 -POOR 59101 -POP 50484 -POPC 62469 -POPCORN 64201 -POPE 62196 -POPLINE 56756 -POPPY 63419 -POPS 65170 -POPTUB 55202 -POPTUB's 60952 -POPULAR 44048 -POPULARITY 63792 -POPULATION 56452 -POPs 59560 -POR 51846 -PORCELAIN 61818 -PORCH 64905 -PORDaS 63419 -PORIRUA 61256 -PORK 57653 -PORKERS 65170 -PORN 53796 -PORNO 61940 -POROUS 63991 -PORSCHE 58523 -PORT 52164 -PORTA 65452 -PORTABLE 56050 -PORTAL 49547 -PORTER 59923 -PORTFOLIO 55323 -PORTFOLIOS 63077 -PORTION 60000 -PORTLAND 59923 -PORTRAIT 61362 -PORTRAITS 63991 -PORTS 61818 -PORTSMOUTH 58802 -PORTUGAL 57046 -PORTUGUESE 63991 -POS 51017 -POSITION 53581 -POSITIONING 64423 -POSITIONS 57566 -POSITIVE 58162 -POSIX 54835 -POSS 60238 -POSSESSION 63245 -POSSIBILITY 57566 -POSSIBLE 54499 -POSSIBLY 64905 -POSSUM 61256 -POST 47768 -POSTAGE 57399 -POSTAL 59164 -POSTCARD 62613 -POSTCARDS 63419 -POSTCODE 65170 -POSTED 53533 -POSTER 53581 -POSTERS 54601 -POSTGRADUATE 62469 -POSTING 59227 -POSTINGS 63601 -POSTS 52496 -POT 60078 -POTASSIUM 65452 -POTATO 60492 -POTATOES 64905 -POTD 65452 -POTENTIAL 56050 -POTENTIALS 63792 -POTM 65452 -POTN 59039 -POTS 63077 -POTTER 59039 -POTTERY 59164 -POUCH 64905 -POULTON 65170 -POULTRY 64201 -POUND 61472 -POUNDS 62331 -POUR 55992 -POV 53501 -POVERTY 58470 -POVNET 60000 -POW 56452 -POWDER 57482 -POWELL 60405 -POWER 47756 -POWERED 56899 -POWERFUL 62196 -POWERPOINT 61699 -POWERPRICE 65452 -POWERS 59227 -POWERSHOT 64905 -POWs 62917 -POY 60856 -POs 63991 -PP 49330 -PPA 58632 -PPAR 54622 -PPB 62469 -PPC 50328 -PPCM 62613 -PPD 57399 -PPE 58017 -PPF 64201 -PPG 55963 -PPI 56721 -PPIX 60405 -PPK 61584 -PPL 56756 -PPL's 63792 -PPM 56050 -PPO 51985 -PPP 53407 -PPP's 65170 -PPPoE 63419 -PPPs 63245 -PPR 61152 -PPRuNe 65452 -PPS 56080 -PPSC 63419 -PPT 54519 -PPTP 65452 -PPV 54749 -PPX 63991 -PPh 60952 -PQ 56551 -PQI 63419 -PQM 61818 -PQQ 61818 -PQS 64905 -PR 41625 -PRA 58065 -PRACE 64201 -PRACTICAL 59923 -PRACTICE 53454 -PRACTICES 58262 -PRACTITIONERS 62613 -PRADA 60078 -PRADESH 58113 -PRAGUE 64201 -PRAIRIE 61152 -PRAISE 61256 -PRAKASH 63245 -PRASAD 62917 -PRATT 62469 -PRAXIS 65170 -PRAY 61051 -PRAYER 57970 -PRB 60670 -PRBS 64657 -PRC 53485 -PRCA 64201 -PRD 60580 -PRDnationwide 65170 -PRE 55037 -PREACHER 65170 -PRECAUTIONS 59630 -PRECHARGE 61362 -PRECINCT 62917 -PRECINCTS 60952 -PRECIOUS 63601 -PRECIP 58162 -PRECIPITATION 63601 -PRECISE 64657 -PRECISION 58688 -PREDICT 60321 -PREDICTION 62331 -PREDISSOCIATION 64201 -PREDUZECE 61584 -PREFACE 61051 -PREFERENCE 62196 -PREFERENCES 63077 -PREFERRED 54835 -PREGNANCY 59227 -PREGNANT 60856 -PREHEARING 60856 -PRELIMINARY 57160 -PRELUDE 65170 -PREM 65170 -PREMATURE 65170 -PREMIER 54643 -PREMIERE 60405 -PREMISES 62762 -PREMIUM 53454 -PREMIX 63601 -PREP 59560 -PREPAID 63792 -PREPARATION 55202 -PREPARATIONS 64423 -PREPARE 60670 -PREPARED 59923 -PREPARING 60580 -PRES 62196 -PRESARIO 60000 -PRESCHOOL 62762 -PRESCOTT 63419 -PRESCRIPTION 62613 -PRESENCE 61699 -PRESENT 54924 -PRESENTATION 56293 -PRESENTATIONS 60856 -PRESENTED 59848 -PRESENTING 61818 -PRESENTS 58065 -PRESERVATION 56899 -PRESERVE 63419 -PRESERVED 60321 -PRESIDENT 52686 -PRESIDENT'S 61362 -PRESIDENTIAL 58162 -PRESIDENTS 65170 -PRESLEY 61940 -PRESS 46162 -PRESSURE 53581 -PRESTIGE 63245 -PRESTO 65452 -PRESTON 61256 -PRESTR 56972 -PRETTY 58113 -PREV 54078 -PREVENT 60952 -PREVENTING 63792 -PREVENTION 57084 -PREVENTIVE 63991 -PREVIEW 56293 -PREVIEWS 58470 -PREVIOUS 47515 -PREVIOUSLY 61152 -PRF 64423 -PRG 64905 -PRGA 62331 -PRGS 63245 -PRI 58919 -PRICE 47204 -PRICED 60670 -PRICES 52872 -PRICING 57084 -PRIDE 56862 -PRIMA 61940 -PRIMARY 51783 -PRIME 57653 -PRIMEDIA 62917 -PRIMER 63792 -PRIMERA 64423 -PRIMETIME 64423 -PRINCE 56972 -PRINCESS 57278 -PRINCETON 61256 -PRINCIPAL 57831 -PRINCIPE 62762 -PRINCIPLE 61472 -PRINCIPLES 57358 -PRINGLE 65170 -PRINT 47544 -PRINTABLE 62066 -PRINTED 59491 -PRINTER 55130 -PRINTERS 60856 -PRINTING 55992 -PRINTS 55526 -PRIOR 54622 -PRIORITIES 63991 -PRIORITY 56551 -PRISM 58802 -PRISON 59923 -PRISONER 65170 -PRIVACY 46790 -PRIVATE 50710 -PRIVATIZATION 64657 -PRIX 63991 -PRIZE 57482 -PRIZES 61584 -PRK 60000 -PRL 55202 -PRLS 65452 -PRM 63792 -PRMD 62762 -PRN 60157 -PRNewswire 60856 -PRO 46843 -PROBABILITY 62917 -PROBABLE 65452 -PROBABLY 63245 -PROBATE 61051 -PROBATION 64657 -PROBE 60238 -PROBLEM 53454 -PROBLEMS 54946 -PROC 58017 -PROCEDE 63991 -PROCEDURAL 63077 -PROCEDURE 53095 -PROCEDURES 53438 -PROCEED 63077 -PROCEEDINGS 55604 -PROCEEDS 64905 -PROCESS 51238 -PROCESSED 65452 -PROCESSES 57923 -PROCESSING 53934 -PROCESSOR 60078 -PROCESSORS 63601 -PROCTER 64905 -PROCUREMENT 57524 -PROD 64657 -PRODUCE 63245 -PRODUCED 61699 -PRODUCER 61584 -PRODUCERS 61584 -PRODUCING 57831 -PRODUCT 46146 -PRODUCTION 51846 -PRODUCTIONS 58365 -PRODUCTIVITY 61699 -PRODUCTS 45151 -PROF 61940 -PROFESSIONAL 52244 -PROFESSIONALS 56356 -PROFESSOR 59560 -PROFIBUS 59292 -PROFICIENCY 60952 -PROFICIENT 61818 -PROFILE 49470 -PROFILES 56618 -PROFIT 59292 -PROFITS 63245 -PROG 63792 -PROGINS 62469 -PROGRAM 45809 -PROGRAMA 65170 -PROGRAMMABLE 63991 -PROGRAMME 51463 -PROGRAMMES 57358 -PROGRAMMING 56356 -PROGRAMS 52029 -PROGRESS 54380 -PROGRESSIVE 59702 -PROHIBITED 60492 -PROJECT 48131 -PROJECTED 64905 -PROJECTION 62066 -PROJECTIONS 64905 -PROJECTOR 63077 -PROJECTS 52447 -PROLACTIN 65170 -PROLONG 63792 -PROM 59292 -PROMISE 60952 -PROMISES 64905 -PROMO 56585 -PROMOS 65170 -PROMOTE 59227 -PROMOTING 61152 -PROMOTION 58017 -PROMOTIONAL 60580 -PROMOTIONS 55849 -PROMPT 64423 -PROOF 56388 -PROOFS 63991 -PROP 59923 -PROPAGANDA 64423 -PROPAGATION 59774 -PROPANE 63245 -PROPER 56791 -PROPERLY 63991 -PROPERTIES 52818 -PROPERTY 48576 -PROPHECY 59357 -PROPHET 64201 -PROPOSAL 56791 -PROPOSALS 59491 -PROPOSED 54005 -PROPOSITION 61940 -PROPRIETARY 64905 -PROPS 64657 -PROPULSION 64201 -PROS 62196 -PROSAT 62469 -PROSECUTING 57524 -PROSECUTION 63991 -PROSITE 65452 -PROSPECT 62196 -PROSPECTIVE 63419 -PROSPECTS 58632 -PROSPECTUS 65452 -PROSPERITY 64201 -PROSTATE 63601 -PROTECT 59702 -PROTECTED 62066 -PROTECTING 62917 -PROTECTION 52534 -PROTECTIVE 58577 -PROTECTIVELY 62469 -PROTECTOR 62331 -PROTEIN 56324 -PROTEINS 61940 -PROTEST 63991 -PROTOCOL 58523 -PROTOCOLS 64905 -PROTON 61472 -PROTOTYPE 65452 -PROUD 58688 -PROUDLY 64905 -PROVE 62613 -PROVEN 62066 -PROVIDE 56021 -PROVIDED 52040 -PROVIDENCE 61584 -PROVIDEO 63991 -PROVIDER 58860 -PROVIDERS 62196 -PROVIDES 60405 -PROVIDING 57609 -PROVINCE 58919 -PROVINCIAL 62917 -PROVISION 58212 -PROVISIONAL 60157 -PROVISIONS 57876 -PROXY 62196 -PRP 55766 -PRPC 63991 -PRR 63077 -PRS 57970 -PRT 62331 -PRU 59424 -PRW 62917 -PRWEB 63991 -PRWeb 60238 -PRX 62613 -PRZOOM 60321 -PRs 63419 -PS 44447 -PSA 50270 -PSA's 64657 -PSAP 64905 -PSAPsa 65452 -PSAs 58577 -PSB 60157 -PSC 53392 -PSCC 62917 -PSD 54499 -PSE 57482 -PSEA 64657 -PSECU 61152 -PSECU's 64423 -PSF 59101 -PSFK 61256 -PSG 60000 -PSHE 57741 -PSI 52712 -PSII 63792 -PSK 65452 -PSL 60238 -PSL's 61256 -PSLS 62613 -PSM 58745 -PSMA 59164 -PSN 53438 -PSNI 63991 -PSNR 63419 -PSO 61051 -PSOne 61699 -PSP 41453 -PSPC 64201 -PSPICE 65452 -PSPSPS 64905 -PSR 60580 -PSS 58577 -PST 44137 -PSTN 58860 -PSU 49828 -PSU's 63991 -PSUR 60856 -PSUs 61472 -PSV 56585 -PSW 60856 -PSX 57970 -PSY 63792 -PSYCHIATRIC 61818 -PSYCHIATRY 64201 -PSYCHIC 61699 -PSYCHOLOGICAL 61051 -PSYCHOLOGY 58632 -PServer 62066 -PSs 61362 -PT 41173 -PTA 53712 -PTAC 63601 -PTAs 62917 -PTB 62196 -PTC 53847 -PTCA 60762 -PTD 61940 -PTDL 64201 -PTE 58162 -PTEN 62613 -PTF 63245 -PTFE 55657 -PTGS 58313 -PTH 57009 -PTI 58577 -PTL 59774 -PTM 64905 -PTO 57009 -PTP 65170 -PTR 56170 -PTS 54283 -PTSD 56140 -PTT 58802 -PTTL 62196 -PTV 61256 -PTW 64657 -PTX 59164 -PTY 57482 -PTZ 60321 -PTs 64423 -PU 52546 -PUB 55793 -PUBERTY 64423 -PUBLIC 44140 -PUBLICATION 56293 -PUBLICATIONS 52872 -PUBLICITY 65170 -PUBLISH 54479 -PUBLISHED 57122 -PUBLISHER 55793 -PUBLISHERS 60492 -PUBLISHING 56935 -PUBMED 62196 -PUC 61699 -PUD 60000 -PUDDING 60157 -PUEBLO 63991 -PUEDE 64905 -PUERTO 56356 -PUFF 61818 -PUFFS 64657 -PUG 62196 -PUGNAc 65170 -PULL 61472 -PULMONARY 60580 -PULP 59491 -PULSE 58417 -PUMA 56050 -PUMBA 61818 -PUMP 54041 -PUMPING 65452 -PUMPKIN 58745 -PUMPS 58860 -PUNCH 60762 -PUNE 62613 -PUNITIVE 62762 -PUNJAB 60492 -PUNJABI 65452 -PUNK 60580 -PUNKY 64201 -PUNTA 65170 -PUNTO 63991 -PUP 61051 -PUPILS 64423 -PUPPIES 58365 -PUPPY 59560 -PUR 59630 -PURCHASE 50799 -PURCHASED 60856 -PURCHASER 64905 -PURCHASERS 64905 -PURCHASES 62917 -PURCHASING 58212 -PURE 55934 -PUREVOLUME 62066 -PURI 64657 -PURIFICATION 62762 -PURPA 65452 -PURPLE 57084 -PURPOSE 53407 -PURPOSES 58212 -PURSE 60670 -PURSUANT 57970 -PURSUIT 64201 -PURVI 63601 -PUSH 58365 -PUSSY 59702 -PUSSYCAT 64423 -PUT 54321 -PUTS 62613 -PUTTING 63601 -PUVA 62196 -PUZZLE 58017 -PUZZLES 65170 -PV 49488 -PVA 56899 -PVC 48178 -PVCs 63245 -PVCu 63991 -PVD 60000 -PVDF 60078 -PVE 63792 -PVG 63991 -PVL 65170 -PVM 63792 -PVN 59491 -PVP 53581 -PVR 53211 -PVRs 57566 -PVT 56485 -PVdF 60492 -PW 51453 -PWA 62331 -PWB 64423 -PWC 55423 -PWD 60405 -PWGSC 60238 -PWL 64423 -PWM 55849 -PWP 65452 -PWR 62917 -PWS 56231 -PWT 62066 -PWV 61362 -PX 58577 -PXE 63419 -PXI 60078 -PY 56293 -PYRAMID 64905 -PYRO 63419 -PZ 58470 -PZL 63245 -PZT 57084 -Pa 50492 -Pa'anga 64657 -PaGaL 58212 -PaGaLGuY 63245 -Paar 63601 -Paarl 64657 -Paasche 65452 -Paavo 62762 -Pabedan 61584 -Pablo 50285 -Pabst 61584 -Pac 53517 -PacSun 60670 -Pace 50019 -Paced 62917 -Pacelli 63991 -Pacemaker 59848 -Pacemaster 64423 -Pacer 58919 -Pacers 54479 -Paces 64201 -Pacesetter 61699 -Pach 64423 -Pacha 59774 -Pacheco 57970 -Pachinko 61818 -Pachter 62331 -Pachyhalictus 65170 -Pacific 39396 -Pacific's 63792 -Pacifica 57084 -Pacifico 58162 -Pacifier 61699 -Pacifiers 64423 -Pacifique 64657 -Pacifism 65452 -Pacing 57318 -Pacino 58162 -Pacino's 64905 -Paciolan 65170 -Pack 41609 -PackMan 63792 -Package 42401 -PackageBook 61472 -Packaged 53470 -Packager 65452 -Packages 43789 -Packaging 45116 -Packard 51229 -Packed 53712 -Packer 54992 -Packer's 65452 -Packers 50108 -Packet 50206 -PacketNet 63991 -Packeteer 62762 -Packets 55766 -Packing 49429 -Packs 47827 -Packt 65452 -Paclanders 65170 -Paclitaxel 65452 -Pacmag 62917 -Pacman 55107 -Paco 57482 -Pacoima 61472 -Pacquiao 56452 -Pacquiao's 63419 -Pacsafe 60856 -Pact 54096 -Pacts 63077 -Pactual 61699 -Paczta 63419 -Pad 47871 -Padalecki 59923 -Padang 65452 -Padded 55154 -Padding 59039 -Paddington 55274 -Paddle 55657 -Paddleball 63601 -Paddles 59357 -Paddlesports 63077 -Paddling 57696 -Paddock 55526 -PaddockTalk 61699 -Paddy 54041 -Paddy's 62762 -Paddys 65170 -Padgett 63245 -Padi 65452 -Padilla 57278 -Padlock 60670 -Padlocks 62469 -Padma 60078 -Padmaja 64423 -Padmanabhan 64905 -Padme 64423 -Padmore 62469 -Padova 60078 -Padraig 60321 -Padre 55711 -Padres 53301 -Pads 48199 -Padstow 64657 -Padua 60405 -Paducah 59560 -Padukone 58979 -Padé 63991 -Paediatr 56262 -Paediatric 55793 -Paediatrica 63077 -Paediatrics 60492 -Paella 60000 -Pagan 54813 -Pagani 60492 -Paganini 60762 -Paganism 61584 -Pagano 58979 -Pagans 61362 -Pagar 65170 -Page 27932 -Page's 62762 -PageBuilder 65452 -PageMaker 63245 -PageRank 55500 -PageSeeder 64905 -Pageant 54685 -Pageants 64657 -Pageflakes 59357 -Pagel 63991 -Pager 58919 -Pagerank 60000 -Pagers 61584 -Pages 33689 -PagesPlus 62066 -PagesSign 63077 -PagesWhite 63077 -Paget 61584 -Paget's 62613 -Pageview 63419 -Pageviews 56652 -Pagid 64423 -Pagina 60078 -Paginas 65170 -Pagination 55604 -Paging 55448 -Pago 62762 -Pagoda 60321 -Pahang 64905 -Pahl 64905 -Pahoa 64423 -Pai 60238 -Paid 45657 -PaidContent 62469 -Paige 52051 -Paignton 60762 -Paihia 63245 -Paik 63419 -Pail 58860 -Pails 63792 -Pain 43928 -PainRounds 65452 -Paine 56262 -Painesdale 63245 -Painesville 58017 -Painful 57566 -Painfully 63419 -Painkiller 56827 -Painless 58470 -PainlessWolf 64201 -Pains 54419 -Paint 45362 -Paintable 64905 -Paintball 50013 -Paintballing 64905 -Painted 50881 -Painter 53211 -Painter's 63419 -Painterly 60157 -Painters 55552 -Painting 46099 -Paintings 48964 -Paints 53052 -Pair 49006 -Paired 59039 -Pairing 60157 -Pairings 62917 -Pairs 54341 -PairsIncludes 64905 -Pairwise 62331 -Pais 59923 -PaisaPay 64423 -Paisano 64905 -Paisley 52291 -Paiste 63419 -Paizo 57278 -Pajama 57741 -Pajamas 54226 -Pajaro 63601 -Pajero 59774 -Pajitnov 65452 -Pak 52018 -PakCyber 64905 -PakMediNet 60078 -Paka 64423 -PakaPaka 62196 -Pakenham 64201 -Paki 64423 -Pakistan 42065 -Pakistan's 54283 -Pakistani 49394 -Pakistanis 57566 -Paks 63419 -Pakuyang 63991 -Pal 51650 -Pala 63601 -Palabra 64657 -Palabras 61256 -Palace 45638 -Palaces 57831 -Palacio 58688 -Palacios 61256 -Paladin 52029 -Paladins 55849 -Palaeolithic 63077 -Palaeontology 61362 -Palaeozoic 64657 -Palais 56200 -Palak 65452 -Palakkad 63077 -Palanan 61940 -Palapye 65452 -Palast 62196 -Palate 59491 -Palatine 58212 -Palatino 62762 -Palatka 62762 -Palau 47214 -Palaver 61152 -Palawan 62196 -Palazzo 56756 -Pale 52661 -Paleface 65452 -Palembang 65452 -Palenque 63077 -Paleocene 63419 -Paleochora 63792 -Paleolithic 62613 -Paleontology 58113 -Paleozoic 61818 -Palermo 55448 -Palestine 49246 -Palestinian 47311 -Palestinians 53377 -Palette 55578 -Palettes 60238 -Paley 58802 -Palfrey 64423 -Palgrave 55849 -Pali 59560 -Palin 40134 -Palin's 45547 -Palins 57524 -Palio 62469 -Palisade 61051 -Palisades 55348 -Palit 58017 -Pall 59848 -Palladino 64423 -Palladium 55766 -Pallant 65170 -Pallavi 62331 -Pallbearers 64423 -Pallet 54540 -Pallets 60405 -Palliat 63245 -Palliative 53865 -Palliser 63601 -Pally 61940 -Palm 41673 -Palm's 64423 -PalmOS 60238 -PalmOne 62917 -Palma 51202 -Palmas 55821 -Palmdale 58523 -Palmdoc 61940 -Palme 62613 -Palmer 48386 -Palmer's 60670 -Palmers 60078 -Palmerston 54770 -Palmetto 54792 -Palmieri 64201 -Palmira 62762 -Palmolive 64905 -Palms 52351 -Palmtronic 64657 -Palmyra 57084 -Palo 48944 -Paloma 58417 -Palomar 58417 -Palomino 59560 -Palos 53679 -Palouse 65170 -Palpatine 64423 -Palpitations 64657 -Pals 55037 -Palsy 58688 -Paltalk 59702 -PaltalkScene 63601 -Paltrow 56585 -Paltz 59848 -Palumbo 64905 -Palys 64201 -Pam 49758 -Pam's 60405 -Pambazuka 64657 -Pamela 47863 -Pamela's 61051 -Pamelor 64905 -Pamlico 63245 -Pampa 63419 -PampaLlacta 61818 -Pampanga 62196 -Pamper 58632 -Pampered 59560 -Pampering 62917 -Pampers 59292 -Pamphlet 64657 -Pamphlets 56756 -Pamplona 61152 -Pamporovo 64423 -Pamuk 64657 -Pan 47570 -Pan's 60580 -PanIIT 64905 -Pana 64657 -Panacea 63077 -Panache 60000 -Panaderia 64905 -Panadol 61051 -Panagiotis 62066 -Panaji 64657 -Panama 43872 -Panama's 64201 -Panamanian 60238 -Panamax 63991 -Panamá 64657 -Panaracer 65452 -Panasonic 44727 -Panasonic's 60952 -Panathinaikos 64201 -Panavise 62917 -Panayiotis 65170 -Pancake 57160 -Pancakes 55992 -Panchayat 61818 -Panchkula 62613 -Pancho 60952 -Pancras 61152 -Pancreas 59630 -Pancreatic 55657 -Pancreatitis 61940 -Panda 49789 -Panda's 64905 -Pandagon 62917 -Pandas 59357 -Pandata 65170 -Pandavas 65452 -Pandemic 55877 -Pandemonium 60580 -Pandey 60762 -Pandit 60078 -Pando 58577 -Pandora 51043 -Pandora's 59774 -Panduit 64201 -Pandy 63991 -Pandya 65170 -Pane 59630 -Paneer 62196 -Panel 40064 -Panel's 59357 -PanelBar 63792 -Paneling 64905 -Panelist 63792 -Panelists 55226 -Panels 49999 -Panera 61472 -Panerai 60856 -Panes 63792 -Panettiere 52559 -Panevan 65170 -Pang 58113 -Pangaea 63991 -Pangan 63991 -Panganiban 63991 -Pangasinan 61940 -Pangea 57831 -Panhandle 57160 -Pani 62196 -Panic 50101 -Panicle 65452 -Panik 62469 -Panini 56827 -Panipat 64657 -Panjab 63991 -Panjabi 60580 -Panjang 63601 -Pankaj 60321 -Pankey 65452 -Pankratova 58979 -Panky 64657 -Panmure 64201 -Panna 62469 -Panne 65170 -Panneaux 65452 -Pannell 63991 -Pannier 63077 -Panniers 63991 -Panning 64657 -Panny 64201 -Pano 64423 -Panola 61940 -Panorama 50710 -Panoramas 60492 -Panoramic 52096 -Panoramio 57482 -Panos 59630 -Panoz 56293 -Pans 53662 -Pansat 56618 -Pansy 62066 -Pant 52940 -Panta 64905 -Pantages 64657 -Pantagraph 64201 -Pantanal 64423 -Pantani 64201 -Pantech 54023 -Pantene 64423 -Pantera 55631 -Pantheon 59630 -Panther 51052 -Panthers 49446 -Panties 53813 -Panto 60321 -Pantomime 63077 -Panton 63991 -Pantone 60000 -Pantothenic 64423 -Pantry 54499 -Pants 45865 -Panty 55684 -Pantyhose 56388 -Panu 63792 -Panza 64657 -Panzano 63991 -Panzer 57009 -Pao 59491 -Paola 55631 -Paoli 62331 -Paolini 63245 -Paolino 65170 -Paolo 51825 -Paolucci 62762 -Pap 55934 -Papa 50823 -Papa's 61362 -Papadimitriou 65170 -Papadopoulos 63077 -Papal 59424 -Paparazzi 55526 -Paparazzo 64905 -Papas 57876 -Papasan 64657 -Papaya 57831 -Papdits 65452 -Pape 59227 -Papel 61051 -Papelbon 63601 -Papelera 63601 -Paper 37515 -Paper's 62917 -Paperback 45967 -Paperbacks 56293 -Paperboard 62196 -Paperbound 65170 -Paperboy 61818 -Papercraft 61362 -Paperless 60762 -Papermaking 64657 -Papermate 65452 -Papers 39292 -Papervision 65170 -Paperweight 65170 -Paperwork 59357 -Paphos 56356 -Papi 61472 -Papi's 61940 -Papiamento 61256 -Papier 62196 -Papilio 63245 -Papillary 63601 -Papillon 57199 -Papin 64423 -Papo 63792 -Papoose 64423 -Pappa 63245 -Pappas 60238 -Pappu 62613 -Paprika 60670 -Paprikas 64905 -Paps 65452 -Papua 46242 -Papyrus 61699 -Paquet 64657 -Paquetes 57923 -Paquette 62469 -Paquin 61699 -Par 50923 -Para 51425 -Parable 62196 -Parables 65452 -Parabolic 62613 -Parabéns 65452 -Paracel 61699 -Paracetamol 64905 -Parachute 57358 -Parachutes 64657 -Parachuting 65170 -Parada 62917 -Parade 47619 -Parades 58860 -Paradigm 54540 -Paradigms 62196 -Paradis 60405 -Paradise 46045 -Paradiso 58065 -Parador 63077 -Paradox 55274 -Paradoxes 63601 -Paradoxical 65170 -Paraffin 60078 -Parafield 64905 -Parag 64905 -Paragliding 59702 -Paragon 53052 -Paragraph 54360 -Paragraphs 61051 -Paraguay 45720 -Paraguayan 65452 -Paraiso 60157 -Parakeet 61818 -Parakeets 63077 -Parakey 63419 -Paralegal 55526 -Paralegals 60238 -Parallax 60580 -Parallel 47077 -Parallelism 60580 -Parallels 52327 -Paralogs 59227 -Paralympian 63419 -Paralympic 54835 -Paralympics 58262 -Paralysis 62066 -Paralyzed 64423 -Paramecium 61818 -Paramedic 61472 -Paramedics 62469 -Parameter 52029 -Parameterization 64657 -Parameterized 65452 -Parameters 50185 -Parametric 56721 -Paramore 54114 -Paramount 51835 -Paramus 60321 -Parana 65452 -Paranal 64423 -Paranhos 63077 -Paranoia 59491 -Paranoid 58523 -Paranormal 52845 -Paraná 63419 -Paraparaumu 63601 -Paraphernalia 62196 -Paraplegic 65452 -Paraprofessionals 63991 -Parapsychology 63601 -Paras 63792 -Parasailing 63077 -Parashat 62331 -Parasite 55084 -Parasites 57122 -Parasitic 58417 -Parasiticides 63991 -Parasitol 58017 -Parasitology 59774 -Parasol 62066 -Parathinalos 64423 -Parathyroid 61940 -Paratype 61584 -Parazitol 63991 -Parc 54857 -Parca 63792 -Parcel 48970 -Parcells 61940 -Parcels 57482 -Parchhain 60670 -Parchment 63792 -Parco 64423 -Parcs 65452 -Pardee 64201 -Pardesi 62469 -Pardesi's 64657 -Pardini 64905 -Pardo 61051 -Pardon 55821 -Pardons 60856 -Pare 62613 -Paredes 61818 -Pareja 64905 -Parekh 61051 -Parent 43859 -Parent's 57009 -ParentCONNECT 64201 -ParentDatabase 63792 -ParentDish 57566 -ParentDocumentUNID 64423 -ParentView 60405 -Parental 50365 -Parentdish 64201 -Parenter 63991 -Parenteral 60492 -Parenthood 55906 -Parenting 43884 -Parents 44081 -ParentsCentre 65452 -Paresh 63991 -Pareto 58417 -Parfait 62331 -Parfum 56140 -Parfums 57084 -Parham 60952 -Pari 63245 -Pariah 62469 -Paribas 59774 -Parikh 63601 -Paris 40194 -Paris's 64905 -Parish 46255 -Parishes 59039 -Parishioners 59164 -Parisi 61699 -Parisian 56618 -Parisienne 62331 -Parity 57923 -Park 35146 -Park's 56262 -Parka 60952 -Parkborough 63792 -Parkdale 62331 -Parke 59227 -Parked 61472 -Parkeli 65452 -Parker 45321 -Parker's 57785 -Parkers 63991 -Parkersburg 59923 -Parkes 58365 -Parkfield 64201 -Parkhead 64201 -Parkhouse 62917 -Parkhurst 61940 -Parkin 62762 -Parking 41527 -Parkinson 55474 -Parkinson's 51193 -Parkland 57278 -Parklander 65452 -Parklands 59357 -Parkman 62196 -Parkour 57566 -Parks 41575 -Parkside 58065 -Parktown 64905 -Parkview 58065 -Parkville 59702 -Parkway 49103 -Parkwood 62196 -Parkzone 65170 -Parl 65452 -Parlay 65452 -Parle 65452 -Parley 62196 -Parliament 46022 -Parliament's 62613 -Parliamentarian 65170 -Parliamentarians 64201 -Parliamentary 51211 -Parliaments 62613 -Parlin 65452 -Parlophone 65452 -Parlor 55526 -Parlors 57482 -Parlour 61256 -Parlours 60856 -Parlux 63792 -Parma 55014 -Parmar 63991 -Parmenter 65452 -Parmer 64657 -Parmesan 56200 -Parnassus 62196 -Parnell 57609 -Parner 60952 -Paro 64657 -Parochial 62917 -Parodi 63792 -Parodie 65452 -Parodies 61051 -Parody 54622 -Parokya 65170 -Parola 63991 -Parole 53581 -Paroles 56293 -Paromita 63991 -Paronychia 64201 -Paros 63245 -Parotid 64905 -Paroxetine 62469 -Paroxysmal 60670 -Parque 57524 -Parquet 63792 -Parr 57785 -Parra 61256 -Parramatta 55250 -Parris 62917 -Parrish 55877 -Parrot 52982 -Parrots 58919 -Parrott 60321 -Parry 54245 -Pars 61362 -Parse 59491 -Parsee 64905 -Parser 59424 -Parsing 59164 -Parsippany 61940 -Parsley 59923 -Parson 57923 -Parson's 64423 -Parsonage 63419 -Parsons 51920 -Part 36056 -Partagas 64905 -Parte 52648 -Partenaires 63077 -Parteners 62762 -Partha 65452 -Parthenon 60952 -Parthenon's 65452 -Parthian 64905 -Parti 59424 -Partial 49893 -Partially 55631 -Participant 51415 -Participant's 61818 -Participants 45127 -Participate 47529 -Participated 62469 -Participates 58212 -Participating 52210 -Participation 45604 -Participatory 55107 -Particle 50249 -Particles 53167 -Particular 54283 -Particularly 54540 -Particulars 58162 -Particulate 58113 -Partido 63792 -Partie 63419 -Parties 45680 -Parting 62331 -Partisan 60856 -Partita 64905 -Partition 52954 -Partitioned 64657 -Partitioning 54643 -Partitions 57358 -Partlow 63245 -Partly 50394 -Partner 39208 -Partner's 61152 -Partnered 60321 -Partnering 56551 -Partners 38834 -Partnership 44768 -Partnership's 63077 -Partnerships 47600 -Parton 55877 -Parton's 64657 -Partridge 57084 -Parts 38205 -PartsOrder 64201 -Partsearch 61818 -Party 38197 -Party's 56618 -PartyBuilder 57785 -PartyPOP 64201 -PartyPoker 64905 -Partying 57609 -Partywear 64201 -Paruline 65452 -Parvati 62469 -Parvez 64657 -Parvo 63077 -Parvovirus 61699 -Parvum 63792 -Paryushan 63077 -Pas 53392 -Pasa 62917 -Pasadena 51660 -Pasay 62613 -Pascagoula 64657 -Pascal 52315 -Pascal's 65452 -Pascale 61152 -Paschal 62066 -Paschendale 62196 -Pasco 55526 -Pascoe 63601 -Pascua 63419 -Pascual 61362 -Paseo 56791 -Pash 63792 -Pasha 61818 -Pashia 64657 -Pashmina 62066 -Pashto 60856 -Pashtu 62066 -Pashtun 64201 -Pasi 64657 -Pasian 63792 -Pasifika 64657 -Pasig 59923 -Pasion 65170 -Pasir 61152 -Pasiuni 65170 -Paslode 63601 -Pasnew 63245 -Paso 48386 -Pasquale 61584 -Pasquals 65452 -Pasquini 64657 -Pasquotank 60492 -Pass 43484 -Passage 52818 -Passages 61051 -Passaic 58113 -Passat 52423 -Passchendaele 64201 -Passed 52363 -Passenger 48404 -Passengers 53167 -Passer 58262 -Passes 49168 -Passi 65452 -Passing 51762 -Passion 47780 -PassionFord 64201 -Passionate 56618 -Passionately 62917 -Passions 57440 -Passive 51463 -Passo 62469 -Passover 58262 -Passport 47392 -Passports 55657 -Password 36979 -Passwords 55037 -Passwort 60952 -Past 41446 -Pasta 49376 -Pastas 61818 -Paste 47626 -Pastel 55711 -Pastels 63601 -Pasternak 65452 -Pasteur 57785 -Pasteurella 63077 -Pasties 65170 -Pastime 63419 -Pastimes 62469 -Pasting 65170 -Pastor 49440 -Pastor's 59164 -Pastoral 54419 -Pastore 64657 -Pastors 57785 -Pastrana 64201 -Pastries 59101 -Pastry 53970 -Pasture 58523 -Pastures 59491 -Pat 45166 -Pat's 57970 -Pata 62917 -Pataca 64423 -Patagonia 54992 -Patagonian 64657 -Pataki 60856 -Patch 45611 -Patched 61940 -Patches 49274 -Patching 59101 -Patchogue 62066 -Patchouli 62469 -Patchway 64657 -Patchwork 56110 -Patchy 63601 -Pate 58632 -Patek 62066 -Patel 52152 -Patent 39473 -PatentStorm 54601 -Patentability 61256 -Patentamt 63419 -Patented 56721 -Patents 46043 -Pater 60670 -Patera 64657 -Paternal 62613 -Paternity 57566 -Paterno 61818 -Paternoster 64905 -Paternoville 65452 -Paterson 53517 -Paterson's 63991 -Path 46708 -Pathak 63601 -Pathe 64201 -Pathetic 62469 -Pathfinder 52472 -Pathfinders 63792 -Pathobiology 58262 -Pathogen 60952 -Pathogenesis 57084 -Pathogenic 59630 -Pathogenicity 62469 -Pathogens 56899 -Pathol 50006 -Pathologic 59848 -Pathological 57318 -Pathologie 60952 -Pathologist 59630 -Pathologists 60580 -Pathology 48195 -Pathophysiology 58860 -Paths 53779 -Pathway 52886 -Pathways 51804 -Pati 62469 -Patiala 63245 -Patience 55992 -Patient 43251 -Patient's 60492 -Patiently 63991 -Patients 43192 -PatientsLikeMe 63601 -Patil 60078 -Patina 62613 -Patio 48278 -Patios 58470 -Patisserie 61152 -Patmos 65170 -Patna 54727 -Patni 65170 -Pato 64657 -Patol 64657 -Paton 61940 -Patong 58212 -Patopeaking 64201 -Patra 62762 -Patras 63991 -Patri 64905 -Patria 62917 -Patriarch 60321 -Patriarchate 63419 -Patriarchy 63991 -Patric 62469 -Patrice 54727 -Patricia 46332 -Patrician 61940 -Patricio 61362 -Patrick 42665 -Patrick's 52459 -Patricks 58017 -Patridge 57831 -Patrik 60580 -Patriot 50067 -Patriot's 65452 -Patriotic 51620 -Patriotism 54727 -Patriots 48084 -Patrizia 62613 -Patrizio 64201 -Patrol 48404 -Patroller 63991 -Patrolman 64201 -Patrols 62917 -Patron 53423 -Patronage 63419 -Patrons 59227 -Pats 56862 -Patsy 56293 -Patt 64657 -Pattaya 55578 -Patten 59164 -Patter 65170 -Patterico's 64905 -Pattern 46549 -Patterned 59357 -Patterning 64423 -Patterns 47745 -Patterson 49257 -Patterson's 62917 -Patti 52221 -Pattie 60580 -Patties 59702 -Pattinson 60952 -Pattison 62066 -Patton 54302 -Patton's 61818 -Patty 52805 -Patty's 62196 -Patuxent 60670 -Pau 57524 -Paul 36987 -Paul's 50469 -PaulHews 64905 -Paula 48204 -Paula's 57084 -Paulding 59923 -Pauldrons 64423 -Paulette 59039 -Pauley 59774 -Pauli 58065 -Paulick 64423 -Paulie 61051 -Paulin 63991 -Paulina 57084 -Pauline 52435 -Pauling 64201 -Paulino 64905 -Paulinus 65452 -Paulista 64905 -Paull 63991 -Paulo 50782 -Paulownia 64905 -Pauls 56899 -Paulsen 59774 -Paulson 52521 -Paulson's 62762 -Paulsson 64423 -Paulus 60078 -Pauly 60238 -Pause 54059 -Pausini 62917 -Pav 65452 -Pavan 60856 -Pavarotti 62613 -Pave 59630 -Paved 59164 -Pavel 55552 -Pavement 55037 -Pavements 62196 -Pavers 58979 -Paves 64423 -Pavey 64657 -Pavia 62762 -Pavilion 48063 -Pavilions 60238 -Pavillion 59101 -Pavillon 64201 -Paving 53813 -Pavlik 62331 -Pavlov 62066 -Pavlova 57923 -Pavlovian 61940 -Pavlovna 59923 -Pavol 64657 -Pavoni 65170 -Paw 55178 -Pawan 62331 -Pawel 59560 -Pawlenty 61051 -Pawlesh 64905 -Pawn 58017 -Pawnbrokers 65452 -Pawnee 60157 -Pawns 56827 -Paws 56585 -Pawson 64423 -Pawtucket 59848 -Pax 57122 -Paxil 57696 -Paxillus 61940 -Paxson 63792 -Paxton 57923 -Pay 41017 -PayOnes 63601 -PayPal 42993 -PayPlay 63601 -PayPunchWeb 63601 -PayScale 49446 -Paya 63792 -Payable 54078 -Payal 63991 -Payback 58523 -Paycheck 59923 -Paychecks 65170 -Payday 50343 -Paydayloan 64201 -Paydirt 64905 -Payee 61584 -Payer 60952 -Payers 62613 -Payette 63792 -Paying 50568 -Paykel 59560 -Payless 58919 -Paylin 65170 -Payline 62762 -Payload 58417 -Payment 39877 -Payments 46263 -Payne 48491 -Payne's 63419 -Payneham 64905 -Paynes 65452 -Paynter 63991 -Payoff 60670 -Payoh 64201 -Payor 64423 -Payout 59702 -Payouts 61051 -Paypal 50678 -Payphone 60000 -Payroll 49257 -Pays 52423 -Paysite 57923 -Payson 61699 -Payton 57160 -Paz 53226 -Pazera 62331 -Pazundaung 65170 -País 63991 -Países 65452 -Pb 53286 -PbNation 60856 -PbO 64423 -Pbk 63601 -Pc 50906 -PcG 58577 -PcPro 63245 -Pca 65170 -Pchlide 61362 -Pcie 64905 -Pcp 63792 -Pcs 60856 -Pct 57482 -Pd 55657 -Pda 59702 -Pde 63601 -Pdf 50046 -Pdtv 57238 -Pe 56827 -Pea 53762 -PeaNut 58113 -PeaSoup 64905 -Peabo 64201 -Peabody 54706 -Peace 43750 -Peacebuilding 57238 -Peaceful 55906 -Peacekeeping 61152 -Peacemaker 62917 -Peach 50991 -Peaches 54479 -Peachpit 64201 -Peachtree 53377 -Peachy 61362 -PeachyForum 64201 -Peacoat 61584 -Peacock 55178 -Peacocks 63991 -Peak 46274 -Peakafeller 64201 -Peake 60492 -Peaking 63077 -Peaks 53226 -Peal 64657 -Peale 60762 -Peanut 51193 -Peanuts 54924 -Pear 54792 -Pearce 54540 -Pearl 43742 -Pearl's 63245 -Pearland 61472 -Pearlcoat 62917 -Pearle 64657 -Pearlington 58017 -Pearlized 64423 -Pearlman 58162 -Pearlman's 64657 -Pearls 51293 -Pearlstein 64201 -Pearly 63077 -Pears 58262 -Pearsall 64905 -Pearse 61472 -Pearson 49223 -Pearson's 58745 -Peart 61152 -Peary 62762 -Peas 52913 -Peasant 57238 -Peasants 63991 -Pease 59227 -Peat 57524 -Peau 62762 -Peavey 54302 -Peavy 62196 -Peay 61818 -Pebble 55107 -Pebbles 57358 -Pecado 61152 -Pecan 54059 -Pecans 63419 -Pecillo 61818 -Peck 54749 -Peckham 60321 -Pecoraro 65170 -Pecos 61152 -Pectin 63419 -Peculiar 61940 -Pecuniary 64201 -Ped 61818 -Pedagogical 60078 -Pedagogy 57741 -Pedal 50840 -Pedalboard 65170 -Pedals 53847 -Peddie 63245 -Peddlers 65452 -Peder 61699 -Pedersen 57318 -Pederson 62613 -Pedestal 55014 -Pedestals 62762 -Pedestrian 53024 -Pedestrians 62613 -Pediatr 50321 -Pediatric 46646 -Pediatrician 57923 -Pediatricians 60000 -Pediatrics 48076 -Pedic 59848 -Pedicure 58065 -Pedicures 61818 -Pedidos 64905 -Pedigree 55014 -Pedigrees 64423 -Pedometer 60580 -Pedometers 60580 -Pedra 64201 -Pedraza 65170 -Pedro 49602 -Pedro's 64905 -Pedroia 62469 -Pedros 64657 -Pedrosa 60952 -Peds 64423 -Pee 53066 -PeeWee 62613 -Peebles 61699 -Peeblesshire 64201 -Peed 64657 -Peedi 64423 -Peeing 58162 -Peek 53485 -Peeks 60952 -Peekskill 62469 -Peel 51368 -Peel's 63601 -Peeler 64423 -Peelers 65452 -Peeling 61472 -Peels 62066 -Peep 57278 -Peepers 65452 -Peeping 61699 -Peeples 64905 -Peeps 60157 -Peer 47047 -PeerGuardian 64657 -Peerage 54643 -Peering 59923 -Peerless 57199 -Peers 55423 -Peery 63245 -Peet 60670 -Peet's 59702 -Peeters 61584 -Peeves 64423 -Peg 53796 -Pega 61152 -Pegaso 63419 -Pegasus 53010 -Pegasystems 65452 -Pegboard 64657 -Pegg 60670 -Pegging 63601 -Peggle 59164 -Peggy 50150 -Peggy's 61472 -Pegi 65452 -Pegler 63077 -Pegs 59227 -Pegylated 64905 -Pehchano 64423 -Pehla 65452 -Pei 57278 -Pein 62762 -Peirce 61051 -Peja 62762 -Pek 64905 -Pekalongan 61699 -Pekin 58860 -Peking 56862 -Pekingese 64201 -Pekka 60000 -Pelargonium 65170 -Pelco 64905 -Pele 60321 -Pelfrey 64201 -Pelham 54664 -Pelican 53095 -Pelicans 62613 -Peliculas 61699 -Pelikan 65170 -Pell 54380 -Pella 58262 -Pelle 59774 -Pellegrini 61362 -Pellegrino 59424 -Pellentesque 63792 -Pellet 55934 -Pelletier 60856 -Pellets 56899 -Peloponnese 64201 -Peloponnesian 65452 -Pelosi 54770 -Pelosi's 65452 -Pelt 63792 -Peltier 62331 -Pelton 63601 -Pelvic 55992 -Pelvis 64657 -Pemaquid 64201 -Pemba 65452 -Pemberton 58365 -Pembina 64905 -Pembroke 51752 -Pembrokeshire 56110 -Pembury 63792 -Pempengco 64905 -Pemphigus 62469 -Pen 46584 -Pena 56899 -Penaeus 64657 -Penal 58523 -Penalties 55963 -Penalty 51752 -Penance 63419 -Penang 56170 -Penarth 59357 -Pence 60762 -Pencil 51330 -Pencils 53331 -Pendant 48892 -Pendants 50185 -Penden 64423 -Pendent 65170 -Pender 58417 -Pendergrass 62613 -Pendidikan 64905 -Pending 49906 -Pendle 55178 -Pendlebury 65452 -Pendleton 55084 -Pendragon 60762 -Pendulum 56972 -Penelope 52597 -Penetrating 61152 -Penetration 53882 -Penfield 58523 -Penfolds 59227 -Peng 54560 -Pengobatan 64423 -Penguin 49049 -Penguins 52559 -Penh 57831 -Peni 64423 -Penicillin 60000 -Penicillium 63245 -Penile 61472 -Peninsula 48080 -Peninsular 60405 -Penis 52152 -Penitentiary 60000 -Penix 65452 -Penman 62762 -Penmanship 65170 -Penn 45304 -Penn's 60078 -PennWell 62196 -Pennant 57923 -Pennants 60762 -Penne 59039 -Pennebaker 65452 -Pennell 63601 -Penner 59702 -Penney 56420 -Pennies 61584 -Pennine 60321 -Penning 64657 -Pennington 56388 -Pennoni 65170 -Penns 62613 -Pennsauken 64905 -Pennsylvania 40233 -Pennsylvania's 56972 -Pennsylvanian 60762 -Penny 48697 -Penny's 60952 -Pennywise 61472 -Penobscot 62762 -Penola 62196 -Penrhyn 64657 -Penrith 55657 -Penrose 58523 -Penryn 61472 -Pens 50199 -Pensacola 53438 -Pension 49218 -Pensioner 62762 -Pensioners 62762 -Pensions 51974 -Penske 60580 -Penta 61051 -Pentagon 49152 -Pentagon's 58577 -Pentagram 63419 -Pentaho 61051 -Pentangle 65452 -Pentathlon 58113 -Pentax 52351 -Pentecost 60157 -Pentecostal 58365 -Pentel 63601 -Penthouse 54685 -Penthouses 64905 -Penticton 61940 -Pentima 64657 -Pentium 49049 -Pentland 63245 -Penton 56200 -Pentosidine 64423 -Pentoxifylline 65452 -Pentru 63991 -Pentti 64905 -Pentyrch 63991 -Penumbra 63419 -Penwith 64201 -Penzance 60492 -Penélope 61152 -Peon 64905 -Peony 60762 -People 34228 -People's 45391 -PeopleSoft 54924 -Peopleclick 64657 -Peoples 50101 -Peoplesoft 63601 -Peoria 53662 -Peotone 64423 -Peover 64423 -Pep 56899 -Pepa 64201 -Pepcid 64657 -Pepe 55738 -Peper 64657 -Pepi 65170 -Pepin 59227 -Peppa 61940 -Pepper 48614 -Pepper's 59702 -Peppercorn 64905 -Pepperdine 59164 -Pepperell 65170 -Peppermill 64657 -Peppermint 55130 -Pepperoni 61472 -Peppers 50832 -Peppy 63991 -Peps 62613 -Pepsi 51052 -Pepsi's 64905 -PepsiCo 61152 -Pept 61699 -Peptic 61584 -Peptide 55037 -Peptides 56388 -Pepys 56972 -Pequannock 64423 -Pequot 63077 -Per 42510 -Pera 63991 -Perak 62196 -Peralta 58113 -Perc 62613 -Percale 65452 -Perce 63792 -Perceived 56972 -Perceiving 64905 -Percent 45723 -PercentUsed 61584 -Percentage 48097 -Percentages 56110 -Percentile 59702 -Percentlevel 64905 -Percept 62469 -Perception 52940 -Perceptions 55423 -Perceptual 62066 -Perch 58365 -Perched 63077 -Percheron 62762 -Perches 64657 -Perchlorate 64201 -Percival 60238 -Percocet 58860 -Percoll 62196 -Percussion 51229 -Percussions 64657 -Percutaneous 59101 -Percy 53454 -Percy's 64905 -Perdagangan 65170 -Perdana 63991 -Perdido 61472 -Perdis 65170 -Perdition 64423 -Perdomo 61940 -Perdue 57440 -Pere 59702 -Perego 56551 -Peregrine 58523 -Pereira 55738 -Perelman 64201 -Perennial 56356 -Perennials 61152 -Perenolde 60670 -Perera 62066 -Peres 58919 -Peretti 65452 -Perez 50742 -Perez's 65452 -Perf 60856 -Perfect 43141 -PerfectDisk 62917 -PerfectTablePlan 62196 -Perfected 64905 -Perfecting 62917 -Perfection 54188 -Perfectly 56324 -Perfecto 63245 -Perfil 65170 -Perfomance 63991 -Perforated 58017 -Perforating 64905 -Perforation 63245 -Perforce 62066 -Perform 48581 -Performa 61256 -Performance 38952 -PerformancePoint 63245 -Performances 51762 -Performancing 64905 -PerformancingAds 63792 -Performed 51920 -Performer 50949 -Performers 51877 -Performing 45879 -Performs 54399 -Perfume 48381 -Perfumed 61818 -Perfumery 64201 -Perfumes 54059 -Perfusion 58313 -Pergamon 57696 -Pergo 65452 -Pergola 64905 -Perhaps 45090 -Peri 61152 -Pericardial 59101 -Pericarditis 65170 -Pericles 63245 -Peridot 60157 -Perihelion 64905 -Peril 59164 -Perillo 65452 -Perilous 64423 -Perils 58745 -Perimenopause 64905 -Perimeter 54685 -Perinat 60405 -Perinatal 55992 -Perinatology 63601 -Perino 65170 -Perio 65170 -Period 45977 -Periodic 52712 -Periodical 48836 -Periodically 62469 -Periodicals 45789 -Periodicity 64657 -Periodistas 64423 -Periodontal 57566 -Periodontics 61256 -Periodontists 63991 -Periodontol 58688 -Periods 55084 -Perioperative 60321 -Peripher 63792 -Peripheral 52175 -Peripherals 47919 -Periscope 62613 -Perish 64423 -Perishables 64657 -Perisher 64423 -Peritoneal 55657 -Peritubular 63991 -Periwinkle 58162 -Periyar 63792 -Periz 61699 -Perk 60670 -Perkin 57876 -PerkinElmer 61256 -Perkins 50991 -Perks 56618 -Perky 61472 -Perl 46381 -PerlMonks 62762 -Perla 57831 -Perle 62917 -Perlite 64423 -Perlman 59039 -Perm 58065 -Perma 65170 -PermaLink 60580 -Permaculture 61472 -Permalink 40121 -PermalinkFilter 60762 -Permanence 64201 -Permanent 41560 -Permanente 55552 -Permanently 58919 -Permeability 60952 -Permeable 65452 -Permeation 65170 -Permethrin 65170 -Permian 59292 -Permissible 63991 -Permission 46050 -Permissions 42359 -Permit 47442 -Permits 48341 -Permitted 57876 -Permittee 65452 -Permitting 57440 -Permlink 51793 -Permutation 64657 -Permutations 65452 -Pern 63245 -Perna 65170 -Pernambuco 64423 -Pernt 62196 -Pero 60238 -Perodua 58745 -Peromyscus 61818 -Peron 63991 -Perot 57046 -Peroxidase 60321 -Peroxide 58212 -Peroxisomal 64905 -Peroxisome 61256 -Perpendicular 65170 -Perper 64905 -Perpetual 54643 -Perpignan 63419 -Perpustakaan 60670 -Perquimans 61818 -Perri 62917 -Perricone 63792 -Perrier 58745 -Perrin 57566 -Perris 63991 -Perro 63077 -Perron 59424 -Perrott 63991 -Perrotta 63601 -Perry 45010 -Perry's 56356 -Perryman 64657 -Perrys 61699 -Perryville 64905 -Pers 58365 -Perscilla 60952 -Perscription 63601 -Perse 61584 -Persecuted 62613 -Persecution 60405 -Persephone 61584 -Persepolis 64905 -Perseus 59560 -Perseverance 59491 -Pershing 59164 -Persia 53952 -Persian 48761 -Persians 64201 -Persie 65170 -Persil 64905 -Persimmon 62762 -Persist 59630 -Persistence 56140 -Persistent 53533 -Person 44829 -Person's 59292 -Persona 55348 -Personae 65170 -Personal 34732 -PersonalEdition 65452 -PersonalJava 63991 -Personalidad 63601 -Personalise 62331 -Personalised 53081 -Personalities 54992 -Personality 48088 -Personalization 57238 -Personalize 51899 -Personalized 46947 -Personally 52484 -Personals 42931 -Personas 60580 -Persone 65452 -Personen 65170 -Personne 60157 -Personnel 45785 -Personnelman 54685 -Personnels 64423 -Personnes 65170 -Persons 48381 -Persp 63991 -Perspect 58113 -Perspective 49081 -Perspectives 49262 -Perspex 64905 -Persson 60157 -Persuading 63419 -Persuasion 56293 -Persuasive 61152 -Pertaining 61584 -Pertenece 63245 -Perth 46982 -Perth's 63792 -PerthNow 58365 -Perthshire 56585 -Pertinent 63245 -Pertti 63792 -Perturbation 61584 -Perturbations 64905 -Pertussis 63601 -Peru 44134 -Peru's 62196 -Peruano 63792 -Perugia 58262 -Perusahaan 65170 -Peruse 61699 -Peruvian 52940 -Perv 62469 -Pervaporation 63991 -Pervasive 58113 -Pervert 63991 -Perverted 63792 -Pervez 59702 -Pervious 65170 -Perú 59039 -Pes 63991 -Pesach 64905 -Pesan 61256 -Pesce 63419 -Pesci 64201 -Peseckis 61362 -Peseta 64657 -Peshawar 60580 -Peskin 63991 -Pesky 62196 -Peso 51931 -Pesos 57318 -Pesquisa 61256 -Pessoal 64201 -Pest 47540 -Pesta 61940 -Pesticide 53970 -Pesticides 55992 -Pestilence 65170 -Pesto 57696 -Peston 60580 -Pests 54540 -Pet 39941 -Pet's 60670 -PetSafe 63991 -PetSmart 60405 -PetSugar 63991 -Peta 61818 -Petal 59101 -Petaling 60762 -Petals 57399 -Petaluma 55766 -Petar 63077 -Petascale 65452 -Petcare 64423 -Petco 61472 -Pete 45631 -Pete's 55631 -PeteLong 64423 -Peter 38543 -Peter's 52609 -PeterThoeny 56324 -Peterbilt 58470 -Peterborough 49229 -Peterburg 65170 -Peterhead 61584 -Peterman 64201 -Peters 49482 -Petersburg 49382 -Petersburgh 60762 -Petersen 51104 -Petersen's 62613 -Petersfield 61472 -Petersham 64423 -Peterson 48877 -Peterson's 59357 -Petersson 65170 -Petes 63601 -Petey 61584 -Petfinder 58262 -Petia 58688 -Petit 53010 -Petite 51026 -Petites 56972 -Petition 50227 -Petitioner 53746 -Petitioner's 57831 -Petitioners 62917 -Petitions 54459 -Petits 65170 -Petoskey 64905 -Petpet 64905 -Petr 57524 -Petra 52584 -Petraeus 58919 -Petrelli 63601 -Petri 53847 -Petrie 59039 -Petrified 60492 -Petro 56972 -Petrobank 64905 -Petrobras 61256 -Petrochemical 58162 -Petrochemicals 61051 -Petroglyph 64423 -Petroglyphs 64905 -Petrol 50766 -Petroleum 48519 -Petrolia 60405 -Petrology 62469 -Petron 64423 -Petronas 65170 -Petros 62762 -Petrov 60580 -Petrova 65170 -Petrovic 64905 -Petrucci 63077 -Petruchio 63792 -Petrus 64201 -Petruzelli 62331 -Petry 64201 -Pets 39941 -Petsmart 62066 -Petter 61699 -Petters 64423 -Petterson 65452 -Pettersson 63991 -Petticoat 62917 -Pettigrew 61699 -Petting 61699 -Pettinhouse 63991 -Pettis 63077 -Pettit 61472 -Pettitt 64423 -Pettitte 62917 -Petts 65452 -Petty 45641 -Petunia 62196 -Petworth 63792 -Petz 63991 -Petzl 62066 -Petzzz 64657 -Peugeot 50314 -Peugeot's 64905 -Pew 55323 -Pewaukee 62762 -Pewter 53762 -Pex 60492 -Peyer's 65170 -Peyronie's 62196 -Peyton 52559 -Peyton's 64657 -Pez 61256 -Peña 60670 -Pf 62613 -Pfaff 61940 -Pfaltzgraff 58065 -Pfam 63792 -Pfeifer 62613 -Pfeiffer 57831 -Pfennig 65452 -Pfister 61699 -Pfizer 53438 -Pfizer's 65170 -Pflanzen 63077 -Pflugers 63991 -Pflugerville 63245 -Pfr 62196 -Pfu 62469 -Pg 57696 -PgR 65452 -Ph 52597 -PhAST 61818 -PhD 45775 -PhDs 58919 -PhONa 64657 -PhP 64905 -PhRMA 63419 -Pha 62762 -Phadnis 64423 -Phaeton 60952 -Phage 59292 -Phagocytic 64201 -Phagocytosis 64657 -Phair 63792 -Phakic 63792 -Phalanx 62066 -Phallus 65170 -Pham 56721 -Phan 58262 -Phanatic 64201 -Phang 60492 -Phangan 59491 -Phantasy 57831 -Phantom 49033 -Phantoms 62469 -Pharacyde 62917 -Pharaoh 55037 -Pharaoh's 60952 -Pharaohs 62762 -Pharell 64201 -Phares 65452 -Pharisees 64657 -Pharm 51104 -PharmD 62917 -PharmEng 64657 -PharmGKB 63419 -Pharma 50630 -Pharmaceutical 45685 -Pharmaceuticals 49017 -Pharmaceutics 58802 -Pharmacia 57696 -Pharmacies 50033 -Pharmacist 54399 -Pharmacists 53167 -Pharmaclinix 60670 -Pharmacodyn 63077 -Pharmacodynamic 65452 -Pharmacogenetics 63601 -Pharmacogenomics 62762 -Pharmacokinetic 59848 -Pharmacokinetics 58113 -Pharmacol 48918 -Pharmacologic 63077 -Pharmacologica 62762 -Pharmacological 55738 -Pharmacology 49899 -Pharmacopoeia 62917 -Pharmacother 64657 -Pharmacotherapy 60670 -Pharmacovigilance 63245 -Pharmacy 44861 -PharmacyGirl 64905 -Pharmanewsfeed 65452 -Pharmazie 64423 -Pharoah 62917 -Pharos 56935 -Pharr 63792 -Pharrell 57318 -Pharyngula 61256 -Phase 42962 -Phased 60670 -Phasellus 64423 -Phaseolus 63245 -Phaser 56585 -Phases 56687 -Phasing 64201 -Phat 53549 -PhazeDDL 61699 -Phd 61472 -Phe 58979 -Pheasant 57482 -Pheasants 63991 -Phebe 65170 -Phelan 58262 -Phelps 50865 -Phen 64905 -Phenix 60405 -Phenobarbital 62613 -Phenol 61584 -Phenolic 62331 -Phenols 65452 -Phenom 57653 -Phenomena 53581 -Phenomenal 60580 -Phenomenol 64201 -Phenomenological 64423 -Phenomenology 57009 -Phenomenon 58577 -Phenotype 58162 -Phenotypes 61584 -Phenotypic 60000 -Phentermine 44731 -Phentramine 61256 -Phenylalanine 62331 -Pheonix 65170 -Pheromone 62331 -Pheromones 62331 -Phi 50646 -Phil 44597 -Phil's 58417 -Phila 61940 -Philadelphia 40768 -Philadelphia's 59491 -Philadephia 63792 -Philanthropic 60157 -Philanthropy 52622 -Philatelic 62917 -Philemon 62331 -Philharmonia 60856 -Philharmonic 51425 -Philip 44925 -Philip's 61152 -Philipp 56231 -Philippa 58162 -Philippe 51610 -Philippi 65452 -Philippians 60238 -Philippine 46646 -Philippines 41362 -Philipps 64201 -Philips 46449 -Philipsburg 63077 -Phill 59630 -Phillie 64905 -Phillies 47279 -Phillip 49001 -Phillipa 64657 -Phillipe 63245 -Phillipines 61362 -Phillippe 61362 -Phillips 46745 -Phillipsburg 62762 -Phillis 59702 -Philly 50898 -Philly's 61940 -Philo 61152 -Philology 63077 -Philomena 64905 -Philos 55821 -Philosopher 58802 -Philosopher's 62917 -Philosophers 60952 -Philosophical 52648 -Philosophie 63991 -Philosophies 63991 -Philosophy 43838 -Philp 65452 -Philpott 63792 -Phils 55738 -Phinda 64657 -Phineas 63991 -Phinney 62762 -Phipps 59292 -Phir 65170 -Phiri 60952 -Phish 57876 -Phishing 54969 -Phitsanulok 65452 -Phizzpop 64657 -Phlebotomist 62469 -Phlebotomy 61818 -Phloem 64201 -Phlox 64201 -Phnom 55711 -Pho 59774 -Phobia 58523 -Phobias 60405 -Phobos 64423 -Phoebe 53970 -Phoebus 61051 -Phoenicia 64905 -Phoenician 63245 -Phoenix 41395 -Phoenix's 60492 -Phoenixville 61940 -Phonak 62917 -Phone 36293 -PhoneTools 61362 -Phonebook 58745 -Phonemic 63991 -Phones 39840 -Phonetic 58262 -Phonetics 61362 -Phong 61940 -Phonic 61584 -Phonics 56485 -Phono 61051 -Phonological 61152 -Phonology 60492 -Phonon 63245 -Phony 60670 -Phorbol 63245 -Phorm 63991 -Phorum 65452 -Phosphatase 60078 -Phosphate 56110 -Phosphates 63601 -Phosphatidylinositol 64201 -Phospholipase 62331 -Phospholipid 62613 -Phospholipids 63792 -Phosphor 63245 -Phosphoramidites 63792 -Phosphoric 61818 -Phosphorous 64905 -Phosphorus 56021 -Phosphorylase 65452 -Phosphorylated 64423 -Phosphorylation 55500 -Photius 60492 -Photo 33981 -Photo's 59630 -PhotoAlto 60157 -PhotoBank 64905 -PhotoBuzz 64423 -PhotoCuisine 62196 -PhotoDVD 58212 -PhotoEssentials 62196 -PhotoFx 62917 -PhotoImpact 64423 -PhotoLinks 58262 -PhotoPost 59039 -PhotoShop 57831 -PhotoSmart 63991 -PhotoSpin 61940 -PhotoVivid 62196 -PhotoVote 62613 -Photoart 62762 -Photobank 63991 -Photobiol 62762 -Photoblog 57741 -Photoblogs 64905 -Photobook 65170 -Photobucket 43422 -Photocall 60856 -Photocatalytic 64905 -Photochem 62613 -Photochemical 60000 -Photochemistry 63419 -Photocopier 61699 -Photocopiers 62762 -Photocopies 63601 -Photocopy 59560 -Photocopying 60078 -Photoderm 63792 -Photodisc 55766 -Photodynamic 64201 -Photoelectric 64905 -Photoelectron 64201 -Photofinishing 63419 -Photoflex 59923 -Photog 62066 -Photogallery 59424 -Photogenic 65452 -Photogrammetric 60762 -Photogrammetry 64657 -Photograph 48682 -Photographed 49815 -Photographer 47645 -Photographer's 53095 -Photographers 47283 -Photographic 47955 -Photographics 64657 -Photographing 63077 -Photographs 47140 -Photography 39565 -Photography's 61699 -PhotographyBLOG 65452 -Photoimm 63991 -Photoinduced 64201 -Photojournalism 58860 -Photokina 63077 -Photoluminescence 64423 -Photomanipulation 65170 -Photomed 63601 -Photometric 62762 -Photometry 64905 -Photomicrographs 64201 -Photon 56021 -Photonic 59774 -Photonics 54519 -Photonix 63991 -Photons 65170 -Photophysics 65170 -Photopost 64423 -Photos 34654 -PhotosView 63792 -Photosales 59702 -Photosearch 61940 -Photoshoot 57199 -Photoshop 45326 -Photoshop's 64423 -Photosindia 65452 -Photosmart 56388 -Photospreview 63245 -Photostream 51492 -Photosynth 63601 -Photosynthesis 60580 -Photosynthetic 63601 -Photothermal 64657 -Photovoltaic 58470 -Photovoltaics 62196 -Php 55014 -PhpGedView 65170 -Phra 62196 -Phragmites 64201 -Phrasal 62917 -Phrase 50865 -Phrasebook 61584 -Phrases 51122 -Phrenic 65170 -Phthalate 64423 -Phthalates 65452 -Phu 58802 -Phuket 50439 -Phuong 61362 -Phycol 63792 -Phycological 64201 -Phylecia 65452 -Phyllis 52818 -Phylogenetic 57876 -Phylogeny 62762 -Phylum 63419 -Phys 51358 -PhysOrg 62762 -PhysX 62331 -Physarum 63077 -Physic 63991 -Physica 55037 -Physical 41319 -Physically 58577 -Physicals 64201 -Physician 45831 -Physician's 58979 -Physicians 45410 -Physicist 60580 -Physicists 60952 -Physicochemical 60580 -Physics 40566 -PhysicsClassRoom 62613 -Physik 59491 -Physikalische 64657 -Physiol 46884 -Physiologic 63245 -Physiologica 61584 -Physiological 50694 -Physiologie 65170 -Physiologist 64657 -Physiology 48756 -Physiotherapist 64905 -Physiotherapists 64201 -Physiotherapy 53712 -Physique 58313 -Phytera 60321 -Phyto 61256 -Phytochemistry 58212 -Phytol 63601 -Phytopathol 63601 -Phytopathological 63601 -Phytopathology 61818 -Phytophthora 60000 -Phytoplankton 61362 -Phytosanitary 64905 -Phytotaxonomica 64201 -Pi 51570 -PiCtUrEs 65170 -Pia 57160 -Piaf 65170 -Piaget 59424 -Piaget's 64423 -Piaggio 60492 -Pian 64905 -Pianist 58979 -Piano 44663 -PianoSoft 65452 -Pianos 55684 -Piatra 62917 -Piatti 64201 -Piazza 54207 -Piazzale 64423 -Piazzolla 63792 -Pibanryeong 65170 -Pic 50646 -PicLens 62196 -Pica 63991 -Picacho 65170 -Picadas 63991 -Picador 64423 -Picanol 64201 -Picanto 62066 -Picard 58313 -Picasa 54005 -Picasso 53286 -Picasso's 61584 -Picatinny 63601 -Picayune 64423 -Piccadilly 57741 -Piccard 60952 -Picchu 59164 -Piccola 64657 -Piccolo 57785 -Picea 61362 -Pichi 64201 -Pichia 61472 -Pichon 63991 -Pick 43767 -Pick'em 56972 -PickListCollection 64905 -Pickard 61152 -Picked 56080 -Pickem 56972 -Pickens 55299 -Picker 56827 -Pickering 53729 -Pickerington 63077 -Pickers 64423 -Picket 61362 -Pickett 57923 -Pickford 59357 -Pickguard 65452 -Pickguards 58470 -Pickin 64905 -Picking 52872 -Pickle 56231 -Pickled 60238 -Pickler 59702 -Pickles 57785 -Picks 42352 -Pickton 63991 -Pickup 48372 -Pickups 55202 -Pickwick 60762 -Picnic 50157 -Picnics 61256 -Pico 55202 -Picornell 63419 -Picoult 62331 -Pics 42310 -PictBridge 63792 -PictoChat 63077 -Picton 59101 -Pictorial 55793 -Pictorials 63792 -Pictou 61472 -Picture 40638 -PictureBox 62917 -PictureMate 64657 -Pictured 56324 -Pictures 38321 -Picturesque 62762 -Picturing 63077 -Piczo 57970 -Pidgeon 64423 -Pidgin 58262 -Pie 47544 -Piece 46123 -Pieces 48701 -Piecewise 63792 -Piecing 64201 -Pied 61152 -Piedad 65452 -Piedmont 54005 -Piedra 62331 -Piedras 65452 -Piel 58365 -Pieler 62613 -Pielke 63792 -Piemonte 64905 -Pieper 63601 -Piepergerdes 62917 -Pier 51034 -Pieraccioni 64657 -Pierce 49119 -Pierced 57923 -Piercing 53813 -Piercings 60078 -Piercy 63245 -Pierluigi 64905 -Piero 59039 -Pierre 45468 -Pierrefonds 64905 -Pierrot 63991 -Piers 56618 -Pierson 59039 -Pierzynski 63419 -Pies 52872 -Piet 60000 -Pieter 56050 -Pietermaritzburg 62066 -Pietersen 63245 -Pietra 65452 -Pietro 57831 -Piezo 59227 -Piezoelectric 59227 -Piffin 61152 -Pig 49584 -Pig's 64201 -Pigeon 52661 -Pigeons 59491 -Piggy 58365 -Piglet 59227 -Pigment 55348 -Pigmented 64657 -Pigments 57831 -Pigott 65170 -Pigs 54226 -Pigskin 55821 -Pigtail 65452 -Pigtailed 64905 -Pigtails 64201 -Piguet 61940 -Pika 62917 -Pikachu 57238 -Pikachu's 64423 -Pikadientes 63991 -Pike 49663 -Pike's 62066 -Pikes 58632 -Pikesville 61362 -Pikman 64201 -Pikmin 57831 -Pilaf 64201 -Pilar 58919 -Pilate 60856 -Pilates 51731 -Pilato 60762 -Pilatus 62613 -Pilbara 60856 -Pilchuck 62613 -Pile 54399 -Piles 59923 -Pilger 63601 -Pilgrim 53970 -Pilgrim's 61051 -Pilgrimage 57318 -Pilgrimages 65452 -Pilgrims 58745 -Piling 59774 -Pilipinas 63792 -Pilipino 60321 -Pilkenton 63991 -Pilkerton 65170 -Pilkey 64201 -Pilkington 55398 -Pilkinton 64657 -Pill 48643 -Pilla 60580 -Pillage 61152 -Pillai 54685 -Pillar 54924 -Pillared 64423 -Pillars 57696 -Pillay 65452 -Pilling 62469 -Pillip 65170 -Pillow 49614 -Pillowcase 61051 -Pillowcases 62762 -Pillows 51793 -Pillowtop 62613 -Pills 48996 -Pillsbury 58212 -Pilot 45184 -Pilot's 60405 -Piloting 61472 -Pilots 53211 -Pilsen 62469 -Pilsner 61699 -Pilz 62917 -Pim 62613 -Pima 55821 -Pimentel 60762 -Pimento 65170 -Pimlico 62066 -Pimp 51113 -Pimpin 65170 -Pimps 61472 -Pimsleur 57696 -Pin 46613 -PinStack 65170 -Pina 58860 -Pinal 62469 -Pinan 60580 -Pinar 61940 -Pinarello 64657 -Pinas 65452 -Pinata 59923 -Pinatubo 63601 -Pinay 62762 -Pinback 63792 -Pinball 54264 -Pincers 64657 -Pinch 57482 -Pinched 65170 -Pinckney 65452 -Pincus 61940 -Pinder 59101 -Pine 45763 -Pineal 61256 -Pineapple 52130 -Pineapster 63991 -Pinebrook 65452 -Pinecone 63419 -Pinecrest 65170 -Pineda 61818 -Pinedale 63601 -Pinehurst 59424 -Pinellas 54857 -Pines 51148 -Pinetop 64201 -Pineville 61051 -Pinewood 61362 -Piney 60670 -Ping 48395 -Pingback 57696 -Pingbacks 48991 -Pinging 59357 -Pings 59702 -Pingu 62613 -Pingus 65452 -Pinhead 64423 -Pinheiro 62917 -Pinhole 58632 -Piniella 64905 -Pininfarina 63792 -Pinion 58632 -Pink 41525 -Pink's 64657 -Pinkberry 62613 -Pinker 63991 -Pinkerton 61362 -Pinkett 61152 -Pinkham 64423 -Pinkhearts 64201 -Pinkie 64201 -Pinkney 63792 -Pinko 63991 -Pinks 62613 -Pinky 55934 -Pinky's 64905 -Pinna 64905 -Pinnacle 50923 -Pinnacles 62917 -Pinner 63792 -Pinning 63792 -Pino 60238 -Pinocchio 59292 -Pinochet 63792 -Pinole 60000 -Pinon 63792 -Pinos 63419 -Pinot 52805 -Pinout 60856 -Pinoy 51996 -PinoyExchange 65170 -Pinpoint 58802 -Pins 50923 -Pinscher 59560 -Pinsky 64423 -Pinson 64201 -Pinstripe 62066 -Pint 57524 -Pinta 65452 -Pinter 60405 -Pinto 54685 -Pints 62762 -Pinup 60580 -Pinups 64201 -Pinus 57440 -Pinwheel 63792 -Pinwheels 65170 -Pinyin 63601 -Pinzon 63792 -Pio 58417 -Pioglitazone 65452 -Pion 63601 -Pioneer 45992 -Pioneer's 64423 -PioneerPOS 61256 -Pioneering 61362 -Pioneers 54749 -Pionero 61699 -Piotr 59101 -Pious 65452 -Pip 58577 -Pipe 47772 -Piped 63991 -Pipedream 62762 -Pipedreams 64905 -Pipeline 50402 -Pipelines 60580 -Piper 52175 -Piper's 64657 -Piperlime 62613 -Pipermail 63245 -Pipers 61940 -Pipes 52534 -Pipette 64657 -Pipettes 63601 -Pipework 65170 -Pipex 60762 -Pipi 62196 -Piping 56551 -Pipl 63245 -Pippa 60492 -Pippen 64905 -Pippi 61152 -Pippin 62613 -Piptochaetium 63792 -Piqua 61818 -Pique 60078 -Piquer 65452 -Pir 63991 -Piracy 56140 -Piraeus 61051 -Piranha 59630 -Pirate 48372 -Pirate's 59560 -Pirated 64657 -Pirates 47279 -Pirelli 55657 -Pires 61256 -Piri 65170 -Pirie 60670 -Pirillo 59560 -Piru 65170 -Pisa 57831 -Pisani 64657 -Piscataway 60952 -Pisce 57278 -Pisces 54096 -Piscine 63991 -Pisco 62066 -Pisgah 60952 -Pismo 59630 -Piso 64905 -Piss 57482 -Pissarides 65170 -Pissarro 62762 -Pissed 59292 -Pissing 54601 -Pistachio 59848 -Pistachios 64201 -Piste 64201 -Pistoia 65452 -Pistol 52609 -Pistols 54207 -Piston 55250 -Pistons 53024 -Pisum 64657 -Pit 49494 -Pita 58262 -Pitbull 56262 -Pitcairn 50213 -Pitch 50991 -Pitched 64201 -Pitcher 55154 -Pitchers 57653 -Pitches 59357 -Pitchford 64201 -Pitchfork 58017 -Pitching 54706 -Pitfall 64201 -Pitfalls 55877 -Pitkin 57399 -Pitlochry 63245 -Pitman 58212 -Pitney 57482 -Pitot 64657 -Pits 57524 -Pitstop 62066 -Pitt 47737 -Pitt's 61362 -Pitta 61362 -Pitti 65452 -Pittman 57831 -Pitts 57741 -Pittsboro 64905 -Pittsburg 57199 -Pittsburgh 43490 -Pittsburgh's 61362 -Pittsfield 58523 -Pittsford 64201 -Pittsylvania 62917 -Pittwater 64201 -Pitty 62613 -Pituitary 58162 -Pity 57609 -Pitzer 62613 -Pius 55906 -Piven 60952 -Pivot 54133 -Pivotal 60321 -Pix 53485 -Pixar 54992 -Pixar's 63601 -Pixel 51406 -PixelFX 60856 -Pixelated 63792 -Pixels 54245 -Pixie 56791 -Pixies 59630 -Pixland 59923 -Pixma 58017 -Pixmania 61051 -Pixon 61940 -Pixos 64201 -Pixtal 65170 -Piyush 64657 -Pizarro 62613 -Pizza 43337 -Pizza's 64657 -PizzaExpress 65452 -Pizzas 59774 -Pizzeria 53301 -Piñata 63601 -Pj 61362 -Pjur 65170 -Pk 54727 -Pkg 59357 -Pkolino 60321 -Pkwy 52423 -Pky 65170 -Pl 52411 -Pla 62469 -Placa 65452 -Placards 64657 -Place 38371 -Placebo 55014 -Placebos 57160 -Placed 55323 -Placeholder 65170 -Placemat 64201 -Placemats 61051 -Placement 48186 -Placements 56827 -Placenta 60856 -Placental 60952 -Placentia 59292 -Placer 56899 -Placerville 61818 -Places 41391 -Placid 58065 -Placido 63991 -Placing 55130 -Plage 64423 -Plagiarism 58262 -Plague 57046 -Plagued 63601 -Plaguelands 57831 -Plagues 64905 -Plaid 54096 -Plain 45540 -Plaine 62196 -Plaines 59357 -Plainfield 55299 -Plains 47485 -Plaintiff 50823 -Plaintiff's 56618 -Plaintiffs 57084 -Plainview 59848 -Plainville 59774 -Plaistow 63792 -Plait 64905 -Plaka 65452 -Plakias 64905 -Plame 62917 -Plame's 65170 -Plan 37780 -Plan's 62613 -PlanPlanning 62469 -PlanPlus 63077 -Plana 63991 -Planar 56080 -Planck 56935 -Planck's 62762 -Plane 50081 -Planer 62613 -Planers 64905 -Planes 50143 -Planeshift 65452 -Planet 42459 -Planet's 58802 -PlanetFlow 62196 -PlanetGreenTV 62469 -PlanetLab 60856 -PlanetOut 62917 -PlanetPress 64657 -PlanetRecruit 65170 -PlanetWare 60321 -Planeta 60405 -Planetarium 59039 -Planetary 53066 -Planetree 62917 -Planets 53167 -Planing 63077 -Plank 56791 -Planking 65170 -Planks 63991 -Plankton 61699 -Plann 63792 -Planned 49223 -Planner 44937 -Planners 50164 -Planning 37449 -Planning's 64657 -Plano 52244 -Plans 41018 -Plant 41200 -Planta 58162 -Plantae 61940 -Plantain 64905 -Plantar 58860 -Plantation 51570 -Plantations 61472 -Plante 57923 -Planted 58919 -Planter 56080 -Planters 55130 -Planthopper 61818 -Planting 53485 -Plantronics 54643 -Plants 42473 -Planète 62196 -Plaque 50932 -Plaques 54226 -Plas 57009 -Plasma 45339 -Plasmas 59491 -Plasmid 55299 -Plasmids 58979 -Plasminogen 63991 -Plasmodium 52845 -Plasmon 64423 -Plaspanel 64201 -Plast 56080 -Plaster 57009 -Plasterers 64201 -Plastering 57566 -Plastic 42999 -Plasticity 61940 -Plastics 48806 -PlasticsSemiconductorsSilicon 59227 -Plastique 64905 -Plat 55178 -Plata 55154 -Plate 45384 -Plateau 53454 -Plated 53662 -Platelet 55711 -Platelets 63245 -Plater 61152 -Plates 48021 -Platform 43373 -Platformer 62917 -Platforms 48204 -Plath 64423 -Plating 57482 -Platinum 45337 -Plato 56687 -Plato's 59630 -Platonic 59630 -Platoon 54792 -Plats 62331 -Platt 56050 -Platte 55711 -Plattekill 63792 -Platter 56756 -Platters 58417 -Platteville 61362 -Platts 62917 -Plattsburgh 56293 -Platypus 61699 -Platz 60762 -Plautdietsch 61362 -Plavix 65170 -Plax 63991 -Plaxico 59923 -Plaxo 62917 -Play 35698 -Play's 64905 -PlayPlay 61818 -PlayStation 42901 -PlayStations 61051 -PlayTV 65452 -PlayTrade 64657 -Playa 50285 -Playable 55992 -Playaz 64657 -Playback 54601 -Playbook 60157 -Playboy 48918 -Playboy's 56518 -Playboys 61940 -Played 51148 -Player 38703 -Player's 54041 -Players 39388 -PlayersPlus 63991 -Playford 63792 -Playful 58745 -Playgirl 62331 -Playground 48801 -Playgrounds 57785 -Playgroup 58860 -Playgroups 62469 -Playhouse 53613 -Playhouses 61584 -Playing 42151 -Playlibs 61256 -Playlist 46285 -Playlisted 63077 -Playlists 38563 -Playmate 58365 -Playmates 61472 -Playmats 65170 -Playmobil 60492 -Playoff 53153 -Playoffs 53882 -Playpens 63601 -Playray 65170 -Playroom 58919 -Plays 44018 -Playschools 64657 -Playset 61584 -Playsets 58919 -Playskool 62613 -Playstation 46640 -Playtest 63077 -Playtex 59164 -Playthings 57084 -Playthrough 64657 -Playtime 58688 -Playwright 60157 -Playwrights 58470 -Playwriting 64201 -Plaza 45066 -Plc 46466 -PlcCenter 64201 -Plea 56518 -Pleading 65170 -Pleads 60238 -Pleas 59424 -Pleasant 47947 -Pleasantly 64905 -Pleasanton 55107 -Pleasantville 62762 -Please 31455 -Pleased 61699 -Pleaser 59774 -Pleasing 63077 -Pleasure 49446 -Pleasures 55766 -Pleat 60321 -Pleated 57785 -Plectrum 65452 -Pledge 50357 -Pledges 60000 -Pledging 65452 -Pleiades 59774 -Plein 63245 -Pleiocarpa 63991 -Pleistocene 60078 -Plekhanov 63245 -Plenary 55037 -Plenty 50758 -Plentywood 65452 -Plenum 54151 -Pleo 63245 -Pleomax 63991 -Plesk 53182 -Plessis 64201 -Pletal 58313 -Pletcher 62469 -Plettenberg 63601 -Pleural 57358 -Pleven 58577 -Plevna 64657 -Plex 61152 -Plexiglas 60670 -Plextor 59357 -Plexus 60762 -Plier 63245 -Pliers 57524 -Plies 57238 -Pligg 57358 -Plight 63792 -Plimpton 64201 -Plimsoll 64657 -Pliner 62917 -Plinkit 62917 -Pliny 63601 -Pliocene 63077 -Plone 51052 -Plonked 62613 -Plot 46837 -Plot's 62613 -Plotkin 62917 -Plots 48985 -Plott 64905 -Plotter 62196 -Plotters 62469 -Plotting 60856 -Plough 58632 -Plovdiv 61584 -Plover 62613 -Plow 56080 -Plowing 61584 -Plowman 63991 -Ploy 64657 -Pls 55963 -Plt 64423 -Plucis 61818 -Pluck 56585 -Plug 49308 -PlugIM 60238 -Plugged 57046 -Plugging 63792 -Plugin 47622 -Plugins 48692 -Plugs 53138 -Pluk 64201 -Plum 52291 -Plumas 62196 -Plumb 60405 -Plumber 50718 -Plumber's 63245 -Plumbers 50832 -Plumbing 45959 -Plume 58745 -Plumer 65452 -Plumeria 64657 -Plumes 65452 -Plummer 56652 -Plummet 65170 -Plummets 62613 -Plump 59702 -Plumper 63601 -Plumping 63991 -Plums 63419 -Plunder 60580 -Plunge 55423 -Plunger 62917 -Plunges 61472 -Plunging 54321 -Plunkett 58313 -Plural 59227 -Pluralism 61152 -Plurk 62762 -Pluronic 65170 -Plus 39736 -PlusTV 65170 -Pluses 65452 -Plush 49770 -Plushie 64201 -Plushies 64657 -Plusmo 61818 -Plustek 65452 -Pluto 54459 -Pluto's 64905 -Plutonic 63792 -Plutonium 61362 -Plutus 65452 -Ply 61051 -Plymouth 46477 -Plympton 64201 -Plywood 56935 -Plz 56231 -Plá 60670 -Pm 56356 -PmWiki 63792 -Pn 62066 -Pneumatic 54643 -Pneumatics 62762 -Pneumococcal 61152 -Pneumocystis 60492 -Pneumofore 63077 -Pneumol 64657 -Pneumonia 56231 -Po 51275 -PoE 59491 -PoP 63792 -Poa 62762 -Poaceae 63792 -Poached 60762 -Poacher 65452 -Poaching 63792 -Pobierz 63601 -Poblacion 62762 -Pobrano 61051 -Pobre 63991 -Poca 65452 -Pocahontas 57741 -Pocatello 61152 -Pochette 64657 -Pockemon 65452 -Pocket 43957 -PocketPC 56262 -Pocketbike 59630 -Pocketbook 64905 -Pocketful 58802 -Pockets 56420 -Poco 60952 -Pocono 55766 -Poconos 61940 -Pocus 65452 -Pod 53565 -PodCast 64423 -PodCasts 65170 -PodCenter 60952 -PodNova 65452 -Podcamp 63601 -Podcast 43310 -Podcaster 62066 -Podcasting 53646 -Podcasts 42430 -Podcatcher 65452 -Pode 65170 -Poder 62066 -Podiatric 58365 -Podiatrist 62331 -Podiatrists 61362 -Podiatry 55178 -Podium 57009 -Pods 56518 -Podtropolis 56827 -Podziwiajta 63419 -Poe 56200 -Poe's 62613 -Poeciliopsis 64423 -Poeddi 64905 -Poehler 57278 -Poel 64201 -Poem 51131 -Poems 48629 -Poesy 65170 -Poet 53917 -Poet's 62066 -Poetic 57696 -Poetical 64423 -Poetics 60856 -Poetry 44106 -Poets 53517 -Poeun 61940 -Poffo 63991 -Pog 64905 -Pogibonzi 63419 -Pogledaj 55877 -Pogo 58313 -Pogue 61256 -Pogue's 60238 -Pogues 63077 -Poh 63601 -Pohang 63077 -Pohl 63077 -Poi 62196 -Poiana 62762 -Poincare 62331 -Poincaré 63792 -Poindexter 60492 -Poinsettia 65170 -Point 40078 -Point's 62196 -Pointe 51680 -Pointed 60000 -Pointer 53010 -Pointers 57009 -Pointing 56050 -Pointless 59357 -Points 43531 -Poipu 64423 -Poirier 62917 -Poirot 59039 -Poise 64905 -Poised 61584 -Poison 51814 -Poisoned 62762 -Poisoning 54601 -Poisonous 60670 -Poisons 60952 -Poisson 53549 -Poisson's 59039 -Poitier 64201 -Poitiers 63792 -Poke 57923 -Pokedex 64657 -Pokemon 46123 -Poker 42298 -PokerNews 62917 -PokerPro 64201 -PokerStars 57696 -PokerTracker 64657 -Pokeradar 64905 -Pokercast 62762 -Pokerstars 61584 -Pokey 62469 -Pokhara 63077 -Poking 65452 -Pokorny 61584 -PokéCommunity 65170 -Pokédex 65452 -Pokémon 53501 -Pol 52051 -Pol'y 64423 -Pola 63792 -Polaco 65170 -Poladroid 63419 -Polak 62066 -Polamalu 63991 -Polanco 65170 -Poland 41993 -Poland's 58802 -Polanski 65170 -Polar 47363 -Polarimetric 65452 -Polaris 52164 -Polarisation 64905 -Polarity 58523 -Polarization 56518 -Polarized 56388 -Polarizer 64201 -Polarizing 63245 -Polarkreis 65452 -Polaroid 53517 -Polaroids 64657 -Polat 64423 -Pole 49440 -Polearm 62196 -Polegate 64201 -Polen 62469 -Polenta 60670 -Poles 53501 -Poli 62917 -PoliGazette 65170 -Police 39299 -Police's 65452 -Policeman 59164 -Policeman's 62917 -Policies 40727 -PoliciesHelpCompany 59848 -Policing 52622 -Policlinico 63601 -Policy 30447 -PolicyContact 62331 -PolicyGeographyNatural 65452 -PolicySecurity 65452 -PolicyTerms 62066 -Policymakers 60762 -Polina 62917 -Polio 58162 -Poliovirus 63792 -Polis 64201 -Polish 44668 -Polished 52661 -Polisher 64905 -Polishers 62196 -Polishes 62762 -Polishing 55877 -Polisi 65452 -Polistes 64905 -Polit 62196 -Politburo 65170 -Polite 60238 -Politecnico 63245 -Politic 64423 -Politica 60405 -Political 40749 -Politically 57160 -Politician 57831 -Politicians 52673 -Politicker 62917 -Politico 55934 -Politico's 62917 -Politics 36789 -Politicususa 65452 -Politiek 64423 -Politik 61152 -Politika 64423 -Politique 60952 -Politiques 62331 -Politirazzi 65452 -Polity 61472 -Polizia 65170 -Polk 50840 -Polka 52571 -Polkadot 64657 -Poll 42966 -PollDaddy 62196 -Pollack 56935 -Pollak 61818 -Pollan 62469 -Pollard 56721 -Pollen 53485 -Polley 63077 -Polling 54321 -Pollo 61362 -Pollock 56652 -Pollock's 62469 -Polls 41703 -Pollster 61940 -Pollutant 58802 -Pollutants 59630 -Pollution 48390 -Pollux 64201 -Polly 52387 -Pollyanna 65452 -Polo 48226 -Polo's 63419 -Polokwane 65452 -Polonaise 62917 -Polonia 60670 -Polos 55526 -Polska 53226 -Polski 44291 -Polskie 61051 -Polson 60157 -Poltergeist 62917 -Poly 51113 -Polyacrylamide 60238 -Polyakov 65452 -Polyaniline 64657 -Polycarbonate 57741 -Polychlorinated 65170 -Polyclonal 57084 -Polycom 58860 -Polycrystalline 61940 -Polycyclic 61584 -Polycystic 58365 -Polydor 65170 -Polyelectrolyte 65170 -Polyester 51387 -Polyethylene 56420 -Polygamy 62613 -Polygon 60000 -Polygons 65452 -Polygram 64657 -Polygraph 59848 -Polyhedron 63792 -Polyimide 65452 -Polym 60856 -Polymer 50702 -Polymerase 56862 -Polymeric 59357 -Polymerization 57831 -Polymers 54188 -Polymorphic 61051 -Polymorphism 58745 -Polymorphisms 59560 -Polymère 64905 -Polynesia 47464 -Polynesian 56110 -Polynit 65452 -Polynomial 58979 -Polynomials 62196 -Polypeptide 64201 -Polypeptides 64905 -Polyphonic 55037 -Polyphonics 61818 -Polypropylene 55906 -Polyresin 61818 -Polysaccharide 64423 -Polysomnography 64423 -Polystyrene 60238 -Polytechnic 52387 -Polytechnics 64657 -Polytechnique 61051 -Polythene 63991 -Polyunsaturated 60405 -Polyurethane 57653 -Polyvinyl 61584 -Polyvore 61584 -Polywell 62917 -Polímero 65170 -Política 58577 -Políticas 63792 -Pom 57009 -Pombo 65452 -Pome 61152 -Pomegranate 56935 -Pomegranates 64657 -Pomel 63792 -Pomerania 64657 -Pomeranian 61051 -Pomeroy 58262 -Pomfret 63991 -Pomme 64905 -Pomoc 62331 -Pomona 52765 -Pompano 55500 -Pompe 63419 -Pompei 63991 -Pompeii 58979 -Pompeo 61051 -Pompeu 57831 -Pompey 57923 -Pompidou 63077 -Pompom 61699 -Pompous 64657 -Pompton 62469 -Poms 61256 -Pon 60321 -Ponca 61699 -Ponce 56935 -Poncho 61472 -Ponchos 65170 -Pond 49308 -Ponder 60238 -Pondering 61256 -Ponderings 64905 -Ponderosa 60405 -Ponders 63601 -Pondicherry 57046 -Ponds 55793 -Pong 53847 -Poni 64657 -Ponies 58577 -Ponisi 61256 -Ponnapula 65170 -Ponoko 65170 -Pons 63077 -Ponsa 60856 -Ponsonby 61584 -Ponstel 58632 -Pont 56518 -Ponta 57160 -Ponte 56652 -Pontefract 61256 -Pontevedra 65452 -Ponti 65452 -Pontiac 45706 -Pontifical 64423 -Pontifications 64657 -Ponting 58802 -Pontius 62196 -Ponto 65170 -Pontoon 57440 -Pontotoc 61256 -Pontygwaith 64657 -Pontypool 62469 -Pontypridd 60670 -Pony 50409 -Ponytail 62469 -Ponzi 64905 -Poo 57566 -Pooch 60157 -Poodle 55793 -Poodles 60856 -Poof 64201 -Pooh 52872 -Pooh's 63991 -Pooja 58212 -Pook 64657 -Pookie 65170 -Pooky 63991 -Pool 42608 -Poole 52584 -Pooled 58262 -Pooley 63077 -Pooling 60952 -Pools 50019 -Poolside 59848 -Poon 60952 -Poona 62196 -Poonam 57923 -Poop 56935 -Poor 36236 -Poor's 54499 -Poorer 63792 -Poorest 64657 -Poorly 60000 -Poorman 62613 -Pop 41474 -Pop'n 65452 -Pop's 63245 -PopArtPlus 65452 -PopCap 62762 -PopCast 65452 -PopEater 61362 -PopMatters 63601 -PopPhoto 64657 -PopSet 38291 -PopSugar 61818 -PopWatch 61940 -PopWrap 63419 -Popbytes 62917 -Popcorn 51550 -Pope 48336 -Pope's 59702 -Popeater 65452 -Popes 62613 -Popeye 59848 -Popeyes 64201 -Popfly 54706 -Poplar 54499 -Poplin 63245 -Poplist 65452 -Popnow 59357 -Popol 63792 -Popout 64423 -Popov 62066 -Popovic 61256 -Popp 63792 -Poppa 64423 -Popped 61051 -Popper 58577 -Popper's 60856 -Poppers 62331 -Poppi 65452 -Poppies 61362 -Poppin 63991 -Popping 61256 -Poppins 59848 -Popplewell 65452 -Popponesset 63419 -Poppy 53331 -Pops 53470 -Popsicle 62917 -Popstar 63419 -Popsugar 63077 -Poptropica 61818 -Popul 60078 -Popular 33374 -PopularTV 60952 -Populares 63245 -Popularity 46520 -Populate 64905 -Populated 64423 -Population 44692 -Populations 54770 -Populi 61256 -Populism 64905 -Populist 62469 -Populus 59227 -Popup 52725 -Popups 60000 -Poquoson 64657 -Por 52280 -Porapak 64657 -Porcelain 51387 -Porch 54041 -Porches 62469 -Porcine 58262 -Porcupine 57831 -Pore 57831 -Pores 64657 -Porgy 65170 -Porirua 62762 -Pork 50285 -Porky 63601 -Porn 41391 -Pornblog 65452 -Porno 50357 -Pornographers 60670 -Pornographic 58919 -Pornography 56200 -Pornstar 54380 -Pornstars 54302 -Poros 64905 -Porosity 63419 -Porous 58523 -Porphyrin 65170 -Porphyromonas 63601 -Porque 64905 -Porras 63601 -Porridge 61256 -Porsche 47024 -Porsches 64905 -Porsenna 65452 -Port 40605 -PortConstraint 64423 -PortServer 65170 -Porta 58262 -Portability 57524 -Portable 42627 -Portables 58632 -Portada 64905 -Portadown 63077 -Portage 53970 -Portal 42060 -Portales 61051 -Portals 53010 -Porte 57609 -Ported 59164 -Portege 60492 -Porter 47218 -Porter's 59702 -Porters 62066 -Porterville 62762 -Portfolio 42413 -PortfolioImages 64657 -Portfolios 50530 -Porth 64201 -Porthos 60157 -Portia 57696 -Portico 60952 -Portillo 61051 -Portillo's 62331 -Porting 59227 -Portion 56140 -Portions 48368 -Portis 61256 -Portishead 58113 -Portland 42519 -Portland's 59560 -Portlandia 65170 -Portlet 58417 -Portlets 57876 -Portlock 60670 -Portman 55037 -Portnall 62762 -Portnoy 64905 -Porto 52521 -Portobello 57653 -Portofino 60238 -Portola 58470 -Portrait 47863 -Portraits 51060 -Portraiture 61362 -Portrush 65452 -Ports 46760 -Portslade 65452 -Portsmouth 48576 -PortsmouthBusinessSchool 64905 -Portsoy 65170 -Portugal 42457 -Portugal's 62469 -Portugese 58162 -Portugues 60238 -Portuguesa 62762 -Portuguese 44663 -Portugués 64657 -Português 42088 -Portulaca 63792 -Portuzelo 64423 -Porvoo 62331 -Pos 54041 -Posada 56827 -Pose 56388 -Posed 62066 -Poseidon 57653 -Posen 60856 -Poser 56862 -Poses 56618 -Posey 58417 -Posh 54969 -Posie 64201 -Posing 57358 -Positano 57160 -Position 44683 -Positional 62196 -Positioned 61152 -Positioners 64657 -Positioning 53109 -Positions 47683 -Positive 43259 -Positively 59774 -Positives 60078 -Positivity 64201 -Positron 59357 -Posmay 64423 -Posner 57876 -Posner's 65452 -Poss 62331 -Posse 57046 -Possess 59774 -Possessed 64201 -Possessing 60405 -Possession 53899 -Possibilities 56585 -Possibility 57482 -Possible 47297 -Possibly 51580 -Possum 60856 -Post 30110 -Post's 57046 -PostBacks 64423 -PostGlobal 60157 -PostModeChange 62917 -PostNuke 63792 -PostOpen 61256 -PostPaste 65452 -PostPoints 58212 -PostRecalc 62917 -PostSave 62762 -PostScript 51349 -PostSecret 65170 -PostSend 62762 -Postado 63991 -Postage 45594 -Postagem 62613 -Postal 42807 -Postale 64905 -Postar 62331 -Postbaccalaureate 65170 -Postback 65170 -Postbus 64201 -Postcard 51211 -Postcards 50545 -Postcode 51312 -Postcodes 64423 -Postcolonial 62066 -Postdoctoral 55849 -Poste 59848 -Posted 32265 -Posteo 58417 -Poster 43987 -Poster's 54685 -PosterLarge 65452 -PosterSmall 61940 -Posterior 56652 -Posteriori 65452 -Posters 43684 -Postfach 60238 -Postfix 58919 -Postgame 63419 -Postgrad 59357 -Postgraduate 50087 -Postgraduates 64201 -PostgreSQL 52164 -Posthumous 61472 -Posting 41687 -Postings 50758 -Postini 62196 -Postips 63991 -Postman 57876 -Postmark 63991 -Postmaster 62196 -Postmenopausal 61584 -Postmodern 59164 -Postmodernism 56618 -Postmortem 60670 -Postnatal 59164 -Poston 63419 -Postoperative 55178 -Postpartum 58262 -Postpone 65170 -Postponed 58523 -Postpones 64657 -Postponi 64905 -Postponing 63245 -Postrel 64657 -Posts 34064 -Postscript 58688 -Postseason 52635 -Postsecondary 56756 -Posttraumatic 62196 -Postural 62917 -Posture 57009 -Posturi 65452 -Postwar 61699 -Pot 49033 -PotBS 63991 -PotD 63991 -Potable 60000 -Potash 60952 -Potassium 52351 -Potato 47442 -Potatoes 52954 -Potawatomi 65170 -Poteau 63991 -Poteet 63245 -Potency 61699 -Potengi 62762 -Potent 59702 -Potential 46429 -Potentially 58113 -Potentials 59292 -Potentiation 64201 -Potenza 60952 -Pothier 64423 -Pothole 64423 -Potholes 63601 -Potion 58577 -Potions 61940 -Potlatch 63077 -Potluck 58632 -Potomac 53988 -Potosi 59923 -Potpourri 58017 -Potrero 61152 -Pots 54479 -Potsdam 58212 -Potsdamer 63419 -Potted 62762 -Potter 45804 -Potter's 58860 -Potters 59357 -Pottery 47395 -Potting 63419 -Pottoman 59292 -Potts 55906 -Pottstown 62917 -Potty 53762 -Pouca 60492 -Pouch 52387 -Pouches 54924 -Poudre 62469 -Poughkeepsie 59630 -Poul 61472 -Poulan 62331 -Poulin 64201 -Poulsbo 62613 -Poulsen 60670 -Poult 62196 -Poulter 60157 -Poulton 58017 -Poultry 50966 -Pounce 65452 -Pound 48093 -Pounded 64201 -Pounder 61940 -Pounding 61584 -Pounds 49809 -Pouplana 63792 -Pour 50476 -Poured 64423 -Pouring 61256 -Pours 63792 -Poussin 65170 -Pousti 64201 -Pout 64657 -Pov 64201 -Poverty 46304 -Povilla 63245 -Pow 57653 -PowWeb 61472 -Poway 58860 -Powder 47725 -Powdered 58802 -Powderhorn 64423 -Powders 57440 -Powdery 63792 -Powe 62613 -Powel 64905 -Powell 46301 -Powell's 52152 -Powells 63601 -Power 35836 -Power's 62469 -PowerBar 63601 -PowerBook 53581 -PowerBox 63991 -PowerBuilder 62066 -PowerCenter 65170 -PowerCharts 62331 -PowerColor 63991 -PowerConnect 64657 -PowerDVD 57440 -PowerDynamo 63601 -PowerEdge 59848 -PowerFLAT 64905 -PowerMac 60000 -PowerNetworker 61472 -PowerPC 55130 -PowerPack 61584 -PowerPak 63419 -PowerPath 57009 -PowerPoint 47304 -PowerRatings 58065 -PowerSchool 62917 -PowerSeller 51008 -PowerShares 61940 -PowerShell 58688 -PowerShot 51877 -PowerSuite 64905 -PowerSwim 61940 -Powerade 63792 -Powerball 58860 -Powerbar 65452 -Powerboat 63077 -Powerboats 62331 -Powerbook 58162 -Powercool 65170 -Powered 34496 -Powerex 64905 -Powerful 48093 -Powergel 65452 -Powerheads 63601 -Powerhouse 55849 -Powering 60157 -Powerit 64423 -Powerless 64905 -Powerlifting 59848 -Powerline 56518 -Powerlink 63601 -Powerlite 63077 -Powerman 65170 -Powerpack 65452 -Powerplant 64905 -Powerplay 63245 -Powerpoint 53630 -Powerpop 61472 -Powerpuff 60762 -Powers 49124 -Powerseller 65170 -Powershell 62196 -Powershot 54835 -Powersports 54770 -Powerstroke 57399 -Powertip 65170 -Powertrain 58365 -Powerware 65452 -Powhatan 63245 -Pownce 58523 -Powter 62469 -Powwow 63991 -Powys 55738 -Pox 62917 -Poymer 65170 -Poynter 44633 -Poynter's 52387 -Poza 61699 -Poze 62331 -Poznan 60157 -Pozo 62613 -Pp 61699 -Ppa 65452 -Ppp 64423 -Ppt 61362 -Pq 61584 -Pr 52018 -PrP 54643 -Pra 62613 -Prabhakar 63792 -Prabhu 61584 -Praca 64423 -Prachi 62331 -Pract 53581 -Practica 60952 -Practical 46840 -Practicalities 64423 -Practically 58860 -Practice 40230 -Practices 45622 -Practicing 56827 -Practicum 60405 -Practise 61584 -Practising 62613 -Practitioner 50815 -Practitioner's 62917 -Practitioners 51640 -Prada 52411 -Pradeep 59774 -Pradesh 48711 -Pradhan 62469 -Pradiptaray 61362 -Prado 58577 -Praecereus 63419 -Praeger 59357 -Praesent 64423 -Praetorian 65452 -Prag 65170 -Praga 57609 -Pragati 65452 -Prager 61051 -Pragmatic 58632 -Pragmatics 63601 -Pragmatism 65452 -Prague 48887 -Prague's 65452 -Praha 59357 -Prahran 61256 -Praia 58262 -Prairie 46915 -Prairies 60580 -Praise 49821 -Praised 63991 -Praises 58919 -Praising 62469 -Praized 64201 -Praja 65170 -Prakash 57696 -Praline 63245 -Pram 57923 -Pramod 63245 -Prams 60856 -Prana 61699 -Pranab 63419 -Prandin 64905 -Pranic 64657 -Prank 52141 -Prankers 65170 -Pranks 55992 -Prankster 65170 -Prantl 63792 -Prarie 60157 -Prasad 55963 -Prasat 64657 -Prashant 59560 -Prat 62613 -Pratap 62469 -Pratchett 59491 -Prater 62613 -Prather 64423 -Pratik 65452 -Pratt 51783 -Pratt's 65452 -Prattville 65170 -Pravachol 61152 -Pravastatin 62066 -Pravda 62917 -Praveen 59774 -Pravin 63601 -Prawn 59630 -Prawns 58632 -Prax 63419 -Praxair 64423 -Praxis 57482 -Pray 51330 -Prayer 46986 -Prayerline 64657 -Prayers 53762 -Praying 56518 -Prazosin 63792 -Praça 63991 -Pre 48975 -PreAmps 65452 -PrePrints 65452 -Preach 61699 -Preacher 57785 -Preacher's 64657 -Preachers 62196 -Preaching 56485 -Preah 63991 -Preamble 59101 -Preamp 61818 -Preamplifier 61818 -Preamps 62196 -Prebble 61256 -Preble 65170 -Precambrian 59630 -Precast 58632 -Precautionary 64201 -Precautions 55793 -Preceded 57923 -Precedence 63077 -Precedent 59923 -Preceding 62469 -Precept 64201 -Precharge 65170 -Precinct 53970 -Precincts 61256 -Precio 57741 -Precious 51229 -Precip 59227 -Precipitation 52913 -Precise 55398 -Precisely 61818 -Precision 47500 -Precisionsound 63419 -Preclinical 58979 -Preconception 63245 -Preconditioning 64201 -Precursor 57831 -Precursors 61584 -Pred 64423 -Predation 64905 -Predator 52411 -Predators 54245 -Predatory 59702 -Predefined 61584 -Predera 64905 -Predicate 64657 -Predict 55963 -Predictability 64657 -Predictable 61818 -Predicted 56200 -Predicting 55060 -Prediction 50686 -Predictions 51550 -Predictive 54499 -Predictor 59424 -Predictors 57741 -Predicts 58162 -Prednisone 60000 -Predominant 63792 -Predominantly 65170 -Predrag 64657 -Preece 64905 -Preeclampsia 63601 -Preemie 64905 -Preemption 64657 -Preemptive 61699 -Preeti 63245 -Preexisting 63792 -Pref 64905 -Prefab 62196 -Prefabricated 62613 -Prefabs 64423 -Preface 53565 -Prefect 64423 -Prefectural 61051 -Prefecture 58212 -Prefer 53779 -Preferable 65170 -Preferably 55226 -Prefered 63601 -Preference 40391 -Preferences 44785 -Preferential 60492 -Preferred 45718 -Prefers 60856 -Prefinished 65170 -Prefix 57970 -Prefixes 63991 -Preformed 64423 -Prefrontal 65452 -Prefs 59630 -Pregame 62762 -Pregnancies 61362 -Pregnancy 44321 -Pregnant 49452 -Pregnenolone 64657 -Prego 65452 -Preguntas 61051 -Preheat 55934 -Prehistoric 56262 -Prehistory 61256 -Prehospital 63991 -Preifatrwydd 63601 -Preis 62066 -Preise 53346 -Preiser 65170 -Preisvergleich 60492 -Preity 59560 -Prejudging 65452 -Prejudice 57238 -Prekindergarten 56972 -Prelim 64201 -Prelimanary 62331 -Preliminaries 62331 -Preliminary 48309 -Prelinger 60492 -Preloaded 63077 -Preloved 59164 -Prelude 52968 -Preludes 64657 -Preludio 64657 -Prem 54770 -Prema 65452 -Premade 61152 -Premarital 63991 -Premature 55037 -Premedical 63245 -Premenstrual 63991 -Premera 63245 -Premier 43012 -Premier's 59357 -PremierWest 63245 -Premiere 47413 -Premiered 60580 -Premieres 52256 -Premiers 59630 -Premiership 52546 -Premio 61256 -Premise 58065 -Premises 51157 -Premium 39876 -Premiums 57278 -Premixed 64905 -Première 59357 -Premonition 64423 -Prenatal 55274 -Prendergast 60856 -Prensa 61152 -Prentice 54519 -Prentiss 62469 -Preoperative 56827 -Preorder 59101 -Preorders 61940 -Preowned 60078 -Prep 46395 -Prepac 59491 -Prepaid 52096 -Preparation 44966 -Preparations 55348 -Preparative 62196 -Preparatory 55992 -Prepare 48964 -Prepared 49251 -PreparedStatement 65170 -Preparedness 50898 -Preparer 57741 -Preparers 65452 -Prepares 55274 -Preparing 49584 -Prepay 63601 -Prepayment 62331 -Prepositions 60000 -Prepping 63991 -Preppy 63245 -Prepress 64657 -Preprint 60238 -Preprints 60492 -Preprocessing 65170 -Preps 55766 -Prequalify 63991 -Prequel 63077 -Prequil 65452 -Prerecorded 64657 -Prerequisite 58262 -Prerequisites 57160 -Prerogative 65170 -Pres 58417 -Presale 60856 -Presario 54479 -Presb 62469 -Presbyterian 50299 -Preschool 48692 -Preschooler 56551 -Preschoolers 58212 -Preschools 54059 -Prescot 63419 -Prescott 50848 -Prescreened 63601 -Prescribe 56721 -Prescribed 56972 -Prescribing 59039 -Prescription 44150 -Prescriptions 56200 -Prescriptives 65452 -Preseason 51531 -Presence 50678 -Present 44709 -Presentation 44919 -Presentations 47410 -Presented 48305 -Presenter 57046 -Presenters 55500 -Presenting 53256 -Presently 57653 -Presents 48139 -Preservation 48609 -Preservatives 63601 -Preserve 52791 -Preserved 59848 -Preserves 57785 -Preservice 64905 -Preserving 55631 -Preset 59491 -Presets 59491 -Presiden 60856 -Presidency 53316 -President 38037 -President's 49371 -Presidente 60078 -Presidential 44074 -Presidents 51284 -Presiding 54792 -Presidio 57440 -Presidium 64657 -Presley 51909 -Presley's 63419 -Presolicitation 63792 -Presonus 62066 -Presque 60078 -Press 34121 -PressPac 62331 -PressPass 61818 -PressThink 64657 -Presse 56356 -Pressed 55684 -Pressemitteilung 63245 -Presser 62066 -Presses 55423 -Pressing 48791 -Pressley 62613 -Pressly 59923 -Pressly's 64905 -Pressman 64201 -Pressroom 58860 -Pressrow 63419 -Pressure 44470 -Pressured 62196 -Pressures 59164 -Pressurized 61940 -Presswire 59848 -Prestatyn 56827 -Prestbury 57831 -Prestige 51358 -Prestigious 57084 -Presto 58262 -Preston 48195 -Preston's 65170 -Prestwich 62762 -Prestwick 61818 -Presumably 60000 -Presumed 64201 -Presumptive 63601 -Presynaptic 64423 -Pret 62613 -Pretec 64657 -Preteen 58577 -Pretend 55657 -Pretender 62762 -Pretenders 59292 -Pretending 62917 -Preto 63792 -Pretoria 53952 -Pretorius 64657 -Pretreatment 57046 -Pretrial 61152 -Prettiest 62196 -Pretty 46454 -Pretzel 60321 -Pretzels 60952 -Prev 41996 -PrevRow 64423 -Prevacid 61818 -Prevage 65452 -Prevail 61940 -Prevailing 61818 -Prevails 64905 -Prevalence 51312 -Prevención 65452 -Prevent 50192 -Preventable 64905 -Preventative 59923 -Prevented 64905 -Preventing 53256 -Prevention 43685 -Preventive 51953 -Preventives 59424 -Prevents 57923 -Prevesti 64905 -Preview 40865 -PreviewDocLink 62469 -PreviewParentDoc 62613 -Previewing 62917 -Previews 45495 -Previous 35281 -PreviousNext 59491 -Previously 51131 -Prevod 63077 -Prevodi 63419 -Prevost 61584 -Prevx 58577 -Prey 55014 -Preys 61051 -Prez 58919 -Prešeren 62469 -Pri 62066 -Price 34603 -Price's 60856 -PriceGrabber 56050 -PriceRunner 55877 -Priced 51052 -Priceless 51463 -Priceline 55578 -Pricelist 60238 -Pricerunner 62613 -Prices 37998 -Pricewatch 61940 -PricewaterhouseCoopers 58065 -Pricey 60580 -Prichard 62331 -Pricing 42827 -Prick 62917 -Prickly 63245 -Priddis 63077 -Priddy 63991 -Pride 46684 -Pridgen 64657 -Priest 49452 -Priest's 63419 -Priester 61699 -Priestess 61472 -Priesthood 63077 -Priestley 61362 -Priestly 63991 -Priests 54946 -Prieto 60856 -Prigoff 64905 -Prilleltensky 65452 -Prilosec 64201 -Prim 60762 -Prima 54519 -Primacy 65170 -Primaforce 64201 -Primal 54643 -Primaries 60952 -Primarily 58470 -Primark 64423 -Primary 40283 -Primate 59101 -Primates 60157 -Primatol 61584 -Primavera 61362 -Prime 43060 -Prime's 64423 -PrimeCB 59164 -PrimeTime 54706 -Primed 61940 -Primer 51340 -Primera 54770 -Primers 56231 -Primestar 64201 -Primetime 51670 -Primeval 64201 -Primi 58688 -Primigi 65452 -Priming 61472 -Primitive 56551 -Primitives 62762 -Primm 64905 -Primo 55906 -Primordial 62331 -Primrose 56388 -Primus 57524 -Prin 62917 -Prince 42373 -Prince's 59292 -Princes 55154 -Princesa 63601 -Princess 43445 -Princess's 64201 -Princesse 64657 -Princesses 59424 -Princeton 47668 -Princeton's 64905 -Princeville 63419 -Principal 45657 -Principal's 59424 -Principality 61256 -Principally 65170 -Principals 54302 -Principe 49417 -Principia 62066 -Principle 52725 -Principled 64905 -Principles 46120 -Prine 64905 -Prineville 63419 -Pringle 58212 -Pringles 63419 -Prins 60670 -Print 33266 -PrintCalendar 64423 -PrintFramed 63991 -PrintHow 64423 -PrintLarge 63419 -PrintMini 61472 -PrintNet 61940 -Printable 38564 -Printables 56518 -Printed 46048 -Printer 37296 -Printers 43755 -Printhead 61152 -Printheads 65170 -Printing 43815 -Printingtalk 65452 -Printmaking 61152 -Printout 63991 -Prints 44137 -Printwheels 64905 -Prinz 58802 -Prinze 61051 -Prion 61362 -Prior 44703 -Priori 62196 -Priorities 52712 -Prioritization 63792 -Prioritize 59101 -Priority 44742 -Priors 65170 -Priory 54264 -Prisca 61940 -Priscilla 54499 -Prisha 65170 -Prisionero 63245 -Prism 53211 -Prisma 60670 -Prismatic 61472 -Prison 47603 -Prisoner 54835 -Prisoner's 61362 -Prisoners 55992 -Prisons 55578 -Pristine 59774 -Priston 62613 -Pritam 62917 -Pritchard 57199 -Pritchett 61152 -Prithviraj 64201 -Pritzker 64905 -Prius 52584 -PriusChat 63419 -Privacidad 62331 -Privacidade 65170 -Privacy 29066 -Privat 62613 -Private 37231 -Privateer 63601 -Privately 53438 -Privatisation 62196 -Privatization 56452 -Privatizing 64423 -Privette 64657 -Privilege 55037 -Privileged 59039 -Privileges 57318 -Privo 61051 -Privy 60078 -Prix 49130 -PrixMoinsCher 52858 -Priya 57741 -Priyanka 56388 -Prize 46097 -Prizes 50206 -Prizm 62331 -Pro 36784 -Pro's 60580 -ProActive 59491 -ProBlogger 62469 -ProBoards 60405 -ProCharger 63077 -ProCite 58113 -ProClarity 60762 -ProClip 63419 -ProCoder 63991 -ProCurve 61256 -ProFile 61940 -ProFlowers 64423 -ProKat 63419 -ProLiant 54226 -ProLine 64201 -ProLogis 62762 -ProMinerals 64905 -ProPolymer 63991 -ProQuest 47474 -ProSafe 61940 -ProSense 63601 -ProSound 64201 -ProStar 63991 -ProStores 48595 -ProStreet 59491 -ProTouch 64201 -Proactiv 63991 -Proactive 52858 -Prob 63991 -Probabilistic 56293 -Probabilities 61051 -Probability 51511 -Probable 56388 -Probables 61472 -Probably 49168 -Probate 48309 -Probation 52423 -Probationary 63601 -Probe 38131 -Probenecid 63991 -Probert 63991 -Probes 54879 -Probing 58860 -Probiotic 62762 -Probiotics 59491 -Probl 60321 -Problem 42315 -Problematic 64657 -Probleme 63792 -Problems 43271 -Probout 62066 -Probst 60952 -Probus 64201 -Proc 49999 -Procedural 56791 -Procedure 46120 -Procedures 45662 -Proceed 49602 -Proceeding 55766 -Proceedings 41895 -Proceeds 54792 -Procesamiento 64905 -Proceso 63245 -Process 41257 -Processed 56388 -Processes 49028 -Processing 42948 -Procession 62066 -Processor 46742 -Processors 48923 -Processus 63991 -Procharger 61818 -Procite 64905 -Proclaimers 65452 -Proclamation 57084 -Proclamations 61362 -Proclear 65452 -Procol 65170 -Procrastination 57696 -Procter 55014 -Proctor 55130 -Procurement 47126 -Prod 56200 -Prodi 64657 -Prodigal 61152 -Prodigy 55014 -Prodotti 61584 -Prodrive 65170 -Prods 65170 -Producción 64905 -Produce 52268 -Produced 49676 -Producer 45255 -Producer's 61818 -Producers 50499 -Produces 57318 -Producing 54519 -Product 33623 -Product's 62331 -Production 40922 -ProductionHUBTV 64201 -ProductionPax 62066 -Productions 44727 -Productions's 64657 -Productionz 63792 -Productive 58417 -Productivity 47522 -Producto 63601 -Productos 58860 -Products 33282 -ProductsBiology 61472 -ProductsHub 63077 -ProductsMedicine 61472 -Produit 62762 -Produits 61940 -Produkt 65170 -Produkte 62066 -Produkter 63077 -Produtos 64423 -Proenza 63077 -Prof 51434 -ProfLupin 64657 -Profane 64201 -Profanity 59164 -Profesional 62917 -Profesjonalne 63245 -Profesor 65452 -Profession 54685 -Professional 37346 -Professional's 60856 -Professionalism 59424 -Professionally 56140 -Professionals 43563 -Professioneller 63419 -Professions 49596 -Professor 41810 -Professor's 65452 -Professorial 65452 -Professors 54439 -Professorship 63792 -Proffitt 61818 -Profi 64905 -Profibus 64423 -Proficiency 53052 -Proficient 54664 -Profil 55738 -Profile 31382 -ProfileBack 61940 -ProfileGalleryFavesJournal 57970 -ProfileGalleryPrintsFavesJournal 62917 -ProfileView 62469 -Profiled 64905 -Profiler 59630 -Profiles 39409 -Profiling 54519 -Profit 47691 -Profitability 57440 -Profitable 46855 -Profiting 65170 -Profits 52423 -Profle 56293 -Proform 62917 -Proforma 63077 -Profound 62469 -Profs 61152 -Profuse 65170 -Prog 53565 -ProgId 64201 -Progamming 64657 -Progenitor 63991 -Progeny 64657 -Progesterone 57482 -Progestin 64905 -Progestins 64201 -Progetto 65170 -Prognosis 56420 -Prognostic 56618 -Progr 64657 -Program 35939 -Program's 60157 -ProgramData 64657 -Programa 59292 -Programas 62469 -Programação 62917 -Programe 63792 -Programing 62762 -Programm 64657 -Programmable 52954 -Programmatic 58979 -Programmatically 63792 -Programmation 65452 -Programme 43345 -Programme's 64201 -Programmed 58632 -Programmer 51570 -Programmer's 59292 -Programmers 53392 -Programmes 46025 -Programming 40827 -ProgrammingTalk 64201 -Programs 39016 -Progress 44725 -ProgressBar 62613 -Progression 55299 -Progressions 64201 -Progressive 46840 -Progressives 62469 -Progresso 63419 -Prohibit 64423 -Prohibited 55526 -Prohibiting 65170 -Prohibition 56420 -Prohibitions 63991 -Proietti 64905 -Proj 62469 -Project 34098 -Project's 60856 -ProjectLink 62331 -Projected 54479 -Projectile 59702 -Projectiles 65452 -Projecting 62613 -Projection 50136 -Projections 55348 -Projector 49201 -Projectors 48473 -Projects 40037 -Projekt 60856 -Projet 64423 -Projo 65170 -Prokop 63792 -Prolactin 63991 -Prolapse 63991 -Proliant 59227 -Prolif 63601 -Proliferation 56021 -Proliferative 62762 -Prolific 59227 -Proline 60157 -Prolog 59164 -Prologic 65452 -Prologue 55423 -Prolonged 56687 -Prom 49899 -Promax 64905 -Promega 60856 -Promenade 56899 -Promethean 65452 -Prometheus 57046 -Promila 61940 -Prominence 62196 -Prominent 55037 -Promiscuous 64201 -Promise 49113 -Promised 55992 -Promises 54835 -Promising 56324 -Promisor 64657 -Promissory 61256 -Promo 47187 -Promontory 64905 -Promos 54770 -Promote 46477 -Promoted 43401 -Promoter 53662 -Promoter's 64201 -Promoters 56021 -Promotes 55084 -Promoting 50343 -Promotion 44982 -Promotional 46017 -Promotions 44363 -Prompt 53549 -Prompted 65170 -Prompts 48677 -Proms 51793 -Prone 62196 -Prong 61362 -Pronk 63991 -Pronounce 62762 -Pronounced 63792 -Pronouns 62613 -Pronto 50726 -Pronunciation 51113 -Pronunciations 56200 -Prony 64657 -Pronóstico 64423 -Proof 47955 -Proofing 57566 -Proofreaders 64423 -Proofreading 61584 -Proofs 58017 -Prop 50171 -Propaganda 55226 -Propagating 65170 -Propagation 53581 -Propane 53361 -Propecia 56721 -Propel 60856 -Propelled 64423 -Propeller 51650 -Propellerhead 61256 -Propellers 61472 -Propels 62066 -Propensity 65170 -Proper 50108 -Properly 56899 -Properties 41273 -Property 36256 -PropertyFinder 63077 -PropertyTools 65170 -Propertyfinder 60670 -Propet 63792 -Prophecies 60856 -Prophecy 54283 -Prophet 51330 -Prophet's 64905 -Prophetic 59292 -Prophets 57358 -Prophylactic 61362 -Prophylaxis 60580 -Propiedad 60157 -Propo 63792 -Propofol 64657 -Propolis 64201 -Proponents 60000 -Proporta 65170 -Proportion 57160 -Proportional 53153 -Proportions 63077 -Proposal 47964 -Proposals 49789 -Propose 58802 -Proposed 46491 -Proposes 60000 -Proposing 63601 -Proposition 50424 -Propositions 60157 -Propping 63419 -Propranolol 63792 -Proprietary 53988 -Proprietor 61051 -Proprietors 61940 -Proprietorship 62613 -Propriété 58919 -Props 52164 -Propuestas 65452 -Propulsion 53970 -Propylene 62762 -Pros 48148 -Proscar 61362 -Prosciutto 63792 -Prose 54992 -Prosecuting 61699 -Prosecution 55684 -Prosecutions 63419 -Prosecutor 55323 -Prosecutor's 61699 -Prosecutors 56420 -Proserpine 63792 -Prosi 65452 -Prosodic 65170 -Prosopis 62917 -Prospect 48796 -Prospecting 59923 -Prospective 49262 -Prospector 58470 -Prospects 51275 -Prospectus 54151 -Prospectuses 63245 -Prosper 59774 -Prosperity 54540 -Prospero 64657 -Prosperous 63601 -Prosser 60321 -Prost 64201 -Prostaglandin 59357 -Prostaglandins 63792 -Prostate 49959 -Prostatectomy 62469 -Prostatic 61152 -Prostatitis 64657 -Prosthesis 61699 -Prosthet 60492 -Prosthetic 58802 -Prosthetics 61699 -Prosthodontics 61472 -Prostitute 63419 -Prostitutes 64657 -Prostituting 63792 -Prostitution 57278 -Prot 61256 -Protagonist 63991 -Protaras 63245 -Protea 58417 -Protease 60000 -Proteases 65452 -Proteasome 65170 -Protec 65170 -Protección 63077 -Protech 59923 -Protect 47054 -ProtectReaders 62066 -Protectants 64657 -Protected 49201 -Protecting 49405 -Protection 39894 -Protections 61699 -Protective 48980 -Protector 51690 -Protectorate 63601 -Protectors 52387 -Protects 56293 -Protege 59560 -Protein 32714 -Proteinase 65452 -Proteins 49302 -Proteolytic 62762 -Proteome 58577 -Proteomic 63991 -Proteomics 54879 -Proterozoic 61472 -Protest 52791 -Protestant 53182 -Protestantism 63419 -Protestants 58577 -Protesters 58365 -Protesting 62331 -Protestors 64423 -Protests 55793 -Proteus 58802 -Proteína 62917 -Prothonotary 65170 -Prothrombin 64201 -Proto 58365 -Protocol 46432 -Protocolo 64423 -Protocols 47577 -Protoform 65452 -Proton 53712 -Protonation 63419 -Protons 63419 -Protos 63601 -Prototype 51856 -Prototypes 58577 -Prototyping 57785 -Protozoa 61472 -Protozoan 65452 -Protx 63077 -Protégé 60952 -Protéine 62196 -Proud 48496 -Proudly 52107 -Proudmoore 58802 -Proudmore 64657 -Proulx 63991 -Proust 58745 -Prout 63601 -Prov 64201 -Provan 65170 -Prove 54360 -Proved 63077 -Proven 51550 -Provenance 58212 -Provencal 64201 -Provence 54857 -Provera 65170 -Proverb 58688 -Proverbs 56293 -Proves 56231 -Provide 44796 -Provided 45531 -Providence 49092 -Provident 56618 -Provider 44734 -Provider's 60321 -Providers 45540 -Provides 46437 -Providing 48269 -Proview 61818 -Provigil 60238 -Province 47031 -Provinces 54857 -Provincetown 59424 -Provincia 62331 -Provincial 50492 -Provincially 64657 -Proving 54207 -Provision 51184 -Provisional 53695 -Provisioner 63792 -Provisioning 56551 -Provisions 52818 -Proviso 63792 -Provo 55552 -Provocateur 61051 -Provocative 61818 -Provoking 65170 -Provolone 65452 -Provost 54114 -Provost's 61256 -Prowl 60000 -Prowler 60856 -Prowse 65452 -Proxies 61051 -Proxifier 64657 -Proxim 65452 -Proxima 62196 -Proximal 60405 -Proximity 52845 -Proxtronics 61152 -Proxy 50277 -Proyecto 64201 -Proyectos 65170 -Prozac 54835 -Prt 64657 -Prudence 60856 -Prudential 52472 -Prudhoe 63245 -Prue 59630 -Prueba 62196 -Pruebas 63601 -Pruett 63419 -Pruitt 58688 -Prune 61256 -Pruner 62917 -Prunes 63991 -Pruning 56518 -Prunny 65452 -Prunus 62196 -Prussia 57199 -Prussian 59491 -Pry 62613 -Pryce 63245 -Pryde 64201 -Prydz 62613 -Pryor 55299 -Przegl 65452 -Przystanek 63991 -Présentation 61584 -Président 65452 -Prévention 65170 -Príncipe 57318 -Príobháideacht 65452 -Próxima 64657 -Ps 56518 -PsA 59630 -Psa 62917 -Psalm 53377 -Psalms 55604 -PsbS 62762 -Pseudo 60580 -Pseudoephedrine 64905 -Pseudomonas 52484 -Pseudophakic 65170 -Pseudoregma 63245 -Psi 57160 -Psikhiatr 64657 -Psion 61699 -Psoriasis 55631 -Psoriatic 63419 -Psp 55423 -Pst 65452 -PstI 59774 -Psu 65170 -Psy 58365 -PsycINFO 56791 -PsycNET 62613 -Psych 54078 -PsychCentral 65452 -Psyche 61256 -Psychedelic 54479 -Psychiat 59101 -Psychiatr 55934 -Psychiatric 50108 -Psychiatrist 57358 -Psychiatrists 60321 -Psychiatry 46557 -Psychic 51963 -Psychics 60762 -Psycho 54399 -Psychoanal 61699 -Psychoanalysis 58688 -Psychoanalytic 57785 -Psychodynamic 62917 -Psychogeriatrics 64423 -Psychol 52435 -Psychological 48975 -Psychologie 64201 -Psychologies 60321 -Psychologist 54188 -Psychologists 57399 -Psychology 44175 -Psychometric 61584 -Psychopathic 65452 -Psychopathology 62762 -Psychopathy 65452 -Psychopharmacol 64201 -Psychopharmacology 61472 -Psychophysics 64657 -Psychophysiology 61940 -Psychosis 62196 -Psychosocial 55934 -Psychosom 61472 -Psychosomatic 62066 -Psychother 64201 -Psychotherapist 63245 -Psychotherapy 53010 -Psychotic 60000 -Psyllium 61472 -Psystar 60492 -Psytrance 62917 -Pt 47883 -PtH 64201 -PtP 64905 -PtSi 62613 -Ptarmigan 64423 -PtdIns 63419 -Pte 52484 -Pterygota 65452 -Ptolemy 63991 -Pts 51358 -Pty 46269 -Pu 56420 -Pua 65452 -Pub 38769 -PubChem 38277 -PubCon 50484 -PubCrawler 62196 -PubMed 35848 -Pubblicato 65452 -Puberty 60580 -Pubic 61940 -Publ 61152 -Public 32031 -Public's 64201 -PublicAccess 64201 -Publica 61699 -Publicaciones 62917 -Publicado 61152 -Publicar 62762 -Publication 40022 -Publications 37575 -Publicidad 62613 -Publicis 64905 -Publicist 62917 -Publicitate 65170 -Publicity 51721 -Publicité 64905 -Publicize 64905 -Publicly 55934 -Publikationen 62066 -Publique 64905 -Publish 47698 -Published 39171 -Publisher 41066 -Publisher's 52399 -Publishers 42435 -Publishes 60238 -Publishing 39904 -Publius 61152 -Publix 59357 -Pubmed 58577 -Pubs 47518 -Pubsulike 63991 -Puc 63792 -Pucca 62331 -Pucci 61152 -Puccini 60580 -Puccio 62917 -Puch 65452 -Puchi 65170 -Puck 55684 -Puck's 64423 -Pucker 64657 -Puckett 61362 -Pucks 64905 -Pudding 53796 -Puddings 63245 -Puddle 58577 -Pudong 58802 -Pudsey 60157 -Puebla 59848 -Pueblo 52699 -Pueblos 63245 -Puello 65452 -Puente 58162 -Puerco 61472 -Puerta 62196 -Puerto 41825 -Puff 55500 -Puffball 64905 -Puffer 61584 -Puffin 58919 -Puffs 57785 -Puffy 61362 -Pug 57399 -Puget 53066 -Pugh 57970 -Puglia 59702 -Pugs 61362 -Pugster 64201 -Pui 65452 -Puig 61362 -Puja 59774 -Pujols 60670 -Puke 60078 -Pukey 65170 -Pula 61256 -Pulaski 54706 -Pulau 63245 -Puli 64905 -Pulitzer 55552 -Pull 48269 -Pulled 57238 -Pullen 58262 -Puller 64905 -Pullers 63601 -Pulley 57566 -Pulleys 59164 -Pulliam 64201 -Pullin 63077 -Pulling 55631 -Pullman 55849 -Pullout 62469 -Pullover 56140 -Pullovers 65452 -Pulls 55552 -Pulmonary 49789 -Pulmonology 60580 -Pulp 51721 -Pulpit 61472 -Pulsar 57696 -Pulsars 64905 -Pulse 45777 -Pulsed 58470 -Pulser 63792 -Pulses 57970 -Pulte 61699 -Pulteney 64423 -Pulveli 65170 -Pulver 65170 -Pum 65452 -Puma 51600 -Pumas 61152 -Pumice 63077 -Pump 46162 -Pumped 60670 -Pumper 61818 -Pumping 55711 -Pumpkin 46818 -Pumpkins 53613 -Pumpman 60405 -Pumps 47815 -Pun 60405 -PunBB 60000 -Puna 61362 -Punch 49657 -PunchMuch 65452 -Punchbowl 64657 -Punched 63419 -Punches 57440 -Punching 60238 -Punctuation 58017 -Puncture 61818 -Pundit 52858 -Pundits 54924 -Pune 50750 -Punggol 59292 -Punish 61362 -Punished 62469 -Punisher 57923 -Punishes 64423 -Punishing 64905 -Punishment 44401 -Punitive 63991 -Punjab 51996 -Punjabi 51193 -Punk 47776 -Punk'd 63991 -Punk's 65452 -PunkBuster 64905 -Punks 60670 -Punky 63419 -Puno 61940 -Punsalan 65452 -Punt 59424 -Punta 53597 -Punter 62917 -Punting 64423 -Punto 56756 -Puntos 65170 -Puntúa 65452 -Pup 57524 -Pupil 54264 -Pupils 55107 -Pupp 62066 -Puppet 53729 -Puppetry 64657 -Puppets 56170 -Puppia 64657 -Puppies 50185 -Puppy 48851 -Pups 59039 -Pur 58262 -Pura 57524 -Purasia 63792 -Purbeck 58017 -Purcell 57358 -Purcellville 62331 -Purchase 40058 -Purchased 53109 -Purchaser 54540 -Purchasers 60670 -Purchases 50439 -Purchasing 46610 -Purdon 64201 -Purdue 49268 -Purdue's 61051 -Purdy 58632 -Pure 45135 -PureAV 63601 -PureDisk 59848 -PureMobile 63419 -PureStock 61940 -PureVideo 61818 -PureVolume 59101 -Purebred 57524 -Puree 62917 -Purell 63792 -Purely 60856 -Puremagnetik 65452 -Pureology 64905 -Purestock 65452 -Purfleet 63419 -Purgatorio 65452 -Purgatory 59630 -Purge 61818 -Purges 60000 -Puri 57440 -Purification 51877 -Purified 55037 -Purifier 56972 -Purifiers 55604 -Purify 64423 -Purifying 58802 -Purim 59923 -Purina 60580 -Purine 63077 -Purinergic 64423 -Puritan 57358 -Puritans 62066 -Purity 55793 -Purkinje 59292 -Purl 64657 -Purley 61940 -Purnell 65170 -Puro 64905 -Purohit 64657 -Purolator 63077 -Purple 45448 -PurpleMoo 62613 -Purpose 46859 -Purposes 53346 -Purrfect 64905 -Purse 51804 -Purser 54479 -Purses 54792 -Pursuant 51867 -Pursue 58632 -Pursues 65452 -Pursuing 59702 -Pursuit 52472 -Pursuits 57524 -Purves 65170 -Purvis 62066 -Purépecha 65170 -Pusan 61256 -Pusat 61818 -Push 48741 -Pushback 65170 -Pushbutton 64905 -Pushchair 64905 -Pushchairs 62066 -Pushed 56756 -Pusher 61472 -Pushes 58979 -Pushing 54749 -Pushkar 62331 -Pushy 62762 -Puss 64201 -Pussies 62613 -Pussy 48274 -PussyCat 63601 -Pussycat 50439 -Pussylips 63792 -Pusu 60238 -Put 43135 -PutInFolder 63601 -Puta 64905 -Putative 60670 -Putco 59164 -Putin 54835 -Putin's 61152 -Putman 64905 -Putnam 53153 -Putnam's 65452 -Putney 58632 -Putonghua 65452 -Putra 64423 -Putri 60762 -Puts 53581 -Putt 58065 -Puttar 63991 -Putter 56791 -Putters 58919 -Putting 50081 -Putts 65170 -Putty 60952 -Putumayo 64657 -Putz 64657 -Puy 64905 -Puyallup 60492 -Puyo 65170 -Puyol 62917 -Puzzle 46540 -Puzzled 60762 -Puzzler 64423 -Puzzles 48076 -Puzzling 65170 -PvE 58162 -PvP 52118 -Pvc 63601 -Pvp 64201 -Pvt 52175 -Pw 62762 -PwC 59702 -Pwd 65170 -Pweg 65452 -Pwllheli 65452 -Pwnage 58802 -Pwned 63245 -Pwr 59491 -Px 61584 -Py 63991 -PyObject 61256 -PySoy 64905 -Pyaar 56618 -Pyar 59424 -Pycnogenol 62331 -Pye 61472 -Pygmies 64905 -Pygmy 62469 -Pyjamas 60238 -Pyke 60952 -Pyle 57160 -Pylon 64423 -Pylypow 60405 -Pym 62469 -Pynchon 64423 -Pyongyang 60238 -Pyramid 51931 -Pyramidal 65452 -Pyramids 59101 -Pyrat 64423 -Pyrenean 65170 -Pyrenees 58313 -Pyrex 59630 -Pyridine 63245 -Pyrite 65452 -Pyrmont 62762 -Pyro 59702 -PyroBlazer 64423 -Pyrococcus 65170 -Pyrolysis 62613 -Pyros 65170 -Pyrotechnic 65170 -Pyrotechnics 62469 -Pyruvate 60856 -Pyschol 63792 -Pythagorean 65452 -Pythian 56140 -Python 47402 -Python's 60580 -Pythons 61699 -Página 56972 -Páginas 63419 -Pânico 65170 -Pär 64657 -På 58212 -Pérez 60157 -Péter 61256 -Pública 64905 -Q 38136 -Q's 60000 -QA 50461 -QAM 61256 -QANTAS 62917 -QAO 61818 -QAP 64657 -QAR 64201 -QARANC 64905 -QATAR 60157 -QB 50256 -QBE 64657 -QBnoYouko 62917 -QBs 61940 -QC 48944 -QCA 56862 -QCD 55526 -QCM 63991 -QCP 61940 -QCRPA 65170 -QCString 59039 -QD 57399 -QDI 64657 -QDs 58802 -QE 59560 -QED 59560 -QEII 65170 -QELS 61818 -QF 52521 -QH 63077 -QHD 62331 -QHZ 64201 -QI 57278 -QIAGEN 65452 -QINGDAO 64423 -QJ 52387 -QL 60492 -QLD 47050 -QLINK 60157 -QLogic 62469 -QM 58113 -QMFL 64423 -QMJHL 63245 -QML 62469 -QMO 65170 -QMS 59702 -QNAP 61699 -QNX 57609 -QName 65170 -QO 59848 -QOD 64657 -QOH 57318 -QOL 59424 -QOS 64423 -QP 60952 -QPF 65170 -QPLAPT 64657 -QPM 63245 -QPOs 63792 -QPP 62762 -QPR 55906 -QPS 65170 -QPSK 62331 -QQ 59630 -QR 54749 -QRS 56585 -QRZ 63419 -QS 56551 -QSA 62917 -QSAR 62066 -QSC 59774 -QSL 62469 -QSO 58688 -QSOs 60000 -QSPRs 62917 -QSR 61584 -QSnap 65452 -QString 63419 -QT 52399 -QTEK 63245 -QTL 62917 -QTP 63077 -QTR 64201 -QTY 52982 -QTc 62196 -QTd 61051 -QU 62331 -QUAD 56652 -QUAIL 65452 -QUAKE 61051 -QUALCOMM 60000 -QUALIFICATION 63245 -QUALIFICATIONS 57482 -QUALIFIED 61362 -QUALIFY 64905 -QUALIFYING 63792 -QUALITY 50178 -QUANTA 62917 -QUANTITATIVE 64201 -QUANTITIES 62762 -QUANTITY 55274 -QUANTUM 57876 -QUARRY 64657 -QUART 65452 -QUARTER 55766 -QUARTERLY 58919 -QUARTET 64201 -QUARTZ 61584 -QUATTRO 63077 -QUE 51396 -QUEBEC 62066 -QUEEN 54706 -QUEEN'S 63792 -QUEENS 59923 -QUEENSLAND 58979 -QUEER 64657 -QUENTIN 64905 -QUERFURT 61940 -QUERIES 63792 -QUERY 61472 -QUEST 60405 -QUESTION 53746 -QUESTIONNAIRE 57524 -QUESTIONS 51804 -QUEZON 62613 -QUICK 47163 -QUICKLY 64905 -QUIERO 64423 -QUIET 61472 -QUILT 65452 -QUILTING 60000 -QUINCEY 64657 -QUINCY 61699 -QUINN 63245 -QUIT 61699 -QUITE 64201 -QUIZ 59227 -QUIZZES 62917 -QUOTATION 65170 -QUOTATIONS 63245 -QUOTE 46912 -QUOTES 55631 -QURAN 64423 -QUS 59424 -QUT 60078 -QV 62331 -QVC 54581 -QVGA 58745 -QVMT 60952 -QW 60238 -QWERTY 56756 -QWeekend 62331 -QX 63792 -QZ 56652 -Qa 64423 -Qables 64905 -Qaboos 65170 -Qader 65452 -Qaeda 52699 -Qaeda's 62613 -Qandah 61818 -Qandil 62066 -Qantas 48034 -Qashqai 63077 -Qatar 45354 -Qatar's 64905 -Qatargas 61152 -Qatari 61256 -Qawwali 61699 -Qazi 63792 -Qbank 64201 -Qc 64657 -Qdoba 65452 -Qi 55552 -Qiagen 63077 -Qian 59560 -Qiang 61362 -Qiao 60952 -Qibliyah 61940 -Qigong 63077 -Qik 59560 -Qiks 62331 -Qin 56618 -QinetiQ 65452 -Qing 57923 -Qingdao 57876 -Qinghai 61256 -Qiong 65170 -Qipao 65452 -Qiraji 63245 -Qiu 60321 -Qld 54399 -Qn 64423 -Qo 65170 -QoL 62762 -QoS 53095 -Qos 65170 -Qosmio 62469 -Qrtrly 63245 -Qs 60580 -Qt 56585 -Qtek 56585 -Qtr 50249 -Qty 47811 -Qu 60405 -Qua 63991 -Quack 59848 -Quackenbush 64423 -Quacker 65170 -Quad 47972 -Quadband 65170 -Quadra 58417 -Quadrangle 63792 -Quadrangles 63991 -Quadrant 57609 -Quadratec 64201 -Quadratic 60321 -Quadrature 63077 -Quadro 58113 -Quadruple 59424 -Quadrupole 62196 -Quads 58860 -Quaesitor 64905 -Quagmire 63991 -Quai 60952 -Quaid 60762 -Quail 55934 -Quake 51521 -QuakeLight 64201 -Quaker 54321 -Quakers 58802 -Quakertown 63991 -Qual 58802 -Qualcomm 57566 -Quali 65170 -Qualico 62613 -Qualicoat 64657 -Qualicum 64201 -Qualification 52141 -Qualifications 50094 -Qualified 45650 -Qualifier 56231 -Qualifiers 58470 -Qualifies 56756 -Qualify 57122 -Qualifying 52845 -Qualitas 64905 -Qualitative 52661 -Qualities 59039 -Quality 38572 -QualityDist 63077 -Qualité 64657 -Qualls 64423 -Qualsevol 64657 -Quam 64657 -Quan 59164 -Quand 61940 -Quando 59424 -Quang 59848 -Quant 59923 -Quanta 62762 -Quantaray 62469 -Quantcast 39198 -Quantic 64423 -Quantico 61584 -Quantification 56618 -Quantified 56140 -Quantifying 60405 -Quantitation 59357 -Quantitative 49458 -Quantities 57009 -Quantity 45624 -Quantization 61940 -Quantum 45149 -Quanzhou 64423 -Quarantine 52198 -Quark 55552 -QuarkXPress 58523 -Quarles 64423 -Quarries 60762 -Quarry 53865 -Quarrying 62331 -Quart 56687 -Quarta 63419 -Quarter 43377 -Quarterback 57566 -Quarterbacks 63245 -Quarterfinals 60580 -Quarterly 45725 -Quartermaster 54114 -Quarters 54096 -Quartet 50949 -Quartets 61818 -Quartier 63419 -Quartile 63991 -Quartus 62331 -Quartz 51358 -Quasar 61051 -Quasi 61699 -Quaternary 56756 -Quatre 62331 -Quatro 60856 -Quattro 53746 -Quay 52584 -Quayle 61818 -Quays 60952 -Quayside 61699 -Que 50718 -Queanbeyan 61051 -Quebec 43207 -Quebec's 65170 -Quebecor 62917 -Quechee 62196 -Quechua 60405 -Quedgeley 63991 -Queen 42101 -Queen's 49789 -Queena 63792 -Queenie 63991 -Queenoftab 58365 -Queens 46953 -Queensboro 64657 -Queensbury 64657 -Queensferry 64423 -Queensland 44692 -Queensland's 61051 -Queenslanders 63792 -Queensryche 64423 -Queenston 65170 -Queenstown 55766 -Queensway 61584 -Queer 54519 -QueerSighted 64905 -Queers 65452 -Queerty 65170 -Quel'Danas 60238 -Quel'Thalas 64201 -Quel'dorei 61051 -Quelle 63419 -Quem 62613 -Quench 60157 -Quenching 60492 -Quentin 53470 -Quenya 64657 -Quepasa 64201 -Quercus 58745 -Queries 48975 -Query 47559 -QueryAccess 64423 -QueryAccessPrivileges 63991 -QueryAccessRoles 63991 -QueryAddToFolder 65452 -QueryClose 61256 -QueryDragDrop 64423 -QueryEntryResize 65452 -QueryModeChange 63077 -QueryOpen 61472 -QueryPaste 65452 -QueryRecalc 61256 -QuerySave 63245 -QuerySend 63245 -Querying 61940 -Quesada 65452 -Quesadilla 65452 -Quesadillas 65170 -Quesnel 64657 -Quest 45285 -Questa 63245 -Quester 65170 -Questex 64657 -Questia 51560 -Questia's 64657 -Question 39180 -Questionable 60492 -Questionaire 65170 -Questioned 58017 -Questioner's 53167 -Questioning 59164 -Questionnaire 48609 -Questionnaires 58470 -Questions 36947 -Questo 65170 -Questor 63792 -Quests 51087 -Quethos 65452 -Quetinho 65452 -Quetta 62469 -Quetzal 62196 -Quetzaltenango 65452 -Queue 49972 -Queueing 58979 -Queues 59848 -Queuing 58632 -Quezon 54360 -Qui 57318 -Quiche 61472 -Quick 35695 -QuickBooks 51920 -QuickCam 61152 -QuickClean 65170 -QuickFacts 65170 -QuickFind 63245 -QuickLinks 60670 -QuickList 40596 -QuickLive 65452 -QuickMix 54664 -QuickSearch 60492 -QuickStart 62762 -QuickStats 65452 -QuickTime 49141 -QuickTimeKirk 65452 -Quickbooks 60078 -Quickcam 63601 -Quicken 52351 -Quicker 62331 -Quickest 62196 -Quickie 60321 -Quickies 61051 -Quicklink 63419 -Quicklinks 49867 -Quicklist 52096 -Quickly 50607 -Quickrank 65452 -Quicksand 65170 -Quicksearch 59491 -Quickshop 63245 -Quicksilver 57238 -Quickstart 61152 -Quickstep 64423 -Quicktime 53316 -Quid 61699 -Quidco 64905 -Quidditch 61699 -Quien 63601 -Quiero 58065 -Quiescent 63077 -Quiet 49547 -Quietly 59491 -Quietness 65170 -Quigg 64423 -Quigley 56972 -Quijiang 65170 -Quik 61051 -Quiksilver 55684 -Quill 57278 -Quillblog 65452 -Quilpie 63601 -Quilt 51670 -Quilted 54792 -Quilter 63419 -Quilters 61940 -Quilting 54540 -Quilts 53952 -Quimby 64905 -Quimioterapia 64905 -Quin 63077 -Quince 60405 -Quinceanera 60856 -Quincy 52085 -Quincy's 64657 -Quinlan 59101 -Quinn 50865 -Quinn's 61256 -Quinney 64657 -Quinnipiac 60580 -Quinny 63077 -Quinoa 60321 -Quins 61051 -Quint 64905 -Quinta 52609 -Quintana 58365 -Quintanilla 60000 -Quinte 62469 -Quintero 60856 -Quintessence 64657 -Quintessential 64423 -Quintet 56687 -Quintiles 64905 -Quintin 62066 -Quinto 61256 -Quinton 58860 -Quirindi 64905 -Quirino 64905 -Quirk 61362 -Quirks 61051 -Quirky 59039 -Quiros 63601 -Quiroz 65170 -Quisisana 60762 -Quisque 64657 -Quit 50213 -Quite 49946 -Quitman 63245 -Quito 55348 -Quits 60238 -Quitting 60405 -Quiver 59630 -Quivers 64201 -Quixote 61584 -Quiz 45096 -QuizMD 65452 -Quizilla 54207 -QuizillaImagine 61362 -Quiznos 59774 -Quizzer 58417 -Quizzes 45697 -Quiñones 64201 -Quo 55500 -Quoc 60952 -Quod 62469 -Quogue 65170 -Quoi 65452 -Quoizel 58979 -Quorn 65170 -Quorum 60405 -Quota 58065 -Quotable 60856 -Quotables 61051 -Quotas 62066 -Quotation 55037 -Quotations 50654 -Quote 36175 -Quoted 54560 -Quotes 40865 -Quotient 61940 -Quoting 56452 -Qur'an 56388 -Quran 53865 -Quranic 64905 -Qureshi 63419 -Quy 65452 -Quynh 65170 -Qué 65170 -Québec 51122 -Québécois 64905 -Química 60405 -Qwerty's 62613 -QwertyManiac 64423 -Qwest 55448 -Qwik 64905 -Qype 55631 -R 34852 -R'n'B 60952 -R's 62066 -RA 45141 -RAA 64423 -RAAF 61152 -RAB 61699 -RABBI 54601 -RABBIT 60238 -RABBITS 64423 -RABCK 64201 -RAC 56231 -RACE 51377 -RACER 62331 -RACES 63077 -RACEWAY 59424 -RACGP 64657 -RACHAEL 65170 -RACHEL 58688 -RACIAL 65452 -RACING 53679 -RACK 57785 -RACKS 63245 -RACQ 63245 -RACV 63601 -RAD 59164 -RADAR 57566 -RADE 63991 -RADEON 59164 -RADES 65170 -RADIAL 62762 -RADIANT 64423 -RADIATION 58162 -RADIATOR 63419 -RADICAL 60762 -RADIO 48831 -RADIOACTIVE 59164 -RADIOHEAD 61818 -RADIOLOGY 65170 -RADIOS 63419 -RADIUS 59560 -RAE 59848 -RAF 54341 -RAFAEL 62613 -RAFFAELLO 63601 -RAFT 60321 -RAG 59424 -RAGBRAI 65170 -RAGE 59101 -RAGHEB 62917 -RAGLAN 64905 -RAH 63419 -RAHEEM 62762 -RAI 59101 -RAID 50157 -RAIDERS 64657 -RAIL 56170 -RAILINGS 65452 -RAILROAD 60670 -RAILS 62613 -RAILWAY 59848 -RAIN 55793 -RAINBOW 58017 -RAINDANCE 63792 -RAINIER 63245 -RAINMAKER 65170 -RAISE 61152 -RAISED 59630 -RAISES 64905 -RAISING 63245 -RAJ 62917 -RAJA 64905 -RAJASTHAN 61940 -RAK 61362 -RAKE 61699 -RAL 59630 -RALEIGH 62066 -RALI 64423 -RALLY 59424 -RALPH 57524 -RAM 44650 -RAMA 65452 -RAMADAN 64423 -RAMAN 63419 -RAMBO 61818 -RAMESH 65452 -RAMIREZ 64657 -RAMON 61818 -RAMOS 65452 -RAMP 63792 -RAMS 62762 -RAMSES 60157 -RAMSEY 61940 -RAMs 62196 -RAN 58688 -RANCH 57009 -RANCHO 61940 -RAND 52291 -RANDALL 57609 -RANDOLPH 60856 -RANDOM 57160 -RANDOMS 64905 -RANDY 59292 -RANGE 54096 -RANGER 59164 -RANGERS 60952 -RANGITIKEI 61584 -RANK 57524 -RANKING 60670 -RANKINGS 58365 -RANKL 59101 -RANT 64905 -RANTES 65170 -RANTLE 64905 -RAO 60405 -RAP 56050 -RAPD 60238 -RAPE 63077 -RAPHAEL 64657 -RAPID 57696 -RAPIDS 62469 -RAPIDSHARE 63077 -RAPP 64423 -RAPPORT 62613 -RAPTOR 65452 -RAR 56080 -RARBG 64201 -RARE 51867 -RARI 64201 -RAS 54540 -RASPBERRY 62066 -RAT 56935 -RATE 46834 -RATED 56972 -RATES 52872 -RATHER 64423 -RATING 52164 -RATINGS 56485 -RATIO 56140 -RATIOS 64657 -RATS 60952 -RAUL 64657 -RAV 63419 -RAVE 61699 -RAVEN 64423 -RAVI 62762 -RAW 50983 -RAWAM 57046 -RAWLINGS 63792 -RAWS 62066 -RAY 54459 -RAYMOND 58802 -RAYS 63245 -RAZER 64657 -RAZO 60157 -RAZOR 64905 -RAZR 53549 -RAiled 64905 -RB 47241 -RB's 64657 -RBA 61362 -RBB 65452 -RBBB 60580 -RBC 50328 -RBCs 62469 -RBD 57358 -RBF 60405 -RBI 52411 -RBI's 63419 -RBIGNY 61256 -RBIs 63419 -RBK 60952 -RBL 62613 -RBM 62469 -RBR 62066 -RBS 56935 -RBar 64423 -RBs 65452 -RC 44156 -RCA 49108 -RCB 60321 -RCC 53010 -RCCL 52198 -RCD 59292 -RCE 64657 -RCFE 65170 -RCG 65452 -RCGroups 62917 -RCH 61362 -RCI 60670 -RCIA 62762 -RCK 65170 -RCL 63792 -RCM 56972 -RCMB 60856 -RCMP 56618 -RCN 60157 -RCNMV 65170 -RCNP 63419 -RCO 63077 -RCP 58523 -RCPT 63245 -RCPsych 63991 -RCR 60856 -RCRA 60580 -RCRD 63792 -RCS 56262 -RCSB 61818 -RCSL 53565 -RCT 57399 -RCTs 60238 -RCU 57831 -RCW 54946 -RCs 65170 -RD 45490 -RDA 56862 -RDB 63245 -RDBMS 59560 -RDC 60405 -RDDMT 62469 -RDF 53934 -RDFa 62066 -RDG 60856 -RDH 59292 -RDI 62196 -RDM 60492 -RDO 65170 -RDP 61051 -RDPB 62917 -RDQS 61584 -RDRAM 63077 -RDS 56899 -RDU 62469 -RDX 60078 -RE 47136 -REA 56262 -REACH 52051 -REACHING 65170 -REACT 63792 -REACTION 57653 -REACTIONS 59630 -REACTIVITY 62196 -REACTOR 62469 -READ 45082 -READER 55992 -READERS 60762 -READING 52886 -READINGS 64201 -README 56518 -READS 64423 -READY 53746 -REAL 46175 -REALITY 58262 -REALLY 49488 -REALM 63419 -REALTOR 57238 -REALTORS 59292 -REALTY 57876 -REAP 60157 -REAR 54005 -REARDAN 65452 -REASON 56756 -REASONABLE 60952 -REASONS 59227 -REB 63419 -REBATE 64423 -REBATES 64423 -REBECCA 59848 -REBEL 61051 -REBORN 64201 -REBORNING 64657 -REBOUND 55963 -REBOUNDS 65170 -REBT 60238 -REC 55448 -RECALL 60580 -RECALLS 62762 -RECAP 59424 -RECEIPT 58632 -RECEIPTS 64905 -RECEIVABLE 64657 -RECEIVE 56200 -RECEIVED 54519 -RECEIVER 58979 -RECEIVERS 63991 -RECEIVES 62196 -RECEIVING 60580 -RECENT 50387 -RECENTLY 57318 -RECEPTION 60580 -RECEPTIONIST 63991 -RECEPTOR 61699 -RECEPTORS 62331 -RECERCAT 65452 -RECHERCHE 64657 -RECIPE 56485 -RECIPES 52559 -RECIPIENT 62917 -RECLAIM 65452 -RECOGNITION 57566 -RECOGNIZE 64905 -RECOGNIZED 64905 -RECOMMEND 57741 -RECOMMENDATION 56324 -RECOMMENDATIONS 55738 -RECOMMENDED 54902 -RECOMMENDS 63991 -RECON 63601 -RECONCILIATION 65452 -RECONSTRUCTION 60952 -RECORD 51275 -RECORDED 61152 -RECORDER 59923 -RECORDING 56262 -RECORDINGS 59774 -RECORDS 52221 -RECOVER 65170 -RECOVERY 57238 -RECREATION 55963 -RECREATIONAL 63601 -RECRUITED 62196 -RECRUITERS 64657 -RECRUITING 61940 -RECRUITMENT 50108 -RECT 64905 -RECTANGULAR 65170 -RECTIFIER 61818 -RECYCLED 63245 -RECYCLING 59357 -RECs 63601 -RED 47024 -REDBAK 63419 -REDDING 65452 -REDDIT 62762 -REDDY 63077 -REDEMPTION 64423 -REDEVELOPMENT 57785 -REDLINE 64657 -REDS 65170 -REDUCE 58860 -REDUCED 58162 -REDUCING 60580 -REDUCTION 55604 -REDWOOD 63792 -REE 61940 -REEBOK 63792 -REED 59357 -REEF 61152 -REEL 58577 -REEVES 63419 -REF 54749 -REFER 61472 -REFEREE 65170 -REFERENCE 53167 -REFERENCES 46549 -REFERRAL 62613 -REFERRALS 65452 -REFERRED 61818 -REFILL 64423 -REFINE 58577 -REFLECTION 64423 -REFLECTIONS 62196 -REFLECTOR 63419 -REFLEX 63792 -REFORM 57009 -REFORMING 64657 -REFORMS 59292 -REFRESH 61152 -REFRIGERATION 62196 -REFRIGERATOR 65170 -REFUGEE 65170 -REFUND 59357 -REFUNDS 63601 -REFURBISHED 62196 -REFUSAL 65170 -REFUSE 61472 -REG 55107 -REGA 65170 -REGAL 63077 -REGAN 64201 -REGARD 61256 -REGARDING 57084 -REGENCY 64657 -REGENERATION 62196 -REGENT 62613 -REGENTS 63245 -REGGAE 60078 -REGIME 64201 -REGINA 62469 -REGINALD 59039 -REGION 53597 -REGIONAL 51804 -REGIONS 53970 -REGIS 65452 -REGISTER 47555 -REGISTERED 53882 -REGISTERING 65452 -REGISTERS 64657 -REGISTRAR 63077 -REGISTRATION 52913 -REGISTRY 58632 -REGO 65452 -REGRETS 63792 -REGULAR 52118 -REGULATION 56324 -REGULATIONS 55906 -REGULATOR 59164 -REGULATORS 62469 -REGULATORY 55373 -REHAB 60580 -REHABILITATION 59164 -REHAU 65170 -REI 54360 -REID 61152 -REIGN 65170 -REILLY 58065 -REIMBURSEMENT 64201 -REINFORCED 63077 -REINFORCEMENT 65452 -REIT 60000 -REITS 63419 -REITs 62469 -REL 58979 -RELATED 44056 -RELATING 57653 -RELATION 60762 -RELATIONS 52351 -RELATIONSHIP 57046 -RELATIONSHIPS 58860 -RELATIVE 59101 -RELAX 62613 -RELAXATION 65170 -RELAY 58802 -RELAYS 65170 -RELEASE 48199 -RELEASED 59923 -RELEASES 53377 -RELEVANCE 63601 -RELEVANT 58470 -RELIABILITY 60762 -RELIABLE 63419 -RELIANCE 61699 -RELIED 63601 -RELIEF 57278 -RELIEVE 64905 -RELIGION 58212 -RELIGIOUS 58017 -RELOADED 61152 -RELOCATION 61818 -REM 51942 -REMAIN 60952 -REMAINING 63245 -REMAINS 64423 -REMANDED 64201 -REMAPPING 65170 -REMARK 65452 -REMARKS 58802 -REMAX 64905 -REMEDIES 62331 -REMEDY 60492 -REMEMBER 57278 -REMEMBERING 58632 -REMINDER 61362 -REMINGTON 63792 -REMIX 55877 -REMODELING 64905 -REMOTE 54380 -REMOVABLE 62331 -REMOVAL 57046 -REMOVALS 61256 -REMOVE 56972 -REMOVED 59848 -REMOVING 62917 -REN 60580 -RENAISSANCE 61940 -RENAL 59848 -RENAME 62331 -RENAULT 57482 -RENDELL 64423 -RENE 62762 -RENEE 62917 -RENEGADE 65170 -RENEW 62196 -RENEWABLE 64657 -RENEWAL 60762 -RENEWED 64657 -RENO 59424 -RENOVATE 62917 -RENOVATED 63991 -RENOVATION 64905 -RENOVATIONS 65170 -RENT 52622 -RENTAL 56170 -RENTALS 58162 -RENTER 61152 -RENVOIZE 64423 -REO 57122 -REP 54041 -REPAIR 52913 -REPAIRS 59292 -REPAYMENTS 62331 -REPEAT 62469 -REPELLENTS 63792 -REPLACE 58632 -REPLACED 62917 -REPLACEMENT 51368 -REPLACING 64905 -REPLAY 63601 -REPLICA 58919 -REPLICor 64657 -REPLIED 65452 -REPLIES 62331 -REPLY 54245 -REPORT 44976 -REPORTED 58065 -REPORTER 59630 -REPORTING 55963 -REPORTS 49523 -REPOST 64423 -REPRESENT 63601 -REPRESENTATION 60321 -REPRESENTATIONS 58688 -REPRESENTATIVE 56585 -REPRESENTATIVES 59848 -REPRESENTED 64657 -REPRINTS 60952 -REPRODUCTION 59560 -REPRODUCTIVE 61362 -REPS 62613 -REPUBLIC 50499 -REPUBLICAN 51052 -REPUBLICANS 63991 -REPUBLIQUE 62066 -REQ 63601 -REQUEST 50782 -REQUESTED 57741 -REQUESTING 64423 -REQUESTS 58523 -REQUIRE 61256 -REQUIRED 53517 -REQUIREMENT 61051 -REQUIREMENTS 53052 -REQUIRES 62331 -RER 59491 -RES 54622 -RESALE 63792 -RESCINDED 64423 -RESCUE 59848 -RESEARCH 46806 -RESEARCHER 58365 -RESELLERS 63991 -RESERVATION 60762 -RESERVATIONS 58313 -RESERVE 54727 -RESERVED 51974 -RESERVES 61152 -RESERVOIR 61584 -RESET 54341 -RESIDENCE 59357 -RESIDENCES 64423 -RESIDENCY 63601 -RESIDENT 58262 -RESIDENTIAL 53316 -RESIDENTS 58262 -RESIDUAL 65170 -RESIDUES 57358 -RESIGNATION 63991 -RESIN 57440 -RESIST 64657 -RESISTANCE 56827 -RESISTANT 63601 -RESISTOR 61584 -RESO 57876 -RESOLUTION 50823 -RESOLUTIONS 61818 -RESOLVED 53952 -RESONANCE 61472 -RESONATOR 63792 -RESORT 56231 -RESORTS 61256 -RESOURCE 52927 -RESOURCES 45802 -RESOURCING 64201 -RESP 65452 -RESPECT 56324 -RESPECTIVE 63077 -RESPIRATORY 61818 -RESPOND 63419 -RESPONDENT 60580 -RESPONSE 54479 -RESPONSES 60405 -RESPONSIBILITIES 58262 -RESPONSIBILITY 58365 -RESPONSIBLE 56485 -RESS 65170 -REST 56356 -RESTAURANT 54519 -RESTAURANTS 56972 -RESTO 63077 -RESTORATION 59424 -RESTORE 64657 -RESTRICTED 61051 -RESTRICTION 62613 -RESTRICTIONS 61256 -RESTRUCTURING 64657 -RESTful 64905 -RESULT 54664 -RESULTING 59702 -RESULTS 44420 -RESUME 57970 -RESUMEN 65452 -RESURFACING 62613 -RET 62613 -RETAIL 52818 -RETAILER 62469 -RETAILERS 63601 -RETAIN 64905 -RETAINING 61051 -RETARDATION 65170 -RETARDED 57876 -RETENTION 60952 -RETF 63077 -RETIRE 62469 -RETIRED 63792 -RETIREMENT 57653 -RETRACTABLE 63245 -RETREAT 62196 -RETRIEVAL 63077 -RETRO 57876 -RETURN 51377 -RETURNED 61584 -RETURNING 62331 -RETURNS 54946 -REUBEN 65452 -REUNION 59292 -REUNIONS 61472 -REUTERS 54170 -REV 57199 -REVEALED 63419 -REVENGE 64423 -REVENUE 54924 -REVENUES 61152 -REVERSE 55631 -REVERSED 62066 -REVERSIBLE 64201 -REVIEW 46986 -REVIEWED 61152 -REVIEWING 64905 -REVIEWS 46989 -REVISE 65170 -REVISED 57009 -REVISION 58577 -REVISIONS 64201 -REVIVAL 65170 -REVO 65170 -REVOLUTION 60000 -REVOLUTIONARY 65452 -REVOLVER 64657 -REVOLVING 64905 -REVS 65452 -REWARD 62196 -REWARDS 61472 -REX 60762 -REXX 63245 -REY 61818 -REYES 63601 -REYNOLDS 61940 -REZONING 63991 -REflex 64423 -RF 43140 -RFA 58212 -RFB 64657 -RFC 52051 -RFCs 62613 -RFD 59560 -RFE 65170 -RFF 58919 -RFFRetailer 65170 -RFI 56551 -RFID 49336 -RFK 59560 -RFL 64201 -RFLP 60952 -RFM 63419 -RFO 63245 -RFP 50615 -RFP's 64201 -RFPs 58979 -RFQ 52018 -RFRA 64905 -RFS 64423 -RFT 64423 -RFU 63792 -RFs 64657 -RG 48445 -RGA 61051 -RGB 50350 -RGC 64905 -RGD 57440 -RGE 63991 -RGEC 65170 -RGF 65170 -RGGI 62469 -RGIS 65170 -RGM 64657 -RGN 61256 -RGR 61256 -RGS 59039 -RGSS 62613 -RGT 65452 -RH 48139 -RHA 61584 -RHAGP 63601 -RHB 64657 -RHC 59848 -RHCP 62762 -RHD 61699 -RHEL 61472 -RHIC 64657 -RHINESTONE 64657 -RHINO 63245 -RHODE 59357 -RHODES 64201 -RHONDA 64905 -RHP 57970 -RHQ 65452 -RHS 57970 -RHYME 62762 -RHYTHM 61818 -RI 45770 -RIA 56618 -RIAA 56551 -RIAA's 65170 -RIAs 64657 -RIB 61152 -RIBA 58470 -RIBBON 60670 -RIBS 62066 -RIC 61584 -RICA 58113 -RICARDO 64905 -RICE 54226 -RICH 56935 -RICHARD 51148 -RICHARDS 61256 -RICHARDSON 58470 -RICHIE 64905 -RICHLAND 62917 -RICHMOND 58365 -RICHMONd 62613 -RICHTER 63991 -RICK 57653 -RICKY 62613 -RICO 56827 -RICOH 60762 -RICS 61051 -RID 55348 -RIDDLE 65452 -RIDE 56200 -RIDER 58632 -RIDES 61699 -RIDGE 57524 -RIDGEMERE 63601 -RIDGEWAY 64201 -RIDING 59560 -RIF 62762 -RIFLE 62196 -RIFLES 65170 -RIG 61699 -RIGHT 47859 -RIGHTEOUS 58113 -RIGHTS 48776 -RIGID 65170 -RIHANNA 63991 -RII 62331 -RIKEN 61940 -RIL 62196 -RILEY 63601 -RIM 52040 -RIM's 63792 -RIMES 65452 -RIMM 65452 -RIMS 61584 -RIN 60157 -RING 53153 -RINGS 57318 -RINGTONE 65170 -RINGTONES 60952 -RINK 65170 -RIO 56080 -RIP 48548 -RIPA 63601 -RIPARIAN 64905 -RIPE 58979 -RIPng 65170 -RIS 52818 -RISB 63792 -RISC 57785 -RISD 65452 -RISE 56935 -RISER 64905 -RISING 60762 -RISK 54059 -RISKS 60952 -RIT 59357 -RITA 62066 -RITCHIE 62196 -RITE 62066 -RIU 65452 -RIVA 65452 -RIVER 51131 -RIVERA 61940 -RIVERS 61699 -RIVERSIDE 59101 -RIVIERA 64423 -RIZ 61152 -RIZR 57122 -RJ 46263 -RJ's 63077 -RJM 62917 -RJR 63991 -RK 50402 -RKO 61940 -RKTT 64905 -RL 47080 -RLC 62469 -RLD 61362 -RLE 64423 -RLS 61699 -RLV 64423 -RM 44670 -RMA 53882 -RMAC 65170 -RMAN 61818 -RMB 56585 -RMC 61940 -RMD 61940 -RME 63419 -RMF 63991 -RMG 65170 -RMI 60670 -RMIT 60078 -RMK 63792 -RML 63419 -RMN 60238 -RMP 59848 -RMR 60078 -RMRN 65452 -RMS 51650 -RMSE 63077 -RMT 59923 -RMV 63419 -RMVB 58065 -RMX 61699 -RN 47304 -RNA 43311 -RNAP 61818 -RNAi 54459 -RNAs 54114 -RNB 62066 -RNC 52472 -RND 65452 -RNG 61940 -RNIB 65170 -RNLI 60238 -RNN 64201 -RNR 59560 -RNS 58365 -RNa 62917 -RNase 54419 -RNeasy 63601 -RNs 59923 -RO 50409 -ROA 64201 -ROAD 46784 -ROADMAP 65452 -ROADS 59702 -ROAM 63792 -ROAR 65452 -ROAST 63601 -ROASTED 63792 -ROB 56652 -ROBBIE 63991 -ROBBINS 64423 -ROBE 60157 -ROBERT 49517 -ROBERTA 61256 -ROBERTO 58860 -ROBERTS 57278 -ROBERTSON 62917 -ROBIN 57970 -ROBINS 63792 -ROBINSON 59292 -ROBLES 65170 -ROBOT 60492 -ROBOTC 65452 -ROBOTS 65170 -ROC 53646 -ROCCO 65170 -ROCHELLE 64905 -ROCHESTER 59923 -ROCK 49939 -ROCKER 64657 -ROCKERS 62917 -ROCKET 58802 -ROCKETBOOM 60405 -ROCKETS 64905 -ROCKFORD 64905 -ROCKIES 64905 -ROCKINGHAM 65452 -ROCKS 58162 -ROCKWELL 65170 -ROCKY 58365 -ROD 54857 -RODEO 63991 -RODNEY 58802 -RODRIGUEZ 63419 -RODS 62196 -ROE 61256 -ROF 63792 -ROFL 60952 -ROG 65452 -ROGEL 50306 -ROGER 56551 -ROGERS 58632 -ROGRAM 64905 -ROGUE 64423 -ROH 62762 -ROI 51762 -ROIs 63792 -ROK 60000 -ROKR 58162 -ROL 64657 -ROLAND 59491 -ROLE 52175 -ROLES 64201 -ROLEX 63792 -ROLF 65170 -ROLL 51877 -ROLLED 62331 -ROLLER 55578 -ROLLING 59702 -ROLLON 65452 -ROLLS 58577 -ROM 49529 -ROMA 60000 -ROMAN 59774 -ROMANCE 60405 -ROMANIA 57046 -ROMANIAN 57696 -ROMANTIC 62066 -ROME 59491 -ROMENESKO 60952 -ROMEO 60000 -ROMP 63601 -ROMS 61818 -ROMs 60000 -RON 55226 -RONA 64905 -RONALD 57741 -RONNIE 62066 -ROO 62196 -ROOF 57238 -ROOFING 62196 -ROOKIE 64201 -ROOM 50469 -ROOMS 57653 -ROOSEVELT 64423 -ROOT 58313 -ROOTING 63991 -ROOTS 58979 -ROOTV 64905 -ROP 60078 -ROPE 59491 -ROPOSED 63991 -ROR 62613 -ROS 55500 -ROSA 60000 -ROSARIO 65170 -ROSAT 59923 -ROSE 53746 -ROSEMARY 61152 -ROSENBERG 63991 -ROSES 60000 -ROSEWOOD 64657 -ROSIE 65452 -ROSS 57566 -ROSSI 62762 -ROSTER 60856 -ROTARY 60492 -ROTATING 65452 -ROTATION 64201 -ROTC 55084 -ROTH 63601 -ROTM 64905 -ROTO 65170 -ROTOR 64905 -ROTORUA 60952 -ROTTEN 64905 -ROUGE 62331 -ROUGH 61940 -ROULETTE 64905 -ROUND 54188 -ROUNDTABLE 55738 -ROUTE 55934 -ROUTER 58577 -ROUTES 62613 -ROUTINE 60238 -ROUTING 61699 -ROV 61584 -ROVER 57238 -ROW 54664 -ROWAN 64657 -ROWLAND 64423 -ROX 65452 -ROXY 58919 -ROY 57696 -ROYAL 53316 -ROYALTY 63077 -ROYCE 62613 -RP 48571 -RPA 56388 -RPC 56585 -RPDS 61818 -RPE 56791 -RPF 59292 -RPG 47679 -RPG's 64423 -RPGC 63419 -RPGnet 59292 -RPGnetter 63419 -RPGs 57609 -RPI 61256 -RPL 58212 -RPM 49394 -RPMI 56140 -RPMS 65170 -RPMcMurphy 62762 -RPMs 60952 -RPN 64201 -RPO 60157 -RPS 59491 -RPSL 53779 -RPT 58632 -RPV 63245 -RQ 56262 -RR 48877 -RRC 58470 -RRD 63419 -RRDTool 60321 -RRI 62917 -RRM 61940 -RRO 62469 -RROD 65170 -RRP 50890 -RRR 61699 -RRS 60670 -RRSP 63077 -RRT 58417 -RRs 64657 -RS 46827 -RSA 50906 -RSB 63601 -RSBizWare 63245 -RSC 49417 -RSD 58065 -RSE 60321 -RSENS 63792 -RSF 59292 -RSG 61472 -RSH 62762 -RSI 57831 -RSID 62917 -RSK 61940 -RSL 55250 -RSLs 62196 -RSM 59227 -RSME 63601 -RSMeanies 65170 -RSMeans 64423 -RSMo 62917 -RSNA 62331 -RSO 63245 -RSP 62762 -RSPB 61256 -RSPCA 61940 -RSPR 65170 -RSQ 62066 -RSR 62331 -RSS 31297 -RST 59164 -RSV 55657 -RSVP 50553 -RSVPs 64905 -RSW 61584 -RSX 57524 -RT 47328 -RT's 60670 -RTA 55934 -RTAS 60856 -RTB 62613 -RTBU 63077 -RTC 55552 -RTCA 64905 -RTCW 61940 -RTD 57923 -RTE 60952 -RTF 56721 -RTFM 56756 -RTG 64423 -RTGS 65452 -RTI 56021 -RTI's 64657 -RTIP 64905 -RTK 63991 -RTL 58162 -RTM 58162 -RTN 65452 -RTO 61152 -RTOS 60157 -RTP 57318 -RTR 58470 -RTS 52818 -RTT 59560 -RTU 65452 -RTV 62066 -RTW 58802 -RTWB 60157 -RTX 61362 -RTrim 65452 -RTÉ 54857 -RU 52447 -RUAPEHU 61362 -RUB 57238 -RUBBER 56140 -RUBBISH 64905 -RUBEN 63792 -RUBIN 64201 -RUBY 60580 -RUDOLPH 64657 -RUDY 61699 -RUE 61256 -RUF 63419 -RUFC 64905 -RUFF 63601 -RUFUS 65170 -RUG 62469 -RUGBY 58470 -RUGELEY 63792 -RUGGED 65452 -RUI 62917 -RUIN 64905 -RUIZ 64423 -RULE 57084 -RULES 52085 -RUM 64423 -RUMBLE 64905 -RUMOR 57009 -RUMORS 63792 -RUMOURS 64905 -RUMSOC 60856 -RUN 52673 -RUNAWAY 65452 -RUNESCAPE 64657 -RUNNER 60762 -RUNNING 56652 -RUNS 60580 -RUNWAY 63601 -RUP 63792 -RUR 64905 -RURAL 57318 -RUS 55906 -RUSH 55934 -RUSK 65452 -RUSS 62469 -RUSSELL 56827 -RUSSIA 57122 -RUSSIA'S 65452 -RUSSIAN 55178 -RUST 62917 -RUSTIC 65170 -RUTH 58017 -RUTHERFORD 65170 -RV 45611 -RV's 60670 -RVA 61152 -RVC 64423 -RVCA 61584 -RVD 60580 -RVI 63991 -RVL 61818 -RVOT 62917 -RVP 64657 -RVing 62066 -RVs 55604 -RW 49103 -RWA 64657 -RWANDA 60157 -RWC 60952 -RWD 58262 -RWE 63792 -RWJ 65170 -RWS 63077 -RWSL 63601 -RWSS 64423 -RWT 63991 -RWTH 64657 -RWW 63419 -RWY 56756 -RX 51434 -RXV 61699 -RY 58262 -RYA 62066 -RYAN 56485 -RYDER 63991 -RYE 64423 -RYH 60405 -RYM 63601 -RYT 63077 -RZ 58919 -RZA 63792 -Ra 55398 -Ra's 65170 -RaGEZONE 64201 -RaQ 63601 -RaSh 63792 -RaW 63601 -Raat 63419 -Rab 59164 -Rabanne 62613 -Rabat 63601 -Rabbi 51888 -Rabbids 59424 -Rabbis 60580 -Rabbit 48088 -Rabbit's 64201 -Rabbitry 56324 -Rabbits 54005 -Rabble 64201 -Rabe 63077 -Rabi 64201 -Rabid 60492 -Rabideau 64201 -Rabies 58632 -Rabin 59848 -Rabindranath 60405 -Rabinowitz 64657 -Rabkin 64201 -Rabobank 63792 -Rabun 62469 -Raby 63077 -Rac 62066 -Racal 64201 -Raccoon 58802 -Race 42121 -RaceTab 63991 -Racecourse 58632 -Racecourses 61699 -Raced 56756 -Racehorse 62331 -Racer 49802 -Racers 55474 -Races 49135 -Racetrack 62917 -Raceway 54622 -Rach 60762 -Racha 65170 -Rachael 51026 -Rachael's 65170 -Rachel 45000 -Rachel's 56791 -Rachelle 56935 -Rachid 61818 -Rachmaninoff 64423 -Racial 52752 -Racially 63991 -Racine 56356 -Racing 39705 -Racing's 64201 -Racism 52521 -Racist 54643 -Racists 62762 -Rack 47266 -Racked 56110 -Racket 57831 -Racketeer 63419 -Rackets 60856 -Rackham 61584 -Racking 59164 -Rackley 65452 -Rackmount 57046 -Racks 48892 -Rackspace 58802 -Raconteurs 58632 -Racoon 62331 -Racor 64905 -Racquel 63601 -Racquet 55793 -Racquetball 57923 -Racquets 58919 -Ractive 63601 -Racy 61584 -Rad 55299 -Rad's 64657 -RadControls 59774 -RadEditor 64201 -Rada 61051 -Radar 45501 -Radars 59424 -Radavel 64423 -Radcliff 62066 -Radcliffe 53316 -Radda 62917 -Raddy 64905 -Rade 63792 -Radek 59923 -Radeon 49682 -Rader 62613 -Radford 57084 -Radha 60952 -Radhakrishnan 64905 -Radhika 63792 -Radial 53423 -Radian 65170 -Radiance 57566 -Radiant 52291 -Radiat 56585 -Radiata 64423 -Radiating 63991 -Radiation 47660 -Radiative 61472 -Radiator 52018 -Radiators 55084 -Radic 61699 -Radical 51052 -Radically 65452 -Radicals 59702 -Radiesse 64201 -Radikal 62331 -Radin 64423 -Radio 36033 -Radio's 57566 -RadioButton 62917 -RadioShack 57970 -Radioactive 55934 -RadioactiveFrog 62469 -Radioactivity 60405 -Radiocommunication 65452 -Radiofrequency 61699 -Radiographic 57923 -Radiographs 63245 -Radiography 60157 -Radiohead 51899 -Radiohead's 61940 -Radioimmunoassay 62917 -Radioimmunotherapy 63991 -Radioisotope 62469 -Radiol 54302 -Radiolabeled 65170 -Radiologic 59039 -Radiologica 63601 -Radiological 53662 -Radiologist 64905 -Radiologists 63419 -Radiologix 63991 -Radiology 48243 -Radioman 54664 -Radiometer 61940 -Radiometric 63991 -Radionuclide 61818 -Radios 50823 -Radiotherapy 58919 -Radish 63991 -Radisson 52940 -Radium 58688 -Radius 53899 -Radix 60952 -Radley 62762 -Radner 64657 -Radnor 61818 -Radnorshire 60762 -Rado 62196 -Radon 56518 -Radovan 61940 -Radu 61051 -Radwell 62613 -Rady 59848 -Radziwill 65170 -Rae 52845 -Rae's 65452 -Raekwon 64905 -Rael 65452 -Raf 60580 -Rafa 59292 -Rafael 50898 -Rafah 64423 -Rafal 59039 -Rafat 63419 -Rafe 62196 -Raff 64201 -Raffaele 60856 -Raffaella 65170 -Raffaello 61472 -Rafferty 60856 -Raffi 62469 -Raffle 56231 -Raffles 57696 -Rafi 61362 -Rafinerija 64657 -Raft 60321 -Rafter 63245 -Rafters 65452 -Rafting 54360 -Rafts 63792 -Rag 53882 -Raga 59039 -Ragan 61362 -Ragdoll 58577 -Rage 49986 -Ragefire 59630 -Rageous 64905 -Rages 64905 -Ragga 64423 -Ragged 60405 -Raggedy 61472 -Raggy 64201 -Raghav 65170 -Raghavan 62917 -Ragheb 61362 -Raghu 61472 -Raghunath 65170 -Raghunathan 65170 -Raghuram 65170 -Raging 54879 -Raglan 55711 -Ragland 64905 -Ragnar 61699 -Ragnarok 54902 -Ragnaros 63419 -Ragnhild 64423 -Rags 57524 -Ragsdale 64423 -Ragtime 57970 -Ragu 64423 -Ragweed 63792 -Rah 63601 -RahXephon 64423 -Raha 63991 -Rahal 63419 -Rahat 63991 -Raheem 62917 -Rahim 62196 -Rahm 63991 -Rahman 55014 -Rahsaan 65452 -Rahul 54226 -Rahul's 65170 -Rahway 63419 -Rai 51942 -Raid 52435 -Raiden 58162 -Raider 52315 -Raiders 49458 -Raiding 62331 -Raids 54005 -Raiffeisen 64657 -Raikkonen 63077 -Raikou 62917 -Rail 46543 -Raila 64905 -Railfan 63792 -Railing 60078 -Railings 59702 -Railroad 48856 -Railroading 64201 -Railroads 55578 -Rails 50192 -Railtrack 63991 -Railway 46928 -Railways 54459 -Raima 63245 -Raimi 60856 -Rain 45313 -Raina 64201 -Rainboots 65452 -Rainbow 46159 -Rainbows 58919 -Raincloud 64905 -Raincoat 63419 -Raindance 61256 -Raindrop 64905 -Raindrops 62917 -Raine 56652 -Rained 64905 -Rainer 56231 -Raines 58313 -Rainey 60952 -Rainfall 55037 -Rainforest 54835 -Rainforests 61940 -Rainham 57084 -Rainier 57009 -Raining 58860 -Rainmaker 62196 -Rainmakers 64657 -Rains 57238 -Raintree 63245 -Rainville 64905 -Rainwater 59227 -Rainwear 61818 -Rainy 55299 -Raipur 59630 -Rais 65170 -Raise 50424 -Raised 52107 -Raiser 63245 -Raisers 63991 -Raises 52982 -Raisin 58017 -Raising 50046 -Raisins 60000 -Raison 62196 -Raitport 64423 -Raitt 61584 -Raj 51846 -Raja 53796 -Rajah 62331 -Rajahmundry 64905 -Rajan 60000 -Rajapaksa 65452 -Rajaram 65452 -Rajasiha 65170 -Rajasthan 51211 -Rajasthani 58313 -Rajat 63245 -Rajavel 65170 -Rajeev 57609 -Rajendra 61699 -Rajesh 56551 -Raji 64657 -Rajinder 63792 -Rajini 64657 -Rajinikanth 64201 -Rajiv 56618 -Rajkot 56080 -Rajkumar 63245 -Rajneesh 62762 -Rajni 64657 -Rajnikanth 64657 -Rajput 64423 -Rajshree 64657 -Raju 58313 -Rak 63792 -Rake 54969 -Rakeback 60670 -RakebackNetwork 63991 -Rakes 60238 -Rakesh 57970 -Raketenfalle 63601 -Rakhi 59039 -Rakim 61940 -Raking 63419 -Rakion 60405 -RakionSEA 64423 -Raksha 63601 -Rakuten 65452 -Rakyat 65452 -Raleigh 47784 -Raleigh's 64905 -Raley 65170 -Ralf 55992 -Rall 64657 -Ralliart 62331 -Rallies 58979 -Rallis 65452 -Ralls 61584 -Rally 46165 -Rallycross 65170 -Rallye 60856 -Rallying 63245 -Ralph 45882 -Ralph's 63601 -Ralston 58802 -Ralstonia 63245 -Ram 47570 -Ram's 64905 -Rama 54792 -Ramachandran 61699 -Ramada 51387 -Ramadan 53167 -Ramadhan 64905 -Ramakrishna 61940 -Ramakrishnan 63991 -Ramallah 60405 -Raman 50906 -Ramana 61584 -Ramanathan 64201 -Ramapo 64905 -Ramarao 65170 -Ramat 63792 -Ramayana 61584 -Ramblas 63991 -Ramble 61152 -Rambler 60580 -Rambler's 58919 -Ramblers 61152 -Rambles 62762 -Rambling 59424 -Ramblings 54560 -Rambo 54622 -Rambus 61152 -Ramcharger 62762 -Ramco 64905 -Ramee 63601 -Ramen 58113 -Ramesh 57046 -Ramesses 59424 -Ramey 61152 -Rami 60952 -Ramirez 49720 -Ramiro 61362 -Ramm 65452 -Rammed 63601 -Rammstein 60580 -Ramon 52118 -Ramona 55992 -Ramone 61584 -Ramones 57009 -Ramos 53153 -Ramp 54857 -Rampage 53361 -Rampal 64657 -Rampant 61051 -Rampart 61362 -Ramparts 61699 -Ramprakash 65170 -Ramps 57399 -Rams 50815 -Ramsar 59039 -Ramsay 54096 -Ramsay's 63419 -Ramsden 63077 -Ramses 60580 -Ramsey 51193 -Ramsey's 65170 -Ramsgate 60952 -Ramtec 62613 -Ramu 64657 -Ramus 65452 -Ramya 63601 -Ramírez 60670 -Ramón 59357 -Ran 53549 -Rana 57046 -Ranaut 64201 -Ranbaxy 60952 -Ranbir 59923 -Rance 64905 -Ranch 45877 -Rancher 56551 -Ranchero 64905 -Ranches 57238 -Ranchi 60762 -Rancho 49302 -Rancid 60670 -Rancilio 64657 -Rand 50439 -Randal 59560 -Randall 49517 -Randall's 63601 -Randallstown 65452 -Randburg 62762 -Randel 65452 -Randell 64905 -Randi 58979 -Randle 60405 -Randolph 50991 -Random 37309 -Randomised 60078 -Randomization 62066 -Randomized 55323 -Randomizer 64423 -Randomly 59702 -Randomness 59357 -Randstad 64423 -Randwick 60580 -Randy 45417 -Randy's 61362 -Rane 60856 -Raney 60580 -Rang 59424 -Ranga 63077 -Ranganathan 62917 -Range 41467 -Ranged 57440 -Rangefinder 61940 -Rangefinders 59491 -Rangel 59292 -Rangeland 64905 -Rangemaster 62331 -Ranger 48436 -Ranger's 62469 -Rangers 46693 -Ranges 51550 -Ranging 60856 -Ranglin 65170 -Rangoon 62917 -Rani 56485 -Rania 62331 -Ranieri 65452 -Ranitidine 61362 -Ranjan 62469 -Ranjha 61940 -Ranjit 61699 -Rank 43087 -RankOne 63991 -RankPoints 57399 -Ranked 50584 -Ranker 63077 -Rankin 55250 -Rankine 64657 -Ranking 48021 -Rankings 44411 -Ranks 54041 -Ranma 59630 -Ranney 64657 -Rannoch 63792 -Ransford 65452 -Ransom 58065 -Ransomes 61472 -Ranson 64657 -Rant 52872 -Ranting 62469 -Rantings 61152 -Rantoul 65452 -Rants 51202 -Ranunculus 64423 -Ranvier 63077 -Rao 52765 -Raoul 58417 -Rap 46669 -Rapaflo 65452 -Rapala 59702 -Rapanui 65170 -Rape 51825 -Raped 59357 -Rapesco 65452 -Rapeseed 63991 -Raphael 52534 -Raphael's 61818 -Raphaelite 58113 -Raphaël 65452 -Rapid 45127 -RapidLibrary 64201 -RapidSSL 63077 -RapidShare 54835 -RapidTyping 65170 -Rapidform 62762 -Rapidhsare 64423 -Rapidly 59774 -Rapids 48084 -Rapidshare 47493 -Rapier 64905 -Rapist 64201 -Rapoport 64905 -Rapoza 58470 -Rapp 59424 -Rappahannock 64423 -Rappaport 60078 -Rappelz 55906 -Rapper 57238 -Rappers 61051 -Rapping 64423 -Rapport 59630 -Rapporteur 62917 -Raps 57399 -Raptor 53762 -Raptors 54459 -Rapture 57831 -Rapunzel 64201 -Raquel 56452 -Raquela 63245 -Rar 57238 -Rardin 63991 -Rare 46079 -Rarely 57741 -Raritan 59702 -Rarities 60952 -Rarity 61256 -Ras 56518 -Rasa 56652 -Rascal 54992 -Rascals 60762 -Rasch 63601 -Rasen 63245 -Rasengan 63991 -Rash 54540 -Rashad 60856 -Rasheed 62196 -Rasher 65452 -Rashes 61940 -Rashguards 61699 -Rashid 56972 -Rashida 63991 -Rashmi 64201 -Rashtriya 65452 -Rasiya 65170 -Raskin 64201 -Rasmus 60670 -Rasmussen 54749 -Rasmussen's 65170 -Raspberries 61699 -Raspberry 53423 -Rasputin 62469 -Rast 65452 -Rasta 58979 -Rastafari 64423 -Raster 59774 -RasterVect 63601 -Rasy 63245 -Rat 48292 -RatHunt 64201 -Rata 59848 -Ratan 63991 -Ratatat 61051 -Ratatouille 58162 -Ratbone 64657 -Ratchet 54380 -Ratcheting 65170 -Ratcliffe 62917 -Rate 35558 -RateBeer 61584 -RateItAll 61256 -RateMyProfessors 64657 -RatePoint 64657 -Rated 39183 -RatedWrite 63991 -Ratepayers 61584 -Rater 60580 -Rates 40710 -Rates's 64423 -Ratesheet 63419 -Ratgeber 64423 -Rath 61940 -Rathbone 62613 -Rather 48887 -Rathi 63792 -Rathmines 62613 -Ratification 63601 -Rating 38648 -Ratings 40626 -Ratio 48390 -Ration 62196 -Rational 52062 -Rationale 56420 -Rationality 62613 -Rationalization 64657 -Ratios 54245 -Ratliff 63991 -Ratna 63077 -Ratnagiri 64905 -Ratner 59424 -Raton 51122 -Ratoni 64423 -Rats 51211 -Ratt 63077 -Rattan 58113 -Ratti 64905 -Rattle 57482 -Rattler 62917 -Rattlers 60856 -Rattles 63991 -Rattlesnake 62196 -Rattlesnakes 63245 -Rattus 63792 -Ratzinger 63601 -Rau 52107 -Raub 59357 -Raubenheimer 64905 -Rauber 62917 -Rauch 60856 -Raucous 64423 -Rauf 63077 -Raul 52447 -Raulerson 63601 -Raunchy 63792 -Raunt 63601 -Rausch 63245 -Rausing 63601 -Rav 61584 -Ravage 63245 -Ravager 62066 -Ravan 63601 -Rave 54005 -Ravel 61256 -Ravelry 65170 -Raven 50638 -Raven's 63077 -Ravencrest 59164 -Ravenholdt 58577 -Ravenna 60000 -Ravens 51783 -Ravensburger 62917 -Ravensthorpe 65452 -Ravenswood 58745 -Raveonettes 64657 -Raver 62917 -Raves 54341 -Ravi 52805 -Ravin 63245 -Ravinder 63991 -Ravindra 64201 -Ravine 63077 -Raving 57199 -Ravinia 61362 -Ravioli 60762 -Ravishankar 64657 -Raw 45687 -RawSugar 57399 -Rawal 64905 -Rawalpindi 62762 -Rawanda 60856 -Rawat 63077 -Rawhide 61051 -Rawlings 56452 -Rawlins 62762 -Rawlinson 63077 -Rawls 59357 -Rawson 60157 -Ray 42848 -Ray's 56110 -Raya 57524 -Rayasam 64657 -Rayburn 60238 -Raycom 61818 -Raydio 65170 -Raye 60856 -Rayfield 63792 -Rayleigh 55711 -Rayman 58577 -Raymarine 62196 -Raymer 62469 -Raymond 47002 -Raymond's 65170 -Raymund 64657 -Raynaud 63991 -Raynaud's 61051 -Rayne 60762 -Rayner 59227 -Raynes 64905 -Raynham 61699 -Raynor 61940 -Rayon 59292 -Rayong 63991 -Rayovac 63601 -Rays 46437 -Raytek 64657 -Raytheon 55849 -Raytown 62613 -Raz 61051 -Raza 58919 -Razer 59292 -Razor 52521 -Razor's 64201 -Razorback 60762 -Razorbacks 59357 -Razorfen 58212 -Razorlight 59774 -Razors 59491 -Razr 56262 -Razz 61472 -Razzle 65170 -Raúl 60670 -Rb 57358 -Rbk 64657 -Rc 56618 -Rca 63601 -Rcbjr 64905 -Rd 42334 -Rds 62613 -Re 50157 -ReDIF 55738 -ReMax 63077 -ReMi 63792 -RePEc 48395 -RePub 60000 -ReSourCe 59292 -Rea 56262 -Reacción 63419 -Reach 47370 -Reached 57122 -Reaches 56618 -Reaching 52791 -React 58919 -Reaction 48359 -Reactions 51122 -Reactivation 64201 -Reactive 54835 -Reactivity 56420 -Reactor 53679 -Reactors 59560 -Reacts 58802 -Read 33579 -ReadMe 65452 -ReadOnly 60952 -ReadSpeaker 63991 -ReadWriteWeb 64423 -Readability 56485 -Readable 61051 -Reade 59491 -Reader 40337 -Reader's 51492 -ReaderSpeak 65452 -Readers 44785 -Readership 61256 -Readies 61472 -Readily 65452 -Readiness 52886 -Reading 40451 -Reading's 63991 -Readings 51463 -Readme 61584 -Readout 63601 -Reads 50227 -Ready 42301 -ReadyBoost 61051 -ReadyDrive 64905 -ReadyNAS 63077 -Readying 64905 -Reaffirms 62066 -Reagan 49999 -Reagan's 59560 -Reagent 54946 -Reagents 55474 -Reaktiv 62613 -Reaktor 60856 -Real 32355 -RealAdventures 63245 -RealAge 65170 -RealAgentSuite 65170 -RealArcade 62066 -RealAudio 61051 -RealClearPolitics 62917 -RealClimate 64657 -RealEstate 62469 -RealFeel 63601 -RealGM 56756 -RealGuide 64657 -RealMedia 61472 -RealMoney 60238 -RealNetworks 48648 -RealOne 63601 -RealPlayer 53899 -RealShare 65452 -RealTek 64657 -RealTime 62066 -RealTravel 57009 -RealTravelpc 60762 -RealVNC 62762 -RealWall 61472 -Reale 63792 -Realestate 63245 -Realfooty 63792 -Realignment 63991 -Realise 65170 -Realises 64201 -Realising 63601 -Realism 58365 -Realist 60321 -Realistic 54360 -Realistically 65170 -Realities 57609 -Reality 45078 -Realization 60856 -Realize 58523 -Realized 62762 -Realizing 58162 -Really 45174 -Realm 50974 -Realms 54114 -Realplayer 53934 -Reals 58212 -Realteam 64657 -Realtek 56420 -Realtime 56827 -Realtones 65170 -Realtor 51229 -Realtors 49207 -Realty 46202 -RealtyTrac 59491 -Realy 65452 -Ream 61584 -Reamer 65170 -Reames 65170 -Reap 56756 -Reaper 54078 -Reaper's 65170 -Reapers 65170 -Reaping 62469 -Reapportionment 64423 -Rear 44182 -Reardon 58919 -Reardon's 65452 -Rearend 65170 -Rearfoot 64905 -Rearing 63792 -Rearmed 64423 -Rearrange 61584 -Rearrangement 63245 -Rearview 63245 -Reason 46800 -Reasonable 53454 -Reasonably 61152 -Reasoning 54992 -Reasons 48148 -Reassessing 64201 -Reassessment 63792 -Reatard 64423 -Reauthorization 62196 -Reaver 63077 -Reaves 64423 -Reb 60078 -Reba 57696 -Rebalancing 65170 -Rebar 61584 -Rebate 49992 -Rebates 49783 -Rebbe 65170 -Rebeca 62066 -Rebecca 46457 -Rebecca's 62331 -Rebekah 58065 -Rebel 49365 -Rebelde 62196 -Rebellion 54727 -Rebels 53934 -Rebirth 57440 -Reblog 62469 -Reboot 56721 -Reborn 56935 -Rebound 57440 -Rebounds 59630 -Rebranding 53377 -Rebuffs 62762 -Rebuild 56080 -Rebuilder 65170 -Rebuilders 65170 -Rebuilding 55014 -Rebuilds 64905 -Rebuilt 54096 -Rebun 63991 -Rebuttal 56827 -Rebuttals 65170 -Rebuy 63991 -Rec 51008 -RecA 60405 -RecN 65452 -Recados 64201 -Recah 63991 -Recall 49319 -Recalled 56551 -Recalling 59357 -Recalls 48491 -Recap 51275 -Recapping 64657 -Recaps 56687 -Recaro 61940 -Recast 64905 -Receding 65452 -Receipt 53517 -Receipts 55631 -Receivable 57653 -Receivables 61256 -Receive 40711 -Received 43830 -Receiver 48372 -Receivers 51415 -Receives 50299 -Receiving 45611 -Recency 63077 -Recent 33768 -RecentChanges 60670 -RecentSales 58745 -Recenter 63601 -Recently 41514 -Recep 62331 -Receptacle 63077 -Receptacles 59923 -Reception 48152 -Receptional 59039 -Receptionist 53679 -Receptions 56485 -Receptive 64201 -Receptor 50742 -Receptors 56972 -Recerca 64423 -Recertification 60157 -Recertified 62613 -Recess 58262 -Recessed 56420 -Recession 50507 -Recessions 65170 -Recetas 64423 -Rech 63601 -Recharge 57009 -Rechargeable 52268 -Recharging 63991 -Recherche 52622 -Rechercher 61051 -Recherches 59292 -Recht 65170 -Rechte 62917 -Rechtsanwalt 65170 -Rechtsanwälte 64905 -Recidivism 65452 -Recieve 62762 -Recieved 65170 -Reciever 64905 -Recife 60952 -Recipe 42589 -RecipeZaar 61699 -Recipes 38226 -Recipezaar 57358 -Recipient 50402 -Recipient's 47478 -Recipients 53301 -Recipies 62917 -Reciprocal 56721 -Reciprocating 59848 -Reciprocity 60238 -Recirculating 63792 -Recirculation 65452 -Recital 56170 -Recitation 62917 -Reckitt 63245 -Reckless 57566 -Reckoner 61472 -Reckoning 55631 -Reclaim 56140 -Reclaimed 60856 -Reclaiming 60078 -Reclama 65452 -Reclamation 55448 -Reclame 62917 -Recline 64423 -Recliner 55250 -Recliners 63419 -Reclining 59923 -Recluse 63792 -Recodo 62066 -Recognise 63601 -Recognised 60078 -Recognising 60321 -Recognition 45902 -Recognitions 62331 -Recognize 54419 -Recognized 54664 -Recognizes 59702 -Recognizing 54302 -Recoil 60405 -Recollections 61699 -Recolors 64201 -Recombinant 53286 -Recombination 60405 -Recomendaciones 65452 -Recomendar 63601 -Recomended 64657 -Recommend 43047 -Recommendation 50343 -Recommendations 43336 -Recommended 41494 -Recommender 64905 -Recommending 58365 -Recommends 53392 -Recon 51202 -Reconcile 64905 -Reconciled 61699 -Reconciles 57653 -Reconciliation 54706 -Reconciliations 64905 -Reconciling 61256 -Reconditioned 60000 -Reconditioning 63245 -Reconfigurable 61051 -Reconfiguration 61940 -Reconnaissance 56200 -Reconnect 56551 -Reconsider 62917 -Reconsideration 60405 -Reconsidering 64423 -Reconstitution 62331 -Reconstr 58017 -Reconstructed 61940 -Reconstructing 63245 -Reconstruction 51034 -Reconstructive 56972 -Record 39467 -Recordable 60238 -Recorded 49620 -Recorder 47566 -Recorder's 62066 -Recorders 49342 -Recording 45180 -Recordings 49234 -Recordkeeping 60856 -Records 35644 -Records's 65170 -Recount 65452 -Recourse 65452 -Recover 51492 -Recovered 60078 -Recoveries 61051 -Recovering 56262 -Recovers 63245 -Recovery 42315 -Recreate 62762 -Recreation 40775 -Recreational 49494 -Recreations 65452 -Recruit 50630 -Recruited 62613 -Recruiter 49547 -Recruiters 48491 -Recruiting 46329 -Recruitment 43230 -Recruits 58212 -Recrystallization 65170 -Recs 60000 -Rect 65452 -Rectal 56791 -Rectangle 54581 -Rectangular 52818 -Rectification 63245 -Rectifier 60492 -Rectifiers 61940 -Rector 56972 -Rectorate 64657 -Rectory 59560 -Rectum 61699 -Recuerdos 64905 -Recumbent 63245 -Recurrence 58919 -Recurrent 55552 -Recurring 52982 -Recursion 61699 -Recursive 58365 -Recursos 57831 -Recyclable 63419 -Recycle 51463 -RecycleNet 62066 -Recycled 51835 -Recycler 60321 -Recycler's 63792 -Recyclers 60762 -Recycles 60405 -Recycling 45334 -Red 36229 -Red's 61256 -RedBubble 64201 -RedDot 62613 -RedEye 57524 -RedEye's 64423 -RedHat 59560 -RedHot 61584 -RedOrbit 63245 -RedTyger 58313 -Redback 63601 -Redband 63077 -Redbank 63077 -Redbirds 63601 -Redbone 60321 -Redbook 61940 -Redbox 59702 -Redbridge 55448 -Redcap 65170 -Redcar 55552 -Redcat 63245 -Redchopsticks 64201 -Redcliffe 59101 -Redd 58860 -Reddick 64905 -Redding 54924 -Reddit 42061 -Redditch 59101 -Reddy 49336 -Reddy's 63792 -Rede 65170 -Redeem 47895 -Redeemable 64905 -Redeemed 64905 -Redeemer 59292 -Redeeming 62613 -Redefine 62196 -Redefined 63419 -Redefines 65452 -Redefining 58262 -Redemption 52609 -Rederiet 64905 -Redesign 55154 -Redesignated 64905 -Redesigned 56687 -Redesigning 64905 -Redevelopment 51330 -Redeye 63601 -Redfern 59774 -Redfield 62613 -Redfin 60670 -Redfish 63245 -Redfly 63991 -Redford 58417 -Redgate 62196 -Redgrave 60952 -Redhat 59702 -Redhawks 64423 -Redhead 55657 -Redheaded 64905 -Redheads 61818 -Redhill 58065 -Rediff 55877 -Redington 64905 -Redirect 57524 -Redirected 64423 -Redirecting 63601 -Redirection 59923 -Redirects 54283 -Rediscover 64423 -Rediscovered 62762 -Rediscovering 60670 -Redistribution 57440 -Redistributions 60762 -Redistricting 61362 -Redken 60405 -Redknapp 59101 -Redland 60580 -Redlands 56618 -Redline 55226 -Redman 57009 -Redmon 64423 -Redmond 53865 -Redneck 56140 -Rednecks 63601 -Redness 64905 -Redo 61152 -Redoable 65170 -Redondo 56262 -Redoubt 64905 -Redox 60157 -Redpath 64423 -Redraw 63077 -Redridge 60580 -Redrock 63991 -Redruth 62066 -Reds 51060 -Redshift 65452 -Redshirt 63601 -Redskin 65452 -Redskins 51368 -Redstone 57122 -Reduce 47960 -Reduced 48933 -Reducer 64423 -Reduces 53182 -Reducing 50848 -Reductase 60952 -Reductil 65452 -Reduction 46745 -Reductions 56721 -Redundancy 58017 -Redundant 59774 -Redux 56551 -Redwall 65170 -Redwood 51721 -Redwoods 63792 -Ree 60952 -Reebok 50840 -Reece 55963 -Reed 44324 -Reed's 61051 -Reeder 62469 -Reedley 65452 -Reeds 58365 -Reedy 61152 -Reef 49207 -Reefer 62613 -Reefs 59101 -Reel 48746 -Reeling 60580 -Reels 52673 -ReelzChannel 60670 -Reem 63792 -Reema 63077 -Reems 63991 -Reenactment 61584 -Reengineering 62917 -Reentry 62331 -Rees 55423 -Reese 51349 -Reese's 61699 -Reet 64657 -Reeve 58065 -Reeves 52291 -Ref 47435 -RefMan 58262 -RefNo 62066 -RefSeq 62066 -RefWorks 56585 -Refacing 65170 -Refactoring 60078 -Refaeli 60321 -Refback 57524 -Refbacks 49124 -Refer 47540 -Referee 52484 -Refereed 62331 -Referees 52832 -Reference 36180 -Referenced 52141 -References 39525 -Referencias 61940 -Referencing 61699 -Referendum 58919 -Referer 65452 -Referers 58577 -Referral 49168 -Referrals 54059 -Referred 55684 -Referrer 58523 -Referrers 53882 -Referring 51482 -Refers 56687 -Refi 62066 -Refill 53517 -Refillable 60670 -Refilling 65170 -Refills 58313 -Refinance 51321 -Refinancing 51396 -Refine 44251 -Refined 52818 -Refinement 56021 -Refinements 59702 -Refineries 63245 -Refinery 55202 -Refining 55060 -Refinish 63419 -Refinishing 58688 -Refit 63419 -Reflect 57238 -Reflectance 61256 -Reflected 61699 -Reflecting 57741 -Reflection 53301 -Reflections 49979 -Reflective 56485 -Reflectivity 63601 -Reflector 57318 -Reflectors 61051 -Reflects 57199 -Reflectx 63991 -Reflex 54992 -Reflexion 65170 -Reflexiones 65452 -Reflexive 59923 -Reflexology 57923 -Reflux 54283 -Reforestation 65170 -Reform 46477 -Reforma 61818 -Reformation 58688 -Reformed 55060 -Reformer 61584 -Reforming 61152 -Reforms 55604 -Refract 60238 -Refraction 62196 -Refractive 57122 -Refractor 63601 -Refractories 65452 -Refractory 60405 -Refrain 62331 -Refresh 49828 -RefreshHideFormulas 62613 -Refreshed 65452 -Refresher 60492 -Refreshing 57524 -Refreshingly 64905 -Refreshment 60670 -Refreshments 57524 -Refried 65452 -Refrigerant 60670 -Refrigerate 61699 -Refrigerated 58802 -Refrigerating 59560 -Refrigeration 52051 -Refrigerator 50387 -Refrigerators 51238 -Refs 64423 -Refueling 62762 -Refuge 53899 -Refugee 53010 -Refugees 55178 -Refuges 63601 -Refugio 63077 -Refund 48633 -Refundable 65170 -Refunding 64657 -Refunds 53501 -Refurb 59923 -Refurbished 51877 -Refurbishment 59774 -Refusal 60492 -Refuse 53712 -Refused 58632 -Refuses 56972 -Refusing 61584 -Reg 49113 -RegCompact 63245 -RegFreeze 63245 -Regain 56585 -Regaining 64657 -Regains 63601 -Regal 51899 -Regalia 63792 -Regalos 64905 -Regan 54499 -Regard 59848 -Regarding 49108 -Regardless 51377 -Regards 51266 -Regatta 54540 -Regeln 65170 -Regen 63419 -Regence 63077 -Regency 50807 -Regenerating 64201 -Regeneration 52411 -Regenerative 59491 -Regenerator 64201 -Regeneron 64657 -Regensburg 65452 -Regenstrief 64657 -Regent 49065 -Regent's 60580 -Regents 52040 -Regex 61152 -Reggae 49285 -Reggaeton 59702 -Regge 62469 -Reggie 52597 -Reggie's 64201 -Reggina 65452 -Reggio 58162 -Regi 65452 -Regia 61584 -Regie 62469 -Regime 58365 -Regimen 61940 -Regimens 64423 -Regiment 51157 -Regimental 58017 -Regiments 65170 -Regimes 61362 -Regina 48025 -Regina's 62331 -Reginald 55684 -Regine 63792 -Regio 63245 -Region 38426 -Region's 60762 -RegionDoubleClick 65452 -Regional 39386 -Regionals 61362 -Regione 62613 -Regions 46893 -Regis 51377 -Regisiter 65452 -Regist 65170 -Register 33832 -Registered 39899 -Registering 53182 -Registers 53241 -Registrable 56899 -Registrant 50856 -Registrants 63601 -Registrar 48692 -Registrar's 57876 -Registrars 57358 -Registrarse 64657 -Registrate 64423 -Registration 39004 -Registrations 53124 -Registrieren 61818 -Registriert 63991 -Registries 56935 -Registro 61256 -Registry 44180 -Región 60321 -Reglabile 64657 -Reglaze 65170 -Regma 65170 -Regnum 64201 -Rego 59848 -Regression 53549 -Regressions 63419 -Regressive 65170 -Regret 58417 -Regretful 65452 -Regrets 60492 -Regrettor 62331 -Regrowth 64423 -Regs 60000 -Regt 65170 -Regul 61584 -Regular 41964 -Regularity 64423 -Regularly 56687 -Regulars 57970 -Regulate 58365 -Regulated 55130 -Regulater 58212 -Regulates 58919 -Regulating 57524 -Regulation 44710 -Regulations 44451 -Regulator 51434 -Regulators 53226 -Regulatory 46934 -Regulus 61584 -Regus 61818 -Rehab 49336 -Rehabil 58632 -Rehabilitation 47073 -Rehabilitative 63077 -Rehabs 58313 -Rehearing 61472 -Rehearsal 55604 -Rehearsals 63419 -Reheat 62762 -Rehman 60238 -Rehnquist 63077 -Rehoboth 58919 -Rehoming 63245 -Rehovot 64423 -Rei 57122 -Reich 55348 -Reich's 64657 -Reichard 65452 -Reichel 62762 -Reichert 61256 -Reichl 65170 -Reichman 64423 -Reichmann 64201 -Reichstag 64657 -Reid 48515 -Reid's 61699 -Reidsville 63792 -Reif 64657 -Reigate 58017 -Reign 53934 -Reigning 63601 -Reigns 63245 -Reiki 52699 -Reiko 62469 -Reilly 53695 -Reilly's 63601 -Reiman 63077 -Reimbursable 63991 -Reimbursement 54946 -Reimbursements 64657 -Reimer 61584 -Reims 61256 -Rein 58365 -Reina 58313 -Reinaldo 64905 -Reincarnation 58745 -Reindeer 58365 -Reinders 62613 -Reine 61256 -Reiner 60670 -Reinfeld 65170 -Reinforce 65170 -Reinforced 55107 -Reinforcement 56935 -Reinforcing 60078 -Reinhard 57318 -Reinhardt 58417 -Reinhart 63245 -Reinhold 61362 -Reinhorn 62469 -Reining 61818 -Reinke 64201 -Reino 61940 -Reins 62613 -Reinstall 61584 -Reinstatement 61152 -Reinsurance 58017 -Reintegration 65452 -Reinvent 62331 -Reinvented 56388 -Reinventing 58162 -Reinvestment 61152 -Reirson 61818 -Reis 57741 -Reise 62066 -Reisen 58577 -Reiser 63077 -Reishee 65452 -Reisman 62196 -Reiss 61362 -Reissue 60670 -Reisterstown 62469 -Reiter 60157 -Reiter's 64423 -Reiterates 65452 -Reitz 64905 -Reject 57160 -Rejected 56021 -Rejecting 60405 -Rejection 54643 -Rejections 65452 -Rejects 55107 -Rejoice 59424 -Rejuvenate 60405 -Rejuvenating 65170 -Rejuvenation 59923 -Reker 64657 -Rekha 60670 -Reklama 64657 -Rel 58523 -Relaciones 64905 -Relación 59702 -Relafen 58017 -Relais 60492 -Relapse 59357 -Relat 57084 -Relate 58470 -Related 30400 -Relates 62762 -Relating 54643 -Relation 50823 -Relational 54835 -Relations 40032 -Relationship 44213 -Relationships 44328 -Relative 48427 -Relatively 57318 -Relatives 57923 -Relativistic 60000 -Relativity 55821 -Relator 64657 -Relaunch 64201 -Relaunches 63792 -Relax 52411 -Relaxation 52509 -Relaxed 58262 -Relaxin 62331 -Relaxing 56262 -Relay 49302 -Relays 55631 -Release 38724 -Released 45754 -Releases 38354 -Releasing 56110 -Relegation 65452 -Relentless 53988 -Relenza 64657 -Relevance 43326 -Relevancy 55060 -Relevant 47041 -Reliability 48208 -Reliable 49821 -Reliance 52007 -Reliant 57199 -Relic 58365 -Relics 61256 -Relief 46261 -ReliefWeb 60762 -Relient 59848 -Relies 64657 -Relieve 59164 -Relieved 65452 -Reliever 60670 -Relievers 62762 -Relieves 62066 -Relieving 62196 -Relig 61256 -Religie 65452 -Religion 41799 -Religions 55107 -Religious 44954 -Religulous 54727 -Relish 59101 -Relisys 64423 -Relive 61584 -Reliving 63245 -Rell 59848 -Reload 44117 -Reloaded 56140 -Reloading 58577 -Relocate 60321 -Relocating 58417 -Relocation 49113 -Relocations 65452 -Reluctance 64201 -Reluctant 59227 -Relves 61818 -Rely 62066 -Relying 59774 -Rem 59227 -Rema 63077 -Remain 53662 -Remainder 59702 -Remaining 54078 -Remains 52007 -Remake 56518 -Remakes 62917 -Remaking 56687 -Reman 59164 -Remanufactured 60580 -Remap 64423 -Remapping 65170 -Remar 65170 -Remark 53533 -Remarkable 57318 -Remarkably 64657 -Remarks 50424 -Remastered 58313 -Remax 60492 -Rembrandt 58577 -Remedi 65452 -Remedial 57696 -Remediation 54419 -Remedies 50439 -Remedios 64201 -Remedy 54341 -Remember 37377 -Remembered 57524 -Remembering 51541 -Remembers 59630 -Remembrance 55226 -Remembrances 60405 -Remeron 58065 -Remi 62613 -Remind 54499 -Reminder 52244 -Reminders 55934 -Reminds 58262 -Remington 52699 -Reminisce 63245 -Reminiscence 64423 -Reminiscent 64423 -Reminiscing 65170 -Remission 63077 -Remit 63991 -Remittance 59227 -Remittances 60856 -Remix 47799 -Remixed 58017 -Remixer 60952 -Remixes 54902 -Remmi 64905 -Remnant 59424 -Remnants 62469 -Remo 57524 -Remodel 57358 -Remodeled 62196 -Remodeler 58065 -Remodelers 61940 -Remodeling 49488 -Remodelling 62469 -Remodels 64423 -Remorse 64905 -Remortgage 57482 -Remortgages 61699 -Remote 42136 -Remotely 57199 -Remotes 56518 -Remoting 58745 -Removable 50492 -Removal 45292 -Removals 53830 -Remove 39929 -RemoveAll 65170 -RemoveAllFromFolder 65452 -RemoveColumn 60492 -RemoveFTIndex 63991 -RemoveFromFolder 63601 -RemoveItem 63245 -RemoveParticipants 64905 -RemovePermanently 63245 -Removeable 61362 -Removed 50416 -Remover 52210 -Removers 57122 -Removes 56200 -Removing 49999 -Remuneration 56862 -Remus 61472 -Remy 55793 -Ren 55631 -Rena 57122 -Renae 62331 -Renaissance 47799 -Renal 50178 -Renaldo 64423 -Rename 54857 -Renamed 60000 -Renamer 64423 -Renaming 60952 -Renan 63601 -Renard 60952 -Renata 58113 -Renate 63077 -Renato 59101 -Renaud 59164 -Renault 49168 -Renaultsport 65170 -Rencontre 65170 -Rencontres 63792 -Rendell 58979 -Render 53917 -RenderToRTItem 62917 -Rendered 59774 -Rendering 55274 -Renderings 62762 -Renders 60405 -Rendezvous 56518 -Rendition 60238 -Rene 52141 -ReneS 63601 -Renee 51104 -Renee's 65170 -Renegade 54749 -Renegades 59848 -Renesas 65452 -Renew 47776 -Renewable 49886 -Renewables 60078 -Renewal 49926 -Renewals 56485 -Renewed 58802 -Renewing 59039 -Renews 60856 -Reneé 65452 -Renfrew 60321 -Renfrewshire 55500 -Renfro 61362 -Renilla 64905 -Renin 63077 -Renkin 61256 -Renmark 65170 -Renmei 64905 -Renminbi 57278 -Renn 64201 -Renna 65170 -Renner 61362 -Rennes 57440 -Rennie 59227 -Rennrad 64201 -Rennteam 65170 -Renny 63991 -Reno 49541 -Reno's 65452 -RenoZag 57923 -RenoZag's 60952 -Renoir 60580 -Renova 60078 -Renovate 60952 -Renovated 57923 -Renovating 62469 -Renovation 53167 -Renovations 55604 -Renown 60670 -Renowned 57785 -Rensburg 63245 -Renseignements 64423 -Renshaw 61584 -Rensselaer 58212 -Rent 41710 -RentUnlimited 63991 -Renta 62469 -Rental 40452 -Rentals 42163 -Rented 60078 -Renter 61818 -Renter's 64905 -Renters 55604 -Renting 50702 -Rentini 65170 -Renton 57009 -Rents 59039 -Renu 63601 -Renuka 64657 -Renwick 63792 -Renzi 64905 -Renzo 62917 -René 55934 -Renée 59923 -Reo 58577 -Reon 57785 -Reopen 62917 -Reopened 61584 -Reopening 63991 -Reopens 63601 -Reorder 58313 -Reorganisation 64657 -Reorganization 59227 -Reorganized 65170 -Reorowicz 63991 -Rep 43970 -Repackaging 63792 -Repaid 64423 -Repair 40079 -Repaired 62469 -Repairer 63991 -Repairers 59848 -Repairing 51560 -Repairman 54207 -Repairs 46598 -Reparations 65452 -Reparatrice 63419 -Repatriation 61699 -Repay 63792 -Repayment 58919 -Repayments 65170 -Repeal 61256 -Repealed 58632 -Repealing 64423 -Repeat 50074 -Repeatability 64905 -Repeated 52791 -Repeatedly 60000 -Repeater 59039 -Repeaters 60580 -Repeating 59357 -Repeats 63419 -Repel 61472 -Repellent 58470 -Repellents 59923 -Repentance 63601 -Reperfusion 62613 -Repertoire 57653 -Repertory 57440 -Repetition 59560 -Repetitive 56827 -Replace 48350 -ReplaceItemValue 62613 -ReplaceItemValueCustomDataBytes 62613 -Replaceable 62762 -Replaced 56262 -Replacement 44365 -Replacements 55821 -Replaces 56388 -Replacing 53865 -Replay 51920 -ReplayTV 60492 -Replays 60405 -Replenishment 59164 -Replica 48562 -ReplicaID 61472 -Replicas 57046 -Replicate 60952 -Replicating 65170 -Replication 49559 -ReplicationEntry 54188 -ReplicationInfo 62917 -Replicator 58979 -Replicators 63419 -Replied 60157 -Replies 42698 -Reply 31955 -Replying 57831 -Replys 50576 -Repo 57785 -Report 31900 -Report's 63419 -Reportable 61818 -Reportage 63419 -Reportcancel 60238 -Reported 49886 -Reportedly 62762 -Reporter 46669 -Reporter's 58212 -Reporters 50514 -Reporting 43528 -Reports 37766 -Repos 62469 -Reposition 64657 -Repositioning 64905 -Repositories 54114 -Repository 45481 -Repossession 64201 -Repossessions 63991 -Repost 61584 -Reposted 48731 -Represent 57876 -Representation 50372 -Representations 55226 -Representative 44603 -Representatives 48042 -Represented 57318 -Representing 54581 -Represents 58979 -Repression 61152 -Reprieve 64423 -Reprint 49446 -Reprinted 56262 -Reprinting 64201 -Reprints 42153 -Reprise 60321 -Repro 63991 -Reprod 53038 -Reproduce 62066 -Reproduced 57741 -Reproducibility 59357 -Reproducible 62762 -Reproducing 63419 -Reproduction 47600 -Reproductions 57741 -Reproductive 51434 -Reprogrammed 61584 -Reprographics 64657 -Reprolabels 64201 -Reps 54664 -Repsol 64905 -Repti 65452 -Reptile 54188 -Reptiles 54096 -Repubblica 65170 -Republi 65170 -Republic 37366 -Republic's 62331 -Republica 61584 -Republican 43268 -Republicans 46511 -Republication 55934 -Republics 59560 -Republik 61051 -Republika 62066 -Republique 62469 -Republish 62917 -Repurchase 60157 -Reputable 64657 -Reputation 50832 -República 60492 -Req 60238 -Req'd 63419 -Request 38172 -Requested 52778 -Requester 61699 -Requesting 57741 -Requests 43934 -Requiem 53934 -Require 54059 -Required 43730 -Requirement 52351 -Requirements 43765 -Requires 50227 -Requiring 57199 -Requisition 58979 -Reranch 63991 -Rerum 65170 -Reruns 65452 -Res 43973 -ResMed 62917 -Resa 64905 -Resale 51690 -Resales 62066 -Resch 64423 -Rescheduled 63601 -Rescind 65170 -Resco 60321 -Rescue 45648 -Rescued 61152 -Rescuers 62917 -Rescues 55130 -Rescuing 63245 -Reseach 64423 -Research 32806 -Research's 63792 -ResearchAndMarkets 58417 -ResearchIntermetallicsLight 59227 -ResearchSpace 60952 -Researched 59923 -Researcher 52175 -Researcher's 62469 -Researchers 44789 -Researches 61940 -Researching 57741 -Resection 60952 -Reseda 61051 -Resell 60952 -Reseller 47037 -Resellers 54969 -Resend 56618 -Resentment 60952 -Reserv 62917 -Reserva 60492 -Reservation 46488 -Reservations 46604 -Reserve 42998 -Reserve's 62762 -ReserveAmerica 64201 -Reserved 40924 -Reserves 50848 -Reserving 64423 -Reservoir 50949 -Reservoirs 58745 -Reset 48496 -Resets 63792 -Resetting 60670 -Resettlement 59848 -Reshaping 63601 -Reshma 63991 -Residence 47645 -Residences 55793 -Residencies 60580 -Residency 52411 -Resident 45770 -ResidentSwap 65452 -Residential 43506 -Residents 46326 -Residenz 65170 -Residenza 65452 -Residing 64657 -Residual 53361 -Residuals 64423 -Residue 57046 -Residues 57831 -Resign 60000 -Resignation 58365 -Resigns 58162 -Resilience 57970 -Resiliency 65452 -Resilient 60000 -Resim 65452 -Resin 52339 -Resins 57482 -Resist 58470 -Resistance 47221 -Resistant 52244 -Resistencia 62613 -Resisting 62331 -Resistive 63601 -Resistivity 60856 -Resistor 56972 -Resistors 60856 -Resists 62917 -Resize 55604 -Resizer 63419 -Resizing 63077 -Resmi 64905 -Resnick 59848 -Reso 65452 -Resolute 63077 -Resolution 42845 -Resolutions 53533 -Resolve 54459 -Resolved 43002 -Resolver 61472 -Resolves 62066 -Resolving 57238 -Reson 62469 -Resonance 53256 -Resonant 58262 -Resonating 63245 -Resonator 60670 -Resonators 63419 -Resort 41834 -Resort's 64657 -ResortQuest 65170 -ResortToViewName 60000 -Resorts 45951 -Resouces 65170 -Resource 38158 -Resourceful 64905 -Resourcefully 62917 -Resources 34012 -Resourcing 60078 -Resp 58523 -Respect 50974 -Respected 57238 -Respectful 63601 -Respectfully 56485 -Respecting 60321 -Respective 59702 -Respir 54380 -Respiration 59357 -Respirator 63419 -Respirators 61584 -Respiratory 48063 -Respirology 64423 -Respite 57653 -Respond 50081 -Respondent 51511 -Respondent's 58065 -Respondents 54857 -Responder 59039 -Responders 61472 -Responding 54727 -Responds 56170 -Response 40540 -ResponseGirton 64905 -Responses 41841 -Responsibilities 50840 -Responsibility 49251 -Responsible 48274 -Responsibly 62917 -Responsive 58365 -Responsiveness 58162 -Respublika 64905 -Ressources 57741 -Rest 47011 -Restart 55963 -Restarting 63792 -Restarts 63991 -Restated 60000 -Restatement 60952 -Restaurant 39470 -Restaurante 62331 -Restaurants 38162 -Restaurateurs 63077 -Rested 64657 -Resting 58065 -Restitution 62469 -Restless 55250 -Resto 58212 -Reston 59357 -Restor 59292 -Restoran 61362 -Restoration 47526 -Restorations 61051 -Restorative 58523 -Restore 49141 -Restored 56551 -Restorer 65452 -Restores 60952 -Restoring 55474 -Restrained 62917 -Restraining 61051 -Restraint 59227 -Restraints 59630 -Restrict 55552 -Restricted 51026 -Restricting 60078 -Restriction 54601 -Restrictions 50766 -Restrictive 62762 -Restricts 59424 -Restroom 61256 -Restrooms 62613 -Restructure 63601 -Restructuring 54727 -Rests 58860 -Resturant 62196 -Restylane 63419 -Resubmission 62613 -Result 40599 -ResultSet 63077 -Resultado 65452 -Resultados 62331 -Resulting 59039 -Results 34136 -Resumail 64657 -Resume 43380 -Resume's 64657 -Resumen 61152 -Resumes 47116 -Resumption 65452 -Resumé 57653 -Resurfacing 58577 -Resurgence 60157 -Resurrection 54264 -Resuscitation 60762 -Resveratrol 60856 -Ret 58470 -Reta 61940 -Retail 39872 -Retailer 50285 -Retailers 48811 -Retailing 53138 -Retails 61256 -Retain 58523 -Retained 58632 -Retainer 61256 -Retainers 63991 -Retaining 54727 -Retains 60238 -Retaliation 58212 -Retard 63245 -Retardant 63792 -Retardation 57741 -Retarded 59039 -Retell 64657 -Retention 51157 -Retentions 60952 -Retest 63419 -Retford 63991 -Rethink 62762 -Rethinking 55323 -Reticle 63077 -Reticulitermes 62066 -Reticulum 63419 -Retief 62613 -Retin 65170 -Retina 60078 -Retinal 56262 -Retinoblastoma 64905 -Retinoic 62331 -Retinol 61051 -Retinopathy 62066 -Retire 56293 -Retired 50026 -Retiree 59164 -Retirees 58417 -Retirement 44544 -Retires 62066 -Retiring 59702 -Retna 61472 -Reto 64657 -Retold 64423 -Retort 62762 -Retouching 63991 -Retour 58979 -Retractable 53613 -Retraining 62469 -Retransmission 65170 -Retreading 61051 -Retreat 49834 -Retreats 53796 -Retrevo 64905 -Retrial 63991 -Retribution 60670 -Retrieval 53549 -Retrieve 53153 -Retrieved 39256 -Retriever 52913 -Retrievers 60952 -Retrieves 60000 -Retrieving 55657 -Retro 46862 -RetroHeroes 59227 -Retroactive 62917 -Retrofile 60157 -Retrofit 57399 -Retrograde 59774 -Retrospect 61940 -Retrospective 54685 -Retrospectives 59491 -Retroviral 63792 -Retroviruses 61940 -Retry 60405 -RetryPlease 65452 -Rett 63077 -Return 37502 -Returned 54114 -Returning 49476 -Returns 40971 -Retype 51492 -Reuben 56110 -Reunion 46030 -Reunions 55250 -Reunite 63792 -Reunited 60000 -Reuploaded 64201 -Reusable 55526 -Reusch 61362 -Reuse 47939 -Reusing 62917 -Reuter 62917 -Reuters 42399 -ReutersVideo 59491 -Rev 44781 -Rev'd 64905 -Reva 60952 -Reval 58365 -Revaluation 64423 -Revamp 60952 -Revamped 62196 -Revd 61940 -Reveal 54601 -Revealed 50164 -Revealing 58365 -Reveals 51856 -Reveille 63245 -Revel 64423 -Revelation 52886 -Revelations 56324 -Revelator 65170 -Revell 58065 -Revelstoke 64201 -Revenant 64657 -Revenge 49682 -Revenue 44597 -Revenues 51580 -Reverand 64657 -Reverb 60856 -Revere 59357 -Revered 62196 -Reverend 52459 -Reverie 63991 -Revers 62917 -Reversal 59357 -Reverse 44670 -Reversed 58979 -Reverses 63077 -Reversi 64201 -Reversibility 64905 -Reversible 53095 -Reversing 59424 -Reversion 64657 -Reverso 56827 -Revert 61699 -Reverted 65452 -Revesby 65452 -Revfacto 58688 -Review 33190 -Review's 61584 -ReviewThe 63245 -Reviewed 44761 -Reviewer 49423 -Reviewer's 59164 -Reviewers 51580 -Reviewing 55348 -Reviews 32684 -ReviewsDiscussionDell 61699 -ReviewsPhone 65170 -Revise 53485 -Revised 46846 -Revises 64905 -Revising 62613 -Revision 43294 -Revisions 55130 -Revisit 61699 -Revisited 53438 -Revisiting 58365 -Revisor 57482 -Revista 55154 -Revit 60078 -RevitaLume 65452 -Revitalization 57160 -Revitalizing 62196 -Revival 51473 -Revive 58919 -Revived 62762 -Revives 59227 -Reviving 63601 -Revlon 59702 -Revo 57785 -Revocable 64201 -Revocation 58262 -Revoir 64657 -RevokeAccess 64423 -Revolt 57278 -Revolucion 64657 -Revolution 45108 -Revolutionaries 64905 -Revolutionary 51711 -Revolutionize 64423 -Revolutionizing 64905 -Revolutions 59227 -Revolve 60952 -Revolver 54685 -Revolvers 61818 -Revolving 55037 -Revonah 62917 -Revove 62331 -Revs 59630 -Revue 47823 -Revues 64905 -Revved 63792 -Revvelicious 59630 -Revver 52534 -Reward 50906 -Rewarded 65170 -Rewarding 62469 -Rewards 47293 -Rewari 64905 -Rewer 60078 -Rewind 55552 -Rewinding 65170 -Rework 64423 -Reworked 64201 -Rewrite 57741 -RewriteCond 62762 -RewriteRule 63419 -Rewriters 64423 -Rewriting 59357 -Rex 49620 -Rexall 64657 -Rexam 64905 -Rexburg 64423 -Rexel 60405 -Rexford 63601 -Rexroth 64905 -Rexx 64201 -Rexxar 58113 -Rey 51266 -Reye's 61051 -Reyes 53346 -Reykjavik 57831 -Reykjavík 62196 -Reyna 59164 -Reynaldo 64423 -Reyne 61818 -Reynold 65452 -Reynolds 46824 -Reynolds's 63419 -Reynoldsburg 63419 -Rez 61818 -Reza 57399 -Rezaya 61818 -Rezko 62469 -Reznor 63792 -Rezoning 59560 -Rf 61362 -Rfid 61256 -Rfractur 65452 -Rg 63245 -Rh 58919 -Rha 64905 -Rhagfyr 63991 -Rhapsody 49257 -Rhea 60000 -Rhee 62613 -Rheem 60762 -Rheem's 64657 -Rhein 62917 -Rheingold 64905 -Rhema 65170 -Rheological 61940 -Rheology 62066 -Rhesus 61152 -Rhetoric 57876 -Rhetorical 64201 -Rhett 60321 -Rheum 57399 -Rheumatic 60321 -Rheumatism 63077 -Rheumatoid 54581 -Rheumatol 57566 -Rheumatology 53970 -Rhian 64201 -Rhianna 65452 -Rhiannon 58313 -Rhine 55107 -Rhine's 64423 -Rhinebeck 62917 -Rhinestone 57009 -Rhinestones 62917 -Rhino 53211 -Rhinoceros 62762 -Rhinol 60952 -Rhinoplasty 61584 -Rhinos 61152 -Rhiwsaeson 64423 -Rhizobium 59101 -Rhizoma 63245 -Rhizome 59424 -Rhizopus 61584 -Rho 56356 -RhoA 63991 -Rhoades 62066 -Rhoads 62613 -Rhoda 58632 -Rhodamine 64657 -Rhode 43158 -Rhodes 49371 -Rhodesia 59227 -Rhodesian 60492 -Rhodiola 64905 -Rhodium 61584 -Rhodobacter 63077 -Rhodococcus 62917 -Rhododendron 64423 -Rhodopsin 65170 -Rhodospirillum 65452 -Rhodri 62469 -Rhombus 64201 -Rhona 63077 -Rhonda 53729 -Rhonda's 64905 -RhondaVincent 63601 -Rhondda 56420 -Rhone 58417 -Rhos 64657 -Rhubarb 61152 -Rhuddlan 64905 -Rhum 65452 -Rhydian 64423 -Rhye 65452 -Rhyl 56485 -Rhyme 58860 -Rhymefest 65452 -Rhymes 51953 -Rhyming 58162 -Rhymney 65452 -Rhys 55130 -Rhythm 49325 -Rhythm'n'blues 63419 -Rhythmic 60078 -Rhythms 56231 -Rhône 60952 -Ri 56293 -RiCkFX 62762 -RiP 63245 -Ria 57609 -Riad 61940 -Rial 57199 -Rialto 58065 -Rian 64905 -Riana 64201 -Riau 62331 -Rib 54835 -Riba 61472 -Ribak 63991 -Ribas 60856 -Ribavirin 64657 -Ribbed 57653 -Ribble 62762 -Ribbon 49464 -Ribbons 54170 -Ribeiro 57609 -Ribeirão 63991 -Ribera 61818 -Riboflavin 61940 -Ribonuclease 65170 -Ribose 63601 -Ribosomal 60321 -Ribs 57440 -Ric 55423 -Rica 44380 -Rica's 63077 -Rican 53934 -Ricans 63601 -Ricard 62469 -Ricardo 51330 -Riccar 65452 -Riccardo 58523 -Ricci 54519 -Riccio 65452 -Ricco 63077 -Rice 44787 -Rice's 60157 -Ricerca 58523 -Ricerche 64905 -Rich 44068 -Rich's 59039 -RichGem 62762 -RichTextDoclink 54188 -RichTextItem 54151 -RichTextNavigator 54170 -RichTextParagraphStyle 54188 -RichTextRange 54245 -RichTextSection 54151 -RichTextStyle 54283 -RichTextTab 54321 -RichTextTable 54321 -Richa 63792 -Richard 38790 -Richard's 57524 -RichardG 64423 -Richards 49296 -Richardson 48766 -Richardson's 61152 -Richburg 64657 -Riche 60321 -Richelieu 64423 -Richelle 63077 -Richens 65452 -Richer 59560 -Riches 55657 -Richest 55500 -Richey 57199 -Richfield 59227 -Richgirl 61699 -Richi 63792 -Richie 50350 -Richie's 64905 -Richieste 62917 -Richland 53182 -Richlands 62469 -Richly 64201 -Richman 59848 -Richmond 44533 -Richmond's 63419 -Richter 53662 -Richton 59491 -Richwood 65452 -Richy 63991 -Ricinus 62196 -Rick 43820 -Rick's 59101 -RickaPowersPhotography 65452 -Rickard 60405 -Rickenbacker 63792 -Ricker 65170 -Ricketts 63077 -Rickettsia 62066 -Rickettsiae 63419 -Rickettsial 64905 -Rickey 59491 -Ricki 59357 -Rickie 63077 -Rickman 62917 -Rickmansworth 61699 -Ricks 59630 -Rickshaw 61940 -Ricky 49113 -Ricky's 62469 -Rico 43086 -Rico's 63077 -Ricochet 59292 -Ricoeur 62762 -Ricoeur's 63601 -Ricoh 53423 -Ricoto 62469 -Ricotta 61584 -Rid 45994 -Rida 52609 -Riddell 57160 -Ridden 63991 -Ridder 58688 -Riddick 64657 -Riddim 59560 -Riddle 55877 -Riddler 63792 -Riddles 53470 -Ride 45386 -RideShop 63792 -Rideau 59101 -Rider 47453 -Rider's 60670 -Riders 50129 -Rides 50530 -Rideshare 63601 -Ridge 44351 -Ridgeback 57923 -Ridgecrest 59848 -Ridgefield 56721 -Ridgeland 62469 -Ridgeline 59774 -Ridgely 64905 -Ridgemont 62066 -Ridges 60952 -Ridgeview 62917 -Ridgeville 63419 -Ridgeway 57923 -Ridgewood 57653 -Ridgway 59702 -Ridicule 65170 -Ridiculous 60492 -Ridiculously 62066 -Ridin 63991 -Riding 46440 -Ridings 64657 -Ridley 55226 -Rie 63601 -Ried 63991 -Riedel 59164 -Rieder 58632 -Riegel 64423 -Rieger 59848 -Rieger's 65452 -Riehl 63419 -Riel 58577 -Rielle 57741 -Rielly 65170 -Riemann 58113 -Riemannian 58745 -Rien 65170 -Riera 63991 -Ries 62762 -Riese 63991 -Riesling 58523 -Rieter 65170 -Rietveld 62196 -Rieu 65170 -Rifampin 64905 -Rife 63077 -Riff 58470 -Riffs 62331 -Rifkin 64657 -Rifle 50568 -Rifles 52661 -Riflescope 64657 -Rift 55684 -Rig 53470 -Riga 55299 -Rigaku 63419 -Rigatoni 65170 -Rigaud 64423 -Rigby 57399 -Rigel 60952 -Rigen 65452 -Rigg 62917 -Rigging 52686 -Riggs 58113 -Right 40108 -RightMargin 65170 -RightMark 63419 -Righteous 53970 -Righteousness 62917 -Rightmove 60580 -Rights 34034 -Righty 63792 -Rigid 55202 -Rigidity 63245 -Rigo 62469 -Rigor 65170 -Rigorous 61362 -Rigs 56862 -Rihana 64657 -Rihanna 48009 -Rihanna's 59848 -Rijeka 65170 -Rijn 64201 -Rijs 64905 -Rik 60762 -Rika 63991 -Riker 63601 -Riki 61362 -Riki's 64905 -Rikki 62066 -Riksta 63792 -Ril 63991 -Riley 49190 -Riley's 59774 -Rilo 60762 -Rim 51570 -Rimage 58979 -Rimbaud 65452 -Rimbunan 63601 -Rimes 58860 -Rimfire 62613 -Rimi 63991 -Rimini 59101 -Rimmed 65170 -Rimmel 62613 -Rimmer 60580 -Rimming 64201 -Rimonabant 59164 -Rimouski 65452 -Rimrock 61256 -Rims 54581 -Rin 60078 -Rina 59702 -Rinaldi 59101 -Rinaldo 62613 -Rincon 59101 -Rind 64423 -Rinehart 59164 -Ring 43341 -RingSurf 63601 -RingTales 62762 -RingTone 60670 -RingTones 65452 -Ringback 64905 -Ringe 64657 -Ringelmann 65170 -Ringer 53517 -Ringer's 60952 -Ringers 62066 -Ringette 64657 -Ringgit 56791 -Ringgold 63419 -Ringing 60321 -Ringleader 65452 -Ringley 64905 -Ringling 57785 -Ringo 57122 -Ringoes 65170 -Ringold 65452 -Rings 44632 -Ringside 64657 -Ringsurf 63991 -Ringtone 43480 -Ringtones 43276 -Ringwald 62762 -Ringwood 58470 -Ringworm 62917 -Rink 54813 -Rinker 64905 -Rinks 58632 -Rinnai 64423 -Rinne 63601 -Rinpoche 62917 -Rinse 55657 -Rinsho 60321 -Rint 61362 -Rio 45371 -Rio's 63419 -Rioja 59424 -Riordan 61362 -Rios 56356 -Riot 54041 -Riots 60952 -Rip 49590 -Ripa 61362 -Riparian 58417 -Ripe 54041 -RipeTV 59101 -Ripken 60078 -Ripken's 64657 -Ripley 56080 -Ripley's 60952 -Ripoarisch 60238 -Ripoff 50220 -Ripon 59630 -Ripped 55684 -Ripper 50782 -Rippers 60000 -Ripping 58113 -Ripple 55849 -Ripples 63991 -Rippling 65170 -Rippon 64905 -Rips 59491 -Ripstop 62196 -Riptide 64201 -Riquelme 62469 -Riri 64657 -Ririnui 64657 -Ris 59630 -Risa 62331 -Risborough 64657 -Rise 44933 -Risen 61818 -Risener 63419 -Riser 56262 -Risers 60321 -Rises 55738 -Rishi 58365 -Rishikesh 64905 -Rishon 64905 -Rising 47607 -Risk 41996 -Risking 65452 -Risks 49809 -Risky 56618 -Risotto 60670 -Risperdal 62917 -Risperidone 61818 -Risque 61472 -Rissman 65170 -Risto 60762 -Ristorante 55631 -Rita 49986 -Rita's 63792 -Ritalin 60492 -Ritchey 61256 -Ritchie 51650 -Ritchie's 62331 -Rite 53138 -Rites 60762 -Ritmo 60580 -Rittenhouse 60238 -Ritter 55178 -Rittman 65170 -Ritu 63792 -Ritual 54321 -Rituals 59774 -Ritz 54114 -Riu 62469 -Riv 63792 -Riva 57970 -Rivage 63419 -Rival 55526 -Rivalries 61699 -Rivalry 57122 -Rivals 55738 -Rivas 61362 -Rive 60670 -Riven 64905 -Rivendare 60670 -Rivendell 63077 -Rivenroar 65452 -River 38280 -River's 60078 -RiverBarge 52435 -RiverLight 65452 -RiverSource 58365 -Rivera 51425 -Rivera's 64423 -Riverbank 64201 -Riverbed 62331 -Riverbend 60157 -Riverboat 61256 -Rivercard 63991 -Riverdale 55877 -Riverdeep 63601 -Riverfront 55963 -Riverhead 59923 -Riverina 59424 -Riverine 62469 -Riverkeeper 63991 -Riverland 61472 -Rivero 63419 -Rivers 47931 -Riversdale 62613 -Riverside 46723 -Riverstone 65170 -Riverton 60000 -Riverview 55849 -Riverwalk 61051 -Riverwood 65170 -Riverwoods 62613 -Rives 60952 -Rivet 60157 -Rivets 63991 -Riviera 51620 -Rivington 62613 -Rivka 63792 -Rivoli 62613 -Rivonia 65452 -Rix 62613 -Riya 59357 -Riyadh 57046 -Riyal 60580 -Riz 62762 -Rizal 58577 -Rize 64201 -Rizeon 62066 -Rizr 65170 -Rizwan 65170 -Rizzo 58802 -Rizzoli 65170 -Rj 63792 -RjzXeq 60238 -Rk 61472 -Rl 59923 -Rm 54792 -Rmvb 61699 -Rmx 62917 -Rn 58017 -RnB 54601 -Rnd 60157 -Rng 63792 -Ro 55711 -RoBi 64905 -RoHS 53470 -RoI 64201 -RoSeeker 64905 -RoW 60000 -Roach 54540 -Roaches 65170 -Road 37006 -Road's 64657 -RoadMate 62917 -RoadTrip 65170 -Roadblocks 61699 -Roadfly 64423 -Roadhouse 59491 -Roadie 59923 -Roading 64905 -Roadkill 64657 -Roadmap 50060 -Roadmaster 60238 -Roadracing 61818 -Roadrunner 54499 -Roadrunners 63792 -Roads 46868 -Roadshow 55963 -Roadshows 63991 -Roadside 53109 -Roadstar 63792 -Roadster 52198 -Roadsters 65452 -Roadtrek 62917 -Roadtrip 62762 -Roadway 56652 -Roadways 64905 -Roadworks 62331 -Roald 59164 -Roam 61152 -Roaming 56756 -Roan 61584 -Roane 63601 -Roanoke 51541 -Roar 57440 -Roaring 57318 -Roark 65452 -Roars 64423 -Roast 51550 -Roasted 51052 -Roaster 63245 -Roasters 62613 -Roasting 59630 -Roasts 61256 -Roatan 63991 -Rob 44062 -Rob's 58860 -RobWill 63077 -Robards 65452 -Robart 59039 -Robb 55060 -Robbe's 59774 -Robbed 61584 -Robben 58860 -Robber 59560 -Robbers 60405 -Robbery 56140 -Robbie 50277 -Robbie's 64905 -Robbins 51104 -Robbinsdale 62762 -Robby 56827 -Robe 55373 -Robern 62613 -Roberson 58919 -Robert 37480 -Robert's 57199 -RobertJSteal 65452 -Roberta 52130 -Roberta's 64423 -Roberti 63601 -Roberto 50164 -Roberts 46199 -Roberts's 65170 -Robertsbridge 63245 -Robertson 49553 -Robertson's 64905 -Robertsonian 63792 -Robes 57009 -Robeson 58745 -Robey 62613 -Robie 64657 -Robin 44844 -Robin's 59923 -Robina 65452 -Robinho 61362 -Robinhood 65170 -Robins 54581 -Robinson 45718 -Robinson's 57970 -Robinsons 59560 -Robison 61051 -Robitussin 63419 -Robles 58262 -Robo 56791 -RoboBlogger 64201 -RoboCop 61362 -RoboDemo 62762 -RoboHelp 64201 -RoboSavvy 65452 -Robocalls 65170 -Robocop 59101 -Robosoft 65170 -Robot 47706 -RobotShop 63792 -Robotech 64201 -Roboteer 63792 -Robotic 53934 -Robotics 49001 -Robots 51148 -Robson 55037 -Robust 53010 -Robustness 59357 -Robusto 61940 -Roby 58688 -Robyn 53196 -Roc 58313 -Roca 59630 -Rocawear 62917 -Rocca 59774 -Rocce 61818 -Rocchi 64201 -Rocco 54226 -Rocco's 61152 -Roccobarocco 65452 -Roch 63991 -Rocha 55992 -Rochas 61256 -Rochdale 54902 -Roche 51078 -Roche's 64657 -Rochedale 64657 -Rochefort 65170 -Rochelle 54170 -Rochen 63077 -Rocher 60856 -Roches 65452 -Rochester 46418 -Rochford 59292 -Rochon 65170 -Rocio 61584 -Rock 37295 -Rock'N'Roll 65170 -Rock'n 63245 -Rock'n'Roll 62917 -Rock's 58017 -RockMan 63792 -RockShox 61584 -RockYou 65170 -Rockabilly 57278 -Rockall 65452 -Rockaway 59101 -Rockbox 62066 -Rockbridge 65170 -Rockbrook 64905 -Rockdale 60952 -Rocked 62917 -Rockefeller 52845 -Rocker 51772 -Rockers 57199 -Rocket 47984 -Rocket's 62613 -RocketTheme 60078 -Rocketman 64657 -Rocketry 65170 -Rockets 51580 -Rockett 65452 -Rockettes 64657 -Rockferry 63077 -Rockford 52198 -Rockhampton 56972 -Rockhill 64201 -Rockhurst 63991 -Rockies 51193 -Rockin 58860 -Rocking 54499 -Rockingham 54041 -Rockit 63601 -Rockland 55934 -Rockledge 64905 -Rockler 62469 -Rocklin 60762 -Rockman 58212 -RocknRolla 56935 -Rocko 60856 -Rocko's 64201 -Rockport 55992 -Rockridge 64201 -Rocks 48152 -Rockstar 53361 -Rockstars 64657 -Rockton 63419 -Rocktron 63792 -Rockumentary 65452 -Rockvale 64201 -Rockville 54151 -Rockwall 60000 -Rockwell 53109 -Rockwell's 65170 -Rockwood 59424 -Rockwool 65452 -Rocky 46220 -Rocky's 63077 -Rococo 60762 -Rocío 64423 -Rod 45902 -Rod's 63991 -Roda 61940 -Rodale 61940 -Rodanthe 55084 -Rodd 61699 -Rodded 63601 -Roddick 56324 -Roddy 58470 -Rode 59560 -Rodel 65170 -Roden 60157 -Rodent 59357 -Rodentia 55500 -Rodents 58365 -Rodeo 51043 -Roderic 64905 -Roderick 57653 -Rodeway 57970 -Rodger 57741 -Rodgers 53109 -Rodham 56080 -Rodin 63077 -Rodman 58577 -Rodney 50150 -Rodolfo 59702 -Rodolphe 63991 -Rodos 65452 -Rodrick 64657 -Rodrigo 54245 -Rodrigues 57160 -Rodriguez 48892 -Rodriguez's 60405 -Rodríguez 56293 -Rods 50940 -Rodway 61818 -Rodwell 65452 -Roe 55084 -Roebuck 55178 -Roeder 63245 -Roederer 64657 -Roehampton 62762 -Roehl 63991 -Roel 65170 -Roeland 65170 -Roemer 65452 -Roentgen 63077 -Roentgenol 61051 -Roethlisberger 61152 -Rog 62469 -Rogaine 64201 -Rogan 61152 -Rogelio 64657 -Rogen 60000 -Roger 43796 -Roger's 61362 -Rogerio 65452 -Rogers 46102 -Rogerson 63419 -Roget 64423 -Roget's 58212 -Rogge 63792 -Rogier 63077 -Rogoff 65452 -Rogue 48721 -Rogue's 63792 -Rogues 55274 -Rogério 60321 -Roh 62762 -Rohan 55992 -Rohde 61699 -Rohini 64905 -Rohit 58017 -Rohl 62613 -Rohm 60157 -Rohn 62066 -Rohnert 59774 -Rohr 61940 -Rohrer 65452 -Rohrig 61152 -Rohrlick 63077 -Rohtak 63601 -Rohypnol 65452 -Roi 61256 -Roisin 59560 -Roissy 64423 -Roiworld 57524 -Roja 63991 -Rojak 64657 -Rojas 58802 -Rojo 51321 -Rok 55299 -Rokeby 65170 -Roker 63991 -Rokk 62917 -Rokr 61818 -Roksan 63792 -Roky 65170 -Rol 62762 -Roland 48949 -Roland's 65170 -Rolando 58417 -Roldan 65452 -Role 43688 -Roleplay 58632 -Roleplaying 55500 -Roles 50150 -Rolex 53679 -Rolf 55060 -Rolfe 60321 -Roll 43198 -Rolla 60952 -RollaNet 64423 -Rolland 64423 -Rollator 62196 -Rollators 64905 -Rollaway 62196 -Rollback 64657 -Rollbacks 65170 -Rolle 62762 -Rolled 55793 -Rollei 60952 -Roller 48454 -Rollerball 57923 -Rollerblade 58577 -Rollercoaster 62469 -Rollers 56293 -Rollie 63991 -Rollin 59774 -Rolling 46420 -Rollingwolf's 65452 -Rollingwood 65170 -Rollins 54879 -Rollo 60856 -Rollout 61940 -Rollover 54360 -Rolls 48418 -Rollup 59848 -Rolly 61940 -Rolo 65452 -Roloc 63419 -Rolodex 64905 -Roly 64423 -Rom 53470 -Roma 49376 -Roma's 61818 -Romagna 63792 -Romain 58860 -Romaine 62196 -Roman 44385 -Roman's 63792 -Romana 54770 -Romance 44929 -Romances 62331 -Romancing 62066 -Romane 62917 -Romanesque 62196 -Romani 59630 -Romania 43506 -Romania's 60321 -Romanian 47943 -Romanians 64423 -Romanischer 62762 -Romano 54727 -Romanov 60952 -Romans 52118 -Romansch 61699 -Romantic 47548 -Romantica 62613 -Romanticism 61256 -Romantics 65170 -Romanus 65452 -Romany 58470 -Rome 44630 -Rome's 59923 -Romenesko 49972 -Romeo 47879 -Romeoville 61362 -Romer 62469 -Romero 54360 -Romero's 62917 -Romford 52472 -Romi 65452 -Romijn 61940 -Romina 63991 -Rommel 60321 -Romney 52496 -Romney's 62331 -Romo 54321 -Romp 64657 -Romper 61256 -Roms 58365 -Romsey 58979 -Romulan 64423 -Romulus 56935 -Romy 60856 -România 61472 -României 64423 -Ron 43560 -Ron's 59424 -RonBow 65452 -Rona 60405 -Ronald 46432 -Ronaldinho 57609 -Ronaldo 52712 -Ronaldo's 62066 -Ronan 55684 -Roncalli 65452 -Ronchi 64201 -Ronco 64423 -Ronda 59101 -Ronde 61818 -Rondo 57566 -Rondon 65170 -Ronen 60492 -Rong 60670 -Roni 60492 -Ronin 57831 -Ronni 65170 -Ronnie 50750 -RonnieShellist 63419 -Ronny 59101 -Ronson 55202 -Ronstadt 61818 -Rony 64657 -Roo 58212 -Rood 60078 -Roof 47843 -Roofer 63601 -Roofers 60856 -Roofing 49190 -Roofs 59923 -Rooftop 56862 -RooftopComedy 63991 -Rooibos 60157 -Rook 60580 -Rookery 63419 -Rookie 50774 -Rookies 51113 -Rooks 62917 -Rookwood 63077 -Room 37348 -Roomba 60321 -Roommate 54519 -Roommates 58919 -Rooms 43774 -Roomshare 61940 -Roomy 64657 -Rooney 52622 -Rooney's 64423 -Roop 64905 -Roopa 64905 -Roorkee 63601 -Roos 56618 -Roosevelt 49992 -Roosevelt's 60762 -Roost 61051 -Rooster 54992 -Roosters 61472 -Root 47672 -Rooted 62917 -Rooter 65170 -Rooters 65452 -Rootes 64657 -Rooting 63601 -Rootkit 61584 -Roots 48985 -RootsChat 61472 -RootsWeb 54969 -RootsWeb's 63419 -Rootstown 65170 -Rootsweb 63601 -Rope 50623 -Roper 55178 -Ropers 62469 -Ropes 55849 -Roping 62196 -Ropivacaine 63419 -Roppongi 64423 -Ropu 64423 -Roque 60952 -Rorschach 57160 -Rory 54226 -Ros 58313 -Rosa 48619 -Rosa's 62066 -Rosacea 58470 -Rosales 61699 -Rosalia 62917 -Rosalie 56721 -Rosalind 57696 -Rosalinda 64201 -Rosalyn 61818 -Rosamond 60492 -Rosamund 62469 -Rosana 64423 -Rosanna 58860 -Rosanne 58365 -Rosaria 64905 -Rosaries 61818 -Rosario 52584 -Rosarito 64201 -Rosary 55348 -Rosas 62469 -Rosati 63419 -Rosato 57524 -Rosca 63991 -Rosco 64905 -Roscoe 54096 -Roscommon 56862 -Rose 42397 -Rose's 59774 -Roseanne 58162 -Rosebank 61818 -Roseberry 65170 -Rosebery 60580 -Rosebud 57524 -Roseburg 62762 -Rosecliff 61940 -Rosecrans 63601 -Rosedale 57122 -Rosehill 63077 -Roseland 60157 -Rosell 64423 -Rosella 64423 -Roselle 60000 -Roselyn 60670 -Roseman 62917 -Rosemarie 60762 -Rosemary 51131 -Rosemary's 64201 -Rosemead 61818 -Rosemont 57609 -Rosemount 61584 -Rosen 53630 -Rosenbaum 59227 -Rosenberg 52244 -Rosenberger 62469 -Rosenblatt 61152 -Rosenblum 59039 -Rosendahl 64657 -Rosendale 64905 -Rosenfeld 57741 -Rosenfield 65452 -Rosenstiel 64201 -Rosenthal 54902 -Rosenwald 63601 -Rosenzweig 63245 -Roses 47515 -Rosetta 56551 -Rosette 60580 -Rosettes 63792 -Roseville 54005 -Rosewood 55348 -Rosey 63792 -Rosh 56791 -Roshan 57609 -Rosi 64905 -Rosia 65452 -Rosie 52107 -Rosie's 64201 -Rosier 64905 -Rosiglitazone 65170 -Rosin 63245 -Rosina 64657 -Rosita 65452 -Roskilde 57876 -Roslindale 64423 -Roslyn 58313 -Rosman 64905 -Rosmarinus 63792 -Rosner 62613 -Rospatent 63991 -Ross 44236 -Ross's 61051 -Rossa 60856 -Rossby 64423 -Rossdale 56420 -Rossellini 62762 -Rossendale 61256 -Rosser 62469 -Rossetti 60952 -Rossi 51804 -Rossi's 65170 -Rossignol 58688 -Rossii 62196 -Rossing 65452 -Rossini 60580 -Rossiter 63245 -Rossland 64905 -Rosslyn 60952 -Rossman 65452 -Rosso 59630 -Rossouw 64657 -Rossow 64423 -Rossum 61256 -Rossville 61584 -Roster 47915 -Rosters 57696 -Rostherne 61940 -Rostock 61256 -Rostrum 62917 -Roswell 53565 -Rosy 60670 -Rosé 58470 -Rot 59560 -Rota 57923 -Rotana 64905 -Rotarod 64905 -Rotary 49135 -Rotate 56324 -Rotated 63601 -Rotating 54792 -Rotation 53813 -Rotational 59630 -Rotations 61584 -Rotator 53226 -Rotavirus 62613 -Rotax 62066 -Rotel 62613 -Rotella 64423 -Rotem 63245 -Roth 50213 -Roth's 62196 -Rothbard 64905 -Rothenberg 61152 -Rothenburg 62613 -Rother 62469 -Rotherham 54151 -Rotherhithe 54380 -Rothman 59101 -Rothschild 57084 -Rothstein 62331 -Rothstein's 63601 -Rothwell 60078 -Roti 60670 -Rotini 65170 -Rotisserie 62613 -Rotman 64423 -Roto 57923 -RotoDirect 62762 -RotoFeed 65452 -Rotor 55849 -RotorMotor 63792 -Rotors 57653 -Rotorua 56791 -Rott 65452 -Rotten 52648 -Rotter 63991 -Rotterdam 53695 -Rotting 57566 -Rotts 64423 -Rottweiler 57318 -Rotunda 60157 -Roubini 64201 -Rouble 60492 -Rouen 60321 -Rouge 48991 -Rough 49682 -Roughing 64905 -Roughly 58688 -Roughness 61940 -Roughriders 59560 -Roulette 54581 -Round 42306 -RoundCube 64657 -Roundabout 56293 -Rounded 56388 -Rounder 61472 -Rounders 63991 -Roundhouse 61818 -Rounding 56827 -Rounds 54902 -Roundtable 52447 -Roundtables 64201 -Roundtrip 64201 -Roundup 50372 -Roundups 63601 -Roundwood 63419 -Rourke 59923 -Rous 62613 -Rouse 56324 -Roush 58523 -Rousse 64201 -Rousseau 58365 -Roussel 64423 -Roussillon 62762 -Rout 55934 -Routan 62762 -Route 44259 -Router 49906 -Routers 51856 -Routes 51783 -Routh 62917 -Routine 53038 -Routinely 57482 -Routines 58470 -Routing 51425 -Routledge 56110 -Routt 65452 -Roux 57696 -Rove 55202 -Rove's 62613 -Rover 46189 -RoverPC 63419 -Rovers 52940 -Roving 60078 -Row 44817 -RowCount 64657 -RowLabels 63991 -RowLines 62331 -Rowallan 65170 -Rowan 53301 -Rowdies 65170 -Rowdy 60492 -Rowe 54188 -Rowe's 64905 -Rowell 61940 -Rowen 62196 -Rowena 59292 -Rowenta 61051 -Rowers 63077 -Rowing 51985 -Rowland 53581 -Rowlands 60952 -Rowlett 60580 -Rowley 55849 -Rowling 55299 -Rowling's 64657 -Rowntree 63419 -Rows 54946 -Rowse 62613 -Rox 59227 -RoxAnn 63077 -Roxana 59101 -Roxane 61256 -Roxanna 63792 -Roxanne 56293 -Roxas 60238 -Roxboro 65170 -Roxborough 64905 -Roxburgh 64201 -Roxburghshire 63601 -Roxbury 57440 -Roxette 56140 -Roxie 60238 -Roxio 56585 -Roxx 65170 -Roxy 50256 -Roy 45504 -Roy's 59101 -Roya 64905 -Royakan 65452 -Royal 38612 -Royal's 63245 -Royale 53010 -Royall 64201 -Royals 52435 -Royalties 59039 -Royalton 61051 -Royalty 45835 -Royaume 65452 -Roybal 64905 -Royce 51762 -Royer 63419 -Royle 62469 -Royo 65170 -Royse 63419 -Royster 61584 -Royston 56935 -Roz 61699 -Roza 64657 -Rozelle 65452 -Rozen 60321 -Rozhdestvensky 63991 -Rp 60321 -Rpm 62613 -Rpt 63601 -Rr 60762 -Rs 48025 -Rss 49044 -Rstrnt 63601 -Rsv 61362 -Rt 56231 -Rte 57923 -Rtgs 63991 -Rtn 63077 -RtåR 59702 -Ru 55684 -Rua 57199 -Ruan 61362 -Rub 55084 -Rubashkin 65452 -Rubbed 60238 -Rubber 46004 -Rubberball 58523 -Rubberized 63991 -Rubbermaid 57199 -Rubbers 55373 -Rubbing 61940 -Rubbish 54601 -Rubble 63601 -Rube 62917 -Rubell 63419 -Rubella 62917 -Ruben 53796 -Rubens 60405 -Rubenstein 59039 -Rubi 64905 -Rubia 61818 -Rubicon 58688 -Rubidoux 59630 -Rubies 60580 -Rubik's 56356 -Rubiks 60000 -Rubin 54170 -Rubino 61051 -Rubinstein 58577 -Rubio 57785 -Rubisco 60952 -Ruble 58802 -Rubles 63792 -Rubric 61584 -Rubs 61152 -Rubus 64657 -Ruby 45643 -Ruby's 60157 -Rubén 63419 -Ruched 63601 -Ruchu 65452 -Ruck 65170 -Rucker 55934 -Rucksack 56356 -Rucksacks 62762 -Ruckus 57970 -Rud 64423 -Rudd 52584 -Rudd's 61818 -Rudden 64423 -Rudder 61152 -Ruddick 64657 -Ruddy 63419 -Rude 53662 -Rudge 61699 -Rudgwick 65452 -Rudi 55934 -Rudiger 62613 -Rudimentary 62917 -Rudiments 64657 -Rudin 63991 -Rudman 59560 -Rudnick 64905 -Rudolf 53796 -Rudolph 53581 -Rudra 63792 -Rudy 50750 -Rudy's 61818 -Rudyard 60670 -Rudyard's 65452 -Rue 52130 -Rueben 64423 -Rueda 62613 -Ruel 63991 -Ruf 63419 -Ruff 58113 -Ruffian 62331 -Ruffin 63792 -Ruffle 57923 -Ruffled 60762 -Ruffles 63419 -Rufiyaa 64201 -Rufus 54601 -Rug 50865 -Rugby 42812 -RugbyHeaven 57970 -RugbyNation 63991 -Rugelach 65452 -Ruger 58802 -RugerRupp 63991 -Rugged 54226 -Ruggiero 63792 -Ruggles 63077 -Rugrats 64423 -Rugs 48776 -Ruhl 63419 -Ruhnu 62196 -Ruhr 59357 -Rui 58262 -Ruidoso 65452 -Ruin 56200 -Ruined 60000 -Ruins 53052 -Ruislip 59101 -Ruiz 52845 -Rukh 56972 -Rukia 61940 -Rule 43990 -Rulebook 63601 -Ruled 59039 -Rulemaking 59424 -Rulemakings 65452 -Ruler 55821 -Rulers 58919 -Rules 38873 -Ruling 52996 -Rulings 55963 -Rum 53109 -Ruma 64657 -Rumah 60492 -Rumania 63991 -Rumanian 61362 -Rumba 61472 -Rumbas 64201 -Rumble 53196 -Rumer 61256 -Rumford 65452 -Rumi 60000 -Rumi's 63601 -Ruminations 63419 -Rummage 62066 -Rummy 64201 -Rumor 53346 -Rumored 63991 -Rumors 47843 -Rumour 59560 -Rumours 55821 -Rump 63601 -Rumplestiltskin 62469 -Rumpole 65452 -Rumsey 62762 -Rumsfeld 57278 -Rumson 62196 -Rumänien 62066 -Run 42527 -Run's 57923 -RunOnServer 64905 -Runa 64905 -Runabout 64905 -Runaway 54685 -Runawaybox 61362 -Runaways 63991 -Runcorn 57399 -Runde 63077 -Rundgren 64423 -Rundle 61699 -Rundown 64657 -Rundsch 63601 -Rune 55684 -RuneScape 55014 -Runes 60000 -Runescape 52303 -Runetotem 58577 -Runge 63792 -Runnable 63991 -Runnels 62613 -Runner 49841 -Runner's 58523 -Runners 53934 -Runnin 60762 -Running 42902 -RunningForums 63077 -RunningWithScissors 63792 -Runnings 62613 -Runny 64657 -Runnymede 61940 -Runoff 58470 -Runs 50242 -Runtime 51814 -Runway 50492 -Runways 65452 -Runyon 65170 -Rupa 64423 -Rupe 64657 -Rupee 52899 -Rupees 58860 -Rupert 52315 -Rupert's 59292 -Rupiah 57876 -Rupp 61256 -Ruppia 64423 -Rupture 59702 -Ruptured 63601 -Rural 43555 -RuralNI 61362 -Ruroini 60762 -Rurouni 59630 -Rus 60321 -Rusby 61256 -Rusch 64201 -Ruse 65452 -Rush 46423 -Rushden 64657 -Rushdie 61362 -Rushed 65452 -Rushers 63792 -Rushes 62613 -Rushford 63991 -Rushing 56652 -Rushlake 64905 -Rushmore 58688 -RushmoreDrive 61940 -Rushton 62762 -Rushville 63792 -Rusk 58065 -Ruski 65452 -Ruskin 58577 -Ruslan 62066 -Ruslana 61699 -Russ 50662 -RussRamz 65452 -Russe 62331 -Russel 56518 -Russell 44597 -Russell's 57399 -Russellville 59039 -Russert 58262 -Russet 63991 -Russia 40973 -Russia's 51814 -RussiaToday 61699 -Russian 39834 -Russians 52221 -Russias 63792 -Russo 54581 -Rust 53010 -Ruste 61472 -Rusted 64423 -Rustenburg 62917 -Rusti 63991 -Rustic 52858 -Rustica 61362 -Rustin 64905 -Rustler 65452 -Ruston 65170 -Rusty 52739 -Rusty's 61362 -RustyCrook 64905 -Rusu 65452 -Ruta 58919 -Rutgers 50694 -Ruth 46982 -Ruth's 58745 -Ruthenian 64905 -Ruthenians 63601 -Ruthenium 64905 -Rutherford 53470 -Rutherglen 61584 -Ruthie 60580 -Ruthin 59424 -Ruthless 61362 -Ruthven 64657 -Rutile 64657 -Rutland 52411 -Rutledge 59164 -Rutten 64201 -Ruttenberg 63601 -Rutter 60670 -Ruud 59774 -Ruut 64657 -Ruyter 65452 -Ruzicka 65452 -Rv 58860 -RvR 59774 -Rw 63991 -Rwanda 46651 -Rwandan 60238 -Rwy 59774 -Rx 46862 -RxList 63792 -Ry 59424 -RyRy 64657 -Ryan 42240 -Ryan's 56080 -Ryanair 58577 -Ryans 61818 -Ryda 64423 -Rydberg 59923 -Ryde 58523 -Ryden 63792 -Ryder 52635 -Ryders 64657 -Rydex 64657 -Rydges 62331 -Rydon 64423 -Rye 52597 -Ryedale 61584 -Ryegate 64905 -Ryerson 60580 -Ryka 61940 -Ryland 59560 -Ryman 59292 -Ryn 64657 -Ryndam 64657 -Ryness 65170 -Ryo 58365 -Ryobi 60000 -Ryokan 62066 -Ryoko 64201 -Ryosuke 65452 -Ryouko 61818 -Ryshpan 65170 -Ryton 61818 -Ryu 58417 -Ryuichi 60000 -Ryusei 64905 -Ryuusei 64201 -Ryvarden 64423 -Ryze 58017 -Ryzom 65170 -Rádió 65170 -Règlement 63419 -Réaction 62917 -Réamhamhairc 59848 -Réanimation 65452 -Récepteur 61472 -Référence 63991 -Régie 60670 -Région 62066 -Régional 65452 -Réponse 63991 -République 61818 -Réseau 61584 -Réserve 63245 -Résistance 62066 -Résultats 63245 -Résumé 49060 -Résumés 65170 -Réunion 56324 -Río 58577 -Rós 61362 -Rôshi 65170 -Röyksopp 62917 -Rødbyhavn 62331 -Røros 63419 -Rüdiger 64423 -S 33699 -S'identifier 61940 -S'inscrire 65170 -S'mores 64423 -S'pore 58113 -S's 60762 -SA 41635 -SA's 63077 -SAA 54622 -SAAB 58017 -SAAC 62469 -SAARC 63245 -SAATCHI 65170 -SAB 60321 -SABC 65452 -SABER 65170 -SABR 64423 -SABRC 63419 -SABRINA 62066 -SAC 53712 -SACD 60321 -SACHS 64657 -SACK 63419 -SACOG 59039 -SACRAMENTO 59702 -SACRED 61699 -SACRIFICE 65452 -SAD 56652 -SADC 61256 -SADDLE 64905 -SAE 53882 -SAF 59039 -SAFARI 62762 -SAFARIS 63419 -SAFC 63601 -SAFE 45742 -SAFER 62762 -SAFETY 48687 -SAFT 62066 -SAG 56687 -SAG's 64423 -SAGA 60856 -SAGE 46800 -SAGE's 60670 -SAH 60670 -SAHARA 60321 -SAHM 64657 -SAHRA 62917 -SAI 60952 -SAIC 59848 -SAID 56170 -SAIL 59357 -SAILING 61940 -SAILOR 62613 -SAINT 52913 -SAINTS 62613 -SAJA 65170 -SAKS 59292 -SAKSFIRST 64423 -SAKURA 64905 -SAL 60670 -SALAD 57318 -SALARIES 63245 -SALARY 56021 -SALE 44360 -SALEM 59702 -SALES 48996 -SALFORD 64905 -SALINAS 64657 -SALISBURY 62762 -SALLY 63991 -SALMON 61256 -SALMONELLA 63419 -SALOMON 65452 -SALON 58523 -SALONS 64905 -SALOON 63419 -SALSA 63419 -SALT 55154 -SALTO 63245 -SALTS 64905 -SALUTE 63991 -SALVADOR 58979 -SALVAGE 63419 -SAM 52411 -SAMANTHA 62196 -SAMBA 64201 -SAME 48877 -SAML 64657 -SAMMY 65170 -SAMOA 58632 -SAMPLE 54419 -SAMPLES 59491 -SAMPLING 61051 -SAMS 62762 -SAMSON 64423 -SAMSUNG 52096 -SAMUEL 57009 -SAN 47207 -SANAYI 64657 -SANCHEZ 62917 -SAND 58919 -SANDALS 63991 -SANDER 63245 -SANDERS 64201 -SANDING 65452 -SANDISK 63792 -SANDRA 57831 -SANDS 63601 -SANDWICH 60405 -SANDWICHES 64905 -SANDY 60670 -SANFL 62469 -SANFORD 62613 -SANG 64201 -SANITARY 58688 -SANITATION 62331 -SANJAY 64905 -SANParks 63245 -SANS 57160 -SANTA 53153 -SANTANA 53392 -SANTIAGO 63601 -SANTO 64905 -SANTOS 61051 -SANYO 59848 -SANs 61152 -SAO 60762 -SAP 45804 -SAP's 63792 -SAPARD 61940 -SAPD 61584 -SAPPHIRE 58979 -SAPS 63991 -SAPT 65170 -SAQA 65452 -SAR 50799 -SARA 56485 -SARAH 53970 -SARAHB 62917 -SARASOTA 63245 -SARATOGA 65452 -SARGAM 64905 -SARI 61256 -SARKARI 64905 -SARL 63792 -SARS 54992 -SAS 47150 -SASHA 63792 -SASKATCHEWAN 61940 -SASL 58632 -SASS 65170 -SAT 49446 -SATA 48359 -SATAII 63601 -SATAN 63245 -SATB 60238 -SATC 63792 -SATCOM 65170 -SATCU 63991 -SATELLITE 56791 -SATIN 60492 -SATISFACTION 59923 -SATISFACTORY 65452 -SATISFIED 63077 -SATML 64201 -SATO 61584 -SATURATION 65170 -SATURDAY 53882 -SATURN 63419 -SATs 61940 -SAU 59164 -SAUCE 56791 -SAUDI 57876 -SAUM 64905 -SAUNDERS 64905 -SAUSAGE 61940 -SAUSAGES 63419 -SAV 62469 -SAVAGE 61699 -SAVANNAH 61362 -SAVE 45848 -SAVED 60238 -SAVER 62196 -SAVES 63601 -SAVING 59424 -SAVINGS 57970 -SAW 52597 -SAWMILL 62917 -SAWS 65452 -SAX 60492 -SAXOPHONE 62469 -SAXS 63601 -SAY 51731 -SAYING 61584 -SAYS 55348 -SAZ 62196 -SB 48114 -SBA 55202 -SBB 62613 -SBC 54264 -SBC's 65452 -SBCA 60321 -SBD 59848 -SBDC 62613 -SBE 61818 -SBI 58745 -SBIII 64423 -SBIR 63792 -SBJ 64657 -SBK 61256 -SBL 62762 -SBM 61472 -SBME 63077 -SBN 61256 -SBNation 64201 -SBOX 65452 -SBP 57238 -SBR 60405 -SBS 51284 -SBT 59357 -SBU 65170 -SC 41511 -SCA 56388 -SCAD 63245 -SCADA 58417 -SCAG 58065 -SCALA 63792 -SCALE 56551 -SCALES 63991 -SCALING 63792 -SCAM 54622 -SCAMS 64657 -SCAN 58470 -SCANDAL 61362 -SCANDALS 64905 -SCANDINAVICA 63419 -SCANNER 57524 -SCANNING 63991 -SCANS 63601 -SCAR 62762 -SCARED 63419 -SCARLET 64423 -SCART 58417 -SCARY 59848 -SCASCAM 63601 -SCATTERING 62762 -SCB 64905 -SCC 55299 -SCCA 60492 -SCD 58802 -SCDCFCL 61472 -SCDOT 62762 -SCE 58919 -SCEA 62331 -SCENARIO 61584 -SCENE 58745 -SCENES 57653 -SCENIC 62331 -SCEPC 64905 -SCF 56935 -SCG 60856 -SCH 58860 -SCHEDULE 45010 -SCHEDULED 60238 -SCHEDULES 58065 -SCHEDULING 61699 -SCHEME 56262 -SCHEMES 60952 -SCHEV 64657 -SCHILLER 62469 -SCHIP 60762 -SCHMIDT 63792 -SCHMITT 65170 -SCHNEIDER 63792 -SCHOLARS 64905 -SCHOLARSHIP 56791 -SCHOLARSHIPS 63077 -SCHOOL 45914 -SCHOOLGIRLS 65452 -SCHOOLS 52805 -SCHOTTKY 65170 -SCHWAB 64657 -SCHWARTZ 62917 -SCI 53865 -SCIAP 64905 -SCID 62613 -SCIENCE 49488 -SCIENCE'S 65170 -SCIENCES 53597 -SCIENTIFIC 55766 -SCIENTIST 62331 -SCION 61256 -SCIPS 64905 -SCIRUS 63601 -SCIT 65170 -SCIWEB 64657 -SCJ 62917 -SCJP 62066 -SCL 59630 -SCLC 60762 -SCM 52351 -SCN 58632 -SCNS 65170 -SCO 55821 -SCOA 64423 -SCONDVA 63601 -SCOOBY 64905 -SCOOP 59702 -SCOOPS 65452 -SCOOTER 58365 -SCOOTERS 62762 -SCOPE 56140 -SCOR 62066 -SCORE 53010 -SCOREBOARD 59848 -SCORES 59491 -SCORING 61699 -SCORM 63077 -SCOT 65170 -SCOTCH 62762 -SCOTIA 63991 -SCOTLAND 54321 -SCOTT 53196 -SCOTTISH 58577 -SCOTTS 65452 -SCOTTSDALE 62066 -SCOTUS 63077 -SCOUT 61472 -SCP 57609 -SCR 52968 -SCRA 61472 -SCRAP 64201 -SCRATCH 60238 -SCREAM 60762 -SCREEN 55738 -SCREENING 59101 -SCREENS 61584 -SCREENSHOTS 61699 -SCREW 52818 -SCREWS 60952 -SCRIPPS 64657 -SCRIPT 59702 -SCRIPTS 62196 -SCROLL 63991 -SCRS 65452 -SCRUBS 61362 -SCRUTINY 60580 -SCS 59039 -SCSI 49880 -SCSU 61256 -SCT 58745 -SCTE 63991 -SCU 62331 -SCUBA 58688 -SCUK 58365 -SCULPTURE 64905 -SCUP 61699 -SCUP's 65452 -SCV 62613 -SCVMM 64657 -SCXD 64423 -SCYTHE 64657 -SD 42232 -SDA 56899 -SDB 62331 -SDC 59491 -SDCC 63601 -SDD 63991 -SDDS 65170 -SDE 59774 -SDF 58802 -SDFG 59491 -SDFGs 63792 -SDG 61699 -SDH 63077 -SDHC 54792 -SDI 56756 -SDIO 61940 -SDJ 61152 -SDK 47907 -SDKs 58113 -SDL 58212 -SDLC 64905 -SDLP 62613 -SDM 57876 -SDMA 63601 -SDN 49620 -SDP 58017 -SDPO 63245 -SDR 58523 -SDRAM 51888 -SDS 51368 -SDSA 65170 -SDSL 64905 -SDSS 61051 -SDSU 62762 -SDT 64423 -SDTV 63991 -SE 42689 -SEA 51377 -SEABROOK 64201 -SEAC 64201 -SEAFDEC 63077 -SEAFOOD 59357 -SEAGATE 61940 -SEAGIG 62331 -SEAGULL 64905 -SEAL 53066 -SEALANT 63077 -SEALED 58113 -SEALER 65452 -SEALING 61699 -SEALS 61584 -SEALs 54341 -SEAN 57653 -SEAR 58802 -SEARCH 38268 -SEARCHED 61818 -SEARCHES 54399 -SEARCHING 64201 -SEARO 62613 -SEARS 63077 -SEAS 60492 -SEASON 53346 -SEASONAL 61940 -SEASONS 58745 -SEAT 52447 -SEATER 61940 -SEATING 60321 -SEATS 57696 -SEATTLE 57278 -SEB 59560 -SEBASTIAN 62066 -SEBI 60321 -SEBS 64201 -SEC 46071 -SEC's 59848 -SECA 62917 -SECAM 65452 -SECC 62917 -SECFanatics 64905 -SECIS 61940 -SECO 65452 -SECOND 51711 -SECONDARY 54749 -SECONDED 57876 -SECONDO 59630 -SECONDS 61256 -SECOURS 64657 -SECRET 53970 -SECRETARIAT 55299 -SECRETARIES 63991 -SECRETARY 56110 -SECRETION 63991 -SECRETS 58688 -SECTION 45904 -SECTIONS 54041 -SECTOR 53241 -SECTORAL 64905 -SECTORS 63991 -SECURE 56687 -SECURED 61584 -SECURING 62469 -SECURITIES 56200 -SECURITY 46392 -SECVP 63601 -SECs 65452 -SED 60580 -SEDAN 62331 -SEE 46071 -SEED 56420 -SEEDS 62196 -SEEING 63792 -SEEK 56972 -SEEKERS 62469 -SEEKING 61256 -SEEKS 62917 -SEEM 64423 -SEEMS 64905 -SEEN 56935 -SEEP 64201 -SEER 60405 -SEES 61818 -SEF 60321 -SEFTON 63792 -SEG 63077 -SEGA 57358 -SEH 61362 -SEHK 61940 -SEI 56420 -SEIKO 62331 -SEIS 64905 -SEISMIC 62917 -SEIU 64423 -SEIZURE 64201 -SEK 53196 -SEL 56585 -SELECT 49240 -SELECTBOARD 63792 -SELECTED 55500 -SELECTING 63792 -SELECTION 53470 -SELECTIONS 63245 -SELECTIVE 61818 -SELECTOR 63077 -SELF 54749 -SELL 50718 -SELLER 54813 -SELLERS 57831 -SELLING 56262 -SELLS 64423 -SELWYN 60952 -SELinux 60952 -SEM 50394 -SEMA 54581 -SEMESTER 62066 -SEMI 59774 -SEMICONDUCTOR 59039 -SEMICONDUCTORS 65170 -SEMIFINAL 64201 -SEMINAR 58979 -SEMINARS 61051 -SEMS 65452 -SEN 55274 -SENATE 53796 -SENATOR 58860 -SENATORIAL 57696 -SEND 49529 -SENDING 60952 -SENECA 63419 -SENEGAL 60405 -SENG 64905 -SENGUPTA 65452 -SENIOR 53762 -SENIORS 62917 -SENNHEISER 63245 -SENS 63245 -SENSE 59560 -SENSEX 65170 -SENSING 62613 -SENSITIVE 62469 -SENSITIVITY 60762 -SENSOR 56687 -SENSORS 60492 -SENT 57923 -SENTA 55500 -SENTENCE 63245 -SEO 44725 -SEOUL 65452 -SEP 51899 -SEPA 61152 -SEPARATE 59424 -SEPARATELY 64905 -SEPARATION 60856 -SEPARATIONS 64905 -SEPIA 63991 -SEPM 61584 -SEPT 58919 -SEPTA 64905 -SEPTEMBER 49452 -SEPTIC 64423 -SEQ 53024 -SEQUENCE 60952 -SER 58313 -SERA 64657 -SERBIA 60762 -SERC 64201 -SERC's 65170 -SERCA 64905 -SERENADE 65452 -SERGE 65170 -SERGIO 62917 -SERIAL 55766 -SERIALS 61940 -SERIE 64423 -SERIES 47839 -SERIOUS 58417 -SERIOUSLY 64657 -SERO 65452 -SERP 62469 -SERPs 63245 -SERS 60856 -SERUM 60670 -SERV 65170 -SERVANT 64905 -SERVE 60405 -SERVED 60492 -SERVER 54207 -SERVERS 61584 -SERVES 62917 -SERVICE 45035 -SERVICEMAGIC 59424 -SERVICES 41681 -SERVICII 64905 -SERVICING 62613 -SERVIER 60762 -SERVING 59164 -SERVO 64657 -SES 53952 -SESAME 64201 -SESSION 51358 -SESSIONS 58577 -SET 46610 -SETAC 61940 -SETBACK 63792 -SETH 63601 -SETI 63245 -SETOFF 64905 -SETS 52175 -SETTING 57318 -SETTINGS 61472 -SETTLE 65170 -SETTLEMENT 57696 -SETTLEMENTS 63792 -SETUP 59491 -SETVAR 63601 -SEV 62762 -SEVEN 56721 -SEVENTH 62066 -SEVERAL 58577 -SEVERE 61818 -SEVILLE 61472 -SEVIS 63601 -SEW 62917 -SEWAGE 63601 -SEWER 56485 -SEWING 60238 -SEX 49906 -SEXAFS 64657 -SEXTO 65170 -SEXUAL 57923 -SEXY 51752 -SEYCHELLES 61152 -SEYMOUR 63991 -SEZ 60952 -SEs 63077 -SF 44869 -SF's 64905 -SFA 59702 -SFB 60762 -SFC 58065 -SFE 60952 -SFF 57009 -SFGOV 64201 -SFGate 57318 -SFI 59774 -SFIS 64905 -SFL 60492 -SFM 62613 -SFMCs 63991 -SFO 58162 -SFOs 62917 -SFP 60952 -SFR 52459 -SFS 62066 -SFSU 63419 -SFTP 61940 -SFTPC 64905 -SFTW 63601 -SFU 61818 -SFV 62066 -SFW 61699 -SFX 55963 -SFY 62762 -SFiS 63792 -SFist 64905 -SG 48985 -SGA 52778 -SGB 65170 -SGC 63792 -SGD 54835 -SGE 63601 -SGF 63991 -SGH 51690 -SGI 57238 -SGL 63991 -SGM 62469 -SGML 62762 -SGN 61699 -SGP 60078 -SGR 64423 -SGS 58523 -SGT 58919 -SGX 58162 -SGX's 64201 -SH 48126 -SHA 57566 -SHAC 64905 -SHACK 64423 -SHADE 62331 -SHADES 62917 -SHADOW 60000 -SHADOWS 62917 -SHADY 64657 -SHAFT 60238 -SHAH 62469 -SHAIN 64657 -SHAKE 60952 -SHAKESPEARE 62469 -SHAKTI 64423 -SHALL 52968 -SHAME 63991 -SHAMPOO 60670 -SHANE 62066 -SHANGHAI 59702 -SHANKAR 65452 -SHANNON 60238 -SHAPE 58065 -SHAPES 62613 -SHAPING 64201 -SHARE 46086 -SHARED 61051 -SHAREHOLDERS 61584 -SHARES 58113 -SHARING 60000 -SHARK 60157 -SHARKS 64423 -SHARMA 58632 -SHARON 59774 -SHARP 57318 -SHAS 63601 -SHASTRI 64905 -SHAVE 65170 -SHAW 61051 -SHAWL 63077 -SHAWN 61051 -SHAY 64657 -SHB 62469 -SHC 62469 -SHDN 58577 -SHE 53081 -SHE'S 62613 -SHEAR 61256 -SHED 64423 -SHEEP 61818 -SHEER 63792 -SHEET 51996 -SHEETS 58919 -SHEFFIELD 59101 -SHEILA 64423 -SHEKNOWS 63991 -SHELBY 60952 -SHELDON 64657 -SHELF 57741 -SHELL 56791 -SHELLEY 63792 -SHELLS 62613 -SHELTER 59848 -SHELXTL 65452 -SHEMALE 61940 -SHEN 64423 -SHENZHEN 59702 -SHEPARD 65452 -SHEPHERD 61699 -SHERIDAN 63077 -SHERIFF 62066 -SHERIFF'S 65170 -SHERLOCK 64905 -SHERMAN 60952 -SHERRY 65170 -SHERWOOD 64201 -SHERYL 64657 -SHG 58523 -SHGWT 65170 -SHI 63991 -SHIELD 59292 -SHIELDED 61584 -SHIELDS 62762 -SHIFT 55849 -SHIH 63077 -SHIMANO 64201 -SHIN 64423 -SHINE 60670 -SHINY 60952 -SHINee 60856 -SHIP 53138 -SHIPBUILDING 57696 -SHIPMENT 63792 -SHIPMENTS 64423 -SHIPPED 61472 -SHIPPING 47714 -SHIPS 58212 -SHIRBRIG 59101 -SHIRE 62066 -SHIRLEY 61051 -SHIRT 54946 -SHIRTS 57566 -SHIT 56140 -SHIV 63991 -SHM 62917 -SHMUEL 64905 -SHNEWER 59164 -SHO 58919 -SHOCK 58162 -SHOE 58979 -SHOES 53646 -SHOOT 60078 -SHOOTER 60856 -SHOOTIN 65452 -SHOOTING 61152 -SHOP 45763 -SHOPPER 65452 -SHOPPERS 65170 -SHOPPING 49608 -SHOPS 58365 -SHORE 57876 -SHORKIE 65452 -SHORT 52339 -SHORTCUTS 64201 -SHORTS 56862 -SHOT 56021 -SHOTS 59560 -SHOULD 50734 -SHOULDER 61362 -SHOUT 63077 -SHOUTcast 60670 -SHOW 48230 -SHOWBIZ 59227 -SHOWCASE 58919 -SHOWER 57970 -SHOWERS 60405 -SHOWIN 63419 -SHOWING 58632 -SHOWN 57831 -SHOWROOM 63419 -SHOWS 52280 -SHOWTIME 62196 -SHOWTIMES 57696 -SHP 62469 -SHPO 64657 -SHPORTSTALK 58365 -SHR 56110 -SHRED 65452 -SHREDDED 60321 -SHREWSBURY 63792 -SHRI 62066 -SHRIMP 61152 -SHRINK 64201 -SHRM 63245 -SHRP 65170 -SHS 58065 -SHU 61818 -SHURE 64657 -SHUT 59424 -SHUTTLE 62762 -SI 42059 -SI's 58860 -SIA 58470 -SIAC 62917 -SIAL 64657 -SIAM 57399 -SIB 61699 -SIC 53331 -SICAV 63601 -SICK 57970 -SICKNESS 63601 -SID 56756 -SIDA 64657 -SIDE 50906 -SIDEKICK 64201 -SIDES 60238 -SIDNEY 62762 -SIDS 59101 -SIE 61152 -SIEMENS 56899 -SIEMPRE 63601 -SIENA 65170 -SIERRA 57876 -SIF 59292 -SIFF 63991 -SIG 56262 -SIGARCH 62196 -SIGCHI 64423 -SIGCOMM 63991 -SIGCSE 61699 -SIGG 62066 -SIGGRAPH 57566 -SIGHT 60000 -SIGHTS 64657 -SIGHTSEEING 64423 -SIGIR 61362 -SIGMA 61818 -SIGMETRICS 64905 -SIGMOD 57524 -SIGN 47339 -SIGNAGE 63792 -SIGNAL 55060 -SIGNALING 65170 -SIGNALMAN 64423 -SIGNALS 61256 -SIGNATURE 55084 -SIGNATURES 63792 -SIGNED 55060 -SIGNIFICANCE 61152 -SIGNIFICANT 60670 -SIGNING 62066 -SIGNOFF 65452 -SIGNS 54133 -SIGNUP 59923 -SIGOPS 63991 -SIGPLAN 57609 -SIGSOFT 63792 -SIGs 63245 -SII 60078 -SIIB 64423 -SIIG 64201 -SIJPESTEIJN 63991 -SIL 59848 -SILC 61051 -SILENCE 61584 -SILENT 60405 -SILICON 56485 -SILICONE 61818 -SILICRYLIC 65452 -SILK 58162 -SILL 65170 -SILLY 63601 -SILT 65170 -SILVA 62066 -SILVER 50178 -SILVERMAN 65170 -SILVERTONE 61152 -SILVIA 63419 -SIM 51358 -SIMALUNGUN 62762 -SIMD 58919 -SIMILAR 57741 -SIMM 60321 -SIMMONS 62196 -SIMON 56687 -SIMONE 64201 -SIMONS 65452 -SIMPLE 55423 -SIMPLIFIED 64657 -SIMPLY 61256 -SIMPSON 58802 -SIMPSONS 62762 -SIMS 58632 -SIMULATED 65170 -SIMULATION 56721 -SIMULATIONS 64657 -SIN 53779 -SINCE 54706 -SINCLAIR 63991 -SING 59923 -SINGAPORE 55107 -SINGER 60238 -SINGERS 65452 -SINGH 55934 -SINGING 61472 -SINGLE 50840 -SINGLES 58417 -SINGS 64423 -SINK 61584 -SINR 65452 -SIO 64423 -SIOUX 65170 -SIP 50774 -SIPC 60952 -SIPE 65452 -SIPEG 64201 -SIPP 64657 -SIPs 64423 -SIR 54540 -SIRE 63245 -SIREN 64423 -SIRIUS 59039 -SIRKETI 65452 -SIS 54706 -SISA 62469 -SISNeT 62917 -SISO 62613 -SISTER 60492 -SISTERS 62066 -SISter 65452 -SIT 57831 -SITC 64201 -SITE 43937 -SITEMAP 53533 -SITES 48283 -SITPRO 64657 -SITTING 61818 -SITUATION 57653 -SITUS 62762 -SIU 63245 -SIV 62613 -SIX 54078 -SIXAXIS 65452 -SIXTH 60856 -SIXTY 55963 -SIYABONGA 63991 -SIZE 48938 -SIZED 65170 -SIZES 57399 -SIZING 63245 -SIstyle 64657 -SIswimsuit 62917 -SJ 49633 -SJB 63077 -SJC 62613 -SJM 63245 -SJP 63077 -SJR 64905 -SJS 65170 -SJSU 62917 -SJTU 65452 -SJU 63419 -SK 47194 -SKA 62762 -SKANKER 64423 -SKATE 60238 -SKATES 62613 -SKATING 62196 -SKB 56420 -SKDC 63419 -SKECHERS 60762 -SKELETON 64657 -SKETCH 61584 -SKF 59560 -SKI 56262 -SKID 65452 -SKIDMORE 64201 -SKIES 64423 -SKIING 60670 -SKILL 63245 -SKILLS 55526 -SKIN 54685 -SKINNY 61818 -SKINS 64201 -SKIP 60078 -SKIPPER 65452 -SKIRT 60405 -SKIRTS 61362 -SKIS 63601 -SKK 59491 -SKLEPTOMKA 65452 -SKM 62613 -SKN 64657 -SKODA 60405 -SKOOL 64905 -SKS 58632 -SKT 64905 -SKU 50263 -SKULL 61472 -SKUMIX 65452 -SKUs 63601 -SKY 50568 -SKYFi 63245 -SKYLIGHT 64905 -SKYLINE 62196 -SL 46986 -SLA 54302 -SLAB 62613 -SLAC 58860 -SLACK 64905 -SLAM 58417 -SLAP 61256 -SLASH 63991 -SLAVE 61699 -SLAVERY 64423 -SLAYER 63077 -SLB 64201 -SLC 57440 -SLCHI 61940 -SLD 64423 -SLE 54207 -SLED 63077 -SLEDGE 64905 -SLEE 64201 -SLEEP 57566 -SLEEPER 64423 -SLEEPING 61362 -SLEEPS 62469 -SLEEVE 56140 -SLEEVES 63991 -SLES 58919 -SLF 63077 -SLG 58979 -SLI 51783 -SLIC 64657 -SLIDE 55992 -SLIDESHOW 63601 -SLIDESHOWS 61051 -SLIDING 62762 -SLIGHT 60670 -SLIGHTLY 64423 -SLIM 58017 -SLIP 59560 -SLIPING 64657 -SLIPKNOT 62613 -SLK 59923 -SLL 64201 -SLM 58470 -SLN 63601 -SLND 60856 -SLO 59227 -SLOPE 62469 -SLOT 61051 -SLOTS 64657 -SLOVAK 64423 -SLOVAKIA 60238 -SLOVENIA 60000 -SLOW 57876 -SLP 57970 -SLPS 56827 -SLR 49234 -SLRs 59491 -SLS 58979 -SLSR 62762 -SLT 56652 -SLU 62066 -SLUT 63991 -SLV 65452 -SLVR 60238 -SLX 59164 -SLY 65170 -SLi 63245 -SM 46293 -SMA 55178 -SMALL 50856 -SMALLER 63601 -SMALLVILLE 65452 -SMART 50686 -SMARTHOME 60238 -SMARTS 64905 -SMARTech 58113 -SMASH 63077 -SMASHING 64423 -SMB 53470 -SMBs 58860 -SMBus 61362 -SMC 53952 -SMCs 59101 -SMD 56420 -SME 52686 -SMELL 64423 -SMES 65452 -SMEs 55202 -SMF 49670 -SMG 58065 -SMH 55526 -SMHS 64201 -SMI 61152 -SMIL 63077 -SMILE 60952 -SMILES 64657 -SMILEY 61472 -SMITH 51731 -SMITHS 62469 -SML 60078 -SMM 60762 -SMMC 65452 -SMOCKED 65452 -SMOKE 57609 -SMOKED 63991 -SMOKERS 63991 -SMOKEY 62917 -SMOKIN 65170 -SMOKING 58262 -SMOOTH 60762 -SMP 55604 -SMPlayer 64657 -SMPs 65452 -SMR 59774 -SMS 43853 -SMSC 62613 -SMSO 61472 -SMT 55448 -SMTP 52699 -SMU 56420 -SMV 63792 -SMX 61818 -SMYTH 65452 -SMart 59630 -SMcCandlish 63991 -SN 48796 -SNA 59774 -SNACK 65452 -SNACKS 63792 -SNAFU 62762 -SNAICC 65170 -SNAKE 60580 -SNAKES 65452 -SNAP 57318 -SNAPSHOT 61818 -SNARE 64657 -SNC 63601 -SNCs 62331 -SND 64201 -SNE 64201 -SNEAK 63601 -SNEAKERS 63419 -SNES 53153 -SNF 60580 -SNG 62469 -SNH 64657 -SNIPER 63245 -SNIPS 64905 -SNK 59164 -SNL 50379 -SNL's 62469 -SNM 64657 -SNMP 52832 -SNOM 64905 -SNOOP 64905 -SNOW 55877 -SNOWBOARD 60405 -SNOWBOARDING 65170 -SNOWMAN 65452 -SNOWMOBILE 63991 -SNP 36173 -SNPs 54114 -SNR 54133 -SNS 60670 -SNYDER 63419 -SO 43524 -SOA 49841 -SOAP 54399 -SOAS 61818 -SOAs 63601 -SOB 61051 -SOBRE 62917 -SOBs 64905 -SOC 57524 -SOCAN 61699 -SOCATEC 65452 -SOCCER 55684 -SOCIAL 49834 -SOCIETIES 63419 -SOCIETY 51330 -SOCIOLOGY 65170 -SOCKET 54540 -SOCKS 60492 -SOCOM 52968 -SOD 57238 -SODA 59292 -SODIMM 56972 -SODIUM 58979 -SOE 59848 -SOF 60952 -SOFA 59292 -SOFC 64905 -SOFT 54540 -SOFTBALL 61362 -SOFTPEDIA 58113 -SOFTWARE 49234 -SOFTWARES 62613 -SOG 55274 -SOHC 59164 -SOHO 54835 -SOI 57609 -SOIC 60238 -SOIL 58688 -SOILS 63601 -SOJT 63601 -SOK 65452 -SOL 56899 -SOLAR 55552 -SOLAS 65452 -SOLD 49547 -SOLDIER 62196 -SOLDIERS 62762 -SOLE 51909 -SOLELY 63245 -SOLENOID 63991 -SOLICIT 63419 -SOLICITATION 64423 -SOLICITORS 62331 -SOLID 52496 -SOLIDS 64423 -SOLIS 65170 -SOLO 55738 -SOLOMON 59424 -SOLTEROS 64905 -SOLUBLE 65170 -SOLUTION 56200 -SOLUTIONS 52546 -SOLVIT 58065 -SOM 57741 -SOMA 60856 -SOMALI 63991 -SOMALIA 61152 -SOME 49417 -SOMEBODY 63419 -SOMEONE 57009 -SOMERS 65170 -SOMERSET 60078 -SOMERSWORTH 64905 -SOMERVILLE 60405 -SOMETHING 56485 -SOMETIMES 65170 -SOMEWHERE 63245 -SOMbitch 65452 -SON 54685 -SONA 62762 -SONAPS 64905 -SONAR 63792 -SONET 61699 -SONG 52198 -SONGS 54264 -SONIA 65170 -SONIC 60000 -SONNY 64657 -SONOMA 60762 -SONOS 61699 -SONS 59101 -SONY 49633 -SOO 60856 -SOON 54439 -SOOO 59292 -SOP 56721 -SOPAC 64905 -SOPHIA 64423 -SOPHIE 63077 -SOPHO 63077 -SOPs 61256 -SOR 64201 -SORRY 58262 -SORT 52886 -SORTEST 62917 -SORTEX 64905 -SOS 51415 -SOT 63077 -SOTO 64423 -SOTW 62196 -SOUGHT 64905 -SOUL 54226 -SOULS 61362 -SOUND 52484 -SOUNDCARD 65170 -SOUNDOFFS 65452 -SOUNDS 59101 -SOUNDTRACK 61818 -SOUNDTRACKS 55934 -SOUP 57238 -SOUR 60405 -SOURCE 52423 -SOURCES 56899 -SOUS 65170 -SOUTH 46409 -SOUTHAMPTON 63991 -SOUTHEAST 59357 -SOUTHEASTERN 61699 -SOUTHERN 53196 -SOUTHLAND 61362 -SOUTHPORT 65170 -SOUTHSIDE 63792 -SOUTHWEST 59424 -SOUZA 65452 -SOVEREIGN 62066 -SOVIET 63601 -SOX 56140 -SOY 61818 -SP 45802 -SPA 52778 -SPACE 51482 -SPACER 64905 -SPACES 60321 -SPACIOUS 63077 -SPAD 64657 -SPAIN 55274 -SPALDING 64423 -SPAM 53010 -SPAMfighter 61584 -SPAN 62331 -SPANISH 56452 -SPANK 64905 -SPANKED 64905 -SPANKING 58688 -SPAR 63245 -SPARC 56721 -SPARE 58065 -SPARERIBS 64905 -SPARES 62469 -SPARK 59560 -SPARKLE 63601 -SPARKS 60000 -SPARRING 56756 -SPARROW 65170 -SPARTA 62196 -SPAS 55323 -SPATIAL 60238 -SPB 59491 -SPC 55578 -SPCA 60157 -SPCR 62469 -SPD 54499 -SPDIF 59923 -SPDT 64657 -SPE 55821 -SPEAK 59039 -SPEAKER 57524 -SPEAKERS 57524 -SPEAKING 62196 -SPEAKS 63245 -SPEARS 57696 -SPEC 57199 -SPECIAL 45497 -SPECIALIST 55877 -SPECIALISTS 59630 -SPECIALIZED 64905 -SPECIALS 53346 -SPECIALTIES 62613 -SPECIALTY 55793 -SPECIES 58017 -SPECIFIC 54419 -SPECIFICALLY 63077 -SPECIFICATION 58113 -SPECIFICATIONS 54399 -SPECIFIED 60238 -SPECIFY 63419 -SPECO 63245 -SPECS 61940 -SPECT 55877 -SPECTACULAR 65452 -SPECTATOR 65170 -SPECTRA 59848 -SPECTROMETRY 64201 -SPECTROSCOPY 63991 -SPECTRUM 59774 -SPEECH 59164 -SPEECHES 62613 -SPEED 52221 -SPEEDOTRON 63601 -SPEEDS 65170 -SPEEDWAY 65452 -SPEEDY 63792 -SPELL 63792 -SPENCER 59227 -SPEND 62469 -SPENDING 59774 -SPENT 65452 -SPF 53729 -SPG 57923 -SPH 59164 -SPHERE 62196 -SPI 55849 -SPICE 55526 -SPICY 63077 -SPIDER 60238 -SPIDERS 62331 -SPIE 57653 -SPIEGEL 60078 -SPIKE 54151 -SPILL 61818 -SPIN 59292 -SPINACH 64423 -SPINAL 61818 -SPINN 63601 -SPINNER 61818 -SPINNING 63991 -SPIRAL 63991 -SPIRES 62613 -SPIRIT 57440 -SPIRITS 65452 -SPIRITUAL 61584 -SPIRITUALITY 63792 -SPIROsafe 65452 -SPITZER 63792 -SPK 64201 -SPL 54151 -SPLASH 63601 -SPLAT 63077 -SPLIT 57741 -SPLITS 65452 -SPLITTER 62917 -SPM 59101 -SPMD 63601 -SPN 60238 -SPO 63792 -SPOILER 60492 -SPOILERS 61940 -SPOKANE 62762 -SPOKE 63601 -SPOKEN 64905 -SPONGE 63601 -SPONSOR 53970 -SPONSORED 51131 -SPONSORING 65452 -SPONSORS 55226 -SPONSORSHIP 62917 -SPOOF 65452 -SPOOKY 63991 -SPOON 64201 -SPOONER 57084 -SPORE 63991 -SPORT 47589 -SPORTING 60078 -SPORTS 45435 -SPORTSMAN 64905 -SPORTSWEAR 62331 -SPOS 65452 -SPOT 53630 -SPOTLIGHT 58065 -SPOTS 64201 -SPOTTED 62762 -SPP 62469 -SPQ 62066 -SPR 60492 -SPRAY 56021 -SPREAD 59560 -SPRING 51630 -SPRINGBORO 64905 -SPRINGER 65170 -SPRINGFIELD 58523 -SPRINGS 55107 -SPRINKLER 64657 -SPRINT 58979 -SPRL 63601 -SPRUCE 64423 -SPS 56356 -SPSL 62196 -SPSS 54601 -SPST 63077 -SPT 57399 -SPTX 64423 -SPURS 62762 -SPURT 63601 -SPV 54245 -SPX 61256 -SPY 59923 -SPiN 52339 -SPs 63419 -SQ 51640 -SQA 59702 -SQFT 62331 -SQL 40417 -SQLBase 57482 -SQLException 61584 -SQLServer 63991 -SQLite 59101 -SQM 64905 -SQP 64657 -SQUAD 61051 -SQUARE 53211 -SQUARES 61699 -SQUASH 65170 -SQUID 58860 -SQV 64657 -SR 47687 -SRA 59039 -SRAM 56050 -SRB 60952 -SRBC 62066 -SRC 58745 -SRD 58523 -SRE 63792 -SREA 65452 -SRF 59292 -SRG 60952 -SRI 54685 -SRK 58365 -SRL 57653 -SRM 55014 -SRNR 65452 -SRNode 62613 -SRO 58632 -SRO's 64905 -SRP 59292 -SRR 62762 -SRS 55250 -SRST 64201 -SRT 55552 -SRU 63077 -SRV 60405 -SRW 63601 -SRY 65452 -SS 45544 -SSA 55398 -SSA's 64657 -SSANGYONG 65170 -SSAT 60492 -SSB 57440 -SSBB 58212 -SSC 51434 -SSCL 59702 -SSCP 64905 -SSCs 62066 -SSD 56050 -SSDI 62469 -SSDs 64423 -SSE 57160 -SSFP 65452 -SSG 60405 -SSH 52913 -SSI 55226 -SSID 61472 -SSIS 58919 -SSK 62196 -SSL 46250 -SSLC 62066 -SSM 58979 -SSM's 64423 -SSMS 64201 -SSMU 63792 -SSN 58745 -SSNHP 63245 -SSNs 64423 -SSO 60078 -SSOP 60856 -SSP 53646 -SSPA 64423 -SSR 54902 -SSRI 62196 -SSRIs 63601 -SSRN 49157 -SSRN's 61362 -SSRS 63077 -SSS 56452 -SSSA 65452 -SSSR 60670 -SST 55684 -SSU 63077 -SSUE 65170 -SSW 58262 -SSX 63792 -SSeS 64905 -ST 44389 -ST's 65452 -STA 55578 -STABILITY 58262 -STABILIZATION 65170 -STABILIZED 63991 -STABLE 61699 -STACEY 64423 -STACK 61472 -STACY 63601 -STADIUM 60856 -STAFF 47224 -STAFFING 60670 -STAFFORD 63245 -STAFFORDSHIRE 60580 -STAG 64201 -STAGE 53779 -STAGES 63419 -STAGING 62917 -STAIN 64657 -STAINLESS 55963 -STAINS 65170 -STAKEHOLDER 64905 -STAKEHOLDERS 64657 -STAKES 63601 -STALKER 59039 -STALL 63419 -STALLS 64905 -STAMP 60078 -STAMPS 61152 -STAN 62066 -STANCE 65170 -STAND 54902 -STANDALONE 65452 -STANDARD 50686 -STANDARDS 54519 -STANDBY 65170 -STANDING 59101 -STANDINGS 61940 -STANDS 60405 -STANFORD 61818 -STANLEY 57876 -STANTON 63991 -STAPLE 62469 -STAPLES 61051 -STAPLETON 62762 -STAR 48368 -STARE 62762 -STARFLEX 64423 -STARK 63245 -STARR 65170 -STARS 53970 -STARSHIP 65452 -START 50350 -STARTED 58688 -STARTER 59491 -STARTERS 65170 -STARTING 58162 -STARTS 61818 -STARZ 65170 -STAT 60952 -STATE 44113 -STATED 61940 -STATEMENT 49999 -STATEMENTS 57084 -STATEN 63991 -STATES 46918 -STATEWIDE 63419 -STATIC 60238 -STATION 52927 -STATIONARY 61051 -STATIONERY 56050 -STATIONS 60670 -STATISTICA 64657 -STATISTICAL 57923 -STATISTICS 51140 -STATPack 65452 -STATS 53970 -STATUE 64905 -STATUES 65452 -STATUS 50848 -STATUTE 65170 -STATUTORY 60078 -STAUFFER 65170 -STAY 53407 -STAYED 62762 -STAYS 63601 -STAYZ 64201 -STB 59560 -STC 56652 -STCC 63245 -STD 51434 -STD's 64201 -STDP 64905 -STDs 56687 -STE 54924 -STEAK 59848 -STEAL 59292 -STEALTH 62762 -STEAM 59491 -STEAMBOILER 64423 -STEEL 49028 -STEELE 63077 -STEELERS 64657 -STEELMAKING 62066 -STEERING 58212 -STEFAN 63792 -STEIN 64423 -STEINBERG 65170 -STEL 63419 -STELLA 63245 -STELLAR 64657 -STEM 56324 -STENCIL 63991 -STEP 52609 -STEPHANIE 61051 -STEPHEN 53952 -STEPHENS 62331 -STEPHENSON 62762 -STEPS 57238 -STEREO 56935 -STERILITE 63077 -STERLING 57358 -STERN 61472 -STEROID 64423 -STEROIDS 63991 -STEVE 53970 -STEVEN 54096 -STEVENS 59560 -STEVENSON 62613 -STEVIE 64657 -STEWARDSHIP 64657 -STEWART 58212 -STF 62469 -STFC 63991 -STFFN 64657 -STFU 60670 -STG 59292 -STGP 62917 -STH 59101 -STI 51985 -STICK 59357 -STICKER 60321 -STICKERS 59702 -STICKS 63419 -STICKY 64905 -STIHL 62331 -STIL 64905 -STILL 51463 -STIMULATION 63991 -STINET 53517 -STING 65170 -STIR 62917 -STITCH 62469 -STIs 61818 -STK 62762 -STKE 56721 -STL 55526 -STLab 64201 -STM 55552 -STMicroelectronics 59101 -STN 55604 -STNG 64423 -STO 63077 -STOC 64905 -STOCK 49626 -STOCKHOLDERS 64657 -STOCKING 63601 -STOCKINGS 63991 -STOCKPORT 63419 -STOCKS 58745 -STOCKTON 63419 -STOKE 64905 -STOKES 64657 -STOLEN 61472 -STOMP 63077 -STONE 53454 -STONES 59491 -STOOL 65452 -STOOLS 64905 -STOP 49873 -STOPPED 61818 -STOPPIN 65452 -STOPPING 61940 -STOPS 64657 -STOPzilla 65170 -STORAGE 52635 -STORE 48143 -STORED 61818 -STORES 54835 -STOREY 64905 -STORIES 47018 -STORM 57122 -STORMWATER 65452 -STORY 50087 -STOUT 64423 -STOVE 64657 -STOW 65170 -STP 58113 -STR 55821 -STRAIGHT 58162 -STRAIN 62196 -STRAINS 64423 -STRAND 60580 -STRANGE 61256 -STRANGERS 64657 -STRAP 58919 -STRAPS 60762 -STRATEGIC 55877 -STRATEGIES 57696 -STRATEGY 54857 -STRATFORD 59491 -STRATUM 62613 -STRAUSS 64905 -STRAWBERRY 64657 -STREAM 60078 -STREAMING 58919 -STREAMS 64423 -STREET 46128 -STREETS 60321 -STREICHER 61152 -STRENGTH 58065 -STRENGTHENING 62469 -STREPTOCOCCAL 65452 -STRESS 57653 -STRETCH 61362 -STRICT 59424 -STRICTLY 63601 -STRIKE 58860 -STRIKES 63792 -STRING 60321 -STRINGS 62331 -STRIP 59164 -STRIPE 61051 -STRIPES 64905 -STRIPPERS 65452 -STRIPS 63991 -STROKE 59848 -STRONG 56585 -STRONGER 64201 -STRONGEST 65170 -STRONGLY 63245 -STRUCTURAL 56518 -STRUCTURE 53630 -STRUCTURES 57122 -STRUGGLE 63991 -STRUT 63601 -STS 53346 -STSADM 62917 -STT 58979 -STU 63792 -STUART 58577 -STUCK 63991 -STUD 59923 -STUDENT 51453 -STUDENTS 53917 -STUDIES 52062 -STUDIESCASE 61818 -STUDIO 53241 -STUDIOS 60405 -STUDY 50013 -STUFF 51680 -STUFFED 62066 -STUMBLE 64905 -STUNNING 60580 -STUPID 58802 -STV 60238 -STW 65452 -STWR 65452 -STX 60670 -STYCAST 58523 -STYLE 50932 -STYLES 59630 -STYLING 65452 -STYLISH 51026 -STYLUS 62762 -STYROFOAM 60321 -STZ 63991 -STi 57923 -SU 48126 -SU's 64905 -SUB 54835 -SUBARU 61472 -SUBBED 65452 -SUBCOM 60405 -SUBDIVISION 60238 -SUBJECT 50213 -SUBJECTS 58162 -SUBLIMINAL 64905 -SUBMENU 63245 -SUBMISSION 58212 -SUBMISSIONS 62613 -SUBMIT 49834 -SUBMITTED 55684 -SUBMITTING 65170 -SUBS 65170 -SUBSCRIBE 47931 -SUBSCRIBED 59101 -SUBSCRIBER 61584 -SUBSCRIPTION 57046 -SUBSCRIPTIONS 46669 -SUBSIDIARY 63245 -SUBSTANCE 61051 -SUBSTANCES 63245 -SUBSTITUTE 60492 -SUBSTITUTED 63991 -SUBSTRATE 62196 -SUBTITLE 63792 -SUBTOTAL 63792 -SUBURB 63601 -SUBURBAN 62066 -SUBWAY 65170 -SUCCESS 55578 -SUCCESSFUL 60952 -SUCH 52509 -SUCK 60762 -SUCKS 60321 -SUCTION 62613 -SUD 64201 -SUDAN 60078 -SUE 58365 -SUEDE 60492 -SUFFERING 64905 -SUFFICIENT 65170 -SUFFOLK 62762 -SUGAR 57199 -SUGGEST 62331 -SUGGESTED 60670 -SUGGESTION 64905 -SUGGESTIONS 60952 -SUI 62613 -SUICIDE 62613 -SUISSE 61051 -SUIT 61818 -SUITABILITY 65452 -SUITABLE 61940 -SUITCASE 65452 -SUITE 54581 -SUITES 58979 -SUITS 60670 -SUL 62196 -SULFATE 63991 -SULFUR 64657 -SULIT 59923 -SULLIVAN 59357 -SULPHUR 64423 -SUM 57609 -SUMITOMO 64657 -SUMMARIES 65452 -SUMMARY 46717 -SUMMER 50206 -SUMMERCASE 62917 -SUMMERVILLE 65452 -SUMMIT 57696 -SUMNER 64657 -SUMO 57609 -SUMOTorrent 55448 -SUN 50321 -SUNDANCE 64905 -SUNDAY 53211 -SUNDAYS 65170 -SUNFLOWER 65170 -SUNGLASSES 58802 -SUNIL 64657 -SUNNY 59424 -SUNRISE 61256 -SUNS 64657 -SUNSET 58262 -SUNSHINE 59560 -SUNY 54601 -SUP 59702 -SUPER 49572 -SUPERB 60856 -SUPERBOWL 64657 -SUPERGRASS 59424 -SUPERIOR 56687 -SUPERMAN 61152 -SUPERMICRO 65170 -SUPERSPRINT 65452 -SUPERSTAR 62196 -SUPERSTARS 64201 -SUPERVISION 62469 -SUPERVISOR 60492 -SUPERVISORS 61152 -SUPP 61256 -SUPPER 65452 -SUPPLEMENT 61940 -SUPPLEMENTAL 61256 -SUPPLEMENTARY 57653 -SUPPLEMENTS 59039 -SUPPLIED 61584 -SUPPLIER 60078 -SUPPLIERS 55202 -SUPPLIES 52559 -SUPPLY 52584 -SUPPORT 45964 -SUPPORTED 58802 -SUPPORTERS 65170 -SUPPORTING 58065 -SUPPORTS 62066 -SUPPRESSION 63991 -SUPRA 64657 -SUPREMA 64423 -SUPREME 55299 -SUR 56721 -SURE 55130 -SURETY 63245 -SURF 57609 -SURFACE 54399 -SURFACES 62469 -SURFING 65452 -SURG 57482 -SURGE 62762 -SURGERY 56050 -SURGICAL 59630 -SURI 64905 -SURINAME 62196 -SURNAME 64423 -SURPLUS 60238 -SURPRISE 62613 -SURREY 60078 -SURROUND 64201 -SURROUNDING 64423 -SURRY 65170 -SURVEILLANCE 61256 -SURVEY 53167 -SURVEYS 60321 -SURVIVAL 59774 -SURVIVING 65170 -SURVIVOR 61362 -SURVIVORS 64201 -SUS 58017 -SUSAN 56231 -SUSE 55963 -SUSHI 62469 -SUSIE 65170 -SUSPECT 64657 -SUSPEND 64905 -SUSPENDED 63419 -SUSPENSION 58162 -SUSS 64905 -SUSSEX 59848 -SUSTAIN 64423 -SUSTAINABILITY 62066 -SUSTAINABLE 57609 -SUSY 60856 -SUT 64905 -SUTTON 61699 -SUU 63601 -SUV 48515 -SUV's 61152 -SUVs 50923 -SUZANNE 62331 -SUZUKI 55604 -SV 48918 -SVALBARD 63245 -SVC 57122 -SVCD 55877 -SVD 59630 -SVG 56170 -SVGA 59292 -SVM 59101 -SVN 53066 -SVO 64657 -SVP 58577 -SVQ 65452 -SVR 63245 -SVS 57696 -SVT 57741 -SVU 58802 -SVX 65452 -SVs 63792 -SW 44884 -SWA 65452 -SWAC 58688 -SWAG 62762 -SWAGGA 65452 -SWAN 54321 -SWANSEA 62917 -SWAP 57609 -SWAPS 64657 -SWAROVSKI 60670 -SWAT 55274 -SWATCH 61818 -SWAZILAND 61940 -SWB 62469 -SWC 59923 -SWCD 60670 -SWD 62917 -SWE 62196 -SWEAR 65452 -SWEAT 63245 -SWEATER 59227 -SWEATERS 60000 -SWEDEN 57122 -SWEDISH 60405 -SWEEPS 62066 -SWEEPSTAKES 65170 -SWEET 54321 -SWESUB 64657 -SWF 53361 -SWG 60321 -SWGEmu 64657 -SWI 60078 -SWIC 65452 -SWIFT 60856 -SWIM 61051 -SWIMMING 57876 -SWIMSUIT 51752 -SWIMWEAR 63792 -SWINE 63245 -SWING 59292 -SWINNEY 65170 -SWISS 57278 -SWITCH 53565 -SWITCHER 62917 -SWITCHES 60670 -SWITCHING 60405 -SWITZERLAND 57318 -SWIVEL 64905 -SWJH 64423 -SWL 63991 -SWM 62613 -SWNT 62613 -SWORD 61940 -SWOT 44182 -SWR 59630 -SWS 61152 -SWSW 65170 -SWT 62066 -SWV 64423 -SWZ 64423 -SWiK 60492 -SWiSH 64905 -SWsoft 63792 -SX 54459 -SXGA 64423 -SXSW 55821 -SXT 57785 -SXV 63601 -SY 51166 -SYBR 60670 -SYDNEY 56388 -SYED 63245 -SYLVANIA 64423 -SYLVIA 62196 -SYM 63245 -SYMANTEC 60580 -SYMBIAN 65170 -SYMBOL 56862 -SYMBOLS 64423 -SYMMETRY 63077 -SYMPHONY 64657 -SYMPOSIUM 59848 -SYMPTOM 64657 -SYMPTOMS 58162 -SYN 62469 -SYNC 61362 -SYNDICATE 61818 -SYNDROME 60157 -SYNOPSIS 56110 -SYNTAX 59227 -SYNTHESIS 57876 -SYNTHETIC 59101 -SYP 63792 -SYRACUSE 65170 -SYRIA 64201 -SYRIAN 62917 -SYRUP 64657 -SYS 61152 -SYST 62917 -SYSTEM 46242 -SYSTEMA 63245 -SYSTEMATIC 62469 -SYSTEME 64201 -SYSTEMS 48991 -SYTYCD 58523 -SZ 52927 -SZE 65452 -Sa 48692 -SaaS 55711 -Saab 47717 -Saabs 64201 -Saad 58688 -Saadiq 65170 -Saakashvili 59630 -Saami 62196 -Saanich 64423 -Saar 64201 -Saari 64423 -Saarinen 63991 -Saarland 64423 -Saas 60856 -Saat 64423 -Saatchi 58365 -Saath 65452 -Sab 64201 -Saba 55793 -Sabah 57785 -Sabai 65170 -Saban 60157 -Sabaneta 63419 -Sabathia 61362 -Sabatini 64423 -Sabato 64201 -Sabattus 64423 -Sabbath 54188 -Sabbatical 62762 -Sabena 52584 -Saber 58162 -Sabha 59357 -Sabi 60952 -Sabian 63077 -Sabicea 65170 -Sabie 62469 -Sabin 59848 -Sabina 58313 -Sabine 52152 -Sabino 64201 -Sabir 64423 -Sabla 63601 -Sable 55604 -Sables 64905 -Sabo 62331 -Sabon 65170 -Sabor 64423 -Sabotage 62331 -Sabra 63792 -Sabre 56110 -Sabrent 63601 -Sabres 54023 -Sabretooth 65170 -Sabri 64201 -Sabrina 53052 -Sabroso 65452 -Saburo 65170 -Sac 57741 -SacBee 65452 -SacI 64657 -Sacajawea 65452 -Saccharomyces 52832 -Sacco 63792 -Sacha 58065 -Sachem 62066 -Sachets 64201 -Sachi 65170 -Sachiko 65170 -Sachin 56687 -Sachs 52198 -Sachsen 62917 -Sack 55877 -Sacked 64423 -Sackett 64657 -Sackler 60000 -Sacks 57566 -Sackville 61584 -Saco 61584 -Sacra 65170 -Sacral 64201 -Sacrament 58860 -Sacramental 65452 -Sacramento 44159 -Sacraments 59292 -Sacre 61472 -Sacred 48436 -Sacrifice 56170 -Sacrifices 63601 -Sacrificing 65452 -Sacro 65170 -Sacto 64201 -Sad 50026 -Sada 63601 -Sadamitsu 63792 -Sadan 65170 -Sadar 65170 -Sadat 63991 -Saddam 51175 -Saddam's 60952 -Saddell 64657 -Saddle 51104 -Saddleback 59630 -Saddler 63792 -Saddlery 60762 -Saddles 55766 -Sade 60405 -Sadhana 64657 -Sadho 64905 -Sadie 56721 -Sadik 65452 -Sadiq 63991 -Sadistic 63991 -Sadler 56899 -Sadler's 64423 -Sadly 55992 -Sadness 59923 -Sado 65170 -Sadr 58162 -Saeco 63419 -Saeed 57482 -Saenger 64201 -Saenz 63077 -Saez 64423 -Saf 63792 -Safa 64657 -Safari 45241 -Safaris 53865 -Safco 60000 -Safe 42900 -SafeMart 64201 -SafeSearch 64201 -SafeTrader 61584 -Safeco 63991 -Safeguard 58113 -Safeguarding 57440 -Safeguards 57785 -Safelite 62066 -Safely 55348 -Safer 52699 -Safes 54706 -SafesITe 63991 -Safest 62613 -Safety 35882 -Safeway 55738 -Saffron 54664 -Safi 62762 -Safin 61584 -Safir 64657 -Safire 65170 -Safiya 62762 -Safonov 61940 -Safran 63245 -Saftey 65452 -Sag 59848 -SagDIG 63077 -Saga 50199 -Sagacity 63991 -Sagamore 63077 -Sagan 59101 -Sagano 62469 -Sagar 59164 -Sagara 65170 -Sagas 62196 -Sagat 64905 -Sage 48109 -Sagebrush 62917 -Sagem 52858 -Sager 57046 -Sages 62469 -Saget 63792 -Saginaw 54540 -Sagittal 64423 -Sagittarius 52872 -Sago 61940 -Sagopa 62469 -Saguaro 64905 -Saguenay 54946 -Saha 59848 -Sahai 64423 -Sahar 63419 -Sahara 47748 -Sahara's 63991 -Saharan 64423 -Sahel 61818 -Sahib 59630 -Sahibganj 62469 -Sahil 62066 -Sahin 64423 -Sahitya 62613 -Sahni 63601 -Sahuarita 59630 -Sai 53377 -Said 47683 -Saif 58162 -Saigon 55738 -Saikano 63245 -Saikyou 64657 -Sail 52074 -SailTime 60321 -Sailboat 54706 -Sailboats 59491 -Sailer 62066 -Sailers 65452 -Sailfish 64905 -Sailing 48390 -Sailnet 65170 -Sailor 49511 -Sailors 59101 -Sailplanes 65170 -Sailr 64905 -Sails 56585 -Saini 63991 -Sainsbury 60952 -Sainsbury's 57278 -Sainsburys 61818 -Saint 39492 -Saint's 60078 -Sainte 59923 -Saints 45417 -Saipan 60000 -Saisie 65170 -Saison 60238 -Saitama 60492 -Saitek 60952 -Saito 57482 -Saiunkoku 61472 -Saiyan 62613 -Saiyuki 59848 -Sajal 64423 -Sajid 63419 -Sajjad 64905 -Sajna 65170 -Sak 63077 -Saka 64423 -Sakaguchi 63245 -Sakai 57831 -Sakamoto 60405 -Sakata 65170 -Sake 56721 -Saket 64905 -Sakhalin 63601 -Saki 63245 -Sakic 64657 -Sakina 65170 -Sako 63991 -Sakray 65170 -Saks 53533 -Sakshi 63792 -Sakti 65170 -Sakura 54341 -Sakurai 61256 -Sal 54857 -SalI 62613 -Sala 56687 -Salaam 57122 -Salad 46514 -Salads 53361 -Salah 61152 -Salam 58745 -Salama 65452 -Salamanca 58065 -Salamander 57358 -Salami 61472 -Salamon 65452 -Salaried 61940 -Salaries 47248 -Salary 41846 -Salas 60157 -Salat 64201 -Salazar 57318 -Salazopyrin 64905 -Salcedo 63419 -Saldana 64905 -Saldanha 63245 -Sale 35365 -SaleMore 60321 -Saleem 61940 -Saleen 52927 -Saleh 60078 -Salem 48510 -Salem's 63792 -Salen 64905 -Salento 61584 -Salerno 60762 -Salerro 63601 -Salers 63245 -Sales 36165 -Salesforce 61362 -Salesian 64423 -Salesman 57160 -Salespeople 61699 -Salesperson 60405 -Salevia 62331 -Salford 54188 -Salgado 59491 -Salguero 65452 -Salhi 65452 -Sali 61584 -Saliba 64423 -Salicylic 63991 -Salida 63792 -Salient 61152 -Salih 64657 -Salil 64657 -Salim 57785 -Salina 58417 -Salinas 56618 -Saline 55821 -Salinger 63792 -Salinity 56899 -Salisbury 51026 -Salish 63792 -Saliva 58313 -Salivary 59630 -Salix 63991 -Salk 60580 -Salle 55526 -Salley 62469 -Salli 64905 -Sallie 58523 -Salling 65452 -Sally 47745 -Sally's 60580 -Salma 56262 -Salman 54283 -Salmo 63601 -Salmon 48013 -Salmond 60405 -Salmonella 51131 -Salo 63077 -Salome 62196 -Salomon 53517 -Salon 45347 -Salon's 65170 -Salone 65170 -Salonga 61362 -Salons 47955 -Saloon 51248 -Salou 60762 -Salsa 50372 -Salsas 63991 -Salt 43492 -Saltaire 64905 -Salted 62196 -Salter 58212 -Salto 62066 -Salton 62196 -Salts 55373 -Saltwater 52699 -Salty 59560 -Saltz 63601 -Saltzman 63601 -Salud 56200 -Saluda 65170 -Saludos 62469 -Saluja 65170 -Saluki 64657 -Salus 65452 -Salut 61818 -Salute 56356 -Salutes 61818 -Salva 61152 -Salvador 45230 -Salvadoran 63245 -Salvage 51920 -Salvaje 65452 -Salvation 52107 -Salvatore 55963 -Salve 59101 -Salvia 59848 -Salvo 60762 -Salwar 63991 -Salzburg 55299 -Salzburger 64657 -Salzman 64201 -Sam 43119 -Sam's 52411 -Sama 60762 -Samachar 63792 -Samaj 63419 -Samak 59424 -Samaniego 64423 -Samantha 48633 -Samantha's 63792 -Samar 62331 -Samara 60762 -Samaras 61472 -Samaritan 55448 -Samaritans 63245 -Samarium 65170 -Samat 65170 -Samay 61256 -Samba 53470 -Samberg 59774 -Sambo 64423 -Sambora 60952 -Sambuca 57199 -Sambucol 58802 -Sambucus 65170 -Samburu 61584 -Same 43956 -Samed 65452 -Sameer 61051 -Sameera 61152 -Samet 58745 -Sametime 61362 -Samford 60952 -Samhain 62066 -Sami 54519 -Samia 64423 -Samick 63792 -Samide 64423 -Samim 62066 -Samir 56899 -Samira 63419 -Samizdata 63077 -Sammamish 61152 -Sammars 65170 -Sammelthread 65170 -Sammi 62196 -Sammie 60000 -Sammlung 65170 -Sammons 61051 -Sammut 64905 -Sammy 52927 -Sammy's 61940 -Samo 62469 -Samoa 43889 -Samoan 57482 -Samora 63601 -Samos 56420 -Samoyed 65170 -Sampaio 65170 -Sampara 62762 -Sampath 64657 -Sampdoria 61152 -Sample 39704 -Sampled 61818 -Sampler 53970 -Samplers 58802 -Samples 45542 -Sampling 51248 -Sampo 63792 -Sampras 60856 -Sampson 54499 -Sampson's 65170 -Samra 63991 -Sams 56021 -Samson 53124 -Samsonite 58313 -Samsonov 65452 -Samstag 65452 -Samsung 41117 -Samsung's 58979 -Samuel 45739 -Samuel's 62917 -Samuels 56652 -Samuelson 61256 -Samui 54170 -Samurai 50220 -Samurize 64657 -Samus 62613 -Samy 61051 -San 33474 -SanDisk 50372 -SanDisk's 63601 -Sana 59491 -Sana'a 63077 -Sanaa 62613 -Sanam 62917 -Sanborn 60321 -Sanchez 51017 -Sancho 63245 -Sancti 64423 -Sanction 54479 -Sanctioned 59774 -Sanctions 56110 -Sanctuaries 62613 -Sanctuary 49382 -Sanctum 61152 -Sanctus 62196 -Sancuso 63601 -Sand 46711 -SandBox 65452 -Sandal 52559 -Sandals 49382 -Sandalwood 59848 -Sandan 64657 -Sandbach 59101 -Sandbag 65170 -Sandbar 62613 -Sandberg 59923 -Sandblasting 60321 -Sandbox 52472 -Sandburg 65170 -Sandcastle 64201 -Sande 63077 -Sandee 63419 -Sandeep 56935 -Sandefjord 63991 -Sandel 62066 -Sander 55178 -Sanders 50630 -Sanderson 55766 -Sandford 59357 -Sandgate 63077 -Sandhill 60856 -Sandhills 62917 -Sandhu 60856 -Sandhurst 60580 -Sandhya 63245 -Sandi 56899 -Sandia 55738 -Sandie 62196 -Sandiego 64201 -Sandifer 62331 -Sandilands 63792 -Sanding 59101 -Sandisk 53662 -Sandler 54835 -Sandler's 64905 -Sandman 58113 -Sando 61699 -Sandor 61818 -Sandoval 58470 -Sandown 61940 -Sandoz 63792 -Sandpaper 62331 -Sandpiper 58688 -Sandpoint 63991 -Sandra 46590 -Sandra's 64657 -Sandrine 62196 -Sandringham 62762 -Sandro 58417 -Sands 50067 -Sandstone 54321 -Sandstorm 65170 -Sandstrom 64905 -Sandton 59702 -Sandusky 57741 -Sandvik 61152 -Sandwell 57009 -Sandwich 47972 -Sandwiches 52164 -Sandy 46918 -Sandy's 60078 -Sandyford 65170 -Sane 61256 -Sanford 52187 -Sang 53712 -Sang'thraze 59491 -Sangalo 61699 -Sangamon 62613 -Sangeet 60580 -Sanger 57524 -Sangguniang 62762 -Sangha 63601 -Sangin 64423 -Sangiovese 61051 -Sangli 65170 -Sango 62917 -Sangoma 64657 -Sangre 61472 -Sangria 63792 -Sani 63245 -Sania 62469 -Sanibel 61152 -Saniflo 64657 -Sanitaire 64423 -Sanitarium 65170 -Sanitary 53109 -Sanitation 52712 -Sanitizer 60157 -Sanitizers 63991 -Sanitizing 63601 -Sanity 57566 -Sanità 62469 -Saniyede 62066 -Sanja 62613 -Sanjay 53988 -Sanjaya 58470 -Sanjaya's 63991 -Sanjeev 59774 -Sanka 65170 -Sankar 63077 -Sankey 62762 -Sankyo 62331 -Sanna 62613 -Sano 60078 -Sanofi 63419 -Sanremo 64657 -Sanrio 64201 -Sans 53597 -Sansa 51511 -Sansha's 64905 -Sanskrit 54360 -Sansom 62762 -Sansome 63245 -Sansone 62762 -Sansui 61051 -Sant 56756 -Santa 39670 -Santa's 55578 -SantaMusic 65170 -Santamaria 63792 -Santana 52029 -Santander 56687 -Santas 59702 -Sante 59357 -Santee 58802 -Santeria 64657 -Santi 59491 -Santiago 50178 -Santillana 65452 -Santini 61940 -Santino 61256 -Santis 63419 -Santo 53729 -Santogold 59357 -Santonio 62196 -Santor 63419 -Santora 65452 -Santorini 58860 -Santoro 60405 -Santorum 65452 -Santos 51026 -SantosWorld 62196 -Santosh 60321 -Santry 65452 -Santxez 62196 -Santé 58212 -Sanuk 58262 -Sanur 60856 -Sanus 59923 -Sanwa 65452 -Sanya 61940 -Sanyal 64657 -Sanyo 50416 -Sanz 60492 -Sao 47184 -Saoirse 65170 -Saori 64423 -Saosin 62917 -Saou 64905 -Sap 58860 -Sapa 62613 -Sapam 65170 -Saphira 63991 -Sapiens 62762 -Sapient 59848 -Sapienza 65452 -Saplings 64657 -Sapna 63601 -Sapo 63792 -Sapp 61472 -Sapphic 62762 -Sapphire 50409 -Sapporo 55154 -Sar 62331 -Sara 46288 -Sara's 60157 -Sarabande 65170 -Saracen 60405 -Saracens 61584 -Saragossa 64905 -Sarah 39252 -Sarah's 56262 -Sarai 63245 -Saraiva 64905 -Sarajevo 58113 -Saran 61472 -Saranac 61584 -Sarandon 62469 -Sarasin 64657 -Sarasota 50314 -Saraswati 62762 -Sarath 64905 -Saratoga 53286 -Saratov 65170 -Saravask 63419 -Sarawak 58523 -Sarbanes 61051 -Sarcasm 64201 -Sarcastic 63601 -Sarcoidosis 60670 -Sarcoma 62066 -Sarcomatoid 62196 -Sarda 59774 -Sardar 60492 -Sarde 61940 -Sardine 65170 -Sardines 63991 -Sardinia 57876 -Sardinian 62066 -Sardis 61152 -Saree 62066 -Sarees 63077 -Saregama 63792 -Sarge 61699 -Sargeant 64423 -Sargent 56110 -Sargeras 59357 -Sari 58113 -Sarin 62762 -Sarina 64905 -Saris 59848 -Sarita 63601 -Sark 63077 -Sarkar 58162 -Sarkis 63419 -Sarkisian 65170 -Sarkozy 53813 -Sarkozy's 61472 -Sarl 65452 -Sarma 63245 -Sarmiento 64201 -Sarnia 53316 -Sarnoff 62196 -Sarpolus 65452 -Sarsgaard 61699 -Sarto 62066 -Sartorialist 61051 -Sartorius 65452 -Sartre 64657 -Sarum 61051 -SarumanTheWhite 65452 -Sarvs 65452 -Sarwan 64423 -Sarwar 61584 -Sas 61584 -Sasa 65452 -Sasaki 58113 -Sascha 60321 -Sash 56972 -Sasha 51257 -Sasha's 65452 -Sashes 63991 -Sashimi 63245 -Saskatchewan 47300 -Saskatchewan's 62917 -Saskatoon 50492 -Saskia 60321 -Sasol 58860 -Sasquatch 61051 -Sass 59357 -Sassafras 62917 -Sasso 63792 -Sassoon 61472 -Sassy 55107 -SassyStock 62196 -Sastre 64423 -Sastry 62917 -Sasuke 56935 -Sat 40088 -SatNav 62762 -Sata 60492 -Satan 53517 -Satan's 57741 -Satanic 59357 -Satara 62762 -Satay 59292 -Satchel 56827 -Satchels 61699 -Sate 64201 -Sateen 57923 -Satelit 65170 -Satelite 62762 -Satellite 42947 -SatelliteGuys 58162 -Satellites 57318 -Sathana 63991 -Sathananthan 64423 -Sather 64201 -Sathorn 63792 -Sathya 64905 -Satie 65170 -Satin 49113 -Satine 64905 -Satire 55274 -Satirical 64657 -Satisfaction 47515 -Satisfactory 54664 -Satisfied 55821 -Satisfy 59702 -Satisfying 60580 -Satish 59101 -Sativa 61699 -Sato 55014 -Satoh 62066 -Satomi 62331 -Satori 61940 -Satoru 63077 -Satoshi 56687 -Satriani 59424 -Satsang 65170 -Satsuki 63991 -Satta 65452 -Sattalites 64905 -Sattar 59848 -Sattar's 65170 -Sattler 65452 -Satu 63419 -Saturated 56140 -Saturation 57009 -Saturday 39731 -Saturday's 52996 -Saturdays 51541 -Saturn 46392 -Saturn's 60952 -Satya 59292 -Satyajit 63991 -Satyam 58162 -Satyamev 64657 -Satyr 64423 -Sau 62762 -Sauber 65170 -Sauce 48776 -Saucer 58523 -Saucers 62066 -Sauces 54770 -Saucony 60762 -Saucy 59292 -Saud 62917 -Saudade 64905 -Saude 64657 -Sauder 60405 -Saudi 43115 -Saudia 64423 -Saudis 59630 -Sauer 58365 -Sauerkraut 62066 -Saugerties 64201 -Saugus 54685 -Sauk 56585 -Saul 54419 -Sault 51330 -Sauna 54041 -Saunas 59630 -Saunders 51942 -Saundra 63245 -Saunt 64423 -Saurabh 61472 -Saurav 64423 -Sausage 52886 -Sausages 59630 -Sausalito 60000 -Saussure 65170 -Saute 62917 -Sauteed 62917 -Sauter 62469 -Sauté 61818 -Sautéed 64201 -Sauvignon 53052 -Saux 63077 -Sava 63601 -Savage 49873 -Savages 62917 -Savana 64201 -Savane 63991 -Savanna 59164 -Savannah 48278 -Savannahs 65170 -Savant 58470 -Savard 63077 -Savas 64905 -Savatage 65452 -Save 33149 -SaveBusinessExample 65452 -SaveCancel 63245 -SaveNewVersion 62331 -SaveSaved 63991 -Saved 40675 -SavedData 62469 -Savegames 63245 -Saver 47100 -Saverio 65452 -Savers 52858 -Savery 64905 -Saves 52571 -Saveur 64657 -Savile 62613 -Saville 59039 -Savills 60321 -Savin 61940 -Saving 44563 -Savings 44428 -Savio 64201 -Savior 57160 -Saviors 65452 -Saviour 60000 -Savoie 63991 -Savoir 64423 -Savona 65170 -Savor 59424 -Savorings 63245 -Savors 59560 -Savory 57358 -Savoury 62066 -Savoy 53438 -Savoye 60952 -Savvy 52872 -Savy 64201 -Saw 46250 -Sawa 63792 -Sawada 65170 -Sawai 65170 -Sawant 63077 -Sawasdee 65170 -Sawbridgeworth 65170 -Sawdust 64657 -Sawer 65170 -Sawer's 63792 -Sawgrass 62331 -Sawhney 62331 -Sawhorse 61362 -Sawing 61362 -Sawmill 57440 -Sawmills 64201 -Sawn 64905 -Saws 53813 -Sawtooth 62762 -Sawyer 54360 -Sax 55398 -Saxby 64657 -Saxena 61256 -Saxo 62331 -Saxon 55299 -Saxons 62196 -Saxony 62469 -Saxophone 53256 -Saxophones 62762 -Saxophonist 65452 -Saxton 62196 -Say 41842 -Saya 60856 -Sayaka 63991 -Saybrook 62469 -Sayed 63792 -Sayer 63077 -Sayers 60952 -Sayfa 64201 -Sayin 63991 -Saying 51275 -Sayings 55178 -Sayles 63601 -Sayonara 60580 -Sayre 60856 -Sayreville 63245 -Says 45294 -Sayuri 62762 -Sayyed 65170 -Saúde 63601 -Sb 57278 -Sbornik 57238 -Sc 51570 -Scab 63792 -Scabbard 64905 -Scabies 61818 -Scaffold 59702 -Scaffolding 57278 -Scala 57696 -Scalability 57609 -Scalable 57440 -Scalamandre 65452 -Scalar 61584 -Scale 45151 -Scaled 59424 -Scales 50514 -Scalextric 64423 -Scalia 60405 -Scaling 55202 -Scallop 61362 -Scalloped 58979 -Scallops 59491 -Scalp 59357 -Scalpel 65452 -Scalzi 62917 -Scalzo 64423 -Scam 50249 -Scammer 62469 -Scammers 62762 -Scams 50726 -Scan 46285 -ScanAlert 61940 -ScanMaker 65170 -ScanSnap 63245 -ScanSoft 64657 -Scand 50750 -Scandal 51931 -Scandalous 62196 -Scandals 56791 -Scandia 61256 -Scandic 63792 -Scandinavia 54302 -Scandinavian 49732 -Scandinavica 64905 -Scandrett 63245 -Scania 57278 -Scanian 64423 -Scanjet 61256 -Scanlan 61584 -Scanlon 58523 -Scanned 56791 -Scannell 65452 -Scanner 48806 -Scanners 48811 -Scanning 50560 -Scans 54170 -Scantling 65170 -Scapegoat 65170 -Scar 56618 -Scarab 60762 -Scarabeo 64657 -Scarabs 63601 -Scaramouche 65170 -Scarborough 51804 -Scarce 63077 -Scarcity 64905 -Scare 55738 -Scarecrow 57785 -Scared 52622 -Scares 62469 -Scarf 53865 -Scarface 57238 -Scariest 60321 -Scaring 61699 -Scarisbrick 59560 -Scarlet 50213 -Scarlets 63077 -Scarlett 51275 -Scarpa 61362 -Scarpetta 65452 -Scarred 64905 -Scarring 65452 -Scars 56618 -Scarsdale 61051 -Scarshield 64201 -Scart 59702 -Scarves 54770 -Scary 50630 -Scat 61256 -Scatchard 61362 -Scatter 57482 -Scattered 55526 -Scattering 55084 -Scavazza 64905 -Scavenger 57278 -Scavengers 64657 -Scenario 54114 -Scenarios 55250 -Scenarist 65452 -Scene 44161 -Scenery 55963 -Scenes 47679 -Scenic 48510 -Scenics 64657 -Scent 54459 -Scented 57084 -Scents 57160 -Scenyx 61940 -Sceptre 61256 -Sch 54439 -Schaaf 64657 -Schaal 63077 -Schade 64905 -Schadenfreude 64657 -Schadlingskd 63601 -Schaefer 55037 -Schaeffer 59848 -Schaeffer's 60952 -Schaeffler 64201 -Schafer 59227 -Schaffer 59164 -Schaffner 62331 -Schalke 58577 -Schall 63601 -Schaller 60492 -Schama 60952 -Scharf 63601 -Schatten 64905 -Schatz 60670 -Schatzmair 60952 -Schau 64423 -Schaudt 64905 -Schauer 62196 -Schaumann 63077 -Schaumburg 57440 -Schechter 60952 -Schecter 62066 -Schedule 40054 -Scheduled 50469 -Scheduler 55578 -SchedulerName 65452 -Schedules 45182 -Scheduling 50328 -Scheels 63792 -Scheer 62917 -Scheffer 64657 -Scheffler 64905 -Scheherazade 62196 -Scheidt 63792 -Schein 59560 -Schell 61256 -Schelmish 63991 -Schelpe 61699 -Schema 54399 -Schemas 65170 -Schematic 51630 -Schematics 60952 -Schematron 65170 -Scheme 45809 -Schemes 52954 -Schenck 63991 -Schenectady 59774 -Schengen 63991 -Schenk 61051 -Schenker 64657 -Schepf 64905 -Scherer 60762 -Schererville 64201 -Schering 61472 -Scherrer 58919 -Scherzer 64201 -Scherzinger 58979 -Scherzo 64201 -Scheu 64423 -Schiavo 60000 -Schick 60321 -Schieber 62331 -Schieffer 59630 -Schiff 56231 -Schiffer 59702 -Schiffrin 64905 -Schild 63792 -Schiller 56652 -Schilling 56652 -Schimper 62762 -Schindler 60405 -Schindler's 60492 -Schiphol 58745 -Schirmer 62469 -Schism 65452 -Schistosoma 58860 -Schizophrenia 54151 -Schizophrenic 64201 -Schizosaccharomyces 59848 -Schl 64201 -Schlager 62331 -Schlatter 64201 -Schlegel 61818 -Schlehuber 64905 -Schleich 65170 -Schleicher 62917 -Schlemmer 61818 -Schlenker 65170 -Schlesinger 61152 -Schlessinger 63601 -Schliemann 65452 -Schlingensief 65452 -Schlitz 64905 -Schloss 58688 -Schlosser 63077 -Schlotzsky's 65170 -Schlumberger 62917 -Schmid 57970 -Schmidt 50409 -Schmidt's 64657 -Schmiedebergs 63601 -Schmit 61584 -Schmitt 55934 -Schmitz 59039 -Schmuck 65170 -Schmudlach 61584 -Schnabel 62917 -Schnapps 64423 -Schnauzer 61051 -Schneebaum 64905 -Schneider 51238 -Schneider's 63419 -Schneier 62196 -Schnell 61818 -Schneller 64657 -Schnitzel 62066 -Schnitzer 60856 -Schnucks 63419 -Schober 63991 -Schock 65170 -Schoen 64423 -Schoenberg 61051 -Schoenberg's 63991 -Schoenefeld 61818 -Schoenfeld 62917 -Schofield 57653 -Schoharie 64657 -Scholar 43454 -Scholar's 64657 -Scholarly 56200 -Scholars 51985 -ScholarsArchive 60238 -Scholarship 46299 -Scholarships 48496 -Scholastic 54341 -Scholes 61256 -Scholl 58632 -Scholl's 61362 -Scholls 62762 -Scholomance 60762 -Scholz 61472 -Scholze 64905 -Schon 63792 -Schonland 63077 -School 32462 -School's 53581 -SchoolDay 61818 -SchoolDegrees 64905 -SchoolNet 65170 -Schoolboy 65452 -Schoolchildren 62762 -Schoolcraft 63245 -Schoolday 62469 -Schooled 62066 -Schooler 62469 -Schoolers 63991 -Schoolgirl 57696 -Schoolgirls 58860 -Schoolhouse 59424 -Schoolies 63245 -Schooling 54499 -Schoolnet 63245 -Schools 37336 -Schooner 60492 -Schopenhauer 63419 -Schorr 64423 -Schott 59164 -Schottky 58113 -Schouten 63601 -Schrader 59848 -Schrage 64905 -Schram 65170 -Schramm 62196 -Schranz 64905 -Schreiber 59227 -Schreiner 64657 -Schritte 60580 -Schrock 63792 -Schroder 60321 -Schroders 61940 -Schrodinger 60762 -Schroeder 55178 -Schrott 64201 -Schrödinger 59848 -Schrödinger's 65452 -Schubert 55348 -Schubert's 63601 -Schuftan 64905 -Schuh 63245 -Schule 62613 -Schuler 59560 -Schull 65452 -Schulman 62196 -Schulte 58745 -Schultz 52725 -Schulz 55906 -Schulze 58745 -Schulzrinne 63991 -Schumacher 56721 -Schuman 61256 -Schumann 59101 -Schumer 60492 -Schumpeter 64657 -Schuster 56518 -Schutt 63419 -Schutz 63419 -Schuyler 58162 -Schuylkill 60952 -Schwab 54207 -Schwab's 64201 -Schwaiger 65452 -Schwalbe 60157 -Schwandt 65170 -Schwann 57009 -Schwartz 50726 -Schwartz's 64201 -Schwartzberger 64423 -Schwarz 55398 -Schwarzenegger 54114 -Schwarzenegger's 62066 -Schwarzer 65170 -Schwarzkopf 64423 -Schwarzschild 61256 -Schweinsteiger 64657 -Schweitzer 59292 -Schweiz 54946 -Schweizer 60078 -Schweppes 61051 -Schwimmer 61818 -Schwinn 55178 -Schwitters 64657 -Sci 44579 -SciELO 58523 -SciFi 57238 -SciTech 52074 -Sciacca 64423 -Sciam 63991 -Sciatica 60952 -Science 33582 -Science's 62331 -ScienceCareers 63245 -ScienceDaily 57696 -ScienceDaily's 64657 -ScienceDirect 54005 -ScienceFiction 61699 -ScienceNOW 64905 -Sciences 39495 -Scientia 65452 -Scientific 40961 -Scientifically 63245 -Scientifique 61940 -Scientist 48552 -Scientists 48230 -Scientologists 63419 -Scientology 54439 -Scientology's 64201 -Scienza 65170 -Scienze 59774 -Scifi 62917 -Scilla 60580 -Scilly 55821 -Scimitar 64423 -Scintillation 64201 -Scion 50686 -Scions 62613 -Scioto 63792 -Scipio 65170 -Scirocco 58632 -Scirpus 63245 -Scirus 63601 -Scissor 56050 -Scissorhands 56756 -Scissors 53813 -Scitech 63991 -Scituate 63245 -Scleroderma 61256 -Sclerophyll 64201 -Sclerosis 54946 -Sclipo 65170 -Scoala 63792 -Scobey 64905 -Scoble 61584 -Scobleizer 60856 -Scoffield 64423 -Scofield 60580 -Scoggins 63991 -Scola 65452 -Scolari 59848 -Scoliosis 59848 -Sconce 57199 -Sconces 60000 -Scone 62469 -Scones 61699 -Scooby 53153 -Scoop 50040 -Scoops 54946 -Scoot 59923 -Scooter 50060 -Scooters 51060 -Scop 63601 -Scope 46125 -ScopeMeter 63419 -Scopes 54857 -Scoping 58017 -Scopus 43866 -Scorch 58162 -Scorched 60321 -Score 42224 -Scoreboard 48097 -Scoreboards 62762 -Scorecard 54727 -Scorecards 62469 -Scored 58979 -Scorer 62917 -Scorers 58860 -Scores 45092 -Scoring 50402 -Scorned 59424 -Scorpio 50321 -Scorpion 55202 -Scorpions 57482 -Scorsese 59164 -Scorsese's 64905 -Scosche 63077 -Scot 53138 -ScotCareers 64905 -ScotY 65452 -Scotch 53241 -Scotia 48182 -Scotia's 65452 -Scotiabank 60492 -Scotian 65452 -Scotland 40713 -Scotland's 53746 -Scots 52387 -Scotsman 55154 -Scott 40050 -Scott's 54360 -Scottdale 64657 -Scotti 63991 -Scottie 61051 -Scottiki 63601 -Scottish 43573 -Scottrade 62196 -Scotts 56420 -Scottsdale 49517 -Scottsville 65452 -Scotty 54005 -Scotty's 62469 -Scoundrel 64905 -Scour 65170 -Scourge 57923 -Scouse 57358 -Scout 48538 -Scout's 63419 -Scouting 53377 -Scouts 51492 -Scoville 63419 -Scr 65452 -Scrabble 58523 -Scramble 58688 -Scrambled 61051 -Scrambler 61362 -Scrambles 64423 -Scrambling 64201 -Scranton 56862 -Scrap 50949 -Scrapbook 51700 -Scrapbookers 62066 -Scrapbooking 51630 -Scrapbooks 60762 -Scrape 63991 -Scraper 57970 -Scrapers 64201 -Scraping 63991 -Scrapped 61256 -Scrapper 64201 -ScrappleFace 62613 -Scrappy 57399 -Scraps 55178 -Scratch 50957 -Scratched 63792 -Scratchers 58860 -Scratches 62762 -Scratching 61699 -Scratchy 64423 -Scream 52118 -Screamer 63077 -Screamin 64905 -Screaming 55299 -Screamo 62331 -Screams 60952 -Screamstress 64905 -Screech 63792 -Screen 41900 -ScreenSaver 58313 -ScreenSavers 64201 -ScreenShot 64423 -ScreenShots 64201 -Screencaps 65452 -Screencast 61940 -Screencasts 59702 -Screened 59039 -Screener 52051 -Screeners 62613 -Screening 47297 -Screenings 56972 -Screenplay 57785 -Screenplays 62196 -Screens 47919 -Screensaver 49371 -Screensavers 51406 -Screenshot 48482 -Screenshots 46865 -Screentoaster 65452 -Screenwriter 58745 -Screenwriters 63601 -Screenwriting 60580 -Screven 64423 -Screw 50848 -ScrewAttack 59357 -Screwball 64657 -Screwdriver 57785 -ScrewdriverShop 65452 -Screwdrivers 58632 -Screwed 58162 -Screwfix 60492 -Screws 53746 -Scriabin 65452 -Scribble 61699 -Scribbler 62469 -Scribd 48928 -Scribe 57482 -Scribes 64423 -Scribner 64905 -Scribus 65452 -Scrimmage 61940 -Scrimmages 65452 -Scrip 62469 -Scripps 48861 -Script 46855 -ScriptLance 58417 -Scripta 56899 -Scripted 63792 -Scripting 49626 -Scripts 48975 -Scriptural 65452 -Scripture 52521 -Scriptures 56652 -Scrivener 64905 -Scrobbler 49986 -Scroggie 62196 -Scroll 47694 -Scrollbar 63601 -Scroller 57609 -Scrolling 57696 -Scrolls 52256 -Scrooge 64657 -Scrub 53597 -Scrubber 62762 -Scrubbers 65452 -Scrubbing 64905 -Scrubs 52459 -Scruff 64905 -Scruffy 65170 -Scruggs 59923 -Scrum 57653 -Scrumptious 64905 -Scrushy 65452 -Scrutiny 51122 -Scryer 63601 -Scryers 60580 -Scuba 50823 -ScubaBoard 63077 -Scudder 64423 -Scuderia 62762 -Scuff 65452 -Sculls 65452 -Scully 55202 -Sculpt 64905 -Sculpted 63419 -Sculpting 58919 -Sculptor 61362 -Sculptors 64905 -Sculptural 60492 -Sculpture 49847 -Sculptures 54902 -Scum 60670 -ScummVM 64657 -Scunthorpe 55274 -Scuola 62613 -Scurry 64423 -Scurvy 64905 -Scuttle 59101 -Scythe 58065 -Scythian 60762 -Sd 59702 -SdH 64905 -Sdn 55226 -Se 47259 -Sea 41363 -SeaDoo 65170 -SeaDream 52303 -SeaLife 64657 -SeaMonkey 60157 -SeaQuest 65170 -SeaSideSam 64657 -SeaTac 63991 -SeaWorld 60952 -Seabank 65170 -Seabed 64657 -Seabee 64423 -Seabees 61818 -Seabird 65452 -Seaboard 61699 -Seabourn 51640 -Seabreeze 62066 -Seabrook 58065 -Seabury 63245 -Seach 59491 -Seachem 64657 -Seacoast 59774 -Seacrest 59292 -Seadoo 63792 -Seafarer 64423 -Seafarers 63601 -Seafoam 63245 -Seafood 46925 -Seafoods 63245 -Seaford 60078 -Seaforth 59774 -Seafront 63991 -Seagal 64905 -Seagate 51531 -Seager 65170 -Seagrass 62917 -Seagrasses 64657 -Seagull 57696 -Seagulls 61584 -Seahawk 61940 -Seahawks 51814 -Seahorse 59560 -Seal 46299 -Sealand 65452 -Sealant 58860 -Sealants 56388 -Sealcoating 60580 -Sealed 51680 -Sealer 61051 -Sealers 60321 -Sealife 63991 -Sealift 65170 -Sealine 63991 -Sealing 55992 -Seals 51541 -Sealy 58313 -Seam 57358 -Seaman 46451 -Seamanship 64657 -Seamaster 60321 -Seamed 65452 -Seamen's 64423 -Seamless 53124 -Seamonkey 57970 -Seamount 63991 -Seams 63077 -Seamus 57482 -Sean 44259 -Sean's 59292 -Seances 59923 -Seapets 62917 -Seaplane 65170 -Seaport 58523 -Sear 60670 -Search 25779 -SearchAbout 63077 -SearchBox 62917 -SearchChicago 61940 -SearchCity 62762 -SearchEngineWorld 50568 -SearchMedica 64657 -Searchable 56485 -Searchbar 64423 -Searchblog 63601 -SearchePaperlNewsletterlArchives 63792 -Searched 45408 -Searcher 58919 -Searchers 62066 -Searches 37942 -Searching 44221 -Searchles 65452 -Searchlight 60492 -Searchrolls 64657 -Searcy 60238 -Seared 61699 -Searhces 62066 -Searing 59774 -Searle 56827 -Searle's 65170 -Searles 65452 -Searls 62066 -Sears 48395 -Seas 49054 -Seascape 63077 -Seascapes 61472 -Seashell 62331 -Seashore 61152 -Seasick 62469 -Seaside 53695 -Season 40788 -Season's 58688 -Seasonal 46837 -Seasonally 60580 -Seasoned 56827 -Seasonic 64657 -Seasoning 57199 -Seasonings 59702 -Seasons 47402 -Seat 45354 -Seatbelt 60856 -Seatbelts 64201 -Seated 59292 -Seater 57318 -Seating 49365 -Seaton 58065 -Seatpost 63419 -Seatposts 62066 -Seats 47649 -Seattle 40598 -Seattle's 57831 -Seatwave 58919 -Seaview 59101 -Seawall 64423 -Seawater 60405 -Seaway 60238 -Seaweed 57923 -Seawind 64657 -Seawolves 63419 -Seaworld 65452 -Seay 63419 -Seb 61051 -Seba 63077 -Sebadoh 63601 -Sebago 63077 -Sebamed 65452 -Sebastes 63419 -Sebastian 49670 -Sebastian's 63419 -Sebastien 55474 -Sebastián 61818 -Sebastopol 62613 -Sebel 61940 -Sebelius 64423 -Sebeok's 65170 -Sebergham 65170 -Sebi 61256 -Sebo 64423 -Sebring 55107 -Sec 52198 -Seca 59848 -Secateurs 65170 -Secaucus 65170 -Secchi 64657 -Secession 61699 -Secluded 61584 -Seco 60321 -Second 39807 -Secondary 44179 -SecondaryResortColumnIndex 60078 -Secondbrain 62469 -Seconded 55448 -Secondhand 51193 -Secondly 60078 -Seconds 49854 -Secours 60492 -Secrecy 59039 -Secret 42587 -Secret's 63991 -Secretarial 52954 -Secretariat 51275 -Secretariat's 64905 -Secretaries 57046 -Secretary 42495 -Secretary's 57524 -Secreted 61472 -Secretion 57440 -Secretly 61051 -Secreto 63245 -Secretory 60078 -Secrets 45080 -Secs 60580 -Sect 61152 -Section 36917 -SectionNext 63077 -Sectional 56862 -Sectionals 64657 -Sectioning 64423 -Sections 43061 -Sectoid 65452 -Sector 43758 -Sector's 63792 -Sectoral 60405 -Sectors 50848 -Secuencia 65170 -Secular 55604 -Secularism 65452 -Secunda 62196 -Secunderabad 61472 -Secunia 60078 -Secure 43303 -SecureCode 65170 -SecureEscorts 62917 -SecureInfo 65170 -SecureLM 61256 -Secured 50285 -Securely 56652 -Secures 58313 -Securify 63077 -Securing 54992 -Securit 60238 -Securitas 61256 -Securities 44570 -Securitisation 63245 -Securitization 65170 -Security 34624 -Security's 63991 -SecurityCenter 65452 -SecurityDot 63991 -SecurityFocus 64905 -SecurityMetrics 60856 -SecurityTracker 65452 -Sed 59630 -Seda 61584 -Sedalia 63419 -Sedan 49291 -Sedans 54264 -Sedaris 61152 -Sedation 60762 -Sedbergh 64905 -Seddon 63601 -Seder 64657 -Sedgefield 64201 -Sedgemoor 63991 -Sedgley 64423 -Sedgwick 57876 -Sedillo 65452 -Sediment 55793 -Sedimentary 57046 -Sedimentation 60580 -Sedimentology 61362 -Sediments 58979 -Sedition 64905 -Sedma 65452 -Sedna 61256 -Sedo 46373 -Sedo's 49559 -Sedona 55963 -Sedu 65170 -Seduce 59848 -Seduced 62331 -Seduction 55711 -Seductions 65452 -Seductive 62331 -See 30465 -SeeBeyond 62613 -Seebeck 64201 -Seed 47300 -Seeded 55657 -Seeder 63077 -Seeders 56324 -Seeding 59702 -Seedling 60580 -Seedlings 59357 -Seedpeer 64201 -Seeds 48088 -Seefeld 63792 -Seeforellen 64657 -Seeger 58577 -Seeing 49739 -Seek 49926 -Seeker 46466 -Seekers 51321 -Seeking 47895 -Seeks 51867 -Seelam 64905 -Seeley 58860 -Seely 65452 -Seem 57399 -Seema 61699 -Seemed 61472 -Seemingly 62917 -Seems 49959 -Seen 46631 -Seer 62762 -Seersucker 65170 -Sees 53533 -Seesmic 63991 -Seether 63419 -Seething 62331 -Seetickets 63792 -Sefton 55711 -Sega 50774 -Segal 56791 -Segara 61940 -Seger 61256 -Segment 50807 -Segmental 62762 -Segmentation 56021 -Segmented 61472 -Segments 56452 -Segnalo 60238 -Segovia 62331 -Segregated 64423 -Segregation 59424 -Segue 62196 -Seguin 59702 -Segunda 60000 -Segundo 57653 -Segura 63245 -Segurança 62762 -Seguridad 58577 -Seguro 62331 -Seguros 63991 -Segway 57696 -Sehgal 57970 -Sehr 64201 -Sehwag 64657 -Sei 59848 -Seibel 63991 -Seibert 63792 -Seibertron 61362 -Seidel 59292 -Seiden 64657 -Seidman 62196 -Seifert 63077 -Seiji 62762 -Seika 64201 -Seiki 63077 -Seiko 53470 -Seiler 62066 -Seimei 61256 -Sein 63601 -Seine 58313 -Seinfeld 55037 -Seismic 54706 -Seismological 56618 -Seismology 61699 -Seite 55877 -Seiten 63077 -Seitenanfang 62331 -Seitenende 64657 -Seitz 60157 -Seiwa 65170 -Seixas 65452 -Seiya 56518 -Seize 58577 -Seized 59424 -Seizes 63077 -Seizure 56485 -Seizures 57278 -Sekai 61584 -Sekhar 64657 -Seki 62331 -Sekiguchi 62613 -Sekirei 63792 -Sekolah 64423 -Sekonda 63077 -Sel 61699 -SelB 59848 -Sela 63245 -Selah 62762 -Selamat 65452 -Selangor 58860 -Selassie 65452 -Selatan 63419 -Selb 59164 -Selby 56827 -Selden 63601 -Seldom 61051 -Seleccionar 65170 -Select 34729 -SelectACL 65452 -SelectActions 63601 -SelectAgents 63245 -SelectAll 62613 -SelectAllAdminNotes 64423 -SelectAllCodeElements 64423 -SelectAllDataNotes 64423 -SelectAllDesignElements 63991 -SelectAllFormatElements 63991 -SelectAllIndexElements 63601 -SelectAllNotes 63601 -SelectDatabaseScript 62762 -SelectDocument 64201 -SelectDocuments 62917 -SelectFolders 62613 -SelectForms 63245 -SelectFrameSets 64905 -SelectHelpAbout 62917 -SelectHelpIndex 62917 -SelectHelpUsing 62613 -SelectIcon 62613 -SelectImageResources 62613 -SelectJavaResources 62613 -SelectMiscCodeElements 62613 -SelectMiscFormatElements 62613 -SelectMiscIndexElements 62613 -SelectNavigators 62196 -SelectOutlines 62331 -SelectPages 62196 -SelectProfiles 65170 -SelectQuery 63792 -SelectReplicationFormulas 62066 -SelectScriptLibraries 61818 -SelectSharedFields 61699 -SelectStyleSheetResources 63991 -SelectStylesheetResources 65452 -SelectSubforms 61584 -SelectViews 61584 -Selecta 64423 -Selectable 60405 -Selectboard 63245 -Selected 43636 -Selecteer 64905 -Selecting 50840 -Selection 43546 -SelectionFormula 59101 -Selections 51257 -Selective 51590 -Selectively 64905 -Selectivity 61152 -Selectman 56170 -Selectmen 58262 -Selector 53052 -Selectors 63245 -Selects 52327 -Selena 50299 -Selene 63601 -Selenium 54770 -Seles 65170 -Seleucia 63792 -Seley 63245 -Self 42489 -SelfMagazine 59292 -Selfish 61584 -Selfridge 63991 -Selfridges 63077 -Selig 60492 -Seligman 61699 -Selim 62066 -Selina 57923 -Selinger 63601 -Selita 65452 -Seljuk 65452 -Selkirk 60670 -Selkirkshire 63419 -Sell 37843 -Sella 65452 -Selle 59357 -Seller 40501 -Seller's 47887 -Sellers 42264 -Sellinet 64657 -Selling 42524 -Sellout 63601 -Sells 52118 -Selly 64423 -Selma 54813 -Selman 62762 -Selmar 64423 -Selmer 62613 -Seltzer 60856 -Selva 62613 -Selves 65452 -Selwyn 61051 -Sem 56518 -Sema 60952 -Seman 64657 -Semana 58212 -Semantic 51660 -Semantics 57160 -Semaphore 59702 -Semarang 64905 -Sematary 65170 -Semazzi 63991 -Sembawang 64201 -Sembee 63419 -Semel 63245 -Semen 57199 -Semester 53712 -Semi 51303 -Semiclassical 56585 -Semiconductor 47992 -Semiconductors 53331 -Semifinal 63792 -Semifinals 59848 -Semillon 61051 -Semin 57524 -Seminal 61818 -Seminar 47266 -Seminars 47002 -Seminary 54499 -Seminole 54399 -Seminoles 56862 -Seminyak 62469 -Semiotics 64657 -Semis 60238 -Semitic 58979 -Semmelweis 63792 -Semoun 65170 -Semper 59560 -Semple 63601 -Sempra 63419 -Sempron 59357 -Sen 51690 -Sen'jin 61051 -Sena 60762 -Senate 43323 -Senate's 59923 -Senator 44974 -Senator's 61051 -Senatorial 61472 -Senators 51104 -Senay 63601 -Send 31260 -SendConsoleCommand 64905 -SendKeys 65452 -Senda 65452 -Sendai 58017 -Sendak 65170 -Sendcancel 60238 -Sender 55274 -Senders 62066 -Sending 50321 -Sendmail 58802 -Sendo 60492 -Sends 55552 -SeneGence 61584 -Seneca 54380 -Senedd 65452 -Senegal 45549 -Senegalese 62613 -Senescing 65452 -Senet 64423 -Seng 55684 -Sengkang 62613 -Sengoku 62613 -Sengupta 62196 -Seni 65170 -Senior 37786 -Senior's 60078 -Seniority 64201 -Seniors 46395 -Senn 63077 -Senna 60492 -Senne 65452 -Sennheiser 52164 -Senokot 65452 -Senor 59848 -Senora 63419 -Senos 63245 -Sens 58017 -Sensation 53899 -Sensational 57482 -Sensations 57566 -Sensatron 63245 -Sense 48771 -Sensei 56110 -Senses 56827 -Sensex 56618 -Senshi 61940 -Sensibility 64657 -Sensible 57609 -Sensing 52315 -Sensis 60856 -Sensitive 52521 -Sensitivities 65452 -Sensitivity 51570 -Sensitization 63792 -Sensor 48139 -Sensorless 64657 -Sensors 50758 -Sensory 53301 -Sensual 55500 -Sensuous 62066 -Sent 49834 -Sentai 65170 -Sentara 64423 -Sentech 63792 -Sentence 53109 -Sentenced 55631 -Sentences 55849 -Sentencing 55107 -Senter 62917 -Sentero 65452 -Sentiment 57318 -Sentimental 52899 -Sentiments 63991 -Sentinal 65452 -Sentinel 48706 -Sentinels 58745 -Sentosa 62917 -Sentra 55474 -Sentry 54380 -Senza 62917 -Seo 56170 -Seong 64657 -Seoul 50923 -Sep 34103 -Sepak 62196 -Sepals 64201 -Sepang 64423 -Separate 49371 -Separated 56687 -Separately 59774 -Separates 59101 -Separating 59039 -Separation 51202 -Separations 63245 -Separatist 64201 -Separator 59491 -Separators 61940 -Seperate 61699 -Sephadex 57440 -Sephardic 63792 -Sepharose 58632 -Sephiroth 60405 -Sephiroth's 65452 -Sephora 54857 -Sepia 59164 -Sepik 64657 -Seppo 63792 -Sepsis 60762 -Sept 46812 -Septal 64905 -September 32436 -September's 60952 -Septembre 61818 -Septic 53847 -Septiembre 62066 -Septoria 65452 -Sepultura 60762 -Sepulveda 60321 -Seq 64201 -Sequel 56756 -Sequels 58860 -Sequence 48746 -Sequencer 61256 -Sequences 54992 -Sequencing 53038 -Sequential 53762 -Sequestration 63245 -Sequim 63077 -Sequin 55766 -Sequined 60492 -Sequins 60670 -Sequitur 65452 -Sequoia 55014 -Ser 53438 -Sera 57199 -Serafina 64201 -Serafini 64905 -Serangoon 62917 -Seraph 63245 -Seraphim 59774 -Serb 57524 -Serbia 46418 -Serbia's 63991 -Serbian 50249 -Serbo 64657 -Serbs 61051 -Serchlit 59848 -Serchlite 59848 -Serco 64423 -Serdar 62917 -Serena 52164 -Serena's 64905 -Serenade 51570 -Serenades 64905 -Serenata 64905 -Serendipity 58688 -Serene 57084 -Serengeti 59292 -Serenity 54283 -Sereno 60321 -Serge 54439 -Sergeant 41615 -Sergeants 64905 -Sergei 54399 -Sergey 55877 -Sergi 63419 -Sergio 50873 -Sergiy 64905 -Serguei 64657 -Seri 60157 -Seria 65452 -Serial 44148 -Serialization 57238 -Serialized 63419 -Serializer 64423 -Serials 52484 -Serie 51266 -Seriecanal 64201 -Series 36116 -SeriesGlock 64905 -Serif 58365 -Serigraph 65452 -Serine 59424 -Serio 63245 -Serious 47395 -Seriously 52899 -Seriya 65170 -Serj 62066 -Serkan 59923 -Sermatech 63077 -Sermon 55107 -Sermons 55299 -Sern 63792 -Serologic 64657 -Serological 60000 -Serology 64423 -Seropositivity 65170 -Seroquel 59424 -Serotec 63245 -Serotonin 58979 -Serpent 58688 -Serpentine 58632 -Serpentis 63077 -Serpents 61256 -Serpentshrine 60580 -Serpico 64905 -Serr 65452 -Serra 56485 -Serrano 58065 -Serrated 63419 -Serratia 63792 -Serres 64201 -Serta 61362 -Sertifikasi 63245 -Sertoli 60238 -Sertraline 63077 -Serum 48913 -Serums 64201 -Serv 54992 -Servant 56551 -Servants 59848 -Serve 49713 -Served 50461 -Server 36739 -Server's 63419 -ServerBeach 63792 -ServerHint 65170 -ServerName 59424 -Servers 42438 -Serves 51711 -Serveware 56899 -Servic 64423 -Service 31308 -Service's 57278 -ServiceDelivery 63245 -ServiceDeliveryPriorities 64201 -ServiceDeliveryReports 62196 -ServiceMagic 58979 -ServiceMix 63419 -Serviced 54207 -Serviceman 54643 -Servicer 65170 -Services 30297 -Services's 60952 -Servicing 51721 -Servicio 59424 -Servicios 58577 -Servidor 65170 -Servier 65452 -Serving 43886 -Servings 56518 -Servint 65170 -Servis 65170 -Servizio 63077 -Servlet 55738 -Servlets 59774 -Servo 57399 -Servos 62469 -Ses 64423 -Sesame 51113 -SesameStreet 58860 -Sesh 64905 -Sesotho 65452 -Sesriem 63601 -Session 42513 -SessionBass 64657 -Sessions 47634 -Sessler 64905 -Sesto 64905 -Set 35855 -SetAction 65452 -SetAliases 60492 -SetContentFromBytes 65452 -SetContentFromText 65452 -SetEnvironmentVar 64423 -SetFileAttr 64905 -SetNamedElement 65452 -SetNoteLink 65452 -SetOption 63792 -SetParameter 64423 -SetStyle 65170 -SetTab 63419 -SetTabs 63601 -SetURL 64423 -SetValue 64423 -SetValueCustomDataBytes 63991 -Seta 65452 -Setanta 58417 -Setauket 64657 -Setback 63245 -Setembro 63792 -Seth 48571 -Seth's 60670 -Sethekk 63077 -Sethi 64201 -Sethu 65170 -Setlist 61584 -Seto 60078 -Seton 55631 -Sets 43017 -Sette 61699 -Setter 56293 -Setters 60492 -Setting 46183 -Settings 41909 -Settle 56021 -Settled 59424 -Settlement 48318 -Settlements 54151 -Settlers 57358 -Settles 59039 -Settling 58017 -Setubal 62613 -Setup 45671 -Setups 59774 -Setzer 63077 -Setúbal 60238 -Seu 60492 -Seulement 62469 -Seung 59630 -Seungmoon 64657 -Seuss 59227 -Sev 60952 -Seva 64423 -Seve 60670 -Seven 43973 -Sevendust 64423 -Sevenfold 57696 -Sevenoaks 58577 -Sevens 59923 -Sevenstring 64201 -Seventeen 55060 -Seventeenth 61051 -Seventh 50263 -SeventhGeneration 63601 -Seventies 58688 -Seventy 57609 -Sever 60580 -Severability 64201 -Several 43768 -Severance 58313 -Severe 48682 -Severed 62331 -Severely 61152 -Severin 60580 -Severity 54685 -Severn 56791 -Severna 62196 -Severson 64423 -Severus 56862 -Sevier 62762 -Sevierville 63419 -Sevigny 62469 -Sevilla 54041 -Seville 54439 -Sevylor 62917 -Sew 56972 -Sewage 54459 -Seward 56935 -Sewell 57046 -Sewer 49476 -Sewerage 58802 -Sewers 60952 -Sewing 48208 -Sewn 62066 -Sex 39012 -SexBlogs 57358 -Sexblog 64657 -Sexe 62331 -Sexes 58632 -Sexiest 51953 -SexiiLizZiOus 65170 -Sexism 61699 -Sexist 63792 -Sexless 65452 -Sexo 60492 -Sexpert 65452 -Sextet 61699 -Sexton 57482 -Sextury 64423 -Sextus 62469 -Sexual 44863 -Sexuality 52007 -Sexually 49464 -Sexy 41453 -SexyBack 64423 -SexyNomsa 63991 -Sey 65452 -Seychelles 46681 -Seyfert 65170 -Seyfried 64657 -Seyler 63077 -Seymore 61940 -Seymour 51444 -Seymours 65170 -Seyret 62917 -Sez 64905 -Sezer 62613 -Sezione 61152 -Seán 62762 -Señor 60952 -Sf 58632 -Sfmt 56935 -Sfp 62331 -Sfx 61699 -Sg 62196 -Sgn 64201 -Sgt 56862 -Sh 57399 -Sha 55448 -Sha'tar 62917 -Shaaban 65170 -Shaadi 59630 -Shaanxi 60078 -Shabazz 65170 -Shabbat 59101 -Shabbir 61152 -Shabbona 65170 -Shabby 59560 -Shack 52051 -Shackle 62196 -Shackleford 64201 -Shackles 61940 -Shackleton 63991 -Shacknews 60157 -Shad 59774 -Shade 50328 -Shaded 58365 -Shader 62066 -Shaders 64423 -Shades 51650 -Shading 61818 -Shadow 45565 -ShadowBoxing 64905 -Shadowfang 60952 -Shadowfury 63419 -Shadowglen 65452 -Shadowmoon 57160 -Shadowmoor 63245 -Shadowrun 64201 -Shadows 49566 -Shadowsong 59227 -Shadowy 61256 -Shadwell 61699 -Shady 53549 -Shadyside 64657 -Shae 60762 -Shafer 58262 -Shaffer 57318 -Shaft 53081 -Shafter 64423 -Shaftesbury 59702 -Shafts 58979 -Shag 58745 -Shaggy 56356 -Shah 50591 -Shah's 63245 -Shahan 65170 -Shaheed 62066 -Shaheen 63245 -Shahi 61051 -Shahid 57440 -Shahin 64423 -Shahram 65170 -Shahrukh 57199 -Shai 59630 -Shaikan 63077 -Shaikh 60157 -Shain 64905 -Shaina 65170 -Shaiya 65170 -Shak 64905 -Shaka 62762 -Shakatak 62469 -Shake 49229 -Shakedown 59424 -Shakeel 63601 -Shakeela 63077 -Shaken 61152 -Shaker 52940 -Shakers 52303 -Shakes 57199 -Shakespeare 48256 -Shakespeare's 54207 -Shakespearean 59923 -Shakesville 63792 -Shakhtar 62762 -Shakin 58632 -Shaking 59491 -Shakir 64905 -Shakira 53549 -Shaklee 64423 -Shakopee 63601 -Shakti 62196 -Shakugan 58113 -Shakur 61472 -Shaky 63077 -Shakyamuni 64657 -Shale 57199 -Shales 64423 -Shalimar 60157 -Shalini 63245 -Shall 52107 -Shallots 63601 -Shallow 55766 -Shalom 57046 -Sham 55963 -Shaman 50873 -Shamanic 64657 -Shamanism 63792 -Shamans 62917 -Shambhala 62762 -Shambles 63991 -Shame 52152 -Shameless 54879 -Shamil 62917 -Shamim 62469 -Shamir 61472 -Shampoo 51387 -Shampoos 62613 -Shamrock 54041 -Shamrocke 63419 -Shamrocks 65170 -Shams 59164 -Shan 54601 -Shana 54879 -Shanahan 58632 -Shand 64423 -Shanda 59227 -Shandon 64201 -Shandong 55526 -Shandris 61152 -Shandy 63792 -Shane 47984 -Shane's 58523 -Shanes 63077 -Shang 60157 -Shanghai 45799 -Shanghai's 60856 -Shanghainese 61362 -Shangri 65170 -Shani 60405 -Shania 56231 -Shanice 65170 -Shank 59164 -Shankar 55992 -Shanker 63792 -Shankle 63419 -Shanklin 64905 -Shanks 61051 -Shanley 64905 -Shanna 56293 -Shannan 64905 -Shannen 60856 -Shannon 47050 -Shannon's 61584 -ShannonRawls 64905 -Shanon 65170 -Shanta 64423 -Shantanu 65452 -Shanthi 65452 -Shanti 57566 -Shanty 65452 -Shanxi 57566 -Shao 62917 -Shaolin 57238 -Shaoxing 62762 -Shape 48135 -Shaped 53630 -Shaper 60238 -Shapers 61699 -Shapes 53882 -Shapeshifter 65170 -Shapewear 62917 -Shaping 53917 -Shapira 65170 -Shapiro 53407 -Shapiro's 63792 -Shaq 58065 -Shaquille 59292 -Shar 58919 -SharQ 65452 -Shara 65170 -Sharad 63601 -Sharafuddin 63419 -Sharan 63419 -Sharapova 57566 -Shard 64201 -Shards 61152 -Share 33907 -ShareAlike 58919 -ShareBuilder 65170 -SharePoint 45220 -ShareThis 58745 -Shareaza 64905 -Shared 47721 -Shareholder 52954 -Shareholders 53124 -Shareholding 61818 -Shareholdings 64423 -Sharemarket 63991 -Sharepoint 54813 -Sharer 65452 -Shares 47187 -Sharewani 65452 -Shareware 45497 -Sharewatch 64657 -Sharh 65170 -Shari 58577 -Sharia 60000 -Sharif 57122 -Shariff 63991 -Sharing 43516 -SharingZone 63245 -Sharingan 63601 -Sharir 63991 -Sharjah 58470 -Shark 49452 -SharkBait 65452 -Sharkey 62331 -Sharks 50553 -Sharm 54835 -Sharma 51492 -Sharman 60952 -Sharmila 65452 -Sharmin 65452 -Sharon 46282 -Sharon's 59357 -Sharp 45583 -Sharp's 62762 -Sharpe 56452 -Sharpe's 62613 -Sharpen 61051 -Sharpener 60952 -Sharpeners 57046 -Sharpening 58365 -Sharper 59357 -Sharpie 61584 -Sharples 62331 -Sharpless 65452 -Sharply 52152 -Sharpness 61362 -Sharps 59560 -Sharpton 58802 -Sharron 63077 -Sharyn 63991 -Shas 63991 -Shashank 63991 -Shashi 63419 -Shasta 56356 -Shastra 61584 -Shastri 65170 -Shatner 56972 -Shatter 63601 -Shattered 53182 -Shattering 63991 -Shattrath 60492 -Shattuck 61152 -Shaughnessy 62066 -Shaukat 64423 -Shaul 64905 -Shaun 49860 -Shaun's 65452 -Shauna 57696 -Shave 56231 -Shaved 55992 -Shaver 54643 -Shavers 56324 -Shaves 64905 -Shaving 53813 -Shavings 64201 -Shavlik 63419 -Shaw 48093 -Shaw's 59848 -Shawano 64423 -Shawinigan 55202 -Shawl 58523 -Shawls 61362 -Shawmut 63601 -Shawn 48055 -Shawn's 65170 -Shawna 60321 -Shawne 64657 -Shawnee 54792 -Shawneetown 65170 -Shawnie 65170 -Shawnna 64201 -Shawshank 59227 -Shawty 59848 -Shay 56050 -Shayari 58417 -Shaykh 63792 -Shayla 62469 -Shayna 62331 -Shayne 58065 -Shazam 59630 -Shc 64905 -ShcA 61940 -Shchusev 63419 -She 35974 -She'd 58470 -She'll 56862 -She's 45472 -SheKnows 63245 -SheMet 62613 -Shea 52029 -Sheaffer 54459 -Sheaffer's 63792 -Shean 64423 -Shear 53024 -Sheard 62469 -Shearer 57970 -Shearing 64201 -Shearling 63245 -Shears 57399 -Shearwater 63419 -Sheath 58017 -Sheathing 62196 -Sheaves 65452 -Sheba 61051 -Sheboygan 58745 -Sheckler 61362 -Shed 50915 -Shedding 60580 -Sheds 55060 -Shedworking 65452 -Shee 64423 -Sheehan 53346 -Sheehy 63991 -Sheek 64423 -Sheen 55423 -Sheen's 64657 -Sheena 58262 -Sheep 50522 -Sheep's 63792 -Sheepdog 56899 -Sheepshead 62917 -Sheepskin 56388 -Sheepskins 64201 -Sheer 53917 -Sheerness 65452 -Sheers 64657 -Sheet 42922 -Sheetal 64423 -Sheetfed 63077 -Sheeting 62762 -Sheets 47002 -Sheff 60580 -Sheffield 47190 -Sheik 57741 -Sheikh 52752 -Sheila 49880 -Sheila's 65452 -Shekel 61051 -Shekels 64201 -Shekhar 62196 -Shel 60670 -Shela 62762 -Shelagh 64201 -Shelbourne 63077 -Shelburne 61152 -Shelby 49663 -Shelbyville 58632 -Sheldon 52411 -Shelf 48524 -Shelfari 62917 -Shelford 64423 -Shelhigh 63077 -Shelia 62762 -Shell 46061 -Shell's 62917 -Shellac 62066 -Shelled 65170 -Shelley 51248 -Shelley's 59491 -Shellfish 57122 -Shelli 65452 -Shellid 64905 -Shells 56262 -Shellshock 64905 -Shelly 52778 -Shelter 49701 -Shelterbelt 65170 -Sheltered 58162 -Sheltering 63991 -Shelters 55178 -Sheltie 64423 -Shelton 53301 -Shelves 53746 -Shelving 52280 -Shemale 53124 -Shemales 56200 -Shemini 63792 -Shen 54969 -ShenZhen 65452 -Shenae 63601 -Shenandoah 55684 -Shenanigans 62613 -Sheng 55963 -Shenk 64657 -Shenley 63792 -Shenoy 64423 -Shenson 65452 -Shenstone 62066 -Shenton 65170 -Shenyang 60762 -Shenzhen 52152 -Shep 65170 -Shepard 52459 -Shephard 62917 -Shepherd 49893 -Shepherd's 57482 -Shepherds 58365 -Sheppard 54459 -Sheppard's 63792 -Shepparton 59292 -Shepstone 65170 -Shepton 65170 -Sher 58523 -Sheraton 50750 -Sherawat 59357 -Sherbet 64905 -Sherborn 64905 -Sherborne 62331 -Sherbourne 62613 -Sherbrooke 53988 -Sherburne 60670 -Sherdog 60405 -Sheree 62196 -Sheri 56518 -Sheridan 50782 -Sheridan's 64423 -Sherif 64423 -Sheriff 49732 -Sheriff's 50823 -Sheriffs 56687 -Sheringham 63245 -Sherk 61699 -Sherlock 54969 -Sherlock's 64905 -Sherlyn 63419 -Sherman 49070 -Sherman's 60580 -Shermans 62762 -Shermer 63792 -Sherpa 58017 -Sherratt 64201 -Sherri 55348 -Sherrie 60000 -Sherriff 64905 -Sherrill 60000 -Sherrington 62762 -Sherrod 63792 -Sherry 51804 -Sherwani 63792 -Sherwin 59164 -Sherwood 52074 -Sheryl 52982 -Shes 56293 -Sheth 63792 -Shetland 53581 -Shetty 57923 -Sheva 65452 -Shevchenko 62331 -Shewanella 64423 -Shh 65452 -Shhh 63245 -Shi 53597 -Shi'ite 64657 -ShiPainter 65452 -Shia 54749 -Shiai 64423 -Shiatsu 59702 -Shiba 63991 -Shibata 60238 -Shibboleth 63419 -Shibuya 60856 -Shichi 63419 -Shido 63792 -Shieh 64657 -Shield 47780 -Shielded 57785 -Shielding 58017 -Shields 50856 -Shift 47760 -Shifted 61256 -Shifter 56935 -Shifters 60321 -Shifting 55684 -Shifts 55226 -Shifty 63245 -Shiga 59491 -Shige 62613 -Shigella 56972 -Shigeo 63419 -Shigeru 58860 -Shigofumi 65170 -Shih 55274 -Shiite 56140 -Shiites 61051 -Shijou 64657 -Shika 62917 -Shikabane 65170 -Shikari 62762 -Shiki 65452 -Shikoku 62762 -Shiksha 63601 -Shildon 56935 -Shiller 63419 -Shilling 57482 -Shillong 62066 -Shilo 64423 -Shiloh 55474 -Shilowa 64905 -Shilpa 56687 -Shilton 64905 -Shim 59848 -Shimada 62469 -Shimadzu 59292 -Shimane 64905 -Shimano 52559 -Shimizu 57199 -Shimla 59630 -Shimmer 57160 -Shimmering 61940 -Shimmy 63601 -Shimoji 63077 -Shimomura 65452 -Shimon 60238 -Shimura 61051 -Shin 51026 -Shinagawa 61699 -Shinai 63245 -Shinar 65170 -Shine 49086 -Shinedown 62066 -Shiner 64657 -Shines 59164 -Shiney 64905 -Shing 62762 -Shingawa 62613 -Shingetsutan 64201 -Shingle 58745 -Shingles 59424 -Shingo 63792 -Shinguards 62331 -Shinichi 61699 -Shinichiro 65452 -Shinigami 61584 -Shining 53271 -Shinji 61362 -Shinjuku 57741 -Shinkansen 62762 -Shinkei 62196 -Shinkeigaku 65452 -Shinn 62196 -Shino 62917 -Shinobi 60321 -Shinobu 65170 -Shinoda 64905 -Shinra 64905 -Shinran 65170 -Shins 59774 -Shinsengumi 60856 -Shinshu 62762 -Shintaro 64201 -Shinto 57238 -Shiny 50646 -Shinya 64423 -Shinyanga 63245 -Shion 63601 -Shionogi 64657 -Ship 45855 -Ship's 54023 -Shipboard 65170 -Shipbuilding 56140 -Shipley 55738 -Shipman 60157 -Shipment 54399 -Shipments 56388 -Shipped 53597 -Shippensburg 63419 -Shipper 62066 -Shippers 61699 -Shipping 36020 -Shippuden 56324 -Shippuuden 54857 -Ships 43010 -Shipston 63792 -Shipton 64657 -Shipwreck 60952 -Shipwrecked 64905 -Shipwrecks 64657 -Shipwrights 65170 -Shipyard 54207 -Shipyards 56110 -Shir 64423 -Shira 62331 -Shiraishi 65170 -Shiraz 55552 -Shirazi 64905 -Shirdi 62331 -Shire 49657 -Shireen 65452 -Shires 63792 -Shirin 65170 -Shirky 65452 -Shirl 63419 -Shirley 49584 -Shirley's 65452 -Shiro 63419 -Shirosaki 60762 -Shirred 64905 -Shirt 45723 -Shirtless 61818 -Shirtmakers 65452 -Shirts 46118 -Shirwan 65170 -Shiseido 58860 -Shisha 61152 -Shishi 64905 -Shit 52029 -Shitamachi 64905 -Shite 65452 -Shitty 63991 -Shiv 60321 -Shiva 56618 -Shivaji 62917 -Shively 64423 -Shiver 58212 -Shivering 60078 -Shivers 64201 -Shiwasu 60157 -Shizuka 64201 -Shizuoka 61362 -Shkarko 60856 -Shleifer 64657 -Shlomo 61940 -Shmuel 62331 -Shnika 64905 -Sho 58860 -Shoaib 61472 -Shoal 60952 -Shoalhaven 62469 -Shoals 57160 -Shobhan 64905 -Shock 48533 -Shocked 59101 -Shocker 60405 -Shockers 62469 -Shockey 60078 -Shocking 54264 -Shockley 62917 -Shocks 54519 -Shockwave 54770 -Shodan 62762 -Shoe 44408 -ShoeMall 57741 -Shoebox 62762 -Shoebuy 62196 -Shoegazing 63245 -Shoei 61699 -Shoemaker 58745 -Shoes 38857 -Shoestring 61152 -Shoewawa 62762 -Shogun 57741 -Shoji 60856 -Shoko 65452 -Shon 63601 -Shona 58365 -Shonda 64657 -Shonen 64905 -Shontelle 61699 -Shook 59164 -Shoop 64657 -Shoot 47445 -Shooter 50256 -Shooters 54992 -Shooting 46395 -Shootings 62196 -Shootout 54685 -Shoots 56791 -Shop 34501 -Shop's 60157 -ShopBags 64905 -ShopBooks 64905 -ShopBrands 64905 -ShopGreen 58802 -ShopHardware 64905 -ShopLocal 54479 -ShopMania 64905 -ShopNBC 57696 -ShopSafe 60238 -ShopSoftware 64905 -ShopStyle 61051 -ShopWiki 52752 -Shopaholic 62331 -Shopcast 62331 -Shopfitting 64423 -Shoplet 62331 -Shoplifting 63245 -Shoppe 54380 -Shopper 50335 -Shopper's 62613 -Shoppers 52559 -Shoppes 63792 -Shopping 34252 -Shoppingvia 62331 -Shops 42936 -Shopzilla 49470 -Shor 64423 -Shore 45811 -Shore's 65452 -ShoreTel 63077 -Shorecrest 64905 -Shoreditch 59039 -Shoreham 60078 -Shoreline 53153 -Shorelines 64657 -Shores 51358 -Shoreview 63419 -Shorewood 61472 -Shorey 64657 -Short 40893 -ShortFatGuy 64657 -ShortRecordDisplay 59923 -Shortage 56618 -Shortages 64423 -Shortbread 62469 -Shortcake 61152 -Shortcut 55202 -Shortcuts 52029 -Shorten 63792 -Shortened 64657 -Shortening 63601 -Shorter 55963 -Shortest 56935 -Shorthair 62613 -Shorthaired 62917 -Shorthanded 62196 -Shortie 64905 -Shortland 62066 -Shortlist 53226 -ShortlistInsure 65170 -Shortlisted 61051 -Shortly 52387 -Shortness 61699 -Shorts 46165 -Shortstop 65170 -Shortt 64201 -Shortwave 62917 -Shorty 57785 -Shoshana 61152 -Shoshone 61362 -Shostakovich 63991 -Shot 45977 -Shotgun 54857 -Shotguns 57923 -Shotokan 62196 -Shots 46931 -Shotwick 65170 -Shou 62762 -Shoujo 56324 -Should 41576 -Should've 61152 -Shoulda 64201 -Shoulder 48672 -Shoulderbag 61940 -Shoulders 56721 -Shouldn't 55348 -Shounen 62469 -Shout 51690 -ShoutBox 63601 -ShoutMix 63245 -Shoutbox 53109 -Shoutcast 55963 -Shouting 64905 -Shoutout 63419 -Shouts 55423 -Shoutwire 63245 -Shove 61940 -Shovel 59923 -Shovelhead 63792 -Shovels 62613 -Show 28369 -Show's 61818 -ShowBiz 63601 -ShowHype 59774 -Showa 61699 -Showalter 60952 -Showbiz 49645 -Showbox 65452 -Showcase 45941 -Showcased 64423 -Showcases 56140 -Showcasing 60078 -Showdown 51974 -Showdowns 65452 -Showed 63792 -Shower 46215 -Showering 63601 -Showerlight 64905 -Showers 51473 -Showgirl 64657 -Showgirls 64905 -Showground 62762 -Showgrounds 64423 -Showhouse 64905 -Showin 63601 -Showing 41962 -Showman 62613 -Showmanship 62066 -Shown 50484 -Showoff 60762 -Showplace 63792 -Showreel 64905 -Showroom 51690 -Showrooms 57696 -Shows 39933 -Showstopper 62762 -Showtime 54857 -Showtime's 64905 -Showtimes 45191 -Showtunes 64905 -Shox 57084 -Shp 63419 -Shpol'skii 61256 -Shports 55631 -Shqip 52832 -Shqiperia 61699 -Shqiptare 62917 -Shr 64657 -Shrapnel 61472 -Shred 57046 -Shredded 61051 -Shredder 56021 -Shredders 55526 -Shredding 61472 -Shree 58745 -Shrek 53241 -Shrestha 64657 -Shreve 61818 -Shreveport 57160 -Shrew 60157 -Shrewsbury 54096 -Shreya 61152 -Shri 52725 -Shrike 63991 -Shrimp 50285 -Shrimps 64201 -Shrimpton 63245 -Shrine 53549 -Shriners 61256 -Shrines 61940 -Shrink 52007 -Shrinkage 63077 -Shrinking 58017 -Shrinks 64201 -Shriram 64423 -Shrivastava 64905 -Shriver 60157 -Shriya 63077 -Shroff 65452 -Shroom 64657 -Shroomery 64423 -Shropshire 51660 -Shroud 59848 -Shrouded 64657 -Shrub 58919 -Shrubs 58162 -Shrugged 63792 -Shrugs 62196 -Shrunk 65452 -Shruti 60952 -Shs 63601 -Shu 57318 -Shu'halo 60952 -Shubert 64657 -Shudder 63601 -Shue 62331 -Shuey 62469 -Shuffle 52096 -Shufuni 64905 -Shug 62917 -Shugo 56791 -Shui 52858 -Shukla 60670 -Shula 63601 -Shuler 64201 -Shull 64423 -Shulman 58745 -Shultz 61051 -Shuman 65452 -Shumway 63792 -Shun 59424 -Shunji 64657 -Shunsui 65452 -Shunt 62917 -Shur 64905 -Shura 62469 -Shure 52597 -Shuriken 65170 -Shuster 63419 -Shuswap 63991 -Shut 51275 -Shutdown 55423 -Shute 64201 -Shuts 60580 -Shutter 53167 -ShutterPoint 62469 -Shutterfly 62331 -Shutters 55107 -Shutterstock 57399 -Shutting 61940 -Shuttle 48682 -Shuttles 59560 -Shuttleworth 64905 -Shuuichi 63601 -Shwartz 65170 -Shwayze 42344 -Shwe 63245 -Shweta 62066 -Shy 54792 -Shyam 58523 -Shyla 59848 -Shyness 63245 -Si 46745 -SiC 56050 -SiChuan 60000 -SiG 60856 -SiGe 63245 -SiH 62762 -SiMe 60762 -SiO 54479 -SiON 61940 -SiOz 63077 -SiRF 60580 -SiRFDemoPPC 59702 -SiS 61472 -Sia 59101 -Siac 64657 -Siam 55604 -Siamese 57609 -Sian 58688 -Siang 65170 -Siar 64905 -Sibbald 64423 -Sibbaldia 65452 -Sibel 61051 -Sibelius 58262 -Siberia 57923 -Siberian 54041 -Sibiu 61584 -Sibley 61818 -Sibling 57199 -SiblingCount 64905 -Siblings 58688 -Sic 57970 -Sica 64423 -Sicherheit 61584 -Sichuan 55299 -Sicilia 63991 -Sicilian 57238 -Sicily 55323 -Sick 49440 -Sickert 63601 -Sickert's 63792 -Sickest 63792 -Sickle 58365 -Sickness 54479 -Sicko 59039 -Sid 51711 -Sida 63601 -Sidcup 62331 -Siddha 65452 -Siddharth 61051 -Siddhartha 62917 -Siddiqui 60238 -Side 40556 -SideBar 62762 -SideShow 59039 -SideStep 57876 -Sidebar 51248 -Sideboard 63601 -Sideboards 64905 -Sidecar 58632 -Sided 56618 -Sidekick 54321 -Sidekicks 65452 -Sideline 58919 -Sidelined 64423 -Sidelines 62196 -Sider 64201 -Sides 53970 -Sideshow 56862 -Sidewalk 56518 -Sidewalks 59039 -Sideways 60492 -Sidewinder 58745 -Sidhu 63077 -Sidi 60000 -Siding 50856 -Sidley 62762 -Sidmouth 64201 -Sidney 51248 -Sidra 65170 -Sidwell 65170 -Sie 51368 -SieBot 63601 -Siebel 53813 -Sieber 63601 -Siebert 63991 -Siegal 63419 -Siege 54770 -Siegel 55766 -Siegelman 64423 -Sieger 64905 -Siegfried 58919 -Siegler 64905 -Siegwarth 64657 -Siem 57084 -Siemens 46572 -Siemon 64201 -Siempre 59774 -Siena 54902 -Sienna 53517 -Siero 63792 -Sierpinski 65170 -Sierra 43286 -Sierras 62917 -Siesta 61362 -Sieve 58802 -Siew 64905 -Sifax 64657 -Siffre 64905 -Siffredi 65452 -Sift 56170 -Sifted 65452 -Sifter 64657 -Sifters 62613 -Sifts 63601 -Sifu 59630 -Sify 61472 -Sig 54770 -Sigal 65452 -Sigel 60321 -Sigg 60238 -Siggraph 63601 -Sight 50832 -Sighted 64201 -Sighting 58162 -Sightings 53438 -Sights 52175 -Sightseeing 52221 -Sightseer 63792 -Sigismund 64423 -Sigler 59227 -Siglo 64657 -Sigma 47482 -SigmaTel 64905 -SigmaUltra 62917 -Sigmar 65170 -Sigmatel 61472 -Sigmund 58162 -Sign 29076 -SignOnSanDiego 63792 -SignUp 60952 -Signa 62917 -Signage 54499 -Signal 45622 -Signaling 48923 -Signalling 58577 -Signalman 54685 -Signals 51377 -Signatory 63792 -Signatur 64423 -Signature 45343 -Signatures 54321 -Signe 62762 -Signed 45039 -Signer 63419 -Signet 60078 -Significance 52818 -Significant 47951 -Significantly 56756 -Signing 51690 -Signings 59848 -Signor 64905 -Signpost 64657 -Signposts 64905 -Signs 44030 -Signum 62917 -Signup 45549 -Signups 60762 -Sigourney 62469 -Sigrid 63077 -Sigs 63419 -Sigua 61699 -Siguiente 63792 -Sigur 58577 -Sigurd 61362 -Siig 64905 -Sik 61362 -Sika 62613 -Sikes 65452 -Sikh 54264 -SikhNet 62066 -Sikhism 62469 -Sikhs 58979 -Sikkerhedsmeddelelser 60580 -Sikkerhet 60492 -Sikkim 56721 -Sikora 64905 -Sikorsky 59630 -Sil 60762 -Sila 64905 -Silage 65170 -Silas 57831 -Silber 60856 -Silberman 62469 -Silberstein 64905 -Sildenafil 58919 -Silence 50832 -Silenced 65170 -Silencer 60000 -Silencers 65452 -Silencing 60321 -Silencio 62613 -Silent 46592 -Silently 65452 -Silents 64905 -Siler 61362 -Silesia 64423 -Silesian 61699 -Silex 63792 -Silhouette 56080 -Silhouettes 60000 -Silica 56899 -Silicate 63077 -Silico 65170 -Silicon 46595 -SiliconViper 64423 -Silicone 50599 -Siliconera 64905 -Silicones 61699 -Siliconix 64423 -Silicosis 63419 -Siliguri 62331 -Silithus 60405 -Silja 62917 -Silk 47031 -SilkRoad 64905 -Silke 60321 -Silkk 62762 -Silkolene 63245 -Silkroad 56721 -Silks 61152 -Silkworm 62469 -Silky 58313 -Silkyence 62066 -Sill 60321 -Silla 64201 -Silliman 62917 -Silliness 65452 -Sills 63077 -Silly 52805 -Silmarillion 62469 -Silo 59848 -Siloam 62066 -Silobreaker 60580 -Silom 62066 -Silonite 64201 -Silos 64905 -Silt 60000 -Silurian 65170 -Silva 50234 -SilvaGunner 64201 -Silvana 58577 -Silvano 62762 -Silvas 63077 -Silveira 64905 -Silver 39672 -Silver's 60952 -SilverFast 61584 -SilverStream 64657 -Silverado 53377 -Silverberg 63991 -Silverchair 60856 -Silverdale 60492 -Silverfall 65452 -Silverfish 64905 -Silvergun 62196 -Silverlake 64905 -Silverlight 48846 -Silverline 60952 -Silverlit 61940 -Silverman 52363 -Silverman's 65170 -Silvermoon 56899 -Silverpine 60580 -Silverplate 60321 -Silvers 65170 -Silversea 51877 -Silversmith 65170 -Silverstein 60952 -Silverstone 56140 -Silverthorne 63419 -Silverton 57741 -Silvertone 59491 -Silverware 60238 -Silverwing 64201 -Silverwood 64657 -Silvery 64423 -Silvester 61584 -Silvestre 62331 -Silvia 54380 -Silvina 64657 -Silvio 57199 -Silvis 65452 -Silvstedt 63245 -Sim 50277 -SimCity 61051 -SimTK 57238 -Sima 64905 -Simao 65452 -Simard 60952 -Simatic 65170 -Simba 61362 -Simbad 63792 -Simbel 65170 -Simbiome 62196 -Simbios 57696 -Simca 60580 -Simcha 61940 -Simchas 61818 -Simchat 64201 -Simcoe 56618 -Simeon 58979 -Simferopol 65452 -Simhat 63792 -Simi 54706 -Simian 58262 -Simic 65170 -Similaires 61584 -Similan 64905 -Similar 37917 -Similarities 59491 -Similarity 58470 -Similarly 54170 -Similars 59848 -Similiar 62196 -Simla 63245 -Simlish 61940 -Simmer 57653 -Simmering 64905 -Simmonds 61940 -Simmons 49365 -Simms 57199 -Simo 64905 -Simon 42991 -Simon's 57785 -Simona 60157 -Simone 51293 -Simonetta 65452 -Simoni 62762 -Simons 55084 -Simonsen 63077 -Simonson 63991 -Simple 42761 -SimpleViewer 63419 -Simpler 62066 -Simplest 63419 -Simplex 56935 -Simplicity 54479 -Simplification 60952 -Simplifications 65452 -Simplified 47252 -Simplifies 63792 -Simplify 56485 -Simplifydigital 55684 -Simplifying 60238 -Simply 43996 -SimplyCARE 64905 -SimplyHired 52752 -Simpson 45362 -Simpson's 56687 -Simpsons 49651 -Simpsonville 64657 -Simpy 51387 -Simro 64905 -Sims 47018 -Sims's 64201 -Simsbury 62469 -Simson 65170 -Simulación 63077 -Simulate 59923 -Simulated 54902 -Simulating 60952 -Simulation 46754 -Simulations 53712 -Simulator 51835 -Simulators 58979 -Simulink 63601 -Simultaneous 52927 -Simultaneously 60405 -Simvastatin 62917 -Simón 65452 -Sin 47835 -Sina 60238 -Sinai 53830 -Sinaloa 62762 -Sinan 64905 -Sinatra 52858 -Sinatra's 64657 -Sinbad 61818 -Since 37887 -SinceTime 61472 -Sincere 61584 -Sincerely 57831 -Sinclair 51444 -Sinclair's 64201 -Sinclar 61584 -Sind 64423 -Sindarin 61940 -Sindbis 65170 -Sindee 63077 -Sindelar's 65452 -Sindh 60580 -Sindhi 59702 -Sindhu 64657 -Sindy 64905 -Sine 57318 -Sinead 58919 -Sinema 62331 -Sineplex 61051 -Sinetron 65170 -Sinfonia 60405 -Sinfonietta 63419 -Sinful 59774 -Sing 49751 -SingStar 58113 -Singapore 39297 -Singapore's 56170 -Singaporean 58577 -Singaporeans 62917 -Singer 48746 -Singer's 60238 -Singers 52752 -Singh 46526 -Singh's 61152 -Singhal 63419 -Singing 50087 -Single 39678 -Singles 44385 -Singlet 58802 -Singletary 59923 -Singleton 55934 -Sings 53470 -Singstar 64201 -Singulair 61472 -Singular 58313 -Singularities 62762 -Singularity 59923 -Singur 64657 -Sinha 58860 -Sinhala 57970 -Sinhalese 61472 -Sinica 57399 -Sinister 57970 -Sink 51690 -Sinker 63991 -Sinking 56721 -Sinks 52982 -Sinn 56518 -Sinnamon 63792 -SinnamonTV 63601 -Sinner 60580 -Sinners 60321 -Sinnott 63077 -Sino 60856 -Sinorhizobium 60321 -Sins 52832 -Sinsation 58632 -Sint 61818 -Sintered 61472 -Sintering 63792 -Sinton 62762 -Sintra 65452 -Sinus 54360 -Sinusitis 60157 -Sinutab 64905 -Sioa 65452 -Siobhan 59227 -Siok 65170 -Sion 60670 -Sioux 50328 -Siouxsie 63792 -Sip 59774 -Siphon 63991 -Siping 63245 -Sippy 63245 -Sipura 63991 -Sir 44414 -SirAlecHendrix 65452 -Siracusa 62613 -Sirah 65452 -Siraj 65170 -Sirdar 65452 -Sire 56452 -Siren 55226 -Sirens 56935 -Siri 61051 -Sirisha 64423 -Sirius 51670 -Sirloin 62469 -Siro 63245 -Sirocco 56262 -Sirota 63245 -Sirota's 64423 -SirsiDynix 63991 -Sis 59227 -Sisal 62613 -Sisk 64905 -Siskin 64201 -Siskind 65452 -Siskiyou 59702 -Sisley 64657 -Sisson 63245 -Sissy 60405 -Sista 62469 -Sistah 65452 -Sistecar 64657 -Sistema 53796 -Sistemas 61818 -Sistemi 64657 -Sister 47290 -Sister's 60238 -Sisterhood 55604 -Sisters 48633 -Sistine 61699 -Sisyphus 63245 -Sit 52130 -SitStayFetch 65170 -Sita 60580 -Sitar 63601 -Sitaram 65170 -Sitcom 62331 -Sitcoms 57876 -Site 29408 -Site's 58365 -SiteAdvisor 60762 -SiteGround 63601 -SiteMap 50343 -SitePoint 58017 -SiteStudio 64423 -SiteWide 65170 -Sitebuilder 57923 -Sitefinder 63792 -Sitemap 37995 -Sitemaps 59101 -Sitemark 65170 -Sitemeter 62066 -Siteminder 62196 -Siteopt 63991 -Sites 36939 -Sitewide 62066 -Sith 55821 -Siti 62469 -Siting 63419 -Sitio 60762 -Sitios 62762 -Sitka 59039 -Sito 64423 -Sits 60157 -Sittenkunde 65170 -Sitter 57440 -Sittercity 64657 -Sitters 61472 -Sitting 50694 -Sittingbourne 60952 -Sittings 62331 -Situ 58313 -Situated 52315 -Situation 51731 -Situational 60856 -Situations 57009 -Siu 60157 -Siva 59560 -Sivan 62917 -Siw 65170 -Six 42450 -Sixaxis 65452 -Sixers 57970 -Sixes 64905 -Sixpence 60670 -Sixt 60078 -Sixteen 53081 -Sixteenth 58262 -Sixth 48427 -Sixties 59630 -Sixty 54096 -Sixx 62762 -Siz 65452 -Size 37642 -SizeQuota 61818 -SizeWarning 61818 -Sized 57399 -Sizemore 63245 -Sizes 48386 -Sizing 52712 -Sizzla 64423 -Sizzle 60492 -Sizzler 64201 -Sizzling 60762 -Siân 62331 -Sj 61256 -Sjoberg 60856 -Sjogren's 64905 -Sjollema 62196 -Sjögren's 63792 -Sk 61472 -Ska 55060 -Skadden 59702 -Skagen 56021 -Skaggs 60078 -Skagit 58262 -Skala 63601 -Skandia 63601 -Skanes 64905 -Skank 62196 -Skanska 63077 -Skate 48736 -Skateboa 62917 -Skateboard 53301 -Skateboarding 53241 -Skateboards 51996 -Skatepark 58802 -Skater 57741 -Skaters 60762 -Skates 51762 -Skating 49966 -Skechers 56262 -Skecz 65170 -Skeet 59923 -Skeeter 61940 -Skegness 57084 -Skeletal 56050 -Skeleton 55373 -Skeletons 61584 -Skelly 63077 -Skelmersdale 61818 -Skeltah 59101 -Skelter 64201 -Skelton 55934 -Skeptic 61362 -Skeptic's 63792 -Skeptical 60238 -Skepticism 60157 -Skeptics 59357 -Skerry 63245 -Sketch 51877 -SketchUp 58919 -Sketchbook 59357 -Sketchbooks 62613 -Sketches 56021 -Sketching 59702 -Sketchpad 65170 -Sketchup 65170 -Sketchy 64423 -Skettis 64905 -Skew 61940 -Skewers 58365 -Ski 44406 -Ski's 62613 -Skiathos 63991 -Skiba 62066 -Skibo 64423 -Skid 55060 -Skidmore 62917 -Skidoo 64423 -Skids 63792 -Skiers 63245 -Skies 52791 -Skiff 63419 -Skiinfo 65170 -Skiing 48811 -Skike 64657 -Skil 62917 -Skill 48169 -Skilled 50702 -Skillet 56170 -Skillets 61584 -Skilling 63419 -Skilling's 61362 -Skillings 65452 -Skillman 62762 -Skillnets 61051 -Skills 42715 -SkillsTech 64201 -Skillz 60000 -Skim 61152 -Skimmer 60000 -Skimmers 62469 -Skimpy 59848 -Skin 40790 -Skincare 52686 -Skinhead 62762 -Skinheads 64657 -Skinned 64657 -Skinner 53256 -Skinners 62917 -Skinning 55274 -Skinny 50431 -Skins 48212 -Skinz 61940 -Skip 36046 -Skippack 64657 -Skipper 57696 -Skippers 65452 -Skipping 58577 -Skippy 61472 -Skips 60856 -Skipton 59848 -Skirball 62762 -Skirmish 62613 -Skirt 52268 -Skirted 63419 -Skirting 63601 -Skirtini 63077 -Skirts 51814 -Skis 52673 -Skit 60762 -Skittles 65452 -Sklar 59702 -SklogWiki 65170 -Skoda 52609 -Skokie 56972 -SkokieNet 63991 -Skoog 65170 -Skool 55604 -Skopelos 65170 -Skopje 59560 -Skotos 64201 -Skowhegan 65452 -Skowl 65452 -Skreened 64201 -Skriv 62762 -Skrok 65452 -Sku 64423 -Skule 62762 -Skull 49001 -Skullcandy 58688 -Skullcrusher 58802 -Skulls 58017 -Skunk 57609 -Skwentna 65170 -Sky 41335 -Sky's 60078 -SkyDrive 58688 -SkyTeam 60856 -SkyUser 62331 -SkyView 64423 -SkyWatchers 65452 -Skydive 64905 -Skydiving 58577 -Skye 53167 -Skyfire 64657 -Skyhawk 60580 -Skyjacker 65452 -Skylab 58417 -Skylar 64905 -Skylark 60078 -Skylarking 65170 -Skyler 61584 -Skylight 61818 -Skylights 59702 -Skyline 50328 -Skylines 61818 -Skylit 60580 -Skymaster 63792 -Skynet 64657 -Skynyrd 60157 -Skype 45687 -Skype's 63991 -SkypeSync 64905 -Skypephone 64905 -Skyrocket 64201 -Skyscanner 64201 -Skyscraper 58632 -SkyscraperCity 62469 -Skyscrapers 63077 -Skyservice 52927 -Skyview 64423 -Skywalker 57785 -Skywall 61152 -Skywatch 63419 -Skyway 60000 -Skyways 52686 -Skyworks 64423 -Skyy 63245 -Skála 64657 -Sl 57923 -Slab 57318 -Slabs 62762 -Slack 59227 -Slacker 59560 -Slackers 64423 -Slacks 62917 -Slackware 55793 -Slade 57122 -Slag 63601 -Slain 59357 -Slalom 59702 -Slam 52315 -Slammed 64905 -Slammer 63077 -Slams 59164 -Slander 61584 -Slane 60856 -Slang 56388 -Slanguage 64657 -Slant 56388 -Slanted 64423 -Slants 65170 -Slap 55323 -Slappa 64423 -Slapped 64905 -Slapping 64201 -Slaps 61818 -Slapstick 63601 -Slash 53934 -SlashDot 61818 -SlashGear 61940 -Slashdot 48390 -Slasher 62469 -Slashers 61699 -Slashes 62469 -Slashfood 56652 -Slashgeo 65170 -Slat 61940 -Slate 50646 -Slate's 63792 -Slated 62762 -Slater 54005 -Slates 61699 -Slaton 61051 -Slattery 62066 -Slaughter 54946 -Slave 50454 -Slavery 54946 -Slaves 56485 -Slavia 64201 -Slavic 55578 -Slavin 65452 -Slavonic 62613 -Slaw 63601 -Slax 65452 -Slay 61362 -Slayer 52107 -Slayers 58523 -Slaying 62613 -Slayton 65452 -Slazenger 62917 -Sleaford 60405 -Sleaze 62613 -Sled 58632 -Sledding 62469 -Sledge 60157 -Sledgehammer 64657 -Sleds 63601 -Slee 64905 -Sleek 56452 -Sleep 45058 -SleepMate 64905 -Sleepaway 65170 -Sleeper 55793 -Sleepers 55373 -Sleeping 48292 -Sleepless 59630 -Sleepover 63419 -Sleeps 52982 -Sleepwalker 65452 -Sleepwear 54540 -Sleepy 53423 -Sleeve 46925 -Sleeved 60078 -Sleeveless 55849 -Sleeves 54540 -Sleeving 65452 -Sleigh 58113 -Sleight 63077 -Slender 56756 -Slept 61818 -Sleuth 60000 -Sleuths 63601 -Slevin 63419 -Slew 61584 -Slezak 62469 -Sli 63419 -Slice 51396 -Sliced 57609 -Slicer 60238 -Slicers 62917 -Slices 58017 -Slicing 63792 -Slick 54380 -SlickDeal 63991 -SlickEdit 63991 -Slickdeals 57970 -Slide 43874 -SlideShare 55084 -SlideShow 62196 -Slidecasting 59774 -Slidecasts 60670 -Slidell 61940 -Slider 55423 -Sliders 58470 -Slides 51275 -Slideshare 56080 -Slideshow 46025 -Slideshows 48938 -Slidespace 58212 -Sliding 53167 -Sliema 63601 -Slight 55526 -Slightly 52686 -Sligo 55226 -Slik 62917 -Slim 47600 -Slim's 63077 -Slime 56262 -Slimline 57482 -Slimming 56050 -Slims 64905 -Sling 54439 -SlingCatcher 63077 -Slingback 61472 -Slingbacks 64657 -Slingbox 57970 -Slinger 63792 -Slings 56756 -Slingshot 58577 -Slinky 61818 -Slip 48913 -Slipcover 65452 -Slipcovers 59292 -Slipknot 51415 -Slipmats 62331 -Slipped 61699 -Slipper 59292 -Slippers 52913 -Slippery 58365 -Slipping 61818 -Slippy 63792 -Slips 56420 -Slipstream 62762 -Slipup 56687 -Slit 60238 -Sliver 63601 -Slo 65170 -Sloan 49296 -Sloane 57399 -Slobodan 61818 -Slocum 61362 -Slog 59630 -Slogan 60952 -Slogans 63077 -Sloman 65452 -Sloop 61051 -Sloopy 62196 -Slop 62762 -Slope 52635 -Sloped 64423 -Slopes 58212 -Slopestyle 64201 -Sloppy 59424 -Sloss 61818 -Slot 51034 -Sloth 61256 -Slots 53211 -Slotted 57199 -Slouch 63792 -Slough 54041 -Slovak 47939 -Slovakia 44592 -Slovakian 58802 -Slovan 65170 -Slovene 60670 -Slovenia 44954 -Slovenian 51482 -Slovenija 64657 -Slovenski 60321 -Slovensky 60405 -Slovenské 64423 -Slovo 63792 -SlovoEd 64423 -Slow 46625 -Slowdown 60238 -Slower 60952 -Slowest 64201 -Slowey 64423 -Slowing 59848 -Slowly 54581 -Slowpitch 64657 -Slows 58688 -Slr 65170 -Sls 55849 -Slt 65170 -Sludge 58688 -Slug 57084 -Slugfest 65170 -Slugger 61152 -Sluggers 63077 -Sluggo 61051 -Slugs 62469 -Sluice 64423 -Slum 61362 -Slumber 58365 -Slumberland 65170 -Slumdog 62613 -Slump 61472 -Slumping 64657 -Slums 65452 -Slur 63077 -Slurry 61699 -Slush 61472 -Slut 52571 -Sluts 55274 -Slutty 59848 -Slvr 63792 -Sly 54519 -SlySoft 61256 -Slyck 56791 -Slyke 65452 -Slytherin 63419 -Sm 57970 -SmI 63991 -SmaI 64201 -Smaak 63077 -Smack 55821 -SmackBot 59101 -SmackDown 56827 -Smackdown 54992 -Smad 64905 -Small 36985 -SmallCap 62917 -Smaller 50553 -Smallest 54643 -Smalley 60157 -Smallpox 62331 -Smalls 60670 -Smalltalk 61584 -Smallville 51610 -Smallville's 61940 -Smallwood 63601 -Smallz 65452 -Smaps 58470 -SmarTrip 65170 -Smaragd 64905 -Smarking 56518 -Smart 41881 -Smart's 62917 -SmartBIM 60952 -SmartBargains 65452 -SmartBrief 61818 -SmartBuilding 57970 -SmartChoice 63792 -SmartDraw 60856 -SmartEiffel 64905 -SmartForms 65170 -SmartLabs 65452 -SmartMedia 65452 -SmartMoney 61699 -SmartPhone 61699 -SmartWool 62762 -SmartXX 63601 -Smartcard 65170 -Smarter 52818 -Smartest 62066 -Smarthome 57482 -Smarties 62196 -Smartlink 64905 -Smartparts 64201 -Smartphone 50129 -Smartphones 50646 -Smarts 60492 -Smartwool 60321 -Smarty 58919 -Smartypants 64201 -SmasHits 65452 -Smash 46007 -Smashbox 62762 -Smashed 62469 -Smasher 61818 -Smashes 63245 -Smashing 53485 -Smashups 56687 -Smear 59848 -Smears 56827 -Smeaton 64905 -Smedley 64657 -Smeg 61362 -Smell 55578 -Smelling 65170 -Smells 57566 -Smelly 60321 -Smelt 64657 -Smelter 63419 -Smet 62762 -Smethwick 62331 -Smilacis 63419 -Smilax 65452 -Smile 50365 -Smiles 55738 -Smiley 52584 -Smileys 53346 -Smilies 43702 -Smiling 55963 -Smirking 64905 -Smirnoff 60238 -Smirnov 64905 -Smisek 59101 -Smit 58523 -Smita 62917 -Smite 64905 -Smith 39618 -Smith's 51238 -SmithKline 64657 -Smithers 64657 -Smithfield 54813 -Smithgall 63792 -Smithing 65452 -Smiths 54519 -Smithson 61362 -Smithsonian 52648 -Smithsonian's 63991 -Smithton 64423 -Smithtown 61152 -Smithville 61584 -Smithy 60856 -Smits 62917 -Smitten 62469 -Smitty 64201 -Smock 64905 -Smocked 60000 -Smog 57831 -Smoke 47083 -Smoked 53438 -Smokefree 60157 -Smokehouse 59923 -Smokeless 64905 -Smoker 57199 -Smokers 55107 -Smokes 62469 -Smokestack 63419 -Smokey 54835 -Smokie 65170 -Smokies 63991 -Smokin 59227 -Smoking 45583 -Smoky 54664 -Smolderthorn 61051 -Smolensk 64423 -Smolin 58212 -Smoller 64905 -Smolyenko 65452 -Smoot 62762 -Smooth 49464 -Smoother 64423 -Smoothie 58919 -Smoothies 61051 -Smoothing 58919 -Smoove 65452 -Smosh 60762 -Smothering 58313 -Sms 57785 -Smudge 62917 -SmugMug 52074 -Smugglers 62469 -Smuggling 62917 -Smurf 59560 -Smurfs 59630 -Smut 61699 -Smyril 64905 -Smyrna 55963 -Smyth 56050 -Smythe 60580 -Smythson 64201 -Sn 53501 -SnAg 65170 -SnAgBi 65452 -Snack 51008 -Snacking 64657 -Snacks 50915 -Snafu 63601 -Snag 60321 -SnagFilms 65170 -SnagIt 65170 -Snail 57399 -Snails 60321 -Snake 48672 -Snake's 63601 -Snakebite 65170 -Snakes 52996 -Snakeskin 63991 -Snap 51434 -SnapShot 61584 -SnapShots 63245 -SnapWords 62331 -Snape 60405 -Snapfish 63601 -Snapp 64657 -Snapper 59424 -Snapping 65170 -Snapple 61362 -Snappy 62331 -Snaps 57785 -Snapshot 49240 -SnapshotPeople 64201 -Snapshots 55178 -Snaptography 61818 -Snapwell 63991 -Snare 57160 -Snares 59357 -Snark 62469 -Snarky 60952 -Snatch 59702 -Snatched 64423 -Snatchers 65170 -Snausages 64905 -Snazaroo 62762 -Snead 64657 -Sneak 51931 -Sneaker 54226 -Sneakers 53377 -Sneaks 60762 -Sneaky 56324 -Sneddon 64201 -Sneed 64201 -Sneeze 64423 -Sneezing 64657 -Sneha 59702 -Snell 57122 -Snell's 64905 -Snelling 63601 -Snellville 61699 -Snickers 60405 -Snicket's 65452 -Snider 58745 -Sniff 61584 -Sniffer 59164 -Sniffers 64657 -Sniffing 62917 -Snijders 64905 -Snip 63601 -Snipe 62469 -Sniper 53153 -SniperCentral 62613 -Snipers 62066 -Snipes 60762 -Sniping 62469 -Snippet 59848 -Snippets 54321 -Snips 63245 -Snitch 60405 -Snitchin 65170 -Snitsky 65452 -Snitterfield 63991 -Snitz 61152 -Sno 61940 -Snob 54321 -Snoddys 64657 -Snodgrass 62469 -Snodland 64905 -Snohomish 54770 -Snood 63792 -Snook 60078 -Snooker 49229 -Snoop 51660 -Snooper 64657 -Snooping 65452 -Snoopy 57970 -Snooze 61362 -Snopes 61472 -Snoqualmie 62331 -Snorage 65170 -Snore 65170 -Snoring 56452 -Snorkel 58688 -Snorkeling 58470 -Snorkelling 63077 -Snorkels 64657 -Snort 58523 -Snorting 63077 -Snosage 64657 -Snot 60321 -Snow 43700 -Snow's 64905 -Snowbabies 64201 -Snowball 58017 -Snowbird 60670 -Snowblind 65452 -Snowblower 64201 -Snowboard 49919 -Snowboarder 63601 -Snowboarding 51953 -Snowboards 55323 -Snowden 63077 -Snowdon 59774 -Snowdonia 60762 -Snowdrop 65452 -Snowfall 60157 -Snowflake 57566 -Snowflakes 62613 -Snowglobe 65452 -Snowing 63419 -Snowman 54302 -Snowmass 60762 -Snowmen 63601 -Snowmobile 53830 -Snowmobiles 58313 -Snowmobiling 59630 -Snowshoe 59560 -Snowshoeing 57741 -Snowshoes 61256 -Snowsport 64657 -Snowsports 60078 -Snowstorm 64201 -Snowtime 65452 -Snowy 52832 -Snr 64905 -Snub 62762 -Snuff 60952 -Snug 60952 -SnugRide 64905 -Snuggle 61472 -Snyder 51482 -Snyder's 63991 -Snyders 65452 -So 35208 -So's 65452 -SoA 64905 -SoC 58577 -SoCal 55711 -SoCalGas 65452 -SoCo 62066 -SoFood 62066 -SoHo 58523 -SoMa 63792 -SoReal 60952 -SoSH 62917 -SoSirius 65170 -SoU 62613 -Soa 65452 -Soak 57566 -Soaked 63792 -Soaking 61818 -Soap 48468 -SoapBlox 65170 -Soapbox 52399 -Soaps 51570 -Soapstone 63601 -Soar 56935 -Soares 59424 -Soaring 56585 -Soaringwords 62196 -Soars 60238 -Soba 62469 -Sobel 59630 -Sober 59292 -Sobieski 61699 -Sobolev 63991 -Soboroff 55154 -Sobre 58065 -Sobriety 64201 -Soc 47083 -Soca 60238 -Soccer 40227 -Soccernet 64201 -Socceroos 62917 -Sochaux 64905 -Sociable 63991 -Social 35995 -SocialDesign 62613 -SocialPicks 61362 -Sociale 61940 -Sociales 64423 -Socialism 56140 -Socialist 53052 -Socialists 60157 -Socialite 58979 -Socialite's 61818 -Socialization 62762 -Socialize 60856 -Socialized 61472 -Socializer 60238 -Socially 57046 -Socials 64657 -Sociedad 58577 -Sociedade 65170 -Societal 61584 -Societe 60580 -Societies 49382 -Society 37039 -Society's 54560 -Societys 63077 -Socio 64201 -Sociobiology 65452 -Sociocultural 64201 -Socioeconomic 55877 -Sociol 59630 -Sociolinguistics 61584 -Sociologia 63792 -Sociological 54059 -Sociologists 61818 -Sociology 48643 -Socios 64905 -Société 57122 -Sock 54245 -Socket 49108 -Sockets 54078 -Socks 48515 -SocksCap 63601 -Socom 57970 -Socorro 59560 -Socrates 56652 -Socratic 64905 -Sod 59039 -Soda 51293 -SodaHead 61699 -SodaStyle 59292 -Sodan 65170 -Sodas 64423 -SoddemFX 65170 -Sodding 64905 -Soderberg 63419 -Soderbergh 62762 -Soderling 65452 -Sodexho 63991 -Sodexo 62196 -Sodium 49578 -Sodom 61940 -Sodomania 62917 -Sodomy 63077 -Soe 65452 -Soebroto 64423 -Soeur 62762 -SofLens 65170 -Sofa 51877 -Sofas 55250 -Sofia 50074 -SofiaMari 63419 -Sofie 63792 -Sofitel 57278 -Soft 44259 -SoftArtisans 59424 -SoftFeel 64201 -SoftICE 64423 -SoftLinkers 59630 -SoftNews 58802 -SoftPerfect 63601 -SoftWalk 60580 -Softail 61818 -Softball 48126 -Softballs 63601 -Softbank 61940 -Softbox 65170 -Softboxes 65170 -Softcore 57278 -Softcover 55178 -Softech 65170 -Softener 62762 -Softeners 63991 -Softening 58113 -Softens 65170 -Softer 61051 -Softgels 63792 -Softimage 60856 -Softlinkers 60405 -Softly 61362 -Softonic 58262 -Softpedia 52546 -Softshell 61256 -Softspots 60492 -Softswitch 64201 -Software 33075 -Software's 58365 -Softwaremap 53952 -Softwares 53917 -Softwood 62196 -Softworks 63245 -Softwrap 64201 -Softy 65170 -Sofware 63991 -Sofía 63077 -Soggadu 60492 -Soggy 63419 -Sogn 63601 -Sogo 65452 -Soha 61699 -Sohail 62331 -Sohal 64905 -Sohbet 64905 -Sohn 61584 -Sohne 64201 -Soho 54360 -Soi 58688 -Soil 46296 -Soild 63419 -Soils 55578 -Soilwork 64905 -Soir 64905 -Soiree 62331 -Soirée 65452 -Soja 64201 -Sojourner 62917 -Sojourners 65170 -Soka 64423 -Sokal 63991 -Soke 65452 -Soko 63419 -Sokoban 64423 -Sokol 63991 -Sol 49038 -Sola 57696 -Solace 52029 -Solaire 64201 -Solan 61051 -Solana 57741 -Solange 56862 -Solano 57440 -Solanum 61472 -Solapur 65452 -Solar 43565 -SolarVPS 65170 -Solara 61152 -Solarbotics 65170 -Solarforce 60670 -Solari 65170 -Solaris 49163 -Solarium 63792 -Solariums 65452 -Solas 60762 -Sold 44911 -Soldano 63077 -Soldat 63601 -Solder 56972 -Soldering 54581 -Soldier 49663 -Soldier's 58802 -SoldierCity 65452 -Soldiers 51095 -Soldner 65452 -Sole 51330 -Soledad 58313 -Soleil 53549 -Soleil's 63991 -Solemn 64905 -Solenoid 56721 -Solenoids 65170 -Solenopsis 62469 -Solenostemon 63991 -Solent 58919 -Soler 63245 -Solero 60078 -Soles 61051 -Soleus 62613 -Solgar 65170 -Solheim 63419 -Soli 65452 -Soliant 64905 -Solicitation 49906 -Solicitations 60238 -Soliciting 57238 -Solicitor 53549 -Solicitors 52423 -Solicitors's 63077 -Solicits 65170 -Solid 42800 -SolidBeer 64905 -SolidWorks 56324 -Solidago 63601 -Solidarity 55323 -Solidi 65170 -Solids 54857 -Solidworks 64201 -Solihull 52725 -Solis 57923 -Solita 65170 -Solitaire 51630 -Solitary 58212 -Soliton 61584 -Solitons 63419 -Solitude 58212 -Solo 46212 -Soloist 62196 -Soloman 65452 -Solomon 46043 -Solomon's 60492 -Solomons 61152 -Solon 58065 -Solos 58417 -Solow 61256 -Solsitce 63601 -Solstice 55037 -Soltek 62196 -Solty 61256 -Solubility 58688 -Soluble 56452 -Soluce 65170 -Solución 63077 -Solus 63245 -Solute 62762 -Solution 41088 -Solutions 37854 -Solvay 62331 -Solve 50040 -Solved 53407 -Solvency 65170 -Solvent 54664 -Solvents 59424 -Solver 60492 -Solvers 61472 -Solves 64201 -Solving 50220 -Solway 61472 -Solzhenitsyn 65170 -Som 56972 -Soma 53182 -Somali 51531 -Somalia 46491 -Somalia's 64201 -Somaliland 65452 -Somalis 61362 -Somat 63792 -Somatic 59164 -Somatostatin 63245 -Somaya 64423 -Sombie 63991 -Sombrero 63245 -Sombrio 64905 -Some 35844 -Somebodies 65170 -Somebody 51521 -Somebody's 62331 -Someday 52899 -Somehow 55154 -Someone 46412 -Someone's 59101 -Somerfield 64423 -Someries 64423 -Somers 56262 -Somerset 46818 -Somersworth 64905 -Somerton 63419 -Somerville 55578 -Something 44585 -Something's 58417 -Sometime 56972 -Sometimes 44976 -Somewhat 53597 -Somewhere 51804 -Sommaire 64423 -Somme 62066 -Sommer 57785 -Sommers 62469 -Sommerville 64423 -Somnath 65452 -Somnus 65452 -Somonauk 65452 -Somos 52968 -Son 45867 -Son's 57199 -Sona 61699 -Sonal 64657 -Sonali 62762 -Sonam 60321 -Sonar 53138 -Sonata 51953 -Sonatas 63245 -Sonate 63245 -Sonatina 64657 -Sondheim 59630 -Sondheimer 65452 -Sondra 60856 -Sone 64201 -Sonepat 65452 -Sones 64657 -Sonesta 62917 -Song 40187 -SongMeanings 63077 -Songbird 60321 -Songbirds 65170 -Songbook 56791 -Songbooks 58262 -Songhai 62762 -Songkick 63991 -Songlist 65170 -Songs 41577 -SongsGreek 63792 -SongsPlaylistsSee 65170 -Songtext 56200 -Songtexte 57741 -Songtime 65170 -Songwriter 57785 -Songwriters 62917 -Songwriting 58979 -Songz 57609 -Soni 61818 -Sonia 52496 -Sonic 45211 -SonicElectronix 64657 -SonicStage 65452 -SonicView 62066 -SonicWALL 61818 -SonicWall 60856 -Sonicare 63245 -Soniccouture 63601 -Sonics 58688 -Sonicview 60405 -Sonido 65452 -Sonie's 65170 -Sonja 55154 -Sonlight 60492 -Sonne 63792 -Sonnenhof 63419 -Sonnenschein 64905 -Sonnet 58262 -Sonnets 63601 -Sonntag 64201 -Sonny 52315 -Sonny's 64905 -Sono 61362 -Sonochemistry 64423 -Sonographer 63792 -Sonographic 63991 -Sonography 61584 -Sonoma 51825 -Sonora 54749 -Sonoran 60670 -Sonos 63601 -Sons 48629 -Sonstiges 60000 -Sontag 61818 -Sonu 59101 -Sonus 64657 -Sony 38500 -Sony's 54302 -SonyEricsson 54643 -Sonya 55130 -Soo 54969 -Sood 65170 -Sook 64201 -Sooke 62917 -Soom 61940 -Soomaali 59227 -Soon 44639 -Sooner 58470 -Sooners 58113 -Soong 60952 -Sooo 63245 -Soop 64905 -Sooper 62917 -Soot 63792 -Soothe 55631 -Soother 64423 -Soothing 57923 -Sop 64657 -Sopa 64905 -Sopdet 61152 -Soper 65170 -Soph 62917 -Sophia 51920 -Sophias 63601 -Sophie 48831 -Sophie's 60321 -Sophisticated 55657 -Sophistication 65452 -Sophocles 64201 -Sophomore 54341 -Sophomores 65452 -Sophos 59101 -Soporte 61584 -Sopot 62762 -Sopra 62331 -Soprano 56293 -Sopranos 58688 -Soquel 63991 -Sor 61584 -Sora 56618 -Soraya 63077 -Sorbet 58577 -Sorbian 64201 -Sorbitol 65452 -Sorcerer 59101 -Sorcerer's 61818 -Sorcery 62331 -Sordid 64423 -Sore 55657 -Sorel 61256 -Sorelle 61940 -Soren 58979 -Sorensen 59227 -Sorenson 56231 -Sorenstam 62613 -Sorento 61699 -Sores 60492 -Soret 63601 -Sorex 64905 -Sorghum 60670 -Sori 65452 -Soria 58262 -Soriano 60580 -Sorin 62331 -Sorina 65452 -Sorkin 58212 -Sororities 64423 -Sorority 55711 -Soros 59923 -Soroush 64423 -Sorption 60952 -Sorrel 61699 -Sorrell 61818 -Sorrento 53470 -Sorrow 57609 -Sorrowful 63601 -Sorrows 58470 -Sorry 45562 -Sort 36404 -Sorta 61584 -Sortable 61472 -Sorted 45417 -Sorter 59774 -Sorters 61940 -Sorting 50782 -Sortofmaybe 61699 -Sortprice 63419 -Sorts 61051 -Sorular 63419 -Sorvall 61256 -Sorvino 65452 -Sos 60856 -Sosa 59848 -Sossusvlei 65452 -Sota 63792 -Sotheby's 57160 -Sothink 60856 -Sotho 63245 -Sotiris 65170 -Soto 54151 -Sotogrande 60952 -Sotto 64201 -Sottotitoli 61699 -Sou 61051 -Souci 64657 -Souder 65452 -Souffle 62331 -Sought 57046 -Souk 63601 -Soul 43414 -Soul's 63245 -Soulard 65170 -Soulcalibur 54151 -Soule 64423 -Souleymane 63601 -Soulfly 60238 -Soulful 61699 -Soulja 53407 -Soulmate 63077 -Soulmates 52280 -Souls 53081 -Soulstorm 59923 -Soulution 65452 -Sound 39851 -Sound's 64423 -SoundClick 60238 -SoundDock 65170 -SoundDomain 65170 -SoundForge 63792 -SoundLab 64657 -SoundTracks 62331 -SoundWorks 65452 -Soundbites 64905 -Soundblaster 63792 -Soundboard 62469 -Soundboards 62762 -Soundcard 62196 -Soundcards 65170 -Soundcheck 60762 -Soundcraft 60580 -Sounder 60952 -Sounders 59702 -Soundex 61699 -Soundgarden 59774 -Sounding 55526 -Soundings 64423 -Soundlab 65170 -Soundoffs 65170 -Sounds 45519 -Soundscape 63991 -Soundsnap 64423 -Soundsystem 62196 -Soundtrack 46332 -Soundtracks 51492 -Soundwave 60670 -Soundz 62066 -Soup 46732 -Soup's 65452 -Soups 53485 -Souq 63991 -Sour 53830 -Sourav 62917 -Source 37895 -SourceBook 65452 -SourceForge 58417 -SourceOECD 63245 -SourceSafe 60157 -SourceWatch 64905 -Sourcebook 58113 -Sourcebooks 61584 -Sources 44823 -Sourcing 50630 -Sourdough 65170 -Souris 63792 -Sous 61584 -Sousa 61152 -Sout 63245 -Souter 63419 -South 32264 -South's 62066 -SouthEast 64201 -SouthPark 62762 -SouthRidge 63245 -SouthWest 64905 -Southall 57923 -Southam 60157 -Southampton 48274 -Southard 62196 -Southbank 58523 -Southbound 59227 -Southbridge 62917 -Southbury 63077 -Southcenter 63601 -Southcentral 60580 -Southdown 64201 -Southeast 44811 -Southeastern 51814 -Southend 53533 -Souther 62613 -Southerland 64201 -Southern 38736 -Southerner 64657 -Southerners 63077 -Southey 65452 -Southfield 57524 -Southfields 62469 -Southgate 55849 -Southington 63245 -Southlake 60405 -Southland 52996 -Southpark 63077 -Southpoint 65452 -Southport 53613 -Southridge 63419 -Souths 63077 -Southside 53746 -Southtown 64905 -Southwark 54283 -Southwell 64201 -Southwest 43549 -Southwest's 63601 -Southwestern 51377 -Southwick 61472 -Southwind 65170 -Southwood 62762 -Southworth 63077 -Souvenir 56452 -Souvenirs 55323 -Souvlaki 64657 -Souza 54226 -Sov 65170 -Sovereign 53470 -Sovereigns 63077 -Sovereignty 59560 -Soviet 45763 -Soviets 58577 -Sow 61940 -Sowa 64657 -Sowell 61584 -Sowerby 60321 -Soweto 61472 -Sowing 62917 -Sox 45092 -Sox's 61940 -Soy 51804 -Soya 57653 -Soybean 54151 -Soybeans 61584 -Soylent 64905 -Soymilk 65170 -Soyo 61584 -Soyoil 65170 -Soyuz 58113 -Soziale 63601 -Sozopol 61818 -Sp 52375 -SpA 55906 -SpVgg 61152 -Spa 42677 -SpaFeatures 58919 -SpaFinder 56721 -Space 38649 -SpaceBrowse 64201 -SpaceDaily 64423 -SpaceRef 58365 -SpaceRip 64905 -Spacecraft 57318 -Spaced 61152 -Spaceflight 61256 -Spacehonkey 63991 -Spacek 65170 -Spacer 58470 -Spacers 59424 -Spaces 48477 -Spaceship 61472 -Spaceships 64423 -Spacetime 63792 -Spacey 60238 -Spacing 55766 -SpacingAbove 63792 -SpacingBelow 63792 -Spacious 54560 -Spada 61940 -Spade 57482 -Spades 57084 -Spaeth 63991 -Spaghetti 52256 -Spagna 62917 -Spahr 65170 -Spain 38864 -Spain's 54601 -Spalding 54023 -Spalletti 62613 -Spalook 65170 -Spalted 64201 -Spam 43209 -SpamAssassin 63601 -SpamCop 60670 -Spamalot 60856 -Spammer 61584 -Spammers 60405 -Spamming 61940 -Spams 59848 -Span 56080 -Spanair 52765 -Spandau 62917 -Spandex 57482 -Spangled 61256 -Spangler 60405 -Spanglish 65452 -Spaniard 62196 -Spaniards 58470 -Spaniel 53549 -Spanien 65170 -Spanish 39613 -Spank 57785 -Spanked 63245 -Spanking 54419 -Spanky 62196 -Spanley 65452 -Spanner 63419 -Spanning 59039 -Spano 62331 -Spanx 63792 -Spar 58577 -SparDeinGeld 52699 -Sparc 52609 -Spare 47529 -Spares 51052 -Spark 51444 -SparkPeople 62331 -Sparkie 65170 -Sparkle 55821 -Sparkles 62762 -Sparkletts 63991 -Sparkling 54857 -Sparkly 65170 -Sparknotes 64201 -Sparks 49440 -Sparky 59923 -Sparring 61584 -Sparro 63419 -Sparrow 53779 -Sparrows 63077 -Sparse 56862 -Sparta 54519 -Spartacus 60670 -Spartak 62613 -Spartan 53423 -Spartanburg 52152 -Spartans 54133 -Spartina 63245 -Sparxx 65170 -Sparxxx 64905 -Spas 48234 -Spat 63245 -Spathiphyllum 60762 -Spatial 49371 -Spatially 62196 -Spats 62762 -Spatula 65170 -Spaulding 60670 -Spawn 58065 -Spawning 61699 -Spay 62917 -Spaz 63077 -Spb 55323 -Spc 62196 -Spd 60078 -Speak 47964 -Speakeasy 60952 -Speaker 45118 -Speaker's 59560 -Speakerphone 60405 -Speakers 43384 -Speaking 41539 -Speakman 63601 -Speaks 51690 -Spear 55348 -Spearfishing 59848 -Spearhead 61051 -Spearman 60952 -Spearman's 64201 -Spearmint 64905 -Spears 45504 -Spec 50881 -Specht 63991 -Special 33763 -Specialisation 62762 -Specialise 64905 -Specialised 58113 -Specialising 60670 -Specialist 42444 -Specialists 47725 -Specialities 59774 -Speciality 55631 -Specialization 55821 -Specializations 64201 -Specialize 60952 -Specialized 50053 -Specializes 60238 -Specializing 52375 -Specially 56485 -Specials 42639 -SpecialsParts 65170 -SpecialsService 64423 -Specialties 49296 -Specialty 43581 -Specialy 62469 -Speciation 63792 -Species 46491 -Specific 44150 -Specifically 56485 -Specification 47478 -Specifications 45251 -Specificity 56388 -Specifics 50026 -Specified 49054 -Specifier 65452 -Specifies 56324 -Specify 50469 -Specifying 55738 -Specimen 55423 -Specimens 53438 -Speck 58860 -Speckle 62613 -Speckled 63419 -Specktra 65170 -Speco 64657 -Specs 46831 -Specsavers 65452 -Spectacle 57923 -Spectacles 63601 -Spectacular 53454 -Spectator 53241 -Spectators 60670 -Specter 59357 -Spector 55657 -Spector's 63792 -Spectr 63991 -Spectra 52968 -Spectral 52571 -Spectrasonics 65452 -Spectre 57160 -Spectrobes 60580 -Spectrograph 64423 -Spectrometer 57653 -Spectrometers 63419 -Spectrometry 57318 -Spectrométrie 62066 -Spectrophotometer 64657 -Spectrophotometric 63792 -Spectroscopic 57785 -Spectroscopy 51175 -Spectrum 47772 -Speculation 56518 -Speculations 62917 -Speculative 59227 -Speculators 65452 -Speculum 63991 -Speech 45365 -SpeechMate 62469 -Speeches 47660 -Speechless 63601 -Speed 41166 -Speed's 65170 -SpeedAddict 65170 -SpeedConnect 65452 -SpeedStep 63601 -SpeedTouch 65170 -SpeedUpMyPC 61699 -Speeder 63601 -Speeders 65170 -Speeding 57876 -Speedlight 63991 -Speedlimit 64905 -Speedlite 63419 -Speednames 62331 -Speedo 55373 -Speedometer 60078 -Speeds 56080 -Speedster 62762 -Speedtouch 62196 -Speedup 65452 -Speedwagon 65170 -Speedwake 62196 -Speedway 51396 -Speedwell 64657 -Speedy 54207 -Speer 59424 -Speicher 63419 -Speier 65452 -Speight 62762 -Speirs 59923 -Speke 63792 -Spektor 59039 -Spektrum 60492 -Speleological 65170 -Spell 49440 -SpellCheck 62066 -Spellborn 63245 -Spellbound 63245 -Spelled 59702 -Spelling 48084 -Spellings 64201 -Spellman 63601 -Spellpower 62613 -Spells 53316 -Spelman 62066 -Spelt 64423 -Speman 65452 -Spence 54813 -Spencer 47123 -Spencer's 59848 -Spencerville 65170 -Spenco 64201 -Spend 50108 -Spending 49464 -Spends 62331 -Spengler 63601 -Spenser 61584 -Spent 55299 -Sper 64657 -Sperimentale 65452 -Sperling 63245 -Sperling's 64905 -Sperm 55178 -Spermatophyta 59227 -Spero 65170 -Sperry 60580 -Spex 64657 -Speyer 62066 -Speyside 63601 -Spezza 65452 -Sphere 52609 -SphereIt 59357 -Spheres 61818 -Spherical 57566 -Spherion 60157 -Sphincter 64657 -Sphinn 55992 -Sphinx 57482 -Sphynx 62917 -Spica 64657 -Spice 48097 -Spiced 58065 -Spicer 59292 -Spices 54245 -Spiceworks 64905 -Spicy 53167 -Spider 48970 -Spider's 64423 -SpiderMan 63077 -SpiderWeb 63419 -Spiderman 52927 -Spiders 54188 -Spiderwick 64657 -Spidey 62613 -Spied 61940 -Spiegel 56551 -Spiegelman 63792 -Spiegeltent 63601 -Spiel 60492 -Spielberg 55877 -Spielberg's 62196 -Spiele 60405 -Spielman 62613 -Spier 62762 -Spies 58523 -Spiewak 62196 -Spiga 62196 -Spike 50607 -Spike's 60238 -Spiked 59702 -Spikelets 65170 -Spikes 57122 -Spill 52534 -Spillane 63991 -Spiller 64657 -Spillover 63991 -Spills 59560 -Spin 49336 -SpinPoint 63077 -Spina 62066 -Spinach 53182 -Spinal 50670 -Spindle 56140 -Spindler 63077 -Spindles 63077 -Spine 52725 -SpineUniverse 63601 -Spinebreaker 59357 -Spineless 62331 -Spinelli 59292 -Spinich 64201 -Spink 65452 -Spinnaker 62331 -Spinner 52546 -Spinners 59292 -Spinning 52818 -Spinoff 64657 -Spinone 65170 -Spinoza 64657 -Spins 60238 -Spiny 64657 -Spiraea 60670 -Spiral 52210 -SpiralFrog 65452 -Spirals 63991 -Spire 56485 -Spirent 61584 -Spires 62762 -Spirestone 61051 -Spirit 43009 -Spirit's 61051 -SpiritTransportsIT 64657 -Spirited 59702 -Spirits 49572 -Spiritual 47318 -Spiritualist 64657 -Spirituality 47100 -Spiritus 64905 -Spiro 60856 -Spironolactone 65452 -Spirulina 60856 -Spit 56388 -Spitalfields 61699 -Spite 63601 -Spiteri 62469 -Spitfire 57566 -Spitsbergen 64423 -Spitting 62331 -Spitz 60670 -Spitzer 52315 -Spitzer's 59039 -Spivak 64201 -Spivey 63419 -Splash 51257 -SplashID 65170 -Splashing 65452 -Splat 63792 -Splatt 63419 -Splatter 60952 -Spleen 57741 -Splenda 64905 -Splendid 56518 -Splendor 58919 -Splendour 64201 -Splenectomy 63792 -Splenic 64905 -Splice 60078 -Splicing 61472 -Spline 58979 -Splines 62917 -Splint 62917 -Splinter 54519 -Splints 64657 -Splish 63792 -Split 47997 -Splits 56200 -Splitsville 64201 -Splitter 51835 -Splitters 59424 -Splitting 58313 -Splunk 61699 -Splurge 63419 -Spock 58523 -Spock's 64423 -Spode 57653 -Spodeli 61940 -Spodoptera 63601 -Spoil 61152 -Spoiled 57785 -Spoiler 53392 -Spoilers 52805 -Spoils 63245 -Spokane 49939 -Spoke 47634 -Spoke's 59101 -Spoken 51690 -Spokes 59774 -Spokesman 59491 -Spokesperson 60078 -Spoleto 64905 -Spondias 64201 -Spondylitis 64423 -Sponge 54601 -SpongeBob 55877 -Spongebob 57609 -Sponges 59424 -Sponsor 43210 -Sponsor's 63245 -Sponsored 37561 -SponsoredWhite 58313 -Sponsoring 55934 -Sponsorised 64201 -Sponsors 43361 -Sponsorship 49152 -Sponsorships 56935 -Spontaneous 54924 -Spontaneously 62917 -Spoof 55877 -Spoofing 61152 -Spoofs 62762 -Spook 62066 -Spooks 53796 -Spooktacular 63245 -Spooky 54581 -Spool 60078 -Spools 63792 -Spoon 53256 -Spooner 60670 -Spoonful 62331 -Spooning 64905 -Spoons 56899 -Spor 65170 -Sporadic 59560 -Spore 42871 -Sporeggar 63077 -Spores 61940 -Spork 65452 -Sport 37752 -Sport's 63077 -SportScan 64423 -Sportage 58632 -Sportal 61818 -Sportback 57358 -Sportbags 64657 -Sportbike 62613 -Sportbikes 64905 -Sportfishing 62917 -Sportif 62917 -Sporting 43768 -SportingBlogs 60670 -SportingPulse 64423 -Sportingbet 63991 -Sportingo 64201 -Sportiva 62196 -Sportive 64201 -Sportline 63419 -Sportourer 65452 -Sports 31305 -SportsBusiness 55711 -SportsCenter 63792 -SportsFitness 65170 -SportsGamer 49584 -SportsLine 59101 -SportsNation 60238 -SportsTalk 63991 -Sportsbook 57696 -Sportsbooks 62762 -Sportscar 63601 -Sportscars 61051 -Sportsline 61051 -Sportsman 55738 -Sportsman's 56972 -Sportsmans 63991 -Sportsmanship 61362 -Sportsmen 53865 -Sportsmen's 63991 -Sportsplex 61362 -Sportsround 65170 -Sportstar 55766 -Sportster 60405 -Sportswear 53549 -Sportwerks 65452 -Sporty 58065 -Sportz 63792 -Spot 44783 -Spot's 64905 -Spotless 61699 -Spotlight 43848 -Spotlights 55766 -Spotmau 64201 -Spots 51104 -Spotswood 62917 -Spotsylvania 61818 -Spotted 53010 -Spotter 59292 -Spotters 61699 -Spotting 54078 -Spottt 65170 -Spousal 60492 -Spouse 50815 -Spouse's 61940 -Spouses 58417 -Spout 58365 -SpoutBlog 60670 -Spr 64657 -Sprache 61699 -Sprachen 64423 -Sprague 57009 -Spratly 61051 -Spratt 62196 -Sprawl 64423 -Spray 46824 -Sprayed 60856 -Sprayer 60492 -Sprayers 59101 -Spraying 58262 -Sprays 57923 -Spread 47960 -SpreadFirefox 65170 -Spreader 62066 -Spreaders 61152 -Spreading 55348 -Spreads 55963 -Spreadsheet 55060 -Spreadsheets 59039 -Spreadshirt 64201 -Spreckelsen 63792 -Spree 57741 -Sprenger 56618 -Sprig 63245 -Spring 40560 -SpringHill 61940 -Springboard 64423 -Springbok 60856 -Springboks 63245 -Springboro 65452 -Springbrook 63792 -Springdale 60078 -Springer 48806 -Springfield 46989 -Springhill 60000 -Springmoor 65452 -Springs 42707 -Springsteen 52130 -Springsteen's 62762 -Springtime 57440 -Springtown 65452 -Springvale 63601 -Springville 58979 -Springwood 62331 -Springwood's 63792 -Sprinkle 56231 -Sprinkler 55631 -Sprinklers 58577 -Sprinkles 61152 -Sprint 46112 -Sprint's 60000 -SprintPCS 62469 -Sprintcar 65170 -Sprinter 59227 -Sprinting 65170 -Sprints 62762 -Sprintvalley 64905 -Sprissler 63077 -Sprit 64657 -Sprite 56420 -Sprites 62066 -Spritomb 64201 -Spritzer 62469 -Sprocket 60492 -Sprockets 60405 -Sproul 63991 -Sprouse 60580 -Sprout 58688 -Sprouting 63077 -Sprouts 58632 -Spruce 53847 -Sprung 62762 -Spry 61051 -Spud 61584 -Spun 60762 -Spunk 63601 -Spunky 63245 -Spur 55107 -Spurgeon 61584 -Spurious 63077 -Spurl 49511 -Spurned 64423 -Spurred 63419 -Spurrier 61362 -Spurs 51434 -Spurting 63601 -Sputnik 59923 -Sputtering 62917 -Sputum 62196 -Spy 45615 -SpyBot 64201 -SpyFu 57653 -SpyHunter 62066 -SpyLOG 60856 -Spybot 57278 -Spyder 54643 -Spyderco 60670 -Spying 58919 -Spyker 59923 -Spyro 59560 -Spytunes 63601 -Spyware 47548 -Spécial 61584 -Sq 53286 -SqFt 61940 -Sqft 56935 -Sql 58470 -Sqm 62331 -Sqn 60580 -Sqr 63792 -Squad 47367 -Squadron 51453 -Squadrons 62762 -Squads 60580 -Squall 62066 -Squamish 64201 -Squamous 60000 -Square 41538 -SquarePants 59774 -SquareTrade 59560 -Squared 59491 -Squarepants 61699 -Squares 52712 -Squaring 64905 -Squash 51034 -Squat 61152 -Squaw 60157 -Squeaky 61584 -Squeegee 64201 -Squeegees 65452 -Squeeze 53377 -Squeezebox 62196 -Squeezed 63245 -Squeezing 64657 -Squibb 58470 -Squid 54114 -SquidBids 63601 -SquidBlog 63419 -SquidFlix 63601 -SquidLit 63601 -SquidU 63419 -SquidVids 63419 -SquidWho 63245 -Squidoo 52832 -Squidoo's 63077 -Squier 59848 -Squiggly 63419 -Squire 57653 -Squire's 64423 -Squires 59848 -Squirrel 53109 -Squirrels 59702 -Squirt 57278 -Squirting 56388 -Squirts 63792 -Squishy 63991 -Sr 50013 -Sram 61362 -Srbija 64423 -Src 57482 -Srebrenica 63419 -Sree 60952 -Srey 63601 -Sri 43356 -SriLankan 52765 -Sridevi 63601 -Sridhar 57923 -Srikanth 63601 -Srila 60580 -Srinagar 59101 -Srinivas 59424 -Srinivasa 63601 -Srinivasan 58860 -Sriram 62762 -Srivastava 60157 -Srixon 61584 -Srl 59164 -Sroka 63419 -Srpska 64905 -Srpski 53024 -Ss 57970 -SsangYong 62613 -Ssangyong 58417 -SsbB 63792 -Ssh 63245 -Ssolbergj 65452 -St 36982 -StH 64423 -StHwy 65452 -StI 65170 -StL 64657 -Sta 57653 -Staal 61940 -Staatssammlung 58523 -Stab 58212 -Stabbed 63245 -Stabbing 60762 -Stabbystabby 63991 -Stabe 63792 -Stabilisation 63792 -Stability 49572 -Stabilization 53762 -Stabilize 64423 -Stabilized 60078 -Stabilizer 58919 -Stabilizers 61818 -Stabilizing 60762 -Stabilo 64657 -Stable 46296 -Stables 56452 -Stabroek 64423 -Stabs 64905 -Stacey 50686 -Stacey's 64201 -Staceyannie 63601 -Staci 60405 -Stacie 57741 -Stack 51060 -Stackable 59424 -Stacked 56080 -Stackelberg 61699 -Stacker 58212 -Stackers 65170 -Stackholm 65170 -Stackhouse 61584 -Stacking 56050 -Stacks 54946 -Stacy 50568 -Stacy's 64423 -Stade 57009 -Stadion 63601 -Stadium 45902 -Stadiums 54879 -Stadler 61472 -Stadt 60238 -Staff 37853 -Staff's 62917 -Staffer 61940 -Staffers 64905 -Staffing 47664 -Stafford 51711 -Staffordshire 50545 -Staffs 59848 -Stag 55202 -Stage 43158 -Stagecoach 58577 -Staged 60952 -Stagehands 63792 -Stages 51321 -Stagg 58802 -Staggered 65452 -Staggering 63991 -Staghelm 60856 -Staging 54078 -Stagione 57566 -Stagnation 64905 -Stagnetti's 64423 -Stags 60762 -Stahl 58162 -Staiger 63792 -Stain 54078 -Staind 60321 -Stained 54188 -Staines 59164 -Staining 57084 -Stainless 45086 -Stains 58688 -Stair 56585 -Staircase 59630 -Staircases 64905 -Stairlifts 63991 -Stairs 53679 -Stairway 58802 -Stake 53646 -Stakeholder 55738 -Stakeholders 58365 -Stakes 51026 -Staking 63991 -Stale 62762 -Staley 61362 -Stalin 57358 -Stalin's 62066 -Stalingrad 65170 -Stalinist 60580 -Stalk 60952 -Stalker 54924 -Stalker's 65452 -Stalkers 65452 -Stalking 56791 -Stalks 65170 -Stall 56899 -Stalled 63991 -Stallings 63792 -Stallion 53392 -Stallions 57831 -Stallman 62196 -Stallone 58919 -Stalls 59227 -Stallworth 63419 -Stalwart 61472 -Stam 63792 -Stamford 52661 -Stamina 57785 -Stamm 62469 -Stamos 63601 -Stamp 49932 -StampAll 65452 -Stampa 64423 -Stampanti 64905 -Stamped 58688 -Stampede 56972 -Stampeders 59101 -Stamper 60762 -Stampers 64905 -Stamping 56200 -Stamps 47342 -Stan 44581 -Stan's 62469 -Stance 57653 -Stand 44639 -Standalone 57653 -Standard 38040 -StandardBattery 65452 -Standardbred 61362 -Standardisation 64201 -Standardization 56862 -Standardized 55373 -Standardizing 61818 -Standards 41340 -Standart 65452 -Standby 54601 -Standiford 63077 -Standing 46757 -Standings 46045 -Standish 60580 -Standley 64423 -Standoff 60952 -Standout 60856 -Stands 48662 -Standup 60238 -Standups 59164 -Stanek 64657 -Staneslow 65170 -Stanfield 63077 -Stanford 46708 -Stanford's 59357 -Stang 61472 -Stanger 65170 -Stanhope 59424 -Stanislaus 59101 -Stanislav 60762 -Stanislaw 64423 -Stankovic 64201 -Stanley 45533 -Stanley's 60762 -Stanly 60580 -Stanmore 62762 -Stannard 65170 -Stansbury 64423 -Stansfield 61256 -Stansted 56585 -Stanton 52673 -Stanwell 63991 -Stanwood 63077 -Stanwyck 60238 -Stanza 61818 -Staonal 59848 -Stapf 58919 -Staph 59424 -Staphylococcal 61584 -Staphylococcus 52118 -Staple 56721 -Stapler 60492 -Staplers 59424 -Staples 51741 -Stapleton 56827 -Stapp 65452 -Star 37139 -Star's 59560 -StarCraft 54226 -StarGate 62613 -StarHub 64423 -StarOffice 60952 -StarPhoenix 57084 -StarQuest 65170 -StarTech 64905 -StarTrek 63991 -Stara 64423 -Starboard 62066 -Starbright 65452 -Starbuck 60762 -Starbuck's 64905 -Starbucks 49446 -Starburst 61940 -Starcatchers 60670 -Starch 56485 -Starchef 63991 -Starck 60580 -Starcom 65170 -Starcraft 51752 -Stardock 59774 -Stardoll 62469 -Stardom 61584 -Stardust 55500 -Stare 58688 -Starfield 64905 -Starfighter 63245 -Starfire 61940 -Starfish 58065 -Starfleet 59923 -Stargate 51257 -Stargazer 63077 -Stargazing 60321 -Stari 61256 -Staricha 65452 -Staring 60492 -Stark 52447 -Starke 63245 -Starker 65452 -Starkey 60321 -Starks 61472 -Starkville 61152 -Starla 64657 -Starlet 61362 -Starlets 61051 -Starlight 56324 -Starling 59292 -Starlite 62066 -Starlix 59357 -Starman 63792 -Starpoint 65170 -Starpoints 61940 -Starpulse 54992 -Starr 51492 -Starr's 61584 -Starred 57524 -Starrett 64423 -Starring 52244 -Starrs 64905 -Starry 58113 -Stars 41472 -Starship 56170 -Starsky 62469 -Start 35822 -StartAid 55578 -StartObject 53196 -Startaid 61256 -Startech 62469 -Started 43545 -Starter 45209 -Starters 54170 -Starting 42009 -Startins 62762 -Startling 63991 -Startpage 62469 -Startrek 64657 -Starts 48341 -Startseite 58417 -Startsida 65452 -Startup 51492 -StartupNation 65452 -Startups 56935 -Starvation 63991 -Starved 60492 -Starving 59848 -Starwars 62917 -Starwave 64201 -Starwood 53407 -Starwood's 65452 -Stary 65170 -Starz 58365 -Stas 63419 -Stash 58212 -Stasi 61699 -Stat 51804 -StatCounter 61818 -Stata 64201 -Statbrain 62066 -Statcounter 65170 -State 32285 -State's 50966 -Stated 57238 -Statehood 64657 -Statehouse 60670 -Stateline 62917 -Stately 58313 -Statement 37534 -Statements 47839 -Staten 50782 -Statens 64423 -Stateroom 64657 -States 33493 -Statesboro 61256 -Stateside 62469 -Statesman 52130 -Statesville 63077 -Statewide 50199 -Statham 61051 -Stati 64657 -Static 49342 -Statice 62762 -Statik 61699 -Statin 62917 -Stating 59560 -Statins 61051 -Station 40473 -Station's 65170 -Stationary 54581 -Stationers 63077 -Stationery 48991 -Stations 45143 -Statistic 58313 -Statistica 63077 -Statistical 44639 -Statistically 56140 -Statistici 62917 -Statistician 63792 -Statisticians 64201 -Statistics 38039 -Statistik 62613 -Statistika 64905 -Statistiques 63077 -Statler 60321 -StatoilHydro 64657 -Staton 65170 -Stator 62762 -Stats 40112 -Statuary 61472 -Statue 51541 -Statues 53830 -Stature 64657 -Status 39747 -StatusShopping 64657 -Statute 54245 -Statutes 49388 -Statutorily 63601 -Statutory 50991 -Staub 57831 -Staubli 63792 -Staudinger 64201 -Stauffer 61256 -Staunton 58417 -Stavanger 59848 -Stave 60670 -Stavros 59702 -Stavzor 63601 -Stax 62331 -Stay 42172 -StayAmerica 63991 -Staybridge 58212 -Staycation 64905 -Stayed 57399 -Staying 52141 -Stays 55373 -Stayz 63991 -Stazzo 65170 -Std 55202 -Ste 47034 -Stead 62066 -Steadfast 65452 -Steadman 61584 -Steady 52739 -SteadyState 63077 -Steadycam 63601 -Steak 49017 -Steakhouse 52096 -Steakhouses 63601 -Steaks 55526 -Steal 53762 -Stealer 62469 -Stealers 65452 -Stealing 56518 -Steals 55323 -Stealth 53286 -StealthKote 60952 -Steam 47507 -SteamFast 65170 -Steamboat 55107 -Steamed 59039 -Steamer 57399 -Steamers 59923 -Steaming 62469 -Steampunk 62331 -Steamroller 62613 -Steamship 62066 -Steamvault 60856 -Steamwheedle 58860 -Steamy 61362 -Steaphan 62917 -Stearate 64423 -Stearic 64657 -Stearns 53762 -Steaua 61699 -Stebbins 64423 -Steck 65452 -Stedman's 61362 -Steed 59424 -Steeda 65452 -Steel 41625 -Steel's 64423 -Steelcase 63245 -Steele 50469 -Steele's 65170 -Steeler 63792 -Steelers 49919 -Steeles 65452 -Steeleye 63077 -Steelhead 61472 -Steels 59774 -SteelsSurfaces 59227 -Steelworker 54685 -Steely 58523 -Steen 58688 -Steenberg 63077 -Steep 55906 -Steeple 61818 -Steeplechase 65170 -Steer 57160 -Steerer 62469 -Steering 46815 -Steers 63077 -Steet 64905 -Steevie 63991 -Stef 61256 -Stefan 49291 -Stefani 53392 -Stefania 57696 -Stefanie 55552 -Stefanie's 64905 -Stefano 53066 -Stefanos 63601 -Steff 64201 -Steffan 65170 -Steffans 63792 -Steffen 56899 -Steffens 65170 -Steffi 61940 -Steg 64905 -Steganography 63419 -Steganos 65452 -Steger 62469 -Steiff 63792 -Steiger 61584 -Steilacoom 64657 -Stein 49400 -Stein's 62762 -Steinar 65170 -Steinbach 63601 -Steinbeck 61818 -Steinberg 55250 -Steinberger 64657 -Steinbre 63077 -Steinbrenner 59702 -Steinbrueck 62917 -Steinem 63991 -Steiner 54380 -Steiner's 65170 -Steinhardt 63991 -Steinman 63792 -Steinmeier 64423 -Steinmetz 63419 -Steins 60405 -Steinway 60078 -Steklov 65170 -Stelios 62917 -Stella 50256 -Stella's 63991 -Stellar 54540 -Stelle 64657 -Stellenbosch 60078 -Stelter 61051 -Stem 43396 -Stemi 64201 -Stemming 65452 -Stemmons 64905 -Stems 54078 -Stemware 59292 -Sten 65170 -Stencil 58577 -Stencils 58017 -Stennis 63792 -Stenosis 60762 -Stenson 64423 -Stent 60856 -Stentor 64423 -Stents 62331 -Step 41639 -Stepan 65452 -Stepchild 65170 -Stepfather 64657 -Stepford 61051 -Steph 55906 -Stephan 53081 -Stephane 56585 -Stephanie 46950 -Stephanie's 63077 -Stephano 65170 -Stephen 41222 -Stephen's 56721 -Stephene 64905 -Stephenie 56935 -Stephens 51793 -Stephenson 54041 -Stephentown 61699 -Stephenville 63077 -Stephon 62331 -Stepp 63077 -Steppe 65452 -Steppenwolf 58979 -Stepper 60762 -Steppes 58860 -Stepping 53830 -Steps 45964 -Stepsister 65452 -Steptoe 64423 -Stepwise 64201 -Sterapred 60321 -Stereo 46231 -Stereofan 64905 -Stereogum 58262 -Stereolab 63792 -Stereophonics 60580 -Stereos 58417 -Stereoscopic 63601 -Stereosonic 64657 -Stereotactic 65452 -Stereotype 61584 -Stereotypes 60405 -Stereotypical 65170 -Steril 61256 -Sterile 55130 -Sterilite 61152 -Sterility 64201 -Sterilization 60762 -Sterilizer 62469 -Sterilizers 61362 -Sterling 44496 -Sterling's 63077 -Stern 50402 -Stern's 61940 -Sternberg 61051 -Sterne 62917 -Sterner 65452 -Steroid 56618 -Steroids 55348 -Stet 60952 -Stethoscope 62331 -Stethoscopes 62331 -Stetson 59357 -Stettler 62331 -Steuben 61362 -Steubenville 63419 -Steuer 62196 -Steunsite 60405 -Stevan 61940 -Steve 39568 -Steve's 55299 -SteveDangle 63077 -Steven 43278 -Steven's 63077 -Stevenage 56388 -Stevens 46348 -Stevens's 64905 -Stevenson 50431 -Stevenson's 62469 -Stevensville 61940 -Steverino 63991 -Steves 60492 -Stevi 61699 -Stevia 62613 -Stevie 50599 -Stevo 64657 -Stew 52315 -Steward 53779 -Stewards 59848 -Stewardship 53762 -Stewart 44070 -Stewart's 57482 -Stewarts 63419 -Stewed 65170 -Stewie 56687 -Stewie's 62196 -Stews 58802 -Steyn 60238 -Steyning 65452 -Steyr 61362 -Sth 60492 -Stich 65452 -Stichting 61699 -Stick 46973 -Stickam 62762 -Sticker 49113 -Stickers 47883 -Stickerz 60238 -Stickies 65452 -Stickiness 61940 -Sticking 59702 -Stickle 61940 -Stickles 64657 -Stickman 61699 -Stickney 64201 -Sticks 51453 -Sticky 50185 -Stiefel 64201 -Stieltjes 63419 -Stier's 64905 -Stiff 56652 -Stiffness 60580 -Stiftung 63792 -Stig 60405 -Stiga 64423 -Stiglitz 63991 -Stigma 60492 -Stigmata 65170 -Stihl 62469 -Stiinta 64201 -Stijn 63991 -Stik 63601 -Stikfas 61362 -Stil 63991 -Stila 60762 -Stile 64201 -Stiles 55934 -Stiletto 57440 -Stilettos 63991 -Still 42182 -Stillbirth 63792 -Stillen 65452 -Stiller 56231 -Stillman 59227 -Stillorgan 64423 -Stills 53346 -Stillwater 56140 -Stillwell 64423 -Stilo 63601 -Stilt 62331 -Stilton 65170 -Stilts 63077 -Stilwell 64423 -Stimpy 62469 -Stimson 63991 -Stimulant 60670 -Stimulants 60321 -Stimulate 60952 -Stimulated 61818 -Stimulates 61584 -Stimulating 59630 -Stimulation 53630 -Stimulator 61472 -Stimulators 63991 -Stimuli 61051 -Stimulus 54581 -Stina 64201 -Stine 61472 -Sting 52546 -Stinger 55274 -Stingers 63991 -Stinging 62917 -Stingray 57046 -Stingrays 63419 -Stings 64657 -Stink 60670 -Stinky 58979 -Stinson 58632 -Stipagrostis 63792 -Stipe 62196 -Stipend 65170 -Stipulation 60670 -Stipulations 65452 -Stipules 63419 -Stir 51349 -StirMark 63991 -Stiri 61051 -Stirling 50553 -Stirlingshire 60405 -Stirred 63991 -Stirring 56899 -Stirrup 64423 -Stirs 60000 -Stitch 51953 -Stitch's 63792 -Stitched 62066 -Stitches 57741 -Stitching 58577 -Stitt 63601 -Stivell 64423 -Stivers 63419 -Stix 61362 -Stk 65452 -Stl 64905 -Stn 61472 -Sto 57046 -StoRM 65452 -StoTherm 63991 -Stochastic 53454 -Stock 36877 -StockFood 62331 -StockScouter 59292 -Stockade 59630 -Stockbridge 59560 -Stockbrokers 63077 -Stockbyte 58688 -Stockdale 60078 -Stocked 60856 -Stocker 57199 -Stockhausen 64201 -Stockholder 60157 -Stockholders 55250 -Stockholm 48034 -Stockhouse 63991 -Stocking 54302 -Stockings 53301 -Stockist 63601 -Stockists 59424 -Stockland 60670 -Stockley 63077 -Stocklist 65170 -Stockman 62066 -Stockmarket 65170 -Stockpickr 63419 -Stockpiling 64657 -Stockport 51396 -Stockport's 62917 -Stocks 40386 -Stocktake 64905 -Stockton 52484 -Stockwell 59101 -Stockyards 63601 -Stoddard 61256 -Stoddart 63991 -Stoel 62917 -Stoffel 64201 -Stoichiometric 65170 -Stoichiometry 65170 -Stoke 50431 -Stoker 60492 -Stoker's 64905 -Stokes 52858 -Stokke 61818 -Stole 59292 -Stolen 51846 -Stoll 60321 -Stoller 61584 -Stoltz 60157 -Stolz 59227 -Stomach 53865 -Stomatol 63792 -Stomp 55014 -Stomper 63601 -Stone 42048 -Stone's 56618 -Stonebridge 61152 -Stonecold 63245 -Stoned 59101 -Stonegate 61152 -Stoneham 60405 -Stonehaven 64201 -Stonehenge 56585 -Stonehill 63077 -Stonehouse 62066 -Stoneleigh 65170 -Stoneman 64423 -Stonemaul 59227 -Stoner 55711 -Stoneridge 64905 -Stoners 64905 -Stones 48105 -Stonetalon 60762 -Stonewall 55906 -Stoneware 59702 -Stonewood 64201 -Stonework 64423 -Stoney 54380 -Stonington 61940 -Stony 53081 -Stoo 62469 -Stood 58065 -Stooges 57696 -Stool 54499 -Stools 53316 -Stoop 62331 -Stoopid 61256 -Stoops 62469 -Stop 39881 -Stopes 62917 -Stoplight 64905 -Stoppard 61699 -Stopped 54479 -Stopper 58470 -Stoppers 55448 -Stopping 54096 -Stops 52447 -Stopwatch 64657 -Stor 64423 -StorCenter 63601 -StorDigital 64423 -Stora 62762 -Storage 38885 -StorageTek 62066 -StorageWorks 59702 -Storch 62917 -Storck 65452 -Store 34311 -Store's 59848 -Stored 55604 -StoredProcedure 63991 -Storefront 57923 -Storefronts 63991 -Storehouse 60580 -Storekeeper 51620 -Storeng 63419 -Storer 61940 -Stores 38172 -Storey 56170 -Storia 63792 -Storie 64905 -Stories 37807 -Storing 56687 -Stork 59227 -Storkcraft 63792 -Storm 44276 -StormWindow 65170 -Stormers 63601 -Stormfront 54749 -Storming 50164 -Stormo 64657 -Stormont 63991 -Stormrage 59227 -Stormreaver 59560 -Storms 53407 -Stormscale 59357 -Stormstrike 65452 -Stormtrooper 62917 -Stormwarrior 60856 -Stormwater 53182 -Stormwind 56585 -Stormy 56652 -Stornoway 64905 -Storrs 63245 -Stortford 61472 -Story 38575 -Storyboard 60580 -Storyboarding 63792 -Storybook 54792 -Storyline 58802 -Storylines 63419 -Storyteller 60492 -Storytellers 63792 -Storytelling 56687 -Storytime 56585 -Stossel 64905 -Stott 59702 -Stoudamire 64905 -Stoudemire 63991 -Stoughton 58417 -Stour 63991 -Stourbridge 56972 -Stout 53712 -Stovall 60762 -Stove 52954 -Stover 59101 -Stoves 53392 -Stow 58212 -Stowaway 62762 -Stowe 58919 -Stowell 63419 -Stowers 64905 -Stoxpoker 64657 -Str 57238 -StrCompare 63792 -StrConv 64423 -StrToken 64423 -Strabismus 64423 -Strachan 59774 -Strada 59560 -Stradale 65170 -Stradbroke 63419 -Stradivarius 63245 -Strafford 64423 -Straggle 65170 -Strahan 61362 -Strahl 64905 -Straight 45086 -Straighten 54969 -Straightener 59164 -Straighteners 60952 -Straightening 61152 -Straightforward 62066 -Strain 51856 -Strained 63792 -Strainer 61818 -Strainers 63419 -Strains 55202 -Strait 52062 -Straits 54264 -Strand 50823 -Stranded 57278 -Strands 61152 -Strang 62917 -Strange 47955 -Strangely 60492 -Stranger 51620 -Strangerhood 65452 -Strangers 53899 -Strangest 60580 -Strangle 63419 -Stranglehold 65452 -Strangler 64905 -Stranglers 62469 -Stranglethorn 60238 -Strano 61940 -Stranraer 60492 -Strap 49959 -Strapless 57741 -Strapon 64423 -Strapped 63077 -Strapping 57318 -Strappy 62469 -Straps 52818 -Strasbourg 57440 -Strasburg 62066 -Strasburgh 63419 -Strasse 60405 -Strasser 62331 -Strat 57566 -Strata 56452 -Strata's 60856 -Stratagene 64657 -Stratecast 64201 -Strategic 42466 -Strategically 61818 -Strategie 62762 -Strategies 45023 -Strategist 57399 -Strategy 39653 -Straten 63245 -Stratford 51060 -Strath 63991 -Strathalbyn 62762 -Strathclyde 57238 -Strathcona 61152 -Strathfield 60157 -Strathmann 65452 -Strathmore 59292 -Stratholme 60580 -Strathroy 62066 -Stratics 62066 -Stratification 62469 -Stratified 65452 -Stratify 65452 -Stratigraphic 61818 -Stratigraphy 62331 -Stratocaster 59357 -Stratos 59630 -Stratosphear 64423 -Stratosphere 65170 -Stratovarius 60000 -Strats 63077 -Stratton 54706 -Stratum 60580 -Stratus 59424 -Straub 61472 -Strauch 64423 -Straus 59630 -Strausberg 63419 -Strauss 53346 -Stravinsky 62196 -Straw 52886 -Strawberries 57609 -Strawberry 49645 -Strawn 64657 -Straws 62762 -Stray 56293 -Strayer 53917 -Straylight 63792 -Strays 61818 -Straße 62613 -Streak 54749 -Streaks 61362 -Streaky 62762 -Stream 46167 -Streamate 63792 -Streamed 65170 -Streamer 60321 -Streamers 59923 -Streamflow 64657 -Streaming 48261 -Streamium 63601 -Streamlight 56231 -Streamline 56110 -Streamlined 58860 -Streamlines 63991 -Streamlining 59848 -Streams 52244 -Streamwood 64201 -Streatham 60078 -Streator 64905 -Streep 59702 -Street 35391 -Street's 54439 -StreetEasy 64201 -StreetFire 59491 -StreetGlow 61152 -StreetInsider 62196 -StreetPilot 60952 -Streetball 63601 -Streetcar 60405 -Streetcars 62917 -Streetdirectory 63419 -Streeter 56827 -Streeters 59292 -Streetlight 64201 -Streets 47413 -Streetsblog 65170 -Streetsboro 64201 -Streetscape 62762 -Streetwear 61256 -Streetwise 61699 -Streetz 62469 -Streicher 59774 -Streisand 59101 -Stren 64201 -Strength 47438 -Strengthen 54643 -Strengthened 62066 -Strengthening 53167 -Strengthens 59560 -Strengths 55934 -Strep 63077 -Streptococcal 62066 -Streptococcus 51670 -Streptomyces 58017 -Streptomycin 63077 -Stress 46136 -Stressed 60952 -Stresses 59227 -Stressful 61584 -Stretch 49173 -StretchNil 60321 -Stretched 56862 -Stretcher 61818 -Stretches 63601 -Stretching 55130 -Stretchy 64423 -Stretton 64423 -Strick 63245 -Stricken 64201 -Stricker 63601 -Strickland 56687 -Strict 55226 -Strictly 49821 -Stride 58262 -Strider 61699 -Strides 61699 -Stridex 62469 -Strife 59357 -Strike 47649 -StrikeThrough 65452 -Strikeforce 61699 -Strikeout 64201 -Strikeouts 64657 -Striker 54792 -Strikers 60157 -Strikes 52472 -Strikethrough 64201 -Striking 57122 -String 45031 -StringBuffer 65170 -Stringed 62917 -Stringer 59101 -Stringfellow 65452 -Stringing 62469 -Strings 50277 -Stringybark 64905 -Strip 47410 -Stripe 50873 -Striped 53271 -Striper 63991 -Stripers 63245 -Stripes 51700 -Striping 60762 -Stripped 57318 -Stripper 55526 -Strippers 57609 -Stripping 57122 -Strips 51899 -Striptease 61472 -Stritch 63792 -Strive 60670 -Striving 60321 -Strix 64905 -Strobe 56935 -Strobel 62469 -Strobes 64201 -Strobist 64657 -Strode 63419 -Stroganoff 63792 -Stroh 58979 -Strohmeyer 57084 -Stroke 47887 -Stroked 65170 -Stroker 64657 -Strokes 57160 -Stroll 59039 -Stroller 52673 -Strollers 51670 -Strolling 63245 -Strom 59923 -Stroma 64657 -Stromal 62331 -Stromberg 63077 -Stromboli 63245 -Stromectol 60238 -Strona 61472 -Strong 45326 -Strong's 63245 -Strongbow 65170 -Stronger 54341 -Strongest 58802 -Stronghold 60078 -Strongly 53865 -Strongman 64201 -Strongsville 63601 -Strontium 60405 -Strood 64201 -Strother 62331 -Stroud 55934 -Stroudsburg 62762 -Stroup 62762 -Struck 58212 -Struct 58365 -Structural 46261 -Structure 36419 -Structured 50957 -Structures 48791 -Structuring 59491 -Strudel 64905 -Struggle 54302 -Struggles 47760 -Struggling 53630 -Strum 62066 -Strumello 64423 -Strummer 64905 -Strung 63419 -Strunk 63245 -Strunk's 64657 -Strut 53138 -Struthers 63792 -Struts 53779 -Strutt 63991 -Struvite 62762 -Stryker 56585 -Sts 62066 -Stu 56021 -Stuart 46115 -Stuart's 63419 -StuartGraves 62917 -Stuarts 65170 -Stub 59923 -StubHub 62331 -Stubb's 65170 -Stubble 64201 -Stubborn 62762 -Stubbs 55323 -Stubby 64905 -Stubs 61051 -Stucco 57524 -Stuck 52062 -Stuckey 65452 -Stud 49296 -Studd 63245 -Studdard 63419 -Studded 57741 -Studebaker 60000 -Student 38531 -Student's 51610 -StudentMASH 65452 -Students 39310 -Studentsa 64905 -Studi 55877 -Studia 59774 -Studie 61152 -Studied 58860 -Studien 65452 -StudienarbeitPeterMarschke 65170 -Studies 38326 -Studio 39337 -Studio's 63991 -Studios 45400 -Studland 65170 -Studs 55793 -Study 39352 -Studying 52661 -Stuer 65170 -Stuff 40099 -StuffIt 60492 -Stuffed 49470 -Stuffers 62331 -Stuffing 58162 -Stuffit 62066 -Stuffs 60580 -Stuhr 61152 -Stull 64657 -StumblUpon 65452 -Stumble 46261 -StumbleThru 65170 -StumbleUpon 41667 -Stumblers 58919 -Stumbleupon 51783 -Stumbling 62066 -Stump 54969 -Stumped 65452 -Stumpf 65170 -Stumps 63792 -Stumptown 64905 -Stun 59560 -Stunde 62613 -Stunden 61472 -Stung 63077 -Stunned 59164 -Stunner 62469 -Stunning 51835 -Stuns 65452 -Stunt 53712 -Stunted 64905 -Stunting 61256 -Stuntman 60580 -Stunts 55821 -Stupid 49523 -Stupidity 60157 -Stupor 65170 -Sturdy 57318 -Sturgeon 57785 -Sturges 61256 -Sturgis 58212 -Sturkules 64905 -Sturm 59491 -Sturn 63601 -Sturrock 65452 -Sturt 62196 -Sturtevant 65170 -Stussy 62196 -Stuttering 64201 -Stuttgart 53124 -Stutz 63077 -Stutzman 65170 -Stuur 64201 -Stuy 62196 -Stuyvesant 59424 -Style 37043 -StyleFeeder 65452 -StyleList 56827 -Styleboard 55849 -Styleboards 54170 -Styled 60952 -Styledash 54302 -Stylehive 61699 -Stylephile 60670 -Styler 58860 -Styles 44294 -Stylesheet 59357 -Styleside 57970 -Stylez 61051 -Styli 65452 -Styling 52074 -Stylish 52118 -Stylist 55037 -Stylista 60492 -Stylistic 62196 -Stylistics 65170 -Stylists 60157 -Stylized 65452 -Stylizer 63792 -Stylo 65452 -Stylochaeton 63991 -Stylus 49113 -Styplon 60238 -Styrene 61472 -Styrofoam 59560 -Styx 60405 -Stéphane 56721 -Stéphanie 62331 -Stürme 64905 -Su 48399 -SuChin 61152 -SuPer 64905 -SuSE 56618 -Sua 63245 -Suan 64905 -Suarez 59560 -Suave 61362 -Sub 45084 -SubClass 51680 -SubSection 61940 -SubTopic 65452 -SubTotal 64201 -Subacute 64201 -Subang 64423 -Subarachnoid 63601 -Subaru 46831 -Subatomic 64423 -Subba 62469 -Subbed 57876 -Subbu 62762 -Subbuteo 61362 -Subcategories 55657 -Subcategory 58313 -Subcellular 59630 -Subchapter 61051 -Subclass 63245 -Subclasses 64423 -Subclinical 64423 -Subcom 60157 -Subcommittee 52996 -Subcommittees 62762 -Subconscious 62331 -Subcontinent 63991 -Subcontract 63419 -Subcontracting 65452 -Subcontractor 63419 -Subcontractors 62469 -Subcribe 62613 -Subculture 64423 -Subcutaneous 61362 -Subdivision 51157 -Subdivisions 59560 -Subdomain 64201 -Subdomains 62066 -Subforums 60670 -Subgroup 60405 -Subgroups 64423 -Subhas 64905 -Subhash 57566 -Subiaco 60000 -Subic 62613 -Subir 63245 -Subject 40251 -Subjected 63245 -Subjectguide 60670 -Subjective 58365 -Subjects 43311 -Sublease 64905 -Sublet 60952 -Sublets 65452 -Sublimated 62762 -Sublimation 62762 -Sublime 56170 -Subliminal 57876 -Subluxation 65170 -Submachine 64657 -Submarine 54540 -Submariner 64905 -Submarines 59491 -Submenu 63991 -Submerged 62331 -Submersible 60000 -Submision 65452 -Submission 44188 -Submissions 47698 -Submissive 63991 -Submit 36194 -Submitcancel 60238 -Submited 62469 -Submits 61584 -Submittal 59774 -Submitted 42244 -Submitter 54749 -Submitters 62613 -Submitting 53662 -Submodel 64201 -Subnav 62917 -Subnet 57482 -Subordinate 61584 -Subordinated 61699 -Subordination 64657 -Suboxone 60856 -Subpart 55877 -Subpoena 63245 -Subpoenaed 61699 -Subpoenas 65452 -Subprime 56756 -Subquestion 65170 -Subramaniam 61152 -Subramanian 62762 -Subregion 64657 -Subregional 64905 -Subregions 64657 -Subrogation 64201 -Subs 52546 -Subsamples 65452 -Subscibe 62762 -Subscribe 33541 -Subscribed 42273 -Subscriber 46131 -Subscriber's 56899 -Subscribers 48897 -Subscribes 61584 -Subscribing 46757 -Subscript 64423 -Subscription 41645 -Subscriptions 38564 -SubscriptionsSites 63991 -Subsea 59702 -Subsection 56862 -Subsections 61818 -Subsector 63991 -Subsectors 63077 -Subsequent 51835 -Subsequently 57696 -Subseries 63245 -Subset 60670 -Subsets 63601 -Subsidence 64657 -Subsidiaries 55657 -Subsidiary 55060 -Subsidies 58745 -Subsidized 63419 -Subsidy 57566 -Subsistence 62917 -Subsite 59292 -Subspace 64657 -Subspecialties 62469 -Subspecialty 65170 -Subst 62613 -Substance 34686 -Substances 52387 -Substandard 62917 -Substantial 55992 -Substantially 64201 -Substantive 58113 -Substation 59292 -Substitute 53865 -Substituted 57970 -Substitutes 58523 -Substituting 55849 -Substitution 55963 -Substitutions 59101 -Substrate 54946 -Substrates 58212 -Substring 64201 -Substructure 64201 -Subsurface 59923 -Subsystem 58919 -Subsystems 63792 -Subterranean 56585 -Subtest 63245 -Subtitle 50654 -Subtitled 61362 -Subtitles 49926 -Subtitrari 60670 -Subtitulado 63792 -Subtle 58365 -Subtlety 63419 -Subtotal 54622 -Subtotals 65452 -Subtract 60000 -Subtracting 64657 -Subtraction 61472 -Subtype 62469 -Subtypes 63991 -Subtítulos 60078 -Subunit 60238 -Subunits 65170 -Suburb 54151 -Suburban 51000 -Suburbia 61362 -Suburbs 49097 -Subversion 53331 -Subversive 59923 -Subway 51078 -Subways 62917 -Subwoofer 54499 -Subwoofers 53081 -Suc 64201 -Succeed 57358 -Succeeded 59039 -Succeeding 61256 -Success 44034 -SuccessCollege 64905 -Successes 59292 -Successful 46157 -Successfully 53109 -Succession 56420 -Successive 59923 -Successor 61584 -Successors 65452 -Succinate 63792 -Succubus 65170 -Succulent 65170 -Succulents 63601 -Succumb 63419 -Succumbs 61818 -Such 41929 -Suche 55474 -Suchen 60238 -Suchet 62469 -Suck 52584 -Sucker 54770 -Suckers 62196 -Sucking 57046 -Sucks 52899 -Sucre 61699 -Sucrose 62331 -Suction 56485 -Sud 56687 -Suda 63077 -Sudafed 63792 -Sudamericana 61818 -Sudan 45645 -Sudan's 61584 -Sudanese 57122 -Sudbury 51680 -Sudden 53762 -Suddenly 53899 -Sudha 63792 -Sudhir 60952 -Sudo 65452 -Sudoku 50476 -Suds 65452 -Sudsonbleeker 63991 -Sue 46423 -Sue's 58802 -Sued 59101 -Suede 52327 -Suelo 64201 -Suen 64657 -Suenos 65170 -Sues 56791 -Sueur 65170 -Suey 62613 -Suez 60670 -SueÃos 57482 -Suffer 56652 -Suffered 64201 -Sufferers 62469 -Suffering 56080 -Suffern 65452 -Suffers 61152 -Suffice 60000 -Sufficiency 62613 -Sufficient 57653 -Suffield 63991 -Suffix 60405 -Suffixes 62331 -Suffolk 48296 -Sufi 56827 -Sufism 62613 -Sufjan 58470 -Suga 61362 -Sugababes 58417 -Sugandha 64201 -Sugano 65452 -Sugar 45241 -SugarCRM 60321 -SugarLoving 60580 -SugarScape 60405 -Sugarbush 63792 -Sugarcane 61472 -Sugarcubes 64657 -Sugarfree 63077 -Sugarland 58417 -Sugarloaf 62469 -Sugarman 62762 -Sugars 56170 -Sugarvine 62469 -Sugawara 64905 -Sugden 64201 -Suge 61584 -Sugeest 53729 -Suggest 44800 -Suggested 46862 -Suggesting 65452 -Suggestion 49388 -Suggestions 43933 -Suggestive 63419 -Suggests 56756 -Suggs 62613 -Sughd 61152 -Sugimoto 61818 -Sugiura 64905 -Sugiyama 63419 -Sugoi 63419 -Suh 61362 -Suhail 61699 -Suharto 65452 -Suhel 64657 -Sui 57524 -Suicidal 58313 -Suicide 49376 -Suicides 60321 -Suid 61699 -Suikoden 63792 -Suing 61940 -Suisse 54399 -Suisun 59774 -Suit 48731 -Suitability 60078 -Suitable 50150 -Suitably 63419 -Suitcase 58919 -Suite 40357 -Suited 62066 -Suites 44813 -Suiting 63077 -Suitland 65170 -Suits 50220 -Suivi 62613 -Sujal 63077 -Sujata 65170 -Suk 60856 -Sukhothai 63601 -Sukhumi 64905 -Sukhumvit 58979 -Sukhwinder 65452 -Suki 62066 -Sukoshi 60952 -Sukuk 60405 -Sul 58365 -Sula 62469 -Sulaiman 62469 -Sulawesi 60405 -Sulcus 65170 -Suleiman 64905 -Sulekha 56388 -Sulfate 56899 -Sulfide 62613 -Sulfite 64905 -Sulfites 62613 -Sulfolobus 59292 -Sulfur 54857 -Sulfuric 62331 -Sulindac 63077 -Sulit 56262 -Sullivan 47133 -Sullivan's 57609 -Sully 61699 -Sulphate 60952 -Sulphur 55274 -Sulphuric 63601 -Sultan 54023 -Sultan's 63601 -Sultana 62613 -Sultanate 63419 -Sultans 62066 -Sulton 62917 -Sultry 64905 -Sulu 61152 -Sulzberger 64657 -Sulzer 60321 -Sum 50991 -Suma 63601 -Sumac 65452 -Suman 59630 -Sumario 61940 -Sumatra 57084 -Sumatran 62917 -Sumdex 64423 -Sumerian 59292 -Sumi 63077 -Sumida 63601 -Sumit 65452 -Sumitomo 58979 -Sumitted 64423 -Summa 61362 -Summaries 48786 -Summarize 60952 -Summarized 62196 -Summarizer 64201 -Summarizes 65452 -Summarizing 63601 -Summary 36538 -SummaryGirton 64905 -SummaryPlus 51731 -Summarys 61818 -Summation 65452 -Summative 65452 -Summer 39900 -Summer's 57524 -Summerfest 61472 -Summerfield 59357 -Summerfields 63792 -Summerhill 65452 -Summerhouse 64905 -Summerland 62762 -Summerlin 61051 -Summers 52256 -Summers's 65452 -Summerside 63419 -Summertime 57084 -Summerville 57970 -Summing 63419 -Summit 44512 -Summit's 64201 -Summits 57278 -Summon 59560 -Summoner 62196 -Summoning 59357 -Summons 58802 -Summum 65452 -Sumner 54902 -Sumo 55631 -SumoTorrent 60762 -Sump 59227 -Sumpter 62613 -Sums 63245 -Sumter 57238 -Sumycin 59702 -Sun 36953 -Sun's 55578 -SunCom 56293 -SunGard 62613 -SunLink 63419 -SunOS 55766 -SunRocket 64905 -SunSmart 64905 -SunTrust 62762 -Sunagakure 65170 -Sunapee 62613 -Sunbeam 56356 -Sunbelt 59164 -Sunbird 57278 -Sunblock 64905 -Sunbridge 63991 -Sunburn 59774 -Sunburnt 64657 -Sunburst 56324 -Sunbury 59923 -Suncatcher 62331 -Suncatchers 63792 -Suncoast 60856 -Suncor 63991 -Suncorp 63419 -Suncrest 62331 -Sunda 61584 -Sundae 62066 -Sundance 53470 -Sundanese 64201 -Sundar 64905 -Sundaram 59774 -Sunday 39111 -Sunday's 53361 -Sundays 51835 -Sunder 61152 -Sunderland 49572 -Sundial 63601 -Sundials 63792 -Sundin 63601 -Sundissential 63991 -Sundown 61051 -Sundowner 62469 -Sundress 64423 -Sundridge 65170 -Sundries 57831 -Sundry 63792 -Sunfire 60078 -Sunfish 64423 -Sunflower 54857 -Sunflowers 60952 -Sung 53952 -Sungai 65452 -Sungkyunkwan 64201 -Sunglass 60952 -Sunglasses 46440 -Sunidhi 62917 -Sunil 55992 -Sunita 58919 -Sunjel 62469 -Sunk 64201 -Sunken 59560 -Sunkist 64905 -Sunland 62066 -Sunless 63245 -Sunlight 55657 -Sunline 63077 -Sunn 61818 -Sunni 56200 -Sunnis 62066 -Sunny 47895 -Sunnybank 62066 -Sunnybrook 61362 -Sunnydale 64657 -Sunnyside 57084 -Sunnyvale 54519 -Sunoco 63792 -Sunol 64201 -Sunpak 65170 -Sunpentown 61051 -Sunray 64201 -Sunridge 64201 -Sunrise 48918 -Sunrises 63991 -Sunroof 60238 -Sunroofs 64905 -Sunroom 64657 -Sunrooms 59630 -Sunroute 65170 -Suns 52927 -Sunscreen 58365 -Sunscreens 65170 -Sunseeker 63419 -Sunset 46517 -Sunsets 57358 -Sunshade 64423 -Sunshine 46367 -Sunsilk 65170 -Sunstein 63991 -Sunstone 62762 -Sunstrider 61152 -Suntan 64905 -Suntrust 65170 -Sununu 65452 -Sunway 63419 -Sunwear 65170 -Sunwell 59164 -Sunwin 64201 -Sunwise 64423 -Suomeksi 60670 -Suomen 63419 -Suomi 46781 -Sup 57741 -Supa 60157 -Supastream 63601 -Supe 64201 -Super 37623 -SuperBowl 64657 -SuperBreak 64201 -SuperCab 64657 -SuperCharge 64423 -SuperComments 64905 -SuperCrew 64423 -SuperDeal 64201 -SuperDeals 58979 -SuperDrive 60856 -SuperFlush 63792 -SuperFundo 58212 -SuperHero 64201 -SuperMemo 63792 -SuperMicro 64905 -SuperMulti 63991 -SuperOffice 62917 -SuperP 63601 -SuperPages 58162 -SuperPoke 57653 -SuperS 64201 -SuperScooters 60856 -SuperSelects 62196 -SuperSite 63792 -SuperSonics 62196 -SuperStar 64423 -SuperStock 55323 -SuperStore 64201 -SuperTalent 60952 -SuperTarget 63792 -SuperTigre 65452 -SuperVision 55684 -Superalloy 64657 -Superalloys 65452 -Superannuation 53695 -Superb 53646 -Superbabes 63601 -Superbad 63245 -Superbike 57653 -Superbikes 62331 -Superbowl 55526 -Superbreak 59702 -Supercar 58979 -Supercars 59848 -Supercenter 60952 -Supercharged 57785 -Supercharger 58212 -Superclocked 65452 -Supercomputer 64201 -Supercomputers 62917 -Supercomputing 59227 -Superconducting 58802 -Superconductive 65452 -Superconductivity 58632 -Superconductor 57876 -Superconductors 63419 -Supercross 58860 -Supercuts 64905 -Superdex 65170 -Superdome 63601 -Superdrug 63792 -Superdry 63601 -Superfamily 63991 -Superfan 64657 -Superfeet 61152 -Superficial 58162 -Superfine 64423 -Superfly 62469 -Superfood 62469 -Superfoods 63077 -Superfund 60492 -Supergirl 61584 -Supergrass 63419 -Supergroup 63601 -Superhawks 65452 -Superhero 54283 -Superheroes 57199 -Superhighway 65452 -Superhuman 58745 -Superhunks 63792 -Superieure 64905 -Superimposed 63601 -Superintendent 50292 -Superintendent's 60670 -Superintendents 61051 -Superior 46751 -SuperiorPics 58919 -Superiore 58802 -Superiority 61699 -Superlatives 65170 -Superlift 65170 -Superliga 64423 -Superman 49405 -Superman's 61940 -Supermarine 65452 -Supermarket 53182 -Supermarkets 54643 -Supermicro 57009 -Supermodel 58417 -Supermodels 59560 -Supermoto 60000 -Supernanny 59292 -Supernatant 64657 -Supernatants 61940 -Supernatural 52085 -Supernova 56080 -Superoxide 62066 -Superpages 53899 -Superpower 61584 -Superscript 62917 -Superseded 55448 -Superson 64905 -Supersonic 58113 -Supersonics 63077 -Supersport 61472 -Superstar 52472 -Superstars 56293 -Superstition 60492 -Superstitions 60405 -Superstore 53095 -Supertaster 57482 -Supertooth 63792 -Supertramp 59357 -Supervise 61584 -Supervised 57876 -Supervises 61699 -Supervising 58417 -Supervision 52521 -Supervisor 47997 -Supervisor's 63077 -Supervisors 51368 -Supervisory 53712 -Superwoman 61818 -Superyacht 62066 -Superzoom 64657 -Supima 64657 -Supine 64657 -Supls 64201 -Suporte 62469 -Supp 60000 -Supper 55684 -Suppers 65170 -Suppl 53066 -Supple 64905 -Supplement 47895 -Supplemental 50774 -Supplementary 51238 -Supplementation 60580 -Supplementing 63419 -Supplements 46790 -Supplied 53533 -Supplier 47021 -Supplier's 54380 -Suppliers 44672 -Supplies 38285 -Supply 41620 -SupplyFrame 63077 -Supplying 59774 -Support 34062 -Supportability 65452 -Supported 47259 -Supporter 53361 -Supporters 49590 -Supporti 64905 -Supporting 45477 -Supportive 55877 -Supporto 61584 -Supports 47603 -Suppose 49972 -Supposed 59702 -Supposedly 60405 -Supposing 64423 -Suppositories 63792 -Suppository 65452 -Suppress 62917 -Suppressant 65452 -Suppressed 62196 -Suppression 53779 -Suppressive 64423 -Suppressor 58979 -Suppressors 60492 -Supra 54226 -Supramolecular 63077 -Supremacy 58688 -Supreme 42545 -Supremes 61152 -Supremus 63601 -Suprise 64423 -Supriyo 60580 -Supt 56200 -Supérieure 64201 -Sur 51248 -Sur's 62469 -Sura 64201 -Surabaya 59848 -Surah 61584 -Suraj 62196 -Suramar 60670 -Surat 54133 -Surber 65170 -Surbiton 61818 -Surcharge 57876 -Sure 48736 -SurePOS 63601 -Surefire 61472 -Surely 53301 -Surender 64905 -Suresh 57566 -Surety 58365 -Surf 45334 -Surf's 59923 -Surface 44939 -Surfaces 53934 -Surfacing 61940 -Surfactant 60580 -Surfactants 63991 -Surfboard 58802 -Surfboards 59039 -Surfer 54902 -Surfer's 64657 -Surfers 52886 -Surfing 49886 -Surfline 63245 -Surfs 64905 -Surfside 60856 -Surg 46563 -Surge 50454 -SurgeArrest 63991 -Surgeon 51560 -Surgeons 47875 -Surgeries 57399 -Surgery 41961 -Surges 63601 -Surgical 47133 -Surgically 63601 -Surging 64201 -Suri 54879 -Suri's 64657 -Surigao 65170 -Surin 63792 -Surinam 60762 -Suriname 47064 -Surinder 64423 -Surly 61051 -Surname 48548 -Surnames 55398 -Surpass 61818 -Surpasses 64657 -Surpassing 64657 -Surplus 50791 -Surprise 50053 -Surprised 59164 -Surprises 58313 -Surprising 58365 -Surprisingly 58860 -Surreal 58523 -Surrealism 60952 -Surrealist 59164 -Surrender 56262 -Surrey 46982 -Surrogacy 63601 -Surrogate 59292 -Surrogates 63245 -Surround 51590 -Surrounded 58017 -Surrounding 51303 -Surroundings 59848 -Surrounds 58688 -Surry 57160 -Surv 64423 -Surveillance 49464 -Survey 41630 -Survey's 64905 -Surveyed 62331 -Surveying 53565 -Surveyor 52982 -Surveyors 55107 -Surveys 45537 -Survival 45838 -Survive 53796 -Survived 55348 -Survives 61362 -Survivin 64905 -Surviving 52996 -Survivor 49146 -Survivor's 64905 -Survivors 54226 -Survivorship 63601 -Surya 58162 -Sus 62196 -Susan 42982 -Susan's 59702 -Susana 58688 -Susanah 64905 -Susanna 54399 -Susannah 56262 -Susanne 55766 -Susceptibility 56972 -Susceptible 63601 -Suscribirse 62066 -Suse 56935 -Suse's 62469 -Sushi 49860 -Sushil 62917 -Sushmita 62331 -Susi 62066 -Susie 54059 -Susie's 62469 -Susman 64657 -Suspect 52765 -Suspected 55992 -Suspects 56618 -Suspend 58262 -Suspended 52484 -Suspender 63792 -Suspenders 59923 -Suspendisse 63991 -Suspends 60321 -Suspense 53501 -Suspensii 64657 -Suspension 47130 -Suspensions 56231 -Suspicion 62066 -Suspicious 57566 -Susquehanna 57923 -Sussex 46973 -Susskind 65452 -Sussman 61362 -Sustain 61940 -Sustainability 48600 -Sustainable 45723 -Sustainablog 65170 -Sustained 56420 -Sustaining 58017 -Sustainment 62331 -Susu 63991 -Susumu 60762 -Susur 64423 -Susy 63419 -Sutcliffe 60952 -Suteki 64657 -Suter 63792 -Suthep 64423 -Sutherland 52085 -Sutherlin 60405 -Sutra 57923 -Sutter 55060 -Sutter's 65452 -Sutton 48980 -Suttons 63991 -Suture 62762 -Suu 60856 -Suunto 57696 -Suv 62613 -Suva 61818 -Suvari 60952 -Suvarnabhumi 62331 -Suwanee 64201 -Suwannee 59774 -Sux 64905 -Suysel 62469 -Suz 65452 -Suzaku 62917 -Suzan 61256 -Suzanna 60856 -Suzanne 49764 -Suzanne's 64201 -Suze 60321 -Suzette 61051 -Suzhou 59357 -Suzi 57440 -SuziQ 64905 -Suzie 56935 -Suzuka 60670 -Suzuki 45773 -Suzuki's 63792 -Suzumiya 61256 -Suzy 52661 -Suzys 65452 -Suárez 64201 -Sv 63991 -Svalbard 50742 -Svan 64201 -Svante 65170 -Svar 65170 -Svc 55448 -Svcs 59630 -Svein 65452 -Sven 54439 -Svensk 61818 -Svenska 44929 -Svensson 60670 -Sverige 52411 -Sveriges 62066 -Svetlana 56899 -Svizzera 60670 -Svobodnaia 65452 -Svs 63991 -Sw 57238 -SwRI 64423 -Swab 61472 -Swabs 63991 -Swaddle 65170 -Swaffham 60856 -Swafford 63601 -Swag 52447 -Swagga 65452 -Swagger 57876 -Swahili 55060 -Swain 57696 -Swaine 64905 -Swakopmund 61584 -Swale 60405 -Swallow 55578 -Swallow's 61699 -Swallowing 59560 -Swallows 60492 -Swami 56170 -Swaminathan 62762 -Swamp 50791 -Swamper 64905 -Swampland 50991 -Swamps 57831 -Swampscott 62613 -Swamy 61472 -Swan 48731 -Swan's 61699 -Swank 56585 -Swanley 63792 -Swann 57876 -Swans 57741 -Swansboro 65452 -Swansea 49240 -Swansea's 63601 -Swanson 54835 -Swanston 65170 -Swanton 63077 -Swap 48165 -Swapper 64201 -Swappers 64657 -Swapping 56721 -Swaps 56756 -Swardson 64201 -Swarm 57278 -Swarovski 52739 -Swart 64657 -Swartberg 64905 -Swarthmore 63077 -Swarthout 63792 -Swartz 59292 -Swastika 63792 -Swat 59357 -Swatch 55060 -Swatches 63601 -Swath 64423 -Swati 62066 -Sway 54560 -Swayze 59702 -Swazi 65452 -Swaziland 46824 -Swear 59164 -Swearing 62762 -Swearingen 63601 -Sweat 52996 -Sweater 51670 -Sweaters 51660 -Sweating 59227 -Sweatpants 63601 -Sweats 60856 -Sweatshirt 50492 -Sweatshirts 52725 -Sweatshop 63601 -Sweaty 62762 -Swede 57741 -Sweden 41612 -Sweden's 58113 -Swedes 60238 -Swedespeed 61699 -Swedish 44302 -Sweeney 53052 -Sweeney's 61584 -Sweeny 62469 -Sweep 54727 -Sweeper 57653 -Sweepers 61940 -Sweeping 58417 -Sweeps 57278 -Sweepstakes 49758 -Sweet 43086 -Sweet's 59560 -Sweetened 64423 -Sweeteners 62613 -Sweeter 64423 -Sweetest 56585 -Sweetheart 55711 -Sweethearts 62613 -Sweetie 60157 -Sweetin 64423 -Sweetnam 62613 -Sweetness 63601 -Sweets 52351 -Sweetwater 55552 -Sweety 63077 -Swell 56862 -Swelling 56687 -Sweltering 63991 -Swenson 60856 -Swept 61051 -Swerve 63245 -Swett 65452 -Swf 63419 -Swick 63991 -Swicki 63991 -Swiffer 65452 -Swift 48791 -Swift's 62196 -Swifts 61256 -Swill 65452 -Swim 49119 -Swimm 64905 -Swimmer 60670 -Swimmers 59164 -Swimming 44670 -Swimsuit 52256 -Swimsuits 50492 -Swimwear 51122 -Swinburne 60762 -Swindle 65170 -Swindlers 64657 -Swindon 50220 -Swine 57923 -Swing 47903 -Swinger 55178 -Swingers 53226 -Swinging 55821 -Swings 55250 -Swingtown 63792 -Swink 63991 -Swinson 63419 -Swinton 60238 -Swipe 63419 -Swirl 55849 -Swirling 63792 -Swirls 62917 -Swirlywurly 61472 -SwisSQL 64201 -Swish 61584 -Swisher 58313 -Swiss 44060 -SwissProt 64423 -Swissair 62613 -Swisscom 62331 -Swissotel 60952 -Swistock 65170 -Switch 42855 -Switchable 62762 -Switchback 64905 -Switchblade 62196 -Switchboard 56935 -Switched 52399 -Switcher 58979 -Switchers 61256 -Switches 48964 -Switchfoot 62469 -Switchgear 64423 -Switching 51175 -Switchover 61940 -Switchplate 61362 -Switchplates 65452 -Switzer 61818 -Switzerland 40870 -Switzerland's 61051 -Swivel 52712 -Swivels 61584 -Swix 63601 -Swizz 61472 -Swollen 56110 -Swooning 58523 -Swoosh 63991 -Swope 65452 -Sword 48964 -Swordfish 60000 -Swords 53052 -Swordsman 63792 -Sworn 60670 -Swot 63419 -Swyddi 62762 -Sx 62613 -SxS 65170 -Sy 60157 -Sybase 53746 -Sybex 65170 -Sybian 64423 -Sybil 58212 -Sybille 65452 -Sybrand 64657 -Sycamore 55250 -Sycamores 58802 -Syd 57524 -Sydenham 59039 -Sydnee 65170 -Sydney 41729 -Sydney's 55877 -Syed 56140 -Sygate 59702 -Sykes 56452 -Sykesville 60000 -Sylantro 65452 -Sylar 62613 -Syllabi 65452 -Syllabus 54479 -Sylmar 61699 -Sylvain 58162 -Sylvan 54643 -Sylvanas 62613 -Sylvania 57399 -Sylvanian 64423 -Sylvanus 63601 -Sylvester 54519 -Sylvia 50791 -Sylvia's 65452 -Sylvian 62762 -Sylvie 58745 -Sym 61940 -SymAccount 61472 -Syma 65170 -Symantec 45773 -Symantec's 63601 -Symbaloo 53952 -Symbian 47752 -SymbianOS 62917 -SymbianOne 64657 -Symbianize 64657 -Symbiosis 62613 -Symbiotics 64905 -Symbol 47047 -Symbolic 55500 -Symbolism 54770 -Symbols 48751 -Syme 64657 -Symeonidis 63245 -Symmetric 59164 -Symmetrical 63601 -Symmetricom 65452 -Symmetries 64201 -Symmetrix 64905 -Symmetry 54341 -Symmons 63792 -Symon 62331 -Symonds 59491 -Symone 60762 -Symons 60321 -Symp 58417 -Sympathetic 60952 -Sympathy 53729 -Sympatico 57440 -Symphonia 63245 -Symphonic 55060 -Symphonie 65452 -Symphonies 58365 -Symphony 47710 -Symposia 56551 -Symposium 46220 -Symptom 52423 -Symptomatic 60580 -Symptoms 47318 -Symptons 65170 -Symtoms 64423 -Symyx 64423 -Syn 63419 -Synagogue 59630 -Synagogues 60157 -Synapse 58523 -Synaptic 58017 -Synaptosomes 64201 -Synaral 58065 -Sync 51415 -SyncEvolution 64201 -SyncMaster 57923 -Synch 59039 -Synchro 61256 -Synchronicity 64201 -Synchronization 54245 -Synchronize 59491 -Synchronized 60238 -Synchronizer 62066 -Synchronizing 62066 -Synchronous 56485 -Synchrony 64657 -Synchrotron 58113 -Synclavier 64905 -Syndicat 65452 -Syndicate 47307 -Syndicated 57318 -Syndication 47214 -Syndrome 48350 -Syndromes 61362 -Syne 63792 -Synechocystis 65452 -Synergies 64201 -Synergistic 59424 -Synergy 48482 -Syngas 64657 -Synge 64657 -Syngenta 61256 -Synod 57482 -Synology 64905 -Synonym 53423 -Synonyms 53970 -Synonymy 64905 -Synopses 58745 -Synopsis 49841 -Synopsys 59164 -Synoptic 63991 -Synovectomy 64657 -Synovial 62469 -Synplify 65452 -Syntace 64905 -Syntactic 63792 -Syntax 51963 -Synth 54879 -Synthase 60856 -Syntheses 61699 -Synthesis 47518 -Synthesized 63419 -Synthesizer 59101 -Synthesizers 61584 -Synthetase 65170 -Synthetic 49547 -Synthpop 65452 -Synthroid 56899 -Synths 62331 -Synthèse 63991 -Syntrax 61699 -Syntype 55631 -Syosset 63419 -Syphilis 61256 -Syphon 58212 -Syracuse 47619 -Syracuse's 64905 -Syrah 56721 -Syren 63991 -Syria 46186 -Syria's 64201 -Syriac 59630 -Syrian 50220 -Syriana 65452 -Syrians 60762 -Syringe 58212 -Syringes 62917 -Syringomyelia 63991 -Syrup 54459 -Syrups 62066 -Sys 50766 -SysAdmin 63792 -SysExpert 64423 -SysOpt 64657 -Sysadmin 62469 -Syslog 65170 -Sysmex 65170 -Sysop 60762 -Sysquake 59702 -Syst 55578 -System 35029 -System's 57566 -Systematic 52913 -Systematics 62196 -Systemax 61472 -Systeme 64905 -Systemes 63792 -Systemic 53988 -Systems 36077 -Systemwide 62762 -Systolic 59101 -Systran 63991 -Système 54188 -Systèmes 64423 -Syzygium 64905 -Syzygy 65452 -Sz 57122 -Szabo 60952 -Szczecin 65452 -Sze 64905 -Szechuan 61584 -Szeged 64423 -Szram 64657 -Szukaj 60856 -Szymanski 64423 -SÃO 65452 -Sámegiella 62917 -Sánchez 60078 -Sándor 63419 -São 50277 -Säkerhetsmeddelanden 63601 -Sébastien 60670 -Sécurité 58162 -Séquence 64201 -Sérgio 63245 -Série 61699 -Sérénité 65452 -Séverine 64423 -Sê 65452 -Síndrome 62331 -Síntesis 64657 -Só 65170 -Sólo 61362 -Sök 62613 -Sönke 65452 -Søg 60762 -Søk 63601 -Søren 59101 -Sørensen 63601 -Südamerika 63991 -Süleyman 63991 -T 33801 -T's 54479 -TA 48046 -TAA 61051 -TAB 52832 -TABCRAWLER 65452 -TABLE 42654 -TABLES 55423 -TABLET 63419 -TABLETS 59227 -TABLEWARE 64657 -TABLOID 63601 -TABS 58262 -TAC 54706 -TACH 64423 -TACK 62917 -TACKLE 63077 -TACO 60238 -TACOMA 61584 -TACTICAL 62331 -TACTICS 65452 -TACs 65170 -TAD 58470 -TADA 65452 -TADS 63077 -TAE 62469 -TAF 62196 -TAFE 51630 -TAFF 63991 -TAG 52484 -TAGS 54879 -TAHOE 63245 -TAI 62613 -TAIL 59424 -TAILORED 63419 -TAIPEI 62469 -TAIR 62917 -TAIWAN 57524 -TAJ 64423 -TAJIKISTAN 60952 -TAK 62917 -TAKAHASHI 64657 -TAKE 50607 -TAKEAWAY 65452 -TAKEDA 64657 -TAKEN 55684 -TAKES 57876 -TAKING 57046 -TAKKLE 58365 -TAKS 61584 -TAL 61584 -TALBOT 65452 -TALE 61818 -TALENT 59101 -TALES 59774 -TALK 52363 -TALKING 58365 -TALKS 58365 -TALL 60405 -TALLAHASSEE 65452 -TAM 56485 -TAMARA 64905 -TAMBO 65170 -TAMI 62331 -TAMIL 57831 -TAMPA 59560 -TAMPINES 63245 -TAMU 63077 -TAN 55992 -TANAKA 63245 -TANDARDS 65170 -TANDEM 65452 -TANF 56050 -TANG 65452 -TANGO 63601 -TANK 56618 -TANKS 62917 -TANNING 65170 -TANTO 63991 -TANYA 65170 -TANZANIA 61362 -TAO 60238 -TAP 53988 -TAPE 55202 -TAPES 61818 -TAPPED 63245 -TAPPI 63991 -TAPS 61940 -TAR 58523 -TARA 59227 -TARANAKI 61256 -TARARUA 61818 -TARATATA 64657 -TARDIS 64905 -TAREE 54664 -TARGET 55849 -TARGETED 64201 -TARGETS 61584 -TARGUS 64423 -TARIFF 63245 -TARP 63245 -TART 64423 -TARTLETS 65452 -TAS 52673 -TASA 62613 -TASAmed 60492 -TASCAM 63245 -TASER 60492 -TASK 54264 -TASKS 60952 -TASMAN 61152 -TASS 61472 -TASTE 60856 -TASconsulting 62917 -TAT 58979 -TATA 57122 -TATE 60078 -TATES 65452 -TATTOO 60762 -TAUPO 61699 -TAURANGA 61256 -TAVERN 62917 -TAVERNS 65170 -TAVIS 63077 -TAW 65452 -TAX 49739 -TAXABLE 65170 -TAXATION 62762 -TAXES 56518 -TAXI 61699 -TAXPAYER 64905 -TAY 61584 -TAYLOR 54226 -TAZ 62613 -TAs 58979 -TB 47827 -TBA 50758 -TBAB 65170 -TBARS 61362 -TBB 61818 -TBC 56485 -TBD 53211 -TBE 59774 -TBF 64905 -TBH 64905 -TBI 57653 -TBL 65170 -TBM 63419 -TBN 63991 -TBNSW 64201 -TBO 63792 -TBP 63077 -TBR 59292 -TBS 56170 -TBST 64201 -TBT 64905 -TBogg 64905 -TBool 64905 -TC 47272 -TCA 55474 -TCADA 63792 -TCB 61152 -TCC 53779 -TCD 60762 -TCDD 60492 -TCE 61051 -TCEQ 62469 -TCF 62917 -TCG 54924 -TCH 61818 -TCI 58745 -TCL 58313 -TCLs 63419 -TCM 53712 -TCM's 63077 -TCNQ 61940 -TCO 56050 -TCP 51284 -TCR 54096 -TCS 55604 -TCSP 63792 -TCT 57046 -TCTs 64905 -TCU 57199 -TCV 62917 -TCW 64657 -TCWG 64201 -TCs 65452 -TD 47752 -TD's 61940 -TDA 60405 -TDAP 62762 -TDB 62762 -TDBWE 63991 -TDC 58802 -TDCi 61699 -TDD 57653 -TDF 63077 -TDHF 62917 -TDI 51463 -TDK 56899 -TDL 60762 -TDM 53762 -TDMA 60762 -TDN 61256 -TDP 58802 -TDR 58523 -TDRS 65170 -TDRSS 63991 -TDS 56862 -TDW 62331 -TDWI 64905 -TDi 58065 -TDs 57566 -TE 48667 -TEA 54096 -TEAC 62066 -TEACH 60670 -TEACHER 56110 -TEACHERS 58212 -TEACHING 56687 -TEAL 63991 -TEAM 48933 -TEAMBUILDING 61818 -TEAMS 56618 -TEAMtalk 64423 -TEARS 63077 -TEASE 62917 -TEC 56827 -TECH 50678 -TECHNICAL 50321 -TECHNICIAN 58065 -TECHNICIANS 64423 -TECHNIQUE 60157 -TECHNIQUES 57831 -TECHNO 62331 -TECHNOLOGICAL 60952 -TECHNOLOGIE 62917 -TECHNOLOGIES 54114 -TECHNOLOGY 47577 -TECHONWEB 65170 -TECUMSEH 58113 -TED 54419 -TEDDY 61472 -TEDL 64657 -TEDTalks 62762 -TEE 55821 -TEEN 56050 -TEENAGE 63245 -TEENS 58365 -TEES 60321 -TEETH 63601 -TEF 64905 -TEFL 56972 -TEG 64201 -TEH 61584 -TEI 60580 -TEIN 65452 -TEINT 61472 -TEK 63991 -TEL 55398 -TELCO 62917 -TELE 64423 -TELECOM 59101 -TELECOMMUNICATIONS 60157 -TELEGRAPH 63077 -TELEPHONE 55060 -TELEPHONY 59101 -TELESTIAL 61152 -TELESYNC 62613 -TELEVISION 53762 -TELL 52411 -TELLING 64905 -TELLS 64657 -TELUGU 63991 -TELUS 60580 -TEM 53454 -TEMA 63419 -TEMG 64905 -TEMP 57741 -TEMPE 65170 -TEMPERATURE 53988 -TEMPERATURES 64201 -TEMPLATE 62196 -TEMPLATES 60405 -TEMPLE 59491 -TEMPLETON 65452 -TEMPO 60238 -TEMPORAL 64657 -TEMPORARY 58162 -TEMPS 64423 -TEMS 63991 -TEN 54519 -TENCompetence 64657 -TENDER 58632 -TENDERS 62066 -TENERIFE 57084 -TENN 57238 -TENNESSEE 56899 -TENNIS 55631 -TENNXX 62613 -TENS 58417 -TENSION 63077 -TENT 63792 -TENTH 63792 -TENTS 63419 -TEP 61818 -TEPC 63792 -TEQ 64657 -TEQUILA 61256 -TER 56652 -TERA 63245 -TERENCE 65452 -TERESA 61472 -TERI 65452 -TERM 54151 -TERMINAL 56518 -TERMINATE 64201 -TERMINATION 62066 -TERMINATOR 62331 -TERMS 46379 -TERRA 61818 -TERRACE 55793 -TERRE 64905 -TERREMARK 63245 -TERRIBLE 64657 -TERRIER 63245 -TERRITORIAL 51783 -TERRITORIES 62331 -TERRITORY 58523 -TERROR 61256 -TERRORISM 63245 -TERRY 57831 -TERT 62762 -TERTIARY 60405 -TES 57440 -TESL 64423 -TESOL 58523 -TESS 62196 -TEST 49602 -TESTAMENT 63792 -TESTED 61152 -TESTER 63245 -TESTERS 64201 -TESTIMONIAL 62917 -TESTIMONIALS 55684 -TESTIMONY 63419 -TESTING 53211 -TESTOSTERONE 65452 -TESTS 56972 -TEU 65452 -TEX 56862 -TEXANS 63991 -TEXAS 51415 -TEXT 47410 -TEXTILE 61362 -TEXTILES 64905 -TEXTS 64201 -TEXTURE 64201 -TEXTURED 65170 -TF 51043 -TFA 62066 -TFB 58860 -TFC 59227 -TFD 56170 -TFET 65170 -TFF 62917 -TFG 64905 -TFH 61818 -TFI 61362 -TFK 64423 -TFL 63601 -TFM 60321 -TFN 61362 -TFP 63419 -TFPI 65170 -TFR 63601 -TFRs 65452 -TFS 57785 -TFSI 60157 -TFT 49086 -TFTP 60405 -TFU 63601 -TFWM 62917 -TFX 62762 -TG 49620 -TGA 57199 -TGC 62331 -TGCS 65170 -TGF 55526 -TGFBI 62331 -TGG 59491 -TGI 58470 -TGIF 60670 -TGM 64657 -TGN 62331 -TGP 57609 -TGR 63419 -TGS 49821 -TGT 59702 -TGV 62762 -TH 50150 -THA 55849 -THAI 61051 -THAILAND 55398 -THAMES 65452 -THAN 51122 -THANK 50991 -THANKS 51783 -THANKSGIVING 64657 -THANX 60492 -THAT 44697 -THAT'S 57831 -THAT's 65452 -THATS 59702 -THB 56356 -THC 55906 -THD 62613 -THE 32123 -THEATER 55906 -THEATERS 63792 -THEATRE 56687 -THEATRES 65170 -THEE 64423 -THEFT 58017 -THEIR 50591 -THEM 52085 -THEMATIC 60670 -THEME 57278 -THEMED 63077 -THEMES 58577 -THEMIS 64657 -THEN 51920 -THENCE 62196 -THEODORE 61472 -THEOLOGY 63601 -THEOREM 57399 -THEORETICAL 59630 -THEORY 54419 -THER 64423 -THERAPEUTIC 61584 -THERAPIST 61699 -THERAPY 56452 -THERE 51122 -THERE'S 60670 -THEREFOR 63601 -THEREFORE 60321 -THEREOF 59039 -THERESA 63077 -THERMAL 57160 -THERMALTAKE 64905 -THERMOPLASTIC 63601 -THESE 50469 -THESIS 64657 -THEY 49707 -THEY'RE 63419 -THF 57238 -THG 63991 -THI 64423 -THICK 60580 -THICKENING 65170 -THICKNESS 62331 -THICS 65452 -THIF 59424 -THIGH 62917 -THIMMAJIPETA 61940 -THIN 60000 -THING 55084 -THINGS 52661 -THINK 52818 -THINKING 60000 -THINKPAD 62331 -THIRD 49212 -THIRTEEN 63077 -THIS 39468 -THISDAY 64905 -THM 61818 -THO 64905 -THOMAS 50101 -THOMPSON 57609 -THOMSON 60762 -THOR 63991 -THORAC 58212 -THOROUGHBRED 64657 -THOS 64905 -THOSE 54685 -THOUGH 61940 -THOUGHT 58065 -THOUGHTS 60952 -THOUSAND 60580 -THOUSANDS 59101 -THP 59702 -THQ 54439 -THR 58632 -THREAD 54519 -THREADED 63245 -THREADS 59424 -THREAT 60405 -THREATS 64423 -THREE 50446 -THRESHOLD 64201 -THRIFT 64201 -THRILL 64423 -THROUGH 50394 -THROUGHOUT 62613 -THROW 62066 -THRU 56518 -THS 58262 -THU 57566 -THUG 64423 -THUMB 63991 -THUMBS 65452 -THUNDER 61699 -THUR 63991 -THURS 65170 -THURSDAY 51825 -THX 56420 -THY 62917 -THe 58113 -THiS 65452 -THis 61256 -THz 56140 -TI 46261 -TI's 57741 -TIA 56756 -TIAA 62762 -TIAA's 62917 -TIB 64423 -TIBCO 61472 -TIBETAN 65452 -TIC 56050 -TICARET 63991 -TICK 59164 -TICKET 56652 -TICKETS 51284 -TICKOVER 64905 -TID 60952 -TIDBITS 64423 -TIDE 63245 -TIDWELL 63419 -TIE 57876 -TIER 64905 -TIES 60856 -TIF 57566 -TIFF 53796 -TIFFANY 59848 -TIG 58688 -TIGA 63077 -TIGER 54770 -TIGERS 63077 -TIGHT 61051 -TIGI 62613 -TIGR 63419 -TIGRE 61362 -TIGblogs 64423 -TIKI 62762 -TIL 58417 -TILE 58212 -TILED 63419 -TILES 64905 -TILL 58860 -TILT 60078 -TIM 54302 -TIMARU 61818 -TIMBALAND 62762 -TIMBER 59774 -TIMBERLAKE 63601 -TIMBERLAND 62613 -TIME 43381 -TIMELINE 63991 -TIMEOUT 63419 -TIMER 60000 -TIMES 49732 -TIMESHARE 64905 -TIMESTAMP 64201 -TIMETABLE 58212 -TIMI 62066 -TIMING 60762 -TIMMAJIPET 63601 -TIMOR 62331 -TIMOTHY 60492 -TIN 57696 -TINA 58979 -TING 65170 -TINKU 63245 -TINT 65170 -TINY 60856 -TION 61051 -TIP 54321 -TIPPERARY 65452 -TIPS 51193 -TIR 63419 -TIRE 56862 -TIRED 64201 -TIRES 57831 -TIS 61256 -TISDALE 62762 -TISSUE 55906 -TISSUES 63792 -TIT 62613 -TITAN 58162 -TITANIC 61584 -TITANIUM 62066 -TITANS 65170 -TITELS 61940 -TITLE 49190 -TITLES 56972 -TITS 59774 -TInt 65170 -TJ 48332 -TJ's 59774 -TJC 63601 -TJS 65170 -TJX 65452 -TJs 65452 -TK 49972 -TKD 64657 -TKE 62196 -TKKG 61051 -TKO 56827 -TL 50164 -TLA 55849 -TLB 62196 -TLC 51303 -TLCS 65170 -TLD 57238 -TLDs 56899 -TLE 60321 -TLM 60952 -TLP 63601 -TLR 59164 -TLRs 63419 -TLS 57440 -TLV 61362 -TM 44606 -TM's 64423 -TMA 60856 -TMAH 65170 -TMAX 63792 -TMB 59774 -TMBG 65452 -TMC 55793 -TMCnet 57566 -TMD 63419 -TMDL 60670 -TMDLs 65452 -TMDS 60580 -TMF 63792 -TMG 61818 -TMI 59560 -TMIN 65452 -TMIweekly 61152 -TMJ 54664 -TMK 58523 -TML 63245 -TMLP 63792 -TMM 63419 -TMN 62762 -TMNT 61051 -TMO 59848 -TMP 57318 -TMPGEnc 64905 -TMR 59774 -TMS 55423 -TMT 59774 -TMV 62469 -TMX 61256 -TMZ 48292 -TMi 65452 -TMs 59227 -TN 42476 -TNA 52778 -TNC 61362 -TND 65452 -TNF 53517 -TNFa 65170 -TNG 62613 -TNI 64201 -TNIV 63601 -TNK 60856 -TNM 61472 -TNMs 65452 -TNN 64201 -TNO 62066 -TNR 63601 -TNS 60762 -TNT 52187 -TNT's 64905 -TO 35035 -TOA 58470 -TOAST 64657 -TOBACCO 61584 -TOBAGO 61362 -TOBY 64657 -TOC 44672 -TOCA 59357 -TOCK 63601 -TOD 59491 -TODAY 44526 -TODAY'S 53423 -TODAY's 52571 -TODAYS 65170 -TODD 57923 -TODDLER 62331 -TODO 56687 -TODOS 63245 -TOE 59357 -TOEFL 55500 -TOEIC 64905 -TOF 58577 -TOFFEE 64657 -TOGETHER 56652 -TOGO 60238 -TOI 62196 -TOILET 58262 -TOKELAU 62469 -TOKYO 58470 -TOLD 59630 -TOLEDO 62196 -TOLERANCE 63077 -TOLL 55500 -TOM 53533 -TOM'S 62196 -TOMATO 61940 -TOMATOES 63601 -TOME 62331 -TOMLAB 64201 -TOMMY 58688 -TOMORROW 58470 -TOMS 63601 -TOMTOM 62331 -TON 57238 -TONE 61472 -TONER 62066 -TONGA 61051 -TONGUE 65170 -TONI 59848 -TONIC 65170 -TONIGHT 57046 -TONIGHT'S 56518 -TONKA 65452 -TONS 59357 -TONY 54664 -TOO 52447 -TOOBEEZ 61256 -TOOK 60856 -TOOL 54188 -TOOLBAR 63077 -TOOLBOX 62196 -TOOLKIT 63601 -TOOLS 49207 -TOOTH 61362 -TOP 40970 -TOPAZ 64423 -TOPIC 53813 -TOPICAL 60670 -TOPICS 49893 -TOPO 61051 -TOPPED 63245 -TOPPS 59848 -TOPS 54560 -TOPWRAP 65170 -TOPlist 58065 -TOR 58632 -TORCH 64201 -TORI 64423 -TORINO 63077 -TORNADO 65170 -TORONTO 55274 -TORQUE 62331 -TORRENT 55684 -TORRENTS 63991 -TORRES 64905 -TORT 61584 -TORTILLA 60078 -TORY 61584 -TOS 50718 -TOSHIBA 56231 -TOT 57831 -TOTAL 45497 -TOTALLY 57318 -TOTALS 55202 -TOTE 59227 -TOTEN 63419 -TOTM 59923 -TOTO 61051 -TOTP 63077 -TOTTENHAM 65452 -TOU 59424 -TOUAREG 60405 -TOUCH 55299 -TOUCHDOWN 65170 -TOUGH 64905 -TOUR 50940 -TOURING 60580 -TOURISM 56050 -TOURIST 61472 -TOURNAMENT 58802 -TOURNAMENTS 60580 -TOURS 52256 -TOV 60856 -TOW 62762 -TOWARD 62469 -TOWARDS 59357 -TOWER 56652 -TOWERS 63601 -TOWING 63991 -TOWN 48928 -TOWNE 62762 -TOWNHOUSE 64657 -TOWNS 62917 -TOWNSEND 64423 -TOWNSHEND 62469 -TOWNSHIP 55552 -TOWNSVILLE 64201 -TOXIC 61362 -TOXICITY 63077 -TOXICS 64905 -TOXIN 64657 -TOXNET 59702 -TOY 54622 -TOYO 64201 -TOYOTA 52832 -TOYS 54792 -TOs 56972 -TP 50514 -TPA 56935 -TPAC 63601 -TPAD 63792 -TPB 53517 -TPC 58417 -TPD 65452 -TPE 59357 -TPF 62762 -TPG 56862 -TPG's 64423 -TPI 63601 -TPL 64905 -TPM 55821 -TPMS 65170 -TPMT 58262 -TPN 62917 -TPO 61051 -TPP 61472 -TPR 60856 -TPS 58860 -TPU 61256 -TPX 60762 -TQ 59702 -TQM 59039 -TQS 62917 -TR 48866 -TRA 62613 -TRAC 63601 -TRACE 58262 -TRACK 52559 -TRACKER 57482 -TRACKING 58262 -TRACKS 57524 -TRACKSIDE 64657 -TRACP 65170 -TRACT 62196 -TRACTION 61152 -TRACTOR 59101 -TRACY 60157 -TRADE 47664 -TRADEMARK 58688 -TRADEMARKS 60580 -TRADER 60405 -TRADERS 62917 -TRADES 64201 -TRADING 53256 -TRADITION 63245 -TRADITIONAL 58860 -TRADITIONS 65452 -TRADUZIDO 63792 -TRAFFIC 52584 -TRAFFICKING 63792 -TRAGEDY 63419 -TRAIL 53813 -TRAILER 53392 -TRAILERS 59101 -TRAILS 63419 -TRAIN 57440 -TRAINEE 65452 -TRAINER 60492 -TRAINERS 61818 -TRAINING 50067 -TRAINS 65170 -TRAKTOR 60952 -TRAN 62613 -TRANCE 63419 -TRANS 60492 -TRANSACTION 59424 -TRANSACTIONS 52303 -TRANSBAY 63245 -TRANSCRIPT 62762 -TRANSCRIPTION 64423 -TRANSCRIPTS 65452 -TRANSDUCER 63792 -TRANSDUCERS 61699 -TRANSFER 54078 -TRANSFERS 61152 -TRANSFORM 63245 -TRANSFORMATION 61584 -TRANSFORMER 62331 -TRANSFORMERS 57524 -TRANSIENT 63245 -TRANSISTOR 61472 -TRANSISTORS 63991 -TRANSIT 58162 -TRANSITION 59101 -TRANSLATION 60321 -TRANSMISSION 54601 -TRANSMISSIONS 63601 -TRANSMITTER 62331 -TRANSMITTING 65170 -TRANSOM 65170 -TRANSPARENCY 65170 -TRANSPARENT 63792 -TRANSPLANT 64423 -TRANSPORT 53485 -TRANSPORTATION 53052 -TRAP 60952 -TRAPATT 60078 -TRASH 60762 -TRASHMARK 58365 -TRAUMATIC 64657 -TRAVAIL 63792 -TRAVEL 47626 -TRAVELERS 62613 -TRAVELING 63792 -TRAVELLER 65170 -TRAVERSE 64905 -TRAVIS 60238 -TRAX 61940 -TRAY 60580 -TRAYS 64201 -TRB 60856 -TRC 59292 -TRD 59039 -TRE 61699 -TREASURE 61699 -TREASURER 56262 -TREASURES 64657 -TREASURY 61051 -TREAT 60157 -TREATED 59702 -TREATING 61472 -TREATMENT 52164 -TREATMENTS 59848 -TREATS 64423 -TREATY 64201 -TREC 64423 -TREE 54360 -TREES 57199 -TREET 64905 -TREK 60670 -TREKKA 63991 -TREND 57970 -TRENDS 55604 -TRENDnet 63991 -TRENT 64201 -TREO 63245 -TRES 65170 -TREVOR 62762 -TRF 65452 -TRG 60405 -TRH 62066 -TRI 58162 -TRIAD 63601 -TRIAL 53316 -TRIALS 59424 -TRIANGLE 61051 -TRIB 64657 -TRIBAL 64905 -TRIBE 63245 -TRIBUNAL 65170 -TRIBUNE 62613 -TRIBUTE 60078 -TRICARE 64905 -TRICK 60856 -TRICKS 64201 -TRIED 60492 -TRIFAB 64423 -TRIGGER 62196 -TRIKE 61818 -TRILLIAN 63245 -TRIM 56618 -TRINIDAD 60952 -TRINITY 60670 -TRIO 61256 -TRIP 54857 -TRIPLE 58212 -TRIPOD 64423 -TRIPP 64201 -TRIPS 57696 -TRISH'S 65452 -TRITON 64905 -TRIUMPH 59491 -TRIVIA 58523 -TRIVIUM 64201 -TRIzol 63991 -TRL 54992 -TRM 63601 -TROHPIQ 62613 -TROJAN 63792 -TROLL 65452 -TROMBONE 63792 -TRON 61256 -TROOPER 65170 -TROOPS 63792 -TROPHY 63419 -TROPICAL 60405 -TROPICO 64905 -TROUBLE 59702 -TROUBLESHOOTING 65452 -TROUT 61940 -TROY 58262 -TRP 60670 -TRR 64905 -TRS 58802 -TRT 63077 -TRU 62331 -TRUCK 52752 -TRUCKING 58802 -TRUCKS 59923 -TRUE 52387 -TRULY 63077 -TRUMAN 62469 -TRUMP 64905 -TRUMPET 62613 -TRUNCATED 61584 -TRUNK 64657 -TRUS 63245 -TRUST 48571 -TRUSTE 63077 -TRUSTEE 62469 -TRUSTEES 60000 -TRUSTS 60157 -TRUSTe 51266 -TRUTH 55631 -TRUVEO 61051 -TRW 58979 -TRX 60078 -TRY 53695 -TRYING 57609 -TS 47008 -TSA 54770 -TSAI 64905 -TSAO 65170 -TSB 55657 -TSBs 64905 -TSC 57399 -TSCA 59491 -TSCS 65452 -TSD 63991 -TSE 60238 -TSF 59923 -TSG 56721 -TSH 56324 -TSHIRT 64201 -TSHR 59424 -TSI 59164 -TSK 63601 -TSL 60238 -TSM 61940 -TSMC 61152 -TSMR 64905 -TSN 55934 -TSO 61256 -TSP 57696 -TSR 59101 -TSS 59357 -TSSOP 60856 -TST 62469 -TSTA 61818 -TSTMS 62469 -TSU 61152 -TSV 65452 -TSW 64905 -TSX 54540 -TT 48872 -TTA 57831 -TTB 64905 -TTC 52752 -TTD 65452 -TTF 62762 -TTG 63245 -TTI 61472 -TTL 57084 -TTM 62331 -TTN 62917 -TTO 65170 -TTODruagaAE 59702 -TTP 61584 -TTR 58745 -TTS 57009 -TTT 58577 -TTU 60762 -TTV 60492 -TTW 62762 -TTX 62196 -TTY 57482 -TU 52351 -TUAW 52187 -TUB 59357 -TUBA 63792 -TUBE 55226 -TUBERCULOSIS 63077 -TUBES 61940 -TUBING 61699 -TUC 61699 -TUCKER 61152 -TUCSON 62331 -TUE 57399 -TUESDAY 51580 -TUF 58860 -TUFF 64657 -TUFFJOHNSON 65452 -TUI 60762 -TUITION 62066 -TULSA 64657 -TUMOR 63792 -TUNA 63991 -TUNE 59630 -TUNED 64423 -TUNEL 58860 -TUNER 60238 -TUNES 62762 -TUNING 61051 -TUNISIA 60000 -TUNNEL 63991 -TUNUP 61584 -TUR 63419 -TURBINE 62331 -TURBO 55631 -TURBULENT 64657 -TURF 59560 -TURKEY 54643 -TURKISH 61584 -TURKMENISTAN 61472 -TURKS 62469 -TURN 55423 -TURNED 63245 -TURNER 57970 -TURNING 60238 -TURNOVR 57482 -TURNS 60670 -TURNTABLE 65452 -TURRILL 61818 -TURTLE 62762 -TUS 64423 -TUSCALOOSA 65170 -TUTOR 63601 -TUTORIAL 61256 -TUTORIALS 57482 -TUTTI 65452 -TUV 61818 -TUVALU 62066 -TUVWXYZ 65170 -TV 32354 -TV'S 56200 -TV's 50026 -TVA 59424 -TVB 61818 -TVC 62762 -TVE 65452 -TVET 62331 -TVGuide 64905 -TVI 63991 -TVIX 64657 -TVL 62762 -TVNZ 58313 -TVNewser 64905 -TVP 63991 -TVR 55299 -TVS 58113 -TVSquad 54560 -TVTropolis 57970 -TVW 62066 -TVW's 64905 -TVX 63792 -TVonics 61051 -TVs 47504 -TW 52029 -TWA 58979 -TWAIN 61472 -TWC 58212 -TWD 59424 -TWELVE 65170 -TWENTY 60856 -TWF 63792 -TWIC 63991 -TWICE 56518 -TWILIGHT 62613 -TWIN 56551 -TWINE 60762 -TWINS 57970 -TWINSPAN 64905 -TWIST 62762 -TWISTED 60856 -TWISTYS 58470 -TWN 63077 -TWO 47143 -TWP 59357 -TWS 63245 -TWT 61584 -TWiki 52327 -TWikiAdminGroup 61152 -TWikiDocumentation 62917 -TWikiGroups 62331 -TWikiGuest 62331 -TWikiPreferences 62762 -TWikiUsers 59774 -TWikiVariables 59424 -TWoP 63991 -TX 38161 -TXAM 65452 -TXB 65452 -TXMAS 62331 -TXT 58919 -TXU 63077 -TY 55604 -TYC 64423 -TYCO 60952 -TYLER 60078 -TYP 60238 -TYPE 47867 -TYPES 55906 -TYPICAL 58365 -TYPO 59164 -TYPOGRAPHICAL 63419 -TYR 62066 -TYRE 65452 -TYRES 63077 -TYSON 64201 -TZ 50983 -TZU 54969 -Ta 51942 -TaFoKiNtS 64905 -Taal 61051 -Taare 65452 -Tab 46552 -TabControl 63792 -TabStrip 63245 -Taba 60670 -Tabane 63419 -Tabard 63077 -Tabarrok 65170 -Tabasco 60762 -Tabata 64905 -Tabbed 59923 -Tabby 62762 -Tabcorp 63991 -Taber 61152 -Tabernacle 56791 -Tabi 63419 -Tabitha 57741 -Tabla 61584 -Tablas 63792 -Tablature 60580 -Table 35581 -Tablecloth 60670 -Tablecloths 61940 -Tabled 64657 -Tablelands 61940 -Tables 44048 -Tablespoon 63792 -Tablet 48354 -Tabletop 55202 -Tablets 50101 -Tableware 53917 -Tabloid 58262 -Tabloids 64423 -Taboo 58065 -Tabor 57653 -Tabs 47402 -Tabu 60157 -Tabula 57876 -Tabular 60405 -Tabulation 64423 -Tabulations 61051 -Tac 57524 -Tacaíocht 64201 -Tachi 64423 -Tachibana 64423 -Tachometer 60580 -Tachycardia 64423 -Tacit 64905 -Tacitus 61584 -Tack 54188 -Tackle 49926 -Tackles 58365 -Tackling 57009 -Tacks 61940 -Tacky 62196 -Taco 51349 -Tacoma 51368 -Tacos 58313 -Tacrolimus 62613 -Tact 63245 -Tactic 55448 -Tactical 50335 -Tactics 51166 -Tactile 62066 -Tacuba 65170 -Tacvba 63601 -Tacx 61152 -Tad 58313 -Tadalafil 58745 -Tadao 64657 -Tadashi 60952 -Tadeusz 62917 -Tadhg 65452 -Tadjikistan 61256 -Tadlock 63991 -Tadoussac 60762 -Tadpole 60321 -Tadpoles 61699 -Tae 56200 -Taegan 64201 -Taekwondo 57831 -Taf 63245 -Taff 59702 -Taffeta 59560 -Taffy 63601 -Taft 56721 -Tag 42405 -Tagalog 51000 -Tagamet 57278 -Tagan 64423 -Tagaytay 65170 -Tagcloud 63792 -Tage 62469 -Tagen 58365 -Tages 65170 -Taggart 60000 -Tagged 45671 -Tagger 62917 -Tagging 55578 -Taggly 62917 -Tagish 63601 -Tagless 59702 -Tagline 64201 -Tagore 59357 -Tags 37436 -Tagsmap 60762 -Taguchi 59292 -Taguig 65452 -Taha 61818 -Tahari 63419 -Tahir 63991 -Tahiti 54059 -Tahitian 58113 -Tahki 63419 -Tahlequah 65452 -Tahoe 49572 -Tahoe's 65452 -Tahoma 55849 -Tahsin 63792 -Tahu 64905 -Tai 51541 -Taichi 64905 -Taichung 60321 -Taig 64423 -Taijiquan 64657 -Tail 49470 -TailRank 57358 -Tailed 63792 -Tailgate 53695 -Tailgater 64423 -Tailgates 64905 -Tailgating 57399 -Taillight 63419 -Taillights 64905 -Tailor 56899 -Tailored 55738 -Tailoring 54245 -Tailors 60000 -Tailrank 52141 -Tails 55766 -Tailynn 63991 -Tainan 64423 -Taino 64905 -Tainted 58979 -Taio 63792 -Taipei 49173 -Tair 64201 -Taira 64423 -Taisen 62762 -Tait 59774 -Taito 63245 -Taiwan 40481 -Taiwan's 55348 -Taiwanese 53407 -Taiyo 62469 -Taiyuan 63991 -Taiz 62469 -Taizhou 64657 -Taj 53485 -Tajik 59164 -Tajikistan 46540 -Tajima 62196 -Tak 56551 -Taka 59101 -Takada 62331 -Takagi 62762 -Takahashi 56420 -Takahiro 63419 -Takako 63792 -Takamatsu 63077 -Takami 62331 -Takamine 59923 -Takao 61051 -Takapuna 63991 -Takara 62196 -Takashi 56021 -Takasu 63077 -Takasugi 64201 -Takayama 62917 -Takayasu's 64905 -Takayuki 61940 -Take 37883 -Takeaway 55299 -Takeaways 56585 -Takeda 55906 -Takedown 62331 -Takefuji 63419 -Takei 59424 -Takemoto 62762 -Taken 46717 -Takeo 62066 -Takeoff 61699 -Takeout 58262 -Takeover 57046 -Takeovers 62066 -Taker 60492 -Takers 62613 -Takes 46429 -Takeshi 58262 -Takeuchi 60762 -Takhar 63419 -Taki 62331 -Takia 62066 -Takin 57741 -Taking 44946 -TakingITGlobal 61362 -Takis 64657 -Takoma 60580 -Takraw 61152 -Taku 62331 -Takum 63077 -Tal 57440 -Tala 59774 -Talal 64657 -Talbert 63991 -Talbot 51248 -Talbots 61940 -Talbott 56756 -Talc 64201 -Tale 48949 -Taleb 64657 -Taleban 63601 -Talend 63419 -Talent 46560 -Talented 55084 -Talento 61699 -Talents 57046 -Taleo 59923 -Tales 46672 -Tali 63991 -Talia 61472 -Taliaferro 65170 -Talib 58470 -Taliban 49802 -Taliban's 65170 -Taliep 65170 -Talika 65170 -Talis 62331 -Talisman 58365 -Talk 38622 -Talk's 65170 -TalkBack 61818 -TalkBass 64657 -TalkBoard 60856 -TalkLeft 65170 -TalkTalk 60000 -Talkback 55130 -Talked 62331 -Talkeetna 65170 -Talker 60762 -Talkie 61362 -Talkies 63991 -Talkin 60078 -Talking 45371 -Talks 47093 -Tall 49141 -Talladega 57160 -Tallaght 62066 -Tallahassee 53052 -Tallebudgera 65170 -Taller 60157 -Tallest 59848 -Talley 59039 -Tallies 65452 -Tallin 65170 -Tallinn 56518 -Tallis 59923 -Tallmadge 63077 -Tallman 65452 -Tallon 65452 -Tallow 63077 -Tallulah 62917 -Tally 55398 -Tallyn's 61362 -Talmadge 64201 -Talmud 61940 -Talmudic 63991 -Talnivarr 64905 -Talon 58162 -Talore 64657 -Talula 62066 -Talus 64905 -Talwar 63245 -Tam 54902 -Tama 57876 -TamaTalk 63419 -Tamagotchi 55906 -Tamaki 60856 -Tamale 63601 -Tamales 61362 -Taman 60405 -Tamanna 64201 -Tamar 57009 -Tamar's 64657 -Tamara 53392 -Tamarac 58523 -Tamarack 60000 -Tamarind 61051 -Tamarindo 62762 -Tamas 60952 -Tamblyn 60000 -Tambo 62469 -Tambor 63419 -Tamborine 65452 -Tambourine 63792 -Tame 58523 -Tamed 64657 -Tameka 64657 -Tamer 61940 -Tamera 64423 -Tamerica 62331 -Tamers 63991 -Tameside 58113 -Tami 58745 -Tamia 61699 -Tamiami 61940 -Tamiflu 58523 -Tamika 65452 -Tamil 45797 -Tamilnadu 60762 -Tamils 61256 -Taming 59039 -Tamir 63419 -Tamiya 57923 -Tammany 58470 -Tamme 65170 -Tammi 63077 -Tammie 64423 -Tammy 51570 -Tammy's 62469 -Tamora 63245 -Tamoxifen 59702 -Tampa 42526 -Tampenii 65452 -Tamper 63419 -Tampere 59848 -Tampering 64201 -Tampico 59491 -Tampines 60670 -Tampons 63991 -Tamra 64657 -Tamrac 61472 -Tamron 57399 -Tamsin 64423 -Tamu 64423 -Tamuning 62917 -Tamura 61584 -Tamworth 54023 -Tamás 64423 -Tan 47980 -Tana 60580 -Tanabe 62331 -Tanaka 53454 -Tanaris 57696 -Tanck 61940 -Tancredo 65170 -Tanda 60492 -Tandberg 65170 -Tandem 55084 -Tandon 62917 -Tandoori 58212 -Tandridge 62917 -Tandy 58688 -Tanenbaum 64905 -Tanfield 62196 -Tang 52496 -TangShan 65170 -Tanga 63245 -Tangalanga 61818 -Tanganyika 62917 -Tange 65170 -Tangent 58065 -Tangential 64201 -Tanger 59774 -Tangerine 51670 -Tangible 58860 -Tangient 62917 -Tangier 64201 -Tangle 59923 -Tangled 59227 -Tanglewood 59039 -Tango 49886 -Tanguay 62762 -Tangy 64905 -Tangyan 60492 -Tani 62066 -Tania 56618 -Taniguchi 60580 -Tanisha 62917 -Tanita 61152 -Tanja 59424 -Tanjong 62917 -Tanjung 62917 -Tank 45135 -Tank's 64905 -Tankard 65170 -Tanker 57831 -Tankers 62196 -Tankian 64905 -Tanking 65452 -Tankini 61940 -Tankleff 64201 -Tankless 58065 -Tanks 49860 -Tanna 62469 -Tanned 62613 -Tannenbaum 64657 -Tanner 53746 -Tanner's 64201 -Tanners 62917 -Tannersville 60238 -Tannery 58162 -Tannin 64423 -Tanning 51453 -Tannoy 62066 -Tans 63991 -Tansee 64657 -Tansey 60492 -Tanta 64657 -Tantalizing 65452 -Tantalum 65170 -Tantei 60670 -Tanto 63419 -Tantra 56485 -Tantric 60000 -Tanushree 61362 -Tanya 52315 -Tanya's 64201 -Tanzania 45178 -Tanzania's 65170 -Tanzanian 58365 -Tanzanite 62469 -Tao 52968 -Taobao 57046 -Taoiseach 64201 -Taoism 61699 -Taoist 61818 -Taos 57238 -Tap 50206 -Tapas 55448 -Tapco 63601 -Tape 45168 -Taped 62331 -Taper 58577 -Tapered 59560 -Tapes 50122 -Tapestries 57009 -Tapestry 53485 -Tapia 63792 -Taping 59702 -Tappan 61699 -Tapped 59164 -Tapper 60856 -Tapping 55992 -Taps 55348 -Tapwave 62613 -Taq 56652 -TaqMan 62762 -Taqueria 62762 -Tar 52175 -Tara 48933 -Tara's 64657 -Taran 63792 -Taranaki 55274 -Taraneh 63792 -Tarangire 59923 -Tarantino 58802 -Tarantino's 65452 -Taranto 62917 -Tarantula 62613 -Taras 63245 -Taraxacum 62196 -Tarball 57199 -Tarbell 65452 -Tarceva 64201 -Tarde 64201 -Tardis 65452 -Tareas 64423 -Taree 61051 -Tarek 62613 -Tareq 62762 -Targa 58688 -Target 44073 -TargetLists 64905 -TargetNode 64905 -Targeted 51387 -Targeting 54133 -Targets 52315 -Targhee 59227 -Targus 55604 -Tarheels 62196 -Tari 64423 -Tarifa 63792 -Tarifas 65452 -Tariff 51793 -Tariffs 55849 -Tariq 59292 -Tarja 58577 -Tarkan 61818 -Tarkett 65170 -Tarkington 61051 -Tarkington's 64423 -Tarlac 64423 -Tarleton 64423 -Tarn 60670 -Tarnovo 64905 -Taro 60078 -Taroko 64657 -Tarot 53167 -Tarp 64905 -Tarpon 57440 -Tarporley 64657 -Tarps 62066 -Tarquin 64423 -Tarr 63077 -Tarragon 58470 -Tarragona 63419 -Tarrant 55821 -Tarren 62469 -Tarrytown 61256 -Tart 56420 -Tartan 58017 -Tartana 62066 -Tartar 60670 -Tarte 62613 -Tartine 65170 -Tarts 58688 -Tartu 58313 -Tarun 60856 -Tarver 63419 -Tarvin 61584 -Taryn 59702 -Tarzan 58017 -Tarzana 61699 -Tas 58802 -Tasca 63792 -Tascam 57358 -Taschen 64657 -Tasco 62762 -Taser 59424 -Tasers 65170 -Tash 63792 -Tasha 56862 -Tashan 61256 -Tashkent 60580 -Tasiopoulos 56618 -Task 45281 -Taskbar 63419 -Taskforce 59774 -Tasks 50350 -Tasman 53796 -Tasmania 48866 -Tasmania's 63792 -Tasmanian 53865 -Tassel 62613 -Tassie 63419 -Tassimo 62917 -Taste 47968 -TasteBook 65452 -Tastebook 57566 -Tasted 62196 -Tasteful 64905 -Tastefully 63601 -Tasteless 60580 -Taster 61940 -Tastes 56518 -Tasting 51942 -Tastings 60492 -Tasty 53124 -Tat 54643 -Tata 48208 -Tata's 64423 -Tatar 58365 -Tatarstan 61472 -Tatas 65452 -Tate 51835 -Tater 60670 -Tathagata 61940 -Tatiana 56899 -Tatianna 65452 -Tatjana 62917 -Tatler 63991 -Tatneft 62331 -Tatneft's 62917 -Tatoo 62917 -Tatra 63792 -Tats 65170 -Tatsuo 63991 -Tatsuya 61362 -Tattered 62331 -Tattersall 64423 -Tattle 63419 -Tattnall 65452 -Tattoo 48638 -TattooNOW 60078 -Tattooed 62469 -Tattooing 61940 -Tattoos 50591 -Tatts 60856 -Tatu 61362 -Tatum 57831 -Tatung 62917 -Tatyana 60952 -Tau 54499 -Taub 62331 -Tauber 63991 -Taubman 64905 -Tauck 52291 -Taught 54727 -Taunting 58470 -Taunton 53392 -Taupe 59560 -Taupin 65452 -Taupo 58212 -Tauraco 64905 -Tauranga 56756 -Tauren 57524 -Tauri 64423 -Taurine 59292 -Tauro 63991 -Taurus 50983 -Tautou 65170 -Tauveron 63419 -Tava 64423 -Tavares 60952 -Tavern 49523 -Taverna 60078 -Taverns 61940 -Tavis 60952 -Tavistock 57876 -Tavita 63991 -Tavlos 63601 -Tawa 63419 -Tawney 65452 -Tawny 61152 -Tawra 64423 -Tax 39104 -Taxa 61584 -Taxable 57238 -Taxation 49541 -Taxes 45506 -Taxi 49405 -Taxicab 62196 -Taxidermists 65170 -Taxidermy 60670 -Taxing 58470 -Taxis 52233 -Taxman 64657 -Taxol 61818 -Taxon 51008 -Taxonavigation 63792 -Taxonomic 58688 -Taxonomy 38149 -Taxpayer 55578 -Taxpayer's 61699 -Taxpayers 57122 -Tay 55711 -Taye 61818 -Taylor 41250 -Taylor's 53712 -TaylorMade 59039 -Taylored 63601 -Taylormade 61472 -Taylors 56972 -Taylorsville 62469 -Taylorville 64423 -Tayside 58113 -Taz 61699 -Tazewell 61818 -Tazo 64201 -Tazorac 57566 -Tb 60580 -Tbe 64201 -Tbilisi 58212 -Tbs 58979 -Tbsp 62917 -Tc 55657 -Tce 65452 -Tchad 64905 -Tchaikovsky 60157 -Tchaikovsky's 65170 -Tcl 59101 -Td 57399 -TdF 64905 -Te 47815 -TeV 60952 -TeX 59424 -Tea 43793 -Teac 61584 -Teach 49229 -Teacher 42897 -Teacher's 54302 -TeacherTube 62917 -TeacherVision 62762 -Teachers 43708 -Teaches 57084 -Teaching 42394 -Teachings 59101 -Teaco 65452 -Teacup 58417 -Teagan 61699 -Teague 60078 -Teahouse 63245 -Teak 53847 -Teakwood 65452 -Teal 51899 -Tealight 61472 -Team 35385 -Team's 59227 -TeamFanShop 64905 -TeamSpeak 60405 -TeamSugar 64423 -TeamXbox 55604 -Teambuilding 64201 -Teaming 62917 -Teammate 65170 -Teams 42765 -Teamsters 60762 -Teamwear 64423 -Teamwork 57318 -Teaneck 63419 -Teanga 60670 -Teapot 59774 -Teapots 60492 -Tear 54114 -Teardrop 60238 -Teardrops 60762 -Tearing 61940 -Tears 50791 -Teas 56388 -Teasdale 63419 -Tease 55877 -Teaser 52635 -Teasers 60762 -Teasing 61699 -Teaspoon 62331 -Teast 64423 -Teatro 57278 -Teaver 63601 -Tebow 63991 -Tec 56324 -TecHome 65452 -Tech 36449 -Tech's 57440 -TechArena 64423 -TechBuy 65170 -TechCenter 64201 -TechCrunch 57399 -TechEd 60670 -TechFresh 63601 -TechGuides 60856 -TechGuy 64201 -TechIMO 62196 -TechNet 51122 -TechNetwork 61256 -TechNews 64657 -TechNewsWorld 60762 -TechRepublic 39516 -TechShrine 62469 -TechSkills 64657 -TechSoEasy 62196 -TechSoup 64657 -TechSpot 56170 -TechTarget 53346 -TechTips 60762 -TechWeb 63245 -TechWorld 64657 -TechYES 64657 -Techcrunch 64423 -Techdirt 62331 -Techdirt's 65452 -Techfit 64905 -Techical 63991 -Techie 57524 -Techies 61940 -Techmeme 59774 -Technaute 63792 -Technaxx 65170 -Technet 65170 -Technic 59292 -Technica 56791 -Technical 37441 -Technically 57831 -Technicals 60856 -Technician 44081 -Technicians 52845 -Technicolor 59630 -Technicolour 64905 -Technics 56231 -Technik 59357 -Technine 64657 -Technion 64201 -Technique 47887 -Techniques 45797 -Technische 55738 -Techno 49783 -TechnoRide 64201 -Technobabble 65170 -Technol 54601 -Technologic 63245 -Technological 52725 -Technologie 59630 -Technologies 41531 -Technologist 56935 -Technologists 59039 -Technology 32719 -Technology's 59039 -TechnologyBiology 61472 -TechnologyMedicine 61472 -Technora 64423 -Technorati 40377 -Technorati's 61362 -Techs 58313 -Techstreet 60000 -Techworld 59039 -Techy 65452 -Teck 60321 -Tecktonik 62331 -Tecmo 59491 -Tecnica 62469 -Tecnologia 60952 -Tecnología 60952 -Tecpel 65452 -Tecra 61472 -Tectia 59848 -Tectonic 60670 -Tectonics 61256 -Tectonophysics 63991 -Tecumseh 57741 -Ted 45701 -Ted's 57696 -TedW 62762 -Tedd 62469 -Teddi 65170 -Teddies 60078 -Teddington 61584 -Teddy 49400 -Teddy's 63991 -Tedeschi 62917 -Tedesco 65452 -Tee 46862 -Tee's 64657 -TeeGate 63991 -Teekay 64423 -Teele 64423 -Teemu 63419 -Teen 41912 -Teen's 63245 -TeenDiaries 63601 -TeenDreams 59292 -Teena 60670 -Teenage 49913 -Teenager 53501 -Teenagers 54813 -Teenie 61051 -Teens 46007 -Teeny 60492 -Teepe 61051 -Tees 50013 -Teesdale 64657 -Teese 59424 -Teesside 57831 -Teeter 59227 -Teeth 50991 -Teething 63419 -Tefal 62917 -Tefen 64905 -Teflon 56200 -Tegan 59491 -Tego 63419 -Tegra 65452 -Tegretol 61362 -Teh 56935 -Tehachapi 61472 -Tehama 62469 -Tehran 54499 -Tehrani 62469 -Tehvids 62917 -Tei 62613 -Teignmouth 63991 -Teil 56935 -Tein 62469 -Teixeira 59848 -Teja 64423 -Tejada 63991 -Tejano 62917 -Tejas 59848 -Tek 55849 -Tekin 62613 -Tekken 55037 -Teknik 61584 -Teknologi 63077 -Tekst 62469 -Tektro 64423 -Tektronix 58688 -Tekzilla 60952 -Tel 45082 -Tela 62917 -Telarc 62469 -Telco 57318 -Telcom 61362 -Telcordia 62613 -Teldrassil 60952 -Tele 54879 -TeleCenter 62469 -TeleCheck 65170 -Telecast 64201 -Telecaster 58632 -Telecel 64423 -Telecine 63245 -Teleco 64201 -Telecom 45789 -Telecom's 62066 -Telecomm 63601 -Telecomms 59848 -Telecommunication 52805 -Telecommunications 44241 -Telecommute 62469 -Telecommuting 57741 -Telecoms 53038 -Teleconference 60856 -Teleconferences 63077 -Teleconferencing 64423 -Teledu 65452 -Teledyne 61584 -Telefilm 64657 -Telefilms 64657 -Teleflex 64423 -Teleflora 63245 -Teleflora's 57970 -Telefon 61472 -Telefonica 58577 -Telefónica 63419 -Teleglobe 65452 -Telegram 56935 -Telegrams 64423 -Telegraph 47173 -Telegraph's 63419 -Telegu 64657 -Telehealth 64657 -Telekom 57609 -Telekurs 65170 -Telemann 64905 -Telemark 62469 -Telemarketer 53316 -Telemarketers 60580 -Telemarketing 54643 -Telematics 60762 -Telemecanique 63991 -Telemedicine 57923 -Telemetry 59702 -Telemundo 60580 -Telenor 62469 -Telepathy 62331 -Telephone 42803 -Telephones 51184 -Telephony 50898 -Telephoto 64201 -Teleport 62762 -Telepresence 64657 -Teleprompter 58919 -Teleradiology 63792 -Telerau 65170 -Telerik 59357 -Telesales 59630 -Telescope 51877 -Telescopes 54360 -Telescopic 56972 -Telescoping 62196 -Teleseminar 64905 -Teleservices 64423 -Telesis 62196 -Teleskop 62469 -Telestream 65452 -Telesyn 64423 -Telesync 61940 -Teletext 61699 -Telethon 63792 -Teletubbies 56791 -Teletype 64657 -Televisa 62762 -Televised 60856 -Television 40453 -Television's 63077 -Televisions 48459 -Televsions 60157 -Telewest 64423 -Telework 61472 -Telex 62066 -Telfair 62469 -Telford 52661 -Telia 63245 -TeliaSonera 63077 -Telithromycin 64201 -Telkom 59292 -Telkonet 65452 -Tell 38496 -Tella 63991 -Teller 53779 -Tellers 62762 -Tellico 63419 -Tellier 63419 -Telligent 60492 -Telling 52858 -Tellme 57785 -Tells 49946 -Telltale 62066 -Telluride 57278 -Tellus 62196 -Telly 58113 -Telnaes 60856 -Telnet 58745 -Telomerase 61818 -Telomere 65170 -Telos 61152 -Telrad 65170 -Telspace 64201 -Telstar 60952 -Telstra 52387 -Telstra's 64201 -Telugu 50514 -Telular 65170 -Telus 55323 -Tem 57199 -Tema 59630 -Temagami 61818 -Temalar 63419 -Temas 58523 -Temasek 62066 -Temecula 57278 -Temes 58313 -Temp 49464 -Tempah 63419 -Tempe 54321 -Tempeh 63245 -Tempel 64905 -Temper 58919 -Temperament 61699 -Temperance 60670 -Temperate 61699 -Temperatura 65170 -Temperature 45437 -Temperatures 53899 -Tempered 61152 -Tempest 55060 -Tempio 64201 -Templar 60321 -Templars 65452 -Template 45188 -TemplateCode 62331 -TemplateGroup 63792 -TemplateName 62066 -Templates 45424 -Templatki 63419 -Temple 45241 -Temple's 64657 -Templejti 63419 -Temples 56935 -Templeton 56050 -Templo 64201 -Tempo 53517 -Tempográfica 60492 -Temporada 63245 -Temporal 53565 -Temporarily 56050 -Temporary 47113 -Temporomandibular 64657 -Tempranillo 62917 -Temps 56585 -Temptation 53052 -Temptations 59774 -Tempted 65452 -Tempter 65452 -Tempting 62762 -Tempura 64201 -Tempus 60670 -Temurtaht 62196 -Ten 41942 -Tena 65170 -Tenacious 57084 -Tenacity 63419 -Tenaga 64905 -Tenancies 63601 -Tenancy 57923 -Tenant 51131 -Tenant's 60580 -Tenants 56231 -Tenax 65452 -Tenbury 64423 -Tenby 62469 -Tenchi 62196 -Tenchu 62917 -Tend 62066 -Tendencies 62613 -Tendency 64201 -Tender 49371 -Tendering 62196 -Tenderloin 58577 -Tenderness 63792 -Tenders 49899 -Tending 63792 -Tendon 62196 -Tendonitis 65452 -Tendulkar 58113 -Tene 64201 -Tenebrionids 63991 -Tenement 63601 -Tenens 65452 -Tenerife 55037 -Tenet 60000 -Teng 60580 -Tengah 64201 -Tenge 60492 -Tengen 62196 -Tenggara 63601 -Tengo 57831 -Tengu 65170 -Tenia 60157 -Tenis 65170 -Tenkaichi 59774 -Tenmangu 58688 -Tenn 61362 -Tennant 56293 -Tennent 61940 -Tennesse 63991 -Tennessean 61818 -Tennessee 41159 -Tennessee's 60670 -Tenney 64201 -Tennille 63077 -Tennis 40734 -TennisChannel 63601 -Tennison 64423 -Tennyson 59560 -Tenor 56324 -Tenorio 63991 -Tenormin 63601 -Tenors 63419 -Tenpercenteries 64657 -Tens 56585 -Tense 59491 -Tenses 65170 -Tenshi 59774 -Tensile 55684 -Tension 53746 -Tensioner 59357 -Tensioners 64905 -Tensions 56899 -Tensolite 64905 -Tensor 61362 -Tent 51043 -Tentacle 63991 -Tentacles 64657 -Tentative 56356 -Tented 63245 -Tenterden 64423 -Tenth 54321 -Tents 52752 -Tenuate 56420 -Tenure 56080 -Tenuta 65452 -Teo 60157 -Teochew 64423 -Teodor 63991 -Teodoro 64423 -Teoh 65452 -Teoma 60580 -Teper 63792 -Tepes 63991 -Tepid 62917 -Tepper 62469 -Tequila 52256 -Ter 55448 -Tera 54519 -Terabithia 62762 -Terabyte 64657 -Teradata 62066 -Terahertz 63077 -Teravision 63077 -Terbinafine 62762 -Terbuang 61699 -Tere 59848 -Terenas 59357 -Terence 52805 -Terengganu 62469 -Terenure 65452 -Teresa 49590 -Teresa's 63077 -Teresina 64201 -Terex 64201 -Terhune 63419 -Teri 51793 -Teriyaki 58113 -Terje 61472 -Terk 61256 -Terkel 63792 -Term 44127 -Terme 62762 -Termeni 65452 -Termin 65170 -Terminal 46840 -Terminale 64423 -Terminally 63077 -Terminals 54792 -Terminate 59630 -Terminated 61362 -Terminating 62917 -Termination 48261 -Terminator 51867 -Terminators 64201 -Termine 65170 -Termini 61699 -Terminologies 64905 -Terminology 52968 -Terminus 62196 -Termite 57318 -Termites 62196 -Terms 30537 -Tern 64657 -Ternary 63245 -Tero 65452 -Terokkar 57399 -Terps 61256 -Terpstra 65170 -Terr 64905 -Terra 50890 -Terrace 46367 -Terraced 60078 -Terraces 60492 -Terracotta 59848 -Terrain 53917 -Terramodel 63419 -Terran 59923 -Terrance 59702 -Terranova 63419 -Terrapin 62331 -Terrapins 60492 -Terrarium 63245 -Terrase 65452 -Terraserver 65452 -Terratec 62469 -Terraza 65452 -Terrazzo 63991 -Terre 53533 -Terrebonne 63077 -Terrell 54041 -Terremark 65170 -Terrence 51909 -Terres 64423 -Terrestrial 54341 -Terrestrials 65452 -Terri 52051 -Terri's 64905 -Terria 61256 -Terrible 49726 -Terrible's 62613 -Terrie 63991 -Terrier 48191 -Terriers 58745 -Terrific 56518 -Terrified 64201 -Terrifying 61256 -Terrill 63245 -Terris 64905 -Territorial 55526 -Territories 47147 -Territory 45397 -Terror 49157 -Terrorism 49841 -Terrorist 50966 -Terrorists 56324 -Terrors 63601 -Terry 44336 -Terry's 59101 -Tertiary 54170 -Tertius 64657 -Terug 63991 -Terumasa 62762 -Teruo 65170 -Tervuren 64423 -Teräsbetoni 64905 -Tes 64905 -Tesco 46097 -Tesco's 62762 -Tesla 54096 -Tesoro 60238 -Tess 55037 -Tessa 56452 -Tessar 64905 -Tessas 62917 -Tessier 65170 -Test 38666 -TestFreaks 57876 -TestTube 43705 -Testa 63245 -Testament 49802 -Testamentary 65452 -Testaments 64905 -Testbed 63601 -Teste 62196 -Tested 49476 -Tester 52765 -Testers 55037 -Testes 64657 -Testi 54519 -Testicle 64201 -Testicular 55084 -Testifies 62469 -Testify 61818 -Testifying 59774 -Testimonial 54245 -Testimonials 42754 -Testimonies 58688 -Testimony 53952 -Testing 42038 -Testis 63601 -Testking 61818 -Testo 54643 -Testor 63245 -Testosterone 56388 -Tests 45395 -Testu 63077 -Tet 61699 -Tetanus 61584 -Tetbury 64423 -Tete 63991 -Tether 62196 -Tethered 63601 -Tethys 63245 -Tetley 62196 -Teton 56721 -Tetra 58262 -Tetracycline 61152 -Tetrahedron 56110 -Tetrahymena 63601 -Tetris 55684 -Tetsu 63601 -Tetsudo 65452 -Tetsuo 60952 -Tetsuya 59923 -Teulon 65452 -Teutonic 59702 -Teva 56518 -Teva's 62196 -Tevatron 63991 -Tevez 58745 -Tewkesbury 61940 -Tewksbury 62762 -Tex 54643 -TexAM 65170 -TexAQS 65170 -Texaco 59702 -Texan 55552 -Texans 51814 -Texarkana 62331 -Texas 36841 -Texas's 63991 -TexasOnline 60492 -Texoma 64201 -Text 33284 -TextBox 60580 -TextBoxes 64201 -TextFormattingRules 64201 -TextMate 61940 -Textarea 64905 -Textbook 52280 -Textbooks 46881 -Textbox 63077 -Texte 62762 -Texter 61940 -Textile 49713 -Textiles 48247 -Texting 62196 -Textron 60078 -Texts 51600 -Textual 59491 -Texture 53407 -Textured 56200 -Textures 55037 -Texturing 61051 -Texwood 65170 -Tez 64905 -Tf 63419 -TfL 61940 -Tg 58523 -Tgp 63991 -Th 48491 -ThE 59774 -Tha 52303 -Thabane 65452 -Thabo 61051 -Thacher 63792 -Thacker 61362 -Thackeray 58919 -Thackeray's 65452 -Thad 60762 -Thaddeus 60157 -Thaddius 64905 -Thai 43061 -Thailand 41014 -Thailand's 58523 -Thain 61362 -Thaindian 62469 -Thais 58919 -Thaksin 58470 -Thaksin's 64905 -Thakur 59848 -Thalamic 64905 -Thalassia 65452 -Thales 63792 -Thalia 59424 -Thallophyta 64423 -Thalys 63419 -Thame 62196 -Thames 48300 -Than 45027 -Thandie 60405 -Thane 58470 -Thanet 64657 -Thang 58470 -Thanh 57609 -Thani 60321 -Thanjavur 65170 -Thank 37445 -Thank's 63601 -ThankYou 62762 -Thanked 45576 -Thankful 57831 -Thankfully 58113 -Thanking 61940 -Thanks 37623 -Thanksgiving 46657 -Thankyou 58470 -Thanos 65452 -Thanx 53830 -Thao 65170 -Thar 61584 -Tharp 61699 -That 35328 -That'd 62917 -That'll 59923 -That's 39741 -Thatch 60762 -Thatcham 63991 -Thatcher 54560 -Thatcher's 63601 -Thats 49279 -Thaurissan 60670 -Thaw 62469 -Thawte 60492 -Thay 64905 -Thayer 58417 -Thc 60000 -The 20431 -TheAwakened 65452 -TheBlackElf 64905 -TheCocks 59923 -TheFreeDictionary 53331 -TheGlasgowStory 63419 -TheGunslinger 64905 -TheLadders 65170 -TheMovePhaseOne 65170 -TheOnion 60078 -TheProsecutor 64201 -TheRedEye 64423 -TheSims 63792 -TheStreet 63792 -TheYoungTurks 55526 -Thea 58212 -Theakston 63419 -Theale 64905 -Theanine 64423 -Theater 41541 -Theater's 64423 -Theaters 45664 -Theatre 41280 -Theatre's 60000 -Theatres 50321 -Theatrical 51996 -Theberge 65452 -Thebes 64201 -Thecus 61256 -Thedirtyoldman 64905 -Thee 56551 -Theft 44243 -Thefts 63792 -TheiGroup 64201 -Theipval 65452 -Their 40521 -Theirs 64201 -Theiss 64201 -Thelen 61584 -Thelma 57524 -Thelonious 60405 -Them 47748 -Thema 59848 -Thematic 54264 -Theme 42513 -Themed 53549 -Themen 62331 -Themes 44037 -Themselves 57876 -Then 38798 -Thence 65170 -Theo 54005 -Theobald 63991 -Theodor 58979 -Theodora 63991 -Theodore 50832 -Theodosia 61051 -Theol 60856 -Theological 50623 -Theology 50607 -Theophilus 62762 -Theophylline 63077 -Theor 65170 -Theorem 47207 -Theorems 58262 -Theoretic 65452 -Theoretical 48959 -Theoretically 64201 -Theoretische 63245 -Theories 53066 -Theory 42876 -Theosophical 65170 -Ther 51772 -Therapeutic 49847 -Therapeutics 52040 -Therapie 64201 -Therapies 53346 -Therapist 49926 -Therapists 53882 -Therapy 43016 -There 32680 -There'll 61051 -There's 41986 -Thereafter 58212 -Thereby 63419 -Therefore 47551 -Therein 64657 -Theremin 64201 -Thereof 63991 -Theres 55963 -Theresa 51660 -Theresa's 64423 -Therese 56231 -Theresia 65452 -Theriogenology 64423 -Theriot 64905 -Therm 64423 -Therma 64423 -Thermador 62613 -Thermal 46552 -Thermally 64423 -Thermalright 63245 -Thermals 64423 -Thermaltake 55348 -Thermatool 59848 -Thermo 54519 -Thermocouple 62331 -Thermocyclops 64201 -Thermodynamic 57970 -Thermodynamics 57876 -Thermoelectric 64657 -Thermoform 62762 -Thermoforming 60762 -Thermography 64201 -Thermogravimetric 64657 -Thermometer 56791 -Thermometers 55963 -Thermoplastic 60405 -Thermos 60157 -Thermoslimmer 63792 -Thermostat 56356 -Thermostatic 57566 -Thermostats 57923 -Thermus 65170 -Theron 54499 -Theroux 63077 -Thesauri 61699 -Thesaurus 45143 -These 33837 -Theses 52648 -Theseus 64657 -Thesis 49371 -Thessalonians 59774 -Thessaloniki 57399 -Thessaly 62331 -Theta 55348 -ThetaHealing 60492 -Thetford 57440 -Theva 63077 -They 33636 -They'd 58162 -They'll 52913 -They're 46343 -They've 52280 -Thi 57785 -Thiago 62613 -Thiamin 63991 -Thiamine 63245 -Thibaudeau 64657 -Thibault 59227 -Thibeault 65452 -Thich 61472 -Thick 52927 -Thicke 57785 -Thickening 60670 -Thicker 63419 -Thicket 63792 -Thickness 54151 -Thief 52472 -Thiel 59774 -Thiele 61584 -Thieme 62469 -Thien 64423 -Thierry 54380 -Thies 63419 -Thiessen 63419 -Thiet 63792 -Thievery 58065 -Thieves 54792 -Thigh 55060 -Thighs 60952 -Thigpen 65170 -Thijs 63419 -Thilo 60762 -Thimble 63245 -Thin 48195 -ThinApp 63077 -ThinManager 65170 -Thing 47235 -Thingamajig 64905 -Things 40039 -Think 42946 -ThinkCentre 56452 -ThinkExist 64657 -ThinkGeek 59424 -ThinkPad 50823 -ThinkPads 62762 -ThinkStation 63245 -ThinkTank 65170 -ThinkVantage 65170 -Thinkbaby 64657 -Thinker 55906 -Thinkers 60856 -Thinkexist 64657 -Thinking 46094 -Thinkpad 57785 -Thinks 57084 -Thinkstock 57923 -Thinner 62066 -Thinnest 65170 -Thinning 61152 -Thins 59491 -Thinsulate 63991 -Thiol 64201 -Thioredoxin 65452 -Third 41802 -Thirds 64905 -Thirsk 63419 -Thirst 60762 -Thirsty 59702 -Thirteen 53316 -Thirteenth 58745 -Thirties 63419 -Thirty 52648 -Thiruvananthapuram 58577 -This 25773 -ThisNext 54321 -ThisWeek 63601 -Thistle 54969 -Thnk 64201 -Thnx 61699 -Tho 56170 -Thoda 59702 -Thoin 65452 -Thom 53662 -Thoma 64657 -Thomann 57653 -Thomas 38278 -Thomas's 59101 -ThomasNet 58919 -Thomash 63245 -Thomason 61699 -Thomaston 64905 -Thomastown 65452 -Thomasville 57785 -Thome 63792 -Thompson 45082 -Thompson's 57318 -Thompsons 61472 -Thoms 65452 -Thomsen 61152 -Thomson 42676 -Thomson's 64201 -ThomsonFN 65170 -ThomsonLocal 62917 -Thon 63245 -Thong 53211 -Thongs 58162 -Thor 54078 -Thor's 62469 -Thora 64657 -Thorac 52818 -Thoracic 51762 -Thorax 58802 -Thorburn 65452 -Thoreau 58577 -Thorens 60238 -Thorium 58745 -Thorman 65452 -Thorn 53695 -Thornberry 64657 -Thornburg 61584 -Thornbury 61472 -Thorndike 62613 -Thorne 56972 -Thornhill 57876 -Thornliebank 62066 -Thorns 59923 -Thornton 51078 -Thornton's 60157 -Thorntons 64905 -Thorogood 65170 -Thorold 58313 -Thorough 59227 -Thoroughbred 56827 -Thoroughfare 64905 -Thoroughly 59164 -Thorp 59101 -Thorpe 56110 -Thorson 63245 -Thorstein 63601 -Thorsten 59424 -Thorton 65452 -Those 42071 -Thott 61051 -Thottbot 52996 -Thou 54341 -Though 44742 -Thought 47823 -ThoughtWorks 65170 -Thoughtful 58365 -Thoughts 47489 -Thousand 49572 -Thousands 47645 -Thr 57482 -Thrace 63601 -Thrall 58979 -Thrallmar 64905 -Thrash 56756 -Thrasher 59923 -Thrashers 55500 -Thread 36391 -Thread's 58017 -ThreadBanger 65170 -ThreadGallery 58577 -Threadbanger 65452 -Threaded 47887 -Threadgill 64905 -Threading 55552 -Threadless 62762 -Threadneedle 65452 -Threads 43893 -Threat 47252 -ThreatCon 58113 -Threaten 61256 -Threatened 55474 -Threatening 58860 -Threatens 56687 -Threats 53038 -Three 39332 -Three's 62331 -Threesome 56935 -Threesomes 63419 -Threonine 63419 -Thresher 65170 -Threshing 65452 -Threshold 53470 -Thresholds 60000 -Threw 65452 -Thrice 61699 -Thrift 52832 -Thrifty 56050 -ThriftyFun 65452 -Thrill 55684 -ThrillOf 61699 -Thriller 50431 -Thrillers 54581 -Thrilling 65170 -Thrills 58860 -Thrips 62762 -Thrissur 63419 -Thrive 60580 -Thrivent 59164 -Thriving 60321 -Throat 52175 -Throbbing 64201 -Throckmorton 61152 -Thromb 57566 -Thrombin 63601 -Thrombocytopenia 63991 -Thromboembolism 64201 -Thrombolysis 64657 -Thrombosis 58365 -Thrombotic 65452 -Throne 54005 -Thrones 58979 -Throttle 54581 -Throttling 65452 -Through 41722 -Throughout 49065 -Throughput 58523 -Throw 49234 -Throwback 58979 -Throwdown 58979 -Throwdowns 63991 -Thrower 59292 -Throwers 63245 -Throwing 55448 -Thrown 57566 -Throws 54946 -Thru 53052 -Thrush 59560 -Thrust 57831 -Thrustmaster 62762 -Thrusts 64423 -Thruway 64423 -Thruxton 61699 -Ths 62917 -Tht 65170 -Thu 40263 -Thug 55711 -Thugs 58745 -Thuis 65452 -Thuja 65170 -Thule 54879 -Thulin 64423 -Thumb 50856 -Thumbnail 42905 -Thumbnails 52411 -Thumbplay 56827 -Thumbs 51700 -Thumbshots 59923 -ThummyT 65170 -Thump 62917 -Thumper 63245 -ThumperTalk 62613 -Thun 64657 -Thunder 46800 -Thunder's 63991 -Thunderball 61051 -Thunderbird 51877 -Thunderbirds 58632 -Thunderbolt 59702 -Thunderbolts 62762 -Thundercats 61818 -Thunderclap 64905 -Thunderdome 63792 -Thunderhawk 63792 -Thunderhorn 59164 -Thundering 60078 -Thunderlord 61152 -Thunderstone 57199 -Thunderstorm 61256 -Thunderstorms 62331 -Thunderstruck 65452 -Thuong 63245 -Thupten 64657 -Thur 59491 -Thurber 64201 -Thurgood 63245 -Thuringowa 64657 -Thurlow 63991 -Thurman 57278 -Thurman's 62917 -Thurrock 56293 -Thurs 54622 -Thursday 41208 -Thursday's 53549 -Thursdays 53377 -Thurso 61472 -Thurston 56293 -Thus 44694 -Thuy 63077 -Thwart 60321 -Thx 56827 -Thy 54151 -Thyme 58162 -Thymidine 62613 -Thymocytes 63991 -Thymus 61699 -Thyra 63601 -Thyroid 51721 -ThyssenKrupp 63601 -Thèmes 65452 -Théodore 65452 -Théorie 65170 -Théâtre 63419 -Ti 49494 -TiAl 64201 -TiC 58523 -TiLK 64657 -TiN 58919 -TiO 55299 -TiRED 64423 -TiVO 61472 -TiVo 51463 -Tia 56140 -Tiago 57566 -Tiamat 64423 -Tian 57609 -Tiana 62613 -Tiananmen 59292 -Tianjin 54813 -Tianna 64657 -Tiara 59101 -Tiaras 60856 -Tibbetts 64201 -Tibbitts 65452 -Tibco 63245 -Tiber 65452 -Tiberian 62762 -Tiberias 63601 -Tiberium 59630 -Tiberius 63991 -Tibet 51620 -Tibet's 62469 -Tibetan 49946 -Tibetans 61472 -Tibi 65170 -Tibia 57566 -Tibor 57122 -Tiburon 58365 -Tic 57046 -Ticats 64657 -Tice 62196 -Tichondrius 60238 -Ticino 62196 -Tick 51867 -Ticker 50067 -TickerChart 64905 -Tickers 58162 -Ticket 44205 -TicketMaster 64905 -TicketWeb 62469 -Ticketing 57199 -Ticketmaster 53729 -Tickets 37225 -TicketsNow 62469 -Ticking 65452 -Tickle 56721 -Tickled 63601 -Tickling 62917 -Ticks 61256 -Tico 63419 -Ticonderoga 64657 -TidBITS 57358 -Tidal 56262 -Tidbits 53066 -Tide 50758 -TideFans 62762 -Tides 55274 -Tidewater 59774 -Tidings 61818 -Tidsskr 63991 -Tidus 63792 -Tidwell 62331 -Tidy 58632 -TidyTent 64201 -Tie 48731 -Tied 54946 -Tiedt 65452 -Tielemans 57609 -Tielman 65452 -Tiempo 58470 -Tien 58860 -Tienda 61362 -Tier 48816 -TierOne 62762 -Tierarztl 63991 -Tiered 60580 -Tiernan 63245 -Tierney 54792 -Tierra 56420 -Tiers 63601 -Ties 50409 -Tiesto 57923 -Tietze's 65452 -Tifa 65170 -Tiff 56862 -Tiffani 62469 -Tiffanie 65452 -Tiffany 48243 -Tiffany's 59039 -Tiffen 60952 -Tiffin 60321 -Tifosi 65452 -Tift 64423 -Tifton 65452 -Tig 64201 -Tiga 60856 -Tigard 61472 -Tiger 45495 -Tiger's 59491 -TigerDirect 58162 -Tigercat 64905 -Tigernut 65452 -Tigers 47143 -Tigger 60952 -Tighe 64423 -Tight 50915 -Tighten 57653 -Tightening 61584 -Tightens 63792 -Tighter 64657 -Tightly 63792 -Tightrope 64201 -Tights 55821 -Tigi 63245 -Tignes 64423 -Tigran 65170 -Tigre 60238 -Tigrinya 63419 -Tigris 63245 -Tiguan 61362 -Tihs 64905 -Tijd 64905 -Tijdschr 58470 -Tijdschrift 65452 -Tijuana 57440 -Tika 63077 -Tikes 57046 -Tiki 52832 -TikiMovies 64905 -TikiWiki 58470 -Tikit 59702 -Tikiwiki 64905 -Tikka 60762 -Tikkabilla 58313 -Til 56756 -Tila 55934 -Tilak 64423 -Tilapia 63601 -Tilbud 65170 -Tilburg 56293 -Tilbury 60762 -Tilda 62196 -Tilden 60856 -Tile 46483 -Tiled 60078 -Tiler 64423 -Tilers 63792 -Tiles 51690 -Tiley 61940 -Tilghman 63991 -Tilia 64657 -Tiling 56652 -Till 51804 -Tillage 59774 -Tillamook 60762 -Tiller 60670 -Tillers 64423 -Tillery 64905 -Tilley 60580 -Tillie 65452 -Tillman 58632 -Tillotson 62066 -Tillsonburg 60762 -Tilly 58745 -Tilly's 63792 -Tilman 63991 -Tilsen 63419 -Tilston 64905 -Tilt 51166 -Tilting 60580 -Tilton 62762 -Tim 41821 -Tim's 57566 -TimCottee 62762 -TimW 65452 -Timah 62762 -Timaru 59923 -Timbaland 54151 -Timbale 65452 -Timber 49081 -Timberlake 49676 -Timberlake's 64423 -Timberland 52886 -Timberline 58802 -Timbermaw 58860 -Timbers 57653 -Timberwolves 56652 -Timbo 65452 -Timbuktu 63245 -Time 34594 -Time's 58919 -TimeDateFmt 60000 -TimeFmt 59848 -TimeMagazine 63792 -TimeNumber 63991 -TimeOnly 64423 -TimeShift 63419 -TimeSync 63792 -TimeValue 63991 -TimeZone 59630 -TimeZoneFmt 59923 -Timea 62613 -Timecode 64905 -Timed 57358 -Timefactor 65452 -Timeframe 62196 -Timeless 55323 -Timeline 47679 -Timelines 58212 -Timeliness 64423 -Timely 57084 -Timeout 59039 -Timeouts 64201 -Timepieces 61940 -Timer 51229 -Timers 55250 -Times 34542 -Times's 62917 -TimesJobs 64905 -TimesPulse 58919 -TimesSelect 63419 -Timescale 64657 -Timeshare 52175 -Timeshares 56356 -Timesheet 63601 -Timeslips 63245 -Timestamp 63419 -Timetable 54643 -Timetables 57785 -Timewatch 60405 -Timex 55821 -Timez 63792 -Timezone 59774 -Timing 50865 -Timings 63245 -Timiskaming 64657 -Timisoara 65452 -Timken 62762 -Timlin 65170 -Timm 61362 -Timmerman 62613 -Timmins 58162 -Timmons 61940 -Timms 64201 -Timmy 57358 -Timo 57741 -Timon 61051 -Timonium 64905 -Timor 48633 -Timorese 61256 -Timothy 46646 -Timothy's 62762 -Timpani 64657 -Timpson 62917 -Tims 62196 -Timur 60580 -TimurPerelmutov 64905 -Tin 50983 -Tina 46557 -Tina's 60952 -Tinbergen 63419 -Tinctures 65452 -Tindall 63991 -Tinderbox 65170 -Tine 61051 -Tinea 61472 -Tineke 65170 -Ting 53196 -Tingle 63792 -Tingling 60321 -Tings 55552 -Tinh 58017 -Tinie 63601 -Tink 63419 -Tinker 54792 -Tinkerbell 56231 -Tinley 58065 -Tinned 63419 -Tinnitus 57160 -Tino 57278 -Tins 58523 -Tinsel 62917 -Tinseltown 60405 -Tinsley 59164 -Tint 56551 -Tinted 56324 -Tintin 59923 -Tinting 58113 -Tinto 56618 -Tinton 62917 -Tints 64423 -Tiny 49049 -TinyMCE 63245 -TinyPic 53533 -TinyPortal 62917 -Tio 61940 -Tioga 57238 -Tiong 64201 -Tip 44470 -Tipe 59227 -Tipit 65170 -Tipline 60492 -Tipo 61152 -Tipp 63419 -Tippecanoe 59424 -Tipped 60670 -Tippee 65452 -Tipper 61256 -Tipperary 55849 -Tipping 55323 -Tippmann 59164 -Tipps 58745 -Tips 35020 -Tipster 63991 -Tipsy 61256 -Tipteerers 65452 -Tipteers 65452 -Tipton 57199 -Tir 59101 -Tirade 64905 -Tiramisu 63077 -Tirana 59491 -Tiras 59164 -Tire 45840 -Tired 51453 -Tiredness 63991 -Tiree 64201 -Tires 47170 -Tirisfal 61472 -Tirol 59923 -Tirta 64423 -Tiruchirapalli 64423 -Tirunelveli 63245 -Tirupati 61152 -Tis 60321 -Tisai 63245 -Tisbury 65170 -Tiscali 53346 -Tisch 63991 -Tiscover 61584 -Tisdale 53796 -Tisdale's 62331 -Tish 59630 -Tisha 60580 -Tishman 62917 -Tissot 61256 -Tissue 47307 -Tissues 56388 -Tissular 65452 -Tit 55877 -Titan 49044 -Titan's 61152 -Titania 62331 -Titanic 53917 -Titanium 49464 -Titans 50584 -Titantron 62762 -Tite's 65170 -Titebond 65452 -Titec 64423 -Titel 59774 -Titers 65452 -Tithe 61699 -Titi 61584 -Titian 63991 -Titik 61940 -Title 34943 -Titled 61256 -Titleist 55552 -Titles 37897 -Titling 65170 -Titlovi 64657 -Titmuss 62196 -Tito 54664 -Titra 63991 -Titration 62917 -Titre 49325 -Tits 48706 -Titties 59101 -Tittle 63245 -Titty 58745 -Titulky 61256 -Titus 55274 -Titusville 59491 -Tiverton 62613 -Tivo 59630 -Tivol 64905 -Tivoli 50823 -Tiwari 61051 -Tix 59424 -Tizard 61940 -Tiziana 63419 -Tiziano 63419 -Tj 60000 -Tjaden 64423 -Tjader 64423 -Tjek 63792 -Tk 58688 -Tkachenko 63419 -Tkachuk 64905 -Tl 60157 -TlH 61152 -Tlic 64905 -Tlie 59848 -Tm 57696 -Tmax 62917 -Tmobile 63991 -Tn 56021 -TnI 64657 -TnL 62331 -Tne 65170 -To 28813 -To's 58262 -ToC 62469 -ToDo 64657 -ToGo 63991 -ToView 59357 -Toa 60000 -Toad 54283 -ToadBuster 62066 -Toadies 64657 -Toads 63601 -Toast 52546 -Toasted 58577 -Toaster 56140 -Toasters 59774 -Toasting 64657 -Toastmaster 62469 -Toastmasters 58632 -Toasts 63991 -Toate 65170 -Toba 60238 -Tobacco 48341 -Tobago 46429 -Tobey 59774 -Tobi 57199 -Tobias 52858 -Tobie 65170 -Tobin 54321 -Tobin's 64423 -Toby 50178 -Toby's 64905 -Toca 61362 -Tocca 65452 -Toccata 63601 -Tocco 62613 -Toccoa 64423 -Tochigi 64657 -Tock 61362 -Tockholes 63601 -Tocqueville 62331 -Tocris 65170 -Tod 58632 -Toda 59560 -Todas 62196 -Today 36102 -Today's 39195 -Todays 52752 -Todd 45155 -Todd's 59164 -Toddler 47698 -Toddler's 62613 -Toddlers 51184 -Todds 63419 -Todi 63077 -Todmorden 63792 -Todo 56551 -Todorovic 64657 -Todos 55963 -Toe 50932 -Toefl 63601 -Toei 65170 -Toenail 65170 -Toenails 63601 -Toeplitz 63991 -Toes 57084 -TofS 62762 -Toffee 59848 -Toffler 64423 -Tofino 57482 -Tofranil 65452 -Toft 63245 -Tofu 57160 -Tog 65452 -Together 45972 -Toggle 46506 -Toggles 65452 -Togo 47044 -Toh 62613 -Tohmatsu 63077 -Toho 64201 -Tohoku 56862 -Tohru 63991 -Toi 59292 -Toile 61472 -Toilet 49097 -Toiletries 57831 -Toiletry 61051 -Toilets 53796 -Toilette 54519 -Toit 62066 -Tok 59424 -Tokai 59164 -Tokaido 63419 -Tokay 64657 -Toke 61472 -Tokelau 49523 -Token 54399 -Tokens 56899 -Toki 60492 -Tokidoki 65452 -Tokimeki 64905 -Tokina 62762 -Tokio 55373 -Tokko 64905 -Toklau 62917 -Toko 63991 -Tokugawa 63419 -Tokushima 64201 -Tokyo 43970 -Tokyo's 61152 -Tokyu 64201 -Tol 64201 -TolMol 63601 -Toland 64905 -Tolar 65452 -Tolbert 64657 -Told 53882 -Toledo 50409 -Tolerability 63601 -Tolerable 63792 -Tolerance 52886 -Tolerances 62917 -Tolerant 61152 -Tolerate 59227 -Toles 60078 -Tolima 62613 -Tolisha 65452 -Tolkien 57318 -Tolkien's 64905 -Toll 44931 -Tolland 61940 -Tolle 62331 -Tolleson 62331 -Tolley 65170 -Tolls 61699 -Tollway 64657 -Tollywood 60238 -TollywoodBollywood 65452 -Tolmer 61818 -Tolpis 62469 -Tolstoy 59292 -Tolstoy's 63792 -Toluca 60670 -Toluene 61362 -Tolzey 56585 -Tom 39148 -Tom's 49541 -TomKat 64905 -TomKatCrazy 64201 -TomTom 50461 -Toma 61152 -Tomahawk 58212 -Tomales 62331 -Toman 65452 -Tomas 54188 -Tomasi 64905 -Tomaso 59292 -Tomasz 58162 -Tomato 50164 -Tomatoes 51358 -Tomatometer 59227 -Tomb 50402 -Tomball 60405 -Tombow 64201 -Tomboy 65170 -Tombs 60238 -Tombstone 58523 -Tomcat 55849 -Tome 48487 -Tomei 60952 -Tomek 64905 -Tomer 64423 -Tomes 64201 -Tomi 62331 -Tominaga 63792 -Tomisimo 64423 -Tomislav 63245 -Tomita 62331 -Tomkins 62613 -Tomko 62331 -Tomlin 56356 -Tomlinson 55766 -Tommaso 60856 -Tommie 62613 -Tommy 46648 -Tommy's 59630 -Tomo 62469 -Tomography 57199 -Tomohiro 63077 -Tomoko 62331 -Tomorrow 48300 -Tomorrow's 53830 -Tomorrows 63792 -Tomoyo 64423 -Tompkins 53662 -Toms 55037 -Tomtom 58262 -Tomy 60580 -Tomàn 64423 -Tomás 59848 -Tomé 57009 -Ton 53454 -Tonal 63419 -Tonalin 63792 -Tonawanda 62196 -Tonberry 63792 -Tonbridge 56756 -Tone 50662 -Toned 61940 -Tonelli 63792 -Toner 48643 -Toners 53316 -Tones 53847 -Toney 60670 -Tong 53988 -Tong's 64423 -TongRo 62196 -Tonga 46922 -Tongan 61584 -Tongs 61818 -Tongue 53124 -Tongues 60157 -Toni 51148 -Tonia 62613 -Tonic 56293 -Tonight 47297 -Tonight's 55423 -Toning 60238 -Tonk 62196 -Tonka 58313 -Tonkin 63419 -Tonks 65170 -Tonnage 52818 -Tonneau 59560 -Tonner 64423 -Tonnes 63245 -Tonquin 59292 -Tons 51387 -Tonsil 61256 -Tonsillectomy 63245 -Tonsoni 65452 -Tonto 63991 -Tony 41921 -Tony's 56050 -TonyHoyle 65452 -Tonya 56935 -Tonypandy 63601 -Too 42803 -TooToo 60762 -TooToo's 65170 -Tooele 61940 -Took 53052 -Tool 42349 -ToolBar 61584 -ToolBox 63792 -ToolKit 42782 -Toolbar 41868 -Toolbars 57524 -Toolbelt 61584 -Toolbox 39311 -Toole 62613 -Tooled 64905 -Toolfetch 61472 -Tooling 55821 -Toolkit 49452 -Toolkits 59774 -Tools 33895 -ToolsVideowall 55963 -Toolset 59923 -Toolstation 62917 -Tooltip 60670 -Toombs 61362 -Toomey 64201 -Toon 54519 -Toonami 60762 -Toons 55766 -Toontown 62331 -Toonz 65452 -Toorak 64657 -Toot 63792 -Tooter 65452 -Tooth 51867 -Toothache 64201 -Toothbrush 57482 -Toothbrushes 62066 -Toothpaste 55766 -Toothpick 63601 -Tooting 61472 -Toots 61584 -Tootsie 56827 -Tootsies 64905 -Toowong 63419 -Toowoomba 55906 -Top 30526 -TopCoder 59101 -TopGear 63077 -TopLevelEntryCount 61699 -TopLink 62196 -TopNews 60952 -TopOfBlogs 58802 -TopSeller 63245 -TopTenREVIEWS 63077 -Topaccolades 63419 -Topamax 59164 -Topanga 61472 -Topas 65452 -Topaz 54857 -Topbox 63419 -Topco 62917 -Tope 63245 -Topeak 62196 -Topeka 54283 -Topfield 58365 -Topham 65170 -Topher 64201 -Topiary 63792 -Topic 38343 -Topic's 58577 -TopicCraze 62613 -Topica 58860 -Topical 51590 -Topics 36390 -Topicspreview 63245 -Topix 44935 -Topkapi 63991 -Topless 55738 -Topline 63245 -Toplist 57785 -Topload 65452 -Topmodel 64905 -Topo 55500 -Topoclusters 62762 -Topographic 56972 -Topographical 63419 -Topography 58417 -Topoisomerase 62331 -Topological 60078 -Topologies 62613 -Topology 55373 -Toppa 61940 -Toppan 65170 -Topped 59357 -Topper 57084 -Toppers 55014 -Topping 57876 -Toppings 63991 -Topps 52484 -Topracks 65170 -Tops 47235 -TopsGrizzly 65170 -Topsail 61584 -Topseller 65452 -Topshop 61584 -Topside 64905 -Topsite 63792 -Topsites 57084 -Topsoil 63792 -Topstar 63792 -Topsy 65170 -Tor 53695 -Tora 61699 -Torah 54560 -Toray 65170 -Torbay 57609 -Torben 61472 -Torch 53196 -Torches 57122 -Torchic 65170 -Torchwood 57238 -Torco 62762 -Tore 61818 -Toreador 61256 -Torfaen 60405 -Torgerson 65452 -Tori 52622 -Toric 58802 -Tories 55684 -Torii 62196 -Torino 55178 -Tork 64905 -Torment 60078 -Torn 57741 -Tornado 52584 -Tornadoes 59630 -Tornados 64201 -Torneo 62331 -Tornoe 65452 -Toro 53712 -Toronto 41767 -Toronto's 57399 -Toros 61699 -Torpedo 57970 -Torpedoman's 54727 -Torq 62613 -Torquay 55604 -Torque 52423 -Torr 57741 -Torrance 54969 -Torre 54622 -Torrens 60670 -Torrent 41614 -TorrentBox 55014 -TorrentFinder 63792 -TorrentFreak 56110 -TorrentFreedom 63991 -TorrentHound 58470 -TorrentPortal 53533 -TorrentReactor 57238 -TorrentScan 57199 -TorrentSearch 58313 -TorrentTab 63792 -Torrente 62331 -Torrentreactor 61818 -Torrents 44197 -Torrentz 53109 -Torreon 63792 -Torres 50662 -Torresen 62469 -Torrevieja 64905 -Torrey 58523 -Torrid 61940 -Torridon 64657 -Torrie 60952 -Torrington 57524 -Torro 65170 -Torrone 62196 -Torrrent 65452 -Torry 63419 -Torshavn 65452 -Torsion 61699 -Torsional 62613 -Torso 61472 -Torstar 61256 -TorstarDigital 61362 -Torsten 59774 -Tort 56080 -Torta 65452 -Torte 64423 -Tortenelem 65452 -Tortheldrin 60762 -Torti 64423 -Tortie 62331 -Tortilla 57524 -Tortillas 61699 -Tortoise 56262 -Tortoises 64905 -Tortola 59424 -Torts 56200 -Tortuga 62331 -Tortugas 62762 -Tortuous 64657 -Torture 53109 -Tortured 62917 -Tortus 65452 -Toru 61472 -Torun 64905 -Torus 65170 -Torvald 65452 -Torvalds 61152 -Torx 62331 -Tory 51670 -Tos 60856 -Tosca 61362 -Toscana 59560 -Toscano 57440 -Tosco 62762 -Toseland 62196 -Tosh 59227 -Toshi 65452 -Toshiaki 62762 -Toshiba 45924 -Toshiba's 61584 -Toshihiko 65170 -Toshihiro 65170 -Toshio 60492 -Toshiya 64905 -Toshiyuki 62613 -Toshokan 64201 -Toshoku 64905 -Tosi 63991 -Toslink 65452 -Toss 54792 -Tossa 63077 -Tossed 60580 -Tossing 63991 -Tot 55934 -Total 34867 -TotalCare 63419 -TotalStorage 63077 -TotalVid 62917 -Totaling 63601 -Totaljobs 63077 -Totally 49590 -Totals 49932 -Tote 48692 -Totem 56293 -Totes 53613 -Toth 58688 -Totnes 63077 -Toto 56618 -Totoro 65170 -Totowa 65452 -Tots 56262 -Totten 60405 -Tottenham 52534 -Totti 62469 -Totton 64905 -Tottori 62331 -Tou 64201 -Touareg 57876 -Toucan 61818 -Touch 43258 -TouchLocal 56899 -Touchdown 58313 -Touche 57084 -Touched 59702 -Touches 60492 -Touching 56791 -Touchless 65170 -Touchpad 59702 -Touchscreen 57046 -Touchstone 58745 -Tough 50227 -ToughBook 60670 -Toughbook 61362 -Toughened 65170 -Tougher 53847 -Toughest 58113 -Toughness 62613 -Touhy 63419 -Toulon 59702 -Toulouse 54879 -Tour 38987 -Tour's 61818 -Tourbillon 65170 -Toure 63601 -Tourer 61818 -Tourette 57923 -Tourette's 62196 -Touring 49695 -Tourism 41945 -Tourisme 61256 -Tourismus 62613 -Tourist 46766 -Touristic 64657 -Tourists 54601 -Tourmaline 60078 -Tournament 44933 -Tournaments 49913 -Tourney 57970 -Tours 42427 -ToursPromotions 61256 -Tous 55992 -Tousen 60952 -Toussaint 61940 -Tout 59227 -Toute 49394 -Toutes 62762 -Touts 59357 -Tov 63245 -Tova 63245 -Tove 63792 -Tovrea 63601 -Tow 52435 -Towables 64657 -Towanda 63419 -Toward 50890 -Towards 50094 -Towbar 55992 -Towcester 63601 -Towed 62762 -Towel 50906 -Towels 51877 -Tower 43074 -Tower's 62762 -Towering 62469 -Towers 49547 -Towing 50115 -Towle 58417 -Towleroad 63991 -Town 38347 -Town's 56899 -Towne 55906 -TownePlace 63792 -Townend 65452 -Towner 64423 -Townes 61256 -Townhall 56652 -Townhalls 57696 -Townhome 59292 -Townhomes 57009 -Townhouse 54283 -Townhouses 55766 -Townley 63601 -Towns 48505 -Townsend 51293 -Townsend's 63601 -Townshend 59630 -Township 46099 -Township's 62917 -Townships 59101 -Townsville 54059 -Towra 60157 -Towsley 64657 -Towson 56080 -Tox 63419 -Toxic 50206 -Toxicity 51600 -Toxicol 55037 -Toxicological 58919 -Toxicology 50856 -Toxics 59292 -Toxin 59560 -Toxins 58262 -Toxoplasma 59848 -Toy 44688 -Toya 64905 -Toyama 61818 -Toybox 64657 -Toyo 58417 -Toyota 43023 -Toyota's 58417 -Toys 38073 -Toyshop 64423 -Toyz 62613 -Tozer 65452 -Tozzi 64905 -Tp 59774 -Tpit 63077 -Tpke 62469 -Tr 55552 -Tra 60856 -TraVerus 65452 -Trabajo 60405 -Trabalho 64423 -Trabuco 62469 -Trac 46365 -TracBrowser 55250 -TracRevisionLog 62331 -Trace 50263 -Traceability 63601 -Traceback 63245 -Tracer 56452 -Traceroute 58523 -Tracers 64905 -Traces 57399 -Tracey 51670 -Tracfone 62331 -Tracheal 61940 -Trachoma 63792 -Trachtenberg 60952 -Traci 55037 -Tracie 58919 -Tracing 55604 -Track 38809 -TrackBack 46896 -TrackBacks 53549 -TrackMania 58162 -Trackback 49279 -Trackbacks 47787 -Trackball 62762 -Trackballs 64657 -Trackdays 64905 -Tracked 53729 -Tracker 43523 -Trackers 52597 -Trackin 64201 -Tracking 44401 -Tracklist 55766 -Tracklisting 58365 -Trackmania 60078 -Trackpad 64657 -Tracks 45155 -Trackside 61256 -Tracksuit 63419 -Tracksuits 63792 -Tracom 61472 -Tract 52221 -Traction 53533 -Tractor 50807 -Tractors 54727 -Tracts 58860 -Tracy 47622 -Tracy's 62066 -Trad 59702 -Trade 37957 -TradeKey 62469 -TradeMall 57160 -TradeManager 57831 -TradeSafe 65452 -TradeStation 63792 -Tradebit 61818 -Traded 57199 -Tradekey 60157 -Trademark 47537 -Trademarks 44533 -Trader 46440 -Trader's 62331 -Traders 51762 -Trades 48510 -Tradeshow 56862 -Tradeshows 58577 -Tradeskills 63991 -Tradesman 61818 -Tradesmen 59424 -Tradevman 54727 -Tradevv 64905 -Tradewinds 64423 -Tradex 65452 -Trading 41417 -TradingMarkets 63601 -TradingPost 65170 -Tradition 52085 -Traditional 44286 -Traditionally 58417 -Traditions 52387 -Traduca 63245 -Traducciones 63077 -Traducción 63419 -Traduceri 63419 -Traduction 63792 -Traduisez 63792 -Traduza 63077 -Traduzca 61940 -Traduzioni 62917 -Tradução 61818 -Trae 60580 -Trafalgar 54321 -Traffic 40327 -TrafficZ 50545 -TrafficZ's 60492 -Trafficking 56652 -Trafford 55037 -Trafic 61818 -Tragedy 53662 -Trager 63077 -Tragic 58632 -Tragically 64423 -Trahan 63991 -Traian 63792 -Traidcraft 62762 -Trail 43854 -Trailblazer 56518 -Trailblazers 58113 -Trailer 41573 -Trailerhits 59923 -Trailering 63245 -Trailers 43116 -Trailhead 59774 -Trailing 59424 -Trails 48524 -Train 44902 -Trained 56140 -Trainee 51000 -Trainees 58745 -Traineeships 63601 -Trainer 48667 -Trainer's 63601 -Trainers 49959 -Training 36481 -TrainingQuizzesMore 64905 -Trainings 58365 -Trains 50122 -Trainspotting 64657 -Trainwrecks 64905 -Trait 61256 -Traitement 57318 -Traitor 61051 -Traitors 65170 -Traits 57399 -Trajectories 62613 -Trajectory 57524 -Traktor 58470 -Tralee 63601 -Tram 55963 -Tramadol 45699 -Trammell 62917 -Tramp 59702 -Trample 63991 -Trampoline 56585 -Trampolines 60000 -Trampolining 63077 -Tramps 63077 -Trams 63601 -Tramway 62469 -Tran 51193 -Trance 47140 -Tranche 65170 -Trane 60321 -Trang 57199 -Trangia 61818 -Tranmere 59630 -Trannies 64657 -Tranny 55037 -Tranquil 59101 -Tranquility 55398 -Tranquillity 63077 -Trans 47687 -TransAtlantic 52387 -TransFlash 63419 -TransPerfect 65170 -TransWorld 60762 -Transact 62331 -Transaction 49359 -Transactional 59630 -Transactions 44865 -Transactivation 63601 -Transalp 65452 -Transamerica 59357 -Transat 52725 -Transatlantic 57009 -Transaxle 63419 -Transbay 60492 -Transboundary 61940 -Transcatheter 64657 -Transceiver 58802 -Transceivers 59101 -Transcend 56080 -Transcendental 62331 -Transco 65452 -Transcontinental 57785 -Transcranial 63601 -Transcribed 61256 -Transcriber 61362 -Transcript 50966 -Transcriptase 64423 -Transcription 50915 -Transcriptional 56021 -Transcriptions 60670 -Transcripts 51220 -Transderm 63077 -Transdermal 62331 -Transducer 59164 -Transducers 56687 -Transduction 59039 -Transesophageal 65452 -Transexual 60856 -Transexuals 64201 -Transfected 63419 -Transfection 59630 -Transfer 42175 -Transferable 63419 -Transference 65170 -Transferencia 61362 -Transfering 61152 -Transferred 58979 -Transferrin 63991 -Transferring 57199 -Transfers 49400 -Transfert 62917 -Transfiguration 64423 -TransfiriendoCenter 59292 -Transform 52141 -Transformants 64905 -Transformation 49620 -Transformational 60157 -Transformations 57524 -Transformative 62762 -Transformed 57318 -Transformer 55226 -Transformers 47034 -Transforming 54664 -Transforms 59630 -Transfus 62196 -Transfusion 56585 -Transgender 55684 -Transgendered 60492 -Transgenic 56827 -Transient 53226 -Transients 64423 -Transistor 54499 -Transistors 57399 -Transit 47332 -Transition 48390 -Transitional 50615 -Transitioning 63419 -Transitions 53470 -Transits 65170 -Translate 47097 -Translated 51741 -Translates 63792 -Translating 58365 -Translation 45949 -Translational 59164 -Translations 49751 -Translator 53454 -Translators 54835 -Transliteration 63419 -Translocation 60856 -Translucent 58860 -Transm 63077 -Transmembrane 62331 -Transmenu 64201 -Transmetropolitan 60405 -Transmission 45734 -Transmissions 53423 -Transmit 58632 -Transmittal 57653 -Transmitted 57009 -Transmitter 52996 -Transmitters 56791 -Transmitting 65170 -Transnational 57009 -Transocean 64905 -Transom 60670 -Transpacific 59630 -Transparencies 61699 -Transparency 53211 -Transparent 51087 -Transperth 64201 -Transplant 50702 -Transplantation 51899 -Transplanted 64905 -Transplanting 63245 -Transplants 59039 -Transpo 63077 -Transponder 62196 -Transport 41649 -Transportation 40422 -Transportation's 63245 -Transporter 56687 -Transporters 57970 -Transporting 60762 -Transports 57566 -Transposition 63601 -Transsexual 56899 -Transsexuals 65170 -Transsiberian 57566 -Transtector 63991 -Transthoracic 64905 -Transunion 64905 -Transurethral 64905 -Transvaal 59774 -Transverse 56972 -Transvestite 61256 -Transwell 63245 -Transworld 57876 -Transylvania 58632 -Transylvanian 65452 -Trantor 65452 -Trap 50832 -Trapani 63991 -Trapeze 63601 -Trapezius 64423 -Trapezoid 65170 -Trapp 61362 -Trapped 56110 -Trapper 59702 -Trapping 58632 -Trappist 65452 -Traps 53970 -Traquair 65452 -Trash 49229 -Trashcan 63601 -Trashcatchers 63245 -Trashed 64201 -Trashionista 63792 -Trashy 62469 -Trask 61051 -Trassem 64905 -Trastorno 60580 -Tratamiento 58860 -Trattoria 59491 -Traub 63792 -Traubert 64905 -Traum 62613 -Trauma 50890 -Traumatic 56080 -Traumatized 62331 -Traumatol 60670 -Traumatology 64201 -TravBuddies 61940 -TravBuddy 62331 -Travail 61584 -Travan 61051 -Travel 32560 -TravelBlog 61584 -TravelDock 64905 -TravelMail 63077 -TravelMate 60238 -TravelPod 63792 -TravelSmith 58919 -Travelbug 58417 -Traveled 57831 -Traveler 45533 -Traveler's 55373 -Travelers 49802 -Travelex 63601 -Travelgear 61051 -Traveling 50277 -Travelistic 65452 -Travelled 64423 -Traveller 51660 -Traveller's 59702 -Travellers 53286 -Travellerspoint 63245 -Travelling 52597 -Travelmate 60405 -Travelocity 51482 -Travelocity's 62196 -Travelodge 55578 -Travelogs 60952 -Travelogue 62917 -Travelogues 59357 -Travelon 59560 -Travels 51793 -Travers 58417 -Traversal 62613 -Traverse 53830 -Travertine 63245 -Travertino 64423 -Travian 61699 -Travis 47370 -Travisocietydotcom 65452 -Travolta 59039 -Trawler 62917 -Trax 56262 -Traxsource 63601 -Traxx 61362 -Traxxas 59039 -Tray 50807 -Traylor 65452 -Trays 52484 -Trazodone 61472 -Tre 57440 -Treacher 64201 -Treachery 64905 -Treacy 65170 -Tread 57084 -Treader 64905 -Treadmill 55849 -Treadmills 59039 -Treads 64201 -Treadway 63792 -Treadwell 64657 -Treason 61584 -Treasure 48571 -Treasured 61152 -Treasurer 49336 -Treasurer's 56200 -Treasurers 62331 -Treasures 51175 -Treasuries 62917 -Treasury 46277 -Treasury's 60157 -Treat 49028 -Treated 54479 -Treaties 57482 -Treating 52315 -Treatise 60762 -Treatises 63419 -Treatment 40757 -Treatments 47356 -Treats 51175 -Treaty 48638 -Trebek 65452 -Treble 59164 -Trebor 65452 -Trebuchet 62331 -Treburon 63792 -Trecho 64657 -Tree 41155 -TreeHugger 58632 -TreeView 61362 -Treehouse 58979 -Treehugger 62762 -Trees 46226 -Treestands 64905 -Treeview 65452 -Treforest 62762 -Treg 61699 -Trego 64657 -Treisman 63245 -Trejo 65170 -Trek 48013 -Trek's 62917 -TrekEarth 63077 -Trekker 63419 -Trekking 55373 -Treks 60580 -Trelawny 63077 -Trellis 59702 -Tremaine 62917 -Tremblant 63991 -Tremblay 61152 -Tremble 65452 -Trembley 64905 -Trembling 64657 -Tremendous 61584 -Tremolo 61051 -Tremont 56687 -Tremonton 63077 -Tremor 61051 -Tremors 62917 -Tremp 61699 -Tren 64657 -Trench 56021 -Trenches 61472 -Trend 47367 -Trending 61699 -Trends 42790 -Trendsetter 64905 -Trendy 53988 -Trengganu 62917 -Trent 49959 -Trent's 64657 -Trentham 65452 -Trentino 63991 -Trento 62196 -Trenton 52509 -Trentonian 64201 -Treo 48381 -Treponema 59101 -Tres 55578 -Tresilian 63991 -Tresor 64905 -Trespass 62331 -Tress 65170 -Tressel 62066 -Trestle 64201 -Tretinoin 63601 -Trev 63077 -Treva 64201 -Trevi 61818 -Trevino 62613 -Trevis 64905 -Treviso 64905 -Trevor 48761 -Trevor's 62762 -Trevose 62196 -Trex 60078 -Trexler 64905 -Trey 53779 -Treyarch 64905 -Tri 51856 -TriBeCa 63419 -TriState 62762 -Triad 55711 -Triage 56652 -Triaged 63077 -Trial 39939 -Triality 62613 -Trials 47710 -Trialware 60157 -Triangle 48846 -Triangles 61940 -Triangular 59560 -Triangulation 61256 -Trianon 63601 -Trias 63245 -Triassic 59039 -Triathlete 63419 -Triathletes 61699 -Triathlon 50046 -Trib 60238 -Tribal 50178 -Tribe 51113 -Tribe's 64905 -Tribeca 53662 -Tribes 53746 -Triblocal 58523 -Tribology 61362 -Tribu 65170 -Tribulation 60856 -Tribulations 62917 -Tribulus 63245 -Tribunal 52141 -Tribunals 60670 -Tribune 44297 -Tribune's 60157 -Tributaries 64423 -Tributary 63792 -Tribute 47297 -Tributes 54283 -Trice 58688 -Triceps 65452 -Trichoderma 60856 -Trichomonas 62917 -Trichophyton 62066 -Trichy 56721 -Tricia 54664 -Tricity 61362 -Trick 48487 -Tricked 65452 -Trickery 64905 -Tricking 65170 -Trickle 63419 -Tricks 46220 -Trickster 59039 -Tricky 57238 -Trico 63792 -Tricycle 62196 -Tricyclic 63601 -Tricykahkiche 65170 -Trident 56262 -Tried 52805 -Triennial 64201 -Trier 60952 -Tries 51008 -Trieste 60000 -Trifarina 63792 -Trifecta 63991 -Trifle 62066 -Trifles 65452 -Trifold 65452 -Trig 62066 -Trigeminal 63792 -Trigeneration 60580 -Trigg 60321 -TriggASPNETFormGen 62917 -Trigger 50932 -Triggered 64905 -Triggering 63077 -Triggers 59101 -Triglyceride 63419 -Triglycerides 61940 -Trigueño 64657 -Trigun 60321 -Trijicon 63792 -Trike 61818 -Trikes 62917 -Trilateral 61818 -Trilha 65452 -Trill 61051 -Trillian 61699 -Trillion 56827 -Trillium 60000 -Trilogy 52832 -Trim 48300 -TrimTrailingSpaces 62331 -Trimax 61362 -Trimble 57785 -Trimester 59774 -Trimethoprim 65170 -Trimix 64657 -Trimm 64905 -Trimmed 59357 -Trimmer 54519 -Trimmers 57566 -Trimming 57199 -Trimmings 63601 -Trimox 65170 -Trims 57278 -Trina 56791 -Trincomalee 59357 -Trine 65452 -Tring 63077 -Trinh 63077 -Trinidad 45806 -Trinidadian 65170 -Trinity 46989 -Trinity's 62331 -Trinket 58365 -Trinny 63245 -Trinzic 64201 -Trio 49405 -Triomphe 64423 -Trion 64657 -Trip 42513 -TripAdvi 61940 -TripAdvisor 44900 -TripAdvisor's 64201 -TripSay 65170 -Tripadvisor 61699 -Tripartite 64657 -Tripathi 64423 -Triphosphate 65170 -Triple 46540 -TripleCobra 62762 -Triples 63245 -Triplet 63245 -Triplets 63077 -Triplett 63077 -Triplex 60762 -Triplicate 64657 -Tripod 53796 -Tripods 55202 -Tripoli 58745 -Tripp 55299 -Tripper 62196 -Trippin 64905 -Tripping 58470 -Tripple 65170 -Trippy 62917 -Trips 47228 -Triptych 65170 -Tripura 58065 -Tripwire 60952 -Tris 54727 -Trish 53549 -TrishTheCattt 63601 -Trisha 54283 -Trista 62196 -Tristan 53847 -Tristar 60580 -Tristate 57160 -Triste 62917 -Tristram 62066 -Triticum 61818 -Tritium 62331 -Triton 51069 -Tritt 61051 -Triumph 50122 -Triumphant 62762 -Triumphs 65170 -Trivandrum 55526 -Trivedi 64423 -Trivett 64201 -Trivia 46840 -Trivial 60762 -Trivium 61584 -Trix 63245 -Trixie 59630 -Trizma 60000 -Trizol 63077 -Trl 55711 -Trobe 60670 -Trocadero 64423 -Trochetia 63792 -Trofeo 62917 -Trogdon 64657 -Trogir 61584 -Troika 63991 -Troilus 64657 -Trois 60856 -Trojan 51444 -Trojans 54685 -Troll 54283 -Trollbane 59357 -Trolley 53613 -Trolleys 57358 -Trollies 65452 -Trolling 57440 -Trollope 64657 -Trolls 56862 -Trombone 56518 -Trombones 64657 -Tromelin 61472 -Tron 60000 -Trond 63991 -Trondheim 61940 -Tronic 65452 -Troon 63419 -Troop 53952 -Trooper 52791 -Trooper's 60952 -Troopergate 59774 -Troopers 57199 -Trooping 65170 -Troops 52739 -Trop 53796 -Tropa 59560 -Tropez 58745 -Trophic 63601 -Trophies 55084 -Trophy 49979 -Tropic 53830 -Tropical 44829 -Tropicana 56200 -Tropics 58417 -Tropitone 60580 -Troponin 64657 -Trossachs 64201 -Trot 61152 -Trotsky 62917 -Trott 63991 -Trotter 57696 -Trotters 63991 -Trotting 62613 -Troubadour 62469 -Trouble 47717 -Troubled 54643 -Troublemaker 64657 -Troubles 56935 -Troubleshoot 58365 -Troubleshooter 60321 -Troubleshooting 46986 -Troubling 63991 -Trough 59923 -Troup 62196 -Troupe 59164 -Troupin 63792 -Trousdale 65170 -Trouser 59923 -Trousers 54226 -Trout 52118 -Troutman 62917 -Trova 64201 -Trovafloxacin 63601 -Trove 57923 -Trovit 53361 -Trowbridge 59227 -Troy 47687 -Troy's 64657 -Troyer 64905 -Troyes 63601 -Trp 61256 -Trpanj 64905 -Tru 56899 -TruBrite 63792 -TruSurround 65452 -Truancy 62917 -Trubs 63792 -Truc 65452 -Trucchi 65452 -Truchet 63991 -Truck 42793 -Truckee 59702 -Trucker 55037 -Truckers 55963 -Trucking 51122 -Truckload 64657 -Truckloads 65170 -Trucks 45761 -Trude 63991 -Trudeau 60000 -Trudy 56231 -True 42935 -TrueCrypt 64905 -TrueFire 63077 -TrueFireTV 63991 -TrueHD 64905 -TrueHoop 65452 -TrueLocal 54399 -TruePrice 61472 -TrueType 57609 -Truemors 64905 -Truesdale 58212 -Truex 64423 -Truffaut 64423 -Truffaut's 65170 -Truffle 57440 -Truffles 57696 -Truggy 64905 -Truitt 64905 -Trujillo 57876 -Truk 65170 -Trulear 64201 -Trulia 45850 -Trulia's 57440 -Trulli 65452 -Truly 52635 -Truman 53581 -Truman's 63792 -Trumbull 59101 -Trump 52673 -Trump's 65452 -Trumpet 53501 -Trumpeter 59227 -Trumpets 62917 -Trumpette 65170 -Trumps 59491 -Truncate 65452 -Truncated 64657 -Truncation 60492 -Trundle 60856 -Trung 62196 -Trunk 51570 -Trunking 59560 -Trunks 59560 -Truong 61051 -Truro 55877 -Trushkin 63245 -Truss 57084 -Trussell 60952 -Trusses 63077 -Trusso 65452 -Trust 41290 -Trust's 57696 -TrustPass 57009 -Trusted 47672 -TrustedPlaces 63792 -TrustedReviews 63419 -Trustee 50646 -Trustee's 64657 -Trustees 49201 -Trusteeship 64657 -Truster 62066 -Trusting 63991 -Trustive 57046 -Trusts 48980 -Trustworthy 62762 -Trusty 64657 -Truth 45292 -Truthiness 64201 -Truths 56518 -Truvativ 65452 -Truveo 49926 -Truviso 65452 -Truvo 65452 -Try 39973 -Tryarr 63792 -Trying 48454 -Tryon 60492 -Tryout 61699 -Tryouts 58860 -Trypanosoma 57009 -Trypsin 63792 -Tryptophan 62066 -Tryst 63792 -Trysting 64905 -Très 64905 -Ts 57609 -Tsai 56356 -Tsang 60405 -Tsao 65452 -Tsar 62196 -Tsatsouline 64905 -Tsawwassen 62762 -Tse 59560 -Tseng 60762 -Tshirt 58113 -Tshirts 61256 -Tshwane 60762 -Tsien 64423 -Tsikot 64905 -Tsim 59923 -Tsing 64657 -Tsinghua 58745 -Tsismis 63419 -Tso 63245 -Tsonga 61940 -Tsotsi 63991 -Tsu 64905 -Tsuba 63792 -Tsubasa 58365 -Tsuchiya 63601 -Tsuda 65452 -Tsuen 63991 -Tsui 58262 -Tsuji 63601 -Tsukada 65452 -Tsukai 62331 -Tsukaima 60157 -Tsuki 61051 -Tsukihime 63419 -Tsukuba 59101 -Tsuna 61699 -Tsunami 53813 -Tsunamis 62196 -Tsuneo 59491 -Tsung 65452 -Tsurumi 64201 -Tsutomu 64423 -Tsutsumi 64905 -Tsuyoshi 61699 -Tsvangirai 58365 -Tswana 61362 -Tt 62196 -Ttravelogs 63792 -Tu 46406 -TuBound 63792 -Tualatin 63245 -Tuan 60670 -Tuareg 65452 -Tuas 65452 -Tuatha 62762 -Tub 51502 -Tuba 59292 -Tubal 63077 -Tubb 63991 -Tubbs 61362 -Tubby 58417 -Tube 45882 -Tubeless 64657 -Tuber 65452 -Tuberc 62613 -Tuberculosis 54078 -Tuberculous 64905 -Tubes 49359 -Tubewell 62917 -Tubing 53746 -Tubman 64423 -Tubs 53934 -Tubular 56585 -Tubulin 65452 -Tuc 65170 -Tucano 65452 -Tucci 61584 -Tuck 54439 -Tuckahoe 61699 -Tucked 60321 -Tucker 49777 -Tucker's 63077 -Tuco 58577 -Tucows 58919 -Tucson 47807 -Tucson's 65452 -Tudo 61472 -Tudor 53646 -Tudors 60238 -Tudou 64201 -Tue 40350 -TuePlay 64905 -Tuebingen 65452 -Tues 55877 -Tuesaday 62066 -Tuesday 41254 -Tuesday's 53613 -Tuesdays 52899 -Tufayl 63077 -Tufayl's 65170 -Tuff 57923 -Tuffmail 62762 -Tuffy 62613 -Tufnell 59923 -Tufted 59630 -Tufts 54749 -Tug 59848 -Tugba 63601 -Tugrik 62469 -Tugun 65452 -Tui 60238 -Tuite 64423 -Tuition 49999 -Tujunga 63419 -Tuk 63991 -Tukey 60321 -Tukey's 62066 -Tukwila 62762 -Tula 63245 -Tulane 54479 -Tulare 58688 -Tulasi 65452 -Tuleh 62469 -Tulfo 64657 -Tuli 65170 -Tulip 53729 -TulipGirl 65170 -Tulips 59164 -Tull 58523 -Tullamore 61818 -Tulle 60952 -Tullius 65452 -Tullman 63245 -Tulloch 63077 -Tully 59292 -Tulsa 48562 -Tulsi 63419 -Tulum 62196 -Tum 59357 -Tumble 53847 -Tumbled 64423 -Tumbler 58577 -Tumblers 59039 -Tumbleweed 60157 -Tumbling 60580 -Tumblr 61472 -Tumeur 59848 -Tumi 63601 -Tumkur 64423 -Tummy 57084 -Tumor 50799 -Tumoral 61940 -Tumors 55849 -Tumour 58802 -Tumours 63991 -Tums 64423 -Tumult 63077 -Tun 59227 -Tuna 52661 -Tunable 63245 -Tunbridge 55992 -Tundra 52130 -Tune 49001 -TuneBase 63077 -TuneCore 63419 -TuneUp 60157 -Tunebite 58417 -Tunecab 63991 -Tuned 55711 -Tuner 50213 -Tuners 55154 -Tunes 50873 -Tuneup 64423 -Tung 56618 -Tungsten 53762 -Tunguska 62469 -Tunic 59774 -Tunica 62613 -Tuning 48821 -Tunings 65452 -Tunis 57524 -Tunisia 45380 -Tunisian 57785 -Tunisie 63991 -Tunnel 51600 -Tunneling 60762 -Tunnels 57440 -Tunney 64657 -Tunstall 59039 -Tuolumne 61699 -Tuomala 63245 -Tuomas 63419 -Tuono 63601 -Tupac 54770 -TupacVideoz 64905 -Tupelo 60157 -Tupi 63991 -Tupolev 63245 -Tupper 62762 -Tupperware 61472 -Tur 63991 -Turabian 62331 -Turalyon 59292 -Turan 63991 -Turban 62196 -Turbidity 60492 -Turbine 50758 -Turbines 57785 -Turbo 45657 -TurboChannel 61699 -TurboNick 64657 -TurboTax 60238 -Turbocharged 61818 -Turbocharger 63792 -Turbochargers 64657 -Turbolinux 65170 -Turbonegro 61362 -Turbos 63991 -Turbuhaler 63991 -Turbulence 57399 -Turbulent 58802 -Turco 61818 -Turcotte 65452 -Ture 64905 -Turf 50006 -Turfgrass 64423 -Turfway 65452 -Turgeon 64201 -Turin 56972 -Turing 55821 -Turion 57741 -Turis 65452 -Turismo 52559 -Turk 56652 -Turkana 65170 -Turkce 61152 -Turkey 40865 -Turkey's 56262 -Turkeys 61818 -Turki 65170 -Turkic 63991 -Turkish 44500 -Turkmen 61362 -Turkmenistan 46849 -Turks 46772 -Turku 59774 -Turley 63077 -Turlington 62469 -Turlock 63792 -Turmeric 62331 -Turmoil 57609 -Turn 43491 -Turnaround 57923 -Turnberry 61699 -Turnbull 56388 -Turnbull's 65170 -Turned 53952 -Turner 45730 -Turner's 57923 -Turners 59702 -Turnhere 64201 -Turning 48614 -Turnip 62613 -TurnipHead 64905 -Turnkey 56899 -Turnout 56324 -Turnover 55226 -Turnovers 61256 -Turnpike 55526 -Turns 49246 -Turnstile 60952 -Turnstiles 59630 -Turntable 55178 -Turntables 56200 -Turntablism 65170 -Turok 63991 -Turpin 62469 -Turquoise 53899 -Turret 60670 -Turtle 49999 -Turtleback 65170 -Turtleneck 63419 -Turtlerock 64423 -Turtles 53865 -Turton 63991 -Turunen 60762 -Tus 60952 -Tuscaloosa 58470 -Tuscan 55500 -Tuscana 65452 -Tuscany 52484 -Tuscarawas 64905 -Tuscarora 61584 -Tuscola 62196 -Tush 65452 -Tushar 62469 -Tusk 63077 -Tuskegee 59848 -Tussah 65170 -Tussauds 60670 -Tusshar 65452 -Tussi 63245 -Tussinee 63601 -Tussle 63991 -Tustin 58065 -Tut 60492 -Tut's 63991 -Tutankhamun 63077 -Tuticorin 64423 -Tutor 52221 -Tutorial 44692 -Tutoriale 64657 -Tutoriales 60670 -Tutorialized 63419 -Tutorials 43495 -Tutoriaux 65170 -Tutoring 52805 -Tutors 55274 -Tutsi 65452 -Tutt 65452 -Tutte 59848 -Tutti 60856 -Tuttle 55849 -Tutto 63792 -Tutu 58688 -Tuvala 60952 -Tuvalu 47611 -Tuvaluans 65170 -Tux 57199 -Tuxedo 55500 -Tuxedos 58523 -Tuxpaint 65452 -Tv 48543 -Tw 63792 -Twaddle 64201 -Twain 52571 -Twain's 63792 -Twang 64905 -Twas 61256 -Twat 65452 -Tweak 57566 -TweakVista 62917 -Tweaked 64905 -Tweaker 63601 -Tweaking 59560 -Tweaks 54283 -Tweed 54341 -Tweedale 63077 -Tweedy 58979 -Tween 54749 -Tweens 58979 -Tweet 61584 -TweetDeck 63991 -Tweeter 60078 -Tweeters 63792 -Tweets 59774 -Tweety 58212 -Tweezerman 59848 -Tweezers 59357 -Twelfth 55500 -Twellman 64905 -Twelve 50469 -Twenga 55323 -TwengaScore 62917 -Twenge 63792 -Twente 60580 -Twenties 64201 -Twentieth 55226 -Twenty 49893 -Twentynine 63601 -Twi 63245 -Twice 52198 -Twickenham 56551 -Twig 65170 -Twiggy 63077 -Twiki 64905 -Twilight 47008 -Twilight's 64423 -Twill 55423 -Twin 44563 -Twine 59039 -Twingo 60580 -Twinings 64657 -Twink 62196 -Twinkle 56485 -Twinkling 65452 -Twinks 58313 -Twinlab 63077 -Twinning 62066 -Twins 48363 -Twinsburg 62917 -Twirl 64905 -Twirling 63077 -Twist 51415 -Twista 60492 -Twisted 50654 -TwistedBrush 65170 -Twister 56935 -Twisters 61051 -Twisting 58262 -Twistlock 65170 -Twists 60000 -Twistys 59164 -Twit 59227 -TwitThis 59039 -Twitch 60078 -Twitter 44351 -TwitterCounter 62613 -TwitterFox 60078 -Twittering 62469 -Twitty 62196 -Twiztid 64905 -Two 36914 -Two's 64657 -Twoje 63601 -Twomey 64657 -Twp 56652 -Twyford 63245 -Tx 53226 -TxDOT 61051 -Txt 62196 -Ty 51600 -TyTN 59164 -Tyagi 63792 -Tyan 58577 -Tyas 63792 -Tycho 62917 -Tyco 54560 -Tycoon 53970 -Tycoons 62917 -Tydfil 56485 -Tye 60952 -Tyee 63419 -Tyg 64423 -Tyger 64201 -Tygerberg 64905 -Tygmont 62917 -Tying 57238 -Tyke 64423 -Tyla 64657 -Tylenol 54969 -Tyler 46120 -Tyler's 59292 -TylerLong's 64423 -Tylney 65170 -Tylon 64201 -Tylor 63991 -Tyme 62331 -Tymoshenko 63991 -Tympani 65452 -Tynan 62066 -Tyndale 62469 -Tyndall 60000 -Tyne 50881 -Tynedale 63601 -Tynemouth 63991 -Tyner 61584 -Tynes 63077 -Tyneside 54560 -Typ 61051 -Type 36172 -TypeKey 55631 -TypeName 63419 -TypePad 51690 -Typed 62331 -Typeface 59848 -Typefaces 63245 -Typepad 59848 -Types 43593 -Typesetting 65170 -Typewriter 58979 -Typewriters 62762 -Typha 64905 -Typhimurium 58577 -Typhoid 63245 -Typhoon 52399 -Typical 48122 -Typically 53024 -Typing 53241 -Typist 64657 -Typo 56452 -Typographic 64201 -Typography 57238 -Typology 63991 -Typos 63245 -Tyr 57238 -Tyra 53346 -Tyrac 65452 -Tyrannosaurus 61362 -Tyranny 60952 -Tyrant 60321 -Tyrants 65452 -Tyre 52739 -Tyree 62196 -Tyrell 63419 -Tyres 53081 -Tyrese 62469 -Tyrfingr 65170 -Tyrie 65452 -Tyrol 62762 -Tyrolean 65170 -Tyron 64201 -Tyrone 53052 -Tyros 63419 -Tyrosine 58162 -Tyrrell 58162 -Tyrrhenian 64905 -Tyrwhitt 65452 -Tyson 49033 -Tyson's 65170 -Tysons 60856 -Tyvek 61818 -Tz 59923 -Tzarevo 63991 -Tzatziki 65170 -Tze 65170 -Tzigane 62762 -Tzipi 61051 -Tzotzil 64423 -Tzu 56687 -Tzun 63991 -TÜV 63601 -Tá 65170 -Tánaiste 65452 -Tâches 63792 -Téamaí 65170 -Técnica 63077 -Técnico 65452 -Tél 49423 -Télécharger 61584 -Télécom 65170 -Téléphone 63601 -Télévision 64905 -Témy 65170 -Términos 64423 -Título 60492 -Tú 62331 -Tübingen 64905 -Türe 64657 -Türk 61362 -Türkiye 54439 -Türkçe 45328 -U 37348 -U's 62469 -UA 49834 -UAA 60856 -UAB 56551 -UAC 60952 -UACH 64201 -UAE 47335 -UAE's 63419 -UAF 64201 -UAH 60157 -UAHA 64201 -UAL 65452 -UALR 63245 -UAP 63601 -UAR 61699 -UART 61152 -UAS 62917 -UAT 64905 -UAV 60000 -UAVs 63601 -UAW 60580 -UB 54321 -UBB 63077 -UBBCode 60405 -UBC 54302 -UBF 65170 -UBI 64657 -UBLIC 62469 -UBLISHING 65452 -UBM 59101 -UBS 53346 -UBT 62196 -UBiQUiO 62066 -UBound 63601 -UC 46803 -UCA 63419 -UCAR 63792 -UCAS 60321 -UCB 59292 -UCC 54540 -UCD 59227 -UCE 64201 -UCF 56652 -UCI 56551 -UCL 55526 -UCLA 49017 -UCLA's 61256 -UCLANewsroom 63601 -UCM 61051 -UCN 63792 -UCO 64423 -UCP 58632 -UCR 57566 -UCS 61472 -UCSB 58860 -UCSC 58745 -UCSD 57876 -UCSF 57741 -UCT 61472 -UCU 63077 -UCV 58860 -UCase 63601 -UChr 63601 -UCompareHealthCare 57696 -UConn 56827 -UD 55323 -UDA 65170 -UDB 64657 -UDC 56080 -UDCA 63601 -UDF 60856 -UDG 62762 -UDOT 64201 -UDP 56652 -UDQM 64423 -UDR 65452 -UDRP 62196 -UDS 63792 -UE 57160 -UEA 63419 -UEC 64905 -UEFA 50157 -UEN 64201 -UEO 61818 -UES 62613 -UF 53712 -UFC 48796 -UFC's 63077 -UFJ 64201 -UFO 49268 -UFO's 63077 -UFONE's 64423 -UFOs 58065 -UFP 65452 -UFS 60238 -UFZ 64905 -UFindUs 60856 -UG 56518 -UGA 55202 -UGA's 65452 -UGANDA 59491 -UGC 58632 -UGG 56485 -UGK 58523 -UGLY 61051 -UGO 60157 -UGS 63792 -UGTA 62331 -UH 55250 -UHC 58212 -UHF 54581 -UHI 64423 -UHMWPE 58688 -UHP 63245 -UHRA 65452 -UHS 64905 -UHV 60405 -UI 39494 -UIC 59424 -UID 59702 -UII 63077 -UILDING 65170 -UINT 64905 -UIQ 54245 -UIS 65452 -UIUC 58113 -UJ 61051 -UK 33600 -UK's 48648 -UKC 63245 -UKHO 61818 -UKMexicoBrazil 59560 -UKRAINE 58313 -UKREG 64657 -UKTI 63991 -UKTV 56080 -UKULELE 63991 -UKUUG 65452 -UKVillages 63601 -UKs 61818 -UL 49517 -ULC 64423 -ULEB 64657 -ULHRA 64905 -ULM 64201 -ULS 60856 -ULSD 64423 -ULSI 65452 -ULSTER 63245 -ULTIMATE 55274 -ULTRA 54133 -ULTRASONIC 63991 -ULTRASOUND 58365 -ULTRAVIOLET 65452 -ULV 64657 -UM 52074 -UM's 62917 -UMA 63077 -UMAX 62331 -UMBC 60856 -UMBER 64423 -UMBRELLA 65452 -UMC 58212 -UMD 54946 -UMDNJ 62762 -UME 64657 -UMFK 65170 -UMG 63792 -UMI 59164 -UMKC 61256 -UML 53301 -UMLS 63991 -UMMARY 65170 -UMN 64905 -UMNO 61584 -UMP 60580 -UMPC 55604 -UMPCs 62613 -UMR 59560 -UMS 65170 -UMTS 58470 -UMUC 64657 -UMVIM 62917 -UMW 60238 -UMass 54207 -UN 43659 -UN's 58523 -UNA 58065 -UNABLE 64423 -UNAIDS 63077 -UNAM 65452 -UNANIMOUSLY 60670 -UNAUTHORIZED 64201 -UNBELIEVABLE 65452 -UNC 52363 -UNCENSORED 62469 -UNCG 60492 -UNCLASSIFIED 58065 -UNCLE 60405 -UNCO 63419 -UNCP 64657 -UNCT 65452 -UNCTAD 61940 -UND 55906 -UNDE 65452 -UNDEFINED 65452 -UNDER 48791 -UNDERDEVELOPMENT 51184 -UNDERFUNDED 65170 -UNDERGRADUATE 63991 -UNDERGROUND 58162 -UNDERSTAND 59774 -UNDERSTANDING 57785 -UNDERWATER 62917 -UNDERWEAR 63077 -UNDEVELOPED 62613 -UNDG 63419 -UNDP 51931 -UNDP's 61152 -UNE 60157 -UNECE 61940 -UNEMPLOYMENT 62917 -UNEP 57524 -UNESCAP 65452 -UNESCO 51783 -UNESCO's 61362 -UNF 61699 -UNFCCC 64905 -UNFINISHED 63245 -UNFPA 65170 -UNG 61699 -UNH 61152 -UNHCR 58017 -UNI 59357 -UNICEF 53917 -UNIDENTIFIED 59424 -UNIDO 62331 -UNIFIED 56200 -UNIFORM 58065 -UNIFORMS 60492 -UNION 51453 -UNIONS 63419 -UNIQUE 57122 -UNIS 61940 -UNISON 62196 -UNIT 49458 -UNITE 63792 -UNITED 45638 -UNITS 54540 -UNITY 61152 -UNIV 56050 -UNIVERSAL 53762 -UNIVERSE 61256 -UNIVERSITIES 63419 -UNIVERSITY 47581 -UNIVISION 64657 -UNIX 48796 -UNK 61362 -UNKLE 64657 -UNKNOWN 52778 -UNL 57609 -UNLAWFUL 61584 -UNLESS 56827 -UNLIMITED 54341 -UNLOCK 63419 -UNLOCKED 61818 -UNLV 57199 -UNM 63792 -UNMIS 64423 -UNO 57609 -UNOFFICIAL 64201 -UNOPENED 65170 -UNOPS 64657 -UNOS 64905 -UNPAID 65452 -UNPLUGGED 62469 -UNPUBLISHED 63991 -UNRESOLVED 58470 -UNRWA 65170 -UNS 63419 -UNSC 60670 -UNSCEAR 59630 -UNSEALED 65170 -UNSPSC 61472 -UNSUBSCRIBE 63245 -UNSW 57609 -UNT 57524 -UNTIL 56021 -UNU 61940 -UNUSED 64423 -UNUSUAL 61362 -UNV 63419 -UNVEILS 64905 -UO 58212 -UOB 60078 -UOJ 64905 -UOP 63792 -UOW 65170 -UOWinfo 64657 -UP 43272 -UPA 59774 -UPB 63245 -UPC 51415 -UPCOMING 55711 -UPDATE 48332 -UPDATED 54835 -UPDATES 54264 -UPDATING 64657 -UPDRS 64423 -UPF 63792 -UPG 61256 -UPGRADE 56687 -UPGRADED 64201 -UPGRADES 64201 -UPGRADING 63792 -UPI 56972 -UPJ 63792 -UPL 64905 -UPLOAD 56420 -UPM 59101 -UPMC 60670 -UPN 61362 -UPON 54969 -UPP 61256 -UPPER 53729 -UPS 45648 -UPSC 62066 -UPSD 60000 -UPSpace 63601 -UPTAKE 64201 -UPTO 65170 -UPTV 65452 -UPVC 60078 -UPnP 63601 -UPromise 63601 -UQ 56262 -UR 50823 -URA 61584 -URANIUM 64201 -URBAN 52791 -URBANA 62917 -URC 60952 -URE 64201 -UREA 64905 -UREPORT 62613 -URGENT 59039 -URGENTLY 64657 -URGES 63245 -URI 49590 -URINARY 63245 -URINE 65452 -URIs 60952 -URL 38968 -URL's 58688 -URLDatabase 64905 -URLs 47607 -URLwire 62917 -URN 61699 -UROLOGY 64905 -URS 58632 -URU 63245 -URUGUAY 60952 -URW 64905 -US 29485 -US's 61362 -USA 35021 -USA's 57970 -USAA 61699 -USAC 61051 -USACE 64657 -USAF 55274 -USAGE 59292 -USAID 55578 -USAJOBS 63419 -USAjobs 64201 -USB 39925 -USBMIS 65452 -USC 45341 -USC's 62066 -USCA 59357 -USCG 59491 -USCIS 57238 -USCS 64423 -USD 42996 -USDA 50335 -USDA'S 64657 -USDA's 59560 -USE 45164 -USED 48964 -USEF 65170 -USEFI 64657 -USEFUL 56420 -USELESS 64905 -USENET 62917 -USENIX 60580 -USEPA 61362 -USER 49296 -USER'S 61699 -USERNAME 60670 -USERS 55373 -USES 56972 -USF 53361 -USFWS 64657 -USG 60157 -USGA 60856 -USGI 65452 -USGS 52435 -USGenWeb 60238 -USH 62196 -USHER 59491 -USHL 65170 -USHMAN 64423 -USHighway 59848 -USIMGs 61940 -USINESS 64905 -USING 49959 -USL 62613 -USM 55448 -USMC 56721 -USMLE 56262 -USN 60580 -USNC 63991 -USNS 64423 -USNews 60580 -USO 61152 -USOC 64657 -USP 54005 -USPC 63245 -USPS 48766 -USPTO 53331 -USS 51008 -USSG 63245 -USSR 52571 -UST 58688 -USTA 61051 -USU 61256 -USUALLY 63792 -USVI 63601 -UString 62613 -UT 43826 -UTA 59101 -UTAH 55849 -UTC 42955 -UTD 61152 -UTE 65170 -UTEP 61152 -UTI 57278 -UTIL 62917 -UTILITIES 57566 -UTILITY 51610 -UTILIZATION 63245 -UTILIZING 61940 -UTIs 65170 -UTL 65452 -UTM 58417 -UTORENT 60580 -UTP 55500 -UTR 63601 -UTS 59101 -UTSA 63419 -UTStarcom 59292 -UTTAR 62762 -UTV 60580 -UTY 60405 -UU 58162 -UUID 64905 -UUNET 64423 -UUP 64423 -UUU 65452 -UUme 64905 -UV 45949 -UVA 58162 -UVB 59848 -UVC 64905 -UVM 63601 -UVR 64423 -UVSC 65452 -UVa 61818 -UW 52051 -UW's 63419 -UWA 62196 -UWB 59424 -UWE 65170 -UWH 64201 -UWI 63991 -UWIAA 63419 -UWIRE 42534 -UWL 63792 -UWM 60856 -UWP 60238 -UWS 63245 -UWSpace 63077 -UX 60238 -UXGA 62066 -UXO 63601 -UZ 58860 -UZBEKISTAN 61051 -Ua 64905 -Ub 60670 -Uber 56862 -UberSpat 65452 -Ubercart 64905 -Ubergizmo 64201 -Ubersite 65170 -Ubi 61699 -Ubidays 63601 -Ubinas 64657 -Ubiquitin 64657 -Ubiquitous 58745 -Ubiquity 63792 -Ubisoft 55992 -Ubisoft's 62917 -Ubud 58162 -Ubuntu 41695 -Ubuntustats 65452 -Ubuntuzilla 58313 -Ucables 65452 -Uchida 61051 -Uchiha 58979 -Uckfield 60157 -Ucn 60580 -Udaipur 57741 -Udall 65170 -Uday 64423 -Udayan's 65170 -Uddin 64905 -Udell 64905 -Udi 62066 -Udine 64423 -Udinese 61584 -Udo 60000 -Udon 61940 -Udrih 65452 -Udupi 64905 -Udyog 63245 -Ue 64201 -Ueda 61152 -Uefa 55684 -Uehiro 65452 -Ueki 63601 -Uemura 61472 -Ueno 61940 -Ufa 64201 -Uffizi 62331 -Ufindus 53581 -Ufo 62917 -Uganda 45098 -Uganda's 63077 -Ugandan 57046 -Ugeskr 62762 -Ugg 57238 -Ugh 62917 -Ugliest 59357 -Ugly 49065 -Ugo 60762 -Uh 54792 -Uhl 65170 -Uhr 56170 -Uhre 65452 -Uhuru 61362 -Ui 62762 -Uighur 61940 -Uinta 63077 -Uirlisí 58577 -Uist 65452 -Uitenhage 65452 -Ujena 58919 -Ujena's 64657 -Ujjain 61152 -Ujjal 63991 -Uk 50560 -Uke 63077 -Ukiah 63601 -Ukiller 63991 -Ukr 65452 -Ukraine 43310 -Ukraine's 58632 -Ukrainian 49388 -Ukrainians 64905 -Ukranian 61940 -Ukulele 58313 -Ul 59227 -Ulaanbaatar 63245 -Ulcer 60238 -Ulcerative 60670 -Ulcers 60000 -Uldaman 57923 -Uldum 57876 -Ulead 57785 -Ulery 61818 -Ulex 65452 -Ulf 60405 -Uli 63245 -Uliano 64905 -Ulibarri 58919 -Ulicny 65452 -Ulin 63991 -Uline 65452 -Ulinski 64201 -Ulises 59774 -Ulivi 63792 -Ulla 62613 -Ulladulla 64423 -Ullah 65170 -Ullal 62762 -Ullapool 65452 -Ullman 59491 -Ullrich 63077 -Ulm 59848 -Ulmer 63419 -Ulric 64657 -Ulrich 54419 -Ulrike 60762 -Ulsan 61940 -Ulster 50409 -Ulta 65170 -Ultegra 63245 -Ultima 54380 -Ultimate 42199 -UltimateTV 63245 -Ultimately 52609 -Ultimatum 59923 -Ultimo 60157 -Ultra 44857 -UltraEdit 64423 -UltraISO 62469 -UltraSharp 61152 -UltraStinger 64905 -Ultracet 57482 -Ultrafast 60000 -Ultrafiltration 63245 -Ultrafine 65452 -Ultrafly 65452 -Ultraleggera 64201 -Ultralight 58262 -Ultram 48882 -Ultraman 63792 -Ultramarine 65170 -Ultramicrotome 64657 -Ultraportable 62917 -Ultras 60405 -Ultrasensitive 65452 -Ultrasone 61699 -Ultrasonic 52818 -Ultrasonics 61362 -Ultrasonography 63419 -Ultrasound 50514 -Ultrasteel 64423 -Ultrastructural 58919 -Ultrastructure 60321 -Ultratec 63419 -Ultratech 64423 -Ultrathin 61818 -Ultraviolet 56791 -Ultravoice 64423 -Ulu 65170 -Uluru 61940 -Ulusaba 62469 -Ulva 65452 -Ulverston 64657 -Ulysse 64201 -Ulysses 56021 -Um 53779 -Uma 54540 -Umaga 62762 -Umar 60078 -Umass 61051 -Umatilla 64657 -Umbanda 65170 -Umberto 59848 -Umbilical 60580 -Umbra 63419 -Umbrella 51953 -Umbrellas 54133 -Umbria 58632 -Umbro 58860 -Umeha 63419 -Umesh 62196 -Umeå 60321 -Umhlanga 63601 -Umi 62917 -Umit 64657 -Umm 58860 -Umma 65170 -Ummah 62469 -Umno 62196 -Umpc 63991 -Umphrey's 65452 -Umpire 58065 -Umpires 59923 -Umpqua 60405 -Umrah 65452 -Umrao 63601 -Umstead 64905 -Umum 64201 -Un 49388 -Un'Goro 60952 -UnCut 60952 -UnLock 56899 -Una 52765 -Unable 50932 -Unabridged 49932 -Unacceptable 51463 -Unaccompanied 63419 -Unadjusted 65170 -Unaffected 64423 -Unaffiliated 64423 -Unanimous 63077 -Unanimously 60670 -Unanswered 47803 -Unapologetic 65452 -Unassigned 57696 -Unattended 58162 -Unaudited 62196 -Unauthorised 59292 -Unauthorized 51492 -Unavailable 51248 -Unaware 64657 -Unban 63077 -Unbearable 65452 -Unbeatable 57278 -Unbeaten 63077 -Unbeknownst 63991 -Unbelievable 58017 -Unbiased 57566 -Unbleached 63792 -Unblock 63991 -Unborn 61699 -Unbound 56388 -Unbox 63601 -Unboxed 63601 -Unboxing 57923 -Unbranded 55766 -Unbreakable 60952 -Unbridled 62331 -Unc 65452 -Uncanny 64905 -Uncapped 64423 -Uncategorized 44880 -Uncen 64905 -Uncensored 54969 -Uncertain 55448 -Uncertainties 63601 -Uncertainty 53952 -Unchained 62762 -Unchanged 64201 -Uncharted 59848 -Uncheck 58688 -Unchecked 64657 -Uncirculated 63792 -Unclaimed 56518 -Unclassified 50949 -Uncle 48624 -Unclear 64423 -Uncles 64905 -Uncoached 65170 -Uncoated 64423 -Uncomfortable 63792 -Uncommon 56420 -Uncompressed 63792 -Unconditional 58745 -Unconfirmed 62917 -Unconjugated 54601 -Unconscious 59227 -Uncontested 64423 -Uncontrolled 60405 -Unconventional 60321 -Uncool 65452 -Uncorrected 63601 -Uncover 58523 -Uncovered 57923 -Uncovering 60157 -Uncrate 62469 -Uncut 54439 -Und 58065 -Unda 62469 -Undead 53847 -Undecided 52175 -Undeclared 57009 -Undecorated 60405 -Undefeated 64657 -Undefined 55552 -Undelete 63601 -UndeleteExpireTime 62066 -Undelivered 65452 -Undeniable 64657 -Under 38964 -Underage 58162 -Underarm 61584 -Underbelly 63419 -Underbog 58065 -Undercity 59848 -Undercounter 64657 -Undercover 53779 -Underdark 64657 -Underdog 59164 -Underdogs 63419 -Underfloor 62469 -Undergarments 64905 -Undergo 64423 -Undergoes 65170 -Undergoing 61256 -Undergrad 55631 -Undergraduate 46754 -Undergraduates 58262 -Underground 45553 -Underhill 61584 -Underlayment 64423 -Underline 59491 -Underlined 63601 -Underlying 57009 -Undermine 59702 -Undermount 63991 -Underneath 58262 -Underoath 62762 -Underpants 64905 -Underperform 62917 -Underpinning 62469 -Underrated 62762 -Underrepresented 62762 -Underscores 62917 -Undersea 61818 -Undersecretary 59702 -Underserved 62469 -Undersized 54264 -Understand 50234 -Understandable 61699 -Understanding 45576 -Understandings 65170 -Understands 61940 -Understood 65452 -Undertake 61699 -Undertaken 63991 -Undertaker 58688 -Undertaking 59424 -Undertakings 62917 -Undertekster 64657 -Undertexter 64657 -Undertones 64423 -Underwater 49764 -Underway 57741 -Underwear 50256 -Underweight 65452 -Underwire 52673 -Underwired 64423 -Underwood 50726 -Underwood's 64423 -Underworld 53301 -Underwriter 60492 -Underwriters 58632 -Underwriting 56899 -Undetermined 56110 -Undeveloped 63792 -Undies 64423 -Undifferentiated 65170 -Undisclosed 59164 -Undiscovered 60405 -Undiscovery 62613 -Undisputed 61818 -Undo 54459 -Undocumented 63419 -Undoing 63419 -Undone 61472 -Undoubtedly 62917 -Undressing 65170 -Undue 64201 -Une 56200 -Unearth 62469 -Unearthed 63245 -Unearthing 65452 -Unease 64201 -Uneasy 60238 -Unemployed 57970 -Unemployment 50439 -Unequal 61584 -Unesco 61818 -Unethical 64657 -Uneven 63245 -Unexamined 64201 -Unexercisable 64201 -Unexpected 54114 -Unexpectedly 64905 -Unexplained 58688 -Unfair 57482 -Unfaithful 62762 -Unfamiliar 65170 -Unfavorable 64423 -Unfiltered 63419 -Unfinished 54622 -Unfit 62762 -Unfogged 65452 -Unfold 64905 -Unfolding 63419 -Unforgettable 58017 -Unforgivable 65452 -Unforgiven 61256 -Unfors 62066 -Unfortunate 56687 -Unfortunately 48882 -Unfortunatly 64423 -Unframed 58523 -Unfriendly 60238 -Unfund 64905 -Unfunded 64905 -Unfurnished 58802 -Ung 65170 -Ungaro 59702 -Unger 56050 -Unglued 65452 -Ungraded 64201 -Ungwatsi 62331 -Unhappily 64423 -Unhappy 57009 -Unhealthy 57831 -Unhelpful 63792 -Unhinged 63077 -Unholy 59923 -Uni 53095 -UniCredit 64201 -UniGene 38279 -UniMon 59630 -UniProt 61940 -UniProtKB 63245 -UniSTS 38290 -Uniaxial 65170 -Unibet 60321 -Uniblue 63245 -Unibond 64423 -Unicast 64657 -Unicef 63077 -Unicode 55154 -Unicom 62762 -Unicorn 55084 -Unicorns 61940 -Unicorporated 61584 -Unicycle 60762 -Unicycling 64905 -Unidad 63991 -Unidata 62331 -Uniden 60078 -Unidentified 58065 -Unidiff 57482 -Unidirectional 63245 -Unido 63419 -Unidos 57238 -Unification 60078 -Unified 46690 -Uniform 48786 -Uniformed 60321 -Uniformity 64657 -Uniforms 48677 -Unify 63991 -Unifying 62613 -Unig 64905 -Unigene 64423 -Unignore 47964 -Uniguru 63077 -Unik 63245 -Unikom 62613 -Unilateral 59702 -Unilever 56200 -Unimog 65170 -Uninc 64423 -Unincorporated 58365 -Uninspected 53066 -Uninstall 56452 -Uninstaller 63077 -Uninstallers 64657 -Uninstalling 63792 -Uninsured 59227 -Unintended 63077 -Unintentional 60856 -Uninterruptible 60856 -Uninvited 64423 -Union 39293 -Union's 55526 -Uniondale 62762 -Unionist 59702 -Unions 47935 -Uniontown 61472 -Unionville 60157 -Uniphase 60405 -Unipolar 65170 -Unique 44623 -Uniquely 58745 -Uniqueness 60000 -Uniross 62762 -Uniroyal 65452 -Unis 61940 -Unisex 52699 -Unison 58802 -Unisys 58860 -Unit 39974 -Unit's 59848 -Unitarian 55821 -Unitary 57609 -Unitas 64423 -Unite 49620 -Unitech 62469 -United 31261 -United's 58017 -UnitedHealth 59357 -Unitek 65452 -Unites 62469 -Uniti 65452 -Uniting 61362 -Unitrin 64423 -Units 44972 -Unitus 60856 -Unity 50791 -Unité 60952 -Univ 52018 -Univariate 60000 -Univeral 63419 -Univeristy 61472 -Universal 42475 -Universal's 62066 -UniversalID 58577 -Universalis 64201 -Universalism 63792 -Universalist 59039 -Universe 46152 -Universe's 62762 -Universes 64657 -Universidad 51711 -Universidade 54643 -Universit 65170 -Universita 61362 -Universitaet 62762 -Universitaire 61584 -Universitario 59560 -Universitas 64201 -Universitat 54188 -Universite 57009 -Universiteit 55963 -Universitet 63991 -Universiti 60952 -Universities 47238 -University 31910 -University's 49758 -Università 54685 -Universität 51867 -Universitätsklinikum 64905 -Université 53407 -Universo 65452 -Universtiy 59702 -Univesity 64201 -Univision 60078 -Uniworld 52221 -Unix 47997 -Unión 64423 -Unjust 64423 -Unk 64657 -Unknow 65452 -Unknown 42956 -UnknownPetraFan 64201 -Unknowns 65452 -Unlabeled 65452 -Unlawful 60000 -Unleaded 62917 -Unleash 58688 -Unleashed 49296 -Unleashes 65452 -Unleashing 53899 -Unless 46944 -Unley 64201 -Unlicensed 57653 -Unlike 46480 -Unlikely 57046 -Unlimited 44224 -Unlined 64657 -Unlinked 64423 -Unlisted 59424 -Unload 65170 -Unloading 62917 -Unlock 50115 -Unlockable 61818 -Unlockables 62762 -Unlocked 52187 -Unlocker 63077 -Unlocking 52375 -Unlocks 65452 -Unlove 53970 -Unlucky 62762 -Unmanaged 62469 -Unmanned 59774 -Unmarried 60321 -Unmasked 62331 -Unmasking 65170 -Unmatched 62917 -Unmet 64201 -Unmetered 60238 -Unmodded 63991 -Unmodified 58470 -Unnamed 57278 -Unnatural 59101 -Unnecessary 59774 -Unni 62469 -Uno 55423 -Unocal 62762 -Unofficial 52387 -Unpack 63991 -Unpacking 57876 -Unpaid 58313 -Unparalleled 63419 -Unpaved 61699 -Unplanned 61051 -Unplayed 64657 -Unpleasant 64905 -Unplug 61362 -Unplugged 53597 -Unported 58313 -Unprecedented 61152 -Unpredictable 64657 -UnprocessedDocuments 62066 -UnprocessedFTSearch 63991 -UnprocessedFTSearchRange 63991 -UnprocessedSearch 63991 -Unprotected 62613 -Unpublish 64657 -Unpublished 58113 -Unqualified 61152 -Unrate 57876 -Unrated 54114 -Unraveling 63991 -Unread 55500 -Unreal 50983 -Unreality 61818 -Unrealized 65452 -Unreasonable 63991 -Unregistered 54114 -Unregulated 64905 -Unrelated 60238 -Unreleased 58162 -Unreliable 64201 -Unrepentant 62331 -Unresolved 58802 -Unrest 59774 -Unrestricted 59227 -Unruh 62917 -Unruly 59702 -Uns 65170 -Unsafe 57831 -Unsaid 65452 -Unsalted 65170 -Unsatisfactory 61940 -Unsatisfied 65170 -Unsaturated 61940 -Unscheduled 58365 -Unscramble 65452 -Unscrew 65452 -Unscripted 62762 -Unsecured 52913 -Unseen 57566 -Unselect 60492 -Unser 64423 -Unsere 63792 -Unshackled 65452 -Unsifted 61699 -Unsigned 57831 -Unsolicited 57399 -Unsolved 57923 -Unsorted 49184 -Unspecified 54792 -Unspent 60238 -Unstable 59774 -Unstartable 63601 -Unstone 64905 -Unstoppable 62196 -Unstructured 60492 -Unstrung 64423 -Unsubscribe 42685 -Unsuccessful 63792 -Unsuitable 53377 -Unsung 60492 -Unsupervised 64657 -Unsupported 62196 -Unsure 56862 -Unsurpassed 64905 -Unsweetened 62917 -Untamed 62196 -Unter 63419 -Unternehmen 61152 -Untersuchungen 63601 -Untertitel 59164 -Untied 63077 -Until 46037 -Untitled 49464 -Unto 59848 -Untold 56388 -Untouchable 63792 -Untouchables 63991 -Untouched 64905 -Untraceable 65170 -Untrained 64657 -Untreated 59039 -Untuk 64905 -Untying 63601 -Unum 64201 -Unused 57785 -Unusual 51330 -Unusualgift 59491 -Unusually 61940 -Unvalidated 60321 -Unveil 58979 -Unveiled 57046 -Unveiling 61584 -Unveils 52899 -Unvented 61940 -Unverifiable 63245 -Unverified 60405 -Unwanted 55877 -Unwed 65452 -Unwin 63245 -Unwind 62196 -Unwired 62613 -Unwrap 60952 -Unwrapped 61472 -UnwrappedTV 60492 -Unwritten 55373 -Unzip 62613 -Unzipped 62917 -Uo 63419 -Uomo 63792 -Up 33594 -UpMyStreet 58919 -UpTake 61256 -UpToDate 56356 -UpToDate's 64657 -Uparrow 55084 -Upazila 65452 -Upbeat 60670 -Upchurch 65170 -Upcoming 43095 -Upcomming 65452 -Upcycle 63792 -Update 39081 -UpdateAll 65452 -UpdateFTIndex 63991 -UpdateProcessedDoc 63991 -UpdateRow 64201 -Updated 40726 -Updater 56452 -Updates 40980 -Updating 50335 -Updike 59774 -Updo 64201 -Upfront 60405 -Upgradation 63991 -Upgrade 45470 -Upgraded 55474 -Upgrader 61940 -Upgrades 48323 -Upgrading 50710 -Upham 64201 -Upheavals 63419 -Upheld 65170 -Uphill 62066 -Upholds 63245 -Upholstered 56356 -Upholsterers 65170 -Upholstery 53226 -Upjohn 64423 -Upkeep 64423 -Upland 56324 -Uplander 62762 -Uplands 61256 -Uplawmoor 65170 -Uplift 62762 -Uplifting 57923 -Uplink 59630 -Upload 36377 -UploadAnonymous 60670 -Uploaded 45155 -Uploader 53226 -Uploader's 62762 -Uploaders 60856 -Uploading 54096 -Uploads 46483 -Upminster 58860 -Upon 43953 -Upped 64905 -Upper 43343 -Uppercase 65170 -Uppercut 59848 -Uppity 63792 -Uppsala 55552 -Uppy 64657 -Upregulation 64201 -Upright 52571 -Uprising 59227 -Upromise 61818 -Ups 51078 -Upscale 57278 -Upset 57524 -Upsets 64423 -Upsetters 63792 -Upshaw 63245 -Upshift 65170 -Upshur 65452 -Upside 56972 -Upsilon 62613 -Upskirt 57278 -Upskirts 63419 -Upson 64657 -Upstairs 57278 -Upstart 63419 -Upstate 53970 -Upstream 55934 -Uptake 56231 -Uptime 54601 -Upto 57122 -Upton 54078 -Uptown 53407 -Upurea 64905 -Upward 58262 -Upwardly 64423 -Upwey 64905 -Ur 53865 -UrQuattro 63077 -Urabe 62331 -Uracil 64423 -Uraeotyphlus 65170 -Urahara 61472 -Ural 61472 -Uranium 54380 -Uranus 59848 -Urbain 65170 -Urban 41516 -UrbanBaby 60405 -UrbanGen 63792 -Urbana 55766 -Urbandale 64201 -Urbanism 62613 -Urbanist 64423 -Urbanite 60856 -Urbanization 61699 -Urbanized 62066 -Urbano 64201 -Urbanspoon 54813 -Urceolaria 61362 -Urchin 61699 -Urdu 50270 -Urea 57876 -Urethane 59227 -Urethral 60856 -Urey 64423 -Urffer 61699 -Urge 57046 -Urged 54643 -Urgency 60670 -Urgent 51741 -Urgently 61818 -Urges 53746 -Urhobo 65170 -Uri 58212 -Uriah 62469 -Uribe 60492 -Uridine 65452 -Uriel 65452 -Urinal 63077 -Urinalysis 61699 -Urinary 51220 -Urination 62331 -Urine 54302 -Urispas 65452 -Url 49732 -Urlacher 64905 -Urlaub 64657 -Urlesque 62066 -Urls 62066 -Urmila 63419 -Urn 57970 -Urner 64905 -Urns 59227 -Urogenital 63792 -Urol 53917 -Urologic 62762 -Urological 58523 -Urologist 63601 -Urologists 65170 -Urology 50718 -Urquhart 62762 -Urry 64201 -Urs 59702 -Ursa 61472 -Ursin 60670 -Ursula 55684 -Ursus 64905 -Uruguay 45497 -Uruguayan 61256 -Uruk 65170 -Urumqi 64657 -Urusei 64201 -Urza's 61940 -Us 28772 -UsContact 61362 -UsHelp 64905 -UsMy 63419 -UsPrivacy 63991 -UsTerms 61699 -Usa 54059 -Usaaisc 55738 -Usability 53882 -Usable 56170 -Usados 64423 -Usage 42657 -Usagi 60952 -Usaha 62066 -Usain 61152 -Usama 64201 -Usb 56862 -UsbSmart 65452 -Usborne 62762 -Usd 60492 -Use 31884 -UseCopyright 63991 -UseLSX 61152 -UseNeXT 54902 -UseNext 59774 -UsePrivacy 63991 -Used 37589 -Usefilm 60078 -Useful 42641 -Usefull 62196 -Usefulness 59424 -Useless 56756 -Usenet 48182 -Usenext 57399 -User 31819 -User's 48648 -UserCP 64423 -UserDocs 65170 -UserGallery 58577 -UserGroupNameList 63077 -UserLand 62917 -UserName 60000 -UserNameList 63245 -UserNameObject 63601 -UserOnline 64423 -UserOur 55934 -UserType 63991 -Userbar 65452 -Usergroups 50402 -Userinstinct 60580 -Username 41875 -Usernames 61940 -Users 39203 -UsersHigh 55992 -Uses 47729 -Usha 59560 -Usher 50734 -Usher's 64423 -Ushers 62066 -Ushuaia 62917 -Using 38089 -Usman 61152 -Uspanteco 64905 -Uspekhi 59101 -Ussing 64423 -Ustad 62196 -Usted 61362 -Ustream 58745 -Usual 54727 -Usually 43553 -Usuarios 63419 -Usui 61818 -Usuário 62331 -Ut 58065 -Uta 62066 -Utada 62762 -Utah 41653 -Utah's 58017 -Utahns 65170 -Utama 62066 -Utara 62331 -Utd 52622 -Ute 58919 -Utena 63077 -Utensil 61051 -Utensils 54283 -Uterine 57399 -Uterus 62762 -Utes 60157 -Uther 60078 -Uti 63792 -Utica 54685 -Util 61472 -Utilisation 60952 -Utilising 63792 -Utilities 42912 -Utility 44744 -Utility's 65170 -UtilityBank 64423 -Utilityman 54727 -Utilization 53256 -Utilize 59292 -Utilized 64905 -Utilizes 62613 -Utilizing 54835 -Utils 61152 -Utley 58802 -Utmost 60762 -Utne 63245 -Utopia 56140 -Utopian 60492 -Utrecht 54041 -Utsav 64657 -Uttar 54857 -Uttara 65452 -Uttarakhand 61256 -Uttaranchal 58632 -Utter 60492 -Utterly 60580 -Uttermost 64905 -Uttoxeter 63792 -Utube 62331 -Utusan 64423 -Utz 64423 -Uva 62762 -Uvalde 64423 -Uveitis 63601 -Uw 63419 -Uwe 56687 -Uxbridge 56756 -Uy 63991 -Uyak 65170 -Uygur 65452 -Uz 65452 -Uzbek 57440 -Uzbekistan 46032 -Uzi 62469 -Uzumaki 60405 -V 35969 -V's 60952 -VA 40119 -VA's 65170 -VAC 54245 -VACANCIES 60762 -VACANCY 59848 -VACANT 60492 -VACATION 57122 -VACATIONS 59702 -VACCINE 61940 -VACCINES 65452 -VACUUM 60000 -VAD 58632 -VAG 60078 -VAIO 53153 -VAL 59923 -VALCO 63601 -VALE 60952 -VALENCIA 58688 -VALENTINE 62196 -VALENTINE'S 65170 -VALENTINO 63245 -VALERIE 62613 -VALID 58577 -VALIDATION 63077 -VALIDITY 63991 -VALLEY 51762 -VALUATION 62196 -VALUE 50890 -VALUES 53796 -VALVE 54969 -VALVES 59491 -VAM 63991 -VAMPIRE 61362 -VAN 51293 -VANCOUVER 60000 -VANESSA 58979 -VANGUARD 62331 -VANILLA 63419 -VANITY 60670 -VANN 63991 -VANNET 63077 -VANS 59491 -VANUATU 61940 -VAP 57278 -VAPOR 61584 -VAR 57831 -VARIABLE 58919 -VARIABLES 59923 -VARIANCE 61362 -VARIANT 64657 -VARIATION 61362 -VARIATIONS 62469 -VARIETY 58577 -VARIO 63419 -VARIOUS 53712 -VARSITY 59560 -VARY 64657 -VARs 61940 -VAS 57318 -VASA 62469 -VASAT 59774 -VASATWiki 61818 -VASCULAR 61051 -VASE 63419 -VASP 52940 -VAST 61584 -VAT 45814 -VATICAN 64657 -VATS 63077 -VAUGHAN 65170 -VAUGHN 64905 -VAULT 60856 -VAUXHALL 59357 -VAX 61699 -VB 49707 -VBA 53796 -VBAC 64423 -VBForums 62613 -VBL 63792 -VBR 56231 -VBS 56721 -VBScript 57831 -VC 51008 -VCA 57524 -VCC 57482 -VCD 51610 -VCDs 62917 -VCE 61699 -VCH 63601 -VCHSS 61940 -VCI 62613 -VCL 61699 -VCMT 64201 -VCO 59424 -VCR 51640 -VCR's 64657 -VCRs 57440 -VCS 61699 -VCT 61362 -VCU 59491 -VCX 61256 -VCXO 64423 -VCash 56551 -VCore 65452 -VCs 62469 -VD 57440 -VDC 55154 -VDD 57876 -VDDQ 62469 -VDE 60000 -VDI 63077 -VDM 63419 -VDO 58860 -VDOT 63991 -VDR 61699 -VDRO 58313 -VDSCHT 64905 -VDV 62066 -VDoc 63419 -VE 53549 -VEC 62762 -VECTOR 60856 -VEDIC 65170 -VEE 64657 -VEGA 61699 -VEGAN 64423 -VEGAS 54479 -VEGETABLE 61818 -VEGETABLES 63601 -VEGETARIAN 65170 -VEGF 52982 -VEGFl 64905 -VEHICLE 53182 -VEHICLES 57238 -VELOCITY 62196 -VELUX 63077 -VELVET 57238 -VEN 64423 -VENDING 63077 -VENDOR 57399 -VENDORS 60321 -VENEER 61051 -VENEZUELA 59292 -VENIAL 63991 -VENICE 63245 -VENOM 62917 -VENT 61362 -VENTILATION 63077 -VENTRICULAR 65452 -VENTURA 60856 -VENTURE 59227 -VENUE 58262 -VENUES 60000 -VENUS 62613 -VEP 62917 -VER 60238 -VERA 63792 -VERDCOURT 63245 -VERDE 60000 -VERDES 61699 -VERDICT 65170 -VERIFICATION 61256 -VERIFIED 63792 -VERIFY 64201 -VERISIGN 53847 -VERITAS 64201 -VERIZON 61152 -VERMA 65170 -VERMEER 63245 -VERMONT 59292 -VERNON 60321 -VERONICA 61818 -VERRALL 64201 -VERSACE 62331 -VERSE 62917 -VERSION 52927 -VERSIONS 64423 -VERSUS 58688 -VERTEX 62469 -VERTICAL 59630 -VERVIEW 64905 -VERY 47935 -VESA 58688 -VESPA 61362 -VESSEL 64905 -VEST 64905 -VET 59039 -VETERANS 60580 -VETERINARY 59164 -VEXNEWS 60856 -VEZ 64905 -VF 55500 -VFA 58979 -VFC 64905 -VFD 60580 -VFI 64905 -VFL 61362 -VFM 62613 -VFR 58212 -VFS 63991 -VFW 57440 -VFX 60321 -VG 55323 -VGA 49458 -VGC 63991 -VGH 63792 -VGPU 64423 -VGS 64905 -VH 57318 -VHA 64423 -VHC 59923 -VHD 65452 -VHDL 60157 -VHF 54749 -VHGA 64657 -VHI 65452 -VHL 63792 -VHP 64423 -VHS 45362 -VHSB 60762 -VI 46859 -VIA 51867 -VIACOM 60952 -VIAGRA 62613 -VIB 65170 -VIBE 60492 -VIBES 65170 -VIBRAPHONE 64423 -VIBRATION 63245 -VIC 47988 -VICE 56935 -VICENTE 62917 -VICKI 62762 -VICTA 65452 -VICTIM 61699 -VICTIMS 63601 -VICTOR 59491 -VICTORIA 55684 -VICTORIA'S 61152 -VICTORIAN 57696 -VICTORY 59357 -VID 59292 -VIDA 60856 -VIDEO 43811 -VIDEOS 47823 -VIDEOTAPE 63601 -VIDS 62469 -VIE 62762 -VIENNA 64423 -VIERA 63077 -VIET 61940 -VIETNAM 59702 -VIETNAMESE 64905 -VIEW 45068 -VIEWED 59227 -VIEWER 63077 -VIEWING 60238 -VIEWMEDIC 63601 -VIEWPOINT 65452 -VIEWS 54835 -VIEWjazz 62917 -VIGOSS 64423 -VIH 64423 -VII 48711 -VIII 50576 -VIIa 63991 -VIJAY 64657 -VIKING 60157 -VILL 63601 -VILLA 57696 -VILLAGE 52130 -VILLAS 62469 -VILLEROY 64201 -VIM 61699 -VIMBY 62762 -VIN 51846 -VINCE 65452 -VINCENT 55631 -VINCI 63077 -VINE 61940 -VINEYARD 63077 -VINO 61472 -VINTAGE 51396 -VINTEC 63991 -VINYL 51963 -VIO 61584 -VIOLA 61940 -VIOLATION 61818 -VIOLATIONS 62066 -VIOLENCE 59774 -VIOLENT 64201 -VIOLET 63991 -VIOLIN 62762 -VIOLONCELLO 64905 -VIP 45959 -VIPER 63601 -VIPs 58065 -VIRAL 63419 -VIRALS 63419 -VIRGIN 56485 -VIRGINIA 52968 -VIRGO 65452 -VIROL 65452 -VIRTUAL 53196 -VIRUS 57696 -VIRUSES 65170 -VIS 56935 -VISA 52648 -VISAS 61818 -VISIBLE 58523 -VISION 53549 -VISIONS 65452 -VISIT 51670 -VISITING 59702 -VISITOR 59491 -VISITORS 58113 -VISITS 59560 -VISTA 53830 -VISUAL 55793 -VITA 60580 -VITAE 61818 -VITAL 60238 -VITAMIN 61699 -VITAMINS 63991 -VITO 61940 -VITRO 64657 -VIVA 59774 -VIVIAN 65170 -VIVID 62917 -VIVO 61051 -VIX 63792 -VIZ 63991 -VJ 54581 -VK 54946 -VL 54560 -VLA 60000 -VLADIMIR 64905 -VLAN 55274 -VLANs 59560 -VLBI 64423 -VLBW 61472 -VLC 53501 -VLCCF 64423 -VLDB 63419 -VLDL 59424 -VLE 61940 -VLF 64905 -VLIW 62762 -VLL 60492 -VLM 62917 -VLOG 63792 -VLR 62762 -VLSI 55500 -VLT 62469 -VM 50129 -VMA 58313 -VMA's 64201 -VMAs 60238 -VMC 63419 -VME 57653 -VMI 58017 -VMN 63419 -VMP 64423 -VMS 56585 -VMTN 61699 -VMWare 58802 -VMotion 64657 -VMs 64905 -VMware 45802 -VMware's 63991 -VMworld 61362 -VN 54170 -VNA 63991 -VNC 56388 -VND 64657 -VNL 59039 -VNR 60580 -VNS 64905 -VNU 64423 -VNV 64657 -VO 54601 -VOA 59630 -VOB 55766 -VOC 54005 -VOCAL 61152 -VOCATIONAL 65170 -VOCED 59630 -VOCs 58745 -VOD 53241 -VODAFONE 64905 -VODKA 63991 -VOGEL 65170 -VOGUE 58523 -VOICE 54727 -VOICES 58979 -VOID 62469 -VOILE 63419 -VOIP 51202 -VOL 53597 -VOLCOM 64201 -VOLKSWAGEN 58417 -VOLLEYBALL 61584 -VOLT 60157 -VOLTAGE 56080 -VOLUME 51502 -VOLUMES 64905 -VOLUNTARY 59630 -VOLUNTEER 57970 -VOLUNTEERS 61818 -VOLVO 56420 -VON 57696 -VONAGE 65452 -VOOM 61699 -VOP 64905 -VOR 60762 -VORTEX 65170 -VOS 60492 -VOSA 64905 -VOSTFR 65452 -VOT 59227 -VOTE 51521 -VOTED 62762 -VOTER 60492 -VOTERS 64201 -VOTES 57358 -VOTING 57122 -VOUCHER 61362 -VOUCHERS 62613 -VOUS 65452 -VOW 64201 -VOWEL 61152 -VOX 60762 -VOYAGE 64423 -VOYAGER 63419 -VOZ 63991 -VP 45875 -VPA 63792 -VPARP 65170 -VPC 58417 -VPD 64657 -VPI 63245 -VPK 58577 -VPL 64423 -VPLS 60405 -VPM 58860 -VPN 49764 -VPNs 63601 -VPP 62469 -VPR 59227 -VPS 52791 -VPX 64657 -VPage 64905 -VQ 60580 -VR 52007 -VRAM 62917 -VRB 64657 -VRBO 60405 -VRC 62762 -VRE 57084 -VRLA 64657 -VRP 63245 -VRQ 64905 -VRS 62331 -VRT 63077 -VRX 64423 -VS 46178 -VSA 61256 -VSAM 63601 -VSAT 63792 -VSB 60000 -VSC 64201 -VSCountry 64657 -VSD 64905 -VSE 60405 -VSG 59774 -VSI 64657 -VSIA 61699 -VSL 59630 -VSM 59357 -VSMC 59101 -VSMCs 60952 -VSNL's 57876 -VSO 57876 -VSOP 65170 -VSP 61699 -VSPL 63601 -VSPOT 63245 -VSR 63792 -VSS 58577 -VST 55766 -VSTi 60321 -VSWR 60405 -VScom 63601 -VT 45802 -VTA 63077 -VTB 61584 -VTC 60238 -VTE 62613 -VTEC 59227 -VTG 63419 -VTI 60405 -VTL 64657 -VTLS 59491 -VTP 59923 -VTR 59424 -VTS 63419 -VTT 60078 -VTX 61584 -VTech 61940 -VTi 63245 -VU 58979 -VUE 58802 -VUITTON 61362 -VUV 60492 -VV 53153 -VVS 64905 -VVT 62331 -VW 47163 -VWD 63077 -VWF 65170 -VWR 64201 -VWXYZ 64657 -VWs 62613 -VWvortex 65170 -VX 55934 -VXI 61699 -VXR 63792 -VY 61051 -VZ 57876 -VZV 60238 -VZW 60238 -Va 52886 -Vaal 62613 -Vaan 63245 -Vaastu 61256 -Vac 56021 -Vaca 64423 -Vacaciones 64201 -Vacances 64905 -Vacancies 48791 -Vacancy 52130 -Vacant 52472 -Vacate 62331 -Vacated 63601 -Vacation 41960 -Vacationing 62331 -Vacations 44909 -Vacatures 64201 -Vacaville 61152 -Vaccaro 63991 -Vaccination 56791 -Vaccinations 58162 -Vaccine 50087 -Vaccines 54813 -Vache 65452 -Vacheron 63991 -Vachs 64423 -Vachss 65452 -Vaclav 60492 -Vacqueyras 64905 -Vacs 60670 -Vacuum 46651 -Vacuums 51909 -Vader 53613 -Vadim 58745 -Vadisi 59923 -Vadnais 64423 -Vadodara 55604 -Vadose 63077 -Vaduz 63792 -Vag 64423 -Vagabond 59774 -Vagabonda 65170 -Vagina 57278 -Vaginal 54302 -Vagisil 65452 -Vagrant 65452 -Vague 60078 -Vagus 62469 -Vahl 63792 -Vai 58162 -Vaidya 62762 -Vaikule 63792 -Vail 53438 -Vaillancourt 65170 -Vain 60238 -Vaio 55423 -Vaisala 63077 -Vaisseau 62917 -Val 50499 -Vala 65170 -Valance 59227 -Valarie 62196 -Valassis 59848 -Valcom 63792 -Valdemar 62762 -Valderrama 63792 -Valdes 61256 -Valdez 56687 -Valdis 65452 -Valdivia 65170 -Valdosta 56170 -Valdés 62066 -Vale 48761 -Valedictorian 64657 -Valence 61256 -Valencia 49682 -Valencian 61818 -Valenciana 64423 -Valenciennes 63991 -Valente 64201 -Valenti 60238 -Valentin 56388 -Valentina 57482 -Valentine 49584 -Valentine's 49251 -Valentines 52387 -Valentinian 65452 -Valentino 52597 -Valentino's 64423 -Valenzuela 61699 -Valeo 60157 -Valera 65452 -Valeri 64905 -Valeria 59164 -Valerian 63077 -Valerie 50584 -Valerio 61362 -Valero 60405 -Valery 59227 -Valet 53899 -Valeting 60078 -Valhalla 58919 -Valiant 56262 -Valid 43146 -Validate 56935 -Validated 59424 -Validating 60580 -Validation 49017 -Validator 60321 -Validian 65170 -Validity 54560 -Valier 64657 -Valine 63792 -Valium 48101 -Valk 62066 -Valkyria 58113 -Valkyrie 60157 -Valkyries 65170 -Vall 64905 -Valladares 62196 -Valladolid 59560 -Vallamkonda 64905 -Vallance 58860 -Vallarta 54969 -Valle 54749 -Vallee 65170 -Vallejo 55202 -Valles 61256 -Valletta 61362 -Valley 38720 -Valley's 57970 -Valleys 57923 -Valleywag 61940 -ValleywagLayoffs 64201 -Valleywagblogging 63991 -Valli 60000 -Vallis 65452 -Valls 65452 -Vallée 63792 -Valmiki 64657 -Valmont 60952 -Valor 57653 -Valoración 59227 -Valores 62917 -Valorie 64201 -Valparaiso 57785 -Valpolicella 65452 -Valrico 64657 -Vals 64423 -Valsalva 60580 -Valse 63419 -Valter 63792 -Valtrex 58919 -Valu 63245 -Valuable 54023 -Valuation 50522 -Valuations 55934 -Value 40639 -ValueClick 59630 -ValueClips 61818 -ValueLength 64423 -ValuePlays 59227 -Valued 57046 -Valuer 63991 -Valuers 60492 -Values 44716 -ValuesFind 62196 -Valuing 61699 -Valve 48345 -Valverde 64201 -Valves 51482 -Valvetrain 64905 -Valvular 65452 -Valérie 62762 -Vamos 61472 -Vamp 59848 -Vampire 48139 -Vampire's 63419 -Vampires 55738 -Vamps 65452 -Vampyr 64201 -Van 40852 -Van's 63792 -Vana 64905 -Vanadium 60321 -Vanadyl 65452 -Vanagon 64201 -Vance 53182 -Vancomycin 62613 -Vancouver 43209 -Vancouver's 58262 -Vanda 61362 -Vandal 60157 -Vandalia 61152 -Vandalism 60580 -Vandals 57653 -Vande 60321 -Vandel 63245 -Vanden 59164 -Vandenberg 62613 -Vander 59491 -Vanderbilt 50890 -Vanderbilt's 64423 -Vanderburgh 62762 -Vandeventer 63601 -Vandoeuvre 49429 -Vandread 61940 -Vandross 62613 -Vane 59774 -Vaneau 59630 -Vanek 62469 -Vanessa 46406 -Vanessa's 62066 -Vang 61818 -Vangelis 61152 -Vangie 64657 -Vanguard 52018 -Vanguard's 61584 -Vani 65452 -Vanilla 50774 -Vanilli 61584 -Vanish 61940 -Vanished 62196 -Vanishing 56262 -Vanissa 62196 -Vanities 60238 -Vanity 47592 -Vann 64201 -Vanna 63792 -Vanni 64905 -Vans 48122 -Vansak 64905 -Vantaa 64905 -Vantage 53438 -Vantec 56687 -Vantin 63601 -Vanuatu 46781 -Vapor 52982 -Vaporizer 62762 -Vaporizers 64201 -Vapour 60856 -Var 59292 -Varadero 61818 -Varanasi 57831 -Varazze 65452 -Vardenafil 63419 -Vardi 63991 -Varela 61699 -Varennes 62917 -Varese 63601 -Varga 63419 -Vargas 55877 -Varghese 64201 -Vargo 63245 -Vari 59848 -Varia 61362 -Variability 55934 -Variable 49092 -Variables 51846 -Variación 64423 -Varian 57524 -Variance 53762 -Variances 61051 -Variant 54459 -Variants 56485 -Variation 51229 -Variational 61940 -Variations 52198 -Varicella 61584 -Varicose 58065 -Varied 60492 -Variegated 62613 -Varies 56585 -Varietal 59848 -Varietals 65452 -Varieties 55766 -Variety 47577 -Varig 52940 -Varin 64201 -Varina 65452 -Vario 60670 -Variometer 65170 -Varios 65170 -Various 43503 -Varistors 62613 -Varitek 63792 -Varley 64657 -Varma 58802 -Varmint 60952 -Varn 65170 -Varna 59923 -Varner 63419 -Varnes 63245 -Varney 63245 -Varnish 61584 -Varo 62762 -Varroa 63792 -Varsity 49342 -Varta 63601 -Vartan 64905 -Varun 60157 -Varvatos 61256 -Vary 58313 -Varying 57399 -Vas 62331 -Vasa 63077 -Vasant 62917 -Vasarely's 57238 -Vasc 56618 -Vasco 58745 -Vasconcelos 63419 -Vascular 49547 -Vase 53613 -Vasectomy 61051 -Vaseline 62196 -Vases 54685 -Vashj 59039 -Vashon 63792 -Vasile 64657 -Vasily 64423 -Vasilyev 64423 -Vaslui 64201 -Vaso 60952 -Vasoactive 64201 -Vasopressin 65452 -Vasotec 62196 -Vasque 61472 -Vasquez 58523 -Vass 63077 -Vassar 60078 -Vassilis 64423 -Vast 56050 -Vastly 56721 -Vastu 61472 -Vat 59774 -Vata 64423 -Vater 62066 -Vatersay 65452 -Vatican 47207 -Vatican's 64657 -Vatterott 64423 -Vatu 62762 -Vaucluse 64905 -Vaudeville 62613 -Vaughan 52597 -Vaughn 52725 -Vaught 65452 -Vault 44205 -Vault's 63245 -Vaulted 62917 -Vaulting 59923 -Vaults 54419 -Vauxhall 50718 -Vax 64905 -Vay 64423 -Vaya 62762 -Vaynerchuk 65452 -Vays 64905 -Vaz 63991 -Vazquez 59227 -Vb 62917 -Vbulletin 64657 -Vc 61362 -Vcc 62196 -Vcore 64657 -Vcr 64905 -Vd 63991 -Vdc 58577 -Ve 54302 -VeRO 53565 -VeVi 64423 -Vea 63792 -Veal 58688 -Veatch 61940 -Veblen 63601 -Vecchio 61472 -Veco 61584 -Vector 48771 -Vectorize 63077 -Vectors 55657 -Vectra 58632 -Vectrex 63245 -Ved 60492 -Veda 59630 -Vedas 62331 -Vedder 59702 -Vedder's 63077 -Vedi 61818 -Vedic 55552 -Vedio 65452 -Vedra 59923 -Vedran 61699 -Vee 58632 -Veeder 65170 -Veen 61699 -Veep 57358 -Veer 59164 -Veg 56420 -Vega 51762 -Vegan 49952 -Vegans 63991 -Vegas 40571 -Vegas's 63077 -Vegeta 59101 -Vegetable 48821 -Vegetables 49470 -Vegetarian 46497 -Vegetarianism 63991 -Vegetarians 61472 -Vegetation 54499 -Vegetative 60321 -Veggie 55202 -VeggieTales 63245 -Veggies 59560 -Vegi 63991 -Vehicle 42111 -Vehicles 42995 -Vehicular 58417 -Veiga 60580 -Veil 56050 -Veiled 64201 -Veils 61818 -Veilside 63601 -Vein 57566 -Veins 57785 -Veit 65170 -Veitch 64905 -Veja 60856 -Vejen 65452 -Vek 64201 -Vek'nilash 59702 -Vel 62762 -Vela 60321 -Velarde 64423 -Velaro 64201 -Velasco 60157 -Velasquez 59491 -Velazquez 62196 -Velbon 64423 -Velcon 64905 -Velcro 54946 -Velde 62066 -Velen 61051 -Velez 60157 -Veliko 63991 -Vell 64201 -Vella 61818 -Vellore 59424 -Vellum 61940 -Velma 61699 -Velo 58470 -Veloce 62613 -Velocities 63601 -Velocity 50932 -Velocityscape 60492 -Velodrome 63792 -Veloso 65170 -Velour 55323 -Velox 63601 -Veltfort 62066 -Velvet 49423 -Vem 64657 -Ven 59357 -Vena 61256 -Venable 63601 -Venables 61152 -Venda 60856 -Vendetta 57923 -Vending 54023 -Vendio 58860 -Vendome 63419 -Vendor 46266 -Vendor's 63245 -Vendors 48350 -VendorsReviews 65452 -Vendy 64201 -Veneer 56200 -Veneers 57440 -Venegas 61584 -Vener 64423 -Venerable 61256 -Venere 64905 -Venereol 60952 -Venerol 63419 -Veneta 63419 -Venetian 54059 -Veneto 59774 -Venezia 58632 -Veneziano 62762 -Venezuela 44533 -Venezuela's 60321 -Venezuelan 53970 -Vengeance 55474 -Vengeful 63991 -Venice 46757 -Venison 61699 -Venkat 60321 -Venkatesh 61940 -Venlafaxine 60762 -Venn 62469 -Venom 54902 -Venomous 58688 -Venous 57482 -Vent 51293 -Venta 61256 -Ventana 60405 -Vente 64657 -Vented 57696 -Venter 61051 -Ventilated 61699 -Ventilating 58577 -Ventilation 52496 -Ventilator 61699 -Ventilators 64905 -Ventimiglia 60856 -Venting 59164 -Ventless 64905 -Ventnor 63792 -Vento 61699 -Ventral 62762 -Ventricular 56200 -Ventrilo 61699 -Vents 58632 -Ventshade 64657 -Ventura 50734 -Venture 47279 -VentureBeat 62196 -Ventures 49308 -Venturi 58065 -Venturing 60856 -Venue 46189 -Venues 46732 -Venugopal 65452 -Venus 50234 -Venza 64905 -Veoh 50670 -VeohTV 54059 -Veolia 65170 -Ver 50856 -VerDate 56935 -Vera 50915 -Veracruz 58802 -Veranda 61256 -Verano 63245 -Veranstaltungen 63077 -Verapamil 62917 -Verb 56652 -Verbal 54419 -Verbalized 57238 -Verbally 63419 -Verbatim 54226 -Verbena 61362 -Verbose 63419 -Verbruggen 65170 -Verbs 57566 -Verda 64657 -Verdana 56324 -Verdcourt 64423 -Verde 46329 -Verdes 55250 -Verdi 58262 -Verdiblanco 62917 -Verdict 55373 -Verdicts 65170 -Verdugo 60405 -Verdun 64201 -Vere 60580 -Veredicto 63792 -Veredus 62762 -Vereeniging 63991 -Verein 65452 -Verena 64201 -Verenigde 65452 -Veretekk 65170 -Vergara 61584 -Verge 59164 -Vergennes 64657 -Vergleich 64423 -Verhaaltje 63601 -Verhoef 64905 -Verhoeven 65452 -VeriMed 63601 -VeriSign 50710 -Verification 46595 -Verified 47645 -Verifier 58162 -Verifies 65170 -Verify 49764 -VerifyPassword 63991 -Verifying 60000 -Verilog 63077 -Verilux 60856 -Verio 56972 -Verio's 64423 -Verisign 54226 -Veritas 51690 -Veriton 59923 -Verity 60000 -Veriuni 64423 -Verizon 46045 -Verizon's 59101 -Verkauf 60952 -Verlag 54399 -Verma 59039 -Vermeer 60492 -Vermeil 62762 -Vermeulen 61818 -Vermilion 58262 -Vermillion 59560 -Vermin 63077 -Vermont 42800 -Vermont's 60405 -Vermonters 64657 -Vern 57440 -Verna 59774 -Vernacular 61584 -Vernal 64657 -Verne 57566 -Verner 63991 -Vernier 61472 -Vernon 47791 -Vernon's 65170 -Vernonia 63245 -Vero 54226 -Veron 63077 -Verona 54439 -Veronica 50306 -Veronica's 62469 -Veronicas 62331 -Veronika 59292 -Veronique 62613 -Verrier 64423 -Vers 60670 -Versa 57009 -VersaCOM 65170 -Versace 54581 -Versailles 54360 -Versatile 55274 -Versatility 61818 -Verse 52699 -Verses 58113 -Version 37211 -VersionTracker 62331 -Versione 64423 -Versioning 65452 -Versions 48975 -Versión 58802 -Verso 63077 -Versuri 62613 -Versus 50416 -Versão 60856 -Vert 61472 -Vertaal 63792 -Vertalingen 63419 -Verte 65452 -Vertebral 63601 -Vertebrata 53746 -Vertebrate 61584 -Vertex 56756 -Vertical 47167 -Vertically 62917 -Verticals 60492 -Vertigo 55373 -Vertimai 63419 -Vertis 62917 -Vertu 61699 -Verve 54078 -Verwood 65452 -Very 40144 -Verónica 64201 -Ves 64905 -Vesa 62762 -Vesey 63601 -Vesicles 61362 -Vesicular 63245 -Vesna 64657 -Vespa 56485 -Vesper 64657 -Vesperia 60405 -Vespers 63991 -Vessel 52233 -Vessels 50171 -Vest 53095 -Vesta 58313 -Vestal 59164 -Vestas 62762 -Vestavia 61940 -Vestax 60321 -Vested 64423 -Vester 64201 -Vestibular 62066 -Vestibulum 61699 -Vestn 61051 -Vestry 63077 -Vests 53679 -Vesuvius 64905 -Vet 48239 -Vet's 64657 -VetBene 64657 -VetCentric 63601 -VetFriends 64423 -Veter 63792 -Veteran 48831 -Veteran's 55014 -Veterans 45052 -Veterinarian 57122 -Veterinarians 52765 -Veterinarmed 63991 -Veterinary 46578 -Vetiver 64657 -Veto 59164 -Vets 54685 -Vetta 65452 -Vette 58470 -Vetter 61818 -Vettes 64657 -Vetting 62196 -Veuillez 64201 -Veuve 65452 -Vex 64423 -Vexxum 62469 -Veyron 57318 -Vez 64201 -Vf 61584 -Vfl 65170 -Vg 64657 -Vgc 65170 -Vi 54601 -ViPS 64423 -ViVi 65452 -Via 46555 -ViaMichelin 63245 -ViaSat 65452 -Viability 58632 -Viable 58860 -Viacom 54479 -Viaduct 62196 -Viagem 65452 -Viaggi 64423 -Viaggio 60238 -Viagra 45428 -Viaje 62196 -Viajes 57831 -Vial 62066 -Viale 60078 -Vials 63419 -Vian 64657 -Viana 63601 -Vianna 64423 -Viareggio 60762 -Viasat 61940 -Viator 61818 -Vibe 53565 -Vibes 55448 -Vibha 60580 -Vibra 64905 -Vibrant 56972 -Vibraphone 64201 -Vibrating 55552 -Vibration 53407 -Vibrational 59702 -Vibrations 58688 -Vibrato 63792 -Vibrator 57970 -Vibrators 55274 -Vibratory 64423 -Vibrio 56262 -Vibro 63991 -Viburnum 64905 -Vic 51502 -Vic's 64657 -Vicar 59923 -Vicarage 61256 -Vicarious 63245 -Vice 41828 -Vicente 54813 -Vicenza 60238 -Viceroy 64657 -Vices 63792 -Vichy 60952 -Vici 64905 -Vicia 62331 -Vicinity 54302 -Vicious 55963 -Vick 54643 -Vickers 55526 -Vickery 61940 -Vicki 52007 -Vicki's 64905 -Vickie 57566 -Vicks 61362 -Vicksburg 58262 -Vicky 52609 -Vicky's 64905 -Vico 64201 -Vicodin 54114 -Vicon 62917 -Vicoveanca 64201 -Victim 50791 -Victim's 61472 -Victimization 60952 -Victims 50150 -Victoire 64657 -Victor 46815 -Victor's 61699 -Victoria 41563 -Victoria's 51942 -Victorian 46384 -Victorians 61362 -Victorias 61940 -Victories 59101 -Victorino 63792 -Victorinox 57876 -Victorious 61940 -Victoriously 63245 -Victorville 61699 -Victory 48501 -Victualler 65170 -Vid 55578 -Vida 51043 -VidaVici 62066 -Vidal 56485 -Vidalia 60580 -Vidar 63419 -Vidco 64657 -Viddler 62762 -Vide 57440 -Video 29574 -Video's 60238 -VideoAnimation 62196 -VideoBETA 51825 -VideoBox 62917 -VideoBytes 60952 -VideoGame 64657 -VideoGames 63419 -VideoHound 63245 -VideoJug 64423 -VideoLAN 59292 -VideoSift 57160 -VideoStudio 64657 -Videocards 59357 -Videocassette 63419 -Videocassettes 64905 -Videocast 64423 -Videoclip 64905 -Videoconferencing 62917 -Videogame 56721 -Videogames 58577 -Videographer 61051 -Videographers 55604 -Videography 57084 -Videogum 61699 -Videojug 64423 -VideokeChannel 65170 -Videolar 64905 -Videolog 65170 -Videomaker 63601 -Videos 31852 -Videostars 55154 -Videosu 60238 -Videotape 61152 -Videotapes 65452 -Videotron 63245 -Videowall 60078 -Videozap 62331 -Vidiac 65170 -Vidiya 63245 -Vidor 64201 -Vids 53316 -Viduka 63991 -Vidya 56972 -Vidyalaya 61940 -Vidz 65452 -Vidéo 60321 -Vidéos 62469 -Vidéotron 65170 -Vie 53847 -Vieille 63245 -Vieira 60492 -Viejas 65452 -Viejo 56231 -Vielen 63792 -Vien 64423 -Vienna 47335 -Vienna's 64201 -Viennese 58632 -Viens 65452 -Vientiane 64657 -Vieques 62762 -Vier 61818 -Viera 60405 -Viet 49682 -Vietcong 65170 -Vietnam 42194 -Vietnam's 59560 -Vietnamese 47911 -Vieux 59702 -View 27511 -ViewAlias 65452 -ViewCVS 57009 -ViewColumn 54664 -ViewEntry 55014 -ViewEntryCollection 55178 -ViewInheritedFrom 65452 -ViewInheritedName 61362 -ViewName 64423 -ViewNavigator 55084 -ViewPicture 56551 -ViewPoint 60670 -ViewSat 64905 -ViewSonic 56972 -ViewVC 53712 -Viewable 64423 -Viewed 41930 -Viewer 41481 -Viewers 52339 -Viewfinder 60952 -Viewing 43488 -Viewpoint 51266 -Viewpoints 54992 -Views 36519 -ViewsWire 61152 -Viewsat 57160 -Viewsday 63792 -Viewsonic 57970 -Viewty 60762 -Vigan 65452 -Viggen 64201 -Viggo 61584 -Vigil 57084 -Vigilance 61256 -Vigilancia 62917 -Vigilante 58577 -Vigna 63245 -Vigne 64201 -Vignette 57122 -Vignettes 63077 -Vigo 56293 -Vigor 63077 -Vigorous 62762 -Vigoss 59101 -Vihar 61940 -Vihear 64657 -Vii 62917 -Viigo 65452 -Vij 65452 -Vijay 53392 -Vijaya 64201 -Vijayan 64905 -Vijayawada 55793 -Vijesti 64905 -Vika 64905 -Vikas 59702 -Vike 65170 -Viki 59923 -Viking 48332 -Vikings 50823 -Vikki 60762 -Viklund 61152 -Vikram 57970 -Viktor 57084 -Viktoria 64657 -Vil 60492 -Vila 56420 -Vilage 62917 -Vilamoura 63419 -Vilas 62917 -Vile 59292 -Viljoen 64657 -Villa 45056 -Villa's 61699 -Villafruela 60238 -Village 40554 -Village's 62066 -Villager 62469 -Villagers 60321 -Villages 52375 -Villain 59774 -Villains 56687 -Villalba 61818 -Villalobos 62196 -Villalon 64905 -Villanova 56687 -Villanueva 61940 -Villar 62613 -Villaraigosa 63245 -Villareal 62762 -Villarreal 57970 -Villars 65170 -Villas 49141 -Villazon 65170 -Villazón 64201 -Ville 53934 -Villegas 57238 -Villeneuve 60321 -Villeroy 59774 -Villiers 62917 -Villigen 61699 -Villines 54341 -Villu 63077 -Vilma 63601 -Vilnius 56050 -Viloyati 60405 -Vim 61362 -Vimeo 50807 -Vimo 56862 -Vimy 63991 -Vin 54479 -Vina 61818 -Vinaigrette 61818 -Vinaphone 64905 -Vinay 60078 -Vince 49764 -Vince's 64905 -Vincennes 61940 -Vincent 44248 -Vincent's 58017 -Vincente 63601 -Vincentown 64905 -Vincents 64201 -Vincenzo 57653 -Vinci 52268 -Vinci's 60762 -Vincristine 63601 -Vindication 60670 -Vine 52584 -Vinee 63077 -Vinegar 56200 -Vinegars 65170 -Vineland 60580 -Viner 64201 -Vines 56485 -Vineyard 52609 -Vineyards 53899 -Ving 64657 -Vinh 62066 -Vinheta 65170 -Vinicius 65452 -Vinings 61940 -Vink 65452 -Vinnie 59702 -Vinny 57358 -Vino 57046 -Vinod 58860 -Vinokourov 65452 -Vinson 61472 -Vint 64905 -Vintage 43526 -Vintec 61940 -Vintners 64423 -Vinton 60078 -Vinx 58470 -Vinyard 62331 -Vinyasa 64423 -Vinyl 46247 -VinylMaster 62762 -Vinyls 58919 -Viognier 59848 -Viola 53377 -Violas 65452 -Violate 59560 -Violating 60580 -Violation 49218 -Violations 51257 -Violator 63245 -Violators 59560 -Violence 47173 -Violent 52152 -Violet 51406 -Violets 62331 -Violett 65452 -Violin 53024 -Violinist 60762 -Violino 64905 -Violins 60762 -Violão 61362 -Vion 59039 -Viorel 63991 -Viorica 64423 -Vioxx 57876 -Vip 57696 -Vipassana 62613 -Viper 51368 -Vipera 64423 -Vipers 58470 -Vipin 63419 -Vipul 62331 -Vir 63991 -VirSyn 58632 -Vira 63792 -Virago 61051 -Viral 48562 -Virals 62196 -Virasoro 64657 -Virb 57566 -Virchows 62917 -Virco 61699 -Virdee 63792 -Virender 65452 -Vireo 63991 -Virgen 60157 -Virgil 56899 -Virgilio 63419 -Virgin 40944 -Virgin's 62469 -Virgina 61584 -Virginia 37903 -Virginia's 55738 -Virginian 62917 -Virginians 61818 -Virginie 60078 -Virginity 61051 -Virgins 59424 -Virgo 51942 -Viridian 61818 -Virility 64201 -Virol 56452 -Virology 56170 -Virsa 64905 -Virtua 58979 -VirtuaGirl 64657 -Virtual 40468 -VirtualBox 58577 -VirtualCenter 60952 -VirtualDub 61472 -VirtualTourist 55250 -Virtualisation 57318 -Virtualization 48368 -Virtualize 65170 -Virtualized 64905 -Virtualizing 65170 -Virtually 52927 -Virtue 55657 -VirtueMart 57199 -Virtues 61152 -Virtuoso 58802 -Virtuous 63792 -Virtuozzo 60670 -Virulence 60157 -Virus 45477 -VirusScan 60321 -Viruses 53517 -Virusol 64905 -Vis 55130 -VisSim 63601 -Visa 45389 -Visage 59039 -Visakhapatnam 54969 -Visalia 59039 -Visas 52141 -Visayan 64201 -Visayas 59424 -Visceral 58017 -Visco 64201 -Viscoelastic 64201 -Visconti 61152 -Viscosity 57358 -Viscount 57199 -Viscous 63419 -Viscum 61940 -Viscusi 64201 -Vise 64201 -Vises 63077 -Vishal 57741 -Vishay 59292 -Vishnu 58688 -Vishwa 64905 -VisiCalc 63991 -VisiRank 61152 -Visibility 54114 -Visible 53196 -Visio 53917 -Vision 42413 -Visionaries 62196 -Visionary 55821 -Visionary's 61472 -Visioncare 64423 -Visioneer 58802 -Visioning 62917 -Visions 52096 -Visit 35544 -VisitBritain 61584 -VisitScotland 62917 -Visita 61362 -Visitacion 65170 -Visitas 65170 -Visitation 52996 -Visited 47823 -Visiter 62066 -Visiting 47378 -Visitor 44744 -Visitor's 54643 -Visitors 44236 -Visits 47037 -Visión 63792 -Visor 54519 -Visordown 65452 -Visors 57566 -Visser 58365 -Visser's 64905 -Vist 65170 -Vista 39727 -Vista's 57876 -VistaBlack 65452 -VistaMizer 65452 -VistaPrint 63419 -Vistaheads 63245 -Vistar 64657 -Vistas 60078 -Vistek 59923 -Visteon 63077 -Visto 63245 -Visual 39120 -Visualisation 61362 -Visualization 52268 -Visualizations 62762 -Visualize 58632 -Visualized 63991 -Visualizer 63419 -Visualizing 61152 -Visualizza 64905 -Visually 57440 -Visuals 57524 -Viswanathan 63077 -Vit 60580 -Vita 53024 -VitaDigest 65452 -Vitacost 62917 -Vitae 55906 -Vital 49173 -Vitale 60762 -Vitali 65452 -Vitalie 59774 -Vitalin 65170 -Vitalis 63419 -Vitality 57741 -Vitaliy 64423 -Vitals 58162 -Vitaly 63419 -Vitam 64657 -Vitamark 64905 -Vitamin 46027 -Vitaminking 64905 -Vitamins 46881 -Vitara 62762 -Vite 64905 -Vitek 64905 -Viterbi 57741 -Vitesse 60321 -Vitex 65452 -Viti 64423 -Viticulture 58523 -Vitiligo 63601 -Vitis 65170 -Vito 56972 -Vitor 61699 -Vitra 64657 -Vitreous 64201 -Vitrified 63991 -Vitro 54283 -Vitrolles 63991 -Vittoria 58745 -Vittorio 58860 -Vitus 64905 -Vitória 64423 -Viv 59039 -Viva 50439 -Vivaah 63419 -Vivaldi 57278 -Vivamus 62469 -Vivarium 64423 -Vivaro 65452 -Vivastreet 60000 -Vive 60238 -Vivek 56756 -Vivekananda 62613 -Vivendi 59923 -Vives 60952 -Vivi 64201 -Vivian 53095 -Vivian's 64905 -Viviana 63792 -Viviane 64201 -Vivica 60580 -Vivid 53454 -Vivien 58113 -Vivienne 56585 -VivirLatino 65170 -Vivitar 58470 -Vivo 54792 -Vivre 61256 -Vivvo 65170 -Vix 65170 -Vixen 59164 -Vixens 63077 -Viz 60856 -Vizag 64905 -Vizard 64657 -Vizcaino 64657 -Vizcaya 63991 -Vizio 59292 -Vizsla 63077 -Vjacheslav 63991 -Vk 63419 -Vl 61472 -Vlaams 63991 -Vlaanderen 63077 -Vlad 57046 -Vladimir 50718 -Vladislav 61940 -Vladivostok 59357 -Vlasov 65452 -Vleck 63077 -Vleet 64905 -Vliet 63601 -Vln 65452 -Vlog 54321 -Vloggers 63077 -Vlogs 53138 -Vmax 60670 -Vmod 64201 -Vn 62613 -Vo 57084 -VoIP 44729 -VoL 65170 -Vober 65170 -Voc 63792 -Vocab 61818 -Vocabulaire 60238 -Vocabulario 53779 -Vocabulary 50122 -Vocal 49590 -Vocalist 58365 -Vocalists 62917 -Vocals 52927 -Vocation 62469 -Vocational 49670 -Vocations 58688 -Voce 60000 -Vocus 63792 -Você 59560 -VodPod 63245 -Voda 62613 -Vodacom 58979 -Vodafone 50074 -Vodafone's 62613 -Vodcast 63077 -Vodianova 64657 -Vodice 61584 -Vodka 55037 -Voelker 65170 -Vogal 60492 -Vogel 56485 -Vogel's 64905 -Vogels 63991 -Vogelstein 65170 -Vogelzang 59560 -Vogler 63601 -Vogt 58470 -Vogts 64905 -Vogue 45045 -Vogue's 63601 -Vohra 64657 -Voice 42405 -VoiceCon 63991 -VoiceNotes 63991 -VoiceXML 64201 -Voiced 64201 -Voicemail 55711 -Voiceover 63991 -Voices 46569 -Voici 63792 -Void 54264 -Voidness 64423 -Voids 62469 -Voie 61940 -Voight 62762 -Voigt 62469 -Voigtlander 64905 -Voila 64905 -Voile 64423 -Voip 59424 -Voir 55738 -Voivodeship 64905 -Voix 62917 -Voksen 65452 -Vol 43942 -Volant 57741 -Volapük 56140 -Volatile 55821 -Volatiles 65452 -Volatility 55084 -Volcan 64905 -Volcanic 56262 -Volcano 54770 -Volcanoes 59227 -Volcanology 65452 -Volcker 64657 -Volcom 53533 -Voldemort 64423 -Vole 61362 -Volendam 63601 -Volga 61472 -Volgograd 63792 -Voli 65452 -Volk 61818 -Volker 58577 -Volkl 63419 -Volklinger 63792 -Volkmer 63792 -Volkov 62066 -Volkswagen 46354 -Volkswagen's 63419 -Volkswagon 63792 -Volley 60157 -Volleyball 46133 -Vollmer 63792 -Vollrath 62196 -Volo 60492 -Volodymyr 65452 -Volokh 58632 -Volpe 62469 -Vols 58365 -Volt 49867 -Volta 55821 -Voltage 46989 -Voltages 62331 -Voltaire 59101 -Voltaren 60000 -Voltas 62917 -Volterra 65170 -Voltron 61362 -Volts 55711 -Volume 37657 -Volumes 51630 -Volumetric 62469 -Voluntarily 65452 -Voluntary 50678 -Volunteer 43830 -VolunteerMatch 60580 -Volunteering 51942 -Volunteerism 59101 -Volunteers 47493 -Voluntown 64657 -Voluptuous 62762 -Volusia 56972 -Volusion 61940 -Volver 59923 -Volvo 46304 -Volvo's 63792 -Volz 65170 -Vom 63792 -Vomit 59774 -Vomiting 59357 -Von 48856 -Vonage 51406 -Vonnegut 64423 -VooDoo 63601 -Voodoo 51148 -Voom 65452 -Voor 62917 -Voorhees 60078 -Vopr 61051 -Vor 63792 -Voracious 65452 -Vorb 62196 -Vorbis 61699 -Vorherige 65452 -Vornado 62469 -Voronoi 63077 -Vorschau 62331 -VortalInteractive 62196 -Vortec 63419 -Vortech 60157 -Vortex 53226 -Vos 55250 -Voss 57970 -Vostok 63792 -Vostro 56791 -Vote 40580 -Voted 51131 -Voter 47903 -Voter's 63077 -Voters 45645 -Votes 42642 -Voting 45775 -Votive 55877 -Votives 62762 -Votoms 64905 -Votre 61256 -Vou 64657 -Voucher 51463 -Vouchers 50115 -Vought 60856 -Vous 56551 -Vout 64423 -Vouyer 60762 -Vow 60856 -Vowel 61152 -Vows 53646 -Vox 49405 -Voxel 65170 -Voy 62917 -VoyForums 65452 -Voyage 51122 -Voyager 51330 -Voyages 57876 -Voyageur 60157 -Voyeur 53695 -Voyeurism 62762 -Voyeurs 64423 -Voz 61051 -Vp 61472 -Vr 63792 -Vrain 64657 -Vredestein 64423 -Vreeland 64657 -Vries 57923 -Vrije 61256 -Vroom 61472 -Vroomfondel 65170 -Vrouw 65452 -Vs 47190 -Vt 60856 -Vtech 61256 -Vu 55348 -Vudu 63601 -Vue 54059 -Vuelos 63419 -Vuelta 62613 -Vuitton 52832 -Vulcan 53646 -Vulcan's 61472 -Vulgar 62917 -Vulgate 63601 -Vulnerabilities 51184 -Vulnerability 51008 -Vulnerable 56140 -Vulpes 59491 -Vulture 55226 -Vultures 61472 -Vung 63077 -Vutec 56485 -Vuze 58979 -Vw 60762 -Vwi 64423 -Vx 61699 -VxWorks 64657 -Vy 64201 -Vyacheslav 64905 -Vyas 64657 -Vygis 61362 -Vygotsky 62066 -Vyhledat 64905 -Vyssh 65170 -Vystar 63792 -Vytorin 64201 -Vz 64905 -VÖ 61362 -Vázquez 64657 -Värilogot 65452 -Vår 62917 -Vælg 64905 -Véronique 63419 -Vía 62762 -Víctor 62331 -Vídeo 61362 -Vídeos 60952 -W 35312 -W's 60952 -WA 40042 -WA's 64905 -WAB 65452 -WABCO 64905 -WAC 54341 -WACHOVIA 65452 -WADA 64201 -WADE 60952 -WAF 64201 -WAFER 64423 -WAFS 62196 -WAG 59101 -WAGE 61362 -WAGES 61699 -WAGNER 62613 -WAGON 62331 -WAGS 61699 -WAGs 62066 -WAH 62917 -WAI 58979 -WAIKATO 58365 -WAIKIKI 65170 -WAIMAKARIRI 62066 -WAIMATE 62331 -WAIPA 62613 -WAIRARAPA 61362 -WAIROA 62762 -WAIS 61152 -WAIST 62762 -WAIT 57009 -WAITAKERE 63077 -WAITAKI 62917 -WAITING 59039 -WAITOMO 63245 -WAIVER 61362 -WAKE 57609 -WAKEFIELD 61256 -WAKEMAN 65170 -WAL 60000 -WALD 65452 -WALES 57399 -WALESWOOD 65452 -WALK 56518 -WALKER 57160 -WALKING 57609 -WALKS 54380 -WALL 51340 -WALLACE 60000 -WALLET 63419 -WALLIES 62331 -WALLIS 61699 -WALLPAPER 59357 -WALLPAPERS 60405 -WALLS 61051 -WALMART 65170 -WALNUT 57785 -WALSALL 60580 -WALSH 59774 -WALT 62196 -WALTER 57046 -WALTHAM 62196 -WALTON 62762 -WAM 60670 -WAMITAB 65170 -WAN 53630 -WANDA 62469 -WANG 57482 -WANGANUI 62762 -WANNA 58632 -WANT 50199 -WANTED 53565 -WANTS 57970 -WANs 63792 -WAP 51909 -WAPI 64905 -WAR 49932 -WARCRAFT 65452 -WARD 55299 -WARDEN 62066 -WARDROBE 64201 -WARE 62331 -WAREHOUSE 57970 -WAREZ 65452 -WARFARE 62762 -WARM 60000 -WARMING 64423 -WARN 60321 -WARNER 58313 -WARNING 55178 -WARNINGS 60856 -WARP 63419 -WARRANT 59630 -WARRANTIES 52597 -WARRANTY 52164 -WARREN 56140 -WARRINGTON 60762 -WARRIOR 60670 -WARRIORS 63245 -WARS 57440 -WARSAW 63601 -WARWICK 63419 -WARWICKSHIRE 63792 -WAS 47764 -WASH 57566 -WASHBURN 62613 -WASHER 59424 -WASHERS 65452 -WASHING 61152 -WASHINGTON 49626 -WASP 60321 -WASTE 53241 -WASTEWATER 62917 -WAT 57399 -WATANABE 64201 -WATCH 49651 -WATCHER 52818 -WATCHES 57399 -WATCHING 61818 -WATER 46572 -WATERCRAFT 62469 -WATERFORD 61152 -WATERFRONT 62331 -WATERPARKS 64657 -WATERPROOFING 62469 -WATERS 60238 -WATERSHED 65452 -WATERSTONE'S 63991 -WATERWAYS 64905 -WATKINS 64657 -WATS 63419 -WATSON 59702 -WATT 59630 -WATTS 60000 -WAV 52725 -WAVE 56200 -WAVEGUIDE 65452 -WAVELENGTH 61362 -WAVES 60762 -WAX 60580 -WAY 49060 -WAYNE 54560 -WAYS 58212 -WB 48996 -WBA 62066 -WBBM 62469 -WBC 57399 -WBCSD 59774 -WBF 64905 -WBN 64657 -WBNS 64905 -WBS 62331 -WBT 61699 -WBZ 59424 -WBZ's 65170 -WC 49146 -WCA 63792 -WCAC 62331 -WCAG 56200 -WCAHS 64905 -WCB 61051 -WCBS 60580 -WCC 55373 -WCCO 64201 -WCDMA 58688 -WCET 62066 -WCF 57482 -WCG 62762 -WCI 63419 -WCL 63601 -WCM 65170 -WCO 64905 -WCP 64905 -WCQ 62762 -WCR 65452 -WCS 64423 -WCU 65452 -WCVB 63991 -WCW 59424 -WCities 64423 -WD 49163 -WD's 65170 -WDAY 65170 -WDC 61940 -WDD 65452 -WDDX 64423 -WDL 60078 -WDM 56200 -WDP 64423 -WDR 63077 -WDS 63601 -WDW 59164 -WDWMAGIC 62917 -WE 44588 -WE'LL 63991 -WE'RE 58979 -WE'VE 62917 -WEA 61818 -WEAK 61472 -WEALTH 61256 -WEAPON 63601 -WEAPONS 59630 -WEAR 57238 -WEARING 62613 -WEATHER 47073 -WEATHERMATE 61256 -WEAVER 60856 -WEB 45875 -WEBB 61699 -WEBBER 65452 -WEBCAM 58162 -WEBER 61362 -WEBKINZ 62196 -WEBMAIL 64423 -WEBMASTER 60762 -WEBMASTERS 63245 -WEBSITE 51104 -WEBSITES 56972 -WEBSTER 60670 -WEBstaurant 63792 -WEC 60492 -WECM 62196 -WED 56200 -WEDDING 54499 -WEDDINGS 59424 -WEDNESDAY 51793 -WEE 63601 -WEED 61699 -WEEDS 64657 -WEEE 60952 -WEEK 50046 -WEEK'S 57238 -WEEKEND 53646 -WEEKLY 53533 -WEEKS 56827 -WEF 62196 -WEG 63601 -WEGA 64201 -WEI 63245 -WEIGHT 54264 -WEIGHTS 64423 -WEIR 64423 -WEIRD 58688 -WEISS 63419 -WELCOME 50615 -WELCOMES 63245 -WELD 63991 -WELDING 59848 -WELFARE 58470 -WELL 50185 -WELLBUTRIN 60580 -WELLER 63991 -WELLINGTON 58162 -WELLNESS 60492 -WELLS 58577 -WELS 64905 -WELSH 61152 -WELT 65452 -WEN 62917 -WENDY 61152 -WENGER 64657 -WENN 61818 -WENT 61362 -WEO 64201 -WEP 58523 -WER 63419 -WERA 63792 -WERE 53052 -WERNER 61051 -WES 58919 -WESC 65452 -WESLEY 62613 -WESLEYAN 65170 -WESSON 63792 -WEST 47395 -WESTERN 51846 -WESTFIELD 64423 -WESTINGHOUSE 64423 -WESTLAND 62469 -WESTMINSTER 60492 -WESTON 63245 -WESTSIDE 65452 -WESTWOOD 65170 -WET 58017 -WETLAND 64201 -WETLANDS 64657 -WF 50774 -WFC 60952 -WFD 62762 -WFF 65452 -WFH 61818 -WFLA 64657 -WFMU 64201 -WFOR 64201 -WFP 56170 -WFQ 62917 -WFRV 65170 -WFS 65452 -WFT 64201 -WFTW 56356 -WFYI 65170 -WG 52007 -WGA 56791 -WGBH 62762 -WGC 65170 -WGI 64201 -WGN 58313 -WGP 65452 -WGS 55154 -WH 49218 -WHA 63245 -WHAKATANE 63991 -WHALES 65170 -WHANGAREI 60580 -WHAT 46110 -WHAT'S 51610 -WHATEVER 62066 -WHATS 54302 -WHATSOEVER 61256 -WHC 65170 -WHE 63601 -WHEAT 61940 -WHEEL 54581 -WHEELCHAIR 64905 -WHEELER 55226 -WHEELS 55500 -WHEL 56585 -WHEN 49626 -WHERE 48156 -WHERE'S 65452 -WHEREAS 59424 -WHETHER 56518 -WHEY 64423 -WHF 62469 -WHFS 63601 -WHI 62762 -WHICH 51640 -WHILE 54207 -WHIP 60078 -WHIRLPOOL 62762 -WHISTLE 63991 -WHISTLER 64657 -WHITAKER 65170 -WHITE 47570 -WHITEHOUSE 65170 -WHITFIELD 65452 -WHITMAN 64905 -WHITNEY 62613 -WHITTARDS 64423 -WHL 61818 -WHM 65452 -WHMCS 63077 -WHMIS 63245 -WHO 45902 -WHO'S 59630 -WHO's 62331 -WHOAS 64905 -WHOIS 53779 -WHOLE 57009 -WHOLESALE 57084 -WHOLESALERS 64201 -WHOM 63601 -WHORE 64905 -WHOSE 62613 -WHP 63419 -WHQL 59424 -WHR 64905 -WHS 59292 -WHSMITH 61152 -WHSmith 54643 -WHT 62196 -WHY 50873 -WI 42163 -WIA 57084 -WIAA 63792 -WIAs 64657 -WIB 65452 -WIC 58065 -WICC 63991 -WICKED 60405 -WID 65170 -WIDE 56324 -WIDGETIZE 65452 -WIDGETS 60000 -WIDTH 57970 -WIFE 57876 -WIFI 59164 -WIGAN 62331 -WIGHT 65452 -WII 54813 -WIKI 51312 -WIKKED 62196 -WIL 61818 -WILD 55014 -WILDLIFE 57831 -WILEY 61152 -WILKINSON 62066 -WILL 44444 -WILLARD 65452 -WILLHANN 61362 -WILLIAM 50101 -WILLIAMS 52954 -WILLIAMSON 63991 -WILLIE 61818 -WILLING 61152 -WILLIS 62762 -WILLISTON 64423 -WILLOW 59848 -WILLS 63792 -WILMINGTON 61584 -WILSHIRE 60856 -WILSON 53796 -WILTON 64905 -WILTSHIRE 59039 -WILWOOD 63991 -WIMAX 64905 -WIMP 65170 -WIN 50476 -WINCH 64423 -WINCHESTER 60952 -WIND 53438 -WINDING 64905 -WINDOW 55226 -WINDOWS 51321 -WINDS 58523 -WINDSOR 60670 -WINDSTAR 63245 -WINE 55274 -WINEHOUSE 65170 -WINES 61362 -WING 58688 -WINGS 58577 -WINK 64201 -WINNER 57046 -WINNERS 57009 -WINNIE 64423 -WINNING 58365 -WINS 55906 -WINSTON 63245 -WINTER 54188 -WINTON 65452 -WIP 56420 -WIPE 65170 -WIPES 65452 -WIPO 46824 -WIPO's 50734 -WIRE 54341 -WIRED 54059 -WIRELESS 53256 -WIRES 62331 -WIRING 60580 -WIS 61818 -WISCONSIN 55250 -WISDOM 64657 -WISE 58919 -WISH 55526 -WISHES 64657 -WISHING 63792 -WISHLIST 56518 -WIT 58577 -WITCH 63419 -WITCHER 63991 -WITCHY'S 65452 -WITCHYS 64657 -WITH 40129 -WITHDRAWN 64423 -WITHIN 51985 -WITHOUT 49179 -WITHSTANDS 64423 -WITNESS 56756 -WITNESSES 65452 -WIU 65170 -WIZARD 58313 -WIZARDS 64905 -WIth 64201 -WJ 48796 -WJC 62469 -WJZ 64423 -WK 54902 -WKAR 64423 -WKB 64423 -WKF 62331 -WKH 62917 -WKS 54902 -WKY 62331 -WL 51492 -WLAN 52739 -WLBT 62762 -WLL 63245 -WLM 61940 -WLOX 64657 -WLP 64905 -WLR 64657 -WLS 59357 -WLT 64905 -WLU 65452 -WLW 64905 -WM 50101 -WMA 50686 -WMATA 62613 -WMC 57399 -WMD 56050 -WMDs 65170 -WMF 60078 -WMG 63792 -WMH 62469 -WMHs 65170 -WMI 60078 -WML 59848 -WMO 63077 -WMP 56262 -WMR 64423 -WMS 58065 -WMT 63077 -WMV 51358 -WN 49240 -WNBA 51017 -WNBC 62469 -WNC 64423 -WND 59039 -WNDU 65452 -WNS 64201 -WNT 63601 -WNV 62613 -WNW 58802 -WNY 60580 -WNYC 64201 -WNiCo 64201 -WO 49932 -WOL 64201 -WOLF 57696 -WOLFE 64657 -WOLFGANG 63792 -WOLVES 65170 -WOM 63245 -WOMAN 54792 -WOMAN'S 65452 -WOMEN 50940 -WOMEN'S 52818 -WOMENS 56551 -WOMENSWEAR 65452 -WON 57923 -WON'T 57923 -WONDER 60238 -WONDERFUL 57696 -WONDERLAND 62762 -WONDERS 65452 -WONG 61584 -WONGAMINE 62917 -WONT 60762 -WOO 61940 -WOOD 52609 -WOODCOCK 64423 -WOODEN 60580 -WOODLAND 60580 -WOODLANDS 65452 -WOODS 57084 -WOODSTOCK 62917 -WOODSTONE 60762 -WOODWEB 59702 -WOODWEB's 61818 -WOOL 60405 -WOOT 63991 -WORCESTER 63601 -WORD 54770 -WORDS 55711 -WORK 48234 -WORKED 61152 -WORKER 58919 -WORKERS 58113 -WORKFORCE 61051 -WORKING 49834 -WORKOUT 64201 -WORKPLACE 63991 -WORKS 52351 -WORKSHOP 54170 -WORKSHOPS 59560 -WORKSTATION 62613 -WORLD 45120 -WORLD'S 61152 -WORLDS 60670 -WORLDWIDE 55684 -WORM 62613 -WORN 62066 -WORRY 64423 -WORSE 62917 -WORSHIP 60952 -WORST 57785 -WORTH 58113 -WORX 63792 -WOT 62762 -WOTLK 65170 -WOU 64657 -WOULD 52164 -WOUND 64905 -WOVEN 64423 -WOW 50108 -WP 47756 -WP's 63077 -WPA 56791 -WPAN 63419 -WPC 62196 -WPCA 63419 -WPCC 63792 -WPF 52351 -WPI 63077 -WPP 63245 -WPS 59774 -WPT 57785 -WPTV 64905 -WPXI 65452 -WQ 60580 -WR 49060 -WRAL 63792 -WRANGLER 60078 -WRAP 59227 -WRAPPED 61256 -WRAPPER 63245 -WRAPPING 64423 -WRAPUP 60856 -WRAZ 65170 -WRC 57278 -WRENCH 62762 -WRESTLING 58688 -WRETCH 61584 -WRF 63792 -WRH 64423 -WRIA 63077 -WRIGHT 57923 -WRIST 60762 -WRIT 62469 -WRITE 52673 -WRITEABLE 65170 -WRITER 56652 -WRITERS 61472 -WRITING 56721 -WRITTEN 57278 -WRN 57923 -WRONG 57609 -WROTE 64201 -WRS 64201 -WRT 62196 -WRX 53662 -WS 48046 -WSA 65170 -WSB 65170 -WSBK 62331 -WSBT 60238 -WSC 61256 -WSCC 62762 -WSD 63077 -WSDL 57566 -WSDOT 61051 -WSF 58919 -WSFA 63245 -WSG 65452 -WSI 57084 -WSI's 65452 -WSIS 62331 -WSJ 51752 -WSL 65452 -WSM 60580 -WSMV 64657 -WSN 61818 -WSOP 57122 -WSP 63419 -WSS 59101 -WSSU 65452 -WST 65170 -WSU 56585 -WSUS 60000 -WSW 59164 -WSWS 64905 -WSs 64657 -WT 48515 -WTA 57318 -WTAE 65452 -WTB 58470 -WTC 57566 -WTCC 61940 -WTEC 64201 -WTF 52118 -WTI 62066 -WTKR 65170 -WTL 64201 -WTM 60492 -WTNH 65452 -WTO 51814 -WTOP 63419 -WTP 61256 -WTR 61051 -WTS 60856 -WTT 62196 -WU 56862 -WUC 58688 -WUD 64423 -WUDHU 65452 -WUT 64423 -WUTC 65452 -WUZ 65452 -WV 46398 -WVU 56140 -WW 50046 -WWD 61699 -WWDC 61699 -WWE 47073 -WWEFanNation 64905 -WWF 54540 -WWF's 64905 -WWI 58523 -WWII 52303 -WWJ 64423 -WWRY 65170 -WWTP 65452 -WWW 48786 -WX 57278 -WXGA 57440 -WXYZ 61152 -WY 47964 -WYATT 64423 -WYD 60762 -WYER 65452 -WYOMING 58313 -WYP 64423 -WYSIWYG 54835 -WZ 62762 -WZZM 65452 -Wa 55578 -WaMu 57741 -Waal 63792 -Waals 58262 -Wabash 56485 -Wabasha 65452 -Wabbit 63792 -Wabi 64423 -Wachovia 51550 -Wachovia's 63991 -Wachowski 64905 -Wachtel 62762 -Wachter 63245 -Wack 63991 -Wackbag 63991 -Wacken 62196 -Wacker 59630 -Wacky 55448 -Waco 55274 -Wacoal 65452 -Wacom 60078 -Wad 64201 -Wada 60580 -Waddell 59630 -Waddington 63077 -Waddle 65452 -Wade 49701 -Wade's 63077 -Wadebridge 65452 -Waders 62066 -Wadi 58688 -Wadia 63419 -Wading 61256 -Wadley 65452 -Wadsley 63601 -Wadsworth 55526 -Wael 62469 -Wafer 56170 -Wafers 61362 -Waffle 55793 -Waffles 61152 -Wag 61362 -Wagamama 63245 -Wagaya 64657 -Wage 50678 -Wagener 65170 -Wageningen 57566 -Wager 63245 -Wagering 62196 -Wages 52198 -Wagga 58365 -Waggon 65170 -Waggoner 61818 -Wagner 50335 -Wagner's 59101 -Wagon 50678 -Wagoner 62066 -Wagonlit 65452 -Wagons 55448 -Wags 65452 -Wagstaff 64423 -Wagyu 63245 -Wah 56452 -Wahab 63792 -Waheed 63245 -Wahiawa 63245 -Wahine 62469 -Wahkiakum 64657 -Wahl 58919 -Wahlberg 55963 -Wahlberg's 63792 -Wahler 61362 -Wahoo 60952 -Wai 55906 -WaiWai 65452 -Waianae 63792 -Waiheke 63077 -Waihi 63245 -Waikato 53695 -Waikerie 64423 -Waikiki 56140 -Waikoloa 63245 -Wailea 58365 -Wailers 62196 -Wailing 57696 -Waimea 63077 -Wain 62196 -Wainfleet 60762 -Wainscot 62762 -Wainwright 55107 -Wainwright's 64423 -Waipahu 64905 -Waipu 65170 -Wairarapa 61051 -Wairoa 65170 -Waisman 65452 -Waist 52571 -Waistband 63991 -Waistcoat 65452 -Waistcoats 64657 -Wait 47413 -Waitakere 61584 -Waitangi 60405 -Waite 58113 -Waited 64201 -Waiter 57399 -Waiters 62196 -Waiting 48005 -Waitlist 64423 -Waitress 59560 -Waitrose 58313 -Waits 56827 -Waive 65452 -Waived 65452 -Waiver 53779 -Waivers 61472 -Waka 61362 -Wakarusa 65170 -Wakayama 62613 -Wake 47218 -WakeMed 65452 -Wakeboard 59227 -Wakeboarding 56140 -Wakeboards 63792 -Wakefield 51620 -Wakely 64657 -Wakeman 63245 -Waker 57609 -Wakes 61940 -Wakimoto 65452 -Waking 56110 -Wakizashi 65452 -Wako 62196 -Wakoopa 62469 -Wakulla 63245 -Wal 57609 -WalMart 63077 -Wala 63792 -Walang 64657 -Walberg 62066 -Walbrecker 64905 -Walbro 63991 -Walco 63245 -Walcott 59702 -Wald 57923 -Waldemar 63245 -Walden 52648 -Waldhor 65452 -Waldman 59101 -Waldo 55766 -Waldorf 53549 -Waldorfer 61818 -Waldron 59491 -Wale 61362 -Waleed 63601 -Wales 40638 -Wales's 64201 -WalesOnline 60856 -Walger 60856 -Walgreen 58860 -Walgreen's 62762 -Walgreens 53533 -Wali 61940 -Walid 61256 -Walk 45106 -WalkIn 65452 -Walkabout 61152 -Walkaround 64201 -Walked 61362 -Walken 61584 -Walker 45260 -Walker's 57122 -Walkera 58065 -Walkers 54664 -Walkerton 63601 -Walkerville 65170 -Walkie 60157 -Walkin 63991 -Walking 45492 -Walkman 55906 -Walkmen 60405 -Walks 52648 -Walkthrough 51953 -Walkthroughs 52872 -Walkway 64201 -Walkways 64423 -Wall 39367 -Wall's 62469 -WallPapers 65452 -WallStreetBlips 63991 -WallStrip 65170 -Walla 55877 -Wallabies 61940 -Wallaby 60321 -Wallace 47100 -Wallace's 59292 -Wallaceburg 61940 -Wallach 62196 -Wallasey 62469 -Wallcovering 61152 -Wallcoverings 63991 -Walle 64905 -Walled 59560 -Wallen 64423 -Waller 55849 -Wallerian 60952 -Wallerstein 64657 -Wallet 50379 -WalletPop 56050 -Wallets 50856 -Walley 65452 -Walleye 59560 -Wallflower 64905 -Walliams 62917 -Wallin 59357 -Walling 60321 -Wallingford 56899 -Wallington 61818 -Wallis 48230 -Wallonia 65452 -Walloon 61699 -Wallpaper 44677 -Wallpapers 43947 -Walls 49388 -Wallstreet 61940 -Wallstrip 42192 -Wally 54749 -Walmart 53565 -Walneck's 63991 -Walnut 47911 -Walnuts 60762 -Walon 59923 -Walpole 58417 -Walrasian 63792 -Walrus 57970 -Walsall 53899 -Walsh 49695 -Walsh's 62066 -Walshe 64201 -Walsingham 63991 -Walston 64657 -Walt 48459 -Walter 45289 -Walter's 61152 -Walterboro 64423 -Walters 52584 -Waltham 53565 -Walthamstow 62469 -Walther 55657 -Walton 50431 -Walton's 64905 -Waltons 64201 -Waltrip 62762 -Waltz 53746 -Waltzes 65170 -Waltzing 64905 -Walvis 64657 -Walworth 63601 -Walz 63245 -Wambo 58745 -Wan 54302 -Wanadoo 65170 -Wanaka 59630 -Wanamaker 65170 -Wand 53762 -Wanda 53423 -Wander 57970 -Wanderer 58017 -Wanderers 55202 -Wandering 56972 -Wanderlei 61051 -Wanderlust 62762 -Wanders 64657 -Wandin 65170 -Wands 61472 -Wandsworth 55274 -Wane 60762 -Wang 47157 -Wang's 64905 -Wangan 64657 -Wanganui 58017 -Wangaratta 62066 -Waning 59101 -Wank 64423 -Wankel 59101 -Wanker 63077 -Wann 62331 -Wanna 49130 -Wannabe 56551 -Wanner 64657 -Wanneroo 64905 -Wannstedt 65170 -Wanstead 63991 -Want 35841 -Wantage 62613 -Wanted 44001 -WantedList 64905 -Wanting 55906 -Wantirna 64905 -Wantlist 54749 -Wanton 65452 -Wants 45662 -Wap 59039 -Wapato 57524 -Wapedia 64201 -Wappen 61940 -Wapping 62762 -Wappingers 64905 -Waptrick 65170 -War 38053 -War's 62762 -WarCraft 62917 -WarCry 63792 -WarRock 61051 -Warangal 64201 -Waratah 64423 -Warbirds 63792 -Warbler 55526 -Warblers 65452 -Warburg 60856 -Warburton 60000 -Warcraft 44026 -Ward 44810 -Ward's 50115 -Wardell 65452 -Warden 54096 -Wardens 60580 -Wardha 63792 -Wardle 63077 -Wardman 63792 -Wardrobe 50974 -Wardrobes 62196 -Wards 56972 -Ware 52845 -WareSeeker 60405 -Wareham 56935 -Warehouse 45311 -Warehouses 57084 -Warehousing 51825 -Warenkorb 54622 -Wares 59630 -Warez 49070 -WarezAccess 61584 -WarezQuality 60157 -WarezWorm 64423 -Warfare 47417 -Warfarin 62196 -Warfield 62917 -Warfighter 56721 -Warfighting 65452 -Wargames 59923 -Wargaming 63991 -Warglaives 63601 -Warhammer 49394 -Warhawk 56518 -Warhawks 63601 -Warhead 58802 -Warhol 54879 -Warhol's 62762 -Waring 58212 -Wario 57524 -Waris 61940 -Wark 64657 -Warkworth 63077 -Warlock 52791 -Warlocks 56756 -Warlord 60000 -Warlords 61362 -Warm 48408 -Warmblood 59357 -Warmer 56262 -Warmers 56452 -Warmest 65452 -Warming 43811 -Warmingham 64905 -Warminster 62196 -Warmly 64657 -Warmth 60952 -Warmup 62762 -Warn 55373 -Warne 58745 -Warned 60670 -Warnemunde 62613 -Warner 44813 -Warner's 59774 -Warners 64657 -Warning 47887 -Warnings 49789 -Warnock 59848 -Warns 56452 -Warp 56551 -Warpath 65170 -Warped 58365 -Warr 61362 -Warragul 61699 -Warrant 43364 -Warranties 50856 -Warrants 55934 -Warranty 44707 -Warren 45216 -Warren's 60238 -Warrensburg 64905 -Warrensville 64657 -Warrenton 63792 -Warrenville 61362 -Warrick 59101 -Warring 63245 -Warringah 60952 -Warrington 52521 -Warrior 46625 -Warrior's 62917 -Warriorroger 64423 -Warriors 47656 -Warrnambool 61256 -Warroad 62762 -Warrock 62196 -Wars 42745 -Warsaw 51229 -Warship 63077 -Warsi 63601 -Warsong 55793 -Warsow 63077 -Warszawa 59702 -Wart 60856 -Wartburg 63991 -Warthog 61256 -Wartime 57876 -Warts 60762 -Warum 65170 -Warwick 49670 -Warwickshire 50949 -Wary 63419 -Warzone 63077 -Was 40566 -Wasabi 58860 -Wasatch 57358 -Wasco 61472 -Wasdale 63245 -Waseda 62196 -Wash 47871 -Washable 59357 -Washburn 56420 -Washed 58802 -Washer 50710 -Washers 53796 -Washes 59848 -Washi 65452 -Washing 49834 -Washingt 64905 -Washington 36519 -Washington's 53695 -Washingtonian 61940 -Washingtonville 65170 -Washoe 61699 -Washroom 64201 -Washtenaw 59702 -Wasilla 58065 -Wasim 64201 -Wasn't 54245 -Wasp 56756 -Wasps 56551 -Wass 64657 -Wasser 63792 -Wasserman 60492 -Wassily 63419 -Wassup 59560 -Waste 43245 -Wasted 54924 -Wasteland 57876 -Wastes 59227 -Wastewater 51166 -Wasting 59491 -Wat 55226 -WatKat 64201 -Watanabe 54226 -Wataru 64201 -Watashi 63792 -Watauga 59039 -Watch 36474 -WatchGuard 65170 -WatchMoj 59774 -WatchMojo 58688 -Watcha 64423 -Watchdog 52832 -Watchdogs 65170 -Watched 52198 -Watcher 53970 -Watcher's 63991 -Watchers 53346 -Watches 40697 -Watchful 65452 -Watching 48726 -Watchlist 50431 -Watchlists 53630 -Watchman 61699 -Watchmen 57696 -Watchtower 63419 -Watchung 65170 -Watchuseek 62196 -Water 36684 -Water's 61472 -WaterPik 64905 -WaterSense 62469 -Waterbed 62917 -Waterberg 63077 -Waterbury 56862 -Waterco 58470 -Watercolor 57009 -Watercolors 63077 -Watercolour 58860 -Watercooler 61051 -Watercooling 65452 -Watercraft 56518 -Watercrafts 63419 -Waterdeep 64201 -Waterdown 64905 -Watered 63991 -Waterers 61940 -Waterfall 55578 -Waterfalls 57238 -Waterflow 61699 -Waterford 51473 -Waterfowl 59424 -Waterfront 50143 -Watergate 58919 -Waterhog 64905 -Waterhouse 58313 -Watering 56080 -Waterjet 62762 -Waterkeeper 64905 -Waterkotte 65452 -Waterless 63601 -Waterline 61940 -Waterloo 49770 -Waterlooville 62917 -Waterman 56972 -Watermark 58688 -Watermarks 63419 -Watermelon 57741 -Waterpark 60762 -Waterpik 59923 -Waterpolo 64201 -Waterpro 64657 -Waterproof 50171 -Waterproofing 55552 -Waterproofs 65170 -Waters 48109 -Watershed 51122 -Watersheds 61818 -Watership 60952 -Waterside 58417 -Waterskiing 62917 -Watersmeet 65170 -Watersound 64905 -Watersports 55992 -Waterss 62331 -Waterstone's 60238 -Waterstones 64905 -Waterton 62196 -Watertown 54283 -Waterview 63601 -Waterville 62613 -Watervliet 65452 -Waterwatch 64201 -Waterway 59164 -Waterways 51293 -Waterworks 60952 -Watery 65170 -Watford 54005 -Watkins 52040 -Watkins's 65452 -Watkinson 61699 -Watley 64657 -Watling 62917 -Wats 62613 -Watseka 63601 -Watson 47566 -Watson's 59560 -Watsonville 59774 -Watt 49939 -Wattage 62762 -Wattenberg 65452 -Watters 61256 -Wattle 60157 -Wattles 61472 -Watton 64905 -Watts 49184 -Wauconda 59101 -Waugh 57785 -Waukegan 58162 -Waukesha 57653 -Waukon 64657 -Wausau 59630 -Wauwatosa 62469 -Wav 60000 -Wave 45777 -Wave's 65452 -WaveStorm 65452 -Waveceptor 63991 -Waveform 59292 -Waveforms 63245 -Wavefront 61362 -Waveguide 60762 -Waveguides 64657 -Waveho 62762 -Wavelength 56485 -Wavelengths 65452 -Wavelet 59227 -Wavemakers 65452 -Waveney 64905 -Waverider 64905 -Waverley 55992 -Waverly 54380 -Waves 51425 -Waving 62613 -Wavy 61362 -Wawa 61940 -Wax 50686 -Waxahachie 64657 -Waxed 62613 -Waxes 61940 -Waxhaw 64201 -Waxing 57318 -Waxman 58577 -Waxy 64201 -Way 39699 -Wayanad 63991 -Wayans 64201 -Wayback 55014 -Waycross 65170 -Wayfarer 61940 -Wayfaring 62613 -Wayfinder 62762 -Wayland 58860 -Waylon 61256 -Wayman 64905 -Waymark 57009 -Waymarks 58632 -Wayne 41600 -Wayne's 56899 -Waynes 65170 -Waynesboro 63245 -Waynestock 61818 -Waynesville 63601 -Waypoint 64423 -Wayport 65452 -Ways 44657 -Wayside 59039 -Wayward 60762 -Wayzata 64201 -Waza 63792 -Wazoo 63419 -Wb 61940 -Wc 61362 -Wcities 59164 -Wd 61699 -We 29234 -We'd 51942 -We'll 45384 -We're 42127 -We've 44341 -WeDo 62762 -WeSC 58162 -WeShow 59923 -Wea 64201 -Weak 52996 -Weaken 59560 -Weaker 63077 -Weakerthans 65452 -Weakest 56324 -Weakly 62066 -Weakness 58417 -Weaknesses 60580 -Weald 63077 -Wealden 65452 -Wealth 48050 -Wealthmeter 64423 -Wealthy 57084 -Weaning 61152 -Weapon 49720 -Weaponry 63792 -Weapons 48381 -Wear 45497 -Wearable 58017 -Wearables 59774 -Wearever 64905 -Wearhouse 59848 -Wearing 51867 -Wears 55578 -Weary 61051 -Weasel 57160 -Weasley 62066 -Weather 36664 -WeatherBonk 62762 -WeatherBug 54792 -WeatherCall 64423 -WeatherPixie 64905 -WeatherREADY 64423 -Weatherby 61362 -Weathered 61472 -Weatherford 59560 -Weatherhead 64657 -Weathering 60580 -Weatherization 65170 -Weatherly 64657 -Weatherman 61472 -Weathermen 64201 -Weatheroffice 65452 -Weatherproof 59424 -Weathers 63245 -Weatherstrip 63792 -Weatherstripping 64201 -Weathertech 64423 -Weathervanes 64657 -Weatherview 56050 -Weatherwise 62917 -Weatherzone 64423 -Weave 57046 -Weaver 52187 -Weaver's 63991 -Weaverham 64423 -Weavers 58860 -Weaving 56231 -Web 30453 -Web's 55992 -WebAnalytics 56862 -WebApplications 52051 -WebBoard 61256 -WebCGM 59630 -WebCT 56324 -WebCalendar 56652 -WebCam 58802 -WebCams 61362 -WebCentral 57696 -WebChanges 57009 -WebCommunication 63245 -WebDAV 63792 -WebEvent 65452 -WebEx 64201 -WebFOCUS 62066 -WebGUI 62917 -WebHome 53454 -WebHosting 63792 -WebHostingPad 63792 -WebIndex 57009 -WebKit 61699 -WebLeftBar 59357 -WebLion 57278 -WebLog 62762 -WebLogic 56080 -WebLogicModuleType 64201 -WebMD 52029 -WebMail 58745 -WebMaster 60000 -WebNS 63991 -WebNotify 56140 -WebObjects 65170 -WebPreferences 55154 -WebProNews 60952 -WebProWorld 63991 -WebReg 65452 -WebRidesTV 63991 -WebRing 64201 -WebRss 57566 -WebSTAT 65170 -WebSVN 58017 -WebSearch 57009 -WebSearchAdvanced 59774 -WebSite 55500 -WebSphere 53361 -WebStatistics 52968 -WebStore 59039 -WebStuff 65452 -WebTV 63601 -WebTopicList 58802 -WebTrends 51762 -WebWork 61051 -WebWorld 63991 -WebYep 63077 -Webalizer 61699 -Webasto 64657 -Webb 49959 -Webb's 62613 -Webbed 64201 -Webber 54245 -Webber's 63601 -Webbie 59227 -Webbing 61818 -Webbplatser 59101 -Webby 49682 -Webcam 47645 -WebcamMax 60952 -Webcammax 63601 -Webcams 50734 -Webcast 50815 -Webcasting 63419 -Webcastr 59560 -Webcasts 48806 -Webchat 65170 -Webco 59227 -Webco's 64423 -Webcomic 61051 -Webcomics 63601 -Webdesign 57785 -Weber 50314 -Weber's 61584 -Webfeed 61362 -Webhosting 58417 -Webinar 55578 -Webinars 50545 -Webisode 61051 -Webisodes 60952 -Webkinz 54302 -Weblinks 56170 -Weblo 55084 -Weblog 45371 -Weblogging 64423 -Weblogic 61152 -Weblogs 52472 -Webloid 61051 -Webmail 51358 -Webmaster 43956 -Webmaster's 57009 -WebmasterWorld 45843 -Webmastering 64905 -Webmasters 48595 -Webnews 59039 -Webpage 56687 -Webpages 62331 -Webride 62196 -Webring 61051 -Webroot 58113 -Webs 56687 -Webseite 59630 -Websense 63077 -Webserver 63245 -Webservice 62762 -Webshop 64423 -Webshots 48252 -Website 35529 -Website's 64905 -Websiteoutlook 57923 -Websites 43685 -Webslinger 64905 -Webspace 63991 -Websphere 60856 -Webster 49359 -Webster's 54969 -Webstore 63601 -Websyte 63245 -Webware 51482 -Webwork 64905 -Webzine 62331 -Wechsler 58632 -Wed 40206 -WedPlan 63991 -Wedbush 60952 -Wedd 63245 -Wedded 59848 -Weddell 59292 -Wedderburn 65170 -Wedding 39333 -Wedding's 58365 -WeddingWire 65452 -Weddingaddict 64201 -Weddings 44675 -Wedge 53346 -Wedges 56050 -Wedgewood 63077 -Wedgie 60321 -Wedgwood 57199 -Wednesbury 64423 -Wednesda 65170 -Wednesday 41269 -Wednesday's 54283 -Wednesdays 53182 -Weds 60762 -Wee 52399 -WeeWorld 65452 -Weed 51640 -Weedeater 65452 -Weeding 64657 -Weedon 63601 -Weeds 52233 -Weehawken 62469 -Week 36917 -Week's 51202 -Weekday 55500 -Weekdays 59227 -Weekend 43595 -Weekend's 63077 -Weekender 57440 -Weekends 54245 -Weekes 64905 -Weekley 65452 -Weeklies 62331 -Weekly 39965 -Weekly's 63077 -Weeknight 62331 -Weeks 45070 -Weems 63601 -Ween 56140 -Weep 62917 -Weeping 59630 -Weevil 63601 -Weezer 54992 -Weezy 62331 -Wefan 64201 -Weft 64423 -Weg 60856 -Wega 64201 -Wegener 60580 -Wegener's 64657 -Wegmans 60405 -Wegner 63792 -Wehbe 62613 -Wehrenberg 63601 -Wehrmacht 64423 -Wei 51783 -Weibull 60321 -Weichert 59848 -Weick 65170 -Weider 61699 -Weidman 63601 -Weidmuller 62469 -Weidner 62917 -Weierstrass 65170 -Weigel 61818 -Weigh 55992 -Weighed 64905 -Weighing 55578 -Weighs 57923 -Weight 40894 -Weighted 53952 -Weighting 61256 -Weightlifter 64423 -Weightlifting 56356 -Weightloss 60580 -Weights 53970 -Weigold 65452 -Weihua 65170 -Weil 55474 -Weil's 65452 -Weiland 59774 -Weiler 65452 -Weill 56827 -Weimar 59227 -Weimaraner 59227 -Weimer 61152 -Wein 60580 -Weinberg 57199 -Weinberger 62762 -Weiner 55178 -Weingarten 65452 -Weinheim 58632 -Weinman 63792 -Weinstein 55226 -Weintraub 61699 -Weir 54499 -Weir's 65452 -Weird 48105 -Weirdest 63245 -Weirdness 60000 -Weirton 64905 -Weis 58632 -Weisbach 64905 -Weisberg 63991 -Weisbrodt 64423 -Weise 65452 -Weisel 62762 -Weiser 61940 -Weisman 60000 -Weiss 52175 -Weissman 61256 -Weisz 59848 -Weiter 65170 -Weitere 60078 -Weitz 63991 -Weitzman 57358 -Weizmann 60321 -Welborn 63245 -Welch 53052 -Welcome 36090 -WelcomeGuest 65170 -Welcomed 59227 -Welcomes 53988 -Welcoming 58802 -Weld 55631 -Welded 56899 -Welder 58313 -Welders 59164 -Welding 49802 -Weldon 55766 -Weleda 64423 -Welfare 47395 -Welham 64423 -Welk 61256 -Welker 63077 -Welkom 60670 -Well 41033 -WellPages 64423 -WellTips 65170 -WellTools 64423 -Wella 61362 -Welland 54727 -Welland's 65170 -Wellbeing 54519 -Wellbutrin 58162 -Wellcome 54946 -Wellcraft 64657 -Welle 61940 -Weller 56200 -Welles 59292 -Wellesbourne 65452 -Wellesley 56827 -Wellfleet 60952 -Wellgo 65170 -Wellhead 63792 -Wellies 65170 -Welling 62066 -Wellingborough 56972 -Wellington 47883 -Wellington's 63792 -Wellman 59491 -Wellness 44808 -Wellpedia 64905 -Wells 46202 -Wells's 63601 -Wellsboro 65452 -Wellsphere 57009 -Wellspring 63792 -Wellstone 64905 -Wellsville 64201 -Welly 65452 -Welsh 46412 -Welshpool 61818 -Welt 57160 -Welter 63601 -Welterweight 64201 -Welton 61940 -Welty 63077 -Welwyn 58017 -Wembley 53392 -Wen 54380 -Wenatchee 58065 -Wenceslas 63419 -Wench 61818 -Wendel 61818 -Wendell 55154 -Wendi 63792 -Wendie 65452 -Wendling 63792 -Wendover 60952 -Wendt 61818 -Wendy 47823 -Wendy's 55604 -WendyPamela 65452 -Weng 61051 -Wenge 65170 -Wenger 53779 -Wenger's 63601 -Wenham 64657 -Wenlock 63991 -Wenn 59702 -Wenner 63601 -Wensleydale 62917 -Went 50638 -Wentworth 52982 -Wentworthville 63601 -Wentz 57566 -Wenzel 61256 -Wenzhou 60856 -Weoley 62613 -Wer 60405 -Werbung 56899 -Werbungs 65452 -Werchter 65452 -Werder 60321 -Were 45558 -WereSonic 64905 -Weren't 59424 -Werewolf 57785 -Werewolves 61584 -Werk 64201 -Werke 60580 -Werks 62613 -Werner 51752 -Werribee 63792 -Werrington 65452 -Wersja 65170 -Wert 61818 -Werth 64201 -Wertheim 64423 -Wes 52996 -WesCo 65452 -Wesabe 63245 -Wesco 62469 -Wescott 63991 -Wesfarmers 64423 -Wesker 63792 -Wesley 50094 -Wesley's 62762 -Wesleyan 54706 -Weslo 64905 -Wesnoth 64423 -Wessels 63792 -Wessex 58688 -Wesson 58417 -West 33841 -West's 54879 -WestCoast 63991 -WestJet 49893 -Westbank 62331 -Westberg 59630 -Westberry 62917 -Westboro 62762 -Westborough 63077 -Westbound 60078 -Westbourne 63077 -Westbrook 57160 -Westbury 57741 -Westby 63077 -Westchase 61699 -Westchester 49758 -Westcliff 62917 -Westcoast 62917 -Westcott 62066 -Westenra 64423 -Wester 61362 -Westerly 60670 -Westerman 63991 -Western 37600 -Westerners 60580 -Westerns 57238 -Westerville 58313 -Westfalia 61362 -Westfall 58417 -Westfield 52423 -Westford 63991 -Westgate 57122 -Westhampton 61584 -Westheimer 62469 -Westie 63245 -Westin 52996 -Westinghouse 55037 -Westlake 54188 -Westland 59292 -Westlaw 58113 -Westley 62917 -Westlife 59039 -Westman 64201 -Westmead 64423 -Westmeath 56862 -Westminster 48372 -Westmont 58417 -Westmoreland 53762 -Westmorland 60157 -Westmount 62196 -Westnet 62331 -Weston 51541 -Westone 65452 -Westover 61584 -Westpac 60580 -Westpark 65452 -Westphal 57009 -Westphalia 64201 -Westphalian 64657 -Westport 53712 -Westra 65452 -Westridge 64201 -Wests 64657 -Westside 54245 -Westview 61256 -Westville 61584 -Westward 60238 -Westwick 63601 -Westwood 51113 -Westword 63077 -Wet 48009 -Weta 64201 -Wetec 65452 -Wether 59923 -Wetherby 62917 -Wethersfield 60492 -Wetherspoon 62196 -Wetland 55178 -Wetlands 52233 -Wetmore 65170 -Wetpaint 53917 -Wetsuit 57524 -Wetsuits 58979 -Wetter 62613 -Wetting 63792 -Wetzel 61362 -Weve 64657 -Wexford 55130 -Wexler 61699 -Wexner 64201 -Weybridge 61940 -Weyburn 63991 -Weyerhaeuser 62331 -Weyl 60405 -Weymouth 55250 -Wh 60157 -Wha 64201 -Whack 60580 -Whacky 64657 -Whakahau 64201 -Whakatane 62762 -Whale 51690 -Whaleback 64905 -Whalen 61362 -Whaler 64423 -Whales 56200 -Whaley 61699 -Whaling 59292 -Whalley 63419 -Wham 62469 -Whammy 64905 -Whangarei 56293 -Wharf 52130 -Wharfedale 60856 -Wharton 53970 -Wharton's 64657 -What 30872 -What're 63792 -What's 36330 -Whatcha 58470 -Whatcom 58313 -Whatever 46827 -Whatever's 61699 -Whatley 63792 -Whatman 56687 -Whats 47370 -WhatsUp 63245 -Whatsonwhen 63991 -Whatuni 61699 -Wheat 49482 -Wheatbelt 63419 -Wheaten 63792 -Wheatgrass 64905 -Wheatland 61256 -Wheatley 57741 -Wheaton 54902 -Wheatsheaf 64905 -Wheatus 64657 -Whedon 63245 -Whedon's 63419 -Wheeden 64905 -Wheel 45120 -Wheelbarrow 62066 -Wheelbase 60492 -Wheelchair 49751 -Wheelchairs 57399 -Wheeled 55877 -Wheeler 50923 -Wheeler's 61256 -Wheelers 61051 -Wheelie 59630 -Wheeling 56420 -Wheelock 62469 -Wheels 43723 -WheelsTV 64423 -Wheezing 64201 -Whelan 58065 -Wheldon 65170 -When 33390 -When's 61818 -Whenever 50013 -Whenua 62613 -Where 37551 -Where'd 62917 -Where's 46012 -Whereas 51122 -Wherefore 61940 -Whereis 61818 -Wheres 62613 -Wherever 54226 -Wherigo 61152 -Whether 43484 -Whetstone 62066 -Whey 53316 -Which 41253 -Whichever 59357 -Whidbey 58919 -Whidden 64423 -Whig 61152 -Whigs 63419 -While 37976 -Whiley 65452 -Whilst 50915 -Whimsical 60856 -Whimsy 59560 -Whine 58162 -Whining 63601 -Whip 55154 -Whiplash 58688 -Whipped 57785 -Whippet 62917 -Whipping 62762 -Whipple 59560 -Whips 59491 -Whirl 59774 -Whirled 61362 -Whirlpool 49440 -Whirlwind 58745 -Whisk 60952 -Whisker 62469 -Whiskers 62917 -Whiskey 53153 -Whisky 56262 -Whisper 56110 -Whisperer 55766 -Whispering 58802 -Whispers 52699 -Whisperwind 60078 -Whistle 55500 -Whistleblower 62066 -Whistler 53211 -Whistles 61362 -Whistling 63991 -Whit 58017 -Whitacre 64905 -Whitaker 55500 -Whitaker's 65170 -Whitbread 61362 -Whitburn 64905 -Whitby 56935 -Whitchurch 61584 -Whitcomb 63245 -Whitcoulls 57970 -White 34743 -White's 56388 -WhiteCap 62469 -WhiteFlameFEF 64657 -WhitePapers 65170 -WhiteRose 64201 -Whiteboard 58113 -Whiteboards 61584 -Whitebox 62762 -Whitechapel 60078 -Whitecourt 62331 -Whitefield 62196 -Whitefish 57696 -Whitegates 63991 -Whitehall 54622 -Whitehaven 56935 -Whitehawk 62066 -Whitehead 56262 -Whitehorse 58860 -Whitehouse 57084 -Whiteley 60405 -Whiteman 64657 -Whitening 51550 -Whitepaper 57653 -Whitepapers 51122 -Whiter 65170 -Whites 55299 -Whitesboro 65452 -Whiteside 58523 -Whitesnake 56862 -Whitest 65452 -Whitestone 62196 -Whitetail 57566 -Whitetails 65452 -Whitewash 65452 -Whitewater 54770 -Whitey 60856 -Whitfield 56618 -Whitford 61256 -Whither 61051 -Whitianga 63991 -Whiting 55738 -Whitireia 61152 -Whitley 56687 -Whitlock 59227 -Whitman 54245 -Whitman's 62613 -Whitmire 63245 -Whitmore 59164 -Whitney 49179 -Whitney's 64201 -Whitsett 64657 -Whitson 64201 -Whitstable 62762 -Whitsunday 60157 -Whitsundays 61472 -Whittaker 57084 -Whittards 63991 -Whittemore 63245 -Whitten 61699 -Whittier 55631 -Whittington 58470 -Whittle 57238 -Whitton 63077 -Whitty 65170 -Whitworth 59357 -Whiz 62762 -Whizzer 64905 -Who 36561 -Who'd 63245 -Who'll 60078 -Who's 41179 -WhoIs 61699 -WhoWhatWear 62066 -Whoa 59774 -Whoever 55657 -Whois 47980 -WhoisGuard 59702 -Whol 63077 -Whole 45833 -Wholesale 43559 -Wholesaler 57440 -Wholesalers 54078 -Wholesales 64657 -Wholesaling 64201 -Wholesome 62917 -Wholistic 62331 -Wholly 60000 -Whom 56231 -Whoo 63077 -Whoop 62331 -Whoopi 59101 -Whooping 61472 -Whopper 65452 -Whore 54749 -Whores 56652 -Whos 58919 -Whose 54170 -Why 34267 -Why'd 65452 -Why's 64905 -Whyalla 59848 -Whyte 57278 -Wi 57278 -WiBac 60492 -WiC 60580 -WiFi 49001 -WiKi 64905 -WiMAX 52256 -WiMax 58688 -WiMedia 64657 -Wiarton 61940 -Wibaux 64657 -Wicca 58017 -Wiccan 60856 -Wich 63419 -Wichita 49959 -Wichmann 64201 -Wick 56518 -Wicked 49639 -Wickedjbird 64905 -Wicker 55130 -Wickes 64905 -Wicket 60238 -Wickford 62917 -Wickham 58745 -Wicking 61472 -Wickit 65452 -Wickliffe 63991 -Wicklow 54499 -Wicks 58417 -Wicomico 65170 -WidSets 58523 -Wide 43112 -Wideband 60670 -Widebody 64423 -Widely 59101 -Widen 59227 -Widener 63601 -Widening 57399 -Widens 64201 -Wider 54685 -Widescreen 48230 -Widespread 56200 -Widget 46797 -WidgetBucks 64423 -Widgetbox 58365 -Widgets 42755 -Widmer 62917 -Widnes 61584 -Widow 55474 -Widowed 62917 -Widows 58470 -Width 47679 -Widths 63792 -Wie 58212 -Wiebe 63991 -Wiebke 62331 -Wiech 62917 -Wieden 60952 -Wiegand 60492 -Wieland 61362 -Wield 62331 -Wielding 61940 -Wien 55631 -Wiener 56518 -Wienges 64905 -Wiens 63077 -Wierd 61362 -Wiesbaden 59560 -Wiese 61699 -Wiesel 62613 -Wiesmann 63991 -Wiesner 64657 -Wiest 59101 -Wiewordtevita 64201 -Wife 47374 -Wife's 57653 -Wifes 63077 -Wifey 60321 -Wiffle 64201 -Wifi 53167 -Wig 55274 -Wigamog 63601 -Wigan 51406 -Wiggins 57440 -Wiggle 57923 -Wiggles 60078 -Wiggly 64905 -Wiggum 64905 -Wight 51996 -Wigmore 61051 -Wigner 62331 -Wigs 52913 -Wigston 62331 -Wigton 64657 -Wigtownshire 61152 -Wigwam 62613 -Wiha 64905 -Wii 40071 -Wii's 62196 -WiiKey 63991 -WiiSCRUBBED 62331 -WiiWare 57440 -WiiWii 64657 -WiiZARD 62469 -Wiig 63792 -Wiikey 62762 -Wiimote 62613 -Wiis 64657 -Wiki 40749 -WikiAnswers 46637 -WikiCheats 63991 -WikiProject 55299 -WikiThing 63991 -Wikia 48510 -Wikia's 56899 -Wikibase 61152 -Wikibooks 41298 -Wikicafe 64905 -Wikies 52913 -Wikileaks 63991 -Wikimedia 38292 -Wikinews 41294 -Wikinvest 63077 -Wikio 52899 -Wikipedia 31908 -Wikipedia's 41015 -Wikiquote 41283 -Wikis 54207 -Wikisource 41291 -Wikispaces 60321 -Wikispecies 52315 -Wikitravel 63792 -Wikiversity 41327 -WikizineFor 59848 -Wikked 62917 -Wikre 60405 -Wiktionary 41258 -Wil 56862 -Wilber 60157 -Wilberforce 63077 -Wilbert 63991 -Wilbon 64657 -Wilbraham 63419 -Wilbur 54419 -Wilburys 61256 -Wilco 55934 -Wilcox 55014 -Wilcoxon 57923 -Wilczek 62613 -Wild 42613 -Wildcard 60856 -Wildcat 54770 -Wildcats 52648 -Wilde 53662 -Wilde's 61940 -Wilden 65170 -Wilder 54902 -Wilder's 63601 -Wildermuth 65170 -Wilderness 51157 -Wilders 60321 -Wildest 63077 -Wildfire 55178 -Wildfires 59357 -Wildflower 59101 -Wildflowers 60580 -Wildfowl 65452 -Wildhaber 65452 -Wildhammer 58802 -Wilding 63991 -Wildl 65170 -Wildland 62196 -Wildlife 44276 -Wildman 65452 -Wildomar 65452 -Wildside 61362 -Wildwood 55934 -Wile 58632 -Wiles 63077 -Wiley 47863 -Wilford 59702 -Wilfred 57831 -Wilfrid 59164 -Wilfried 63245 -Wilhelm 53630 -Wilhelmina 59424 -Wilke 64657 -Wilkerson 55934 -Wilkes 54439 -Wilkie 59227 -Wilkin 64657 -Wilkins 53882 -Wilkinson 51660 -Wilkinson's 61940 -Wilko 63991 -Wilks 56827 -Will 38204 -Will's 60580 -Willa 56293 -Willamette 57084 -Willan 65170 -Willard 54321 -Willcom 61940 -Wille 62613 -Willebrand 59424 -Willebrand's 63601 -Willem 57009 -Willems 62762 -Willesden 62196 -Willett 61152 -Willey 62469 -Willi 60321 -Williaa 64657 -William 38687 -William's 60157 -Williambridge 63419 -Williams 41204 -Williams's 59702 -Williamsburg 52007 -Williamson 51202 -Williamson's 63792 -Williamsport 60321 -Williamstown 58470 -Willian 65170 -Willie 48701 -Willie's 63245 -Willige 65452 -Willimantic 60492 -Willing 54902 -Willingboro 62762 -Willingdon 62196 -Willingham 53646 -Willingness 61362 -Willington 64657 -Willis 50171 -Willison 65170 -Williston 55849 -Willits 62762 -Willkie 63077 -Willkommen 61699 -Willman 65170 -Willmar 65452 -Willmott 64423 -Willoughby 56585 -Willow 48600 -Willow's 63245 -WillowBrook 61472 -Willowbrook 60405 -Willows 57122 -Wills 47402 -Willsher 64423 -Willson 62066 -Willy 51846 -Willy's 62331 -Willys 61472 -Wilma 57970 -Wilmer 60238 -Wilmette 59292 -Wilmington 50856 -Wilmot 61256 -Wilmouth 63419 -Wilmslow 60856 -Wilner 64657 -Wilsall 64905 -Wilshire 54245 -Wilson 42984 -Wilson's 53581 -Wilsons 61256 -Wilt 59848 -Wilton 52375 -Wilts 63077 -Wiltshire 50060 -Wiltz 64657 -Wilwood 63792 -Wily 63245 -Wim 56518 -Wimax 64657 -Wimberley 63991 -Wimbledon 52107 -Wimborne 62469 -Wimmer 62762 -Wimmera 59292 -Wimp 64905 -Wimpole 64201 -Wimpy 63419 -Win 41760 -WinALL 63077 -WinAMP 65452 -WinAVI 59923 -WinAll 64423 -WinAmp 62066 -WinAvi 62917 -WinBook 65452 -WinDVD 60762 -WinEdt 63792 -WinExtra 64905 -WinFX 62331 -WinFax 65452 -WinForms 55684 -WinHelp 64657 -WinInfo 64423 -WinMatrix 61699 -WinMatrixian 64905 -WinNT 62196 -WinRAR 57122 -WinRar 62762 -WinRiver 64905 -WinSrv 64905 -WinTV 64423 -WinXP 55552 -WinZip 57160 -WinZix 60078 -Winall 63419 -Winamp 48571 -Winans 60321 -Winbond 62331 -Wincanton 60492 -Winch 56262 -Winches 59424 -Winchester 51175 -Winchmore 63991 -Winco 64905 -Wind 43412 -Wind's 64657 -WindTunnel 63245 -Windbell 65170 -Windbreaker 64657 -Windbreakers 65170 -Windchill 61362 -Windchimes 65170 -Windcrest 63245 -Winder 56935 -Windermere 55178 -Winders 60762 -Windfall 60405 -Windham 56721 -Windhoek 61362 -Windies 65170 -Winding 56452 -Windjammer 49464 -Windlass 65170 -Windmill 55738 -Windmills 60670 -Window 42503 -Window's 64905 -WindowBlinds 61152 -WindowTitle 62613 -Windowed 64201 -Windows 33959 -WindowsCare 63991 -WindowsClient 58860 -WindowsMedia 63991 -WindowsServer 65170 -WindowsToolsAndUtilities 65452 -WindowsXP 60321 -Windoze 63792 -Windrunner 59848 -Winds 50966 -Windscreen 59101 -Windscreens 59630 -Windshield 53211 -Windshields 63245 -Windshirt 65170 -Windsor 46575 -Windstar 51434 -Windstorm 63419 -Windsurf 63601 -Windsurfing 56721 -Windward 58162 -Windy 54419 -Wine 40119 -Winegard 63991 -Winehouse 50101 -Winehouse's 62917 -Winelands 61256 -Winemaker 63419 -Winemakers 64905 -Winemaking 64201 -Winer 62613 -Wineries 54114 -Winery 53613 -Wines 49348 -Winfield 57160 -Winfred 64201 -Winfrey 55423 -Winfrey's 65452 -Winfried 65170 -Wing 46766 -Wing's 65452 -Wingard 65452 -Wingate 57199 -Wingecarribee 63601 -Winged 59702 -Winger 61472 -Wingfield 61584 -Wingless 64423 -Wingo 61940 -Wings 47190 -Wingspan 65452 -Wingy 64201 -Winifred 59774 -Wining 61152 -Wink 55684 -Winkle 61256 -Winkler 56972 -Winks 60405 -Winky 64657 -Winlogon 61699 -Winn 56687 -Winnebago 58162 -Winnelson 62917 -Winner 47266 -Winner's 63601 -Winners 46310 -Winnetka 58262 -Winnett 64905 -Winnfield 64657 -Winnie 53038 -Winning 45428 -Winnings 61152 -Winnipeg 49157 -Winnipeg's 65452 -Winns 62613 -Winnsboro 63601 -Wino 65452 -Winona 56293 -Winooski 62613 -Winpwn 65452 -Winrar 63792 -Wins 46928 -Winsconsin 63419 -Winsford 61818 -Winship 65170 -Winslade 63601 -Winslet 59039 -Winslow 54946 -Winslow's 54835 -Winsock 59424 -Winsome 63245 -Winsor 60856 -Winstead 63419 -Winston 49500 -Winston's 63419 -Winstone 60405 -Winstons 62917 -Wintel 61699 -Winter 41826 -Winter's 58919 -Winterbourne 63991 -Winterfest 60952 -Wintergreen 63077 -Winterize 65170 -Winterizing 65170 -Winterport 65452 -Winterreise 61472 -Winters 53167 -Winterset 64657 -Winterspring 60078 -Wintersun 65170 -Winterthur 64657 -Winterton 64201 -Winterveil 65452 -Winthrop 56452 -Winton 58632 -Winwood 63991 -Winx 56518 -Winzip 60238 -WipEout 65452 -Wipe 55738 -Wipeout 59848 -Wiper 54643 -Wipers 58688 -Wipes 55250 -Wiping 64657 -Wipro 52496 -Wir 58162 -Wire 40526 -Wire's 63991 -WireImage 62331 -Wired 43097 -WiredMinds 65452 -Wirehaired 63245 -Wireless 39035 -Wirelessly 63419 -Wireline 62917 -Wires 53256 -Wireshark 64423 -Wiretap 60405 -Wiring 52018 -Wirral 55107 -Wirt 64657 -Wirth 59848 -Wirtschaft 61940 -Wirtschaftspol 63991 -Wirtz 63077 -Wis 62196 -Wisbech 58919 -Wisconsin 41084 -Wisconsin's 58860 -Wisden 63991 -Wisdom 49070 -WisdomCard 64905 -Wise 48122 -WiseTo 55849 -Wisely 62613 -Wiseman 58577 -Wiser 60856 -Wises 59774 -Wish 42191 -WishList 59774 -Wishart 62613 -Wishbone 57831 -Wished 58212 -Wishes 53346 -Wishful 64201 -Wishing 54283 -Wishlist 47160 -Wishlists 58162 -Wisin 61051 -Wisma 64423 -Wisner 63792 -Wisniewski 63991 -Wisp 60405 -Wiss 63245 -Wissahickon 63419 -Wissen 64905 -Wissenschaft 65452 -Wisser's 60952 -Wistar 54835 -Wisteria 61940 -Wists 57482 -Wit 54946 -Witbank 64423 -Witch 49999 -Witch's 59848 -Witchblade 65170 -Witchcraft 59164 -Witcher 57876 -Witches 55226 -Witching 64905 -Witchy 64201 -Witchy's 63245 -With 32235 -WithEvents 57970 -Witham 61256 -Withdraw 60238 -Withdrawal 51752 -Withdrawals 60856 -Withdrawing 65170 -Withdrawl 63077 -Withdrawn 59292 -Withdraws 61699 -Withers 57278 -Witherspoon 55684 -Withheld 64423 -Withholding 60157 -Within 41516 -Without 41686 -Withstand 65452 -Witkin 64423 -Witmer 65452 -Witness 48567 -Witnesses 49966 -Witnessing 65170 -Witney 61472 -Witold 60238 -Wits 57785 -Witt 54664 -Witte 60000 -Witten 60952 -Wittenberg 59101 -Wittens 65452 -Witter 61584 -Wittering 63419 -Wittgenstein 60856 -Wittman 63077 -Wittmann 61940 -Wittnauer 63601 -Witton 65452 -Witty 60762 -Witwer 58745 -Wivenhoe 62762 -Wives 53196 -Wixi 60952 -Wixom 64201 -Wiz 54946 -WizKids 64905 -Wizard 46488 -Wizard's 61699 -Wizardry 64657 -Wizards 51312 -Wizbang 60238 -Wize 63601 -Wizetrade 64905 -Wizkids 64905 -Wizz 60952 -Wizzard 64201 -Wk 57009 -Wkly 61940 -Wks 61256 -Wl 62613 -Wladyslaw 65452 -Wm 58262 -Wma 64657 -Wms 63601 -Wn 65170 -Wnt 56721 -Wo 57609 -WoC 65452 -WoL 55934 -WoO 65452 -WoW 46675 -WoWWiki 55992 -Wobble 62469 -Wobbly 65452 -Woburn 58017 -Woche 64423 -Wochenschau 63419 -Wochenschr 58745 -Wodehouse 62613 -Wodonga 63077 -Woe 60321 -Woes 55154 -Wofford 60157 -Wogan 62196 -Woh 61818 -Wohl 65170 -Wohlers 64905 -Wojciech 60405 -Wojciechowski 64423 -Wojtek 65452 -Wok 56721 -Woke 60580 -Woking 57399 -Wokingham 56935 -Woks 63792 -Wolcott 58017 -Wold 62331 -Wolds 64657 -Wolf 45761 -Wolf's 58365 -Wolfe 52927 -Wolfe's 62917 -Wolfen 64423 -Wolfenstein 57970 -Wolff 55448 -Wolff's 62331 -Wolfgang 50791 -Wolfgang's 61584 -Wolfhound 63245 -Wolfman 61940 -Wolfmother 64905 -Wolfner 65452 -Wolford 63601 -Wolfowitz 60670 -Wolfpack 59560 -Wolfram 57122 -Wolfsburg 61362 -Wolfson 57741 -Wolinsky 65170 -Wolk 64423 -Wolken 63792 -Wollaston 65452 -Wollongong 56200 -Wolly 65452 -Wolof 59774 -Wolpert 65452 -Wolphert 60321 -Wolseley 61472 -Wolsey 64657 -Wolter 62469 -Wolters 57696 -Wolverhampton 50615 -Wolverine 55373 -Wolverines 55963 -Wolverton 61472 -Wolves 53316 -Womack 56388 -Woman 42893 -Woman's 49913 -Womanizer 51425 -Womans 61472 -Womb 60321 -Wombat 62469 -Wombats 65452 -Womble 63245 -Women 38370 -Women's 37199 -Womens 44343 -Womenswear 60238 -Won 50890 -Won't 49348 -Wonder 47438 -WonderSwan 63077 -WonderWorld 60321 -Wonderbra 64201 -Wonderful 48208 -Wonderfully 62331 -Wondering 56050 -Wonderland 52351 -Wonders 52739 -Wondershare 59491 -Wonderwall 65170 -Wondrous 61818 -Wong 48055 -Wong's 60321 -Wonk 63601 -Wonka 60157 -Wonkette 59424 -Wont 58017 -Wontar 62762 -Wonthaggi 64905 -Wonton 65170 -Woo 53952 -Wood 41024 -Wood's 57609 -Woodall 62331 -Woodard 57524 -Woodberry 64657 -Woodbine 58365 -Woodbridge 54399 -Woodburn 62196 -Woodbury 54499 -Woodchurch 61940 -Woodcliff 64201 -Woodcock 58802 -Woodcraft 59491 -Woodcreek 62917 -Woodcroft 60952 -Wooded 61818 -Wooden 48341 -Wooden's 64905 -Woodend 62762 -Woodfield 63245 -Woodford 56050 -Woodgate 62196 -Woodham 59702 -Woodhaven 61699 -Woodhead 64201 -Woodhouse 60405 -Woodhull 61940 -Woodie 55738 -Woodinville 60405 -Woodlake 65170 -Woodland 50157 -Woodlands 53241 -Woodlawn 57609 -Woodley 59101 -Woodman 59560 -Woodmere 64657 -Woodpecker 59491 -Woodridge 60238 -Woodring 65452 -Woodrow 56687 -Woodruff 56551 -Woods 45029 -Woods's 64201 -Woodshop 65452 -Woodside 56110 -Woodsman 63792 -Woodsome 63991 -Woodson 59039 -Woodsreef 64657 -Woodstock 50115 -Woodstown 58979 -Woodturning 64201 -Woodville 58745 -Woodward 52832 -Woodward's 64657 -Woodware 62917 -Woodway 62196 -Woodwind 57122 -Woodwinds 59702 -Woodwork 59101 -Woodworker 63601 -Woodworker's 64423 -Woodworkers 62196 -Woodworking 52107 -Woodworth 63601 -Woody 51202 -Woody's 59702 -Woof 60762 -Woofer 63077 -Woogie 63077 -Wook 64423 -Wookieepedia 60078 -Wool 49584 -Wooldridge 61472 -Woolen 63792 -Wooler 63077 -Wooley 63792 -Woolf 58212 -Woolies 63077 -Woollahra 62762 -Woollen 63792 -Woolley 59923 -Woolly 59164 -Woolrich 59848 -Woolsey 62066 -Woolshed 65170 -Woolston 64423 -Woolwich 58688 -Woolworth 63245 -Woolworths 59560 -Wooly 60580 -Woon 63991 -Woonona 64201 -Woonsocket 63601 -Woop 65452 -Wooster 57278 -Woot 61256 -WootIRULE 64905 -Wooten 55373 -Wootten 65452 -Wootton 59848 -Woozle 64201 -Wop 61362 -Worcester 49382 -Worcestershire 52597 -Word 39571 -Word's 65170 -WordBasic 65170 -WordGirl 62762 -WordNet 58919 -WordPerfect 60580 -WordPress 44063 -WordReference 57440 -WordWeb 65452 -Worden 59424 -Wording 61940 -Wordle 63792 -Wordless 59491 -Wordlet 57609 -Wordmark 64423 -Wordplay 55877 -Wordpress 48648 -Words 43594 -Wordsworth 60405 -Wore 59923 -Worf 65170 -Work 35860 -WorkCentre 62331 -WorkChoices 64657 -WorkCover 61940 -WorkKeys 58919 -WorkPlace 64201 -WorkSafe 63077 -WorkSpace 64201 -Workaround 62917 -Workarounds 58113 -Workbench 56827 -Workbenches 63792 -Workbook 54245 -Workbooks 60492 -Worked 50670 -Worker 48292 -Worker's 56485 -Workers 46263 -Workflow 51406 -Workflows 62196 -Workforce 47867 -Workgroup 55060 -Workgroups 62917 -Workholding 65170 -Workhorse 63077 -Working 39433 -Workings 63419 -Workington 56972 -Workload 59164 -Worklogs 62613 -Workman 59357 -Workmen's 62917 -Workopolis 62469 -Workout 49541 -Workouts 56518 -Workplace 47279 -Workplaces 60492 -Workplan 63601 -Works 40423 -Works's 63991 -Worksheet 56080 -Worksheets 55323 -Workshop 43210 -Workshops 47672 -Worksite 63991 -Worksop 62762 -Workspace 53392 -Workspaces 63991 -Workstands 64905 -Workstation 51670 -Workstations 54096 -Worktops 64657 -Workwear 57970 -World 31459 -World's 44274 -WorldCat 60856 -WorldChanging 62917 -WorldCom 60670 -WorldConnect 57122 -WorldData 61818 -WorldEconomicForum 61584 -WorldMate 64657 -WorldNetDaily 64657 -WorldNow 60670 -WorldPay 65452 -WorldRes 64201 -WorldSkills 60321 -WorldWide 58113 -WorldWind 64657 -WorldatWork 65170 -Worldcat 65452 -Worldchanging 63792 -Worldgroup 63245 -Worldly 64905 -Worldpreview 63245 -Worlds 47496 -Worldstock 63601 -Worldstream 65452 -Worldview 55738 -Worldviews 64657 -Worldwide 39173 -Worley 59560 -Worm 52845 -Wormer 64657 -Wormers 64657 -Wormhole 63601 -Worms 53952 -Worn 56791 -Worrall 60856 -Worried 53095 -Worries 55934 -Worry 53679 -Worrying 57046 -Worse 54770 -Worsening 64201 -Worship 47980 -Worsley 58688 -Worst 45865 -Worsted 62762 -Wort 61818 -Worth 44375 -Wortham 62196 -Worthing 56170 -Worthington 55578 -Worthless 62469 -Worthwhile 63245 -Worthy 55250 -Worx 58262 -Wot 61152 -WotLK 56324 -WotR 65452 -Wotlk 61584 -Wotton 61256 -Would 39174 -Would've 64423 -Wouldn't 53024 -Wouldnt 64201 -Wound 50343 -Wounded 55684 -Wounds 58365 -Wout 65452 -Wouter 63077 -Woven 53613 -Wovens 64657 -Wow 48746 -WowScape 65170 -WowWee 63601 -Wowace 63792 -Wowhead 59039 -Wowie 64201 -Wows 65170 -Wowzio 61256 -Woy 64905 -Woz 65170 -Wozniak 62613 -Wp 63991 -Wraith 60000 -Wrangell 64905 -Wrangler 53153 -Wranglers 61051 -Wrap 48005 -Wraparound 62331 -Wrapped 54519 -Wrapper 56170 -Wrappers 60952 -Wrapping 55604 -Wraps 53271 -Wrapup 61472 -Wrasse 64201 -Wrath 50234 -Wray 59630 -Wreath 58632 -Wreaths 59630 -Wreck 55552 -Wreckage 62917 -Wrecked 61256 -Wrecker 61051 -Wreckers 58365 -Wrecking 56935 -Wrecks 62613 -Wrekin 57238 -Wren 57009 -Wrench 54207 -Wrenches 56827 -Wrenn 63792 -Wrens 64423 -Wrentham 65170 -Wrestle 62762 -WrestleMania 61699 -Wrestlemania 60321 -Wrestler 59848 -Wrestlers 59292 -Wrestling 45406 -Wrexham 53182 -Wright 44980 -Wright's 56452 -Wrights 60078 -Wrightstown 64423 -Wrightsville 59164 -Wrightwood 65452 -Wrigley 55963 -Wrigleyville 64201 -Wrinkle 55821 -Wrinkles 59357 -Wrist 50782 -Wristband 61940 -Wristbands 61152 -Wristlet 63991 -Wrists 64423 -Wristwatch 63419 -Wristwatches 63792 -Writ 59774 -Write 36364 -Writer 46128 -Writer's 53182 -Writers 45840 -Writes 55963 -Writeups 56791 -Writing 41461 -Writings 54226 -Writs 59227 -Written 43883 -Wrobel 61940 -Wroclaw 61584 -Wrong 46778 -Wrongful 50865 -Wrongs 63792 -Wrote 54992 -Wrought 56935 -Wrox 61362 -Wrst 64201 -Wrz 65170 -Ws 56652 -WsaP 62917 -Wszystkie 64657 -Wt 58212 -Wtf 63991 -Wu 49572 -Wubbzy 65452 -Wubi 56935 -Wud 63419 -Wuhan 57440 -Wuhrer 65452 -Wukela 65452 -Wulf 63245 -Wulff 64201 -Wun 63601 -Wunder 61584 -WunderBlogs 62613 -WunderMap 56935 -WunderPhotos 57785 -Wunderbar 64657 -Wunderlich 63991 -Wuppertal 63419 -Wurdigneria 65170 -Wurlitzer 64423 -Wurm 64657 -Wurtz 65452 -Wurzelbacher 64201 -Wushu 62469 -Wusthof 65452 -Wuthering 61699 -Wuxi 62917 -Wuzzle 64423 -WwW 64201 -Wwe 59774 -Wwf 65452 -Www 53196 -Wx 62762 -Wxation 65452 -Wy 60670 -Wyandotte 61699 -Wyant 62762 -Wyatt 54321 -Wyatt's 65170 -Wybierz 62066 -Wybunbury 59774 -Wychwood 62331 -Wyckoff 58745 -Wyclef 58745 -Wycliffe 63245 -Wycombe 54946 -Wydawnictwo 65452 -Wye 59039 -Wyeth 57609 -Wyk 65170 -Wylde 60856 -Wylie 55992 -Wyllie 63792 -Wyman 58577 -Wymondham 65170 -Wyn 61256 -Wyndham 53470 -Wynkoop 63245 -Wynn 56356 -Wynne 58313 -Wynnum 61051 -Wynonna 65170 -Wynton 60762 -Wynyard 65452 -Wyodor 64657 -Wyoming 43318 -Wyoming's 62196 -Wyong 60670 -Wyre 60157 -Wyse 60952 -Wysiwyg 63601 -Wysocki 63792 -Wyss 61472 -Wythe 63792 -Wärtsilä 65170 -Wörterbuch 62469 -Würzburg 65452 -X 34045 -X's 56618 -XA 60492 -XACT 60000 -XAFS 60856 -XAL 63601 -XAML 60670 -XAMPP 64423 -XANES 64201 -XAP 63077 -XB 59491 -XBL 57785 -XBLA 57440 -XBMC 56551 -XBOX 51122 -XBRL 60670 -XBerience 64423 -XBlack 64657 -XBoard 63991 -XBox 51620 -XBoxer 65170 -XC 54399 -XCD 63991 -XCHANGETEAM 57399 -XCM 64423 -XCR 62762 -XCar 63245 -XCartel 63077 -XChange 64201 -XD 49745 -XDA 53533 -XDCAM 64201 -XDD 63601 -XDDD 64201 -XE 57696 -XENIA 60670 -XENON 62196 -XEROX 61051 -XETRA 64905 -XF 57923 -XFCE 65170 -XFIT 63245 -XFM 64905 -XFN 53438 -XFS 63419 -XFX 56452 -XG 62469 -XGA 56050 -XH 61940 -XHTML 44292 -XI 49932 -XIAP 59848 -XIHA 63245 -XII 50537 -XIII 53301 -XILINX 64201 -XING 57358 -XIV 56452 -XIX 57122 -XJ 59424 -XK 59357 -XKCD 65452 -XKR 65452 -XL 46613 -XLF 62917 -XLI 64657 -XLII 58313 -XLIII 63601 -XLPE 63991 -XLR 56324 -XLRI 65170 -XLS 60762 -XLT 56293 -XLarge 60580 -XM 48436 -XM's 60856 -XMAS 60157 -XMB 57970 -XML 37397 -XMLUI 65452 -XMP 65170 -XMPP 62066 -XMS 63792 -XN 64905 -XNA 54813 -XO 53813 -XOM 58113 -XOOPS 56388 -XOR 58688 -XOVision 63792 -XOX 63991 -XOXO 56485 -XP 41200 -XP's 65170 -XPD 64201 -XPERIA 63419 -XPERIMENTAL 65452 -XPLORE 52210 -XPP 64905 -XPRESS 64905 -XPS 50623 -XPath 58162 -XQ 65452 -XQuery 60762 -XR 54380 -XRD 54245 -XRF 62762 -XRP 62196 -XRT 60670 -XS 51434 -XSD 63991 -XSI 62066 -XSL 58979 -XSLT 55877 -XSM 63245 -XSS 61472 -XScale 63601 -XSi 61051 -XSite 61256 -XSmall 64423 -XStream 60238 -XT 52886 -XTC 54792 -XTERRA 63601 -XTR 61940 -XTRA 63419 -XTREME 61152 -XTX 65170 -XTi 61818 -XTreme 65452 -XTube 65170 -XU 62066 -XUL 63601 -XUV 61940 -XV 55578 -XVI 54622 -XVID 57084 -XVII 59560 -XVIII 57238 -XViD 59630 -XW 61940 -XX 50122 -XXI 59101 -XXII 61472 -XXIII 60405 -XXIV 62066 -XXIX 65452 -XXL 51721 -XXLarge 64657 -XXS 62331 -XXV 64905 -XXX 44454 -XXXL 60856 -XXXMovies 65170 -XXXVI 65170 -XXXzz 63601 -XY 50670 -XYLOPHONE 64423 -XYZ 57046 -XZ 62613 -Xa 62469 -Xabati 64905 -Xabi 64657 -Xacti 60492 -Xajax 64201 -Xamon 64905 -XanGo 62469 -Xanadu 58979 -Xanax 47717 -Xander 57696 -Xandros 64905 -Xanga 49713 -Xanthan 65170 -Xanthine 65452 -Xanthomonas 62917 -Xanthones 64657 -Xantrex 59560 -Xara 58470 -Xaraya 64905 -Xavier 49764 -Xavier's 61584 -Xavius 64657 -XbA 64657 -XbaI 61472 -Xbb 65452 -Xbox 39684 -Xcel 60321 -Xcelite 63077 -Xcelsius 62762 -Xchange 64423 -Xclusive 65452 -Xcode 59774 -Xda 62613 -Xe 58745 -Xecuter 62917 -Xelibri 64657 -Xeloda 63792 -Xen 56652 -XenApp 64905 -XenServer 62613 -XenSource 62469 -Xena 58417 -Xenadrine 60238 -Xenazine 63601 -Xeni 63419 -Xenia 60000 -Xenical 56827 -Xenon 53746 -Xenophobia 64201 -Xenophon 65452 -Xenopus 53167 -Xenosaga 62196 -Xeon 54664 -Xero 62469 -Xerox 49886 -Xerxes 65170 -Xess 61362 -Xetra 62469 -Xfce 65452 -Xfire 61818 -Xfm 64201 -Xft 64657 -Xgl 62196 -Xhilaration 64905 -XhoI 64201 -Xhosa 59560 -Xi 53830 -Xi'an 59164 -Xia 57923 -Xiah 65452 -Xiamen 51660 -Xian 58577 -Xiang 59923 -Xiao 56972 -Xiaodong 63245 -Xiaolin 65452 -Xiaoping 62917 -Xidaozu 64657 -Xie 56862 -Xilinx 57653 -Xilisoft 57358 -Xin 56827 -Xindice 64905 -Xing 56862 -Xingu 65452 -Xinhua 55766 -Xinjiang 58113 -Xiong 61699 -Xiph 63792 -Xiu 61584 -Xj 65170 -Xl 60078 -Xlibris 65170 -Xmas 51877 -Xmen 65452 -Xml 62066 -XmlContent 63077 -XmlPitStop 62469 -Xn 62331 -Xo 61152 -Xoftspy 64423 -Xomba 63245 -Xonar 63419 -Xoo 65170 -Xorg 63601 -Xp 54302 -Xperia 59848 -Xperience 63245 -Xplicit 65170 -Xploder 63792 -Xplore 49336 -Xplorer 61256 -Xposed 65452 -Xpress 53847 -XpressMusic 55423 -Xr 63245 -Xray 61940 -Xs 62469 -Xsan 59424 -Xscape 63991 -Xserve 60321 -Xstrata 60952 -Xt 62469 -Xtc 63245 -Xterra 56791 -Xtra 57358 -Xtras 58313 -Xtreem 65452 -Xtreme 49500 -XtremeGamer 64905 -XtremeSystems 62469 -Xu 53095 -Xuan 61051 -Xubuntu 60405 -Xuchang 64905 -Xue 52291 -Xun 63601 -Xupport 65452 -Xuron 64905 -Xuzhou 64905 -Xv 65452 -Xvi 63419 -XviD 50750 -Xvid 51184 -Xx 56356 -XxSweetDreamsxX 65170 -XxX 61818 -Xxx 53762 -Xylanase 64423 -Xylem 63077 -Xylene 63419 -Xylitol 64905 -Xylophone 64423 -Xzibit 61818 -Y 37605 -Y'all 59774 -Y's 64657 -YA 50932 -YA'LL 63792 -YAC 64423 -YACHT 61051 -YACHTS 61152 -YAD 63991 -YAEL 62762 -YAG 60952 -YAHOO 59292 -YALE 62762 -YALL 62613 -YAMA 64905 -YAMAHA 51034 -YAMAMOTO 65452 -YAMBA 64657 -YANG 58113 -YANKEE 63077 -YANKEES 60078 -YARD 58979 -YARN 61584 -YASA 61940 -YATES 62762 -YAY 59630 -YAZ 65170 -YB 58919 -YBC 62469 -YBCO 61699 -YC 57609 -YCA 64905 -YD 58212 -YDB 61051 -YDS 58577 -YDSO 59424 -YE 57566 -YEA 63991 -YEAH 58417 -YEAR 47915 -YEAR'S 64423 -YEARLY 62196 -YEARS 51184 -YEAST 63419 -YEH 63792 -YELLOW 52597 -YEMEN 61152 -YEN 62762 -YER 64201 -YES 44040 -YESNetwork 59848 -YESTERDAY 61584 -YET 56935 -YEW 65170 -YF 55963 -YFC 63419 -YG 60580 -YGF 63601 -YH 56293 -YHA 63601 -YHOO 61940 -YI 58860 -YIELD 61940 -YIG 62066 -YILMAZ 61940 -YIM 62469 -YIN 63991 -YJ 56231 -YK 59357 -YKK 64657 -YL 59292 -YM 56050 -YMC 65170 -YMCA 52164 -YMMV 62469 -YN 57785 -YNZ 65452 -YO 54207 -YOGA 59292 -YOOX 55631 -YOOXNEWS 63792 -YORBA 64423 -YORK 46944 -YORKSHIRE 60238 -YOU 40094 -YOU'D 64201 -YOU'LL 60078 -YOU'RE 56420 -YOU'VE 60670 -YOUNG 52699 -YOUR 40940 -YOURHOME 64201 -YOURS 60856 -YOURSELF 57009 -YOUTH 54151 -YOUTHTOWN 62917 -YOUTUBE 59227 -YOu 59630 -YP 56170 -YPC 60670 -YPM 63991 -YQ 64423 -YR 50991 -YRC 64201 -YRS 63245 -YS 55474 -YSA 64201 -YSL 62469 -YSM 63991 -YSN 65452 -YSPC 62469 -YSR 64423 -YSTEM 62613 -YT 56791 -YTB 61256 -YTD 57653 -YTH 63077 -YTL 62613 -YTMND 65452 -YTV 63245 -YTV's 64201 -YTdebates 61940 -YU 57876 -YUAN 63245 -YUGIOH 63601 -YUGOSLAV 63792 -YUGOSLAVIA 62917 -YUI 62762 -YUKON 61940 -YUM 62613 -YUN 63792 -YUNG 62196 -YUP 65452 -YURI 65452 -YUV 63792 -YV 52661 -YW 60952 -YWCA 58979 -YX 52622 -YY 58313 -YZ 59039 -YZF 61699 -Ya 48692 -Ya'll 61818 -YaBB 59039 -Yaak 64201 -Yaakov 63601 -Yaar 63077 -Yabba 64905 -Yacht 47807 -Yachting 55423 -Yachts 52375 -Yack 65452 -Yad 65170 -Yadav 59227 -Yadkin 62917 -Yael 59424 -Yaesu 64905 -Yaga 64423 -Yagami 65170 -Yager 63601 -Yagi 63245 -Yagotta 64657 -Yah 61362 -Yahoo 39984 -Yahoo's 58017 -YahooFinance 65452 -YahooMyWeb 51877 -Yahtzee 63792 -Yahweh 58979 -Yahya 62917 -Yai 61818 -Yair 63991 -Yairi 58577 -Yak 60000 -Yakima 53847 -Yakov 64657 -Yakovlev 65452 -Yakubu 64905 -Yakumo 64657 -Yakuza 58417 -Yala 64905 -Yale 47721 -Yall 60580 -Yam 61256 -Yama 64423 -Yamada 57278 -Yamagata 59702 -Yamaguchi 57653 -Yamaha 46291 -Yamaha's 62196 -Yamal 65170 -Yamamoto 55526 -Yamanaka 63601 -Yamanashi 62196 -Yamasaki 63601 -Yamashita 59164 -Yamato 58919 -Yamazaki 61584 -Yamba 60670 -Yambu 61472 -Yamhill 61472 -Yami 64657 -Yamin 62066 -Yammy 65452 -Yampa 63245 -Yams 64201 -Yan 53167 -Yana 60670 -Yanagisawa 63601 -Yanbu 62469 -Yancey 59357 -Yancy 65170 -Yandel 61472 -Yang 48821 -Yang's 65452 -Yangon 65170 -Yangtze 59292 -Yangzhou 63601 -Yaniger 64657 -Yaniv 63077 -Yank 61152 -Yankee 49688 -Yankees 47381 -Yanko 64905 -Yankovic 63077 -Yanks 58365 -Yanmar 61472 -Yann 59357 -Yanna 65170 -Yanni 64423 -Yannick 60670 -Yannis 59774 -Yano 61051 -Yantai 62331 -Yantra 63792 -Yao 54902 -Yaoi 60321 -Yaounde 62762 -Yap 59848 -YapTube 61256 -Yaprak 59292 -Yaqui 64423 -Yar 61472 -Yar'Adua 64201 -Yarbrough 63991 -Yard 47064 -YardBarker 63419 -Yardage 61940 -Yardbarker 61256 -Yardley 58688 -Yards 53052 -Yared 58365 -Yaris 57278 -Yarmouth 54835 -Yarn 52141 -Yarns 56618 -Yarnsons 65452 -Yaroze 61584 -Yarra 55373 -Yarrawonga 64423 -Yarrow 62917 -Yasaka 64201 -Yash 59292 -Yasha 64905 -Yashica 62613 -Yasin 64201 -Yasir 62917 -Yasmin 56862 -Yasmina 62469 -Yasmine 59923 -Yass 60157 -Yasser 61818 -Yassin 63991 -Yasuda 60856 -Yasuhiro 60952 -Yasuko 63245 -Yasuo 63077 -Yasushi 62331 -Yat 63419 -Yate 60856 -Yates 52858 -Yatra 63077 -Yatsura 64423 -Yau 62331 -Yavapai 63245 -Yavuz 61940 -Yaw 62762 -Yay 51963 -Yaya 65170 -Yayo 61699 -Yayoi 64657 -Yaz 62469 -Yazoo 61472 -Yb 59101 -YbNi 61472 -Ybor 64201 -Yd 60492 -Yds 58365 -Ye 52673 -YeOldeStonecat 65452 -Yea 55526 -Yeadon 64657 -Yeager 60952 -Yeah 47570 -Yeahs 60856 -Year 36607 -Year's 49529 -YearPorts 62917 -Yearbook 53882 -Yearbooks 56485 -Yearling 58745 -Yearly 52584 -Yearning 65170 -Years 41020 -Yearwood 57238 -Yeast 52029 -Yeasts 63991 -Yeates 64905 -Yeats 60670 -Yedda 60157 -Yee 57278 -Yeh 54341 -Yehuda 60670 -Yelena 61472 -YelenaPerelmutova 63991 -Yell 45811 -Yelle 64201 -Yelling 60492 -Yelllow 57278 -Yellow 37484 -YellowBot 52739 -YellowPages 64657 -Yellowbook 52291 -Yellowcard 54459 -Yellowjackets 63419 -Yellowknife 61051 -Yellowpages 59227 -Yellowstone 52954 -Yelm 65170 -Yelp 47717 -Yelper 65452 -Yelpers 63245 -Yeltsin 58860 -Yeltsin's 63077 -Yemen 45792 -Yemeni 60670 -Yemenite 65170 -Yen 51052 -Yen's 64201 -Yenc 63792 -Yeni 61940 -Yentob 63601 -Yeo 60492 -Yeoh 62762 -Yeoman 54207 -Yeon 63991 -Yeovil 54770 -Yep 56862 -Yeppoon 63245 -Yer 59164 -Yerba 60405 -Yerevan 60580 -Yerkes 64423 -Yersinia 59164 -Yes 38215 -YesSPECIAL 62066 -Yeshiva 59923 -Yeshua 60952 -Yespica 64423 -Yesstyle 64905 -Yessy 62917 -Yesterday 45645 -Yesterday's 53679 -Yesterdays 58860 -Yet 43255 -Yeti 55202 -Yetta 62469 -Yeu 62331 -Yeung 59357 -Yeux 64423 -Yevgeny 62762 -Yew 58632 -Yfke 63077 -Yggdra 60492 -Yglesias 59848 -Yh 64657 -Yi 51349 -Yiannis 63077 -Yiddish 55037 -Yideoz 65452 -Yield 50646 -Yielding 65170 -Yields 56518 -Yigal 63991 -Yigg 58470 -Yili 65452 -Yilmaz 62196 -Yim 63601 -Yin 54685 -Ying 55631 -Yip 59491 -Yipes 63419 -Yishun 65170 -Yitzhak 63245 -Yiu 60000 -Yiwu 60762 -Yk 64423 -Ylang 64201 -Ym 65170 -Ymca 65170 -Yn 61362 -Ynez 64201 -Yngwie 60238 -Yo 48059 -YoQoo 64905 -YoU 64201 -YoY 65170 -YoYo 65452 -Yoakam 61472 -Yoakley 65170 -Yoakum 65452 -Yoana 65452 -Yoav 64657 -Yoda 57440 -Yoder 57970 -Yoga 45862 -Yogesh 64201 -Yoghurt 62331 -Yogi 56652 -Yogic 62762 -Yogurt 53847 -Yogyakarta 62331 -Yohanan 64201 -Yohji 65170 -Yoho 65452 -Yojimbo 65170 -Yok 62762 -Yoke 60580 -Yoko 54992 -Yokogawa 64657 -Yokohama 54151 -Yokomo 64201 -Yokoshu 65452 -Yokosuka 63245 -Yokota 62331 -Yokoyama 62196 -Yolanda 56721 -Yolcu 64905 -Yolen 65452 -Yolk 64423 -Yolo 59702 -Yom 54792 -Yomiuri 63601 -Yon 60000 -Yona 62613 -Yonder 60238 -Yonex 59560 -Yong 54727 -Yonge 57084 -Yoni 60078 -Yonkers 56262 -Yonsei 62331 -Yoo 58162 -Yoon 54727 -Yoong 65452 -Yoowalk 61051 -Yooxer 63792 -Yor 63077 -Yoram 62762 -Yorba 57084 -Yorgi's 65170 -Yori 57009 -York 33058 -York's 50890 -Yorke 55766 -Yorker 48609 -Yorker's 64423 -Yorkers 55684 -Yorkie 58745 -Yorkies 64657 -Yorks 60762 -Yorkshire 44617 -Yorkshire's 63245 -Yorktown 57876 -Yorkville 56388 -Yormark 63991 -Yoru 63077 -Yoruba 56827 -Yorum 62762 -Yosef 62469 -Yosemite 53271 -Yoshi 59491 -Yoshi's 58470 -Yoshiaki 63792 -Yoshida 57653 -Yoshie 64657 -Yoshiharu 65452 -Yoshihiro 61472 -Yoshihisa 64905 -Yoshikawa 64657 -Yoshikazu 64657 -Yoshiki 61818 -Yoshimi 65452 -Yoshimura 62196 -Yoshino 64423 -Yoshinori 64201 -Yoshinoya 62917 -Yoshio 61472 -Yoshioka 63245 -Yoshitaka 63991 -Yoshiyuki 64423 -Yossi 59560 -Yost 60670 -YotaTech 61584 -Yotsuba 61940 -You 27848 -You'd 49893 -You'll 44021 -You're 42060 -You's 65170 -You've 45775 -YouFaceTheTick 65452 -YouNewsTV 61940 -YouPorn 54902 -YouTube 33857 -YouTube's 61362 -Youbet 59357 -Youbube 64905 -Youkilis 65170 -Youll 63245 -Youlus 65452 -Youn 63792 -Younes 62469 -Young 39200 -Young's 53830 -YoungBusty 62331 -Youngblood 60405 -Younger 53182 -Youngest 60580 -Youngman 63601 -Youngs 62469 -Youngsters 60238 -Youngstown 55578 -Younha 63991 -Younis 63601 -Your 27797 -YourAmigo 64657 -YourMoney 65452 -YourSpace 64423 -Youre 59292 -Yourelated 65170 -Yours 48169 -Yourself 46511 -Yousef 62613 -Yousif 64423 -Youssef 60492 -Youssou 61472 -Yousuf 61051 -Youth 40174 -YouthAIDS 65452 -YouthBuild 62613 -Youthful 60762 -Youths 59560 -Youtube 48991 -Youu 62331 -Youve 64201 -Yoweri 62066 -Yowmans 61818 -Yoyo 63601 -Ypsilanti 62331 -Ypulse 64905 -Yr 53331 -Yrs 56110 -Ys 62066 -Ysera 60762 -Ysgol 59227 -Ysidro 63601 -Ysondre 60952 -Ythric 65452 -YtkD 64201 -Yu 49458 -YuGiOh 62469 -Yuan 51700 -Yuasa 64657 -Yuba 56110 -Yucaipa 65452 -Yucatan 58017 -Yucatán 65170 -Yucca 59491 -Yuck 63991 -Yuddhistira 64423 -Yue 59560 -Yueh 65452 -Yuen 58470 -Yuengling 65452 -Yueqing 64201 -Yuffie 62917 -Yuga 65452 -Yugi 62066 -Yugioh 58860 -Yugo 57876 -Yugoslav 53952 -Yugoslavia 48721 -Yugoslavian 63601 -Yuh 62917 -Yui 62196 -Yuichi 63245 -Yuji 60670 -Yuk 63991 -Yuka 63991 -Yukai 64905 -Yukari 63419 -Yukawa 60580 -Yuki 57876 -Yukiko 64657 -Yukio 62762 -Yuko 58470 -Yukon 48605 -Yuku 59630 -Yule 62066 -Yuletide 62066 -Yulia 61584 -Yum 54902 -YumSugar 63991 -Yuma 56170 -Yume 61584 -Yumi 61472 -Yumiko 64201 -Yummies 63245 -Yummy 55202 -Yun 56420 -Yuna 65170 -Yunanistan 64657 -Yung 52375 -Yungbluth 64657 -Yunnan 57160 -Yunus 59491 -Yup 60580 -Yuppie 64423 -Yuri 55323 -YurikBot 64423 -Yury 64657 -Yusef 61940 -Yusha 65170 -Yushchenko 63077 -Yustman 60856 -Yusuf 56231 -Yutaka 60856 -Yuu 62762 -Yuugi 58745 -Yuval 62762 -Yuvan 63792 -Yuvaraj 65170 -Yuvraj 63245 -Yuvvraaj 60580 -Yuwie 63991 -Yuyao 63419 -Yuzu 65170 -Yvan 61699 -Yves 52141 -Yvette 56972 -Yvon 61472 -Yvonne 52339 -Z 37699 -Z's 61152 -ZA 48933 -ZAAZOOM 58745 -ZABBIX 64905 -ZAC 63601 -ZACH 64657 -ZAD 65170 -ZAGAT 64423 -ZAKI 63077 -ZAKYNTHION 61256 -ZALMAN 63245 -ZAMBIA 60157 -ZAO 64905 -ZAP 61584 -ZAR 55906 -ZARA 65452 -ZAZZLE 55578 -ZB 62469 -ZBA 63601 -ZBrush 58577 -ZC 62762 -ZCI 61818 -ZD 57278 -ZDF 63077 -ZDNET 62469 -ZDNet 38858 -ZDNet's 64905 -ZDNetWeek 64423 -ZE 63077 -ZEALAND 54041 -ZEBRA 61362 -ZED 65170 -ZEDGE 63245 -ZEEE 64905 -ZEISS 65170 -ZEITSCHRIFT 65452 -ZEN 59039 -ZENER 65452 -ZENIT 64905 -ZENITH 64201 -ZENLGN 58919 -ZENN 63601 -ZEO 65452 -ZERO 55323 -ZEUS 61256 -ZEW 64423 -ZF 57160 -ZFC 62613 -ZFS 63601 -ZG 61584 -ZH 60952 -ZHANG 57278 -ZHAO 64201 -ZHOU 64905 -ZHU 63991 -ZI 62469 -ZIF 61472 -ZILINA 64201 -ZIM 64201 -ZIMBABWE 60762 -ZINACEF 64657 -ZINC 61699 -ZINDAGI 64657 -ZINDIALI 64905 -ZINE 65452 -ZION 65170 -ZIP 42608 -ZIPPER 65170 -ZIPS 63991 -ZIPs 62762 -ZJ 63601 -ZK 65170 -ZL 61940 -ZLB 59923 -ZM 60000 -ZN 64423 -ZO 63419 -ZODIAC 61818 -ZOE 62917 -ZOHAR 64905 -ZOL 63245 -ZOMBIE 61362 -ZOMG 65170 -ZONE 53613 -ZONES 63077 -ZONING 56420 -ZOO 56791 -ZOOM 57084 -ZP 61152 -ZR 59424 -ZRC 60952 -ZS 58688 -ZSNES 65170 -ZSPN 65452 -ZT 62469 -ZTE 62917 -ZUCCHINI 63419 -ZV 65452 -ZW 63991 -ZWEIWEG 63077 -ZX 58860 -ZY 63792 -ZYBERT 63419 -ZZ 54283 -ZZZ 65170 -Za 52339 -ZaZaCHAT 63245 -Zab 63792 -Zabriskie 64201 -Zac 49400 -Zacatecas 64201 -Zacdog 63792 -Zach 50365 -Zach's 61699 -Zachara 64905 -Zachariah 63792 -Zacharias 61472 -Zachary 52559 -Zacher 63419 -Zachery 64201 -Zack 51600 -Zackie 64657 -Zacks 51942 -Zaehle 65452 -Zafar 62917 -Zafer 65452 -Zaffuto 62917 -Zafira 60492 -Zag 62613 -Zagarolo 61472 -Zagat 54770 -Zager 59848 -Zagreb 55130 -Zahara 63991 -Zaheer 61362 -Zaher 64905 -Zahid 63419 -Zahir 59774 -Zahn 61584 -Zahnarztl 64657 -Zahra 62469 -Zaibatsu 64905 -Zaichik 63601 -Zaid 63077 -Zaidi 64905 -Zain 60856 -Zainab 59560 -Zainab's 63991 -Zaire 50932 -Zajednica 63077 -Zak 57009 -Zakaria 64423 -Zaki 59357 -Zakir 61051 -Zakk 61940 -Zakopane 62196 -Zaku 65452 -Zakynthos 61940 -Zale 65170 -Zales 62331 -Zaleski 64201 -Zalman 56721 -Zaloguj 62613 -Zam 63077 -Zaman 63601 -Zambesiaca 61940 -Zambezi 61940 -Zambia 46212 -Zambian 59923 -Zamboanga 61472 -Zambrano 62331 -Zameen 63419 -Zammit 60952 -Zamolo 62762 -Zamora 59227 -Zan 61584 -Zanaflex 64905 -Zande 63245 -Zander 61699 -Zandt 60157 -Zane 55992 -Zanesville 60580 -Zanetti 61584 -Zang 63419 -Zangarmarsh 57524 -Zango 60670 -Zanotti 63419 -Zant 65170 -Zantac 62762 -Zante 60762 -Zanussi 59560 -Zanzibar 55060 -Zap 59630 -ZapRoot 63792 -Zapata 58919 -Zapata's 65452 -Zapatero 64201 -Zapatista 65452 -Zapf 63245 -Zapiro 64657 -Zaporizhzhya 60952 -Zaporozhye 64201 -Zapotec 60321 -Zapp 61472 -Zappa 56585 -Zapper 61584 -Zappos 53581 -Zar 65170 -Zara 56170 -Zara's 64423 -Zaragoza 57831 -Zarathustra 62917 -Zardari 58017 -Zarit 65452 -Zarqawi 61256 -Zarqawi's 63419 -Zasshi 57399 -Zatch 63077 -Zauberstab 62613 -Zaubertrick 63245 -Zaurus 65170 -Zawya 54283 -Zaxxon 64201 -Zayed 59227 -Zaza 63077 -Zaziummm 65170 -Zazzle 54770 -Zbigniew 61818 -Zbl 62196 -Zbunjen 61051 -Zc 65170 -Zdenek 64905 -Zduriencik 63991 -Ze 59560 -Ze'ev 64201 -Zea 60856 -Zeal 62469 -Zealand 38625 -Zealand's 54023 -Zealander 64423 -Zealanders 59227 -Zealot 61699 -Zeb 62331 -Zebeta 64905 -Zebra 52791 -Zebra's 65452 -Zebrafish 59630 -Zebulon 63245 -Zechariah 62331 -Zecharya 64657 -Zed 61362 -Zedge 58470 -Zedgers 63245 -Zedomax 61699 -Zedong 65452 -Zee 54226 -ZeeVee's 63245 -Zeeland 57524 -Zeeman 60670 -Zeenat 65452 -Zeewolde 64905 -Zefa 60762 -Zegna 61940 -Zehringer 63245 -Zeige 60078 -Zeigler 65170 -Zeiss 54188 -Zeist 65170 -Zeit 58313 -Zeitgeist 53712 -Zeitschrift 59630 -Zeitschriften 64905 -Zeitschriftenaufsatz 65452 -Zeitung 59702 -Zeke 59774 -Zelda 49966 -Zelda's 64905 -Zeljko 63419 -Zell 58065 -Zell's 65452 -Zeller 64657 -Zellweger 57653 -Zelnorm 57440 -Zeltser 64905 -Zeman 62613 -Zemanova 64201 -Zen 47819 -Zena 61818 -Zenbu 64657 -Zend 53549 -Zeneca 64657 -Zenedar 64657 -Zener 60762 -Zeng 60580 -Zenit 59491 -Zenith 55226 -Zenner 65452 -Zeno 63245 -Zenoah 64657 -Zenon 59491 -Zenoss 64905 -Zens 60238 -Zentralbl 60670 -Zentralblatt 58365 -Zentrum 61051 -Zenza 63419 -Zeolite 61940 -Zeolites 63601 -Zeon 63792 -Zephaniah 62469 -Zephyr 56420 -Zephyrhills 62917 -Zeppelin 53331 -Zepto 60492 -Zerg 64657 -Zerit 57046 -Zerker 61152 -Zermatt 64905 -Zero 46092 -ZeroForum 64201 -ZeroPaid 56862 -Zeroing 65170 -Zeromancer 64423 -Zeros 61472 -Zest 61940 -Zestimate 61818 -Zestoretic 57440 -Zestril 55014 -Zesty 65170 -Zesty's 64201 -Zeta 55877 -Zetec 61256 -Zetia 55202 -Zetsubo 63601 -Zetsubou 64423 -Zettai 61699 -Zetterberg 64423 -Zeus 57696 -Zev 64905 -Zevon 64201 -Zevoneer 61818 -Zeya 61472 -Zgjidh 65452 -Zh 59774 -Zhai 65452 -Zhan 63991 -Zhang 49251 -Zhangjiagang 65170 -Zhao 54749 -Zhejiang 52913 -Zhen 59774 -Zheng 55130 -Zhengzhou 64201 -Zhenjiang 62469 -Zhi 55657 -Zhiming 64201 -Zhong 56551 -Zhongguo 60321 -Zhonghua 57653 -Zhongshan 60078 -Zhou 52940 -Zhu 54151 -Zhuang 59848 -Zhuhai 63991 -Zhurnal 65452 -Zi 59630 -ZiT 62917 -Zia 59702 -Ziad 60762 -Zibb 56972 -Zickel 65170 -Zico 65170 -Zid 65170 -Zidane 60157 -Zidovudine 59848 -Ziegfeld 60952 -Ziegler 57653 -Zieh 65170 -Ziel 65452 -Zielinski 65170 -Zielona 65452 -Ziff 52210 -Zifnab 63077 -Zig 58919 -ZigBee 65170 -Ziggies 63601 -Ziggy 57741 -Zila 65452 -Zildjian 61256 -Zilia 64657 -Zilina 60405 -Zilla 59491 -Zillah 63601 -Zilli 62469 -Zillion 63601 -Zillow 55877 -Zillow's 63601 -Zim 60492 -Zima 57122 -Zimbabwe 44772 -Zimbabwe's 59424 -Zimbabwean 60580 -Zimbabweans 63419 -Zimbio 54902 -Zimbra 61152 -Zimmer 54096 -Zimmer's 64201 -Zimmerman 54835 -Zimmermann 58632 -Zimulti 57399 -Zin 63601 -Zina 63601 -Zinc 50873 -Zindagi 60580 -Zine 58523 -Zinedine 64423 -Zines 60000 -Zinfandel 57399 -Zing 63601 -Zingales 65170 -Zingela 63991 -Zinger 61699 -Zinio 61584 -Zink 63245 -Zinkowsky 61818 -Zinn 59923 -Zinnia 63245 -Zinta 61362 -Zinzer 63245 -Zion 51835 -Zionism 58632 -Zionist 56262 -Zionists 63792 -Zions 63245 -Zionsville 64905 -Zip 42623 -ZipDating 63991 -Zipcode 57009 -Zipcodes 63601 -Zipline 63077 -Ziploc 64423 -Zipp 60762 -Zipped 61584 -Zipper 51825 -Zippered 61584 -Zippers 63245 -Zipping 65452 -Zippo 56324 -Zippy 62331 -Zippyshare 63991 -Zips 60321 -ZirT 63991 -Zircon 61818 -Zirconia 55992 -Zirconium 64201 -Zire 59923 -Zirh 64657 -Ziska 64657 -Zissou 65452 -Zita 63792 -Zitat 64201 -Zithromax 57318 -Zito 62066 -Zitterbart 63419 -Ziv 64905 -Zivot 63077 -Ziyi 60670 -Zizek 59848 -Zizek's 65452 -Ziziphus 61699 -Zizyphi 65452 -Zizyphus 63245 -Zizzo 63601 -Zlatan 64657 -Zlib 62196 -Zlob 64201 -Zloty 59039 -Zn 51580 -ZnB 63991 -ZnO 57566 -ZnS 64905 -ZnSe 63601 -Znetlady 62917 -Zo 61472 -Zobacz 65170 -Zocalo 64423 -Zocor 57238 -Zod 64905 -Zodiac 47997 -Zodiac's 64905 -Zoe 51511 -Zoek 62196 -Zoeken 63077 -Zoellick 65170 -Zoey 58262 -Zogby 61584 -Zohan 58979 -Zohar 65452 -Zoho 57566 -Zoid 65452 -Zoids 57278 -Zoints 65452 -Zojirushi 64423 -Zoku 63419 -Zola 58632 -Zolder 62331 -Zoller 63792 -Zoloft 55423 -Zolpidem 59357 -Zoltan 61152 -Zoltar 64905 -Zoltán 63601 -Zombie 49682 -Zombies 55821 -Zona 55423 -Zonal 61818 -Zondervan 60762 -Zone 40124 -ZoneAlarm 58470 -ZoneX 63077 -Zoned 63991 -Zones 49382 -Zong 60856 -Zoning 46443 -Zonk 63245 -Zonta 64657 -Zonya 65170 -Zoo 47093 -Zoo's 63991 -Zooey 61818 -Zookeeper 63792 -Zool 62613 -Zoologica 62469 -Zoological 56420 -Zoology 52899 -Zoom 43224 -ZoomInfo 50285 -Zoomer 65170 -Zoomers 65452 -Zoominfo 53779 -Zooming 64201 -Zoonotic 64423 -Zooomr 58577 -Zooper 61256 -Zooplankton 64657 -Zooropa 64657 -Zoos 56485 -Zoosk 59702 -Zooskers 63601 -Zoot 59227 -Zootoo 64423 -Zope 55552 -Zora 61584 -Zoran 61818 -Zorba 64905 -Zork 65452 -Zorn 61256 -Zoro 65170 -Zorpia 63419 -Zorpians 65170 -Zorro 59101 -Zoster 64423 -Zostera 63077 -Zot 64905 -Zotac 61256 -Zotar 61940 -Zou 62066 -Zouaoui 64905 -Zouk 63601 -Zovirax 58262 -Zoya 63991 -Zoysia 64905 -Zoë 60952 -Zr 55877 -Zrii 62469 -Zsa 63077 -Zsharer 63601 -Zsolt 63601 -Zt 65452 -Zu 58065 -Zubehör 64423 -Zubin 63991 -Zucchini 56324 -Zucker 56899 -Zuckerberg 63077 -Zuckerman 58162 -Zug 60762 -Zuid 65170 -Zuidelijk 63077 -Zuiko 60321 -Zuko 65452 -Zukunft 64657 -Zul'Aman 60238 -Zul'Farrak 60952 -Zul'Gurub 60856 -Zul'jin 60321 -Zula 65170 -Zulu 54622 -Zuluhed 60856 -Zululand 64657 -Zum 57399 -Zuma 56827 -Zumbrota 65170 -Zumiez 65170 -Zunch 64905 -Zune 47037 -Zuni 59774 -Zuo 63245 -Zur 57524 -Zurich 51330 -Zurück 62469 -Zusammenarbeit 65452 -Zusammenfassung 64657 -Zutano 65452 -Zutons 65452 -Zuzana 63077 -Zvents 55906 -Zvezda 63601 -Zvi 62066 -Zweber 58979 -Zwei 63792 -Zweig 64201 -Zweihander 65170 -Zweite 65170 -Zwick 64423 -ZyXEL 62762 -Zyban 58745 -Zydeco 58523 -Zydus 65452 -Zygophyllum 60580 -Zyl 65170 -Zyloprim 62469 -Zyprexa 56170 -Zyrtec 56050 -Zyvox 63601 -Zyxel 59848 -Zz 64905 -Zzebra 64657 -Zé 63601 -Zürich 55154 -a 17149 -a'r 64657 -a's 63077 -aA 62469 -aC 63601 -aClock 60580 -aFGF 63991 -aH 65170 -aI 64657 -aKa 65170 -aL 62066 -aM 64657 -aNobii 57318 -aPKC 57923 -aR 65170 -aXXo 62917 -aa 50553 -aaNet 60952 -aaa 57524 -aac 63601 -aad 63077 -aaliyah 65170 -aaltepet 63419 -aan 55373 -aap 64657 -aaron 57160 -ab 50122 -aba 64201 -aback 62066 -abacus 62613 -abajo 64423 -abalone 61152 -abana 64423 -abandon 52164 -abandoned 48372 -abandoning 56687 -abandonment 55934 -abandons 60321 -abasic 63077 -abate 62196 -abated 63792 -abatement 57009 -abattoir 64657 -abaxial 64905 -abba 58632 -abbey 58017 -abbot 62066 -abbott 63245 -abbreviate 64423 -abbreviated 55657 -abbreviation 55821 -abbreviations 53361 -abby 58523 -abbyy 64905 -abc 56420 -abcd 64423 -abciximab 64657 -abd 64657 -abdicated 64657 -abdication 63991 -abdomen 53331 -abdominal 47895 -abdominoplasty 61152 -abduct 63991 -abducted 56324 -abducting 65170 -abduction 57122 -abductions 64905 -abductor 64657 -abducts 64905 -abdul 61584 -abe 63792 -abel 63419 -abelian 58632 -aber 56791 -abercrombie 61152 -aberdeen 62762 -aberrant 56050 -aberration 57741 -aberrations 57009 -abetted 63419 -abetting 63991 -abgougouland 63792 -abhishek 62331 -abhor 63991 -abi 60492 -abide 48076 -abides 63792 -abiding 57566 -abies 63077 -abigail 63991 -abilities 48332 -ability 38677 -abiotic 59774 -abiramikdevi 63792 -abit 57009 -abject 61699 -ablated 63601 -ablation 53153 -ablative 63601 -ablaze 62762 -able 35104 -ables 60078 -ableton 62762 -ably 56080 -abner 61362 -abnormal 47634 -abnormalities 49821 -abnormality 54792 -abnormally 57278 -aboard 51043 -abode 58802 -abolish 56170 -abolished 53038 -abolishes 61472 -abolishing 60078 -abolishment 65452 -abolition 57318 -abolitionist 64905 -abominable 63991 -abomination 63991 -aboriginal 57482 -abort 59101 -aborted 58212 -aborting 65170 -abortion 49620 -abortions 58017 -abortive 61940 -abortus 62331 -abou 64201 -abound 57160 -abounds 60670 -about 27078 -aboutV 64905 -abouts 64201 -above 35469 -aboveground 61472 -abovementioned 60000 -abr 60762 -abraded 62762 -abraham 59227 -abrasion 55738 -abrasions 61584 -abrasive 54005 -abrasives 63077 -abrazo 64657 -abreast 57238 -abridge 65170 -abridged 60952 -abridgedepisode 64201 -abril 59923 -abroad 47943 -abrogated 61362 -abrogation 65170 -abrupt 54226 -abruptio 63792 -abruptly 55604 -abs 55060 -abscess 55631 -abscesses 60157 -abscisic 63601 -abscissa 62917 -absence 42621 -absences 57609 -absent 48619 -absentee 55793 -absenteeism 60580 -absinthe 63991 -absolute 44643 -absolutely 43352 -absolutley 58162 -absolutly 59923 -absolve 65452 -absolved 64201 -absorb 50686 -absorbable 61818 -absorbance 52584 -absorbed 48933 -absorbency 62613 -absorbent 56140 -absorber 58365 -absorbers 59774 -absorbing 51700 -absorbs 55448 -absorptiometry 62196 -absorption 44800 -absorptions 64423 -absorptive 59923 -abstain 60157 -abstained 65452 -abstaining 63991 -abstention 65452 -abstinence 56827 -abstract 42180 -abstracted 58065 -abstracting 63245 -abstraction 54581 -abstractions 60856 -abstracts 49777 -abstractsView 61152 -absurd 54792 -absurdities 64657 -absurdity 60762 -absurdly 63601 -abt 52107 -abu 59774 -abundance 48126 -abundances 57009 -abundant 48991 -abundantly 56756 -abuse 42050 -abused 50873 -abuser 62196 -abusers 58417 -abuses 54601 -abusing 56293 -abusive 49038 -abut 55423 -abutment 61051 -abuts 61472 -abutting 57199 -abuzz 64423 -abv 64657 -aby 63245 -abysmal 61051 -abyss 57696 -abyssinica 60238 -ac 48135 -aca 63991 -acacia 65170 -academia 57238 -academic 42339 -academically 57566 -academics 53211 -academies 61584 -academy 52686 -acai 61818 -acapella 63991 -acc 58688 -accede 65452 -acceding 64657 -accelerate 50991 -accelerated 50136 -accelerates 55604 -accelerating 53361 -acceleration 49113 -accelerations 60762 -accelerator 53271 -accelerators 60078 -accelerometer 60078 -accelerometers 62613 -accent 51140 -accented 56452 -accents 54226 -accentuate 60238 -accentuated 58417 -accentuates 63601 -accept 40558 -acceptability 57238 -acceptable 45638 -acceptably 64201 -acceptance 41855 -acceptances 61362 -accepted 41063 -accepting 47262 -acceptor 54924 -acceptors 59164 -accepts 46862 -acces 64201 -accesible 65170 -accesories 60580 -access 34272 -accessArchitecture 65170 -accessable 63419 -accessed 47431 -accesses 55299 -accessibility 48182 -accessible 44218 -accessing 48038 -accession 52509 -accessions 57876 -accesskey 62917 -accessories 43258 -accessory 49141 -accident 45461 -accidental 51610 -accidentally 50750 -accidently 58212 -accidents 49440 -acclaim 57358 -acclaimed 51425 -acclimate 62613 -acclimated 64423 -acclimation 60856 -accolade 62613 -accolades 58162 -accom 65170 -accommodate 46566 -accommodated 54622 -accommodates 55552 -accommodating 55323 -accommodation 44851 -accommodations 50074 -accommodative 64423 -accomodate 56899 -accomodating 62613 -accomodation 56935 -accomodations 61152 -accompanied 45711 -accompanies 55226 -accompaniment 57785 -accompaniments 63601 -accompanist 65452 -accompany 50469 -accompanying 47107 -accomplice 62613 -accomplices 65170 -accomplish 48345 -accomplished 46739 -accomplishes 59039 -accomplishing 56518 -accomplishment 54902 -accomplishments 52818 -accord 50791 -accordance 41577 -accorded 56862 -according 37052 -accordingly 53226 -accordion 57399 -accords 59164 -accosted 63601 -account 34032 -account's 61584 -accountabilities 63245 -accountability 50343 -accountable 51963 -accountancy 59424 -accountant 53762 -accountants 56518 -accounted 48633 -accounting 44974 -accountng 63991 -accounts 43174 -accoustic 65452 -accrediation 65452 -accredit 64423 -accreditation 49268 -accreditations 63601 -accredited 48377 -accrediting 60492 -accredits 64657 -accreting 63601 -accretion 57653 -accross 58745 -accrual 58979 -accruals 61256 -accrue 56756 -accrued 53917 -accrues 62066 -accruing 60321 -acct 64201 -acculturation 64905 -accumbens 61256 -accumsan 64423 -accumulate 52423 -accumulated 49578 -accumulates 55578 -accumulating 55448 -accumulation 46643 -accumulations 60238 -accumulator 58745 -accumulators 65170 -accupril 64423 -accuracies 61940 -accuracy 40765 -accurate 41793 -accurately 47050 -accusam 61051 -accusation 58113 -accusations 54643 -accuse 55711 -accused 46534 -accuser 62196 -accuses 55877 -accusing 55849 -accustomed 53899 -accutane 57160 -acdc 59424 -acdsee 60078 -ace 51590 -aceboy 63245 -acellular 60078 -aceon 65170 -acer 55684 -acerbic 63991 -acerca 64905 -aces 59227 -acess 63991 -acetabular 57609 -acetabulum 61940 -acetal 61256 -acetaldehyde 60952 -acetalization 63991 -acetaminophen 57399 -acetate 48746 -acetates 62066 -acetazolamide 64657 -acetic 51434 -acetobutylicum 61472 -acetone 53796 -acetonide 63077 -acetonitrile 55793 -acetophenone 64201 -acetyl 56110 -acetylated 57609 -acetylation 58417 -acetylcholine 55684 -acetylcholinesterase 61256 -acetylene 61051 -acetyltransferase 60670 -ach 62613 -achat 64201 -ache 56140 -acheive 63245 -aches 56080 -acheter 63419 -achievable 54969 -achieve 41206 -achieved 42678 -achievement 47420 -achievements 49547 -achiever 64201 -achievers 62469 -achieves 52327 -achieving 46446 -aching 57278 -achromatic 60762 -acid 38656 -acide 60670 -acidic 50615 -acidification 57440 -acidified 58919 -acidity 54078 -acidophilus 59848 -acidosis 58313 -acids 44774 -acinar 59630 -acinomae 64201 -aciphex 60238 -ack 62196 -acknowledge 46315 -acknowledged 48524 -acknowledgement 53796 -acknowledgements 61362 -acknowledges 51415 -acknowledging 54706 -acknowledgment 56200 -acl 62762 -acme 60157 -acne 49285 -acoder 60762 -acomplia 56518 -acon 63991 -acorn 57566 -acorns 63601 -acount 63792 -acoustic 46304 -acoustical 59424 -acoustically 62762 -acoustics 58919 -acperkins 64905 -acpi 64905 -acquaint 60405 -acquaintance 56170 -acquaintances 57785 -acquainted 54969 -acquiescence 64657 -acquire 47090 -acquired 44428 -acquirer 60762 -acquires 53392 -acquiring 50591 -acquis 65452 -acquisition 44472 -acquisitions 52399 -acquit 64423 -acquittal 62196 -acquitted 58113 -acre 49770 -acreage 55323 -acres 45725 -acridine 61256 -acrimonious 65452 -acrobat 54188 -acrobatic 62469 -acrobatics 65170 -acromegaly 63991 -acronis 63419 -acronym 56140 -acronyms 58745 -acrosomal 64423 -acrosome 63792 -across 36547 -acrylamide 57785 -acrylate 57876 -acrylic 50178 -acrylics 63601 -acrylodan 64423 -acrylonitrile 58417 -acs 63419 -act 40886 -act's 58017 -actaully 64657 -acted 49076 -acter 64423 -acteristic 63245 -acteristics 61362 -acterized 62762 -acteurs 64657 -actin 52096 -acting 44208 -actinic 59560 -actinomycetemcomitans 63077 -actinomycin 59357 -action 36603 -actionable 59039 -actionext 60762 -actions 42279 -actionscript 61699 -activate 46154 -activated 45613 -activates 52725 -activating 52648 -activation 42619 -activations 61362 -activator 53533 -activators 59357 -active 38660 -activeTechPros 65170 -actively 46531 -activerain 65452 -actives 65170 -activewear 63792 -activex 63077 -activin 58745 -activision 60856 -activism 55604 -activist 51985 -activists 51052 -activites 60952 -activities 38200 -activity 36243 -actor 46787 -actor's 55107 -actors 46941 -actos 59848 -actrees 65452 -actress 47603 -actresses 54992 -acts 44015 -actual 40395 -actuality 61699 -actually 37709 -actuals 65452 -actualy 61051 -actuarial 55849 -actuary 58802 -actuatable 64905 -actuate 62469 -actuated 56827 -actuating 57199 -actuation 56935 -actuator 51434 -actuators 55821 -actuelle 65452 -acuerdo 64201 -acuity 56452 -acumen 59923 -acuminate 62613 -acupressure 64201 -acupuncture 53533 -acura 62469 -acutally 65170 -acute 42838 -acutely 56687 -acutiloba 63792 -acyclic 59702 -acyclovir 56356 -acyl 54727 -acylated 64905 -acylation 63792 -ad 39242 -ad's 63792 -adCast 53167 -adCenter 60321 -ada 59164 -adage 60856 -adalah 64657 -adalat 64657 -adam 53917 -adam's 64905 -adamant 58802 -adamantane 63991 -adamantly 63245 -adams 57358 -adapt 49353 -adaptability 59039 -adaptable 56231 -adaptation 48261 -adaptations 54622 -adapted 45770 -adapter 47143 -adapters 53271 -adapting 53934 -adaption 62469 -adaptive 48234 -adaptively 62917 -adaptivity 62613 -adaptor 54151 -adaptors 59848 -adapts 57278 -adaxial 65170 -adc 63991 -add 32805 -addGroupMembers 64423 -addInternetCertificateToUser 64423 -addNewLine 65452 -addRole 62762 -addServerToCluster 64423 -adda 65170 -added 35077 -addendum 58017 -adder 57524 -adderall 53899 -adders 62613 -addi 62917 -addict 54643 -addicted 51482 -addicting 59923 -addiction 49251 -addictions 58313 -addictive 52765 -addicts 56518 -addin 62469 -adding 38255 -addition 38635 -additional 36692 -additionally 52712 -additions 48624 -additive 50522 -additives 53454 -additivity 62613 -addlestone 64905 -addline 63077 -addon 57046 -addons 57524 -addr 63792 -addres 63245 -address 35556 -addressable 61152 -addressed 44681 -addressee 65452 -addresses 42981 -addressing 47496 -adds 44560 -adduced 62331 -adduct 54792 -adduction 59848 -adductor 65452 -adducts 57440 -addy 60157 -ade 62196 -adel 65452 -adelaide 63077 -adelante 64423 -adele 64657 -ademas 65452 -adenine 55373 -adenocarcinoma 55348 -adenocarcinomas 61584 -adenoid 62917 -adenoma 58113 -adenomas 58523 -adenomatous 59848 -adenosine 51580 -adenoviral 60238 -adenovirus 55526 -adenylate 57009 -adenylyl 63601 -adenylyltransferase 65452 -adept 56652 -adequacy 54207 -adequate 44482 -adequately 49285 -adgdragon 65452 -adhd 61818 -adhere 50439 -adhered 54114 -adherence 51670 -adherend 63792 -adherens 63419 -adherent 56485 -adherents 60078 -adheres 54969 -adhering 55793 -adhesin 63077 -adhesion 48629 -adhesions 59560 -adhesive 48327 -adhesively 62469 -adhesives 56324 -adi 62762 -adiabatic 58523 -adidas 49932 -adieu 64657 -adil 62331 -adios 65452 -adipex 52509 -adipiscing 57970 -adipocyte 60000 -adipocytes 58745 -adipogenesis 62762 -adiponectin 62762 -adipose 53581 -adiposity 59424 -adit 63991 -adj 59702 -adjacency 62613 -adjacent 43765 -adjective 55992 -adjectives 57399 -adjoining 51783 -adjoins 63419 -adjoint 59227 -adjourn 56935 -adjourned 53407 -adjournment 59848 -adjudged 62469 -adjudicate 62613 -adjudicated 58212 -adjudication 57009 -adjudications 65452 -adjunct 54749 -adjunctive 58470 -adjust 46566 -adjustDay 65452 -adjustHour 65452 -adjustMinute 64657 -adjustMonth 64905 -adjustSecond 64423 -adjustYear 64423 -adjustable 47420 -adjusted 45754 -adjuster 58919 -adjusters 61940 -adjusting 49168 -adjustment 46263 -adjustments 49246 -adjusts 54321 -adjuvant 53038 -adjuvants 62331 -adm 61818 -admin 44659 -admin's 62066 -administer 51095 -administered 45459 -administering 51942 -administers 56200 -administrador 63419 -administrated 62762 -administration 41753 -administration's 55631 -administrations 57923 -administrative 43970 -administratively 62331 -administrator 44211 -administrator's 62762 -administrators 47855 -admins 57696 -admirable 55934 -admirably 60321 -admiral 64201 -admiralty 63419 -admiration 55154 -admire 52423 -admired 54601 -admirer 59848 -admirers 60405 -admires 63077 -admiring 58065 -admissibility 60952 -admissible 54499 -admission 46575 -admissions 50560 -admit 46757 -admits 49770 -admittance 60405 -admitted 45789 -admittedly 57741 -admitting 54005 -admixed 63245 -admixing 65452 -admixture 57524 -admixtures 64201 -admonish 64905 -admonished 63245 -admonition 64201 -adn 61051 -adnexal 64201 -ado 62066 -adobe 46979 -adolescence 56791 -adolescent 51396 -adolescents 51078 -adopt 46141 -adoptable 61362 -adopted 43639 -adoptees 64905 -adopter 62196 -adopters 60157 -adopting 50439 -adoption 46323 -adoptions 59848 -adoptive 56518 -adopts 53095 -adorable 52051 -adorably 65452 -adoration 62469 -adore 55014 -adored 58688 -adores 63077 -adoring 60580 -adorn 59227 -adorned 56618 -adorning 63077 -adornment 65170 -adorns 61940 -adoro 64423 -adr 64423 -adrenal 51541 -adrenalectomized 64905 -adrenalectomy 64201 -adrenalin 62196 -adrenaline 55711 -adrenals 65170 -adrenergic 58860 -adrenoceptor 62762 -adrenocortical 60321 -adress 57566 -adresse 63991 -adressen 65170 -adresses 62066 -adriamycin 62196 -adrian 58802 -adriana 59491 -adrianna 63077 -adrienne 64905 -adrift 60952 -ads 41813 -adsense 55500 -adsl 63601 -adsorb 61584 -adsorbate 63601 -adsorbed 52085 -adsorbent 58113 -adsorbents 64201 -adsorbing 65452 -adsorbs 64657 -adsorption 48938 -adsorptive 62331 -adulation 64657 -adult 40188 -adult's 61256 -adulterous 64423 -adultery 58365 -adultes 65452 -adulthood 56721 -adults 43460 -adv 57318 -advan 64905 -advance 43202 -advanced 38623 -advancement 51920 -advancements 56485 -advances 47831 -advancing 51425 -advange 60580 -advantage 41479 -advantaged 61818 -advantageous 52899 -advantageously 57566 -advantages 45279 -advected 65452 -advection 62196 -advent 52546 -adventitia 62917 -adventitial 62613 -adventitious 63792 -adventure 46934 -adventurer 61472 -adventurers 61256 -adventures 50476 -adventuring 65170 -adventurous 54581 -adverb 61818 -adverbs 62762 -adversarial 59774 -adversaries 60078 -adversary 56388 -adverse 45386 -adversely 51312 -adversity 58745 -advert 51560 -advertise 44830 -advertised 49834 -advertisement 37568 -advertisements 48677 -advertiser 51909 -advertiser's 60670 -advertisers 45457 -advertises 58745 -advertising 41096 -advertisment 60000 -adverts 55821 -advice 39313 -advices 62762 -advil 64905 -adville 58313 -advisability 63991 -advisable 53847 -advise 47044 -advised 45562 -advisement 62066 -adviser 51899 -advisers 53392 -advises 53052 -advising 52303 -advisor 50416 -advisories 58262 -advisors 52805 -advisory 47947 -advocacy 50314 -advocate 49913 -advocated 53899 -advocates 50702 -advocating 54664 -adware 56262 -adword 63601 -adwords 57009 -ae 55178 -aeRO 62917 -aeajr 65170 -aedeagal 60321 -aedeagus 64201 -aegis 61051 -aegypti 64657 -aeolian 63792 -aerate 64657 -aerated 58979 -aeration 56170 -aerator 63991 -aerial 49821 -aero 59164 -aerobatic 61152 -aerobic 52805 -aerobically 63245 -aerobics 59424 -aerodynamic 56551 -aerodynamics 58802 -aeromedical 64905 -aeronautical 60000 -aeronautics 63991 -aeroplane 59848 -aeroplanes 65170 -aerosmith 63419 -aerosol 52791 -aerosolized 64657 -aerosols 57653 -aerospace 53470 -aeruginosa 56140 -aesculus 63991 -aesthetic 49423 -aesthetically 56899 -aesthetics 53917 -aestivum 63419 -aetiological 61584 -aetiology 59101 -af 52845 -afar 60856 -afb 63077 -afbeelding 63991 -afer 65452 -aferdita 64905 -aferguso 64905 -afew 63245 -aff 63792 -affable 62066 -affair 50553 -affaires 62331 -affairs 48101 -affect 41205 -affected 41839 -affecting 45972 -affection 54059 -affectionate 58470 -affectionately 60856 -affections 61256 -affective 53211 -affects 45424 -afferent 54727 -afferents 59292 -affiLDDL 64423 -affidavit 54380 -affidavits 59774 -affiliate 47342 -affiliated 44779 -affiliates 45540 -affiliation 51122 -affiliations 56485 -affine 55849 -affinities 57876 -affinity 48234 -affirm 53346 -affirmation 57482 -affirmations 63245 -affirmative 52648 -affirmatively 61051 -affirmatron 59923 -affirmed 53779 -affirming 57741 -affirms 58313 -affix 60670 -affixed 53196 -affixes 63792 -affixing 62196 -affliated 64201 -afflict 63419 -afflicted 57696 -affliction 60952 -afflictions 65170 -afflicts 62762 -affluence 64657 -affluent 54813 -afford 45515 -affordability 56518 -affordable 44018 -affordably 62762 -afforded 51670 -affording 58065 -affords 55037 -afforestation 63792 -affraid 65170 -affront 61818 -afghan 63077 -afghanistan 61940 -aficionado 63245 -aficionados 58979 -afield 62066 -afimbres 64201 -afin 64423 -afisk 63991 -aflatoxin 58470 -aflatoxins 64201 -afloat 59491 -afm 62762 -afoot 61362 -afore 64657 -aforementioned 51043 -aforesaid 56200 -afoul 62917 -afr 64657 -afraid 46076 -afresh 63792 -africa 53813 -african 53581 -africana 58860 -africanum 65170 -afro 63245 -afrtarget 65170 -aft 57160 -afta 64423 -after 30617 -aftercare 60000 -afterdischarge 62762 -afterglow 59039 -afterlife 61362 -afterload 62196 -aftermarket 53630 -aftermath 53301 -afternoon 45035 -afternoon's 62762 -afternoons 57696 -afterschool 65170 -aftershock 60762 -aftertaste 63991 -afterthought 64201 -afterward 56827 -afterwards 52387 -ag 54622 -aga 64905 -again 36986 -agains 63601 -against 34676 -agaist 65170 -agalactiae 60580 -agape 64905 -agar 51340 -agarose 51942 -agate 61152 -agatha 65452 -agave 64201 -age 37408 -aged 44569 -ageing 53454 -ageless 63077 -agement 58688 -agen 64423 -agencies 43442 -agency 42183 -agency's 53024 -agenda 46288 -agendas 55474 -agenesis 63991 -agent 41309 -agent's 57046 -agents 42203 -ager 63792 -agerhart 65452 -ages 44205 -agglomerated 63792 -agglomeration 61362 -agglomerative 63792 -agglutinated 65170 -agglutination 59101 -agglutinin 64423 -aggravate 59491 -aggravated 54560 -aggravates 64201 -aggravating 57741 -aggravation 61472 -aggregate 47811 -aggregated 53796 -aggregates 53346 -aggregating 59424 -aggregation 50750 -aggregations 62331 -aggregator 55793 -aggregators 60670 -aggression 52635 -aggressions 65452 -aggressive 47047 -aggressively 53970 -aggressiveness 60238 -aggressor 62469 -aggrieved 58523 -aggro 62066 -aghast 64657 -agi 63792 -agian 64905 -agile 55202 -agility 55474 -agin 64657 -aging 48122 -agitate 63077 -agitated 57923 -agitating 61256 -agitation 55963 -agitator 60856 -aglaw 63077 -agli 63601 -aglycone 65452 -agnostic 61584 -ago 31339 -agoView 63991 -agoflow 63792 -agonist 52509 -agonistic 63991 -agonists 53533 -agonizing 60856 -agony 56551 -agora 64905 -agoraphobia 61256 -agoraphobic 65170 -agosto 58919 -agp 65170 -agrarian 60952 -agree 38654 -agreeable 58802 -agreed 42153 -agreeing 49713 -agreement 39948 -agreements 46520 -agrees 46849 -agregar 62613 -agressive 61940 -agribusiness 61051 -agricola 65170 -agricultural 45666 -agriculture 48761 -agro 64423 -agroforestry 62196 -agrofuels 63991 -agronomic 61256 -aground 63601 -agua 58919 -aguas 65170 -aguilera 60580 -agus 55578 -agvicsa 64905 -ah 51942 -aha 61362 -ahah 64905 -ahaha 62917 -ahamster 65170 -ahbuss 64201 -ahd 64657 -ahead 42667 -ahearttowitness 63245 -ahh 59292 -ahhh 60157 -ahi 61152 -ahmed 61584 -ahold 61584 -ahora 58313 -ahorcado 65170 -ahr 64905 -ahve 61152 -ai 51570 -aid 42651 -aida 64905 -aide 53485 -aided 53153 -aides 54857 -aiding 55821 -aids 50046 -aig 55423 -aight 65170 -aiid 64201 -aiken 64905 -aikido 62196 -ail 59848 -aileron 63991 -ailing 54946 -ailment 61699 -ailments 56756 -ails 62613 -aim 43315 -aimbot 62613 -aime 64423 -aimed 45272 -aimee 63601 -aiming 51463 -aimless 62196 -aimlessly 64423 -aims 45488 -ain 61818 -ain't 47044 -ainda 64423 -ainsi 60405 -aint 50514 -aioe 63419 -air 37555 -airbag 59101 -airbags 58745 -airbender 62331 -airborne 52832 -airbrush 61818 -airbrushed 65452 -airbus 65170 -aircon 63792 -airconditioning 65452 -aircraft 45241 -aircraft's 62917 -aircrafts 61818 -aircrew 61940 -aire 62196 -aired 52899 -aires 62917 -airfare 54302 -airfares 57399 -airfield 59101 -airflow 55526 -airfoil 58065 -airframe 63077 -airgap 64657 -airing 55250 -airings 62613 -airless 64905 -airlift 60856 -airlifted 61699 -airline 46175 -airline's 61584 -airliner 61940 -airliners 63991 -airlines 50101 -airmail 61940 -airman 65170 -airmen 62469 -airplane 51043 -airplanes 55014 -airplay 61152 -airplus 62917 -airport 43428 -airport's 62469 -airports 50840 -airs 55906 -airship 60670 -airshow 65170 -airsoft 55657 -airspace 60238 -airspeed 63245 -airstrike 60856 -airstrip 62331 -airtight 60856 -airtime 59560 -airwaves 58523 -airway 50499 -airways 56200 -airworthiness 63245 -airy 56518 -aishwarya 61152 -aisle 54399 -aisles 56618 -ait 63792 -aj 59774 -aja 65170 -ajax 57009 -ajay 63245 -ajc 63077 -ajcMobile 63245 -ajcPets 63245 -ajcStore 63601 -ajdt 64905 -ajith 65452 -ak 57084 -aka 44869 -akan 62331 -ake 63792 -akg 63245 -aki 61584 -akin 54459 -akira 64905 -ako 56827 -akon 57122 -aku 60670 -al 41936 -ala 57785 -alaTest 61256 -alabama 58065 -alabaster 64423 -aladdin 62613 -alam 62613 -alameda 64657 -alamethicin 64905 -alamo 64657 -alan 55250 -alanine 55963 -alanis 64201 -alannah 62331 -alarm 46457 -alarmed 58577 -alarming 55037 -alarmingly 64201 -alarms 52007 -alas 61256 -alaska 58632 -alata 60492 -alba 57785 -alban 63601 -albania 57741 -albanian 58212 -albanians 63601 -albanien 64905 -albany 63792 -albedo 62469 -albeit 51963 -albendazole 65452 -albert 57566 -alberta 59424 -albgaleria 64905 -albicans 56324 -albino 57524 -albuginea 64905 -album 40384 -album's 57741 -albumen 60670 -albumin 51257 -albuminuria 60321 -albums 44125 -albuquerque 61152 -albus 63419 -albuterol 59848 -alc 60078 -alchemical 64657 -alchemist 62469 -alchemy 62066 -alchohol 65452 -alcohol 43064 -alcoholic 50623 -alcoholics 58313 -alcoholism 55877 -alcohols 54439 -alcove 64423 -aldactone 64905 -aldara 63077 -aldehyde 56170 -aldehydes 57122 -alder 64423 -alderman 65452 -aldol 62331 -aldolase 60238 -aldose 65452 -aldosterone 58162 -ale 54770 -alec 63245 -alejandro 62613 -alendronate 61362 -alent 63245 -alert 42782 -alerted 52778 -alerting 56080 -alertness 60321 -alerts 41434 -ales 58417 -alesse 64201 -alessio 65452 -aleurone 65170 -aleve 62917 -alex 52351 -alex's 65452 -alexa 63991 -alexander 57785 -alexandra 61362 -alexis 60762 -alexlips 65170 -alexmnp 64905 -alfa 60321 -alfalfa 56110 -alfentanil 64905 -alfred 59923 -alfredo 62917 -alfresco 63792 -alga 61362 -algae 52534 -algal 56110 -algebra 50799 -algebraic 52496 -algebraically 65170 -algebras 55906 -algeria 65170 -alginate 57399 -alginic 62762 -algo 58262 -algorithm 43420 -algorithmic 57566 -algorithms 46514 -alguien 61256 -algun 64905 -alguna 63991 -algunas 63419 -algunos 63077 -alguns 65452 -ali 54459 -alia 60492 -alias 51856 -aliases 57318 -aliasing 63077 -alibi 63419 -alice 56452 -alicia 59292 -aliciakeys 64423 -alicyclic 63245 -alien 49173 -alienate 61584 -alienated 58577 -alienating 61152 -alienation 57009 -aliens 53196 -alight 60238 -align 52175 -aligned 48816 -aligning 56080 -alignment 47795 -alignments 57785 -aligns 59630 -alikadam 64657 -alike 51521 -alimentaire 63991 -alimentary 61362 -alimony 61051 -alin 60321 -aliphatic 53485 -aliquam 60952 -aliquip 63419 -aliquot 55877 -aliquoted 64201 -aliquots 54601 -aliquyam 60492 -alison 59292 -alittle 60580 -ality 63245 -alive 46995 -alization 65170 -alized 64905 -alk 65452 -alkali 53109 -alkaline 49240 -alkalinity 58017 -alkalinization 62762 -alkalis 65170 -alkaloid 59848 -alkaloids 59101 -alkalosis 63419 -alkane 62613 -alkanes 64657 -alkene 60762 -alkenes 62762 -alkenyl 61699 -alkoxide 65452 -alkoxy 59774 -alkoxylate 65452 -alkyd 60670 -alkyl 50662 -alkylated 59630 -alkylating 62066 -alkylation 60000 -alkylene 60952 -alkynyl 64905 -all 25522 -all's 62613 -alla 55084 -allah 61940 -allan 63245 -allantoic 63245 -allay 62917 -alld 65452 -alle 54399 -alleen 64657 -allegation 55448 -allegations 49913 -allege 57238 -alleged 46277 -allegedly 49274 -alleges 55154 -allegiance 56721 -allegiances 65452 -alleging 54302 -allegorical 61362 -allegory 61472 -allegra 59357 -allel 64201 -allele 50314 -alleles 52609 -allelic 58523 -allen 54499 -aller 62917 -allergen 58688 -allergenic 62469 -allergenicity 65170 -allergens 57696 -allergic 49505 -allergies 52534 -allergist 65170 -allergy 51017 -alles 58113 -alleviate 52686 -alleviated 58632 -alleviates 61256 -alleviating 55738 -alleviation 59630 -alley 54360 -alleys 59424 -alleyway 64657 -alleyways 65170 -alli 61152 -alliage 64657 -alliance 49979 -alliances 53662 -allied 52210 -allies 52521 -alligator 57160 -alligators 64657 -allison 61940 -alll 63601 -allmusic 65170 -allnurses 64201 -allo 61940 -allocate 52845 -allocated 48165 -allocates 58523 -allocating 55766 -allocation 47218 -allocations 54419 -allogeneic 56518 -allograft 53813 -allografts 56485 -allopathic 62331 -allopurinol 61152 -alloreactive 65452 -allosteric 58802 -allot 59774 -allotment 57440 -allotments 62917 -allotted 55084 -allover 64423 -allow 37932 -allowable 52927 -allowance 50522 -allowances 53830 -allowed 40070 -allowing 42032 -allows 38360 -alloxan 64423 -alloy 47592 -alloyed 62762 -alloying 58113 -alloys 49932 -allozyme 65452 -allready 60952 -alls 63077 -allsoftware 62613 -allstar 64905 -allstars 62196 -allt 64905 -alltel 59774 -allthis 60670 -alltime 64905 -allude 63245 -alluded 59164 -alludes 61818 -alluding 61362 -alluogi 64905 -allure 58470 -alluring 59164 -allusion 61472 -allusions 61152 -alluvial 58919 -allways 60238 -ally 51867 -allyl 60000 -allylic 58688 -allée 49417 -alma 57696 -almanac 60157 -almighty 59101 -almond 55906 -almonds 57358 -almost 37758 -alo 64423 -aloe 57831 -aloft 57970 -aloha 60492 -alone 41962 -along 36378 -alongside 47266 -alongwith 62331 -aloof 61362 -alopecia 61256 -alors 63245 -alot 46488 -aloud 55552 -alpaca 59774 -alpha 47153 -alphaWorks 64201 -alphabet 52584 -alphabetic 57399 -alphabetical 52051 -alphabetically 54226 -alphabets 62066 -alphadolone 61699 -alphanumeric 57653 -alphas 65452 -alpina 65170 -alpine 54946 -alpinus 64423 -alprazolam 54283 -alprostadil 62469 -alps 64905 -already 35411 -alrededor 64905 -alright 52339 -alrite 61256 -als 52280 -also 28568 -alt 53153 -alta 60580 -altace 60856 -altar 55684 -altars 65452 -alte 64423 -alten 65452 -alter 46986 -alteration 50726 -alterations 49097 -altercation 59774 -altered 46871 -altering 52303 -alternate 40156 -alternated 60405 -alternately 55963 -alternates 59227 -alternating 51330 -alternation 60670 -alternative 37922 -alternatively 53597 -alternatives 47976 -alternator 58577 -alters 54023 -altho 64657 -although 39395 -altima 62331 -altimeter 61051 -altimetry 63991 -altitude 51368 -altitudes 56972 -alto 56827 -altogether 53256 -altoid 60000 -altoids 58162 -alton 63601 -altos 62196 -altri 63991 -altruism 63245 -altruistic 61472 -altuna 64905 -alu 63245 -alum 59164 -alumina 53438 -aluminate 65452 -aluminium 49359 -aluminized 65452 -aluminosilicate 63792 -aluminum 45508 -alumna 64201 -alumnae 65170 -alumni 49809 -alumnus 60157 -alums 64905 -alveolar 51396 -alveoli 63077 -alvin 65452 -alway 62196 -always 35148 -alyssa 61362 -alzheimer's 64905 -am 31344 -amNY 54835 -amNewYork 62917 -ama 57831 -amacrine 60405 -amalgam 59039 -amalgamated 61256 -amalgamation 59424 -amanda 54622 -amano 63792 -amantadine 63601 -amarante 63419 -amaryl 63419 -amass 63419 -amassed 58802 -amassing 63419 -amateur 46437 -amateurish 64201 -amateurpixxx 55906 -amateurpixxx's 61584 -amateurs 54302 -amatuer 59101 -amature 59292 -amaze 57741 -amazed 50507 -amazement 61940 -amazes 60000 -amazin 63991 -amazing 42029 -amazingly 53211 -amazon 53899 -amb 59923 -ambassador 53052 -ambassadors 59039 -amber 52765 -ambiance 57122 -ambidextrous 64423 -ambien 48473 -ambience 55526 -ambient 48341 -ambiente 60580 -ambiguities 58802 -ambiguity 53899 -ambiguous 54321 -ambit 62066 -ambition 53882 -ambitions 55423 -ambitious 50461 -ambivalence 60856 -ambivalent 59774 -ambos 65452 -ambulance 52327 -ambulances 60580 -ambulatory 53882 -ambush 58417 -ambushed 61818 -amc 64905 -amd 57653 -ame 62196 -ameliorate 59774 -ameliorated 61584 -ameliorates 61818 -ameliorating 64423 -amelioration 63792 -ameloblasts 61152 -amen 63245 -amenable 55793 -amend 50321 -amended 46529 -amending 54399 -amendment 47511 -amendments 49157 -amends 56756 -amenities 48590 -amenity 54813 -amenorrhea 63601 -america 51415 -america's 61940 -american 47489 -americana 59164 -americans 57318 -americanum 62917 -americas 62613 -americascheer 63601 -ameristar 64201 -ames 65170 -amet 62917 -amethyst 60952 -amethystmegan's 64423 -amg 65452 -ami 57741 -amiable 61152 -amicable 61362 -amici 63245 -amicus 63077 -amid 49992 -amidase 61362 -amide 55992 -amides 61472 -amido 65170 -amidst 54419 -amiga 60238 -amigo 58523 -amigos 58417 -amills 65452 -amiloride 63601 -amin 64423 -amination 63792 -amine 53081 -amined 63419 -amines 56050 -amino 43353 -aminoacids 64905 -aminoglycoside 63991 -aminoguanidine 63077 -aminopeptidase 60952 -aminoplast 62331 -aminotransferase 60580 -amiodarone 63991 -amis 58523 -amish 62762 -amiss 63991 -amit 63601 -amitriptyline 58919 -aml 64905 -amlodipine 60670 -ammo 54770 -ammonia 52187 -ammonite 64657 -ammonium 49906 -ammount 62469 -ammunition 53712 -amnesia 60000 -amnesty 57923 -amniocentesis 65170 -amnion 62469 -amniotic 56356 -amo 55793 -amoeba 64201 -amoebic 65452 -amok 62331 -among 36693 -amongst 47011 -amor 54399 -amoral 63991 -amore 62196 -amorous 63077 -amorphization 64201 -amorphous 50087 -amortisation 65170 -amortization 57970 -amortized 60078 -amotio 64657 -amoung 64201 -amount 36957 -amounted 53392 -amounting 55963 -amounts 42555 -amour 61584 -amoxapine 63792 -amoxicillin 55323 -amoxil 59923 -amp 48552 -amp'd 62331 -amped 65452 -amperage 62066 -ampere 65170 -amphetamine 57084 -amphetamines 64657 -amphibian 59491 -amphibians 60856 -amphibious 60078 -amphibole 62469 -amphipathic 63601 -amphiphilic 59424 -amphipod 63991 -amphipods 64657 -amphitheater 63601 -amphitheatre 63991 -amphoteric 64423 -amphotericin 57785 -ampicillin 58802 -ample 50484 -amples 64201 -amplicon 64423 -amplicons 62917 -amplification 49325 -amplifications 63419 -amplified 49584 -amplifier 49022 -amplifiers 54519 -amplifies 61940 -amplify 55014 -amplifying 57741 -amplitude 46566 -amplitudes 52927 -amply 59630 -ampoule 63419 -ampoules 65170 -amps 54023 -ampules 63601 -amputated 62196 -amputation 58262 -amputations 64905 -amputees 64201 -amr 62469 -ams 63419 -amsterdam 59292 -amt 60856 -amulet 63077 -amuse 60000 -amused 55992 -amusement 54059 -amusements 63601 -amusing 53613 -amv 57482 -amy 53646 -amygdala 58860 -amygdaloid 65170 -amylase 57696 -amyloid 55274 -amyloidosis 60952 -amylopectin 62917 -amylose 61584 -amyotrophic 59164 -an 24433 -ana 55963 -anabolic 55766 -anachronistic 64423 -anaconda 63077 -anaemia 56652 -anaemic 64423 -anaerobic 52699 -anaerobically 63601 -anaesthesia 55500 -anaesthetic 56452 -anaesthetics 62762 -anaesthetised 62762 -anaesthetist 62613 -anaesthetized 60952 -anagem 65170 -anager 65452 -anagram 59357 -anagrams 65170 -anaheim 65170 -anal 45360 -analgesia 54902 -analgesic 55274 -analgesics 59292 -analingus 59227 -analog 47235 -analogies 60000 -analogous 51113 -analogously 62613 -analogs 54380 -analogue 51580 -analogues 55178 -analogy 52648 -analsex 63245 -analyse 50957 -analysed 48619 -analyser 59357 -analysers 63792 -analyses 44385 -analysing 53970 -analysis 36083 -analyst 48533 -analyst's 61256 -analysts 49044 -analyte 55934 -analytes 58017 -analytic 51415 -analytical 46675 -analytically 57009 -analytics 50357 -analyzation 65170 -analyze 46406 -analyzed 43715 -analyzer 53081 -analyzers 59923 -analyzes 52927 -analyzing 48692 -anamorphic 62469 -anaphase 62762 -anaphylactic 60321 -anaphylaxis 63077 -anaplastic 58860 -anarchic 64423 -anarchist 59848 -anarchists 61152 -anarchy 59292 -anastasia 63792 -anastomosed 65452 -anastomoses 62917 -anastomosis 56721 -anastomotic 60952 -anata 64657 -anathema 63245 -anatomic 53729 -anatomical 52118 -anatomically 59630 -anatomist 65170 -anatomy 50974 -anc 62196 -ance 53081 -anceps 65452 -ances 62613 -ancestor 54770 -ancestors 51721 -ancestral 55060 -ancestries 65170 -ancestry 57524 -anche 59039 -anchor 47318 -anchorage 59491 -anchored 54207 -anchoring 54857 -anchors 54519 -anchorwoman 59923 -anchovies 63991 -anchovy 63601 -ancient 44553 -ancients 62469 -ancillary 53662 -ancl 63077 -ancora 65170 -and 15473 -anda 58212 -andar 63601 -ander 64423 -andere 61940 -anderen 62469 -anders 63991 -anderson 54924 -andes 63601 -andi 64905 -andl 65452 -andlor 64905 -andorra 64201 -andre 59164 -andrea 58065 -andreas 53501 -andrei 64423 -andres 63077 -andrew 55348 -andrews 63077 -androgen 55202 -androgenic 59702 -androgens 60856 -android 58802 -androstenedione 65170 -ands 64423 -andthe 61256 -andy 54857 -ane 61472 -anecdotal 56585 -anecdote 61152 -anecdotes 57238 -anemia 53346 -anemic 60952 -anemone 63419 -anemones 65452 -anesthesia 51266 -anesthesiologist 61818 -anesthesiologists 64657 -anesthetic 54902 -anesthetics 59560 -anesthetist 63419 -anesthetized 54360 -anestrus 61472 -aneuploid 63991 -aneuploidy 63419 -aneurin 62917 -aneurysm 52399 -aneurysmal 61818 -aneurysmatic 65452 -aneurysms 53952 -anew 58919 -ang 52622 -ange 63245 -angel 48345 -angel's 63601 -angelIII 58688 -angela 59039 -angeles 54664 -angelic 59101 -angelica 62469 -angelina 56935 -angelique 63245 -angels 52141 -anger 49017 -angered 58162 -angers 63419 -angie 58632 -angielski 65170 -angigirl 64905 -angina 54643 -anginal 64423 -angioedema 65452 -angiogenesis 56050 -angiogenic 59774 -angiogram 60762 -angiograms 63991 -angiographic 57238 -angiographically 63991 -angiography 53847 -angioma 64657 -angioplasty 55274 -angiotensin 53830 -anglais 50292 -anglaise 60856 -angle 43423 -angled 54835 -angler 61699 -anglers 58017 -angles 48021 -angling 58979 -angolensis 63077 -angrily 59292 -angry 47725 -angst 58577 -angstroms 63419 -angsty 65170 -anguisette 60670 -anguish 58313 -angular 48816 -angularly 64201 -angulation 64657 -angulosa 64657 -angus 61152 -angustifolia 60405 -anh 63077 -anharmonic 59923 -anharmonicity 61584 -anhydrase 60492 -anhydride 55934 -anhydrides 64423 -anhydrous 54601 -ani 57741 -aniBOOM 58113 -anid 62469 -anil 63419 -aniline 62066 -anilingus 60000 -anima 63077 -animal 41489 -animal's 58113 -animale 61256 -animales 65170 -animals 41370 -animate 58162 -animated 48131 -animating 60580 -animation 46992 -animations 53533 -animator 59424 -animators 61584 -animaux 64905 -anime 47018 -animes 62066 -animosity 61051 -animus 63991 -anion 52686 -anionic 55604 -anions 55738 -anism 62762 -anisms 63991 -anisotropic 52886 -anisotropy 52982 -aniston 62613 -anita 60157 -anki 65170 -ankle 50129 -ankles 57524 -ankylosing 62331 -ankylosis 64905 -ankyrin 63077 -ann 55084 -anna 54133 -annals 62196 -annapolis 65170 -anne 54924 -anneal 61584 -annealed 52447 -annealing 50328 -annex 58017 -annexation 56862 -annexe 63601 -annexed 56356 -annexes 62066 -annexin 60856 -annexing 65170 -anni 62331 -annie 60405 -anniek 65170 -annihilate 63601 -annihilated 63245 -annihilating 65452 -annihilation 55631 -annilingus 60078 -anniversaire 64657 -anniversaries 61051 -anniversary 46769 -anno 61940 -annonce 63991 -annonces 61699 -annonseringer 63419 -annotate 58212 -annotated 53024 -annotating 62469 -annotation 54005 -annotations 55793 -announce 46865 -announced 40960 -announcement 47116 -announcements 46953 -announcer 58262 -announcers 62613 -announces 47126 -announcing 52062 -annoy 57046 -annoyance 58017 -annoyances 60405 -annoyed 54133 -annoying 49279 -annoyingly 64423 -annoys 58577 -annua 62917 -annual 39623 -annualized 57199 -annually 48600 -annuals 61940 -annuities 59774 -annuity 55992 -annular 52435 -annulment 64201 -annulus 57440 -annum 46468 -annuum 62762 -année 65170 -années 64423 -ano 59101 -anode 52954 -anodes 62613 -anodic 58979 -anodized 58113 -anodizing 64657 -anointed 61051 -anointing 63792 -anolyte 59424 -anomalies 52085 -anomalous 54078 -anomalously 63792 -anomaly 53182 -anomeric 63601 -anon 56021 -anonym 62469 -anonyme 64657 -anonymity 55992 -anonymous 45659 -anonymously 55060 -anor 64657 -anorectal 61584 -anorectic 64905 -anorexia 56827 -anorexic 60856 -anorgasmic 59923 -anos 60762 -another 33927 -another's 55552 -anounced 65452 -anoxia 63991 -anoxic 59357 -ans 56551 -ansaid 65170 -ansatz 62762 -ansehen 54581 -answer 38864 -answer's 61256 -answerable 64423 -answered 46189 -answerer 64423 -answering 48468 -answers 40921 -ant 51899 -antabuse 64423 -antacid 60580 -antacids 60856 -antagonism 56827 -antagonist 51406 -antagonistic 58262 -antagonists 52673 -antagonize 62762 -antagonized 62331 -antagonizes 63245 -antalya 62613 -antarctic 64423 -ante 55631 -anteater 62196 -antebellum 62762 -antecedent 58802 -antecedents 59923 -antecubital 62613 -antelope 63419 -antenatal 57653 -antenna 46514 -antennae 59774 -antennas 52074 -antepartum 64423 -anterior 46998 -anteriorly 60856 -anterograde 63792 -anterolateral 62613 -anteroposterior 62469 -anteroseptal 65452 -antes 60000 -anteversion 64657 -anthelmintic 65452 -anthem 55963 -anthems 62066 -anther 61940 -anthers 59357 -anthocyanin 65170 -anthocyanins 65170 -anthologies 61818 -anthology 54419 -anthony 55657 -anthonymacp 65452 -anthophyllite 62331 -anthracene 62762 -anthracis 62762 -anthracite 61256 -anthracnose 65452 -anthranilate 63245 -anthrax 55631 -anthropogenic 57046 -anthropological 57741 -anthropologist 58979 -anthropologists 58979 -anthropology 56110 -anthropometric 59774 -anthropomorphic 62331 -anthropos 61472 -anti 48677 -antiangiogenic 62331 -antiapoptotic 63419 -antiarrhythmic 61362 -antibacterial 54770 -antibacterials 63792 -antibiotic 50213 -antibiotics 50019 -antibodies 45182 -antibody 43790 -antic 64423 -anticancer 57831 -anticholinergic 60580 -antichrist 65170 -anticipate 51266 -anticipated 47649 -anticipates 56324 -anticipating 55849 -anticipation 53081 -anticipatory 58979 -anticlockwise 63792 -anticoagulant 57970 -anticoagulants 61818 -anticoagulated 62917 -anticoagulation 57970 -anticommunist 65170 -anticompetitive 64905 -anticonvulsant 60321 -antics 57741 -antidepressant 55552 -antidepressants 55500 -antidiabetic 63419 -antidiuretic 64905 -antidote 58417 -antidotes 64905 -antiemetic 60157 -antiemetics 65170 -antiepileptic 61940 -antiferromagnetic 58212 -antifreeze 61584 -antifungal 55423 -antifungals 63792 -antiga 63792 -antigen 46675 -antigenic 53779 -antigenically 63991 -antigenicity 63601 -antigens 49873 -antiguas 63991 -antihemophilic 64423 -antihistamine 63991 -antihistamines 61256 -antihypertensive 56452 -antiinflammatory 61051 -antimalarial 58470 -antimicrobial 51721 -antimicrobials 65170 -antimitotic 64905 -antimony 59491 -antimycobacterial 64201 -antineoplastic 61699 -antineutrophil 65452 -antinociceptive 62469 -antinori 64657 -antinuclear 62762 -antioxidant 51711 -antioxidants 54727 -antioxidative 63991 -antiparallel 59560 -antipathy 64201 -antipersonnel 61051 -antiphospholipid 61818 -antiplatelet 60321 -antipneumococcal 65452 -antiproliferative 60492 -antipsychotic 58017 -antipsychotics 58313 -antiquarian 60952 -antiquated 59424 -antique 49196 -antiqued 65170 -antiques 54041 -antiquities 61152 -antiquity 59560 -antireflux 61152 -antiretroviral 55711 -antirheumatic 64905 -antisense 51985 -antiseptic 59039 -antisera 56231 -antiserum 52858 -antisite 65452 -antisocial 56324 -antispam 62762 -antispyware 61699 -antistatic 64905 -antisymmetric 62469 -antitank 63245 -antiterrorism 64657 -antithesis 61699 -antithetical 63245 -antithrombin 62762 -antithrombogenic 65170 -antithrombotic 61152 -antithyroid 65452 -antitrust 53830 -antituberculous 64657 -antitumor 56293 -antivenom 63419 -antiviral 53549 -antivirus 49999 -antiwar 61362 -antlers 61051 -anton 64657 -antonio 57009 -antowan 61472 -antral 61472 -antrum 64201 -ants 54226 -anu 64201 -anuj 61152 -anuragrulz 64905 -anus 55992 -anvil 57741 -anwar 65170 -anxieties 59702 -anxiety 47160 -anxious 51721 -anxiously 59560 -any 28076 -anybody 46566 -anybody's 62331 -anydvd 64423 -anyhow 62196 -anymore 49308 -anyon 63991 -anyone 37414 -anyone's 54341 -anyones 62066 -anyplace 62613 -anythin 64423 -anything 38030 -anytime 47123 -anyway 48519 -anyways 54380 -anywhere 43348 -anzeigen 51531 -anónimo 65170 -ao 53392 -aoc 64423 -aod 64905 -aoe 64423 -aogier 63419 -aol 57009 -aorta 53256 -aortas 61818 -aortic 48776 -aortocaval 63991 -aos 63601 -aout 65170 -ap 55934 -apa 62469 -apache 56170 -apap 58313 -apart 45035 -apartament 65452 -apartamentos 56231 -apartheid 57009 -apartment 43695 -apartments 43506 -apathetic 62196 -apathy 59424 -apatite 59164 -apatites 65452 -apc 59227 -apd 65452 -ape 57046 -apeiron 64201 -apenas 64905 -aperitif 65452 -apertura 65170 -aperture 50108 -apertures 56080 -apes 58523 -apex 52778 -apheresis 64657 -aphex 61699 -aphid 58577 -aphids 58017 -aphrodisiac 63991 -api 54560 -apical 50227 -apically 62917 -apices 62917 -apie 64905 -apiece 61472 -apis 64657 -aplasia 61051 -aplastic 60856 -aplenty 64423 -aplicacions 65170 -apnea 55578 -apnoea 62917 -apo 56324 -apoE 62613 -apocalypse 59774 -apocalyptic 60157 -apocrine 57084 -apodeme 63792 -apogee 62331 -apoio 60157 -apolipoprotein 57741 -apolitical 63991 -apollo 54879 -apologetic 62066 -apologetics 64201 -apologies 54226 -apologise 56551 -apologised 60762 -apologises 59923 -apologising 61818 -apologist 64905 -apologists 61472 -apologize 51078 -apologized 56652 -apologizes 57923 -apologizing 62066 -apology 53796 -apoptosis 48687 -apoptotic 52661 -apostle 60952 -apostles 60856 -apostolic 63419 -apostrophe 61256 -app 46269 -appalled 59774 -appalling 57923 -apparantly 63601 -apparatus 44041 -apparatuses 62613 -appareils 63792 -apparel 50150 -apparent 44484 -apparently 44426 -apparition 62762 -appartment 64657 -appeal 43273 -appealed 52899 -appealing 50484 -appeals 48084 -appear 37877 -appearance 43747 -appearanceForm 61256 -appearances 50873 -appeared 42069 -appearence 62917 -appearing 46631 -appears 39945 -appease 59923 -appeasement 64905 -appellant 52303 -appellant's 56899 -appellants 58745 -appellate 53695 -appellation 62917 -appellee 61584 -appellee's 63792 -appellees 64905 -append 56452 -appendDocLink 65452 -appendRTItem 65452 -appendTable 65452 -appendToTextList 65452 -appendage 58745 -appendages 59923 -appendectomy 64905 -appended 53899 -appendices 59164 -appending 62331 -appendix 53865 -appendixes 65170 -appends 63245 -appetite 52141 -appetites 60405 -appetizer 57785 -appetizers 58365 -applaud 56791 -applauded 58162 -applauding 63419 -applauds 61818 -applause 57046 -apple 45792 -apple's 64905 -apples 52435 -applesauce 63601 -applet 55178 -applets 59702 -appliance 49986 -appliances 48692 -applicability 53182 -applicable 42872 -applicant 45809 -applicant's 52496 -applicants 47385 -application 36466 -application's 59630 -applications 39036 -applicator 56652 -applicators 61362 -applied 39395 -applies 44759 -applique 61152 -apply 39217 -applying 43964 -appoint 50991 -appointed 44716 -appointee 61256 -appointees 61699 -appointing 56293 -appointment 45537 -appointments 50379 -appoints 54902 -apportion 65170 -apportioned 59292 -apportioning 65170 -apportionment 60762 -apposed 62917 -apposite 65170 -apposition 63419 -appraisal 50823 -appraisals 57199 -appraise 60762 -appraised 58017 -appraiser 57566 -appraiser's 65452 -appraisers 61051 -appraising 64905 -appreciable 54727 -appreciably 58065 -appreciate 43772 -appreciated 48970 -appreciates 55963 -appreciating 58577 -appreciation 48243 -appreciations 64905 -appreciative 57566 -apprehend 61256 -apprehended 59923 -apprehension 58979 -apprehensions 64423 -apprehensive 59848 -apprendre 63245 -apprentice 57084 -apprenticed 64657 -apprentices 59702 -apprenticeship 56356 -apprenticeships 62066 -appressorium 65452 -apprised 62613 -approach 38256 -approachable 60856 -approached 48975 -approaches 43768 -approaching 49113 -approbation 65452 -approche 64905 -appropiate 65170 -appropriate 38644 -appropriated 55448 -appropriately 49670 -appropriateness 55711 -appropriates 64423 -appropriating 61051 -appropriation 53581 -appropriations 55526 -approval 43110 -approvals 54360 -approve 46079 -approveDeletePersonInDirectory 64423 -approveDeleteServerInDirectory 64201 -approveDesignElementDeletion 64423 -approveMailFileDeletion 64423 -approveMovedReplicaDeletion 64423 -approveNameChangeRetraction 64423 -approveRenamePersonInDirectory 64423 -approveRenameServerInDirectory 64423 -approveReplicaDeletion 63991 -approveResourceDeletion 64423 -approved 40443 -approves 51434 -approving 53052 -approx 52648 -approximant 63419 -approximate 47413 -approximated 53501 -approximately 39754 -approximates 58745 -approximating 57970 -approximation 47714 -approximations 54727 -apps 49906 -appt 62917 -appurtenances 62762 -appz 62331 -apr 58262 -apraxia 64905 -aprender 65452 -apricot 58979 -apricots 64657 -april 54560 -apriliaforum 62469 -apron 57970 -aprons 59923 -apropos 63419 -aprotic 64657 -aprotinin 63077 -aprox 64423 -après 61472 -aps 62613 -apt 53226 -aptitude 56050 -aptly 57160 -apts 63792 -apy 60580 -aq 58632 -aqme 63991 -aqua 55448 -aquaculture 57923 -aquamarine 64905 -aquaporin 65452 -aquaporins 64905 -aquaria 61584 -aquarium 53124 -aquariums 60157 -aquarius 64423 -aquatic 50192 -aquatics 65452 -aqueduct 63419 -aqueous 46529 -aqui 57278 -aquifer 55578 -aquifers 61362 -aquifolium 65452 -aquilinum 64905 -aquired 61472 -aquirium 63991 -aquí 59164 -ar 49505 -arXiv 57318 -ara 60157 -arab 55373 -arabe 64423 -arabia 62762 -arabian 63792 -arabic 55348 -arabicum 63077 -arabicus 63245 -arabika 61584 -arable 57199 -arabs 64657 -arachidonate 63601 -arachidonic 56935 -arachnoid 65452 -aragonite 65170 -aramid 64905 -arate 65170 -aration 64201 -arava 63601 -arbiter 62613 -arbitrage 59164 -arbitrarily 53565 -arbitrariness 63601 -arbitrary 47399 -arbitrate 60856 -arbitration 51650 -arbitrator 55250 -arbitrator's 62066 -arbitrators 60238 -arbor 61152 -arboretum 65170 -arbour 63245 -arbre 65452 -arc 49070 -arcade 51482 -arcades 62762 -arcane 58212 -arcanium 63792 -arch 50694 -archaeal 58212 -archaeobotanical 65452 -archaeological 52927 -archaeologist 60157 -archaeologists 57524 -archaeology 57238 -archaeon 63601 -archaic 58470 -archangel 63245 -archbishop 61699 -archdiocese 64201 -arched 57566 -archeological 60157 -archeologist 64905 -archeologists 64423 -archeology 63792 -archer 61472 -archers 61940 -archery 57278 -arches 56721 -archetypal 59774 -archetype 59164 -archetypes 64423 -archicad 64905 -arching 63991 -archipelago 59491 -architect 50654 -architect's 64423 -architected 64201 -architects 52521 -architectural 48199 -architecturally 62469 -architecture 44440 -architectures 53565 -archival 52472 -archive 42777 -archived 49511 -archives 45172 -archiving 54439 -archivist 62331 -archivists 61256 -archivo 57399 -archivos 65452 -archuleta 64905 -archway 61584 -arcing 63245 -arcmin 62762 -arcs 57318 -arcsec 61584 -arctic 56899 -arcuate 57524 -ard 59292 -arddull 63991 -ardent 58688 -ards 65452 -arduous 59491 -are 22453 -area 33582 -area's 53153 -areal 60492 -areas 37339 -aren't 41778 -aren'ta 65452 -arena 49946 -arenas 58523 -arene 64423 -arent 54902 -areola 64423 -areonautica 63419 -ares 60492 -arg 58802 -argentina 58417 -argentino 64423 -argh 65452 -arginine 55250 -argo 64201 -argon 54499 -args 60492 -arguable 63245 -arguably 52484 -argue 46432 -argued 47167 -arguement 62331 -argues 48122 -arguing 51502 -argument 43924 -argumentation 63792 -argumentative 63419 -arguments 47474 -argyle 61362 -ari 63601 -aria 59774 -arias 62917 -aricept 63792 -arid 53779 -ariel 61940 -arielplain 63991 -aries 60078 -arimidex 63792 -arise 46963 -arisen 53899 -arises 49726 -arising 45112 -aristobrat 65452 -aristocracy 62613 -aristocrat 64201 -aristocratic 58860 -aristocrats 62469 -arithmetic 52996 -arithmetical 63245 -arizona 55226 -ark 59039 -arkanoid 64423 -arkansas 58162 -arlene 64201 -arlington 60492 -arm 44287 -arm's 60670 -armada 62469 -armadillo 63077 -armageddon 65452 -armament 62196 -armaments 62917 -armani 59491 -armature 60405 -armbar 65170 -armchair 60000 -armed 47851 -armedtotheteeth 64423 -armenia 63245 -armhole 63991 -armies 55299 -arming 63991 -armoire 65170 -armor 51131 -armored 57696 -armorial 65170 -armors 65452 -armory 60856 -armour 57482 -armoured 60078 -armpit 58365 -armpits 56935 -armrest 60492 -arms 44479 -armstrong 63245 -army 45912 -army's 63245 -arn't 63419 -arnold 58523 -arnoldwiliem 65170 -arnt 63245 -aro 60762 -aroma 54459 -aromas 57923 -aromatase 59848 -aromatherapy 58065 -aromatic 49070 -aromatics 61584 -arora 61818 -arose 52198 -around 33747 -arousal 56862 -arouse 59164 -aroused 56585 -arouses 62917 -arousing 62917 -arp 61940 -arpecop 62469 -arr 61818 -arraigned 60670 -arraignment 61152 -arrancones 63792 -arrange 47252 -arranged 45241 -arrangement 45567 -arrangements 45515 -arranger 61051 -arranges 57160 -arranging 53138 -array 43408 -arrayed 60670 -arrays 50439 -arrears 56721 -arrest 47005 -arrested 45147 -arrester 65170 -arresting 57653 -arrests 53331 -arrhythmia 58745 -arrhythmias 57278 -arrhythmogenic 63245 -arriba 61152 -arrival 46318 -arrivals 53038 -arrive 46138 -arrived 44473 -arrives 48741 -arriving 49173 -arrogance 57923 -arrogant 55766 -arrose 65170 -arround 63245 -arrow 44282 -arrowhead 61584 -arrowheads 61256 -arrows 50213 -arroyo 64905 -ars 62917 -arse 56827 -arsed 63601 -arsenal 55323 -arsenals 65452 -arsenate 62469 -arsenic 54813 -arsenite 65452 -arsine 61051 -arson 57653 -art 38297 -art's 63991 -arte 59630 -artefact 62613 -artefacts 57831 -artemisinin 64905 -arterial 47133 -arteries 49972 -arteriography 64201 -arteriolar 61472 -arteriole 63245 -arterioles 58632 -arteriosclerosis 64201 -arteriosus 65452 -arteriovenous 55684 -arteritis 63792 -artery 45590 -artesian 63991 -artform 65452 -artful 60492 -artfully 62066 -artgallerys 65452 -arthouse 65170 -arthralgia 60321 -arthritic 60321 -arthritis 49645 -arthropathy 64201 -arthroplasty 58212 -arthropod 60952 -arthropods 60405 -arthroscopic 58632 -arthroscopy 59848 -arthur 60580 -artichoke 60078 -artichokes 63077 -article 31758 -article's 58313 -articleSend 61152 -articles 34281 -articular 56140 -articulate 53662 -articulated 54341 -articulates 61256 -articulating 57609 -articulation 56721 -articulations 65170 -articulatory 62066 -artifact 54360 -artifacts 52029 -artifical 63991 -artifice 64423 -artificial 46815 -artificially 54078 -artigo 65170 -artikel 60952 -artillery 56485 -artisan 58632 -artisanal 62762 -artisans 58065 -artist 42575 -artist's 51087 -artista 62613 -artistas 63601 -artiste 63601 -artistes 61472 -artistic 47748 -artistically 60952 -artistry 58577 -artists 42061 -artnet 52739 -artnet's 64657 -arto 63419 -arts 43311 -artsandhumanities 63601 -artsy 60238 -artwork 48431 -artworks 56170 -arty 61051 -artículo 64423 -artículos 65170 -aruba 63077 -aruda 63792 -arudha 63419 -arugula 63601 -arundel 65452 -arvana 63991 -ary 56324 -aryl 55037 -as 22868 -asa 58860 -asad 63991 -asain 62917 -asamp 62066 -asap 57876 -asathecomic 63245 -asbestos 47431 -asbestosis 57831 -asc 57609 -ascarid 62196 -ascend 59560 -ascendancy 63077 -ascended 60321 -ascending 49405 -ascends 64657 -ascension 60952 -ascent 57440 -ascertain 49777 -ascertained 56585 -ascertaining 60856 -ascertainment 63077 -ascetic 64201 -ascii 61362 -ascites 58162 -ascitic 61051 -ascorbate 61699 -ascorbic 55552 -ascospore 64657 -ascospores 60670 -ascribe 60492 -ascribed 54439 -ascribes 65170 -asd 65452 -asdf 64905 -ase 60321 -aseptic 58919 -aseptically 62613 -asexual 58802 -asf 61940 -ash 50514 -ashamed 54078 -ashampoo 61362 -ashanti 63991 -ashburnham 63077 -ashes 54992 -asheville 62917 -ashlar 65452 -ashlee 63601 -ashley 54581 -ashlynn 64423 -ashore 57741 -ashram 64905 -ashton 65170 -ashtray 65452 -ashwagandha 64657 -asi 56140 -asia 54992 -asian 47725 -asians 59491 -asics 64905 -aside 47335 -asides 63419 -asimov 63077 -asistencia 64657 -ask 38424 -asked 38308 -asker 62613 -askin 64905 -asking 42895 -asks 46654 -askville 53813 -asl 63792 -asleep 51660 -aslo 63245 -asm 63245 -asp 58212 -asparagine 63245 -asparagus 58577 -aspartate 59101 -aspartic 60238 -aspect 43808 -aspects 41729 -aspen 58688 -aspera 63245 -aspergillosis 60580 -asphalt 52927 -asphaltene 63419 -aspheric 63601 -aspherical 64905 -asphyxia 61818 -asphyxiation 57923 -aspirant 63601 -aspirants 63245 -aspirate 62613 -aspirated 57046 -aspiration 53361 -aspirations 53377 -aspire 55107 -aspired 63245 -aspires 59292 -aspirin 52622 -aspiring 53988 -asprin 65170 -aspx 59848 -ass 43857 -assailant 63419 -assailants 64423 -assailed 62196 -assassin 59292 -assassinate 59227 -assassinated 59560 -assassination 54479 -assassinations 64201 -assassins 59923 -assault 48586 -assaulted 54792 -assaulting 58417 -assaults 56791 -assay 45264 -assayed 51511 -assaying 61051 -assays 48877 -assed 61584 -assemblage 56827 -assemblages 56110 -assemble 51909 -assembled 48501 -assembler 58632 -assemblers 64201 -assembles 59923 -assemblies 52280 -assembling 54643 -assembly 43327 -assent 59923 -assert 52096 -asserted 52622 -asserting 56518 -assertion 52256 -assertions 55631 -assertive 59560 -assertiveness 64905 -asserts 53286 -asses 54813 -assess 44117 -assessable 59101 -assessed 44470 -assesses 54479 -assessing 47943 -assessment 41385 -assessments 48985 -assessor 57084 -assessors 59292 -asset 46242 -asset's 64657 -assets 44226 -asshole 54770 -assholes 58979 -assign 48866 -assignable 60321 -assigned 42932 -assignee 59227 -assigning 52699 -assignment 46896 -assignments 49382 -assigns 53501 -assimilate 59774 -assimilated 58979 -assimilates 64201 -assimilation 55631 -assist 42108 -assistance 41914 -assistant 44774 -assistants 52712 -assisted 48186 -assisting 49400 -assistive 56200 -assists 49435 -assoc 63991 -associate 46640 -associate's 61940 -associated 36976 -associates 49847 -associating 56935 -association 42447 -association's 58113 -associations 47672 -associative 57566 -assole 63245 -assorted 53934 -assortment 52459 -asst 62196 -assuage 63601 -assume 42198 -assumed 43768 -assumes 44994 -assuming 46657 -assumption 46457 -assumptions 47795 -assurance 48372 -assurances 56585 -assure 47529 -assured 48907 -assuredly 62917 -assures 54226 -assuring 55657 -ast 61472 -asta 63419 -aster 63419 -asterisk 52496 -asterisks 59630 -asteroid 55631 -asteroids 61362 -asters 65452 -asthe 64905 -asthma 48501 -asthmatic 56721 -asthmatics 62762 -astigmatism 59164 -aston 62613 -astonished 59560 -astonishing 54560 -astonishingly 60856 -astonishment 62613 -astound 65452 -astounded 61152 -astounding 56585 -astral 61152 -astray 60321 -astringent 64423 -astro 60762 -astrobiology 65452 -astrocyte 63601 -astrocytes 58577 -astrocytic 63792 -astrocytoma 61584 -astroglia 63991 -astroglial 64201 -astrologer 63991 -astrologers 63419 -astrological 60762 -astrology 47871 -astronaut 56293 -astronauts 54969 -astronomer 60580 -astronomers 57440 -astronomical 56231 -astronomy 53988 -astrophysical 62762 -astrophysics 62066 -astrovine 60856 -astute 57653 -asunder 64905 -asus 55299 -aswell 56899 -asx 60762 -asylum 53138 -asymmetric 50171 -asymmetrical 56862 -asymmetrically 63077 -asymmetries 61362 -asymmetry 53392 -asymptomatic 53581 -asymptote 64657 -asymptotic 52175 -asymptotically 56170 -asymptotics 63419 -asynchronous 54226 -asynchronously 65452 -así 62196 -at 22792 -at's 59227 -ata 59630 -atacand 64657 -atarax 64905 -atari 64905 -atau 63601 -ataxia 60670 -ate 48226 -ated 53423 -atelectasis 62613 -atelier 60762 -ately 60670 -atención 64905 -atenolol 62331 -ater 61472 -ates 61940 -ath 63419 -atheism 59848 -atheist 57358 -atheists 58979 -athena 63601 -athens 53830 -atherogenesis 63419 -atherogenic 61940 -atherosclerosis 55398 -atherosclerotic 55631 -athlete 52622 -athlete's 59774 -athletes 48454 -athletic 49092 -athletically 64657 -athleticism 62469 -athletics 54321 -athleticsfan 61256 -athymic 65452 -ati 58470 -atic 62762 -atid 62613 -ating 59491 -ation 53038 -ations 57831 -atipamezole 64657 -ativan 53712 -ative 58632 -atively 63077 -atk 61584 -atkins 63077 -atl 64423 -atlanta 53517 -atlantic 56324 -atlantida 61362 -atlantis 58688 -atlas 54499 -atlases 63077 -atleast 53865 -atm 56050 -atmosphere 45245 -atmospheres 58688 -atmospheric 48586 -atmuscarella 65452 -atoll 62762 -atolls 61699 -atom 47529 -atomic 47363 -atomistic 64201 -atomization 62196 -atomizer 62762 -atomoxetine 64905 -atoms 45892 -atone 63245 -atonement 64423 -atoning 64657 -atop 52622 -atopic 56585 -atopy 63601 -ator 64905 -atorvastatin 63077 -atrazine 59560 -atresia 60321 -atria 62331 -atrial 48771 -atric 64905 -atrioventricular 56899 -atrium 56262 -atrocious 61940 -atrocities 58017 -atrocity 62613 -atrophic 61152 -atrophy 54133 -atropine 59039 -atrovent 64905 -att 54792 -attach 47489 -attachable 63991 -attache 64905 -attached 42238 -attaches 54302 -attaching 53271 -attachment 46803 -attachments 43457 -attack 42267 -attacked 48243 -attacker 53934 -attackers 58262 -attacking 50766 -attacks 44674 -attain 51034 -attainable 58162 -attained 51406 -attaining 54792 -attainment 53066 -attains 58919 -attempt 41773 -attempted 46423 -attempting 47489 -attempts 44921 -attend 43339 -attendance 47915 -attendances 62469 -attendant 53454 -attendants 57318 -attended 44731 -attendee 58162 -attendees 51017 -attending 45785 -attends 52982 -attention 40265 -attentional 60492 -attentions 60321 -attentive 56021 -attentively 64423 -attentiveness 65170 -attenuate 58365 -attenuated 52791 -attenuates 57970 -attenuating 59292 -attenuation 51453 -attenuator 60405 -attest 56293 -attestation 60580 -attested 57696 -attesting 61362 -attests 60670 -atthe 65170 -attic 54601 -attire 56721 -attired 64423 -attitude 46301 -attitudes 47540 -attitudinal 60321 -attorney 43993 -attorney's 53454 -attorneys 48533 -attosecond 62066 -attr 65170 -attract 46099 -attractant 64905 -attracted 47907 -attracting 51521 -attraction 49651 -attractions 48826 -attractive 45108 -attractively 59424 -attractiveness 58417 -attractor 60321 -attractors 64657 -attracts 51700 -attributable 51166 -attribute 47691 -attributed 46957 -attributes 46966 -attributing 60238 -attribution 55226 -attributions 59424 -attrition 57785 -attuned 59702 -attunement 65452 -attunements 65452 -atu 64657 -ature 57696 -atv 60238 -atx 63601 -atypia 63601 -atypical 52546 -até 62917 -au 46831 -aubrey 65170 -auburn 60492 -auc 62917 -auch 54439 -auckland 64657 -auction 44597 -auction's 65452 -auctioned 58523 -auctioneer 61256 -auctioneers 63792 -auctioning 63419 -auctions 49651 -auctor 64905 -aucun 65170 -aucune 65170 -aud 60078 -audacious 61584 -audacity 57970 -audi 56080 -audible 54857 -audience 44411 -audience's 61051 -audiences 49701 -audigier 65452 -audio 40015 -audiobook 56935 -audiobooks 60238 -audiogram 64423 -audiograms 64657 -audiology 62469 -audiometric 63991 -audiophile 62196 -audios 63601 -audiotape 62917 -audiovisual 56356 -audiovox 62917 -audit 45768 -auditable 62613 -audited 53331 -auditing 53271 -audition 54114 -auditioned 60762 -auditioning 61472 -auditions 57482 -auditor 54969 -auditor's 61472 -auditorium 57199 -auditors 54078 -auditory 50799 -audits 53095 -audrey 60492 -auf 50507 -aufero 62762 -aug 61256 -augbauer 65452 -auger 57160 -augment 55500 -augmentation 52609 -augmented 53271 -augmentin 61699 -augmenting 59630 -augments 59923 -augue 63792 -august 50865 -augustus 64657 -auido 57696 -aula 64905 -auld 61818 -aun 61699 -aunque 61051 -aunt 54341 -aunt's 63419 -auntie 62917 -aunts 61051 -aunty 57609 -aur 57278 -aura 54207 -aural 59227 -aureus 53081 -auricular 63419 -aurochffx 64423 -aurofusarin 61362 -aurora 58470 -auroral 63792 -aus 52291 -auscultation 65452 -auspices 55154 -auspicious 60157 -aussi 59848 -aussie 60238 -austenite 61362 -austenitic 60000 -austere 61818 -austerity 61940 -austin 54540 -australia 52584 -australian 56200 -australis 63601 -austria 58262 -austrian 65452 -aut 61472 -autem 62917 -auteur 64657 -auteurs 50387 -auth 60238 -authentic 47835 -authentically 62762 -authenticate 57009 -authenticated 55274 -authenticates 62469 -authenticating 61256 -authentication 45070 -authenticity 53695 -author 37438 -author's 48776 -authorSTREAM 62613 -authored 53899 -authoring 50357 -authorisation 56827 -authorisations 62762 -authorise 57923 -authorised 50424 -authorises 63601 -authorising 62613 -authoritarian 58632 -authoritarianism 64905 -authoritative 51630 -authorities 44744 -authority 42381 -authority's 60670 -authorization 49168 -authorizations 61362 -authorize 50940 -authorized 43739 -authorizes 54499 -authorizing 52244 -authors 41217 -authorship 58113 -authorware 64201 -autism 52661 -autistic 55877 -auto 42548 -autoantibodies 56021 -autoantibody 62196 -autobiographical 57970 -autobiography 56262 -autocad 58313 -autochthonous 64201 -autoclavable 65170 -autoclave 62469 -autoclaved 62917 -autoclaving 65170 -autocomplete 64905 -autoconf 65452 -autocorrelation 54902 -autocratic 62331 -autocrine 59630 -autodata 59357 -autodesk 62917 -autoerotic 58802 -autofellatio 59560 -autofluorescence 62613 -autofocus 62331 -autogenous 64423 -autograft 63792 -autograph 57009 -autographed 56518 -autographs 57566 -autoimmune 51434 -autoimmunity 60952 -autoionization 63601 -autologous 54969 -autolysis 65452 -automagically 62331 -automaker 59164 -automakers 58919 -automata 58162 -automate 53646 -automated 45680 -automates 59227 -automatic 42702 -automatically 41038 -automating 58212 -automation 49240 -automatique 65452 -automaton 59630 -automatons 65170 -automobile 48677 -automobiles 54924 -automorphism 60952 -automorphisms 63077 -automotive 47478 -autonomic 54133 -autonomous 51856 -autonomously 61699 -autonomy 53226 -autophagy 63245 -autophosphorylation 64905 -autopilot 59923 -autoplay 62917 -autopsied 64657 -autopsies 65170 -autopsy 53679 -autor 63601 -autoradiographic 61256 -autoradiography 59848 -autoreactive 63245 -autoregressive 60670 -autoresponder 64201 -autoreve 64905 -autorun 59702 -autos 53988 -autosampler 64201 -autosomal 54601 -autostart 63792 -autotitration 64657 -autotrophic 63991 -autre 60321 -autres 60405 -autumn 49517 -autumnal 61256 -aux 52534 -auxiliaries 62469 -auxiliary 50591 -auxin 61940 -auxinic 64423 -av 51580 -ava 60238 -avaiable 65170 -avail 55500 -availabe 65170 -availabilities 64657 -availability 42789 -availabilty 64905 -available 31937 -availableFull 63601 -availableOne 65452 -availble 62613 -availed 62469 -availible 64201 -availing 62917 -avails 65452 -avait 65170 -aval 63601 -avalanche 54479 -avalanches 62196 -avaliable 60321 -avalon 62762 -avalos 64423 -avancée 64905 -avandamet 64905 -avandia 58262 -avant 57199 -avantgarde 64423 -avanzada 64201 -avapro 64423 -avascular 62331 -avast 60762 -avatar 46356 -avatars 55060 -ave 56021 -avec 51521 -avelox 65452 -avenge 60405 -avenged 60078 -avenger 64201 -avengers 64905 -avenue 52363 -avenues 54399 -aver 62331 -average 36774 -averaged 48524 -averages 51275 -averaging 50623 -averse 61818 -aversion 56827 -aversive 61051 -avert 57741 -averted 60321 -averting 64657 -avery 63991 -avez 63991 -avg 52818 -avi 49770 -avian 52339 -aviary 65170 -aviation 49919 -aviator 58688 -aviators 62196 -avid 53182 -avidin 63077 -avidity 62762 -avidly 63991 -avila 64657 -avimals 65170 -avionics 60580 -avirulence 63601 -avirulent 65452 -avis 62613 -avium 60670 -avocado 57923 -avocados 64423 -avodart 61362 -avoid 40555 -avoidable 61256 -avoidance 51293 -avoided 49764 -avoiding 48716 -avoids 52509 -avoir 62331 -avon 61818 -avons 65452 -avowed 62066 -avr 63419 -avril 58313 -avs 59101 -avulsion 63601 -aw 53899 -awa 65452 -await 52968 -awaited 54879 -awaiting 50932 -awaits 53952 -awake 52534 -awaken 58577 -awakened 58113 -awakening 56972 -awakens 62196 -award 42594 -awarded 44458 -awardee 63245 -awardees 64201 -awarding 54581 -awards 44394 -aware 42407 -awareness 44733 -awash 60762 -away 37041 -aways 61818 -awd 62613 -awe 55398 -awed 61051 -awesome 43910 -awesomely 64201 -awesomeness 60762 -awestruck 65170 -awful 50454 -awfully 58162 -awhile 52280 -awk 64905 -awkward 52752 -awkwardly 62066 -awkwardness 63991 -awning 58802 -awnings 62469 -awoke 58688 -awoken 65170 -awry 64657 -awsome 54685 -awstats 62613 -aww 58313 -awww 59630 -ax 55398 -axe 54519 -axed 60762 -axel 63245 -axes 51660 -axial 49173 -axially 55766 -axillary 54857 -axing 64657 -axiom 60321 -axiomatic 60405 -axioms 58577 -axis 45228 -axisymmetric 58688 -axle 52546 -axles 58979 -axon 56485 -axonal 57318 -axons 54622 -axxo 54283 -ay 52221 -aya 62331 -ayaa 65452 -ayant 64423 -aye 57009 -ayer 59491 -ayers 59357 -ayes 63419 -ayo 64423 -ays 65452 -aysiu 63419 -ayuda 60670 -ayumi 64657 -ayurveda 64201 -ayurvedic 63601 -az 52130 -azar 61256 -azarae 60762 -azarrias 65170 -azathioprine 61472 -azide 60238 -azimuth 57160 -azimuthal 59848 -azimuths 65170 -azine 63792 -azithromycin 61362 -aziz 64657 -azo 61818 -azobenzene 60580 -azole 64201 -azoospermia 61152 -azoospermic 64201 -aztec 64905 -azul 63077 -azure 63245 -azz 58470 -að 64201 -año 59630 -años 59227 -aún 65170 -b 38727 -b'day 64905 -bFGF 58470 -bITa 64905 -bLuE 62469 -bMS 53746 -bMighty 64905 -bOI 64423 -bOb's 63792 -bY 61472 -bZIP 65170 -ba 48067 -baa 65452 -baat 64201 -baba 59491 -babar 59424 -babble 62469 -babbling 63991 -babe 48217 -babel 65452 -babes 49201 -babies 46675 -babii 63601 -baboon 63077 -baboons 64657 -babu 64201 -baby 39735 -baby's 51985 -babydoll 63419 -babyfirer 64657 -babylon 59292 -babys 63601 -babysit 62469 -babysitter 56791 -babysitters 61818 -babysitting 58262 -babyworld 64905 -bac 61152 -baccalaureate 60405 -baccarat 63419 -bach 61472 -bachelor 55657 -bachelor's 52725 -bachelorette 59227 -bachelors 58688 -bacilli 57440 -bacillus 62469 -back 32206 -backBack 60952 -backboard 64905 -backbone 51700 -backbones 63077 -backcountry 61472 -backcross 60856 -backdoor 60492 -backdrop 53361 -backdrops 62613 -backed 47772 -backend 54727 -backer 61051 -backers 57122 -backfield 64423 -backfill 62196 -backfilling 63792 -backfire 64423 -backfired 65452 -backflip 59702 -backflow 62917 -backgammon 61362 -background 41123 -backgrounds 49783 -backhand 62762 -backhaul 65170 -backhoe 58860 -backing 48399 -backlash 57785 -backlight 56293 -backlighting 63245 -backlink 63991 -backlinks 58365 -backlit 59560 -backlog 55448 -backorder 61940 -backpack 52339 -backpacker 61051 -backpackers 61940 -backpacking 57970 -backpacks 58417 -backplane 62196 -backplate 63991 -backpropagation 65170 -backrest 63792 -backroom 62331 -backs 49423 -backscatter 59774 -backscattered 64423 -backscattering 60078 -backseat 60238 -backside 56687 -backslash 64423 -backspace 64201 -backsplash 63419 -backstage 54749 -backstop 63077 -backstory 62917 -backstreet 62917 -backtrace 62917 -backtrack 63991 -backtracking 62917 -backup 45569 -backups 54114 -backward 51202 -backwards 52484 -backwash 63601 -backwater 62762 -backwaters 64657 -backwoods 65452 -backyard 52635 -backyards 63601 -baclofen 62331 -bacon 51953 -bacteremia 60952 -bacteria 45865 -bacterial 46015 -bactericidal 58745 -bacterin 64905 -bacteriocin 59164 -bacteriocins 60952 -bacteriological 59039 -bacteriology 65452 -bacteriophage 56827 -bacteriophages 64423 -bacterium 55299 -bacterivores 65170 -bactrim 63792 -bactroban 62762 -baculovirus 59560 -baculoviruses 64657 -bad 38314 -badass 58113 -badbadputer 64905 -badd 64201 -baddest 63601 -bade 65452 -badge 49365 -badger 59848 -badgers 64423 -badges 53182 -badly 49365 -badminton 58212 -badongo 62917 -baffle 57970 -baffled 58212 -baffles 59491 -baffling 60856 -bag 43247 -bagel 60492 -bagels 61256 -baggage 52622 -bagged 58523 -baggie 63245 -bagging 61584 -baggy 60762 -bagi 64657 -bagless 63245 -bagpipes 65170 -bags 44390 -baguette 63601 -baguettes 64657 -bah 63419 -bahamas 62762 -bahamut 62917 -bahay 62331 -baht 61152 -bai 61818 -baie 64657 -bail 51257 -baila 62613 -bailando 62613 -bailar 64201 -baile 61818 -bailed 58745 -bailey 59630 -bailiffs 63991 -bailing 60492 -bailout 49939 -bailouts 62066 -bails 64423 -bain 65452 -bait 53038 -baited 62196 -baiting 62762 -baits 59491 -baixar 63991 -baja 61362 -bajar 57358 -bajo 60321 -bak 58262 -baka 63245 -bake 52496 -baked 49880 -baker 57970 -baker's 63245 -bakerc 62762 -bakeries 61818 -bakers 59424 -bakery 54360 -bakes 62762 -baking 48964 -bakkie 65170 -bakugan 62762 -bal 61256 -balagopalks 62613 -balagopalks's 65452 -balance 41557 -balanced 46601 -balancer 63419 -balances 52107 -balancing 50249 -balconcino 65452 -balconies 58745 -balcony 52472 -bald 54560 -balding 63419 -baldness 62762 -baldwin 64423 -bale 59923 -baled 64423 -balenciaga 62331 -bales 61472 -bali 59702 -balk 61152 -balked 63991 -ball 42310 -ballad 56862 -ballads 59039 -ballantines 62469 -ballast 55849 -ballasts 61699 -ballbusting 62469 -baller 64201 -ballerina 61152 -ballet 53182 -ballets 64201 -ballin 63077 -balling 64423 -ballistic 55130 -ballkani 64905 -ballon 65170 -balloon 49458 -ballooned 63991 -ballooning 60157 -balloons 54360 -ballot 49796 -balloting 63601 -ballots 54023 -ballpark 59164 -ballpoint 63419 -ballroom 55992 -balls 48034 -balm 58365 -balms 63792 -balmy 62331 -baloney 64905 -balsa 62331 -balsam 64905 -balsamic 57831 -baltic 64423 -baltimore 59560 -baltwo 63792 -balun 64201 -bam 60952 -bamboo 52459 -bamboozled 65452 -ban 46409 -bana 62917 -banal 61584 -banana 51026 -bananas 55474 -banc 59848 -banca 65452 -band 39568 -band's 52107 -banda 57876 -bandage 59630 -bandaged 65452 -bandages 60321 -bandana 63991 -bandarban 64657 -bandas 64905 -bande 62762 -banded 57399 -bandera 64657 -bandgap 59227 -banding 56200 -bandit 59101 -bandits 62196 -bandleader 64201 -bandmates 64657 -bandon 64423 -bandos 65452 -bandpass 58523 -bands 43730 -bandwagon 57785 -bandwidth 47002 -bandwidths 61152 -bandwith 64657 -bane 62066 -bang 49899 -bangalore 58688 -bangaru 65170 -bangbros 60321 -bangbus 62469 -banged 55578 -banger 64905 -bangers 60670 -bangin 63792 -banging 55821 -bangkok 59560 -bangla 63991 -bangladesh 61584 -bangle 62331 -bangles 62917 -bangs 57318 -bani 63991 -banish 61699 -banished 59039 -banishment 65170 -banjo 57440 -banjos 63419 -bank 40873 -bank's 53646 -bankas 64423 -banked 60492 -banker 55373 -banker's 63792 -bankers 54499 -banking 45652 -banknote 65170 -bankroll 63245 -bankrupt 54992 -bankruptcies 62469 -bankruptcy 48261 -banks 43839 -banksy 65170 -bannato 64905 -banned 48468 -banner 46881 -banners 52018 -banning 53988 -banquet 52635 -banqueting 64423 -banquets 62762 -bans 54601 -banshee 64657 -banter 58417 -bao 60492 -bapa 63245 -bape 62469 -baptised 60762 -baptism 56721 -baptist 61051 -baptized 56827 -bar 40840 -bara 62196 -barablu 65170 -barack 56485 -barangay 62196 -barangays 65452 -barat 64657 -barb 59702 -barbados 65170 -barbara 58919 -barbarian 61699 -barbarians 63991 -barbaric 61256 -barbarous 65452 -barbatus 63792 -barbecue 53470 -barbecued 63792 -barbecues 63245 -barbed 56935 -barbell 64657 -barbeque 57696 -barber 57524 -barber's 64657 -barbershop 64423 -barbie 55849 -barbiturates 64423 -barbs 61256 -barcelona 57084 -barcode 52913 -barcodes 58979 -bard 60952 -bardbl 60670 -bardbly 62917 -bare 48590 -bareMinerals 63077 -bareback 57524 -barebones 64201 -barefoot 56687 -barely 47823 -bares 60762 -barf 64423 -bargain 50220 -bargained 60952 -bargaining 50815 -bargains 51835 -barge 57482 -barges 61362 -bargin 64905 -bari 64657 -bariatric 61256 -baring 63419 -barista 64423 -baritone 59039 -barium 55963 -bark 52339 -barked 64201 -barker 63419 -barking 57696 -barks 63245 -barley 52858 -barn 51640 -barnegat 64905 -barnes 62613 -barns 59101 -barnyard 64201 -baroclinic 63601 -barometer 60321 -barometric 61362 -baron 58860 -barons 64201 -baroque 56791 -baroreceptor 64657 -baroreflex 59101 -barotropic 63245 -barra 62762 -barracks 59039 -barracuda 63419 -barrage 57785 -barramundi 64657 -barranquilla 65452 -barre 61362 -barred 53952 -barrel 48892 -barrels 52233 -barren 57970 -barrett 65452 -barricade 65170 -barricaded 64201 -barricades 64201 -barrier 46934 -barriers 48059 -barring 57609 -barrio 61256 -barrister 60762 -barristers 62762 -barrow 61256 -barrows 64423 -barry 58919 -bars 45260 -bart 60856 -bartender 56420 -bartenders 59101 -bartending 63245 -barter 58577 -barteri 62917 -bartering 63601 -barton 63245 -bartonc 62066 -baru 64657 -baryon 59560 -bas 57696 -basal 47381 -basally 63601 -basalt 60405 -basaltic 60580 -basalts 61152 -basanites 64657 -base 39064 -baseball 45636 -baseball's 61256 -baseballexpress 64423 -baseband 57970 -baseboard 62917 -based 33861 -baseless 62917 -baseline 46194 -baselines 62066 -baseman 57238 -basement 49458 -basements 60952 -basepairs 63419 -bases 47923 -bash 53241 -bashed 62762 -bashes 64905 -bashful 64201 -bashing 56452 -basic 39153 -basically 45247 -basicaly 65170 -basicity 62066 -basicly 60952 -basics 48586 -basil 54622 -basilar 57970 -basilica 64657 -basin 50006 -basinal 64905 -basing 57876 -basins 55154 -basis 39645 -bask 61256 -basket 44867 -basketball 46094 -baskets 52164 -basking 60405 -basmati 65170 -basolateral 56935 -basophil 63601 -basophilic 64905 -basophils 65452 -basque 65170 -bass 46128 -basse 63601 -basses 61051 -bassinet 63077 -bassist 55793 -bassline 62331 -bassoon 63792 -basswood 63245 -basta 64201 -bastante 64423 -bastard 55274 -bastards 59774 -basting 62469 -bastion 61051 -bat 50006 -batch 47214 -batched 64201 -batches 54041 -batching 61256 -bate 65452 -bated 60078 -bath 45108 -bathe 58577 -bathed 59560 -bathing 53301 -bathrobes 64423 -bathroom 46152 -bathrooms 50890 -baths 52778 -bathtime 65452 -bathtub 55963 -bathtubs 63419 -bathymetric 63077 -bathymetry 64905 -batik 64423 -bation 61584 -batman 55711 -baton 56262 -batons 61699 -bats 53153 -batsman 61051 -batsmen 61362 -batt 62331 -battalion 57609 -battalions 60580 -batted 58113 -batten 63792 -battens 64657 -batter 53865 -battered 54664 -batterie 65452 -batteries 47385 -battering 61940 -batters 60157 -battery 42508 -batting 52096 -battle 42424 -battled 56293 -battlefield 54459 -battlefields 63419 -battleground 57482 -battles 50974 -battleship 60670 -battleships 64657 -battlestar 61940 -battling 53081 -batts 64201 -batty 65170 -baubles 64423 -baud 61699 -bauer 63601 -bauxite 62196 -bawdy 65452 -baxter 65170 -bay 48165 -bayer 65452 -baylissii 63245 -bayonet 56485 -bayou 64201 -bays 54170 -bazaar 59357 -bazaars 65170 -bazar 64423 -bb 55526 -bbadash 64201 -bbb 62613 -bbc 53695 -bbcode 65170 -bbcworldnews 59774 -bbe 64201 -bbq 56356 -bbs 56452 -bbw 53485 -bbws 63991 -bby 59923 -bbz 64657 -bc 52940 -bcbg 61584 -bcc 62469 -bccn 64423 -bcoz 64201 -bcp 64201 -bcs 64201 -bcuseae 65170 -bcuz 64201 -bd 54770 -bday 55738 -bdr 65170 -bdrm 60405 -bdsm 53377 -be 22753 -bea 64201 -beach 43477 -beachbabe 65170 -beached 64201 -beaches 49257 -beachfront 57278 -beachside 62469 -beacon 55657 -beacons 59702 -beacuse 62196 -bead 52496 -beaded 55014 -beading 61472 -beads 49676 -beadwork 64423 -beagle 58632 -beagles 63419 -beak 59491 -beaker 58745 -beaks 64657 -beam 44070 -beamed 59292 -beamformer 65452 -beamforming 62613 -beaming 61362 -beamlets 63991 -beamline 61699 -beams 50718 -beamsplitter 65170 -beamwidth 65452 -bean 50013 -beanie 61472 -beans 50087 -bear 44867 -beara 64905 -bearable 63792 -beard 56452 -bearded 58919 -beards 63601 -bearer 57278 -bearers 61472 -bearing 45897 -bearings 51762 -bearish 62762 -bears 48491 -bearshare 60856 -beast 52118 -beastiality 58802 -beastly 65452 -beasts 57609 -beat 42387 -beaten 49701 -beater 58745 -beatiful 62762 -beating 48643 -beatings 62917 -beatles 55060 -beatnik 64905 -beatriz 65452 -beats 47960 -beau 60157 -beaucoup 62613 -beaufort 64423 -beaumont 64905 -beautician 61472 -beauties 56687 -beautification 62469 -beautiful 39660 -beautifull 60670 -beautifully 49274 -beautify 61699 -beautifying 65170 -beauty 42792 -beaver 56827 -beavers 63245 -bebe 58262 -beberle 65452 -bebidas 64423 -bebo 53597 -bebop 62762 -bec 64905 -became 39731 -becasue 60492 -because 31638 -becca 63792 -beck 61699 -becker 64423 -beckham 61940 -beckinsale 65452 -beckon 62917 -beckoning 64657 -beckons 61152 -becky 61152 -beclomethasone 62917 -become 36097 -becomes 40882 -becoming 42314 -becouse 62469 -becuase 56200 -becuz 62762 -bed 41468 -bedava 61940 -bedded 58212 -bedding 51721 -bedford 64657 -bedi 64657 -bedingfield 64423 -bedrails 63792 -bedrock 57524 -bedroom 44051 -bedroomed 58065 -bedrooms 47626 -beds 47050 -bedside 56356 -bedskirt 65170 -bedspread 65452 -bedstead 59702 -bedtime 58017 -bee 52509 -beech 58919 -beeches 64201 -beef 47100 -beefed 64905 -beefing 64201 -beefs 63792 -beefy 61699 -beehive 64423 -beeing 62917 -been 27607 -beep 58365 -beeper 65452 -beeping 60762 -beeps 63245 -beer 45360 -beers 52635 -bees 54341 -beeswax 57923 -beet 58365 -beethoven 64905 -beetle 55037 -beetles 54540 -beetroot 64423 -beets 60952 -befits 63245 -befitting 61818 -befor 61362 -before 32248 -beforehand 57831 -befriend 63245 -befriended 62066 -befriending 64905 -befriends 60856 -befuddled 65452 -beg 54207 -began 40357 -beget 64657 -begets 63419 -beggar 63419 -beggars 61362 -begged 57609 -begging 54479 -beggining 65170 -begin 40905 -beginInsert 65452 -beginSection 64905 -begining 58417 -beginner 52609 -beginner's 59702 -beginners 52521 -beginning 40420 -beginnings 54188 -begins 43060 -begotten 61584 -begrudge 64657 -begs 56972 -begun 47248 -behalf 43739 -behave 50774 -behaved 55821 -behaves 54664 -behaving 57046 -behavior 41691 -behaviorAutistic 65452 -behavioral 47630 -behaviorally 62917 -behaviors 48482 -behaviour 44451 -behavioural 52051 -behaviours 53081 -beheaded 63245 -beheading 64905 -beheld 61699 -behemoth 61051 -behest 61472 -behind 39479 -behold 58065 -beholden 64657 -beholder 65452 -behooves 65170 -bei 51640 -beige 56110 -beijing 59101 -beim 58417 -bein 58212 -being 32251 -beings 51148 -bejeweled 63601 -bekijken 65452 -bel 60157 -belarus 64201 -belated 58365 -belatedly 65170 -belch 62613 -belching 63991 -beleaguered 59357 -beled 64423 -beleive 57199 -belek 59923 -belfast 63792 -belgesel 63792 -belgian 62917 -belgium 60762 -belgrade 64905 -belie 65170 -belied 64423 -belief 46079 -beliefs 47787 -belies 60321 -believable 58523 -believe 37491 -believed 43765 -believer 55821 -believers 54360 -believes 45277 -believeth 63792 -believing 51783 -belinda 63601 -belittle 62331 -belittling 64201 -belive 55906 -beliveinall 61051 -belkin 61362 -bell 49815 -bella 56420 -bella's 65452 -belladonna 65170 -belle 55398 -belles 60580 -belli 64423 -bellied 64905 -bellies 62469 -belligerence 61051 -belligerent 62469 -bellman 65452 -bello 61940 -bellow 61472 -bellowing 65452 -bellows 61699 -bells 53882 -bellu 63419 -belly 50416 -belo 64201 -belong 46517 -belonged 52062 -belonging 48557 -belongings 56293 -belongs 47005 -beloved 49713 -below 36176 -belowground 64905 -belt 46729 -belted 60078 -belting 63792 -belts 52062 -beluga 61256 -bem 60580 -bemoan 63792 -bemused 62917 -ben 50865 -benadryl 64905 -benassi 64201 -bench 49006 -benched 61256 -benches 56862 -benching 64657 -benchmark 49789 -benchmarked 63245 -benchmarking 56110 -benchmarks 54560 -bend 50758 -bended 63601 -bender 62196 -bending 50185 -bendix 62762 -bends 55526 -bene 60492 -beneath 47955 -benedict 65170 -benefactor 63991 -benefactors 62469 -beneficial 47090 -beneficially 59702 -beneficiaries 53331 -beneficiary 53549 -beneficiary's 64201 -benefit 40383 -benefited 52303 -benefiting 53679 -benefits 39568 -benefitted 60157 -benefitting 61940 -benevolence 63601 -benevolent 58470 -bengali 63601 -beni 65452 -benifit 64905 -benifits 65452 -benign 50662 -benim 64657 -benjamin 58745 -benno 57238 -benny 61051 -bens 58632 -bent 50053 -benthamiana 61472 -benthic 58113 -bentley 63601 -bento 60492 -bentonite 60952 -bentyl 65170 -bentzilla 63792 -benz 59702 -benzaldehyde 62917 -benzene 53501 -benzimidazole 64201 -benzo 65170 -benzoate 59101 -benzodiazepine 60321 -benzodiazepines 61584 -benzoic 58262 -benzoyl 59923 -benzydamine 60405 -benzyl 57199 -benzylic 62331 -bequeath 63991 -bequeathed 61362 -bequest 60856 -bequests 63991 -ber 52818 -berated 63991 -berating 63991 -bereaved 61699 -bereavement 60157 -bereft 62762 -bereits 64657 -beret 62066 -berg 61818 -berghei 61818 -beri 65452 -bericht 63792 -berichten 65170 -berkeley 59923 -berkshire 63245 -berlin 55906 -berm 63991 -bermuda 62331 -bern 62917 -bernard 61472 -bernie 60000 -berries 55934 -berry 54283 -bers 56618 -berserk 62196 -berserker 64905 -bership 65170 -bert 62469 -berth 58017 -berths 61472 -beryl 64905 -beryllium 61051 -bes 63792 -besarte 65170 -besedilo 64905 -beset 59227 -beside 48377 -besides 48436 -besieged 60580 -beso 62196 -besoin 62469 -besos 62613 -bespectacled 64201 -bespoke 55631 -best 32214 -beste 61940 -besten 64201 -bestest 61818 -bestiality 57653 -bestmotoring 63077 -bestow 60762 -bestowed 56972 -bestowing 64905 -bestows 64657 -bests 64423 -bestseller 56862 -bestsellers 56551 -bestselling 55226 -bet 45334 -beta 43727 -betaine 63991 -betaling 58919 -betamethasone 63245 -betas 60000 -betcha 60000 -betel 65170 -betelnut 63991 -beter 62469 -betes 63991 -beth 59702 -bethany 63077 -betray 59923 -betrayal 58523 -betrayed 56721 -betraying 63601 -betrays 61940 -bets 52597 -betsy 65170 -betta 57970 -better 34766 -bettering 64423 -betterment 58919 -betting 50807 -betty 57318 -between 31012 -betwixt 63792 -bevallen 64423 -bevel 61152 -beveled 60078 -beverage 50678 -beverages 50949 -beverly 58919 -bevy 61584 -beware 55014 -bewildered 61699 -bewildering 63077 -bewilderment 65452 -bextra 63245 -beyonce 55821 -beyond 40723 -beyondsixpacka 64905 -bez 59560 -bezel 56021 -bezoekers 63245 -bezplatno 61472 -bf 56485 -bg 55552 -bh 62331 -bhai 63601 -bhajan 63991 -bhangra 64423 -bhi 58577 -bhp 59227 -bhutan 64423 -bi 51610 -bia 63991 -bial 65170 -biallelic 65452 -bianca 63601 -biannual 62331 -bias 46162 -biased 51425 -biases 56518 -biasing 57046 -biastophilia 59702 -biaxial 62196 -biaxin 64201 -bib 58065 -bibdate 62066 -bible 50923 -bibles 63991 -biblical 51680 -bibliographic 51131 -bibliographical 57970 -bibliographies 60856 -bibliography 49394 -bibliometric 65170 -biblioteca 65452 -bibliotherapy 62917 -bibs 63245 -bibsource 61362 -bibtex 59774 -bic 62613 -bicarbonate 55992 -bicentennial 64905 -bicep 62917 -biceps 57831 -bichromatic 62762 -bicker 62469 -bickering 62196 -bicolor 63601 -biconical 65452 -bicrystal 63077 -bicrystals 60670 -bicuculline 65170 -bicycle 48614 -bicycles 53813 -bicyclic 60238 -bicycling 58162 -bicyclist 64201 -bicyclists 60762 -bid 41521 -bidder 51931 -bidder's 64201 -bidders 53679 -bidding 49336 -bide 63419 -biden 56935 -bidentate 62762 -bidet 56585 -bidirectional 57440 -bidorbuy 59227 -bids 46032 -biel 61152 -bien 53153 -biennial 58017 -biennium 64657 -bifida 64657 -bifilar 64905 -bifocal 65452 -bifunctional 60321 -bifurcated 61940 -bifurcation 57524 -bifurcations 63991 -big 36205 -bigbrother 64657 -bigdog 61818 -bigeye 63991 -bigfoot 57741 -bigger 44338 -biggerstuart's 63792 -biggest 42530 -biggie 62613 -bigjoe 61584 -bigness 58632 -bignews 59774 -bigot 65170 -bigoted 62762 -bigotry 61584 -bigwigs 65452 -bij 52752 -bijection 61152 -bike 43884 -bike's 63245 -biker 56388 -biker's 64657 -bikers 56827 -bikes 48761 -biking 53211 -bikini 49458 -bikinicontestporn 63991 -bikinis 57831 -bil 63991 -bilabial 63991 -bilan 63991 -bilateral 48751 -bilaterally 58113 -bilayer 56791 -bilayers 59491 -bilby 64905 -bilder 62917 -bile 51368 -bilge 61818 -biliary 54924 -bilinear 58802 -bilingual 52244 -bilingualism 63991 -bilirubin 59292 -bilities 63419 -bility 55552 -bill 42705 -bill's 62066 -billable 63991 -billabong 63419 -billboard 55657 -billboards 58470 -billed 52363 -billet 58162 -billets 61818 -billiard 57566 -billiards 58979 -billing 48182 -billings 61699 -billion 41389 -billionaire 56862 -billionaires 63245 -billions 50742 -billowing 63245 -bills 46651 -billy 55657 -bilo 62066 -biloba 62469 -biloxi 65452 -bimbo 63991 -bimetallic 64423 -bimini 65170 -bimmerfest 64201 -bimodal 57970 -bimolecular 64657 -bimonthly 62196 -bimorph 63792 -bin 47843 -binant 65452 -binaries 56585 -binary 46429 -bination 61362 -binaural 65170 -bind 48139 -binder 53153 -binders 56827 -binding 41382 -bindings 55934 -binds 50306 -bine 63419 -bined 61584 -bing 61362 -binge 56356 -bingo 52635 -binky 64905 -binned 64201 -binocular 57318 -binoculars 59039 -binomial 56862 -bins 53533 -binuclear 63601 -bio 51492 -bioactive 58162 -bioactivity 62917 -bioanalytical 63792 -bioassay 60492 -bioassays 61940 -bioavailability 55500 -bioavailable 60856 -biochemical 49054 -biochemically 63601 -biochemist 65452 -biochemistry 56080 -biocidal 65452 -biocompatibility 63991 -biocompatible 61940 -biocontrol 65170 -bioconversion 64905 -biodegradability 63601 -biodegradable 55849 -biodegradation 59164 -biodiesel 54792 -biodigestor 64423 -biodistribution 64905 -biodiversity 51953 -bioelectrical 64657 -bioenergy 64423 -bioethics 61472 -biofeedback 61472 -biofilm 57238 -biofilms 61472 -biofuel 58802 -biofuels 55793 -biog 63991 -biogas 58262 -biogenesis 61152 -biogenic 59848 -biogeochemical 62613 -biogeographic 63792 -biogeographical 64201 -biogeography 63991 -biographer 61940 -biographical 53038 -biographies 53066 -biography 47649 -biographyby 55657 -bioinformatic 65452 -bioinformatics 57524 -biologic 54560 -biological 43809 -biologically 52927 -biologics 63792 -biologique 62331 -biologist 57524 -biologists 57084 -biology 47668 -bioluminescence 64201 -bioluminescent 65170 -biológica 64657 -biomarker 58162 -biomarkers 57696 -biomass 49802 -biomaterial 63792 -biomaterials 62917 -biomechanical 56618 -biomechanics 60580 -biomed 60157 -biomedical 53024 -biometric 56140 -biometrics 62331 -biometry 65170 -biomimetic 64657 -biomolecular 62331 -biomolecule 64201 -biomolecules 62331 -biomonitoring 62917 -bionic 63077 -bionicdog 64423 -biopharmaceutical 60405 -biophysical 57831 -biopic 60670 -bioprostheses 63077 -biopsied 64905 -biopsies 53081 -biopsy 48501 -bioreactor 59923 -bioremediation 65452 -bios 52725 -biosafety 64905 -bioscience 64657 -biosecurity 62196 -biosensor 62196 -biosensors 63077 -biosolids 60321 -biosphere 62762 -biosynthesis 52447 -biosynthetic 57046 -biota 62469 -biotech 54685 -biotechnological 62762 -biotechnology 52315 -bioterrorism 59923 -biotic 59039 -biotin 59560 -biotinylated 56110 -biotite 63991 -biotransformation 59630 -biotrophic 63419 -biotype 64905 -bipartisan 56293 -bipartite 60000 -biped 65452 -bipedal 63792 -biphasic 59039 -biphenyl 59227 -biphenyls 62196 -biphobia 59424 -biplane 60952 -bipolar 50249 -bipolaron 64905 -bipyramidal 63991 -bir 55014 -biracial 64905 -birch 58262 -bird 45929 -bird's 58017 -birdhouse 62331 -birdie 58313 -birdied 64905 -birdies 62331 -birding 60405 -birds 45683 -birefringence 60580 -birefringent 64423 -birmingham 58745 -birth 42695 -birthdate 63991 -birthday 44161 -birthdays 54601 -birthing 58919 -birthplace 56518 -birthright 65452 -births 51772 -birthstone 64423 -birthweight 61362 -bis 55060 -bisa 62917 -biscotti 64905 -biscuit 57009 -biscuits 54321 -bisected 65170 -bisects 64423 -bisexual 52484 -bisexuals 63419 -bishop 54902 -bishop's 64905 -bishops 56200 -bismuth 63245 -bison 58745 -bispecific 65170 -bispectral 64657 -bisphenol 56899 -bisphosphonates 62469 -bisque 57785 -bist 64201 -bistability 62469 -bistable 60952 -bistro 58162 -bistros 64201 -bisulfite 64423 -bit 38012 -bitDig 60670 -bitch 49452 -bitched 65170 -bitches 54770 -bitching 61940 -bitchy 62331 -bitdefender 63245 -bite 48970 -bites 53565 -bith 63792 -biti 65452 -biting 54245 -bition 64905 -bitline 63792 -bitmap 57160 -bitmaps 62917 -bitrate 57084 -bitrates 63792 -bits 46304 -bitstream 59227 -bitte 61256 -bitten 56420 -bitter 50157 -bitterly 59424 -bitterness 58113 -bittersweet 59292 -bittorrent 55226 -bitty 63245 -bitumen 60000 -bituminous 59491 -bitwise 65452 -bivalent 63792 -bivalve 64201 -bivalves 64201 -bivariate 57970 -biventricular 63991 -biweekly 60952 -biz 50439 -bizarre 50067 -bizarrely 65170 -bizillcizole 64657 -bizjournals 54264 -bizkit 63601 -biznes 64423 -bizwomen 58417 -bizzare 62917 -bizzy 65170 -bj 58919 -bk 56935 -bl 59357 -bla 57009 -black 37468 -blackbeaSSt 65170 -blackberries 61940 -blackberry 54360 -blackboard 61152 -blackbody 62331 -blacked 60856 -blackened 60157 -blackening 61152 -blacker 65170 -blackheads 63419 -blackish 63792 -blackjack 57831 -blacklist 57876 -blacklisted 62469 -blacklists 58365 -blackmail 59491 -blackmailed 65452 -blackness 62917 -blackout 57440 -blackouts 61584 -blacks 51377 -blacksmith 61699 -blacktop 64657 -bladder 49173 -bladders 61472 -blade 46675 -bladed 65452 -blader 62917 -blades 50199 -blag 65452 -blah 51931 -blaine 59923 -blair 61051 -blak 65452 -blake 60321 -blame 47420 -blamed 51931 -blameless 65170 -blames 55766 -blaming 55130 -blanc 59357 -blanca 63991 -blanche 62469 -blanched 64423 -blanching 60000 -blanco 62331 -bland 56827 -blandit 62917 -blank 46973 -blanked 62917 -blanket 50591 -blanketed 64201 -blankets 55323 -blankfist 63077 -blanking 61940 -blanks 55877 -blaring 61472 -blasphemy 63245 -blast 48454 -blasted 55766 -blaster 57160 -blasters 64905 -blasticidin 63601 -blasting 55250 -blastn 60078 -blastocyst 60580 -blastocysts 62331 -blasts 53024 -blatant 55906 -blatantly 57785 -blather 65170 -blaze 55084 -blazed 62331 -blazer 58470 -blazers 62762 -blazes 63077 -blazing 55821 -ble 53917 -bleach 53377 -bleached 58212 -bleachers 61584 -bleaching 54341 -bleak 56972 -blebs 62917 -bled 58162 -bleed 53970 -bleeding 48345 -bleeds 59848 -bleep 64201 -bleibt 63991 -blemish 64423 -blemished 64905 -blemishes 60157 -blend 46800 -blended 51521 -blender 55154 -blending 52968 -blends 52858 -bleomycin 64423 -blepharoplasty 64905 -blero 64905 -bles 63245 -bless 50387 -blessed 49972 -blesses 62762 -blessing 52118 -blessings 53847 -bleu 60952 -blew 51741 -blight 57970 -blighted 61362 -blimp 63245 -blind 47406 -blinded 54499 -blindfold 64657 -blindfolded 64201 -blinding 58017 -blindingly 65452 -blindly 57741 -blindness 55060 -blinds 53830 -bling 55373 -blink 55992 -blinkbits 59923 -blinked 61940 -blinking 57876 -blinklist 52521 -blinks 61818 -blinkx 61152 -blip 60078 -blips 64657 -blir 64905 -bliss 55684 -blissful 60492 -blissfully 61818 -blister 56262 -blistering 57831 -blisters 56687 -blitz 57524 -blizzard 58365 -blk 60856 -bln 56899 -blo 62469 -bloat 61940 -bloated 58919 -bloating 60762 -blob 60238 -blobs 62469 -bloc 55250 -block 39742 -block's 64905 -blockade 52233 -blockage 57831 -blockages 62917 -blockbuster 55299 -blockbusters 62196 -blocked 46079 -blockedmind 63792 -blocker 52635 -blockers 56140 -blocking 47378 -blocks 44287 -blockspin 65452 -blocs 62469 -blog 35825 -blog's 53038 -blogadd 56110 -blogarama 59774 -blogg 64905 -blogged 56262 -blogger 50807 -blogger's 65452 -bloggernoob 65170 -bloggers 50758 -blogging 48482 -blogic 64905 -bloglines 59702 -blogmarks 56518 -blogosphere 55154 -blogpost 62066 -blogrings 61152 -blogroll 59491 -blogs 42832 -blogspot 58745 -bloke 57923 -blokes 62613 -blokland 63792 -blond 52886 -blonde 47335 -blondes 58262 -blonds 64423 -blood 37748 -bloodAmylase 61256 -blooded 62331 -bloodied 64423 -bloodiest 64657 -bloodless 61256 -bloodline 64201 -bloodlines 62917 -bloods 60580 -bloodshed 61256 -bloodsport 60238 -bloodstream 58313 -bloodthirsty 64905 -bloody 49488 -bloom 53796 -bloomed 64905 -bloomers 65452 -bloomfields 63991 -blooming 57318 -blooms 55992 -blooper 62469 -bloopers 57482 -blossom 56518 -blossomed 62469 -blossoming 62196 -blossoms 57046 -blot 49726 -blotch 65170 -blots 55657 -blotted 58919 -blotter 61699 -blotting 53454 -blouse 56050 -blouses 61584 -blow 46043 -blowback 64657 -blower 52399 -blowers 58632 -blowfish 64201 -blowing 50545 -blowjob 51368 -blowjobs 55526 -blown 50314 -blowout 59164 -blows 51340 -bls 65452 -blu 58802 -blue 40668 -blueball 59357 -blueballs 59424 -blueberries 59039 -blueberry 57609 -bluebird 65170 -bluebook 63991 -bluefilm 64201 -bluefly 58417 -bluegal 62469 -bluegill 64423 -bluegrass 56652 -bluelist 64905 -blueomega 63991 -blueprint 54245 -blueprints 59774 -blues 48887 -bluesy 63792 -bluetablepainting 64201 -bluetongue 65170 -bluetooth 51531 -bluff 58860 -bluffs 64423 -bluish 60405 -blumer 57318 -blunder 60157 -blunders 61362 -blunt 53392 -blunted 59357 -blunting 64905 -bluntly 63077 -blunts 65452 -blur 55250 -bluray 63991 -blurb 59491 -blurred 55250 -blurring 58979 -blurry 57399 -blurs 62613 -blurted 64905 -blush 57440 -blushed 63601 -blushing 62196 -blustery 64201 -bly 60000 -bm 61940 -bmi 59923 -bmorephattiboi's 65170 -bmp 60580 -bmw 54170 -bmx 58212 -bn 55500 -bnew 64905 -bnoblet 64905 -bo 55130 -boa 60157 -boar 58262 -board 38717 -board's 56827 -boardcode 61818 -boarded 56721 -boarder 63991 -boarders 62469 -boarding 51793 -boardroom 59491 -boards 41885 -boardwalk 60762 -boars 64201 -boast 54399 -boasted 59101 -boastful 65452 -boasting 57399 -boasts 50013 -boat 44164 -boat's 62469 -boaters 61584 -boating 53762 -boats 48055 -bob 51541 -bobbed 60762 -bobbin 58632 -bobbing 62066 -bobbins 62066 -bobble 56452 -bobblehead 63077 -bobby 57970 -bobcat 60856 -bobo 63601 -bobs 61699 -boca 61699 -bod 60670 -bodacious 63601 -bode 61152 -bodes 62762 -bodice 61362 -bodied 57831 -bodies 44725 -bodily 52327 -body 36672 -body's 51396 -bodybuilder 61472 -bodybuilders 62613 -bodybuilding 56231 -bodyguard 60157 -bodyguards 64423 -bodysuit 62196 -bodytext 63419 -bodyweight 63601 -bodywork 59292 -boettcher 63077 -bog 56452 -bogey 63792 -bogged 59848 -bogging 65452 -boggles 63245 -boggling 64201 -bogs 62917 -bogus 55202 -bohemian 60321 -bohm 63245 -boi 58523 -boil 53182 -boiled 53226 -boiler 52339 -boilerplate 63245 -boilers 57876 -boiling 49992 -boils 56972 -boilsoft 64423 -boing 63245 -boingboing 64423 -bois 62196 -boise 57785 -boissons 63077 -boisterous 62917 -bok 64201 -bokmål 59702 -bol 62613 -bola 63792 -bold 47997 -bolded 64201 -bolder 60762 -boldface 64905 -boldly 57009 -boldness 62613 -bole 59357 -boli 62469 -bolic 62917 -bolivia 63991 -boll 62066 -bollocks 63792 -bolls 64423 -bollywood 53392 -bologna 65170 -bolster 54969 -bolstered 59848 -bolstering 63792 -bolsters 61940 -bolt 50101 -bolted 57318 -bolting 62613 -bolton 61699 -bolts 52130 -bolum 62331 -bolus 55604 -boluses 65170 -bom 57566 -bomb 47907 -bombadil 63077 -bombard 62196 -bombarded 58065 -bombarding 61699 -bombardment 59101 -bombastic 63991 -bombay 64657 -bombed 58113 -bomber 55373 -bombers 55014 -bombing 51996 -bombings 56452 -bombs 52375 -bombshell 59923 -bon 54902 -bona 55934 -bonanza 60762 -bond 43968 -bondage 51600 -bonded 50553 -bondholders 63792 -bondi 64657 -bonding 49296 -bondoc 63792 -bonds 46210 -bone 42144 -boned 60238 -bonehead 65170 -boneless 59491 -boner 59424 -boners 62762 -bones 48980 -bonfire 60856 -bonfires 64657 -bong 59630 -bongo 63245 -boning 63792 -bonita 60762 -bonito 63991 -bonkers 63419 -bonne 60762 -bonnet 59101 -bonnie 61362 -bonny 64657 -bono 59848 -bonsai 59702 -bontril 57696 -bonus 45987 -bonuses 52996 -bony 55684 -boo 55474 -boob 55552 -boobed 61152 -boobies 60952 -boobs 49279 -booby 63419 -booed 59848 -boogie 57440 -booing 63792 -book 35317 -book's 53407 -bookable 65170 -bookbag 64423 -bookcase 63419 -booked 49758 -bookie 65170 -bookies 64905 -booking 45358 -bookings 51560 -bookkeeper 63245 -bookkeeping 59101 -booklet 52175 -booklets 56972 -bookmaker 63991 -bookmakers 63245 -bookmark 46637 -bookmarked 56110 -bookmarking 51008 -bookmarklet 62196 -bookmarks 48887 -books 38568 -booksXYZ 57399 -bookseller 61699 -booksellers 59357 -bookshelf 57160 -bookshelves 63601 -bookshop 54581 -bookstore 52673 -bookstores 55934 -booktitle 56791 -bookwyrm 61699 -bool 53934 -boolean 49972 -boom 49001 -boombox 64905 -boomed 63419 -boomer 60952 -boomerang 60405 -boomers 56420 -booming 54706 -booms 61051 -boon 56827 -boondocks 64423 -boop 63077 -boos 62066 -boost 45193 -boosted 55107 -booster 53865 -boosters 59848 -boosting 54519 -boosts 53847 -boot 45504 -bootable 57199 -bootcamp 64657 -bootcut 63419 -booted 57278 -booth 50686 -booths 55130 -bootie 65452 -booties 60000 -booting 54902 -bootleg 58745 -bootlegs 63077 -bootloader 59630 -boots 47649 -bootstrap 57876 -bootstrapping 65452 -bootstrappr 64201 -boottime 59560 -booty 52584 -booze 55474 -boozy 65452 -bop 63077 -bor 63601 -borage 64905 -borane 65170 -borate 60492 -bord 62469 -bordeaux 64905 -border 45657 -bordered 57318 -bordering 55398 -borderless 64905 -borderline 55060 -borders 49119 -bore 49783 -boreal 60492 -borealis 63419 -bored 49626 -boredom 57046 -borehole 57084 -boreholes 61818 -borer 60000 -borers 63991 -bores 58523 -borhan 64657 -boric 61699 -borin 65452 -boring 48662 -boris 63601 -borlotti 60762 -born 40815 -borne 52571 -boro 65452 -borohydride 62196 -boron 55107 -borosilicate 60000 -borough 54096 -borough's 63245 -boroughs 60580 -borrachos 63077 -borrow 50966 -borrowed 52198 -borrower 53597 -borrower's 59702 -borrowers 52845 -borrowing 51985 -borrowings 61472 -borrows 60492 -bortezomib 65452 -bosch 59424 -bose 61940 -bosom 61472 -boson 59227 -bosonic 62196 -bosons 60492 -boss 46896 -boss's 61472 -bossa 63077 -bosses 53533 -boston 53565 -bot 52872 -botanic 65452 -botanical 55154 -botanicals 63077 -botaniques 60762 -botanist 63419 -botanists 63601 -botany 61472 -botched 58802 -both 32347 -bother 48918 -bothered 52051 -bothering 55604 -bothers 56687 -bothersome 61152 -botkier 63991 -botnet 62917 -botox 59164 -bots 53256 -bottle 45597 -bottled 53533 -bottleneck 57318 -bottlenecks 58745 -bottles 47879 -bottling 58860 -bottom 40378 -bottomed 62066 -bottoming 62917 -bottomless 61256 -bottoms 55178 -botulinum 58919 -boty 62917 -bought 40916 -bouillon 65452 -boul 65170 -boulder 60238 -bouldering 63601 -boulders 59702 -boulevard 58577 -boulevards 64423 -bounce 51521 -bounced 56262 -bouncer 61362 -bouncers 65170 -bounces 58065 -bouncing 54399 -bouncy 58577 -bound 43216 -boundaries 46729 -boundary 44380 -bounded 49854 -boundedness 61051 -bounding 56687 -boundless 59848 -bounds 51275 -bountiful 60405 -bounty 55299 -bouquet 54902 -bouquets 60405 -bourbon 62917 -bourgeois 58919 -bourgeoisie 65170 -bourke 62196 -bourne 63991 -bourses 63991 -bout 49353 -boutique 52062 -boutiques 58017 -bouton 64423 -bouts 57440 -bouzouki 64905 -bovine 47672 -bovis 60238 -bow 49452 -bowed 57831 -bowel 49146 -bowels 60492 -bowie 63991 -bowing 60238 -bowl 47417 -bowled 59292 -bowler 59702 -bowlers 60580 -bowling 51570 -bowls 54380 -bows 55578 -bowzer 63991 -box 38486 -boxcar 63991 -boxed 55226 -boxer 55250 -boxers 59630 -boxes 44873 -boxing 52339 -boxset 64423 -boxshot 59227 -boxy 64201 -boy 42252 -boy's 54283 -boycott 55526 -boycotted 63601 -boycotting 63419 -boycotts 63601 -boyd 61152 -boyfriend 48300 -boyfriend's 61818 -boyfriends 58212 -boyhood 61584 -boyish 62613 -boys 43528 -boyz 57609 -bozo 58745 -bozok 63792 -bp 50033 -bpm 59560 -bps 59702 -br 49559 -bra 52315 -brace 54096 -braced 59630 -braceleftbig 65452 -bracelet 51974 -bracelets 56420 -braces 52141 -brachial 56080 -brachiopods 64905 -brachytherapy 59292 -bracing 57009 -bracket 49758 -bracketed 62917 -bracketing 64201 -brackets 51122 -brackish 59848 -bracteata 64657 -bracts 64657 -brad 56827 -bradford 62331 -bradley 60157 -brady 62917 -bradycardia 61818 -bradykinin 61472 -brag 57741 -bragged 65170 -bragging 57696 -brags 63077 -brahmi 64657 -braid 56899 -braided 56899 -braiding 62917 -braids 61362 -braille 64201 -brain 41525 -brain's 59774 -brainchild 59101 -brainer 64657 -brainless 64201 -brains 50923 -brainstem 58688 -brainstorm 59227 -brainstorming 59560 -brainwashed 62331 -brainwashing 63419 -brainwave 61472 -brainy 65452 -braised 58470 -brake 47803 -braked 65170 -brakes 51193 -braking 52927 -brambles 64201 -bran 55274 -branch 44551 -branche 62917 -branched 52387 -branches 46790 -branching 52996 -branchlets 61584 -brand 40800 -brand's 60078 -branded 51211 -brandi 62066 -branding 52375 -brandis 61584 -brandishing 63245 -brandixxx 63601 -brandnew 64905 -brandon 59560 -brands 42650 -brandy 57696 -brane 57653 -branes 61699 -bras 56080 -brash 61472 -brasil 60952 -brasileiro 62917 -brass 50013 -brasserie 64423 -brat 59227 -brated 65452 -bration 64423 -brats 62331 -bratty 65170 -braun 59164 -brava 64423 -bravado 64423 -brave 51034 -braved 61940 -bravely 58802 -bravery 58688 -braves 63077 -bravest 64657 -bravia 59357 -braving 63991 -bravo 60238 -bravura 65170 -brawl 57046 -brawls 64905 -brawn 63601 -brazed 65170 -brazen 60670 -brazenly 65170 -brazil 54813 -brazilian 56452 -brazing 62613 -brazzer 62613 -brazzers 60078 -bre 64657 -breach 48143 -breached 55178 -breaches 54902 -breaching 60321 -bread 46657 -breadboard 62469 -breadcrumb 61051 -breadcrumbs 62762 -breaded 62066 -breads 57566 -breadth 51700 -break 41092 -breakable 63419 -breakage 57122 -breakaway 58577 -breakbeat 62331 -breakdance 60952 -breakdancing 63419 -breakdown 48152 -breakdowns 57876 -breaker 53917 -breakers 59039 -breakeven 63991 -breakfast 45362 -breakfasts 55084 -breaking 44472 -breakout 56585 -breakouts 64423 -breakpoint 58919 -breakpoints 61362 -breaks 44980 -breakthrough 51211 -breakthroughs 56791 -breakup 57238 -breakups 63601 -breakwater 63419 -breast 42272 -breasted 58802 -breastfed 61940 -breastfeed 60952 -breastfeeding 54059 -breastmilk 63601 -breasts 50974 -breaststroke 64657 -breath 47784 -breathability 63077 -breathable 57122 -breathe 51783 -breathed 58365 -breather 61584 -breathes 59424 -breathing 48252 -breathless 61940 -breathplay 61699 -breaths 60238 -breathtaking 51434 -breathtakingly 63245 -bred 52635 -bree 64657 -breech 59560 -breechblock 58860 -breed 48586 -breeder 55821 -breeders 54560 -breeding 48182 -breeds 52141 -breeze 53796 -breezes 60238 -breezy 59292 -bref 61472 -bregma 65452 -breif 64657 -breil 63419 -breitling 64201 -bremsstrahlung 61699 -brenda 60762 -brendan 62196 -brenden 64423 -brent 64423 -brentwood 63419 -bres 65452 -bret 65170 -brethren 60492 -brett 60321 -breve 63792 -brevets 62196 -breville 65170 -brevis 61699 -brevity 61152 -brew 55849 -brewed 57524 -brewer 59101 -brewer's 65170 -breweries 61818 -brewers 60952 -brewery 57318 -brewing 56110 -brewpub 65170 -brewpubs 65452 -brews 60492 -brezina 63991 -brian 54519 -briana 63077 -brianna 62762 -brianorndorf 65452 -bribe 59101 -bribed 63991 -bribery 57653 -bribes 59630 -bribing 62762 -brick 48395 -bricked 63245 -bricklayer 62917 -bricks 54151 -brickwork 60762 -bridal 52509 -bride 50774 -bride's 58365 -bridegroom 60952 -brides 56080 -bridesmaid 58688 -bridesmaids 60157 -bridge 44323 -bridged 57831 -bridges 50906 -bridget 64201 -bridging 53182 -bridle 62331 -brie 63792 -brief 43276 -briefcase 61362 -briefed 56388 -briefer 64905 -briefing 52085 -briefings 55992 -briefly 47551 -briefs 53865 -brig 62331 -brigade 55323 -brigades 59774 -bright 44699 -brighten 56827 -brightened 63419 -brightening 60952 -brightens 61699 -brighter 52913 -brightest 54360 -brightly 55448 -brightness 50983 -brighton 56721 -brill 63991 -brillant 63991 -brillation 64423 -brilliance 56972 -brilliant 47626 -brilliantly 55821 -brim 59774 -brimming 60157 -brindle 64657 -brine 54399 -bring 38714 -bringing 43959 -brings 42943 -brink 54419 -briolette 65452 -briquettes 65170 -brisbane 59774 -brisk 56585 -brisket 62196 -briskly 61051 -bristle 57741 -bristles 58212 -bristling 65452 -bristol 58745 -bristuff 65170 -brit 61940 -britain 59848 -brite 60856 -britethorn 64201 -british 52521 -britney 52673 -brittany 60321 -brittle 54207 -brittney 62613 -brn 64657 -bro 52673 -broached 63792 -broad 43588 -broadband 46002 -broadcast 45417 -broadcasted 61472 -broadcaster 55526 -broadcasters 56862 -broadcasting 50726 -broadcasts 53952 -broaden 53613 -broadened 56721 -broadening 54226 -broadens 60492 -broader 47831 -broadest 54170 -broadly 51140 -broads 65452 -broadside 60670 -broadway 60952 -brocade 63601 -broccoli 56356 -brochure 49566 -brochures 52712 -brody 60157 -broertje 64423 -broil 62762 -broiled 62762 -broiler 57358 -broilers 62613 -broke 45907 -broken 43385 -broker 48741 -broker's 63601 -brokerage 52221 -brokerages 64905 -brokered 60492 -brokering 62196 -brokers 50409 -broking 61256 -broly 62469 -bromide 52805 -bromides 63792 -brominated 65170 -bromine 58979 -bromo 64905 -bromocresol 63601 -bromocriptine 64657 -bromophenol 63991 -bronchi 63991 -bronchial 53501 -bronchiectasis 65452 -bronchiolitis 62066 -bronchitic 64423 -bronchitis 57358 -bronchoalveolar 59848 -bronchoconstriction 64423 -bronchogenic 63245 -bronchopulmonary 61940 -bronchoscopy 62066 -bronchospasm 64905 -bronchus 62066 -bronco 64201 -bronx 60856 -bronze 50545 -brooch 59227 -brooches 63601 -brood 58745 -brooding 59923 -broods 63077 -brook 59424 -brooke 56791 -brooklyn 57399 -brooklynvegan 64905 -brooks 57970 -broom 57440 -broomrape 64201 -brooms 64905 -bros 58262 -broth 52164 -brotha 63245 -brothel 58365 -brothels 59774 -brother 44068 -brother's 55130 -brotherhood 59491 -brotherly 63991 -brothers 47218 -brought 40141 -brow 59039 -broward 63601 -brown 43899 -browned 60670 -brownfield 59702 -brownie 60238 -brownies 59702 -browning 60405 -brownish 59227 -browns 59923 -brownstone 63991 -brows 62469 -browse 41418 -browsed 57923 -browser 38104 -browser's 50983 -browsers 49376 -browsing 46282 -bruce 57199 -brucei 60670 -brug 60157 -bruger 63245 -bruins 65170 -bruise 61256 -bruised 58162 -bruises 58212 -bruising 59101 -bruit 58632 -brunch 54581 -brunet 61472 -brunette 52484 -brunettes 61699 -bruni 63792 -bruno 61699 -brunswick 63419 -brunt 60670 -bruschetta 64423 -brush 47980 -brushed 54114 -brushes 53597 -brushing 55578 -brushless 61152 -brussels 63077 -brusspup 63792 -brutal 51492 -brutality 57399 -brutally 56935 -brute 57970 -bryan 59039 -bryant 60670 -bryce 62917 -bryozoan 65452 -bryozoans 64657 -bs 59227 -bsg 64423 -bt 54499 -btitracker 61472 -btn 61584 -bts 63792 -btu 63245 -btw 54321 -bu 53813 -buat 65452 -bub 61818 -bubba 61940 -bubble 47784 -bubbled 60321 -bubblegum 63245 -bubbles 51660 -bubbling 57923 -bubbly 58365 -bubonic 65452 -bubs 65452 -buccal 58113 -buchanan 62917 -buchen 65170 -buchos 62066 -buck 52996 -bucked 64423 -bucket 51104 -buckets 56756 -buckeye 63077 -bucking 61940 -buckle 55060 -buckled 59774 -buckles 57923 -buckling 57741 -bucks 50742 -buckskin 63245 -bucksport 63601 -buckthorn 62066 -bucktown 60078 -buckwheat 52832 -buckwild 60321 -buckworks 62613 -bucky 51985 -buco 64423 -bucolic 64905 -bud 53613 -budapest 63601 -buddha 61584 -buddhism 63245 -buddhist 62469 -buddies 52085 -budding 54439 -buddy 48017 -buddymarks 65452 -budesonide 65170 -budge 63601 -budget 42159 -budgetary 54643 -budgeted 56140 -budgeting 56551 -budgets 51166 -buds 54005 -budsimmons 64201 -buen 57785 -buena 57278 -buenas 62613 -bueno 57482 -buenos 61362 -buff 54245 -buffalo 55060 -buffaloes 63991 -buffed 63601 -buffer 43291 -buffered 52913 -buffering 55604 -buffers 54341 -buffet 50974 -buffets 61051 -buffett 57358 -buffing 62331 -buffs 57440 -buffy 60670 -bug 45243 -bug's 63077 -bugfix 62762 -bugfixes 63601 -bugged 61818 -bugger 56935 -buggered 63792 -buggers 62762 -buggery 58802 -buggies 62196 -bugging 59774 -buggy 54419 -bugle 62762 -bugs 48199 -bugzilla 61940 -buh 64201 -buhay 62331 -buick 63419 -build 39214 -buildCollection 64905 -builder 49184 -builder's 61699 -builders 50591 -buildin 64905 -building 37664 -building's 55877 -buildings 44167 -builds 48165 -buildup 55963 -built 39526 -builtin 60952 -buisness 62066 -bukkake 57238 -bul 65170 -bulb 50328 -bulbar 63792 -bulbous 61584 -bulbs 51303 -bulgaria 61256 -bulgarian 62469 -bulgaricus 64905 -bulge 56262 -bulged 64657 -bulges 62917 -bulging 58860 -bulimia 60157 -bulimic 65452 -bulk 44451 -bulked 65452 -bulkhead 59227 -bulkheads 63245 -bulking 60762 -bulky 54245 -bull 49972 -bull's 62331 -bullae 64423 -bulldog 60078 -bulldogs 65170 -bulldozed 64423 -bulldozer 63419 -bulldozers 65170 -bullet 47143 -bulleted 65452 -bulletin 49841 -bulletins 55849 -bulletproof 61362 -bullets 54041 -bullfiddle 63792 -bullied 57876 -bullies 58860 -bullion 61152 -bullish 57831 -bullock 62469 -bullous 60238 -bullpen 59923 -bulls 53679 -bullshit 56388 -bully 55992 -bullying 53746 -bulova 65170 -bulwark 64201 -bum 54188 -bumble 61362 -bumbling 62331 -bummed 60856 -bummer 63077 -bump 50553 -bumped 53830 -bumper 51349 -bumpers 57609 -bumpersticker 62066 -bumping 57609 -bumps 52832 -bumpy 59357 -bums 59848 -bun 58417 -buna 64905 -bunch 45867 -bunched 61152 -bunches 58919 -bundle 48501 -bundled 53613 -bundles 52256 -bundling 57482 -bundy 64905 -bung 65452 -bungalow 54188 -bungalows 59923 -bungee 59702 -bungie 63419 -bungled 63601 -bunk 56324 -bunker 57009 -bunkers 62196 -bunks 61472 -bunnies 57318 -bunny 50718 -bunnyhero 64423 -buns 59164 -bunt 63419 -bunting 65452 -buoy 59227 -buoyancy 59164 -buoyant 55821 -buoyed 62613 -buoys 62469 -bupivacaine 58745 -buprenorphine 63601 -bupropion 60580 -bur 59848 -burberry 61362 -burch 63991 -burda 64905 -burden 47211 -burdened 59164 -burdens 55323 -burdensome 61152 -burdock 58065 -bureau 52858 -bureau's 64905 -bureaucracies 64905 -bureaucracy 56452 -bureaucrat 65170 -bureaucratic 56110 -bureaucrats 59357 -bureaus 60157 -burg 64657 -burgdorferi 61584 -burgeoning 56388 -burger 53796 -burgers 55154 -burgh 63601 -burglar 59227 -burglaries 60952 -burglars 60762 -burglary 56200 -burgundy 58470 -burial 51985 -burials 60321 -buried 48021 -burke 59357 -burl 63601 -burlap 63419 -burlesque 58632 -burlington 64657 -burly 62196 -burma 62066 -burn 44954 -burned 49146 -burner 50774 -burners 55299 -burnett 64905 -burnin 64905 -burning 45879 -burnings 65452 -burnished 63419 -burnout 58632 -burns 51257 -burnt 52635 -burp 61818 -burr 62066 -burrito 62917 -burritos 62917 -burrow 60000 -burrowed 64423 -burrowing 60492 -burrows 61051 -burs 64657 -bursa 63245 -bursaries 62066 -bursary 65170 -bursitis 63077 -burst 48851 -bursting 54499 -bursts 52913 -bursty 64905 -burton 60405 -bury 54360 -burying 59101 -bus 42693 -busadmin 62469 -busca 63077 -buscando 64201 -buscar 62331 -buses 50227 -bush 48161 -bushel 61699 -bushels 60952 -bushes 58162 -bushfire 64201 -bushing 58365 -bushings 60238 -bushland 64423 -bushy 59848 -busier 60670 -busiest 54924 -busily 62917 -business 32918 -business's 60000 -businessMOBILE 63245 -businesses 41350 -businesses's 63991 -businesslike 64905 -businessman 54059 -businessmen 56262 -businesspeople 63419 -busing 64423 -buspar 61152 -buspirone 62613 -buss 65170 -busses 59227 -bussiness 63419 -bust 51303 -busta 64905 -busted 54341 -buster 58523 -busters 63991 -bustier 64657 -busting 57831 -bustle 58860 -bustling 56200 -busts 58523 -busty 50898 -busy 44134 -but 26998 -butadiene 60321 -butalbital 62469 -butane 61940 -butanol 63792 -butch 58212 -butcher 57970 -butcher's 64905 -butchered 62762 -butchering 64423 -butchers 63601 -butik 63601 -bution 57238 -butions 61940 -butler 58860 -buts 63601 -butt 48751 -butter 47518 -buttercream 64905 -buttered 60856 -butterflies 55578 -butterfly 51804 -buttermilk 59923 -butternut 62331 -butters 64657 -butterscotch 61818 -buttery 59702 -buttfuck 64905 -butthole 65452 -buttock 62917 -buttocks 59227 -button 39430 -buttoned 62331 -buttons 45102 -buttress 62613 -buttressed 63419 -buttresses 64905 -butts 56388 -butyl 56485 -butylated 62196 -butylene 65452 -butyrate 60492 -butyric 65170 -buxom 64423 -buy 35012 -buyback 60762 -buyer 45415 -buyer's 47931 -buyers 45133 -buyin 64657 -buying 41218 -buyout 56050 -buyouts 60670 -buys 49626 -buysell 64657 -buzz 47235 -buzzed 63419 -buzzer 60580 -buzzing 56170 -buzzword 63077 -buzzwords 64423 -bv 56231 -bw 57399 -bx 61699 -by 21099 -bycatch 60952 -bye 50227 -byelection 64423 -byes 61584 -byez 63601 -bygone 59560 -bylaw 62066 -bylaws 57238 -byline 62196 -bynes 64423 -byob 64657 -bypass 48501 -bypassed 58688 -bypasses 59923 -bypassing 57566 -byproduct 59164 -byproducts 61362 -byrne 65170 -byron 64201 -bystander 60321 -bystanders 64905 -byte 51741 -bytes 43721 -bythe 60952 -byway 65452 -byzantine 64423 -bz 62066 -búsqueda 63419 -c 38595 -c'est 55992 -c'mon 61051 -c'è 64657 -cADPR 64423 -cAMP 54902 -cD 65452 -cDNA 46818 -cDNAs 55014 -cGMP 56356 -cGy 63991 -cKO 61152 -cM 61051 -cMarket 64905 -cPLA 61940 -cPanel 58688 -cRNA 62331 -cSMAC 64905 -cURL 65170 -ca 48841 -caBIG 63601 -caCORE 61256 -caDSR 63991 -cab 50799 -cabal 58262 -caballo 64657 -cabana 65452 -cabaret 59101 -cabbage 55684 -cabbie 64423 -cabelas 63792 -cabernet 62469 -cabeza 61940 -cabin 48701 -cabinet 47702 -cabinetry 61152 -cabinets 51541 -cabins 55474 -cable 41726 -cable's 65452 -cabled 62762 -cables 48063 -cabling 56356 -cabo 63792 -cabochon 63419 -cabrio 64657 -cabriolet 64657 -cabs 60078 -cacao 62469 -cach 64657 -cache 47363 -cached 52546 -caches 57238 -cachet 64657 -caching 55226 -cacodylate 62066 -cacophony 62762 -cacti 63077 -cactus 58470 -cacy 64423 -cad 59702 -cada 57696 -cadastral 59630 -cadaver 61152 -cadaveric 60952 -cadavers 63991 -caddie 63245 -caddis 65170 -caddy 61362 -cadence 60856 -cadet 58417 -cadets 58632 -cadherin 61940 -cadillac 60670 -cadmas 61584 -cadmium 54459 -cadre 57358 -cadres 62762 -caduceus 64423 -caecum 61818 -caedesv 63419 -cael 63419 -caesar 61472 -caesarean 58262 -cafe 50328 -cafes 56452 -cafeteria 56972 -caffeic 64657 -caffeinated 63792 -caffeine 51620 -caffra 64423 -café 55178 -cafés 61940 -cag 64423 -cagA 65170 -cage 48996 -caged 58470 -cages 53533 -cahoots 65452 -cai 64905 -caida 63991 -caidas 62613 -cain 63601 -caine 64657 -cairn 62066 -cairo 63792 -caisson 59702 -caja 65170 -cajun 60856 -cake 46398 -cakes 52040 -cakewalk 64201 -cal 49541 -calBox 57482 -calBoxT 57482 -calabro 64905 -calamari 61584 -calamity 60000 -calbindin 64657 -calc 59491 -calcareous 59630 -calcd 62331 -calcein 65170 -calcification 56420 -calcifications 58919 -calcified 59101 -calcination 60238 -calcined 57970 -calcineurin 63601 -calcining 63792 -calcio 63601 -calcite 58632 -calcitonin 57440 -calcitriol 65452 -calcium 44542 -calcul 65452 -calculate 45504 -calculated 41047 -calculates 53124 -calculating 48776 -calculation 46125 -calculations 46234 -calculator 47438 -calculators 53316 -calculi 61472 -calculus 54835 -calcutta 64423 -caldesmon 64905 -caleba 64905 -calendar 42197 -calendars 48395 -calender 58162 -calf 50734 -calfskin 64905 -calgary 59630 -calgon 62917 -cali 59424 -caliber 53934 -calibrate 57009 -calibrated 52244 -calibrating 58162 -calibration 47297 -calibrations 61051 -calibrator 61362 -calibrators 63792 -calibre 57358 -calico 63601 -calidad 62613 -california 49223 -californica 62196 -californication 62196 -caliper 59491 -calipers 61152 -calito 63792 -call 35506 -calla 64657 -callable 63419 -callback 55552 -callbacks 64423 -calle 60670 -called 35908 -caller 53438 -caller's 63245 -callerid 65170 -callers 54302 -callicut 60670 -calligrapher 65452 -calligraphic 64423 -calligraphy 60157 -callin 64423 -calling 42929 -callosum 63792 -callous 61051 -callout 63991 -calls 40732 -callus 59357 -cally 53517 -calm 49157 -calmed 61362 -calmer 61940 -calming 56262 -calmly 58365 -calmness 62469 -calmodulin 61818 -calms 62331 -caloric 58113 -calorie 52327 -calories 48856 -calorific 64201 -calorimeter 59357 -calorimetric 63601 -calorimetry 59357 -calpain 59164 -cals 63077 -caluclate 58860 -calves 54770 -calvin 60492 -calving 60000 -calyx 62196 -cam 47321 -camara 62917 -camaraderie 59630 -camaro 61940 -camber 62066 -cambiar 64905 -cambio 62762 -cambodia 65170 -cambodian 64201 -cambridge 57524 -camcorder 53392 -camcorders 56652 -came 37483 -camel 55448 -cameleon 61940 -camellia 65170 -camels 60856 -cameltoe 63419 -cameo 56972 -cameos 62613 -camera 40969 -camera's 57358 -cameraman 60492 -cameraphone 63991 -cameras 46379 -cameron 60000 -camfrog 64201 -camila 63991 -camilla 64201 -camille 64905 -camino 62613 -camisole 63991 -camisoles 65170 -camo 57524 -camouflage 56200 -camouflaged 62613 -camp 45378 -camp's 64905 -campaign 41244 -campaign's 58860 -campaigned 58212 -campaigner 62331 -campaigners 60762 -campaigning 54499 -campaigns 48872 -campbell 57566 -camped 57482 -campeon 65170 -camper 56080 -campers 56110 -campervan 65170 -campervans 64423 -campestris 65452 -campfire 60492 -campground 55849 -campgrounds 60580 -camping 49124 -campo 62196 -campos 63991 -campru 64423 -camps 51113 -campsite 58417 -campsites 60157 -campus 45143 -campuses 53052 -campy 64423 -camry 65170 -cams 52982 -camshaft 56756 -can 25817 -can't 36372 -cana 65170 -canada 48021 -canadensis 62066 -canadian 52472 -canadien 64201 -canadienne 63419 -canal 49867 -canals 55877 -canard 65452 -canarias 65452 -canary 59923 -canazn 63991 -canbe 65170 -canberra 63792 -cance 61699 -cancel 45253 -cancelation 62613 -canceled 53226 -canceling 57923 -cancellation 49336 -cancellations 55604 -cancelled 49906 -cancelling 60405 -cancellous 63245 -cancels 56452 -cancer 39264 -cancerAcute 64423 -cancerous 57440 -cancers 51078 -cancion 55738 -canciones 52164 -canción 58417 -cancun 62196 -cand 63991 -candelabra 64905 -candesartan 64201 -candice 63792 -candid 54078 -candida 59630 -candidacy 58313 -candidal 64423 -candidate 42973 -candidate's 54992 -candidates 43461 -candidature 64423 -candidly 62066 -candids 63601 -candied 61472 -candies 60238 -candle 50074 -candlelight 60157 -candles 52107 -candor 61818 -candy 48726 -cane 52818 -canes 57876 -canescens 64905 -canine 52107 -canines 61051 -caninum 59848 -canis 63245 -canister 55934 -canisters 62917 -canker 62613 -cannabinoid 63419 -cannabis 55934 -canned 52107 -canner 62917 -cannery 63419 -cannibal 60856 -cannibalism 62331 -cannibalistic 64201 -canning 57696 -cannon 55657 -cannons 60157 -cannot 36216 -cannula 57399 -cannulae 64657 -cannulated 60856 -cannulation 60952 -canny 62762 -canoe 54924 -canoeing 60157 -canoes 59560 -canola 55526 -canon 51211 -canonical 53470 -canonization 64423 -canons 61699 -canopies 61472 -canopy 51867 -cans 51473 -cant 43695 -canta 60580 -cantaloupe 65170 -cantando 60856 -cantante 62762 -cantar 65452 -cantata 65452 -canted 65170 -canteen 60157 -canteens 65170 -cantilever 58262 -cantilevered 63077 -cantly 55250 -canto 63077 -canton 58365 -cantons 61472 -canvas 49758 -canvases 60670 -canvass 61472 -canvassed 64905 -canvassing 62331 -canyon 56080 -canyons 61584 -canzone 60078 -canzoni 60238 -cap 45560 -capabilities 45510 -capability 46387 -capable 42995 -capacitance 52096 -capacitances 62196 -capacities 51640 -capacitive 56231 -capacitor 49979 -capacitors 53256 -capacity 40650 -capcom 63419 -cape 54499 -capecitabine 63792 -capella 63991 -capensis 62762 -caper 63245 -capers 61051 -capes 61940 -capillaries 56388 -capillary 49854 -capita 51953 -capital 40913 -capital's 60856 -capitalisation 62196 -capitalise 61940 -capitalised 64905 -capitalism 53917 -capitalist 54380 -capitalists 59923 -capitalization 56687 -capitalizations 40972 -capitalize 55299 -capitalized 57009 -capitalizes 64201 -capitalizing 60580 -capitals 56618 -capitis 59424 -capitol 58688 -capitulo 58470 -caplet 64423 -capo 64657 -capone 65170 -capped 53646 -cappella 61256 -capping 54459 -cappuccino 59702 -capresso 63419 -capri 61152 -capricious 62762 -capricorn 62066 -capris 62613 -caps 49405 -capsaicin 58745 -capsicum 61362 -capsid 59101 -capsized 62917 -capsizes 64423 -capsomeres 64905 -capstone 63792 -capsular 56518 -capsulatum 64657 -capsule 50974 -capsules 52509 -capsulorhexis 64423 -captain 49458 -captain's 61051 -captaincy 65170 -captained 63077 -captains 55130 -captcha 52648 -caption 53813 -captioned 63245 -captioning 64201 -captions 56110 -captivate 62196 -captivated 58745 -captivates 65452 -captivating 57199 -captive 53501 -captives 62331 -captivity 57876 -captopril 57440 -captors 64423 -capture 43999 -captured 46772 -captures 49411 -capturing 50815 -capuchin 62469 -car 36235 -car's 54706 -cara 59848 -características 65170 -carafe 63077 -caramel 54114 -caramelized 60856 -carapace 63792 -carat 58313 -carats 61584 -caravan 53361 -caravans 60762 -carb 53346 -carbachol 62469 -carbadox 64905 -carbamate 60580 -carbamazepine 61362 -carbene 65452 -carbide 53256 -carbides 58262 -carbine 63792 -carbocation 64423 -carbocyclic 59702 -carbodiimide 65452 -carbofuran 64905 -carbohydrate 52303 -carbohydrates 54151 -carbon 41409 -carbonaceous 60078 -carbonate 51590 -carbonated 58313 -carbonates 60580 -carbonation 63792 -carbonic 59491 -carbonium 65452 -carbonized 64657 -carbons 56687 -carbonyl 53109 -carbonyls 62331 -carboplatin 59848 -carboxy 63991 -carboxykinase 60952 -carboxyl 56080 -carboxylase 61818 -carboxylate 58365 -carboxylates 65170 -carboxylic 54023 -carboxymethyl 62762 -carboxymethylcellulose 64905 -carbs 56140 -carburetor 59292 -carburetors 64905 -carburization 64423 -carburized 63792 -carburizing 64905 -carcass 57653 -carcasses 58688 -carcinoembryonic 61940 -carcinogen 58979 -carcinogenesis 58523 -carcinogenic 56972 -carcinogenicity 63077 -carcinogens 59702 -carcinoid 64201 -carcinoma 47388 -carcinomas 54601 -card 37607 -card's 60670 -cardamom 59848 -cardboard 51492 -cardbus 63245 -carded 59630 -cardholder 59923 -cardholder's 65170 -cardholders 60856 -cardia 61256 -cardiac 44681 -cardial 63792 -cardiff 63077 -cardigan 57653 -cardinal 56721 -cardinality 59630 -cardinals 64423 -carding 62613 -cardio 55500 -cardiocarpoides 65452 -cardiogenic 63601 -cardiologist 58470 -cardiologists 62613 -cardiology 58365 -cardiomyocyte 63419 -cardiomyocytes 59357 -cardiomyopathic 64657 -cardiomyopathy 57084 -cardioplegic 63991 -cardiopulmonary 55657 -cardiorespiratory 61584 -cardiothoracic 65170 -cardiovagal 64201 -cardiovascular 46963 -cardioversion 62469 -cardioverter 63991 -cardizem 64905 -cardkey 64657 -cards 40968 -cardsmore 64905 -cardstock 64905 -care 35536 -cared 51996 -career 40374 -careers 46370 -carefree 60670 -careful 45497 -carefull 64657 -carefully 44440 -caregiver 54581 -caregivers 53796 -caregiving 59292 -careless 56935 -carelessly 63419 -carelessness 63077 -carer 59164 -carer's 65170 -carers 54643 -cares 49952 -caress 61699 -caressed 63601 -caressing 63245 -caret 65452 -caretaker 57831 -caretakers 62066 -caretaking 65452 -carey 56420 -cargo 48756 -cargoes 61472 -caribbean 58860 -caribeños 64201 -caribou 59491 -caricature 59101 -caricatures 60238 -caries 55226 -carillon 63792 -caring 47496 -carinii 60670 -carious 63419 -carisoprodol 54341 -carl 58802 -carla 61256 -carlin 63245 -carlo 61699 -carlos 56687 -carlosecezar 65170 -carly 63991 -carmaker 63077 -carmakers 62613 -carmel 58745 -carmella 64657 -carmen 58470 -carnage 59702 -carnal 61362 -carnation 62196 -carnaval 62066 -carne 61940 -carnelian 64201 -carnitine 57923 -carnival 52459 -carnivals 63245 -carnivore 63077 -carnivores 63419 -carnivorous 61584 -carol 58212 -carole 64905 -carolina 54226 -caroline 63991 -carols 61362 -carolyn 63991 -carotene 63601 -carotenoid 60762 -carotenoids 57482 -carotid 50365 -carotovora 64423 -carousel 58919 -carp 57696 -carpal 55060 -carpark 62762 -carpenter 57084 -carpenters 61472 -carpentry 60238 -carpet 48552 -carpeted 60762 -carpeting 59491 -carpets 56356 -carping 65170 -carpool 59164 -carpooling 65170 -carport 62196 -carr 62331 -carrentals 63419 -carrera 60078 -carretera 65170 -carriage 52648 -carriages 62066 -carriageway 60000 -carribean 64905 -carrie 60492 -carried 40230 -carrier 43912 -carrier's 60078 -carriers 47395 -carries 46745 -carrito 62066 -carroll 64423 -carrot 54188 -carrots 54969 -carry 41322 -carrying 44062 -carryout 64657 -carryover 61362 -cars 40886 -carsales 58860 -carsguide 56862 -carson 62613 -carsondanfield 62917 -cart 39910 -cartCopyright 62613 -carta 64905 -carte 56021 -carted 64423 -cartel 57482 -cartels 62469 -carter 57318 -cartes 63792 -cartesian 61818 -cartier 65170 -cartilage 51368 -cartilaginous 62331 -carting 65452 -cartographic 63245 -cartographica 64657 -cartography 61699 -carton 56518 -cartons 57696 -cartoon 47214 -cartoonish 61051 -cartoonist 60157 -cartoonists 62331 -cartoons 49614 -cartridge 49411 -cartridges 51358 -carts 55299 -carve 56652 -carved 51396 -carver 63991 -carves 64201 -carving 53952 -carvings 59702 -carwano 64905 -carwash 64657 -cary 64201 -cas 57440 -casa 55423 -casas 60762 -cascada 65170 -cascade 52423 -cascaded 58417 -cascades 58113 -cascading 56935 -cascode 62917 -case 33929 -case's 64423 -cased 61152 -casei 63991 -casein 56485 -caseload 59774 -casement 62066 -casero 63991 -cases 38390 -casestudies 62469 -casework 65452 -caseworker 61152 -casey 60856 -cash 41376 -cashback 57199 -cashed 60000 -cashew 62331 -cashflow 61051 -cashier 52399 -cashier's 58860 -cashiers 60670 -cashing 57831 -cashless 64905 -cashmere 58417 -casi 63601 -casing 51610 -casings 61256 -casino 46237 -casinos 52291 -casio 58523 -cask 63245 -casket 57741 -caskets 60856 -caso 59848 -caspase 54924 -caspases 61256 -casper 64423 -caspian 63991 -cassandra 64905 -cassava 59702 -casserole 55711 -casseroles 65452 -cassette 50758 -cassettes 56110 -cassidy 62331 -cassie 62331 -cast 42333 -castaway 63991 -caste 55348 -casted 61362 -castepisode 63601 -caster 58313 -casters 60157 -castes 63077 -castigated 65452 -castigo 65452 -castillo 65170 -casting 48736 -castings 58365 -castle 50461 -castles 57440 -castor 56687 -castors 65452 -castrate 59630 -castrated 60405 -castration 58417 -castro 62762 -casts 53024 -casual 47342 -casually 56388 -casualties 54770 -casualty 56324 -cat 44423 -cat's 57084 -catabolic 60670 -catabolism 59560 -cataclysmic 63077 -catacombs 64905 -catagory 65170 -catalase 56518 -catalina 61699 -catalog 45889 -cataloged 62066 -cataloging 58212 -catalogs 53470 -catalogue 47871 -catalogued 60952 -catalogues 54519 -cataloguing 63991 -catalyse 65452 -catalysed 61818 -catalyses 64201 -catalysis 56585 -catalyst 48821 -catalysts 52534 -catalytic 48954 -catalytically 61152 -catalyze 57399 -catalyzed 54114 -catalyzes 58017 -catalyzing 61699 -català 57278 -catamaran 60670 -catamarans 63792 -catapult 59848 -catapulted 61940 -catapults 65170 -cataract 56452 -cataracts 61362 -catastrophe 56827 -catastrophes 63419 -catastrophic 54151 -catatonia 64201 -catatonic 61818 -catch 43347 -catcher 56140 -catchers 62762 -catches 51502 -catching 49783 -catchment 54902 -catchments 60405 -catchphrase 64657 -catchy 55474 -cate 57122 -catechol 62613 -catecholamine 58065 -catecholamines 59923 -cated 55423 -categorical 55963 -categorically 60321 -categories 41839 -categorisation 63245 -categorise 61256 -categorised 58632 -categorization 56618 -categorize 51148 -categorized 50654 -categorizedby 55657 -categorizes 62762 -categorizing 62066 -category 39657 -cater 51473 -catered 55423 -caterer 59039 -caterers 61940 -catering 49572 -caterpillar 57831 -caterpillars 60492 -caters 53952 -cates 60405 -catfight 61940 -catfish 59164 -cath 62762 -catharsis 64201 -cathartic 63601 -cathedral 54835 -cathedrals 61472 -cathepsin 56585 -catherine 59227 -catheter 49802 -catheterization 57160 -catheters 55526 -cathode 52597 -cathodes 61472 -cathodic 62917 -cathodoluminescence 64905 -catholic 55963 -catholics 64905 -catholique 64423 -catholyte 61472 -cathy 61699 -cating 61818 -cation 49745 -cational 62066 -cationic 54540 -cations 51909 -catnip 64657 -cats 46708 -catsuit 65170 -cattle 48543 -catty 65170 -catwalk 58802 -caucasian 63419 -caucus 56140 -caucuses 61362 -caudal 54835 -caudally 63245 -caudate 57785 -caught 43483 -cauldron 60157 -cauliflower 59630 -caulk 62469 -caulking 64201 -causa 62196 -causal 51425 -causality 58919 -causally 59227 -causation 58212 -causative 56262 -cause 37788 -caused 40066 -causes 41872 -causeway 62917 -causing 43954 -caustic 58113 -caustics 62613 -caution 50185 -cautionary 57238 -cautioned 54992 -cautions 58313 -cautious 53501 -cautiously 58979 -cava 57278 -caval 61940 -cavalier 61818 -cavalieri 62331 -cavalry 59357 -cave 50758 -caveat 58417 -caveats 60762 -caved 62917 -caveman 61699 -cavemen 63792 -cavern 62917 -cavernous 56899 -caverns 64423 -caverta 65452 -caves 54643 -caviar 59630 -caving 62196 -cavitation 57785 -cavities 54560 -cavity 47570 -cavopulmonary 64423 -cavum 65170 -cayenne 60762 -caylee 65170 -cb 58688 -cbc 64657 -cbhoughnc 64423 -cbmc 65452 -cboshtv 58979 -cbr 62762 -cbs 59848 -cbse 62469 -cbt 63077 -cc 49939 -cca 65452 -cctv 62469 -cd 44418 -cd's 59702 -cddvdbanner 65452 -cdf 64423 -cdkey 62469 -cdl 61472 -cdma 63792 -cdr 63245 -cdrom 63792 -cdroot 62917 -cds 55250 -ce 46944 -cease 52521 -ceased 52765 -ceasefire 58688 -ceaselessly 63991 -ceases 56485 -ceasing 60405 -cebu 63792 -cecal 65452 -cece 65452 -cecilia 64657 -cect 61362 -ced 65170 -cedar 54341 -cedars 65452 -cede 63245 -ceded 62613 -cedex 64657 -ceding 63245 -cedure 61256 -cedures 63077 -cee'd 63792 -ceed 64423 -ceeds 64905 -cefdinir 63077 -cefepime 62066 -ceftazidime 61940 -ceftriaxone 58688 -cefuroxime 63245 -ceiling 48169 -ceilings 54188 -ceils 63419 -ceive 64905 -ceived 57696 -ceiving 64201 -cel 58688 -cela 64657 -celeb 51985 -celebrate 46348 -celebrated 48902 -celebrates 50199 -celebrating 49400 -celebration 48084 -celebrations 52584 -celebratory 59848 -celebrex 55060 -celebrite 64423 -celebritete 64905 -celebrities 49141 -celebrity 45486 -celebrity's 63792 -celebs 52351 -celecoxib 62196 -celeritete 64905 -celeron 63419 -celery 55821 -celestial 56899 -celexa 55526 -celia 64201 -celiac 58919 -celibacy 64905 -celine 60321 -cell 35868 -cell's 61051 -cellar 56791 -cellars 63792 -celle 64201 -celled 64201 -cellist 62331 -cello 57199 -cellophane 62917 -cellphone 53762 -cellphones 58745 -cells 35864 -cellulaire 62917 -cellular 44116 -cellularity 65452 -cellulase 59702 -cellulite 62331 -cellulitis 64201 -celluloid 63601 -cellulose 50270 -cellulosic 58802 -celsius 63792 -celtic 58523 -celtics 64905 -celui 63991 -celular 61256 -cement 49135 -cementation 65452 -cemented 55552 -cementing 61472 -cementite 64905 -cementless 63077 -cements 59630 -cementum 63419 -cemetary 62066 -cemeteries 59039 -cemetery 52363 -cen 65452 -cena 60405 -cence 59424 -censor 58979 -censored 56791 -censoring 59702 -censors 63077 -censorship 54792 -censure 60238 -censured 62331 -census 48491 -censuses 62613 -cent 42888 -centage 60580 -centenary 60157 -centennial 58065 -center 38614 -center's 58162 -centered 49246 -centerfield 61818 -centering 56170 -centerline 58860 -centerpiece 56420 -centerpieces 63601 -centers 45542 -centertube 60000 -centile 63419 -centimeter 59292 -centimeters 57609 -centimetre 65170 -centimetres 61699 -cently 62066 -central 39368 -centrale 63601 -centralised 58802 -centrality 59101 -centralization 61818 -centralize 64657 -centralized 52107 -centralizing 63077 -centrally 52233 -centration 56652 -centrations 59101 -centre 42003 -centre's 61818 -centred 54706 -centrepiece 63991 -centrepieces 64905 -centres 47269 -centric 60078 -centrifugal 53695 -centrifugation 51783 -centrifuge 56231 -centrifuged 50966 -centrifuges 63077 -centrifuging 62917 -centriole 64201 -centripetal 63792 -centrist 63245 -centro 61818 -centroid 58365 -centromere 61472 -centromeric 61584 -centrosome 58523 -centrosomes 65170 -centrum 64201 -cents 47424 -centuries 50387 -centurion 64657 -century 43410 -century's 61699 -ceo 59039 -cephalad 64905 -cephalexin 61051 -cephalic 60762 -cephaloceles 65452 -cephalometric 65452 -cephalopods 64423 -cephalosporin 62066 -cephalosporins 63419 -cephalothin 63419 -cepstral 62196 -cept 58417 -ception 63077 -ceptor 64423 -cepts 63991 -cer 61584 -ceramic 47656 -ceramics 53899 -cerca 60762 -cereal 49291 -cereals 57046 -cerebellar 54813 -cerebellectomy 64423 -cerebellum 59848 -cerebral 47496 -cerebrospinal 55711 -cerebrovascular 56585 -ceremonial 56652 -ceremonies 54170 -ceremony 47596 -cereus 63601 -cerevisiae 54078 -ceric 63419 -cerita 64201 -cerium 63245 -cern 64423 -cerned 60238 -cerning 63991 -cerns 64905 -cerry 64423 -cers 65170 -cert 61362 -certain 37054 -certainly 42344 -certains 64905 -certainty 52845 -certificate 44202 -certificated 59702 -certificates 48226 -certification 45556 -certifications 55373 -certified 42315 -certifies 55738 -certify 51293 -certifying 56791 -certiorari 59848 -certs 65170 -cervical 47867 -cervix 55500 -ces 56080 -cesT 64201 -cesarean 54170 -cesium 57696 -cess 56021 -cessation 53316 -cessed 64423 -cesses 58860 -cessful 62196 -cessfully 62917 -cessing 61472 -cessive 65452 -cet 59774 -cetera 63991 -ceteris 61472 -cetrorelix 64657 -cette 45877 -cetuximab 64905 -ceux 63792 -ceva 63792 -cewek 63601 -cf 56200 -cfg 62331 -cfm 57399 -cfnm 63792 -cforms 64905 -cfs 65170 -cfu 63991 -cg 61699 -cgay 64423 -cgi 51026 -ch 51963 -cha 56618 -chabaudi 62762 -chabert 61362 -chad 58979 -chadmattandrob 62469 -chaff 62762 -chaffeensis 61584 -chafing 56585 -chai 63077 -chaimFL 63419 -chain 41608 -chain's 61152 -chained 57741 -chaining 60762 -chains 47687 -chainsaw 58979 -chair 45806 -chaired 54264 -chairing 64423 -chairman 46622 -chairmanship 61256 -chairmen 62762 -chairperson 57970 -chairs 49179 -chairwoman 61940 -chaise 60000 -chaitanya 65452 -chakra 62331 -chalcedony 64423 -chalcogenide 62469 -chalcone 64657 -chalet 58313 -chalets 57831 -chaleur 65170 -chalga 61256 -chalice 62762 -chalk 55398 -chalkboard 62613 -chalked 62331 -chalky 64905 -challange 65170 -challenge 42367 -challenged 48771 -challenger 58065 -challengers 60405 -challenges 43877 -challenging 46247 -chamakh 63245 -chamber 45218 -chambered 63077 -chamberlin 63601 -chambers 50856 -chameleon 61699 -chamfer 65452 -chamfered 63245 -chamillionaire 64423 -chamomile 61584 -champ 55604 -champagne 52818 -champion 48576 -championed 58470 -championing 61940 -champions 52040 -championship 48548 -championships 54059 -champs 57482 -chan 59491 -chance 40279 -chanced 64201 -chancellor 57653 -chancellor's 65170 -chances 46699 -chandelier 59848 -chandeliers 60762 -chandler 64201 -chanel 57696 -chanelle 64201 -chang 62469 -change 33517 -changeHTTPPassword 64201 -changeable 60762 -changed 40389 -changelog 59774 -changements 64423 -changeover 59630 -changer 55992 -changers 64657 -changes 34341 -changeset 65170 -changing 41650 -chanical 61940 -chaning 63419 -channel 40633 -channel's 62917 -channeled 58313 -channeling 57785 -channelled 62066 -channelling 64657 -channels 43461 -chanson 59774 -chansons 60000 -chant 56420 -chante 64905 -chanted 60670 -chanteuse 65452 -chanting 57440 -chants 58979 -chaos 50492 -chaotic 52954 -chap 58313 -chapel 55107 -chapels 64657 -chaperone 58523 -chaperones 62066 -chaplain 60580 -chaplains 64905 -chapman 64657 -chapmandew 64657 -chapped 64657 -chaps 60238 -chapter 43649 -chapter's 63419 -chapters 48208 -chaque 62762 -char 49296 -character 40881 -character's 56324 -characterisation 56110 -characterise 58417 -characterised 50694 -characterising 64905 -characteristic 44553 -characteristically 58919 -characteristics 41488 -characterization 46766 -characterizations 59848 -characterize 49130 -characterized 43912 -characterizes 55526 -characterizing 54479 -characters 39923 -charcoal 54096 -chard 61256 -chardonnay 62066 -charge 39636 -chargeable 59923 -chargeback 63601 -charged 42188 -charger 50591 -chargers 56935 -charges 41977 -charging 48191 -chariot 58688 -chariots 63077 -charisma 58313 -charismatic 57238 -charitable 50568 -charities 53241 -charity 46107 -charity's 62196 -charitywater 59357 -charles 55526 -charleston 62762 -charley 65170 -charlie 55992 -charlotte 56652 -charm 49992 -charmed 59101 -charmer 63077 -charmeuse 63991 -charming 50270 -charmingly 63792 -charmonium 65170 -charms 55323 -charred 59923 -charrette 65452 -chars 54770 -charset 59702 -chart 44570 -charted 61152 -charter 49302 -chartered 54946 -chartering 63077 -charters 58017 -charting 55084 -charts 46471 -charveljunkie 61584 -chase 50164 -chased 54133 -chaser 62469 -chases 58688 -chasing 52280 -chasm 62196 -chassis 51303 -chaste 63077 -chastised 64423 -chastity 62196 -chat 43095 -chatboard 62331 -chatbox 59227 -chateau 61699 -chatroom 60238 -chatrooms 62066 -chats 55202 -chatted 58688 -chattel 64905 -chattels 65170 -chatter 57199 -chattering 63991 -chatting 51387 -chatty 63419 -chauffeur 59923 -chauffeurs 61818 -chav 63245 -chavez 62917 -che 52546 -cheap 40638 -cheaper 47314 -cheapest 47927 -cheaply 57566 -cheapo 63991 -cheat 48557 -cheated 55084 -cheater 61051 -cheaters 61699 -cheating 52387 -cheats 47392 -cheb 62917 -cheba 65452 -check 33363 -checkSURE 59227 -checkbook 60492 -checkbox 55738 -checkboxes 59292 -checked 44418 -checker 55849 -checkerboard 60405 -checkered 59774 -checkers 61699 -checkin 60580 -checking 44355 -checklist 52327 -checklists 58745 -checkout 48741 -checkouts 64905 -checkpoint 53762 -checkpoints 58365 -checks 46146 -checksum 57831 -checkup 60580 -checkups 63245 -cheddar 55250 -chee 64201 -cheek 54023 -cheeks 56293 -cheeky 57160 -cheep 60670 -cheer 51473 -cheered 55963 -cheerful 55552 -cheerfully 60000 -cheering 55037 -cheerleader 55738 -cheerleaders 55906 -cheerleading 57970 -cheers 50469 -cheery 61472 -cheese 45435 -cheeseburger 60580 -cheesecake 59039 -cheesecloth 64201 -cheeses 56388 -cheesesteak 65452 -cheesy 55348 -cheetah 59630 -chef 49452 -chef's 58313 -chefs 52496 -cheikh 64423 -chek 62917 -chelate 60670 -chelating 57970 -chelation 61699 -chelator 64657 -chelsea 57696 -chem 61256 -chemical 41128 -chemically 51166 -chemicals 46613 -chemiluminescence 57482 -chemiluminescent 62331 -chemin 63601 -chemise 63601 -chemisorption 63077 -chemist 57399 -chemistries 62762 -chemistry 47493 -chemists 58017 -chemo 57199 -chemoattractant 61472 -chemoattractants 65452 -chemoinformatics 65452 -chemokine 57046 -chemokines 60762 -chemonuclear 65170 -chemoprevention 65452 -chemopreventive 62917 -chemoradiation 62613 -chemoradiotherapy 64905 -chemoreceptor 63601 -chemoreceptors 63245 -chemoreflex 64201 -chemoselective 64905 -chemosensitivity 64905 -chemotactic 57009 -chemotaxis 57876 -chemotherapeutic 57399 -chemotherapy 49223 -chen 62613 -chenille 62196 -chennai 60670 -cheque 51814 -chequered 62917 -cheques 56687 -cher 59292 -cherish 55906 -cherished 55474 -cherishes 65170 -cherokee 59923 -cherries 57696 -cherriesrntberries 65170 -cherry 50129 -cherrywood 65452 -cheryl 61256 -ches 64657 -cheshire 63991 -chess 51060 -chest 45397 -chested 63792 -chester 61584 -chestnut 58523 -chestnuts 62196 -chests 60405 -cheung 63245 -chevrolet 57831 -chevron 55793 -chevy 56485 -chew 53779 -chewable 61152 -chewed 58688 -chewing 52062 -chews 59774 -chewy 60405 -chez 55849 -chi 54479 -chibi 63601 -chic 51541 -chica 61256 -chicago 51783 -chicas 59101 -chick 48084 -chicken 44764 -chickenpox 63991 -chickens 53934 -chickmcd 64905 -chickpea 60762 -chicks 50350 -chico 57696 -chicory 60238 -chided 65170 -chido 64657 -chief 42936 -chief's 60952 -chiefdoms 65452 -chiefly 54114 -chiefs 55423 -chien 63991 -chiens 65452 -chiffon 56791 -chihuahua 59101 -chiki 64423 -child 38324 -child's 46212 -childChild 65452 -childbearing 59923 -childbirth 56452 -childcare 52509 -childhood 46084 -childish 57609 -childless 62613 -childlike 63601 -children 35977 -children's 44547 -childrens 51104 -childs 58919 -chile 56899 -chiles 63077 -chili 53052 -chilies 62917 -chill 50782 -chilled 53646 -chiller 61584 -chillers 64905 -chilli 56231 -chillies 62917 -chillin 60405 -chilling 55130 -chillout 65170 -chills 57696 -chilly 55631 -chime 56756 -chimera 57653 -chimeras 62196 -chimeric 55849 -chimes 60321 -chiming 61940 -chimique 61699 -chimiques 63991 -chimney 53952 -chimneys 60856 -chimp 61256 -chimpanzee 60321 -chimpanzees 59357 -chimps 60762 -chin 52459 -china 45382 -chinatown 64423 -chinchilla 62917 -chine 62469 -chinensis 61699 -chines 63601 -chinese 49860 -chinks 64657 -chino 64201 -chinook 62762 -chins 65452 -chip 46253 -chip's 64201 -chipmunk 63245 -chipmunks 65452 -chipotle 63077 -chipped 57238 -chipper 61362 -chipping 58860 -chips 47679 -chipset 54770 -chipsets 60492 -chiral 52447 -chirality 63245 -chironomid 64423 -chiropractic 55107 -chiropractor 59424 -chiropractors 62196 -chiroptical 64201 -chirp 57609 -chirped 62066 -chirping 64657 -chisel 61152 -chiseled 64657 -chit 60492 -chitin 55766 -chitinase 61699 -chitosan 58113 -chitown 59101 -chivalry 63245 -chivas 63601 -chives 61699 -chix 65452 -chk 65452 -chkdsk 64423 -chlamydia 59560 -chlamydial 61362 -chloe 59774 -chlorambucil 64201 -chloramphenicol 59357 -chlorate 59702 -chlordane 60856 -chlorhexidine 60000 -chloride 47702 -chlorides 61584 -chlorinated 57609 -chlorination 60856 -chlorine 50932 -chlorite 63245 -chloro 65170 -chlorobenzene 62196 -chloroform 56140 -chlorogenic 63792 -chlorohydrin 62469 -chlorophenate 64423 -chlorophyll 55657 -chloroplast 57238 -chloroplasts 63077 -chloroquine 60238 -chlorpromazine 62066 -chlorpropamide 63991 -chm 64657 -chmod 57199 -cho 61362 -choad 60762 -choc 62066 -choca 60762 -chock 61584 -choco 65452 -chocolat 65452 -chocolate 45459 -chocolates 56200 -choice 39928 -choices 43922 -choicest 65170 -choir 53565 -choirs 61256 -choix 65452 -choke 54560 -choked 58365 -choker 65170 -chokes 59292 -choking 56356 -cholangiography 65452 -cholangiopancreatography 65452 -cholangitis 65452 -cholecystectomy 60157 -cholecystitis 61051 -cholecystokinin 62196 -choledochal 63991 -cholera 56618 -cholerae 60078 -cholestasis 63601 -cholestatic 64905 -cholesterol 47057 -cholesteryl 62331 -cholic 64657 -choline 57122 -cholinergic 56170 -cholinesterase 59630 -chomp 65170 -chomping 63991 -chondrial 62917 -chondrites 61699 -chondrocyte 62331 -chondrocytes 59848 -chondrogenesis 64657 -chondrogenic 62762 -chondroitin 56200 -chook 63601 -choose 37143 -choosen 63601 -chooser 64657 -chooses 51104 -choosing 45260 -choosy 64657 -chop 54499 -chopped 49240 -chopper 56756 -choppers 60157 -chopping 57923 -choppy 59774 -chopra 63245 -chops 55348 -chopsticks 61152 -choptopshadow's 64905 -choral 55578 -chord 51184 -chords 50270 -chordstrike 62917 -chore 59164 -choreographed 58162 -choreographer 59630 -choreographers 62066 -choreographic 63991 -choreography 58919 -chores 57358 -choriogonadotropin 65170 -chorion 65170 -chorionic 58919 -chorizo 61940 -choroid 61051 -choroidal 61051 -chorus 53316 -choruses 63792 -chose 45477 -chosen 42048 -choses 65452 -chou 64905 -chow 56485 -chowder 62066 -chown 64423 -chr 64423 -chris 50461 -chris's 62917 -chrisflyer 63077 -chrishirst 63245 -chrissy 64657 -christ 58017 -christened 59560 -christening 57482 -christensen 65452 -christian 50774 -christianity 56050 -christians 60405 -christie 63601 -christina 56518 -christine 58417 -christmas 49620 -christopher 58523 -christy 61584 -chroma 63601 -chromaffin 61940 -chromate 61818 -chromatic 55299 -chromatid 60492 -chromatids 63792 -chromatin 52423 -chromatogram 58802 -chromatograms 58417 -chromatograph 59424 -chromatographed 58860 -chromatographic 52872 -chromatography 48662 -chrome 50940 -chromed 62613 -chromic 63601 -chromite 63991 -chromium 54041 -chromogenic 62469 -chromogranin 62762 -chromophore 60000 -chromophores 61699 -chromosomal 51963 -chromosome 47960 -chromosomes 52233 -chromospheric 63419 -chronic 42724 -chronically 55373 -chronicity 64201 -chronicle 56791 -chronicled 61051 -chronicles 54207 -chronicling 60492 -chrono 62196 -chronograph 64905 -chronological 53779 -chronologically 60952 -chronology 56140 -chronotropic 61362 -chroot 63077 -chrysanthemi 63601 -chrysler 62762 -chs 65452 -cht 65452 -chu 60762 -chub 65452 -chubby 54813 -chuck 52940 -chucked 63419 -chucking 64423 -chuckle 60405 -chuckled 64905 -chuckles 64905 -chucks 62917 -chug 65452 -chugging 62469 -chukka 63419 -chum 62196 -chumps 63601 -chums 65170 -chun 59702 -chung 64657 -chunk 53286 -chunked 63245 -chunks 54207 -chunky 56618 -chupada 64905 -church 42371 -church's 56862 -churches 48431 -churchill 65170 -churchyard 63601 -churn 58262 -churned 63245 -churning 59560 -churns 64423 -chute 58523 -chutney 57524 -chwilio 63601 -chymase 63419 -chymotrypsin 62917 -chyna 64201 -ci 54685 -cia 62613 -ciabatta 65452 -cial 55202 -cialis 42176 -cially 57653 -ciao 59491 -ciara 59702 -ciated 58577 -ciation 60405 -cic 62613 -cicada 65452 -cicadas 65452 -cicatricial 64905 -cick 62613 -cid 61362 -cidade 64905 -cide 64201 -cider 53813 -cielo 62196 -ciency 59101 -cient 56170 -ciently 63077 -cients 60238 -cies 58017 -ciety 64905 -cif 62066 -cific 57440 -cifras 64423 -cigar 55060 -cigarette 50074 -cigarettes 51772 -cigars 59357 -cilantro 59702 -cilia 59292 -ciliaris 64657 -ciliary 57046 -ciliate 64201 -ciliated 61472 -ciliates 63419 -ciljeta 64905 -cilostazol 60238 -cima 65452 -cimatu 61699 -cimetidine 60952 -cin 64423 -cinch 60856 -cinching 57831 -cincinnati 60856 -cinco 63991 -cinder 61940 -cinderella 61051 -cindy 52233 -cine 57318 -cinema 48831 -cinemas 56687 -cinematic 55526 -cinematographer 62469 -cinematographic 63601 -cinematography 59227 -cinerea 61699 -cingular 58470 -cingulate 58688 -cinnamon 53196 -cinnarizine 62331 -cinta 62066 -cio 61940 -cipal 64423 -cipher 60580 -ciphers 63077 -ciples 64201 -cipro 57440 -ciprofloxacin 59292 -circ 65452 -circa 52280 -circadian 54792 -circle 46560 -circled 59292 -circles 49190 -circling 56862 -circuit 42715 -circuitous 64657 -circuitry 52597 -circuits 48928 -circular 47147 -circularity 65452 -circularly 57318 -circulars 62331 -circulate 54321 -circulated 52661 -circulates 60762 -circulating 49886 -circulation 47891 -circulations 64423 -circulatoire 60321 -circulator 61472 -circulatorio 60321 -circulators 64423 -circulatory 55107 -circumcise 62613 -circumcised 57609 -circumcision 56231 -circumference 53865 -circumferential 55821 -circumferentially 60952 -circumflex 58365 -circumnavigate 65452 -circumscribed 60157 -circumspect 64423 -circumstance 54992 -circumstances 44968 -circumstantial 60492 -circumvent 57122 -circumvented 62917 -circumventing 61472 -circumvention 62066 -circumvents 65170 -circus 53241 -cirque 63601 -cirrhosis 55154 -cirrhotic 59491 -cirrus 61472 -cis 55060 -cisco 57122 -cise 64657 -cisely 64905 -cision 63419 -cisplatin 56791 -cistern 61940 -cisterna 65170 -cisternae 62613 -cisterns 64657 -citable 61818 -citadel 65170 -citalopram 62917 -citation 41159 -citations 48533 -citationsDownload 61152 -cite 45627 -cited 41791 -cites 51184 -citeulike 65452 -citibank 62196 -cities 42405 -citing 48143 -citizen 48217 -citizen's 59702 -citizenry 62469 -citizens 44617 -citizenship 51444 -citrate 50192 -citric 56485 -citroen 62196 -citrullinated 65170 -citrulline 64201 -citrus 54519 -city 37151 -city's 47504 -cityscape 60856 -cityscapes 63792 -citywide 61152 -ciudad 60078 -civ 65170 -civic 50394 -civics 62469 -civil 43109 -civilian 50157 -civilians 53316 -civilisation 60000 -civilised 63601 -civility 63419 -civilization 52327 -civilizations 57876 -civilized 57482 -cj 61584 -ck 58313 -cl 55821 -cla 62196 -clad 56293 -cladding 56485 -clade 59774 -clades 61699 -claiborne 65452 -claim 38056 -claimant 51825 -claimant's 57278 -claimants 57399 -claimed 44041 -claiming 48422 -claims 40824 -clair 64201 -claire 58688 -claire's 65452 -clairvoyant 64201 -clam 56293 -clamor 65452 -clamoring 62469 -clamp 51630 -clampdown 64905 -clamped 56200 -clamping 54727 -clamps 55684 -clams 61472 -clamshell 59774 -clan 52327 -clandestine 59101 -clans 59039 -clap 56518 -clapboard 63991 -clapped 63792 -clapper 63991 -clapping 60762 -claps 63245 -clapton 65452 -clara 54341 -clare 62917 -clarence 65170 -claret 64905 -clarification 52363 -clarifications 56721 -clarified 53865 -clarifier 65170 -clarifiers 64423 -clarifies 56652 -clarify 49060 -clarifying 56420 -clarinet 56827 -clarion 62613 -clarithromycin 59702 -claritin 54643 -clarity 50206 -clark 57876 -clarke 63601 -clarks 61256 -clarkson 62066 -claro 59774 -clas 63601 -clase 64423 -clases 64201 -clash 51825 -clashed 59702 -clashes 56140 -clashing 61818 -clasificados 65170 -clasp 56452 -class 33188 -class's 64905 -classe 62917 -classed 56899 -classement 56551 -classes 41824 -classi 65170 -classic 41756 -classical 44861 -classically 57609 -classics 51814 -classifiable 64905 -classification 44353 -classifications 52327 -classified 43526 -classifieds 45448 -classifier 57831 -classifiers 60078 -classifies 59292 -classify 51303 -classifying 56200 -classless 64657 -classloader 61051 -classmate 59357 -classmates 54264 -classpath 59424 -classroom 45811 -classrooms 52778 -classy 54770 -clastic 63792 -clathrin 64905 -clatter 65452 -claude 61362 -claudia 59923 -claudication 65170 -claudio 64201 -claus 63077 -clause 49012 -clauses 55107 -claustrophobic 62762 -clave 60856 -clavulanic 61584 -claw 55373 -clawed 61940 -clawing 64657 -claws 56935 -clay 48445 -clayey 62613 -clays 58688 -clayton 63419 -cle 60078 -clean 41084 -cleaned 48836 -cleaner 49308 -cleaners 53038 -cleanest 59774 -cleaning 43743 -cleanliness 55398 -cleanly 59164 -cleanroom 60952 -cleans 55552 -cleanse 55934 -cleansed 60078 -cleanser 60580 -cleansers 63792 -cleanses 65170 -cleansing 53613 -cleantech 64657 -cleanup 51368 -cleanups 61699 -clear 38464 -clearance 47467 -clearances 57278 -clearcut 65170 -cleared 47548 -clearer 53138 -clearest 59227 -clearing 49429 -clearinghouse 58979 -clearings 65452 -clearly 41049 -clears 53565 -clearwater 63792 -cleats 61152 -cleavable 62762 -cleavage 49470 -cleavages 62066 -cleave 59101 -cleaved 54706 -cleaver 61940 -cleaves 60492 -cleaving 62066 -clef 65452 -cleft 55250 -cleistothecia 64657 -clematis 64201 -clemency 64657 -clement 61940 -clemson 64423 -clenched 63419 -clenching 64657 -cleopatra 64905 -clergy 55684 -clergyman 64423 -cleric 59292 -clerical 54245 -clerics 63601 -clerk 51202 -clerk's 60670 -clerks 56721 -clerkship 61818 -cles 60078 -cleveland 58365 -clever 50192 -cleverly 56485 -cleverness 64905 -clic 61362 -cliche 60492 -cliched 65452 -cliches 61256 -cliché 60321 -clichéd 64201 -clichés 61818 -click 34633 -clickable 57970 -clicked 52256 -clicker 59774 -clicking 40125 -clicks 51257 -client 40467 -client's 50306 -clientDeleteProhibited 62762 -clientTransferProhibited 60000 -clientUpdateProhibited 62066 -clientele 55877 -clients 41279 -cliff 54264 -cliffhanger 64905 -cliffnotes 62762 -clifford 61940 -cliffs 56420 -clifton 64423 -climacteric 64423 -climactic 61472 -climate 43844 -climates 57122 -climatic 53501 -climatological 64423 -climatology 61940 -climax 53485 -climaxes 65170 -climb 49296 -climbed 52805 -climber 56585 -climbers 57970 -climbing 49285 -climbs 54857 -clinch 58017 -clinched 59227 -clinches 64201 -clinching 62331 -clindamycin 64423 -cling 56756 -clinging 58919 -clings 59560 -clingy 64905 -clinic 47668 -clinic's 63991 -clinical 39083 -clinically 49291 -clinician 55448 -clinician's 64905 -clinicians 52339 -clinicopathologic 60405 -clinicopathological 60492 -clinics 50220 -clinique 62469 -clinker 64657 -clinopyroxene 64201 -clint 61051 -clinton 55274 -clio 63245 -clip 43965 -clipart 55604 -clipboard 50372 -clipboards 65170 -clipbox 60405 -clipclip 57122 -clipped 51783 -clipper 61152 -clippers 61362 -clipping 55014 -clippings 53454 -clips 43419 -clipsvideo 53613 -clique 59164 -cliques 62469 -clit 56687 -clita 61152 -clitoral 64423 -clitoris 56687 -clits 64201 -clive 63991 -clk 64657 -cloak 58365 -cloaked 61940 -cloaking 59702 -cloakroom 64905 -cloaks 63601 -clock 44913 -clocked 57831 -clocking 58919 -clocks 52686 -clockwise 54857 -clockwork 61472 -clofibrate 65170 -clog 58632 -clogged 56652 -clogging 59923 -clogs 59774 -clomid 51804 -clomiphene 61699 -clomipramine 64423 -clonal 54188 -clonazepam 59424 -clone 48473 -cloned 49783 -clones 50053 -clonidine 58860 -cloning 51166 -clonogenic 63991 -clopidogrel 60405 -cloquintocet 62917 -close 34067 -closed 41084 -closely 43481 -closeness 58113 -closeout 60078 -closeouts 64657 -closer 44262 -closes 50242 -closest 46379 -closet 51444 -closets 59227 -closeup 59164 -closing 44768 -closings 59101 -clostridial 63077 -closure 47224 -closures 54005 -clot 55631 -cloth 48751 -clothe 60238 -clothed 59424 -clothes 44890 -clothing 44524 -cloths 58017 -clotrimazole 64657 -clots 55448 -clotted 63601 -clotting 56585 -cloud 46840 -clouded 61051 -cloudiness 63991 -clouding 62613 -clouds 49371 -cloudy 52778 -clout 59424 -clove 58417 -clover 57653 -cloverfield 59774 -cloves 56485 -clown 54813 -clowning 63601 -clowns 57696 -clozapine 61940 -cls 65170 -club 41313 -club's 54792 -clubbed 64201 -clubbers 65170 -clubbing 57970 -clubhead 65452 -clubhouse 56356 -clubpenguin 63792 -clubs 45648 -clubwear 63792 -clude 58470 -cluded 56862 -cludes 60952 -cluding 57876 -clue 50101 -clued 65170 -clueless 57653 -clues 51931 -clump 60670 -clumped 64423 -clumping 63792 -clumps 59630 -clumsy 58802 -clung 62762 -clunky 62613 -clusion 63245 -clusions 64657 -cluster 45504 -clustered 53779 -clusterhead 59101 -clusterheads 62331 -clustering 50439 -clusters 47544 -clutch 50087 -clutched 63245 -clutches 58632 -clutching 59774 -clutter 55738 -cluttered 59491 -cluttering 64905 -clés 61256 -cm 41201 -cmH 63991 -cmathieu 65452 -cmb 64905 -cmd 59227 -cmon 65452 -cmp 65170 -cms 57785 -cn 53917 -cnPortfolio 65170 -cna 63419 -cnc 60952 -cnet 54792 -cng 62762 -cnn 60670 -cnr 63991 -cnt 59357 -cntlaw 65452 -co 48252 -coach 43745 -coach's 60856 -coached 54813 -coaches 48918 -coaching 47698 -coactivator 63991 -coagulant 65452 -coagulate 65170 -coagulating 60580 -coagulation 54041 -coal 46986 -coalesce 62196 -coalesced 64201 -coalescence 61818 -coalescent 65452 -coalescing 63991 -coalition 49919 -coalitions 60000 -coals 58365 -coarctation 61472 -coarse 51711 -coarsely 59227 -coarseness 64657 -coarsening 61584 -coarser 59702 -coast 45811 -coastal 46862 -coaster 55500 -coasters 59227 -coastguard 63077 -coasting 59357 -coastline 55373 -coastlines 63792 -coasts 57653 -coat 47060 -coated 47756 -coating 47221 -coatings 50782 -coats 52244 -coatsofarms 61818 -coauthor 62613 -coauthors 60952 -coax 55877 -coaxed 63991 -coaxial 54581 -coaxially 63792 -coaxing 65452 -cob 60078 -cobalamin 58979 -cobalt 53630 -cobb 64423 -cobble 63419 -cobbled 59702 -cobbler 63077 -cobblestone 59560 -cobblestones 65170 -cobra 57831 -cobweb 64905 -coca 58162 -cocaine 49999 -cocci 63245 -cochlea 61472 -cochlear 55552 -cock 46084 -cocked 61818 -cocker 62613 -cocking 65452 -cocklebur 63245 -cockpit 54170 -cockroach 62613 -cockroaches 60952 -cocks 54078 -cocktail 50710 -cocktails 54902 -cocky 60157 -coco 59164 -cocoa 53679 -coconut 50409 -coconuts 65170 -cocoon 60762 -cocoons 63077 -cocotbo 63077 -coculture 62762 -cocultured 64657 -cocultures 63245 -cod 47683 -coda 65452 -code 34737 -codebase 65170 -codebook 59491 -codec 52399 -codecs 58688 -coded 50171 -codeine 55226 -codenamed 63077 -coder 54540 -coders 58470 -codes 42905 -codeshare 64657 -codeword 58802 -codewords 60580 -codex 65170 -codification 60405 -codified 59702 -codify 64657 -codigo 64905 -codigos 65452 -codimension 63601 -coding 46717 -codon 54302 -codons 58632 -cody 56485 -coe 63077 -coed 59424 -coeds 61818 -coeff 63991 -coefficient 45255 -coefficients 46555 -coeliac 60157 -coelicolor 62196 -coelomic 61256 -coenzyme 55657 -coerce 59227 -coerced 60580 -coercion 58017 -coercive 57970 -coercivity 64905 -coeruleus 65452 -coeur 59292 -coexist 59164 -coexistence 56935 -coexistent 63077 -coexisting 58577 -coexists 64657 -coexpressed 62196 -coexpression 63991 -coextensive 65452 -cofactor 57609 -cofactors 61940 -coffe 62331 -coffee 43526 -coffeehouse 62066 -coffees 58417 -coffers 62613 -coffin 56200 -coffins 62196 -cofounder 62331 -cog 60321 -cogeneration 60856 -cogent 60952 -cogil 63601 -cognac 64905 -cognate 57831 -cognates 59702 -cognition 56140 -cognitions 64657 -cognitive 46604 -cognitively 62196 -cognizance 63419 -cognizant 59774 -cogs 65452 -cohabitation 64657 -cohabiting 64657 -cohen 63991 -coherence 52459 -coherences 63601 -coherency 62613 -coherent 49946 -coherently 63077 -cohesion 54499 -cohesive 55178 -cohesiveness 64423 -coho 60492 -cohomology 58523 -cohort 50178 -cohorts 55821 -coi 60238 -coil 48771 -coiled 56388 -coiling 61940 -coils 52584 -coin 49330 -coinage 60856 -coincide 52968 -coincided 55037 -coincidence 53501 -coincidences 63419 -coincident 56021 -coincidental 63077 -coincidentally 62613 -coincides 53729 -coinciding 60405 -coined 56420 -coinguy 64905 -coins 50461 -coinsurance 65170 -cointegration 63601 -coir 62917 -coisa 65170 -coitus 58919 -cok 59923 -coke 53109 -coker 61362 -coking 60405 -col 56791 -cola 58365 -colaboración 63245 -colby 65170 -colchicine 56388 -cold 41805 -colder 55474 -coldest 59774 -coldlist 64201 -coldly 65170 -coldness 63792 -coldplay 58470 -colds 58860 -coldwell 64423 -cole 57524 -colegio 63991 -coleman 63792 -coleslaw 65170 -coli 46068 -colic 59560 -colicky 63792 -coliform 58065 -coliforms 62196 -colin 55060 -colina 63601 -colitis 57238 -coll 63991 -collab 64423 -collaborate 52280 -collaborated 55299 -collaborates 59848 -collaborating 54439 -collaboration 45419 -collaborations 54685 -collaborative 46953 -collaboratively 57970 -collaborator 61699 -collaborators 57278 -collage 55037 -collagen 48629 -collagenase 58919 -collagenous 61699 -collages 62469 -collapse 47245 -collapsed 52018 -collapses 57440 -collapsible 59039 -collapsing 56791 -collar 49992 -collard 60762 -collared 63419 -collars 57785 -collate 61699 -collated 61362 -collateral 51284 -collateralized 64201 -collaterally 65452 -collaterals 58577 -collating 64423 -collation 62917 -colleague 45506 -colleagues 44690 -collect 43988 -collectable 60492 -collectables 50718 -collected 41559 -collectible 54813 -collectibles 47835 -collecting 46928 -collection 39091 -collections 46560 -collective 46312 -collectively 52029 -collectives 65170 -collector 50321 -collector's 59292 -collectors 51463 -collects 50678 -colleen 65170 -college 40246 -college's 59923 -collegehumor 60157 -colleges 47927 -collegial 60670 -collegiality 65452 -collegiate 55274 -collet 64657 -colliculus 64657 -collide 56585 -collided 58212 -collider 62917 -colliders 65170 -collides 61472 -colliding 59848 -collie 62917 -collimated 58162 -collimating 64905 -collimation 63792 -collimator 60952 -collinear 61256 -collins 59848 -collision 49620 -collisional 61584 -collisionally 64905 -collisionless 64201 -collisions 53153 -collocation 60157 -colloid 60492 -colloidal 53970 -colloids 61362 -colloquial 61152 -colloquially 65452 -colloquium 62613 -colloquy 65170 -collusion 60238 -colnet 60580 -colocalization 61256 -colocalize 63077 -colocalized 63419 -colocalizes 65170 -cologne 57440 -colombia 60856 -colon 48761 -colonel 58523 -colonelmustard 60405 -colonial 50046 -colonialism 59702 -colonic 53712 -colonies 49809 -colonisation 62613 -colonised 63991 -colonists 59491 -colonization 55037 -colonize 61818 -colonized 58577 -colonizing 61818 -colonoscopy 59848 -colony 49764 -color 39184 -colorado 54924 -colorant 62331 -colorants 60580 -coloration 57278 -colorblind 65452 -colorectal 51238 -colored 47279 -colores 62613 -colorful 49336 -colorfully 65170 -colorido 65452 -colorimetric 57696 -coloring 51340 -colorist 64657 -colorless 55684 -colorpicker 62917 -colors 43642 -colossal 57653 -colossus 65452 -colostomy 61699 -colostrum 64905 -colour 44377 -coloured 51148 -colourful 51877 -colouring 56756 -colourless 60321 -colours 47228 -colposcopy 64905 -colt 59630 -colts 63419 -colubrid 64423 -columbia 57358 -columbus 55877 -column 40827 -columnar 57440 -columnist 53052 -columnists 55014 -columns 46440 -com 42711 -comScore 63077 -coma 55423 -comalico 64423 -comand 65170 -comatose 62196 -comb 53934 -combat 46261 -combatant 62469 -combatants 61818 -combating 55373 -combative 62762 -combats 61051 -combed 58860 -combi 63991 -combination 40634 -combinational 62066 -combinations 47710 -combinatorial 55037 -combine 45662 -combined 41112 -combiner 62469 -combines 47194 -combing 59424 -combining 47485 -combo 50915 -combobox 63991 -combos 57160 -combs 61362 -combusted 64201 -combustible 57970 -combustion 48548 -combustor 62196 -combusts 64423 -comcast 58802 -come 34802 -comeback 52927 -comebacks 65452 -comedian 54439 -comedians 58262 -comedic 57278 -comedies 57923 -comedy 46229 -comedycomedy 60762 -comely 64905 -coment 65452 -comentario 58919 -comentarios 57566 -coments 65452 -comentário 63245 -comentários 63245 -comer 60078 -comercial 59292 -comers 61362 -comes 37606 -comet 57524 -cometary 65452 -cometh 61818 -comets 61152 -comfort 44473 -comfortable 43260 -comfortably 52130 -comforted 60670 -comforter 61472 -comforting 56140 -comforts 56080 -comfy 55178 -comic 47067 -comical 59491 -comically 64201 -comics 49867 -comida 65452 -comin 56110 -coming 38804 -comings 64423 -comix 64657 -comm 60580 -comma 53729 -command 42852 -commande 65170 -commanded 54946 -commandeered 64905 -commander 50966 -commander's 64201 -commanders 56231 -commanding 54341 -commandline 65170 -commandment 60952 -commandments 60670 -commando 61584 -commandos 61818 -commands 47947 -commas 53917 -comme 56080 -commemorate 54879 -commemorated 62331 -commemorates 60238 -commemorating 60405 -commemoration 59101 -commemorative 57160 -commence 52327 -commenced 51590 -commencement 52686 -commences 57785 -commencing 52940 -commend 56972 -commendable 60238 -commendation 62066 -commended 56420 -commending 63792 -commends 63419 -commensal 60580 -commensurate 55992 -comment 31491 -comment's 60762 -commentaire 63601 -commentaires 59923 -commentaries 54946 -commentary 46973 -commentator 56756 -commentators 55154 -commented 46207 -commenter 59164 -commenters 60405 -commenti 65170 -commenting 50615 -comments 32720 -commentsexternal 53646 -commerce 50350 -commercial 38397 -commerciales 65170 -commercialisation 61818 -commercialise 64657 -commercialization 57399 -commercialize 62613 -commercialized 61256 -commercializing 64905 -commercially 48519 -commercials 51340 -commerical 63077 -commie 65170 -comming 57524 -commision 64905 -commission 46318 -commission's 58745 -commissioned 49986 -commissioner 52062 -commissioner's 63601 -commissioners 55060 -commissioning 53695 -commissions 52152 -commissural 65452 -commit 46769 -commited 60321 -commitment 43477 -commitments 51202 -commits 52622 -committe 65170 -committed 43104 -committee 43569 -committee's 57358 -committees 49926 -committer 64657 -committing 52141 -committment 62196 -commodification 63991 -commodified 64905 -commodities 51974 -commodity 49893 -commodo 62917 -common 37244 -commonalities 64423 -commonality 62917 -commoner 64201 -commonest 58802 -commonly 43826 -commonplace 57482 -commons 57566 -commonsense 62613 -commonwealth 59491 -commotion 62196 -comms 59923 -commun 64201 -communal 52996 -communauté 63245 -commune 60952 -communes 63792 -communicable 59357 -communicado 65452 -communicate 45058 -communicated 52597 -communicates 54992 -communicating 49946 -communication 40534 -communications 42698 -communicative 56618 -communicator 58577 -communicators 59923 -communion 55738 -communique 64905 -communiqué 63245 -communis 59630 -communism 58632 -communist 54133 -communists 61818 -communities 42735 -community 35583 -community's 54664 -communitychallenge 64657 -commutation 60157 -commutative 58632 -commutativity 65170 -commutator 63792 -commute 54245 -commuted 62066 -commuter 54924 -commuters 57318 -commutes 60078 -commuting 51396 -comnts 64905 -como 49701 -comorbid 58470 -comorbidities 63077 -comorbidity 63601 -comp 52739 -compa 64423 -compact 45510 -compacted 57696 -compactified 64201 -compacting 64201 -compaction 56388 -compactly 63419 -compactness 61256 -compactors 65452 -compacts 61584 -companies 37840 -companion 49394 -companions 55348 -companionship 59848 -company 34435 -company's 43594 -companys 61362 -compaq 58802 -comparability 60000 -comparable 45650 -comparables 61362 -comparably 60952 -comparative 47478 -comparatively 52927 -comparativo 62762 -comparator 56170 -comparators 63792 -compare 41567 -compared 38027 -compares 49146 -comparing 45763 -comparision 61584 -comparison 40336 -comparisons 47672 -compartment 49854 -compartmentalized 64657 -compartments 53301 -compass 55060 -compasses 64201 -compassion 52765 -compassionate 55014 -compatability 60492 -compatable 62917 -compatibility 44923 -compatible 44608 -compatriot 65170 -compatriots 61818 -compazine 64905 -compel 55793 -compelled 52832 -compelling 49296 -compels 60405 -compendium 57318 -compensable 60157 -compensate 50087 -compensated 52699 -compensates 59424 -compensating 56420 -compensation 44966 -compensations 65452 -compensator 61362 -compensatory 55060 -compete 45954 -competed 53286 -competence 50670 -competences 59774 -competencies 53407 -competency 53438 -competent 48887 -competently 60952 -competes 57160 -competetive 62917 -competing 47992 -competition 42803 -competition's 64423 -competitions 50983 -competitive 42931 -competitively 56231 -competitiveness 53517 -competitor 52085 -competitor's 60321 -competitors 49966 -compilation 49417 -compilations 56585 -compile 50387 -compiled 47745 -compiler 51680 -compilers 58017 -compiles 57876 -compiling 53630 -compiz 61699 -complacency 60670 -complacent 61940 -complain 47799 -complainant 52609 -complainant's 59774 -complainants 59357 -complained 50492 -complaining 51275 -complains 56140 -complaint 45692 -complaints 46173 -complement 47972 -complementarity 59774 -complementary 48746 -complementation 59227 -complemented 54360 -complementing 59491 -complements 53565 -complet 63245 -completa 61362 -completamente 65452 -complete 35818 -completed 40622 -completely 40106 -completeness 52546 -completers 62066 -completes 51600 -completing 47143 -completion 44851 -completions 60321 -completley 65170 -completly 59164 -completo 59848 -complex 39106 -complexation 59774 -complexed 56899 -complexes 46797 -complexing 61051 -complexion 58745 -complexities 54399 -complexity 46387 -compliance 42941 -compliant 50545 -complicate 56231 -complicated 46443 -complicates 58470 -complicating 57741 -complication 51867 -complications 47515 -complicit 63419 -complicity 61362 -complied 54078 -complies 53271 -compliment 51762 -complimentary 50299 -complimented 58313 -complimenting 63792 -compliments 53485 -comply 45054 -complying 54207 -compo 64423 -component 40797 -component's 62917 -componentName 64905 -components 40203 -compose 53167 -composed 45021 -composer 51000 -composer's 59848 -composers 55423 -composes 61051 -composing 55250 -composite 46053 -composited 65452 -composites 51521 -compositing 63077 -composition 42409 -compositional 56356 -compositions 49081 -compositor 65452 -compost 53485 -composted 62331 -composting 56756 -composure 60952 -composé 65452 -compote 65452 -compotion 63792 -compound 44198 -compounded 53988 -compounding 56721 -compounds 43519 -compra 63077 -comprar 60762 -comprare 63077 -comprehend 54902 -comprehended 63419 -comprehending 61152 -comprehensible 60952 -comprehension 53899 -comprehensive 41681 -comprehensively 58470 -comprehensiveness 63077 -compress 54879 -compressed 46204 -compresses 59101 -compressibility 59702 -compressible 61256 -compressing 57084 -compression 46557 -compressional 62469 -compressive 53917 -compressor 50545 -compressors 57399 -compris 64423 -comprise 47641 -comprised 46881 -comprises 43646 -comprising 43765 -compromise 49596 -compromised 52074 -compromises 58470 -compromising 54360 -comps 59923 -compte 58162 -compton 62469 -comptroller 63991 -compulsion 61051 -compulsive 57440 -compulsory 50915 -computable 64201 -computation 49411 -computational 48548 -computationally 57046 -computations 54321 -compute 49899 -computed 46784 -computer 36533 -computer's 53581 -computerisation 65452 -computerised 58113 -computerized 51721 -computers 44440 -computes 55684 -computing 45578 -comrade 61818 -comrades 59039 -comunidad 64201 -con 45195 -conan 60670 -conc 62066 -concanavalin 62196 -concatenate 65452 -concatenated 61152 -concatenation 60492 -concave 53454 -concavity 63601 -conceal 55323 -concealed 53346 -concealer 62762 -concealing 59774 -concealment 59774 -conceals 61152 -concede 56518 -conceded 55849 -concedes 58470 -conceding 61940 -conceit 64905 -conceivable 56756 -conceivably 58802 -conceive 56110 -conceived 51974 -conceives 64423 -conceiving 63419 -concentrate 48174 -concentrated 46989 -concentrates 54005 -concentrating 53010 -concentration 40232 -concentrations 42060 -concentrator 58162 -concentrators 63601 -concentric 54946 -concentrically 63077 -concept 41814 -conception 51321 -conceptions 56551 -concepts 45074 -conceptual 49365 -conceptualise 64423 -conceptualised 63991 -conceptualization 59923 -conceptualize 60157 -conceptualized 60321 -conceptualizing 64423 -conceptually 57653 -concern 43399 -concernant 63077 -concerned 42960 -concerning 42988 -concerns 42942 -concert 44931 -concerted 55657 -concerti 65170 -concerto 59227 -concerts 49388 -concession 54499 -concessionary 64905 -concessions 53988 -conch 62762 -concierge 56452 -concierto 60762 -conciliation 58979 -conciliatory 64201 -concise 52423 -concisely 62469 -conclude 46821 -concluded 45645 -concludes 50492 -concluding 53361 -conclusion 45867 -conclusions 47745 -conclusive 56518 -conclusively 57831 -conclusory 64905 -concoct 64657 -concocted 63601 -concoction 62917 -concoctions 63601 -concomitant 52375 -concomitantly 59357 -concord 61472 -concordance 59357 -concordant 62917 -concourse 62917 -concrete 44442 -concretely 63991 -concreting 62762 -concur 56827 -concurred 61362 -concurrence 59491 -concurrency 60405 -concurrent 49979 -concurrently 54835 -concurring 61818 -concurs 61818 -concurvity 64657 -concussion 59702 -concussions 65170 -cond 62066 -condemn 55274 -condemnation 56935 -condemned 53438 -condemning 59491 -condemns 57482 -condensate 56170 -condensates 62613 -condensation 51580 -condense 59702 -condensed 52256 -condenser 53517 -condensers 64905 -condenses 62331 -condensing 58212 -condescending 61940 -condi 65170 -condiciones 60492 -condiment 63419 -condiments 62469 -condimentum 65452 -condition 39939 -conditional 49926 -conditionally 59292 -conditioned 50932 -conditioner 52597 -conditioners 57524 -conditioning 47823 -conditions 36775 -condo 50599 -condolence 63792 -condolences 56200 -condom 53646 -condominium 55323 -condominiums 55992 -condoms 54207 -condone 57160 -condoned 65170 -condoning 64905 -condor 64201 -condos 52411 -conducive 54264 -conduct 42966 -conductance 53549 -conducted 41345 -conducting 46687 -conduction 50873 -conductive 51284 -conductivities 62613 -conductivity 49578 -conductor 49308 -conductores 61051 -conductors 54519 -conducts 51856 -conduit 50630 -conduits 58313 -condyle 60762 -cone 48781 -conejo 64657 -cones 55423 -conexant 64423 -conf 60670 -confection 62331 -confectionery 60405 -confections 62917 -confederate 63245 -confederation 61256 -confer 53830 -conference 41104 -conference's 63245 -conferences 48529 -conferencing 53024 -conferred 53865 -conferring 58577 -confers 55766 -confess 55014 -confessed 55552 -confesses 59164 -confessing 63419 -confession 55154 -confessional 61362 -confessions 57399 -confetti 63601 -confidant 63601 -confided 62196 -confidence 43646 -confident 46717 -confidential 48084 -confidentiality 50848 -confidentialité 63792 -confidentially 63077 -confidently 55934 -confides 65170 -config 52244 -configs 63419 -configurable 55474 -configuration 42838 -configurational 63601 -configurations 49394 -configurator 61818 -configure 47919 -configureMailAgent 64423 -configured 46063 -configures 62613 -configuring 53361 -confine 56935 -confined 49152 -confinement 54540 -confines 56452 -confining 57831 -confirm 42621 -confirmation 46466 -confirmations 61818 -confirmatory 60078 -confirmed 42750 -confirming 50782 -confirms 49657 -confiscate 62331 -confiscated 57923 -confiscation 61472 -confit 65170 -conflict 44205 -conflicted 59491 -conflicting 51620 -conflicts 49212 -confluence 55348 -confluent 57876 -confocal 54749 -conform 49873 -conformable 58632 -conformal 58365 -conformance 52872 -conformation 52597 -conformational 53549 -conformations 57358 -conformed 60157 -conformer 65170 -conformers 63245 -conforming 55037 -conformity 53917 -conforms 53109 -confound 60762 -confounded 59164 -confounders 63991 -confounding 56200 -confounds 65452 -confront 52635 -confrontation 54321 -confrontational 63419 -confrontations 61699 -confronted 52107 -confronting 55423 -confronts 56518 -confuse 53779 -confused 47760 -confuses 57970 -confusing 50522 -confusingly 62613 -confusion 49223 -confusions 64905 -congealed 65452 -congeners 63792 -congenial 64657 -congenital 50122 -congenitally 62469 -congested 56791 -congestion 51122 -congestive 54479 -conglomerate 59039 -conglomerates 60580 -congolensis 65170 -congrats 54813 -congratulate 54341 -congratulated 57160 -congratulates 60000 -congratulating 59702 -congratulation 64657 -congratulations 54792 -congratulatory 64423 -congregate 60405 -congregated 64657 -congregation 53813 -congregational 62762 -congregations 57923 -congress 53346 -congresses 64905 -congressional 52118 -congressman 58113 -congressmen 62331 -congruence 60492 -congruences 63601 -congruent 59424 -congue 64423 -conic 61472 -conical 54560 -conidia 62613 -conidial 64905 -conifer 61818 -coniferous 61256 -conifers 64657 -conjecture 54023 -conjectured 62613 -conjectures 63419 -conjoined 62762 -conjoint 65170 -conjuction 65452 -conjugacy 60078 -conjugal 65452 -conjugate 52765 -conjugated 52040 -conjugates 53779 -conjugating 65452 -conjugation 54664 -conjunction 45987 -conjunctions 63991 -conjunctiva 62613 -conjunctival 58860 -conjunctive 63077 -conjunctivitis 59039 -conjure 59357 -conjured 60856 -conjures 59848 -conjuring 63991 -conkers 63245 -conmigo 64657 -conn 62196 -connaissances 65452 -connect 41699 -connectable 62762 -connected 40840 -connectedness 61472 -connecter 64201 -connecticut 59164 -connecting 45569 -connection 40334 -connections 44292 -connectionsFAQ 53646 -connective 52164 -connectives 65452 -connectivity 49359 -connector 47318 -connectors 51521 -connects 49279 -connexion 61940 -conniving 65170 -connoisseur 64201 -connoisseurs 64423 -connor 62917 -connotation 62066 -connotations 60952 -connotea 60321 -connotes 64423 -conocer 64657 -conquer 54078 -conquered 56452 -conquering 59630 -conqueror 64423 -conquerors 63419 -conquers 61256 -conquest 56140 -conquests 62469 -conrad 64657 -cons 53361 -consanguinity 65452 -conscience 54096 -conscientious 56618 -conscientiously 62331 -conscious 49065 -consciously 54622 -consciousness 50702 -conscripted 64905 -conscription 63245 -conscripts 62469 -consecrated 60078 -consecration 64423 -consectetuer 57876 -consecutive 46231 -consecutively 57876 -conseguir 64423 -consensual 60405 -consensually 64905 -consensus 47706 -consent 44692 -consented 57785 -consenting 58065 -consents 57084 -consequat 65452 -consequence 47555 -consequences 45638 -consequent 53109 -consequential 54439 -consequently 50662 -conservation 45720 -conservationist 64905 -conservationists 62066 -conservatism 59630 -conservative 47123 -conservatively 61051 -conservatives 54151 -conservator 63077 -conservatories 64905 -conservatorship 62196 -conservatory 56140 -conserve 53271 -conserved 49054 -conserves 61818 -conserving 57160 -consetetur 60670 -consider 36846 -considerable 44599 -considerably 47420 -considerate 57741 -consideration 43984 -considerations 48487 -considered 38089 -considering 43385 -considers 47683 -consign 63991 -consigned 61472 -consignment 57741 -consignments 64201 -consist 47120 -consistant 62066 -consistantly 63991 -consisted 46815 -consistencies 63991 -consistency 48283 -consistent 42104 -consistently 46404 -consisting 44432 -consists 42619 -consolation 58470 -console 47163 -consoles 53662 -consolidate 53109 -consolidated 50454 -consolidates 60157 -consolidating 57009 -consolidation 49348 -consolidations 63792 -consolidator 64657 -consoling 64423 -consonant 56827 -consonants 59560 -consort 62762 -consortia 59491 -consortium 51835 -conspecific 62762 -conspicuous 54749 -conspicuously 58802 -conspiracies 61051 -conspiracy 50898 -conspirators 64423 -conspire 62196 -conspired 61152 -conspiring 59491 -const 48243 -constable 59424 -constables 62196 -constancy 59227 -constant 41151 -constantly 45268 -constants 47760 -constellation 56021 -constellations 62196 -consternation 63792 -constipated 63991 -constipation 55766 -constituencies 57653 -constituency 57653 -constituent 52029 -constituents 52029 -constitute 44507 -constituted 51148 -constitutes 42355 -constituting 54283 -constitution 51275 -constitutional 48477 -constitutionality 59848 -constitutionally 60078 -constitutions 62196 -constitutive 54540 -constitutively 57278 -constr 61256 -constrain 55849 -constrained 51034 -constraining 58745 -constrains 60405 -constraint 49535 -constraints 46497 -constricted 61699 -constricting 63245 -constriction 58470 -constrictions 62066 -constrictive 63991 -constrictor 63792 -constrictum 64657 -construct 46053 -constructed 44408 -constructible 64423 -constructing 51492 -construction 39672 -constructional 63792 -constructions 54151 -constructive 50823 -constructively 60321 -constructivist 62331 -constructor 55474 -constructors 63245 -constructs 50710 -construe 61584 -construed 50350 -construing 63419 -consul 61699 -consular 58688 -consulate 60762 -consulates 62917 -consult 46563 -consultancies 61152 -consultancy 51783 -consultant 47097 -consultant's 62196 -consultants 48711 -consultation 44990 -consultations 51330 -consultative 57046 -consulted 51640 -consulting 46030 -consults 58065 -consumable 59101 -consumables 59039 -consume 50416 -consumed 49488 -consumer 42441 -consumer's 56827 -consumerism 61256 -consumers 43934 -consumes 55348 -consuming 50678 -consummate 58632 -consummated 61472 -consummation 61152 -consumption 43786 -consumptive 65452 -cont 61152 -cont'd 63419 -contact 33780 -contacted 46526 -contacter 63419 -contacting 47964 -contactless 59848 -contacto 63245 -contactor 61940 -contactors 64201 -contacts 42755 -contador 63792 -contagion 64201 -contagious 57160 -contain 40209 -contained 40589 -container 46197 -containers 48519 -containing 39057 -containment 54302 -contains 38951 -containsValue 65170 -contaminant 55398 -contaminants 52648 -contaminate 59101 -contaminated 49207 -contaminating 58577 -contamination 48806 -contemplate 56618 -contemplated 54380 -contemplates 58262 -contemplating 55178 -contemplation 60670 -contemplative 60157 -contemporaine 63991 -contemporaneous 57741 -contemporaneously 64657 -contemporaries 58979 -contemporary 44297 -contempt 54770 -contemptuous 64905 -contenant 63419 -contend 53361 -contended 55992 -contender 57238 -contenders 56618 -contending 58979 -contends 52845 -contenido 63991 -content 32684 -contentCopyright 55934 -contented 61256 -contention 52459 -contentions 60405 -contentious 56827 -contentment 61256 -contents 40032 -contenu 60856 -contest 45756 -contestant 56485 -contestants 55037 -contestation 65170 -contested 54151 -contesting 60952 -contests 50507 -context 42581 -contexte 64657 -contexts 52872 -contextual 53847 -contextually 64657 -contig 61472 -contigo 64201 -contiguous 51511 -continence 63419 -continent 53196 -continent's 62613 -continental 49033 -continents 56791 -contingencies 59227 -contingency 53167 -contingent 51804 -continous 62469 -continously 64905 -continua 63792 -continuados 65170 -continual 53423 -continually 48533 -continuance 58365 -continuation 50499 -continue 38773 -continued 41555 -continues 42260 -continuing 43615 -continuities 63991 -continuity 49899 -continuous 42559 -continuously 47041 -continuum 51248 -conto 63601 -contorted 64201 -contour 51570 -contoured 56080 -contouring 60670 -contours 53865 -contr 64201 -contra 56756 -contraband 60952 -contraception 55323 -contraceptive 54023 -contraceptives 54459 -contract 40592 -contract's 65452 -contracted 50957 -contractile 54499 -contractility 58688 -contracting 51017 -contraction 50431 -contractions 54835 -contractor 47087 -contractor's 57741 -contractors 48239 -contracts 45526 -contractual 52062 -contractually 60492 -contracture 60856 -contractures 63792 -contradict 55631 -contradicted 59164 -contradicting 59848 -contradiction 54813 -contradictions 56972 -contradictory 55154 -contradicts 56110 -contraindicated 60670 -contraindication 62066 -contraindications 58113 -contralateral 53762 -contraption 62469 -contrary 49251 -contrast 43749 -contrasted 55738 -contrasting 53630 -contrasts 54078 -contravene 61940 -contravened 63991 -contravenes 63077 -contravention 59227 -contraversive 64905 -contre 58688 -contreeboy 65170 -contrib 64423 -contribute 42739 -contributed 43781 -contributes 48576 -contributing 46735 -contribution 42916 -contributions 43646 -contributor 50694 -contributors 47551 -contributory 58113 -contrive 65452 -contrived 59702 -contro 64657 -control 34179 -controlador 61940 -controladora 65170 -controladores 62917 -controlar 64905 -controle 57785 -controled 58162 -controler 63991 -controling 54439 -controll 64423 -controllability 61940 -controllable 56231 -controllably 65170 -controlled 41467 -controller 45298 -controller's 63601 -controllers 51248 -controlling 45711 -controls 42497 -controversial 48372 -controversies 57318 -controversy 49417 -contusion 63419 -conundrum 60238 -conus 63601 -convalescent 63245 -convection 54005 -convective 56551 -convene 56618 -convened 55014 -convenes 62469 -convenience 46687 -conveniences 58632 -convenient 44900 -conveniently 50350 -convening 60670 -convent 59424 -convention 48609 -convention's 63792 -conventional 42876 -conventionally 55934 -conventions 52546 -converge 54419 -converged 56110 -convergence 49060 -convergent 55906 -converges 56687 -converging 55738 -conversant 62469 -conversation 45887 -conversational 55906 -conversations 49218 -converse 55373 -conversely 64423 -conversing 65452 -conversion 43443 -conversions 53211 -convert 44121 -convertToZone 64423 -converted 45330 -converter 46162 -converters 54857 -convertibility 64423 -convertible 52899 -converting 48746 -convertor 60580 -converts 50815 -convex 50940 -convexity 60952 -convey 50694 -conveyance 57046 -conveyances 63991 -conveyancing 62196 -conveyed 53316 -conveyer 65452 -conveying 55037 -conveyor 51434 -conveyors 60670 -conveys 54992 -convict 57696 -convicted 48619 -convicting 63991 -conviction 49626 -convictions 53988 -convicts 60492 -convince 49614 -convinced 48557 -convinces 58860 -convincing 51122 -convincingly 58212 -convivial 64657 -convo 64423 -convocation 62613 -convoluted 58417 -convolution 56200 -convolutional 58979 -convolved 64657 -convoy 58365 -convoys 62613 -convulsion 65452 -convulsions 61152 -convulsive 63077 -coo 62196 -coogi 65170 -cook 46995 -cook's 64423 -cookbook 54245 -cookbooks 57609 -cooked 48619 -cooker 55711 -cookers 61152 -cookery 59424 -cookie 48265 -cookies 45624 -cooking 44426 -cookout 65452 -cooks 54419 -cooktop 56452 -cooktops 62196 -cookware 56518 -cooky 64905 -cool 40490 -coolant 54151 -cooldown 61256 -cooled 49828 -cooler 49682 -coolers 57696 -coolest 48217 -cooling 45027 -cooljunkie 65452 -coolly 64905 -coolness 61818 -cools 57923 -coon 64657 -coop 59424 -cooper 57741 -cooperate 52074 -cooperated 60000 -cooperates 60580 -cooperating 55578 -cooperation 45410 -cooperative 49359 -cooperatively 57160 -cooperatives 59702 -cooperativity 61256 -coopération 63601 -coordinate 47262 -coordinated 49382 -coordinately 62469 -coordinates 48459 -coordinating 51284 -coordination 47537 -coordinator 50270 -coordinators 56485 -coords 56021 -cop 51266 -copay 61818 -copayment 59702 -copayments 65452 -copays 65170 -cope 48711 -copeGraph 65452 -coped 61940 -copending 62469 -copenhagen 65452 -copepod 62613 -copepods 61256 -copes 62762 -copia 61818 -copied 47851 -copier 58688 -copiers 63245 -copies 42775 -coping 50522 -copious 58262 -coplanar 59227 -copolymer 53153 -copolymeric 64423 -copolymerization 60580 -copolymers 54151 -copolymère 64657 -copolímero 65170 -copped 63792 -copper 45504 -copperfield 65170 -copperheads 64423 -coppermine 62613 -copra 65452 -coprocessor 61472 -coprophagia 59848 -coprophilia 59923 -coproporphyrinogen 65170 -cops 51275 -copulate 59227 -copulation 63991 -copulatory 65452 -copy 38500 -copyColumn 65452 -copyable 64657 -copycat 61699 -copying 49268 -copyright 38913 -copyrighted 46966 -copyrights 48139 -copywriter 62066 -copywriters 63792 -copywriting 61940 -cor 59702 -coral 51000 -corals 56356 -corazon 60492 -corazón 63419 -cord 46086 -cordance 65170 -corded 58313 -cordgrass 62917 -cordial 61584 -cordially 60078 -cordifolia 63991 -cording 57238 -cordless 54302 -cordoba 64905 -cordon 60670 -cordoned 64657 -cords 54560 -corduroy 61472 -cordycepin 61362 -core 41112 -cored 60492 -coreg 65452 -corel 60238 -corepressor 64423 -cores 51825 -corey 61362 -cori 64657 -coriander 58745 -coring 64657 -cork 56551 -corks 65452 -corkscrew 63991 -corn 46684 -cornbread 60670 -cornea 56862 -corneal 51368 -corneas 61818 -corned 60321 -cornelius 64657 -cornell 64905 -corner 43189 -cornerback 59039 -cornered 63077 -cornering 62196 -corners 49932 -cornerstone 54969 -cornerstones 62066 -corneum 63991 -cornfield 65452 -cornice 63077 -cornified 65170 -cornmeal 63245 -cornstarch 60000 -cornucopia 62469 -corny 59560 -corolla 60856 -corollary 58470 -corona 56756 -coronal 54560 -coronary 45459 -coronation 61472 -coronavirus 60856 -coroner 61362 -coroner's 63991 -corp 58065 -corpora 61584 -corporacion 64905 -corporal 58365 -corporate 41069 -corporates 60762 -corporation 46781 -corporation's 58313 -corporations 48581 -corporeal 63077 -corps 54770 -corpse 56452 -corpses 58919 -corpus 53226 -corpuscular 62469 -corral 62613 -corre 64657 -correct 37851 -correctable 65170 -corrected 48165 -correcting 52096 -correction 43795 -correctional 55992 -corrections 47562 -corrective 51856 -correctly 46020 -correctness 54264 -corrects 57741 -correlate 50957 -correlated 46702 -correlates 51996 -correlating 58860 -correlation 43634 -correlational 63245 -correlations 49446 -correlative 63077 -correlator 60078 -correlators 63077 -correo 63792 -correspond 47741 -corresponded 54902 -correspondence 46763 -correspondences 61051 -correspondent 52509 -correspondents 54419 -correspondiente 63245 -corresponding 40479 -correspondingly 57318 -corresponds 46601 -corridor 52805 -corridors 55711 -corridos 62762 -corroborate 60157 -corroborated 58523 -corroborating 63419 -corroboration 64657 -corroborative 63991 -corrode 65452 -corroded 61699 -corrosion 50321 -corrosive 56862 -corrugated 55711 -corrugation 63419 -corrugations 63601 -corrupt 50991 -corrupted 53081 -corrupting 62331 -corruption 49130 -corrupts 62917 -corsa 58632 -corsair 64657 -corse 65170 -corset 54540 -corsets 60492 -corte 64201 -cortex 49207 -cortical 49620 -cortices 63991 -corticola 62331 -corticosteroid 56899 -corticosteroids 56585 -corticosterone 58979 -cortisol 54264 -cortisone 61256 -corto 63991 -corvette 58262 -cory 62066 -corymbosa 65170 -cos 48944 -cosa 60762 -cosas 61256 -cose 62196 -coseismic 63792 -coset 64905 -cosh 64201 -cosine 58113 -cosmetic 49411 -cosmetically 65170 -cosmetics 53361 -cosmetologist 63991 -cosmetology 61472 -cosmic 52435 -cosmid 61051 -cosmo 65170 -cosmogenic 63245 -cosmological 55500 -cosmology 58470 -cosmonaut 63077 -cosmopolitan 56687 -cosmos 58162 -cosplay 60078 -cosponsored 63991 -cost 36835 -costa 55604 -costae 61584 -costal 62066 -costco 62331 -costed 62196 -costimulation 64201 -costimulatory 60492 -costing 51825 -costliest 64657 -costly 49464 -costs 38593 -costume 47787 -costumechik 62762 -costumed 61362 -costumer 63792 -costumers 63419 -costumes 47799 -cosy 56231 -cot 57318 -cota 64905 -cotangent 64905 -cote 64201 -cotransfected 59923 -cotransfection 64905 -cotransporter 65170 -cots 60405 -cotta 61699 -cottage 50678 -cottages 54151 -cotton 45917 -cottonseed 64423 -cottonwood 65452 -cotyledon 61256 -cotyledonary 63077 -cotyledons 59923 -cou 64905 -couch 51293 -couche 64423 -couched 62917 -couches 59702 -cougar 61362 -cougars 63245 -cough 51996 -coughed 62469 -coughing 57831 -coughs 62762 -could 31679 -could've 55684 -coulda 61940 -couldn't 42048 -couldnt 52661 -coulombic 64423 -coumadin 60762 -coumarin 64657 -council 44853 -council's 56050 -councillor 57238 -councillors 56293 -councilman 61940 -councils 51772 -counsel 47694 -counsel's 58017 -counseled 61051 -counseling 48619 -counselled 64657 -counselling 52791 -counsellor 59630 -counsellors 60492 -counselor 52954 -counselors 54857 -counsels 61584 -count 42574 -countable 58065 -countdown 54419 -counted 48199 -countenance 64201 -counter 42676 -counteract 56721 -counteracted 62762 -counteracting 64905 -counteracts 62762 -counterbalance 62917 -counterbalanced 62613 -counterclaim 61256 -counterclockwise 59630 -counterculture 65452 -countercurrent 63419 -countered 58065 -counterfactual 63601 -counterfeit 55657 -counterfeiting 61584 -countering 60405 -counterinsurgency 62917 -counterintuitive 64657 -counterions 64905 -countermeasure 65452 -countermeasures 58417 -counteroffer 64423 -counterpart 53241 -counterparties 64657 -counterparts 52927 -counterparty 61362 -counterpoint 60580 -counterproductive 63601 -counters 50256 -countersink 59560 -counterstained 60321 -counterstrike 62469 -counterterrorism 61362 -countertop 60762 -countertops 59848 -countertransference 61152 -countervailing 61818 -counterweight 63077 -countess 65170 -counties 47349 -counting 48139 -countless 49867 -countries 39606 -country 38021 -country's 41958 -countryangelnpa 65170 -countrymen 61152 -countrys 63991 -countryside 52635 -countrywide 60580 -counts 45912 -county 42852 -county's 54622 -countywide 59101 -coup 54439 -coupe 54835 -coupes 65452 -couple 39496 -couple's 55348 -coupled 44416 -coupler 55299 -couplers 58365 -couples 47367 -coupling 45792 -couplings 54749 -coupon 47047 -coupons 48135 -coups 65452 -coupé 64423 -courage 50446 -courageous 55766 -courageously 65452 -courant 63792 -couric 63419 -courier 54041 -couriers 64657 -cours 60000 -course 37279 -course's 64423 -coursebook 63991 -coursed 65452 -courses 41543 -courseware 62917 -coursework 55821 -coursing 64657 -court 39035 -court's 49405 -courted 62196 -courteous 56485 -courtesan 65170 -courtesy 45052 -courthouse 55154 -courthouses 65452 -courting 60580 -courtly 65452 -courtney 58979 -courtroom 55552 -courts 46282 -courtship 57696 -courtyard 53988 -courtyards 62762 -couscous 62331 -couse 64201 -cousin 50591 -cousin's 62917 -cousins 55084 -cout 57278 -couture 55738 -couverture 61362 -covalent 55526 -covalently 56585 -covariance 53952 -covariances 64905 -covariant 59774 -covariate 61472 -covariates 58417 -cove 59227 -coved 63792 -covenant 55766 -covenants 55526 -cover 38458 -coverage 42012 -coverages 59424 -coveralls 65170 -covered 41085 -covering 44234 -coverings 57009 -covers 43066 -coverslip 61362 -coverslips 59357 -covert 55398 -covertly 64423 -coverup 63991 -coverups 63991 -covery 63601 -coves 63601 -covet 61699 -coveted 55578 -covets 65452 -covey 56551 -covington 59923 -cow 50164 -cow's 57785 -coward 63077 -cowardice 63991 -cowardly 61818 -cowards 63601 -cowbell 62762 -cowboy 52739 -cowboys 57923 -cowgirl 59227 -cowhide 63991 -cowie 63245 -cowl 62331 -coworker 60952 -coworkers 55877 -coworking 64657 -cowpea 63077 -cows 49899 -cox 59560 -coxa 63991 -coxsackievirus 64657 -coy 62331 -coyote 59630 -coyotes 62066 -coz 52899 -cozy 52609 -cp 53712 -cpa 61051 -cpanel 65170 -cpl 65452 -cpm 57009 -cps 62066 -cpu 54380 -cpxCBInfo 62917 -cr 51531 -crab 52447 -crabby 63601 -crabs 58212 -crack 42332 -crackdown 55766 -cracked 49464 -cracker 56262 -crackers 55877 -crackin 65170 -cracking 51590 -crackle 57566 -crackled 65170 -crackles 64201 -crackling 61818 -cracks 48706 -cracls 64657 -cradle 54399 -cradles 62917 -craft 47083 -crafted 50171 -crafters 63601 -crafting 56356 -crafts 49584 -craftsman 57046 -craftsmanship 56862 -craftsmen 57741 -crafty 58017 -craggy 63245 -craic 61362 -craig 57876 -craigslist 48256 -crak 59923 -crakear 62066 -craks 65452 -cram 59702 -crammed 57741 -cramming 63792 -cramp 61051 -cramped 57199 -cramping 60670 -cramps 57009 -cranberries 60580 -cranberry 55877 -crane 51931 -cranes 55793 -cranford 60078 -cranial 54622 -craniofacial 61940 -craniotomy 61818 -cranium 63601 -crank 52899 -crankcase 63792 -cranked 62762 -cranking 59424 -cranks 60000 -crankshaft 63419 -cranky 59227 -crannies 64657 -crap 48496 -crapped 62762 -crapper 65452 -crappy 52521 -craps 60238 -crash 45176 -crashed 50915 -crashes 51069 -crashing 53392 -crass 64201 -crassa 63245 -crate 55934 -crater 56972 -craters 61152 -crates 58802 -cratic 65452 -crave 55906 -craved 63991 -craves 62613 -craving 55448 -cravings 58065 -crawfish 62196 -crawford 63077 -crawl 52609 -crawled 53138 -crawler 56356 -crawlers 46637 -crawling 55178 -crawls 58745 -crayfish 60000 -crayon 60856 -crayons 58802 -craze 57199 -crazed 59774 -crazier 64905 -crazies 65170 -craziest 61362 -craziness 62469 -crazy 44624 -crc 59491 -crcl 65452 -crea 64201 -creaking 62469 -creaky 65170 -cream 44447 -creamed 61584 -creamer 64423 -creampie 55299 -creampies 64905 -creams 57238 -creamy 52872 -crear 64905 -crease 52805 -creased 53882 -creases 56791 -creasing 58365 -creat 61051 -create 34623 -createACLEntry 62917 -createNavigator 64905 -createRange 64905 -createReplica 62762 -created 36360 -createdBuild 65452 -createed 61699 -creates 44639 -creatine 55631 -creating 41280 -creatinine 52725 -creation 43659 -creationism 60762 -creationist 62066 -creationists 60856 -creations 53899 -creative 43053 -creatively 56721 -creativematch 63792 -creatives 62917 -creativity 49511 -creator 48801 -creator's 61940 -creators 52661 -creature 51560 -creature's 63991 -creatures 50122 -creche 65170 -crecimiento 64201 -cred 62469 -creda 64423 -credence 59357 -credential 58860 -credentialed 62917 -credentialing 59774 -credentials 50136 -credibility 51368 -credible 52459 -credibly 65452 -credit 37272 -creditable 62066 -creditcard 64657 -credited 48034 -crediting 60762 -creditor 55226 -creditor's 63792 -creditors 53865 -credits 45008 -creditsalternate 53646 -creditsepisode 63601 -creditstv 54023 -creditworthiness 64905 -credo 62762 -creed 57524 -creek 53138 -creeks 59357 -creel 63245 -creep 52423 -creeped 63601 -creeper 62469 -creepers 62066 -creeping 56485 -creeps 58860 -creepy 53256 -cremated 59357 -cremation 57696 -creme 56899 -crenarchaeon 65170 -creo 60321 -creole 63077 -creosote 63601 -crepe 60321 -creping 65452 -crept 58523 -crescendo 62469 -crescent 58365 -crescentus 63601 -crest 52447 -crested 61940 -crestor 63077 -crests 60405 -crete 60580 -crevasse 64657 -crevice 63991 -crevices 61256 -crew 44762 -crew's 64201 -crewcompany 53646 -crewman 65170 -crewmembers 64201 -crews 51660 -crewtriviaofficial 53646 -crf 64201 -cri 61584 -crib 54096 -cribs 60157 -criceticola 61362 -cricket 49376 -cricketer 59848 -cricketers 61362 -cricketing 63991 -crickets 59848 -cried 52622 -cries 54499 -crime 43438 -crimes 48195 -criminal 43723 -criminality 61818 -criminally 59292 -criminals 51899 -criminologist 65452 -criminology 64905 -crimp 59101 -crimping 65170 -crimson 58262 -cringe 61051 -crinkle 63792 -crinkled 65452 -cripple 60492 -crippled 57566 -cripples 64905 -crippling 57831 -crise 64423 -crises 54151 -crisis 43456 -crisp 51266 -crisper 63792 -crisply 65170 -crisps 61152 -crispy 56618 -criss 60078 -crisscross 62917 -crisscrossed 64201 -crissy 63601 -cristae 63419 -cristalline 63991 -cristata 64201 -cristiano 63419 -cristina 61256 -cristo 64657 -crit 56518 -criteria 42146 -criterion 48928 -critic 51620 -critic's 65170 -critical 40119 -criticality 60238 -critically 49913 -criticise 59848 -criticised 55906 -criticises 62196 -criticising 59630 -criticism 47471 -criticisms 54835 -criticize 54439 -criticized 52351 -criticizes 58577 -criticizing 56827 -critics 48897 -critique 51444 -critiqued 62469 -critiques 53286 -critiquing 64201 -critisism 61152 -crits 63991 -critter 61818 -critters 59227 -critères 64201 -crm 64657 -croatia 61940 -croc 62613 -crochet 54706 -crocheted 62066 -crock 57741 -crocker 64657 -crockery 63077 -crockpot 64201 -crocodile 58065 -crocodiles 59774 -crocs 62613 -croft 63792 -crofton 60078 -croissance 61472 -croissant 64423 -croissants 63991 -cron 60762 -cronies 62469 -crontab 65452 -crook 62917 -crooked 56551 -crooks 60580 -crooner 64657 -crop 46491 -cropland 60078 -cropped 55037 -cropping 55037 -crops 49319 -croquet 61051 -crore 55060 -crores 57876 -crosman 60762 -cross 42132 -crossbar 58417 -crossbow 63792 -crossbred 63792 -crosscutting 64905 -crossdev 64657 -crossdresser 62917 -crossdressing 61699 -crossed 49262 -crosses 51670 -crossfire 63245 -crosshair 65170 -crosshead 65452 -crossing 48046 -crossings 56756 -crosslink 63601 -crosslinked 56935 -crosslinker 64423 -crosslinkers 63601 -crosslinking 56140 -crosslinks 64423 -crossmatch 62196 -crossover 51238 -crossovers 62762 -crossref 62331 -crossroads 56935 -crosstalk 55906 -crosswalk 61940 -crosswise 63601 -crossword 57358 -crosswords 63991 -crotch 57122 -croton 62196 -crotonylidenediurea 64423 -crouch 62762 -crouched 63991 -crouching 64905 -croutons 62613 -crow 56972 -crowd 45951 -crowd's 65170 -crowded 50791 -crowding 58417 -crowds 52399 -crowdsourcing 64201 -crowed 65170 -crowing 65170 -crown 49065 -crowned 55604 -crowning 60000 -crowns 55323 -crows 58470 -crs 64905 -crt 64201 -crucial 45492 -crucially 60670 -cruciate 58417 -crucible 59227 -crucibles 65170 -cruciferous 65452 -crucified 60762 -crucifix 62469 -crucifixion 61818 -cruciform 62469 -crucify 65170 -crud 63792 -crude 47714 -crudely 64423 -cruel 52622 -cruelly 62469 -cruelty 55250 -cruise 45490 -cruised 58632 -cruiser 56324 -cruisers 60762 -cruises 47791 -cruising 47028 -crumb 60157 -crumble 58688 -crumbled 59164 -crumbles 64423 -crumbling 57970 -crumbly 61818 -crumbs 57741 -crummy 62066 -crumpled 62066 -crunch 50678 -crunched 64905 -crunches 63991 -crunching 62066 -crunchy 57524 -crunk 61584 -crusade 58113 -crusader 60856 -crusaders 63792 -crusades 64905 -crusading 65452 -crush 51148 -crushed 50630 -crusher 63792 -crushes 58470 -crushing 53256 -crust 51793 -crustacean 61472 -crustaceans 62762 -crustal 58688 -crusted 63077 -crusts 60856 -crusty 59424 -crutch 63077 -crutches 61940 -crux 58919 -cruz 59630 -cruzer 64201 -cruzi 60952 -cry 47077 -crying 50568 -cryogenic 58365 -cryopreservation 63077 -cryopreserved 62613 -cryoprotectant 64905 -cryosections 64201 -cryostat 60157 -cryosurgery 59039 -cryosurgical 63991 -crypt 59101 -cryptic 56293 -crypto 61699 -cryptococcosis 63419 -cryptogenic 65452 -cryptographic 57238 -cryptography 58632 -crypts 62613 -crysis 60952 -crystal 43767 -crystalline 49707 -crystallinity 57524 -crystallisation 63792 -crystallised 65170 -crystallite 59923 -crystallites 59227 -crystallization 53010 -crystallize 61256 -crystallized 57199 -crystallizes 61152 -crystallographic 54749 -crystallographically 63245 -crystallography 58745 -crystals 47482 -crème 60492 -cs 52375 -csScrollEnd 63792 -csc 64657 -cscs 65452 -csi 61584 -cso 64657 -css 52899 -csujon 64201 -csv 60492 -csvset 63077 -ct 51043 -ctr 62762 -ctrl 62762 -cts 64201 -ctu 65170 -ctw 65170 -ctype 63245 -cu 52187 -cua 64423 -cual 60952 -cualquier 62066 -cuando 56721 -cuanto 63245 -cuatro 61699 -cub 59702 -cuba 60856 -cuban 62196 -cubase 59923 -cubated 64657 -cubature 63601 -cube 51000 -cubed 63077 -cubes 55373 -cubic 49411 -cubical 64905 -cubicle 61256 -cubicles 63601 -cubilia 65170 -cubis 63991 -cuboid 61584 -cuboidal 64423 -cubs 58577 -cuckold 59164 -cuckoo 63419 -cucu 63991 -cucumber 55877 -cucumbers 61472 -cud 58632 -cuddle 60492 -cuddled 64905 -cuddling 62762 -cuddly 59164 -cudnt 64423 -cue 54479 -cued 63245 -cueing 65170 -cuenta 59164 -cuerpo 61362 -cues 53024 -cuff 52858 -cuffed 62066 -cufflinks 62066 -cuffs 55631 -cui 64423 -cuidate 63077 -cuisinart 62469 -cuisine 50185 -cuisines 58262 -cul 60762 -cular 58745 -culated 60492 -culation 64201 -culations 63792 -cules 62196 -culinary 51312 -cull 61584 -culled 58577 -cullen 64905 -culling 60952 -culls 65170 -culminate 59630 -culminated 58313 -culminates 59848 -culminating 56388 -culmination 57160 -culms 61362 -culo 60856 -culpa 64905 -culpability 63792 -culpable 63601 -culprit 57482 -culprits 60952 -cult 50991 -culties 65170 -cultivar 56687 -cultivars 54643 -cultivate 55500 -cultivated 51996 -cultivates 64657 -cultivating 58365 -cultivation 52648 -cults 60000 -cultura 62469 -cultural 42235 -culturally 52739 -culture 40273 -culture's 60492 -cultured 47097 -cultures 45319 -culturing 58365 -culty 64657 -culvert 60238 -culverts 64657 -cum 47163 -cumbersome 55474 -cumin 57278 -cummed 64657 -cumming 58919 -cummings 63077 -cummins 65452 -cums 60078 -cumshot 54439 -cumshots 56721 -cumulant 62613 -cumulated 63991 -cumulation 63792 -cumulative 49262 -cumulatively 64423 -cumulonimbus 63792 -cumulus 62331 -cuneate 63792 -cuneiform 65452 -cunnilingus 58113 -cunning 58365 -cunt 53485 -cunts 60000 -cup 43285 -cupboard 57358 -cupboards 59630 -cupcake 57566 -cupcakes 56518 -cupertino 56652 -cupholders 63077 -cupid 64657 -cuppa 62066 -cupped 62762 -cupping 63077 -cups 47827 -cur 61818 -cura 63419 -curable 58860 -curacy 64905 -curate 63419 -curated 59292 -curation 65170 -curative 55631 -curator 56585 -curators 60405 -curb 51804 -curbed 63419 -curbing 59702 -curbs 58523 -curbside 59848 -curcumin 63601 -curd 58632 -curds 63991 -cure 47272 -cured 51752 -curently 63792 -cures 54835 -curettage 61362 -curfew 58688 -curiae 64905 -curing 52832 -curiosities 64201 -curiosity 53796 -curious 48318 -curiousity 65452 -curiously 59039 -curl 53746 -curled 57741 -curler 64423 -curlers 59357 -curling 56791 -curls 58313 -curly 55963 -curmudgeon 64423 -curred 61940 -currence 64905 -currencies 53952 -currency 45961 -current 34613 -currentUser 62331 -currently 36590 -currents 48861 -curricula 55992 -curricular 57122 -curriculum 46285 -curriculums 63419 -curried 63991 -curries 62917 -curry 51620 -curs 62762 -curse 53095 -cursed 57876 -curses 60762 -cursing 60405 -cursive 61818 -curso 60492 -cursor 50530 -cursors 61818 -cursory 59560 -cursus 64423 -curt 63991 -curtail 59227 -curtailed 60321 -curtailing 63077 -curtailment 62469 -curtain 52303 -curtains 55299 -curtilage 63991 -curtis 57238 -curuxz 63601 -curvaceous 60952 -curvature 51453 -curvatures 61256 -curve 44140 -curved 49657 -curves 45463 -curvilinear 61818 -curving 59774 -curvy 60670 -cus 58017 -cused 63419 -cushion 53196 -cushioned 57970 -cushioning 58313 -cushions 55373 -cushy 63792 -cusp 56170 -cusps 62331 -cuss 61256 -cussed 59164 -cusses 65170 -cussing 64905 -cussion 62762 -custard 58065 -custodial 56388 -custodian 57741 -custodians 61152 -custody 49070 -custom 41612 -customarily 60405 -customary 53392 -customer 37212 -customer's 51131 -customers 39011 -customisable 63077 -customisation 62613 -customise 58632 -customised 56388 -customizable 52968 -customization 53952 -customizations 60580 -customize 47197 -customized 47891 -customizing 55738 -customs 49330 -cut 39127 -cutaneous 51368 -cutaway 59560 -cutback 64905 -cutbacks 60856 -cute 44757 -cuteness 63419 -cuter 61472 -cutest 56721 -cutesy 64657 -cuticle 59774 -cuticular 63991 -cutie 55684 -cuties 59491 -cutive 63077 -cutlery 58919 -cutlerylover 61051 -cutlets 64657 -cutoff 53271 -cutoffs 61699 -cutout 58212 -cutouts 61256 -cuts 44894 -cutscene 64423 -cutscenes 63077 -cutter 53407 -cutters 57831 -cutthroat 61818 -cutting 43587 -cuttings 57696 -cuvette 61818 -cuvettes 64657 -cuz 48851 -cv 54946 -cvs 56618 -cw 59164 -cx 59227 -cxf 63245 -cy 58162 -cya 59848 -cyan 58632 -cyanide 56021 -cyano 65452 -cyanobacteria 58802 -cyanobacterial 63601 -cyanogen 63245 -cyanogenic 62196 -cyanogens 62066 -cyanosis 65452 -cyanuric 64657 -cyber 53226 -cybercrime 65170 -cyberinfrastructure 62917 -cyberlink 61152 -cybermentor 63419 -cybernetic 63601 -cyberpunk 63991 -cybersex 59357 -cyberspace 57923 -cybertron 62762 -cyborg 64905 -cyclase 57160 -cycle 42474 -cycled 61152 -cyclen 59774 -cycler 63245 -cyclers 63419 -cycles 47047 -cyclic 48716 -cyclical 55992 -cyclically 62331 -cyclin 55877 -cycling 48736 -cyclingart 59491 -cyclisation 61940 -cyclist 57440 -cyclists 56324 -cyclization 59039 -cyclizing 62917 -cycloaddition 60952 -cycloaliphatic 64657 -cycloalkyl 61472 -cyclobenzaprine 61584 -cyclocross 62613 -cyclodextrin 62066 -cyclodextrins 64423 -cyclohexane 61940 -cyclohexanone 63991 -cyclohexene 63419 -cycloheximide 61699 -cyclone 55226 -cyclones 60321 -cyclonic 65170 -cyclooxygenase 59848 -cyclophosphamide 56862 -cyclopoid 63601 -cyclosporin 62196 -cyclosporine 59424 -cyclotron 60580 -cygwin 63601 -cyl 57358 -cylinder 48105 -cylinders 52778 -cylindrical 49184 -cylindrospermopsin 61362 -cymbal 62762 -cymbals 62613 -cymbalta 59774 -cynic 64905 -cynical 55500 -cynically 64905 -cynicism 59630 -cynnwys 62613 -cynomolgus 63991 -cynthia 63601 -cypress 59164 -cyproheptadine 63991 -cyproterone 62469 -cyprus 60078 -cypux 63792 -cyrus 57358 -cyst 52484 -cysteine 53361 -cysteines 65170 -cystic 51017 -cystine 60157 -cystinosis 64657 -cystitis 63419 -cystoid 65170 -cysts 53501 -cyt 60238 -cytarabine 62917 -cyte 63792 -cytes 59702 -cytidine 60952 -cyto 63245 -cytochalasin 61152 -cytochemical 64201 -cytochrome 51008 -cytochromes 63077 -cytogenetic 59630 -cytokeratin 62917 -cytokine 51690 -cytokines 51284 -cytokinin 64905 -cytokinins 61256 -cytologic 61472 -cytological 58919 -cytology 56140 -cytolytic 59630 -cytomegalovirus 56935 -cytometer 59424 -cytometric 58313 -cytometry 54643 -cytopathic 64657 -cytoplasm 53581 -cytoplasmic 51131 -cytosine 59923 -cytoskeletal 57970 -cytoskeleton 58017 -cytosol 56518 -cytosolic 53377 -cytostatic 63077 -cytotec 57046 -cytotoxic 53052 -cytotoxicity 54835 -cz 57358 -czar 63991 -czech 59702 -czy 65170 -có 65452 -código 61472 -cómo 63419 -d 39395 -d'Alene 61940 -d'Art 65170 -d'Azur 60238 -d'Economia 59101 -d'Epargne 65170 -d'Etude 65170 -d'Etudes 62196 -d'Europe 65452 -d'Histoire 52484 -d'Italia 64201 -d'Ivoire 50766 -d'Optique 56756 -d'Or 59774 -d'Oro 65170 -d'Orsay 64423 -d'Zan 63792 -d'accueil 61152 -d'aide 60762 -d'amore 64657 -d'art 64423 -d'audience 58470 -d'auteur 55014 -d'autres 63792 -d'emploi 63792 -d'ici 62917 -d'idioma 65452 -d'info 63991 -d'infos 65170 -d'ivoire 65452 -d'oeuvres 61051 -d'or 63601 -d's 62917 -d'un 54581 -d'une 55963 -d'utilisation 60952 -d'écran 64423 -d'être 60670 -dA 57399 -dB 49152 -dBA 61362 -dBASE 64201 -dBCodes 65452 -dBase 57318 -dBc 64905 -dBi 64657 -dBm 57923 -dC 62613 -dCi 61256 -dD 65170 -dE 62469 -dEUS 62613 -dF 60405 -dGTP 64905 -dH 63991 -dIvoire 63245 -dL 62331 -dLife 64201 -dM 62469 -dN 63991 -dNTP 61940 -dO 62762 -dOwnLEZ 65452 -dP 62613 -dQ 63419 -dR 63419 -dS 59848 -dSLR 63245 -dStore 61699 -dT 61699 -dUTP 63991 -dV 61818 -dW 62469 -dX 64905 -da 42084 -daar 63245 -dab 57566 -dabble 63601 -dabbled 62762 -dabbling 64657 -daca 62762 -dachshund 64905 -dad 46973 -dad's 57046 -dada 64905 -daddies 62066 -daddy 52845 -daddy's 59101 -daddys 63792 -dade 63991 -dado 63601 -dads 55992 -dadsvstwinks 65170 -dae 64657 -daemon 54380 -daemons 63245 -daffodil 63245 -daffodils 64201 -daft 59101 -dag 59923 -dager 65170 -dagger 59227 -daggers 62196 -dagsboro 64423 -dah 58919 -daha 62331 -dai 59292 -dailies 61472 -daily 38895 -dailymotion 61699 -dainty 60405 -dairy 48576 -dais 63792 -daisies 62917 -daisy 58162 -daiwa 62762 -dak 64657 -dakar 61584 -dake 64657 -dakota 58688 -dal 57238 -dalam 61472 -dale 57318 -dalennau 63991 -dali 64201 -dalicious 65170 -dalilhavanaboy 64201 -dalla 63991 -dallas 54283 -dallasdancemusic 65452 -dalszöveg 63601 -dalton 61256 -dam 51220 -damage 40770 -damaged 46384 -damages 46370 -damaging 50991 -damascene 63601 -damask 60856 -dame 58979 -damental 65452 -damian 65452 -damien 63792 -damit 63419 -damm 64657 -dammed 65170 -damn 46486 -damnation 65170 -damned 54264 -damning 61256 -damnum 65170 -damon 63792 -damp 52818 -damped 59774 -dampen 59702 -dampened 61256 -dampening 60492 -damper 57876 -dampers 61051 -damping 52899 -dampness 64657 -dams 56231 -damsel 64905 -dan 50164 -dana 58313 -dance 42207 -danceable 65452 -danced 54479 -dancefloor 60670 -dancehall 61152 -dancer 51284 -dancer's 64905 -dancers 51284 -dances 52913 -dancin 60157 -dancing 46587 -dandelion 63601 -dander 64657 -dando 64201 -dandruff 65452 -dandy 57876 -dane 60078 -dang 58313 -danger 47248 -dangerahead 62917 -dangerous 45255 -dangerously 56324 -dangers 50662 -dangle 61584 -dangled 65452 -dangling 57741 -dangly 62917 -dango 64423 -dani 61818 -daniel 54188 -danielle 60762 -daniels 62196 -danish 61152 -dank 61256 -danke 61362 -dann 60078 -danni 65452 -danny 57318 -dans 48861 -danse 61051 -dansk 57876 -dansko 63991 -dant 64657 -dantcer 62613 -dante 64201 -danza 56862 -dança 62066 -dap 61472 -dapat 62762 -daphne 65170 -dapper 57785 -dapsone 62917 -dar 57046 -dara 61818 -darapada 65452 -dard 57696 -dardania 64423 -dards 62917 -dare 50537 -dared 57009 -daredevil 64423 -dares 58860 -dargains 64657 -dari 59357 -darifenacin 61584 -daring 54133 -dark 41607 -darken 61940 -darkened 57046 -darkening 61051 -darkens 64905 -darker 51867 -darkest 57046 -darkly 60405 -darkness 51017 -darkpaw 65452 -darkroom 61472 -darks 64657 -darkzorb 63601 -darlene 65452 -darlin 64905 -darling 54685 -darlings 63991 -darmowe 61818 -darn 52791 -darned 62762 -darren 63077 -dart 56356 -darted 64201 -darth 63245 -darting 64423 -darts 56452 -darvocet 64423 -darwin 61051 -das 49423 -dasamsa 64201 -dase 64657 -dash 50654 -dashboard 53813 -dashboards 63245 -dashed 52062 -dashes 60000 -dashing 59039 -dass 57696 -dastardly 64423 -dat 49913 -data 32016 -databace 64201 -databank 63991 -database 39157 -databases 45360 -datacenter 61699 -datacentre 61699 -datafile 64201 -datagram 61256 -datagrams 63792 -datagrid 61362 -datapath 59774 -dataset 53010 -datasets 54360 -datasheet 53066 -datasheets 60492 -datasource 65452 -datatype 61472 -datatypes 63601 -date 36100 -dated 45237 -datenblatt 64201 -dates 43379 -datesfilming 53646 -datetime 60856 -dati 64905 -dating 42646 -dation 57785 -dations 64905 -datos 60238 -dats 60238 -datum 57609 -datz 65170 -dau 61051 -daughter 42953 -daughter's 53662 -daughters 50074 -daunorubicin 63601 -daunting 54133 -dav 64423 -dave 53316 -daveb 65452 -daveperks 65452 -david 49313 -davidson 61940 -davinator 65170 -davis 56585 -daw 63601 -dawg 62762 -dawn 51275 -dawned 59774 -dawning 62196 -dawnload 61152 -dawns 63792 -dawson 63077 -day 33309 -day's 50654 -daycare 55906 -daydream 63077 -daydreaming 63245 -daylife 63601 -daylight 52584 -daylong 61584 -days 32662 -daytime 52597 -dayton 61256 -daytona 61472 -daze 63991 -dazed 62613 -dazu 63991 -dazzle 59101 -dazzled 60670 -dazzles 64905 -dazzling 54992 -daß 63077 -db 52496 -dbExpress 60238 -dbGaP 38598 -dba 54114 -dbase 62066 -dbf 63792 -dbl 65170 -dbo 63792 -dbp 62762 -dbx 63245 -dbz 59774 -dc 50277 -dca 62762 -dco 63245 -dcp 63077 -dcr 65170 -dct 63077 -dd 53865 -ddI 63601 -ddadmin 63991 -ddd 63792 -ddim 63245 -ddl 57696 -ddr 61818 -dds 62066 -de 32151 -dea 64657 -deacetylase 60492 -deacetylated 64423 -deacetylation 64657 -deacon 63419 -deactivate 58919 -deactivated 57696 -deactivating 61940 -deactivation 60321 -dead 41729 -deadbeat 63601 -deadbolt 65452 -deadliest 60580 -deadline 48323 -deadlines 53377 -deadlock 58162 -deadlocked 64657 -deadlocks 64905 -deadly 49157 -deadweight 63991 -deaf 52712 -deafened 64423 -deafening 61256 -deafness 59702 -deal 38764 -dealer 45902 -dealer's 57785 -dealers 47791 -dealership 53052 -dealerships 55849 -dealing 43714 -dealings 54439 -dealnews 63601 -deals 40931 -dealt 47871 -dealterms 65452 -deaminase 61152 -deamination 64423 -dean 52765 -dean's 61472 -deanna 65170 -deans 60952 -dear 48892 -dearest 59357 -dearly 57785 -dearth 58577 -death 39445 -deathbed 64905 -deathly 61584 -deathmatch 64423 -deaths 45831 -deb 58979 -debacle 59039 -debasisdas 62066 -debatable 61699 -debate 42924 -debated 54813 -debaters 63792 -debates 50499 -debating 54946 -debauchery 63601 -debbie 60000 -debby 65170 -debe 62469 -debenture 64905 -debentures 63245 -debian 56721 -debilitated 65452 -debilitating 56485 -debit 50923 -debited 61472 -debits 62917 -debonding 63991 -deborah 62613 -debra 64201 -debridement 60952 -debriefing 62331 -debris 50006 -debt 43263 -debtor 54059 -debtor's 60580 -debtors 59039 -debts 51610 -debuff 65452 -debug 51835 -debugger 58802 -debugging 52913 -debulking 65452 -debunk 63245 -debunked 61584 -debunking 63991 -debunks 63419 -debut 46183 -debutant 63245 -debutante 65170 -debuted 55766 -debuting 61818 -debuts 55154 -dec 55766 -decade 47262 -decade's 63601 -decadence 64657 -decadent 58313 -decades 46696 -decadron 63991 -decaf 64905 -decal 56791 -decals 56585 -decanted 63077 -decanter 62469 -decanting 64657 -decapitated 60952 -decapitation 63792 -decarboxylase 58313 -decarboxylation 61584 -decay 48468 -decayed 60952 -decaying 57358 -decays 56687 -deceased 51731 -deceased's 64905 -decedent 59630 -decedent's 60856 -deceit 60238 -deceitful 59848 -deceive 58313 -deceived 59702 -deceiving 60670 -decelerating 64423 -deceleration 59039 -december 56756 -decency 60405 -decennial 64905 -decent 46474 -decently 61472 -decentralisation 65170 -decentralised 62762 -decentralization 56485 -decentralized 56618 -deception 55766 -deceptive 56293 -deceptively 57923 -dechlorination 63991 -decibel 62331 -decibels 61940 -decide 42846 -decided 40462 -decidedly 55474 -decider 64905 -decides 49081 -deciding 48548 -decidua 65452 -deciduous 56110 -decile 59702 -deciles 64423 -decimal 53109 -decimals 62469 -decimated 61472 -decimation 63419 -decipher 59227 -deciphering 60492 -decir 59630 -decision 39520 -decisional 63601 -decisionmaking 65452 -decisions 43023 -decisis 64201 -decisive 53182 -decisively 59227 -decitabine 60492 -deck 46625 -decked 59424 -decker 59164 -decking 58688 -decks 53813 -declarant 65170 -declaration 49201 -declarations 54813 -declarative 59702 -declaratory 60321 -declare 48711 -declared 46503 -declares 53271 -declaring 53746 -declaw 64905 -declawed 64201 -declination 62917 -decline 45461 -declined 47968 -declines 52327 -declining 51425 -deco 57358 -decoction 64201 -decodable 65170 -decode 55348 -decoded 55202 -decoder 52872 -decoders 60492 -decodes 61362 -decoding 51087 -decolonisation 64905 -decommissioned 61818 -decommissioning 62331 -decompensated 64423 -decompiler 63601 -decompose 57653 -decomposed 55202 -decomposes 59227 -decomposing 60321 -decomposition 48667 -decompositions 61818 -decompress 61362 -decompression 56862 -decongestants 65452 -deconstruct 65452 -deconstruction 64657 -decontamination 59227 -deconvolution 62066 -decor 50983 -decorate 53501 -decorated 49946 -decorates 64905 -decorating 52164 -decoration 52584 -decorations 52472 -decorative 49523 -decorator 60321 -decorators 61584 -decorrelation 64905 -decorum 64657 -decouple 63991 -decoupled 59424 -decoupling 58979 -decoy 61362 -decoys 63792 -decrease 42047 -decreased 43364 -decreases 46269 -decreasing 47992 -decree 54188 -decreed 59357 -decrees 60157 -decrement 60238 -decrements 64905 -decrepit 62917 -decried 63077 -decry 64657 -decrypt 59702 -decrypted 62331 -decrypter 64423 -decrypting 64201 -decryption 60762 -decrypts 64201 -decumbens 64201 -ded 62196 -dedicate 54341 -dedicated 41775 -dedicates 61584 -dedicating 60492 -dedication 48928 -deduce 56551 -deduced 52221 -deducing 64905 -deduct 56356 -deducted 54770 -deductibility 63601 -deductible 52609 -deductibles 61818 -deducting 60670 -deduction 52280 -deductions 55448 -deductive 61152 -dee 57009 -deeb 61584 -deed 52051 -deeded 61940 -deeds 54560 -deejay 64201 -deel 64201 -deem 54519 -deemed 45877 -deeming 63991 -deems 54479 -deen 64423 -deena 65170 -deep 41054 -deepOfix 64657 -deepal 62613 -deepen 55107 -deepened 60078 -deepening 56862 -deepens 61152 -deeper 47321 -deepest 52459 -deepika 64905 -deeply 47283 -deepsea 62613 -deepthroat 57399 -deepthroats 63601 -deepwater 59630 -deer 49313 -deere 61699 -deerme 63792 -def 48866 -deface 64201 -defaced 63601 -defacing 64201 -defacto 64905 -defamation 59227 -defamatory 58017 -defame 65452 -defatted 60321 -default 42446 -defaultValue 65170 -defaulted 59923 -defaulting 60952 -defaults 50560 -defeat 47919 -defeated 49966 -defeating 54601 -defeats 55202 -defecation 62469 -defect 48046 -defected 64905 -defection 62196 -defections 61699 -defective 49152 -defectives 64905 -defects 47311 -defence 48766 -defences 57318 -defend 48118 -defendant 46523 -defendant's 51266 -defendants 51026 -defended 53024 -defender 52982 -defenders 56551 -defending 50670 -defends 53517 -defense 44135 -defenseless 63245 -defenseman 59424 -defenses 54302 -defensible 60952 -defensins 64201 -defensive 48677 -defensively 63077 -defer 55738 -deference 59101 -deferens 58745 -deferment 63991 -deferral 61362 -deferrals 64657 -deferred 52029 -deferring 63419 -defers 64657 -deff 63601 -defiance 59357 -defiant 59292 -defiantly 61256 -defibrillation 61051 -defibrillator 58113 -defibrillators 63077 -defibrinated 65452 -deficiencies 51909 -deficiency 48309 -deficient 52118 -deficit 48672 -deficits 52085 -defied 59101 -defies 57970 -definable 59101 -definate 64201 -definately 52303 -defination 65452 -definatly 59702 -define 43155 -defined 39059 -defines 47293 -definetely 62613 -definetly 59101 -defining 46855 -definite 48964 -definitely 42793 -definition 41923 -definitional 62196 -definitions 47485 -definitive 49645 -definitively 58523 -definitly 60157 -defintely 63077 -deflate 64657 -deflated 61362 -deflation 58417 -deflect 57876 -deflected 58745 -deflecting 60238 -deflection 53346 -deflections 61152 -deflector 59848 -deflectors 64657 -deflects 64657 -deflower 60762 -deflowered 61256 -deflowering 62196 -defnyddio 65452 -defo 62196 -defocus 63419 -defoliation 63792 -deforestation 57566 -deforested 64201 -deform 60952 -deformable 59424 -deformation 48030 -deformations 57876 -deformed 53565 -deforming 61472 -deformities 59039 -deformity 57122 -defrag 62196 -defragment 63419 -defraud 60762 -defrauded 62196 -defrauding 61051 -defray 62066 -defrayed 57609 -defrost 62066 -defroster 64657 -deft 60580 -deftly 59101 -defunct 58577 -defuse 62331 -defused 65452 -defy 55154 -defying 59227 -deg 54770 -degassed 63245 -degassing 64201 -degeneracy 60405 -degenerate 55348 -degenerated 59491 -degenerating 62762 -degeneration 52940 -degenerative 55992 -deggie 62917 -deglaciation 64423 -degli 54170 -degradable 62762 -degradation 46969 -degradations 65452 -degradative 62917 -degrade 53796 -degraded 52940 -degrades 56827 -degrading 56293 -degranulation 64423 -degreasing 63601 -degree 39325 -degrees 43519 -deh 64905 -dehulled 65452 -dehumanizing 64423 -dehumidifier 61818 -dehumidifiers 64657 -dehydrated 55084 -dehydrating 64657 -dehydration 55604 -dehydroepiandrosterone 63792 -dehydrogenase 51835 -dehydrogenases 63991 -dehydrogenation 60492 -dei 53882 -deified 62917 -dein 63245 -deine 62196 -deinen 64657 -deionized 55657 -deities 60856 -deity 58313 -deja 58577 -dejar 64905 -dejected 63601 -dejo 63601 -deka 65452 -del 42001 -dela 60157 -delamination 58979 -delaware 61152 -delay 39045 -delayed 44794 -delaying 55202 -delays 46663 -delbrueckii 64657 -delectable 58802 -delegate 53346 -delegated 54023 -delegates 50758 -delegating 63245 -delegation 50782 -delegations 58523 -delet 65452 -delete 43610 -deleteGroup 64423 -deleteReplicas 64423 -deleteRole 62762 -deleteServer 63601 -deleteUser 63601 -deleted 46141 -deleterious 55373 -deletes 56140 -deleting 51888 -deletion 40388 -deletions 55906 -delhi 57440 -deli 57122 -deliberate 52899 -deliberated 61818 -deliberately 51909 -deliberating 64201 -deliberation 57278 -deliberations 56551 -deliberative 60405 -delicacies 60952 -delicacy 60321 -delicate 50046 -delicately 58523 -delicatessen 64905 -delice 60762 -delicious 46587 -deliciously 59292 -delight 51113 -delighted 48902 -delightful 51531 -delightfully 58802 -delighting 63991 -delights 55202 -delignification 62917 -delignified 64905 -delimit 64201 -delimitation 61940 -delimited 58523 -delimiter 61051 -delimiting 64423 -delineate 56791 -delineated 56618 -delineates 63419 -delineating 61051 -delineation 57160 -delinquencies 61818 -delinquency 56756 -delinquent 54519 -delinquents 63991 -delirious 62469 -delirium 59702 -delisted 64201 -delisting 64423 -deliver 42109 -deliverability 64657 -deliverable 61256 -deliverables 56935 -deliverance 61699 -delivered 41907 -deliveries 52375 -delivering 46017 -delivers 45909 -delivery 37625 -dell 52725 -della 51772 -delle 55060 -dello 61940 -delocalization 61584 -delocalized 63419 -delonghi 64657 -delphi 61584 -dels 61584 -delta 50932 -deltas 64905 -deltoid 63077 -deluded 63077 -deluge 60321 -deluged 64201 -delusion 61256 -delusional 61472 -delusions 60078 -delux 62613 -deluxe 51425 -delve 56231 -delved 61699 -delves 60580 -delving 62762 -dem 50940 -demagnetization 65170 -demand 41544 -demande 64905 -demanded 51166 -demandes 64657 -demanding 48538 -demands 45718 -demarcate 65170 -demarcated 63245 -demarcation 59560 -demasiado 64905 -demeaning 61152 -demeanor 59560 -demented 58632 -dementia 51953 -dementias 65170 -demerits 65452 -demethylation 64657 -demi 58802 -demic 62613 -demineralization 62331 -demineralized 61940 -demise 54059 -demo 46590 -democracies 59923 -democracy 48169 -democrat 57609 -democratic 48697 -democratically 60000 -democratization 61051 -democrats 57970 -demodulated 64201 -demodulation 64201 -demodulator 61152 -demoed 64423 -demographic 48907 -demographics 53316 -demography 60952 -demolish 59227 -demolished 55963 -demolishing 65170 -demolition 52435 -demon 55107 -demonic 59227 -demonized 65170 -demons 55373 -demonstrable 57785 -demonstrably 61152 -demonstrate 43434 -demonstrated 42235 -demonstrates 47335 -demonstrating 49371 -demonstration 47649 -demonstrations 52029 -demonstrative 63991 -demonstrator 61699 -demonstrators 59560 -demoralizing 64657 -demos 53899 -demoted 60952 -demotion 63077 -dems 63991 -demultiplexer 63245 -demultiplexing 64201 -demure 64657 -demurrage 63077 -demurrer 65170 -demux 63077 -demyelinating 59227 -demyelination 63601 -demystify 63991 -demás 65452 -den 46234 -denM 64905 -denarii 64201 -denaturation 56356 -denature 65170 -denatured 56420 -denaturing 58162 -dence 54560 -dency 64423 -dendrimer 63601 -dendrimers 63245 -dendrite 61256 -dendrites 58017 -dendritic 53167 -denervated 63991 -denervation 62066 -dengan 59774 -dengue 60670 -denial 50394 -denials 61051 -denied 46141 -denier 60580 -denies 50906 -denigrate 63245 -denim 53501 -denis 64905 -denise 61152 -denitrification 63077 -denitrogenation 62066 -denitrosation 65452 -denizens 62196 -denmark 60762 -denn 61256 -denna 65452 -denne 62917 -dennis 60000 -dennistravels 63991 -denominated 59923 -denomination 58523 -denominational 61940 -denominations 59424 -denominator 55821 -denominators 64423 -denote 48025 -denoted 50081 -denotes 47968 -denoting 57482 -denounce 60492 -denounced 58162 -denounces 63245 -denouncing 61818 -dens 62917 -densa 63991 -dense 48359 -densely 53271 -denser 58523 -densest 65170 -densidad 65452 -densification 59848 -densities 49229 -densitometric 60670 -densitometry 60238 -density 41072 -densité 64657 -dent 51502 -dent's 65452 -dental 44811 -dentate 57876 -dented 58632 -dential 65452 -dentifrice 65452 -dentin 58470 -dentinal 65452 -dentine 63792 -dentist 50678 -dentist's 63077 -dentistry 54170 -dentists 54207 -dentition 62066 -dently 63419 -dentro 62196 -dents 55398 -denture 60670 -dentures 61940 -denuclearization 65452 -denudation 63601 -denuded 63245 -denuke 63419 -denunciation 62196 -denver 57160 -deny 45690 -denying 51425 -deo 62762 -deodorant 58417 -deosn't 65170 -deoxycholate 62613 -deoxynucleotide 64657 -deoxynucleotidyl 62331 -deoxyribonucleic 60580 -deoxyuridine 64905 -dep 60762 -depakote 64423 -deparaffinized 64905 -depart 49893 -departed 54946 -departing 53746 -department 42036 -department's 54170 -departmental 52832 -departments 45634 -departs 57970 -departure 48243 -departures 55250 -depeche 63792 -depend 44834 -dependability 59560 -dependable 54835 -dependant 55631 -dependants 65170 -depended 53407 -dependence 45052 -dependences 56518 -dependencies 54078 -dependency 50807 -dependent 43611 -dependently 63419 -dependents 58523 -depending 42273 -depends 42815 -dephasing 64905 -dephosphorylated 62469 -dephosphorylation 61362 -depict 53517 -depicted 49440 -depicting 52571 -depiction 55423 -depictions 57046 -depicts 51377 -deplete 60321 -depleted 53565 -depletes 64423 -depleting 60405 -depletion 50848 -depletions 64423 -deplorable 61940 -deploy 50940 -deployable 62066 -deployed 49325 -deploying 53988 -deployment 48363 -deployments 57696 -deploys 59630 -depo 61472 -depois 65452 -depolarization 56452 -depolarizations 64657 -depolarized 61152 -depolarizing 58860 -depolymerization 63792 -deport 61584 -deportation 58688 -deported 59560 -deposed 60405 -deposit 45302 -depositary 65170 -deposited 47630 -depositing 56293 -deposition 46976 -depositional 60000 -depositions 60580 -depositors 61362 -depository 58065 -deposits 47378 -depot 54499 -depots 59424 -depp 63792 -depraved 63991 -deprecated 61362 -depreciable 63419 -depreciate 62762 -depreciated 62196 -depreciating 61818 -depreciation 54078 -depress 57653 -depressant 61584 -depressants 64423 -depressed 49764 -depresses 63077 -depressing 54835 -depression 45816 -depressions 59292 -depressive 52375 -depressor 63419 -deprivation 53377 -deprive 56652 -deprived 52546 -deprives 63601 -depriving 59923 -deprotection 64201 -deprotonation 63991 -dept 57696 -depth 43265 -depths 51052 -depuis 62196 -depuration 60492 -deputation 65452 -deputies 56862 -deputy 49758 -deputydog 64657 -der 42884 -derail 60157 -derailed 61362 -derailleur 63077 -derailment 62917 -deranged 62469 -derangement 61818 -derbi 62917 -derby 55448 -dere 62066 -derecho 65170 -derechos 60405 -dered 62762 -dereference 63601 -deregulated 61818 -deregulation 57358 -derek 59164 -derelict 59774 -deri 62469 -derided 62066 -derision 64657 -derivable 63792 -derivado 63601 -derivates 64657 -derivation 52739 -derivations 61699 -derivative 47378 -derivatives 47392 -derivatization 60856 -derivatized 60492 -derive 48771 -derived 42114 -derives 53470 -deriving 54133 -dermal 54924 -dermalogica 62469 -dermatitis 54946 -dermatologic 63792 -dermatological 62066 -dermatologist 59101 -dermatologists 60952 -dermatology 56935 -dermis 59164 -dernier 63991 -dernière 64905 -derogation 61584 -derogatory 58632 -derrick 62066 -ders 61051 -derstanding 63792 -des 41824 -desalination 56972 -desalted 63245 -desarrollo 60952 -desaturase 64905 -desaturation 62762 -desc 56721 -descarga 56551 -descargar 53196 -descargas 62917 -descend 56200 -descendant 57482 -descendants 54321 -descended 55299 -descendent 63601 -descendents 61472 -descending 48552 -descends 59357 -descent 51888 -describe 42162 -described 37516 -describes 43180 -describing 46881 -description 39409 -descriptions 46125 -descriptive 50074 -descriptor 56756 -descriptors 55963 -desde 55084 -desegregation 61699 -deselect 60157 -deselected 60078 -desensitization 59923 -desensitized 63601 -desenvolvimento 61940 -deseo 62917 -desert 48726 -deserted 56485 -desertification 63601 -deserts 57970 -deserve 47875 -deserved 53301 -deservedly 62762 -deserves 49207 -deserving 55448 -desflurane 63991 -desi 54264 -desiccant 63792 -desiccated 61584 -desiccation 59630 -desiccator 62762 -design 35586 -designate 52303 -designated 44423 -designates 57199 -designating 57084 -designation 50094 -designations 55474 -designator 60492 -designed 37388 -designee 59630 -designees 64905 -designer 45041 -designer's 60000 -designers 47504 -designing 47123 -designs 44317 -desipramine 63245 -desirability 58470 -desirable 47526 -desirably 61584 -desire 44727 -desired 43767 -desires 51425 -desiring 57084 -desirous 61699 -desist 61472 -desk 46732 -deskjet 64201 -desks 56721 -desktop 43915 -desktops 52778 -desktopx 62469 -deskunk 64905 -deslauriers 65170 -desley 62196 -deslizadores 64657 -desloge 62917 -desma 63077 -desman 61152 -desmanthus 65170 -desmoglein 60580 -desnuda 64905 -desogestrel 65452 -desolate 60856 -desorbed 62917 -desorption 55274 -despa 63077 -despair 54879 -despatch 59630 -despatched 56170 -desperate 49739 -desperately 52085 -desperation 58262 -despicable 61940 -despise 58365 -despised 60405 -despises 64423 -despite 42479 -despre 62331 -despues 62469 -desputes 63601 -dessa 65170 -dessert 51660 -desserts 54499 -destabilization 62762 -destabilize 62196 -destabilized 63601 -destabilizing 61152 -deste 63991 -destin 65170 -destination 45380 -destinations 49336 -destined 52268 -destinies 63077 -destiny 53407 -destitute 61699 -destroy 47619 -destroyed 47787 -destroyer 59292 -destroyers 64657 -destroying 51377 -destroys 54643 -destruction 47795 -destructive 51473 -destructor 61051 -desu 60670 -det 54439 -detach 58979 -detachable 56170 -detachably 61818 -detached 49966 -detaching 63991 -detachment 56652 -detachments 65452 -detail 41220 -detailed 39168 -detailer 65452 -detailing 50983 -details 29457 -detailsDVD 53646 -detailscombined 53646 -detailsfull 53646 -detailsliterature 53646 -detain 60492 -detained 53899 -detainee 62196 -detainees 58417 -detaining 64905 -detaljer 55526 -detalles 56687 -detect 45062 -detectability 62196 -detectable 49802 -detectably 64657 -detected 42654 -detecting 48766 -detection 42436 -detections 60000 -detective 52534 -detectives 55299 -detector 46595 -detectors 51131 -detects 52534 -detent 58979 -detention 52459 -deter 53865 -detergent 53081 -detergents 58365 -deteriorate 57399 -deteriorated 55299 -deteriorates 61472 -deteriorating 56452 -deterioration 50991 -determinant 53052 -determinants 51560 -determinate 62066 -determination 43556 -determinations 52832 -determinative 64905 -determine 38974 -determined 38831 -determiner 64657 -determines 47090 -determining 44049 -determinism 62469 -deterministic 53423 -deterred 61256 -deterrence 59164 -deterrent 56687 -deterrents 64905 -deterring 61940 -deters 63991 -detest 61584 -detestable 65170 -dethroned 65170 -detonate 63419 -detonated 60580 -detonation 60157 -detonators 65170 -detour 58979 -detox 55849 -detoxification 56324 -detoxify 63245 -detoxifying 64201 -detract 57609 -detracted 65170 -detracting 64657 -detractors 60670 -detracts 62196 -detrei 63419 -detriment 56935 -detrimental 52107 -detrital 62196 -detritus 61818 -detroit 56791 -detrusor 60000 -dette 62917 -detuned 65170 -detuning 64201 -deuce 63792 -deur 64657 -deutch 64201 -deuterated 61818 -deuterium 56551 -deuteron 61051 -deutsch 51387 -deutsche 59357 -deutschen 62613 -deutschland 64201 -deux 57876 -dev 55500 -devaluation 61051 -devalue 63245 -devalued 64423 -devastate 63245 -devastated 56200 -devastating 51931 -devastatingly 64423 -devastation 57653 -deve 63077 -deveined 63991 -devel 60856 -develop 39343 -develope 63077 -developed 37921 -developer 45977 -developer's 58523 -developerWorks 60492 -developers 45222 -developing 40258 -development 34933 -developmental 47851 -developmentally 57009 -developments 45406 -developped 61940 -develops 48088 -devez 64905 -devi 64905 -deviance 59560 -deviant 54170 -deviantART 48252 -deviantID 62917 -deviantWEAR 50394 -deviantart 63245 -deviants 48672 -deviate 56388 -deviated 59630 -deviates 60078 -deviating 61818 -deviation 47875 -deviations 50492 -device 39045 -device's 60321 -devices 41788 -devil 51888 -devil's 59774 -devilish 62917 -devilishly 63991 -devils 58919 -devin 64201 -devine 61051 -devious 60078 -devise 54023 -devised 51963 -devises 60762 -devising 57653 -devitrifying 63792 -devo 61362 -devoid 54041 -devolution 59630 -devolve 63077 -devolved 58262 -devolving 65452 -devon 60000 -devote 53438 -devoted 46587 -devotee 62331 -devotees 58065 -devotes 59039 -devoting 59560 -devotion 54207 -devotional 59227 -devotions 64201 -devour 59424 -devoured 60856 -devouring 61699 -devours 64423 -devout 59357 -devs 60405 -dew 56551 -dewalt 59491 -dewatered 63991 -dewatering 59923 -dewaxed 63419 -dewaxing 61256 -dewetting 65170 -dewey 65452 -dex 60157 -dexamethasone 56585 -dexatrim 65452 -dexmedetomidine 61362 -dexter 55107 -dexterity 59923 -dextran 56585 -dextransucrase 64201 -dextroamphetamine 62762 -dextrose 61051 -dey 58417 -deze 57084 -df 54341 -dfx 64423 -dg 57566 -dh 57785 -dha 64423 -dharma 60157 -dhcp 60157 -dhe 60580 -dhinchcliffe 63792 -dhl 64423 -dhru 62762 -dhs 63991 -di 42603 -diNovo 64657 -diVerences 63419 -diVerent 61940 -diVusion 62331 -dia 54078 -diabetes 45090 -diabetic 48212 -diabetics 56231 -diabetogenic 65170 -diablo 54499 -diabolical 64423 -diac 64657 -diacetate 62917 -diacritics 65452 -diacyl 63991 -diaeresis 63419 -diag 63077 -diagenetic 62196 -diagnose 51731 -diagnosed 46332 -diagnoses 53081 -diagnosing 54133 -diagnosis 42875 -diagnostic 45544 -diagnostically 63792 -diagnostics 54023 -diagonal 51184 -diagonalization 62762 -diagonally 58262 -diagonals 62196 -diagram 45304 -diagrammatic 58470 -diagrammatically 62469 -diagrams 50507 -dial 49319 -dialect 57970 -dialectic 62762 -dialectical 60492 -dialects 58470 -dialed 60580 -dialer 62196 -dialing 56170 -dialkyl 65452 -dialled 63419 -dialling 60405 -dialog 49065 -dialogs 61152 -dialogue 47791 -dialogues 58162 -dials 59357 -dialup 61256 -dialysate 59039 -dialysed 63991 -dialysis 50670 -dialyzed 55877 -diam 55526 -diamagnetic 61584 -diamant 63077 -diamante 64423 -diameter 43818 -diameters 52725 -diametrically 61818 -diamine 57566 -diaminobenzidine 63601 -diamond 47103 -diamonds 51825 -dian 63077 -diana 57696 -diane 58745 -dianegativa 65452 -diaper 52597 -diapered 61256 -diapering 65452 -diapers 54727 -diaphragm 53549 -diaphragmatic 59101 -diaphyseal 64423 -diaries 55274 -diario 64423 -diarrhea 52968 -diarrheal 62469 -diarrheic 63245 -diarrhoea 56791 -diarrhoeal 65170 -diary 50439 -dias 60321 -diaspora 60580 -diastereomeric 64423 -diastereomers 64905 -diastole 65452 -diastolic 51974 -diate 62066 -diately 63601 -diathermy 65452 -diatom 62196 -diatomic 60856 -diatoms 63601 -diatribe 64905 -diay 62196 -diaz 61152 -diazepam 54946 -diazoxide 63077 -dibasic 62917 -dibenzofurans 65170 -dibutyryl 64201 -dic 58313 -dicarboxylic 62331 -dicate 64657 -dice 53934 -diced 54813 -dicen 64201 -dices 65170 -dich 58017 -dichloride 65170 -dichloromethane 61818 -dicho 65170 -dichotomized 65170 -dichotomous 60157 -dichotomy 58313 -dichotomyboi 61699 -dichroic 60762 -dichroism 59164 -diciembre 62613 -dicing 65170 -dick 48204 -dicks 55130 -diclofenac 61940 -dicount 61472 -dict 65170 -dicta 62917 -dictate 54685 -dictated 54245 -dictates 55474 -dictating 62469 -dictation 59923 -dictator 57609 -dictatorial 64905 -dictators 60856 -dictatorship 59702 -dicted 61699 -diction 60670 -dictionaries 53712 -dictionary 44387 -dictum 61818 -did 33592 -did'nt 62331 -didactic 59357 -diddy 63601 -dideoxy 63601 -didi 65170 -didlo 61584 -didlos 64423 -didn 62469 -didn't 37301 -didnot 64657 -didnt 46745 -didrex 59227 -die 41642 -diecast 60000 -died 41642 -diego 54879 -diehard 62196 -dieing 63077 -dielectric 47577 -dielectrics 65170 -diem 57653 -diene 62196 -dienes 64905 -dient 63792 -dierent 63601 -dies 47207 -diese 59848 -diesel 47544 -diesels 60405 -diesem 61818 -diesen 62613 -dieser 58745 -dieses 61256 -diester 65452 -diet 43034 -dietary 47420 -dieters 63419 -dietetic 65170 -diethyl 57785 -diethylene 64423 -diethylstilbestrol 64423 -dieting 58470 -dietitian 59923 -dietitians 63419 -diets 49751 -dif 61818 -diferent 62613 -diferentes 61584 -diff 53392 -diffeomorphism 64905 -diffeomorphisms 64905 -differ 44416 -differant 64423 -differed 51502 -difference 38665 -differences 40490 -differencing 63245 -different 32834 -differentiable 58365 -differential 45078 -differentially 55423 -differentials 57741 -differentiate 50662 -differentiated 50915 -differentiates 58632 -differentiating 55226 -differentiation 47691 -differentiator 64423 -differently 49670 -differing 50840 -differnt 61256 -differs 49972 -difficile 57970 -difficult 39829 -difficulties 46250 -difficulty 45419 -diffracted 60856 -diffraction 49081 -diffractive 61940 -diffractometer 59702 -diffrent 58860 -diffs 55906 -diffusa 63792 -diffuse 50263 -diffused 57653 -diffusely 62066 -diffuser 56721 -diffusers 64657 -diffuses 61818 -diffusible 65452 -diffusing 58745 -diffusion 44751 -diffusional 62613 -diffusive 59630 -diffusivities 64423 -diffusivity 58113 -différents 63991 -dificult 65452 -diflucan 60157 -difluoride 62331 -dig 49028 -digas 65452 -digest 52210 -digesta 65452 -digested 51974 -digester 62066 -digestibility 59774 -digestible 59848 -digestif 62762 -digesting 60000 -digestion 51008 -digestive 50823 -digestivo 62469 -digests 57785 -digg 44948 -digger 60078 -diggers 63419 -diggin 64657 -digging 52233 -diggs 57358 -digi 62917 -digicam 64423 -digimax 62066 -digimon 60405 -digit 51184 -digital 37955 -digitale 63991 -digitalis 63419 -digitally 53662 -digitisation 64201 -digitised 61256 -digitization 53423 -digitize 58417 -digitized 54969 -digitizer 65170 -digitizing 58313 -digitorum 64201 -digits 51741 -dignified 58262 -dignissim 62613 -dignitaries 60321 -dignity 52886 -digo 64657 -digoxin 58745 -digraph 65452 -digress 64423 -digression 64657 -digs 56231 -dihedral 60856 -dihydrate 63991 -dihydrochloride 64423 -dihydrofolate 60405 -dihydrogen 62762 -diigo 59560 -diisocyanate 61362 -dijo 61362 -dijon 64201 -dik 64201 -dike 62469 -dikes 64657 -dil 59424 -dilapidated 60856 -dilatation 56899 -dilate 63077 -dilated 55474 -dilating 65452 -dilation 56231 -dilaton 63077 -dilator 60405 -dilbert 59923 -dildo 51877 -dildos 59630 -dilemma 53153 -dilemmas 57785 -diligence 54133 -diligent 56827 -diligently 57046 -dill 58688 -dillon 60405 -dilly 57160 -diltiazem 61051 -diluent 58313 -dilute 52571 -diluted 48408 -dilutes 63245 -diluting 58979 -dilution 49952 -dilutions 55299 -dim 52699 -dima 63419 -dime 56324 -dimension 46960 -dimensional 49054 -dimensionality 60238 -dimensionally 63419 -dimensioned 61940 -dimensioning 63792 -dimensionless 55578 -dimensions 45806 -dimer 54245 -dimeric 57524 -dimerization 59101 -dimers 56756 -dimes 63792 -dimethyl 55348 -dimethylformamide 63792 -dimije 65452 -diminish 53501 -diminished 51396 -diminishes 56721 -diminishing 54664 -diminution 58688 -diminutive 60238 -dimitri 63419 -dimly 62613 -dimmed 62762 -dimmer 60078 -dimmers 64423 -dimming 62469 -dimmu 65170 -dimond 64905 -dimorphic 64201 -dimorphism 64201 -dimou 62066 -dimple 62331 -din 52521 -dina 64905 -dinamo 65170 -dine 53729 -dined 59560 -diner 57046 -dinero 61940 -diners 56652 -dines 64657 -dinette 62917 -ding 58212 -dinghy 61699 -dingo 63245 -dings 63601 -dingy 60405 -dining 44748 -dinitrate 64657 -dinitrile 61699 -dinitrogen 60856 -dinitrogenase 65452 -dink 63601 -dinkyjacksonman 63792 -dinner 44326 -dinners 54924 -dinnerware 57482 -dinning 62066 -dino 62196 -dinoflagellate 65452 -dinosaur 54540 -dinosaurs 55202 -dint 59702 -dinuclear 60762 -dinucleotide 57785 -dio 60405 -diocesan 61152 -diocese 58745 -dioceses 63792 -diode 50718 -diodes 54560 -diol 59424 -diols 61818 -dion 60952 -dioptric 64423 -dior 60762 -diorama 62469 -dios 63245 -diovan 64905 -dioxane 63419 -dioxide 48101 -dioxin 60321 -dioxins 58577 -dioxolane 65452 -dip 50446 -dipeptide 61699 -dipeptides 64423 -diphenyl 62196 -diphosphate 59630 -diphtheria 59560 -diploid 57358 -diploma 52423 -diplomacy 55037 -diplomas 58979 -diplomat 57318 -diplomatic 52085 -diplomats 56452 -diplopia 60580 -dipolar 59491 -dipole 52164 -dipoles 59357 -dipped 54059 -dipper 56791 -dipping 54499 -dipropionate 62066 -dips 55766 -dipstick 62066 -dipyridamole 62762 -diquark 60492 -dir 54059 -dire 53095 -direct 38268 -directa 62762 -directed 42449 -directeur 65452 -directing 50807 -direction 41299 -directional 51511 -directionality 63419 -directionally 61152 -directions 43393 -directive 52559 -directives 54924 -directivity 63792 -directly 37832 -directness 65170 -directo 63792 -director 41236 -director's 56356 -directorate 63792 -directorial 59702 -directories 50402 -directors 46840 -directory 40530 -directs 52175 -directv 61699 -directx 62196 -direitos 64657 -direkt 60856 -dirham 63991 -dirhams 64657 -dirk 64201 -dirt 48806 -dirtbike 63419 -dirtiest 59774 -dirty 46790 -dis 51052 -disabilities 48781 -disability 46918 -disable 48221 -disabled 44882 -disables 59357 -disabling 54321 -disaccharide 62613 -disadvantage 51473 -disadvantaged 53153 -disadvantageous 63991 -disadvantages 51434 -disaffected 61940 -disaggregated 60078 -disaggregation 61362 -disagree 49602 -disagreeable 64201 -disagreed 56827 -disagreeing 62066 -disagreement 53517 -disagreements 57653 -disagrees 57609 -disallow 61152 -disallowed 61472 -disallowing 64905 -disambiguate 65452 -disambiguation 56356 -disappear 51521 -disappearance 52699 -disappeared 50734 -disappearing 55877 -disappears 54360 -disappoint 57876 -disappointed 49348 -disappointing 52472 -disappointingly 64657 -disappointment 54264 -disappointments 61699 -disappoints 63245 -disapproval 59560 -disapprove 61362 -disapproved 62331 -disapproving 65170 -disarm 62196 -disarmament 58017 -disarming 62917 -disarray 61256 -disassemble 59848 -disassembled 60856 -disassembling 64905 -disassembly 57831 -disaster 47077 -disasters 52062 -disastrous 54946 -disbanded 61256 -disbarred 64423 -disbelief 58577 -disburse 63792 -disbursed 60492 -disbursement 59101 -disbursements 58523 -disbursing 64657 -disc 45172 -disc's 64423 -discal 64905 -discard 54245 -discarded 53392 -discarding 59227 -discards 62066 -discern 55398 -discernable 61699 -discerned 61051 -discernible 57399 -discerning 55348 -discernment 63601 -discharge 45120 -discharged 50742 -discharges 53211 -discharging 55060 -disciple 59292 -disciples 55154 -discipleship 62762 -disciplinary 51148 -discipline 48314 -disciplined 55474 -disciplines 51312 -disciplining 61584 -disclaim 57009 -disclaimer 48567 -disclaimers 58162 -disclaims 49022 -disclose 48017 -disclosed 48309 -discloses 52954 -disclosing 56262 -disclosure 46944 -disclosures 53662 -disco 51963 -discography 55373 -discoid 64423 -discoideum 64657 -discolor 63991 -discoloration 58802 -discolored 62762 -discomfort 52496 -disconcerting 62331 -disconect 64657 -disconnect 53597 -disconnected 53485 -disconnecting 60580 -disconnection 59292 -disconnects 61818 -discontent 59227 -discontented 65452 -discontinuance 62331 -discontinuation 56356 -discontinue 54321 -discontinued 51690 -discontinuing 60492 -discontinuities 58162 -discontinuity 56756 -discontinuous 56262 -discord 61362 -discordance 63601 -discordant 61256 -discos 59774 -discount 42099 -discounted 49739 -discounting 58802 -discounts 47435 -discourage 53712 -discouraged 55274 -discouragement 64201 -discourages 60856 -discouraging 59491 -discourse 51415 -discourses 57785 -discover 43854 -discoverable 65452 -discovered 43648 -discoverer 65452 -discoveries 53010 -discovering 51660 -discovers 51434 -discovery 45680 -discredit 58632 -discredited 59702 -discreet 55274 -discreetly 58919 -discrepancies 48126 -discrepancy 51741 -discrepant 62469 -discrete 47776 -discretely 62331 -discretion 48182 -discretionary 54245 -discretization 57876 -discretized 59774 -discriminant 57741 -discriminate 52399 -discriminated 55738 -discriminates 61699 -discriminating 54902 -discrimination 47467 -discriminative 61699 -discriminator 62917 -discriminators 64905 -discriminatory 53597 -discs 48954 -discursive 59227 -discus 61584 -discuss 40932 -discussant 62917 -discussed 41903 -discusses 46690 -discussing 47500 -discussion 38962 -discussione 65452 -discussions 41950 -disdain 58688 -disease 38918 -diseaseSexually 61584 -diseased 55604 -diseases 44334 -disembodied 62331 -disenchanted 63991 -disenfranchised 62613 -disengage 61699 -disengaged 63245 -disengagement 63792 -disengaging 64905 -disentangle 63419 -disequilibrium 58523 -diseño 64905 -disfigured 63991 -disfigurement 64423 -disfiguring 64657 -disgrace 58745 -disgraced 61051 -disgraceful 62066 -disgruntled 58919 -disguise 55226 -disguised 56021 -disguises 63077 -disguising 65170 -disgust 57741 -disgusted 57741 -disgusting 55202 -disgustingly 63419 -disgusts 65452 -dish 47143 -disharmony 65452 -disheartened 64657 -disheartening 63077 -dished 61051 -dishes 47653 -dishing 63792 -dishonest 57696 -dishonesty 61256 -dishonor 65452 -dishonorable 65170 -dishonored 65452 -dishwasher 54188 -dishwashers 61940 -dishwashing 65170 -disillusioned 61472 -disillusionment 63419 -disincentive 64201 -disincentives 63991 -disinfect 62196 -disinfectant 58688 -disinfectants 65170 -disinfected 59560 -disinfecting 61818 -disinfection 57785 -disinformation 63792 -disingenuous 65170 -disinhibition 64423 -disintegrate 63077 -disintegrated 63792 -disintegrating 63245 -disintegration 58365 -disinterested 61940 -disjoint 56899 -disjointed 61152 -disjunct 64657 -disjunction 62917 -disjunctive 61699 -disk 43533 -diskette 60405 -diskettes 65170 -disks 51148 -dislike 51953 -disliked 58632 -dislikes 59774 -dislocated 60670 -dislocation 52858 -dislocations 55934 -dislodge 61940 -dislodged 61472 -disloyalty 64657 -dismal 58162 -dismantle 58919 -dismantled 59227 -dismantling 58745 -dismay 60000 -dismayed 58365 -dismembered 65170 -dismiss 51570 -dismissal 52791 -dismissals 63601 -dismissed 49847 -dismisses 57653 -dismissing 56618 -dismissive 63792 -dismount 64201 -dismounted 65452 -dismutase 57970 -disney 51425 -disneyland 63792 -disobedience 60670 -disobey 63601 -disodium 58262 -disomic 64657 -disorder 45802 -disordered 55060 -disorderly 59848 -disorders 45961 -disorganization 63419 -disorganized 60000 -disorientation 63601 -disoriented 63077 -disorienting 65452 -disp 65170 -disparage 64201 -disparaging 62469 -disparate 54540 -disparities 56200 -disparity 55226 -dispatch 51690 -dispatched 51396 -dispatcher 59424 -dispatchers 63991 -dispatches 58523 -dispatching 57160 -dispel 58113 -dispelled 65170 -dispelling 64905 -dispels 65170 -dispensable 65170 -dispensary 63792 -dispensation 63245 -dispense 55373 -dispensed 55877 -dispenser 53271 -dispensers 60157 -dispenses 61940 -dispensing 53438 -dispersal 56293 -dispersant 65170 -disperse 57046 -dispersed 50906 -disperses 65170 -dispersible 62469 -dispersing 60000 -dispersion 49141 -dispersions 59702 -dispersive 57238 -displ 65452 -displace 57238 -displaced 50758 -displacement 48208 -displacements 54207 -displaces 61818 -displacing 60580 -display 38592 -displayed 41997 -displayedemail 60952 -displaying 48381 -displays 44806 -displeased 64423 -displeasure 60670 -disponibile 63792 -disponible 59292 -disponibles 62469 -disposable 51425 -disposables 64201 -disposal 48046 -disposals 63419 -dispose 52085 -disposed 47641 -disposes 63245 -disposing 56687 -disposition 51444 -dispositional 64201 -dispositions 59292 -dispositive 63245 -disproportion 64657 -disproportionate 57046 -disproportionately 57399 -disprove 60670 -disproved 64657 -disputation 63419 -dispute 47891 -disputed 53066 -disputes 51330 -disputing 61584 -disqualification 59292 -disqualified 57741 -disqualify 58632 -disqualifying 64657 -disquieting 64905 -disregard 53361 -disregarded 58162 -disregarding 61152 -disregards 64905 -disreputable 64201 -disrespect 57278 -disrespectful 59848 -disrupt 53301 -disrupted 53813 -disrupting 56721 -disruption 50718 -disruptions 57440 -disruptive 55084 -disrupts 56899 -diss 60321 -dissapeared 64905 -dissapointed 61699 -dissapointing 65170 -dissatisfaction 56050 -dissatisfied 52375 -dissect 61051 -dissected 54902 -dissecting 57653 -dissection 52752 -dissections 60580 -dissects 63245 -dissed 62469 -disseminate 54664 -disseminated 53952 -disseminates 62331 -disseminating 58262 -dissemination 50915 -dissent 56452 -dissented 65170 -dissenters 63245 -dissenting 59101 -disseny 63419 -dissertation 53899 -dissertations 57318 -disservice 59630 -disses 61362 -dissident 58113 -dissidents 61699 -dissimilar 56935 -dissimilarity 62762 -dissing 63419 -dissipate 58417 -dissipated 58417 -dissipates 63077 -dissipating 64201 -dissipation 54601 -dissipative 56756 -dissociate 62469 -dissociated 56972 -dissociates 65170 -dissociating 65170 -dissociation 51996 -dissociative 60492 -dissolution 52244 -dissolve 53565 -dissolved 47729 -dissolves 58212 -dissolving 55849 -dissonance 62762 -dissuade 61699 -dist 60405 -distal 47544 -distally 60762 -distance 40609 -distanced 56452 -distances 48156 -distancing 62613 -distant 48590 -distantly 60762 -distaste 61362 -distasteful 63077 -distdir 60856 -distemper 64201 -distended 60492 -distensibility 61818 -distension 58523 -distention 64905 -distill 63991 -distillate 60321 -distillation 54133 -distilled 49939 -distiller 63077 -distillery 64657 -distilling 62066 -distinct 44065 -distinction 48653 -distinctions 55060 -distinctive 48496 -distinctively 59702 -distinctiveness 61699 -distinctly 53597 -distinguish 47819 -distinguishable 56585 -distinguished 47823 -distinguishes 54792 -distinguishing 52899 -distort 57009 -distorted 52256 -distorting 60405 -distortion 49196 -distortions 55299 -distorts 59630 -distract 56110 -distracted 55299 -distracting 57238 -distraction 55448 -distractions 57122 -distractor 60952 -distracts 62613 -distraught 60762 -distress 50185 -distressed 54078 -distressing 58919 -distributable 63419 -distribute 46500 -distributed 42486 -distributes 53485 -distributing 51580 -distribution 38432 -distributional 60856 -distributions 47791 -distributive 59357 -distributor 49541 -distributors 50638 -district 42106 -district's 55963 -districts 47592 -distro 59702 -distros 61584 -distrust 58313 -disturb 54902 -disturbance 51502 -disturbances 53010 -disturbed 51899 -disturbia 59292 -disturbing 51502 -disturbingly 63792 -disturbs 61051 -disulfide 55738 -disulphide 63792 -disuse 64905 -disused 62613 -dit 54643 -dita 65452 -ditch 53095 -ditched 60321 -ditches 58065 -ditching 61818 -dither 59630 -dithered 63601 -dithering 61940 -dithionite 61051 -dithiothreitol 60762 -dition 59848 -ditional 60321 -ditions 58162 -dito 62762 -ditto 63245 -ditty 64423 -ditzy 64905 -dium 59227 -diuresis 64657 -diuretic 58212 -diuretics 60492 -diurnal 57524 -div 53286 -diva 56721 -divalent 56140 -divalproate 64423 -divalproex 63419 -divans 65170 -divas 60238 -dive 49682 -dived 60952 -diver 57399 -diverge 60762 -diverged 61584 -divergence 53081 -divergences 59848 -divergent 54341 -diverges 62613 -diverging 60580 -divers 55423 -diverse 44286 -diversicolor 64905 -diversification 55631 -diversified 53226 -diversify 57278 -diversifying 62762 -diversion 53830 -diversionary 63077 -diversions 60856 -diversities 64423 -diversity 45157 -divert 55178 -diverted 56518 -diverticulitis 62331 -diverticulum 65170 -diverting 58688 -divertor 62196 -diverts 64201 -dives 55348 -divest 62331 -divested 64201 -divesting 65452 -divestiture 63419 -divestitures 64905 -divestment 63792 -divide 49234 -divided 43661 -dividend 51303 -dividends 52872 -divider 56721 -dividers 59774 -divides 54857 -dividing 50372 -dividual 62066 -divination 63991 -divine 50242 -divinely 62762 -diving 49523 -divinity 60670 -divisible 60580 -division 42236 -division's 60321 -divisional 56652 -divisions 50314 -divisive 58860 -divisiveness 64657 -divisor 60762 -divorce 48221 -divorced 53847 -divorcee 64423 -divorces 61584 -divorcing 62331 -divs 63792 -divulge 60078 -divulged 63245 -divx 55992 -diwali 61256 -dix 63601 -dixie 61940 -diy 57566 -diyAudio 64423 -diz 62331 -dizionario 62331 -dizziness 57831 -dizzy 58802 -dizzying 60670 -dj 48395 -dja 63245 -django 63792 -djing 64905 -djl 63245 -djs 60580 -dk 57199 -dking 65452 -dks 65170 -dl 54519 -dla 59164 -dlc 64201 -dle 63991 -dlink 64905 -dlisted 64905 -dll 57238 -dlls 64657 -dln 63077 -dlp 65452 -dls 61940 -dm 55178 -dma 64905 -dmactennis 65452 -dmb 65452 -dmc 60952 -dmesg 61584 -dmg 54857 -dmoz 63077 -dmv 63991 -dn 56618 -dna 58365 -dnd 64905 -dnl 58313 -dnp 60580 -dns 51444 -dnt 55202 -dní 63792 -do 28897 -do's 60762 -doable 62066 -dob 63077 -dobar 63991 -dobby 63245 -doberman 63601 -dobro 64201 -dobutamine 60670 -doc 50599 -docNext 65170 -doccoddoccod 61584 -doch 59101 -docile 62762 -dock 51122 -docked 59227 -docket 56551 -docking 54813 -docks 57524 -dockside 63792 -doclinks 64201 -docosahexaenoic 62331 -docs 51772 -docsters 63991 -docstoc 60670 -doctor 42216 -doctor's 51312 -doctoral 53066 -doctorate 55684 -doctors 44869 -doctrinal 58919 -doctrine 51000 -doctrines 57696 -docu 64905 -document 38665 -document's 62469 -documentaries 56293 -documentary 47859 -documentation 44632 -documented 47008 -documenting 52940 -documents 40144 -docx 62469 -dodaci 63419 -dodecyl 54706 -dodge 52509 -dodged 63991 -dodger 63991 -dodgers 63419 -dodges 65452 -dodging 59923 -dodgy 57923 -doe 58113 -doen 62196 -doen't 65170 -does 31976 -does'nt 62762 -doesent 64905 -doesn 63991 -doesn't 37242 -doesnot 63991 -doesnt 48165 -dof 63601 -dog 40940 -dog's 54360 -dogfight 65452 -dogfighting 65170 -dogg 59357 -dogged 59923 -doggie 56652 -dogging 61818 -doggone 63991 -doggy 56324 -doggystyle 62196 -dogma 60952 -dogmas 65452 -dogmatic 61051 -dogs 43340 -dogwood 63991 -doh 64905 -doherty 65452 -doi 49054 -doin 52673 -doing 37272 -doings 62762 -doit 60321 -doivent 63601 -doje 65452 -dojo 59560 -doko 63077 -dokumentacija 60405 -dolasetron 61256 -dolce 56293 -dole 62469 -doles 64201 -doling 64423 -doll 50206 -dollar 44884 -dollar's 62196 -dollars 43591 -dolled 65452 -dollhouse 61362 -dollop 64201 -dolls 51920 -dolly 59491 -dolomite 65452 -dolor 53485 -dolore 56652 -dolores 59357 -dolphin 56324 -dolphins 53796 -dom 53454 -domain 37313 -domaine 61699 -domainname 62917 -domains 45497 -dome 52399 -domed 59164 -domes 60078 -domestic 42910 -domestica 64423 -domestically 57566 -domesticated 58979 -domestication 63601 -domestics 64201 -domesticus 65452 -domicile 60856 -domiciled 61818 -dominance 51650 -dominant 45946 -dominantly 60078 -dominate 50702 -dominated 48084 -dominates 52339 -dominating 53952 -domination 53485 -dominatrix 57831 -domineering 65452 -domingo 65170 -dominic 64657 -dominican 62917 -dominio 63245 -dominion 60670 -domino 58688 -domly 65170 -domme 57440 -dommes 62917 -domplayer 60321 -domény 64905 -don 52339 -don't 32538 -don'ts 60321 -donald 58523 -donate 48791 -donated 48239 -donates 55526 -donating 52509 -donation 47694 -donations 48327 -donators 63792 -donb 64905 -donc 63419 -donde 57785 -done 36824 -donegone 64201 -dong 58365 -dongle 57785 -dongs 65452 -donjohnson 62917 -donkey 54439 -donkeys 60321 -donload 64201 -donna 56231 -donne 62331 -donned 59923 -donner 63792 -donnie 60157 -donning 61940 -donno 64657 -données 59227 -dono 63419 -donor 47931 -donor's 60670 -donors 49614 -donot 63991 -donovan 65170 -donovani 62066 -donovanosis 65452 -donque 62469 -dons 61584 -dont 40811 -donut 57970 -donuts 59424 -donwload 58313 -doo 55684 -dood 65452 -doodle 62066 -doodles 65170 -dookieball 65452 -doom 53917 -doomed 54540 -doomsday 61818 -dooney 61699 -door 41052 -doorbell 61699 -doorknob 63991 -doorman 63077 -doors 45362 -doorstep 57524 -doorway 57199 -doorways 61472 -dooyoo 61472 -dopamine 50431 -dopaminergic 55934 -dopant 59039 -dopants 63601 -dope 55738 -doped 53286 -doping 52940 -doppia 64905 -doppler 63991 -dor 63601 -dora 63419 -dorama 64657 -dorcel 65452 -dorfman 63245 -dori 62613 -dorian 65170 -dorianp 64423 -dork 63419 -dorky 63077 -dorm 55474 -dormancy 63077 -dormant 55631 -dormer 63419 -dormers 65452 -dormitories 64423 -dormitory 59848 -dorms 61584 -dorothy 62196 -dorsal 50067 -dorsalis 64423 -dorsally 65452 -dorset 64201 -dorsolateral 60952 -dorsomedial 63792 -dorsum 63077 -dos 50726 -dosage 48590 -dosages 55711 -dose 42514 -dosed 59424 -dosen't 61818 -dosent 58470 -doses 46359 -doshas 64657 -dosimeter 61818 -dosimeters 64905 -dosimetric 63792 -dosimetry 57970 -dosing 53952 -dosn't 62762 -dosnt 63601 -dossier 59923 -dossiers 63601 -dost 65170 -dosti 63991 -dot 45969 -dotLRN 60580 -dota 58017 -dotcom 65170 -dotdude 64423 -doth 58212 -dothidea 61472 -dotlrn 64905 -dotnet 64201 -dotnetter 65452 -dots 51293 -dotted 52074 -dotting 64423 -dou 64657 -double 40190 -doubled 51444 -doubleheader 63792 -doubler 63245 -doubles 52447 -doublet 55963 -doublets 60952 -doubling 52648 -doubly 55348 -doubt 43784 -doubted 57923 -doubters 64905 -doubtful 54459 -doubting 61152 -doubtless 58017 -doubts 51856 -douche 61152 -douchebag 63601 -doug 59292 -douggyd 64201 -dough 51000 -doughnut 62196 -doughnuts 60952 -doughy 64905 -douglas 59039 -douglass 48821 -doujinshi 63991 -doula 61051 -dour 64905 -douse 62917 -doused 63991 -dove 57278 -dover 62469 -doves 63601 -dovetail 60000 -dovetailed 64905 -dovetails 65170 -dow 62066 -dowd 48296 -dowel 62331 -dowels 62613 -dowland 60405 -dowload 56050 -dowloaded 65452 -dowloads 63792 -dowmload 64657 -down 33791 -downbeat 64657 -downdraft 58212 -downed 57923 -downer 63077 -downey 64201 -downfall 57923 -downfield 63601 -downgrade 56485 -downgraded 57238 -downgrades 60856 -downgrading 61256 -downhill 55014 -downhole 61256 -downing 62331 -downlad 63991 -downlaod 61051 -downlights 64201 -downline 64905 -downlink 58417 -download 34775 -downloadWEB 61152 -downloadable 48716 -downloade 56935 -downloaded 44834 -downloaden 59702 -downloader 56585 -downloading 46285 -downloadprofessional 60762 -downloads 39948 -downloadsdownload 65170 -downloadz 65452 -downlod 60157 -downlode 63792 -downloud 63991 -downpayment 64657 -downplay 61940 -downplayed 64657 -downplays 64905 -downpour 61818 -downregulated 62196 -downregulation 59101 -downright 55037 -downs 54283 -downscaling 65452 -downshifts 62469 -downside 54096 -downsides 62066 -downsize 64423 -downsized 62613 -downsizing 59357 -downslope 62917 -downspouts 65452 -downstairs 55299 -downstream 48638 -downtempo 61940 -downtime 56356 -downtown 45787 -downtrodden 65170 -downturn 53581 -downturn's 64657 -downturns 62762 -downward 51087 -downwardly 57566 -downwards 56585 -downwind 61152 -downy 63991 -dowry 63601 -doxorubicin 58065 -doxycycline 60000 -doxygen 61152 -doyoulookgood 64905 -doze 64905 -dozen 47420 -dozens 48711 -dozier 64423 -dp 56324 -dpa 65170 -dpb 64905 -dpe 63419 -dpi 49240 -dpkg 63245 -dpm 63792 -dpogni 61051 -dps 59357 -dpsed 63991 -dq 64657 -dr 50957 -dra 62331 -drab 58688 -drach 60952 -draconian 62331 -dracula 65170 -dracunculiasis 63419 -draft 44966 -drafted 52648 -drafting 53361 -drafts 54360 -drag 46173 -dragged 53438 -dragging 53485 -dragon 49758 -dragon's 61940 -dragonball 59227 -dragonflies 63792 -dragonfly 60405 -dragons 56518 -drags 57970 -drain 47641 -drainage 48269 -drained 52423 -drainer 65452 -draining 54685 -drains 54643 -drake 63077 -dram 65452 -drama 46824 -dramas 56687 -dramatic 46398 -dramatically 47992 -dramatist 65170 -dramatists 65452 -dramatization 65170 -dramatized 65452 -drank 53423 -drape 62066 -draped 57278 -draperies 63077 -drapery 62613 -drapes 60762 -draping 64657 -drastic 53470 -drastically 52752 -draught 59227 -draw 43302 -drawback 54245 -drawbacks 54969 -drawdown 62469 -drawer 52521 -drawers 54264 -drawing 44372 -drawings 48178 -drawn 44111 -draws 47823 -drawstring 59774 -dre 58979 -dread 56293 -dreaded 55738 -dreadful 56551 -dreading 61584 -dreadlocks 63792 -dreads 63245 -dream 43695 -dreamcatcher 63991 -dreamed 53392 -dreamer 60580 -dreamers 62613 -dreamgirl 59227 -dreaming 54059 -dreamlike 59560 -dreamlimbo 65452 -dreampharmaceuticals 64657 -dreams 46480 -dreamscene 65452 -dreamstime 61699 -dreamt 59630 -dreamweaver 59039 -dreamy 58688 -dreary 60000 -dred 62066 -dredge 60405 -dredged 60670 -dredging 59424 -drejtat 64657 -dren 58688 -dren's 63077 -drenched 58745 -drenching 65452 -dresden 65170 -dreshaj 64905 -dress 43565 -dressage 59560 -dressed 48372 -dresser 57399 -dressers 61818 -dresses 49535 -dressing 49429 -dressings 57122 -dressmaking 65170 -dressup 61699 -dressy 63077 -drew 48643 -dria 65452 -drial 62613 -dribble 60321 -dribbling 62196 -dried 46435 -drier 57122 -dries 56972 -driest 62917 -drift 49999 -drifted 57876 -drifter 65452 -drifting 55821 -drifts 59923 -driftwood 63991 -drill 48816 -drilled 52447 -driller 65170 -drillers 65452 -drilling 48667 -drills 54601 -drink 43477 -drinkable 63991 -drinker 60078 -drinkers 57524 -drinkin 62331 -drinking 44184 -drinks 47070 -drip 54207 -dripped 64201 -dripping 55766 -drips 61818 -drive 38608 -drive's 63601 -driveability 65452 -drivel 60952 -driveline 65452 -driven 44643 -driver 41162 -driver's 50122 -drivers 43491 -drives 45289 -driveshaft 63991 -drivetrain 61699 -driveway 51867 -driveways 59630 -drivin 64423 -driving 41437 -drizzle 57653 -drizzled 61940 -drjoek 63792 -drm 58979 -dro 62066 -droge 61362 -drogen 64905 -droid 65452 -droit 63601 -droits 58860 -drome 62469 -drone 58919 -drones 60238 -droning 65452 -drool 60321 -drooling 59774 -drooping 63245 -droopy 64657 -drop 40914 -dropdown 55299 -droped 63991 -droperidol 62469 -droping 64657 -droplet 54601 -droplets 54133 -dropout 57785 -dropouts 59848 -dropped 44666 -dropper 62613 -droppin 63245 -dropping 48841 -droppings 61472 -drops 46587 -dropship 60952 -dropwise 60238 -dross 64905 -drought 52175 -droughts 62196 -drove 47951 -droves 64657 -drow 63419 -drown 57399 -drowned 57009 -drowning 56262 -drowns 60856 -drowsiness 61051 -drowsy 58365 -drs 64657 -drt 63245 -drubbing 65452 -drudgery 64201 -drug 39097 -drug's 61584 -drugged 61818 -drugs 42197 -drugstore 58919 -drugstores 63077 -druid 58632 -druids 62762 -drum 46915 -drummed 64905 -drummer 52423 -drummers 59424 -drumming 57122 -drumroll 62762 -drums 50306 -drumsticks 63792 -drunk 47748 -drunken 53377 -drunkenness 62196 -drunks 63245 -drupacea 63419 -drupal 63601 -drwy 65170 -dry 41965 -drycleaners 65452 -dryer 51610 -dryers 58577 -drying 48991 -dryland 57970 -dryness 56899 -drywall 58417 -ds 48581 -dsDNA 61584 -dsRNA 60000 -dscns 59164 -dsl 59630 -dso 61818 -dsp 62196 -dspPostReplies 63077 -dst 61472 -dt 51580 -dtc 60000 -dtcgrp 60000 -dtd 60856 -dtm 62917 -dtp 62469 -dtr 65170 -dts 61584 -dtu 62917 -du 40857 -duPont 63245 -dua 64657 -dual 44515 -dualband 65452 -dualism 60238 -duality 57399 -dually 62762 -duals 63077 -dub 53882 -dubai 58162 -dubbed 52968 -dubbing 60670 -dubious 55963 -dublado 64657 -dublaj 63245 -dublin 57524 -dubs 64201 -dubstep 60405 -dubz 64423 -duc 62917 -ducal 65452 -ducati 64657 -duce 56551 -duced 53392 -duces 60856 -ducing 61256 -duck 50766 -duckdown 60078 -ducked 63077 -duckies 64201 -ducking 62469 -ducks 53970 -ducky 62331 -duct 49476 -ductal 55084 -ducted 57923 -ductile 57046 -ductility 59630 -ducting 60238 -duction 55348 -ductive 62762 -ductivity 61699 -ductor 64905 -ducts 54114 -ductus 64201 -ductwork 64423 -dud 63991 -dudalen 60238 -dude 48959 -dudes 55684 -duds 62196 -due 35696 -duel 56518 -dueling 61699 -duels 64423 -duende 64423 -dues 52954 -duet 56388 -duets 59702 -duff 58979 -duffel 60157 -duffle 63245 -dug 53581 -dugg 58470 -dugout 61699 -duh 61362 -dui 60078 -duis 65452 -duke 56356 -dukes 62613 -dulce 62762 -duliza 63419 -dull 52096 -dulled 63245 -dullness 64905 -duly 50742 -dum 59164 -dumb 50234 -dumbass 61584 -dumbbell 62469 -dumber 63792 -dumbest 61584 -dumbfounded 64905 -dumbing 65170 -dummies 59101 -dummy 51690 -dumosum 64905 -dump 49966 -dumped 53438 -dumping 53423 -dumplings 59702 -dumps 55934 -dumpster 60078 -dun 55084 -duncan 61940 -dune 55992 -dunes 55373 -dung 56756 -dungeon 56862 -dungeons 61051 -dunk 57358 -dunking 65170 -dunks 60856 -dunner 63991 -dunno 53565 -duno 62469 -dunt 64201 -duo 50507 -duo's 61818 -duoc 61472 -duodenal 55631 -duodenalis 62469 -duodenum 59101 -duos 62331 -dup 61818 -dupa 65452 -dupe 60580 -duped 59774 -duper 64905 -dupes 64905 -duping 65170 -duplex 52635 -duplexes 62469 -duplicate 45814 -duplicated 53796 -duplicates 55398 -duplicating 58577 -duplication 51974 -duplications 61472 -duplicative 65452 -duplicator 65170 -duplicity 64657 -dupont 65170 -dur 65452 -dura 58860 -durability 51104 -durable 48482 -dural 59292 -duran 64905 -durante 60000 -duration 44100 -durations 56293 -durch 57084 -dure 61051 -dures 60321 -duress 63601 -durham 64201 -duricrust 64905 -during 32604 -durum 63991 -dus 62917 -dushku 64657 -dusk 56231 -dusky 63792 -dust 46506 -dusted 59424 -duster 59491 -dustin 64201 -dusting 59039 -dustry 65452 -dusts 62917 -dusty 55348 -dutch 55474 -duties 45711 -dutiful 63245 -dutifully 63245 -dutta 64905 -duty 43796 -duu 64657 -duvet 61940 -duvets 64201 -dv 58979 -dvb 62917 -dvd 45025 -dvd's 62469 -dvdorchard 58417 -dvdr 64201 -dvdrip 55448 -dvds 54041 -dvi 64905 -dvix 64201 -dvr 61472 -dvs 62196 -dw 57970 -dwar 63792 -dwarf 53392 -dwarfed 60321 -dwarfs 57923 -dwarves 62613 -dwell 54380 -dwellers 58802 -dwelling 51358 -dwellings 53182 -dwells 61152 -dwelt 60580 -dwg 61818 -dwindled 61256 -dwindling 59630 -dwn 63991 -dworley 63601 -dws 64905 -dwt 65452 -dx 52291 -dxdt 58979 -dxf 62469 -dy 58577 -dyad 63077 -dyadic 62066 -dybowskii 65170 -dye 49246 -dyed 55711 -dyeing 60000 -dyenuta's 63601 -dyer 64423 -dyes 52521 -dying 48234 -dyke 61152 -dykes 62613 -dylan 59923 -dyn 64423 -dynamic 41936 -dynamical 51942 -dynamically 50848 -dynamics 45378 -dynamin 63991 -dynamique 64657 -dynamism 60952 -dynamite 58470 -dynamo 60157 -dynamometer 62917 -dynasties 62196 -dynasty 55849 -dynein 63792 -dynes 63601 -dyno 57318 -dynos 63991 -dysarthria 65170 -dysenteriae 62613 -dysentery 61472 -dysfunction 48877 -dysfunctional 56452 -dysfunctions 63245 -dyskinesia 62331 -dyslexia 59560 -dyslexic 60670 -dyslexics 61699 -dyslipidemia 62917 -dyspepsia 61699 -dyspeptic 64201 -dysphagia 61051 -dysphoric 64657 -dysplasia 55037 -dysplastic 60238 -dyspnea 58802 -dysregulated 65170 -dysregulation 61472 -dyssynchrony 62917 -dystonia 65452 -dystopian 64201 -dystopianfuturetoday 62469 -dystrophic 62066 -dystrophies 65170 -dystrophin 64423 -dystrophy 55604 -dz 58688 -dziesmas 64905 -dziesmu 63419 -dzone 62917 -dzwonki 59560 -dá 65452 -dámske 62762 -dé 65170 -déanaí 62196 -début 65452 -décembre 64201 -décor 55657 -défense 63077 -déjà 64657 -dépôt 61818 -dérivé 62066 -développement 58523 -día 59292 -días 61584 -e 37215 -e's 60762 -eA 63991 -eALERTS 53847 -eAccelerator 64201 -eAlerts 63077 -eAthena 62469 -eBags 56618 -eBaum's 60078 -eBay 34659 -eBay's 56687 -eBillme 63077 -eBlog 65170 -eBook 49348 -eBooks 45662 -eBrochures 64657 -eBusiness 57566 -eC 64905 -eCPM 63245 -eCRMGuide 65170 -eCampus 57696 -eCard 52752 -eCards 55398 -eCatalog 62469 -eChoice 63245 -eCommerce 47245 -eCommunities 63601 -eCornell 63991 -eCoupons 60238 -eCourant 62469 -eCustomer 64423 -eDOCS 63792 -eDirectory 58212 -eDiscovery 64201 -eDocument 56262 -eDonkey 64657 -eDoptions 58919 -eDreams 63419 -eFC 62196 -eFinancialCareers 58745 -eFinancialNews 63419 -eFunds 64905 -eG 62066 -eGR 63792 -eGift 61699 -eGifts 64657 -eGo 65452 -eGov 57238 -eGovernment 59424 -eGuide 64657 -eGuidebook 55992 -eGullet 58212 -eGyanKosh 63991 -eHarmony 61940 -eHealth 61051 -eHow 51034 -eHow's 60952 -eHub 56452 -eISBN 59848 -eISSN 59848 -eJournal 64657 -eKhaya 63991 -eKits 62331 -eLUXURY 63991 -eLearning 53241 -eLetter 64657 -eLetters 56585 -eLibrary 54005 -eListings 60762 -eLuxury 65170 -eMC 59424 -eMac 61051 -eMachines 56791 -eMagazines 65452 -eMail 52244 -eMarketer 64657 -eMarketing 63792 -eMart 63991 -eMedTV 57046 -eMedia 63601 -eMedicine 56050 -eMetrics 64657 -eMiniMalls 64657 -eMule 51275 -eMusic 52673 -eNEWSLETTER 64201 -eNOS 56756 -eNews 54969 -eNewsletter 52982 -eNewsletters 57831 -eNotes 57831 -eNotify 64201 -ePIC 65452 -ePTFE 62469 -ePaper 53565 -ePodunk 57440 -ePrice 61472 -ePrints 62613 -eProcurement 63991 -eProp 59774 -eProps 53779 -ePublications 65452 -eQuilter 64657 -eRe 65170 -eReader 57923 -eS 63601 -eSATA 58212 -eSB 64905 -eSBs 63601 -eScholarship 64657 -eSchoolGuide 64423 -eSecurity 63419 -eSeminar 62469 -eServices 60856 -eShelf 62917 -eShop 63077 -eShops 57653 -eSignal 64657 -eSnips 61584 -eSoft 64423 -eSpace 60321 -eSports 60762 -eStock 62196 -eStore 56756 -eStores 64657 -eSyndiCat 65452 -eTOCs 60492 -eText 65170 -eThekwini 64905 -eTocs 56518 -eTown 64905 -eToys 60856 -eTrex 64423 -eTronics 64905 -eV 50387 -eVGA 60580 -eVect 64201 -eVisit 64423 -eVox 58745 -eWEEK 56420 -eWashtenaw 63991 -eWay 65452 -eWeek 57831 -eWeekly 63601 -eWhisper 63601 -eWorld 61699 -eXCHAnGeD 58577 -eXTReMe 51511 -eXchange 63601 -eXpansys 55992 -eXtra 65452 -eXtreme 60580 -eXtremepixels 62066 -eYez 65452 -eZ 57831 -eZee 65170 -eZine 64423 -eZines 65170 -ea 49919 -each 31298 -eachother 58632 -eager 49999 -eagerly 54902 -eagerness 61152 -eagle 50983 -eagle's 65452 -eagles 55963 -eal 62917 -eam 62469 -eames 58417 -ean 64657 -ear 46843 -earbuds 62331 -eardrum 61472 -earl 58212 -earlier 41142 -earliest 48776 -earlobe 59491 -earls 61818 -early 36503 -earmark 62469 -earmarked 56618 -earmarks 61699 -earn 44284 -earned 45164 -earner 61584 -earners 58113 -earnest 55107 -earnestly 59774 -earnestness 63991 -earnhardt 65170 -earning 48567 -earnings 45019 -earns 51560 -earphone 62469 -earphones 57831 -earpiece 62613 -earplugs 65452 -earring 56021 -earrings 52778 -ears 48336 -earth 44579 -earth's 54969 -earthen 62762 -earthenware 61256 -earthly 57199 -earthquake 50379 -earthquakes 54439 -earths 63601 -earthwork 64201 -earthworks 64657 -earthworm 62613 -earthworms 63991 -earthy 58113 -eas 63419 -ease 44892 -eased 57399 -easel 62469 -easement 56618 -easements 57831 -eases 56140 -easier 42262 -easiest 49330 -easily 39495 -easing 55202 -east 44041 -eastbound 59424 -easter 56110 -easterlies 64905 -easterly 59923 -eastern 46337 -easternmost 64201 -easton 64423 -eastside 62917 -eastward 59923 -eastwards 63077 -eastwood 63419 -easy 36624 -easyJet 63245 -easygoing 63245 -easypinoyfood 64201 -eat 41663 -eaten 49777 -eater 58979 -eateries 60078 -eaters 60238 -eatery 59292 -eating 43530 -eats 52375 -eau 57609 -eaux 64657 -eaves 61699 -eavesdropping 63419 -eb 59774 -ebackhus 64423 -ebay 50424 -ebb 59630 -ebbing 65170 -eben 65170 -ebizQ 63077 -ebm 63601 -eboney 65170 -ebony 50923 -ebook 48751 -ebookers 63077 -ebooks 51590 -ebro 62613 -ebuild 61256 -ebullient 65452 -ec 57923 -ecard 55738 -ecards 56293 -eccentric 54519 -eccentricity 60492 -eccentrics 65452 -ecclesiastical 58262 -ecclissi 64423 -eccrine 64905 -echelon 60856 -echelons 63792 -echidna 65452 -echinacea 63601 -echinomycin 63077 -echo 47807 -echocardiogram 61818 -echocardiograms 64905 -echocardiographic 56518 -echocardiography 54727 -echoed 55906 -echoes 55014 -echoing 58262 -echt 60405 -echó 64423 -eclampsia 64657 -eclectic 52778 -eclipse 53241 -eclipsed 60157 -eclipses 65452 -ecliptic 63245 -ecm 65452 -eco 54946 -ecological 48949 -ecologically 58365 -ecologist 62762 -ecologists 60762 -ecology 52559 -ecommerce 52699 -ecomomy 63077 -econ 63792 -econometric 58162 -economic 38924 -economical 50591 -economically 51184 -economics 48633 -economictimes 61256 -economies 50046 -economist 52927 -economists 52622 -economy 41823 -economy's 60321 -ecoquiet 64657 -ecosystem 52459 -ecosystems 53813 -ecotourism 62762 -ecplaza 59164 -ecstasy 57653 -ecstatic 57785 -ect 57358 -ection 65452 -ectoderm 64657 -ectodermal 61472 -ectomycorrhizal 63077 -ectopic 55474 -ects 60321 -ecu 62196 -ecuador 62917 -ecules 65452 -ecumenical 58979 -ecw 62917 -eczema 59848 -ed 47136 -eda 65452 -edad 63991 -edaphic 60321 -edbassmaster 65452 -edd 64201 -eddie 56452 -eddies 63419 -eddy 55500 -edema 53796 -edematous 63792 -eden 58979 -edentulous 61584 -edgar 62917 -edge 41683 -edged 55423 -edgeplay 59848 -edger 63792 -edges 46797 -edgewear 63792 -edging 57046 -edgy 57318 -edi 62762 -edible 53485 -edict 62331 -edicts 58365 -edie 61940 -edifice 61256 -edifices 64657 -edinburgh 58365 -edison 62917 -edit 38728 -editable 57482 -edited 42152 -edith 65452 -editing 44869 -edition 42638 -editions 50402 -editor 42931 -editor's 56618 -editorial 45987 -editorials 57440 -editors 47080 -editorship 65170 -edits 49972 -edly 62762 -edmonton 61940 -edn 63991 -edna 60670 -edo 62331 -edrwasoft 61699 -eds 62196 -edt 61472 -edu 57566 -educate 49500 -educated 48533 -educates 60157 -educating 52661 -education 38264 -educational 41055 -educationally 62762 -educations 64423 -educative 60492 -educator 54706 -educator's 64905 -educators 50402 -edule 62196 -edulis 62613 -edward 56935 -edwards 52673 -edwin 64201 -ee 54207 -eect 64905 -eed 65452 -eee 58919 -eel 59101 -eels 62917 -een 51425 -eens 63419 -eeprom 63419 -eerie 57358 -eerily 61051 -eerste 64905 -ees 64201 -eesti 62613 -eestor 64905 -eet 63991 -ef 55849 -efecto 65452 -efector 64423 -efectos 63245 -efeitos 65452 -eff 54245 -effect 36595 -effected 53256 -effecting 56618 -effective 38170 -effectively 43724 -effectiveness 44956 -effector 52291 -effectors 59039 -effects 36974 -effectual 64657 -effectually 65170 -effectuate 62917 -efferent 59491 -effervescent 64657 -effet 64201 -effets 64657 -effexor 54924 -efficacious 57358 -efficacy 46986 -efficiencies 52818 -efficiency 42586 -efficient 42282 -efficiently 47879 -efficients 65170 -effigy 62469 -effing 62917 -efflorescences 65170 -effluent 52447 -effluents 62762 -efflux 54706 -effort 40913 -effortless 57566 -effortlessly 57696 -efforts 41457 -effusion 56791 -effusions 59560 -effusive 65170 -efi 65452 -efile 64201 -efits 65170 -efor 65170 -efron 59560 -eft 65170 -efter 63245 -eg 41665 -egalitarian 60078 -eget 61362 -egg 46440 -eggplant 57785 -eggplants 61362 -eggs 46751 -eggshell 64657 -eggshells 65452 -ego 52496 -egoADC 65170 -egocentric 64201 -egomarc 64201 -egos 60078 -egotistical 63792 -egregious 59357 -egress 59774 -egy 61940 -egypt 59357 -egyptian 60405 -eh 54643 -ehcp 58313 -ehh 65170 -ehrlichial 65170 -ehrlichiosis 64657 -ei 55274 -eich 63792 -eicosanoid 63991 -eicosapentaenoic 63991 -eid 62331 -eiffel 62762 -eigen 60670 -eigenfunction 65170 -eigenfunctions 61256 -eigenmodes 63991 -eigenstates 62917 -eigenvalue 53392 -eigenvalues 53211 -eigenvector 59491 -eigenvectors 57358 -eight 41329 -eighteen 53095 -eighteenth 55398 -eighth 50654 -eighties 59292 -eighty 56756 -eign 62469 -eileen 65452 -ein 52411 -einai 63419 -eine 53407 -einem 58017 -einen 57482 -einer 55657 -eines 59702 -einfach 60321 -eink 62196 -eins 65170 -einstein 61699 -eircom 62196 -eirmod 60492 -eis 65452 -either 35545 -ej 63792 -ejabberd 63792 -ejaculate 59164 -ejaculated 61584 -ejaculates 60762 -ejaculation 53052 -ejaculations 64657 -ejaculatory 64905 -ejadib 65170 -ejay 63601 -eject 57876 -ejected 55657 -ejecting 62762 -ejection 55226 -ejections 64905 -ejector 65170 -ejects 64201 -ejemplo 65170 -ek 57160 -eke 64423 -ekg 65170 -ekonomi 64905 -ekstreme 64423 -el 42205 -ela 60762 -elaborate 50242 -elaborated 55963 -elaborately 60856 -elaborates 63419 -elaborating 62066 -elaboration 57238 -elaine 60492 -elapse 62469 -elapsed 55274 -elastance 65170 -elastase 61699 -elastic 47318 -elastically 62917 -elasticities 59227 -elasticity 52996 -elasticized 65170 -elastin 63601 -elastomer 58313 -elastomeric 56262 -elastomers 61051 -elated 62917 -elbow 51293 -elbows 56935 -elcid 64905 -eld 59164 -elder 52739 -elderly 46751 -elders 55877 -eldest 55107 -ele 60856 -eleanor 65452 -elearning 64423 -elec 63419 -elect 50678 -elected 45410 -electing 57278 -election 42316 -elections 46669 -elective 52472 -electives 63991 -elector 64423 -electoral 51293 -electorate 55934 -electorates 64905 -electors 61051 -electra 61940 -electric 41510 -electrical 42349 -electrically 51640 -electrician 55963 -electricians 60952 -electricity 46170 -electrics 63601 -electrification 61699 -electrified 61256 -electrifying 59774 -electro 52927 -electroabsorption 63245 -electroblotted 65452 -electrocardiogram 58523 -electrocardiograms 64657 -electrocardiographic 60238 -electrocardiography 62469 -electrocatalytic 63792 -electrocautery 64201 -electrochemical 52913 -electrochemically 64423 -electrochemistry 65452 -electrochromic 58919 -electroconvulsive 64201 -electrocution 64657 -electrode 46234 -electrodeposited 65452 -electrodermal 64657 -electrodes 49517 -electroencephalogram 62331 -electroencephalographic 62917 -electroencephalography 64905 -electrofishing 62917 -electrogenic 64423 -electrographic 64657 -electrokinetic 61152 -electroless 60670 -electroluminescence 64201 -electrolux 60492 -electrolysis 55202 -electrolyte 51415 -electrolytes 55793 -electrolytic 54005 -electrolytically 64657 -electromagnetic 49429 -electromagnetism 63991 -electromechanical 58162 -electromigration 65452 -electromyographic 62331 -electron 43475 -electronegativity 65170 -electroneutral 64657 -electronic 40235 -electronica 58262 -electronical 65170 -electronically 50178 -electronics 45780 -electrons 48323 -electrophilic 60238 -electrophoresed 58212 -electrophoresis 50646 -electrophoretic 55084 -electrophoretically 62613 -electrophysiologic 60952 -electrophysiological 56618 -electrophysiology 63601 -electroplated 63792 -electroplating 55877 -electroporated 64201 -electroporation 61152 -electroshock 64905 -electrospray 59848 -electrostatic 52051 -electrostatically 63991 -electrostatics 63792 -electrosurgical 60670 -electrothermal 62066 -electroweak 59774 -elects 58919 -elegance 53533 -elegans 54835 -elegant 47899 -elegantly 56652 -elegy 65452 -elem 63419 -element 41400 -element's 65170 -elemental 53286 -elementals 65170 -elementary 47482 -elements 40453 -elena 63601 -elephant 52198 -elephants 55037 -elertz 60238 -eles 64657 -elevate 55604 -elevated 45838 -elevates 60157 -elevating 58979 -elevation 48046 -elevational 57199 -elevations 54188 -elevator 51521 -elevators 57278 -eleven 50726 -eleventh 57923 -elf 56050 -eli 62613 -elias 65170 -elicit 53952 -elicitation 61818 -elicited 53695 -eliciting 58979 -elicitor 64657 -elicits 58113 -elicotteri 64905 -elidel 64423 -elie 65452 -elif 57876 -elifyilmaz 63792 -eligibility 46960 -eligible 42082 -eligibles 65452 -elijathegold 65170 -eliminate 45581 -eliminated 49251 -eliminates 50150 -eliminating 49108 -elimination 48831 -eliminator 63991 -eliotn 65452 -elisa 63792 -elisabeth 63077 -elise 63792 -elit 64905 -elite 48571 -elites 57923 -elitism 64657 -elitist 58313 -elitists 63601 -elixir 60580 -eliza 61818 -elizabeth 56170 -elk 58113 -ell 60952 -ella 57831 -elle 58688 -ellen 58365 -eller 58632 -ellie 64657 -elliot 63419 -elliott 63077 -ellipse 58802 -ellipses 63601 -ellipsis 63991 -ellipsoid 62196 -ellipsoidal 65452 -ellipsoids 61940 -ellipsometric 64905 -ellipsometry 62613 -elliptic 52996 -elliptical 54419 -ellipticals 65170 -ellipticity 63601 -ellis 60762 -ellison 62196 -ello 63419 -ellos 62762 -elm 59292 -elmo 61940 -elmore 64423 -elnino 59292 -elongate 54341 -elongated 51330 -elongating 63245 -elongation 53286 -eloquence 63601 -eloquent 58162 -eloquently 59560 -elozano 65170 -els 56200 -else 39148 -else's 52256 -elseif 61472 -elses 61152 -elsewhere 46488 -elsif 63245 -elspa 62066 -elton 63077 -eluate 58417 -eluates 63419 -elucidate 54664 -elucidated 59039 -elucidating 60580 -elucidation 58632 -elude 62196 -eluded 60856 -eludes 63991 -eluding 64657 -eluent 58313 -elursrebmem 58979 -elusive 53952 -elute 63601 -eluted 52175 -eluting 59560 -elution 53438 -elven 65170 -elves 59227 -elvis 59630 -em 46529 -emaciated 63077 -emacs 61818 -emai 65452 -email 32607 -emailed 48581 -emailemail 58065 -emailing 53813 -emails 45780 -emanate 61472 -emanated 62917 -emanates 62196 -emanating 56420 -emanation 65170 -emancipated 64657 -emancipation 60580 -emarginatus 64905 -embankment 59227 -embarassed 63601 -embarassing 62613 -embargo 58417 -embark 54560 -embarked 55107 -embarking 57084 -embarks 58470 -embarrass 59292 -embarrassed 54283 -embarrassing 53438 -embarrassingly 63601 -embarrassment 56452 -embassies 60952 -embassy 55154 -embattled 60856 -embed 46587 -embedObject 64905 -embedded 45592 -embedding 53052 -embeddings 63991 -embeded 65170 -embeds 59848 -embellish 62469 -embellished 58162 -embellishment 61818 -embellishments 62762 -ember 61362 -embers 62331 -embetter 62469 -embezzlement 63419 -embezzling 64423 -embittered 65170 -emblazoned 62331 -emblem 55793 -emblematic 61472 -emblems 60580 -embodied 53630 -embodies 57084 -embodiment 45761 -embodiments 51387 -embody 57482 -embodying 58745 -emboldened 64423 -emboli 63077 -embolic 62762 -embolism 57876 -embolization 58262 -embolus 63601 -embossed 56200 -embossing 62762 -embrace 50256 -embraced 52818 -embraces 54792 -embracing 54321 -embrittlement 62917 -embroider 65452 -embroidered 52399 -embroidery 52521 -embroiled 59702 -embryo 51721 -embryogenesis 60157 -embryoid 64657 -embryology 65452 -embryonal 61940 -embryonic 50108 -embryos 50129 -emcee 63245 -emerald 55657 -emeralds 63792 -emerge 50292 -emerged 48538 -emergence 50026 -emergencies 53581 -emergency 42443 -emergent 55202 -emerges 52597 -emerging 45676 -emeritus 59101 -emery 63991 -emesis 59424 -emetic 65452 -emetogenic 64423 -emf 62917 -emg 65170 -emgage 63077 -emi 62196 -emigrant 63077 -emigrants 61472 -emigrate 62762 -emigrated 57970 -emigrating 65452 -emigration 58212 -emily 56356 -eminem 56551 -eminence 59101 -eminent 54380 -eminently 59848 -emirates 64201 -emissary 65170 -emission 44524 -emissions 45139 -emissivity 57876 -emit 54439 -emits 56231 -emittance 63792 -emitted 51122 -emitter 54170 -emitters 57653 -emitting 51888 -emma 57122 -emmanuel 64657 -emmanuelle 65452 -emmy 61152 -emmys 61472 -emo 52018 -emollient 64657 -emoreau 62917 -emoticon 63601 -emoticons 58417 -emotion 51043 -emotional 45180 -emotionally 52399 -emotions 50033 -emotive 60238 -emp 60157 -empathetic 62331 -empathic 63077 -empathize 62613 -empathy 56862 -emperor 55250 -emperor's 63077 -emperors 62469 -emphases 63245 -emphasis 45251 -emphasise 57653 -emphasised 56972 -emphasises 58523 -emphasising 61472 -emphasize 49809 -emphasized 50576 -emphasizes 51825 -emphasizing 54664 -emphatic 60000 -emphatically 59630 -emphysema 58365 -empire 51131 -empires 56862 -empiric 62331 -empirical 46815 -empirically 55299 -emplacement 62762 -empleo 63792 -employ 48372 -employability 60952 -employed 43277 -employee 42593 -employee's 53271 -employeeNumber 57566 -employees 40454 -employer 43772 -employer's 54439 -employerlogo 49423 -employers 46128 -employes 60856 -employing 49054 -employment 41936 -employmentcros 64905 -employs 49614 -emporio 62917 -emporium 63419 -empower 52152 -empowered 54245 -empowering 54992 -empowerment 54360 -empowers 55373 -empresa 62917 -empresas 63077 -empress 63601 -emptied 57084 -empties 60580 -emptiness 59101 -empty 44188 -emptying 56687 -empyema 61699 -empyemas 65452 -ems 62917 -emt 65452 -emu 59774 -emulate 54946 -emulated 60492 -emulates 62613 -emulating 60078 -emulation 55037 -emulator 54114 -emulators 62066 -emule 61256 -emulsified 62762 -emulsifier 62917 -emulsifying 61584 -emulsion 53662 -emulsions 58860 -en 37855 -en's 65452 -enRoute 64423 -enV 60670 -enVision 58162 -ena 62066 -enable 40608 -enabled 42210 -enablement 64905 -enabler 62762 -enablers 63792 -enables 43777 -enabling 45209 -enact 56452 -enacted 52096 -enacting 60000 -enactment 55500 -enactments 64657 -enacts 61472 -enalapril 65170 -enalaprilat 63245 -enamel 52187 -enameled 57923 -enamels 63419 -enamelysin 64657 -enamored 62917 -enantiomer 63077 -enantiomerically 63601 -enantiomers 59491 -enantioselective 60492 -encampment 62917 -encanta 61818 -encantaría 65452 -encapsulate 60856 -encapsulated 54170 -encapsulates 60405 -encapsulating 61256 -encapsulation 57831 -encarta 65170 -encartagreeting 64905 -encased 57524 -encasement 64905 -ence 50881 -enced 61472 -encephalitis 58745 -encephalomyelitis 62469 -encephalopathy 60078 -ences 54540 -enchant 60000 -enchanted 56935 -enchanting 56420 -enchants 63245 -enchilada 65170 -enchiladas 65452 -encircle 62196 -encircled 61256 -encircles 63991 -encircling 62762 -enclave 59560 -enclaves 61256 -enclose 55323 -enclosed 48851 -encloses 60952 -enclosing 56021 -enclosure 51377 -enclosures 55348 -encode 52832 -encoded 47815 -encoder 53407 -encoders 60762 -encodes 52635 -encoding 47214 -encodings 64905 -encompass 53066 -encompassed 57084 -encompasses 51814 -encompassing 53847 -encontrar 60762 -encore 56021 -encounter 47831 -encountered 47537 -encountering 56899 -encounters 52315 -encourage 42478 -encouraged 45870 -encouragement 51888 -encourages 48721 -encouraging 47980 -encroach 63601 -encroaching 62066 -encroachment 60321 -encrusted 62331 -encrypt 57009 -encrypted 52210 -encrypting 60078 -encryption 50522 -encrypts 61362 -encuentra 63245 -encuentran 65452 -encuentro 65170 -encumbered 61256 -encumbrance 62469 -encumbrances 65452 -encyclo 62762 -encyclopaedia 61051 -encyclopedia 37149 -encyclopedias 57609 -encyclopedic 62469 -end 34647 -endInsert 64905 -endSection 64905 -endanger 57831 -endangered 50940 -endangering 58577 -endangerment 64423 -endangers 62196 -endarterectomy 63991 -endcapped 60952 -endearing 59101 -endeavor 54792 -endeavored 63419 -endeavors 57278 -endeavour 55130 -endeavoured 62331 -endeavouring 65170 -endeavours 58632 -ended 43069 -endemic 53286 -endgame 60492 -endian 65170 -endif 60952 -ending 44286 -endings 55963 -endless 49559 -endlessly 57160 -endlich 64905 -endnote 60492 -endo 61472 -endobj 58919 -endocannabinoid 63419 -endocardial 61362 -endocarditis 62196 -endocervical 65170 -endochondral 64905 -endocrine 52996 -endocrinologist 65452 -endocrinology 63077 -endocytic 60492 -endocytosis 59702 -endoderm 63077 -endodermal 63601 -endodontic 62469 -endogeneity 63601 -endogenous 48786 -endogenously 61362 -endoluminal 64657 -endometrial 55154 -endometriosis 58113 -endometrium 60405 -endomorphism 62613 -endomyocardial 64657 -endonuclease 57399 -endonucleases 60405 -endopeptidase 63601 -endophthalmitis 64657 -endophyte 63601 -endophytes 61699 -endophytic 62613 -endoplasmic 56652 -endopodite 65452 -endopyelotomy 65452 -endorphins 63991 -endorse 47507 -endorsed 47228 -endorsement 46123 -endorsements 55154 -endorses 52752 -endorsing 57009 -endoscope 59424 -endoscopes 64905 -endoscopic 53970 -endoscopically 63792 -endoscopies 65452 -endoscopy 56756 -endosomal 65452 -endosomes 63792 -endosperm 61818 -endosteal 65170 -endothelial 47187 -endothelin 58632 -endothelium 56972 -endothermic 61152 -endotoxin 56652 -endotoxins 62469 -endotracheal 61699 -endovascular 57923 -endow 62917 -endowed 55014 -endowment 56050 -endowments 61472 -endows 63601 -endplate 58745 -endplates 62917 -endpoint 54439 -endpoints 55202 -ends 42076 -endurance 52029 -endure 54041 -endured 56356 -endures 62066 -enduring 53331 -enduringly 63077 -enduro 62613 -ene 59292 -ened 63245 -enema 55474 -enemas 60856 -enemies 49926 -enemy 47533 -enemy's 59702 -enemys 63419 -energetic 50856 -energetically 59702 -energetics 61584 -energie 64905 -energies 48445 -energised 63991 -energization 65170 -energize 60492 -energized 56791 -energizer 65452 -energizes 64657 -energizing 60157 -energy 36585 -enero 61584 -enewsletter 64657 -enfant 64905 -enfants 62762 -enfield 65452 -enforce 49620 -enforceability 61699 -enforceable 55130 -enforced 53182 -enforcement 45010 -enforcer 62917 -enforcers 64657 -enforces 58860 -enforcing 53438 -eng 52584 -engage 45697 -engageable 58262 -engaged 44980 -engagement 47559 -engagements 57122 -engages 52521 -engaging 48239 -engender 61699 -engendered 60856 -engenders 63245 -engine 39933 -engine's 59848 -engined 64905 -engineer 47577 -engineer's 60492 -engineered 50409 -engineering 42819 -engineers 47467 -engines 44919 -engl 61584 -england 53882 -englisch 60856 -english 45114 -engorged 63245 -engraftment 59702 -engrave 63245 -engraved 54341 -engraver 64905 -engraving 57440 -engravings 63601 -engrossed 63245 -engrossing 60670 -engulf 63419 -engulfed 58745 -engulfing 65170 -engulfs 64657 -enh 62196 -enhance 42750 -enhanced 43323 -enhancement 46928 -enhancements 52051 -enhancer 54813 -enhancers 59774 -enhances 49376 -enhancing 44915 -enigma 58470 -enigmatic 58313 -enim 60157 -ening 62762 -eninge 64905 -enix 65452 -enjoin 63077 -enjoined 61362 -enjoining 64201 -enjoy 39652 -enjoyable 49614 -enjoyed 43697 -enjoying 46575 -enjoyment 51974 -enjoys 49119 -enki 54459 -enlace 64423 -enlaces 63991 -enlarge 45768 -enlarged 49262 -enlargement 52085 -enlargements 62762 -enlarger 65170 -enlarges 62331 -enlarging 59227 -enlighten 56862 -enlightened 56231 -enlightening 58212 -enlightenment 57084 -enlist 59101 -enlisted 53952 -enlistees 63792 -enlisting 62613 -enlistment 60405 -enlists 62762 -enlitenrunkse 63991 -enliven 63077 -enlivened 63245 -enmeshed 64201 -enmity 61584 -enn 64201 -ennai 63077 -eno 63991 -enol 63601 -enolase 65170 -enolate 64423 -enone 65452 -enormity 61362 -enormous 47574 -enormously 55631 -enough 37412 -enought 65170 -enquire 57566 -enquired 61940 -enquires 63245 -enquiries 50537 -enquiring 65170 -enquiry 51731 -enraged 59848 -enrich 54283 -enriched 50991 -enriches 61472 -enriching 57970 -enrichment 51846 -enrichments 65170 -enrique 63419 -enrol 58745 -enroll 52339 -enrolled 47923 -enrollee 63245 -enrollees 58632 -enrolling 55299 -enrollment 49488 -enrollments 62613 -enrolls 61256 -enrolment 56140 -enrolments 62196 -enroute 60762 -ens 62331 -ensconced 62917 -ensemble 50568 -ensembles 57278 -enshrined 60321 -ensign 64905 -enslave 62613 -enslaved 60238 -ensue 61818 -ensued 59292 -ensues 60856 -ensuing 54380 -ensuite 57318 -ensure 38515 -ensured 52635 -ensures 47201 -ensuring 45737 -ent 51202 -entail 55423 -entailed 59923 -entailing 63991 -entails 54540 -entangle 64423 -entangled 58417 -entanglement 61584 -entanglements 64201 -entation 64905 -enter 37430 -enteral 60405 -entered 40103 -enteric 58065 -enterica 60078 -entering 44158 -enteritis 60580 -entero 65452 -enterobacteria 65170 -enterococci 62066 -enterocytes 65452 -enterolactone 63077 -enteropathogenic 63991 -enterotoxin 63792 -enterovirus 63245 -enterprise 44827 -enterprises 49163 -enterprising 59560 -enters 47875 -entertain 51835 -entertained 53470 -entertainer 57358 -entertainers 56899 -entertaining 48964 -entertainment 42264 -entertainments 64905 -entertains 60000 -enthalpic 64423 -enthalpies 59357 -enthalpy 57653 -enthralled 61699 -enthralling 64423 -enthuse 65452 -enthused 62066 -enthusiasm 50416 -enthusiast 54946 -enthusiastic 50584 -enthusiastically 57399 -enthusiasts 52198 -ential 63245 -entice 57482 -enticed 62613 -entices 64905 -enticing 57876 -entire 38567 -entirely 44296 -entirety 54479 -entities 48178 -entitle 58632 -entitled 43948 -entitlement 54540 -entitlements 57609 -entitles 59292 -entitling 62762 -entity 46976 -entity's 60405 -entityName 64423 -ently 61152 -entomologist 65452 -entomology 63792 -entorhinal 65452 -entourage 55578 -entrada 61362 -entrails 63792 -entrained 60238 -entrainment 59923 -entrance 45775 -entranced 63419 -entrances 56935 -entrant 57440 -entrant's 63991 -entrants 56110 -entrapment 60078 -entrapped 60321 -entre 53454 -entree 56721 -entrees 58065 -entrenched 57524 -entrepreneur 53024 -entrepreneurial 51953 -entrepreneurs 51078 -entrepreneurship 54813 -entreprises 63419 -entrevista 63601 -entries 43759 -entropic 62469 -entropy 51670 -entrust 60856 -entrusted 56293 -entrusting 64905 -entry 39390 -entry's 65452 -entryway 63991 -entrée 61256 -ents 59560 -entwined 62469 -enuf 61256 -enuff 64201 -enum 57970 -enumerate 60405 -enumerated 56518 -enumerates 64657 -enumerating 63419 -enumeration 53762 -enunciated 63077 -enuresis 63601 -env 57785 -envelop 62917 -envelope 48877 -enveloped 59292 -envelopes 53286 -enveloping 60405 -enviable 57482 -enviar 62917 -envied 65170 -envio 65452 -envionment 64423 -envious 60000 -enviroment 61940 -environment 39579 -environmental 40241 -environmentalism 60762 -environmentalist 61584 -environmentalists 58417 -environmentally 49751 -environments 47187 -environnement 65170 -environs 60405 -envisage 59101 -envisaged 56050 -envisages 62469 -envision 55684 -envisioned 55552 -envisioning 63245 -envisions 60078 -envoy 56756 -envoys 61818 -envy 54770 -enzastaurin 63991 -enzo 64423 -enzootic 63601 -enzymatic 51220 -enzymatically 59774 -enzyme 44004 -enzymes 47378 -enzymic 61051 -enzymology 64201 -eo 55202 -eon 64905 -eons 61256 -eorex 64423 -eos 57358 -eosin 58919 -eosinophil 56293 -eosinophilia 61362 -eosinophilic 59702 -eosinophils 57199 -eotaxin 65452 -ep 53796 -ependymal 65170 -ependymoma 64423 -ephedra 59164 -ephedrine 56972 -ephemera 61940 -ephemeral 59227 -ephemeris 65170 -epi 56293 -epic 49017 -epicardial 58212 -epicardium 65170 -epicenter 61584 -epicentre 62917 -epics 62613 -epicure 62613 -epicurious 60238 -epidemic 51650 -epidemics 59039 -epidemiologic 56324 -epidemiological 53517 -epidemiologist 64657 -epidemiology 55202 -epidermal 52739 -epidermidis 58688 -epidermis 55474 -epidermoid 65452 -epididymal 59702 -epidural 54792 -epifluorescence 61818 -epigastric 61940 -epigenetic 58688 -epilator 63419 -epilepsy 52982 -epileptic 57199 -epilepticus 63991 -epileptiform 61256 -epileptogenic 62331 -epilogue 64201 -epinephrine 57653 -epiphany 61940 -epiphyseal 63077 -epiphyte 64423 -epiphytes 64905 -epiphytic 64423 -epipolar 61584 -episcopal 62613 -episiotomy 60762 -episode 43040 -episode's 65452 -episodes 46173 -episodic 58065 -episodio 64201 -epistemic 65170 -epistemological 58919 -epistemology 65170 -epistolary 64423 -epitaxial 56618 -epitaxy 59702 -epithelia 58470 -epithelial 47733 -epithelioid 61051 -epithelium 51550 -epithet 62613 -epithets 61818 -epitome 58688 -epitomize 65452 -epitomizes 62917 -epitope 54560 -epitopes 54902 -epoch 57440 -epochs 59774 -eponymous 60952 -epost 63601 -epoxidation 59560 -epoxide 56485 -epoxides 58745 -epoxy 50940 -eprom 60952 -eprops 57278 -eps 58919 -epsilon 59292 -epsom 63792 -epson 59039 -eq 53882 -eqn 60762 -eqs 64657 -equal 40987 -equaled 60157 -equaling 63245 -equaliser 62917 -equalities 60078 -equality 49633 -equalization 57160 -equalize 60492 -equalized 61152 -equalizer 57278 -equalizers 65452 -equalizing 61699 -equalled 63419 -equalling 64201 -equally 45174 -equals 49873 -equate 56356 -equated 58632 -equates 57524 -equating 60078 -equation 42894 -equations 44714 -equator 57696 -equatorial 56551 -equestrian 56935 -equi 65452 -equiaxed 65452 -equidistant 63077 -equilateral 58365 -equilibrate 64657 -equilibrated 55738 -equilibration 57122 -equilibria 57482 -equilibrium 46488 -equimolar 59560 -equine 55604 -equinox 63601 -equip 53796 -equiped 61699 -equipment 39101 -equipments 56021 -equipo 62469 -equipotent 64657 -equipped 44888 -equipping 59101 -equips 60321 -equitable 53052 -equitably 62469 -equities 55766 -equity 45230 -equiv 63419 -equivalence 52496 -equivalency 58979 -equivalent 42336 -equivalently 59774 -equivalents 53581 -equivocal 61699 -er 47464 -era 46903 -era's 64201 -erably 65170 -eradicate 56080 -eradicated 61051 -eradicating 59848 -eradication 53988 -erage 60762 -eral 53597 -eralized 62917 -erally 61818 -eras 58470 -erasable 65170 -erase 52805 -erased 56356 -eraser 60157 -erases 62196 -erasing 57160 -erasure 60000 -erasures 64201 -erat 59774 -erate 60321 -erated 60321 -erating 62762 -eration 58262 -erations 63601 -erative 61472 -erator 64423 -erature 63792 -erbium 65170 -ere 57318 -erect 53361 -erecta 62613 -erected 53066 -erectile 53565 -erecting 60670 -erection 52018 -erections 60000 -ered 56756 -erence 60856 -erences 63991 -erent 61699 -erento 64423 -eres 57741 -erg 59039 -ergata 62762 -ergo 60157 -ergodic 59630 -ergometer 64905 -ergonomic 55226 -ergonomically 60000 -ergonomics 60157 -ergosterol 64201 -ergy 58313 -eri 62917 -eric 52509 -erica 60670 -erick 65452 -ericson 61051 -ericsson 52546 -erie 63792 -erietube 64201 -erik 60405 -erika 62762 -erin 57831 -ering 62196 -erly 65452 -erm 61362 -ermal 64905 -ern 59164 -ernest 63601 -ernie 65452 -ernment 60157 -ernst 65452 -ero 64201 -erode 59702 -eroded 56721 -erodes 63419 -eroding 60492 -erogenous 65170 -eros 56935 -erosentertainment 65452 -erosion 49676 -erosional 63077 -erosions 59848 -erosive 58919 -erostorrent 60078 -erotic 48781 -erotica 54207 -eroticism 64905 -eroticy 65452 -erotik 63991 -erp 62917 -err 55299 -errand 63601 -errands 60580 -errant 59357 -errata 63991 -erratic 57278 -erratically 63792 -erred 54601 -errno 64201 -erroneous 53010 -erroneously 57046 -error 38771 -errorlevel 62469 -errors 41417 -ers 53630 -erste 58979 -ersten 63792 -erstwhile 60670 -erties 59424 -erty 62917 -erudite 63077 -erupt 60157 -erupted 56791 -erupting 62762 -eruption 55323 -eruptions 59560 -eruptive 64905 -erupts 59630 -ervey 65170 -ery 58688 -erythema 58262 -erythematosus 58313 -erythematous 63245 -erythroblasts 65452 -erythrocyte 54170 -erythrocytes 54096 -erythroid 58745 -erythromycin 58523 -erythropoiesis 64657 -erythropoietic 65452 -erythropoietin 61152 -es 44686 -esa 55821 -esac 65452 -esas 62762 -escalate 59424 -escalated 58417 -escalates 64201 -escalating 56721 -escalation 56551 -escalator 63245 -escalators 65170 -escapades 64423 -escape 46468 -escaped 52118 -escapee 64201 -escapees 64201 -escapes 53454 -escaping 54321 -escapism 62917 -escapist 64423 -escarpment 65452 -eschatological 60580 -escherichia 64657 -eschew 64201 -eschewing 64905 -escort 49867 -escorted 56452 -escorting 63601 -escorts 52635 -escrow 52040 -escuchar 62762 -escuela 63792 -ese 56110 -esearch 64201 -eserves 65170 -eset 64423 -esgic 63419 -esheets 63245 -esis 61256 -esl 63077 -esnips 60670 -eso 56518 -esomeprazole 62331 -esophageal 51985 -esophagitis 60670 -esophagus 54727 -esos 62066 -esoteric 59560 -esp 59630 -espa 64657 -espace 63245 -espacial 65452 -espacio 63991 -espagnols 50734 -espanol 58313 -espaol 64657 -españa 63601 -español 47835 -española 62917 -especial 60580 -especially 38184 -especialy 64423 -especies 64905 -espera 65452 -esperar 64657 -espero 59702 -espionage 60157 -espn 61584 -espns 63601 -esponja 63419 -esponsibility 65170 -espouse 64201 -espoused 61472 -espresso 54770 -esquiar 61699 -esr 64201 -esrb 57566 -ess 59101 -essa 61152 -essai 63792 -essary 61256 -essay 48524 -essayist 64423 -essays 49707 -esse 58017 -essence 49435 -essences 59491 -essential 41178 -essentially 45025 -essentials 53331 -essere 61699 -esses 65170 -essex 60321 -est 48174 -esta 50576 -estaba 63991 -establish 42913 -established 39680 -establishes 51312 -establishing 46415 -establishment 45831 -establishment's 65170 -establishments 51284 -estado 60321 -estamos 62917 -estan 60580 -estar 60952 -estas 56585 -estate 37818 -estate's 64905 -estates 53988 -este 50662 -ested 62196 -esteem 57199 -esteemed 56262 -ester 51711 -esterase 59491 -esterases 64905 -esterification 61699 -esterified 63792 -esters 52597 -estes 62066 -esther 62196 -esthetic 61472 -esthetics 62613 -esti 62066 -estilo 63991 -estimable 64423 -estimate 43161 -estimated 41204 -estimates 43497 -estimating 50314 -estimation 46660 -estimations 57923 -estimator 54727 -estimators 57122 -esting 64423 -esto 58919 -estonia 64905 -estoppel 59923 -estore 64657 -estos 61584 -estou 65452 -estoy 60238 -estradiol 54622 -estranged 58313 -estrecho 64657 -estrella 65170 -estrellas 60078 -estrogen 50206 -estrogenic 61152 -estrogens 57831 -estrone 65452 -estrous 59292 -estructura 63245 -estrus 59164 -ests 65170 -estuaries 60856 -estuarine 58417 -estuary 56756 -estudio 62613 -está 55738 -están 63077 -estás 65452 -estão 63792 -esx 63991 -et 33024 -eta 59424 -etait 65452 -etalk 63077 -etc 44297 -etcetera 64657 -etch 53211 -etched 53533 -etching 52609 -etchings 64657 -ete 64201 -eteamz 57318 -etek 63077 -eter 61051 -eternal 50898 -eternally 58802 -eternity 56388 -eters 60238 -etext 64423 -ethambutol 64657 -ethan 62613 -ethane 60952 -ethanol 47919 -ethanolamine 65170 -ethanolic 62917 -ethene 65452 -ether 49999 -ethereal 58065 -ethernet 53934 -ethers 57160 -ethic 56110 -ethical 47927 -ethically 58262 -ethics 48697 -ethidium 56293 -ethinyl 65170 -ethiopia 65170 -ethiopian 64905 -ethnic 46337 -ethnically 57970 -ethnicity 53407 -ethnographic 58262 -ethnography 61362 -ethnological 63991 -ethnology 65170 -ethology 65170 -ethos 56791 -ethyl 51731 -ethylbenzene 64423 -ethylene 51650 -ethylenediaminetetraacetic 63792 -ethylenic 65170 -etiolated 64657 -etiologic 58979 -etiological 61362 -etiologies 63792 -etiology 54114 -etiquette 53407 -etisalat 62331 -etiwanda 62331 -etka 65452 -etki 64423 -etl 57160 -etn 63991 -etna 56420 -etnies 51996 -eto 62196 -etobicoke 64905 -etoile 64905 -etomidate 63077 -etoposide 61472 -etouffee 65452 -etownboarder 62469 -etre 63991 -etree 64657 -etry 63991 -ets 63419 -etsy 59039 -ett 60580 -etter 65452 -että 63991 -etude 64905 -etwas 62469 -ety 62762 -etymological 64657 -etymology 61472 -etymotic 63601 -eu 52778 -eubacterial 63601 -eucalypt 64905 -eucalyptus 61584 -euch 60856 -euchlorus 64905 -euclidean 64657 -euganot 65452 -eugene 60492 -eugenics 63245 -euismod 61818 -eukaryote 63991 -eukaryotes 62917 -eukaryotic 53695 -eulogy 63077 -eum 64657 -eunuch 65170 -euphemism 63419 -euphgeek 62196 -euphoria 60492 -euphoric 61584 -eur 61818 -eureka 59774 -euro 49893 -europa 61051 -europaea 64657 -europe 52210 -european 53024 -européen 60856 -européenne 62917 -euros 52739 -eurovision 65452 -eurozone 64201 -eustachian 64423 -eutectic 58313 -euthanasia 57970 -euthanize 64423 -euthanized 58365 -eutropha 63077 -eutrophic 62917 -eutrophication 63245 -ev 57609 -eva 54969 -evacuate 58162 -evacuated 53830 -evacuating 62331 -evacuation 52351 -evacuations 62469 -evacuees 62066 -evade 57399 -evaded 64905 -evades 63991 -evading 62066 -eval 61699 -evaluable 61940 -evaluate 42020 -evaluated 43950 -evaluates 53662 -evaluating 47427 -evaluation 41546 -evaluations 50568 -evaluative 59101 -evaluator 59774 -evaluators 61051 -evan 60762 -evanescence 61472 -evanescent 61051 -evangelical 55849 -evangelicals 62066 -evangelism 59774 -evangelist 61818 -evangelistic 62469 -evangelists 64905 -evans 59227 -evant 64657 -evanthika 59424 -evaporate 58919 -evaporated 53226 -evaporates 63077 -evaporating 60078 -evaporation 51670 -evaporative 59560 -evaporator 53695 -evaporite 64905 -evapotranspiration 61818 -evasion 58262 -evasive 62331 -eve 51473 -evel 63792 -evelyn 63792 -even 32663 -evened 65452 -evenflo 63419 -evening 43232 -evening's 57876 -evenings 52648 -evenly 51560 -evenness 64657 -evens 64657 -event 37504 -event's 59702 -eventful 59357 -eventhough 63245 -eventing 62762 -eventos 62762 -events 35643 -eventual 51825 -eventuality 64905 -eventually 43579 -eventzz 62917 -ever 36729 -everclear 58919 -everest 62613 -everett 64657 -evergreen 55766 -evergreens 65452 -everlasting 56356 -everthing 61051 -every 33866 -everybody 46488 -everybody's 56356 -everybodys 64657 -everyday 45345 -everyone 39377 -everyone's 50734 -everyones 58979 -everythin 64905 -everything 38739 -everything's 58417 -everythings 61472 -everytime 52927 -everyting 63419 -everywhere 47879 -eveyone 65452 -evict 60405 -evicted 59491 -evicting 64201 -eviction 56756 -evictions 62331 -evidence 38675 -evidenced 51772 -evidences 57876 -evidencing 61256 -evident 46486 -evidential 64201 -evidentiary 57160 -evidently 54439 -eviews 62613 -evil 46255 -evils 58979 -evince 65170 -evinced 63792 -evista 61818 -evisu 64657 -evo 59227 -evocation 63245 -evocative 57122 -evoke 55448 -evoked 51166 -evokes 55992 -evoking 60580 -evolution 43711 -evolutionarily 60078 -evolutionary 49330 -evolutionists 63991 -evolutions 62196 -evolve 51511 -evolved 48440 -evolves 56324 -evolving 50129 -evra 56935 -evry 64905 -evs 65452 -ew 57160 -ewe 62917 -ewes 57199 -ewido 61051 -eww 62762 -ex 45560 -ex's 62917 -exacerbate 57609 -exacerbated 56200 -exacerbates 62613 -exacerbating 63419 -exacerbation 60762 -exacerbations 61256 -exact 38370 -exacted 63792 -exacting 57609 -exactly 40805 -exactness 63419 -exacts 64657 -exafunk 65170 -exaggerate 59848 -exaggerated 54946 -exaggerating 60952 -exaggeration 60238 -exaggerations 65452 -exalt 64201 -exalted 59164 -exam 47180 -examination 43862 -examinations 50537 -examine 44134 -examined 42703 -examinee 64201 -examinees 65452 -examiner 55552 -examiner's 63792 -examiners 58919 -examines 48274 -examining 48422 -example 39433 -examples 42862 -exams 51377 -exasperated 61699 -exasperation 65452 -exc 58313 -excavated 56791 -excavating 61584 -excavation 54170 -excavations 58523 -excavator 57876 -excavators 64657 -exceed 45319 -exceeded 48677 -exceeding 49251 -exceedingly 55398 -exceeds 48741 -excel 51541 -excelent 62066 -excelente 62917 -excellant 65170 -excelled 58470 -excellence 48653 -excellent 38765 -excellently 61362 -excelling 64905 -excels 58860 -except 37613 -excepted 62613 -excepting 60078 -exception 44986 -exceptional 46595 -exceptionally 51492 -exceptions 50335 -excepts 63991 -excercise 61256 -excercising 63419 -excerpt 52673 -excerpted 59923 -excerpts 53286 -excess 43947 -excesses 59560 -excessive 47133 -excessively 54622 -exch 65452 -exchange 40542 -exchangeable 58802 -exchanged 52303 -exchanger 51963 -exchangers 58860 -exchanges 49146 -exchanging 53952 -exchenge 63245 -excimer 59424 -excipient 65452 -excise 55604 -excised 54540 -excision 52832 -excisional 65452 -excisions 65452 -excitability 58919 -excitable 61051 -excitation 48510 -excitations 56935 -excitatory 55178 -excite 56262 -excited 44461 -excitedly 62917 -excitement 49458 -excites 59039 -exciting 43521 -exciton 56170 -excitonic 63601 -excitons 60492 -excitotoxic 64201 -excitotoxicity 63601 -excl 62469 -exclaimed 61051 -exclamation 57831 -exclude 48756 -excluded 47544 -excludes 48667 -excluding 48841 -exclusion 49713 -exclusionary 62196 -exclusions 58860 -exclusive 42789 -exclusively 46173 -exclusives 59560 -exclusivity 58313 -excommunicated 65170 -excrement 58745 -excreta 61818 -excrete 62196 -excreted 54857 -excretion 50299 -excretory 62196 -excruciating 60078 -excruciatingly 63792 -excursion 55992 -excursions 55766 -excusable 65170 -excuse 48944 -excused 57785 -excuses 54749 -exe 54459 -exec 54226 -execs 56618 -executable 53286 -executables 62917 -execute 47435 -executed 47413 -executes 55250 -executing 51303 -execution 45754 -executional 64905 -executioner 64905 -executions 56862 -executive 42466 -executive's 61940 -executives 47964 -executor 59357 -executors 63077 -exegesis 64657 -exellent 63245 -exemplar 61818 -exemplars 63991 -exemplary 51266 -exemplified 55274 -exemplifies 57970 -exemplify 58745 -exemplifying 64657 -exempt 49676 -exempted 56262 -exempting 64657 -exemption 50285 -exemptions 54399 -exempts 61940 -exenadrine 64423 -exept 62196 -exerci 65170 -exercisable 62762 -exercise 41935 -exercised 52175 -exerciser 62613 -exercisers 56080 -exercises 47611 -exercising 52363 -exergy 61472 -exert 52315 -exerted 52622 -exerting 58417 -exertion 59848 -exertional 65452 -exertions 64905 -exerts 55500 -exfoliate 63245 -exfoliated 64423 -exfoliating 62762 -exfoliation 61472 -exfoliative 64423 -exhalation 64423 -exhale 62469 -exhaled 61940 -exhaust 47015 -exhausted 52778 -exhausting 58212 -exhaustion 56021 -exhaustive 54170 -exhaustively 61472 -exhausts 61256 -exhibit 45313 -exhibited 47456 -exhibiting 52423 -exhibition 45828 -exhibition's 64657 -exhibitionism 58523 -exhibitionist 62331 -exhibitions 51741 -exhibitor 59424 -exhibitors 55738 -exhibits 48165 -exhilarating 58113 -exhilaration 62917 -exhorted 64905 -exhumation 64423 -exhumed 64905 -exif 58919 -exigencies 63601 -exigent 61818 -exile 55423 -exiled 60405 -exiles 61699 -exilim 61584 -exist 43506 -existance 60580 -existe 62613 -existed 49319 -existence 44505 -existent 62066 -existential 57084 -existing 36883 -exists 43962 -exit 45277 -exited 57238 -exiting 54499 -exits 54727 -exo 61940 -exocrine 60762 -exocytosis 57970 -exodus 58470 -exogenous 51650 -exogenously 61940 -exon 52074 -exonerate 64423 -exonerated 64201 -exons 56080 -exonuclease 62917 -exorbitant 61584 -exorcise 64905 -exothermic 58162 -exotic 47939 -exotics 63077 -exp 50220 -expanable 64423 -expand 43328 -expandability 63991 -expandable 57046 -expanded 45062 -expander 59491 -expanding 45751 -expands 50898 -expanse 58577 -expanses 63245 -expansion 43089 -expansionary 65452 -expansions 55849 -expansive 54643 -expat 58745 -expatica 61940 -expatriate 58979 -expatriates 59227 -expats 59227 -expecially 65170 -expect 41192 -expectancies 61051 -expectancy 53109 -expectant 58745 -expectation 50122 -expectations 46274 -expected 39109 -expecting 48821 -expects 45356 -expediency 63419 -expedient 58065 -expedite 55934 -expedited 56452 -expediting 64657 -expedition 53196 -expeditionary 63419 -expeditions 58212 -expeditious 61362 -expeditiously 61818 -expel 58017 -expelled 55037 -expelling 63245 -expend 58365 -expendable 63601 -expended 55398 -expending 63419 -expenditure 48256 -expenditures 49076 -expense 47060 -expensed 65452 -expenses 45578 -expensing 64905 -expensive 43594 -experiance 63419 -experience 36038 -experienced 41555 -experiences 43218 -experiencing 47279 -experiential 56021 -experiment 44252 -experimental 41072 -experimentally 50343 -experimentation 54835 -experimented 56972 -experimenter 61362 -experimenters 63419 -experimenting 54041 -experiments 42615 -experince 63077 -expert 42999 -expert's 60952 -expertise 44712 -expertly 56551 -experts 43278 -expertvillage 51312 -expiants 64423 -expiration 50150 -expiratory 58065 -expire 51825 -expired 50469 -expires 52940 -expiring 57358 -expiry 55014 -explain 42180 -explained 43306 -explaining 47871 -explains 45468 -explanandum 64201 -explanation 45281 -explanations 50702 -explanatory 53256 -explant 64201 -explants 58065 -explicit 46373 -explicitly 48265 -explode 55250 -exploded 53361 -explodes 58688 -exploding 54857 -exploit 49682 -exploitable 64905 -exploitation 51069 -exploitative 63077 -exploited 49218 -exploiting 54041 -exploits 52818 -exploration 48067 -explorations 59848 -exploratory 54459 -explore 43492 -explored 49119 -explorer 52107 -explorers 58523 -explores 49184 -exploring 47772 -explosion 49972 -explosions 55500 -explosive 50923 -explosively 62917 -explosives 54835 -expo 56618 -exponent 54360 -exponential 50686 -exponentially 54924 -exponents 56791 -export 45339 -exportation 61152 -exported 51963 -exporter 54664 -exporters 54059 -exporting 52805 -exports 49500 -expose 49411 -exposed 43077 -exposes 53301 -exposing 51752 -exposition 54664 -expositions 63601 -expository 61699 -exposure 41764 -exposures 51974 -exposé 65452 -expound 61818 -expounded 62613 -expr 64905 -express 42110 -expressed 40208 -expresses 51690 -expressindia 62762 -expressing 47471 -expression 38899 -expressionism 62613 -expressionist 65452 -expressions 48278 -expressive 54226 -expressiveness 62331 -expressly 48491 -expressway 59424 -expressways 65452 -expropriation 65170 -expulsion 56972 -expérimentale 58262 -exquisite 52351 -exquisitely 57923 -ext 52913 -extagen 63077 -extant 57122 -exten 64657 -extend 43988 -extendable 61818 -extended 41573 -extender 57440 -extending 45657 -extends 45843 -extensibility 60670 -extensible 58860 -extension 42451 -extensional 61256 -extensions 48543 -extensive 42262 -extensively 48230 -extensor 57696 -extensors 65452 -extent 42323 -extention 62613 -extentions 65170 -extents 61940 -extenuating 63792 -extenze 63601 -exterior 47307 -exteriors 63245 -exterminate 62331 -extermination 61818 -exterminator 64201 -extern 57440 -external 39299 -externalities 60000 -externalizing 62613 -externally 53934 -extinct 57046 -extinction 51620 -extinctions 61472 -extinguish 59101 -extinguished 60670 -extinguisher 57831 -extinguishers 61818 -extinguishing 59702 -extinguishment 65452 -extirpation 64905 -extol 64905 -extolled 64905 -extolling 64423 -extort 63077 -extortion 60670 -extra 40082 -extracapsular 62469 -extracellular 48776 -extracellularly 64423 -extracorporeal 58802 -extract 45114 -extractable 61362 -extractant 63077 -extracted 45723 -extracting 52571 -extraction 45892 -extractions 60405 -extractive 61051 -extractor 54560 -extractors 60580 -extracts 47634 -extracurricular 57084 -extradited 62613 -extradition 58802 -extradural 64423 -extraembryonic 61362 -extrahepatic 60670 -extraintestinal 64905 -extrait 63245 -extrajudicial 65170 -extramarital 62917 -extramedullary 63792 -extramural 63991 -extraneous 58860 -extranet 58688 -extraocular 62469 -extraordinaire 61699 -extraordinarily 55348 -extraordinary 47641 -extrapolate 59702 -extrapolated 57160 -extrapolating 62066 -extrapolation 56356 -extrapolations 64905 -extrapyramidal 61472 -extras 52074 -extrasystoles 61051 -extraterrestrial 60856 -extravagance 63991 -extravagant 57524 -extravaganza 59424 -extravasation 63991 -extravascular 64657 -extrem 63245 -extrema 64905 -extremal 63077 -extreme 44459 -extremely 41617 -extremes 54969 -extremism 59848 -extremist 58577 -extremists 56687 -extremities 56356 -extremity 54560 -extremly 61472 -extricate 64423 -extrication 65170 -extrinsic 55963 -extruded 55060 -extruder 60238 -extruding 61940 -extrusion 53746 -extubation 63991 -exuberance 61699 -exuberant 59560 -exudate 60762 -exudates 62613 -exudation 65170 -exudative 62762 -exude 62917 -exuded 65170 -exudes 60580 -exuding 63419 -ey 59702 -eye 41509 -eye's 63991 -eyeball 61152 -eyeballs 59848 -eyebrow 57696 -eyebrows 56827 -eyecare 64905 -eyed 55348 -eyeglass 61472 -eyeglasses 59424 -eyeing 58523 -eyelash 60670 -eyelashes 61699 -eyelet 61818 -eyelets 63419 -eyelid 58262 -eyelids 59101 -eyeliner 61362 -eyepiece 61152 -eyes 41598 -eyeshadow 61818 -eyesight 58802 -eyesore 64657 -eyewear 56324 -eyewitness 58745 -eyewitnesses 65452 -ez 57831 -ezTrak 62613 -ezdrummer 65452 -ezine 61472 -f 40391 -fA 63991 -fDi 64905 -fEPSPs 64657 -fH 65452 -fIREHOSE 60238 -fMLP 62762 -fMRI 56756 -fStop 58523 -fa 55657 -faassen 64423 -fab 54879 -faba 63077 -fabio 62613 -fable 59292 -fabled 59630 -fables 64201 -fabric 44871 -fabricar 63991 -fabricate 57122 -fabricated 50991 -fabricating 56388 -fabrication 50638 -fabrications 65170 -fabricator 63419 -fabricators 63077 -fabrics 50807 -fabulous 48413 -fabulously 63419 -fac 63245 -facade 55992 -facades 61584 -face 38641 -facebook 47070 -faced 46242 -faceless 63077 -facelift 59101 -faceoff 60580 -facepiece 63601 -faceplate 60856 -faces 44668 -facesitting 59039 -facet 54078 -faceted 59848 -facets 53882 -facial 46821 -facials 57238 -facie 57741 -facies 59491 -facil 65452 -facile 58979 -facilis 63991 -facilisis 64423 -facilitate 45143 -facilitated 51425 -facilitates 50686 -facilitating 50873 -facilitation 54706 -facilitator 55373 -facilitators 58688 -facilitatory 64905 -facilites 65452 -facilities 41491 -facility 42291 -facility's 58979 -facing 44333 -facsimile 56420 -facsimiles 64657 -fact 38145 -facteurs 65452 -faction 57696 -factions 57358 -facto 55684 -factor 39768 -factored 58365 -factorial 58577 -factories 52141 -factoring 58688 -factorization 58017 -factors 39373 -factory 45345 -facts 43595 -factsheet 62196 -factsheets 62917 -factual 51741 -factually 61362 -facturing 65170 -facultative 60952 -faculties 57566 -faculty 44929 -faculty's 65452 -fad 57653 -fade 52496 -faded 53346 -fader 63419 -fades 56021 -fading 52982 -fads 63077 -faecal 56618 -faecalis 60856 -faeces 58162 -faecium 61584 -faery 62762 -fag 58802 -faggot 63245 -fagotto 63991 -fags 63419 -fahrenheit 63792 -fai 64905 -fail 45285 -failed 42180 -failing 47540 -failings 59227 -failover 56618 -fails 46170 -failsafe 64905 -failure 41497 -failures 49359 -faint 52521 -fainted 62762 -fainter 62762 -faintest 64657 -fainting 59292 -faintly 60952 -fair 42482 -faire 55500 -faired 64201 -fairer 59702 -fairest 63077 -fairgrounds 62613 -fairies 59630 -fairing 60580 -fairly 44082 -fairness 53138 -fairs 55423 -fairway 58745 -fairways 61818 -fairy 51349 -fairytale 59227 -fairytales 65452 -fais 64657 -fait 56899 -faite 49382 -faith 44420 -faithful 51202 -faithfully 55877 -faithfulness 63601 -faiths 59101 -fake 47269 -faked 59702 -fakery 65170 -fakes 58919 -faking 60762 -fala 65452 -falafel 64423 -falas 64423 -falc 65452 -falciparum 56170 -falcon 59227 -falcons 62331 -falda 64905 -fall 40123 -fall's 62196 -fallacies 62196 -fallacy 59630 -fallback 60405 -fallen 47939 -fallin 63419 -falling 45444 -fallopian 60856 -fallout 55578 -fallow 59292 -falls 45010 -false 44705 -falsehood 62331 -falsehoods 64657 -falsely 55877 -falsification 63601 -falsified 62613 -falsify 61362 -falsifying 64423 -falsity 63245 -falta 61256 -falter 64905 -faltering 61472 -falters 64657 -fam 58017 -fame 50726 -famed 53565 -famicom 65170 -famiglia 65170 -familar 62762 -familia 59923 -familial 52256 -familiar 43912 -familiarise 61362 -familiarity 54622 -familiarization 64657 -familiarize 57741 -familiarizing 64423 -familias 64423 -families 41327 -famille 62469 -family 35148 -family's 49999 -familys 65170 -famine 57609 -famous 42082 -famously 56262 -famvir 63601 -fan 41712 -fan's 61051 -fanaa 62917 -fanantic 62917 -fanart 64201 -fanatic 58919 -fanatical 60321 -fanaticism 63601 -fanatics 58523 -fanbase 63245 -fanboy 60238 -fanboys 59923 -fancied 60580 -fancier 61940 -fancies 61051 -fanciful 61051 -fanclub 62331 -fancy 49146 -fandom 62196 -fanfare 61584 -fanfic 60856 -fanfiction 59357 -fangs 62762 -fanmail 64905 -fanned 62066 -fannie 61699 -fanning 62613 -fanny 57160 -fanpage 62331 -fanpop 58065 -fans 42017 -fansite 59923 -fantasia 65452 -fantasies 55552 -fantasize 62066 -fantasized 64423 -fantasti 64423 -fantastic 44796 -fantastical 62066 -fantastically 58979 -fantasy 45576 -faq 48882 -faq's 58802 -faqs 57318 -far 37195 -fara 65452 -faraway 60762 -farce 60856 -farcical 65170 -farcry 63792 -fare 49946 -fared 57160 -fares 52778 -farewell 53917 -farewells 64657 -fargo 64201 -faring 63077 -fark 56140 -farm 44127 -farm's 62917 -farmed 58262 -farmer 49365 -farmer's 58212 -farmers 47471 -farmhouse 56388 -farming 48938 -farmland 57358 -farms 49663 -farmstead 64657 -farmworker 61818 -farmworkers 63991 -farmyard 65170 -farrell 65170 -farsighted 64657 -fart 55906 -farther 51931 -farthest 58365 -farting 61362 -farts 59923 -fascia 55348 -fasciatus 65170 -fascicles 65452 -fascicular 63991 -fasciitis 62762 -fascinate 61818 -fascinated 54321 -fascinates 63792 -fascinating 48736 -fascination 55373 -fascism 59424 -fascist 58745 -fascists 63991 -fase 63991 -fashion 42286 -fashionable 52280 -fashionably 64657 -fashioned 52996 -fashioning 62762 -fashionista 62613 -fashions 57122 -fast 39889 -fasta 64905 -fastball 60952 -fasted 59101 -fasten 59164 -fastened 56170 -fastener 55578 -fasteners 55226 -fastening 55738 -fastens 64201 -faster 43059 -fastest 47133 -fastidious 64423 -fasting 53762 -fat 42403 -fata 63601 -fatal 48672 -fatale 64905 -fatalities 55552 -fatality 57524 -fatally 57009 -fatboy 63077 -fate 48902 -fated 64657 -fateful 58688 -fates 62469 -father 42568 -father's 49535 -fathered 61818 -fatherhood 61699 -fatherly 65452 -fathers 50694 -fathom 60670 -fatigue 49626 -fatigued 60856 -fatiguing 65452 -fatness 65452 -fats 54078 -fattening 61472 -fatter 63792 -fattest 64905 -fatto 62196 -fatty 46146 -faucet 56420 -faucets 59039 -faucibus 64905 -fault 46210 -faulted 60238 -faulting 60405 -faultless 62613 -faults 51257 -faulty 52363 -fauna 54685 -faunal 63077 -faunas 65452 -faut 62762 -faux 52954 -fav 52387 -fave 54005 -faves 56899 -favicon 59923 -favor 45809 -favorable 48836 -favorably 55373 -favored 52130 -favoring 56140 -favorit 63991 -favorite 38580 -favorited 59039 -favorites 43681 -favoritesAdd 58632 -favoritism 62066 -favoritos 62613 -favors 52040 -favour 49645 -favourable 53256 -favourably 59424 -favoured 54685 -favouring 60238 -favourite 44911 -favourites 48866 -favours 57084 -favre 64201 -favs 57923 -fawn 60405 -fax 44759 -faxed 56170 -faxes 57696 -faxing 58162 -fay 65452 -faye 65170 -fazed 64423 -fazer 61940 -façade 58065 -façon 63601 -fb 59848 -fbchenderson 63991 -fbf 60238 -fbi 63245 -fbr 65170 -fbx 64201 -fc 57566 -fcarver 63991 -fcastlejdalton 65170 -fcc 59039 -fcuk 65452 -fd 57609 -fda 58802 -fdisk 64423 -fe 56231 -fea 62331 -fear 43302 -feared 52791 -fearful 55348 -fearing 57358 -fearless 57653 -fearlessly 64905 -fearlessmusic 65452 -fearon 65170 -fears 47911 -fearsome 59848 -feasibility 49572 -feasible 49529 -feast 52118 -feasted 65170 -feasting 64657 -feasts 61472 -feat 49939 -feather 55037 -feathered 58919 -feathering 63077 -feathers 54419 -feathery 65452 -feats 58745 -feature 38700 -featured 41940 -featureless 65452 -features 36344 -featurette 63245 -featuring 43082 -feb 57122 -febrero 62196 -febrile 58523 -february 60157 -fecal 54321 -feces 55821 -fecha 60856 -fect 59560 -fected 58113 -fection 63991 -fective 62331 -fects 58262 -fecundity 59560 -fed 45317 -federal 40836 -federalism 61818 -federalist 64657 -federally 54924 -federated 60078 -federation 56652 -federations 63792 -federico 63245 -federline 63601 -fedex 56756 -fedora 60321 -fedoras 63991 -feds 60157 -fee 41838 -feeble 58523 -feed 38272 -feedSubscribe 65170 -feedback 38369 -feedbacks 59923 -feedburner 62066 -feeder 52085 -feeders 57741 -feedforward 60856 -feeding 45739 -feedings 61699 -feedlot 64657 -feedmarker 65170 -feedmelinks 58017 -feeds 40099 -feedstock 56756 -feedstocks 63077 -feedthrough 63077 -feedwater 63245 -feel 36501 -feelin 58688 -feeling 42199 -feelings 46451 -feels 44373 -fees 42629 -feet 40323 -fei 63077 -feidhmchláir 65170 -feign 64423 -feigned 64423 -feigning 65452 -feiss 62613 -feisty 57278 -fejzullahu 64905 -fel 60492 -felch 61940 -felching 64201 -feldspar 63601 -felicia 63991 -felicity 65452 -feline 55963 -felipe 64423 -feliratok 65170 -felis 65452 -felix 63419 -feliz 60856 -fell 44046 -fella 59424 -fellas 60670 -fellate 60762 -fellatio 59774 -felled 62066 -felling 61152 -fellow 44800 -fellows 56618 -fellowship 52187 -fellowships 58632 -felon 60238 -felonies 62066 -felonious 65170 -felons 60157 -felony 52509 -felt 41330 -felted 60238 -felting 65170 -fem 58577 -female 40838 -female's 61818 -females 46415 -femdom 55657 -femelle 65452 -feminine 52597 -femininity 63245 -feminism 57876 -feminist 52648 -feminists 58745 -feminization 58745 -femjoy 65452 -femme 54992 -femmes 60580 -femora 63991 -femoral 50670 -femoris 63991 -femtosecond 55906 -femur 55274 -femurs 64657 -fence 48892 -fenced 56021 -fences 55906 -fencing 53211 -fend 58919 -fender 54540 -fenders 60952 -fendi 63245 -fending 64905 -fenestrated 64905 -fenestration 65170 -fenfluramine 65452 -feng 57741 -fenitrothion 63419 -fennel 58365 -fentanyl 57785 -fenton 64423 -fenugreek 65170 -feo 63991 -feos 60670 -fer 55631 -feral 56293 -ferdinand 65170 -fered 62762 -ference 57009 -ferences 58417 -ferent 54685 -ferential 62613 -fergie 60670 -ferguson 64201 -feria 65452 -fering 64905 -ferment 61256 -fermentation 52423 -fermentations 61818 -fermentative 64905 -fermented 56899 -fermenter 64657 -fermenting 63419 -fermentor 61362 -fermentum 63991 -fermion 58745 -fermionic 62469 -fermions 61152 -fern 58632 -fernandez 64657 -fernando 59560 -ferns 61818 -ferocious 59164 -ferociously 64905 -ferocity 64201 -ferrari 57318 -ferred 58313 -ferredoxin 64423 -ferrell 64657 -ferret 57653 -ferrets 61051 -ferric 55274 -ferries 59560 -ferrihydrite 61051 -ferrimagnetic 65452 -ferrite 57831 -ferrites 61256 -ferritin 58065 -ferro 64423 -ferroelastic 65170 -ferroelectric 56485 -ferromagnetic 55552 -ferromagnetism 62762 -ferrous 55877 -ferrule 56293 -ferrules 65170 -ferry 51783 -fers 63991 -fertile 53124 -fertilisation 61818 -fertilised 61699 -fertiliser 59630 -fertilisers 60078 -fertility 50553 -fertilization 53970 -fertilize 62613 -fertilized 56972 -fertilizer 52609 -fertilizers 57084 -fertilizing 61940 -fervent 60856 -fervently 62331 -fervor 61472 -fescue 63077 -fess 65452 -fessional 63991 -fessor 63991 -fest 55130 -festa 65170 -festering 65452 -festival 45785 -festival's 62469 -festivals 50832 -festive 53712 -festivities 56356 -festivus 65170 -feta 60238 -fetal 47314 -fetch 52584 -fetched 59357 -fetches 61152 -fetching 57831 -fete 61584 -feted 63792 -fetid 64423 -fetish 50108 -fetishes 61152 -fetter 64905 -fetus 53630 -fetuses 57970 -feu 63792 -feud 58212 -feudal 58365 -feudalism 64423 -feuding 62066 -feuds 63792 -feugiat 63601 -fev 63077 -fever 49308 -feverish 64905 -feverishly 63991 -fevers 64905 -few 33525 -fewer 40939 -fewest 59774 -fexofenadine 63601 -fey 61818 -fez 64423 -ff 55934 -ffdshow 62762 -ffenestr 64657 -fff 64657 -ffi 60670 -ffm 63601 -ffmpeg 62196 -ffmpegX 65170 -ffs 64905 -ffxi 64905 -fg 60762 -fglrx 64657 -fh 63792 -fhe 62917 -fhm 64423 -fi 50234 -fiance 58113 -fiance's 63991 -fiancee 60157 -fiancé 61699 -fiancée 60238 -fiasco 58979 -fiat 58212 -fiber 44596 -fiberboard 65452 -fiberglass 54399 -fiberoptic 63792 -fibers 46827 -fibre 49135 -fibreglass 63245 -fibres 51248 -fibriform 61152 -fibril 60238 -fibrillar 61256 -fibrillary 62762 -fibrillation 52818 -fibrils 57046 -fibrin 57482 -fibrinogen 55552 -fibrinolysis 63601 -fibrinolytic 61699 -fibroblast 53407 -fibroblastic 64905 -fibroblasts 52141 -fibroid 64657 -fibroids 61472 -fibromuscular 64657 -fibromyalgia 58262 -fibronectin 55299 -fibrosarcoma 62917 -fibrosis 52107 -fibrotic 60580 -fibrous 52051 -fic 59923 -fication 59101 -fice 64657 -fiche 63601 -fichier 64423 -fichiers 64657 -ficial 63991 -ficiency 64905 -ficient 61256 -ficients 65452 -fick 65452 -fickle 61940 -fico 64657 -fics 65452 -fiction 46742 -fictional 52778 -fictionalized 65170 -fictions 62917 -fictitious 56652 -fictive 63419 -ficult 64657 -fiddle 56231 -fiddled 64423 -fiddling 60856 -fiddly 64201 -fide 56324 -fidelity 54664 -fidence 65452 -fideo 57970 -fiduciary 54924 -fie 61699 -fied 55423 -field 36844 -field's 63077 -fielded 59039 -fielder 59630 -fielding 57609 -fields 40924 -fieldwork 57160 -fiend 61472 -fiendish 63601 -fiends 64657 -fier 64201 -fierce 53485 -fiercely 57696 -fiercest 63419 -fiery 54792 -fies 65170 -fiesta 58065 -fiestas 65452 -fifa 52872 -fife 64657 -fifi 64423 -fifteen 49476 -fifteenth 58065 -fifth 46037 -fifthgearuk 62762 -fifths 65452 -fifties 61940 -fiftieth 65452 -fifty 49886 -fig 55766 -fight 41625 -fightback 64423 -fighter 50129 -fighters 51017 -fightin 65170 -fighting 44597 -fights 50150 -figs 59101 -figuration 64905 -figurative 58065 -figuratively 63991 -figure 40908 -figured 47787 -figures 42926 -figurine 59491 -figurines 57741 -figuring 54360 -fiir 61256 -fiizzy 62066 -fiji 62613 -fil 58745 -fila 63792 -filament 53211 -filamentary 63419 -filamentous 58745 -filaments 53549 -filariasis 62613 -file 34232 -file's 60238 -fileA 64423 -filed 41642 -filemaker 65452 -filename 52509 -filenames 60762 -filer 65452 -filers 61256 -files 37403 -filesharing 64657 -filesize 61818 -filesystem 56420 -filesystems 65452 -filet 59923 -filets 65452 -filial 62613 -filibuster 63991 -filigree 62917 -filing 46423 -filings 52459 -filipina 61362 -filipino 59039 -fill 41575 -fillDataGrid 63991 -fille 60762 -filled 42359 -filler 52351 -fillers 58802 -filles 63991 -fillet 58523 -fillets 59774 -filliatr 65452 -fillies 63991 -filling 45853 -fillings 58113 -fills 51303 -filly 58979 -film 38217 -film's 53679 -filma 60078 -filmannex 63419 -filme 59227 -filmed 51492 -filmi 59702 -filmic 64905 -filmime 62066 -filming 50856 -filmmaker 54341 -filmmakers 54770 -filmmaking 58745 -filmography 56827 -films 42531 -filmu 62917 -filmy 61699 -filo 64201 -filopodia 65452 -fils 63245 -filter 39492 -filtered 48861 -filtering 48633 -filters 41204 -filth 60580 -filthy 56262 -filtrate 54857 -filtrates 58212 -filtration 49535 -fim 64423 -fimo 64905 -fin 52484 -final 37614 -finale 53038 -finalisation 64201 -finalise 60238 -finalised 59560 -finalising 62613 -finalist 55711 -finalists 54360 -finality 64657 -finalization 63419 -finalize 57785 -finalized 55766 -finalizes 64905 -finalizing 59774 -finally 41015 -finals 52303 -finaly 63245 -finance 43634 -financed 52175 -finances 51867 -financial 37016 -financially 50873 -financials 57160 -financier 61256 -financiers 60670 -financing 45956 -finasteride 59491 -fincas 65452 -finch 63077 -finches 63077 -find 31831 -findGroupInDomain 63601 -findServerInDomain 63601 -findUserInDomain 63601 -finda 56551 -finde 63601 -finden 61051 -finder 48571 -finders 62613 -finding 40859 -findings 42119 -finds 43962 -fine 40034 -fined 52435 -finely 51600 -fineness 63792 -finer 54114 -finereader 65452 -fines 51087 -finesse 59164 -finest 46506 -fing 63601 -finger 46449 -fingerboard 60952 -fingered 61051 -fingering 56140 -fingernail 61472 -fingernails 60405 -fingerprint 51985 -fingerprinting 59424 -fingerprints 55226 -fingers 47787 -fingerstyle 63601 -fingertip 60078 -fingertips 58065 -finial 63245 -finicky 64201 -fining 63419 -finish 43095 -finished 42490 -finisher 57566 -finishers 59923 -finishes 50206 -finishing 47741 -finite 45697 -finitely 56170 -finiteness 64423 -fink 59491 -finland 61699 -finnish 59424 -finns 63991 -fino 64423 -fins 53796 -fio 65452 -fiom 63419 -fiona 65170 -fioricet 51931 -fips 63245 -fir 56170 -fire 40257 -firearm 55398 -firearms 53501 -fireball 60856 -firebender 64657 -firebird 60762 -firebox 63419 -firecracker 64201 -firecrackers 65170 -fired 47760 -firedog 65452 -firefight 64905 -firefighter 57440 -firefighters 53153 -firefighting 58745 -fireflies 61818 -firefly 58919 -firefox 53182 -firehouse 64657 -firelogs 64905 -fireman 60405 -firemen 59702 -fireplace 51069 -fireplaces 57318 -firepower 61152 -fireproof 63601 -fires 49291 -fireside 65452 -firestorm 61699 -firetruck 65452 -firewall 49626 -firewalls 57831 -firewire 57482 -firewood 59164 -firework 61699 -fireworks 52141 -firing 48658 -firings 61472 -firm 41465 -firm's 49547 -firma 63077 -firmed 59491 -firmer 60157 -firming 63077 -firmly 48866 -firmness 59039 -firms 43336 -firmware 48427 -firmwares 60321 -firs 62917 -first 29191 -firstFirst 63991 -firstborn 64905 -firsthand 57696 -firstly 55250 -firsts 62762 -fiscal 45490 -fiscally 61472 -fischer 64657 -fish 41838 -fish's 64201 -fishbowl 64657 -fished 58313 -fisher 57399 -fisheries 53241 -fisherman 57876 -fishermen 54749 -fishers 58919 -fishery 54540 -fishes 56050 -fisheye 64423 -fishing 44097 -fishnet 61051 -fishnets 64657 -fishy 58919 -fissile 64905 -fission 54041 -fissioning 63419 -fissure 58262 -fissures 60492 -fist 53024 -fisted 65452 -fisting 54706 -fists 58417 -fistula 54399 -fistulae 61818 -fistulas 61256 -fit 40325 -fitMix 61940 -fitMixer 65170 -fitment 60580 -fitness 44574 -fitnessvip 61699 -fitout 65452 -fits 45673 -fitted 45758 -fitter 59774 -fitters 62469 -fittest 62613 -fitting 46790 -fittings 52982 -five 37131 -fivefold 60157 -fiver 64201 -fives 64905 -fix 42766 -fixated 61152 -fixation 51340 -fixative 60856 -fixe 65452 -fixed 40642 -fixedly 60321 -fixer 60157 -fixes 49394 -fixing 48938 -fixings 58577 -fixture 51899 -fixtures 51482 -fixup 62917 -fizz 63077 -fizzle 65170 -fizzy 62331 -fjords 63077 -fk 62917 -fl 51113 -flO 64423 -fla 62613 -flabby 64905 -flac 61699 -flaccid 58262 -flack 64201 -flag 40243 -flagella 59292 -flagellar 58745 -flagellin 60762 -flagellins 62469 -flagellum 65452 -flagged 53813 -flagging 56721 -flagpole 62196 -flagrant 62613 -flags 50129 -flagship 52584 -flagyl 63077 -flail 63419 -flailing 61940 -flair 54706 -flak 62917 -flake 59491 -flaked 63792 -flakes 55423 -flaking 61584 -flaky 59848 -flamboyant 59848 -flame 48501 -flamed 60952 -flameless 63991 -flamenco 61818 -flamers 65170 -flames 53392 -flamethrower 65452 -flaming 56791 -flamingo 63077 -flammability 59424 -flammable 55631 -flammatory 64905 -flan 64657 -flange 53138 -flanged 61940 -flanges 57440 -flank 56140 -flanked 55906 -flanker 63792 -flanking 55474 -flanks 61472 -flannel 59357 -flap 51453 -flapper 63991 -flapping 60762 -flaps 56021 -flare 53613 -flared 57831 -flares 57278 -flaring 59491 -flash 42895 -flashback 59630 -flashbacks 59292 -flashcard 65170 -flashcards 60670 -flashed 56420 -flasher 58745 -flashers 64905 -flashes 52509 -flashing 51017 -flashlight 56262 -flashlights 60952 -flashplayer 62917 -flashy 57399 -flask 54499 -flasks 55323 -flat 42447 -flatbed 57696 -flathead 65170 -flatlanderjournal 65452 -flatly 62196 -flatness 62196 -flats 51043 -flatshare 63991 -flatten 58577 -flattened 55398 -flattening 59164 -flattens 62917 -flatter 58262 -flattered 60078 -flattering 57318 -flatts 63991 -flatulence 63419 -flatware 60670 -flatwoods 64905 -flatworm 65452 -flatworms 64423 -flaunt 60856 -flaunts 63245 -flava 62469 -flavin 64423 -flavins 65452 -flavipes 60492 -flavonoid 60762 -flavonoids 59630 -flavor 48515 -flavored 54601 -flavorful 58745 -flavoring 59702 -flavors 51814 -flavour 53286 -flavoured 58860 -flavours 56050 -flavum 65452 -flavus 65170 -flaw 53470 -flawed 53779 -flawless 55178 -flawlessly 61362 -flaws 52765 -flax 58577 -flaxseed 62331 -flayed 64905 -flea 54770 -fleas 60670 -flecks 64905 -fled 53346 -fledged 60157 -fledging 63792 -fledgling 57482 -flee 54643 -fleece 53988 -fleeing 55657 -flees 60238 -fleet 49262 -fleeting 57009 -fleets 58365 -fleetwood 65452 -flere 61362 -flesh 51531 -fleshed 62469 -fleshlight 64201 -fleshy 59292 -fletcher 64905 -fleur 65452 -fleurville 64201 -flew 50454 -flex 51856 -flexed 60952 -flexeril 57609 -flexes 62331 -flexi 63792 -flexibility 45954 -flexible 43970 -flexibly 60078 -flexing 58745 -flexion 55711 -flexneri 61818 -flexographic 63077 -flexor 58688 -flexors 64657 -flexural 58162 -flexure 59491 -flick 54170 -flicked 63245 -flicker 57482 -flickered 64657 -flickering 58688 -flickers 64905 -flicking 61940 -flickr 52635 -flicks 57785 -flied 62613 -fliegen 64657 -flier 50157 -fliers 59848 -flies 49992 -flight 42776 -flighting 65452 -flights 45974 -flimsy 60238 -flinch 62066 -fling 59357 -flinging 63419 -flint 59039 -flip 49179 -flipped 55398 -flipper 63792 -flippers 63792 -flippin 64657 -flipping 55250 -flips 57278 -flirt 58632 -flirtation 65170 -flirtatious 63792 -flirting 57609 -flirts 61472 -flirty 59774 -flit 63419 -fll 64657 -flo 61699 -float 48949 -floatation 64201 -floated 56262 -floater 65170 -floating 47028 -floats 55500 -floc 65170 -flocculation 57876 -flock 53501 -flocked 60321 -flocking 62196 -flocks 57876 -flocs 64905 -flog 61940 -flogged 61940 -flogging 62762 -flomax 56388 -flonan 62762 -flonase 62917 -flooble 63077 -flood 44423 -flooded 52982 -floodgates 63245 -flooding 51349 -floodplain 58113 -floods 52765 -floodwaters 64905 -floor 41344 -floorboards 62762 -floored 62469 -flooring 50108 -floorplan 62066 -floorplans 60580 -floors 49060 -floorspace 63991 -flop 55226 -flopped 64423 -floppies 65452 -flopping 64201 -floppy 53565 -flops 58017 -flor 61472 -flora 52686 -floral 49873 -florals 64201 -florence 62469 -flores 63601 -florets 63077 -florian 64201 -florid 63601 -florida 50469 -floridanum 65170 -florist 54946 -floristic 64423 -floristry 64657 -florists 53423 -floss 59039 -flotation 57831 -flotilla 62196 -flounder 60580 -floundering 64423 -flour 48576 -floured 62331 -flourescent 64905 -flourish 57524 -flourished 57524 -flourishes 62066 -flourishing 58017 -flours 62917 -flow 38811 -flowable 60157 -flowchart 57524 -flowed 57009 -flower 46699 -flowered 61362 -flowering 52765 -flowers 45170 -flowery 62331 -flowing 48831 -flowmeter 63077 -flown 52712 -flowrate 60580 -flows 46569 -floxed 65170 -floyd 58162 -flstudio 64657 -flu 49707 -fluconazole 59774 -fluctuate 57046 -fluctuated 61152 -fluctuates 62066 -fluctuating 57009 -fluctuation 54226 -fluctuations 49802 -flue 57358 -flueless 64905 -fluence 56485 -fluences 61152 -fluency 56935 -fluent 53679 -fluently 61472 -fluff 59560 -fluffer 61152 -fluffers 65452 -fluffy 55060 -fluid 43023 -fluidic 64201 -fluidity 57876 -fluidized 59774 -fluidly 61699 -fluids 50242 -fluke 60856 -flumequine 65452 -flunarizine 63245 -flung 59164 -flunisolide 61051 -flunk 63601 -fluorescein 56687 -fluorescence 46751 -fluorescens 64201 -fluorescent 48751 -fluorescently 63077 -fluoridated 61699 -fluoridation 64423 -fluoride 52673 -fluorides 64657 -fluorinated 60078 -fluorine 56972 -fluorite 60856 -fluorocarbon 63792 -fluorochrome 63991 -fluorochromes 64423 -fluorogenic 63077 -fluorometric 63077 -fluorophore 63419 -fluorophores 61940 -fluoroplastic 63601 -fluoroquinolone 65170 -fluoroscopic 62762 -fluoroscopy 60321 -fluorouracil 61472 -fluoxetine 55552 -flurry 56899 -flush 49926 -flushed 55373 -flushes 58860 -flushing 54902 -flute 54749 -fluted 61472 -flutes 62331 -fluticasone 62196 -flutter 58313 -fluttering 61584 -flutters 65452 -fluvastatin 64657 -fluvial 60580 -fluvoxamine 65170 -flux 47204 -fluxes 53581 -flv 57566 -fly 44370 -flyback 64201 -flybar 65170 -flycatcher 64905 -flyer 52968 -flyers 55738 -flying 45380 -flyingspaghettimama 64905 -flyoutText 54170 -flyover 62331 -flys 62762 -flytning 60580 -flywheel 59630 -flywheels 65170 -fm 53470 -fmGenie 57358 -fmol 65452 -fms 64423 -fmt 60952 -fn 57696 -fo 52152 -foal 59292 -foals 61940 -foam 47518 -foamed 61818 -foaming 58470 -foams 60238 -foamy 64423 -foarte 64657 -fob 60238 -focaccia 63991 -focal 47919 -foci 55578 -focus 39115 -focused 42804 -focuses 45620 -focusing 45914 -focussed 54519 -focusses 63601 -focussing 58632 -fod 64657 -fodder 57923 -fodiens 65452 -foe 56756 -foes 56652 -foetal 57399 -foetus 60952 -foetuses 65452 -fog 52509 -fogarty 63245 -fogging 63991 -foggy 60078 -foi 58212 -foibles 64905 -foie 59702 -foil 50164 -foiled 58979 -foils 56972 -fois 60952 -fol 62762 -folate 55037 -fold 48643 -foldable 59774 -folded 50949 -folder 44894 -folders 48892 -folding 49572 -folds 52818 -foley 61152 -foliaceus 62613 -foliage 52661 -foliar 59227 -foliation 60492 -foliations 65170 -folic 54170 -folio 61256 -folk 47748 -folkd 60952 -folklore 56420 -folks 45634 -folksonomies 64657 -folksy 64657 -folktale 63419 -folky 65170 -follicle 56080 -follicles 55793 -follicular 54207 -follies 63991 -follistatin 62331 -follow 39489 -followed 39847 -follower 57440 -followers 51996 -following 33178 -followings 63991 -follows 43674 -followup 50966 -folly 59560 -fom 65452 -fon 62613 -fonction 64905 -fond 52268 -fondant 65452 -fondle 61152 -fondled 62917 -fondling 64657 -fondly 58860 -fondness 59491 -fondo 62613 -fonds 63245 -fondue 61699 -fone 59702 -font 44793 -fonts 45501 -foo 59357 -foobar 65170 -food 36318 -food's 65452 -foodborne 59848 -foodie 60670 -foodies 59774 -foods 45031 -foodservice 60238 -foodstuff 62762 -foodstuffs 58365 -fool 50328 -fool's 64423 -fooled 56324 -fooler 63792 -fooling 58745 -foolish 54321 -foolishly 61584 -foolishness 62469 -foolproof 61051 -fools 54992 -foosball 62196 -foot 42497 -footage 47919 -football 41552 -football's 58313 -footballer 57741 -footballers 59292 -footballing 64423 -footballs 63601 -footbed 59923 -footboard 65452 -footbridge 62196 -footed 63601 -footer 51148 -footers 65452 -foothill 64201 -foothills 57609 -foothold 58979 -footie 64423 -footing 56585 -footings 63601 -footjob 58365 -footjobs 62196 -footloose 64423 -footnote 55084 -footnotes 58365 -footpath 58417 -footpaths 62331 -footprint 51942 -footprinting 61472 -footprints 55711 -footsteps 55992 -footway 65170 -footwear 53301 -footwork 58979 -footy 59039 -for 18670 -fora 60157 -forage 55578 -forages 61818 -foraging 57399 -forall 62762 -foram 64905 -foramen 58065 -foraminifera 65170 -foraminiferal 64905 -foray 56756 -forays 60762 -forbade 62469 -forbearance 63419 -forbes 65170 -forbid 56452 -forbidden 51963 -forbidding 60000 -forbids 58745 -forcast 65452 -force 39196 -force's 64201 -forced 43311 -forceful 57566 -forcefully 58632 -forceps 61051 -forces 42666 -forcible 62917 -forcibly 58065 -forcing 49119 -ford 51211 -fordmodels 58417 -fore 53024 -foreach 56756 -forearm 54792 -forearms 60321 -foreboding 64905 -forebrain 59292 -forecast 46068 -forecasted 59630 -forecaster 62469 -forecasters 60762 -forecasting 52584 -forecasts 50060 -foreclose 60157 -foreclosed 56652 -foreclosing 63601 -foreclosure 49620 -foreclosures 52221 -forecourt 65170 -forefathers 59560 -forefoot 62331 -forefront 52752 -forego 59702 -foregoing 51095 -foregoingtobe 64423 -foregone 61472 -foreground 54360 -foregut 64905 -forehand 62762 -forehead 55084 -foreign 40651 -foreigner 60157 -foreigners 52597 -foreknowledge 65170 -foreleg 63077 -forelimb 63991 -foreman 59039 -foremost 52858 -forensic 52791 -forensics 59560 -foreplay 57876 -forerunner 59357 -foresaw 63601 -foresee 58262 -foreseeable 55526 -foreseen 57566 -foresees 62331 -foreshadowed 63419 -foreshadowing 63245 -foreshore 61472 -foresight 58979 -foreskin 57122 -forest 44535 -forestall 61256 -forested 57199 -forester 63245 -forestry 52725 -forests 49893 -foretell 65170 -forethought 65452 -foretold 64423 -forever 46937 -forewarned 64423 -foreword 58470 -forex 52029 -forfeit 56687 -forfeited 57696 -forfeits 63419 -forfeiture 57696 -forfour 65452 -forgave 61256 -forge 54078 -forged 52699 -forgery 61940 -forges 63419 -forget 43132 -forgetful 63991 -forgets 57970 -forgettable 62762 -forgetting 54601 -forging 56388 -forgivable 64905 -forgive 51793 -forgiven 56618 -forgiveness 54835 -forgives 62331 -forgiving 57046 -forgo 60157 -forgoing 62196 -forgone 62196 -forgot 45213 -forgotten 44358 -forint 63601 -fork 51377 -forkbolt 62066 -forked 58860 -forking 63077 -forklift 56935 -forklifts 65170 -forks 56140 -forlorn 63792 -form 34274 -forma 56050 -formal 43534 -formaldehyde 52074 -formalin 57160 -formalise 63419 -formalised 64657 -formalism 55474 -formalities 59848 -formality 60238 -formalization 62613 -formalize 61699 -formalized 58979 -formally 49458 -formamide 63077 -formance 58262 -format 40893 -formate 55448 -formated 64905 -formating 63991 -formation 41282 -formations 54380 -formative 57785 -formato 61362 -formats 43676 -formatted 52435 -formatting 50199 -forme 61699 -formed 40785 -former 39376 -formerly 48292 -formers 63077 -formic 57609 -formidable 54419 -forming 44942 -forms 40033 -formula 43590 -formulae 54059 -formulaic 61699 -formulary 60762 -formulas 50774 -formulate 52411 -formulated 49578 -formulates 62613 -formulating 55299 -formulation 47943 -formulations 51996 -formyl 64201 -fornicate 60000 -fornication 59774 -fornix 60492 -foro 59292 -foros 56687 -forsake 63601 -forsaken 60952 -forskolin 63419 -fort 52175 -forte 60856 -forth 44373 -forthcoming 50710 -forthe 61940 -forthright 62613 -forthwith 60952 -forties 62331 -fortification 63245 -fortifications 63077 -fortified 55130 -fortify 62917 -fortis 64201 -fortitude 62066 -fortnight 58632 -fortnightly 60157 -fortran 52375 -fortress 51541 -fortressed 65452 -fortron 58979 -forts 58212 -fortuitous 63077 -fortum 64423 -fortuna 61818 -fortunate 50840 -fortunately 57653 -fortune 50584 -fortunes 55107 -fortwo 64423 -forty 51284 -forum 37100 -forum's 62917 -forumfree 63419 -forums 39720 -forward 39616 -forwarded 50686 -forwarder 64423 -forwarding 51211 -forwardly 61699 -forwards 54439 -forza 64657 -fosamax 60000 -fossa 58979 -fossil 50476 -fossilized 63077 -fossils 54835 -fost 62469 -foster 47346 -fostered 56972 -fostering 54813 -fosters 56080 -fot 60762 -foto 50966 -fotografi 64201 -fotografia 64423 -fotolia 60580 -fotos 54643 -fotostock 59560 -fou 63601 -fought 48590 -foul 51570 -fouled 60492 -fouling 58113 -fouls 63077 -found 32370 -foundation 45137 -foundation's 62196 -foundational 58212 -foundations 51166 -founded 45569 -founder 47445 -founder's 63601 -founders 53630 -founding 49893 -foundry 56356 -fountain 53630 -fountains 57566 -four 35877 -fourfold 59292 -fourier 62613 -fours 61256 -foursome 58113 -foursomes 65170 -fourteen 52940 -fourteenKnuckels 63792 -fourteenth 59227 -fourth 43414 -fourths 63601 -foveal 64201 -foward 60670 -fowl 59101 -fowler 64201 -fox 51920 -foxes 60670 -foxpro 63601 -foxy 63245 -foyer 59560 -fp 59227 -fps 54813 -fq 65170 -fr 49511 -fra 53454 -fracas 65170 -fractal 55793 -fraction 44231 -fractional 51690 -fractionated 56827 -fractionation 56551 -fractions 47827 -fractious 65170 -fracture 48643 -fractured 54560 -fractures 50983 -fracturing 60405 -frag 61256 -fraggle 65170 -fragile 52597 -fragilis 65170 -fragility 58262 -fragman 64201 -fragment 46460 -fragmentary 59357 -fragmentation 52534 -fragmented 54946 -fragmenting 64905 -fragments 47478 -fragrance 52778 -fragrances 55849 -fragrant 57831 -fraiche 64423 -frail 57785 -frailty 64657 -frais 62917 -fram 63601 -frame 41966 -framed 50522 -frameless 65452 -framerate 61472 -framers 62762 -frames 46616 -frameshift 60762 -frameshifting 65452 -framework 43129 -frameworks 53024 -framing 52130 -fran 63991 -franc 62066 -franca 64423 -francais 54601 -francaise 65170 -france 52818 -frances 65170 -francesca 65170 -franchise 48341 -franchise's 64657 -franchised 60405 -franchisee 61362 -franchisees 58262 -franchises 54706 -franchising 58313 -franchisor 63792 -francis 59357 -francisco 54902 -franco 62469 -francophone 58262 -francs 61940 -franglo 64423 -frank 53167 -frankarr 62196 -frankfurt 63991 -frankie 62196 -franklin 54560 -frankly 54727 -franpal 64657 -frantic 56827 -frantically 60952 -franz 63991 -französisch 63245 -français 47304 -française 55500 -fraps 63601 -fraser 63077 -frat 59424 -frataxin 64905 -fraternal 60952 -fraternities 63419 -fraternity 56080 -fraud 45875 -frauds 61051 -fraudsters 62469 -fraudulent 52018 -fraudulently 61362 -frauen 62917 -fraught 57970 -fray 58979 -frayed 61584 -fraying 63792 -frazzled 63991 -fre 60952 -freak 51303 -freaked 58017 -freakin 57696 -freaking 53423 -freakish 64201 -freakishly 64657 -freaks 56356 -freaky 55877 -freckle 63991 -freckles 61584 -frecklescorp 60856 -fred 56862 -freddie 63601 -freddy 64423 -frederick 58688 -fredrick 64657 -free 29898 -freeads 63601 -freebie 59491 -freebies 57785 -freed 53377 -freedom 44452 -freedoms 56551 -freedownload 62613 -freefall 63792 -freefatpussypics 60856 -freeform 62917 -freehand 63792 -freehold 58417 -freeing 56293 -freelance 50270 -freelancer 60238 -freelancers 61362 -freelancing 62917 -freely 47859 -freeman 58262 -freeones 63419 -freephone 65170 -freepresspics 64423 -freer 60952 -freeride 62613 -frees 57970 -freestanding 58113 -freestyle 54096 -freethetrees 64657 -freetype 64423 -freeview 63419 -freeware 50932 -freeway 55274 -freeways 61256 -freewheeling 61584 -freeze 49899 -freezer 52062 -freezers 59923 -freezes 54749 -freezing 50726 -frei 61818 -freight 49893 -freighter 62066 -freind 65170 -freinds 61818 -fremontca 65452 -fremvisninger 63419 -fren 63077 -french 47374 -frends 63991 -frenetic 61362 -frente 62762 -frenzied 60321 -frenzy 56021 -freon 64423 -freq 62762 -frequencies 46643 -frequency 40195 -frequent 44004 -frequentation 65452 -frequented 59101 -frequenting 65170 -frequently 43129 -fresco 59702 -frescoes 64905 -fresh 41116 -freshen 64201 -fresher 59357 -freshers 63419 -freshest 54439 -freshly 50537 -freshman 51358 -freshmeat 60321 -freshmen 55348 -freshness 57524 -freshwater 52363 -fresno 64657 -fret 55963 -fretboard 61940 -frets 60952 -fretted 64201 -fretting 61940 -fri 60078 -friars 65452 -frickin 62762 -friction 49108 -frictional 58417 -frictions 61818 -friday 51630 -fridays 64657 -fridge 52291 -fridges 62762 -fridginators 63991 -fried 49999 -friend 35436 -friend's 49500 -friendlier 60952 -friendlies 64905 -friendliest 61940 -friendliness 59491 -friendly 41311 -friends 36476 -friendship 49482 -friendships 55684 -friendster 56420 -fries 53934 -frieze 65452 -frigate 62469 -friggin 60238 -frigging 64905 -fright 59039 -frighten 60670 -frightened 55226 -frightening 55226 -frighteningly 63245 -frightens 62762 -frightful 63077 -frigid 61818 -frigidaire 59227 -frills 61584 -frilly 64423 -fringe 51953 -fringed 61472 -fringes 57653 -fringing 61699 -frisbee 64201 -frisky 62762 -frist 61472 -fritters 62917 -frivolous 58577 -frm 57524 -fro 56021 -frock 63792 -frocks 64423 -frodmyster 64657 -frog 51660 -frogs 56324 -froin 63792 -frolic 64201 -frolicking 63601 -from 22967 -fromElem 61818 -fromthe 61362 -fron 61699 -frond 61256 -fronds 59227 -front 37620 -frontage 55604 -frontal 51473 -fronted 59357 -frontend 56200 -frontier 53316 -frontiers 57609 -fronting 59630 -frontline 58417 -frontman 57609 -frontpage 54264 -fronts 55398 -frost 53167 -frostbite 62917 -frosted 58162 -frosting 57358 -frosty 59702 -froth 63601 -frothy 62917 -frottage 59491 -frotteurism 59923 -frotteurist 59424 -frotteurists 62917 -frown 60000 -frowned 60405 -frowning 64905 -frowns 63419 -froze 57923 -frozen 46053 -fructose 57358 -frugal 58113 -fruit 44102 -fruitcake 65452 -fruitful 55373 -fruiting 57653 -fruition 61362 -fruitless 62762 -fruits 48186 -fruity 55766 -frum 64657 -frustrate 60078 -frustrated 51166 -frustrates 64201 -frustrating 51521 -frustration 51772 -frustrations 56652 -fry 53485 -frye 60078 -fryer 63792 -frying 55226 -frågor 60492 -från 59039 -fs 54992 -fsb 61584 -fsbo 60000 -ft 44267 -ftir 64657 -ftp 53470 -ftv 62331 -ftw 62196 -fu 53517 -fuchsia 64201 -fuck 44437 -fucked 47304 -fucken 61818 -fucker 58365 -fuckers 59292 -fuckin 53211 -fucking 44390 -fucks 52459 -fudge 55448 -fudgepacker 63792 -fue 56231 -fuego 62066 -fuel 41105 -fueled 54643 -fueling 56324 -fuelled 58262 -fuelling 60856 -fuels 50242 -fuelwood 61051 -fuentes 64657 -fuer 59039 -fuera 63419 -fueron 62331 -fuerte 63419 -fuerza 62066 -fufonk 59923 -fugacity 62066 -fugitive 58313 -fugitives 63991 -fugu 65452 -fui 64657 -fuji 59491 -fujitsu 64423 -fuk 58365 -fukin 59560 -fuking 64423 -ful 56356 -fulcrum 61152 -fulfil 54078 -fulfill 48856 -fulfilled 52597 -fulfilling 51942 -fulfillment 53138 -fulfills 56791 -fulfilment 59164 -fulfils 61051 -fulgerator 63991 -full 33331 -fullback 62066 -fuller 55684 -fullerene 59702 -fullerenes 60492 -fullest 54601 -fullname 57524 -fullness 57785 -fullscreen 57084 -fullsize 58365 -fulltext 59039 -fulltime 59630 -fullversion 65452 -fully 39487 -fulminant 63077 -fulness 64657 -fulton 64657 -fumarase 62613 -fumarate 61818 -fumble 58919 -fumbled 62762 -fumbles 63245 -fumbling 63077 -fume 54519 -fumed 64657 -fumes 54622 -fumigation 65170 -fumigatus 61152 -fuming 62469 -fun 38971 -func 65452 -function 36451 -function's 63419 -functional 41920 -functionalist 65452 -functionalities 57440 -functionality 45615 -functionalized 58470 -functionally 52496 -functionals 60078 -functionaries 64201 -functioned 58313 -functioning 48063 -functions 40430 -functor 59491 -functors 61472 -fund 42920 -fund's 59101 -fundamental 44507 -fundamentalism 62613 -fundamentalist 58688 -fundamentalists 61584 -fundamentally 52752 -fundamentals 53066 -funded 45792 -funder 65170 -funders 60952 -funding 41900 -fundoplication 61152 -fundraiser 53779 -fundraisers 55906 -fundraising 49435 -funds 41384 -fundus 60157 -funeral 48975 -funerals 58313 -funerary 65452 -fungal 51008 -fungi 52571 -fungicidal 63991 -fungicide 61256 -fungicides 64423 -fungoides 64201 -fungus 52351 -funhouse 61818 -funicular 65452 -funk 53533 -funky 51620 -funnel 53882 -funneled 63792 -funnels 64201 -funnier 57970 -funnies 62066 -funniest 52648 -funny 42483 -funnyz 64201 -funtion 63601 -fuori 63991 -fur 49764 -furafylline 64423 -furan 61699 -furfural 64905 -furious 54727 -furiously 61256 -furl 52164 -furnace 50750 -furnaces 57696 -furnish 53081 -furnished 48928 -furnishes 59923 -furnishing 55684 -furnishings 53762 -furnissii 60670 -furniture 44187 -furor 62469 -furore 65452 -furosemide 61940 -furrow 64201 -furrows 65452 -furry 55552 -furs 65170 -furtado 62613 -further 35695 -furtherance 58523 -furthered 64423 -furthering 58523 -furthermore 56721 -furthers 61152 -furthest 60580 -fury 54879 -fusca 62469 -fuschia 65452 -fuse 52051 -fusebox 65452 -fused 50966 -fuselage 58365 -fuser 62196 -fuses 57970 -fusible 65452 -fusiforme 65452 -fusing 58162 -fusion 46555 -fusions 59560 -fuss 56899 -fussed 63601 -fussy 59227 -fut 64905 -futbol 60580 -futboll 64905 -futher 62613 -futile 57440 -futility 60580 -futon 58860 -futons 65452 -futsal 62331 -futur 65170 -futurama 63792 -future 37382 -future's 65452 -futures 51043 -futurist 63991 -futuristic 56324 -futuro 62762 -fuzz 60670 -fuzzy 48716 -fv 58577 -fw 63419 -fwd 63245 -fx 54170 -fxg 55849 -fxn 64423 -fy 59630 -fyb 64201 -fying 62469 -fz 65170 -få 63601 -får 63991 -för 54133 -für 46471 -fürs 61152 -g 39361 -g's 62469 -gNewSense 63991 -gPISP 65452 -gS 64657 -gXboxLive 62469 -ga 51211 -gaan 63601 -gaara 65170 -gab 61584 -gabapentin 62469 -gabbana 56862 -gabe 63077 -gable 58417 -gables 62331 -gabriel 61051 -gabriella 64657 -gadget 52107 -gadgets 49257 -gadolinium 61818 -gael 61584 -gaelic 65452 -gaff 65170 -gaffe 62469 -gaffer 64201 -gaffes 65452 -gag 54992 -gage 56899 -gages 62613 -gagged 59491 -gagging 59848 -gaggle 63601 -gaging 64423 -gags 62331 -gai 62917 -gaia 64657 -gail 61472 -gain 41232 -gained 45902 -gainers 63601 -gainful 62917 -gainfully 65452 -gaining 47780 -gains 46415 -gait 54151 -gal 52233 -gala 55448 -galactic 56080 -galactica 62762 -galactokinase 65452 -galactose 59101 -galactosidase 63792 -galaxies 51660 -galaxy 51721 -gale 59923 -galego 65170 -galeria 64657 -galerie 63792 -galerij 60952 -galing 65170 -gall 56485 -gallant 61818 -gallantry 63601 -gallate 64657 -gallbladder 56324 -galleria 63601 -galleried 64905 -galleries 46234 -gallery 41806 -gallery's 62762 -gallerys 64201 -galley 59923 -gallisepticum 64201 -gallium 56293 -gallo 64905 -gallon 50292 -gallons 51358 -gallop 64201 -galloping 62066 -galloprovincialis 65452 -gallows 64201 -gallstone 60952 -gallstones 60405 -galore 57524 -gals 56862 -galt 63792 -galvanic 60856 -galvanised 62917 -galvanized 56293 -galvanizing 65170 -galway 62762 -gam 65170 -gama 65452 -gambia 63991 -gambiae 61584 -gambit 60492 -gamble 55084 -gambled 64423 -gambler 64423 -gamblers 60762 -gambling 49302 -game 35657 -game's 53377 -gamebabes 63245 -gameboy 59774 -gamecube 60238 -gameguard 63077 -gamepad 61940 -gameplay 50599 -gamer 56652 -gamers 52351 -gamertag 61362 -games 37717 -gameshark 61818 -gamespot 62917 -gamestop 63245 -gamete 65170 -gametes 62613 -gametocyte 62762 -gametocytes 62613 -gaming 44958 -gamit 65170 -gamma 50873 -gammy 64905 -gamut 57524 -gan 59774 -gana 65452 -ganache 63601 -ganas 60405 -ganciclovir 63245 -ganda 65170 -gang 47378 -gang's 64201 -gangbang 55963 -gangbanged 64905 -ganglia 56200 -ganglia's 59491 -ganglion 54857 -ganglionic 65170 -ganglioside 60492 -gangliosides 60762 -gangrene 64657 -gangrenous 64657 -gangs 54946 -gangsta 56262 -gangster 57009 -gangsters 58979 -ganic 63419 -ganization 65452 -ganja 62066 -gansta 63991 -gant 59227 -gantry 62469 -ganz 62196 -gap 45064 -gape 64657 -gaping 58313 -gapped 62066 -gapping 63991 -gaps 49371 -gar 60856 -garage 46102 -garageband 63419 -garages 56452 -garam 63601 -garb 62762 -garbage 49899 -garbled 58262 -garcia 59424 -gard 65170 -garde 60000 -garded 65452 -garden 42911 -gardener 57318 -gardeners 58802 -gardening 50991 -gardens 48949 -garding 64201 -garetts 64657 -garfield 65170 -gargantuan 62196 -gargoyle 64905 -gargs 64657 -garish 64423 -garland 59424 -garlands 63792 -garlic 49365 -garlicky 64201 -garment 51415 -garments 54096 -garmin 56935 -garner 58113 -garnered 56110 -garnering 61699 -garnet 56827 -garnets 62762 -garnish 58523 -garnished 60405 -garnishment 63601 -garrett 61256 -garrettes 64657 -garretts 62066 -garrison 60580 -garter 61152 -garters 62613 -garth 65170 -gary 54857 -garycase 65170 -gas 38407 -gaseous 52018 -gases 48653 -gash 62196 -gasification 58262 -gasifier 59101 -gasifiers 64657 -gasket 53695 -gaskets 58745 -gasoline 49639 -gasp 61362 -gaspar 65170 -gasped 62469 -gasping 61584 -gasps 63991 -gassed 62917 -gasses 60856 -gassing 65452 -gastos 62469 -gastrectomy 64657 -gastric 48309 -gastrin 60952 -gastritis 59101 -gastrocnemius 63991 -gastroduodenal 61940 -gastroenteritis 60000 -gastroenterologists 65452 -gastroenterology 63419 -gastroesophageal 57482 -gastrointestinal 50365 -gastronomic 61051 -gastrostomy 63245 -gat 61940 -gata 65452 -gate 46454 -gated 51772 -gatekeeper 62762 -gatekeepers 63991 -gatekeeping 60856 -gates 49464 -gateway 48278 -gateways 57199 -gather 47197 -gathered 46105 -gathering 47992 -gatherings 56200 -gathers 53081 -gatifloxacin 65170 -gating 56518 -gation 59227 -gations 63792 -gator 62066 -gators 63991 -gatos 63245 -gauche 60670 -gaudy 62066 -gauge 46953 -gauged 60580 -gauges 55793 -gauging 58162 -gauntlet 62613 -gaurantee 64201 -gauss 61699 -gaussian 59702 -gauze 57923 -gavage 65452 -gave 39628 -gavel 65170 -gavin 63792 -gavindjharper 62469 -gaviniae 65452 -gaxha 64905 -gay 42020 -gaya 63245 -gaye 63077 -gayest 65170 -gayi 64905 -gayle 61584 -gays 55037 -gaz 61699 -gaze 54023 -gazebo 61256 -gazed 59848 -gazelle 64423 -gazes 63601 -gazette 62762 -gazetted 64201 -gazetteer 59039 -gazillion 64657 -gazing 58688 -gb 53485 -gba 62469 -gc 61152 -gcc 55500 -gchar 62066 -gcoleman 63601 -gd 54792 -gdb 59424 -gdh 63077 -ge 54540 -gear 43930 -gearbox 55992 -gearboxes 65170 -geared 51590 -gearing 56756 -gears 51521 -gearshift 64905 -gebruik 63991 -gecko 60157 -geckos 60856 -gedit 64201 -gee 60078 -geek 53316 -geeks 56827 -geeky 58860 -geen 62331 -gees 62762 -geese 59101 -geezer 65170 -gefitinib 60762 -geforce 62762 -gefunden 64201 -gefundenen 64905 -gegen 61940 -gegevens 64905 -gehen 64657 -geht 62469 -gehts 63991 -geil 61362 -geile 63991 -geisha 58313 -gel 44772 -gelatin 55448 -gelatine 64657 -gelatinous 64201 -gelation 60321 -gelato 60078 -geld 65170 -gelding 62331 -gellar 64905 -gelled 64201 -gelling 60670 -gels 51340 -gelsolin 65452 -gem 52435 -gemacht 65452 -gemcitabine 61256 -gemeinhardt 64423 -gemfibrozil 64201 -gemini 60580 -gems 53438 -gemstone 56827 -gemstones 59039 -gen 51650 -gence 60856 -gency 62613 -gender 45697 -gendered 60078 -genders 59357 -gene 40015 -gene's 63419 -genealogical 56110 -genealogist 65452 -genealogists 65452 -genealogy 52351 -geneous 63245 -genera 55934 -general 36532 -general's 59424 -generalisation 62917 -generalised 58632 -generalist 59702 -generality 56518 -generalizability 63792 -generalizable 65452 -generalization 53934 -generalizations 57566 -generalize 56862 -generalized 48105 -generalizes 60856 -generalizing 62196 -generally 39619 -generals 56935 -generar 64905 -generate 42902 -generated 41074 -generates 48226 -generating 45850 -generation 41462 -generation's 64657 -generational 59848 -generations 48831 -generative 60000 -generator 46165 -generators 50848 -generic 43251 -generically 60157 -generics 60405 -generosity 55084 -generous 48093 -generously 53952 -genes 43132 -genesis 55323 -genetic 43144 -genetical 64657 -genetically 51043 -geneticist 63792 -geneticists 64423 -genetics 51229 -geneween 64657 -genial 60580 -genic 58979 -geniculate 58523 -genie 61472 -genistein 62331 -genital 51340 -genitalia 60492 -genitals 59630 -genitive 65170 -genitourinary 60492 -genius 51052 -geniuses 62331 -genoa 63245 -genocidal 64201 -genocide 54992 -genome 48887 -genomes 54879 -genomic 49184 -genomics 57122 -genotoxic 60492 -genotoxicity 63991 -genotype 51974 -genotyped 62762 -genotypes 53549 -genotypic 61362 -genotyping 57609 -genre 47980 -genre's 65452 -genres 50782 -gens 60492 -gent 59848 -genta 64905 -gentamicin 60856 -gente 57046 -genteel 63991 -gentile 64657 -gentle 49006 -gentleman 54207 -gentleman's 63792 -gentlemen 56899 -gentleness 63419 -gentler 61051 -gently 48826 -gentoo 62469 -gentrification 63792 -gentry 63245 -gents 61472 -genuine 46266 -genuinely 52007 -genus 49739 -genética 65452 -geo 52982 -geoFeed 58113 -geocaches 63991 -geocaching 62762 -geochemical 57831 -geochemistry 61472 -geocoordinate 64905 -geodesic 56935 -geodesics 62613 -geodetic 61256 -geodon 65452 -geoff 62613 -geographer 65452 -geographers 62066 -geographic 48156 -geographical 48761 -geographically 54399 -geographies 62469 -geography 51340 -geologic 55821 -geological 52244 -geologically 65170 -geologist 60670 -geologists 60321 -geology 54581 -geomagnetic 59702 -geomechanical 63245 -geometric 49196 -geometrical 52739 -geometrically 59292 -geometries 55738 -geometry 48017 -geomorphic 63991 -geomorphological 65452 -geophone 65452 -geophysical 57122 -geophysics 61818 -geopolitical 58802 -geopolitics 63792 -georeferenced 63245 -george 52051 -georges 65170 -georgette 62917 -georgia 51620 -georgian 60670 -georgiana 61818 -geoscience 64657 -geospatial 55323 -geostationary 62469 -geostatistical 63991 -geotagged 63991 -geotechnical 59560 -geothermal 53211 -ger 58523 -gerade 64905 -gerald 61051 -geranium 65452 -gerard 62762 -gerbe 60952 -gerber 61818 -gerbera 64657 -gerbes 63601 -gerbil 60000 -gerbils 63077 -gerd 65452 -geriatric 55992 -geriatrics 63991 -germ 52805 -german 49834 -germane 61152 -germanium 60405 -germans 63792 -germany 54499 -germfree 64657 -germicidal 65170 -germinal 60157 -germinate 61699 -germinated 61051 -germinating 63601 -germination 54685 -germline 58919 -germplasm 58162 -germs 55711 -gerne 64423 -geronimo 63792 -gerontological 64423 -gerry 65170 -gerrymandering 64905 -gers 65452 -gery 63991 -gesichtet 65452 -gest 60580 -gestalt 65170 -gestation 54479 -gestational 54835 -gested 59039 -gesting 64201 -gestion 58745 -gestodene 65452 -gests 60405 -gestural 65452 -gesture 54643 -gestured 64657 -gestures 55500 -gesturing 65452 -get 29712 -get's 59630 -getChild 62613 -getEmbeddedObject 64657 -getEntry 61472 -getFieldType 65452 -getFirst 64905 -getFirstDocument 61818 -getFirstEntry 61818 -getFormattedText 64657 -getLast 64905 -getLastDocument 61699 -getMIMEEntity 64905 -getNextCategory 64657 -getNextDocument 63419 -getNextEntry 64657 -getNextSibling 63077 -getNotesFont 64905 -getNth 63991 -getNthDocument 63991 -getPos 64657 -getPrevCategory 64657 -getPrevDocument 63077 -getPrevSibling 61818 -getSomeHeaders 65452 -getUnformattedText 64423 -getaway 54857 -getaways 58632 -gether 60492 -geting 60157 -gets 38716 -getter 62762 -gettext 58577 -gettin 52752 -getting 36731 -gettyimages 60078 -geval 64657 -gexec 60670 -geyser 65170 -gezamenlijke 64905 -gf 57741 -gfe 60078 -gfortran 63792 -gftesg 65170 -gfx 61256 -gg 56862 -ggg 63792 -gh 60492 -ghaazi 63601 -ghana 61818 -ghar 62331 -ghastly 60670 -ghaupt 64657 -ghd 62196 -ghee 62917 -ghetto 54749 -ghey 64423 -ghia 64423 -ghost 49246 -ghostcat 65170 -ghosting 62917 -ghostly 60238 -ghosts 54749 -ghosttownrecords 64201 -ghostwritten 65170 -ghoul 65452 -ghoulish 60157 -ghouls 62331 -ghrelin 65452 -ghrp 64423 -ghz 59702 -gi 56485 -gia 60078 -gianna 61152 -gianni 61152 -giannis 65170 -giannylt 62613 -giant 45369 -giant's 62613 -giantess 58523 -giants 52509 -giao 62917 -gibberish 64201 -gibbon 65452 -gibbsite 64657 -gibi 61940 -gibson 58113 -gibt 60580 -gical 62917 -giclee 63077 -giclée 63991 -giddy 60238 -gies 60238 -gif 54770 -gifs 60492 -gift 40057 -gifted 52096 -gifting 60000 -gifts 43559 -giftware 63245 -gig 49022 -gigabit 60000 -gigabits 65170 -gigabyte 58745 -gigabytes 60078 -gigantic 54479 -gigas 65452 -gigasize 63601 -gigaspaces 65170 -gigging 64905 -giggle 59101 -giggled 62469 -giggles 62762 -giggling 61584 -gigi 64905 -gigs 51963 -gil 59774 -gilbert 62469 -gilbertociro 63245 -gilda 64657 -gilded 61152 -gill 56721 -gillian 64423 -gills 59560 -gilmore 61940 -gilt 60670 -gimbal 57440 -gimme 57238 -gimmick 60492 -gimmicks 59630 -gimmicky 62917 -gimp 60580 -gimpfu 63991 -gin 56420 -gina 58417 -ginal 64905 -ging 61818 -ginger 51630 -gingerbread 60856 -gingerly 65170 -gingham 65452 -gingiva 63792 -gingival 55604 -gingivalis 58745 -gingivitis 62917 -ginkgo 65452 -ginning 64905 -gino 65452 -ginormous 65170 -gins 64657 -ginseng 63419 -giochi 64657 -gioco 65452 -gion 60580 -gional 64657 -gions 64905 -giorno 61818 -giovanni 62196 -gir 64905 -gira 65170 -giraffe 58979 -girder 64657 -girders 64657 -girdle 59292 -girdles 63077 -girl 39396 -girl's 52913 -girlfriend 48913 -girlfriend's 59357 -girlfriends 56452 -girlie 59560 -girlies 64657 -girlish 65452 -girls 39924 -girly 55604 -girlz 63419 -giro 65170 -girth 57785 -gis 63077 -gisborne 62469 -gisele 64905 -gist 59424 -gists 64201 -git 56170 -gitar 59923 -giv 61699 -give 34578 -giveaway 55793 -giveaways 57566 -given 34961 -giver 61472 -givers 62196 -gives 38731 -giveth 62331 -givin 62066 -giving 39943 -giz 59848 -gizmo 61362 -gizmos 61362 -gj 64201 -gjitha 63991 -gjorda 63245 -gjyste 64905 -gk 63077 -gkko 65452 -gksudo 63601 -gl 56756 -glabra 64201 -glabrata 61940 -glabrous 56935 -glacial 53899 -glaciated 63601 -glaciation 63991 -glacier 55963 -glaciers 57160 -glad 44494 -gladiator 59630 -gladiators 64657 -gladly 53549 -gladrags 63419 -glam 57609 -glamorous 55604 -glamour 53438 -glance 50890 -glanced 57741 -glances 60762 -glancing 60405 -gland 48991 -glands 50394 -glandular 56862 -glandulifera 64905 -glandulosa 64905 -glans 57970 -glare 57609 -glared 62917 -glaring 57970 -glasba 63077 -glasgow 59227 -glass 40795 -glasses 48980 -glasshouse 62469 -glassware 58577 -glassy 57741 -glaucoma 56262 -glauconite 64905 -glazba 62066 -glaze 56452 -glazed 53256 -glazing 54170 -glazings 61584 -gle 60405 -gleam 61940 -gleaming 58065 -glean 61940 -gleaned 58919 -glee 61940 -gleeful 64423 -gleefully 61584 -glen 59848 -glenn 62917 -gli 60670 -glia 63077 -gliadin 64657 -glial 55877 -glibc 61472 -glibenclamide 62762 -glide 54664 -glided 65170 -glider 58688 -gliders 62331 -glides 58632 -gliding 58577 -glimmer 60952 -glimmering 65170 -glimpse 51396 -glimpsed 63245 -glimpses 58113 -glint 63077 -glioblastoma 60580 -glioma 58523 -gliomas 62469 -glipizide 60238 -glistening 60492 -glitch 54581 -glitches 56050 -glitter 53361 -glittering 58523 -glitters 63991 -glittery 63419 -glitz 61699 -glitzy 61940 -glkA 61362 -glnB 63991 -glo 65170 -gloat 65170 -gloating 64905 -glob 65170 -global 38738 -globalisation 58577 -globalised 61818 -globalization 53256 -globalized 61256 -globalizing 63991 -globally 51193 -globe 49319 -globes 61472 -globin 62331 -globrix 57566 -globular 56862 -globules 60321 -globulin 56687 -globus 64423 -glochidia 64201 -glock 64905 -glomerular 55202 -glomeruli 61472 -glomerulonephritis 62917 -glomus 65170 -gloom 56080 -gloomy 57009 -gloria 59039 -glories 60492 -glorification 64905 -glorified 59164 -glorify 59702 -glorious 51312 -gloriously 63245 -glory 49821 -gloryhole 63245 -gloss 53423 -glossaries 61940 -glossary 51996 -glossed 64423 -glosses 63991 -glossy 53241 -glottal 64201 -glove 52858 -gloved 62917 -gloves 50424 -glow 52062 -glowed 63792 -glowing 54151 -glows 60952 -glucagon 60856 -glucan 59039 -glucans 60856 -glucocorticoid 57653 -glucocorticoids 56935 -gluconate 63419 -glucophage 58212 -glucosamine 58470 -glucose 45648 -glucoside 65452 -glucosuria 65452 -glucuronidation 63991 -glucuronide 62331 -glucuronides 61051 -glue 50584 -glued 54519 -glues 62196 -gluing 58577 -glume 64423 -gluon 58113 -glut 61818 -glutamate 52051 -glutamatergic 60952 -glutamic 57831 -glutamicum 63245 -glutamine 55766 -glutaraldehyde 59227 -glutathione 51825 -gluteal 63991 -gluten 54685 -gluteus 65452 -glx 61472 -glycaemic 64905 -glycan 61051 -glycated 60157 -glycation 61051 -glycemia 65452 -glycemic 59164 -glyceraldehyde 64657 -glycerin 61699 -glycerine 65170 -glycerol 55373 -glyceryl 64201 -glycidyl 64423 -glycine 56110 -glycitein 64657 -glycogen 52303 -glycol 53934 -glycolic 64201 -glycolipid 61472 -glycolipids 64423 -glycolysis 59424 -glycolytic 59560 -glycolyzed 63077 -glycopeptide 64657 -glycoprotein 53549 -glycoproteins 57923 -glycosaminoglycan 63245 -glycosaminoglycans 61584 -glycoside 64657 -glycosides 61584 -glycosidic 61256 -glycosphingolipid 64657 -glycosphingolipids 64657 -glycosyl 63245 -glycosylase 61256 -glycosylated 58745 -glycosylation 58313 -glyph 62469 -glyphosate 64905 -glyphs 64657 -gm 54685 -gmail 54059 -gmaven 59357 -gmc 63419 -gmoney 65170 -gms 61051 -gmt 58802 -gmx 64657 -gn 60078 -gna 63792 -gnarl 63245 -gnaw 64657 -gnawing 63601 -gnocchi 63792 -gnome 57482 -gnomes 63077 -gnu 63419 -gnuplot 63991 -go 32555 -goList 64201 -goa 60856 -goal 40965 -goalie 55877 -goalies 63792 -goalkeeper 57084 -goals 43241 -goaltender 61940 -goat 50607 -goat's 63419 -goats 53646 -gob 65452 -gobble 62331 -gobbled 63245 -gobbling 64905 -goblet 60856 -goblin 60321 -goblins 62196 -gobo 62762 -gobs 62196 -god 47050 -god's 60856 -goddam 64423 -goddamn 58802 -goddess 54207 -goddesses 62762 -godfather 59774 -godliness 65170 -godly 59774 -godparents 64423 -gods 51867 -godsend 64201 -godzilla 62917 -goed 62613 -goers 61362 -goes 39163 -goggle 64201 -goggles 56518 -gogo 63991 -goin 50881 -going 34218 -goings 61152 -goiter 63077 -gokart 65170 -goku 60238 -gol 62917 -gold 41489 -golden 46918 -goldenbush 63419 -goldfish 57238 -golds 62066 -golem 64657 -golf 43140 -golfMH 64905 -golfer 55684 -golfers 54992 -golfing 56687 -goliath 62469 -gomez 61472 -gon 57785 -gona 57358 -gonad 60762 -gonadal 57653 -gonadotrophin 64423 -gonadotropin 59774 -gonads 61362 -gondii 60405 -gondola 62613 -gone 41781 -gong 61362 -gonna 43385 -gonorrhea 58017 -gonorrhoeae 62762 -gonzo 54321 -gonzon 64657 -goo 57831 -good 31524 -goodbye 51877 -goodbyes 62613 -goodie 61362 -goodies 53952 -goodlink 64657 -goodly 65170 -goodman 63419 -goodness 52085 -goodnight 59424 -goodreads 65170 -goods 42756 -goodwill 56231 -goody 61940 -gooey 60238 -goof 61818 -goofing 64201 -goofs 61051 -goofy 57160 -google 44900 -googled 58417 -googling 60238 -goon 61940 -goons 62762 -goood 63245 -goose 54499 -gooseneck 62331 -gopher 60856 -gorda 65452 -gordon 58262 -gordonii 62917 -gore 56862 -gored 64201 -gorge 58017 -gorgeous 48046 -gorgeously 63245 -gorges 64657 -gorilla 56935 -gorillas 59101 -gorithm 62917 -gory 58745 -gosh 59164 -gospel 52062 -gospels 64201 -gossamer 62331 -gossip 49446 -gossiping 64905 -gossips 64905 -gossypii 65452 -gost 64905 -got 34464 -gota 62066 -gotcha 61818 -goth 56791 -gotham 63601 -gothic 54499 -goto 50949 -gotoChild 64905 -gotoEntry 65452 -gots 60856 -gotta 46572 -gotten 46497 -gouache 63419 -gouge 63991 -gouging 60405 -gould 64423 -gourd 63991 -gourmet 51069 -gourmets 65452 -gous 63991 -gout 59848 -gouty 64657 -gouvernement 64423 -gov 57009 -gov't 58262 -gover 64905 -goverment 59292 -govern 52062 -governance 48395 -governed 47883 -governess 65452 -governing 47395 -government 37411 -government's 49108 -governmental 49196 -governments 46474 -governor 49645 -governor's 56551 -governors 54792 -governs 54419 -govinda 64657 -govt 55711 -gown 54151 -gowns 56110 -gp 57741 -gpa 65170 -gpk 63792 -gpl 62331 -gpm 58162 -gprs 65452 -gps 53271 -gq 64657 -gr 55578 -gra 62762 -grab 47835 -grabbed 51387 -grabber 61256 -grabbing 55060 -graboid 60856 -grabs 53392 -grace 48964 -graced 57785 -graceful 55526 -gracefully 58212 -graces 59630 -gracias 56293 -gracilis 61152 -gracing 62917 -gracious 54560 -graciously 57609 -grad 52845 -gradation 64657 -grade 42570 -graded 51000 -grader 58417 -graders 55631 -grades 47471 -gradient 47293 -gradients 52375 -grading 51963 -grado 65170 -grads 61256 -gradual 51140 -gradually 47603 -graduate 43761 -graduated 47342 -graduates 48697 -graduating 51248 -graduation 50702 -graf 63792 -grafenberg 56687 -graffi 57278 -graffiti 50514 -grafitti 63991 -graft 49296 -grafted 56518 -grafting 55226 -grafts 54770 -grag 65452 -graham 57831 -grail 62469 -grails 58919 -grain 45230 -grained 59227 -grains 49713 -grainy 59774 -gram 51415 -gramicidin 65170 -graminicola 62196 -grammar 50136 -grammars 61699 -grammatical 55398 -grammatically 61051 -gramme 63245 -grammed 65170 -grammer 65452 -grammes 61051 -gramming 62917 -grammy 65170 -grams 49464 -gran 54601 -granary 63077 -grand 45203 -grandad 64423 -grandam 65452 -grandchild 62066 -grandchildren 54207 -granddaughter 55107 -granddaughters 63792 -grande 54992 -grandee 63419 -grander 65170 -grandes 59491 -grandest 62917 -grandeur 59292 -grandfather 52062 -grandfather's 58919 -grandfathered 64423 -grandfathers 63601 -grandiflora 62196 -grandiose 59774 -grandkids 61940 -grandma 52752 -grandma's 61051 -grandmas 63077 -grandmaster 64423 -grandmother 50815 -grandmother's 57609 -grandmothers 60952 -grandpa 58632 -grandparent 62196 -grandparents 53346 -grands 63419 -grandson 54835 -grandson's 61584 -grandsons 62196 -grandstand 64905 -granite 51640 -granites 61584 -granitic 63245 -grannies 62613 -granny 54499 -granola 61818 -grant 42907 -granted 43976 -grantee 59491 -grantees 61051 -granting 50966 -grantor 61818 -grants 46110 -granular 51793 -granularity 61256 -granulated 59491 -granulation 60580 -granule 55373 -granules 52968 -granulocyte 58523 -granulocytes 59039 -granulocytic 62196 -granuloma 61584 -granulomas 63792 -granulomatosis 63077 -granulomatous 59491 -granulosa 58979 -grape 52940 -grapefruit 56791 -grapes 53024 -grapevine 62613 -graph 45362 -graphcap 64201 -graphed 63245 -graphene 59491 -graphic 44544 -graphical 48776 -graphically 55060 -graphics 43579 -graphing 60238 -graphite 52399 -graphitic 62917 -graphs 49262 -graphy 62469 -grapple 59292 -grappled 64201 -grapples 62613 -grappling 58860 -gras 59039 -grasp 51580 -grasped 58523 -grasping 57566 -grasps 63077 -grass 46451 -grassed 64657 -grasses 55934 -grasshopper 62331 -grassland 56140 -grasslands 60856 -grassroots 53501 -grassy 57009 -grate 58365 -grated 54380 -grateful 48786 -gratefully 54207 -grater 64423 -gratia 64201 -gratification 59702 -gratified 63077 -gratify 64423 -gratifying 59424 -gratin 62762 -grating 53052 -gratings 55821 -gration 63792 -gratis 51000 -gratitude 53081 -gratuit 57009 -gratuitamente 62469 -gratuite 64201 -gratuitement 64657 -gratuities 62331 -gratuito 64201 -gratuitous 56827 -gratuitously 64201 -gratuits 64657 -gratuity 62613 -grave 50350 -gravee 65170 -gravel 52648 -gravely 60321 -graves 55766 -graveside 64657 -gravest 65452 -gravestone 64905 -graveyard 57009 -graveyards 65452 -gravid 61699 -gravida 62613 -gravidarum 64423 -gravimetric 60157 -gravis 61152 -gravitate 62469 -gravitated 64657 -gravitation 62917 -gravitational 52411 -gravitationally 63419 -gravity 48576 -gravy 56324 -gray 47988 -grayed 61051 -graying 63792 -grayish 63601 -grayscale 59774 -graze 60762 -grazed 59491 -grazie 61152 -grazing 51690 -gre 62469 -grease 52291 -greased 59357 -greasing 64201 -greasy 55154 -great 32899 -greater 38771 -greatest 42858 -greatful 63601 -greatly 44380 -greatness 56080 -greats 57970 -gree 63245 -greece 56791 -greed 55738 -greedy 54792 -greeenpro 57046 -greeenpro's 62762 -greek 53695 -green 40037 -greenback 63245 -greene 65452 -greener 56140 -greenery 60321 -greenest 62613 -greenfield 59702 -greenhouse 49017 -greenhouses 60157 -greening 61699 -greenish 59357 -greens 53226 -greensboro 64201 -greenspan 60492 -greenville 64423 -greenwich 64905 -greeny 65452 -greet 53316 -greeted 52699 -greeting 51541 -greetings 53746 -greets 56791 -greetz 64905 -greg 55084 -gregarious 62066 -gregory 61152 -gregory's 61940 -grein 60856 -grenade 55906 -grenades 61152 -grenadine 65452 -grenoble 65452 -grep 57609 -gress 63991 -gression 63077 -gressive 65170 -greta 65170 -gretsch 63419 -grevenexans 65170 -grew 45195 -grey 47596 -grey's 64905 -greyed 62762 -greyhound 59101 -greyhounds 58113 -greyish 65170 -greys 59292 -grid 45848 -gridded 62066 -griddle 60762 -gridiron 63991 -gridit 64657 -gridlock 63991 -grids 53899 -gridview 63792 -grief 52845 -grievance 56200 -grievances 57923 -grievant 58745 -grieve 60856 -grieved 63991 -grieving 57084 -grievor 64423 -grievous 61818 -griffin 61818 -griffith 62917 -grill 51473 -grille 58262 -grilled 51731 -grilles 63792 -grilling 58365 -grills 58262 -grils 62613 -grim 54749 -grime 58632 -grimly 65170 -grimy 64201 -grin 56485 -grind 52725 -grinder 56972 -grinders 61362 -grinding 51453 -grinds 59560 -gringo 63792 -grinned 61152 -grinning 60078 -grins 62762 -grip 49234 -gripe 58745 -gripes 61051 -gripped 58523 -gripper 61051 -grippers 65452 -gripping 55348 -grips 53679 -grisea 62762 -grisly 60670 -grist 63601 -grit 56140 -gritos 61940 -grits 62331 -gritty 56935 -grizzled 64905 -grizzly 59357 -groan 63419 -groaning 63991 -groans 63792 -grocer 63601 -groceries 54643 -grocers 61940 -grocery 48501 -groin 57160 -grommet 62196 -grommets 61472 -groom 55060 -groom's 62613 -groomed 57970 -groomer 64201 -groomers 64905 -grooming 53882 -grooms 62613 -groove 49296 -grooved 59923 -grooves 53153 -grooving 61940 -groovy 54170 -groping 60856 -gros 64905 -gross 46506 -grossa 64905 -grossed 61699 -grosses 65452 -grossing 65170 -grossly 56050 -grotesque 59848 -grotesquely 64423 -grotto 62917 -ground 40160 -groundbreaking 54170 -grounded 51541 -grounder 64657 -grounding 54264 -groundnut 62331 -grounds 46871 -groundwater 50446 -groundwork 57238 -group 34298 -group's 50560 -groupe 59292 -grouped 50256 -grouper 64423 -groupes 63991 -groupie 64423 -grouping 52411 -groupings 56827 -groups 37411 -groupware 63077 -grouse 62469 -grout 58212 -grouting 64905 -grove 55348 -groves 58632 -grow 42338 -grower 58745 -growers 54399 -growing 40234 -growl 63419 -growled 65452 -growling 62066 -growls 65170 -grown 42908 -grownup 65452 -grownups 63601 -grows 48131 -growth 37253 -growths 60856 -große 64657 -grub 56899 -grubby 64201 -grudge 60856 -grudges 64423 -grudgingly 65170 -grueling 59357 -gruelling 62917 -gruesome 57238 -gruff 63245 -grumble 62917 -grumbling 62331 -grumpy 59923 -grundoon 62196 -grunge 58470 -grungy 64905 -grunt 60580 -grunting 63792 -grunts 64201 -grup 63792 -grupo 56756 -grupos 60856 -gruppo 63077 -gry 63419 -grüße 64423 -gs 59357 -gsiemens 64423 -gsm 57609 -gsxr 65452 -gt 54041 -gta 52484 -gtd 62917 -gti 63077 -gtk 65170 -gto 63792 -gtr 62917 -gts 64657 -gu 60952 -guacamole 62469 -guacho 64905 -guage 58313 -guanidine 61256 -guanidinium 59424 -guanine 57831 -guano 65170 -guanosine 59630 -guanylate 62762 -guar 62613 -guarantee 41496 -guaranteed 45481 -guaranteeing 56585 -guarantees 48996 -guarantor 61362 -guarantors 65170 -guaranty 61362 -guard 46757 -guarded 54946 -guardian 51762 -guardians 57440 -guardianship 60238 -guarding 56756 -guardrail 65170 -guardrails 64423 -guards 51087 -guarentee 63245 -gubernatorial 57609 -gucci 56827 -gud 56518 -gue 62331 -guerilla 62331 -guerra 60580 -guerre 63601 -guerrilla 58688 -guerrillas 61940 -gues 65452 -guess 41884 -guessed 54581 -guesses 59227 -guessing 51008 -guesswork 59491 -guest 43255 -guest's 61699 -guestbook 52496 -guesthouse 61584 -guesthouses 59560 -guestofaguest 63419 -guestrooms 59357 -guests 43868 -guestworkers 63245 -guffaws 65452 -gui 59848 -guid 62762 -guidance 44503 -guide 37502 -guide's 63991 -guidebook 58113 -guidebooks 61362 -guided 47664 -guideline 52327 -guidelines 43597 -guiderecommendations 59923 -guiderecommendationsmessage 55130 -guides 43812 -guideway 62331 -guidewire 64201 -guiding 50213 -guidlines 64423 -guido 56388 -guild 52187 -guild's 65170 -guildford 62331 -guilds 59848 -guillotine 63245 -guilt 52315 -guilty 45754 -guinea 51396 -guiness 65170 -guinness 65170 -guise 57566 -guises 64905 -guished 63245 -guitar 42924 -guitar's 65452 -guitarist 51762 -guitarists 59164 -guitarra 63991 -guitars 51248 -guj 64423 -gujarat 63601 -gular 63077 -gulf 56452 -gull 62066 -gullible 61699 -gulls 62917 -gullwings 65452 -gully 62331 -gulp 63601 -gulps 65452 -gum 51043 -gumbo 64657 -gummy 58470 -gums 56827 -gun 44742 -guna 62917 -gunbound 62469 -gundam 60157 -gunfire 58417 -gunk 64423 -gunman 58065 -gunmen 59039 -gunna 56687 -gunned 61362 -gunner 61152 -gunners 63419 -gunning 62762 -gunpoint 61818 -gunpowder 61818 -guns 48165 -gunshot 57440 -gunshots 63245 -gunz 61940 -gunzip 65452 -guppy 65170 -gupta 64905 -gurl 57696 -guru 53917 -guru's 62762 -guruoo 64657 -gurus 57785 -gus 64423 -gusanitoverde 65170 -gush 63419 -gushed 65170 -gushing 61152 -gusset 61051 -gust 60157 -gusta 59227 -gustatory 64905 -gustavo 56756 -gusting 61940 -gusto 59039 -gusts 59424 -gusty 63991 -gut 50823 -gute 63792 -gutenprint 62762 -guts 55526 -gutsy 56452 -gutta 61152 -gutted 58470 -gutter 55250 -gutters 58470 -gutting 64905 -guy 41069 -guy's 54835 -guys 40894 -guyz 63419 -guzel 64201 -guzzling 64201 -guías 61051 -gw 61472 -gwar 65452 -gweld 64423 -gwen 59848 -gx 60762 -gy 59848 -gyda 63792 -gyfer 64905 -gyfrifol 64423 -gym 48826 -gymnasium 58919 -gymnast 59164 -gymnastic 64201 -gymnastics 54969 -gymnasts 61818 -gyms 58577 -gynaecological 61256 -gynaecology 64201 -gynecologic 60670 -gynecological 62762 -gynecologist 62331 -gynecologists 65452 -gynecology 61699 -gynnwys 64201 -gyno 63419 -gypsum 59164 -gypsy 56551 -gyrase 61818 -gyro 58745 -gyros 63792 -gyroscope 62196 -gyrus 58577 -gz 64423 -gzip 62917 -går 64905 -génital 63077 -général 64657 -générale 64201 -générales 59357 -génétique 65452 -güfte 65170 -güzel 59424 -h 39423 -hCG 59424 -hCard 63245 -hFSHR 64905 -hPL 63792 -hPLC 62469 -hPa 52339 -hWnd 65170 -ha 46237 -haa 63792 -haaniyo 64423 -haar 63245 -haart 60762 -haat 65452 -hab 61362 -habbit 63419 -habbo 58313 -habe 60856 -habeas 57358 -haben 59357 -haber 62196 -habit 48991 -habitable 60856 -habitat 48706 -habitation 61940 -habitats 52996 -habits 48548 -habitual 57653 -habitually 60670 -habituated 65170 -habituation 60157 -habla 60952 -hablar 64657 -hablo 65452 -hac 64201 -hace 54969 -hacen 63601 -hacer 56551 -haces 64905 -hacia 61818 -hacienda 63245 -haciendo 63419 -hack 48265 -hacked 53501 -hackenslash 63991 -hacker 45636 -hackers 54685 -hacking 52673 -hacks 53796 -had 29468 -haddock 64423 -hadith 63601 -hadley 65452 -hadn't 48199 -hadnt 62196 -hadron 61940 -hadronic 60157 -hadronization 65170 -hadrons 63792 -hae 61051 -haemagglutination 63245 -haemagglutinin 65452 -haematite 64201 -haematobium 57785 -haematocrit 61699 -haematological 59164 -haematology 64201 -haematoma 64201 -haematopoietic 63792 -haematoxylin 65452 -haemodialysis 64201 -haemodynamic 61472 -haemoglobin 56972 -haemolymph 65452 -haemolysis 63792 -haemolytic 61940 -haemolytica 65452 -haemophilia 60492 -haemopoietic 64657 -haemorrhage 56551 -haemorrhagic 60856 -haemostasis 65170 -haf 64657 -hafnium 64905 -hafta 63077 -hag 63245 -haga 63601 -haggling 64201 -hah 61362 -haha 47596 -hahah 58017 -hahaha 52899 -hahahah 61584 -hahahaha 57831 -hahahahaha 62613 -hahahahahaha 64657 -hai 53286 -haifa 63991 -haiku 61940 -hail 54727 -hailed 54902 -hailing 62066 -hails 56618 -hailstorm 65170 -hain 62613 -hair 40779 -hair's 62917 -haircare 65452 -haircut 55578 -haircuts 62469 -hairdo 64423 -hairdresser 59039 -hairdressers 64905 -hairdressing 62469 -hairdryer 64201 -haired 56170 -hairless 59848 -hairline 61362 -hairpin 60000 -hairs 54706 -hairspray 61699 -hairstyle 58688 -hairstyles 57876 -hairstyling 65452 -hairstylist 64905 -hairy 51321 -haiti 62331 -hak 65452 -hal 57238 -hala 64905 -halal 62917 -halcyon 62066 -hale 62762 -halen 62613 -haley 65170 -half 38507 -halfback 63077 -halftime 58017 -halftoning 64423 -halfway 51560 -halibut 60405 -halide 56791 -halides 58860 -halifax 63601 -hall 47241 -hall's 65452 -halle 61940 -hallinta 65452 -hallmark 55604 -hallmarks 58262 -hallo 64905 -hallowed 62196 -halloween 49218 -halls 52845 -hallucination 64423 -hallucinations 60670 -hallucinatory 62066 -hallucinogenic 62196 -hallway 55274 -hallways 59039 -halo 51017 -halobium 61818 -halogen 54321 -halogenated 60580 -halogens 64905 -haloperidol 61940 -halopropynyl 64423 -halos 63419 -halothane 60405 -halt 52805 -halted 55373 -halter 58523 -halting 59923 -halts 59491 -halve 62066 -halved 58979 -halves 55766 -halving 62917 -ham 52175 -hamachi 64423 -hamartomas 64905 -hamburg 63419 -hamburger 57046 -hamburgers 60078 -hamden 63792 -hamilton 58113 -hamiltonian 64657 -hamlet 58919 -hamlets 62196 -hammer 50815 -hammered 57199 -hammering 58632 -hammers 58017 -hammock 61152 -hammocks 63991 -hammond 63245 -hamper 58113 -hampered 55793 -hampering 63601 -hampers 55323 -hampshire 58919 -hampstead 62196 -hampton 60157 -hamptonbeach 63792 -hams 62469 -hamster 52954 -hamsters 55178 -hamstring 59101 -han 57399 -hana 62762 -hanasu 65170 -hanced 64201 -hancement 64423 -hancock 59039 -hand 38839 -handbag 52447 -handbags 53662 -handball 61256 -handbook 53581 -handbooks 62762 -handbrake 63245 -handcrafted 55578 -handcuffed 62613 -handcuffs 62066 -handed 48372 -handedly 64905 -handel 64657 -handful 49458 -handfull 64905 -handfuls 63245 -handgrip 65170 -handgun 56756 -handguns 59848 -handheld 50599 -handhelds 60492 -handicap 54479 -handicapped 54560 -handicapping 60405 -handicaps 63245 -handicraft 61584 -handicrafts 57923 -handily 62331 -handing 53830 -handjob 54078 -handjobs 58745 -handkerchief 64905 -handle 42368 -handlebar 56420 -handlebars 59292 -handled 47194 -handlekurv 63245 -handler 53196 -handlers 55526 -handles 48459 -handling 42381 -handmade 51877 -handoff 59424 -handoffs 64905 -handout 55963 -handouts 57566 -handover 58417 -handpainted 63077 -handpick 60492 -handpicked 61362 -handpiece 62196 -handprint 64423 -handprints 65170 -handrail 62469 -handrails 63991 -hands 41790 -handset 51078 -handsets 55084 -handsfree 60321 -handshake 60000 -handshower 64905 -handsome 51721 -handsomely 61152 -handwriting 54902 -handwritten 56231 -handy 48600 -handycam 65452 -handyman 59227 -hanes 64905 -hang 46089 -hangar 61472 -hanged 58470 -hanger 53899 -hangers 58979 -hangin 61940 -hanging 46318 -hangings 62917 -hangout 59560 -hangover 57084 -hangovers 64657 -hangs 52423 -hank 60492 -hankering 63991 -hanna 61584 -hannah 55474 -hannibal 63245 -hanno 64657 -hans 64201 -hansen 64657 -hanson 64657 -haope 64905 -haphazard 61940 -hapkido 61940 -hapless 60078 -haploid 60580 -haplotype 55657 -haplotypes 57609 -happen 43178 -happend 58802 -happened 42818 -happening 44808 -happenings 54419 -happens 43281 -happier 53392 -happiest 56080 -happily 50799 -happiness 50522 -happy 39670 -happyending 61699 -haps 61472 -haptic 60762 -har 54969 -harap 64201 -harass 58802 -harassed 57741 -harassing 58113 -harassment 50974 -harbinger 64905 -harbor 52399 -harbored 60405 -harboring 57923 -harbors 58802 -harbour 53597 -harbouring 64657 -harbours 62331 -harcore 62762 -hard 36757 -hardback 59923 -hardball 63792 -hardcoated 64905 -hardcoded 63792 -hardcopy 54419 -hardcore 46477 -hardcover 56518 -harddisk 62762 -harddrive 62196 -harden 59292 -hardened 54706 -hardener 62762 -hardeners 63601 -hardening 53847 -harder 46931 -hardest 51690 -hardestgainer 63991 -hardiness 61940 -hardline 63077 -hardly 46154 -hardness 52805 -hardship 55178 -hardships 57199 -hardtop 61940 -hardware 42829 -hardwired 60856 -hardwood 50823 -hardwoods 59774 -hardworking 58979 -hardy 51985 -hare 57482 -harem 63077 -hari 60580 -hark 64905 -harks 63991 -harlem 64657 -harlequin 61152 -harley 58017 -harlot 62917 -harm 47395 -harm's 60405 -harman 60580 -harmed 57609 -harmful 48816 -harming 57399 -harmless 52303 -harmonic 50702 -harmonica 58860 -harmonics 56551 -harmonies 58162 -harmonious 56485 -harmoniously 64905 -harmonisation 60078 -harmonise 63792 -harmonised 62331 -harmonization 61051 -harmonize 59923 -harmonized 61362 -harmonizing 61362 -harmony 51321 -harms 58065 -harness 50599 -harnessed 61940 -harnesses 58417 -harnessing 60580 -harold 64657 -harp 58470 -harper 62331 -harpersbazaar 64905 -harping 63991 -harps 64201 -harpsichord 62613 -harrassment 65170 -harried 64423 -harris 58365 -harrison 60952 -harrisville 64201 -harrowing 59630 -harry 52940 -harsh 50213 -harsher 61818 -harshest 60405 -harshly 59630 -harshness 63419 -hart 59292 -hartford 63792 -hartselle 64423 -harvard 63601 -harvest 49388 -harvested 49663 -harvester 60405 -harvesters 63419 -harvesting 52074 -harvests 58979 -harvey 63419 -has 25779 -hasan 62469 -hash 51293 -hashing 62469 -hashtable 64657 -hasn't 45337 -hasnt 57831 -hasselbeck 61472 -hassle 52597 -hassles 58919 -hast 57046 -hasta 58313 -haste 58470 -hasten 60157 -hastened 63077 -hastily 59164 -hastings 65170 -hasty 58745 -hat 47555 -hatch 54727 -hatchback 58417 -hatched 57653 -hatchery 62196 -hatches 60238 -hatchet 61699 -hatching 59164 -hatchlings 61584 -hate 42908 -hated 51157 -hateful 57524 -hater 61472 -haters 56110 -hates 52085 -hath 53695 -hatha 65452 -hathaway 64423 -hatin 62469 -hating 56652 -hatred 53124 -hats 51415 -hatter 62762 -hatwide 62613 -haughty 65170 -haul 53847 -haulage 59357 -hauled 57160 -hauler 60157 -haulers 62762 -hauling 55793 -hauls 60000 -haunt 56293 -haunted 52712 -haunting 55060 -hauntingly 65170 -haunts 58919 -haus 64905 -haut 61152 -haute 58365 -hav 53662 -hava 64657 -havc 64657 -have 24262 -haved 65452 -haveing 62469 -haven 53138 -haven't 41816 -havens 62331 -havent 50314 -havering 62762 -haves 63245 -havin 57566 -having 35262 -havior 60321 -havn't 59424 -havnt 57609 -havo 63419 -havoc 55037 -haw 63991 -hawaii 55821 -hawaiian 60670 -hawk 56021 -hawker 65170 -hawking 63991 -hawks 60238 -hawthorn 63792 -hax 65170 -hay 50416 -haya 63245 -hayden 62331 -hayek 65452 -hayes 64657 -hayfever 62469 -haying 64905 -hayley 64905 -hays 63077 -haywire 64905 -haz 63601 -hazard 49435 -hazardous 48122 -hazards 50662 -haze 56899 -hazel 60000 -hazelnut 62917 -hazelnuts 65452 -hazing 59292 -hazmat 63792 -hazy 59774 -hazzard 65452 -hb 61699 -hbase 63991 -hc 58577 -hci 61051 -hcl 54664 -hcp 65170 -hd 53182 -hdd 57923 -hdmi 58417 -hdr 61472 -hdres 60405 -hdtv 59702 -he 29098 -he'd 48638 -he'll 48826 -he's 40931 -head 38043 -head's 64657 -headache 51650 -headaches 53182 -headband 60405 -headbands 64657 -headboard 59357 -headboards 62196 -headcount 61362 -headdress 64423 -headed 46500 -header 47276 -headers 50906 -headgear 63419 -headhunter 63601 -headhunters 65170 -headhunting 62196 -headin 63419 -heading 46474 -headings 53729 -headlamp 60405 -headlamps 61699 -headland 65452 -headless 61051 -headlight 56935 -headlights 56200 -headline 49342 -headlined 60405 -headliner 60405 -headlines 46466 -headlinesindia 65452 -headlining 59848 -headlong 62917 -headmaster 63601 -headphone 55552 -headphones 51473 -headpiece 63419 -headquarter 63601 -headquartered 52673 -headquarters 48413 -headroom 61584 -heads 45226 -headscarf 62613 -headset 52130 -headsets 59164 -headship 64423 -headshot 62196 -headshots 62066 -headspace 60078 -headstock 63245 -headstone 60762 -headstones 64905 -headstrong 62762 -headteacher 60492 -headteachers 62331 -headwaters 63077 -headway 60078 -headwear 61940 -heady 59292 -heal 50416 -healed 55398 -healer 57741 -healers 58979 -healing 46379 -heals 57358 -health 34782 -healthcare 44681 -healthful 58860 -healthier 51680 -healthiest 60762 -healthily 64201 -healthy 41412 -heap 54188 -heaped 60856 -heaping 61584 -heaps 55373 -hear 39673 -heard 39771 -heared 63601 -hearers 65170 -hearing 41966 -hearings 51963 -hears 53226 -hearsay 59424 -hearse 63991 -hearst 64423 -heart 38206 -heart's 57653 -heartache 60952 -heartbeat 52791 -heartbeats 65170 -heartbreak 60952 -heartbreaking 59227 -heartbroken 61584 -heartburn 57278 -hearted 57696 -heartedly 64423 -heartened 64657 -heartening 62762 -heartfelt 56021 -hearth 58470 -heartily 60492 -heartland 60580 -heartless 61472 -hearts 47047 -heartwarming 60856 -heartworm 62762 -hearty 54992 -heat 40147 -heated 46384 -heater 49873 -heaters 53565 -heath 57566 -heathen 63245 -heather 55526 -heating 43523 -heaton 65170 -heatpump 65170 -heats 54041 -heatsink 57696 -heave 62613 -heaven 49325 -heaven's 61472 -heavenly 54727 -heavens 55963 -heavier 51453 -heaviest 56293 -heavily 46412 -heaviness 63601 -heaving 62762 -heavy 41586 -heavyweight 54969 -heavyweights 62066 -heb 62196 -hebben 62196 -hebeclada 64657 -hebrew 60856 -hecho 61818 -heck 50545 -hectare 57696 -hectares 53934 -hectic 55821 -hector 64905 -hed 62469 -hedge 50357 -hedged 63419 -hedgehog 57482 -hedgerow 63601 -hedgerows 64657 -hedges 58688 -hedging 58212 -hedonic 64657 -hedonistic 65452 -hee 57741 -heed 56899 -heeded 62917 -heeft 63601 -heel 50553 -heeled 62917 -heels 51043 -heen 65170 -heey 65452 -hefner 64201 -heft 64657 -hefty 55657 -hegemonic 62613 -hegemony 60405 -heh 57970 -hehe 53196 -hehehe 59227 -hei 65170 -heidi 59923 -heidigoseek 65452 -heifers 57876 -height 43456 -heighten 59424 -heightened 54188 -heightening 64905 -heightens 63792 -heights 50507 -heinous 61051 -heir 55014 -heiress 61152 -heirloom 59424 -heirlooms 64905 -heirs 55398 -heise 62066 -heist 60952 -hel 62196 -helactine 65170 -held 37236 -hele 63245 -helen 59923 -helena 59702 -heli 60405 -helical 52509 -helically 63077 -helicase 59292 -helices 58017 -helicopter 49325 -helicopters 53830 -heliocentric 65452 -helium 53286 -helix 54078 -hell 44990 -hell's 64905 -hella 58262 -hellboy 65170 -hellfire 64423 -hellish 62613 -hello 48296 -hells 63792 -helluva 59774 -helm 55299 -helmed 64201 -helmet 50718 -helmets 55014 -helminth 64201 -helminths 65452 -helmsley 64905 -help 31599 -helpdesk 57696 -helped 42159 -helper 52268 -helpers 57653 -helpful 40721 -helpfull 61818 -helpfully 62917 -helpfulness 58802 -helping 41844 -helpless 55578 -helplessly 63077 -helplessness 61584 -helpline 59227 -helps 40946 -helsing 65452 -helt 64905 -hem 56080 -hemagglutinating 63077 -hemagglutination 62917 -hemagglutinin 61472 -hemangioma 59164 -hemangiomas 63601 -hematin 64423 -hematite 63245 -hematocrit 59923 -hematocrits 64905 -hematologic 58632 -hematological 59560 -hematology 63077 -hematoma 60952 -hematomas 64657 -hematopoiesis 61584 -hematopoietic 53331 -hematoxylin 58470 -hematuria 62613 -hembra 65452 -heme 54664 -hemicellulose 63601 -hemifacial 64905 -hemiparesis 62917 -hemiplegia 63991 -hemisphere 54749 -hemispheres 59357 -hemispheric 60157 -hemispherical 58262 -hemlock 63991 -hemmed 62762 -hemo 65170 -hemocyanin 64905 -hemodialysis 56756 -hemodynamic 53779 -hemodynamically 65170 -hemodynamics 58162 -hemofiltration 64201 -hemoglobin 53377 -hemoglobinuria 63991 -hemolysin 63601 -hemolysis 58212 -hemolytic 57440 -hemophilia 62066 -hemopoietic 63077 -hemorrhage 53813 -hemorrhages 60580 -hemorrhagic 55766 -hemorrhaging 64905 -hemorrhoid 64423 -hemorrhoidal 62331 -hemorrhoids 61818 -hemostasis 62613 -hemostatic 63601 -hemp 53695 -hen 54459 -hence 45939 -henceforth 59292 -hendrerit 63245 -hendrix 64905 -henley 61699 -henna 60000 -hennop's 63991 -henry 57084 -henrymeyerite 65452 -hens 56862 -hensive 62469 -hentai 49645 -hep 62762 -hepa 62762 -heparan 61051 -heparin 53331 -heparinized 59848 -hepatectomy 60238 -hepatic 48726 -hepatica 64905 -hepatitis 48614 -hepatocarcinogenesis 64423 -hepatocellular 56585 -hepatocyte 59227 -hepatocytes 56021 -hepatoma 58365 -hepatotoxicity 63792 -hepburn 65170 -hepsi 63077 -her 30893 -herald 58262 -heralded 58979 -heraldic 61584 -heralding 63792 -heraldry 61256 -heralds 61152 -herausgegeben 65452 -herb 51752 -herbaceous 59039 -herbage 64905 -herbal 49262 -herbalist 64905 -herbalists 65452 -herbarium 61472 -herbert 64657 -herbicidal 63419 -herbicide 55274 -herbicides 56452 -herbie 64423 -herbivore 61152 -herbivores 60157 -herbivorous 64201 -herbivory 63601 -herbs 50710 -herby 62762 -hercules 62469 -herd 53392 -herded 63991 -herding 61152 -herds 57046 -here 29965 -here's 47136 -hereafter 54879 -hereby 45756 -herebycertifythe 64423 -hereditary 53565 -heredity 62613 -herein 45662 -hereinabove 63419 -hereinafter 55130 -hereinbefore 63601 -hereof 58313 -heres 54601 -heresy 63245 -heretical 64423 -heretics 65170 -hereto 54969 -heretofore 56756 -hereunder 58017 -hereunto 58802 -herewith 60000 -hereÖ 62066 -heritability 63601 -heritable 60856 -heritage 47346 -hermano 63245 -hermaphrodite 64905 -hermeneutic 58979 -hermeneutical 64423 -hermeneutics 60492 -hermes 63601 -hermetic 61472 -hermetically 59560 -hermit 61051 -hermosa 63792 -hermoso 64905 -hermosos 65170 -hernia 55934 -hernias 63792 -herniated 60405 -herniation 61152 -hero 47353 -hero's 60405 -heroes 48892 -heroic 53934 -heroically 64905 -heroics 62066 -heroin 53762 -heroine 56756 -heroines 60078 -heroism 60492 -heron 62469 -herons 64657 -heros 61256 -herpes 52534 -herpesvirus 60000 -herpetic 63601 -herring 59357 -herringbone 63419 -hers 55552 -herself 45939 -hertz 63991 -herunterladen 65170 -herve 64423 -hes 51511 -hese 65452 -hesitant 57046 -hesitate 49739 -hesitated 61256 -hesitation 57524 -hess 64657 -het 50662 -hetero 61051 -heteroaromatic 63991 -heteroatom 64201 -heteroatoms 62331 -heterochromatic 63792 -heterochromatin 63077 -heterocycle 63601 -heterocycles 62762 -heterocyclic 55423 -heterodimer 61940 -heterodimers 63601 -heteroduplex 64423 -heterodyne 63601 -heterogeneities 63077 -heterogeneity 52198 -heterogeneous 50726 -heterogenous 62762 -heterojunction 62613 -heterologous 58212 -heteromeric 60238 -heteronuclear 62331 -heterosexual 54151 -heterosexuals 64657 -heterosis 61152 -heterostructure 61940 -heterostructures 62469 -heterotic 64905 -heterotopic 57358 -heterotrimeric 63792 -heterotrophic 60762 -heterozygosity 60405 -heterozygote 63077 -heterozygotes 61584 -heterozygous 56231 -heuer 62469 -heures 64657 -heuristic 55107 -heuristics 58577 -heute 63991 -hewitt 60670 -hewlett 56551 -hewn 64423 -hex 53796 -hexadecimal 60157 -hexagon 61584 -hexagonal 54946 -hexagram 63991 -hexahedra 64423 -hexamer 63245 -hexane 58262 -hexavalent 62331 -hexobarbital 63419 -hexosamine 65452 -hexose 64905 -hey 44089 -heya 58979 -heyday 60078 -heyy 58745 -heyyy 64201 -hf 61584 -hfs 64423 -hg 61472 -hgh 58262 -hh 61940 -hha 63245 -hhc 65452 -hhh 63991 -hho 61472 -hi 45809 -hia 63991 -hiatal 62613 -hiatus 57696 -hibernate 60238 -hibernating 63419 -hibernation 63077 -hibiscus 62917 -hibit 64201 -hibited 64657 -hic 64905 -hiccup 64423 -hiccups 63077 -hice 65452 -hich 62196 -hick 63601 -hickory 60492 -hicks 63245 -hid 55084 -hidden 44127 -hide 42042 -hideaway 61940 -hideous 57566 -hideously 65170 -hideout 63245 -hides 54664 -hiding 50115 -hie 63245 -hiebook 63245 -hielo 60321 -hier 55178 -hierarchical 50654 -hierarchically 62469 -hierarchies 58745 -hierarchy 51104 -hierniana 63991 -hifi 61940 -hifunda 61818 -hig 65452 -high 32743 -highbrow 65452 -highchair 65452 -higher 36554 -highest 40300 -highland 59491 -highlands 59227 -highlight 46432 -highlighted 48408 -highlighter 63601 -highlighters 64657 -highlighting 50394 -highlights 45751 -highly 38998 -highs 54321 -highschool 60405 -highspeed 65452 -hight 62066 -highway 47318 -highways 53746 -hii 64905 -hij 63991 -hijab 58262 -hijack 58919 -hijacked 57876 -hijackers 60405 -hijacking 60078 -hijackthis 64423 -hijo 61940 -hikari 63601 -hike 51330 -hiked 59560 -hiker 62917 -hikers 59491 -hikes 55107 -hiking 51017 -hilar 60856 -hilarious 51052 -hilariously 63601 -hilarity 61472 -hilary 59923 -hildebrandtii 64423 -hilfiger 65452 -hill 47951 -hillary 58919 -hillbilly 63601 -hills 49886 -hillside 57046 -hillsides 61818 -hillslope 63991 -hilltop 59923 -hilly 58979 -hilo 65452 -hilt 62613 -hilton 52085 -hilum 62762 -him 34756 -hima 64905 -himfr 63792 -himself 42006 -hin 62613 -hind 56485 -hindbrain 65170 -hinder 54643 -hinderance 64905 -hindered 54969 -hindering 59491 -hinders 58919 -hindi 52968 -hindlimb 62762 -hindrance 58860 -hindrances 63601 -hindsight 60157 -hindu 60078 -hinduism 64657 -hiner 64657 -hing 62196 -hinge 53153 -hinged 56585 -hingedly 64905 -hinges 54706 -hint 50545 -hinted 56756 -hinterland 61472 -hinterlands 63991 -hinting 60952 -hints 49584 -hinzufügen 59164 -hip 45624 -hiphop 56827 -hiplife 64201 -hippest 64201 -hippie 58262 -hippies 61472 -hippo 63077 -hippocampal 51793 -hippocampus 55226 -hippopotamus 65452 -hippos 63991 -hippuric 61051 -hippy 61818 -hips 52699 -hipster 59164 -hipsters 58632 -hire 45228 -hired 47266 -hirer 64423 -hires 53316 -hiring 46669 -hirsuta 62331 -hirsute 62762 -hirsutism 64905 -hirsutum 62762 -his 28713 -hispanic 59424 -hispanics 65452 -hiss 61152 -hissed 64905 -hissing 62917 -histamine 54969 -histidine 57741 -histiocytes 62613 -histiocytoma 65452 -histiocytosis 64201 -histochemical 57785 -histochemically 64423 -histochemistry 60580 -histocompatibility 56618 -histogram 53813 -histograms 57970 -histoire 63601 -histologic 53346 -histological 51453 -histologically 57046 -histology 55906 -histolytica 60321 -histone 53153 -histones 59630 -histopathologic 59227 -histopathological 57440 -histopathologically 65452 -histopathology 60321 -histoplasmosis 63077 -historia 58919 -historian 53271 -historians 52996 -historic 44626 -historical 42854 -historically 51193 -histories 52107 -historiography 60952 -history 36424 -history's 62066 -hit 38830 -hitachi 62331 -hitb 64905 -hitch 56452 -hitched 60580 -hitches 63419 -hitcounter 65170 -hited 62066 -hither 63991 -hitherto 56262 -hitler 58632 -hitman 60580 -hits 43035 -hitter 57399 -hitters 59491 -hittin 64905 -hitting 47402 -hiv 55657 -hive 57440 -hives 60405 -hiya 59039 -hizo 63077 -hj 63245 -hjelp 63419 -hjälp 62917 -hjælp 63077 -hk 60952 -hkl 64423 -hl 62066 -hls 61818 -hm 58470 -hmastet 59424 -hmm 56110 -hmmm 57831 -hmong 64657 -hms 63245 -hmv 62196 -hn 61818 -hnRNP 60762 -hnbjames 65170 -ho 49899 -hoard 60238 -hoarding 60078 -hoards 65452 -hoarse 63245 -hoary 62917 -hoax 57696 -hoaxes 63991 -hob 60492 -hobbies 54969 -hobbit 62469 -hobbled 62917 -hobby 52051 -hobbyist 61584 -hobbyists 61152 -hobo 61152 -hoc 50702 -hock 65452 -hockey 47887 -hocking 63792 -hodgepodge 63419 -hoe 56080 -hoes 58417 -hoff 65452 -hog 55738 -hogan 61256 -hogging 57122 -hogs 59101 -hogtied 63419 -hoist 59848 -hoisted 61699 -hoisting 62469 -hoists 61818 -hol 64201 -hola 59101 -hold 39311 -holdem 61152 -holden 61940 -holder 45544 -holder's 62762 -holders 48716 -holding 42360 -holdings 52484 -holds 43345 -holdup 63991 -hole 43850 -holed 61584 -holes 45756 -holga 63077 -holiday 42585 -holidaying 64423 -holidaymakers 62917 -holidays 46460 -holiest 64201 -holiness 61472 -holistic 51434 -holistically 65170 -holla 57009 -holland 58802 -holler 61818 -hollister 63245 -hollow 49999 -hollowed 64423 -hollows 63419 -holly 55423 -hollywood 53695 -hollywood's 64201 -hollywoodtv 60952 -holm 65452 -holmes 60670 -holocaust 59702 -holoenzyme 62613 -hologram 58745 -holograms 63419 -holographic 55373 -holography 63991 -holomorphic 59357 -holon 65452 -holonomy 60000 -holotype 63419 -hols 62613 -holster 59424 -holsters 64905 -holy 49006 -hom 63245 -homage 54813 -hombre 58745 -hombres 62196 -home 32234 -home's 56652 -homeMailMy 64905 -homebirth 64423 -homebound 63991 -homeboy 64657 -homebrew 59164 -homebuilder 65170 -homebuilders 64423 -homebuilding 64423 -homebuyer 62762 -homebuyers 59560 -homeclick 63991 -homecoming 56452 -homegrown 60405 -homehound 64905 -homeland 52673 -homeless 50206 -homelessness 58313 -homely 60762 -homemade 49639 -homemaker 61818 -homeobox 60762 -homeomorphism 65452 -homeomorphisms 63601 -homeopathic 57923 -homeopathy 59560 -homeostasis 55631 -homeostatic 61362 -homeowner 54245 -homeowner's 60321 -homeowners 50545 -homeownership 58065 -homepage 42767 -homepages 59630 -homer 56021 -homered 60856 -homeroom 65170 -homers 58162 -homerun 62917 -homes 40282 -homeschool 59039 -homeschoolers 65452 -homeschooling 59630 -homeschoolmom 64905 -homesick 63792 -homesite 61051 -homespun 62331 -homestead 56021 -hometown 52927 -homeware 63419 -homework 50372 -homey 62066 -homicidal 62917 -homicide 55323 -homicides 61051 -homie 59357 -homies 63077 -homily 64201 -hominem 64657 -homing 59164 -hominid 62196 -hominis 59630 -homme 61818 -homo 58262 -homocysteine 56827 -homocystinuria 65452 -homodimer 64905 -homodyne 63245 -homoerotic 62196 -homogenate 56452 -homogenates 56618 -homogeneity 54540 -homogeneous 49770 -homogeneously 61152 -homogenised 63991 -homogenization 58860 -homogenized 54643 -homogenizer 63991 -homogenizing 64201 -homogenous 56935 -homolog 57238 -homologies 62469 -homologous 51570 -homologs 58017 -homologue 57609 -homologues 58802 -homology 51680 -homomorphism 62469 -homonuclear 63792 -homophily 64905 -homophobia 60405 -homophobic 60078 -homopolymer 63792 -homosexual 52913 -homosexuality 57046 -homosexuals 57318 -homotopic 64657 -homotopy 62331 -homovanillic 64657 -homozygosity 65170 -homozygote 64423 -homozygotes 63601 -homozygous 55014 -hon 58470 -honda 51122 -honduras 65170 -hone 57609 -honed 58113 -honest 47002 -honestly 49713 -honesty 53533 -honey 49789 -honeybee 61051 -honeybees 64423 -honeybojoandmylene 64905 -honeycomb 58632 -honeydogs 60856 -honeymoon 54133 -honeymoons 65170 -honeys 59848 -honeysuckle 64423 -hong 57831 -hongkong 64905 -honing 61152 -honking 63245 -honolulu 64201 -honor 45912 -honorable 55631 -honorably 64905 -honoraria 64905 -honorary 54601 -honored 49108 -honoree 62762 -honorees 63077 -honoring 54245 -honoris 64905 -honors 50372 -honour 51211 -honourable 59101 -honoured 54924 -honouring 63792 -honours 55992 -hoo 60856 -hood 48826 -hooded 56420 -hoodia 56080 -hoodie 56721 -hoodies 57524 -hoods 57238 -hoody 60157 -hoof 59491 -hook 47907 -hookah 62917 -hooked 50734 -hookedonfish 64657 -hooker 60405 -hookers 62917 -hooking 57696 -hookingup 58313 -hooks 53271 -hookup 60000 -hookups 62066 -hooliganism 65170 -hooligans 63792 -hoon 61940 -hoop 55711 -hoopla 63077 -hoops 54770 -hooray 63991 -hoot 62066 -hooters 62917 -hoover 58979 -hooves 61472 -hop 48221 -hope 37892 -hoped 48933 -hopeful 52423 -hopefully 47259 -hopefuls 58688 -hopeless 56585 -hopelessly 57876 -hopelessness 62613 -hopes 45294 -hoping 45513 -hopkins 64905 -hopmonster 64657 -hopped 57741 -hopper 57653 -hoppers 60952 -hopping 54706 -hops 57318 -hor 63991 -hora 60670 -horas 61256 -horde 57199 -hordes 59292 -hore 61699 -horizon 51909 -horizons 56452 -horizontal 45526 -horizontally 53746 -horizontals 54302 -hormiga 65170 -hormonal 52387 -hormonally 64423 -hormone 46334 -hormones 50530 -horn 51377 -horned 62196 -hornet 62196 -hornets 64657 -horney 60952 -horns 55084 -horny 49959 -hornygame 62613 -horoscope 54622 -horoscopes 54419 -horrendous 58470 -horrible 49639 -horribly 55934 -horrid 59357 -horrific 56231 -horrified 59039 -horrifying 59630 -horror 47955 -horrors 56827 -hors 58113 -horse 44632 -horse's 58577 -horseback 55934 -horsehair 65452 -horseman 64905 -horsemen 62196 -horsepower 54207 -horseradish 56231 -horses 48042 -horsesex 62762 -horseshoe 58745 -horticultural 58313 -horticulture 57876 -hos 60157 -hose 50227 -hosed 61818 -hosel 63601 -hoses 55992 -hosiery 58162 -hospice 54664 -hospices 62762 -hospitable 59039 -hospital 41490 -hospital's 56652 -hospitalisation 61256 -hospitalised 61256 -hospitalists 64201 -hospitality 50774 -hospitalization 53779 -hospitalizations 60157 -hospitalized 52752 -hospitals 46359 -host 40622 -host's 60405 -hostage 54685 -hostages 58162 -hosted 43236 -hostel 53646 -hostels 54706 -hostess 58688 -hostile 51026 -hostilities 59227 -hostility 55849 -hosting 42307 -hostname 55373 -hostnames 58262 -hosts 45997 -hot 37903 -hota 64905 -hotbed 61818 -hotbird 64657 -hotdog 65170 -hotel 38882 -hotel's 55793 -hoteles 54969 -hoteliers 61818 -hotell 61362 -hotels 40202 -hotest 65452 -hotfix 57358 -hotforwords 59101 -hotfrog 60157 -hotkey 61051 -hotkeys 64423 -hotline 55348 -hotlines 64657 -hotlist 62917 -hotly 59630 -hotmail 54226 -hotness 64201 -hotplug 65452 -hotpoint 63991 -hots 62469 -hotshot 65452 -hotspot 58113 -hotspots 53438 -hott 60952 -hotter 54519 -hottest 46231 -hottie 56518 -hotties 56293 -hotwife 64423 -hou 61362 -hound 58017 -hounded 64423 -hounds 61256 -hour 39815 -hour's 59491 -hourglass 62196 -hourly 50856 -hours 34633 -house 37150 -house's 61584 -houseboat 61256 -housed 50446 -household 44551 -household's 62917 -householder 61584 -householders 59774 -households 48247 -househunting 60580 -housekeeper 60670 -housekeeping 55821 -housemate 63991 -housemates 62196 -houses 43339 -houseshare 65452 -housewares 60952 -housewarming 64423 -housewife 56756 -housewives 56293 -housework 60856 -housewrap 61472 -housewraps 64201 -housing 40699 -housings 60238 -houston 53729 -houtkamp 64905 -hove 63077 -hover 55178 -hovercraft 63601 -hovered 61472 -hovering 56551 -hovers 62469 -how 30621 -how'd 62762 -how's 56110 -howard 56518 -howd 64657 -howdy 61699 -however 43100 -howitzer 64657 -howl 63245 -howled 65452 -howling 59774 -howls 63792 -hows 51590 -howsoever 63245 -howto 57785 -howz 61152 -hoxton 62066 -hoy 59357 -hoyle 65452 -hozzászólás 62917 -hp 48468 -hppa 60580 -hq 60952 -hr 45052 -hrHGF 64905 -hrcA 65452 -href 59848 -hrs 45804 -hrvatski 60405 -hry 64201 -hs 58523 -hsbc 63991 -hsekiguc 60238 -hsm 61472 -hsp 65170 -hsql 62196 -hss 64201 -ht 56721 -htaccess 63077 -htc 59039 -hte 60762 -htm 56420 -html 46912 -hts 65452 -http 52291 -httpd 62917 -https 61051 -hu 56140 -huawei 64657 -hub 49614 -hubby 54226 -hubby's 64905 -hubnut 62066 -hubpages 64657 -hubris 63601 -hubs 55552 -hud 64657 -hudba 62196 -huddle 63077 -huddled 61051 -hudgens 59702 -hudson 54601 -hue 56518 -hues 58919 -huevos 65452 -hug 53485 -huge 40380 -hugely 53256 -huggables 65170 -hugged 57238 -hugger 65452 -hugging 58745 -hugh 57970 -hughes 62917 -hugo 62066 -hugs 53679 -huh 59424 -hui 59357 -huis 63077 -hula 61051 -hulk 58365 -hulking 64657 -hull 53167 -hulle 62469 -hulls 60952 -hum 56862 -human 36097 -human's 64423 -humane 54924 -humanely 65452 -humanism 62331 -humanist 61256 -humanistic 61362 -humanitarian 50461 -humanities 55657 -humanity 51560 -humanity's 60157 -humanize 64657 -humanized 62066 -humankind 59702 -humanly 61362 -humanoid 61256 -humans 45992 -humax 65452 -humble 51321 -humbled 60856 -humbling 62613 -humbly 60238 -humeral 65452 -humerus 63991 -humic 60856 -humid 54622 -humidified 57831 -humidifier 59292 -humidifiers 63601 -humidity 50143 -humiliate 62469 -humiliated 59424 -humiliating 59774 -humiliation 56140 -humility 57741 -hummer 63077 -humming 59357 -hummingbird 60670 -hummingbirds 64905 -hummus 61940 -humongous 64905 -humor 47424 -humoral 56721 -humorist 63245 -humorous 53211 -humorously 65170 -humour 53124 -humourous 62066 -hump 57440 -humpback 64423 -humping 59923 -humps 60952 -humus 64201 -hun 57009 -hunch 61699 -hunched 61940 -hunches 65170 -hundred 44426 -hundreds 42729 -hundredth 62066 -hung 49382 -hungarian 62917 -hungary 61152 -hunger 51078 -hungover 63792 -hungry 49992 -hunk 57160 -hunks 57696 -hunky 62331 -hunt 48811 -hunted 56140 -hunter 50848 -hunter's 64905 -hunters 52940 -hunting 46784 -huntington 63991 -hunts 56827 -hur 63991 -hurdle 56585 -hurdles 56324 -hurl 63601 -hurled 60000 -hurley 63991 -hurling 60238 -hurricane 50461 -hurricanes 56518 -hurried 59357 -hurriedly 63245 -hurry 53392 -hurrying 64201 -hurt 45358 -hurtful 60238 -hurting 52130 -hurtling 65170 -hurts 51640 -hus 65170 -husband 43234 -husband's 52712 -husbandry 59702 -husbands 53899 -hush 61472 -hushed 61818 -husk 62469 -husky 60670 -hussain 63991 -hussein 62613 -husseindeweyyts 64201 -hustle 57160 -hustled 63601 -hustler 58162 -hustlers 64201 -hustling 63601 -hut 55107 -hutch 64905 -hutchinson 62469 -huts 60580 -huxleyi 63077 -hv 59039 -hvac 55766 -hve 59702 -hw 58417 -hwy 62066 -hx 61472 -hy 57524 -hyacinth 62917 -hyaline 60321 -hyaluronan 58470 -hyaluronate 65170 -hyaluronic 59227 -hyaluronidase 62066 -hybrid 45929 -hybridisation 62196 -hybridization 49777 -hybridizations 63419 -hybridize 62613 -hybridized 55130 -hybridizing 63245 -hybridoma 59923 -hybridomas 63991 -hybrids 52886 -hydatid 60762 -hyde 61940 -hyderabad 63245 -hydra 61362 -hydralazine 63792 -hydrangea 65452 -hydrant 62762 -hydrants 63077 -hydrate 55738 -hydrated 56756 -hydrates 62613 -hydrating 59702 -hydration 54857 -hydraulic 49054 -hydraulically 60321 -hydraulics 62066 -hydrazine 58919 -hydric 62917 -hydride 55107 -hydrides 62762 -hydro 56200 -hydrocarbon 51590 -hydrocarbons 53549 -hydrocarbyl 60670 -hydrocephalus 59702 -hydrochloric 56050 -hydrochloride 53124 -hydrochlorothiazide 58017 -hydrocodone 50409 -hydrocolloid 63601 -hydrocortisone 59491 -hydrocracker 64905 -hydrocracking 63792 -hydrodynamic 56452 -hydrodynamical 62762 -hydrodynamics 62613 -hydroelectric 58313 -hydrofluoric 62917 -hydrofluorination 62469 -hydrogel 59424 -hydrogels 65452 -hydrogen 44757 -hydrogenase 65170 -hydrogenated 58162 -hydrogenation 59292 -hydrogens 65170 -hydrogeological 64657 -hydrographic 61256 -hydrolase 58417 -hydrolases 60405 -hydrologic 60321 -hydrological 57923 -hydrology 59357 -hydrolysate 59923 -hydrolysates 62469 -hydrolysed 63419 -hydrolysis 50799 -hydrolytic 59702 -hydrolyze 61818 -hydrolyzed 57318 -hydrolyzes 63601 -hydronephrosis 65170 -hydronic 65170 -hydroperoxide 59630 -hydroperoxides 61362 -hydrophilic 53865 -hydrophilicity 64657 -hydrophobic 51238 -hydrophobicity 62331 -hydroponic 60952 -hydroponics 62613 -hydropower 61256 -hydrostatic 55738 -hydrotherapy 62196 -hydrothermal 57566 -hydrotreated 64657 -hydrotreating 64423 -hydroxide 52459 -hydroxy 56485 -hydroxyanisole 65452 -hydroxyapatite 58417 -hydroxyectoine 65170 -hydroxyl 52233 -hydroxylamine 63419 -hydroxylase 61472 -hydroxylated 62469 -hydroxylation 60952 -hydroxyproline 63792 -hydroxypropyl 63419 -hydroxypropylmethylcellulose 64423 -hydroxyurea 63601 -hygiene 51248 -hygienic 58162 -hygienist 61584 -hygienists 62613 -hygroma 64657 -hygroscopic 63792 -hymen 58632 -hymn 59491 -hymns 60157 -hyn 64657 -hyopneumoniae 61362 -hyorhinis 59357 -hyp 64905 -hype 53226 -hyped 59848 -hyper 57199 -hyperactive 60670 -hyperactivity 57358 -hyperalgesia 65452 -hyperbaric 60670 -hyperbole 63245 -hyperbolic 56420 -hyperbranched 63601 -hypercalcemia 62469 -hypercapnia 62469 -hypercholesterolaemia 65170 -hypercholesterolemia 62196 -hypercholesterolemic 64905 -hypercube 64201 -hyperemic 65452 -hyperfine 62469 -hypergeometric 62613 -hyperglycaemia 63419 -hyperglycemia 58523 -hyperglycemic 62917 -hypergraph 60580 -hyperhomocysteinemia 64423 -hyperhomocysteinemic 64423 -hyperimmune 64423 -hyperinflation 62469 -hyperinsulinemia 63245 -hyperintense 61256 -hyperintensities 65452 -hyperkalemia 64905 -hyperkinetic 65452 -hyperlink 52818 -hyperlinked 61051 -hyperlinks 56721 -hyperlipidemia 63792 -hyperlipidemic 64905 -hypermail 61152 -hypermedia 62469 -hypermethylation 61362 -hyperosmolar 62196 -hyperosmotic 63419 -hyperoxia 63792 -hyperparathyroidism 61584 -hyperphosphatemia 64657 -hyperpigmentation 65452 -hyperplane 61818 -hyperplasia 54749 -hyperplastic 60000 -hyperpolarization 64905 -hyperpolarizing 64423 -hyperreactivity 65452 -hypersensitive 59491 -hypersensitivity 55877 -hyperstimulation 64905 -hypersurface 61472 -hypertension 49124 -hypertensive 52164 -hypertext 57399 -hyperthermia 60952 -hyperthermophilic 63077 -hyperthyroid 64201 -hyperthyroidism 61362 -hypertonic 58065 -hypertonicity 60580 -hypertree 62331 -hypertriglyceridemia 65452 -hypertrophic 55934 -hypertrophied 64201 -hypertrophy 54419 -hypervariable 64657 -hyperventilation 63419 -hypervitaminosis 65170 -hyphae 57122 -hyphal 64201 -hyphen 62613 -hyphenated 65170 -hyphens 64657 -hyping 65452 -hypnosis 54581 -hypnotherapy 62762 -hypnotic 56518 -hypnotizability 65452 -hypnotized 62469 -hypo 63419 -hypoallergenic 64905 -hypochlorite 56420 -hypocotyl 62196 -hypocotyls 64201 -hypocrisy 57482 -hypocrite 61472 -hypocrites 64657 -hypocritical 61051 -hypodermic 62762 -hypoechoic 64423 -hypogaea 64423 -hypoglossal 60762 -hypoglycemia 56756 -hypoglycemic 59227 -hypointense 65452 -hypomethylation 64905 -hyponatremia 63991 -hypoperfusion 64201 -hypophosphataemia 64423 -hypophyseal 65170 -hypoplasia 63077 -hypoplastic 61256 -hypospadias 61818 -hypotension 57122 -hypotensive 59560 -hypotenuse 64423 -hypothalamic 56420 -hypothalamus 57160 -hypothermia 56862 -hypothermic 60492 -hypotheses 52375 -hypothesis 46491 -hypothesised 62917 -hypothesize 57399 -hypothesized 52584 -hypothesizes 64905 -hypothetical 52622 -hypothetically 65170 -hypothyroid 58632 -hypothyroidism 57358 -hypotonic 60492 -hypoxanthine 63601 -hypoxemia 63077 -hypoxia 53182 -hypoxic 55084 -hysterectomy 58113 -hysteresis 56485 -hysteretic 62917 -hysteria 59774 -hysterical 59357 -hysterically 62917 -hysteroscopic 64201 -hytong 64905 -hyundai 58919 -hz 62917 -här 60762 -hónalj 64905 -i 30383 -i'M 63419 -i'd 50832 -i'll 48046 -i'm 43558 -i'ma 60580 -i'r 60238 -i's 63419 -i've 47548 -i'w 64423 -iA 63792 -iATKOS 63991 -iAudio 60580 -iBOLT 59848 -iBT 65452 -iBall 65170 -iBank 62469 -iBone 64201 -iBook 51942 -iBurst 59424 -iC 63245 -iCal 54664 -iCalendar 55037 -iCarly 64905 -iCenterX 58313 -iChat 60078 -iCute 65170 -iD 57160 -iDEA 63991 -iDEN 63245 -iDVD 63077 -iDicto 63991 -iDisk 63245 -iDrive 64905 -iExplore 63077 -iF 64423 -iFanboy 63601 -iFilm 60856 -iFirst 55178 -iFrame 58470 -iFriends 64657 -iGO 61699 -iGizmo 63245 -iGo 61940 -iGoogle 42886 -iGuide 65170 -iH 65452 -iHerb 63991 -iHome 63245 -iI 65170 -iJigg 63077 -iJoomla 62762 -iKnow 64423 -iL 64423 -iLiad 63601 -iLife 57696 -iLike 49867 -iLook 65452 -iLounge 58313 -iLuv 64905 -iM 63601 -iMPACT 63792 -iMRI 64423 -iMac 48776 -iMacs 62613 -iMag 61584 -iMedia 65170 -iMod 65170 -iMovie 58577 -iMusic 63601 -iN 59491 -iNET 60856 -iNKT 60000 -iNOS 55299 -iNav 63419 -iNest 59630 -iNet 65452 -iO 62469 -iON 65170 -iOffer 60492 -iOfferLite 62613 -iOffice 63991 -iOpen 61699 -iOrgSoft 63991 -iP 62613 -iPAQ 52459 -iPHONE 62613 -iPOD 62196 -iPS 64201 -iPaper 53346 -iPaq 59357 -iParenting 62917 -iPass 61152 -iPhone 37326 -iPhone's 58745 -iPhones 56170 -iPhonic 64201 -iPhoto 54078 -iPlay 62469 -iPlayer 51043 -iPmart 61940 -iPod 39351 -iPod's 62196 -iPodLinux 64905 -iPodcast 59923 -iPods 50898 -iPortal 60952 -iPrimus 62196 -iProvo 62469 -iQ 54727 -iQue 63245 -iRazoo 63419 -iReport 58470 -iReports 61472 -iRequest 62331 -iRiver 60952 -iRobot 61051 -iRoom 61472 -iS 57399 -iSCSI 56324 -iSO 64423 -iSOUND 58745 -iSecurity 65452 -iSeries 57399 -iShadow 62066 -iShares 63991 -iSight 60000 -iSite 60670 -iSkin 61940 -iSofter 65170 -iSong 64657 -iSonic 62917 -iSound 61152 -iSpy 63792 -iStockphoto 64657 -iStyles 65170 -iT 60952 -iTALiAN 63419 -iTRAVL 63245 -iTV 63792 -iTalent 60405 -iTnews 62613 -iTouch 60952 -iTouchless 61362 -iTowns 61818 -iTrader 62762 -iTunes 42727 -iVDO 62331 -iVillage 53241 -iWeb 56551 -iWin 63077 -iWon 49417 -iWork 59560 -ia 53830 -iain 64423 -ial 60078 -iam 57785 -iambic 65170 -ian 55657 -iano 63792 -ianpresley 65452 -iatrogenic 60762 -ib 60078 -iba 62917 -ibaa 60762 -ibanez 64657 -ibeatyou 64657 -ibeausol 63601 -ibibo 59039 -ibility 64657 -ibis 62331 -ibiza 60078 -ible 61584 -ibm 56972 -ibn 60492 -iboats 61584 -ibook 60238 -ibritumomab 61362 -ibs 60670 -ibuprofen 57238 -ibys 64905 -ic 53182 -icLiverpool 63601 -icTracker 61472 -ica 63991 -icaADBC 63601 -ical 52546 -ically 59039 -ican 63792 -icant 61152 -icantly 63077 -ice 42109 -iceBar 63991 -iceberg 58688 -icebergs 64201 -icecream 62762 -iced 56585 -iceland 58262 -icemaker 65170 -ices 63245 -icf 62066 -ich 51229 -ichigo 64423 -ici 60321 -icici 60670 -icicle 64657 -icicles 65170 -icing 56140 -icky 60762 -ico 63077 -icon 39291 -iconic 52411 -iconicarchive 62066 -iconlover 64423 -iconographic 64423 -iconography 62066 -iconpicture 61584 -icons 46818 -iconv 60492 -icosahedral 62469 -icp 64905 -icq 60762 -ics 59227 -ict 63419 -icy 55060 -icyou 64657 -id 45770 -id's 64905 -idRekrutacja 65170 -ida 63792 -idaho 58113 -ide 56756 -idea 39006 -ideal 42346 -idealism 60670 -idealist 63792 -idealistic 60078 -idealized 58162 -ideally 51330 -ideals 53565 -ideas 40678 -ideation 62469 -idem 64905 -idempotent 60952 -idempotents 64657 -ident 65170 -identical 44389 -identically 57199 -identifiable 49873 -identification 43169 -identifications 60492 -identified 40082 -identifier 50454 -identifiers 55578 -identifies 48363 -identify 40581 -identifying 45395 -identities 52559 -identity 43028 -ideo 63991 -ideological 53138 -ideologically 61152 -ideologies 58470 -ideologues 63991 -ideology 53301 -ides 64423 -idiocy 60580 -idiom 61940 -idiomas 64423 -idiomatic 62613 -idioms 60670 -idiopathic 53865 -idiosyncrasies 63601 -idiosyncratic 58212 -idiot 52074 -idiotic 57318 -idiots 54151 -idiotype 63792 -idiotypic 65170 -idk 56200 -idle 49992 -idleness 65170 -idler 63077 -idles 63792 -idling 59630 -idly 60856 -idm 64423 -ido 64423 -idol 54133 -idolatry 64423 -idole 64423 -idolized 64905 -idols 58417 -ids 58632 -idx 63991 -idyllic 57318 -ie 42825 -ied 60670 -ieee 64905 -iene 64905 -ies 56756 -iether 60762 -iets 63792 -if 28289 -ifaw 60580 -ifconfig 64657 -iff 55684 -iffy 63792 -ification 64905 -ified 62066 -ifm 64201 -iframe 55130 -iframes 63077 -ifs 61940 -ifsc 58979 -ig 58979 -igang 60580 -ight 65452 -igloo 64905 -ign 63077 -ignated 65170 -igneous 60157 -ignimbrite 64201 -ignite 57566 -ignited 58313 -ignites 62066 -igniting 62762 -ignition 52571 -ignorance 53241 -ignorant 53081 -ignore 47126 -ignored 49313 -ignores 53796 -ignoring 51877 -igo 63245 -igor 64423 -igourmet 65452 -igri 61256 -igual 61699 -iguana 64201 -ih 60856 -ihackr 63991 -ihe 59227 -ihn 63077 -ihr 58017 -ihre 62469 -ihrem 65170 -ihren 65452 -ihrer 65170 -ii 48586 -iiNet 61699 -iid 61362 -iii 51321 -iin 65170 -iis 59848 -iit 63792 -iittala 65452 -ij 48595 -ijk 60952 -ijn 65452 -ik 53052 -ike 56388 -ikea 61940 -iki 64905 -ikke 61818 -ikl 65452 -il 47875 -ila 65452 -ilar 60405 -ile 58313 -ileal 61152 -ileostomy 63991 -ileum 60238 -ileus 65170 -ili 62762 -iliac 55877 -iliofemoral 62917 -ilirida 64905 -ilk 60238 -ill 45186 -illegal 44041 -illegality 64905 -illegally 53438 -illegals 59923 -illegible 63792 -illegitimate 55963 -illicit 54479 -illinois 56652 -illite 65170 -illiteracy 61584 -illiterate 58979 -illness 46852 -illnesses 52559 -illogical 60321 -ills 60000 -illum 65170 -illumi 64657 -illuminant 62762 -illuminate 54601 -illuminated 52435 -illuminates 58313 -illuminati 61051 -illuminating 55578 -illumination 51931 -illusion 52435 -illusions 58017 -illusory 57482 -illustrate 47883 -illustrated 45222 -illustrates 47207 -illustrating 50122 -illustration 49038 -illustrations 49893 -illustrative 53501 -illustrator 54151 -illustrators 60492 -illustrious 57482 -ilocos 63077 -iloveray 63792 -iloveyou 57009 -ilps 64905 -ils 59923 -ily 57923 -im 40548 -ima 57831 -imac 61699 -image 34962 -image's 62917 -imagearrow 65452 -imaged 55684 -imagemixer 62066 -imagen 62066 -imagenes 63601 -imagens 61256 -imager 59227 -imagers 63792 -imagery 50815 -images 37559 -imagiers 65170 -imaginable 57970 -imaginal 63077 -imaginary 51349 -imagination 50350 -imaginations 60856 -imaginative 53865 -imaginatively 62469 -imagine 45419 -imagined 52940 -imagines 60492 -imaging 44437 -imagining 57482 -imal 62196 -imam 59357 -imap 65452 -imate 62331 -imately 61472 -imatinib 61818 -imation 64201 -imax 65170 -imbalance 53712 -imbalanced 61940 -imbalances 58017 -imbecile 65452 -imbedded 60952 -imbibe 63991 -imbibing 64905 -imbricata 64905 -imbue 63245 -imbued 60157 -imc 64657 -imdb 65452 -ime 61699 -imeem 49695 -imei 62613 -iment 65452 -imental 63991 -iments 62613 -img 52399 -imi 62613 -imidazole 60405 -imidazolium 64657 -imide 62762 -imikimi 65452 -imine 62469 -imines 62613 -iminium 65452 -imino 62066 -imipenem 65170 -imipramine 62613 -imitate 56452 -imitated 61051 -imitates 62762 -imitating 60078 -imitation 54643 -imitations 62331 -imitative 63991 -imitators 64905 -imitrex 57923 -imma 60670 -immaculate 58919 -immaculately 63419 -immagini 65452 -immanent 62469 -immaterial 61472 -immature 52725 -immatures 65170 -immaturity 63077 -immeasurable 62613 -immeasurably 64657 -immediacy 60321 -immediate 42729 -immediately 40930 -immediatly 63419 -immense 52351 -immensely 54341 -immensity 65452 -immer 58688 -immerse 58523 -immersed 51920 -immerses 63792 -immersing 60580 -immersion 52899 -immersive 59101 -immigrant 49913 -immigrants 49246 -immigrate 63792 -immigrated 60000 -immigrating 65170 -immigration 47537 -imminent 53796 -immiscible 64423 -immittance 64657 -immobile 61584 -immobiliser 65452 -immobility 63792 -immobilization 57696 -immobilize 64905 -immobilized 53167 -immobilizing 62066 -immoral 58212 -immorality 65452 -immortal 56585 -immortality 59227 -immortalized 59630 -immovable 63245 -immune 44701 -immunisation 61256 -immunised 65170 -immunities 60321 -immunity 49828 -immunization 52597 -immunizations 59227 -immunized 55738 -immunizing 61699 -immunoassay 57524 -immunoassays 62469 -immunobead 64905 -immunoblot 59774 -immunoblots 61472 -immunoblotted 62613 -immunoblotting 58065 -immunochemical 63245 -immunocompetent 59227 -immunocompromised 60238 -immunocytochemical 60580 -immunocytochemistry 61051 -immunodeficiency 52268 -immunodeficient 64201 -immunodominant 64657 -immunoelectron 65170 -immunoelectrophoresis 65170 -immunofluorescence 55107 -immunofluorescent 62613 -immunogen 64905 -immunogenic 58162 -immunogenicity 60580 -immunoglobulin 53167 -immunoglobulins 59774 -immunogold 65452 -immunohistochemical 54114 -immunohistochemically 62469 -immunohistochemistry 56827 -immunolabeling 65452 -immunolocalization 65452 -immunologic 56756 -immunological 54321 -immunologically 60670 -immunology 58577 -immunomagnetic 64201 -immunomodulatory 62469 -immunoperoxidase 63077 -immunophenotyping 65170 -immunoprecipitate 65170 -immunoprecipitated 58017 -immunoprecipitates 63077 -immunoprecipitation 59101 -immunoreactive 57009 -immunoreactivity 54226 -immunoregulatory 65452 -immunosorbent 56652 -immunospot 64905 -immunostained 61584 -immunostaining 55906 -immunostimulatory 62331 -immunosuppressant 63419 -immunosuppressants 64423 -immunosuppressed 61699 -immunosuppression 58745 -immunosuppressive 56452 -immunotherapeutic 65452 -immunotherapy 60078 -immutable 62196 -imo 60670 -imp 61699 -impact 39219 -impacted 51690 -impacting 55130 -impaction 63245 -impacto 62066 -impactor 64905 -impacts 46681 -impair 54560 -impaired 47764 -impairing 60670 -impairment 49932 -impairments 56050 -impairs 57009 -impala 62196 -impale 63601 -impaled 61818 -impart 56110 -imparted 57923 -impartial 53934 -impartiality 58979 -imparting 58212 -imparts 59424 -impassable 64905 -impasse 60078 -impassioned 60238 -impatience 60952 -impatient 57876 -impatiently 63245 -impeach 61472 -impeached 64905 -impeachment 57785 -impeccable 56356 -impeccably 62331 -impedance 49022 -impedances 60157 -impede 55849 -impeded 59702 -impedes 61818 -impediment 58313 -impediments 59491 -impeding 61584 -impelled 63419 -impeller 57923 -impellers 64423 -impending 54059 -impenetrable 60321 -imperative 51731 -imperatives 58979 -imperatorin 61152 -imperceptible 65452 -imperceptibly 65452 -imperfect 54727 -imperfecta 64201 -imperfection 62917 -imperfections 57199 -imperfectly 63991 -imperforate 65170 -imperial 53241 -imperialism 59630 -imperialist 60952 -imperialists 63601 -imperiled 63077 -impermeable 59630 -impermissible 65170 -impermissibly 65170 -impersonal 59491 -impersonate 60492 -impersonating 62066 -impersonation 60492 -impersonator 62917 -impervious 57831 -impetigo 63419 -impetus 55202 -impinge 59774 -impingement 60856 -impinges 64905 -impinging 61699 -implant 50654 -implantable 56652 -implantation 50654 -implanted 51721 -implanting 62762 -implants 50766 -implausible 61940 -implausibly 65452 -implement 44124 -implementation 42040 -implementations 52872 -implemented 44433 -implementing 46210 -implements 51175 -implicate 58919 -implicated 51444 -implicates 62196 -implicating 61584 -implication 53301 -implications 45072 -implicit 51482 -implicitly 54622 -implied 49103 -implies 46821 -imploding 65170 -implore 63792 -implored 64905 -implosion 60762 -imply 46332 -implying 53485 -impolite 62917 -import 43812 -importance 41680 -important 35074 -importante 62613 -importantly 52315 -importation 57399 -imported 48097 -importer 55631 -importers 56585 -importing 52597 -imports 50742 -impose 49620 -imposed 47100 -imposes 54770 -imposing 51835 -imposition 55274 -impossibility 59774 -impossible 45191 -impossibly 59630 -imposter 61152 -impotence 54749 -impotent 57696 -impound 62331 -impounded 59292 -impoundment 63077 -impoverished 56652 -impr 64657 -impractical 57358 -imprecise 61584 -imprecision 62762 -impregnate 63991 -impregnated 57609 -impregnating 64657 -impregnation 61699 -impress 52496 -impressed 47729 -impresses 58688 -impressing 61256 -impression 47570 -impressionable 63601 -impressionist 65170 -impressionistic 64657 -impressions 51303 -impressive 46354 -impressively 60321 -impreza 64423 -imprimir 63245 -imprint 54857 -imprinted 55552 -imprinter 63991 -imprinting 58523 -imprints 61051 -imprison 64905 -imprisoned 55711 -imprisonment 54499 -improbable 57923 -impromptu 57876 -improper 51974 -improperly 54096 -impropriety 65452 -improv 59164 -improve 38312 -improved 41291 -improvement 42734 -improvements 44815 -improves 48199 -improving 43948 -improvisation 58162 -improvisational 61256 -improvisations 64201 -improvise 60856 -improvised 57358 -improvising 63419 -impugned 65452 -impulse 52597 -impulses 56827 -impulsive 57122 -impulsivity 65170 -impunity 61472 -impure 63077 -impurities 53501 -impurity 53286 -imputation 64201 -imputed 61362 -imran 65452 -ims 64423 -imtoo 63245 -imum 59774 -imágenes 63419 -in 17296 -inBox 62762 -inCreate 61256 -inGBP 65170 -inXammatory 65452 -ina 55906 -inability 49313 -inaccessibility 65452 -inaccessible 56200 -inaccuracies 53549 -inaccuracy 56080 -inaccurate 52982 -inaccurately 63077 -inaction 60000 -inactivate 59848 -inactivated 55130 -inactivates 63601 -inactivating 61699 -inactivation 52699 -inactive 50560 -inactivity 58262 -inadequacies 61818 -inadequacy 59702 -inadequate 49359 -inadequately 59491 -inadmissible 61699 -inadvertent 58417 -inadvertently 55130 -inadvisable 64201 -inal 61699 -inalienable 63792 -inane 62613 -inanimate 60000 -inapplicable 63601 -inappropriate 41101 -inappropriately 58860 -inasmuch 59164 -ination 60762 -inattentive 63245 -inaudible 62917 -inaugural 52913 -inaugurate 63245 -inaugurated 56551 -inaugurates 62196 -inaugurating 65170 -inauguration 58212 -inbetween 63077 -inboard 60952 -inborn 61940 -inbound 54879 -inbox 47482 -inbred 57831 -inbreeding 58860 -inbuilt 61472 -inc 48399 -incandescent 57199 -incantation 65170 -incapable 53952 -incapacitate 64657 -incapacitated 61152 -incapacity 58577 -incarcerated 56585 -incarceration 58577 -incarnate 63991 -incarnation 58212 -incarnations 63077 -incase 58632 -incendiary 61584 -incense 59227 -incensed 63792 -incentive 48954 -incentives 48985 -inception 53124 -incessant 59101 -incessantly 62066 -incest 53066 -incestuous 65452 -inch 43902 -inched 64657 -inches 43383 -inching 63792 -incidence 44968 -incidences 58470 -incident 45116 -incidental 54078 -incidentally 59039 -incidents 49405 -incinerated 64905 -incineration 60670 -incinerator 63077 -incinerators 64201 -incipient 59101 -incisal 64201 -incised 61699 -incision 54005 -incisional 63792 -incisions 59164 -incisive 60492 -incisor 58577 -incisors 58688 -incite 60405 -incited 63792 -incitement 62762 -inciting 60762 -incl 56485 -inclement 59491 -inclination 54459 -inclinations 63601 -incline 58577 -inclined 50774 -include 35092 -included 37431 -includes 36764 -including 33326 -inclusion 46362 -inclusions 55398 -inclusive 49620 -inclusiveness 65170 -incognito 64201 -incoherence 65452 -incoherent 59101 -income 40142 -incomes 52085 -incoming 48538 -incommensurate 62066 -incomparable 58688 -incompatibilities 63601 -incompatibility 58688 -incompatible 53331 -incompetence 58979 -incompetent 56652 -incomplete 49207 -incompleted 58262 -incompletely 59357 -incompleteness 63245 -incomprehensible 60078 -incompressibility 65452 -incompressible 60762 -inconceivable 61940 -inconclusive 60000 -incongruent 62917 -incongruous 63077 -inconsequential 61362 -inconsiderate 65170 -inconsistencies 55684 -inconsistency 57440 -inconsistent 50898 -inconspicuous 63419 -incontinence 54245 -incontinent 61362 -incontrovertible 65452 -inconvenience 51358 -inconvenienced 64657 -inconveniences 62469 -inconveniencing 65452 -inconvenient 57609 -incorporate 47318 -incorporated 45120 -incorporates 49435 -incorporating 48372 -incorporation 49028 -incorrect 47467 -incorrectas 64201 -incorrectly 52521 -incorrigible 65452 -increase 36286 -increased 37620 -increases 41482 -increasing 40264 -increasingly 44500 -incredible 46500 -incredibly 48208 -incredulous 64201 -increible 64201 -increment 52233 -incremental 51095 -incrementally 60078 -incremented 60321 -incrementing 63419 -increments 53470 -incriminating 64201 -incubate 61472 -incubated 44913 -incubating 56170 -incubation 47328 -incubations 59424 -incubator 54770 -incubators 62613 -incubus 62762 -incumbent 52187 -incumbent's 65452 -incumbents 58523 -incur 53052 -incurable 60078 -incurred 49464 -incurring 57524 -incurs 58860 -incursion 63601 -incursions 62613 -ind 57785 -indebted 55604 -indebtedness 58262 -indecency 61940 -indecent 57609 -indecision 63991 -indeed 45002 -indefatigable 64423 -indefinite 56110 -indefinitely 54459 -indelible 60157 -indelibly 63991 -indemnification 62331 -indemnify 56420 -indemnity 57046 -indent 60078 -indentation 56110 -indentations 59560 -indented 62917 -indenter 65452 -indenting 64201 -indentured 64905 -independant 58523 -independence 48363 -independent 39444 -independently 45992 -independents 59630 -independiente 65452 -indepth 61818 -indescribable 61818 -indesign 63077 -indestructible 60492 -indeterminacy 63991 -indeterminate 58017 -index 39043 -indexable 63991 -indexation 63792 -indexed 41521 -indexer 61584 -indexes 50638 -indexing 51473 -india 47737 -indiaglitz 60670 -indian 48653 -indiana 54727 -indianapolis 60762 -indians 59923 -indica 58979 -indicate 40916 -indicated 40785 -indicates 42340 -indicating 44414 -indication 47170 -indications 50881 -indicative 50129 -indicator 46604 -indicators 47184 -indices 48088 -indicia 58632 -indict 62613 -indicted 54170 -indictment 53438 -indictments 59702 -indicts 65170 -indie 50560 -indienne 64905 -indies 65452 -indiestore 63245 -indifference 56652 -indifferent 56356 -indigenous 48949 -indigent 60405 -indigestion 62066 -indignant 63792 -indignation 61584 -indignity 64201 -indigo 60762 -indir 55631 -indirect 47675 -indirection 64201 -indirectly 50507 -indiscriminate 60952 -indiscriminately 62762 -indispensable 53746 -indispensible 64657 -indisputable 62762 -indistinct 62917 -indistinguishable 55604 -indium 58688 -individual 37584 -individual's 51368 -individualised 63792 -individualism 62066 -individualist 64201 -individualistic 62066 -individuality 58162 -individualization 65452 -individualized 54857 -individually 48021 -individuals 40397 -indlæg 63245 -indo 62762 -indoctrination 63601 -indocyanine 65452 -indole 61472 -indolent 65170 -indomethacin 59923 -indomitable 63792 -indonesia 48672 -indonesian 63077 -indoor 47197 -indoors 53167 -induce 46957 -induced 42598 -inducement 61256 -inducements 65452 -inducer 60405 -inducers 61818 -induces 49429 -inducible 55631 -inducing 52584 -inductance 55963 -inducted 58162 -inductee 64423 -inductees 65170 -induction 45495 -inductive 55323 -inductively 58979 -inductor 56827 -inductors 61051 -indulge 55060 -indulged 62196 -indulgence 60321 -indulgent 61051 -indulging 59227 -industrial 41722 -industrialisation 63601 -industrialised 60856 -industrialist 64201 -industrialists 63792 -industrialization 59227 -industrialized 55793 -industrially 63601 -industrials 64423 -industrielle 64423 -industries 45352 -industrious 63991 -industry 38120 -industry's 50454 -indwelling 61472 -indy 60670 -indymedia 62469 -indymogul 63245 -ine 60238 -ined 60580 -inedible 65170 -ineffective 52927 -ineffectiveness 62917 -ineffectual 61152 -inefficiencies 59774 -inefficiency 58979 -inefficient 53934 -inefficiently 63991 -inelastic 58417 -ineligibility 63245 -ineligible 55604 -inept 59923 -ineptitude 64201 -inequalities 53762 -inequality 50710 -inequitable 64201 -inequities 62613 -inequity 63419 -inert 52858 -inertia 55793 -inertial 56935 -ines 57876 -inescapable 60078 -inet 61362 -inevitability 62196 -inevitable 49651 -inevitably 51473 -inexact 63601 -inexhaustible 63991 -inexorable 63077 -inexorably 62613 -inexpensive 49899 -inexpensively 61818 -inexperience 61818 -inexperienced 55014 -inexplicable 60492 -inexplicably 61051 -inextricably 59630 -inf 58523 -infact 59227 -infallible 61940 -infamous 52268 -infancy 56110 -infant 47585 -infant's 59923 -infantile 55992 -infantilism 58417 -infantry 57009 -infants 47619 -infarct 53613 -infarcted 60762 -infarction 52107 -infarctions 62469 -infarcts 60321 -infatuated 62469 -infatuation 62331 -infeasibility 63419 -infeasible 63601 -infect 55014 -infected 45220 -infecting 57524 -infection 42610 -infections 46210 -infectious 48756 -infective 60000 -infectivity 58113 -infects 59774 -infer 54749 -inference 53646 -inferences 56021 -inferential 62331 -inferior 50157 -inferiority 60952 -infernal 62613 -inferno 60856 -inferred 52496 -inferring 60321 -infers 62762 -infertile 57609 -infertility 54188 -infest 64905 -infestans 63991 -infestation 57009 -infestations 59424 -infested 55766 -infidel 63792 -infidelity 61152 -infield 60157 -infielder 63601 -infighting 64905 -infill 60405 -infiltrate 56231 -infiltrated 57482 -infiltrates 59227 -infiltrating 57696 -infiltration 52622 -infiltrative 64657 -infimum 64423 -infinite 48796 -infinitely 54245 -infinitesimal 59164 -infiniti 64201 -infinitive 64423 -infinity 54380 -infirm 63991 -infirmity 63991 -inflame 64657 -inflamed 57122 -inflammable 64905 -inflammasome 63245 -inflammation 49446 -inflammatory 47279 -inflata 63991 -inflatable 54857 -inflatables 63792 -inflate 58632 -inflated 54059 -inflates 62331 -inflating 61152 -inflation 47791 -inflationary 57358 -inflaton 64657 -inflected 63991 -inflection 60405 -inflections 64423 -inflexibility 64201 -inflexible 59702 -inflict 58313 -inflicted 56756 -inflicting 60580 -infliction 61362 -inflight 62331 -infliximab 62469 -inflorescence 61362 -inflow 55821 -inflows 57970 -influence 40911 -influenced 46030 -influencers 65170 -influences 47522 -influencing 51095 -influent 61152 -influential 49639 -influenza 50256 -influenzae 58860 -influx 53024 -info 36428 -infoUSA 63601 -infobox 61940 -infobutton 63991 -infocus 63792 -infografia 65452 -infolivetvenglish 63601 -infomation 60762 -infomercial 65170 -inform 46269 -informa 64657 -informacion 65452 -información 59164 -informal 47939 -informality 63077 -informally 58313 -informant 57009 -informants 58919 -informatica 65452 -informatics 59560 -informatie 60670 -informatike 64905 -information 29594 -informationCOPYRIGHT 63245 -informationPrivacy 55934 -informational 46274 -informations 54969 -informatique 62762 -informative 48959 -informaworld 50553 -informed 42817 -informer 62613 -informing 53286 -informs 54622 -infos 61152 -infoscience 63245 -infotainment 65452 -infra 58113 -infraction 62066 -infractions 61362 -infrared 48143 -infrarenal 65452 -infrastructural 61472 -infrastructure 44218 -infrastructures 57318 -infrequent 55684 -infrequently 58523 -infringe 56551 -infringed 60405 -infringement 49999 -infringements 61940 -infringes 55107 -infringing 52940 -infront 58577 -infuriated 62066 -infuriating 65170 -infuse 60238 -infused 52940 -infuses 63419 -infusing 60856 -infusion 48529 -infusions 54706 -ing 41803 -ingame 64201 -ingen 65170 -ingenieur 61584 -ingenious 56485 -ingeniously 64905 -ingens 62066 -ingenuity 58417 -ingest 58802 -ingested 55526 -ingesting 59848 -ingestion 54151 -ingilizce 63601 -ingles 62762 -ingly 60762 -inglés 63077 -ingore 61940 -ingot 60321 -ingots 60238 -ingrained 59774 -ingredient 50087 -ingredients 46204 -ingress 59292 -ingrid 64423 -ingrooves 59560 -ingrown 62917 -ingrowth 63991 -ings 56050 -ington 65452 -inguin 63419 -inguinal 58523 -inguruan 63419 -inhabit 56756 -inhabitant 60321 -inhabitants 52130 -inhabited 55766 -inhabiting 61051 -inhabits 62066 -inhalant 63792 -inhalants 65452 -inhalation 53109 -inhale 59164 -inhaled 53662 -inhaler 56862 -inhalers 60492 -inhaling 59491 -inherent 47980 -inherently 52244 -inherit 55348 -inheritance 52291 -inherited 49400 -inheritence 65452 -inheriting 63077 -inherits 59101 -inhibin 62331 -inhibit 48278 -inhibited 48025 -inhibiting 52233 -inhibition 45490 -inhibitions 63792 -inhibitor 47392 -inhibitors 48097 -inhibitory 49108 -inhibits 50454 -inhomogeneities 63601 -inhomogeneity 60000 -inhomogeneous 57524 -inhospitable 62469 -inhouse 63419 -inhuman 61256 -inhumane 64657 -inhumanity 63792 -ini 56756 -inicio 62613 -inimitable 62331 -iniquitous 58919 -iniquity 64905 -init 55821 -initial 39389 -initialisation 63077 -initialization 56231 -initialize 56420 -initialized 57440 -initializes 63792 -initializing 61256 -initially 44385 -initials 56140 -initiate 49446 -initiated 46893 -initiates 54439 -initiating 52435 -initiation 48431 -initiations 65170 -initiative 46253 -initiatives 46657 -initiator 57009 -initiators 62469 -initio 54835 -initrd 65170 -inject 54857 -injectable 57318 -injected 46982 -injecting 54023 -injection 44129 -injections 50206 -injective 65452 -injector 54519 -injectors 58113 -injects 60157 -injunction 53485 -injunctions 61584 -injunctive 59039 -injure 57440 -injured 46199 -injures 60000 -injuries 46118 -injuring 58212 -injurious 57785 -injury 42405 -injustice 55877 -injustices 59357 -ink 47093 -inked 59357 -inkjet 54380 -inkling 62613 -inks 54664 -inky 64201 -inlaid 60078 -inland 53081 -inlaw 65170 -inlaws 64201 -inlay 58577 -inlays 60856 -inlet 48933 -inlets 61051 -inline 49394 -inlined 58802 -inmate 53712 -inmate's 63245 -inmates 51425 -inmyname 63601 -inn 52765 -inna 63991 -innards 65452 -innate 54023 -inner 43192 -innerhalb 64201 -innerliner 59774 -innermost 58417 -innervate 63601 -innervated 62762 -innervating 62762 -innervation 60000 -inning 53517 -innings 53226 -innit 64201 -innocence 54902 -innocent 48576 -innocently 63077 -innocents 64423 -innocuous 60856 -innominate 64201 -innovate 57653 -innovating 63077 -innovation 46242 -innovations 51248 -innovative 43890 -innovatively 63991 -innovator 57566 -innovators 59227 -inns 55963 -innuendo 63601 -innumerable 57831 -ino 64423 -inochi 64201 -inocula 65170 -inoculate 61256 -inoculated 52198 -inoculating 64657 -inoculation 54399 -inoculations 63419 -inoculum 57122 -inode 65170 -inoffensive 65452 -inom 65170 -inoperable 60492 -inoperative 64423 -inorder 64657 -inordinate 62613 -inorganic 50662 -inositol 55604 -inotropic 60492 -inoue 65170 -inp 62066 -inpatient 52765 -inpatients 60856 -input 39822 -inputs 47760 -inputted 64423 -inputting 59774 -inquest 56935 -inquire 50285 -inquired 56791 -inquires 60321 -inquiries 49141 -inquiring 58162 -inquiry 47630 -inquisitive 60856 -inroads 59292 -ins 53934 -insane 51856 -insanely 57831 -insanity 56200 -insatiable 59923 -inscribe 62331 -inscribed 55963 -inscription 56618 -inscriptions 58860 -inscrutable 65170 -inseam 63792 -insect 49809 -insecticidal 62066 -insecticide 58212 -insecticides 57199 -insects 51266 -insecure 55849 -insecurities 62613 -insecurity 56791 -inseminated 61152 -insemination 55398 -inseminations 63601 -insensitive 54360 -insensitivity 60238 -inseparable 60000 -insert 46165 -insertable 63077 -inserted 46918 -inserting 51266 -insertion 48533 -insertional 63419 -insertions 57399 -inserts 51899 -inservice 63245 -inset 53899 -insets 61940 -inshore 60078 -inside 38941 -insider 53081 -insider's 59923 -insiderpages 59227 -insiders 56827 -insides 61256 -insidious 59101 -insight 44927 -insightful 54133 -insights 48025 -insignia 58688 -insignificant 54321 -insinuating 63991 -insipid 64201 -insipidus 62762 -insist 51541 -insisted 51303 -insistence 56021 -insistent 60952 -insistently 65452 -insisting 55738 -insists 52351 -insofar 56551 -insole 58577 -insoles 63245 -insoluble 53746 -insolvency 57482 -insolvent 61472 -insomnia 56021 -insomniac 65170 -inspect 51453 -inspected 51043 -inspecting 57566 -inspection 45287 -inspections 50591 -inspector 52363 -inspector's 64905 -inspectors 54341 -inspects 60405 -inspiration 47741 -inspirational 52074 -inspirations 60856 -inspiratory 56518 -inspire 50199 -inspired 45270 -inspires 53454 -inspiring 51026 -inspiron 59357 -inspite 62331 -inst 65452 -instabilities 57876 -instability 50157 -instal 62066 -install 40381 -installable 64423 -installation 42515 -installations 51193 -installed 41561 -installer 50940 -installers 56518 -installing 46272 -installment 52597 -installments 57084 -installs 53454 -instalment 60952 -instalments 61818 -instance 45761 -instanceof 59039 -instances 47867 -instant 44266 -instantaneous 53024 -instantaneously 59164 -instante 61584 -instantiate 64657 -instantiated 61699 -instantiation 61152 -instantiator 63419 -instantly 45606 -instants 62917 -instar 59630 -instead 39707 -instep 65170 -instigate 63601 -instigated 60952 -instigation 65170 -instil 65170 -instill 57653 -instillation 60952 -instilled 59164 -instilling 60580 -instills 64905 -instinct 52712 -instinctive 59848 -instinctively 59702 -instincts 57009 -instinctual 63601 -institute 49802 -institute's 65170 -instituted 54283 -institutes 53746 -instituting 60157 -institution 45262 -institution's 56231 -institutional 46045 -institutionalised 64905 -institutionalization 63419 -institutionalized 58688 -institutionally 63077 -institutions 43408 -instore 63245 -instproc 63245 -instream 63077 -instruct 54151 -instructed 50823 -instructing 58313 -instruction 45023 -instructional 49476 -instructions 41760 -instructive 57653 -instructor 49313 -instructor's 60405 -instructors 52051 -instructs 58212 -instrument 44827 -instrument's 65452 -instrumental 48653 -instrumentalist 65452 -instrumentalists 65170 -instrumentals 60405 -instrumentation 53095 -instrumented 60157 -instruments 45641 -instvar 62066 -instyledotcom 55821 -insubstantial 65452 -insufferable 65452 -insufficiency 54540 -insufficient 49302 -insufficiently 60762 -insular 59560 -insulate 59702 -insulated 51899 -insulating 50638 -insulation 48473 -insulative 61256 -insulator 56050 -insulators 63077 -insulin 46128 -insulins 65170 -insult 53646 -insulted 59491 -insulting 56485 -insults 55934 -insurable 63601 -insurance 39088 -insurances 63792 -insure 50439 -insured 50446 -insurer 53256 -insurer's 63601 -insurers 46348 -insures 57785 -insurgency 58365 -insurgent 59491 -insurgents 57831 -insuring 57482 -insurmountable 61051 -insurrection 63991 -int 44528 -int'l 62613 -intFileLooper 61699 -intFileNumberToUse 65452 -intMonth 62762 -intact 48212 -intake 46079 -intakes 55398 -intangible 55992 -intangibles 62762 -inte 58313 -integer 49291 -integers 55202 -integra 63991 -integrability 63419 -integrable 60856 -integral 45504 -integrally 58417 -integrals 55526 -integrand 62762 -integrase 63991 -integrate 47585 -integrated 41790 -integrates 51783 -integrating 49500 -integration 43520 -integrations 60238 -integrative 55684 -integrator 55877 -integrators 59039 -integrin 54096 -integrins 58860 -integrity 46555 -intel 53613 -intellect 57696 -intellectual 44902 -intellectually 56231 -intellectuals 58417 -intelligence 45643 -intelligent 46969 -intelligently 54581 -intelligentsia 65452 -intelligibility 60670 -intelligible 61818 -intempo 65170 -intend 48076 -intended 40428 -intending 55178 -intends 50446 -intense 46423 -intensely 54519 -intensification 59923 -intensified 55849 -intensifies 59292 -intensify 56935 -intensifying 59848 -intensities 51043 -intensity 43590 -intensive 46849 -intensively 56518 -intent 46723 -intention 47248 -intentional 52805 -intentionally 52040 -intentions 50906 -intently 60762 -intents 61818 -inter 52818 -interacial 65452 -interact 46960 -interacted 58632 -interacting 50178 -interaction 41569 -interactional 63601 -interactions 44032 -interactive 43562 -interactively 58162 -interactives 64423 -interactivity 55130 -interacts 52107 -interagency 60000 -interannual 62066 -interassay 64423 -interatomic 61152 -interaural 64201 -interband 64423 -interbank 60238 -interbedded 64657 -interbody 64657 -intercalated 57160 -intercalating 64657 -intercalation 62066 -intercalatum 58919 -intercellular 55963 -intercept 54540 -intercepted 58523 -intercepting 63991 -interception 56972 -interceptions 60492 -interceptor 59702 -intercepts 59774 -intercession 63419 -intercessor 65452 -interchain 65170 -interchangable 65452 -interchange 53712 -interchangeable 56200 -interchangeably 60000 -interchanged 64201 -interchanges 62762 -interchanging 64201 -intercity 64905 -intercollegiate 62066 -intercom 58065 -intercomparison 65452 -interconnect 53109 -interconnected 53952 -interconnectedness 65452 -interconnecting 56110 -interconnection 54560 -interconnections 59560 -interconnectivity 65452 -interconnects 61051 -intercontinental 61940 -intercooler 63792 -intercostal 58632 -intercourse 53010 -intercultural 61051 -intercurrent 64657 -interdepartmental 64905 -interdependence 56899 -interdependencies 61940 -interdependency 65170 -interdependent 57923 -interdigitating 64201 -interdisciplinary 52152 -interelectrode 65452 -interes 63601 -interest 37388 -interested 38939 -interesting 40063 -interestingly 60238 -interests 42663 -interface 41235 -interfaced 58802 -interfaces 48643 -interfacial 54302 -interfacing 57524 -interfaith 61256 -interfere 49086 -interfered 56756 -interference 47170 -interferences 59630 -interferes 55963 -interfering 53454 -interferometer 56827 -interferometers 65170 -interferometric 60238 -interferometry 59227 -interferon 54207 -intergalactic 63419 -intergeneration 62613 -intergenerational 59357 -intergenic 60405 -intergovernmental 56756 -intergranular 60321 -intergrated 64657 -intergroup 62331 -interhelical 61818 -interim 49268 -interindividual 62469 -interior 43866 -interiors 55604 -interjection 64905 -interlaced 61152 -interlacing 62331 -interlaminar 62762 -interlayer 57876 -interlayers 62917 -interleaved 59774 -interleaver 65452 -interleaving 59774 -interleukin 56110 -interlibrary 62196 -interline 65452 -interlinked 63245 -interlock 57923 -interlocked 64657 -interlocking 57923 -interlocutory 62331 -interlude 62196 -interludes 63792 -intermarriage 64905 -intermedia 59560 -intermediaries 59630 -intermediary 55474 -intermediate 45404 -intermediates 54439 -intermediation 63601 -interment 62066 -intermetallic 59630 -intermetallics 65170 -interminable 60580 -intermingled 63792 -intermission 61818 -intermittent 51358 -intermittently 58470 -intermixed 64423 -intermodal 63077 -intermodulation 65170 -intermolecular 54879 -intern 55711 -internacional 62762 -internacionales 63419 -internal 40027 -internalization 58313 -internalize 61256 -internalized 58065 -internalizing 62917 -internally 51069 -internals 60405 -international 37600 -internationale 61256 -internationales 64201 -internationalisation 60078 -internationalization 57785 -internationalized 64905 -internationally 50206 -internationals 62331 -interne 65170 -interned 60492 -internet 39510 -internet's 61051 -internets 61699 -interneurons 62613 -interning 63991 -internist 65452 -internment 61940 -internode 62469 -internodes 62613 -interns 57199 -internship 52303 -internships 55711 -internuclear 63991 -interobserver 60078 -interop 64905 -interoperability 53695 -interoperable 58802 -interoperate 63077 -interorganizational 62469 -interparticle 63792 -interpenetration 65170 -interpersonal 51521 -interphalangeal 62917 -interphase 58979 -interplanetary 63601 -interplay 54992 -interpolate 62917 -interpolated 58577 -interpolates 65170 -interpolating 60321 -interpolation 52175 -interposed 59164 -interposition 63077 -interpret 49376 -interpreta 62066 -interpretability 63601 -interpretable 63601 -interpretation 45441 -interpretations 51920 -interpretative 61256 -interpreted 47799 -interpreter 53934 -interpreters 57741 -interpreting 51846 -interpretive 55849 -interprets 57524 -interproximal 64905 -interquartile 62066 -interracial 53081 -interred 63601 -interregional 64657 -interrelated 58065 -interrelation 62613 -interrelations 63601 -interrelationship 60670 -interrelationships 60321 -interrogate 60321 -interrogated 60762 -interrogates 65170 -interrogating 63077 -interrogation 57122 -interrogations 62917 -interrogatories 63792 -interrogators 65170 -interrupt 52363 -interrupted 52130 -interrupter 63792 -interrupting 58470 -interruption 54380 -interruptions 57358 -interrupts 58162 -interruptus 64423 -intersect 56110 -intersected 61940 -intersecting 58688 -intersection 48390 -intersections 55474 -intersects 59357 -intersex 57609 -interspecies 63991 -interspecific 59702 -interspersed 56862 -interstate 53167 -intersted 64905 -interstellar 58417 -interstices 62762 -interstimulus 64905 -intersting 64905 -interstitial 52472 -interstitium 63419 -interstory 65170 -intersymbol 63792 -intertemporal 61818 -intertidal 61362 -intertwined 58313 -intertwining 64423 -interval 45064 -intervals 47005 -intervene 54207 -intervened 60238 -intervenes 62917 -intervening 54096 -intervention 46144 -interventional 57440 -interventionist 62762 -interventions 49388 -interventricular 61051 -intervertebral 59227 -interview 42280 -interviewed 48866 -interviewee 62066 -interviewees 59774 -interviewer 55226 -interviewers 57876 -interviewing 53010 -interviews 45110 -interwar 63792 -interweaving 64905 -interwiki 64905 -interwoven 59848 -intestacy 65452 -intestate 61940 -intestinal 48063 -intestine 53438 -intestines 57831 -inthe 56388 -inthemix 61699 -inthis 64657 -intial 62762 -intima 62762 -intimacy 54857 -intimal 59491 -intimate 48944 -intimated 62196 -intimately 55793 -intimates 60856 -intimation 63601 -intimidate 58577 -intimidated 57238 -intimidating 57238 -intimidation 57785 -intitle 57009 -intl 64905 -into 29406 -intolerable 60238 -intolerance 55631 -intolerant 59848 -intonation 61152 -intone 65170 -intoxicated 57831 -intoxicating 59774 -intoxication 58017 -intra 59774 -intracapsular 63792 -intracardiac 60078 -intracellular 47919 -intracellularly 62196 -intracerebral 60856 -intraclass 62613 -intracoronary 62613 -intracortical 65170 -intracranial 54813 -intractable 57876 -intracytoplasmic 61256 -intraday 57831 -intradermal 62613 -intradiscal 64905 -intraductal 61256 -intraepithelial 58113 -intragastric 61362 -intragenic 65452 -intragranular 64423 -intrahepatic 61362 -intraluminal 60762 -intramedullary 64423 -intramitochondrial 63991 -intramolecular 55274 -intramural 61051 -intramuscular 56551 -intramuscularly 64201 -intranasal 59164 -intranasally 65452 -intranet 55014 -intranets 64423 -intranuclear 62613 -intraobserver 64201 -intraocular 56356 -intraoperative 56140 -intraoperatively 63991 -intraoral 64657 -intrapartum 62469 -intraperitoneal 56452 -intraperitoneally 59227 -intrapsychic 65170 -intrapulmonary 65170 -intrarenal 62066 -intraspecific 61051 -intrastate 62469 -intrathecal 60238 -intrathoracic 61818 -intrathymic 65452 -intratracheal 63419 -intratumoral 63419 -intrauterine 57318 -intravaginal 65170 -intravascular 55657 -intravenous 49405 -intravenously 56200 -intraventricular 60405 -intravitreal 61152 -intrepid 56518 -intrest 64423 -intrested 60000 -intresting 64201 -intricacies 59357 -intricacy 64905 -intricate 52791 -intricately 60078 -intrigue 57970 -intrigued 55906 -intrigues 63245 -intriguing 51942 -intrinsic 49157 -intrinsically 56935 -intro 51202 -introduce 44688 -introduced 41376 -introducer 62196 -introduces 47748 -introducing 47714 -introduction 43619 -introductions 55373 -introductory 50615 -introgression 63991 -intron 57278 -intronic 62613 -introns 62331 -intros 59702 -introspection 62066 -introspective 59774 -introverted 65452 -intrude 62066 -intruded 62613 -intruder 59357 -intruders 60952 -intruding 63601 -intrusion 53630 -intrusions 59164 -intrusive 57122 -intubated 63419 -intubation 56231 -intuition 55657 -intuitionistic 63245 -intuitions 62469 -intuitive 51104 -intuitively 57440 -intussusception 62196 -inulin 58113 -inundated 59227 -inundation 65452 -inure 63077 -inurl 57482 -inuyasha 57566 -inv 65170 -invade 54341 -invaded 54264 -invader 60492 -invaders 59774 -invades 58860 -invading 55202 -invalid 49860 -invalidate 58688 -invalidated 60856 -invalidates 62066 -invalidating 63601 -invalidation 64657 -invalidity 61699 -invaluable 51444 -invariable 63077 -invariably 53796 -invariance 56652 -invariant 50742 -invariants 58688 -invasion 48323 -invasions 59292 -invasive 48243 -invasiveness 62196 -invcrsc 64201 -invent 54813 -invented 50150 -inventing 59039 -invention 40975 -inventions 54902 -inventive 54706 -inventiveness 63991 -inventor 53813 -inventories 54992 -inventors 55526 -inventory 44561 -invents 61362 -inverse 49446 -inversely 53796 -inversion 51425 -inversions 60952 -invert 59357 -invertase 61818 -invertebrate 58745 -invertebrates 57831 -inverted 52051 -inverter 52752 -inverters 59292 -invertible 60238 -inverting 57524 -inverts 62196 -invest 46012 -invested 48431 -investigación 64423 -investigate 44311 -investigated 44256 -investigates 52622 -investigating 48450 -investigation 42907 -investigational 60238 -investigations 47224 -investigative 52648 -investigator 52221 -investigator's 64423 -investigators 48721 -investing 47799 -investment 39951 -investments 45645 -investor 48390 -investor's 60952 -investors 45289 -invests 55552 -inveterate 64905 -invicta 65452 -invidunt 60492 -invigorate 63792 -invigorated 65170 -invigorating 59702 -invincible 60405 -invisalign 61362 -inviscid 65170 -invisibility 65170 -invisible 50545 -invisibleSHIELD 64905 -invitation 48741 -invitational 63991 -invitations 53226 -invite 44917 -invited 44071 -invitees 65170 -invites 49745 -inviting 49541 -invocation 58262 -invocations 64201 -invoice 50865 -invoiced 61818 -invoices 55178 -invoicing 59039 -invoke 54170 -invoked 53346 -invokes 59774 -invoking 56972 -involuntarily 62613 -involuntary 56140 -involution 63077 -involutus 63077 -involve 44489 -involved 38612 -involvement 44692 -involves 43598 -involving 42611 -inward 53454 -inwardly 56170 -inwards 61818 -inxs 65452 -io 53470 -iodide 55793 -iodides 64201 -iodinated 63245 -iodine 55934 -iofoto 58262 -ion 43856 -ionamin 59923 -ionic 49880 -ionisation 60321 -ionization 50898 -ionized 56262 -ionizer 65170 -ionizing 55526 -ionomycin 63419 -ionophore 57318 -ionosphere 65452 -ionospheric 64423 -ionotropic 63245 -ions 46068 -ior 61584 -iota 64905 -ious 60670 -iowa 58577 -ip 48801 -ipaq 63077 -ipconfig 62613 -ipernity 57238 -iphone 48165 -iphones 63077 -iphoto 62066 -ipnajam 61256 -ipod 48605 -ipods 60762 -ipratropium 60157 -ips 64201 -ipsa 64905 -ipsilateral 55178 -ipsum 54133 -iptables 63792 -iq 61472 -ir 52291 -ira 61362 -iran 56899 -iraq 56518 -irate 62613 -irc 60321 -irda 62613 -ire 59101 -ireland 55793 -irene 63419 -iret 64905 -irewards 55793 -iri 63792 -iridescent 60321 -iridium 61051 -iridotomy 62762 -irik 62917 -irinotecan 65170 -iris 55323 -irish 54096 -iriver 60762 -irked 64657 -irks 64905 -irl 65452 -iro 61940 -iron 43299 -ironclad 65170 -ironed 62331 -ironic 54622 -ironically 60157 -ironies 63077 -ironing 57785 -ironman 64423 -irons 55849 -ironwork 63991 -irony 54749 -irq 63419 -irradiance 61472 -irradiated 52074 -irradiating 63419 -irradiation 50379 -irradiations 64905 -irrational 55604 -irrationality 64905 -irrationally 65452 -irreconcilable 62613 -irreducible 56324 -irrefutable 63077 -irregular 50060 -irregularities 56080 -irregularity 60238 -irregularly 58212 -irrelevance 63991 -irrelevant 52387 -irreparable 61051 -irreplaceable 61362 -irrepressible 63991 -irresistible 56862 -irresistibly 63245 -irrespective 51963 -irresponsibility 64201 -irresponsible 57318 -irreverent 60157 -irreversibility 60405 -irreversible 53865 -irreversibly 61152 -irrevocable 59702 -irrevocably 60670 -irrigate 63077 -irrigated 55014 -irrigating 64423 -irrigation 49972 -irritability 61256 -irritable 55474 -irritant 58979 -irritants 62469 -irritate 59491 -irritated 57358 -irritates 62196 -irritating 54188 -irritation 53167 -irritations 65452 -irs 60580 -irvine 61584 -is 19656 -isa 59424 -isaac 63245 -isaemarina 63245 -isbn 57876 -isc 62762 -ischaemia 57741 -ischaemic 55657 -ischemia 51113 -ischemic 49796 -isco 61472 -isd 64201 -isdn 62331 -ise 61940 -ish 57970 -ished 63077 -isi 64657 -isis 63245 -isla 62196 -islam 56972 -islamic 59292 -island 44817 -island's 57046 -islanders 62331 -islands 46840 -isle 58417 -isles 61152 -islet 56388 -islets 56420 -islstl 65170 -ism 61940 -ismajli 64905 -isms 64201 -isn't 39527 -isn'ta 54857 -isnot 64657 -isnt 50129 -iso 52221 -isoHunt 48515 -isoHunt's 58802 -isobar 65452 -isobaric 63792 -isobutane 60580 -isobutyl 61940 -isobutylene 61256 -isochronal 65170 -isochrone 65452 -isocratic 61940 -isocyanate 60238 -isocyanates 65452 -isoelectric 56791 -isoelectronic 65170 -isoenzyme 59424 -isoenzymes 60405 -isoflavones 63991 -isoflurane 59039 -isoform 55738 -isoforms 53630 -isogenic 62196 -isokinetic 64423 -isolate 50192 -isolated 42536 -isolates 48687 -isolating 55154 -isolation 47300 -isolationist 65170 -isolations 64657 -isolator 64657 -isomer 57609 -isomerase 57358 -isomeric 60580 -isomerization 59039 -isomers 57084 -isometric 56231 -isometries 64423 -isometry 65170 -isomorphic 58577 -isomorphism 60000 -isomorphous 63792 -ison 63601 -isoniazid 60762 -isoprene 62331 -isopropanol 60000 -isopropyl 59164 -isoproterenol 58745 -isoscalar 65170 -isosceles 65170 -isospin 62066 -isostructural 64657 -isotherm 57831 -isothermal 56972 -isotherms 57785 -isothiocyanate 60762 -isotonic 57876 -isotope 52164 -isotopes 56827 -isotopic 53988 -isotopically 62762 -isotretinoin 63419 -isotropic 52712 -isotropy 65170 -isotype 59227 -isovector 64905 -isoxazole 65170 -isozyme 59774 -isozymes 60856 -isp 60856 -israel 56110 -israeli 63601 -iss 61940 -issn 60762 -isso 63419 -issuable 63419 -issuance 50966 -issue 37309 -issue's 61051 -issued 41727 -issuer 55014 -issuer's 62331 -issuers 56899 -issues 36715 -issuing 49999 -ist 49764 -istanbul 60762 -iste 65170 -istered 63991 -isthe 63792 -isthmus 63419 -istic 60492 -istics 60952 -isto 63991 -istorii 63419 -istration 62917 -istrefi 64657 -istry 63419 -ists 64201 -it 24080 -it''s 63419 -it'd 53796 -it'll 47839 -it's 33047 -itMayBe 63077 -ita 54770 -itachi 64905 -ital 63792 -italia 59923 -italian 50949 -italiana 60952 -italiano 54226 -italic 59039 -italicised 63077 -italicize 62469 -italicized 58262 -italics 58262 -italy 54685 -itch 57482 -itching 55250 -itchy 53762 -itd 65452 -ite 59848 -itech 64905 -ited 58017 -item 35803 -item's 55373 -itemization 65452 -itemize 62469 -itemized 58745 -items 34923 -iter 64423 -iterate 61152 -iterated 60078 -iterates 63419 -iterating 62469 -iteration 52954 -iterations 55398 -iterative 51953 -iteratively 59101 -iterator 58523 -ites 65170 -ith 53153 -ithaca 65452 -iti 57318 -ities 60078 -itil 60238 -itinerant 62469 -itineraries 51783 -itinerary 54380 -itive 63245 -itll 62196 -itn 60078 -itnnews 64657 -ito 61472 -itouch 63601 -itp 64905 -itraconazole 62066 -its 28918 -itsameSMB's 64423 -itself 40704 -itso 63991 -itt 62066 -itu 63601 -itunes 54151 -itv 64905 -ity 50881 -itz 61051 -iu 55849 -ium 63792 -iusto 65452 -iv 49614 -iva 63991 -ivan 62331 -ivanafukalot 63601 -ivanell 64657 -ive 48648 -ivedik 64657 -iver 65452 -ivermectin 62066 -iverson 64201 -ivoire 59702 -ivory 53779 -ivr 60405 -ivy 58745 -iw 64423 -iwc 64201 -iwconfig 63245 -iwi 64905 -ix 55398 -iy 63601 -iyi 62762 -iyo 62917 -iz 55084 -ization 56652 -ize 63419 -ized 54706 -izing 63792 -izle 55604 -için 55323 -j 41140 -j'ai 60157 -jBPM 65452 -jE 65170 -jEdit 63792 -jMaki 63419 -jQuery 57358 -ja 50227 -jaar 61940 -jab 58523 -jabbing 65170 -jabs 61472 -jacinta 63245 -jack 47851 -jackass 61818 -jacked 59702 -jacket 47600 -jacketed 63245 -jackets 53024 -jackie 59630 -jacking 58632 -jackoff 65452 -jackpot 56356 -jackpots 61818 -jacks 56862 -jackson 52712 -jacksonville 61472 -jacob 61472 -jacobs 59848 -jacquard 63419 -jacqueline 62331 -jacques 62762 -jacuzzi 58470 -jad 62469 -jada 62762 -jade 56791 -jaded 60856 -jae 65170 -jaf 62762 -jag 57970 -jagged 59164 -jaguar 60762 -jaguars 64905 -jah 63419 -jai 62469 -jail 47637 -jailbreak 60078 -jailbroken 63792 -jailed 51996 -jailhouse 64423 -jails 59292 -jaime 59357 -jain 62762 -jaja 59164 -jajaja 59039 -jajajaja 62917 -jajajajaja 65170 -jak 60238 -jakarta 61818 -jake 57876 -jako 64201 -jakobc 57785 -jakupi 64905 -jalanbuntu 65170 -jalapeno 63419 -jalapeño 64905 -jam 50446 -jamaica 60580 -jamaican 62917 -jamais 63419 -jamasakura 62066 -jamendo 64423 -james 50416 -jamesisin 64905 -jameson 58919 -jamesparker 60762 -jamie 56756 -jammed 57238 -jammer 63991 -jammin 64905 -jamming 57923 -jammy 65452 -jams 56518 -jan 55631 -jana 62762 -jane 53847 -janeiro 63419 -janes 63991 -janet 58979 -janetc 63419 -janice 63601 -janitor 61256 -janitorial 59848 -jannaschii 62613 -january 58577 -janvier 63077 -jap 61472 -japamac 64905 -japan 51463 -japanensis 63601 -japanese 49348 -japonica 60856 -japonicum 61256 -jar 51877 -jared 62331 -jargon 57653 -jaro 64657 -jarrah 63419 -jarring 61256 -jars 54399 -jase 64423 -jasmin 62196 -jasmine 57741 -jasmonate 60321 -jason 53882 -jasonbentley 53646 -jasonjlewis 62469 -jasper 62331 -jatar 56585 -jaundice 59164 -jaunt 61940 -java 48552 -javadoc 61818 -javascript 47297 -javier 62917 -jaw 50991 -jawbone 61699 -jawed 65170 -jaws 55448 -jay 54992 -jayden 65170 -jayne 64905 -jays 65170 -jazi 63245 -jazz 47214 -jazzed 63601 -jazzy 58919 -jb 60000 -jboss 63077 -jbwere 58979 -jc 59491 -jcoronella 61940 -jd 61940 -jdbc 60000 -jdm 57482 -jdmlight 63792 -jdong 64201 -jdt 58417 -je 48261 -jealous 52996 -jealousy 56080 -jean 54685 -jeanne 64423 -jeans 48697 -ject 58979 -jected 61584 -jection 62613 -jective 63077 -jects 59848 -jeden 61818 -jedi 60157 -jedoch 65170 -jeep 55060 -jeepers 63991 -jeeps 63792 -jeezy 63245 -jeff 54992 -jefferson 64905 -jeffrey 58802 -jeg 60952 -jeichorn 64657 -jeje 61940 -jejunal 59630 -jejuni 61472 -jejunum 59774 -jel 59101 -jellies 63419 -jello 62196 -jelly 53517 -jellyfish 60856 -jem 64905 -jemi 64905 -jen 59630 -jena 65452 -jenifer 62196 -jenjen 65452 -jenn 64423 -jenna 56791 -jenni 62613 -jennifer 51752 -jennings 63601 -jenny 56585 -jennytull 63419 -jensen 64423 -jeoffpaolo 63792 -jeopardise 63792 -jeopardize 58212 -jeopardized 63792 -jeopardizes 63991 -jeopardizing 62066 -jeopardy 56899 -jepson 64905 -jer 63245 -jercg 60000 -jeremy 57318 -jerk 54302 -jerked 61699 -jerking 56756 -jerkoff 64905 -jerks 59630 -jerky 58919 -jerome 59357 -jerry 55766 -jerryuk 63601 -jersey 50053 -jerseygirl 65452 -jerseys 55738 -jerseyson 60238 -jerusalem 63991 -jess 60000 -jesse 53899 -jessica 52210 -jessie 62196 -jessy 64905 -jest 57318 -jester 63601 -jesuantics 62762 -jesus 53988 -jeszcze 65452 -jet 47456 -jets 52597 -jetski 62331 -jetta 63601 -jetted 61472 -jetting 64423 -jettisoned 62917 -jetty 59630 -jetzt 60580 -jeu 59039 -jeune 64201 -jeunesse 65452 -jeux 59357 -jew 62469 -jewel 52940 -jeweled 63245 -jeweler 59702 -jewelers 62613 -jewelery 62613 -jewellers 63991 -jewellery 51814 -jewelries 65170 -jewelry 46666 -jewels 57238 -jewish 58365 -jewlery 65170 -jews 60952 -jezik 59491 -jf 62613 -jg 62762 -jhallgren 64905 -jhe 64423 -ji 53695 -jiayuan 64201 -jib 61584 -jibe 62762 -jie 64905 -jiexun 62762 -jiffy 64423 -jig 58523 -jiggle 65170 -jiggling 64657 -jigs 62917 -jigsaw 59292 -jihad 60238 -jihadist 65452 -jihadists 65452 -jij 65452 -jill 55202 -jillian 62762 -jim 52635 -jimall 60321 -jimh 64423 -jimi 64657 -jimmy 55906 -jimmythejock 64905 -jimstroud 65170 -jimvangulik 64905 -jin 62762 -jingle 59923 -jinn 65452 -jinniver 65170 -jinx 64423 -jira 63792 -jis 64905 -jit 65452 -jitsu 65170 -jitter 58262 -jitters 62613 -jittery 62613 -jiu 62469 -jive 62469 -jizz 61362 -jj 55821 -jk 54813 -jkOnTheRun 64201 -jkauppin 62469 -jklproduction 60078 -jl 62762 -jm 61940 -jmarkari 61699 -jmillz 64423 -jmizoguchi 63077 -jms 58632 -jn 62917 -jnvscnln 64657 -jo 55398 -joan 58523 -joanna 64201 -joanne 62917 -job 35534 -job's 63792 -jobSave 64201 -jobSaved 65170 -jobfinder 65452 -jobless 59774 -jobs 34959 -jobseekers 61699 -jobsite 62066 -joc 62917 -jock 58017 -jockey 58688 -jockeys 63245 -jocks 62917 -jocuri 62762 -jodi 65170 -jodie 64657 -jody 64657 -joe 50991 -joe's 64905 -joel 59774 -joeperry 65452 -joes 65170 -joey 58017 -jog 57482 -jogged 65170 -jogger 64905 -jogging 56899 -jogo 64423 -jogos 64657 -johanna 65170 -johannine 64657 -johansson 63419 -john 46506 -johnei 62917 -johngomes 63991 -johnny 55107 -johnnycashtv 60670 -johns 61584 -johnson 55037 -johntkucz 64657 -join 38542 -joined 42609 -joiner 58802 -joinery 62469 -joining 44545 -joins 47907 -joint 41862 -jointed 59923 -jointing 61818 -jointly 49645 -joints 49218 -joist 63077 -joists 61472 -jojo 61472 -jojogurl 63991 -joke 49400 -joked 59101 -joker 58802 -jokers 64657 -jokes 49353 -joking 56687 -jokingly 62066 -jolie 56110 -jolla 62469 -jolly 58212 -jolt 60580 -jolted 63245 -jolts 64905 -jon 55849 -jonah 63601 -jonas 55130 -jonathan 58470 -jones 53196 -jonni 64423 -jonny 61362 -jonymastur 63077 -joombots 63419 -joomla 58262 -jor 61472 -jordan 51877 -jordans 62762 -jorge 61584 -jority 64905 -jos 61940 -jose 53226 -joseph 55711 -josh 54813 -joshi 65170 -joshjjeter 64423 -joshua 58919 -joshuarat 58470 -joss 62762 -jostling 65452 -jot 62613 -jou 58017 -jouer 63419 -jour 55849 -journal 39922 -journal's 61152 -journaling 62469 -journalism 50087 -journalist 50067 -journalist's 63419 -journalistic 55323 -journalists 47935 -journals 46506 -journey 45339 -journeyed 62613 -journeying 64905 -journeyman 59491 -journeymanpictures 61472 -journeys 55014 -journos 65452 -journée 64657 -jours 61472 -jouself 64423 -jouw 62762 -joven 64201 -jovi 62469 -jovial 63991 -joy 47047 -joyce 62613 -joyful 57160 -joyfully 65170 -joyous 57482 -joys 55323 -joystick 57653 -jp 56452 -jpaulino 63245 -jpeg 55250 -jpegs 63792 -jpg 51856 -jpn 64423 -jpop 63601 -jquery 63792 -jr 56518 -jrinmercer 64657 -js 51867 -jsFind 65452 -jsf 65170 -json 63077 -jsp 58688 -jst 58417 -jsut 60405 -jt 59560 -jth 58688 -jtiano 59848 -ju 59491 -jualin 62196 -juan 59039 -juanbond 64905 -jubilant 62917 -jubilation 64657 -jubilee 62066 -jude 63245 -judge 44779 -judge's 56551 -judged 50379 -judgement 52375 -judgemental 64905 -judgements 57741 -judges 48440 -judging 52152 -judgment 45634 -judgmental 62613 -judgments 52940 -judicial 48619 -judicially 64905 -judiciary 56388 -judicious 59702 -judiciously 63991 -judith 62762 -judo 61699 -judul 64657 -judy 60762 -juego 58860 -juegos 60000 -jug 57609 -jugar 65452 -juggalo 65452 -juggernaut 62917 -juggle 60580 -juggling 58162 -juggs 64423 -jugs 61940 -jugular 56935 -juice 47335 -juicer 64657 -juices 54459 -juicy 52699 -juillet 63245 -juin 60078 -juke 61584 -jukebox 58979 -jul 61584 -jules 62917 -juli 62331 -julia 58313 -julian 59702 -julie 56324 -juliet 62613 -julio 58802 -jullie 64657 -july 51521 -jumble 62917 -jumbled 62469 -jumbo 55821 -jump 44454 -jumped 49336 -jumper 54151 -jumpers 58802 -jumping 49505 -jumps 50439 -jumpstart 60856 -jumpsuit 63077 -jumptopost 58688 -jumpy 64657 -jun 58860 -junction 48395 -junctional 60492 -junctions 54151 -juncture 59923 -june 54879 -jung 64905 -jungle 52387 -jungles 61818 -juni 61256 -junio 60762 -junior 46803 -juniors 55500 -juniper 62469 -junit 65452 -junk 49388 -junkfood 64905 -junkie 56518 -junkies 58470 -junkyard 62917 -juno 61699 -junta 61051 -junto 64201 -juny 64201 -jupiter 63419 -jurgenv 65452 -juridical 61584 -juried 61584 -juries 61152 -jurisdiction 46953 -jurisdiction's 64423 -jurisdictional 57566 -jurisdictions 52778 -jurisprudence 60856 -jurists 63991 -juror 59702 -jurors 55060 -jury 46787 -jury's 58688 -jus 53256 -juss 63245 -just 29857 -juste 63245 -justia 53438 -justice 45481 -justices 58802 -justifiable 59101 -justifiably 61152 -justification 51856 -justifications 60952 -justified 50718 -justifies 57046 -justify 48918 -justifying 58365 -justin 54601 -justine 64423 -justly 60321 -justo 60078 -jut 64201 -jute 59164 -jutsu 64905 -jutting 64201 -juve 65170 -juvenile 48928 -juveniles 56518 -juxtaposed 60952 -juxtaposes 64423 -juxtaposition 58979 -juz 61472 -jv 61940 -jvc 60405 -jvm 60856 -jw 61699 -jwehner 64905 -jxme 65452 -jy 60492 -jyrg 63991 -jÞ 63601 -já 63245 -k 39880 -kA 63601 -kB 45765 -kD 61940 -kDa 52018 -kHz 51303 -kJ 58313 -kN 63792 -kPa 59702 -kT 59039 -kV 53746 -kVA 60670 -kW 52765 -kWh 60580 -kX 59923 -ka 50823 -kabel 65170 -kabhi 65452 -kabler 63792 -kad 58577 -kadar 64423 -kadija 64905 -kahit 63601 -kahuna 65170 -kai 56518 -kaif 59630 -kaikki 63792 -kainic 65452 -kaiser 63077 -kajol 63991 -kak 61699 -kakashi 62066 -kako 60492 -kal 64201 -kala 61940 -kalashi 64905 -kalba 60492 -kale 59292 -kaleidoscope 61699 -kali 62762 -kalilo 65170 -kallikrein 62613 -kam 63991 -kama 61699 -kamagra 60492 -kamal 64201 -kamasutra 63245 -kamen 63077 -kami 62066 -kamikaze 65170 -kan 53934 -kana 63991 -kanal 65170 -kanamycin 61818 -kandysosweet 57785 -kane 60405 -kang 62917 -kangaroo 59491 -kangaroos 62613 -kanji 61584 -kann 56791 -kannada 62066 -kannst 64423 -kansas 56262 -kansasnoob 64905 -kanya 65170 -kanye 58262 -kao 62066 -kaolin 62613 -kaolinite 59039 -kaplan 65170 -kapoor 58802 -kappa 57160 -kar 60078 -kara 58523 -karaoke 52085 -karat 60238 -karate 57238 -kardashian 62066 -kardia 64657 -kardon 61699 -kare 64905 -kareena 63245 -karen 58162 -karendawn 64423 -kari 61362 -karim 63792 -karin 65452 -karina 63077 -karinavaleria 65170 -karl 60000 -karma 56827 -karo 63601 -karst 62196 -kart 58212 -karting 63077 -karts 63601 -karunamayi 63077 -karyotype 60670 -karyotypes 65452 -kasapi 64423 -kasd 61152 -kash 65452 -kashish 65452 -kasi 60321 -kaskus 64905 -kaspersky 55250 -kat 58860 -kata 60856 -katana 63419 -katate 61472 -katchaman 61584 -kate 54664 -kates 63792 -katherine 61818 -kathleen 62196 -kathryn 63077 -kathy 59292 -katie 54399 -katrina 56293 -katt 65170 -katte 65170 -katy 57440 -kau 64905 -kaufen 60078 -kaufman 61051 -kauri 64657 -kava 58688 -kawaii 60762 -kawasaki 60238 -kawaski 65170 -kay 54341 -kaya 59560 -kayak 55578 -kayakalpa 64905 -kayaking 58065 -kayaks 62066 -kaye 62762 -kayla 59630 -kayo 62762 -kazaa 64423 -kaze 63601 -kazwell 64423 -kb 48059 -kbar 60405 -kbc 64423 -kbp 58632 -kbps 49608 -kc 57358 -kcal 58262 -kd 59774 -kde 60952 -kdl 64905 -ke 50791 -keV 54419 -keane 63991 -kebab 62613 -kebabs 63245 -keds 64657 -kee 63792 -keel 57084 -keeles 63245 -keen 48473 -keenly 58365 -keep 35518 -keeper 52725 -keeper's 62469 -keepers 57970 -keepin 63077 -keeping 42414 -keeps 43565 -keepsake 59357 -keepsakes 62196 -keer 62917 -keg 60238 -kegel 59702 -kegels 65170 -kegs 63419 -keh 65170 -kei 62762 -keichwa 58577 -keihin 61152 -kein 59702 -keine 59292 -keira 64657 -keisha 63419 -keith 52832 -keller 64423 -kelley 60492 -kelliedrawspictures 62613 -kelly 52725 -kellyd 65452 -keloid 64201 -kelp 59164 -kelsey 65170 -ken 55684 -kenalog 62917 -kendall 64423 -kendra 60952 -kenga 64905 -kenge 64905 -kengz 63245 -kenmore 62613 -kennedy 58470 -kennel 57482 -kennels 62331 -kenneth 59292 -kenny 58417 -keno 65452 -kenrg 63245 -kensington 61818 -kent 57238 -kentucky 57009 -kenwood 64657 -kenya 61051 -keonepax 63991 -kepada 64905 -kept 41232 -ker 62331 -kerala 61818 -keratin 59923 -keratinocyte 61051 -keratinocytes 56652 -keratitis 59848 -keratocyte 65452 -keratoplasty 63601 -keratosis 62762 -kerb 58632 -kerbside 61940 -kerf 65452 -keri 63991 -kerio 63792 -kerma 61362 -kernal 65452 -kernel 46979 -kernels 54519 -kero 64657 -kerogen 64905 -kerosene 59560 -kerry 60952 -keswick 65452 -ket 58802 -ketamine 59164 -ketanserin 63601 -ketchup 56791 -ketene 65170 -keto 61699 -ketoacidosis 63601 -ketoconazole 61362 -ketone 56080 -ketones 58212 -ketoprofen 62762 -ketorolac 64201 -kettle 52351 -kettlebell 64201 -kettlecorn 64657 -kettles 63792 -kev 62917 -kevin 54519 -kevinalexandersmith 64423 -kewego 64905 -kewl 61699 -kewlio 63991 -kext 65452 -kexts 65452 -key 36761 -keyEAGLE 64657 -keyboard 45347 -keyboardist 60157 -keyboards 53746 -keychain 59164 -keychains 62066 -keycode 62917 -keyed 59630 -keyframes 63419 -keyg 60856 -keygen 48687 -keygenerator 63245 -keygens 61699 -keyhole 60078 -keying 61699 -keyless 58919 -keylogger 58632 -keyloggers 61818 -keynote 53271 -keynotes 64905 -keypad 54188 -keyphrases 63419 -keyring 65452 -keys 43115 -keystone 60078 -keystones 65452 -keystore 60405 -keystroke 60580 -keystrokes 60238 -keytool 61152 -keyword 44425 -keywords 42813 -kg 46178 -kgdb 62331 -kgs 61256 -kh 62196 -khaki 61472 -khaltire 61051 -khan 56388 -khang 63601 -khanna 63991 -khong 61362 -ki 51580 -kia 58017 -kiana 64905 -kibble 65452 -kick 46053 -kickass 61051 -kickback 63245 -kickbacks 64423 -kickball 64905 -kicked 49553 -kicker 55738 -kickers 64423 -kickin 62196 -kicking 51060 -kickoff 58470 -kicks 50213 -kickstart 61584 -kid 45391 -kid's 55084 -kidd 63991 -kiddie 59560 -kiddies 62469 -kidding 54643 -kiddo 65452 -kiddos 64423 -kiddy 63245 -kidman 64423 -kidnap 57046 -kidnapped 54078 -kidnappers 63991 -kidnapping 56324 -kidnappings 62917 -kidnaps 63991 -kidney 45749 -kidneys 53847 -kids 39928 -kien 64423 -kieran 65170 -kiero 64657 -kiki 63077 -kill 43039 -killa 59491 -killed 42174 -killer 47496 -killer's 62469 -killers 54857 -killeryear 65452 -killin 64657 -killing 45191 -killings 55849 -kills 48510 -kiln 56452 -kilns 63601 -kilo 60952 -kilobytes 63077 -kilogram 58162 -kilograms 57318 -kilometer 60492 -kilometers 51909 -kilometre 58860 -kilometres 52609 -kilos 60157 -kilowatt 62331 -kilowatts 64905 -kim 54170 -kimberly 60321 -kimbo 62917 -kimi 62917 -kimono 60762 -kin 55793 -kinase 46288 -kinases 53779 -kind 38169 -kinda 47067 -kinder 60238 -kindergarten 53952 -kindest 65452 -kindle 56721 -kindled 64657 -kindling 61584 -kindly 50545 -kindness 54078 -kindof 64657 -kindred 59101 -kinds 42262 -kinematic 54360 -kinematical 64905 -kinematics 56899 -kinesin 64201 -kinesiology 64423 -kinesthetic 63792 -kinetic 48609 -kinetically 61256 -kinetics 50074 -kinetin 65452 -king 46183 -king's 57831 -kingdom 50584 -kingdom's 65170 -kingdombuilder 63601 -kingdoms 58417 -kingfisher 64905 -kingpin 62917 -kings 52363 -kingston 59560 -kininase 65170 -kink 57831 -kinks 59560 -kinky 54188 -kinship 56021 -kiosk 56862 -kiosks 59227 -kip 63245 -kira 62762 -kiran 64657 -kirby 61051 -kirk 62196 -kirken 61472 -kirsis 65452 -kirsten 62196 -kirtsy 61152 -kisah 65170 -kisi 64657 -kisim 61699 -kiss 47307 -kissd 63991 -kissed 52074 -kisses 53581 -kissing 51473 -kit 43697 -kita 62066 -kitchen 43389 -kitchenaid 62196 -kitchenette 62331 -kitchens 54078 -kitchenware 64201 -kite 56170 -kites 60238 -kitesurfing 64905 -kits 48381 -kitsch 60952 -kitted 65170 -kitten 52673 -kittens 54946 -kitties 62762 -kitty 53407 -kituri 64657 -kiwi 57741 -kj 60238 -kjbutcher 63245 -kk 58313 -kl 56231 -kldunload 63601 -klein 61051 -kleine 62066 -kleiner 63245 -klibi 63792 -klicken 64657 -klik 63419 -klip 63245 -klipe 64905 -klix 64657 -kloan 65452 -klonopin 61472 -klub 64423 -klum 64905 -km 41887 -kms 54969 -kn 58523 -knack 58065 -knapsack 65452 -knead 62066 -kneaded 64423 -kneading 60856 -knee 46678 -kneel 61152 -kneeling 60856 -kneels 64905 -knees 51017 -knell 63792 -knelt 62331 -knertified 65170 -knew 41773 -knickers 61256 -knicks 64423 -knife 48454 -knight 53454 -knighted 64423 -knighthood 65452 -knights 57046 -knit 51069 -knits 61584 -knitted 55963 -knitting 52886 -knitwear 63792 -knives 53038 -kno 55060 -knob 53346 -knobs 55448 -knock 50530 -knockdown 58688 -knocked 50461 -knocking 53679 -knockoff 65170 -knockout 52472 -knockouts 63245 -knocks 56618 -knot 51453 -knots 54664 -knotted 61152 -knottin 61051 -know 31856 -knowing 45164 -knowingly 53712 -knowledgable 60492 -knowledge 38640 -knowledgeable 50591 -knowledgebase 59560 -knowles 64657 -known 36334 -knows 42086 -knox 64201 -knoxville 64657 -knuckle 57084 -knuckles 60492 -knurled 65170 -knw 60157 -ko 51580 -koala 63245 -kobe 60238 -kodak 60762 -kodaman 62762 -kody 65170 -koh 60762 -koi 57831 -koja 64657 -koje 64905 -koji 61818 -koko 64201 -kolensis 62762 -kolkata 61699 -kollywood 59923 -kolo 65170 -kom 61818 -kombat 61584 -komedi 61940 -komen 63792 -komentar 65170 -komik 59424 -komma 64423 -kommentarer 65452 -kommer 62762 -kommt 62331 -komuniteti 64905 -kon 64423 -kona 63601 -kone 62917 -kong 56721 -konica 64657 -koningii 62066 -koningiopsis 62196 -konqueror 64201 -kontakt 62066 -kontaktieren 61699 -konto 64201 -kontynuacja 64905 -konverter 64423 -kookabura 64905 -kooks 63077 -kool 58065 -koolvideoz 64905 -kor 65452 -koraci 63419 -kore 65170 -korea 56618 -korean 54096 -korg 64201 -korn 60321 -korres 62469 -kort 63601 -koruna 63601 -kos 65452 -kosher 54601 -kosoves 65452 -kosovo 63419 -kostenlos 61152 -kostenlose 64905 -koteba 65452 -kotha 65452 -kotor 65452 -kournikova 64657 -koxp 63601 -kp 62917 -kpc 60762 -kph 59424 -kplan 64423 -kr 51867 -kraft 58919 -kramer 64657 -krazy 65452 -krazzycowgirl 63991 -kriging 64201 -krill 65452 -kris 59923 -krisbarry 60856 -krisbarry's 65452 -krishna 61472 -krishnan 64423 -krissy 64657 -kristen 60000 -kristi 61699 -kristin 61584 -kristina 64423 -kristleheart 65452 -kristy 63245 -kritadangel 63419 -krona 63419 -krone 60321 -kronosposeidon 62613 -kroz 64657 -kruezer 62469 -krugman 50402 -krypton 61940 -krystal 64905 -ks 58979 -ksbwtv 63601 -ksi 64423 -kt 55766 -ktelqueen 60238 -kth 58313 -ktm 62762 -kts 63245 -ku 57084 -kubuntu 63991 -kuch 63792 -kudos 57358 -kukoleli 65170 -kulkarni 63792 -kulture 64657 -kum 64905 -kumar 59560 -kun 60762 -kuna 65170 -kunci 64657 -kung 55154 -kungfu 62469 -kunnen 63245 -kunt 61152 -kup 63245 -kurdish 65170 -kurt 60492 -kuwait 63245 -kv 60762 -kvl 63245 -kvm 65170 -kw 60078 -kweli 63419 -kwoff 63419 -kx 59774 -ky 59039 -kya 62196 -kyle 58688 -kylie 62469 -kyo 64657 -kyocera 62331 -kyu 63792 -kz 65170 -können 60952 -l 39944 -l'Auberge 60238 -l'Europe 64201 -l'Institut 65452 -l'OCDE 59424 -l'Ontario 64905 -l'Ouest 65452 -l'Union 65452 -l'Universite 57653 -l'Université 64905 -l'accord 49435 -l'administració 63419 -l'aide 64201 -l'album 65170 -l'amour 64423 -l'appareil 61940 -l'eau 64657 -l'exception 64905 -l'heure 63601 -l'image 64905 -l'industrie 64657 -l'information 63991 -l'on 64657 -l'utilisation 65452 -l'état 63419 -lA 63419 -lM 60492 -lO 59039 -lOc 65452 -lOvE 62469 -la 37811 -laCaixaTV 63601 -lab 46960 -label 43771 -label's 62613 -labeled 46032 -labeling 49614 -labelled 51492 -labelling 53517 -labels 46982 -labeouf 64657 -labia 60238 -labial 57741 -labialis 63077 -labile 58065 -lability 64657 -lable 63991 -labman 64905 -labor 43775 -laboratories 50991 -laboratory 43875 -labore 60078 -labored 60670 -laborer 62331 -laborers 57278 -laboring 61584 -laborious 59630 -laboriously 65170 -labors 61256 -labour 46370 -laboured 63991 -labourer 60670 -labourers 60580 -labours 64423 -labrador 61818 -labret 62613 -labs 52175 -labyrinth 59491 -labyrinthine 64657 -lac 57482 -lacZ 61584 -lace 51620 -laced 58162 -laceration 61472 -lacerations 61152 -laces 60952 -lacey 58860 -laches 64423 -lacie 65170 -lacing 62469 -lack 40700 -lacked 51867 -lacking 47992 -lackluster 59424 -lacklustre 65452 -lacks 49596 -lacoste 60000 -lacquer 58919 -lacquered 60762 -lacquers 63991 -lacrimal 62469 -lacrosse 55963 -lacs 59923 -lactacin 64423 -lactate 52673 -lactating 57696 -lactation 57440 -lactic 54226 -lactis 59039 -lactobacilli 60670 -lactone 62469 -lactose 54924 -lacuna 62196 -lacunar 64657 -lacustrine 63792 -lacy 61256 -lad 56021 -ladder 50906 -ladders 56827 -laden 55877 -ladies 47272 -ladle 64657 -lado 63245 -lads 55084 -lady 46315 -lady's 60238 -ladyboy 57923 -ladyboys 62613 -ladybug 62762 -ladys 64657 -ladywolfe 64657 -laevis 58470 -lafayette 64201 -laff 63991 -lag 51358 -lage 64657 -lagen 64201 -lager 58745 -lagged 57831 -lagging 56618 -laggy 63792 -lagi 62066 -lagna 58979 -lagoon 56652 -lagoons 62066 -lags 57046 -lagu 56618 -laguna 61940 -lah 61051 -lahat 64201 -lai 60238 -laid 45797 -laidback 64657 -lain 60856 -laine 64657 -lainey 65170 -lair 61940 -laissez 63601 -lait 64423 -lak 64905 -lake 45816 -lake's 62469 -lakefront 61472 -lakers 61051 -lakes 50623 -lakeshore 63419 -lakeside 61940 -lakh 56231 -lakhs 59848 -lal 65170 -lala 62917 -lalate 64657 -lalouve 65170 -lam 60952 -lama 62066 -lamb 52712 -lambasted 64905 -lambda 57084 -lamblia 64423 -lamborghini 61584 -lambs 56551 -lambskin 63419 -lamcom 61584 -lame 53226 -lamellae 59357 -lamellar 57609 -lameness 63077 -lament 58365 -lamented 60405 -lamenting 62196 -laments 61940 -lamest 64657 -lamictal 59101 -lamin 64657 -lamina 54946 -laminae 63601 -laminar 55373 -laminate 52164 -laminated 53241 -laminates 58919 -laminating 59424 -lamination 59292 -laminectomy 65170 -laminin 60762 -lamisil 53762 -lamivudine 59227 -lamotrigine 63991 -lamp 48629 -lamprey 63601 -lamps 51974 -lampshade 65170 -lan 55849 -lana 62762 -lanai 63991 -lancaster 61699 -lance 57440 -lanceolata 65170 -lanceolate 60856 -lancer 60670 -lancom 64423 -lancome 60670 -land 38977 -land's 64905 -landcare 63601 -landcom 64423 -landcome 64423 -landed 50013 -lander 65452 -landfall 61051 -landfill 52832 -landfills 59164 -landform 64423 -landforms 61818 -landholders 64201 -landholdings 64201 -landing 48821 -landings 57358 -landless 59630 -landline 54133 -landlines 64657 -landlocked 61584 -landlord 51444 -landlord's 61584 -landlords 55877 -landlsides 63419 -landmark 50638 -landmarks 54924 -landmine 62762 -landmines 65170 -landowner 55934 -landowners 54902 -lands 47126 -landscape 45371 -landscaped 54643 -landscapes 52291 -landscaping 51541 -landslide 56618 -landslides 58802 -landward 64201 -lane 48038 -lanes 50446 -lang 53695 -lange 63419 -language 37462 -languages 44802 -langue 63245 -langues 64657 -languid 62917 -languished 64201 -languishing 62917 -lanier 65452 -lanka 62762 -lankastuff 64201 -lankstar 63991 -lanky 64905 -lanl 63077 -lanolin 64657 -lansing 63792 -lansoprazole 63792 -lantern 56452 -lanterns 61818 -lanthanide 63419 -lanthanum 61152 -lanyard 62331 -lanyards 65452 -lao 62331 -laoreet 60952 -laos 63792 -lap 50343 -laparoscopic 54399 -laparoscopy 61472 -laparotomy 59702 -lapel 60762 -lapis 64905 -lapped 61940 -lapping 60321 -laps 55274 -lapse 56110 -lapsed 60321 -lapses 61362 -laptop 44030 -laptop's 62762 -laptops 50387 -lar 53316 -lara 60000 -larceny 61584 -larch 63991 -lard 61362 -larder 65170 -laren 65452 -large 35099 -largely 44111 -largemouth 65170 -larger 38069 -largest 39400 -largo 61152 -larity 65452 -larkhall 64657 -larly 59227 -larry 56791 -larryfire 57399 -larryking 64201 -lars 63245 -larva 59491 -larvae 51175 -larval 55250 -lary 62331 -laryngeal 57122 -laryngoscopy 64905 -larynx 59424 -las 46552 -lasagna 59039 -lasek 61699 -laser 42650 -laser's 65452 -laserdisc 63792 -laserjet 62762 -lasers 51660 -lash 59560 -lashed 59292 -lashes 57482 -lashing 62762 -lasik 63792 -lasing 58313 -lasix 60405 -lass 61152 -lasso 64905 -last 32007 -lasted 49972 -lastest 59774 -lasting 48178 -lastly 60157 -lasts 50848 -laszlo 64657 -lat 57084 -lata 56551 -latalpa 62917 -latch 51560 -latched 61584 -latches 57876 -latching 57238 -late 39064 -lated 52472 -lately 51266 -latencies 61472 -latency 52315 -lateness 64201 -latent 51492 -later 37774 -lateral 45855 -lateralis 64657 -laterality 62613 -laterally 55500 -laterals 64201 -laters 61940 -lates 60000 -latest 35503 -latex 49745 -lath 64905 -lathe 60321 -lather 62762 -lathosterol 63419 -latices 64423 -latifolia 65170 -latin 52280 -latina 54581 -latinas 60492 -lating 59923 -latino 55711 -latins 59923 -lation 52940 -lations 58577 -lationship 63991 -latitude 52291 -latitudes 59227 -latitudinal 60492 -lative 65452 -lato 64905 -lator 64657 -latory 63601 -latrines 64201 -latte 59039 -latter 43661 -latter's 59039 -lattes 63419 -lattice 47855 -lattices 56551 -latviešu 61818 -lau 65452 -laud 63601 -laudable 63419 -laude 58979 -lauded 58417 -lauder 65170 -lauderdale 64201 -lauds 62762 -laugh 47269 -laughable 60405 -laughed 51931 -laughing 50185 -laughs 53830 -laughter 53138 -laulu 64201 -laulud 64905 -laulusonad 63419 -launch 43349 -launched 44134 -launcher 56721 -launchers 61818 -launches 46726 -launching 49880 -launchpad 63601 -launder 63419 -laundered 63601 -laundering 56324 -laundromat 64423 -laundry 49400 -laura 54969 -laure 61051 -laureate 60492 -laurel 60405 -lauren 56551 -laurenstravelscom 65170 -laurent 64201 -laurie 61584 -lauryl 62331 -laut 64201 -lava 55684 -lavage 57358 -lavapixel 64905 -lavas 63077 -lavatory 62196 -lavender 55299 -lavigne 60078 -lavish 55202 -lavished 64423 -lavishly 61051 -lavoro 64423 -law 37605 -law's 63792 -lawfirm 56420 -lawful 52018 -lawfully 56791 -lawfulness 64905 -lawless 61940 -lawmaker 60856 -lawmakers 52534 -lawman 57970 -lawn 48706 -lawnmower 62469 -lawns 57009 -lawrence 59357 -laws 42659 -lawsuit 45106 -lawsuits 52472 -lawton 65170 -lawyer 45756 -lawyer's 60405 -lawyers 46646 -lax 58313 -laxative 60321 -laxatives 64201 -laxity 65170 -lay 45549 -layed 60405 -layer 40955 -layered 51368 -layering 57238 -layers 44764 -laying 49809 -layman 63601 -layman's 64905 -layoff 60492 -layoffs 55849 -layout 45380 -layouts 48581 -layover 64201 -layperson 64423 -laypersons 64905 -lays 52712 -layup 63245 -lazhur 60405 -laziest 65170 -lazily 63601 -laziness 62196 -lazing 65452 -lazuli 65170 -lazy 50199 -lb 49054 -lbenno 61051 -lbh 65170 -lbs 47566 -lbw 65170 -lc 59491 -lcci 64423 -lcd 52858 -ld 59164 -ldap 61152 -ldapmodify 65452 -ldapsearch 63419 -ldconfig 65452 -ldo 64905 -le 41530 -lea 60321 -leach 61152 -leachate 61362 -leached 62762 -leaching 55821 -lead 38168 -leaded 61152 -leader 42092 -leader's 58262 -leaderboard 61818 -leaderboardAdvertisement 63792 -leaders 42777 -leadership 43476 -leading 38390 -leadoff 63077 -leadout 63077 -leads 41696 -leaf 46395 -leafed 64657 -leafless 64905 -leaflet 53124 -leaflets 55474 -leafminer 64905 -leafs 61472 -leafy 55963 -league 45775 -league's 57831 -leagues 53917 -leah 61362 -leak 49802 -leakage 50060 -leakages 65452 -leaked 53813 -leaking 53970 -leaks 53533 -leaky 57609 -lean 49371 -leaned 55992 -leaner 60762 -leaning 53286 -leanings 64905 -leanne 64201 -leans 57970 -leap 51867 -leaped 61256 -leapfrog 64423 -leaping 59101 -leaps 57122 -leapt 61472 -learn 37808 -learnability 64657 -learned 42841 -learner 53485 -learner's 61818 -learners 49899 -learning 37068 -learnings 65452 -learns 51492 -learnt 51953 -lease 46089 -leased 52832 -leasehold 60952 -leases 53533 -leash 56050 -leashed 64657 -leasing 51157 -least 34877 -leat 64905 -leather 44076 -leatherback 64657 -leatherman 62469 -leathers 61051 -leathery 63245 -leave 38164 -leavers 62762 -leaves 42604 -leavin 63077 -leaving 42398 -lebanese 63991 -lebanon 63077 -lebih 65170 -leblanc 62066 -lección 63991 -leche 64657 -lecithin 62917 -lected 57831 -lectin 57696 -lectins 63245 -lection 63419 -lector 63601 -lecture 48882 -lectured 58632 -lecturer 54380 -lecturers 58313 -lectures 50576 -lecturing 61256 -lecular 61256 -led 40587 -lederhosen 65452 -ledge 55448 -ledger 57741 -ledges 63792 -lee 51700 -leech 57609 -leechers 54727 -leeches 63077 -leechvideo 64657 -leeds 59774 -leek 63792 -leekellerking 64905 -leeks 65170 -leer 63792 -leery 61818 -lees 65170 -leet 64905 -leew 62613 -leeward 63792 -leeway 62331 -lefevre 60580 -left 35580 -lefties 63991 -leftist 56972 -leftists 62762 -leftmost 60157 -leftover 55578 -leftovers 57524 -leftward 62762 -lefty 60321 -leg 44878 -legacies 61051 -legacy 48399 -legal 37206 -legalistic 64905 -legalities 63991 -legality 56756 -legalization 63077 -legalize 59630 -legalized 61699 -legalizing 64423 -legally 47683 -lege 62331 -legend 47923 -legend's 65452 -legendary 48887 -legendas 61584 -legendofphil 65452 -legends 52256 -legged 60321 -legging 63792 -leggings 59039 -leggy 64905 -legible 58802 -legion 59702 -legions 59101 -legislate 61584 -legislated 62196 -legislation 44679 -legislations 65452 -legislative 47077 -legislator 59164 -legislators 54170 -legislature 52007 -legislature's 64905 -legislatures 60000 -legit 55657 -legitimacy 55226 -legitimate 48445 -legitimately 58365 -legitimize 62196 -legitimized 65170 -lego 57524 -legoshop 62613 -legroom 64201 -legs 46009 -legume 60238 -legumes 59702 -legwork 61051 -leh 63419 -lehasdao 64905 -lehman 56388 -lei 59101 -leicester 64905 -leicht 65452 -leider 62762 -leigh 62762 -leighton 64657 -leightonian 64423 -leis 60952 -leishmaniasis 62066 -leisure 47087 -leisurecraft 64657 -leisureland 62469 -leisurely 56388 -leisuretime 62762 -leisureville 62613 -leisureworld 61472 -leit 63792 -leitch 56585 -leitchfield 61818 -lek 65452 -lekker 65170 -lekki 60405 -lel 64423 -lem 57923 -lemma 54540 -lemmas 62196 -lemme 59039 -lemmings 65170 -lemon 49529 -lemonade 57923 -lemongrass 65170 -lemons 60492 -lemony 63077 -lems 58860 -lemurmedia 58802 -lemurs 63419 -len 57566 -lena 64201 -lence 60580 -lend 50568 -lender 49952 -lender's 61256 -lenders 50328 -lending 48265 -lends 54023 -lene 62917 -lenge 62196 -lenght 62469 -length 39666 -lengthen 59630 -lengthened 60492 -lengthening 56356 -lengthens 64905 -lengths 48169 -lengthwise 60238 -lengthy 50915 -lengua 64657 -leniency 62196 -lenient 60952 -lenis 64905 -lennon 64657 -lenny 62066 -lenovo 61818 -lens 44785 -lense 63792 -lensed 63245 -lenses 49411 -lensing 59923 -lent 54005 -lentes 65452 -lenticular 62196 -lentigo 63991 -lentil 60580 -lentils 60078 -lentiviral 62917 -lento 64201 -leo 57566 -leon 56827 -leona 58979 -leonard 62066 -leonardo 63601 -leone 61818 -leonora 64201 -leony 65452 -leopard 54245 -leopards 64905 -leper 63792 -lepine 63245 -leprechaun 61256 -leprosy 58979 -leptin 54078 -lepton 61940 -leptons 65170 -ler 61699 -lercanidipine 63601 -leroy 58470 -les 45193 -lesan 59774 -lesbain 64905 -lesbian 45439 -lesbianism 65452 -lesbians 50242 -lesbo 58688 -lesbos 60078 -lesion 48711 -lesional 64657 -lesioned 62917 -lesions 46210 -lesley 65452 -leslie 55552 -less 34785 -lessee 57876 -lessees 63245 -lessen 54005 -lessened 59560 -lessening 59848 -lessens 61699 -lesser 48501 -lesson 46050 -lessons 44937 -lessor 62613 -lest 55793 -lester 61362 -lesterol 65170 -let 36594 -let's 45789 -letdown 63419 -letersi 64905 -letestui 64201 -lethal 51166 -lethality 57923 -lethargic 61472 -lethargy 60405 -letra 54792 -letras 51783 -lets 43559 -letter 40746 -lettered 62762 -letterhead 59702 -lettering 56687 -letterman 61584 -letterpress 64201 -letters 43307 -lettin 65170 -letting 47311 -lettings 61818 -lettuce 54479 -letzte 62917 -letzten 60157 -leucine 58017 -leucocyte 61256 -leucocytes 61152 -leuconocin 65452 -leukaemia 56721 -leukaemic 63792 -leukemia 51550 -leukemias 61362 -leukemic 59424 -leukocyte 54399 -leukocytes 54902 -leukopenia 62066 -leukosis 64657 -leukotriene 58365 -leukotrienes 64905 -leupeptin 64423 -leur 59424 -leurs 60856 -levaquin 61362 -levator 59424 -levee 59424 -levees 61699 -level 35458 -leveled 57318 -leveling 52198 -levelled 59774 -levelling 58365 -levels 37343 -leven 63245 -lever 50654 -leverage 49440 -leveraged 55604 -leverages 58470 -leveraging 55014 -levers 57160 -levi 63077 -levied 55631 -levies 57482 -levitate 65170 -levitating 65170 -levitra 49458 -levodopa 58113 -levofloxacin 65452 -levonorgestrel 59039 -levoxyl 63601 -levy 52584 -levying 64201 -lew 65452 -lewd 60238 -lewis 54727 -lex 60952 -lexapro 54321 -lexi 63792 -lexical 55526 -lexicon 58688 -lexington 60856 -lexmark 62613 -lexus 59357 -ley 59702 -lez 63991 -lezen 64423 -lf 60000 -lft 63991 -lg 51660 -lh 62917 -lhc 65170 -lhcb 61584 -lhcbsgm 65452 -lhe 58745 -lhl 62469 -li 51772 -lia 63601 -liabilities 51349 -liability 43503 -liable 45486 -liad 64905 -liaise 59227 -liaising 61256 -liaison 52886 -liaisons 63419 -lial 63792 -liam 61256 -lian 60762 -lianas 65452 -liane 65452 -liao 65452 -liar 56899 -liars 61940 -lias 63991 -lib 57009 -libXML 64423 -libanica 63601 -libata 64905 -libavg 62613 -libby 63991 -libel 58262 -libelous 60157 -liberal 47992 -liberalisation 59848 -liberalism 59848 -liberalization 56518 -liberalize 65452 -liberalized 63991 -liberally 60580 -liberals 54969 -liberate 58919 -liberated 56721 -liberates 64423 -liberating 60000 -liberation 54360 -libero 63245 -libertarian 58919 -libertarians 61256 -liberties 55849 -liberty 51229 -libfed 65170 -libido 55877 -libitum 59923 -libra 61699 -librarian 51293 -librarians 53565 -librarianship 63991 -libraries 46631 -library 39686 -library's 58113 -libraryThing 65170 -libre 57278 -librería 62196 -librium 62613 -libro 57876 -libros 62469 -libs 59923 -libtirpc 61699 -libxml 64657 -lic 59227 -lice 56827 -licence 47093 -licenced 59491 -licences 54041 -licencia 64657 -licencja 57160 -licensable 65452 -license 41872 -licensed 42988 -licensee 53485 -licensee's 62469 -licensees 56687 -licenses 48731 -licensing 47392 -licensor 61818 -licensors 57696 -licensure 57084 -lich 65452 -lichen 58745 -lichens 64201 -lick 50615 -licked 56935 -licker 65452 -licking 52051 -licks 57970 -licorice 61818 -lid 49365 -lidar 62331 -lidocaine 57970 -lids 56485 -lie 45558 -liebe 58262 -lied 52152 -liedertexte 63419 -liedjestekst 64905 -liedlyrik 63077 -liege 65452 -liegt 63991 -liek 59101 -lien 45732 -lienholder 64423 -liens 56899 -lier 62917 -lies 44444 -lieu 51783 -lieutenant 57046 -lieutenants 64905 -lieve 63419 -lif 65452 -life 34744 -life's 52141 -lifeatgoogle 63601 -lifeblood 61051 -lifeboat 60238 -lifecycle 56262 -lifeguard 60670 -lifeguards 64657 -lifeless 59491 -lifelike 61051 -lifeline 58979 -lifelong 51463 -lifes 60157 -lifesaver 63991 -lifesaving 62066 -lifespan 57278 -lifestyle 46584 -lifestyles 55500 -lifetime 46855 -lifetimes 58632 -lifeworld 64201 -lift 45588 -lifted 50416 -lifter 60157 -lifters 60856 -lifting 50220 -liftoff 64657 -lifts 52339 -ligament 53256 -ligamentous 64905 -ligaments 58417 -ligamentum 63792 -ligand 49541 -ligands 50662 -ligase 59227 -ligated 56388 -ligating 65170 -ligation 55130 -ligature 63792 -lige 65170 -light 36737 -lightbox 52805 -lightboxes 64905 -lightbulb 64423 -lightbulbs 64905 -lighted 54879 -lighten 56862 -lightened 63991 -lightening 59491 -lightens 63245 -lighter 49017 -lighters 64423 -lightest 57278 -lightface 62762 -lighthearted 60762 -lighthouse 55906 -lighthouses 63601 -lighting 45162 -lightly 50823 -lightness 60078 -lightning 51078 -lightpath 63601 -lightroom 64423 -lights 44630 -lightsaber 63077 -lighttpd 60580 -lightwave 63601 -lightweight 48897 -lignans 62469 -ligne 57653 -lignin 57084 -lignocaine 61940 -lignocellulosic 65170 -lik 59164 -likable 63245 -like 28838 -likeable 60856 -liked 44898 -likelihood 47679 -likely 38039 -liken 63601 -likened 58688 -likeness 57923 -likenesses 64201 -likening 65170 -likens 61362 -likes 45135 -likewise 52886 -likey 64423 -liking 53470 -likley 64657 -lil 48677 -lila 64423 -lilac 60670 -lilacs 65170 -lildonta 65452 -lili 61699 -lilies 59848 -lilisto 65170 -lille 62196 -lillian 60580 -lillie 63245 -lilly 57831 -lilo 64905 -lilting 63991 -lily 56262 -lim 53899 -lima 58470 -limaclub 62331 -limb 50060 -limbaugh 62917 -limbic 59101 -limbo 59424 -limbs 52791 -lime 50670 -limelight 56827 -limerick 63419 -limes 63991 -limestone 53597 -limestones 63419 -limewire 58860 -liminary 62613 -liming 65452 -limit 41094 -limitation 48114 -limitations 46020 -limite 63245 -limited 38476 -limiter 57923 -limiters 63991 -limiting 46359 -limitless 57923 -limits 44122 -limo 57009 -limos 65170 -limousine 54924 -limousines 63991 -limp 57318 -limped 64201 -limpet 64905 -limping 62762 -lin 55963 -linac 63792 -linc 65170 -lincoln 56827 -linda 55299 -linden 63792 -lindo 59164 -lindsay 57696 -lindsey 62331 -line 35197 -line's 63245 -linea 61940 -lineage 52661 -lineages 58212 -lineal 60321 -linear 41724 -linearised 63601 -linearity 54969 -linearization 61472 -linearized 56420 -linearly 51321 -linebacker 56293 -linebackers 61472 -lined 49212 -lineman 58632 -linemen 61152 -linen 53407 -linens 58632 -liner 51166 -linerider 63601 -liners 56231 -lines 39474 -lineup 50607 -lineups 62196 -lineweight 63419 -linewidth 60405 -linewidths 63245 -linezolid 60580 -ling 59292 -lingam 59357 -linger 57238 -lingered 64657 -lingerie 49033 -lingering 55500 -lingers 60856 -lingo 58919 -lingua 60670 -lingual 59491 -linguist 62469 -linguistic 50454 -linguistically 61362 -linguistics 57970 -linguists 61472 -linha 63419 -linia 64201 -lining 49012 -linings 60078 -link 33901 -linkaGoGo 63991 -linkage 49939 -linkages 53286 -linkagogo 62196 -linked 41742 -linkedin 64423 -linker 54664 -linkers 60492 -linkin 56200 -linking 40979 -linkme 63991 -linkroll 64905 -links 34533 -linksbox 53646 -linksys 60670 -lino 65170 -linoleic 57696 -linolenic 62469 -linoleum 60157 -linseed 64423 -lint 59774 -linuron 64201 -linux 49590 -linéaire 63792 -liom 64657 -lion 52256 -lion's 60078 -lionel 61584 -lioness 62331 -lions 56518 -lip 48806 -lipase 58017 -lipemia 64423 -lipid 47047 -lipides 64657 -lipids 52752 -lipitor 54992 -lipoedematous 63601 -lipogenesis 65452 -lipolysis 61940 -lipolytic 63077 -lipophilic 58632 -lipophilicity 64905 -lipopolysaccharide 56935 -lipopolysaccharides 65452 -lipoprotein 53167 -lipoproteins 57482 -liposomal 61699 -liposome 58577 -liposomes 54924 -liposuction 59357 -lipoteichoic 64905 -lipoxygenase 63419 -lips 49313 -lipstick 54096 -liq 64657 -liquefaction 61256 -liquefied 58162 -liqueur 58802 -liquid 41424 -liquidate 60078 -liquidated 60078 -liquidating 65170 -liquidation 55398 -liquidators 64201 -liquide 63601 -liquidity 51877 -liquids 52007 -liquidstrike 65452 -liquidus 64905 -liquor 49229 -liquors 60000 -lira 59630 -lire 61818 -lirica 62469 -lirik 58802 -lis 61818 -lisa 53934 -liseli 62613 -lish 63245 -lished 55552 -lishing 65170 -lishment 65452 -lisinopril 60580 -lisp 62917 -list 33949 -lista 61152 -listbox 65170 -liste 60762 -listed 37864 -listen 42314 -listened 49946 -listener 53010 -listener's 63245 -listeners 52327 -listenin 63792 -listening 44617 -listens 55060 -listepisodes 63601 -listers 54664 -listing 38770 -listingcrazy 53646 -listings 40000 -listingsNewsDesk 53646 -lists 40999 -listserv 62613 -lit 50019 -lita 64423 -litany 60856 -litbrit 64905 -lite 52927 -litem 63792 -liter 52107 -literacy 48959 -literal 53988 -literally 47500 -literals 63601 -literary 47672 -literate 57609 -literatura 63419 -literature 42956 -literatures 61699 -liters 55474 -lites 63991 -lithe 65170 -lithiated 63419 -lithium 50178 -litho 63419 -lithograph 65170 -lithographic 59630 -lithographs 63792 -lithography 56862 -lithologies 65452 -lithology 64201 -lithosphere 61699 -lithospheric 64905 -litigant 65170 -litigants 61472 -litigate 61818 -litigated 64201 -litigating 64905 -litigation 49336 -litigator 63601 -litigious 63991 -litle 61940 -litmus 61362 -litre 52096 -litres 53796 -litter 50848 -litterally 65170 -littered 57876 -littering 62917 -littermates 61472 -litters 58919 -little 34472 -littlepinkhouse 61699 -littlest 62196 -littoral 62762 -liturgical 58212 -liturgy 60952 -liu 65170 -lium 64201 -liv 61940 -livability 65452 -livable 58979 -live 36121 -lived 43432 -livejournal 54170 -liveliest 64905 -livelihood 56551 -livelihoods 57278 -lively 50560 -liven 61940 -liver 43027 -liverAmebic 65452 -liverpool 58365 -livers 54770 -liverworts 63792 -livery 59848 -lives 41197 -livesets 64201 -livestock 50484 -livestrong 64657 -livid 63991 -lividans 63077 -livin 59702 -living 38430 -livingroom 64657 -livre 61940 -livres 63991 -liye 63991 -liz 59702 -liza 64657 -lizard 57482 -lizards 58860 -lization 63077 -lized 63077 -lj 62762 -lk 58212 -ll 51814 -llama 58802 -llamado 62331 -llamas 65170 -llc 58017 -lle 63245 -llega 65170 -llegar 63601 -lleva 63991 -llevar 65170 -lll 60952 -lloras 63245 -llores 64201 -lloyd 61818 -llrightsreserved 62762 -lly 65452 -lm 55250 -lmao 55448 -lmfao 63419 -lmnop 65452 -lms 60492 -ln 52435 -lng 59630 -lnk 64657 -lo 46928 -loa 62762 -load 41234 -loadable 64201 -loaded 45373 -loader 52712 -loaders 60405 -loading 43832 -loadings 58017 -loads 46210 -loaf 56585 -loafer 63991 -loafers 62331 -loam 60000 -loamy 64423 -loan 41765 -loaned 58632 -loaning 63077 -loans 43629 -loansmortgage 62196 -loansrefinance 62066 -loath 63419 -loathe 55711 -loathing 63245 -loaves 60405 -lob 63601 -lobar 65170 -lobbied 59491 -lobbies 61051 -lobby 50136 -lobbying 53153 -lobbyist 57970 -lobbyists 57970 -lobe 51690 -lobectomy 61051 -lobed 63077 -lobes 54879 -loblolly 63792 -lobortis 63077 -lobster 54581 -lobsters 60405 -lobular 62469 -lobule 64201 -lobules 63792 -loc 60157 -locUpto 64905 -loca 62066 -local 33768 -locale 56862 -locales 58860 -localhost 55398 -localisation 59357 -localised 57358 -localism 63991 -localities 55906 -locality 54727 -localization 48567 -localizations 63601 -localize 57970 -localized 48359 -localizes 63792 -localizing 59039 -locally 46468 -locals 51541 -localshopping 63601 -locate 46523 -located 37803 -locates 57524 -locating 51590 -location 37604 -location's 64423 -locational 63601 -locations 40768 -locationstechnical 53646 -locator 53485 -loch 63792 -loci 52198 -lock 45326 -lockProvisional 60952 -lockable 60321 -lockdown 59227 -locke 63991 -locked 47047 -locker 52791 -lockers 59292 -locket 65170 -locking 48581 -lockout 59702 -locks 50321 -locksmith 60238 -lockup 64905 -loco 58470 -locomotion 58313 -locomotive 55906 -locomotives 59923 -locomotor 57609 -locum 62917 -locus 49695 -locust 60670 -locusts 61051 -lod 62469 -lodge 52791 -lodged 53613 -lodgement 65170 -lodgers 65452 -lodges 58313 -lodging 50774 -lodgings 61584 -lofi 61152 -lofiadm 65452 -loft 53038 -lofts 60238 -lofty 57399 -log 39236 -logan 63419 -logarithm 57046 -logarithmic 55552 -logarithmically 64423 -logarithms 60952 -logbook 62469 -loge 64423 -logement 62917 -logfile 62613 -logged 40819 -logger 57046 -loggers 61152 -logging 48529 -logic 45386 -logical 46714 -logically 54519 -logiciel 60321 -logiciels 65452 -logics 59491 -login 39565 -loginregister 60762 -logins 60856 -logistic 52559 -logistical 56518 -logistically 65170 -logistics 50321 -logit 62917 -logitech 57696 -lognormal 62917 -logo 37935 -logo's 63245 -logoff 64905 -logon 55373 -logos 48524 -logotype 57524 -logotypes 64657 -logout 54264 -logs 47915 -logue 65170 -logy 64657 -lohan 57970 -lohrville 64423 -loi 62762 -loin 58979 -lois 63991 -loitering 64423 -lojra 64905 -lol 42719 -lola 63792 -loli 62917 -lolita 54479 -lolitas 61940 -loll 63792 -lollies 65170 -lollipop 60238 -lolly 64423 -lolol 65452 -lols 65170 -lolz 59039 -lomo 61051 -lon 61940 -loncome 64423 -london 47787 -lone 52712 -lonegroover 64423 -lonelier 65452 -loneliness 55963 -lonely 51000 -loner 62469 -lonesome 62469 -long 34460 -longed 58632 -longer 38800 -longest 49092 -longevity 53729 -longhorn 62331 -longifolia 65452 -longing 55906 -longish 63991 -longissimus 62469 -longitude 54685 -longitudinal 46893 -longitudinally 54264 -longleaf 64657 -longoria 63245 -longs 60078 -longstanding 56485 -longterm 61472 -longtime 51531 -longue 63792 -longus 63419 -longwave 64905 -lonidamine 60492 -loo 59491 -look 34389 -lookalike 62469 -looked 40979 -lookin 54245 -looking 35082 -lookout 56485 -looks 38906 -lookup 49919 -lookups 61699 -looky 64657 -lool 63991 -loom 57609 -loomed 63245 -looming 56170 -looms 55934 -looney 63077 -loonie 61699 -loony 62613 -loop 44927 -loopback 60238 -looped 60157 -loophole 60762 -loopholes 60762 -looping 57238 -loops 50033 -loopy 63601 -loose 46299 -loosed 65170 -loosely 53124 -loosen 56170 -loosened 60238 -loosening 57741 -looser 60580 -looses 60670 -loosing 55202 -loot 54419 -looted 59774 -looting 58470 -lop 64905 -lope 62613 -lopez 59560 -lopli 63991 -lopsided 63792 -lor 58162 -loratadine 63792 -lorax 64201 -lorazepam 52886 -lorcet 64423 -lord 52256 -lord's 65170 -lords 57785 -lordship 63245 -lore 56551 -lorem 64423 -lorenzo 64905 -lori 63419 -loro 65452 -lorraine 64905 -lorries 64423 -lorry 58979 -lors 61584 -lortab 57566 -los 45129 -losartan 62917 -lose 42441 -loser 54664 -losers 54341 -loses 48918 -losing 44974 -loss 38520 -losses 45508 -lossless 57440 -lossy 58417 -lost 39205 -lostKev 64201 -lot 36109 -lot's 62331 -lotion 55202 -lotions 59560 -lotr 64423 -lots 41370 -lotsa 62331 -lotta 58688 -lotteries 63077 -lottery 50387 -lotto 57318 -lotus 57278 -lou 58523 -loud 47895 -louder 55526 -loudest 60405 -loudly 56231 -loudness 59848 -loudspeaker 59164 -loudspeakers 62469 -louie 64905 -louima 62469 -louis 53779 -louise 59039 -louisiana 58632 -louisville 63077 -lounge 49535 -lounges 59848 -lounging 60952 -loureiro 63601 -louse 65170 -lousy 56687 -louver 63419 -louvre 62196 -lov 61940 -lovable 57831 -lovato 64657 -love 34031 -love's 60580 -loveable 63419 -loved 42450 -lovee 63991 -lovegrove 62469 -loveliest 65452 -loveliness 63792 -lovely 45127 -lovemaking 64423 -lover 49464 -lover's 59774 -lovers 49285 -loves 44639 -lovin 58523 -loving 46973 -lovingly 56518 -low 35752 -lowcost 64657 -lowdown 59848 -lowed 57831 -lower 37033 -lowercase 57970 -lowered 50019 -lowering 49417 -lowermost 64423 -lowers 52954 -lowes 64905 -lowest 42571 -lowing 55299 -lowland 57970 -lowlands 61256 -lowly 59039 -lowpass 61940 -lowrider 64905 -lows 53095 -loxley 64423 -loyal 50568 -loyalist 63991 -loyalists 63991 -loyalties 61256 -loyalty 50646 -lozenge 64423 -lozenges 62762 -lp 58417 -lpg 62331 -lpia 64423 -lpm 61940 -lpn 64657 -lps 64905 -lr 61818 -lrg 61818 -ls 54902 -lsat 65170 -lsc 65452 -lsd 63245 -lsh 64905 -lst 65170 -lsu 65452 -lt 55323 -ltd 53301 -lteter 65170 -lth 65170 -ltr 61699 -ltrs 63245 -ltteer 65170 -ltteers 65452 -lu 57524 -luau 64423 -lub 64657 -lube 55084 -lubed 63245 -lubricant 52858 -lubricants 57199 -lubricate 63601 -lubricated 58523 -lubricating 56140 -lubrication 55250 -lubricity 65452 -luc 65452 -lucas 60762 -lucene 64905 -lucerne 62613 -lucha 63792 -lucia 62917 -luciana 64657 -lucid 58577 -lucida 60670 -lucie 63792 -lucien 63601 -luciferase 54419 -luciferin 62196 -luck 45170 -lucked 64423 -luckier 63792 -luckiest 63601 -luckily 57482 -lucky 45927 -luckycyberbunny 64905 -lucrative 53501 -luctus 62762 -lucy 58688 -luda 64905 -ludacris 63419 -ludicrous 58979 -luego 63601 -luff 64201 -lug 55934 -lugar 60762 -luggage 51257 -lugging 63077 -lugs 57785 -lui 57785 -luis 58262 -luk 64905 -lukas 65170 -luke 58162 -lukewarm 60000 -lula 64201 -lular 61362 -lull 59702 -lullaby 61472 -lulled 63991 -lulose 64905 -lulu 63991 -lulz 58745 -lum 60952 -lumbar 51856 -lumber 52791 -lumbering 62762 -lumbosacral 63245 -lume 65170 -lumen 53485 -lumenal 63991 -lumens 58577 -lumii 65452 -luminaire 62196 -luminaires 63245 -luminal 55552 -luminance 56721 -luminaries 62066 -luminary 65170 -luminescence 54601 -luminescent 58017 -luminosities 63601 -luminosity 55474 -luminous 55178 -lumix 60580 -lump 51570 -lumpectomy 65170 -lumped 58979 -lumps 56420 -lumpy 64423 -lun 61818 -luna 58470 -lunacreciente 62917 -lunacy 64201 -lunar 54360 -lunatic 60492 -lunch 45108 -lunchbox 64201 -luncheon 55906 -lunches 56827 -lunchtime 57970 -lunes 64201 -lunesta 62762 -lung 43959 -lunged 64657 -lungs 50832 -luni 62469 -lupe 63991 -lupin 62196 -lupus 53952 -lurch 65452 -lure 53407 -lured 57696 -lures 59357 -lurid 62331 -luring 61256 -lurk 60952 -lurker 63245 -lurking 56388 -lurks 62917 -lurkswithin 65170 -lus 60762 -luscious 57566 -lush 53138 -lust 55474 -luster 59774 -lustful 63245 -lusting 63792 -lustre 60670 -lustrous 59923 -lusts 63245 -lusty 65170 -lute 61699 -lutea 63419 -luteal 60238 -luteinizing 57609 -luteum 63419 -luteus 63601 -luther 65170 -lutheran 65452 -luting 62762 -lution 57785 -luton 63077 -lutte 63792 -lutzae 62762 -luv 49986 -luvin 64905 -luvs 62196 -lux 58919 -luxS 61818 -luxe 59292 -luxor 64423 -luxuries 60321 -luxurious 50292 -luxuriously 60762 -luxury 45402 -luz 60670 -lv 53124 -lvl 52778 -lvls 65170 -lvoe 61699 -lw 64905 -lwo 62331 -lx 58632 -ly 52521 -lyase 61152 -lyasins 65170 -lychee 65170 -lycopene 59630 -lycra 61051 -lye 65170 -lyfe 65452 -lying 47304 -lyk 57653 -lymph 48063 -lymphadenopathy 62196 -lymphatic 54601 -lymphatics 64201 -lymphoblast 64905 -lymphoblastic 59424 -lymphoblastoid 61940 -lymphoblasts 63419 -lymphocyte 52725 -lymphocytes 50394 -lymphocytic 55604 -lymphoid 53695 -lymphokine 64657 -lymphoma 51825 -lymphomas 58745 -lymphomatoid 63077 -lymphoproliferative 61584 -lymphosarcoma 65170 -lymphotropic 63245 -lynch 60670 -lynched 65452 -lynching 63077 -lynn 57238 -lynx 63991 -lyoko 65452 -lyon 64657 -lyophilized 58802 -lyric 52118 -lyrical 55657 -lyrically 64201 -lyricdownload 54727 -lyricist 60580 -lyrics 35905 -lyricz 65452 -lyriikat 65170 -lyrique 60238 -lysate 55877 -lysates 54924 -lyse 63792 -lysed 54879 -lysine 54946 -lysing 65452 -lysis 52399 -lysosomal 55738 -lysosomes 59702 -lysozyme 57609 -lyst 60580 -lytic 58017 -lywio 63601 -lyzed 61051 -là 63245 -lá 62469 -låttexter 65170 -légales 63792 -léirmheas 59702 -línea 64201 -líquido 64423 -líricas 62762 -löschen 61051 -m 37001 -mA 51444 -mAChR 61940 -mATX 62613 -mAb 53316 -mAbs 59923 -mAh 56585 -mAs 65170 -mC 64657 -mCPBG 61051 -mCi 62331 -mE 64905 -mEq 65452 -mGluR 65452 -mH 63245 -mI 65452 -mIPSC 63991 -mIPSCs 64905 -mIRC 57876 -mJ 62469 -mJy 63419 -mL 48097 -mLearning 65170 -mM 42399 -mOsm 64201 -mRNA 45426 -mRNAs 54879 -mSQL 65170 -mT 61699 -mTOR 60405 -mV 52765 -mW 57160 -mY 61256 -ma 47799 -maT 58262 -maa 64201 -maak 62469 -maar 58262 -mab 64657 -maby 64905 -mac 48445 -macabre 61472 -macaque 61699 -macaques 64201 -macaroni 59164 -macau 64905 -macbook 56140 -mace 59164 -maceration 64905 -mach 62331 -machete 64657 -machinations 62613 -machine 40343 -machine's 59923 -machined 55526 -machineheads 64423 -machineries 65170 -machinery 48562 -machines 44264 -machinima 55604 -machining 53646 -machinist 62762 -machinists 65170 -macho 57482 -macht 61818 -macintosh 62066 -macjack 64657 -mack 59848 -mackerel 61051 -macloviana 64201 -macmost 59923 -macnn 64905 -macosxhints 61818 -macro 50164 -macrobiotic 64905 -macrocyclic 60405 -macroeconomic 54924 -macroeconomics 62331 -macroinvertebrate 65170 -macrolide 62066 -macromedia 59101 -macromodel 62917 -macromolecular 59848 -macromolecule 63601 -macromolecules 59774 -macronutrient 62762 -macrophage 53392 -macrophages 50568 -macrophylla 65452 -macros 57524 -macroscopic 53256 -macroscopically 62917 -macrosomia 65452 -macrourus 65452 -macrovascular 63991 -macrumors 51711 -macs 62613 -macula 61051 -maculae 63419 -macular 54439 -maculata 63991 -macvidia 61584 -macy's 65170 -mad 46852 -madagascar 64201 -madam 63245 -madara 64201 -madcap 64201 -madd 63792 -madden 59848 -maddening 62469 -maddie 62762 -made 31856 -madeira 64201 -madeleines 63601 -madiaq 64657 -madison 57970 -madly 62196 -madman 61152 -madmax 64905 -madness 53679 -mado 64657 -madonna 55766 -madre 61940 -madrid 58860 -mae 58017 -maelstrom 65452 -maemo 63419 -maestro 58979 -mafia 56170 -mafic 63245 -mag 52164 -magazin 65170 -magazine 42782 -magazine's 55906 -magazines 47968 -mage 57122 -magellan 65170 -magenta 62066 -magento 63792 -mages 61362 -maggie 59923 -maggots 63419 -magi 63991 -magia 62762 -magic 45475 -magical 49919 -magically 57482 -magician 57566 -magicians 61940 -magick 64657 -magickal 65170 -magistrate 57160 -magistrates 60157 -magix 59848 -magjike 64905 -magma 57653 -magmas 64423 -magmatic 60157 -magmatism 63991 -magna 54479 -magnate 62196 -magnesia 65170 -magnesium 49758 -magnet 49992 -magnetic 42237 -magnetically 57785 -magnetism 59774 -magnetite 63991 -magnetization 53182 -magnetized 61699 -magnetizing 62917 -magnetoconductance 65170 -magnetoelastic 63601 -magnetohydrodynamic 64657 -magnetometer 62331 -magnetoresistance 58688 -magnetosphere 64201 -magnetostrictive 65170 -magnetron 58688 -magnets 53346 -magnification 52096 -magnificence 63601 -magnificent 50081 -magnificently 62066 -magnified 56293 -magnifier 63077 -magnifies 61940 -magnify 58262 -magnifying 57318 -magnitude 45875 -magnitudes 54992 -magnocellular 61472 -magnolia 57785 -magnon 64201 -magnons 64905 -magnum 60492 -magnétique 64905 -magpie 64201 -mags 57318 -magyar 55107 -mah 57199 -mahal 63792 -maharashtra 63419 -mahi 63245 -mahjong 64201 -mahogany 55766 -mai 51783 -maid 53377 -maiden 54399 -maidenhead 59292 -maids 58745 -maiko 61818 -mail 41103 -mailbag 63991 -mailbox 51434 -mailboxes 57199 -mailed 49572 -mailer 55250 -mailers 61152 -mailing 44113 -mailings 56293 -mailman 64657 -mailorder 64657 -mailroom 63077 -mails 55474 -mailserver 62469 -mailservers 60000 -mailto 63419 -maimed 61818 -main 35193 -mainboard 60952 -maine 56485 -mained 62196 -mainframe 56756 -mainframes 63991 -maining 63245 -mainland 52818 -mainline 59560 -mainlogo 60952 -mainly 42651 -mains 53392 -mainstay 58577 -mainstays 65170 -mainstream 48533 -mainstreaming 62469 -maintain 40542 -maintainability 64423 -maintained 42253 -maintainer 59491 -maintainers 58262 -maintaining 44599 -maintains 47467 -maintenance 41550 -maintenant 61472 -mais 52291 -maison 60952 -maisonette 65170 -maize 54792 -maj 59630 -majestic 54459 -majestically 64423 -majesty 60157 -majeur 63419 -major 36389 -majordomo 63077 -majored 61699 -majoring 56972 -majorities 62917 -majority 41865 -majority's 65170 -majorly 64905 -majors 54226 -mak 63077 -makati 65452 -make 30617 -makefile 63991 -makeing 64905 -maken 63991 -makeover 54245 -makeovers 62917 -maker 47332 -maker's 61584 -makers 47831 -makes 36356 -makeshift 57696 -makespan 63419 -maketh 64905 -makeup 48887 -makin 59039 -makina 63991 -making 36025 -makings 61584 -mal 49547 -mala 60762 -malabsorption 61051 -malachite 64423 -maladaptive 60492 -maladie 64905 -maladies 63601 -malady 63792 -malaise 60762 -malaj 64905 -malaria 51284 -malariae 63601 -malarial 62917 -malas 65452 -malate 62762 -malay 61818 -malayalam 59848 -malaylam 64201 -malaysia 56862 -malaysian 61256 -malcolm 64657 -maldives 65170 -male 40933 -male's 62762 -maleate 64201 -maleic 62917 -maleimide 64905 -males 46471 -malevolent 62066 -malfeasance 65170 -malformation 57970 -malformations 57399 -malformed 60856 -malfunction 56452 -malfunctioning 60492 -malfunctions 61940 -mali 63991 -malian 65452 -malibu 63601 -malic 62066 -malice 59292 -malicious 51846 -maliciously 64905 -maligna 65452 -malignancies 56021 -malignancy 55934 -malignant 48970 -maligne 62469 -maligned 63419 -maligno 62613 -malized 65170 -mall 49926 -mall's 64657 -mallard 65452 -mallards 64657 -malleable 62613 -mallet 63419 -malloc 62331 -mallorca 62469 -malls 55849 -mallu 58017 -mally 62762 -malnourished 59227 -malnutrition 56388 -malo 64423 -malocclusion 63991 -malondialdehyde 61699 -malonyl 64657 -malpractice 54902 -mals 60856 -malt 55130 -malta 63077 -malted 65452 -maltose 61818 -maltrato 64905 -maltreated 65452 -maltreatment 58745 -malty 63991 -malvinas 63601 -malware 52303 -mam 61818 -mama 53038 -mama's 62762 -mamas 61818 -mambo 60762 -mambots 60405 -mame 63419 -mami 61152 -mamma 57399 -mammal 57831 -mammalian 49223 -mammals 53407 -mammary 52913 -mammogram 59774 -mammograms 61699 -mammographic 62196 -mammography 57399 -mammoth 57440 -mamta 61818 -man 36825 -man's 47863 -mana 54380 -manage 41429 -manageability 62469 -manageable 54857 -managed 42241 -management 35969 -management's 56262 -managements 65170 -manager 40483 -manager's 57238 -managerial 52315 -managers 44637 -manages 48487 -managing 43877 -managment 61940 -mance 59227 -manchester 55992 -mand 60670 -manda 64201 -mandamus 62469 -mandarin 58802 -mandatary 64201 -mandate 50454 -mandated 52375 -mandates 55373 -mandating 60580 -mandatory 48595 -mandi 65452 -mandible 59923 -mandibles 63991 -mandibular 55154 -mandingo 62762 -mandir 64905 -mandolin 59424 -mandrel 60492 -mandy 62196 -mane 61051 -manejo 65170 -manent 65452 -manera 61584 -maneuver 54857 -maneuverability 62917 -maneuvered 63991 -maneuvering 60580 -maneuvers 57741 -manga 50670 -manganese 53286 -mangas 63792 -mange 64201 -manger 60580 -mangle 59923 -mangled 62762 -mango 55037 -mangoes 61362 -mangos 63991 -mangosteen 57876 -mangrove 58313 -mangroves 62762 -manhattan 59923 -manhole 60321 -manhood 61362 -manhunt 64657 -mani 63601 -mania 55604 -maniac 61362 -maniacal 64657 -maniacs 63419 -manic 56585 -manicotti 64905 -manicure 59491 -manicured 61472 -manifest 51482 -manifestation 53271 -manifestations 51406 -manifested 53679 -manifesting 59774 -manifestly 59702 -manifesto 58919 -manifests 56050 -manifold 50898 -manifolds 56585 -manila 57876 -manips 63601 -manipulate 51867 -manipulated 53301 -manipulates 62613 -manipulating 54792 -manipulation 50033 -manipulations 56356 -manipulative 59227 -manipulator 57318 -manipulators 60157 -mankind 53970 -mankind's 60952 -manly 58470 -manmade 61699 -mann 60580 -manna 65170 -manned 55631 -mannequin 60000 -mannequins 63245 -manner 43117 -mannered 63419 -mannerisms 63077 -manners 55657 -mannii 63245 -manning 59630 -mannitol 61940 -mannose 60492 -manny 63601 -mano 60157 -manoeuvre 58745 -manoeuvres 61152 -manoeuvring 60078 -manoj 65452 -manok 63991 -manometer 63792 -manometric 63077 -manometry 63077 -manor 56791 -manos 63991 -manpower 55154 -manquez 65452 -mans 55130 -mansfield 64905 -mansion 53095 -mansions 60321 -manslaughter 58577 -manson 61940 -mansoni 61152 -manta 60321 -mantel 60580 -mantis 63792 -mantle 53533 -mantles 65452 -mantra 56452 -mantras 61051 -manu 63245 -manual 42892 -manually 47683 -manuals 51275 -manuel 59630 -manufactory 64423 -manufacture 46982 -manufactured 46043 -manufacturer 44503 -manufacturer's 49400 -manufacturers 44709 -manufactures 50906 -manufacturing 42692 -manufrs 65170 -manure 54419 -manus 64423 -manuscript 49529 -manuscripts 53729 -many 31602 -maori 63792 -map 35652 -mapa 59491 -maphack 62762 -maple 50957 -maples 65170 -maplestory 64201 -mapped 50033 -mapper 62066 -mapping 45513 -mappings 54479 -mapquest 63991 -maps 42593 -mar 54459 -mara 62917 -marae 63419 -marathi 62196 -marathon 51825 -marathons 62066 -marble 51630 -marbles 60238 -marbling 63792 -marc 55373 -marca 63077 -march 50379 -marcha 64657 -marche 65452 -marched 54459 -marchers 62917 -marches 59039 -marching 54499 -marcia 64905 -marco 57970 -marcos 64201 -marcus 59039 -mardi 62469 -mare 55631 -marek 63792 -mares 58688 -margaret 60000 -margarine 58577 -margarita 61152 -margaritas 62469 -marge 65452 -margin 47540 -marginal 49342 -marginale 58745 -marginalised 63601 -marginalization 63419 -marginalized 56618 -marginally 55934 -marginatus 63245 -margins 50143 -mari 62196 -maria 53762 -mariachi 63991 -mariage 63077 -mariah 56618 -marian 62196 -marie 57399 -marifolia 64423 -marijuana 51122 -marily 65452 -marilyn 58979 -marin 64423 -marina 54479 -marinade 59357 -marinaded 65452 -marinara 61362 -marinas 62613 -marinate 63792 -marinated 57785 -marine 45560 -mariner 65452 -marinero 65170 -mariners 64905 -marines 58919 -marino 63991 -marinocine 61940 -marinus 63792 -mario 53377 -mariodebian 63991 -marion 63077 -maripaludis 63792 -mariska 64201 -marissa 64905 -marist 64905 -marital 50591 -maritima 63245 -maritime 52712 -mariucia 63792 -marized 63991 -mark 39957 -marked 40105 -markedly 49867 -marker 47044 -markers 47050 -market 36531 -market's 55738 -marketability 64657 -marketable 57524 -marketed 51700 -marketer 55821 -marketers 53226 -marketing 39502 -marketplace 50006 -marketplaces 64657 -markets 42360 -marketshare 65170 -marking 49789 -markings 53517 -marks 44277 -marksman 59424 -markt 65452 -markup 56050 -markups 62066 -marlboro 65452 -marley 61940 -marlin 61051 -marlon 65170 -marmalade 63991 -maroc 63077 -maroon 58262 -marque 62469 -marquee 58313 -marquees 64423 -marques 63601 -marquez 65452 -marquis 63991 -marrage 63991 -marraige 62196 -marred 59702 -marriage 43771 -marriages 52927 -married 42116 -marries 57199 -marrige 64423 -marriott 63792 -marrow 48063 -marry 49764 -marrying 56756 -mars 56262 -marseille 63077 -marsh 54992 -marsha 65452 -marshal 59702 -marshall 61472 -marshalling 64657 -marshalrd 59630 -marshals 60762 -marshes 58470 -marshmallow 61818 -marshmallows 62469 -marshmellow 62331 -mart 60580 -marta 63991 -martensite 61256 -martensitic 65452 -martha 61584 -martial 50522 -martian 61584 -martin 53796 -martinez 63601 -martingale 63419 -martini 58688 -martinibuster 56080 -martinis 64423 -martinkl 60157 -marty 64423 -martyr 61152 -martyrdom 62331 -martyrs 61472 -marubaldini 63991 -marvel 55684 -marvelcakes 64905 -marveled 63077 -marveling 64905 -marvellous 58113 -marvelous 54749 -marvelously 63792 -marvels 63419 -marvin 61940 -marx 63245 -mary 51974 -maryland 57199 -marys 63601 -marzipan 63245 -marzo 60238 -mas 51087 -masa 60000 -masala 55130 -mascara 59848 -mascarpone 64905 -mascot 57358 -mascots 63245 -masculine 54749 -masculinity 60856 -mash 56170 -mashed 55604 -masher 62196 -mashing 62917 -mashup 59227 -mashups 62613 -masjid 65170 -mask 47815 -masked 54479 -masking 54399 -maskless 65452 -masks 52940 -mason 57970 -masonic 63991 -masonry 53847 -masons 62469 -masque 64201 -masquerade 61699 -masquerading 60952 -mass 40139 -massa 63419 -massachusetts 59164 -massacre 55711 -massacred 62762 -massacres 63991 -massage 47015 -massaged 63601 -massager 63419 -massages 57009 -massaging 60670 -masse 59630 -massed 62196 -masses 49429 -masseter 62066 -masseuse 62917 -massif 61940 -massing 63245 -massive 44748 -massively 55793 -massless 60762 -mast 53109 -mastectomy 60000 -master 42897 -master's 51752 -masterbating 61256 -masterbation 59702 -mastercard 58688 -masterclass 62196 -masterclasses 64423 -mastered 54133 -masterful 58113 -masterfully 62331 -mastering 55631 -masterly 65170 -mastermind 59630 -masterminded 65452 -masterpiece 54188 -masterpieces 59164 -masterplan 64657 -masters 50507 -masterwork 65170 -mastery 54601 -masthead 62066 -mastic 65170 -mastication 64657 -masticatory 60762 -mastitis 62066 -mastoid 62917 -masts 60580 -masturbando 63792 -masturbate 55849 -masturbates 60952 -masturbating 56140 -masturbation 51793 -masturbatory 59164 -mat 50898 -mata 63792 -matador 63991 -matali 64905 -match 40465 -matchbox 63792 -matched 46834 -matches 44414 -matching 42557 -matchmaker 64423 -matchmaking 60492 -matchup 59357 -matchups 61152 -mate 48614 -mate's 63991 -mated 54749 -mately 56050 -mater 57609 -materia 61818 -material 37029 -material's 64423 -materialeve 64905 -materialism 60321 -materialist 61584 -materialistic 61256 -materiality 63601 -materialize 62762 -materialized 63601 -materially 51248 -materials 38923 -materiel 63991 -maternal 48278 -maternally 62331 -maternity 51321 -mates 51825 -matey 65452 -math 47018 -mathematic 63991 -mathematicae 63991 -mathematical 47427 -mathematically 56652 -mathematician 59424 -mathematicians 58979 -mathematics 49764 -maths 54664 -mathsiscoolihatepe 65452 -mathwonk 64657 -mati 64905 -matic 57741 -matical 63419 -matically 62469 -matinee 62613 -mating 52029 -matings 64201 -mation 52040 -mations 64657 -matières 63792 -matlab 59923 -matography 65170 -matory 64905 -matric 64905 -matrices 50607 -matriculated 64423 -matriculation 63792 -matrimonial 58262 -matrimonials 63419 -matrimony 63792 -matrix 42101 -matrixes 63245 -matron 62196 -mats 53630 -matt 52886 -matte 55738 -matted 59923 -matter 38828 -mattered 58860 -matters 43628 -matthew 58113 -matthews 64905 -matting 59702 -mattress 52268 -mattresses 55934 -maturation 52447 -maturational 65452 -mature 44159 -matured 58065 -matures 58577 -maturing 57009 -maturities 62066 -maturity 51531 -matériel 64201 -mau 62917 -maui 60670 -maul 63792 -mauled 64201 -maureen 48208 -maurice 63991 -mauritius 65170 -mausoleum 62066 -mauve 64423 -maven 56518 -maverick 59227 -max 43957 -maxX 59424 -maxed 59101 -maxi 60078 -maxilla 62917 -maxillary 55578 -maxillofacial 62469 -maxim 59292 -maxima 53988 -maximal 48305 -maximally 57046 -maximise 53517 -maximises 63792 -maximising 60238 -maximization 59560 -maximize 47634 -maximized 57084 -maximizes 56231 -maximizing 53182 -maximum 38829 -maximums 63601 -maximus 61699 -maxing 64423 -maxon 63792 -maxwell 59227 -maxx 63601 -may 27815 -maya 57399 -mayan 65452 -mayanktandon 62469 -mayb 64201 -maybe 40675 -mayday 65452 -mayer 61152 -mayhem 57399 -maynard 62196 -mayo 57238 -mayonnaise 58065 -mayor 49720 -mayor's 56485 -mayoral 57876 -mayors 58745 -mays 60492 -maytag 64423 -mayumbensis 65170 -mazda 56388 -maze 54857 -mazes 64201 -mañana 63077 -mb 48944 -mbH 63245 -mba 60078 -mbar 59164 -mbps 65452 -mbstring 64201 -mbt 63991 -mc 54519 -mca 63601 -mcafee 61472 -mccain 47507 -mccarthy 63601 -mccartney 61699 -mcclintock 62469 -mcd 65170 -mcdonald 62066 -mcdonalds 62196 -mcfly 64657 -mcg 56756 -mci 63601 -mck 64657 -mckenzie 62762 -mclaren 64201 -mcm 65452 -mcmahon 64905 -mcmama 65452 -mcqueen 60952 -mcr 62762 -mcrypt 65452 -md 53517 -mdb 65452 -mdf 62762 -mdr 64905 -mds 63792 -mdz 58688 -me 29810 -me's 65170 -meCancel 61256 -mePlease 65452 -meV 57199 -mea 59039 -mead 63991 -meade 62066 -meadow 57046 -meadows 57609 -meager 59101 -meagre 60856 -meal 45634 -mealfed 60670 -meals 47297 -mealtime 64905 -mean 37081 -meander 61584 -meandering 59227 -meanders 63419 -meando 65452 -meaning 42649 -meaningful 48063 -meaningfully 60405 -meaningless 55766 -meanings 50670 -means 35462 -meant 43416 -meantime 55877 -meanwhile 57160 -mearnsii 63245 -measles 57482 -measly 63077 -measurable 51867 -measurably 65452 -measure 41290 -measured 39663 -measurement 42750 -measurements 42267 -measures 41532 -measuring 44646 -meat 45380 -meatal 64423 -meatball 63792 -meatballs 60670 -meatless 63792 -meatloaf 61940 -meats 54133 -meatus 63792 -meaty 60762 -mecca 62469 -mech 59702 -mechanic 53271 -mechanic's 63601 -mechanical 43341 -mechanically 52982 -mechanics 49382 -mechanism 41815 -mechanisms 43618 -mechanistic 55274 -mechanistically 65170 -mechanization 61940 -mechanized 60078 -med 51349 -medaka 63601 -medal 50292 -medalist 59560 -medalists 63792 -medallion 58860 -medallions 62613 -medallist 62331 -medals 52765 -meddle 62917 -meddling 60670 -meddyxx 64905 -media 37525 -media's 58262 -mediaeval 62917 -mediafire 62066 -medial 51284 -medialis 65452 -medially 63245 -median 45877 -medians 61940 -mediantis 64657 -medias 63077 -mediaset 62917 -mediastinal 57609 -mediastinum 61818 -mediate 51680 -mediated 48139 -mediately 65452 -mediates 54170 -mediating 54302 -mediation 52899 -mediator 54479 -mediators 55014 -medic 60580 -medicaid 61472 -medical 37265 -medically 53695 -medicament 61256 -medicaments 63077 -medicare 60238 -medicated 59424 -medication 45526 -medications 47843 -medicinal 52375 -medicine 43559 -medicines 49873 -medics 62762 -medida 63601 -medieval 49688 -medigap 65452 -medina 63792 -medio 59491 -mediocre 54727 -mediocrity 60856 -mediolateral 63601 -meditate 59227 -meditating 61051 -meditation 50983 -meditations 62196 -meditative 59630 -mediterranean 58745 -medium 40587 -mediums 58162 -medley 57238 -medline 62613 -medrol 62762 -medroxyprogesterone 62762 -meds 54341 -medulla 57046 -medullary 57084 -medusula 63601 -mee 60492 -meebo 62917 -meee 63991 -meek 62469 -meenakshilover 64423 -meeps 61362 -meer 59630 -meet 37736 -meetin 64905 -meeting 38041 -meetings 43705 -meets 44001 -meetup 60157 -mefeedia 60405 -meg 56200 -mega 52765 -megabyte 57482 -megabytes 58802 -megahertz 64657 -megakaryocyte 64657 -megakaryocytes 65452 -megaman 63077 -megan 55934 -megane 61584 -megaphone 65452 -megapixel 55992 -megapixels 59357 -megathrust 64201 -megaupload 54992 -megawatt 63991 -megawatts 60492 -megfilmworks 65170 -megs 63419 -meh 60157 -mehr 55631 -mei 63792 -meilleur 62469 -mein 56862 -meine 60321 -meinem 63419 -meinen 62331 -meiner 62196 -meio 64423 -meiosis 61584 -meiotic 57831 -meister 64201 -mejor 55250 -mejores 58745 -mel 58262 -mela 65452 -melalui 64905 -melamine 57084 -melancholic 63792 -melancholy 57524 -melanie 60670 -melanin 59227 -melanistic 64201 -melanocytes 63991 -melanocytic 64905 -melanogaster 57046 -melanoma 51220 -melanomas 61699 -melas 63245 -melatonin 53662 -melbourne 57923 -meld 59774 -melded 64201 -melding 62331 -mele 65452 -melee 56021 -melhor 60405 -melhores 63245 -meliloti 61472 -melissa 55423 -mellitus 54264 -mellow 55448 -mellowed 64657 -melo 58262 -melodia 65452 -melodic 55107 -melodies 55657 -melodious 64423 -melodrama 61362 -melodramatic 63792 -melody 52791 -melon 58065 -melons 61584 -melphalan 63077 -melt 49720 -meltdown 53796 -melted 52291 -meltedmike 62762 -melting 48933 -melts 55849 -meltwater 63419 -melvin 65452 -mem 57084 -member 35788 -member's 51690 -membered 59774 -members 35548 -membership 43024 -memberships 56618 -membrane 42574 -membranes 48204 -membranous 59292 -meme 56518 -memebers 64201 -memento 62331 -mementos 62762 -memes 61818 -memo 52291 -memoir 55037 -memoirs 58365 -memorabilia 54727 -memorable 48907 -memorably 63601 -memoranda 61940 -memorandum 53899 -memorexa 63077 -memoria 63077 -memorial 49913 -memorialize 63419 -memorials 59357 -memoriam 62469 -memories 46362 -memorization 64657 -memorize 57238 -memorized 59357 -memorizing 60952 -memory 39714 -memos 59630 -memphis 60157 -men 38583 -men's 47911 -mena 65452 -menace 57122 -menacing 60321 -menarche 63245 -mend 56324 -mendations 65170 -mended 62331 -mending 64201 -mendozathejew 63991 -mene 65170 -meneame 64657 -meni 62762 -menial 63991 -meningeal 61940 -meningioma 65452 -meningitidis 58979 -meningitis 55934 -meningocele 64657 -meningococcal 57785 -meniscal 58523 -menisci 65170 -meniscus 59923 -menopausal 57566 -menopause 54924 -menos 58919 -mens 49190 -mensaje 57696 -mensajes 64423 -menses 65170 -mension 65452 -mensional 65452 -menstrual 52899 -menstruating 64657 -menstruation 58979 -menswear 61940 -ment 45226 -mental 42239 -mentality 55037 -mentally 50568 -mentary 60492 -mentation 57785 -mente 63991 -mented 56452 -mentees 64201 -menthol 64905 -menting 63245 -mention 43423 -mentioned 41640 -mentioning 52686 -mentions 52210 -mentor 51867 -mentored 61362 -mentoring 52363 -mentors 54643 -mentorship 61362 -ments 48964 -menu 40554 -menu's 63792 -menubar 64201 -menuitem 62917 -menus 48093 -meoramri 65452 -meow 60492 -meperidine 60157 -mepivacaine 64657 -meq 64657 -mer 54581 -mera 59357 -meray 63419 -merc 64905 -mercado 63419 -mercantile 64657 -mercedes 55711 -mercenaries 60856 -mercenary 60405 -merch 58688 -merchandise 48283 -merchandisers 63419 -merchandising 50758 -merchant 47511 -merchant's 53423 -merchantability 59560 -merchantcircle 52886 -merchants 47367 -merci 58860 -mercial 62066 -merciful 62917 -mercifully 65452 -merciless 63245 -mercilessly 61818 -mercurial 61152 -mercuric 61152 -mercury 50314 -mercy 52496 -mere 47903 -meredith 64905 -mereka 65170 -merely 45547 -merge 50560 -merged 50702 -merger 48776 -mergers 53485 -merges 56021 -merging 52118 -meri 63419 -meric 63792 -merical 64423 -merida 61818 -meridia 52130 -meridian 58632 -meridians 63601 -meridional 61152 -meringue 62762 -merino 61818 -meristem 63245 -meristematic 64657 -merit 51175 -merited 64423 -meritless 65170 -meritorious 61818 -merits 51396 -merization 64423 -merken 63419 -merle 63792 -merlin 64657 -merlot 64657 -mermaid 59292 -mermaids 63245 -meromorphic 63419 -meromyosin 64905 -meron 64201 -merous 64905 -merozoite 63245 -merrier 65452 -merrily 63601 -merry 55348 -mers 62066 -mes 57970 -mesa 59101 -mesangial 58162 -mesencephalic 63077 -mesenchymal 57440 -mesenchyme 62613 -mesenteric 53934 -mesenteroides 63077 -meses 62331 -mesh 46723 -meshed 63077 -meshes 57923 -meshing 60580 -meshwork 62613 -mesial 62917 -mesmerized 61818 -mesmerizing 60405 -mesmo 62762 -meso 62196 -mesoderm 59424 -mesodermal 63419 -meson 60580 -mesons 62196 -mesophilic 63601 -mesophyll 64657 -mesoporous 63245 -mesos 64423 -mesoscale 60405 -mesothelial 62196 -mesothelioma 48959 -mesothelium 62613 -mesquite 64423 -mess 48368 -message 32630 -message's 50446 -messageboard 63991 -messageboards 63792 -messaged 64201 -messages 40508 -messaging 49608 -messanger 65170 -messed 52521 -messenger 49809 -messengers 58802 -messes 59292 -messiah 61940 -messianic 62331 -messin 64657 -messing 53952 -messmo 63792 -messy 54170 -mesure 59424 -met 41182 -meta 53211 -metabelian 64657 -metabolic 46834 -metabolically 60580 -metabolism 46934 -metabolite 52210 -metabolites 51157 -metabolize 63077 -metabolized 57785 -metabolizing 62066 -metabotropic 61362 -metacarpal 60000 -metachromatic 64423 -metachronous 63419 -metadata 49435 -metafile 61699 -metagenome 65170 -metal 40121 -metallic 48721 -metallica 54792 -metallicities 64905 -metallicity 58688 -metallized 64423 -metalloproteinase 62066 -metalloproteinases 60762 -metallothionein 65170 -metallurgical 59560 -metallurgy 61256 -metals 48390 -metalworking 62196 -metamorphic 57923 -metamorphism 60321 -metamorphosed 63601 -metamorphosis 60670 -metaphase 60405 -metaphor 54133 -metaphorical 61256 -metaphors 58162 -metaphysical 56899 -metaphysics 59630 -metaphysis 64201 -metaplasia 59848 -metaplastic 63601 -metasedimentary 65170 -metastable 57358 -metastases 52327 -metastasis 53779 -metastatic 50915 -metatarsal 61152 -metathesis 62613 -metazoan 62196 -meted 63792 -meteor 56388 -meteoric 62469 -meteorite 59702 -meteorites 61256 -meteorological 54857 -meteorologist 61152 -meteorologists 61940 -meteorology 60952 -meteors 62917 -meter 47675 -metered 59848 -metering 55578 -meters 48318 -metformin 56485 -meth 57440 -methacrolein 62066 -methacrylate 57653 -methacrylic 60762 -methadone 57358 -methamphetamine 57696 -methane 53361 -methanol 51650 -methanolic 63991 -methemoglobin 63991 -methicillin 64905 -methionine 56080 -method 33914 -methodical 62613 -methodically 64201 -methodist 64423 -methodologic 64201 -methodological 52571 -methodologies 52571 -methodology 46757 -methods 38465 -methotrexate 55373 -methoxamine 63991 -methoxy 60321 -methyl 47931 -methylated 55657 -methylation 52459 -methylcellulose 65170 -methylene 53533 -methylenetetrahydrofolate 63792 -methylmethacrylate 65452 -methylphenidate 63077 -methylprednisolone 60321 -methyltransferase 61256 -meticulous 56388 -meticulously 57084 -metoclopramide 63792 -metoprolol 59357 -metre 54643 -metres 48877 -metric 48581 -metrical 60321 -metrically 63077 -metrics 50799 -metro 49246 -metrogel 64905 -metroid 63077 -metrological 65452 -metrology 60157 -metromix 62331 -metronidazole 60952 -metronome 64657 -metropolis 58860 -metropolitan 49713 -metros 59292 -metry 62469 -mets 63245 -mettle 63601 -mettre 64201 -meu 57482 -meuniere 65452 -meus 63245 -mevalonate 63792 -mew 62613 -mewn 60078 -mews 63419 -mex 64657 -mexican 53301 -mexicana 63419 -mexico 51996 -mexyl 62917 -meyer 54041 -meyers 57046 -mezerein 64657 -mezzanine 58417 -mezzo 63419 -mf 62331 -mfeA 63601 -mfg 60762 -mfisher 63792 -mfp 60856 -mfx 65452 -mg 41859 -mga 55552 -mgm 58212 -mgmt 62066 -mgr 65170 -mgs 62762 -mh 62066 -mhunter 65170 -mhz 63245 -mhí 65170 -mi 42150 -miRNA 59702 -miRNAs 63991 -mia 54207 -miami 53613 -miata 64657 -mic 51590 -mica 57923 -micah 63991 -micardis 64423 -micas 63419 -mice 42387 -micellar 58523 -micelle 59292 -micelles 57358 -mich 58017 -michael 49867 -michaeldyvaugh 60000 -michaels 61699 -micheal 63245 -michel 60492 -michele 61051 -michelle 54360 -michellemans 64905 -michigan 54283 -mick 63601 -mickey 60238 -micrantha 65170 -micro 49529 -microIOC 63601 -microM 60952 -microRNA 64657 -microRNAs 63419 -microSD 55474 -microSDHC 60078 -microalgae 63792 -microanalysis 64905 -microarchitecture 63601 -microarray 53010 -microarrays 59774 -microbands 65170 -microbe 64657 -microbes 56972 -microbial 50306 -microbiocide 62613 -microbiologic 65452 -microbiological 56721 -microbiologist 65452 -microbiology 56652 -microbiota 65452 -microcalcifications 61699 -microcapsule 61362 -microcapsules 61152 -microcell 63245 -microcentrifuge 61256 -microchannel 63991 -microchip 59164 -microchips 62917 -microcirculation 63077 -microclimate 64657 -microcode 64201 -microcomputer 59702 -microcomputers 63601 -microcontroller 57609 -microcontrollers 63419 -microcosm 61472 -microcosms 64423 -microcracks 64657 -microcredit 64201 -microcrystalline 59357 -microcrystals 65452 -microcystin 65170 -microdermabrasion 63792 -microdevice 64423 -microdialysis 60492 -microeconomic 62762 -microelectrode 60492 -microelectrodes 61699 -microelectronic 60856 -microelectronics 63792 -microenvironment 62469 -microextraction 65452 -microfabricated 64657 -microfiber 58632 -microfiche 57741 -microfilm 55766 -microfinance 49713 -microflora 59164 -microfluidic 60952 -microfungi 64657 -microglia 58632 -microglial 60000 -microgram 62196 -micrograms 56791 -micrograph 57238 -micrographs 55877 -microgravity 61256 -microhardness 61818 -microinjected 62331 -microinjection 62613 -microinstruction 59630 -microinstructions 64423 -microkeratome 63991 -microlens 62762 -microlenses 63419 -microliter 63991 -microliters 60157 -microloans 58065 -micromachined 61940 -micromachining 63077 -micrometer 61051 -micrometers 60856 -micromolar 62066 -micron 55178 -micronized 63792 -microns 56021 -micronucleus 64201 -micronutrient 61051 -micronutrients 62469 -microorganism 59560 -microorganisms 54170 -microparticle 62613 -microparticles 58632 -microphone 50881 -microphones 57199 -microphylla 64905 -micropipette 60762 -microplate 61699 -micropono 63991 -micropores 64905 -microporous 61256 -micropro 63245 -microprobe 62331 -microprocessor 55474 -microprocessors 61256 -microsatellite 54727 -microsatellites 62613 -microscale 64905 -microscope 49688 -microscopes 59424 -microscopic 49789 -microscopical 61818 -microscopically 61699 -microscopy 48422 -microsecond 65170 -microseconds 62469 -microshear 62196 -microslide 62613 -microsoft 47955 -microsomal 56050 -microsomes 56899 -microsphere 62066 -microspheres 57876 -microspore 62469 -microspores 61818 -microstrip 54969 -microstructural 59774 -microstructure 54226 -microstructures 58919 -microsurgery 65452 -microsurgical 62331 -microsystems 63419 -microtiter 58688 -microtome 62762 -microtubule 56585 -microtubules 57122 -microvascular 56140 -microvasculature 65452 -microvessel 64905 -microvessels 65170 -microvilli 61940 -microvolume 60492 -microwave 48721 -microwaved 65170 -microwaves 60321 -mics 59923 -micturition 64423 -mid 46474 -midazolam 60405 -midbrain 60492 -midday 57084 -middie 63792 -middle 41349 -middleman 63991 -middlemen 63601 -middleware 55474 -middleweight 60157 -middling 64905 -mide 62762 -midfield 57399 -midfielder 55963 -midfoot 64657 -midget 55448 -midgets 60952 -midgut 59227 -midguts 65452 -midi 53830 -midis 63991 -midlands 62762 -midlet 64657 -midlife 59101 -midline 55684 -midlothian 63792 -midnight 50067 -midpoint 56618 -midrange 59774 -midrib 65452 -mids 62331 -midseason 64905 -midsize 59560 -midsized 64905 -midsole 60405 -midst 51095 -midsummer 62917 -midterm 60492 -midtown 58262 -midway 55738 -midweek 61584 -midwest 59039 -midwestern 62196 -midwife 56935 -midwifery 58860 -midwives 57238 -midyear 64657 -midzone 64423 -mie 62066 -miedo 63991 -mien 62762 -mientras 62066 -mierda 62469 -mieten 64657 -mieux 63245 -miffed 63991 -mig 61584 -might 34807 -might've 62762 -mightily 61699 -mighty 50710 -mignon 61051 -migraine 53138 -migraines 59702 -migrant 54459 -migrants 51711 -migrate 52187 -migrated 53662 -migrates 60321 -migrating 53729 -migration 46514 -migrations 58162 -migratory 55037 -migrât 65452 -miguel 60580 -mihi 62917 -mii 60000 -mij 62196 -mijn 60952 -mika 63245 -mike 51387 -mikeperry 64657 -mikerickson 63077 -mikes 65452 -mikesieben 64905 -mikey 61256 -mil 50053 -mila 64201 -milage 64657 -milan 59560 -milano 57482 -mild 46015 -milder 57653 -mildew 58065 -mildews 65452 -mildly 54226 -mile 43805 -mileage 50710 -milepost 62917 -miles 36343 -milestone 52954 -milestones 55398 -miley 56862 -milf 51052 -milfs 58979 -miliary 61818 -milieu 57653 -militant 54770 -militants 55226 -militaria 63419 -militarily 65452 -militarism 64657 -military 41116 -military's 60492 -militate 65452 -militia 54946 -militiamen 63792 -militias 58919 -milk 43948 -milked 61584 -milking 56585 -milks 64905 -milkshake 62331 -milky 59702 -mill 48791 -mille 60238 -milled 55877 -millenium 61152 -millennia 61584 -millennium 55906 -miller 54924 -millet 60952 -milli 64201 -milligram 59848 -milligrams 58365 -milliliter 59702 -milliliters 60000 -millilitres 65170 -millimeter 57358 -millimeters 57696 -millimetre 64423 -millimetres 61699 -millimolar 62917 -milling 53423 -million 36637 -millionaire 57238 -millionaires 60238 -millions 43484 -millionth 60670 -millisecond 59560 -milliseconds 56899 -millones 65452 -mills 53423 -millwork 63419 -milo 61152 -milous 65452 -milrinone 64423 -mils 61699 -milton 63077 -milwaukee 60238 -mim 63245 -mime 59630 -mimetic 63991 -mimi 63245 -mimic 52832 -mimicked 60238 -mimicking 56899 -mimicry 63077 -mimics 57199 -mimivirus 61940 -mimo 64201 -mimosa 64905 -min 39682 -minX 59560 -mina 65170 -minal 63792 -mination 60580 -mince 59101 -minced 55226 -mind 40082 -mind's 59227 -minded 52886 -mindful 56652 -mindfulness 59560 -minding 62066 -mindjet 61584 -mindless 58417 -mindlessly 64657 -minds 48543 -mindset 55084 -mindsets 65452 -mindy 64201 -mine 42856 -mine's 64905 -mined 52435 -minefield 63991 -miner 57741 -miner's 64657 -mineral 46418 -mineralisation 64905 -mineralization 57399 -mineralized 61699 -mineralocorticoid 65170 -mineralogical 61940 -mineralogy 60321 -minerals 50285 -miners 54749 -mines 51700 -ming 58979 -mingle 58745 -mingled 60238 -mingling 61472 -minh 63245 -minha 59164 -mini 45222 -miniBook 64905 -miniSD 63991 -miniature 51444 -miniatures 62066 -miniaturization 61940 -miniaturized 63245 -minibus 60762 -minicom 63792 -minigolf 60157 -minim 62331 -minima 56652 -minimal 45365 -minimalism 62066 -minimalist 57923 -minimalistic 65170 -minimally 53470 -minimangler 63601 -minimap 62469 -minimax 63245 -minimisation 61940 -minimise 52339 -minimised 61472 -minimises 61584 -minimising 58262 -minimization 54245 -minimize 46471 -minimized 54170 -minimizes 53779 -minimizing 50932 -minimum 40349 -minimums 63245 -mining 46868 -minions 62196 -minis 61256 -miniscule 61152 -miniseries 60321 -miniskirt 65452 -minister 47140 -minister's 59560 -ministered 61940 -ministerial 56899 -ministering 62196 -ministers 51406 -ministration 62196 -ministries 54924 -ministry 48327 -ministry's 61818 -minitracheotomy 65452 -minivan 59923 -minivans 63991 -mink 57278 -minke 61818 -minnapple 64201 -minneapolis 60856 -minnesota 57278 -minnie 64905 -minnow 63077 -minnows 62762 -minocycline 64423 -minogue 63991 -minor 42738 -minor's 64423 -minorities 53729 -minority 47304 -minors 54643 -minoxidil 63245 -mins 45168 -mint 51762 -minted 60405 -mints 63077 -minus 48923 -minuscule 62469 -minute 41972 -minute's 64905 -minutely 62196 -minutes 35440 -minutiae 61699 -minuto 64657 -minutos 61152 -minéral 64201 -mio 57009 -mip 61940 -mipmap 64657 -mips 62331 -mipsel 64657 -mir 54902 -mira 60321 -mirabilis 62762 -miracary 65170 -miracle 52164 -miracles 55793 -miraculous 57318 -miraculously 60762 -mirage 58523 -miranda 63601 -mirc 59491 -mire 62613 -mired 60952 -miriam 65452 -mirigy 64905 -mirkojax 65452 -miroir 60157 -mirror 45914 -mirrored 55500 -mirroring 57046 -mirrors 49494 -mirtazapine 64905 -mirth 65452 -mirza 63245 -mis 55226 -misadventure 65452 -misadventures 63991 -misaligned 61940 -misalignment 58745 -misappropriated 65170 -misappropriation 62066 -misbehavior 65170 -misbehaviour 65170 -misc 55398 -miscarriage 57609 -miscarriages 61584 -miscarried 63245 -miscategorized 52459 -miscellaneous 49596 -miscellany 64423 -mischief 57653 -mischievous 60078 -miscibility 62917 -miscible 60952 -misclassification 60856 -miscommunication 63245 -misconception 58113 -misconceptions 57358 -misconduct 53423 -misdemeanor 56262 -misdemeanors 62917 -misdiagnosed 62066 -misdiagnosis 59923 -misdirected 62613 -misdirection 65170 -mise 56791 -miserable 54399 -miserably 60670 -misery 54813 -mises 63792 -misfit 61256 -misfits 63419 -misfolded 63601 -misfortune 58979 -misfortunes 62196 -misgivings 62331 -misguided 56687 -mishandled 64201 -mishandling 64201 -mishap 56231 -mishaps 61256 -misidentified 64657 -misinformation 57084 -misinterpret 65452 -misinterpretation 62613 -misinterpreted 60492 -misjudged 64905 -miskat 63991 -mislead 56721 -misleading 51690 -misled 57785 -misma 63792 -mismanagement 60952 -mismatch 52411 -mismatched 58577 -mismatches 59702 -mismo 60321 -miso 61051 -misogyny 64905 -misoprostol 64201 -misorientation 62613 -misperception 63792 -misperceptions 64905 -misplaced 57653 -misprints 63991 -misread 61940 -misreading 64423 -misrepresent 60000 -misrepresentation 58212 -misrepresentations 61584 -misrepresented 59848 -misrepresenting 62066 -misrepresents 64201 -miss 41241 -misschillout 64657 -missed 44346 -missense 59292 -misses 52268 -misshapen 64423 -missile 51266 -missiles 54835 -missin 60762 -missing 41961 -mission 42775 -missional 65170 -missionaries 55849 -missionary 53331 -missions 49999 -mississippi 59357 -misslis 64423 -missouri 56388 -misspecification 65452 -misspelled 57318 -misspelling 61051 -misspellings 60762 -misstated 62066 -misstatement 61699 -misstatements 60856 -missteps 61051 -missus 64201 -missy 60492 -mist 55107 -mistake 48256 -mistaken 52858 -mistakenly 55992 -mistakes 48836 -mistaking 62196 -mister 59923 -misting 58523 -mistletoe 64657 -mistook 63245 -mistreated 61051 -mistreatment 60000 -mistress 53501 -mistrial 62762 -mistrust 61051 -mists 61940 -misty 59774 -mistyped 64657 -misunderstand 60670 -misunderstanding 56140 -misunderstandings 59227 -misunderstood 55657 -misuse 51660 -misused 60952 -misusing 64905 -mit 48975 -mitch 63601 -mitchell 62196 -mite 56140 -miter 63419 -mites 56485 -mithramycin 63077 -mitigate 52699 -mitigated 58577 -mitigates 64657 -mitigating 55202 -mitigation 51931 -mitochondria 52399 -mitochondrial 48148 -mitogen 60762 -mitogenesis 63077 -mitogenic 57785 -mitogens 61472 -mitomycin 61699 -mitoses 62331 -mitosis 58470 -mitotane 63419 -mitotic 54133 -mitra 60405 -mitral 52673 -mits 65170 -mitsubishi 59101 -mitt 62066 -mitted 57876 -mittee 60952 -mitten 64657 -mittens 62762 -mitts 61362 -mitzvah 64201 -miu 63991 -mix 42637 -mixed 42370 -mixer 50654 -mixers 57160 -mixes 51368 -mixing 46045 -mixtape 55906 -mixtapes 62469 -mixture 42732 -mixtures 48191 -mixx 63601 -mixxx 63245 -mize 61818 -mizuno 60762 -mj 63601 -mjc 63792 -mjd 65170 -mk 60405 -mkdir 56080 -mkrishnan 61940 -mkrishnan's 64423 -mkv 60856 -ml 43254 -mlb 59227 -mlm 62469 -mln 57358 -mls 54519 -mlx 65452 -mlz 63991 -mm 39930 -mmHg 55250 -mma 60580 -mmarated 62469 -mmc 64657 -mmf 60762 -mmglist 59774 -mmission 64201 -mmm 58860 -mmo 64201 -mmol 55250 -mmorpg 60321 -mms 55084 -mn 54857 -mnemonic 61699 -mnie 64657 -mnogo 65170 -mnths 62331 -mo 50129 -moan 57831 -moaned 62066 -moaning 59491 -moans 62196 -moat 61362 -mob 51985 -mobbed 64201 -mobbing 64905 -mobi 61584 -mobic 63077 -mobil 59560 -mobile 38152 -mobileStorm 64201 -mobiles 52029 -mobilisation 59101 -mobilise 62196 -mobilised 63419 -mobilities 60000 -mobility 46646 -mobilization 53095 -mobilize 55684 -mobilized 56935 -mobilizes 64423 -mobilizing 58113 -mobimb 61362 -moblog 63991 -moblogic 62917 -mobo 59424 -mobs 57238 -mobster 58113 -mobsters 64201 -moby 64905 -moccasin 62613 -moccasins 64657 -mocha 60000 -mock 52858 -mocked 59491 -mockery 60321 -mocking 57482 -mockingbird 65170 -mocks 61256 -mockup 63419 -mod 48431 -moda 62917 -modal 53988 -modalities 53988 -modality 55037 -modchip 61818 -modded 59164 -modding 57399 -mode 40983 -model 35487 -model's 57876 -modeled 50227 -modeler 62469 -modelers 63245 -modeling 46025 -modelled 53970 -modelling 48692 -modelo 63077 -modelos 62613 -models 39236 -modem 48638 -modems 56293 -moderate 45713 -moderated 53549 -moderately 51060 -moderates 58113 -moderating 58860 -moderation 52927 -moderator 48692 -moderators 52872 -modern 40312 -moderne 64905 -modernisation 58802 -modernise 64201 -modernised 64201 -modernising 64657 -modernism 60492 -modernist 57876 -modernity 57923 -modernization 55877 -modernize 60157 -modernized 59491 -modernizing 61699 -modes 45977 -modest 49135 -modestly 58688 -modesty 61256 -modicum 62762 -modifiable 62066 -modification 45749 -modifications 47417 -modified 40475 -modifier 55934 -modifiers 59101 -modifies 55906 -modify 44226 -modifying 50694 -modmy 63991 -modo 62066 -modprobe 64423 -mods 50033 -modular 49688 -modularity 61472 -modulate 53485 -modulated 52673 -modulates 55963 -modulating 54341 -modulation 48341 -modulations 61818 -modulator 53438 -modulators 57696 -modulatory 62762 -module 43681 -module's 64657 -moduler 60670 -modules 46343 -moduli 57278 -modulo 57741 -modulus 51202 -modus 62469 -modèle 65170 -moe 62469 -moeilijk 65170 -moenomycin 63601 -moet 61152 -moezychan 65452 -mofetil 61584 -mogul 57785 -moguls 64657 -mohammad 64905 -mohammed 62762 -mohawk 63419 -mohegan 64905 -moi 56050 -moieties 57238 -moiety 53646 -moines 60492 -moins 58632 -mois 60670 -moist 52029 -moisten 63792 -moistened 63077 -moisture 47482 -moisturiser 65452 -moisturising 65170 -moisturize 62917 -moisturized 64657 -moisturizer 60000 -moisturizers 63991 -moisturizing 60321 -moj 64201 -moja 62066 -moje 62917 -mojito 62917 -mojitos 64201 -mojo 60405 -moka 64657 -mokador 64423 -mokechoke 63601 -moked 64423 -mol 51113 -molar 50584 -molars 57970 -molasses 60580 -mold 48063 -molded 51650 -molding 53301 -moldings 62066 -molds 56293 -moldy 61362 -mole 51762 -molecular 42149 -molecularly 61940 -molecule 46868 -molecules 44929 -moles 56721 -molestation 62196 -molested 61256 -molester 61940 -molesters 64201 -molestie 63991 -molesting 61818 -mollusc 64905 -molluscs 62762 -mollusk 64201 -mollusks 63792 -molly 59560 -molt 60762 -molten 53485 -molto 61818 -molybdate 63991 -molybdenum 57876 -moléculaire 64201 -mom 44919 -mom's 54969 -momar 65170 -momeluv 62762 -moment 42146 -moment's 60762 -momenta 58017 -momentarily 58860 -momentary 57278 -momento 62469 -momentos 63419 -momentous 59164 -moments 45867 -momentum 47960 -momma 59227 -mommy 53847 -mommy's 65452 -momo 63792 -moms 51358 -mon 50409 -mona 62469 -monacha 61362 -monaghan 64905 -monarch 57831 -monarchs 63991 -monarchy 59630 -monary 61699 -monasteries 61051 -monastery 56862 -monastic 60670 -monday 54770 -monde 57741 -mondial 63792 -mondiale 64423 -mondo 59848 -mone 64657 -monejo 62917 -monetary 48629 -monetization 62917 -monetize 62331 -money 36241 -money's 59164 -moneyed 65452 -moneys 57199 -mong 62469 -mongering 64905 -mongol 62762 -mongole 63077 -mongolian 65170 -mongoose 64201 -mongrel 61362 -monic 65452 -monica 59357 -monies 54023 -moniker 60238 -monique 64423 -monitor 42467 -monitor's 62917 -monitored 46735 -monitoring 42172 -monitors 48736 -monk 55348 -monkey 49572 -monkey's 63991 -monkeys 51899 -monks 54419 -monly 61362 -mono 55014 -monoamine 57923 -monoamines 62066 -monobasic 64905 -monocarboxylic 65452 -monochromatic 57122 -monochromator 61818 -monochrome 58212 -monoclinic 60157 -monoclonal 48287 -monoclonality 61699 -monocular 60000 -monoculture 65452 -monocyclic 61256 -monocyte 58365 -monocytes 55657 -monocytic 61256 -monocytogenes 57440 -monodentate 64657 -monodisperse 63245 -monofilament 63245 -monogamous 63419 -monogenic 64657 -monogram 57358 -monogrammed 62469 -monograph 57122 -monographs 59560 -monohydrate 61699 -monoid 62762 -monoket 65170 -monolayer 54419 -monolayers 55793 -monolingual 61362 -monolith 65452 -monolithic 55060 -monologue 59424 -monologues 61940 -monomer 52152 -monomeric 56721 -monomers 55274 -monomorphic 63245 -mononuclear 54439 -mononucleosis 61940 -monooxygenase 60762 -monophasic 63991 -monophonic 63245 -monophosphate 58860 -monopolar 65452 -monopole 60952 -monopolies 62762 -monopolistic 62613 -monopolize 64905 -monopoly 53454 -monorail 64657 -monosaccharide 63077 -monosaccharides 63601 -monosodium 62066 -monospaced 65452 -monosubstituted 63419 -monotheistic 65170 -monotherapy 57399 -monotone 55711 -monotonic 57524 -monotonically 58577 -monotonous 60405 -monotony 63077 -monounsaturated 62917 -monovalent 60321 -monoxide 52805 -monozygotic 60321 -monroe 58979 -monsoon 56618 -monster 49119 -monsters 52752 -monstrosity 62762 -monstrous 57876 -mont 63077 -montage 56551 -montana 56485 -montane 62917 -monte 61051 -montelukast 65452 -monterey 64201 -montessori 60405 -montgomery 61256 -month 36518 -month's 49670 -monthly 41280 -months 33043 -montis 63077 -montmorillonite 59774 -montreal 59702 -monty 61152 -monument 52913 -monumental 55934 -monuments 54770 -mony 63792 -moo 62762 -mood 46699 -moods 57084 -moody 59227 -mooi 63991 -mooie 65170 -moomoo 65170 -moon 47626 -moon's 62196 -mooncloth 63792 -moonkin 65170 -moonlight 57831 -moonlighting 64201 -moons 58365 -moonshine 63601 -moonstone 62762 -moonwalk 64657 -moor 64905 -moore 57482 -moored 61940 -mooring 60952 -moorings 64423 -moorland 64905 -moors 64423 -moose 56935 -moot 59357 -mooted 64657 -mootools 62917 -mop 54792 -mopar 62762 -moped 60670 -mopeds 63792 -mopping 63991 -mops 64201 -mor 59357 -mora 63419 -moraine 63792 -moraines 63991 -moral 46073 -morale 55448 -morality 55202 -morally 54813 -morals 57566 -moran 63991 -morass 64657 -moratorium 56935 -morbeck 63419 -morbid 58417 -morbidities 64201 -morbidity 50654 -morbidly 64423 -morbillivirus 63245 -more 26090 -moreover 57278 -mores 61699 -moreso 63792 -morgan 55226 -morgane 65452 -morgue 61940 -mori 60952 -moribund 62762 -morigeau 63245 -mormon 65170 -mormyrid 65170 -morn 59848 -mornin 64905 -morning 41307 -morning's 59101 -mornings 55014 -moro 64905 -moroccan 65170 -morocco 62613 -moron 59491 -moronic 61940 -morons 59923 -morph 57970 -morphed 60952 -morphic 63245 -morphine 52327 -morphing 60492 -morphism 61256 -morphisms 64657 -morphogenesis 58065 -morphogenetic 59101 -morphogenic 64423 -morphologic 57440 -morphological 50409 -morphologically 58365 -morphologies 59560 -morphology 49572 -morphometric 60078 -morphometry 62613 -morphs 60321 -morris 63601 -morrison 63245 -morro 64423 -mors 64905 -morse 61362 -morsels 65170 -mort 57318 -morta 65452 -mortal 54439 -mortalities 62613 -mortality 45315 -mortally 63601 -mortals 60952 -mortar 54059 -mortars 63601 -morte 64905 -mortem 62066 -mortgage 42793 -mortgaged 61472 -mortgagee 63245 -mortgages 50164 -mortgagor 64423 -mortified 65452 -mortise 65170 -mortuary 60762 -morules 63991 -mos 53865 -mosaic 51463 -mosaics 59424 -moscow 61152 -moses 60856 -mosh 62196 -moshaf 61584 -moshing 64201 -mosque 55906 -mosques 60078 -mosquito 53779 -mosquitoes 56388 -moss 54419 -mosses 62613 -mossy 60856 -most 30603 -mostly 42776 -mot 58262 -mote 60856 -motel 53762 -motels 58632 -moter 63601 -moteur 63601 -moth 57278 -mother 41380 -mother's 49262 -motherboard 51026 -motherboards 56899 -mothercare 65170 -motherfucker 62762 -motherfuckers 65170 -motherfucking 63245 -motherhood 57566 -mothering 64423 -mothers 47482 -moths 57318 -motif 51140 -motifs 53630 -motile 60000 -motility 54399 -motion 40937 -motioned 60405 -motionless 62331 -motions 50568 -motivate 51931 -motivated 48562 -motivates 56899 -motivating 55202 -motivation 48629 -motivational 53066 -motivations 56899 -motivator 63792 -motive 53646 -motives 54245 -motley 60078 -moto 54419 -motocross 60238 -motoneurons 64905 -motor 41973 -motorbike 56518 -motorbikes 56687 -motorcade 63245 -motorcoach 65452 -motorcycle 47831 -motorcycles 53241 -motorcycling 63601 -motorcyclist 60952 -motorcyclists 62917 -motores 65170 -motorhome 56827 -motorhomes 63419 -motoring 55849 -motorised 61699 -motorist 58365 -motorists 54813 -motorized 57278 -motorola 50314 -motors 50607 -motorsport 61152 -motorsports 60952 -motorstvfrance 62762 -motortrend 57696 -motorway 56652 -motorways 60952 -motos 61818 -motrin 59702 -mots 60000 -mottled 60492 -motto 54601 -mou 59292 -mould 54622 -moulded 57741 -moulding 56551 -mouldings 62196 -moulds 60238 -moulin 64905 -mouloudia 65170 -mound 56050 -mounds 58470 -mount 46546 -mountable 60000 -mountain 44998 -mountain's 64657 -mountaineering 60952 -mountaineers 65452 -mountainous 55963 -mountains 48771 -mountainside 64905 -mountaintop 62469 -mounted 44494 -mounting 46323 -mountings 63245 -mounts 52152 -mourn 57831 -mourned 61940 -mourners 61940 -mourning 55657 -mourns 60000 -mous 62917 -mouse 41775 -mouseover 64905 -mousepad 59357 -mousepads 61472 -mousing 64657 -mousse 59357 -moustache 62469 -mouth 44819 -mouthMouth 64657 -mouthed 64423 -mouthful 61152 -mouthing 64657 -mouthpiece 60580 -mouths 55107 -mouthwash 65170 -mouthwatering 63792 -mov 57482 -mova 63419 -movable 53052 -movably 63601 -movado 63419 -move 38567 -moveMailUser 63601 -moveReplica 63601 -moveRoamingUser 63601 -moveUserInHierarchyComplete 63601 -moveUserInHierarchyRequest 63601 -moveable 57741 -moved 40548 -movement 42044 -movement's 63245 -movements 46696 -mover 57358 -movers 54560 -moves 44043 -movie 38234 -movie's 56551 -movieclip 65452 -moviegoers 65452 -movies 40286 -movil 63991 -movin 61818 -moving 40600 -mow 59101 -mowed 61699 -mower 53934 -mowers 58802 -mowing 57278 -moyen 63419 -moyock 64423 -mozart 64657 -mozilla 59702 -mozillaZine 65170 -mozzarella 56721 -mp 51521 -mpage 65452 -mpc 63601 -mpeg 53847 -mpegs 58523 -mpg 50514 -mph 47581 -mpl 63245 -mplayer 63419 -mpuAdvertisement 59292 -mr 52752 -mraz 62917 -mre 63245 -mrgorgun 64423 -mri 59491 -mrjaredjames 64423 -mrmacfixit 65452 -mrp 65452 -mrs 58577 -mrtotes 63245 -mrvisk 63419 -ms 47756 -msconfig 64657 -msec 58688 -mses 65170 -msg 52968 -msgid 52280 -msgs 55821 -msgstr 52315 -mshi 61362 -msi 59292 -msn 48907 -msnbc 63991 -msquared 62066 -mssql 61699 -mst 65170 -msyedmohamed 64201 -mt 54188 -mtDNA 55037 -mtDNAs 65452 -mtb 65170 -mtg 62196 -mth 61818 -mths 59039 -mtr 62762 -mts 62762 -mttaer 65452 -mtu 59227 -mtv 56652 -mtvU 52118 -mtx 65170 -mu 53865 -muah 62196 -much 32339 -muchO 60762 -mucha 63419 -muchas 60952 -mucho 55202 -muchos 60157 -mucin 58688 -mucinous 60670 -mucins 60580 -muck 58860 -mucking 63419 -mucocutaneous 62613 -mucosa 53361 -mucosal 52752 -mucous 55604 -mucronata 65170 -mucus 55992 -mud 50630 -mudd 65170 -muddle 60856 -muddled 60952 -muddy 55552 -mudguard 64657 -muds 64201 -muerte 61699 -muesli 65452 -muestra 63792 -muff 59923 -muffin 56687 -muffins 57399 -muffle 65452 -muffled 62762 -muffler 56293 -mufflers 59292 -muffs 63601 -mug 53630 -mugen 58365 -mugged 64905 -mugging 62917 -muggy 65170 -mugs 55474 -muh 64657 -muha 62917 -muhammad 64657 -mui 62066 -muito 57358 -mujer 58860 -mujeres 59357 -mujh 63601 -mujra 63419 -muktaaa 63245 -mul 65170 -mula 62196 -mulation 62196 -mulberry 63077 -mulch 58113 -mulching 62613 -mule 59424 -mules 59923 -mull 61051 -mullahs 64657 -mulled 64201 -mullet 60157 -mulling 61472 -mulls 59039 -mult 63077 -multe 63601 -multi 49880 -multiagent 62196 -multiband 64905 -multibeam 65170 -multicarrier 63245 -multicast 54005 -multicellular 60078 -multicenter 57696 -multicentre 59923 -multicentric 64423 -multichannel 57741 -multicolor 63991 -multicolored 61256 -multicoloured 64905 -multicomponent 58979 -multicore 63792 -multicounty 64905 -multicultural 54560 -multiculturalism 61472 -multicusp 65452 -multidimensional 55631 -multidirectional 65170 -multidisciplinary 53847 -multidrug 58313 -multifaceted 58212 -multifactorial 59848 -multifamily 60856 -multifarious 65170 -multiflora 65170 -multifocal 58365 -multiforme 65452 -multifunction 56899 -multifunctional 57046 -multifunctions 65170 -multigene 62762 -multigrid 62762 -multihack 60157 -multihop 63792 -multilanguage 64657 -multilateral 55014 -multilayer 54226 -multilayered 58523 -multilevel 56935 -multilingual 55474 -multilocular 64657 -multilocus 64423 -multimaster 64201 -multimedia 46446 -multimeric 61362 -multimeter 61362 -multimillion 63419 -multimodal 59424 -multimodality 64905 -multimode 60670 -multimorbidity 60157 -multinational 52899 -multinationals 60492 -multinomial 64657 -multinucleated 61472 -multiobjective 63991 -multiorgan 64905 -multiorgasmic 58979 -multiparty 63419 -multipass 64905 -multipath 60856 -multiphase 62613 -multiphoton 63792 -multiplanar 62917 -multiplatform 62469 -multiplayer 51303 -multiple 37968 -multiples 55060 -multiplet 63077 -multiplets 62331 -multiplex 56021 -multiplexed 59848 -multiplexer 56652 -multiplexers 61818 -multiplexes 64657 -multiplexing 57199 -multiplication 53052 -multiplications 61699 -multiplicative 59848 -multiplicities 65452 -multiplicity 54643 -multiplied 52107 -multiplier 54601 -multipliers 58802 -multiplies 60000 -multiply 53256 -multiplying 54560 -multipoint 61051 -multipole 62917 -multipotent 64657 -multipotential 62762 -multiprocessing 64201 -multiprocessor 58523 -multiproduct 63245 -multiprotein 64905 -multipurpose 58632 -multiracial 63991 -multirate 63077 -multiresolution 61584 -multiscale 62196 -multisim 63792 -multisite 65170 -multislice 62917 -multispectral 62331 -multistage 59424 -multistate 63991 -multistep 63601 -multisubunit 65170 -multitasking 62613 -multithreaded 62066 -multitude 51463 -multitudes 62469 -multiuser 61256 -multivalent 65452 -multivariable 59560 -multivariate 51772 -multiverse 64423 -multiversion 64905 -multivesicular 64423 -multivitamin 61584 -multivitamins 63419 -multiyear 64201 -mum 50314 -mum's 62917 -mumbai 58262 -mumbled 62469 -mumbling 63245 -mummies 61051 -mummified 62917 -mummy 57358 -mumps 63419 -mums 58113 -mumsnet 56935 -munch 61051 -munchies 65452 -munching 62066 -mundane 56231 -mundi 64423 -mundial 62762 -mundo 56388 -mune 62469 -mung 64657 -munication 60856 -munich 62917 -municipal 47449 -municipalities 52472 -municipality 51846 -municipality's 64657 -munities 63991 -munitions 59923 -munity 58470 -muon 60670 -muonline 65452 -muons 65452 -muppet 62469 -muppets 65170 -murach 63601 -muraglitazar 59774 -mural 54685 -murals 57653 -murano 62469 -murder 45499 -murdered 51846 -murderer 57122 -murderers 59560 -murdering 57160 -murderous 57609 -murders 53501 -murfreesboro 64905 -murine 50402 -murky 58802 -murmur 60078 -murmured 65452 -murmurs 64201 -muro 65452 -murphy 60078 -murray 61818 -murs 64423 -mus 61940 -musanim 61940 -muscarinic 57199 -muscle 42001 -muscled 64905 -muscles 46934 -muscovite 65452 -muscular 50932 -musculature 60580 -musculoskeletal 54560 -musculus 63792 -muse 57358 -museca 63077 -mused 65170 -muses 62917 -museum 47060 -museum's 58365 -museums 51406 -mush 61699 -mushroom 52968 -mushrooms 52982 -mushy 61940 -music 34647 -music's 58745 -musica 54601 -musical 43412 -musicales 63792 -musicality 65452 -musically 58262 -musicals 57318 -musicaltourism 63792 -musician 51069 -musician's 63419 -musicians 48766 -musicianship 62762 -musicmixstudio 63601 -musicmoose 59630 -musics 63245 -musiek 63077 -musik 58523 -musikverlag 62066 -musing 63991 -musings 56170 -musique 56356 -musk 59491 -musket 60405 -muslim 55963 -muslims 60580 -muslin 62613 -muss 61940 -mussel 58523 -musselman 62917 -mussels 55992 -must 32123 -must've 60238 -musta 64905 -mustache 60580 -mustang 57831 -mustangs 62469 -mustard 53211 -muster 58577 -mustered 62331 -musth 65170 -mustn't 64201 -musty 62917 -mut 63077 -mutability 65452 -mutacin 59702 -mutagenesis 55323 -mutagenic 58365 -mutagenicity 61940 -mutans 58802 -mutant 46197 -mutants 49626 -mutase 64905 -mutate 63792 -mutated 54685 -mutating 63991 -mutation 47241 -mutational 58919 -mutations 47424 -mutatis 64657 -mutator 64201 -mute 55963 -muted 57160 -mutex 63792 -mutha 63792 -muti 63245 -mutilate 64657 -mutilated 62066 -mutilation 61256 -mutiny 64905 -mutt 61256 -mutter 64201 -muttered 62917 -muttering 62469 -mutton 61818 -mutual 45590 -mutuality 64201 -mutually 50394 -muuch 63601 -muvee 65452 -mux 63991 -muy 52622 -muzica 62762 -muziek 61940 -muzik 61256 -muzika 58688 -muzike 61699 -muzzle 57696 -mv 57696 -mvp 62469 -mvpmiguelvargas 64657 -mw 60078 -mwa 64201 -mwah 62331 -mx 55821 -my 27238 -myAOL 52546 -myCBBC 64905 -myCHOW 60580 -myCP 64657 -myFinds 56452 -myINFORMATION 63991 -myLot 61699 -myManta 53301 -myPearsonStore 61472 -mySAP 65452 -mySQL 60405 -mySimon 41831 -mySpace 63245 -myTable 63991 -myTrovit 57785 -myYearbook 65452 -mya 64905 -myambutol 64657 -myasthenia 56935 -myasthenic 64657 -mybookmarket 63991 -myc 65452 -mycelia 62469 -mycelial 61818 -mycelium 61940 -mycin 63991 -mycobacteria 62331 -mycobacterial 58470 -mycolate 63419 -mycolates 65170 -mycolic 64657 -mycophenolate 62917 -mycoplasma 59292 -mycorrhizal 57122 -mycorrhizas 63991 -mycosis 61699 -mycotic 62917 -mydeco 64657 -mydriasis 64905 -mydriatic 64423 -myelin 55849 -myelinated 58162 -myelination 64657 -myelocytic 64905 -myelodysplastic 60580 -myelofibrosis 64905 -myelogenous 62196 -myeloid 54419 -myeloma 55299 -myelomonocytic 63792 -myelopathy 62196 -myeloperoxidase 61584 -myeloproliferative 61472 -myelosuppression 64905 -myers 58417 -myfavourites 63792 -myhighway 64423 -myhome 62196 -mylar 61818 -myles 63077 -mylohyoid 64657 -mylyn 64905 -mynd 64905 -myoblasts 63601 -myocardial 47710 -myocarditis 59424 -myocardium 55014 -myoclonic 62762 -myocyte 59848 -myocytes 55738 -myoepithelial 65170 -myofibers 63419 -myofibrils 65170 -myogenic 61472 -myoglobin 60405 -myometrial 64905 -myometrium 64423 -myopathy 60856 -myopericarditis 64423 -myopia 62762 -myopic 60580 -myosin 54519 -myostatin 63419 -myotonic 64423 -myriad 52435 -myristate 61362 -myrrh 62762 -myrtle 63792 -myself 41913 -myspace 45499 -mysql 53226 -myst 62066 -mysteries 54622 -mysterio 60492 -mysterious 49913 -mysteriously 58417 -mystery 47939 -mystic 56231 -mystical 54499 -mysticism 59292 -mystics 64657 -mystified 63792 -mystifying 64657 -mystique 61699 -myth 51000 -mythic 59923 -mythical 56827 -mythological 59630 -mythology 54969 -myths 52968 -myx 64905 -myxoma 63792 -myyahoo 60157 -mz 62066 -más 52571 -många 64423 -mécanique 63991 -médias 64905 -mélange 64905 -més 63792 -même 49179 -módulos 63245 -músculo 62469 -música 56420 -músicas 60321 -müzik 61362 -n 36415 -n'a 62917 -n'ai 64423 -n'est 59357 -n'y 63601 -nA 60670 -nAChRs 64201 -nBitmapIndex 64423 -nC 63991 -nCircle 65452 -nDNA 62917 -nForce 56862 -nH 63991 -nItem 65452 -nLcOse 65170 -nLite 64423 -nM 52291 -nMOS 63245 -nNOS 61256 -nV 63245 -nVIDIA 58802 -nValue 65170 -nVidia 54727 -nZone 58979 -na 43811 -naa 62331 -naam 64423 -naan 65452 -naar 55578 -nab 61584 -nabbed 59227 -nach 54302 -nachauna 65452 -nachna 62331 -nacho 64905 -nachoman 65452 -nachos 61940 -nachricht 64657 -nachrichten 53847 -nacht 65452 -nackte 63077 -nad 58262 -nada 56972 -nadia 63991 -nadie 62917 -nadine 65170 -nadir 61051 -nae 63792 -nag 58688 -nagar 61051 -nage 65452 -nagging 57876 -nah 56827 -nahi 59227 -nai 60157 -nail 48208 -nailed 54643 -nailer 60580 -nailing 60952 -nails 51541 -nairaland 61584 -naive 52818 -naively 64657 -nak 64905 -naka 63991 -naked 44444 -nakedness 65452 -nal 53377 -nalidixic 63991 -nally 61362 -naloxone 57566 -nals 63419 -naltrexone 63792 -nalts 63601 -nam 60492 -nama 63792 -naman 59702 -namaste 64201 -name 33336 -name's 60762 -named 40632 -nameless 60078 -namely 48468 -nameplate 63601 -namerule 64905 -names 39273 -namesake 60078 -nameserver 60405 -nameservers 56791 -namespace 55250 -namespaces 63792 -nami 64905 -namic 60405 -namics 62066 -naming 50974 -nampa 65170 -nan 59101 -nana 57653 -nanan 65170 -nance 58802 -nancial 64905 -nancy 56231 -nang 63419 -nannies 64201 -nanny 56021 -nano 50638 -nanoHUB 57199 -nanobio 63601 -nanoclay 65170 -nanoclusters 63077 -nanocomposite 61362 -nanocomposites 58417 -nanocrystal 62917 -nanocrystalline 61362 -nanocrystals 59164 -nanoelectronics 61362 -nanoflagellates 62469 -nanograms 65170 -nanohole 61940 -nanomanufacturing 63077 -nanomaterials 65452 -nanomedicine 63792 -nanometer 60078 -nanometers 60856 -nanomolar 62469 -nanoparticle 60670 -nanoparticles 54439 -nanophotonics 63792 -nanos 63419 -nanoscale 57831 -nanosecond 60670 -nanoseconds 64201 -nanostructure 63991 -nanostructured 60000 -nanostructures 61584 -nanotech 63991 -nanotechnologies 65452 -nanotechnology 55793 -nanotube 57653 -nanotubes 56170 -nanowire 61584 -nanowires 59039 -nant 58688 -nantes 65452 -nants 65170 -nao 59848 -naomi 61472 -nap 55821 -napa 62917 -napalm 63991 -nape 65170 -naphtha 65170 -naphthalene 59560 -naphthenic 64905 -napisy 60078 -napkin 58523 -napkins 59039 -naples 64657 -napoleon 63245 -nappa 60762 -nappies 57923 -napping 62762 -nappy 57923 -naprosyn 61940 -naproxen 56200 -naps 62331 -napus 63991 -nar 63077 -nara 63419 -narcissism 61152 -narcissist 63601 -narcissistic 60078 -narcolepsy 64201 -narcotic 57009 -narcotics 57831 -narnia 63792 -narod 65452 -narrate 63601 -narrated 58262 -narrates 62469 -narration 58860 -narrative 49458 -narratives 55014 -narrator 55373 -narrator's 62917 -narrow 44917 -narrowband 59491 -narrowed 54302 -narrower 54360 -narrowest 61940 -narrowing 52291 -narrowly 53830 -narrows 59101 -naruto 52584 -nary 57084 -nas 57566 -nasa 59774 -nasacort 64657 -nasal 50394 -nascar 58212 -nascent 57923 -nase 62331 -nash 63601 -nasheed 65170 -nashville 60670 -nasogastric 64201 -nasonex 60856 -nasopharyngeal 61818 -nassau 64201 -nastics 64423 -nastier 64905 -nastiest 63991 -nastiness 64905 -nasty 49229 -nastygirl 64201 -nat 58365 -natal 59774 -natalia 64905 -natalie 58745 -natant 65452 -natasha 61940 -nate 55226 -nated 58212 -nately 65452 -nates 61472 -nathan 60492 -nating 62196 -nation 44725 -nation's 46061 -national 37782 -nationale 63991 -nationalisation 64657 -nationalised 64657 -nationalism 56518 -nationalist 56110 -nationalistic 63419 -nationalists 62331 -nationalities 58577 -nationality 55014 -nationalization 63792 -nationalize 65452 -nationalized 61256 -nationally 49676 -nationals 54664 -nationhood 65170 -nations 47300 -nationwide 46540 -native 43117 -natively 61699 -natives 55226 -nativity 60856 -natriuretic 55631 -natty 63419 -natural 37992 -naturalised 64905 -naturalist 59702 -naturalistic 61152 -naturalists 63792 -naturalization 58632 -naturalized 58577 -naturally 46040 -naturals 64905 -nature 40045 -nature's 56485 -natured 65170 -natureevents 64657 -naturejobs 63792 -naturelles 64423 -naturereprints 63601 -natures 59848 -naturist 61699 -naturopathic 61152 -naught 64201 -naughty 51202 -nausea 53485 -nauseating 64905 -nauseous 63419 -nautical 54560 -nav 55130 -naval 51600 -navamsa 62917 -navamsha 63245 -nave 60078 -navel 58632 -navi 63991 -navidad 65170 -navigable 59101 -navigate 46261 -navigated 61362 -navigates 62469 -navigating 55130 -navigation 39900 -navigational 53597 -navigator 55448 -navigators 63601 -navman 62613 -navy 52268 -naw 61940 -nay 59774 -naysayers 65170 -nazi 60856 -nazz 65452 -nb 59630 -nba 55711 -nbc 62331 -nbd 61152 -nc 53138 -ncaa 57524 -nce 64905 -nck 64905 -nctwork 63077 -ncurses 63245 -nd 45734 -nda 65452 -nding 64423 -ndiswrapper 60952 -nds 58365 -ne 45615 -nea 65452 -neal 61362 -near 36472 -nearby 44057 -neared 62066 -nearer 56231 -nearest 46115 -nearing 54969 -nearly 40275 -nears 57238 -nearsighted 64905 -neat 50192 -neatly 53988 -neato 65452 -neatorama 62917 -nebraska 61256 -nebula 58860 -nebulae 61256 -nebular 61699 -nebulizer 62469 -nebulous 64905 -nec 57046 -neccessary 63792 -necesito 65452 -necessarily 43443 -necessary 38508 -necessitate 57876 -necessitated 57785 -necessitates 57876 -necessitating 59774 -necessities 56721 -necessity 50033 -neck 45015 -necking 64201 -necklace 51175 -necklaces 57009 -neckline 59101 -necks 57785 -necktie 59424 -necro 65452 -necrophagist 63419 -necrophilia 59923 -necropsy 62331 -necrosis 50607 -necrotic 55474 -necrotizing 60405 -nectar 58417 -nected 59560 -nection 62331 -ned 57970 -nederland 65452 -nederlands 62196 -neds 65170 -nee 58860 -need 31533 -needed 38482 -needing 49511 -needle 48305 -needles 51650 -needless 56293 -needlessly 59774 -needlework 64423 -needn't 58632 -needs 36820 -needy 55014 -neem 65452 -neering 63991 -nefarious 60405 -nefits 62196 -neg 60670 -negate 57785 -negated 60856 -negates 61472 -negating 62331 -negation 59491 -negative 40629 -negatively 50108 -negatives 55992 -negativity 58745 -negevensis 65170 -neglect 50807 -neglected 51229 -neglecting 55849 -neglects 59227 -negli 64905 -negligence 52268 -negligent 55423 -negligently 63792 -negligible 52074 -negligibly 64905 -negocios 64905 -negotiable 57524 -negotiate 49720 -negotiated 50799 -negotiates 61584 -negotiating 51482 -negotiation 51358 -negotiations 48801 -negotiator 59227 -negotiators 58632 -negra 65452 -negro 57524 -neha 65170 -nei 61256 -neice 65170 -neighbor 49291 -neighbor's 55821 -neighborhood 44742 -neighborhood's 63991 -neighborhoods 49946 -neighboring 49732 -neighborly 60952 -neighbors 48300 -neighbour 55323 -neighbour's 61584 -neighbourhood 51804 -neighbourhoods 58802 -neighbouring 50991 -neighbours 52899 -neil 57440 -neither 43641 -neki 64423 -neko 65452 -nel 56420 -nelarabine 60670 -nella 59227 -nelly 58262 -nels 64905 -nelson 59491 -nem 60405 -nema 63601 -nematic 58017 -nematode 57278 -nematodes 60078 -nemesis 61051 -nemo 63077 -nen 63792 -nena 65170 -nent 58688 -nents 58577 -neo 55821 -neoadjuvant 59357 -neoclassical 60492 -neocon 64201 -neocons 61818 -neoconservative 64905 -neocortex 61940 -neocortical 62331 -neodymium 61818 -neoformans 62469 -neohome 64423 -neointima 63991 -neointimal 61940 -neoliberal 62917 -neomycin 61584 -neon 54499 -neonatal 50350 -neonate 60157 -neonates 56756 -neoplasia 59357 -neoplasm 58745 -neoplasms 57318 -neoplastic 54459 -neoprene 58113 -neotropical 62196 -neous 58745 -neously 61362 -neovascular 63077 -neovascularization 61584 -nepal 62066 -nepali 61584 -nephew 52244 -nephew's 64905 -nephews 60762 -nephrectomy 60238 -nephrin 65170 -nephritis 61472 -nephrology 63245 -nephron 60670 -nephropathy 59227 -nephrotic 63601 -nephrotoxicity 64657 -nepotism 64657 -ner 58365 -nerd 56791 -nerds 60405 -nerdy 60321 -nerf 60238 -nero 51463 -ners 65170 -nerve 45155 -nerves 50750 -nerveux 57199 -nervioso 58523 -nervosa 58802 -nervosio 63245 -nervous 46173 -nervously 60856 -nervousness 61362 -nes 59923 -nese 62762 -ness 52280 -nesses 64905 -nest 51257 -nested 52187 -nesters 63792 -nesting 53630 -nestle 63077 -nestled 55154 -nestles 64905 -nestling 62613 -nests 56721 -net 41656 -net's 63792 -netCDF 64423 -netball 60492 -netbook 57278 -netbooks 59774 -netfee 61699 -netflix 64423 -netgear 61818 -nether 63419 -netherium 64657 -netherlands 58113 -netic 57318 -netizens 63245 -netmask 63245 -netomat 65452 -netroots 65170 -nets 52051 -netscape 60492 -netstat 63245 -netted 57923 -netting 56827 -nettle 65170 -netvibes 54245 -netvouz 62917 -netwolf 62917 -network 37121 -network's 57566 -networked 52832 -networking 45510 -networks 43369 -neu 58113 -neue 59848 -neuen 60856 -neues 63601 -neuf 65170 -neural 47367 -neuralgia 61362 -neuraminidase 58745 -neurite 57358 -neurites 63419 -neuritic 63245 -neuritis 61818 -neuro 59702 -neuroanatomical 63601 -neuroanatomist 63792 -neuroanatomy 62196 -neurobiological 63245 -neurobiology 63077 -neuroblast 62331 -neuroblastoma 55202 -neuroblasts 61699 -neurochemical 63601 -neurocognitive 61472 -neurodegeneration 61699 -neurodegenerative 56618 -neurodevelopmental 64201 -neuroendocrine 57160 -neurofibromatosis 64423 -neurofilament 61818 -neurogenesis 62762 -neurogenic 60952 -neurohumoral 62917 -neuroimaging 62762 -neuroleptic 61699 -neuroleptics 64423 -neurologic 53081 -neurological 50328 -neurologically 64423 -neurologist 59039 -neurologists 60492 -neurology 57122 -neurolysis 62469 -neuroma 61472 -neuromuscular 55348 -neuron 52210 -neuronal 49044 -neurone 62469 -neurones 54706 -neurons 46274 -neurontin 59774 -neuropathic 56972 -neuropathies 65170 -neuropathological 63419 -neuropathy 54835 -neuropeptide 57609 -neuropeptides 61051 -neurophysiological 63419 -neurophysiology 65170 -neuropil 62066 -neuroprotection 63792 -neuroprotective 59164 -neuropsychiatric 63245 -neuropsychological 59357 -neuropsychology 64423 -neuroscience 57785 -neuroscientist 65452 -neurosecretory 65170 -neurosis 60000 -neurosurgeon 62613 -neurosurgeons 63419 -neurosurgery 61940 -neurosurgical 61362 -neurotensin 61699 -neurotic 59292 -neurotoxic 61699 -neurotoxicity 59702 -neurotoxin 62331 -neurotransmission 61256 -neurotransmitter 56420 -neurotransmitters 58262 -neurotrophic 57160 -neurotropic 64201 -neurovascular 62196 -neuter 60492 -neutered 62331 -neutral 45939 -neutralise 64423 -neutralising 64905 -neutrality 57831 -neutralization 57831 -neutralize 57831 -neutralized 56862 -neutralizes 62917 -neutralizing 56687 -neutrals 64423 -neutrino 56687 -neutrinos 60952 -neutrogena 64905 -neutron 50150 -neutrons 55877 -neutropenia 58065 -neutropenic 62469 -neutrophil 54133 -neutrophilic 62469 -neutrophils 53454 -neva 60078 -nevada 59357 -neve 63077 -never 34836 -neverending 65170 -nevermind 61256 -nevertheless 52040 -neverwinter 60856 -nevi 64201 -nevis 65452 -nevus 63601 -new 27947 -newark 60952 -neways 64657 -newb 63245 -newbie 52096 -newbies 57278 -newborn 50815 -newborns 56200 -newcastle 60856 -newcomer 57199 -newcomers 55014 -newegg 58313 -newer 47370 -newest 42207 -newfound 59101 -newgrounds 64201 -newline 62613 -newlines 65170 -newly 43740 -newlywed 65452 -newlyweds 62917 -newman 60157 -newness 63601 -newpaper 65170 -newpct 64201 -newport 62066 -news 33234 -newscast 62066 -newscasts 64657 -newsfeed 60952 -newsfeeds 61051 -newsflash 65170 -newsgator 61940 -newsgroup 56551 -newsgroups 57278 -newsletter 42462 -newsletters 48208 -newsman 62613 -newsmaster 63991 -newspaper 43682 -newspaper's 59923 -newspapers 47683 -newsprint 61699 -newsreader 58470 -newsroom 54302 -newsrooms 63601 -newsstand 56862 -newsstands 63419 -newsvine 51166 -newswire 59164 -newswires 64201 -newsworthy 64423 -newt 61818 -newton 58745 -newts 65452 -newydd 64423 -newyears 64905 -newyork 65452 -nexium 53882 -next 33196 -nextel 57609 -nextlast 62066 -nextnewnetworks 61818 -nexus 54601 -ney 63419 -neyo 63991 -nf 59292 -nfl 56110 -nfs 58802 -ng 47653 -nga 54479 -ngage 64423 -nginx 65170 -nh 58802 -nha 63792 -nhac 62469 -nhieu 65170 -nhl 56972 -nhs 64423 -ni 48309 -nia 61699 -niacin 62331 -niagara 62613 -niall 64905 -nian 63991 -nib 60856 -nibble 60078 -nibbles 62917 -nibbling 63419 -nibh 61152 -nic 57482 -nica 62762 -nical 62196 -nication 61699 -nice 38754 -nicely 49626 -nicer 54540 -nicest 56080 -nich 64905 -niche 50584 -niches 58017 -nicholas 62066 -nicht 53124 -nichts 62917 -nick 51996 -nicked 62762 -nickel 50292 -nickelback 62331 -nickname 49017 -nicknamed 57399 -nicknames 57318 -nicks 61362 -nicky 63419 -nico 62613 -nicola 63601 -nicolas 60580 -nicole 53988 -nicorandil 65452 -nicotinamide 60157 -nicotine 52648 -nicotinic 58979 -nid 63419 -nidulans 61051 -nie 55821 -niece 56293 -nieces 57831 -niente 64657 -nies 62762 -niet 56140 -nieuwe 62762 -nif 62613 -nifH 64657 -nifedipine 59357 -nificant 57482 -nificantly 58632 -nifty 55906 -nig 65452 -niga 65452 -nigel 65452 -niger 58745 -nigeria 60321 -nigerian 65170 -nigga 52198 -niggas 56050 -niggaz 56080 -nigger 61051 -nigh 61051 -night 38039 -night's 51202 -nightclub 53899 -nightclubs 58162 -nightfall 64657 -nightgown 62762 -nightlife 53211 -nightlight 64423 -nightly 53729 -nightmare 52210 -nightmares 57609 -nightmarish 62196 -nights 44915 -nightshade 65170 -nighttime 55711 -nightwear 63419 -nightwish 63792 -nigra 59560 -nigricans 64201 -nigrostriatal 63245 -nihilism 63991 -nije 64905 -nijobs 64905 -nike 50101 -nikejordangoogle 60078 -niki 64657 -nikki 57046 -nikkojazz 61152 -nikkojazz's 63991 -nikon 58919 -nil 55037 -nila 63601 -nile 62066 -nilpotent 59424 -nilsson 59923 -nim 64423 -nimble 61152 -nin 60952 -nina 58919 -ninco 64201 -nine 43018 -ninemsn 55500 -nines 63991 -nineteen 56080 -nineteenth 52886 -nineties 61699 -ninety 55500 -ning 55766 -ninguna 63245 -ninja 54005 -ninjas 60952 -nino 64423 -nintendo 53066 -ninth 50560 -niobate 62196 -niobium 61362 -nip 56324 -nipped 63991 -nipping 64905 -nipple 52635 -nipples 53316 -nique 59560 -niques 57785 -nirvana 60238 -nis 64423 -nisi 63245 -nisin 62196 -nisl 62613 -nism 60321 -nisms 61472 -nissan 54114 -nist 65452 -nit 62196 -nite 54360 -nites 64201 -nities 63245 -nition 61472 -nitrate 52175 -nitrates 58417 -nitration 57970 -nitric 50171 -nitride 54540 -nitrides 60670 -nitrification 61256 -nitrifying 65170 -nitrile 56791 -nitriles 64657 -nitrite 55849 -nitro 54685 -nitrobenzene 63601 -nitrocellulose 55821 -nitrogen 45576 -nitrogenase 60405 -nitrogenous 63601 -nitroglycerin 62066 -nitroprusside 61362 -nitrous 55604 -nitroxide 64423 -nits 63419 -nitty 65170 -nitude 63245 -nity 59227 -nium 62762 -nivale 64657 -niveau 60238 -nivel 63792 -nix 61818 -nixed 65452 -nization 63419 -nize 63601 -nized 60492 -nizoral 62613 -niña 64201 -niño 63991 -niños 63077 -nj 53517 -njoj 64423 -njrotc 63419 -njsiaa 64201 -njstar 60670 -një 64657 -nk 56388 -nkhalid 65170 -nkjv 60157 -nko 64905 -nkosi 62331 -nkotb 64905 -nl 52107 -nlc 65170 -nll 61152 -nlm 65170 -nln 63792 -nlp 55014 -nlrb 64423 -nm 45108 -nmol 58365 -nmr 57482 -nn 54560 -nnd 60157 -nner 63077 -nnn 64201 -no 28863 -noah 62762 -noapic 65170 -nobel 55398 -nobilis 64423 -nobilitas 60492 -nobility 57358 -noble 50881 -nobleman 65452 -nobles 61256 -noblest 65170 -nobody 47515 -nobody's 58162 -nobus 63419 -nocache 63077 -nocd 58860 -noch 56388 -noche 58417 -nochelatina 64905 -nociception 64905 -nociceptive 60580 -nociceptors 64423 -nocturnal 53109 -nod 54151 -nodal 53830 -nodded 56791 -nodding 60078 -node 43881 -node's 60670 -nodes 45484 -nodose 65170 -nods 60952 -nodular 57609 -nodulation 63245 -nodule 57084 -nodules 54078 -noe 61152 -noel 61472 -noendinsight 63601 -nofollow 62066 -nog 58523 -noggin 61940 -noi 59227 -noid 65452 -noida 63601 -noir 56518 -noise 42713 -noiseless 62762 -noises 53501 -noisier 65452 -noisily 64423 -noisy 51793 -nokia 47698 -nokiathess 63991 -nokta 59560 -nol 63245 -nolan 64905 -nological 65170 -nology 59292 -nolvadex 62196 -nom 56756 -noma 64657 -nomad 61051 -nomadic 56420 -nomads 60856 -nombre 58523 -nombreux 65452 -nome 62066 -nomenclature 56452 -nomenon 64201 -nomi 65452 -nomial 65170 -nomic 58365 -nominal 49382 -nominally 55500 -nominate 52940 -nominated 48431 -nominates 65170 -nominating 57970 -nomination 50646 -nominations 52051 -nominee 51425 -nominee's 65452 -nominees 55448 -noms 61818 -non 44037 -nonacidic 63601 -nonalcoholic 60238 -nonaqueous 62917 -nonatopic 64201 -nonbinding 65170 -nonbonded 64905 -noncancer 63245 -noncanonical 64905 -noncoding 60952 -noncommercial 56935 -noncommunicable 63792 -noncommutative 59424 -noncompact 63245 -noncompetitive 63792 -noncompliance 58919 -noncompliant 65170 -nonconforming 62613 -noncontiguous 63245 -noncovalently 64905 -nondecreasing 65452 -nondegradation 64423 -nondestructive 61256 -nondiabetic 65170 -nondisclosure 64905 -nondiscrimination 61818 -nondiscriminatory 62917 -nondurable 64905 -none 41774 -nonempty 61818 -nonenzymatic 65170 -nonequilibrium 57524 -nonessential 63077 -nonetheless 54188 -nonexclusive 64423 -nonexercise 65170 -nonexistence 63991 -nonexistent 60580 -nonfamily 62331 -nonfat 59923 -nonfatal 60492 -nonfiction 55711 -nonfunctional 65452 -nonfunctioning 64657 -nongovernmental 59702 -nonheme 65452 -nonholonomic 64657 -nonhomologous 64905 -nonhuman 60078 -noni 61472 -nonidealities 65452 -nonimmigrant 63419 -nonimmune 61818 -nonimmunologic 64657 -noninfected 64657 -noninferiority 63991 -noninjected 65170 -noninoculated 64905 -noninteracting 64657 -noninterest 65452 -noninvasive 56293 -noninverting 65452 -nonionic 60000 -nonketotic 64657 -nonlinear 47875 -nonlinearities 61362 -nonlinearity 56388 -nonlinearly 64657 -nonlocal 60856 -nonmagnetic 63077 -nonmalignant 64657 -nonmembers 62762 -nonmitochondrial 65452 -nonnegative 58919 -nono 65170 -nonobese 63792 -nonobstructive 63419 -nonoperated 63245 -nonoperative 63991 -nonoverlapping 62917 -nonparametric 59039 -nonpartisan 59923 -nonpathogenic 65452 -nonpayment 63245 -nonpenetrating 64201 -nonpermissive 63991 -nonpoint 59101 -nonpolar 61699 -nonporous 62917 -nonpregnant 59630 -nonprescription 63245 -nonprofit 45967 -nonprofits 56827 -nonproliferation 64201 -nonpublic 61472 -nonradiative 62917 -nonradioactive 65170 -nonrandom 63419 -nonrandomized 63792 -nonreactive 64201 -nonrefundable 64201 -nonrelativistic 64423 -nonresident 60670 -nonresidential 64423 -nonresponders 62613 -nonrheumatic 63419 -nonrigid 65452 -nonselective 62066 -nonsense 53423 -nonsensical 60492 -nonshivering 64423 -nonsignificant 61152 -nonsingular 63792 -nonsmokers 63419 -nonsmoking 63601 -nonspacing 59039 -nonspecific 54207 -nonstandard 61256 -nonstationary 62331 -nonsteroidal 58860 -nonstick 60856 -nonstop 57923 -nonstructural 63991 -nonsurgical 60952 -nonsurvey 63245 -nonsynonymous 62196 -nontoxic 61818 -nontradables 61051 -nontraded 65452 -nontraditional 60000 -nontransgenic 63077 -nontreated 64201 -nontrivial 58860 -nontypable 64423 -nonummy 61472 -nonumy 60492 -nonuniform 60580 -nonuniformity 62613 -nonunion 65170 -nonverbal 59039 -nonviolent 60762 -nonvolatile 59923 -nonwhites 65170 -nonworking 64657 -nonwoven 57122 -nonzero 54770 -noo 62917 -noob 55766 -noobgibs 62469 -noobs 60952 -noodle 56827 -noodles 53241 -nook 61152 -nooks 61584 -noon 47698 -noone 58417 -nooner 60000 -noose 60670 -nop 65452 -nope 57696 -nor 40870 -nora 62066 -noradrenaline 58919 -noradrenergic 58262 -norco 57831 -nord 62613 -nordic 61584 -nordihydroguaiaretic 65452 -norepinephrine 56827 -norfloxacin 64423 -norfolk 61051 -norgestimate 64423 -norm 51060 -norma 63601 -normal 37798 -normalcy 61940 -normale 64201 -normalisation 61584 -normalise 63419 -normalised 59491 -normality 58365 -normalization 53256 -normalize 58065 -normalized 49184 -normalizes 65170 -normalizing 59560 -normally 43363 -normals 60078 -norman 59702 -normative 54946 -normed 63991 -normotensive 58113 -normothermic 63419 -normoxic 59491 -norms 51721 -noroxin 65170 -norris 62762 -norsk 62762 -norte 60856 -north 42571 -northampton 63245 -northbound 59491 -northeast 51396 -northeastern 54813 -northerly 61699 -northern 44844 -northerner 61472 -northernmost 61472 -northside 63991 -northward 59491 -northwards 64657 -northwest 50710 -northwestern 55373 -norton 53423 -norvasc 53679 -norvegicus 64423 -norway 60670 -norwegian 58632 -norwegianwoodnorwegianwood 61940 -norwich 65170 -nos 52447 -nose 46669 -nosed 62066 -nosedive 64657 -noses 56652 -nosing 63991 -nosis 62762 -nosocomial 58365 -nosotros 61472 -nosso 63419 -nostalgia 56652 -nostalgic 56618 -nostic 63601 -nostra 64657 -nostri 62917 -nostril 64423 -nostrils 62613 -nostro 64423 -nostrud 63991 -not 24229 -notNeutral 64423 -nota 62331 -notability 64201 -notable 49152 -notables 63991 -notably 50499 -notamment 65170 -notarized 59774 -notary 58632 -notation 50898 -notational 62196 -notations 57609 -notch 51953 -notched 55684 -notches 58212 -note 39260 -notebook 48247 -notebooks 52609 -noted 41511 -notepad 58802 -notes 42158 -noteworthy 53271 -nothin 58065 -nothing 38860 -nothing's 62613 -nothings 62917 -noticable 60952 -notice 39901 -noticeable 51444 -noticeably 55793 -noticeboard 62066 -noticed 44264 -notices 47867 -noticia 63792 -noticias 61152 -noticing 55107 -notifiable 64657 -notification 44596 -notificationContent 55934 -notifications 50143 -notified 46714 -notifier 65452 -notifies 57440 -notify 45430 -notifying 54992 -notin 62917 -noting 49847 -notion 47184 -notional 62469 -notions 52291 -notoriety 60952 -notorious 52927 -notoriously 56485 -notre 57831 -nottingham 62917 -notwithstanding 54857 -nou 61940 -nought 64657 -noun 53256 -nounced 61940 -nouns 56080 -nourish 59774 -nourished 62066 -nourishes 63419 -nourishing 61472 -nourishment 58745 -nous 55226 -nouveau 57923 -nouveauté 60952 -nouveaux 63991 -nouvel 65170 -nouvelle 60321 -nouvelles 63419 -nov 58745 -nova 54151 -novacav 63792 -novation 64905 -nove 65452 -novel 42470 -novel's 59774 -novela 64201 -novelist 55552 -novelists 62066 -novell 65170 -novella 62066 -novels 51166 -novelties 60492 -novelty 52913 -november 55373 -novembre 65170 -novice 53066 -novices 59848 -noviembre 61584 -novo 53934 -now 31300 -now's 61472 -nowadays 54151 -nowhere 50006 -nowhereonearth 62917 -nowrap 62196 -nox 65452 -noxious 56827 -nozzle 51113 -nozzles 55631 -np 59560 -npc 65170 -npg 62196 -npn 62613 -nq 64423 -nr 54479 -nrmillions 64657 -ns 49108 -nscale 64657 -nse 65452 -nsec 65170 -nsf 64905 -nso 64423 -nsw 62196 -nt 51482 -ntfs 61940 -nth 57609 -ntl 62066 -nto 64423 -nts 62196 -ntsc 64201 -ntti 65452 -nu 52435 -nuTsie 61051 -nual 65170 -nuance 61584 -nuanced 58632 -nuances 57609 -nub 61940 -nubian 63792 -nubile 64423 -nubiles 61584 -nubuck 62469 -nuclear 42082 -nuclease 56827 -nucleases 64905 -nucleate 64905 -nucleated 59424 -nucleation 55373 -nucleatum 65170 -nuclei 48776 -nucleic 50560 -nucleocapsid 64423 -nucleolar 62196 -nucleoli 64201 -nucleon 58523 -nucleons 62196 -nucleophile 65170 -nucleophiles 63991 -nucleophilic 58745 -nucleoprotein 64423 -nucleoside 55766 -nucleosides 62613 -nucleosomal 61940 -nucleosome 60078 -nucleosomes 62917 -nucleotide 48928 -nucleotides 51867 -nucleus 47863 -nuclides 64905 -nud 63419 -nude 42947 -nuded 60157 -nudes 56652 -nudge 60952 -nudged 64657 -nudges 64905 -nudging 64423 -nudism 63792 -nudist 55130 -nudists 61362 -nudity 55226 -nue 63991 -nuestra 61051 -nuestro 58523 -nuestros 61584 -nueva 59848 -nuevas 61472 -nuevo 56618 -nuevos 62331 -nuff 61940 -nugget 60580 -nuggets 58065 -nuh 64657 -nuisance 54078 -nuisances 64905 -nuit 64657 -nuke 56551 -nukes 64201 -nul 60078 -null 46852 -nulla 60670 -nullified 63245 -nullify 62469 -nulliparous 62331 -nullity 63991 -nulls 63991 -num 55992 -numRecs 62613 -numb 56827 -numba 65452 -numbed 64905 -number 32444 -numbered 50742 -numbering 53796 -numbers 39477 -numbing 62196 -numbness 57653 -numer 65452 -numeracy 59491 -numeral 56231 -numerals 56140 -numerator 61940 -numeric 51846 -numerical 45887 -numerically 53865 -numero 60952 -numerology 63419 -numerous 42579 -numidicus 64423 -nummer 63991 -numérica 65170 -numérique 60762 -numéro 63601 -nun 56356 -nunc 63077 -nunca 58919 -nung 64905 -nungulba 61940 -nuns 55684 -nuovo 62613 -nuptial 65170 -nuptials 63601 -nur 56293 -nurse 45799 -nurse's 59491 -nursed 60580 -nurseries 58688 -nursery 50957 -nurses 47839 -nursing 43775 -nurture 55226 -nurtured 57399 -nurtures 62066 -nurturing 55014 -nus 63419 -nut 50115 -nutcracker 65170 -nuthin 63792 -nutmeg 58417 -nutrient 49065 -nutrients 49959 -nutrition 47008 -nutritional 47835 -nutritionally 60000 -nutritionist 60952 -nutritionists 62613 -nutritionnel 64657 -nutritious 55631 -nutritive 60492 -nuts 49596 -nutshell 60952 -nutter 64201 -nuttin 64423 -nutty 58802 -nuvi 58919 -nuvifone 65170 -nv 58162 -nvidia 56080 -nvm 65170 -nw 59357 -nwrickert 64905 -nx 61152 -nxt 60670 -ny 52118 -nya 61362 -nyc 55250 -nye 63245 -nylon 49302 -nylons 62066 -nymph 63419 -nymphet 63792 -nymphets 61818 -nympho 62066 -nymphomaniac 57970 -nymphomaniacs 63601 -nymphs 57482 -nynorsk 60321 -nyo 62917 -nystagmus 63077 -nyt 60492 -nyu 64423 -nz 58113 -não 56452 -nächste 63245 -när 65170 -nær 55084 -née 62469 -në 62469 -nó 64905 -nüvi 60856 -o 37640 -o'brien 63077 -o'clock 52423 -o'er 62066 -o'r 60952 -oBdA 65170 -oC 58577 -oF 59491 -oHighlightedResult 58313 -oI 62613 -oJ 64905 -oO 59923 -oP 57046 -oS 64657 -oY 60405 -oa 59292 -oak 49608 -oakland 63601 -oakley 59424 -oaks 59227 -oar 64201 -oars 64905 -oases 65170 -oasis 53899 -oat 58065 -oath 54133 -oaths 63792 -oatmeal 57046 -oats 59164 -ob 55992 -obama 45583 -obedience 55604 -obedient 61940 -oben 61818 -ober 64905 -oberon 65452 -obese 51985 -obesity 49476 -obey 53196 -obeyed 60078 -obeying 58523 -obeys 59560 -obfuscated 63419 -obfuscation 64657 -obi 63792 -obit 63245 -obituaries 52609 -obituary 55154 -obj 56170 -objFSO 64423 -objFile 63245 -objFileCollection 63792 -objFolderObject 65452 -objImageFileToUse 63792 -object 40908 -object's 58577 -objected 56021 -objectification 65452 -objecting 61362 -objection 52256 -objectionable 49535 -objections 52648 -objective 43838 -objectively 56518 -objectives 45506 -objectivity 58860 -objector 64201 -objectors 63245 -objects 42617 -objet 65170 -objetivo 65452 -objets 63991 -objid 65452 -oblast 65170 -oblate 64905 -obligate 59560 -obligated 53241 -obligation 46717 -obligations 47997 -obligatory 55604 -oblige 60952 -obliged 53454 -obliges 64423 -oblique 55398 -obliquely 61584 -obliterata 65452 -obliterate 62917 -obliterated 60580 -obliterating 64201 -obliteration 63601 -oblivion 57653 -oblivious 58313 -oblong 59702 -oblongata 64423 -oblongifolia 65170 -obnoxious 58523 -obo 61472 -oboe 61472 -obras 64905 -obs 58632 -obscene 55250 -obscenely 65170 -obscenity 56862 -obscura 62917 -obscuration 63991 -obscure 51131 -obscured 55934 -obscures 62469 -obscuring 61256 -obscurity 60670 -obscurum 65170 -observable 54226 -observables 60321 -observance 57741 -observant 60856 -observation 45437 -observational 52982 -observations 44514 -observatories 62762 -observatory 57785 -observe 47356 -observed 38863 -observer 51184 -observer's 62613 -observers 51600 -observes 55154 -observing 50686 -obsess 64657 -obsessed 52872 -obsessing 63419 -obsession 53917 -obsessional 63792 -obsessions 62469 -obsessive 56324 -obsessively 63991 -obsidian 61472 -obsolescence 63601 -obsolete 53138 -obstacle 52141 -obstacles 50630 -obstetric 56827 -obstetrical 63077 -obstetrician 62331 -obstetricians 63991 -obstetrics 58365 -obstinate 63991 -obstruct 58802 -obstructed 58017 -obstructing 59630 -obstruction 51741 -obstructions 59774 -obstructive 52818 -obstructs 64657 -obtain 40012 -obtainable 56200 -obtained 37436 -obtaining 45936 -obtains 52858 -obtener 65452 -obtrusive 62066 -obturation 62066 -obturator 63601 -obtuse 59101 -obverse 64201 -obviate 62762 -obviated 65170 -obviates 64423 -obviating 63077 -obvious 44203 -obviously 45070 -oc 58417 -ocak 62917 -occasion 48148 -occasional 47803 -occasionally 46998 -occasioned 60321 -occasions 49371 -occassion 62331 -occassional 63601 -occassionally 65452 -occassions 63419 -occipital 55906 -occiput 61051 -occlude 64201 -occluded 57696 -occludentes 64423 -occludin 60762 -occluding 62762 -occlusal 58417 -occlusion 51425 -occlusions 62196 -occlusive 59164 -occult 55578 -occultation 64905 -occupancy 52152 -occupant 56935 -occupants 54207 -occupation 49435 -occupational 48576 -occupationally 64657 -occupations 53679 -occupied 47741 -occupier 60000 -occupiers 59923 -occupies 53517 -occupy 50865 -occupying 53746 -occur 41990 -occurance 65170 -occured 55250 -occurence 62613 -occurences 64201 -occuring 59227 -occurred 42730 -occurrence 47474 -occurrences 54188 -occurring 46194 -occurs 43053 -ocean 47107 -ocean's 64657 -oceanfront 59560 -oceania 63601 -oceanic 55631 -oceanographic 60580 -oceanography 63077 -oceans 55348 -och 51193 -ocho 64905 -ochre 63991 -ocr 64657 -oct 54879 -octabromobiphenyl 65452 -octadecylsilica 65452 -octagon 63601 -octagonal 63077 -octahedra 63245 -octahedral 56935 -octahedron 63245 -octane 58688 -octave 58017 -octet 64423 -octets 64657 -october 48614 -octobre 60762 -octombrie 64905 -octopus 59848 -octreotide 65170 -octubre 58523 -ocular 52423 -oculomotor 65170 -ocurred 64423 -od 53286 -odd 46781 -oddball 60670 -oddest 63601 -oddities 60405 -oddity 60492 -oddly 56972 -oddone 65170 -odds 48017 -ode 57653 -oder 53952 -odes 64905 -odessa 64201 -odie 65452 -odio 62613 -odious 64201 -odnowienie 63419 -odo 63792 -ododays 64201 -odode 63077 -ododiscount 60762 -odohotel 55084 -odometer 59848 -odontoblast 64905 -odontoblasts 62469 -odontogenic 64905 -odor 53010 -odorant 63245 -odorants 64423 -odorless 64201 -odors 57046 -odour 58860 -odours 62196 -odovere 64657 -ods 59227 -oduct 62196 -oducts 65170 -odyssey 58979 -odytsak 65452 -oe 58919 -oedema 57238 -oem 55793 -oer 64905 -oesophageal 59630 -oesophagus 63245 -oestrogen 58113 -oestrone 62066 -oeuvre 61051 -oeuvres 65452 -of 15222 -ofa 58065 -ofan 63991 -ofcourse 60000 -ofeach 64905 -oferta 65170 -ofertas 65452 -off 33149 -offal 64657 -offbeat 59424 -offence 51284 -offences 53796 -offend 54727 -offendSpread 56388 -offended 53454 -offender 50726 -offender's 62331 -offenders 50314 -offending 52521 -offends 59630 -offense 48682 -offenses 53865 -offensive 45004 -offensively 63245 -offer 36423 -offered 40308 -offering 41333 -offerings 50053 -offeror 62762 -offers 36602 -offhand 62331 -offi 64423 -offical 57238 -offically 63419 -office 37897 -office's 61584 -officeholders 62613 -officer 43274 -officer's 57358 -officers 44148 -offices 44479 -official 38967 -officially 46837 -officials 42543 -officiated 63077 -officiating 61818 -officiel 60952 -officielle 64657 -officinalis 63245 -officio 60405 -offing 65452 -offline 46210 -offload 61818 -offloading 61152 -offprint 63601 -offre 64905 -offroad 61051 -offs 58745 -offseason 61256 -offset 46592 -offsets 55906 -offsetting 57609 -offshoot 60492 -offshoots 65170 -offshore 49223 -offshoring 64657 -offside 60856 -offsite 57482 -offspring 53109 -offthebus 58688 -oficial 61472 -ofloxacin 63077 -ofr 65170 -oft 58470 -often 36391 -oftentimes 60762 -ofthat 64423 -ofthe 47871 -oftheir 64201 -ofthese 62196 -ofthis 59848 -oftware 63991 -og 47776 -ogame 65170 -ogg 58417 -oglu 65452 -ogous 65452 -ogra 61940 -ogre 64201 -også 63991 -ogy 57009 -oh 44723 -ohare 64905 -ohh 56388 -ohhh 61940 -ohio 52315 -ohm 58802 -ohmic 60580 -ohms 58523 -ohne 58802 -ohooh 65170 -oi 54151 -oid 65452 -oil 38647 -oil's 63245 -oiled 59164 -oilers 65170 -oilfield 62331 -oiling 65170 -oils 48831 -oilseed 61584 -oilseeds 64905 -oily 55154 -oinkypig 63792 -ointment 59039 -oj 60492 -ojala 65452 -ojos 63245 -ok 44637 -okanagan 65170 -okay 49119 -okays 65452 -oki 65452 -oklahoma 57199 -okra 63419 -okt 63792 -oktober 61256 -ol 51867 -ola 60670 -olan 65170 -olanzapine 60078 -olarak 64657 -olathe 64201 -old 34772 -olde 62331 -olden 63245 -older 41022 -oldest 46173 -oldie 62469 -oldies 58745 -olds 53630 -oldschool 63601 -ole 55202 -oleae 65452 -oleate 64905 -olefin 60078 -olefinic 59630 -olefins 60492 -oleh 61940 -oleic 59357 -oleracea 63991 -olfactory 54207 -olga 61362 -oli 62917 -oligarch 63792 -oligarchs 64423 -oligo 60670 -oligodendrocyte 61472 -oligodendrocytes 59424 -oligofructose 61362 -oligomer 60000 -oligomeric 61362 -oligomerization 62762 -oligomers 57482 -oligonucleotide 52597 -oligonucleotides 53485 -oligos 62469 -oligosaccharide 61362 -oligosaccharides 60078 -oligotrophic 65452 -olin 65452 -olive 47645 -oliver 57199 -oliverjcomo 63245 -olives 56110 -olivia 61818 -olivier 63991 -olivine 60762 -olivines 62066 -olla 65452 -ollie 62613 -ollysmrs 64423 -olny 64201 -ological 61362 -ology 60952 -olsen 59774 -olsun 65170 -olunteer 64657 -olution 63991 -olympia 63792 -olympic 56050 -olympics 51772 -olympus 61152 -om 50227 -oma 62917 -omaha 61818 -oman 64657 -omar 61818 -ombudsman 60580 -ome 61256 -omega 55934 -omelet 62917 -omelette 63601 -omen 61699 -omeprazole 62196 -omfg 64201 -omg 52459 -omhoog 65170 -ominous 57566 -ominously 65452 -omission 53934 -omissions 49764 -omit 55348 -omits 61362 -omitted 51762 -omitting 57278 -ommendations 64657 -omnes 63991 -omni 61818 -omnia 62331 -omnibus 60405 -omnicef 63245 -omnidirectional 60321 -omnipresent 62196 -omnitrix 63419 -omnivorous 65170 -omovies 64905 -on 20707 -onTargetJobs 59702 -onTargetjobs 58979 -ona 60321 -onal 62762 -onan 64905 -onanism 59848 -onary 65452 -onboard 52571 -onc 62613 -oncaeid 62762 -once 37167 -onchange 63419 -onclick 63792 -oncogene 59630 -oncogenes 62917 -oncogenic 59491 -oncologic 64657 -oncologist 60952 -oncologists 63245 -oncology 56324 -oncoming 59630 -oncoprotein 64201 -ond 56862 -onda 61051 -ondansetron 59227 -ondary 61256 -onde 61584 -onder 62917 -ondinemonet 64201 -one 27367 -one's 45519 -oneness 62196 -onerous 59164 -ones 41206 -oneself 54685 -onesies 65170 -onetime 61051 -oneview 65170 -oneworld 65452 -ong 64423 -ongoing 44257 -oni 63601 -onic 63792 -onion 50234 -onions 52291 -onlay 64657 -onli 64905 -online 33073 -onlineflashgames 65170 -onload 64657 -onlookers 62196 -only 28781 -onlyGraphical 64905 -onmouseout 61584 -onmouseover 61051 -ono 57482 -ons 56485 -onscreen 59164 -onsen 64657 -onset 46526 -onshore 58688 -onsite 52233 -onslaught 58979 -onstage 57566 -onstrate 65452 -onstrated 60952 -onstruction 65452 -ont 56050 -ontario 56618 -onthe 61699 -onto 40417 -ontogenetic 63991 -ontogeny 63419 -ontological 58523 -ontologies 57399 -ontology 53970 -onus 59101 -onward 57653 -onwards 54622 -ony 64423 -onychomycosis 62066 -onyx 62331 -onze 62331 -oo 49854 -oocyst 64905 -oocysts 61256 -oocyte 57278 -oocytes 53847 -ood 61699 -oodles 62066 -oof 58688 -ooh 57278 -ook 57609 -oolong 64905 -oom 62762 -oomph 65452 -oon 65170 -ooo 58417 -oooh 63991 -oops 56618 -oor 61472 -oot 63245 -ooze 61051 -oozed 65170 -oozes 61362 -oozing 62066 -op 49854 -opacification 63991 -opacities 65170 -opacity 57524 -opal 60078 -opamp 63792 -opaque 53226 -opcode 65170 -opdatering 60580 -oped 58262 -opel 62331 -open 35477 -openMosix 60762 -openPR 62331 -openSUSE 57653 -openbaar 65452 -opened 41387 -opener 52096 -openers 60157 -opengl 63601 -opening 40603 -openings 49086 -openly 51985 -openness 55084 -openoffice 63077 -opens 44016 -opensource 61051 -openssh 64657 -openssl 62613 -opera 49559 -operability 61699 -operable 54601 -operably 57160 -operand 59560 -operandi 63991 -operands 62613 -operant 59560 -operas 59702 -operate 43441 -operated 44252 -operates 46092 -operatic 60952 -operating 39954 -operation 40707 -operational 45033 -operationalize 64201 -operationalized 64905 -operationally 58523 -operations 41428 -operative 49919 -operatively 57046 -operatives 58417 -operator 44163 -operator's 57084 -operators 45172 -operon 56200 -operons 60321 -ophthacare 65170 -ophthalmic 56200 -ophthalmologist 62762 -ophthalmologists 63991 -ophthalmology 63245 -opiate 58470 -opiates 60762 -opie 64905 -opined 60856 -oping 65452 -opinion 41880 -opinionated 60762 -opinions 42878 -opioid 54992 -opioids 59560 -opis 62469 -opium 57785 -opment 57318 -opmental 65452 -opp 63792 -opponent 50654 -opponent's 57238 -opponents 50568 -opportune 60952 -opportunist 63792 -opportunistic 55992 -opportunistically 64201 -opportunities 40128 -opportunity 39261 -oppose 51550 -opposed 45780 -opposer's 64657 -opposes 54770 -opposing 49464 -opposite 43982 -oppositely 59702 -opposites 60670 -opposition 47015 -oppositional 62762 -oppositions 64423 -oppressed 58802 -oppression 56756 -oppressive 57566 -opps 65452 -oprah 63077 -ops 58470 -opsonized 63991 -opt 49319 -opted 51211 -optic 49365 -optical 41639 -optically 53565 -optics 51026 -optima 63419 -optimal 44229 -optimality 58065 -optimally 56721 -optimisation 54792 -optimisations 65452 -optimise 57524 -optimised 55274 -optimising 59702 -optimism 54499 -optimist 60952 -optimistic 51931 -optimists 64905 -optimization 46210 -optimizations 59702 -optimize 49764 -optimized 47603 -optimizer 58262 -optimizes 57566 -optimizing 53010 -optimum 47392 -optimus 64657 -opting 56518 -option 40282 -optional 45723 -optionally 50350 -optioned 63419 -options 35885 -optionsXpress 62613 -optique 63245 -optoelectronic 59560 -optoelectronics 64657 -optometrist 60762 -optometrists 61051 -optometry 62917 -opts 59491 -optus 62613 -opulence 62066 -opulent 59923 -opus 59292 -oq 64905 -or 22276 -ora 60078 -oracle 53581 -oral 43039 -orally 52791 -orang 63077 -orange 46367 -oranges 57785 -oration 63991 -orator 64423 -oratory 61472 -oraz 62469 -orb 61362 -orbit 50791 -orbital 49745 -orbitals 56721 -orbiter 61699 -orbiting 58162 -orbitofrontal 62917 -orbits 56756 -orbs 64201 -orc 60405 -orcas 62613 -orchard 57566 -orchards 59424 -orchestra 52673 -orchestral 57122 -orchestras 59101 -orchestrate 61584 -orchestrated 58162 -orchestrating 62917 -orchestration 60405 -orchid 58417 -orchids 58417 -orchiectomy 65452 -orci 63077 -orcs 62196 -ord 60952 -ordain 64905 -ordained 56200 -ordeal 57653 -orden 64657 -order 33656 -ordered 42922 -ordering 46231 -orderings 64905 -orderly 54133 -orders 40518 -ordinal 57653 -ordinance 50607 -ordinances 54321 -ordinarily 54664 -ordinary 45247 -ordinate 60078 -ordinateur 64905 -ordination 56756 -ordinator 65170 -ordnance 59357 -ordre 64657 -ore 51000 -oredr 65452 -oregano 59774 -oregon 55963 -oregonianphoto 64905 -oregonianphoto's 64905 -oreo 65452 -ores 60238 -orev 65452 -org 51157 -organ 47325 -organelle 61362 -organelles 59702 -organic 42144 -organically 57566 -organics 59923 -organique 62066 -organisation 45780 -organisation's 58688 -organisational 51711 -organisations 45853 -organise 52818 -organised 48667 -organiser 59101 -organisers 55684 -organises 57831 -organising 53565 -organism 51482 -organism's 64657 -organisms 48918 -organist 60762 -organization 40113 -organization's 51034 -organizational 46199 -organizations 42412 -organize 47807 -organized 43954 -organizer 53109 -organizer's 65170 -organizers 52818 -organizes 55684 -organizing 49092 -organochlorine 64201 -organoclay 63077 -organoleptic 64905 -organometallic 59164 -organophosphate 64905 -organophosphorus 60762 -organs 49097 -organza 62917 -orgasm 51888 -orgasmic 63601 -orgasms 57084 -orgawell 61940 -orgazm 60580 -orgies 61472 -orginal 59702 -orginally 65170 -orgs 63077 -orgy 53646 -orgánico 63077 -ori 61051 -orice 62066 -orient 57609 -oriental 56200 -orientale 63419 -orientated 57566 -orientation 45490 -orientational 62066 -orientations 53830 -oriented 47297 -orienting 60405 -orifice 56618 -orifices 57970 -orig 62917 -origami 58470 -origin 44956 -origina 64905 -original 36876 -originality 56388 -originally 43565 -originals 54360 -originalzin 62469 -originate 53024 -originated 50782 -originates 54902 -originating 48595 -origination 58523 -originations 65452 -originator 57482 -originators 60856 -origins 49608 -orion 61699 -orisha 63077 -ork 61940 -orkut 59357 -orlando 56862 -orleans 58802 -orlistat 61362 -orm 63991 -ornament 54581 -ornamental 54499 -ornamentation 61472 -ornamented 63601 -ornaments 55552 -ornate 57440 -ornithine 61472 -ornithological 65170 -oro 61699 -orofacial 63419 -orogenic 64905 -oropharyngeal 61699 -orotate 65170 -orotic 60580 -orphan 56652 -orphanage 58365 -orphanages 63419 -orphaned 56652 -orphans 56388 -ors 62066 -ort 63601 -ortho 52872 -orthodontic 55323 -orthodontics 64657 -orthodontist 61051 -orthodox 57009 -orthodoxy 61940 -orthogonal 50560 -orthogonality 60492 -orthogonalized 65452 -orthogonally 64423 -orthographic 62331 -orthography 63792 -ortholog 63245 -orthologous 64657 -orthologs 63245 -orthologues 65452 -orthonormal 59560 -orthopaedic 57358 -orthopedic 55631 -orthophosphate 65170 -orthophoto 63245 -orthorhombic 60078 -orthoses 63792 -orthostatic 65452 -orthotic 62196 -orthotics 62917 -orthotopic 60952 -ory 59357 -oryzae 61362 -os 50350 -osCommerce 53970 -oscar 59039 -oscars 65452 -oscillate 61818 -oscillates 63077 -oscillating 57318 -oscillation 53241 -oscillations 51690 -oscillator 51340 -oscillators 57609 -oscillatory 56170 -oscilloscope 59630 -oscommerce 63601 -ose 64905 -oseltamivir 63245 -osetia 64423 -osha 60952 -oslo 63991 -osmium 59702 -osmolality 58262 -osmolarity 64201 -osmopriming 64657 -osmoreceptors 64657 -osmoregulation 60856 -osmosis 59923 -osmotic 54581 -osmotically 64905 -oso 64657 -osprey 64423 -osreb 65170 -oss 60238 -osseous 59227 -ossification 58577 -ost 58417 -osteitis 65452 -ostensible 62613 -ostensibly 58017 -ostentatious 63245 -osteoarthritis 52435 -osteoarticular 60157 -osteoblast 59491 -osteoblastic 60492 -osteoblasts 58470 -osteocalcin 63077 -osteochondroma 63991 -osteochondrosis 64657 -osteoclast 60157 -osteoclastic 64657 -osteoclastogenesis 62066 -osteoclasts 61362 -osteocyte 61818 -osteocytes 63245 -osteodystrophy 64905 -osteogenesis 60238 -osteogenic 61051 -osteoid 65452 -osteolysis 62613 -osteomyelitis 59292 -osteopathic 60762 -osteopenia 64905 -osteoporosis 54622 -osteoporotic 60157 -osteosarcoma 62469 -osteosynthesis 65170 -osteotomy 61699 -ostinato 63792 -ostium 63792 -ostracized 63991 -ostrich 59357 -ostéoarticulaire 63245 -osx 57482 -ot 50742 -otaku 64423 -otc 63419 -otek 63077 -oth 62196 -otha 63792 -othe 63792 -other 27781 -other's 50890 -others 37654 -otherwise 40389 -otherworldly 63792 -oti 63077 -otic 61699 -otis 64201 -otitis 59039 -otk 62469 -otoacoustic 63601 -otoconia 65170 -otolaryngologist 65170 -otra 58979 -otras 62066 -otro 58577 -otros 56899 -ott 63991 -ottawa 59848 -otter 59491 -otters 63792 -otto 63601 -ottobre 62917 -ottoman 61472 -ou 43930 -ouabain 61940 -ouch 61362 -ought 48581 -oughta 63419 -oui 63991 -ould 62196 -ounce 53038 -ounces 50940 -ound 61818 -our 27296 -ours 51640 -ourself 65452 -ourselves 46146 -ous 54245 -ouside 62331 -ously 56862 -oust 56551 -ousted 58802 -ouster 63077 -ousting 64905 -out 28196 -outa 62469 -outage 55906 -outages 58688 -outback 61051 -outbid 64657 -outboard 55373 -outbound 54902 -outbox 64905 -outbreak 51511 -outbreaks 54499 -outbred 65170 -outbreeding 63601 -outbuilding 63991 -outbuildings 62917 -outburst 59424 -outbursts 60952 -outcast 61584 -outcasts 64423 -outclassed 63991 -outcome 44366 -outcomes 45492 -outcrop 59630 -outcrops 61584 -outcry 59491 -outdated 52164 -outdo 62762 -outdone 63077 -outdoor 43967 -outdoors 48801 -outed 65452 -outer 43939 -outermost 57238 -outerplanarity 63419 -outerwear 58313 -outfield 60952 -outfielder 59923 -outfit 50638 -outfits 53256 -outfitted 57238 -outfitters 62762 -outfitting 62917 -outflow 53917 -outflows 60856 -outgoing 50321 -outgroup 65452 -outgrow 62613 -outgrown 60762 -outgrowth 56899 -outils 58313 -outing 54706 -outings 59227 -outlandish 60000 -outlast 63245 -outlaw 57566 -outlawed 61256 -outlawing 63601 -outlaws 62066 -outlay 57653 -outlays 64201 -outlet 46989 -outlets 49873 -outlier 62066 -outliers 59630 -outline 48109 -outlined 47328 -outlines 49972 -outlining 53813 -outlive 65452 -outlived 63419 -outlook 48586 -outlooks 61051 -outlying 57122 -outmoded 64201 -outmost 64657 -outnumber 60157 -outnumbered 61051 -outpace 62762 -outpaced 62331 -outpacing 62613 -outpatient 51087 -outpatients 59774 -outperform 57122 -outperformed 61051 -outperforming 64905 -outperforms 59560 -outplacement 63245 -outplayed 63792 -outpost 59491 -outposts 62917 -outpouring 61362 -output 39844 -outputs 49511 -outputting 59292 -outrage 55274 -outraged 56652 -outrageous 53762 -outrageously 62066 -outrages 65170 -outreach 50840 -outrigger 63601 -outright 53899 -outro 65452 -outrun 61256 -outs 53695 -outscored 61584 -outsells 64905 -outset 55711 -outshines 65452 -outside 38424 -outsider 57831 -outsiders 57440 -outskirts 54969 -outsmart 64905 -outsole 57696 -outsource 56618 -outsourced 56110 -outsourcing 50940 -outspoken 57923 -outst 62613 -outstanding 44192 -outstandingly 63077 -outstation 65452 -outstretched 61152 -outstrip 65170 -outstripped 64657 -outstripping 65452 -outstrips 64423 -outta 54005 -outtake 64201 -outtakes 61818 -outward 52244 -outwardly 55060 -outwards 58979 -outweigh 55849 -outweighed 59357 -outweighs 59560 -outwit 63792 -outwith 64423 -ouverts 65170 -ouvir 64905 -ov 57122 -ova 58417 -oval 52805 -ovalbumin 62066 -ovale 60000 -ovals 63792 -ovarian 49541 -ovariectomized 62196 -ovaries 57122 -ovary 54792 -ovat 65452 -ovate 60856 -ovation 60580 -ovations 64905 -ove 62066 -oven 47435 -ovens 55578 -over 30155 -overabundance 63245 -overactive 61256 -overall 40117 -overalls 62613 -overarching 57046 -overbearing 63419 -overblown 65170 -overboard 59848 -overburden 61152 -overburdened 63245 -overcame 57653 -overcapacity 65452 -overcast 61362 -overcharge 61584 -overcharged 61818 -overcharges 64201 -overcharging 64423 -overclock 60078 -overclocked 60762 -overclocking 57831 -overcoat 63245 -overcoating 65452 -overcome 46282 -overcomes 56551 -overcoming 53970 -overcooked 64201 -overcrowded 58688 -overcrowding 59491 -overcurrent 62196 -overdesigned 62917 -overdo 63991 -overdominant 64201 -overdone 64905 -overdose 52954 -overdoses 64905 -overdraft 61584 -overdrank 61584 -overdrive 58417 -overdue 55154 -overeating 63991 -overestimate 57831 -overestimated 60000 -overestimates 63991 -overestimation 60078 -overexposure 63792 -overexpress 63792 -overexpressed 58065 -overexpressing 58365 -overexpression 53679 -overexpressor 65452 -overflow 53081 -overflowing 58632 -overflows 61699 -overgrown 60580 -overgrowth 57876 -overhang 58632 -overhanging 62917 -overhangs 63991 -overhaul 53830 -overhauled 62196 -overhauling 64905 -overhead 48711 -overheads 58979 -overhear 64201 -overheard 58262 -overheat 61256 -overheated 60856 -overheating 58632 -overhung 65452 -overjoyed 62331 -overkill 60856 -overlaid 58212 -overlain 59923 -overland 60405 -overlap 49972 -overlapped 57741 -overlapping 50815 -overlaps 57084 -overlay 52778 -overlaying 65170 -overlays 58417 -overleaf 63601 -overlie 64657 -overlies 63419 -overload 53182 -overloaded 57524 -overloading 58745 -overloads 63245 -overlook 54706 -overlooked 52096 -overlooking 50856 -overlooks 56791 -overly 50774 -overlying 55084 -overnight 44785 -overpaid 63245 -overpass 58688 -overpay 65170 -overpayment 60762 -overpayments 61584 -overpopulation 63792 -overpower 62917 -overpowered 62196 -overpowering 61940 -overpressure 64201 -overpriced 57566 -overproduction 62762 -overrated 59101 -overridden 60321 -override 52472 -overrides 57831 -overriding 55500 -overrule 63245 -overruled 58860 -overruling 63991 -overrun 59101 -overruns 64201 -overs 56687 -oversampling 62469 -oversaw 58365 -overscan 62469 -oversea 60078 -overseas 47252 -oversee 52315 -overseeing 54601 -overseen 57741 -overseer 61472 -oversees 54005 -overshadow 62331 -overshadowed 57609 -overshadowing 63792 -overshoot 61256 -overshooting 65170 -oversight 51804 -oversimplified 63991 -oversize 57609 -oversized 53501 -oversold 65452 -overspeed 64905 -overspend 65452 -overstate 61818 -overstated 61818 -overstock 65170 -oversupply 64657 -overt 55154 -overtake 58860 -overtaken 60000 -overtakes 61940 -overtaking 60405 -overthrew 63245 -overthrow 58470 -overthrown 62917 -overtime 52399 -overtly 59630 -overtones 62066 -overtook 63601 -overture 61818 -overturn 58470 -overturned 57482 -overturning 62469 -overturns 63601 -overuse 58860 -overused 62762 -overvalued 64905 -overview 44468 -overviews 58417 -overweight 51804 -overwhelm 58417 -overwhelmed 52954 -overwhelming 50335 -overwhelmingly 52752 -overwhelms 63419 -overwintered 65170 -overworked 62196 -overwrite 57609 -overwrites 64905 -overwritten 61699 -overwrought 64905 -overzealous 62331 -oviduct 62917 -ovigerous 64423 -ovine 59702 -oviposition 60670 -ovo 62469 -ovoid 61051 -ovulation 56021 -ovulatory 63245 -ovum 64657 -ow 55014 -owatonna 64657 -owe 50654 -owed 52085 -owen 62331 -ower 63991 -owes 54151 -owing 49966 -owl 56518 -owl's 64201 -owls 61472 -own 32991 -ownage 63419 -owned 41231 -owner 39809 -owner's 51650 -owners 42833 -ownership 44869 -owning 51521 -owns 46944 -ows 64905 -owt 62469 -ox 56110 -oxalate 57318 -oxalic 58470 -oxazole 64657 -oxazoles 65170 -oxen 63419 -oxford 57399 -oxidant 58313 -oxidants 63077 -oxidase 52886 -oxidases 63419 -oxidation 46466 -oxidative 49893 -oxide 45588 -oxides 52411 -oxidised 61362 -oxidising 60580 -oxidize 59491 -oxidized 51521 -oxidizer 65452 -oxidizers 64905 -oxidizes 63991 -oxidizing 55934 -oxidoreductase 62613 -oxime 59424 -oximetry 63991 -oxo 65170 -oxox 62469 -oxy 64657 -oxychloride 62469 -oxycodone 57653 -oxycontin 55014 -oxyde 63419 -oxygen 43210 -oxygenase 64423 -oxygenated 58212 -oxygenation 57009 -oxygens 61152 -oxynitride 62066 -oxytocin 59848 -oxytrol 65170 -oy 55500 -oye 63601 -oyster 54096 -oysters 54114 -oyun 62762 -oz 45510 -ozawa 64423 -ozo 65170 -ozone 51312 -ozzybinoswald 64423 -oí 60952 -p 38842 -p's 64423 -pA 63991 -pAddr 64657 -pBluescript 61256 -pCO 65452 -pCa 63077 -pF 54969 -pH 42051 -pHa 65170 -pHs 64201 -pI 59164 -pK 60238 -pKa 61818 -pL 59702 -pLogger 63991 -pM 56140 -pO 59923 -pRB 62331 -pRFID 64201 -pRinceSs 65452 -pS 64905 -pT 65170 -pTLA 64905 -pUnK 64423 -pYzam 63077 -pa 47551 -paar 62331 -pablo 61362 -pac 59702 -pace 47891 -paced 55014 -pacemaker 56110 -pacemakers 62469 -pacemaking 65452 -pacer 64657 -paces 59630 -pach 63792 -pachinko 65170 -pacific 55604 -pacifico 62917 -pacifier 63245 -pacing 53153 -pacity 64423 -pack 43991 -package 40910 -package's 65170 -packaged 50087 -packages 44614 -packaging 45056 -packard 56862 -packed 46102 -packer 58860 -packers 57653 -packet 46950 -packets 49218 -packing 48131 -packings 64905 -packs 49330 -paclitaxel 60670 -pacman 60078 -pact 53081 -pacts 64423 -pad 47544 -pada 61051 -padded 52778 -padding 55906 -paddle 55130 -paddled 63245 -paddles 60762 -paddling 58417 -paddock 59039 -paddocks 62917 -paddy 59491 -padi 63077 -padlock 59923 -padre 62331 -padres 63601 -pads 49732 -paediatric 55423 -paediatricians 64905 -paedophile 64905 -paella 63991 -pag 62469 -pagal 65452 -pagan 57482 -pagar 65452 -page 29090 -page's 53882 -pageant 56080 -pageants 64201 -paged 59164 -pagel 63792 -pagemaker 65452 -pageprint 62196 -pager 59491 -pagerank 60405 -pagers 63245 -pages 34179 -pageview 61818 -pageviews 60078 -pagewidth 64201 -pagina 58632 -paginas 64905 -pagination 64423 -paging 56080 -pagoda 63792 -pai 62196 -paid 39555 -paiement 64905 -paige 62196 -pail 62331 -pain 40106 -painAbdominal 60321 -pained 64423 -painful 48243 -painfull 64657 -painfully 55992 -painkiller 63077 -painkillers 62762 -painless 55934 -painlessly 65170 -pains 53010 -painstaking 59848 -painstakingly 58802 -paint 44563 -paintball 55657 -paintballing 65170 -paintbrush 63991 -painted 47143 -painter 52791 -painterly 64905 -painters 56262 -painting 45831 -painting's 65452 -paintings 48731 -paints 52423 -paintwork 64905 -pair 42142 -pair's 65170 -paired 50350 -pairing 53331 -pairings 59101 -pairs 45636 -pairwise 55226 -pais 63419 -paisa 64905 -paisley 58470 -pajama 60952 -pajamas 58162 -pak 59702 -paki 65170 -pakistan 56518 -pakistani 61256 -pal 53613 -pala 64201 -palabras 61818 -palace 52635 -palaces 60157 -paladin 58745 -paladins 62196 -palatability 63245 -palatable 60492 -palatal 59101 -palate 54399 -palates 64657 -palatial 64423 -pale 50357 -paleontologist 63792 -paleontologists 62469 -paler 61818 -pales 61472 -palestine 61940 -palestranet 65452 -palette 53485 -palettes 60856 -palgraphic 61051 -palin 47522 -palindromes 65452 -palindromic 61362 -palisading 63419 -palit 64657 -palladium 56518 -pallbearers 64905 -pallet 55684 -palletes 65452 -pallets 59357 -palliation 62917 -palliative 53533 -pallida 64905 -pallidum 59560 -pallidus 63792 -pally 60580 -palm 48726 -palmOne 61818 -palmar 61940 -palmer 65452 -palmerwmd 63245 -palmetto 63601 -palmitate 64201 -palmitic 64201 -palms 55423 -palmtop 65170 -palo 64201 -paloma 64423 -palomitas 63245 -palpable 55766 -palpation 58745 -palpitations 64201 -pals 56485 -palsy 56140 -paltalk 63991 -paltry 62066 -palustre 65170 -palustris 63601 -pam 57278 -pamela 57084 -pamelor 64201 -pamper 60321 -pampered 60670 -pampering 59848 -pamphlet 56585 -pamphlets 59357 -pan 48191 -panacea 62917 -panache 63991 -panama 61256 -panasonic 55793 -pancake 58065 -pancakes 56687 -panchromatic 63991 -pancreas 54283 -pancreatic 49657 -pancreatitis 57609 -pancreatoduodenectomy 65452 -panda 54188 -pandas 64905 -pandemic 56293 -pander 65170 -pandering 61818 -pandora 62066 -pane 54706 -paneer 64423 -panel 42222 -panel's 61362 -paneled 62613 -paneling 64657 -panelist 60238 -panelists 56652 -panelled 61699 -panellist 65452 -panellists 61362 -panels 47107 -panera 63245 -panes 58802 -pang 62469 -pangs 64657 -panhandle 63991 -panhandler 65452 -panic 49670 -panicked 59292 -panicking 63601 -panicle 61152 -panicles 64905 -panics 62331 -paniculata 62917 -panied 62762 -panies 63991 -panini 60670 -panned 61152 -panning 60405 -panochitas 61152 -panorama 55684 -panoramas 61818 -panoramic 51473 -panos 64905 -pans 54151 -pansion 64657 -pansy 64905 -pant 56485 -pantalla 64657 -pantech 62917 -pantera 63419 -pantheon 61472 -panther 60405 -pantie 58979 -panties 52029 -panting 58802 -pantomime 61256 -pantry 58860 -pants 47585 -pantsuits 62762 -panty 55578 -pantyhose 54023 -pany 61152 -paola 64905 -paolo 63991 -pap 61584 -papa 58162 -papain 62917 -papal 60157 -paparazzi 55963 -papaya 59039 -papel 61256 -papell 63601 -paper 36882 -paper's 56972 -paperback 55398 -paperboard 62469 -paperless 59227 -papermaking 63245 -papers 41328 -paperweight 65452 -paperwork 53423 -papi 63991 -papilla 61472 -papillae 61362 -papillary 53952 -papilloma 61256 -papillomavirus 59923 -papillon 64905 -papitata 61362 -paprika 60856 -papules 63419 -papulosis 63991 -papyrus 62917 -papà 65170 -par 44851 -para 44385 -parable 58262 -parables 64423 -parabola 64201 -parabolic 55373 -paracellular 62331 -paracetamol 58162 -parachute 56935 -parachutes 63077 -paracortex 64201 -paracrine 62066 -parade 50150 -paraded 62613 -parades 59923 -paradigm 51630 -paradigmatic 62469 -paradigms 56551 -parading 63991 -paradise 52752 -paradox 55060 -paradoxes 63245 -paradoxical 57199 -paradoxically 61940 -paraffin 54419 -paraformaldehyde 57084 -paragliding 63991 -paragon 62613 -paragraph 45746 -paragraphs 50815 -paralegal 59702 -paralegals 64201 -parallax 61256 -parallel 42949 -paralleled 58065 -parallelepiped 64657 -paralleling 63419 -parallelism 57122 -parallelization 63245 -parallelogram 63991 -parallels 54459 -paralogous 64201 -paralysed 64201 -paralysis 55250 -paralytic 62762 -paralyzed 57609 -paralyzing 64201 -param 61584 -paramagnetic 58979 -paramedian 64657 -paramedic 60580 -paramedics 59848 -parameter 42587 -parameterization 60670 -parameterizations 65452 -parameterized 58017 -parameters 41110 -parametric 51620 -parametrization 61152 -parametrized 61152 -paramilitary 60321 -paramo 63245 -paramore 63077 -paramos 63991 -paramount 54879 -params 60580 -paramyxovirus 65452 -paraneoplastic 60405 -parang 64905 -paranoia 58523 -paranoid 56585 -paranormal 56551 -parapet 64657 -parapharyngeal 63792 -paraphernalia 60238 -paraphilia 62331 -paraphilias 62196 -paraphrase 60000 -paraphrased 63245 -paraphrasing 61818 -paraplegia 64905 -paraplegic 61940 -paraprofessional 65170 -paraprofessionals 63601 -paras 64905 -parasite 52291 -parasites 52423 -parasitic 53847 -parasitism 60952 -parasitized 62469 -parasitoid 60492 -parasitoids 63419 -parasternal 64201 -parasympathetic 62613 -parathion 64201 -parathyroid 55934 -parative 64657 -paratrooper 64201 -paraventricular 60670 -paravertebral 65170 -parc 49296 -parcel 50815 -parcels 54245 -parched 65170 -parchment 60238 -pardon 55992 -pardoned 62762 -pardons 64905 -pare 59039 -parece 60405 -pared 53423 -pareja 65170 -parenchyma 57482 -parenchymal 58632 -parenleftbig 60580 -parenleftbigg 65170 -parenrightbig 61699 -parenrightbigg 65170 -parent 43042 -parent's 54924 -parentage 61152 -parental 48156 -parentankignore 58162 -parenteral 55906 -parenterally 64905 -parentheses 55657 -parenthesis 60762 -parenthetical 65452 -parenthood 59227 -parenting 49022 -parently 65170 -parents 40054 -pares 63792 -parfum 63792 -pari 65170 -pariah 65452 -paribus 62331 -parietal 56170 -paring 61256 -paris 50379 -parish 51511 -parishes 57609 -parishioners 61051 -parisien 64657 -parison 56935 -parisons 62196 -parity 52187 -park 42791 -park's 58313 -parka 61940 -parked 49400 -parker 57876 -parking 42549 -parkingplace 65452 -parkinsonian 60856 -parkinsonism 65170 -parkland 61051 -parklands 64423 -parkour 58417 -parks 47883 -parkway 61256 -parle 64905 -parliament 52509 -parliament's 64657 -parliamentarian 64423 -parliamentarians 63991 -parliamentary 52648 -parliaments 65452 -parlodel 65452 -parlor 58365 -parlors 62762 -parlour 63245 -parmesan 59357 -parochial 59923 -parodia 63419 -parodies 61256 -parody 53662 -parol 64657 -parole 54439 -paroled 64423 -paroles 52018 -paronychia 65170 -parotid 57046 -paroxetine 60321 -paroxysmal 55178 -parquet 64423 -parrot 56021 -parrots 59630 -parry 62762 -pars 57566 -parse 55906 -parsed 57609 -parser 56935 -parses 62331 -parsimonious 64423 -parsimony 61152 -parsing 53211 -parsley 56518 -parsnip 63991 -parsonage 65452 -part 32779 -partake 58745 -partaking 63601 -parte 51731 -parted 57009 -partellus 62469 -partenariat 65170 -partes 62469 -parthenogenetic 63245 -parti 62917 -partial 43797 -partially 45151 -partials 65170 -participant 49262 -participant's 59227 -participants 43086 -participate 42827 -participated 47153 -participates 53052 -participating 45369 -participation 43830 -participations 64905 -participative 62066 -participator 65452 -participatory 55154 -participle 59630 -participles 65452 -particle 44976 -particle's 64657 -particleInCell 56687 -particleboard 63077 -particles 44071 -particular 38247 -particularities 65452 -particularity 64423 -particularly 39404 -particulars 54706 -particulary 63792 -particulate 50758 -particulates 58523 -partido 63077 -partie 56618 -partied 63601 -parties 41495 -parties's 64657 -parting 57741 -partir 58979 -partisan 55526 -partisans 62331 -partisanship 63601 -partite 63991 -partition 47951 -partitioned 55348 -partitioning 53038 -partitions 53565 -partly 46717 -partment 61152 -partner 42245 -partner's 56293 -partnered 53899 -partnering 54207 -partners 42228 -partnership 41659 -partnership's 64905 -partnerships 49001 -parton 58523 -partridge 64657 -parts 38516 -parttime 55014 -partum 62196 -parturition 64905 -party 37904 -party's 51580 -partying 56021 -partys 64423 -parvo 64657 -parvocellular 63991 -parvovirus 60856 -parvum 60856 -pas 51000 -pasa 61472 -pasadena 65452 -pasado 62613 -pasar 61256 -pascal 63601 -paseo 65452 -pashan 59923 -paso 57199 -pass 40938 -passa 63991 -passable 62469 -passage 46663 -passaged 64657 -passages 52351 -passageway 55766 -passageways 62762 -passat 61472 -passband 61940 -passcode 63601 -passdb 65170 -passe 61051 -passed 41564 -passenger 47266 -passenger's 64201 -passengers 48658 -passer 60670 -passerine 65452 -passes 45914 -passin 61818 -passing 44289 -passion 46002 -passionate 49602 -passionately 56827 -passionfruit 64905 -passions 55738 -passivate 64423 -passivated 65452 -passivation 62331 -passive 48350 -passively 57009 -passivity 63601 -passphrase 65170 -passport 50584 -passports 57046 -passthrough 64657 -passwd 62196 -password 40830 -passwords 50584 -passwort 62917 -past 37052 -pasta 50638 -pastas 62196 -paste 45354 -pastebin 63792 -pasted 55552 -pastefill 65170 -pastel 55604 -pastels 61472 -pastes 61940 -pasteurization 64905 -pasteurized 63991 -pastime 61584 -pastimes 65452 -pasting 55373 -pastor 52244 -pastor's 62917 -pastoral 55130 -pastoralists 63077 -pastorate 65452 -pastoris 63792 -pastors 56972 -pastries 59560 -pastry 53081 -pasture 54380 -pastures 57609 -pasty 61584 -pasword 65170 -pat 53470 -patTemplate 63601 -pata 64423 -patch 44169 -patched 55877 -patches 48801 -patching 58802 -patchwork 59101 -patchy 60580 -pate 60405 -pated 65452 -patel 63991 -patella 62613 -patellar 64657 -patency 58470 -patent 44778 -patente 64201 -patented 50791 -patenting 61472 -patently 61940 -patents 46726 -pater 63792 -paternal 55154 -paternalism 64423 -paternalistic 65170 -paternally 64423 -paternity 58470 -path 41921 -pathetic 54519 -pathetically 65170 -pathfinder 61584 -pathogen 52635 -pathogenesis 51293 -pathogenetic 61051 -pathogenic 52256 -pathogenicity 58065 -pathogens 51804 -pathognomonic 65170 -pathologic 54857 -pathological 50940 -pathologically 62066 -pathologie 54792 -pathologies 61362 -pathologist 57199 -pathologists 60238 -pathology 50530 -pathophysiologic 61940 -pathophysiological 57482 -pathophysiology 55849 -pathos 63245 -paths 47752 -pathway 46723 -pathways 47859 -patience 49602 -patient 39191 -patient's 47622 -patiently 56420 -patients 34953 -patina 61584 -patio 50576 -pation 62762 -patios 60405 -patito 65170 -patna 64201 -patología 54114 -patria 63991 -patriarch 60492 -patriarchal 60321 -patriarchy 63792 -patric 64905 -patricia 58212 -patrick 55299 -patricks 64423 -patrimony 65452 -patriot 59630 -patriotic 54902 -patriotism 56652 -patriots 60238 -patrol 51148 -patrolled 62469 -patrolling 59630 -patrolman 65452 -patrols 57122 -patron 54581 -patron's 63991 -patronage 57358 -patronize 63792 -patronizing 62613 -patrons 52699 -pats 61051 -patted 64657 -pattem 63245 -pattems 65170 -patter 63991 -pattern 41128 -patterned 54264 -patterning 57009 -patterns 42397 -patti 63601 -pattie 58860 -patties 60762 -patting 63991 -patty 61152 -pau 61699 -paucicostata 63077 -paucity 58113 -paul 50694 -paula 60157 -paulgb 65170 -pauline 64905 -paullaugh 62469 -paulo 63419 -paultnature 64423 -pauper 65452 -pause 52584 -paused 57923 -pauses 58313 -pausing 61699 -pavarsia 64201 -pave 56652 -paved 52725 -pavement 53630 -pavements 61584 -pavers 60762 -paves 60000 -pavilion 55037 -pavilions 62331 -pavillion 62613 -paving 54226 -paw 57199 -pawl 58212 -pawn 58113 -pawns 61472 -paws 59424 -pax 61472 -paxil 54114 -paxstereo 59848 -pay 36805 -payable 47649 -payables 63991 -payback 58162 -paycheck 56021 -paychecks 61362 -payday 53138 -payed 58860 -payee 61699 -payer 58065 -payer's 65452 -payers 58262 -paying 43700 -payline 60580 -paylines 63419 -payload 53899 -payloads 63601 -payment 38762 -payments 43730 -payne 55226 -payoff 56551 -payoffs 61472 -payors 64657 -payout 55738 -payouts 57440 -paypal 53095 -payphone 59039 -payroll 48923 -payrolls 62762 -pays 46812 -paysite 61256 -paz 63077 -país 64201 -países 64905 -pb 59357 -pbaldy 65452 -pbk 62196 -pbmods 61818 -pc 44432 -pc's 63077 -pcAnywhere 57923 -pcan 62469 -pcb 63991 -pce 65452 -pci 56356 -pcm 52435 -pcmcia 61362 -pcr 63419 -pcs 54499 -pct 54664 -pctrecords 64657 -pctv 65452 -pd 58802 -pda 58979 -pdb 65170 -pdf 44740 -pdfFactory 63419 -pdfs 63991 -pdr 65170 -pdt 57482 -pdx 64905 -pe 52534 -pea 54188 -peace 43505 -peaceably 65452 -peacebuilding 62469 -peaceful 49435 -peacefully 57358 -peacekeepers 59491 -peacekeeping 56687 -peacetime 63077 -peach 53988 -peaches 58860 -peachy 64657 -peacock 60238 -peak 41785 -peakafeller 62196 -peaked 55323 -peaking 57741 -peaks 47555 -pean 62469 -peanut 51387 -peanuts 55934 -pear 55060 -pearance 63601 -peared 60952 -pearl 50686 -pearlescent 64657 -pearls 55877 -pearlware 64423 -pearly 63601 -pears 57399 -pearson 64905 -peas 54622 -peasant 56200 -peasantry 62762 -peasants 57524 -peasy 65170 -peat 57653 -peated 64657 -peau 65170 -peavey 62196 -pebble 60762 -pebbled 65452 -pebbles 59357 -pec 63792 -pecan 57831 -pecans 61152 -pecially 62917 -peck 62762 -pecking 60670 -pect 62917 -pected 59292 -pectic 63792 -pectin 59424 -pectoral 64423 -pectoris 60078 -pects 63792 -peculiar 52387 -peculiarities 59702 -peculiarity 61699 -peculiarly 61472 -pecuniary 60321 -ped 63792 -pedagogic 64201 -pedagogical 56420 -pedagogy 59039 -pedal 51521 -pedaling 61584 -pedals 56551 -pedantic 65170 -peddle 63077 -peddling 61699 -pede 61051 -pedestal 55766 -pedestals 64905 -pedestrian 51473 -pedestrians 55323 -pediatric 49899 -pediatrician 60157 -pediatricians 61940 -pediatrics 59164 -pedicels 64905 -pedicle 59774 -pedicure 60762 -pedicures 65452 -pedigree 55604 -pedigrees 61940 -pediocin 61818 -pedo 59774 -pedometer 63077 -pedophile 61940 -pedophiles 62917 -pedro 63077 -peduncle 63792 -pee 53779 -peed 60856 -peeing 54813 -peek 53346 -peekawho 60952 -peeked 63991 -peeking 61940 -peeks 63991 -peel 52982 -peeled 54835 -peeling 55323 -peels 59702 -peep 57238 -peeping 62613 -peeps 57046 -peer 47607 -peerage 64201 -peered 63601 -peering 59560 -peerings 65170 -peerless 64201 -peers 49130 -peeve 64201 -peewwaa 63601 -peg 55711 -pegged 57970 -peggy 62762 -pegmatite 65170 -pegs 58313 -pegylated 62917 -peice 60492 -peices 62762 -pein 63601 -pejorative 64905 -pel 65452 -pela 60000 -pelagic 60580 -pelican 63991 -pelicula 63991 -peliculas 62917 -pelissip 65170 -pellet 51867 -pelleted 56862 -pelletizing 65170 -pellets 52686 -pellicle 63419 -pellicles 61818 -pellucida 63419 -pelo 58919 -pelos 65170 -pelted 64201 -pelts 64657 -peludos 64423 -pelvic 51640 -pelvis 56551 -película 65170 -pemphigoid 63991 -pemphigus 57009 -pen 48314 -pena 63077 -penal 57653 -penalise 64423 -penalised 64423 -penalize 60670 -penalized 57785 -penalizes 65170 -penalizing 64905 -penalties 50402 -penalty 46595 -penance 64905 -pence 59227 -penchant 56827 -pencil 51238 -pencils 56388 -pend 63792 -pendant 52597 -pendants 60238 -pended 61051 -pendejo 65170 -pendence 62613 -pendency 62613 -pendent 57009 -pendently 64657 -pending 47325 -pendrin 65452 -pendrive 63991 -pends 64201 -pendulum 57785 -penelope 64905 -penetrance 62613 -penetrate 51700 -penetrated 55821 -penetrates 57009 -penetrating 53454 -penetration 48766 -penetrations 62066 -penguin 54749 -penguins 56972 -penicillamine 64905 -penicillin 53392 -penile 56652 -peninsula 55631 -peninsular 63991 -penis 47855 -penises 61699 -penisole 63245 -penitence 58802 -penitentiary 64423 -penn 59702 -pennant 61584 -pennants 64423 -penne 64201 -penned 57122 -pennies 56721 -penning 63792 -pennsays 59630 -pennsylvania 57278 -penny 52062 -penpals 62469 -pens 53167 -pensacola 64657 -pensar 63419 -pense 62762 -pension 47464 -pensioner 62613 -pensioners 60000 -pensions 53124 -pent 63077 -pentacoordinate 64657 -pentagonal 64423 -penthouse 57785 -pentium 62066 -pentlandite 60952 -pentobarbital 58745 -penton 64201 -pentose 64905 -pentosidine 63601 -pentoxide 65452 -pentoxifylline 65170 -pentru 56231 -penultimate 60321 -penumbra 63077 -penx 62762 -peony 65452 -peopel 65452 -people 30945 -people's 46575 -peopled 64905 -peoples 49682 -pep 58919 -pepper 48619 -peppercorns 64657 -peppered 60670 -peppermint 59357 -pepperoni 62331 -peppers 53729 -peppery 61818 -peppy 64905 -pepsi 60856 -pepsin 61362 -pepstatin 63991 -peptic 55348 -peptidase 61362 -peptidases 64905 -peptide 46503 -peptides 49313 -peptidoglycan 62469 -peptone 65452 -pequeña 64201 -per 32437 -perature 55274 -peratures 60762 -perceive 52187 -perceived 47177 -perceives 58802 -perceiving 60670 -percent 37993 -percentage 42677 -percentages 51220 -percentile 55250 -percentiles 63245 -percents 64657 -perceptible 60238 -perception 47984 -perceptions 50220 -perceptive 59848 -perceptron 63077 -perceptual 53316 -perceptually 64201 -perch 57831 -percha 61051 -perched 56899 -perches 64657 -perchlorate 59923 -perchloric 60405 -perchè 64905 -percocet 59101 -percolating 64657 -percolation 60670 -percussion 54643 -percussionist 61256 -percussive 62917 -percutaneous 54902 -perdido 65170 -peregrina 64423 -peregrine 62331 -peremptory 62469 -perenne 65170 -perennial 52739 -perennially 62469 -perennials 59774 -perez 61584 -perf 62066 -perfect 39546 -perfected 57046 -perfecting 59774 -perfection 53438 -perfectionist 63077 -perfectly 45537 -perfil 59630 -perfomance 65452 -perforate 63419 -perforated 52818 -perforating 64423 -perforation 57084 -perforations 57785 -perforce 63419 -perform 40823 -performance 36718 -performances 47110 -performed 38604 -performer 51303 -performers 50881 -performing 43454 -performs 47187 -perfringens 59292 -perfume 51974 -perfumed 61699 -perfumes 59702 -perfunctory 63991 -perfusate 61584 -perfused 53256 -perfusing 64423 -perfusion 50454 -perhaps 41935 -peri 65170 -perianal 63792 -periapical 62613 -periaqueductal 65452 -peribronchial 64201 -pericardial 57199 -pericarditis 60762 -pericardium 59848 -pericope 65452 -perience 62917 -periesophageal 65452 -perigee 64657 -periglacial 65452 -periinfarct 64423 -peril 58632 -perilous 59357 -perils 57785 -perilymph 65170 -perimenopausal 65170 -periment 63245 -perimental 59774 -periments 60856 -perimeter 52291 -perinatal 55500 -perineal 57696 -perineum 60670 -period 37572 -periodic 47664 -periodical 57009 -periodically 49517 -periodicals 56110 -periodicity 56231 -periodontal 52051 -periodontitis 61362 -periods 44677 -perioperative 56585 -periosteal 61472 -periosteum 64423 -peripancreatic 64905 -peripheral 45241 -peripherally 60856 -peripherals 55423 -peripheries 64201 -periphery 52982 -periphyton 62762 -periplasmic 62762 -periportal 60580 -perish 61152 -perishable 60670 -perished 61051 -peristalsis 63792 -peristaltic 60952 -peritectic 63419 -perithecia 65170 -peritoneal 52096 -peritoneum 61362 -peritonitis 59424 -peritubular 60321 -peritumoral 64657 -perivascular 58745 -periventricular 64201 -perivitelline 65452 -perjury 57696 -perk 59039 -perked 65452 -perks 55684 -perky 58632 -perl 54226 -perlite 64905 -perm 60670 -permalink 43385 -permalinkReport 62331 -permanence 59774 -permanency 64201 -permanent 43646 -permanently 48431 -permanganate 64201 -permeabilities 63601 -permeability 50678 -permeabilization 63419 -permeabilized 59630 -permeable 56756 -permeate 57653 -permeated 61818 -permeates 60238 -permeating 63991 -permeation 57278 -permet 65170 -permissible 54835 -permission 40654 -permissions 45662 -permissive 56972 -permit 43666 -permite 63792 -permits 46340 -permitted 45041 -permitting 51825 -permittivity 57609 -permutation 55526 -permutations 60157 -permuted 63601 -pernicious 60078 -pero 52351 -peroneal 59848 -perovskite 63601 -peroxidase 53597 -peroxidases 65170 -peroxidation 56452 -peroxide 51835 -peroxides 60670 -peroxisomal 63419 -peroxisome 60492 -peroxisomes 64905 -peroxynitrite 62469 -perpendicular 49500 -perpendicularly 59227 -perpetrated 58113 -perpetrator 59357 -perpetrators 57482 -perpetual 54226 -perpetually 59923 -perpetuate 58313 -perpetuated 62196 -perpetuates 63077 -perpetuating 61256 -perpetuation 63991 -perpetuity 63245 -perplexed 59848 -perplexing 61152 -perquisites 65452 -perro 62196 -perroquet 65170 -perry 57238 -perryrt 64905 -pers 61256 -perscription 57399 -persecute 64657 -persecuted 59164 -persecution 56585 -persecutions 63991 -perseverance 59702 -persevere 62613 -persevered 64905 -persia 59702 -persian 60492 -persilylated 63245 -persimmon 64657 -persion 65170 -persist 52996 -persistant 65452 -persisted 54360 -persistence 52062 -persistency 65452 -persistent 48122 -persistently 56585 -persisting 58860 -persists 54924 -perso 64657 -person 36217 -person's 47526 -persona 55604 -personable 61818 -personage 65452 -personal 35766 -personales 64657 -personalisation 63245 -personalise 63077 -personalised 50782 -personalities 53138 -personality 46291 -personalization 58365 -personalize 50718 -personalized 45279 -personally 44605 -personals 50101 -personaly 65452 -personas 58632 -personification 63077 -personified 64657 -personnal 65452 -personne 63792 -personnel 44519 -personnes 61818 -persons 42279 -perspective 44705 -perspectives 49590 -perspiration 61362 -persuade 52791 -persuaded 54078 -persuades 63077 -persuading 59630 -persuasion 58262 -persuasive 56485 -persuasively 63419 -pert 62917 -pertain 55552 -pertained 63245 -pertaining 49417 -pertains 55474 -perth 59848 -pertinence 64657 -pertinent 50164 -perturb 62066 -perturbation 52832 -perturbations 54969 -perturbative 60321 -perturbed 57609 -perturbing 63792 -pertussis 56687 -peru 59164 -peruano 64423 -perusal 60492 -peruse 59923 -perusing 61362 -peruvian 61152 -perv 63991 -pervade 63419 -pervaded 64201 -pervades 61699 -pervading 64423 -pervaporation 62331 -pervasive 54041 -pervect 63792 -pervenous 64657 -perverse 58979 -perversion 62613 -pervert 61818 -perverted 60000 -pervious 63077 -pes 57524 -pesados 63601 -pesca 65170 -pescado 64905 -pesky 58017 -peso 57876 -pesos 59923 -pessimism 62331 -pessimist 61818 -pessimistic 58417 -pessoa 65170 -pest 51406 -pester 64657 -pestering 63991 -pesticide 52351 -pesticides 52472 -pestle 63792 -pesto 58688 -pests 52221 -pet 44413 -pet's 56827 -peta 62762 -petal 62613 -petals 56721 -pete 56652 -peter 52435 -petererosenberg 63077 -peterpan 65170 -peters 62613 -peterson 65170 -petiole 61699 -petioles 64657 -petit 57831 -petite 51856 -petites 61152 -petition 47245 -petitionSite 65170 -petitioned 58470 -petitioner 52509 -petitioner's 57653 -petitioners 59101 -petitioning 62196 -petitions 53454 -petitionsite 63991 -petitive 62917 -petits 62917 -petri 59227 -petrified 61362 -petrochemical 59357 -petrochemicals 63601 -petrol 51492 -petroleum 50046 -petrology 64657 -pets 45481 -petting 60670 -petty 52661 -petulant 64423 -petunia 64423 -peu 60321 -peugeot 60078 -peur 64905 -peut 59560 -peutic 63601 -peuvent 63991 -peux 64423 -pew 61472 -pews 63419 -pewter 58860 -peyote 62066 -peyton 65170 -pf 58065 -pfizer 60670 -pfs 63419 -pfu 63792 -pg 52927 -pgfan 64423 -pgs 63991 -ph 55014 -phacoemulsification 64423 -phage 52447 -phagemid 65452 -phages 57831 -phagocytes 62762 -phagocytic 58470 -phagocytosed 65452 -phagocytosis 58313 -phagosomes 65170 -phakic 65170 -phalanx 61152 -phallic 64905 -phantasy 64657 -phantom 53517 -phantoms 62196 -pharma 56420 -pharmaceutical 47044 -pharmaceutically 55821 -pharmaceuticals 55474 -pharmacies 51293 -pharmacist 52778 -pharmacists 55657 -pharmacodynamic 61818 -pharmacodynamics 64423 -pharmacokinetic 55963 -pharmacokinetics 55060 -pharmacologic 58113 -pharmacological 52411 -pharmacologically 61584 -pharmacology 54059 -pharmacotherapy 61584 -pharmacy 46242 -pharmacys 63792 -pharyngeal 59702 -pharyngitis 63601 -pharynx 61584 -phase 39459 -phased 54459 -phaser 64905 -phases 46890 -phasic 62196 -phasing 58365 -phasors 64657 -phat 57122 -phate 60157 -phd 62762 -pheasant 61818 -pheasants 64423 -phelps 56862 -phendimetrazine 61940 -phenethyl 65452 -phengpheng 64905 -phenobarbital 61051 -phenocrysts 64201 -phenol 54023 -phenolic 54770 -phenolics 62066 -phenological 63991 -phenology 61818 -phenols 58212 -phenom 63792 -phenomena 49240 -phenomenal 54969 -phenomenally 63991 -phenomenological 56356 -phenomenology 62066 -phenomenon 47266 -phenothiazine 63245 -phenotype 50530 -phenotypes 54924 -phenotypic 54005 -phenotypically 62066 -phenprocoumon 65170 -phentermine 44570 -phentrimine 60856 -phenyl 54479 -phenylalanine 59101 -phenylephrine 59491 -phenylhydrazine 61940 -phenylketone 63792 -phenylketonuria 63991 -phenylmethylsulfonyl 59630 -phenytoin 58162 -pheochromocytoma 63077 -pheromone 59227 -pheromones 62469 -phi 57566 -phic 64905 -phil 57440 -philadelphia 57160 -philanthropic 57009 -philanthropist 61362 -philanthropists 64657 -philanthropy 58919 -philip 61051 -philippe 62917 -philippine 62331 -philippines 56140 -philips 58365 -phillies 64201 -phillip 63245 -phillips 57970 -philly 59292 -philosopher 55578 -philosophers 56935 -philosophic 64201 -philosophical 51680 -philosophically 63245 -philosophies 58162 -philosophy 46404 -phim 62066 -phir 65170 -phishing 55631 -phism 65452 -phlebotomy 65452 -phlegm 62917 -phloem 60856 -phn 65452 -pho 64905 -phobia 59227 -phobias 61152 -phobic 62613 -phocytes 65170 -phoebecat 65170 -phoenix 54813 -phology 63991 -phone 37029 -phone's 58017 -phonebook 60952 -phoned 57785 -phoneme 58979 -phonemes 63419 -phonemic 59923 -phonephone 49596 -phones 44113 -phonesex 63077 -phonetic 57318 -phonetically 65452 -phonetics 63792 -phonic 65452 -phonics 58745 -phoning 60670 -phono 59702 -phonograph 62917 -phonological 56388 -phonon 52778 -phonons 58065 -phony 57084 -phorbol 58860 -phoresis 64905 -phorylation 63601 -phosgene 64201 -phosphatase 50991 -phosphatases 60321 -phosphate 46566 -phosphates 56585 -phosphatic 63419 -phosphatidic 65452 -phosphatidylcholine 61152 -phosphatidylethanolamine 63419 -phosphatidylinositol 58577 -phosphatidylserine 61940 -phosphatized 65452 -phosphide 64905 -phosphine 61472 -phosphinocarboxylic 65452 -phosphite 62613 -phospho 64657 -phosphocellulose 62762 -phosphodiester 64423 -phosphodiesterase 60321 -phosphoenolpyruvate 60321 -phosphoglycerate 63792 -phosphoinositide 58802 -phosphoinositides 63991 -phospholamban 64201 -phospholipase 55130 -phospholipid 54946 -phospholipids 56080 -phosphonate 64905 -phosphonic 60157 -phosphopeptide 64201 -phosphoprotein 61362 -phosphoproteins 61152 -phosphor 63245 -phosphorescent 63991 -phosphoric 57122 -phosphorites 60762 -phosphorothioate 63601 -phosphorous 59630 -phosphorus 51122 -phosphorylase 57199 -phosphorylate 61940 -phosphorylated 53286 -phosphorylates 61472 -phosphorylating 63991 -phosphorylation 48959 -phosphotransferase 63245 -phosphotyrosine 61584 -phosphozite 63601 -photic 61699 -photo 37041 -photo's 52221 -photoabsorption 60952 -photoacoustic 63419 -photoactivatable 64657 -photobleaching 64423 -photoblog 60580 -photobucket 62196 -photocatalytic 62196 -photocell 62613 -photochemical 57876 -photochemically 65170 -photochemistry 62762 -photochromic 65452 -photocopied 62762 -photocopier 64201 -photocopies 60762 -photocopy 56899 -photocopying 61472 -photocurrent 59292 -photodegradation 64905 -photodetector 63991 -photodiode 58065 -photodiodes 60762 -photodissociation 65170 -photodynamic 60670 -photoelastic 63419 -photoelectric 58113 -photoelectron 56862 -photoelectrons 65452 -photoemission 60492 -photoes 64201 -photoexcitation 65170 -photog 64905 -photogenerated 65170 -photogenic 63077 -photogrammetric 64657 -photogrammetry 64423 -photograph 47988 -photographed 51996 -photographer 48543 -photographer's 61818 -photographers 49899 -photographic 50171 -photographical 62762 -photographing 58417 -photographs 45406 -photography 44648 -photoinduced 62762 -photoinitiator 65170 -photoionization 59039 -photojournalism 63792 -photojournalist 62196 -photojournalistic 63991 -photolithography 65170 -photoluminescence 60762 -photolyase 58860 -photolysis 61051 -photomanipulation 65452 -photometer 61362 -photometric 55766 -photometry 58860 -photomicrograph 60492 -photomicrographs 63077 -photomultiplier 61256 -photon 50591 -photonic 54341 -photonics 61818 -photons 54005 -photoperiod 60405 -photoperiodic 63991 -photophysical 65170 -photopic 64905 -photopolymer 62066 -photorating 62469 -photoreceptor 58523 -photoreceptors 63419 -photorefractive 63601 -photorefractoriness 65452 -photoresist 58688 -photos 36031 -photosensitive 62196 -photosensitivity 63792 -photoshoot 58365 -photoshop 50150 -photostream 49651 -photosynthesis 57084 -photosynthetic 56585 -photosynthetically 64905 -photosystem 60157 -phototherapy 65170 -photothermal 61362 -photovoltaic 55014 -phox 64423 -php 49470 -phpBB 46654 -phpFormGenerator 64201 -phpLD 64905 -phpMyAdmin 62762 -phpMyVisites 53167 -phpNuke 65170 -phpbb 58802 -phpnuke 64423 -phpnut 62331 -phragmites 65452 -phranque 63991 -phrase 43848 -phrased 61940 -phrases 49880 -phrasing 60157 -phrenic 57199 -phthalate 61584 -phthalates 63792 -phthalic 64201 -phthalocyanine 61051 -phuket 64201 -phy 58632 -phyA 62762 -phyB 63991 -phycoerythrin 63991 -phyiscal 65170 -phyla 63419 -phylogenetic 53517 -phylogenetically 63245 -phylogeny 58577 -phylum 58632 -physical 39185 -physically 47442 -physicals 63601 -physician 45430 -physician's 56420 -physicians 46432 -physicist 57741 -physicists 57609 -physicochemical 58017 -physics 47435 -physio 64423 -physiologic 55766 -physiological 47570 -physiologically 58365 -physiologist 63601 -physiology 52007 -physiotherapist 63077 -physiotherapists 64905 -physiotherapy 57358 -physique 59774 -phytase 58262 -phytases 64905 -phytate 63601 -phytic 64201 -phytochemical 65170 -phytochemicals 62762 -phytoestrogens 65170 -phytonutrients 61940 -phytopathogenic 63245 -phytoplankton 55738 -phytoremediation 62613 -phytosanitary 65452 -phytosterols 65170 -pi 54207 -pia 63077 -piace 64905 -pial 63991 -pianist 54770 -pianists 62917 -piano 46766 -pianos 60078 -pias 63601 -piazza 63245 -pic 45086 -pic's 63245 -pica 64905 -picasa 61584 -piccolo 62762 -pice 65170 -pick 41341 -pick'em 62613 -picked 42323 -picker 58262 -picket 59923 -pickguard 64423 -picking 47515 -pickings 63991 -pickle 56791 -pickled 58470 -pickles 58632 -pickling 63077 -picks 46610 -pickup 48261 -pickups 55906 -picky 57084 -picnic 51175 -picnics 60670 -pico 61699 -picolinafen 64905 -piconet 63991 -picosecond 62066 -pics 42874 -pictorial 56721 -picture 38213 -picture's 63792 -pictured 52559 -pictures 39238 -picturesque 53052 -picturing 62762 -piczo 65452 -pid 61362 -pie 48841 -piece 40704 -pieced 61940 -piecemeal 60670 -pieces 43148 -piecewise 57318 -piecing 62762 -pied 60580 -pienso 65452 -pier 55014 -pierce 57970 -pierced 54835 -pierces 64657 -piercing 52791 -piercings 58017 -pierre 57440 -piers 59774 -pies 55448 -piety 60762 -piezo 60238 -piezoelectric 54969 -pif 64657 -pig 48944 -pig's 63792 -pigeon 56618 -pigeons 57876 -piggy 58688 -piggyback 62066 -piglet 63419 -piglets 60856 -pigment 51502 -pigmentation 57009 -pigmented 57122 -pigmentosa 62331 -pigmentosum 64905 -pigments 53533 -pigs 50321 -pigskin 63601 -pigtails 61940 -pikachu 64423 -pike 58365 -pil 61256 -pilates 58017 -pile 50584 -piled 55474 -piles 53970 -pileup 65452 -pilgrim 63792 -pilgrimage 56827 -pilgrims 57876 -pili 62331 -piling 57876 -pill 48084 -pillage 62469 -pillaging 64201 -pillar 55849 -pillars 54560 -pillow 52141 -pillowcases 65170 -pillows 55274 -pillowtop 63245 -pills 47939 -pilot 44853 -pilot's 60000 -piloted 59630 -piloting 59848 -pilots 51415 -pilus 62917 -pimozide 63601 -pimp 53138 -pimped 63991 -pimping 63601 -pimple 62196 -pimples 60405 -pimps 60856 -pin 45565 -pina 65452 -pinata 65452 -pinay 62762 -pinball 59164 -pincer 64657 -pinch 52351 -pinche 65170 -pinched 59702 -pinches 62762 -pinching 60157 -pind 65452 -pine 48959 -pineal 56687 -pineapple 52484 -pines 58919 -ping 52399 -pinging 63792 -pings 59357 -pinhole 61256 -pinholes 61584 -pining 62469 -pinion 58017 -pink 44491 -pinkie 64423 -pinkish 62196 -pinks 62469 -pinky 59101 -pinnacle 55877 -pinnacles 65170 -pinned 55130 -pinning 55423 -pinot 61362 -pinout 60580 -pinouts 64905 -pinoy 60492 -pinpoint 54439 -pinpointed 62762 -pinpointing 63991 -pinpoints 64423 -pins 49038 -pinstripe 63419 -pint 54360 -pinto 61818 -pints 57696 -pinup 62917 -pinyin 65170 -pio 65452 -pioglitazone 62196 -pion 60000 -pioneer 50424 -pioneered 54857 -pioneering 52686 -pioneers 54969 -pions 62066 -piosenek 62762 -piosenki 61818 -pious 59630 -piousp 61699 -pip 59848 -pipe 45517 -piped 59039 -pipeline 49590 -pipelined 61472 -pipelines 56140 -pipelining 64905 -piper 59702 -piperidine 65452 -pipes 49939 -pipette 56262 -pipetted 64201 -pipettes 62066 -pipetting 65452 -piping 54560 -pips 59848 -pique 61584 -piqued 62331 -piracy 55060 -pirate 51783 -pirated 58017 -pirates 53613 -pirating 65452 -pirfenidone 65170 -piri 62613 -pirical 65452 -piriform 62762 -pisces 64201 -pishposhgirls 64657 -piso 62917 -piss 50499 -pissed 52648 -pisses 60856 -pissing 54188 -pissy 64423 -pista 65170 -pistachio 59292 -piste 64905 -pistol 52198 -pistols 58313 -piston 51899 -pistons 57923 -pit 48801 -pita 60670 -pital 64201 -pitanja 60238 -pitbull 62331 -pitbulls 65170 -pitch 46865 -pitched 53271 -pitcher 53256 -pitcher's 64201 -pitchers 56110 -pitches 52927 -pitching 52509 -pitfall 61818 -pitfalls 55348 -pith 63245 -pithy 63077 -pitiful 60762 -pits 53024 -pitt 60078 -pitta 62917 -pitted 57785 -pitti 62762 -pitting 58860 -pittsburgh 57785 -pituitary 52268 -pituitaryadrenal 64657 -pity 54399 -piven 62613 -pivot 50115 -pivotable 62762 -pivotably 63792 -pivotal 52351 -pivotally 56972 -pivoted 59164 -pivoting 57785 -pivots 61940 -piwik 61699 -pix 55107 -pixar 63792 -pixel 47335 -pixels 46702 -pixie 63077 -pixies 65170 -pixma 64905 -pixxx 61472 -pizza 48021 -pizzas 55657 -pizzazz 64905 -pizzeria 61818 -pièce 65170 -pj 59702 -pjesama 65170 -pk 56618 -pkg 57440 -pkuhn 63601 -pl 53779 -pla 63991 -placa 64201 -placard 61699 -placards 62331 -placate 63077 -place 34280 -placebo 49913 -placebos 65170 -placed 39986 -placeholder 59560 -placeholders 63991 -placemark 58365 -placemarks 59848 -placement 45974 -placements 54519 -placenta 56080 -placental 55084 -placer 64201 -places 40782 -placid 62196 -placing 46272 -placket 60856 -plagiarism 57566 -plagiarized 64657 -plagioclase 62331 -plague 54969 -plagued 55299 -plagues 60762 -plaguing 61256 -plaice 64423 -plaid 56756 -plain 45084 -plained 61940 -plainly 56687 -plains 54399 -plaintext 63601 -plaintiff 49257 -plaintiff's 53182 -plaintiffs 52899 -plan 37285 -plan's 59630 -plana 64423 -planar 50522 -plane 43005 -plane's 61940 -planed 63991 -planer 63245 -planes 49006 -planet 47522 -planet's 58017 -planetarium 64657 -planetary 51700 -planets 53630 -plang 64905 -planing 59039 -plank 58212 -planking 63991 -planks 59560 -plankton 58162 -planktonic 59923 -planned 43809 -planner 52303 -planners 53226 -planning 39244 -plano 65170 -plans 38585 -plant 40044 -plant's 57084 -plantain 62762 -plantar 56140 -plantaris 65452 -plantarum 63077 -plantation 53729 -plantations 56551 -planted 49739 -planter 61940 -planters 60670 -planting 50734 -plantings 58919 -plantronics 65452 -plants 41381 -planus 63991 -plaque 50734 -plaques 53830 -plasm 64657 -plasma 41980 -plasmas 57876 -plasmic 63991 -plasmid 48501 -plasmids 52233 -plasmin 63991 -plasminogen 57566 -plasmon 60078 -plasmonic 60952 -plaster 54283 -plasterboard 64423 -plastered 59848 -plasterer 62613 -plastering 62762 -plasters 65452 -plastic 41802 -plasticity 54283 -plasticizer 59164 -plasticizers 64423 -plastics 52496 -plastique 65170 -plat 54341 -plata 61940 -plate 42467 -plateau 52996 -plateaus 62762 -plated 51157 -platelet 50292 -platelets 54207 -platen 58313 -platens 62066 -plates 45479 -platform 43548 -platformer 63077 -platforming 65452 -platforms 48692 -plating 54207 -platinum 51000 -platitudes 65452 -plato 64657 -platonic 62917 -platoon 59039 -plats 63991 -platted 64201 -platter 57524 -platters 61472 -plaudits 63245 -plausibility 60670 -plausible 53407 -plausibly 61818 -plavix 59560 -play 35888 -play's 61472 -playa 54727 -playability 63419 -playable 54685 -playback 50213 -playbook 63991 -playboy 52954 -played 40125 -player 39551 -player's 53549 -players 40439 -playful 54479 -playfully 61940 -playgirl 65452 -playground 51909 -playgrounds 58212 -playgroup 65452 -playhouse 62066 -playin 56356 -playing 39246 -playlist 46449 -playlists 49279 -playlistthis 56110 -playmate 61940 -playmates 64657 -playoff 52291 -playoffs 53377 -playroom 63245 -plays 42133 -playstation 55299 -playthrough 63792 -playtime 60952 -playwear 64905 -playwork 64657 -playwright 56756 -playwrights 61818 -plaza 56293 -plazas 63601 -plazh 64905 -plc 48538 -plc's 63077 -ple 55299 -plea 50249 -plead 55793 -pleaded 53361 -pleading 56170 -pleadings 59848 -pleads 52996 -pleas 57122 -pleasant 48629 -pleasantly 54902 -please 33199 -pleased 44853 -pleasepleasepleaseplease 58313 -pleases 59491 -pleasing 52913 -pleasurable 57696 -pleasure 46247 -pleasurep 60952 -pleasures 54946 -pleat 64201 -pleated 57923 -pleating 64657 -pleats 62613 -plebiscite 63077 -pled 58470 -pledge 51202 -pledged 53241 -pledges 55202 -pledging 60952 -plein 63077 -pleiotropic 63601 -plement 63991 -plementary 65452 -plementation 64657 -plemented 63077 -plenary 57084 -plentiful 55992 -plenty 43928 -plenum 60405 -pleomorphic 62917 -ples 57524 -plete 57278 -pleted 61152 -pletely 59560 -plethora 55526 -pleura 59357 -pleural 52233 -plex 58113 -plexes 61362 -plexi 65452 -plexiform 64905 -plexiglass 60000 -plexity 63245 -plextor 65452 -plexus 55631 -plexuses 65452 -pliable 60492 -pliant 64201 -plicable 64657 -plicated 65170 -plication 58919 -plications 60762 -plied 58113 -pliers 59774 -plies 60157 -plight 55474 -plik 64423 -pliku 58979 -pliner 64423 -pling 59357 -plinth 64423 -plished 65170 -plist 63991 -plitude 64423 -pln 61472 -plodding 64905 -ploidy 60952 -plop 64657 -plopped 64657 -plosives 64423 -plot 44098 -plotline 64905 -plots 48736 -plotted 49388 -plotter 61584 -plotting 54114 -plough 63991 -ploughed 63601 -ploughing 63077 -plow 57122 -plowed 61256 -plowing 60321 -plows 63245 -ploy 59560 -ployed 63991 -ployee 64657 -ployment 64657 -pls 52375 -pluck 59630 -plucked 58262 -plucking 61699 -plucky 63601 -plug 45650 -pluggable 65452 -plugged 51406 -plugging 55821 -plugin 47706 -plugins 52778 -plugs 51330 -plum 54857 -plumage 58688 -plumb 62762 -plumbed 64423 -plumber 52832 -plumbers 58523 -plumbing 50848 -plume 55906 -plumes 59923 -plummet 59848 -plummeted 59164 -plummeting 62469 -plummets 64905 -plump 58065 -plumper 63792 -plums 61152 -plunder 61051 -plundered 57741 -plundering 63077 -plunge 52699 -plunged 55934 -plunger 56356 -plunges 57160 -plunging 58212 -plural 54643 -pluralism 60492 -pluralist 64905 -pluralistic 61818 -plurality 45763 -plurals 64657 -pluripotent 64905 -plus 38521 -pluses 63991 -plush 53779 -plusieurs 63077 -pluto 65170 -plutonic 61362 -plutonium 57122 -plutons 65170 -ply 56324 -plying 60952 -plymouth 58212 -plywood 54419 -plz 50662 -plzz 63601 -pm 32991 -pmb 64423 -pmlc 64905 -pmlogger 62917 -pmo 64905 -pmol 56452 -pms 64423 -pn 56935 -pneaveill 64657 -pneumatic 53796 -pneumocandin 65170 -pneumococcal 57160 -pneumococci 65452 -pneumonia 51752 -pneumoniae 52996 -pneumonitis 62196 -pneumophila 59491 -pneumothorax 59164 -png 57923 -pnkfelix 58470 -pnp 62613 -pnw 64201 -po 50670 -poached 60405 -poachers 62613 -poaching 60157 -poate 64905 -pocket 45894 -pocketbook 63419 -pocketbooks 64905 -pocketed 61940 -pocketing 65170 -pockets 48964 -poco 58162 -pocorn 63245 -pod 54601 -podPress 57122 -podcast 49135 -podcasting 58313 -podcasts 51640 -pode 61472 -podem 65452 -poder 60321 -podiatrist 65170 -podiatry 63601 -podium 55738 -podnapisi 56356 -podnova 63077 -podpress 59164 -pods 57440 -poe 64657 -poem 47923 -poems 48323 -poeple 62762 -poesia 65452 -poet 50164 -poet's 58577 -poetic 53361 -poetical 63792 -poetics 62917 -poetry 47702 -poets 53124 -pogo 61584 -pohly 58417 -poi 62066 -poignant 56021 -poignantly 65170 -point 35747 -pointbase 62331 -pointe 61940 -pointed 45479 -pointedly 64201 -pointer 50328 -pointers 54399 -pointes 63419 -pointing 47694 -pointless 54902 -points 37778 -pointwise 64905 -pointy 59292 -pois 64905 -poise 61362 -poised 52435 -poison 51963 -poisoned 56687 -poisoning 51953 -poisonous 56200 -poisons 58688 -poke 55793 -poked 58860 -pokemon 52029 -pokemons 61699 -poker 46986 -pokes 60952 -pokey 64905 -poking 57009 -pol 58365 -pola 64657 -poland 61472 -polar 48781 -polarbear 64905 -polarimeter 64423 -polarimetric 64905 -polaris 62331 -polarisation 57696 -polarised 60952 -polarities 63077 -polarity 52927 -polarizability 57831 -polarization 49470 -polarizations 62331 -polarized 51069 -polarizer 59227 -polarizers 62917 -polarizing 58802 -polarographic 65452 -polaroid 61362 -polaron 64905 -polars 64657 -pole 47596 -poled 62917 -polemic 64905 -polenta 59101 -poles 51444 -police 39909 -policeman 56050 -policemen 57122 -polices 61818 -policewoman 65170 -policies 41487 -policing 54540 -policy 34445 -policy's 65452 -policyProhibited 55934 -policyholder 63601 -policyholders 61362 -policymaker 63419 -policymakers 56791 -policymaking 62917 -policyterms 63601 -polinada 63792 -polio 60238 -poliovirus 60670 -polish 52187 -polished 50234 -polishes 62469 -polishing 53271 -polite 53712 -politely 57831 -politeness 64201 -politic 60952 -politica 63601 -political 39072 -politically 50799 -politician 52765 -politician's 64201 -politicians 48746 -politicized 63792 -politicos 65170 -politics 43979 -politike 64905 -politique 61818 -politiques 63245 -polity 61699 -polka 57831 -poll 45816 -poll's 64657 -polled 57970 -pollen 53010 -pollinating 64201 -pollination 58162 -pollinator 63991 -pollinators 63419 -polling 52268 -pollock 64905 -polls 45997 -pollster 64201 -pollsters 61256 -polltracker 65170 -pollutant 55154 -pollutants 52725 -pollute 61699 -polluted 56899 -polluters 65170 -polluting 58313 -pollution 47116 -polly 64201 -polo 53271 -polska 63601 -polski 54380 -poly 53712 -polyGlu 64657 -polyacrylamide 54264 -polyadenylation 60238 -polyalcohol 64657 -polyamide 60078 -polyamine 61584 -polyamines 64657 -polyamory 60157 -polyaniline 59702 -polyarthritis 63792 -polyatomic 65170 -polybutadiene 65452 -polycarbonate 56652 -polycentricity 65452 -polychlorinated 59357 -polyclonal 51590 -polycondensation 65452 -polycrystalline 56293 -polyculture 64657 -polycyclic 58919 -polycystic 57566 -polydispersity 65170 -polyelectrolyte 58417 -polyelectrolytes 65170 -polyester 50591 -polyesters 63792 -polyether 61818 -polyethylene 51560 -polygamist 64423 -polygamy 61584 -polyglucosan 62331 -polygon 55448 -polygonal 60000 -polygons 59164 -polygraph 57566 -polygrapher 62613 -polyhedra 62762 -polyhedral 63601 -polyhedrin 64905 -polyhedron 63419 -polyhydramnios 65170 -polyhydroxy 64201 -polyimide 61362 -polyline 59491 -polylinker 64201 -polymer 45560 -polymerase 48619 -polymerases 59702 -polymere 64657 -polymeric 51482 -polymerisable 64657 -polymerisation 63991 -polymerization 52198 -polymerize 64905 -polymerized 58632 -polymerizing 64201 -polymers 49713 -polymorphic 54969 -polymorphism 51640 -polymorphisms 53241 -polymorphonuclear 58688 -polymorphs 64657 -polymère 62066 -polyneuropathy 62331 -polynitrile 63077 -polynomial 50469 -polynomially 63601 -polynomials 53796 -polynuclear 62762 -polynucleotide 57696 -polyol 59923 -polyolefin 59774 -polyolefins 62917 -polyols 63419 -polyoma 64423 -polyoxyethylene 63419 -polyp 60000 -polypeptide 51104 -polypeptide's 64423 -polypeptides 54749 -polyphase 63077 -polyphenol 62066 -polyphenolic 63419 -polyphenols 61818 -polyphenylene 65452 -polyphonic 56140 -polyphony 65452 -polyphosphate 64201 -polyphosphates 65170 -polyploid 64905 -polyposis 61818 -polypropylene 54499 -polyprotein 64905 -polyps 56899 -polysaccharide 57358 -polysaccharides 57399 -polysilicon 56935 -polysomnography 63419 -polystyrene 54902 -polysulfone 64905 -polytechnic 63792 -polytetrafluoroethylene 62613 -polythene 62196 -polyunsaturated 58017 -polyurethane 54114 -polyurethanes 64423 -polyvalent 65170 -polyvinyl 58017 -polyvinylidene 60670 -polímero 62762 -política 63792 -pom 61362 -pombe 61152 -pomegranate 59560 -pomegranates 64657 -pomp 62917 -pompous 61152 -pon 62196 -poncho 63601 -pond 51570 -ponder 57199 -pondered 60492 -pondering 58523 -ponderosa 63601 -ponders 60762 -ponding 63792 -ponds 54813 -pone 63601 -ponent 58979 -ponents 58470 -poner 64905 -pong 59424 -ponies 60238 -pons 64201 -pontiac 59292 -pontiff 64657 -pontine 65170 -pontoon 57358 -pony 54560 -ponytail 62469 -poo 57084 -pooch 60238 -poodle 59923 -poodles 64905 -poof 61940 -pooh 59424 -pooja 64201 -pool 42524 -poole 64201 -pooled 52791 -pooling 57199 -pools 49867 -poolside 60078 -pooner 62613 -poop 55398 -pooped 62917 -poopie 61818 -pooping 62613 -poopy 65170 -poor 39047 -poorer 52765 -poorest 54078 -poorly 47911 -pop 44035 -popSiren 62066 -popcorn 52018 -popcurrent 65170 -pope 55448 -pope's 63419 -poplar 57970 -poplars 65452 -poplin 65452 -popliteal 61940 -popoqwerty 63601 -popped 53331 -poppet 64423 -poppies 61940 -poppin 61362 -popping 52584 -poppy 56687 -pops 53010 -popsicle 65452 -popstar 65170 -populace 58919 -popular 37906 -popularLowHigh 61051 -populares 62762 -popularity 46128 -popularization 65452 -popularized 59560 -popularly 59039 -populate 56021 -populated 51473 -populates 62917 -populating 62196 -population 39527 -population's 64423 -populations 45701 -populist 59292 -populous 57970 -popup 50122 -popups 58860 -por 45974 -poral 64201 -porate 65170 -porated 62917 -poration 62917 -porcelain 51899 -porch 52913 -porches 62469 -porcine 53762 -porcupine 64423 -pore 50185 -pores 52648 -poring 63991 -pork 49124 -porn 41177 -pornBB 59560 -pornhub 64201 -pornhud 62331 -porno 48741 -pornographic 56862 -pornography 51825 -pornos 62762 -pornostar 60405 -pornostars 64423 -pornstar 51330 -pornstars 58365 -porntube 64423 -porosity 55014 -porous 51909 -porphyria 63419 -porphyrin 59560 -porphyrins 61256 -porpoise 65452 -porpoises 65452 -porque 58417 -porridge 62066 -porsche 58212 -port 42475 -porta 60492 -portability 56756 -portable 45378 -portage 64905 -portal 38910 -portals 55934 -portance 64201 -portant 57046 -porte 63792 -ported 53124 -portend 64657 -porter 58313 -porters 63419 -portfolio 45002 -portfolios 52447 -porting 57785 -portion 40215 -portional 63419 -portioning 63245 -portions 46133 -portland 55250 -portlet 59101 -portman 63419 -porto 63245 -portokallia 64905 -portrait 49141 -portraits 52832 -portraiture 61940 -portray 54245 -portrayal 55226 -portrayals 62066 -portrayed 52648 -portraying 57831 -portrays 55578 -ports 47170 -portugal 58632 -portugues 63991 -portuguesa 64657 -portuguese 56050 -português 55552 -portunity 64201 -porwr 62331 -pos 55793 -pose 48609 -posed 49113 -poser 61940 -poses 50074 -posh 58065 -posible 62917 -posing 52280 -posit 60856 -posite 63419 -posited 60321 -positing 65452 -position 37578 -positional 56231 -positioned 47041 -positioner 62917 -positioning 48624 -positions 42435 -positive 38778 -positively 44175 -positives 56687 -positivism 65452 -positivist 65170 -positivity 54835 -positron 55849 -positronium 61940 -posits 59702 -posse 60856 -posses 61940 -possess 47815 -possessed 52648 -possesses 51184 -possessing 52940 -possession 47645 -possessions 56140 -possessive 60078 -possessor 63245 -possibilities 47367 -possibility 43076 -possible 36013 -possiblity 65452 -possibly 42760 -possum 63419 -post 32140 -post's 59630 -postClose 62066 -posta 63077 -postage 49119 -postal 48300 -postales 65452 -postback 62613 -postcard 53454 -postcards 55657 -postcesarean 64201 -postcode 47807 -postcodes 62066 -postcolonial 61362 -postconceptional 65452 -postconviction 63245 -postdoc 64657 -postdoctoral 56618 -posted 35712 -poster 43829 -poster's 49828 -posterior 47895 -posteriori 62762 -posteriorly 62331 -posterity 63077 -posterolateral 62613 -posters 47184 -postfix 62066 -postfixed 62917 -postgame 63601 -postgraduate 53301 -postgraduates 63991 -postgres 62469 -postgresql 61362 -posthandgrip 64201 -posthumous 62331 -posthumously 63991 -postinfection 63601 -posting 41768 -postings 48877 -postion 63419 -postischemic 63419 -postive 63601 -postman 61362 -postmark 64423 -postmarked 58688 -postmaster 63419 -postmenopausal 53970 -postmodern 57923 -postmodernism 61256 -postmodernist 65452 -postmortem 57831 -postnatal 53438 -poston 59491 -postoperative 48996 -postoperatively 59630 -postpartum 54835 -postpone 56170 -postponed 54151 -postponement 61940 -postpones 62196 -postponing 62469 -postprandial 61256 -postprocessing 62917 -posts 35123 -postsRulesHelp 64657 -postscript 58860 -postseason 56687 -postsecondary 58860 -poststroke 65452 -postsurgical 62762 -postsynaptic 55738 -posttest 60492 -posttranscriptional 64657 -posttranslational 61584 -posttransplant 62331 -posttransplantation 63245 -posttraumatic 60492 -posttreatment 62066 -postulate 58162 -postulated 54078 -postulates 61051 -postulating 63601 -postural 56862 -posture 52496 -postures 61699 -posturing 62762 -postwar 56420 -posuere 63991 -posure 63245 -pot 47626 -potable 57440 -potash 64423 -potassium 48314 -potato 49173 -potatoe 64657 -potatoes 50718 -potencies 60000 -potency 53485 -potent 48590 -potential 37470 -potentialities 62613 -potentially 44725 -potentials 49505 -potentiate 60492 -potentiated 59630 -potentiates 60952 -potentiating 63245 -potentiation 56231 -potentiometer 61256 -potentiometric 62196 -potently 62331 -potholes 63245 -potion 59424 -potions 58919 -potluck 61818 -potpourri 63245 -pots 52210 -potted 58470 -potter 54857 -pottery 54245 -potting 57318 -potty 55849 -pou 61584 -pouch 52584 -pouches 59424 -poultry 50807 -poumpy 64423 -pounce 60952 -pounced 63991 -pound 48672 -pounded 56551 -pounder 65452 -pounding 55711 -pounds 45054 -pour 45835 -poured 51406 -pouring 52818 -pourra 49417 -pourrait 62613 -pours 59357 -pout 64423 -pouvez 61256 -pouvoir 64201 -pov 62613 -poverty 45931 -pow 63419 -powder 45170 -powdered 53331 -powders 53182 -powdery 58919 -powell 56388 -power 35129 -powerbook 60492 -powerdvd 61818 -powered 40497 -powerful 41362 -powerfull 61584 -powerfully 58162 -powerhouse 55738 -powerhouses 60238 -powering 53934 -powerless 58313 -powerlessness 64905 -powerleveling 58577 -powerline 64423 -powermt 64657 -powerpc 58262 -powerplant 61940 -powerpoint 55226 -powers 45708 -powershot 64201 -powertrain 61256 -pox 61584 -pozdrav 62762 -poze 64423 -pp 47221 -ppb 57923 -ppc 58313 -ppg 65452 -ppl 51330 -pple 61051 -ppm 48084 -ppnow 63601 -ppp 62331 -pppoe 64423 -pps 59491 -ppt 56420 -ppv 64201 -pq 59424 -pqs 65170 -pr 53226 -pra 58212 -practicability 64201 -practicable 57122 -practical 42665 -practicalities 64201 -practicality 59101 -practically 48771 -practicalowl 62917 -practice 39361 -practiced 51229 -practices 42350 -practicing 49834 -practicum 62196 -practise 55906 -practised 57696 -practises 62469 -practising 56756 -practitioner 50718 -practitioner's 61584 -practitioners 48524 -prada 57970 -prado 64657 -praesent 65452 -pragmatic 55684 -pragmatism 62066 -prague 62066 -praia 65170 -prairie 53830 -prairies 62469 -praise 49342 -praised 52622 -praises 55877 -praising 57696 -pram 60078 -prams 65170 -prancing 64423 -prank 55963 -pranks 58688 -pratensis 65170 -pratique 65170 -pratt 64423 -pravachol 61699 -pravastatin 61472 -prawn 60238 -prawns 58688 -pray 48126 -prayed 55154 -prayer 48221 -prayerful 64657 -prayers 51175 -praying 52233 -prays 61256 -praziquantel 65170 -prc 63601 -pre 49190 -preach 56050 -preached 57238 -preacher 56293 -preachers 61584 -preaches 61362 -preaching 53970 -preadipocytes 62613 -preamble 58632 -preambles 64423 -preamp 60000 -preamplifier 62331 -preamps 63245 -preamputation 64201 -prearranged 64201 -prebiotics 65170 -precancerous 62762 -precarious 57653 -precast 60078 -precaution 53729 -precautionary 58523 -precautions 52805 -precede 56899 -preceded 51387 -precedence 55992 -precedent 54005 -precedents 60078 -precedes 56827 -preceding 46843 -preceeding 62762 -precept 65170 -precepts 60492 -precession 61362 -precinct 56791 -precincts 60000 -precio 62196 -precios 63792 -precious 48450 -precipitant 63991 -precipitate 53377 -precipitated 52832 -precipitates 56618 -precipitating 58919 -precipitation 49348 -precipitous 61152 -precipitously 65170 -precise 46506 -precisely 48067 -precision 47255 -preciso 64657 -preclinical 57199 -preclude 53813 -precluded 56756 -precludes 57741 -precluding 60670 -preclusion 62469 -precoated 63245 -precocious 58802 -preconceived 62196 -preconception 62066 -preconceptions 63792 -precondition 60492 -preconditioned 62331 -preconditioning 57399 -preconditions 60762 -preconfigured 63245 -precordial 63245 -precursor 49251 -precursors 52940 -pred 62762 -predate 64905 -predated 65170 -predates 58860 -predation 58113 -predator 53813 -predator's 65452 -predators 54133 -predatory 56110 -predeceased 63792 -predecessor 55060 -predecessors 57524 -predefined 54419 -predestined 64905 -predetermined 48464 -predicament 59630 -predicate 56652 -predicated 57524 -predicates 61256 -predict 46099 -predictability 57970 -predictable 51835 -predictably 59774 -predicted 45224 -predicting 50357 -prediction 46772 -predictions 48605 -predictive 49886 -predictor 52221 -predictors 53038 -predicts 50087 -predilection 62613 -predispose 59491 -predisposed 59424 -predisposes 62917 -predisposing 59039 -predisposition 57923 -predispositions 65452 -prednisolone 61472 -prednisone 54226 -predominance 58523 -predominant 51349 -predominantly 48736 -predominate 60670 -predominated 62469 -predominately 58632 -predominating 63792 -preeclampsia 63792 -preemies 64423 -preeminence 64657 -preeminent 58688 -preempt 62762 -preempted 64905 -preemption 61818 -preemptive 58860 -preety 64657 -preexisting 57566 -prefab 63601 -prefabricated 58802 -preface 55992 -prefect 59774 -prefecture 61940 -prefer 43787 -preferable 52635 -preferably 45283 -prefered 60000 -preference 46766 -preferences 47110 -preferential 53052 -preferentially 54749 -preferrably 65170 -preferred 43053 -preferring 56721 -prefers 52913 -prefetch 62762 -prefetching 62762 -prefilled 65452 -prefix 50006 -prefixed 62066 -prefixes 56721 -preflight 64657 -preform 62469 -preformed 57084 -prefrontal 56687 -prefs 64423 -preg 63601 -pregabalin 64423 -pregame 61699 -preggo 65452 -preglomerular 62469 -pregnancies 55274 -pregnancy 44751 -pregnant 45090 -pregnenolone 59101 -prego 63991 -pregunta 61051 -preheat 61818 -preheated 60157 -preheating 62469 -prehensive 63601 -prehistoric 55877 -prehistory 61584 -prehospital 62469 -preimage 65170 -preimmune 65452 -preimplantation 63077 -preimpregnated 64905 -preincubated 57524 -preincubation 60000 -preinstalled 60856 -prejudice 52268 -prejudiced 59702 -prejudices 59164 -prejudicial 58745 -prekindergarten 65452 -prelabeled 64423 -prelim 65170 -prelimbic 62917 -preliminaries 65170 -preliminarily 63792 -preliminary 45872 -preload 59702 -preloaded 59424 -preloading 65452 -prelude 58017 -premade 64201 -premalignant 62613 -premarin 61051 -premarital 63077 -premature 49423 -prematurely 58017 -prematurity 63077 -premedication 63601 -premeditated 63245 -premenopausal 61584 -premenstrual 60405 -premier 46154 -premiere 49033 -premiered 57566 -premieres 57046 -premiering 58212 -premiers 61818 -premiership 59101 -premio 64905 -premise 51752 -premised 62469 -premises 47855 -premium 38772 -premiums 52339 -premix 60405 -premixed 63991 -première 62469 -premoistened 65452 -premolars 62469 -premorbid 63245 -prenatal 53109 -prenatally 62917 -prenuptial 64905 -preoccupation 59774 -preoccupied 57831 -preoperative 52584 -preoperatively 60492 -preoptic 62331 -preorder 59357 -preordered 64905 -preovulatory 63419 -preowned 64201 -prep 52521 -prepackaged 63792 -prepaid 52141 -preparation 42860 -preparations 48736 -preparative 57084 -preparatory 54992 -prepare 43642 -prepared 40304 -preparedness 54706 -preparer 64905 -preparers 62196 -prepares 50292 -preparing 45590 -prepay 60580 -prepayment 58113 -prepayments 64657 -prepolymer 61362 -preponderance 56518 -preposition 62469 -preposterous 62331 -prepped 62066 -prepping 60321 -preppy 64201 -prepreg 61472 -prepregs 64423 -prepress 64657 -preprint 56827 -preprinted 64905 -preprocessed 65170 -preprocessing 59357 -preprocessor 63419 -preproduction 64905 -preprogrammed 64423 -preps 61472 -prepubertal 63077 -prepulse 61584 -prequel 60670 -prerecorded 63601 -prerelease 64657 -prerequisite 52968 -prerequisites 57084 -prerogative 62762 -prerogatives 65170 -pres 59424 -presacral 61584 -presale 63419 -presario 59292 -presaturated 63991 -presbyterian 64905 -preschool 51835 -preschooler 62469 -preschoolers 59164 -preschools 63792 -prescient 63601 -prescreened 62917 -prescreening 65452 -prescribe 53038 -prescribed 46628 -prescriber 62917 -prescribes 59560 -prescribing 53501 -prescription 42719 -prescriptions 52648 -prescriptive 61152 -preseason 55107 -preselected 60405 -presence 38753 -presences 65452 -present 35280 -presenta 63077 -presentable 64201 -presentation 42471 -presentational 65170 -presentations 47507 -presente 64201 -presented 38768 -presenter 54188 -presenters 55107 -presenting 46793 -presently 49291 -presentment 61051 -presents 42483 -preservation 49103 -preservative 59101 -preservatives 58860 -preserve 47342 -preserved 49319 -preserves 53407 -preservice 64905 -preserving 49939 -preset 53597 -presets 57696 -presheva 64905 -preshrunk 63601 -preside 58162 -presided 57084 -presidency 53517 -president 41384 -president's 54902 -presidente 65170 -presidential 44038 -presidents 53241 -presides 60000 -presiding 56293 -presley 59848 -prespecified 64201 -presque 65170 -press 39938 -presse 60670 -pressed 48801 -presses 54499 -pressing 47943 -pressings 64905 -pression 55849 -pressions 65452 -pressor 57482 -pressure 38329 -pressurePressure 64657 -pressured 56324 -pressures 47611 -pressuring 61818 -pressurised 62331 -pressurization 62917 -pressurize 63419 -pressurized 54479 -prestige 54992 -prestigious 48866 -presto 61256 -preston 62469 -prestressed 64657 -presumably 49739 -presume 54727 -presumed 51550 -presumes 60952 -presuming 62917 -presumption 54969 -presumptive 56388 -presumptively 65452 -presuppose 63792 -presupposes 60580 -presynaptic 56551 -pret 63077 -pretation 64423 -pretax 63245 -preted 64423 -preteen 53597 -preteens 60157 -pretence 64423 -pretend 51104 -pretended 58577 -pretender 64423 -pretenders 64905 -pretending 54380 -pretends 59227 -pretense 60952 -pretenses 64657 -pretensions 63991 -pretentious 59164 -preterit 65170 -preterm 54207 -pretest 57876 -pretext 60000 -pretransplant 65170 -pretreated 55934 -pretreating 64905 -pretreatment 52648 -pretrial 59702 -prettier 60580 -prettiest 58212 -pretty 38556 -prettykatie 65452 -pretzel 63077 -pretzels 62066 -prev 48300 -prevacid 60492 -prevail 55226 -prevailed 56652 -prevailing 51078 -prevails 58262 -prevalence 46979 -prevalences 62469 -prevalent 50848 -prevent 39476 -preventable 57160 -preventative 55552 -prevented 48701 -preventing 46537 -prevention 44617 -preventive 51000 -prevents 48067 -preview 44148 -previewed 60405 -previewing 62613 -previews 52778 -previous 36485 -previously 39961 -prevnext 51349 -prevodi 65170 -prevzatí 59923 -prewar 63077 -prey 50615 -prez 62613 -prezzo 64905 -pri 61256 -priapism 58919 -priate 58919 -price 35929 -priced 47660 -priceless 56388 -pricelist 64657 -prices 37084 -pricey 55500 -pricier 63601 -priciest 65452 -pricing 43288 -prick 57741 -pricking 65452 -prickly 61699 -pricy 63792 -pride 47262 -prided 65452 -prides 56721 -priest 51257 -priest's 65170 -priestess 63245 -priesthood 62469 -priestly 64657 -priests 53813 -prilosec 60321 -prim 64201 -prima 54835 -primacy 59292 -primal 55398 -primaries 55906 -primarily 42901 -primary 38663 -primase 61256 -primate 57440 -primates 57482 -primavera 64201 -prime 45356 -primed 54835 -primer 48208 -primera 59774 -primero 63077 -primers 49382 -primes 61256 -primetime 58979 -primeval 61584 -primey 64201 -priming 54879 -primis 65170 -primitive 50848 -primitives 60078 -primo 62469 -primordia 61051 -primordial 57358 -primrose 64201 -prin 61362 -prince 51867 -princely 62762 -princes 58632 -princess 50206 -princesses 62066 -princesssasha 61362 -princeton 64905 -principal 43768 -principal's 61818 -principale 63601 -principales 64657 -principalities 64657 -principality 64201 -principally 52351 -principals 53533 -principaux 65170 -principe 63991 -principle 45313 -principled 59357 -principles 43930 -print 39005 -printable 47290 -printables 64423 -printed 43193 -printer 44846 -printer's 62331 -printers 49446 -printf 61818 -printfa 64657 -printhead 59039 -printheads 60000 -printing 43672 -printmaking 63077 -printout 59227 -printouts 62613 -prints 46660 -prion 56935 -prions 62917 -prior 38035 -priori 54479 -priorities 48178 -prioritisation 63991 -prioritise 58802 -prioritised 61152 -prioritising 63245 -prioritization 59848 -prioritize 57238 -prioritized 59227 -prioritizes 63245 -prioritizing 60856 -priority 44023 -priory 65452 -pris 61472 -prise 61256 -prised 63792 -priser 63601 -prises 64201 -prising 62917 -prism 55373 -prismatic 60000 -prisms 60580 -prison 45510 -prisoner 52765 -prisoner's 62762 -prisoners 50499 -prisons 55448 -pristine 53779 -privacidad 62917 -privacy 39635 -privat 62613 -private 34939 -privately 48477 -privates 63991 -privatisation 58632 -privatise 65452 -privatised 63792 -privatization 56756 -privatize 62613 -privatized 60157 -privatizing 64423 -privilege 50923 -privileged 52661 -privileges 51069 -privity 65452 -privy 59774 -prix 52387 -priya 62196 -prize 46321 -prized 56021 -prizes 48093 -pro 43285 -pro's 61699 -proach 58365 -proaches 61051 -proactive 51867 -proactively 57009 -proapoptotic 64905 -prob 55250 -probabilistic 53286 -probabilities 51157 -probability 43933 -probable 49529 -probably 37797 -probally 65452 -probaly 63077 -proband 60492 -probands 64423 -probate 54321 -probation 52018 -probationary 58313 -probative 62331 -probe 45362 -probed 54519 -probenecid 62762 -probes 49663 -probing 53762 -probiotic 60670 -probiotics 61472 -probit 64657 -problem 35867 -problem's 64905 -problema 61940 -problematic 51942 -problemen 64905 -problems 36437 -probly 62331 -probs 60078 -probucol 60952 -proc 57970 -procaine 62762 -procedural 52315 -procedure 41200 -procedures 41675 -proceed 46775 -proceeded 51463 -proceeding 49893 -proceedings 47356 -proceeds 47438 -proces 65170 -process 35238 -processed 45010 -processes 40976 -processing 40060 -procession 56687 -processions 63991 -processor 45756 -processor's 65170 -processors 49758 -processus 65452 -proclaim 56862 -proclaimed 54622 -proclaiming 59101 -proclaims 59491 -proclamation 57358 -proclamations 63077 -proclivity 65170 -procoagulant 62917 -procollagen 61256 -procrastinate 63991 -procrastinating 64905 -procrastination 61051 -procs 64201 -proctor 65452 -procul 65170 -procure 56518 -procured 57009 -procurement 50306 -procurements 65170 -procuring 58212 -procyclical 64905 -procédé 49435 -prod 59630 -prodded 63245 -prodding 63991 -prodigal 63991 -prodigious 60762 -prodigy 59702 -prodromal 63792 -prodrug 62613 -prodrugs 61699 -produc 65452 -produce 39955 -produced 39322 -producer 46055 -producer's 62196 -producers 47381 -produces 44919 -producing 43898 -product 34118 -product's 46887 -productId 63419 -producti 64905 -production 37662 -productions 51825 -productive 47919 -productively 61699 -productivity 46266 -productos 60157 -products 34548 -produit 59702 -produits 58688 -produkter 63991 -produktu 63419 -prof 58688 -profane 60405 -profanity 55014 -profesional 61256 -profess 60000 -professed 60078 -professes 64657 -professing 64423 -profession 49758 -professional 37849 -professional's 62469 -professionali 63419 -professionalism 53517 -professionally 50185 -professionals 42748 -professionel 63419 -professions 53813 -professor 45877 -professor's 64905 -professors 52375 -professorship 63601 -proffer 62917 -proffered 60580 -proficiency 52187 -proficient 53346 -profiel 65452 -profil 61584 -profile 35573 -profilecard 63601 -profiled 57358 -profiler 61051 -profiles 43153 -profilin 60670 -profiling 53662 -profit 44408 -profitability 51783 -profitable 49854 -profitably 59774 -profited 60405 -profiting 61699 -profits 47034 -proforma 63601 -profound 49751 -profoundly 54969 -profuse 61699 -profusely 62066 -profusion 61584 -prog 57876 -progdvb 64423 -progenitor 54770 -progenitors 58802 -progeny 56050 -progesterone 52484 -progestin 59164 -progestins 65452 -progetto 65170 -prognoses 65452 -prognosis 51284 -prognostic 51953 -program 35519 -program's 54207 -programa 57785 -programas 62196 -programatically 64657 -programe 65170 -programing 62613 -programm 62196 -programmable 51463 -programmatic 57831 -programmatically 60762 -programme 43251 -programme's 61818 -programmed 49952 -programmer 52622 -programmer's 65452 -programmers 54114 -programmes 46529 -programming 43094 -programms 65452 -programs 38659 -progress 42390 -progressed 53196 -progresses 56356 -progressing 53988 -progression 47943 -progressions 62762 -progressive 46526 -progressively 51349 -progressives 63245 -prohibit 50019 -prohibited 46032 -prohibiting 55014 -prohibition 53865 -prohibitions 59227 -prohibitive 60670 -prohibitively 60580 -prohibits 52472 -proinflammatory 56170 -proinsulin 63077 -project 36437 -project's 53407 -projected 47691 -projectile 56021 -projectiles 63419 -projecting 52996 -projection 48278 -projections 50178 -projective 56899 -projector 51521 -projectors 55552 -projectreport 58470 -projects 39464 -projekt 64905 -projet 61256 -projets 60492 -prokaryotes 64423 -prokaryotic 58745 -prolactin 56827 -prolapse 59491 -prolate 64905 -proliant 62469 -proliferate 59039 -proliferated 62331 -proliferating 57696 -proliferation 46953 -proliferative 55202 -prolific 54560 -proline 58017 -prolly 57653 -prologue 64657 -prolong 56110 -prolongation 58979 -prolonged 48247 -prolonging 59491 -prolongs 61362 -prom 53301 -promenade 60856 -promethazine 65452 -prominence 55934 -prominent 46663 -prominently 54151 -prominin 60670 -promiscuous 60856 -promise 45145 -promised 48234 -promises 48234 -promising 47745 -promissory 58802 -promo 50424 -promod 64657 -promontory 65452 -promos 59227 -promote 41852 -promoted 47947 -promoter 47574 -promoters 53346 -promotes 47851 -promoting 45222 -promotion 45283 -promotional 47123 -promotions 48038 -prompt 48440 -prompted 49353 -prompting 54727 -promptly 49739 -prompts 53565 -promulgate 61940 -promulgated 55963 -promulgation 63601 -promutagenic 64905 -promyelocytic 63991 -pron 60492 -pronation 65452 -prone 50033 -prong 61152 -prongs 61940 -pronoun 60000 -pronounce 56080 -pronounced 48716 -pronouncement 61818 -pronouncements 62196 -pronounces 64657 -pronouncing 61940 -pronouns 58523 -pronto 56231 -pronunciation 53830 -pronunciations 65170 -proof 43860 -proofing 58417 -proofread 62469 -proofreading 62613 -proofs 53952 -prop 54226 -propaganda 53533 -propagate 54685 -propagated 55578 -propagates 58065 -propagating 54792 -propagation 48386 -propagative 65452 -propagator 60492 -propagators 61940 -propane 53182 -prope 60238 -propecia 52818 -propel 56721 -propellant 60238 -propellants 64201 -propelled 55657 -propeller 54226 -propellers 60405 -propelling 61472 -propels 61699 -propensities 63245 -propensity 54727 -proper 41406 -properly 43422 -properties 38690 -property 33789 -property's 57524 -propertypanorama 63601 -prophage 63419 -prophase 65170 -prophecies 60580 -prophecy 57278 -prophesied 64657 -prophesies 64905 -prophesy 62762 -prophet 55711 -prophetic 58470 -prophets 57741 -prophylactic 55107 -prophylactically 64201 -prophylaxis 55202 -propia 63245 -propidium 59560 -propiedad 61940 -propionate 58523 -propionic 63077 -propmaker 63991 -propofol 57970 -propolis 59774 -proponent 58113 -proponents 55202 -proportion 44832 -proportional 48126 -proportionality 59164 -proportionally 58212 -proportionate 57876 -proportionately 59848 -proportioned 59424 -proportions 51284 -propos 58979 -proposal 44348 -proposals 46301 -propose 46356 -proposed 38920 -proposer 65170 -proposes 49394 -proposing 52805 -proposition 51550 -propositional 60405 -propositions 55130 -propped 61472 -propping 63601 -propranolol 59164 -propre 59702 -propria 62331 -propriate 60952 -proprietary 47649 -proprietor 57696 -proprietors 59923 -propriety 59702 -proprio 64201 -proprioceptive 64905 -propriété 63077 -props 53830 -propulsion 55014 -propyl 61584 -propylene 55711 -prorated 61362 -pros 51211 -prosaic 65452 -proscar 63601 -proscenium 64201 -prosciutto 62469 -proscribed 62196 -prose 54499 -prosecute 55963 -prosecuted 55423 -prosecuting 57609 -prosecution 51140 -prosecution's 63077 -prosecutions 58979 -prosecutor 52899 -prosecutor's 59702 -prosecutorial 61584 -prosecutors 52927 -proshow 65170 -prosodic 60000 -prosody 63419 -prospect 49802 -prospect's 65170 -prospecting 55578 -prospective 46154 -prospectively 56262 -prospectivity 64905 -prospects 48697 -prospectus 55448 -prospectuses 65170 -prosper 58365 -prospered 61584 -prosperity 52913 -prosperous 55274 -prostacyclin 60856 -prostaglandin 54341 -prostaglandins 57923 -prostanoid 62196 -prostanoids 63245 -prostate 47399 -prostatectomy 59164 -prostates 62917 -prostatic 53613 -prostheses 58688 -prosthesis 54879 -prosthetic 55037 -prosthetics 62762 -prosthodontic 63245 -prostitute 57524 -prostituted 65452 -prostitutes 55578 -prostitution 55202 -prostrate 60321 -prot 62762 -prota 61584 -protagonist 56827 -protagonists 60580 -protamine 62331 -protease 51846 -proteases 56652 -proteasome 60952 -protect 41041 -protected 41775 -protecting 46821 -protection 39733 -protectionism 62917 -protectionist 65452 -protections 54643 -protective 45576 -protectively 65170 -protector 53301 -protectorate 63792 -protectors 57318 -protects 48491 -protege 64657 -protein 38413 -protein's 64201 -proteinaceous 63245 -proteinase 56050 -proteinases 61699 -proteinosis 62066 -proteins 42091 -proteinuria 57970 -proteoglycan 61051 -proteoglycans 62196 -proteolysis 59101 -proteolytic 54622 -proteolytically 65452 -proteome 61152 -proteomic 61152 -proteomics 61256 -protest 47702 -protestant 65170 -protestations 63991 -protested 57482 -protester 62469 -protesters 53182 -protesting 56080 -protestors 59848 -protests 52051 -proteus 65452 -prothrombin 58065 -protien 65452 -proto 63792 -protocol 44734 -protocols 48063 -proton 50461 -protonated 58365 -protonation 57084 -protonix 65170 -protons 52818 -protoplast 63419 -protoplasts 59491 -protoporphyrin 62917 -prototype 49157 -prototypes 56293 -prototypic 63601 -prototypical 59774 -prototyping 57831 -protozoa 63077 -protozoal 65170 -protozoan 61152 -protracted 57009 -protrude 59630 -protruded 62613 -protrudes 61256 -protruding 56388 -protrusion 59292 -protrusions 58688 -protuberance 64905 -protégé 65170 -proud 43645 -proudest 63077 -proudly 48491 -prove 43435 -proved 44475 -provement 62917 -proven 44785 -provenance 60670 -proventriculus 64905 -prover 63245 -proverb 59039 -proverbial 57696 -proverbs 61699 -proves 49190 -provide 33748 -provided 33564 -providence 59774 -provider 42413 -provider's 56687 -providers 43995 -provides 36101 -providing 38324 -provigil 64657 -province 48454 -province's 59923 -provinces 52051 -provincial 50013 -proving 50171 -proviral 65170 -provirus 62196 -proviruses 62762 -provisdom 63077 -provision 43830 -provisional 53407 -provisionally 61584 -provisioned 65452 -provisioning 56935 -provisions 43927 -proviso 60492 -provisos 65452 -provocateur 65452 -provocation 60580 -provocative 54245 -provocatively 63792 -provoke 56050 -provoked 55877 -provokes 60238 -provoking 55711 -provolone 62762 -provoquer 64423 -provost 62762 -prowess 58113 -prowl 63419 -prowling 65170 -prox 64905 -proxies 55711 -proximal 47919 -proximally 60670 -proximate 56293 -proximately 58632 -proximation 64423 -proximities 64423 -proximity 48519 -proxy 47679 -proyecto 64201 -prozac 51888 -prudence 60952 -prudent 53695 -prudential 61362 -prudently 64905 -prune 57653 -pruned 60492 -prunes 63419 -pruning 55849 -pruritus 63991 -prvi 62469 -pry 59101 -prying 60762 -przez 62196 -práce 64657 -près 60952 -préalable 49435 -préparations 63601 -próximo 65452 -ps 50568 -psCache 62066 -psCacheHeader 60952 -psPageHeader 58688 -psa 57876 -psalms 64905 -psc 65170 -psd 62066 -psec 63245 -pseudo 57358 -pseudoaneurysm 62762 -pseudodielectric 64905 -pseudoephedrine 64657 -pseudomallei 65170 -pseudomembranous 64657 -pseudomorph 63991 -pseudonym 61472 -pseudophakic 62196 -pseudopotential 63601 -pseudopregnancy 64905 -pseudopregnant 64657 -pseudorandom 60405 -psf 61699 -psi 52648 -psig 60492 -psiloc 63419 -psittaci 62613 -psoas 65170 -psoriasis 54706 -psoriatic 58688 -psoriatics 64423 -psp 47235 -pst 60762 -psu 62196 -psx 62331 -psy 61152 -psych 57653 -psychanalyse 63245 -psyche 59357 -psyched 62613 -psychedelic 56721 -psychiatric 48595 -psychiatrist 56021 -psychiatrists 58262 -psychiatry 55178 -psychic 52832 -psychical 63077 -psychics 62196 -psycho 59424 -psychoactive 62917 -psychoanalysis 58262 -psychoanalyst 64657 -psychoanalytic 55711 -psychodynamic 62469 -psychogenic 64201 -psychological 46751 -psychologically 58365 -psychologist 54023 -psychologists 56110 -psychology 48706 -psychometric 58577 -psychomotor 59702 -psychopathic 63792 -psychopathology 60762 -psychopaths 65170 -psychopharmacology 65170 -psychophysical 60670 -psychophysiological 64201 -psychoses 65170 -psychosis 58919 -psychosocial 54439 -psychosomatic 63077 -psychotherapeutic 62762 -psychotherapist 62762 -psychotherapists 64423 -psychotherapy 55766 -psychotic 55526 -psychotropic 60856 -psytrance 64905 -pt 51434 -pteridine 63601 -pterygoid 65452 -pth 65452 -pthc 59923 -pti 64657 -ptr 61256 -pts 50774 -pty 64657 -pu 59164 -pub 48332 -pubertal 63077 -puberty 54879 -puberulous 63792 -pubescens 65452 -pubescent 58860 -pubic 56899 -pubis 63601 -public 33874 -public's 54245 -publically 60952 -publication 41324 -publication's 62196 -publications 42533 -publicise 63792 -publicised 61940 -publicist 59292 -publicity 49770 -publicize 59424 -publicized 58365 -publicizing 62469 -publicly 46401 -publics 63077 -publikuara 64905 -publique 62331 -publish 45606 -published 37659 -publisher 45477 -publisher's 54207 -publishers 49476 -publishes 51166 -publishing 45972 -pubs 51387 -puch 65452 -puck 55992 -puckered 63792 -pudding 54519 -puddings 63077 -puddle 59774 -puddles 62917 -pudenda 60238 -pudendum 59848 -pueblo 60321 -pueda 65170 -puede 56652 -pueden 60405 -puedes 61940 -puedo 59560 -puerperal 61362 -puerto 57524 -pues 62469 -puesta 65452 -puff 54969 -puffed 61152 -puffing 62196 -puffle 63601 -puffs 60762 -puffy 58577 -pug 60000 -pugley 63991 -pugs 65170 -puis 65452 -puke 61362 -puking 64201 -pul 59848 -pull 44051 -pullback 62613 -pulldown 60321 -pulled 45404 -puller 60856 -pullers 62613 -pulley 56756 -pulleys 62613 -pulling 47478 -pullorum 61152 -pullout 59101 -pullover 59560 -pulls 50227 -pulmonale 64657 -pulmonar 63245 -pulmonary 45162 -pulmonic 63792 -pulp 50263 -pulping 60580 -pulpit 59357 -pulposus 64201 -pulsar 58745 -pulsars 60321 -pulsatile 58979 -pulsating 57084 -pulsation 62331 -pulsations 65170 -pulse 44766 -pulsed 52435 -pulser 62196 -pulses 48928 -pulsing 59424 -pulverized 61152 -pulvinar 62469 -pum 58313 -puma 56080 -pumilum 64905 -pump 42886 -pumped 51793 -pumping 50646 -pumpkin 49726 -pumpkins 56551 -pumpmaster 63245 -pumps 49707 -pun 57009 -punch 49279 -punched 55250 -punches 56452 -punching 54924 -punchy 64423 -punctate 62066 -punctual 60856 -punctuality 63991 -punctuate 65170 -punctuated 59101 -punctuation 56585 -puncture 55107 -punctured 59101 -punctures 63077 -puncturing 63077 -pundit 60856 -pundits 56485 -pune 62469 -pungent 60762 -punish 54226 -punishable 57318 -punished 54664 -punishes 62066 -punishing 58470 -punishment 50553 -punishments 59424 -punitive 53695 -punjab 62331 -punjabi 59923 -punk 49676 -punks 61940 -puns 64201 -punt 57609 -puntata 64905 -punter 61051 -punters 60670 -punto 60856 -punts 64905 -puntuación 52484 -puny 61152 -punyu 65452 -puoi 64201 -pup 55766 -pupae 63077 -pupal 63419 -pupil 51899 -pupil's 64423 -pupillary 61256 -pupils 47634 -puppet 54023 -puppetry 63792 -puppets 56791 -puppies 50974 -puppy 48135 -puppy's 63792 -pups 54519 -pur 60952 -pura 65170 -purchase 38318 -purchased 42259 -purchaser 53952 -purchaser's 63991 -purchasers 54622 -purchases 45172 -purchasing 42693 -pure 43326 -purebred 61051 -puree 59357 -pureed 62196 -purely 48721 -purer 62469 -purest 58860 -purge 40889 -purged 58632 -purges 65170 -purging 59227 -purification 50164 -purified 46242 -purifier 59101 -purifiers 64423 -purifies 63991 -purify 57482 -purifying 57199 -purine 57482 -purinergic 63077 -purines 62331 -purist 62917 -purists 63991 -puritans 64201 -purities 63601 -purity 51017 -puro 63077 -puromycin 63245 -purple 48118 -purpletwinkie 59702 -purplish 64657 -purport 59702 -purported 56293 -purportedly 59702 -purporting 62917 -purports 60492 -purpose 39941 -purposeful 58417 -purposefully 59848 -purposely 56756 -purposes 41047 -purposive 63991 -purpura 60405 -purpurea 61699 -purring 65452 -purse 52399 -purses 55906 -purslane 64423 -pursuance 60580 -pursuant 45243 -pursue 47417 -pursued 51931 -pursues 57653 -pursuing 49867 -pursuit 50314 -pursuits 57440 -purulent 62762 -purveyor 63792 -purveyors 61584 -purview 59164 -purée 65452 -pus 59164 -push 44356 -pushbutton 63245 -pushchair 63601 -pushchairs 62762 -pushed 47574 -pusher 63601 -pushes 52210 -pushing 48042 -pushpinderbagga 65170 -pushy 62469 -pusilla 65452 -puss 60856 -pussies 58262 -pussy 45439 -pussycat 58417 -pussys 63792 -pustular 64201 -pustules 64657 -put 35474 -putAllInFolder 64423 -puta 61699 -putamen 60580 -putas 62762 -putational 64905 -putative 50469 -putatively 63245 -pute 65170 -puted 63991 -puter 58802 -puternice 63419 -putida 58162 -puting 62917 -putnam 64657 -puto 63601 -putrid 63991 -puts 45147 -putt 57399 -putter 58417 -putters 62917 -puttin 62196 -putting 43252 -putts 62762 -putty 60762 -puyol 64423 -puzzle 49229 -puzzled 56170 -puzzler 65452 -puzzles 52818 -puzzling 56721 -pv 62066 -pvc 56293 -pve 63245 -pvp 55604 -pvr 63792 -pvsyst 61584 -pvt 62613 -pw 56080 -pwc 63601 -pwede 63077 -pwn 60952 -pwnage 64657 -pwnd 62762 -pwned 60952 -pwning 65170 -pwns 63601 -pwr 60405 -px 56791 -py 61940 -pyaar 64201 -pycnidia 64905 -pyelonephritis 64201 -pygmy 62613 -pyle 64905 -pylon 64423 -pylori 50974 -pyloric 63991 -pyoderma 64657 -pyogenes 60492 -pyrG 60762 -pyramid 53454 -pyramidal 54969 -pyramids 58262 -pyran 64905 -pyrantel 61152 -pyrazinamide 62762 -pyrene 65452 -pyrex 64657 -pyridine 57160 -pyridinium 62762 -pyridoxal 61818 -pyridoxine 61940 -pyrimidine 56652 -pyrimidines 65452 -pyrite 58262 -pyro 64905 -pyrochlore 65452 -pyroclastic 64905 -pyrolysis 57741 -pyrolytic 64201 -pyrophosphate 59560 -pyrotechnic 61362 -pyrotechnics 64423 -pyroxene 63601 -pyrrhotite 65452 -pyrrole 62613 -pyruvate 54813 -pyruvic 64423 -python 53865 -pz 58162 -página 54321 -páginas 64423 -pánske 58262 -på 52085 -période 65170 -pública 63991 -q 42338 -qPCR 64423 -qT 65452 -qa 61472 -qb 65170 -qbXML 65452 -qc 61362 -qd 62196 -qe 57970 -qf 64905 -qfnZtypeQUqfnTypeZCommunityContentQ 64423 -qfnZtypeQUqfnTypeZWebpageQ 64423 -qi 57696 -ql 63601 -qlee 64201 -qmail 64905 -qn 64423 -qo 62762 -qr 62613 -qs 64423 -qt 59848 -qtr 64423 -qtrxist 65170 -qty 58017 -qu 63245 -qu'il 61362 -qu'on 62917 -qu'une 63245 -qua 59292 -quack 60952 -quad 53501 -quadrangle 60762 -quadrant 56293 -quadrants 61699 -quadrasid 65452 -quadratic 51920 -quadratically 63991 -quadrats 64657 -quadrature 59774 -quadriceps 61940 -quadrilateral 59702 -quadriplegic 62066 -quadruple 59560 -quadrupled 63245 -quadruplicate 64657 -quadrupolar 65452 -quadrupole 56618 -quads 59630 -quadtree 59923 -quae 64423 -quagmire 64905 -quai 64423 -quail 59357 -quaint 55526 -quake 55474 -quaker 65170 -quakes 63419 -qual 63077 -qualification 49251 -qualifications 48949 -qualified 43490 -qualifier 56420 -qualifiers 60405 -qualifies 52152 -qualify 47367 -qualifying 49777 -qualitative 48413 -qualitatively 54499 -qualities 48431 -quality 35227 -qualityclipz 65452 -qualité 63245 -qualms 62196 -quam 60000 -quan 63601 -quand 61472 -quandary 63419 -quando 61584 -quant 63991 -quanta 61256 -quantal 57609 -quantifiable 59848 -quantification 52872 -quantified 51521 -quantifies 62196 -quantify 51482 -quantifying 57358 -quantile 64423 -quantitate 61940 -quantitated 57609 -quantitation 56324 -quantitative 46220 -quantitatively 54380 -quantities 47050 -quantity 45114 -quantization 54023 -quantize 64657 -quantized 57785 -quantizer 60078 -quantizing 63245 -quantum 45704 -quarantine 55423 -quarantined 61940 -quark 53454 -quarks 58688 -quarrel 59491 -quarrels 62196 -quarried 64905 -quarries 62613 -quarry 56756 -quarrying 63077 -quart 57278 -quarter 43621 -quarter's 64657 -quarterback 51284 -quarterbacks 60238 -quartered 62331 -quarterfinal 63991 -quarterfinals 61940 -quarterly 48706 -quarters 50607 -quartet 54643 -quartets 63245 -quartile 58632 -quartiles 64201 -quarto 64657 -quarts 60000 -quartz 50568 -quartzite 65170 -quasar 62196 -quasars 62469 -quash 62196 -quashed 65170 -quasi 58745 -quasilinear 63792 -quasiparticle 63077 -quate 62762 -quaternary 55821 -quatre 63419 -quattro 60762 -quay 63245 -que 41971 -quebec 60856 -queda 62196 -quedo 65170 -queef 61051 -queefing 64905 -queen 48399 -queen's 61818 -queens 54059 -queensland 63419 -queer 54924 -queers 63245 -quel 63792 -quell 60492 -quelle 64905 -quelling 65452 -quelque 49371 -quelques 62066 -quem 62066 -quence 57524 -quences 58262 -quench 57785 -quenched 54992 -quencher 62917 -quenching 52954 -quencies 62469 -quency 56140 -quent 59702 -quently 57653 -quercetin 64201 -queried 58979 -queries 46526 -quero 64905 -query 45037 -querying 58577 -quest 47548 -questa 61699 -quested 65452 -questing 65452 -question 36470 -question's 65170 -questionable 52913 -questionaire 64905 -questioned 49458 -questioner 63245 -questioning 51377 -questionnaire 48701 -questionnaires 53423 -questions 36251 -questo 59491 -quests 55448 -queue 50292 -queued 58802 -queueing 60157 -queues 56585 -queuing 57318 -qui 51095 -quia 62066 -quibble 61818 -quiche 63601 -quick 40312 -quickbooks 61699 -quicken 62469 -quicker 51752 -quickest 55130 -quickie 58212 -quickies 65170 -quicklinks 65452 -quickly 40947 -quickness 60492 -quicksilver 64657 -quickstart 65170 -quicktime 57785 -quid 58212 -quien 59848 -quienes 63792 -quiere 60157 -quieren 64423 -quieres 63077 -quiero 57160 -quiescence 65170 -quiescent 56551 -quiet 45413 -quieted 64657 -quieter 55821 -quietest 63245 -quietly 51340 -quietness 64905 -quill 63077 -quilt 53407 -quilted 57160 -quilter's 65452 -quilting 58365 -quilts 57524 -quince 65452 -quincy 64905 -quinine 61152 -quinn 61818 -quinoa 63991 -quinoline 65452 -quinolone 62917 -quinolones 60078 -quinone 61152 -quinpirole 64201 -quintessential 57876 -quintessentially 64423 -quintet 60000 -quintile 63245 -quintuplets 65452 -quip 65170 -quire 63245 -quired 57084 -quirement 64423 -quirements 61472 -quires 61699 -quirk 63245 -quirks 60405 -quirky 54902 -quiron 61584 -quis 60492 -quit 47592 -quite 38235 -quits 54245 -quitting 55274 -quiver 59491 -quivering 62613 -quiz 48496 -quizes 64657 -quizzed 58802 -quizzers 61472 -quizzes 52597 -quo 54341 -quod 59357 -quoi 63245 -quorum 55877 -quota 54264 -quotas 57696 -quotation 50026 -quotations 53211 -quote 39877 -quoteHide 65170 -quoted 45909 -quotes 43510 -quotient 55657 -quotients 64657 -quoting 52913 -quran 61818 -qué 60580 -química 64657 -qwerty 63419 -qwrt 64423 -r 38877 -rCBF 63245 -rDNA 56388 -rFactor 57524 -rH 59357 -rRNA 54188 -rSCF 65452 -rT 65452 -rTP 59923 -rVPAC 61818 -ra 54283 -raat 63077 -rabbi 57970 -rabbinic 64905 -rabbinical 61472 -rabbis 60952 -rabbit 46960 -rabbits 50454 -rabble 64657 -rabelowe 64905 -rabid 59491 -rabies 56899 -rable 63792 -rac 63419 -raccoon 62613 -race 41555 -racecar 65170 -racecourse 63419 -raced 55398 -racemes 63991 -racemic 60952 -racemosa 64905 -racer 55107 -racers 56618 -races 48363 -racetrack 63077 -raceway 62917 -rach 64423 -rachael 63077 -rachel 55526 -racial 48706 -racially 56972 -racine 59039 -racing 45450 -racism 52339 -racist 51052 -racists 61699 -rack 47566 -racked 57970 -racket 57122 -racketeering 61818 -rackets 63601 -racking 57923 -rackmount 61699 -racks 52584 -raconteurs 60157 -racquet 57399 -racquetball 63792 -racquets 63419 -racy 59848 -rad 57160 -radar 47675 -radars 61472 -radcliffe 64657 -radeon 64905 -radial 48605 -radially 55299 -radian 63991 -radiance 58632 -radians 62469 -radiant 54023 -radiata 62613 -radiate 58860 -radiated 57524 -radiates 60762 -radiating 56618 -radiation 44041 -radiations 62331 -radiative 54005 -radiator 52363 -radiators 58979 -radical 46204 -radicalism 62917 -radically 53241 -radicals 52118 -radicular 63792 -radii 55934 -radio 40373 -radio's 61699 -radioactive 51630 -radioactively 64423 -radioactivity 53095 -radiocarbon 62917 -radiochemical 64201 -radioed 64905 -radiofrequency 58688 -radiograph 56827 -radiographers 64905 -radiographic 53501 -radiographically 61818 -radiographs 55323 -radiography 57566 -radiohead 63245 -radioimmunoassay 57696 -radioiodine 64905 -radioisotope 63991 -radiolabeled 57278 -radiolabelled 62196 -radioligand 62613 -radiologic 59357 -radiological 54727 -radiologist 58523 -radiologists 61256 -radiology 56021 -radiolucent 62066 -radiometer 62196 -radiometric 61362 -radionuclide 58417 -radionuclides 60952 -radiopaque 64905 -radios 53899 -radiotherapy 53865 -radish 61472 -radium 59101 -radius 47050 -radix 59164 -radon 55084 -rae 61152 -raed 61818 -raf 65170 -rafaelmonmtilla 63792 -rafal 65452 -raffle 55906 -raffles 63601 -raft 57399 -rafter 60856 -rafters 60321 -rafting 58162 -rafts 60762 -rag 56262 -raga 64423 -ragazza 64201 -ragdoll 62762 -rage 51580 -raged 60952 -rages 60405 -ragga 64905 -ragged 60321 -raging 55578 -raglan 64423 -ragnarok 58523 -rags 60321 -ragtime 63601 -ragweed 63792 -rah 63601 -raha 63245 -raheem 64201 -rahi 62469 -rahul 64201 -rai 57970 -raid 50553 -raided 57741 -raider 57084 -raiders 59292 -raiding 58577 -raids 55154 -rail 46634 -railcar 65452 -railcars 64423 -railed 63601 -railing 57524 -railings 59491 -railroad 50416 -railroading 65452 -railroads 58523 -rails 52175 -railway 47807 -railways 57876 -rain 44507 -rainbow 50865 -rainbows 60238 -raindrops 64657 -rained 57440 -rainfall 50848 -rainforest 55500 -rainforests 61472 -raining 56652 -rains 53662 -rainstorm 64905 -rainwater 58745 -rainy 53301 -raise 42666 -raised 42004 -raiser 62762 -raises 47493 -raisin 58523 -raising 45517 -raisins 59101 -raison 60856 -raisonné 65452 -raj 60580 -raja 61818 -rajshri 62762 -rake 56170 -raked 61818 -rakes 60238 -raking 60157 -ral 58113 -raleigh 60952 -rallied 57009 -rallies 54479 -rally 47725 -rallye 62331 -rallying 59164 -ralph 56972 -ralphch 65452 -ram 50694 -rama 65452 -ramadan 63792 -ramble 61584 -rambled 63077 -rambles 64905 -rambling 58212 -ramblings 57696 -rambo 61940 -ramen 58632 -ramet 64905 -rameter 64423 -rameters 60405 -ramets 60670 -rami 65452 -ramification 65452 -ramifications 56652 -ramipril 63245 -ramirez 62917 -rammed 56756 -ramming 62917 -rammstein 64905 -ramon 65170 -ramorum 63245 -ramos 65452 -ramp 50848 -rampage 58979 -rampaging 60952 -rampant 55711 -ramparts 64201 -ramped 61256 -ramping 61472 -ramps 55348 -rams 59164 -ramshackle 63245 -ramus 62917 -ran 43714 -ranasinghe 62066 -ranch 51330 -rancher 61584 -ranchers 62066 -ranches 62613 -ranching 63245 -rancho 64657 -rancid 64201 -rand 59039 -randall 63991 -random 41733 -randomisation 64905 -randomised 53331 -randomization 57653 -randomize 65170 -randomized 48226 -randomly 47353 -randomness 56756 -randy 58632 -rang 54946 -range 35928 -ranged 47984 -rangeland 62917 -ranger 55934 -rangers 56899 -ranges 46781 -rangi 61940 -ranging 44725 -rani 63792 -ranibizumab 60762 -ranitidine 57278 -rank 45624 -ranked 46675 -ranking 48161 -rankings 50150 -ranks 48131 -ranma 59227 -ransacked 64905 -ransom 59227 -rant 54096 -ranting 59039 -rantings 65452 -rants 57199 -ranula 63601 -ranulas 64423 -rao 60580 -rap 48731 -rapa 64657 -rapamycin 60670 -rape 49044 -raped 54078 -rapes 60321 -rapeseed 64905 -raphe 62917 -raphy 60321 -rapid 43305 -rapide 65170 -rapidhare 65452 -rapidity 59848 -rapidly 43967 -rapids 58860 -rapidshare 48944 -rapier 65170 -raping 58065 -rapist 60492 -rapists 63601 -rapped 62469 -rapper 53934 -rappers 56756 -rapping 61362 -rapport 56791 -rapprochement 65452 -raps 59848 -rapt 64201 -raptor 61256 -raptors 63991 -rapture 62196 -rar 49411 -rare 43392 -rarefied 63419 -rarely 45904 -rarer 60157 -rarest 59491 -raring 63419 -rarities 63792 -rarity 58162 -rary 65452 -ras 58632 -rasa 61256 -rasan 53196 -rascal 60078 -rascals 65452 -rash 51202 -rashes 58470 -rasmus 64905 -raspberries 61051 -raspberry 55992 -raspy 63792 -raster 56200 -rat 43124 -rat's 61256 -rata 56293 -ratatouille 64905 -ratchet 57318 -ratcheting 60580 -rate 34775 -rated 41187 -rately 64905 -ratepayers 63991 -rater 61699 -raters 59292 -raterus 64657 -rates 37977 -rather 37548 -ratification 56293 -ratified 56170 -ratifies 63991 -ratify 58262 -ratifying 63419 -rating 38695 -ratings 38656 -ratingsby 55657 -ratingsparents 54023 -ratingsrecommendationsmessage 63601 -ratio 40685 -ration 54188 -rational 49163 -rationale 51131 -rationales 62917 -rationalisation 65452 -rationalise 64657 -rationalism 64905 -rationalist 65452 -rationality 59164 -rationalization 60157 -rationalize 61256 -rationalized 60762 -rationally 59774 -rationed 63077 -rationing 62196 -rations 59227 -ratios 46334 -ratory 62917 -rats 43435 -rattan 60762 -rattle 57358 -rattled 59774 -rattler 65452 -rattles 60952 -rattling 60157 -raucous 60952 -raul 61584 -raunchy 60670 -ravage 62762 -ravaged 59702 -ravages 60762 -rave 53813 -raved 62613 -raven 58017 -ravenna 64657 -ravenous 63601 -raver 64201 -raves 56231 -ravi 63792 -ravine 65170 -ravines 64905 -raving 57923 -ravioli 61584 -ravishing 62066 -raw 44062 -rawhide 62762 -rawlings 63245 -rawsugar 65452 -ray 48633 -raya 60952 -raymond 59560 -rayon 61256 -rays 50476 -raz 62762 -razah 64905 -razed 63077 -razor 54245 -razors 60492 -razorz 63077 -razr 59848 -razzie 63792 -rb 59848 -rbd 62917 -rbot 63991 -rbrambley 65170 -rc 51131 -rca 62762 -rceveda 65170 -rcp 62196 -rcpt 64905 -rd 48309 -rdf 64657 -rds 63991 -re 46663 -rea 61051 -reabsorbed 63077 -reabsorption 58113 -reach 40674 -reachability 64201 -reachable 57970 -reacharound 65452 -reached 41933 -reaches 46628 -reaching 45892 -react 49054 -reactance 62331 -reactant 59227 -reactants 58017 -reacted 51804 -reacties 61818 -reacting 52210 -reaction 40190 -reactionary 60762 -reactions 44351 -reactivate 60157 -reactivated 61940 -reactivation 58577 -reactive 48600 -reactivities 63077 -reactivity 51312 -reactor 49135 -reactors 54946 -reacts 52584 -read 34181 -readability 57970 -readable 52280 -reader 43066 -reader's 57609 -readers 43318 -readership 58523 -readied 64657 -readies 59357 -readily 46032 -readin 63601 -readiness 52913 -reading 38699 -readings 49906 -readjust 63601 -readjusted 65170 -readjustment 65452 -readline 65170 -readme 60952 -readmission 64423 -readmitted 64201 -readonly 65452 -readout 56935 -reads 47622 -ready 39178 -readying 60580 -reaffirm 61256 -reaffirmed 58262 -reaffirming 65452 -reaffirms 60405 -reagent 51017 -reagents 51814 -real 34554 -realestate 57122 -reali 64423 -realign 63601 -realigned 64905 -realigning 65452 -realignment 61051 -realisation 57009 -realise 50129 -realised 50983 -realises 60000 -realising 57122 -realism 54664 -realist 59848 -realistic 46912 -realistically 56200 -realities 53646 -reality 44249 -realitzades 63419 -realizable 62762 -realization 51026 -realizations 60492 -realize 44051 -realized 45309 -realizes 53196 -realizing 52423 -reall 63245 -reallly 64201 -reallocate 65170 -reallocated 65170 -reallocation 62196 -really 33713 -realm 50823 -realmente 63077 -realms 56170 -realplayer 62469 -realtime 57831 -realtone 63419 -realtor 56080 -realtors 58212 -realty 55849 -realy 54992 -realyyy 64905 -ream 64423 -reams 64657 -reanalysis 62917 -reap 54170 -reaped 61940 -reaper 61818 -reaping 61362 -reappear 61940 -reappearance 61818 -reappeared 62613 -reappears 63245 -reapplied 64905 -reapply 60670 -reappoint 62331 -reappointed 62613 -reappraisal 61699 -reaps 61472 -rear 42775 -reared 55474 -rearing 56791 -rearrange 57970 -rearranged 57741 -rearrangement 55037 -rearrangements 58162 -rearranges 65170 -rearranging 60580 -rears 61472 -rearview 61584 -rearward 59292 -rearwardly 61051 -reason 39104 -reasonable 42445 -reasonableness 60952 -reasonably 46646 -reasoned 55657 -reasoning 50026 -reasons 38742 -reassemble 63419 -reassembled 63077 -reassess 60405 -reassessed 63792 -reassessment 60321 -reassign 63077 -reassigned 61818 -reassignment 62066 -reassurance 58577 -reassure 57278 -reassured 58417 -reassures 64657 -reassuring 57653 -reauthorization 62331 -reaver 63077 -rebalance 64905 -rebalancing 62066 -rebar 59491 -rebate 50832 -rebates 54749 -rebecca 58417 -rebel 52233 -rebelde 65170 -rebelled 62331 -rebellion 55793 -rebellious 58470 -rebels 53847 -rebinding 65170 -rebirth 58860 -reblog 62613 -reboot 52509 -rebooted 59227 -rebooting 59491 -reboots 60762 -reborn 56388 -rebound 53361 -rebounded 60157 -rebounder 64905 -rebounding 60078 -rebounds 54302 -reboxetine 65452 -rebrand 63601 -rebranded 63077 -rebroadcast 65452 -rebuffed 63077 -rebuffs 65452 -rebuild 49828 -rebuilding 53286 -rebuilds 62762 -rebuilt 53081 -rebuke 62469 -rebuked 63991 -rebukes 64905 -rebut 61818 -rebuttal 57653 -rec 54727 -rec'd 65170 -recA 65452 -recMPO 65170 -recalcitrant 62066 -recalculate 63077 -recalculated 61584 -recalculation 62762 -recalibration 65452 -recall 46040 -recalled 50285 -recalling 55821 -recalls 51069 -recanalization 64201 -recap 55014 -recaps 59357 -recapture 58065 -recaptured 63601 -recast 60321 -reccomend 59101 -reccommend 63601 -receded 65452 -recedes 64657 -receding 61584 -receipe 64905 -receipes 64657 -receipt 45853 -receipts 52096 -receivable 58802 -receivables 60000 -receive 37106 -received 37214 -receiver 45576 -receiver's 62613 -receivers 51996 -receivership 63792 -receives 45230 -receiving 41544 -recency 64657 -recent 36300 -recente 62762 -recently 36641 -recenzií 60952 -recep 64423 -receptacle 54419 -receptacles 58577 -reception 46643 -receptionist 52954 -receptions 58262 -receptive 54519 -receptivity 62613 -receptor 42687 -receptors 45694 -recertification 60762 -recertified 62469 -recertifyServer 63601 -recertifyUser 63601 -recess 52484 -recessed 54664 -recesses 56518 -recession 48716 -recessionary 63991 -recessions 62469 -recessive 56080 -rechargable 64905 -recharge 54479 -rechargeable 54946 -recharged 61051 -recharges 62066 -recharging 60492 -recheck 64905 -rechecked 64905 -recherche 55299 -recherches 62613 -recht 65170 -recidivism 63077 -reciente 63601 -recientes 63991 -reciept 64657 -recieve 54792 -recieved 54792 -reciever 61472 -recieves 64905 -recieving 61152 -recipe 44185 -recipes 43845 -recipient 47349 -recipient's 57278 -recipients 48586 -recipients's 64201 -recipies 62762 -reciprocable 64905 -reciprocal 51942 -reciprocally 63792 -reciprocate 62066 -reciprocating 57199 -reciprocity 59774 -recirculated 62917 -recirculating 60078 -recirculation 57876 -recital 56791 -recitals 61362 -recitation 58745 -recite 58523 -recited 53271 -recites 63245 -reciting 59039 -recived 63991 -reckless 55793 -recklessly 60580 -recklessness 63601 -reckon 54664 -reckoned 58262 -reckoning 58802 -reckons 61362 -reclaim 56021 -reclaimed 55154 -reclaiming 60856 -reclaims 64657 -reclamation 57831 -reclassification 61152 -reclassified 61152 -reclassify 64657 -recline 63601 -recliner 58688 -recliners 65452 -reclining 58470 -recluse 63792 -reclusive 62917 -recoding 63991 -recognisable 59630 -recognise 50314 -recognised 48487 -recognises 54727 -recognising 57278 -recognition 43369 -recognitions 64201 -recognizable 54399 -recognizance 64657 -recognize 44479 -recognized 43084 -recognizer 60157 -recognizers 65452 -recognizes 49405 -recognizing 50966 -recoil 54622 -recollect 63792 -recollection 58162 -recollections 60000 -recolonisation 65170 -recom 64201 -recombinant 47787 -recombinants 61051 -recombinase 65170 -recombination 51043 -recombinations 64201 -recombine 64201 -recombined 63245 -recomend 58470 -recomended 62196 -recommeded 63419 -recommend 40687 -recommendable 61940 -recommendation 46508 -recommendations 42769 -recommended 40815 -recommender 64201 -recommending 50686 -recommends 48186 -recompile 61152 -recompiled 65170 -recompiling 62917 -recon 62196 -reconcile 55423 -reconciled 58262 -reconciles 64657 -reconciliation 53392 -reconciling 60492 -reconditioned 61362 -reconditioning 63601 -recone 65452 -reconfigurable 58162 -reconfiguration 56756 -reconfigure 59702 -reconfigured 59560 -reconfiguring 62331 -reconfirm 62762 -reconfirmed 63991 -reconnaissance 55552 -reconnect 55821 -reconnected 62917 -reconnecting 63991 -reconnection 60762 -reconsider 55578 -reconsideration 56972 -reconsidered 62196 -reconsidering 63601 -reconstitute 61472 -reconstituted 56110 -reconstitution 57923 -reconstruct 54499 -reconstructed 52268 -reconstructing 58162 -reconstruction 48399 -reconstructions 58313 -reconstructive 56452 -reconstructs 62331 -reconvene 64201 -reconvened 62613 -record 37910 -record's 64905 -recordable 59848 -recordar 65452 -recorded 41078 -recorder 50365 -recorders 56420 -recording 42349 -recordings 48084 -recordist 65452 -recordkeeping 62331 -records 39607 -recordset 65170 -recount 55711 -recounted 58212 -recounting 60321 -recounts 58577 -recoup 59227 -recourse 55604 -recover 46401 -recoverable 58745 -recovered 47360 -recoveries 56791 -recovering 50686 -recovers 56585 -recovery 42427 -recreate 55202 -recreated 58113 -recreates 62469 -recreating 60000 -recreation 48811 -recreational 48454 -recreations 64905 -recruit 48872 -recruited 49939 -recruiter 56862 -recruiter's 64201 -recruiters 54341 -recruiting 47863 -recruitment 46412 -recruits 54005 -recrystallisation 61940 -recrystallization 58212 -recrystallized 59702 -recs 51511 -rect 60952 -rectal 52074 -rectangle 55711 -rectangles 58577 -rectangular 49796 -rected 61940 -rectification 59630 -rectified 58313 -rectifier 56652 -rectify 56972 -rectifying 59774 -rectilinear 60952 -rection 63792 -rectly 60762 -rectoanal 65170 -rector 57653 -rectory 63601 -rectum 56827 -rectus 62066 -recuerdo 64657 -recumbent 60670 -recuperate 63792 -recuperation 63419 -recur 59491 -recurred 64201 -recurrence 49873 -recurrences 57566 -recurrent 49097 -recurring 51814 -recurs 64201 -recursion 58979 -recursive 52872 -recursively 60078 -recurso 63792 -recursos 65170 -recused 63792 -recyclable 58065 -recyclables 61362 -recycle 51406 -recycled 49097 -recycler 64423 -recyclers 64201 -recycles 60157 -recycling 46699 -red 39240 -redOrbit 58523 -redacted 63601 -redaction 64423 -redband 63991 -redbull 59923 -reddening 61362 -redder 63245 -reddish 57923 -reddit 44579 -reddy 65452 -redecorated 64423 -redeem 51700 -redeemable 60492 -redeemed 55963 -redeeming 58919 -redefine 57318 -redefined 57238 -redefines 60856 -redefining 57696 -redefinition 61699 -redemption 52609 -redemptions 63077 -redemptive 64423 -redeployment 64905 -redesign 51610 -redesigned 53377 -redesigning 60952 -redesigns 63245 -redevelop 62613 -redeveloped 62613 -redeveloping 63419 -redevelopment 53533 -redfish 63792 -redhat 59101 -redhead 54245 -redheads 61256 -redherring 56791 -redial 64657 -rediculous 63991 -rediff 64657 -redirect 40763 -redirected 54601 -redirecting 59424 -redirection 58979 -redirector 64201 -redirects 54727 -rediscover 60000 -rediscovered 59702 -rediscovering 63792 -rediscovery 64657 -redissemination 57046 -redissolved 62469 -redistributable 62613 -redistribute 52118 -redistributed 54207 -redistributing 61699 -redistribution 52584 -redistricting 59039 -redken 62066 -redline 62469 -redneck 58470 -rednecks 61940 -redness 57046 -redo 56721 -redoing 61472 -redone 60321 -redouble 65170 -redox 54302 -redraw 59774 -redrawn 63245 -redress 58577 -reds 56050 -redshift 56050 -redshifts 59292 -redshirt 65452 -redtube 63792 -reduce 39622 -reduced 40190 -reducer 63245 -reducers 64423 -reduces 45122 -reducible 62762 -reducing 43509 -reductase 52496 -reductases 64201 -reduction 40938 -reductionist 64905 -reductions 49657 -reductive 58745 -redundancies 61472 -redundancy 53010 -redundant 51492 -redwing 63792 -redwings 65452 -redwood 60580 -ree 63792 -reebok 64905 -reece 62469 -reed 54835 -reeds 60405 -reef 53470 -reefer 64423 -reefers 63077 -reefs 57122 -reek 65452 -reeks 63601 -reel 50726 -reelection 61256 -reeled 63419 -reeling 58162 -reels 55226 -reenactment 63419 -reengineering 62917 -reenlistment 64657 -reenter 64423 -reentrant 64657 -reese 63077 -reestablish 62066 -reestablished 64423 -reevaluate 61940 -reevaluated 64201 -reevaluation 64657 -reeves 62469 -reexamination 65170 -reexamine 63245 -reexamined 63991 -ref 53316 -refactored 63419 -refactoring 59292 -refdoc 49440 -refed 61256 -refeeding 63991 -refer 43044 -referable 64657 -refered 60580 -referee 53010 -referee's 64905 -refereed 57122 -referees 54245 -reference 38440 -referenced 49500 -references 42904 -referencia 65452 -referencias 59848 -referencing 55684 -referenda 65170 -referendum 53361 -referendums 64201 -referent 61940 -referential 63245 -referents 65170 -referer 65170 -refering 59491 -referral 48413 -referrals 51078 -referred 42350 -referrer 61152 -referrers 60000 -referring 47559 -refers 45264 -refill 54459 -refillable 63991 -refilled 61256 -refilling 59630 -refills 59630 -refinance 53182 -refinanced 63245 -refinances 63419 -refinancing 54924 -refine 50206 -refined 49505 -refinement 51349 -refinements 57785 -refiner 64905 -refineries 57566 -refiners 65452 -refinery 55060 -refines 63601 -refining 53882 -refinish 63245 -refinished 62196 -refinishing 59630 -refit 63419 -refitted 63419 -reflash 63419 -reflect 41864 -reflectance 54992 -reflected 45967 -reflecting 48152 -reflection 47607 -reflections 50898 -reflective 51229 -reflectivity 55992 -reflector 54151 -reflectors 58417 -reflects 45739 -reflex 52164 -reflexes 57238 -reflexive 59039 -reflexivity 65452 -reflexology 65452 -reflexus 65170 -reflow 59292 -reflux 50662 -refluxed 59039 -refluxing 61472 -refocus 63245 -refocused 65170 -refocusing 64657 -refolded 65170 -reforestation 62196 -reform 46304 -reformat 58162 -reformation 60580 -reformatted 62762 -reformatting 62331 -reformed 57524 -reformer 61818 -reformers 60000 -reforming 57046 -reforms 49979 -reformulated 62331 -reformulation 63601 -refracted 63601 -refraction 56324 -refractive 51660 -refractor 63991 -refractories 61472 -refractoriness 63245 -refractory 52291 -refrain 53038 -refrained 61362 -refraining 62762 -refrains 65452 -refresh 49553 -refreshed 55766 -refresher 57160 -refreshes 59702 -refreshing 51541 -refreshingly 60952 -refreshment 59774 -refreshments 56972 -refried 62762 -refrigerant 53646 -refrigerants 64201 -refrigerate 60580 -refrigerated 56293 -refrigerating 62469 -refrigeration 53988 -refrigerator 51700 -refrigerators 57524 -refs 59357 -refuel 64657 -refueling 59101 -refuge 52622 -refugee 52858 -refugees 51670 -refuges 59491 -refund 47194 -refundable 57399 -refunded 56110 -refunding 63077 -refunds 53331 -refurb 63792 -refurbish 62066 -refurbished 51752 -refurbishing 61362 -refurbishment 56324 -refusal 51415 -refusals 64423 -refuse 47314 -refused 46827 -refuses 51140 -refusing 52085 -refutation 63792 -refute 58632 -refuted 61699 -refutes 61818 -refuting 64905 -refx 65452 -reg 54992 -regain 51846 -regained 56652 -regaining 59923 -regains 61818 -regal 59923 -regalo 61818 -regard 43985 -regarded 46537 -regarding 38883 -regardless 44940 -regards 47645 -regatta 58802 -regattas 64201 -regedit 62331 -regen 62469 -regency 63601 -regenerants 64201 -regenerate 56324 -regenerated 57358 -regenerates 64657 -regenerating 57609 -regeneration 49952 -regenerative 56170 -regent 62066 -regents 63077 -reget 64657 -regex 59848 -regexp 62331 -regexps 62613 -reggae 54792 -reggaeton 62196 -reggie 60856 -reggiseno 64905 -regia 63245 -regime 48468 -regime's 63991 -regimen 52484 -regimens 55107 -regiment 58313 -regimental 63419 -regiments 61818 -regimes 52886 -regina 60762 -region 38860 -region's 52187 -regional 41489 -regionalism 62917 -regionally 58212 -regionals 64423 -regione 65452 -regions 42314 -register 38512 -registered 37053 -registering 50350 -registers 50957 -registrant 56551 -registrant's 64201 -registrants 58523 -registrar 51783 -registrar's 64657 -registrars 59923 -registration 40741 -registrations 52609 -registred 63991 -registries 58212 -registro 62066 -registry 47570 -regress 60762 -regressed 60157 -regressing 63245 -regression 46094 -regressions 58802 -regressive 60492 -regret 49488 -regrets 55934 -regrettable 63245 -regrettably 63991 -regretted 59039 -regretting 61472 -regroup 62613 -regrowth 60856 -regs 64657 -regular 39731 -regularities 61472 -regularity 56791 -regularization 59227 -regularized 64657 -regularly 44878 -regulars 57482 -regulate 48341 -regulated 46989 -regulates 51157 -regulating 50101 -regulation 43967 -regulations 44030 -regulator 50087 -regulators 50848 -regulatory 44329 -regulon 64905 -regurgitant 64201 -regurgitation 57653 -rehab 53081 -rehabilitate 58212 -rehabilitated 60670 -rehabilitating 62762 -rehabilitation 48063 -rehabilitative 61584 -rehash 63601 -rehearing 59848 -rehearsal 54302 -rehearsals 58919 -rehearse 60492 -rehearsed 62469 -rehearsing 60670 -reheat 60078 -reheated 64201 -reheating 64657 -rehoming 64657 -rehydrated 61940 -rehydration 63077 -rei 61699 -reid 60157 -reign 52673 -reigned 59560 -reigning 57970 -reigns 58212 -reiki 63245 -reimbursable 60670 -reimburse 55107 -reimbursed 55793 -reimbursement 51184 -reimbursements 60952 -reimburses 64657 -rein 58017 -reincarnated 63991 -reincarnation 60321 -reindeer 58860 -reine 64657 -reinfection 63792 -reinforce 51752 -reinforced 49758 -reinforcement 52118 -reinforcements 60492 -reinforces 55906 -reinforcing 52584 -reinhardtii 65170 -reinitialize 65452 -reins 59560 -reinserted 64423 -reinstall 53517 -reinstalled 58262 -reinstalling 57741 -reinstate 58212 -reinstated 58065 -reinstatement 57358 -reinstating 64423 -reinsurance 56899 -reinsurers 65452 -reintegration 62469 -reinterpretation 64657 -reinterpreted 65452 -reintroduce 62613 -reintroduced 62331 -reintroducing 64201 -reintroduction 61818 -reinvent 57653 -reinvented 61152 -reinventing 60580 -reinvention 62762 -reinvents 64905 -reinvest 63601 -reinvested 61256 -reinvestment 61699 -reinvigorate 63991 -reinvigorated 64201 -reiserfs 63601 -reissue 58212 -reissued 60321 -reissues 64657 -reiterate 59101 -reiterated 55657 -reiterates 60580 -reiterating 63601 -reiting 63991 -reiusu 64423 -rej 61472 -reject 49006 -rejected 47548 -rejecting 54059 -rejection 49207 -rejections 63991 -rejects 52584 -rejoice 58523 -rejoiced 63419 -rejoices 61256 -rejoicing 63419 -rejoin 60238 -rejoinder 64423 -rejoined 60157 -rejoining 61818 -rejoins 63792 -rejuvenate 59630 -rejuvenated 61051 -rejuvenating 62066 -rejuvenation 59774 -rekindle 64201 -rekindled 63792 -reklam 65452 -reklama 64201 -rel 61584 -relacionadas 64905 -relacionados 62196 -relación 64201 -relapse 53081 -relapsed 59774 -relapses 61256 -relapsing 61584 -relate 46517 -related 35026 -relatedmember 59848 -relatedmemberplaylists 62331 -relatedness 59774 -relates 45519 -relating 43023 -relation 41790 -relational 52387 -relations 43432 -relationship 38919 -relationships 42517 -relative 39695 -relatively 41095 -relatives 49146 -relativism 63601 -relativistic 55348 -relativity 57696 -relator 63991 -relaunch 60000 -relaunched 61051 -relax 48562 -relaxant 62613 -relaxation 47388 -relaxations 61256 -relaxed 49257 -relaxer 65170 -relaxes 57876 -relaxin 55684 -relaxing 49464 -relay 49234 -relayed 58523 -relayforlife 62762 -relaying 58745 -relays 55448 -releasable 62196 -releasably 59702 -release 38183 -released 39950 -releases 42779 -releasing 49146 -relegated 57278 -relegation 59848 -relented 64657 -relentless 54924 -relentlessly 59101 -relevance 46288 -relevancy 58162 -relevant 39590 -relevent 60405 -reli 61818 -reliabilities 65170 -reliability 45468 -reliable 43481 -reliably 52635 -reliance 49382 -reliant 57278 -relic 60000 -relics 58802 -relied 50006 -relief 44540 -reliefs 63419 -relies 49429 -relieve 49726 -relieved 52648 -reliever 59101 -relievers 62762 -relieves 57609 -relieving 56356 -relight 65452 -religion 45870 -religions 53301 -religiosity 63991 -religious 43512 -religiously 59848 -religous 64905 -religulous 62196 -relinquish 59292 -relinquished 59357 -relinquishes 65170 -relinquishing 63601 -relish 56935 -relished 64201 -relishes 63077 -relishing 64423 -relist 63991 -relisted 64905 -relists 63245 -relive 58632 -reliving 64657 -relly 63991 -reload 52622 -reloaded 60492 -reloading 57318 -reloads 64201 -relocate 54114 -relocated 53066 -relocating 55684 -relocation 50881 -relocations 62917 -reluctance 55552 -reluctant 51690 -reluctantly 57009 -rely 45814 -relying 50469 -rem 58365 -remade 61818 -remain 40950 -remainder 48042 -remainders 65452 -remained 44010 -remaining 42255 -remains 40341 -remake 52559 -remakes 62469 -remaking 63601 -remand 55766 -remanded 56140 -remanence 62917 -remanent 60952 -remanufactured 61940 -remanufacturing 65452 -remap 64423 -remapping 64905 -remark 53167 -remarkable 47143 -remarkably 51069 -remarked 55226 -remarking 62762 -remarks 49044 -remarried 60492 -remastered 58919 -rematch 61051 -remax 63991 -rember 65452 -remeber 60238 -remedial 55154 -remediate 62613 -remediating 65170 -remediation 53882 -remedied 60157 -remedies 51387 -remedy 50249 -remedying 64905 -remember 39651 -remembered 48877 -remembering 52175 -remembers 52198 -remembrance 57741 -remeron 61818 -remind 48390 -reminded 48877 -reminder 45787 -reminders 53882 -reminding 54560 -reminds 49325 -remington 62762 -reminisce 62469 -reminiscence 64905 -reminiscences 64423 -reminiscent 52534 -reminiscing 63792 -remiss 61699 -remission 53646 -remissions 63245 -remit 56262 -remittance 57609 -remittances 57923 -remitted 59774 -remitting 63792 -remix 49913 -remixed 59292 -remixes 57653 -remixing 63792 -remnant 56791 -remnants 54902 -remodel 58017 -remodeled 56324 -remodeling 51312 -remodelled 65452 -remodelling 61051 -remodels 65452 -remolding 65452 -remorse 59923 -remortgage 61472 -remortgages 64201 -remote 41790 -remotely 51482 -remoteness 64423 -remotes 60157 -remoting 64201 -removable 50402 -removably 61472 -removal 42942 -removalist 63991 -removals 58688 -remove 39155 -removeACLEntry 62469 -removeAll 63991 -removeAllFromFolder 64201 -removeServerFromCluster 63991 -removeable 64201 -removed 39022 -remover 54643 -removers 65170 -removes 49919 -removing 45448 -remunerated 64905 -remuneration 55877 -remy 65452 -ren 61940 -renaissance 56356 -renal 44238 -rename 52521 -renameGroup 63991 -renameNotesUser 63991 -renameRole 62917 -renameWebUser 63991 -renamed 51680 -renames 63245 -renaming 57785 -renault 60405 -rence 61818 -rencontre 64423 -rend 65170 -render 48996 -rendered 48716 -renderer 58979 -rendering 49566 -renderings 60405 -renders 53454 -rendezvous 59630 -rendition 55526 -renditions 59424 -rene 62331 -renee 62066 -renegade 62066 -renegotiate 61940 -renegotiation 62613 -renew 50686 -renewable 49201 -renewables 56756 -renewal 49590 -renewals 60238 -renewed 49764 -renewing 58017 -renews 60321 -renga 63991 -renin 55906 -renner 58745 -rennet 63419 -rennin 63792 -reno 61584 -renormalization 58802 -renormalized 60405 -renounce 60856 -renounced 62469 -renova 60952 -renovascular 65170 -renovate 58162 -renovated 52351 -renovating 59630 -renovation 51166 -renovations 54664 -renown 58262 -renowned 48836 -rent 42447 -rental 43198 -rentals 47456 -rented 51531 -renter 60157 -renters 56262 -renting 52399 -rently 60580 -rents 53454 -renumbered 63419 -renunciation 64657 -renwal 64201 -renzo 65452 -reo 63991 -reopen 55060 -reopened 56356 -reopening 58313 -reopens 59424 -reoperation 61818 -reorder 61362 -reordering 62469 -reorganisation 60670 -reorganization 54685 -reorganize 60157 -reorganized 59491 -reorganizing 63991 -reorient 64657 -reorientation 59774 -reoxygenation 62917 -rep 50807 -repackage 65452 -repackaged 63601 -repackaging 62066 -repaid 53052 -repaint 61152 -repainted 64905 -repainting 63245 -repair 42065 -repairable 64905 -repaired 51008 -repairer 65452 -repairers 63077 -repairing 53256 -repairs 48169 -reparation 63419 -reparations 62066 -reparative 65452 -repatriated 65170 -repatriation 60405 -repay 54226 -repaying 61940 -repayment 53517 -repayments 58262 -repeal 55107 -repealed 57566 -repealing 62331 -repeat 45636 -repeatability 59357 -repeatable 58745 -repeated 44958 -repeatedly 48450 -repeater 56518 -repeaters 61152 -repeating 51140 -repeats 51463 -repel 59101 -repellant 64657 -repelled 62469 -repellent 61362 -repellents 63991 -repelling 64657 -repels 63991 -repens 59702 -repent 61256 -repentance 61256 -repented 63792 -repercussions 57923 -reperfusion 53847 -repertoire 53423 -repertory 60856 -repetition 52363 -repetitions 59101 -repetitious 63077 -repetitive 50750 -repetitively 63601 -rephrase 65452 -rephrasing 53779 -replace 42672 -replaceable 58212 -replaced 43408 -replacement 43174 -replacements 54133 -replaces 50949 -replacing 47453 -replanting 62469 -replay 53241 -replayed 62917 -replays 60856 -replenish 58523 -replenished 61940 -replenishing 63419 -replenishment 60492 -replete 58577 -replica 50568 -replicable 63245 -replicas 57278 -replicase 65452 -replicate 51122 -replicated 54078 -replicates 54969 -replicating 56756 -replication 48309 -replications 61256 -replicative 62196 -replicon 64423 -replicons 65452 -replied 49411 -replies 41302 -reply 37933 -replying 55552 -replys 64905 -repo 57831 -repolarization 61940 -reponse 65452 -report 35072 -report's 60670 -reportable 58802 -reportage 62331 -reported 37516 -reportedly 49834 -reporter 47064 -reporter's 59848 -reporters 48872 -reporting 42019 -reports 38571 -reportviewer 61584 -repos 61362 -repose 63077 -reposition 60952 -repositioned 61472 -repositioning 60321 -repositories 56652 -repository 47060 -repossessed 63601 -repossession 63077 -repossessions 60492 -repost 57084 -reposted 62762 -reppin 63601 -reprehensible 65170 -represent 41013 -representable 63245 -representation 43922 -representational 58919 -representations 48135 -representative 43327 -representative's 65452 -representatives 45432 -represented 42828 -representing 44569 -represents 41534 -repress 61256 -repressed 56935 -represses 62196 -repressing 63077 -repression 53630 -repressive 59560 -repressor 56827 -repressors 64905 -reprieve 60952 -reprimand 62331 -reprimanded 62331 -reprint 51113 -reprinted 54096 -reprinting 63991 -reprints 48872 -reprise 61584 -reprises 64423 -reproach 62762 -reprocessed 64657 -reprocessing 62469 -reproduce 48791 -reproduced 45386 -reproduces 57653 -reproducibility 55373 -reproducible 54399 -reproducibly 63077 -reproducing 54622 -reproduction 45576 -reproductions 56972 -reproductive 48816 -reproductives 63991 -reprogram 62917 -reprogrammed 63991 -reprogramming 62196 -reps 53613 -reptile 58523 -reptiles 57084 -reptilian 62917 -republic 52927 -republican 55766 -republicans 57970 -republication 57831 -republics 60856 -republika 60405 -republish 59848 -republished 56324 -republishes 64657 -republishing 63991 -repudiate 64905 -repudiated 64905 -repudiation 64201 -repugnant 62331 -repulsed 64201 -repulsion 58162 -repulsive 56140 -repurchase 57358 -repurposed 60078 -reputable 52584 -reputation 44236 -reputations 58688 -repute 58632 -reputed 55877 -reputedly 63792 -req 59039 -request 37054 -requested 43084 -requester 62762 -requesting 48381 -requestor 63245 -requests 42985 -requiem 63991 -require 39112 -required 35617 -requirement 44137 -requirements 39471 -requires 39338 -requiring 44958 -requis 65170 -requisite 53746 -requisites 63077 -requisition 60157 -requisitioner 64201 -requisitions 63991 -reread 59774 -rereading 64201 -reroute 65170 -rerouted 63991 -rerouting 63991 -rerun 59039 -reruns 62469 -res 53796 -resale 53501 -resales 64423 -resampled 63245 -resampling 60762 -rescaled 63991 -rescaling 65452 -reschedule 60321 -rescheduled 58162 -rescheduling 60856 -rescind 60952 -rescinded 61584 -rescinding 63792 -rescission 63245 -rescore 64905 -rescue 45739 -rescued 52141 -rescuer 63991 -rescuers 60000 -rescues 56687 -rescuing 58212 -resealable 64905 -research 35356 -researched 52521 -researcher 50256 -researcher's 62613 -researchers 44146 -researches 55474 -researching 50840 -resected 57399 -resection 51157 -resections 63077 -resell 56170 -reseller 54170 -resellers 56972 -reselling 57122 -resemblance 54749 -resemble 51814 -resembled 55738 -resembles 52029 -resembling 53597 -resend 60078 -resending 64657 -resent 56518 -resentation 64657 -resented 59560 -resentful 63419 -resentment 57358 -resents 61472 -reserpine 62331 -reservados 64423 -reservation 47417 -reservations 47923 -reserve 44317 -reserved 39398 -reserves 45247 -reserving 58313 -reservists 62917 -reservoir 49626 -reservoirs 55107 -reset 46296 -resets 57318 -resetting 55906 -resettlement 60000 -reshape 60492 -reshaped 61818 -reshaping 59923 -reshma 60000 -reshuffle 60000 -reside 50791 -resided 55631 -residence 46868 -residences 55037 -residencies 61584 -residency 51942 -resident 45191 -resident's 59491 -residential 43328 -residents 42443 -resides 51867 -residing 52096 -residual 46426 -residuals 57009 -residue 47776 -residues 46862 -resign 55154 -resignation 53286 -resignations 61472 -resigned 52210 -resigning 62331 -resigns 56618 -resilience 55552 -resiliency 58979 -resilient 53241 -resiliently 61472 -resin 48101 -resinous 63245 -resins 54170 -resist 49028 -resistance 42154 -resistances 57440 -resistant 46141 -resisted 56110 -resisting 55992 -resistive 55526 -resistivities 62469 -resistivity 53662 -resistor 53066 -resistors 56485 -resists 57696 -resize 54341 -resized 59774 -resizer 65170 -resizes 64905 -resizing 58577 -resold 59164 -resolute 62066 -resolutely 61362 -resolution 40950 -resolutions 51095 -resolvable 64905 -resolve 46210 -resolved 46896 -resolver 59923 -resolves 54969 -resolving 51377 -resonable 64905 -resonance 46415 -resonances 54459 -resonant 51835 -resonantly 65452 -resonate 57238 -resonated 61818 -resonates 58262 -resonating 61152 -resonator 54902 -resonators 58417 -resorbed 65452 -resorcinol 64905 -resorption 54664 -resort 46506 -resort's 61818 -resorted 58365 -resorting 57566 -resorts 50774 -resounding 58523 -resource 40930 -resourced 63601 -resourceful 59164 -resourcefulness 64657 -resources 38281 -resourcing 62762 -respawn 63601 -respect 39612 -respectability 65170 -respectable 54946 -respected 48305 -respectful 52899 -respectfully 55631 -respecting 52062 -respective 39892 -respectively 47160 -respects 50256 -respirable 64423 -respiration 53286 -respiratoire 61699 -respirator 56935 -respiratorio 62331 -respirators 60762 -respiratory 45522 -respite 56585 -resplendent 61940 -responce 64657 -respond 42959 -responded 46953 -respondent 50249 -respondent's 57122 -respondents 48687 -responder 57609 -responders 54992 -responding 47660 -responds 50576 -responsable 64201 -response 36977 -responses 40836 -responsibilities 46454 -responsibility 40002 -responsibilty 61256 -responsible 37307 -responsiblity 63419 -responsibly 58065 -responsive 49541 -responsiveness 53407 -responsivity 59357 -ressources 64905 -rest 39371 -restart 50115 -restarted 56420 -restarting 57876 -restarts 60000 -restate 62196 -restated 60238 -restatement 62613 -restaurant 42007 -restaurant's 59560 -restaurants 43351 -restaurateur 63792 -restaurateurs 62196 -reste 64905 -rested 55250 -restenosis 58162 -restful 61584 -resting 49590 -restitution 57318 -restless 55821 -restlessness 63245 -resto 59039 -restock 61940 -restocking 56388 -restoration 48034 -restorations 59923 -restorative 57831 -restore 46395 -restored 48030 -restorers 65452 -restores 55037 -restoring 51078 -restrain 57696 -restrained 55711 -restraining 54727 -restraint 53549 -restraints 56388 -restrict 48877 -restricted 44907 -restricting 52832 -restriction 47136 -restrictions 45982 -restrictive 52233 -restricts 55684 -restroom 58417 -restrooms 58979 -restructure 56551 -restructured 59357 -restructuring 51193 -rests 51942 -restuarant 64905 -resturant 62196 -resturants 63601 -resubmit 56551 -resubmitted 64657 -result 36386 -resultados 62469 -resultant 50469 -resultater 63792 -resulted 43410 -resulting 40602 -results 32944 -resume 44802 -resumed 54560 -resumes 53377 -resuming 61051 -resummation 62762 -resummed 63792 -resumption 58860 -resumé 65170 -resurface 64423 -resurfaced 64423 -resurfacing 59292 -resurgence 57482 -resurgent 63245 -resurrect 59848 -resurrected 58577 -resurrection 56021 -resuscitate 63077 -resuscitation 56862 -resuspended 51284 -resuspension 63991 -resveratrol 61051 -resynchronization 63792 -ret 54969 -retail 42154 -retailer 45725 -retailer's 60238 -retailerId 62762 -retailers 47300 -retailing 57358 -retails 58802 -retain 46245 -retained 47335 -retainer 53952 -retainers 60157 -retaining 49365 -retains 51017 -retake 60078 -retaliate 61940 -retaliated 62613 -retaliating 64201 -retaliation 56200 -retaliatory 61362 -retard 56518 -retardant 59164 -retardation 55474 -retarded 53138 -retarding 62196 -retards 61152 -rete 63991 -retell 65170 -retelling 59848 -retells 65452 -retention 47228 -retentive 63792 -reteset 64201 -retest 60580 -retested 64657 -rethink 55657 -rethinking 58523 -retical 63601 -reticent 63991 -reticle 61051 -reticular 57831 -reticularis 65452 -reticulata 62613 -reticulated 63601 -reticulation 63601 -reticulocyte 62762 -reticuloendothelial 63991 -reticulum 55299 -retin 63601 -retina 55084 -retinaculum 64201 -retinal 51257 -retinas 62917 -retinitis 59848 -retinoblastoma 60762 -retinoic 57524 -retinoid 60670 -retinoids 61818 -retinol 60952 -retinopathy 58313 -retire 51650 -retired 47259 -retiree 56293 -retirees 54879 -retirement 45756 -retirements 64423 -retires 58470 -retiring 53407 -retold 62762 -retool 64905 -retooled 63077 -retools 65452 -retort 63419 -retouching 62917 -retour 62469 -retrace 62762 -retracing 63419 -retract 59227 -retractable 54133 -retracted 56231 -retracting 60670 -retraction 59774 -retractor 61940 -retracts 62469 -retrain 64657 -retrained 64657 -retraining 61051 -retransmission 58577 -retransmit 63792 -retransmitted 64657 -retreat 50686 -retreated 59164 -retreating 60762 -retreats 58113 -retrial 60321 -retribution 60762 -retried 65452 -retrieval 48736 -retrieve 49262 -retrieved 51434 -retriever 62196 -retrieves 57696 -retrieving 54360 -retro 50856 -retroactive 56972 -retroactively 60157 -retroactivity 64657 -retrofit 57122 -retrofits 64423 -retrofitted 62917 -retrofitting 61940 -retrograde 55154 -retrograded 63991 -retroperitoneal 60157 -retrospect 61051 -retrospective 50439 -retrospectively 57199 -retroviral 58979 -retrovirus 60670 -retroviruses 61818 -retry 58113 -retuned 65452 -return 36950 -returnable 61699 -returned 41430 -returnees 62762 -returner 61940 -returning 45569 -returns 42746 -retusa 64201 -retype 59357 -reunification 60580 -reunion 50734 -reunions 60000 -reunite 58577 -reunited 56420 -reunites 62469 -reuniting 62066 -reuptake 56721 -reusability 63419 -reusable 54499 -reuse 48459 -reuseable 65170 -reused 56972 -reusing 59630 -reuters 59923 -rev 53581 -revaluation 63077 -revamp 57278 -revamped 56618 -revamping 60952 -revamps 62917 -revascularization 60157 -revatio 58162 -reveal 45671 -revealed 42248 -revealing 50409 -reveals 45549 -revegetation 63792 -revel 59101 -revelation 54439 -revelations 56972 -revelers 64905 -revellers 64423 -revels 62469 -revenge 52233 -revenue 44179 -revenues 47562 -reverb 59357 -reverberation 61940 -revere 63245 -revered 57084 -reverence 58979 -reverend 63245 -reverent 65452 -reverie 64423 -reversal 51473 -reversals 60856 -reverse 44433 -reversed 50623 -reverses 57399 -reversibility 59424 -reversible 51330 -reversibly 60321 -reversing 54245 -reversion 58745 -revert 55500 -reverted 56585 -reverting 61584 -reverts 60762 -review 33997 -reviewRecommendContact 64201 -reviewed 41401 -reviewer 51899 -reviewer's 60670 -reviewers 51953 -reviewing 48538 -reviews 35330 -reviewsSee 65452 -reviewsWrite 65170 -reviewsawardsuser 53646 -reviewsnewsgroup 53646 -reviled 63601 -revise 51953 -revised 44675 -revises 58688 -revising 56551 -revision 46546 -revisionist 62196 -revisions 49682 -revisit 55348 -revisited 55578 -revisiting 58470 -revisits 59923 -revisor 62331 -revista 63991 -revitalise 65170 -revitalization 57741 -revitalize 59292 -revitalized 60580 -revitalizing 62331 -revival 52699 -revivals 64905 -revive 54005 -revived 55657 -revives 59848 -reviving 59424 -revlon 63077 -revo 64905 -revocable 63245 -revocation 56080 -revoke 55578 -revoked 55711 -revokes 64201 -revoking 62762 -revolt 56862 -revolting 63245 -revolts 65452 -revolute 61256 -revolution 49639 -revolutionaries 60952 -revolutionary 50199 -revolutionise 64423 -revolutionize 58577 -revolutionized 58632 -revolutionizing 64657 -revolutions 58365 -revolve 57609 -revolved 61818 -revolver 58979 -revolvers 65170 -revolves 55226 -revolving 54540 -revs 59774 -revue 61256 -revulsion 63991 -revved 63077 -revving 63077 -reward 48046 -rewarded 52661 -rewarding 51026 -rewards 49365 -rewind 58017 -rewiring 65170 -rework 60405 -reworked 58212 -reworking 59848 -rewrite 52818 -rewrites 65452 -rewriting 56356 -rewritten 50983 -rewrote 61699 -rex 57199 -rexel 61699 -rey 57609 -reyes 61940 -reynolds 63077 -rez 63601 -rezone 60762 -rezoned 63601 -rezoning 58688 -rf 57278 -rfid 63419 -rfl 59630 -rfp 65452 -rfrovarp 65170 -rg 61362 -rghit 65170 -rh 62066 -rhabdomyosarcoma 64423 -rhb 64905 -rhc 65170 -rhe 59630 -rhea 64423 -rhein 62762 -rheological 58577 -rheology 60492 -rheometer 63991 -rhesus 56324 -rhetoric 52686 -rhetorical 55992 -rheumatic 57696 -rheumatism 64201 -rheumatoid 50350 -rheumatology 62331 -rhinestone 60856 -rhinestones 64201 -rhinitis 58523 -rhino 58065 -rhinoceros 65170 -rhinoplasty 60000 -rhinos 59848 -rhinovirus 59357 -rhizomatous 65170 -rhizome 59923 -rhizomes 61940 -rhizosphere 59630 -rho 60952 -rhodamine 60856 -rhode 63077 -rhodes 64201 -rhodium 61152 -rhododendron 65452 -rhodopsin 58919 -rhubarb 62762 -rhuddlan 64423 -rhyme 54560 -rhymes 55202 -rhyming 57785 -rhythm 49313 -rhythmic 54114 -rhythmically 62762 -rhythms 53917 -rhytme 63077 -ri 55474 -ria 60762 -rial 59292 -rials 62331 -rib 52051 -ribavirin 59702 -ribbed 56899 -ribbing 64905 -ribbon 50615 -ribbons 56231 -ribeye 64905 -riboflavin 61256 -ribonuclease 60856 -ribonucleic 59774 -ribonucleoprotein 65452 -ribonucleotide 61152 -ribose 62196 -ribosomal 53662 -ribosome 61051 -ribosomes 59227 -ribozyme 62762 -ribs 52954 -ric 60078 -rica 59101 -rican 64201 -ricardisimo 64657 -ricardo 64423 -ricci 64657 -ricco 64905 -rice 45927 -ricer 64905 -ricerca 61256 -rich 42360 -richard 52509 -richards 62331 -richardson 63601 -richer 52256 -riches 56200 -richest 53423 -richie 61699 -richly 54946 -richmond 59560 -richness 53695 -richtig 63991 -richumali 65452 -rick 56485 -rickettsia 65452 -rickettsiae 59101 -rickettsial 61472 -rickety 62762 -ricki 65452 -rickshaw 61256 -ricky 59292 -rico 57741 -ricochet 64657 -ricostruzione 64905 -ricotta 60670 -rid 45914 -rida 64201 -riddell 62917 -ridden 55992 -riddim 64657 -ridding 62331 -riddle 59101 -riddled 59164 -riddles 61940 -ride 43411 -rider 50206 -rider's 63601 -riders 50484 -ridership 62762 -rides 48440 -ridge 51953 -ridged 63991 -ridges 55130 -ridicule 58017 -ridiculed 60157 -ridiculing 64905 -ridiculous 50832 -ridiculously 55578 -ridin 65170 -riding 46079 -ridings 64905 -ried 60157 -rien 60580 -rience 63077 -rier 63991 -ries 59560 -riesgo 62469 -riety 65452 -rifampicin 63245 -rifampin 63991 -rife 59292 -riff 57046 -riffs 58860 -rifle 51550 -rifled 65452 -rifles 55992 -rift 57696 -rifts 64201 -rig 52244 -rigged 59560 -rigging 59164 -riggs 65452 -right 33244 -righteous 55107 -righteousness 57199 -rightful 56080 -rightfully 58577 -righthand 65170 -righting 65170 -rightist 63792 -rightly 53813 -rightmost 63077 -rights 32049 -rightward 62331 -rightwing 65170 -rigid 49049 -rigidity 54041 -rigidly 57238 -rigidum 63245 -rigor 58979 -rigorous 49886 -rigorously 56899 -rigors 59630 -rigour 63419 -rigs 56170 -rihanna 54879 -riko 65452 -rile 63792 -riled 63601 -riley 59424 -rill 64905 -rim 50670 -rimjob 58262 -rimmed 63792 -rimming 60000 -rims 54005 -rin 60078 -rind 59630 -rindi 62196 -rine 63245 -ring 42126 -ringed 61699 -ringer 58860 -ringers 63792 -ringing 53392 -rings 46739 -ringside 63601 -ringtone 46025 -ringtones 46437 -ringworm 64201 -rink 57009 -rinks 64657 -rinse 53501 -rinsed 53271 -rinses 63419 -rinsing 56721 -rio 57566 -riod 63991 -rion 65452 -rior 61699 -riot 54835 -rioting 61256 -riotous 65452 -riots 56293 -rip 49645 -riparian 55849 -ripe 53485 -ripen 61472 -ripened 61818 -ripeness 64905 -ripening 58470 -ripest 62196 -ripheral 65452 -ripley 65452 -ripoff 57785 -ripped 51492 -ripper 56791 -rippers 65170 -ripping 54321 -rippingyarns 64905 -ripple 54245 -rippled 64905 -ripples 60000 -rippling 62196 -rips 57278 -ripstop 62196 -ris 63077 -risa 60078 -rise 41615 -risen 52130 -riser 58162 -risers 60856 -rises 49285 -rising 45315 -risk 37518 -risked 60321 -riskier 60492 -risking 57831 -riskmatters 63077 -risks 44159 -risky 52622 -risotto 60321 -risperdal 63601 -risperidone 58113 -risque 59357 -risques 65452 -rissa 64905 -rita 62762 -ritalin 62196 -ritchie 64201 -rite 55552 -rites 58365 -rithm 60492 -rithms 63601 -ritual 52609 -ritualistic 64201 -ritualized 65452 -ritually 65452 -rituals 55274 -rituximab 61699 -rity 61940 -rium 62762 -rival 49458 -rivaled 64201 -rivaling 62196 -rivalries 61256 -rivalry 54380 -rivals 52244 -rive 62762 -rived 61152 -river 44435 -river's 60762 -rivera 63419 -riverboat 63792 -riverfront 60856 -riverine 63991 -rivers 50646 -riverside 56862 -rivet 61051 -riveted 63792 -riveting 58979 -rivets 61818 -riya 63792 -rized 62917 -rj 61256 -rk 58632 -rkapsi 65452 -rks 64905 -rl 58313 -rls 65452 -rly 63601 -rm 53124 -rman 65170 -rms 56170 -rmvb 61472 -rmx 62066 -rn 55684 -rnb 63601 -rnd 62066 -rnin 64201 -rnold 61818 -ro 53038 -roach 58802 -roaches 64657 -road 40001 -roadblock 61584 -roadblocks 60580 -roadie 65170 -roadmap 54857 -roadrunner 64905 -roadrunnergermany 63419 -roads 47406 -roadshow 61940 -roadside 53712 -roadster 60238 -roadtrip 64657 -roadway 54226 -roadways 58860 -roadworks 62331 -roam 55526 -roamed 60078 -roaming 54133 -roaminggnome 65452 -roan 64905 -roar 57318 -roared 57609 -roaring 57084 -roars 60762 -roast 52546 -roasted 51772 -roaster 64423 -roasting 57653 -roasts 62762 -rob 52872 -robb 64905 -robbed 54151 -robber 57199 -robberies 58523 -robbers 58065 -robbery 51942 -robbie 61940 -robbing 59227 -robbs 65452 -robe 57440 -robert 53565 -roberto 63601 -roberts 60321 -robes 58262 -robin 54902 -robinson 61699 -robo 61152 -roboblogger 57199 -robocop 63991 -robot 47518 -robot's 57970 -robotic 51711 -robotics 56485 -robots 51349 -robs 60952 -robust 46563 -robustly 61051 -robustness 54581 -roby 64657 -robynls 63245 -roc 64657 -roca 65452 -rocco 63601 -roche 61256 -rochester 60238 -rock 41056 -rock'n'roll 62613 -rock's 63991 -rockabilly 64905 -rocked 54792 -rocker 54749 -rockers 56618 -rocket 50046 -rocketed 63601 -rocketing 63601 -rockets 55992 -rockfishes 64905 -rockin 58523 -rocking 52351 -rocks 47170 -rockstar 56021 -rockwool 64657 -rocky 52387 -rod 47170 -rode 52832 -rodent 53779 -rodents 55631 -rodeo 59164 -rodney 65170 -rodriguez 61940 -rods 51257 -roe 63601 -roel 64657 -rofl 61362 -rogaine 64905 -roger 57524 -rogerk 63991 -rogers 59702 -rogersonii 65170 -rogue 53316 -rogues 58745 -rohit 65452 -rohnert 65452 -roi 55448 -roid 65452 -roiled 65452 -roiling 64657 -rojo 60762 -rok 58113 -roku 63991 -rol 63077 -roland 57785 -role 37198 -roleplay 61699 -roleplaying 61472 -roles 45116 -rolex 59039 -roll 43965 -rollback 58745 -rolled 46429 -roller 47960 -rollercoaster 59227 -rollers 54601 -rollicking 63077 -rollin 62613 -rolling 46849 -rollout 57566 -rollover 55604 -rollovers 62917 -rolls 48872 -rolltidescott 65170 -rollup 64657 -rollups 65452 -rom 54581 -roma 60856 -romaine 62613 -roman 56585 -romana 65170 -romance 49070 -romances 62196 -romancing 65452 -romania 60321 -romanian 60321 -romantic 47224 -romantically 60856 -romanticism 63419 -rome 57566 -romeo 59491 -romp 58632 -roms 58745 -ron 54226 -ronald 61051 -ronaldinho 63792 -ronaldlunch 64905 -ronaldo 60762 -ronjart 60000 -ronment 62066 -ronmental 60670 -rons 64201 -ronson 64657 -roo 62066 -roof 45166 -roofed 62469 -roofer 62917 -roofing 52791 -roofs 55154 -rooftop 54581 -rooftops 62331 -rookie 52832 -rookies 61472 -room 37391 -room's 60405 -roomate 65170 -roomful 65452 -rooming 65452 -roommate 55226 -roommates 57278 -rooms 42303 -roomy 57970 -rooney 63792 -roosevelt 64905 -roost 60157 -rooster 59774 -roosters 64201 -roosterteeth 60856 -roosting 64657 -root 43107 -rooted 51406 -rooting 55299 -rootkit 60670 -rootlets 64423 -roots 45929 -rootstock 65170 -rootstown 65452 -ropa 63601 -rope 50545 -roped 62331 -ropes 55448 -roping 64657 -ropivacaine 63245 -ror 62613 -rors 65452 -rorya 64423 -ros 64657 -rosa 61152 -rosacea 60580 -rosario 61584 -rosary 64905 -rose 45251 -rosea 62469 -roselare 64657 -rosemary 57318 -roses 52062 -rosetta 63991 -rosette 60000 -rosettes 62066 -rosewood 59424 -rosie 60238 -rosiglitazone 60000 -rosin 63792 -roskilde 63601 -ross 56827 -rossi 64657 -rosso 65452 -roster 51321 -rosters 59560 -rostral 56862 -rostrum 65452 -roswell 64905 -rosy 58745 -rosé 63991 -rot 54419 -rota 63419 -rotamer 64423 -rotary 50983 -rotatable 55963 -rotatably 57609 -rotate 49893 -rotated 52233 -rotates 55154 -rotating 48059 -rotation 46415 -rotational 51113 -rotationally 61584 -rotations 56231 -rotator 57009 -rotatory 65452 -rotavirus 62917 -rote 61152 -roth 63792 -roti 64423 -rotifers 65170 -rotisserie 63077 -roto 63601 -rotons 64905 -rotor 50227 -rotors 57084 -rots 64201 -rotted 62917 -rotten 56110 -rotting 58417 -rottweiler 65170 -rotunda 64905 -rouge 58470 -rough 46301 -roughage 63245 -roughed 63792 -roughened 64905 -rougher 61051 -roughing 61152 -roughly 46834 -roughness 54041 -roulette 58065 -round 41499 -roundabout 55849 -roundabouts 64657 -rounded 49517 -rounder 63419 -rounding 54078 -roundly 64905 -rounds 49511 -roundtable 57609 -roundtables 65452 -roundtrip 62331 -roundup 53882 -roused 64905 -rousing 59702 -rout 57399 -route 43364 -routed 53470 -router 48165 -router's 61699 -routers 52791 -routes 48496 -routine 45585 -routinely 49720 -routines 52968 -routing 47895 -routière 64657 -routs 64423 -roux 64201 -rover 55474 -rovers 64905 -roves 64905 -roving 61152 -row 44911 -rowan 64657 -rowdy 59101 -rowed 65170 -rowenta 62331 -rower 64657 -rowers 62762 -rowing 56388 -rownum 64657 -rows 48204 -rox 63419 -roxanne 65452 -roxio 60580 -roxy 60492 -roy 59424 -royal 49313 -royale 63245 -royally 64201 -royals 65170 -royalties 55226 -royalty 51340 -rp 62066 -rpc 61940 -rpg 55793 -rpm 49405 -rpm's 65170 -rpms 63077 -rr 55500 -rroopstr 62196 -rrp 62762 -rs 54664 -rsadeghi 64423 -rscheearch 65170 -rsd 64657 -rset 65170 -rsh 60492 -rsheltonr 63601 -rslaton 64657 -rss 45641 -rssh 63991 -rssicon 54664 -rsslogo 62331 -rst 57609 -rstocks 63077 -rsvp 63077 -rsync 62917 -rt 54879 -rtf 63077 -rth 64201 -rtm 62613 -rtp 62917 -rtrd 63245 -rts 64423 -ru 51953 -rua 65452 -rub 52315 -rubbed 55250 -rubber 45056 -rubberized 64657 -rubbers 61472 -rubbery 61699 -rubbing 53549 -rubbish 53646 -rubble 59292 -rubella 59848 -ruben 63601 -rubiadin 61152 -rubidium 60157 -rubies 64423 -rubik's 62762 -rubiks 64905 -rubinstein 63419 -rubles 64423 -rubric 61472 -rubrics 62613 -rubrum 63601 -rubs 58417 -ruby 54622 -ruc 63077 -ruched 64201 -ruchith 62917 -ruck 64905 -ruckus 64657 -rudder 59357 -rudders 65452 -ruddy 64423 -rude 52597 -rudely 63601 -rudeness 64905 -rudiment 65452 -rudimentary 57278 -rudiments 62917 -rudolph 65452 -rudy 61940 -rue 51396 -rues 65170 -ruff 62762 -ruffed 64905 -ruffle 60762 -ruffled 60238 -ruffles 62613 -rufus 61472 -rug 52712 -rugby 50220 -rugby's 64423 -rugged 51835 -ruggedness 64657 -rugosa 65452 -rugs 55107 -ruil 64905 -ruin 51711 -ruined 52635 -ruining 51220 -ruinous 64657 -ruins 52752 -rule 42150 -rule's 64657 -ruled 47772 -rulemaking 59424 -ruler 53934 -rulers 55474 -rules 40208 -ruleset 65452 -ruling 47537 -rulings 55992 -rum 53549 -rumah 64657 -rumba 64657 -rumble 57009 -rumbled 64423 -rumbles 63077 -rumbling 62762 -rumblings 64201 -rumen 57358 -ruminal 64423 -ruminant 62469 -ruminants 62762 -ruminating 63077 -rumination 63792 -ruminations 64905 -rummage 65170 -rumor 52739 -rumored 56050 -rumors 50514 -rumour 58470 -rumoured 61051 -rumours 54664 -rump 61472 -rumpled 65170 -rumpus 64657 -run 36829 -runabout 63601 -runaway 55657 -runaways 63601 -rundown 57566 -rune 60580 -runes 63991 -runescape 53271 -rung 60762 -rungs 65452 -runing 63077 -runlevel 61940 -runner 51963 -runners 51425 -runnerunner 65170 -runneth 65170 -runnin 61362 -running 38534 -runny 59630 -runoff 52339 -runs 42081 -runtime 52459 -runway 51846 -runways 57923 -rupee 58470 -rupees 60321 -rupert 64423 -rupted 65170 -rupture 51909 -ruptured 56721 -ruptures 61699 -rupturing 63077 -rural 43365 -rus 61818 -ruse 64201 -rush 48327 -rushed 51931 -rushes 58365 -rushing 52559 -rusian 64201 -russ 60580 -russel 65170 -russell 57524 -russert 65170 -russia 56140 -russian 50742 -rust 52597 -rusted 60405 -rustic 54581 -rusting 63419 -rustle 64905 -rustling 62469 -rusty 54096 -rut 63419 -ruth 60856 -ruthenium 59560 -ruthless 56899 -ruthlessly 62613 -rutile 64657 -rutin 64657 -ruven 65170 -rv 55766 -rw 60321 -rx 49732 -ry 57653 -ryan 53712 -ryanodine 62762 -rybalkin 65452 -ryder 64657 -rye 56080 -ryegrass 63991 -ryote 63991 -ryt 64423 -rz 64423 -réalisé 64423 -référence 46578 -région 64201 -réseau 63245 -réseaux 64423 -résultats 60952 -résumé 61584 -rôle 63419 -s 37242 -s'est 64201 -s'il 64905 -sHaRe 65170 -sHsp 65452 -sNews 59560 -sO 62196 -sRGB 59560 -sSNPs 63792 -sTyLe 64201 -sZt 65452 -sa 46989 -saab 58470 -saabnc 63601 -saad 64657 -saan 64905 -saat 63419 -sab 60952 -sabato 64657 -sabbath 61584 -sabbatical 61152 -sabe 61362 -saber 58919 -sabes 61699 -sable 61256 -sabotage 59774 -sabotaging 64657 -sabre 63991 -sabrina 60670 -sac 54835 -sacar 63601 -saccade 58919 -saccades 64423 -saccadic 61472 -sacchari 64905 -saccharine 63601 -saccular 64657 -sacha 65452 -sachet 63991 -sachin 64905 -sachs 55474 -sachsen 58577 -sachsenhausen 60321 -sachsische 65452 -saci 57609 -sack 51804 -sackcloth 60238 -sacked 54835 -sackets 62469 -sacking 56827 -sackler 58017 -sackman 60580 -sacks 54685 -sackville 57524 -sacl 61584 -saclay 62066 -sacle 62762 -sacral 58860 -sacrament 60762 -sacramental 62917 -sacramento 61584 -sacraments 62917 -sacred 49739 -sacrifice 50213 -sacrificed 54059 -sacrifices 54499 -sacrificial 58417 -sacrificing 54622 -sacroiliac 62613 -sacrum 64423 -sacs 60238 -sad 45367 -sada 63991 -sadam 65452 -sadaredds 63792 -saddam 62196 -saddened 57785 -saddens 63077 -sadder 64423 -saddest 60321 -saddle 53899 -saddled 62469 -saddles 61699 -sadipscing 60492 -sadism 58113 -sadistic 58979 -sadly 53196 -sadness 54792 -saeco 63991 -safari 53988 -safaris 60856 -safc 64657 -safe 40583 -safeguard 52559 -safeguarded 63077 -safeguarding 56050 -safeguards 54749 -safekeeping 64905 -safely 45402 -safer 49809 -safes 61152 -safest 54133 -safeties 65170 -safety 39236 -safflower 64201 -saffron 58017 -safle 64657 -sag 59923 -saga 54096 -sagan 65170 -sagas 64657 -sage 54188 -sagebrush 61940 -sagem 62066 -sages 61256 -sagging 58745 -saggy 61051 -sagittal 55992 -sagittarius 64657 -sagopa 64201 -sags 63991 -sagt 65452 -sahara 62469 -sai 58065 -said 31434 -sail 51453 -sailboat 60492 -sailboats 63419 -sailed 54207 -sailfish 64905 -sailing 50129 -sailings 63419 -sailor 54924 -sailor's 65452 -sailors 55154 -sails 56200 -sain 57046 -saint 53316 -saints 54302 -sais 61699 -saison 62613 -saith 60580 -sake 49886 -sakes 64657 -sakura 58688 -sakvithi 61940 -sal 56899 -sala 62762 -salad 47955 -salads 55178 -salam 62469 -salamander 64423 -salami 63601 -salaried 57440 -salaries 46379 -salary 45285 -salbutamol 64657 -sald 65170 -sale 37107 -saleable 62613 -saleby 55657 -salem 63077 -sales 37636 -salesman 55373 -salesmanship 65452 -salesmen 61699 -salespeople 49476 -salesperson 58577 -salicaria 63419 -salicylate 59848 -salicylates 64905 -salicylic 60762 -salience 64423 -saliency 64657 -salient 55107 -saline 48269 -salinities 63991 -salinity 52968 -salir 64201 -saliva 53662 -salivary 52339 -salivating 64905 -salle 65452 -sally 60405 -sallycook 65170 -salma 64905 -salmaaa 64905 -salman 65170 -salmeterol 63419 -salmon 50164 -salmonella 60580 -salon 51473 -salons 57122 -saloon 57696 -saloons 64657 -salsa 53865 -salt 43774 -salted 58470 -salto 64201 -salts 50599 -saltwater 55657 -salty 56170 -salud 63991 -saludo 64201 -saludos 59039 -salut 64423 -salutary 64201 -salute 55130 -saluted 64201 -salutes 60321 -saluting 63792 -salvador 61940 -salvage 52712 -salvaged 59491 -salvaging 64423 -salvar 65170 -salvarsan 62613 -salvation 53679 -salve 62762 -salvia 62066 -salvo 63601 -sam 52927 -sama 61472 -samantha 58065 -samba 57278 -same 32389 -samedi 64657 -sameeren 62917 -samen 64423 -sameness 64657 -sameway 64657 -sami 63077 -saminda 63077 -samipisces 65452 -samira 64905 -samlammd 64423 -sammy 60492 -samo 62066 -sample 38837 -sample's 65170 -sampled 49899 -sampler 55906 -samplers 59039 -samples 39797 -sampling 45203 -samplings 63792 -samspade 61584 -samsung 50446 -samt 65452 -samuel 61152 -samurai 56618 -san 48097 -sana 59424 -sanantonio 65170 -sanchez 56756 -sanctified 64201 -sanction 55448 -sanctioned 55178 -sanctioning 62469 -sanctions 51996 -sanctity 59774 -sanctuaries 60492 -sanctuary 53865 -sanctum 64905 -sanctus 60580 -sand 45982 -sandal 57278 -sandals 53729 -sandalwood 65170 -sandbags 64905 -sandblasting 63792 -sandbox 58979 -sande 65452 -sanded 59560 -sander 60492 -sanders 62066 -sandhills 65452 -sanding 56262 -sandisk 61362 -sandler 64657 -sandman 64657 -sandpaper 60405 -sandr 64905 -sandra 57482 -sands 54264 -sandstone 54283 -sandstones 62066 -sandwich 50129 -sandwiched 58065 -sandwiches 52040 -sandy 51193 -sane 56388 -sanfrancisco 61940 -sang 51202 -sangre 62469 -sangsoo 64657 -sanguin 62196 -sanguine 64201 -sanguíneo 61362 -sanitary 52725 -sanitation 54151 -sanitize 64657 -sanitized 63792 -sanitizer 64905 -sanity 56756 -sanjay 61584 -sanjaya 62066 -sank 56388 -sano 65452 -sans 48336 -sansa 65452 -sanskrit 65452 -sant 63792 -santa 51772 -santana 62469 -santiago 60238 -santo 62613 -santos 64423 -santé 59923 -sanyo 56356 -sanz 64657 -sao 60157 -saosin 63991 -sap 55877 -sapdb 62331 -saphenous 57524 -sapien 64905 -sapiens 58262 -sapling 63991 -saplings 60580 -saponification 61940 -saponin 63991 -saponins 63991 -sapphic 57653 -sapphire 54902 -sappy 63792 -sapwood 63792 -sar 61699 -sarNies 63419 -sara 55604 -sarah 52007 -saranda 64905 -sarang 65170 -sarasota 64905 -saratoga 64201 -sarcasm 59292 -sarcastic 57741 -sarcoidosis 59923 -sarcolemmal 61051 -sarcoma 54380 -sarcomas 62613 -sarcomatoid 63601 -sarcomere 65452 -sarcophagus 65170 -sarcoplasmic 58979 -sardine 64201 -sardines 62917 -sardinia 65170 -sardonic 65170 -saree 58065 -sari 57876 -sarily 64657 -saris 65170 -sarkozy 63245 -sartorial 65170 -sary 59491 -sas 61940 -sash 57785 -sasha 60321 -sashes 62762 -sashimi 62762 -sass 63792 -sassy 56652 -sasuke 60762 -sat 46022 -sata 60078 -satan 62331 -satanic 61584 -satay 63991 -satchel 61152 -sate 63991 -sated 63601 -sateen 61051 -satelite 65170 -satellite 44346 -satellites 52399 -satiation 64201 -satiety 62331 -satin 52351 -satiny 64423 -sation 61152 -satire 55060 -satiric 63601 -satirical 56585 -satisfaction 45421 -satisfactorily 55526 -satisfactory 48766 -satisfied 45162 -satisfies 49614 -satisfy 45964 -satisfying 49505 -satishinamdar 65452 -sativa 57696 -sativum 63792 -sats 65170 -satu 64905 -saturable 59560 -saturate 59923 -saturated 49429 -saturates 61818 -saturating 58919 -saturation 49523 -saturations 64423 -saturday 52534 -saturdays 64905 -saturn 59227 -satus 64201 -sau 59848 -sauce 46963 -saucepan 57741 -saucer 59560 -saucers 64423 -sauces 56080 -saucy 59923 -saudi 61051 -sauerkraut 62196 -saul 64905 -sauna 56293 -saunas 63077 -saunders 64657 -sausage 53038 -sausages 56485 -saute 60492 -sauteed 59357 -sauté 61699 -sautéed 59848 -sauvignon 65452 -sav 63419 -savage 55299 -savaged 63991 -savagely 64657 -savages 62917 -savanna 57741 -savannah 59164 -save 37214 -saved 43308 -saver 54151 -savers 57970 -saves 48135 -saving 44338 -savings 43814 -savior 59560 -saviour 62066 -savoir 49113 -savor 59774 -savored 64423 -savoring 63792 -savory 58577 -savour 62066 -savoury 60580 -savvy 53934 -savy 62196 -saw 39578 -sawdust 59630 -sawed 64657 -sawing 61256 -sawmill 58802 -sawmills 65452 -sawn 61256 -sawp 62613 -saws 59357 -sawtooth 65170 -sax 57876 -saxo 65452 -saxophone 57831 -saxophonist 59702 -saxty 63792 -say 35084 -say's 65170 -saya 62066 -sayin 57609 -saying 41130 -sayings 54459 -says 36678 -sayz 64905 -saz 62613 -sb 58577 -sbi 59702 -sc 54133 -scab 61818 -scabies 64657 -scabrivalvis 63792 -scabs 63419 -scaffold 54706 -scaffolding 58162 -scaffolds 60580 -scala 63419 -scalability 54969 -scalable 53501 -scalar 52118 -scalars 63077 -scald 64201 -scalding 63601 -scale 41413 -scaled 50906 -scaler 65170 -scales 47984 -scalextric 62196 -scaling 49411 -scallion 64423 -scallions 63077 -scallop 58745 -scalloped 60078 -scallops 56827 -scalp 54005 -scalpel 62613 -scaly 59491 -scam 50991 -scammed 61362 -scammer 64201 -scammers 59923 -scams 48422 -scan 45010 -scandal 50507 -scandalous 62066 -scandals 55711 -scanned 45792 -scanner 49296 -scanners 54727 -scanning 46370 -scans 49651 -scant 57399 -scantily 63792 -scanty 60952 -scape 61818 -scapegoat 63077 -scapula 65452 -scapularis 64201 -scar 53286 -scarab 59848 -scarborough 61584 -scarce 53899 -scarcely 54519 -scarcity 55821 -scare 50454 -scarecrow 63077 -scared 48653 -scares 52739 -scarey 64905 -scarf 54226 -scarface 63245 -scarier 63991 -scariest 59101 -scaring 61051 -scarlet 56827 -scarlett 62613 -scarred 59039 -scarring 56485 -scars 54540 -scart 64423 -scarves 59848 -scary 49676 -scat 55202 -scathing 59774 -scatman 64657 -scatter 51511 -scattered 48633 -scatterer 62917 -scatterers 62762 -scattering 47211 -scatters 60952 -scavenge 62917 -scavenged 64905 -scavenger 56618 -scavengers 62469 -scavenging 58688 -scenario 48653 -scenarios 50454 -scene 42778 -scenery 52339 -scenes 46076 -scenic 51570 -scent 52832 -scented 56388 -scents 57970 -scepter 65170 -sceptical 59491 -scepticism 61472 -sceptics 65452 -sch 62917 -schedulable 61152 -schedule 42114 -scheduled 43107 -scheduler 55323 -schedulers 63601 -schedules 48959 -scheduling 47997 -schema 51630 -schemas 58365 -schematic 49365 -schematically 54792 -schematics 58577 -scheme 43060 -schemes 46815 -scheming 61699 -schicken 62762 -schimperi 63991 -schism 63419 -schist 63077 -schistosomiasis 60762 -schists 63991 -schizoaffective 65452 -schizoid 64201 -schizophrenia 52778 -schizophrenic 57009 -schizophrenics 63245 -schlieren 65452 -schmidt 64905 -schnapps 65452 -schneider 64905 -schnell 64201 -scholar 53256 -scholarly 46831 -scholars 49435 -scholarship 48109 -scholarships 51415 -scholastic 59357 -schon 58860 -school 35001 -school's 49572 -schoolboy 60078 -schoolchildren 59039 -schooled 61362 -schooler 64423 -schoolers 62469 -schoolgirl 55963 -schoolgirls 59848 -schoolhouse 63991 -schooling 53597 -schoolmates 65452 -schools 39721 -schoolteacher 64423 -schoolwide 64423 -schoolwork 62762 -schooner 62762 -schrieb 65170 -schwannoma 63245 -schwarz 64423 -schwinn 63792 -schöne 63077 -sci 56862 -sciatic 58065 -sciatica 64201 -science 40542 -sciences 47691 -scientific 42666 -scientifically 54792 -scientifique 65452 -scientifiques 65170 -scientist 50227 -scientist's 63792 -scientists 45650 -scientology 63991 -scifi 62469 -scintigraphic 64905 -scintigraphy 58365 -scintillating 62613 -scintillation 54946 -scintillator 61818 -scion 61256 -scious 65452 -scission 62066 -scissor 57609 -scissorfight 62762 -scissors 54749 -scjp 53988 -sclarkgw 64657 -scleroderma 63991 -sclerosing 61584 -sclerosis 53533 -sclerotherapy 63601 -sclerotic 63077 -sclerotiorum 65452 -scm 58113 -scoff 63792 -scoffed 62917 -scoffs 65170 -scolaire 64657 -scold 61818 -scolded 63077 -scolding 63601 -scoliosis 58802 -sconce 63991 -scone 65170 -scones 63245 -scooby 62613 -scoollgirls 61699 -scoop 50791 -scooped 59292 -scooping 64201 -scoops 58313 -scoot 62917 -scooter 53301 -scooters 56791 -scope 44336 -scoped 63245 -scopes 59039 -scopic 59923 -scoping 59227 -scorch 64905 -scorched 62331 -scorching 60321 -score 41674 -scoreboard 55202 -scorecard 57084 -scorecards 64905 -scored 45763 -scoreless 59923 -scorer 58523 -scorers 61584 -scores 43598 -scoring 47787 -scorn 60856 -scorned 63792 -scorpio 57358 -scorpion 59039 -scorpions 64423 -scotch 58688 -scotland 56293 -scott 53597 -scottish 60321 -scottmingus 64423 -scottsdale 63601 -scotty 62331 -scour 59702 -scoured 60000 -scourge 60952 -scouring 59491 -scours 64201 -scout 54857 -scouted 65170 -scouting 55202 -scouts 55849 -scoutthedoggie 60670 -scp 61362 -scr 64905 -scrabble 65452 -scram 63792 -scramble 56140 -scrambled 55500 -scrambler 63419 -scrambles 64201 -scrambling 55992 -scrap 49873 -scrapbook 56170 -scrapbooking 58065 -scrapbooks 64423 -scrape 53796 -scraped 56899 -scraper 61472 -scrapes 61818 -scraping 56721 -scrapped 57876 -scrapping 59164 -scrappy 62613 -scraps 56420 -scrapyard 63419 -scratch 49952 -scratched 55250 -scratches 54792 -scratching 54499 -scratchy 62469 -scrathcyboy 64423 -scrawled 64201 -scream 52805 -screamed 57084 -screaming 51580 -screamo 65170 -screams 55738 -screeching 62196 -screed 64657 -screen 39684 -screencaps 64657 -screencast 65170 -screened 49739 -screener 58919 -screeners 65452 -screening 44729 -screenings 56080 -screenname 58688 -screenplay 56756 -screens 48736 -screensaver 53952 -screensavers 54380 -screenshot 49906 -screenshots 51580 -screenwriter 59164 -screenwriters 64423 -screenwriting 62917 -screw 47342 -screwball 65170 -screwdriver 58860 -screwdrivers 62196 -screwed 52472 -screwing 55934 -screws 51266 -screwy 65452 -scribble 62469 -scribbled 61051 -scribbles 64423 -scribbling 63601 -scribe 58365 -scribed 53830 -scribes 59491 -scribing 64201 -scrim 64423 -scrimmage 61152 -scrip 65452 -script 44068 -scripted 58162 -scripting 50840 -scription 59101 -scriptional 65452 -scripts 48118 -scriptural 61256 -scripture 56652 -scriptures 57785 -scroll 48766 -scrollbar 61699 -scrolled 62469 -scroller 59630 -scrolling 53988 -scrolls 58417 -scrotal 61940 -scrotum 55992 -scrub 54792 -scrubbed 62762 -scrubber 61051 -scrubbing 59424 -scrubs 59164 -scruffy 62331 -scrum 65170 -scrumptious 60238 -scrupulous 61584 -scrupulously 63077 -scrutinised 64423 -scrutinize 58745 -scrutinized 59923 -scrutinizing 63245 -scrutiny 52107 -scsi 62196 -scuba 53517 -scuff 61362 -scuffed 65452 -scuffing 65452 -scuffle 62917 -sculpt 61051 -sculpted 57831 -sculpting 60078 -sculptor 59101 -sculptors 63792 -sculptural 59164 -sculpture 50915 -sculptured 61818 -sculptures 54302 -scum 58523 -scumbag 65452 -scurried 65170 -scurrilous 65170 -scurry 64423 -scurrying 64657 -scurvy 65452 -scutellarioides 64423 -scuttle 60000 -scuttled 65170 -scwcd 59491 -scx 64423 -scythe 63601 -scène 64657 -sd 54664 -sdf 65170 -sdk 61940 -sds 61256 -se 44130 -sea 42976 -seabed 59848 -seabird 62331 -seabirds 63245 -seaboard 63792 -seach 59164 -seafarers 63245 -seafaring 65452 -seafloor 60405 -seafood 50638 -seafront 60952 -seagate 60492 -seagram's 64657 -seagrass 58365 -seagrasses 65170 -seagull 62762 -seahorse 62469 -seahorses 62196 -seal 46663 -sealant 56862 -sealants 60670 -sealed 47474 -sealer 57358 -sealers 59424 -sealing 51122 -seals 51349 -seam 53662 -seamaster 63419 -seamed 62613 -seamen 63991 -seaming 65452 -seamless 51877 -seamlessly 53970 -seams 54419 -seamstress 65170 -sean 55014 -seaplane 65170 -seaport 64201 -seaports 54170 -sear 60492 -search 30505 -search's 65170 -searchForm 61256 -searchResult 64201 -searchable 52872 -searched 45692 -searcher 60856 -searchers 59101 -searches 41459 -searching 43249 -searchtopic 65452 -seared 60078 -searing 60078 -sears 60952 -seas 55014 -seashore 64905 -seaside 55226 -season 40082 -season's 54207 -seasonal 47050 -seasonality 60405 -seasonally 56899 -seasoned 52130 -seasoning 56862 -seasonings 63991 -seasonkich 62917 -seasons 48944 -seat 42675 -seatback 64201 -seatbelt 59848 -seatbelts 63245 -seated 51511 -seater 57876 -seating 48605 -seats 46154 -seattle 55631 -seaward 60580 -seawater 53549 -seaweed 58212 -seaweeds 63419 -sebaceous 58162 -sebastian 61818 -sebelah 62469 -seborrheic 64201 -sebum 63601 -sec 47290 -secede 60321 -secession 57482 -secessionist 63419 -secluded 55604 -seclusion 61818 -second 34582 -secondaries 65170 -secondarily 61818 -secondary 41860 -seconded 47002 -secondhand 59101 -secondlife 60321 -secondly 58262 -secondment 60492 -seconds 42041 -secrecy 56652 -secret 43973 -secretarial 58470 -secretariat 58212 -secretaries 58017 -secretary 48464 -secretary's 64905 -secrete 56231 -secreted 52085 -secretes 62762 -secretin 63601 -secreting 60856 -secretion 47589 -secretions 56791 -secretive 58919 -secretly 53153 -secretory 52198 -secrets 48771 -secs 51772 -sect 57970 -sectarian 59039 -secteur 64905 -section 36588 -section's 63792 -sectional 50379 -sectioned 56518 -sectioning 59774 -sections 41943 -sector 42455 -sector's 61940 -sectoral 57566 -sectors 47855 -sects 62917 -secular 52622 -secularism 63077 -secularization 64905 -secundum 61256 -secure 41971 -secured 46437 -securely 50277 -secures 54419 -securing 49886 -securities 46687 -securitisation 63601 -securitization 63419 -security 37763 -security's 64657 -secutive 65452 -sed 53010 -sedan 54499 -sedans 61472 -sedate 62196 -sedated 62331 -sedation 56485 -sedative 59292 -sedatives 63991 -sede 64905 -sedentary 57696 -sedge 65452 -sediment 49517 -sedimentary 55178 -sedimentation 54380 -sedimented 63077 -sediments 52521 -sedition 64905 -seduce 58688 -seduced 58470 -seduces 61152 -seducing 62196 -seducting 64905 -seduction 58470 -seductive 57046 -seductively 64201 -see 30243 -seed 45459 -seeded 53549 -seeder 60000 -seeders 54078 -seeding 55578 -seedless 65170 -seedling 55526 -seedlings 53286 -seeds 47120 -seedy 62066 -seein 62917 -seeing 41907 -seek 42849 -seeker 56551 -seekers 52085 -seeking 42369 -seeks 45845 -seem 39670 -seemed 43063 -seeming 56935 -seemingly 49325 -seems 38228 -seen 36715 -seep 60762 -seepage 61362 -seeped 64905 -seeping 63419 -seeps 63601 -sees 45417 -seesaw 64905 -seething 62762 -seg 64657 -sega 59774 -segment 45245 -segmental 56170 -segmentation 51406 -segmented 55526 -segmenting 60321 -segments 46812 -segregate 60000 -segregated 55849 -segregates 64905 -segregating 61472 -segregation 52712 -segs 63245 -segue 65452 -segues 64657 -seguir 65452 -segunda 64905 -segundo 63419 -seguridad 63601 -seguro 62917 -según 63601 -sehen 64201 -sehr 56862 -sei 59039 -seiko 61051 -sein 60670 -seine 60580 -seinen 65452 -seiner 64423 -seinfeld 62917 -seismic 50461 -seismicity 62917 -seit 62613 -seize 52686 -seized 51122 -seizes 60078 -seizing 59292 -seizure 51620 -seizures 52387 -sejdiu 64905 -seks 63601 -seksi 64657 -sel 61584 -selbst 63245 -selcims 63792 -seldom 51700 -select 37967 -selectAllAdminNotes 64905 -selectAllCodeElements 64657 -selectAllDataNotes 64905 -selectAllDesignElements 64657 -selectAllFormatElements 64657 -selectAllIndexElements 64905 -selectAllNotes 64905 -selectable 56080 -selected 38188 -selecting 45685 -selection 37833 -selections 48422 -selective 46079 -selectively 49847 -selectivities 63601 -selectivity 52609 -selector 53517 -selectors 60000 -selectreference 59101 -selects 52256 -selena 60580 -selene 61256 -selenide 59923 -selenite 64905 -selenium 53762 -selenocysteine 64657 -selenoprotein 64201 -selenosugar 65170 -self 42936 -selfhood 65452 -selfish 54302 -selfishness 61584 -selfless 59560 -sell 38788 -sella 60405 -seller 40542 -seller's 44449 -sellers 45572 -selling 41539 -sellmefree 65170 -selloff 65170 -sellout 62917 -sells 47067 -selon 63991 -selves 56791 -sem 57238 -semaine 62331 -seman 62331 -semana 60078 -semanas 62196 -semantic 50185 -semantically 61940 -semantics 53286 -semaphore 59164 -semaphores 61940 -semblance 60856 -semble 63245 -semen 52256 -semester 50615 -semesters 58212 -semi 50923 -semiannual 64905 -semiarid 63077 -semiautomated 65452 -semiautomatic 62066 -semicircle 60492 -semicircles 65452 -semicircular 65452 -semiclassical 60492 -semicolon 59923 -semicolons 65170 -semiconducting 59560 -semiconductor 48562 -semiconductors 54924 -semiempirical 63991 -semifinal 60078 -semifinals 60405 -semigroup 59848 -semigroups 60952 -seminal 52268 -seminar 48265 -seminarians 64905 -seminars 50365 -seminary 60078 -seminiferous 63792 -seminoma 65452 -semiotic 64423 -semiotics 62613 -semiquantal 63601 -semiquantitative 60000 -semis 59702 -semisimple 64423 -semisolid 63991 -semistructured 63245 -semitones 62469 -semper 61699 -sempervirens 65452 -sempre 59491 -sen 55992 -senate 57278 -senator 53796 -senator's 61818 -senatorial 60157 -senators 55552 -sence 58065 -send 36630 -senda 63792 -sender 52256 -sender's 62196 -senders 61256 -sendin 65452 -sending 43933 -sendmail 58212 -sends 47420 -sendwich 64657 -senegal 65452 -senegalensis 63077 -senescence 58417 -senescent 62469 -seni 63792 -senile 59630 -senior 41839 -seniority 58470 -seniors 49899 -sennheiser 60762 -senor 64905 -sens 63792 -sensation 50966 -sensational 56110 -sensations 56585 -sense 40097 -sensed 55323 -sensei 62917 -senseless 58577 -senses 52096 -sensibilities 60000 -sensibility 58745 -sensible 51741 -sensibly 60580 -sensing 49179 -sensitive 39023 -sensitively 60000 -sensitivities 55631 -sensitivity 44114 -sensitization 55934 -sensitize 61940 -sensitized 56452 -sensitizes 62762 -sensitizing 61256 -sensor 44248 -sensorimotor 59923 -sensorineural 63601 -sensors 47772 -sensory 48667 -sensu 60157 -sensual 54380 -sensuality 62196 -sensuous 60238 -sent 38155 -sentation 60856 -sentative 63991 -sented 55877 -sentence 45875 -sentenced 49511 -sentences 49146 -sentencing 52778 -sentient 61256 -sentiment 53501 -sentimental 56935 -sentimentality 65452 -sentiments 56110 -sentinel 56050 -senting 62469 -sentra 63792 -sentria 65452 -sentry 61818 -sents 60952 -senza 61940 -seo 56170 -sep 57524 -sepals 63792 -separability 64905 -separable 57318 -separate 40297 -separated 43853 -separately 47562 -separates 52040 -separating 50856 -separation 44992 -separations 55738 -separatism 64905 -separatist 59101 -separatists 64905 -separator 54499 -separators 60670 -seperate 52164 -seperated 59630 -seperately 63419 -sepia 61940 -sepium 64201 -sepsis 57653 -sept 58017 -septa 63419 -septal 54581 -septate 64423 -september 49828 -septembre 62196 -septembrie 64423 -septic 52521 -septicemia 63245 -septiembre 60405 -septum 57084 -seq 61051 -sequel 51482 -sequela 65452 -sequelae 58979 -sequels 58313 -sequence 40671 -sequenced 53501 -sequencer 57524 -sequences 44336 -sequencing 49959 -sequent 59774 -sequential 49168 -sequentially 53847 -sequently 65170 -sequester 61940 -sequestered 61152 -sequestering 62196 -sequestration 56972 -sequin 59292 -sequined 61584 -sequins 60405 -sequoia 64905 -seqview 65452 -ser 53407 -sera 52007 -serbia 63419 -serbian 65170 -serch 60157 -serdar 63077 -serena 62469 -serenade 62762 -serendipitous 63601 -serendipity 64905 -serene 56721 -serenity 57278 -serfs 64905 -serge 65452 -sergeant 57970 -sergeants 65452 -sergio 61940 -seria 62613 -serial 43018 -serialization 62469 -serialize 64423 -serialized 60580 -serializer 64657 -serially 57653 -serials 55323 -serialz 63792 -sericea 65170 -serie 56827 -seriennummer 65170 -series 37238 -seriesyonkis 64905 -serif 61362 -serigraphed 64905 -serine 54519 -serious 40794 -seriously 45343 -seriousness 55793 -sermon 54992 -sermons 56420 -seroconversion 62331 -seroconvertors 63991 -serogroup 62196 -serologic 59630 -serological 57122 -serologically 64905 -serology 61699 -seroma 65170 -seronegative 62917 -seropositive 59560 -seroprevalence 64657 -seroquel 61362 -serosal 63419 -serotonergic 58860 -serotonin 52597 -serotoninergic 63792 -serotype 57609 -serotypes 58523 -serous 60952 -serovar 59848 -serpent 58262 -serpentine 57923 -serpentinite 64657 -serpents 63792 -serrata 65170 -serrate 62613 -serrated 58162 -serratus 65170 -sertraline 61256 -serum 42928 -serv 64201 -servant 53934 -servant's 65452 -servants 53630 -servation 61152 -servations 64201 -serve 40860 -served 40581 -server 39249 -server's 57923 -servers 44646 -serves 43515 -service 32762 -service's 61699 -serviceable 59923 -serviced 53597 -servicemembers 61940 -servicemen 60157 -servicer 65452 -servicers 65452 -services 33511 -servicing 51211 -servicio 60762 -servicios 61152 -serving 42632 -servings 52927 -servis 64905 -servitude 61699 -servlet 57696 -servlets 60762 -servo 54792 -servos 62331 -servovalve 64905 -será 63245 -ses 55711 -sesame 55500 -sesh 65452 -sesión 64201 -sesquiterpene 65170 -sess 64201 -sessed 63601 -sessile 60670 -session 42100 -sessionId 61472 -sessions 45147 -sessment 63077 -sestamibi 62469 -set 33043 -set's 64201 -setAnyDate 64423 -setContentFromBytes 65452 -setContentFromText 65452 -setNow 64423 -setServerDirectoryAssistanceSettings 64423 -setUserPasswordSettings 64201 -seta 63792 -setae 58262 -setantaus 60157 -setback 53679 -setbacks 58162 -seth 60000 -setifis 62196 -setlist 58523 -setpoint 60762 -sets 40796 -setter 61472 -setters 63601 -setting 40926 -settings 41883 -settle 47615 -settled 47417 -settlement 46247 -settlements 53081 -settler 59630 -settlers 54540 -settles 55226 -settling 52187 -setup 44420 -setups 58802 -seu 57318 -seul 63245 -seule 65452 -seulement 64657 -seus 62196 -seven 40812 -sevenfold 60405 -sevenload 62762 -seventeen 54727 -seventeenth 57609 -seventh 49602 -seventies 59039 -seventy 56862 -sever 57923 -several 35389 -severally 62196 -severance 57524 -severe 42388 -severed 57009 -severely 48736 -severest 65170 -severing 62469 -severity 47622 -sevilla 65452 -sevoflurane 60492 -sew 57524 -sewage 51330 -sewed 63419 -sewer 50591 -sewerage 59560 -sewers 58745 -sewing 52411 -sewn 54727 -sex 37723 -sexReactor 62196 -sexe 59357 -sexed 63245 -sexes 54540 -sexi 63792 -sexier 61256 -sexiest 55631 -sexiness 63991 -sexing 63245 -sexism 59923 -sexist 58470 -sexless 64657 -sexo 57046 -sexpert 60405 -sexperts 65452 -sexs 62066 -sextant 64201 -sextape 64657 -sextet 65452 -sexual 41640 -sexuality 52152 -sexually 48736 -sexvilla 65170 -sexy 42382 -sey 64201 -seyret 64657 -sez 62331 -seznam 63419 -sf 52791 -sfonde 64905 -sfondi 64423 -sftp 63991 -sg 60580 -sgh 65452 -sgn 65170 -sh 51963 -sha 59357 -shabby 59101 -shack 57609 -shackle 63991 -shackled 64905 -shackles 61051 -shad 65452 -shade 49886 -shaded 53679 -shader 59227 -shaders 64201 -shades 51078 -shading 55657 -shadow 48161 -shadowed 61362 -shadowing 58919 -shadows 51899 -shadowy 58860 -shady 55906 -shaft 47339 -shafts 55448 -shag 61699 -shagging 65170 -shaggy 61051 -shah 63601 -shahrukh 65170 -shail 64201 -shake 48761 -shakeela 61818 -shaken 54207 -shaker 56791 -shakers 60580 -shakes 55178 -shakespeare 60405 -shakin 65170 -shaking 50957 -shakira 58745 -shaky 56080 -shale 56791 -shales 61256 -shall 35938 -shallot 64201 -shallots 62469 -shallow 49022 -shallower 58632 -shally 64201 -shalom 65170 -shalt 55711 -sham 54540 -shaman 56388 -shamanism 64905 -shamans 60762 -shambles 64201 -shame 49926 -shamed 61818 -shameful 58919 -shamefully 65452 -shameless 58470 -shamelessly 62331 -shaming 63077 -shampoo 54992 -shampoos 62469 -shamrock 61152 -shane 59923 -shanghai 59774 -shania 65452 -shank 56618 -shankar 64657 -shanks 63792 -shannon 57876 -shanty 64905 -shaogo 57399 -shape 41994 -shaped 46651 -shapefile 63077 -shapely 62196 -shaper 61256 -shapes 47972 -shaping 49913 -shaq 64905 -shard 63792 -shards 61699 -share 35165 -sharebook 65170 -shared 42238 -shareholder 51052 -shareholder's 62331 -shareholders 49119 -shareholding 60157 -shareholdings 64905 -sharemarket 64657 -sharepoint 62917 -shares 42832 -shareware 52791 -sharif 64657 -sharin 64201 -sharing 39815 -shark 52051 -shark's 64423 -sharks 54946 -sharma 63245 -sharon 58017 -sharp 45585 -sharpen 56935 -sharpened 59164 -sharpener 62917 -sharpening 58860 -sharpens 64905 -sharper 56324 -sharpest 59491 -sharpie 65452 -sharply 50607 -sharpness 57399 -sharps 62066 -shat 64423 -shatter 59774 -shattered 55448 -shatteredtenshi 65452 -shattering 60762 -shatters 64201 -shaun 64905 -shave 54770 -shaved 52661 -shaven 61584 -shaver 61152 -shavers 63419 -shaves 63245 -shaving 54321 -shavings 61362 -shaw 62469 -shawl 60670 -shawls 64905 -shawn 59292 -shawty 62469 -shay 62331 -she 32565 -she'd 51284 -she'll 52118 -she's 43252 -shea 61818 -sheaf 62613 -shear 47807 -sheared 60762 -shearer 65170 -shearing 55154 -shears 62331 -shearwater 62066 -sheath 52187 -sheathed 63601 -sheathing 58365 -sheaths 59101 -sheave 62613 -sheaves 63077 -sheboygan 62469 -sheckler 65170 -shed 48427 -shedding 54969 -sheds 54439 -sheen 59164 -sheep 48923 -sheep's 62066 -sheepskin 60856 -sheepskins 65452 -sheer 49541 -sheet 42374 -sheeting 61152 -sheetrock 62613 -sheets 45090 -sheffield 62469 -sheik 64905 -sheikh 65452 -sheila 62331 -shel 63077 -shelby 63991 -shelf 47760 -shelftag 64657 -shell 45797 -shellac 63601 -shelled 60000 -shelley 60670 -shellfish 57238 -shelling 62196 -shells 51920 -shelly 62331 -shelter 48980 -sheltered 54207 -sheltering 61818 -shelters 53346 -shelve 63419 -shelved 60670 -shelves 50791 -shelving 55423 -shemale 51312 -shemales 57696 -shenanigans 61584 -shenzhen 62196 -shepard 62762 -shepards 64201 -shepherd 57653 -shepherd's 63792 -shepherding 64423 -shepherds 59292 -sheppard 64201 -sheqel 64423 -sherbet 64201 -sheriff 55448 -sheriff's 56388 -sheriffs 64657 -sherman 63245 -sherpa 63601 -sherri 64423 -sherry 60321 -sherwood 62331 -sheryl 65452 -shes 53241 -shetty 63792 -shew 64905 -shi 58688 -shia 62331 -shiatsu 63991 -shied 64905 -shield 48933 -shielded 56080 -shielding 54380 -shields 55849 -shift 43461 -shifted 49135 -shifter 54321 -shifters 63419 -shifting 49815 -shifts 47581 -shih 63601 -shikai 64423 -shikamaru 64905 -shill 62917 -shilling 62066 -shillings 62762 -shilpa 65452 -shim 60580 -shimano 60856 -shimmer 63077 -shimmering 58262 -shimmy 63601 -shims 64905 -shin 58688 -shina 64201 -shindig 64905 -shine 49500 -shined 63419 -shines 52509 -shiney 65170 -shingle 59101 -shingles 57524 -shinigami 64423 -shining 52699 -shinjishinji 63991 -shinning 64201 -shiny 51511 -shinymedia 63419 -ship 41994 -ship's 57122 -shipboard 61362 -shipbuilding 60000 -shipment 50599 -shipments 52221 -shipped 45191 -shipper 60157 -shippers 61699 -shipping 38106 -shippuden 59424 -ships 43247 -shipwreck 61152 -shipwrecked 63601 -shipwrecks 63792 -shipyard 58212 -shipyards 60157 -shire 61152 -shirley 63077 -shirt 46048 -shirtflirt 61818 -shirtless 61472 -shirts 48477 -shit 45484 -shit's 64657 -shite 59227 -shits 60321 -shitting 61940 -shitty 56021 -shiva 63419 -shiver 60952 -shivering 58979 -shivers 62762 -shiz 64905 -shkence 64905 -shmop 65452 -sho 57524 -shoal 65452 -shochu 64423 -shock 45758 -shocked 50321 -shocker 57785 -shocking 52141 -shockingly 61699 -shocks 51953 -shockwave 61051 -shockwaves 64905 -shod 65452 -shoddy 60580 -shoe 47107 -shoebox 62613 -shoei 62613 -shoeing 63991 -shoelace 64423 -shoes 43456 -shoestring 62196 -shone 59424 -shook 53346 -shoot 45232 -shooter 51113 -shooter's 64657 -shooters 56356 -shooting 44811 -shootings 56262 -shootout 57318 -shoots 50670 -shop 40347 -shop's 59630 -shopkeeper 63991 -shoplifting 61472 -shopped 57358 -shopper 55448 -shoppers 50171 -shopping 38401 -shops 45004 -shopstyle 65170 -shore 50402 -shoreline 55526 -shorelines 64423 -shores 54188 -shoring 63991 -shorn 64423 -short 37896 -shortage 50087 -shortages 54902 -shortbread 64905 -shortcoming 60762 -shortcomings 55202 -shortcut 53301 -shortcuts 50122 -shorted 60952 -shorten 54813 -shortened 53138 -shortening 54059 -shortens 61472 -shorter 46471 -shortest 52210 -shortfall 56652 -shortfalls 59923 -shorthand 59039 -shorting 61472 -shortlist 51521 -shortlisted 58802 -shortly 47664 -shortness 55684 -shorts 50129 -shortstop 59560 -shortwave 63077 -shorty 60000 -shot 41541 -shotgun 54360 -shotguns 61818 -shots 44992 -shoud 63601 -shoudl 63077 -should 30750 -should've 56652 -shoulda 61362 -shoulder 46426 -shouldered 61472 -shoulders 51017 -shouldn't 46334 -shouldnt 56687 -shout 48101 -shoutbox 56791 -shoutboxes 57741 -shouted 55849 -shouting 55130 -shoutout 64201 -shouts 53211 -shove 57482 -shoved 57160 -shovel 58745 -shoveling 63792 -shovels 62762 -shoves 61584 -shoving 60238 -show 34194 -show's 53597 -showbiz 59848 -showcase 49212 -showcased 55274 -showcases 53226 -showcasing 54519 -showdown 55084 -showed 38854 -shower 46261 -showered 60580 -showerhead 64657 -showering 60157 -showers 51690 -showin 59491 -showing 39692 -showings 61362 -shown 35682 -showpiece 64905 -showroom 54792 -showrooms 56862 -shows 36348 -showtime 57199 -showtimes 58919 -showtimesofficial 53646 -showy 61699 -shox 59292 -shpat 64657 -shqip 57009 -shqiperi 64905 -shqiperia 61940 -shqipria 64905 -shqiptar 64423 -shqiptare 57318 -shrank 63245 -shrapnel 62469 -shred 56687 -shredded 54005 -shredder 59630 -shredders 62469 -shredding 58802 -shreds 60856 -shrek 60157 -shrew 64201 -shrewd 59357 -shrewdly 65452 -shriek 64905 -shrill 62469 -shrimp 50915 -shrimping 59357 -shrimps 62762 -shrine 55398 -shrines 59292 -shrink 52198 -shrinkable 64657 -shrinkage 54133 -shrinking 53796 -shrinks 56791 -shroud 59560 -shrouded 60952 -shrouds 65170 -shrub 53847 -shrubby 60952 -shrubs 53988 -shrug 60670 -shrugged 60157 -shrugs 65170 -shrunk 57482 -shrunken 60856 -shtick 65452 -shu 63245 -shud 59227 -shudder 60492 -shudders 65170 -shuffle 53286 -shuffled 60670 -shuffles 62917 -shuffling 59292 -shui 57566 -shuld 63245 -shun 59630 -shunned 58860 -shunning 64657 -shuns 64905 -shunt 53066 -shunted 63991 -shunting 62613 -shunts 61472 -shure 61256 -shushuskin 60762 -shut 46022 -shutdown 52996 -shutdowns 64201 -shutoff 60078 -shutout 58802 -shutouts 64657 -shuts 54245 -shutter 52256 -shuttered 62066 -shutters 58470 -shutting 54170 -shuttle 49841 -shuttles 60405 -shuttling 65452 -shy 50476 -shying 63991 -shyla 63792 -shyly 63991 -shyness 62331 -shyt 63601 -si 46296 -siRISC 63991 -siRNA 53779 -siRNAs 57160 -sia 59923 -sialic 58113 -sialon 65452 -sialyltransferase 65170 -siamese 64423 -siamo 64201 -sian 62066 -sib 65170 -siberian 63792 -sibility 61256 -sible 55906 -sibling 53830 -siblings 52648 -sibs 64201 -sibutramine 63601 -sic 58523 -sical 63245 -sich 55274 -sick 44915 -sickened 60762 -sickening 60856 -sicker 63245 -sickest 61256 -sickle 54479 -sickly 61818 -sickness 52399 -sicko 63792 -sid 58365 -side 36164 -side's 60762 -sidearm 65170 -sidebar 45041 -sidebars 64657 -sidecases 63991 -sided 53662 -sidekick 57399 -sideline 57566 -sidelined 59164 -sidelines 57440 -sidelobe 60670 -siden 62613 -sider 57358 -siderable 62762 -siderably 65452 -sideration 63991 -sidered 57923 -sidering 64201 -siderophore 64423 -siderostat 62917 -sides 44062 -sideshow 64423 -sidestep 63792 -sidetracked 64201 -sidewalk 53423 -sidewalks 55738 -sidewall 57653 -sidewalls 59848 -sideways 56485 -siding 52648 -sido 60238 -sie 55684 -sieberiana 63077 -siege 55060 -siemens 56721 -siempre 57238 -sienna 63601 -sierra 58802 -sieve 56200 -sieved 63991 -sieves 59848 -sieving 62917 -sification 64423 -sift 60000 -siftbot 63601 -sifted 60580 -sifting 59702 -sig 53899 -sigafoo 63077 -sigh 56452 -sighed 59923 -sighs 61256 -sight 47378 -sighted 58417 -sighting 56687 -sightings 55202 -sights 51580 -sightseeing 54133 -sigma 57199 -sigmatel 62331 -sigmoid 59560 -sigmoidal 62762 -sigmoidoscopy 62762 -sign 36660 -signDatabaseWithServerID 64423 -signage 54439 -signal 39313 -signaled 58313 -signaling 46757 -signalled 61051 -signalling 53095 -signals 43016 -signatories 59560 -signatory 58113 -signature 45470 -signatures 49913 -signed 40471 -signer 63419 -signers 63419 -signi 60405 -signiWcant 63792 -signiWcantly 65170 -significance 45430 -significant 37250 -significantly 39610 -signification 64201 -signified 60405 -signifier 64201 -signifies 51060 -signify 56518 -signifying 59039 -signing 46552 -signings 58860 -signpost 64423 -signposted 59560 -signs 42391 -signup 50213 -signups 57970 -sigs 65170 -sigue 63077 -siguiente 62613 -sigur 65452 -sii 64657 -sikh 62331 -sil 64423 -sila 63792 -silage 57566 -silane 60238 -silanes 64201 -silanization 65170 -silanol 63601 -sildenafil 48450 -silence 49860 -silenced 57741 -silencer 61940 -silencers 62331 -silences 62917 -silencing 53377 -silent 48354 -silently 55711 -silentnight 61818 -silhouette 56231 -silhouetted 62196 -silhouettes 61699 -silica 49173 -silicate 55202 -silicates 59357 -siliceous 62613 -silicic 60321 -silicidation 65452 -silicide 62917 -silico 62613 -silicon 46711 -silicone 50915 -silicosis 65170 -silk 49033 -silken 62917 -silkroad 65170 -silks 63792 -silkscreen 63077 -silkworm 64905 -silky 54879 -sill 59774 -silliness 62331 -sills 59923 -silly 49092 -silo 62196 -silos 62613 -siloxane 64905 -silt 57399 -siltation 64201 -silty 63245 -silva 59848 -silver 43392 -silverado 64423 -silverman 64423 -silvers 65452 -silverware 61152 -silvery 59491 -silvestre 64905 -silvia 63077 -silvicultural 65452 -silyl 63792 -silylated 64201 -sim 51793 -simTK 62196 -simcity 64657 -simian 59357 -similar 35453 -similares 57970 -similarities 50932 -similarity 48372 -similarly 48491 -similiar 54245 -simmer 56080 -simmered 63419 -simmering 59774 -simmers 64201 -simmons 63419 -simon 57482 -simone 61699 -simple 37503 -simplejson 64905 -simplemente 64657 -simpler 50537 -simples 63991 -simplest 51087 -simpletest 60580 -simpletrend 64905 -simplex 54749 -simplicity 50848 -simplification 55423 -simplifications 62196 -simplified 49163 -simplifies 53729 -simplify 50599 -simplifying 55107 -simplistic 55906 -simply 38803 -simpson 55552 -simpsons 57046 -simpy 55084 -simran 60952 -sims 53970 -simulans 65170 -simular 64905 -simulate 50630 -simulated 48505 -simulates 57238 -simulating 54706 -simulation 44690 -simulations 48477 -simulator 51670 -simulators 59227 -simulcast 62196 -simultaneous 48571 -simultaneously 46401 -simvastatin 60405 -sin 47116 -sinatra 64905 -sinc 62917 -since 33818 -sincere 53052 -sincerely 53533 -sincerest 61472 -sincerity 59292 -sinclair 60238 -sind 55178 -sindbis 65170 -sine 54706 -sinensis 64201 -sinewave 65452 -sinful 58017 -sing 46735 -singapore 56140 -singed 65452 -singer 46887 -singer's 59491 -singers 51762 -singh 58417 -singin 63991 -singing 46045 -single 36248 -singled 55821 -singleplayer 65452 -singles 48021 -singlet 54946 -singleton 59292 -singletons 63991 -singlets 62613 -singling 63601 -singly 56170 -sings 50791 -singulair 63601 -singular 50646 -singularities 57399 -singularity 56110 -singularly 60000 -sinh 63077 -sinister 56551 -sink 48590 -sinker 64905 -sinkhole 64423 -sinking 53454 -sinks 52712 -sinned 63245 -sinner 60405 -sinners 59774 -sino 62331 -sins 53630 -sinter 61699 -sintered 54727 -sintering 54059 -sinters 64423 -sinuous 63419 -sinus 50881 -sinuses 59848 -sinusitis 59702 -sinusoid 64905 -sinusoidal 55578 -sinusoids 63077 -sinxaneliwe 64423 -sion 48928 -sional 57199 -sions 54096 -sip 54264 -siphon 61699 -siphoning 65170 -siping 64905 -sipped 63245 -sipping 57876 -sippy 63077 -sips 62762 -sir 54813 -sirbounty 62917 -sire 56721 -sired 60405 -siren 57741 -sirens 59039 -sires 62613 -sirius 63077 -sirloin 61584 -sirup 64201 -sis 51974 -sisal 64423 -sisson 64423 -sissy 59164 -sista 63077 -sistance 63419 -sistas 64905 -sisted 61818 -sistem 63077 -sistema 59424 -sistemas 64657 -sistent 61152 -sister 39559 -sister's 56170 -sisterhood 62196 -sisters 49325 -sisting 62196 -sists 62196 -sit 43369 -sitchin 55423 -sitcom 56827 -sitcoms 62613 -site 31290 -site''s 63245 -site's 49394 -sited 57440 -sitelogo 61256 -sitemap 49330 -siterip 59923 -sites 36251 -sitesmemorable 53646 -sitesmiscellaneousphotographssound 53646 -sitet 63991 -sities 63419 -siting 58745 -sitio 57923 -sition 56518 -sitions 63077 -sitios 64905 -sitive 62613 -sitll 64201 -sito 60580 -sits 48468 -sitter 60762 -sitters 62917 -sittin 64423 -sitting 43796 -sittings 64201 -situ 48741 -situate 59630 -situated 45804 -situation 41405 -situational 56721 -situations 45804 -situs 63792 -sity 55766 -sium 61472 -sive 55299 -sively 60492 -six 38531 -sixes 63792 -sixfold 65452 -sixteen 52725 -sixteenth 57785 -sixth 48278 -sixties 58313 -sixty 52399 -sizable 55226 -size 35838 -sizeable 56420 -sized 47097 -sizeof 61940 -sizes 43541 -sizing 52954 -sizzle 61051 -sizzles 62613 -sizzling 57318 -sj 60405 -sjaakiejj 65170 -sje 51680 -sjlocke 64201 -sk 58577 -ska 56388 -skagen 61362 -skal 63792 -skank 64201 -skanky 63792 -skate 51670 -skateboard 55500 -skateboarder 64905 -skateboarders 63077 -skateboarding 56585 -skateboards 60580 -skated 61699 -skatepark 60952 -skater 57524 -skaters 57524 -skates 55766 -skating 51963 -skecz 62917 -skeen 63991 -skeet 64657 -skelaxin 61940 -skeletal 49285 -skeleton 52858 -skeletons 58365 -skelter 65170 -skenderaj 64423 -skeptic 61699 -skeptical 53796 -skepticism 57160 -skeptics 60238 -sketch 50599 -sketchbook 61256 -sketched 58632 -sketches 53256 -sketching 59702 -sketchy 60670 -skew 57923 -skewed 56721 -skewer 62469 -skewered 64201 -skewers 60238 -skewing 63419 -skewness 61472 -ski 47211 -skibum 60321 -skid 57084 -skidded 64657 -skids 63245 -skied 63601 -skier 59923 -skiers 56756 -skies 53081 -skiff 65452 -skiing 51590 -skilful 62066 -skilfully 63601 -skill 45373 -skilled 47037 -skillet 55963 -skillful 58212 -skillfully 58632 -skills 39969 -skillz 64201 -skilman 65452 -skim 55060 -skimmed 61362 -skimmer 57876 -skimming 61940 -skimp 62066 -skimpy 59424 -skin 39866 -skin's 60000 -skincare 56791 -skinfold 63245 -skinhead 61584 -skinless 61362 -skinnable 65452 -skinned 57876 -skinning 61699 -skinny 51721 -skins 50974 -skint 65452 -skip 41080 -skipped 53679 -skipper 56518 -skippered 64423 -skippers 64657 -skipping 54946 -skippy 64657 -skips 58577 -skirmish 63245 -skirmishes 63792 -skirt 50150 -skirted 63245 -skirting 63601 -skirts 54170 -skis 55202 -skit 57009 -skits 60405 -skittish 64657 -skola 64201 -skool 57923 -skootah 64423 -skrun 63601 -sks 63601 -sku 62917 -skull 51406 -skulls 58523 -skunk 59357 -sky 46282 -sky's 62917 -skyAdvertisement 63991 -skydiving 62066 -skye 63792 -skylight 62613 -skylights 62469 -skyline 56170 -skype 54005 -skyrocket 62613 -skyrocketed 62917 -skyrocketing 58065 -skyscraper 59923 -skyscrapers 60157 -sl 55014 -slab 52472 -slabs 56972 -slack 54879 -slacker 62331 -slackers 65452 -slacking 62762 -slacks 61362 -slag 55877 -slain 53882 -slalom 59227 -slam 53630 -slamball 59702 -slammed 55299 -slamming 58212 -slams 55849 -slander 59702 -slang 54459 -slant 56791 -slanted 56551 -slanting 65452 -slap 51974 -slapped 55992 -slappers 62762 -slapping 59292 -slaps 60157 -slapstick 62066 -slash 53167 -slashdot 58065 -slashed 56862 -slasher 64905 -slashersivi 64423 -slashes 55793 -slashing 60000 -slate 52423 -slated 53226 -slater 65170 -slates 59424 -slats 60000 -slatted 61818 -slau 65170 -slaughter 55274 -slaughtered 56935 -slaughterhouse 64201 -slaughtering 62196 -slave 48557 -slaved 65452 -slavegirl 65452 -slavery 53081 -slaves 52597 -slaving 64201 -slaw 63601 -slay 59848 -slayer 59702 -slaying 56652 -slayings 58802 -sleaze 63792 -sleazy 60580 -sled 56170 -sledding 63077 -sledge 63245 -sleds 61699 -sleek 51846 -sleeker 65170 -sleep 43368 -sleeper 56356 -sleepers 61472 -sleepin 65452 -sleepiness 61051 -sleeping 47153 -sleepless 60078 -sleepover 63077 -sleeps 52725 -sleepwear 60078 -sleepy 55423 -sleet 65452 -sleeve 48309 -sleeved 61152 -sleeveless 59923 -sleeves 52423 -sleigh 60000 -sleight 64201 -slender 54499 -slept 52244 -sleuth 63601 -slew 53485 -slewing 64905 -sli 64657 -slice 49285 -sliced 51387 -slicer 65170 -slicers 63991 -slices 49566 -slicing 57696 -slick 53762 -slickenside 64423 -slicker 63419 -slicks 63245 -slid 55323 -slidable 63601 -slidably 58919 -slide 44798 -slider 52712 -sliders 59164 -slides 48897 -slideshow 48063 -slideshows 56356 -sliding 48970 -slight 46365 -slightest 55578 -slightly 41546 -slim 50499 -slime 58523 -slimline 62917 -slimmer 61818 -slimming 58017 -slimy 61699 -sling 56231 -slinging 64423 -slings 59560 -slingshot 61256 -slingshots 64905 -slinky 62331 -slip 47356 -slipknot 57524 -slippage 60078 -slipped 52791 -slipper 59227 -slippers 56972 -slippery 54992 -slipping 54770 -slips 51570 -slipstream 62331 -slit 53517 -slits 59357 -slitting 61940 -sliver 63792 -slivers 64657 -slo 62613 -slob 63245 -slog 63419 -slogan 54399 -slogans 56585 -sloop 62917 -sloopymitch 64905 -slop 63245 -slope 47649 -sloped 61051 -slopes 50856 -sloping 56862 -sloppy 56021 -sloshing 63601 -slot 46824 -slotMusic 65452 -sloth 62762 -slots 48902 -slotted 55711 -slotting 63419 -slouch 63601 -slough 62066 -slovinski 64905 -slow 42215 -slowdown 53830 -slowdowns 63419 -slowed 52968 -slower 48771 -slowest 58470 -slowing 51772 -slowly 45463 -slowness 61256 -slows 53256 -slr 59848 -slrfl 63792 -sludge 52546 -slug 56585 -slugger 63245 -slugging 63601 -sluggish 56518 -slugs 60405 -sluice 64657 -slum 56721 -slumb 65452 -slumber 60238 -slump 54519 -slumped 59560 -slumping 60321 -slumps 61940 -slums 59292 -slung 61818 -slur 59702 -slurp 63601 -slurping 64905 -slurred 62469 -slurries 62917 -slurry 52609 -slurs 61940 -slush 61940 -slushy 64905 -slut 50343 -sluts 53695 -slutty 59164 -sly 58577 -sm 54813 -sma 65452 -smack 54969 -smackdown 60238 -smacked 60762 -smacking 62762 -smacks 61256 -smahony 63419 -small 34447 -smaller 40384 -smallest 48261 -smallholder 64657 -smallish 61699 -smallmouth 65170 -smallness 63245 -smallpantomime 65170 -smallpox 58745 -smalls 64423 -smallville 56356 -smarking 61472 -smart 44287 -smartboard 60856 -smartbuilding 65452 -smartcard 62196 -smarter 53124 -smartest 57009 -smartfilter 64201 -smartly 61818 -smartmovie 62613 -smartphone 54439 -smartphones 56652 -smarts 59848 -smartyproxy 65170 -smash 52913 -smashed 55500 -smasher 64905 -smashes 61362 -smashing 56452 -smattering 61940 -smbpasswd 62613 -smc 65170 -smd 63792 -sme 61584 -smear 54879 -smeared 59424 -smearing 61256 -smears 56140 -smectic 64905 -smectite 65452 -smegma 59560 -smegmatis 63419 -smell 48025 -smelled 57318 -smelling 56080 -smells 53124 -smelly 57524 -smelt 59164 -smelter 61152 -smelting 62469 -smi 64905 -smile 47107 -smiled 53988 -smiles 52673 -smiley 55107 -smileys 58745 -smilies 58365 -smiling 51909 -smirk 62469 -smirking 64201 -smite 63991 -smith 50454 -smiths 64423 -smitten 60952 -smocked 61818 -smog 58212 -smoke 45655 -smokechecker 63991 -smoked 51396 -smokefree 62469 -smokeless 61584 -smoker 57653 -smokers 51877 -smokes 57653 -smokey 61051 -smokin 61152 -smoking 44905 -smokinjoeevil 64657 -smoky 57278 -smoldering 61818 -smolts 65452 -smooch 64423 -smooth 43466 -smoothed 55849 -smoother 54078 -smoothes 65452 -smoothest 63419 -smoothie 59774 -smoothies 62196 -smoothing 52968 -smoothly 51752 -smoothness 57785 -smother 62917 -smothered 60856 -smothering 61472 -smouldering 64423 -sms 52062 -smtp 60670 -smudge 64905 -smug 61051 -smuggle 60078 -smuggled 58688 -smuggler 63991 -smugglers 60405 -smuggling 56080 -smurf 56231 -smurfs 58802 -smut 60000 -smyrna 61051 -smyth 65170 -sn 51463 -snack 51762 -snacking 63991 -snacks 52411 -snaffle 64423 -snag 56050 -snagged 60762 -snagging 63077 -snags 61940 -snail 55154 -snails 56935 -snake 50136 -snake's 64905 -snakes 51846 -snakeskin 63077 -snaking 64905 -snap 49620 -snapped 54041 -snapper 59923 -snapping 56721 -snappy 61051 -snaps 55250 -snapshot 52291 -snapshots 55849 -snare 57970 -snared 64657 -snares 62762 -snarky 62762 -snarl 64905 -snarling 65452 -snatch 57009 -snatched 58470 -snatches 63245 -snatching 64657 -snazzy 61699 -snd 62196 -sneak 52118 -sneaked 63601 -sneaker 57831 -sneakers 55348 -sneaking 58577 -sneaks 61699 -sneaky 58919 -sneer 65452 -sneeze 59292 -sneezing 62613 -sneha 62331 -snes 64201 -snide 63991 -sniff 57122 -sniffed 61940 -sniffer 57399 -sniffing 58470 -snip 61940 -snipe 64201 -sniper 55250 -snipers 62917 -sniping 63245 -snipped 63077 -snippet 56050 -snippets 56324 -snippit 64905 -snitch 64657 -snl 59491 -snob 61051 -snobbery 65170 -snobby 62066 -snobs 62613 -snooker 58162 -snoop 57970 -snooping 62331 -snoopy 64905 -snooty 61699 -snooze 61472 -snopes 60670 -snore 64201 -snoring 58860 -snorkel 59424 -snorkeling 58470 -snorkelling 63792 -snort 60580 -snorted 64201 -snorting 59848 -snot 61584 -snotty 64657 -snout 63077 -snow 44842 -snowball 60670 -snowballs 63601 -snowboard 54479 -snowboarder 65170 -snowboarders 65170 -snowboarding 56356 -snowboards 61362 -snowed 60856 -snowfall 58113 -snowflake 60670 -snowflakes 62331 -snowing 63601 -snowman 59101 -snowmen 64905 -snowmobile 57199 -snowmobiles 62331 -snowmobiling 64201 -snows 63792 -snowshoe 63991 -snowshoes 64657 -snowstorm 61472 -snowy 57524 -snub 60078 -snubbed 62331 -snubs 62762 -snuck 60492 -snuff 59702 -snug 58417 -snuggle 59774 -snuggled 64657 -snuggling 64657 -snuggly 64423 -snugly 59357 -so 29080 -soa 59039 -soak 54360 -soaked 53679 -soaker 65452 -soaking 54479 -soaks 62196 -soap 49319 -soapbox 64201 -soaps 57278 -soapy 58313 -soar 55274 -soared 57238 -soaring 53865 -soars 56899 -sob 61362 -soba 63245 -sobbing 64201 -sober 55657 -sobering 60238 -sobre 51541 -sobriety 60321 -soc 64201 -socal 64201 -socalled 65170 -soccer 46245 -sociable 62762 -social 37069 -sociale 62331 -sociales 62066 -socialise 63077 -socialising 63601 -socialism 55274 -socialist 53301 -socialists 61362 -socialite 61940 -socialization 58470 -socialize 58523 -socialized 60078 -socializing 59424 -socially 49325 -socialsciences 63792 -sociated 59630 -sociation 63601 -sociaux 64657 -societal 54419 -societies 50122 -society 41921 -society's 55604 -socio 63245 -sociocultural 61472 -sociodemographic 61152 -socioeconomic 53024 -sociolinguistic 65170 -sociological 56080 -sociologist 59923 -sociologists 59560 -sociology 54560 -sociopathic 64657 -sociopolitical 65452 -société 61362 -sock 54813 -socket 49207 -sockets 53988 -sockeye 64201 -socks 51670 -socom 64905 -sod 54749 -soda 51511 -sodas 57653 -sodium 43376 -sodomy 57653 -sods 65452 -sof 64423 -sofa 52327 -sofas 60952 -soffit 59848 -sofia 63077 -soft 41919 -softball 54023 -softballsales 65170 -softcam 65452 -softcore 57160 -softcover 64657 -soften 56899 -softened 56585 -softener 61699 -softening 55178 -softens 59164 -softer 54041 -softest 61051 -softgels 64423 -softly 55474 -softness 57831 -softs 65452 -softtabs 64423 -software 35759 -software's 61256 -softwares 56324 -softwear 63601 -softwood 59923 -softy 63601 -sofware 65170 -soggy 59164 -sohbet 61584 -soi 63792 -soil 42549 -soiled 59164 -soiling 63245 -soilless 65170 -soils 49847 -soir 63792 -soirée 62917 -soit 61940 -soittoäänet 65452 -sojourn 60238 -sojourning 61362 -sol 55250 -sola 61818 -solace 57970 -solanacearum 61940 -solar 44239 -solaris 60670 -sold 39953 -solder 51444 -solderable 64657 -soldered 59164 -soldering 56021 -solders 63419 -solderstop 63991 -soldier 49553 -soldier's 61152 -soldiers 46429 -sole 44686 -soleil 61940 -solely 44823 -solemn 57160 -solemnly 60952 -solenoid 55423 -solenoids 63792 -soles 56485 -soleus 60405 -soley 63601 -solfataricus 60405 -solicit 53109 -solicitation 52609 -solicitations 59101 -solicited 57399 -soliciting 54924 -solicitor 55711 -solicitors 57609 -solicits 61472 -solicitudes 64201 -solid 40773 -solidarity 54601 -solide 63792 -solider 64201 -solidi 64201 -solidification 58017 -solidified 57160 -solidifies 65170 -solidify 59039 -solidifying 63792 -solidly 58313 -solids 50983 -solidworks 62917 -solitaire 59292 -solitary 52968 -soliton 58632 -solitons 57440 -solitude 56721 -soll 63077 -solo 46105 -soloist 59101 -soloists 61818 -solomon 62917 -solos 56862 -solstice 62613 -solu 64905 -solubilities 63991 -solubility 52198 -solubilization 60000 -solubilize 63991 -solubilized 57696 -solubilizing 64657 -soluble 47803 -solute 53796 -solutes 59923 -solution 37481 -solutions 39379 -solvable 59630 -solvate 64657 -solvated 62762 -solvation 60670 -solve 44054 -solved 47339 -solvency 59923 -solvent 47123 -solvents 51511 -solver 57741 -solvers 61152 -solves 53813 -solving 47231 -solvolysis 64905 -solvolytic 65452 -som 54059 -soma 50678 -somal 63077 -somali 61940 -somata 62762 -somatic 52584 -somatosensory 61051 -somatostatin 57923 -somaya 65452 -somber 59774 -sombre 63991 -some 29372 -somebody 46420 -somebody's 57741 -someday 53630 -somehow 47467 -someone 37567 -someone's 50185 -someones 57831 -someplace 58113 -somerset 63419 -somes 61472 -somethin 58688 -something 35461 -something's 60492 -somethings 62196 -sometime 49001 -sometimes 40331 -someting 64201 -someway 63601 -somewhat 43815 -somewhere 45631 -somite 63419 -sommelier 64657 -somo 63991 -somone 61940 -somos 60238 -somthing 58523 -son 41424 -son's 52509 -sonable 64657 -sonal 59774 -sonar 55877 -sonata 59292 -sone 64201 -song 38882 -song's 58919 -songbird 65452 -songbirds 62066 -songbook 63991 -songs 40905 -songtext 59039 -songtexte 63077 -songwriter 55448 -songwriters 59630 -songwriting 57238 -soni 63792 -sonia 59848 -sonic 51711 -sonically 64657 -sonicated 59630 -sonication 58113 -sonido 62196 -sonnei 62917 -sonnel 65170 -sonnet 62196 -sonnets 61699 -sonny 62469 -sono 56756 -sonogram 63991 -sonographic 59630 -sonography 58113 -sonoma 63077 -sonora 61940 -sons 48662 -sont 54879 -sony 47500 -sonyericsson 62196 -soo 52363 -soompi 64657 -soon 39046 -sooner 50431 -soonest 51953 -sooo 52303 -sooocoool 61472 -soot 56420 -sooth 63991 -soothe 58470 -soother 63077 -soothers 64201 -soothes 60762 -soothing 53153 -sooty 63245 -sop 64905 -sophia 62917 -sophie 60762 -sophisticated 46963 -sophistication 54879 -sophmore 64657 -sophomore 52387 -sophomores 62331 -soppimata 64423 -soprano 55657 -sor 58212 -sora 61940 -sorbate 59923 -sorbed 59039 -sorbent 59630 -sorbents 62331 -sorbet 58262 -sorbitol 58979 -sorcerer 65170 -sorcery 64201 -sordid 60856 -sore 51148 -sorely 56935 -soreness 60762 -sores 55821 -sorghum 57970 -sororities 65170 -sorority 58632 -sorption 55037 -sorrow 55448 -sorrowful 62762 -sorrows 60405 -sorry 44420 -sors 62613 -sort 40967 -sorta 56687 -sortable 63601 -sortase 63792 -sorted 44560 -sorter 60238 -sortie 65170 -sorting 50129 -sorts 48667 -sory 62762 -sos 60078 -sot 63601 -sotto 61818 -sottotitoli 64905 -sou 60492 -soubor 65170 -souffle 64905 -soufulow 65170 -sought 44890 -soul 45725 -soul's 63601 -sould 64201 -soulful 57238 -soulja 61940 -soulless 64201 -soulmate 64905 -souls 51909 -sound 38641 -soundboard 63792 -soundcard 60078 -sounded 50774 -sounder 60321 -sounding 51406 -soundings 65170 -soundly 61362 -soundness 60238 -soundproof 65452 -soundproofing 65452 -sounds 41907 -soundscape 63077 -soundscapes 63077 -soundtrack 49060 -soundtracks 56110 -soup 48907 -soupking 64423 -soups 55821 -sour 50560 -source 36543 -sourcebook 64657 -sourced 54479 -sources 40108 -sourcing 53256 -sourdough 61699 -soured 63245 -sous 57696 -south 42213 -southampton 63792 -southbound 57524 -southeast 51731 -southeastern 53316 -southerly 61584 -southern 44266 -southernmost 61699 -southpaw 64905 -southward 60078 -southwards 62066 -southwest 45706 -southwestern 55202 -souvenir 56652 -souvenirs 58262 -souvent 65452 -sovereign 53597 -sovereignty 55552 -soviet 62066 -sow 57876 -sowed 64905 -sowhatifit'sdark 64423 -sowie 62613 -sowing 57046 -sown 58313 -sows 61362 -sox 59164 -soy 49382 -soya 59923 -soybean 53407 -soybeans 57046 -soymilk 65452 -soz 62331 -sp 52968 -spa 48269 -space 37714 -spacecraft 52791 -spaced 49529 -spaceflight 64201 -spacepaintings 64201 -spacer 47297 -spacers 58688 -spaces 45673 -spaceship 59292 -spaceships 63991 -spacetime 57238 -spacetimes 62066 -spacewalk 62331 -spacey 62917 -spacial 64423 -spacing 50591 -spacings 60405 -spacious 49411 -spade 58860 -spades 61051 -spaghetti 55711 -spain 54059 -spake 62613 -spall 61472 -spalling 64201 -spam 35899 -spammed 58417 -spammer 59702 -spammers 58017 -spamming 56972 -spams 62066 -span 48913 -spandex 55474 -spaniel 62331 -spanish 50379 -spank 57923 -spanked 58632 -spanking 52339 -spankings 63419 -spanks 62196 -spanned 56972 -spanner 64201 -spanning 50734 -spans 47335 -spar 57199 -sparc 56721 -spare 47641 -spared 55992 -spares 54969 -sparing 58113 -sparingly 58523 -spark 50306 -sparked 54041 -sparking 59357 -sparkle 55107 -sparkled 65452 -sparkles 60856 -sparkling 52739 -sparkly 60405 -sparks 53286 -sparring 61051 -sparrow 60238 -sparrows 61152 -spars 63245 -sparse 52472 -sparsely 57831 -sparsity 64905 -spartan 64201 -spartans 63245 -spas 54622 -spasm 59774 -spasmodic 65452 -spasms 58688 -spastic 60580 -spasticity 62196 -spat 56791 -spate 59101 -spatial 44827 -spatially 52765 -spatiotemporal 60492 -spatter 64201 -spatula 61584 -spawn 55934 -spawned 56200 -spawning 55963 -spawns 60492 -spay 63245 -spayed 63077 -spb 63792 -speach 63601 -speak 42252 -speaker 45624 -speaker's 59039 -speakerphone 61584 -speakers 45927 -speaking 45285 -speaks 46837 -spear 56972 -spearhead 60078 -spearheaded 58262 -spearheading 62196 -spearheads 63991 -spears 52256 -spec 51560 -speci 61818 -special 36192 -speciale 65452 -specialisation 59424 -specialisations 64905 -specialise 54041 -specialised 52509 -specialises 56324 -specialising 54360 -specialism 65170 -specialisms 64657 -specialist 45415 -specialists 48445 -specialities 60492 -speciality 57009 -specialization 54519 -specializations 63077 -specialize 49464 -specialized 46506 -specializes 49168 -specializing 49342 -specially 48088 -specials 50662 -specialties 54879 -specialty 47087 -speciation 58745 -specication 63601 -specications 65452 -specie 64423 -species 39946 -specific 36083 -specifically 42003 -specification 46748 -specifications 44692 -specificities 59039 -specificity 48427 -specifics 54459 -specified 40241 -specifies 50881 -specify 45356 -specifying 50865 -specimen 48131 -specimens 45787 -speciosa 63792 -specious 65170 -speck 60157 -speckle 60492 -speckled 62613 -specks 61472 -specs 47679 -specslaserdisc 53646 -spect 61818 -spectacle 55992 -spectacles 61256 -spectacular 48208 -spectacularly 58979 -spectator 57278 -spectators 55526 -specter 60580 -spective 60238 -spectra 44218 -spectral 45989 -spectrally 61940 -spectre 61940 -spectrogram 64423 -spectrograph 61152 -spectrometer 52007 -spectrometers 59630 -spectrometric 58632 -spectrometry 52375 -spectrophotometer 56585 -spectrophotometric 58919 -spectrophotometrically 61940 -spectrophotometry 61940 -spectropolarimeter 65170 -spectroscopic 51888 -spectroscopically 64201 -spectroscopies 65452 -spectroscopy 49130 -spectrum 43241 -specular 59039 -speculate 54041 -speculated 55631 -speculates 62917 -speculating 61152 -speculation 51349 -speculations 60157 -speculative 55299 -speculators 60078 -sped 58523 -speech 42979 -speeches 52805 -speechless 62762 -speed 38731 -speeded 62066 -speedily 62613 -speeding 53052 -speedo 60580 -speedometer 60492 -speedport 63077 -speeds 47984 -speedstream 65170 -speedtest 60670 -speedtouch 63792 -speedup 60492 -speedway 61818 -speedy 53454 -speichern 58523 -speleothem 63245 -speleothems 61699 -spell 48126 -spellbinding 63792 -spellbound 64657 -spellcheck 63601 -spelled 50823 -speller 65452 -spelling 48519 -spellings 58417 -spells 53211 -spelt 57831 -spencer 60000 -spencers 62066 -spend 41325 -spenders 64657 -spending 43590 -spends 50638 -spent 41082 -sperm 47126 -spermatic 64905 -spermatid 64423 -spermatids 64201 -spermatocyte 65452 -spermatocytes 63991 -spermatogenesis 59491 -spermatophore 65170 -spermatophores 65452 -spermatozoa 55448 -spermicide 61152 -spermicides 63991 -spermidine 65170 -spermine 65452 -sperms 63245 -spew 61584 -spewed 62331 -spewing 60405 -spf 65170 -sph 65452 -sphere 49726 -spheres 53226 -spheric 64423 -spherical 49815 -spherically 61472 -spheroidal 64657 -spheroids 64201 -sphincter 55578 -sphincters 62196 -sphingolipid 65170 -sphingomyelin 64657 -sphingomyelinase 64905 -spi 64657 -spice 52472 -spiced 57238 -spices 54023 -spicules 63419 -spicy 51453 -spider 51131 -spiderman 60078 -spiders 55250 -spidey 64201 -spied 61472 -spiel 64201 -spies 57741 -spiffy 62613 -spigot 60157 -spike 51610 -spiked 54857 -spikes 53613 -spikesbint 63601 -spiking 58919 -spiky 60762 -spill 52085 -spillage 62331 -spilled 56293 -spilling 58313 -spillover 60000 -spillovers 59424 -spills 55250 -spilt 62613 -spin 46242 -spina 63601 -spinach 54005 -spinal 46432 -spindle 52339 -spindles 58860 -spine 49657 -spinel 57122 -spinellisation 65452 -spines 56551 -spingel 63601 -spinnaker 60952 -spinner 55274 -spinners 62066 -spinning 50115 -spinocerebellar 63601 -spinoff 61699 -spinon 64201 -spinor 62066 -spinosa 64905 -spinothalamic 63419 -spinous 61699 -spins 53052 -spiny 61051 -spiral 49946 -spiraling 60000 -spiralis 63419 -spiralling 63991 -spirally 63419 -spirals 59491 -spire 62762 -spirit 44982 -spirited 55711 -spirits 51229 -spiritual 45789 -spiritualism 62917 -spirituality 54151 -spiritually 56899 -spirituous 65452 -spirochaetes 65170 -spirometry 64423 -spirulina 61362 -spit 54023 -spitalfields 63601 -spite 48581 -spiteful 62469 -spits 53952 -spitting 58162 -spl 64905 -splanchnic 62066 -splash 52007 -splashed 59774 -splashes 59923 -splashing 59491 -splashy 65170 -splat 64657 -splatter 63601 -splattered 61699 -splays 65170 -spleen 50742 -spleens 60321 -splendid 53549 -splendidly 63991 -splendidus 63245 -splendor 59292 -splendour 61699 -splenectomized 61940 -splenectomy 60762 -splenic 55526 -splenocytes 59848 -splenomegaly 63601 -splice 55631 -spliced 57199 -splicing 54581 -spline 55906 -splines 58688 -splineways 65170 -splint 61152 -splinter 59164 -splintered 65452 -splinters 63601 -splints 63792 -split 44585 -splits 53952 -splitted 64657 -splitter 54835 -splitters 63792 -splitting 50033 -splittings 64905 -splot 63601 -splurge 63245 -spoil 54341 -spoilage 63991 -spoiled 54685 -spoiler 55037 -spoilers 56293 -spoiling 61472 -spoils 59491 -spoilt 60321 -spokane 62066 -spoke 45678 -spoken 47515 -spokes 58577 -spokesman 48212 -spokesmen 63991 -spokespeople 64423 -spokesperson 54151 -spokespersons 65452 -spokeswoman 52459 -spolszczenie 60856 -spond 64657 -sponded 64657 -sponding 56756 -sponds 61940 -spondylitis 61584 -spondylosis 65170 -sponge 53346 -spongebob 60580 -sponges 59848 -spongiform 61940 -spongy 61699 -sponse 57160 -sponses 60157 -sponsible 62331 -sponsor 46144 -sponsor's 61256 -sponsored 43845 -sponsoring 52387 -sponsors 48076 -sponsorship 50774 -sponsorships 60762 -spontaneity 61051 -spontaneous 48186 -spontaneously 52778 -spoof 54969 -spoofed 63792 -spoofing 62469 -spoofs 63245 -spooked 61818 -spooktacular 62762 -spooky 55631 -spool 54399 -spools 63077 -spoon 53779 -spoonful 62331 -spooning 59039 -spoons 59292 -sporadic 53331 -sporadically 60762 -spore 54245 -spores 55154 -sporozoites 63991 -sport 44339 -sport's 62066 -sported 61362 -sporti 64905 -sporting 48548 -sports 39936 -sportsbooks 65452 -sportscar 63792 -sportsman 62469 -sportsmanship 62331 -sportsmen 62762 -sportsnetwork 63245 -sportswear 58470 -sportswriter 62917 -sporty 55657 -sporulation 63077 -spose 65170 -spot 42917 -spotless 60580 -spotlight 51017 -spotlighted 64201 -spotlighting 65452 -spotlights 59560 -spots 46634 -spotted 49146 -spotter 62613 -spotters 61256 -spotting 54879 -spotty 59164 -spousal 57566 -spouse 49726 -spouse's 60000 -spouses 54581 -spout 57831 -spouted 64423 -spouting 63245 -spouts 63991 -spp 61051 -sprain 60000 -sprained 60492 -sprains 62196 -sprang 58919 -sprawl 59101 -sprawled 64201 -sprawling 56551 -spray 47177 -sprayed 53081 -sprayer 62066 -spraying 53109 -sprays 56791 -spread 42745 -spreader 60321 -spreading 47927 -spreads 51640 -spreadsheet 52175 -spreadsheets 57609 -spree 56899 -sprees 65452 -sprig 65170 -sprightly 63601 -sprigs 62917 -spring 42716 -spring's 64201 -springboard 59774 -springen 63419 -springer 64905 -springfield 63245 -springing 59923 -springs 49553 -springsteen 64657 -springtime 60670 -sprinkle 56935 -sprinkled 57399 -sprinkler 54749 -sprinklers 62066 -sprinkles 64905 -sprinkling 58919 -sprint 52872 -sprinted 64201 -sprinter 62331 -sprinting 62331 -sprints 63991 -sprite 56862 -sprites 58313 -sprocket 60952 -sprockets 64201 -sprout 58632 -sprouted 63245 -sprouting 58470 -sprouts 58523 -spruce 55037 -sprucio 64905 -sprung 58113 -sprunka 61362 -spss 61256 -spud 62196 -spun 54226 -spunk 59292 -spunky 61362 -spur 54188 -spurge 64905 -spurious 55849 -spurl 58017 -spurned 63077 -spurns 62762 -spurred 56721 -spurring 63245 -spurs 56485 -spurt 61152 -spurte 63419 -spurts 64423 -sputter 62196 -sputtered 57399 -sputtering 53813 -sputum 57046 -spy 49547 -spybot 62469 -spycam 61256 -spyder 63792 -spyhunter 65452 -spying 57358 -spyware 49959 -spørsmål 62762 -sq 49130 -sqft 46552 -sql 52673 -sqlite 65170 -sqm 57609 -squabble 63792 -squabbling 64423 -squad 49732 -squadron 58688 -squadrons 64905 -squads 58212 -squalid 64423 -squall 65452 -squamous 52141 -squander 62066 -squandered 60238 -square 41452 -squared 54706 -squarely 56972 -squares 50357 -squaring 63245 -squash 52175 -squashed 61584 -squashing 65452 -squat 58065 -squats 59164 -squatter 63419 -squatters 61152 -squatting 63245 -squeak 63077 -squeaky 61152 -squeal 61584 -squealing 63077 -squeamish 64201 -squeegee 60405 -squeeze 51104 -squeezed 54946 -squeezes 60078 -squeezing 57009 -squib 64905 -squid 56293 -squidoo 61584 -squiggly 64905 -squint 64423 -squire 64423 -squirm 65170 -squirming 64905 -squirrel 55423 -squirrels 57970 -squirt 56050 -squirted 64905 -squirting 57524 -squirts 62613 -squish 64423 -squished 65452 -squishy 62762 -squishycutegirl 64905 -sr 57238 -src 56452 -sri 60492 -srl 58065 -sro 58262 -srry 63601 -srt 55711 -srw 64905 -sry 62066 -ss 53934 -ssDNA 62917 -ssa 63419 -ssbb 61940 -ssc 64201 -ssh 55992 -sshd 62917 -ssl 60952 -sso 54969 -sspears 60078 -sspears's 64657 -sss 63792 -st 45490 -sta 58113 -staal 65170 -stab 55906 -stabbed 54283 -stabbing 56080 -stabilisation 58802 -stabilise 59774 -stabilised 60670 -stabilising 62196 -stabilities 60952 -stability 43717 -stabilization 51502 -stabilize 52435 -stabilized 52521 -stabilizer 56585 -stabilizers 62469 -stabilizes 58417 -stabilizing 53549 -stable 43038 -stables 58113 -stably 56356 -stabs 61362 -staccato 64201 -stacey 61472 -stack 47694 -stackable 60856 -stacked 51570 -stacker 60492 -stacking 53226 -stacks 54380 -stacy 62469 -stad 64905 -stadia 64423 -stadium 50623 -stadiums 56485 -staff 37708 -staff's 58979 -staffed 53970 -staffer 58470 -staffers 57009 -staffing 50507 -stafford 63601 -staffs 56021 -stag 57440 -stage 39994 -stagecoach 64905 -staged 52375 -stages 44512 -stagger 61818 -staggered 56827 -staggering 55849 -staggers 65452 -staging 51620 -stagnant 58017 -stagnated 65452 -stagnation 59702 -staid 63792 -stain 50815 -stained 47453 -staining 47173 -stainless 45949 -stains 53695 -stair 56170 -staircase 55448 -staircases 63792 -stairs 51425 -stairway 61699 -stairwell 63792 -stake 49234 -staked 60492 -stakeholder 54399 -stakeholders 49959 -stakes 53153 -staking 65452 -stale 56791 -stalemate 62762 -stalk 57278 -stalked 60000 -stalker 58632 -stalkers 61818 -stalking 57046 -stalks 58365 -stall 52534 -stalled 56170 -stalling 60078 -stallion 58262 -stallions 62196 -stalls 52130 -stalwart 60492 -stalwarts 64423 -stamford 64423 -stamina 57524 -stamp 49190 -stampAll 63991 -stampa 64201 -stamped 52399 -stampede 61940 -stamping 56899 -stamps 52423 -stan 54439 -stance 51368 -stances 58017 -stanchion 64657 -stand 40899 -standalone 54479 -standard 37109 -standardisation 59560 -standardise 63991 -standardised 56485 -standardization 54188 -standardize 58365 -standardized 48831 -standardizes 64657 -standardizing 60762 -standards 40548 -standby 50890 -standbys 63792 -stander 65170 -standing 43453 -standings 55274 -standoff 58313 -standout 57653 -standouts 64423 -standpoint 55849 -stands 44461 -standstill 60405 -standup 62196 -stanford 62917 -stanky 65170 -stanley 53346 -stanly 63792 -stannous 64201 -stant 57566 -stantial 63419 -stantially 65170 -stants 63792 -stanza 59774 -stanzas 64657 -stapes 64423 -staph 61362 -staphylococcal 60670 -staphylococci 60952 -staphylococcus 65170 -staple 51877 -stapled 60856 -stapler 59424 -staplers 63991 -staples 55631 -stapling 59424 -star 40058 -star's 58860 -starboard 59923 -starbucks 59292 -starburst 64905 -starch 52018 -starches 61152 -starchy 64905 -starcraft 59923 -stardom 60000 -stardust 63991 -stare 53392 -stared 55202 -stares 58212 -starfish 57785 -stargate 58577 -staring 52559 -stark 54439 -starkly 62762 -starlet 61699 -starlets 63077 -starlight 60952 -starlings 64423 -starr 61152 -starred 52968 -starring 49893 -starry 61051 -stars 37564 -starsat 65170 -starshine 64657 -starship 61584 -starstuff 65170 -starstyle 60405 -start 35468 -started 37884 -starter 49423 -starters 54151 -startin 65170 -starting 39448 -startle 59039 -startled 57923 -startling 55348 -startlingly 62917 -starts 42480 -startup 49614 -startups 58417 -starvation 56485 -starve 59702 -starved 57238 -starvik 63601 -starving 56200 -starwars 64201 -starzmedia 59357 -staré 63601 -stash 56021 -stashed 62331 -stasis 61818 -stat 53271 -stata 63419 -state 35014 -state's 47811 -stated 41023 -stateful 63991 -statehood 63792 -stateless 60670 -stately 57923 -statement 39838 -statements 42762 -stateroom 62917 -states 39991 -stateside 64201 -statesman 60157 -statesmen 64905 -statewide 50932 -static 43488 -statically 60405 -statics 62613 -statin 59357 -stating 49006 -statins 59923 -station 41495 -station's 56972 -stationarity 65452 -stationary 48487 -stationed 53565 -stationery 55766 -stationing 64423 -stations 44428 -statistic 52858 -statistical 43820 -statistically 47024 -statistician 64905 -statisticians 62196 -statistics 41631 -statistik 63601 -statistique 61256 -statment 65452 -stato 63419 -stator 54664 -stats 45258 -statue 51909 -statues 55373 -statuesque 65170 -stature 56080 -status 39480 -statusbar 61472 -statuses 63245 -statute 48638 -statutes 52291 -statutorily 62331 -statutory 47392 -staunch 59292 -staunchly 64657 -stave 60078 -stay 39306 -stayed 46488 -stayin 64423 -staying 46787 -stays 47879 -std 58577 -stderr 65170 -stdout 64905 -ste 61584 -stead 58065 -steadfast 59774 -steadfastly 61699 -steadily 50630 -steading 64423 -steady 46778 -steak 51193 -steakhouse 61699 -steakhouses 64905 -steaks 55604 -steal 48872 -stealer 58979 -stealing 51846 -steals 53988 -stealth 55711 -stealthy 64657 -steam 46918 -steamboat 63792 -steamed 56324 -steamer 56518 -steamers 62613 -steaming 57876 -steampunk 63601 -steamship 62762 -steamy 58365 -stearate 63601 -stearic 61256 -stearothermophilus 63792 -steatosis 60157 -steed 65452 -steeds 64657 -steel 41645 -steele 62613 -steelers 61584 -steelhead 64201 -steelmaker 63792 -steels 56356 -steely 62917 -steep 50285 -steeped 58919 -steeper 58523 -steepest 59292 -steeping 65452 -steeple 62613 -steeply 59101 -steer 52559 -steerable 63991 -steered 58065 -steerer 64423 -steering 47190 -steers 59424 -stefani 63245 -steganography 63991 -steht 60762 -stein 59227 -steko 63991 -stella 61256 -stellar 51193 -stellate 60580 -stelle 64905 -stem 45004 -stemmed 58860 -stemming 55373 -stems 49886 -stench 62331 -stencil 58919 -stencils 60405 -stenoses 61362 -stenosis 52739 -stenotic 62917 -stent 54096 -stented 64423 -stenting 61940 -stentless 61472 -stents 57609 -step 38895 -stepchildren 65452 -stepdaughter 62762 -stepfather 62613 -steph 63077 -stephan 65170 -stephanie 57609 -stephen 52996 -stephenie 65452 -stephens 65452 -stepinrazor 64201 -stepmania 64657 -stepmother 60405 -stepmothers 63991 -stepped 48954 -stepper 59227 -stepping 50718 -steps 40293 -stepsister 64905 -stepwise 55299 -stereo 47664 -stereochemical 63601 -stereochemistry 60157 -stereogum 63601 -stereoisomers 65452 -stereolithography 65452 -stereological 64423 -stereos 62917 -stereoscopic 60670 -stereoselective 62613 -stereoselectivity 65170 -stereospecific 63792 -stereotactic 63991 -stereotaxic 62469 -stereotype 56485 -stereotyped 60952 -stereotypes 54685 -stereotypical 58979 -stereotyping 60952 -steric 56050 -sterically 60762 -sterile 50157 -sterilised 64657 -sterility 60157 -sterilization 57524 -sterilize 63792 -sterilized 57399 -sterilizer 63601 -sterilizing 60580 -sterling 51406 -stern 55250 -sternal 59848 -sterner 65452 -sternotomy 64423 -sternum 61362 -steroid 51580 -steroidal 63419 -steroidogenesis 62066 -steroidogenic 63601 -steroids 51985 -sterol 59923 -sterols 61584 -stethoscope 61362 -steve 50742 -steveOooo 65452 -steven 53182 -stevens 57566 -stevie 59848 -stew 57046 -steward 60078 -stewards 60238 -stewardship 56687 -stewart 56551 -stewed 62613 -stews 64423 -stfu 63419 -stg 63601 -sth 61152 -sti 63991 -stick 44614 -sticker 50409 -stickers 51492 -stickies 63792 -sticking 51184 -sticks 49919 -sticky 51087 -stiff 51620 -stiffen 62613 -stiffened 63792 -stiffener 63419 -stiffening 59491 -stiffer 59560 -stiffness 51825 -stifle 60762 -stifled 61584 -stifling 61584 -stig 64423 -stigma 55474 -stigmatized 63991 -stil 58313 -stile 60670 -stiles 64905 -stiletto 59923 -stilettos 64905 -still 33378 -stillborn 65452 -stiller 64905 -stilling 64657 -stillness 61940 -stills 56231 -stilt 64657 -stilts 61362 -stimulant 55766 -stimulants 60856 -stimulate 48711 -stimulated 48736 -stimulates 52085 -stimulating 50115 -stimulation 45785 -stimulations 62331 -stimulator 57084 -stimulators 62331 -stimulatory 56485 -stimuli 50484 -stimulus 48751 -sting 54601 -stinger 63077 -stinging 59424 -stingray 63601 -stings 60762 -stingy 61699 -stink 58632 -stinking 60238 -stinks 60670 -stinky 60405 -stint 55107 -stints 60492 -stipe 63991 -stipend 58919 -stipends 63419 -stipulate 59774 -stipulated 54770 -stipulates 59101 -stipulating 64423 -stipulation 58365 -stipulations 61256 -stipules 64905 -stir 50865 -stiri 64905 -stirred 51752 -stirrer 62762 -stirring 51000 -stirrup 65170 -stirs 57970 -stitch 54519 -stitched 55906 -stitches 56585 -stitching 54902 -stitute 64423 -stituted 64201 -stitution 63419 -stk 57399 -stmt 64201 -sto 58065 -stochastic 50439 -stochastically 64657 -stock 38279 -stock's 62762 -stockbroker 63991 -stocked 53423 -stockholder 59039 -stockholders 54581 -stockholm 64201 -stocking 53407 -stockings 53581 -stockist 62469 -stockists 62469 -stockmarket 64423 -stockpile 62066 -stockpiles 62762 -stockpiling 63601 -stocks 45708 -stockton 64905 -stocky 64423 -stodgy 65170 -stoic 62613 -stoichiometric 55631 -stoichiometry 57524 -stoke 61256 -stoked 58017 -stokes 63991 -stole 51148 -stolen 48131 -stoma 60670 -stomach 47630 -stomachs 59923 -stomatal 61472 -stomatitis 63077 -stomp 58979 -stomped 61584 -stomping 59923 -stomps 65452 -ston 62196 -stone 44815 -stone's 61472 -stoned 58113 -stoner 60238 -stones 49325 -stoneware 60000 -stonework 65452 -stoning 64905 -stony 59491 -stood 46578 -stooges 65452 -stool 54207 -stools 56972 -stoop 62066 -stooped 64905 -stoopid 65452 -stop 38910 -stopcock 64905 -stoped 63419 -stoping 65170 -stoplight 62066 -stopover 59630 -stopp 65452 -stoppage 60157 -stoppages 64657 -stopped 44019 -stopper 57785 -stoppers 62613 -stoppin 60238 -stopping 47518 -stops 47050 -stopwatch 61699 -stor 64905 -storage 40005 -storages 62469 -store 36624 -store's 55906 -stored 42451 -storefront 57318 -storefronts 63991 -storehouse 63991 -stores 40437 -storey 52765 -storeys 61051 -storia 64201 -storied 61584 -stories 39202 -storing 48811 -storm 46301 -stormed 58632 -storming 61051 -storms 51238 -stormwater 53813 -stormy 57566 -story 37180 -story's 59424 -storyboard 61472 -storyboards 64905 -storybook 62613 -storyline 54792 -storylines 57785 -storyteller 61584 -storytelling 54946 -stout 57696 -stove 51550 -stoves 56652 -stovetop 63245 -stow 62196 -stowage 64423 -stowed 62469 -stp 63991 -str 56687 -strDBName 65452 -strDataSourceName 65452 -strImageSrcText 65452 -strPassWord 65452 -strSQL 63991 -strUserID 65452 -strabismus 63991 -straddle 61152 -straddled 65170 -straddles 62469 -straddling 61362 -strafing 65170 -straggling 64905 -straight 41809 -straightaway 65170 -straighten 56756 -straightened 57696 -straightener 62469 -straighteners 64201 -straightening 58577 -straighter 63245 -straightforward 50576 -straightforwardly 63601 -straights 62762 -strain 43681 -strained 54041 -strainer 57318 -strainers 63419 -straining 58860 -strains 45311 -straint 64423 -straints 62196 -strait 60762 -straits 62917 -strand 50409 -stranded 53256 -stranding 62066 -strands 51741 -strange 45613 -strangely 55604 -strangeness 61699 -stranger 51444 -stranger's 63991 -strangers 52940 -strangest 58688 -strangle 62613 -strangled 59923 -stranglehold 62762 -strangling 60762 -strangulation 58365 -strani 63245 -strap 49081 -strapless 59039 -strapon 58919 -strapped 57046 -strapping 60321 -strappy 64657 -straps 51741 -strat 60580 -strata 54685 -stratcat 65452 -strate 58065 -strated 57084 -strategic 43445 -strategically 53485 -strategies 42723 -strategist 57482 -strategists 60321 -strategize 64201 -strategy 41447 -strates 61699 -stratford 61940 -stratification 55657 -stratified 54499 -stratify 65452 -stratifying 65170 -stratigraphic 58688 -stratigraphy 59357 -stratocaster 62196 -stratosphere 61152 -stratospheric 60952 -stratum 56324 -stratus 65170 -straw 52597 -strawberries 56485 -strawberry 54685 -straws 61818 -stray 53153 -strayed 61584 -straying 63991 -strays 62469 -streak 52256 -streaked 62331 -streaking 63792 -streaks 59039 -stream 43947 -streamate 65170 -streamed 57566 -streamer 63601 -streamers 61940 -streamflow 63792 -streaming 47725 -streamline 54264 -streamlined 54041 -streamlines 60238 -streamlining 57876 -streams 48548 -streamwise 62762 -street 41467 -streetcar 61940 -streetpreacher 61362 -streets 45787 -streetsboro 65452 -streetscape 61152 -streetscene 64657 -streetwear 64201 -strenght 62196 -strength 41758 -strengthen 47721 -strengthened 51942 -strengthening 49972 -strengthens 56140 -strengths 48431 -strenuous 56618 -strenuously 64905 -strep 61818 -streptavidin 61584 -streptococcal 57084 -streptococci 59424 -streptococcus 63077 -streptomycin 57318 -streptozotocin 61940 -stress 41188 -stressed 49302 -stresses 49168 -stressful 52858 -stressing 55711 -stressor 60000 -stressors 56935 -stretch 46506 -stretchable 64657 -stretched 51211 -stretcher 58688 -stretches 53010 -stretching 50060 -stretchy 61362 -strewn 59357 -striata 65452 -striatal 57524 -striate 65452 -striated 61818 -striations 63245 -striatum 57238 -stricken 57160 -strict 47314 -stricted 63792 -stricter 57358 -strictest 59292 -strictly 45848 -stricto 62917 -stricture 60762 -strictures 61472 -stride 57358 -strident 62469 -strides 56140 -striding 65452 -strife 57524 -stright 64905 -strigosus 63792 -strike 45572 -strikeouts 61256 -striker 53970 -strikers 59039 -strikes 49141 -striking 47871 -strikingly 57199 -string 42842 -stringed 62196 -stringency 63792 -stringent 52198 -stringently 65170 -stringing 62331 -strings 49308 -stringy 65170 -strip 45287 -stripe 52818 -striped 54041 -stripes 52872 -striping 60580 -stripline 64657 -stripped 51877 -stripper 53899 -strippers 56618 -stripping 52940 -strips 48796 -striptease 60157 -striptiz 64657 -strive 47170 -strived 61818 -strives 52845 -striving 53501 -strobe 57524 -strode 62469 -stroke 45917 -stroked 60321 -stroker 63077 -strokes 52187 -stroking 60492 -stroll 53934 -strolled 61051 -stroller 54459 -strollers 58577 -strolling 59357 -strolls 62762 -strom 49860 -stroma 56935 -stromag 62762 -stromal 52107 -stroman 60580 -stromanthe 65170 -stromata 64201 -strong 38542 -stronger 45934 -strongest 48771 -stronghold 56687 -strongholds 62613 -strongly 42479 -strontium 59227 -strony 63419 -strove 62762 -struck 47544 -struct 51202 -structed 60157 -struction 58470 -structural 43081 -structurally 52996 -structure 37893 -structure's 64905 -structured 48093 -structureless 63792 -structures 42157 -structuring 56485 -struggle 46998 -struggled 51762 -struggles 50799 -struggling 48450 -strum 64905 -strumming 61256 -strung 56899 -strut 57399 -struts 56827 -strutting 63792 -struvite 60856 -stránka 65452 -sts 61940 -stu 63991 -stuart 60078 -stub 55604 -stubble 61051 -stubborn 55849 -stubbornly 63077 -stubby 62469 -stubs 51920 -stucco 60238 -stuck 45992 -stud 52411 -studded 56356 -student 39305 -student's 50335 -studenten 63991 -students 36119 -studi 63419 -studied 42106 -studies 37507 -studio 44284 -studio's 63077 -studios 51275 -studious 65452 -studs 53346 -study 34684 -study's 59039 -studying 45556 -stuff 40331 -stuffed 50865 -stuffing 55299 -stuffs 58417 -stuffy 60670 -stuhlmannii 64905 -stumble 52913 -stumbled 53565 -stumblers 60321 -stumbles 59424 -stumbleupon 51670 -stumbling 57741 -stump 57278 -stumped 59491 -stumping 64657 -stumps 60952 -stun 57482 -stung 59560 -stunned 54706 -stunner 63792 -stunning 46937 -stunningly 59923 -stuns 61362 -stunt 54207 -stunted 60492 -stunting 63991 -stunts 55906 -stupa 60856 -stupas 63792 -stupcat 64657 -stupendous 62762 -stupid 45389 -stupidest 61584 -stupidity 56721 -stupidly 61699 -stupor 65452 -sturdy 52363 -sturgeon 64905 -stutter 63991 -stuttering 62066 -stutzeri 64423 -style 38679 -stylebook 63601 -styled 54560 -styler 63419 -styles 45914 -stylesheet 59292 -stylesheets 63077 -styleshout 65170 -stylet 57696 -styling 52571 -stylings 63245 -stylish 48247 -stylishly 62331 -stylist 55526 -stylistic 57785 -stylistically 63419 -stylists 61152 -stylized 56972 -stylus 55226 -stymied 62917 -styrene 56420 -styrenic 64423 -styrofoam 62331 -su 48721 -suMMaRy 64423 -sua 56756 -suai 63792 -suas 64201 -suave 61584 -sub 46672 -subacute 58860 -subalgebra 61699 -subalgebras 64905 -subalpine 64201 -subaquifer 63991 -subarachnoid 57358 -subarctic 65452 -subarea 63077 -subaru 60856 -subassemblies 65170 -subassembly 65170 -subatomic 63601 -subband 61152 -subbands 65452 -subbed 59560 -subbing 64201 -subcarrier 63792 -subcarriers 60952 -subcategories 59491 -subcategory 60580 -subcellular 56618 -subchannels 63792 -subchapter 61584 -subchondral 64905 -subclass 54399 -subclasses 56170 -subclavian 61256 -subclinical 60157 -subclipse 64657 -subclone 63792 -subcloned 57399 -subclones 64201 -subcloning 63792 -subclover 65452 -subcodes 64423 -subcommittee 56110 -subcommittees 64201 -subconscious 56652 -subconsciously 64201 -subcontinent 62066 -subcontract 59702 -subcontracting 60321 -subcontractor 59164 -subcontractors 59491 -subcontracts 65170 -subcortical 60952 -subcribe 64423 -subcribers 63792 -subcritical 63601 -subculture 59491 -subcultured 61584 -subcultures 63077 -subcutaneous 52686 -subcutaneously 57399 -subdevice 60157 -subdevices 65170 -subdir 63991 -subdirectories 64423 -subdirectory 59848 -subdivide 60670 -subdivided 54902 -subdividing 65170 -subdivision 49789 -subdivisions 55226 -subdomain 60000 -subdomains 57084 -subduction 60856 -subdue 62762 -subdued 58688 -subdural 62196 -subepidermal 65170 -subepithelial 62762 -suber 65452 -subfamilies 61818 -subfamily 58860 -subfolder 62469 -subfolders 63245 -subform 63419 -subforum 64201 -subframe 64657 -subgame 64905 -subgenius 65452 -subgenomic 63601 -subgingival 63419 -subglacial 64657 -subglottic 64905 -subgrade 64657 -subgraph 62196 -subgroup 51630 -subgroups 53095 -subheading 62762 -subheadings 65452 -subir 64423 -subject 36369 -subject's 55684 -subjected 46323 -subjecting 57046 -subjection 65170 -subjective 49234 -subjectively 61051 -subjectivity 61472 -subjects 42051 -subjugation 63792 -sublattice 63419 -sublet 61699 -sublethal 61051 -sublets 62762 -sublicense 64423 -sublicensees 63601 -sublimation 60762 -sublime 56899 -subliminal 57084 -sublingual 58979 -sublists 63601 -subluxation 61152 -submachine 65170 -submandibular 58860 -submanifold 64657 -submanifolds 63792 -submarine 54380 -submarines 60580 -submatrix 64657 -submaxillary 63792 -submaximal 60856 -submenu 58417 -submenus 65170 -submerge 64657 -submerged 54419 -submersible 60856 -submersion 64201 -submicron 59292 -submission 45164 -submissions 49124 -submissive 56356 -submit 40442 -submits 55906 -submittal 58860 -submitted 40878 -submitter 59630 -submitters 65170 -submitting 46887 -submodel 64905 -submodule 65452 -submucosal 61818 -subnational 57482 -subnet 56721 -subnets 63077 -suboptimal 57923 -suborder 65452 -subordinate 53988 -subordinated 58919 -subordinates 60670 -subordination 60670 -subpar 64657 -subparagraph 57876 -subparagraphs 65170 -subpart 59357 -subperiosteal 65170 -subpleural 65170 -subplot 63419 -subplots 64905 -subpoena 58470 -subpoenaed 63077 -subpoenas 61699 -subpopulation 58262 -subpopulations 58688 -subprime 54902 -subquestion 61362 -subregion 59101 -subregional 64201 -subregions 61584 -subregulation 63419 -subresolution 63792 -subrogated 65452 -subrogation 58162 -subroutine 59101 -subroutines 62331 -subs 54560 -subsample 61256 -subsamples 64423 -subscale 59560 -subscales 58979 -subscribe 43146 -subscribed 50940 -subscribeprivacy 63792 -subscriber 49886 -subscriber's 60952 -subscribers 44635 -subscribes 56170 -subscribing 52886 -subscript 57831 -subscription 43246 -subscriptions 49841 -subscripts 59630 -subsea 60405 -subsection 50143 -subsections 59101 -subsequence 60856 -subsequences 62196 -subsequent 42891 -subsequently 45804 -subservient 63245 -subset 48243 -subsets 53081 -subside 62613 -subsided 60492 -subsidence 57785 -subsides 64201 -subsidiaries 50974 -subsidiary 47228 -subsidies 53109 -subsidise 62469 -subsidised 59491 -subsidize 59292 -subsidized 56231 -subsidizing 62196 -subsidy 53301 -subsist 62762 -subsistence 57923 -subsoil 61152 -subspace 55711 -subspaces 59702 -subspecialty 64423 -subspecies 58979 -substance 45243 -substances 47204 -substandard 58523 -substantia 59702 -substantial 44102 -substantially 44560 -substantiate 56518 -substantiated 58162 -substantiating 63991 -substantiation 61362 -substantive 51511 -substantively 63419 -substation 58688 -substations 64423 -substituent 55500 -substituents 54622 -substitute 46345 -substituted 48529 -substitutes 55154 -substituting 54664 -substitution 49234 -substitutional 60580 -substitutions 54302 -substrate 43818 -substrates 49113 -substratum 61362 -substring 60670 -substructure 59164 -substructures 64657 -subsumed 62469 -subsurface 53407 -subsystem 53695 -subsystems 56262 -subtelomeric 61940 -subtended 63792 -subterfuge 65452 -subterranean 57653 -subtest 62196 -subtests 62066 -subtext 62762 -subthalamic 65170 -subthreshold 60856 -subtiitrid 65170 -subtilis 54706 -subtitle 55202 -subtitled 62331 -subtitles 49359 -subtitrari 60405 -subtitulos 60670 -subtle 48949 -subtleties 60405 -subtlety 61256 -subtly 57566 -subtopics 57831 -subtotal 57653 -subtract 55738 -subtracted 54969 -subtracting 54341 -subtraction 55766 -subtractive 63601 -subtree 59039 -subtrees 64201 -subtropical 57653 -subtype 55274 -subtypes 54078 -subtítulos 65170 -subunit 50108 -subunits 52673 -suburb 53271 -suburban 50898 -suburbia 61818 -suburbs 52315 -subversion 55526 -subversive 58745 -subvert 61584 -subverted 64905 -subverting 65452 -subverts 64905 -subwavelength 64905 -subway 52699 -subways 63245 -subwoofer 55060 -subwoofers 63991 -succeed 48697 -succeeded 50108 -succeeding 54341 -succeeds 55578 -succes 64423 -succesful 61584 -succesfully 60762 -success 40477 -successes 52363 -successful 39894 -successfull 62917 -successfully 42541 -succession 52233 -successive 49130 -successively 55348 -successor 52018 -successors 56687 -succinate 58860 -succinct 60670 -succinctly 62469 -succinic 60321 -succinyl 64905 -succulent 57876 -succumb 59101 -succumbed 58745 -succumbing 63991 -succumbs 63991 -succursale 56324 -sucess 64657 -sucessful 64423 -sucessfully 63792 -such 30607 -suche 62917 -suchen 64201 -suck 47741 -sucked 52534 -sucker 55992 -suckers 58523 -suckin 64905 -sucking 49572 -suckling 58745 -sucks 49190 -sucky 63077 -sucrose 53196 -suction 51762 -sud 62196 -sudan 62762 -sudangrass 65170 -sudden 47664 -suddenly 46468 -sudo 52571 -sudoku 58979 -sue 50815 -sued 51899 -suede 54399 -suelo 63991 -suerte 63792 -sues 54341 -sueño 65170 -sufentanil 63792 -suffer 46288 -suffered 45974 -sufferer 61256 -sufferers 56200 -suffering 46457 -sufferings 61818 -suffers 50499 -suffice 56827 -suffices 58632 -sufficiency 57970 -sufficient 42503 -sufficiently 47269 -suffix 55552 -suffixes 61152 -suffocate 65170 -suffocated 63792 -suffocating 63601 -suffocation 65452 -suffrage 62066 -suffused 64201 -sufi 64423 -sugar 44596 -sugarcane 59357 -sugared 62196 -sugars 54170 -sugary 60952 -sugasm 65170 -suggest 39953 -suggested 41481 -suggesting 45174 -suggestion 47687 -suggestions 42618 -suggestive 53211 -suggests 42842 -suhagraat 63792 -sui 61362 -suicidal 53470 -suicidality 65170 -suicide 47649 -suicides 58313 -suid 63245 -suing 55934 -suis 58212 -suisse 65452 -suit 44127 -suitability 51920 -suitable 41690 -suitably 53316 -suitcase 56687 -suitcases 61152 -suite 45671 -suited 47795 -suites 52399 -suiting 63245 -suitor 61699 -suitors 63077 -suits 48751 -suivant 65452 -sujet 61362 -suk 64657 -suki 64201 -sukuk 64905 -sul 58212 -sulbactam 60321 -sulcus 62331 -sulfa 64657 -sulfasalazine 65452 -sulfate 49893 -sulfated 59702 -sulfates 63792 -sulfatide 61362 -sulfatides 63419 -sulfation 60078 -sulfhydryl 60238 -sulfide 54835 -sulfides 60952 -sulfite 61472 -sulfonamide 65170 -sulfonamides 61940 -sulfonate 62066 -sulfonated 59292 -sulfonates 64905 -sulfone 60580 -sulfonic 62469 -sulfonylurea 63792 -sulfoxide 58577 -sulfur 51266 -sulfuric 56618 -sulindac 58919 -sulla 61940 -sullen 63601 -sullivan 63419 -sully 65452 -sulphate 52546 -sulphates 63991 -sulphide 59774 -sulphides 63601 -sulphonate 65452 -sulphonic 65452 -sulphur 53454 -sulphuric 58523 -sult 61472 -sultan 62331 -sulted 64201 -sulting 61699 -sultry 58860 -sults 56652 -sum 43769 -suman 64905 -sume 63601 -sumed 60952 -sumer 65452 -suming 63245 -summa 63245 -summaries 51113 -summarily 59491 -summarise 57970 -summarised 55423 -summarises 59164 -summarising 61699 -summarization 63601 -summarize 52534 -summarized 48975 -summarizes 51600 -summarizing 57318 -summary 42765 -summarymemorable 53646 -summaryplot 53646 -summation 54499 -summationdisplay 63991 -summations 64905 -summed 54245 -summer 41020 -summer's 56262 -summers 54207 -summertime 58523 -summerville 64201 -summery 65452 -summing 55578 -summit 49651 -summits 61584 -summon 56452 -summoned 56170 -summoning 62917 -summons 55299 -summonses 64905 -sumo 60670 -sumone 65170 -sump 57566 -sumption 59039 -sumptuous 57524 -sums 51043 -sumthin 62066 -sumthing 61584 -sumtin 65452 -sun 43775 -sun's 58065 -sunbathing 61051 -sunbeam 61256 -sunbeds 62917 -sunblock 63419 -sunburn 60078 -sunburst 61818 -sundae 64657 -sunday 52648 -sundays 64657 -sundown 61362 -sundried 63991 -sundries 65452 -sundry 60238 -sunfish 62917 -sunflower 56140 -sunflowers 63991 -sung 52423 -sunglass 62762 -sunglasses 52509 -sungmi 64657 -sunita 65170 -sunk 55906 -sunken 58162 -sunlight 52327 -sunning 63419 -sunny 49458 -sunnyvale 64423 -sunrise 54664 -sunroof 61472 -sunroom 64201 -suns 61256 -sunscreen 57318 -sunscreens 64905 -sunset 51650 -sunsets 59630 -sunshade 65452 -sunshine 52351 -sunspot 64423 -sunt 59101 -suntan 63792 -suntiki 65452 -suo 64423 -suomi 53153 -sup 52546 -supa 61818 -super 43802 -superabsorbent 63991 -superabsorbents 64905 -superalloy 65170 -superalloys 63601 -superannuation 57876 -superb 47919 -superba 63601 -superbe 64905 -superblock 64905 -superbly 57876 -superbowl 64657 -superbum 65452 -supercar 60492 -supercars 65170 -supercede 64905 -superceded 65170 -supercharged 60580 -supercharger 59292 -superchargers 63991 -superchilled 64423 -superchilling 65452 -superclass 63419 -supercoiled 63601 -supercomputer 62917 -superconducting 53316 -superconductive 61472 -superconductivity 59774 -superconductor 57399 -superconductors 59424 -supercooled 62331 -supercritical 58745 -superdelegate 62469 -superdelegates 64423 -superelastic 62917 -superfamily 58365 -superfans 64905 -superficial 51415 -superficially 61152 -superficie 63792 -superfigers 64905 -superfluid 61256 -superfluous 60157 -superfused 65170 -superfusion 62917 -supergravity 61940 -supergroup 63601 -superguide 57831 -superheated 62762 -superheavy 63601 -superhero 55849 -superheroes 58688 -superhighway 64657 -superhuman 61699 -superimposed 54302 -superimposing 64423 -superimposition 64423 -superintendent 54170 -superintendent's 64657 -superintendents 61818 -superior 44372 -superiority 54041 -superiorly 64201 -superiors 60580 -superlative 60952 -superlattice 63792 -superlattices 64905 -supermajority 65170 -superman 58577 -supermarket 52040 -supermarkets 55373 -supermassive 64201 -supermodel 59560 -supermodels 63077 -supernatant 50832 -supernatants 54188 -supernatural 53565 -supernova 58470 -supernovae 64201 -superoxide 54151 -superparamagnetic 63077 -superposed 61051 -superposition 56935 -superpower 56231 -superpowers 56452 -supersaturated 62762 -supersaturation 63991 -superscalar 65170 -superscript 58162 -superscripts 63245 -supersede 59923 -superseded 56791 -supersedes 57696 -superset 65452 -supersized 62613 -supersonic 58417 -superspreading 63991 -superstar 54399 -superstars 58745 -superstition 62331 -superstitions 64905 -superstitious 62469 -superstore 62613 -superstructure 60238 -supersymmetric 58577 -supersymmetry 61940 -supertalk 65452 -supervise 54078 -supervised 51700 -supervises 59491 -supervising 54321 -supervision 48156 -supervisor 50499 -supervisor's 65452 -supervisors 52886 -supervisory 53407 -superyacht 63991 -supine 57482 -supp 63601 -supper 56170 -supplant 62331 -supplanted 62762 -supple 57524 -supplement 47664 -supplemental 51017 -supplementary 52074 -supplementation 53346 -supplemented 48746 -supplementing 58523 -supplements 48436 -supplied 43026 -supplier 45799 -supplier's 61362 -suppliers 45220 -supplies 43601 -supply 39699 -supplying 49796 -support 33575 -supported 40841 -supporter 51899 -supporters 48464 -supporting 42518 -supportive 49108 -supporto 62469 -supports 42244 -suppose 46778 -supposed 43803 -supposedly 50654 -supposes 61472 -supposing 61256 -supposition 60321 -suppositories 64905 -suppository 61699 -suppress 50823 -suppressant 62917 -suppressed 50856 -suppresses 55178 -suppressing 55963 -suppression 48761 -suppressive 58365 -suppressor 54302 -suppressors 58365 -suppurative 63419 -supra 55037 -suprachiasmatic 63792 -supracrustal 62762 -supramolecular 62066 -supranational 64423 -suprapubic 63077 -supraventricular 60000 -supremacist 63601 -supremacists 61699 -supremacy 58262 -supreme 51069 -supremely 59630 -supremo 63601 -supremum 64657 -suprise 59292 -suprised 58162 -suprises 60856 -suprisingly 63419 -supérieure 64905 -sur 44323 -sural 64201 -suranga 64423 -surangas 63991 -surcharge 54499 -surcharges 59848 -sure 35294 -sured 56935 -surefire 65452 -surely 47843 -surement 60492 -surements 59164 -sures 60670 -suresh 65452 -surest 65170 -surety 59848 -surf 49302 -surface 37398 -surfaced 56050 -surfaces 45094 -surfacing 59424 -surfactant 50840 -surfactants 55154 -surfboard 61584 -surfboards 61584 -surfed 63077 -surfer 56551 -surfers 55373 -surficial 64423 -surfing 50476 -surfs 63792 -surge 49365 -surged 58577 -surgeon 50006 -surgeon's 60492 -surgeons 52175 -surgeries 54360 -surgery 42434 -surgeryAbdominal 62613 -surges 56585 -surgical 44751 -surgically 55373 -surging 57923 -suring 63245 -surly 63077 -surmise 64423 -surmised 63077 -surmount 63245 -surmounted 63245 -surname 49325 -surnames 57358 -surpass 56324 -surpassed 55877 -surpasses 58688 -surpassing 59357 -surplus 49488 -surpluses 60238 -surprise 46194 -surprised 45792 -surprises 53052 -surprising 48278 -surprisingly 50350 -surreal 56551 -surrealism 58979 -surrealist 61699 -surrender 53010 -surrendered 56791 -surrendering 60952 -surrenders 64905 -surreptitious 65452 -surrey 60000 -surrogate 54380 -surrogates 62196 -surround 50424 -surrounded 47318 -surrounding 43364 -surroundings 52778 -surrounds 53316 -surtout 65452 -suru 65170 -surveillance 47672 -survey 41299 -survey's 64657 -surveyed 51008 -surveying 55250 -surveyor 59774 -surveyors 61152 -surveys 46787 -survivability 62066 -survivable 63245 -survival 43628 -survive 47279 -survived 48552 -survives 55398 -survivin 62762 -surviving 49886 -survivor 53423 -survivor's 64657 -survivors 50983 -survivorship 63419 -sus 53392 -susan 57318 -susceptibilities 61051 -susceptibility 49319 -susceptible 49157 -suscipit 62917 -suse 62331 -sushi 53196 -susie 60856 -suskind 61699 -suspect 46118 -suspect's 62331 -suspected 47533 -suspecting 63792 -suspects 51321 -suspend 51140 -suspended 46840 -suspenders 60762 -suspending 56827 -suspends 57318 -suspense 56080 -suspenseful 62196 -suspension 45777 -suspensions 53377 -suspicion 51996 -suspicions 58470 -suspicious 51814 -suspiciously 61051 -sussex 62196 -sustain 49405 -sustainability 49834 -sustainable 45145 -sustainably 61940 -sustained 46435 -sustaining 53662 -sustains 58470 -sustenance 62066 -sutherland 65170 -sutra 61699 -sutton 65452 -suture 53934 -sutured 60670 -sutures 57609 -suturing 62762 -suv 63077 -sux 61472 -suzanne 63991 -suzuki 58113 -suzy 63991 -sv 59848 -svar 65170 -svat 64905 -sve 61584 -svelte 64905 -sven 65170 -svenska 57696 -sverige 65452 -svg 60321 -svn 55398 -svoju 63991 -svt 65452 -sw 57653 -swab 58417 -swabs 59424 -swag 60492 -swagger 63077 -swallow 52752 -swallowed 56262 -swallowing 54114 -swallows 57399 -swallowtail 65170 -swam 58065 -swamp 55766 -swamped 59039 -swamps 60321 -swampy 61051 -swan 59164 -swank 61584 -swanky 62066 -swans 61818 -swansea 64905 -swap 48836 -swapped 56262 -swapping 53470 -swaps 56518 -swarm 56170 -swarmed 63792 -swarming 60580 -swarms 60492 -swash 63245 -swashbuckling 63991 -swat 61472 -swatch 56200 -swatches 62762 -swath 58919 -swaths 63792 -sway 54622 -swayed 59923 -swaying 59774 -sways 65452 -swear 51087 -swearing 57609 -swears 60000 -sweat 50898 -sweater 53052 -sweaters 56652 -sweating 55107 -sweatpants 65170 -sweats 61256 -sweatshirt 58262 -sweatshirts 61818 -sweatshop 64905 -sweatshops 65452 -sweaty 56452 -swede 65452 -sweden 59630 -swedish 56862 -sweeney 65170 -sweep 51349 -sweeper 60952 -sweepers 61818 -sweeping 51293 -sweeps 55037 -sweepstakes 57482 -sweet 43252 -sweeten 63792 -sweetened 58212 -sweetener 63077 -sweeteners 60580 -sweetening 64201 -sweeter 59630 -sweetest 56827 -sweetheart 56756 -sweetie 56585 -sweetly 59923 -sweetness 56935 -sweets 54499 -sweetstyle 65170 -sweetsycophant 63601 -sweety 64201 -swell 54023 -swelled 59923 -swelling 49022 -swells 60580 -sweltering 62469 -swept 51846 -swerve 63991 -swerved 64423 -swf 56652 -swicki 61472 -swift 52622 -swiftly 56231 -swig 63991 -swim 48697 -swimmer 56110 -swimmers 56200 -swimming 45528 -swims 62331 -swimsuit 57482 -swimsuits 61699 -swimwear 56050 -swindle 63077 -swine 55107 -swinebread 65170 -swing 47283 -swingaleg 65170 -swingarm 64657 -swinger 58065 -swingers 55738 -swinging 51721 -swings 54207 -swipe 57482 -swiped 62469 -swipes 62917 -swiping 64905 -swirl 55766 -swirled 63419 -swirling 57566 -swirls 60321 -swish 61584 -swiss 55154 -switch 41926 -switchable 59491 -switchboard 62066 -switche 65452 -switched 48300 -switcher 58688 -switchers 65452 -switches 48368 -switchgear 64657 -switching 45742 -switchover 56170 -switzerland 59227 -swivel 53712 -swiveling 64423 -swivels 62762 -swollen 53407 -swoon 63601 -swoop 61699 -swooped 64201 -swoops 65170 -sword 50013 -swordfish 62762 -swords 56200 -swordsman 64905 -swore 58688 -sworn 52858 -swung 55906 -sx 59630 -sxsw 63792 -sy 60078 -sy'n 61152 -sya 64657 -sybase 61818 -sybian 61699 -sycamore 62469 -sydd 65170 -sydney 56356 -sydvicioustx 61256 -syed 62762 -syllabi 62917 -syllable 56170 -syllables 56231 -syllabus 55474 -sylvain 63245 -sylvester 65452 -sylvestris 64657 -sylvia 61256 -sym 60000 -symantec 61362 -symbian 56652 -symbiosis 60321 -symbiotic 58632 -symbol 45540 -symbolic 51148 -symbolically 62196 -symbolise 65170 -symbolism 56356 -symbolize 58017 -symbolized 61256 -symbolizes 57741 -symbolizing 63601 -symbology 61362 -symbols 46769 -symlink 63419 -symmetric 49946 -symmetrical 53549 -symmetrically 58523 -symmetries 59702 -symmetrization 65452 -symmetrized 64657 -symmetry 48846 -sympathetic 50694 -sympathetically 62196 -sympathies 60078 -sympathise 64905 -sympathize 60238 -sympathomimetic 63419 -sympathy 52423 -sympatric 63991 -symphonic 60492 -symphonies 63245 -symphony 56518 -symphysis 64201 -symplectic 61051 -symposia 60952 -symposium 51211 -symptom 49626 -symptomatic 52546 -symptomatology 62331 -symptoms 41742 -symtoms 63077 -syn 60000 -synagogue 60157 -synagogues 63419 -synapse 57653 -synapses 57358 -synaptic 51406 -synaptosomal 62613 -synaptosomes 59164 -sync 50387 -synced 64423 -synch 62613 -synchronic 65170 -synchronicity 65170 -synchronisation 61152 -synchronise 65170 -synchronised 60238 -synchronism 63077 -synchronization 51140 -synchronize 55631 -synchronized 53438 -synchronizer 64657 -synchronizes 63792 -synchronizing 57046 -synchronous 52858 -synchronously 59424 -synchrony 60078 -synchrotron 56756 -syncing 58860 -syncope 63077 -syncronization 61699 -syncs 63245 -syncytial 58065 -syncytium 63419 -syndicate 55793 -syndicated 54133 -syndicates 63991 -syndication 53882 -syndrom 63245 -syndrome 44668 -syndromes 54685 -syndy 65452 -syndy's 64423 -synergies 57923 -synergism 62196 -synergistic 54023 -synergistically 59774 -synergy 55500 -synfuel 65452 -syngas 63419 -syngeneic 60580 -synod 63245 -synonym 55657 -synonymous 54207 -synonyms 56827 -synopses 62196 -synopsis 53796 -synopsisplot 54023 -synoptic 62613 -synostosis 64657 -synovial 55877 -synovitis 60952 -syntactic 57122 -syntactically 64905 -syntax 50568 -synteny 65452 -synth 56652 -synthase 51087 -syntheses 59292 -synthesis 43902 -synthesised 60762 -synthesize 54519 -synthesized 48265 -synthesizer 56652 -synthesizers 61699 -synthesizes 60762 -synthesizing 57482 -synthetase 55154 -synthetases 63601 -synthetic 45951 -synthetically 62762 -synthetics 64905 -synthroid 59424 -synths 60670 -synthèse 64905 -syphilis 60321 -syria 64657 -syringae 62196 -syringe 53301 -syringes 58919 -syringomyelia 63077 -syrup 53316 -syrupk 60580 -syrupk's 65170 -syrups 64905 -sys 59424 -sysadmin 62066 -sysctl 64657 -sysfs 63792 -syslinux 65452 -syslog 57696 -syslogd 64657 -sysop 64657 -system 32701 -system's 52622 -systematic 46708 -systematically 51349 -systematics 61699 -systemic 46915 -systemically 59164 -systems 36989 -systemwide 64905 -systole 63792 -systolic 51492 -système 61472 -systèmes 63601 -sytem 64905 -sz 59227 -são 59848 -säkerhet 60762 -så 58745 -sé 63991 -sécurité 61472 -série 63991 -sê 64657 -sí 63419 -síndrome 62613 -só 62066 -sólido 65170 -sólo 64201 -sözlük 62331 -süper 62917 -t 37410 -t'aime 60321 -t's 65452 -tA 61818 -tATu 63077 -tAken 64201 -tC 61051 -tEAM 64657 -tH 62196 -tHCY 65452 -tHE 64905 -tHcy 60321 -tHe 60238 -tO 57696 -tPA 63601 -tPCT 64905 -tPF 65452 -tRNA 56110 -tRNAs 64905 -ta 50530 -tab 45157 -tabacum 58979 -tabbed 57238 -tabblo 62196 -tabby 63419 -tabernacle 62331 -tabetha 61362 -tabla 64423 -tablature 62331 -tablatures 65170 -table 38352 -table's 64905 -tableau 61472 -tableaux 63601 -tablecloth 63077 -tablecloths 62762 -tabled 57009 -tableless 63991 -tables 44668 -tablespace 64201 -tablespoon 52435 -tablespoons 51700 -tablet 50365 -tabletop 57524 -tablets 49651 -tableware 57970 -tablished 64423 -tabloid 57566 -tabloids 61940 -taboo 56618 -taboos 63792 -tabs 46998 -tabu 64201 -tabula 63419 -tabular 58802 -tabulated 56972 -tabulation 60492 -tac 62196 -tach 65452 -tached 64657 -tachometer 60078 -tachycardia 56420 -tachycardias 63601 -tacit 58417 -tacitly 62469 -tack 54879 -tacked 60580 -tacking 64905 -tackle 47919 -tackled 55130 -tackles 53361 -tackling 52725 -tacks 60405 -tacky 57923 -taco 55202 -tacoma 63792 -tacos 58919 -tacrolimus 59164 -tact 57831 -tactful 64905 -tactfully 64657 -tactic 55014 -tactical 51229 -tactically 65170 -tactics 50213 -tactile 56140 -tad 54207 -tadalafil 54321 -tadpole 62762 -tae 58523 -taeda 62613 -taekwondo 64905 -tafe 62613 -taffeta 63419 -tafser 60580 -tag 41046 -tagalog 64201 -tagboard 64905 -tagcat 65170 -tage 60321 -tages 63601 -tagged 41600 -tagger 65170 -taggers 63601 -taggin 63419 -tagging 52423 -tagline 61584 -taglines 52661 -tags 38067 -tagtooga 62762 -tah 63792 -tahiti 62331 -tahitian 64657 -tahoe 63419 -taht 60856 -tahun 65452 -tai 56972 -tail 47087 -tailback 63077 -tailbone 65170 -tailed 59702 -tailgate 58802 -tailgating 61362 -tailing 61584 -tailings 60405 -taille 64423 -taillight 64423 -taillights 64423 -tailor 53256 -tailored 48877 -tailoring 57923 -tailors 63601 -tailpiece 64657 -tails 54226 -tailspin 63419 -tain 55250 -tained 52315 -taining 56080 -tainly 63991 -tains 59630 -taint 59227 -tainted 56080 -taintedeity 64423 -tainty 64657 -taiwan 61818 -taj 62762 -tak 58470 -taka 65452 -takai 62917 -take 32563 -takeaway 61362 -takeaways 62066 -takedown 59292 -takeing 65170 -taken 36716 -takeoff 58632 -takeout 59702 -takeover 52559 -takeovers 62469 -takepart 64423 -taker 62331 -takers 58577 -takes 37866 -takimata 61152 -takin 58470 -taking 37790 -takings 62331 -takojne 64905 -taksim 64657 -tal 52699 -tala 64905 -talaga 63077 -talc 61584 -tale 47915 -talent 45585 -talented 47276 -talento 64201 -talents 50074 -tales 50461 -taliban 65170 -talipexole 62066 -talisman 63991 -tality 63601 -talk 38192 -talkative 61472 -talked 45941 -talker 61584 -talkers 63601 -talkin 57278 -talking 41184 -talks 43497 -tall 46766 -taller 53124 -tallest 55323 -tallied 60157 -tallies 63419 -talline 63245 -tally 55963 -tallying 65170 -tals 62917 -tam 59424 -tama 64423 -tamara 63792 -tamarind 62196 -tambien 58979 -también 60405 -também 61472 -tame 55578 -tamed 60000 -tamer 64657 -tami 65452 -tamiflu 62917 -tamil 55107 -taming 64201 -tammy 61152 -tamoxifen 59357 -tampa 57831 -tamper 58523 -tampered 59227 -tampering 58523 -tampon 59227 -tamponade 61362 -tampons 60670 -tan 49670 -tanaka 64905 -tance 54685 -tances 65452 -tandem 51131 -tandoori 64905 -tanec 64905 -taneous 61699 -taneously 63077 -tang 58470 -tangent 53899 -tangential 55552 -tangentially 62762 -tangents 61699 -tangerine 63419 -tangible 52509 -tangle 59923 -tangled 57009 -tangles 63991 -tango 57278 -tangy 60078 -tanita 60492 -tanith 65452 -tank 44757 -tank's 64905 -tanked 65452 -tanker 55060 -tankers 59630 -tanking 60157 -tankless 62066 -tanks 49274 -tanned 58860 -tanner 63792 -tannic 63601 -tannin 61818 -tanning 54151 -tannins 59491 -tans 62762 -tant 54380 -tantalising 64657 -tantalizing 61362 -tantalum 60157 -tantamount 60952 -tanto 58745 -tantra 62917 -tantric 58745 -tantrum 64423 -tantrums 60952 -tants 64657 -tanya 63991 -tanzanite 64423 -tao 62196 -tap 47555 -tapas 59560 -tape 44420 -taped 54096 -taper 54226 -tapered 53662 -tapering 58262 -tapers 62066 -tapes 50630 -tapestries 63991 -tapestry 57696 -tapeworm 63245 -tapi 64657 -taping 56551 -tapioca 63245 -tapped 54341 -tapping 52982 -taproot 65452 -taps 54151 -tar 53109 -tara 59227 -tarantula 64423 -tarball 62066 -tarballs 64423 -tarde 62917 -tardiness 64201 -tardive 60952 -tare 61051 -target 40086 -target's 62917 -targeted 45601 -targeting 48221 -targets 45373 -targetted 62196 -targetting 63245 -targus 64423 -tariff 50157 -tariffs 54459 -tarjetas 65452 -tarmac 60000 -tarnish 61818 -tarnished 60238 -taro 65452 -tarot 58470 -tarp 62196 -tarps 64423 -tarragon 65170 -tarry 63991 -tars 65452 -tarsal 60856 -tart 56388 -tartan 61256 -tartar 58470 -tartaric 62469 -tartrate 60762 -tarts 61940 -tary 59101 -tarzan 63792 -tas 61940 -tascam 63601 -taser 64657 -tases 64423 -task 42709 -taskbar 59292 -tasked 56862 -tasking 60405 -tasks 42946 -tassel 65170 -tassios 65170 -taste 44389 -tastebuds 64423 -tasted 53286 -tasteful 58577 -tastefully 57238 -tasteless 61472 -taster 61818 -tasters 65170 -tastes 50484 -tastier 65170 -tasting 51293 -tastings 59560 -tasty 47968 -tastyjon 65452 -tat 57046 -tata 59491 -tate 58860 -tated 62469 -tation 53796 -tational 65170 -tations 61584 -tative 61940 -tatoo 63077 -tats 65452 -tattered 61256 -tattle 64905 -tattoo 49847 -tattooed 58065 -tattooing 61818 -tattoos 53549 -tatu 65170 -tau 56618 -taught 44544 -taunt 59227 -taunted 63601 -taunting 62196 -taunts 62331 -taupe 64905 -tauren 64201 -taurine 59101 -taurus 57741 -taut 61051 -tautomer 65452 -tautomeric 63991 -tautomers 65170 -taux 64201 -tavern 58212 -taverns 63419 -tax 37694 -taxa 55154 -taxable 51511 -taxation 51502 -taxed 55348 -taxes 43265 -taxi 49986 -taxicab 63601 -taxidermist 65170 -taxidermy 64905 -taxing 55684 -taxis 56791 -taxman 65452 -taxman's 63792 -taxon 50686 -taxonomic 55014 -taxonomies 64657 -taxonomy 55821 -taxpayer 51220 -taxpayer's 57785 -taxpayers 51034 -tay 61051 -taylor 53256 -tayo 62469 -taza 63792 -tb 56452 -tba 61699 -tbat 63601 -tbc 62331 -tbe 55130 -tbh 63601 -tbl 62196 -tbo 59702 -tbody 64905 -tbr 61940 -tbs 65170 -tbsp 55906 -tc 56110 -tcl 61472 -tcnakasato 62613 -tcosphpmonitor 64657 -tcp 55323 -tcpdump 63991 -td 54601 -tdi 60952 -te 45408 -tea 45599 -teabagging 59101 -teach 44073 -teacher 42643 -teacher's 54622 -teachers 42637 -teaches 48413 -teaching 41648 -teachings 52622 -teak 56791 -teal 60321 -team 36317 -team's 50321 -teamed 53533 -teaming 56585 -teammate 57482 -teammates 54749 -teams 42544 -teamwiever 62066 -teamwork 55299 -teapot 63792 -tear 49417 -teardrop 63991 -teardrops 64201 -tearful 62331 -tearing 54245 -tears 48831 -teas 56756 -tease 54439 -teased 57923 -teaser 54835 -teasers 63601 -teases 59491 -teasing 56935 -teaspoon 50372 -teaspoons 55578 -teat 62469 -teatro 64423 -teats 63077 -tebe 63245 -tec 62196 -tech 42998 -techfit 64201 -techie 60238 -techies 61584 -technabob 63792 -technic 63792 -technica 60321 -technical 39669 -technicalities 62917 -technicality 65452 -technically 50178 -technician 50974 -technicians 51415 -technics 60078 -technique 41950 -techniques 41015 -technische 64905 -techno 53392 -technological 46928 -technologically 55604 -technologie 62066 -technologies 43624 -technologist 62331 -technologists 59774 -technology 37549 -technology's 64201 -technorati 52303 -techs 60580 -techtutortv 65170 -techy 65452 -teckel 63245 -tecktonik 60000 -tecnica 63245 -tecnicos 63601 -tect 64657 -tected 59424 -tection 61472 -tectonic 56231 -tectonics 62066 -tector 65452 -tecture 63991 -ted 53052 -teddy 55014 -tedious 54207 -tedster 58365 -tee 50213 -teed 64657 -teeming 60670 -teen 42522 -teen's 62469 -teenage 49285 -teenaged 62469 -teenager 51521 -teenager's 63991 -teenagers 50394 -teendreams 65170 -teenie 61699 -teens 46012 -teensex 65170 -teenth 64905 -teeny 59101 -tees 55963 -teeter 63991 -teetering 62762 -teeters 65452 -teeth 45914 -teething 61472 -teflon 60856 -tegatana 65452 -tegen 65170 -tegmental 62331 -tego 62762 -tegretol 63601 -tegument 62066 -teh 53153 -teicher 63419 -teicoplanin 65170 -tein 57923 -teins 59848 -teint 64423 -tek 60238 -tekken 64657 -tekknoschtev 64905 -teknikoa 63419 -teks 63245 -tekst 61362 -tekstas 65170 -teksti 65170 -tekstit 65170 -tekstitykset 64201 -teksto 63245 -tekstovi 64905 -teksty 62613 -tektites 63601 -tel 53762 -telangiectasia 65170 -telco 61818 -telcos 62762 -tele 60670 -telecast 61152 -telechargement 65452 -telecharger 54302 -telecom 51560 -telecommunication 54059 -telecommunications 48964 -telecommuting 63077 -telecoms 55604 -telecon 60000 -teleconference 60762 -teleconferencing 63792 -telefon 60321 -telefonní 64905 -telefono 62331 -telegram 60078 -telegrams 65170 -telegraph 58417 -telegraphed 65452 -telegraphic 63419 -telemarketers 61362 -telemarketing 57696 -telemedicine 59164 -telemetry 59560 -telencephalic 64657 -teleology 65170 -telepathic 65452 -telepathy 64201 -telephone 42196 -telephoned 62469 -telephones 55934 -telephonic 62066 -telephoning 61584 -telephony 51620 -telephoto 60856 -teleport 61699 -telerik 62762 -telesales 64657 -telescope 52534 -telescopes 57609 -telescopic 57160 -telescopically 63077 -telescoping 60405 -televised 54622 -television 41947 -television's 62331 -televisions 55906 -telework 61362 -teleworking 65452 -telithromycin 59164 -tell 37347 -teller 57831 -tellers 65170 -tellin 62196 -telling 44358 -tells 43187 -telltale 61584 -telluride 64657 -tellus 63419 -telly 60952 -telnet 59702 -telomerase 58470 -telomere 60321 -telomeres 61362 -telomeric 60670 -telophase 63792 -telson 62331 -telstra 62196 -telugu 57831 -telus 61152 -tem 54151 -tema 58162 -temas 62331 -temazepam 65452 -tember 63991 -temo 64905 -temp 50686 -tempeh 63419 -temper 55448 -tempera 64201 -temperament 56485 -temperamental 61472 -temperaments 64423 -temperance 62469 -temperate 54749 -temperatura 64423 -temperature 38220 -temperatures 44592 -tempered 55373 -tempering 63245 -tempers 64423 -tempest 62469 -template 45690 -templated 63419 -templates 47815 -temple 49440 -temples 54151 -templet 65452 -tempo 52913 -tempol 60492 -tempor 59491 -temporada 60000 -temporal 46824 -temporally 57122 -temporarily 47562 -temporary 44515 -temporomandibular 61699 -tempos 61818 -temps 54226 -tempt 57084 -temptation 53917 -temptations 60078 -tempted 53081 -tempting 54770 -tempts 63601 -tempura 64423 -tempus 65452 -température 63601 -tems 56935 -ten 41468 -tenable 64905 -tenacious 60321 -tenacity 61051 -tenance 64423 -tenancies 63419 -tenancy 55299 -tenant 50357 -tenant's 58979 -tenants 50402 -tence 62331 -tend 43416 -tended 49676 -tendencies 55398 -tendency 47607 -tender 47721 -tendered 58523 -tenderer 60762 -tenderers 61051 -tendering 59039 -tenderloin 60078 -tenderly 62331 -tenderness 54664 -tenders 54902 -tending 55014 -tendinitis 64423 -tendon 53316 -tendonitis 61256 -tendons 58162 -tends 47645 -tenement 62762 -tenemos 64201 -tener 59560 -tenerife 63419 -tenet 60856 -tenets 57566 -tenfold 61584 -tengo 59164 -tenia 64423 -tennessee 58113 -tennis 46488 -tenor 55348 -tenors 64905 -tens 50424 -tense 53517 -tenses 62613 -tensile 50758 -tension 46937 -tensioner 63245 -tensioning 62613 -tensions 53052 -tensiontorrent 65170 -tensity 63601 -tensive 62196 -tensor 51804 -tensors 60580 -tent 50492 -tentacle 62917 -tentacles 60078 -tentative 52509 -tentatively 55154 -tented 63792 -tenth 53256 -tenths 60762 -tential 59630 -tention 62762 -tently 64905 -tents 54380 -tenuate 60580 -tenuiflora 65170 -tenuis 64905 -tenuous 60762 -tenure 51358 -tenured 60952 -teologji 64905 -tepid 61584 -tequila 56862 -ter 51358 -tera 59491 -terabytes 63601 -teraction 64905 -terahertz 60157 -teratogenic 62762 -teratoma 64905 -terbinafine 56935 -tercüme 65170 -tere 64201 -tered 56899 -terephthalate 60762 -teresa 62762 -terest 62331 -terested 65170 -terezie 65452 -terface 65170 -teri 60321 -teria 62066 -terial 59702 -terials 63419 -tering 60580 -terior 63245 -teristic 60762 -teristics 60492 -teriyaki 62066 -terization 64905 -terized 62469 -term 37526 -termWinStep 60856 -terme 65170 -termed 50164 -terminal 43857 -terminalis 64657 -terminally 56324 -terminals 49809 -terminate 49547 -terminated 50206 -terminates 56080 -terminating 54245 -termination 47228 -terminations 59774 -terminator 55014 -termine 61152 -termined 59101 -termini 58745 -terminode 61362 -terminodes 64201 -terminological 63419 -terminologies 62613 -terminology 51670 -terminus 54540 -termite 58313 -termites 60000 -terms 35406 -tern 60157 -ternal 60580 -ternary 53830 -ternational 64201 -terns 60952 -terol 62613 -terra 56293 -terrace 51680 -terraced 55738 -terraces 56110 -terracotta 62196 -terrain 51340 -terrains 63419 -terrax 63601 -terrazzo 65452 -terre 62613 -terrestrial 52233 -terri 64657 -terrible 47988 -terribly 53167 -terrier 57084 -terriers 65452 -terrific 51060 -terrified 55963 -terrify 65170 -terrifying 56170 -territorial 52268 -territoriality 64657 -territories 52152 -territory 47551 -terror 49547 -terrorism 50343 -terrorist 47867 -terrorists 51069 -terrorize 63419 -terrorized 61940 -terrorizing 63245 -terrors 63077 -terry 57238 -ters 56618 -terse 62762 -tertiary 50815 -terug 62762 -terval 65170 -tery 63419 -tes 59702 -tesa 62469 -tesco 61940 -tesla 64905 -tess 64905 -test 36073 -test's 65452 -testa 65452 -testability 63419 -testable 60762 -testament 54207 -testamentary 63792 -testbed 60078 -teste 63991 -tested 41413 -tester 54706 -testers 57440 -testes 56862 -testi 61699 -testicle 60762 -testicles 59774 -testicular 52635 -testified 49886 -testifies 56687 -testify 52648 -testifying 58860 -testimonial 55274 -testimonials 52423 -testimonies 59923 -testimony 47660 -testing 40650 -testis 55766 -testkiller 57696 -testking 63419 -testo 55448 -testosterone 51762 -tests 41117 -testsuite 63077 -testy 65452 -tet 61940 -tetanic 65170 -tetanus 57440 -tetany 64423 -tetas 64657 -tether 60238 -tethered 58802 -tethering 62917 -tetova 64423 -tetra 58470 -tetraacetic 65170 -tetracaine 61256 -tetrachloride 60238 -tetracoordinate 65170 -tetracycline 57046 -tetracyclone 63245 -tetragonal 58860 -tetrahedra 61051 -tetrahedral 57653 -tetrahedron 62066 -tetrahydrofuran 61256 -tetralogy 62917 -tetramer 62613 -tetrameric 65170 -tetrapeptide 63991 -tetraploid 60856 -tetrazolium 60405 -tetris 61940 -tetrodotoxin 64905 -tetroxide 61940 -teu 61362 -tex 61362 -texan 65452 -texas 50277 -text 35149 -text's 63077 -textarea 63077 -textbook 50815 -textbooks 53952 -textbox 59848 -texte 58162 -texted 60952 -textes 63792 -textile 50537 -textiles 54499 -texting 57238 -texto 60321 -texts 48300 -textual 53470 -textural 60856 -texture 47431 -textured 52845 -textures 52968 -texturing 62066 -tf 58632 -tft 60321 -tftp 62917 -tg 59491 -tgp 53970 -th 41035 -tha 49108 -thai 53346 -thailand 56899 -thalamic 57970 -thalamus 58262 -thalassaemia 65452 -thaliana 56388 -thalidomide 64423 -thallium 61940 -thallus 60238 -than 28919 -thang 58688 -thangs 64657 -thank 41310 -thank's 65170 -thanked 50476 -thankful 52546 -thankfully 58212 -thanking 57238 -thankless 63991 -thanks 39940 -thanksgiving 57238 -thankyou 58262 -thankz 64905 -thanx 52648 -thar 62917 -thas 65452 -that 21593 -that'd 57970 -that'll 54857 -that's 37979 -thatch 64423 -thatched 60762 -thats 44090 -thatthe 63419 -thaw 58065 -thawed 57876 -thawing 60492 -thay 60157 -thc 51069 -the 13675 -thea 65452 -theater 46657 -theaters 52363 -theatre 47177 -theatres 54601 -theatrical 51741 -theatrically 64657 -thebeats 61362 -thebestof 59630 -theca 64905 -thecal 65452 -thecutup 63601 -thediceman 62066 -thee 53779 -theese 65170 -theflyingninja 61584 -theft 47729 -thefts 59101 -thei 63419 -their 27512 -theirs 53241 -thekanji 64657 -thekoleslaw 63601 -thelial 63991 -them 31533 -thematic 55274 -thematically 62762 -theme 42594 -themed 52534 -themes 45574 -theming 65452 -themself 63991 -themselves 41066 -then 31194 -thence 54622 -theo 62917 -theodore 63245 -theologian 60580 -theologians 59848 -theological 53485 -theology 53346 -theophylline 58417 -theorem 49285 -theorems 56262 -theoretic 59424 -theoretical 44475 -theoretically 52256 -theories 47544 -theorist 61362 -theorists 55178 -theorize 62613 -theorized 59923 -theorizing 63077 -theory 41001 -thepmpguy 62331 -ther 53438 -therapeutic 45367 -therapeutically 57741 -therapeutics 59292 -therapies 51043 -therapist 51560 -therapist's 62331 -therapists 52509 -therapy 40811 -there 30088 -there'd 59560 -there'll 58162 -there're 64657 -there's 40361 -thereafter 51148 -therebetween 62196 -thereby 44832 -therefor 56791 -therefore 40192 -therefrom 57009 -therein 50013 -thereof 47968 -thereon 55526 -theres 51017 -theresa 64423 -therethrough 60321 -thereto 52315 -thereunder 62196 -thereupon 62917 -therewith 58417 -thermal 42714 -thermally 52778 -thermaltake 63419 -thermionic 59101 -thermique 64905 -thermistor 61472 -thermo 63245 -thermochemical 61940 -thermochromic 58113 -thermocouple 57609 -thermocouples 61362 -thermodynamic 52351 -thermodynamical 63991 -thermodynamically 60856 -thermodynamics 57009 -thermoelectric 61152 -thermoforming 63077 -thermogenesis 62066 -thermogenic 62196 -thermography 64905 -thermogravimetric 62196 -thermogravimetry 65170 -thermohaline 64423 -thermoluminescence 65452 -thermoluminescent 60762 -thermolysis 64201 -thermomechanical 62613 -thermometer 55448 -thermometers 62066 -thermometry 63792 -thermonuclear 65452 -thermophila 65452 -thermophilic 60321 -thermophilus 63601 -thermoplastic 54770 -thermoregulation 62917 -thermoregulatory 59164 -thermos 62066 -thermosetting 61818 -thermostable 62762 -thermostat 54207 -thermostatic 63601 -thermostatically 64905 -thermostats 61818 -thermosteric 61472 -theron 65170 -thes 63419 -thesaurus 53454 -thesauruses 63245 -these 29702 -theses 55578 -thesia 65452 -thesis 48687 -thesized 63245 -thespiritdog 64657 -thet 64423 -theta 56652 -thetic 60238 -theultimate 64905 -thew 63419 -thewingmentv 62066 -they 28041 -they'd 49614 -they'll 47266 -they're 40775 -they've 46537 -theyll 65452 -theyre 56518 -thi 58417 -thiamine 60321 -thiazolidinediones 65452 -thick 45035 -thicken 62917 -thickened 55849 -thickener 64423 -thickening 54360 -thickenings 65452 -thickens 63419 -thicker 53454 -thickest 60762 -thicket 64423 -thickets 62762 -thickly 62917 -thickness 44512 -thicknesses 55423 -thie 63245 -thief 53501 -thier 53241 -thierry 65452 -thieves 54749 -thigh 53501 -thighs 56721 -thin 43457 -thine 59292 -thing 37276 -thing's 62331 -thingie 65452 -things 35873 -thingy 57876 -think 33040 -thinker 58632 -thinkers 56618 -thinkin 59101 -thinking 40863 -thinkpad 62196 -thinks 45452 -thinly 55711 -thinned 57741 -thinner 53662 -thinners 65452 -thinness 63991 -thinnest 62196 -thinning 56551 -thins 63601 -thinset 63601 -thio 64423 -thiobarbituric 61818 -thiocyanate 62066 -thioguanine 64905 -thiol 58162 -thiols 64423 -thiopentone 63419 -thiophene 65170 -thioredoxin 58919 -thioridazine 64905 -thiosemicarbazone 62762 -thiosulfate 63991 -thiourea 64423 -thir 63601 -third 37063 -thirds 55250 -thirst 56200 -thirsty 57653 -thirteen 53346 -thirteenth 59292 -thirties 61818 -thirty 48021 -this 21987 -this'll 65452 -thisWith 63792 -thistle 62331 -thither 65170 -thle 62469 -thm 63245 -thn 59848 -thnk 64657 -thnks 64657 -thnx 57084 -tho 47827 -thoes 64423 -thomas 52597 -thompson 58417 -thomsen 62613 -thomson 64657 -thon 65170 -thong 53695 -thongs 58745 -thor 63245 -thoracic 51580 -thoracoabdominal 64905 -thoracoscopic 62613 -thoracoscopy 64905 -thoracotomy 60492 -thorax 59923 -thorium 63601 -thorn 58919 -thornless 64905 -thorns 60952 -thornton 60405 -thorny 60157 -thorough 48156 -thoroughbred 61256 -thoroughfare 61818 -thoroughfares 63991 -thoroughly 47496 -thoroughness 62331 -thors 65170 -thorugh 64905 -those 32018 -thot 64423 -thou 51630 -though 38158 -thought 37384 -thoughtful 51877 -thoughtfully 60580 -thoughtfulness 64905 -thoughtless 64423 -thoughts 42263 -thousand 45655 -thousands 41073 -thousandth 64657 -thr 59227 -thrash 58523 -thrashed 62331 -thrashing 60762 -thre 61362 -thread 39742 -threadbare 65170 -threaded 51680 -threading 59227 -threads 41761 -threat 44974 -threaten 51211 -threatened 48445 -threatening 49535 -threatens 51660 -threats 48152 -three 33320 -threefold 58017 -threes 63601 -threesome 54519 -threesomes 62613 -threonine 59039 -threshing 63077 -threshold 45178 -thresholding 63077 -thresholds 51721 -threw 49044 -thrice 58745 -thrift 56485 -thrifty 61472 -thrill 53211 -thrilled 51550 -thriller 53256 -thrillers 62196 -thrilling 53271 -thrills 58688 -thrips 59774 -thrive 53361 -thrived 59702 -thrives 58313 -thriving 53361 -thro 63601 -throat 49626 -throats 61152 -throbbing 59560 -throes 61472 -thrombi 59491 -thrombin 56324 -thrombocytopenia 57399 -thrombocytopenic 60238 -thromboembolic 59491 -thromboembolism 58212 -thrombolysis 59560 -thrombolytic 60238 -thrombophlebitis 64423 -thromboplastin 61256 -thrombosis 53485 -thrombotic 60078 -thromboxane 62331 -thrombus 55107 -throne 54302 -thrones 63245 -throng 61818 -throngs 62469 -throttle 51899 -throttles 64657 -throttling 62469 -throu 63792 -through 30756 -throughly 64423 -throughout 38886 -throughput 50791 -throught 60405 -throw 44633 -throwaway 63792 -throwback 60492 -throwdown 65170 -thrower 62469 -throwers 64423 -throwing 48711 -thrown 47733 -throws 48600 -thru 46384 -thrush 65170 -thrust 51396 -thruster 64423 -thrusting 61152 -thrusts 61584 -ths 58745 -tht 54792 -thts 61256 -thu 59848 -thud 65170 -thudrumble 60952 -thug 58065 -thugs 57238 -thumb 49302 -thumbing 65170 -thumbnail 44637 -thumbnails 51122 -thumbs 50670 -thump 62331 -thumping 62469 -thumps 65452 -thunder 52351 -thunderbird 64423 -thunderbolt 64423 -thundercloud 65452 -thundered 65170 -thundering 62917 -thunderous 61584 -thunderstorm 59702 -thunderstorms 58262 -thunk 64657 -thuringiensis 61152 -thurman 61584 -thurmond 56935 -thurs 63792 -thursday 56420 -thus 39824 -thw 65452 -thwart 58577 -thwarted 59774 -thwarting 64423 -thwarts 65452 -thx 53038 -thy 50966 -thylakoid 60405 -thyme 58919 -thymic 58919 -thymidine 55130 -thymidylate 62469 -thymine 64201 -thymocyte 62066 -thymocytes 57278 -thymosin 64201 -thymus 55154 -thyristor 59292 -thyroglobulin 61256 -thyroid 47992 -thyroidectomy 62762 -thyroiditis 63419 -thyromental 64905 -thyrotropin 64657 -thyroxine 59923 -thyself 64905 -théorique 64423 -ti 49547 -tia 60405 -tial 53934 -tially 56585 -tials 63245 -tian 61472 -tianlian 61699 -tiara 62196 -tiated 63792 -tiation 65452 -tibet 65170 -tibetan 61818 -tibia 53196 -tibiae 60405 -tibial 55604 -tibialis 64905 -tic 54041 -tical 56972 -tically 60952 -tice 60580 -tices 63419 -ticipants 64423 -ticipate 64423 -ticipation 64905 -tick 51600 -ticked 57566 -ticker 56551 -tickers 61256 -ticket 44834 -ticketed 63601 -ticketing 58113 -tickets 41852 -ticking 55274 -tickle 58313 -tickled 62066 -tickles 62331 -tickling 59774 -ticks 55684 -ticle 64201 -ticles 61256 -tics 56324 -ticular 59227 -ticularly 61472 -tid 62469 -tidak 63601 -tidal 51600 -tidbit 61699 -tidbits 58162 -tide 50856 -tides 56080 -tidied 65170 -tidings 64905 -tidus 65170 -tidy 55014 -tidying 63792 -tie 47047 -tied 46534 -tiempo 58365 -tiempos 64905 -tienda 64423 -tiene 56388 -tienen 60952 -tienes 58470 -tient 60952 -tients 54519 -tier 52363 -tierce 60238 -tiered 58802 -tierra 62066 -tiers 57609 -ties 46818 -tiesto 59923 -tif 60670 -tiff 57278 -tiffany 57358 -tiffin 64657 -tific 64905 -tification 62917 -tified 60952 -tify 62196 -tigate 64423 -tigated 65170 -tigation 65452 -tigations 65170 -tiger 52351 -tigermatt 62066 -tigers 57609 -tigger 65452 -tight 44958 -tighten 53988 -tightened 56356 -tightening 55552 -tightens 60762 -tighter 54419 -tightest 62762 -tightly 49688 -tightness 58688 -tightrope 61051 -tights 57084 -tigi 65452 -tihng 65170 -tii 65452 -tijd 65452 -tijuana 62917 -tikes 63245 -tiki 61699 -tikibars 65170 -tikka 61940 -til 49141 -tila 62066 -tilapia 62066 -tilbud 65452 -tilde 61051 -tile 46757 -tiled 54902 -tiles 51060 -tiling 57440 -till 44336 -tillage 58212 -tilled 61152 -tiller 58212 -tillers 63792 -tilt 51052 -tilted 55250 -tilting 56827 -tilts 61940 -tim 53407 -timated 65170 -timation 64657 -timbaland 64657 -timber 48629 -timberlake 58802 -timberland 58113 -timbers 60952 -timbre 60405 -time 29403 -time's 61699 -timeDifference 64423 -timecode 62196 -timed 51942 -timeframe 57238 -timeframes 58017 -timekeeping 62762 -timeless 53729 -timelike 63601 -timeline 52268 -timelines 58860 -timeliness 55202 -timely 46426 -timeout 54581 -timepiece 62613 -timepieces 63601 -timer 50742 -timers 58417 -times 34137 -timesReviews 65170 -timescale 58688 -timescales 59491 -timeshare 55906 -timeshares 64657 -timesheets 63991 -timeslots 62066 -timestamp 57970 -timestamps 58577 -timestep 63601 -timetable 53630 -timetables 59560 -timex 65452 -timezone 58577 -timid 58212 -timing 46202 -timings 57440 -timmy 64201 -timo 65452 -timothy 59357 -timp 64905 -tin 49584 -tina 57440 -tincidunt 60000 -tinct 62917 -tincture 59424 -tinder 63991 -tine 58745 -tinea 57923 -tines 60762 -tinfoil 65452 -ting 55037 -tingberg 63419 -tinge 62066 -tinged 60762 -tingle 63991 -tingling 58262 -tings 62762 -tinh 64905 -tiniest 61051 -tink 60405 -tinker 59491 -tinkerbell 63792 -tinkering 59491 -tinned 62469 -tinnitus 59357 -tinny 63077 -tins 59164 -tinsel 65170 -tint 55992 -tinted 56518 -tinting 63077 -tints 64657 -tinue 62331 -tinued 62762 -tinuous 60078 -tiny 45365 -tio 60670 -tion 40984 -tional 49348 -tionally 62066 -tionary 61940 -tioned 59491 -tioning 62331 -tions 45634 -tionship 60580 -tionships 63245 -tious 64423 -tip 43796 -tiple 62613 -tipo 59630 -tipped 55084 -tippers 65452 -tipping 55604 -tips 39852 -tipsy 64201 -tir 60952 -tira 65452 -tirade 62917 -tirana 64905 -tire 47776 -tired 46474 -tiredness 61940 -tireless 58065 -tirelessly 58470 -tires 48186 -tiresome 62196 -tiring 58162 -tis 56935 -tisdale 60238 -tissue 41639 -tissues 46526 -tistical 63792 -tists 65452 -tit 52609 -titan 59923 -titanate 61940 -titanic 58262 -titanium 50108 -titans 59560 -titanyl 63245 -titative 63077 -titel 56518 -titer 55738 -titers 54946 -tithe 62762 -tithes 63792 -tithing 64905 -tities 63792 -tition 65170 -title 37658 -title's 65170 -titled 48505 -titles 38367 -titling 62196 -titlovi 64657 -tito 63245 -titrated 60321 -titration 54664 -titrations 62331 -titre 59039 -titres 59560 -tits 47378 -titted 61051 -titties 57160 -titty 58577 -titular 61256 -titulky 59424 -tity 61472 -tiuxetan 59227 -tivated 65170 -tivation 63419 -tive 48731 -tively 54399 -tiveness 64423 -tives 58113 -tivities 64201 -tivity 55793 -tix 58212 -tized 64423 -tj 60670 -tk 56721 -tks 63991 -tl 55766 -tlc 61818 -tld 60856 -tle 59292 -tlic 56050 -tlie 57046 -tlio 58577 -tll 65452 -tlle 62613 -tlt 64201 -tm 58470 -tment 64657 -tml 63245 -tmnt 64657 -tmobile 60492 -tmp 58919 -tmpgenc 63792 -tn 53899 -tna 65452 -tne 60405 -tng 65170 -tnt 63245 -tnx 60078 -to 15694 -toElem 60405 -toMy 54479 -toString 62762 -toa 62917 -toad 57046 -toadflax 64423 -toads 59227 -toast 53271 -toasted 55793 -toaster 56170 -toasters 61940 -toasting 64657 -toasts 64423 -toasty 62613 -toate 63419 -tobacco 47259 -tobe 61362 -tobi 64905 -tobias 64905 -tobramycin 63245 -toby 63419 -toc 57696 -toca 62762 -tocando 64905 -toch 65452 -tocopherol 62917 -toda 58979 -todas 56972 -today 37729 -today's 43594 -todays 53301 -todd 58313 -toddler 52571 -toddler's 65170 -toddlers 54360 -todo 53613 -todos 54226 -toe 49670 -toenail 59292 -toenails 59491 -toes 53052 -toevoegen 63792 -toffee 62917 -tofu 57238 -tog 64423 -toga 65170 -together 37557 -togetherness 63419 -toggle 50227 -toggles 64905 -toggling 61940 -toi 58745 -toil 59560 -toile 64905 -toiled 64657 -toilet 47672 -toiletries 59774 -toilets 54302 -toilette 63245 -toiling 63419 -tok 64201 -tokamak 65170 -token 51193 -tokenblackchic 61256 -tokenizer 65170 -tokens 55154 -tokio 61818 -tokyo 56324 -told 38342 -toledo 63601 -tolerability 59630 -tolerable 58802 -tolerance 47622 -tolerances 56972 -tolerant 53153 -tolerate 51974 -tolerated 53762 -tolerates 61818 -tolerating 62762 -toll 47438 -tolled 64201 -tolling 61940 -tolls 58212 -toluene 54459 -toluidine 63419 -tom 49695 -tom's 64657 -toma 63601 -tomar 63991 -tomatic 65170 -tomato 48305 -tomatoes 51377 -tomb 54023 -tombe 63419 -tombs 59292 -tombstone 60762 -tomcat 58979 -tome 59292 -tomentosa 63991 -tomers 65170 -tomes 64905 -tomlin 65170 -tommorow 63601 -tommorrow 62613 -tommy 57122 -tomogram 63601 -tomographic 57696 -tomography 50881 -tomorrow 46555 -tomorrow's 55448 -tomorrows 65170 -tompotts 65452 -toms 58860 -tomtom 55014 -tomy 62613 -ton 48672 -tonal 57923 -tone 45711 -toned 58919 -toner 54133 -toners 63991 -tones 50848 -tong 62917 -tongs 63077 -tongue 48887 -tongues 56652 -toni 61152 -tonic 55154 -tonight 46748 -tonight's 55323 -tonights 64201 -toning 59923 -tonite 62613 -tonnage 58745 -tonne 55821 -tonneau 63077 -tonnes 51521 -tonometry 65452 -tons 46234 -tonsa 63601 -tonsillectomy 63419 -tonsils 62762 -tony 54078 -tonylong 63792 -tonymwc 63601 -tonythesuperperson 59424 -too 34897 -took 37565 -tool 39998 -toolbar 46115 -toolbars 60762 -toolbox 57609 -toolchain 63792 -tooled 64423 -tooling 56791 -toolkit 54399 -toolkits 63077 -tools 36404 -toolset 60238 -toolshed 62762 -toolshide 59560 -tooltip 59923 -tooltips 63077 -toon 56452 -toons 57785 -tooo 65170 -toot 63077 -tooth 48114 -toothache 64657 -toothbrush 59848 -toothbrushes 63419 -toothed 59702 -toothfish 63419 -toothpaste 56935 -toothpastes 64905 -toothpick 62469 -tootsie 63991 -top 32806 -topamax 60405 -topaz 60492 -topazcat 62917 -topcase 63601 -topchoices 62613 -topic 37155 -topical 50206 -topically 60670 -topics 39276 -topiramate 62613 -topless 53746 -toplist 60856 -topmodel 64423 -topmost 61152 -topo 61256 -topographic 54643 -topographical 58262 -topography 51434 -topoisomerase 58065 -topological 53211 -topologically 63601 -topologies 58262 -topology 51140 -topos 62469 -topped 50306 -topper 63601 -toppers 61818 -topping 54264 -toppings 59424 -topple 60078 -toppled 60580 -topples 64423 -toppling 65170 -toprol 65170 -tops 48354 -topside 63792 -topsite 63245 -topsoil 60405 -toptable 62469 -toque 64423 -tor 51793 -torch 53109 -torched 64657 -torches 60952 -tore 55107 -torent 63245 -tori 60321 -toric 60762 -torical 64905 -tories 63419 -toring 64657 -torment 60856 -tormented 60405 -tormenting 64905 -torn 51330 -tornado 55348 -tornadoes 60762 -toro 61818 -toroidal 58577 -toronto 54685 -torpedo 58365 -torpedoes 64905 -torque 48071 -torques 60952 -torr 62469 -torre 64905 -torrent 43109 -torrential 60856 -torrents 45687 -torres 60238 -torrets 65170 -torrid 63792 -torrie 65170 -tors 54727 -torsion 55250 -torsional 56756 -torsionfree 65452 -torso 56899 -tort 55500 -tortie 63419 -tortilla 57318 -tortillas 58065 -tortious 64905 -tortoise 59923 -tortoises 62331 -torts 63991 -tortuous 58860 -torture 51122 -tortured 55934 -tortures 63077 -torturing 60492 -torus 59357 -tory 53779 -tos 62469 -toshiba 55500 -toss 51220 -tossed 52187 -tosses 60000 -tossing 56293 -toswubber 63419 -tosylate 64905 -tot 53847 -total 35736 -totale 65170 -totaled 54857 -totalfrenzy 65170 -totaling 52447 -totalitarian 59491 -totalitarianism 65170 -totality 58417 -totalizing 64905 -totalled 62469 -totalling 56791 -totally 42822 -totals 53423 -totaly 60405 -tote 54399 -totem 61256 -totes 62066 -tothe 60762 -toting 62917 -toto 64657 -tots 61256 -tottenham 63991 -tottering 64423 -tou 61362 -touch 39390 -touchdown 53138 -touchdowns 55906 -touched 49319 -touches 50974 -touching 50242 -touchpad 60078 -touchscreen 55474 -touchstone 63792 -touchy 61472 -tough 44561 -toughen 64657 -toughened 63077 -toughening 64905 -tougher 53830 -toughest 53138 -toughness 54879 -tought 62066 -toujours 61584 -toulouse 64423 -tounge 63991 -tour 41436 -toured 54581 -tourette 60157 -tourette's 60580 -tourettes 57278 -touring 50220 -tourism 46934 -tourist 47698 -touristic 62331 -tourists 50484 -touristy 61256 -tourmaline 63245 -tournament 47353 -tournament's 64201 -tournaments 53501 -tourney 58577 -tourniquet 63991 -tours 47170 -tous 55992 -tout 48395 -toute 60321 -touted 57009 -toutes 60670 -touting 60157 -touts 57440 -tov 63419 -tow 52832 -toward 40981 -towards 40280 -towbar 64905 -towed 55373 -towel 51620 -towels 53109 -tower 47507 -towered 65452 -towering 56324 -towers 51741 -towing 54023 -town 40144 -town's 54133 -townhome 59848 -townhomes 58745 -townhouse 55821 -townhouses 60078 -towns 47615 -townshend 62762 -township 52363 -townships 57923 -townspeople 62469 -tows 62066 -toxemia 64905 -toxic 47143 -toxicants 65170 -toxicities 60321 -toxicity 48672 -toxicological 59164 -toxicology 57876 -toxin 51953 -toxins 52996 -toxoid 65452 -toxoids 65452 -toxoplasmosis 60670 -toy 46834 -toyed 62469 -toying 59923 -toyota 54685 -toys 45737 -tp 57831 -tpi 63792 -tpmtv 61362 -tq 65452 -tr 52940 -tra 57741 -trabajo 59848 -trabalho 63245 -trabeculae 64423 -trabecular 56231 -trac 57653 -trace 46181 -traceability 60580 -traceable 59702 -traced 51867 -tracellular 65452 -tracer 53695 -traceroute 65170 -tracers 59774 -traces 49376 -tracfone 61256 -trachea 58113 -tracheal 53882 -tracheobronchial 63419 -tracheostomy 61940 -tracheotomy 64905 -trachoma 60321 -trachomatis 60492 -traci 63991 -tracing 52040 -tracings 60078 -track 38822 -track's 58632 -trackage 65452 -trackback 49645 -trackbacks 56262 -trackball 63991 -tracked 51846 -tracker 47611 -trackers 51660 -tracking 44402 -tracklist 64201 -tracklisting 64905 -trackpad 61472 -tracks 42680 -trackside 64657 -tract 47067 -tractable 60321 -tracted 60670 -traction 51560 -tractive 63245 -tractor 52315 -tractors 57238 -tracts 54622 -tractus 63601 -tracy 58979 -tradable 61818 -tradables 63991 -trade 39381 -traded 49262 -trademark 41922 -trademarked 57358 -trademarks 39478 -tradendaily 65452 -tradeoff 57653 -tradeoffs 58313 -trader 54041 -trader's 64657 -traders 51531 -trades 49092 -tradeshow 62917 -tradesmen 62762 -trading 43294 -tradition 46332 -traditional 39890 -traditionalist 64201 -traditionally 49223 -traditions 50199 -traducció 63077 -traducción 65170 -traduction 62613 -trae 63601 -traffic 40597 -trafficked 59357 -traffickers 61152 -trafficking 52210 -trafic 57831 -tragedies 59491 -tragedy 51104 -tragic 51060 -tragically 59039 -tragouda 65452 -trail 45979 -trailed 58802 -trailer 45090 -trailers 47413 -trailhead 62469 -trailing 53211 -trails 50171 -train 42690 -trained 44406 -trainee 55060 -trainees 54857 -traineeship 64423 -traineeships 63245 -trainer 50026 -trainers 51721 -training 36712 -trainings 57440 -trains 48619 -trait 52982 -traitement 62066 -traitor 61472 -traitors 64423 -traits 50402 -trajectories 54041 -trajectory 52387 -traktor 61940 -tral 58802 -tram 56827 -tramadol 43698 -tramp 61256 -trample 60856 -trampled 61256 -trampling 60492 -trampoline 58688 -trampolines 63419 -trams 62917 -tramway 64657 -tran 63245 -trance 53392 -tranceaddict 65452 -tranche 65170 -trang 63991 -tranny 53899 -tranquil 55657 -tranquility 59101 -tranquilizers 63601 -tranquillity 61699 -trans 51650 -transact 59164 -transacted 59560 -transacting 61940 -transaction 44271 -transactional 56862 -transactions 46084 -transactivation 58632 -transactivator 63792 -transaid 63419 -transaminase 59101 -transaminases 64905 -transatlantic 58065 -transboundary 64423 -transcatheter 63991 -transceiver 55014 -transceivers 59848 -transceiving 60952 -transcellular 64905 -transcend 57318 -transcended 61940 -transcendence 64905 -transcendent 61256 -transcendental 59491 -transcending 64201 -transcends 58577 -transclusions 58313 -transcoding 63601 -transconductance 61584 -transcranial 60580 -transcribe 61699 -transcribed 53779 -transcribing 61256 -transcript 49880 -transcriptase 57046 -transcription 45979 -transcriptional 50213 -transcriptionally 61152 -transcriptions 59774 -transcriptome 63792 -transcripts 50424 -transcutaneous 63601 -transdermal 60670 -transduce 63077 -transduced 60492 -transducer 50898 -transducers 55766 -transducing 64905 -transduction 52472 -transect 59491 -transection 62196 -transects 61472 -transepithelial 61940 -transesophageal 59923 -transexual 59101 -transexuals 65452 -transfectant 64905 -transfectants 61362 -transfected 50734 -transfecting 65452 -transfection 54399 -transfections 65452 -transfer 39703 -transferable 56618 -transferase 57831 -transferases 65452 -transfered 59292 -transferee 62469 -transference 59923 -transfering 60078 -transferred 44079 -transferrin 57318 -transferring 50584 -transfers 47984 -transfert 63419 -transform 46274 -transformant 63077 -transformants 57876 -transformation 45209 -transformational 59039 -transformations 51610 -transformative 57876 -transformed 46896 -transformer 51640 -transformers 54399 -transforming 50499 -transforms 51772 -transfused 61699 -transfusion 54459 -transfusions 58212 -transgender 54902 -transgendered 57970 -transgene 55423 -transgenes 61362 -transgenic 49932 -transglutaminase 63419 -transgression 64905 -transgressions 62331 -transient 47827 -transiently 55793 -transients 57876 -transistor 49405 -transistors 52712 -transit 45362 -transiting 62469 -transition 42411 -transitional 52712 -transitioned 60580 -transitioning 58113 -transitions 48856 -transitive 58802 -transitively 65170 -transitory 59227 -transits 63077 -translatable 65452 -translate 47070 -translated 48454 -translates 52051 -translating 54059 -translation 44395 -translational 54835 -translations 51444 -translator 51877 -translators 55877 -translit 65170 -transliteration 65452 -translocate 64423 -translocated 60321 -translocates 63991 -translocation 52018 -translocations 63245 -translucent 56827 -transluminal 61818 -transmembrane 53361 -transmigration 64657 -transmissible 60405 -transmission 42404 -transmissions 55014 -transmissive 62917 -transmissivity 64423 -transmit 48821 -transmits 54540 -transmittal 63245 -transmittance 58632 -transmitted 45823 -transmitter 50013 -transmitters 55373 -transmitting 50750 -transmural 63077 -transmutation 65170 -transnational 56791 -transoesophageal 63601 -transom 60856 -transparencies 61940 -transparency 50848 -transparent 48178 -transparently 61818 -transpeptidase 62613 -transpiration 58745 -transpire 65170 -transpired 60670 -transpires 63792 -transplant 49141 -transplantable 64201 -transplantation 49841 -transplanted 53762 -transplanting 61472 -transplants 54360 -transponder 60856 -transponders 61256 -transport 41509 -transportable 64201 -transportation 44643 -transported 50067 -transporter 53501 -transporters 55037 -transporting 52832 -transports 56652 -transposable 63077 -transpose 60762 -transposed 60580 -transposition 59491 -transposon 63601 -transposons 64423 -transrectal 63991 -transsexual 54005 -transsexuals 58017 -transthoracic 58919 -transurethral 61152 -transvaginal 63245 -transversal 57199 -transversally 63245 -transverse 49240 -transversely 56935 -transvestite 54727 -transvestites 59774 -trap 49488 -trapeze 63792 -trapezius 62196 -trapezoid 59848 -trapezoidal 59848 -trapped 49423 -trapper 64423 -trapping 53052 -trappings 61152 -traps 50898 -tras 63245 -trash 48836 -trashed 59227 -trashing 61472 -trashy 60078 -trast 62469 -tratamiento 62331 -trate 64657 -trated 60238 -trates 63245 -tration 54601 -trations 58365 -trauma 48831 -traumas 63245 -traumatic 51521 -traumatised 65452 -traumatized 58577 -travail 59292 -travails 65170 -travel 38036 -traveled 49602 -traveler 51275 -traveler's 61818 -travelers 48440 -traveling 46566 -travelled 51846 -traveller 56170 -traveller's 63077 -travellers 53038 -travelling 48314 -travelmate 64657 -travelogue 63601 -travels 49223 -travers 63077 -traversal 62613 -traverse 55373 -traversed 58745 -traverses 60580 -traversing 60238 -travertine 63419 -traverus 65452 -travesty 65170 -travis 60078 -través 64905 -trawl 60000 -trawler 62917 -trawling 62469 -trax 64201 -tray 49240 -trays 53565 -trazodone 63601 -tre 59292 -treacherous 58860 -treachery 63792 -tread 54133 -treading 60492 -treadmill 54419 -treadmills 62469 -treads 60492 -treason 60762 -treasure 50484 -treasured 56200 -treasurer 56618 -treasurers 65170 -treasures 53392 -treasury 54302 -treat 42759 -treatable 60321 -treated 40069 -treaties 55821 -treating 46307 -treatise 58523 -treatises 63991 -treatment 36298 -treatments 44670 -treats 49308 -treaty 51731 -treble 58979 -tree 41353 -tree's 62331 -treehouse 64657 -treehugger 64905 -trees 43769 -treet 65452 -trehalose 57566 -trek 52818 -trekked 65452 -trekking 56687 -treks 63245 -trellis 57876 -trem 64201 -tremble 63077 -trembling 59491 -tremely 63245 -tremendous 47675 -tremendously 55963 -tremolo 57609 -tremor 58802 -tremors 61818 -tremula 64657 -trench 53729 -trenches 57046 -trenching 64201 -trend 44952 -trending 59357 -trends 44328 -trendsetter 65170 -trendy 52411 -treo 59848 -trephine 63419 -trepidation 63792 -tres 57084 -trespass 60078 -trespassing 62613 -tress 64423 -trestle 62762 -tretinoin 59630 -trevor 60952 -trevorscottcarpenter 64423 -trey 63245 -tri 55821 -triad 58365 -triadic 64423 -triads 65452 -triage 58979 -trial 40217 -trialled 64657 -trialling 64423 -trials 44962 -triamcinolone 59702 -triangle 50678 -triangles 54946 -triangular 51783 -triangulation 58470 -triathlon 58262 -triaxial 62469 -triazine 61472 -triazole 65170 -triazolo 65452 -trib 64657 -tribadism 58688 -tribal 50607 -tribbing 58470 -tribe 51396 -tribe's 64657 -tribes 52018 -tribological 61940 -tribulation 62469 -tribulations 61699 -tribunal 55657 -tribunals 60238 -tribune 62613 -tributaries 58365 -tributary 56899 -tribute 47656 -tributed 58632 -tributes 56618 -tribution 57696 -tributions 62762 -tric 60580 -trical 63792 -triceps 61584 -trichiasis 61584 -trichloroacetic 59227 -trichomes 63991 -trichrome 65452 -tricity 62469 -trick 47729 -tricked 57122 -trickery 64423 -trickier 63991 -tricking 62613 -trickle 56485 -trickled 64905 -trickles 64657 -trickling 61256 -tricks 47011 -trickster 61940 -tricky 52765 -triclinic 63419 -tricolor 65452 -tricorn 65452 -trict 64905 -tricular 64423 -tricuspid 58162 -tricycle 62762 -tricyclic 57566 -trident 62613 -tridentata 65452 -tridentate 62469 -tridiagonal 64201 -trie 63792 -tried 39694 -triennial 64657 -trientine 63601 -trier 61362 -triers 65452 -tries 46186 -triethyl 63792 -triethylamine 62469 -triethylene 63419 -trifle 61256 -trifling 64201 -trifluoroacetic 60157 -trig 64905 -trigeminal 57524 -trigeneration 60856 -trigger 46299 -triggered 50530 -triggering 53597 -triggers 51731 -triglyceride 55526 -triglycerides 55992 -trigonal 58745 -trigonometric 61256 -triiodothyronine 63991 -trike 63245 -trilinear 64905 -trill 61699 -trillent 63245 -trillion 51867 -trillions 62331 -trilobites 65170 -trilogy 55299 -trim 48496 -trimaran 64657 -trimer 62331 -trimeric 63991 -trimers 63601 -trimester 55793 -trimesters 64201 -trimethoprim 61472 -trimethyl 64423 -trimmed 53182 -trimmer 56791 -trimmers 63601 -trimming 54601 -trimmings 64657 -trims 58417 -tring 63991 -trinidad 63245 -trinity 60238 -trinket 62469 -trinkets 62917 -trinuclear 64657 -trinucleotide 65452 -trio 51330 -trio's 65452 -trioxide 62762 -trip 41299 -tripartite 58979 -tripe 64905 -tripeptide 64905 -triphasil 65170 -triphone 62469 -triphones 61940 -triphosphatase 62762 -triphosphate 58365 -triphosphates 62066 -tripiano 61818 -triple 48716 -tripled 58262 -triples 59923 -triplet 55226 -triplets 60000 -triplex 62066 -triplicate 56551 -triplicates 65170 -tripling 64657 -tripod 54770 -tripods 62469 -tripped 59560 -tripping 57440 -trippy 62917 -trips 46587 -tripwolf 64905 -tris 62613 -trisaccharide 65452 -trish 62762 -trisha 62196 -trisilicate 65170 -trisodium 62196 -trisomy 59560 -triste 64657 -tristeza 65170 -tristimulus 64905 -trite 63077 -tritiated 61472 -tritium 59424 -triton 62613 -triumph 53109 -triumphant 57741 -triumphantly 64423 -triumphed 61472 -triumphs 58577 -trivago 64423 -trivalent 61818 -trivia 50013 -triviagoofssoundtrack 53646 -trivial 52472 -trivially 62469 -trix 61472 -trixbox 65452 -trixie 65170 -tro 62331 -trochanter 63792 -trod 63077 -trode 64657 -troduced 64201 -trogen 65452 -troglitazone 65170 -trois 61472 -trojan 54706 -trojans 59164 -trol 56140 -troll 55711 -trolled 59923 -trolley 53392 -trolleys 58688 -trolling 55398 -trolls 60157 -trols 62613 -trom 64905 -tromagnetic 65170 -trombone 55631 -trombonist 63991 -tron 59039 -trong 65170 -tronic 61051 -trons 62066 -troop 54041 -trooper 58262 -troopers 58065 -troops 46514 -troopsofdoom 63792 -trop 59560 -trope 64657 -tropes 64423 -tropez 65452 -trophic 56687 -trophies 56356 -trophoblast 62331 -trophoblastic 62331 -trophonts 64657 -trophoresis 64423 -trophozoites 62613 -trophy 52858 -tropic 54685 -tropical 45809 -tropics 57653 -tropism 63792 -tropisounds 62469 -tropomyosin 62469 -troponin 58919 -troposphere 63419 -tropospheric 62196 -troppo 62762 -trot 61584 -trotted 62613 -trotting 62331 -troubadour 64905 -trouble 43479 -troubled 50492 -troublemakers 65170 -troubles 52198 -troubleshoot 56721 -troubleshooting 52040 -troublesome 55992 -troubling 55107 -trough 54133 -troughs 60321 -trounce 65452 -trounced 65452 -troupe 58113 -trouser 61362 -trousers 55963 -trout 52725 -trove 59491 -trowel 64201 -troy 58688 -tru 60321 -truTV 64905 -truce 59923 -truck 44102 -truck's 62762 -trucked 63991 -trucker 62331 -truckers 62917 -trucking 54341 -truckload 62469 -trucks 48093 -trucos 61940 -trudge 65170 -true 38936 -truely 56756 -truer 62469 -truest 62613 -truffle 59774 -truffles 61472 -truism 65170 -truley 62331 -truly 42433 -trum 60157 -trump 56935 -trumped 61472 -trumpet 55299 -trumpeted 65170 -trumpeter 61818 -trumpeting 65452 -trumpets 62196 -trumps 60238 -truncal 64905 -truncate 61051 -truncated 52996 -truncating 63792 -truncation 56140 -truncations 65170 -trunk 48576 -trunking 60238 -trunks 57122 -trunnion 63077 -truss 56721 -trusses 59164 -trust 42766 -trust's 63077 -trusted 46797 -trustee 52521 -trustee's 65170 -trustees 53226 -trusting 55604 -trusts 53226 -trustworthiness 62613 -trustworthy 53095 -trusty 56791 -truth 44146 -truthful 57741 -truthfully 60952 -truthfulness 62196 -truths 54622 -try 34690 -tryed 59292 -tryin 57046 -trying 38251 -tryna 60762 -tryout 60952 -tryouts 61256 -trypan 58860 -trypanosome 59630 -trypanosomes 60238 -trypanosomiasis 63991 -trypsin 53952 -trypsinization 65452 -tryptic 60238 -tryptophan 56140 -trys 63792 -très 58860 -ts 53124 -tsDC 62196 -tsa 62331 -tseachtain 59357 -tsetse 60762 -tshirt 59424 -tshirts 59702 -tsk 63419 -tsp 52609 -tsunami 53066 -tsuneo 59923 -tswicegood 63601 -tt 55060 -ttc 62917 -tte 62196 -tthe 65170 -ttt 63792 -tty 64905 -ttyl 59101 -tu 48283 -tua 61051 -tual 60157 -tually 64201 -tub 51078 -tuba 64201 -tubal 59424 -tubby 64201 -tube 42555 -tuber 62331 -tubercle 59774 -tuberculin 61362 -tuberculosis 50013 -tuberculous 58523 -tuberosum 64905 -tuberous 61152 -tubers 60000 -tubes 46584 -tubewell 64201 -tubing 51590 -tubs 58745 -tubular 49732 -tubule 55711 -tubules 55711 -tubulin 57923 -tuck 57318 -tucked 54264 -tucker 61256 -tucking 63991 -tucks 63419 -tucson 63077 -tude 59227 -tudes 61152 -tudinal 64201 -tudo 62196 -tudor 60321 -tue 62762 -tuesday 56388 -tuff 61584 -tuft 63601 -tufted 59039 -tufts 65452 -tug 57046 -tugboat 65452 -tugged 64423 -tugging 62613 -tugjobs 65452 -tugs 63077 -tuition 48148 -tuk 63601 -tulip 60078 -tulips 60405 -tulle 62469 -tulsa 62469 -tum 56862 -tumble 54581 -tumbled 58262 -tumbler 62331 -tumblers 62762 -tumbles 59292 -tumbling 56721 -tumefaciens 63245 -tumhari 65452 -tummy 55793 -tumor 43178 -tumoral 62066 -tumorigenesis 60157 -tumorigenic 63792 -tumors 47214 -tumour 49873 -tumours 52244 -tumultuous 58860 -tun 61940 -tuna 53830 -tunability 65170 -tunable 56231 -tundeh 62762 -tundra 60238 -tune 47204 -tuned 49476 -tunedin 64423 -tuneful 64201 -tuner 52085 -tuners 57566 -tunes 49732 -tung 63792 -tungsten 54857 -tunic 59491 -tunica 61256 -tuning 48907 -tunings 63792 -tunis 65452 -tunisia 64201 -tunity 63245 -tunnel 48538 -tunneling 55348 -tunnelling 58313 -tunnels 55877 -tuo 58860 -tuoi 65452 -tupac 64201 -tuple 60405 -tuples 61051 -tur 62331 -tural 57440 -turban 62066 -turbid 61256 -turbidity 58017 -turbine 50599 -turbines 54321 -turbo 50081 -turbocharged 60238 -turbocharger 60157 -turbochargers 64423 -turboprop 65452 -turbos 62613 -turbulence 53286 -turbulent 52387 -turd 60762 -ture 50192 -tured 59101 -tures 53779 -turf 53454 -turfgrass 63077 -turgor 64201 -turing 60157 -turismo 64201 -turk 62917 -turkey 49886 -turkeys 56756 -turkish 55821 -turmeric 61699 -turmoil 52954 -turn 38240 -turnaround 54023 -turned 38954 -turner 60321 -turning 44137 -turnip 62613 -turnkey 56388 -turnoff 63792 -turnout 54479 -turnover 49867 -turnovers 58523 -turnpike 64905 -turns 43335 -turnstiles 63077 -turntable 56170 -turntables 60762 -turpentine 63245 -turpis 63991 -turquoise 54857 -turret 56756 -turrets 56356 -turtle 53066 -turtleneck 59560 -turtles 53695 -tury 65170 -tus 56388 -tuscan 61152 -tuscany 63245 -tussle 62917 -tussock 64657 -tut 61152 -tute 61818 -tuted 65170 -tutelage 64201 -tutes 65170 -tution 63077 -tutional 65452 -tutions 65170 -tutor 53167 -tutored 63792 -tutorial 46874 -tutorials 49682 -tutoring 54399 -tutors 55250 -tutte 64423 -tutti 61256 -tutto 64201 -tutu 62066 -tux 62762 -tuxedo 59227 -tuyere 62613 -tv 42801 -tv's 63792 -tvguide 55250 -tvs 61362 -tvtime 63601 -tw 58162 -twain 61699 -twang 63601 -twat 59560 -twcook 64905 -tweak 54992 -tweaked 57318 -tweaking 56791 -tweaks 56140 -twee 63601 -tweed 60492 -tween 50454 -tweens 63792 -tweet 62762 -tweeter 62331 -tweeters 65170 -tweets 58313 -tweezers 62066 -twelfth 57876 -twelve 47855 -twenties 59923 -twentieth 52496 -twenty 46812 -twhirl 58262 -twice 43069 -twig 62613 -twigs 59702 -twilight 52221 -twill 58113 -twin 47346 -twinge 65170 -twink 58017 -twinkle 61472 -twinkling 62469 -twinks 56756 -twinned 64423 -twinning 60238 -twinplex 65452 -twins 50507 -twirl 64201 -twirling 63419 -twist 49440 -twisted 50686 -twister 61362 -twisting 54813 -twistlock 64657 -twists 55130 -twisty 62469 -twistys 60492 -twitch 58417 -twitches 65170 -twitching 58860 -twitter 52913 -twitterfeed 59227 -twittering 63792 -twitterrific 59774 -two 30218 -two's 62066 -twofold 57009 -twp 56585 -tx 54857 -txt 53882 -ty 53109 -tycoon 55448 -tying 53613 -tylenol 52327 -tyler 57876 -tym 59164 -tyme 63601 -tympanal 62917 -tympanic 59560 -tyne 64657 -typ 61051 -type 34851 -typeI 65170 -typeby 55657 -typed 51550 -typedef 57084 -typeface 59424 -typefaces 65170 -typename 60856 -types 38420 -typeset 62066 -typesetting 62613 -typewriter 59923 -typewriters 65170 -typewritten 62331 -typhimurium 58417 -typhoid 60000 -typhoon 61256 -typhus 63601 -typical 42214 -typically 42549 -typified 61051 -typify 64201 -typing 48464 -typo 55906 -typographic 62196 -typographical 54078 -typography 58113 -typologies 64423 -typology 60856 -typos 58860 -tyra 62469 -tyrannical 64201 -tyranny 57653 -tyrant 60952 -tyrants 63792 -tyre 54540 -tyres 55154 -tyros 61940 -tyrosine 51087 -tyrosines 62469 -tyrosyl 63792 -tyson 62917 -tytn 64423 -tz 60321 -tá 64657 -téléchargementstélécharger 62066 -télécharger 63991 -të 63077 -tú 61472 -türk 65452 -türkçe 63991 -u 37182 -u'll 61256 -u'r 65170 -uA 62762 -uBio 62762 -uM 64905 -uP 63077 -uPVC 60952 -uPortal 64657 -uReport 59357 -uShip 59774 -uSwitch 64657 -uTorrent 55323 -uWire 58017 -ua 55323 -uae 61472 -ual 58470 -uals 63991 -uate 64201 -uated 64423 -uation 62066 -ub 60492 -uber 58919 -ubiquinone 64657 -ubiquitin 60580 -ubiquitination 63792 -ubiquitous 52673 -ubiquitously 60952 -ubiquity 61699 -ubuntu 51387 -uc 62613 -uchiha 64423 -uct 62469 -ucts 60000 -ud 59227 -udder 65170 -udev 63245 -udontno 62196 -udp 60856 -udvalgte 54560 -ue 60238 -ued 63601 -uefa 62331 -uence 61818 -ues 58113 -uf 62331 -ufc 61940 -ufindus 61051 -ufo 58919 -ug 57696 -uganda 64905 -ugar 64201 -ugg 58017 -ugglasports 64423 -ugh 62196 -ugha 64905 -ugk 63077 -uglier 63601 -ugliest 61818 -ugliness 63419 -ugly 48287 -uh 54622 -uhh 61818 -ui 57741 -uid 60157 -uit 58470 -uk 46025 -uke 65452 -ukingensis 63601 -ukraine 61051 -ukrainian 63991 -ukulele 62762 -ul 54041 -ular 56420 -ularly 63245 -ulated 61818 -ulation 60321 -ulations 64905 -ulcer 51238 -ulcerated 62917 -ulceration 58313 -ulcerations 65452 -ulcerative 56452 -ulcers 53211 -ule 62917 -ulead 62331 -ules 63601 -ulimit 65452 -ull 63245 -ullamcorper 63601 -ulna 64201 -ulnar 59424 -ulster 63419 -ulterior 59560 -ultima 61584 -ultimate 44092 -ultimately 46120 -ultimatum 61256 -ultimele 63419 -ultimo 63077 -ultra 49285 -ultracapacitor 64657 -ultracentrifugation 59702 -ultracentrifuge 64657 -ultracet 60238 -ultrafast 59774 -ultrafiltration 58417 -ultrafine 60670 -ultrahigh 61051 -ultrakawaii 64905 -ultralight 63991 -ultram 50357 -ultramafic 62066 -ultraportable 61256 -ultrapure 63601 -ultras 65452 -ultrashort 61940 -ultrasonic 51502 -ultrasonically 64905 -ultrasonographic 61940 -ultrasonography 57609 -ultrasound 48771 -ultrastructural 55793 -ultrastructure 59424 -ultrasurf 60157 -ultrathin 61051 -ultraviolet 52387 -ultrices 64905 -um 49688 -uma 55060 -umask 63077 -umber 64905 -umbilical 55084 -umbrella 52484 -umbrellas 59357 -ume 60405 -uml 65452 -umm 57923 -ummm 61256 -umn 62196 -umount 62762 -umpire 58632 -umpires 61362 -un 43494 -unAPI 60856 -una 47504 -unabashed 62196 -unabashedly 62762 -unabatedshagie 64657 -unable 42786 -unabridged 65170 -unabsorbed 65170 -unacceptable 52635 -unacceptably 60952 -unaccompanied 62762 -unaccountable 64423 -unaccounted 62917 -unaccustomed 63792 -unacknowledged 64657 -unadjusted 59630 -unadulterated 63245 -unaffected 52584 -unaffiliated 61818 -unaffordable 64905 -unafraid 63245 -unaided 61362 -unallocated 65452 -unalog 65170 -unalone 65452 -unaltered 57741 -unambiguous 57440 -unambiguously 58470 -uname 65170 -unanimity 63419 -unanimous 53695 -unanimously 51741 -unannounced 60952 -unanswered 47321 -unanticipated 58113 -unapologetic 65170 -unappealing 63991 -unapproved 62066 -unarmed 60238 -unary 65170 -unas 62331 -unashamedly 65170 -unassigned 58919 -unassisted 63077 -unassuming 61256 -unattached 62196 -unattainable 62762 -unattended 56170 -unattractive 59702 -unattributed 64657 -unaudited 62917 -unauthorised 54622 -unauthorized 46329 -unavailability 61584 -unavailable 47687 -unavoidable 56827 -unavoidably 63245 -unaware 51600 -unbalance 59630 -unbalanced 56231 -unbearable 59292 -unbearably 64423 -unbeatable 56791 -unbeaten 56585 -unbelievable 53847 -unbelievably 57524 -unbelievers 63245 -unbiased 51590 -unbleached 62331 -unblemished 65452 -unblock 62469 -unblocked 65170 -unborn 56618 -unbound 56935 -unbounded 58919 -unboxed 64905 -unboxing 56827 -unbranched 62917 -unbreakable 59357 -unbridled 60856 -unbroken 58979 -unbuckled 65452 -unbuffered 62613 -unburned 62917 -uncalibrated 64201 -uncalled 63419 -uncanny 59357 -uncapped 60238 -uncaring 65452 -uncategorized 62331 -uncensored 55738 -unceremoniously 63991 -uncertain 50178 -uncertainties 50087 -uncertainty 47799 -unchallenged 61051 -unchanged 50823 -unchanging 62469 -uncharacteristic 64423 -uncharacteristically 63419 -uncharacterized 63792 -uncharged 59630 -uncharted 61472 -uncheck 57609 -unchecked 58065 -unchecking 63077 -unchunch 65452 -uncircumcised 62196 -unclaimed 58979 -unclassified 58802 -uncle 52130 -uncle's 60238 -unclean 63077 -unclear 50983 -uncles 60856 -unclipped 62469 -uncluttered 61940 -uncoated 57970 -uncomfortable 51358 -uncomfortably 61940 -uncomment 62917 -uncommitted 63601 -uncommon 51229 -uncommonly 63077 -uncompensated 65170 -uncompetitive 63792 -uncomplicated 56110 -uncompressed 59702 -uncompresses 63419 -uncompromising 58262 -unconcerned 63792 -unconditional 55657 -unconditionally 58632 -unconditioned 63991 -unconfined 63991 -unconfirmed 61699 -unconformity 63419 -unconjugated 64423 -unconnected 63245 -unconscionable 63601 -unconscious 53256 -unconsciously 60238 -unconsciousness 62613 -unconsolidated 63077 -unconstitutional 55992 -unconstrained 60321 -uncontaminated 63245 -uncontested 61256 -uncontrollable 58919 -uncontrolled 55793 -unconventional 57009 -unconvinced 65452 -unconvincing 65170 -uncooked 60670 -uncooperative 65170 -uncoordinated 64201 -uncorrected 59848 -uncorrelated 58802 -uncountable 63991 -uncoupled 63419 -uncoupling 60492 -uncouth 65170 -uncover 53565 -uncovered 52648 -uncovering 58688 -uncovers 58802 -uncredited 65452 -uncritical 62613 -uncultivated 65452 -uncultured 64905 -uncut 55299 -und 43761 -undamaged 58979 -undated 58919 -unde 63245 -undead 57122 -undecided 56972 -undeclared 58979 -undeepfreeze 63245 -undef 64905 -undefeated 57524 -undefined 55578 -undeformed 64657 -undelete 63601 -undeliverable 65170 -undelivered 63991 -undemocratic 64201 -undeniable 58919 -undeniably 58979 -under 31862 -underachieving 65170 -underage 54321 -underappreciated 64657 -underarm 63601 -underbelly 60856 -undercarriage 64201 -undercooked 65452 -undercover 54924 -undercurrent 62762 -undercut 58979 -undercuts 63792 -undercutting 63792 -underdeveloped 60157 -underdog 60238 -underdogs 62917 -underestimate 54664 -underestimated 57046 -underestimates 61584 -underestimating 61051 -underestimation 59702 -undereye 65452 -underfloor 62196 -underfoot 65170 -underfunded 63991 -undergarments 64423 -undergo 48519 -undergoes 53226 -undergoing 48252 -undergone 51140 -undergrad 61699 -undergrads 63601 -undergraduate 48341 -undergraduates 55526 -underground 47589 -undergroundcity 64423 -undergrowth 63991 -underinsured 62331 -underlain 61940 -underlayment 65452 -underlie 56021 -underlies 57970 -underline 56050 -underlined 55423 -underlines 59292 -underlining 62066 -underlying 44507 -undermine 52996 -undermined 56791 -undermines 58860 -undermining 58113 -underneath 50469 -underpaid 64423 -underpants 64201 -underpass 61152 -underpayment 64423 -underperform 64423 -underperforming 63419 -underpin 57923 -underpinned 59630 -underpinning 57653 -underpinnings 60856 -underpins 60856 -underpowered 64201 -underprivileged 60238 -underrated 57609 -underreporting 62469 -underrepresented 59848 -underscore 56200 -underscored 58979 -underscores 57696 -underscoring 63601 -undersea 60580 -underserved 58065 -underside 55226 -undersigned 55130 -undersized 62613 -understand 38578 -understandable 55037 -understandably 58017 -understanding 40090 -understandings 56862 -understands 49770 -understate 64423 -understated 57160 -understatement 63419 -understood 45319 -understory 64423 -undersurface 65452 -undertake 49092 -undertaken 46976 -undertaker 64905 -undertakes 54992 -undertaking 50227 -undertakings 54924 -undertekster 62196 -undertexter 65170 -undertone 64905 -undertones 63419 -undertook 54439 -underused 63245 -underutilized 63792 -undervalued 60078 -underwater 51396 -underway 51846 -underwear 50815 -underweight 62196 -underwent 48345 -underwhelming 64657 -underwire 58632 -underworld 59164 -underwrite 61152 -underwriter 60492 -underwriters 59101 -underwriting 54969 -underwritten 58523 -undescribed 63601 -undeserved 64905 -undesirable 52996 -undesirably 65170 -undesired 57238 -undetectable 56827 -undetected 59292 -undetermined 58313 -undeveloped 57696 -undiagnosed 60580 -undies 61472 -undifferentiated 58417 -undigested 62762 -undiluted 60000 -undirected 64423 -undisclosed 57278 -undiscovered 60856 -undisputed 56452 -undistorted 64905 -undisturbed 57609 -undivided 60321 -undo 53038 -undocumented 58262 -undoing 62613 -undone 59774 -undoped 61256 -undoubted 63601 -undoubtedly 51060 -undp 63601 -undress 61051 -undressed 53346 -undressing 63419 -undue 54399 -undulating 59292 -undulations 65452 -unduly 56687 -undying 61940 -une 49979 -unearned 63077 -unearth 60856 -unearthed 58802 -unearthing 64657 -unearths 63792 -unease 63601 -uneasiness 65452 -uneasy 56388 -unecessary 65452 -uneconomic 64905 -unedited 58577 -uneducated 59560 -unemployed 54005 -unemployment 48131 -unencumbered 62196 -unending 61256 -unenforceable 58417 -unenhanced 65452 -unenlightened 64905 -unequal 55766 -unequaled 63792 -unequalled 63077 -unequally 63991 -unequivocal 59101 -unequivocally 58313 -unethical 56791 -uneven 53830 -unevenly 62331 -uneventful 60856 -unexcused 63419 -unexhausted 64905 -unexpected 47939 -unexpectedly 53613 -unexpired 61051 -unexpirezz 64657 -unexplained 56021 -unexploded 63601 -unexplored 60670 -unexposed 62066 -unfailing 63601 -unfailingly 64905 -unfair 50957 -unfairly 57122 -unfairness 62066 -unfaithful 63419 -unfamiliar 52686 -unfamiliarity 65452 -unfathomable 64657 -unfavorable 55578 -unfavourable 59357 -unfazed 63245 -unfertilized 62917 -unfettered 60492 -unfilled 59923 -unfiltered 60580 -unfinished 54643 -unfit 57318 -unflattering 63077 -unflinching 63419 -unfocused 64905 -unfold 57199 -unfolded 57399 -unfolding 54419 -unfolds 57440 -unforeseen 56140 -unforgettable 53847 -unforgiving 60952 -unformatted 65170 -unfortunate 51238 -unfortunately 49893 -unfortunatly 65452 -unfounded 60856 -unfractionated 60670 -unframed 62196 -unfriendly 59164 -unfulfilled 61472 -unfunded 60492 -unfunny 62917 -unfurled 64423 -unfurnished 61699 -ung 61051 -unghie 64423 -ungodly 62196 -ungrateful 64201 -unguarded 63601 -unguided 64657 -unhandled 62196 -unhappiness 62331 -unhappy 51670 -unhealthy 54664 -unheard 58212 -unheated 63077 -unhelpful 59039 -unheralded 64423 -unhindered 63991 -unholy 62469 -uni 55037 -uniaxial 58065 -uniaxially 64657 -unibody 64905 -unicast 61940 -unicef 62762 -unicellular 62196 -unico 64201 -unicode 60405 -unicorn 61940 -unicycle 61584 -unicycling 64905 -unidentifiable 63991 -unidentified 53796 -unidirectional 58065 -unification 57122 -unified 50234 -unifies 61362 -uniflora 64423 -unifocalization 64423 -uniform 45247 -uniformed 58523 -uniformity 54685 -uniformly 50277 -uniforms 52661 -unify 57831 -unifying 56791 -unilamellar 64905 -unilateral 52818 -unilaterally 59424 -unimaginable 60238 -unimodal 62762 -unimodular 65452 -unimolecular 64201 -unimpeded 62917 -unimportant 58745 -unimpressed 62469 -unimproved 63991 -unincorporated 56827 -uninfected 57399 -uninfested 64657 -uninformed 59630 -uninhabited 62917 -uninhibited 61472 -uninitialized 65170 -uninjured 64657 -uninoculated 65452 -uninspired 61362 -uninspiring 64905 -uninstall 53423 -uninstalled 56972 -uninstaller 63419 -uninstalling 58417 -uninsured 55657 -unintelligent 65170 -unintelligible 63792 -unintended 56140 -unintentional 56791 -unintentionally 59560 -uninterested 63077 -uninteresting 61256 -uninterrupted 55711 -uninterruptible 64423 -uninvited 64905 -uninvolved 64201 -union 44960 -union's 58212 -unionism 65170 -unionist 63991 -unionists 65452 -unionization 63991 -unionized 63245 -unions 49906 -unipolar 59491 -unique 38541 -uniquely 50270 -uniqueness 54151 -unirradiated 62331 -unis 64657 -unisex 60157 -unison 60952 -unissued 65452 -unit 38728 -unit's 57524 -unitarity 63792 -unitary 54622 -unite 53407 -united 48533 -unites 58745 -uniting 58313 -units 40766 -unity 50256 -univariate 56721 -univers 64905 -universal 45867 -universality 59424 -universally 53712 -universalmusicgroup 57440 -universe 47867 -universe's 64201 -universes 61940 -universitet 63419 -universities 47311 -university 43579 -university's 55448 -unix 56652 -unjust 57440 -unjustifiable 65452 -unjustified 61362 -unjustly 61818 -unkind 62613 -unknowing 64657 -unknowingly 58745 -unknown 44121 -unknowns 58523 -unlabeled 54946 -unlabelled 63419 -unlawful 51502 -unlawfully 59848 -unleaded 59630 -unleash 55604 -unleashed 55934 -unleashes 60670 -unleashing 62613 -unless 39756 -unlicensed 57482 -unlike 46590 -unlikely 46514 -unlimited 46643 -unlined 63991 -unlinked 64905 -unlisted 59039 -unlit 64657 -unload 54706 -unloaded 56518 -unloading 55299 -unloads 65452 -unlock 48477 -unlocked 52818 -unlocker 62469 -unlocking 55274 -unlocks 60856 -unloved 63792 -unlucky 57238 -unmade 64657 -unmanageable 64423 -unmanaged 62196 -unmanned 57785 -unmarked 58417 -unmarried 55992 -unmask 63991 -unmasked 61051 -unmatched 54519 -unmet 58688 -unmethylated 65452 -unmissable 64657 -unmistakable 60000 -unmistakably 62469 -unmitigated 63601 -unmixed 64657 -unmodeled 65452 -unmodified 58313 -unmounted 65452 -unmyelinated 62469 -unnamed 55877 -unnatural 57923 -unnecessarily 56140 -unnecessary 48614 -unneeded 59923 -unnerved 64905 -unnerving 63077 -unnoticed 58745 -unnumbered 59164 -uno 55821 -unobservable 64423 -unobserved 60670 -unobstructed 59774 -unobtrusive 60492 -unobtrusively 64905 -unocardealers 62762 -unoccupied 60000 -unofficial 52291 -unofficially 64657 -unopened 59424 -unopposed 62331 -unordered 64423 -unorganized 62762 -unorthodox 60321 -unos 62196 -unpack 58745 -unpacked 61362 -unpacking 60952 -unpacks 62066 -unpaid 52244 -unpainted 63601 -unpaired 56972 -unpalatable 62762 -unparalled 63991 -unparalleled 53138 -unpasteurized 65170 -unpaved 62762 -unperturbed 60856 -unplanned 58523 -unpleasant 53271 -unplug 57876 -unplugged 58313 -unplugging 63601 -unpolarized 63245 -unpopular 56485 -unprecedented 50424 -unpredictability 60405 -unpredictable 53196 -unprepared 58860 -unpretentious 61699 -unprimed 64423 -unprocessed 60078 -unprocessedFTSearch 65452 -unproductive 62066 -unprofessional 60580 -unprofitable 62613 -unprotected 54581 -unproven 60492 -unpublished 51521 -unqualified 57524 -unquestionable 63792 -unquestionably 59491 -unquestioned 62613 -unranked 62331 -unrated 56827 -unravel 57046 -unraveled 65452 -unraveling 61818 -unravelling 63601 -unravels 63419 -unreachable 61818 -unreacted 59039 -unreactive 64657 -unread 56827 -unreadable 60157 -unreal 57482 -unrealistic 55877 -unrealistically 63077 -unrealized 62762 -unreasonable 53779 -unreasonably 60405 -unrecognised 63991 -unrecognizable 64423 -unrecognized 57970 -unrecorded 60078 -unrecoverable 63601 -unredeemed 64905 -unrefined 63077 -unregistered 55934 -unregulated 59227 -unrelated 49639 -unreleased 56827 -unrelenting 59292 -unreliability 62066 -unreliable 54969 -unremarkable 61699 -unremitting 64201 -unrepentant 62331 -unreported 60670 -unrepresented 62613 -unrequited 64201 -unresectable 65170 -unreserved 64657 -unresolved 54380 -unresponsive 57482 -unresponsiveness 65170 -unrest 56899 -unrestrained 61699 -unrestricted 53847 -unrivaled 60670 -unrivalled 58065 -unrooted 64201 -unruly 60321 -unruptured 65452 -uns 54706 -unsafe 53361 -unsalted 60492 -unsatisfactory 55766 -unsatisfied 57696 -unsatisfying 65452 -unsaturated 52210 -unsaturation 62469 -unsaved 61051 -unsavory 63419 -unscathed 63991 -unscented 63991 -unscheduled 56827 -unscientific 65170 -unscrambling 65170 -unscreened 64905 -unscrew 62331 -unscrewing 65170 -unscrupulous 57741 -unsealed 62066 -unseat 57009 -unsecure 65452 -unsecured 55084 -unseemly 63601 -unseen 56388 -unselected 59292 -unselfish 61256 -unser 65170 -unsere 63419 -unserer 63792 -unset 63991 -unsettle 65170 -unsettled 61152 -unsettling 59039 -unshared 65452 -unshielded 65170 -unsightly 57831 -unsigned 50782 -unskilled 57566 -unsold 60580 -unsolicited 51963 -unsolved 57696 -unsophisticated 64201 -unsorted 60670 -unsound 62331 -unsourced 59774 -unspeakable 61940 -unspecific 63077 -unspecified 53010 -unspent 64657 -unspoiled 60762 -unspoilt 59702 -unspoken 59491 -unstable 49739 -unstained 62331 -unsteady 59702 -unstimulated 59227 -unstoppable 59227 -unstressed 63419 -unstructured 57122 -unstyled 62762 -unsubscribe 50199 -unsubscribing 65170 -unsubstantiated 60000 -unsubstituted 57923 -unsuccessful 53226 -unsuccessfully 59357 -unsuitable 54133 -unsuited 63991 -unsung 60762 -unsupervised 58417 -unsupported 56899 -unsure 52096 -unsurpassed 57785 -unsuspected 63792 -unsuspecting 56618 -unsustainable 58919 -unsweetened 61362 -unsymmetrical 63991 -unsympathetic 64657 -untamed 63991 -untapped 58212 -untenable 63792 -unter 56050 -untertitel 62762 -untested 61362 -unthinkable 59774 -untick 63792 -untied 64423 -until 35391 -untill 55084 -untimely 57524 -untitled 55793 -unto 49566 -untold 58577 -untouched 56652 -untoward 62469 -untrained 58979 -untranslated 57970 -untreated 49482 -untried 64423 -untrue 59848 -untuk 58365 -unui 65452 -unusable 59292 -unused 51087 -unusual 45382 -unusually 52411 -unvaccinated 65170 -unvaried 62066 -unveil 55963 -unveiled 51078 -unveiling 56356 -unveils 52018 -unverified 59357 -unvoiced 64201 -unwanted 48586 -unwarranted 58688 -unwary 64201 -unwashed 63991 -unwavering 59923 -unwed 64905 -unweighted 62469 -unweit 54706 -unwelcome 59630 -unwell 62331 -unwieldy 64657 -unwilling 53847 -unwillingly 64657 -unwillingness 58979 -unwind 57741 -unwinding 59227 -unwise 60856 -unwitting 63601 -unwittingly 59923 -unworthy 60492 -unwound 61818 -unwrap 62762 -unwrapped 62762 -unwritten 62469 -unyielding 64905 -unzip 58417 -unzipped 62196 -unzipping 62469 -uo 59560 -uous 63601 -up 28146 -upapada 61818 -upbeat 55299 -upbringing 59848 -upcoming 44537 -upcomming 64657 -upconverting 63419 -upd 65452 -update 38961 -updateAll 64905 -updated 39349 -updater 59101 -updates 40237 -updating 40233 -upfront 55014 -upgradation 65452 -upgrade 43355 -upgradeUserToHierarchical 63792 -upgradeable 63077 -upgraded 48687 -upgrades 49578 -upgrading 47843 -upheaval 60238 -upheavals 61818 -upheld 54792 -uphill 56050 -uphold 55107 -upholding 58113 -upholds 58523 -upholstered 55877 -upholstery 54560 -upkeep 58212 -upland 57440 -uplands 65452 -uplift 56862 -uplifted 61940 -uplifting 55793 -upline 65170 -uplink 57785 -upload 43856 -uploaded 46296 -uploader 58113 -uploading 51550 -uploads 50678 -upmarket 61051 -upmost 65452 -upon 36868 -uportal 65452 -upp 62066 -upped 60670 -upper 40673 -uppercase 61584 -uppermost 59039 -uppers 61152 -upping 63077 -uppity 64905 -uprated 65452 -upregulated 58523 -upregulates 64905 -upregulation 57653 -upright 51257 -uprights 62762 -uprima 63991 -uprising 57876 -uproar 59227 -uprooted 61818 -ups 49946 -upscale 52872 -upscaling 63991 -upset 48336 -upsets 57122 -upsetting 57653 -upshot 63245 -upside 51856 -upskirt 53613 -upskirts 61256 -upslope 64905 -upstaged 64905 -upstairs 53646 -upstairsgirls 63419 -upstanding 62762 -upstart 56972 -upstate 55250 -upstream 48046 -upsurge 60492 -upswing 64657 -uptake 46982 -uptight 63419 -uptime 57122 -upto 52375 -uptown 59848 -upturn 63991 -upturned 63991 -upvc 63419 -upward 50766 -upwardly 56356 -upwards 53565 -upwelling 60856 -upwind 63077 -ur 43635 -ura 62331 -uracil 56827 -ural 64201 -uranium 52435 -uranyl 58632 -urate 63077 -uration 64657 -urban 42932 -urbanMamas 64201 -urbana 64657 -urbandaily 58113 -urbane 65170 -urbanisation 62196 -urbanization 59702 -urbanized 61818 -urbanmamas 64657 -urchin 58470 -urchins 62196 -urdu 60157 -ure 55526 -urea 52509 -urease 64201 -ured 61818 -uremia 64905 -uremic 57238 -ures 61940 -ureter 62196 -ureteral 62331 -ureteropelvic 64201 -urethane 57696 -urethra 57785 -urethral 55849 -urge 49207 -urged 48882 -urgency 53746 -urgent 49296 -urgently 54399 -urges 50040 -urging 52699 -uri 57970 -uric 58919 -uridine 57440 -urinaire 63077 -urinal 63077 -urinals 63991 -urinalysis 62196 -urinario 63419 -urinary 47540 -urinate 62469 -urinates 63601 -urinating 61362 -urination 59774 -urine 47276 -uring 65452 -url 46234 -urls 57653 -urn 59923 -urns 62762 -urodynamic 63245 -urogenital 60078 -urogynecologic 64657 -urokinase 64201 -urologic 62469 -urological 61699 -urologist 62917 -urologists 64423 -urology 60670 -uronic 62196 -uroporphyrinogen 65452 -urothelial 63601 -urs 61699 -urself 60078 -urticaria 61940 -urticarial 63077 -uruguay 63601 -us 29924 -usa 50507 -usability 52040 -usable 51095 -usage 44512 -usages 60580 -usally 64201 -usando 63792 -usar 63419 -usb 48667 -usc 63601 -uscontact 64423 -usd 57238 -use 29340 -useCorporate 55934 -useNext 59424 -useable 57160 -used 30555 -useful 39556 -usefull 58919 -usefully 59424 -usefulness 51772 -useing 61362 -useless 50710 -usenet 59491 -usenext 60492 -user 35847 -user's 42532 -usergroup 63792 -usergroups 62331 -userid 63077 -userinfo 62762 -userinstinct 63419 -username 46681 -usernames 58212 -userpic 60000 -userpics 60670 -users 36557 -uses 39122 -usher 57046 -ushered 58162 -ushering 64201 -ushers 61256 -using 31091 -uso 59357 -usps 53423 -ussite 64657 -ust 60670 -usta 65170 -usted 59774 -ustedes 64423 -ustream 62196 -usual 43835 -usually 37972 -usualy 63792 -usuario 62469 -usuarios 62196 -usurp 65452 -usurpation 65452 -usurped 63792 -usuários 62196 -ut 51293 -utah 59491 -utd 63601 -ute 59774 -uted 62613 -utensil 61051 -utensils 56231 -utenti 63601 -uteri 59923 -uterine 51670 -utero 60405 -uterus 53695 -utes 60580 -uti 61818 -util 63601 -utilisation 56170 -utilise 55793 -utilised 55299 -utiliser 63991 -utilises 60580 -utilising 55821 -utilisé 65170 -utilitarian 60492 -utilities 49223 -utility 44251 -utility's 65170 -utilizar 64423 -utilization 48697 -utilize 47410 -utilized 47286 -utilizes 50514 -utilizing 47668 -utils 64201 -ution 64905 -utmost 52886 -utopia 61818 -utopian 61051 -utorrent 61152 -utorrentz 62917 -utr 65170 -utter 53630 -utterance 57653 -utterances 58365 -uttered 57876 -uttering 62762 -utterly 52858 -utters 65452 -utube 63601 -uu 57696 -uum 65170 -uur 64201 -uv 55373 -uve 64905 -uveitis 60238 -uw 60238 -ux 65452 -uxt 62331 -uy 62196 -uz 59560 -uzadow 63991 -uzumaki 65452 -v 39081 -vB 47097 -vBCredits 60580 -vBSEO 48781 -vBSkinworks 64905 -vBTEAM 65452 -vBadvanced 58470 -vBookie 62331 -vBulletin 46660 -vCJD 64423 -vCalendar 63792 -vCard 55877 -vO 64905 -vOut 64201 -vPro 61152 -vRNA 64423 -vShop 64423 -vTap 64657 -vWD 65452 -vWF 59357 -va 51406 -vac 60670 -vacaciones 64423 -vacancies 49207 -vacancy 50424 -vacant 51396 -vacate 56618 -vacated 56485 -vacating 62613 -vacation 44473 -vacationers 62917 -vacationing 61152 -vacations 50006 -vaccinate 62469 -vaccinated 55274 -vaccinating 65452 -vaccination 51909 -vaccinations 57876 -vaccine 47679 -vaccines 51825 -vaccinia 59774 -vache 63792 -vacua 64423 -vacuity 63419 -vacuo 62331 -vacuolar 63419 -vacuole 60580 -vacuoles 59424 -vacuum 44986 -vacuumed 65452 -vacuuming 63419 -vacuums 60405 -vad 64905 -vader 61051 -vag 64905 -vagal 57358 -vagaries 62762 -vagina 52375 -vaginal 49285 -vaginalis 63991 -vaginas 64423 -vaginismus 59357 -vagotomy 61699 -vagrant 64905 -vague 52559 -vaguely 55738 -vagueness 62762 -vagus 60492 -vagy 65452 -vai 58688 -vain 55130 -vainly 63245 -vaio 60952 -vais 63245 -vajza 64905 -val 58113 -valance 62469 -valcke 58470 -vale 59774 -valence 53286 -valencia 63245 -valency 63792 -valentin 63419 -valentine 56935 -valentine's 61472 -valentines 58162 -valentino 62066 -valerate 65170 -valerian 64201 -valerie 63419 -valet 57696 -valeting 64423 -valeur 63419 -valgus 61699 -vali 65170 -valiant 60952 -valiantly 63792 -valid 40380 -validate 50335 -validated 50630 -validates 58313 -validating 56899 -validation 48071 -validations 62613 -validator 60405 -validity 47248 -validly 59774 -valine 61472 -valium 49394 -valkyrie 63077 -valley 48445 -valleys 55526 -valoda 62196 -valor 62469 -valorem 59164 -valproate 62917 -valproic 65452 -vals 63601 -valsartan 58365 -valtrex 59292 -valuable 43104 -valuables 58113 -valuation 49707 -valuations 56170 -value 34969 -valued 48440 -values 37444 -valuing 58065 -valuta 65452 -valve 44413 -valved 64657 -valves 50507 -valvular 58417 -vam 64423 -vamos 62613 -vamp 61818 -vampire 53010 -vampires 58262 -van 41504 -vanadate 64201 -vanadium 56200 -vance 62917 -vanced 63419 -vances 64423 -vancomycin 58632 -vancouver 57566 -vandal 61818 -vandalism 56200 -vandalisthero 65452 -vandalized 62469 -vandalizing 65170 -vandals 62066 -vanderbilt 61256 -vandhu 65452 -vandross 65452 -vane 59491 -vaneless 63077 -vanes 60405 -vanessa 55906 -vanguard 60580 -vanilla 51425 -vanilloid 62762 -vaniqa 64905 -vanish 55934 -vanished 57358 -vanishes 57399 -vanishing 54321 -vanishingly 65452 -vanities 65170 -vanity 53438 -vanquish 64905 -vanquished 63792 -vans 54151 -vant 61818 -vantage 56862 -vantages 65452 -vapor 49103 -vaporization 61362 -vaporize 63601 -vaporized 61256 -vaporizer 60856 -vaporizing 64657 -vapors 59039 -vapour 53762 -vapours 64905 -var 48841 -vara 63245 -vardenafil 56585 -vari 61818 -variability 47827 -variable 42587 -variables 43523 -variably 60321 -variance 46953 -variances 54727 -variant 48538 -variants 50101 -varias 64905 -variation 43896 -variational 56021 -variations 45279 -variceal 59491 -varicella 59774 -varices 58470 -varicocele 62331 -varicose 56293 -varied 45641 -variegated 61256 -varies 47269 -varietal 61818 -varieties 49854 -variety 38954 -varios 62762 -various 36500 -variously 57009 -varnish 59292 -varnished 63077 -varnishes 65452 -varnishing 65170 -vars 63792 -varsity 55526 -varus 61818 -vary 43312 -varying 45597 -vas 54399 -vascular 44984 -vascularity 65170 -vascularization 63601 -vascularized 63991 -vasculature 57238 -vasculitis 59101 -vase 55992 -vasectomy 57046 -vases 61051 -vasoactive 57923 -vasoconstriction 57160 -vasoconstrictor 60580 -vasodilatation 61256 -vasodilation 58262 -vasodilator 61051 -vasodilators 64905 -vasodilatory 64201 -vasomotor 59702 -vasopressin 56262 -vasospasm 62066 -vast 45558 -vastly 54059 -vastness 63077 -vastus 65170 -vat 56140 -vata 64201 -vate 62917 -vated 59424 -vation 57831 -vations 60670 -vats 64905 -vaudeville 61472 -vault 54078 -vaulted 58212 -vaulting 64201 -vaults 58860 -vaunted 65170 -vauxhall 59424 -vaya 64423 -vayama 62469 -vb 59292 -vbBux 63245 -vbCrLf 62762 -vbPlaza 62917 -vba 61362 -vbscript 65170 -vc 58417 -vcd 60078 -vchaudha 62762 -vcore 62469 -vcr 61472 -vd 63601 -vdhoeven 62613 -ve 49966 -veal 57399 -vealed 60952 -veces 58313 -vector 43246 -vectorial 62066 -vectors 48217 -ved 60856 -veda 63419 -vedas 63601 -vedic 58745 -vedio 60405 -vee 64423 -veel 61818 -veep 62613 -veer 60762 -veered 62196 -veering 62196 -veers 62917 -veg 58802 -vega 61584 -vegan 53095 -vegans 62196 -vegas 51550 -vegeta 64905 -vegetable 48445 -vegetables 48408 -vegetal 61256 -vegetarian 51193 -vegetarianism 63792 -vegetarians 58417 -vegetated 61699 -vegetation 49319 -vegetative 54622 -veggie 56972 -veggies 56652 -vehement 64657 -vehemently 60405 -vehicle 40418 -vehicle's 55738 -vehicles 42991 -vehicular 55274 -vehicules 63601 -vehículos 63245 -vei 63601 -veil 54792 -veiled 58745 -veiling 63601 -veils 62196 -vein 48487 -veins 51752 -veiw 65452 -vejledninger 63419 -vel 57482 -velar 63245 -velba 63792 -velco 64905 -velcro 57970 -velit 62469 -vellum 63419 -velo 65170 -velocidad 63077 -velocimetry 63991 -velocities 51293 -velocity 44177 -velop 62331 -veloped 60580 -veloping 65170 -velopment 58919 -velour 59923 -velvet 53301 -velvety 60492 -vemos 62066 -ven 61152 -vena 55398 -vende 65170 -vendetta 61362 -vendeur 64905 -vending 53331 -vendita 63991 -vendo 65170 -vendor 48372 -vendor's 58017 -vendors 47756 -veneer 55299 -veneers 58212 -venerable 57696 -venerated 62469 -venereal 57876 -venetian 63245 -venezuela 61051 -vengeance 57046 -vengeful 62196 -venice 61584 -venir 62917 -venison 61152 -venlafaxine 57923 -venom 55992 -venomous 59923 -venoms 63601 -venous 49184 -vent 51026 -venta 61472 -vente 61051 -vented 56110 -ventilate 64905 -ventilated 54207 -ventilating 64201 -ventilation 49223 -ventilator 58417 -ventilatory 57160 -venting 56170 -vention 59424 -ventional 61256 -ventral 51511 -ventralis 63991 -ventrally 63792 -ventricle 53438 -ventricles 59227 -ventricular 46976 -ventrolateral 60580 -ventromedial 63792 -vents 54924 -ventura 63077 -venture 46931 -ventured 56585 -ventures 52635 -venturi 61472 -venturing 59702 -venue 46437 -venue's 64423 -venues 49146 -venus 61152 -veo 62762 -veoh 64657 -ver 51867 -vera 57923 -veracity 61256 -veranda 62066 -verandah 63601 -verano 62762 -verapamil 60492 -veratrine 62917 -verb 51931 -verbal 48653 -verbally 55657 -verbatim 57566 -verbiage 62331 -verbose 58632 -verbosity 64201 -verbs 54902 -verdad 60492 -verdant 63419 -verde 61256 -verdes 65170 -verdict 50906 -verdicts 60000 -vere 60000 -verge 53830 -vergence 63245 -verges 62196 -vergleichen 53581 -verifiable 57923 -verification 47211 -verificatoin 64423 -verified 46173 -verifier 61818 -verifies 57046 -verify 44269 -verifying 54059 -verily 64657 -verisign 63077 -veritable 59039 -veritas 63245 -verity 64905 -verizon 52858 -verkkotunnuksen 64201 -verlag 59702 -vermiculite 64905 -vermin 61940 -vermont 60157 -vernacular 58365 -vernal 64201 -vernix 65452 -vernon 63077 -vernusmaximus 63792 -vero 57831 -veronica 60856 -verrucosa 64905 -verry 61818 -vers 55849 -versa 57696 -versace 62762 -versatile 49394 -versatility 54664 -verse 51026 -versed 57318 -verses 53613 -versie 63991 -version 33084 -versionInternational 53454 -versione 63991 -versioning 64423 -versions 42827 -versionsmovie 53646 -versity 57318 -versión 62331 -verso 58745 -versuri 62066 -versus 42520 -versão 63601 -vert 60492 -vertebra 59848 -vertebrae 57399 -vertebral 53501 -vertebrate 56140 -vertebrates 58688 -vertebrobasilar 64657 -verted 62762 -vertex 51620 -vertical 43771 -vertically 51157 -verticals 63077 -vertices 51888 -vertigo 60952 -verve 61818 -very 31205 -veryCoolRunner 65452 -verze 61152 -veröffentlicht 63792 -ves 63792 -veshnin 65452 -vesicle 54879 -vesicles 50823 -vesicular 57785 -vessel 46640 -vessel's 61940 -vessels 47252 -vest 53917 -vested 53454 -vestibular 57482 -vestibule 63792 -vestibulum 64657 -vestigated 63601 -vestiges 63991 -vestigial 64201 -vestimentary 65170 -vesting 60405 -vests 59630 -vet 50484 -vet's 63245 -veteran 48756 -veteran's 60762 -veterans 49906 -veterinarian 55084 -veterinarians 55934 -veterinary 51008 -vetfriendly 63245 -veto 55037 -vetoed 60157 -vetoes 63991 -vets 56388 -vette 60580 -vetted 60321 -vetting 60856 -veut 63601 -veux 63792 -vexed 63077 -vexing 65170 -vextenddouble 54924 -vextendsingle 61152 -vey 61152 -veya 62469 -vez 55250 -vfs 63792 -vg 61051 -vga 58688 -vgn 63991 -vgs 60580 -vhf 63419 -vhs 58802 -vi 51580 -viSTAR 65452 -via 33458 -viability 50492 -viable 48178 -viaccess 65452 -viaduct 62331 -viaggio 63419 -viagra 40278 -viaje 62762 -viajes 58417 -vial 56652 -vials 57399 -vias 62917 -vib 65170 -vibe 53917 -vibes 57923 -vibrancy 62762 -vibrant 48756 -vibrate 59164 -vibrated 65170 -vibrates 61584 -vibrating 55474 -vibration 49511 -vibrational 52152 -vibrationally 63991 -vibrations 52725 -vibrato 63419 -vibrator 55793 -vibrators 59702 -vibratory 59491 -vibronic 63792 -vic 59848 -vicar 62762 -vicarious 65170 -vicariously 64657 -vice 44452 -vices 59227 -vicinal 64423 -vicinity 50357 -vicious 52872 -viciously 61818 -vicissitudes 64201 -vicki 64423 -vicky 58162 -vicodin 51175 -victim 46572 -victim's 53917 -victimisation 64201 -victimization 58745 -victimized 60670 -victims 46144 -victor 58365 -victoria 54857 -victorian 54727 -victories 54560 -victorious 58313 -victors 64423 -victory 45490 -vid 51008 -vida 54439 -vide 55202 -vided 57160 -video 31417 -video's 58919 -videoadd 53423 -videobloggers 65170 -videocassette 63245 -videoclip 61940 -videoclips 64423 -videoclipuri 63792 -videoconference 64201 -videoconferencing 60856 -videogame 58523 -videogameall 64657 -videogames 61699 -videographer 63991 -videographers 65170 -videojoes 64657 -videoklipe 62066 -videos 36544 -videosfull 53646 -videosu 62066 -videotape 56899 -videotaped 60078 -videotapes 61051 -videotaping 63245 -videotrading 65170 -vides 58262 -vidiLife 64905 -viding 60952 -vidio 62196 -vidoe 63601 -vidoes 63792 -vids 52399 -vidual 58632 -viduals 60670 -vidya 64201 -vidéo 58365 -vidéos 63077 -vie 55060 -vied 64201 -viel 60492 -viele 63077 -vielen 62917 -viene 65170 -vienna 63245 -vient 65170 -vier 65170 -vies 64657 -viet 64905 -vietnam 58745 -vietnamese 61818 -view 32449 -viewable 55526 -viewed 40433 -viewer 49319 -viewer's 60952 -viewers 48510 -viewership 64905 -viewfinder 59292 -viewing 41230 -viewings 61051 -viewpoint 53124 -viewpoints 55766 -viewport 63419 -views 36793 -viewsOct 64905 -viewsSep 61472 -viewsonic 63792 -vig 65452 -vigil 58860 -vigilance 59101 -vigilant 59292 -vigilante 60762 -vignette 62613 -vignettes 58417 -vigor 58745 -vigorous 52387 -vigorously 54643 -vigour 60670 -vii 56721 -viii 57358 -vijay 64423 -viking 61584 -vikings 64657 -vil 62331 -vila 64657 -vile 58860 -vilified 63419 -vill 61940 -villa 51330 -village 43982 -village's 65170 -villager 64657 -villagers 56021 -villages 49789 -villain 56200 -villainous 63245 -villains 57160 -villas 53286 -ville 60952 -villi 64905 -villians 64657 -villous 64201 -vim 60492 -vimentin 62762 -vin 60238 -vinaigrette 60078 -vince 61051 -vincent 58017 -vinci 63419 -vincristine 62066 -vind 63077 -vinden 64905 -vindicate 63991 -vindicated 62917 -vindication 63792 -vindictive 62762 -vine 54749 -vinegar 51762 -vines 55766 -vineyard 55226 -vineyards 56110 -vinifera 65452 -vinings 57609 -vino 62917 -vinsage 61362 -vintage 46862 -vintagecoinop 65170 -vintages 64423 -vinyl 47221 -vinylic 65452 -vinylidene 64423 -vinyls 61818 -viola 58212 -violarite 61699 -violate 49584 -violated 51175 -violates 50848 -violating 52597 -violation 44848 -violations 48944 -violator 64657 -violators 60321 -violence 44939 -violent 47248 -violently 57318 -violet 54643 -violets 63792 -violin 53256 -violinist 58577 -violins 60762 -vious 60078 -viously 58632 -vioxx 60492 -vip 57122 -vipa 64905 -vipat 62066 -viper 60157 -vir 57696 -viral 45680 -virally 65170 -virco 64905 -viremia 61256 -virescens 64423 -virgin 49257 -virginia 53865 -virginiana 64201 -virginity 56231 -virgins 57876 -virgo 62331 -virial 59848 -viridans 64905 -virion 61256 -virions 60492 -virologic 62762 -virological 63792 -virology 63792 -vironment 65170 -vironmental 65452 -viropop 63419 -virtua 65170 -virtual 42558 -virtuale 64905 -virtualisation 58262 -virtualization 54245 -virtualize 65170 -virtualized 61362 -virtually 45490 -virtue 50461 -virtues 56021 -virtuosity 63601 -virtuoso 60321 -virtuous 58017 -virulence 54622 -virulent 57238 -virus 42098 -viruses 46437 -vis 57009 -visa 47417 -visage 65452 -visas 54321 -viscera 64657 -visceral 53485 -viscoelastic 59164 -viscometer 65452 -viscoplastic 62917 -viscose 64201 -viscosities 61699 -viscosity 49739 -viscosum 61940 -viscous 53597 -vise 60952 -visiLogin 65452 -visibility 49783 -visible 39398 -visibly 56791 -visio 61051 -vision 43295 -visionaries 61940 -visionary 55178 -visions 53109 -visit 36371 -visita 62066 -visitas 52375 -visitation 56388 -visite 64201 -visited 44974 -visiteurs 64201 -visiting 43964 -visitor 47645 -visitor's 58979 -visitors 42571 -visits 43756 -visor 59923 -visors 64423 -vist 61699 -vista 49028 -vistas 59424 -visti 64423 -visting 64905 -visto 59848 -visual 41771 -visualisation 58632 -visualise 62762 -visualised 63419 -visualization 51017 -visualizations 64657 -visualize 52913 -visualized 52534 -visualizing 58470 -visualizzazioni 60670 -visually 49913 -visuals 56485 -vit 64905 -vita 57970 -vitae 58262 -vital 45311 -vitality 55711 -vitally 58632 -vitamin 45919 -vitamins 50568 -vitesse 64657 -vith 65452 -viticulture 65170 -vitiligo 65452 -vito 64905 -vitor 65170 -vitorverdadeiro 64423 -vitreous 56388 -vitrification 62331 -vitrified 62762 -vitriol 64423 -vitriolic 65452 -vitro 44001 -vitronectin 62613 -viva 56899 -vivacious 62762 -vival 61699 -vivant 64201 -vivastreet 63245 -vivax 58365 -vive 62469 -viverra 65452 -vivian 64657 -viviansullinwank 64423 -vivid 51974 -vividly 56652 -vivo 45708 -vivre 64905 -vixen 61362 -viz 63077 -vizio 63991 -vj 61940 -vk 63991 -vl 61584 -vlad 65452 -vladimir 64657 -vlads 64423 -vlan 63792 -vlc 64423 -vlog 60952 -vlogbrothers 62613 -vm 59702 -vmlinux 59424 -vmstat 65170 -vmware 58162 -vmware's 65452 -vn 61256 -vnc 65452 -vnunet 65452 -vo 57084 -vob 62066 -vocab 62917 -vocabularies 62196 -vocabulary 49946 -vocal 48422 -vocalist 55226 -vocalists 58745 -vocalization 65170 -vocalizations 64201 -vocally 62331 -vocals 51052 -vocation 59424 -vocational 50514 -vocations 63792 -voce 61362 -voces 64657 -vociferous 63245 -você 59491 -vodafone 60762 -vodka 55423 -vodpod 63419 -vogelzang 62762 -vogue 58365 -voi 60952 -voice 41205 -voiced 53970 -voicemail 56862 -voiceover 62762 -voices 48866 -voicing 59848 -void 43945 -voided 60238 -voiding 59560 -voids 55631 -voila 62331 -voile 64905 -voip 56899 -voir 57238 -voiture 63792 -voix 65170 -vol 53346 -volando 64201 -volar 64905 -volatile 50343 -volatiles 61584 -volatility 52233 -volatilization 62331 -volcanic 52062 -volcanics 63991 -volcanism 64201 -volcano 55821 -volcanoes 59702 -volcom 64657 -vole 63077 -voles 64905 -volgen 64423 -volitional 63245 -volklgirl 64423 -volkswagen 60670 -voll 62613 -volley 58212 -volleyball 51931 -volleys 65452 -vols 64423 -volt 53361 -volta 62066 -voltage 42251 -voltages 52210 -voltammetry 63245 -voltammogram 65452 -voltmeter 63991 -volts 54857 -volume 39265 -volumes 46657 -volumetric 54188 -voluminous 58262 -voluntarily 51358 -voluntary 47255 -volunteer 45488 -volunteered 53729 -volunteering 54059 -volunteerism 61818 -volunteers 46285 -voluptatem 63601 -voluptuous 62469 -volutpat 63991 -volved 60078 -volver 61940 -volves 65170 -volving 64905 -volvo 60078 -vom 54360 -vominatrix 60000 -vomit 57238 -vomited 64423 -vomiting 53392 -von 44291 -vonage 64423 -voodoo 57970 -voor 52435 -vor 55552 -voracious 61584 -vortex 53746 -vortexed 61256 -vortexing 64201 -vortices 56293 -vorticity 59848 -vos 56324 -vost 59702 -vostfr 62066 -vote 39131 -voted 45697 -voter 49959 -voter's 64201 -voters 46053 -votes 41834 -votesawardsNewsDeskmessage 55657 -votesby 55657 -votestv 63601 -voting 44830 -votive 58577 -voto 59424 -votre 56231 -vou 62331 -vouch 56452 -voucher 52447 -vouchers 52198 -voulez 61472 -vous 53109 -vow 57046 -vowed 55657 -vowel 56050 -vowels 56356 -vowing 62917 -vows 53988 -vox 61256 -voxel 59630 -voxels 62331 -voy 56687 -voyage 53549 -voyager 60157 -voyages 60405 -voyeur 53271 -voyeurism 59227 -voyeuristic 65170 -voz 59774 -vp 58470 -vpn 60580 -vr 54969 -vragen 62066 -vrai 64423 -vraiment 61699 -vrais 60492 -vray 64657 -vrolijk 65452 -vs 39576 -vse 64201 -vss 63991 -vst 63792 -vsti 65452 -vt 57970 -vtec 60762 -vu 57009 -vue 60856 -vuelta 63991 -vues 64657 -vuitton 55178 -vulaj 64905 -vulcanizate 65170 -vulcanization 63792 -vulcanized 63601 -vulgar 56231 -vulgare 61472 -vulgaris 56356 -vulnerabilities 53038 -vulnerability 49854 -vulnerable 47827 -vulputate 61940 -vulture 63991 -vultures 62613 -vulva 57970 -vulval 64657 -vulvar 63792 -vuole 63601 -vv 60405 -vw 57696 -vx 62469 -vxdowloader 61584 -vy 64423 -vying 58802 -vzdump 63792 -và 59164 -värilogo 55107 -véhicules 62469 -vía 63419 -vídeo 59292 -vídeos 61152 -w 41563 -wR 63601 -wT 64201 -wUz 65170 -wa 51492 -waa 59848 -waaay 63419 -waar 62066 -waardering 63245 -waarmee 64423 -wach 65170 -wachovia 62331 -wack 61584 -wacker 65452 -wacky 55906 -waco 63991 -wacom 64905 -wad 58860 -waddle 65452 -wade 57876 -waded 64201 -waders 63077 -wading 58212 -wae 65452 -wafer 50446 -wafers 54360 -waffle 57741 -waffles 60670 -wafrederick 63792 -wag 59923 -wage 47297 -waged 58860 -wager 57358 -wagering 60078 -wagers 64905 -wages 48533 -wagging 63601 -waging 60321 -wagner 64423 -wagon 53010 -wagons 58417 -wags 65452 -wah 60078 -wahoo 65170 -waht 61051 -wai 63077 -wail 61818 -wailing 60762 -waist 50654 -waistband 57696 -waistcoat 65170 -waisted 64423 -waistline 62762 -waists 65452 -wait 37734 -waited 49847 -waiter 56021 -waiters 58632 -waitin 63991 -waiting 41950 -waitress 56080 -waitresses 60952 -waits 53762 -waitstaff 65170 -waive 53646 -waived 53331 -waiver 51463 -waivers 57358 -waives 59292 -waiving 60405 -wake 46581 -wakeboard 60238 -wakeboarding 65452 -wakes 55154 -wakeup 62469 -waking 53211 -wal 63991 -wala 60762 -walang 65170 -waldorf 65452 -wales 59630 -wali 64423 -walk 41295 -walkable 61051 -walked 46136 -walker 54581 -walkers 56935 -walkie 63991 -walkin 62331 -walking 43218 -walkman 62331 -walkout 61818 -walks 47819 -walkthrough 54151 -walkthroughs 63077 -walkway 56756 -walkways 58523 -wall 40291 -walla 65452 -wallace 58113 -walled 56827 -wallet 51166 -wallets 57923 -walleye 64423 -wallowing 64201 -wallpaper 46953 -wallpapers 48605 -walls 44496 -wally 65452 -walmart 58417 -walneal 61940 -walnut 55526 -walnuts 57318 -walrus 62469 -walsh 64201 -walt 62331 -walter 59630 -waltham 62196 -waltz 59560 -wan 57785 -wan't 63419 -wana 57399 -wand 55060 -wanda 65170 -wander 53501 -wandered 56080 -wanderer 63991 -wandering 54005 -wanderinghome 64423 -wanders 59848 -wands 60952 -wane 63245 -waned 65452 -wanes 64201 -wang 62917 -waning 59164 -wank 59357 -wanker 63991 -wanking 62762 -wanna 44672 -wannabe 58313 -wannabes 64201 -want 32116 -wanted 38938 -wantickets 64905 -wanting 46931 -wanton 60580 -wants 40583 -wap 59101 -war 40688 -war's 61256 -warcraft 51985 -ward 49946 -warden 59491 -wardens 62066 -wardrobe 52256 -wardrobes 61152 -wards 54078 -ware 53407 -warehouse 47721 -warehouses 55526 -warehousing 56652 -wares 57923 -warez 53211 -warfare 53331 -warfarin 55934 -warfighting 65452 -warhammer 61362 -warhead 62762 -warheads 62066 -warlike 64905 -warlock 61699 -warlord 63077 -warlords 62066 -warm 43517 -warmed 55657 -warmer 52534 -warmers 61362 -warmest 58262 -warming 48208 -warmly 56420 -warms 58212 -warmth 52018 -warmup 63601 -warn 50499 -warned 48711 -warner 57785 -warning 45448 -warnings 50129 -warns 49946 -warp 55373 -warped 58212 -warping 62613 -warplanes 63601 -warps 65452 -warrant 47887 -warranted 54264 -warranties 50306 -warranting 63601 -warrantless 64905 -warrants 52597 -warranty 43805 -warren 52752 -warrenty 63419 -warring 60078 -warrior 52187 -warriors 53597 -warrock 62196 -wars 49092 -warship 59424 -warships 62066 -wart 60078 -wartime 56140 -warts 57785 -warty 62331 -warwick 63419 -wary 54419 -was 23850 -wasabi 61818 -wash 46581 -washable 55992 -washcloth 64423 -washed 45358 -washer 51570 -washers 56485 -washes 54622 -washing 46957 -washings 60405 -washington 53081 -washout 58313 -washroom 65452 -waskillywabbit 63077 -wasn't 41321 -wasn'ta 56721 -wasnt 52040 -wasp 60580 -wasps 59424 -wassup 63077 -wast 64657 -wastage 60952 -waste 41969 -wasted 50782 -wasteful 58979 -wastegate 64657 -wasteland 62469 -waster 64657 -wastes 52805 -wastewater 50898 -wasting 51211 -wastrel 64657 -wat 49173 -watauga 64423 -watch 38074 -watcha 63601 -watchable 60762 -watchclose 62917 -watchdog 55604 -watchdogs 65452 -watched 45727 -watcher 61940 -watchers 58212 -watches 47721 -watchful 57923 -watchin 62066 -watching 42679 -watchlist 52927 -watchman 63245 -watchmen 65452 -watchs 63601 -watchtower 64905 -wate 65170 -water 34507 -water's 59491 -waterboarding 64201 -waterborne 61699 -watercolor 57970 -watercolors 63245 -watercolour 60238 -watercourse 62613 -watercraft 60856 -watercress 64201 -watered 56687 -waterfall 56021 -waterfalls 56972 -waterford 64905 -waterfowl 59560 -waterfront 52686 -watering 53533 -waterjet 61699 -waterline 63419 -waterlogged 63419 -watermark 56262 -watermarked 63792 -watermarking 61256 -watermarks 63419 -watermelon 57876 -waterpark 63991 -waterparks 65452 -waterproof 51492 -waterproofing 58577 -waters 47460 -watershed 52673 -watersheds 59292 -waterside 61699 -watersport 61584 -watersports 57440 -watertight 61152 -waterway 59164 -waterways 57524 -waterworks 63419 -watery 58212 -watever 65452 -wats 55226 -watson 58470 -watt 52074 -wattage 60000 -wattle 64905 -watts 53746 -watz 64905 -wav 55373 -wave 42840 -waved 56324 -waveform 52927 -waveforms 55552 -wavefront 60492 -wavefronts 63601 -wavefunction 60856 -wavefunctions 62613 -waveguide 50192 -waveguides 56080 -wavelength 47943 -wavelengths 52609 -wavelet 54706 -wavenumber 60580 -waver 62331 -wavered 64423 -wavering 64657 -waverly 64201 -waves 46159 -waving 55226 -wavy 57785 -wax 50365 -waxed 58745 -waxes 60856 -waxing 58365 -waxwork 63601 -waxy 58470 -way 32588 -waymark 62917 -waymarks 63419 -wayne 52886 -waynes 64657 -waypoint 63419 -ways 39602 -wayside 61940 -wayward 61051 -wayyy 65170 -waz 61818 -wazzup 65452 -wb 55526 -wc 57831 -wcrc 65170 -wd 63792 -we 27335 -we'd 48305 -we'll 42494 -we're 41081 -we've 43230 -weak 44761 -weaken 54792 -weakened 53597 -weakening 56050 -weakens 59560 -weaker 51095 -weakest 55323 -weakly 51610 -weakness 50263 -weaknesses 52118 -wealth 45899 -wealthier 59702 -wealthiest 58262 -wealthy 50394 -wean 61152 -weaned 59923 -weaning 55766 -weanling 63792 -weapon 47622 -weaponry 59164 -weapons 45867 -wear 42332 -wearable 57046 -wearer 58470 -wearer's 60405 -wearers 62066 -wearin 65452 -wearing 44472 -wears 50591 -weary 56262 -weasel 61256 -weather 41346 -weather's 63792 -weatherby 65452 -weathered 57923 -weathering 56293 -weatherman 65170 -weatherproof 59357 -weathers 64905 -weave 54188 -weaved 63601 -weaver 62066 -weavers 61818 -weaves 58162 -weaving 54321 -web 34439 -web's 58017 -webCT 65170 -webanalytics 64423 -webapp 64905 -webapps 65452 -webaward 57923 -webb 65170 -webbed 64905 -webbing 59101 -webbyaward 56518 -webcam 47899 -webcams 54835 -webcast 54879 -webcasting 62469 -webcasts 56200 -webcomic 62066 -webct 63419 -webdesign 60000 -webdynpro 65452 -weber 63991 -webhost 62613 -webhosting 61362 -webinar 59164 -webinars 62613 -webisode 63792 -webkinz 62613 -weblinks 59630 -weblog 49701 -weblogs 53779 -webmail 56231 -webmaster 49417 -webmaster's 56050 -webmasters 54226 -webmunkii 64423 -webpage 50115 -webpages 56899 -webring 64423 -webroot 64905 -webs 55631 -webserver 57970 -webservice 64423 -webshop 65170 -webshots 53847 -website 35266 -website's 56827 -websiteoutlook 63419 -websites 42679 -websnapr 58688 -webspace 62613 -webstart 64423 -websted 63245 -webster 63077 -webtools 65170 -webtubbs 65170 -wed 53533 -wedded 63601 -wedding 41919 -weddings 51482 -wedfighter 64657 -wedge 51793 -wedged 60238 -wedges 57358 -wedi 62762 -wedlock 64657 -wednesday 57696 -wee 51877 -weed 50306 -weeding 61472 -weeds 53024 -week 35978 -week's 46684 -weekday 54902 -weekdays 54706 -weekend 42368 -weekend's 56262 -weekender 63991 -weekends 47827 -weeklong 62469 -weekly 42663 -weeknight 62762 -weeks 35816 -weemundo 65452 -ween 63245 -weenie 63792 -weep 59292 -weeping 59227 -weeps 65452 -weer 62469 -wees 63419 -weevil 61584 -weevils 61472 -weezy 62762 -wefan 63792 -weft 60000 -weg 63792 -wei 61818 -weigh 50129 -weighed 49893 -weighing 50321 -weighs 51017 -weight 38356 -weightDifferent 64201 -weighted 48959 -weighting 53779 -weightings 64905 -weightless 64657 -weightlifting 63601 -weightloss 62066 -weights 47518 -weighty 60856 -weil 60670 -weiner 64905 -weir 62762 -weird 47136 -weirdest 60238 -weirdly 63601 -weirdness 62613 -weirdo 62196 -weisz 64905 -weiter 62762 -weitere 62613 -wel 57160 -welch 65452 -welcome 42132 -welcomed 49184 -welcomes 50314 -welcoming 51846 -weld 54727 -welded 53226 -welder 60670 -welders 61699 -welding 49789 -welds 59357 -welfare 47050 -well 31906 -wellbeing 55226 -wellbore 60492 -wellbutrin 53712 -wellhead 63419 -wellington 63792 -wellknown 64423 -welll 64423 -wellness 51909 -wellpage 62196 -wells 49168 -welsh 62613 -welt 61362 -welterweight 61152 -welwitschii 64201 -wembley 65452 -wen 53470 -wena 65170 -wendy 60157 -wenn 57609 -weno 64201 -went 37725 -wep 64657 -wept 61051 -wer 55274 -werden 57566 -were 26957 -weren't 46640 -werent 60238 -werewolf 61699 -werewolves 63601 -werk 65452 -wernt 64905 -wero 65170 -wersja 64905 -wersji 65452 -wert 65452 -wes 61472 -wesc 62469 -west 42908 -westbound 59560 -westerly 59923 -western 44449 -westernmost 64423 -westerns 63991 -westfield 63077 -westlife 63419 -westminster 65170 -weston 63991 -westward 58688 -westwards 65452 -westwood 63245 -wesw 64423 -wet 44619 -wether 59424 -wetland 51963 -wetlands 51741 -wetness 63601 -wetsuit 62762 -wetsuits 64423 -wettability 63991 -wetted 58632 -wetter 62469 -wettest 62469 -wetting 56791 -weve 60580 -wey 63601 -weyers 63991 -wfc 64201 -wg 63601 -wget 60238 -wh 58688 -wha 63792 -whack 58470 -whacked 62469 -whacking 65170 -whale 51974 -whalersailer 63792 -whales 52597 -whaling 53565 -whammy 63077 -whanau 65170 -wharf 60238 -what 29742 -what's 41626 -whatcha 63077 -whatever 42711 -whatever's 64657 -whatnot 63419 -whats 47116 -whatsoever 51482 -whe 63792 -wheat 47507 -wheather 65452 -whee 64905 -wheel 44806 -wheel's 64905 -wheelbarrow 63601 -wheelbase 54439 -wheelchair 51131 -wheelchairs 58745 -wheeled 56420 -wheeler 60078 -wheelers 63792 -wheelie 58802 -wheelies 64201 -wheeling 63792 -wheels 46928 -wheeze 64657 -wheezing 60856 -when 28888 -when's 63792 -whence 57609 -whenever 45008 -whens 63419 -wher 63077 -where 31124 -where'd 61256 -where's 53729 -whereabouts 57399 -whereas 42393 -whereby 48515 -wherefore 64423 -wherein 40091 -whereof 59560 -wheres 60492 -whereupon 57876 -wherever 48165 -wherewithal 64423 -whet 63419 -whether 36354 -whey 54439 -which 26964 -whichever 51600 -whieh 64657 -whiff 60952 -while 33274 -whilst 46226 -whim 60405 -whimpering 64905 -whims 59630 -whimsical 56551 -whimsy 64657 -whine 56140 -whines 65452 -whining 56791 -whiny 63077 -whip 53438 -whiplash 62613 -whipped 53882 -whipping 55500 -whiprush 64905 -whips 60238 -whirl 61699 -whirled 65452 -whirling 61584 -whirlpool 57238 -whirlwind 59357 -whirring 64657 -whisk 58017 -whisked 62066 -whisker 58470 -whiskers 59164 -whiskey 56356 -whisking 65452 -whisky 58313 -whisper 56200 -whispered 58162 -whisperer 64905 -whispering 59164 -whispers 58212 -whistle 56200 -whistleblower 62066 -whistler 63792 -whistles 58860 -whistling 61699 -whit 59560 -white 37671 -whiteSmoke 65170 -whitebait 63077 -whiteboard 60238 -whitelist 63245 -whiten 64657 -whitened 64657 -whiteness 61940 -whitening 56935 -whitepaper 61584 -whitepapers 59923 -whiter 61472 -whites 51590 -whitespace 62469 -whitest 64905 -whitetail 62762 -whitewash 64657 -whitewashed 64201 -whitewater 59357 -whith 62613 -whither 64423 -whiting 64423 -whitish 60000 -whitney 63419 -whittled 63245 -whiz 61699 -who 28955 -who'd 56262 -who'll 57482 -who're 65170 -who's 46068 -who've 53565 -whoa 60856 -whoever 51762 -whois 53533 -whoisguard 64201 -whole 37255 -wholeheartedly 59560 -wholemeal 62469 -wholeness 61699 -wholes 65170 -wholesale 45912 -wholesaler 56756 -wholesalers 56551 -wholesales 64905 -wholesaling 65170 -wholesome 57440 -wholly 49899 -whom 41990 -whomever 57876 -whoop 61362 -whooping 59292 -whoops 65452 -whopping 55821 -whore 53501 -whores 56652 -whorl 64201 -whorls 64201 -whos 53970 -whose 39458 -whosoever 60952 -wht 61699 -whut 64423 -why 35141 -whys 64201 -wi 54245 -wich 55934 -wichita 65170 -wick 59227 -wicked 52175 -wickedness 62917 -wickedpuppets 62917 -wicker 57741 -wicket 58017 -wickets 57482 -wicking 59774 -wicks 62917 -wid 57524 -wide 38835 -wideband 59424 -widely 43336 -widen 54879 -widened 57199 -widening 54302 -widens 55738 -wideout 65452 -wider 46037 -widescreen 52886 -widespread 47500 -widest 51377 -widget 47760 -widgetize 65452 -widgets 50409 -widow 53501 -widow's 64905 -widowed 60580 -widower 62066 -widows 60000 -width 44182 -widths 53167 -wie 54992 -wieder 58802 -wieght 63991 -wield 57970 -wielded 62762 -wielding 60078 -wields 63601 -wien 65452 -wierd 56356 -wif 59357 -wife 40996 -wife's 52725 -wifes 57970 -wifey 61584 -wifi 54059 -wig 57009 -wigan 62917 -wiggle 57009 -wiggles 64657 -wiggling 63792 -wigs 58688 -wih 62613 -wiht 62331 -wii 48510 -wiimote 64201 -wij 64201 -wiki 47070 -wikiHow 56687 -wikiHows 64905 -wikia 65170 -wikipedia 53533 -wikis 55060 -wikispaces 62762 -wikizine 64423 -wil 54902 -wild 43628 -wildcard 56862 -wildcards 54560 -wilde 63792 -wilder 62762 -wilderness 52818 -wildest 57238 -wildfire 58365 -wildfires 60952 -wildflower 62196 -wildflowers 60952 -wildland 62917 -wildlife 47453 -wildly 54321 -wildreleases 65170 -wilds 63077 -wildtype 60856 -wildwood 63419 -wile 61584 -wiles 64657 -wiley 64657 -wilfully 65452 -wilh 62613 -wilkinson 61584 -will 25324 -willbe 64201 -willed 62613 -willful 58417 -willfully 58577 -william 54499 -williams 54581 -willie 62469 -willing 43490 -willingly 56721 -willingness 50379 -willis 63077 -willl 64201 -willow 57609 -willows 64201 -willpower 63601 -wills 56293 -willtotruth 65170 -willy 59424 -wilson 57238 -wilt 58212 -wilted 63077 -wilting 62613 -wily 62917 -wim 65170 -wimg 64905 -wimp 64657 -wimpy 63077 -win 39584 -winamp 56756 -winavi 62917 -wince 64905 -winced 63991 -winch 57609 -winches 63077 -winchester 63245 -wind 43115 -windbreaks 64657 -winded 63419 -winder 60492 -winders 63991 -windfall 56518 -windfalls 63077 -winding 49713 -windings 57238 -windmill 59923 -windmills 62331 -window 39198 -windowed 61584 -windowing 64905 -windowless 63419 -windows 41834 -windrose 62917 -winds 48195 -windscreen 59424 -windscreens 63792 -windshield 55793 -windsor 61152 -windstar 63991 -windsurfing 61472 -windswept 64905 -windvd 64201 -windward 61362 -windy 55323 -wine 42632 -wine's 64657 -winehouse 61818 -winemaker 61362 -winemakers 61940 -winemaking 61362 -wineries 57696 -winery 55877 -winery's 65170 -wines 49135 -wing 47992 -winged 56899 -winger 58860 -wingers 65170 -winging 65170 -wings 49376 -wingspan 64657 -wining 61362 -wink 55274 -winked 60405 -winkeye 64423 -winking 64657 -winks 62469 -winless 63792 -winner 45184 -winner's 59702 -winners 46552 -winnie 61584 -winning 43045 -winningest 63601 -winnings 59491 -winnipeg 62331 -winoffice 63419 -winrar 60952 -wins 44825 -winston 59774 -winter 43805 -winter's 60580 -wintering 62066 -winters 54969 -wintry 63601 -winx 63601 -winxp 60078 -winzip 61256 -wipe 51731 -wiped 54133 -wipeoutpdr 61152 -wiper 58262 -wipers 59848 -wipes 55274 -wiping 56827 -wir 57318 -wird 56110 -wire 43153 -wirebond 65170 -wired 50599 -wireframe 62613 -wireless 41587 -wirelessly 55578 -wireline 59424 -wires 49325 -wiretap 65170 -wiretapping 63077 -wiring 49682 -wirklich 63245 -wiry 63601 -wisconsin 58065 -wisconsinpatriot 62196 -wisdom 48468 -wise 47776 -wiseGEEK 63792 -wisely 55738 -wiser 59039 -wisest 62613 -wish 38846 -wishbone 64423 -wished 50898 -wishes 47080 -wishful 59630 -wishing 49279 -wishlist 47540 -wishlists 63077 -wisi 64657 -wisn 63419 -wisp 63601 -wispy 65170 -wissen 65452 -wistful 63245 -wists 63077 -wit 49081 -witch 52648 -witch's 63419 -witcha 64905 -witchcraft 59848 -witches 58313 -with 21032 -witha 62613 -withdraw 49952 -withdrawal 48050 -withdrawals 56721 -withdrawing 55906 -withdrawl 61362 -withdrawn 51069 -withdraws 58979 -withdrew 54706 -wither 62469 -withered 61152 -withering 63419 -withers 64905 -withheld 55154 -withhold 56618 -withholding 53970 -withholds 63991 -within 32114 -withing 63077 -without 32685 -withstand 51415 -withstanding 61584 -withstands 64905 -withstood 62917 -witht 64423 -withthe 63792 -witli 61256 -witness 47559 -witnessed 50277 -witnesses 50484 -witnessing 55793 -wits 58745 -witty 54540 -wiv 58919 -wives 51541 -wiz 61051 -wizard 51731 -wizardry 65170 -wizards 58919 -wk 54302 -wks 52996 -wl 64905 -wlio 63601 -wll 63792 -wlll 61152 -wlth 63419 -wm 60405 -wma 57399 -wmv 53470 -wn 62762 -wna 65170 -wnt 63601 -wo 53124 -wobble 62066 -wobbles 65170 -wobbly 61362 -woe 59101 -woeful 62196 -woefully 60157 -woes 53346 -woffa 64423 -woh 62469 -wohl 65170 -wohnung 65452 -wok 60078 -woke 51772 -woken 60078 -wold 62917 -wolf 52996 -wolf's 64423 -wolff 62762 -wolfgang 64657 -wolves 56110 -woman 40005 -woman's 50335 -womanhood 65452 -womanizer 63601 -womanly 63601 -womans 59357 -womb 56485 -wombat 63601 -women 36974 -women's 44902 -womens 49411 -won 41396 -won't 39275 -wonder 43385 -wondered 49913 -wonderful 41985 -wonderfull 61051 -wonderfully 52982 -wondering 45380 -wonderland 58470 -wonderment 64201 -wonders 51052 -wondrous 58919 -wong 62613 -wonky 64905 -wont 47054 -wonton 65452 -woo 56140 -wood 42581 -woodblock 65452 -woodcut 63792 -wooded 54479 -wooden 46637 -woodland 52996 -woodlands 57876 -woods 50560 -woodstock 63792 -woodturning 64657 -woodward 63991 -woodwork 60405 -woodworker 64423 -woodworkers 64423 -woodworking 55992 -woody 53581 -wooed 64423 -woof 63601 -woofer 61584 -woofers 62917 -woogie 64201 -wooing 63601 -wool 49834 -woolen 61362 -woollen 65452 -woolly 60321 -wooly 62613 -wooo 62762 -woop 63792 -woos 61699 -woot 61818 -wor 62613 -worcester 63077 -word 38568 -word's 63245 -worded 58802 -worden 62196 -wording 53438 -wordless 61940 -wordline 65170 -wordmark 65452 -wordnet 62762 -wordplay 63991 -wordpress 53865 -words 37614 -wordt 62469 -wordy 63245 -wore 49291 -work 31042 -work's 62613 -workNet 64905 -workability 63601 -workable 56618 -workaholic 64657 -workaround 55849 -workarounds 61940 -workbench 60762 -workbook 57160 -workbooks 61818 -workcell 61256 -workcells 64905 -workday 60238 -workdays 65170 -worked 39804 -worker 46404 -worker's 56827 -workers 41689 -workflow 51560 -workflows 59848 -workforce 49682 -workgroup 58262 -workgroups 63245 -workhorse 61940 -workin 57566 -working 35481 -workings 55037 -workload 53392 -workloads 59848 -workman 63792 -workmanship 55711 -workmen 60492 -workopolis 62917 -workout 49739 -workouts 55849 -workpiece 59923 -workpieces 64423 -workplace 47756 -workplaces 58313 -workroom 62917 -works 37727 -worksheet 54188 -worksheets 55373 -workshop 45477 -workshops 47645 -worksite 61818 -workspace 56021 -workspaces 62917 -workstation 52571 -workstations 54459 -worktime 59227 -worktop 65170 -workup 62469 -workwear 64423 -workweek 61699 -world 35164 -world's 41522 -worldgeniousind 62762 -worldlibrary 65170 -worldly 57482 -worlds 49070 -worldview 59101 -worldviews 65452 -worldwide 44121 -worm 51017 -wormed 65170 -worms 51340 -worn 47875 -worried 47356 -worries 51358 -worrisome 60405 -worry 44819 -worrying 52858 -worryingly 65452 -worse 45490 -worsen 56972 -worsened 57696 -worsening 54023 -worsens 60078 -worship 48186 -worshiped 62613 -worshiping 62917 -worshipped 58523 -worshipper 65170 -worshippers 62066 -worshipping 60670 -worst 44292 -wort 61256 -worth 39893 -worthiness 61699 -worthless 55348 -worthwhile 51783 -worthy 48902 -wortmannin 64905 -wot 56021 -wotlk 59227 -wots 64423 -wou 63991 -would 28994 -would've 53316 -woulda 61051 -wouldn't 42214 -wouldnt 52571 -wound 47332 -wounded 50957 -wounding 59702 -wounds 51078 -wouthit 65452 -wove 63601 -woven 50840 -wow 46511 -wowed 60670 -wows 63245 -wp 59630 -wpa 64905 -wperdigon 63991 -wr 60405 -wraggster 64423 -wraith 63792 -wrangell 62762 -wrangle 65170 -wrangler 61818 -wrangling 61584 -wrap 48261 -wraparound 60405 -wrapped 48614 -wrapper 54321 -wrappers 60580 -wrapping 52872 -wraps 53226 -wrath 56080 -wratterus 65452 -wrayer 64201 -wreak 59491 -wreaked 64423 -wreaking 62331 -wreaks 60952 -wreath 57831 -wreaths 61152 -wreck 53712 -wreckage 58470 -wrecked 57122 -wrecker 63077 -wreckerdriver 63792 -wrecking 59164 -wrecks 60580 -wrench 54133 -wrenches 60238 -wrenching 62917 -wrest 64423 -wrestle 58262 -wrestled 58417 -wrestler 57653 -wrestlers 57482 -wrestles 62762 -wrestling 49682 -wretched 59630 -wright 59774 -wring 64423 -wrinkle 57696 -wrinkled 60157 -wrinkles 55500 -wrinkling 63991 -wrist 49572 -wristband 59774 -wristbands 62762 -wrists 58745 -wristwatch 62917 -writ 54643 -writable 63792 -write 38640 -writedowns 64657 -writen 63991 -writer 44940 -writer's 56652 -writers 46488 -writes 46480 -writeup 62066 -writeups 65452 -writhing 62613 -writing 39702 -writings 51630 -writs 62469 -written 37420 -writting 61584 -wrk 63991 -wrod 62331 -wrong 40886 -wrongdoing 58688 -wronged 63419 -wrongful 55014 -wrongfully 63601 -wrongly 55877 -wrongs 59560 -wrote 40476 -wroteon 59923 -wrought 54341 -wrt 58417 -wrung 63601 -wrx 65452 -wry 58065 -ws 56021 -wszystkie 64423 -wt 51193 -wtf 55963 -wth 60238 -wtih 64657 -wtp 64905 -wu 60321 -wud 57046 -wurde 58577 -wurden 61256 -wurtzite 65170 -wut 58113 -wuts 64657 -wuz 56935 -wv 60762 -ww 56080 -wwbritish 64905 -wwe 55107 -wwilbert 64905 -www 47090 -wwwbritish 64905 -wwwx 63991 -wx 58632 -wy 61699 -wybodaeth 65170 -wyoming 61584 -wyotin 63419 -wz 64423 -wznowienie 63077 -wählen 65170 -während 65452 -wünsche 64905 -x 32991 -x's 63077 -xAudioJobsMapQuestMoviesMusicPersonalsShoppingTravelYellow 54664 -xB 63792 -xBnOPNB 64201 -xBox 63077 -xD 50848 -xDD 62196 -xDDD 63991 -xDSL 63991 -xJoannax 65452 -xJoannax's 65452 -xPCgear 64905 -xR 64657 -xSP 65452 -xSeries 63792 -xSpyz 62613 -xStack 62613 -xVM 62762 -xX 65452 -xXx 56324 -xXxNGxXx 63077 -xXxOoO 65170 -xa 62196 -xanax 47133 -xanga 53423 -xanthan 59227 -xanthine 61152 -xanthophyll 64657 -xaos 63077 -xargs 64905 -xbox 46800 -xc 63792 -xchat 65452 -xcopy 60580 -xd 60856 -xe 60492 -xed 64657 -xen 64201 -xenadrine 64423 -xenical 54380 -xenobiotic 61940 -xenogeneic 64905 -xenograft 61256 -xenografts 61472 -xenoliths 60856 -xenon 55738 -xenophobia 63245 -xenophobic 63601 -xenotransplantation 64657 -xeon 60952 -xeriouxi 65170 -xeroderma 63792 -xerox 61940 -xfs 64905 -xg 58979 -xhilaga 64905 -xhtml 56935 -xi 55154 -xii 59292 -xiii 60405 -xilisoft 61584 -xin 63601 -xiv 61584 -xix 65452 -xj 61051 -xk 60580 -xkcd 62613 -xl 55552 -xlSolid 62613 -xls 63792 -xm 62196 -xmas 55448 -xml 45967 -xn 61362 -xo 55657 -xorg 64905 -xox 58523 -xoxo 52765 -xoxox 61472 -xoxoxo 62066 -xp 48571 -xpath 65452 -xpd 63792 -xpress 61362 -xprize 59292 -xq 64423 -xr 55963 -xray 57923 -xs 60157 -xsl 64423 -xt 55963 -xterm 62331 -xtra 62917 -xtreme 58577 -xtreview 64657 -xu 64423 -xual 64423 -xv 62331 -xvi 64201 -xvid 56721 -xvii 65170 -xvod 60762 -xx 46503 -xxl 62066 -xxx 44493 -xxxpoppyxxx 62917 -xy 55398 -xylan 64905 -xylanase 61362 -xylazine 63245 -xylem 59491 -xylene 59491 -xylose 60670 -xyz 60321 -xz 61818 -y 38118 -y'all 54560 -y's 64657 -yA 64905 -yEnc 56388 -yOu 62196 -ya 43097 -ya'll 56231 -yaa 62331 -yaad 64657 -yacht 53565 -yachting 63245 -yachts 58017 -yada 63077 -yadda 63419 -yagi 57876 -yah 57318 -yahoo 47831 -yak 61818 -yaks 62917 -yall 53899 -yam 59923 -yamaha 53646 -yams 62196 -yan 59292 -yang 53917 -yank 61051 -yanked 60405 -yankee 59424 -yankees 55963 -yanking 64201 -yanks 63077 -yaoi 55821 -yaork 65452 -yap 64657 -yar 64905 -yard 46669 -yardage 61818 -yards 46373 -yardstick 63601 -yarn 52107 -yarns 55906 -yas 62196 -yasmin 60580 -yates 64905 -yavanna 65170 -yaw 62469 -yawn 63245 -yawning 61940 -yay 57524 -ybbR 62331 -yc 65170 -ychhuong 65170 -yd 61584 -yds 60405 -ye 49517 -yea 50654 -yeah 45972 -yeaheah 64905 -yeahh 64905 -yeahhh 65170 -year 32899 -year's 44299 -yearbook 58417 -yearbooks 64201 -yearby 55657 -yearling 61472 -yearlong 62331 -yearly 50654 -yearn 59848 -yearned 64657 -yearning 58365 -yearns 62331 -years 32086 -yeast 47768 -yeasts 57970 -yee 62917 -yeeros 64201 -yeh 55500 -yell 55631 -yelled 56050 -yelling 55373 -yellow 44001 -yellowfin 64905 -yellowing 60405 -yellowish 58212 -yellows 63419 -yellowstilo 65452 -yells 60321 -yelp 63792 -yen 53081 -yeni 61362 -yep 57440 -yer 52927 -yerazhishda 64905 -yes 43169 -yesterday 44052 -yesterday's 53226 -yesterdays 62917 -yesteryear 64905 -yet 35405 -yeti 65452 -yeu 63792 -yeux 61362 -yew 59357 -yf 63792 -yg 59630 -yh 59560 -yhOu 63792 -yhOur 64423 -yi 58577 -yids 64657 -yield 43405 -yielded 49440 -yielding 51330 -yields 46775 -yilmazsazevi 63601 -yin 60580 -ying 62469 -yk 62469 -yl 63245 -ylang 61818 -ylation 64657 -ym 60952 -yma 65170 -ymca 62762 -yn 52472 -yng 65452 -yo 47656 -yoann 59774 -yoda 61818 -yoga 50019 -yoghurt 59491 -yogi 62762 -yogic 64657 -yogurt 53813 -yok 62469 -yoke 54685 -yolk 57199 -yolks 59630 -yon 57970 -yond 63991 -yonder 63601 -yong 64905 -yoni 59292 -yoo 62066 -yooh 63792 -yor 64201 -yorbandit 64905 -yore 64201 -yori 61584 -york 47600 -yorker 61584 -yorkie 60856 -yorkshire 60856 -yoru 63792 -yorum 63077 -yoshi 65452 -you 22575 -you'd 44172 -you'll 39302 -you're 36033 -you's 62762 -you've 41059 -youCaster 64905 -youd 62331 -youll 57399 -youn 64905 -young 37565 -younger 44865 -youngest 50702 -youngster 57785 -youngsters 53470 -your 23475 -your'e 62331 -your're 64201 -your's 65452 -youre 53501 -yours 44615 -yourself 40589 -yourselves 55500 -yous 63601 -youself 64657 -youth 43631 -youth's 62066 -youthcentral 63245 -youthful 54643 -youths 53597 -youtube 49758 -youu 60492 -youuu 65452 -youve 57440 -yoy 63792 -yoyo 63419 -yp 63419 -ypc 61472 -ype 64657 -ypu 65452 -yr 47630 -yrs 47863 -ys 60762 -ysis 59630 -ystemModel 65452 -ystems 62196 -yt 58365 -ytkD 64905 -yttrium 62613 -yu 54560 -yuan 57524 -yucatan 63077 -yuengling 65452 -yugioh 60238 -yuh 60952 -yukon 64657 -yuku 65452 -yum 57160 -yummy 53695 -yun 64423 -yuna 63601 -yung 57278 -yuo 63601 -yup 58802 -yuppie 64423 -yur 61152 -yuri 63792 -yusuf 63245 -yuu 62469 -yvonne 60952 -yw 63419 -yx 63792 -yy 58470 -yyw 63991 -yz 61472 -z 43110 -zB 64423 -zChris 62613 -zMaestro 65170 -zSeries 62917 -zWar 62917 -zZounds 61584 -za 50670 -zac 57831 -zach 62613 -zacharia 62469 -zachary 64657 -zack 64423 -zag 61940 -zahanbil 65452 -zai 61940 -zakopane 61152 -zal 64905 -zaman 63419 -zane 65170 -zante 60952 -zany 61051 -zap 63601 -zapped 64905 -zaps 64201 -zation 57199 -zations 64657 -zavvi 59702 -zawya 64905 -zc 64905 -ze 56200 -zeae 63245 -zeal 57696 -zealand 58365 -zealots 62066 -zealous 59923 -zealously 64423 -zebra 56618 -zebrafish 59227 -zecharia 58688 -zed 64423 -zedge 63419 -zee 61940 -zeigt 63991 -zeitgeist 61584 -zelda 58632 -zelnorm 63077 -zemlje 65452 -zen 57653 -zene 62196 -zenegra 58632 -zener 63245 -zeneszöveg 63601 -zenith 60670 -zenkeri 63419 -zeolite 54560 -zeolites 58577 -zeppelin 60078 -zero 43793 -zeroed 62613 -zeroes 64423 -zeroing 63601 -zeros 55060 -zest 59039 -zesty 60762 -zeta 59357 -zetia 64657 -zeus 65170 -zezoar 64201 -zh 64423 -zhao 65170 -zhi 63601 -zhu 64657 -zi 60238 -zich 62917 -zidane 64423 -zidovudine 58365 -zig 63245 -ziggy 64657 -zigzag 58745 -zijn 57318 -zillion 62762 -zillions 65170 -zim 65170 -zimelidine 64201 -zimmer 64201 -zimmerma 59702 -zinc 49001 -zine 61699 -zines 64423 -zinta 65452 -zion 64657 -zip 43697 -zipcode 58919 -zipcodes 60238 -ziplock 65170 -zipped 57399 -zipper 54005 -zippered 57278 -zippers 61699 -zipping 65452 -zippo 65170 -zippy 64201 -ziprasidone 63792 -zips 60670 -zircon 62196 -zirconia 60238 -zirconium 59357 -zis 64657 -zit 64905 -zithromax 63792 -ziti 64905 -zk 65452 -zl 61940 -zlib 61584 -zloty 63991 -zo 58065 -zocor 60405 -zodiac 57278 -zodziai 63419 -zoe 59774 -zoek 60405 -zoeken 62469 -zoey 64657 -zoho 65452 -zoloft 54207 -zolpidem 56140 -zombie 54005 -zombies 56618 -zomg 65170 -zon 64423 -zona 58113 -zonal 57358 -zonally 64905 -zonation 63601 -zone 43591 -zonealarm 63601 -zoned 56293 -zones 48505 -zoning 50087 -zonular 63245 -zoo 50607 -zoofilia 63991 -zoological 65170 -zoology 62469 -zoom 45833 -zoomdekho 58860 -zoomed 56420 -zooming 58065 -zooms 60856 -zoonotic 60762 -zoophile 61152 -zoophiles 64423 -zoophilia 56687 -zooplankton 56721 -zooplus 59848 -zoos 60000 -zoozle 54245 -zopiclone 63419 -zor 65452 -zorvek 64423 -zoster 58523 -zovirax 64423 -zr 64657 -zrodla 60157 -zs 65452 -zshare 60952 -zu 50321 -zucchini 57482 -zuko 61362 -zum 52845 -zuma 63792 -zune 58262 -zur 53052 -zurpy 65452 -zurück 61472 -zusammen 65170 -zussaweb 64905 -zvoc 64201 -zwei 63077 -zwischen 61818 -zwitterionic 62762 -zyban 58688 -zydeco 63792 -zygote 64905 -zygotes 65170 -zygotic 63419 -zyme 62196 -zymosan 61362 -zyprexa 64201 -zyrtec 57524 -zyvox 64905 -zyx 62917 -zz 59101 -zzz 63419 -À 47831 -Á 51804 -ÁT 65170 -Álvarez 62917 -Álvaro 64201 -Ángel 63601 -Área 62196 -ÁÁÁ 60238 - 49119 -ÂÜ 65170 -à 52074 -Ä 55014 -Är 64423 -Å 50654 -Åland 58523 -Århus 63991 -ÅÜ 64423 -É 57923 -École 60952 -Éditeur 63419 -Éire 65452 -Étienne 63245 -Études 65452 -Ö 56899 -Öffentliches 64905 -Örebro 55154 -Österreich 54792 -Översättning 63601 -Özcan 63991 -Û 62917 -ÛÛ 62613 -ÛÛÛ 64201 -ÛÛÜ 65170 -Ü 55226 -Über 57741 -Überblick 65170 -Übersetzen 63601 -Übersetzung 63245 -Übersicht 61818 -Üste 65452 -Üye 63792 -Üyeler 61699 -Üyelik 64905 -Þ 51711 -ß 52886 -ßies 63245 -ßÜ 63792 -à 44430 -às 62331 -á 55398 -ácido 65170 -álbum 65452 -área 63245 -áreas 65170 -â 55766 -â'r 64657 -ã 57009 -ä 61362 -är 57358 -även 65452 -å 56080 -år 62469 -æ 63601 -ç 59702 -ça 60492 -çeviri 64423 -çok 59491 -è 52805 -é 52062 -économique 62613 -économiques 63245 -écrit 49313 -également 61362 -électrique 62331 -électronique 62331 -éléments 64657 -énergie 64905 -és 56518 -était 63245 -étalon 63792 -état 63245 -étude 64423 -études 64905 -été 57199 -ê 60078 -être 49038 -ë 62331 -ëë 63245 -í 57399 -índice 64423 -íosluchtú 59560 -íslenska 57785 -ð 55631 -ðA 61362 -ðF 62917 -ðXÞ 63077 -ða 64201 -ðkÞ 65452 -ðm 64423 -ðmean 65452 -ðn 65452 -ðuÞ 64905 -ðx 59292 -ðxÞ 58802 -ðzÞ 62066 -ñ 60405 -ó 60580 -órája 64201 -ô 62762 -ôl 63991 -ôåøñí 62066 -ö 56518 -önskas 63601 -ø 57653 -øe 64657 -ønskes 60580 -ú 59848 -última 63077 -últimas 65170 -último 62469 -único 64201 -út 64905 -ü 55657 -über 55711 -überspringen 65170 -ünlü 64657 -š 64905 -μ 47562 -μA 57122 -μCi 62762 -μF 59630 -μL 56050 -μM 51600 -μTorrent 59630 -μg 50206 -μl 50686 -μm 51293 -μmol 58065 -μs 60157 -μμ 62917 diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.tesseract_cube.nn b/thirdparty/Tesseract-OCR/tessdata/eng.tesseract_cube.nn deleted file mode 100755 index ec483e0ac6..0000000000 Binary files a/thirdparty/Tesseract-OCR/tessdata/eng.tesseract_cube.nn and /dev/null differ diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.traineddata b/thirdparty/Tesseract-OCR/tessdata/eng.traineddata index 9f4704c9c5..561883fac8 100755 Binary files a/thirdparty/Tesseract-OCR/tessdata/eng.traineddata and b/thirdparty/Tesseract-OCR/tessdata/eng.traineddata differ diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.user-patterns b/thirdparty/Tesseract-OCR/tessdata/eng.user-patterns deleted file mode 100755 index 5daba44df8..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.user-patterns +++ /dev/null @@ -1,2 +0,0 @@ -1-\d\d\d-GOOG-411 -www.\n\\\*.com diff --git a/thirdparty/Tesseract-OCR/tessdata/eng.user-words b/thirdparty/Tesseract-OCR/tessdata/eng.user-words deleted file mode 100755 index e0c5a63021..0000000000 --- a/thirdparty/Tesseract-OCR/tessdata/eng.user-words +++ /dev/null @@ -1,5 +0,0 @@ -the -quick -brown -fox -jumped diff --git a/thirdparty/Tesseract-OCR/tessdata/enm.traineddata b/thirdparty/Tesseract-OCR/tessdata/enm.traineddata deleted file mode 100755 index 6e606b51c2..0000000000 Binary files a/thirdparty/Tesseract-OCR/tessdata/enm.traineddata and /dev/null differ diff --git a/thirdparty/Tesseract-OCR/tesseract.exe b/thirdparty/Tesseract-OCR/tesseract.exe index 94113abaaa..2df2e035c1 100755 Binary files a/thirdparty/Tesseract-OCR/tesseract.exe and b/thirdparty/Tesseract-OCR/tesseract.exe differ diff --git a/thirdparty/Tesseract-OCR/text2image.exe b/thirdparty/Tesseract-OCR/text2image.exe index aa2f935c16..5466039e72 100755 Binary files a/thirdparty/Tesseract-OCR/text2image.exe and b/thirdparty/Tesseract-OCR/text2image.exe differ diff --git a/thirdparty/Tesseract-OCR/unicharset_extractor.exe b/thirdparty/Tesseract-OCR/unicharset_extractor.exe index 6a43453566..440b840538 100755 Binary files a/thirdparty/Tesseract-OCR/unicharset_extractor.exe and b/thirdparty/Tesseract-OCR/unicharset_extractor.exe differ diff --git a/thirdparty/Tesseract-OCR/wordlist2dawg.exe b/thirdparty/Tesseract-OCR/wordlist2dawg.exe index ba3f499b62..4a1706e14b 100755 Binary files a/thirdparty/Tesseract-OCR/wordlist2dawg.exe and b/thirdparty/Tesseract-OCR/wordlist2dawg.exe differ